diff --git a/Documentation/ABI/testing/sysfs-bus-optee-devices b/Documentation/ABI/testing/sysfs-bus-optee-devices index 0f58701367b66..af31e5a22d89f 100644 --- a/Documentation/ABI/testing/sysfs-bus-optee-devices +++ b/Documentation/ABI/testing/sysfs-bus-optee-devices @@ -6,3 +6,12 @@ Description: OP-TEE bus provides reference to registered drivers under this directory. The matches Trusted Application (TA) driver and corresponding TA in secure OS. Drivers are free to create needed API under optee-ta- directory. + +What: /sys/bus/tee/devices/optee-ta-/need_supplicant +Date: November 2023 +KernelVersion: 6.7 +Contact: op-tee@lists.trustedfirmware.org +Description: + Allows to distinguish whether an OP-TEE based TA/device requires user-space + tee-supplicant to function properly or not. This attribute will be present for + devices which depend on tee-supplicant to be running. diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt index 14113baa57082..9e69f938c652e 100644 --- a/Documentation/admin-guide/kernel-parameters.txt +++ b/Documentation/admin-guide/kernel-parameters.txt @@ -5743,8 +5743,10 @@ it if 0 is given (See Documentation/admin-guide/cgroup-v1/memory.rst) swiotlb= [ARM,IA-64,PPC,MIPS,X86] - Format: { | force | noforce } + Format: { [,] | force | noforce } -- Number of I/O TLB slabs + -- Second integer after comma. Number of swiotlb + areas with their own lock. Must be power of 2. force -- force using of bounce buffers even if they wouldn't be automatically used by the kernel noforce -- Never use bounce buffers (for debugging) @@ -5953,6 +5955,16 @@ first trust source as a backend which is initialized successfully during iteration. + trusted.rng= [KEYS] + Format: + The RNG used to generate key material for trusted keys. + Can be one of: + - "kernel" + - the same value as trusted.source: "tpm" or "tee" + - "default" + If not specified, "default" is used. In this case, + the RNG's choice is left to each individual trust source. + tsc= Disable clocksource stability checks for TSC. Format: [x86] reliable: mark tsc clocksource as reliable, this diff --git a/Documentation/admin-guide/sysctl/net.rst b/Documentation/admin-guide/sysctl/net.rst index 806ecd5957a4d..aad6db9c1c836 100644 --- a/Documentation/admin-guide/sysctl/net.rst +++ b/Documentation/admin-guide/sysctl/net.rst @@ -31,18 +31,18 @@ see only some of them, depending on your kernel's configuration. Table : Subdirectories in /proc/sys/net - ========= =================== = ========== ================== + ========= =================== = ========== =================== Directory Content Directory Content - ========= =================== = ========== ================== - 802 E802 protocol mptcp Multipath TCP - appletalk Appletalk protocol netfilter Network Filter + ========= =================== = ========== =================== + 802 E802 protocol mptcp Multipath TCP + appletalk Appletalk protocol netfilter Network Filter ax25 AX25 netrom NET/ROM - bridge Bridging rose X.25 PLP layer - core General parameter tipc TIPC - ethernet Ethernet protocol unix Unix domain sockets - ipv4 IP version 4 x25 X.25 protocol + bridge Bridging rose X.25 PLP layer + core General parameter tipc TIPC + ethernet Ethernet protocol unix Unix domain sockets + ipv4 IP version 4 x25 X.25 protocol ipv6 IP version 6 - ========= =================== = ========== ================== + ========= =================== = ========== =================== 1. /proc/sys/net/core - Network core options ============================================ diff --git a/Documentation/arm64/silicon-errata.rst b/Documentation/arm64/silicon-errata.rst index 83a75e16e54de..d2f90ecc426f9 100644 --- a/Documentation/arm64/silicon-errata.rst +++ b/Documentation/arm64/silicon-errata.rst @@ -172,6 +172,9 @@ stable kernels. +----------------+-----------------+-----------------+-----------------------------+ | Hisilicon | Hip08 SMMU PMCG | #162001800 | N/A | +----------------+-----------------+-----------------+-----------------------------+ +| Hisilicon | Hip08 SMMU PMCG | #162001900 | N/A | +| | Hip09 SMMU PMCG | | | ++----------------+-----------------+-----------------+-----------------------------+ +----------------+-----------------+-----------------+-----------------------------+ | Qualcomm Tech. | Kryo/Falkor v1 | E1003 | QCOM_FALKOR_ERRATUM_1003 | +----------------+-----------------+-----------------+-----------------------------+ diff --git a/Documentation/devicetree/bindings/clock/xlnx,versal-clk.yaml b/Documentation/devicetree/bindings/clock/xlnx,versal-clk.yaml index 229af98b1d305..7cd88bc3a67d7 100644 --- a/Documentation/devicetree/bindings/clock/xlnx,versal-clk.yaml +++ b/Documentation/devicetree/bindings/clock/xlnx,versal-clk.yaml @@ -16,8 +16,6 @@ description: | reads required input clock frequencies from the devicetree and acts as clock provider for all clock consumers of PS clocks. -select: false - properties: compatible: const: xlnx,versal-clk diff --git a/Documentation/networking/ip-sysctl.rst b/Documentation/networking/ip-sysctl.rst index 7890b395e629b..5c7674631742c 100644 --- a/Documentation/networking/ip-sysctl.rst +++ b/Documentation/networking/ip-sysctl.rst @@ -999,6 +999,19 @@ tcp_rx_skb_cache - BOOLEAN Default: 0 (disabled) +tcp_pingpong_thresh - INTEGER + The number of estimated data replies sent for estimated incoming data + requests that must happen before TCP considers that a connection is a + "ping-pong" (request-response) connection for which delayed + acknowledgments can provide benefits. + + This threshold is 1 by default, but some applications may need a higher + threshold for optimal performance. + + Possible Values: 1 - 255 + + Default: 1 + UDP variables ============= @@ -2070,6 +2083,14 @@ accept_ra_min_hop_limit - INTEGER Default: 1 +accept_ra_min_lft - INTEGER + Minimum acceptable lifetime value in Router Advertisement. + + RA sections with a lifetime less than this value shall be + ignored. Zero lifetimes stay unaffected. + + Default: 0 + accept_ra_pinfo - BOOLEAN Learn Prefix Information in Router Advertisement. diff --git a/Documentation/process/howto.rst b/Documentation/process/howto.rst index e4beeca57e5f2..12a4e7ebcbab6 100644 --- a/Documentation/process/howto.rst +++ b/Documentation/process/howto.rst @@ -36,7 +36,7 @@ experience, the following books are good for, if anything, reference: - "C: A Reference Manual" by Harbison and Steele [Prentice Hall] The kernel is written using GNU C and the GNU toolchain. While it -adheres to the ISO C89 standard, it uses a number of extensions that are +adheres to the ISO C11 standard, it uses a number of extensions that are not featured in the standard. The kernel is a freestanding C environment, with no reliance on the standard C library, so some portions of the C standard are not supported. Arbitrary long long diff --git a/Documentation/scsi/scsi_mid_low_api.rst b/Documentation/scsi/scsi_mid_low_api.rst index 63ddea2b96408..7c06e7fb9a316 100644 --- a/Documentation/scsi/scsi_mid_low_api.rst +++ b/Documentation/scsi/scsi_mid_low_api.rst @@ -1190,11 +1190,11 @@ Members of interest: - pointer to scsi_device object that this command is associated with. resid - - an LLD should set this signed integer to the requested + - an LLD should set this unsigned integer to the requested transfer length (i.e. 'request_bufflen') less the number of bytes that are actually transferred. 'resid' is preset to 0 so an LLD can ignore it if it cannot detect - underruns (overruns should be rare). If possible an LLD + underruns (overruns should not be reported). An LLD should set 'resid' prior to invoking 'done'. The most interesting case is data transfers from a SCSI target device (e.g. READs) that underrun. diff --git a/Documentation/security/keys/trusted-encrypted.rst b/Documentation/security/keys/trusted-encrypted.rst index 80d5a5af62a1d..99cf34d7c025b 100644 --- a/Documentation/security/keys/trusted-encrypted.rst +++ b/Documentation/security/keys/trusted-encrypted.rst @@ -87,22 +87,26 @@ Key Generation Trusted Keys ------------ -New keys are created from random numbers generated in the trust source. They -are encrypted/decrypted using a child key in the storage key hierarchy. -Encryption and decryption of the child key must be protected by a strong -access control policy within the trust source. +New keys are created from random numbers. They are encrypted/decrypted using +a child key in the storage key hierarchy. Encryption and decryption of the +child key must be protected by a strong access control policy within the +trust source. The random number generator in use differs according to the +selected trust source: - * TPM (hardware device) based RNG + * TPM: hardware device based RNG - Strength of random numbers may vary from one device manufacturer to - another. + Keys are generated within the TPM. Strength of random numbers may vary + from one device manufacturer to another. - * TEE (OP-TEE based on Arm TrustZone) based RNG + * TEE: OP-TEE based on Arm TrustZone based RNG RNG is customizable as per platform needs. It can either be direct output from platform specific hardware RNG or a software based Fortuna CSPRNG which can be seeded via multiple entropy sources. +Users may override this by specifying ``trusted.rng=kernel`` on the kernel +command-line to override the used RNG with the kernel's random number pool. + Encrypted Keys -------------- diff --git a/Documentation/translations/it_IT/process/howto.rst b/Documentation/translations/it_IT/process/howto.rst index 9554368a2ae26..d02df35d0f6bb 100644 --- a/Documentation/translations/it_IT/process/howto.rst +++ b/Documentation/translations/it_IT/process/howto.rst @@ -44,7 +44,7 @@ altro, utili riferimenti: - "C: A Reference Manual" di Harbison and Steele [Prentice Hall] Il kernel è stato scritto usando GNU C e la toolchain GNU. -Sebbene si attenga allo standard ISO C89, esso utilizza una serie di +Sebbene si attenga allo standard ISO C11, esso utilizza una serie di estensioni che non sono previste in questo standard. Il kernel è un ambiente C indipendente, che non ha alcuna dipendenza dalle librerie C standard, così alcune parti del C standard non sono supportate. diff --git a/Documentation/translations/ja_JP/howto.rst b/Documentation/translations/ja_JP/howto.rst index d667f9d8a02a0..6a00e43868a2e 100644 --- a/Documentation/translations/ja_JP/howto.rst +++ b/Documentation/translations/ja_JP/howto.rst @@ -65,7 +65,7 @@ Linux カーネル開発のやり方 - 『新・詳説 C 言語 H&S リファレンス』 (サミュエル P ハービソン/ガイ L スティール共著 斉藤 信男監訳)[ソフトバンク] カーネルは GNU C と GNU ツールチェインを使って書かれています。カーネル -は ISO C89 仕様に準拠して書く一方で、標準には無い言語拡張を多く使って +は ISO C11 仕様に準拠して書く一方で、標準には無い言語拡張を多く使って います。カーネルは標準 C ライブラリに依存しない、C 言語非依存環境です。 そのため、C の標準の中で使えないものもあります。特に任意の long long の除算や浮動小数点は使えません。カーネルがツールチェインや C 言語拡張 diff --git a/Documentation/translations/ko_KR/howto.rst b/Documentation/translations/ko_KR/howto.rst index e3cdf0c848926..a787d31dcdbfd 100644 --- a/Documentation/translations/ko_KR/howto.rst +++ b/Documentation/translations/ko_KR/howto.rst @@ -62,7 +62,7 @@ Documentation/process/howto.rst - "Practical C Programming" by Steve Oualline [O'Reilly] - "C: A Reference Manual" by Harbison and Steele [Prentice Hall] -커널은 GNU C와 GNU 툴체인을 사용하여 작성되었다. 이 툴들은 ISO C89 표준을 +커널은 GNU C와 GNU 툴체인을 사용하여 작성되었다. 이 툴들은 ISO C11 표준을 따르는 반면 표준에 있지 않은 많은 확장기능도 가지고 있다. 커널은 표준 C 라이브러리와는 관계없이 freestanding C 환경이어서 C 표준의 일부는 지원되지 않는다. 임의의 long long 나누기나 floating point는 지원되지 않는다. diff --git a/Documentation/translations/zh_CN/process/howto.rst b/Documentation/translations/zh_CN/process/howto.rst index ee3dee476d570..2a910e3e904ec 100644 --- a/Documentation/translations/zh_CN/process/howto.rst +++ b/Documentation/translations/zh_CN/process/howto.rst @@ -45,7 +45,7 @@ Linux内核大部分是由C语言写成的,一些体系结构相关的代码 - "C: A Reference Manual" by Harbison and Steele [Prentice Hall] 《C语言参考手册(原书第5版)》(邱仲潘 等译)[机械工业出版社] -Linux内核使用GNU C和GNU工具链开发。虽然它遵循ISO C89标准,但也用到了一些 +Linux内核使用GNU C和GNU工具链开发。虽然它遵循ISO C11标准,但也用到了一些 标准中没有定义的扩展。内核是自给自足的C环境,不依赖于标准C库的支持,所以 并不支持C标准中的部分定义。比如long long类型的大数除法和浮点运算就不允许 使用。有时候确实很难弄清楚内核对工具链的要求和它所使用的扩展,不幸的是目 diff --git a/Documentation/translations/zh_TW/process/howto.rst b/Documentation/translations/zh_TW/process/howto.rst index 2043691b92e35..ce14d4ed5c5bc 100644 --- a/Documentation/translations/zh_TW/process/howto.rst +++ b/Documentation/translations/zh_TW/process/howto.rst @@ -48,7 +48,7 @@ Linux內核大部分是由C語言寫成的,一些體系結構相關的代碼 - "C: A Reference Manual" by Harbison and Steele [Prentice Hall] 《C語言參考手冊(原書第5版)》(邱仲潘 等譯)[機械工業出版社] -Linux內核使用GNU C和GNU工具鏈開發。雖然它遵循ISO C89標準,但也用到了一些 +Linux內核使用GNU C和GNU工具鏈開發。雖然它遵循ISO C11標準,但也用到了一些 標準中沒有定義的擴展。內核是自給自足的C環境,不依賴於標準C庫的支持,所以 並不支持C標準中的部分定義。比如long long類型的大數除法和浮點運算就不允許 使用。有時候確實很難弄清楚內核對工具鏈的要求和它所使用的擴展,不幸的是目 diff --git a/MAINTAINERS b/MAINTAINERS index d43553fe7e0b3..0d95ee9e3adce 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -7282,6 +7282,12 @@ S: Maintained F: drivers/hwmon/f75375s.c F: include/linux/f75375s.h +FINTEK F81604 USB to 2xCANBUS DEVICE DRIVER +M: Ji-Ze Hong (Peter Hong) +L: linux-can@vger.kernel.org +S: Maintained +F: drivers/net/can/usb/f81604.c + FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE M: Clemens Ladisch M: Takashi Sakamoto @@ -8747,6 +8753,7 @@ F: include/asm-generic/hyperv-tlfs.h F: include/asm-generic/mshyperv.h F: include/clocksource/hyperv_timer.h F: include/linux/hyperv.h +F: include/net/mana F: include/uapi/linux/hyperv.h F: net/vmw_vsock/hyperv_transport.c F: tools/hv/ @@ -12460,6 +12467,15 @@ F: drivers/scsi/smartpqi/smartpqi*.[ch] F: include/linux/cciss*.h F: include/uapi/linux/cciss*.h +MICROSOFT MANA RDMA DRIVER +M: Long Li +M: Ajay Sharma +L: linux-rdma@vger.kernel.org +S: Supported +F: drivers/infiniband/hw/mana/ +F: include/net/mana +F: include/uapi/rdma/mana-abi.h + MICROSOFT SURFACE BATTERY AND AC DRIVERS M: Maximilian Luz L: linux-pm@vger.kernel.org @@ -13429,6 +13445,11 @@ F: drivers/nubus/ F: include/linux/nubus.h F: include/uapi/linux/nubus.h +NUVOTON M058SSAN GPIO DRIVER +M: Filippo Copetti +S: Maintained +F: drivers/gpio/gpio-m058ssan.c + NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER M: Antonino Daplas L: linux-fbdev@vger.kernel.org @@ -13524,6 +13545,12 @@ S: Maintained F: Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml F: drivers/gpu/drm/imx/dcss/ +NXP PCF85263 RTC DRIVER +M: Filippo Copetti +S: Maintained +F: drivers/rtc/rtc-pcf85263.c +F: drivers/rtc/rtc-pcf85263.h + NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER M: Jagan Teki S: Maintained diff --git a/Makefile b/Makefile index 9c1cf24460862..cdbc0170fb834 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 5 PATCHLEVEL = 15 -SUBLEVEL = 131 +SUBLEVEL = 143 EXTRAVERSION = NAME = Trick or Treat @@ -518,9 +518,6 @@ LINUXINCLUDE := \ -I$(objtree)/include \ $(USERINCLUDE) -# UBUNTU: Include our third party driver stuff too -LINUXINCLUDE += -I$(srctree)/ubuntu/include - KBUILD_AFLAGS := -D__ASSEMBLY__ -fno-PIE KBUILD_CFLAGS := -Wall -Wundef -Werror=strict-prototypes -Wno-trigraphs \ -fno-strict-aliasing -fno-common -fshort-wchar -fno-PIE \ @@ -675,7 +672,7 @@ endif ifeq ($(KBUILD_EXTMOD),) # Objects we will link into vmlinux / subdirs we need to visit core-y := init/ usr/ arch/$(SRCARCH)/ -drivers-y := drivers/ sound/ ubuntu/ +drivers-y := drivers/ sound/ drivers-$(CONFIG_SAMPLES) += samples/ drivers-$(CONFIG_NET) += net/ drivers-y += virt/ @@ -1351,7 +1348,6 @@ headers: $(version_h) scripts_unifdef uapi-asm-generic archheaders archscripts $(if $(filter um, $(SRCARCH)), $(error Headers not exportable for UML)) $(Q)$(MAKE) $(hdr-inst)=include/uapi $(Q)$(MAKE) $(hdr-inst)=arch/$(SRCARCH)/include/uapi - $(Q)$(MAKE) $(hdr-inst)=ubuntu/include dst=include oldheaders= # Deprecated. It is no-op now. PHONY += headers_check @@ -1839,7 +1835,9 @@ quiet_cmd_depmod = DEPMOD $(MODLIB) modules_install: $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst +ifndef modules_sign_only $(call cmd,depmod) +endif else # CONFIG_MODULES diff --git a/Ubuntu.md b/Ubuntu.md index f2dedc6261da0..811d91718d9f0 100644 --- a/Ubuntu.md +++ b/Ubuntu.md @@ -1,8 +1,8 @@ -Name: linux +Name: linux-azure-5.15 Version: 5.15.0 -Series: 22.04 (jammy) +Series: 20.04 (focal) Description: - This is the source code for the Ubuntu linux kernel for the 22.04 series. This - source tree is used to produce the flavours: generic, generic-64k, generic-lpae, lowlatency. + This is the source code for the Ubuntu linux kernel for the 20.04 series. This + source tree is used to produce the flavours: azure. This kernel is configured to support the widest range of desktop, laptop and server configurations. diff --git a/arch/arc/include/asm/atomic-llsc.h b/arch/arc/include/asm/atomic-llsc.h index 088d348781c1c..0b7c902c72ba8 100644 --- a/arch/arc/include/asm/atomic-llsc.h +++ b/arch/arc/include/asm/atomic-llsc.h @@ -18,7 +18,7 @@ static inline void arch_atomic_##op(int i, atomic_t *v) \ : [val] "=&r" (val) /* Early clobber to prevent reg reuse */ \ : [ctr] "r" (&v->counter), /* Not "m": llock only supports reg direct addr mode */ \ [i] "ir" (i) \ - : "cc"); \ + : "cc", "memory"); \ } \ #define ATOMIC_OP_RETURN(op, c_op, asm_op) \ @@ -34,7 +34,7 @@ static inline int arch_atomic_##op##_return_relaxed(int i, atomic_t *v) \ : [val] "=&r" (val) \ : [ctr] "r" (&v->counter), \ [i] "ir" (i) \ - : "cc"); \ + : "cc", "memory"); \ \ return val; \ } @@ -56,7 +56,7 @@ static inline int arch_atomic_fetch_##op##_relaxed(int i, atomic_t *v) \ [orig] "=&r" (orig) \ : [ctr] "r" (&v->counter), \ [i] "ir" (i) \ - : "cc"); \ + : "cc", "memory"); \ \ return orig; \ } diff --git a/arch/arc/include/asm/atomic64-arcv2.h b/arch/arc/include/asm/atomic64-arcv2.h index c5a8010fdc97d..9089f34baac3b 100644 --- a/arch/arc/include/asm/atomic64-arcv2.h +++ b/arch/arc/include/asm/atomic64-arcv2.h @@ -60,7 +60,7 @@ static inline void arch_atomic64_##op(s64 a, atomic64_t *v) \ " bnz 1b \n" \ : "=&r"(val) \ : "r"(&v->counter), "ir"(a) \ - : "cc"); \ + : "cc", "memory"); \ } \ #define ATOMIC64_OP_RETURN(op, op1, op2) \ @@ -77,7 +77,7 @@ static inline s64 arch_atomic64_##op##_return_relaxed(s64 a, atomic64_t *v) \ " bnz 1b \n" \ : [val] "=&r"(val) \ : "r"(&v->counter), "ir"(a) \ - : "cc"); /* memory clobber comes from smp_mb() */ \ + : "cc", "memory"); \ \ return val; \ } @@ -99,7 +99,7 @@ static inline s64 arch_atomic64_fetch_##op##_relaxed(s64 a, atomic64_t *v) \ " bnz 1b \n" \ : "=&r"(orig), "=&r"(val) \ : "r"(&v->counter), "ir"(a) \ - : "cc"); /* memory clobber comes from smp_mb() */ \ + : "cc", "memory"); \ \ return orig; \ } diff --git a/arch/arm/boot/dts/am33xx.dtsi b/arch/arm/boot/dts/am33xx.dtsi index f6ec85d58dd12..f53695ecbb782 100644 --- a/arch/arm/boot/dts/am33xx.dtsi +++ b/arch/arm/boot/dts/am33xx.dtsi @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Device Tree Source for AM33XX SoC * * Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/ - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. */ #include diff --git a/arch/arm/boot/dts/am3517.dtsi b/arch/arm/boot/dts/am3517.dtsi index de33c4f89f33d..cb316135bc7c9 100644 --- a/arch/arm/boot/dts/am3517.dtsi +++ b/arch/arm/boot/dts/am3517.dtsi @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Device Tree Source for am3517 SoC * * Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com/ - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. */ #include "omap3.dtsi" diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi index 61a1d88f9df68..8613355bbd5ec 100644 --- a/arch/arm/boot/dts/am4372.dtsi +++ b/arch/arm/boot/dts/am4372.dtsi @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Device Tree Source for AM4372 SoC * * Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com/ - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. */ #include diff --git a/arch/arm/boot/dts/artpec6-devboard.dts b/arch/arm/boot/dts/artpec6-devboard.dts index d20d95359b284..042a9cc920c67 100644 --- a/arch/arm/boot/dts/artpec6-devboard.dts +++ b/arch/arm/boot/dts/artpec6-devboard.dts @@ -1,10 +1,5 @@ -/* - * Axis ARTPEC-6 development board. - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. - */ +// SPDX-License-Identifier: GPL-2.0-only +// Axis ARTPEC-6 development board. /dts-v1/; #include "artpec6.dtsi" diff --git a/arch/arm/boot/dts/bcm4708-linksys-ea6500-v2.dts b/arch/arm/boot/dts/bcm4708-linksys-ea6500-v2.dts index cd797b4202ad8..01c48faabfade 100644 --- a/arch/arm/boot/dts/bcm4708-linksys-ea6500-v2.dts +++ b/arch/arm/boot/dts/bcm4708-linksys-ea6500-v2.dts @@ -19,7 +19,8 @@ memory@0 { device_type = "memory"; - reg = <0x00000000 0x08000000>; + reg = <0x00000000 0x08000000>, + <0x88000000 0x08000000>; }; gpio-keys { diff --git a/arch/arm/boot/dts/bcm47189-luxul-xap-1440.dts b/arch/arm/boot/dts/bcm47189-luxul-xap-1440.dts index 57ca1cfaecd8e..00e688b45d981 100644 --- a/arch/arm/boot/dts/bcm47189-luxul-xap-1440.dts +++ b/arch/arm/boot/dts/bcm47189-luxul-xap-1440.dts @@ -46,3 +46,16 @@ }; }; }; + +&gmac0 { + phy-mode = "rgmii"; + phy-handle = <&bcm54210e>; + + mdio { + /delete-node/ switch@1e; + + bcm54210e: ethernet-phy@0 { + reg = <0>; + }; + }; +}; diff --git a/arch/arm/boot/dts/bcm47189-luxul-xap-810.dts b/arch/arm/boot/dts/bcm47189-luxul-xap-810.dts index 2e1a7e382cb7a..78c80a5d3f4fa 100644 --- a/arch/arm/boot/dts/bcm47189-luxul-xap-810.dts +++ b/arch/arm/boot/dts/bcm47189-luxul-xap-810.dts @@ -83,3 +83,16 @@ }; }; }; + +&gmac0 { + phy-mode = "rgmii"; + phy-handle = <&bcm54210e>; + + mdio { + /delete-node/ switch@1e; + + bcm54210e: ethernet-phy@0 { + reg = <0>; + }; + }; +}; diff --git a/arch/arm/boot/dts/bcm53573.dtsi b/arch/arm/boot/dts/bcm53573.dtsi index 51546fccc6168..933b6a380c367 100644 --- a/arch/arm/boot/dts/bcm53573.dtsi +++ b/arch/arm/boot/dts/bcm53573.dtsi @@ -127,6 +127,9 @@ pcie0: pcie@2000 { reg = <0x00002000 0x1000>; + + #address-cells = <3>; + #size-cells = <2>; }; usb2: usb2@4000 { diff --git a/arch/arm/boot/dts/bcm947189acdbmr.dts b/arch/arm/boot/dts/bcm947189acdbmr.dts index b0b8c774a37f9..1f0be30e54435 100644 --- a/arch/arm/boot/dts/bcm947189acdbmr.dts +++ b/arch/arm/boot/dts/bcm947189acdbmr.dts @@ -60,9 +60,9 @@ spi { compatible = "spi-gpio"; num-chipselects = <1>; - gpio-sck = <&chipcommon 21 0>; - gpio-miso = <&chipcommon 22 0>; - gpio-mosi = <&chipcommon 23 0>; + sck-gpios = <&chipcommon 21 0>; + miso-gpios = <&chipcommon 22 0>; + mosi-gpios = <&chipcommon 23 0>; cs-gpios = <&chipcommon 24 0>; #address-cells = <1>; #size-cells = <0>; diff --git a/arch/arm/boot/dts/dm814x.dtsi b/arch/arm/boot/dts/dm814x.dtsi index 7702e048e110f..379abf90c765d 100644 --- a/arch/arm/boot/dts/dm814x.dtsi +++ b/arch/arm/boot/dts/dm814x.dtsi @@ -1,8 +1,4 @@ -/* - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. - */ +// SPDX-License-Identifier: GPL-2.0-only #include #include diff --git a/arch/arm/boot/dts/dm816x.dtsi b/arch/arm/boot/dts/dm816x.dtsi index a9e7274806f46..ce62f1fa1faff 100644 --- a/arch/arm/boot/dts/dm816x.dtsi +++ b/arch/arm/boot/dts/dm816x.dtsi @@ -1,8 +1,4 @@ -/* - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. - */ +// SPDX-License-Identifier: GPL-2.0-only #include #include diff --git a/arch/arm/boot/dts/dra62x.dtsi b/arch/arm/boot/dts/dra62x.dtsi index cc4878aaa8ea8..cfefa670515cc 100644 --- a/arch/arm/boot/dts/dra62x.dtsi +++ b/arch/arm/boot/dts/dra62x.dtsi @@ -1,8 +1,4 @@ -/* - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. - */ +// SPDX-License-Identifier: GPL-2.0-only #include "dm814x.dtsi" diff --git a/arch/arm/boot/dts/dra7-dspeve-thermal.dtsi b/arch/arm/boot/dts/dra7-dspeve-thermal.dtsi index e75569383dd80..747ff0db90c7d 100644 --- a/arch/arm/boot/dts/dra7-dspeve-thermal.dtsi +++ b/arch/arm/boot/dts/dra7-dspeve-thermal.dtsi @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Device Tree Source for DRA7x SoC DSPEVE thermal * * Copyright (C) 2016 Texas Instruments Incorporated - https://www.ti.com/ - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. */ #include diff --git a/arch/arm/boot/dts/dra7-iva-thermal.dtsi b/arch/arm/boot/dts/dra7-iva-thermal.dtsi index a7077321613f0..0a31313065df4 100644 --- a/arch/arm/boot/dts/dra7-iva-thermal.dtsi +++ b/arch/arm/boot/dts/dra7-iva-thermal.dtsi @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Device Tree Source for DRA7x SoC IVA thermal * * Copyright (C) 2016 Texas Instruments Incorporated - https://www.ti.com/ - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. */ #include diff --git a/arch/arm/boot/dts/exynos4210-i9100.dts b/arch/arm/boot/dts/exynos4210-i9100.dts index 5f5d9b1357365..93880bdbcad98 100644 --- a/arch/arm/boot/dts/exynos4210-i9100.dts +++ b/arch/arm/boot/dts/exynos4210-i9100.dts @@ -200,8 +200,8 @@ power-on-delay = <10>; reset-delay = <10>; - panel-width-mm = <90>; - panel-height-mm = <154>; + panel-width-mm = <56>; + panel-height-mm = <93>; display-timings { timing { diff --git a/arch/arm/boot/dts/imx23.dtsi b/arch/arm/boot/dts/imx23.dtsi index 7f4c602454a5f..ce3d6360a7efb 100644 --- a/arch/arm/boot/dts/imx23.dtsi +++ b/arch/arm/boot/dts/imx23.dtsi @@ -59,7 +59,7 @@ reg = <0x80000000 0x2000>; }; - dma_apbh: dma-apbh@80004000 { + dma_apbh: dma-controller@80004000 { compatible = "fsl,imx23-dma-apbh"; reg = <0x80004000 0x2000>; interrupts = <0 14 20 0 diff --git a/arch/arm/boot/dts/imx25.dtsi b/arch/arm/boot/dts/imx25.dtsi index fdcca82c9986f..bd8ea2ec24575 100644 --- a/arch/arm/boot/dts/imx25.dtsi +++ b/arch/arm/boot/dts/imx25.dtsi @@ -515,7 +515,7 @@ #interrupt-cells = <2>; }; - sdma: sdma@53fd4000 { + sdma: dma-controller@53fd4000 { compatible = "fsl,imx25-sdma"; reg = <0x53fd4000 0x4000>; clocks = <&clks 112>, <&clks 68>; diff --git a/arch/arm/boot/dts/imx28-xea.dts b/arch/arm/boot/dts/imx28-xea.dts index a400c108f66a2..6c5e6856648af 100644 --- a/arch/arm/boot/dts/imx28-xea.dts +++ b/arch/arm/boot/dts/imx28-xea.dts @@ -8,6 +8,7 @@ #include "imx28-lwe.dtsi" / { + model = "Liebherr XEA board"; compatible = "lwn,imx28-xea", "fsl,imx28"; }; diff --git a/arch/arm/boot/dts/imx28.dtsi b/arch/arm/boot/dts/imx28.dtsi index 84d0176d51933..10eab221bc053 100644 --- a/arch/arm/boot/dts/imx28.dtsi +++ b/arch/arm/boot/dts/imx28.dtsi @@ -78,7 +78,7 @@ status = "disabled"; }; - dma_apbh: dma-apbh@80004000 { + dma_apbh: dma-controller@80004000 { compatible = "fsl,imx28-dma-apbh"; reg = <0x80004000 0x2000>; interrupts = <82 83 84 85 diff --git a/arch/arm/boot/dts/imx31.dtsi b/arch/arm/boot/dts/imx31.dtsi index 948d2a543f8d1..c85866e73a7b9 100644 --- a/arch/arm/boot/dts/imx31.dtsi +++ b/arch/arm/boot/dts/imx31.dtsi @@ -297,7 +297,7 @@ #interrupt-cells = <2>; }; - sdma: sdma@53fd4000 { + sdma: dma-controller@53fd4000 { compatible = "fsl,imx31-sdma"; reg = <0x53fd4000 0x4000>; interrupts = <34>; diff --git a/arch/arm/boot/dts/imx35.dtsi b/arch/arm/boot/dts/imx35.dtsi index 8e41c8b7bd705..d650f54c3fc6b 100644 --- a/arch/arm/boot/dts/imx35.dtsi +++ b/arch/arm/boot/dts/imx35.dtsi @@ -284,7 +284,7 @@ #interrupt-cells = <2>; }; - sdma: sdma@53fd4000 { + sdma: dma-controller@53fd4000 { compatible = "fsl,imx35-sdma"; reg = <0x53fd4000 0x4000>; clocks = <&clks 9>, <&clks 65>; diff --git a/arch/arm/boot/dts/imx50.dtsi b/arch/arm/boot/dts/imx50.dtsi index a969f335b2402..2560f8514ebed 100644 --- a/arch/arm/boot/dts/imx50.dtsi +++ b/arch/arm/boot/dts/imx50.dtsi @@ -421,7 +421,7 @@ status = "disabled"; }; - sdma: sdma@63fb0000 { + sdma: dma-controller@63fb0000 { compatible = "fsl,imx50-sdma", "fsl,imx35-sdma"; reg = <0x63fb0000 0x4000>; interrupts = <6>; diff --git a/arch/arm/boot/dts/imx51.dtsi b/arch/arm/boot/dts/imx51.dtsi index 01cfcbe5928e8..b3ab0c000d9d1 100644 --- a/arch/arm/boot/dts/imx51.dtsi +++ b/arch/arm/boot/dts/imx51.dtsi @@ -498,7 +498,7 @@ status = "disabled"; }; - sdma: sdma@83fb0000 { + sdma: dma-controller@83fb0000 { compatible = "fsl,imx51-sdma", "fsl,imx35-sdma"; reg = <0x83fb0000 0x4000>; interrupts = <6>; diff --git a/arch/arm/boot/dts/imx53.dtsi b/arch/arm/boot/dts/imx53.dtsi index 2cf3909cca2f8..ca1bea42cc0e2 100644 --- a/arch/arm/boot/dts/imx53.dtsi +++ b/arch/arm/boot/dts/imx53.dtsi @@ -710,7 +710,7 @@ status = "disabled"; }; - sdma: sdma@63fb0000 { + sdma: dma-controller@63fb0000 { compatible = "fsl,imx53-sdma", "fsl,imx35-sdma"; reg = <0x63fb0000 0x4000>; interrupts = <6>; diff --git a/arch/arm/boot/dts/imx6q-gk802.dts b/arch/arm/boot/dts/imx6q-gk802.dts index ccc2487d47ca9..2fda68f9d3f64 100644 --- a/arch/arm/boot/dts/imx6q-gk802.dts +++ b/arch/arm/boot/dts/imx6q-gk802.dts @@ -1,10 +1,5 @@ -/* - * Copyright (C) 2013 Philipp Zabel - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. - */ +// SPDX-License-Identifier: GPL-2.0-only +// Copyright (C) 2013 Philipp Zabel /dts-v1/; #include diff --git a/arch/arm/boot/dts/imx6qdl.dtsi b/arch/arm/boot/dts/imx6qdl.dtsi index 8520ffc1779b6..8b6327e64819c 100644 --- a/arch/arm/boot/dts/imx6qdl.dtsi +++ b/arch/arm/boot/dts/imx6qdl.dtsi @@ -150,7 +150,7 @@ interrupt-parent = <&gpc>; ranges; - dma_apbh: dma-apbh@110000 { + dma_apbh: dma-controller@110000 { compatible = "fsl,imx6q-dma-apbh", "fsl,imx28-dma-apbh"; reg = <0x00110000 0x2000>; interrupts = <0 13 IRQ_TYPE_LEVEL_HIGH>, @@ -930,7 +930,7 @@ interrupts = <0 125 IRQ_TYPE_LEVEL_HIGH>; }; - sdma: sdma@20ec000 { + sdma: dma-controller@20ec000 { compatible = "fsl,imx6q-sdma", "fsl,imx35-sdma"; reg = <0x020ec000 0x4000>; interrupts = <0 2 IRQ_TYPE_LEVEL_HIGH>; diff --git a/arch/arm/boot/dts/imx6sl.dtsi b/arch/arm/boot/dts/imx6sl.dtsi index 5b4dfc62030e8..0e0139246ad21 100644 --- a/arch/arm/boot/dts/imx6sl.dtsi +++ b/arch/arm/boot/dts/imx6sl.dtsi @@ -752,7 +752,7 @@ interrupts = <0 6 IRQ_TYPE_LEVEL_HIGH>; }; - sdma: sdma@20ec000 { + sdma: dma-controller@20ec000 { compatible = "fsl,imx6sl-sdma", "fsl,imx6q-sdma"; reg = <0x020ec000 0x4000>; interrupts = <0 2 IRQ_TYPE_LEVEL_HIGH>; diff --git a/arch/arm/boot/dts/imx6sx.dtsi b/arch/arm/boot/dts/imx6sx.dtsi index 3e779fd0a3961..7a3d85e7a5fa7 100644 --- a/arch/arm/boot/dts/imx6sx.dtsi +++ b/arch/arm/boot/dts/imx6sx.dtsi @@ -209,7 +209,7 @@ power-domains = <&pd_pu>; }; - dma_apbh: dma-apbh@1804000 { + dma_apbh: dma-controller@1804000 { compatible = "fsl,imx6sx-dma-apbh", "fsl,imx28-dma-apbh"; reg = <0x01804000 0x2000>; interrupts = , @@ -848,7 +848,7 @@ reg = <0x020e4000 0x4000>; }; - sdma: sdma@20ec000 { + sdma: dma-controller@20ec000 { compatible = "fsl,imx6sx-sdma", "fsl,imx6q-sdma"; reg = <0x020ec000 0x4000>; interrupts = ; diff --git a/arch/arm/boot/dts/imx6ul-pico.dtsi b/arch/arm/boot/dts/imx6ul-pico.dtsi index 357ffb2f5ad61..dd6790852b0d6 100644 --- a/arch/arm/boot/dts/imx6ul-pico.dtsi +++ b/arch/arm/boot/dts/imx6ul-pico.dtsi @@ -121,6 +121,8 @@ max-speed = <100>; interrupt-parent = <&gpio5>; interrupts = <6 IRQ_TYPE_LEVEL_LOW>; + clocks = <&clks IMX6UL_CLK_ENET_REF>; + clock-names = "rmii-ref"; }; }; }; diff --git a/arch/arm/boot/dts/imx6ul.dtsi b/arch/arm/boot/dts/imx6ul.dtsi index eca8bf89ab88f..ad92409349fa2 100644 --- a/arch/arm/boot/dts/imx6ul.dtsi +++ b/arch/arm/boot/dts/imx6ul.dtsi @@ -164,7 +164,7 @@ <0x00a06000 0x2000>; }; - dma_apbh: dma-apbh@1804000 { + dma_apbh: dma-controller@1804000 { compatible = "fsl,imx6q-dma-apbh", "fsl,imx28-dma-apbh"; reg = <0x01804000 0x2000>; interrupts = <0 13 IRQ_TYPE_LEVEL_HIGH>, @@ -744,7 +744,7 @@ status = "disabled"; }; - sdma: sdma@20ec000 { + sdma: dma-controller@20ec000 { compatible = "fsl,imx6ul-sdma", "fsl,imx6q-sdma", "fsl,imx35-sdma"; reg = <0x020ec000 0x4000>; diff --git a/arch/arm/boot/dts/imx7s.dtsi b/arch/arm/boot/dts/imx7s.dtsi index f4d2009d998b7..406e8870c680d 100644 --- a/arch/arm/boot/dts/imx7s.dtsi +++ b/arch/arm/boot/dts/imx7s.dtsi @@ -438,7 +438,7 @@ }; gpt1: timer@302d0000 { - compatible = "fsl,imx7d-gpt", "fsl,imx6sx-gpt"; + compatible = "fsl,imx7d-gpt", "fsl,imx6dl-gpt"; reg = <0x302d0000 0x10000>; interrupts = ; clocks = <&clks IMX7D_GPT1_ROOT_CLK>, @@ -447,7 +447,7 @@ }; gpt2: timer@302e0000 { - compatible = "fsl,imx7d-gpt", "fsl,imx6sx-gpt"; + compatible = "fsl,imx7d-gpt", "fsl,imx6dl-gpt"; reg = <0x302e0000 0x10000>; interrupts = ; clocks = <&clks IMX7D_GPT2_ROOT_CLK>, @@ -457,7 +457,7 @@ }; gpt3: timer@302f0000 { - compatible = "fsl,imx7d-gpt", "fsl,imx6sx-gpt"; + compatible = "fsl,imx7d-gpt", "fsl,imx6dl-gpt"; reg = <0x302f0000 0x10000>; interrupts = ; clocks = <&clks IMX7D_GPT3_ROOT_CLK>, @@ -467,7 +467,7 @@ }; gpt4: timer@30300000 { - compatible = "fsl,imx7d-gpt", "fsl,imx6sx-gpt"; + compatible = "fsl,imx7d-gpt", "fsl,imx6dl-gpt"; reg = <0x30300000 0x10000>; interrupts = ; clocks = <&clks IMX7D_GPT4_ROOT_CLK>, @@ -1166,6 +1166,8 @@ <&clks IMX7D_USDHC1_ROOT_CLK>; clock-names = "ipg", "ahb", "per"; bus-width = <4>; + fsl,tuning-step = <2>; + fsl,tuning-start-tap = <20>; status = "disabled"; }; @@ -1178,6 +1180,8 @@ <&clks IMX7D_USDHC2_ROOT_CLK>; clock-names = "ipg", "ahb", "per"; bus-width = <4>; + fsl,tuning-step = <2>; + fsl,tuning-start-tap = <20>; status = "disabled"; }; @@ -1190,6 +1194,8 @@ <&clks IMX7D_USDHC3_ROOT_CLK>; clock-names = "ipg", "ahb", "per"; bus-width = <4>; + fsl,tuning-step = <2>; + fsl,tuning-start-tap = <20>; status = "disabled"; }; @@ -1206,7 +1212,7 @@ status = "disabled"; }; - sdma: sdma@30bd0000 { + sdma: dma-controller@30bd0000 { compatible = "fsl,imx7d-sdma", "fsl,imx35-sdma"; reg = <0x30bd0000 0x10000>; interrupts = ; @@ -1239,14 +1245,13 @@ }; }; - dma_apbh: dma-apbh@33000000 { + dma_apbh: dma-controller@33000000 { compatible = "fsl,imx7d-dma-apbh", "fsl,imx28-dma-apbh"; reg = <0x33000000 0x2000>; interrupts = , , , ; - interrupt-names = "gpmi0", "gpmi1", "gpmi2", "gpmi3"; #dma-cells = <1>; dma-channels = <4>; clocks = <&clks IMX7D_NAND_USDHC_BUS_RAWNAND_CLK>; diff --git a/arch/arm/boot/dts/motorola-mapphone-common.dtsi b/arch/arm/boot/dts/motorola-mapphone-common.dtsi index a4423ff0df392..2ac1ed8ad8197 100644 --- a/arch/arm/boot/dts/motorola-mapphone-common.dtsi +++ b/arch/arm/boot/dts/motorola-mapphone-common.dtsi @@ -614,12 +614,12 @@ /* Configure pwm clock source for timers 8 & 9 */ &timer8 { assigned-clocks = <&abe_clkctrl OMAP4_TIMER8_CLKCTRL 24>; - assigned-clock-parents = <&sys_clkin_ck>; + assigned-clock-parents = <&sys_32k_ck>; }; &timer9 { assigned-clocks = <&l4_per_clkctrl OMAP4_TIMER9_CLKCTRL 24>; - assigned-clock-parents = <&sys_clkin_ck>; + assigned-clock-parents = <&sys_32k_ck>; }; /* @@ -640,6 +640,7 @@ &uart3 { interrupts-extended = <&wakeupgen GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH &omap4_pmx_core 0x17c>; + overrun-throttle-ms = <500>; }; &uart4 { diff --git a/arch/arm/boot/dts/omap-gpmc-smsc911x.dtsi b/arch/arm/boot/dts/omap-gpmc-smsc911x.dtsi index ded7e8fec9eba..9cf52650f0731 100644 --- a/arch/arm/boot/dts/omap-gpmc-smsc911x.dtsi +++ b/arch/arm/boot/dts/omap-gpmc-smsc911x.dtsi @@ -8,9 +8,9 @@ / { vddvario: regulator-vddvario { - compatible = "regulator-fixed"; - regulator-name = "vddvario"; - regulator-always-on; + compatible = "regulator-fixed"; + regulator-name = "vddvario"; + regulator-always-on; }; vdd33a: regulator-vdd33a { diff --git a/arch/arm/boot/dts/omap-gpmc-smsc9221.dtsi b/arch/arm/boot/dts/omap-gpmc-smsc9221.dtsi index e7534fe9c53cf..bc8961f3690f0 100644 --- a/arch/arm/boot/dts/omap-gpmc-smsc9221.dtsi +++ b/arch/arm/boot/dts/omap-gpmc-smsc9221.dtsi @@ -12,9 +12,9 @@ / { vddvario: regulator-vddvario { - compatible = "regulator-fixed"; - regulator-name = "vddvario"; - regulator-always-on; + compatible = "regulator-fixed"; + regulator-name = "vddvario"; + regulator-always-on; }; vdd33a: regulator-vdd33a { diff --git a/arch/arm/boot/dts/omap2.dtsi b/arch/arm/boot/dts/omap2.dtsi index 5750ca1233cc2..afabb36a8ac13 100644 --- a/arch/arm/boot/dts/omap2.dtsi +++ b/arch/arm/boot/dts/omap2.dtsi @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Device Tree Source for OMAP2 SoC * * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/ - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. */ #include diff --git a/arch/arm/boot/dts/omap2420.dtsi b/arch/arm/boot/dts/omap2420.dtsi index bb529a2a295db..821da51cb8704 100644 --- a/arch/arm/boot/dts/omap2420.dtsi +++ b/arch/arm/boot/dts/omap2420.dtsi @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Device Tree Source for OMAP2420 SoC * * Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/ - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. */ #include "omap2.dtsi" diff --git a/arch/arm/boot/dts/omap2430.dtsi b/arch/arm/boot/dts/omap2430.dtsi index 23115ba61bc06..b9a9e6e45266f 100644 --- a/arch/arm/boot/dts/omap2430.dtsi +++ b/arch/arm/boot/dts/omap2430.dtsi @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Device Tree Source for OMAP243x SoC * * Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/ - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. */ #include "omap2.dtsi" diff --git a/arch/arm/boot/dts/omap3-cm-t3517.dts b/arch/arm/boot/dts/omap3-cm-t3517.dts index 3b8349094baa6..f25c0a84a190c 100644 --- a/arch/arm/boot/dts/omap3-cm-t3517.dts +++ b/arch/arm/boot/dts/omap3-cm-t3517.dts @@ -11,12 +11,12 @@ model = "CompuLab CM-T3517"; compatible = "compulab,omap3-cm-t3517", "ti,am3517", "ti,omap3"; - vmmc: regulator-vmmc { - compatible = "regulator-fixed"; - regulator-name = "vmmc"; - regulator-min-microvolt = <3300000>; - regulator-max-microvolt = <3300000>; - }; + vmmc: regulator-vmmc { + compatible = "regulator-fixed"; + regulator-name = "vmmc"; + regulator-min-microvolt = <3300000>; + regulator-max-microvolt = <3300000>; + }; wl12xx_vmmc2: wl12xx_vmmc2 { compatible = "regulator-fixed"; diff --git a/arch/arm/boot/dts/omap3-cpu-thermal.dtsi b/arch/arm/boot/dts/omap3-cpu-thermal.dtsi index 1ed8378593745..4d2684e4ae06e 100644 --- a/arch/arm/boot/dts/omap3-cpu-thermal.dtsi +++ b/arch/arm/boot/dts/omap3-cpu-thermal.dtsi @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Device Tree Source for OMAP3 SoC CPU thermal * * Copyright (C) 2017 Texas Instruments Incorporated - https://www.ti.com/ - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. */ #include @@ -15,8 +12,7 @@ cpu_thermal: cpu_thermal { polling-delay = <1000>; /* milliseconds */ coefficients = <0 20000>; - /* sensor ID */ - thermal-sensors = <&bandgap 0>; + thermal-sensors = <&bandgap>; cpu_trips: trips { cpu_alert0: cpu_alert { diff --git a/arch/arm/boot/dts/omap3-gta04.dtsi b/arch/arm/boot/dts/omap3-gta04.dtsi index bb5e00b36d8dc..465e0c0ebe568 100644 --- a/arch/arm/boot/dts/omap3-gta04.dtsi +++ b/arch/arm/boot/dts/omap3-gta04.dtsi @@ -332,7 +332,7 @@ OMAP3_CORE1_IOPAD(0x2108, PIN_OUTPUT | MUX_MODE0) /* dss_data22.dss_data22 */ OMAP3_CORE1_IOPAD(0x210a, PIN_OUTPUT | MUX_MODE0) /* dss_data23.dss_data23 */ >; - }; + }; gps_pins: pinmux_gps_pins { pinctrl-single,pins = < @@ -866,8 +866,8 @@ }; &hdqw1w { - pinctrl-names = "default"; - pinctrl-0 = <&hdq_pins>; + pinctrl-names = "default"; + pinctrl-0 = <&hdq_pins>; }; /* image signal processor within OMAP3 SoC */ diff --git a/arch/arm/boot/dts/omap3-ldp.dts b/arch/arm/boot/dts/omap3-ldp.dts index 9c6a927245904..b898e2f6f41dc 100644 --- a/arch/arm/boot/dts/omap3-ldp.dts +++ b/arch/arm/boot/dts/omap3-ldp.dts @@ -301,5 +301,5 @@ &vaux1 { /* Needed for ads7846 */ - regulator-name = "vcc"; + regulator-name = "vcc"; }; diff --git a/arch/arm/boot/dts/omap3-n900.dts b/arch/arm/boot/dts/omap3-n900.dts index d40c3d2c4914e..fdd929bc65d79 100644 --- a/arch/arm/boot/dts/omap3-n900.dts +++ b/arch/arm/boot/dts/omap3-n900.dts @@ -236,27 +236,27 @@ pinctrl-single,pins = < /* address lines */ - OMAP3_CORE1_IOPAD(0x207a, PIN_OUTPUT | MUX_MODE0) /* gpmc_a1.gpmc_a1 */ - OMAP3_CORE1_IOPAD(0x207c, PIN_OUTPUT | MUX_MODE0) /* gpmc_a2.gpmc_a2 */ - OMAP3_CORE1_IOPAD(0x207e, PIN_OUTPUT | MUX_MODE0) /* gpmc_a3.gpmc_a3 */ + OMAP3_CORE1_IOPAD(0x207a, PIN_OUTPUT | MUX_MODE0) /* gpmc_a1.gpmc_a1 */ + OMAP3_CORE1_IOPAD(0x207c, PIN_OUTPUT | MUX_MODE0) /* gpmc_a2.gpmc_a2 */ + OMAP3_CORE1_IOPAD(0x207e, PIN_OUTPUT | MUX_MODE0) /* gpmc_a3.gpmc_a3 */ /* data lines, gpmc_d0..d7 not muxable according to TRM */ - OMAP3_CORE1_IOPAD(0x209e, PIN_INPUT | MUX_MODE0) /* gpmc_d8.gpmc_d8 */ - OMAP3_CORE1_IOPAD(0x20a0, PIN_INPUT | MUX_MODE0) /* gpmc_d9.gpmc_d9 */ - OMAP3_CORE1_IOPAD(0x20a2, PIN_INPUT | MUX_MODE0) /* gpmc_d10.gpmc_d10 */ - OMAP3_CORE1_IOPAD(0x20a4, PIN_INPUT | MUX_MODE0) /* gpmc_d11.gpmc_d11 */ - OMAP3_CORE1_IOPAD(0x20a6, PIN_INPUT | MUX_MODE0) /* gpmc_d12.gpmc_d12 */ - OMAP3_CORE1_IOPAD(0x20a8, PIN_INPUT | MUX_MODE0) /* gpmc_d13.gpmc_d13 */ - OMAP3_CORE1_IOPAD(0x20aa, PIN_INPUT | MUX_MODE0) /* gpmc_d14.gpmc_d14 */ - OMAP3_CORE1_IOPAD(0x20ac, PIN_INPUT | MUX_MODE0) /* gpmc_d15.gpmc_d15 */ + OMAP3_CORE1_IOPAD(0x209e, PIN_INPUT | MUX_MODE0) /* gpmc_d8.gpmc_d8 */ + OMAP3_CORE1_IOPAD(0x20a0, PIN_INPUT | MUX_MODE0) /* gpmc_d9.gpmc_d9 */ + OMAP3_CORE1_IOPAD(0x20a2, PIN_INPUT | MUX_MODE0) /* gpmc_d10.gpmc_d10 */ + OMAP3_CORE1_IOPAD(0x20a4, PIN_INPUT | MUX_MODE0) /* gpmc_d11.gpmc_d11 */ + OMAP3_CORE1_IOPAD(0x20a6, PIN_INPUT | MUX_MODE0) /* gpmc_d12.gpmc_d12 */ + OMAP3_CORE1_IOPAD(0x20a8, PIN_INPUT | MUX_MODE0) /* gpmc_d13.gpmc_d13 */ + OMAP3_CORE1_IOPAD(0x20aa, PIN_INPUT | MUX_MODE0) /* gpmc_d14.gpmc_d14 */ + OMAP3_CORE1_IOPAD(0x20ac, PIN_INPUT | MUX_MODE0) /* gpmc_d15.gpmc_d15 */ /* * gpmc_ncs0, gpmc_nadv_ale, gpmc_noe, gpmc_nwe, gpmc_wait0 not muxable * according to TRM. OneNAND seems to require PIN_INPUT on clock. */ - OMAP3_CORE1_IOPAD(0x20b0, PIN_OUTPUT | MUX_MODE0) /* gpmc_ncs1.gpmc_ncs1 */ - OMAP3_CORE1_IOPAD(0x20be, PIN_INPUT | MUX_MODE0) /* gpmc_clk.gpmc_clk */ - >; + OMAP3_CORE1_IOPAD(0x20b0, PIN_OUTPUT | MUX_MODE0) /* gpmc_ncs1.gpmc_ncs1 */ + OMAP3_CORE1_IOPAD(0x20be, PIN_INPUT | MUX_MODE0) /* gpmc_clk.gpmc_clk */ + >; }; i2c1_pins: pinmux_i2c1_pins { @@ -738,12 +738,12 @@ si4713: si4713@63 { compatible = "silabs,si4713"; - reg = <0x63>; + reg = <0x63>; - interrupts-extended = <&gpio2 21 IRQ_TYPE_EDGE_FALLING>; /* 53 */ - reset-gpios = <&gpio6 3 GPIO_ACTIVE_HIGH>; /* 163 */ - vio-supply = <&vio>; - vdd-supply = <&vaux1>; + interrupts-extended = <&gpio2 21 IRQ_TYPE_EDGE_FALLING>; /* 53 */ + reset-gpios = <&gpio6 3 GPIO_ACTIVE_HIGH>; /* 163 */ + vio-supply = <&vio>; + vdd-supply = <&vaux1>; }; bq24150a: bq24150a@6b { diff --git a/arch/arm/boot/dts/omap3-zoom3.dts b/arch/arm/boot/dts/omap3-zoom3.dts index 0482676d18306..ce58b1f208e81 100644 --- a/arch/arm/boot/dts/omap3-zoom3.dts +++ b/arch/arm/boot/dts/omap3-zoom3.dts @@ -23,9 +23,9 @@ }; vddvario: regulator-vddvario { - compatible = "regulator-fixed"; - regulator-name = "vddvario"; - regulator-always-on; + compatible = "regulator-fixed"; + regulator-name = "vddvario"; + regulator-always-on; }; vdd33a: regulator-vdd33a { @@ -84,28 +84,28 @@ uart1_pins: pinmux_uart1_pins { pinctrl-single,pins = < - OMAP3_CORE1_IOPAD(0x2180, PIN_INPUT | MUX_MODE0) /* uart1_cts.uart1_cts */ - OMAP3_CORE1_IOPAD(0x217e, PIN_OUTPUT | MUX_MODE0) /* uart1_rts.uart1_rts */ - OMAP3_CORE1_IOPAD(0x2182, WAKEUP_EN | PIN_INPUT | MUX_MODE0) /* uart1_rx.uart1_rx */ - OMAP3_CORE1_IOPAD(0x217c, PIN_OUTPUT | MUX_MODE0) /* uart1_tx.uart1_tx */ + OMAP3_CORE1_IOPAD(0x2180, PIN_INPUT | MUX_MODE0) /* uart1_cts.uart1_cts */ + OMAP3_CORE1_IOPAD(0x217e, PIN_OUTPUT | MUX_MODE0) /* uart1_rts.uart1_rts */ + OMAP3_CORE1_IOPAD(0x2182, WAKEUP_EN | PIN_INPUT | MUX_MODE0) /* uart1_rx.uart1_rx */ + OMAP3_CORE1_IOPAD(0x217c, PIN_OUTPUT | MUX_MODE0) /* uart1_tx.uart1_tx */ >; }; uart2_pins: pinmux_uart2_pins { pinctrl-single,pins = < - OMAP3_CORE1_IOPAD(0x2174, PIN_INPUT_PULLUP | MUX_MODE0) /* uart2_cts.uart2_cts */ - OMAP3_CORE1_IOPAD(0x2176, PIN_OUTPUT | MUX_MODE0) /* uart2_rts.uart2_rts */ - OMAP3_CORE1_IOPAD(0x217a, PIN_INPUT | MUX_MODE0) /* uart2_rx.uart2_rx */ - OMAP3_CORE1_IOPAD(0x2178, PIN_OUTPUT | MUX_MODE0) /* uart2_tx.uart2_tx */ + OMAP3_CORE1_IOPAD(0x2174, PIN_INPUT_PULLUP | MUX_MODE0) /* uart2_cts.uart2_cts */ + OMAP3_CORE1_IOPAD(0x2176, PIN_OUTPUT | MUX_MODE0) /* uart2_rts.uart2_rts */ + OMAP3_CORE1_IOPAD(0x217a, PIN_INPUT | MUX_MODE0) /* uart2_rx.uart2_rx */ + OMAP3_CORE1_IOPAD(0x2178, PIN_OUTPUT | MUX_MODE0) /* uart2_tx.uart2_tx */ >; }; uart3_pins: pinmux_uart3_pins { pinctrl-single,pins = < - OMAP3_CORE1_IOPAD(0x219a, PIN_INPUT_PULLDOWN | MUX_MODE0) /* uart3_cts_rctx.uart3_cts_rctx */ - OMAP3_CORE1_IOPAD(0x219c, PIN_OUTPUT | MUX_MODE0) /* uart3_rts_sd.uart3_rts_sd */ - OMAP3_CORE1_IOPAD(0x219e, PIN_INPUT | MUX_MODE0) /* uart3_rx_irrx.uart3_rx_irrx */ - OMAP3_CORE1_IOPAD(0x21a0, PIN_OUTPUT | MUX_MODE0) /* uart3_tx_irtx.uart3_tx_irtx */ + OMAP3_CORE1_IOPAD(0x219a, PIN_INPUT_PULLDOWN | MUX_MODE0) /* uart3_cts_rctx.uart3_cts_rctx */ + OMAP3_CORE1_IOPAD(0x219c, PIN_OUTPUT | MUX_MODE0) /* uart3_rts_sd.uart3_rts_sd */ + OMAP3_CORE1_IOPAD(0x219e, PIN_INPUT | MUX_MODE0) /* uart3_rx_irrx.uart3_rx_irrx */ + OMAP3_CORE1_IOPAD(0x21a0, PIN_OUTPUT | MUX_MODE0) /* uart3_tx_irtx.uart3_tx_irtx */ >; }; @@ -205,22 +205,22 @@ }; &uart1 { - pinctrl-names = "default"; - pinctrl-0 = <&uart1_pins>; + pinctrl-names = "default"; + pinctrl-0 = <&uart1_pins>; }; &uart2 { - pinctrl-names = "default"; - pinctrl-0 = <&uart2_pins>; + pinctrl-names = "default"; + pinctrl-0 = <&uart2_pins>; }; &uart3 { - pinctrl-names = "default"; - pinctrl-0 = <&uart3_pins>; + pinctrl-names = "default"; + pinctrl-0 = <&uart3_pins>; }; &uart4 { - status = "disabled"; + status = "disabled"; }; &usb_otg_hs { diff --git a/arch/arm/boot/dts/omap3.dtsi b/arch/arm/boot/dts/omap3.dtsi index 64b7e6fddd1bc..825075ff0e342 100644 --- a/arch/arm/boot/dts/omap3.dtsi +++ b/arch/arm/boot/dts/omap3.dtsi @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Device Tree Source for OMAP3 SoC * * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/ - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. */ #include diff --git a/arch/arm/boot/dts/omap34xx.dtsi b/arch/arm/boot/dts/omap34xx.dtsi index 8b8451399784f..2eb73ae7ef3e7 100644 --- a/arch/arm/boot/dts/omap34xx.dtsi +++ b/arch/arm/boot/dts/omap34xx.dtsi @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Device Tree Source for OMAP34xx/OMAP35xx SoC * * Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com/ - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. */ #include diff --git a/arch/arm/boot/dts/omap36xx.dtsi b/arch/arm/boot/dts/omap36xx.dtsi index 22b33098b1a2d..32ac7924a1303 100644 --- a/arch/arm/boot/dts/omap36xx.dtsi +++ b/arch/arm/boot/dts/omap36xx.dtsi @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Device Tree Source for OMAP3 SoC * * Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/ - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. */ #include diff --git a/arch/arm/boot/dts/omap4-cpu-thermal.dtsi b/arch/arm/boot/dts/omap4-cpu-thermal.dtsi index 03d054b2bf9af..d484ec1e4fd86 100644 --- a/arch/arm/boot/dts/omap4-cpu-thermal.dtsi +++ b/arch/arm/boot/dts/omap4-cpu-thermal.dtsi @@ -1,12 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Device Tree Source for OMAP4/5 SoC CPU thermal * * Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com/ * Contact: Eduardo Valentin - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. */ #include @@ -15,21 +12,24 @@ cpu_thermal: cpu_thermal { polling-delay-passive = <250>; /* milliseconds */ polling-delay = <1000>; /* milliseconds */ - /* sensor ID */ - thermal-sensors = <&bandgap 0>; + /* + * See 44xx files for single sensor addressing, omap5 and dra7 need + * also sensor ID for addressing. + */ + thermal-sensors = <&bandgap 0>; cpu_trips: trips { - cpu_alert0: cpu_alert { - temperature = <100000>; /* millicelsius */ - hysteresis = <2000>; /* millicelsius */ - type = "passive"; - }; - cpu_crit: cpu_crit { - temperature = <125000>; /* millicelsius */ - hysteresis = <2000>; /* millicelsius */ - type = "critical"; - }; - }; + cpu_alert0: cpu_alert { + temperature = <100000>; /* millicelsius */ + hysteresis = <2000>; /* millicelsius */ + type = "passive"; + }; + cpu_crit: cpu_crit { + temperature = <125000>; /* millicelsius */ + hysteresis = <2000>; /* millicelsius */ + type = "critical"; + }; + }; cpu_cooling_maps: cooling-maps { map0 { diff --git a/arch/arm/boot/dts/omap443x.dtsi b/arch/arm/boot/dts/omap443x.dtsi index 8466161197aef..2104170fe2cd7 100644 --- a/arch/arm/boot/dts/omap443x.dtsi +++ b/arch/arm/boot/dts/omap443x.dtsi @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Device Tree Source for OMAP443x SoC * * Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com/ - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. */ #include "omap4.dtsi" @@ -72,6 +69,7 @@ }; &cpu_thermal { + thermal-sensors = <&bandgap>; coefficients = <0 20000>; }; diff --git a/arch/arm/boot/dts/omap4460.dtsi b/arch/arm/boot/dts/omap4460.dtsi index 3d6db1db94e04..a6764750d4476 100644 --- a/arch/arm/boot/dts/omap4460.dtsi +++ b/arch/arm/boot/dts/omap4460.dtsi @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Device Tree Source for OMAP4460 SoC * * Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/ - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. */ #include "omap4.dtsi" @@ -82,6 +79,7 @@ }; &cpu_thermal { + thermal-sensors = <&bandgap>; coefficients = <348 (-9301)>; }; diff --git a/arch/arm/boot/dts/omap5-cm-t54.dts b/arch/arm/boot/dts/omap5-cm-t54.dts index e62ea8b6d53fd..af288d63a26a4 100644 --- a/arch/arm/boot/dts/omap5-cm-t54.dts +++ b/arch/arm/boot/dts/omap5-cm-t54.dts @@ -84,36 +84,36 @@ }; lcd0: display { - compatible = "startek,startek-kd050c", "panel-dpi"; - label = "lcd"; - - pinctrl-names = "default"; - pinctrl-0 = <&lcd_pins>; - - enable-gpios = <&gpio8 3 GPIO_ACTIVE_HIGH>; - - panel-timing { - clock-frequency = <33000000>; - hactive = <800>; - vactive = <480>; - hfront-porch = <40>; - hback-porch = <40>; - hsync-len = <43>; - vback-porch = <29>; - vfront-porch = <13>; - vsync-len = <3>; - hsync-active = <0>; - vsync-active = <0>; - de-active = <1>; - pixelclk-active = <1>; - }; - - port { - lcd_in: endpoint { - remote-endpoint = <&dpi_lcd_out>; - }; - }; - }; + compatible = "startek,startek-kd050c", "panel-dpi"; + label = "lcd"; + + pinctrl-names = "default"; + pinctrl-0 = <&lcd_pins>; + + enable-gpios = <&gpio8 3 GPIO_ACTIVE_HIGH>; + + panel-timing { + clock-frequency = <33000000>; + hactive = <800>; + vactive = <480>; + hfront-porch = <40>; + hback-porch = <40>; + hsync-len = <43>; + vback-porch = <29>; + vfront-porch = <13>; + vsync-len = <3>; + hsync-active = <0>; + vsync-active = <0>; + de-active = <1>; + pixelclk-active = <1>; + }; + + port { + lcd_in: endpoint { + remote-endpoint = <&dpi_lcd_out>; + }; + }; + }; hdmi0: connector0 { compatible = "hdmi-connector"; @@ -644,8 +644,8 @@ }; &usb3 { - extcon = <&extcon_usb3>; - vbus-supply = <&smps10_out1_reg>; + extcon = <&extcon_usb3>; + vbus-supply = <&smps10_out1_reg>; }; &cpu0 { diff --git a/arch/arm/boot/dts/omap5-core-thermal.dtsi b/arch/arm/boot/dts/omap5-core-thermal.dtsi index 02e76338bfbc0..e0d8e39a0014b 100644 --- a/arch/arm/boot/dts/omap5-core-thermal.dtsi +++ b/arch/arm/boot/dts/omap5-core-thermal.dtsi @@ -1,12 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Device Tree Source for OMAP543x SoC CORE thermal * * Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com/ * Contact: Eduardo Valentin - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. */ #include diff --git a/arch/arm/boot/dts/omap5-gpu-thermal.dtsi b/arch/arm/boot/dts/omap5-gpu-thermal.dtsi index bf8fa9372e575..1b4b7d9136c84 100644 --- a/arch/arm/boot/dts/omap5-gpu-thermal.dtsi +++ b/arch/arm/boot/dts/omap5-gpu-thermal.dtsi @@ -1,12 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Device Tree Source for OMAP543x SoC GPU thermal * * Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com/ * Contact: Eduardo Valentin - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. */ #include diff --git a/arch/arm/boot/dts/orion5x-lacie-d2-network.dts b/arch/arm/boot/dts/orion5x-lacie-d2-network.dts index 422958d13d42f..03471d30bfd95 100644 --- a/arch/arm/boot/dts/orion5x-lacie-d2-network.dts +++ b/arch/arm/boot/dts/orion5x-lacie-d2-network.dts @@ -1,10 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2014 Thomas Petazzoni * Copyright (C) 2009 Simon Guinot - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ /dts-v1/; diff --git a/arch/arm/boot/dts/orion5x-lacie-ethernet-disk-mini-v2.dts b/arch/arm/boot/dts/orion5x-lacie-ethernet-disk-mini-v2.dts index 0043e0040153c..f17e25ac98ddb 100644 --- a/arch/arm/boot/dts/orion5x-lacie-ethernet-disk-mini-v2.dts +++ b/arch/arm/boot/dts/orion5x-lacie-ethernet-disk-mini-v2.dts @@ -1,10 +1,5 @@ -/* - * Copyright (C) 2012 Thomas Petazzoni - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - */ +// SPDX-License-Identifier: GPL-2.0-only +// Copyright (C) 2012 Thomas Petazzoni /* * TODO: add Orion USB device port init when kernel.org support is added. diff --git a/arch/arm/boot/dts/orion5x-maxtor-shared-storage-2.dts b/arch/arm/boot/dts/orion5x-maxtor-shared-storage-2.dts index 0ca6208a267de..d57859998350d 100644 --- a/arch/arm/boot/dts/orion5x-maxtor-shared-storage-2.dts +++ b/arch/arm/boot/dts/orion5x-maxtor-shared-storage-2.dts @@ -1,10 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2014 Thomas Petazzoni * Copyright (C) Sylver Bruneau - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ /dts-v1/; diff --git a/arch/arm/boot/dts/orion5x-mv88f5181.dtsi b/arch/arm/boot/dts/orion5x-mv88f5181.dtsi index f667012b26ca1..819f9efb7058d 100644 --- a/arch/arm/boot/dts/orion5x-mv88f5181.dtsi +++ b/arch/arm/boot/dts/orion5x-mv88f5181.dtsi @@ -1,10 +1,5 @@ -/* - * Copyright (C) 2016 Jamie Lentin - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - */ +// SPDX-License-Identifier: GPL-2.0-only +// Copyright (C) 2016 Jamie Lentin #include "orion5x.dtsi" diff --git a/arch/arm/boot/dts/orion5x-mv88f5182.dtsi b/arch/arm/boot/dts/orion5x-mv88f5182.dtsi index d1ed71c602096..86b87fb26dc9a 100644 --- a/arch/arm/boot/dts/orion5x-mv88f5182.dtsi +++ b/arch/arm/boot/dts/orion5x-mv88f5182.dtsi @@ -1,10 +1,5 @@ -/* - * Copyright (C) 2014 Thomas Petazzoni - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - */ +// SPDX-License-Identifier: GPL-2.0-only +// Copyright (C) 2014 Thomas Petazzoni #include "orion5x.dtsi" diff --git a/arch/arm/boot/dts/orion5x-netgear-wnr854t.dts b/arch/arm/boot/dts/orion5x-netgear-wnr854t.dts index ea081afa469d9..4f4888ec91380 100644 --- a/arch/arm/boot/dts/orion5x-netgear-wnr854t.dts +++ b/arch/arm/boot/dts/orion5x-netgear-wnr854t.dts @@ -1,10 +1,5 @@ -/* - * Copyright (C) 2016 Jamie Lentin - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - */ +// SPDX-License-Identifier: GPL-2.0-only +// Copyright (C) 2016 Jamie Lentin /dts-v1/; diff --git a/arch/arm/boot/dts/orion5x-rd88f5182-nas.dts b/arch/arm/boot/dts/orion5x-rd88f5182-nas.dts index 487324f7c54e7..fd78aa02a3c5b 100644 --- a/arch/arm/boot/dts/orion5x-rd88f5182-nas.dts +++ b/arch/arm/boot/dts/orion5x-rd88f5182-nas.dts @@ -1,10 +1,5 @@ -/* - * Copyright (C) 2014 Thomas Petazzoni - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - */ +// SPDX-License-Identifier: GPL-2.0-only +// Copyright (C) 2014 Thomas Petazzoni /dts-v1/; diff --git a/arch/arm/boot/dts/orion5x.dtsi b/arch/arm/boot/dts/orion5x.dtsi index 61e631b3fd8bb..2d41f5c166ee7 100644 --- a/arch/arm/boot/dts/orion5x.dtsi +++ b/arch/arm/boot/dts/orion5x.dtsi @@ -1,10 +1,5 @@ -/* - * Copyright (C) 2012 Thomas Petazzoni - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - */ +// SPDX-License-Identifier: GPL-2.0-only +// Copyright (C) 2012 Thomas Petazzoni #define MBUS_ID(target,attributes) (((target) << 24) | ((attributes) << 16)) diff --git a/arch/arm/boot/dts/qcom-mdm9615.dtsi b/arch/arm/boot/dts/qcom-mdm9615.dtsi index ad9b52d53ef9b..982f3c3921965 100644 --- a/arch/arm/boot/dts/qcom-mdm9615.dtsi +++ b/arch/arm/boot/dts/qcom-mdm9615.dtsi @@ -82,14 +82,12 @@ }; }; - regulators { - vsdcc_fixed: vsdcc-regulator { - compatible = "regulator-fixed"; - regulator-name = "SDCC Power"; - regulator-min-microvolt = <2700000>; - regulator-max-microvolt = <2700000>; - regulator-always-on; - }; + vsdcc_fixed: vsdcc-regulator { + compatible = "regulator-fixed"; + regulator-name = "SDCC Power"; + regulator-min-microvolt = <2700000>; + regulator-max-microvolt = <2700000>; + regulator-always-on; }; soc: soc { diff --git a/arch/arm/boot/dts/r8a7792-blanche.dts b/arch/arm/boot/dts/r8a7792-blanche.dts index 62aa9f61321be..089fef40c4c49 100644 --- a/arch/arm/boot/dts/r8a7792-blanche.dts +++ b/arch/arm/boot/dts/r8a7792-blanche.dts @@ -239,7 +239,7 @@ }; keyboard_pins: keyboard { - pins = "GP_3_10", "GP_3_11", "GP_3_12", "GP_3_15", "GP_11_02"; + pins = "GP_3_10", "GP_3_11", "GP_3_12", "GP_3_15", "GP_11_2"; bias-pull-up; }; diff --git a/arch/arm/boot/dts/s3c6410-mini6410.dts b/arch/arm/boot/dts/s3c6410-mini6410.dts index 285555b9ed943..0b07b3c319604 100644 --- a/arch/arm/boot/dts/s3c6410-mini6410.dts +++ b/arch/arm/boot/dts/s3c6410-mini6410.dts @@ -51,7 +51,7 @@ ethernet@18000000 { compatible = "davicom,dm9000"; - reg = <0x18000000 0x2 0x18000004 0x2>; + reg = <0x18000000 0x2>, <0x18000004 0x2>; interrupt-parent = <&gpn>; interrupts = <7 IRQ_TYPE_LEVEL_HIGH>; davicom,no-eeprom; @@ -193,12 +193,12 @@ }; &pinctrl0 { - gpio_leds: gpio-leds { + gpio_leds: gpio-leds-pins { samsung,pins = "gpk-4", "gpk-5", "gpk-6", "gpk-7"; samsung,pin-pud = ; }; - gpio_keys: gpio-keys { + gpio_keys: gpio-keys-pins { samsung,pins = "gpn-0", "gpn-1", "gpn-2", "gpn-3", "gpn-4", "gpn-5", "gpl-11", "gpl-12"; samsung,pin-pud = ; diff --git a/arch/arm/boot/dts/s3c64xx-pinctrl.dtsi b/arch/arm/boot/dts/s3c64xx-pinctrl.dtsi index 8e9594d64b579..0a3186d57cb56 100644 --- a/arch/arm/boot/dts/s3c64xx-pinctrl.dtsi +++ b/arch/arm/boot/dts/s3c64xx-pinctrl.dtsi @@ -16,111 +16,111 @@ * Pin banks */ - gpa: gpa { + gpa: gpa-gpio-bank { gpio-controller; #gpio-cells = <2>; interrupt-controller; #interrupt-cells = <2>; }; - gpb: gpb { + gpb: gpb-gpio-bank { gpio-controller; #gpio-cells = <2>; interrupt-controller; #interrupt-cells = <2>; }; - gpc: gpc { + gpc: gpc-gpio-bank { gpio-controller; #gpio-cells = <2>; interrupt-controller; #interrupt-cells = <2>; }; - gpd: gpd { + gpd: gpd-gpio-bank { gpio-controller; #gpio-cells = <2>; interrupt-controller; #interrupt-cells = <2>; }; - gpe: gpe { + gpe: gpe-gpio-bank { gpio-controller; #gpio-cells = <2>; }; - gpf: gpf { + gpf: gpf-gpio-bank { gpio-controller; #gpio-cells = <2>; interrupt-controller; #interrupt-cells = <2>; }; - gpg: gpg { + gpg: gpg-gpio-bank { gpio-controller; #gpio-cells = <2>; interrupt-controller; #interrupt-cells = <2>; }; - gph: gph { + gph: gph-gpio-bank { gpio-controller; #gpio-cells = <2>; interrupt-controller; #interrupt-cells = <2>; }; - gpi: gpi { + gpi: gpi-gpio-bank { gpio-controller; #gpio-cells = <2>; }; - gpj: gpj { + gpj: gpj-gpio-bank { gpio-controller; #gpio-cells = <2>; }; - gpk: gpk { + gpk: gpk-gpio-bank { gpio-controller; #gpio-cells = <2>; }; - gpl: gpl { + gpl: gpl-gpio-bank { gpio-controller; #gpio-cells = <2>; interrupt-controller; #interrupt-cells = <2>; }; - gpm: gpm { + gpm: gpm-gpio-bank { gpio-controller; #gpio-cells = <2>; interrupt-controller; #interrupt-cells = <2>; }; - gpn: gpn { + gpn: gpn-gpio-bank { gpio-controller; #gpio-cells = <2>; interrupt-controller; #interrupt-cells = <2>; }; - gpo: gpo { + gpo: gpo-gpio-bank { gpio-controller; #gpio-cells = <2>; interrupt-controller; #interrupt-cells = <2>; }; - gpp: gpp { + gpp: gpp-gpio-bank { gpio-controller; #gpio-cells = <2>; interrupt-controller; #interrupt-cells = <2>; }; - gpq: gpq { + gpq: gpq-gpio-bank { gpio-controller; #gpio-cells = <2>; interrupt-controller; @@ -131,225 +131,225 @@ * Pin groups */ - uart0_data: uart0-data { + uart0_data: uart0-data-pins { samsung,pins = "gpa-0", "gpa-1"; samsung,pin-function = ; samsung,pin-pud = ; }; - uart0_fctl: uart0-fctl { + uart0_fctl: uart0-fctl-pins { samsung,pins = "gpa-2", "gpa-3"; samsung,pin-function = ; samsung,pin-pud = ; }; - uart1_data: uart1-data { + uart1_data: uart1-data-pins { samsung,pins = "gpa-4", "gpa-5"; samsung,pin-function = ; samsung,pin-pud = ; }; - uart1_fctl: uart1-fctl { + uart1_fctl: uart1-fctl-pins { samsung,pins = "gpa-6", "gpa-7"; samsung,pin-function = ; samsung,pin-pud = ; }; - uart2_data: uart2-data { + uart2_data: uart2-data-pins { samsung,pins = "gpb-0", "gpb-1"; samsung,pin-function = ; samsung,pin-pud = ; }; - uart3_data: uart3-data { + uart3_data: uart3-data-pins { samsung,pins = "gpb-2", "gpb-3"; samsung,pin-function = ; samsung,pin-pud = ; }; - ext_dma_0: ext-dma-0 { + ext_dma_0: ext-dma-0-pins { samsung,pins = "gpb-0", "gpb-1"; samsung,pin-function = ; samsung,pin-pud = ; }; - ext_dma_1: ext-dma-1 { + ext_dma_1: ext-dma-1-pins { samsung,pins = "gpb-2", "gpb-3"; samsung,pin-function = ; samsung,pin-pud = ; }; - irda_data_0: irda-data-0 { + irda_data_0: irda-data-0-pins { samsung,pins = "gpb-0", "gpb-1"; samsung,pin-function = ; samsung,pin-pud = ; }; - irda_data_1: irda-data-1 { + irda_data_1: irda-data-1-pins { samsung,pins = "gpb-2", "gpb-3"; samsung,pin-function = ; samsung,pin-pud = ; }; - irda_sdbw: irda-sdbw { + irda_sdbw: irda-sdbw-pins { samsung,pins = "gpb-4"; samsung,pin-function = ; samsung,pin-pud = ; }; - i2c0_bus: i2c0-bus { + i2c0_bus: i2c0-bus-pins { samsung,pins = "gpb-5", "gpb-6"; samsung,pin-function = ; samsung,pin-pud = ; }; - i2c1_bus: i2c1-bus { + i2c1_bus: i2c1-bus-pins { /* S3C6410-only */ samsung,pins = "gpb-2", "gpb-3"; samsung,pin-function = ; samsung,pin-pud = ; }; - spi0_bus: spi0-bus { + spi0_bus: spi0-bus-pins { samsung,pins = "gpc-0", "gpc-1", "gpc-2"; samsung,pin-function = ; samsung,pin-pud = ; }; - spi0_cs: spi0-cs { + spi0_cs: spi0-cs-pins { samsung,pins = "gpc-3"; samsung,pin-function = ; samsung,pin-pud = ; }; - spi1_bus: spi1-bus { + spi1_bus: spi1-bus-pins { samsung,pins = "gpc-4", "gpc-5", "gpc-6"; samsung,pin-function = ; samsung,pin-pud = ; }; - spi1_cs: spi1-cs { + spi1_cs: spi1-cs-pins { samsung,pins = "gpc-7"; samsung,pin-function = ; samsung,pin-pud = ; }; - sd0_cmd: sd0-cmd { + sd0_cmd: sd0-cmd-pins { samsung,pins = "gpg-1"; samsung,pin-function = ; samsung,pin-pud = ; }; - sd0_clk: sd0-clk { + sd0_clk: sd0-clk-pins { samsung,pins = "gpg-0"; samsung,pin-function = ; samsung,pin-pud = ; }; - sd0_bus1: sd0-bus1 { + sd0_bus1: sd0-bus1-pins { samsung,pins = "gpg-2"; samsung,pin-function = ; samsung,pin-pud = ; }; - sd0_bus4: sd0-bus4 { + sd0_bus4: sd0-bus4-pins { samsung,pins = "gpg-2", "gpg-3", "gpg-4", "gpg-5"; samsung,pin-function = ; samsung,pin-pud = ; }; - sd0_cd: sd0-cd { + sd0_cd: sd0-cd-pins { samsung,pins = "gpg-6"; samsung,pin-function = ; samsung,pin-pud = ; }; - sd1_cmd: sd1-cmd { + sd1_cmd: sd1-cmd-pins { samsung,pins = "gph-1"; samsung,pin-function = ; samsung,pin-pud = ; }; - sd1_clk: sd1-clk { + sd1_clk: sd1-clk-pins { samsung,pins = "gph-0"; samsung,pin-function = ; samsung,pin-pud = ; }; - sd1_bus1: sd1-bus1 { + sd1_bus1: sd1-bus1-pins { samsung,pins = "gph-2"; samsung,pin-function = ; samsung,pin-pud = ; }; - sd1_bus4: sd1-bus4 { + sd1_bus4: sd1-bus4-pins { samsung,pins = "gph-2", "gph-3", "gph-4", "gph-5"; samsung,pin-function = ; samsung,pin-pud = ; }; - sd1_bus8: sd1-bus8 { + sd1_bus8: sd1-bus8-pins { samsung,pins = "gph-2", "gph-3", "gph-4", "gph-5", "gph-6", "gph-7", "gph-8", "gph-9"; samsung,pin-function = ; samsung,pin-pud = ; }; - sd1_cd: sd1-cd { + sd1_cd: sd1-cd-pins { samsung,pins = "gpg-6"; samsung,pin-function = ; samsung,pin-pud = ; }; - sd2_cmd: sd2-cmd { + sd2_cmd: sd2-cmd-pins { samsung,pins = "gpc-4"; samsung,pin-function = ; samsung,pin-pud = ; }; - sd2_clk: sd2-clk { + sd2_clk: sd2-clk-pins { samsung,pins = "gpc-5"; samsung,pin-function = ; samsung,pin-pud = ; }; - sd2_bus1: sd2-bus1 { + sd2_bus1: sd2-bus1-pins { samsung,pins = "gph-6"; samsung,pin-function = ; samsung,pin-pud = ; }; - sd2_bus4: sd2-bus4 { + sd2_bus4: sd2-bus4-pins { samsung,pins = "gph-6", "gph-7", "gph-8", "gph-9"; samsung,pin-function = ; samsung,pin-pud = ; }; - i2s0_bus: i2s0-bus { + i2s0_bus: i2s0-bus-pins { samsung,pins = "gpd-0", "gpd-2", "gpd-3", "gpd-4"; samsung,pin-function = ; samsung,pin-pud = ; }; - i2s0_cdclk: i2s0-cdclk { + i2s0_cdclk: i2s0-cdclk-pins { samsung,pins = "gpd-1"; samsung,pin-function = ; samsung,pin-pud = ; }; - i2s1_bus: i2s1-bus { + i2s1_bus: i2s1-bus-pins { samsung,pins = "gpe-0", "gpe-2", "gpe-3", "gpe-4"; samsung,pin-function = ; samsung,pin-pud = ; }; - i2s1_cdclk: i2s1-cdclk { + i2s1_cdclk: i2s1-cdclk-pins { samsung,pins = "gpe-1"; samsung,pin-function = ; samsung,pin-pud = ; }; - i2s2_bus: i2s2-bus { + i2s2_bus: i2s2-bus-pins { /* S3C6410-only */ samsung,pins = "gpc-4", "gpc-5", "gpc-6", "gph-6", "gph-8", "gph-9"; @@ -357,50 +357,50 @@ samsung,pin-pud = ; }; - i2s2_cdclk: i2s2-cdclk { + i2s2_cdclk: i2s2-cdclk-pins { /* S3C6410-only */ samsung,pins = "gph-7"; samsung,pin-function = ; samsung,pin-pud = ; }; - pcm0_bus: pcm0-bus { + pcm0_bus: pcm0-bus-pins { samsung,pins = "gpd-0", "gpd-2", "gpd-3", "gpd-4"; samsung,pin-function = ; samsung,pin-pud = ; }; - pcm0_extclk: pcm0-extclk { + pcm0_extclk: pcm0-extclk-pins { samsung,pins = "gpd-1"; samsung,pin-function = ; samsung,pin-pud = ; }; - pcm1_bus: pcm1-bus { + pcm1_bus: pcm1-bus-pins { samsung,pins = "gpe-0", "gpe-2", "gpe-3", "gpe-4"; samsung,pin-function = ; samsung,pin-pud = ; }; - pcm1_extclk: pcm1-extclk { + pcm1_extclk: pcm1-extclk-pins { samsung,pins = "gpe-1"; samsung,pin-function = ; samsung,pin-pud = ; }; - ac97_bus_0: ac97-bus-0 { + ac97_bus_0: ac97-bus-0-pins { samsung,pins = "gpd-0", "gpd-1", "gpd-2", "gpd-3", "gpd-4"; samsung,pin-function = ; samsung,pin-pud = ; }; - ac97_bus_1: ac97-bus-1 { + ac97_bus_1: ac97-bus-1-pins { samsung,pins = "gpe-0", "gpe-1", "gpe-2", "gpe-3", "gpe-4"; samsung,pin-function = ; samsung,pin-pud = ; }; - cam_port: cam-port { + cam_port: cam-port-pins { samsung,pins = "gpf-0", "gpf-1", "gpf-2", "gpf-4", "gpf-5", "gpf-6", "gpf-7", "gpf-8", "gpf-9", "gpf-10", "gpf-11", "gpf-12"; @@ -408,242 +408,242 @@ samsung,pin-pud = ; }; - cam_rst: cam-rst { + cam_rst: cam-rst-pins { samsung,pins = "gpf-3"; samsung,pin-function = ; samsung,pin-pud = ; }; - cam_field: cam-field { + cam_field: cam-field-pins { /* S3C6410-only */ samsung,pins = "gpb-4"; samsung,pin-function = ; samsung,pin-pud = ; }; - pwm_extclk: pwm-extclk { + pwm_extclk: pwm-extclk-pins { samsung,pins = "gpf-13"; samsung,pin-function = ; samsung,pin-pud = ; }; - pwm0_out: pwm0-out { + pwm0_out: pwm0-out-pins { samsung,pins = "gpf-14"; samsung,pin-function = ; samsung,pin-pud = ; }; - pwm1_out: pwm1-out { + pwm1_out: pwm1-out-pins { samsung,pins = "gpf-15"; samsung,pin-function = ; samsung,pin-pud = ; }; - clkout0: clkout-0 { + clkout0: clkout-0-pins { samsung,pins = "gpf-14"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_col0_0: keypad-col0-0 { + keypad_col0_0: keypad-col0-0-pins { samsung,pins = "gph-0"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_col1_0: keypad-col1-0 { + keypad_col1_0: keypad-col1-0-pins { samsung,pins = "gph-1"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_col2_0: keypad-col2-0 { + keypad_col2_0: keypad-col2-0-pins { samsung,pins = "gph-2"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_col3_0: keypad-col3-0 { + keypad_col3_0: keypad-col3-0-pins { samsung,pins = "gph-3"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_col4_0: keypad-col4-0 { + keypad_col4_0: keypad-col4-0-pins { samsung,pins = "gph-4"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_col5_0: keypad-col5-0 { + keypad_col5_0: keypad-col5-0-pins { samsung,pins = "gph-5"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_col6_0: keypad-col6-0 { + keypad_col6_0: keypad-col6-0-pins { samsung,pins = "gph-6"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_col7_0: keypad-col7-0 { + keypad_col7_0: keypad-col7-0-pins { samsung,pins = "gph-7"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_col0_1: keypad-col0-1 { + keypad_col0_1: keypad-col0-1-pins { samsung,pins = "gpl-0"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_col1_1: keypad-col1-1 { + keypad_col1_1: keypad-col1-1-pins { samsung,pins = "gpl-1"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_col2_1: keypad-col2-1 { + keypad_col2_1: keypad-col2-1-pins { samsung,pins = "gpl-2"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_col3_1: keypad-col3-1 { + keypad_col3_1: keypad-col3-1-pins { samsung,pins = "gpl-3"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_col4_1: keypad-col4-1 { + keypad_col4_1: keypad-col4-1-pins { samsung,pins = "gpl-4"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_col5_1: keypad-col5-1 { + keypad_col5_1: keypad-col5-1-pins { samsung,pins = "gpl-5"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_col6_1: keypad-col6-1 { + keypad_col6_1: keypad-col6-1-pins { samsung,pins = "gpl-6"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_col7_1: keypad-col7-1 { + keypad_col7_1: keypad-col7-1-pins { samsung,pins = "gpl-7"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_row0_0: keypad-row0-0 { + keypad_row0_0: keypad-row0-0-pins { samsung,pins = "gpk-8"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_row1_0: keypad-row1-0 { + keypad_row1_0: keypad-row1-0-pins { samsung,pins = "gpk-9"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_row2_0: keypad-row2-0 { + keypad_row2_0: keypad-row2-0-pins { samsung,pins = "gpk-10"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_row3_0: keypad-row3-0 { + keypad_row3_0: keypad-row3-0-pins { samsung,pins = "gpk-11"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_row4_0: keypad-row4-0 { + keypad_row4_0: keypad-row4-0-pins { samsung,pins = "gpk-12"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_row5_0: keypad-row5-0 { + keypad_row5_0: keypad-row5-0-pins { samsung,pins = "gpk-13"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_row6_0: keypad-row6-0 { + keypad_row6_0: keypad-row6-0-pins { samsung,pins = "gpk-14"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_row7_0: keypad-row7-0 { + keypad_row7_0: keypad-row7-0-pins { samsung,pins = "gpk-15"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_row0_1: keypad-row0-1 { + keypad_row0_1: keypad-row0-1-pins { samsung,pins = "gpn-0"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_row1_1: keypad-row1-1 { + keypad_row1_1: keypad-row1-1-pins { samsung,pins = "gpn-1"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_row2_1: keypad-row2-1 { + keypad_row2_1: keypad-row2-1-pins { samsung,pins = "gpn-2"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_row3_1: keypad-row3-1 { + keypad_row3_1: keypad-row3-1-pins { samsung,pins = "gpn-3"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_row4_1: keypad-row4-1 { + keypad_row4_1: keypad-row4-1-pins { samsung,pins = "gpn-4"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_row5_1: keypad-row5-1 { + keypad_row5_1: keypad-row5-1-pins { samsung,pins = "gpn-5"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_row6_1: keypad-row6-1 { + keypad_row6_1: keypad-row6-1-pins { samsung,pins = "gpn-6"; samsung,pin-function = ; samsung,pin-pud = ; }; - keypad_row7_1: keypad-row7-1 { + keypad_row7_1: keypad-row7-1-pins { samsung,pins = "gpn-7"; samsung,pin-function = ; samsung,pin-pud = ; }; - lcd_ctrl: lcd-ctrl { + lcd_ctrl: lcd-ctrl-pins { samsung,pins = "gpj-8", "gpj-9", "gpj-10", "gpj-11"; samsung,pin-function = ; samsung,pin-pud = ; }; - lcd_data16: lcd-data-width16 { + lcd_data16: lcd-data-width16-pins { samsung,pins = "gpi-3", "gpi-4", "gpi-5", "gpi-6", "gpi-7", "gpi-10", "gpi-11", "gpi-12", "gpi-13", "gpi-14", "gpi-15", "gpj-3", @@ -652,7 +652,7 @@ samsung,pin-pud = ; }; - lcd_data18: lcd-data-width18 { + lcd_data18: lcd-data-width18-pins { samsung,pins = "gpi-2", "gpi-3", "gpi-4", "gpi-5", "gpi-6", "gpi-7", "gpi-10", "gpi-11", "gpi-12", "gpi-13", "gpi-14", "gpi-15", @@ -662,7 +662,7 @@ samsung,pin-pud = ; }; - lcd_data24: lcd-data-width24 { + lcd_data24: lcd-data-width24-pins { samsung,pins = "gpi-0", "gpi-1", "gpi-2", "gpi-3", "gpi-4", "gpi-5", "gpi-6", "gpi-7", "gpi-8", "gpi-9", "gpi-10", "gpi-11", @@ -673,7 +673,7 @@ samsung,pin-pud = ; }; - hsi_bus: hsi-bus { + hsi_bus: hsi-bus-pins { samsung,pins = "gpk-0", "gpk-1", "gpk-2", "gpk-3", "gpk-4", "gpk-5", "gpk-6", "gpk-7"; samsung,pin-function = ; diff --git a/arch/arm/boot/dts/s5pv210-smdkv210.dts b/arch/arm/boot/dts/s5pv210-smdkv210.dts index fbae768d65e27..901e7197b1368 100644 --- a/arch/arm/boot/dts/s5pv210-smdkv210.dts +++ b/arch/arm/boot/dts/s5pv210-smdkv210.dts @@ -41,7 +41,7 @@ ethernet@a8000000 { compatible = "davicom,dm9000"; - reg = <0xA8000000 0x2 0xA8000002 0x2>; + reg = <0xa8000000 0x2>, <0xa8000002 0x2>; interrupt-parent = <&gph1>; interrupts = <1 IRQ_TYPE_LEVEL_HIGH>; local-mac-address = [00 00 de ad be ef]; @@ -55,6 +55,14 @@ default-brightness-level = <6>; pinctrl-names = "default"; pinctrl-0 = <&pwm3_out>; + power-supply = <&dc5v_reg>; + }; + + dc5v_reg: regulator-0 { + compatible = "regulator-fixed"; + regulator-name = "DC5V"; + regulator-min-microvolt = <5000000>; + regulator-max-microvolt = <5000000>; }; }; diff --git a/arch/arm/include/asm/arch_timer.h b/arch/arm/include/asm/arch_timer.h index 99175812d9033..bb129b6d23661 100644 --- a/arch/arm/include/asm/arch_timer.h +++ b/arch/arm/include/asm/arch_timer.h @@ -7,6 +7,7 @@ #include #include #include +#include #include #include @@ -24,29 +25,35 @@ int arch_timer_arch_init(void); * the code. At least it does so with a recent GCC (4.6.3). */ static __always_inline -void arch_timer_reg_write_cp15(int access, enum arch_timer_reg reg, u32 val) +void arch_timer_reg_write_cp15(int access, enum arch_timer_reg reg, u64 val) { if (access == ARCH_TIMER_PHYS_ACCESS) { switch (reg) { case ARCH_TIMER_REG_CTRL: - asm volatile("mcr p15, 0, %0, c14, c2, 1" : : "r" (val)); + asm volatile("mcr p15, 0, %0, c14, c2, 1" : : "r" ((u32)val)); + isb(); break; - case ARCH_TIMER_REG_TVAL: - asm volatile("mcr p15, 0, %0, c14, c2, 0" : : "r" (val)); + case ARCH_TIMER_REG_CVAL: + asm volatile("mcrr p15, 2, %Q0, %R0, c14" : : "r" (val)); break; + default: + BUILD_BUG(); } } else if (access == ARCH_TIMER_VIRT_ACCESS) { switch (reg) { case ARCH_TIMER_REG_CTRL: - asm volatile("mcr p15, 0, %0, c14, c3, 1" : : "r" (val)); + asm volatile("mcr p15, 0, %0, c14, c3, 1" : : "r" ((u32)val)); + isb(); break; - case ARCH_TIMER_REG_TVAL: - asm volatile("mcr p15, 0, %0, c14, c3, 0" : : "r" (val)); + case ARCH_TIMER_REG_CVAL: + asm volatile("mcrr p15, 3, %Q0, %R0, c14" : : "r" (val)); break; + default: + BUILD_BUG(); } + } else { + BUILD_BUG(); } - - isb(); } static __always_inline @@ -59,19 +66,19 @@ u32 arch_timer_reg_read_cp15(int access, enum arch_timer_reg reg) case ARCH_TIMER_REG_CTRL: asm volatile("mrc p15, 0, %0, c14, c2, 1" : "=r" (val)); break; - case ARCH_TIMER_REG_TVAL: - asm volatile("mrc p15, 0, %0, c14, c2, 0" : "=r" (val)); - break; + default: + BUILD_BUG(); } } else if (access == ARCH_TIMER_VIRT_ACCESS) { switch (reg) { case ARCH_TIMER_REG_CTRL: asm volatile("mrc p15, 0, %0, c14, c3, 1" : "=r" (val)); break; - case ARCH_TIMER_REG_TVAL: - asm volatile("mrc p15, 0, %0, c14, c3, 0" : "=r" (val)); - break; + default: + BUILD_BUG(); } + } else { + BUILD_BUG(); } return val; diff --git a/arch/arm/include/asm/exception.h b/arch/arm/include/asm/exception.h index 58e039a851af0..3c82975d46db3 100644 --- a/arch/arm/include/asm/exception.h +++ b/arch/arm/include/asm/exception.h @@ -10,10 +10,6 @@ #include -#ifdef CONFIG_FUNCTION_GRAPH_TRACER #define __exception_irq_entry __irq_entry -#else -#define __exception_irq_entry -#endif #endif /* __ASM_ARM_EXCEPTION_H */ diff --git a/arch/arm/include/asm/hardware/cache-aurora-l2.h b/arch/arm/include/asm/hardware/cache-aurora-l2.h index 39769ffa00512..9694808ee97ce 100644 --- a/arch/arm/include/asm/hardware/cache-aurora-l2.h +++ b/arch/arm/include/asm/hardware/cache-aurora-l2.h @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * AURORA shared L2 cache controller support * @@ -5,10 +6,6 @@ * * Yehuda Yitschak * Gregory CLEMENT - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #ifndef __ASM_ARM_HARDWARE_AURORA_L2_H diff --git a/arch/arm/include/asm/hardware/cache-feroceon-l2.h b/arch/arm/include/asm/hardware/cache-feroceon-l2.h index 12e1588dc4f13..eb2e7b7f70a87 100644 --- a/arch/arm/include/asm/hardware/cache-feroceon-l2.h +++ b/arch/arm/include/asm/hardware/cache-feroceon-l2.h @@ -1,13 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * arch/arm/include/asm/hardware/cache-feroceon-l2.h * * Copyright (C) 2008 Marvell Semiconductor - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ extern void __init feroceon_l2_init(int l2_wt_override); extern int __init feroceon_of_init(void); - diff --git a/arch/arm/include/asm/hardware/cache-tauros2.h b/arch/arm/include/asm/hardware/cache-tauros2.h index 295e2e40151b1..4e493facaa317 100644 --- a/arch/arm/include/asm/hardware/cache-tauros2.h +++ b/arch/arm/include/asm/hardware/cache-tauros2.h @@ -1,11 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * arch/arm/include/asm/hardware/cache-tauros2.h * * Copyright (C) 2008 Marvell Semiconductor - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #define CACHE_TAUROS2_PREFETCH_ON (1 << 0) diff --git a/arch/arm/include/asm/syscall.h b/arch/arm/include/asm/syscall.h index 24c19d63ff0a1..95bf70ebd878e 100644 --- a/arch/arm/include/asm/syscall.h +++ b/arch/arm/include/asm/syscall.h @@ -25,6 +25,9 @@ static inline int syscall_get_nr(struct task_struct *task, if (IS_ENABLED(CONFIG_AEABI) && !IS_ENABLED(CONFIG_OABI_COMPAT)) return task_thread_info(task)->abi_syscall; + if (task_thread_info(task)->abi_syscall == -1) + return -1; + return task_thread_info(task)->abi_syscall & __NR_SYSCALL_MASK; } diff --git a/arch/arm/kernel/entry-common.S b/arch/arm/kernel/entry-common.S index fde7ac271b147..e7bfdd10bbcd3 100644 --- a/arch/arm/kernel/entry-common.S +++ b/arch/arm/kernel/entry-common.S @@ -101,6 +101,7 @@ slow_work_pending: cmp r0, #0 beq no_work_pending movlt scno, #(__NR_restart_syscall - __NR_SYSCALL_BASE) + str scno, [tsk, #TI_ABI_SYSCALL] @ make sure tracers see update ldmia sp, {r0 - r6} @ have to reload r0 - r6 b local_restart @ ... and off we go ENDPROC(ret_fast_syscall) diff --git a/arch/arm/kernel/hw_breakpoint.c b/arch/arm/kernel/hw_breakpoint.c index b1423fb130ea4..8f1fa7aac31fb 100644 --- a/arch/arm/kernel/hw_breakpoint.c +++ b/arch/arm/kernel/hw_breakpoint.c @@ -626,7 +626,7 @@ int hw_breakpoint_arch_parse(struct perf_event *bp, hw->address &= ~alignment_mask; hw->ctrl.len <<= offset; - if (is_default_overflow_handler(bp)) { + if (uses_default_overflow_handler(bp)) { /* * Mismatch breakpoints are required for single-stepping * breakpoints. @@ -798,7 +798,7 @@ static void watchpoint_handler(unsigned long addr, unsigned int fsr, * Otherwise, insert a temporary mismatch breakpoint so that * we can single-step over the watchpoint trigger. */ - if (!is_default_overflow_handler(wp)) + if (!uses_default_overflow_handler(wp)) continue; step: enable_single_step(wp, instruction_pointer(regs)); @@ -811,7 +811,7 @@ static void watchpoint_handler(unsigned long addr, unsigned int fsr, info->trigger = addr; pr_debug("watchpoint fired: address = 0x%x\n", info->trigger); perf_bp_event(wp, regs); - if (is_default_overflow_handler(wp)) + if (uses_default_overflow_handler(wp)) enable_single_step(wp, instruction_pointer(regs)); } @@ -886,7 +886,7 @@ static void breakpoint_handler(unsigned long unknown, struct pt_regs *regs) info->trigger = addr; pr_debug("breakpoint fired: address = 0x%x\n", addr); perf_bp_event(bp, regs); - if (is_default_overflow_handler(bp)) + if (uses_default_overflow_handler(bp)) enable_single_step(bp, addr); goto unlock; } diff --git a/arch/arm/kernel/machine_kexec.c b/arch/arm/kernel/machine_kexec.c index f567032a09c0b..6d1938d1b4df7 100644 --- a/arch/arm/kernel/machine_kexec.c +++ b/arch/arm/kernel/machine_kexec.c @@ -92,16 +92,28 @@ void machine_crash_nonpanic_core(void *unused) } } +static DEFINE_PER_CPU(call_single_data_t, cpu_stop_csd) = + CSD_INIT(machine_crash_nonpanic_core, NULL); + void crash_smp_send_stop(void) { static int cpus_stopped; unsigned long msecs; + call_single_data_t *csd; + int cpu, this_cpu = raw_smp_processor_id(); if (cpus_stopped) return; atomic_set(&waiting_for_crash_ipi, num_online_cpus() - 1); - smp_call_function(machine_crash_nonpanic_core, NULL, false); + for_each_online_cpu(cpu) { + if (cpu == this_cpu) + continue; + + csd = &per_cpu(cpu_stop_csd, cpu); + smp_call_function_single_async(cpu, csd); + } + msecs = 1000; /* Wait at most a second for the other cpus to stop */ while ((atomic_read(&waiting_for_crash_ipi) > 0) && msecs) { mdelay(1); diff --git a/arch/arm/kernel/ptrace.c b/arch/arm/kernel/ptrace.c index 43b963ea4a0e2..71c98ca3a455a 100644 --- a/arch/arm/kernel/ptrace.c +++ b/arch/arm/kernel/ptrace.c @@ -786,8 +786,9 @@ long arch_ptrace(struct task_struct *child, long request, break; case PTRACE_SET_SYSCALL: - task_thread_info(child)->abi_syscall = data & - __NR_SYSCALL_MASK; + if (data != -1) + data &= __NR_SYSCALL_MASK; + task_thread_info(child)->abi_syscall = data; ret = 0; break; diff --git a/arch/arm/lib/memset.S b/arch/arm/lib/memset.S index 9817cb258c1a5..0481b9bbbd004 100644 --- a/arch/arm/lib/memset.S +++ b/arch/arm/lib/memset.S @@ -17,6 +17,7 @@ ENTRY(__memset) ENTRY(mmioset) WEAK(memset) UNWIND( .fnstart ) + and r1, r1, #255 @ cast to unsigned char ands r3, r0, #3 @ 1 unaligned? mov ip, r0 @ preserve r0 as return value bne 6f @ 1 diff --git a/arch/arm/mach-davinci/board-da830-evm.c b/arch/arm/mach-davinci/board-da830-evm.c index 823c9cc98f18b..d820161445fa9 100644 --- a/arch/arm/mach-davinci/board-da830-evm.c +++ b/arch/arm/mach-davinci/board-da830-evm.c @@ -1,13 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * TI DA830/OMAP L137 EVM board * * Author: Mark A. Greer * Derived from: arch/arm/mach-davinci/board-dm644x-evm.c * - * 2007, 2009 (c) MontaVista Software, Inc. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2007, 2009 (c) MontaVista Software, Inc. */ #include #include diff --git a/arch/arm/mach-davinci/board-da850-evm.c b/arch/arm/mach-davinci/board-da850-evm.c index 7f7f6bae21c2d..1601a74261a67 100644 --- a/arch/arm/mach-davinci/board-da850-evm.c +++ b/arch/arm/mach-davinci/board-da850-evm.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * TI DA850/OMAP-L138 EVM board * @@ -6,10 +7,7 @@ * Derived from: arch/arm/mach-davinci/board-da830-evm.c * Original Copyrights follow: * - * 2007, 2009 (c) MontaVista Software, Inc. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2007, 2009 (c) MontaVista Software, Inc. */ #include #include diff --git a/arch/arm/mach-davinci/board-dm355-evm.c b/arch/arm/mach-davinci/board-dm355-evm.c index 3c5a9e3c128ab..debc912b133fa 100644 --- a/arch/arm/mach-davinci/board-dm355-evm.c +++ b/arch/arm/mach-davinci/board-dm355-evm.c @@ -1,12 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * TI DaVinci EVM board support * * Author: Kevin Hilman, Deep Root Systems, LLC * - * 2007 (c) MontaVista Software, Inc. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2007 (c) MontaVista Software, Inc. */ #include #include diff --git a/arch/arm/mach-davinci/board-dm355-leopard.c b/arch/arm/mach-davinci/board-dm355-leopard.c index e475b2113e70f..7c8307d590a40 100644 --- a/arch/arm/mach-davinci/board-dm355-leopard.c +++ b/arch/arm/mach-davinci/board-dm355-leopard.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * DM355 leopard board support * * Based on board-dm355-evm.c - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include #include diff --git a/arch/arm/mach-davinci/board-dm644x-evm.c b/arch/arm/mach-davinci/board-dm644x-evm.c index cce3a621eb20b..92a92c4cef722 100644 --- a/arch/arm/mach-davinci/board-dm644x-evm.c +++ b/arch/arm/mach-davinci/board-dm644x-evm.c @@ -1,12 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * TI DaVinci EVM board support * * Author: Kevin Hilman, MontaVista Software, Inc. * - * 2007 (c) MontaVista Software, Inc. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2007 (c) MontaVista Software, Inc. */ #include #include diff --git a/arch/arm/mach-davinci/board-dm646x-evm.c b/arch/arm/mach-davinci/board-dm646x-evm.c index ee91d81ebbfdf..c62815535b863 100644 --- a/arch/arm/mach-davinci/board-dm646x-evm.c +++ b/arch/arm/mach-davinci/board-dm646x-evm.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * TI DaVinci DM646X EVM board * @@ -5,11 +6,6 @@ * Copyright (C) 2006 Texas Instruments. * * (C) 2007-2008, MontaVista Software, Inc. - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. - * */ /************************************************************************** @@ -873,4 +869,3 @@ MACHINE_START(DAVINCI_DM6467TEVM, "DaVinci DM6467T EVM") .init_late = davinci_init_late, .dma_zone_size = SZ_128M, MACHINE_END - diff --git a/arch/arm/mach-davinci/board-mityomapl138.c b/arch/arm/mach-davinci/board-mityomapl138.c index 2127969beb965..a36365edfe20f 100644 --- a/arch/arm/mach-davinci/board-mityomapl138.c +++ b/arch/arm/mach-davinci/board-mityomapl138.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Critical Link MityOMAP-L138 SoM * * Copyright (C) 2010 Critical Link LLC - https://www.criticallink.com - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of - * any kind, whether express or implied. */ #define pr_fmt(fmt) "MityOMAPL138: " fmt diff --git a/arch/arm/mach-davinci/board-neuros-osd2.c b/arch/arm/mach-davinci/board-neuros-osd2.c index b4843f68bb575..ae0bce8655b44 100644 --- a/arch/arm/mach-davinci/board-neuros-osd2.c +++ b/arch/arm/mach-davinci/board-neuros-osd2.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Neuros Technologies OSD2 board support * @@ -18,10 +19,6 @@ * * For more information please refer to * http://wiki.neurostechnology.com/index.php/OSD_2.0_HD - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include #include diff --git a/arch/arm/mach-davinci/board-omapl138-hawk.c b/arch/arm/mach-davinci/board-omapl138-hawk.c index 88df8011a4e6b..f3e85d16f56a8 100644 --- a/arch/arm/mach-davinci/board-omapl138-hawk.c +++ b/arch/arm/mach-davinci/board-omapl138-hawk.c @@ -1,13 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Hawkboard.org based on TI's OMAP-L138 Platform * * Initial code: Syed Mohammed Khasim * * Copyright (C) 2009 Texas Instruments Incorporated - https://www.ti.com - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of - * any kind, whether express or implied. */ #include #include diff --git a/arch/arm/mach-davinci/common.c b/arch/arm/mach-davinci/common.c index ae61d19f9b3af..5c2760723fcfb 100644 --- a/arch/arm/mach-davinci/common.c +++ b/arch/arm/mach-davinci/common.c @@ -1,12 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Code commons to all DaVinci SoCs. * * Author: Mark A. Greer * - * 2009 (c) MontaVista Software, Inc. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2009 (c) MontaVista Software, Inc. */ #include #include diff --git a/arch/arm/mach-davinci/cpuidle.h b/arch/arm/mach-davinci/cpuidle.h index 0d9193aefab51..976d43073597e 100644 --- a/arch/arm/mach-davinci/cpuidle.h +++ b/arch/arm/mach-davinci/cpuidle.h @@ -1,11 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * TI DaVinci cpuidle platform support * * 2009 (C) Texas Instruments, Inc. https://www.ti.com/ - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. */ #ifndef _MACH_DAVINCI_CPUIDLE_H #define _MACH_DAVINCI_CPUIDLE_H diff --git a/arch/arm/mach-davinci/da830.c b/arch/arm/mach-davinci/da830.c index 018ab4b549f1d..cd07415dc5350 100644 --- a/arch/arm/mach-davinci/da830.c +++ b/arch/arm/mach-davinci/da830.c @@ -1,12 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * TI DA830/OMAP L137 chip specific setup * * Author: Mark A. Greer * - * 2009 (c) MontaVista Software, Inc. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2009 (c) MontaVista Software, Inc. */ #include #include diff --git a/arch/arm/mach-davinci/da850.c b/arch/arm/mach-davinci/da850.c index 68156e7239a68..aedf020b62ed1 100644 --- a/arch/arm/mach-davinci/da850.c +++ b/arch/arm/mach-davinci/da850.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * TI DA850/OMAP-L138 chip specific setup * @@ -6,10 +7,7 @@ * Derived from: arch/arm/mach-davinci/da830.c * Original Copyrights follow: * - * 2009 (c) MontaVista Software, Inc. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2009 (c) MontaVista Software, Inc. */ #include diff --git a/arch/arm/mach-davinci/dm355.c b/arch/arm/mach-davinci/dm355.c index 5de72d2fa8f09..a49151bf37c46 100644 --- a/arch/arm/mach-davinci/dm355.c +++ b/arch/arm/mach-davinci/dm355.c @@ -1,12 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * TI DaVinci DM355 chip specific setup * * Author: Kevin Hilman, Deep Root Systems, LLC * - * 2007 (c) Deep Root Systems, LLC. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2007 (c) Deep Root Systems, LLC. */ #include diff --git a/arch/arm/mach-davinci/dm644x.c b/arch/arm/mach-davinci/dm644x.c index 24988939ae462..f9b82a6a16300 100644 --- a/arch/arm/mach-davinci/dm644x.c +++ b/arch/arm/mach-davinci/dm644x.c @@ -1,12 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * TI DaVinci DM644x chip specific setup * * Author: Kevin Hilman, Deep Root Systems, LLC * - * 2007 (c) Deep Root Systems, LLC. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2007 (c) Deep Root Systems, LLC. */ #include diff --git a/arch/arm/mach-davinci/dm646x.c b/arch/arm/mach-davinci/dm646x.c index 4ffd028ed9978..d85d8e9e13715 100644 --- a/arch/arm/mach-davinci/dm646x.c +++ b/arch/arm/mach-davinci/dm646x.c @@ -1,12 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * TI DaVinci DM646x chip specific setup * * Author: Kevin Hilman, Deep Root Systems, LLC * - * 2007 (c) Deep Root Systems, LLC. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2007 (c) Deep Root Systems, LLC. */ #include diff --git a/arch/arm/mach-davinci/include/mach/common.h b/arch/arm/mach-davinci/include/mach/common.h index 139b83de011d3..772b51e0ac5eb 100644 --- a/arch/arm/mach-davinci/include/mach/common.h +++ b/arch/arm/mach-davinci/include/mach/common.h @@ -1,12 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * Header for code common to all DaVinci machines. * * Author: Kevin Hilman, MontaVista Software, Inc. * - * 2007 (c) MontaVista Software, Inc. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2007 (c) MontaVista Software, Inc. */ #ifndef __ARCH_ARM_MACH_DAVINCI_COMMON_H diff --git a/arch/arm/mach-davinci/include/mach/cputype.h b/arch/arm/mach-davinci/include/mach/cputype.h index 1fc84e21664d2..81de85757a938 100644 --- a/arch/arm/mach-davinci/include/mach/cputype.h +++ b/arch/arm/mach-davinci/include/mach/cputype.h @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * DaVinci CPU type detection * @@ -8,10 +9,7 @@ * compiled in to the kernel, the macros return 0 so that * resulting code can be optimized out. * - * 2009 (c) Deep Root Systems, LLC. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2009 (c) Deep Root Systems, LLC. */ #ifndef _ASM_ARCH_CPU_H #define _ASM_ARCH_CPU_H diff --git a/arch/arm/mach-davinci/include/mach/da8xx.h b/arch/arm/mach-davinci/include/mach/da8xx.h index 1618b30661a9b..f138f6d33d4aa 100644 --- a/arch/arm/mach-davinci/include/mach/da8xx.h +++ b/arch/arm/mach-davinci/include/mach/da8xx.h @@ -1,12 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * Chip specific defines for DA8XX/OMAP L1XX SoC * * Author: Mark A. Greer * - * 2007, 2009-2010 (c) MontaVista Software, Inc. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2007, 2009-2010 (c) MontaVista Software, Inc. */ #ifndef __ASM_ARCH_DAVINCI_DA8XX_H #define __ASM_ARCH_DAVINCI_DA8XX_H diff --git a/arch/arm/mach-davinci/include/mach/hardware.h b/arch/arm/mach-davinci/include/mach/hardware.h index 16bb42291d39d..7848b6a240b48 100644 --- a/arch/arm/mach-davinci/include/mach/hardware.h +++ b/arch/arm/mach-davinci/include/mach/hardware.h @@ -1,12 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * Hardware definitions common to all DaVinci family processors * * Author: Kevin Hilman, Deep Root Systems, LLC * - * 2007 (c) Deep Root Systems, LLC. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2007 (c) Deep Root Systems, LLC. */ #ifndef __ASM_ARCH_HARDWARE_H #define __ASM_ARCH_HARDWARE_H diff --git a/arch/arm/mach-davinci/include/mach/serial.h b/arch/arm/mach-davinci/include/mach/serial.h index d4b4aa87964f0..85fda53ffd205 100644 --- a/arch/arm/mach-davinci/include/mach/serial.h +++ b/arch/arm/mach-davinci/include/mach/serial.h @@ -1,12 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * DaVinci serial device definitions * * Author: Kevin Hilman, MontaVista Software, Inc. * - * 2007 (c) MontaVista Software, Inc. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2007 (c) MontaVista Software, Inc. */ #ifndef __ASM_ARCH_SERIAL_H #define __ASM_ARCH_SERIAL_H diff --git a/arch/arm/mach-davinci/mux.c b/arch/arm/mach-davinci/mux.c index 6a2ff0a654a5b..0d8ac2f936617 100644 --- a/arch/arm/mach-davinci/mux.c +++ b/arch/arm/mach-davinci/mux.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Utility to set the DAVINCI MUX register from a table in mux.h * @@ -8,10 +9,7 @@ * * Written by Tony Lindgren * - * 2007 (c) MontaVista Software, Inc. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2007 (c) MontaVista Software, Inc. * * Copyright (C) 2008 Texas Instruments. */ diff --git a/arch/arm/mach-davinci/mux.h b/arch/arm/mach-davinci/mux.h index 5aad1e7dd2103..558b9c1b32c06 100644 --- a/arch/arm/mach-davinci/mux.h +++ b/arch/arm/mach-davinci/mux.h @@ -1,12 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * Pin-multiplex helper macros for TI DaVinci family devices * * Author: Vladimir Barinov, MontaVista Software, Inc. * - * 2007 (c) MontaVista Software, Inc. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2007 (c) MontaVista Software, Inc. * * Copyright (C) 2008 Texas Instruments. */ diff --git a/arch/arm/mach-davinci/pm_domain.c b/arch/arm/mach-davinci/pm_domain.c index e251fd593bfd1..6b21d5bd999c6 100644 --- a/arch/arm/mach-davinci/pm_domain.c +++ b/arch/arm/mach-davinci/pm_domain.c @@ -1,13 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Runtime PM support code for DaVinci * * Author: Kevin Hilman * * Copyright (C) 2012 Texas Instruments, Inc. - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include #include diff --git a/arch/arm/mach-dove/bridge-regs.h b/arch/arm/mach-dove/bridge-regs.h index ace0b0bfbf114..6fbc152d0950d 100644 --- a/arch/arm/mach-dove/bridge-regs.h +++ b/arch/arm/mach-dove/bridge-regs.h @@ -1,10 +1,5 @@ -/* - * Mbus-L to Mbus Bridge Registers - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - */ +/* SPDX-License-Identifier: GPL-2.0-only */ +/* Mbus-L to Mbus Bridge Registers */ #ifndef __ASM_ARCH_BRIDGE_REGS_H #define __ASM_ARCH_BRIDGE_REGS_H diff --git a/arch/arm/mach-dove/cm-a510.c b/arch/arm/mach-dove/cm-a510.c index 9f25c993d8637..beb532537c225 100644 --- a/arch/arm/mach-dove/cm-a510.c +++ b/arch/arm/mach-dove/cm-a510.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-dove/cm-a510.c * @@ -5,10 +6,6 @@ * Konstantin Sinyuk * * Based on Marvell DB-MV88AP510-BP Development Board Setup - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-dove/common.c b/arch/arm/mach-dove/common.c index dbe970e378953..cd4ae7e4768dd 100644 --- a/arch/arm/mach-dove/common.c +++ b/arch/arm/mach-dove/common.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-dove/common.c * * Core functions for Marvell Dove 88AP510 System On Chip - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-dove/common.h b/arch/arm/mach-dove/common.h index 1d725224d1461..57ebc413d68c2 100644 --- a/arch/arm/mach-dove/common.h +++ b/arch/arm/mach-dove/common.h @@ -1,11 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * arch/arm/mach-dove/common.h * * Core functions for Marvell Dove 88AP510 System On Chip - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #ifndef __ARCH_DOVE_COMMON_H diff --git a/arch/arm/mach-dove/dove-db-setup.c b/arch/arm/mach-dove/dove-db-setup.c index 418ab21b9d9b2..d5bf540405772 100644 --- a/arch/arm/mach-dove/dove-db-setup.c +++ b/arch/arm/mach-dove/dove-db-setup.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-dove/dove-db-setup.c * * Marvell DB-MV88AP510-BP Development Board Setup - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-dove/dove.h b/arch/arm/mach-dove/dove.h index 320ed1696abdc..e5054e3b0b782 100644 --- a/arch/arm/mach-dove/dove.h +++ b/arch/arm/mach-dove/dove.h @@ -1,10 +1,5 @@ -/* - * Generic definitions for Marvell Dove 88AP510 SoC - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - */ +/* SPDX-License-Identifier: GPL-2.0-only */ +/* Generic definitions for Marvell Dove 88AP510 SoC */ #ifndef __ASM_ARCH_DOVE_H #define __ASM_ARCH_DOVE_H diff --git a/arch/arm/mach-dove/irq.c b/arch/arm/mach-dove/irq.c index 31ccbcee26274..0c851a11183d2 100644 --- a/arch/arm/mach-dove/irq.c +++ b/arch/arm/mach-dove/irq.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-dove/irq.c * * Dove IRQ handling. - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include #include diff --git a/arch/arm/mach-dove/irqs.h b/arch/arm/mach-dove/irqs.h index a0742179faffe..5467098c70428 100644 --- a/arch/arm/mach-dove/irqs.h +++ b/arch/arm/mach-dove/irqs.h @@ -1,10 +1,5 @@ -/* - * IRQ definitions for Marvell Dove 88AP510 SoC - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - */ +/* SPDX-License-Identifier: GPL-2.0-only */ +/* IRQ definitions for Marvell Dove 88AP510 SoC */ #ifndef __ASM_ARCH_IRQS_H #define __ASM_ARCH_IRQS_H diff --git a/arch/arm/mach-dove/mpp.c b/arch/arm/mach-dove/mpp.c index 6acd8488bb05f..93cb137da5f86 100644 --- a/arch/arm/mach-dove/mpp.c +++ b/arch/arm/mach-dove/mpp.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-dove/mpp.c * * MPP functions for Marvell Dove SoCs - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-dove/pcie.c b/arch/arm/mach-dove/pcie.c index ee91ac6b5ebf1..cff5c77aa7a6c 100644 --- a/arch/arm/mach-dove/pcie.c +++ b/arch/arm/mach-dove/pcie.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-dove/pcie.c * * PCIe functions for Marvell Dove 88AP510 SoC - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-dove/pm.h b/arch/arm/mach-dove/pm.h index 01267746d7072..a4c3aba1e2d0d 100644 --- a/arch/arm/mach-dove/pm.h +++ b/arch/arm/mach-dove/pm.h @@ -1,8 +1,4 @@ -/* - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - */ +/* SPDX-License-Identifier: GPL-2.0-only */ #ifndef __ASM_ARCH_PM_H #define __ASM_ARCH_PM_H diff --git a/arch/arm/mach-imx/mmdc.c b/arch/arm/mach-imx/mmdc.c index b9efe9da06e0b..3d76e8c28c51d 100644 --- a/arch/arm/mach-imx/mmdc.c +++ b/arch/arm/mach-imx/mmdc.c @@ -502,6 +502,10 @@ static int imx_mmdc_perf_init(struct platform_device *pdev, void __iomem *mmdc_b name = devm_kasprintf(&pdev->dev, GFP_KERNEL, "mmdc%d", ret); + if (!name) { + ret = -ENOMEM; + goto pmu_release_id; + } pmu_mmdc->mmdc_ipg_clk = mmdc_ipg_clk; pmu_mmdc->devtype_data = (struct fsl_mmdc_devtype_data *)of_id->data; @@ -524,9 +528,10 @@ static int imx_mmdc_perf_init(struct platform_device *pdev, void __iomem *mmdc_b pmu_register_err: pr_warn("MMDC Perf PMU failed (%d), disabled\n", ret); - ida_simple_remove(&mmdc_ida, pmu_mmdc->id); cpuhp_state_remove_instance_nocalls(cpuhp_mmdc_state, &pmu_mmdc->node); hrtimer_cancel(&pmu_mmdc->hrtimer); +pmu_release_id: + ida_simple_remove(&mmdc_ida, pmu_mmdc->id); pmu_free: kfree(pmu_mmdc); return ret; diff --git a/arch/arm/mach-lpc18xx/board-dt.c b/arch/arm/mach-lpc18xx/board-dt.c index fdcee78d1bc4c..4729eb83401ae 100644 --- a/arch/arm/mach-lpc18xx/board-dt.c +++ b/arch/arm/mach-lpc18xx/board-dt.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Device Tree board file for NXP LPC18xx/43xx * * Copyright (C) 2015 Joachim Eastwood - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-lpc32xx/pm.c b/arch/arm/mach-lpc32xx/pm.c index b27fa1b9f56c1..2572bd89a5e8d 100644 --- a/arch/arm/mach-lpc32xx/pm.c +++ b/arch/arm/mach-lpc32xx/pm.c @@ -1,13 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-lpc32xx/pm.c * * Original authors: Vitaly Wool, Dmitry Chigirev * Modified by Kevin Wells * - * 2005 (c) MontaVista Software, Inc. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2005 (c) MontaVista Software, Inc. */ /* diff --git a/arch/arm/mach-lpc32xx/suspend.S b/arch/arm/mach-lpc32xx/suspend.S index 3f0a8282ef6fd..a95c5e0e40384 100644 --- a/arch/arm/mach-lpc32xx/suspend.S +++ b/arch/arm/mach-lpc32xx/suspend.S @@ -1,13 +1,11 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * arch/arm/mach-lpc32xx/suspend.S * * Original authors: Dmitry Chigirev, Vitaly Wool * Modified by Kevin Wells * - * 2005 (c) MontaVista Software, Inc. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2005 (c) MontaVista Software, Inc. */ #include #include diff --git a/arch/arm/mach-mv78xx0/bridge-regs.h b/arch/arm/mach-mv78xx0/bridge-regs.h index 2f54e1753d45e..d57ac967c4b39 100644 --- a/arch/arm/mach-mv78xx0/bridge-regs.h +++ b/arch/arm/mach-mv78xx0/bridge-regs.h @@ -1,8 +1,4 @@ -/* - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - */ +/* SPDX-License-Identifier: GPL-2.0-only */ #ifndef __ASM_ARCH_BRIDGE_REGS_H #define __ASM_ARCH_BRIDGE_REGS_H diff --git a/arch/arm/mach-mv78xx0/buffalo-wxl-setup.c b/arch/arm/mach-mv78xx0/buffalo-wxl-setup.c index e112f2e7cc9a9..9aa765d4cdc8a 100644 --- a/arch/arm/mach-mv78xx0/buffalo-wxl-setup.c +++ b/arch/arm/mach-mv78xx0/buffalo-wxl-setup.c @@ -1,13 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-mv78xx0/buffalo-wxl-setup.c * * Buffalo WXL (Terastation Duo) Setup routines * * sebastien requiem - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-mv78xx0/common.c b/arch/arm/mach-mv78xx0/common.c index dd762d1b083fd..461a68945c26e 100644 --- a/arch/arm/mach-mv78xx0/common.c +++ b/arch/arm/mach-mv78xx0/common.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-mv78xx0/common.c * * Core functions for Marvell MV78xx0 SoCs - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-mv78xx0/common.h b/arch/arm/mach-mv78xx0/common.h index 6889af26077da..d8c6c2400e278 100644 --- a/arch/arm/mach-mv78xx0/common.h +++ b/arch/arm/mach-mv78xx0/common.h @@ -1,11 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * arch/arm/mach-mv78xx0/common.h * * Core functions for Marvell MV78xx0 SoCs - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #ifndef __ARCH_MV78XX0_COMMON_H diff --git a/arch/arm/mach-mv78xx0/db78x00-bp-setup.c b/arch/arm/mach-mv78xx0/db78x00-bp-setup.c index cf16e08d4cf5b..da633a33a0c12 100644 --- a/arch/arm/mach-mv78xx0/db78x00-bp-setup.c +++ b/arch/arm/mach-mv78xx0/db78x00-bp-setup.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-mv78xx0/db78x00-bp-setup.c * * Marvell DB-78x00-BP Development Board Setup - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-mv78xx0/irq.c b/arch/arm/mach-mv78xx0/irq.c index 788569e960e15..da7a219e2ef55 100644 --- a/arch/arm/mach-mv78xx0/irq.c +++ b/arch/arm/mach-mv78xx0/irq.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-mv78xx0/irq.c * * MV78xx0 IRQ handling. - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include #include diff --git a/arch/arm/mach-mv78xx0/irqs.h b/arch/arm/mach-mv78xx0/irqs.h index 67e0fe730a13f..12b357d383d88 100644 --- a/arch/arm/mach-mv78xx0/irqs.h +++ b/arch/arm/mach-mv78xx0/irqs.h @@ -1,10 +1,5 @@ -/* - * IRQ definitions for Marvell MV78xx0 SoCs - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - */ +/* SPDX-License-Identifier: GPL-2.0-only */ +/* IRQ definitions for Marvell MV78xx0 SoCs */ #ifndef __ASM_ARCH_IRQS_H #define __ASM_ARCH_IRQS_H diff --git a/arch/arm/mach-mv78xx0/mpp.c b/arch/arm/mach-mv78xx0/mpp.c index 72843c02e95ac..aff0e612cbba5 100644 --- a/arch/arm/mach-mv78xx0/mpp.c +++ b/arch/arm/mach-mv78xx0/mpp.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-mv78x00/mpp.c * * MPP functions for Marvell MV78x00 SoCs - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include #include diff --git a/arch/arm/mach-mv78xx0/mpp.h b/arch/arm/mach-mv78xx0/mpp.h index 3752302ae2ee3..47db52f45546e 100644 --- a/arch/arm/mach-mv78xx0/mpp.h +++ b/arch/arm/mach-mv78xx0/mpp.h @@ -1,12 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/mach-mv78xx0/mpp.h -- Multi Purpose Pins * - * * sebastien requiem - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #ifndef __MV78X00_MPP_H diff --git a/arch/arm/mach-mv78xx0/mv78xx0.h b/arch/arm/mach-mv78xx0/mv78xx0.h index c1a9a1d1b2957..3f19bef7d7ace 100644 --- a/arch/arm/mach-mv78xx0/mv78xx0.h +++ b/arch/arm/mach-mv78xx0/mv78xx0.h @@ -1,10 +1,7 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * Generic definitions for Marvell MV78xx0 SoC flavors: * MV781x0 and MV782x0. - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #ifndef __ASM_ARCH_MV78XX0_H diff --git a/arch/arm/mach-mv78xx0/pcie.c b/arch/arm/mach-mv78xx0/pcie.c index 636d84b404664..c07f1641179bd 100644 --- a/arch/arm/mach-mv78xx0/pcie.c +++ b/arch/arm/mach-mv78xx0/pcie.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-mv78xx0/pcie.c * * PCIe functions for Marvell MV78xx0 SoCs - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-mv78xx0/rd78x00-masa-setup.c b/arch/arm/mach-mv78xx0/rd78x00-masa-setup.c index 308ab71ec8221..80ca8b1a81de2 100644 --- a/arch/arm/mach-mv78xx0/rd78x00-masa-setup.c +++ b/arch/arm/mach-mv78xx0/rd78x00-masa-setup.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-mv78x00/rd78x00-masa-setup.c * * Marvell RD-78x00-mASA Development Board Setup - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-mvebu/armada-370-xp.h b/arch/arm/mach-mvebu/armada-370-xp.h index 09413b6784099..c96ecdafe31f1 100644 --- a/arch/arm/mach-mvebu/armada-370-xp.h +++ b/arch/arm/mach-mvebu/armada-370-xp.h @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * Generic definitions for Marvell Armada_370_XP SoCs * @@ -6,10 +7,6 @@ * Lior Amsalem * Gregory CLEMENT * Thomas Petazzoni - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #ifndef __MACH_ARMADA_370_XP_H diff --git a/arch/arm/mach-mvebu/board-v7.c b/arch/arm/mach-mvebu/board-v7.c index d2df5ef9382b4..fd5d0c8ff6958 100644 --- a/arch/arm/mach-mvebu/board-v7.c +++ b/arch/arm/mach-mvebu/board-v7.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Device Tree support for Armada 370 and XP platforms. * @@ -6,10 +7,6 @@ * Lior Amsalem * Gregory CLEMENT * Thomas Petazzoni - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-mvebu/coherency.c b/arch/arm/mach-mvebu/coherency.c index 49e3c8d20c2fa..883dab1b54f3d 100644 --- a/arch/arm/mach-mvebu/coherency.c +++ b/arch/arm/mach-mvebu/coherency.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Coherency fabric (Aurora) support for Armada 370, 375, 38x and XP * platforms. @@ -8,10 +9,6 @@ * Gregory Clement * Thomas Petazzoni * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - * * The Armada 370, 375, 38x and XP SOCs have a coherency fabric which is * responsible for ensuring hardware coherency between all CPUs and between * CPUs and I/O masters. This file initializes the coherency fabric and diff --git a/arch/arm/mach-mvebu/coherency.h b/arch/arm/mach-mvebu/coherency.h index 6067f14263f79..cae866ab48673 100644 --- a/arch/arm/mach-mvebu/coherency.h +++ b/arch/arm/mach-mvebu/coherency.h @@ -1,14 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * arch/arm/mach-mvebu/include/mach/coherency.h * - * * Coherency fabric (Aurora) support for Armada 370 and XP platforms. * * Copyright (C) 2012 Marvell - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #ifndef __MACH_370_XP_COHERENCY_H diff --git a/arch/arm/mach-mvebu/coherency_ll.S b/arch/arm/mach-mvebu/coherency_ll.S index a3a64bf972507..eb81656e32d47 100644 --- a/arch/arm/mach-mvebu/coherency_ll.S +++ b/arch/arm/mach-mvebu/coherency_ll.S @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * Coherency fabric: low level functions * @@ -5,10 +6,6 @@ * * Gregory CLEMENT * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - * * This file implements the assembly function to add a CPU to the * coherency fabric. This function is called by each of the secondary * CPUs during their early boot in an SMP kernel, this why this diff --git a/arch/arm/mach-mvebu/common.h b/arch/arm/mach-mvebu/common.h index 6b775492cfadc..fbfa3c4f30df7 100644 --- a/arch/arm/mach-mvebu/common.h +++ b/arch/arm/mach-mvebu/common.h @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * Core functions for Marvell System On Chip * @@ -6,10 +7,6 @@ * Lior Amsalem * Gregory CLEMENT * Thomas Petazzoni - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #ifndef __ARCH_MVEBU_COMMON_H diff --git a/arch/arm/mach-mvebu/cpu-reset.c b/arch/arm/mach-mvebu/cpu-reset.c index f33a31c6aff8b..66b6c0c6ce1de 100644 --- a/arch/arm/mach-mvebu/cpu-reset.c +++ b/arch/arm/mach-mvebu/cpu-reset.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2014 Marvell * * Thomas Petazzoni - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #define pr_fmt(fmt) "mvebu-cpureset: " fmt diff --git a/arch/arm/mach-mvebu/dove.c b/arch/arm/mach-mvebu/dove.c index d076c5771adc2..c938ba725d3e9 100644 --- a/arch/arm/mach-mvebu/dove.c +++ b/arch/arm/mach-mvebu/dove.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-mvebu/dove.c * * Marvell Dove 88AP510 System On Chip FDT Board - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-mvebu/headsmp-a9.S b/arch/arm/mach-mvebu/headsmp-a9.S index b093a196e8017..df723cf85caec 100644 --- a/arch/arm/mach-mvebu/headsmp-a9.S +++ b/arch/arm/mach-mvebu/headsmp-a9.S @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * SMP support: Entry point for secondary CPUs of Marvell EBU * Cortex-A9 based SOCs (Armada 375 and Armada 38x). @@ -6,10 +7,6 @@ * * Gregory CLEMENT * Thomas Petazzoni - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-mvebu/headsmp.S b/arch/arm/mach-mvebu/headsmp.S index 2c4032e368bad..f05c59dad32ac 100644 --- a/arch/arm/mach-mvebu/headsmp.S +++ b/arch/arm/mach-mvebu/headsmp.S @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * SMP support: Entry point for secondary CPUs * @@ -7,10 +8,6 @@ * Gregory CLEMENT * Thomas Petazzoni * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - * * This file implements the assembly entry point for secondary CPUs in * an SMP kernel. The only thing we need to do is to add the CPU to * the coherency fabric by writing to 2 registers. Currently the base diff --git a/arch/arm/mach-mvebu/kirkwood.c b/arch/arm/mach-mvebu/kirkwood.c index 06b1706595f4c..8ff34753e7609 100644 --- a/arch/arm/mach-mvebu/kirkwood.c +++ b/arch/arm/mach-mvebu/kirkwood.c @@ -1,13 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Copyright 2012 (C), Jason Cooper * * arch/arm/mach-mvebu/kirkwood.c * * Flattened Device Tree board initialization - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-mvebu/kirkwood.h b/arch/arm/mach-mvebu/kirkwood.h index 89f3d1f516435..15135994ce2f2 100644 --- a/arch/arm/mach-mvebu/kirkwood.h +++ b/arch/arm/mach-mvebu/kirkwood.h @@ -1,12 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * arch/arm/mach-mvebu/kirkwood.h * * Generic definitions for Marvell Kirkwood SoC flavors: * 88F6180, 88F6192 and 88F6281. - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #define KIRKWOOD_REGS_PHYS_BASE 0xf1000000 diff --git a/arch/arm/mach-mvebu/mvebu-soc-id.c b/arch/arm/mach-mvebu/mvebu-soc-id.c index a99434bcee849..f436c7b8c7aee 100644 --- a/arch/arm/mach-mvebu/mvebu-soc-id.c +++ b/arch/arm/mach-mvebu/mvebu-soc-id.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * ID and revision information for mvebu SoCs * @@ -5,10 +6,6 @@ * * Gregory CLEMENT * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - * * All the mvebu SoCs have information related to their variant and * revision that can be read from the PCI control register. This is * done before the PCI initialization to avoid any conflict. Once the diff --git a/arch/arm/mach-mvebu/mvebu-soc-id.h b/arch/arm/mach-mvebu/mvebu-soc-id.h index e124a0b82a3e7..225649b2288a2 100644 --- a/arch/arm/mach-mvebu/mvebu-soc-id.h +++ b/arch/arm/mach-mvebu/mvebu-soc-id.h @@ -1,11 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * Marvell EBU SoC ID and revision definitions. * * Copyright (C) 2014 Marvell Semiconductor - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #ifndef __LINUX_MVEBU_SOC_ID_H diff --git a/arch/arm/mach-mvebu/platsmp-a9.c b/arch/arm/mach-mvebu/platsmp-a9.c index d715dec1c197d..785ee2af5baab 100644 --- a/arch/arm/mach-mvebu/platsmp-a9.c +++ b/arch/arm/mach-mvebu/platsmp-a9.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Symmetric Multi Processing (SMP) support for Marvell EBU Cortex-A9 * based SOCs (Armada 375/38x). @@ -6,10 +7,6 @@ * * Gregory CLEMENT * Thomas Petazzoni - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-mvebu/platsmp.c b/arch/arm/mach-mvebu/platsmp.c index c130497dc6cc4..18384ea6862cf 100644 --- a/arch/arm/mach-mvebu/platsmp.c +++ b/arch/arm/mach-mvebu/platsmp.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Symmetric Multi Processing (SMP) support for Armada XP * @@ -8,10 +9,6 @@ * Gregory CLEMENT * Thomas Petazzoni * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - * * The Armada XP SoC has 4 ARMv7 PJ4B CPUs running in full HW coherency * This file implements the routines for preparing the SMP infrastructure * and waking up the secondary CPUs diff --git a/arch/arm/mach-mvebu/pm-board.c b/arch/arm/mach-mvebu/pm-board.c index 0705525116996..7fa1806acd659 100644 --- a/arch/arm/mach-mvebu/pm-board.c +++ b/arch/arm/mach-mvebu/pm-board.c @@ -1,13 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Board-level suspend/resume support. * * Copyright (C) 2014-2015 Marvell * * Thomas Petazzoni - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-mvebu/pm.c b/arch/arm/mach-mvebu/pm.c index c487be61d6d8c..b149d9b775050 100644 --- a/arch/arm/mach-mvebu/pm.c +++ b/arch/arm/mach-mvebu/pm.c @@ -1,13 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Suspend/resume support. Currently supporting Armada XP only. * * Copyright (C) 2014 Marvell * * Thomas Petazzoni - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-mvebu/pmsu.c b/arch/arm/mach-mvebu/pmsu.c index 73d5d72dfc3e5..af27a7156675a 100644 --- a/arch/arm/mach-mvebu/pmsu.c +++ b/arch/arm/mach-mvebu/pmsu.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Power Management Service Unit(PMSU) support for Armada 370/XP platforms. * @@ -7,10 +8,6 @@ * Gregory Clement * Thomas Petazzoni * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - * * The Armada 370 and Armada XP SOCs have a power management service * unit which is responsible for powering down and waking up CPUs and * other SOC units diff --git a/arch/arm/mach-mvebu/pmsu.h b/arch/arm/mach-mvebu/pmsu.h index ea79269c27023..1e847388e8dde 100644 --- a/arch/arm/mach-mvebu/pmsu.h +++ b/arch/arm/mach-mvebu/pmsu.h @@ -1,11 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * Power Management Service Unit (PMSU) support for Armada 370/XP platforms. * * Copyright (C) 2012 Marvell - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #ifndef __MACH_MVEBU_PMSU_H diff --git a/arch/arm/mach-mvebu/pmsu_ll.S b/arch/arm/mach-mvebu/pmsu_ll.S index 7aae9a25cfeb7..f7d21385fd88c 100644 --- a/arch/arm/mach-mvebu/pmsu_ll.S +++ b/arch/arm/mach-mvebu/pmsu_ll.S @@ -1,12 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2014 Marvell * * Thomas Petazzoni * Gregory Clement - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-mvebu/system-controller.c b/arch/arm/mach-mvebu/system-controller.c index 04d9ebe6a90a0..48224b6ed6dc7 100644 --- a/arch/arm/mach-mvebu/system-controller.c +++ b/arch/arm/mach-mvebu/system-controller.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * System controller support for Armada 370, 375 and XP platforms. * @@ -7,10 +8,6 @@ * Gregory CLEMENT * Thomas Petazzoni * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - * * The Armada 370, 375 and Armada XP SoCs have a range of * miscellaneous registers, that do not belong to a particular device, * but rather provide system-level features. This basic diff --git a/arch/arm/mach-omap1/include/mach/mtd-xip.h b/arch/arm/mach-omap1/include/mach/mtd-xip.h index d09b2bc4920fe..b163b8a65605b 100644 --- a/arch/arm/mach-omap1/include/mach/mtd-xip.h +++ b/arch/arm/mach-omap1/include/mach/mtd-xip.h @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * MTD primitives for XIP support. Architecture specific functions. * @@ -5,10 +6,7 @@ * * Author: Vladimir Barinov * - * (c) 2005 MontaVista Software, Inc. This file is licensed under the - * terms of the GNU General Public License version 2. This program is - * licensed "as is" without any warranty of any kind, whether express or - * implied. + * (c) 2005 MontaVista Software, Inc. */ #ifndef __ARCH_OMAP_MTD_XIP_H__ diff --git a/arch/arm/mach-omap1/pm_bus.c b/arch/arm/mach-omap1/pm_bus.c index 667c1637ff919..c04619ac06312 100644 --- a/arch/arm/mach-omap1/pm_bus.c +++ b/arch/arm/mach-omap1/pm_bus.c @@ -1,13 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Runtime PM support code for OMAP1 * * Author: Kevin Hilman, Deep Root Systems, LLC * * Copyright (C) 2010 Texas Instruments, Inc. - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include #include @@ -43,4 +40,3 @@ static int __init omap1_pm_runtime_init(void) return 0; } core_initcall(omap1_pm_runtime_init); - diff --git a/arch/arm/mach-omap2/powerdomain.c b/arch/arm/mach-omap2/powerdomain.c index 0a5b87e2a4b07..37d23ae2e9dbe 100644 --- a/arch/arm/mach-omap2/powerdomain.c +++ b/arch/arm/mach-omap2/powerdomain.c @@ -174,7 +174,7 @@ static int _pwrdm_state_switch(struct powerdomain *pwrdm, int flag) break; case PWRDM_STATE_PREV: prev = pwrdm_read_prev_pwrst(pwrdm); - if (pwrdm->state != prev) + if (prev >= 0 && pwrdm->state != prev) pwrdm->state_counter[prev]++; if (prev == PWRDM_POWER_RET) _update_logic_membank_counters(pwrdm); diff --git a/arch/arm/mach-omap2/prcm43xx.h b/arch/arm/mach-omap2/prcm43xx.h index 899da0ae98000..31860ffd28abc 100644 --- a/arch/arm/mach-omap2/prcm43xx.h +++ b/arch/arm/mach-omap2/prcm43xx.h @@ -1,11 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * AM43x PRCM defines * * Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com/ - * - * This file is licensed under the terms of the GNU General Public License - * version 2. This program is licensed "as is" without any warranty of any - * kind, whether express or implied. */ #ifndef __ARCH_ARM_MACH_OMAP2_PRCM_43XX_H diff --git a/arch/arm/mach-omap2/vc.c b/arch/arm/mach-omap2/vc.c index 86f1ac4c24125..ea02d40405c4a 100644 --- a/arch/arm/mach-omap2/vc.c +++ b/arch/arm/mach-omap2/vc.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * OMAP Voltage Controller (VC) interface * * Copyright (C) 2011 Texas Instruments, Inc. - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include #include @@ -895,4 +892,3 @@ void __init omap_vc_init_channel(struct voltagedomain *voltdm) else if (cpu_is_omap44xx()) omap4_vc_init_channel(voltdm); } - diff --git a/arch/arm/mach-orion5x/board-d2net.c b/arch/arm/mach-orion5x/board-d2net.c index a89376a5cd929..0297e302d7bc8 100644 --- a/arch/arm/mach-orion5x/board-d2net.c +++ b/arch/arm/mach-orion5x/board-d2net.c @@ -1,13 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-orion5x/board-d2net.c * * LaCie d2Network and Big Disk Network NAS setup * * Copyright (C) 2009 Simon Guinot - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-orion5x/board-dt.c b/arch/arm/mach-orion5x/board-dt.c index 3f651df3a71cf..be47492c6640d 100644 --- a/arch/arm/mach-orion5x/board-dt.c +++ b/arch/arm/mach-orion5x/board-dt.c @@ -1,13 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Copyright 2012 (C), Thomas Petazzoni * * arch/arm/mach-orion5x/board-dt.c * * Flattened Device Tree board initialization - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-orion5x/board-rd88f5182.c b/arch/arm/mach-orion5x/board-rd88f5182.c index b7b0f52f4c0a0..596601367989a 100644 --- a/arch/arm/mach-orion5x/board-rd88f5182.c +++ b/arch/arm/mach-orion5x/board-rd88f5182.c @@ -1,13 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-orion5x/rd88f5182-setup.c * * Marvell Orion-NAS Reference Design Setup * * Maintainer: Ronen Shitrit - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include #include diff --git a/arch/arm/mach-orion5x/bridge-regs.h b/arch/arm/mach-orion5x/bridge-regs.h index 305598eaaee15..fe85bc5b131fc 100644 --- a/arch/arm/mach-orion5x/bridge-regs.h +++ b/arch/arm/mach-orion5x/bridge-regs.h @@ -1,10 +1,5 @@ -/* - * Orion CPU Bridge Registers - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - */ +/* SPDX-License-Identifier: GPL-2.0-only */ +/* Orion CPU Bridge Registers */ #ifndef __ASM_ARCH_BRIDGE_REGS_H #define __ASM_ARCH_BRIDGE_REGS_H diff --git a/arch/arm/mach-orion5x/common.c b/arch/arm/mach-orion5x/common.c index 7bcb41137bbf6..2e711b7252c64 100644 --- a/arch/arm/mach-orion5x/common.c +++ b/arch/arm/mach-orion5x/common.c @@ -1,13 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-orion5x/common.c * * Core functions for Marvell Orion 5x SoCs * * Maintainer: Tzachi Perelstein - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-orion5x/db88f5281-setup.c b/arch/arm/mach-orion5x/db88f5281-setup.c index 39eae10ac8def..fe1a4cef1ba2d 100644 --- a/arch/arm/mach-orion5x/db88f5281-setup.c +++ b/arch/arm/mach-orion5x/db88f5281-setup.c @@ -1,13 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-orion5x/db88f5281-setup.c * * Marvell Orion-2 Development Board Setup * * Maintainer: Tzachi Perelstein - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include #include diff --git a/arch/arm/mach-orion5x/irq.c b/arch/arm/mach-orion5x/irq.c index ac4af2283bef9..5b076eefe2b4a 100644 --- a/arch/arm/mach-orion5x/irq.c +++ b/arch/arm/mach-orion5x/irq.c @@ -1,13 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-orion5x/irq.c * * Core IRQ functions for Marvell Orion System On Chip * * Maintainer: Tzachi Perelstein - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include #include diff --git a/arch/arm/mach-orion5x/irqs.h b/arch/arm/mach-orion5x/irqs.h index 506c8e0b30c42..a70c47cfa6bcb 100644 --- a/arch/arm/mach-orion5x/irqs.h +++ b/arch/arm/mach-orion5x/irqs.h @@ -1,11 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * IRQ definitions for Orion SoC * * Maintainer: Tzachi Perelstein - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #ifndef __ASM_ARCH_IRQS_H diff --git a/arch/arm/mach-orion5x/kurobox_pro-setup.c b/arch/arm/mach-orion5x/kurobox_pro-setup.c index 83d43cff4bd77..acba066180801 100644 --- a/arch/arm/mach-orion5x/kurobox_pro-setup.c +++ b/arch/arm/mach-orion5x/kurobox_pro-setup.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-orion5x/kurobox_pro-setup.c * * Maintainer: Ronen Shitrit - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include #include diff --git a/arch/arm/mach-orion5x/ls_hgl-setup.c b/arch/arm/mach-orion5x/ls_hgl-setup.c index 47ba6e0502f59..af07f617465f7 100644 --- a/arch/arm/mach-orion5x/ls_hgl-setup.c +++ b/arch/arm/mach-orion5x/ls_hgl-setup.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-orion5x/ls_hgl-setup.c * * Maintainer: Zhu Qingsen - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-orion5x/mpp.c b/arch/arm/mach-orion5x/mpp.c index 19ef185944158..b9855dce6ba0a 100644 --- a/arch/arm/mach-orion5x/mpp.c +++ b/arch/arm/mach-orion5x/mpp.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-orion5x/mpp.c * * MPP functions for Marvell Orion 5x SoCs - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-orion5x/net2big-setup.c b/arch/arm/mach-orion5x/net2big-setup.c index bf6be4cfd2384..695cc683cd833 100644 --- a/arch/arm/mach-orion5x/net2big-setup.c +++ b/arch/arm/mach-orion5x/net2big-setup.c @@ -1,13 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-orion5x/net2big-setup.c * * LaCie 2Big Network NAS setup * * Copyright (C) 2009 Simon Guinot - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include @@ -432,4 +429,3 @@ MACHINE_START(NET2BIG, "LaCie 2Big Network") .fixup = tag_fixup_mem32, .restart = orion5x_restart, MACHINE_END - diff --git a/arch/arm/mach-orion5x/orion5x.h b/arch/arm/mach-orion5x/orion5x.h index 2b66120fba86c..26f1ccb8cb281 100644 --- a/arch/arm/mach-orion5x/orion5x.h +++ b/arch/arm/mach-orion5x/orion5x.h @@ -1,12 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * Generic definitions of Orion SoC flavors: * Orion-1, Orion-VoIP, Orion-NAS, Orion-2, and Orion-1-90. * * Maintainer: Tzachi Perelstein - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #ifndef __ASM_ARCH_ORION5X_H diff --git a/arch/arm/mach-orion5x/pci.c b/arch/arm/mach-orion5x/pci.c index 76951bfbacf57..fa62add8cf8a6 100644 --- a/arch/arm/mach-orion5x/pci.c +++ b/arch/arm/mach-orion5x/pci.c @@ -1,13 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-orion5x/pci.c * * PCI and PCIe functions for Marvell Orion System On Chip * * Maintainer: Tzachi Perelstein - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-orion5x/rd88f5181l-fxo-setup.c b/arch/arm/mach-orion5x/rd88f5181l-fxo-setup.c index c65ab7db36ad9..432fc8357d9e1 100644 --- a/arch/arm/mach-orion5x/rd88f5181l-fxo-setup.c +++ b/arch/arm/mach-orion5x/rd88f5181l-fxo-setup.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-orion5x/rd88f5181l-fxo-setup.c * * Marvell Orion-VoIP FXO Reference Design Setup - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include #include diff --git a/arch/arm/mach-orion5x/rd88f5181l-ge-setup.c b/arch/arm/mach-orion5x/rd88f5181l-ge-setup.c index 76b8138d9d79b..d4b1a9c3cd362 100644 --- a/arch/arm/mach-orion5x/rd88f5181l-ge-setup.c +++ b/arch/arm/mach-orion5x/rd88f5181l-ge-setup.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-orion5x/rd88f5181l-ge-setup.c * * Marvell Orion-VoIP GE Reference Design Setup - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include #include diff --git a/arch/arm/mach-orion5x/rd88f5182-setup.c b/arch/arm/mach-orion5x/rd88f5182-setup.c index fe3e67c81fb82..6ffcfc6445e24 100644 --- a/arch/arm/mach-orion5x/rd88f5182-setup.c +++ b/arch/arm/mach-orion5x/rd88f5182-setup.c @@ -1,13 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-orion5x/rd88f5182-setup.c * * Marvell Orion-NAS Reference Design Setup * * Maintainer: Ronen Shitrit - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include #include diff --git a/arch/arm/mach-orion5x/rd88f6183ap-ge-setup.c b/arch/arm/mach-orion5x/rd88f6183ap-ge-setup.c index 5f388a1ed1e4c..93f74fd6b4dac 100644 --- a/arch/arm/mach-orion5x/rd88f6183ap-ge-setup.c +++ b/arch/arm/mach-orion5x/rd88f6183ap-ge-setup.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-orion5x/rd88f6183-ap-ge-setup.c * * Marvell Orion-1-90 AP GE Reference Design Setup - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include #include diff --git a/arch/arm/mach-orion5x/ts78xx-setup.c b/arch/arm/mach-orion5x/ts78xx-setup.c index a39764faf2a01..af810e7ccd796 100644 --- a/arch/arm/mach-orion5x/ts78xx-setup.c +++ b/arch/arm/mach-orion5x/ts78xx-setup.c @@ -1,11 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-orion5x/ts78xx-setup.c * * Maintainer: Alexander Clouter - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt diff --git a/arch/arm/mach-orion5x/wnr854t-setup.c b/arch/arm/mach-orion5x/wnr854t-setup.c index 83589a28a4911..e5f327054dd33 100644 --- a/arch/arm/mach-orion5x/wnr854t-setup.c +++ b/arch/arm/mach-orion5x/wnr854t-setup.c @@ -1,10 +1,5 @@ -/* - * arch/arm/mach-orion5x/wnr854t-setup.c - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - */ +// SPDX-License-Identifier: GPL-2.0-only +// arch/arm/mach-orion5x/wnr854t-setup.c #include #include #include diff --git a/arch/arm/mach-orion5x/wrt350n-v2-setup.c b/arch/arm/mach-orion5x/wrt350n-v2-setup.c index cea08d4a25974..e6a2da6662df5 100644 --- a/arch/arm/mach-orion5x/wrt350n-v2-setup.c +++ b/arch/arm/mach-orion5x/wrt350n-v2-setup.c @@ -1,10 +1,5 @@ -/* - * arch/arm/mach-orion5x/wrt350n-v2-setup.c - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - */ +// SPDX-License-Identifier: GPL-2.0-only +// arch/arm/mach-orion5x/wrt350n-v2-setup.c #include #include #include diff --git a/arch/arm/mach-pxa/eseries.c b/arch/arm/mach-pxa/eseries.c index f37c44b6139d7..b9e235cb5a073 100644 --- a/arch/arm/mach-pxa/eseries.c +++ b/arch/arm/mach-pxa/eseries.c @@ -1,13 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * Hardware definitions for the Toshiba eseries PDAs * * Copyright (c) 2003 Ian Molton - * - * This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. - * */ #include diff --git a/arch/arm/mach-pxa/standby.S b/arch/arm/mach-pxa/standby.S index eab1645bb4adb..60d0d14d4a0fe 100644 --- a/arch/arm/mach-pxa/standby.S +++ b/arch/arm/mach-pxa/standby.S @@ -1,12 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * PXA27x standby mode * * Author: David Burrage * - * 2005 (c) MontaVista Software, Inc. This file is licensed under - * the terms of the GNU General Public License version 2. This program - * is licensed "as is" without any warranty of any kind, whether express - * or implied. + * 2005 (c) MontaVista Software, Inc. */ #include diff --git a/arch/arm/mach-spear/generic.h b/arch/arm/mach-spear/generic.h index 8ec2b92dca192..43b7996ab7545 100644 --- a/arch/arm/mach-spear/generic.h +++ b/arch/arm/mach-spear/generic.h @@ -1,13 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * spear machine family generic header file * * Copyright (C) 2009-2012 ST Microelectronics * Rajeev Kumar * Viresh Kumar - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #ifndef __MACH_GENERIC_H diff --git a/arch/arm/mach-spear/include/mach/misc_regs.h b/arch/arm/mach-spear/include/mach/misc_regs.h index cfaf7c665b588..12a789bd896e0 100644 --- a/arch/arm/mach-spear/include/mach/misc_regs.h +++ b/arch/arm/mach-spear/include/mach/misc_regs.h @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * arch/arm/mach-spear3xx/include/mach/misc_regs.h * @@ -5,10 +6,6 @@ * * Copyright (C) 2009 ST Microelectronics * Viresh Kumar - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #ifndef __MACH_MISC_REGS_H diff --git a/arch/arm/mach-spear/include/mach/spear.h b/arch/arm/mach-spear/include/mach/spear.h index 5ed841ccf8a38..432efd407c763 100644 --- a/arch/arm/mach-spear/include/mach/spear.h +++ b/arch/arm/mach-spear/include/mach/spear.h @@ -1,13 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * SPEAr3xx/6xx Machine family specific definition * * Copyright (C) 2009,2012 ST Microelectronics * Rajeev Kumar * Viresh Kumar - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #ifndef __MACH_SPEAR_H diff --git a/arch/arm/mach-spear/pl080.c b/arch/arm/mach-spear/pl080.c index b4529f3e0ee97..35c929de46755 100644 --- a/arch/arm/mach-spear/pl080.c +++ b/arch/arm/mach-spear/pl080.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/plat-spear/pl080.c * @@ -5,10 +6,6 @@ * * Copyright (C) 2012 ST Microelectronics * Viresh Kumar - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-spear/pl080.h b/arch/arm/mach-spear/pl080.h index 608dec6725aea..3732d940dbfb6 100644 --- a/arch/arm/mach-spear/pl080.h +++ b/arch/arm/mach-spear/pl080.h @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * arch/arm/plat-spear/include/plat/pl080.h * @@ -5,10 +6,6 @@ * * Copyright (C) 2012 ST Microelectronics * Viresh Kumar - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #ifndef __PLAT_PL080_H diff --git a/arch/arm/mach-spear/restart.c b/arch/arm/mach-spear/restart.c index b4342155a7833..01f529675629f 100644 --- a/arch/arm/mach-spear/restart.c +++ b/arch/arm/mach-spear/restart.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/plat-spear/restart.c * @@ -5,10 +6,6 @@ * * Copyright (C) 2009 ST Microelectronics * Viresh Kumar - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include #include diff --git a/arch/arm/mach-spear/spear1310.c b/arch/arm/mach-spear/spear1310.c index a7d4f136836fa..020b27e65aea0 100644 --- a/arch/arm/mach-spear/spear1310.c +++ b/arch/arm/mach-spear/spear1310.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-spear13xx/spear1310.c * @@ -5,10 +6,6 @@ * * Copyright (C) 2012 ST Microelectronics * Viresh Kumar - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #define pr_fmt(fmt) "SPEAr1310: " fmt diff --git a/arch/arm/mach-spear/spear1340.c b/arch/arm/mach-spear/spear1340.c index a212af90c0bc6..a391f154eff9b 100644 --- a/arch/arm/mach-spear/spear1340.c +++ b/arch/arm/mach-spear/spear1340.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-spear13xx/spear1340.c * @@ -5,10 +6,6 @@ * * Copyright (C) 2012 ST Microelectronics * Viresh Kumar - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #define pr_fmt(fmt) "SPEAr1340: " fmt diff --git a/arch/arm/mach-spear/spear13xx.c b/arch/arm/mach-spear/spear13xx.c index 74d1ca2a529a7..64087046dfff7 100644 --- a/arch/arm/mach-spear/spear13xx.c +++ b/arch/arm/mach-spear/spear13xx.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-spear13xx/spear13xx.c * @@ -5,10 +6,6 @@ * * Copyright (C) 2012 ST Microelectronics * Viresh Kumar - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #define pr_fmt(fmt) "SPEAr13xx: " fmt diff --git a/arch/arm/mach-spear/spear300.c b/arch/arm/mach-spear/spear300.c index 325b89579be10..490df8aaad90c 100644 --- a/arch/arm/mach-spear/spear300.c +++ b/arch/arm/mach-spear/spear300.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-spear3xx/spear300.c * @@ -5,10 +6,6 @@ * * Copyright (C) 2009-2012 ST Microelectronics * Viresh Kumar - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #define pr_fmt(fmt) "SPEAr300: " fmt diff --git a/arch/arm/mach-spear/spear310.c b/arch/arm/mach-spear/spear310.c index 59e173dc85cf3..5ca325fc1b825 100644 --- a/arch/arm/mach-spear/spear310.c +++ b/arch/arm/mach-spear/spear310.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-spear3xx/spear310.c * @@ -5,10 +6,6 @@ * * Copyright (C) 2009-2012 ST Microelectronics * Viresh Kumar - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #define pr_fmt(fmt) "SPEAr310: " fmt diff --git a/arch/arm/mach-spear/spear320.c b/arch/arm/mach-spear/spear320.c index 926d5a243238a..991de88dfe4d3 100644 --- a/arch/arm/mach-spear/spear320.c +++ b/arch/arm/mach-spear/spear320.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-spear3xx/spear320.c * @@ -5,10 +6,6 @@ * * Copyright (C) 2009-2012 ST Microelectronics * Viresh Kumar - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #define pr_fmt(fmt) "SPEAr320: " fmt diff --git a/arch/arm/mach-spear/spear3xx.c b/arch/arm/mach-spear/spear3xx.c index f83321d5e3538..cdaa41900a399 100644 --- a/arch/arm/mach-spear/spear3xx.c +++ b/arch/arm/mach-spear/spear3xx.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-spear3xx/spear3xx.c * @@ -5,10 +6,6 @@ * * Copyright (C) 2009-2012 ST Microelectronics * Viresh Kumar - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #define pr_fmt(fmt) "SPEAr3xx: " fmt diff --git a/arch/arm/mach-spear/spear6xx.c b/arch/arm/mach-spear/spear6xx.c index c5fc110134ba6..11eb64a369807 100644 --- a/arch/arm/mach-spear/spear6xx.c +++ b/arch/arm/mach-spear/spear6xx.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mach-spear6xx/spear6xx.c * @@ -7,10 +8,6 @@ * Rajeev Kumar * * Copyright 2012 Stefan Roese - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include diff --git a/arch/arm/mach-spear/time.c b/arch/arm/mach-spear/time.c index d1fdb6066f7bb..8b572c93e14ca 100644 --- a/arch/arm/mach-spear/time.c +++ b/arch/arm/mach-spear/time.c @@ -1,12 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/plat-spear/time.c * * Copyright (C) 2010 ST Microelectronics * Shiraz Hashim - * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. */ #include @@ -93,7 +90,7 @@ static void __init spear_clocksource_init(void) 200, 16, clocksource_mmio_readw_up); } -static inline void timer_shutdown(struct clock_event_device *evt) +static inline void spear_timer_shutdown(struct clock_event_device *evt) { u16 val = readw(gpt_base + CR(CLKEVT)); @@ -104,7 +101,7 @@ static inline void timer_shutdown(struct clock_event_device *evt) static int spear_shutdown(struct clock_event_device *evt) { - timer_shutdown(evt); + spear_timer_shutdown(evt); return 0; } @@ -114,7 +111,7 @@ static int spear_set_oneshot(struct clock_event_device *evt) u16 val; /* stop the timer */ - timer_shutdown(evt); + spear_timer_shutdown(evt); val = readw(gpt_base + CR(CLKEVT)); val |= CTRL_ONE_SHOT; @@ -129,7 +126,7 @@ static int spear_set_periodic(struct clock_event_device *evt) u16 val; /* stop the timer */ - timer_shutdown(evt); + spear_timer_shutdown(evt); period = clk_get_rate(gpt_clk) / HZ; period >>= CTRL_PRESCALER16; diff --git a/arch/arm/mm/cache-feroceon-l2.c b/arch/arm/mm/cache-feroceon-l2.c index 5c1b7a7b9af63..25dbd84a1aafa 100644 --- a/arch/arm/mm/cache-feroceon-l2.c +++ b/arch/arm/mm/cache-feroceon-l2.c @@ -1,12 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mm/cache-feroceon-l2.c - Feroceon L2 cache controller support * * Copyright (C) 2008 Marvell Semiconductor * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - * * References: * - Unified Layer 2 Cache for Feroceon CPU Cores, * Document ID MV-S104858-00, Rev. A, October 23 2007. diff --git a/arch/arm/mm/cache-tauros2.c b/arch/arm/mm/cache-tauros2.c index 88255bea65e41..b1e1aba602f7f 100644 --- a/arch/arm/mm/cache-tauros2.c +++ b/arch/arm/mm/cache-tauros2.c @@ -1,12 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-only /* * arch/arm/mm/cache-tauros2.c - Tauros2 L2 cache controller support * * Copyright (C) 2008 Marvell Semiconductor * - * This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any - * warranty of any kind, whether express or implied. - * * References: * - PJ1 CPU Core Datasheet, * Document ID MV-S104837-01, Rev 0.7, January 24 2008. diff --git a/arch/arm/xen/enlighten.c b/arch/arm/xen/enlighten.c index 7f1c106b746f8..59de416c61a30 100644 --- a/arch/arm/xen/enlighten.c +++ b/arch/arm/xen/enlighten.c @@ -159,9 +159,6 @@ static int xen_starting_cpu(unsigned int cpu) BUG_ON(err); per_cpu(xen_vcpu, cpu) = vcpup; - if (!xen_kernel_unmapped_at_usr()) - xen_setup_runstate_info(cpu); - after_register_vcpu_info: enable_percpu_irq(xen_events_irq, 0); return 0; @@ -362,7 +359,8 @@ static int __init xen_guest_init(void) * for secondary CPUs as they are brought up. * For uniformity we use VCPUOP_register_vcpu_info even on cpu0. */ - xen_vcpu_info = alloc_percpu(struct vcpu_info); + xen_vcpu_info = __alloc_percpu(sizeof(struct vcpu_info), + 1 << fls(sizeof(struct vcpu_info) - 1)); if (xen_vcpu_info == NULL) return -ENOMEM; @@ -394,9 +392,6 @@ static int __init xen_guest_init(void) return -EINVAL; } - if (!xen_kernel_unmapped_at_usr()) - xen_time_setup_guest(); - if (xen_initial_domain()) pvclock_gtod_register_notifier(&xen_pvclock_gtod_notifier); @@ -406,7 +401,13 @@ static int __init xen_guest_init(void) } early_initcall(xen_guest_init); -static int __init xen_pm_init(void) +static int xen_starting_runstate_cpu(unsigned int cpu) +{ + xen_setup_runstate_info(cpu); + return 0; +} + +static int __init xen_late_init(void) { if (!xen_domain()) return -ENODEV; @@ -419,9 +420,16 @@ static int __init xen_pm_init(void) do_settimeofday64(&ts); } - return 0; + if (xen_kernel_unmapped_at_usr()) + return 0; + + xen_time_setup_guest(); + + return cpuhp_setup_state(CPUHP_AP_ARM_XEN_RUNSTATE_STARTING, + "arm/xen_runstate:starting", + xen_starting_runstate_cpu, NULL); } -late_initcall(xen_pm_init); +late_initcall(xen_late_init); /* empty stubs */ diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig index 95e06c011e8c3..858a4bd4d7b75 100644 --- a/arch/arm64/Kconfig +++ b/arch/arm64/Kconfig @@ -1153,6 +1153,8 @@ choice config CPU_BIG_ENDIAN bool "Build big-endian kernel" depends on !LD_IS_LLD || LLD_VERSION >= 130000 + # https://github.com/llvm/llvm-project/commit/1379b150991f70a5782e9a143c2ba5308da1161c + depends on AS_IS_GNU || AS_VERSION >= 150000 help Say Y if you plan on running a kernel with a big-endian userspace. diff --git a/arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi b/arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi index 12e59777363fe..9bb360db6b195 100644 --- a/arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi +++ b/arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi @@ -1179,26 +1179,34 @@ dma-coherent; }; - usb0: usb@3100000 { - status = "disabled"; - compatible = "snps,dwc3"; - reg = <0x0 0x3100000 0x0 0x10000>; - interrupts = <0 80 0x4>; /* Level high type */ - dr_mode = "host"; - snps,quirk-frame-length-adjustment = <0x20>; - snps,dis_rxdet_inp3_quirk; - snps,incr-burst-type-adjustment = <1>, <4>, <8>, <16>; - }; + bus: bus { + #address-cells = <2>; + #size-cells = <2>; + compatible = "simple-bus"; + ranges; + dma-ranges = <0x0 0x0 0x0 0x0 0x100 0x00000000>; + + usb0: usb@3100000 { + compatible = "snps,dwc3"; + reg = <0x0 0x3100000 0x0 0x10000>; + interrupts = <0 80 0x4>; /* Level high type */ + dr_mode = "host"; + snps,quirk-frame-length-adjustment = <0x20>; + snps,dis_rxdet_inp3_quirk; + snps,incr-burst-type-adjustment = <1>, <4>, <8>, <16>; + status = "disabled"; + }; - usb1: usb@3110000 { - status = "disabled"; - compatible = "snps,dwc3"; - reg = <0x0 0x3110000 0x0 0x10000>; - interrupts = <0 81 0x4>; /* Level high type */ - dr_mode = "host"; - snps,quirk-frame-length-adjustment = <0x20>; - snps,dis_rxdet_inp3_quirk; - snps,incr-burst-type-adjustment = <1>, <4>, <8>, <16>; + usb1: usb@3110000 { + compatible = "snps,dwc3"; + reg = <0x0 0x3110000 0x0 0x10000>; + interrupts = <0 81 0x4>; /* Level high type */ + dr_mode = "host"; + snps,quirk-frame-length-adjustment = <0x20>; + snps,dis_rxdet_inp3_quirk; + snps,incr-burst-type-adjustment = <1>, <4>, <8>, <16>; + status = "disabled"; + }; }; ccn@4000000 { diff --git a/arch/arm64/boot/dts/freescale/imx8mm.dtsi b/arch/arm64/boot/dts/freescale/imx8mm.dtsi index 2a67122c5624c..86731850a6bd6 100644 --- a/arch/arm64/boot/dts/freescale/imx8mm.dtsi +++ b/arch/arm64/boot/dts/freescale/imx8mm.dtsi @@ -366,6 +366,7 @@ "pll8k", "pll11k", "clkext3"; dmas = <&sdma2 24 25 0x80000000>; dma-names = "rx"; + #sound-dai-cells = <0>; status = "disabled"; }; diff --git a/arch/arm64/boot/dts/freescale/imx8mn.dtsi b/arch/arm64/boot/dts/freescale/imx8mn.dtsi index 16a5efba17f39..8f01848b7c6a9 100644 --- a/arch/arm64/boot/dts/freescale/imx8mn.dtsi +++ b/arch/arm64/boot/dts/freescale/imx8mn.dtsi @@ -340,6 +340,7 @@ "pll8k", "pll11k", "clkext3"; dmas = <&sdma2 24 25 0x80000000>; dma-names = "rx"; + #sound-dai-cells = <0>; status = "disabled"; }; diff --git a/arch/arm64/boot/dts/freescale/imx8mp.dtsi b/arch/arm64/boot/dts/freescale/imx8mp.dtsi index ab670b5d641b1..4e8cde8972e82 100644 --- a/arch/arm64/boot/dts/freescale/imx8mp.dtsi +++ b/arch/arm64/boot/dts/freescale/imx8mp.dtsi @@ -913,6 +913,7 @@ phys = <&usb3_phy0>, <&usb3_phy0>; phy-names = "usb2-phy", "usb3-phy"; snps,gfladj-refclk-lpm-sel-quirk; + snps,parkmode-disable-ss-quirk; }; }; @@ -954,6 +955,7 @@ phys = <&usb3_phy1>, <&usb3_phy1>; phy-names = "usb2-phy", "usb3-phy"; snps,gfladj-refclk-lpm-sel-quirk; + snps,parkmode-disable-ss-quirk; }; }; diff --git a/arch/arm64/boot/dts/freescale/imx8mq.dtsi b/arch/arm64/boot/dts/freescale/imx8mq.dtsi index 2a698c5b87bcd..e41e1c553bd37 100644 --- a/arch/arm64/boot/dts/freescale/imx8mq.dtsi +++ b/arch/arm64/boot/dts/freescale/imx8mq.dtsi @@ -1382,7 +1382,7 @@ phys = <&usb3_phy0>, <&usb3_phy0>; phy-names = "usb2-phy", "usb3-phy"; power-domains = <&pgc_otg1>; - usb3-resume-missing-cas; + snps,parkmode-disable-ss-quirk; status = "disabled"; }; @@ -1414,7 +1414,7 @@ phys = <&usb3_phy1>, <&usb3_phy1>; phy-names = "usb2-phy", "usb3-phy"; power-domains = <&pgc_otg2>; - usb3-resume-missing-cas; + snps,parkmode-disable-ss-quirk; status = "disabled"; }; diff --git a/arch/arm64/boot/dts/freescale/imx8qm-ss-img.dtsi b/arch/arm64/boot/dts/freescale/imx8qm-ss-img.dtsi index 7764b4146e0ab..2bbdacb1313f9 100644 --- a/arch/arm64/boot/dts/freescale/imx8qm-ss-img.dtsi +++ b/arch/arm64/boot/dts/freescale/imx8qm-ss-img.dtsi @@ -8,5 +8,5 @@ }; &jpegenc { - compatible = "nxp,imx8qm-jpgdec", "nxp,imx8qxp-jpgenc"; + compatible = "nxp,imx8qm-jpgenc", "nxp,imx8qxp-jpgenc"; }; diff --git a/arch/arm64/boot/dts/marvell/cn9130-crb.dtsi b/arch/arm64/boot/dts/marvell/cn9130-crb.dtsi index 505ae69289f6d..ce49702dc4936 100644 --- a/arch/arm64/boot/dts/marvell/cn9130-crb.dtsi +++ b/arch/arm64/boot/dts/marvell/cn9130-crb.dtsi @@ -107,7 +107,7 @@ "mpp59", "mpp60", "mpp61"; marvell,function = "sdio"; }; - cp0_spi0_pins: cp0-spi-pins-0 { + cp0_spi1_pins: cp0-spi-pins-1 { marvell,pins = "mpp13", "mpp14", "mpp15", "mpp16"; marvell,function = "spi1"; }; @@ -149,7 +149,7 @@ &cp0_spi1 { pinctrl-names = "default"; - pinctrl-0 = <&cp0_spi0_pins>; + pinctrl-0 = <&cp0_spi1_pins>; reg = <0x700680 0x50>, /* control */ <0x2000000 0x1000000>; /* CS0 */ status = "okay"; diff --git a/arch/arm64/boot/dts/marvell/cn9130-db.dtsi b/arch/arm64/boot/dts/marvell/cn9130-db.dtsi index c00b69b88bd2f..c53253f668403 100644 --- a/arch/arm64/boot/dts/marvell/cn9130-db.dtsi +++ b/arch/arm64/boot/dts/marvell/cn9130-db.dtsi @@ -307,7 +307,7 @@ &cp0_spi1 { status = "disabled"; pinctrl-names = "default"; - pinctrl-0 = <&cp0_spi0_pins>; + pinctrl-0 = <&cp0_spi1_pins>; reg = <0x700680 0x50>; spi-flash@0 { @@ -371,7 +371,7 @@ "mpp59", "mpp60", "mpp61"; marvell,function = "sdio"; }; - cp0_spi0_pins: cp0-spi-pins-0 { + cp0_spi1_pins: cp0-spi-pins-1 { marvell,pins = "mpp13", "mpp14", "mpp15", "mpp16"; marvell,function = "spi1"; }; diff --git a/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts b/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts index 6b99d903b4791..cdbd70bf5dd9b 100644 --- a/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts +++ b/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts @@ -69,7 +69,7 @@ }; }; - memory { + memory@40000000 { reg = <0 0x40000000 0 0x40000000>; }; diff --git a/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts b/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts index f2dc850010f10..ee454a26b4597 100644 --- a/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts +++ b/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts @@ -55,7 +55,7 @@ }; }; - memory { + memory@40000000 { reg = <0 0x40000000 0 0x20000000>; }; diff --git a/arch/arm64/boot/dts/mediatek/mt8173-evb.dts b/arch/arm64/boot/dts/mediatek/mt8173-evb.dts index 4fa1e93302c75..4e0c3aa264a5c 100644 --- a/arch/arm64/boot/dts/mediatek/mt8173-evb.dts +++ b/arch/arm64/boot/dts/mediatek/mt8173-evb.dts @@ -43,7 +43,7 @@ id-gpio = <&pio 16 GPIO_ACTIVE_HIGH>; }; - usb_p1_vbus: regulator@0 { + usb_p1_vbus: regulator-usb-p1 { compatible = "regulator-fixed"; regulator-name = "usb_vbus"; regulator-min-microvolt = <5000000>; @@ -52,7 +52,7 @@ enable-active-high; }; - usb_p0_vbus: regulator@1 { + usb_p0_vbus: regulator-usb-p0 { compatible = "regulator-fixed"; regulator-name = "vbus"; regulator-min-microvolt = <5000000>; diff --git a/arch/arm64/boot/dts/mediatek/mt8173.dtsi b/arch/arm64/boot/dts/mediatek/mt8173.dtsi index d9e005ae5bb09..c71a5155702d2 100644 --- a/arch/arm64/boot/dts/mediatek/mt8173.dtsi +++ b/arch/arm64/boot/dts/mediatek/mt8173.dtsi @@ -273,7 +273,7 @@ }; thermal-zones { - cpu_thermal: cpu_thermal { + cpu_thermal: cpu-thermal { polling-delay-passive = <1000>; /* milliseconds */ polling-delay = <1000>; /* milliseconds */ diff --git a/arch/arm64/boot/dts/mediatek/mt8183-evb.dts b/arch/arm64/boot/dts/mediatek/mt8183-evb.dts index 7bc0a6a7fadf9..69aee79d36d48 100644 --- a/arch/arm64/boot/dts/mediatek/mt8183-evb.dts +++ b/arch/arm64/boot/dts/mediatek/mt8183-evb.dts @@ -30,7 +30,7 @@ #address-cells = <2>; #size-cells = <2>; ranges; - scp_mem_reserved: scp_mem_region { + scp_mem_reserved: memory@50000000 { compatible = "shared-dma-pool"; reg = <0 0x50000000 0 0x2900000>; no-map; @@ -131,8 +131,8 @@ }; &pio { - i2c_pins_0: i2c0{ - pins_i2c{ + i2c_pins_0: i2c0 { + pins_i2c { pinmux = , ; mediatek,pull-up-adv = <3>; @@ -140,8 +140,8 @@ }; }; - i2c_pins_1: i2c1{ - pins_i2c{ + i2c_pins_1: i2c1 { + pins_i2c { pinmux = , ; mediatek,pull-up-adv = <3>; @@ -149,8 +149,8 @@ }; }; - i2c_pins_2: i2c2{ - pins_i2c{ + i2c_pins_2: i2c2 { + pins_i2c { pinmux = , ; mediatek,pull-up-adv = <3>; @@ -158,8 +158,8 @@ }; }; - i2c_pins_3: i2c3{ - pins_i2c{ + i2c_pins_3: i2c3 { + pins_i2c { pinmux = , ; mediatek,pull-up-adv = <3>; @@ -167,8 +167,8 @@ }; }; - i2c_pins_4: i2c4{ - pins_i2c{ + i2c_pins_4: i2c4 { + pins_i2c { pinmux = , ; mediatek,pull-up-adv = <3>; @@ -176,8 +176,8 @@ }; }; - i2c_pins_5: i2c5{ - pins_i2c{ + i2c_pins_5: i2c5 { + pins_i2c { pinmux = , ; mediatek,pull-up-adv = <3>; @@ -185,8 +185,8 @@ }; }; - spi_pins_0: spi0{ - pins_spi{ + spi_pins_0: spi0 { + pins_spi { pinmux = , , , @@ -300,8 +300,8 @@ }; }; - spi_pins_1: spi1{ - pins_spi{ + spi_pins_1: spi1 { + pins_spi { pinmux = , , , @@ -310,8 +310,8 @@ }; }; - spi_pins_2: spi2{ - pins_spi{ + spi_pins_2: spi2 { + pins_spi { pinmux = , , , @@ -320,8 +320,8 @@ }; }; - spi_pins_3: spi3{ - pins_spi{ + spi_pins_3: spi3 { + pins_spi { pinmux = , , , @@ -330,8 +330,8 @@ }; }; - spi_pins_4: spi4{ - pins_spi{ + spi_pins_4: spi4 { + pins_spi { pinmux = , , , @@ -340,8 +340,8 @@ }; }; - spi_pins_5: spi5{ - pins_spi{ + spi_pins_5: spi5 { + pins_spi { pinmux = , , , diff --git a/arch/arm64/boot/dts/mediatek/mt8183-kukui-jacuzzi.dtsi b/arch/arm64/boot/dts/mediatek/mt8183-kukui-jacuzzi.dtsi index d8826c82bcda2..c1153580ef958 100644 --- a/arch/arm64/boot/dts/mediatek/mt8183-kukui-jacuzzi.dtsi +++ b/arch/arm64/boot/dts/mediatek/mt8183-kukui-jacuzzi.dtsi @@ -102,6 +102,8 @@ &dsi0 { status = "okay"; + /delete-property/#size-cells; + /delete-property/#address-cells; /delete-node/panel@0; ports { port { @@ -438,20 +440,20 @@ }; touchscreen_pins: touchscreen-pins { - touch_int_odl { + touch-int-odl { pinmux = ; input-enable; bias-pull-up; }; - touch_rst_l { + touch-rst-l { pinmux = ; output-high; }; }; trackpad_pins: trackpad-pins { - trackpad_int { + trackpad-int { pinmux = ; input-enable; bias-disable; /* pulled externally */ diff --git a/arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi b/arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi index 6529962edd4e9..6b7a42c5d5153 100644 --- a/arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi +++ b/arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi @@ -108,7 +108,7 @@ #size-cells = <2>; ranges; - scp_mem_reserved: scp_mem_region { + scp_mem_reserved: memory@50000000 { compatible = "shared-dma-pool"; reg = <0 0x50000000 0 0x2900000>; no-map; @@ -407,13 +407,13 @@ &pio { bt_pins: bt-pins { - pins_bt_en { + pins-bt-en { pinmux = ; output-low; }; }; - ec_ap_int_odl: ec_ap_int_odl { + ec_ap_int_odl: ec-ap-int-odl { pins1 { pinmux = ; input-enable; @@ -421,7 +421,7 @@ }; }; - h1_int_od_l: h1_int_od_l { + h1_int_od_l: h1-int-od-l { pins1 { pinmux = ; input-enable; @@ -429,7 +429,7 @@ }; i2c0_pins: i2c0 { - pins_bus { + pins-bus { pinmux = , ; mediatek,pull-up-adv = <3>; @@ -438,7 +438,7 @@ }; i2c1_pins: i2c1 { - pins_bus { + pins-bus { pinmux = , ; mediatek,pull-up-adv = <3>; @@ -447,7 +447,7 @@ }; i2c2_pins: i2c2 { - pins_bus { + pins-bus { pinmux = , ; bias-disable; @@ -456,7 +456,7 @@ }; i2c3_pins: i2c3 { - pins_bus { + pins-bus { pinmux = , ; mediatek,pull-up-adv = <3>; @@ -465,7 +465,7 @@ }; i2c4_pins: i2c4 { - pins_bus { + pins-bus { pinmux = , ; bias-disable; @@ -474,7 +474,7 @@ }; i2c5_pins: i2c5 { - pins_bus { + pins-bus { pinmux = , ; mediatek,pull-up-adv = <3>; @@ -483,7 +483,7 @@ }; i2c6_pins: i2c6 { - pins_bus { + pins-bus { pinmux = , ; bias-disable; @@ -491,7 +491,7 @@ }; mmc0_pins_default: mmc0-pins-default { - pins_cmd_dat { + pins-cmd-dat { pinmux = , , , @@ -506,13 +506,13 @@ mediatek,pull-up-adv = <01>; }; - pins_clk { + pins-clk { pinmux = ; drive-strength = ; mediatek,pull-down-adv = <10>; }; - pins_rst { + pins-rst { pinmux = ; drive-strength = ; mediatek,pull-down-adv = <01>; @@ -520,7 +520,7 @@ }; mmc0_pins_uhs: mmc0-pins-uhs { - pins_cmd_dat { + pins-cmd-dat { pinmux = , , , @@ -535,19 +535,19 @@ mediatek,pull-up-adv = <01>; }; - pins_clk { + pins-clk { pinmux = ; drive-strength = ; mediatek,pull-down-adv = <10>; }; - pins_ds { + pins-ds { pinmux = ; drive-strength = ; mediatek,pull-down-adv = <10>; }; - pins_rst { + pins-rst { pinmux = ; drive-strength = ; mediatek,pull-up-adv = <01>; @@ -555,7 +555,7 @@ }; mmc1_pins_default: mmc1-pins-default { - pins_cmd_dat { + pins-cmd-dat { pinmux = , , , @@ -565,7 +565,7 @@ mediatek,pull-up-adv = <10>; }; - pins_clk { + pins-clk { pinmux = ; input-enable; mediatek,pull-down-adv = <10>; @@ -573,7 +573,7 @@ }; mmc1_pins_uhs: mmc1-pins-uhs { - pins_cmd_dat { + pins-cmd-dat { pinmux = , , , @@ -584,7 +584,7 @@ mediatek,pull-up-adv = <10>; }; - pins_clk { + pins-clk { pinmux = ; drive-strength = ; mediatek,pull-down-adv = <10>; @@ -592,15 +592,15 @@ }; }; - panel_pins_default: panel_pins_default { - panel_reset { + panel_pins_default: panel-pins-default { + panel-reset { pinmux = ; output-low; bias-pull-up; }; }; - pwm0_pin_default: pwm0_pin_default { + pwm0_pin_default: pwm0-pin-default { pins1 { pinmux = ; output-high; @@ -612,14 +612,14 @@ }; scp_pins: scp { - pins_scp_uart { + pins-scp-uart { pinmux = , ; }; }; spi0_pins: spi0 { - pins_spi{ + pins-spi { pinmux = , , , @@ -629,7 +629,7 @@ }; spi1_pins: spi1 { - pins_spi{ + pins-spi { pinmux = , , , @@ -639,20 +639,20 @@ }; spi2_pins: spi2 { - pins_spi{ + pins-spi { pinmux = , , ; bias-disable; }; - pins_spi_mi { + pins-spi-mi { pinmux = ; mediatek,pull-down-adv = <00>; }; }; spi3_pins: spi3 { - pins_spi{ + pins-spi { pinmux = , , , @@ -662,7 +662,7 @@ }; spi4_pins: spi4 { - pins_spi{ + pins-spi { pinmux = , , , @@ -672,7 +672,7 @@ }; spi5_pins: spi5 { - pins_spi{ + pins-spi { pinmux = , , , @@ -682,63 +682,63 @@ }; uart0_pins_default: uart0-pins-default { - pins_rx { + pins-rx { pinmux = ; input-enable; bias-pull-up; }; - pins_tx { + pins-tx { pinmux = ; }; }; uart1_pins_default: uart1-pins-default { - pins_rx { + pins-rx { pinmux = ; input-enable; bias-pull-up; }; - pins_tx { + pins-tx { pinmux = ; }; - pins_rts { + pins-rts { pinmux = ; output-enable; }; - pins_cts { + pins-cts { pinmux = ; input-enable; }; }; uart1_pins_sleep: uart1-pins-sleep { - pins_rx { + pins-rx { pinmux = ; input-enable; bias-pull-up; }; - pins_tx { + pins-tx { pinmux = ; }; - pins_rts { + pins-rts { pinmux = ; output-enable; }; - pins_cts { + pins-cts { pinmux = ; input-enable; }; }; wifi_pins_pwrseq: wifi-pins-pwrseq { - pins_wifi_enable { + pins-wifi-enable { pinmux = ; output-low; }; }; wifi_pins_wakeup: wifi-pins-wakeup { - pins_wifi_wakeup { + pins-wifi-wakeup { pinmux = ; input-enable; }; diff --git a/arch/arm64/boot/dts/mediatek/mt8183-pumpkin.dts b/arch/arm64/boot/dts/mediatek/mt8183-pumpkin.dts index ee912825cfc60..b7f3c266d3dd2 100644 --- a/arch/arm64/boot/dts/mediatek/mt8183-pumpkin.dts +++ b/arch/arm64/boot/dts/mediatek/mt8183-pumpkin.dts @@ -165,7 +165,7 @@ &pio { i2c_pins_0: i2c0 { - pins_i2c{ + pins_i2c { pinmux = , ; mediatek,pull-up-adv = <3>; @@ -174,7 +174,7 @@ }; i2c_pins_1: i2c1 { - pins_i2c{ + pins_i2c { pinmux = , ; mediatek,pull-up-adv = <3>; @@ -183,7 +183,7 @@ }; i2c_pins_2: i2c2 { - pins_i2c{ + pins_i2c { pinmux = , ; mediatek,pull-up-adv = <3>; @@ -192,7 +192,7 @@ }; i2c_pins_3: i2c3 { - pins_i2c{ + pins_i2c { pinmux = , ; mediatek,pull-up-adv = <3>; @@ -201,7 +201,7 @@ }; i2c_pins_4: i2c4 { - pins_i2c{ + pins_i2c { pinmux = , ; mediatek,pull-up-adv = <3>; @@ -210,7 +210,7 @@ }; i2c_pins_5: i2c5 { - pins_i2c{ + pins_i2c { pinmux = , ; mediatek,pull-up-adv = <3>; diff --git a/arch/arm64/boot/dts/mediatek/mt8183.dtsi b/arch/arm64/boot/dts/mediatek/mt8183.dtsi index 81fde34ffd52a..2d33f4a583b48 100644 --- a/arch/arm64/boot/dts/mediatek/mt8183.dtsi +++ b/arch/arm64/boot/dts/mediatek/mt8183.dtsi @@ -766,127 +766,6 @@ nvmem-cell-names = "calibration-data"; }; - thermal_zones: thermal-zones { - cpu_thermal: cpu_thermal { - polling-delay-passive = <100>; - polling-delay = <500>; - thermal-sensors = <&thermal 0>; - sustainable-power = <5000>; - - trips { - threshold: trip-point0 { - temperature = <68000>; - hysteresis = <2000>; - type = "passive"; - }; - - target: trip-point1 { - temperature = <80000>; - hysteresis = <2000>; - type = "passive"; - }; - - cpu_crit: cpu-crit { - temperature = <115000>; - hysteresis = <2000>; - type = "critical"; - }; - }; - - cooling-maps { - map0 { - trip = <&target>; - cooling-device = <&cpu0 - THERMAL_NO_LIMIT - THERMAL_NO_LIMIT>, - <&cpu1 - THERMAL_NO_LIMIT - THERMAL_NO_LIMIT>, - <&cpu2 - THERMAL_NO_LIMIT - THERMAL_NO_LIMIT>, - <&cpu3 - THERMAL_NO_LIMIT - THERMAL_NO_LIMIT>; - contribution = <3072>; - }; - map1 { - trip = <&target>; - cooling-device = <&cpu4 - THERMAL_NO_LIMIT - THERMAL_NO_LIMIT>, - <&cpu5 - THERMAL_NO_LIMIT - THERMAL_NO_LIMIT>, - <&cpu6 - THERMAL_NO_LIMIT - THERMAL_NO_LIMIT>, - <&cpu7 - THERMAL_NO_LIMIT - THERMAL_NO_LIMIT>; - contribution = <1024>; - }; - }; - }; - - /* The tzts1 ~ tzts6 don't need to polling */ - /* The tzts1 ~ tzts6 don't need to thermal throttle */ - - tzts1: tzts1 { - polling-delay-passive = <0>; - polling-delay = <0>; - thermal-sensors = <&thermal 1>; - sustainable-power = <5000>; - trips {}; - cooling-maps {}; - }; - - tzts2: tzts2 { - polling-delay-passive = <0>; - polling-delay = <0>; - thermal-sensors = <&thermal 2>; - sustainable-power = <5000>; - trips {}; - cooling-maps {}; - }; - - tzts3: tzts3 { - polling-delay-passive = <0>; - polling-delay = <0>; - thermal-sensors = <&thermal 3>; - sustainable-power = <5000>; - trips {}; - cooling-maps {}; - }; - - tzts4: tzts4 { - polling-delay-passive = <0>; - polling-delay = <0>; - thermal-sensors = <&thermal 4>; - sustainable-power = <5000>; - trips {}; - cooling-maps {}; - }; - - tzts5: tzts5 { - polling-delay-passive = <0>; - polling-delay = <0>; - thermal-sensors = <&thermal 5>; - sustainable-power = <5000>; - trips {}; - cooling-maps {}; - }; - - tztsABB: tztsABB { - polling-delay-passive = <0>; - polling-delay = <0>; - thermal-sensors = <&thermal 6>; - sustainable-power = <5000>; - trips {}; - cooling-maps {}; - }; - }; - pwm0: pwm@1100e000 { compatible = "mediatek,mt8183-disp-pwm"; reg = <0 0x1100e000 0 0x1000>; @@ -1495,4 +1374,125 @@ power-domains = <&spm MT8183_POWER_DOMAIN_CAM>; }; }; + + thermal_zones: thermal-zones { + cpu_thermal: cpu-thermal { + polling-delay-passive = <100>; + polling-delay = <500>; + thermal-sensors = <&thermal 0>; + sustainable-power = <5000>; + + trips { + threshold: trip-point0 { + temperature = <68000>; + hysteresis = <2000>; + type = "passive"; + }; + + target: trip-point1 { + temperature = <80000>; + hysteresis = <2000>; + type = "passive"; + }; + + cpu_crit: cpu-crit { + temperature = <115000>; + hysteresis = <2000>; + type = "critical"; + }; + }; + + cooling-maps { + map0 { + trip = <&target>; + cooling-device = <&cpu0 + THERMAL_NO_LIMIT + THERMAL_NO_LIMIT>, + <&cpu1 + THERMAL_NO_LIMIT + THERMAL_NO_LIMIT>, + <&cpu2 + THERMAL_NO_LIMIT + THERMAL_NO_LIMIT>, + <&cpu3 + THERMAL_NO_LIMIT + THERMAL_NO_LIMIT>; + contribution = <3072>; + }; + map1 { + trip = <&target>; + cooling-device = <&cpu4 + THERMAL_NO_LIMIT + THERMAL_NO_LIMIT>, + <&cpu5 + THERMAL_NO_LIMIT + THERMAL_NO_LIMIT>, + <&cpu6 + THERMAL_NO_LIMIT + THERMAL_NO_LIMIT>, + <&cpu7 + THERMAL_NO_LIMIT + THERMAL_NO_LIMIT>; + contribution = <1024>; + }; + }; + }; + + /* The tzts1 ~ tzts6 don't need to polling */ + /* The tzts1 ~ tzts6 don't need to thermal throttle */ + + tzts1: tzts1 { + polling-delay-passive = <0>; + polling-delay = <0>; + thermal-sensors = <&thermal 1>; + sustainable-power = <5000>; + trips {}; + cooling-maps {}; + }; + + tzts2: tzts2 { + polling-delay-passive = <0>; + polling-delay = <0>; + thermal-sensors = <&thermal 2>; + sustainable-power = <5000>; + trips {}; + cooling-maps {}; + }; + + tzts3: tzts3 { + polling-delay-passive = <0>; + polling-delay = <0>; + thermal-sensors = <&thermal 3>; + sustainable-power = <5000>; + trips {}; + cooling-maps {}; + }; + + tzts4: tzts4 { + polling-delay-passive = <0>; + polling-delay = <0>; + thermal-sensors = <&thermal 4>; + sustainable-power = <5000>; + trips {}; + cooling-maps {}; + }; + + tzts5: tzts5 { + polling-delay-passive = <0>; + polling-delay = <0>; + thermal-sensors = <&thermal 5>; + sustainable-power = <5000>; + trips {}; + cooling-maps {}; + }; + + tztsABB: tztsABB { + polling-delay-passive = <0>; + polling-delay = <0>; + thermal-sensors = <&thermal 6>; + sustainable-power = <5000>; + trips {}; + cooling-maps {}; + }; + }; }; diff --git a/arch/arm64/boot/dts/qcom/apq8016-sbc.dts b/arch/arm64/boot/dts/qcom/apq8016-sbc.dts index c6e8bf18defc6..0153be6d2a2b1 100644 --- a/arch/arm64/boot/dts/qcom/apq8016-sbc.dts +++ b/arch/arm64/boot/dts/qcom/apq8016-sbc.dts @@ -190,6 +190,9 @@ pd-gpios = <&msmgpio 32 GPIO_ACTIVE_HIGH>; avdd-supply = <&pm8916_l6>; + a2vdd-supply = <&pm8916_l6>; + dvdd-supply = <&pm8916_l6>; + pvdd-supply = <&pm8916_l6>; v1p2-supply = <&pm8916_l6>; v3p3-supply = <&pm8916_l17>; @@ -280,9 +283,9 @@ clock-names = "xclk"; clock-frequency = <23880000>; - vdddo-supply = <&camera_vdddo_1v8>; - vdda-supply = <&camera_vdda_2v8>; - vddd-supply = <&camera_vddd_1v5>; + DOVDD-supply = <&camera_vdddo_1v8>; + AVDD-supply = <&camera_vdda_2v8>; + DVDD-supply = <&camera_vddd_1v5>; /* No camera mezzanine by default */ status = "disabled"; diff --git a/arch/arm64/boot/dts/qcom/ipq6018.dtsi b/arch/arm64/boot/dts/qcom/ipq6018.dtsi index 3ca198f866c3c..dde6fde10f8d3 100644 --- a/arch/arm64/boot/dts/qcom/ipq6018.dtsi +++ b/arch/arm64/boot/dts/qcom/ipq6018.dtsi @@ -129,12 +129,6 @@ }; }; - tcsr_mutex: hwlock { - compatible = "qcom,tcsr-mutex"; - syscon = <&tcsr_mutex_regs 0 0x80>; - #hwlock-cells = <1>; - }; - pmuv8: pmu { compatible = "arm,cortex-a53-pmu"; interrupts = ; - hwlocks = <&tcsr_mutex 0>; + hwlocks = <&tcsr_mutex 3>; }; soc: soc { @@ -253,9 +247,10 @@ #reset-cells = <1>; }; - tcsr_mutex_regs: syscon@1905000 { - compatible = "syscon"; - reg = <0x0 0x01905000 0x0 0x8000>; + tcsr_mutex: hwlock@1905000 { + compatible = "qcom,ipq6018-tcsr-mutex", "qcom,tcsr-mutex"; + reg = <0x0 0x01905000 0x0 0x20000>; + #hwlock-cells = <1>; }; tcsr: syscon@1937000 { diff --git a/arch/arm64/boot/dts/qcom/msm8916.dtsi b/arch/arm64/boot/dts/qcom/msm8916.dtsi index fcc9f757c9e14..668674059d485 100644 --- a/arch/arm64/boot/dts/qcom/msm8916.dtsi +++ b/arch/arm64/boot/dts/qcom/msm8916.dtsi @@ -1233,7 +1233,7 @@ #size-cells = <1>; #iommu-cells = <1>; compatible = "qcom,msm8916-iommu", "qcom,msm-iommu-v1"; - ranges = <0 0x01e20000 0x40000>; + ranges = <0 0x01e20000 0x20000>; reg = <0x01ef0000 0x3000>; clocks = <&gcc GCC_SMMU_CFG_CLK>, <&gcc GCC_APSS_TCU_CLK>; diff --git a/arch/arm64/boot/dts/qcom/msm8992-xiaomi-libra.dts b/arch/arm64/boot/dts/qcom/msm8992-xiaomi-libra.dts index d08659c606b9a..5433ae0c45907 100644 --- a/arch/arm64/boot/dts/qcom/msm8992-xiaomi-libra.dts +++ b/arch/arm64/boot/dts/qcom/msm8992-xiaomi-libra.dts @@ -99,11 +99,6 @@ qcom,client-id = <1>; }; - audio_mem: audio@cb400000 { - reg = <0 0xcb000000 0 0x400000>; - no-mem; - }; - qseecom_mem: qseecom@cb400000 { reg = <0 0xcb400000 0 0x1c00000>; no-mem; diff --git a/arch/arm64/boot/dts/qcom/msm8996-sony-xperia-tone.dtsi b/arch/arm64/boot/dts/qcom/msm8996-sony-xperia-tone.dtsi index 7802abac39fa5..e85f7cf4a56ce 100644 --- a/arch/arm64/boot/dts/qcom/msm8996-sony-xperia-tone.dtsi +++ b/arch/arm64/boot/dts/qcom/msm8996-sony-xperia-tone.dtsi @@ -620,6 +620,7 @@ &pmi8994_wled { status = "okay"; default-brightness = <512>; + qcom,num-strings = <3>; }; &rpm_requests { diff --git a/arch/arm64/boot/dts/qcom/msm8996.dtsi b/arch/arm64/boot/dts/qcom/msm8996.dtsi index ec3ef14048cc0..8a7c651785073 100644 --- a/arch/arm64/boot/dts/qcom/msm8996.dtsi +++ b/arch/arm64/boot/dts/qcom/msm8996.dtsi @@ -2902,6 +2902,9 @@ #size-cells = <1>; ranges; + interrupts = ; + interrupt-names = "hs_phy_irq"; + clocks = <&gcc GCC_PERIPH_NOC_USB20_AHB_CLK>, <&gcc GCC_USB20_MASTER_CLK>, <&gcc GCC_USB20_MOCK_UTMI_CLK>, diff --git a/arch/arm64/boot/dts/qcom/pm660l.dtsi b/arch/arm64/boot/dts/qcom/pm660l.dtsi index 05086cbe573be..902e15d05a95b 100644 --- a/arch/arm64/boot/dts/qcom/pm660l.dtsi +++ b/arch/arm64/boot/dts/qcom/pm660l.dtsi @@ -67,9 +67,10 @@ pm660l_wled: leds@d800 { compatible = "qcom,pm660l-wled"; - reg = <0xd800 0xd900>; - interrupts = <0x3 0xd8 0x1 IRQ_TYPE_EDGE_RISING>; - interrupt-names = "ovp"; + reg = <0xd800>, <0xd900>; + interrupts = <0x3 0xd8 0x1 IRQ_TYPE_EDGE_RISING>, + <0x3 0xd8 0x2 IRQ_TYPE_EDGE_RISING>; + interrupt-names = "ovp", "short"; label = "backlight"; qcom,switching-freq = <800>; diff --git a/arch/arm64/boot/dts/qcom/pmi8994.dtsi b/arch/arm64/boot/dts/qcom/pmi8994.dtsi index a06ea9adae810..38cf0f14e8798 100644 --- a/arch/arm64/boot/dts/qcom/pmi8994.dtsi +++ b/arch/arm64/boot/dts/qcom/pmi8994.dtsi @@ -35,12 +35,10 @@ pmi8994_wled: wled@d800 { compatible = "qcom,pmi8994-wled"; - reg = <0xd800 0xd900>; - interrupts = <3 0xd8 0x02 IRQ_TYPE_EDGE_RISING>; - interrupt-names = "short"; - qcom,num-strings = <3>; - /* Yes, all four strings *have to* be defined or things won't work. */ - qcom,enabled-strings = <0 1 2 3>; + reg = <0xd800>, <0xd900>; + interrupts = <0x3 0xd8 0x1 IRQ_TYPE_EDGE_RISING>, + <0x3 0xd8 0x2 IRQ_TYPE_EDGE_RISING>; + interrupt-names = "ovp", "short"; qcom,cabc; qcom,external-pfet; status = "disabled"; diff --git a/arch/arm64/boot/dts/qcom/pmi8998.dtsi b/arch/arm64/boot/dts/qcom/pmi8998.dtsi index d230c510d4b7d..ef29e80c442c7 100644 --- a/arch/arm64/boot/dts/qcom/pmi8998.dtsi +++ b/arch/arm64/boot/dts/qcom/pmi8998.dtsi @@ -41,5 +41,17 @@ interrupt-names = "sc-err", "ocp"; }; }; + + pmi8998_wled: leds@d800 { + compatible = "qcom,pmi8998-wled"; + reg = <0xd800>, <0xd900>; + interrupts = <0x3 0xd8 0x1 IRQ_TYPE_EDGE_RISING>, + <0x3 0xd8 0x2 IRQ_TYPE_EDGE_RISING>; + interrupt-names = "ovp", "short"; + label = "backlight"; + + status = "disabled"; + }; + }; }; diff --git a/arch/arm64/boot/dts/qcom/pmk8350.dtsi b/arch/arm64/boot/dts/qcom/pmk8350.dtsi index fc38f77d12a36..9e99fcf269dfd 100644 --- a/arch/arm64/boot/dts/qcom/pmk8350.dtsi +++ b/arch/arm64/boot/dts/qcom/pmk8350.dtsi @@ -45,7 +45,7 @@ }; pmk8350_adc_tm: adc-tm@3400 { - compatible = "qcom,adc-tm7"; + compatible = "qcom,spmi-adc-tm5-gen2"; reg = <0x3400>; interrupts = <0x0 0x34 0x0 IRQ_TYPE_EDGE_RISING>; interrupt-names = "threshold"; diff --git a/arch/arm64/boot/dts/qcom/sc7280.dtsi b/arch/arm64/boot/dts/qcom/sc7280.dtsi index fb6473a0aa4b3..dc4aab258ff6f 100644 --- a/arch/arm64/boot/dts/qcom/sc7280.dtsi +++ b/arch/arm64/boot/dts/qcom/sc7280.dtsi @@ -1851,6 +1851,14 @@ reg = <0 0x18591000 0 0x1000>, <0 0x18592000 0 0x1000>, <0 0x18593000 0 0x1000>; + + interrupts = , + , + ; + interrupt-names = "dcvsh-irq-0", + "dcvsh-irq-1", + "dcvsh-irq-2"; + clocks = <&rpmhcc RPMH_CXO_CLK>, <&gcc GCC_GPLL0>; clock-names = "xo", "alternate"; #freq-domain-cells = <1>; diff --git a/arch/arm64/boot/dts/qcom/sdm845-mtp.dts b/arch/arm64/boot/dts/qcom/sdm845-mtp.dts index 52dd7a858231e..cf2fad5bcac1b 100644 --- a/arch/arm64/boot/dts/qcom/sdm845-mtp.dts +++ b/arch/arm64/boot/dts/qcom/sdm845-mtp.dts @@ -572,6 +572,8 @@ vdd-1.8-xo-supply = <&vreg_l7a_1p8>; vdd-1.3-rfa-supply = <&vreg_l17a_1p3>; vdd-3.3-ch0-supply = <&vreg_l25a_3p3>; + + qcom,snoc-host-cap-8bit-quirk; }; /* PINCTRL - additions to nodes defined in sdm845.dtsi */ diff --git a/arch/arm64/boot/dts/qcom/sdm845.dtsi b/arch/arm64/boot/dts/qcom/sdm845.dtsi index a0489a45aafbd..6a0e30cbf88f1 100644 --- a/arch/arm64/boot/dts/qcom/sdm845.dtsi +++ b/arch/arm64/boot/dts/qcom/sdm845.dtsi @@ -1074,6 +1074,7 @@ #clock-cells = <1>; #reset-cells = <1>; #power-domain-cells = <1>; + power-domains = <&rpmhpd SDM845_CX>; }; qfprom@784000 { @@ -2282,7 +2283,7 @@ <0 0>, <0 0>, <0 0>, - <0 300000000>; + <75000000 300000000>; status = "disabled"; }; diff --git a/arch/arm64/boot/dts/qcom/sm6125-sony-xperia-seine-pdx201.dts b/arch/arm64/boot/dts/qcom/sm6125-sony-xperia-seine-pdx201.dts index 47f8e5397ebba..8625fb3a7f0a7 100644 --- a/arch/arm64/boot/dts/qcom/sm6125-sony-xperia-seine-pdx201.dts +++ b/arch/arm64/boot/dts/qcom/sm6125-sony-xperia-seine-pdx201.dts @@ -74,7 +74,7 @@ reg = <0x0 0xffc40000 0x0 0xc0000>; record-size = <0x1000>; console-size = <0x40000>; - msg-size = <0x20000 0x20000>; + pmsg-size = <0x20000>; }; cmdline_mem: memory@ffd00000 { diff --git a/arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano.dtsi b/arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano.dtsi index 04c71f74ab72d..c9aa7764fc59a 100644 --- a/arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano.dtsi +++ b/arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano.dtsi @@ -127,7 +127,7 @@ reg = <0x0 0xffc00000 0x0 0x100000>; record-size = <0x1000>; console-size = <0x40000>; - msg-size = <0x20000 0x20000>; + pmsg-size = <0x20000>; ecc-size = <16>; no-map; }; diff --git a/arch/arm64/boot/dts/qcom/sm8150.dtsi b/arch/arm64/boot/dts/qcom/sm8150.dtsi index 292e40d6162dd..e8cb20c4cbf22 100644 --- a/arch/arm64/boot/dts/qcom/sm8150.dtsi +++ b/arch/arm64/boot/dts/qcom/sm8150.dtsi @@ -1131,7 +1131,7 @@ clocks = <&gcc GCC_QUPV3_WRAP0_S7_CLK>; pinctrl-names = "default"; pinctrl-0 = <&qup_i2c7_default>; - interrupts = ; + interrupts = ; #address-cells = <1>; #size-cells = <0>; status = "disabled"; diff --git a/arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx203.dts b/arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx203.dts index 79afeb07f4a24..792911af1637b 100644 --- a/arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx203.dts +++ b/arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx203.dts @@ -13,3 +13,236 @@ }; /delete-node/ &vreg_l7f_1p8; + +&pm8009_gpios { + gpio-line-names = "NC", /* GPIO_1 */ + "CAM_PWR_LD_EN", + "WIDEC_PWR_EN", + "NC"; +}; + +&pm8150_gpios { + gpio-line-names = "VOL_DOWN_N", /* GPIO_1 */ + "OPTION_2", + "NC", + "PM_SLP_CLK_IN", + "OPTION_1", + "NC", + "NC", + "SP_ARI_PWR_ALARM", + "NC", + "NC"; /* GPIO_10 */ +}; + +&pm8150b_gpios { + gpio-line-names = "SNAPSHOT_N", /* GPIO_1 */ + "FOCUS_N", + "NC", + "NC", + "RF_LCD_ID_EN", + "NC", + "NC", + "LCD_ID", + "NC", + "WLC_EN_N", /* GPIO_10 */ + "NC", + "RF_ID"; +}; + +&pm8150l_gpios { + gpio-line-names = "NC", /* GPIO_1 */ + "PM3003A_EN", + "NC", + "NC", + "NC", + "AUX2_THERM", + "BB_HP_EN", + "FP_LDO_EN", + "PMX_RESET_N", + "AUX3_THERM", /* GPIO_10 */ + "DTV_PWR_EN", + "PM3003A_MODE"; +}; + +&tlmm { + gpio-line-names = "AP_CTI_IN", /* GPIO_0 */ + "MDM2AP_ERR_FATAL", + "AP_CTI_OUT", + "MDM2AP_STATUS", + "NFC_I2C_SDA", + "NFC_I2C_SCL", + "NFC_EN", + "NFC_CLK_REQ", + "NFC_ESE_PWR_REQ", + "DVDT_WRT_DET_AND", + "SPK_AMP_RESET_N", /* GPIO_10 */ + "SPK_AMP_INT_N", + "APPS_I2C_1_SDA", + "APPS_I2C_1_SCL", + "NC", + "TX_GTR_THRES_IN", + "HST_BT_UART_CTS", + "HST_BT_UART_RFR", + "HST_BT_UART_TX", + "HST_BT_UART_RX", + "HST_WLAN_EN", /* GPIO_20 */ + "HST_BT_EN", + "RGBC_IR_PWR_EN", + "FP_INT_N", + "NC", + "NC", + "NC", + "NC", + "NFC_ESE_SPI_MISO", + "NFC_ESE_SPI_MOSI", + "NFC_ESE_SPI_SCLK", /* GPIO_30 */ + "NFC_ESE_SPI_CS_N", + "WCD_RST_N", + "NC", + "SDM_DEBUG_UART_TX", + "SDM_DEBUG_UART_RX", + "TS_I2C_SDA", + "TS_I2C_SCL", + "TS_INT_N", + "FP_SPI_MISO", /* GPIO_40 */ + "FP_SPI_MOSI", + "FP_SPI_SCLK", + "FP_SPI_CS_N", + "APPS_I2C_0_SDA", + "APPS_I2C_0_SCL", + "DISP_ERR_FG", + "UIM2_DETECT_EN", + "NC", + "NC", + "NC", /* GPIO_50 */ + "NC", + "MDM_UART_CTS", + "MDM_UART_RFR", + "MDM_UART_TX", + "MDM_UART_RX", + "AP2MDM_STATUS", + "AP2MDM_ERR_FATAL", + "MDM_IPC_HS_UART_TX", + "MDM_IPC_HS_UART_RX", + "NC", /* GPIO_60 */ + "NC", + "NC", + "NC", + "NC", + "USB_CC_DIR", + "DISP_VSYNC", + "NC", + "NC", + "CAM_PWR_B_CS", + "NC", /* GPIO_70 */ + "CAM_PWR_A_CS", + "SBU_SW_SEL", + "SBU_SW_OE", + "FP_RESET_N", + "FP_RESET_N", + "DISP_RESET_N", + "DEBUG_GPIO0", + "TRAY_DET", + "CAM2_RST_N", + "PCIE0_RST_N", + "PCIE0_CLK_REQ_N", /* GPIO_80 */ + "PCIE0_WAKE_N", + "DVDT_ENABLE", + "DVDT_WRT_DET_OR", + "NC", + "PCIE2_RST_N", + "PCIE2_CLK_REQ_N", + "PCIE2_WAKE_N", + "MDM_VFR_IRQ0", + "MDM_VFR_IRQ1", + "SW_SERVICE", /* GPIO_90 */ + "CAM_SOF", + "CAM1_RST_N", + "CAM0_RST_N", + "CAM0_MCLK", + "CAM1_MCLK", + "CAM2_MCLK", + "CAM3_MCLK", + "CAM4_MCLK", + "TOF_RST_N", + "NC", /* GPIO_100 */ + "CCI0_I2C_SDA", + "CCI0_I2C_SCL", + "CCI1_I2C_SDA", + "CCI1_I2C_SCL_", + "CCI2_I2C_SDA", + "CCI2_I2C_SCL", + "CCI3_I2C_SDA", + "CCI3_I2C_SCL", + "CAM3_RST_N", + "NFC_DWL_REQ", /* GPIO_110 */ + "NFC_IRQ", + "XVS", + "NC", + "RF_ID_EXTENSION", + "SPK_AMP_I2C_SDA", + "SPK_AMP_I2C_SCL", + "NC", + "NC", + "WLC_I2C_SDA", + "WLC_I2C_SCL", /* GPIO_120 */ + "ACC_COVER_OPEN", + "ALS_PROX_INT_N", + "ACCEL_INT", + "WLAN_SW_CTRL", + "CAMSENSOR_I2C_SDA", + "CAMSENSOR_I2C_SCL", + "UDON_SWITCH_SEL", + "WDOG_DISABLE", + "BAROMETER_INT", + "NC", /* GPIO_130 */ + "NC", + "FORCED_USB_BOOT", + "NC", + "NC", + "WLC_INT_N", + "NC", + "NC", + "RGBC_IR_INT", + "NC", + "NC", /* GPIO_140 */ + "NC", + "BT_SLIMBUS_CLK", + "BT_SLIMBUS_DATA", + "HW_ID_0", + "HW_ID_1", + "WCD_SWR_TX_CLK", + "WCD_SWR_TX_DATA0", + "WCD_SWR_TX_DATA1", + "WCD_SWR_RX_CLK", + "WCD_SWR_RX_DATA0", /* GPIO_150 */ + "WCD_SWR_RX_DATA1", + "SDM_DMIC_CLK1", + "SDM_DMIC_DATA1", + "SDM_DMIC_CLK2", + "SDM_DMIC_DATA2", + "SPK_AMP_I2S_CLK", + "SPK_AMP_I2S_WS", + "SPK_AMP_I2S_ASP_DIN", + "SPK_AMP_I2S_ASP_DOUT", + "COMPASS_I2C_SDA", /* GPIO_160 */ + "COMPASS_I2C_SCL", + "NC", + "NC", + "SSC_SPI_1_MISO", + "SSC_SPI_1_MOSI", + "SSC_SPI_1_CLK", + "SSC_SPI_1_CS_N", + "NC", + "NC", + "SSC_SENSOR_I2C_SDA", /* GPIO_170 */ + "SSC_SENSOR_I2C_SCL", + "NC", + "NC", + "NC", + "NC", + "HST_BLE_SNS_UART6_TX", + "HST_BLE_SNS_UART6_RX", + "HST_WLAN_UART_TX", + "HST_WLAN_UART_RX"; +}; diff --git a/arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx206.dts b/arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx206.dts index 16c96e8385348..b0f4ecc911144 100644 --- a/arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx206.dts +++ b/arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx206.dts @@ -19,6 +19,8 @@ }; &gpio_keys { + pinctrl-0 = <&focus_n &snapshot_n &vol_down_n &g_assist_n>; + g-assist-key { label = "Google Assistant Key"; linux,code = ; @@ -29,6 +31,247 @@ }; }; +&pm8009_gpios { + gpio-line-names = "NC", /* GPIO_1 */ + "NC", + "WIDEC_PWR_EN", + "NC"; +}; + +&pm8150_gpios { + gpio-line-names = "VOL_DOWN_N", /* GPIO_1 */ + "OPTION_2", + "NC", + "PM_SLP_CLK_IN", + "OPTION_1", + "G_ASSIST_N", + "NC", + "SP_ARI_PWR_ALARM", + "NC", + "NC"; /* GPIO_10 */ + + g_assist_n: g-assist-n-state { + pins = "gpio6"; + function = "normal"; + power-source = <1>; + bias-pull-up; + input-enable; + }; +}; + +&pm8150b_gpios { + gpio-line-names = "SNAPSHOT_N", /* GPIO_1 */ + "FOCUS_N", + "NC", + "NC", + "RF_LCD_ID_EN", + "NC", + "NC", + "LCD_ID", + "NC", + "NC", /* GPIO_10 */ + "NC", + "RF_ID"; +}; + +&pm8150l_gpios { + gpio-line-names = "NC", /* GPIO_1 */ + "PM3003A_EN", + "NC", + "NC", + "NC", + "AUX2_THERM", + "BB_HP_EN", + "FP_LDO_EN", + "PMX_RESET_N", + "NC", /* GPIO_10 */ + "NC", + "PM3003A_MODE"; +}; + +&tlmm { + gpio-line-names = "AP_CTI_IN", /* GPIO_0 */ + "MDM2AP_ERR_FATAL", + "AP_CTI_OUT", + "MDM2AP_STATUS", + "NFC_I2C_SDA", + "NFC_I2C_SCL", + "NFC_EN", + "NFC_CLK_REQ", + "NFC_ESE_PWR_REQ", + "DVDT_WRT_DET_AND", + "SPK_AMP_RESET_N", /* GPIO_10 */ + "SPK_AMP_INT_N", + "APPS_I2C_1_SDA", + "APPS_I2C_1_SCL", + "NC", + "TX_GTR_THRES_IN", + "HST_BT_UART_CTS", + "HST_BT_UART_RFR", + "HST_BT_UART_TX", + "HST_BT_UART_RX", + "HST_WLAN_EN", /* GPIO_20 */ + "HST_BT_EN", + "RGBC_IR_PWR_EN", + "FP_INT_N", + "NC", + "NC", + "NC", + "NC", + "NFC_ESE_SPI_MISO", + "NFC_ESE_SPI_MOSI", + "NFC_ESE_SPI_SCLK", /* GPIO_30 */ + "NFC_ESE_SPI_CS_N", + "WCD_RST_N", + "NC", + "SDM_DEBUG_UART_TX", + "SDM_DEBUG_UART_RX", + "TS_I2C_SDA", + "TS_I2C_SCL", + "TS_INT_N", + "FP_SPI_MISO", /* GPIO_40 */ + "FP_SPI_MOSI", + "FP_SPI_SCLK", + "FP_SPI_CS_N", + "APPS_I2C_0_SDA", + "APPS_I2C_0_SCL", + "DISP_ERR_FG", + "UIM2_DETECT_EN", + "NC", + "NC", + "NC", /* GPIO_50 */ + "NC", + "MDM_UART_CTS", + "MDM_UART_RFR", + "MDM_UART_TX", + "MDM_UART_RX", + "AP2MDM_STATUS", + "AP2MDM_ERR_FATAL", + "MDM_IPC_HS_UART_TX", + "MDM_IPC_HS_UART_RX", + "NC", /* GPIO_60 */ + "NC", + "NC", + "NC", + "NC", + "USB_CC_DIR", + "DISP_VSYNC", + "NC", + "NC", + "CAM_PWR_B_CS", + "NC", /* GPIO_70 */ + "FRONTC_PWR_EN", + "SBU_SW_SEL", + "SBU_SW_OE", + "FP_RESET_N", + "FP_RESET_N", + "DISP_RESET_N", + "DEBUG_GPIO0", + "TRAY_DET", + "CAM2_RST_N", + "PCIE0_RST_N", + "PCIE0_CLK_REQ_N", /* GPIO_80 */ + "PCIE0_WAKE_N", + "DVDT_ENABLE", + "DVDT_WRT_DET_OR", + "NC", + "PCIE2_RST_N", + "PCIE2_CLK_REQ_N", + "PCIE2_WAKE_N", + "MDM_VFR_IRQ0", + "MDM_VFR_IRQ1", + "SW_SERVICE", /* GPIO_90 */ + "CAM_SOF", + "CAM1_RST_N", + "CAM0_RST_N", + "CAM0_MCLK", + "CAM1_MCLK", + "CAM2_MCLK", + "CAM3_MCLK", + "NC", + "NC", + "NC", /* GPIO_100 */ + "CCI0_I2C_SDA", + "CCI0_I2C_SCL", + "CCI1_I2C_SDA", + "CCI1_I2C_SCL_", + "CCI2_I2C_SDA", + "CCI2_I2C_SCL", + "CCI3_I2C_SDA", + "CCI3_I2C_SCL", + "CAM3_RST_N", + "NFC_DWL_REQ", /* GPIO_110 */ + "NFC_IRQ", + "XVS", + "NC", + "RF_ID_EXTENSION", + "SPK_AMP_I2C_SDA", + "SPK_AMP_I2C_SCL", + "NC", + "NC", + "NC", + "NC", + "ACC_COVER_OPEN", + "ALS_PROX_INT_N", + "ACCEL_INT", + "WLAN_SW_CTRL", + "CAMSENSOR_I2C_SDA", + "CAMSENSOR_I2C_SCL", + "UDON_SWITCH_SEL", + "WDOG_DISABLE", + "BAROMETER_INT", + "NC", /* GPIO_130 */ + "NC", + "FORCED_USB_BOOT", + "NC", + "NC", + "NC", + "NC", + "NC", + "RGBC_IR_INT", + "NC", + "NC", /* GPIO_140 */ + "NC", + "BT_SLIMBUS_CLK", + "BT_SLIMBUS_DATA", + "HW_ID_0", + "HW_ID_1", + "WCD_SWR_TX_CLK", + "WCD_SWR_TX_DATA0", + "WCD_SWR_TX_DATA1", + "WCD_SWR_RX_CLK", + "WCD_SWR_RX_DATA0", /* GPIO_150 */ + "WCD_SWR_RX_DATA1", + "SDM_DMIC_CLK1", + "SDM_DMIC_DATA1", + "SDM_DMIC_CLK2", + "SDM_DMIC_DATA2", + "SPK_AMP_I2S_CLK", + "SPK_AMP_I2S_WS", + "SPK_AMP_I2S_ASP_DIN", + "SPK_AMP_I2S_ASP_DOUT", + "COMPASS_I2C_SDA", /* GPIO_160 */ + "COMPASS_I2C_SCL", + "NC", + "NC", + "SSC_SPI_1_MISO", + "SSC_SPI_1_MOSI", + "SSC_SPI_1_CLK", + "SSC_SPI_1_CS_N", + "NC", + "NC", + "SSC_SENSOR_I2C_SDA", /* GPIO_170 */ + "SSC_SENSOR_I2C_SCL", + "NC", + "NC", + "NC", + "NC", + "HST_BLE_SNS_UART6_TX", + "HST_BLE_SNS_UART6_RX", + "HST_WLAN_UART_TX", + "HST_WLAN_UART_RX"; +}; + &vreg_l2f_1p3 { regulator-min-microvolt = <1200000>; regulator-max-microvolt = <1200000>; diff --git a/arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo.dtsi b/arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo.dtsi index b093f2a02a9cb..aeec0b6a1d7d2 100644 --- a/arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo.dtsi +++ b/arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo.dtsi @@ -51,12 +51,26 @@ gpio_keys: gpio-keys { compatible = "gpio-keys"; - /* - * Camera focus (light press) and camera snapshot (full press) - * seem not to work properly.. Adding the former one stalls the CPU - * and the latter kills the volume down key for whatever reason. In any - * case, they are both on &pm8150b_gpios: camera focus(2), camera snapshot(1). - */ + pinctrl-0 = <&focus_n &snapshot_n &vol_down_n>; + pinctrl-names = "default"; + + key-camera-focus { + label = "Camera Focus"; + linux,code = ; + gpios = <&pm8150b_gpios 2 GPIO_ACTIVE_LOW>; + debounce-interval = <15>; + linux,can-disable; + wakeup-source; + }; + + key-camera-snapshot { + label = "Camera Snapshot"; + linux,code = ; + gpios = <&pm8150b_gpios 1 GPIO_ACTIVE_LOW>; + debounce-interval = <15>; + linux,can-disable; + wakeup-source; + }; vol-down { label = "Volume Down"; @@ -112,7 +126,7 @@ reg = <0x0 0xffc00000 0x0 0x100000>; record-size = <0x1000>; console-size = <0x40000>; - msg-size = <0x20000 0x20000>; + pmsg-size = <0x20000>; ecc-size = <16>; no-map; }; @@ -518,6 +532,34 @@ vdda-pll-supply = <&vreg_l9a_1p2>; }; +&pm8150_gpios { + vol_down_n: vol-down-n-state { + pins = "gpio1"; + function = "normal"; + power-source = <0>; + bias-pull-up; + input-enable; + }; +}; + +&pm8150b_gpios { + snapshot_n: snapshot-n-state { + pins = "gpio1"; + function = "normal"; + power-source = <0>; + bias-pull-up; + input-enable; + }; + + focus_n: focus-n-state { + pins = "gpio2"; + function = "normal"; + power-source = <0>; + bias-pull-up; + input-enable; + }; +}; + &pon_pwrkey { status = "okay"; }; diff --git a/arch/arm64/boot/dts/qcom/sm8250.dtsi b/arch/arm64/boot/dts/qcom/sm8250.dtsi index 181e32b8a2728..5d6551e1fcd8d 100644 --- a/arch/arm64/boot/dts/qcom/sm8250.dtsi +++ b/arch/arm64/boot/dts/qcom/sm8250.dtsi @@ -97,7 +97,7 @@ reg = <0x0 0x0>; enable-method = "psci"; capacity-dmips-mhz = <448>; - dynamic-power-coefficient = <205>; + dynamic-power-coefficient = <105>; next-level-cache = <&L2_0>; qcom,freq-domain = <&cpufreq_hw 0>; #cooling-cells = <2>; @@ -116,7 +116,7 @@ reg = <0x0 0x100>; enable-method = "psci"; capacity-dmips-mhz = <448>; - dynamic-power-coefficient = <205>; + dynamic-power-coefficient = <105>; next-level-cache = <&L2_100>; qcom,freq-domain = <&cpufreq_hw 0>; #cooling-cells = <2>; @@ -132,7 +132,7 @@ reg = <0x0 0x200>; enable-method = "psci"; capacity-dmips-mhz = <448>; - dynamic-power-coefficient = <205>; + dynamic-power-coefficient = <105>; next-level-cache = <&L2_200>; qcom,freq-domain = <&cpufreq_hw 0>; #cooling-cells = <2>; @@ -148,7 +148,7 @@ reg = <0x0 0x300>; enable-method = "psci"; capacity-dmips-mhz = <448>; - dynamic-power-coefficient = <205>; + dynamic-power-coefficient = <105>; next-level-cache = <&L2_300>; qcom,freq-domain = <&cpufreq_hw 0>; #cooling-cells = <2>; @@ -1439,6 +1439,7 @@ pinctrl-names = "default"; pinctrl-0 = <&pcie0_default_state>; + dma-coherent; status = "disabled"; }; @@ -1545,6 +1546,7 @@ pinctrl-names = "default"; pinctrl-0 = <&pcie1_default_state>; + dma-coherent; status = "disabled"; }; @@ -1653,6 +1655,7 @@ pinctrl-names = "default"; pinctrl-0 = <&pcie2_default_state>; + dma-coherent; status = "disabled"; }; diff --git a/arch/arm64/boot/dts/qcom/sm8350.dtsi b/arch/arm64/boot/dts/qcom/sm8350.dtsi index 1ef16975d13a1..b0ba63b5869d2 100644 --- a/arch/arm64/boot/dts/qcom/sm8350.dtsi +++ b/arch/arm64/boot/dts/qcom/sm8350.dtsi @@ -61,7 +61,7 @@ CPU0: cpu@0 { device_type = "cpu"; - compatible = "qcom,kryo685"; + compatible = "arm,cortex-a55"; reg = <0x0 0x0>; enable-method = "psci"; next-level-cache = <&L2_0>; @@ -78,7 +78,7 @@ CPU1: cpu@100 { device_type = "cpu"; - compatible = "qcom,kryo685"; + compatible = "arm,cortex-a55"; reg = <0x0 0x100>; enable-method = "psci"; next-level-cache = <&L2_100>; @@ -92,7 +92,7 @@ CPU2: cpu@200 { device_type = "cpu"; - compatible = "qcom,kryo685"; + compatible = "arm,cortex-a55"; reg = <0x0 0x200>; enable-method = "psci"; next-level-cache = <&L2_200>; @@ -106,7 +106,7 @@ CPU3: cpu@300 { device_type = "cpu"; - compatible = "qcom,kryo685"; + compatible = "arm,cortex-a55"; reg = <0x0 0x300>; enable-method = "psci"; next-level-cache = <&L2_300>; @@ -120,7 +120,7 @@ CPU4: cpu@400 { device_type = "cpu"; - compatible = "qcom,kryo685"; + compatible = "arm,cortex-a78"; reg = <0x0 0x400>; enable-method = "psci"; next-level-cache = <&L2_400>; @@ -134,7 +134,7 @@ CPU5: cpu@500 { device_type = "cpu"; - compatible = "qcom,kryo685"; + compatible = "arm,cortex-a78"; reg = <0x0 0x500>; enable-method = "psci"; next-level-cache = <&L2_500>; @@ -149,7 +149,7 @@ CPU6: cpu@600 { device_type = "cpu"; - compatible = "qcom,kryo685"; + compatible = "arm,cortex-a78"; reg = <0x0 0x600>; enable-method = "psci"; next-level-cache = <&L2_600>; @@ -163,7 +163,7 @@ CPU7: cpu@700 { device_type = "cpu"; - compatible = "qcom,kryo685"; + compatible = "arm,cortex-x1"; reg = <0x0 0x700>; enable-method = "psci"; next-level-cache = <&L2_700>; @@ -1052,6 +1052,13 @@ <0 0x18593000 0 0x1000>; reg-names = "freq-domain0", "freq-domain1", "freq-domain2"; + interrupts = , + , + ; + interrupt-names = "dcvsh-irq-0", + "dcvsh-irq-1", + "dcvsh-irq-2"; + clocks = <&rpmhcc RPMH_CXO_CLK>, <&gcc GCC_GPLL0>; clock-names = "xo", "alternate"; diff --git a/arch/arm64/boot/dts/rockchip/rk3399.dtsi b/arch/arm64/boot/dts/rockchip/rk3399.dtsi index 4255e2d7a72fc..9e33f0e6ed504 100644 --- a/arch/arm64/boot/dts/rockchip/rk3399.dtsi +++ b/arch/arm64/boot/dts/rockchip/rk3399.dtsi @@ -993,7 +993,9 @@ power-domain@RK3399_PD_VDU { reg = ; clocks = <&cru ACLK_VDU>, - <&cru HCLK_VDU>; + <&cru HCLK_VDU>, + <&cru SCLK_VDU_CA>, + <&cru SCLK_VDU_CORE>; pm_qos = <&qos_video_m1_r>, <&qos_video_m1_w>; #power-domain-cells = <0>; @@ -1260,7 +1262,7 @@ vdec: video-codec@ff660000 { compatible = "rockchip,rk3399-vdec"; - reg = <0x0 0xff660000 0x0 0x400>; + reg = <0x0 0xff660000 0x0 0x480>; interrupts = ; clocks = <&cru ACLK_VDU>, <&cru HCLK_VDU>, <&cru SCLK_VDU_CA>, <&cru SCLK_VDU_CORE>; diff --git a/arch/arm64/include/asm/arch_timer.h b/arch/arm64/include/asm/arch_timer.h index 88d20f04c64a5..519ac1f7f8590 100644 --- a/arch/arm64/include/asm/arch_timer.h +++ b/arch/arm64/include/asm/arch_timer.h @@ -32,7 +32,7 @@ ({ \ const struct arch_timer_erratum_workaround *__wa; \ __wa = __this_cpu_read(timer_unstable_counter_workaround); \ - (__wa && __wa->h) ? __wa->h : arch_timer_##h; \ + (__wa && __wa->h) ? ({ isb(); __wa->h;}) : arch_timer_##h; \ }) #else @@ -52,8 +52,6 @@ struct arch_timer_erratum_workaround { enum arch_timer_erratum_match_type match_type; const void *id; const char *desc; - u32 (*read_cntp_tval_el0)(void); - u32 (*read_cntv_tval_el0)(void); u64 (*read_cntpct_el0)(void); u64 (*read_cntvct_el0)(void); int (*set_next_event_phys)(unsigned long, struct clock_event_device *); @@ -64,24 +62,15 @@ struct arch_timer_erratum_workaround { DECLARE_PER_CPU(const struct arch_timer_erratum_workaround *, timer_unstable_counter_workaround); -/* inline sysreg accessors that make erratum_handler() work */ -static inline notrace u32 arch_timer_read_cntp_tval_el0(void) -{ - return read_sysreg(cntp_tval_el0); -} - -static inline notrace u32 arch_timer_read_cntv_tval_el0(void) -{ - return read_sysreg(cntv_tval_el0); -} - static inline notrace u64 arch_timer_read_cntpct_el0(void) { + isb(); return read_sysreg(cntpct_el0); } static inline notrace u64 arch_timer_read_cntvct_el0(void) { + isb(); return read_sysreg(cntvct_el0); } @@ -102,51 +91,58 @@ static inline notrace u64 arch_timer_read_cntvct_el0(void) * the code. */ static __always_inline -void arch_timer_reg_write_cp15(int access, enum arch_timer_reg reg, u32 val) +void arch_timer_reg_write_cp15(int access, enum arch_timer_reg reg, u64 val) { if (access == ARCH_TIMER_PHYS_ACCESS) { switch (reg) { case ARCH_TIMER_REG_CTRL: write_sysreg(val, cntp_ctl_el0); + isb(); break; - case ARCH_TIMER_REG_TVAL: - write_sysreg(val, cntp_tval_el0); + case ARCH_TIMER_REG_CVAL: + write_sysreg(val, cntp_cval_el0); break; + default: + BUILD_BUG(); } } else if (access == ARCH_TIMER_VIRT_ACCESS) { switch (reg) { case ARCH_TIMER_REG_CTRL: write_sysreg(val, cntv_ctl_el0); + isb(); break; - case ARCH_TIMER_REG_TVAL: - write_sysreg(val, cntv_tval_el0); + case ARCH_TIMER_REG_CVAL: + write_sysreg(val, cntv_cval_el0); break; + default: + BUILD_BUG(); } + } else { + BUILD_BUG(); } - - isb(); } static __always_inline -u32 arch_timer_reg_read_cp15(int access, enum arch_timer_reg reg) +u64 arch_timer_reg_read_cp15(int access, enum arch_timer_reg reg) { if (access == ARCH_TIMER_PHYS_ACCESS) { switch (reg) { case ARCH_TIMER_REG_CTRL: return read_sysreg(cntp_ctl_el0); - case ARCH_TIMER_REG_TVAL: - return arch_timer_reg_read_stable(cntp_tval_el0); + default: + BUILD_BUG(); } } else if (access == ARCH_TIMER_VIRT_ACCESS) { switch (reg) { case ARCH_TIMER_REG_CTRL: return read_sysreg(cntv_ctl_el0); - case ARCH_TIMER_REG_TVAL: - return arch_timer_reg_read_stable(cntv_tval_el0); + default: + BUILD_BUG(); } } - BUG(); + BUILD_BUG(); + unreachable(); } static inline u32 arch_timer_get_cntfrq(void) @@ -169,7 +165,6 @@ static __always_inline u64 __arch_counter_get_cntpct_stable(void) { u64 cnt; - isb(); cnt = arch_timer_reg_read_stable(cntpct_el0); arch_counter_enforce_ordering(cnt); return cnt; @@ -189,7 +184,6 @@ static __always_inline u64 __arch_counter_get_cntvct_stable(void) { u64 cnt; - isb(); cnt = arch_timer_reg_read_stable(cntvct_el0); arch_counter_enforce_ordering(cnt); return cnt; diff --git a/arch/arm64/include/asm/cpufeature.h b/arch/arm64/include/asm/cpufeature.h index a77b5f49b3a6c..5df2188f8839e 100644 --- a/arch/arm64/include/asm/cpufeature.h +++ b/arch/arm64/include/asm/cpufeature.h @@ -808,7 +808,8 @@ static inline bool system_supports_tlb_range(void) cpus_have_const_cap(ARM64_HAS_TLB_RANGE); } -extern int do_emulate_mrs(struct pt_regs *regs, u32 sys_reg, u32 rt); +int do_emulate_mrs(struct pt_regs *regs, u32 sys_reg, u32 rt); +bool try_emulate_mrs(struct pt_regs *regs, u32 isn); static inline u32 id_aa64mmfr0_parange_to_phys_shift(int parange) { @@ -839,7 +840,11 @@ static inline bool cpu_has_hw_af(void) if (!IS_ENABLED(CONFIG_ARM64_HW_AFDBM)) return false; - mmfr1 = read_cpuid(ID_AA64MMFR1_EL1); + /* + * Use cached version to avoid emulated msr operation on KVM + * guests. + */ + mmfr1 = read_sanitised_ftr_reg(SYS_ID_AA64MMFR1_EL1); return cpuid_feature_extract_unsigned_field(mmfr1, ID_AA64MMFR1_HADBS_SHIFT); } diff --git a/arch/arm64/include/asm/cputype.h b/arch/arm64/include/asm/cputype.h index 9cf5d9551e991..c2a1ccd5fd468 100644 --- a/arch/arm64/include/asm/cputype.h +++ b/arch/arm64/include/asm/cputype.h @@ -79,6 +79,7 @@ #define ARM_CPU_PART_CORTEX_A78AE 0xD42 #define ARM_CPU_PART_CORTEX_X1 0xD44 #define ARM_CPU_PART_CORTEX_A510 0xD46 +#define ARM_CPU_PART_CORTEX_A520 0xD80 #define ARM_CPU_PART_CORTEX_A710 0xD47 #define ARM_CPU_PART_CORTEX_X2 0xD48 #define ARM_CPU_PART_NEOVERSE_N2 0xD49 @@ -130,6 +131,7 @@ #define MIDR_CORTEX_A78AE MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A78AE) #define MIDR_CORTEX_X1 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_X1) #define MIDR_CORTEX_A510 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A510) +#define MIDR_CORTEX_A520 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A520) #define MIDR_CORTEX_A710 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A710) #define MIDR_CORTEX_X2 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_X2) #define MIDR_NEOVERSE_N2 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_NEOVERSE_N2) diff --git a/arch/arm64/include/asm/exception.h b/arch/arm64/include/asm/exception.h index 0e6535aa78c2f..515ebe24fd44f 100644 --- a/arch/arm64/include/asm/exception.h +++ b/arch/arm64/include/asm/exception.h @@ -58,20 +58,23 @@ asmlinkage void call_on_irq_stack(struct pt_regs *regs, asmlinkage void asm_exit_to_user_mode(struct pt_regs *regs); void do_mem_abort(unsigned long far, unsigned long esr, struct pt_regs *regs); -void do_undefinstr(struct pt_regs *regs); -void do_bti(struct pt_regs *regs); +void do_el0_undef(struct pt_regs *regs, unsigned long esr); +void do_el1_undef(struct pt_regs *regs, unsigned long esr); +void do_el0_bti(struct pt_regs *regs); +void do_el1_bti(struct pt_regs *regs, unsigned long esr); void do_debug_exception(unsigned long addr_if_watchpoint, unsigned long esr, struct pt_regs *regs); void do_fpsimd_acc(unsigned long esr, struct pt_regs *regs); void do_sve_acc(unsigned long esr, struct pt_regs *regs); void do_fpsimd_exc(unsigned long esr, struct pt_regs *regs); -void do_sysinstr(unsigned long esr, struct pt_regs *regs); +void do_el0_sys(unsigned long esr, struct pt_regs *regs); void do_sp_pc_abort(unsigned long addr, unsigned long esr, struct pt_regs *regs); void bad_el0_sync(struct pt_regs *regs, int reason, unsigned long esr); -void do_cp15instr(unsigned long esr, struct pt_regs *regs); +void do_el0_cp15(unsigned long esr, struct pt_regs *regs); void do_el0_svc(struct pt_regs *regs); void do_el0_svc_compat(struct pt_regs *regs); -void do_ptrauth_fault(struct pt_regs *regs, unsigned long esr); +void do_el0_fpac(struct pt_regs *regs, unsigned long esr); +void do_el1_fpac(struct pt_regs *regs, unsigned long esr); void do_serror(struct pt_regs *regs, unsigned long esr); void do_notify_resume(struct pt_regs *regs, unsigned long thread_flags); diff --git a/arch/arm64/include/asm/hyperv-tlfs.h b/arch/arm64/include/asm/hyperv-tlfs.h index 4d964a7f02eeb..bc6c7ac934a1a 100644 --- a/arch/arm64/include/asm/hyperv-tlfs.h +++ b/arch/arm64/include/asm/hyperv-tlfs.h @@ -64,6 +64,15 @@ #define HV_REGISTER_STIMER0_CONFIG 0x000B0000 #define HV_REGISTER_STIMER0_COUNT 0x000B0001 +union hv_msi_entry { + u64 as_uint64[2]; + struct { + u64 address; + u32 data; + u32 reserved; + } __packed; +}; + #include #endif diff --git a/arch/arm64/include/asm/sdei.h b/arch/arm64/include/asm/sdei.h index 7bea1d705dd64..6bb0258fb4aa1 100644 --- a/arch/arm64/include/asm/sdei.h +++ b/arch/arm64/include/asm/sdei.h @@ -17,6 +17,9 @@ #include +DECLARE_PER_CPU(struct sdei_registered_event *, sdei_active_normal_event); +DECLARE_PER_CPU(struct sdei_registered_event *, sdei_active_critical_event); + extern unsigned long sdei_exit_mode; /* Software Delegated Exception entry point from firmware*/ @@ -29,6 +32,9 @@ asmlinkage void __sdei_asm_entry_trampoline(unsigned long event_num, unsigned long pc, unsigned long pstate); +/* Abort a running handler. Context is discarded. */ +void __sdei_handler_abort(void); + /* * The above entry point does the minimum to call C code. This function does * anything else, before calling the driver. diff --git a/arch/arm64/include/asm/spectre.h b/arch/arm64/include/asm/spectre.h index aa3d3607d5c8d..db7b371b367c0 100644 --- a/arch/arm64/include/asm/spectre.h +++ b/arch/arm64/include/asm/spectre.h @@ -26,6 +26,7 @@ enum mitigation_state { SPECTRE_VULNERABLE, }; +struct pt_regs; struct task_struct; /* @@ -98,5 +99,6 @@ enum mitigation_state arm64_get_spectre_bhb_state(void); bool is_spectre_bhb_affected(const struct arm64_cpu_capabilities *entry, int scope); u8 spectre_bhb_loop_affected(int scope); void spectre_bhb_enable_mitigation(const struct arm64_cpu_capabilities *__unused); +bool try_emulate_el1_ssbs(struct pt_regs *regs, u32 instr); #endif /* __ASSEMBLY__ */ #endif /* __ASM_SPECTRE_H */ diff --git a/arch/arm64/include/asm/system_misc.h b/arch/arm64/include/asm/system_misc.h index 0eb7709422e29..c343442567625 100644 --- a/arch/arm64/include/asm/system_misc.h +++ b/arch/arm64/include/asm/system_misc.h @@ -18,7 +18,7 @@ struct pt_regs; -void die(const char *msg, struct pt_regs *regs, int err); +void die(const char *msg, struct pt_regs *regs, long err); struct siginfo; void arm64_notify_die(const char *str, struct pt_regs *regs, diff --git a/arch/arm64/include/asm/traps.h b/arch/arm64/include/asm/traps.h index 6e5826470bea6..1f361e2da516f 100644 --- a/arch/arm64/include/asm/traps.h +++ b/arch/arm64/include/asm/traps.h @@ -13,17 +13,16 @@ struct pt_regs; -struct undef_hook { - struct list_head node; - u32 instr_mask; - u32 instr_val; - u64 pstate_mask; - u64 pstate_val; - int (*fn)(struct pt_regs *regs, u32 instr); -}; +#ifdef CONFIG_ARMV8_DEPRECATED +bool try_emulate_armv8_deprecated(struct pt_regs *regs, u32 insn); +#else +static inline bool +try_emulate_armv8_deprecated(struct pt_regs *regs, u32 insn) +{ + return false; +} +#endif /* CONFIG_ARMV8_DEPRECATED */ -void register_undef_hook(struct undef_hook *hook); -void unregister_undef_hook(struct undef_hook *hook); void force_signal_inject(int signal, int code, unsigned long address, unsigned long err); void arm64_notify_segfault(unsigned long addr); void arm64_force_sig_fault(int signo, int code, unsigned long far, const char *str); diff --git a/arch/arm64/kernel/armv8_deprecated.c b/arch/arm64/kernel/armv8_deprecated.c index c5da9d1e954a0..91eabe56093d6 100644 --- a/arch/arm64/kernel/armv8_deprecated.c +++ b/arch/arm64/kernel/armv8_deprecated.c @@ -17,7 +17,6 @@ #include #include #include -#include #define CREATE_TRACE_POINTS #include "trace-events-emulation.h" @@ -39,226 +38,46 @@ enum insn_emulation_mode { enum legacy_insn_status { INSN_DEPRECATED, INSN_OBSOLETE, -}; - -struct insn_emulation_ops { - const char *name; - enum legacy_insn_status status; - struct undef_hook *hooks; - int (*set_hw_mode)(bool enable); + INSN_UNAVAILABLE, }; struct insn_emulation { - struct list_head node; - struct insn_emulation_ops *ops; + const char *name; + enum legacy_insn_status status; + bool (*try_emulate)(struct pt_regs *regs, + u32 insn); + int (*set_hw_mode)(bool enable); + int current_mode; int min; int max; -}; - -static LIST_HEAD(insn_emulation); -static int nr_insn_emulated __initdata; -static DEFINE_RAW_SPINLOCK(insn_emulation_lock); -static DEFINE_MUTEX(insn_emulation_mutex); - -static void register_emulation_hooks(struct insn_emulation_ops *ops) -{ - struct undef_hook *hook; - - BUG_ON(!ops->hooks); - - for (hook = ops->hooks; hook->instr_mask; hook++) - register_undef_hook(hook); - - pr_notice("Registered %s emulation handler\n", ops->name); -} - -static void remove_emulation_hooks(struct insn_emulation_ops *ops) -{ - struct undef_hook *hook; - - BUG_ON(!ops->hooks); - - for (hook = ops->hooks; hook->instr_mask; hook++) - unregister_undef_hook(hook); - - pr_notice("Removed %s emulation handler\n", ops->name); -} - -static void enable_insn_hw_mode(void *data) -{ - struct insn_emulation *insn = (struct insn_emulation *)data; - if (insn->ops->set_hw_mode) - insn->ops->set_hw_mode(true); -} - -static void disable_insn_hw_mode(void *data) -{ - struct insn_emulation *insn = (struct insn_emulation *)data; - if (insn->ops->set_hw_mode) - insn->ops->set_hw_mode(false); -} - -/* Run set_hw_mode(mode) on all active CPUs */ -static int run_all_cpu_set_hw_mode(struct insn_emulation *insn, bool enable) -{ - if (!insn->ops->set_hw_mode) - return -EINVAL; - if (enable) - on_each_cpu(enable_insn_hw_mode, (void *)insn, true); - else - on_each_cpu(disable_insn_hw_mode, (void *)insn, true); - return 0; -} - -/* - * Run set_hw_mode for all insns on a starting CPU. - * Returns: - * 0 - If all the hooks ran successfully. - * -EINVAL - At least one hook is not supported by the CPU. - */ -static int run_all_insn_set_hw_mode(unsigned int cpu) -{ - int rc = 0; - unsigned long flags; - struct insn_emulation *insn; - - raw_spin_lock_irqsave(&insn_emulation_lock, flags); - list_for_each_entry(insn, &insn_emulation, node) { - bool enable = (insn->current_mode == INSN_HW); - if (insn->ops->set_hw_mode && insn->ops->set_hw_mode(enable)) { - pr_warn("CPU[%u] cannot support the emulation of %s", - cpu, insn->ops->name); - rc = -EINVAL; - } - } - raw_spin_unlock_irqrestore(&insn_emulation_lock, flags); - return rc; -} - -static int update_insn_emulation_mode(struct insn_emulation *insn, - enum insn_emulation_mode prev) -{ - int ret = 0; - - switch (prev) { - case INSN_UNDEF: /* Nothing to be done */ - break; - case INSN_EMULATE: - remove_emulation_hooks(insn->ops); - break; - case INSN_HW: - if (!run_all_cpu_set_hw_mode(insn, false)) - pr_notice("Disabled %s support\n", insn->ops->name); - break; - } - - switch (insn->current_mode) { - case INSN_UNDEF: - break; - case INSN_EMULATE: - register_emulation_hooks(insn->ops); - break; - case INSN_HW: - ret = run_all_cpu_set_hw_mode(insn, true); - if (!ret) - pr_notice("Enabled %s support\n", insn->ops->name); - break; - } - return ret; -} - -static void __init register_insn_emulation(struct insn_emulation_ops *ops) -{ - unsigned long flags; - struct insn_emulation *insn; - - insn = kzalloc(sizeof(*insn), GFP_KERNEL); - if (!insn) - return; - - insn->ops = ops; - insn->min = INSN_UNDEF; - - switch (ops->status) { - case INSN_DEPRECATED: - insn->current_mode = INSN_EMULATE; - /* Disable the HW mode if it was turned on at early boot time */ - run_all_cpu_set_hw_mode(insn, false); - insn->max = INSN_HW; - break; - case INSN_OBSOLETE: - insn->current_mode = INSN_UNDEF; - insn->max = INSN_EMULATE; - break; - } - - raw_spin_lock_irqsave(&insn_emulation_lock, flags); - list_add(&insn->node, &insn_emulation); - nr_insn_emulated++; - raw_spin_unlock_irqrestore(&insn_emulation_lock, flags); - - /* Register any handlers if required */ - update_insn_emulation_mode(insn, INSN_UNDEF); -} - -static int emulation_proc_handler(struct ctl_table *table, int write, - void *buffer, size_t *lenp, - loff_t *ppos) -{ - int ret = 0; - struct insn_emulation *insn = container_of(table->data, struct insn_emulation, current_mode); - enum insn_emulation_mode prev_mode = insn->current_mode; - - mutex_lock(&insn_emulation_mutex); - ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos); + /* + * sysctl for this emulation + a sentinal entry. + */ + struct ctl_table sysctl[2]; +}; - if (ret || !write || prev_mode == insn->current_mode) - goto ret; +#define ARM_OPCODE_CONDTEST_FAIL 0 +#define ARM_OPCODE_CONDTEST_PASS 1 +#define ARM_OPCODE_CONDTEST_UNCOND 2 - ret = update_insn_emulation_mode(insn, prev_mode); - if (ret) { - /* Mode change failed, revert to previous mode. */ - insn->current_mode = prev_mode; - update_insn_emulation_mode(insn, INSN_UNDEF); - } -ret: - mutex_unlock(&insn_emulation_mutex); - return ret; -} +#define ARM_OPCODE_CONDITION_UNCOND 0xf -static void __init register_insn_emulation_sysctl(void) +static unsigned int __maybe_unused aarch32_check_condition(u32 opcode, u32 psr) { - unsigned long flags; - int i = 0; - struct insn_emulation *insn; - struct ctl_table *insns_sysctl, *sysctl; - - insns_sysctl = kcalloc(nr_insn_emulated + 1, sizeof(*sysctl), - GFP_KERNEL); - if (!insns_sysctl) - return; - - raw_spin_lock_irqsave(&insn_emulation_lock, flags); - list_for_each_entry(insn, &insn_emulation, node) { - sysctl = &insns_sysctl[i]; - - sysctl->mode = 0644; - sysctl->maxlen = sizeof(int); + u32 cc_bits = opcode >> 28; - sysctl->procname = insn->ops->name; - sysctl->data = &insn->current_mode; - sysctl->extra1 = &insn->min; - sysctl->extra2 = &insn->max; - sysctl->proc_handler = emulation_proc_handler; - i++; + if (cc_bits != ARM_OPCODE_CONDITION_UNCOND) { + if ((*aarch32_opcode_cond_checks[cc_bits])(psr)) + return ARM_OPCODE_CONDTEST_PASS; + else + return ARM_OPCODE_CONDTEST_FAIL; } - raw_spin_unlock_irqrestore(&insn_emulation_lock, flags); - - register_sysctl("abi", insns_sysctl); + return ARM_OPCODE_CONDTEST_UNCOND; } +#ifdef CONFIG_SWP_EMULATION /* * Implement emulation of the SWP/SWPB instructions using load-exclusive and * store-exclusive. @@ -345,25 +164,6 @@ static int emulate_swpX(unsigned int address, unsigned int *data, return res; } -#define ARM_OPCODE_CONDTEST_FAIL 0 -#define ARM_OPCODE_CONDTEST_PASS 1 -#define ARM_OPCODE_CONDTEST_UNCOND 2 - -#define ARM_OPCODE_CONDITION_UNCOND 0xf - -static unsigned int __kprobes aarch32_check_condition(u32 opcode, u32 psr) -{ - u32 cc_bits = opcode >> 28; - - if (cc_bits != ARM_OPCODE_CONDITION_UNCOND) { - if ((*aarch32_opcode_cond_checks[cc_bits])(psr)) - return ARM_OPCODE_CONDTEST_PASS; - else - return ARM_OPCODE_CONDTEST_FAIL; - } - return ARM_OPCODE_CONDTEST_UNCOND; -} - /* * swp_handler logs the id of calling process, dissects the instruction, sanity * checks the memory location, calls emulate_swpX for the actual operation and @@ -436,28 +236,27 @@ static int swp_handler(struct pt_regs *regs, u32 instr) return 0; } -/* - * Only emulate SWP/SWPB executed in ARM state/User mode. - * The kernel must be SWP free and SWP{B} does not exist in Thumb. - */ -static struct undef_hook swp_hooks[] = { - { - .instr_mask = 0x0fb00ff0, - .instr_val = 0x01000090, - .pstate_mask = PSR_AA32_MODE_MASK, - .pstate_val = PSR_AA32_MODE_USR, - .fn = swp_handler - }, - { } -}; +static bool try_emulate_swp(struct pt_regs *regs, u32 insn) +{ + /* SWP{B} only exists in ARM state and does not exist in Thumb */ + if (!compat_user_mode(regs) || compat_thumb_mode(regs)) + return false; + + if ((insn & 0x0fb00ff0) != 0x01000090) + return false; + + return swp_handler(regs, insn) == 0; +} -static struct insn_emulation_ops swp_ops = { +static struct insn_emulation insn_swp = { .name = "swp", .status = INSN_OBSOLETE, - .hooks = swp_hooks, + .try_emulate = try_emulate_swp, .set_hw_mode = NULL, }; +#endif /* CONFIG_SWP_EMULATION */ +#ifdef CONFIG_CP15_BARRIER_EMULATION static int cp15barrier_handler(struct pt_regs *regs, u32 instr) { perf_sw_event(PERF_COUNT_SW_EMULATION_FAULTS, 1, regs, regs->pc); @@ -520,31 +319,29 @@ static int cp15_barrier_set_hw_mode(bool enable) return 0; } -static struct undef_hook cp15_barrier_hooks[] = { - { - .instr_mask = 0x0fff0fdf, - .instr_val = 0x0e070f9a, - .pstate_mask = PSR_AA32_MODE_MASK, - .pstate_val = PSR_AA32_MODE_USR, - .fn = cp15barrier_handler, - }, - { - .instr_mask = 0x0fff0fff, - .instr_val = 0x0e070f95, - .pstate_mask = PSR_AA32_MODE_MASK, - .pstate_val = PSR_AA32_MODE_USR, - .fn = cp15barrier_handler, - }, - { } -}; +static bool try_emulate_cp15_barrier(struct pt_regs *regs, u32 insn) +{ + if (!compat_user_mode(regs) || compat_thumb_mode(regs)) + return false; + + if ((insn & 0x0fff0fdf) == 0x0e070f9a) + return cp15barrier_handler(regs, insn) == 0; + + if ((insn & 0x0fff0fff) == 0x0e070f95) + return cp15barrier_handler(regs, insn) == 0; + + return false; +} -static struct insn_emulation_ops cp15_barrier_ops = { +static struct insn_emulation insn_cp15_barrier = { .name = "cp15_barrier", .status = INSN_DEPRECATED, - .hooks = cp15_barrier_hooks, + .try_emulate = try_emulate_cp15_barrier, .set_hw_mode = cp15_barrier_set_hw_mode, }; +#endif /* CONFIG_CP15_BARRIER_EMULATION */ +#ifdef CONFIG_SETEND_EMULATION static int setend_set_hw_mode(bool enable) { if (!cpu_supports_mixed_endian_el0()) @@ -592,31 +389,221 @@ static int t16_setend_handler(struct pt_regs *regs, u32 instr) return rc; } -static struct undef_hook setend_hooks[] = { - { - .instr_mask = 0xfffffdff, - .instr_val = 0xf1010000, - .pstate_mask = PSR_AA32_MODE_MASK, - .pstate_val = PSR_AA32_MODE_USR, - .fn = a32_setend_handler, - }, - { - /* Thumb mode */ - .instr_mask = 0xfffffff7, - .instr_val = 0x0000b650, - .pstate_mask = (PSR_AA32_T_BIT | PSR_AA32_MODE_MASK), - .pstate_val = (PSR_AA32_T_BIT | PSR_AA32_MODE_USR), - .fn = t16_setend_handler, - }, - {} -}; +static bool try_emulate_setend(struct pt_regs *regs, u32 insn) +{ + if (compat_thumb_mode(regs) && + (insn & 0xfffffff7) == 0x0000b650) + return t16_setend_handler(regs, insn) == 0; + + if (compat_user_mode(regs) && + (insn & 0xfffffdff) == 0xf1010000) + return a32_setend_handler(regs, insn) == 0; + + return false; +} -static struct insn_emulation_ops setend_ops = { +static struct insn_emulation insn_setend = { .name = "setend", .status = INSN_DEPRECATED, - .hooks = setend_hooks, + .try_emulate = try_emulate_setend, .set_hw_mode = setend_set_hw_mode, }; +#endif /* CONFIG_SETEND_EMULATION */ + +static struct insn_emulation *insn_emulations[] = { +#ifdef CONFIG_SWP_EMULATION + &insn_swp, +#endif +#ifdef CONFIG_CP15_BARRIER_EMULATION + &insn_cp15_barrier, +#endif +#ifdef CONFIG_SETEND_EMULATION + &insn_setend, +#endif +}; + +static DEFINE_MUTEX(insn_emulation_mutex); + +static void enable_insn_hw_mode(void *data) +{ + struct insn_emulation *insn = (struct insn_emulation *)data; + if (insn->set_hw_mode) + insn->set_hw_mode(true); +} + +static void disable_insn_hw_mode(void *data) +{ + struct insn_emulation *insn = (struct insn_emulation *)data; + if (insn->set_hw_mode) + insn->set_hw_mode(false); +} + +/* Run set_hw_mode(mode) on all active CPUs */ +static int run_all_cpu_set_hw_mode(struct insn_emulation *insn, bool enable) +{ + if (!insn->set_hw_mode) + return -EINVAL; + if (enable) + on_each_cpu(enable_insn_hw_mode, (void *)insn, true); + else + on_each_cpu(disable_insn_hw_mode, (void *)insn, true); + return 0; +} + +/* + * Run set_hw_mode for all insns on a starting CPU. + * Returns: + * 0 - If all the hooks ran successfully. + * -EINVAL - At least one hook is not supported by the CPU. + */ +static int run_all_insn_set_hw_mode(unsigned int cpu) +{ + int i; + int rc = 0; + unsigned long flags; + + /* + * Disable IRQs to serialize against an IPI from + * run_all_cpu_set_hw_mode(), ensuring the HW is programmed to the most + * recent enablement state if the two race with one another. + */ + local_irq_save(flags); + for (i = 0; i < ARRAY_SIZE(insn_emulations); i++) { + struct insn_emulation *insn = insn_emulations[i]; + bool enable = READ_ONCE(insn->current_mode) == INSN_HW; + if (insn->set_hw_mode && insn->set_hw_mode(enable)) { + pr_warn("CPU[%u] cannot support the emulation of %s", + cpu, insn->name); + rc = -EINVAL; + } + } + local_irq_restore(flags); + + return rc; +} + +static int update_insn_emulation_mode(struct insn_emulation *insn, + enum insn_emulation_mode prev) +{ + int ret = 0; + + switch (prev) { + case INSN_UNDEF: /* Nothing to be done */ + break; + case INSN_EMULATE: + break; + case INSN_HW: + if (!run_all_cpu_set_hw_mode(insn, false)) + pr_notice("Disabled %s support\n", insn->name); + break; + } + + switch (insn->current_mode) { + case INSN_UNDEF: + break; + case INSN_EMULATE: + break; + case INSN_HW: + ret = run_all_cpu_set_hw_mode(insn, true); + if (!ret) + pr_notice("Enabled %s support\n", insn->name); + break; + } + + return ret; +} + +static int emulation_proc_handler(struct ctl_table *table, int write, + void *buffer, size_t *lenp, + loff_t *ppos) +{ + int ret = 0; + struct insn_emulation *insn = container_of(table->data, struct insn_emulation, current_mode); + enum insn_emulation_mode prev_mode = insn->current_mode; + + mutex_lock(&insn_emulation_mutex); + ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos); + + if (ret || !write || prev_mode == insn->current_mode) + goto ret; + + ret = update_insn_emulation_mode(insn, prev_mode); + if (ret) { + /* Mode change failed, revert to previous mode. */ + WRITE_ONCE(insn->current_mode, prev_mode); + update_insn_emulation_mode(insn, INSN_UNDEF); + } +ret: + mutex_unlock(&insn_emulation_mutex); + return ret; +} + +static void __init register_insn_emulation(struct insn_emulation *insn) +{ + struct ctl_table *sysctl; + + insn->min = INSN_UNDEF; + + switch (insn->status) { + case INSN_DEPRECATED: + insn->current_mode = INSN_EMULATE; + /* Disable the HW mode if it was turned on at early boot time */ + run_all_cpu_set_hw_mode(insn, false); + insn->max = INSN_HW; + break; + case INSN_OBSOLETE: + insn->current_mode = INSN_UNDEF; + insn->max = INSN_EMULATE; + break; + case INSN_UNAVAILABLE: + insn->current_mode = INSN_UNDEF; + insn->max = INSN_UNDEF; + break; + } + + /* Program the HW if required */ + update_insn_emulation_mode(insn, INSN_UNDEF); + + if (insn->status != INSN_UNAVAILABLE) { + sysctl = &insn->sysctl[0]; + + sysctl->mode = 0644; + sysctl->maxlen = sizeof(int); + + sysctl->procname = insn->name; + sysctl->data = &insn->current_mode; + sysctl->extra1 = &insn->min; + sysctl->extra2 = &insn->max; + sysctl->proc_handler = emulation_proc_handler; + + register_sysctl("abi", sysctl); + } +} + +bool try_emulate_armv8_deprecated(struct pt_regs *regs, u32 insn) +{ + int i; + + for (i = 0; i < ARRAY_SIZE(insn_emulations); i++) { + struct insn_emulation *ie = insn_emulations[i]; + + if (ie->status == INSN_UNAVAILABLE) + continue; + + /* + * A trap may race with the mode being changed + * INSN_EMULATE<->INSN_HW. Try to emulate the instruction to + * avoid a spurious UNDEF. + */ + if (READ_ONCE(ie->current_mode) == INSN_UNDEF) + continue; + + if (ie->try_emulate(regs, insn)) + return true; + } + + return false; +} /* * Invoked as core_initcall, which guarantees that the instruction @@ -624,24 +611,27 @@ static struct insn_emulation_ops setend_ops = { */ static int __init armv8_deprecated_init(void) { - if (IS_ENABLED(CONFIG_SWP_EMULATION)) - register_insn_emulation(&swp_ops); + int i; - if (IS_ENABLED(CONFIG_CP15_BARRIER_EMULATION)) - register_insn_emulation(&cp15_barrier_ops); +#ifdef CONFIG_SETEND_EMULATION + if (!system_supports_mixed_endian_el0()) { + insn_setend.status = INSN_UNAVAILABLE; + pr_info("setend instruction emulation is not supported on this system\n"); + } - if (IS_ENABLED(CONFIG_SETEND_EMULATION)) { - if (system_supports_mixed_endian_el0()) - register_insn_emulation(&setend_ops); - else - pr_info("setend instruction emulation is not supported on this system\n"); +#endif + for (i = 0; i < ARRAY_SIZE(insn_emulations); i++) { + struct insn_emulation *ie = insn_emulations[i]; + + if (ie->status == INSN_UNAVAILABLE) + continue; + + register_insn_emulation(ie); } cpuhp_setup_state_nocalls(CPUHP_AP_ARM64_ISNDEP_STARTING, "arm64/isndep:starting", run_all_insn_set_hw_mode, NULL); - register_insn_emulation_sysctl(); - return 0; } diff --git a/arch/arm64/kernel/cpufeature.c b/arch/arm64/kernel/cpufeature.c index d4ee345ff4296..f17d6cdea2605 100644 --- a/arch/arm64/kernel/cpufeature.c +++ b/arch/arm64/kernel/cpufeature.c @@ -3106,35 +3106,22 @@ int do_emulate_mrs(struct pt_regs *regs, u32 sys_reg, u32 rt) return rc; } -static int emulate_mrs(struct pt_regs *regs, u32 insn) +bool try_emulate_mrs(struct pt_regs *regs, u32 insn) { u32 sys_reg, rt; + if (compat_user_mode(regs) || !aarch64_insn_is_mrs(insn)) + return false; + /* * sys_reg values are defined as used in mrs/msr instruction. * shift the imm value to get the encoding. */ sys_reg = (u32)aarch64_insn_decode_immediate(AARCH64_INSN_IMM_16, insn) << 5; rt = aarch64_insn_decode_register(AARCH64_INSN_REGTYPE_RT, insn); - return do_emulate_mrs(regs, sys_reg, rt); + return do_emulate_mrs(regs, sys_reg, rt) == 0; } -static struct undef_hook mrs_hook = { - .instr_mask = 0xffff0000, - .instr_val = 0xd5380000, - .pstate_mask = PSR_AA32_MODE_MASK, - .pstate_val = PSR_MODE_EL0t, - .fn = emulate_mrs, -}; - -static int __init enable_mrs_emulation(void) -{ - register_undef_hook(&mrs_hook); - return 0; -} - -core_initcall(enable_mrs_emulation); - enum mitigation_state arm64_get_meltdown_state(void) { if (__meltdown_safe) diff --git a/arch/arm64/kernel/entry-common.c b/arch/arm64/kernel/entry-common.c index fc91dad1579ab..864423297c006 100644 --- a/arch/arm64/kernel/entry-common.c +++ b/arch/arm64/kernel/entry-common.c @@ -371,11 +371,20 @@ static void noinstr el1_pc(struct pt_regs *regs, unsigned long esr) exit_to_kernel_mode(regs); } -static void noinstr el1_undef(struct pt_regs *regs) +static void noinstr el1_undef(struct pt_regs *regs, unsigned long esr) { enter_from_kernel_mode(regs); local_daif_inherit(regs); - do_undefinstr(regs); + do_el1_undef(regs, esr); + local_daif_mask(); + exit_to_kernel_mode(regs); +} + +static void noinstr el1_bti(struct pt_regs *regs, unsigned long esr) +{ + enter_from_kernel_mode(regs); + local_daif_inherit(regs); + do_el1_bti(regs, esr); local_daif_mask(); exit_to_kernel_mode(regs); } @@ -394,7 +403,7 @@ static void noinstr el1_fpac(struct pt_regs *regs, unsigned long esr) { enter_from_kernel_mode(regs); local_daif_inherit(regs); - do_ptrauth_fault(regs, esr); + do_el1_fpac(regs, esr); local_daif_mask(); exit_to_kernel_mode(regs); } @@ -417,7 +426,10 @@ asmlinkage void noinstr el1h_64_sync_handler(struct pt_regs *regs) break; case ESR_ELx_EC_SYS64: case ESR_ELx_EC_UNKNOWN: - el1_undef(regs); + el1_undef(regs, esr); + break; + case ESR_ELx_EC_BTI: + el1_bti(regs, esr); break; case ESR_ELx_EC_BREAKPT_CUR: case ESR_ELx_EC_SOFTSTP_CUR: @@ -529,7 +541,7 @@ static void noinstr el0_sys(struct pt_regs *regs, unsigned long esr) { enter_from_user_mode(regs); local_daif_restore(DAIF_PROCCTX); - do_sysinstr(esr, regs); + do_el0_sys(esr, regs); exit_to_user_mode(regs); } @@ -554,11 +566,11 @@ static void noinstr el0_sp(struct pt_regs *regs, unsigned long esr) exit_to_user_mode(regs); } -static void noinstr el0_undef(struct pt_regs *regs) +static void noinstr el0_undef(struct pt_regs *regs, unsigned long esr) { enter_from_user_mode(regs); local_daif_restore(DAIF_PROCCTX); - do_undefinstr(regs); + do_el0_undef(regs, esr); exit_to_user_mode(regs); } @@ -566,7 +578,7 @@ static void noinstr el0_bti(struct pt_regs *regs) { enter_from_user_mode(regs); local_daif_restore(DAIF_PROCCTX); - do_bti(regs); + do_el0_bti(regs); exit_to_user_mode(regs); } @@ -601,7 +613,7 @@ static void noinstr el0_fpac(struct pt_regs *regs, unsigned long esr) { enter_from_user_mode(regs); local_daif_restore(DAIF_PROCCTX); - do_ptrauth_fault(regs, esr); + do_el0_fpac(regs, esr); exit_to_user_mode(regs); } @@ -639,7 +651,7 @@ asmlinkage void noinstr el0t_64_sync_handler(struct pt_regs *regs) el0_pc(regs, esr); break; case ESR_ELx_EC_UNKNOWN: - el0_undef(regs); + el0_undef(regs, esr); break; case ESR_ELx_EC_BTI: el0_bti(regs); @@ -716,7 +728,7 @@ static void noinstr el0_cp15(struct pt_regs *regs, unsigned long esr) { enter_from_user_mode(regs); local_daif_restore(DAIF_PROCCTX); - do_cp15instr(esr, regs); + do_el0_cp15(esr, regs); exit_to_user_mode(regs); } @@ -755,7 +767,7 @@ asmlinkage void noinstr el0t_32_sync_handler(struct pt_regs *regs) case ESR_ELx_EC_CP14_MR: case ESR_ELx_EC_CP14_LS: case ESR_ELx_EC_CP14_64: - el0_undef(regs); + el0_undef(regs, esr); break; case ESR_ELx_EC_CP15_32: case ESR_ELx_EC_CP15_64: diff --git a/arch/arm64/kernel/entry.S b/arch/arm64/kernel/entry.S index c56b262a2749d..bdc5f744249bb 100644 --- a/arch/arm64/kernel/entry.S +++ b/arch/arm64/kernel/entry.S @@ -1005,9 +1005,13 @@ SYM_CODE_START(__sdei_asm_handler) mov x19, x1 -#if defined(CONFIG_VMAP_STACK) || defined(CONFIG_SHADOW_CALL_STACK) + /* Store the registered-event for crash_smp_send_stop() */ ldrb w4, [x19, #SDEI_EVENT_PRIORITY] -#endif + cbnz w4, 1f + adr_this_cpu dst=x5, sym=sdei_active_normal_event, tmp=x6 + b 2f +1: adr_this_cpu dst=x5, sym=sdei_active_critical_event, tmp=x6 +2: str x19, [x5] #ifdef CONFIG_VMAP_STACK /* @@ -1072,6 +1076,14 @@ SYM_CODE_START(__sdei_asm_handler) ldr_l x2, sdei_exit_mode + /* Clear the registered-event seen by crash_smp_send_stop() */ + ldrb w3, [x4, #SDEI_EVENT_PRIORITY] + cbnz w3, 1f + adr_this_cpu dst=x5, sym=sdei_active_normal_event, tmp=x6 + b 2f +1: adr_this_cpu dst=x5, sym=sdei_active_critical_event, tmp=x6 +2: str xzr, [x5] + alternative_if_not ARM64_UNMAP_KERNEL_AT_EL0 sdei_handler_exit exit_mode=x2 alternative_else_nop_endif @@ -1082,4 +1094,15 @@ alternative_else_nop_endif #endif SYM_CODE_END(__sdei_asm_handler) NOKPROBE(__sdei_asm_handler) + +SYM_CODE_START(__sdei_handler_abort) + mov_q x0, SDEI_1_0_FN_SDEI_EVENT_COMPLETE_AND_RESUME + adr x1, 1f + ldr_l x2, sdei_exit_mode + sdei_handler_exit exit_mode=x2 + // exit the handler and jump to the next instruction. + // Exit will stomp x0-x17, PSTATE, ELR_ELx, and SPSR_ELx. +1: ret +SYM_CODE_END(__sdei_handler_abort) +NOKPROBE(__sdei_handler_abort) #endif /* CONFIG_ARM_SDE_INTERFACE */ diff --git a/arch/arm64/kernel/hw_breakpoint.c b/arch/arm64/kernel/hw_breakpoint.c index 2a7f21314cde6..c30fa24458328 100644 --- a/arch/arm64/kernel/hw_breakpoint.c +++ b/arch/arm64/kernel/hw_breakpoint.c @@ -654,7 +654,7 @@ static int breakpoint_handler(unsigned long unused, unsigned long esr, perf_bp_event(bp, regs); /* Do we need to handle the stepping? */ - if (is_default_overflow_handler(bp)) + if (uses_default_overflow_handler(bp)) step = 1; unlock: rcu_read_unlock(); @@ -733,7 +733,7 @@ static u64 get_distance_from_watchpoint(unsigned long addr, u64 val, static int watchpoint_report(struct perf_event *wp, unsigned long addr, struct pt_regs *regs) { - int step = is_default_overflow_handler(wp); + int step = uses_default_overflow_handler(wp); struct arch_hw_breakpoint *info = counter_arch_bp(wp); info->trigger = addr; diff --git a/arch/arm64/kernel/proton-pack.c b/arch/arm64/kernel/proton-pack.c index 428cfabd11c49..7515ed1f0669a 100644 --- a/arch/arm64/kernel/proton-pack.c +++ b/arch/arm64/kernel/proton-pack.c @@ -521,10 +521,13 @@ bool has_spectre_v4(const struct arm64_cpu_capabilities *cap, int scope) return state != SPECTRE_UNAFFECTED; } -static int ssbs_emulation_handler(struct pt_regs *regs, u32 instr) +bool try_emulate_el1_ssbs(struct pt_regs *regs, u32 instr) { - if (user_mode(regs)) - return 1; + const u32 instr_mask = ~(1U << PSTATE_Imm_shift); + const u32 instr_val = 0xd500401f | PSTATE_SSBS; + + if ((instr & instr_mask) != instr_val) + return false; if (instr & BIT(PSTATE_Imm_shift)) regs->pstate |= PSR_SSBS_BIT; @@ -532,19 +535,11 @@ static int ssbs_emulation_handler(struct pt_regs *regs, u32 instr) regs->pstate &= ~PSR_SSBS_BIT; arm64_skip_faulting_instruction(regs, 4); - return 0; + return true; } -static struct undef_hook ssbs_emulation_hook = { - .instr_mask = ~(1U << PSTATE_Imm_shift), - .instr_val = 0xd500401f | PSTATE_SSBS, - .fn = ssbs_emulation_handler, -}; - static enum mitigation_state spectre_v4_enable_hw_mitigation(void) { - static bool undef_hook_registered = false; - static DEFINE_RAW_SPINLOCK(hook_lock); enum mitigation_state state; /* @@ -555,13 +550,6 @@ static enum mitigation_state spectre_v4_enable_hw_mitigation(void) if (state != SPECTRE_MITIGATED || !this_cpu_has_cap(ARM64_SSBS)) return state; - raw_spin_lock(&hook_lock); - if (!undef_hook_registered) { - register_undef_hook(&ssbs_emulation_hook); - undef_hook_registered = true; - } - raw_spin_unlock(&hook_lock); - if (spectre_v4_mitigations_off()) { sysreg_clear_set(sctlr_el1, 0, SCTLR_ELx_DSSBS); set_pstate_ssbs(1); diff --git a/arch/arm64/kernel/sdei.c b/arch/arm64/kernel/sdei.c index 47f77d1234cb6..532611d07bdcb 100644 --- a/arch/arm64/kernel/sdei.c +++ b/arch/arm64/kernel/sdei.c @@ -47,6 +47,9 @@ DEFINE_PER_CPU(unsigned long *, sdei_shadow_call_stack_normal_ptr); DEFINE_PER_CPU(unsigned long *, sdei_shadow_call_stack_critical_ptr); #endif +DEFINE_PER_CPU(struct sdei_registered_event *, sdei_active_normal_event); +DEFINE_PER_CPU(struct sdei_registered_event *, sdei_active_critical_event); + static void _free_sdei_stack(unsigned long * __percpu *ptr, int cpu) { unsigned long *p; diff --git a/arch/arm64/kernel/smp.c b/arch/arm64/kernel/smp.c index 3beaa6640ab35..bc29cc044a4d7 100644 --- a/arch/arm64/kernel/smp.c +++ b/arch/arm64/kernel/smp.c @@ -1073,10 +1073,8 @@ void crash_smp_send_stop(void) * If this cpu is the only one alive at this point in time, online or * not, there are no stop messages to be sent around, so just back out. */ - if (num_other_online_cpus() == 0) { - sdei_mask_local_cpu(); - return; - } + if (num_other_online_cpus() == 0) + goto skip_ipi; cpumask_copy(&mask, cpu_online_mask); cpumask_clear_cpu(smp_processor_id(), &mask); @@ -1095,7 +1093,9 @@ void crash_smp_send_stop(void) pr_warn("SMP: failed to stop secondary CPUs %*pbl\n", cpumask_pr_args(&mask)); +skip_ipi: sdei_mask_local_cpu(); + sdei_handler_abort(); } bool smp_crash_stop_failed(void) diff --git a/arch/arm64/kernel/traps.c b/arch/arm64/kernel/traps.c index 21e69a991bc83..c71074cb2bef8 100644 --- a/arch/arm64/kernel/traps.c +++ b/arch/arm64/kernel/traps.c @@ -181,12 +181,12 @@ static void dump_kernel_instr(const char *lvl, struct pt_regs *regs) #define S_SMP " SMP" -static int __die(const char *str, int err, struct pt_regs *regs) +static int __die(const char *str, long err, struct pt_regs *regs) { static int die_counter; int ret; - pr_emerg("Internal error: %s: %x [#%d]" S_PREEMPT S_SMP "\n", + pr_emerg("Internal error: %s: %016lx [#%d]" S_PREEMPT S_SMP "\n", str, err, ++die_counter); /* trap and error numbers are mostly meaningless on ARM */ @@ -207,7 +207,7 @@ static DEFINE_RAW_SPINLOCK(die_lock); /* * This function is protected against re-entrancy. */ -void die(const char *str, struct pt_regs *regs, int err) +void die(const char *str, struct pt_regs *regs, long err) { int ret; unsigned long flags; @@ -373,51 +373,22 @@ void arm64_skip_faulting_instruction(struct pt_regs *regs, unsigned long size) regs->pstate &= ~PSR_BTYPE_MASK; } -static LIST_HEAD(undef_hook); -static DEFINE_RAW_SPINLOCK(undef_lock); - -void register_undef_hook(struct undef_hook *hook) +static int user_insn_read(struct pt_regs *regs, u32 *insnp) { - unsigned long flags; - - raw_spin_lock_irqsave(&undef_lock, flags); - list_add(&hook->node, &undef_hook); - raw_spin_unlock_irqrestore(&undef_lock, flags); -} - -void unregister_undef_hook(struct undef_hook *hook) -{ - unsigned long flags; - - raw_spin_lock_irqsave(&undef_lock, flags); - list_del(&hook->node); - raw_spin_unlock_irqrestore(&undef_lock, flags); -} - -static int call_undef_hook(struct pt_regs *regs) -{ - struct undef_hook *hook; - unsigned long flags; u32 instr; - int (*fn)(struct pt_regs *regs, u32 instr) = NULL; void __user *pc = (void __user *)instruction_pointer(regs); - if (!user_mode(regs)) { - __le32 instr_le; - if (get_kernel_nofault(instr_le, (__force __le32 *)pc)) - goto exit; - instr = le32_to_cpu(instr_le); - } else if (compat_thumb_mode(regs)) { + if (compat_thumb_mode(regs)) { /* 16-bit Thumb instruction */ __le16 instr_le; if (get_user(instr_le, (__le16 __user *)pc)) - goto exit; + return -EFAULT; instr = le16_to_cpu(instr_le); if (aarch32_insn_is_wide(instr)) { u32 instr2; if (get_user(instr_le, (__le16 __user *)(pc + 2))) - goto exit; + return -EFAULT; instr2 = le16_to_cpu(instr_le); instr = (instr << 16) | instr2; } @@ -425,19 +396,12 @@ static int call_undef_hook(struct pt_regs *regs) /* 32-bit ARM instruction */ __le32 instr_le; if (get_user(instr_le, (__le32 __user *)pc)) - goto exit; + return -EFAULT; instr = le32_to_cpu(instr_le); } - raw_spin_lock_irqsave(&undef_lock, flags); - list_for_each_entry(hook, &undef_hook, node) - if ((instr & hook->instr_mask) == hook->instr_val && - (regs->pstate & hook->pstate_mask) == hook->pstate_val) - fn = hook->fn; - - raw_spin_unlock_irqrestore(&undef_lock, flags); -exit: - return fn ? fn(regs, instr) : 1; + *insnp = instr; + return 0; } void force_signal_inject(int signal, int code, unsigned long address, unsigned long err) @@ -486,37 +450,64 @@ void arm64_notify_segfault(unsigned long addr) force_signal_inject(SIGSEGV, code, addr, 0); } -void do_undefinstr(struct pt_regs *regs) +void do_el0_undef(struct pt_regs *regs, unsigned long esr) { + u32 insn; + /* check for AArch32 breakpoint instructions */ if (!aarch32_break_handler(regs)) return; - if (call_undef_hook(regs) == 0) + if (user_insn_read(regs, &insn)) + goto out_err; + + if (try_emulate_mrs(regs, insn)) + return; + + if (try_emulate_armv8_deprecated(regs, insn)) return; - BUG_ON(!user_mode(regs)); +out_err: force_signal_inject(SIGILL, ILL_ILLOPC, regs->pc, 0); } -NOKPROBE_SYMBOL(do_undefinstr); -void do_bti(struct pt_regs *regs) +void do_el1_undef(struct pt_regs *regs, unsigned long esr) +{ + u32 insn; + + if (aarch64_insn_read((void *)regs->pc, &insn)) + goto out_err; + + if (try_emulate_el1_ssbs(regs, insn)) + return; + +out_err: + die("Oops - Undefined instruction", regs, esr); +} + +void do_el0_bti(struct pt_regs *regs) { - BUG_ON(!user_mode(regs)); force_signal_inject(SIGILL, ILL_ILLOPC, regs->pc, 0); } -NOKPROBE_SYMBOL(do_bti); -void do_ptrauth_fault(struct pt_regs *regs, unsigned long esr) +void do_el1_bti(struct pt_regs *regs, unsigned long esr) +{ + die("Oops - BTI", regs, esr); +} + +void do_el0_fpac(struct pt_regs *regs, unsigned long esr) +{ + force_signal_inject(SIGILL, ILL_ILLOPN, regs->pc, esr); +} + +void do_el1_fpac(struct pt_regs *regs, unsigned long esr) { /* - * Unexpected FPAC exception or pointer authentication failure in - * the kernel: kill the task before it does any more harm. + * Unexpected FPAC exception in the kernel: kill the task before it + * does any more harm. */ - BUG_ON(!user_mode(regs)); - force_signal_inject(SIGILL, ILL_ILLOPN, regs->pc, esr); + die("Oops - FPAC", regs, esr); } -NOKPROBE_SYMBOL(do_ptrauth_fault); #define __user_cache_maint(insn, address, res) \ if (address >= user_addr_max()) { \ @@ -732,7 +723,7 @@ static const struct sys64_hook cp15_64_hooks[] = { {}, }; -void do_cp15instr(unsigned long esr, struct pt_regs *regs) +void do_el0_cp15(unsigned long esr, struct pt_regs *regs) { const struct sys64_hook *hook, *hook_base; @@ -753,7 +744,7 @@ void do_cp15instr(unsigned long esr, struct pt_regs *regs) hook_base = cp15_64_hooks; break; default: - do_undefinstr(regs); + do_el0_undef(regs, esr); return; } @@ -768,12 +759,11 @@ void do_cp15instr(unsigned long esr, struct pt_regs *regs) * EL0. Fall back to our usual undefined instruction handler * so that we handle these consistently. */ - do_undefinstr(regs); + do_el0_undef(regs, esr); } -NOKPROBE_SYMBOL(do_cp15instr); #endif -void do_sysinstr(unsigned long esr, struct pt_regs *regs) +void do_el0_sys(unsigned long esr, struct pt_regs *regs) { const struct sys64_hook *hook; @@ -788,9 +778,8 @@ void do_sysinstr(unsigned long esr, struct pt_regs *regs) * back to our usual undefined instruction handler so that we handle * these consistently. */ - do_undefinstr(regs); + do_el0_undef(regs, esr); } -NOKPROBE_SYMBOL(do_sysinstr); static const char *esr_class_str[] = { [0 ... ESR_ELx_EC_MAX] = "UNRECOGNIZED EC", @@ -964,7 +953,7 @@ static int bug_handler(struct pt_regs *regs, unsigned long esr) { switch (report_bug(regs->pc, regs)) { case BUG_TRAP_TYPE_BUG: - die("Oops - BUG", regs, 0); + die("Oops - BUG", regs, esr); break; case BUG_TRAP_TYPE_WARN: @@ -1032,7 +1021,7 @@ static int kasan_handler(struct pt_regs *regs, unsigned long esr) * This is something that might be fixed at some point in the future. */ if (!recover) - die("Oops - KASAN", regs, 0); + die("Oops - KASAN", regs, esr); /* If thread survives, skip over the brk instruction and continue: */ arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE); diff --git a/arch/arm64/lib/csum.c b/arch/arm64/lib/csum.c index 78b87a64ca0a3..2432683e48a61 100644 --- a/arch/arm64/lib/csum.c +++ b/arch/arm64/lib/csum.c @@ -24,7 +24,7 @@ unsigned int __no_sanitize_address do_csum(const unsigned char *buff, int len) const u64 *ptr; u64 data, sum64 = 0; - if (unlikely(len == 0)) + if (unlikely(len <= 0)) return 0; offset = (unsigned long)buff & 7; diff --git a/arch/arm64/lib/strncmp.S b/arch/arm64/lib/strncmp.S index e42bcfcd37e6f..a4884b97e9a81 100644 --- a/arch/arm64/lib/strncmp.S +++ b/arch/arm64/lib/strncmp.S @@ -1,9 +1,9 @@ /* SPDX-License-Identifier: GPL-2.0-only */ /* - * Copyright (c) 2013-2021, Arm Limited. + * Copyright (c) 2013-2022, Arm Limited. * * Adapted from the original at: - * https://github.com/ARM-software/optimized-routines/blob/e823e3abf5f89ecb/string/aarch64/strncmp.S + * https://github.com/ARM-software/optimized-routines/blob/189dfefe37d54c5b/string/aarch64/strncmp.S */ #include @@ -11,14 +11,14 @@ /* Assumptions: * - * ARMv8-a, AArch64 + * ARMv8-a, AArch64. + * MTE compatible. */ #define L(label) .L ## label #define REP8_01 0x0101010101010101 #define REP8_7f 0x7f7f7f7f7f7f7f7f -#define REP8_80 0x8080808080808080 /* Parameters and result. */ #define src1 x0 @@ -39,10 +39,24 @@ #define tmp3 x10 #define zeroones x11 #define pos x12 -#define limit_wd x13 -#define mask x14 -#define endloop x15 +#define mask x13 +#define endloop x14 #define count mask +#define offset pos +#define neg_offset x15 + +/* Define endian dependent shift operations. + On big-endian early bytes are at MSB and on little-endian LSB. + LS_FW means shifting towards early bytes. + LS_BK means shifting towards later bytes. + */ +#ifdef __AARCH64EB__ +#define LS_FW lsl +#define LS_BK lsr +#else +#define LS_FW lsr +#define LS_BK lsl +#endif SYM_FUNC_START_WEAK_PI(strncmp) cbz limit, L(ret0) @@ -52,9 +66,6 @@ SYM_FUNC_START_WEAK_PI(strncmp) and count, src1, #7 b.ne L(misaligned8) cbnz count, L(mutual_align) - /* Calculate the number of full and partial words -1. */ - sub limit_wd, limit, #1 /* limit != 0, so no underflow. */ - lsr limit_wd, limit_wd, #3 /* Convert to Dwords. */ /* NUL detection works on the principle that (X - 1) & (~X) & 0x80 (=> (X - 1) & ~(X | 0x7f)) is non-zero iff a byte is zero, and @@ -64,56 +75,52 @@ L(loop_aligned): ldr data1, [src1], #8 ldr data2, [src2], #8 L(start_realigned): - subs limit_wd, limit_wd, #1 + subs limit, limit, #8 sub tmp1, data1, zeroones orr tmp2, data1, #REP8_7f eor diff, data1, data2 /* Non-zero if differences found. */ - csinv endloop, diff, xzr, pl /* Last Dword or differences. */ + csinv endloop, diff, xzr, hi /* Last Dword or differences. */ bics has_nul, tmp1, tmp2 /* Non-zero if NUL terminator. */ ccmp endloop, #0, #0, eq b.eq L(loop_aligned) /* End of main loop */ - /* Not reached the limit, must have found the end or a diff. */ - tbz limit_wd, #63, L(not_limit) - - /* Limit % 8 == 0 => all bytes significant. */ - ands limit, limit, #7 - b.eq L(not_limit) - - lsl limit, limit, #3 /* Bits -> bytes. */ - mov mask, #~0 -#ifdef __AARCH64EB__ - lsr mask, mask, limit -#else - lsl mask, mask, limit -#endif - bic data1, data1, mask - bic data2, data2, mask - - /* Make sure that the NUL byte is marked in the syndrome. */ - orr has_nul, has_nul, mask - -L(not_limit): +L(full_check): +#ifndef __AARCH64EB__ orr syndrome, diff, has_nul - -#ifndef __AARCH64EB__ + add limit, limit, 8 /* Rewind limit to before last subs. */ +L(syndrome_check): + /* Limit was reached. Check if the NUL byte or the difference + is before the limit. */ rev syndrome, syndrome rev data1, data1 - /* The MS-non-zero bit of the syndrome marks either the first bit - that is different, or the top bit of the first zero byte. - Shifting left now will bring the critical information into the - top bits. */ clz pos, syndrome rev data2, data2 lsl data1, data1, pos + cmp limit, pos, lsr #3 lsl data2, data2, pos /* But we need to zero-extend (char is unsigned) the value and then perform a signed 32-bit subtraction. */ lsr data1, data1, #56 sub result, data1, data2, lsr #56 + csel result, result, xzr, hi ret #else + /* Not reached the limit, must have found the end or a diff. */ + tbz limit, #63, L(not_limit) + add tmp1, limit, 8 + cbz limit, L(not_limit) + + lsl limit, tmp1, #3 /* Bits -> bytes. */ + mov mask, #~0 + lsr mask, mask, limit + bic data1, data1, mask + bic data2, data2, mask + + /* Make sure that the NUL byte is marked in the syndrome. */ + orr has_nul, has_nul, mask + +L(not_limit): /* For big-endian we cannot use the trick with the syndrome value as carry-propagation can corrupt the upper bits if the trailing bytes in the string contain 0x01. */ @@ -134,10 +141,11 @@ L(not_limit): rev has_nul, has_nul orr syndrome, diff, has_nul clz pos, syndrome - /* The MS-non-zero bit of the syndrome marks either the first bit - that is different, or the top bit of the first zero byte. + /* The most-significant-non-zero bit of the syndrome marks either the + first bit that is different, or the top bit of the first zero byte. Shifting left now will bring the critical information into the top bits. */ +L(end_quick): lsl data1, data1, pos lsl data2, data2, pos /* But we need to zero-extend (char is unsigned) the value and then @@ -159,22 +167,12 @@ L(mutual_align): neg tmp3, count, lsl #3 /* 64 - bits(bytes beyond align). */ ldr data2, [src2], #8 mov tmp2, #~0 - sub limit_wd, limit, #1 /* limit != 0, so no underflow. */ -#ifdef __AARCH64EB__ - /* Big-endian. Early bytes are at MSB. */ - lsl tmp2, tmp2, tmp3 /* Shift (count & 63). */ -#else - /* Little-endian. Early bytes are at LSB. */ - lsr tmp2, tmp2, tmp3 /* Shift (count & 63). */ -#endif - and tmp3, limit_wd, #7 - lsr limit_wd, limit_wd, #3 - /* Adjust the limit. Only low 3 bits used, so overflow irrelevant. */ - add limit, limit, count - add tmp3, tmp3, count + LS_FW tmp2, tmp2, tmp3 /* Shift (count & 63). */ + /* Adjust the limit and ensure it doesn't overflow. */ + adds limit, limit, count + csinv limit, limit, xzr, lo orr data1, data1, tmp2 orr data2, data2, tmp2 - add limit_wd, limit_wd, tmp3, lsr #3 b L(start_realigned) .p2align 4 @@ -197,13 +195,11 @@ L(done): /* Align the SRC1 to a dword by doing a bytewise compare and then do the dword loop. */ L(try_misaligned_words): - lsr limit_wd, limit, #3 - cbz count, L(do_misaligned) + cbz count, L(src1_aligned) neg count, count and count, count, #7 sub limit, limit, count - lsr limit_wd, limit, #3 L(page_end_loop): ldrb data1w, [src1], #1 @@ -214,48 +210,100 @@ L(page_end_loop): subs count, count, #1 b.hi L(page_end_loop) -L(do_misaligned): - /* Prepare ourselves for the next page crossing. Unlike the aligned - loop, we fetch 1 less dword because we risk crossing bounds on - SRC2. */ - mov count, #8 - subs limit_wd, limit_wd, #1 - b.lo L(done_loop) -L(loop_misaligned): - and tmp2, src2, #0xff8 - eor tmp2, tmp2, #0xff8 - cbz tmp2, L(page_end_loop) + /* The following diagram explains the comparison of misaligned strings. + The bytes are shown in natural order. For little-endian, it is + reversed in the registers. The "x" bytes are before the string. + The "|" separates data that is loaded at one time. + src1 | a a a a a a a a | b b b c c c c c | . . . + src2 | x x x x x a a a a a a a a b b b | c c c c c . . . + + After shifting in each step, the data looks like this: + STEP_A STEP_B STEP_C + data1 a a a a a a a a b b b c c c c c b b b c c c c c + data2 a a a a a a a a b b b 0 0 0 0 0 0 0 0 c c c c c + The bytes with "0" are eliminated from the syndrome via mask. + + Align SRC2 down to 16 bytes. This way we can read 16 bytes at a + time from SRC2. The comparison happens in 3 steps. After each step + the loop can exit, or read from SRC1 or SRC2. */ +L(src1_aligned): + /* Calculate offset from 8 byte alignment to string start in bits. No + need to mask offset since shifts are ignoring upper bits. */ + lsl offset, src2, #3 + bic src2, src2, #0xf + mov mask, -1 + neg neg_offset, offset ldr data1, [src1], #8 - ldr data2, [src2], #8 - sub tmp1, data1, zeroones - orr tmp2, data1, #REP8_7f - eor diff, data1, data2 /* Non-zero if differences found. */ - bics has_nul, tmp1, tmp2 /* Non-zero if NUL terminator. */ - ccmp diff, #0, #0, eq - b.ne L(not_limit) - subs limit_wd, limit_wd, #1 - b.pl L(loop_misaligned) + ldp tmp1, tmp2, [src2], #16 + LS_BK mask, mask, neg_offset + and neg_offset, neg_offset, #63 /* Need actual value for cmp later. */ + /* Skip the first compare if data in tmp1 is irrelevant. */ + tbnz offset, 6, L(misaligned_mid_loop) -L(done_loop): - /* We found a difference or a NULL before the limit was reached. */ - and limit, limit, #7 - cbz limit, L(not_limit) - /* Read the last word. */ - sub src1, src1, 8 - sub src2, src2, 8 - ldr data1, [src1, limit] - ldr data2, [src2, limit] - sub tmp1, data1, zeroones - orr tmp2, data1, #REP8_7f +L(loop_misaligned): + /* STEP_A: Compare full 8 bytes when there is enough data from SRC2.*/ + LS_FW data2, tmp1, offset + LS_BK tmp1, tmp2, neg_offset + subs limit, limit, #8 + orr data2, data2, tmp1 /* 8 bytes from SRC2 combined from two regs.*/ + sub has_nul, data1, zeroones eor diff, data1, data2 /* Non-zero if differences found. */ - bics has_nul, tmp1, tmp2 /* Non-zero if NUL terminator. */ - ccmp diff, #0, #0, eq - b.ne L(not_limit) + orr tmp3, data1, #REP8_7f + csinv endloop, diff, xzr, hi /* If limit, set to all ones. */ + bic has_nul, has_nul, tmp3 /* Non-zero if NUL byte found in SRC1. */ + orr tmp3, endloop, has_nul + cbnz tmp3, L(full_check) + + ldr data1, [src1], #8 +L(misaligned_mid_loop): + /* STEP_B: Compare first part of data1 to second part of tmp2. */ + LS_FW data2, tmp2, offset +#ifdef __AARCH64EB__ + /* For big-endian we do a byte reverse to avoid carry-propagation + problem described above. This way we can reuse the has_nul in the + next step and also use syndrome value trick at the end. */ + rev tmp3, data1 + #define data1_fixed tmp3 +#else + #define data1_fixed data1 +#endif + sub has_nul, data1_fixed, zeroones + orr tmp3, data1_fixed, #REP8_7f + eor diff, data2, data1 /* Non-zero if differences found. */ + bic has_nul, has_nul, tmp3 /* Non-zero if NUL terminator. */ +#ifdef __AARCH64EB__ + rev has_nul, has_nul +#endif + cmp limit, neg_offset, lsr #3 + orr syndrome, diff, has_nul + bic syndrome, syndrome, mask /* Ignore later bytes. */ + csinv tmp3, syndrome, xzr, hi /* If limit, set to all ones. */ + cbnz tmp3, L(syndrome_check) + + /* STEP_C: Compare second part of data1 to first part of tmp1. */ + ldp tmp1, tmp2, [src2], #16 + cmp limit, #8 + LS_BK data2, tmp1, neg_offset + eor diff, data2, data1 /* Non-zero if differences found. */ + orr syndrome, diff, has_nul + and syndrome, syndrome, mask /* Ignore earlier bytes. */ + csinv tmp3, syndrome, xzr, hi /* If limit, set to all ones. */ + cbnz tmp3, L(syndrome_check) + + ldr data1, [src1], #8 + sub limit, limit, #8 + b L(loop_misaligned) + +#ifdef __AARCH64EB__ +L(syndrome_check): + clz pos, syndrome + cmp pos, limit, lsl #3 + b.lo L(end_quick) +#endif L(ret0): mov result, #0 ret - SYM_FUNC_END_PI(strncmp) EXPORT_SYMBOL_NOHWKASAN(strncmp) diff --git a/arch/m68k/fpsp040/skeleton.S b/arch/m68k/fpsp040/skeleton.S index 439395aa6fb42..081922c72daaa 100644 --- a/arch/m68k/fpsp040/skeleton.S +++ b/arch/m68k/fpsp040/skeleton.S @@ -499,13 +499,13 @@ in_ea: dbf %d0,morein rts - .section .fixup,#alloc,#execinstr + .section .fixup,"ax" .even 1: jbsr fpsp040_die jbra .Lnotkern - .section __ex_table,#alloc + .section __ex_table,"a" .align 4 .long in_ea,1b diff --git a/arch/m68k/ifpsp060/os.S b/arch/m68k/ifpsp060/os.S index 7a0d6e4280665..89e2ec224ab6c 100644 --- a/arch/m68k/ifpsp060/os.S +++ b/arch/m68k/ifpsp060/os.S @@ -379,11 +379,11 @@ _060_real_access: | Execption handling for movs access to illegal memory - .section .fixup,#alloc,#execinstr + .section .fixup,"ax" .even 1: moveq #-1,%d1 rts -.section __ex_table,#alloc +.section __ex_table,"a" .align 4 .long dmrbuae,1b .long dmrwuae,1b diff --git a/arch/m68k/kernel/relocate_kernel.S b/arch/m68k/kernel/relocate_kernel.S index ab0f1e7d46535..f7667079e08e9 100644 --- a/arch/m68k/kernel/relocate_kernel.S +++ b/arch/m68k/kernel/relocate_kernel.S @@ -26,7 +26,7 @@ ENTRY(relocate_new_kernel) lea %pc@(.Lcopy),%a4 2: addl #0x00000000,%a4 /* virt_to_phys() */ - .section ".m68k_fixup","aw" + .section .m68k_fixup,"aw" .long M68K_FIXUP_MEMOFFSET, 2b+2 .previous @@ -49,7 +49,7 @@ ENTRY(relocate_new_kernel) lea %pc@(.Lcont040),%a4 5: addl #0x00000000,%a4 /* virt_to_phys() */ - .section ".m68k_fixup","aw" + .section .m68k_fixup,"aw" .long M68K_FIXUP_MEMOFFSET, 5b+2 .previous diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 13b09c7516e91..b2869b606fd87 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -480,6 +480,7 @@ config MACH_LOONGSON2EF config MACH_LOONGSON64 bool "Loongson 64-bit family of machines" + select ARCH_DMA_DEFAULT_COHERENT select ARCH_SPARSEMEM_ENABLE select ARCH_MIGHT_HAVE_PC_PARPORT select ARCH_MIGHT_HAVE_PC_SERIO @@ -1379,6 +1380,7 @@ config CPU_LOONGSON64 select CPU_SUPPORTS_MSA select CPU_DIEI_BROKEN if !LOONGSON3_ENHANCEMENT select CPU_MIPSR2_IRQ_VI + select DMA_NONCOHERENT select WEAK_ORDERING select WEAK_REORDERING_BEYOND_LLSC select MIPS_ASID_BITS_VARIABLE diff --git a/arch/mips/Makefile b/arch/mips/Makefile index f7b58da2f3889..3830217fab414 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile @@ -279,8 +279,8 @@ ifdef CONFIG_64BIT endif endif - ifeq ($(KBUILD_SYM32)$(call cc-option-yn,-msym32), yy) - cflags-y += -msym32 -DKBUILD_64BIT_SYM32 + ifeq ($(KBUILD_SYM32), y) + cflags-$(KBUILD_SYM32) += -msym32 -DKBUILD_64BIT_SYM32 else ifeq ($(CONFIG_CPU_DADDI_WORKAROUNDS), y) $(error CONFIG_CPU_DADDI_WORKAROUNDS unsupported without -msym32) @@ -321,9 +321,9 @@ KBUILD_CFLAGS += -fno-asynchronous-unwind-tables KBUILD_LDFLAGS += -m $(ld-emul) -ifdef CONFIG_MIPS +ifdef need-compiler CHECKFLAGS += $(shell $(CC) $(KBUILD_CFLAGS) -dM -E -x c /dev/null | \ - egrep -vw '__GNUC_(MINOR_|PATCHLEVEL_)?_' | \ + grep -E -vw '__GNUC_(MINOR_|PATCHLEVEL_)?_' | \ sed -e "s/^\#define /-D'/" -e "s/ /'='/" -e "s/$$/'/" -e 's/\$$/&&/g') endif diff --git a/arch/mips/alchemy/devboards/db1000.c b/arch/mips/alchemy/devboards/db1000.c index 50de86eb8784c..3183df60ad337 100644 --- a/arch/mips/alchemy/devboards/db1000.c +++ b/arch/mips/alchemy/devboards/db1000.c @@ -164,6 +164,7 @@ static struct platform_device db1x00_audio_dev = { /******************************************************************************/ +#ifdef CONFIG_MMC_AU1X static irqreturn_t db1100_mmc_cd(int irq, void *ptr) { mmc_detect_change(ptr, msecs_to_jiffies(500)); @@ -369,6 +370,7 @@ static struct platform_device db1100_mmc1_dev = { .num_resources = ARRAY_SIZE(au1100_mmc1_res), .resource = au1100_mmc1_res, }; +#endif /* CONFIG_MMC_AU1X */ /******************************************************************************/ @@ -432,8 +434,10 @@ static struct platform_device *db1x00_devs[] = { static struct platform_device *db1100_devs[] = { &au1100_lcd_device, +#ifdef CONFIG_MMC_AU1X &db1100_mmc0_dev, &db1100_mmc1_dev, +#endif }; int __init db1000_dev_setup(void) diff --git a/arch/mips/alchemy/devboards/db1200.c b/arch/mips/alchemy/devboards/db1200.c index 76080c71a2a7b..f521874ebb07b 100644 --- a/arch/mips/alchemy/devboards/db1200.c +++ b/arch/mips/alchemy/devboards/db1200.c @@ -326,6 +326,7 @@ static struct platform_device db1200_ide_dev = { /**********************************************************************/ +#ifdef CONFIG_MMC_AU1X /* SD carddetects: they're supposed to be edge-triggered, but ack * doesn't seem to work (CPLD Rev 2). Instead, the screaming one * is disabled and its counterpart enabled. The 200ms timeout is @@ -584,6 +585,7 @@ static struct platform_device pb1200_mmc1_dev = { .num_resources = ARRAY_SIZE(au1200_mmc1_res), .resource = au1200_mmc1_res, }; +#endif /* CONFIG_MMC_AU1X */ /**********************************************************************/ @@ -751,7 +753,9 @@ static struct platform_device db1200_audiodma_dev = { static struct platform_device *db1200_devs[] __initdata = { NULL, /* PSC0, selected by S6.8 */ &db1200_ide_dev, +#ifdef CONFIG_MMC_AU1X &db1200_mmc0_dev, +#endif &au1200_lcd_dev, &db1200_eth_dev, &db1200_nand_dev, @@ -762,7 +766,9 @@ static struct platform_device *db1200_devs[] __initdata = { }; static struct platform_device *pb1200_devs[] __initdata = { +#ifdef CONFIG_MMC_AU1X &pb1200_mmc1_dev, +#endif }; /* Some peripheral base addresses differ on the PB1200 */ diff --git a/arch/mips/alchemy/devboards/db1300.c b/arch/mips/alchemy/devboards/db1300.c index ca71e5ed51abd..c965d00074818 100644 --- a/arch/mips/alchemy/devboards/db1300.c +++ b/arch/mips/alchemy/devboards/db1300.c @@ -450,6 +450,7 @@ static struct platform_device db1300_ide_dev = { /**********************************************************************/ +#ifdef CONFIG_MMC_AU1X static irqreturn_t db1300_mmc_cd(int irq, void *ptr) { disable_irq_nosync(irq); @@ -632,6 +633,7 @@ static struct platform_device db1300_sd0_dev = { .resource = au1300_sd0_res, .num_resources = ARRAY_SIZE(au1300_sd0_res), }; +#endif /* CONFIG_MMC_AU1X */ /**********************************************************************/ @@ -776,8 +778,10 @@ static struct platform_device *db1300_dev[] __initdata = { &db1300_5waysw_dev, &db1300_nand_dev, &db1300_ide_dev, +#ifdef CONFIG_MMC_AU1X &db1300_sd0_dev, &db1300_sd1_dev, +#endif &db1300_lcd_dev, &db1300_ac97_dev, &db1300_i2s_dev, diff --git a/arch/mips/include/asm/mach-loongson64/boot_param.h b/arch/mips/include/asm/mach-loongson64/boot_param.h index 035b1a69e2d00..c454ef734c45c 100644 --- a/arch/mips/include/asm/mach-loongson64/boot_param.h +++ b/arch/mips/include/asm/mach-loongson64/boot_param.h @@ -117,7 +117,8 @@ struct irq_source_routing_table { u64 pci_io_start_addr; u64 pci_io_end_addr; u64 pci_config_addr; - u32 dma_mask_bits; + u16 dma_mask_bits; + u16 dma_noncoherent; } __packed; struct interface_info { diff --git a/arch/mips/kvm/mmu.c b/arch/mips/kvm/mmu.c index 1bfd1b501d823..72b5249452273 100644 --- a/arch/mips/kvm/mmu.c +++ b/arch/mips/kvm/mmu.c @@ -593,7 +593,7 @@ static int kvm_mips_map_page(struct kvm_vcpu *vcpu, unsigned long gpa, gfn_t gfn = gpa >> PAGE_SHIFT; int srcu_idx, err; kvm_pfn_t pfn; - pte_t *ptep, entry, old_pte; + pte_t *ptep, entry; bool writeable; unsigned long prot_bits; unsigned long mmu_seq; @@ -665,7 +665,6 @@ static int kvm_mips_map_page(struct kvm_vcpu *vcpu, unsigned long gpa, entry = pfn_pte(pfn, __pgprot(prot_bits)); /* Write the PTE */ - old_pte = *ptep; set_pte(ptep, entry); err = 0; diff --git a/arch/mips/loongson64/env.c b/arch/mips/loongson64/env.c index c961e2999f15a..ef3750a6ffacf 100644 --- a/arch/mips/loongson64/env.c +++ b/arch/mips/loongson64/env.c @@ -13,6 +13,8 @@ * Copyright (C) 2009 Lemote Inc. * Author: Wu Zhangjin, wuzhangjin@gmail.com */ + +#include #include #include #include @@ -147,8 +149,14 @@ void __init prom_lefi_init_env(void) loongson_sysconf.dma_mask_bits = eirq_source->dma_mask_bits; if (loongson_sysconf.dma_mask_bits < 32 || - loongson_sysconf.dma_mask_bits > 64) + loongson_sysconf.dma_mask_bits > 64) { loongson_sysconf.dma_mask_bits = 32; + dma_default_coherent = true; + } else { + dma_default_coherent = !eirq_source->dma_noncoherent; + } + + pr_info("Firmware: Coherent DMA: %s\n", dma_default_coherent ? "on" : "off"); loongson_sysconf.restart_addr = boot_p->reset_system.ResetWarm; loongson_sysconf.poweroff_addr = boot_p->reset_system.Shutdown; diff --git a/arch/mips/loongson64/init.c b/arch/mips/loongson64/init.c index 76e0a9636a0ed..c1498fdd5c79c 100644 --- a/arch/mips/loongson64/init.c +++ b/arch/mips/loongson64/init.c @@ -86,6 +86,11 @@ void __init szmem(unsigned int node) break; } } + + /* Reserve vgabios if it comes from firmware */ + if (loongson_sysconf.vgabios_addr) + memblock_reserve(virt_to_phys((void *)loongson_sysconf.vgabios_addr), + SZ_256K); } #ifndef CONFIG_NUMA diff --git a/arch/mips/vdso/Makefile b/arch/mips/vdso/Makefile index 1b2ea34c3d3bb..ed090ef30757c 100644 --- a/arch/mips/vdso/Makefile +++ b/arch/mips/vdso/Makefile @@ -68,7 +68,7 @@ KCOV_INSTRUMENT := n # Check that we don't have PIC 'jalr t9' calls left quiet_cmd_vdso_mips_check = VDSOCHK $@ - cmd_vdso_mips_check = if $(OBJDUMP) --disassemble $@ | egrep -h "jalr.*t9" > /dev/null; \ + cmd_vdso_mips_check = if $(OBJDUMP) --disassemble $@ | grep -E -h "jalr.*t9" > /dev/null; \ then (echo >&2 "$@: PIC 'jalr t9' calls are not supported"; \ rm -f $@; /bin/false); fi diff --git a/arch/parisc/include/asm/ldcw.h b/arch/parisc/include/asm/ldcw.h index 6d28b5514699a..10a061d6899cd 100644 --- a/arch/parisc/include/asm/ldcw.h +++ b/arch/parisc/include/asm/ldcw.h @@ -2,14 +2,28 @@ #ifndef __PARISC_LDCW_H #define __PARISC_LDCW_H -#ifndef CONFIG_PA20 /* Because kmalloc only guarantees 8-byte alignment for kmalloc'd data, and GCC only guarantees 8-byte alignment for stack locals, we can't be assured of 16-byte alignment for atomic lock data even if we specify "__attribute ((aligned(16)))" in the type declaration. So, we use a struct containing an array of four ints for the atomic lock type and dynamically select the 16-byte aligned int from the array - for the semaphore. */ + for the semaphore. */ + +/* From: "Jim Hull" + I've attached a summary of the change, but basically, for PA 2.0, as + long as the ",CO" (coherent operation) completer is implemented, then the + 16-byte alignment requirement for ldcw and ldcd is relaxed, and instead + they only require "natural" alignment (4-byte for ldcw, 8-byte for + ldcd). + + Although the cache control hint is accepted by all PA 2.0 processors, + it is only implemented on PA8800/PA8900 CPUs. Prior PA8X00 CPUs still + require 16-byte alignment. If the address is unaligned, the operation + of the instruction is undefined. The ldcw instruction does not generate + unaligned data reference traps so misaligned accesses are not detected. + This hid the problem for years. So, restore the 16-byte alignment dropped + by Kyle McMartin in "Remove __ldcw_align for PA-RISC 2.0 processors". */ #define __PA_LDCW_ALIGNMENT 16 #define __PA_LDCW_ALIGN_ORDER 4 @@ -19,22 +33,12 @@ & ~(__PA_LDCW_ALIGNMENT - 1); \ (volatile unsigned int *) __ret; \ }) -#define __LDCW "ldcw" -#else /*CONFIG_PA20*/ -/* From: "Jim Hull" - I've attached a summary of the change, but basically, for PA 2.0, as - long as the ",CO" (coherent operation) completer is specified, then the - 16-byte alignment requirement for ldcw and ldcd is relaxed, and instead - they only require "natural" alignment (4-byte for ldcw, 8-byte for - ldcd). */ - -#define __PA_LDCW_ALIGNMENT 4 -#define __PA_LDCW_ALIGN_ORDER 2 -#define __ldcw_align(a) (&(a)->slock) +#ifdef CONFIG_PA20 #define __LDCW "ldcw,co" - -#endif /*!CONFIG_PA20*/ +#else +#define __LDCW "ldcw" +#endif /* LDCW, the only atomic read-write operation PA-RISC has. *sigh*. We don't explicitly expose that "*a" may be written as reload diff --git a/arch/parisc/include/asm/led.h b/arch/parisc/include/asm/led.h index 6de13d08a3886..b70b9094fb7cd 100644 --- a/arch/parisc/include/asm/led.h +++ b/arch/parisc/include/asm/led.h @@ -11,8 +11,8 @@ #define LED1 0x02 #define LED0 0x01 /* bottom (or furthest left) LED */ -#define LED_LAN_TX LED0 /* for LAN transmit activity */ -#define LED_LAN_RCV LED1 /* for LAN receive activity */ +#define LED_LAN_RCV LED0 /* for LAN receive activity */ +#define LED_LAN_TX LED1 /* for LAN transmit activity */ #define LED_DISK_IO LED2 /* for disk activity */ #define LED_HEARTBEAT LED3 /* heartbeat */ diff --git a/arch/parisc/include/asm/ropes.h b/arch/parisc/include/asm/ropes.h index 8e51c775c80a6..62399c7ea94a1 100644 --- a/arch/parisc/include/asm/ropes.h +++ b/arch/parisc/include/asm/ropes.h @@ -86,6 +86,9 @@ struct sba_device { struct ioc ioc[MAX_IOC]; }; +/* list of SBA's in system, see drivers/parisc/sba_iommu.c */ +extern struct sba_device *sba_list; + #define ASTRO_RUNWAY_PORT 0x582 #define IKE_MERCED_PORT 0x803 #define REO_MERCED_PORT 0x804 diff --git a/arch/parisc/include/asm/spinlock_types.h b/arch/parisc/include/asm/spinlock_types.h index ca39ee350c3f4..35c5086b74d70 100644 --- a/arch/parisc/include/asm/spinlock_types.h +++ b/arch/parisc/include/asm/spinlock_types.h @@ -3,13 +3,8 @@ #define __ASM_SPINLOCK_TYPES_H typedef struct { -#ifdef CONFIG_PA20 - volatile unsigned int slock; -# define __ARCH_SPIN_LOCK_UNLOCKED { 1 } -#else volatile unsigned int lock[4]; # define __ARCH_SPIN_LOCK_UNLOCKED { { 1, 1, 1, 1 } } -#endif } arch_spinlock_t; diff --git a/arch/parisc/include/uapi/asm/errno.h b/arch/parisc/include/uapi/asm/errno.h index 87245c584784e..8d94739d75c67 100644 --- a/arch/parisc/include/uapi/asm/errno.h +++ b/arch/parisc/include/uapi/asm/errno.h @@ -75,7 +75,6 @@ /* We now return you to your regularly scheduled HPUX. */ -#define ENOSYM 215 /* symbol does not exist in executable */ #define ENOTSOCK 216 /* Socket operation on non-socket */ #define EDESTADDRREQ 217 /* Destination address required */ #define EMSGSIZE 218 /* Message too long */ @@ -101,7 +100,6 @@ #define ETIMEDOUT 238 /* Connection timed out */ #define ECONNREFUSED 239 /* Connection refused */ #define EREFUSED ECONNREFUSED /* for HP's NFS apparently */ -#define EREMOTERELEASE 240 /* Remote peer released connection */ #define EHOSTDOWN 241 /* Host is down */ #define EHOSTUNREACH 242 /* No route to host */ diff --git a/arch/parisc/include/uapi/asm/pdc.h b/arch/parisc/include/uapi/asm/pdc.h index 15211723ebf54..ee903551ae105 100644 --- a/arch/parisc/include/uapi/asm/pdc.h +++ b/arch/parisc/include/uapi/asm/pdc.h @@ -465,6 +465,7 @@ struct pdc_model { /* for PDC_MODEL */ unsigned long arch_rev; unsigned long pot_key; unsigned long curr_key; + unsigned long width; /* default of PSW_W bit (1=enabled) */ }; struct pdc_cache_cf { /* for PDC_CACHE (I/D-caches) */ diff --git a/arch/parisc/kernel/drivers.c b/arch/parisc/kernel/drivers.c index e7ee0c0c91d35..8f12b9f318ae6 100644 --- a/arch/parisc/kernel/drivers.c +++ b/arch/parisc/kernel/drivers.c @@ -924,9 +924,9 @@ static __init void qemu_header(void) pr_info("#define PARISC_MODEL \"%s\"\n\n", boot_cpu_data.pdc.sys_model_name); + #define p ((unsigned long *)&boot_cpu_data.pdc.model) pr_info("#define PARISC_PDC_MODEL 0x%lx, 0x%lx, 0x%lx, " "0x%lx, 0x%lx, 0x%lx, 0x%lx, 0x%lx, 0x%lx\n\n", - #define p ((unsigned long *)&boot_cpu_data.pdc.model) p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7], p[8]); #undef p diff --git a/arch/parisc/kernel/entry.S b/arch/parisc/kernel/entry.S index 437c8d31f3907..02e849a65aa82 100644 --- a/arch/parisc/kernel/entry.S +++ b/arch/parisc/kernel/entry.S @@ -497,13 +497,13 @@ * to a CPU TLB 4k PFN (4k => 12 bits to shift) */ #define PAGE_ADD_SHIFT (PAGE_SHIFT-12) #define PAGE_ADD_HUGE_SHIFT (REAL_HPAGE_SHIFT-12) + #define PFN_START_BIT (63-ASM_PFN_PTE_SHIFT+(63-58)-PAGE_ADD_SHIFT) /* Drop prot bits and convert to page addr for iitlbt and idtlbt */ .macro convert_for_tlb_insert20 pte,tmp #ifdef CONFIG_HUGETLB_PAGE copy \pte,\tmp - extrd,u \tmp,(63-ASM_PFN_PTE_SHIFT)+(63-58)+PAGE_ADD_SHIFT,\ - 64-PAGE_SHIFT-PAGE_ADD_SHIFT,\pte + extrd,u \tmp,PFN_START_BIT,PFN_START_BIT+1,\pte depdi _PAGE_SIZE_ENCODING_DEFAULT,63,\ (63-58)+PAGE_ADD_SHIFT,\pte @@ -511,8 +511,7 @@ depdi _HUGE_PAGE_SIZE_ENCODING_DEFAULT,63,\ (63-58)+PAGE_ADD_HUGE_SHIFT,\pte #else /* Huge pages disabled */ - extrd,u \pte,(63-ASM_PFN_PTE_SHIFT)+(63-58)+PAGE_ADD_SHIFT,\ - 64-PAGE_SHIFT-PAGE_ADD_SHIFT,\pte + extrd,u \pte,PFN_START_BIT,PFN_START_BIT+1,\pte depdi _PAGE_SIZE_ENCODING_DEFAULT,63,\ (63-58)+PAGE_ADD_SHIFT,\pte #endif diff --git a/arch/parisc/kernel/head.S b/arch/parisc/kernel/head.S index 598d0938449da..2f95c2429f772 100644 --- a/arch/parisc/kernel/head.S +++ b/arch/parisc/kernel/head.S @@ -69,9 +69,8 @@ $bss_loop: stw,ma %arg2,4(%r1) stw,ma %arg3,4(%r1) -#if !defined(CONFIG_64BIT) && defined(CONFIG_PA20) - /* This 32-bit kernel was compiled for PA2.0 CPUs. Check current CPU - * and halt kernel if we detect a PA1.x CPU. */ +#if defined(CONFIG_PA20) + /* check for 64-bit capable CPU as required by current kernel */ ldi 32,%r10 mtctl %r10,%cr11 .level 2.0 diff --git a/arch/parisc/kernel/irq.c b/arch/parisc/kernel/irq.c index e6cc38ef69458..5d9044e65a1a6 100644 --- a/arch/parisc/kernel/irq.c +++ b/arch/parisc/kernel/irq.c @@ -386,7 +386,7 @@ union irq_stack_union { volatile unsigned int lock[1]; }; -DEFINE_PER_CPU(union irq_stack_union, irq_stack_union) = { +static DEFINE_PER_CPU(union irq_stack_union, irq_stack_union) = { .slock = { 1,1,1,1 }, }; #endif diff --git a/arch/parisc/kernel/processor.c b/arch/parisc/kernel/processor.c index b861bbbc87178..ccdbcfdfe4e21 100644 --- a/arch/parisc/kernel/processor.c +++ b/arch/parisc/kernel/processor.c @@ -372,10 +372,18 @@ int show_cpuinfo (struct seq_file *m, void *v) { unsigned long cpu; + char cpu_name[60], *p; + + /* strip PA path from CPU name to not confuse lscpu */ + strlcpy(cpu_name, per_cpu(cpu_data, 0).dev->name, sizeof(cpu_name)); + p = strrchr(cpu_name, '['); + if (p) + *(--p) = 0; for_each_online_cpu(cpu) { - const struct cpuinfo_parisc *cpuinfo = &per_cpu(cpu_data, cpu); #ifdef CONFIG_SMP + const struct cpuinfo_parisc *cpuinfo = &per_cpu(cpu_data, cpu); + if (0 == cpuinfo->hpa) continue; #endif @@ -420,8 +428,7 @@ show_cpuinfo (struct seq_file *m, void *v) seq_printf(m, "model\t\t: %s - %s\n", boot_cpu_data.pdc.sys_model_name, - cpuinfo->dev ? - cpuinfo->dev->name : "Unknown"); + cpu_name); seq_printf(m, "hversion\t: 0x%08x\n" "sversion\t: 0x%08x\n", diff --git a/arch/powerpc/include/asm/book3s/32/kup.h b/arch/powerpc/include/asm/book3s/32/kup.h index 9f38040f0641d..e3db5ed4b255e 100644 --- a/arch/powerpc/include/asm/book3s/32/kup.h +++ b/arch/powerpc/include/asm/book3s/32/kup.h @@ -12,7 +12,6 @@ #include extern struct static_key_false disable_kuap_key; -extern struct static_key_false disable_kuep_key; static __always_inline bool kuap_is_disabled(void) { @@ -21,41 +20,7 @@ static __always_inline bool kuap_is_disabled(void) static __always_inline bool kuep_is_disabled(void) { - return !IS_ENABLED(CONFIG_PPC_KUEP) || static_branch_unlikely(&disable_kuep_key); -} - -static inline void kuep_lock(void) -{ - if (kuep_is_disabled()) - return; - - update_user_segments(mfsr(0) | SR_NX); - /* - * This isync() shouldn't be necessary as the kernel is not excepted to - * run any instruction in userspace soon after the update of segments, - * but hash based cores (at least G3) seem to exhibit a random - * behaviour when the 'isync' is not there. 603 cores don't have this - * behaviour so don't do the 'isync' as it saves several CPU cycles. - */ - if (mmu_has_feature(MMU_FTR_HPTE_TABLE)) - isync(); /* Context sync required after mtsr() */ -} - -static inline void kuep_unlock(void) -{ - if (kuep_is_disabled()) - return; - - update_user_segments(mfsr(0) & ~SR_NX); - /* - * This isync() shouldn't be necessary as a 'rfi' will soon be executed - * to return to userspace, but hash based cores (at least G3) seem to - * exhibit a random behaviour when the 'isync' is not there. 603 cores - * don't have this behaviour so don't do the 'isync' as it saves several - * CPU cycles. - */ - if (mmu_has_feature(MMU_FTR_HPTE_TABLE)) - isync(); /* Context sync required after mtsr() */ + return !IS_ENABLED(CONFIG_PPC_KUEP); } #ifdef CONFIG_PPC_KUAP diff --git a/arch/powerpc/include/asm/book3s/32/mmu-hash.h b/arch/powerpc/include/asm/book3s/32/mmu-hash.h index 94ad7acfd0565..d4bf2a67396be 100644 --- a/arch/powerpc/include/asm/book3s/32/mmu-hash.h +++ b/arch/powerpc/include/asm/book3s/32/mmu-hash.h @@ -64,7 +64,82 @@ struct ppc_bat { #define SR_KP 0x20000000 /* User key */ #define SR_KS 0x40000000 /* Supervisor key */ -#ifndef __ASSEMBLY__ +#ifdef __ASSEMBLY__ + +#include + +.macro uus_addi sr reg1 reg2 imm + .if NUM_USER_SEGMENTS > \sr + addi \reg1,\reg2,\imm + .endif +.endm + +.macro uus_mtsr sr reg1 + .if NUM_USER_SEGMENTS > \sr + mtsr \sr, \reg1 + .endif +.endm + +/* + * This isync() shouldn't be necessary as the kernel is not excepted to run + * any instruction in userspace soon after the update of segments and 'rfi' + * instruction is used to return to userspace, but hash based cores + * (at least G3) seem to exhibit a random behaviour when the 'isync' is not + * there. 603 cores don't have this behaviour so don't do the 'isync' as it + * saves several CPU cycles. + */ +.macro uus_isync +#ifdef CONFIG_PPC_BOOK3S_604 +BEGIN_MMU_FTR_SECTION + isync +END_MMU_FTR_SECTION_IFSET(MMU_FTR_HPTE_TABLE) +#endif +.endm + +.macro update_user_segments_by_4 tmp1 tmp2 tmp3 tmp4 + uus_addi 1, \tmp2, \tmp1, 0x111 + uus_addi 2, \tmp3, \tmp1, 0x222 + uus_addi 3, \tmp4, \tmp1, 0x333 + + uus_mtsr 0, \tmp1 + uus_mtsr 1, \tmp2 + uus_mtsr 2, \tmp3 + uus_mtsr 3, \tmp4 + + uus_addi 4, \tmp1, \tmp1, 0x444 + uus_addi 5, \tmp2, \tmp2, 0x444 + uus_addi 6, \tmp3, \tmp3, 0x444 + uus_addi 7, \tmp4, \tmp4, 0x444 + + uus_mtsr 4, \tmp1 + uus_mtsr 5, \tmp2 + uus_mtsr 6, \tmp3 + uus_mtsr 7, \tmp4 + + uus_addi 8, \tmp1, \tmp1, 0x444 + uus_addi 9, \tmp2, \tmp2, 0x444 + uus_addi 10, \tmp3, \tmp3, 0x444 + uus_addi 11, \tmp4, \tmp4, 0x444 + + uus_mtsr 8, \tmp1 + uus_mtsr 9, \tmp2 + uus_mtsr 10, \tmp3 + uus_mtsr 11, \tmp4 + + uus_addi 12, \tmp1, \tmp1, 0x444 + uus_addi 13, \tmp2, \tmp2, 0x444 + uus_addi 14, \tmp3, \tmp3, 0x444 + uus_addi 15, \tmp4, \tmp4, 0x444 + + uus_mtsr 12, \tmp1 + uus_mtsr 13, \tmp2 + uus_mtsr 14, \tmp3 + uus_mtsr 15, \tmp4 + + uus_isync +.endm + +#else /* * This macro defines the mapping from contexts to VSIDs (virtual diff --git a/arch/powerpc/include/asm/interrupt.h b/arch/powerpc/include/asm/interrupt.h index a07960066b5fa..e592e65e7665c 100644 --- a/arch/powerpc/include/asm/interrupt.h +++ b/arch/powerpc/include/asm/interrupt.h @@ -139,12 +139,10 @@ static inline void interrupt_enter_prepare(struct pt_regs *regs, struct interrup if (!arch_irq_disabled_regs(regs)) trace_hardirqs_off(); - if (user_mode(regs)) { - kuep_lock(); + if (user_mode(regs)) account_cpu_user_entry(); - } else { + else kuap_save_and_lock(regs); - } #endif #ifdef CONFIG_PPC64 diff --git a/arch/powerpc/include/asm/kup.h b/arch/powerpc/include/asm/kup.h index 1df763002726a..34ff86e3686ea 100644 --- a/arch/powerpc/include/asm/kup.h +++ b/arch/powerpc/include/asm/kup.h @@ -38,11 +38,6 @@ void setup_kuep(bool disabled); static inline void setup_kuep(bool disabled) { } #endif /* CONFIG_PPC_KUEP */ -#ifndef CONFIG_PPC_BOOK3S_32 -static inline void kuep_lock(void) { } -static inline void kuep_unlock(void) { } -#endif - #ifdef CONFIG_PPC_KUAP void setup_kuap(bool disabled); #else diff --git a/arch/powerpc/include/asm/lppaca.h b/arch/powerpc/include/asm/lppaca.h index c390ec377baed..1412e643122e4 100644 --- a/arch/powerpc/include/asm/lppaca.h +++ b/arch/powerpc/include/asm/lppaca.h @@ -45,6 +45,7 @@ #include #include #include +#include /* * The lppaca is the "virtual processor area" registered with the hypervisor, @@ -123,13 +124,23 @@ struct lppaca { */ #define LPPACA_OLD_SHARED_PROC 2 -static inline bool lppaca_shared_proc(struct lppaca *l) +#ifdef CONFIG_PPC_PSERIES +/* + * All CPUs should have the same shared proc value, so directly access the PACA + * to avoid false positives from DEBUG_PREEMPT. + */ +static inline bool lppaca_shared_proc(void) { + struct lppaca *l = local_paca->lppaca_ptr; + if (!firmware_has_feature(FW_FEATURE_SPLPAR)) return false; return !!(l->__old_status & LPPACA_OLD_SHARED_PROC); } +#define get_lppaca() (get_paca()->lppaca_ptr) +#endif + /* * SLB shadow buffer structure as defined in the PAPR. The save_area * contains adjacent ESID and VSID pairs for each shadowed SLB. The diff --git a/arch/powerpc/include/asm/mem_encrypt.h b/arch/powerpc/include/asm/mem_encrypt.h index ba9dab07c1bed..2f26b8fc8d297 100644 --- a/arch/powerpc/include/asm/mem_encrypt.h +++ b/arch/powerpc/include/asm/mem_encrypt.h @@ -10,11 +10,6 @@ #include -static inline bool mem_encrypt_active(void) -{ - return is_secure_guest(); -} - static inline bool force_dma_unencrypted(struct device *dev) { return is_secure_guest(); diff --git a/arch/powerpc/include/asm/nohash/32/pte-40x.h b/arch/powerpc/include/asm/nohash/32/pte-40x.h index 2d3153cfc0d79..acf61242e85bf 100644 --- a/arch/powerpc/include/asm/nohash/32/pte-40x.h +++ b/arch/powerpc/include/asm/nohash/32/pte-40x.h @@ -69,9 +69,6 @@ #define _PTE_NONE_MASK 0 -/* Until my rework is finished, 40x still needs atomic PTE updates */ -#define PTE_ATOMIC_UPDATES 1 - #define _PAGE_BASE_NC (_PAGE_PRESENT | _PAGE_ACCESSED) #define _PAGE_BASE (_PAGE_BASE_NC) diff --git a/arch/powerpc/include/asm/nohash/32/pte-8xx.h b/arch/powerpc/include/asm/nohash/32/pte-8xx.h index 1a89ebdc3acc9..0238e6bd0d6c1 100644 --- a/arch/powerpc/include/asm/nohash/32/pte-8xx.h +++ b/arch/powerpc/include/asm/nohash/32/pte-8xx.h @@ -94,6 +94,13 @@ static inline pte_t pte_wrprotect(pte_t pte) #define pte_wrprotect pte_wrprotect +static inline int pte_read(pte_t pte) +{ + return (pte_val(pte) & _PAGE_RO) != _PAGE_NA; +} + +#define pte_read pte_read + static inline int pte_write(pte_t pte) { return !(pte_val(pte) & _PAGE_RO); diff --git a/arch/powerpc/include/asm/nohash/64/pgtable.h b/arch/powerpc/include/asm/nohash/64/pgtable.h index 2225991c69b55..6ad4714352c7a 100644 --- a/arch/powerpc/include/asm/nohash/64/pgtable.h +++ b/arch/powerpc/include/asm/nohash/64/pgtable.h @@ -209,7 +209,7 @@ static inline int __ptep_test_and_clear_young(struct mm_struct *mm, { unsigned long old; - if (pte_young(*ptep)) + if (!pte_young(*ptep)) return 0; old = pte_update(mm, addr, ptep, _PAGE_ACCESSED, 0, 0); return (old & _PAGE_ACCESSED) != 0; diff --git a/arch/powerpc/include/asm/nohash/pgtable.h b/arch/powerpc/include/asm/nohash/pgtable.h index ac75f4ab0dba1..7ad1d1b042a60 100644 --- a/arch/powerpc/include/asm/nohash/pgtable.h +++ b/arch/powerpc/include/asm/nohash/pgtable.h @@ -45,7 +45,9 @@ static inline int pte_write(pte_t pte) return pte_val(pte) & _PAGE_RW; } #endif +#ifndef pte_read static inline int pte_read(pte_t pte) { return 1; } +#endif static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } static inline int pte_special(pte_t pte) { return pte_val(pte) & _PAGE_SPECIAL; } static inline int pte_none(pte_t pte) { return (pte_val(pte) & ~_PTE_NONE_MASK) == 0; } diff --git a/arch/powerpc/include/asm/paca.h b/arch/powerpc/include/asm/paca.h index c5c9e25153152..02c089c5493ad 100644 --- a/arch/powerpc/include/asm/paca.h +++ b/arch/powerpc/include/asm/paca.h @@ -14,7 +14,6 @@ #include #include -#include #include #include #ifdef CONFIG_PPC_BOOK3E @@ -46,14 +45,11 @@ extern unsigned int debug_smp_processor_id(void); /* from linux/smp.h */ #define get_paca() local_paca #endif -#ifdef CONFIG_PPC_PSERIES -#define get_lppaca() (get_paca()->lppaca_ptr) -#endif - #define get_slb_shadow() (get_paca()->slb_shadow_ptr) struct task_struct; struct rtas_args; +struct lppaca; /* * Defines the layout of the paca. diff --git a/arch/powerpc/include/asm/paravirt.h b/arch/powerpc/include/asm/paravirt.h index b325022ffa2b0..0a333ac716e0b 100644 --- a/arch/powerpc/include/asm/paravirt.h +++ b/arch/powerpc/include/asm/paravirt.h @@ -6,6 +6,7 @@ #include #ifdef CONFIG_PPC64 #include +#include #include #endif diff --git a/arch/powerpc/include/asm/plpar_wrappers.h b/arch/powerpc/include/asm/plpar_wrappers.h index 83e0f701ebc67..217d8fb246354 100644 --- a/arch/powerpc/include/asm/plpar_wrappers.h +++ b/arch/powerpc/include/asm/plpar_wrappers.h @@ -9,6 +9,7 @@ #include #include +#include #include static inline long poll_pending(void) diff --git a/arch/powerpc/kernel/entry_32.S b/arch/powerpc/kernel/entry_32.S index c62dd98159653..3eb3c74e402b5 100644 --- a/arch/powerpc/kernel/entry_32.S +++ b/arch/powerpc/kernel/entry_32.S @@ -73,6 +73,34 @@ prepare_transfer_to_handler: _ASM_NOKPROBE_SYMBOL(prepare_transfer_to_handler) #endif /* CONFIG_PPC_BOOK3S_32 || CONFIG_E500 */ +#if defined(CONFIG_PPC_KUEP) && defined(CONFIG_PPC_BOOK3S_32) + .globl __kuep_lock +__kuep_lock: + mfsr r9,0 + rlwinm r9,r9,0,8,3 + oris r9,r9,SR_NX@h + update_user_segments_by_4 r9, r10, r11, r12 + blr + +__kuep_unlock: + mfsr r9,0 + rlwinm r9,r9,0,8,2 + update_user_segments_by_4 r9, r10, r11, r12 + blr + +.macro kuep_lock + bl __kuep_lock +.endm +.macro kuep_unlock + bl __kuep_unlock +.endm +#else +.macro kuep_lock +.endm +.macro kuep_unlock +.endm +#endif + .globl transfer_to_syscall transfer_to_syscall: stw r11, GPR1(r1) @@ -93,6 +121,7 @@ transfer_to_syscall: SAVE_GPRS(3, 8, r1) addi r2,r10,-THREAD SAVE_NVGPRS(r1) + kuep_lock /* Calling convention has r9 = orig r0, r10 = regs */ addi r10,r1,STACK_FRAME_OVERHEAD @@ -107,8 +136,10 @@ ret_from_syscall: lis r4,icache_44x_need_flush@ha lwz r5,icache_44x_need_flush@l(r4) cmplwi cr0,r5,0 - bne- 2f + bne- .L44x_icache_flush #endif /* CONFIG_PPC_47x */ +.L44x_icache_flush_return: + kuep_unlock lwz r4,_LINK(r1) lwz r5,_CCR(r1) mtlr r4 @@ -143,10 +174,11 @@ syscall_exit_finish: b 1b #ifdef CONFIG_44x -2: li r7,0 +.L44x_icache_flush: + li r7,0 iccci r0,r0 stw r7,icache_44x_need_flush@l(r4) - b 1b + b .L44x_icache_flush_return #endif /* CONFIG_44x */ .globl ret_from_fork @@ -272,6 +304,7 @@ interrupt_return: beq .Lkernel_interrupt_return bl interrupt_exit_user_prepare cmpwi r3,0 + kuep_unlock bne- .Lrestore_nvgprs .Lfast_user_interrupt_return: diff --git a/arch/powerpc/kernel/fadump.c b/arch/powerpc/kernel/fadump.c index ad1c4575c61ce..d496dc5151aa1 100644 --- a/arch/powerpc/kernel/fadump.c +++ b/arch/powerpc/kernel/fadump.c @@ -642,6 +642,7 @@ int __init fadump_reserve_mem(void) return ret; error_out: fw_dump.fadump_enabled = 0; + fw_dump.reserve_dump_area_size = 0; return 0; } diff --git a/arch/powerpc/kernel/fpu.S b/arch/powerpc/kernel/fpu.S index ba4afe3b5a9cc..294abd2cd526e 100644 --- a/arch/powerpc/kernel/fpu.S +++ b/arch/powerpc/kernel/fpu.S @@ -23,6 +23,15 @@ #include #ifdef CONFIG_VSX +#define __REST_1FPVSR(n,c,base) \ +BEGIN_FTR_SECTION \ + b 2f; \ +END_FTR_SECTION_IFSET(CPU_FTR_VSX); \ + REST_FPR(n,base); \ + b 3f; \ +2: REST_VSR(n,c,base); \ +3: + #define __REST_32FPVSRS(n,c,base) \ BEGIN_FTR_SECTION \ b 2f; \ @@ -41,9 +50,11 @@ END_FTR_SECTION_IFSET(CPU_FTR_VSX); \ 2: SAVE_32VSRS(n,c,base); \ 3: #else +#define __REST_1FPVSR(n,b,base) REST_FPR(n, base) #define __REST_32FPVSRS(n,b,base) REST_32FPRS(n, base) #define __SAVE_32FPVSRS(n,b,base) SAVE_32FPRS(n, base) #endif +#define REST_1FPVSR(n,c,base) __REST_1FPVSR(n,__REG_##c,__REG_##base) #define REST_32FPVSRS(n,c,base) __REST_32FPVSRS(n,__REG_##c,__REG_##base) #define SAVE_32FPVSRS(n,c,base) __SAVE_32FPVSRS(n,__REG_##c,__REG_##base) @@ -67,6 +78,7 @@ _GLOBAL(store_fp_state) SAVE_32FPVSRS(0, R4, R3) mffs fr0 stfd fr0,FPSTATE_FPSCR(r3) + REST_1FPVSR(0, R4, R3) blr EXPORT_SYMBOL(store_fp_state) @@ -133,4 +145,5 @@ _GLOBAL(save_fpu) 2: SAVE_32FPVSRS(0, R4, R6) mffs fr0 stfd fr0,FPSTATE_FPSCR(r6) + REST_1FPVSR(0, R4, R6) blr diff --git a/arch/powerpc/kernel/head_32.h b/arch/powerpc/kernel/head_32.h index 261c79bdbe53f..c3286260a7d1c 100644 --- a/arch/powerpc/kernel/head_32.h +++ b/arch/powerpc/kernel/head_32.h @@ -135,6 +135,12 @@ _ASM_NOKPROBE_SYMBOL(\name\()_virt) andi. r12,r9,MSR_PR bne 777f bl prepare_transfer_to_handler +#ifdef CONFIG_PPC_KUEP + b 778f +777: + bl __kuep_lock +778: +#endif 777: #endif .endm diff --git a/arch/powerpc/kernel/head_book3s_32.S b/arch/powerpc/kernel/head_book3s_32.S index 68e5c0a7e99d1..fa84744d6b248 100644 --- a/arch/powerpc/kernel/head_book3s_32.S +++ b/arch/powerpc/kernel/head_book3s_32.S @@ -931,7 +931,11 @@ END_MMU_FTR_SECTION_IFSET(MMU_FTR_USE_HIGH_BATS) _GLOBAL(load_segment_registers) li r0, NUM_USER_SEGMENTS /* load up user segment register values */ mtctr r0 /* for context 0 */ +#ifdef CONFIG_PPC_KUEP + lis r3, SR_NX@h /* Kp = 0, Ks = 0, VSID = 0 */ +#else li r3, 0 /* Kp = 0, Ks = 0, VSID = 0 */ +#endif li r4, 0 3: mtsrin r3, r4 addi r3, r3, 0x111 /* increment VSID */ diff --git a/arch/powerpc/kernel/head_fsl_booke.S b/arch/powerpc/kernel/head_fsl_booke.S index 0a9a0f301474d..40687e271c106 100644 --- a/arch/powerpc/kernel/head_fsl_booke.S +++ b/arch/powerpc/kernel/head_fsl_booke.S @@ -394,7 +394,7 @@ interrupt_base: #ifdef CONFIG_PPC_FPU FP_UNAVAILABLE_EXCEPTION #else - EXCEPTION(0x0800, FP_UNAVAIL, FloatingPointUnavailable, unknown_exception) + EXCEPTION(0x0800, FP_UNAVAIL, FloatingPointUnavailable, emulation_assist_interrupt) #endif /* System Call Interrupt */ diff --git a/arch/powerpc/kernel/hw_breakpoint.c b/arch/powerpc/kernel/hw_breakpoint.c index 91a3be14808b1..affb03f56a7e1 100644 --- a/arch/powerpc/kernel/hw_breakpoint.c +++ b/arch/powerpc/kernel/hw_breakpoint.c @@ -478,11 +478,13 @@ void thread_change_pc(struct task_struct *tsk, struct pt_regs *regs) struct arch_hw_breakpoint *info; int i; + preempt_disable(); + for (i = 0; i < nr_wp_slots(); i++) { if (unlikely(tsk->thread.last_hit_ubp[i])) goto reset; } - return; + goto out; reset: regs_set_return_msr(regs, regs->msr & ~MSR_SE); @@ -491,6 +493,9 @@ void thread_change_pc(struct task_struct *tsk, struct pt_regs *regs) __set_breakpoint(i, info); tsk->thread.last_hit_ubp[i] = NULL; } + +out: + preempt_enable(); } static bool is_larx_stcx_instr(int type) @@ -605,6 +610,11 @@ static void handle_p10dd1_spurious_exception(struct arch_hw_breakpoint **info, } } +/* + * Handle a DABR or DAWR exception. + * + * Called in atomic context. + */ int hw_breakpoint_handler(struct die_args *args) { bool err = false; @@ -731,6 +741,8 @@ NOKPROBE_SYMBOL(hw_breakpoint_handler); /* * Handle single-step exceptions following a DABR hit. + * + * Called in atomic context. */ static int single_step_dabr_instruction(struct die_args *args) { @@ -788,6 +800,8 @@ NOKPROBE_SYMBOL(single_step_dabr_instruction); /* * Handle debug exception notifications. + * + * Called in atomic context. */ int hw_breakpoint_exceptions_notify( struct notifier_block *unused, unsigned long val, void *data) diff --git a/arch/powerpc/kernel/hw_breakpoint_constraints.c b/arch/powerpc/kernel/hw_breakpoint_constraints.c index 675d1f66ab728..a541e3b755479 100644 --- a/arch/powerpc/kernel/hw_breakpoint_constraints.c +++ b/arch/powerpc/kernel/hw_breakpoint_constraints.c @@ -140,8 +140,13 @@ void wp_get_instr_detail(struct pt_regs *regs, struct ppc_inst *instr, int *type, int *size, unsigned long *ea) { struct instruction_op op; + int err; - if (__get_user_instr(*instr, (void __user *)regs->nip)) + pagefault_disable(); + err = __get_user_instr(*instr, (void __user *)regs->nip); + pagefault_enable(); + + if (err) return; analyse_instr(&op, regs, *instr); diff --git a/arch/powerpc/kernel/interrupt.c b/arch/powerpc/kernel/interrupt.c index e93f67c3af76b..c53725a598e5b 100644 --- a/arch/powerpc/kernel/interrupt.c +++ b/arch/powerpc/kernel/interrupt.c @@ -83,8 +83,6 @@ notrace long system_call_exception(long r3, long r4, long r5, { syscall_fn f; - kuep_lock(); - regs->orig_gpr3 = r3; if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG)) @@ -408,7 +406,6 @@ interrupt_exit_user_prepare_main(unsigned long ret, struct pt_regs *regs) /* Restore user access locks last */ kuap_user_restore(regs); - kuep_unlock(); return ret; } diff --git a/arch/powerpc/kernel/iommu.c b/arch/powerpc/kernel/iommu.c index 8bea336fa5b70..b858f186e9a70 100644 --- a/arch/powerpc/kernel/iommu.c +++ b/arch/powerpc/kernel/iommu.c @@ -172,17 +172,28 @@ static int fail_iommu_bus_notify(struct notifier_block *nb, return 0; } -static struct notifier_block fail_iommu_bus_notifier = { +/* + * PCI and VIO buses need separate notifier_block structs, since they're linked + * list nodes. Sharing a notifier_block would mean that any notifiers later + * registered for PCI buses would also get called by VIO buses and vice versa. + */ +static struct notifier_block fail_iommu_pci_bus_notifier = { .notifier_call = fail_iommu_bus_notify }; +#ifdef CONFIG_IBMVIO +static struct notifier_block fail_iommu_vio_bus_notifier = { + .notifier_call = fail_iommu_bus_notify +}; +#endif + static int __init fail_iommu_setup(void) { #ifdef CONFIG_PCI - bus_register_notifier(&pci_bus_type, &fail_iommu_bus_notifier); + bus_register_notifier(&pci_bus_type, &fail_iommu_pci_bus_notifier); #endif #ifdef CONFIG_IBMVIO - bus_register_notifier(&vio_bus_type, &fail_iommu_bus_notifier); + bus_register_notifier(&vio_bus_type, &fail_iommu_vio_bus_notifier); #endif return 0; diff --git a/arch/powerpc/kernel/setup-common.c b/arch/powerpc/kernel/setup-common.c index aac2b2081e5d3..c25cfef14af63 100644 --- a/arch/powerpc/kernel/setup-common.c +++ b/arch/powerpc/kernel/setup-common.c @@ -899,6 +899,8 @@ void __init setup_arch(char **cmdline_p) /* Parse memory topology */ mem_topology_setup(); + /* Set max_mapnr before paging_init() */ + set_max_mapnr(max_pfn); /* * Release secondary cpus out of their spinloops at 0x60 now that diff --git a/arch/powerpc/kernel/traps.c b/arch/powerpc/kernel/traps.c index a08bb7cefdc54..fe912983ced96 100644 --- a/arch/powerpc/kernel/traps.c +++ b/arch/powerpc/kernel/traps.c @@ -1148,6 +1148,7 @@ static void emulate_single_step(struct pt_regs *regs) __single_step_exception(regs); } +#ifdef CONFIG_PPC_FPU_REGS static inline int __parse_fpscr(unsigned long fpscr) { int ret = FPE_FLTUNK; @@ -1174,6 +1175,7 @@ static inline int __parse_fpscr(unsigned long fpscr) return ret; } +#endif static void parse_fpe(struct pt_regs *regs) { diff --git a/arch/powerpc/kernel/vector.S b/arch/powerpc/kernel/vector.S index ba03eedfdcd89..d2c23cf91f495 100644 --- a/arch/powerpc/kernel/vector.S +++ b/arch/powerpc/kernel/vector.S @@ -32,6 +32,7 @@ _GLOBAL(store_vr_state) mfvscr v0 li r4, VRSTATE_VSCR stvx v0, r4, r3 + lvx v0, 0, r3 blr EXPORT_SYMBOL(store_vr_state) @@ -104,6 +105,7 @@ _GLOBAL(save_altivec) mfvscr v0 li r4,VRSTATE_VSCR stvx v0,r4,r7 + lvx v0,0,r7 blr #ifdef CONFIG_VSX diff --git a/arch/powerpc/kvm/book3s_hv_ras.c b/arch/powerpc/kvm/book3s_hv_ras.c index d4bca93b79f6d..6fa634599bc90 100644 --- a/arch/powerpc/kvm/book3s_hv_ras.c +++ b/arch/powerpc/kvm/book3s_hv_ras.c @@ -9,6 +9,7 @@ #include #include #include +#include #include #include #include diff --git a/arch/powerpc/mm/book3s32/kuep.c b/arch/powerpc/mm/book3s32/kuep.c index c20733d6e02cb..bac1420d028b6 100644 --- a/arch/powerpc/mm/book3s32/kuep.c +++ b/arch/powerpc/mm/book3s32/kuep.c @@ -3,18 +3,10 @@ #include #include -struct static_key_false disable_kuep_key; - void setup_kuep(bool disabled) { - if (!disabled) - kuep_lock(); - if (smp_processor_id() != boot_cpuid) return; - if (disabled) - static_branch_enable(&disable_kuep_key); - else - pr_info("Activating Kernel Userspace Execution Prevention\n"); + pr_info("Activating Kernel Userspace Execution Prevention\n"); } diff --git a/arch/powerpc/mm/book3s64/radix_tlb.c b/arch/powerpc/mm/book3s64/radix_tlb.c index 5172d5cec2c06..6972fd5d423c0 100644 --- a/arch/powerpc/mm/book3s64/radix_tlb.c +++ b/arch/powerpc/mm/book3s64/radix_tlb.c @@ -127,21 +127,6 @@ static __always_inline void __tlbie_pid(unsigned long pid, unsigned long ric) trace_tlbie(0, 0, rb, rs, ric, prs, r); } -static __always_inline void __tlbie_pid_lpid(unsigned long pid, - unsigned long lpid, - unsigned long ric) -{ - unsigned long rb, rs, prs, r; - - rb = PPC_BIT(53); /* IS = 1 */ - rs = (pid << PPC_BITLSHIFT(31)) | (lpid & ~(PPC_BITMASK(0, 31))); - prs = 1; /* process scoped */ - r = 1; /* radix format */ - - asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1) - : : "r"(rb), "i"(r), "i"(prs), "i"(ric), "r"(rs) : "memory"); - trace_tlbie(0, 0, rb, rs, ric, prs, r); -} static __always_inline void __tlbie_lpid(unsigned long lpid, unsigned long ric) { unsigned long rb,rs,prs,r; @@ -202,23 +187,6 @@ static __always_inline void __tlbie_va(unsigned long va, unsigned long pid, trace_tlbie(0, 0, rb, rs, ric, prs, r); } -static __always_inline void __tlbie_va_lpid(unsigned long va, unsigned long pid, - unsigned long lpid, - unsigned long ap, unsigned long ric) -{ - unsigned long rb, rs, prs, r; - - rb = va & ~(PPC_BITMASK(52, 63)); - rb |= ap << PPC_BITLSHIFT(58); - rs = (pid << PPC_BITLSHIFT(31)) | (lpid & ~(PPC_BITMASK(0, 31))); - prs = 1; /* process scoped */ - r = 1; /* radix format */ - - asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1) - : : "r"(rb), "i"(r), "i"(prs), "i"(ric), "r"(rs) : "memory"); - trace_tlbie(0, 0, rb, rs, ric, prs, r); -} - static __always_inline void __tlbie_lpid_va(unsigned long va, unsigned long lpid, unsigned long ap, unsigned long ric) { @@ -264,22 +232,6 @@ static inline void fixup_tlbie_va_range(unsigned long va, unsigned long pid, } } -static inline void fixup_tlbie_va_range_lpid(unsigned long va, - unsigned long pid, - unsigned long lpid, - unsigned long ap) -{ - if (cpu_has_feature(CPU_FTR_P9_TLBIE_ERAT_BUG)) { - asm volatile("ptesync" : : : "memory"); - __tlbie_pid_lpid(0, lpid, RIC_FLUSH_TLB); - } - - if (cpu_has_feature(CPU_FTR_P9_TLBIE_STQ_BUG)) { - asm volatile("ptesync" : : : "memory"); - __tlbie_va_lpid(va, pid, lpid, ap, RIC_FLUSH_TLB); - } -} - static inline void fixup_tlbie_pid(unsigned long pid) { /* @@ -299,26 +251,6 @@ static inline void fixup_tlbie_pid(unsigned long pid) } } -static inline void fixup_tlbie_pid_lpid(unsigned long pid, unsigned long lpid) -{ - /* - * We can use any address for the invalidation, pick one which is - * probably unused as an optimisation. - */ - unsigned long va = ((1UL << 52) - 1); - - if (cpu_has_feature(CPU_FTR_P9_TLBIE_ERAT_BUG)) { - asm volatile("ptesync" : : : "memory"); - __tlbie_pid_lpid(0, lpid, RIC_FLUSH_TLB); - } - - if (cpu_has_feature(CPU_FTR_P9_TLBIE_STQ_BUG)) { - asm volatile("ptesync" : : : "memory"); - __tlbie_va_lpid(va, pid, lpid, mmu_get_ap(MMU_PAGE_64K), - RIC_FLUSH_TLB); - } -} - static inline void fixup_tlbie_lpid_va(unsigned long va, unsigned long lpid, unsigned long ap) { @@ -416,31 +348,6 @@ static inline void _tlbie_pid(unsigned long pid, unsigned long ric) asm volatile("eieio; tlbsync; ptesync": : :"memory"); } -static inline void _tlbie_pid_lpid(unsigned long pid, unsigned long lpid, - unsigned long ric) -{ - asm volatile("ptesync" : : : "memory"); - - /* - * Workaround the fact that the "ric" argument to __tlbie_pid - * must be a compile-time contraint to match the "i" constraint - * in the asm statement. - */ - switch (ric) { - case RIC_FLUSH_TLB: - __tlbie_pid_lpid(pid, lpid, RIC_FLUSH_TLB); - fixup_tlbie_pid_lpid(pid, lpid); - break; - case RIC_FLUSH_PWC: - __tlbie_pid_lpid(pid, lpid, RIC_FLUSH_PWC); - break; - case RIC_FLUSH_ALL: - default: - __tlbie_pid_lpid(pid, lpid, RIC_FLUSH_ALL); - fixup_tlbie_pid_lpid(pid, lpid); - } - asm volatile("eieio; tlbsync; ptesync" : : : "memory"); -} struct tlbiel_pid { unsigned long pid; unsigned long ric; @@ -566,20 +473,6 @@ static inline void __tlbie_va_range(unsigned long start, unsigned long end, fixup_tlbie_va_range(addr - page_size, pid, ap); } -static inline void __tlbie_va_range_lpid(unsigned long start, unsigned long end, - unsigned long pid, unsigned long lpid, - unsigned long page_size, - unsigned long psize) -{ - unsigned long addr; - unsigned long ap = mmu_get_ap(psize); - - for (addr = start; addr < end; addr += page_size) - __tlbie_va_lpid(addr, pid, lpid, ap, RIC_FLUSH_TLB); - - fixup_tlbie_va_range_lpid(addr - page_size, pid, lpid, ap); -} - static __always_inline void _tlbie_va(unsigned long va, unsigned long pid, unsigned long psize, unsigned long ric) { @@ -660,18 +553,6 @@ static inline void _tlbie_va_range(unsigned long start, unsigned long end, asm volatile("eieio; tlbsync; ptesync": : :"memory"); } -static inline void _tlbie_va_range_lpid(unsigned long start, unsigned long end, - unsigned long pid, unsigned long lpid, - unsigned long page_size, - unsigned long psize, bool also_pwc) -{ - asm volatile("ptesync" : : : "memory"); - if (also_pwc) - __tlbie_pid_lpid(pid, lpid, RIC_FLUSH_PWC); - __tlbie_va_range_lpid(start, end, pid, lpid, page_size, psize); - asm volatile("eieio; tlbsync; ptesync" : : : "memory"); -} - static inline void _tlbiel_va_range_multicast(struct mm_struct *mm, unsigned long start, unsigned long end, unsigned long pid, unsigned long page_size, @@ -1468,6 +1349,127 @@ void radix__flush_tlb_all(void) } #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE +static __always_inline void __tlbie_pid_lpid(unsigned long pid, + unsigned long lpid, + unsigned long ric) +{ + unsigned long rb, rs, prs, r; + + rb = PPC_BIT(53); /* IS = 1 */ + rs = (pid << PPC_BITLSHIFT(31)) | (lpid & ~(PPC_BITMASK(0, 31))); + prs = 1; /* process scoped */ + r = 1; /* radix format */ + + asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1) + : : "r"(rb), "i"(r), "i"(prs), "i"(ric), "r"(rs) : "memory"); + trace_tlbie(0, 0, rb, rs, ric, prs, r); +} + +static __always_inline void __tlbie_va_lpid(unsigned long va, unsigned long pid, + unsigned long lpid, + unsigned long ap, unsigned long ric) +{ + unsigned long rb, rs, prs, r; + + rb = va & ~(PPC_BITMASK(52, 63)); + rb |= ap << PPC_BITLSHIFT(58); + rs = (pid << PPC_BITLSHIFT(31)) | (lpid & ~(PPC_BITMASK(0, 31))); + prs = 1; /* process scoped */ + r = 1; /* radix format */ + + asm volatile(PPC_TLBIE_5(%0, %4, %3, %2, %1) + : : "r"(rb), "i"(r), "i"(prs), "i"(ric), "r"(rs) : "memory"); + trace_tlbie(0, 0, rb, rs, ric, prs, r); +} + +static inline void fixup_tlbie_pid_lpid(unsigned long pid, unsigned long lpid) +{ + /* + * We can use any address for the invalidation, pick one which is + * probably unused as an optimisation. + */ + unsigned long va = ((1UL << 52) - 1); + + if (cpu_has_feature(CPU_FTR_P9_TLBIE_ERAT_BUG)) { + asm volatile("ptesync" : : : "memory"); + __tlbie_pid_lpid(0, lpid, RIC_FLUSH_TLB); + } + + if (cpu_has_feature(CPU_FTR_P9_TLBIE_STQ_BUG)) { + asm volatile("ptesync" : : : "memory"); + __tlbie_va_lpid(va, pid, lpid, mmu_get_ap(MMU_PAGE_64K), + RIC_FLUSH_TLB); + } +} + +static inline void _tlbie_pid_lpid(unsigned long pid, unsigned long lpid, + unsigned long ric) +{ + asm volatile("ptesync" : : : "memory"); + + /* + * Workaround the fact that the "ric" argument to __tlbie_pid + * must be a compile-time contraint to match the "i" constraint + * in the asm statement. + */ + switch (ric) { + case RIC_FLUSH_TLB: + __tlbie_pid_lpid(pid, lpid, RIC_FLUSH_TLB); + fixup_tlbie_pid_lpid(pid, lpid); + break; + case RIC_FLUSH_PWC: + __tlbie_pid_lpid(pid, lpid, RIC_FLUSH_PWC); + break; + case RIC_FLUSH_ALL: + default: + __tlbie_pid_lpid(pid, lpid, RIC_FLUSH_ALL); + fixup_tlbie_pid_lpid(pid, lpid); + } + asm volatile("eieio; tlbsync; ptesync" : : : "memory"); +} + +static inline void fixup_tlbie_va_range_lpid(unsigned long va, + unsigned long pid, + unsigned long lpid, + unsigned long ap) +{ + if (cpu_has_feature(CPU_FTR_P9_TLBIE_ERAT_BUG)) { + asm volatile("ptesync" : : : "memory"); + __tlbie_pid_lpid(0, lpid, RIC_FLUSH_TLB); + } + + if (cpu_has_feature(CPU_FTR_P9_TLBIE_STQ_BUG)) { + asm volatile("ptesync" : : : "memory"); + __tlbie_va_lpid(va, pid, lpid, ap, RIC_FLUSH_TLB); + } +} + +static inline void __tlbie_va_range_lpid(unsigned long start, unsigned long end, + unsigned long pid, unsigned long lpid, + unsigned long page_size, + unsigned long psize) +{ + unsigned long addr; + unsigned long ap = mmu_get_ap(psize); + + for (addr = start; addr < end; addr += page_size) + __tlbie_va_lpid(addr, pid, lpid, ap, RIC_FLUSH_TLB); + + fixup_tlbie_va_range_lpid(addr - page_size, pid, lpid, ap); +} + +static inline void _tlbie_va_range_lpid(unsigned long start, unsigned long end, + unsigned long pid, unsigned long lpid, + unsigned long page_size, + unsigned long psize, bool also_pwc) +{ + asm volatile("ptesync" : : : "memory"); + if (also_pwc) + __tlbie_pid_lpid(pid, lpid, RIC_FLUSH_PWC); + __tlbie_va_range_lpid(start, end, pid, lpid, page_size, psize); + asm volatile("eieio; tlbsync; ptesync" : : : "memory"); +} + /* * Performs process-scoped invalidations for a given LPID * as part of H_RPT_INVALIDATE hcall. diff --git a/arch/powerpc/mm/book3s64/slb.c b/arch/powerpc/mm/book3s64/slb.c index f0037bcc47a0e..a4fd2901189c5 100644 --- a/arch/powerpc/mm/book3s64/slb.c +++ b/arch/powerpc/mm/book3s64/slb.c @@ -14,6 +14,7 @@ #include #include #include +#include #include #include #include diff --git a/arch/powerpc/mm/mem.c b/arch/powerpc/mm/mem.c index 6902f453c7451..01fc77564cac1 100644 --- a/arch/powerpc/mm/mem.c +++ b/arch/powerpc/mm/mem.c @@ -288,7 +288,6 @@ void __init mem_init(void) #endif high_memory = (void *) __va(max_low_pfn * PAGE_SIZE); - set_max_mapnr(max_pfn); kasan_late_init(); diff --git a/arch/powerpc/perf/core-book3s.c b/arch/powerpc/perf/core-book3s.c index 1078784b74c9b..c9fc0edf56b1c 100644 --- a/arch/powerpc/perf/core-book3s.c +++ b/arch/powerpc/perf/core-book3s.c @@ -1342,8 +1342,7 @@ static void power_pmu_disable(struct pmu *pmu) /* * Disable instruction sampling if it was enabled */ - if (cpuhw->mmcr.mmcra & MMCRA_SAMPLE_ENABLE) - val &= ~MMCRA_SAMPLE_ENABLE; + val &= ~MMCRA_SAMPLE_ENABLE; /* Disable BHRB via mmcra (BHRBRD) for p10 */ if (ppmu->flags & PPMU_ARCH_31) @@ -1354,7 +1353,7 @@ static void power_pmu_disable(struct pmu *pmu) * instruction sampling or BHRB. */ if (val != mmcra) { - mtspr(SPRN_MMCRA, mmcra); + mtspr(SPRN_MMCRA, val); mb(); isync(); } diff --git a/arch/powerpc/perf/core-fsl-emb.c b/arch/powerpc/perf/core-fsl-emb.c index ee721f420a7ba..1a53ab08447cb 100644 --- a/arch/powerpc/perf/core-fsl-emb.c +++ b/arch/powerpc/perf/core-fsl-emb.c @@ -645,7 +645,6 @@ static void perf_event_interrupt(struct pt_regs *regs) struct cpu_hw_events *cpuhw = this_cpu_ptr(&cpu_hw_events); struct perf_event *event; unsigned long val; - int found = 0; for (i = 0; i < ppmu->n_counter; ++i) { event = cpuhw->event[i]; @@ -654,7 +653,6 @@ static void perf_event_interrupt(struct pt_regs *regs) if ((int)val < 0) { if (event) { /* event has overflowed */ - found = 1; record_and_restart(event, val, regs); } else { /* @@ -672,11 +670,13 @@ static void perf_event_interrupt(struct pt_regs *regs) isync(); } -void hw_perf_event_setup(int cpu) +static int fsl_emb_pmu_prepare_cpu(unsigned int cpu) { struct cpu_hw_events *cpuhw = &per_cpu(cpu_hw_events, cpu); memset(cpuhw, 0, sizeof(*cpuhw)); + + return 0; } int register_fsl_emb_pmu(struct fsl_emb_pmu *pmu) @@ -689,6 +689,8 @@ int register_fsl_emb_pmu(struct fsl_emb_pmu *pmu) pmu->name); perf_pmu_register(&fsl_emb_pmu, "cpu", PERF_TYPE_RAW); + cpuhp_setup_state(CPUHP_PERF_POWER, "perf/powerpc:prepare", + fsl_emb_pmu_prepare_cpu, NULL); return 0; } diff --git a/arch/powerpc/perf/hv-24x7.c b/arch/powerpc/perf/hv-24x7.c index 1816f560a4652..284ccc90fb11c 100644 --- a/arch/powerpc/perf/hv-24x7.c +++ b/arch/powerpc/perf/hv-24x7.c @@ -1431,7 +1431,7 @@ static int h_24x7_event_init(struct perf_event *event) } domain = event_get_domain(event); - if (domain >= HV_PERF_DOMAIN_MAX) { + if (domain == 0 || domain >= HV_PERF_DOMAIN_MAX) { pr_devel("invalid domain %d\n", domain); return -EINVAL; } diff --git a/arch/powerpc/perf/imc-pmu.c b/arch/powerpc/perf/imc-pmu.c index b8a100b9736c7..55a853edc3bea 100644 --- a/arch/powerpc/perf/imc-pmu.c +++ b/arch/powerpc/perf/imc-pmu.c @@ -50,7 +50,7 @@ static int trace_imc_mem_size; * core and trace-imc */ static struct imc_pmu_ref imc_global_refc = { - .lock = __SPIN_LOCK_INITIALIZER(imc_global_refc.lock), + .lock = __SPIN_LOCK_UNLOCKED(imc_global_refc.lock), .id = 0, .refc = 0, }; diff --git a/arch/powerpc/platforms/cell/axon_msi.c b/arch/powerpc/platforms/cell/axon_msi.c index f630693c8de72..39b1bb53ac4ad 100644 --- a/arch/powerpc/platforms/cell/axon_msi.c +++ b/arch/powerpc/platforms/cell/axon_msi.c @@ -212,7 +212,7 @@ static int setup_msi_msg_address(struct pci_dev *dev, struct msi_msg *msg) entry = first_pci_msi_entry(dev); for (; dn; dn = of_get_next_parent(dn)) { - if (entry->msi_attrib.is_64) { + if (entry->pci.msi_attrib.is_64) { prop = of_get_property(dn, "msi-address-64", &len); if (prop) break; diff --git a/arch/powerpc/platforms/powernv/opal-prd.c b/arch/powerpc/platforms/powernv/opal-prd.c index 113bdb151f687..40e26e9f318fd 100644 --- a/arch/powerpc/platforms/powernv/opal-prd.c +++ b/arch/powerpc/platforms/powernv/opal-prd.c @@ -24,13 +24,20 @@ #include +struct opal_prd_msg { + union { + struct opal_prd_msg_header header; + DECLARE_FLEX_ARRAY(u8, data); + }; +}; + /* * The msg member must be at the end of the struct, as it's followed by the * message data. */ struct opal_prd_msg_queue_item { - struct list_head list; - struct opal_prd_msg_header msg; + struct list_head list; + struct opal_prd_msg msg; }; static struct device_node *prd_node; @@ -156,7 +163,7 @@ static ssize_t opal_prd_read(struct file *file, char __user *buf, int rc; /* we need at least a header's worth of data */ - if (count < sizeof(item->msg)) + if (count < sizeof(item->msg.header)) return -EINVAL; if (*ppos) @@ -186,7 +193,7 @@ static ssize_t opal_prd_read(struct file *file, char __user *buf, return -EINTR; } - size = be16_to_cpu(item->msg.size); + size = be16_to_cpu(item->msg.header.size); if (size > count) { err = -EINVAL; goto err_requeue; @@ -352,7 +359,7 @@ static int opal_prd_msg_notifier(struct notifier_block *nb, if (!item) return -ENOMEM; - memcpy(&item->msg, msg->params, msg_size); + memcpy(&item->msg.data, msg->params, msg_size); spin_lock_irqsave(&opal_prd_msg_queue_lock, flags); list_add_tail(&item->list, &opal_prd_msg_queue); diff --git a/arch/powerpc/platforms/powernv/pci-ioda.c b/arch/powerpc/platforms/powernv/pci-ioda.c index 624822a810193..76d6997e80bb9 100644 --- a/arch/powerpc/platforms/powernv/pci-ioda.c +++ b/arch/powerpc/platforms/powernv/pci-ioda.c @@ -2156,10 +2156,10 @@ static void pnv_msi_compose_msg(struct irq_data *d, struct msi_msg *msg) int rc; rc = __pnv_pci_ioda_msi_setup(phb, pdev, d->hwirq, - entry->msi_attrib.is_64, msg); + entry->pci.msi_attrib.is_64, msg); if (rc) dev_err(&pdev->dev, "Failed to setup %s-bit MSI #%ld : %d\n", - entry->msi_attrib.is_64 ? "64" : "32", d->hwirq, rc); + entry->pci.msi_attrib.is_64 ? "64" : "32", d->hwirq, rc); } /* diff --git a/arch/powerpc/platforms/pseries/ibmebus.c b/arch/powerpc/platforms/pseries/ibmebus.c index 7ee3ed7d6cc21..6936ffee253b2 100644 --- a/arch/powerpc/platforms/pseries/ibmebus.c +++ b/arch/powerpc/platforms/pseries/ibmebus.c @@ -451,6 +451,7 @@ static int __init ibmebus_bus_init(void) if (err) { printk(KERN_WARNING "%s: device_register returned %i\n", __func__, err); + put_device(&ibmebus_bus_device); bus_unregister(&ibmebus_bus_type); return err; diff --git a/arch/powerpc/platforms/pseries/iommu.c b/arch/powerpc/platforms/pseries/iommu.c index ec5d84b4958c5..aa5f8074e9b10 100644 --- a/arch/powerpc/platforms/pseries/iommu.c +++ b/arch/powerpc/platforms/pseries/iommu.c @@ -1241,7 +1241,6 @@ static bool enable_ddw(struct pci_dev *dev, struct device_node *pdn) u32 ddw_avail[DDW_APPLICABLE_SIZE]; struct dma_win *window; struct property *win64; - bool ddw_enabled = false; struct failed_ddw_pdn *fpdn; bool default_win_removed = false, direct_mapping = false; bool pmem_present; @@ -1256,7 +1255,6 @@ static bool enable_ddw(struct pci_dev *dev, struct device_node *pdn) if (find_existing_ddw(pdn, &dev->dev.archdata.dma_offset, &len)) { direct_mapping = (len >= max_ram_len); - ddw_enabled = true; goto out_unlock; } @@ -1411,8 +1409,8 @@ static bool enable_ddw(struct pci_dev *dev, struct device_node *pdn) dev_info(&dev->dev, "failed to map DMA window for %pOF: %d\n", dn, ret); - /* Make sure to clean DDW if any TCE was set*/ - clean_dma_window(pdn, win64->value); + /* Make sure to clean DDW if any TCE was set*/ + clean_dma_window(pdn, win64->value); goto out_del_list; } } else { @@ -1459,7 +1457,6 @@ static bool enable_ddw(struct pci_dev *dev, struct device_node *pdn) spin_unlock(&dma_win_list_lock); dev->dev.archdata.dma_offset = win_addr; - ddw_enabled = true; goto out_unlock; out_del_list: @@ -1495,10 +1492,10 @@ static bool enable_ddw(struct pci_dev *dev, struct device_node *pdn) * as RAM, then we failed to create a window to cover persistent * memory and need to set the DMA limit. */ - if (pmem_present && ddw_enabled && direct_mapping && len == max_ram_len) + if (pmem_present && direct_mapping && len == max_ram_len) dev->dev.bus_dma_limit = dev->dev.archdata.dma_offset + (1ULL << len); - return ddw_enabled && direct_mapping; + return direct_mapping; } static void pci_dma_dev_setup_pSeriesLP(struct pci_dev *dev) diff --git a/arch/powerpc/platforms/pseries/lpar.c b/arch/powerpc/platforms/pseries/lpar.c index 3df6bdfea475a..fce0237b07155 100644 --- a/arch/powerpc/platforms/pseries/lpar.c +++ b/arch/powerpc/platforms/pseries/lpar.c @@ -524,8 +524,10 @@ static ssize_t vcpudispatch_stats_write(struct file *file, const char __user *p, if (cmd) { rc = init_cpu_associativity(); - if (rc) + if (rc) { + destroy_cpu_associativity(); goto out; + } for_each_possible_cpu(cpu) { disp = per_cpu_ptr(&vcpu_disp_data, cpu); @@ -638,16 +640,8 @@ static const struct proc_ops vcpudispatch_stats_freq_proc_ops = { static int __init vcpudispatch_stats_procfs_init(void) { - /* - * Avoid smp_processor_id while preemptible. All CPUs should have - * the same value for lppaca_shared_proc. - */ - preempt_disable(); - if (!lppaca_shared_proc(get_lppaca())) { - preempt_enable(); + if (!lppaca_shared_proc()) return 0; - } - preempt_enable(); if (!proc_create("powerpc/vcpudispatch_stats", 0600, NULL, &vcpudispatch_stats_proc_ops)) diff --git a/arch/powerpc/platforms/pseries/lparcfg.c b/arch/powerpc/platforms/pseries/lparcfg.c index f71eac74ea92a..19503a8797823 100644 --- a/arch/powerpc/platforms/pseries/lparcfg.c +++ b/arch/powerpc/platforms/pseries/lparcfg.c @@ -205,7 +205,7 @@ static void parse_ppp_data(struct seq_file *m) ppp_data.active_system_procs); /* pool related entries are appropriate for shared configs */ - if (lppaca_shared_proc(get_lppaca())) { + if (lppaca_shared_proc()) { unsigned long pool_idle_time, pool_procs; seq_printf(m, "pool=%d\n", ppp_data.pool_num); @@ -529,7 +529,7 @@ static int pseries_lparcfg_data(struct seq_file *m, void *v) partition_potential_processors); seq_printf(m, "shared_processor_mode=%d\n", - lppaca_shared_proc(get_lppaca())); + lppaca_shared_proc()); #ifdef CONFIG_PPC_BOOK3S_64 seq_printf(m, "slb_size=%d\n", mmu_slb_size); diff --git a/arch/powerpc/platforms/pseries/msi.c b/arch/powerpc/platforms/pseries/msi.c index 8627362f613ee..8e287204eeae9 100644 --- a/arch/powerpc/platforms/pseries/msi.c +++ b/arch/powerpc/platforms/pseries/msi.c @@ -332,7 +332,7 @@ static int check_msix_entries(struct pci_dev *pdev) expected = 0; for_each_pci_msi_entry(entry, pdev) { - if (entry->msi_attrib.entry_nr != expected) { + if (entry->pci.msi_attrib.entry_nr != expected) { pr_debug("rtas_msi: bad MSI-X entries.\n"); return -EINVAL; } @@ -449,7 +449,7 @@ static int pseries_msi_ops_prepare(struct irq_domain *domain, struct device *dev { struct pci_dev *pdev = to_pci_dev(dev); struct msi_desc *desc = first_pci_msi_entry(pdev); - int type = desc->msi_attrib.is_msix ? PCI_CAP_ID_MSIX : PCI_CAP_ID_MSI; + int type = desc->pci.msi_attrib.is_msix ? PCI_CAP_ID_MSIX : PCI_CAP_ID_MSI; return rtas_prepare_msi_irqs(pdev, nvec, type, arg); } @@ -580,7 +580,7 @@ static int pseries_irq_domain_alloc(struct irq_domain *domain, unsigned int virq int hwirq; int i, ret; - hwirq = rtas_query_irq_number(pci_get_pdn(pdev), desc->msi_attrib.entry_nr); + hwirq = rtas_query_irq_number(pci_get_pdn(pdev), desc->pci.msi_attrib.entry_nr); if (hwirq < 0) { dev_err(&pdev->dev, "Failed to query HW IRQ: %d\n", hwirq); return hwirq; diff --git a/arch/powerpc/platforms/pseries/setup.c b/arch/powerpc/platforms/pseries/setup.c index c2b3752684b5f..d25053755c8b8 100644 --- a/arch/powerpc/platforms/pseries/setup.c +++ b/arch/powerpc/platforms/pseries/setup.c @@ -816,7 +816,7 @@ static void __init pSeries_setup_arch(void) if (firmware_has_feature(FW_FEATURE_LPAR)) { vpa_init(boot_cpuid); - if (lppaca_shared_proc(get_lppaca())) { + if (lppaca_shared_proc()) { static_branch_enable(&shared_processor); pv_spinlocks_init(); } diff --git a/arch/powerpc/platforms/pseries/svm.c b/arch/powerpc/platforms/pseries/svm.c index 87f001b4c4e4f..c083ecbbae4d6 100644 --- a/arch/powerpc/platforms/pseries/svm.c +++ b/arch/powerpc/platforms/pseries/svm.c @@ -8,6 +8,7 @@ #include #include +#include #include #include #include @@ -63,7 +64,7 @@ void __init svm_swiotlb_init(void) int set_memory_encrypted(unsigned long addr, int numpages) { - if (!mem_encrypt_active()) + if (!cc_platform_has(CC_ATTR_MEM_ENCRYPT)) return 0; if (!PAGE_ALIGNED(addr)) @@ -76,7 +77,7 @@ int set_memory_encrypted(unsigned long addr, int numpages) int set_memory_decrypted(unsigned long addr, int numpages) { - if (!mem_encrypt_active()) + if (!cc_platform_has(CC_ATTR_MEM_ENCRYPT)) return 0; if (!PAGE_ALIGNED(addr)) diff --git a/arch/powerpc/sysdev/xive/native.c b/arch/powerpc/sysdev/xive/native.c index 1aec282cd650d..b6323bdecfa4c 100644 --- a/arch/powerpc/sysdev/xive/native.c +++ b/arch/powerpc/sysdev/xive/native.c @@ -786,7 +786,7 @@ int xive_native_get_queue_info(u32 vp_id, u32 prio, if (out_qpage) *out_qpage = be64_to_cpu(qpage); if (out_qsize) - *out_qsize = be32_to_cpu(qsize); + *out_qsize = be64_to_cpu(qsize); if (out_qeoi_page) *out_qeoi_page = be64_to_cpu(qeoi_page); if (out_escalate_irq) diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c index 3c085e1e5232e..8b5277c3b1476 100644 --- a/arch/powerpc/xmon/xmon.c +++ b/arch/powerpc/xmon/xmon.c @@ -59,6 +59,7 @@ #ifdef CONFIG_PPC64 #include #include +#include #endif #include "nonstdio.h" diff --git a/arch/riscv/kernel/probes/simulate-insn.c b/arch/riscv/kernel/probes/simulate-insn.c index a20568bd1f1a8..41bf1eb0110dd 100644 --- a/arch/riscv/kernel/probes/simulate-insn.c +++ b/arch/riscv/kernel/probes/simulate-insn.c @@ -24,7 +24,7 @@ static inline bool rv_insn_reg_set_val(struct pt_regs *regs, u32 index, unsigned long val) { if (index == 0) - return false; + return true; else if (index <= 31) *((unsigned long *)regs + index) = val; else diff --git a/arch/riscv/kernel/traps_misaligned.c b/arch/riscv/kernel/traps_misaligned.c index 46c4dafe3ba0e..b246c3dc69930 100644 --- a/arch/riscv/kernel/traps_misaligned.c +++ b/arch/riscv/kernel/traps_misaligned.c @@ -344,16 +344,14 @@ int handle_misaligned_store(struct pt_regs *regs) } else if ((insn & INSN_MASK_C_SD) == INSN_MATCH_C_SD) { len = 8; val.data_ulong = GET_RS2S(insn, regs); - } else if ((insn & INSN_MASK_C_SDSP) == INSN_MATCH_C_SDSP && - ((insn >> SH_RD) & 0x1f)) { + } else if ((insn & INSN_MASK_C_SDSP) == INSN_MATCH_C_SDSP) { len = 8; val.data_ulong = GET_RS2C(insn, regs); #endif } else if ((insn & INSN_MASK_C_SW) == INSN_MATCH_C_SW) { len = 4; val.data_ulong = GET_RS2S(insn, regs); - } else if ((insn & INSN_MASK_C_SWSP) == INSN_MATCH_C_SWSP && - ((insn >> SH_RD) & 0x1f)) { + } else if ((insn & INSN_MASK_C_SWSP) == INSN_MATCH_C_SWSP) { len = 4; val.data_ulong = GET_RS2C(insn, regs); } else { diff --git a/arch/riscv/net/bpf_jit_comp64.c b/arch/riscv/net/bpf_jit_comp64.c index 2e3f1a626a3af..3f471884816af 100644 --- a/arch/riscv/net/bpf_jit_comp64.c +++ b/arch/riscv/net/bpf_jit_comp64.c @@ -220,7 +220,7 @@ static void __build_epilogue(bool is_tail_call, struct rv_jit_context *ctx) emit_addi(RV_REG_SP, RV_REG_SP, stack_adjust, ctx); /* Set return value. */ if (!is_tail_call) - emit_mv(RV_REG_A0, RV_REG_A5, ctx); + emit_addiw(RV_REG_A0, RV_REG_A5, 0, ctx); emit_jalr(RV_REG_ZERO, is_tail_call ? RV_REG_T3 : RV_REG_RA, is_tail_call ? 4 : 0, /* skip TCC init */ ctx); @@ -413,12 +413,12 @@ static void emit_sext_32_rd(u8 *rd, struct rv_jit_context *ctx) *rd = RV_REG_T2; } -static int emit_jump_and_link(u8 rd, s64 rvoff, bool force_jalr, +static int emit_jump_and_link(u8 rd, s64 rvoff, bool fixed_addr, struct rv_jit_context *ctx) { s64 upper, lower; - if (rvoff && is_21b_int(rvoff) && !force_jalr) { + if (rvoff && fixed_addr && is_21b_int(rvoff)) { emit(rv_jal(rd, rvoff >> 1), ctx); return 0; } else if (in_auipc_jalr_range(rvoff)) { @@ -439,24 +439,17 @@ static bool is_signed_bpf_cond(u8 cond) cond == BPF_JSGE || cond == BPF_JSLE; } -static int emit_call(bool fixed, u64 addr, struct rv_jit_context *ctx) +static int emit_call(u64 addr, bool fixed_addr, struct rv_jit_context *ctx) { s64 off = 0; u64 ip; - u8 rd; - int ret; if (addr && ctx->insns) { ip = (u64)(long)(ctx->insns + ctx->ninsns); off = addr - ip; } - ret = emit_jump_and_link(RV_REG_RA, off, !fixed, ctx); - if (ret) - return ret; - rd = bpf_to_rv_reg(BPF_REG_0, ctx); - emit_mv(rd, RV_REG_A0, ctx); - return 0; + return emit_jump_and_link(RV_REG_RA, off, fixed_addr, ctx); } int bpf_jit_emit_insn(const struct bpf_insn *insn, struct rv_jit_context *ctx, @@ -750,7 +743,7 @@ int bpf_jit_emit_insn(const struct bpf_insn *insn, struct rv_jit_context *ctx, /* JUMP off */ case BPF_JMP | BPF_JA: rvoff = rv_offset(i, off, ctx); - ret = emit_jump_and_link(RV_REG_ZERO, rvoff, false, ctx); + ret = emit_jump_and_link(RV_REG_ZERO, rvoff, true, ctx); if (ret) return ret; break; @@ -869,17 +862,21 @@ int bpf_jit_emit_insn(const struct bpf_insn *insn, struct rv_jit_context *ctx, /* function call */ case BPF_JMP | BPF_CALL: { - bool fixed; + bool fixed_addr; u64 addr; mark_call(ctx); - ret = bpf_jit_get_func_addr(ctx->prog, insn, extra_pass, &addr, - &fixed); + ret = bpf_jit_get_func_addr(ctx->prog, insn, extra_pass, + &addr, &fixed_addr); if (ret < 0) return ret; - ret = emit_call(fixed, addr, ctx); + + ret = emit_call(addr, fixed_addr, ctx); if (ret) return ret; + + if (insn->src_reg != BPF_PSEUDO_CALL) + emit_mv(bpf_to_rv_reg(BPF_REG_0, ctx), RV_REG_A0, ctx); break; } /* tail call */ @@ -894,7 +891,7 @@ int bpf_jit_emit_insn(const struct bpf_insn *insn, struct rv_jit_context *ctx, break; rvoff = epilogue_offset(ctx); - ret = emit_jump_and_link(RV_REG_ZERO, rvoff, false, ctx); + ret = emit_jump_and_link(RV_REG_ZERO, rvoff, true, ctx); if (ret) return ret; break; diff --git a/arch/s390/crypto/paes_s390.c b/arch/s390/crypto/paes_s390.c index a279b7d23a5e2..621322eb0e681 100644 --- a/arch/s390/crypto/paes_s390.c +++ b/arch/s390/crypto/paes_s390.c @@ -35,7 +35,7 @@ * and padding is also possible, the limits need to be generous. */ #define PAES_MIN_KEYSIZE 16 -#define PAES_MAX_KEYSIZE 320 +#define PAES_MAX_KEYSIZE MAXEP11AESKEYBLOBSIZE static u8 *ctrblk; static DEFINE_MUTEX(ctrblk_lock); diff --git a/arch/s390/include/asm/mem_encrypt.h b/arch/s390/include/asm/mem_encrypt.h index 2542cbf7e2d18..08a8b96606d7e 100644 --- a/arch/s390/include/asm/mem_encrypt.h +++ b/arch/s390/include/asm/mem_encrypt.h @@ -4,8 +4,6 @@ #ifndef __ASSEMBLY__ -static inline bool mem_encrypt_active(void) { return false; } - int set_memory_encrypted(unsigned long addr, int numpages); int set_memory_decrypted(unsigned long addr, int numpages); diff --git a/arch/s390/kernel/ipl.c b/arch/s390/kernel/ipl.c index 443c4a21cad39..21b0a381b8ea8 100644 --- a/arch/s390/kernel/ipl.c +++ b/arch/s390/kernel/ipl.c @@ -502,6 +502,8 @@ static struct attribute_group ipl_ccw_attr_group_lpar = { static struct attribute *ipl_unknown_attrs[] = { &sys_ipl_type_attr.attr, + &sys_ipl_secure_attr.attr, + &sys_ipl_has_secure_attr.attr, NULL, }; diff --git a/arch/s390/mm/page-states.c b/arch/s390/mm/page-states.c index 18a6381097a90..627767fdc85e2 100644 --- a/arch/s390/mm/page-states.c +++ b/arch/s390/mm/page-states.c @@ -131,7 +131,7 @@ static void mark_kernel_pud(p4d_t *p4d, unsigned long addr, unsigned long end) continue; if (!pud_folded(*pud)) { page = phys_to_page(pud_val(*pud)); - for (i = 0; i < 3; i++) + for (i = 0; i < 4; i++) set_bit(PG_arch_1, &page[i].flags); } mark_kernel_pmd(pud, addr, next); @@ -152,7 +152,7 @@ static void mark_kernel_p4d(pgd_t *pgd, unsigned long addr, unsigned long end) continue; if (!p4d_folded(*p4d)) { page = phys_to_page(p4d_val(*p4d)); - for (i = 0; i < 3; i++) + for (i = 0; i < 4; i++) set_bit(PG_arch_1, &page[i].flags); } mark_kernel_pud(p4d, addr, next); @@ -174,7 +174,7 @@ static void mark_kernel_pgd(void) continue; if (!pgd_folded(*pgd)) { page = phys_to_page(pgd_val(*pgd)); - for (i = 0; i < 3; i++) + for (i = 0; i < 4; i++) set_bit(PG_arch_1, &page[i].flags); } mark_kernel_p4d(pgd, addr, next); diff --git a/arch/s390/mm/pgtable.c b/arch/s390/mm/pgtable.c index df0adb7e2fe8e..c5ea4dedc1e15 100644 --- a/arch/s390/mm/pgtable.c +++ b/arch/s390/mm/pgtable.c @@ -731,7 +731,7 @@ void ptep_zap_unused(struct mm_struct *mm, unsigned long addr, pte_clear(mm, addr, ptep); } if (reset) - pgste_val(pgste) &= ~_PGSTE_GPS_USAGE_MASK; + pgste_val(pgste) &= ~(_PGSTE_GPS_USAGE_MASK | _PGSTE_GPS_NODAT); pgste_set_unlock(ptep, pgste); preempt_enable(); } diff --git a/arch/s390/pci/pci_dma.c b/arch/s390/pci/pci_dma.c index 93223bd110c38..bbe0b66a56e2c 100644 --- a/arch/s390/pci/pci_dma.c +++ b/arch/s390/pci/pci_dma.c @@ -542,6 +542,17 @@ static void s390_dma_unmap_sg(struct device *dev, struct scatterlist *sg, s->dma_length = 0; } } + +static unsigned long *bitmap_vzalloc(size_t bits, gfp_t flags) +{ + size_t n = BITS_TO_LONGS(bits); + size_t bytes; + + if (unlikely(check_mul_overflow(n, sizeof(unsigned long), &bytes))) + return NULL; + + return vzalloc(bytes); +} int zpci_dma_init_device(struct zpci_dev *zdev) { @@ -578,13 +589,13 @@ int zpci_dma_init_device(struct zpci_dev *zdev) zdev->end_dma - zdev->start_dma + 1); zdev->end_dma = zdev->start_dma + zdev->iommu_size - 1; zdev->iommu_pages = zdev->iommu_size >> PAGE_SHIFT; - zdev->iommu_bitmap = vzalloc(zdev->iommu_pages / 8); + zdev->iommu_bitmap = bitmap_vzalloc(zdev->iommu_pages, GFP_KERNEL); if (!zdev->iommu_bitmap) { rc = -ENOMEM; goto free_dma_table; } if (!s390_iommu_strict) { - zdev->lazy_bitmap = vzalloc(zdev->iommu_pages / 8); + zdev->lazy_bitmap = bitmap_vzalloc(zdev->iommu_pages, GFP_KERNEL); if (!zdev->lazy_bitmap) { rc = -ENOMEM; goto free_bitmap; diff --git a/arch/sh/Kconfig.debug b/arch/sh/Kconfig.debug index c449e7c1b20ff..8bcd6c1431a95 100644 --- a/arch/sh/Kconfig.debug +++ b/arch/sh/Kconfig.debug @@ -22,6 +22,17 @@ config STACK_DEBUG every function call and will therefore incur a major performance hit. Most users should say N. +config EARLY_PRINTK + bool "Early printk" + depends on SH_STANDARD_BIOS + help + Say Y here to redirect kernel printk messages to the serial port + used by the SH-IPL bootloader, starting very early in the boot + process and ending when the kernel's serial console is initialised. + This option is only useful while porting the kernel to a new machine, + when the kernel may crash or hang before the serial console is + initialised. If unsure, say N. + config 4KSTACKS bool "Use 4Kb for kernel stacks instead of 8Kb" depends on DEBUG_KERNEL && (MMU || BROKEN) && !PAGE_SIZE_64KB diff --git a/arch/sh/boards/mach-ap325rxa/setup.c b/arch/sh/boards/mach-ap325rxa/setup.c index bac8a058ebd7c..05bd42dde107b 100644 --- a/arch/sh/boards/mach-ap325rxa/setup.c +++ b/arch/sh/boards/mach-ap325rxa/setup.c @@ -530,7 +530,7 @@ static int __init ap325rxa_devices_setup(void) device_initialize(&ap325rxa_ceu_device.dev); dma_declare_coherent_memory(&ap325rxa_ceu_device.dev, ceu_dma_membase, ceu_dma_membase, - ceu_dma_membase + CEU_BUFFER_MEMORY_SIZE - 1); + CEU_BUFFER_MEMORY_SIZE); platform_device_add(&ap325rxa_ceu_device); diff --git a/arch/sh/boards/mach-ecovec24/setup.c b/arch/sh/boards/mach-ecovec24/setup.c index bab91a99124e1..9730a992dab33 100644 --- a/arch/sh/boards/mach-ecovec24/setup.c +++ b/arch/sh/boards/mach-ecovec24/setup.c @@ -1454,15 +1454,13 @@ static int __init arch_setup(void) device_initialize(&ecovec_ceu_devices[0]->dev); dma_declare_coherent_memory(&ecovec_ceu_devices[0]->dev, ceu0_dma_membase, ceu0_dma_membase, - ceu0_dma_membase + - CEU_BUFFER_MEMORY_SIZE - 1); + CEU_BUFFER_MEMORY_SIZE); platform_device_add(ecovec_ceu_devices[0]); device_initialize(&ecovec_ceu_devices[1]->dev); dma_declare_coherent_memory(&ecovec_ceu_devices[1]->dev, ceu1_dma_membase, ceu1_dma_membase, - ceu1_dma_membase + - CEU_BUFFER_MEMORY_SIZE - 1); + CEU_BUFFER_MEMORY_SIZE); platform_device_add(ecovec_ceu_devices[1]); gpiod_add_lookup_table(&cn12_power_gpiod_table); diff --git a/arch/sh/boards/mach-kfr2r09/setup.c b/arch/sh/boards/mach-kfr2r09/setup.c index eeb5ce341efdd..4a1caa3e7cf5a 100644 --- a/arch/sh/boards/mach-kfr2r09/setup.c +++ b/arch/sh/boards/mach-kfr2r09/setup.c @@ -603,7 +603,7 @@ static int __init kfr2r09_devices_setup(void) device_initialize(&kfr2r09_ceu_device.dev); dma_declare_coherent_memory(&kfr2r09_ceu_device.dev, ceu_dma_membase, ceu_dma_membase, - ceu_dma_membase + CEU_BUFFER_MEMORY_SIZE - 1); + CEU_BUFFER_MEMORY_SIZE); platform_device_add(&kfr2r09_ceu_device); diff --git a/arch/sh/boards/mach-migor/setup.c b/arch/sh/boards/mach-migor/setup.c index 6703a2122c0d6..bd4ccd9f8dd06 100644 --- a/arch/sh/boards/mach-migor/setup.c +++ b/arch/sh/boards/mach-migor/setup.c @@ -604,7 +604,7 @@ static int __init migor_devices_setup(void) device_initialize(&migor_ceu_device.dev); dma_declare_coherent_memory(&migor_ceu_device.dev, ceu_dma_membase, ceu_dma_membase, - ceu_dma_membase + CEU_BUFFER_MEMORY_SIZE - 1); + CEU_BUFFER_MEMORY_SIZE); platform_device_add(&migor_ceu_device); diff --git a/arch/sh/boards/mach-se/7724/setup.c b/arch/sh/boards/mach-se/7724/setup.c index 8d6541ba01865..edc7712e4a804 100644 --- a/arch/sh/boards/mach-se/7724/setup.c +++ b/arch/sh/boards/mach-se/7724/setup.c @@ -940,15 +940,13 @@ static int __init devices_setup(void) device_initialize(&ms7724se_ceu_devices[0]->dev); dma_declare_coherent_memory(&ms7724se_ceu_devices[0]->dev, ceu0_dma_membase, ceu0_dma_membase, - ceu0_dma_membase + - CEU_BUFFER_MEMORY_SIZE - 1); + CEU_BUFFER_MEMORY_SIZE); platform_device_add(ms7724se_ceu_devices[0]); device_initialize(&ms7724se_ceu_devices[1]->dev); dma_declare_coherent_memory(&ms7724se_ceu_devices[1]->dev, ceu1_dma_membase, ceu1_dma_membase, - ceu1_dma_membase + - CEU_BUFFER_MEMORY_SIZE - 1); + CEU_BUFFER_MEMORY_SIZE); platform_device_add(ms7724se_ceu_devices[1]); return platform_add_devices(ms7724se_devices, diff --git a/arch/sparc/kernel/pci_msi.c b/arch/sparc/kernel/pci_msi.c index fb5899cbfa515..9ed11985768e1 100644 --- a/arch/sparc/kernel/pci_msi.c +++ b/arch/sparc/kernel/pci_msi.c @@ -146,13 +146,13 @@ static int sparc64_setup_msi_irq(unsigned int *irq_p, msiqid = pick_msiq(pbm); err = ops->msi_setup(pbm, msiqid, msi, - (entry->msi_attrib.is_64 ? 1 : 0)); + (entry->pci.msi_attrib.is_64 ? 1 : 0)); if (err) goto out_msi_free; pbm->msi_irq_table[msi - pbm->msi_first] = *irq_p; - if (entry->msi_attrib.is_64) { + if (entry->pci.msi_attrib.is_64) { msg.address_hi = pbm->msi64_start >> 32; msg.address_lo = pbm->msi64_start & 0xffffffff; } else { diff --git a/arch/sparc/lib/checksum_32.S b/arch/sparc/lib/checksum_32.S index 781e39b3c009f..481e94e1f6857 100644 --- a/arch/sparc/lib/checksum_32.S +++ b/arch/sparc/lib/checksum_32.S @@ -453,5 +453,5 @@ ccslow: cmp %g1, 0 * we only bother with faults on loads... */ cc_fault: - ret + retl clr %o0 diff --git a/arch/um/configs/i386_defconfig b/arch/um/configs/i386_defconfig index fb51bd206dbed..4d7f99a02c1eb 100644 --- a/arch/um/configs/i386_defconfig +++ b/arch/um/configs/i386_defconfig @@ -35,6 +35,7 @@ CONFIG_TTY_CHAN=y CONFIG_XTERM_CHAN=y CONFIG_CON_CHAN="pts" CONFIG_SSL_CHAN="pts" +CONFIG_SOUND=m CONFIG_UML_SOUND=m CONFIG_DEVTMPFS=y CONFIG_DEVTMPFS_MOUNT=y diff --git a/arch/um/configs/x86_64_defconfig b/arch/um/configs/x86_64_defconfig index 477b873174243..4bdd83008f623 100644 --- a/arch/um/configs/x86_64_defconfig +++ b/arch/um/configs/x86_64_defconfig @@ -33,6 +33,7 @@ CONFIG_TTY_CHAN=y CONFIG_XTERM_CHAN=y CONFIG_CON_CHAN="pts" CONFIG_SSL_CHAN="pts" +CONFIG_SOUND=m CONFIG_UML_SOUND=m CONFIG_DEVTMPFS=y CONFIG_DEVTMPFS_MOUNT=y diff --git a/arch/um/drivers/Kconfig b/arch/um/drivers/Kconfig index f145842c40b94..3dd74d369f995 100644 --- a/arch/um/drivers/Kconfig +++ b/arch/um/drivers/Kconfig @@ -104,24 +104,14 @@ config SSL_CHAN config UML_SOUND tristate "Sound support" + depends on SOUND + select SOUND_OSS_CORE help This option enables UML sound support. If enabled, it will pull in - soundcore and the UML hostaudio relay, which acts as a intermediary + the UML hostaudio relay, which acts as a intermediary between the host's dsp and mixer devices and the UML sound system. It is safe to say 'Y' here. -config SOUND - tristate - default UML_SOUND - -config SOUND_OSS_CORE - bool - default UML_SOUND - -config HOSTAUDIO - tristate - default UML_SOUND - endmenu menu "UML Network Devices" diff --git a/arch/um/drivers/Makefile b/arch/um/drivers/Makefile index cd1a58bb3e9cd..dc0e6fe77de10 100644 --- a/arch/um/drivers/Makefile +++ b/arch/um/drivers/Makefile @@ -54,7 +54,7 @@ obj-$(CONFIG_UML_NET) += net.o obj-$(CONFIG_MCONSOLE) += mconsole.o obj-$(CONFIG_MMAPPER) += mmapper_kern.o obj-$(CONFIG_BLK_DEV_UBD) += ubd.o -obj-$(CONFIG_HOSTAUDIO) += hostaudio.o +obj-$(CONFIG_UML_SOUND) += hostaudio.o obj-$(CONFIG_NULL_CHAN) += null.o obj-$(CONFIG_PORT_CHAN) += port.o obj-$(CONFIG_PTY_CHAN) += pty.o diff --git a/arch/x86/boot/compressed/head_64.S b/arch/x86/boot/compressed/head_64.S index fd9441f404570..c3d427c817c73 100644 --- a/arch/x86/boot/compressed/head_64.S +++ b/arch/x86/boot/compressed/head_64.S @@ -468,11 +468,25 @@ SYM_CODE_START(startup_64) /* Save the trampoline address in RCX */ movq %rax, %rcx + /* Set up 32-bit addressable stack */ + leaq TRAMPOLINE_32BIT_STACK_END(%rcx), %rsp + + /* + * Preserve live 64-bit registers on the stack: this is necessary + * because the architecture does not guarantee that GPRs will retain + * their full 64-bit values across a 32-bit mode switch. + */ + pushq %rbp + pushq %rbx + pushq %rsi + /* - * Load the address of trampoline_return() into RDI. - * It will be used by the trampoline to return to the main code. + * Push the 64-bit address of trampoline_return() onto the new stack. + * It will be used by the trampoline to return to the main code. Due to + * the 32-bit mode switch, it cannot be kept it in a register either. */ leaq trampoline_return(%rip), %rdi + pushq %rdi /* Switch to compatibility mode (CS.L = 0 CS.D = 1) via far return */ pushq $__KERNEL32_CS @@ -480,6 +494,11 @@ SYM_CODE_START(startup_64) pushq %rax lretq trampoline_return: + /* Restore live 64-bit registers */ + popq %rsi + popq %rbx + popq %rbp + /* Restore the stack, the 32-bit trampoline uses its own stack */ leaq rva(boot_stack_end)(%rbx), %rsp @@ -600,7 +619,7 @@ SYM_FUNC_END(.Lrelocated) /* * This is the 32-bit trampoline that will be copied over to low memory. * - * RDI contains the return address (might be above 4G). + * Return address is at the top of the stack (might be above 4G). * ECX contains the base address of the trampoline memory. * Non zero RDX means trampoline needs to enable 5-level paging. */ @@ -610,9 +629,6 @@ SYM_CODE_START(trampoline_32bit_src) movl %eax, %ds movl %eax, %ss - /* Set up new stack */ - leal TRAMPOLINE_32BIT_STACK_END(%ecx), %esp - /* Disable paging */ movl %cr0, %eax btrl $X86_CR0_PG_BIT, %eax @@ -672,7 +688,7 @@ SYM_CODE_END(trampoline_32bit_src) .code64 SYM_FUNC_START_LOCAL_NOALIGN(.Lpaging_enabled) /* Return from the trampoline */ - jmp *%rdi + retq SYM_FUNC_END(.Lpaging_enabled) /* diff --git a/arch/x86/boot/compressed/ident_map_64.c b/arch/x86/boot/compressed/ident_map_64.c index f7213d0943b82..575d881ff86e2 100644 --- a/arch/x86/boot/compressed/ident_map_64.c +++ b/arch/x86/boot/compressed/ident_map_64.c @@ -67,6 +67,14 @@ static void *alloc_pgt_page(void *context) return NULL; } + /* Consumed more tables than expected? */ + if (pages->pgt_buf_offset == BOOT_PGT_SIZE_WARN) { + debug_putstr("pgt_buf running low in " __FILE__ "\n"); + debug_putstr("Need to raise BOOT_PGT_SIZE?\n"); + debug_putaddr(pages->pgt_buf_offset); + debug_putaddr(pages->pgt_buf_size); + } + entry = pages->pgt_buf + pages->pgt_buf_offset; pages->pgt_buf_offset += PAGE_SIZE; diff --git a/arch/x86/boot/compressed/sev.c b/arch/x86/boot/compressed/sev.c index 670e998fe9306..6728e56bf8b9b 100644 --- a/arch/x86/boot/compressed/sev.c +++ b/arch/x86/boot/compressed/sev.c @@ -105,6 +105,16 @@ static enum es_result vc_read_mem(struct es_em_ctxt *ctxt, return ES_OK; } +static enum es_result vc_ioio_check(struct es_em_ctxt *ctxt, u16 port, size_t size) +{ + return ES_OK; +} + +static bool fault_in_kernel_space(unsigned long address) +{ + return false; +} + #undef __init #undef __pa #define __init diff --git a/arch/x86/crypto/sha1_ssse3_glue.c b/arch/x86/crypto/sha1_ssse3_glue.c index 44340a1139e0b..959afa705e95c 100644 --- a/arch/x86/crypto/sha1_ssse3_glue.c +++ b/arch/x86/crypto/sha1_ssse3_glue.c @@ -24,8 +24,17 @@ #include #include #include +#include #include +static const struct x86_cpu_id module_cpu_ids[] = { + X86_MATCH_FEATURE(X86_FEATURE_AVX2, NULL), + X86_MATCH_FEATURE(X86_FEATURE_AVX, NULL), + X86_MATCH_FEATURE(X86_FEATURE_SSSE3, NULL), + {} +}; +MODULE_DEVICE_TABLE(x86cpu, module_cpu_ids); + static int sha1_update(struct shash_desc *desc, const u8 *data, unsigned int len, sha1_block_fn *sha1_xform) { @@ -301,6 +310,9 @@ static inline void unregister_sha1_ni(void) { } static int __init sha1_ssse3_mod_init(void) { + if (!x86_match_cpu(module_cpu_ids)) + return -ENODEV; + if (register_sha1_ssse3()) goto fail; diff --git a/arch/x86/crypto/sha256_ssse3_glue.c b/arch/x86/crypto/sha256_ssse3_glue.c index 3a5f6be7dbba4..d25235f0ccafc 100644 --- a/arch/x86/crypto/sha256_ssse3_glue.c +++ b/arch/x86/crypto/sha256_ssse3_glue.c @@ -38,11 +38,20 @@ #include #include #include +#include #include asmlinkage void sha256_transform_ssse3(struct sha256_state *state, const u8 *data, int blocks); +static const struct x86_cpu_id module_cpu_ids[] = { + X86_MATCH_FEATURE(X86_FEATURE_AVX2, NULL), + X86_MATCH_FEATURE(X86_FEATURE_AVX, NULL), + X86_MATCH_FEATURE(X86_FEATURE_SSSE3, NULL), + {} +}; +MODULE_DEVICE_TABLE(x86cpu, module_cpu_ids); + static int _sha256_update(struct shash_desc *desc, const u8 *data, unsigned int len, sha256_block_fn *sha256_xform) { @@ -366,6 +375,9 @@ static inline void unregister_sha256_ni(void) { } static int __init sha256_ssse3_mod_init(void) { + if (!x86_match_cpu(module_cpu_ids)) + return -ENODEV; + if (register_sha256_ssse3()) goto fail; diff --git a/arch/x86/events/Makefile b/arch/x86/events/Makefile index 9933c0e8e97a9..86a76efa8bb6d 100644 --- a/arch/x86/events/Makefile +++ b/arch/x86/events/Makefile @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-only -obj-y += core.o probe.o +obj-y += core.o probe.o utils.o obj-$(CONFIG_PERF_EVENTS_INTEL_RAPL) += rapl.o obj-y += amd/ obj-$(CONFIG_X86_LOCAL_APIC) += msr.o diff --git a/arch/x86/events/intel/lbr.c b/arch/x86/events/intel/lbr.c index b3f92255cbd2d..e8c6575cf65ea 100644 --- a/arch/x86/events/intel/lbr.c +++ b/arch/x86/events/intel/lbr.c @@ -4,7 +4,6 @@ #include #include -#include #include "../perf_event.h" @@ -73,65 +72,6 @@ static const enum { #define LBR_FROM_SIGNEXT_2MSB (BIT_ULL(60) | BIT_ULL(59)) -/* - * x86control flow change classification - * x86control flow changes include branches, interrupts, traps, faults - */ -enum { - X86_BR_NONE = 0, /* unknown */ - - X86_BR_USER = 1 << 0, /* branch target is user */ - X86_BR_KERNEL = 1 << 1, /* branch target is kernel */ - - X86_BR_CALL = 1 << 2, /* call */ - X86_BR_RET = 1 << 3, /* return */ - X86_BR_SYSCALL = 1 << 4, /* syscall */ - X86_BR_SYSRET = 1 << 5, /* syscall return */ - X86_BR_INT = 1 << 6, /* sw interrupt */ - X86_BR_IRET = 1 << 7, /* return from interrupt */ - X86_BR_JCC = 1 << 8, /* conditional */ - X86_BR_JMP = 1 << 9, /* jump */ - X86_BR_IRQ = 1 << 10,/* hw interrupt or trap or fault */ - X86_BR_IND_CALL = 1 << 11,/* indirect calls */ - X86_BR_ABORT = 1 << 12,/* transaction abort */ - X86_BR_IN_TX = 1 << 13,/* in transaction */ - X86_BR_NO_TX = 1 << 14,/* not in transaction */ - X86_BR_ZERO_CALL = 1 << 15,/* zero length call */ - X86_BR_CALL_STACK = 1 << 16,/* call stack */ - X86_BR_IND_JMP = 1 << 17,/* indirect jump */ - - X86_BR_TYPE_SAVE = 1 << 18,/* indicate to save branch type */ - -}; - -#define X86_BR_PLM (X86_BR_USER | X86_BR_KERNEL) -#define X86_BR_ANYTX (X86_BR_NO_TX | X86_BR_IN_TX) - -#define X86_BR_ANY \ - (X86_BR_CALL |\ - X86_BR_RET |\ - X86_BR_SYSCALL |\ - X86_BR_SYSRET |\ - X86_BR_INT |\ - X86_BR_IRET |\ - X86_BR_JCC |\ - X86_BR_JMP |\ - X86_BR_IRQ |\ - X86_BR_ABORT |\ - X86_BR_IND_CALL |\ - X86_BR_IND_JMP |\ - X86_BR_ZERO_CALL) - -#define X86_BR_ALL (X86_BR_PLM | X86_BR_ANY) - -#define X86_BR_ANY_CALL \ - (X86_BR_CALL |\ - X86_BR_IND_CALL |\ - X86_BR_ZERO_CALL |\ - X86_BR_SYSCALL |\ - X86_BR_IRQ |\ - X86_BR_INT) - /* * Intel LBR_CTL bits * @@ -1168,219 +1108,6 @@ int intel_pmu_setup_lbr_filter(struct perf_event *event) return ret; } -/* - * return the type of control flow change at address "from" - * instruction is not necessarily a branch (in case of interrupt). - * - * The branch type returned also includes the priv level of the - * target of the control flow change (X86_BR_USER, X86_BR_KERNEL). - * - * If a branch type is unknown OR the instruction cannot be - * decoded (e.g., text page not present), then X86_BR_NONE is - * returned. - */ -static int branch_type(unsigned long from, unsigned long to, int abort) -{ - struct insn insn; - void *addr; - int bytes_read, bytes_left; - int ret = X86_BR_NONE; - int ext, to_plm, from_plm; - u8 buf[MAX_INSN_SIZE]; - int is64 = 0; - - to_plm = kernel_ip(to) ? X86_BR_KERNEL : X86_BR_USER; - from_plm = kernel_ip(from) ? X86_BR_KERNEL : X86_BR_USER; - - /* - * maybe zero if lbr did not fill up after a reset by the time - * we get a PMU interrupt - */ - if (from == 0 || to == 0) - return X86_BR_NONE; - - if (abort) - return X86_BR_ABORT | to_plm; - - if (from_plm == X86_BR_USER) { - /* - * can happen if measuring at the user level only - * and we interrupt in a kernel thread, e.g., idle. - */ - if (!current->mm) - return X86_BR_NONE; - - /* may fail if text not present */ - bytes_left = copy_from_user_nmi(buf, (void __user *)from, - MAX_INSN_SIZE); - bytes_read = MAX_INSN_SIZE - bytes_left; - if (!bytes_read) - return X86_BR_NONE; - - addr = buf; - } else { - /* - * The LBR logs any address in the IP, even if the IP just - * faulted. This means userspace can control the from address. - * Ensure we don't blindly read any address by validating it is - * a known text address. - */ - if (kernel_text_address(from)) { - addr = (void *)from; - /* - * Assume we can get the maximum possible size - * when grabbing kernel data. This is not - * _strictly_ true since we could possibly be - * executing up next to a memory hole, but - * it is very unlikely to be a problem. - */ - bytes_read = MAX_INSN_SIZE; - } else { - return X86_BR_NONE; - } - } - - /* - * decoder needs to know the ABI especially - * on 64-bit systems running 32-bit apps - */ -#ifdef CONFIG_X86_64 - is64 = kernel_ip((unsigned long)addr) || any_64bit_mode(current_pt_regs()); -#endif - insn_init(&insn, addr, bytes_read, is64); - if (insn_get_opcode(&insn)) - return X86_BR_ABORT; - - switch (insn.opcode.bytes[0]) { - case 0xf: - switch (insn.opcode.bytes[1]) { - case 0x05: /* syscall */ - case 0x34: /* sysenter */ - ret = X86_BR_SYSCALL; - break; - case 0x07: /* sysret */ - case 0x35: /* sysexit */ - ret = X86_BR_SYSRET; - break; - case 0x80 ... 0x8f: /* conditional */ - ret = X86_BR_JCC; - break; - default: - ret = X86_BR_NONE; - } - break; - case 0x70 ... 0x7f: /* conditional */ - ret = X86_BR_JCC; - break; - case 0xc2: /* near ret */ - case 0xc3: /* near ret */ - case 0xca: /* far ret */ - case 0xcb: /* far ret */ - ret = X86_BR_RET; - break; - case 0xcf: /* iret */ - ret = X86_BR_IRET; - break; - case 0xcc ... 0xce: /* int */ - ret = X86_BR_INT; - break; - case 0xe8: /* call near rel */ - if (insn_get_immediate(&insn) || insn.immediate1.value == 0) { - /* zero length call */ - ret = X86_BR_ZERO_CALL; - break; - } - fallthrough; - case 0x9a: /* call far absolute */ - ret = X86_BR_CALL; - break; - case 0xe0 ... 0xe3: /* loop jmp */ - ret = X86_BR_JCC; - break; - case 0xe9 ... 0xeb: /* jmp */ - ret = X86_BR_JMP; - break; - case 0xff: /* call near absolute, call far absolute ind */ - if (insn_get_modrm(&insn)) - return X86_BR_ABORT; - - ext = (insn.modrm.bytes[0] >> 3) & 0x7; - switch (ext) { - case 2: /* near ind call */ - case 3: /* far ind call */ - ret = X86_BR_IND_CALL; - break; - case 4: - case 5: - ret = X86_BR_IND_JMP; - break; - } - break; - default: - ret = X86_BR_NONE; - } - /* - * interrupts, traps, faults (and thus ring transition) may - * occur on any instructions. Thus, to classify them correctly, - * we need to first look at the from and to priv levels. If they - * are different and to is in the kernel, then it indicates - * a ring transition. If the from instruction is not a ring - * transition instr (syscall, systenter, int), then it means - * it was a irq, trap or fault. - * - * we have no way of detecting kernel to kernel faults. - */ - if (from_plm == X86_BR_USER && to_plm == X86_BR_KERNEL - && ret != X86_BR_SYSCALL && ret != X86_BR_INT) - ret = X86_BR_IRQ; - - /* - * branch priv level determined by target as - * is done by HW when LBR_SELECT is implemented - */ - if (ret != X86_BR_NONE) - ret |= to_plm; - - return ret; -} - -#define X86_BR_TYPE_MAP_MAX 16 - -static int branch_map[X86_BR_TYPE_MAP_MAX] = { - PERF_BR_CALL, /* X86_BR_CALL */ - PERF_BR_RET, /* X86_BR_RET */ - PERF_BR_SYSCALL, /* X86_BR_SYSCALL */ - PERF_BR_SYSRET, /* X86_BR_SYSRET */ - PERF_BR_UNKNOWN, /* X86_BR_INT */ - PERF_BR_UNKNOWN, /* X86_BR_IRET */ - PERF_BR_COND, /* X86_BR_JCC */ - PERF_BR_UNCOND, /* X86_BR_JMP */ - PERF_BR_UNKNOWN, /* X86_BR_IRQ */ - PERF_BR_IND_CALL, /* X86_BR_IND_CALL */ - PERF_BR_UNKNOWN, /* X86_BR_ABORT */ - PERF_BR_UNKNOWN, /* X86_BR_IN_TX */ - PERF_BR_UNKNOWN, /* X86_BR_NO_TX */ - PERF_BR_CALL, /* X86_BR_ZERO_CALL */ - PERF_BR_UNKNOWN, /* X86_BR_CALL_STACK */ - PERF_BR_IND, /* X86_BR_IND_JMP */ -}; - -static int -common_branch_type(int type) -{ - int i; - - type >>= 2; /* skip X86_BR_USER and X86_BR_KERNEL */ - - if (type) { - i = __ffs(type); - if (i < X86_BR_TYPE_MAP_MAX) - return branch_map[i]; - } - - return PERF_BR_UNKNOWN; -} - enum { ARCH_LBR_BR_TYPE_JCC = 0, ARCH_LBR_BR_TYPE_NEAR_IND_JMP = 1, diff --git a/arch/x86/events/intel/pt.c b/arch/x86/events/intel/pt.c index d0295240c78a8..a85d3138839c5 100644 --- a/arch/x86/events/intel/pt.c +++ b/arch/x86/events/intel/pt.c @@ -1360,20 +1360,10 @@ static void pt_addr_filters_fini(struct perf_event *event) } #ifdef CONFIG_X86_64 -static u64 canonical_address(u64 vaddr, u8 vaddr_bits) -{ - return ((s64)vaddr << (64 - vaddr_bits)) >> (64 - vaddr_bits); -} - -static u64 is_canonical_address(u64 vaddr, u8 vaddr_bits) -{ - return canonical_address(vaddr, vaddr_bits) == vaddr; -} - /* Clamp to a canonical address greater-than-or-equal-to the address given */ static u64 clamp_to_ge_canonical_addr(u64 vaddr, u8 vaddr_bits) { - return is_canonical_address(vaddr, vaddr_bits) ? + return __is_canonical_address(vaddr, vaddr_bits) ? vaddr : -BIT_ULL(vaddr_bits - 1); } @@ -1381,7 +1371,7 @@ static u64 clamp_to_ge_canonical_addr(u64 vaddr, u8 vaddr_bits) /* Clamp to a canonical address less-than-or-equal-to the address given */ static u64 clamp_to_le_canonical_addr(u64 vaddr, u8 vaddr_bits) { - return is_canonical_address(vaddr, vaddr_bits) ? + return __is_canonical_address(vaddr, vaddr_bits) ? vaddr : BIT_ULL(vaddr_bits - 1) - 1; } diff --git a/arch/x86/events/intel/uncore_discovery.c b/arch/x86/events/intel/uncore_discovery.c index 3049c646fa209..c8e1f9f0b466d 100644 --- a/arch/x86/events/intel/uncore_discovery.c +++ b/arch/x86/events/intel/uncore_discovery.c @@ -140,13 +140,21 @@ uncore_insert_box_info(struct uncore_unit_discovery *unit, unsigned int *box_offset, *ids; int i; - if (WARN_ON_ONCE(!unit->ctl || !unit->ctl_offset || !unit->ctr_offset)) + if (!unit->ctl || !unit->ctl_offset || !unit->ctr_offset) { + pr_info("Invalid address is detected for uncore type %d box %d, " + "Disable the uncore unit.\n", + unit->box_type, unit->box_id); return; + } if (parsed) { type = search_uncore_discovery_type(unit->box_type); - if (WARN_ON_ONCE(!type)) + if (!type) { + pr_info("A spurious uncore type %d is detected, " + "Disable the uncore type.\n", + unit->box_type); return; + } /* Store the first box of each die */ if (!type->box_ctrl_die[die]) type->box_ctrl_die[die] = unit->ctl; @@ -181,8 +189,12 @@ uncore_insert_box_info(struct uncore_unit_discovery *unit, ids[i] = type->ids[i]; box_offset[i] = type->box_offset[i]; - if (WARN_ON_ONCE(unit->box_id == ids[i])) + if (unit->box_id == ids[i]) { + pr_info("Duplicate uncore type %d box ID %d is detected, " + "Drop the duplicate uncore unit.\n", + unit->box_type, unit->box_id); goto free_ids; + } } ids[i] = unit->box_id; box_offset[i] = unit->ctl - type->box_ctrl; diff --git a/arch/x86/events/intel/uncore_snbep.c b/arch/x86/events/intel/uncore_snbep.c index 935081ddf60bc..9b5859812f4fb 100644 --- a/arch/x86/events/intel/uncore_snbep.c +++ b/arch/x86/events/intel/uncore_snbep.c @@ -6078,8 +6078,18 @@ void spr_uncore_cpu_init(void) type = uncore_find_type_by_id(uncore_msr_uncores, UNCORE_SPR_CHA); if (type) { + /* + * The value from the discovery table (stored in the type->num_boxes + * of UNCORE_SPR_CHA) is incorrect on some SPR variants because of a + * firmware bug. Using the value from SPR_MSR_UNC_CBO_CONFIG to replace it. + */ rdmsrl(SPR_MSR_UNC_CBO_CONFIG, num_cbo); - type->num_boxes = num_cbo; + /* + * The MSR doesn't work on the EMR XCC, but the firmware bug doesn't impact + * the EMR XCC. Don't let the value from the MSR replace the existing value. + */ + if (num_cbo) + type->num_boxes = num_cbo; } spr_uncore_iio_free_running.num_boxes = uncore_type_max_boxes(uncore_msr_uncores, UNCORE_SPR_IIO); } diff --git a/arch/x86/events/perf_event.h b/arch/x86/events/perf_event.h index 134c08df73406..841cbd7701332 100644 --- a/arch/x86/events/perf_event.h +++ b/arch/x86/events/perf_event.h @@ -1182,6 +1182,68 @@ static inline void set_linear_ip(struct pt_regs *regs, unsigned long ip) regs->ip = ip; } +/* + * x86control flow change classification + * x86control flow changes include branches, interrupts, traps, faults + */ +enum { + X86_BR_NONE = 0, /* unknown */ + + X86_BR_USER = 1 << 0, /* branch target is user */ + X86_BR_KERNEL = 1 << 1, /* branch target is kernel */ + + X86_BR_CALL = 1 << 2, /* call */ + X86_BR_RET = 1 << 3, /* return */ + X86_BR_SYSCALL = 1 << 4, /* syscall */ + X86_BR_SYSRET = 1 << 5, /* syscall return */ + X86_BR_INT = 1 << 6, /* sw interrupt */ + X86_BR_IRET = 1 << 7, /* return from interrupt */ + X86_BR_JCC = 1 << 8, /* conditional */ + X86_BR_JMP = 1 << 9, /* jump */ + X86_BR_IRQ = 1 << 10,/* hw interrupt or trap or fault */ + X86_BR_IND_CALL = 1 << 11,/* indirect calls */ + X86_BR_ABORT = 1 << 12,/* transaction abort */ + X86_BR_IN_TX = 1 << 13,/* in transaction */ + X86_BR_NO_TX = 1 << 14,/* not in transaction */ + X86_BR_ZERO_CALL = 1 << 15,/* zero length call */ + X86_BR_CALL_STACK = 1 << 16,/* call stack */ + X86_BR_IND_JMP = 1 << 17,/* indirect jump */ + + X86_BR_TYPE_SAVE = 1 << 18,/* indicate to save branch type */ + +}; + +#define X86_BR_PLM (X86_BR_USER | X86_BR_KERNEL) +#define X86_BR_ANYTX (X86_BR_NO_TX | X86_BR_IN_TX) + +#define X86_BR_ANY \ + (X86_BR_CALL |\ + X86_BR_RET |\ + X86_BR_SYSCALL |\ + X86_BR_SYSRET |\ + X86_BR_INT |\ + X86_BR_IRET |\ + X86_BR_JCC |\ + X86_BR_JMP |\ + X86_BR_IRQ |\ + X86_BR_ABORT |\ + X86_BR_IND_CALL |\ + X86_BR_IND_JMP |\ + X86_BR_ZERO_CALL) + +#define X86_BR_ALL (X86_BR_PLM | X86_BR_ANY) + +#define X86_BR_ANY_CALL \ + (X86_BR_CALL |\ + X86_BR_IND_CALL |\ + X86_BR_ZERO_CALL |\ + X86_BR_SYSCALL |\ + X86_BR_IRQ |\ + X86_BR_INT) + +int common_branch_type(int type); +int branch_type(unsigned long from, unsigned long to, int abort); + ssize_t x86_event_sysfs_show(char *page, u64 config, u64 event); ssize_t intel_event_sysfs_show(char *page, u64 config); diff --git a/arch/x86/events/utils.c b/arch/x86/events/utils.c new file mode 100644 index 0000000000000..b30508b88bf22 --- /dev/null +++ b/arch/x86/events/utils.c @@ -0,0 +1,217 @@ +// SPDX-License-Identifier: GPL-2.0 +#include +#include + +#include "perf_event.h" + +/* + * return the type of control flow change at address "from" + * instruction is not necessarily a branch (in case of interrupt). + * + * The branch type returned also includes the priv level of the + * target of the control flow change (X86_BR_USER, X86_BR_KERNEL). + * + * If a branch type is unknown OR the instruction cannot be + * decoded (e.g., text page not present), then X86_BR_NONE is + * returned. + */ +int branch_type(unsigned long from, unsigned long to, int abort) +{ + struct insn insn; + void *addr; + int bytes_read, bytes_left; + int ret = X86_BR_NONE; + int ext, to_plm, from_plm; + u8 buf[MAX_INSN_SIZE]; + int is64 = 0; + + to_plm = kernel_ip(to) ? X86_BR_KERNEL : X86_BR_USER; + from_plm = kernel_ip(from) ? X86_BR_KERNEL : X86_BR_USER; + + /* + * maybe zero if lbr did not fill up after a reset by the time + * we get a PMU interrupt + */ + if (from == 0 || to == 0) + return X86_BR_NONE; + + if (abort) + return X86_BR_ABORT | to_plm; + + if (from_plm == X86_BR_USER) { + /* + * can happen if measuring at the user level only + * and we interrupt in a kernel thread, e.g., idle. + */ + if (!current->mm) + return X86_BR_NONE; + + /* may fail if text not present */ + bytes_left = copy_from_user_nmi(buf, (void __user *)from, + MAX_INSN_SIZE); + bytes_read = MAX_INSN_SIZE - bytes_left; + if (!bytes_read) + return X86_BR_NONE; + + addr = buf; + } else { + /* + * The LBR logs any address in the IP, even if the IP just + * faulted. This means userspace can control the from address. + * Ensure we don't blindly read any address by validating it is + * a known text address and not a vsyscall address. + */ + if (kernel_text_address(from) && !in_gate_area_no_mm(from)) { + addr = (void *)from; + /* + * Assume we can get the maximum possible size + * when grabbing kernel data. This is not + * _strictly_ true since we could possibly be + * executing up next to a memory hole, but + * it is very unlikely to be a problem. + */ + bytes_read = MAX_INSN_SIZE; + } else { + return X86_BR_NONE; + } + } + + /* + * decoder needs to know the ABI especially + * on 64-bit systems running 32-bit apps + */ +#ifdef CONFIG_X86_64 + is64 = kernel_ip((unsigned long)addr) || any_64bit_mode(current_pt_regs()); +#endif + insn_init(&insn, addr, bytes_read, is64); + if (insn_get_opcode(&insn)) + return X86_BR_ABORT; + + switch (insn.opcode.bytes[0]) { + case 0xf: + switch (insn.opcode.bytes[1]) { + case 0x05: /* syscall */ + case 0x34: /* sysenter */ + ret = X86_BR_SYSCALL; + break; + case 0x07: /* sysret */ + case 0x35: /* sysexit */ + ret = X86_BR_SYSRET; + break; + case 0x80 ... 0x8f: /* conditional */ + ret = X86_BR_JCC; + break; + default: + ret = X86_BR_NONE; + } + break; + case 0x70 ... 0x7f: /* conditional */ + ret = X86_BR_JCC; + break; + case 0xc2: /* near ret */ + case 0xc3: /* near ret */ + case 0xca: /* far ret */ + case 0xcb: /* far ret */ + ret = X86_BR_RET; + break; + case 0xcf: /* iret */ + ret = X86_BR_IRET; + break; + case 0xcc ... 0xce: /* int */ + ret = X86_BR_INT; + break; + case 0xe8: /* call near rel */ + if (insn_get_immediate(&insn) || insn.immediate1.value == 0) { + /* zero length call */ + ret = X86_BR_ZERO_CALL; + break; + } + fallthrough; + case 0x9a: /* call far absolute */ + ret = X86_BR_CALL; + break; + case 0xe0 ... 0xe3: /* loop jmp */ + ret = X86_BR_JCC; + break; + case 0xe9 ... 0xeb: /* jmp */ + ret = X86_BR_JMP; + break; + case 0xff: /* call near absolute, call far absolute ind */ + if (insn_get_modrm(&insn)) + return X86_BR_ABORT; + + ext = (insn.modrm.bytes[0] >> 3) & 0x7; + switch (ext) { + case 2: /* near ind call */ + case 3: /* far ind call */ + ret = X86_BR_IND_CALL; + break; + case 4: + case 5: + ret = X86_BR_IND_JMP; + break; + } + break; + default: + ret = X86_BR_NONE; + } + /* + * interrupts, traps, faults (and thus ring transition) may + * occur on any instructions. Thus, to classify them correctly, + * we need to first look at the from and to priv levels. If they + * are different and to is in the kernel, then it indicates + * a ring transition. If the from instruction is not a ring + * transition instr (syscall, systenter, int), then it means + * it was a irq, trap or fault. + * + * we have no way of detecting kernel to kernel faults. + */ + if (from_plm == X86_BR_USER && to_plm == X86_BR_KERNEL + && ret != X86_BR_SYSCALL && ret != X86_BR_INT) + ret = X86_BR_IRQ; + + /* + * branch priv level determined by target as + * is done by HW when LBR_SELECT is implemented + */ + if (ret != X86_BR_NONE) + ret |= to_plm; + + return ret; +} + +#define X86_BR_TYPE_MAP_MAX 16 + +static int branch_map[X86_BR_TYPE_MAP_MAX] = { + PERF_BR_CALL, /* X86_BR_CALL */ + PERF_BR_RET, /* X86_BR_RET */ + PERF_BR_SYSCALL, /* X86_BR_SYSCALL */ + PERF_BR_SYSRET, /* X86_BR_SYSRET */ + PERF_BR_UNKNOWN, /* X86_BR_INT */ + PERF_BR_ERET, /* X86_BR_IRET */ + PERF_BR_COND, /* X86_BR_JCC */ + PERF_BR_UNCOND, /* X86_BR_JMP */ + PERF_BR_IRQ, /* X86_BR_IRQ */ + PERF_BR_IND_CALL, /* X86_BR_IND_CALL */ + PERF_BR_UNKNOWN, /* X86_BR_ABORT */ + PERF_BR_UNKNOWN, /* X86_BR_IN_TX */ + PERF_BR_UNKNOWN, /* X86_BR_NO_TX */ + PERF_BR_CALL, /* X86_BR_ZERO_CALL */ + PERF_BR_UNKNOWN, /* X86_BR_CALL_STACK */ + PERF_BR_IND, /* X86_BR_IND_JMP */ +}; + +int common_branch_type(int type) +{ + int i; + + type >>= 2; /* skip X86_BR_USER and X86_BR_KERNEL */ + + if (type) { + i = __ffs(type); + if (i < X86_BR_TYPE_MAP_MAX) + return branch_map[i]; + } + + return PERF_BR_UNKNOWN; +} diff --git a/arch/x86/hyperv/Makefile b/arch/x86/hyperv/Makefile index 48e2c51464e84..5d2de10809ae2 100644 --- a/arch/x86/hyperv/Makefile +++ b/arch/x86/hyperv/Makefile @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-only -obj-y := hv_init.o mmu.o nested.o irqdomain.o +obj-y := hv_init.o mmu.o nested.o irqdomain.o ivm.o obj-$(CONFIG_X86_64) += hv_apic.o hv_proc.o ifdef CONFIG_X86_64 diff --git a/arch/x86/hyperv/hv_init.c b/arch/x86/hyperv/hv_init.c index 6a4de2d9f9033..695c7c48e4912 100644 --- a/arch/x86/hyperv/hv_init.c +++ b/arch/x86/hyperv/hv_init.c @@ -20,6 +20,7 @@ #include #include #include +#include #include #include #include @@ -28,6 +29,7 @@ #include #include #include +#include #ifndef PKG_ABI /* @@ -44,12 +46,42 @@ EXPORT_SYMBOL_GPL(hv_current_partition_id); void *hv_hypercall_pg; EXPORT_SYMBOL_GPL(hv_hypercall_pg); +union hv_ghcb __percpu **hv_ghcb_pg; + /* Storage to save the hypercall page temporarily for hibernation */ static void *hv_hypercall_pg_saved; struct hv_vp_assist_page **hv_vp_assist_page; EXPORT_SYMBOL_GPL(hv_vp_assist_page); +static int hyperv_init_ghcb(void) +{ + u64 ghcb_gpa; + void *ghcb_va; + void **ghcb_base; + + if (!hv_isolation_type_snp()) + return 0; + + if (!hv_ghcb_pg) + return -EINVAL; + + /* + * GHCB page is allocated by paravisor. The address + * returned by MSR_AMD64_SEV_ES_GHCB is above shared + * memory boundary and map it here. + */ + rdmsrl(MSR_AMD64_SEV_ES_GHCB, ghcb_gpa); + ghcb_va = memremap(ghcb_gpa, HV_HYP_PAGE_SIZE, MEMREMAP_WB); + if (!ghcb_va) + return -ENOMEM; + + ghcb_base = (void **)this_cpu_ptr(hv_ghcb_pg); + *ghcb_base = ghcb_va; + + return 0; +} + static int hv_cpu_init(unsigned int cpu) { union hv_vp_assist_msr_contents msr = { 0 }; @@ -91,7 +123,7 @@ static int hv_cpu_init(unsigned int cpu) wrmsrl(HV_X64_MSR_VP_ASSIST_PAGE, msr.as_uint64); } - return 0; + return hyperv_init_ghcb(); } static void (*hv_reenlightenment_cb)(void); @@ -189,6 +221,14 @@ static int hv_cpu_die(unsigned int cpu) { struct hv_reenlightenment_control re_ctrl; unsigned int new_cpu; + void **ghcb_va; + + if (hv_ghcb_pg) { + ghcb_va = (void **)this_cpu_ptr(hv_ghcb_pg); + if (*ghcb_va) + memunmap(*ghcb_va); + *ghcb_va = NULL; + } hv_common_cpu_die(cpu); @@ -371,10 +411,16 @@ void __init hyperv_init(void) goto common_free; } + if (hv_isolation_type_snp()) { + hv_ghcb_pg = alloc_percpu(union hv_ghcb *); + if (!hv_ghcb_pg) + goto free_vp_assist_page; + } + cpuhp = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "x86/hyperv_init:online", hv_cpu_init, hv_cpu_die); if (cpuhp < 0) - goto free_vp_assist_page; + goto free_ghcb_page; /* * Setup the hypercall page and enable hypercalls. @@ -384,14 +430,15 @@ void __init hyperv_init(void) guest_id = generate_guest_id(0x80 /*Canonical*/, LINUX_VERSION_CODE, PKG_ABI); wrmsrl(HV_X64_MSR_GUEST_OS_ID, guest_id); + /* Hyper-V requires to write guest os id via ghcb in SNP IVM. */ + hv_ghcb_msr_write(HV_X64_MSR_GUEST_OS_ID, guest_id); + hv_hypercall_pg = __vmalloc_node_range(PAGE_SIZE, 1, VMALLOC_START, VMALLOC_END, GFP_KERNEL, PAGE_KERNEL_ROX, VM_FLUSH_RESET_PERMS, NUMA_NO_NODE, __builtin_return_address(0)); - if (hv_hypercall_pg == NULL) { - wrmsrl(HV_X64_MSR_GUEST_OS_ID, 0); - goto remove_cpuhp_state; - } + if (hv_hypercall_pg == NULL) + goto clean_guest_os_id; rdmsrl(HV_X64_MSR_HYPERCALL, hypercall_msr.as_uint64); hypercall_msr.enable = 1; @@ -459,10 +506,25 @@ void __init hyperv_init(void) /* Query the VMs extended capability once, so that it can be cached. */ hv_query_ext_cap(0); + +#ifdef CONFIG_SWIOTLB + /* + * Swiotlb bounce buffer needs to be mapped in extra address + * space. Map function doesn't work in the early place and so + * call swiotlb_update_mem_attributes() here. + */ + if (hv_is_isolation_supported()) + swiotlb_update_mem_attributes(); +#endif + return; -remove_cpuhp_state: +clean_guest_os_id: + wrmsrl(HV_X64_MSR_GUEST_OS_ID, 0); + hv_ghcb_msr_write(HV_X64_MSR_GUEST_OS_ID, 0); cpuhp_remove_state(cpuhp); +free_ghcb_page: + free_percpu(hv_ghcb_pg); free_vp_assist_page: kfree(hv_vp_assist_page); hv_vp_assist_page = NULL; @@ -479,6 +541,7 @@ void hyperv_cleanup(void) /* Reset our OS id */ wrmsrl(HV_X64_MSR_GUEST_OS_ID, 0); + hv_ghcb_msr_write(HV_X64_MSR_GUEST_OS_ID, 0); /* * Reset hypercall page reference before reset the page, @@ -549,16 +612,3 @@ bool hv_is_hyperv_initialized(void) return hypercall_msr.enable; } EXPORT_SYMBOL_GPL(hv_is_hyperv_initialized); - -enum hv_isolation_type hv_get_isolation_type(void) -{ - if (!(ms_hyperv.priv_high & HV_ISOLATION)) - return HV_ISOLATION_TYPE_NONE; - return FIELD_GET(HV_ISOLATION_TYPE, ms_hyperv.isolation_config_b); -} -EXPORT_SYMBOL_GPL(hv_get_isolation_type); - -bool hv_is_isolation_supported(void) -{ - return hv_get_isolation_type() != HV_ISOLATION_TYPE_NONE; -} diff --git a/arch/x86/hyperv/ivm.c b/arch/x86/hyperv/ivm.c new file mode 100644 index 0000000000000..076f257b26856 --- /dev/null +++ b/arch/x86/hyperv/ivm.c @@ -0,0 +1,319 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Hyper-V Isolation VM interface with paravisor and hypervisor + * + * Author: + * Tianyu Lan + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#ifdef CONFIG_AMD_MEM_ENCRYPT + +#define GHCB_USAGE_HYPERV_CALL 1 + +union hv_ghcb { + struct ghcb ghcb; + struct { + u64 hypercalldata[509]; + u64 outputgpa; + union { + union { + struct { + u32 callcode : 16; + u32 isfast : 1; + u32 reserved1 : 14; + u32 isnested : 1; + u32 countofelements : 12; + u32 reserved2 : 4; + u32 repstartindex : 12; + u32 reserved3 : 4; + }; + u64 asuint64; + } hypercallinput; + union { + struct { + u16 callstatus; + u16 reserved1; + u32 elementsprocessed : 12; + u32 reserved2 : 20; + }; + u64 asunit64; + } hypercalloutput; + }; + u64 reserved2; + } hypercall; +} __packed __aligned(HV_HYP_PAGE_SIZE); + +u64 hv_ghcb_hypercall(u64 control, void *input, void *output, u32 input_size) +{ + union hv_ghcb *hv_ghcb; + void **ghcb_base; + unsigned long flags; + u64 status; + + if (!hv_ghcb_pg) + return -EFAULT; + + WARN_ON(in_nmi()); + + local_irq_save(flags); + ghcb_base = (void **)this_cpu_ptr(hv_ghcb_pg); + hv_ghcb = (union hv_ghcb *)*ghcb_base; + if (!hv_ghcb) { + local_irq_restore(flags); + return -EFAULT; + } + + hv_ghcb->ghcb.protocol_version = GHCB_PROTOCOL_MAX; + hv_ghcb->ghcb.ghcb_usage = GHCB_USAGE_HYPERV_CALL; + + hv_ghcb->hypercall.outputgpa = (u64)output; + hv_ghcb->hypercall.hypercallinput.asuint64 = 0; + hv_ghcb->hypercall.hypercallinput.callcode = control; + + if (input_size) + memcpy(hv_ghcb->hypercall.hypercalldata, input, input_size); + + VMGEXIT(); + + hv_ghcb->ghcb.ghcb_usage = 0xffffffff; + memset(hv_ghcb->ghcb.save.valid_bitmap, 0, + sizeof(hv_ghcb->ghcb.save.valid_bitmap)); + + status = hv_ghcb->hypercall.hypercalloutput.callstatus; + + local_irq_restore(flags); + + return status; +} + +void hv_ghcb_msr_write(u64 msr, u64 value) +{ + union hv_ghcb *hv_ghcb; + void **ghcb_base; + unsigned long flags; + struct es_em_ctxt ctxt; + + if (!hv_ghcb_pg) + return; + + WARN_ON(in_nmi()); + + local_irq_save(flags); + ghcb_base = (void **)this_cpu_ptr(hv_ghcb_pg); + hv_ghcb = (union hv_ghcb *)*ghcb_base; + if (!hv_ghcb) { + local_irq_restore(flags); + return; + } + + ghcb_set_rcx(&hv_ghcb->ghcb, msr); + ghcb_set_rax(&hv_ghcb->ghcb, lower_32_bits(value)); + ghcb_set_rdx(&hv_ghcb->ghcb, upper_32_bits(value)); + + if (sev_es_ghcb_hv_call(&hv_ghcb->ghcb, false, &ctxt, + SVM_EXIT_MSR, 1, 0)) + pr_warn("Fail to write msr via ghcb %llx.\n", msr); + + local_irq_restore(flags); +} +EXPORT_SYMBOL_GPL(hv_ghcb_msr_write); + +void hv_ghcb_msr_read(u64 msr, u64 *value) +{ + union hv_ghcb *hv_ghcb; + void **ghcb_base; + unsigned long flags; + struct es_em_ctxt ctxt; + + /* Check size of union hv_ghcb here. */ + BUILD_BUG_ON(sizeof(union hv_ghcb) != HV_HYP_PAGE_SIZE); + + if (!hv_ghcb_pg) + return; + + WARN_ON(in_nmi()); + + local_irq_save(flags); + ghcb_base = (void **)this_cpu_ptr(hv_ghcb_pg); + hv_ghcb = (union hv_ghcb *)*ghcb_base; + if (!hv_ghcb) { + local_irq_restore(flags); + return; + } + + ghcb_set_rcx(&hv_ghcb->ghcb, msr); + if (sev_es_ghcb_hv_call(&hv_ghcb->ghcb, false, &ctxt, + SVM_EXIT_MSR, 0, 0)) + pr_warn("Fail to read msr via ghcb %llx.\n", msr); + else + *value = (u64)lower_32_bits(hv_ghcb->ghcb.save.rax) + | ((u64)lower_32_bits(hv_ghcb->ghcb.save.rdx) << 32); + local_irq_restore(flags); +} +EXPORT_SYMBOL_GPL(hv_ghcb_msr_read); +#endif + +enum hv_isolation_type hv_get_isolation_type(void) +{ + if (!(ms_hyperv.priv_high & HV_ISOLATION)) + return HV_ISOLATION_TYPE_NONE; + return FIELD_GET(HV_ISOLATION_TYPE, ms_hyperv.isolation_config_b); +} +EXPORT_SYMBOL_GPL(hv_get_isolation_type); + +/* + * hv_is_isolation_supported - Check system runs in the Hyper-V + * isolation VM. + */ +bool hv_is_isolation_supported(void) +{ + if (!cpu_feature_enabled(X86_FEATURE_HYPERVISOR)) + return false; + + if (!hypervisor_is_type(X86_HYPER_MS_HYPERV)) + return false; + + return hv_get_isolation_type() != HV_ISOLATION_TYPE_NONE; +} + +DEFINE_STATIC_KEY_FALSE(isolation_type_snp); + +/* + * hv_isolation_type_snp - Check system runs in the AMD SEV-SNP based + * isolation VM. + */ +bool hv_isolation_type_snp(void) +{ + return static_branch_unlikely(&isolation_type_snp); +} + +/* + * hv_mark_gpa_visibility - Set pages visible to host via hvcall. + * + * In Isolation VM, all guest memory is encrypted from host and guest + * needs to set memory visible to host via hvcall before sharing memory + * with host. + */ +static int hv_mark_gpa_visibility(u16 count, const u64 pfn[], + enum hv_mem_host_visibility visibility) +{ + struct hv_gpa_range_for_visibility **input_pcpu, *input; + u16 pages_processed; + u64 hv_status; + unsigned long flags; + + /* no-op if partition isolation is not enabled */ + if (!hv_is_isolation_supported()) + return 0; + + if (count > HV_MAX_MODIFY_GPA_REP_COUNT) { + pr_err("Hyper-V: GPA count:%d exceeds supported:%lu\n", count, + HV_MAX_MODIFY_GPA_REP_COUNT); + return -EINVAL; + } + + local_irq_save(flags); + input_pcpu = (struct hv_gpa_range_for_visibility **) + this_cpu_ptr(hyperv_pcpu_input_arg); + input = *input_pcpu; + if (unlikely(!input)) { + local_irq_restore(flags); + return -EINVAL; + } + + input->partition_id = HV_PARTITION_ID_SELF; + input->host_visibility = visibility; + input->reserved0 = 0; + input->reserved1 = 0; + memcpy((void *)input->gpa_page_list, pfn, count * sizeof(*pfn)); + hv_status = hv_do_rep_hypercall( + HVCALL_MODIFY_SPARSE_GPA_PAGE_HOST_VISIBILITY, count, + 0, input, &pages_processed); + local_irq_restore(flags); + + if (hv_result_success(hv_status)) + return 0; + else + return -EFAULT; +} + +/* + * hv_set_mem_host_visibility - Set specified memory visible to host. + * + * In Isolation VM, all guest memory is encrypted from host and guest + * needs to set memory visible to host via hvcall before sharing memory + * with host. This function works as wrap of hv_mark_gpa_visibility() + * with memory base and size. + */ +int hv_set_mem_host_visibility(unsigned long kbuffer, int pagecount, bool visible) +{ + enum hv_mem_host_visibility visibility = visible ? + VMBUS_PAGE_VISIBLE_READ_WRITE : VMBUS_PAGE_NOT_VISIBLE; + u64 *pfn_array; + int ret = 0; + int i, pfn; + + if (!hv_is_isolation_supported() || !hv_hypercall_pg) + return 0; + + pfn_array = kmalloc(HV_HYP_PAGE_SIZE, GFP_KERNEL); + if (!pfn_array) + return -ENOMEM; + + for (i = 0, pfn = 0; i < pagecount; i++) { + pfn_array[pfn] = virt_to_hvpfn((void *)kbuffer + i * HV_HYP_PAGE_SIZE); + pfn++; + + if (pfn == HV_MAX_MODIFY_GPA_REP_COUNT || i == pagecount - 1) { + ret = hv_mark_gpa_visibility(pfn, pfn_array, + visibility); + if (ret) + goto err_free_pfn_array; + pfn = 0; + } + } + + err_free_pfn_array: + kfree(pfn_array); + return ret; +} + +/* + * hv_map_memory - map memory to extra space in the AMD SEV-SNP Isolation VM. + */ +void *hv_map_memory(void *addr, unsigned long size) +{ + unsigned long *pfns = kcalloc(size / PAGE_SIZE, + sizeof(unsigned long), GFP_KERNEL); + void *vaddr; + int i; + + if (!pfns) + return NULL; + + for (i = 0; i < size / PAGE_SIZE; i++) + pfns[i] = vmalloc_to_pfn(addr + i * PAGE_SIZE) + + (ms_hyperv.shared_gpa_boundary >> PAGE_SHIFT); + + vaddr = vmap_pfn(pfns, size / PAGE_SIZE, PAGE_KERNEL_IO); + kfree(pfns); + + return vaddr; +} + +void hv_unmap_memory(void *addr) +{ + vunmap(addr); +} diff --git a/arch/x86/include/asm/boot.h b/arch/x86/include/asm/boot.h index 9191280d9ea31..215d37f7dde8a 100644 --- a/arch/x86/include/asm/boot.h +++ b/arch/x86/include/asm/boot.h @@ -40,23 +40,40 @@ #ifdef CONFIG_X86_64 # define BOOT_STACK_SIZE 0x4000 +/* + * Used by decompressor's startup_32() to allocate page tables for identity + * mapping of the 4G of RAM in 4-level paging mode: + * - 1 level4 table; + * - 1 level3 table; + * - 4 level2 table that maps everything with 2M pages; + * + * The additional level5 table needed for 5-level paging is allocated from + * trampoline_32bit memory. + */ # define BOOT_INIT_PGT_SIZE (6*4096) -# ifdef CONFIG_RANDOMIZE_BASE + /* - * Assuming all cross the 512GB boundary: - * 1 page for level4 - * (2+2)*4 pages for kernel, param, cmd_line, and randomized kernel - * 2 pages for first 2M (video RAM: CONFIG_X86_VERBOSE_BOOTUP). - * Total is 19 pages. + * Total number of page tables kernel_add_identity_map() can allocate, + * including page tables consumed by startup_32(). + * + * Worst-case scenario: + * - 5-level paging needs 1 level5 table; + * - KASLR needs to map kernel, boot_params, cmdline and randomized kernel, + * assuming all of them cross 256T boundary: + * + 4*2 level4 table; + * + 4*2 level3 table; + * + 4*2 level2 table; + * - X86_VERBOSE_BOOTUP needs to map the first 2M (video RAM): + * + 1 level4 table; + * + 1 level3 table; + * + 1 level2 table; + * Total: 28 tables + * + * Add 4 spare table in case decompressor touches anything beyond what is + * accounted above. Warn if it happens. */ -# ifdef CONFIG_X86_VERBOSE_BOOTUP -# define BOOT_PGT_SIZE (19*4096) -# else /* !CONFIG_X86_VERBOSE_BOOTUP */ -# define BOOT_PGT_SIZE (17*4096) -# endif -# else /* !CONFIG_RANDOMIZE_BASE */ -# define BOOT_PGT_SIZE BOOT_INIT_PGT_SIZE -# endif +# define BOOT_PGT_SIZE_WARN (28*4096) +# define BOOT_PGT_SIZE (32*4096) #else /* !CONFIG_X86_64 */ # define BOOT_STACK_SIZE 0x1000 diff --git a/arch/x86/include/asm/hyperv-tlfs.h b/arch/x86/include/asm/hyperv-tlfs.h index b54b3e18d94ba..6f0acc45e67a7 100644 --- a/arch/x86/include/asm/hyperv-tlfs.h +++ b/arch/x86/include/asm/hyperv-tlfs.h @@ -276,6 +276,23 @@ enum hv_isolation_type { #define HV_X64_MSR_TIME_REF_COUNT HV_REGISTER_TIME_REF_COUNT #define HV_X64_MSR_REFERENCE_TSC HV_REGISTER_REFERENCE_TSC +/* Hyper-V memory host visibility */ +enum hv_mem_host_visibility { + VMBUS_PAGE_NOT_VISIBLE = 0, + VMBUS_PAGE_VISIBLE_READ_ONLY = 1, + VMBUS_PAGE_VISIBLE_READ_WRITE = 3 +}; + +/* HvCallModifySparseGpaPageHostVisibility hypercall */ +#define HV_MAX_MODIFY_GPA_REP_COUNT ((PAGE_SIZE / sizeof(u64)) - 2) +struct hv_gpa_range_for_visibility { + u64 partition_id; + u32 host_visibility:2; + u32 reserved0:30; + u32 reserved1; + u64 gpa_page_list[HV_MAX_MODIFY_GPA_REP_COUNT]; +} __packed; + /* * Declare the MSR used to setup pages used to communicate with the hypervisor. */ @@ -585,6 +602,39 @@ enum hv_interrupt_type { HV_X64_INTERRUPT_TYPE_MAXIMUM = 0x000A, }; +union hv_msi_address_register { + u32 as_uint32; + struct { + u32 reserved1:2; + u32 destination_mode:1; + u32 redirection_hint:1; + u32 reserved2:8; + u32 destination_id:8; + u32 msi_base:12; + }; +} __packed; + +union hv_msi_data_register { + u32 as_uint32; + struct { + u32 vector:8; + u32 delivery_mode:3; + u32 reserved1:3; + u32 level_assert:1; + u32 trigger_mode:1; + u32 reserved2:16; + }; +} __packed; + +/* HvRetargetDeviceInterrupt hypercall */ +union hv_msi_entry { + u64 as_uint64; + struct { + union hv_msi_address_register address; + union hv_msi_data_register data; + } __packed; +}; + #include #endif diff --git a/arch/x86/include/asm/i8259.h b/arch/x86/include/asm/i8259.h index 637fa1df35124..c715097e92fd2 100644 --- a/arch/x86/include/asm/i8259.h +++ b/arch/x86/include/asm/i8259.h @@ -69,6 +69,8 @@ struct legacy_pic { void (*make_irq)(unsigned int irq); }; +void legacy_pic_pcat_compat(void); + extern struct legacy_pic *legacy_pic; extern struct legacy_pic null_legacy_pic; diff --git a/arch/x86/include/asm/mem_encrypt.h b/arch/x86/include/asm/mem_encrypt.h index 2356fdddd3e61..9e1bdc8175fdf 100644 --- a/arch/x86/include/asm/mem_encrypt.h +++ b/arch/x86/include/asm/mem_encrypt.h @@ -49,7 +49,6 @@ void __init mem_encrypt_free_decrypted_mem(void); void __init sev_es_init_vc_handling(void); bool sme_active(void); -bool sev_active(void); bool sev_es_active(void); void __init mem_encrypt_init(void); @@ -76,7 +75,6 @@ static inline void __init sme_enable(struct boot_params *bp) { } static inline void sev_es_init_vc_handling(void) { } static inline bool sme_active(void) { return false; } -static inline bool sev_active(void) { return false; } static inline bool sev_es_active(void) { return false; } static inline int __init @@ -103,11 +101,6 @@ static inline void mem_encrypt_init(void) { } extern char __start_bss_decrypted[], __end_bss_decrypted[], __start_bss_decrypted_unused[]; -static inline bool mem_encrypt_active(void) -{ - return sme_me_mask; -} - static inline u64 sme_get_me_mask(void) { return sme_me_mask; diff --git a/arch/x86/include/asm/mshyperv.h b/arch/x86/include/asm/mshyperv.h index c2b9ab94408e6..a1c3dceff8eb7 100644 --- a/arch/x86/include/asm/mshyperv.h +++ b/arch/x86/include/asm/mshyperv.h @@ -11,23 +11,14 @@ #include #include +union hv_ghcb; + +DECLARE_STATIC_KEY_FALSE(isolation_type_snp); + typedef int (*hyperv_fill_flush_list_func)( struct hv_guest_mapping_flush_list *flush, void *data); -static inline void hv_set_register(unsigned int reg, u64 value) -{ - wrmsrl(reg, value); -} - -static inline u64 hv_get_register(unsigned int reg) -{ - u64 value; - - rdmsrl(reg, value); - return value; -} - #define hv_get_raw_timer() rdtsc_ordered() void hyperv_vector_handler(struct pt_regs *regs); @@ -39,6 +30,8 @@ extern void *hv_hypercall_pg; extern u64 hv_current_partition_id; +extern union hv_ghcb __percpu **hv_ghcb_pg; + int hv_call_deposit_pages(int node, u64 partition_id, u32 num_pages); int hv_call_add_logical_proc(int node, u32 lp_index, u32 acpi_id); int hv_call_create_vp(int node, u64 partition_id, u32 vp_index, u32 flags); @@ -181,6 +174,50 @@ struct irq_domain *hv_create_pci_msi_domain(void); int hv_map_ioapic_interrupt(int ioapic_id, bool level, int vcpu, int vector, struct hv_interrupt_entry *entry); int hv_unmap_ioapic_interrupt(int ioapic_id, struct hv_interrupt_entry *entry); +int hv_set_mem_host_visibility(unsigned long addr, int numpages, bool visible); + +#ifdef CONFIG_AMD_MEM_ENCRYPT +void hv_ghcb_msr_write(u64 msr, u64 value); +void hv_ghcb_msr_read(u64 msr, u64 *value); +#else +static inline void hv_ghcb_msr_write(u64 msr, u64 value) {} +static inline void hv_ghcb_msr_read(u64 msr, u64 *value) {} +#endif + +extern bool hv_isolation_type_snp(void); + +static inline bool hv_is_synic_reg(unsigned int reg) +{ + if ((reg >= HV_REGISTER_SCONTROL) && + (reg <= HV_REGISTER_SINT15)) + return true; + return false; +} + +static inline u64 hv_get_register(unsigned int reg) +{ + u64 value; + + if (hv_is_synic_reg(reg) && hv_isolation_type_snp()) + hv_ghcb_msr_read(reg, &value); + else + rdmsrl(reg, value); + return value; +} + +static inline void hv_set_register(unsigned int reg, u64 value) +{ + if (hv_is_synic_reg(reg) && hv_isolation_type_snp()) { + hv_ghcb_msr_write(reg, value); + + /* Write proxy bit via wrmsl instruction */ + if (reg >= HV_REGISTER_SINT0 && + reg <= HV_REGISTER_SINT15) + wrmsrl(reg, value | 1 << 20); + } else { + wrmsrl(reg, value); + } +} #else /* CONFIG_HYPERV */ static inline void hyperv_init(void) {} @@ -198,6 +235,13 @@ static inline int hyperv_flush_guest_mapping_range(u64 as, { return -1; } +static inline void hv_set_register(unsigned int reg, u64 value) { } +static inline u64 hv_get_register(unsigned int reg) { return 0; } +static inline int hv_set_mem_host_visibility(unsigned long addr, int numpages, + bool visible) +{ + return -1; +} #endif /* CONFIG_HYPERV */ diff --git a/arch/x86/include/asm/msr-index.h b/arch/x86/include/asm/msr-index.h index 81f1f61cb99e0..dc7fa0aa0a8e9 100644 --- a/arch/x86/include/asm/msr-index.h +++ b/arch/x86/include/asm/msr-index.h @@ -511,6 +511,7 @@ #define MSR_AMD64_CPUID_FN_1 0xc0011004 #define MSR_AMD64_LS_CFG 0xc0011020 #define MSR_AMD64_DC_CFG 0xc0011022 +#define MSR_AMD64_TW_CFG 0xc0011023 #define MSR_AMD64_DE_CFG 0xc0011029 #define MSR_AMD64_DE_CFG_LFENCE_SERIALIZE_BIT 1 @@ -564,12 +565,17 @@ #define AMD_CPPC_DES_PERF(x) (((x) & 0xff) << 16) #define AMD_CPPC_ENERGY_PERF_PREF(x) (((x) & 0xff) << 24) -/* Fam 17h MSRs */ -#define MSR_F17H_IRPERF 0xc00000e9 +/* Zen4 */ +#define MSR_ZEN4_BP_CFG 0xc001102e +#define MSR_ZEN4_BP_CFG_SHARED_BTB_FIX_BIT 5 +/* Zen 2 */ #define MSR_ZEN2_SPECTRAL_CHICKEN 0xc00110e3 #define MSR_ZEN2_SPECTRAL_CHICKEN_BIT BIT_ULL(1) +/* Fam 17h MSRs */ +#define MSR_F17H_IRPERF 0xc00000e9 + /* Fam 16h MSRs */ #define MSR_F16H_L2I_PERF_CTL 0xc0010230 #define MSR_F16H_L2I_PERF_CTR 0xc0010231 diff --git a/arch/x86/include/asm/numa.h b/arch/x86/include/asm/numa.h index e3bae2b60a0db..ef2844d691735 100644 --- a/arch/x86/include/asm/numa.h +++ b/arch/x86/include/asm/numa.h @@ -12,13 +12,6 @@ #define NR_NODE_MEMBLKS (MAX_NUMNODES*2) -/* - * Too small node sizes may confuse the VM badly. Usually they - * result from BIOS bugs. So dont recognize nodes as standalone - * NUMA entities that have less than this amount of RAM listed: - */ -#define NODE_MIN_SIZE (4*1024*1024) - extern int numa_off; /* diff --git a/arch/x86/include/asm/page.h b/arch/x86/include/asm/page.h index 4d5810c8fab74..9cc82f305f4bf 100644 --- a/arch/x86/include/asm/page.h +++ b/arch/x86/include/asm/page.h @@ -71,6 +71,16 @@ static inline void copy_user_page(void *to, void *from, unsigned long vaddr, extern bool __virt_addr_valid(unsigned long kaddr); #define virt_addr_valid(kaddr) __virt_addr_valid((unsigned long) (kaddr)) +static __always_inline u64 __canonical_address(u64 vaddr, u8 vaddr_bits) +{ + return ((s64)vaddr << (64 - vaddr_bits)) >> (64 - vaddr_bits); +} + +static __always_inline u64 __is_canonical_address(u64 vaddr, u8 vaddr_bits) +{ + return __canonical_address(vaddr, vaddr_bits) == vaddr; +} + #endif /* __ASSEMBLY__ */ #include diff --git a/arch/x86/include/asm/pgtable_types.h b/arch/x86/include/asm/pgtable_types.h index 40497a9020c6e..28e59576c75be 100644 --- a/arch/x86/include/asm/pgtable_types.h +++ b/arch/x86/include/asm/pgtable_types.h @@ -123,11 +123,12 @@ * instance, and is *not* included in this mask since * pte_modify() does modify it. */ -#define _PAGE_CHG_MASK (PTE_PFN_MASK | _PAGE_PCD | _PAGE_PWT | \ - _PAGE_SPECIAL | _PAGE_ACCESSED | _PAGE_DIRTY | \ - _PAGE_SOFT_DIRTY | _PAGE_DEVMAP | _PAGE_ENC | \ - _PAGE_UFFD_WP) -#define _HPAGE_CHG_MASK (_PAGE_CHG_MASK | _PAGE_PSE) +#define _COMMON_PAGE_CHG_MASK (PTE_PFN_MASK | _PAGE_PCD | _PAGE_PWT | \ + _PAGE_SPECIAL | _PAGE_ACCESSED | _PAGE_DIRTY |\ + _PAGE_SOFT_DIRTY | _PAGE_DEVMAP | _PAGE_ENC | \ + _PAGE_UFFD_WP) +#define _PAGE_CHG_MASK (_COMMON_PAGE_CHG_MASK | _PAGE_PAT) +#define _HPAGE_CHG_MASK (_COMMON_PAGE_CHG_MASK | _PAGE_PSE | _PAGE_PAT_LARGE) /* * The cache modes defined here are used to translate between pure SW usage diff --git a/arch/x86/include/asm/setup.h b/arch/x86/include/asm/setup.h index a12458a7a8d4a..e43ccc62fc1c3 100644 --- a/arch/x86/include/asm/setup.h +++ b/arch/x86/include/asm/setup.h @@ -108,27 +108,16 @@ extern unsigned long _brk_end; void *extend_brk(size_t size, size_t align); /* - * Reserve space in the brk section. The name must be unique within - * the file, and somewhat descriptive. The size is in bytes. Must be - * used at file scope. + * Reserve space in the .brk section, which is a block of memory from which the + * caller is allowed to allocate very early (before even memblock is available) + * by calling extend_brk(). All allocated memory will be eventually converted + * to memblock. Any leftover unallocated memory will be freed. * - * (This uses a temp function to wrap the asm so we can pass it the - * size parameter; otherwise we wouldn't be able to. We can't use a - * "section" attribute on a normal variable because it always ends up - * being @progbits, which ends up allocating space in the vmlinux - * executable.) + * The size is in bytes. */ -#define RESERVE_BRK(name,sz) \ - static void __section(".discard.text") __used notrace \ - __brk_reservation_fn_##name##__(void) { \ - asm volatile ( \ - ".pushsection .brk_reservation,\"aw\",@nobits;" \ - ".brk." #name ":" \ - " 1:.skip %c0;" \ - " .size .brk." #name ", . - 1b;" \ - " .popsection" \ - : : "i" (sz)); \ - } +#define RESERVE_BRK(name, size) \ + __section(".bss..brk") __aligned(1) __used \ + static char __brk_##name[size] extern void probe_roms(void); #ifdef __i386__ @@ -141,12 +130,19 @@ asmlinkage void __init x86_64_start_reservations(char *real_mode_data); #endif /* __i386__ */ #endif /* _SETUP */ -#else -#define RESERVE_BRK(name,sz) \ - .pushsection .brk_reservation,"aw",@nobits; \ -.brk.name: \ -1: .skip sz; \ - .size .brk.name,.-1b; \ + +#else /* __ASSEMBLY */ + +.macro __RESERVE_BRK name, size + .pushsection .bss..brk, "aw" +SYM_DATA_START(__brk_\name) + .skip \size +SYM_DATA_END(__brk_\name) .popsection +.endm + +#define RESERVE_BRK(name, size) __RESERVE_BRK name, size + #endif /* __ASSEMBLY__ */ + #endif /* _ASM_X86_SETUP_H */ diff --git a/arch/x86/include/asm/sev.h b/arch/x86/include/asm/sev.h index fa5cd05d3b5be..ec060c4335897 100644 --- a/arch/x86/include/asm/sev.h +++ b/arch/x86/include/asm/sev.h @@ -53,6 +53,7 @@ static inline u64 lower_bits(u64 val, unsigned int bits) struct real_mode_header; enum stack_type; +struct ghcb; /* Early IDT entry points for #VC handler */ extern void vc_no_ghcb(void); @@ -81,6 +82,11 @@ static __always_inline void sev_es_nmi_complete(void) __sev_es_nmi_complete(); } extern int __init sev_es_efi_map_ghcbs(pgd_t *pgd); +extern enum es_result sev_es_ghcb_hv_call(struct ghcb *ghcb, + bool set_ghcb_msr, + struct es_em_ctxt *ctxt, + u64 exit_code, u64 exit_info_1, + u64 exit_info_2); #else static inline void sev_es_ist_enter(struct pt_regs *regs) { } static inline void sev_es_ist_exit(void) { } diff --git a/arch/x86/include/asm/uaccess.h b/arch/x86/include/asm/uaccess.h index ab5e577373093..3616fd4ba3953 100644 --- a/arch/x86/include/asm/uaccess.h +++ b/arch/x86/include/asm/uaccess.h @@ -543,7 +543,7 @@ copy_mc_to_kernel(void *to, const void *from, unsigned len); #define copy_mc_to_kernel copy_mc_to_kernel unsigned long __must_check -copy_mc_to_user(void *to, const void *from, unsigned len); +copy_mc_to_user(void __user *to, const void *from, unsigned len); #endif /* diff --git a/arch/x86/include/asm/virtext.h b/arch/x86/include/asm/virtext.h index 3b12e6b994123..6c2e3ff3cb28f 100644 --- a/arch/x86/include/asm/virtext.h +++ b/arch/x86/include/asm/virtext.h @@ -101,12 +101,6 @@ static inline int cpu_has_svm(const char **msg) return 0; } - if (boot_cpu_data.extended_cpuid_level < SVM_CPUID_FUNC) { - if (msg) - *msg = "can't execute cpuid_8000000a"; - return 0; - } - if (!boot_cpu_has(X86_FEATURE_SVM)) { if (msg) *msg = "svm not available"; diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index 94ac7402c1ac2..a0fb49ebcb730 100644 --- a/arch/x86/kernel/acpi/boot.c +++ b/arch/x86/kernel/acpi/boot.c @@ -22,6 +22,7 @@ #include #include #include +#include #include #include @@ -139,6 +140,9 @@ static int __init acpi_parse_madt(struct acpi_table_header *table) pr_debug("Local APIC address 0x%08x\n", madt->address); } + if (madt->flags & ACPI_MADT_PCAT_COMPAT) + legacy_pic_pcat_compat(); + default_acpi_madt_oem_check(madt->header.oem_id, madt->header.oem_table_id); @@ -1063,6 +1067,9 @@ static int __init acpi_parse_madt_lapic_entries(void) return count; } + /* This does not take overrides into consideration */ + swiotlb_hint_cpus(max(count, x2count)); + x2count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_X2APIC_NMI, acpi_parse_x2apic_nmi, 0); count = acpi_table_parse_madt(ACPI_MADT_TYPE_LOCAL_APIC_NMI, diff --git a/arch/x86/kernel/alternative.c b/arch/x86/kernel/alternative.c index 43dd7f281a216..c9e3246bf4f38 100644 --- a/arch/x86/kernel/alternative.c +++ b/arch/x86/kernel/alternative.c @@ -269,6 +269,17 @@ void __init_or_module noinline apply_alternatives(struct alt_instr *start, u8 insn_buff[MAX_PATCH_LEN]; DPRINTK("alt table %px, -> %px", start, end); + + /* + * In the case CONFIG_X86_5LEVEL=y, KASAN_SHADOW_START is defined using + * cpu_feature_enabled(X86_FEATURE_LA57) and is therefore patched here. + * During the process, KASAN becomes confused seeing partial LA57 + * conversion and triggers a false-positive out-of-bound report. + * + * Disable KASAN until the patching is complete. + */ + kasan_disable_current(); + /* * The scan order should be from start to end. A later scanned * alternative code can overwrite previously scanned alternative code. @@ -336,6 +347,8 @@ void __init_or_module noinline apply_alternatives(struct alt_instr *start, next: optimize_nops(instr, a->instrlen); } + + kasan_enable_current(); } #if defined(CONFIG_RETPOLINE) && defined(CONFIG_STACK_VALIDATION) diff --git a/arch/x86/kernel/apic/msi.c b/arch/x86/kernel/apic/msi.c index dbacb9ec8843a..1656477e4169a 100644 --- a/arch/x86/kernel/apic/msi.c +++ b/arch/x86/kernel/apic/msi.c @@ -163,7 +163,7 @@ int pci_msi_prepare(struct irq_domain *domain, struct device *dev, int nvec, struct msi_desc *desc = first_pci_msi_entry(pdev); init_irq_alloc_info(arg, NULL); - if (desc->msi_attrib.is_msix) { + if (desc->pci.msi_attrib.is_msix) { arg->type = X86_IRQ_ALLOC_TYPE_PCI_MSIX; } else { arg->type = X86_IRQ_ALLOC_TYPE_PCI_MSI; diff --git a/arch/x86/kernel/apm_32.c b/arch/x86/kernel/apm_32.c index 241dda687eb9f..06978a1194f24 100644 --- a/arch/x86/kernel/apm_32.c +++ b/arch/x86/kernel/apm_32.c @@ -237,12 +237,6 @@ extern int (*console_blank_hook)(int); #endif -/* - * The apm_bios device is one of the misc char devices. - * This is its minor number. - */ -#define APM_MINOR_DEV 134 - /* * Various options can be changed at boot time as follows: * (We allow underscores for compatibility with the modules code) diff --git a/arch/x86/kernel/cc_platform.c b/arch/x86/kernel/cc_platform.c index 03bb2f343ddb7..6cb3a675e6863 100644 --- a/arch/x86/kernel/cc_platform.c +++ b/arch/x86/kernel/cc_platform.c @@ -11,6 +11,7 @@ #include #include +#include #include static bool __maybe_unused intel_cc_platform_has(enum cc_attr attr) @@ -58,12 +59,19 @@ static bool amd_cc_platform_has(enum cc_attr attr) #endif } +static bool hyperv_cc_platform_has(enum cc_attr attr) +{ + return attr == CC_ATTR_GUEST_MEM_ENCRYPT; +} bool cc_platform_has(enum cc_attr attr) { if (sme_me_mask) return amd_cc_platform_has(attr); + if (hv_is_isolation_supported()) + return hyperv_cc_platform_has(attr); + return false; } EXPORT_SYMBOL_GPL(cc_platform_has); diff --git a/arch/x86/kernel/cpu/amd.c b/arch/x86/kernel/cpu/amd.c index d3b6b2442cd72..0fe222c35f06e 100644 --- a/arch/x86/kernel/cpu/amd.c +++ b/arch/x86/kernel/cpu/amd.c @@ -80,6 +80,10 @@ static const int amd_div0[] = AMD_LEGACY_ERRATUM(AMD_MODEL_RANGE(0x17, 0x00, 0x0, 0x2f, 0xf), AMD_MODEL_RANGE(0x17, 0x50, 0x0, 0x5f, 0xf)); +static const int amd_erratum_1485[] = + AMD_LEGACY_ERRATUM(AMD_MODEL_RANGE(0x19, 0x10, 0x0, 0x1f, 0xf), + AMD_MODEL_RANGE(0x19, 0x60, 0x0, 0xaf, 0xf)); + static bool cpu_has_amd_erratum(struct cpuinfo_x86 *cpu, const int *erratum) { int osvw_id = *erratum++; @@ -1120,6 +1124,10 @@ static void init_amd(struct cpuinfo_x86 *c) pr_notice_once("AMD Zen1 DIV0 bug detected. Disable SMT for full protection.\n"); setup_force_cpu_bug(X86_BUG_DIV0); } + + if (!cpu_has(c, X86_FEATURE_HYPERVISOR) && + cpu_has_amd_erratum(c, amd_erratum_1485)) + msr_set_bit(MSR_ZEN4_BP_CFG, MSR_ZEN4_BP_CFG_SHARED_BTB_FIX_BIT); } #ifdef CONFIG_X86_32 @@ -1278,6 +1286,9 @@ static void zenbleed_check_cpu(void *unused) void amd_check_microcode(void) { + if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD) + return; + on_each_cpu(zenbleed_check_cpu, NULL, 1); } diff --git a/arch/x86/kernel/cpu/bugs.c b/arch/x86/kernel/cpu/bugs.c index 94846c2d96a88..fd780304c0f2c 100644 --- a/arch/x86/kernel/cpu/bugs.c +++ b/arch/x86/kernel/cpu/bugs.c @@ -2414,7 +2414,7 @@ static void __init srso_select_mitigation(void) switch (srso_cmd) { case SRSO_CMD_OFF: - return; + goto pred_cmd; case SRSO_CMD_MICROCODE: if (has_microcode) { @@ -2477,7 +2477,7 @@ static void __init srso_select_mitigation(void) pr_info("%s%s\n", srso_strings[srso_mitigation], (has_microcode ? "" : ", no microcode")); pred_cmd: - if ((boot_cpu_has(X86_FEATURE_SRSO_NO) || srso_cmd == SRSO_CMD_OFF) && + if ((!boot_cpu_has_bug(X86_BUG_SRSO) || srso_cmd == SRSO_CMD_OFF) && boot_cpu_has(X86_FEATURE_SBPB)) x86_pred_cmd = PRED_CMD_SBPB; } @@ -2692,7 +2692,7 @@ static ssize_t srso_show_state(char *buf) return sysfs_emit(buf, "%s%s\n", srso_strings[srso_mitigation], - (cpu_has_ibpb_brtype_microcode() ? "" : ", no microcode")); + boot_cpu_has(X86_FEATURE_IBPB_BRTYPE) ? "" : ", no microcode"); } static ssize_t cpu_show_common(struct device *dev, struct device_attribute *attr, diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c index a2957cb20ebdd..ea7a60d231845 100644 --- a/arch/x86/kernel/cpu/common.c +++ b/arch/x86/kernel/cpu/common.c @@ -1222,11 +1222,11 @@ static const struct x86_cpu_id cpu_vuln_blacklist[] __initconst = { 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 | MMIO | RETBLEED), VULNBL_INTEL_STEPPINGS(SKYLAKE_X, X86_STEPPING_ANY, MMIO | RETBLEED | GDS), - VULNBL_INTEL_STEPPINGS(SKYLAKE, X86_STEPPING_ANY, SRBDS | MMIO | RETBLEED), - VULNBL_INTEL_STEPPINGS(KABYLAKE_L, X86_STEPPING_ANY, SRBDS | MMIO | RETBLEED | GDS), - VULNBL_INTEL_STEPPINGS(KABYLAKE, X86_STEPPING_ANY, SRBDS | MMIO | RETBLEED | GDS), + VULNBL_INTEL_STEPPINGS(SKYLAKE_L, X86_STEPPING_ANY, MMIO | RETBLEED | GDS | SRBDS), + VULNBL_INTEL_STEPPINGS(SKYLAKE, X86_STEPPING_ANY, MMIO | RETBLEED | GDS | SRBDS), + VULNBL_INTEL_STEPPINGS(KABYLAKE_L, X86_STEPPING_ANY, MMIO | RETBLEED | GDS | SRBDS), + VULNBL_INTEL_STEPPINGS(KABYLAKE, X86_STEPPING_ANY, MMIO | RETBLEED | GDS | SRBDS), VULNBL_INTEL_STEPPINGS(CANNONLAKE_L, X86_STEPPING_ANY, RETBLEED), VULNBL_INTEL_STEPPINGS(ICELAKE_L, X86_STEPPING_ANY, MMIO | MMIO_SBDS | RETBLEED | GDS), VULNBL_INTEL_STEPPINGS(ICELAKE_D, X86_STEPPING_ANY, MMIO | GDS), @@ -1245,7 +1245,7 @@ static const struct x86_cpu_id cpu_vuln_blacklist[] __initconst = { VULNBL_AMD(0x15, RETBLEED), VULNBL_AMD(0x16, RETBLEED), VULNBL_AMD(0x17, RETBLEED | SMT_RSB | SRSO), - VULNBL_HYGON(0x18, RETBLEED | SMT_RSB), + VULNBL_HYGON(0x18, RETBLEED | SMT_RSB | SRSO), VULNBL_AMD(0x19, SRSO), {} }; diff --git a/arch/x86/kernel/cpu/hygon.c b/arch/x86/kernel/cpu/hygon.c index c393b8773ace6..9e8380bd4fb9f 100644 --- a/arch/x86/kernel/cpu/hygon.c +++ b/arch/x86/kernel/cpu/hygon.c @@ -86,8 +86,12 @@ static void hygon_get_topology(struct cpuinfo_x86 *c) if (!err) c->x86_coreid_bits = get_count_order(c->x86_max_cores); - /* Socket ID is ApicId[6] for these processors. */ - c->phys_proc_id = c->apicid >> APICID_SOCKET_ID_BIT; + /* + * Socket ID is ApicId[6] for the processors with model <= 0x3 + * when running on host. + */ + if (!boot_cpu_has(X86_FEATURE_HYPERVISOR) && c->x86_model <= 0x3) + c->phys_proc_id = c->apicid >> APICID_SOCKET_ID_BIT; cacheinfo_hygon_init_llc_id(c, cpu); } else if (cpu_has(c, X86_FEATURE_NODEID_MSR)) { diff --git a/arch/x86/kernel/cpu/mshyperv.c b/arch/x86/kernel/cpu/mshyperv.c index 8d3c649a1769b..1369538833b16 100644 --- a/arch/x86/kernel/cpu/mshyperv.c +++ b/arch/x86/kernel/cpu/mshyperv.c @@ -18,6 +18,7 @@ #include #include #include +#include #include #include #include @@ -327,9 +328,27 @@ static void __init ms_hyperv_init_platform(void) if (ms_hyperv.priv_high & HV_ISOLATION) { ms_hyperv.isolation_config_a = cpuid_eax(HYPERV_CPUID_ISOLATION_CONFIG); ms_hyperv.isolation_config_b = cpuid_ebx(HYPERV_CPUID_ISOLATION_CONFIG); + ms_hyperv.shared_gpa_boundary = + BIT_ULL(ms_hyperv.shared_gpa_boundary_bits); pr_info("Hyper-V: Isolation Config: Group A 0x%x, Group B 0x%x\n", ms_hyperv.isolation_config_a, ms_hyperv.isolation_config_b); + + if (hv_get_isolation_type() == HV_ISOLATION_TYPE_SNP) { + static_branch_enable(&isolation_type_snp); +#ifdef CONFIG_SWIOTLB + swiotlb_unencrypted_base = ms_hyperv.shared_gpa_boundary; +#endif + } + +#ifdef CONFIG_SWIOTLB + /* + * Enable swiotlb force mode in Isolation VM to + * use swiotlb bounce buffer for dma transaction. + */ + swiotlb_force = SWIOTLB_FORCE; + swiotlb_set_alloc_from_low_pages(false); +#endif } if (hv_max_functions_eax >= HYPERV_CPUID_NESTED_FEATURES) { diff --git a/arch/x86/kernel/cpu/sgx/virt.c b/arch/x86/kernel/cpu/sgx/virt.c index 64511c4a52001..1550910201238 100644 --- a/arch/x86/kernel/cpu/sgx/virt.c +++ b/arch/x86/kernel/cpu/sgx/virt.c @@ -167,6 +167,7 @@ static int sgx_vepc_release(struct inode *inode, struct file *file) continue; xa_erase(&vepc->page_array, index); + cond_resched(); } /* @@ -185,6 +186,7 @@ static int sgx_vepc_release(struct inode *inode, struct file *file) list_add_tail(&epc_page->list, &secs_pages); xa_erase(&vepc->page_array, index); + cond_resched(); } /* @@ -206,6 +208,7 @@ static int sgx_vepc_release(struct inode *inode, struct file *file) if (sgx_vepc_free_page(epc_page)) list_add_tail(&epc_page->list, &secs_pages); + cond_resched(); } if (!list_empty(&secs_pages)) diff --git a/arch/x86/kernel/crash_dump_64.c b/arch/x86/kernel/crash_dump_64.c index 045e82e8945b3..a7f617a3981d4 100644 --- a/arch/x86/kernel/crash_dump_64.c +++ b/arch/x86/kernel/crash_dump_64.c @@ -10,6 +10,7 @@ #include #include #include +#include static ssize_t __copy_oldmem_page(unsigned long pfn, char *buf, size_t csize, unsigned long offset, int userbuf, @@ -73,5 +74,6 @@ ssize_t copy_oldmem_page_encrypted(unsigned long pfn, char *buf, size_t csize, ssize_t elfcorehdr_read(char *buf, size_t count, u64 *ppos) { - return read_from_oldmem(buf, count, ppos, 0, sev_active()); + return read_from_oldmem(buf, count, ppos, 0, + cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)); } diff --git a/arch/x86/kernel/head64.c b/arch/x86/kernel/head64.c index 5036104d54707..e9e99da188f00 100644 --- a/arch/x86/kernel/head64.c +++ b/arch/x86/kernel/head64.c @@ -19,7 +19,7 @@ #include #include #include -#include +#include #include #include @@ -79,7 +79,7 @@ static struct desc_struct startup_gdt[GDT_ENTRIES] = { * while the kernel still uses a direct mapping. */ static struct desc_ptr startup_gdt_descr = { - .size = sizeof(startup_gdt), + .size = sizeof(startup_gdt)-1, .address = 0, }; @@ -284,8 +284,13 @@ unsigned long __head __startup_64(unsigned long physaddr, * The bss section will be memset to zero later in the initialization so * there is no need to zero it after changing the memory encryption * attribute. + * + * This is early code, use an open coded check for SME instead of + * using cc_platform_has(). This eliminates worries about removing + * instrumentation or checking boot_cpu_data in the cc_platform_has() + * function. */ - if (mem_encrypt_active()) { + if (sme_get_me_mask()) { vaddr = (unsigned long)__start_bss_decrypted; vaddr_end = (unsigned long)__end_bss_decrypted; for (; vaddr < vaddr_end; vaddr += PMD_SIZE) { diff --git a/arch/x86/kernel/i8259.c b/arch/x86/kernel/i8259.c index f91e5e31aa4f0..2ac5f488300cf 100644 --- a/arch/x86/kernel/i8259.c +++ b/arch/x86/kernel/i8259.c @@ -32,6 +32,7 @@ */ static void init_8259A(int auto_eoi); +static bool pcat_compat __ro_after_init; static int i8259A_auto_eoi; DEFINE_RAW_SPINLOCK(i8259A_lock); @@ -301,15 +302,32 @@ static void unmask_8259A(void) static int probe_8259A(void) { + unsigned char new_val, probe_val = ~(1 << PIC_CASCADE_IR); unsigned long flags; - unsigned char probe_val = ~(1 << PIC_CASCADE_IR); - unsigned char new_val; + + /* + * If MADT has the PCAT_COMPAT flag set, then do not bother probing + * for the PIC. Some BIOSes leave the PIC uninitialized and probing + * fails. + * + * Right now this causes problems as quite some code depends on + * nr_legacy_irqs() > 0 or has_legacy_pic() == true. This is silly + * when the system has an IO/APIC because then PIC is not required + * at all, except for really old machines where the timer interrupt + * must be routed through the PIC. So just pretend that the PIC is + * there and let legacy_pic->init() initialize it for nothing. + * + * Alternatively this could just try to initialize the PIC and + * repeat the probe, but for cases where there is no PIC that's + * just pointless. + */ + if (pcat_compat) + return nr_legacy_irqs(); + /* - * Check to see if we have a PIC. - * Mask all except the cascade and read - * back the value we just wrote. If we don't - * have a PIC, we will read 0xff as opposed to the - * value we wrote. + * Check to see if we have a PIC. Mask all except the cascade and + * read back the value we just wrote. If we don't have a PIC, we + * will read 0xff as opposed to the value we wrote. */ raw_spin_lock_irqsave(&i8259A_lock, flags); @@ -431,5 +449,9 @@ static int __init i8259A_init_ops(void) return 0; } - device_initcall(i8259A_init_ops); + +void __init legacy_pic_pcat_compat(void) +{ + pcat_compat = true; +} diff --git a/arch/x86/kernel/kvm.c b/arch/x86/kernel/kvm.c index eba6485a59a39..83230ebb41343 100644 --- a/arch/x86/kernel/kvm.c +++ b/arch/x86/kernel/kvm.c @@ -27,6 +27,7 @@ #include #include #include +#include #include #include #include @@ -432,7 +433,7 @@ static void __init sev_map_percpu_data(void) { int cpu; - if (!sev_active()) + if (!cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)) return; for_each_possible_cpu(cpu) { diff --git a/arch/x86/kernel/kvmclock.c b/arch/x86/kernel/kvmclock.c index 73c74b961d0fd..7c4edcbe15376 100644 --- a/arch/x86/kernel/kvmclock.c +++ b/arch/x86/kernel/kvmclock.c @@ -16,9 +16,9 @@ #include #include #include +#include #include -#include #include #include @@ -223,7 +223,7 @@ static void __init kvmclock_init_mem(void) * hvclock is shared between the guest and the hypervisor, must * be mapped decrypted. */ - if (sev_active()) { + if (cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)) { r = set_memory_decrypted((unsigned long) hvclock_mem, 1UL << order); if (r) { @@ -239,6 +239,9 @@ static void __init kvmclock_init_mem(void) static int __init kvm_setup_vsyscall_timeinfo(void) { + if (!kvm_para_available() || !kvmclock) + return 0; + kvmclock_init_mem(); #ifdef CONFIG_X86_64 diff --git a/arch/x86/kernel/machine_kexec_64.c b/arch/x86/kernel/machine_kexec_64.c index dc8b17568784f..6e9bff950db6c 100644 --- a/arch/x86/kernel/machine_kexec_64.c +++ b/arch/x86/kernel/machine_kexec_64.c @@ -166,7 +166,7 @@ static int init_transition_pgtable(struct kimage *image, pgd_t *pgd) } pte = pte_offset_kernel(pmd, vaddr); - if (sev_active()) + if (cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)) prot = PAGE_KERNEL_EXEC; set_pte(pte, pfn_pte(paddr >> PAGE_SHIFT, prot)); @@ -206,7 +206,7 @@ static int init_pgtable(struct kimage *image, unsigned long start_pgtable) level4p = (pgd_t *)__va(start_pgtable); clear_page(level4p); - if (sev_active()) { + if (cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)) { info.page_flag |= _PAGE_ENC; info.kernpg_flag |= _PAGE_ENC; } @@ -575,7 +575,7 @@ void arch_kexec_unprotect_crashkres(void) */ int arch_kexec_post_alloc_pages(void *vaddr, unsigned int pages, gfp_t gfp) { - if (sev_active()) + if (cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)) return 0; /* @@ -588,7 +588,7 @@ int arch_kexec_post_alloc_pages(void *vaddr, unsigned int pages, gfp_t gfp) void arch_kexec_pre_free_pages(void *vaddr, unsigned int pages) { - if (sev_active()) + if (cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)) return; /* diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c index efbbde65b162e..5078c7477bc6a 100644 --- a/arch/x86/kernel/setup.c +++ b/arch/x86/kernel/setup.c @@ -67,11 +67,6 @@ RESERVE_BRK(dmi_alloc, 65536); #endif -/* - * Range of the BSS area. The size of the BSS area is determined - * at link time, with RESERVE_BRK() facility reserving additional - * chunks. - */ unsigned long _brk_start = (unsigned long)__brk_base; unsigned long _brk_end = (unsigned long)__brk_base; diff --git a/arch/x86/kernel/sev-shared.c b/arch/x86/kernel/sev-shared.c index bf1033a62e480..91f1ad3606e8c 100644 --- a/arch/x86/kernel/sev-shared.c +++ b/arch/x86/kernel/sev-shared.c @@ -94,10 +94,9 @@ static void vc_finish_insn(struct es_em_ctxt *ctxt) ctxt->regs->ip += ctxt->insn.length; } -static enum es_result sev_es_ghcb_hv_call(struct ghcb *ghcb, - struct es_em_ctxt *ctxt, - u64 exit_code, u64 exit_info_1, - u64 exit_info_2) +enum es_result sev_es_ghcb_hv_call(struct ghcb *ghcb, bool set_ghcb_msr, + struct es_em_ctxt *ctxt, u64 exit_code, + u64 exit_info_1, u64 exit_info_2) { enum es_result ret; @@ -109,7 +108,14 @@ static enum es_result sev_es_ghcb_hv_call(struct ghcb *ghcb, ghcb_set_sw_exit_info_1(ghcb, exit_info_1); ghcb_set_sw_exit_info_2(ghcb, exit_info_2); - sev_es_wr_ghcb_msr(__pa(ghcb)); + /* + * Hyper-V unenlightened guests use a paravisor for communicating and + * GHCB pages are being allocated and set up by that paravisor. Linux + * should not change the GHCB page's physical address. + */ + if (set_ghcb_msr) + sev_es_wr_ghcb_msr(__pa(ghcb)); + VMGEXIT(); if ((ghcb->save.sw_exit_info_1 & 0xffffffff) == 1) { @@ -213,6 +219,23 @@ void __init do_vc_no_ghcb(struct pt_regs *regs, unsigned long exit_code) sev_es_terminate(GHCB_SEV_ES_REASON_GENERAL_REQUEST); } +static enum es_result vc_insn_string_check(struct es_em_ctxt *ctxt, + unsigned long address, + bool write) +{ + if (user_mode(ctxt->regs) && fault_in_kernel_space(address)) { + ctxt->fi.vector = X86_TRAP_PF; + ctxt->fi.error_code = X86_PF_USER; + ctxt->fi.cr2 = address; + if (write) + ctxt->fi.error_code |= X86_PF_WRITE; + + return ES_EXCEPTION; + } + + return ES_OK; +} + static enum es_result vc_insn_string_read(struct es_em_ctxt *ctxt, void *src, char *buf, unsigned int data_size, @@ -220,7 +243,12 @@ static enum es_result vc_insn_string_read(struct es_em_ctxt *ctxt, bool backwards) { int i, b = backwards ? -1 : 1; - enum es_result ret = ES_OK; + unsigned long address = (unsigned long)src; + enum es_result ret; + + ret = vc_insn_string_check(ctxt, address, false); + if (ret != ES_OK) + return ret; for (i = 0; i < count; i++) { void *s = src + (i * data_size * b); @@ -241,7 +269,12 @@ static enum es_result vc_insn_string_write(struct es_em_ctxt *ctxt, bool backwards) { int i, s = backwards ? -1 : 1; - enum es_result ret = ES_OK; + unsigned long address = (unsigned long)dst; + enum es_result ret; + + ret = vc_insn_string_check(ctxt, address, true); + if (ret != ES_OK) + return ret; for (i = 0; i < count; i++) { void *d = dst + (i * data_size * s); @@ -277,6 +310,9 @@ static enum es_result vc_insn_string_write(struct es_em_ctxt *ctxt, static enum es_result vc_ioio_exitinfo(struct es_em_ctxt *ctxt, u64 *exitinfo) { struct insn *insn = &ctxt->insn; + size_t size; + u64 port; + *exitinfo = 0; switch (insn->opcode.bytes[0]) { @@ -285,7 +321,7 @@ static enum es_result vc_ioio_exitinfo(struct es_em_ctxt *ctxt, u64 *exitinfo) case 0x6d: *exitinfo |= IOIO_TYPE_INS; *exitinfo |= IOIO_SEG_ES; - *exitinfo |= (ctxt->regs->dx & 0xffff) << 16; + port = ctxt->regs->dx & 0xffff; break; /* OUTS opcodes */ @@ -293,41 +329,43 @@ static enum es_result vc_ioio_exitinfo(struct es_em_ctxt *ctxt, u64 *exitinfo) case 0x6f: *exitinfo |= IOIO_TYPE_OUTS; *exitinfo |= IOIO_SEG_DS; - *exitinfo |= (ctxt->regs->dx & 0xffff) << 16; + port = ctxt->regs->dx & 0xffff; break; /* IN immediate opcodes */ case 0xe4: case 0xe5: *exitinfo |= IOIO_TYPE_IN; - *exitinfo |= (u8)insn->immediate.value << 16; + port = (u8)insn->immediate.value & 0xffff; break; /* OUT immediate opcodes */ case 0xe6: case 0xe7: *exitinfo |= IOIO_TYPE_OUT; - *exitinfo |= (u8)insn->immediate.value << 16; + port = (u8)insn->immediate.value & 0xffff; break; /* IN register opcodes */ case 0xec: case 0xed: *exitinfo |= IOIO_TYPE_IN; - *exitinfo |= (ctxt->regs->dx & 0xffff) << 16; + port = ctxt->regs->dx & 0xffff; break; /* OUT register opcodes */ case 0xee: case 0xef: *exitinfo |= IOIO_TYPE_OUT; - *exitinfo |= (ctxt->regs->dx & 0xffff) << 16; + port = ctxt->regs->dx & 0xffff; break; default: return ES_DECODE_FAILED; } + *exitinfo |= port << 16; + switch (insn->opcode.bytes[0]) { case 0x6c: case 0x6e: @@ -337,12 +375,15 @@ static enum es_result vc_ioio_exitinfo(struct es_em_ctxt *ctxt, u64 *exitinfo) case 0xee: /* Single byte opcodes */ *exitinfo |= IOIO_DATA_8; + size = 1; break; default: /* Length determined by instruction parsing */ *exitinfo |= (insn->opnd_bytes == 2) ? IOIO_DATA_16 : IOIO_DATA_32; + size = (insn->opnd_bytes == 2) ? 2 : 4; } + switch (insn->addr_bytes) { case 2: *exitinfo |= IOIO_ADDR_16; @@ -358,7 +399,7 @@ static enum es_result vc_ioio_exitinfo(struct es_em_ctxt *ctxt, u64 *exitinfo) if (insn_has_rep_prefix(insn)) *exitinfo |= IOIO_REP; - return ES_OK; + return vc_ioio_check(ctxt, (u16)port, size); } static enum es_result vc_handle_ioio(struct ghcb *ghcb, struct es_em_ctxt *ctxt) @@ -413,7 +454,7 @@ static enum es_result vc_handle_ioio(struct ghcb *ghcb, struct es_em_ctxt *ctxt) */ sw_scratch = __pa(ghcb) + offsetof(struct ghcb, shared_buffer); ghcb_set_sw_scratch(ghcb, sw_scratch); - ret = sev_es_ghcb_hv_call(ghcb, ctxt, SVM_EXIT_IOIO, + ret = sev_es_ghcb_hv_call(ghcb, true, ctxt, SVM_EXIT_IOIO, exit_info_1, exit_info_2); if (ret != ES_OK) return ret; @@ -455,7 +496,8 @@ static enum es_result vc_handle_ioio(struct ghcb *ghcb, struct es_em_ctxt *ctxt) ghcb_set_rax(ghcb, rax); - ret = sev_es_ghcb_hv_call(ghcb, ctxt, SVM_EXIT_IOIO, exit_info_1, 0); + ret = sev_es_ghcb_hv_call(ghcb, true, ctxt, + SVM_EXIT_IOIO, exit_info_1, 0); if (ret != ES_OK) return ret; @@ -486,7 +528,7 @@ static enum es_result vc_handle_cpuid(struct ghcb *ghcb, /* xgetbv will cause #GP - use reset value for xcr0 */ ghcb_set_xcr0(ghcb, 1); - ret = sev_es_ghcb_hv_call(ghcb, ctxt, SVM_EXIT_CPUID, 0, 0); + ret = sev_es_ghcb_hv_call(ghcb, true, ctxt, SVM_EXIT_CPUID, 0, 0); if (ret != ES_OK) return ret; @@ -511,7 +553,7 @@ static enum es_result vc_handle_rdtsc(struct ghcb *ghcb, bool rdtscp = (exit_code == SVM_EXIT_RDTSCP); enum es_result ret; - ret = sev_es_ghcb_hv_call(ghcb, ctxt, exit_code, 0, 0); + ret = sev_es_ghcb_hv_call(ghcb, true, ctxt, exit_code, 0, 0); if (ret != ES_OK) return ret; diff --git a/arch/x86/kernel/sev.c b/arch/x86/kernel/sev.c index d19d3154a2905..92c6e1b99b9a2 100644 --- a/arch/x86/kernel/sev.c +++ b/arch/x86/kernel/sev.c @@ -482,6 +482,33 @@ static enum es_result vc_slow_virt_to_phys(struct ghcb *ghcb, struct es_em_ctxt return ES_OK; } +static enum es_result vc_ioio_check(struct es_em_ctxt *ctxt, u16 port, size_t size) +{ + BUG_ON(size > 4); + + if (user_mode(ctxt->regs)) { + struct thread_struct *t = ¤t->thread; + struct io_bitmap *iobm = t->io_bitmap; + size_t idx; + + if (!iobm) + goto fault; + + for (idx = port; idx < port + size; ++idx) { + if (test_bit(idx, iobm->bitmap)) + goto fault; + } + } + + return ES_OK; + +fault: + ctxt->fi.vector = X86_TRAP_GP; + ctxt->fi.error_code = 0; + + return ES_EXCEPTION; +} + /* Include code shared with pre-decompression boot stage */ #include "sev-shared.c" @@ -638,7 +665,8 @@ static enum es_result vc_handle_msr(struct ghcb *ghcb, struct es_em_ctxt *ctxt) ghcb_set_rdx(ghcb, regs->dx); } - ret = sev_es_ghcb_hv_call(ghcb, ctxt, SVM_EXIT_MSR, exit_info_1, 0); + ret = sev_es_ghcb_hv_call(ghcb, true, ctxt, SVM_EXIT_MSR, + exit_info_1, 0); if ((ret == ES_OK) && (!exit_info_1)) { regs->ax = ghcb->save.rax; @@ -856,7 +884,7 @@ static enum es_result vc_do_mmio(struct ghcb *ghcb, struct es_em_ctxt *ctxt, ghcb_set_sw_scratch(ghcb, ghcb_pa + offsetof(struct ghcb, shared_buffer)); - return sev_es_ghcb_hv_call(ghcb, ctxt, exit_code, exit_info_1, exit_info_2); + return sev_es_ghcb_hv_call(ghcb, true, ctxt, exit_code, exit_info_1, exit_info_2); } static enum es_result vc_handle_mmio_twobyte_ops(struct ghcb *ghcb, @@ -1004,6 +1032,9 @@ static enum es_result vc_handle_mmio(struct ghcb *ghcb, enum es_result ret; long *reg_data; + if (user_mode(ctxt->regs)) + return ES_UNSUPPORTED; + switch (insn->opcode.bytes[0]) { /* MMIO Write */ case 0x88: @@ -1106,7 +1137,7 @@ static enum es_result vc_handle_dr7_write(struct ghcb *ghcb, /* Using a value of 0 for ExitInfo1 means RAX holds the value */ ghcb_set_rax(ghcb, val); - ret = sev_es_ghcb_hv_call(ghcb, ctxt, SVM_EXIT_WRITE_DR7, 0, 0); + ret = sev_es_ghcb_hv_call(ghcb, true, ctxt, SVM_EXIT_WRITE_DR7, 0, 0); if (ret != ES_OK) return ret; @@ -1136,7 +1167,7 @@ static enum es_result vc_handle_dr7_read(struct ghcb *ghcb, static enum es_result vc_handle_wbinvd(struct ghcb *ghcb, struct es_em_ctxt *ctxt) { - return sev_es_ghcb_hv_call(ghcb, ctxt, SVM_EXIT_WBINVD, 0, 0); + return sev_es_ghcb_hv_call(ghcb, true, ctxt, SVM_EXIT_WBINVD, 0, 0); } static enum es_result vc_handle_rdpmc(struct ghcb *ghcb, struct es_em_ctxt *ctxt) @@ -1145,7 +1176,7 @@ static enum es_result vc_handle_rdpmc(struct ghcb *ghcb, struct es_em_ctxt *ctxt ghcb_set_rcx(ghcb, ctxt->regs->cx); - ret = sev_es_ghcb_hv_call(ghcb, ctxt, SVM_EXIT_RDPMC, 0, 0); + ret = sev_es_ghcb_hv_call(ghcb, true, ctxt, SVM_EXIT_RDPMC, 0, 0); if (ret != ES_OK) return ret; @@ -1186,7 +1217,7 @@ static enum es_result vc_handle_vmmcall(struct ghcb *ghcb, if (x86_platform.hyper.sev_es_hcall_prepare) x86_platform.hyper.sev_es_hcall_prepare(ghcb, ctxt->regs); - ret = sev_es_ghcb_hv_call(ghcb, ctxt, SVM_EXIT_VMMCALL, 0, 0); + ret = sev_es_ghcb_hv_call(ghcb, true, ctxt, SVM_EXIT_VMMCALL, 0, 0); if (ret != ES_OK) return ret; diff --git a/arch/x86/kernel/vmlinux.lds.S b/arch/x86/kernel/vmlinux.lds.S index ca1a7595edac8..351c604de263a 100644 --- a/arch/x86/kernel/vmlinux.lds.S +++ b/arch/x86/kernel/vmlinux.lds.S @@ -414,7 +414,7 @@ SECTIONS .brk : AT(ADDR(.brk) - LOAD_OFFSET) { __brk_base = .; . += 64 * 1024; /* 64k alignment slop space */ - *(.brk_reservation) /* areas brk users have reserved */ + *(.bss..brk) /* areas brk users have reserved */ __brk_limit = .; } diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c index cb96e4354f317..98b25a7af8ce8 100644 --- a/arch/x86/kvm/emulate.c +++ b/arch/x86/kvm/emulate.c @@ -687,7 +687,7 @@ static inline u8 ctxt_virt_addr_bits(struct x86_emulate_ctxt *ctxt) static inline bool emul_is_noncanonical_address(u64 la, struct x86_emulate_ctxt *ctxt) { - return get_canonical(la, ctxt_virt_addr_bits(ctxt)) != la; + return !__is_canonical_address(la, ctxt_virt_addr_bits(ctxt)); } /* @@ -737,7 +737,7 @@ static __always_inline int __linearize(struct x86_emulate_ctxt *ctxt, case X86EMUL_MODE_PROT64: *linear = la; va_bits = ctxt_virt_addr_bits(ctxt); - if (get_canonical(la, va_bits) != la) + if (!__is_canonical_address(la, va_bits)) goto bad; *max_size = min_t(u64, ~0u, (1ull << va_bits) - la); diff --git a/arch/x86/kvm/hyperv.c b/arch/x86/kvm/hyperv.c index a067c7ce8e19c..29a96d1c7e2b8 100644 --- a/arch/x86/kvm/hyperv.c +++ b/arch/x86/kvm/hyperv.c @@ -701,10 +701,12 @@ static int stimer_set_count(struct kvm_vcpu_hv_stimer *stimer, u64 count, stimer_cleanup(stimer); stimer->count = count; - if (stimer->count == 0) - stimer->config.enable = 0; - else if (stimer->config.auto_enable) - stimer->config.enable = 1; + if (!host) { + if (stimer->count == 0) + stimer->config.enable = 0; + else if (stimer->config.auto_enable) + stimer->config.enable = 1; + } if (stimer->config.enable) stimer_mark_pending(stimer, false); diff --git a/arch/x86/kvm/lapic.c b/arch/x86/kvm/lapic.c index 40fc1879a6970..b5b20078a413c 100644 --- a/arch/x86/kvm/lapic.c +++ b/arch/x86/kvm/lapic.c @@ -2411,13 +2411,17 @@ int kvm_apic_local_deliver(struct kvm_lapic *apic, int lvt_type) { u32 reg = kvm_lapic_get_reg(apic, lvt_type); int vector, mode, trig_mode; + int r; if (kvm_apic_hw_enabled(apic) && !(reg & APIC_LVT_MASKED)) { vector = reg & APIC_VECTOR_MASK; mode = reg & APIC_MODE_MASK; trig_mode = reg & APIC_LVT_LEVEL_TRIGGER; - return __apic_accept_irq(apic, mode, vector, 1, trig_mode, - NULL); + + r = __apic_accept_irq(apic, mode, vector, 1, trig_mode, NULL); + if (r && lvt_type == APIC_LVTPC) + kvm_lapic_set_reg(apic, APIC_LVTPC, reg | APIC_LVT_MASKED); + return r; } return 0; } diff --git a/arch/x86/kvm/svm/svm.c b/arch/x86/kvm/svm/svm.c index 7c7aef30db049..49e3360e6f6be 100644 --- a/arch/x86/kvm/svm/svm.c +++ b/arch/x86/kvm/svm/svm.c @@ -25,6 +25,7 @@ #include #include #include +#include #include #include @@ -458,7 +459,7 @@ static int has_svm(void) return 0; } - if (sev_active()) { + if (cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)) { pr_info("KVM is unsupported when running as an SEV guest\n"); return 0; } @@ -1749,15 +1750,17 @@ void svm_set_cr0(struct kvm_vcpu *vcpu, unsigned long cr0) bool old_paging = is_paging(vcpu); #ifdef CONFIG_X86_64 - if (vcpu->arch.efer & EFER_LME && !vcpu->arch.guest_state_protected) { + if (vcpu->arch.efer & EFER_LME) { if (!is_paging(vcpu) && (cr0 & X86_CR0_PG)) { vcpu->arch.efer |= EFER_LMA; - svm->vmcb->save.efer |= EFER_LMA | EFER_LME; + if (!vcpu->arch.guest_state_protected) + svm->vmcb->save.efer |= EFER_LMA | EFER_LME; } if (is_paging(vcpu) && !(cr0 & X86_CR0_PG)) { vcpu->arch.efer &= ~EFER_LMA; - svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME); + if (!vcpu->arch.guest_state_protected) + svm->vmcb->save.efer &= ~(EFER_LMA | EFER_LME); } } #endif diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 8ad44be86f9c5..8480300c6b0a5 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c @@ -1745,7 +1745,7 @@ static int __kvm_set_msr(struct kvm_vcpu *vcpu, u32 index, u64 data, * value, and that something deterministic happens if the guest * invokes 64-bit SYSENTER. */ - data = get_canonical(data, vcpu_virt_addr_bits(vcpu)); + data = __canonical_address(data, vcpu_virt_addr_bits(vcpu)); break; case MSR_TSC_AUX: if (!kvm_is_supported_user_return_msr(MSR_TSC_AUX)) @@ -3393,6 +3393,7 @@ int kvm_set_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info) case MSR_AMD64_PATCH_LOADER: case MSR_AMD64_BU_CFG2: case MSR_AMD64_DC_CFG: + case MSR_AMD64_TW_CFG: case MSR_F15H_EX_CFG: break; @@ -3733,6 +3734,7 @@ int kvm_get_msr_common(struct kvm_vcpu *vcpu, struct msr_data *msr_info) case MSR_AMD64_BU_CFG2: case MSR_IA32_PERF_CTL: case MSR_AMD64_DC_CFG: + case MSR_AMD64_TW_CFG: case MSR_F15H_EX_CFG: /* * Intel Sandy Bridge CPUs must support the RAPL (running average power diff --git a/arch/x86/kvm/x86.h b/arch/x86/kvm/x86.h index cd0c93ec72fad..f7854e742e8ce 100644 --- a/arch/x86/kvm/x86.h +++ b/arch/x86/kvm/x86.h @@ -211,14 +211,9 @@ static inline u8 vcpu_virt_addr_bits(struct kvm_vcpu *vcpu) return kvm_read_cr4_bits(vcpu, X86_CR4_LA57) ? 57 : 48; } -static inline u64 get_canonical(u64 la, u8 vaddr_bits) -{ - return ((int64_t)la << (64 - vaddr_bits)) >> (64 - vaddr_bits); -} - static inline bool is_noncanonical_address(u64 la, struct kvm_vcpu *vcpu) { - return get_canonical(la, vcpu_virt_addr_bits(vcpu)) != la; + return !__is_canonical_address(la, vcpu_virt_addr_bits(vcpu)); } static inline void vcpu_cache_mmio_info(struct kvm_vcpu *vcpu, diff --git a/arch/x86/lib/copy_mc.c b/arch/x86/lib/copy_mc.c index 80efd45a77617..6e8b7e600def5 100644 --- a/arch/x86/lib/copy_mc.c +++ b/arch/x86/lib/copy_mc.c @@ -70,23 +70,23 @@ unsigned long __must_check copy_mc_to_kernel(void *dst, const void *src, unsigne } EXPORT_SYMBOL_GPL(copy_mc_to_kernel); -unsigned long __must_check copy_mc_to_user(void *dst, const void *src, unsigned len) +unsigned long __must_check copy_mc_to_user(void __user *dst, const void *src, unsigned len) { unsigned long ret; if (copy_mc_fragile_enabled) { __uaccess_begin(); - ret = copy_mc_fragile(dst, src, len); + ret = copy_mc_fragile((__force void *)dst, src, len); __uaccess_end(); return ret; } if (static_cpu_has(X86_FEATURE_ERMS)) { __uaccess_begin(); - ret = copy_mc_enhanced_fast_string(dst, src, len); + ret = copy_mc_enhanced_fast_string((__force void *)dst, src, len); __uaccess_end(); return ret; } - return copy_user_generic(dst, src, len); + return copy_user_generic((__force void *)dst, src, len); } diff --git a/arch/x86/mm/ioremap.c b/arch/x86/mm/ioremap.c index 5dfa40279f0fd..58c2fcfa97740 100644 --- a/arch/x86/mm/ioremap.c +++ b/arch/x86/mm/ioremap.c @@ -92,7 +92,7 @@ static unsigned int __ioremap_check_ram(struct resource *res) */ static unsigned int __ioremap_check_encrypted(struct resource *res) { - if (!sev_active()) + if (!cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)) return 0; switch (res->desc) { @@ -112,7 +112,7 @@ static unsigned int __ioremap_check_encrypted(struct resource *res) */ static void __ioremap_check_other(resource_size_t addr, struct ioremap_desc *desc) { - if (!sev_active()) + if (!cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)) return; if (!IS_ENABLED(CONFIG_EFI)) @@ -561,7 +561,7 @@ static bool memremap_should_map_decrypted(resource_size_t phys_addr, case E820_TYPE_NVS: case E820_TYPE_UNUSABLE: /* For SEV, these areas are encrypted */ - if (sev_active()) + if (cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)) break; fallthrough; @@ -744,7 +744,7 @@ static bool __init early_memremap_is_setup_data(resource_size_t phys_addr, bool arch_memremap_can_ram_remap(resource_size_t phys_addr, unsigned long size, unsigned long flags) { - if (!mem_encrypt_active()) + if (!cc_platform_has(CC_ATTR_MEM_ENCRYPT)) return true; if (flags & MEMREMAP_ENC) @@ -774,7 +774,7 @@ pgprot_t __init early_memremap_pgprot_adjust(resource_size_t phys_addr, { bool encrypted_prot; - if (!mem_encrypt_active()) + if (!cc_platform_has(CC_ATTR_MEM_ENCRYPT)) return prot; encrypted_prot = true; diff --git a/arch/x86/mm/maccess.c b/arch/x86/mm/maccess.c index 92ec176a72937..6993f026adec9 100644 --- a/arch/x86/mm/maccess.c +++ b/arch/x86/mm/maccess.c @@ -4,22 +4,26 @@ #include #ifdef CONFIG_X86_64 -static __always_inline u64 canonical_address(u64 vaddr, u8 vaddr_bits) -{ - return ((s64)vaddr << (64 - vaddr_bits)) >> (64 - vaddr_bits); -} - bool copy_from_kernel_nofault_allowed(const void *unsafe_src, size_t size) { unsigned long vaddr = (unsigned long)unsafe_src; /* - * Range covering the highest possible canonical userspace address - * as well as non-canonical address range. For the canonical range - * we also need to include the userspace guard page. + * Do not allow userspace addresses. This disallows + * normal userspace and the userspace guard page: */ - return vaddr >= TASK_SIZE_MAX + PAGE_SIZE && - canonical_address(vaddr, boot_cpu_data.x86_virt_bits) == vaddr; + if (vaddr < TASK_SIZE_MAX + PAGE_SIZE) + return false; + + /* + * Allow everything during early boot before 'x86_virt_bits' + * is initialized. Needed for instruction decoding in early + * exception handlers. + */ + if (!boot_cpu_data.x86_virt_bits) + return true; + + return __is_canonical_address(vaddr, boot_cpu_data.x86_virt_bits); } #else bool copy_from_kernel_nofault_allowed(const void *unsafe_src, size_t size) diff --git a/arch/x86/mm/mem_encrypt.c b/arch/x86/mm/mem_encrypt.c index e29b1418d00c7..bd8a43c628584 100644 --- a/arch/x86/mm/mem_encrypt.c +++ b/arch/x86/mm/mem_encrypt.c @@ -194,7 +194,7 @@ void __init sme_early_init(void) for (i = 0; i < ARRAY_SIZE(protection_map); i++) protection_map[i] = pgprot_encrypted(protection_map[i]); - if (sev_active()) + if (cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)) swiotlb_force = SWIOTLB_FORCE; } @@ -203,7 +203,7 @@ void __init sev_setup_arch(void) phys_addr_t total_mem = memblock_phys_mem_size(); unsigned long size; - if (!sev_active()) + if (!cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)) return; /* @@ -364,8 +364,8 @@ int __init early_set_memory_encrypted(unsigned long vaddr, unsigned long size) /* * SME and SEV are very similar but they are not the same, so there are * times that the kernel will need to distinguish between SME and SEV. The - * sme_active() and sev_active() functions are used for this. When a - * distinction isn't needed, the mem_encrypt_active() function can be used. + * cc_platform_has() function is used for this. When a distinction isn't + * needed, the CC_ATTR_MEM_ENCRYPT attribute can be used. * * The trampoline code is a good example for this requirement. Before * paging is activated, SME will access all memory as decrypted, but SEV @@ -373,16 +373,10 @@ int __init early_set_memory_encrypted(unsigned long vaddr, unsigned long size) * up under SME the trampoline area cannot be encrypted, whereas under SEV * the trampoline area must be encrypted. */ -bool sev_active(void) -{ - return sev_status & MSR_AMD64_SEV_ENABLED; -} - bool sme_active(void) { - return sme_me_mask && !sev_active(); + return sme_me_mask && !cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT); } -EXPORT_SYMBOL_GPL(sev_active); /* Needs to be called from non-instrumentable code */ bool noinstr sev_es_active(void) @@ -396,7 +390,7 @@ bool force_dma_unencrypted(struct device *dev) /* * For SEV, all DMA must be to unencrypted addresses. */ - if (sev_active()) + if (cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)) return true; /* @@ -429,7 +423,7 @@ void __init mem_encrypt_free_decrypted_mem(void) * The unused memory range was mapped decrypted, change the encryption * attribute from decrypted to encrypted before freeing it. */ - if (mem_encrypt_active()) { + if (cc_platform_has(CC_ATTR_MEM_ENCRYPT)) { r = set_memory_encrypted(vaddr, npages); if (r) { pr_warn("failed to free unused decrypted pages\n"); @@ -455,7 +449,7 @@ static void print_mem_encrypt_feature_info(void) } /* Secure Encrypted Virtualization */ - if (sev_active()) + if (cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)) pr_cont(" SEV"); /* Encrypted Register State */ @@ -478,7 +472,7 @@ void __init mem_encrypt_init(void) * With SEV, we need to unroll the rep string I/O instructions, * but SEV-ES supports them through the #VC handler. */ - if (sev_active() && !sev_es_active()) + if (cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT) && !sev_es_active()) static_branch_enable(&sev_enable_key); print_mem_encrypt_feature_info(); @@ -486,6 +480,6 @@ void __init mem_encrypt_init(void) int arch_has_restricted_virtio_memory_access(void) { - return sev_active(); + return cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT); } EXPORT_SYMBOL_GPL(arch_has_restricted_virtio_memory_access); diff --git a/arch/x86/mm/numa.c b/arch/x86/mm/numa.c index e360c6892a584..1a1c0c242f272 100644 --- a/arch/x86/mm/numa.c +++ b/arch/x86/mm/numa.c @@ -601,13 +601,6 @@ static int __init numa_register_memblks(struct numa_meminfo *mi) if (start >= end) continue; - /* - * Don't confuse VM with a node that doesn't have the - * minimum amount of memory: - */ - if (end && (end - start) < NODE_MIN_SIZE) - continue; - alloc_node_data(nid); } diff --git a/arch/x86/mm/pat/set_memory.c b/arch/x86/mm/pat/set_memory.c index ad8a5c586a353..0ad166b7336c3 100644 --- a/arch/x86/mm/pat/set_memory.c +++ b/arch/x86/mm/pat/set_memory.c @@ -18,6 +18,7 @@ #include #include #include +#include #include #include @@ -29,6 +30,8 @@ #include #include #include +#include +#include #include "../mm_internal.h" @@ -1980,13 +1983,17 @@ int set_memory_global(unsigned long addr, int numpages) __pgprot(_PAGE_GLOBAL), 0); } -static int __set_memory_enc_dec(unsigned long addr, int numpages, bool enc) +/* + * __set_memory_enc_pgtable() is used for the hypervisors that get + * informed about "encryption" status via page tables. + */ +static int __set_memory_enc_pgtable(unsigned long addr, int numpages, bool enc) { struct cpa_data cpa; int ret; /* Nothing to do if memory encryption is not active */ - if (!mem_encrypt_active()) + if (!cc_platform_has(CC_ATTR_MEM_ENCRYPT)) return 0; /* Should not be working on unaligned addresses */ @@ -2023,6 +2030,17 @@ static int __set_memory_enc_dec(unsigned long addr, int numpages, bool enc) return ret; } +static int __set_memory_enc_dec(unsigned long addr, int numpages, bool enc) +{ + if (hv_is_isolation_supported()) + return hv_set_mem_host_visibility(addr, numpages, !enc); + + if (cc_platform_has(CC_ATTR_MEM_ENCRYPT)) + return __set_memory_enc_pgtable(addr, numpages, enc); + + return 0; +} + int set_memory_encrypted(unsigned long addr, int numpages) { return __set_memory_enc_dec(addr, numpages, true); diff --git a/arch/x86/pci/xen.c b/arch/x86/pci/xen.c index f153e9ab8c966..8e75babdc96f9 100644 --- a/arch/x86/pci/xen.c +++ b/arch/x86/pci/xen.c @@ -305,7 +305,7 @@ static int xen_initdom_setup_msi_irqs(struct pci_dev *dev, int nvec, int type) return -EINVAL; map_irq.table_base = pci_resource_start(dev, bir); - map_irq.entry_nr = msidesc->msi_attrib.entry_nr; + map_irq.entry_nr = msidesc->pci.msi_attrib.entry_nr; } ret = -EINVAL; @@ -397,7 +397,7 @@ static void xen_pv_teardown_msi_irqs(struct pci_dev *dev) { struct msi_desc *msidesc = first_pci_msi_entry(dev); - if (msidesc->msi_attrib.is_msix) + if (msidesc->pci.msi_attrib.is_msix) xen_pci_frontend_disable_msix(dev); else xen_pci_frontend_disable_msi(dev); @@ -413,7 +413,7 @@ static int xen_msi_domain_alloc_irqs(struct irq_domain *domain, if (WARN_ON_ONCE(!dev_is_pci(dev))) return -EINVAL; - if (first_msi_entry(dev)->msi_attrib.is_msix) + if (first_msi_entry(dev)->pci.msi_attrib.is_msix) type = PCI_CAP_ID_MSIX; else type = PCI_CAP_ID_MSI; diff --git a/arch/x86/platform/efi/efi_64.c b/arch/x86/platform/efi/efi_64.c index 7515e78ef8983..1f3675453a57a 100644 --- a/arch/x86/platform/efi/efi_64.c +++ b/arch/x86/platform/efi/efi_64.c @@ -33,7 +33,7 @@ #include #include #include -#include +#include #include #include @@ -284,7 +284,8 @@ static void __init __map_region(efi_memory_desc_t *md, u64 va) if (!(md->attribute & EFI_MEMORY_WB)) flags |= _PAGE_PCD; - if (sev_active() && md->type != EFI_MEMORY_MAPPED_IO) + if (cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT) && + md->type != EFI_MEMORY_MAPPED_IO) flags |= _PAGE_ENC; pfn = md->phys_addr >> PAGE_SHIFT; @@ -390,7 +391,7 @@ static int __init efi_update_mem_attr(struct mm_struct *mm, efi_memory_desc_t *m if (!(md->attribute & EFI_MEMORY_RO)) pf |= _PAGE_RW; - if (sev_active()) + if (cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)) pf |= _PAGE_ENC; return efi_update_mappings(md, pf); @@ -438,7 +439,7 @@ void __init efi_runtime_update_mappings(void) (md->type != EFI_RUNTIME_SERVICES_CODE)) pf |= _PAGE_RW; - if (sev_active()) + if (cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)) pf |= _PAGE_ENC; efi_update_mappings(md, pf); diff --git a/arch/x86/purgatory/Makefile b/arch/x86/purgatory/Makefile index dc0b91c1db04b..7a7701d1e18d0 100644 --- a/arch/x86/purgatory/Makefile +++ b/arch/x86/purgatory/Makefile @@ -19,6 +19,10 @@ CFLAGS_sha256.o := -D__DISABLE_EXPORTS # optimization flags. KBUILD_CFLAGS := $(filter-out -fprofile-sample-use=% -fprofile-use=%,$(KBUILD_CFLAGS)) +# When LTO is enabled, llvm emits many text sections, which is not supported +# by kexec. Remove -flto=* flags. +KBUILD_CFLAGS := $(filter-out $(CC_FLAGS_LTO),$(KBUILD_CFLAGS)) + # When linking purgatory.ro with -r unresolved symbols are not checked, # also link a purgatory.chk binary without -r to check for unresolved symbols. PURGATORY_LDFLAGS := -e purgatory_start -nostdlib -z nodefaultlib diff --git a/arch/xtensa/boot/Makefile b/arch/xtensa/boot/Makefile index a65b7a9ebff28..d8b0fadf429a9 100644 --- a/arch/xtensa/boot/Makefile +++ b/arch/xtensa/boot/Makefile @@ -9,8 +9,7 @@ # KBUILD_CFLAGS used when building rest of boot (takes effect recursively) -KBUILD_CFLAGS += -fno-builtin -Iarch/$(ARCH)/boot/include -HOSTFLAGS += -Iarch/$(ARCH)/boot/include +KBUILD_CFLAGS += -fno-builtin subdir-y := lib targets += vmlinux.bin vmlinux.bin.gz diff --git a/arch/xtensa/boot/lib/zmem.c b/arch/xtensa/boot/lib/zmem.c index e3ecd743c5153..b89189355122a 100644 --- a/arch/xtensa/boot/lib/zmem.c +++ b/arch/xtensa/boot/lib/zmem.c @@ -4,13 +4,14 @@ /* bits taken from ppc */ extern void *avail_ram, *end_avail; +void gunzip(void *dst, int dstlen, unsigned char *src, int *lenp); -void exit (void) +static void exit(void) { for (;;); } -void *zalloc(unsigned size) +static void *zalloc(unsigned int size) { void *p = avail_ram; diff --git a/arch/xtensa/include/asm/core.h b/arch/xtensa/include/asm/core.h index 5590b0f688376..0fa3649649e98 100644 --- a/arch/xtensa/include/asm/core.h +++ b/arch/xtensa/include/asm/core.h @@ -6,6 +6,10 @@ #include +#ifndef XCHAL_HAVE_DIV32 +#define XCHAL_HAVE_DIV32 0 +#endif + #ifndef XCHAL_HAVE_EXCLUSIVE #define XCHAL_HAVE_EXCLUSIVE 0 #endif @@ -26,4 +30,13 @@ #define XCHAL_SPANNING_WAY 0 #endif +#ifndef XCHAL_HW_MIN_VERSION +#if defined(XCHAL_HW_MIN_VERSION_MAJOR) && defined(XCHAL_HW_MIN_VERSION_MINOR) +#define XCHAL_HW_MIN_VERSION (XCHAL_HW_MIN_VERSION_MAJOR * 100 + \ + XCHAL_HW_MIN_VERSION_MINOR) +#else +#define XCHAL_HW_MIN_VERSION 0 +#endif +#endif + #endif diff --git a/arch/xtensa/kernel/perf_event.c b/arch/xtensa/kernel/perf_event.c index a0d05c8598d0f..183618090d05b 100644 --- a/arch/xtensa/kernel/perf_event.c +++ b/arch/xtensa/kernel/perf_event.c @@ -13,17 +13,26 @@ #include #include +#include #include #include +#define XTENSA_HWVERSION_RG_2015_0 260000 + +#if XCHAL_HW_MIN_VERSION >= XTENSA_HWVERSION_RG_2015_0 +#define XTENSA_PMU_ERI_BASE 0x00101000 +#else +#define XTENSA_PMU_ERI_BASE 0x00001000 +#endif + /* Global control/status for all perf counters */ -#define XTENSA_PMU_PMG 0x1000 +#define XTENSA_PMU_PMG XTENSA_PMU_ERI_BASE /* Perf counter values */ -#define XTENSA_PMU_PM(i) (0x1080 + (i) * 4) +#define XTENSA_PMU_PM(i) (XTENSA_PMU_ERI_BASE + 0x80 + (i) * 4) /* Perf counter control registers */ -#define XTENSA_PMU_PMCTRL(i) (0x1100 + (i) * 4) +#define XTENSA_PMU_PMCTRL(i) (XTENSA_PMU_ERI_BASE + 0x100 + (i) * 4) /* Perf counter status registers */ -#define XTENSA_PMU_PMSTAT(i) (0x1180 + (i) * 4) +#define XTENSA_PMU_PMSTAT(i) (XTENSA_PMU_ERI_BASE + 0x180 + (i) * 4) #define XTENSA_PMU_PMG_PMEN 0x1 diff --git a/arch/xtensa/platforms/iss/network.c b/arch/xtensa/platforms/iss/network.c index 1270de83435eb..e8491ac0d5b93 100644 --- a/arch/xtensa/platforms/iss/network.c +++ b/arch/xtensa/platforms/iss/network.c @@ -204,7 +204,7 @@ static int tuntap_write(struct iss_net_private *lp, struct sk_buff **skb) return simc_write(lp->tp.info.tuntap.fd, (*skb)->data, (*skb)->len); } -unsigned short tuntap_protocol(struct sk_buff *skb) +static unsigned short tuntap_protocol(struct sk_buff *skb) { return eth_type_trans(skb, skb->dev); } @@ -477,7 +477,7 @@ static int iss_net_change_mtu(struct net_device *dev, int new_mtu) return -EINVAL; } -void iss_net_user_timer_expire(struct timer_list *unused) +static void iss_net_user_timer_expire(struct timer_list *unused) { } diff --git a/block/bdev.c b/block/bdev.c index a364f8166f021..f578105a2abb8 100644 --- a/block/bdev.c +++ b/block/bdev.c @@ -834,7 +834,7 @@ struct block_device *blkdev_get_by_dev(dev_t dev, fmode_t mode, void *holder) * used in blkdev_get/put(). */ if ((mode & FMODE_WRITE) && !bdev->bd_write_holder && - (disk->flags & GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE)) { + (disk->event_flags & DISK_EVENT_FLAG_BLOCK_ON_EXCL_WRITE)) { bdev->bd_write_holder = true; unblock_events = false; } diff --git a/block/blk-core.c b/block/blk-core.c index 0c4a4e42ad870..3c7d57afa5a3f 100644 --- a/block/blk-core.c +++ b/block/blk-core.c @@ -405,8 +405,6 @@ void blk_cleanup_queue(struct request_queue *q) blk_mq_sched_free_requests(q); mutex_unlock(&q->sysfs_lock); - percpu_ref_exit(&q->q_usage_counter); - /* @q is and will stay empty, shutdown and put */ blk_put_queue(q); } @@ -695,18 +693,15 @@ static inline bool should_fail_request(struct block_device *part, #endif /* CONFIG_FAIL_MAKE_REQUEST */ -static inline bool bio_check_ro(struct bio *bio) +static inline void bio_check_ro(struct bio *bio) { if (op_is_write(bio_op(bio)) && bdev_read_only(bio->bi_bdev)) { if (op_is_flush(bio->bi_opf) && !bio_sectors(bio)) - return false; - pr_warn("Trying to write to read-only block-device %pg\n", - bio->bi_bdev); + return; + pr_warn_ratelimited("Trying to write to read-only block-device %pg\n", + bio->bi_bdev); /* Older lvm-tools actually trigger this */ - return false; } - - return false; } static noinline int should_fail_bio(struct bio *bio) @@ -812,8 +807,7 @@ static noinline_for_stack bool submit_bio_checks(struct bio *bio) if (should_fail_bio(bio)) goto end_io; - if (unlikely(bio_check_ro(bio))) - goto end_io; + bio_check_ro(bio); if (!bio_flagged(bio, BIO_REMAPPED)) { if (unlikely(bio_check_eod(bio))) goto end_io; diff --git a/block/blk-sysfs.c b/block/blk-sysfs.c index 00021f0123701..4ea84e46a665d 100644 --- a/block/blk-sysfs.c +++ b/block/blk-sysfs.c @@ -748,6 +748,8 @@ static void blk_free_queue_rcu(struct rcu_head *rcu_head) { struct request_queue *q = container_of(rcu_head, struct request_queue, rcu_head); + + percpu_ref_exit(&q->q_usage_counter); kmem_cache_free(blk_requestq_cachep, q); } diff --git a/block/genhd.c b/block/genhd.c index a1d9e785dcf70..6123f13e148e0 100644 --- a/block/genhd.c +++ b/block/genhd.c @@ -495,7 +495,7 @@ int device_add_disk(struct device *parent, struct gendisk *disk, * and don't bother scanning for partitions either. */ disk->flags |= GENHD_FL_SUPPRESS_PARTITION_INFO; - disk->flags |= GENHD_FL_NO_PART_SCAN; + disk->flags |= GENHD_FL_NO_PART; } else { ret = bdi_register(disk->bdi, "%u:%u", disk->major, disk->first_minor); diff --git a/block/partitions/core.c b/block/partitions/core.c index b9e9af84f5188..b6a941889bb48 100644 --- a/block/partitions/core.c +++ b/block/partitions/core.c @@ -463,6 +463,11 @@ int bdev_add_partition(struct gendisk *disk, int partno, sector_t start, goto out; } + if (disk->flags & GENHD_FL_NO_PART) { + ret = -EINVAL; + goto out; + } + if (partition_overlaps(disk, start, length, -1)) { ret = -EBUSY; goto out; @@ -526,18 +531,15 @@ int bdev_resize_partition(struct gendisk *disk, int partno, sector_t start, static bool disk_unlock_native_capacity(struct gendisk *disk) { - const struct block_device_operations *bdops = disk->fops; - - if (bdops->unlock_native_capacity && - !(disk->flags & GENHD_FL_NATIVE_CAPACITY)) { - printk(KERN_CONT "enabling native capacity\n"); - bdops->unlock_native_capacity(disk); - disk->flags |= GENHD_FL_NATIVE_CAPACITY; - return true; - } else { + if (!disk->fops->unlock_native_capacity || + test_and_set_bit(GD_NATIVE_CAPACITY, &disk->state)) { printk(KERN_CONT "truncated\n"); return false; } + + printk(KERN_CONT "enabling native capacity\n"); + disk->fops->unlock_native_capacity(disk); + return true; } void blk_drop_partitions(struct gendisk *disk) diff --git a/crypto/algapi.c b/crypto/algapi.c index 3920c4b1e9c13..c390a79c5a669 100644 --- a/crypto/algapi.c +++ b/crypto/algapi.c @@ -16,6 +16,7 @@ #include #include #include +#include #include "internal.h" @@ -68,15 +69,26 @@ static void crypto_free_instance(struct crypto_instance *inst) inst->alg.cra_type->free(inst); } -static void crypto_destroy_instance(struct crypto_alg *alg) +static void crypto_destroy_instance_workfn(struct work_struct *w) { - struct crypto_instance *inst = (void *)alg; + struct crypto_instance *inst = container_of(w, struct crypto_instance, + free_work); struct crypto_template *tmpl = inst->tmpl; crypto_free_instance(inst); crypto_tmpl_put(tmpl); } +static void crypto_destroy_instance(struct crypto_alg *alg) +{ + struct crypto_instance *inst = container_of(alg, + struct crypto_instance, + alg); + + INIT_WORK(&inst->free_work, crypto_destroy_instance_workfn); + schedule_work(&inst->free_work); +} + /* * This function adds a spawn to the list secondary_spawns which * will be used at the end of crypto_remove_spawns to unregister diff --git a/crypto/asymmetric_keys/x509_public_key.c b/crypto/asymmetric_keys/x509_public_key.c index 7fd56df8b9194..99fe28663f948 100644 --- a/crypto/asymmetric_keys/x509_public_key.c +++ b/crypto/asymmetric_keys/x509_public_key.c @@ -128,6 +128,11 @@ int x509_check_for_self_signed(struct x509_certificate *cert) goto out; } + if (cert->unsupported_sig) { + ret = 0; + goto out; + } + ret = public_key_verify_signature(cert->pub, cert->sig); if (ret < 0) { if (ret == -ENOPKG) { diff --git a/crypto/lrw.c b/crypto/lrw.c index bcf09fbc750af..80d9076e42e0b 100644 --- a/crypto/lrw.c +++ b/crypto/lrw.c @@ -357,10 +357,10 @@ static int lrw_create(struct crypto_template *tmpl, struct rtattr **tb) * cipher name. */ if (!strncmp(cipher_name, "ecb(", 4)) { - unsigned len; + int len; - len = strlcpy(ecb_name, cipher_name + 4, sizeof(ecb_name)); - if (len < 2 || len >= sizeof(ecb_name)) + len = strscpy(ecb_name, cipher_name + 4, sizeof(ecb_name)); + if (len < 2) goto err_free_inst; if (ecb_name[len - 1] != ')') diff --git a/crypto/pcrypt.c b/crypto/pcrypt.c index 9d10b846ccf73..005a36cb21bc4 100644 --- a/crypto/pcrypt.c +++ b/crypto/pcrypt.c @@ -117,6 +117,8 @@ static int pcrypt_aead_encrypt(struct aead_request *req) err = padata_do_parallel(ictx->psenc, padata, &ctx->cb_cpu); if (!err) return -EINPROGRESS; + if (err == -EBUSY) + return -EAGAIN; return err; } @@ -164,6 +166,8 @@ static int pcrypt_aead_decrypt(struct aead_request *req) err = padata_do_parallel(ictx->psdec, padata, &ctx->cb_cpu); if (!err) return -EINPROGRESS; + if (err == -EBUSY) + return -EAGAIN; return err; } diff --git a/crypto/xts.c b/crypto/xts.c index de6cbcf69bbd6..b05020657cdc8 100644 --- a/crypto/xts.c +++ b/crypto/xts.c @@ -396,10 +396,10 @@ static int xts_create(struct crypto_template *tmpl, struct rtattr **tb) * cipher name. */ if (!strncmp(cipher_name, "ecb(", 4)) { - unsigned len; + int len; - len = strlcpy(ctx->name, cipher_name + 4, sizeof(ctx->name)); - if (len < 2 || len >= sizeof(ctx->name)) + len = strscpy(ctx->name, cipher_name + 4, sizeof(ctx->name)); + if (len < 2) goto err_free_inst; if (ctx->name[len - 1] != ')') diff --git a/debian.azure-5.15/abi/abiname b/debian.azure-5.15/abi/abiname new file mode 100644 index 0000000000000..9a9755e49a163 --- /dev/null +++ b/debian.azure-5.15/abi/abiname @@ -0,0 +1 @@ +1058 diff --git a/debian.azure-5.15/abi/amd64/azure b/debian.azure-5.15/abi/amd64/azure new file mode 100644 index 0000000000000..623d586be14ce --- /dev/null +++ b/debian.azure-5.15/abi/amd64/azure @@ -0,0 +1,19931 @@ +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x92cd0f33 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xad08a905 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xf40686fe crypto_cipher_encrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x1729a921 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x23ce8f08 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2654bded cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x48e4e307 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x57312dd0 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x58f0a8fe cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x64f34cd8 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6e898762 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x73b01942 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7c09141c devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9952565b devm_cxl_add_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9ae362ff __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa259443b to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb87b6523 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdb66affc cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe31b8bc7 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe90e74df cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf8493c74 devm_cxl_add_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 +EXPORT_SYMBOL arch/x86/crypto/curve25519-x86_64 0x3c74a43e curve25519_base_arch +EXPORT_SYMBOL arch/x86/crypto/curve25519-x86_64 0xc832c670 curve25519_arch +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 0xb39769c6 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 +EXPORT_SYMBOL crypto/ecc 0x1a5faa3a vli_mod_inv +EXPORT_SYMBOL crypto/ecc 0x4c281912 vli_is_zero +EXPORT_SYMBOL crypto/ecc 0x671f7aa5 ecc_is_key_valid +EXPORT_SYMBOL crypto/ecc 0x7c0fbb00 vli_mod_mult_slow +EXPORT_SYMBOL crypto/ecc 0x8261eccb ecc_get_curve25519 +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xb10fc19e ecc_get_curve +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +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 0x112ec938 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x38fdad72 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x87d11928 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xcc4e4e0f crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xf6ac150b crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0xfaf8ae3e crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/sha3_generic 0x8fa0012f crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xb60546a9 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0xd400e091 crypto_sha3_init +EXPORT_SYMBOL crypto/sm2_generic 0x835c4bef sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x2c2a640e crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0x4e1737fb crypto_sm3_final +EXPORT_SYMBOL crypto/sm3_generic 0x92370b4f crypto_sm3_update +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/acpi/video 0x702d37f4 acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xd2bc624c acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0x6ea3a65f suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0xd87a9260 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0xd8ee3fd3 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xe93fab63 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 0x018e28f9 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x170b90b6 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x172454f3 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x6f5cf56d pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x8fc1cdb3 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xa30f9d32 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xc3776f9f pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xd2e23029 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xde321927 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xea42a70a pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xeb0b0f1e pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xee1a083c pi_read_regr +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x4842f9a7 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 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5c4bbfff ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7f7cc2e6 ipmi_get_smi_info +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 0x93b0d2df ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb272e6a6 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 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/xillybus/xillybus_class 0x3a71b9c9 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x40f18991 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xd7af3205 xillybus_init_chrdev +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc52ebaeb atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xe5bda8a0 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/crypto/atmel-i2c 0xff8e09fc atmel_i2c_enqueue +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/gpu/drm/drm 0x00738a74 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x007d147b drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0106202c drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03a25134 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x041c639b drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04d494f2 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ef5a67 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x058072dc drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05a1ec42 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08659d05 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bbdb612 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0da2fb76 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eee526a drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ef57d99 drm_gem_prime_mmap +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 0x1080b7e9 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1282908e drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12f6355d drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13a6224c drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x148e74a1 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c3a31d drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17fc0a4d drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1878a824 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18a3b46d drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x191010bb drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19bc7a03 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b550029 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d44daee drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d6fb5f5 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d81ce32 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1db509a4 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e24b952 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e7772ff drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fb2eb17 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fdcd431 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2065c3bb drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x208f7c9e drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2172c64e drm_gem_handle_delete +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 0x21e9393f drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x226161c8 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22b0576f drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f654d8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x249628bb drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cf437a drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x254a372f drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27506e3a drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27922ade drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2794fb9c drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a60500 drm_object_attach_property +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 0x2baa047c drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c4ed753 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c9dd873 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d970436 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dd85d4a drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e6339ad drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eb6ae17 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eceada7 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fd87925 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x301b4f16 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3096e20c drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31033424 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3141be9a drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x324518c4 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x327b9807 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33033f10 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33aab9ae drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34566b92 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34d6d5a5 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34eda9f6 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38fc6231 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a07e2b7 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a654827 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a704f6d drm_noop +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 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d755449 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dadec2b drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e720ed3 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f0ce76d drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4003cf21 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x402106f2 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41e7d4df drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43d31d1e drm_object_property_set_value +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 0x44f452d0 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45a1468f drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c0b0ac drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4663d4e7 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46be2727 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46d44b8e drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47307e3c drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x487ec667 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48dba9bc drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x491c964d drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a33b5c5 drm_crtc_vblank_on +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 0x4aba938c drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4afe026a drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b74d929 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bce626a drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce04341 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d998f66 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dcf5519 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e1d3e02 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e42b451 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4efbf013 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x500bb90f drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x506757a1 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x511535d8 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51368bc2 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x517123d2 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521497ed drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52c62613 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52d2033f drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x533b9388 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x544be430 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54e02866 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x562ce44a drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x571be953 drm_modeset_acquire_init +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 0x58141346 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x587ea024 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59b518e4 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a64331e drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a6fffc0 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ae91fae drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5af1d8ed drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bf00e9e drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c125a38 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c7e5caf drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ccac9b8 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd8b3cb drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d731985 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dcb1608 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5de7ca76 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e8dff54 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f72a239 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f926fb7 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6089d887 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60a0074b drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60d6d589 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x622d59a2 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6258abe7 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x633b430f drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6344825e drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6368c2d1 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63d545fd drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63d8748a drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6770ff80 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x680ac94a drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68f26830 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900416d drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6921ba2f drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6951f08d drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69eb0e67 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a180475 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a204ec3 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a2b15ee drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a8f96b2 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ba1bded drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6be795b4 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6beae5f1 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6beb8a14 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c0d43df drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c3dee8b drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ca00de7 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ce1671d drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6de0b752 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e3f5b72 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e69b6ee drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x709dfc66 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x719d4c87 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71d7b11a drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73042020 drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x731bbfb0 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x732d2f56 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x735e5142 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7371a504 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74303f45 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x744b9f10 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x745ea3c4 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75458d65 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7735bc29 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78a9b675 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78e57534 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78ea3708 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78f33a03 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78f4b6fa drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7af16003 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7af61d12 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c2ae507 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c7f64da drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d0bc634 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d443330 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d583d37 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d7f1924 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ded8f3b drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e6351c5 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f9f3ea6 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81472748 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8160f97e drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81a63c67 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8289f271 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84b091f0 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85d4c991 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x860420fd drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x862a03f2 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87200a40 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x875beaae drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87e54140 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88ece72d drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8abfca5f drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ada542a drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cbc4a6c drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cdce729 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d3222d7 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d5f40f8 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ee94c6a drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fbf4e8d drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ff15035 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90732bcb drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9110d5e1 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91c4d5c6 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ee8a9d drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x931cbc0d drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x935ec48e drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93669390 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x943ffdf3 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94e94936 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x955c1dc8 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95855db7 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a645f1 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x966b038a drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9816f58e drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x988f231b drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98b04f3a drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x995b9463 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9967b2b3 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a086315 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b57dee6 drm_modeset_lock_init +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 0x9c99f6f0 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce958b2 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0d8d8a drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d5f598e drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dbad39d drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dbc12ee drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ebba417 drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f2e48e6 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f469147 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa09b76aa drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa17be69f drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1b7861c drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa26d7ba2 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa286bc76 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3f5c2b7 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5280b93 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa57d6e3c drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5e3cac2 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa67f6e73 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6ddd301 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8709ca6 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa45d165 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa88fb08 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaad887c6 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaccc0fcc drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad08a66d drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf739f0c drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb010dbb0 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb02340bf drm_mode_config_cleanup +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 0xb0b216da drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb165d189 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb34498de drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4050594 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4e4b14b __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4f13ad6 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb55b6874 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb63ca812 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6b6de01 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6da5d50 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb97a50d0 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9adc1c7 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbab9862d drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb82c494 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc3e9273 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf023bda drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2c3b1b3 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc354fa69 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4db9315 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4df2203 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5c85a76 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc60cfc3a drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6250a8d drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6f353d5 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc75b615d drm_atomic_add_encoder_bridges +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 0xc8c40861 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc95175cb drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc96ab9b2 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca300ecf drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca42976d drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcafbcd7b drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc8b19bd drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccfdf691 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccffc90e devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce1d082a drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce2628f2 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce5c5981 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xceb3664a drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcefe3489 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfc6610e drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfdb65c7 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0dfd9d2 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1523e2b drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2fd0837 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd359a771 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3621f0b drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3f9b6ec drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4b7181d drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4ea5398 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6374bcd drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd766a87d drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7fccdb0 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd82d79fd drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8c13d92 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8e1a943 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8e8c125 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd98ea5ce __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad55310 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc602650 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc812041 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd671fc8 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddfdb44c drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdeb60bd6 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf01fbe0 drm_gem_vunmap +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 0xe02347a7 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe02ded03 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe06a07b0 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe281b2a6 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2aa8e7c drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe343d455 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe552d3ad drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe59782de drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5c00f4d drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe68be931 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7bf6af2 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7e3e22d drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7e5a1ed drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe839b854 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8595f4d drm_atomic_get_old_private_obj_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 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea200541 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea94cdcc drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaccadc4 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb3ee96b drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec85ffc2 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecd96496 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed02759d drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed4e67f2 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeda2b989 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedd081fa drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee8b5d00 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef71b811 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0bbbaae drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0c5a462 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0d09330 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0e9525b drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0f65aba drm_i2c_encoder_commit +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 0xf234fa54 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf24d6162 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf25bfc83 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2bfdcbe drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3b47bda __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf44b774f drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf44df013 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf48ece8d drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf62b3c83 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7bf015d drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8438fa5 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf86fbf16 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf91811db drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9825941 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa5dbc91 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb6b5fbb drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc486afc drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc702dbe drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd2aa8f4 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd363e9f drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd6bf987 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffcb9cf8 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x016b8a9e drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05bf0fa2 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06af5d8d drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0759a1fb drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x078a9c17 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07b1632d drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07b2c37d drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0824ee62 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0856565d drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a13deab drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dd310e0 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e255771 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fd10740 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ff41999 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1166c6bf drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11ae0e2c drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11c8bc41 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11fca973 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x136aa1be drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14da2cd7 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x154054af drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16c7e18a drm_atomic_get_mst_topology_state +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 0x17b9a7af drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x190ac868 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a966014 drm_dp_set_phy_test_pattern +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 0x1bca52ad drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e4fc591 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ff9cbdf drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20ce6ce0 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x213b540f drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21b516f3 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22cac77a drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22da3a58 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23bf477f drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25274c15 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2532e3cd drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26ee6218 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26f3e35d __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x278fd0d7 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x299538e8 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29eda697 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ad2852b drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c7fbd3e __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cd2b0d8 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cee4536 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cf8ecc6 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e24b605 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ed7d65a drm_edp_backlight_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 0x312b2c00 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3162b5ec drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31a32857 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32afb158 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33176b35 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36deda77 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36fbcd84 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x375e6d17 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37c77a3c devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38d46947 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x398bc3d8 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fa27507 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ffc960f drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40f748c5 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x410ec578 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41265da9 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4148fe62 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x419e3798 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x428a5af5 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43021c3e drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44477320 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x445913ca drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47cbaf43 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x491e2fce drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4999d9ec drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b14e991 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b1a6c4a drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b4d25f2 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c0f0def drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4caef909 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e670125 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4eaface4 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4eb84321 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f34a24c drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x502574f2 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x507b5d3d drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50e6d0c9 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50f173e0 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52a68948 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52d836b2 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53a0aaaa drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53a23284 __drm_gem_destroy_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 0x565d5f2b drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56fa3202 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x571ae1ff drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5823d0d9 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58c1513c drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x593b5f87 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59d0b2a5 drm_atomic_helper_connector_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 0x5a1d04fd drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a2d921a drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ad6f64e drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b17a952 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5be3ac5f drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cea1cf6 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d5613b3 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5df949d5 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e712922 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e78efd3 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x611f59d3 drm_dp_pcon_hdmi_link_mode +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 0x64d9cf80 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65ecd348 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x668dd619 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66b68026 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66e496aa drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x670cf335 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6742549d drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x698a6787 drm_edp_backlight_set_level +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 0x6df7c24a drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ecffcba drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f2b94ee drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f581d43 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fc7f37a drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fdf63d7 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ff48db1 drm_dp_read_lttpr_phy_caps +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 0x74ca3e31 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74df429a drm_lspcon_get_mode +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 0x7ae669d0 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c3e1b79 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c6e8b4d drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d4aac85 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d74aaaa drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f39ac31 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f722f4a drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fd0e5b6 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80db7bb4 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8124961f drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81ba832b drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x835c4484 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83995b04 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87331791 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87dc8e0b drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87e1101e drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x882fd7cd drm_atomic_helper_wait_for_fences +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 0x8a3c84dc drm_dp_mst_topology_state_funcs +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 0x8e0e8226 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ec40025 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8eff08f2 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x904f943c drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90dd5d39 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90ff588e drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x919585cb drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9257d99a drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93b251ee __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93e10b43 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x943b945b drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94dc2e96 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x957db68c __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96385fb6 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97cf1788 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97e7ca7d __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98142a99 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x981d03c3 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98488217 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x986744e1 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98f28d51 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99faca1a drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c502623 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c8f9f15 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d41c573 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d7a4391 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dde9ad6 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9eb76a67 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1afc160 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1d43b2d drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1dba647 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1e000f1 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa553e344 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa66f31a6 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa71dc1f9 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7362fa2 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa0c9741 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa961a00 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacdcd3ce drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadc2cb1f drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb18a93db drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb27eb995 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3a15e8e drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5d46d5c drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9ce729b drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb756ebe drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbcc4b3c drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbf7aa81 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdf6cebf drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe58b20e drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe66be34 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbec4265f drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbed0eed8 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf5d7a5a drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfc15ef4 __drm_atomic_helper_connector_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 0xc11c5fd5 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1f05ce8 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2455748 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc397165a drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc54c26b7 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc60eee97 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc823afd7 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc827b5d5 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc91d8214 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc925602b drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc977e7c5 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca9e120f drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb41b5c6 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb53407f drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb5f4feb drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc556cd4 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfe468af drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0b9367a drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd21f419b drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3d38f74 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd440a788 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4be3a11 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4ef6afe drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd51510fb drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd95250c0 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdce936b1 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd38b8db drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde7911f2 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf81e555 drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe000bbe0 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe28132f5 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5a676ff drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7197aaa drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe98406fe drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe98e16d0 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea1ee5dc drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeca3cebc drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed2d4ba9 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee9a8a1b drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef3bab8d drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1e84de9 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2803043 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2c66e9c drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf401e5cd drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4291df9 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4b6ba45 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf577d416 drm_helper_connector_dpms +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 0xf7d195e7 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf837009d drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8e6ef8c drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf94d4a37 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf96a2a0c drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa2c273d drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfad9bc55 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb83506e drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcdb138e drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdae7d97 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdd5adbb __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfed197c4 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x04314dc2 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0c856e3f mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1a8ad976 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1cff87ac mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2bc10d8d mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2ec9959b mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3edf9a68 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x562cf1ab mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8b558ad3 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8bc1ec26 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x937cca91 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa1ed5e15 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xaf351a3d mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc0d2402b mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcca250b2 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xddcc3f4a mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe4f288c7 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x1d6d9ca6 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x856a0469 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x96703fea drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc1ae6d81 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xce70983d drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0d270a96 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x138bad82 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x28c88a7c drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2da01a01 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x33cf3449 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3559f26f drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x35853cfe drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x550aff37 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5d73bc4d drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6ff0d56a drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa0f1f604 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa73311fe drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xca26cded drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xccef983b drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdd9bfe4a drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf27edf9d drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x005ae40d drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x02002736 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x04f7a672 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1b44d04c drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1b7e4322 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2e59fa27 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2e69fe10 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x36b59e74 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x512a5a19 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5576a9fc drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x610d5063 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x721ee1a9 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x72cf264f drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x79ec47f4 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8816b150 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9129f0dd drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x99c11c6f drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9f9d4e39 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa4722a2e to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcc6effe4 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcf57bd57 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe0d22692 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xeb591c0d drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xef36ac58 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0caa6440 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e7a110f ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x124e31e7 ttm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1449558c ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x186979cb ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x19b0e694 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c19fa1e ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x257a7970 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25aa4bf6 ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2602a4c5 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28b3f582 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2bdf02cf ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x330d346c ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x335c755c ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3369194d ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33b6c643 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37356e3c ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e7ee61b ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4666818b ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4717cbc8 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a3d0021 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c26a3dd ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e7051e6 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4fc3deca ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59a53ae9 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x608636dc ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6536031b ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68c841d4 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b9db288 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ea3f6cd ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x71bb050a ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73bd7312 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7de98a98 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e7b6a2b ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f8cb22e ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84692eca ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87b04609 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88398ad5 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9154a396 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x934cccfc ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9796b327 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2d0e45b ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa92b1687 ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac4fe0ca ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7d98963 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb908565b ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbaa1ad9d ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbbe66e42 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0b69bc4 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4f14fec ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd29d7f59 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb12164d ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde126684 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4b4e460 ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf59b9d3d ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf62dbc95 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf72a0b13 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbda50b5 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x5fc2e47d ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xb7854fd6 ttm_mem_glob +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xb9310fe1 ttm_mem_global_free +EXPORT_SYMBOL drivers/hid/hid 0x259276d4 hid_bus_type +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0768bc6e ishtp_get_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x089baf75 ishtp_cl_driver_unregister +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x08f72988 ishtp_get_pci_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0c2f98b2 ishtp_bus_remove_all_clients +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1054faa7 ishtp_reset_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x13141317 ishtp_cl_flush_queues +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x14447e26 ishtp_dev_to_cl_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x14eebb33 ishtp_cl_get_tx_free_buffer_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x15582ceb ishtp_recv +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1679efc8 ishtp_cl_send +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x25d73afe ishtp_cl_rx_get_rb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x290b2607 ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x445b586f ishtp_cl_link +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x49bc7728 ishtp_cl_io_rb_recycle +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4a6d1bcb ishtp_trace_callback +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x565ac47b ishtp_reset_compl_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x585686a8 ishtp_set_connection_state +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5a7bacb0 ishtp_set_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x64c5e1a9 ishtp_fw_cl_by_uuid +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x65fcea47 ishtp_cl_driver_register +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x74960035 ishtp_set_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x75e7f703 ish_hw_reset +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7fa0aa68 ishtp_get_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x801efa25 ishtp_cl_connect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x813461f4 ishtp_get_ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x858217be ishtp_cl_free +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x873c9f9d ishtp_send_resume +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9eb2ec63 ishtp_cl_allocate +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa04ff4f3 ishtp_cl_disconnect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa0c98057 ishtp_cl_tx_empty +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa4a231dc ishtp_send_suspend +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa5ba6b02 ishtp_fw_cl_get_client +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb0427b51 ishtp_register_event_cb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb9d7df43 ishtp_get_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc10e1adf ishtp_cl_unlink +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc600a13c ishtp_device_init +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd3002122 ishtp_cl_get_tx_free_rings +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd66c776d ishtp_cl_set_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdd1daea1 ishtp_set_rx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xddc7707b ishtp_put_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf2886a3f ishtp_set_tx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf5dc65a7 ishtp_start +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 0x71290f53 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 0x067b22e4 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb8c57f8b i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xed444247 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x66058fe3 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xfa82f7c6 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x2cb46b2e amd756_smbus +EXPORT_SYMBOL drivers/i2c/i2c-core 0x02d9e30f i2c_smbus_read_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x06a9bc2c i2c_clients_command +EXPORT_SYMBOL drivers/i2c/i2c-core 0x0a573a5d i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x0b37aa92 i2c_verify_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0x115e575a i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x1c09558f i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x1ede8854 i2c_del_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x215a225f __i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x2a2c8a75 i2c_smbus_write_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x4a071218 i2c_put_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x557ee117 i2c_del_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x5c32779c i2c_get_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x66639c44 i2c_smbus_read_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x66fcc155 i2c_smbus_write_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x70d3ac6a i2c_register_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x745a39a0 i2c_add_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x78a8d22a i2c_verify_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x950e094d i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa5bca0fc i2c_transfer_buffer_flags +EXPORT_SYMBOL drivers/i2c/i2c-core 0xbbcf42d5 i2c_smbus_write_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0xbe377302 i2c_smbus_read_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0xc825a22b i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL drivers/i2c/i2c-core 0xebd6b2ec __i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xed0a708e i2c_smbus_write_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL drivers/i2c/i2c-core 0xfc9561b5 i2c_smbus_read_block_data +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2b753201 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x30329eba ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x31378899 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x343200e2 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x447de002 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4a4bd5d5 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x59bd238a ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69212ff0 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8d7ff62f ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x90b5f800 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa6ba659a ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbbfadad6 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc131d834 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcafd905e ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeae13972 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x006c701a rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00d7f230 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00ec8d6c ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x012f144a ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01b637bc rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0709cc4f ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09fc842d rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a37b776 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bc9fe27 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d7313b2 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dc29b86 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e018524 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e71cb76 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ed9e35e ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13b621b9 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13dc3aaf ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a698fe6 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b682e2f rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e4ac5d9 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ff7bd44 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2002a25a ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x204474e8 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x210b719d ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22c23ab9 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2852b8ea rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bef1464 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ceb1910 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d700d76 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30c7af1a ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35113d1e ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36a6faee ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3baec9aa rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bd30366 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3deab12c ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e9f85a0 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f971cd9 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f9c1af6 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fa4682b ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x422c1356 ib_qp_usecnt_inc +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 0x441e1529 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45224a35 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46a18262 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4830ccb8 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b6aa09d ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bb421a1 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c40fe75 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e63e011 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f6c9bd6 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x510d2546 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52b5a5fa ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52ba2294 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5512ac31 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55218073 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56600f46 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56ed274d rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57411505 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58675f7f ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d7682d9 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e6b3c9c ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fdbe794 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x607f1275 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x610e4abf rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6174eba7 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6182ae7c ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67751d13 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67ef7936 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68df0b77 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b82c964 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e4b9dd4 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e7e6b79 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x707ef771 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x708cfa43 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71fd9382 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72dddcd7 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x743c1d89 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x769220c9 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x782fef15 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79602f9a rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ad04624 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x829cd071 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84bb6939 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87460202 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x881be52c rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88636f85 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8972f886 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89b7fdec ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89c7003a rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d44a31a rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e5fa233 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8eb2a3c4 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f5fd1f7 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90c7adbd ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90d79c04 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9106585e ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9161d764 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9333eb8b ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x942fc121 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x991e5e5b rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99a60e26 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ad59a4d rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b6fd628 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c4b7b33 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cfb2079 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d5c9588 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9df828ca rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e2f90a6 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa025ae34 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0be907a ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0cd193e roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0de60d7 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa25cb254 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3ef97b8 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5473a8e ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7428438 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7d9c76c ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8e282f8 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa986e9a3 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf937e1d rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafd08a7f ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb05a02cb rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0a88c89 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb10d6d15 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1139896 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1748eba rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1e913e5 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb381fc6e ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb457f118 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb488ad65 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb60093b9 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7ce4323 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb82c7bd6 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9fc4c8b rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdf5711a rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3095fde rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc37f82b8 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3d5cd36 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc66aaffb ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc902e1ec ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9a9ac91 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca577412 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb6d07b4 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbca9ea7 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbeb3841 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcccf5b1f rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf69f8d5 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd24a8e7e rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2ab1750 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd323c30d ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd555c7b6 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd569db48 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5cc777b ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5d760d6 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5e3ae68 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6964ce3 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7723237 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7f72e02 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8797f6b ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd89b016f ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8e9162f ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda191e43 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb4a2104 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbd7ca5d rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc145b08 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd8321d3 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde5e9069 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4e1dcfc rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe52e383a ibdev_notice +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 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe831d900 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9a9ebef rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9b291ea ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeaf0af90 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb1e40ae ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeef1c8ca ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef50fcea ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef8972ec ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2776e55 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4762d60 __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf499c610 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5970efd ib_qp_usecnt_dec +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 0xf81b00ef rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf84014c2 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8e1e32a ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfaf3509b ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc3d9256 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfca51c0f rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd888cda rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfde35510 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff34de52 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x00ae83b3 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x00c04e69 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0fcf0740 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x12888839 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1c51feef _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x326085a8 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4b4c9c56 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4c8c81ff ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4dfbe1d6 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53da9601 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6505ec4f ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x68b7670f ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x74466153 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7e2a6ab7 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7e3dbdb8 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x80ca87b0 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x80d16cf1 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x92600470 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x96c3ba80 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9947103e ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9d38e537 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9e6a294d ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xafa880d1 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc63c1ca0 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc99c3409 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcd57eea7 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcf3b1cc0 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd3034403 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd889df53 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xda4eb0a4 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe13d6748 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe36d9b26 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3a2ec4a ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3f16558 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf5ec9b32 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfe2b3a55 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2177d3f5 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4255326f iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8d16c911 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x920438df iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbd852577 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe368bcc8 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe71cc7d0 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfc2972d9 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x05b79df0 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1285995f rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x187d9788 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f0b5c98 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2653ea44 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2f0b0295 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a12a85d rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4026ba11 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x47e0364c rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4a108f93 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4c5e7a21 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x509cbe00 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x54540155 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5d242c44 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x66fdc952 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x870f5956 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x903996e7 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x929d3b5c rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x96d07d18 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9a290699 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9badafd8 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9ec0da55 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa397c5de __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf8392d5 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb412fc80 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc09e3ec8 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc54781c7 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc536c73 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xed402784 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf75b6bbe rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf97275cd rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfb3dec01 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfcc951a8 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfd016956 rdma_connect +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x038f8927 rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1fc93ed0 rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x27cfef67 rvt_add_rnr_timer +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x28313683 rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2f7e9814 rvt_compute_aeth +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x31ed7ea7 rvt_rc_error +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x49e2cdaa rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x58f89927 rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5bbe217e rvt_copy_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5cbcf30a rvt_qp_iter_next +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6e387483 rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6f4b14c7 rvt_get_rwqe +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7ea936c1 rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x81f12719 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8476b099 rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x84cea52f rvt_ruc_loopback +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x85fa36ab rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8d3166bb rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8ff1946d rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xaf6fb319 rvt_del_timers_sync +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb7ee98b2 rvt_rc_rnr_retry +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb80ed6d5 rvt_restart_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xbeff5c0f rvt_qp_iter_init +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc9e0bc00 rvt_send_complete +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd6525ea5 rvt_add_retry_timer_ext +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xda198433 rvt_get_credit +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe72054c6 rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe8395535 rvt_stop_rc_timers +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf5e46114 rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xfaa82d1c rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x06ab3834 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x07ea64e7 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4f7fbb06 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4ff6c447 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9881fd3f rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc3dfc756 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd263019b rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x44d2ce60 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 0x62242742 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x6dfc7f2f rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7c6b92cb 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-server 0x23a4b14b rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x412884f2 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x6b7b6726 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa0d1eab8 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc9d54cb1 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xff29486a rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/input/matrix-keymap 0xd176dbec matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/sparse-keymap 0x00123ee1 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x37f7e5f8 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7d09f729 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xd4411baf sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfbc40f82 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x097b21a9 amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x15622751 amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x4f194004 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x708a77d4 amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x88102be4 amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x964df8ad amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x1a93f545 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x26372910 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/md/dm-log 0x142e5b42 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x4f03c2c6 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xb15c3039 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xbf7c8e02 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x17c4ec2d dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x327fa8af dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x355020de dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3e74bfbb dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x78f9a757 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x81f0470b dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/raid456 0x134edd9e r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0x23efe617 raid5_set_cache_size +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 0x30500e8b vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x4b8b3fb1 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-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 0xfbd237f4 vb2_querybuf +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 0x8f0b22a0 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 0xf446074f ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0xfe684ea0 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x03e19e03 v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x41bd37e8 v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x4ae23e7a v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb13e1273 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xbc7c47c9 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd1e9f788 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x1a07fc6c v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x1e287e9f v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x30203e74 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd94d13ad v4l2_m2m_get_vq +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 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11aa3270 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13166abb v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x17b3c0d2 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x181e0616 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20768e0c v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21d6d2f3 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2398c888 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25f46757 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28ca0f20 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2eb24cd8 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 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3fa69194 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43949d17 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4cf64b93 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5050dcf4 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x580c7b1a v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61a4d777 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6df2c4f1 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f2d3eb3 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f957dd6 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72f86475 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7384292a v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x758ba879 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75a200d5 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x76de48d4 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d34726b v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7dddef68 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8759037a v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x91c8f526 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x96dda952 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9c9470e6 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa665f2e8 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac26ffdd __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad36c489 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae6e543d __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb2d68df6 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3eae940 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb5f87dec v4l2_ctrl_notify +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 0xbec42bf3 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbed414d0 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbfac247a v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcbdde146 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce797b15 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3457252 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf82343a v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3492e6e video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb3de4ae __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xef53dbd9 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3892cc2 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf72269f9 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf8a3efc7 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xff0f7d60 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x087b8032 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0e74e807 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0f7d9d5e mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x173667cf mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x31d09d08 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3877f55d mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d9b68d6 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3dacbed3 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5c113c2c mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6461a8d1 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x72a8fc38 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x822b4a63 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8ae8d564 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x926b8236 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x92ba9f93 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9e87e3d1 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa012d23d mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa5d84236 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xac5f9413 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xae8d9964 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaea62639 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc306093 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc05cdf89 mpt_HardResetHandler +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 0xf1aecddf mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf46c0d56 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf554c20b mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf6576cc7 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf6d9c05e mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfd592018 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x00aff9bc mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x08e1dbe3 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0b697a1a mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1a5233fd mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x303050c7 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x309f4185 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x36ee9e41 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x46ba61ab mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4d3813e1 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4fa4b5bb mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x50525b30 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5feabeb7 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6092422f mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6d5c16bb mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7738bd5e mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x887b2e41 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x960a3a4f mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xae145966 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb815ab34 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb8e5fb74 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbf27cbf0 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc0a2a4b9 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc3618dc8 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdd348ce3 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe6b4eb96 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe78ffb08 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfd85c51f mptscsih_dev_reset +EXPORT_SYMBOL drivers/mfd/axp20x 0xac057797 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xced7dc33 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xf484c044 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xc1acdcc8 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe9df38e8 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x004a86f0 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x019bbfba mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1b600b47 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x29cc6b9f mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2aa470aa mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6e88c151 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6ebcfe82 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x85c2e9b8 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xae7b3ccb mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc0dd78b8 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe9ada70b mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994 0x0d7f16da wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x1e7e14f5 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x28b50895 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x2c44af6c wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x61b5792d wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x811c16d8 wm1811_regmap_config +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 0x26b66818 __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x3b0a488d __SCT__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x5fe2c8aa __traceiter_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x62435709 __traceiter_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x7f14389e __traceiter_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x9f447da9 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xb3ba6ae0 __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xc77d7c62 __SCK__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xe2f7b0dd __SCK__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xfd52a8a8 __SCK__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/tifm_core 0x09d7790e tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x302ab254 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x554f2650 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x6ab3cc3a tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x77f07f6d tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x7c1282a5 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x7f485233 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x880c40a2 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xaebebad5 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xb6424561 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xfe065043 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xfe45dd58 tifm_remove_adapter +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x019de6f1 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x09faf01c arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x10c92626 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2004bcaf arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x24fa7e2b arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x86c3da3b arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xab2f4175 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc1158fb0 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xced60d85 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe7c34b29 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfdf41b61 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x0f3e989c com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x66f454d1 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x74c160d5 com20020_check +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x016708be b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x06261cab b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x11dbcde0 b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x14c45eff b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x14fd9f71 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x176409b0 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1ac60a78 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1cdfc342 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1f7c9e34 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x23733de1 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x273c9f61 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x27df11e9 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2a90fdd6 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x315c39fb b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x39dfb3bd b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3d650352 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3f65ace3 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x484f0c52 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4bb17881 b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5ae19b43 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5afc0c70 b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x620051d7 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x728c7dce b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x85cc9bbb b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x990d8e8f b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa158fcc7 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb8c248ff b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb8cc25df b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbbfabe69 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbc01b046 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbc27c78c b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc1a90141 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc1de69c1 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc5901af0 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc83855eb b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc9f816fc b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd16fd01a b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdac7f0e7 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde2f783f b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf56a23e0 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf5c5fd76 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x03c49e1f b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x4b2ae95f b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9afd1d14 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xacdc2e46 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xe42483d6 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xf76787f2 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x18fb48e3 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x9894382f lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x9b749b46 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x75418c5f ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x4c76fd7c ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x78b5a7f1 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xb6f896ea ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xeeec12b2 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x57cd41d5 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x67ee2030 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x9b26d433 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x42ee86b4 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x4f8a0c83 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 0xad4a3570 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 0xea2d343d xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xd8a72dfa bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x1e440758 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x05e40152 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x259aff97 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x332bca2d dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x391fc3e4 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x40991f3a t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x51ce8f93 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6f7c41ba cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7709110c t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8880f380 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbc86d5f8 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbe4fd5f9 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd217d532 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdd25fec3 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe96d5bfb cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf5ca07b2 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfcf35e42 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x034a8b8c cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ac47a6a cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f78a84a cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x10a35b4f cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x14667cc1 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x165e9320 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2111a71c cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31ce5b8e cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b26528b cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c21e9c4 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x46684c2b cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4770e9c2 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47a05ecd cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x49f40dbf cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4dc94792 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x52902da3 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5621b51b cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x588f2706 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5b2bb51b cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5b4eeda7 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5f7ae5f2 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x64bef7ce cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78609852 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7896f9ca cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d53e0f2 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e2ffd20 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x906dce99 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x93e7d0c1 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x96172b73 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x98f76eb7 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99122be5 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f8165f7 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa5661b39 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa77737b3 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaff6ec4b cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb29a2631 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xba90bc26 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbba76e5f cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc079635d t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc3af599a cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xde15ed26 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe4f0f0cc cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe71083e2 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe790161f cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb25ffe6 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfef9d10e cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x311fe92a vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x55bf86e4 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x730f6868 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8f497ac3 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa2b6f495 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb83e4612 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x82fdd6e2 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xd86f6bdc be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xbbf4daea iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xe78f8fdf iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00e6fef1 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b46adb7 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b9acd5f set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x228ff284 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dbc0a96 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31bf7f85 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34a6b027 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x381348e0 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cf2efdf mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f525a3a mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45aabae2 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x529393fd mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53e54a94 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e8f31cf mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f69f5ea mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x602cdb7c mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e6de566 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fe4993c mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7376ae0e mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88d72ca0 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x925a4a22 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94838f21 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98ab913b mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x998ae590 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a4414bc mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa54d5886 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf62c0f5 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8d748e2 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd40c4b7 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1182bf5 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc25ca91d mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfe175f8 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd17f70f8 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xded738ed mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe11c02c2 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4548187 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe808a292 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed8e881c mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0531b35 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0535c51 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb29d8b2 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff140104 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff1ff3db get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff3e4d81 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00bf769d mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01d32194 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x039ad932 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0505c37e mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x067ce3e4 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0770bc9f __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ceb690c mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10013471 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x141f0573 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14a4431d __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16552cdf mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19346a5f mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a3c6fe5 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a724aff mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bb7f284 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c55aa9b mlx5_eswitch_reg_c1_loopback_enabled +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 0x1d6e4eb7 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f08d872 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21020026 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22a8dc8d mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2312b5f4 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26d8e7c4 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ad6ac11 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b7c9799 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c0376af mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ee544aa mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f9a6563 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fe7a9d3 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31200934 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x314d51cc mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33dae339 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38f7b514 __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3aaf6bc2 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d339c2b mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44408dcc mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4509707e mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x458d71a3 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45f3d59b mlx5_eswitch_get_encap_mode +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 0x49aabff9 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e1b77d4 __traceiter_mlx5_fw +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 0x51022cfb mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51549487 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52fc443a mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x534933e5 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x538526b5 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5449cef5 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54a8e0c9 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54bad430 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x557f0d76 mlx5_cmd_cleanup_async_ctx +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 0x56b063e8 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5918f486 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fcf74cb mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x607ecb25 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60880c24 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 0x60e04ae4 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6120f87a 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 0x62dc190a __SCT__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x631c4d4d __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c5d3240 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fc711e0 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7044a2ea mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7073a6cc mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72763938 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74e572f2 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x754b028f __SCK__tp_func_mlx5_fs_del_fg +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 0x7c9eb1fc __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88db5339 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e021048 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f7d6a09 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91206a4e mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x912e2eda mlx5_eswitch_vport_rep +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 0x91e302d7 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x929bbfb5 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x930aec72 __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95a8a4d2 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9604b836 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96f8249c mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98cf4c0d mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99d44434 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a6acbd4 mlx5_rsc_dump_next +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 0x9e8b045b __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ea5edee mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fb5f557 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa053bcc7 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0ce803e mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0e30b02 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa13a4d2f mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6c6c7c0 mlx5_fc_query +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 0xa7f5d2ce mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa940b824 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaad7b0f0 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaae62c47 mlx5_notifier_unregister +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 0xadd80c4d mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae0f081c mlx5_eq_notifier_unregister +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 0xb0938085 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb104edff mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1cc4ad9 mlx5_fpga_sbu_conn_sendmsg +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 0xb5338b3b mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb880035b mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba305a36 __SCK__tp_func_mlx5_fw +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 0xbbcdfc28 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc6c03c6 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdb0f4de __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc456bc39 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca86959e mlx5_add_flow_rules +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 0xd3beba7f mlx5_eq_destroy_generic +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 0xd926fa2a mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb6033f2 mlx5_core_modify_cq_moderation +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 0xdb702ab0 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc5fb54c __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc76ead1 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc772749 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdea3df21 mlx5_lag_get_slave_port +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 0xe168df86 __tracepoint_mlx5_fs_del_rule +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 0xe3b2b5ff mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe639b248 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe770a1b8 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9453bbd mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9755bd5 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe99a4c26 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9ad9046 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb2474c8 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf00c4345 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1f160c9 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1f4f027 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4476692 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf56ae41e mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf59af61a mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5b3a362 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf734dbe8 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8735d7f mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf91bf220 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa7495f9 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbe3d81c __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd3ba3c2 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe80dbdb mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff3d09fc mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfff9fd22 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x83715cc5 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 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 0x19833e0f mlxsw_core_trap_register +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 +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 0x271cff13 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2dc24996 mlxsw_env_get_module_eeprom +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 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 0x5299dfcd mlxsw_core_trap_unregister +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 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 0x6bd5cff8 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 0x7b0fa489 mlxsw_core_trap_state_set +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 0x81be32c6 mlxsw_core_ptp_transmitted +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 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 0x9148cd65 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 0x9b0f27fe 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 0x9e41f494 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa03c94cb mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa2798b84 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa36a2a82 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 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 0xbbb7a867 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc0a5f0a mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 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 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 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 0xdb2c664c mlxsw_core_port_devlink_port_get +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 0xe6efb415 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf1b449ee mlxsw_core_driver_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 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x747a8875 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xa1c86f3a mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x32ed54da mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x88ace36d mlxsw_pci_driver_register +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 +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +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 0x481cdce8 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x7670932b free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xf98d5c2a mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xfeba4589 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mii 0x273959e9 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x37185530 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x5c975d25 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x6c6a9a30 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x712ae1de mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x7e590b6e mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xaaaad25e mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xbc6ff7f2 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xe337c0d0 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xf6ae4aca mii_link_ok +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x5ef2638e bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x595c574f pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8be9bae5 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x9bc64e31 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xc0a4fd87 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/wan/hdlc 0x36ce72ec register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3dfc038c hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3e2a11c4 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4cec2d77 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x63012a59 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6db09240 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6fcd1093 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7c3da1ef alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x906a4e0f unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd26f7410 detach_hdlc_protocol +EXPORT_SYMBOL drivers/nfc/microread/microread 0x1df5ecaa microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xd6384e4c microread_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x3590100f pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xd826877a pn544_hci_probe +EXPORT_SYMBOL drivers/ntb/ntb 0x27e28861 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x2931dab9 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x2ddbb59c ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x33dc6d7f ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x3e78ffb7 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x41a0c628 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x47a73995 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x53978626 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x69bda6b2 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x727b111f ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x9009f67a ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x9ac2d34a ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x9e1b595f ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xc378fd98 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xc481a54c ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xd86b7164 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xdb93b2ae ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xe2c67fa2 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0xe343cdf2 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xeed48742 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/parport/parport 0x0172c43e parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x0bcc0958 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x0dbf1beb parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x15fa0044 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x20a97063 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x216617c9 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x222a957c parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x22d7b0f5 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x25ccacb2 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x28e69c23 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x2e6b8f3c parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x42a5b9ae parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x47a450b1 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x48c709f6 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4f8d32fc parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x5b75595e parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x662019f5 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x6def8fd3 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x71703b77 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x7171a4b4 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x7293c57a parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x83391b76 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x8db61741 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x9ff081d6 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xa993f873 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xab402102 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xc4e843c0 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xdb88c22d parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xe393187f parport_write +EXPORT_SYMBOL drivers/parport/parport 0xf3a81367 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xf3f9cb8f parport_release +EXPORT_SYMBOL drivers/parport/parport_pc 0x2c20d1d8 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xe67a6a65 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0a431c10 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0f7463db pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x37d6dfe4 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5ab95b33 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5d6842c3 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6055dbee pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x77df98bb pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8c6fde7a pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9b2be7f7 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf8a03656 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x2df75274 pccard_static_ops +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 0x374197b4 __wmi_driver_register +EXPORT_SYMBOL drivers/platform/x86/wmi 0x3c0b559d wmi_driver_unregister +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x01415882 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0405f190 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0f6009a4 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x36ca9db3 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x471581b8 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6b35ae9c rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x78ce695d rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7f45edf9 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x87c03901 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x96789986 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9fdcded1 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb35aa4f6 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb4944568 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc2105a61 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc4bba41c rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcec2892e rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfb3a2f40 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xb52f77cc rpmsg_ns_register_device +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0xb3fccde6 NCR_700_release +EXPORT_SYMBOL drivers/scsi/53c700 0xf2df0184 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x2c2c4214 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5801789f scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x69cdb16d scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xfef05353 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5661051d sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x9f63caa7 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd1739aaf sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa28acb3c mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x06c55605 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0a6d249b qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x24ec2a04 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3cb1412e qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5b87efe8 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x65f38bc0 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6e3abeb3 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8227d61b qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x936804dc qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x93eabe2b qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcb6affdd qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe7ac4c5c qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/raid_class 0x52ce59b1 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x6e41aa8e raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0e2cc08f sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1f44e2ae sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x21f6b88c scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x29a27c75 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2a5061f6 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2b95f02a sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x35148f67 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a3d9ee4 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a7d6248 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x40027e9d sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4261dc81 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x47d55a09 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6492087e sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69361e1f sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x776d9f39 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a39f88f sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7e54e495 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x82be6ea4 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c031712 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x96fa4422 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xab84219a sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xba612e27 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc21a3a2f sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc899a44d sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcb10df0b sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcf1a6be6 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdabb0677 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe6a19bc3 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf995a2ed sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x15a3f4f0 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4bf9d1d7 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa00e2ad8 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb5ed6a41 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xbd4512ce spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x00f31045 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x25bfac20 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x436c1d89 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x8fd9109c srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa9688888 srp_rport_put +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 0x1efcb0c6 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x22df299a sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x287e3038 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x38aee7ea sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5e6ac746 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5ebf28db sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6062e448 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60ad27c4 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x623f85e9 sdw_update +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 0x74ce7203 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7885f2f4 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x879aaca4 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x88e7f0d0 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8b63aaf0 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x98f9086c sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x994f7437 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9ff1b46d sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xab470470 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb125b77b sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb60e7065 sdw_stream_remove_master +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 0xbe20d9f4 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc21d8da7 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe1cc1dc1 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe678e597 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe8ec9cc7 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfd6327b8 sdw_nread +EXPORT_SYMBOL drivers/ssb/ssb 0x10948b5d ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x17c011d8 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x24cf6452 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x2b51cb0e ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x4991d2ed ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x5bdbcaeb ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x69f83481 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x6dc2cd9f ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x7bc28927 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x85a5e27e ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x8616ab81 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x8e6a3711 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x9bf946ec ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xb141a4ef ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd8093602 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xd978f115 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe558f219 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xed7f7356 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xffe0a63d ssb_dma_translation +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x00ece056 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x05235d99 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x13f79740 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1a25f901 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x24efbce5 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x34cbba37 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3f8b96d1 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4320fa4b fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4a277811 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4cb3998c fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4e58a272 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x533a2cc4 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6d525c8d fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7eaa0d5e fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x89f5f1e6 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9135dc39 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9259e784 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x96a2a3a3 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaca01595 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xafd3975f fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb02bcef8 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xce803952 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd1a3b586 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeb5ab7a5 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfcb33fff fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x00b8ef24 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0451635e iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09decc4f iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x12c30794 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x15a0f665 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x171835cd iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d479af9 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2937214e iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x31f2b392 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x344bec77 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42bacad3 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x457d0e1c iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4d2bf2f3 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4df5256c iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4ed0daf0 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x698a8354 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6cb21042 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x77118c97 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x780d13a2 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x802a2c2e iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x886e187e iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8af0a3de iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8d34465b iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e098b27 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x93bd2546 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9461dd41 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa71a89d2 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac1c5f98 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf76eab7 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb1a11013 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe41bbc9 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc04a3dff iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc9ea92d8 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcede4956 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf1deba1 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd0c028f0 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd65fe25e iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd7ef090b iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd8bd9dbf iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdc51cad5 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe00bc803 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe83c5c6a iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe9dd806e iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf2d0eb47 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/target_core_mod 0x009df420 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x00d0a9ea target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x00db5eb6 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x0663069a target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d2abd1c sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x15630cc2 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x16f18b1f transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x198800c8 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1dfc4604 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f1d6689 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x1fe08bcc spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x22faf4e4 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x27f1402d target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x28f18897 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x302635cc core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x3453721f core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x361b1762 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3cf0b560 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x3fbe0f52 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x41469c19 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x43a7db9e target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x49c6f8d1 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e5c9e3e target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x509f23ab transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x53ffb267 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x568ab7a7 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x57f7eb25 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x5981ed87 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x664e8497 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a10f133 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f41ec35 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x7273a77b transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x731c6332 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x78466916 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ac9f819 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x891bc921 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b4bd7a7 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x8dbd3c84 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f29ec50 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9286c9d5 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x949dd6e5 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x977d78da target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x991c4f3b transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x996fb48d target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x99b48947 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b9c57a4 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xa24e9fab target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3e0222e transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa606e1e5 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xa69d33f9 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xa8532bde core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xa93c4f06 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xae6e58de target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xae7c97da core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb013053e spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xb2101695 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xb598844c __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbbb914e3 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xc060950d transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4163614 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7443da6 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc92b17a4 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4f55d7b target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xda53c9cd transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xdcefa18b transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xddad29fe core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0247d79 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xe5237247 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe64cc6ca target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xea8828ae target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xecd9a245 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf8ad2089 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfda1f5e4 transport_lookup_tmr_lun +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/vfio/mdev/mdev 0x00476b82 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x2db8506f mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x55d4c76c mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x772581f1 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xbdefb0ad mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc17a814c mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xcd45cb5f mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf5e4b651 mtype_get_type_group_id +EXPORT_SYMBOL drivers/vhost/vhost 0x9a502f60 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xffcfd252 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vringh 0x0c46f5fb vringh_iov_pull_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x18f3ddc2 vringh_iov_push_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x19c24590 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x1fe50c1a vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2890c460 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2d2babc9 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x3684d8af vringh_complete_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3ee1955e vringh_init_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4504adc9 vringh_abandon_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x5bd469c0 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5f586ca2 vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x61e3831b vringh_getdesc_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x660779c8 vringh_kiov_advance +EXPORT_SYMBOL drivers/vhost/vringh 0x6a693a25 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x90e93e3c vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x9b30452e vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xa7ce8bd6 vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xa8efaeb9 vringh_set_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc0bb1581 vringh_need_notify_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc87491c8 vringh_notify_enable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xd465f463 vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xe4c21196 vringh_notify_disable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xeb2ec139 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xf1e32cc0 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0xf8605294 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xf9d0dd07 vringh_abandon_user +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x62d53d2d sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x7dc4d901 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x5ce82fa4 sys_imageblit +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x4e732e06 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xa49b34c8 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb5c34f19 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xdb6d9e03 virtio_dma_buf_attach +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 0x00fbd8e1 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x030d7c3e __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x0f59f418 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x1449c6ab __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x1753fa35 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x1d0e9e81 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x1f827366 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x2fe8e963 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x30dcc92d fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x32f71518 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x3e6c32d1 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x423a4e4d __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x437214c4 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x48bcb7c4 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x4978a71f fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x4b0ad8bd __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x583a4acd __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x5db76409 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x61ff72d4 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x678b23ca fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x6950ac81 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x6db43bcc fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7352168e __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7ade7d3c fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x8fad9289 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x976fa3f5 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x9c4d55ae fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xa43c4dfb __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xab7b75f6 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xb215a19a fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xd01ff839 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xd32857ef __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xd4cf53ff fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xdb5fafdc __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xde2b472b __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xe5bc433d __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xefd0c530 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xf05f79e9 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xf1afdd89 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xf55e65e8 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/netfs/netfs 0x3409ad56 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x44bfde73 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x4cdb6604 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0xb6de0cea netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xd1191917 netfs_readpage +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x1393453c qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x18680997 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x45ad6898 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x5599852b qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x92c8ee2b qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xcabb1ed0 qtree_read_dquot +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crc8 0x9c5d5b94 crc8 +EXPORT_SYMBOL lib/crc8 0xaa8106bc crc8_populate_msb +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/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x147c3f2e chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x37b34b92 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x5b19e187 chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xc20134e7 chacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xce15a526 xchacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point +EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks +EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0x9d82f009 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xd2f1b36e 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 +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams +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 0x25732c80 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x3e3d9fa9 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x4b012c45 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x86633d9b lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd783e3fd lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xfdbc5ebc lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x78529a27 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xd64e2fdb unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x40a2137d unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xf2911d26 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x02b39896 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x04c185d4 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x0607c460 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x10fb86bd p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x180c6b11 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x1c49467e p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x244b2742 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2a439620 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x31a86d82 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x36ef7ce0 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3d7b9d77 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x44a15ab8 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x451e2cbd p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x4913e4a5 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x4c674a08 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x50cd475e p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x5431d574 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x54d3ed1d p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x62846d4f p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x6d06e422 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x78fffda8 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x7ef79241 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x80c8e969 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x83819b65 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8651357e v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x8df03895 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x8eccf279 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x9a6484f1 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x9c7b420b p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xa29608c1 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb0089096 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xb59fe069 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xb70fad58 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xb8144ab3 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xbc7f81e5 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xbf2f8ff3 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xcf8a2358 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd4f5ab1c p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdbdcbf83 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xf01e9d20 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xf2fdee7a p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xfb83a24e p9_client_open +EXPORT_SYMBOL net/appletalk/appletalk 0x77cea118 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x85ae243b alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x8d83336f atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xc9aa5d4a atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x03fdc6b8 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x09522753 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x15441cb8 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x249f443d atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x3ceb8f50 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x3f765bc6 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x741e5824 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x83d8f5db vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb4c6a77f atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xbe30fea2 atm_charge +EXPORT_SYMBOL net/atm/atm 0xd284c7e1 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf8f078b3 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xfd504a3b atm_init_aal5 +EXPORT_SYMBOL net/ax25/ax25 0x02163d04 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x1de96bde ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x565ea0d2 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x589acb22 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x908e68aa ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc7293009 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xd08711ba ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xe54a4e84 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x18b66f54 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1a58c89f ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x717d1f5d ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x88b8f73d ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xaa5427b1 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe941da25 ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x1d0b0da8 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 0x38f31c2b caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x408f60cd 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 0x55c0203f cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x91996354 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 0x9ec8d439 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xad262d6d can_sock_destruct +EXPORT_SYMBOL net/can/can 0xd142aa42 can_send +EXPORT_SYMBOL net/can/can 0xdb11e8f0 can_rx_register +EXPORT_SYMBOL net/can/can 0xe07f5e9a can_proto_register +EXPORT_SYMBOL net/can/can 0xf21e58a3 can_rx_unregister +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x083db6c6 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x0981b64b ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x0b576701 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x0d091ebd ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x10bf4b56 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x1350048f ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x157b0c8c ceph_msg_new +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 0x1920c660 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x1bc54e3c ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x1de3f321 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x1e726398 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x1eb14ee8 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x1f80138e ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x257ec9fa ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x268682f8 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x278f42ab ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x297175a7 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2d34e57a osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x2e45f053 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x3143fd65 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x36c33911 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x370a9c82 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x38ca43ae ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x39568c71 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3d6bc028 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x3e77137c ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x40747ef8 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x451895f4 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x4614d0f7 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x480fc4f9 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x4b8b29d2 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x4ffb3570 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x511d2ea0 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x519765d6 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x52be1ab9 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x550ccca0 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x56f0d593 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x592bfd2f ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x59c5211d ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5be72c2b ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5f9da9ce ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x5feb4c6a osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x64eed932 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x66630aac ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x69ee6214 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6bb116ac ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x74fbf7b4 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x78aa4ad3 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x7ac7449f osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x7f19699d ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x7fb1bbd5 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7fdd2da5 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x80cdd8c0 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x830e0af2 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x85d546ad ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x89737bea ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x8b664b90 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x8d58bf2f ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x95087c34 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x98bbf931 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x994797c7 ceph_osdc_update_epoch_barrier +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 0x9cd97340 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x9fe2c300 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xabbbfd7d osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xad44737a ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xad6152d1 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xad834f97 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xae1c4cc3 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xaea07814 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb0977b1e ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xb1daf638 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xb41e55a4 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6744651 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xba82e161 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xbcbe97b9 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe379ef6 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbea15d3f __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xbf3cc0ee ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xc27786fd ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc515037e ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xc836f9ea ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xc8d42460 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xca906143 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xcdf4c8cf osd_req_op_extent_osd_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 0xd5bbc48f ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xd7dd422c ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe07824c5 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xe07b96f5 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xe1428365 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xe20ec69a ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xe2695c85 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe6f636c9 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xe8633808 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0xe8728135 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xeeb6ed64 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xeeb8a6ec ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xef688a99 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xefce3c3b ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xefce991c ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank +EXPORT_SYMBOL net/ceph/libceph 0xf5ed7e3f ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xf722c68d ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xfaf1d9a6 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3edef5f5 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x417c39ff dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x4bd22c61 is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0x7739117d hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x27295e05 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3e06ddb2 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x602fba05 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb67aee7a wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xbc82017c wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf8ce933b wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x398a4e09 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x46cb0508 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x1b98ff39 gre_parse_header +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x27555244 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x40b89716 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5f419071 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xede7ad54 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3d06f51e ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x404b75cc ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7df2dc92 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe3dd0594 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0xced6f122 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xff3ca687 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x108bbed8 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2287316a ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x29af8d40 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x59109b46 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x62494122 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x659cb537 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x845ef163 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb08dac15 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcaa2e4e4 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1dc7366d ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x38f5b316 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4d80aabf ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb97e9869 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x74a53cd5 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x77fec1b8 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x59b25f69 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x6da7f8a4 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x322bc2ab lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x343d2cf2 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x3f4980f9 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x80d2f3ab lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x8a847787 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x9e864fe0 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xba6b751f lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xed9f5daa lapb_disconnect_request +EXPORT_SYMBOL net/llc/llc 0x1ec021a1 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x4bafff6d llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x5ad46ac4 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x66cfdc24 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xc23ce059 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xd49c8163 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xf8cd103a llc_sap_close +EXPORT_SYMBOL net/mac80211/mac80211 0x04c85590 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x06851454 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x0ccd3822 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x0e8be3ec ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x10b9fbbc ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x14ec068f ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x17417314 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x181f7355 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x1916fd65 ieee80211_wake_queue +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 0x1b1caeda ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x1d6c2668 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1e3c8699 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x20e1b800 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x234e533c ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x23712e33 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x24f835f2 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x28686acb rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x2a47cc3b ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x2e6f6fd9 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x2f026a4c ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x2fb8d377 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x34266e3d ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x3990fdef ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x3d83cbae ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x422aa1a9 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x42a925d4 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x442b5f58 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x460b0917 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x46cfd651 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x49d4468f ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x5203fa6e ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x52044811 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x5229e4d5 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x5636f375 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x568119fc ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x568b6b12 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x5a7e9736 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x5d13ea25 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x64f269c1 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x675226fd ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x6758506c wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x67b39bf2 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x6be6d0bb ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6d2db455 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x750a83d6 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7c31bcc4 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x7c7fe6a2 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x80860708 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x811de31e ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x8cb75c8f ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x8e6c4ac5 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x9019b119 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x91870ccc ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x9192b820 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x9645c0b7 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x964d9350 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x96eaf20e ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x97a1a630 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9b6282d8 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x9b691b0b ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x9d0fe11d ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x9e15d147 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9e7258d4 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xa08032a5 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xa2e36f7f ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa47da86f __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xa57519e3 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xa875ad97 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xa9854efc ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xaab6bbb2 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xad3543cd ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xb91b5f82 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0xbbe5fcfa ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xbc23570f ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xbcf6afd1 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xc233b431 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xc25228e9 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xcd2e4960 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xd17e45a5 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd5d12fda ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xd5eb6f98 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xda050175 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xda40c0e6 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xdb9c4a0b ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xde336423 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0xdedcb36c ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xdf980e75 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xe387dada ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0xe9dbf4a6 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xea1f5ea9 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xeeb0adb3 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf3ed8230 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xf5c982c1 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xf65dd425 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xf9291c24 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xf9948c75 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0xf9d121b4 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xfbc80565 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xfd29edd5 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac802154/mac802154 0x23b09f65 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x31a1ba96 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x7fce12d8 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x94d9c512 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xc8ca9c78 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xd748b6fe ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe0368e52 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xeae32fa9 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x01c15323 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x12844613 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1f3973ff unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2c18676b register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x412b6485 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4fda8437 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x65c7d147 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7d1a7266 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8065688a unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa02a8e3f register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa2b6db87 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc2fc8235 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd77a9b84 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdb21c783 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfae63a2c ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x87b71412 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x1911aa6d __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x8083f5e6 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x9cd6a051 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xacc797c1 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0c72cc02 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x2da02216 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 0x4abdae6b xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x51774308 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x79fbe51d xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x99811349 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xc87f002e xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xcd28ce87 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xdb13cc70 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0xdd2e4687 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x03dad680 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x1002ee82 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x11659ab0 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x13b6c1ed nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x13c11562 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x27c28551 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x2bce7c67 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x3460a840 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x51a3c771 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x6199a2ae nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x7760f338 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x77b97812 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x8d0ac5f7 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x947a41bf nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xb639f897 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xbc08f057 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xc8960d8a nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xd37177c5 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdc2db26b nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe2c4b198 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xfb8d5182 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x0f32d1c1 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x1003f411 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x132c023c nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x13f62c6c nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x2251bcd0 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x237ebf2d nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x2774454e nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x2fa3e603 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x3b93b73f nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x42988f35 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x4d6fab15 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x5792baa6 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x6c07588e nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x75fbfda4 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x7adc6717 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x908a99f5 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x9764b5a7 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xa0d59da3 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xa8203c8a nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xae0f65af nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xb1ce7fd3 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xb5fd8865 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc0bbb1ca nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xc2337b9f nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xc28e7111 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe1ceb153 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xe7afba83 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xf7db6800 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xfa101bd6 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nfc 0x06896946 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x2c6532b9 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x42b6dfd8 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x49492ad3 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x4fc3ae28 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x510c7ea2 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x691fc78d nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x7521ad83 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x7cf3994c nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x876725af nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x88d13663 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xa74bc517 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xa96941d7 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xafb86139 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xb52c063d __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xc5ffce4b nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xc7b121ec nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xc9bed227 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xca936e71 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xcd1f810f nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xd8dd9280 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xdb4242dd nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xde2a2e68 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xe63c1909 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xfdd1b0cc nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc_digital 0x39d40676 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x8e3ba1c3 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xcf755f24 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe8ad3ab1 nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x00684315 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x0e1c597c phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x1c8187a1 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x580ddca8 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x88c961f3 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xb991efe6 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xd3ae3b08 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xed5d3c82 phonet_header_ops +EXPORT_SYMBOL net/rxrpc/rxrpc 0x03596782 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0f40bf3f rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1e5f1a95 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2d57153a rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x40a42f90 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5eee3ecb rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5fcce1b7 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x654816b7 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7bc7a74d rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9dd850bd rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa16a1f08 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa803641a rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb4b52af9 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbad176f3 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbfb5cb92 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe9b48949 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf5a06297 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf8431378 rxrpc_kernel_check_life +EXPORT_SYMBOL net/sctp/sctp 0xd3526833 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2411658c gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7c75b5ca gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf1e94d69 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x08ba56c8 get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0x8209ac54 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xae9ed1dd xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd2fa8d4c svc_pool_stats_open +EXPORT_SYMBOL net/tipc/tipc 0x1649823f tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x4f513237 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x8a64a481 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xd5332e54 tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0x7f4e7c37 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x037680aa cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x049eeccf wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x05f65e4b cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x060e2c96 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x0b335704 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x0bac5769 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x123e11eb cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1320e863 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1a409245 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x1abf9953 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1d5bccaa cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x1f0e4ee4 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x21f6d2ae cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x23c444e0 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x2402da7c ieee80211_get_num_supported_channels +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 0x2a5d816f cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x2e2fd7c2 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x2eba2608 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x31279327 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x35340a03 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x36935a4d cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x36dfe4c6 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x38601856 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x38fb3d6c cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x391d7cd7 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x393908ed cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x3d0979e6 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3ed0e5f4 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x40582603 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x45cdc8d0 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x473fdbbd wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x48568ecb cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x4d783c7f regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x4f49a1a0 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x57f61cb6 cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x58686dc6 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x5f3a45f8 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x6059f3bd freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x60a02b3d wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x60acd135 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x660dcb62 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x6988dba9 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6f1f0ed9 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x6f9625d2 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x6fb10edb cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7679fffd __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x780772c6 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7ac307ab 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 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x826368ae cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x829a015d cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x850eb53a cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x85873396 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x89fa94b7 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8a78fd0b wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x8b024024 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x8c2d95fe cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x8d7c745a cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x8e622ed6 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa35d87 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x93b2e2c4 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x956a3db3 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x96fb859c cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0xa0ab4bdf cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xa20703b9 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xa2856fc5 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xa6b7882d cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa7d854e2 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xa9a1dd4c cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xacab81de wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xad538d06 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb34c5cac cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xb3543166 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xb4f0bdd9 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb7371e78 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xbfb9fe41 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xc4d31112 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xc52be698 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xcb7eb762 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcee07900 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd10f7c73 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xd3fb65f0 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd7cd9db6 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdcd15261 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xdd71d345 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xdef521b6 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xe2a6fa74 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xe2fbf827 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0xe32dad10 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0xe3ec89f5 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xe48a35f3 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xe5b4c766 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf0441784 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xfad1a58e cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfaff079c __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xfb95e47e cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xfc3a5093 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xfcb6f17a wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xff2be4c5 cfg80211_cac_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1381bf7c 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 0x25f78dae snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x8e294c40 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 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0xec56f5de snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x734e4fba snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7a3e0db5 snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8150b379 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb8620ad8 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd70dbf6 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd935c83 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe9e6c50c snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x08542ac5 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0760aa70 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x0c109055 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x0f5d549c snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x12cdcf3e snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x154b6ac3 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x246daba4 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x33b2f83d snd_card_free +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x36953f4f snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x39c2bc72 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x3bb44e61 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x3bff2c6e snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x43cb130e snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x5dc453b5 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x69e0031f snd_register_device +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 0x756dd3f7 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x76a8632e snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x98383b82 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xa0dd60d0 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xa13558ba snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xa1adefc7 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0xa3521d26 snd_device_free +EXPORT_SYMBOL sound/core/snd 0xa9e5b9b5 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xad4887dc snd_device_new +EXPORT_SYMBOL sound/core/snd 0xaffa440a snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xb143d5b4 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xb1609368 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xbb22ea35 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xbe358df1 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc5c6dce5 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xca9121d2 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xcd0fe6bb snd_component_add +EXPORT_SYMBOL sound/core/snd 0xf3e9e532 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xfc0cff73 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +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 0x0de8b8ab snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x115abaf7 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x18e15ecf snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x197aa5ce snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1deddcad snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x225fbc78 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x2e3eaf6d snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x3047fe3b snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x35d92c9e snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3b8f2482 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x3cea14f4 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x40931c61 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x428df25c snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x4d00c224 snd_pcm_open_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 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x55bd63cc snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x5c21301f snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x5ce8aa36 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x63cfe0d1 snd_pcm_hw_constraint_msbits +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 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x72c76554 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x7be4278e snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x7d838552 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x852bc1d3 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x8cb752b5 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x90481836 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x95193f92 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x98cf64de snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x99661770 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x9a5c4bf3 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x9d3481a6 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xa416dd40 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xa52b0818 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xad44f2e2 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xad7587b3 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xb140b129 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xb792eeea snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xc0c3a38f snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xc19b09ff snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xc41805ab _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xc5929760 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0xc7cb21ea snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xcc252c6c snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xd9cf4570 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xe53c23d6 snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xeaf99270 snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0xf8a9da6b snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xfaf3cd3b snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xfc4b026e snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xfe840d41 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x022a345e snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1319388c snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x14a01db7 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3b556182 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3cf26ae4 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3fc3e3d2 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x453c7844 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x48b30983 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x558753be __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x63001e08 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x78cd21dc snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x87775e8d snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb0dff632 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbc12adc5 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcabe4ab9 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd08ab80d snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xde5d8fcb snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xef053b7c snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf5ef8bd9 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf837472f snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x0d8c3e7b 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 0x1764e8d7 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x24ddd1cf snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x30c49c1d snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x3a71d057 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x3c47c10b snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x4bcb1379 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x6acb4569 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x79eb18cb snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x931a2ec6 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xa81bb099 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xaa2fe79d snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xafe29244 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xc54d1ae7 snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0xd9d78488 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0xda4091fe snd_timer_open +EXPORT_SYMBOL sound/soundcore 0x881c7f63 sound_class +EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x001570f7 d_splice_alias +EXPORT_SYMBOL vmlinux 0x0024d1c6 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x003137dd d_instantiate +EXPORT_SYMBOL vmlinux 0x003486c0 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x004a7bff phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x005ad65c pneigh_lookup +EXPORT_SYMBOL vmlinux 0x00855aea scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x008e132c noop_llseek +EXPORT_SYMBOL vmlinux 0x0090d10c request_key_tag +EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode +EXPORT_SYMBOL vmlinux 0x00ab8cda get_cached_acl +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00b8e6fa mdiobus_free +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00d8ef5e jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x00d9a8cd udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x00dc2f89 param_ops_int +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0103d06b fc_host_fpin_rcv +EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds +EXPORT_SYMBOL vmlinux 0x011f402f tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x0126458e register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x012790e1 input_register_handle +EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x0140d9f9 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x01442819 __alloc_skb +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x014959d5 genl_register_family +EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x01652c42 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +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 0x01a44b4c filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x01b20000 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01b9cf46 ptp_clock_register +EXPORT_SYMBOL vmlinux 0x01bb4c5e devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01d20ed7 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x01e3d214 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x01eb872d __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x01f16eb3 __seq_open_private +EXPORT_SYMBOL vmlinux 0x01fc842d pipe_lock +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x021bc7fd ppp_channel_index +EXPORT_SYMBOL vmlinux 0x021c9a85 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x02231519 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x0224bc70 pci_save_state +EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x022aa55b vfs_create_mount +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027583e9 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x0287522c __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02c3818b __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x02fa75b9 lru_cache_add +EXPORT_SYMBOL vmlinux 0x03092d06 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x030dc462 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x034fde49 pmem_should_map_pages +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 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037b7257 get_fs_type +EXPORT_SYMBOL vmlinux 0x03824115 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x03956450 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03ac7bd9 sync_filesystem +EXPORT_SYMBOL vmlinux 0x03ad238e netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x03bf0946 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03c8df80 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0415459b __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x0420ccfc clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x0421cc4b setattr_prepare +EXPORT_SYMBOL vmlinux 0x0440e102 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x0444141e skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x04489e1b fb_set_cmap +EXPORT_SYMBOL vmlinux 0x044b8145 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x044fea4a security_sock_graft +EXPORT_SYMBOL vmlinux 0x045c9986 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x0469464b genphy_suspend +EXPORT_SYMBOL vmlinux 0x046df3d1 submit_bio +EXPORT_SYMBOL vmlinux 0x047112df qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x047a3994 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x04858517 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x048fff58 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x04994aed input_unregister_handle +EXPORT_SYMBOL vmlinux 0x04a05066 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x04b7764f __do_once_slow_done +EXPORT_SYMBOL vmlinux 0x04c207a8 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04c75437 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x04da57d0 account_page_redirty +EXPORT_SYMBOL vmlinux 0x04e0407f kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04f5674d mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x050954d5 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05255a64 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x056e84c2 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x058ed9fc flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x059cf5fb pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05b121b7 netdev_features_change +EXPORT_SYMBOL vmlinux 0x05b448fb pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x05ceeb20 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x05da1e0a pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x05db9918 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x060da59a skb_free_datagram +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0616afb7 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x0618e51b icmp6_send +EXPORT_SYMBOL vmlinux 0x061a5a0b skb_copy_expand +EXPORT_SYMBOL vmlinux 0x0623a812 sk_capable +EXPORT_SYMBOL vmlinux 0x062a343e __nd_driver_register +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x064b9971 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x064e9dd4 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x0660a0c0 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x0668afba phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x067d9387 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x06848c60 to_nfit_uuid +EXPORT_SYMBOL vmlinux 0x06853a8f nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x069d4eaa kfree_skb_list +EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 +EXPORT_SYMBOL vmlinux 0x06b45efc dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06d3c454 param_set_ulong +EXPORT_SYMBOL vmlinux 0x06d7ab59 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x06d910e1 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x06eac587 __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0x06fa94cc devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x07116fa4 eisa_bus_type +EXPORT_SYMBOL vmlinux 0x071d5c0f generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x07378f44 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x074aeebe seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x0755627b __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07ba794f phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x07beff8a mpage_readahead +EXPORT_SYMBOL vmlinux 0x07c1a62d scsi_device_put +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07d1b613 bio_add_page +EXPORT_SYMBOL vmlinux 0x07e334b2 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07fdf8a3 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x080969c1 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082e9b98 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x083ae4df blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x08658ada serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x086d4ce1 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x087a74bd __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x087e8544 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x088dfa75 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x0899f62d tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x089e801d block_write_begin +EXPORT_SYMBOL vmlinux 0x08a0ccfc dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x08aef10a napi_enable +EXPORT_SYMBOL vmlinux 0x08c954bb ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x0906d136 migrate_page_states +EXPORT_SYMBOL vmlinux 0x091d8544 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x0924c494 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x092aa09a dm_io +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x09319481 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x0933c507 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x094abc96 skb_seq_read +EXPORT_SYMBOL vmlinux 0x094c46af cdev_init +EXPORT_SYMBOL vmlinux 0x09531776 vif_device_init +EXPORT_SYMBOL vmlinux 0x09563527 skb_dequeue +EXPORT_SYMBOL vmlinux 0x096e20b0 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x09803473 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09e4f0fa jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x09e668de iunique +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a19a3bf ptp_find_pin +EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0x0a26e32e skb_clone_sk +EXPORT_SYMBOL vmlinux 0x0a28f289 vfs_fsync +EXPORT_SYMBOL vmlinux 0x0a325438 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x0a418e56 netdev_notice +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a784516 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x0a7984a9 inet_listen +EXPORT_SYMBOL vmlinux 0x0a821f03 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x0a87b72c pci_request_regions +EXPORT_SYMBOL vmlinux 0x0a911384 sock_bind_add +EXPORT_SYMBOL vmlinux 0x0a985bb2 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x0a9ba04f srso_untrain_ret +EXPORT_SYMBOL vmlinux 0x0a9ead80 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0aaf5098 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae24c94 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x0b0c1c8d xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc +EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x0b36d4c4 dev_get_stats +EXPORT_SYMBOL vmlinux 0x0b3b1a6c __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x0b637410 cr4_update_irqsoff +EXPORT_SYMBOL vmlinux 0x0b69c069 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b81ad65 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x0b960a21 __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0ba2d4d2 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x0bb218cf tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc4a25f dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x0bc4c9a5 tty_do_resize +EXPORT_SYMBOL vmlinux 0x0bcb6260 devm_iounmap +EXPORT_SYMBOL vmlinux 0x0bf586cb dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x0bfafa02 set_trace_device +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c04e828 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0x0c251ef6 iterate_dir +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c2e293a devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c597d29 phy_error +EXPORT_SYMBOL vmlinux 0x0c5aeebb nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c7b9bca cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x0c7fc16d tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x0c94a15d configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x0c99d4a6 try_module_get +EXPORT_SYMBOL vmlinux 0x0ca43631 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x0cb8046d __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x0cbc730a pnp_start_dev +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cc6ac7a start_tty +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d09787b framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x0d2e5bcc devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x0d3d3687 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d66c778 deactivate_super +EXPORT_SYMBOL vmlinux 0x0d7a78f7 dump_page +EXPORT_SYMBOL vmlinux 0x0d7bcc85 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x0d9ae9d1 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x0da8d6c4 tcp_req_err +EXPORT_SYMBOL vmlinux 0x0ddad87b reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x0dde448d __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x0e109f03 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x0e26244e default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x0e3e447f tty_hangup +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e5ec303 tty_devnum +EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor +EXPORT_SYMBOL vmlinux 0x0e7d25d0 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x0e7e2fed write_inode_now +EXPORT_SYMBOL vmlinux 0x0e891b6b get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x0e8c3c85 thread_group_exited +EXPORT_SYMBOL vmlinux 0x0e9c4e57 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x0e9e0b77 pci_fixup_cardbus +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 0x0ede1ca7 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x0ef48405 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x0f057bc3 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f2a58e7 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f4c06e5 tty_register_device +EXPORT_SYMBOL vmlinux 0x0f6ce16a tty_port_close_end +EXPORT_SYMBOL vmlinux 0x0f7e3c96 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f9d0b85 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x0fa0c830 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x0faa0c9d mpage_writepage +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fabc598 may_umount_tree +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd153a7 input_reset_device +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0ff80f59 zalloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x1006d412 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x100a76c2 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x104a600d acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x104b9748 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x104d3ee4 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x10541937 input_set_keycode +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x106718f1 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x106744f6 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x10799185 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10963898 param_set_ushort +EXPORT_SYMBOL vmlinux 0x10b9389f fb_class +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10cde52b mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x10cf21aa tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x10d1c669 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x10d97525 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10da65ab netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x10dec2d9 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10eab414 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x10ec8e0b gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x10f4dfa1 neigh_for_each +EXPORT_SYMBOL vmlinux 0x10f6c463 is_nd_dax +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x112761f4 vm_insert_page +EXPORT_SYMBOL vmlinux 0x114bf685 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1170bf8f vfs_statfs +EXPORT_SYMBOL vmlinux 0x117b6f55 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x11801ec7 security_sb_remount +EXPORT_SYMBOL vmlinux 0x119561be dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x11961da4 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x11be76d4 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x11dc7163 netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x123863d4 sock_no_bind +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x1250c752 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x127b1f25 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x128ea42f zpool_register_driver +EXPORT_SYMBOL vmlinux 0x129810ca tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x129a686a param_ops_invbool +EXPORT_SYMBOL vmlinux 0x129b2a3d skb_unlink +EXPORT_SYMBOL vmlinux 0x12adfb0a mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x12bf2c0c acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x12c6d90b lock_sock_nested +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12d1e64c __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x12ef93bf napi_gro_flush +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12fe04a8 amd_iommu_complete_ppr +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 0x13336775 fget_raw +EXPORT_SYMBOL vmlinux 0x133f1301 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x13438fc7 audit_log_start +EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x134cc5b2 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x13792c57 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13a10831 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x13a1c8cf dev_disable_lro +EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e043b6 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x13e078cd tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x13e76c6b backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x13ee9083 mdio_device_free +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f79a1d unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x144f4b05 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x14771097 key_unlink +EXPORT_SYMBOL vmlinux 0x14810ca8 vfs_setpos +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x149af36e devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x14a393cc netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0x14b6e116 __frontswap_store +EXPORT_SYMBOL vmlinux 0x14c18361 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14ced76e nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x14d33cb4 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x14dd39ff ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x14f797dd genphy_update_link +EXPORT_SYMBOL vmlinux 0x1500942f pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x151b0959 lookup_one +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x1530f5fe vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1565aa45 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x156a4430 neigh_lookup +EXPORT_SYMBOL vmlinux 0x156e29b4 __pagevec_release +EXPORT_SYMBOL vmlinux 0x15808120 kernel_read +EXPORT_SYMBOL vmlinux 0x15832dd8 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x158a6768 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x15a66331 kobject_set_name +EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies +EXPORT_SYMBOL vmlinux 0x15bae833 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c25d9c sock_i_ino +EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init +EXPORT_SYMBOL vmlinux 0x15cee3e4 netdev_printk +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x16002b4e _dev_err +EXPORT_SYMBOL vmlinux 0x160e067f sock_no_accept +EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x162d64d2 sock_wake_async +EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x166d0466 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x1672acef d_move +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167e4aec flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x168a7c11 pci_get_device +EXPORT_SYMBOL vmlinux 0x1694c7ea to_nd_dax +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x169fedf5 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x16a08f4f skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x16bae1e5 __scsi_execute +EXPORT_SYMBOL vmlinux 0x16bea1e6 scsi_print_result +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16ebdb6b xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x17353e96 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x173e42f9 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x1754857d ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock +EXPORT_SYMBOL vmlinux 0x176a438a ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x177a82c3 entry_untrain_ret +EXPORT_SYMBOL vmlinux 0x179a4163 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event +EXPORT_SYMBOL vmlinux 0x17bfa6b2 bdi_put +EXPORT_SYMBOL vmlinux 0x17c6361c d_find_alias +EXPORT_SYMBOL vmlinux 0x17c8bdc9 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x17cfc793 wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0x17d26fdf blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x17d3153b freeze_super +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f813a9 __SCT__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x18211c84 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x18243fc8 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x18350f3b single_open +EXPORT_SYMBOL vmlinux 0x18619d29 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188bf11b vfs_fadvise +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189884b8 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x1898f0e0 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x18a5f212 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x18a73c15 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18bed4a8 inet_add_offload +EXPORT_SYMBOL vmlinux 0x18d8e139 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x18e5c3ac dump_skip +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18e8702e inode_set_bytes +EXPORT_SYMBOL vmlinux 0x18f193d3 unlock_page +EXPORT_SYMBOL vmlinux 0x18f33ae0 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x1918a9eb iov_iter_advance +EXPORT_SYMBOL vmlinux 0x1921abb2 ihold +EXPORT_SYMBOL vmlinux 0x19224cdd napi_gro_receive +EXPORT_SYMBOL vmlinux 0x192629e0 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x192ea14f __SCT__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x1941ab74 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x1949efd4 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL vmlinux 0x1975d937 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x197ef676 pci_set_master +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x1989f38a scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x1995e4fa key_move +EXPORT_SYMBOL vmlinux 0x19994d5e tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19d200ec __SCT__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x19d244f2 dqget +EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x19e059db devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x19e8677c blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x19f4d476 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x19fb75ae dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x1a06a91b __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x1a0ad86e vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x1a1b53d7 tty_port_put +EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a79c8e9 __x86_indirect_thunk_r13 +EXPORT_SYMBOL vmlinux 0x1a7b538e insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x1a86722a vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x1a8b7480 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x1a93aefa tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa16d78 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x1aa9fba0 vfio_dma_rw +EXPORT_SYMBOL vmlinux 0x1aae73e7 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ac987ac inet_csk_accept +EXPORT_SYMBOL vmlinux 0x1ad09c8b pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x1ae6116a fc_host_post_event +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b160c3a tty_unregister_device +EXPORT_SYMBOL vmlinux 0x1b37b224 file_remove_privs +EXPORT_SYMBOL vmlinux 0x1b4da235 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x1b52b699 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b72f65e fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b852a49 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b97c283 truncate_setsize +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bbe8c29 fc_mount +EXPORT_SYMBOL vmlinux 0x1bbeebea ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bdfd669 disk_start_io_acct +EXPORT_SYMBOL vmlinux 0x1bf477c5 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x1bfaa14b tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x1c0af008 md_done_sync +EXPORT_SYMBOL vmlinux 0x1c1186be simple_lookup +EXPORT_SYMBOL vmlinux 0x1c20e49f fc_host_post_vendor_event +EXPORT_SYMBOL vmlinux 0x1c56cf14 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c60d209 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x1c66ea3c cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x1c99bae3 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cf16b83 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x1cf2537c proc_set_user +EXPORT_SYMBOL vmlinux 0x1cf52c8a dst_release_immediate +EXPORT_SYMBOL vmlinux 0x1cf944de acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d18bb63 neigh_update +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 0x1d3959ef xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x1d3eec2f uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d415f3f udp_set_csum +EXPORT_SYMBOL vmlinux 0x1d54b1de sk_reset_timer +EXPORT_SYMBOL vmlinux 0x1d72f6c9 scsi_add_device +EXPORT_SYMBOL vmlinux 0x1d76fd9a uart_update_timeout +EXPORT_SYMBOL vmlinux 0x1d7e8ec8 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x1dab023f genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1dbcb785 input_release_device +EXPORT_SYMBOL vmlinux 0x1dbdf946 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x1dc44335 padata_free_shell +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dc8068b tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1dfc2cb8 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e1a3667 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x1e1acb03 param_get_ulong +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e46c396 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x1e4eee44 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x1e6054a7 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e83dcf4 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eaf6829 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x1eafaf9f inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x1eb0a758 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1eca11af dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x1ed69ee3 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ef8e035 request_firmware +EXPORT_SYMBOL vmlinux 0x1efb31fe tcf_classify +EXPORT_SYMBOL vmlinux 0x1f01b208 has_capability +EXPORT_SYMBOL vmlinux 0x1f05f96d blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x1f199d24 copy_user_generic_string +EXPORT_SYMBOL vmlinux 0x1f35a381 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f8138d3 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x1fa9210a dm_table_event +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc0cc7c intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd40da6 tty_port_close +EXPORT_SYMBOL vmlinux 0x1fe23caf __register_chrdev +EXPORT_SYMBOL vmlinux 0x1fe7c9e3 serio_reconnect +EXPORT_SYMBOL vmlinux 0x1ff33245 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x1ff6555d kill_anon_super +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200010d6 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x203c429b fasync_helper +EXPORT_SYMBOL vmlinux 0x203d2611 bio_chain +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 0x205234be bio_endio +EXPORT_SYMBOL vmlinux 0x2086dba8 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x208d2424 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x209e30d5 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x20bcbe4f blake2s_compress +EXPORT_SYMBOL vmlinux 0x20c12ddc param_set_uint +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20e71f2f unregister_shrinker +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20fae84c fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0x21029aaa migrate_vma_pages +EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x21097293 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x211130c1 alloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x21145500 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x2122cfaf phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x21271fd0 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x2143afbe __sk_dst_check +EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event +EXPORT_SYMBOL vmlinux 0x217e13ba jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x218388c9 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x2188158c import_single_range +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21a1b1e1 netlink_ack +EXPORT_SYMBOL vmlinux 0x21a34fcd d_alloc_anon +EXPORT_SYMBOL vmlinux 0x21ba9e27 pci_bus_type +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21c01fbe skb_queue_head +EXPORT_SYMBOL vmlinux 0x21c0ea81 dm_put_device +EXPORT_SYMBOL vmlinux 0x21d349a5 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x21d42ce9 nla_append +EXPORT_SYMBOL vmlinux 0x21d7597e sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21e1b536 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x21e6a829 dm_register_target +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x2211c813 kthread_stop +EXPORT_SYMBOL vmlinux 0x221ae681 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x22266941 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x223ae01d security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x223b6685 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x223eb368 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x225da00e ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x2264ba71 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x22697227 skb_put +EXPORT_SYMBOL vmlinux 0x227a18af kmem_cache_size +EXPORT_SYMBOL vmlinux 0x228a6891 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x229484cd netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0x22989f25 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b78173 pci_free_irq +EXPORT_SYMBOL vmlinux 0x22beb59e uart_get_divisor +EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier +EXPORT_SYMBOL vmlinux 0x22ea0fc6 dev_set_alias +EXPORT_SYMBOL vmlinux 0x230acb66 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x23375d4b security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x2344055a xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x2364899d dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x2366beb3 pci_match_id +EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x23a664fd blk_queue_split +EXPORT_SYMBOL vmlinux 0x23adea92 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x23af76d0 seq_vprintf +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23be5b18 vfio_pin_pages +EXPORT_SYMBOL vmlinux 0x23c55a14 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23e09804 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x23fe6fa2 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x240a9c6b tcp_check_req +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x243b70e2 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2472c783 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x24744826 sock_wfree +EXPORT_SYMBOL vmlinux 0x2479c440 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x248420d3 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24866a81 __neigh_create +EXPORT_SYMBOL vmlinux 0x249f7465 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24f02eaa vm_map_pages +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2542463f udp6_set_csum +EXPORT_SYMBOL vmlinux 0x2555a9de scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x256eccab __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x2580f8bb iput +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +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 0x25b9afd7 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x25c9c276 sk_free +EXPORT_SYMBOL vmlinux 0x25ce0821 from_kprojid +EXPORT_SYMBOL vmlinux 0x25ce7c46 __SCK__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f6800e mdio_bus_type +EXPORT_SYMBOL vmlinux 0x2606bb90 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x263210f5 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x2648b705 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x264cdd5d thaw_bdev +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x269280ff md_reload_sb +EXPORT_SYMBOL vmlinux 0x26a1acaf tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x26b7fc2c dev_get_iflink +EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit +EXPORT_SYMBOL vmlinux 0x26cd0e7e fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x26d44a52 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x270d63ae pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x27158c2d kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x2717ba56 get_tz_trend +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x273100ef inet_sendpage +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x27495387 phy_stop +EXPORT_SYMBOL vmlinux 0x27541dff dquot_operations +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x2765737d input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x2768a0d0 simple_getattr +EXPORT_SYMBOL vmlinux 0x276e1905 dns_query +EXPORT_SYMBOL vmlinux 0x276f06b2 sock_set_mark +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x27810361 acpi_os_wait_events_complete +EXPORT_SYMBOL vmlinux 0x27823ab1 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x2784aaca __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27af89bc blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x27b3230f pci_remove_bus +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c146a3 empty_aops +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x2810d1c9 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x28150171 lease_modify +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2825811a eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x28323f3d cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x284faa6b __x86_indirect_thunk_r11 +EXPORT_SYMBOL vmlinux 0x285ca4e8 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x2863be05 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x2871624e nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x28b57e29 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x28c493e9 default_llseek +EXPORT_SYMBOL vmlinux 0x28d4ba79 con_is_bound +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x291ee747 csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x29267173 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x292e35a1 sock_edemux +EXPORT_SYMBOL vmlinux 0x29332499 __x86_indirect_thunk_rsi +EXPORT_SYMBOL vmlinux 0x293ef5cf skb_trim +EXPORT_SYMBOL vmlinux 0x294ea48f xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x295baed1 ip_tunnel_get_iflink +EXPORT_SYMBOL vmlinux 0x295c89bc register_fib_notifier +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x29804d97 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x2981f445 netdev_change_features +EXPORT_SYMBOL vmlinux 0x298b4add mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x29a5bb5a __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x29aba2be jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type +EXPORT_SYMBOL vmlinux 0x29af75db blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x29cc4e2e scsi_host_get +EXPORT_SYMBOL vmlinux 0x29e1a691 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29ef47cf __ip_dev_find +EXPORT_SYMBOL vmlinux 0x2a0b351a pci_find_capability +EXPORT_SYMBOL vmlinux 0x2a149f36 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x2a173191 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37ad03 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x2a424b56 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x2a521d07 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x2a56befb security_path_rename +EXPORT_SYMBOL vmlinux 0x2a6eca33 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x2a6fa0d0 __SCT__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa00e26 intel_scu_ipc_dev_update +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2ab0516e jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x2abba8e2 set_page_dirty +EXPORT_SYMBOL vmlinux 0x2ac41198 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x2ad02a5a genl_unregister_family +EXPORT_SYMBOL vmlinux 0x2ad12a45 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x2ad60261 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x2aebfb68 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x2afdbe92 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x2afe823c unpin_user_pages +EXPORT_SYMBOL vmlinux 0x2b05af03 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x2b0ffe11 block_commit_write +EXPORT_SYMBOL vmlinux 0x2b17dfc1 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x2b3542c2 file_path +EXPORT_SYMBOL vmlinux 0x2b3de144 fb_pan_display +EXPORT_SYMBOL vmlinux 0x2b5497b3 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b5d8441 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x2b5f8b8e phy_device_remove +EXPORT_SYMBOL vmlinux 0x2b6f0962 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x2b884dcf pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x2b98d7c0 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bbc01f6 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x2bbd2870 md_handle_request +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bdaec42 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x2bdbec26 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x2bfdc431 follow_down +EXPORT_SYMBOL vmlinux 0x2c0453b0 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x2c06a4dd t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x2c1f4c45 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2f3acb fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x2c38ee59 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x2c422447 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c58d838 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c834405 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x2c870a93 tcf_em_register +EXPORT_SYMBOL vmlinux 0x2ca60947 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die +EXPORT_SYMBOL vmlinux 0x2cb9ba0e __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x2cc42828 inet_bind +EXPORT_SYMBOL vmlinux 0x2cc5637e fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2cf68deb filp_close +EXPORT_SYMBOL vmlinux 0x2cf9ce4e pci_enable_device +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d1d18c6 d_path +EXPORT_SYMBOL vmlinux 0x2d26b5c8 path_is_under +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3e255d tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d599382 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x2d5a07c4 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x2d724e1f tcp_read_sock +EXPORT_SYMBOL vmlinux 0x2d8377ed xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2d9f45e7 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x2dcbcb17 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2ddc36b3 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2df73d36 __alloc_pages +EXPORT_SYMBOL vmlinux 0x2dfc8ea1 sock_no_linger +EXPORT_SYMBOL vmlinux 0x2dfd9522 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e1bd70c bio_kmalloc +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e3cd41c blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e48d4db xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e6324b8 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x2e6f1ad9 inet6_protos +EXPORT_SYMBOL vmlinux 0x2e8ee90e gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x2e9e1da2 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x2ea85a75 mount_nodev +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ee05bb0 igrab +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2eea912c get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x2ef0e096 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x2ef3cfec fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f1a37bd dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0x2f2d42ca request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f3bc636 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x2f43cc85 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x2f682b8f seq_bprintf +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f78e1a2 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x2f816d38 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x2f8b275d __bforget +EXPORT_SYMBOL vmlinux 0x2f9179e8 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x2f9dead4 md_integrity_register +EXPORT_SYMBOL vmlinux 0x2fa0f6fb mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x2fb64789 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x2fc4a3e6 sock_from_file +EXPORT_SYMBOL vmlinux 0x2fc610c7 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x301304c2 __get_user_nocheck_8 +EXPORT_SYMBOL vmlinux 0x30273542 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0x305a916c __x86_indirect_thunk_rdi +EXPORT_SYMBOL vmlinux 0x307ac6d8 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x30818db4 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309e628e request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x309ed1da pci_write_config_word +EXPORT_SYMBOL vmlinux 0x309f29f6 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x30a2239b phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30aa648c vme_dma_request +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30c0e928 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x30d59958 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x30e3b966 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x30e49f0f simple_dir_operations +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30efcd6d sg_miter_next +EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x313f0a60 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x3146a4c5 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x31549b2a __x86_indirect_thunk_r10 +EXPORT_SYMBOL vmlinux 0x315797be fc_vport_create +EXPORT_SYMBOL vmlinux 0x31646403 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x31948f99 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x319d9045 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x31a112e9 inc_nlink +EXPORT_SYMBOL vmlinux 0x31a3e761 dquot_disable +EXPORT_SYMBOL vmlinux 0x31b4d291 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x31e0b66c __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x31f7b558 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x32011ed7 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x32081b70 ip_options_compile +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x322d2753 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x32303327 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x3233dfb2 dev_driver_string +EXPORT_SYMBOL vmlinux 0x323cdef3 param_ops_charp +EXPORT_SYMBOL vmlinux 0x32457e8b noop_qdisc +EXPORT_SYMBOL vmlinux 0x324a209c proc_create_single_data +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x32682f79 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x328107d4 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32beea03 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32d4df07 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x331567c3 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x332575f5 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x33274844 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down +EXPORT_SYMBOL vmlinux 0x334575ef flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x33646c7a mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x336922cf blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x3377fb51 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x33830b7d vmbus_sendpacket_getid +EXPORT_SYMBOL vmlinux 0x3383ca0b dma_resv_fini +EXPORT_SYMBOL vmlinux 0x339103f3 brioctl_set +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33b8c674 zap_page_range +EXPORT_SYMBOL vmlinux 0x33cba66b disk_stack_limits +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fb257c vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x33fd3b94 ip_frag_init +EXPORT_SYMBOL vmlinux 0x33fd9da4 acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x34133f19 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x3417ee48 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x34269db9 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x3427ba04 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x3441445f msrs_free +EXPORT_SYMBOL vmlinux 0x34679040 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x348fc9d0 pid_task +EXPORT_SYMBOL vmlinux 0x3499967e ps2_end_command +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a0badc genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34ae4401 pci_pme_active +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x34e8404d jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x34e9f8bf __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3511690c do_SAK +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351b761b fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x3541ebac inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace +EXPORT_SYMBOL vmlinux 0x35543981 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3586fe5e __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x35875f82 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35cf8d33 done_path_create +EXPORT_SYMBOL vmlinux 0x35cfa602 input_flush_device +EXPORT_SYMBOL vmlinux 0x35e6a79a netlink_net_capable +EXPORT_SYMBOL vmlinux 0x35f3290a nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x35f46aa7 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x35f9badf mntget +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x360d7288 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x36253f69 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable +EXPORT_SYMBOL vmlinux 0x3648c726 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x3683b46b shmem_aops +EXPORT_SYMBOL vmlinux 0x36945c48 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x36a004b6 dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36cb81d1 flush_signals +EXPORT_SYMBOL vmlinux 0x36d32068 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x3704f826 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x372ed468 begin_new_exec +EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x37596f3e dcache_dir_close +EXPORT_SYMBOL vmlinux 0x375c0eb4 add_to_pipe +EXPORT_SYMBOL vmlinux 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL vmlinux 0x376497f5 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x3764e44c napi_complete_done +EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x377f6be7 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x377f9693 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x37834986 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x379d4a72 input_grab_device +EXPORT_SYMBOL vmlinux 0x37a16f9f tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x37a9feef flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x37b30bc2 devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c8b121 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37f44377 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x37fbbd78 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38208c86 find_inode_rcu +EXPORT_SYMBOL vmlinux 0x382cdbb5 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x382e4be2 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x3836b7b2 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x385725b4 ps2_drain +EXPORT_SYMBOL vmlinux 0x385fa480 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x387d49bf sk_error_report +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x3891b36c __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x389c9d99 set_pages_uc +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38af20d6 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x38bc8c24 blk_put_request +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x38f816de serio_open +EXPORT_SYMBOL vmlinux 0x38fb1fcc xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x3902bdcc clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x39107d57 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x391db78d tcf_register_action +EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x393258fa acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x3933e76b pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3947bf30 mdiobus_read +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x394bf7e4 key_invalidate +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x39631f42 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x397df60b alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x398d284d kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x398e337f d_add_ci +EXPORT_SYMBOL vmlinux 0x39991267 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39b4ae44 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bed7d5 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x39e0ea73 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr +EXPORT_SYMBOL vmlinux 0x39f18748 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a099605 __get_user_nocheck_4 +EXPORT_SYMBOL vmlinux 0x3a0d9af7 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +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 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a52db01 sock_create_kern +EXPORT_SYMBOL vmlinux 0x3a531023 dev_change_flags +EXPORT_SYMBOL vmlinux 0x3a576075 param_get_uint +EXPORT_SYMBOL vmlinux 0x3a756625 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x3a7a9bd5 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x3a88b59d agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x3aa83c21 __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x3ab45dcf pci_enable_msi +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3abbb911 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x3ac44f19 sk_wait_data +EXPORT_SYMBOL vmlinux 0x3ac9ffff devm_of_iomap +EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region +EXPORT_SYMBOL vmlinux 0x3ae4733c __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x3aef594e agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x3b102e65 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b254211 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x3b30f44a md_finish_reshape +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b391e28 free_buffer_head +EXPORT_SYMBOL vmlinux 0x3b3c4d9d redraw_screen +EXPORT_SYMBOL vmlinux 0x3b4e607c skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b686202 dev_uc_init +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b77cd6d flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3b9835c9 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x3b9ce6fe nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x3ba6b0e3 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x3be53b86 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bf80261 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x3bff73a3 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1b347f devm_register_netdev +EXPORT_SYMBOL vmlinux 0x3c2fdfce unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x3c3e2c76 dev_open +EXPORT_SYMBOL vmlinux 0x3c3f5792 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map +EXPORT_SYMBOL vmlinux 0x3c48cb57 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x3c4d90d9 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x3c5771b8 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x3c6314d6 netdev_err +EXPORT_SYMBOL vmlinux 0x3c640710 sock_init_data +EXPORT_SYMBOL vmlinux 0x3c6e0c5f unregister_md_personality +EXPORT_SYMBOL vmlinux 0x3c89a6d1 inet_accept +EXPORT_SYMBOL vmlinux 0x3c8c24a4 bio_reset +EXPORT_SYMBOL vmlinux 0x3c95e1a0 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x3c985968 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x3c9cd739 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x3ca3e3f1 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x3ca92f00 phy_device_create +EXPORT_SYMBOL vmlinux 0x3cc8ebf5 ether_setup +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d01a965 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d1efb29 ps2_init +EXPORT_SYMBOL vmlinux 0x3d1f3c2f netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d25f84d vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d972116 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3da900c7 end_page_writeback +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 0x3dbe5a4a simple_transaction_read +EXPORT_SYMBOL vmlinux 0x3dbf5b7c register_qdisc +EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd32247 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x3dd8901b mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e00e249 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x3e0e7135 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x3e0f0fb1 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x3e1e225b skb_eth_push +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e586172 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x3e60e599 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x3e6a164d update_devfreq +EXPORT_SYMBOL vmlinux 0x3e954e8c bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x3ebb11e6 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3ef19c90 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f2e06cf kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x3f431721 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x3f4354be vme_bus_type +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f55e6a4 key_task_permission +EXPORT_SYMBOL vmlinux 0x3f5ba388 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x3f624036 phy_device_register +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f8c26c5 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0x3f8d4591 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x3f99217b vfs_mknod +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fd7da59 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x3fdf1d8c dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fe9c85c __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4022453a tcp_filter +EXPORT_SYMBOL vmlinux 0x4036699f sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x4045a320 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x4048411f devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x404dc660 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x40656497 md_write_start +EXPORT_SYMBOL vmlinux 0x40792247 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x407ed6af blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40adc59d __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x40b8ed34 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x40bd6858 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c7b599 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x40c7fd84 d_drop +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x40dd99e6 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x40f2d5ea pin_user_pages +EXPORT_SYMBOL vmlinux 0x40f37b03 nla_reserve +EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc +EXPORT_SYMBOL vmlinux 0x410acdb7 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x4112d4bb neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x412a066c blk_get_queue +EXPORT_SYMBOL vmlinux 0x412e6135 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x41349807 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x41371732 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x4143575a dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414f9fae vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x41519e8a __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x415256b9 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x4159e373 __SCK__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0x415d2f98 sock_set_priority +EXPORT_SYMBOL vmlinux 0x41701547 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418e2076 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x41b37078 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x41c3ef57 param_set_bint +EXPORT_SYMBOL vmlinux 0x41c429b7 netdev_alert +EXPORT_SYMBOL vmlinux 0x41d3fabe phy_write_paged +EXPORT_SYMBOL vmlinux 0x41dd23de xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x41e18def pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41fd1cd3 nd_device_register +EXPORT_SYMBOL vmlinux 0x41ff26fe kernel_write +EXPORT_SYMBOL vmlinux 0x42056147 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x42130a13 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x42258aab ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x422c685c generic_write_checks +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x42480600 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424c394e tty_register_driver +EXPORT_SYMBOL vmlinux 0x424c664f nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x4278a795 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x427ef0d4 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x4284753c inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x4285e2f5 pci_get_slot +EXPORT_SYMBOL vmlinux 0x429af51a udp_prot +EXPORT_SYMBOL vmlinux 0x429ec58a vfs_get_link +EXPORT_SYMBOL vmlinux 0x429ecabf xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x42bb18f1 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42c4e23e xfrm_lookup +EXPORT_SYMBOL vmlinux 0x42d30e45 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x42db3ddd padata_alloc +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4307746f dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x433464d4 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x4350133f dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436ca90d __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x436f8ef1 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x4376cbc6 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43888d5d register_netdev +EXPORT_SYMBOL vmlinux 0x438f4b33 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x43bd2c34 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x43c2b2e1 xp_dma_map +EXPORT_SYMBOL vmlinux 0x43d0136e genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43e19b7b mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x43e6d91f __scsi_add_device +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x4412b336 datagram_poll +EXPORT_SYMBOL vmlinux 0x441bc592 page_symlink +EXPORT_SYMBOL vmlinux 0x443ab9b1 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x443c44d0 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x444ba6a2 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x445ee924 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x445efc73 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x448af022 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event +EXPORT_SYMBOL vmlinux 0x4494beee dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44c1734f jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x44ccb6c0 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f61347 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x4502018b jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x452df0a5 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45403630 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x4545c4d0 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x4562cace filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x458987b7 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x458b80cc seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x45a0a605 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x45b6aac1 dquot_acquire +EXPORT_SYMBOL vmlinux 0x45c283d8 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x45d42bbd agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x45e86f10 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 +EXPORT_SYMBOL vmlinux 0x45f7c831 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x45fc19d2 retbleed_untrain_ret +EXPORT_SYMBOL vmlinux 0x4602222d inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x46066f49 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x4619edad phy_validate_pause +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x46319c15 file_modified +EXPORT_SYMBOL vmlinux 0x464b32ae inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x464fc08f mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x4652a5ab fqdir_exit +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466b7390 sk_common_release +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x4672a795 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x46968009 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46bbe71b proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x46c143b0 vmbus_sendpacket +EXPORT_SYMBOL vmlinux 0x46c2abd8 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46c4eb88 tty_vhangup +EXPORT_SYMBOL vmlinux 0x46cdeff7 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x46cf10eb cachemode2protval +EXPORT_SYMBOL vmlinux 0x46d1dc89 genl_notify +EXPORT_SYMBOL vmlinux 0x46e2ad52 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x46ec5042 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x46f771f1 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x46fc5b69 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x470401e6 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x470d9336 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x471b9325 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x473529d8 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x47424924 udplite_prot +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x47b0de93 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x47b70e37 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47cc58c9 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x47e1d9d5 complete_request_key +EXPORT_SYMBOL vmlinux 0x48024f1a nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x4810ace5 unregister_nls +EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x4813dfc8 amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481ee1e1 fs_param_is_string +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x4833ec43 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x483dd7fe tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x48476bcb intel_gtt_insert_page +EXPORT_SYMBOL vmlinux 0x484978d7 get_tree_nodev +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 0x4871d75d clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a6a620 netif_device_detach +EXPORT_SYMBOL vmlinux 0x48a81d7e vfio_group_pin_pages +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b0a764 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x48b36511 devm_clk_get +EXPORT_SYMBOL vmlinux 0x48b8a882 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48be5a9f ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48c5e613 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x48e55968 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x48e8b0b1 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x48ff8ea5 inet_select_addr +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490ca8ed ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x491daa39 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x493ca275 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x497c360e tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x49924896 release_pages +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a40b25 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49c6074e __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x49c848d7 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x49cbec52 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x49d6d3ae load_nls +EXPORT_SYMBOL vmlinux 0x49f670b9 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x49fa988a kmem_cache_create +EXPORT_SYMBOL vmlinux 0x4a026bf3 __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x4a0a6803 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x4a165127 kobject_put +EXPORT_SYMBOL vmlinux 0x4a18cd99 param_ops_byte +EXPORT_SYMBOL vmlinux 0x4a22d341 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a3ea124 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x4a40011c xfrm_state_free +EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 +EXPORT_SYMBOL vmlinux 0x4a688f9f flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x4a6a5300 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x4a74931e inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x4a81ef9b jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4aae089e pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x4ab09200 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x4abb7d10 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x4ad90849 param_get_string +EXPORT_SYMBOL vmlinux 0x4ad96a83 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b14febd pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x4b2321f2 elevator_alloc +EXPORT_SYMBOL vmlinux 0x4b4afda0 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x4b4dad9a dst_destroy +EXPORT_SYMBOL vmlinux 0x4b4ea2b2 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x4b5e3a47 __get_user_nocheck_1 +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b655d6b vma_set_file +EXPORT_SYMBOL vmlinux 0x4b6a58af dev_get_flags +EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg +EXPORT_SYMBOL vmlinux 0x4b805637 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x4b80ea64 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x4b99a136 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x4ba9ce33 __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x4bc27697 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bcd4d88 phy_attached_info +EXPORT_SYMBOL vmlinux 0x4be1e28b agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf57327 is_subdir +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c18b49c scsi_scan_host +EXPORT_SYMBOL vmlinux 0x4c236f6f __x86_indirect_thunk_r15 +EXPORT_SYMBOL vmlinux 0x4c36bd43 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c4bdee6 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x4c6a4015 md_update_sb +EXPORT_SYMBOL vmlinux 0x4c737069 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x4c77b53e rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x4c89f5bd dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x4c8cf250 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x4c8f14a1 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x4c9bd4b5 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4cb225a0 _dev_crit +EXPORT_SYMBOL vmlinux 0x4cb938f7 udp_read_sock +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cd3a174 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x4cd940fa set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x4ceae601 get_cpu_entry_area +EXPORT_SYMBOL vmlinux 0x4d014d23 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x4d02cd30 nf_log_set +EXPORT_SYMBOL vmlinux 0x4d041035 get_user_pages +EXPORT_SYMBOL vmlinux 0x4d139486 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x4d195610 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x4d2603fe mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d572ff9 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x4d60024f __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x4d6cae88 mount_single +EXPORT_SYMBOL vmlinux 0x4d8a01b3 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da2c5fc jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x4da60836 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x4dadfbf0 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x4daef354 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x4dbd3499 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x4dbdddd3 arp_xmit +EXPORT_SYMBOL vmlinux 0x4dc708dd sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4dcc5eb5 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x4dd852c5 ip_output +EXPORT_SYMBOL vmlinux 0x4dd9d156 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x4ddfe04f ata_print_version +EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4df46e2f open_with_fake_path +EXPORT_SYMBOL vmlinux 0x4df793f7 pci_request_region +EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock +EXPORT_SYMBOL vmlinux 0x4dfcfa22 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x4e1a677a touch_buffer +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e2793d2 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e496ebc tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e62ecbf scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x4e63e57f __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e7242ae remove_proc_entry +EXPORT_SYMBOL vmlinux 0x4e7c75b8 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x4e8420a2 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x4e871d35 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x4e879416 __lock_page +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ec65eb9 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x4ef58da6 devm_clk_put +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f44e77d udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x4f4afb2d napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x4f711f84 intel_scu_ipc_dev_iowrite8 +EXPORT_SYMBOL vmlinux 0x4f7330e4 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x4f73e3b7 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x4f8d4e97 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x4f96009b ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x4f9af74e block_read_full_page +EXPORT_SYMBOL vmlinux 0x4fcabacc xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x4fcfada2 param_array_ops +EXPORT_SYMBOL vmlinux 0x4fd6efa0 d_make_root +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4ff5ec12 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x4fffd6a1 inet6_offloads +EXPORT_SYMBOL vmlinux 0x5004f5e6 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x500af721 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x500d99a5 skb_store_bits +EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x50248841 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x502ae2d9 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x5050891a tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x5051450a netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x505519d8 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x50646a08 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x506c67e1 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x50bd2e5b dev_activate +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50c90c8e __skb_checksum +EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50e820f9 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x50f37997 devm_memunmap +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x510e32c6 iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x511d375f simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x518082fe gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x51ba2221 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51e70ca7 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x51f298e0 intel_scu_ipc_dev_ioread8 +EXPORT_SYMBOL vmlinux 0x51f4245e param_ops_hexint +EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x51fad47f add_watch_to_object +EXPORT_SYMBOL vmlinux 0x5208c2de sync_file_create +EXPORT_SYMBOL vmlinux 0x520f63cb input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x5223e83a mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x5264c65c pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x52678676 pipe_unlock +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x527c732b xp_free +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52b9620d page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52d9afca security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x52e9c077 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x52eb1b06 __find_get_block +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x5304fb08 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x531c0388 fb_set_var +EXPORT_SYMBOL vmlinux 0x531c523a netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x533206b5 sort_r +EXPORT_SYMBOL vmlinux 0x53354095 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x5342c48b skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x534f9250 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x535d2f61 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x536289fc dm_kobject_release +EXPORT_SYMBOL vmlinux 0x5379d823 register_netdevice +EXPORT_SYMBOL vmlinux 0x5379ecb4 clk_get +EXPORT_SYMBOL vmlinux 0x53984476 __page_symlink +EXPORT_SYMBOL vmlinux 0x539d730f fqdir_init +EXPORT_SYMBOL vmlinux 0x53a0a72c md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x53a4c5de __udp_disconnect +EXPORT_SYMBOL vmlinux 0x53b38c3e pci_get_subsys +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53ba0505 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x53e50ffa first_ec +EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54430280 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x54457046 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x5461cf61 dst_init +EXPORT_SYMBOL vmlinux 0x5478c645 neigh_destroy +EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable +EXPORT_SYMBOL vmlinux 0x5488d2b8 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x54a74f2f udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54b22bb1 __SCT__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x54bf2949 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x54c60d55 param_set_int +EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x54d3eccb tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x550e3f8d neigh_event_ns +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552bf012 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x5535a6b4 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x55385e2e __x86_indirect_thunk_r14 +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache +EXPORT_SYMBOL vmlinux 0x556b4db7 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine +EXPORT_SYMBOL vmlinux 0x5574ef19 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x557993ab amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55a98e34 km_policy_expired +EXPORT_SYMBOL vmlinux 0x55c1b52f sock_create +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55e3874a nd_device_unregister +EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot +EXPORT_SYMBOL vmlinux 0x56108322 amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0x56116415 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x561bd1aa fc_remote_port_add +EXPORT_SYMBOL vmlinux 0x561c3a76 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x5657d4b5 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x5673d7fe set_bh_page +EXPORT_SYMBOL vmlinux 0x567e9f77 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x568b0099 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x568be8bc security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x56b441a7 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x56c4d96f input_register_handler +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56ebdd23 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x56f0540f mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x56fbc5ea generic_file_fsync +EXPORT_SYMBOL vmlinux 0x57027e75 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x5712be5d unpin_user_page +EXPORT_SYMBOL vmlinux 0x5726f2b6 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x5728caec __scm_send +EXPORT_SYMBOL vmlinux 0x573053d4 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x574fe31f pcim_iomap +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575a67a0 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x575dc8c3 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x57695b21 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x576e76e6 ip_tunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x57710e40 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0x57735fce get_tree_single +EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57ad7528 get_task_cred +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57ebd3eb __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x57f66039 netdev_info +EXPORT_SYMBOL vmlinux 0x57f9b6af inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x5801f5be security_sk_clone +EXPORT_SYMBOL vmlinux 0x58050187 get_acl +EXPORT_SYMBOL vmlinux 0x5816c8ff devfreq_add_device +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x581fe8bb udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x582522a6 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x582dbb16 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x585456b7 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x5857961a sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x5858a311 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x5862a818 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x58699fb0 param_ops_bint +EXPORT_SYMBOL vmlinux 0x586c73dc xfrm_state_update +EXPORT_SYMBOL vmlinux 0x586e0542 cpu_info +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bb4350 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x58c49166 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x58ca1a54 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58ff46d6 dev_add_offload +EXPORT_SYMBOL vmlinux 0x59001627 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x590204ff xfrm_state_add +EXPORT_SYMBOL vmlinux 0x5902433e __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x590c088e ppp_unit_number +EXPORT_SYMBOL vmlinux 0x591a3b6d tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x591cbb7f pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x5929ca5d __do_once_done +EXPORT_SYMBOL vmlinux 0x593a061f ip_setsockopt +EXPORT_SYMBOL vmlinux 0x593edc4b cpu_tlbstate_shared +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594eff23 pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x59665cb7 mmput_async +EXPORT_SYMBOL vmlinux 0x5973578f mark_page_accessed +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59a6c37b __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x59acf859 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59f07211 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x59f694d3 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0dec81 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a354ad5 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x5a39012a pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x5a3fddac pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5a67f7c2 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x5a6c9a8b sock_no_listen +EXPORT_SYMBOL vmlinux 0x5a74958a padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x5a86b9b7 __register_binfmt +EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5aa29b76 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x5ab24296 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x5abc6f59 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5b258cfa thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b62c216 framebuffer_release +EXPORT_SYMBOL vmlinux 0x5b641283 arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x5b77c653 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x5b7c0e3c __free_pages +EXPORT_SYMBOL vmlinux 0x5b8239ca __x86_return_thunk +EXPORT_SYMBOL vmlinux 0x5b932bc4 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x5b9cd6d8 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x5baa2f0e pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x5bc8deb2 inode_set_ctime_current +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bd89137 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x5be1fddb __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x5be36052 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5be76bf9 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x5bed6d63 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x5bf41415 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x5c0530a0 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x5c1452c2 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c39f02b thaw_super +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c538415 block_write_end +EXPORT_SYMBOL vmlinux 0x5c55c065 vfs_symlink +EXPORT_SYMBOL vmlinux 0x5c7dc15b fs_lookup_param +EXPORT_SYMBOL vmlinux 0x5c82f3ac setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0x5c8501f5 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x5c9bfbd0 logfc +EXPORT_SYMBOL vmlinux 0x5c9e7451 vmbus_recvpacket +EXPORT_SYMBOL vmlinux 0x5ca37d0d sock_recvmsg +EXPORT_SYMBOL vmlinux 0x5ca81a99 md_register_thread +EXPORT_SYMBOL vmlinux 0x5cb32ed0 get_phy_device +EXPORT_SYMBOL vmlinux 0x5cc30099 block_truncate_page +EXPORT_SYMBOL vmlinux 0x5cc3f02b netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x5cc698ad I_BDEV +EXPORT_SYMBOL vmlinux 0x5cd1b42f inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x5ce45a20 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x5ce8eb50 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf87f3f dev_uc_add +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5cfba215 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x5cfc2a94 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x5d08507a __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x5d08e67f fc_block_scsi_eh +EXPORT_SYMBOL vmlinux 0x5d3243f5 dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0x5d34a780 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d826a78 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x5dae1184 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x5dca4e56 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x5de9356d current_in_userns +EXPORT_SYMBOL vmlinux 0x5de9ef13 input_match_device_id +EXPORT_SYMBOL vmlinux 0x5dede63f drop_super +EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e1eced4 vlan_for_each +EXPORT_SYMBOL vmlinux 0x5e249a6e phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e38a140 scsi_device_get +EXPORT_SYMBOL vmlinux 0x5e3c340b drop_nlink +EXPORT_SYMBOL vmlinux 0x5e40bf20 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x5e4fa294 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x5e68ff5a amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0x5e6b4390 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x5e742ea8 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x5e79433f unregister_binfmt +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e8d8602 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea809ef sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x5ead5dbb vm_map_ram +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb562bb tcp_prot +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 0x5ed99e68 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5ef88eee ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5f00b27d sock_register +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f197aeb ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x5f1bb4be seq_escape +EXPORT_SYMBOL vmlinux 0x5f327553 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x5f480745 nf_log_unset +EXPORT_SYMBOL vmlinux 0x5f4b94a4 make_kgid +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x5f5eec51 simple_open +EXPORT_SYMBOL vmlinux 0x5f773e36 dquot_commit +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo +EXPORT_SYMBOL vmlinux 0x5fa20201 module_layout +EXPORT_SYMBOL vmlinux 0x5fb2314d try_to_release_page +EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fd1f893 generic_fadvise +EXPORT_SYMBOL vmlinux 0x5fd3518c dquot_resume +EXPORT_SYMBOL vmlinux 0x5fd45301 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x5fdad12f acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x5fe13529 __SCT__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601b545d bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x601ca6cb bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602591cf _dev_alert +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x6060b654 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x606f36aa jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x606f9606 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x60763003 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x6082e597 arp_tbl +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x60880f8a get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x608891bd tty_port_lower_dtr_rts +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 0x60a5c1a8 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x60b006b7 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60f07045 vga_get +EXPORT_SYMBOL vmlinux 0x61001be5 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612a3634 filemap_flush +EXPORT_SYMBOL vmlinux 0x612c4c9f input_setup_polling +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x6137099c __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x6140c17d pci_select_bars +EXPORT_SYMBOL vmlinux 0x614a33fe mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge +EXPORT_SYMBOL vmlinux 0x6179d977 skb_vlan_pop +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 0x61946802 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x619dfcdc intel_scu_ipc_dev_readv +EXPORT_SYMBOL vmlinux 0x61aea1b3 set_capacity +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61b8f1f4 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x61c94396 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x61ce05d6 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6258eef1 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x626a9b32 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62881493 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x628931a5 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x6298f629 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x6299230b mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62db09a2 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x62ee617b mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x62f24700 simple_empty +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x63015f02 key_type_keyring +EXPORT_SYMBOL vmlinux 0x6302b880 arp_send +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x6323cd06 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x6325312e configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x632db681 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x63619fc4 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps +EXPORT_SYMBOL vmlinux 0x6368c65c mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x636946ad get_vm_area +EXPORT_SYMBOL vmlinux 0x6383b27c __x86_indirect_thunk_rdx +EXPORT_SYMBOL vmlinux 0x639a48b1 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x63a040fd phy_connect_direct +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b79d5e set_disk_ro +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63c94a86 fc_release_transport +EXPORT_SYMBOL vmlinux 0x63dc9c24 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f835ba on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6420ef87 sock_no_connect +EXPORT_SYMBOL vmlinux 0x642f5a26 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x6436c382 kill_pgrp +EXPORT_SYMBOL vmlinux 0x64404d1e mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x645dfc3b mdio_device_register +EXPORT_SYMBOL vmlinux 0x6470ea1f dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x647aee6e __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64953af7 generic_writepages +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649d67fb jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x64a1cb7f sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64ab1712 register_cdrom +EXPORT_SYMBOL vmlinux 0x64b31b57 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c1f103 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x64d28e69 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x64e4a8cc input_enable_softrepeat +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 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6541261d sock_i_uid +EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop +EXPORT_SYMBOL vmlinux 0x65487097 __x86_indirect_thunk_rax +EXPORT_SYMBOL vmlinux 0x654e3bf7 legacy_pic +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x6577787d pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x659df6ae dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x65c5a535 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65da558f tty_driver_flush_buffer +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 0x65e169fe sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x65f0eb9a fsync_bdev +EXPORT_SYMBOL vmlinux 0x66017def may_umount +EXPORT_SYMBOL vmlinux 0x660bfca0 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x66107fa2 mr_table_dump +EXPORT_SYMBOL vmlinux 0x661fde19 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x662679a3 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x662b4325 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x6658ddeb input_set_capability +EXPORT_SYMBOL vmlinux 0x66594f0e xattr_full_name +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x6672331d tcp_connect +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x66a12134 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x66abd4d0 read_cache_pages +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66cca4f9 __x86_indirect_thunk_rcx +EXPORT_SYMBOL vmlinux 0x670ecece __x86_indirect_thunk_rbx +EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x67698cc3 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x676f115c kernel_getpeername +EXPORT_SYMBOL vmlinux 0x677c7b39 dst_alloc +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x679700fc jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x67979411 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x67a67991 sg_miter_start +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67b8188f __napi_schedule +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67c9312f xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x67d634cf end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x67e119fb request_key_rcu +EXPORT_SYMBOL vmlinux 0x67e28284 import_iovec +EXPORT_SYMBOL vmlinux 0x67e368a6 __nla_reserve +EXPORT_SYMBOL vmlinux 0x67fd591f build_skb_around +EXPORT_SYMBOL vmlinux 0x680a9114 simple_rename +EXPORT_SYMBOL vmlinux 0x680d3b0a dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer +EXPORT_SYMBOL vmlinux 0x682a081e unregister_console +EXPORT_SYMBOL vmlinux 0x68318cf3 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x685133a0 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x6861351f skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x6869fccb may_setattr +EXPORT_SYMBOL vmlinux 0x68771e5b scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x687ec04e tty_write_room +EXPORT_SYMBOL vmlinux 0x68872e43 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x68a5129a dev_set_threaded +EXPORT_SYMBOL vmlinux 0x68c4b824 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x68cc4d09 seq_putc +EXPORT_SYMBOL vmlinux 0x68e0815a devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x68e93b4d bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x68eca20e tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x690db539 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x690fbc22 blk_put_queue +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6936dfc1 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x69567de9 make_kuid +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697407f4 write_cache_pages +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x6988950f tty_kref_put +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x699a1ddc fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x699e1cea jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69cce97c dump_align +EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x69d5d6a8 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x69d78344 vc_resize +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e90511 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x69eb0199 user_path_create +EXPORT_SYMBOL vmlinux 0x69ef7f34 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x69f176e5 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a261b78 irq_stat +EXPORT_SYMBOL vmlinux 0x6a2ca2b5 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x6a2d3283 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a48f635 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x6a542508 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a7fb167 mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0x6a815c2f pci_find_bus +EXPORT_SYMBOL vmlinux 0x6a840e2a gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x6a87fe3c config_group_init +EXPORT_SYMBOL vmlinux 0x6a8b2073 vfs_create +EXPORT_SYMBOL vmlinux 0x6a915717 kill_fasync +EXPORT_SYMBOL vmlinux 0x6a9e7109 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aba29e2 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae0cbb5 ip_defrag +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b00c63a unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x6b0fa51f netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user +EXPORT_SYMBOL vmlinux 0x6b1395c1 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2a9f4c clear_nlink +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b30d1fc seq_printf +EXPORT_SYMBOL vmlinux 0x6b3bf2ca mr_dump +EXPORT_SYMBOL vmlinux 0x6b3d22b7 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x6b49677f vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b7721c6 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x6b849cf1 f_setown +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8b48a9 path_put +EXPORT_SYMBOL vmlinux 0x6b8b865c d_prune_aliases +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6bb28165 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x6bc1ed00 bdi_register +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6be808b8 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x6bff5e47 param_get_long +EXPORT_SYMBOL vmlinux 0x6c0f1645 config_item_get +EXPORT_SYMBOL vmlinux 0x6c0f1787 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x6c0fd173 blk_rq_map_user +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 0x6c32fb77 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x6c453c73 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x6c4f9641 input_get_keycode +EXPORT_SYMBOL vmlinux 0x6c5c3e4c __ps2_command +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c794218 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x6c8e206a sock_wmalloc +EXPORT_SYMBOL vmlinux 0x6c9b9bc7 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x6caacc75 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x6cb2f5a1 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d19df00 input_mt_get_slot_by_key +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 0x6d343251 simple_fill_super +EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d8fee5c ppp_register_channel +EXPORT_SYMBOL vmlinux 0x6d9c070c netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x6daf401e netif_napi_add +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 0x6ddbbd26 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6dff0126 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x6e048245 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x6e0ee25a peernet2id +EXPORT_SYMBOL vmlinux 0x6e18b949 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x6e239456 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x6e315b18 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e746f20 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x6e8b4288 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x6e9b360e shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eeb2c59 serio_bus +EXPORT_SYMBOL vmlinux 0x6f0230b5 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x6f03cac1 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x6f053e78 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x6f12a495 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x6f142822 textsearch_register +EXPORT_SYMBOL vmlinux 0x6f18e89a update_region +EXPORT_SYMBOL vmlinux 0x6f1d42b4 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f436a6c ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f5ee95b __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x6f6a0fa4 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x6f75e41f pci_get_class +EXPORT_SYMBOL vmlinux 0x6f83018b fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6f95ecd4 generic_write_end +EXPORT_SYMBOL vmlinux 0x6f961023 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x6f9f745f bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x6fa73bc2 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fb58bc5 input_unregister_device +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fbce9d4 bh_submit_read +EXPORT_SYMBOL vmlinux 0x6fc9a500 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fdaaa55 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x6fe1cda0 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x6fea09c7 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x6ff51ad4 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x6ffa61d7 skb_ext_add +EXPORT_SYMBOL vmlinux 0x6ffd68ff dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x700bf975 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x700d0486 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x70152cb0 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x701602af __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x7017d408 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x7037e0af validate_slab_cache +EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x7083626a set_blocksize +EXPORT_SYMBOL vmlinux 0x708e3521 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x70908bf1 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x70922ae4 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70bf4c09 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x70cfee34 file_update_time +EXPORT_SYMBOL vmlinux 0x70ddefb9 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x70ead413 tcp_close +EXPORT_SYMBOL vmlinux 0x70f4d14b __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x7109d49b notify_change +EXPORT_SYMBOL vmlinux 0x711c16e5 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x711ffa45 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7130838e fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x71314a9f xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x71372033 wireless_send_event +EXPORT_SYMBOL vmlinux 0x7144e016 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x7162c85f sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x718a4693 __SCT__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x718d5256 d_exact_alias +EXPORT_SYMBOL vmlinux 0x719a3b2c dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x719a89f8 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71ab8f2e kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x71b006f6 bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x71cbaf34 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x720571e4 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x7209ddd1 tso_build_data +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x7224865e from_kuid +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x726c7205 dev_mc_add +EXPORT_SYMBOL vmlinux 0x72874207 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x72971b7f __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x729d2a35 stop_tty +EXPORT_SYMBOL vmlinux 0x72afc305 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72d79d83 pgdir_shift +EXPORT_SYMBOL vmlinux 0x72e9450e agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72eaba39 ip6_xmit +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x72f5ba9d is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x731ed915 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x732d934b pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x736f4a50 agp_copy_info +EXPORT_SYMBOL vmlinux 0x737e6d1e vfio_register_notifier +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x7383f72b skb_expand_head +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73bc5522 kobject_add +EXPORT_SYMBOL vmlinux 0x73caf137 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x73d6a005 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0x73d7a871 _dev_emerg +EXPORT_SYMBOL vmlinux 0x73db9f34 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73e4c181 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x74004d57 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x74276fe2 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x743eeab4 setup_new_exec +EXPORT_SYMBOL vmlinux 0x7445a4cd security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x7452a9e5 kern_path +EXPORT_SYMBOL vmlinux 0x7452fe81 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x7463e2d9 register_console +EXPORT_SYMBOL vmlinux 0x746a8357 seq_puts +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x747fdbec neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x74a5fb68 keyring_clear +EXPORT_SYMBOL vmlinux 0x74a81128 misc_deregister +EXPORT_SYMBOL vmlinux 0x74b56d10 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c6402c fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e7847e pv_ops +EXPORT_SYMBOL vmlinux 0x74eae332 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x74fd4509 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x750cfa7f netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x750e8d0e path_has_submounts +EXPORT_SYMBOL vmlinux 0x751a5ea6 __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0x7530bb0c __SCT__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x75466f95 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x754a10e7 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x754c0855 iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x75503190 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x7586b966 generic_setlease +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock +EXPORT_SYMBOL vmlinux 0x75a1464c mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x75a8e3dc fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75cb9bc9 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x75cfeaa7 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d30d68 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75dc511f inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x75e247de dcache_dir_open +EXPORT_SYMBOL vmlinux 0x75eda4d3 proto_unregister +EXPORT_SYMBOL vmlinux 0x75f5fd81 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7610ea9b md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x7628dce0 blkdev_put +EXPORT_SYMBOL vmlinux 0x762b085d regset_get +EXPORT_SYMBOL vmlinux 0x76450226 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766243be jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x76748ecf d_delete +EXPORT_SYMBOL vmlinux 0x767d3a4f devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x769adb6d fb_find_mode +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76ae1e7b sk_net_capable +EXPORT_SYMBOL vmlinux 0x76c883cf unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x76c978ba mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x76d0aebb tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76e220e3 keyring_search +EXPORT_SYMBOL vmlinux 0x76f83c74 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x77132a8e nf_getsockopt +EXPORT_SYMBOL vmlinux 0x7720ff07 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x77223ed3 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x7732e27b eth_gro_complete +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773cb5e4 pci_iomap +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 +EXPORT_SYMBOL vmlinux 0x7770f249 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x77724461 seq_read_iter +EXPORT_SYMBOL vmlinux 0x77770eea ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x777a47ff override_creds +EXPORT_SYMBOL vmlinux 0x778898ac vme_register_driver +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x77af84c0 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d6b489 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f1ec78 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x77f3bfe1 cdev_alloc +EXPORT_SYMBOL vmlinux 0x77fc86e3 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x782d1b60 sk_alloc +EXPORT_SYMBOL vmlinux 0x7834defd vfio_group_unpin_pages +EXPORT_SYMBOL vmlinux 0x7834f917 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x7847ffcd __skb_pad +EXPORT_SYMBOL vmlinux 0x784fd7a6 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x786628e6 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x78778431 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7895138c __sock_i_ino +EXPORT_SYMBOL vmlinux 0x789724be simple_unlink +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78b6ebd5 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78c54e12 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x78d7e16e ip_do_fragment +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78f80e39 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x78fb8f2c filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x78fbe175 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x791295c4 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x791e7f80 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x79630a4f __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x796f4b46 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin +EXPORT_SYMBOL vmlinux 0x7973a0c7 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x79866826 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x7988f8c7 __devm_request_region +EXPORT_SYMBOL vmlinux 0x79987435 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa2685 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x79ac1665 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x79b4afbe vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x79baca59 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted +EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a0c1f43 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x7a1630fc find_vma +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a3525dc xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x7a489421 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x7a4a3315 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x7a4b7a24 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x7a4fde3c dcache_readdir +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a6c39d6 dev_set_group +EXPORT_SYMBOL vmlinux 0x7a7886d9 kernel_listen +EXPORT_SYMBOL vmlinux 0x7a7b511b cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab45d25 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abaf458 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adac406 elv_rb_add +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae482a6 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x7b259b31 dev_add_pack +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b3f8d69 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b63751b ll_rw_block +EXPORT_SYMBOL vmlinux 0x7b71d85b flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7bb32184 __acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bc3c401 locks_init_lock +EXPORT_SYMBOL vmlinux 0x7bc9fb6a nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x7bca328d xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x7bd74727 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x7be569ad xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x7bfc159f pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1c2a50 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x7c2137d9 genphy_read_status +EXPORT_SYMBOL vmlinux 0x7c281ce2 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c545791 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x7c56dff5 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x7c9237ba mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cfbfb2d blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d4e14c6 d_add +EXPORT_SYMBOL vmlinux 0x7d4fc45a dev_deactivate +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio +EXPORT_SYMBOL vmlinux 0x7d678dbf inet_register_protosw +EXPORT_SYMBOL vmlinux 0x7d6c5e1a refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d8514de component_match_add_release +EXPORT_SYMBOL vmlinux 0x7da6b4f4 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x7dac2f7d tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7db523fc vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x7dbd7a4b security_d_instantiate +EXPORT_SYMBOL vmlinux 0x7dc25b5d key_validate +EXPORT_SYMBOL vmlinux 0x7dc561c9 seq_path +EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfd5344 d_set_d_op +EXPORT_SYMBOL vmlinux 0x7e161cb0 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x7e185330 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e40af58 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x7e50260c vfs_getattr +EXPORT_SYMBOL vmlinux 0x7e51a7bd serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x7e560d07 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x7e627876 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x7e6c9ed4 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x7e87373e dm_unregister_target +EXPORT_SYMBOL vmlinux 0x7e8fef88 security_path_mknod +EXPORT_SYMBOL vmlinux 0x7ea40c9f bmap +EXPORT_SYMBOL vmlinux 0x7eb1009c __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x7ebc99ce tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x7ed18455 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x7ed85ef7 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x7ef26405 pci_clear_mwi +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 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f26c8b9 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x7f415634 fget +EXPORT_SYMBOL vmlinux 0x7f431215 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x7f51f8f5 kill_litter_super +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f7805c9 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f80ead1 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x7f8951f4 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x7fb8b101 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x7fd4f63b __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x7fd988ec sock_rfree +EXPORT_SYMBOL vmlinux 0x7fdf59e2 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe6d854 mdio_find_bus +EXPORT_SYMBOL vmlinux 0x7ff6eb7a inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x7ff8187f sock_setsockopt +EXPORT_SYMBOL vmlinux 0x7ffc9b73 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x80034145 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x80249bbc splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x8031a28f ps2_command +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x803f5878 fb_show_logo +EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x8057cb9c blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x805f9834 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80a3420b vga_con +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80acd934 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x80b70f61 set_bdi_congested +EXPORT_SYMBOL vmlinux 0x80c302ea __block_write_full_page +EXPORT_SYMBOL vmlinux 0x80c4a850 mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d5e49d __frontswap_test +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d81921 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x80dbbeb1 phy_connect +EXPORT_SYMBOL vmlinux 0x80e5e6c5 iget_failed +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80f5127c tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x81124a61 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x814d3373 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x81601482 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command +EXPORT_SYMBOL vmlinux 0x816d2265 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x817ddb8e dec_node_page_state +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x81997f93 __break_lease +EXPORT_SYMBOL vmlinux 0x81a2b6a8 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x81bb9e5a rt6_lookup +EXPORT_SYMBOL vmlinux 0x81c76d65 no_llseek +EXPORT_SYMBOL vmlinux 0x81ce9941 intel_scu_ipc_dev_writev +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81dc9d80 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x820113fe __post_watch_notification +EXPORT_SYMBOL vmlinux 0x8214fab7 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x8225f4b1 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x8233a0ea remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked +EXPORT_SYMBOL vmlinux 0x823dda69 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x8271ca1f mode_strip_sgid +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82a6dd1d inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x82a70d3b inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x82ab3baf scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x82bb0350 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82d692a5 param_get_hexint +EXPORT_SYMBOL vmlinux 0x82e416d3 vfs_link +EXPORT_SYMBOL vmlinux 0x82e94b10 stream_open +EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync +EXPORT_SYMBOL vmlinux 0x82fd77fb ps2_begin_command +EXPORT_SYMBOL vmlinux 0x830dc9f2 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x830f08ae iommu_put_dma_cookie +EXPORT_SYMBOL vmlinux 0x8316cb5f security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x832b4ee6 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x832fd785 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x83376585 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x833e1c6e xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x834236cc udp_seq_next +EXPORT_SYMBOL vmlinux 0x8352d831 set_binfmt +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x8366d16f input_free_device +EXPORT_SYMBOL vmlinux 0x836d9886 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x8372c22c to_nd_pfn +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x83ae00b5 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x83bf9779 proc_set_size +EXPORT_SYMBOL vmlinux 0x83d5704e ip6_frag_next +EXPORT_SYMBOL vmlinux 0x83da1064 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x83e01ff8 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x83e034ea scsi_remove_device +EXPORT_SYMBOL vmlinux 0x83e5a696 netif_rx_any_context +EXPORT_SYMBOL vmlinux 0x83f5264e is_bad_inode +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x8425ff39 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 +EXPORT_SYMBOL vmlinux 0x8446454e bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x84497605 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x8452498a mdio_device_reset +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x8459b241 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x8460dc1a genphy_resume +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c2aae2 generic_listxattr +EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x84c4f080 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x84c874a9 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x84e3193c set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x84f3f506 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x850f7675 generic_permission +EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8522d6bc strncpy_from_user +EXPORT_SYMBOL vmlinux 0x8542517a dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x85449184 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x8546d570 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x8554fb9e fs_bio_set +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c008ce seq_release +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x86096601 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x86172953 skb_tx_error +EXPORT_SYMBOL vmlinux 0x86277695 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x862ab74b scsi_host_busy +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x864968eb kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x864d8e60 config_group_find_item +EXPORT_SYMBOL vmlinux 0x86604346 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x8692bd0a migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x86a24535 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x86a70063 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x86abb31b scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x86bc2f7e page_pool_create +EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86d9e96b elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x86e41fb3 flow_rule_match_eth_addrs +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 0x8706e766 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x870cdd44 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x8714563b csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x872d5282 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x872ee493 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x8752fe0a tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x8763ab58 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x87706d4e __put_user_nocheck_8 +EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x8789446f rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87a5ebe3 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x87b44333 inode_init_once +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87db5b18 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x87e16a69 iget_locked +EXPORT_SYMBOL vmlinux 0x87eb959e nf_ct_attach +EXPORT_SYMBOL vmlinux 0x87fb7f72 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x8804e44a tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x88113422 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x881a01c9 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x881ab28e netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x881c99a6 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x8829e7c8 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x88434ca7 xfrm4_udp_encap_rcv +EXPORT_SYMBOL vmlinux 0x887e9491 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8882fa46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x88855c33 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x888b2cc4 md_write_end +EXPORT_SYMBOL vmlinux 0x8896d8b7 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x88a946b5 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x88bbde3e mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x88d7c9b2 vm_mmap +EXPORT_SYMBOL vmlinux 0x88db5764 pnp_is_active +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88ddeb51 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88ef0ab4 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x88f02581 sock_alloc +EXPORT_SYMBOL vmlinux 0x88f87686 ip6_mtu +EXPORT_SYMBOL vmlinux 0x89158220 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x8923471c fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x893811b2 backlight_force_update +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x89535590 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x89899ef2 __icmp_send +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x8998d9de dev_trans_start +EXPORT_SYMBOL vmlinux 0x89c2a2bb flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x89c48050 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x89ccff3f __destroy_inode +EXPORT_SYMBOL vmlinux 0x89d7d2a2 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x89dda6e1 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x89deacfa user_revoke +EXPORT_SYMBOL vmlinux 0x89e237a7 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x89ee351d phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x89f441f8 sock_no_getname +EXPORT_SYMBOL vmlinux 0x8a15f5fe pci_choose_state +EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask +EXPORT_SYMBOL vmlinux 0x8a440620 netpoll_setup +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a6c42e4 nonseekable_open +EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa3b6df __d_lookup_done +EXPORT_SYMBOL vmlinux 0x8aa9d422 param_ops_uint +EXPORT_SYMBOL vmlinux 0x8abf6890 nobh_write_end +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8ac9b79c pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x8ae82d22 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x8afc196f dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0x8b0aee11 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x8b15d4f5 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x8b1c1ad0 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x8b1c6d30 blk_get_request +EXPORT_SYMBOL vmlinux 0x8b3218f7 scsi_partsize +EXPORT_SYMBOL vmlinux 0x8b3af83e input_close_device +EXPORT_SYMBOL vmlinux 0x8b3e0702 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x8b48705f d_instantiate_new +EXPORT_SYMBOL vmlinux 0x8b4d0e7e flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b63e89a alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x8b67a240 is_nd_btt +EXPORT_SYMBOL vmlinux 0x8b7492ef file_open_root +EXPORT_SYMBOL vmlinux 0x8b8026da arp_create +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b892f74 d_obtain_root +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b966b63 sn_rtc_cycles_per_second +EXPORT_SYMBOL vmlinux 0x8b96d255 follow_pfn +EXPORT_SYMBOL vmlinux 0x8b9757b5 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8ba984e6 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x8babb65a phy_read_mmd +EXPORT_SYMBOL vmlinux 0x8bb69742 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x8bbea1f1 dma_find_channel +EXPORT_SYMBOL vmlinux 0x8bc27a1b pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x8bd48a4d agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit +EXPORT_SYMBOL vmlinux 0x8bde7e18 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x8bde85f7 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8be16871 km_report +EXPORT_SYMBOL vmlinux 0x8bf332c1 tso_start +EXPORT_SYMBOL vmlinux 0x8c1e1739 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c3bde6c mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x8c62a50d del_gendisk +EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8c73b74b ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x8c7611e7 __fs_parse +EXPORT_SYMBOL vmlinux 0x8c7ad2e0 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8ca67f48 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x8cad4299 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cbf9814 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cc9796b fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x8cce7cb5 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x8cd850d4 register_filesystem +EXPORT_SYMBOL vmlinux 0x8d02c19d tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x8d03be0b set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x8d0cca38 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x8d0fe93f simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x8d1f773f skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x8d2fd46c pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d55de08 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x8d5aec4d netpoll_poll_disable +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 0x8d922e9f finish_swait +EXPORT_SYMBOL vmlinux 0x8d9a9f0b send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8da97e9a simple_setattr +EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x8db73e17 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x8dbef264 agp_create_memory +EXPORT_SYMBOL vmlinux 0x8dd67ef1 phy_get_pause +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8ddf062e seq_file_path +EXPORT_SYMBOL vmlinux 0x8deb2e83 dst_discard_out +EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e04cd0d file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e1be5d4 simple_statfs +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e221ea1 netdev_crit +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e5bbe9a md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x8e5c0c62 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x8e637845 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x8e663d0f zalloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x8e7718c3 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x8e7c5ed8 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8e947ae5 bio_split +EXPORT_SYMBOL vmlinux 0x8e95c580 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x8ea2851e __register_nls +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ed79c30 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x8ee0d726 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x8ef2b0b3 cdev_device_del +EXPORT_SYMBOL vmlinux 0x8ef90593 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x8f003ad0 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f4024bb scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x8f5ddd1d single_release +EXPORT_SYMBOL vmlinux 0x8f6607fb ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0x8f9908df blk_mq_kick_requeue_list +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 0x8fbad402 phy_print_status +EXPORT_SYMBOL vmlinux 0x8fbc68c9 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x8fc08b95 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x8fc17fd1 pci_release_region +EXPORT_SYMBOL vmlinux 0x8fcc8ee0 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x8fd1f3c9 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds +EXPORT_SYMBOL vmlinux 0x8fde6d8a xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x8fe1e69c netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x9025718f pnp_register_driver +EXPORT_SYMBOL vmlinux 0x902a4344 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x90377399 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x903fcecd jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x90461f98 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x905a4a23 nf_log_register +EXPORT_SYMBOL vmlinux 0x90605d82 generic_fillattr +EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override +EXPORT_SYMBOL vmlinux 0x909cde01 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0x90afcded phy_attached_print +EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp +EXPORT_SYMBOL vmlinux 0x90e4a79a sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x911182fa jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x9115ff38 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x9138a351 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x913dfcfb tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x914c7224 mount_bdev +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x916fd4e7 md_error +EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0x917af202 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a10c61 intel_scu_ipc_dev_simple_command +EXPORT_SYMBOL vmlinux 0x91a250d0 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91bb26c6 con_is_visible +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91c845c7 keyring_alloc +EXPORT_SYMBOL vmlinux 0x91d166b0 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x91e3e28f thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x91e8e1bf cfb_copyarea +EXPORT_SYMBOL vmlinux 0x91ef2624 single_open_size +EXPORT_SYMBOL vmlinux 0x91f33915 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x920b6d6d pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x9217cded scmd_printk +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92520cff tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x925f9a5f seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x92657970 wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0x9271d4f0 unregister_key_type +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x929d0283 gro_cells_init +EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw +EXPORT_SYMBOL vmlinux 0x92b30076 inet_shutdown +EXPORT_SYMBOL vmlinux 0x92b520a7 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c3f8f0 param_set_long +EXPORT_SYMBOL vmlinux 0x92cfef15 seq_lseek +EXPORT_SYMBOL vmlinux 0x92d027fc fiemap_prep +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92e42d0a pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92fa00e4 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fade3b task_work_add +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9303b46a fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931909d6 device_add_disk +EXPORT_SYMBOL vmlinux 0x93396a2e nf_reinject +EXPORT_SYMBOL vmlinux 0x93580e47 kernel_accept +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93980930 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x93a2393c blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93d02936 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x93ed371b __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x944ac22e dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x94581a24 proc_mkdir +EXPORT_SYMBOL vmlinux 0x945f7552 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x94603a2c __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x947a9078 eth_header +EXPORT_SYMBOL vmlinux 0x947ed5e7 sync_blockdev +EXPORT_SYMBOL vmlinux 0x94877a51 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable +EXPORT_SYMBOL vmlinux 0x948df40f phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x94902d45 follow_down_one +EXPORT_SYMBOL vmlinux 0x9492248f pci_dev_put +EXPORT_SYMBOL vmlinux 0x9493fc86 node_states +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a17c86 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x94a2464f tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x94b227a6 inode_permission +EXPORT_SYMBOL vmlinux 0x94bab9e4 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bddc18 key_put +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94cdf22f xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x94e22e0a inet_release +EXPORT_SYMBOL vmlinux 0x94e43568 touch_atime +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x94e8f0d7 netdev_emerg +EXPORT_SYMBOL vmlinux 0x94f3ffee poll_initwait +EXPORT_SYMBOL vmlinux 0x94f60007 dquot_file_open +EXPORT_SYMBOL vmlinux 0x94ffd226 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x950d7ff4 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x952707de ip_getsockopt +EXPORT_SYMBOL vmlinux 0x952b675e security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x952c5837 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x9537c1eb serio_interrupt +EXPORT_SYMBOL vmlinux 0x95397539 vga_client_register +EXPORT_SYMBOL vmlinux 0x953edf04 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x954534d1 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x955e345b sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x95732353 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x95817a9c scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x95920c38 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x95a42a0b truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95bc6cb1 get_watch_queue +EXPORT_SYMBOL vmlinux 0x95bd22b5 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x95c0d808 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x95caac34 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x96050dc8 __next_node_in +EXPORT_SYMBOL vmlinux 0x96100133 netdev_update_features +EXPORT_SYMBOL vmlinux 0x96187721 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add +EXPORT_SYMBOL vmlinux 0x964553a2 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9685615c nd_device_notify +EXPORT_SYMBOL vmlinux 0x96995e3d xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x96a81535 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96c400e3 vm_insert_pages +EXPORT_SYMBOL vmlinux 0x96c7d648 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d23108 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x96e2b6bd vfio_unregister_notifier +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 0x970cd192 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x9720c17c phy_resume +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x97450e14 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x974e54d6 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x97633be3 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base +EXPORT_SYMBOL vmlinux 0x9786b122 phy_detach +EXPORT_SYMBOL vmlinux 0x979860e8 cont_write_begin +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97bbcfdb get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97c1f87b __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x97d2d2b1 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds +EXPORT_SYMBOL vmlinux 0x97f85bbc md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x97f9901c configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x98026ff7 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x9817f6d9 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x981b07db genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x9821f4b9 d_tmpfile +EXPORT_SYMBOL vmlinux 0x982615b1 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982df976 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x984c2c35 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x9856b577 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x9872a719 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x9876a35e vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x98a5f6b0 rtnl_notify +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c2ec9c blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x98c6d85a nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98f1e806 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x98feeb94 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x99013999 kernel_connect +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x9908648a textsearch_prepare +EXPORT_SYMBOL vmlinux 0x990c0edb nf_log_packet +EXPORT_SYMBOL vmlinux 0x990dd081 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x990f6794 inet6_bind +EXPORT_SYMBOL vmlinux 0x9918ba96 param_get_short +EXPORT_SYMBOL vmlinux 0x9933d77c dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x9934b3ed skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x993553a8 __d_drop +EXPORT_SYMBOL vmlinux 0x993740f3 ip_tunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99562812 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x995dfe13 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x9961b8db __SCK__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x997f4d3f blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a2a376 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x99a60da5 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x99b5a487 consume_skb +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e48410 bio_copy_data +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 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a3f5523 cdev_device_add +EXPORT_SYMBOL vmlinux 0x9a547f6e blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x9a57704d sget +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9a815bf9 mntput +EXPORT_SYMBOL vmlinux 0x9a83ffd3 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x9aa7e4b3 simple_write_begin +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired +EXPORT_SYMBOL vmlinux 0x9ad7b283 inet_frags_init +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9af12c61 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x9afe6ae3 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x9b110ca1 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x9b117685 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x9b22d268 __invalidate_device +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b6f4acc dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b748c81 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x9ba81cc4 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x9bb0a694 pps_event +EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be +EXPORT_SYMBOL vmlinux 0x9bc1f202 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x9bd35f21 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x9be45414 param_set_charp +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c131853 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x9c1e53fa pps_register_source +EXPORT_SYMBOL vmlinux 0x9c2025e8 proto_register +EXPORT_SYMBOL vmlinux 0x9c20f015 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x9c2545f2 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x9c298331 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x9c3a8bcc jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x9c40cf65 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x9c517e38 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x9c58f7f0 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x9c5f762f generic_ro_fops +EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x9c80059a md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c880071 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base +EXPORT_SYMBOL vmlinux 0x9cc19323 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x9cca25c8 fb_blank +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ced41ad __SCT__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0x9cff52a7 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x9d023783 vfs_readlink +EXPORT_SYMBOL vmlinux 0x9d03d201 agp_bridge +EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x9d0a3061 amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d2fb1fb agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x9d3c6b39 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x9d47a797 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl +EXPORT_SYMBOL vmlinux 0x9d85a9b3 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context +EXPORT_SYMBOL vmlinux 0x9da46928 put_cmsg +EXPORT_SYMBOL vmlinux 0x9db272ea sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x9dbc2982 from_kgid +EXPORT_SYMBOL vmlinux 0x9dd87b5f irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x9dfd3007 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0c9e9a nvdimm_namespace_detach_btt +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e1361f2 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e168c6b simple_get_link +EXPORT_SYMBOL vmlinux 0x9e188073 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x9e1ae492 __sock_create +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e3993c4 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x9e449fab nd_dax_probe +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e58b03b always_delete_dentry +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x9e6e161e tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x9e7c42f3 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e800e75 unlock_rename +EXPORT_SYMBOL vmlinux 0x9e80d9b5 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x9e87c9b5 __lock_buffer +EXPORT_SYMBOL vmlinux 0x9e94f640 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea35e73 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x9ea52a20 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x9ea79aab __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9ee0b455 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x9eede915 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x9ef0850d __alloc_disk_node +EXPORT_SYMBOL vmlinux 0x9ef0eee7 __SCT__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x9ef14c60 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x9f064a48 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x9f1a539e icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x9f1ae846 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x9f2b357a inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x9f2bc82a poll_freewait +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f5dfe08 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x9f6d34bb dump_skip_to +EXPORT_SYMBOL vmlinux 0x9f7d8256 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x9f852f04 ilookup5 +EXPORT_SYMBOL vmlinux 0x9f86f268 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x9f975c93 noop_fsync +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb0c954 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x9fd3cfb7 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x9fddb05c i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe9d202 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x9feacba7 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ff64537 clk_add_alias +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa0017144 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa00c0406 vfs_unlink +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa01e6c06 ip6_dst_check +EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa02fa0d3 sget_fc +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa0466b36 cdrom_release +EXPORT_SYMBOL vmlinux 0xa0527293 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xa058b897 serio_rescan +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa05bf4d2 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xa05ed2e8 pci_find_next_bus +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 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa098cc8e tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xa0a169ed acpi_register_debugger +EXPORT_SYMBOL vmlinux 0xa0a33ffb md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xa0a79dfa console_start +EXPORT_SYMBOL vmlinux 0xa0abc23b phy_suspend +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +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 0xa0f3e11e fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0fe54d2 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xa1041721 ip_frag_next +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa116a794 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xa12e1403 netdev_state_change +EXPORT_SYMBOL vmlinux 0xa13e780a gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xa14597e9 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xa159e7cf pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xa15ff3a9 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0xa177ef89 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xa192eda4 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xa19cebfb vfs_mkdir +EXPORT_SYMBOL vmlinux 0xa1a32f5c freeze_bdev +EXPORT_SYMBOL vmlinux 0xa1abc8e1 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters +EXPORT_SYMBOL vmlinux 0xa1bf7bf6 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa2078508 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xa225593a fs_param_is_path +EXPORT_SYMBOL vmlinux 0xa2294708 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa23de832 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa252a7a0 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2705865 skb_checksum +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa28d558a ip_ct_attach +EXPORT_SYMBOL vmlinux 0xa2b400c1 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xa2ba0ea3 put_watch_queue +EXPORT_SYMBOL vmlinux 0xa2c77418 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xa2d052a7 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xa2edd303 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xa31602c8 fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0xa336940f xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xa3535e6a kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa3537298 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xa363c4e1 genlmsg_put +EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga +EXPORT_SYMBOL vmlinux 0xa3906098 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xa39286f0 iget5_locked +EXPORT_SYMBOL vmlinux 0xa39e1c12 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xa3b6c0d8 kobject_del +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3c1bd16 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3dd3f9f param_ops_long +EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger +EXPORT_SYMBOL vmlinux 0xa3e9ec4b nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xa3f2097d vfs_get_tree +EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa4048e43 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xa406095a dget_parent +EXPORT_SYMBOL vmlinux 0xa406215f nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xa40a39cc dquot_quota_on +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa4123261 param_set_hexint +EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io +EXPORT_SYMBOL vmlinux 0xa41edc25 acpi_device_hid +EXPORT_SYMBOL vmlinux 0xa4267773 proc_symlink +EXPORT_SYMBOL vmlinux 0xa436de15 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xa474e4fd sock_release +EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction +EXPORT_SYMBOL vmlinux 0xa47fdfa6 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xa481583b napi_get_frags +EXPORT_SYMBOL vmlinux 0xa487fb82 set_cached_acl +EXPORT_SYMBOL vmlinux 0xa49fed9d phy_find_first +EXPORT_SYMBOL vmlinux 0xa4b47ea8 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c41e6a phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xa4c6afdf kset_unregister +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4f009d3 param_get_invbool +EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xa509ae83 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit +EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0xa51061f7 build_skb +EXPORT_SYMBOL vmlinux 0xa52047aa kern_path_create +EXPORT_SYMBOL vmlinux 0xa53a07d7 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xa53ee82b flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xa54c3e63 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5855016 uart_match_port +EXPORT_SYMBOL vmlinux 0xa58792c9 alloc_pages_vma +EXPORT_SYMBOL vmlinux 0xa5898e13 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xa591943c netif_rx_ni +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0xa5b1b110 param_get_byte +EXPORT_SYMBOL vmlinux 0xa5c12eaf ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xa5cce978 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0xa5daa5ca genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xa5dc9f96 __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa5e50fc8 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xa5f9e181 km_query +EXPORT_SYMBOL vmlinux 0xa605637c pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa627ad43 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xa63f40ee generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa6529938 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xa65ef30d udp_disconnect +EXPORT_SYMBOL vmlinux 0xa664bd74 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xa6744a7f inode_set_flags +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6853398 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xa6a5f667 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0xa6a77298 pci_resize_resource +EXPORT_SYMBOL vmlinux 0xa6be2b27 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xa6c63fca tcp_make_synack +EXPORT_SYMBOL vmlinux 0xa6cb8e4f _dev_printk +EXPORT_SYMBOL vmlinux 0xa6dfb144 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xa706e63c km_state_notify +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa71202ef unix_detach_fds +EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt +EXPORT_SYMBOL vmlinux 0xa72dd6ad napi_build_skb +EXPORT_SYMBOL vmlinux 0xa733feb9 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xa7486947 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa75a489f skb_copy +EXPORT_SYMBOL vmlinux 0xa76275a4 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa77f536f _dev_notice +EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 +EXPORT_SYMBOL vmlinux 0xa793a7b9 rtc_add_groups +EXPORT_SYMBOL vmlinux 0xa796679d __SCT__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xa79af98d ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xa7a38f35 pci_release_regions +EXPORT_SYMBOL vmlinux 0xa7bafa91 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xa7be8733 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7da0355 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xa7dd72b3 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xa7df2e29 dquot_get_state +EXPORT_SYMBOL vmlinux 0xa7edd509 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa818e5d5 input_allocate_device +EXPORT_SYMBOL vmlinux 0xa827b7d4 padata_free +EXPORT_SYMBOL vmlinux 0xa836226e component_match_add_typed +EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xa838d992 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8463aa6 qdisc_reset +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 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa88b23e8 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa8987a2c scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa89b20ca dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xa8ba1bd4 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xa8c5acc9 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8d4b181 softnet_data +EXPORT_SYMBOL vmlinux 0xa8e32bc9 __put_page +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8e80eac sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa9207e00 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa931af8a asm_load_gs_index +EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa94f9c8e kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa973f515 __serio_register_port +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map +EXPORT_SYMBOL vmlinux 0xa97aae3b give_up_console +EXPORT_SYMBOL vmlinux 0xa988e361 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xa9930fd1 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0xa9cc052d wake_up_process +EXPORT_SYMBOL vmlinux 0xa9efba65 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xa9f660a9 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xa9f9f90b __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa40a789 load_nls_default +EXPORT_SYMBOL vmlinux 0xaa44a707 cpumask_next +EXPORT_SYMBOL vmlinux 0xaa4bd4d3 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xaa559ffc iterate_supers_type +EXPORT_SYMBOL vmlinux 0xaa611dd1 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7217fa inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xaa7ee3cb acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0xaa943d36 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa85290 vlan_filter_drop_vids +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 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab29af89 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab41f0a8 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0xab53255d proc_create_data +EXPORT_SYMBOL vmlinux 0xab59be9f fc_find_rport_by_wwpn +EXPORT_SYMBOL vmlinux 0xab5c2a10 key_link +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab64514e netlink_capable +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab6bfadc sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab72c39a xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab78dd5a PDE_DATA +EXPORT_SYMBOL vmlinux 0xab7a60a1 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xab8fdec1 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xab960368 tty_lock +EXPORT_SYMBOL vmlinux 0xab9ea418 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xab9f83b9 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xabae97d2 __ip_options_compile +EXPORT_SYMBOL vmlinux 0xabb811f2 skb_copy_header +EXPORT_SYMBOL vmlinux 0xabcc0d4b register_quota_format +EXPORT_SYMBOL vmlinux 0xabd22acb netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xabe10722 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xabefec7b nobh_write_begin +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac07dc37 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xac10dfc1 migrate_page +EXPORT_SYMBOL vmlinux 0xac14e3de dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac3f4626 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xac404a25 open_exec +EXPORT_SYMBOL vmlinux 0xac4353b4 is_nd_pfn +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5ce5d5 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xac5ea3a7 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac612e90 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xac6c6a60 security_unix_may_send +EXPORT_SYMBOL vmlinux 0xac81b69e csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacccdf66 skb_find_text +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xacdfc6b4 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xacf6a771 ip_tunnel_get_link_net +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0a0038 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode +EXPORT_SYMBOL vmlinux 0xad3457f7 page_mapped +EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad3f5648 cdev_del +EXPORT_SYMBOL vmlinux 0xad4d5316 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid +EXPORT_SYMBOL vmlinux 0xad55f3a6 mount_subtree +EXPORT_SYMBOL vmlinux 0xad597a2c redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad771253 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xad85242c agp_backend_release +EXPORT_SYMBOL vmlinux 0xad8663b0 __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xada33449 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xada475bb dcb_getapp +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadb31dd0 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL vmlinux 0xadc6b0b1 pci_restore_state +EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadf5fca9 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae02bfdf prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae1c8a48 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xae1d970c agp_free_memory +EXPORT_SYMBOL vmlinux 0xae209642 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae449593 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xae53564a pci_assign_resource +EXPORT_SYMBOL vmlinux 0xae58e98a bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae8ec2f9 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xae9364a6 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xae9f2133 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeacbb45 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xaeb0476e pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaed1fc0d scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xaf0ea8c8 inet6_release +EXPORT_SYMBOL vmlinux 0xaf354bbe cpu_tss_rw +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf3e703a fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xaf5bc118 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xaf6c6c4f nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xaf96973a set_pages_array_wb +EXPORT_SYMBOL vmlinux 0xaf9d775a reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xafb233c3 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xafb7bd42 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xafd744c6 __x86_indirect_thunk_rbp +EXPORT_SYMBOL vmlinux 0xafd9a43d fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb028eda9 mdio_driver_register +EXPORT_SYMBOL vmlinux 0xb02df2d6 __traceiter_rdpmc +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats +EXPORT_SYMBOL vmlinux 0xb05dd661 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb06da6b0 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xb06dac39 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xb06ddb25 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xb083e968 pci_enable_wake +EXPORT_SYMBOL vmlinux 0xb08c07ee mdio_device_create +EXPORT_SYMBOL vmlinux 0xb09f9359 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0ce5adc pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xb0dd9598 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize +EXPORT_SYMBOL vmlinux 0xb0f7d826 md_check_recovery +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb10f0075 dcb_setapp +EXPORT_SYMBOL vmlinux 0xb119b1ee skb_copy_bits +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb12ef8c9 dm_get_device +EXPORT_SYMBOL vmlinux 0xb1316039 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xb1363537 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xb148a6fa __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work +EXPORT_SYMBOL vmlinux 0xb15f4769 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xb1737ba6 current_task +EXPORT_SYMBOL vmlinux 0xb193b40f acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xb19c577e page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0xb1ad787f set_posix_acl +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug +EXPORT_SYMBOL vmlinux 0xb1d47dfe phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xb1d63663 posix_lock_file +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb2086288 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xb2125dc5 scsi_done +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +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 0xb23a2bc0 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0xb24156e8 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0xb25eedd1 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xb2601486 __SCT__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xb287113c md_flush_request +EXPORT_SYMBOL vmlinux 0xb287f78b jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xb2979225 param_get_ullong +EXPORT_SYMBOL vmlinux 0xb2a48b5d seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xb2b88398 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2c96edc convert_art_ns_to_tsc +EXPORT_SYMBOL vmlinux 0xb2cc8256 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xb2d2a929 netlink_unicast +EXPORT_SYMBOL vmlinux 0xb2dfdf3c kset_register +EXPORT_SYMBOL vmlinux 0xb2eb334d devfreq_update_status +EXPORT_SYMBOL vmlinux 0xb2ec4b93 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +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 0xb30356ad filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb3229504 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0xb32a5973 acpi_ut_status_exit +EXPORT_SYMBOL vmlinux 0xb32d6db2 __brelse +EXPORT_SYMBOL vmlinux 0xb32e1360 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xb32fac75 tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0xb34a8556 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xb35c0a8b scsi_register_driver +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb373a194 skb_dump +EXPORT_SYMBOL vmlinux 0xb374c9ba skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic +EXPORT_SYMBOL vmlinux 0xb3a587b0 key_alloc +EXPORT_SYMBOL vmlinux 0xb3b1d748 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xb3b8ac35 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3fa7062 udp_seq_start +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb406446e phy_loopback +EXPORT_SYMBOL vmlinux 0xb40ae745 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42658c9 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xb44c82c8 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xb44dded2 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb45a2486 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xb4684501 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xb4729bf3 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb4a8253d vfs_rmdir +EXPORT_SYMBOL vmlinux 0xb4aab398 put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0xb4abcf73 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xb4bf22b6 __netif_schedule +EXPORT_SYMBOL vmlinux 0xb4db83b1 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xb4e2ce26 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0xb4e34cfe __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4f57ab8 register_framebuffer +EXPORT_SYMBOL vmlinux 0xb5055f43 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb5419e78 init_net +EXPORT_SYMBOL vmlinux 0xb547394e blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xb54b222e generic_perform_write +EXPORT_SYMBOL vmlinux 0xb5596e5f param_ops_short +EXPORT_SYMBOL vmlinux 0xb55d0da2 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xb561b8b7 param_get_int +EXPORT_SYMBOL vmlinux 0xb5639ed6 bioset_init +EXPORT_SYMBOL vmlinux 0xb571d79c devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb596e30b __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xb5995375 node_data +EXPORT_SYMBOL vmlinux 0xb5a01064 can_nice +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined +EXPORT_SYMBOL vmlinux 0xb5b5435d scsi_scan_target +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5c39ed2 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5e81425 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xb6035cf8 user_path_at_empty +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb6505090 configfs_register_group +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb65e467d _dev_warn +EXPORT_SYMBOL vmlinux 0xb663cd20 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xb66a90e3 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb675a67f tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb68673a7 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6b3cdd8 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xb6b4a9e3 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xb6c753b0 module_refcount +EXPORT_SYMBOL vmlinux 0xb6cace4e end_page_private_2 +EXPORT_SYMBOL vmlinux 0xb6cd5c4c kobject_init +EXPORT_SYMBOL vmlinux 0xb6d4a74f irq_set_chip +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6f71cea md_write_inc +EXPORT_SYMBOL vmlinux 0xb6f9fedf devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb7080f5c block_write_full_page +EXPORT_SYMBOL vmlinux 0xb709bebb tcp_poll +EXPORT_SYMBOL vmlinux 0xb711b0a6 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71afa30 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xb76ebcec lookup_one_len +EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb7958967 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xb7a183a4 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xb7a79f73 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xb7ba3358 bio_init +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7c795a7 dquot_alloc +EXPORT_SYMBOL vmlinux 0xb7cf51a4 pci_disable_device +EXPORT_SYMBOL vmlinux 0xb7de653a rio_query_mport +EXPORT_SYMBOL vmlinux 0xb7fbee88 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xb80d0518 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xb823cbe4 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xb82d9039 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xb84130b4 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xb841d94f km_state_expired +EXPORT_SYMBOL vmlinux 0xb855985e vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0xb855e8ba __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xb85e2d29 fc_block_rport +EXPORT_SYMBOL vmlinux 0xb85f7bc1 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xb862d8ff scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var +EXPORT_SYMBOL vmlinux 0xb87d11c1 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xb8861377 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xb88aa9f0 dma_supported +EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8a772dc fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8d57839 agp_put_bridge +EXPORT_SYMBOL vmlinux 0xb8dfb1ae __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8f74078 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xb8fae735 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb952bada follow_up +EXPORT_SYMBOL vmlinux 0xb95c3245 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xb960d957 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb97717b6 to_ndd +EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xb983aecf inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xb9847749 __put_user_ns +EXPORT_SYMBOL vmlinux 0xb9917b99 free_task +EXPORT_SYMBOL vmlinux 0xb9941c9f kernel_param_lock +EXPORT_SYMBOL vmlinux 0xb99da7c2 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xb9a48680 vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0xb9aba5c5 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9e276cf wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xb9e7429c memcpy_toio +EXPORT_SYMBOL vmlinux 0xb9e8b589 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9feca1b lock_page_memcg +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba103433 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xba357b86 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xba487a4f page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4bc104 fput +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba6652c1 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xba667fbf __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xba8014eb generic_read_dir +EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xba92dd61 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xbaa504b7 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xbaa78116 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xbade0ade misc_register +EXPORT_SYMBOL vmlinux 0xbaf0c774 dma_map_resource +EXPORT_SYMBOL vmlinux 0xbaf7ebd5 tty_name +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0d744c devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many +EXPORT_SYMBOL vmlinux 0xbb13a824 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xbb1a33fa vga_switcheroo_client_probe_defer +EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb2ef339 fc_host_post_fc_event +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3e51e6 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xbb3ff78e readahead_expand +EXPORT_SYMBOL vmlinux 0xbb4baf93 dquot_transfer +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb518c72 gro_cells_receive +EXPORT_SYMBOL vmlinux 0xbb6b1ed0 generic_file_open +EXPORT_SYMBOL vmlinux 0xbb7254b9 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xbb83253a xfrm_input +EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags +EXPORT_SYMBOL vmlinux 0xbb97ee22 phy_write_mmd +EXPORT_SYMBOL vmlinux 0xbb9beda8 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbba236c3 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xbbc19551 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xbbd458e0 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xbbe0aca4 qdisc_put +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbc16ac35 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc3750e6 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xbc378530 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xbc6b4fd7 iptun_encaps +EXPORT_SYMBOL vmlinux 0xbc799729 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xbc7bdfaa elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xbc986c7e pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xbca0c6b2 simple_rmdir +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcb72be8 generic_update_time +EXPORT_SYMBOL vmlinux 0xbcd6a86b devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xbceb69fe close_fd_get_file +EXPORT_SYMBOL vmlinux 0xbcf0a1e8 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xbd00f7e1 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xbd06fb73 serio_close +EXPORT_SYMBOL vmlinux 0xbd257bea input_register_device +EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd47eb05 netlink_set_err +EXPORT_SYMBOL vmlinux 0xbd61fc71 param_set_ullong +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd889df6 genphy_loopback +EXPORT_SYMBOL vmlinux 0xbd8b18d4 tcp_child_process +EXPORT_SYMBOL vmlinux 0xbd9c1651 cad_pid +EXPORT_SYMBOL vmlinux 0xbda419a3 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xbda5f0a5 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xbdb0745d dma_free_attrs +EXPORT_SYMBOL vmlinux 0xbdb542f2 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xbdbaeea1 unix_get_socket +EXPORT_SYMBOL vmlinux 0xbdc501ba __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xbdc665ea __frontswap_load +EXPORT_SYMBOL vmlinux 0xbde03230 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xbdec82c1 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbe000cf2 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0xbe037d85 tcf_block_get +EXPORT_SYMBOL vmlinux 0xbe0b5f42 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xbe134928 pps_unregister_source +EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock +EXPORT_SYMBOL vmlinux 0xbe383c6c mr_table_alloc +EXPORT_SYMBOL vmlinux 0xbe3f9466 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe64975c ilookup +EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe7d6108 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xbe888b40 processors +EXPORT_SYMBOL vmlinux 0xbe95db6f vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xbea03cfe vfs_rename +EXPORT_SYMBOL vmlinux 0xbea161f3 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xbebda6f7 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xbee2b3a6 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef99c93 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbf256e8a ipv4_specific +EXPORT_SYMBOL vmlinux 0xbf2dc2ee vme_register_bridge +EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xbf3cd239 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf5d318d pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xbf95567f dma_sync_wait +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfb0863a neigh_connected_output +EXPORT_SYMBOL vmlinux 0xbfb61146 param_get_bool +EXPORT_SYMBOL vmlinux 0xbfb6d861 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfd81235 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xbfd9bcdf dqput +EXPORT_SYMBOL vmlinux 0xbfdb882e input_inject_event +EXPORT_SYMBOL vmlinux 0xbfdda8b3 super_setup_bdi +EXPORT_SYMBOL vmlinux 0xbfddd908 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xbfdec2d6 bio_free_pages +EXPORT_SYMBOL vmlinux 0xbfe4d75c skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbffba15a scsi_is_fc_rport +EXPORT_SYMBOL vmlinux 0xbffc5af2 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xbffe9157 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc057a7f0 dev_mc_del +EXPORT_SYMBOL vmlinux 0xc06f40c1 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0xc07495c1 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc09480cc ipv4_dst_check +EXPORT_SYMBOL vmlinux 0xc0966955 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xc0a3d1bb __neigh_event_send +EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0babbe5 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xc0bb35f2 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xc0c63b03 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xc0d67c1a configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xc0f50bb3 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc10bd509 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xc111ae64 intel_gtt_get +EXPORT_SYMBOL vmlinux 0xc12d535e passthru_features_check +EXPORT_SYMBOL vmlinux 0xc1308c5b __f_setown +EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0xc14c20e5 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc15198e1 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xc156a99c kill_block_super +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc17de202 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xc17e8bea devm_request_resource +EXPORT_SYMBOL vmlinux 0xc1abddcd blk_rq_init +EXPORT_SYMBOL vmlinux 0xc1b94f55 param_set_short +EXPORT_SYMBOL vmlinux 0xc1b983a2 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xc1c6ed26 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xc1cfb293 secpath_set +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e7fad2 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xc2041cd8 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xc23405ba flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xc234ecbc ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc2479874 fc_remote_port_rolechg +EXPORT_SYMBOL vmlinux 0xc247ab97 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xc25c7421 mpage_writepages +EXPORT_SYMBOL vmlinux 0xc25d5f6d udp_seq_ops +EXPORT_SYMBOL vmlinux 0xc25ed5a8 nd_btt_version +EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc2681f7b tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xc273fc18 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xc2760b6c register_shrinker +EXPORT_SYMBOL vmlinux 0xc2769ca7 config_item_put +EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc28e18be ram_aops +EXPORT_SYMBOL vmlinux 0xc299f3c5 dentry_open +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc2a449ac devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xc2b33e4d iov_iter_zero +EXPORT_SYMBOL vmlinux 0xc2be6c73 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xc2c06a38 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xc2c9ebdf jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xc2d06704 filp_open +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f840c9 md_bitmap_free +EXPORT_SYMBOL vmlinux 0xc2fc80f4 iterate_fd +EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc31e6e10 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc32dc70b d_alloc_name +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3ab457e inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3d175be flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0xc3d7ed81 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xc3d8c5f7 agp_enable +EXPORT_SYMBOL vmlinux 0xc3e83b78 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xc3fd2790 tso_count_descs +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc4002b99 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xc400fbee lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xc411b572 eisa_driver_register +EXPORT_SYMBOL vmlinux 0xc4121c94 kthread_blkcg +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc4428a95 make_bad_inode +EXPORT_SYMBOL vmlinux 0xc44919a0 set_anon_super +EXPORT_SYMBOL vmlinux 0xc44e32bc mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xc4550161 xp_can_alloc +EXPORT_SYMBOL vmlinux 0xc456d0d5 audit_log +EXPORT_SYMBOL vmlinux 0xc4680bc4 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc4818271 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0xc4838d22 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xc49a6286 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xc4c9dd6b __block_write_begin +EXPORT_SYMBOL vmlinux 0xc4ef3dc5 inet_del_offload +EXPORT_SYMBOL vmlinux 0xc4fd152d xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xc507507a vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0xc50b3a8c phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0xc511adfd config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xc51f29e1 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc533d848 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xc53f9d4b dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xc54b6692 d_find_any_alias +EXPORT_SYMBOL vmlinux 0xc54c2a0b send_sig +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc5642e43 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc592dc6b __kfree_skb +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59df92c nvdimm_namespace_attach_btt +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5c67956 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xc5d3ed33 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5dcc43a ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc61a6b3c __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo +EXPORT_SYMBOL vmlinux 0xc62200a4 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc645d1c7 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xc6470d10 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xc653f7b4 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xc6585af0 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc +EXPORT_SYMBOL vmlinux 0xc69610f8 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xc6b9f97f udp_ioctl +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6d47549 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xc6e30d1e agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xc6eb3231 seq_open_private +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc71e494f registered_fb +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7221771 neigh_xmit +EXPORT_SYMBOL vmlinux 0xc7254678 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xc74332d9 seq_write +EXPORT_SYMBOL vmlinux 0xc75568c9 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a83aec phy_init_hw +EXPORT_SYMBOL vmlinux 0xc7b48c88 __quota_error +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c46bbb unload_nls +EXPORT_SYMBOL vmlinux 0xc7c755e4 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xc7cb7de5 rtc_add_group +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7dc31c9 __breadahead +EXPORT_SYMBOL vmlinux 0xc7ec3cc6 bdevname +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc81cc063 finish_open +EXPORT_SYMBOL vmlinux 0xc8287a9f blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8513ade netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xc86ac284 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8a933e6 km_new_mapping +EXPORT_SYMBOL vmlinux 0xc8bda0f9 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8f0f1d2 tty_port_open +EXPORT_SYMBOL vmlinux 0xc9043762 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0xc9067b79 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc930c92e tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xc9324bdf init_special_inode +EXPORT_SYMBOL vmlinux 0xc93604f5 param_set_byte +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc962f236 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc98d6390 make_kprojid +EXPORT_SYMBOL vmlinux 0xc9b33111 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0xc9cb0927 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xca1f6d98 kern_unmount +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca2c08dd skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca48eb66 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xca57b63d sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0xca5ae293 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xca7a949f kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xca92a007 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xcab64b88 simple_nosetlease +EXPORT_SYMBOL vmlinux 0xcab799ac flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xcab7ffcc pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xcab9162a __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xcac1975c tcp_shutdown +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcaef7335 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0a4ece input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xcb2f2b52 boot_cpu_data +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb667304 dput +EXPORT_SYMBOL vmlinux 0xcb72c79d vc_cons +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb7a9d4b show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0xcb8013e8 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0xcb8463fa scsi_host_put +EXPORT_SYMBOL vmlinux 0xcb997fab get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xcba95aae file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xcbafef8e __devm_release_region +EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbe53c46 convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0xcbecaa16 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc1ed883 km_policy_notify +EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc25db9a vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xcc2da69f pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc455e27 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0xcc4ee4b8 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc774f23 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0xcc800b6e inet_getname +EXPORT_SYMBOL vmlinux 0xcc9a4582 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xcc9dcef1 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xcc9fb118 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xccbee009 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0xcccd4d46 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccd8e6dc ping_prot +EXPORT_SYMBOL vmlinux 0xccdccc92 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xccf0521d phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xccf5b366 mr_rtm_dumproute +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 0xcd042882 release_sock +EXPORT_SYMBOL vmlinux 0xcd07ae36 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xcd11a24e config_group_init_type_name +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd5b4c03 seq_open +EXPORT_SYMBOL vmlinux 0xcd5bb6c4 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xcd731f08 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd914fd0 write_one_page +EXPORT_SYMBOL vmlinux 0xcda3b306 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xcda4095a pci_read_vpd +EXPORT_SYMBOL vmlinux 0xcda78278 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xcdbbdb06 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xcdbc0c9d mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc79377 setattr_copy +EXPORT_SYMBOL vmlinux 0xcdd40814 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xcddeb834 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdedaec3 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xce0c450b __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xce127eaa do_clone_file_range +EXPORT_SYMBOL vmlinux 0xce202d2d phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0xce24c493 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce8a1b69 trace_event_printf +EXPORT_SYMBOL vmlinux 0xce92357d bio_put +EXPORT_SYMBOL vmlinux 0xce9a3381 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xcea381dd x86_match_cpu +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcec172d3 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xcec1a86b security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xcedee13e read_cache_page +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf2728af vme_lm_request +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf8e7fdf mpage_readpage +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xcfc66ace fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfca9374 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfdbf7b3 vme_bus_num +EXPORT_SYMBOL vmlinux 0xcfeb45c1 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xcff8ae55 seq_dentry +EXPORT_SYMBOL vmlinux 0xd0227b43 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0xd03dd975 dma_resv_init +EXPORT_SYMBOL vmlinux 0xd048b083 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd06d266b fc_remove_host +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd0993b19 inode_update_time +EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0c1acd2 dst_dev_put +EXPORT_SYMBOL vmlinux 0xd0c5d8e1 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xd0ced4b9 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xd0d92e51 pmem_sector_size +EXPORT_SYMBOL vmlinux 0xd0da656b __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd1066477 cdev_set_parent +EXPORT_SYMBOL vmlinux 0xd135cf34 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd16a3b77 dst_release +EXPORT_SYMBOL vmlinux 0xd1769161 kobject_get +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd186ddb1 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd19e6b12 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xd19e7683 ppp_input_error +EXPORT_SYMBOL vmlinux 0xd1a05d4f md_cluster_ops +EXPORT_SYMBOL vmlinux 0xd1a85e9d pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xd1b2c1d8 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1f44c74 simple_release_fs +EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd214d92b uart_resume_port +EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd22c84f6 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xd23e17f0 wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0xd23f3964 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xd23fe189 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xd2523494 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xd254ea96 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd28190ed agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0xd289b11a bio_advance +EXPORT_SYMBOL vmlinux 0xd28e354b filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xd2a56d68 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xd2bc5c46 __get_user_nocheck_2 +EXPORT_SYMBOL vmlinux 0xd2c5aa9c param_ops_ushort +EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2dd224c sock_init_data_uid +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd2ed91d4 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xd3117a98 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xd312d8bb dma_ops +EXPORT_SYMBOL vmlinux 0xd319216e vme_master_mmap +EXPORT_SYMBOL vmlinux 0xd32ca436 seq_escape_mem +EXPORT_SYMBOL vmlinux 0xd3381912 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xd340d9a9 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xd35405f2 fb_firmware_edid +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 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd3864148 i8042_install_filter +EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask +EXPORT_SYMBOL vmlinux 0xd3dac9b6 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xd3e28c1e security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xd3e82f10 address_space_init_once +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd4124212 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xd443e5e6 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd4811d07 xsk_tx_release +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48b6743 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xd48bc4d8 config_item_set_name +EXPORT_SYMBOL vmlinux 0xd4a6325a scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xd4b20cf7 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xd4b79811 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c84975 eth_header_cache +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4e2d9ac tcf_idr_create +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd5411ec4 pnp_device_detach +EXPORT_SYMBOL vmlinux 0xd54940a9 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xd56346c3 __scm_destroy +EXPORT_SYMBOL vmlinux 0xd56b9ab8 inet6_getname +EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise +EXPORT_SYMBOL vmlinux 0xd592c92d init_pseudo +EXPORT_SYMBOL vmlinux 0xd5a2c7c7 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5b83320 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xd5ba8254 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xd5c2019e inode_insert5 +EXPORT_SYMBOL vmlinux 0xd5cda392 set_pages_wb +EXPORT_SYMBOL vmlinux 0xd5d0664d ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xd5d33227 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xd5d9a894 page_get_link +EXPORT_SYMBOL vmlinux 0xd5dd79c5 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xd5ef1641 dump_emit +EXPORT_SYMBOL vmlinux 0xd5f4e487 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd61bfec0 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd62feecb qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xd63386e8 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xd63587a6 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd663a3aa tty_unthrottle +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd684d003 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xd686859b pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd6aa45ba pagecache_get_page +EXPORT_SYMBOL vmlinux 0xd6ad9275 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6e247cb security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xd6e450b5 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f7530c free_netdev +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd6ffc12b netpoll_send_skb +EXPORT_SYMBOL vmlinux 0xd7031ad9 phy_disconnect +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd725d53b page_readlink +EXPORT_SYMBOL vmlinux 0xd735caf2 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73ad3b6 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc +EXPORT_SYMBOL vmlinux 0xd77905e2 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0xd7b9f05f pci_dev_get +EXPORT_SYMBOL vmlinux 0xd7bd27fa tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xd7c397a7 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d941d0 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f86467 param_ops_string +EXPORT_SYMBOL vmlinux 0xd8072096 __bread_gfp +EXPORT_SYMBOL vmlinux 0xd814c758 edac_mc_find +EXPORT_SYMBOL vmlinux 0xd81ac014 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xd82a9058 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0xd85c7a8e md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xd886a4c1 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xd8876f74 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0xd892e36b phy_init_eee +EXPORT_SYMBOL vmlinux 0xd8931d9c filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a0affe nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8aae210 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8c7cb75 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xd8cef6e1 clear_user +EXPORT_SYMBOL vmlinux 0xd8d0f20e msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xd8d71cbf unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8df4456 file_ns_capable +EXPORT_SYMBOL vmlinux 0xd8e05006 put_disk +EXPORT_SYMBOL vmlinux 0xd8f73eb6 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xd90e5ec9 fc_remote_port_delete +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd92fa832 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xd933f209 __SCT__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd9701d67 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xd97dae56 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xd97e2675 blackhole_netdev +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9aa5d81 ethtool_notify +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9c18d84 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xd9c4240d ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9e22dcf pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xd9f9d913 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xda19585a phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0xda26b8ea __irq_regs +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda596739 fc_attach_transport +EXPORT_SYMBOL vmlinux 0xda64cc6b __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xda66a388 __module_get +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda7694ca dma_pool_create +EXPORT_SYMBOL vmlinux 0xda7c88d0 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xda860a46 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xdaa46301 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xdaa7d5e4 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xdaaee1e7 dquot_release +EXPORT_SYMBOL vmlinux 0xdab948eb __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad0fb58 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xdad13544 ptrs_per_p4d +EXPORT_SYMBOL vmlinux 0xdad652dd dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xdae129d8 security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb261a20 bio_uninit +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb8dc770 neigh_table_init +EXPORT_SYMBOL vmlinux 0xdb95e185 intel_scu_ipc_dev_command_with_size +EXPORT_SYMBOL vmlinux 0xdba66606 eth_type_trans +EXPORT_SYMBOL vmlinux 0xdba7ee36 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdd2ff2 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbe0733d skb_pull +EXPORT_SYMBOL vmlinux 0xdbe7c327 filemap_fault +EXPORT_SYMBOL vmlinux 0xdbec9106 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xdbfeb7a0 dev_addr_init +EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1df178 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xdc21a529 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xdc301c48 bdi_alloc +EXPORT_SYMBOL vmlinux 0xdc369739 pci_clear_master +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc4a24c2 unix_attach_fds +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0xdc9ba500 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xdca0ee8a phy_read_paged +EXPORT_SYMBOL vmlinux 0xdcbf2a70 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0xdcc48f4d pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0xdcd3d277 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd14a1a9 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd20f63d __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd2e6870 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xdd35f05f sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xdd4a55c0 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd7e304f tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd9a990c ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat +EXPORT_SYMBOL vmlinux 0xddb262b5 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xddb32359 key_revoke +EXPORT_SYMBOL vmlinux 0xddb807f4 tcp_seq_start +EXPORT_SYMBOL vmlinux 0xddc8e12e devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit +EXPORT_SYMBOL vmlinux 0xddd891ef dm_table_get_md +EXPORT_SYMBOL vmlinux 0xdde6ffc1 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xddfbb9bb seq_pad +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xde7ae669 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xde7b6d8d mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xde7f2218 init_task +EXPORT_SYMBOL vmlinux 0xde80cd09 ioremap +EXPORT_SYMBOL vmlinux 0xde8e064f blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea4552e qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdef7b6d2 dev_addr_del +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdef8d0ae __SCT__tp_func_kfree +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf3fa165 fd_install +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf63561a mdiobus_write +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf6d605c dquot_scan_active +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 0xdfaf0de4 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xdfaf98b4 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfd823be discard_new_inode +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdfedb9de sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe0112fc4 __x86_indirect_thunk_r9 +EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe033cb29 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe042ff48 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xe06b4ada nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xe074c486 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xe07dc2bd tty_unlock +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 0xe08640ca tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe092af5e pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0a43194 fc_vport_terminate +EXPORT_SYMBOL vmlinux 0xe0a45d14 pci_find_resource +EXPORT_SYMBOL vmlinux 0xe0af6907 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bda073 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0c748ae __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xe0d46c94 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xe0f2ff13 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0xe0f47308 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xe104862d fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe1142bf3 skb_eth_pop +EXPORT_SYMBOL vmlinux 0xe115ff80 posix_test_lock +EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0xe1210ff1 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe13dbe29 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xe13e3f71 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xe13f135f neigh_table_clear +EXPORT_SYMBOL vmlinux 0xe140b9e5 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xe1672ce8 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xe1701b0d security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xe1981a75 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xe1bb33bc unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xe1bee700 __traceiter_read_msr +EXPORT_SYMBOL vmlinux 0xe1c63c13 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xe1c7cdf7 vga_put +EXPORT_SYMBOL vmlinux 0xe1d1105a kernel_sendpage +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1ef4011 __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0xe2021cd8 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xe211f527 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe21ff64f put_fs_context +EXPORT_SYMBOL vmlinux 0xe2533004 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xe2589154 lock_rename +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe286cdd1 mdio_device_remove +EXPORT_SYMBOL vmlinux 0xe290e5bb vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0xe2addc29 kthread_bind +EXPORT_SYMBOL vmlinux 0xe2b67e2f nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xe2b85d66 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xe2b8b053 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xe2c11ed9 dev_mc_init +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e28fc0 __traceiter_write_msr +EXPORT_SYMBOL vmlinux 0xe312798d inet_del_protocol +EXPORT_SYMBOL vmlinux 0xe329843d __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe3320249 inode_init_always +EXPORT_SYMBOL vmlinux 0xe336d582 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0xe33f4747 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xe3580680 d_genocide +EXPORT_SYMBOL vmlinux 0xe35a454f devm_ioremap +EXPORT_SYMBOL vmlinux 0xe35caf5c blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xe35f7bb9 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xe387d248 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xe38dabd0 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3a05636 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xe3ac8c19 get_agp_version +EXPORT_SYMBOL vmlinux 0xe3b69007 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xe3bb9d55 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xe3c29839 dev_load +EXPORT_SYMBOL vmlinux 0xe3c404c2 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xe3d516a8 skb_clone +EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe3dc6f42 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3fb7836 param_set_copystring +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 0xe40c44a3 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xe40fe96c param_get_charp +EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be +EXPORT_SYMBOL vmlinux 0xe41cc334 phy_device_free +EXPORT_SYMBOL vmlinux 0xe41ee9e7 seq_release_private +EXPORT_SYMBOL vmlinux 0xe426775f ptp_clock_index +EXPORT_SYMBOL vmlinux 0xe4367a96 ipv4_mtu +EXPORT_SYMBOL vmlinux 0xe440cd36 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xe45a8d6f tty_port_close_start +EXPORT_SYMBOL vmlinux 0xe45c7acb vfs_iter_read +EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe47c759d __check_sticky +EXPORT_SYMBOL vmlinux 0xe4809988 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xe4a19518 dup_iter +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4bee174 param_set_invbool +EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable +EXPORT_SYMBOL vmlinux 0xe4fc52d6 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xe500733b inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xe513f5cd tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xe5159bee __inet_hash +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52d323f xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xe52e4daf generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xe5368fc1 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xe545e7df xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0xe54e6002 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xe54e82fa udp_sock_create4 +EXPORT_SYMBOL vmlinux 0xe570a777 seq_read +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5a7bc90 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5cb4872 _dev_info +EXPORT_SYMBOL vmlinux 0xe5d3564e dev_mc_sync +EXPORT_SYMBOL vmlinux 0xe5db4166 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xe5f8b498 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xe5fcf4ae pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe5ff5e51 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xe601d7c3 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0xe60915cc scsi_target_resume +EXPORT_SYMBOL vmlinux 0xe60f6e26 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe61e0732 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xe61e49a1 ppp_input +EXPORT_SYMBOL vmlinux 0xe6204427 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0xe62cd2c2 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xe62daa0a tty_check_change +EXPORT_SYMBOL vmlinux 0xe6468a54 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0xe64c9fa9 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xe64d4d0f vme_irq_generate +EXPORT_SYMBOL vmlinux 0xe677d923 blk_sync_queue +EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0xe6931890 locks_delete_block +EXPORT_SYMBOL vmlinux 0xe69bdfca netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xe6a8bf51 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe6aaeab5 current_time +EXPORT_SYMBOL vmlinux 0xe6d1372b __phy_resume +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6f2040b elv_rb_find +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0xe72374c8 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe7369756 d_lookup +EXPORT_SYMBOL vmlinux 0xe759f1df bprm_change_interp +EXPORT_SYMBOL vmlinux 0xe768dd7b find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xe78abf9e sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xe78aec53 reuseport_alloc +EXPORT_SYMBOL vmlinux 0xe78b7194 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xe78e04fa skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xe7b9b900 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e58761 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xe8117043 skb_split +EXPORT_SYMBOL vmlinux 0xe81c54f7 new_inode +EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xe840818b inode_dio_wait +EXPORT_SYMBOL vmlinux 0xe842d51a tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xe85e8385 vmap +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe86663f8 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xe87127e0 bio_devname +EXPORT_SYMBOL vmlinux 0xe884d59b security_path_unlink +EXPORT_SYMBOL vmlinux 0xe89a760d finalize_exec +EXPORT_SYMBOL vmlinux 0xe89c5ce4 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0xe8a5ceee __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xe8a720d4 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xe8b05725 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xe8be11c7 kill_pid +EXPORT_SYMBOL vmlinux 0xe8d58c27 ptp_clock_event +EXPORT_SYMBOL vmlinux 0xe8d9a2d4 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0xe8dcda8a param_get_ushort +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe90ff79d pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91f3bf7 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95dcdc2 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xe964cddc jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xe9669dd3 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xe9765dcb input_event +EXPORT_SYMBOL vmlinux 0xe986d59d inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xe9a1eedf eth_validate_addr +EXPORT_SYMBOL vmlinux 0xe9a4ba6d vfs_fileattr_get +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 0xe9bec115 phy_driver_register +EXPORT_SYMBOL vmlinux 0xe9e3c7c2 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9f7e379 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xe9fa0820 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock +EXPORT_SYMBOL vmlinux 0xea106598 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xea1a754d module_put +EXPORT_SYMBOL vmlinux 0xea312675 d_rehash +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea520af1 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea70af2b nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea81d8a4 vme_slave_request +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeacb9860 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xeada0bfe pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaea1dda unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xeb223c15 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb2391c9 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb57a71c mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xeb6ab119 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xeba311f6 dev_close +EXPORT_SYMBOL vmlinux 0xebb24723 nobh_writepage +EXPORT_SYMBOL vmlinux 0xebc25319 dma_set_mask +EXPORT_SYMBOL vmlinux 0xebeb20ea __nla_put +EXPORT_SYMBOL vmlinux 0xebf7cca1 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xec075abc mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xec22982a read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xec2a91b6 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec3973fe eth_header_parse +EXPORT_SYMBOL vmlinux 0xec435a1b skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec5d4cc5 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xec5efd7a fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xec8a4009 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xec956912 console_stop +EXPORT_SYMBOL vmlinux 0xec9c71ee phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xecb3a591 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xecd87af5 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xecdcabd2 copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0xece49626 devm_release_resource +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf434cc block_invalidatepage +EXPORT_SYMBOL vmlinux 0xecf458b2 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed238617 __put_cred +EXPORT_SYMBOL vmlinux 0xed293fcf inet_frags_fini +EXPORT_SYMBOL vmlinux 0xed2c3f9b __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set +EXPORT_SYMBOL vmlinux 0xed3dcc3e tcf_block_put +EXPORT_SYMBOL vmlinux 0xed4daf5c mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed5b2416 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xed5d64c4 nla_put_64bit +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed6a4d50 set_create_files_as +EXPORT_SYMBOL vmlinux 0xed6fb5aa inode_init_owner +EXPORT_SYMBOL vmlinux 0xed9a3271 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xed9fae11 do_splice_direct +EXPORT_SYMBOL vmlinux 0xedb1a5d3 set_user_nice +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xede4f557 sock_pfree +EXPORT_SYMBOL vmlinux 0xede8a379 fb_get_mode +EXPORT_SYMBOL vmlinux 0xedeab5e2 udp_poll +EXPORT_SYMBOL vmlinux 0xedf3e0c9 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee2f143c pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xee2f1fe6 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee71b20e simple_transaction_set +EXPORT_SYMBOL vmlinux 0xee7bf964 simple_link +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array +EXPORT_SYMBOL vmlinux 0xee8b6ef8 vme_irq_free +EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeb17036 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xeeba5d87 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xeec1ab0b inet_stream_ops +EXPORT_SYMBOL vmlinux 0xeec3aaca dev_uc_del +EXPORT_SYMBOL vmlinux 0xeec5e0af sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xeecdf555 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xeeeb4c34 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0xeeed61ce phy_attach +EXPORT_SYMBOL vmlinux 0xef0f1ea0 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xef1ecfa2 backlight_device_register +EXPORT_SYMBOL vmlinux 0xef3d8bc1 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0xef4f9550 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xef50b9bc tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xef645a36 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xef6eec18 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xef71d6ff phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xef76b705 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xef87138b jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xef8c2943 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xef920e46 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefa06e96 param_set_bool +EXPORT_SYMBOL vmlinux 0xefaaaf57 unregister_netdev +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefc0af6e netif_device_attach +EXPORT_SYMBOL vmlinux 0xefc24b5f __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefe4cae3 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xefe69feb from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0017f0e napi_disable +EXPORT_SYMBOL vmlinux 0xf00caa7a inet_put_port +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf03b7789 bioset_exit +EXPORT_SYMBOL vmlinux 0xf0414bae skb_push +EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf0608559 pci_request_irq +EXPORT_SYMBOL vmlinux 0xf0698f5d scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xf069d4eb inet_offloads +EXPORT_SYMBOL vmlinux 0xf077c1e1 bdev_read_only +EXPORT_SYMBOL vmlinux 0xf078f90d pci_map_rom +EXPORT_SYMBOL vmlinux 0xf0831be1 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xf089cf57 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xf0932f28 __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xf09ac47c netif_skb_features +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds +EXPORT_SYMBOL vmlinux 0xf0aa68ed mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0xf0bce2da block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xf0be7367 _copy_from_iter +EXPORT_SYMBOL vmlinux 0xf0cf9820 phy_start +EXPORT_SYMBOL vmlinux 0xf0daacfc kthread_create_worker +EXPORT_SYMBOL vmlinux 0xf0f316f7 inet_addr_type +EXPORT_SYMBOL vmlinux 0xf10dd7fe arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xf112dac8 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf128489b input_open_device +EXPORT_SYMBOL vmlinux 0xf1304c7c tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xf159f21c fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xf166179f inet_frag_find +EXPORT_SYMBOL vmlinux 0xf168a13b d_alloc +EXPORT_SYMBOL vmlinux 0xf16a1e5a page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf1bf465b padata_do_serial +EXPORT_SYMBOL vmlinux 0xf1c5a276 locks_free_lock +EXPORT_SYMBOL vmlinux 0xf1cac98a xsk_tx_completed +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e2df64 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xf1e7bedf sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1fc5573 d_invalidate +EXPORT_SYMBOL vmlinux 0xf2077f8b qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xf21ac2c9 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xf2271bc6 PageMovable +EXPORT_SYMBOL vmlinux 0xf231ad8c __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xf23b91f8 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf25a06a7 unlock_buffer +EXPORT_SYMBOL vmlinux 0xf27b9a8d blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf2846fbc agp_find_bridge +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf29b163e sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2a08569 vfs_llseek +EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0xf2c027a1 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2cec3c0 register_key_type +EXPORT_SYMBOL vmlinux 0xf2e388dd neigh_seq_start +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf2fb02bd gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xf2fbe5b7 submit_bh +EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf3184d4b ip6_output +EXPORT_SYMBOL vmlinux 0xf31d58cf path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xf341ee35 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34a2e97 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0xf34b4590 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf364410c regset_get_alloc +EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf37b9c07 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xf37ec3f9 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xf38935ff configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused +EXPORT_SYMBOL vmlinux 0xf39e3d12 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3b1e364 inc_node_page_state +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf4102303 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xf416baaf blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xf4273d78 vme_irq_request +EXPORT_SYMBOL vmlinux 0xf42e2478 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf4441c3b phy_attach_direct +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf4525a76 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xf45f15ed agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf476da7e cdrom_open +EXPORT_SYMBOL vmlinux 0xf4a289cf d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf4ab5940 sk_dst_check +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4be4563 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xf4c218e5 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xf4c4651a rt_dst_clone +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4dc5c03 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf5036aa4 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xf505d8bf jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xf507aea9 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xf515ede1 setattr_should_drop_sgid +EXPORT_SYMBOL vmlinux 0xf53526ee vme_master_request +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5550154 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xf55af12e skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xf5708f8c pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xf572180a jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0xf57c7581 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xf5985d9f udp_gro_complete +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc +EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid +EXPORT_SYMBOL vmlinux 0xf5ae9928 proc_create +EXPORT_SYMBOL vmlinux 0xf5b5517e input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xf5d62ba0 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xf60f011e sg_miter_stop +EXPORT_SYMBOL vmlinux 0xf611af9a mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xf613eb22 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xf61efd7a inet_ioctl +EXPORT_SYMBOL vmlinux 0xf62cbdf3 sk_stream_error +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf6617ff5 skb_append +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf6795910 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68447ba __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0xf6e2284d dquot_commit_info +EXPORT_SYMBOL vmlinux 0xf6e9b344 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0xf6eb03b9 cdev_add +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6edf3ce inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf7013d73 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xf7042d19 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xf70d9d01 dev_addr_add +EXPORT_SYMBOL vmlinux 0xf7115e5c ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xf71519c0 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xf71a8905 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xf723d04f proc_remove +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf798908a vfs_get_super +EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0xf79f009d textsearch_destroy +EXPORT_SYMBOL vmlinux 0xf7c7fe99 pci_iounmap +EXPORT_SYMBOL vmlinux 0xf7c8ff2e udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xf7d1ccb6 devm_memremap +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7d794dc page_pool_put_page +EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release +EXPORT_SYMBOL vmlinux 0xf7f474db phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0xf7f8c781 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xf808abac blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xf80be44e rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812ac07 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf8189bdf scm_detach_fds +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf83919c6 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf8bbd5f3 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8dbfb49 dquot_initialize +EXPORT_SYMBOL vmlinux 0xf8f524ad touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf90a1e85 __x86_indirect_thunk_r8 +EXPORT_SYMBOL vmlinux 0xf90ba950 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xf9292dd1 would_dump +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf94bf62c elv_rb_del +EXPORT_SYMBOL vmlinux 0xf94d73f9 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xf956f1f8 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xf958c43e mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xf9609f16 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xf9637336 clear_inode +EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len +EXPORT_SYMBOL vmlinux 0xf9722f90 devm_free_irq +EXPORT_SYMBOL vmlinux 0xf98ee5da __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xf9914866 pci_irq_vector +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b074ba blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9e453bd skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xf9e71d74 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xf9f283ec ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xf9f3c0b0 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa1a3078 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa482ae4 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa682113 register_md_personality +EXPORT_SYMBOL vmlinux 0xfa7ef17d pci_disable_msix +EXPORT_SYMBOL vmlinux 0xfa7ff2b7 finish_no_open +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfaaa9226 pci_read_config_word +EXPORT_SYMBOL vmlinux 0xfabe0865 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8c28 nla_put +EXPORT_SYMBOL vmlinux 0xfacfca53 dquot_drop +EXPORT_SYMBOL vmlinux 0xfad0c5d4 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xfade9f0a tty_port_init +EXPORT_SYMBOL vmlinux 0xfadf0902 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xfaf5b702 xp_alloc +EXPORT_SYMBOL vmlinux 0xfaf5dbaf __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xfb106d32 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb3581a7 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xfb3831ad nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb4cd6c9 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xfb578fc5 memset +EXPORT_SYMBOL vmlinux 0xfb62ef81 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb70cfd6 sock_create_lite +EXPORT_SYMBOL vmlinux 0xfb743665 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xfb82c594 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xfba740fc reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbab1bb1 ioread8_rep +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbbbf858 iov_iter_init +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbe60ff9 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfbef0003 nf_log_trace +EXPORT_SYMBOL vmlinux 0xfbf163b6 dev_change_carrier +EXPORT_SYMBOL vmlinux 0xfbfaf333 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xfc1cdedc dquot_destroy +EXPORT_SYMBOL vmlinux 0xfc2b6e94 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xfc2ddc40 page_pool_release_page +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3cea28 vme_slot_num +EXPORT_SYMBOL vmlinux 0xfc3d53cb __put_user_nocheck_1 +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc53420f pskb_extract +EXPORT_SYMBOL vmlinux 0xfc66153b netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xfc683aba page_mapping +EXPORT_SYMBOL vmlinux 0xfc7b6016 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xfc84cdc3 sock_efree +EXPORT_SYMBOL vmlinux 0xfc85e146 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xfc92d020 fc_eh_timed_out +EXPORT_SYMBOL vmlinux 0xfca30c3c disk_end_io_acct +EXPORT_SYMBOL vmlinux 0xfcb10ca1 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xfcbae29b xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xfcbf0e3b sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfce86f55 inode_nohighmem +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf7f2db uart_register_driver +EXPORT_SYMBOL vmlinux 0xfd09893c try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xfd0f792d netif_rx +EXPORT_SYMBOL vmlinux 0xfd27900e scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xfd2fcd16 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xfd38e165 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xfd43c3ba fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xfd4a12da netpoll_print_options +EXPORT_SYMBOL vmlinux 0xfd4f7242 set_nlink +EXPORT_SYMBOL vmlinux 0xfd592aad to_nd_btt +EXPORT_SYMBOL vmlinux 0xfd5bfd5d tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xfd671af1 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xfd6900a9 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xfd6adefd remove_arg_zero +EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc +EXPORT_SYMBOL vmlinux 0xfd99a3dd md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd35059 alloc_pages +EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xfdf747e3 tcp_mmap +EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported +EXPORT_SYMBOL vmlinux 0xfdff2ad7 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi +EXPORT_SYMBOL vmlinux 0xfe150dd2 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe1d9233 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xfe378ee9 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xfe384e8c scsi_print_command +EXPORT_SYMBOL vmlinux 0xfe47de8e scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe59c477 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6ed99d pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xfe755b0f pci_release_resource +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 0xfeafa793 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfeccecac iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xfece8104 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xfedb3202 param_ops_bool +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee051b4 inet_protos +EXPORT_SYMBOL vmlinux 0xfeea58f2 srso_alias_untrain_ret +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef216eb _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff02a19a input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xff1885c6 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff219f0d kernel_bind +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff52848a __SCT__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xff88c602 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xff948f46 netdev_warn +EXPORT_SYMBOL vmlinux 0xffa5126c flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0xffaa714f gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xffae4287 path_get +EXPORT_SYMBOL vmlinux 0xffb3d2c8 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xffc319b6 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xffc6dd78 send_sig_info +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire +EXPORT_SYMBOL vmlinux 0xffda396c tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfff4f873 __wait_on_buffer +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 +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x0b901549 camellia_dec_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x69f4ff25 __camellia_enc_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x8d725052 __camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x8d9b761c camellia_decrypt_cbc_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xfe729ed6 __camellia_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xff09bd65 camellia_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x194b2841 serpent_ecb_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x38800636 serpent_cbc_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x4140192a serpent_ecb_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x2d2d84f1 sm4_avx_ecb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x4256e679 sm4_cbc_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x43d2dc1b sm4_avx_cfb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x728fc0e1 sm4_avx_ecb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x7c786fba sm4_cfb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xc67366de sm4_avx_cbc_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xd1d5cff5 sm4_avx_ctr_crypt +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x1f491d36 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x7c7bf6e0 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x92a51c43 twofish_dec_blk_cbc_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xb4e98a46 twofish_dec_blk_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xe4ae7508 __twofish_enc_blk_3way +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x002262c7 kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x008d0c4e kvm_apic_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01d5e516 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0323b696 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0338321d __SCK__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04795365 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x049e08a5 __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05a08a70 __traceiter_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x065e53b9 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0814dd11 __SCT__kvm_x86_tlb_flush_current +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08596a97 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0874b5f3 __SCK__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x088dab66 kvm_get_apic_mode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x093bcda5 kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0968b619 __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09ac844e kvm_skip_emulated_instruction +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 0x0beae561 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ca0ee95 __SCK__tp_func_kvm_apicv_update_request +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 0x0e9581f3 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f78e44a __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0fabad5e kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x102f662e kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1179bd09 __tracepoint_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11ae6845 __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1235000a kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12797ed8 kvm_emulate_xsetbv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x127ce9f6 __SCK__kvm_x86_tlb_flush_current +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1305db61 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x130fd155 supported_xss +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 0x15d04fbc __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16478dcc kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x173b4c93 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x176b0b95 __tracepoint_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x185a9df2 kvm_init_shadow_npt_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1943b8a4 kvm_emulate_mwait +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19503974 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1957f2e1 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c5e6d48 kvm_valid_efer +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 0x1f21db79 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21269ad5 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23263c0a __traceiter_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x237988a9 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23de9ce8 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x244fe2ec kvm_read_guest_cached +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 0x25ee0748 kvm_map_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26222bfd kvm_lapic_reg_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26ef9f57 kvm_vcpu_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27d478b4 kvm_fixup_and_inject_pf_error +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28411ed7 kvm_max_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2888a5bb kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2932bd02 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2976b749 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ac8ecd5 kvm_emulate_as_nop +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bdec63d kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c5e8b8a __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c6ea2bf kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d13e99c __tracepoint_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d692bf7 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ded0cad kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f32bbd6 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fe2be40 kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x306c9c53 kvm_sev_es_string_io +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x342e65ac kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x354eacbb kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36218c37 kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x365ab13a kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36c26226 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e0e10 __SCT__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38ba1790 kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x393cf688 kvm_apic_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x398217c8 kvm_emulate_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3983e452 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39e335a4 kvm_lapic_switch_to_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a6eb62b __traceiter_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b365da5 kvm_emulate_invd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ba6c794 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3baf20e8 __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d2996cc __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d2ed0b5 kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d56ea67 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d724b3e kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e25cc97 kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e36bb57 __SCK__tp_func_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e8eae4a kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f510ff5 kvm_has_noapic_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41027005 __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41b84d16 __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41f61634 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42f60a67 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x439d2e1a kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44db2285 __SCK__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46589682 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x474b9e16 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47631dbc kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47706e99 __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48360cfa kvm_init +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 0x48aa4a77 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49351fc7 __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4942be67 __SCT__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a36df84 __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c9f1112 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4dd139bd kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50cf4cb6 file_is_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51023612 __SCK__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51d81c59 kvm_handle_invalid_op +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5211f543 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53326c5f kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54cd466b __traceiter_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54d6be48 kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55877614 __SCK__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55f940d0 kvm_wait_lapic_expire +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5853e2a1 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58e2348a kvm_apic_send_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59840171 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5afc00ae kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b310709 kvm_vcpu_reset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b50d7e9 __traceiter_kvm_exit +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 0x5cceb1db __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d996b31 kvm_set_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5dcaa4fb kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5e455d0d kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5e9daec2 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fe36399 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fec4d2d kvm_cpu_has_injectable_intr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x617d8954 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6189cbea reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr +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 0x64490af0 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x661a6a73 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6755adc2 __SCK__tp_func_kvm_vmgexit_msr_protocol_exit +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 0x6976ccf0 kvm_request_apicv_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6becaded __SCT__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6cec4dfc kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d768c0e kvm_service_local_tlb_flush_requests +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e27c02f kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f7bd28a kvm_emulate_hypercall +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 0x7263ae77 __traceiter_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72bb9511 handle_fastpath_set_msr_irqoff +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x731f1d23 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x748f2325 reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74934397 __SCK__tp_func_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76097d36 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76225c1f kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76a44e3c kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x789dca41 __SCK__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79090244 __SCK__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x798b2e18 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a0e17f7 kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a595395 __SCK__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a797081 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a83f069 kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ab1b22f kvm_inject_page_fault +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 0x7d04f5e7 kvm_mmu_gva_to_gpa_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e1bb648 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e4c81c5 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e74c03d kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f61cdac __tracepoint_kvm_cr +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 0x80e9f9d5 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81b6cd88 kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8371629e kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x862328e8 vcpu_load +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 0x8bc7c775 __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8bf83643 __SCK__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cc07ada gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ccc2526 kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d4db2f6 __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e4a78b0 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e78931e kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ea38e6c kvm_unmap_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x918592c2 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91f0a78f kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93a3e40e __SCT__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9430059a kvm_can_use_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x944882ed kvm_has_bus_lock_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9626f504 __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x97b578d3 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98b40401 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98f9ad3b __SCT__tp_func_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9930970a kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99640afe kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x997e42b6 kvm_update_dr7 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99c04291 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99efcb2b gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9aa5e4eb kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ab2df39 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ae96340 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9bc75027 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cdbf5cf kvm_emulate_ap_reset_hold +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ee423dd __SCK__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa056909b kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa161ea5e kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa211732b kvm_apic_clear_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2a193d9 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2bb474b kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2f0d0c6 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4db1732 __SCK__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa51088f6 kvm_post_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa573ff2f __tracepoint_kvm_pml_full +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 0xa7bc6c65 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa80595a6 __traceiter_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa84a2e73 __SCT__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa95c4a51 __tracepoint_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac3330b1 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad3da56d kvm_vcpu_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb122403e kvm_lapic_reg_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb238aef3 __tracepoint_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb3f71dfd kvm_mmu_free_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb540efd8 kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb56c770a kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5908d6b kvm_slot_page_track_add_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5fe8932 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6654574 kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb70b2051 kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb7f12e3f kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb317548 kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbbab8ca6 kvm_sev_es_mmio_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd0dcd85 kvm_post_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0991705 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0d4712c kvm_handle_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0e4ebbc __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1cceace kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc25657a0 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3a1fabb kvm_emulate_monitor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3b5d1e6 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc455748d x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc67d2fbd handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc790493d __SCK__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7e1b087 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7f82a46 __kvm_is_valid_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc916d018 kvm_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9655dd1 hv_remote_flush_tlb_with_range +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc96d35f4 report_ignored_msrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc97c7651 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc18f3bc kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc68668f kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc6cd55d kvm_hv_assist_page_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcce10d03 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd1eb69a kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce02da86 __tracepoint_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce2d2edd kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0153408 kvm_mmu_gva_to_gpa_read +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 0xd1326784 __SCK__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd15a6635 current_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1d4cd64 kvm_lapic_switch_to_sw_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd41ee85d kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4367895 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4cfa75e kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5c27745 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8f54648 kvm_inject_emulated_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8fc987a kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9c09836 kvm_load_guest_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda13df03 kvm_lapic_hv_timer_in_use +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdaa11707 __kvm_request_apicv_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbb4a41f __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbbf6dd2 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbd2a1ea __SCK__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd19b6c2 __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xddcabcd2 __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xddf3dbf1 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdebce9da kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf026a18 __traceiter_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf8d42c7 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf9b5683 kvm_handle_memory_failure +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfbcc95f kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe056e670 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe105d6b2 kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5901141 hv_remote_flush_tlb +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe65a9cce kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6ce3af1 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6e60355 __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6fdc8b0 __SCK__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe76f2033 __SCK__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7d96caa kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8a67c5e kvm_handle_invpcid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe93dfc8c __SCT__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9674a16 supported_xcr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9e02ae8 kvm_vcpu_deliver_sipi_vector +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5cda33 __SCT__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed05bcc1 kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee07a647 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee30874f kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeff79924 __SCK__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0561c3a kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf06afdcb gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0e45d1c kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2df48f3 __SCT__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf32dff97 __SCT__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf43c7c24 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4668dfb __traceiter_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf66a49be gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf71128f5 kvm_update_cpuid_runtime +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7df4d3d kvm_fast_pio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7e0e21b __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf88f9a16 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf92e487f __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf958aca6 kvm_mmu_free_guest_mode_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9f453f9 __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc801f1d __SCK__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL crypto/af_alg 0x06d411cf af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x07483e59 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x0978e649 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x3b2710f3 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x3e4cd836 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x49810e24 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x568a02d3 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x7978293c af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x84e56f7d af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x865b7a46 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xa2c19b9b af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xb91141da af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xbb55d9c4 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xcb58ca2c af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xde0b884f af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xe8647745 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xf13e239e af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xf798034b af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x45d32e59 asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x1e89cbc3 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x05172e9e async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xef379d46 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xc1b4e00c async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xf8c8c86e async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0f19f350 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x8a80ba3f async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xed10bb13 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xed562c47 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x494e57e0 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x4954d0b4 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x4e15d496 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9cc04791 async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x19e89fb3 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x9542f1eb 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 0x4804e673 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 0x0484cbad cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x0ca4fef3 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x14af0d3c cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x29c5cc4f cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x331f3725 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x4d80a2cc cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x55b6db4c cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x5a85fcc3 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x845c18c6 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x8a658b92 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb95d729b cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xc8ad7a24 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xef93013d cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x02623a27 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x101949ac crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2672b019 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2a87a056 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2a8fc294 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x32ff0c69 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4f355c21 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7286382f crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x901ffd80 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa39e8baa crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb0556db4 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc5ae2c3a crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd64cc48b crypto_engine_alloc_init +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 0x6c9fb07f simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x7d3582de 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 0xbbb7d77c simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xcf6ab0df 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 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x68acb39f 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 0x980e8174 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x00224aa7 synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x05081c37 spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x058a57c4 spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0a9f54e7 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0fe77179 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x13cf0a79 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x27ef1ab5 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x3ed48b1d spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4152f43c spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x437278ab spk_do_catch_up +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 0x4e419781 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5b41f892 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x86f22bc2 spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb1da516f spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb734cb9d speakup_event +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbb1dac8b synth_current +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 0xe194d0ef synth_printf +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/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback +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 0x02b8932f ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0689b6b3 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x104e7ee1 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x221bcb9a ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2740b0db ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2de000f8 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x54948b4f ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x59e9dbbd ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5dce8605 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x762f1350 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7ba7adb2 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x93aeb353 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x93c95110 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa17e72c7 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa515a6f2 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb96440ee ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb984c555 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc0abc7ec ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc8110ea1 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd247dd1c ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe41b3f97 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea4d9694 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf111ea7c ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfaf09618 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x00041487 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0f9b1e79 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x13d07102 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x14a31a49 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x31d94bdd ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x495780cd ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5523f556 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5939c653 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5f1946b2 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6541683b ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x75f285cf ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb3504299 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb9025994 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xba458411 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcfa43529 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe5f29ab3 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xcd940f31 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd3e29970 charlcd_backlight +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf3304696 charlcd_free +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf883c540 charlcd_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x07b26ecc hd44780_common_gotoxy +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x1aa688fd hd44780_common_lines +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x23159a5b hd44780_common_clear_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x30e85287 hd44780_common_shift_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x36dc00a2 hd44780_common_print +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x3c4c183f hd44780_common_home +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x489c89e8 hd44780_common_redefine_char +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x64415593 hd44780_common_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x79e8e259 hd44780_common_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8585e5fd hd44780_common_blink +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8d4f3fa4 hd44780_common_init_display +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/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0x0e8c184d __regmap_init_i2c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0x33186843 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x823125d6 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xff97d129 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x099fdc6c bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0bd08309 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x101136c6 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x19727abf bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2661165d bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x28b87a93 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x384ce4bb bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5549e7b1 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5558fdbc bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5a2d1804 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6fd4ba54 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x70ee1d87 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x720916fb bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x722466a2 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7e7c6c76 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x80af41e5 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x98e2f53e bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa27183b8 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbda823ce bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xca3f3553 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xca54a9f4 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf2b7040a bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf35994f4 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfb2c06e8 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0a32ac81 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0bd2a4d6 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0cf50d23 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x145ba7e9 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x194a6dbb mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1d0e8bb3 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x26af904c mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3a22a7bf mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3bef3698 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x45daddf3 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4afe3bba mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5222e315 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x668bd099 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6f7b7a07 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7059cd5e mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x70ef9a15 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x76619568 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7d71193e mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x887f6830 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8b3b9324 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x943982a3 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x947d2d10 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x998567d9 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaa4e29e0 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xac234b7d mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbc820140 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcf01d68e mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd55e55db mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd8d35d5d mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfeb08299 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/counter/counter 0x5069a854 counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x51d9312b devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xddb281d6 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 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 0x56d2640e 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 0xaab8da4f ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd02e197f sev_platform_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0c44056a adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0c4a4f4f adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0e86e3a7 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x128f1134 adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x15a9a48f adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2056e915 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2b9bb881 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2be4e269 adf_gen2_get_arb_info +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x301d099d adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x309510e1 adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3e707f37 adf_gen2_get_admin_info +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3fd4c585 adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x50276975 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x511428f6 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5189ea5b adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x57df9b94 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5c4145ab adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5d21dd3e adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x62916c33 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x678e0142 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x678e9404 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6ca21dd3 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6fdebc0c adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x704d8c56 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x78c4180c adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x808b1b29 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8a3473c0 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9503b89c adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x95eb6871 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9f7ad88f adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9ff0f748 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa1eef9ba adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa758fcfc adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xab553871 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xad5953cf adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb0704642 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb31f766e adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb82982b0 qat_crypto_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb9852cec adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbba5e203 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbf20780e adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc2393a45 adf_reset_flr +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 0xc71ee8ca adf_dev_started +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 0xd2df7648 adf_cfg_dev_add +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 0xdb5b94e4 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfad2fe33 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0x0aeb9261 __dax_pmem_probe +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x2674fdde dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x71426d94 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x89452a40 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x9a5a2880 unregister_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 0xb1bef1db alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xc95466dd register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xfd3a9585 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x01e43bfd dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xa46fdb0b dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x01453853 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x03a474dc dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x060bbbe0 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x27281a31 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x29e55cc7 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x366a8e10 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc325dbe3 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xccb07648 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdfd5ab3d dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0ce87a25 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1efeadf3 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x46981496 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x543b8fcb devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5fc965f9 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6f068ac3 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x83a2e0f7 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa42cb882 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb36f8370 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbfba149f fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdb178347 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xea46934e of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xed0eab13 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf9e7306b fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x033c6abe gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x4a3d3c04 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x632c7a0c gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x890af734 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xfdb6514b gnss_register_device +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x0126bf50 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x3d0a56ca __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x7504fc49 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x03a5dafa drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0a9f4685 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x27784bd0 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x327e30f2 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x332002d1 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3e498b2c drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4459c467 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x49eacc53 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4a409a8f drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x526cbdf2 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5794034c drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x57af9bd8 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x67ce4dc4 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7665ae41 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x81694763 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8816a5fb drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x989973fe drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9aa13626 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa44c6dba drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaab6e096 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb89fce43 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xba753aba drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc6fba856 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe0effda9 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe467e6d9 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf546b2f7 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf5812996 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf78c7329 drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf9302fd4 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xffae28bb drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x08b93d24 drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2432293f drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x30b082d7 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x41dd9408 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4a55cc8c drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x56190fa1 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5959f8ac drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x70c997d7 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa3515f4b drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa8ab3406 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd528bcfd drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xdba20b1b drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe3dc924b drm_bridge_connector_disable_hpd +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 0x4ad6bb04 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/hid/hid 0x01b10674 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x07e7322c hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x14c1daea hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1622a52e hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x18e7a769 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x195127d1 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19f7cc5b hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x24225d1a hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x25b01732 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x25ded571 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2e2de079 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3438b915 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b80271c hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x464e8a88 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4ba96af2 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x50ce6611 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5713f6a2 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x59466800 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x675f34b2 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x676de14a hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6904f93e hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6da32155 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7caec7a2 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x828b94b1 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8bcf217b hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d381527 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x93c4ea4e hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa1404f81 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa219af40 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa30e9cf8 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa5ac3cc3 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaf7be12c __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb225df9d hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbab10cff hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0bd58e0 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0d56c64 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdde70fd4 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf3f4bf2 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xed74b5d0 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf389446f hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf44f8771 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf55e7c62 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfac4b12e hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc185ab2 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0d723230 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1979e386 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5f18371f sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6b7208d2 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x99134bea sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa122a3b7 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xba6da8d8 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcf6a7c7f sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd4437a5f hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x4e68dec5 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xb3251f6f i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xc3480fde i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xc71e9a65 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xf0678ad9 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0x0d8d5175 ishtp_wait_resume +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x42f1f344 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x25541a14 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x49d3d1ed adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x68902c54 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x3571cb15 ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x324865a3 amd_mp2_bus_enable_set +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x3ab17d2b amd_mp2_register_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x59c197b5 amd_mp2_rw_timeout +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x8d045cbc amd_mp2_unregister_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x912be9ef amd_mp2_rw +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x955121f9 amd_mp2_find_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xfe716bba amd_mp2_process_event +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x11ec55d2 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x163a4e68 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x49d89c4b i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x5d793bec i2c_dw_validate_speed +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x842f3227 i2c_dw_probe_master +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd1c2fd91 i2c_dw_configure_master +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xce44c9cf nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x0a4b38e8 i2c_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x104ce976 i2c_for_each_dev +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x15c5bd5b i2c_new_scanned_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x16186d07 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x1dfdf814 i2c_recover_bus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x2944b226 i2c_acpi_client_count +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x30447b02 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x33953350 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x3a55041e i2c_acpi_new_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x540f2691 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x558a1809 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x610dc90a i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x62876745 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x653789bd i2c_adapter_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x8748c1d6 i2c_new_client_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x8d9d6fb2 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x96990650 i2c_match_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x985275da i2c_bus_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x99cc11d2 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa3844269 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xbc4f56d5 i2c_adapter_depth +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc60b3173 i2c_client_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xcfd6f52b i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xf47addc4 i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xfa66661b i2c_get_device_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x488b2202 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x9d6fa609 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xf0a779d5 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xfa5d868d i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x0133a5ac i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x6d71828c i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x00807643 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x04e80828 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x120f0535 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x27fe149e i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x29e68a0e i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3171b458 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3f8cf83d i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x459c8926 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4f4e707f i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x54b8abb4 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5720d8c7 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5acaf2f9 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x675e9c59 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x69859a0f i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6a1e07d2 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x78a97044 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x97e4c480 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xadd13139 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xae415eec i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb0652d4d i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb9d500ee i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc73f2474 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdcc91898 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe977dfde i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfb7aa3cd i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x07363840 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0f218bf9 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1ed37790 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x221b47b6 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4901f14b rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7e5150a0 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8a5ec50c rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8f2c3470 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x90a1e91c rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa6bb2a29 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc4207e6c rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfb523d10 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xf5bebbc0 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xded77c8c matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x00d69ba7 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0bcd9e15 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x132d1c03 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1ebbadf6 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x291cd9cb ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x36b8fe58 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4bd85173 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x566e6a61 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x91c0d53b ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x295f2251 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x510b4380 led_classdev_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x55d2f1d1 led_classdev_suspend +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x668d6ed3 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x86738a22 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x9e57e58f led_put +EXPORT_SYMBOL_GPL drivers/leds/led-class 0xc5c3b409 led_classdev_resume +EXPORT_SYMBOL_GPL drivers/leds/led-class 0xca84a243 of_led_get +EXPORT_SYMBOL_GPL drivers/leds/led-class 0xd237df63 led_classdev_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class 0xe67de33d devm_of_led_get +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/md/bcache/bcache 0x00bc0e67 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x097fe671 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0acd459a __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0cf44c29 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0e6feda3 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0feafc9f __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x11825297 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x12032f2d __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x14fb2d9c __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1d0011ca __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1d74801b __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x213f3afe __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21b87a42 __SCT__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22cd2e4f __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25cacb14 __SCT__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25fe6022 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x273143e8 __SCK__tp_func_bcache_bypass_sequential +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 0x2a4d170c __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b620a01 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2c3bc7d4 __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e1d7e4c __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x300c8ff4 __SCT__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36f317a4 __SCT__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37104463 __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3f3c22ec __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fed28df __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x406e7bcd __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4543b49b __SCT__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4556e298 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4644482f __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4845c4c8 __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a267012 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ccd95d3 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4d122f29 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4dd5916a __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4eec07b9 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x551f4e2d __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x58c12a55 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5973f21a __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5afd8436 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dd80bd5 __SCT__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e6fb0f7 __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f35fcd2 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6279f1ce __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x629c9180 __SCT__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64b6c998 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65544190 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6677ebf0 __SCT__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d8d1825 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x738157bc __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x752f7fa4 __SCT__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7857bc9f __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x787810b2 __SCT__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7b518755 __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7b9627c2 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f252e00 __SCT__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x817ad796 __SCT__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x822db771 __SCT__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8788e082 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8e0691fb __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96d371c0 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x972aa384 __SCT__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x984f1be3 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x99345198 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9981768b __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d28d153 __SCT__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9f16d636 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa15bd7c4 __SCT__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa784e073 __SCT__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa809190f __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad96f605 __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xae503676 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaefab1b8 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb26661bd __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4c8fb1f __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5bc44cd __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7e5379d __SCT__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbddb2a3b __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0b13fbe __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc73e0c99 __SCT__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcb7aad7d __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce451ad8 __SCT__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd25f9d60 __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd30206ff __SCT__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd44a04f8 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd5087b3e __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd5641b0e __traceiter_bcache_journal_full +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 0xdb09f7d9 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdd87f132 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe0cd64ad __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe2663ce9 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe4962a47 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe69dff2e __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe76463c2 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe8cc6790 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe9de9401 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeb71051d __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedf90bb3 __SCT__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeed7d8b7 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef2696b0 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf0adeecb __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf25368c7 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf3025e90 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf461cb13 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf4e4545e __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf57f81ae __SCT__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf639f9f9 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7a5edc7 __SCT__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfae9e4b4 __tracepoint_bcache_write +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/bcache/bcache 0xfd07209a __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x10c3d9d5 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 0x19944227 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1a953b93 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1f49c75a dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2e52a53c dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x59460b39 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 0x68904331 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6c4e3a1b dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7010ed5f dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x88b5212d dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x94edb607 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x97a2c69b dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xad85052c dm_cell_put_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 0xbf5405ae dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe4a83707 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xed04eca9 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf6fb1e60 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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 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 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 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +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-bufio 0xfc797fab dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x25e713cf dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3dc4f4dc 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 +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 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 0x1bf629ae dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x6b16aeaf 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 0x221e5b37 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5cd9c9ba dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0xa87c5ed1 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xae9d08b8 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xaeb3dca2 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 0xef67fe94 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 +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1125b94a 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 +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 +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 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 +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30a26537 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30c37cc0 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x382a0134 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ae50a4a dm_tm_inc_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 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 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 +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5736c9c5 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x586705e1 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6b2357b6 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c218062 dm_bitset_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c2c7ef4 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7062014c dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x73420d49 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x75606d09 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x79bdc649 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b6b3af5 dm_bm_read_lock +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 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 +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88a5c035 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8db6f8f0 dm_tm_with_runs +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8f5eefee dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x925f421d dm_array_info_init +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 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 +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 +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 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 +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 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 +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 0xdf3a4e7d dm_tm_create_with_sm +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 0x03c29645 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0b99ebf6 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1b007a2a cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1c09ef53 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1e24b93a cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x40daa73b cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4a13bf8a cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x57430795 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5b5b04ce cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6a7e7e09 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6cd88e13 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6d861313 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x70785e4b cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7268496d cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa0c76312 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa45a1bca cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaf6e0b8f cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb42b58d1 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb5e1f5a1 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe419ef6e cec_transmit_done_ts +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 +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb40fae23 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +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 0x056de027 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0a53b33e vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0f603185 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x21fa5954 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x240e12a1 vb2_core_streamoff +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 0x2fef7942 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x309ad29a vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3617f33f vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x45167939 __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x471c26e6 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4b1815f8 vb2_core_dqbuf +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 0x6506cf0a __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6ef95bf8 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x80e17e8a __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8353b18d __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8b11755a vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x924bdc85 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9261c089 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x96427694 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa23a58b4 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa2f8d274 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa69136ef vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa9619e72 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xadd6b304 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb018361a vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb0c210e5 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbf706644 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbf86a5a5 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc24a3b2d vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc35165de vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc54c863e __SCT__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc63bc0cd vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7920841 __SCT__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcd53b4f4 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd4f13820 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd93d1032 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe3769d4a vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe557a0f3 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf7db02b0 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x3865e462 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x7da148f9 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x6e1062b1 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x4ad3690c vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x05d3b430 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0c4fc07c vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x16e92a4c vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1bb6a678 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x23137822 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2f9c034b vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x331d3e67 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3a290345 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3a4f871b vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x40e4847c vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x49fbf8a8 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4f5064c0 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x52c30f47 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x52fa2de5 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x59503e82 vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5b0e51f6 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5e09e46b vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6c9c4aca _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6da11c15 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x80bba99d vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x81d7180b vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x861c407c vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9661b887 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9ae0c9e5 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa0c19eb8 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa83044b8 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xad7c6668 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb20ad2d9 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe5eaa2d4 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe777eb0c vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf1eae10c vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf2e7f57c vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf71ccc5d vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfb98a7e6 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xc5d5e945 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x05a5718d media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0a12d5a4 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0bf038c5 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0c26bf1f media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0cd10e11 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x23fa579b media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x25bd1151 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x311924df media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x33de3496 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x34967035 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x374d1493 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3a29a740 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3f05fbeb media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x40472808 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x43ea0197 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4906e835 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4c094223 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x59a41510 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5bae8b1a media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x644d2461 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6c84ba88 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x710e8bdd media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x75a9759e media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7b3db4a2 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x80fb2c57 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x83ad446a media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x94ae237e media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x95f6cb75 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9c1d92d8 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa3120db3 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa5066343 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xadd6342f media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc404c8b2 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc8eeb77c __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd53ffdfd media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd73541d1 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xda1fac11 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe1471182 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe2194cf5 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xee92933b media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf76e543a media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfab24c8a __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfae294c4 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfdc849c2 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfdff9b00 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfe404485 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x23a37bab mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x318a1928 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x35ae9d64 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x3f10b96f mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xa3a8145e mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1320c4a6 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x16d65585 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x20034df2 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x434688e9 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4cce09f2 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x56b3c645 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5b3ec9e9 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5fbf2f69 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8976a5db rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8cf8178d ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x92a12568 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9e53806f rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa55a5c09 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb0e43456 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbbf5a5a9 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdaa531ef rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xec2d72be ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xecb1f7f8 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x3f79b26c v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x46bce51c __v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x4afcb8a0 __v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xa4124c4f __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xb47323c2 __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 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 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-fwnode 0x37fc8c05 v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3be0b89f v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x596d29de v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5d35daed 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 0x63a26653 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa013484a v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc7eb4302 v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd21dfb32 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xdc9b0626 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf9a2b65c v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x04578874 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x07bdfbb8 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0b6830aa v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0c83732c v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0cf25223 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x128e16ab v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x13cd3878 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2040c3ea v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3254c57c v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x34bb29ea v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x357b0f03 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3e3f3794 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x44683bd0 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x44e267a8 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x457273e9 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x47f95e70 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4a8925f3 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4b991024 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f4ea22b v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x542e9b55 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5566863b v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5617224e v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x57bac39d v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5bc796aa v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x65cc473b v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x67166989 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6b548490 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x70ed6580 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x75fb56eb v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x77740f81 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7e66bcc2 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x868e6dbb v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b7c58c7 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1dd7691 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbda828c2 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbdb1e908 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc3e4904c v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6307ac9 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6ca0a6d v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcc9d1c3a v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd251f581 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd4710d22 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd52fdaf3 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe24b3788 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x11807483 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x12da6e20 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x15f85532 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1c7e358f videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1ca0f99b videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1d088e76 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x274b2987 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2e1ee2fd videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x30e68f1a videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4293ef13 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4d2631c9 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x525ac97f videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5d682a11 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5f80f206 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6deadb7a videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x75eeccfe videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7cac966a videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x920b875e videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x98a4ec2a videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb9262c1c videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbd847fcc videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe0abdf5c videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe4903f85 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xffef05e0 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x38816b1c videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x77fb3624 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xb18299a4 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x017dc058 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x01a887b4 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03cc2af3 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0415208a __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x099455b9 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x14093dde v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x17716f53 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x18b2c9d5 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1db3a7e1 v4l2_subdev_alloc_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x200a8a26 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28d8e88d v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2d9f592e v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2de5dfd6 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3256869a v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x33099e5d v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3fa4205c v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x41280883 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43d9194c v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x450cf653 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b7fac04 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5305bd9e __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5673e63a v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5af531bd v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c16ce17 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5d7195da __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5da50707 __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5f1ac6f5 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x609c604b v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x648a5820 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67799cb7 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2a16c3 v4l2_create_fwnode_links_to_pad +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 0x6ec13952 __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b9950c8 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f9b2e1e v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x83fdd64d v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x896e4a6a v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9218895b v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x968356cc v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ac91a94 v4l2_event_queue +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 0xa2feb6ed __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa494b54a v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa68f7ee6 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae076527 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb387ee06 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb805fd3e v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb8fb090 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbdd87400 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2eff81b v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc66e08cb v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc85f9f97 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8dd867f __SCT__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcadbf29e v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf21ec30 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcfe385bd __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd12bb880 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1522ca1 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1553258 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd541e31a __SCT__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdaf0e578 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe1c90317 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe1ca2bd6 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe26411ab v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4d1147f v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf1daa446 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf221a88d v4l2_fh_is_singular +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 0xf7112eb5 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb916ca7 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd0d61ca v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x182b7a72 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x1dae38f9 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x6dc970bf pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1bf96ca6 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x286aef5a cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x39ea9648 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3fcb126a wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4382c100 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4a71d0e7 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x632ab827 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6d0105d2 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6e67176d arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7092bc0f arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7cf3d326 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x81a0871b wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa534f959 arizona_set_irq_wake +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 0xbaeb6d8a arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc2984657 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd7a92e03 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xeabcd6cc arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfb9ef70c arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x4b095d70 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x7e7510fb atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x7118cb89 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x85225ae8 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x88f3e725 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x93a6e029 intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xc86e68e0 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x05754060 intel_pmc_s0ix_counter_read +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x2622baf7 intel_pmc_gcr_update +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x4ceb9055 intel_pmc_gcr_read64 +EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa86d731e lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc461fbf9 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xf6ea1ae6 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x03e3ff7c madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0630cb56 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x063d1716 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x173a0c18 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1b163c63 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1b1be023 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x23793499 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2c97279e cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2c9afbde cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3442502e cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x344f8c6e cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4505d65a cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x45080a1a cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5823216f cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x582efd2f cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6fa23a92 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6fafe6d2 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x77774d22 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x777a9162 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7e28207b cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7ec68ab1 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8fc67c96 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8fcba0d6 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb8834d51 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbc58b5fc madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xccf3619a cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xccfebdda cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcd9c8f18 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/max14577 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL drivers/mfd/max14577 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x47cdadbb mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa0976ae1 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd687ea72 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe02d21c1 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xea6444f5 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf222d4a9 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1d1a10bd pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1e6d369d pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x337ba10e pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x52c1d66c pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5a5f9aed pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7612b705 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7dc59440 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8ac34d9f pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x91c16d81 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc77a4722 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd9ff2a5f pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x0e1ed3ae pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x3026c69b pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x05c57d51 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3aa76e72 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5a63a19b pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7780cad7 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x94692541 pcf50633_gpio_invert_get +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/sm501 0x7084bff7 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x93c683cb sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x97693bc8 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xcea18e02 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xdce687ea sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x1ab68e26 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4773c301 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x6c44224e am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xcc7c6484 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x173459db alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x262b607d alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7b870cf9 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x881b59d1 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xcbd1138e alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe479956d alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xfeb2c5cd alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x11195d41 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x18ea0cca rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x27b404db rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x29c3edba rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3c47784e rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x42ce2393 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x498af2a3 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x632ed60f rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x78b3674c rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x926dd4e8 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x98b2ed2f rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa1873dae rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa4e803cc rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa7a49bf9 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa9a34114 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe11a562e rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe170db75 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe83d9684 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe8ae6203 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xeca5afe6 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf011d3d2 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf423b2b0 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf92598fa rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfc6feaf5 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x3cb83d5b eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x870b53e9 eeprom_93cx6_write +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 0x00ec0153 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x018be9d6 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0f3ae5e0 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1833740e enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1e1681b1 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x59c166b7 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6767b3ce enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x71818105 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0b96914d lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1819af87 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1b5468d7 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x37d84a60 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x674400b4 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6f2b34bd lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x75a36366 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9674adc8 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x052ff680 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0f8ec2dc mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1d962377 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x270cbb40 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x27689559 mei_cldev_register_rx_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x27abdc2d mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2b4c4f11 mei_cldev_recv_nonblock +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x300e6280 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3d7e2e61 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x41cc5d83 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4b2275e6 mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x692d4551 mei_cldev_recv_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x76542efe mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7da1318a mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x86b01ec2 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x87346bff mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8a7c9031 mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90d8ab68 mei_cldev_register_notif_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9f75bdeb mei_cldev_send_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb311bfbd mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb78d032f mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb8694ff6 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd467d46b mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd73ddd18 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xde9471a0 mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe1942e9e mei_cldev_recv_nonblock_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe50d0d29 mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe6515221 __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xeb731e3f mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfe633641 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xff9ad2d2 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x392b1a80 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 +EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0xd3d2bf04 gru_free_message +EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0xde08c325 gru_read_gpa +EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0xeed7d505 gru_send_message_gpa +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x1018eee0 xp_restrict_memprotect +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x12333991 xpc_set_interface +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x345c9217 xpc_disconnect +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x39046c7a xpc_clear_interface +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x48e62c9f xp_region_size +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x6285dfe8 xp_cpu_to_nasid +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x64ba5017 xp_pa +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x68d27065 xp_expand_memprotect +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x68fa7d28 xp_remote_memcpy +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x8d146cd0 xpc_registrations +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xc04c7267 xpc_connect +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xe68acd6c xpc_interface +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xead4f7fe xp_max_npartitions +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xed1d3813 xp_socket_pa +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xf3b47f67 xp_partition_id +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x11d9a4f0 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xa24abf64 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xdfb20094 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 0x83f557cb vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x8dbeca83 vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb2722696 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/most/most_core 0x29ec457c most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3e1aa126 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4e753642 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x63c667fd most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x782b1c8c most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7ac22058 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7b35cbb0 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb4b6fa72 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbdf2213f most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xc843a31b most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xdc4356bb most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xddac89cd most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfca5ae14 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfdb1e58f channel_has_mbo +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x060ade3c mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x165ac365 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1ce1e2e8 mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x356b1649 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x38b87700 mux_control_try_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4faa7993 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x709dddff mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x72190c08 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7b04275f devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x82753b5a devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x945cc8d8 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x982f41b3 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf9b0c1fe mux_control_deselect +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x27d69b62 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x9bff86f3 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/bareudp 0x237824d9 bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x039a7af5 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x13eacb64 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x19aa782e alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x71542657 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x846c0a5a c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdd38beb6 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x169c431e free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1e895ecb can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x224c7333 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x24aecc2f can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x258af53f alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2b64605f can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3c70a73d can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3e2ef84a unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4194158c can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x49f4b72d can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x504bd6ac alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5497d3ba alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x576363ff open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6e1f545e can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7cbc0d88 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x830d16a8 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8b084ec5 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x911e2597 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9b64fd26 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa0b253aa can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa6cf4d27 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xacf775b9 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb0a4ae66 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb861649d can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbcd36a3b alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcfcd5c38 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd5d95dcb can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe8747375 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xea8bb96b can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1cd74000 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x44e4fe6a alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x499d5ee8 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa739a171 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x27676785 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0dfed279 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x160fe6cb ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1de8b538 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x28d0d05b ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x39722201 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4339253e ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x44cace1e ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x50991555 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x65ac2828 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8656e6f8 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8e5b7b8a ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb5696c55 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xee7deadd ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xfad3386a ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x17af912c rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x19ccb8ff rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1c501bae rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x28004497 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x45bd25dc rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x98612c6a rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa82e8d88 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbe22dcc2 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbfab202b rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdb5e91f4 rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdfd6da28 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe120098e rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe277be8f rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf00168f4 realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf60838d0 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x076c7cc0 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xece8fdee i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x02dfa665 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x86339929 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x90c5b540 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb6feda55 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc35e5514 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x008c1dc7 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03309f36 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0486ce2d mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dbd3f60 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1234493b mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14ebc32e mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x159fb4eb mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1683673f mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a4dfee2 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e23da6e mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2006de1e mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22ae514f mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x241ebb73 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2495a0d5 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2505dcfc mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25e85de5 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x267d2670 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2784b19f mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2aa1992a mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2eb3f21f mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3106bab8 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31cfbc97 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x325b6ae1 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33965d44 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x339f9b7e mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38b639b4 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a0edd52 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a68a55d mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d4dc4b2 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d980ed4 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40b09322 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4384a1af mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4466c3b1 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x448ec65e mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4602ea82 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46139237 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4646ea9d mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47bca44f mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48821e24 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a2bffac mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a71f0aa __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d30af40 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e1291ee mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5056ee90 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51ac0683 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5412b969 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x545491c4 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57ad2ab8 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5857cd71 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5973ae54 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d08d602 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f3e4750 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60aebaf8 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62a4af68 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x663626c4 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x664d5d02 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67b4f7cc mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x692cb0e2 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69fc4348 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d120714 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d94feec mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f684e85 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71386de1 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7265716d __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x734bfb67 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d24645f mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e8510ff mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f33b107 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83a90c92 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8428a7ac mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cfb91ec mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e85987f mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93b9ff43 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9470bcda mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x947a35aa mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95e23b71 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9771587b mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x989e4ad6 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c4e0780 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d4e10bd __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa04adb83 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa118b5fc mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa31bf2ea mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4db0e71 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7ff472f mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9b3fe4c mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab9e3e49 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac77a603 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf141eef mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb09ae397 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb391185a mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4896ec2 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb84905d7 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9081904 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba9e7826 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbaad8385 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb2ca23b mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf61c337 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc10da95d mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcab1c2e0 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc8dcffe mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccb90ea4 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xced02b2e __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf03f82f mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd34d7a50 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5cc3a88 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd607d19f mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbb520d4 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde482535 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1e0b1f3 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe204470a mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3cbd9d6 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe974bf35 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe99d29d8 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec42c7b2 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef73908f mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4c53d3a mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6d655c6 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9c742a2 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa0fcb5a mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe49c5e9 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00c75fac mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x012dba1a mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02e0a7a0 mlx5_nic_vport_query_local_lb +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 0x0bc8cf4f mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f41fc81 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1346c665 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1500b6c5 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1622e021 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cf4b4eb mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e1cf419 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f6a9b65 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35c4d70c mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3713ed15 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38cdef2d mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a8e05f9 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fa8a67b mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x491d382d mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e7b8943 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54b3ad74 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57c3582c mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5aba54db mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bb203a7 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e2914ec mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61884b88 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62bfa7bd mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6334b654 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6420b85e mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c7d3b9a mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x744595ae mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7eb51caa mlx5_frag_buf_free +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 0x83716eb0 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85348478 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8575e073 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87913231 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b139216 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91e96996 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9230ec9e mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93229ff8 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x932d613a mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93966600 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x946c9437 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x963ca6ec mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b17237a mlx5_query_mac_address +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 0xa8d1fd98 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9385d63 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2724ee0 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3c63e47 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb82c6c9f mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd275e1f mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe3b56f1 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc52e373d mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5e28936 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb283c0e mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce2a72a2 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd26ce899 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd28f780f mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd879122e mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd9b6e78 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf64b8c4 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2d8ee2d mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9f4a4e8 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee89af3b mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1880490 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3025d37 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3243bcc mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf50c0eef mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8340557 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9cbdffe mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd27c141 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdf86133 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff3786a6 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/geneve 0xa73e21d9 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x0616e11f ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3953922e ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8a7b1bcc ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc3ae26e4 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xeb6f6397 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/macsec 0x4711935d macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7bb15fe1 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa02191a4 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xad7d17d2 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf7aae058 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x9863d659 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xcaa3de6b net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xce1e9d24 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x1ef3f430 xpcs_validate +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x37b731f3 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x39a978f4 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x6788f1d5 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xcb58d841 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf7670909 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2f567ead bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3012cd65 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x30970523 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3889d7f0 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x38f367eb bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3b153f0c __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4a231eb8 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4af604de bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x544ba587 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5cfdf616 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5d6a6046 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x654fc081 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x65c95bd0 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x694a36a7 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x89d2a26a bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8c03803e bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8cbcae37 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8d832966 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8e1fc19a __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa0438984 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbb72464a bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbfee6f33 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc13ad0ba bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc3491bd4 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xce49c128 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd09f328f bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd3ffc423 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd86b8d05 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdb04d4e5 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe5a88a81 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe672db59 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf26811be __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf55c077c bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf959f15a __bcm_phy_write_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 0x1c6a4e2d phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x1edd2b11 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2f51dd16 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x41eb49e4 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 0x5de333c9 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 0x68a206df phylink_mii_c45_pcs_get_state +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 0x8f6382d9 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 0xa8c6b2b8 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xbb516d4e 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 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 0x0c2117ab tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x29610db5 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x85a0f572 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x8685fb64 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x9352f5ca tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xb8b98b14 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xcee8a624 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xfa7f77a5 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xffe040cc tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x6a8949bd wwan_port_rx +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x970f8fa3 wwan_register_ops +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xa41520c9 wwan_create_port +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xda9034fd wwan_unregister_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x677ccdc9 mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xab09cb5a nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xac184a38 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x1e6a993c ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x55427b58 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9499001e ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 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 0xcc040d7a virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xe0d4d848 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x348e2b40 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7b3c62f6 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8f257737 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb2022cea nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb7dee89c nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd34f900d nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe7827f44 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xec8eb663 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf5f7e713 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfaa08711 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 0x540da97c 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 0x3983855e nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x399ac876 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x474fdde0 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x59ca1c8f nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6197d93b nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6a6c8ebb nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7c1c4b60 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7fad36b7 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa1d5c6c9 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa7aa3a67 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf6c42443 nvmet_sq_destroy +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 0x777e7afc 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 0xc0f0ad4c switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x5060985c mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xc67b6cac mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xf600c843 mcp23x08_regmap +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 0x1ad39689 dell_smbios_unregister_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x1b0b3141 dell_laptop_register_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x45170471 dell_smbios_call +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x76411e09 dell_smbios_register_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x7fd2ce06 dell_smbios_find_token +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xb6ae3b95 dell_smbios_call_filter +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xb9400dbf dell_laptop_call_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xc2871e79 dell_smbios_error +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xd6c6b12d dell_laptop_unregister_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi 0x9d4b709e dell_privacy_has_mic_mute +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0x8eef8246 dell_wmi_get_hotfix +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0x9559234e dell_wmi_get_interface_version +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0xa167d064 dell_wmi_get_size +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0xa3dcfa65 dell_wmi_get_descriptor_valid +EXPORT_SYMBOL_GPL drivers/platform/x86/firmware_attributes_class 0x8ce864e3 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/speed_select_if/isst_if_common 0x06f7821f isst_if_mbox_cmd_set_req +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x58a8261f isst_if_mbox_cmd_invalid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x861369f8 isst_resume_common +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x97246c58 isst_if_cdev_register +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 0xaba1942d isst_if_get_pci_dev +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xe18f42a5 isst_if_cdev_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x1c7565c2 telemetry_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x5bb8e91a telemetry_raw_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x665cd407 telemetry_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x6b892524 telemetry_set_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x90551504 telemetry_add_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x9deec96c telemetry_set_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xb75bd1e6 telemetry_raw_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xbb9a2726 telemetry_reset_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xd14ffffc telemetry_update_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xe1eb4be1 telemetry_set_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xe8847f53 telemetry_get_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xf00771b0 telemetry_get_eventconfig +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xf9d5ad60 telemetry_get_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx +EXPORT_SYMBOL_GPL drivers/platform/x86/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 0x4556a8ec wmidev_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6068bedf wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x75b65df5 set_required_buffer_size +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x76ae31fd wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x9cf1f29a 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 0xf18bdd75 wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xa77bf5cb 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/fdomain 0xa99cd061 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xe562d260 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 +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7e9bb800 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa0772fdb iscsi_boot_create_acpitbl +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/libiscsi 0x008188cf __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e3fe33c __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28b63157 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x315a0db5 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x373b7cfb iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3857ad73 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x38fd2b1e iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3a7fad7c iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3c401dbe iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40434ff7 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d8187a9 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4e097610 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x53e4019e iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a450e88 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b0e7bf7 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6624bf62 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66c182f2 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x67456a9c iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6804e975 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e0e6d5b iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7aae81f6 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x85fb169d iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x866633e2 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86e00b4e iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x89c2a282 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9cf769ef iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9dadcabb iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa58fd169 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac54cf9d iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb358aeef iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3ae51eb iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb6ddfb89 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc390a6a iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc99dce2 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe8d437a iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6257e53 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc813abc8 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb5e66df iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd52c7d1 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf2d199b iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8e77c9f __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9acc63a iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9c84c3e iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda2c6e68 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc72f7d4 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdedaa0f5 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf17b4632 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf76eb920 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x01558ca9 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x16632343 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1a44ce23 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1e8f7aaf iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2f39a036 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x327bec0c iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x35464c82 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x61819d33 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6dd47592 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x77022245 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x77b0bf53 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7b3d5890 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xabef2526 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd88a593a iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xda8b0a8b iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdf1ff98e iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe7e7e2ca iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x23d63a2f sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x255bb701 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x290ca657 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2f26fb00 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3cde4bc0 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d79875e sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3e34c2e6 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4041bff0 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4dca5135 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4e5d7540 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4e782a8c sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5c5edf40 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6a3af3e5 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7cb738c8 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x873f8535 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8a8ad3b6 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x95883bc5 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa118b30f sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb573207e sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xba147911 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbc29e879 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd62e27ed sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc6cb008 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc6e9428 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdedcdacd sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2d3f3e3 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf1ae7835 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x02f425cc iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0838f0f1 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x084fc2ab iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0978d9ef __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a33116a __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b632a6b iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x119f9cd8 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15dc8bab __SCT__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x164da637 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f6c2fcd iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x27539e41 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3315c87d iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3cf398b8 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41f5d355 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42bf6df1 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x445f992b iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c6de7cb iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d78fe38 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4f7f14d6 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52575134 __SCT__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x53842669 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x56afa4d6 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x577e850c __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x581e3983 __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f253453 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6032db6d iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6033860a __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6bc9c628 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x73827a90 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x78cf8b21 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x821a495f iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x856d10f8 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x894a0759 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a4d007f iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c69fbc9 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9193e356 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91c1bed9 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9200ad33 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x92fb4039 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98a6fb98 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ca16a85 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa61b4ca0 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c4b5e1 __SCT__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb150e498 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3df93b2 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbec67fa4 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf17579d __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf2c25da iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2a79cbf iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1a57b64 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd815fb17 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd83d7610 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd91b7d1f iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdc3e84dd iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdcd197b7 __traceiter_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 0xe4721f84 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf054efe5 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf18b3223 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf395f91f iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e749fb __SCT__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfef28aa6 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff4e5cc8 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3e911b22 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5e899cf3 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xad4e7ea9 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf0b29481 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 0x5e45c9bb 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 0x02e0d590 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7dc84401 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xccebafd4 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xcf94d824 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe56b6cc1 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf25f3a11 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x094ad20b siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1e13ef62 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2359b6c8 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x548cb5ee siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x849a158d siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x946c6088 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0bc36af8 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x11b803cf slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x22ced534 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2573be5a slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3306ebdc slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3b9f2a4b slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3eadbcfa __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x52defb96 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x535c039e slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x554d0cf5 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x576aff0e of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5a7f5667 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x61593b71 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6ba07795 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x70a1886b slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x733850fe slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7e2a3291 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x96d200a5 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x98c483fd slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa3f11959 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaadfd49c slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbb370593 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc3354bd3 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdc660120 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xded95584 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xee3eff75 slim_msg_response +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xa4eed266 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xe2a87270 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xf62db972 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xbc4bca59 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x633d3952 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8f7f7f07 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x95a486c1 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9dd32867 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9ea42458 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbf6ae412 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1a9171a0 dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3f138c1c dw_spi_dma_setup_generic +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x485c8ce2 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x49e7c693 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x78145830 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x929c35d0 dw_spi_dma_setup_mfld +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9576c8f4 dw_spi_check_status +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9a639057 dw_spi_update_config +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xeceffee9 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x7f5b7336 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x81564195 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xe8d6ece6 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x51885ac7 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x2c684397 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x518edb02 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9d02f5be fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf08197e7 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x9bfdde40 load_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xb5c149de apply_msr_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xd3df4065 release_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x10cef7a3 gmin_camera_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x3e0d02fb atomisp_gmin_find_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x408cb5d0 camera_sensor_csi +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x54e30335 gmin_get_var_int +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xae433b4e atomisp_gmin_remove_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 0xcac99ee9 atomisp_register_i2c_module +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xd14bcaf8 atomisp_get_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xf72959a0 atomisp_gmin_register_vcm_control +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x05e1eae8 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x40be3b4c target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x98103596 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xab4d9b38 target_submit_prep +EXPORT_SYMBOL_GPL drivers/tee/tee 0x15dadd9d tee_shm_pool_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x193f8bcd tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1d653dfc tee_shm_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x27fec4c0 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x297009df tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x302e5e7c tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x352d9969 tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3956e0e8 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3ff071a3 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x417cbc5d tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x52680195 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5b8ff89f tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x60534a59 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x66c68317 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x709cdb3b tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8079e5fc tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x81e63dd8 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85aae580 tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8927ae7e tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8aaea611 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8b60650c tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0xab45ae97 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb90f32f0 tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc5e0753b tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xda88ad9b tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xdb790fe9 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0xfb6b5f38 tee_device_register +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x2b3dc684 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x7855a7d5 int340x_thermal_read_trips +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x80c60a39 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x87d7dd00 proc_thermal_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x9a3efbd4 proc_thermal_mmio_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xb8525a0e proc_thermal_mmio_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xd0f385af proc_thermal_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xd35a8f63 proc_thermal_resume +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xe692d62e proc_thermal_suspend +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x09cf62bb proc_thermal_mbox_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x8fa578a6 proc_thermal_mbox_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x5bd963d0 proc_thermal_rfim_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0xb2c73b5b proc_thermal_rfim_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x27b2c3fb intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x7b6e3fed intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xa514f6be intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xd263ca2e intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x12f4903d tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1f1dfefe tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3ebc9581 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x41a6e92e __tb_ring_enqueue +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 0x501d1623 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x50675fc4 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x61af6a20 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x63f947f6 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x66859f74 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 0x7e4ff14b tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7f6cf66e tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x92f1eb1c tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x95bcbeb7 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa6b11d50 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa95ebe30 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xad12ffdf tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xaf4c6413 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbcf795a8 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc4a1d8dc tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xce9bbfe2 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd2d7027b tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xeede9a71 tb_ring_free +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 0xf81736e6 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfcab7a08 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/uio/uio 0x997dc3c5 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xbe59649d __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xccd9684d __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xcece5aa0 uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x07bdd675 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x366ee366 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x38fac9ad cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x4f837078 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x537c78b6 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x97c496b4 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9b8389fb cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa42bd390 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd43b4635 cdns_set_active +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf58ddf17 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6a13d023 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa146d568 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbcea0a3e __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd093d0a4 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf0b9fb39 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xfd243bc2 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x18797b3d fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x4cd8c668 usb_role_switch_get +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xab9318ab usb_role_switch_register +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xfcb5cd58 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x015de439 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x15352281 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1dc26105 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x504de7ea vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5fa7bde0 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x652c8091 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7ea4eeea __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9abfbcf6 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9e0bedf8 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x19dcbd4e mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x03082dd6 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x045d2194 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0dbacfda vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0ee68eaf vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x12c0ed33 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x14a3bc64 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1c32cde7 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2bc43c0d vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3c552bd9 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3db36b42 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x420700e8 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b1141ee vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4d8ac122 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x565ec226 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5df4ab3a vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x630bab43 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x63e87831 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x65232c5e vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x660a1df4 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6876feb3 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6881d6ef vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6c2f404e vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x704d2930 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x73cf7f54 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7605812c vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c5971d9 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x831cd933 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x83ef5515 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x84f10729 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x93a5e803 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x955c7087 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa1ad5888 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa25b796d vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa6d5867f vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb218fe5a vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc3480778 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8158b1f vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd1182f52 vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdd8dc5dc vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe6aed369 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe7a7ac36 vhost_get_vq_desc +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 +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x6bec0e66 vhost_iotlb_del_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x83be64b9 vhost_iotlb_itree_next +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x885512a2 vhost_iotlb_add_range_ctx +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x5758122d fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x886b8402 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xa27b1a62 fb_sys_write +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 0x8d7e5e5d 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 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x04f5b19d visorbus_unregister_visor_driver +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x0e338292 visorchannel_signalempty +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x4de03230 visorchannel_signalinsert +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x56401853 visorchannel_signalremove +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x72219d88 visorbus_disable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x8b518357 visorbus_read_channel +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xba2c1dc4 visorbus_enable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xc0807d6f visorbus_write_channel +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xc455c651 visorchannel_get_guid +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xcf011741 visorbus_register_visor_driver +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x08dfabb5 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 0xa88fbf83 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 0xdb789950 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x18041607 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x491d0169 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6461774f nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9de5bbe1 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc451c46f lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd020ba4a nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe5f6aa6a lockd_down +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x019c59b0 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05997e96 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0629099d __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06b538b9 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07b9c9ce __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x080f20d1 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09a1e2ac nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09f378ca nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f146c17 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1307507d nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x135a0776 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13def30a nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14981162 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14d5ade7 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1536a371 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15f34ebf nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1678aced nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18a1b1a5 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19467cae nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e2d40e1 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x213228ba nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2141743a nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x217dab57 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22f4558b nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24118fbf nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25bff190 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bdc9f3a nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d1ee2b5 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d98a1f7 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f6eba54 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3399a5dd nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37239e6d __SCT__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3afac50f nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3df2a939 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e82bb3f nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f0f02ba nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x402c9736 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42d04e90 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4596ea11 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4611f398 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46f3e2a7 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b621aae nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c7ba6f4 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d3f8e03 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f12d3a7 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5366901b nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54bfdc5a nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57cf8db1 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b61071c nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c8cdb26 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d9c091c nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6161ed71 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61af4102 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62966bac __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62a056ed nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64c5f47a nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x660dfc71 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66b22cfb nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6776ba3b nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b69e2a6 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d417bea nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ff50ddf nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x718b69d7 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7847b30a nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x786c5ea5 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78a32b18 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cd44d47 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cedb04c nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e1329c9 __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fc86f5e __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8177bd50 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81f577d2 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83532a98 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83ed7b91 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83f69538 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8524a63b nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x855f8452 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x861d8b5a nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ac81a2e nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e623a3d nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x900000ed nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d9e54a nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9818c42b nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x985ba585 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c3921b6 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c8a83f3 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa04593fe nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4cafb08 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa79a8426 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa5009b0 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac43d141 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xace9466c nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf0f4679 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0b801ed nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3fc4fd6 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb57da510 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb600cd36 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb658fcbd nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6ffdde3 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb73c42ab nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8de56ea nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbac480d4 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbd3d798 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd4c2dbb nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd7a6028 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbffa9a69 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc159ef2a nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc15ed992 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6d5cc14 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc77ab9f1 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca5b9e42 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccad613d nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdd0ce14 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcde71e35 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0aa57a5 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd11e7667 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2337649 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2ec8d0b nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3b8ee7d nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3e5a611 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7883195 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8865654 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8ddcfb4 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae6be92 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc8bb0b9 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde872815 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf6d326b nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe12dbe3c nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2a67c18 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3679717 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe37ccbcd __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe83b9715 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeac53e20 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb1bd1df nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee366d42 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeecc3da9 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefa1a8c5 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2aaa09e nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf536bccf nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5597bbb __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8c2cc65 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9431bc8 nfs_lookup +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/nfs 0xff9a6e72 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffbeb147 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xf200054f nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06869503 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0847ced5 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0938b492 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a2c3b19 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a9ce309 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f2ac9ff __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1272a6f5 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x128f0401 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x136b1528 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17fb2d15 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x183c1090 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19a23d87 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b35d4aa pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f858980 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2036946f __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23218167 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23557f96 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x239f741c nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25515af2 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25b5d2f3 __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2613aad1 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27f5909c __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2933ed67 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c6d5d24 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2df46542 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x375eaaf1 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3bd442eb pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d52867d nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40e08d39 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41405a71 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x454e6670 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x469401a4 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a03e5fe __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b86fa19 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e35d148 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ebb4849 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55497ad1 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57617ef6 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5979314d __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63826d35 __SCT__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x653e42a9 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65cb3dce nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x662c882f pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66bed419 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x672a3e0d pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a5eb444 __SCT__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a925097 __SCT__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b76ea28 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6dc34320 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6debb2d1 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ef1ca8d nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70d657e9 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7120372f pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72d05367 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x734af830 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7361538a pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75723598 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77e98d90 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a78d059 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d040285 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e42bd3f __SCT__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7eddbbca __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ef69b84 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f0c88a9 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87c2d19c nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87e6c15b __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e0e84ad __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91bdb62f pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930a94fd __SCT__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96c4643f __SCT__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9714f46a __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x975e53b3 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x996773e6 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a2f3c74 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9affc203 __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ba0e44d __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9eea58f0 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4fe5c53 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa66e8bc3 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9a27501 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadeca730 __SCT__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae271b2d pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae51bc5e __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0b948aa nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb17444d0 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1c4c99b pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb260f092 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbcd1342e nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3830e3d __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3c34b06 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4d488e4 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7ac892a pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8f5724e __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd7c9317 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce4d1dad __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0725c9e pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4ec169c pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4f6224b pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb8c4e13 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe859a442 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea780cd1 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb1c637e __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebb0138d pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee35d490 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32fa2b7 __SCT__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf36ce97e nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf648b2cf pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9193d0a __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb6e581f __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe0d2488 __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe0dc1b7 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe81e479 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff78f476 __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x61b2ace1 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9865376c opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc56bbd37 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x3d45ec4b nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc5fa31a1 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd2009ea3 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xfdbe2aeb nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x5674f8eb nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0b06f30c o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x413db2c4 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4e45c1d0 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x51aa8ab9 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 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9f95ec88 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa5a9c43e o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa6aba01f 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 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 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 0x01442737 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x173e0b13 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2d648684 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3ab76575 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x56edbb1a 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 0x9b2dbe71 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 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 0x3932f4c2 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x54a25cfd 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 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc2497a20 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 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 0xfacd9b33 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x5b94cdcd unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x85f09d18 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x2f63e1c3 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xc011a0c4 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xabd9af6d cifs_arc4_crypt +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xc4c73891 cifs_arc4_setkey +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xceecd9e4 cifs_md4_final +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xdef1096d cifs_md4_update +EXPORT_SYMBOL_GPL kernel/torture 0x0c415256 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x0d535267 torture_num_online_cpus +EXPORT_SYMBOL_GPL kernel/torture 0x1205ef04 torture_hrtimeout_ms +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x2b3de84b torture_hrtimeout_us +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x42181939 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x52acfe88 torture_hrtimeout_jiffies +EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0x615c5465 torture_hrtimeout_ns +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0x71d2e434 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x759571e0 torture_hrtimeout_s +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xbb8ef471 verbose_torout_sleep +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4b45fb6e poly1305_init_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x7f376d08 poly1305_final_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xfa617389 poly1305_update_generic +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xaff2aa49 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xe6c74d34 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x1d29b9e1 decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x561835eb init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x63adbf92 encode_rs8 +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 0x09cfc535 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xcff57667 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x14fb9294 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x301b91af garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x46e8771b garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xae378b3f garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xdc595904 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xe1a3789e garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x00a0d8dc mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x22037031 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x59f31d0e mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x62d241bc mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xe874a71f mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xff15f4cc mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x783504df stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xfd61aff3 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x4d2ef113 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x81ed02da 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 0x43556eb0 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/bridge/bridge 0x1562a5c2 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x28b31022 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x344d0c1e br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3e8b5d88 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5a5149ca br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x702db808 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x74d3932a br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x781c959e br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8afe4db4 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x95513568 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9a172006 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa07956f2 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb1ebb852 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb3c8379d br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb4386237 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb442364b br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb8f75764 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd1734406 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe0f93eb1 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe8074b49 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf2afc1c1 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xff371642 br_get_ageing_time +EXPORT_SYMBOL_GPL net/core/failover 0x2fa8115b failover_register +EXPORT_SYMBOL_GPL net/core/failover 0xacdf221d failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xd6d50667 failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x089783c9 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e4fac9e dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1ff42e35 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x20b62732 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2150dac5 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x220abfdf dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x25a5a8eb dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x264e0411 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x26b6ce9e dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x34928477 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x38f371a3 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4c489a15 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x563d3a93 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x572f6866 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e56b8b4 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7600633e dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7aed1e3f dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c858fda 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 0x8af1390e dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x99c873a1 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0e54a14 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa23f4d88 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa428c372 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad0258ea dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad8edabc dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1ed0ba2 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb92dc048 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcb532a31 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd1e1badd dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd83b258e dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd883ba70 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe3caf228 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe89e0d32 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3982b43 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x26bf7edc dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x405d9666 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4465a670 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x51859f9c dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe5a1b2fc dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe5cc0020 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0490a3e8 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1daa009d dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x22476999 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x25e2dfbe dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x27aa47bc dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2f5953a1 dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x335ac84b dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4228fa66 dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5526115f dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5aca7e79 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5af96239 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5e2fd565 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5e34a39c dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x61a9b9e2 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x89de2ebd dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8c49afdb dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x95d99dc8 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9cfe335d dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa3ec43ab dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa6e4d1ee dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa8bcd383 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb81f2db0 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb85f1c99 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbd1072bf dsa_8021q_rx_vid +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 0xc3836442 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcc99f656 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd291b086 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdf1c6300 dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe46f481b dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xea985435 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xed6a6fa3 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf654214f dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf9c27477 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfe7cadf4 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x177de470 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x2ca01d32 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x61855ec8 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xed163a10 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ife/ife 0x26e2f496 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next +EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xc7c90721 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x23c23a3b esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xaedec84b esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xf85c1200 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x3182b5e7 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xdaa41f6c gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3b419d9a inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x52415a55 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5279a878 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x602808d4 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb4ea8e11 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbb46f620 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc7cacea1 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdd2c4867 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe8e78d0a inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x002de671 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x63fa432b arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x04dcee75 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x3f29a9e9 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x592f75ba nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xe9ed2e22 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0ba512f6 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x67abc9a2 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x880395e5 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa9b9e937 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xadff767d nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xaed8c7da nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd444a906 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xd2e6aabc nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x304fd58c nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xb2014faf nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xe86b51ef nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xa5fb419e nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xf1fe3f9d nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5ce19184 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9e9d028a tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9f1b78bc tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbb0c7dba tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf6d459ff tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x79d08ad8 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xa062f634 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xcc9728cc esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0a4e1790 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2ba837ab ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3f4c1d44 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x3eebe54c ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x0c2af6ba nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x2754feba nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x77727eac nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x09b5a68c nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x074291bf nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x07b5f681 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x20353c66 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x236a41e8 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbf8c7d01 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbfd63d7f nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd4df53fd nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x55810bd5 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x6163ecfd nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xe97edc86 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xfe3f768e nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x64648b38 nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xdb38f200 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x025baec2 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x057b5296 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0a1d6015 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3a5c59be l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x43e361f1 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x47a4f13c l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4e049568 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5eb42b14 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5f38c52c l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6d2a80a3 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa5416db0 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa7d396ce l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb65785c7 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc25e33f7 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd2833ab l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd13b453e l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd78dd004 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeab405a2 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xed98e31a l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeebba6ae l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfb10ad09 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x22a7177b l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xdfaa9686 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x032ac191 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x03eedbf8 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x28ec649d ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x31163134 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x49de8de7 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4d76cf66 ieee80211_iterate_stations_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 0x896bb9df ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x900750bd ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1628123 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaceec955 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad4a4589 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb60d7d55 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb8e79443 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe30ca0fe ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe7836429 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec01c80b ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec0ed32c ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf4cba065 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf54c481d wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf912decd ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x40047870 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x421f68c1 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x529fcce0 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x75c0abe0 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb2fe4201 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 0x37847414 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x45b0043f ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4b553a1b ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4cbf0678 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x559c950d 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 0x7aa2ee26 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8793f6bd ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8e137881 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x90022f39 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x93e5949e ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x99353f42 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x99a62cc6 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa400afac ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xadf4c200 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbb56a9f7 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xce9bf13e ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xda0b865d ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdf26fe54 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe3c5b78a ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0bbb9768 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1a3122d5 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3c3710a5 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9a7a0233 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x71bc9671 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x756e5400 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xec30c671 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xefff2ae9 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf6527d13 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02748441 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0495bc34 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0506fc4f nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x058d314f nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0708d0fd nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e43f7bf nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x132ec323 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x181ae095 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1963e8dc nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fe8adb4 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2078221f nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2397f600 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24aae5b6 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x273a872f nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2759ac0b nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27757eab nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28890b87 nf_connlabels_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 0x2fd30b7c nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3bbd7506 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d8875d9 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ffccdf1 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4051ea50 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40f35aac nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41c8c20f nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4284594c nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x428bddf3 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4457ccbe nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44cc3f4f nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4823726f nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a72377c nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4aae73d6 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e54a794 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x522a2a96 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59977383 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5df4a6d3 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6117646b __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x697f6419 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c8990f8 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e3fc64e nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x732e7c49 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d710e22 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82fbf8d1 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x835a9b77 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8699f8b3 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86dc1859 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ce66056 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x904566d5 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9169a6de nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x938b3c9c nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cf85f85 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4aa358f nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad91f00a nf_conntrack_helper_try_module_get +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 0xb559d616 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbca46f1d nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc308db31 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc326b915 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5727b47 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8de583a nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca7247bc nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccce39b0 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcdc13bde nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3a42852 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3dfeb32 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd73c072b nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8db8cb8 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9305950 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9ea955a nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdaccf6ef nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde78d3a1 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4510ec2 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4841b0d nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe65d079e nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe821720a nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe9edbca8 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xefbf55a0 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf102beb7 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf58f8297 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7cba958 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9f500e2 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfcaf6ed1 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd00f6c5 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x3b62d4f2 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x39102ab3 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x548a47d1 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x17159448 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1fee03a2 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x344abbc9 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x38cf8956 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3b50f4d0 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3b8f1c7e nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x53fd4bb6 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5bc223e2 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x664ee272 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa0305a30 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x318d8951 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1a01b179 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6a934ad3 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x70ff5a39 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x97fca351 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x442a6237 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x47180f1d ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x64de0f55 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9cbee6f3 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd972f1f9 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf01b9749 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf8a4413d ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x9fedfb53 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x6eb1eccc nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x438d54b2 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x64abc39f nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x6ba84064 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x19e7f92b nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1f4a3961 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x20b59dd8 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x279ba236 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x35472a89 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3b71dfbe nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5528aba3 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x617b1be9 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x67817078 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x75685107 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x81691a1d nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x87032959 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9a4eaa91 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9a77e299 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa9d1dff2 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd7d12681 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xde8d5045 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x01ccc25c nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1cfe9322 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x27e40e5c nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bcef832 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x491eecfd nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x53fd77ba nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5ef7bb78 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6f57c53c nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x883ae0c0 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x950d438c nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9b4b7137 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9ea11585 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb78648d6 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd596de35 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe80226e9 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf0624081 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0e08990d 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 0x34fcf635 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3d348894 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4a28d4c3 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x69d6eeec nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x69e38533 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6b4e561a synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa4c04436 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb1e248ea nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb98f6270 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xecc85033 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x057bbe07 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06395fec nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0b7bbd3e nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x111000f6 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x14707cfa nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15b6cacf nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1708dedf nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x180916ab nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1acc3106 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2291f613 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 0x3d79851e nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4bddb4cd nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e9b34d1 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x509a6298 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5eaf2565 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5ef666a4 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6667cacd nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6983b1d5 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x895f11b4 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b5ae838 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x968839bd nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x971e139f nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9828a904 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9e0b994c nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa070110e nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3bd62b8 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc1ba1547 nft_set_do_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc23cd9bb nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd881baeb nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd96a6ac6 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd2b0c10 nft_meta_get_eval +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 0xe2c37bf7 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe54d6284 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe5ecf5b1 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe85c73db nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xea7d3ef2 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeacb3acc nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf3e23f54 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf8d2cfe4 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x651caa37 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x706b1f58 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x723589ce nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x92960088 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x984cc2a8 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa73e15a4 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc38e0329 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8417e58a nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8de6a926 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xfbf641fa nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xc4285b13 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xf5c54354 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2c3e21a8 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7892697e nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xac213f4f nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe3f626b8 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x02379107 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x15f7d5d0 nft_reject_init +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 0xdb599f69 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x11938a49 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x12940bbc xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x134b8a9a xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x138d6013 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2d426ac8 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x33a0f5ff xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x38aa99cf xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40349d63 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x56771939 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x57ea8bcd xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x60a48845 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x633fc63d xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x82b20a59 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x907334af xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9d8c5c65 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb2a38567 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xba9f987e xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc1ca3a17 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc4c37f91 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd84ca116 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdaf5b365 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe9bcd74c xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe9d6ae8a xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x752ab345 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb78f806f xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x22226b65 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x66567453 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa5ec36b4 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x836190eb nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xab551fa2 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xdd96e68b nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x65c5f419 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0xc91bf5a5 nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x037ce203 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0ce918a1 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1b36f084 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3f96e853 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8b9c7a36 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa5ccd748 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/psample/psample 0x07f520ae psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x6f58c68f psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xbcc6e04e psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xf47e36a2 psample_group_put +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x127a81a1 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xdb099c27 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xfb60f29a qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/rds/rds 0x0033c8c6 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x10e171d0 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x17b1c3d9 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x20c5e653 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2ca50d7e rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x332deed5 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x34b02ceb rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x55c2cb4c rds_send_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 0x61293bb4 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x64101d42 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x69d6acc1 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x77c3da39 rds_rdma_send_complete +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 0x87e2754b rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x8ef67561 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xa5b7069a rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xa96b8dd8 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xb3d71ca1 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xbc6819db rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc29e3d79 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc4799faf rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xd557ae46 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xdba63f12 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xde9dc60b rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xeabb1632 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xf16ecf0d rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xf7b4038e rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xf8a0355b rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xf96c7096 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xfbe71099 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x015cdf68 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x5ce34339 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +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 0x160cd762 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x571654b2 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x623d0def sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xb463aae1 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/smc/smc 0x0dcbe831 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x34d6a177 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x5653f9d3 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x62751f39 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x7224db05 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x7deecc5e smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x87c91d70 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x9bfb2bbb smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x9bfbad0b smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xd8024591 smc_proto +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x245e7726 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2848337e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2d3448fa 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 0x80c2b00e gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00315632 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01e7ec27 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x021c3ea1 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0573af89 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05d700e8 rpc_call_start +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 0x06bc3c21 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ac22a7e rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ae495de xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c131a49 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d6d4012 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0efb5a44 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fbf6133 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1024653c xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x105a456c xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x105c57a0 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11e96712 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12c523c0 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1373d1df sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14237f5c xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x143170a5 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1488fbb0 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1506e7d4 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15a26c2d rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15c14012 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15cd0582 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x178e06a2 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x194ec644 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19c3307b rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b000aa0 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f07515f svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22ce9906 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x231dbd4f xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23a94e2d svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x245cff96 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25fbd794 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27456a94 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28b697de xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a1721c3 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a2ab247 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a83f7e0 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b2baa9a svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b5120d8 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c6b833b rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fd64aae svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30ad83d2 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31622bd0 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32c9d633 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x337304f8 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34a6b09a rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x360a730f xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3680699f rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x374a8da9 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x374dbd8c svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x398658ef rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a27d267 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a7452b5 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d7c8f9c svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x414384bd cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43c93d62 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x451ecaca svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49129e42 svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49879f5f svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4b9d3d xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aa85405 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b3a67b9 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bfd1d40 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d506037 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e64ab67 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e9bec59 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5312d13e rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5420e447 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5562ef42 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x569dacef rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56bdf89b cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5799f0d8 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57e5031d cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x590e5e4f xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x591cfe96 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cd4ef2e xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d893a44 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e5a62e9 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eb096eb rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60114d87 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6026d18b rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64960a73 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x649e3993 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64c5edef svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x654b36c2 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x662a9e0f xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x663b0754 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x686a1faa xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x687d81c6 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68ae2af9 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x691e3e1e _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69600496 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b550541 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c20c033 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c5bbce3 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6df15980 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ec36c73 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x706164fd xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x712ea6ec rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71866b46 svc_seq_show +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 0x7200d25d rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72315958 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73e8af60 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7599cb93 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7834a583 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78a5f7f3 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ab42652 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b748a4e auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dcafd8d rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f464031 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f48954d write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81b826d1 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82381f9c svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82d04e65 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8307c979 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85bc3cab xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89d6f414 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89f06929 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8acb0f12 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c094126 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8de839ae rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f87daa5 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fc9c934 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90b54fa5 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93a67588 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95693584 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x963167cf rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x966a26e6 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x966c1988 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9948587d svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c33af77 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cb0b583 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9db8e41c rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dc9bd0d svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ea30e58 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa03ee8d0 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa064cd6d svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa106c421 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1ae59ec xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1c12228 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1c8ea48 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4ea1255 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa618c5be svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa68e6b94 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa79f8122 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa841764a xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa89126d0 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabe68799 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac8f0525 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xada1cfca xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadc0a4b3 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae0d9c5e rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaef187c5 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaefa089b rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb09de68c gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb14c50f4 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb22488bd svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb274c402 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2cdb3b4 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8de42ba rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba8c682a xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbecfe72c rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf275636 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc08c4201 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc23b8ef5 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc282d6e0 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4588ea9 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7480cb9 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7626c8f rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7a54ce3 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc991e394 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9ca570c xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca76b603 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc0a920f xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc2a30d1 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcca88a14 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce431e65 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd062ab12 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd06ae6d1 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd072c039 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd148d14f rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3272bbf rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd32c699a svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3373b2b xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4dea0c2 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7184da0 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7a66155 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd89767fa xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8d40b91 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8fb854d cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd982d917 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9d3e59d svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9f52749 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbceea2f svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd169054 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddd17b5e unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde8681ac svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdeef11a1 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdffc3809 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe09d6a99 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1f31cfb xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe336004c read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe40190fb rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4641c48 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe543a664 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe640a63d xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6972d0b xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe753194e rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe94e71df rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec0418f6 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xede979db auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee92fdbd cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0d2d64 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf260294c svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf327df2c xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf41f2550 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf59837d1 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6b672a8 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6c52449 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6f5e160 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf70c53ab svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf81498df rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9f512bc rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa7d0a9b svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb812226 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfba5d212 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc44eb21 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfea2bbb2 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/tls/tls 0x6e4c61e0 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x8e8ecdbf tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xc5145da0 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xf8016d02 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0cc399ef virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0e7c4a46 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0fdaeec1 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x127aa8af virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x17bbd6fe virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1bca0114 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1f5179e6 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x25b71e60 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2bb71f53 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x31055fd6 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x49338e55 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4a4d30d9 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x55a6f656 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5b5049a4 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6c6a5e3f virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x74b2b6fe virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x785c9cd9 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x825128bd virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x87662aa1 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8c5873bc virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x99dff12d virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9a61ec87 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb24b1aad virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb7e5e691 virtio_transport_get_credit +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 0xc23f9183 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc9ae02d0 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xda0db27e virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe626f769 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xea59a08a virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeaa77411 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xee1f82b1 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeec7da53 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf3e6d87a virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf6df8a32 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x03070dd7 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x16c6f1d9 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44ebf7a1 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x62efac88 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6bfe77d5 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6eb3ce95 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x726f8c83 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8eda661c vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9672c47b vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9f3c0749 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa33da259 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xad2787f5 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb22fde68 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbf6b2dec vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd38856c4 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdcafc794 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe949b94f vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf97b261f vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfb7256b9 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfd6b2a80 vsock_core_unregister +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2d6b1681 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4eef93da cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x80db8845 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb3836ec7 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcee45a10 cfg80211_pmsr_report +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 +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +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 0x1e764bd2 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x321c61eb ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x38156c22 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x614a7fd6 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/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 0x4b5c707a snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0x5081ef1e snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x7c4238da snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x88712ec3 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x934ef45d snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x971ad14c snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xa06b1b8c snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0xb0ea8453 snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0xb51f3cba snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xcc4ac6a3 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xd18a2dc6 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0xddd6fa9e snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xe55c076c snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0xe61b94e7 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xf79a3255 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync +EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x02bc47f1 snd_pcm_stop_xrun +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 0x143b7d8f snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x21f70e5c snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x240bc0c5 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4478ef48 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x58b8c3b7 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5a4f3a00 snd_devm_alloc_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5eee41d3 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x679b2c3b _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8f47d997 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa751361a snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x4c3d5a9e __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x61bdc7f7 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x000af9cc devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable +EXPORT_SYMBOL_GPL vmlinux 0x003df210 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x0044f5bf cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x0050e598 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005b663c virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x0061d166 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x0062125e regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x006b6ff1 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x00748c55 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x0075d01e crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x00797134 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00997e5f user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x009b957b mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x00b168f3 blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x00b1e7df inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x00c6ac9b rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x00cc2cdd get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x00cd3f93 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00d81356 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00e7cc84 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x00eb739e perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x00f24821 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x01033ab1 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x01101bbd sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x01270475 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x013a63e0 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x01424785 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x015e1926 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x01666bc3 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x0169e4c4 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x016a4f20 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x016ca6ff devm_bitmap_zalloc +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 0x01943add gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x019c0337 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x019c5d89 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x01cebb38 _copy_mc_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e9932b regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x02016270 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x0202a730 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x0205c882 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x02166657 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x021bc062 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0232d03e dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x027357e8 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x02754ba0 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x0277eff6 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x02891780 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x02b0801f pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x02c5f047 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x02d2dfd0 __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x02e11d8c device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x02e4f2d4 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x02e56ff3 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x02f1dedf ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x02fc8d7f __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0x02fce574 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x02fdef87 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x02ff8f65 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x0302efe9 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x03111a04 ip_tunnel_rcv +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x031c79ba scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x032f18a2 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03553082 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x03670e04 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x03908a5b bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03bac46a serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c1c035 acrn_remove_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0x03cba21e desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03e2d5b0 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x03e5c9bc crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x03e8b93b __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x03ead289 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x03ed2c9a ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL vmlinux 0x03f86768 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x03fb9cc9 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x040165cd dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040eaf7e __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x041b980f wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x0424c6e1 acpi_nfit_ctl +EXPORT_SYMBOL_GPL vmlinux 0x042522f2 sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x04340877 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x0437c4a6 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x0439c2e9 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x044a0f90 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x044aa10e rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x044bf74c pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x04599779 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x0464ad1b regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0467f4ef query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x047a4c5e cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c3500f vfio_group_iommu_domain +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04da872d bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x04dd0b59 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e75e84 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x04f8012c ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x04f977f6 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x051def99 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x0538dc1f scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x053aa354 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0550f762 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x056ca6e1 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x056fe6d1 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x057e8070 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058cd3ff blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x058db806 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x05ac12dd tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x05b18d01 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x05c59fd6 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x05c5eba7 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x05cf2c0d dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x05d6e317 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x05ddce6a devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x05e3c97b __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x05e653d2 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL vmlinux 0x0608598e bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x060ae6d1 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL vmlinux 0x061d4748 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062e719b kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x0645b549 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x064742a7 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065a2ac4 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x068144ae inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x068532b5 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x06861f26 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0688e8aa gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x068c1e8c mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x068f2f1c pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x06c935e0 msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06d942fe fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x06ed051c edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x06f526db pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x06f8067c device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x0707019a context_tracking +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x072afee8 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL vmlinux 0x0738f68e device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x0753518d platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x0753cc4e kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07830d94 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x07a2cb3b devres_find +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 0x07b6d78f devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0x07b7b69a regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07c23e39 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x07c27f44 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x07c9516f irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x07dd3031 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x07de2ec8 debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x07e15ed1 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x07f80d73 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x080407c3 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x080b909f devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x0842fa87 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x084344bf ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x086e282f component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x0874a011 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x087c13ec put_device +EXPORT_SYMBOL_GPL vmlinux 0x087d494a ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x088fd410 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x08b79dbd regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x08c23ecc fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x08c565b3 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08fecc4c pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x090942fa sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x090d665e pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x0913dcdd crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0925493f clear_page_orig +EXPORT_SYMBOL_GPL vmlinux 0x092b75c6 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x092f173d dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x094e7782 nvme_complete_async_event +EXPORT_SYMBOL_GPL vmlinux 0x09624a07 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base +EXPORT_SYMBOL_GPL vmlinux 0x097208fc virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x0974bb49 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x097ddc04 context_tracking_exit +EXPORT_SYMBOL_GPL vmlinux 0x098745b8 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x09a5044f irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09b8bf47 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x09cf9342 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x09dbb8a7 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x09e18d63 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x09f19baf tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x09f50f32 rcu_nocb_flush_deferred_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x09f512ec bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x09f8b6c2 sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0x0a17e1f9 devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x0a4b2ca8 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x0a4e034f __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a5bf122 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0a5d964c crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x0a6216bd fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x0a6b6d48 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a95ac4e sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x0a9c0b8e pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x0aa22c74 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x0ab2c493 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0ad05c7c vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address +EXPORT_SYMBOL_GPL vmlinux 0x0ad3a08a debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x0ada12c4 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b151342 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x0b20dd3a pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b4955fd vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x0b4ed3f7 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b55d1c8 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0b5619c5 switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0x0b58c2c2 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x0b637c74 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x0b9127c2 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x0b914240 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x0ba2bbab __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x0ba9e1cd pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bbeaeba uv_bios_enum_ports +EXPORT_SYMBOL_GPL vmlinux 0x0bcf778e l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x0be16848 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x0be1a4d8 amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c03fdd6 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c34d6cf security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x0c3f0f47 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x0c4948c3 vxlan_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x0c54cff7 __SCK__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x0c5dcc70 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0c60f789 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x0c7b7586 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x0c7c758a driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c8b308d debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x0c9af06c irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x0ca01fcf __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x0ca31dae rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cf07ff9 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x0cfe59cb hyperv_fill_flush_guest_mapping_list +EXPORT_SYMBOL_GPL vmlinux 0x0d01b04a spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d133dfb devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x0d1da30f pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x0d241a7c vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x0d2a996f iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x0d2d3ee5 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x0d342601 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x0d38dd81 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x0d43b940 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d71a1d1 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL vmlinux 0x0d7b1515 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x0d7bcaa5 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0d8311b0 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x0d838737 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x0d85b643 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x0db1b6ef vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x0dcb4665 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0ddadea2 __SCT__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de5b244 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x0dfe75ce do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x0dffa52e dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x0e08612b kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e1fc8ef __SCT__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0e25362b iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x0e584e3d dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x0e58c248 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e6de920 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x0e7c6e0e crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x0e7e2994 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0e92e151 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x0ebfeb22 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ec4e47f hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x0ed8e0e6 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0x0eeae3e8 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x0f02d493 __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused +EXPORT_SYMBOL_GPL vmlinux 0x0f0e970a usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x0f11f051 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f26fd87 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f68f614 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x0f6a1c2b tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x0f6a4f40 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f743a40 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f96e216 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x0f9c5386 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x0f9fc04e uv_get_archtype +EXPORT_SYMBOL_GPL vmlinux 0x0fa49d5c sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0fa6e87c ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x0fad2b72 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fbe4ae5 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fd6ebd5 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x0fe798d0 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x0fece2eb mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x10039a8e dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x1005d60b tick_nohz_dep_set_cpu +EXPORT_SYMBOL_GPL vmlinux 0x10086db3 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x100991f8 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x100dea98 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x10111e85 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1018b857 dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0x101c183f pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x102467f6 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names +EXPORT_SYMBOL_GPL vmlinux 0x103bab8f alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x10577aec blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x1071abdf inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1088a5e2 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x1088ea76 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x109008e2 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x109fc8d3 vfio_device_put +EXPORT_SYMBOL_GPL vmlinux 0x10b7c3b0 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x10c24695 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x10cc4574 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x10d334a2 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1154ae0b tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x1156294a vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x115d6d8a iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x116180b5 hv_current_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x1174b99e __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x117d5a30 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x118fc754 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x1191d2ee devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0x11927fbe usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x11981664 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11a7ae29 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x11caed2a events_hybrid_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x11de0037 crypto_shoot_alg +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 0x11eae0b1 __intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0x11f91d5f rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x120cdd71 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x12189359 __SCT__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1229d00f crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x122b35eb anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x123eafa4 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x1244eb54 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x124e3937 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x126767a6 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126f724f __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x126f8420 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x1270c510 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1272a4c2 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x127c109b __SCT__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x128124df nvme_disable_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x12889e3e ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x12974f91 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x12bb735a dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x12bc34ee ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x12bed58b alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0x12c05495 ip_tunnel_lookup +EXPORT_SYMBOL_GPL vmlinux 0x12cf81bc phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x12db3a8b kvm_clock +EXPORT_SYMBOL_GPL vmlinux 0x12e285ec is_uv_system +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12fa21b6 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13073d20 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x13121de8 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13223af5 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x13242834 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x134c218e crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x134f60ca debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x13525c94 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1377f447 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x1388db1a iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x139095c4 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x1398fabc power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x1399c13e set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x13b405ee __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x13c3ff27 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f348a9 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x14081688 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x143320fc cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x14365c3e fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x143ce29c acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x144e23aa crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x14566173 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x1458c888 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x146eacf1 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x1483939f clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x1488dcd7 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x148ed96b sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x1494337f tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x14a976ed ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x14aad932 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x14b621d9 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x14c000e9 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x14c2af7e devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14c8dfb3 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14d1f003 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x14d2d8fb fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x14eb451b rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x14f7f944 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x15046184 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x1506d38e dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x150f3b07 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x15260493 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15498f58 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x155b8d55 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x156e8afe __SCT__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1579573a kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x158b354a blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x158bebda pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x1591b2c6 hyperv_read_cfg_blk +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15b3340d vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x15b55173 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x15cc30f1 cc_platform_has +EXPORT_SYMBOL_GPL vmlinux 0x15cf0ba3 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x15cfa6f2 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x15ea0b9d nvme_enable_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x1603c53d mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x1617c776 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x1618920d crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x163b9a48 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x164009bf regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x164f68c2 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x1650d4b2 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x1652b5d9 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x1655f142 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x16768dcd ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x1688efdf dm_put +EXPORT_SYMBOL_GPL vmlinux 0x168c3ea5 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x169775ef __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x169a11d9 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x169a3899 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x16a51b2d bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x16ae93d0 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x16b3ed99 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x16d49c3c irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16de1f6f pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16feb550 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x170a2dba usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x171337a6 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x1719e5fa nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x171ddfee wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x17345c3f __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x174251f2 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x17558b0e ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x175ca264 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x176d4bd2 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x17726600 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1773ffec rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x17760948 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x1776a1d1 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x177ada6b spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x177ff650 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x1780172a devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x1782334c usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x17940f87 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x17987e13 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x17ab7caf wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x17c5526c dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x17d82c2b vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17e822c4 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x17fddb34 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x18060d92 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x181fcdb1 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1825291d subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x18274e6d devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x182f88e8 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x18339423 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x18603938 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x18790ee8 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x188dfc2e ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x188e8531 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x18952848 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x18b2790f uv_bios_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x18b54b81 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x18c79344 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x18d67766 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18fa1e4c rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x18fcbede badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x191032b4 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x1913b57a kcpustat_cpu_fetch +EXPORT_SYMBOL_GPL vmlinux 0x1920a8e6 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x1920aa95 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x19351847 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state +EXPORT_SYMBOL_GPL vmlinux 0x193fc57b find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x19453041 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x1951f410 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x1955608c nvme_cancel_tagset +EXPORT_SYMBOL_GPL vmlinux 0x195d44d5 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x19634e1f switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x1968e331 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x196bb8e5 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x1976760d init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x197e1b07 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x198b3a66 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x198cd337 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x199425e3 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x1997456c fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x1999be82 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19b4e00c phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x19d51267 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x19e0ae50 __SCT__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x19fc1376 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x1a018d9d attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a1ccf0d tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x1a2fe42e hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x1a445b2e vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x1a4a8aa0 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x1a5bd1df regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x1a5e8cb2 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x1a5fdff3 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a9754cf sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x1a9c0e37 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x1aa0e98b handle_irq_desc +EXPORT_SYMBOL_GPL vmlinux 0x1aab0cff tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x1ac20a25 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x1acb0258 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad780e0 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0x1b00dfca ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x1b0d0391 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x1b1e02e2 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x1b217e48 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x1b28fe54 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x1b2fb34c balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x1b3e1f65 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x1b42eef4 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x1b44807c device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x1b4fc482 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b7ffbe8 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8e1f04 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid +EXPORT_SYMBOL_GPL vmlinux 0x1ba6b6b2 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x1bc1c883 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bcf1bf8 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x1be70622 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL vmlinux 0x1bed573d blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1c077ee7 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x1c404f44 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c6819a4 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1c71ce37 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x1c754a37 usb_get_hcd +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 0x1c9be343 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x1ca2f962 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x1cb0d290 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cbd8ce1 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cc2bf2e __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x1ce62765 vfio_pci_core_request +EXPORT_SYMBOL_GPL vmlinux 0x1ceae696 setfl +EXPORT_SYMBOL_GPL vmlinux 0x1cf93533 nvme_host_path_error +EXPORT_SYMBOL_GPL vmlinux 0x1cfbe5ef pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x1cff74d8 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x1d05b3b4 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d34e996 pp_msgs +EXPORT_SYMBOL_GPL vmlinux 0x1d3b9c95 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x1d4124e9 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x1d44960c tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1d51eba9 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x1d56ca29 md_run +EXPORT_SYMBOL_GPL vmlinux 0x1d696874 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7f26ad usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1db1e9a7 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x1db96feb fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x1dbdddc2 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x1dda2b7e __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x1ddd29fc __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x1ddf4edf vmf_insert_pfn_pud_prot +EXPORT_SYMBOL_GPL vmlinux 0x1debcab8 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x1df899db cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e15575e bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e42e0cf blk_ksm_is_superset +EXPORT_SYMBOL_GPL vmlinux 0x1e491fa8 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x1e4b0169 iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x1e5b6620 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x1e5d6d29 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x1e5dab9f nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x1e73e366 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7e60bb rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x1e7eb816 pci_user_write_config_byte +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 0x1ea14bbe trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x1eadec6f ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x1eb1250d udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec580a7 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1ef84079 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f142f98 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x1f313229 ip_tunnel_dellink +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f52a20e irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5ece97 cond_wakeup_cpu0 +EXPORT_SYMBOL_GPL vmlinux 0x1f6a3821 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x1f702a64 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1f831240 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x1f832f27 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8aa42b regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fa24edd sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1fa8ee7d ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x1fabfb27 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL vmlinux 0x1fb23b59 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e5d6 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x1ff85ba3 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x1ffa9578 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x1ffafae0 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x20165016 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x201bd0f0 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x2021a5a7 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x203b09d2 devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x2042a470 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x20489e48 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x20619177 fpu_alloc_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x2074689e acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x207f90e6 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr +EXPORT_SYMBOL_GPL vmlinux 0x208da646 devm_acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x208ee991 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x20926611 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x2092e178 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x209bbe31 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x209ead9e devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x20a6db5a devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x20b34ca4 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x20b9d2f1 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x20bc5c3e vfs_write +EXPORT_SYMBOL_GPL vmlinux 0x20cb7b22 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x20e5cc47 hv_pkt_iter_first_raw +EXPORT_SYMBOL_GPL vmlinux 0x20ebe767 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x20f2c470 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x210b089f pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x21143f54 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x211715f0 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x2119a27c kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x21249e9a uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x212bfd41 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x215509bd xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x21711965 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x21960167 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21bd059c regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x21bf135c regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x21c55209 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x21ffaeeb crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x22042929 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x220d062e nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x220ea27c posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x221394ae hyperv_reg_block_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x2222770b debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x222e96a4 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x223be722 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x22411e02 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x2252b5ac rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x22534b43 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x226cfec1 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x226df0ea pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x227f8544 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x2283d929 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x22b0d9f7 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x22b985e9 vfio_pci_core_write +EXPORT_SYMBOL_GPL vmlinux 0x22c53055 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x22cce752 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x22d19ce5 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x22d52913 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22dac36d css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x22ed62de usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x22fd6fa2 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x2302d554 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x23034fb5 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x23278f45 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2330c86e __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x2331eac2 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x2333dd84 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x2336ee6e ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x233b2f13 xfrm_unregister_translator +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x2346617f usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x235671b2 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2358d3a7 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x2365e741 devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x236a6529 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x237109de acpi_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x23724cc5 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x238623e4 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2386c0ea __SCT__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x23901a92 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23996db1 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep +EXPORT_SYMBOL_GPL vmlinux 0x23b6a2e6 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x23b6f541 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x23b9720d fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x23ba32de __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x23dfe777 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x2410c338 x86_virt_spec_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x24196afa iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x241f5611 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x24360bd8 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x24591218 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x24707daa of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x24845138 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x24a25015 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x24abe633 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x24ac6cc0 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24b2093f dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x24bfb0d1 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x24c77d19 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x24d9232a __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24e47bd4 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x24ea4e5a is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24efb5ea evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x24fc1e73 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24ffb6d3 device_create +EXPORT_SYMBOL_GPL vmlinux 0x2518303b blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x251f720d ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x25370f14 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253c4099 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x25487615 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x25661a9b pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x257b4e5f edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x2580efea crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x258f0582 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x2597159f yield_to +EXPORT_SYMBOL_GPL vmlinux 0x259b8baa nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x259c1a71 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x25ae30d4 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25cefaf2 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x25e95892 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x25f2f9e8 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x25fc64b1 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x263b9a89 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x263ccfef iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem +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 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2671942f acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2696309f usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x26a835c7 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x26a8fb00 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cd4029 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any +EXPORT_SYMBOL_GPL vmlinux 0x26cfad4c agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x26d03493 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x26e6c173 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f839fd usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x26fafbe3 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x26fd13e7 smca_banks +EXPORT_SYMBOL_GPL vmlinux 0x27058781 wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x270a2e1a tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x27173d66 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x272022b4 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x27274e8f platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2728548c __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x272a7fc6 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x273aff5c __SCT__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x273e2382 __context_tracking_enter +EXPORT_SYMBOL_GPL vmlinux 0x273e6030 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x27597363 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x2763fa4b blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x276dd92a pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x276df968 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x277eb8e9 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x2785135f __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x27ba09df cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x27c415b6 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x27c8f824 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x27ef82de blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fc0a71 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x27ff6384 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x27ff7b3d clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x2805f005 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x281dad2b pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x2870cca2 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x287446e8 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x28785456 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x2878ef64 __vmbus_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x289070a2 alloc_dax_region +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 0x28be0cef misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0x28d87421 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x28dfc3c2 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x28f0db02 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x28ffe4dc crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x29075a93 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x290de259 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x29366b61 register_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x2942efc1 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x294336dc _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x294b9209 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x2962b5fa serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x296942e5 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x29b87189 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x29c184e1 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x29dd55ba debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x29e10c39 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a1c5b58 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x2a27883c pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x2a29857e __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2a4e6da7 usb_autopm_put_interface_async +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 0x2a6ced7b devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x2a891c41 nvme_stop_queues +EXPORT_SYMBOL_GPL vmlinux 0x2a8af55a acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x2a9f2b41 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2ab81c74 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x2aed7bcf ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x2aeea32d init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x2aeeba8f nvme_sync_queues +EXPORT_SYMBOL_GPL vmlinux 0x2aff68f9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x2b1ec748 hv_pkt_iter_close +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 0x2b450ccc balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x2b5ac0ed vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b67aa5e __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear +EXPORT_SYMBOL_GPL vmlinux 0x2b6a7c05 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b72f4f4 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x2b7a0808 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x2b7f08c6 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x2b856338 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2b9fe22d kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x2ba56c20 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2bafc66a __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x2baff687 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x2bc49a81 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x2bd166bd devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x2c1f96f0 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x2c1fd1ba inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c369cb5 user_update +EXPORT_SYMBOL_GPL vmlinux 0x2c560a34 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c592bbe __traceiter_pelt_irq_tp +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 0x2c71593d ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c940be3 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get +EXPORT_SYMBOL_GPL vmlinux 0x2ce724f8 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x2d019639 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2b1b84 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d393f48 intel_soc_pmic_exec_mipi_pmic_seq_element +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d44be3b __SCT__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2d5035da gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x2d523353 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d741d51 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x2d7472d4 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x2d749fc4 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x2d81387f irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x2d859648 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x2d89b1ad __SCT__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x2d8c8500 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x2d917ae0 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x2da816d2 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x2daa9035 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL vmlinux 0x2db398a6 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x2db74bd4 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x2dc346e5 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x2de7b941 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2dfbb22c iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e0d8003 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x2e140cf4 clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e28a1f0 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2e291bc2 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap +EXPORT_SYMBOL_GPL vmlinux 0x2e4d88a7 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x2e5e5240 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x2e670427 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0x2e7a17d4 vmap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x2e861ec3 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x2e86e69d ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x2e9378ef dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x2e9e5003 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x2ea08cf7 mmput +EXPORT_SYMBOL_GPL vmlinux 0x2ea6e28d task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x2eaa2d47 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x2eaed3b6 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x2eb9e085 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec6a0ee gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x2eca2999 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2eda4807 is_uv_hubbed +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2eeedba3 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x2efcf399 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x2f0c0d77 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1590e4 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x2f286c37 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0x2f2b5b23 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f4b5e54 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x2f4ff940 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x2f5b1d6c regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x2f637259 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f72f1f2 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2fa2a894 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x2fa3d042 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x2fa65383 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x2faa3805 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x2face89e power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fdbc831 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x2ff6a0f4 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x2ffbfff5 nvme_init_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x30124f64 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3018cb61 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x303c5acc nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x307373a5 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x307f9106 vfio_iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x3088c928 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x308ec7ce sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x30adbe1f wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x30af03e3 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x30c0103a cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x30d0af3c lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x30d2b539 acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x30da88bb pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x30dbe367 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x30e05815 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30e42163 tick_nohz_dep_clear_cpu +EXPORT_SYMBOL_GPL vmlinux 0x30e46a90 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x30e78fda irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x30e92723 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x30fbe7ce unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x311a64aa ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31273ab6 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x31300675 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x3132eedd crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x3149cac0 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x31598b87 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x315f3efc pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x31706316 __SCT__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x3198bd55 __SCT__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x319c10f7 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x31a6694e pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d49ded get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x31db3896 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x31dcb7f0 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x31e2e77f vmbus_free_mmio +EXPORT_SYMBOL_GPL vmlinux 0x31e414d6 device_move +EXPORT_SYMBOL_GPL vmlinux 0x31e7b504 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x32011461 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x320190f6 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x32083674 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x32084cb4 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x321055cb vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL vmlinux 0x321d0d1d gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x3229ef16 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x323d7914 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x3286e006 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x32889741 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x328c1829 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x32908d4a synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x32a372ca devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32b0c790 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x32b688c9 pm_generic_resume_noirq +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 0x32d50a21 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x32dc048f dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x32dfd146 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x32e4d1e0 sgx_virt_ecreate +EXPORT_SYMBOL_GPL vmlinux 0x32e701ec virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x32e92c40 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x33044752 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x33121bef inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x3328581f devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x332e9f0b check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x332f9359 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x3332e1c6 iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x333d98c9 vfio_pci_core_disable +EXPORT_SYMBOL_GPL vmlinux 0x33490bd7 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336d828e __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x3387433c perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x3391f34e scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x339cc9f3 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x33a680e6 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x33b0679e device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x33b6520c crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x33d2dc1f dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x33d3ba25 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x33dcf888 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x33e91029 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x33e92de5 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x34374cc7 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x343af395 nvme_change_ctrl_state +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 0x345b1183 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x3461be24 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x3466ce63 x86_msi_msg_get_destid +EXPORT_SYMBOL_GPL vmlinux 0x346f47e8 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3474fb5d regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x348257ed __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x349566d2 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x3498e094 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34a86b5f cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x34aed260 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x34b6053a __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x34c1426d devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x34c7e6c4 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x34e4abf0 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x34e7c2af dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x34eff6d9 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x34faed39 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x34fc8057 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x350c6731 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x351353ab tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x3513e216 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x35237dcb dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3543be4f dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x35464fb2 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x35604fc2 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x3560c17d xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL vmlinux 0x356d09a1 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3576f75e rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x35813be0 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3598a4d8 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x35cfac72 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35dfc466 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x35f43770 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x35f5a92a crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x35fa5819 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x35fe74ff rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3613d0f9 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x36173c1d phys_to_target_node +EXPORT_SYMBOL_GPL vmlinux 0x3617b323 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x3626c0e0 generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0x3632123e iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x36456002 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3658f37b relay_open +EXPORT_SYMBOL_GPL vmlinux 0x36652703 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x36669eaf sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x36950900 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x369f06b3 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b1ff47 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36ceac02 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x36d14575 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x36dba8e5 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x36ec8845 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x36f119c7 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x36f4917f devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x37048fce acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3726f7f7 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x372d3278 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x372fbc02 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x37346964 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x37447de7 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x37529996 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x375b6cb4 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x3763f509 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x376666c9 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x376a7ccb sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x377adb93 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x378df586 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x379542be irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x37983859 udp_tun_rx_dst +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37cbad33 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x37cc372d generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x37cfc5d8 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x37d9bf86 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x37e25a5c bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x37e779c2 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x37f292c4 pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x37f86a38 nvme_set_queue_count +EXPORT_SYMBOL_GPL vmlinux 0x37f9016d efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x3800e3eb skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x38049e65 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x380be198 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x381690de __class_register +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x382ddaa4 vfio_external_group_match_file +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x3840a165 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x384de6f1 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x386ae35e dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x386da927 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x387cbc66 vtime_guest_exit +EXPORT_SYMBOL_GPL vmlinux 0x388264ea amd_clear_divider +EXPORT_SYMBOL_GPL vmlinux 0x38833af1 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x38883112 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x388dad7a acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38b5f710 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x38b6a890 __SCT__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38c49e3f xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x38ccc36d bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x38d71f9c fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x38e10a36 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38f0920a is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x38f74d4b gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x3931c7de ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x393d950a fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x39447c15 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x39478d2e __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x39662e38 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x396a4c3e device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x397d1f59 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x39996de6 __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x399b2915 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x39a025a7 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39ad93c3 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x39bba704 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x39c1e576 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39ded14f __SCT__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x3a0ec4c5 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x3a210dfa sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a2a31ff encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x3a31e496 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x3a348bb3 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x3a4b6103 hwspin_lock_get_id +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 0x3a808892 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x3a8ff87c devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa83ea3 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x3aad73e7 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x3aae5f18 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x3ab4e8c0 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3ad8b9ca __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3af483a5 bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0x3af6bd9f crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x3af82a1f switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x3b1da1f5 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x3b2b4a56 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x3b4f5b5a mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3b5ccb53 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x3b74c466 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x3b794c71 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x3b7a7163 __static_call_return0 +EXPORT_SYMBOL_GPL vmlinux 0x3b84a7ab ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx +EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free +EXPORT_SYMBOL_GPL vmlinux 0x3b9f1e27 is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3bc746ac ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x3bc8d568 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x3bcdaa82 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x3bd5714b ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf2393a __SCT__tp_func_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0x3bfb5fe5 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x3bfbda15 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c16b513 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c33d075 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3c3ff1ed blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c5ee0e5 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3c625df6 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c70fd89 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x3c83e6b6 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x3c8774c7 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x3c87e9c9 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c8b79b1 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x3c918117 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x3c966325 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL vmlinux 0x3c980f25 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3ca1fc95 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3ca6c34a mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x3ca6cea0 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x3cacf3de hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3cb976f1 driver_for_each_device +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 0x3cd68971 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x3cdaf548 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x3ce58e68 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x3cf6f2be syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x3cfe8fc0 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x3d1f4efb ip_tunnel_changelink +EXPORT_SYMBOL_GPL vmlinux 0x3d26dcc7 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x3d30f777 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d5a9e7f kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x3d619650 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3d7bbf97 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3da474e1 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x3da5bfcf tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x3dd41073 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df426bd crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x3df82d00 mce_log +EXPORT_SYMBOL_GPL vmlinux 0x3e0063bf acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x3e070ab2 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x3e086e80 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3e0b4c71 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x3e58c858 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e75934f devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x3e7d9c0c ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x3e861ee2 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ea8e5ea gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x3eb8f055 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x3ec5f7c0 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x3ec93255 hv_get_isolation_type +EXPORT_SYMBOL_GPL vmlinux 0x3ecbce4e find_iova +EXPORT_SYMBOL_GPL vmlinux 0x3ed54797 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x3ed9cc8a usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f27328c filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x3f2dc6ce irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x3f3d90ea virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f51076d __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3f511773 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x3f68380b fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x3f6f46f3 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x3f83f8d3 rcu_bind_current_to_nocb +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fb454c5 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3ff59aa5 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x3ff75ea7 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x40000aa7 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x40053004 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x40236df3 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x402f5d58 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x4032810d __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40439493 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x405e84a2 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x4064a27f pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406977aa vfio_virqfd_disable +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +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 0x407b57c5 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x40815f03 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40a0aafc __flush_tlb_all +EXPORT_SYMBOL_GPL vmlinux 0x40aac77a xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x40b3f784 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x40bd6775 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x40d349b6 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x40d61d55 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x40e53ea7 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x40e5ab07 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x40e9d066 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x40e9e00c pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x40ed2e52 blk_queue_required_elevator_features +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 0x4106e6c5 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x41195fa5 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x411a9be9 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x413ae8bb tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x41413067 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x41558c03 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x415b734d crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x41689c61 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x41974dcc __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41b0415f srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x41b7e8e2 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x41b91400 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41d77158 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x41dc7569 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x41df16c3 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x41e2195f perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41f30b8f component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x41f5efff pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x420ccb70 iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x420f7092 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x422a3252 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x422e578a __SCT__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x422e9549 __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x4234505c hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x42554188 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x427a9d22 __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x42823ae9 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4293d491 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x429d9734 __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x42a42adb nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x42a6c863 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x42bcab8d sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x42c5af10 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42caf025 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x42e10397 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x42e445f6 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x42e62741 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42f5c9df pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x4300fc82 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x43051802 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x431550f3 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x432838e7 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x432d9e05 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x432e22fd extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x4340f134 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x4357074b fpstate_clear_xstate_component +EXPORT_SYMBOL_GPL vmlinux 0x435f1892 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x43643684 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x437612df perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x437748f7 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x437acb08 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x43993101 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x439e8425 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL vmlinux 0x43a79271 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43aae962 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x43b4f5a9 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x43b985b5 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x43c2d251 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x43d88533 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x43dd7f0f gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x43e0c3ff icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x43e39079 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x43e84d1d crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x43f24c80 virtqueue_is_broken +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 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x4408d2e4 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x4416c77c sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x441fd88f kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x443b71d9 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x4447f9da ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x444a16ae dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x444b438e register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x444c8522 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x444f8403 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x44592276 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x44809efe blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x4481470c tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c0cfff kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44d2ce6d ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x44e6348f iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x4500c7cb tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x45066280 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x45188b14 devlink_port_attrs_set +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 0x45426951 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x4550ba6e add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x456c7d22 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45bfefef iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x45cdf933 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x45d324ad pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x45e1b295 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x45e3fd3c tick_nohz_dep_set_task +EXPORT_SYMBOL_GPL vmlinux 0x45ec53c9 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x45f247e2 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x45f3d5e0 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x460b1b8f iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x4636cb9c iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x4637a04c gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x4639bcda acpi_nfit_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x463d8290 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x464198c2 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x464e70ef device_rename +EXPORT_SYMBOL_GPL vmlinux 0x46593826 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x465c14f6 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x466254d8 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x4663ad1e irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x46646ce2 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x46687211 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x4681ac12 __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4688f14a __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x469feac4 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46a6c9ef hv_get_tsc_page +EXPORT_SYMBOL_GPL vmlinux 0x46a79c98 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x46ae4c88 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46c87a20 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x47001da0 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x470c7bc0 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4723e3ec watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x472703ad ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x47383aa6 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x4746deea ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x47551a0a ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x475c5a22 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476ebf08 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x476ec060 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x4772bbad xfrm_get_translator +EXPORT_SYMBOL_GPL vmlinux 0x4780c809 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x47851d2f iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x4787ff15 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478dbd0c dev_pm_opp_unregister_set_opp_helper +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 0x47a46d2b xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47aefcc3 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x47b056be vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x47cf905b mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47d44c70 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47ee9ef6 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x47fcb9e3 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x481483c7 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x481831c1 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x483037aa dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x485ee057 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x4861bef2 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x48674936 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x4874c37a nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x4896fcfc sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x489a507a iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a41589 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x48abefb8 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x48af4620 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x48c6556e dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x48c658d6 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x48cb82dc __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x48cc0f58 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x48d18d42 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x48d51a48 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x48de86b5 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x48e3d70f gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x48ecbb99 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0x48f4f5cf uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x48faa8b2 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x48fec4bc devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x49028070 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x49192b58 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4928bae4 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x493516a0 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x49354680 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x493e6fb1 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x49491f8c xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x494e8d65 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x495304f8 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x495a4221 __SCT__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x496ad6f7 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x49859ee6 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49951708 sev_enable_key +EXPORT_SYMBOL_GPL vmlinux 0x4995a226 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x4998aaf0 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x499bbf57 nfit_get_smbios_id +EXPORT_SYMBOL_GPL vmlinux 0x49a5b262 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x49ad91e9 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0x49b7ebc3 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x49bed50b usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d93637 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ef73be __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x49f24f43 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x49f8160c led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x4a0042c2 security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a22c2a5 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4a2dbf80 vmbus_next_request_id +EXPORT_SYMBOL_GPL vmlinux 0x4a2efd9f ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x4a31fec2 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a58b806 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4a8c9335 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x4a91792a ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x4a96f7d0 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x4ac2c528 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x4ac6970e regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x4ae0bb4d find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x4af73861 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x4afc9ccd lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x4afe17a7 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x4b2210b8 vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL vmlinux 0x4b2cd5af crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x4b4108d0 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x4b420b4d __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b5aef87 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x4b5d0019 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x4b6a7e30 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x4b7819b4 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x4b7e859f regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4b87be6d devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x4b9e58d1 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x4ba2307f kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x4ba9e237 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x4bab4d7a usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x4bb84816 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4bbffe57 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x4bc512d2 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4beb87f4 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x4c153b83 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x4c1eb656 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x4c247f4c blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x4c3fb245 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping +EXPORT_SYMBOL_GPL vmlinux 0x4c77f03e crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x4c78aab9 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c9d5b0c blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x4caea83c pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb49af7 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x4ccfc465 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x4cda3739 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x4cea76cc devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x4cf156ac iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL vmlinux 0x4cfa4d2d pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x4cfb4064 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0b752f alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x4d1b8fa1 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x4d1c5c84 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4d23d5c3 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x4d269e8b spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x4d3dcafe dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d50faa8 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d55a31d key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x4d64b6f9 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d75a897 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x4d7eef77 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x4d9e2024 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x4da1f4a7 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x4db141ba generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x4dd4f09c __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4e064c7b gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x4e1015b0 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e130d1a seg6_do_srh_encap +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 0x4e26d2e6 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x4e282945 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e5ee273 tick_nohz_full_mask +EXPORT_SYMBOL_GPL vmlinux 0x4e613bdb __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x4e623112 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x4e655e64 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x4e693c1f devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x4e763dc8 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x4e89ed46 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4e8f7766 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x4e93a62b sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eafd45d vmbus_open +EXPORT_SYMBOL_GPL vmlinux 0x4eb6074e mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x4eb87788 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4edae6ae acpi_nfit_init +EXPORT_SYMBOL_GPL vmlinux 0x4ee2687e xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4efdef1a rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x4f0811f0 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x4f1f65bc mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2c96b8 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f37efe7 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x4f66bdd9 serial8250_em485_start_tx +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 0x4f7e1b59 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x4f7e2c75 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x4f8546af cpuidle_poll_state_init +EXPORT_SYMBOL_GPL vmlinux 0x4f99fe62 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x4f9b8c95 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x4fb61032 start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x4fb6af41 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x501d41f2 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x5020f427 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x50237714 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x50419bbb addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x5043f56c power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x505d055d __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5069e08e usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x506a29f5 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x5073542d em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x5074860f ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x50759163 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x50a6eef9 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x50b42ba1 entry_ibpb +EXPORT_SYMBOL_GPL vmlinux 0x50c61940 __context_tracking_exit +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e23ff3 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50e76372 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51020e23 fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0x5133d5b0 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x5151b9e1 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x5165787c devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51690cdd nvme_get_features +EXPORT_SYMBOL_GPL vmlinux 0x516a9016 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x5170b132 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x517b2375 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x5198a6ee rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x51b9cd70 __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51d456d4 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x51d9f5b1 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x51e2dfe9 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x51f4d664 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x51f88744 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5225d3d0 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x52274ce3 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x522957f9 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x522b465a sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x522c58db exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x524f50dc dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x525be127 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x526275e3 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x526d5f58 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x5271f21c vmbus_close +EXPORT_SYMBOL_GPL vmlinux 0x5287896e fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x5288b8dc blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52b39aad regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x52b90566 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52d79426 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x52e3917c xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x52fa11e4 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x534619b0 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x53601760 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x5366dd38 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x537686b2 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x53780798 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x537920a0 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x537fd616 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x53aa0213 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x53ac5628 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x53b169bd wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53c9cb76 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x53d36dd0 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53e47633 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x53e89195 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x53ef25da net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541e0c32 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x542f3bfd nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x543fcc00 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x5446855e driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x544af065 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x544e550e pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x54526ee0 xfrm_put_translator +EXPORT_SYMBOL_GPL vmlinux 0x5460f79f work_on_cpu_safe_key +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x54838e28 vmbus_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5492fcd1 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x5497026e ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x549e7e84 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x549fedbd nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x54ac2ce4 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54c5b2f2 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x54f7bdab wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x54fc4bc9 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x54feb5b7 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x550053f1 devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x552298eb dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x5532db95 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x55387397 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553e073b lookup_address_in_mm +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5543494d __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x554f217c fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x5553a29e nvme_reset_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x555731fd fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x55607054 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x557fa068 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x5588b170 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x5597ac87 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x559ea6e1 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x55be13e0 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55c7fd91 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x55ca48e0 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x55cd00f9 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x55dd26cc ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x560f40f6 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x5611bfce nvme_complete_rq +EXPORT_SYMBOL_GPL vmlinux 0x5612c07d phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x56214e96 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x56250a1a dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562694bc acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0x562f05fc xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x563ef6e2 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x563fb48f sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564e70ac regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x56545b26 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x565d4cce skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x5660460c __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x56609cf0 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5677c1ca netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x5677dd71 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x5678cb41 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x567ae49c nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x568693d2 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x568fe5a6 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x569951f9 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x56aa96f0 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x56b300da dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x56b5268a __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x56b53b1d thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x56c1b9cc do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x56d61dce context_tracking_enter +EXPORT_SYMBOL_GPL vmlinux 0x56d8cd5d udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL vmlinux 0x56d97d7e list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x56f0b553 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x56f9f48b nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x57113567 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x571f2b43 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x575776c3 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x57602b94 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5779e198 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x578016f7 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x57861a5c gds_ucode_mitigated +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x5799d0bc clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57ad7259 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x57b7e306 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x57bedfc5 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x57ca743b sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57db4cd6 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x57e0e5f6 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x57e78547 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f9ff5d blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x582d10cb ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x583068a8 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x58a4f58f switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x58a9be34 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x58b7c98e component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x58c5cbc9 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x58dc2f07 device_register +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58f333c1 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5908af6e xfrm_register_translator +EXPORT_SYMBOL_GPL vmlinux 0x5912d787 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x5922fa73 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x59364d98 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x59488b1f unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0x594d9c9e ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5954399c pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x595a7a11 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x5960cd8f governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x597ed065 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x5993796d nvme_unfreeze +EXPORT_SYMBOL_GPL vmlinux 0x599d1566 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x59b07c68 dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59bbcebd synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x59bbf145 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x59bd797c fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x59bdebd7 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59c5db41 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x59c6aff4 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x59daa158 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x59dc4e5c dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x59e0f053 fpu_free_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x59ebdfae pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f3a775 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x5a0a1357 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x5a16fd11 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a2985a9 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x5a315b03 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a4ab05b crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x5a5144b1 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x5a5250ef tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x5a52578a kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5a556d09 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x5a5f7828 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a65971a perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a6feba9 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x5a717a8f pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5aa2b50a hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5acacd83 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x5ad19c5f device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x5afb273c sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b287909 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x5b322f31 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5b41a90e raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x5b4f7889 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x5b50c623 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x5b6a853e dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b8a2c21 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x5b8f0ecd hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x5ba9678a dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x5bb02861 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x5bb2bf63 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bbf230a addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bc9ebe4 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x5bcae8ea dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x5bcb0627 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd43e0e ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bded4b8 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x5bef36f4 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x5bf5173f gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x5bf52b9d nvme_start_queues +EXPORT_SYMBOL_GPL vmlinux 0x5bf8f047 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x5c005910 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x5c09818f auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x5c0c165e __SCT__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c1b96ce gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec +EXPORT_SYMBOL_GPL vmlinux 0x5c3134f1 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x5c38685f regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5c3b226e pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x5c3e95f4 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x5c4839bf vfio_pci_core_enable +EXPORT_SYMBOL_GPL vmlinux 0x5c4fdbcc find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x5c5688e3 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5a720a tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x5c630fd0 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x5c6b7efd power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x5c743871 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x5c831e80 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x5ca49708 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x5ca4f531 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cb96933 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x5cb99a7f blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x5cc7e3b0 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x5cd1794c __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x5ce0d4ad fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5ce1cd77 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cff0332 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x5d0113e0 x86_pred_cmd +EXPORT_SYMBOL_GPL vmlinux 0x5d12b78a __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d24063f __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x5d26e622 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x5d28fd82 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d320d87 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5d555f04 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x5d6e3981 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x5d729bdc __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5d7491b4 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d91af29 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq +EXPORT_SYMBOL_GPL vmlinux 0x5da4985a __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da863ee fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dcc36e8 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x5de428f0 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x5e000f0c pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5e005b5a ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x5e0c0882 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x5e0d1e0f regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x5e1043de fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x5e115602 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e1eb4c6 __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x5e2ee254 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x5e35348f debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x5e502329 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e5b9fef scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x5e67e911 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5e711f57 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e896494 nvme_sync_io_queues +EXPORT_SYMBOL_GPL vmlinux 0x5e912445 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x5e9f5731 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x5e9fbbe6 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5eaef665 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x5eb67777 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ebfbb4d nvme_kill_queues +EXPORT_SYMBOL_GPL vmlinux 0x5ed1b27e eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x5ee0ff9e clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x5ee41aa7 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5eeac9b3 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x5f0cb548 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x5f0cc847 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5f1dde01 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f2e947e serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x5f422702 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x5f4a2c58 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x5f4d67dc nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f94537e vfio_pci_core_match +EXPORT_SYMBOL_GPL vmlinux 0x5f9d0ba8 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fae9131 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x5fafd044 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5fe9b746 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x5fee27b4 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x602d4038 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x60447a06 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x6044b22a icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x604b1751 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x60788345 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x6089204d unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x608c6e91 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60989e91 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a1f5c0 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL vmlinux 0x60b3cdd1 pwm_lpss_probe +EXPORT_SYMBOL_GPL vmlinux 0x60bfffac rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x60c38f52 intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL vmlinux 0x60d3e413 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f3dae5 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x60f4dbd1 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x60f9814e vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x60ff801e preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x610972a5 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x610f05db __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x6111549a tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x6115ee99 __xdp_build_skb_from_frame +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 0x612e24e4 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x6148321d fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x6176ce5c bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x617dcbdd rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x618c719d ip6_sk_redirect +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 0x619f3fe1 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x61b443f8 x86_spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x61c0d017 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x61c2bf6f clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x61e2f8aa devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x62199470 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x622e71dc reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x623f2ad0 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x624cd5a5 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x62599c82 vfio_uninit_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x625aae22 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0x62694dfd dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x62699e8a hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x626c5b66 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x62b33d74 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62f5c6a7 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x63016136 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x63026490 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x631ff11e platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x63233ac8 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x632695d9 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x6327f8ce bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model +EXPORT_SYMBOL_GPL vmlinux 0x63543740 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x63555dbf __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x635b534e tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x6360b34f clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x6389bf06 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x639907f5 vtime_guest_enter +EXPORT_SYMBOL_GPL vmlinux 0x63a7d56a of_css +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63cc40a2 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x63d9f51b iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f793f0 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x63ffe35e events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x6400456c get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x641f0832 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x6427210e uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x64636146 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x6472ac05 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x6475bba8 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x647c2eec netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x648d327a ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x648da00d regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x64ab6bed set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x64b47fda regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL vmlinux 0x64b71173 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x64ba9e97 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x64cbc94c regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x64d26173 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load +EXPORT_SYMBOL_GPL vmlinux 0x64da810f pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x65098f61 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x6515f35e acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x651a1734 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x651e1e95 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x65240e93 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x6525746d devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x653608e2 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x65634368 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x659ab64e sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x65b75654 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x65ba295a __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x65bb32e8 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65e596a1 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x65f23124 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x65f88adb nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL vmlinux 0x65fa0f9e dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65fd7bde __traceiter_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0x660c9eb8 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x66118e53 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x6613e2eb bus_register +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x662992a6 hsu_dma_remove +EXPORT_SYMBOL_GPL vmlinux 0x662ae005 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x66450608 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x6648f110 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x664f4236 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x66534393 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x666939b5 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668a4588 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x66a0ab4f __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x66b12891 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x66b408dc __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x67045d7c __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x670d5b96 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x670f9899 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x672930e0 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x672f7eda power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x673d9f86 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x674ad176 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x674e657e hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL vmlinux 0x6759bd00 __SCT__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x675cd4f6 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x677ecef5 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x67843f5c device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x6790a259 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67959050 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x679d30f0 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x67c9eac2 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x67e0df72 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x68196367 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x6838c916 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x6882a767 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x688b47bb put_pid +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68a71203 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x68ab0111 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x68b09f83 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x68b806cc wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x68c5764d agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x68c72123 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x68e0cb63 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x68e3eb9d md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x68e9765b __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x68ed4a4a blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x68f3d84b ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x68fe104c subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x691b4cbc gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x693bc43b tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x694475bb dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x694c3a1a switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x696c689b ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x69797ac8 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x699820b1 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x699909aa usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x699d47c5 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x69a3fe50 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x69ac4c63 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x69bd36c6 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +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 0x6a04eba6 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x6a0e99a9 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a17d8e2 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x6a2fcfa1 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a452317 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a51cc0a devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x6a52a593 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x6a53f970 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x6a7b6fc0 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x6a7d0aed wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x6a7f0f3a devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a928c41 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x6aa9a939 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6ab45c0c ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x6ab46794 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x6ab70406 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6ab9a034 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x6aca44e9 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x6ad6d705 usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0x6ae507a2 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x6b0eaa18 hv_ghcb_msr_read +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b33d6f1 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x6b35a16b intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b511615 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x6b52689e pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x6b5ba664 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x6b66cb65 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b81d4e4 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b89650e crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x6b9ba983 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x6b9bf6d9 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6baf8741 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x6bbcf8c7 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x6bc6b5b5 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x6bcc842e syscon_node_to_regmap +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 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c26c328 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x6c28bfd2 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3c085b od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c507693 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x6c5554b5 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c617ee0 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work +EXPORT_SYMBOL_GPL vmlinux 0x6c89f380 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x6c98e88f device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x6c995f0b __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x6c9a0fe5 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x6c9c9af7 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x6ca1b2fa iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x6ca1cd03 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca8c0f8 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x6cad946a edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x6cb3ef8a transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x6cb7a2f1 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x6cd5c3b9 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x6cd73156 pci_disable_rom +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 0x6d109fee iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6d2245b1 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL vmlinux 0x6d2ca05e __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x6d2e899d mce_usable_address +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d34bfcf acpi_dev_get_memory_resources +EXPORT_SYMBOL_GPL vmlinux 0x6d3de58a phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x6d5c8a15 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d86c429 intel_pinctrl_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6d9d274a proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x6da4c410 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc81034 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x6dd37aa1 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6dda50fa acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0x6df7c9dc regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x6e1748c4 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x6e3b650c __vmbus_request_addr_match +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e48cf59 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x6e49aca5 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e6cf940 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x6e749b23 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e85a86b irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e954e72 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x6e98816f gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ee0c36e __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x6ee214de dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ef805d6 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x6f0d09b7 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f2390f4 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x6f23b81c phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x6f3223d3 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x6f332b00 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x6f339fc4 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6f51578f led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x6f5f4677 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x6f7101b4 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f7efbb8 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL vmlinux 0x6f92157a blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x6f935e35 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6f95bb84 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa509a8 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x6fabae87 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x6fae53b2 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x6fc11f80 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x6fc7d2b0 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fde785a acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x6fe7ebd7 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x6fea64d5 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x6fefe6be tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff9cdcc sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x6ffce680 x86_cpu_has_min_microcode_rev +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x700b3acf led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x700eb8b2 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x7012c3cf platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x702b5994 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x703491d3 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x704577bd synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x70497bca devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7055c56e __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0x706d2d30 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7084fe8b usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x709d6321 vmbus_alloc_ring +EXPORT_SYMBOL_GPL vmlinux 0x70adc093 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x70b0aecd __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70cf1a81 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x70f9ca12 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x710837b4 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71134c21 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x711a0054 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x7134bc6f sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x713de973 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL vmlinux 0x71494c77 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x714d9ea6 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x715610e2 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7165221d ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +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 0x71d3921d __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x71da8e72 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x71db37ec __put_net +EXPORT_SYMBOL_GPL vmlinux 0x71e49e5b rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x71e9a344 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x7204675e acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x721a0418 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x7231609b serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x72429676 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x72787a93 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727edc41 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7289d3a9 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x7296febf ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x729c24e2 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x72af72c4 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x72b0fcde wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72d4fd6d mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x72db4496 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x72dc4cb9 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x72e96c01 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x72fcd1b3 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x7304986b devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x731bae07 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x7328d3a5 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x732aed4f add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x732df578 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x733c63e1 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x733ec33e __SCT__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x7350cda1 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x7352d6b6 __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0x73705288 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x73735eef sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x737e3e21 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x73840ca7 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x738955f5 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x73905f37 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73aa4c26 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x73b1c6d0 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c7a34e intel_pmic_install_opregion_handler +EXPORT_SYMBOL_GPL vmlinux 0x73c98990 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d1de59 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x73d646c8 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x73d9f0d0 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x73dc2f01 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x73de32b5 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL vmlinux 0x73e1770b register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x74056a24 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x741192b3 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x741956c4 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x741a31e4 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x7428cf4e gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x744f0cb0 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x745371a9 ip_tunnel_ctl +EXPORT_SYMBOL_GPL vmlinux 0x74643895 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x7475e20d devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x74787df3 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x74834354 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x74914aac dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x7497f747 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bfab4f regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x74c31637 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74e15fe5 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74f1dad8 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x74fc12bf fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x74fd122f pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x7504c7b4 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x75066192 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7517944c hsu_dma_probe +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75250f9e wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x752f1962 nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0x75324cd3 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x75447c88 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x754a1d9b __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x754e6ab0 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x755c73cd tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x75775c65 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x757a5019 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x75998a0e cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x759c4589 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x75c40b1f __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x75ff4a5b usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x76017f24 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x7608c1e4 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x7616fe30 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x762640ab __SCT__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x7644616a task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x76582db3 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x765a4973 tracing_cond_snapshot_data +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 0x766e2f2c phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x7676870e pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x768f9c92 blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76b0ab3b blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x76c20136 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x76d40a04 fib_table_lookup +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 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f48488 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x7701240c regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7715d5f2 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x771a978b nvmem_cell_read_variable_le_u32 +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 0x773506ee dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x77353c6b __static_call_update +EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x774ec366 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x77559d33 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x776eabe9 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x77713233 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x7776436d pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x777a350d fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x778a47fe page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77937325 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x77a07213 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x77ab5dac sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b83e3e sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77e764da rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77fcc516 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x780f0e59 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x78109bc8 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785ccd07 spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x7868685f devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x78746f2d usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x78981c90 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78adb3df fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x78b603fb pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x78b839e4 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x78bab66b irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x78bf2ae6 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x78bf7517 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x78d7d6fc handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78f6a285 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x78fa64e2 fpu_copy_guest_fpstate_to_uabi +EXPORT_SYMBOL_GPL vmlinux 0x790a9bc7 phy_get +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 0x791ab49e acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x791dc587 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x79262eab spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x793468ef regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x7940edc7 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x7948811e regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x795eb41e phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x796bf96b __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x798bbb42 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x799557cf crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x799bb25b usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x79a955ba pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x79ab92d1 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x79b0906d regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x79b848ad __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79daf4de __SCT__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x79db6fe1 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e1478a pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7a0a7f05 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7a1056af crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x7a13d23d pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x7a28c3b9 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x7a29a2d9 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7a2d289d vmbus_request_addr +EXPORT_SYMBOL_GPL vmlinux 0x7a2f475b show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x7a367015 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7a3f5467 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x7a44f7c5 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x7a5868e5 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x7a5f9762 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x7a655f68 acpi_processor_claim_cst_control +EXPORT_SYMBOL_GPL vmlinux 0x7a73427e gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a7be1ec pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x7a7f7d8b phy_pm_runtime_allow +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 0x7a9e3b38 vfio_init_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7aaae790 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x7aadf961 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7ab4e2e2 uart_console_device +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 0x7ad49f3c skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x7ae06177 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x7ae463d2 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7b0716b3 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b2a2609 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x7b2a7f80 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x7b3f5420 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL vmlinux 0x7b4209b4 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x7b4fa202 devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b714f22 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x7b842e06 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b98398a fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x7baf0178 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bb9c11f sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x7bba6ae7 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7bbc68e3 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x7bc98960 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x7bd00ace debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x7bd6f420 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x7bd9c730 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x7c02c840 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7c0535a2 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x7c0aac49 bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x7c16601a __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x7c176e45 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x7c1840dc pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x7c198073 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt +EXPORT_SYMBOL_GPL vmlinux 0x7c286ea6 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c391c47 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c3e3976 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x7c3e736a rcu_nocb_cpu_offload +EXPORT_SYMBOL_GPL vmlinux 0x7c4067c9 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x7c50d8a4 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x7c5cef30 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c609532 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x7c626556 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7c63cc3e iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x7c656ea1 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x7c72ecb5 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x7c85d12f gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x7c8ce3b5 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9b1261 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cb912f0 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x7cc24054 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd52b9c vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cdc5fbc __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7cdff88b device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x7ce2c199 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x7ce43263 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ceff0b8 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d3739e5 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x7d3cf3f6 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x7d481e44 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0x7d491683 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5a575f rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7d698279 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x7d918c74 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x7dbc0201 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x7dbf83b9 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x7dc75901 fc_eh_should_retry_cmd +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 0x7e25641f nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x7e28575c open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x7e3afdbe bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e484e9b fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x7e57445f pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7e57558c dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e74e1d4 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7e766b70 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x7e7a2ca6 irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7b0e04 component_del +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e875793 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e8f707a phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x7ea1f425 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eab1f7c ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7eb596bf nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ec1a073 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x7ec60fd6 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x7eddeb2e klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7f00443e rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x7f0a677c ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x7f0f9732 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x7f1649fe ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x7f1ba190 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x7f4b81d2 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x7f5f6687 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x7f5f905c spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f733f06 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f99edfd security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fb99135 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x7fbb180a tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x7fbc7fe9 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x7fc22918 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x7fcf48a4 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7feb4375 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x7ff59df6 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x8018ef0d unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x802c1e3a gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x8030c7ce ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x8045eefd proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x8057fcfd dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x806d37a3 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x8070c0e9 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x8076ac8f serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x8087a488 devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x808a8088 handle_guest_split_lock +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80a123ee devres_release +EXPORT_SYMBOL_GPL vmlinux 0x80a52d0b iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x80be3255 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x80c18cd5 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80ca5920 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x80d44ee2 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x81012311 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x811424b6 ip_tunnel_uninit +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num +EXPORT_SYMBOL_GPL vmlinux 0x81304fe1 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x814e2386 kcpustat_field +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815c6645 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816450aa rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x8171740d crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x8174dd9a pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a5b6af devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x81f96d29 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x82035948 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x82081905 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x821ec7f1 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x821ef035 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x8220c9d6 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x822c1c9a xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x8238a3ae devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x8238b9a0 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x824c8ac2 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x825b36eb to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x826c870a ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x828202c5 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x828f63ca pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x829910bf tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x829da500 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x82ad98d5 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x82d1144e unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x82d1953c pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82daf23a nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x82f859c5 input_class +EXPORT_SYMBOL_GPL vmlinux 0x82fc7f1a bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x830f8524 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x83148b64 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x8319b4c6 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x83202334 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x832795c8 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x8328673f uv_bios_get_master_nasid +EXPORT_SYMBOL_GPL vmlinux 0x832eee9e rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x8334aefc security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x8335ca43 __SCT__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8337a342 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8359ca1f mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x83622a4d crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x83635499 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x8368cbd8 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x83699c22 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x836c2e5e devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x83916935 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x83c6040d unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x8403123b __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x841e7889 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8448ee4a regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x8453c8fb pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x84553cb3 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x8464f92e usb_check_bulk_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x84678725 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8480e638 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x848636dc mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x8488ef5a power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x848f9991 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x8494b9b5 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x84950a3d device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x849f98f3 vfio_pci_core_read +EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id +EXPORT_SYMBOL_GPL vmlinux 0x84dcabd0 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x84e4f3c1 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x84e8cc7a usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x8502b51f devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x8521c835 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x852383f3 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x85263d4e nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x8533e047 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x85498165 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x85527e6d efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x85678d40 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x856fbbb0 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x857e0065 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x8581d751 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x8592d892 amd_register_ecc_decoder +EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x85a90cef mmu_notifier_put +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 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85e594dd spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x85e8caf2 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x85ebe749 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x85f59287 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x85f6457b dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x86014b46 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x86142549 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x8631b8d4 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x863866b3 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x863f52f2 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x86472402 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x8648d135 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x86599411 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x865b0065 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x865cf2ec spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x865e0923 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x86644f7c inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x866455bc task_cgroup_path +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 0x8683d6e8 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x8686553e power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868da0ef strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x86904b08 nvme_start_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x86a0b3a1 intel_pinctrl_probe_by_uid +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b17c5e ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x86b6e4a1 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x86be644d mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86cc2e46 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x86cf7c02 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x86d45897 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x87219e30 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x872a0fd8 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x872d4f7c __SCT__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8738ab09 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x873d760a transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87406a47 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x8744b1e1 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x874be939 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x875d254a tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x8775bff5 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x87803300 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x8781eacf ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x87ce0be2 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x87d5166e sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x87d6e9e7 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature +EXPORT_SYMBOL_GPL vmlinux 0x87f241d9 dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0x87f34e99 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x87f46ec6 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x87fef38e devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x88183ab4 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x881b8d8f led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x881cc89b pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x881d14cd intel_pinctrl_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x881d8a46 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x8835c5f2 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x884c962c spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x88740a30 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x887cf1d9 vfio_register_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x88aa4581 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88b77f50 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x88c7e1de virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x890bfb1d pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x890e6ffa dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x891ba3fd device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892f9f04 __SCT__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x893aa2f9 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x893fed6c crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89700fef follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x8986a9d6 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x8990d127 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x8999b8aa page_endio +EXPORT_SYMBOL_GPL vmlinux 0x89a9a5c0 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x89aa3abb devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bdcb55 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x89be9bab misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x89bf5ada xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x89c38c53 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x89e16017 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89e40b39 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x89e60212 __acpi_nfit_notify +EXPORT_SYMBOL_GPL vmlinux 0x89e6586b handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x89e6a50a usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x89e8c14e cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x89f96592 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x89fd08eb hv_pkt_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x8a0fd551 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x8a2e5c81 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP +EXPORT_SYMBOL_GPL vmlinux 0x8a547c56 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x8a5861f3 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a6898d0 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x8a782461 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a7e2212 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x8a7ee1e3 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x8a82c5ae thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a838ef6 intel_scu_ipc_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a94a017 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL vmlinux 0x8aa2d4b5 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x8aa50734 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x8aaf2f72 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x8aafe64c simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac07151 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x8ac0c4e4 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x8aca2926 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x8acae1ef dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x8acc5ef4 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x8ad4ffd1 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list +EXPORT_SYMBOL_GPL vmlinux 0x8aefc31a validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x8af8f942 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8afdd25a usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x8b004ce0 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x8b0d286c crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x8b12170b dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b352b20 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x8b47ea1d __SCT__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x8b48abe3 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x8b4d3c0e bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x8b537065 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x8b61a398 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x8b670137 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8b921f43 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x8b95b6de apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x8b9a57d6 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x8bb8849d fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x8bc0cbfb hsu_dma_do_irq +EXPORT_SYMBOL_GPL vmlinux 0x8bd082a7 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8bd15fa5 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x8be710ce regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x8bee3108 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c092479 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c17c93b dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x8c1d5eb3 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x8c228dba blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x8c288e57 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL vmlinux 0x8c2900a3 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x8c306db9 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs +EXPORT_SYMBOL_GPL vmlinux 0x8c4c80bd ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x8c4fded2 sgx_virt_einit +EXPORT_SYMBOL_GPL vmlinux 0x8c5f9dc6 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c813982 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c98020e bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8c9dfa45 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x8ca0996b __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x8ca36c01 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x8ca6a20b pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x8ce578b4 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x8d07b073 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d2da98e usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d3f386f pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x8d4fefe8 vmbus_connect_ring +EXPORT_SYMBOL_GPL vmlinux 0x8d6afb05 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x8d7162bc cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d88ee64 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x8d8cc84a xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x8d90ef82 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8db18947 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8dbb2257 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x8dc82027 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8dd7fbde crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8de76282 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x8e0761c4 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x8e08ad02 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x8e2fd7b2 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x8e396243 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x8e3d911b arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e4a76f8 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e4f64b7 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x8e60598d set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x8e66bb3f iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e71ca0a ptdump_walk_pgd_level_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x8e77aa75 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e9e6318 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x8ea4ba0f vmbus_free_ring +EXPORT_SYMBOL_GPL vmlinux 0x8ea5b525 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8ebc121f nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x8ecdf935 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x8ecfd99d sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x8ed0c49d tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x8ed97e93 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x8eed0fa2 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef81ffa shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x8efb8ba0 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f09f535 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x8f136afa fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x8f1fc342 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x8f27a3b3 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints +EXPORT_SYMBOL_GPL vmlinux 0x8f3211c4 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x8f393f3f security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x8f3d0460 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8f3e02ff ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x8f49ec01 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x8f5ec807 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x8f67a067 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x8f6abcb8 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f793611 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x8f96b858 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x8f9e5cfe regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8fa9d9e8 __SCT__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fb791c1 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fc85c13 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x8fddba03 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8fe38593 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x8ff4a0c2 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ffb1df7 acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0x900fac06 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x9012223d power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x901d2ba6 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x90212828 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear +EXPORT_SYMBOL_GPL vmlinux 0x903a4cd9 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x90408ab9 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x90474f7a tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x9049cf3c pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9060fe7e devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x906e0f13 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms +EXPORT_SYMBOL_GPL vmlinux 0x909987df fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90bb79bd param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x90c33315 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x90c4bf10 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x90c66c3a edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90cd4473 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x90cf38bf crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90de20f5 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x90de72a9 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x90f2fc6e devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x90f92e03 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9107d224 __SCT__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x91130299 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x9140fd38 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x914e3cdd devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x9161155c rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x917ad120 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x917d953b __SCT__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x91838cca __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x919b99b9 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x919fe4c9 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x91a816c5 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x91b063b6 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91b9a4ba e820__mapped_any +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91cb727d __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x91d35d5b pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x91e76bc5 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91fb3e4a acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x92088172 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x920c3ac4 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x920f27a9 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x92274fe6 acpi_unregister_lps0_dev +EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x92350a66 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x923753f9 __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9258f902 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x92616122 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x92688c71 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x92892211 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x92919b1c devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x9297a1f7 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92cfa4ed usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x92d09ceb synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92dc80dc __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x92e5766e cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92f6ed45 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x930e6a3f strp_done +EXPORT_SYMBOL_GPL vmlinux 0x931a3024 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x932059fc vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x9328660e crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x933d80eb gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x935b8ca5 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x93a2458d crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x93a57953 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x93b353db devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x93b895e1 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93cb1f11 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93dd3841 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x93eb2c92 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x9409555b xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x94145804 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x94146b46 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x9415c65a dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb +EXPORT_SYMBOL_GPL vmlinux 0x941a3d4f clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x941f2722 dw_pcie_setup_rc +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 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x94401dee extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x94564466 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x94681b45 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x94754305 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible +EXPORT_SYMBOL_GPL vmlinux 0x9485268f irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x9495df5a rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94cc4f74 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x94d03b29 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x94d0d4a4 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x94e226c4 __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f49873 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950909ec acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x950a44ad pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x95168002 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x9522bd2b tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x95231eb8 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x953ebed0 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x95547edd dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x955a271d da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95609b26 context_tracking_key +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x957dc08a ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x9581b340 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x9588d3a1 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x958e4c86 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x9592d80f genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x95baac87 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95be3b01 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95f9febc edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x960023bd extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x96158765 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x9615b005 hv_map_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x96212c2f spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x962523b1 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x964db8e9 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x96999c26 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x96aaf783 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x96abf53d pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x96b57e32 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x96caf929 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x96e8089d irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x96f13ce1 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x96f4deef spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x96f6c7f0 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x97004055 vfio_group_get_external_user +EXPORT_SYMBOL_GPL vmlinux 0x9701aa33 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x9709539b percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9719bcfd pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x9719f028 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x971ac4fa devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x97247463 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x972a37c4 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x973a595a device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x97638297 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x976a2ec8 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x97715f99 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x977c0d79 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x97846de3 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x978e283f dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x979103e7 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x97a022fb hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x97ae1ed0 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x97b4fe28 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x97b72776 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x97bc4d66 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x97bf9e94 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x97c11f36 nvme_setup_cmd +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97f36469 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x97f8ad1d pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x9809513a usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x98166a6b devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x983109a1 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9835fc3d gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x98420b28 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x984edb79 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x985e69cd klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98831dd8 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x989d2729 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x98a751c9 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x98a845af vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98bc1d54 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x98c3e638 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x98c64520 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x98c95340 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x98c9a645 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x98ce6e05 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x98e9ec0e subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f2340b rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x98f41a8e devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x98f47e1c pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98ff0ba6 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x9922868a l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect +EXPORT_SYMBOL_GPL vmlinux 0x993c63f3 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x993e967c ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x99408388 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x99439f72 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x994c4801 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995df7ba ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x9967bdf5 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x996b63a8 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x997356d5 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x997cc46f ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x998f4b63 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x99a7b89e irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x99b1cc00 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x99c4c434 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x99d37932 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99ec4fb1 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x9a0bce32 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a185ace tick_nohz_full_running +EXPORT_SYMBOL_GPL vmlinux 0x9a198c26 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a39ae43 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a685621 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x9a6b3183 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x9a70b828 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x9a85454d usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x9a898b85 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x9a911f59 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9a9dd36b param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x9a9f3bdf __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x9ab6003d devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9adf7612 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x9ae9c2d2 ip_tunnel_init_net +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9b19a516 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9b3db55b tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x9b534942 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x9b554b03 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b5dd868 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x9b5f8e9d dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x9b60154d pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x9b67f223 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b73ec3d iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x9b7d8e13 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b916e13 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba1dc87 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9ba9e700 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg +EXPORT_SYMBOL_GPL vmlinux 0x9bcc0363 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9bdf0255 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9bea3c84 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c070af1 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x9c17c9f6 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x9c622cdd regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9c6e2e10 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c7daf88 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x9c7e8c4f pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c94794c bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9ca9cc5d devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x9cad465a __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x9cad8488 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ccc137d regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9cd4852f __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cdc12d5 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9cdeca56 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x9cefa955 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cf680f1 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x9cfdffc1 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x9d026a8c watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d0f05e6 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x9d106f9e tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x9d14205c cr4_read_shadow +EXPORT_SYMBOL_GPL vmlinux 0x9d16c1e4 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x9d373f28 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL vmlinux 0x9d3dccfc devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d419233 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x9d483326 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x9d4894c8 x2apic_mode +EXPORT_SYMBOL_GPL vmlinux 0x9d508ba0 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x9d5286e9 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x9d6f649c pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x9d7d801a regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x9d8340ab blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x9d8b1280 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x9d91dc47 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x9db947a2 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x9dc0c266 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x9dce187b phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9df2a7d6 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x9dfa38f8 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e03a963 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x9e04998a devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x9e0f1492 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9e2aa3bb virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x9e2b9719 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x9e32ecde strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e678888 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x9e72424e skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x9e7729cb ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9e985344 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x9e992aa8 __nvme_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x9eb28f4f pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x9ed52ba2 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed58085 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9ed61513 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x9ed7775d blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x9ed8b6ae thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9f053210 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x9f075b68 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x9f223fe4 __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x9f4349f8 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x9f46ed41 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x9f4f9a64 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x9f60fafd fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x9f69e15c evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x9f777ae6 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x9f7ffa1f regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x9f82ad96 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x9f8c3437 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x9f921382 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x9f97b308 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9fa9912c debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc8463d blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x9fc8fc56 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fdafd7d crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x9fe1504c isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x9fe7a9cc crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ffc8c46 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x9ffd59a3 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xa0001b05 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xa004e405 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa033b987 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xa033f541 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xa0351ed8 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xa04d85f3 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa05073e5 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xa0626c11 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xa06540b0 split_page +EXPORT_SYMBOL_GPL vmlinux 0xa0688c3f extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xa07a2ac2 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa090478a arch_has_restricted_virtio_memory_access +EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d81b76 __SCT__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xa0e4d58e crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xa1057bb7 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xa11160cf sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0xa13089b8 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xa13b4184 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xa143fe10 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xa1447115 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xa1485c61 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xa14ca67c seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa164a477 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xa17ccc80 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xa18afa57 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xa19550f0 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xa1a8f438 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0xa1b4e99a crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xa1b91cc2 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xa1c7363e pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xa1c9602f ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xa1e852e0 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xa1ea7c67 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0xa201939b dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa2147148 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xa216514d ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa21fe0e2 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa22a7778 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xa257e392 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xa25c3b2b fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xa2617481 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xa263270e ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa27298d9 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xa2775bb3 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xa295d4c9 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xa2975fdf crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xa29dadce __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xa2a1f421 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xa2ae6d9d br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xa2b3391e crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xa2c45aa9 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xa2c4c62a crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xa2cb2ea1 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xa2d0b59d mmio_stale_data_clear +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2eeaaea crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xa2f52f20 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa2fd0fd5 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xa31028e7 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xa31c9ea8 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa337cf57 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xa3389e95 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xa346e04c md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xa3498915 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xa349fb9b dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xa354246c ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xa36e0388 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xa36ebd21 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa37a91c0 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xa37d15eb wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xa3830c75 __clk_hw_register_divider +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 0xa391b276 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xa39b6ead irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xa39ea191 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3af6f67 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xa3b01180 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa3b62ff7 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3e7f8d9 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xa3e86baa ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f98743 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xa3fcf5db tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xa3ff501d skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa40f8e9c __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa42539ed phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa4343e04 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xa434bb9b kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xa43849c8 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xa4428e8b srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa44c375c vfio_iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0xa44e654f gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa462d5a6 __SCT__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xa4651899 __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xa47ce233 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4826b69 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa4a8d3f2 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4b28bf5 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0xa4d1681e serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0xa4e487b3 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0xa4f47303 intel_pinctrl_get_soc_data +EXPORT_SYMBOL_GPL vmlinux 0xa51b5982 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xa5205245 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa5358f60 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xa55c5d8d nvme_try_sched_reset +EXPORT_SYMBOL_GPL vmlinux 0xa5796f4c housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xa57c8fda acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa58e083d pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xa597b8ba nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xa5a1793e unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5c2a7fe unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa611506d gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xa61382e8 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0xa623c52e skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xa626813c devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xa626fb2a pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xa63e0268 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xa646ab9c device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa64ee73e devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xa65627c3 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xa679ce3b get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xa67f78a5 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xa696d390 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a10cec unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b7ac70 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xa6c00544 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa6d8d4bc pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6ed6012 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xa6f23513 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa709e111 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0xa714bba7 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa71a53da pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xa71c8073 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xa71fe173 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xa7218eba irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0xa7295a54 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa7418f0e regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xa74c52da pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xa751eeb5 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xa7535d49 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xa76056ad power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xa7638443 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa764b0bc pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa78c1a97 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa78c9933 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xa78deb45 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xa7a9eb2f regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xa7c0261b ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa7cf64bf cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xa7e3779c device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xa8003886 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xa80f55f0 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xa8185267 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xa82be40f of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xa830c338 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xa84b4875 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8686553 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xa869c615 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xa870f7d7 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xa87206fa register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa8759bc2 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xa890d332 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xa8bd35e0 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa8c6503c rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa8c69295 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xa8ce76a1 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xa8db3150 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xa8e126fb efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8e9325e devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xa8ebf924 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xa8f0cd2d reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xa901d376 nvme_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0xa9029533 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xa9075e77 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xa90e90c1 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa91c67b1 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa931fda9 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93d0bbd __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xa94068c6 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xa9481d64 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xa94ad8a5 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa9672aea bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa9749bd3 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xa97b7b81 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xa9854364 umc_normaddr_to_sysaddr +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a61386 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xa9ab9e13 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xa9c27065 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xa9c4171d pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa9d4f544 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xa9e14f44 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e20ee1 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0xa9f0d1b7 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xa9f7eff6 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa9f92afe __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0xa9f93d02 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xa9fafcb5 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xaa0d0717 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xaa119680 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa30cc6a scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xaa374abf device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xaa50f90f devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaa62ec5d devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xaa6a04f2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa77d715 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xaa78b4d9 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xaa799490 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades +EXPORT_SYMBOL_GPL vmlinux 0xaa8a8593 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xaa9127f2 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xaa946280 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xaa99c94e usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xaa9bfdb8 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xaaa87367 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaad93f0 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xaabfafc5 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xaac3c30b generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xaae8c077 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xaaeadccb pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0xaaeae056 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0xab03e5cc extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xab040ce1 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xab16a5a0 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab27a6d1 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xab3d184c irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0xab451609 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0xab4c8585 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0xab71e4b9 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xab73b12d kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xab8a8423 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xabb7c7c2 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xabbc40a1 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xabbf8160 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xabc1661d fpu_swap_kvm_fpstate +EXPORT_SYMBOL_GPL vmlinux 0xabc298d0 intel_scu_ipc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd522a2 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xabd8fd89 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xabee2824 vmbus_connection +EXPORT_SYMBOL_GPL vmlinux 0xabf03fc3 __SCT__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xac0549fa class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xac15e0d8 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xac16eb10 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0xac39e410 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xac3e5165 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xac4ad383 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xac58635d inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xac5f89be fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xac6fe0ec regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xac719d57 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0xac755352 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xac7894b1 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xac7a8825 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xac85baae usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xac96b8a3 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacb56620 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xaccbc729 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xacd4cc12 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xacfc34e1 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xad05da07 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xad0eb9e9 hsu_dma_get_status +EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad479bcc phy_init +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad5a4ee8 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad636843 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad6573e8 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xad7f78a5 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada5beac scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xada91a33 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xadc7a618 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xadcc17f8 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xaddc9476 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0xadfbff74 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xae06382d __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xae09e8be sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xae0d7a3d __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xae101a99 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae112956 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xae275eff rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xae2fcb10 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae5e0cc4 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xae64a9fc acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xae64c59c class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xae68971f nvme_remove_namespaces +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6c6383 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae841e4d devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xae8b9874 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xae8dea1f attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xae93fc7d noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xaead056f report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xaeaf1ec0 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xaecc0295 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xaed56236 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xaeda1e24 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaee5503c fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xaf02a837 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf090ea0 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf1515a6 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xaf184002 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL vmlinux 0xaf18b55b device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xaf18f399 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xaf2009fe devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf2b7ae7 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xaf307cff nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL vmlinux 0xaf3f3a29 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf40ba4c __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xaf45a464 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xaf4a9077 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0xaf5f682a aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xaf5f711f nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf7ad092 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xaf7d1a11 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL vmlinux 0xaf7fc51b acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xaf845560 vmbus_set_event +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xafa629e3 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xafbdbeec __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xafc33c72 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xafd7cd4d devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xafd87c49 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafdfe87e devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xafe1e1c1 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xafe7e985 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xafff2d1e crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb0025fbd edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xb00e5b57 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xb018b019 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xb0205703 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xb0496ff0 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07b2a3d __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xb088900a ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xb09bc71d pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xb0a6a593 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb0ab143c pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xb0b1d32a devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0b434fc gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0d6ea32 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xb0e6ae5d cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xb0f3c55a relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0f5db4c usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xb0fbb722 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xb1059089 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb111aaa3 dw_pcie_read_dbi +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 0xb11f005e edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xb12009ff nvme_fail_nonready_command +EXPORT_SYMBOL_GPL vmlinux 0xb13e32ba get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb16cf97c dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb17e38ac blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb194f0ba irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xb1a2a9f0 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1cb59d3 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0xb1dcec80 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0xb1de5b9a crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1fa5646 icc_get +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb213fa6b transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xb214a9bd pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xb218e629 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xb21eac39 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb2528f92 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0xb25e09b5 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xb26066fe ibft_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xb260e357 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xb2613efe acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0xb26665df nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0xb26855fd crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb29afb64 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xb2b13561 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb2b48c81 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xb2beabad blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2cd0f27 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0xb2ce44cd sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xb2d3ea3b sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb2de4cf2 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2ea3fe1 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb3615c5c blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0xb3802723 uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0xb3814ebd shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xb3902da4 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xb3922bb6 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0xb3df11d0 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb3e6e60a __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xb3f56fab phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xb41459e2 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xb41e2c84 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb420a7a1 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xb425d11c cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xb42dfb68 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xb42fac68 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xb4333472 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb44a177c __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb455e675 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb457d8bc crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xb4590339 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xb466cfe0 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xb47b43f2 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xb47eedfb usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb49de913 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xb4a73bb1 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c2b9dc crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xb4c386a2 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xb4d97696 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xb4e2f66d pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xb4ea411a rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f8bd0f usb_check_int_endpoints +EXPORT_SYMBOL_GPL vmlinux 0xb4ff2917 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xb4ffd54c get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb50e3ad3 ata_sff_dev_classify +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 0xb52debef get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xb52eb6f2 get_device +EXPORT_SYMBOL_GPL vmlinux 0xb537d627 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5389099 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0xb542f60a dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb5479a49 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xb5569c79 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb56163cb cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xb57186ba int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0xb5973939 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5aea948 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xb5b5ae78 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xb5b94660 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xb5bd9e36 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xb5c67546 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xb5c7f70f blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xb5d0ff09 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb5f0d185 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xb5f7b050 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0xb5f93c2c tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0xb60da3e6 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xb6100525 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xb612f308 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xb61ceab3 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb63366c1 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb63b8c30 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb64c0430 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0xb653b231 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb65746e9 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xb65d857b security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb66d581b __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xb671bab1 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xb672d3c7 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb675f10c fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xb6763a30 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb67ccbd2 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb68f7987 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xb6904cc1 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xb6988bcc __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xb6a42955 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xb6ae7a27 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xb6b580a1 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xb6bfb9dc devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xb6c5e614 acpi_processor_evaluate_cst +EXPORT_SYMBOL_GPL vmlinux 0xb6cea671 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xb6d5487b wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xb6d6a19c dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xb6d6bad4 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6eabe37 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb71b78c6 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xb72944db tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xb72d57b7 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init +EXPORT_SYMBOL_GPL vmlinux 0xb7759b2b irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb782b5ec gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cbdd3c __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb7cdb9f0 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb7ff43bb d_walk +EXPORT_SYMBOL_GPL vmlinux 0xb8194836 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb81d5cec gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xb81f6ad2 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xb8207844 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb83c6056 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb8432196 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xb8526390 __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0xb85fdfd6 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xb8769e10 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xb87ae6a4 hv_ghcb_msr_write +EXPORT_SYMBOL_GPL vmlinux 0xb87c7d79 trace_event_buffer_lock_reserve +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 0xb8938b8b fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8b92cc8 irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0xb8bbba11 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8cfbda9 nvme_wait_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb8d4b7c5 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xb8db8817 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0xb8df23f0 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb901837d regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xb905e6a3 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb9415f15 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb968dab0 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xb97f3a46 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0xb99076d2 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xb99c2943 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xb9a8b543 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xb9b5226f crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xb9b9206c gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9f7ef7d __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xb9fdfccd __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0xb9ff24d1 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xba040b4b mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xba0963aa dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xba106697 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xba13b119 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xba195bc2 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba28c88f nvme_stop_keep_alive +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba59cc00 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xba5f4e98 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xba7871dd tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xba7c753d mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba82f246 uv_bios_install_heap +EXPORT_SYMBOL_GPL vmlinux 0xba83507c iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0xba90c41e sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xbab7b80b acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xbad0aff8 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0xbad81f8c uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0xbae331f3 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xbaefea32 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xbaf1b601 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbaf7537e crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb26725e attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xbb267e1c spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xbb2c3ff9 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbb2ef751 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xbb52c6ff __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xbb5598ce get_llc_id +EXPORT_SYMBOL_GPL vmlinux 0xbb5f670c zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb684783 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6d5f69 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb83c8b6 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xbb90ce84 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb9eb819 blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xbb9f1e42 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xbbabc840 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xbbac9cdf ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbbdf237 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xbbbe1046 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xbbc50236 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0xbbc57d0f serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xbbd2da75 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xbbdc6841 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbeb78a9 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0xbc1114b0 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xbc13fd7e tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xbc220f0a __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbc3458ec phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc4e24bb copy_mc_to_kernel +EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbc6627e9 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xbc664c2c bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc77626d pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xbc83e3c2 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xbc8473f7 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xbc9505c2 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xbc958f1c fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbcaa30d9 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbcbdb766 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbcbf1c17 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcc6d4f1 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xbcc6d62e iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce4a4e4 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xbce51771 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcfa1ab4 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xbcfcc46a shake_page +EXPORT_SYMBOL_GPL vmlinux 0xbd07c514 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xbd0d7d75 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xbd221198 devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbd2f5753 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd50afa8 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xbd55dbb9 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xbd74bfe4 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd7d6f46 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xbd9b7368 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xbda07fb6 __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xbdafff5e ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa +EXPORT_SYMBOL_GPL vmlinux 0xbdbc5fdd __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0xbdc4ef9c n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xbdea84e6 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xbdf35f44 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xbe0502af ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xbe0c3783 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xbe143f3c vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xbe1f4fa8 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xbe233961 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xbe25577b regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xbe3d16ac pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xbe4a88fe ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe644d38 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xbe653b7e spi_mem_dirmap_destroy +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 0xbe6d8576 nvme_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbe6f4fbe debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xbe89bebe md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xbe8f760d rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea0bf03 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbebd091d devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbedccfc5 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xbee16f9d iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0xbeebcd43 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf13fc91 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xbf165dec __SCT__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xbf2c1f86 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xbf31ac15 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xbf32ea55 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xbf535a56 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xbf5969ea crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xbf5e76bc of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xbf61db67 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xbf6d8806 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xbf84e59f dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xbf87e740 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xbf8c7f10 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xbf8c88c1 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0xbf8f6efc device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xbfb0bc90 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc897ac nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xbfe06048 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xbfeebf92 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xbff45eaa debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xbff87a49 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xc00a47ac pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xc010448e thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc01247dd tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xc0178d90 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xc0285820 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xc03c62a2 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xc03fcf34 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc0519b5b devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0xc057da7e fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xc069a61c iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0xc07f60cb virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0c6755c iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xc0ca4519 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL vmlinux 0xc0d40313 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc11932b3 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xc11de42d devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xc13d8b78 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL vmlinux 0xc15058d5 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xc1690c08 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17e44c5 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xc18cdf36 amd_df_indirect_read +EXPORT_SYMBOL_GPL vmlinux 0xc1a67525 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xc1a8e7b8 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0xc1b1d6b5 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xc1b5dcc3 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xc1bcf63b task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xc1cad9bf crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc1caf534 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL vmlinux 0xc2033d9f amd_get_highest_perf +EXPORT_SYMBOL_GPL vmlinux 0xc20f2898 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xc214c3ee set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xc21c4385 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xc2211161 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xc2218d9c pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc23601c1 __SCT__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xc244b82c pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2659e37 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc2790384 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xc27c7b23 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2897073 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc292d90e dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2ab175f pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xc2b5e9f4 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2c3066e pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xc2c6f7ce blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0xc2d3e0a6 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xc2d55962 work_on_cpu_key +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2fb483f __SCT__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xc3329c64 apic +EXPORT_SYMBOL_GPL vmlinux 0xc3407a40 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34435e4 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xc3636b4d pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xc36d4fc7 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xc36d90bd skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc373d95c tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc385c1c5 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp +EXPORT_SYMBOL_GPL vmlinux 0xc3af82c8 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xc3b81250 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3d77f54 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e4f1ec bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3ef540b dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xc3f981c1 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xc3fed105 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0xc40beebf virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xc4163a23 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0xc41b4c14 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xc420a78b lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xc421a00b fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42f2396 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc45587b2 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xc45b702a __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xc45d0d13 injectm +EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc4630ead acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc4729305 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xc47bae3e dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL vmlinux 0xc4977cf7 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc4991a2c xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4a92302 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xc4c8f1a5 blk_ksm_intersect_modes +EXPORT_SYMBOL_GPL vmlinux 0xc4d022cb __SCT__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xc4e0e7da virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4f76d27 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc50223c7 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xc50b06e8 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xc50dca33 __SCT__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc5387075 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc54130b5 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xc5416239 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc56d77a8 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc58385f1 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xc585cfba init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc591c11f dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5d6a237 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xc5d6b1b0 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xc5d99f9a iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc5e23296 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xc5f5e9e9 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0xc5fdf303 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xc6005d6b fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xc604ab28 __SCT__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xc6054456 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xc6095ff4 nvme_wait_reset +EXPORT_SYMBOL_GPL vmlinux 0xc61791d9 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc62d49df crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0xc62fb05b blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xc6435a70 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66fc4b8 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted +EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6ab4e0f spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xc6cf167d devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xc6d96f18 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6eec8f5 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xc6fcd0c7 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc767ac64 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xc76805f1 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xc769cdb4 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xc76f8048 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0xc77ef76d pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc78f5b08 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xc7919191 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xc79bee7c switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a6ac98 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7ae150f tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc7affb21 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc7bb68ce gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xc7be7dc2 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xc7c51c84 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc7dfd66e user_read +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7e85025 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xc7eafbd1 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0xc7ebe35f devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7fcfa66 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc802877a led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xc806bb1c umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xc8141173 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0xc820c35f sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xc82863f1 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc831a80f genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc83c9f73 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc874d710 hv_unmap_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc87db18b fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xc8894cfd ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xc8bf4593 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8f5f6d9 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xc904f45c rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xc91c4973 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xc91ee1b5 __SCT__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc924086c regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc9351d9c sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xc93a662f devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc94e9137 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc956e52f devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xc96132cb gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc9731956 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc989ef36 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xc98c278d edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xc98c96ce register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xc98e556d devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc991c03f __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0xc9a14c36 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xc9a4b416 copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xc9b62902 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xc9c118f8 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca02e108 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xca0de663 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xca169648 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xca183b76 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xca242955 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xca4032b4 vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL vmlinux 0xca414f37 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca700069 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca7eb00e thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xca926797 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xca94063a usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xca9743a5 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xca984677 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xca99985a ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcaa4af74 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0xcab70c03 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcad23dd4 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb02579c iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xcb03ecf4 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcb09eb3f device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xcb0f4113 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb17758e cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xcb9f81c9 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xcba1f9cd dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xcbb46ca0 misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0xcbbff0e1 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xcbc3acb2 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xcbcc0360 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0xcbd9caf3 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbeac76c regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xcbf54369 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xcbfdf072 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0xcc09b556 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc24336d __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xcc26bfed raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc312197 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc36ec0a devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc542ed0 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xcc59ab9a __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xcc5b06cd relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xcc602f02 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xcc662ae7 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0xcc6a3513 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xcc6f7908 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc980d09 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xccce1fbf genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xccce5cf4 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xcce600e6 acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccf10086 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xccf396a3 x86_perf_get_lbr +EXPORT_SYMBOL_GPL vmlinux 0xccf46ff2 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xcd0d80d2 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd255bdf balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xcd30d00a device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xcd389142 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory +EXPORT_SYMBOL_GPL vmlinux 0xcd4d0d14 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd5b68c5 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xcd609ff0 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return +EXPORT_SYMBOL_GPL vmlinux 0xcd8e8f82 uv_bios_enum_objs +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda460cd tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xcdaade97 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xcdb637c0 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdb777ff devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xcdc049fe spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xcdc393ee scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd47b4b tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcdff0e5b debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xce19f653 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xce22763c __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xce321402 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xce39b4dd sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xce3c5bb6 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xce644b4c thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xce64a55d fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce70f689 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xce77ac05 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xce889905 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xce8e951c perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xce945996 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xce96805c usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xce985658 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu +EXPORT_SYMBOL_GPL vmlinux 0xcebe83d4 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xceca341e clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xced78efd fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee94d7e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xcf02ab71 __SCT__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xcf173c00 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0xcf431733 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcf540422 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xcf7c0efe handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xcf906434 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xcf9d0cbd dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xcfa173cb udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xcfa69895 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xcfab2205 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xcfb17d1b __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcfb56b54 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0xcfc3f655 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc6fcbb skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xcfd548b9 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xcfd82927 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xcfe336aa class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xcfebe882 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xcff210a1 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcff647a3 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xd0108318 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xd011fb47 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xd0177a65 acrn_setup_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0xd02f15e6 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd03161d8 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd04ad5b9 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd059610b serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd062f722 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0741286 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xd07907c8 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xd087d3da sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xd08ef671 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0b903d7 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c7e9b7 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xd0d0f4c7 rio_request_mport_dma +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 0xd0f1c178 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xd0f57b33 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xd11008dc vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL vmlinux 0xd1132fe5 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xd116cc66 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0xd1171af7 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xd1289495 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xd13371fc bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xd13a94d1 __SCT__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd1469a87 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd15ea542 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xd164103d devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xd164c976 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xd1752f57 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xd1a77b60 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xd1aa3fce device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xd1b5a0fd icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1da898e led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd1e87567 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xd1e9af3d devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xd1e9b2ad __SCT__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f428bb rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xd1ffdf3f mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xd207444c devm_pinctrl_register_and_init +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 0xd24403ac fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xd245ae64 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0xd249a56b md_start +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd26ddb55 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xd26e1629 acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xd270c7ad regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd281ded8 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xd2826499 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xd29e8e0f mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xd2a7c7a0 udp_sock_create6 +EXPORT_SYMBOL_GPL vmlinux 0xd2acbd4d rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xd2aeefb9 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2c33aee tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xd2dd45e0 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xd2e40edc power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd2e76bcb irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xd2eef2bf crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd3048323 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xd3132a9b pinctrl_select_default_state +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 0xd34bbb14 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xd3529860 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd3887587 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3b0e1a1 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3f0335b sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd3f94d39 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xd402934f ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4189e04 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42ac3df gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd43b6bc4 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xd4404350 __SCT__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xd4471629 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd452d128 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xd4532354 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd4724adf crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd4965829 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd49e6d8a event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xd49fb695 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xd4a6f0b5 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xd4ab7f27 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4ba217e vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4e944e6 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xd4ec429c usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd51cd337 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd53913b5 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd55e4486 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xd564b69a phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xd570b68f spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5838e7d fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xd58b6d5d device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd59e2e2a bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0xd5a675c6 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xd5ac3380 __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xd5b72df7 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xd5c72a09 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0xd5c77c17 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xd5c7ccc1 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xd5d24d95 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0xd5eb0d4e acpi_register_lps0_dev +EXPORT_SYMBOL_GPL vmlinux 0xd5f2792c tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xd5f3c595 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd5f8b4b8 kill_device +EXPORT_SYMBOL_GPL vmlinux 0xd610c4fc led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xd6175b5d ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xd61d11d9 __devm_intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0xd632aef4 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xd634ec91 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xd63581e3 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xd63c67d5 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd65a7182 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd68b9ea3 dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0xd694195c usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xd6a718ad crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xd6c38323 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xd6dcfcf3 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xd6e2e2a8 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xd6eece55 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xd6fa5ecc gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd715b335 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control +EXPORT_SYMBOL_GPL vmlinux 0xd727f1a8 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72b9541 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xd7362cb2 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd742b779 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xd7520eb2 dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xd7599f5c xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd75bd605 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xd7651fef __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd77cf905 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd7986799 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xd7ac0812 usb_add_phy +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 0xd7ceab02 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7f894ad subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xd823e646 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xd84767d9 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd84e6fe4 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8a35b07 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0xd8a8f42a irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xd8b41614 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xd8b8060e device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xd8c27679 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd8ca33e2 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd8d065dd hv_stimer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8e2aca7 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xd8f9432a clk_register +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd923b123 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd9353546 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xd93a7ef2 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xd95fca39 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd975864d __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xd98e275d extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd9992eb4 uv_bios_get_geoinfo +EXPORT_SYMBOL_GPL vmlinux 0xd99a6675 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0xd9aaf7a1 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xd9ad279d relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xd9ae3d63 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xd9b00b47 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xd9b7b0ba perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd9bb1675 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xd9c164e2 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xd9c55377 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9e528f6 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xd9e932a8 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda0fa647 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xda0fe189 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xda1c33de bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda3597a9 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xda3f56bd tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xda506e2f dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xda6fd5c4 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda7cab22 devm_blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0xda8369a7 __traceiter_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda99ed31 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdab55e66 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdab6443d relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xdab68eeb icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0xdac71caa vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xdaed9c8e dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb3498ab kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xdb4c543c list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xdb4e3a35 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xdb58b89a blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xdb5a25c0 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xdb62dc67 __SCT__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb8004b1 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe8b021 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf50b1c posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc1b9c82 nvme_cancel_request +EXPORT_SYMBOL_GPL vmlinux 0xdc29ac1c balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xdc2b8174 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc6afcde __SCK__tp_func_unmap +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 0xdc9739f6 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca0c977 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xdcbbf00a __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xdce2f25a skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xdce5444e regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0xdcf33a22 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd096cfc device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xdd293def ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdd2fa6fb da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xdd339fa5 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd4253c7 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xdd4db267 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xdd9bea26 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xddad2ace __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xddb69c30 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddcb0144 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xdde1e1ad fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find +EXPORT_SYMBOL_GPL vmlinux 0xde11bfee fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xde1eecf6 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xde24dfe1 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xde264f2c gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0xde269307 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xde2725a0 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xde56ff04 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xde6d62d7 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde7da3a3 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xde8dac84 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xde8e8f2c __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xde924210 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xdec4bfd7 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xdee3cbe3 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdee6b33b md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xdefbb1c4 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xdefe69fd __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf4e1d75 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xdf564aca firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0xdf633ecd irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free +EXPORT_SYMBOL_GPL vmlinux 0xdf9dd086 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xdfad2c73 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xdfaffc0e phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xdfb0e541 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xdfb1f2ea iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0xdfbff174 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xdfc8779d devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xe0129fcc usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xe01f76f7 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xe02b8aac led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xe02f6e5f dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0xe02ffe2d vmbus_request_addr_match +EXPORT_SYMBOL_GPL vmlinux 0xe030db2a extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe0352125 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xe0396cad pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe04c78db __SCT__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xe04e3157 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xe04e79ce synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe060e3c5 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe06e9a0e dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xe06f1af3 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xe075c146 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe098ae6e vmbus_setevent +EXPORT_SYMBOL_GPL vmlinux 0xe0a88ef2 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b26667 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xe0b84192 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xe0b89eb5 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0cbd5a6 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xe0d16bf6 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe0d39f1c sgx_set_attribute +EXPORT_SYMBOL_GPL vmlinux 0xe0de9190 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1095f1d __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe11a7ac9 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xe12b3db3 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xe134cecc irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xe138c68f skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xe13db712 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xe13eef62 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xe1491e78 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe149497b regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe167dc3d init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1864db4 acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xe1a5ab79 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xe1a6b23b inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xe1b29781 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c123d1 tick_nohz_dep_clear_task +EXPORT_SYMBOL_GPL vmlinux 0xe1c24612 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx +EXPORT_SYMBOL_GPL vmlinux 0xe1c8ff8a tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xe1d0ba66 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xe1d878f1 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xe1f7e283 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xe202916d perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xe213dccc sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xe227dbb6 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xe229cb87 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe2410f8f __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xe24a8ce4 tty_put_char +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 0xe280db5d bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xe28bfcc0 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe29f30f0 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2ec330c wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xe2effe97 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xe2f6fb07 ip_tunnel_init +EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe314ed97 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xe33997c9 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xe33b13c0 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xe340e0ad virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xe3497566 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xe34fa4dc phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xe3570b29 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xe36b8577 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xe36f5f7d ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a60db5 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3c39cfd nvme_stop_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3d46f2e vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0xe3de1056 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xe3e88acb __get_current_cr3_fast +EXPORT_SYMBOL_GPL vmlinux 0xe3eb3363 nvme_delete_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xe3eb81e5 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xe4038bb8 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe40c0639 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0xe40f80b5 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0xe411bd1d device_add +EXPORT_SYMBOL_GPL vmlinux 0xe4167d5c acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe42f6595 d_exchange +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe45a019e inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xe4625210 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xe46e5f5a vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xe4805562 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xe48d7826 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xe4918f15 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4ace1e5 skb_complete_wifi_ack +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 0xe4cc9f85 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xe4d4696f vxlan_fdb_replay +EXPORT_SYMBOL_GPL vmlinux 0xe4e226b1 strp_init +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4e4f307 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xe502fddf ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xe50a7306 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe51cad70 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xe52137b4 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL vmlinux 0xe528aa70 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xe552c1d8 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xe5595b40 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xe5661444 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xe568a71e security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xe574d9b1 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xe57c2612 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5bad085 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5c94575 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xe5cca654 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xe5d6997a amd_iommu_is_attach_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe5e013b4 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xe5e0f72d fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0xe5efa537 udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0xe5f73406 hyperv_write_cfg_blk +EXPORT_SYMBOL_GPL vmlinux 0xe5f83559 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe613e58e devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xe6174f44 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe6742e32 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xe674de81 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xe675a085 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xe69a5a6e aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xe6a9713b __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xe6ac2f2b regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xe6ae21a7 clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0xe6b6af83 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xe6be7cf6 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xe6cde097 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe6d13cc2 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xe6d40511 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xe6dd4956 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6eef3f7 regulator_bulk_force_disable +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 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe740b58a hv_vp_assist_page +EXPORT_SYMBOL_GPL vmlinux 0xe74eab4e sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe790530e rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xe791df1f rcu_nocb_cpu_deoffload +EXPORT_SYMBOL_GPL vmlinux 0xe7982d73 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xe79b24c9 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe7b150a9 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xe7b452a5 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7e9b19f scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xe8004a88 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8199ff8 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xe81f68f9 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0xe827445a __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe83e5032 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation +EXPORT_SYMBOL_GPL vmlinux 0xe848932c cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85353bc pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xe861e969 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8675239 devm_intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xe86d54f8 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xe8847313 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xe88566e9 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xe886665c led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xe89fa22f ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xe8a31a17 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe8aa5306 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xe8ba9157 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8c53d6a sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xe8d3cd9b devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xe8d8e005 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe8dc75c8 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0xe8df7d31 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xe8e235c8 arch_static_call_transform +EXPORT_SYMBOL_GPL vmlinux 0xe8ed2394 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xe90e164c bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe923f3d3 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xe937a95e tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0xe93a4679 hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9526582 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe95d4807 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xe95fe10a regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xe9c78772 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d7ba5a serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xe9fadf16 __SCT__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xe9ff9d28 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea02d092 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea26d94d pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea3d5c60 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xea435080 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xea4aa755 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xea4cf947 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xea5ed373 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xea61d188 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xea78fb95 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xea7abd13 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xea95a047 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xea992873 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xeaacc2f5 store_sampling_rate +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 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeb177c68 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xeb3bf7d4 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xeb3d2647 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xeb5955e0 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xeb94536f x86_platform +EXPORT_SYMBOL_GPL vmlinux 0xebaba765 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xebb12f7e perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebeb2898 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xec04e0f2 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xec0a85bd set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xec40dc0e ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xec40dda9 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xec56268b pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xec562ae1 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec59a8eb rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec667417 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xec7477fe iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0xec8071ce transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xec8b7e9f platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xec8bfd51 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xec9ecaac debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xeca43192 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xecaa8cf6 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xecae4c02 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xecc8ac2f fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xecf080c1 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xed00ba18 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xed0ab523 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xed157262 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xed161f5f debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xed1e1ddf bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xed2ece1d fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed42d135 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xed52ef28 ip_tunnel_newlink +EXPORT_SYMBOL_GPL vmlinux 0xed620eff ip_tunnel_setup +EXPORT_SYMBOL_GPL vmlinux 0xed770b61 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xed911f29 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xeda437f9 dev_dax_probe +EXPORT_SYMBOL_GPL vmlinux 0xeda9ebe8 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xedacd24d devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xedc59b6f crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xedc73ea3 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0xedcb43a8 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedd5ab48 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xedd73983 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xedd96800 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xede98ec5 intel_pt_validate_hw_cap +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xedec0a9b sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xedecc0ed irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xedf3eb22 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xedf5c700 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0xedf64b9e __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee28e0ff gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xee3056e6 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee463caf __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xee4b3d23 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee52867a pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xee53b84e serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0xee54ccdd l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xee5d5e01 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xee5fc6e0 sysfs_remove_link +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 0xee82b40d acpi_nfit_desc_init +EXPORT_SYMBOL_GPL vmlinux 0xee914ce0 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xeea20374 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xeeaac003 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xeeab8650 smca_get_long_name +EXPORT_SYMBOL_GPL vmlinux 0xeead9d3f regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xeec20bed bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xeece94ae skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xeed52f88 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xeed59084 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeee504e9 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xeee5c182 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent +EXPORT_SYMBOL_GPL vmlinux 0xeefa9876 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xef018806 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xef12af19 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xef1cf8f9 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0xef1f38af ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef2223b9 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xef36802d pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xef393a79 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xef3a70aa __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xef3e5188 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef490e36 vfio_assign_device_set +EXPORT_SYMBOL_GPL vmlinux 0xef54a909 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xef5b2d9f shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef639623 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef71a1bc vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xef744bb5 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xef7a72e9 perf_event_period +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 0xefa826bb fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xefc4a82b pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xefc67e46 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xefc799d7 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xefd43914 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xefd9411c blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xefd9e149 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xf01d8192 __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xf0259d90 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xf026ae8c irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf028f9ca ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xf0333332 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf056271c __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf06e7e98 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xf0718472 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf091cbfc clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xf099ea64 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xf0a02bb9 device_del +EXPORT_SYMBOL_GPL vmlinux 0xf0a0c69d init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xf0a8db45 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0b1abc4 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0xf0b5be91 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf0c975bb uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0d37539 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xf0d478c7 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xf0d522ba debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xf0df4ac8 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xf0f3f9db crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xf0f4da70 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xf0fb0b89 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL vmlinux 0xf1010237 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xf1108371 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xf112ac3a sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xf12e2668 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xf1334507 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf144561d scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xf1556c24 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xf16e2077 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf175fd37 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf197cf59 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xf1a9067f __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf1ba7794 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xf1c23cac perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xf1cd8929 kvm_read_and_reset_apf_flags +EXPORT_SYMBOL_GPL vmlinux 0xf1ce5eb6 usb_for_each_port +EXPORT_SYMBOL_GPL vmlinux 0xf1e52e9b crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xf1e78789 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xf1ebbba5 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xf210119d vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xf21470b2 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xf21bfc57 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf22d0534 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xf2620c4a subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf262cbf9 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xf26537d8 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0xf2657c8d usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf2657ea0 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xf2817688 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf29094ca elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf29ffccb crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xf2a10a23 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2b3cdaf clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xf2c53d53 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xf2e8c124 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xf2ef9e4a input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xf2efe682 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf3035a35 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0xf307279a crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf3189f7e __uv_cpu_info +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf3220742 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf3364681 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xf3512630 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf364d610 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xf366e7f4 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xf374b05c irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38982dd nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xf395cdc6 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xf39aee75 perf_msr_probe +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3e73b80 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf3f75878 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xf418e1a8 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xf41e2112 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xf42dcb74 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xf4317ec2 ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xf447b372 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xf44c3eb3 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xf45c8d11 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf46256cf usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xf4658492 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf468c19d __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xf4707cf4 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf470dc19 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xf4715073 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf482d46f regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xf490236a perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xf4a220bc ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xf4ad6e52 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4d24493 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf4d9377e iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xf4dd89bf uv_get_hubless_system +EXPORT_SYMBOL_GPL vmlinux 0xf4e1db5f __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xf4e35e28 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xf4f69d1f clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xf520173d blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xf5215620 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xf53042e4 gpiochip_lock_as_irq +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 0xf5590741 __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf5653bf1 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xf5727181 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xf59575ed of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5a988fd ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xf5b6c42d blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xf5c3c3d8 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xf5e8e98b mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xf5e9218b dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf600dcc5 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xf6024174 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xf6061cec badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xf6137d3b shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xf6251cd6 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xf62e7892 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf6529552 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf6654b14 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xf66ba8e1 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xf68ca333 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6acdf3d ip_tunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xf6c39e9b usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c7ff35 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6cbe3cd root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6d2c0bb devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6e923cf dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xf6eb69f7 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xf70f39d7 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xf728e552 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf72dd161 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xf735c795 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xf74233b3 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xf744298f hv_unmap_memory +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 0xf75c8288 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xf75d3750 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data +EXPORT_SYMBOL_GPL vmlinux 0xf7753c30 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf7830bbc net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xf7843bdc ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf7a43681 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xf7a8da35 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7b988c3 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf7bc11fc __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c2f1a7 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xf7d423d8 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xf7d59f28 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xf7daa5f8 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0xf7fdc206 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xf81f3d10 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf828afe9 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xf8290826 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xf82e455c __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xf8323f49 nvme_start_freeze +EXPORT_SYMBOL_GPL vmlinux 0xf8360f0b driver_find +EXPORT_SYMBOL_GPL vmlinux 0xf836f569 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xf8384246 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xf844a9da regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xf86644c3 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0xf873d4dc fpu_copy_uabi_to_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0xf87b12f4 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf87d6445 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt +EXPORT_SYMBOL_GPL vmlinux 0xf884800b rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xf884f88a fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xf8891037 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xf8a5de8e fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xf8bdfa68 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xf8d4553c cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xf8d91401 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xf8ea6ea2 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f7db69 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xf8f9421a dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf8f9d508 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr +EXPORT_SYMBOL_GPL vmlinux 0xf8ffb66c genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xf90495e6 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf907d54a efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xf918ca50 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xf921f77a scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xf92978ee sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xf933b046 vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0xf93ebfed rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf9878e3e devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9afaf47 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free +EXPORT_SYMBOL_GPL vmlinux 0xf9bdf8e3 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xf9c0df8c usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xf9c6e0b6 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xf9d8cd14 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xf9e05afd fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xf9e33fde sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0xf9ef2ee7 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0xfa07d67e regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xfa15789d gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa48486b spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xfa50ac7e iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xfa510926 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa696247 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xfa7f151a gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xfa83e4ee clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xfaa1588b rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xfab17f21 __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfab865e9 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0xfaca8147 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xfad4f4e2 __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfaf6ac77 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0xfaf885c9 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xfafa30b0 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xfb0f626c filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0xfb158713 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xfb26b6b8 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb5693b5 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb871a87 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xfb9033a1 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xfb921e00 hvpci_block_ops +EXPORT_SYMBOL_GPL vmlinux 0xfb928641 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xfbbcbc4e firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbbdb341 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xfbffcdbc kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc001c17 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xfc03a4ca proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc05c246 component_add +EXPORT_SYMBOL_GPL vmlinux 0xfc0c06cc node_to_amd_nb +EXPORT_SYMBOL_GPL vmlinux 0xfc0ebd34 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL vmlinux 0xfc143c22 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc228133 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc56e520 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xfc5b2fe1 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xfc9002ba vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xfcae2fe3 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xfcb6d1ac wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcbffdbb acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcca5424 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xfcd0a05b pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xfcd52561 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfcea99e5 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd16f8c1 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xfd37244c acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xfd397e92 __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xfd3aa681 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xfd3eeebd irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xfd4cfeee __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xfd561b93 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd7468b3 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xfd80f3c6 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xfd88ff0a __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xfd8a306e ping_err +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdc6a24b task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xfdd7e79a pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe0ba623 devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe2a5d03 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xfe2cf580 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xfe2d79af fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe4920dd platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xfe498cc4 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xfe4b1821 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xfe5aad0c divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfe5cdad1 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0xfe630038 iommu_sva_free_pasid +EXPORT_SYMBOL_GPL vmlinux 0xfe7954b8 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xfe7a84fe gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe90ab46 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea004e1 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xfea6431e unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0xfea930c4 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xfeabb79b dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xfeb6e51c net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xfebb4194 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xfec7dc11 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xfec812bc inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xfec99982 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xfecf3438 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xfed561ff divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xfef70905 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff069590 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff1da334 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff43d25a spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xff644152 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xff708f36 security_file_permission +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 0xff9b1020 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xff9b503e __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffadb6fa subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb141cd trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xffb9eb9f pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xffc0dec1 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xffc64028 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xffdca487 fat_free_clusters +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +IDXD EXPORT_SYMBOL_GPL 0x414c2f87 idxd_dmaengine_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x95e89a85 dsa_bus_type drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x9e6fae4a idxd_user_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xad152a38 idxd_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xb845bb5a __idxd_driver_register drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xd8fd5c74 idxd_driver_unregister drivers/dma/idxd/idxd_bus +INT340X_THERMAL EXPORT_SYMBOL_GPL 0x94c76e93 processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INT340X_THERMAL EXPORT_SYMBOL_GPL 0xff4fb3f1 processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +MCB EXPORT_SYMBOL_GPL 0x232cbe49 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x291a53eb mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3b3aecf1 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3b780b7d mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x57172621 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x69b87eb8 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x84732a11 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x94d13488 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa57d7eb9 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa7e7da8c mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc9afab4a mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd5d67607 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xecdeaedd mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xfb26a0b9 mcb_alloc_bus drivers/mcb/mcb +NET_MANA EXPORT_SYMBOL 0x051d5b68 mana_destroy_wq_obj vmlinux +NET_MANA EXPORT_SYMBOL 0x477fa3ee mana_uncfg_vport vmlinux +NET_MANA EXPORT_SYMBOL 0x59ee3ab2 mana_cfg_vport vmlinux +NET_MANA EXPORT_SYMBOL 0xaddac238 mana_gd_destroy_dma_region vmlinux +NET_MANA EXPORT_SYMBOL 0xb0f1d0e0 mana_gd_send_request vmlinux +NET_MANA EXPORT_SYMBOL 0xcb4f536b mana_create_wq_obj vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x22f2c9e9 nvme_ctrl_from_file vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x34b64d79 nvme_put_ns vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x53192388 nvme_command_effects vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x79f789b2 nvme_find_get_ns vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x9661d678 nvme_execute_passthru_rq vmlinux diff --git a/debian.azure-5.15/abi/amd64/azure.compiler b/debian.azure-5.15/abi/amd64/azure.compiler new file mode 100644 index 0000000000000..2fe279333467d --- /dev/null +++ b/debian.azure-5.15/abi/amd64/azure.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0 diff --git a/debian.azure-5.15/abi/amd64/azure.modules b/debian.azure-5.15/abi/amd64/azure.modules new file mode 100644 index 0000000000000..d59765ad7f927 --- /dev/null +++ b/debian.azure-5.15/abi/amd64/azure.modules @@ -0,0 +1,2623 @@ +104-quad-8 +3w-9xxx +3w-sas +53c700 +6lowpan +8021q +8139cp +8139too +8250_dw +8250_exar +8250_lpss +8250_men_mcb +842 +842_compress +842_decompress +88pg86x +88pm805 +88pm80x +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +a100u2w +aacraid +abituguru +abituguru3 +acer-wireless +acer-wmi +acerhdf +acpi_extlog +acpi_ipmi +acpi_pad +acpi_power_meter +acpi_thermal_rel +acpiphp_ibm +acquirewdt +acrn +act_bpf +act_connmark +act_csum +act_ct +act_ctinfo +act_gact +act_gate +act_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +ad7314 +ad7414 +ad7418 +ad9389b +adc128d818 +adcxx +adfs +adiantum +adin +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1177 +adm9240 +adp5061 +ads7828 +ads7871 +adt7310 +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adv7170 +adv7175 +adv7180 +adv7183 +adv7343 +adv7393 +adv7511-v4l2 +adv7604 +adv7842 +adv_swbutton +advansys +advantechwdt +aegis128 +aegis128-aesni +aesni-intel +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +aha1740 +ahci +ahci_platform +aht10 +aic79xx +aic7xxx +aic94xx +ak881x +alcor_pci +algif_aead +algif_hash +algif_rng +algif_skcipher +alienware-wmi +alim1535_wdt +alim7101_wdt +altera-msgdma +altera_jtaguart +altera_ps2 +altera_uart +am53c974 +ambassador +amc6821 +amd-pmc +amd-rng +amd-uncore +amd64_edac +amd_freq_sensitivity +amd_sfh +amdgpu +amdtee +amilo-rfkill +amlogic-gxl-crypto +ansi_cprng +apanel +apds9802als +apds990x +apple-gmux +apple-mfi-fastcharge +apple_bl +applesmc +applespi +appletalk +applicom +ar9331 +arc-rawmode +arc-rimi +arc_ps2 +arc_uart +arcfb +arcmsr +arcnet +arcxcnn_bl +arizona +arizona-i2c +arizona-spi +arp_tables +arpt_mangle +arptable_filter +as370-hwmon +asb100 +asc7621 +ashmem_linux +aspeed-pwm-tacho +aspeed-video +ast +asus-laptop +asus-wireless +asus_atk0110 +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +atc260x-core +atc260x-i2c +atc260x-onkey +atc260x-poweroff +atc260x-regulator +aten +atlantic +atlas_btns +atm +atmel-ecc +atmel-i2c +atmel-sha204a +atmtcp +atomisp +atomisp-gc0310 +atomisp-gc2235 +atomisp-libmsrlisthelper +atomisp-lm3554 +atomisp-mt9m114 +atomisp-ov2680 +atomisp-ov2722 +atomisp-ov5693 +atomisp_gmin_platform +atp +atp870u +atxp1 +aufs +auth_rpcgss +authenc +authencesn +autofs4 +ax25 +ax88796b +axi-fan-control +axp20x +axp20x-i2c +axp288_charger +b44 +b53_common +b53_mdio +b53_mmap +b53_serdes +b53_spi +b53_srab +ba431-rng +bareudp +batman-adv +bcache +bcm-phy-lib +bcm-sf2 +bcm54140 +bcm590xx +bcm7xxx +bcm_vk +bcma +bcmsysport +bd9571mwv +bd9571mwv-regulator +bd99954-charger +be2iscsi +be2net +befs +bfa +bfq +bfs +bh1770glc +binder_linux +binfmt_misc +blake2b_generic +blocklayoutdriver +blowfish-x86_64 +blowfish_common +blowfish_generic +bnx2 +bnx2x +bnxt_en +bonding +bpck +bpfilter +bq24190_charger +br2684 +br_netfilter +brd +bridge +bsd_comp +bt819 +bt856 +bt866 +btrfs +c_can +c_can_pci +c_can_platform +ca8210 +cachefiles +cadence_wdt +cafe_ccic +caif +caif_socket +caif_usb +caif_virtio +camellia-aesni-avx-x86_64 +camellia-aesni-avx2 +camellia-x86_64 +camellia_generic +can +can-bcm +can-dev +can-gw +can-j1939 +can-raw +capmode +capsule-loader +cast5-avx-x86_64 +cast5_generic +cast6-avx-x86_64 +cast6_generic +cast_common +ccm +ccp +ccp-crypto +cdc-acm +cdns-csi2rx +cdns-csi2tx +cdns-usb-common +cdnsp-udc-pci +cec +ceph +cfag12864b +cfag12864bfb +cfb +cfg80211 +ch +ch_ipsec +ch_ktls +chacha-x86_64 +chacha20poly1305 +chacha_generic +charlcd +chcr +chnl_net +cifs +cifs_arc4 +cifs_md4 +classmate-laptop +clip +clk-lmk04832 +clk-max9485 +clk-pwm +clk-si5341 +clk-si544 +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_u32 +cmac +cnic +coda +com20020 +com20020-pci +com90io +com90xx +comm +compal-laptop +cordic +coretemp +cortina +counter +cpcihp_generic +cpcihp_zt5550 +cpu5wdt +cpuid +cpuidle-haltpoll +cramfs +crc-itu-t +crc32-pclmul +crc32_generic +crc4 +crc64 +crc7 +crc8 +crct10dif-pclmul +crvml +cryptd +crypto_engine +crypto_safexcel +crypto_simd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +csiostor +ct82c710 +curve25519-generic +curve25519-x86_64 +cuse +cw2015_battery +cx25840 +cxgb +cxgb3 +cxgb4 +cxgb4vf +cxl_acpi +cxl_core +cxl_pci +cxl_pmem +da9052-hwmon +da9052_wdt +da9063 +da9063_wdt +dax_hmem +dax_pmem +dax_pmem_compat +dax_pmem_core +dc395x +dca +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dcdbas +defxx +dell-laptop +dell-rbtn +dell-smbios +dell-smm-hwmon +dell-smo8800 +dell-uart-backlight +dell-wmi +dell-wmi-aio +dell-wmi-descriptor +dell-wmi-led +dell-wmi-sysman +dell_rbu +des3_ede-x86_64 +des_generic +diag +dl2k +dlink-dir685-touchkeys +dlm +dm-bio-prison +dm-bufio +dm-cache +dm-cache-smq +dm-clone +dm-crypt +dm-delay +dm-ebs +dm-era +dm-flakey +dm-historical-service-time +dm-integrity +dm-io-affinity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dme1737 +dmx3191d +dnet +dp83822 +dp83869 +dp83tc811 +dpt_i2o +dptf_pch_fivr +dptf_power +drbd +drivetemp +drm +drm_kms_helper +drm_mipi_dbi +drm_ttm_helper +drm_vram_helper +ds1621 +ds1682 +ds620 +dsa_core +dstr +dummy +dummy-irq +dw-edma +dw-edma-pcie +dw-i3c-master +dw-xdata-pcie +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc-xlgmac +e100 +e1000 +e1000e +e752x_edac +ebc-c384_wdt +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec_bhf +ec_sys +ecc +ecdh_generic +ecdsa_generic +echainiv +ecrdsa_generic +ee1004 +eeepc-laptop +eeprom_93cx6 +efa +efct +efi-pstore +efi_test +efibc +efs +em_canid +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +ems_pci +enclosure +ene_ir +eni +enic +epat +epia +eql +erofs +esas2r +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et131x +etas_es58x +ethoc +eurotechwdt +evbug +exfat +extcon-axp288 +extcon-fsa9480 +extcon-gpio +extcon-intel-int3496 +extcon-intel-mrfld +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-ptn5150 +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81601 +f81604 +failover +fam15h_power +fan +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_seps525 +fb_sh1106 +fb_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fcrypt +fdomain +fdomain_pci +fealnx +ff-memless +fieldbus_dev +fintek-cir +firestream +firmware_attributes_class +fit2 +fit3 +fixed +fm10k +fore_200e +fou +fou6 +fpga-mgr +freevxfs +friq +frpw +fscache +fschmd +fsl_linflexuart +fsl_lpuart +ftsteutates +fujitsu-laptop +fujitsu-tablet +g760a +g762 +garp +genet +geneve +genwqe_card +gfs2 +ghash-clmulni-intel +gigabyte-wmi +gl518sm +gl520sm +gma500_gfx +gnss +goldfish_battery +gpd-pocket-fan +gpio-104-dio-48e +gpio-104-idi-48 +gpio-104-idio-16 +gpio-adp5588 +gpio-aggregator +gpio-amd-fch +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-bd9571mwv +gpio-da9052 +gpio-dwapb +gpio-exar +gpio-f7188x +gpio-generic +gpio-gpio-mm +gpio-ich +gpio-it87 +gpio-janz-ttl +gpio-lp3943 +gpio-lp873x +gpio-madera +gpio-max3191x +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mb86s7x +gpio-mc33880 +gpio-menz127 +gpio-ml-ioh +gpio-mockup +gpio-pca953x +gpio-pcf857x +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-pisosr +gpio-rdc321x +gpio-sch +gpio-sch311x +gpio-siox +gpio-tpic2810 +gpio-tps65086 +gpio-tps65912 +gpio-tqmx86 +gpio-vibra +gpio-virtio +gpio-vx855 +gpio-wcove +gpio-winbond +gpio-wm831x +gpio-wm8994 +gpio-ws16c48 +gpio-xra1403 +gpio_keys_polled +gpu-sched +grace +gre +gru +gs1662 +gtp +gud +gve +habanalabs +hamachi +hangcheck-timer +hci +hd44780 +hd44780_common +hdaps +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +he +hecubafb +hfi1 +hfs +hfsplus +hgafb +hi311x +hid +hid-cougar +hid-generic +hid-glorious +hid-hyperv +hid-ite +hid-jabra +hid-led +hid-macally +hid-maltron +hid-mf +hid-nti +hid-playstation +hid-redragon +hid-semitek +hid-sensor-custom +hid-sensor-hub +hid-steam +hid-udraw-ps3 +hid-viewsonic +hid-wiimote +hih6130 +hinic +hmc6352 +horizon +hp-wmi +hp_accel +hpfs +hpsa +hptiop +hpwdt +hsr +htc-pasic3 +hv_azure_blob +hv_netvsc +hv_sock +hwmon-vid +hwpoison-inject +hx8357d +hyperv-keyboard +hyperv_drm +hyperv_fb +i10nm_edac +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd-mp2-pci +i2c-amd-mp2-plat +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-cbus-gpio +i2c-core +i2c-cp2615 +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-dev +i2c-gpio +i2c-hid +i2c-hid-acpi +i2c-i801 +i2c-isch +i2c-ismt +i2c-mlxcpld +i2c-mux +i2c-mux-ltc4306 +i2c-nforce2 +i2c-nforce2-s4985 +i2c-nvidia-gpu +i2c-ocores +i2c-parport +i2c-pca-platform +i2c-scmi +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-via +i2c-viapro +i2c-virtio +i2c-xiic +i3000_edac +i3200_edac +i3c +i3c-master-cdns +i40e +i5000_edac +i5100_edac +i5400_edac +i5500_temp +i5k_amb +i6300esb +i7300_edac +i7core_edac +i82975x_edac +i915 +iTCO_vendor_support +iTCO_wdt +iavf +ib700wdt +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_qib +ib_srp +ib_umad +ib_uverbs +ibm_rtl +ibmaem +ibmasm +ibmasr +ibmpex +ice +icp +ics932s401 +ideapad-laptop +ideapad_slidebar +idma64 +idt77252 +idxd +idxd_bus +ie31200_edac +ie6xx_wdt +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifcvf +ife +igb +igbvf +igc +igen6_edac +ila +ili9225 +ili9341 +ili9486 +img-ascii-lcd +imm +ina209 +ina2xx +ina3221 +inet_diag +initio +int3400_thermal +int3401_thermal +int3402_thermal +int3403_thermal +int3406_thermal +int340x_thermal_zone +intel-cstate +intel-hid +intel-ish-ipc +intel-ishtp +intel-ishtp-hid +intel-ishtp-loader +intel-lpss +intel-lpss-acpi +intel-lpss-pci +intel-qep +intel-rng +intel-rst +intel-smartconnect +intel-uncore-frequency +intel-vbtn +intel-wmi-sbl-fw-update +intel-wmi-thunderbolt +intel-xhci-usb-role-switch +intel_atomisp2_led +intel_bxt_pmic_thermal +intel_bxtwc_tmu +intel_chtdc_ti_pwrbtn +intel_int0002_vgpio +intel_ips +intel_mrfld_pwrbtn +intel_oaktrail +intel_pch_thermal +intel_pmc_bxt +intel_powerclamp +intel_punit_ipc +intel_qat +intel_quark_i2c_gpio +intel_sar +intel_scu_ipcutil +intel_scu_pltdrv +intel_skl_int3472_discrete +intel_skl_int3472_tps68470 +intel_soc_dts_iosf +intel_soc_dts_thermal +intel_soc_pmic_bxtwc +intel_soc_pmic_chtdc_ti +intel_soc_pmic_mrfld +intel_tcc_cooling +intel_telemetry_core +intel_telemetry_debugfs +intel_telemetry_pltdrv +intelfb +interrupt-cnt +ioatdma +iommu_v2 +ionic +iosm +ip6_gre +ip6_tables +ip6_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_twos +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipcomp +ipcomp6 +iphase +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipu3-imgu +ipvlan +ipvtap +iqs269a +iqs626a +iqs62x +iqs62x-keys +ir-imon-decoder +ir-jvc-decoder +ir-kbd-i2c +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-rcmm-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-xmp-decoder +irdma +irq-madera +isci +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isl29003 +isl29020 +isofs +isp1704_charger +isst_if_common +isst_if_mbox_msr +isst_if_mbox_pci +isst_if_mmio +it87 +it8712f_wdt +it87_wdt +ite-cir +iw_cm +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jfs +jme +joydev +jsm +k10temp +k8temp +kafs +kb3886_bl +kbic +kcm +keywrap +kheaders +kmem +ks0108 +ks0127 +ksmbd +ksz8795 +ksz8795_spi +ksz8863_smi +ksz9477 +ksz9477_i2c +ksz9477_spi +ksz_common +ktti +kvaser_pci +kvaser_pciefd +kvm +kvm-amd +kvm-intel +kvmgt +kyber-iosched +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +lan743x +lan9303-core +lan9303_i2c +lan9303_mdio +lanai +lantiq +lantiq_gswip +lapb +lapbether +lattice-ecp3-config +lec +led-class +leds-apu +leds-clevo-mail +leds-gpio +leds-lm3532 +leds-lm36274 +leds-lt3593 +leds-mlxcpld +leds-mlxreg +leds-nic78bx +leds-pwm +leds-ss4200 +leds-ti-lmu-common +leds-tps6105x +ledtrig-activity +ledtrig-audio +ledtrig-netdev +ledtrig-pattern +ledtrig-tty +lg-laptop +libahci +libahci_platform +libarc4 +libceph +libchacha +libchacha20poly1305 +libcrc32c +libcurve25519 +libcurve25519-generic +libdes +libiscsi +libiscsi_tcp +libpoly1305 +libsas +libsm4 +lineage-pem +linear +lis3lv02d +ll_temac +llc +llc2 +lm3630a_bl +lm363x-regulator +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lockd +locktorture +lp +lp3943 +lp855x_bl +lp873x +lpc_ich +lpc_sch +lpfc +lru_cache +lrw +lt3651-charger +ltc2945 +ltc2947-core +ltc2947-i2c +ltc2947-spi +ltc2990 +ltc4151 +ltc4162-l-charger +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltpc +lz4 +lz4_compress +lz4hc +lz4hc_compress +m2m-deinterlace +m52790 +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac802154 +mac802154_hwsim +mac_hid +machzwd +macsec +macvlan +macvtap +madera +madera-i2c +madera-spi +mana_ib +marvell-88x2222 +marvell10g +matrix-keymap +max1111 +max14577 +max16065 +max1619 +max1668 +max197 +max3100 +max31722 +max31730 +max31790 +max63xx_wdt +max6621 +max6639 +max6642 +max6650 +max6697 +max77693 +max77693-haptic +max77826-regulator +max8893 +max8907 +mc +mc13783-adc +mc13xxx-core +mc13xxx-i2c +mc13xxx-spi +mcam-core +mcb +mcb-lpc +mcb-pci +mce-inject +mcp3021 +mcr20a +mctp +md-cluster +md4 +mdev +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-i2c +mdio-mscc-miim +mdio-mvusb +mediatek-ge +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mei-me +mei-txe +mei_hdcp +mei_phy +mei_wdt +memory-notifier-error-inject +men_z135_uart +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +menz69_wdt +meraki-mx100 +mhi +mhi_wwan_ctrl +mhi_wwan_mbim +mi0283qt +michael_mic +microchip_t1 +microread +microread_mei +mii +minix +mip6 +ml86v7667 +mlx-platform +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx_wdt +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxsw_core +mlxsw_i2c +mlxsw_minimal +mlxsw_pci +mlxsw_spectrum +most_cdev +most_core +most_i2c +most_net +most_video +motorcomm +moxa +mp2629 +mp8859 +mpi3mr +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpt3sas +mptbase +mptcp_diag +mptctl +mptfc +mptsas +mptscsih +mptspi +mrp +msdos +msi-laptop +msi-wmi +msp3400 +msr +mt6360-core +mt6360_charger +mt7530 +multipath +mux-adg792a +mux-adgs1408 +mux-core +mux-gpio +mvmdio +mvsas +mvumi +mwave +mxl-gpy +mxm-wmi +mxser +myrb +myrs +n411 +n5pf +n_gsm +n_hdlc +nbd +nci +nci_spi +nci_uart +nct6683 +nct6775 +nct7802 +nct7904 +nd_virtio +net_failover +netconsole +netdevsim +netfs +netlink_diag +netrom +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_syslog +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_socket_ipv4 +nf_socket_ipv6 +nf_synproxy_core +nf_tables +nf_tproxy_ipv4 +nf_tproxy_ipv6 +nfc +nfc_digital +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_hook +nfnetlink_log +nfnetlink_osf +nfnetlink_queue +nfp +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_reject_netdev +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +nhpoly1305 +nhpoly1305-avx2 +nhpoly1305-sse2 +ni903x_wdt +nic7018_wdt +nicstar +nilfs2 +nitro_enclaves +nixge +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nosy +notifier-error-inject +nozomi +npcm750-pwm-fan +nsh +ntb +ntb_hw_epf +ntb_hw_idt +ntb_hw_intel +ntb_hw_switchtec +ntb_netdev +ntb_transport +ntc_thermistor +ntfs +ntfs3 +nuvoton-cir +nv_tco +nvidia-wmi-ec-backlight +nvme-fabrics +nvme-fc +nvme-rdma +nvme-tcp +nvmem-rmem +nvmet +nvmet-fc +nvmet-tcp +nvram +nxp-c45-tja11xx +nxp-tja11xx +objagg +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +of_xilinx_wdt +ofb +omfs +on20 +on26 +opa_vnic +openvswitch +ov7670 +overlay +p4-clockmod +p8022 +padlock-aes +padlock-sha +panasonic-laptop +panel +panel-raspberrypi-touchscreen +panel-widechips-ws2401 +paride +parkbd +parman +parport +parport_ax88796 +parport_pc +parport_serial +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc300too +pc87360 +pc87413_wdt +pc87427 +pcbc +pcd +pcengines-apuv2 +pcf50633 +pcf50633-adc +pcf50633-gpio +pcf8591 +pci-epf-ntb +pci-pf-stub +pci-stub +pci200syn +pcips2 +pcmcia_core +pcmcia_rsrc +pcrypt +pcs_xpcs +pcspkr +pcwd_pci +pd +pdc_adma +peak_pci +peak_pciefd +peaq-wmi +pf +pg +phantom +phonet +phy-can-transceiver +phy-intel-lgm-emmc +phy-lgm-usb +phy-qcom-usb-hs +phy-qcom-usb-hsic +phy-tusb1210 +phylink +pi433 +pinctrl-alderlake +pinctrl-broxton +pinctrl-cannonlake +pinctrl-cedarfork +pinctrl-denverton +pinctrl-elkhartlake +pinctrl-emmitsburg +pinctrl-geminilake +pinctrl-icelake +pinctrl-jasperlake +pinctrl-lakefield +pinctrl-lewisburg +pinctrl-lynxpoint +pinctrl-madera +pinctrl-mcp23s08 +pinctrl-mcp23s08_i2c +pinctrl-mcp23s08_spi +pinctrl-sunrisepoint +pinctrl-tigerlake +pkcs7_test_key +pkcs8_key_parser +pktcdvd +pktgen +platform_profile +plx_dma +plx_pci +pm-notifier-error-inject +pm80xx +pmcraid +pn544 +pn544_mei +pn_pep +pnd2_edac +poly1305-x86_64 +poly1305_generic +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pptp +pretimeout_panic +processor_thermal_device +processor_thermal_device_pci +processor_thermal_device_pci_legacy +processor_thermal_mbox +processor_thermal_rfim +ps2-gpio +ps2mult +psample +psnap +pstore_blk +pstore_zone +pt +ptdma +ptp_clockmatrix +ptp_idt82p33 +ptp_kvm +ptp_vmw +pulse8-cec +punit_atom_debug +pvpanic +pvpanic-mmio +pvpanic-pci +pwm-beeper +pwm-dwc +pwm-iqs620a +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-vibra +pwm_bl +qat_4xxx +qat_c3xxx +qat_c3xxxvf +qat_c62x +qat_c62xvf +qat_dh895xcc +qat_dh895xccvf +qcom-wled +qcom_glink +qcom_glink_rpm +qla1280 +qla2xxx +qla4xxx +qlge +qnx4 +qnx6 +qrtr +qrtr-mhi +qrtr-smd +qrtr-tun +qt1050 +quota_tree +quota_v1 +quota_v2 +qxl +r8169 +radeon +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +rainshadow-cec +ramoops +rapl +raw_diag +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-astrometa-t2hybrid +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-beelink-gs1 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-ct-90405 +rc-d680-dmb +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dtt200u +rc-dvbsky +rc-dvico-mce +rc-dvico-portable +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-geekbox +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-hisi-poplar +rc-hisi-tv-demo +rc-imon-mce +rc-imon-pad +rc-imon-rsc +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-khadas +rc-khamsin +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-mecool-kii-pro +rc-mecool-kiii-pro +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-minix-neo +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-odroid +rc-pctv-sedna +rc-pine64 +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tanix-tx3mini +rc-tanix-tx5max +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-vega-s9x +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-videostrong-kii-pro +rc-wetek-hub +rc-wetek-play2 +rc-winfast +rc-winfast-usbii-deluxe +rc-x96max +rc-xbox-360 +rc-xbox-dvd +rc-zx-irdec +rdc321x-southbridge +rdma_cm +rdma_ucm +rdmavt +rds +rds_rdma +rds_tcp +realtek +realtek-smi +reed_solomon +regmap-i2c +regmap-slimbus +reiserfs +repaper +reset-ti-syscon +retu-mfd +retu_wdt +rfc1051 +rfc1201 +rfkill-gpio +rio-scan +rio_cm +rio_mport_cdev +rionet +rmd160 +rnbd-client +rnbd-server +rockchip +roles +romfs +rose +rp2 +rpcrdma +rpcsec_gss_krb5 +rpmsg_char +rpmsg_core +rpmsg_ns +rpmsg_wwan_ctrl +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt6160-regulator +rt6245-regulator +rtc-ab-eoz9 +rtc-ftrtc010 +rtc-goldfish +rtc-pcf85363 +rtc-rv3028 +rtc-sd3078 +rtq2134-regulator +rtq6752-regulator +rtrs-client +rtrs-core +rtrs-server +rts5208 +rtsx_pci +rxrpc +s2io +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa717x +saa7185 +samsung-laptop +samsung-q10 +sata_dwc_460ex +sb1000 +sb_edac +sbc60xxwdt +sbc_epx_c3 +sbc_fitpc2_wdt +sbrmi +sbs +sbs-manager +sbshc +sc1200wdt +sc16is7xx +sch311x_wdt +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cake +sch_cbq +sch_cbs +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_etf +sch_ets +sch_fq +sch_fq_codel +sch_fq_pie +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_skbprio +sch_taprio +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_diag +seco-cec +serial-multi-instantiate +serial_ir +serio_raw +serpent-avx-x86_64 +serpent-avx2 +serpent-sse2-x86_64 +serpent_generic +serport +ses +sf-pdma +sfc +sfc-falcon +sfp +sha1-ssse3 +sha256-ssse3 +sha3_generic +sha512-ssse3 +shiftfs +sht15 +sht21 +sht3x +sht4x +shtc1 +sim710 +simpledrm +simplefb +siox-bus-gpio +siox-core +sir_ir +sis-agp +sis5595 +sit +siw +sja1000 +sja1000_isa +sja1000_platform +sja1105 +skfp +skge +skx_edac +sky2 +sky81452 +slcan +slg51000-regulator +slicoss +slim-qcom-ctrl +slimbus +slip +sm2_generic +sm3_generic +sm4-aesni-avx-x86_64 +sm4-aesni-avx2-x86_64 +sm4_generic +sm501 +sm501fb +sm750fb +smartpqi +smc +smc_diag +smm665 +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +snd +snd-aloop +snd-dummy +snd-hrtimer +snd-pcm +snd-rawmidi +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-event +snd-seq-virmidi +snd-timer +snd-virmidi +snic +softdog +solos-pci +sony-btf-mpx +sony-laptop +soundcore +soundwire-bus +sp5100_tco +sparse-keymap +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedstep-lib +spi-altera-core +spi-altera-platform +spi-amd +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dw +spi-dw-mmio +spi-dw-pci +spi-gpio +spi-lantiq-ssc +spi-lm70llp +spi-loopback-test +spi-mux +spi-mxic +spi-nxp-fspi +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-sifive +spi-slave-system-control +spi-slave-time +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spidev +spl +sprd_serial +ssb +ssd1307fb +st +st-mipid02 +st7586 +st7735r +stex +stp +streebog_generic +stts751 +sundance +suni +sunrpc +svc-i3c-master +switchtec +sym53c8xx +synclink_gt +syscopyarea +sysfillrect +sysimgblt +system76_acpi +sysv +tag_ar9331 +tag_brcm +tag_dsa +tag_gswip +tag_ksz +tag_lan9303 +tag_mtk +tag_ocelot +tag_ocelot_8021q +tag_qca +tag_rtl4_a +tag_sja1105 +tag_trailer +tag_xrs700x +tap +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc358743 +tc654 +tc74 +tcm_loop +tcp_bbr +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tda7432 +tda9840 +tda9950 +tea6415c +tea6420 +tee +test_lockup +tg3 +think-lmi +thmc50 +ths7303 +ths8200 +thunderbolt +thunderbolt-net +ti-lmu +ti_am335x_tscadc +tifm_7xx1 +tifm_core +timeriomem-rng +tipc +tlclk +tls +tlv320aic23b +tmp102 +tmp103 +tmp108 +tmp401 +tmp421 +tmp513 +topstar-laptop +torture +toshiba_bluetooth +toshiba_haps +tpci200 +tpm_key_parser +tpm_nsc +tpm_tis_i2c_cr50 +tps23861 +tps6105x +tps65010 +tps6507x +tps65086 +tps65132-regulator +tps65912-i2c +tqmx86 +tqmx86_wdt +ts_bm +ts_fsm +ts_kmp +tsi721_mport +tsl2550 +ttm +ttynull +tunnel4 +tunnel6 +tvaudio +tvp514x +tvp5150 +tvp7002 +tw2804 +tw9903 +tw9906 +tw9910 +twofish-avx-x86_64 +twofish-x86_64 +twofish-x86_64-3way +twofish_common +twofish_generic +uPD60620 +uPD98402 +uacce +uartlite +ubuntu-host +uda1342 +udf +udp_diag +ufs +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_hv_generic +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +ulpi +unix_diag +upd64031a +upd64083 +userio +usnic_verbs +uv_mmtimer +uv_sysfs +v4l2-async +v4l2-dv-timings +v4l2-fwnode +v4l2-mem2mem +v4l2-tpg +v4l2loopback +vboxvideo +vcan +vdpa +vduse +veth +vga16fb +vgastate +vhost +vhost_iotlb +vhost_net +vhost_scsi +vhost_vdpa +vhost_vsock +via-camera +via-cputemp +via-rng +via686a +via_wdt +viafb +vicodec +video +video-i2c +videobuf-core +videobuf-vmalloc +videobuf2-common +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +vimc +virtio-gpu +virtio-rng +virtio_blk +virtio_crypto +virtio_dma_buf +virtio_input +virtio_mem +virtio_net +virtio_pmem +virtio_rpmsg_bus +virtio_scsi +virtio_vdpa +virtiofs +virtual_ncidev +visorbus +visorhba +visorinput +visornic +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vmac +vmd +vme_ca91cx42 +vme_fake +vme_tsi148 +vme_vmivme7805 +vmlfb +vmw_balloon +vmw_pvscsi +vmw_vmci +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmw_vsock_vmci_transport +vmwgfx +vp27smpx +vp_vdpa +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vsock +vsock_diag +vsock_loopback +vsockmon +vt1211 +vt6655_stage +vt8231 +vx855 +vxcan +vxge +w83627ehf +w83627hf +w83627hf_wdt +w83773g +w83781d +w83791d +w83792d +w83793 +w83795 +w83877f_wdt +w83977f_wdt +w83l785ts +w83l786ng +wafer5823wdt +wanxl +wcd934x +wd719x +wdat_wdt +wdt_pci +wfx +winbond-cir +wireguard +wireless-hotkey +wm831x-hwmon +wm831x_wdt +wm8739 +wm8775 +wm8994 +wmi +wmi-bmof +wp512 +wwan +wwan_hwsim +x25 +x38_edac +x86_pkg_temp_thermal +x_tables +xcbc +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_compat +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xgene-hwmon +xhci-plat-hcd +xiaomi-wmi +xilinx-spi +xilinx_emac +xilinx_emaclite +xilinx_sdfec +xillybus_class +xillyusb +xiphera-trng +xlnx_vcu +xor +xp +xpc +xpnet +xrs700x +xrs700x_i2c +xrs700x_mdio +xsk_diag +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_MASQUERADE +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xxhash_generic +xz_dec_test +yellowfin +yenta_socket +z3fold +zatm +zavl +zcommon +zfs +ziirave_wdt +zlua +znvpair +zonefs +zram +zstd +zstd_compress +zunicode +zzstd diff --git a/debian.azure-5.15/abi/amd64/azure.modules.builtin b/debian.azure-5.15/abi/amd64/azure.modules.builtin new file mode 100644 index 0000000000000..67ac3419a9627 --- /dev/null +++ b/debian.azure-5.15/abi/amd64/azure.modules.builtin @@ -0,0 +1,281 @@ +8250 +8250_base +8250_mid +8250_pci +acpi-cpufreq +acpi_dbg +acpi_mdio +acpiphp +aead +aes_generic +af_packet +agpgart +akcipher +amd64-agp +amd_pstate +asn1_decoder +asn1_encoder +asymmetric_keys +ata_generic +ata_piix +atkbd +backlight +bcm84881 +binfmt_elf +binfmt_script +bitrev +bsg +btree +button +cbc +cdrom +cfbcopyarea +cfbfillrect +cfbimgblt +cn +compat_binfmt_elf +configfs +cpufreq_conservative +cpufreq_ondemand +cpufreq_performance +cpufreq_powersave +cpufreq_userspace +crc-ccitt +crc-t10dif +crc16 +crc32 +crc32c-intel +crc32c_generic +crct10dif_common +crct10dif_generic +crypto +crypto_acompress +crypto_algapi +crypto_hash +crypto_null +cryptomgr +ctr +cts +da9052-core +da9052-spi +dax +deflate +device_dax +dh_generic +digsig +dm-mod +dns_resolver +drbg +drm_mipi_dsi +drm_panel_orientation_quirks +drop_monitor +ecb +ecryptfs +edac_core +edd +efivarfs +efivars +encrypted-keys +evdev +exportfs +ext4 +extcon-core +ezx-pcap +fat +fb +fbdev +fddi +firmware_class +fixed_phy +font +freq_table +fuse +fwnode_mdio +gcm +geniv +gf128mul +ghash-generic +glob +governor_passive +governor_performance +governor_powersave +governor_simpleondemand +governor_userspace +hed +hmac +hsu_dma +hv_balloon +hv_storvsc +hv_utils +hv_vmbus +hwmon +hwspinlock_core +i8042 +icc-core +input-core +intel-agp +intel-gtt +intel-uncore +intel_pmc_core +intel_pmc_core_pltdrv +intel_pstate +ioasid +iosf_mbi +iova +ip6_udp_tunnel +ip_tunnel +ipv6 +irqbypass +jbd2 +jitterentropy_rng +kgdboc +kpp +libaes +libata +libblake2s +libblake2s-x86_64 +libnvdimm +libphy +libps2 +libsha256 +linear_ranges +loop +lz4_decompress +lzo +lzo-rle +lzo_compress +lzo_decompress +mana +max310x +mbcache +md-mod +md5 +mdio_devres +mfd-core +mousedev +mpi +mq-deadline +n_null +nd_blk +nd_btt +nd_e820 +nd_pmem +nfit +nfs_ssc +nls_base +nls_cp437 +nvme +nvme-core +nvmem_core +oid_registry +packing +pata_sis +pcc-cpufreq +pci-ep-cfs +pci-epc-core +pci-epc-mem +pci-epf-core +pci-hyperv +pci-hyperv-intf +pci-meson +pinctrl-cherryview +pinctrl-intel +pkcs7_message +pldmfw +power_supply +powernow-k8 +ppp_generic +pps_core +pretimeout_noop +processor +pstore +ptp +public_key +pwm-lpss +pwm-lpss-pci +pwm-lpss-platform +rapidio +rational +regmap-mmio +regmap-spi +restart-poweroff +rfkill +rng +rng-core +rsa_generic +rtc-cmos +sccnxp +scsi_common +scsi_mod +scsi_transport_fc +sd_mod +selftests +seqiv +serial_core +serial_mctrl_gpio +serio +sg +sha1_generic +sha256_generic +sha512_generic +shpchp +skcipher +slhc +speedstep-centrino +squashfs +sr_mod +system_heap +t10-pi +tcp_cubic +tpm +tpm_crb +tpm_tis +tpm_tis_core +tps65086-restart +tps65912-core +tps65912-spi +trusted +ttyprintk +tun +ucs2_string +udmabuf +udp_tunnel +uinput +unicode +unix +usb-common +usbcore +vesafb +vfat +vfio +vfio-pci +vfio-pci-core +vfio_iommu_type1 +vfio_virqfd +vgacon +via-agp +virt-dma +virtio +virtio-iommu +virtio_balloon +virtio_console +virtio_mmio +virtio_pci +virtio_pci_modern_dev +virtio_ring +vxlan +watch_queue +watchdog +x509_key_parser +xhci-hcd +xhci-pci +xts +xxhash +xz_dec +zbud +zlib_deflate +zlib_inflate +zpool +zsmalloc +zstd_decompress +zswap diff --git a/debian.azure-5.15/abi/amd64/azure.retpoline b/debian.azure-5.15/abi/amd64/azure.retpoline new file mode 100644 index 0000000000000..945dc3fef780d --- /dev/null +++ b/debian.azure-5.15/abi/amd64/azure.retpoline @@ -0,0 +1 @@ +# retpoline v1.0 diff --git a/debian.azure-5.15/abi/arm64/azure b/debian.azure-5.15/abi/arm64/azure new file mode 100644 index 0000000000000..140d1b0f63580 --- /dev/null +++ b/debian.azure-5.15/abi/arm64/azure @@ -0,0 +1,20374 @@ +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x15425e8d crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x1b353051 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xf0535edf crypto_cipher_setkey vmlinux +CXL EXPORT_SYMBOL_GPL 0x0bef4310 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x11a878b4 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1e1e1044 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x35e82521 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3c8b8ff3 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4b8e2fbc to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x58e9075a __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5bf0c6f2 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6cb0b503 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x929f4681 devm_cxl_add_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xab746aa4 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb21e0c9a cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb48d100f to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbf16921a devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbf6312bc cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdd5b0676 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe5914875 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf0459d92 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x4275fd17 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 +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xea11590c neon_aes_xts_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xefc32a9b neon_aes_xts_decrypt +EXPORT_SYMBOL arch/arm64/crypto/chacha-neon 0x220b49ab chacha_crypt_arch +EXPORT_SYMBOL arch/arm64/crypto/chacha-neon 0xdc94f829 chacha_init_arch +EXPORT_SYMBOL arch/arm64/crypto/chacha-neon 0xdd8ec6bd hchacha_block_arch +EXPORT_SYMBOL arch/arm64/crypto/poly1305-neon 0x1c3e6e5b poly1305_init_arch +EXPORT_SYMBOL arch/arm64/crypto/poly1305-neon 0x6ddf27bc poly1305_update_arch +EXPORT_SYMBOL arch/arm64/crypto/poly1305-neon 0xf39f5240 poly1305_final_arch +EXPORT_SYMBOL arch/arm64/crypto/sha256-arm64 0xb455924d sha256_block_data_order +EXPORT_SYMBOL arch/arm64/crypto/sha512-arm64 0x6402c8df sha512_block_data_order +EXPORT_SYMBOL arch/arm64/lib/xor-neon 0xd4671463 xor_block_inner_neon +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 +EXPORT_SYMBOL crypto/ecc 0x1a5faa3a vli_mod_inv +EXPORT_SYMBOL crypto/ecc 0x4c281912 vli_is_zero +EXPORT_SYMBOL crypto/ecc 0x671f7aa5 ecc_is_key_valid +EXPORT_SYMBOL crypto/ecc 0x7c0fbb00 vli_mod_mult_slow +EXPORT_SYMBOL crypto/ecc 0x8261eccb ecc_get_curve25519 +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xb10fc19e ecc_get_curve +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +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 0x320347d9 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x333d3e3a crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xa60e148d crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xcf8ce1ca crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xd26fd17a crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xe35118e3 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/sha3_generic 0x245fed52 crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x6221a5f9 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0xb6ea5ec8 crypto_sha3_final +EXPORT_SYMBOL crypto/sm2_generic 0x26dd089f sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x2fd249ad crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0x66f6f142 crypto_sm3_final +EXPORT_SYMBOL crypto/sm3_generic 0xee3695e3 crypto_sm3_finup +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x08b0e02c suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0xb33a7118 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xcd99de31 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/bus/mhi/host/mhi 0x9f57e703 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 0x0ea65f9b ipmi_add_smi +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 0x2ca250c9 ipmi_get_smi_info +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 0x60008a2f ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x60967f5f ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x6df77cd8 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x9c2dbefb xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xc5e8c0d6 xillybus_find_inode +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 0x1dc82fc7 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x65496446 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 0xcee1f3c9 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/crypto/caam/caam 0x17572340 caam_congested +EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 +EXPORT_SYMBOL drivers/crypto/caam/caam 0x44ae4bc4 qi_cache_free +EXPORT_SYMBOL drivers/crypto/caam/caam 0xb33e47b5 caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam 0xca869822 caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam 0xe257a507 caam_drv_ctx_init +EXPORT_SYMBOL drivers/crypto/caam/caam 0xf06718c0 caam_drv_ctx_rel +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x280c4997 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x54f2e42f gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x928e4a0f split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xae006624 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe6d5393a 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 +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7b0c587f cnstr_shdsc_rfc4543_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7b7bcab8 cnstr_shdsc_rfc4543_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x86bcdec7 cnstr_shdsc_xts_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x88430d4c cnstr_shdsc_aead_null_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x91ac0969 cnstr_shdsc_aead_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa3115081 cnstr_shdsc_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa340e264 cnstr_shdsc_aead_givencap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa99d7fa6 cnstr_shdsc_aead_null_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xebcdd349 cnstr_shdsc_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xf92c5da5 cnstr_shdsc_gcm_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xf95bcf62 cnstr_shdsc_gcm_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfd807e48 cnstr_shdsc_rfc4106_decap +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 0x7dd5d621 dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz +EXPORT_SYMBOL drivers/crypto/caam/error 0x8b44dd40 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 0xc6f1932b xilinx_vdma_channel_set_config +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 0x1326bda5 imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x9eca5f94 imx_dsp_request_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xabeaae3c imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00738a74 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0081184c drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01582e23 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x017702dd drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x021e2155 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0289769c drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02d6dc13 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fb5f89 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06d78bb4 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07c12a6c drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07dca8c8 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x096ae7cd drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x098a9eb2 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a0933f2 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a233f57 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a59645c __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b374698 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b8eb8c3 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c5fb143 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0df6b138 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fadaff5 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fba2576 drm_panel_disable +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 0x108ae8cb drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x109253b2 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11e985ee drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1282908e drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12aa15e6 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13d61f0f drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14ba855d drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1552fc1c drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17469237 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18306278 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x191010bb drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1acaa707 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c8abdb0 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1caf884c drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ce7af4a drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cecefaa drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d3c3224 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d89e6a2 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1de81dc6 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e0d41fb drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fa739a0 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x211b31e3 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x217af5ef __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21a23bea drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21b4dc70 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x229294f3 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f654d8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2407632c drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2495e87b drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24af6e7b drm_property_replace_global_blob +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 0x2544e799 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25599979 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25ab1d2b drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25e87ca6 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27a9ccd6 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27e5ccf8 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28183cf5 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28544f26 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2984af91 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f5b705 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aa5c47b drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b0fe7cf drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b5101f5 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c35b324 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2da72c0a drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e23b062 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f60b1c7 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f6a3c6c drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fa3e559 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30b0eb5d drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x316d3c41 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31dffa4a drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e619df drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x352d9819 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x363de2e8 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36c9deef drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d6b950 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38782ef3 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38ecfd46 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38fc55cf drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3900a1f6 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39fe8fb4 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac6bf2f drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b299361 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c229315 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cbb0ff7 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d39f8d1 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e268b2a drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e724c8f drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41dc2d15 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4200dfbc drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4218df35 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42b99ba6 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4330e58e drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4350d1fb drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43d15c78 drm_dev_enter +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 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x459cb481 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46381b91 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46af5efc drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x485afc82 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a136d55 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a60e7de drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ad0ba5b drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ae74a0e drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b190638 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ca12ba3 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cc86271 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d2e8cbf drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d9af0d3 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dd67937 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea45f24 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f466c05 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f4d6051 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fa3232c drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fe28978 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x519e475c drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51b04ac3 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5249c5f3 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5260a8ca drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52c80413 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52d3fc08 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52e519c9 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x531539ce drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x533df508 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53519e24 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x538e1282 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53920371 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x545b8234 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x546f39dc drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5619aaa7 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x565383e0 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5668ef6e drm_framebuffer_lookup +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 0x57da2687 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x588ebf3e drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x595c0f82 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x598df5ee drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a0126d5 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a1e8593 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a2f90b5 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b325062 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bc64862 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c6e2e2a drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd8b3cb drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d5d95a7 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dc23167 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e6c85a3 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e6d315f drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f6f044b drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f97ff45 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ff8f7f5 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6035d264 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6065f0f5 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61d34307 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61d9919f drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x621e437a drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63577208 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63857f21 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64438144 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64f7d580 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6576e75b drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66893b04 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x671bac60 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6749e8cc drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68a43d03 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68bef26f drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69035dbb drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x693216ef drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6993f66b drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a4ac231 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a4c30f4 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6abf70e5 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b75aa2a drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cae60f9 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d9797b9 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ddc164d drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e183196 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e71dc15 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ff09ea6 drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70073438 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x708bedcd drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70a6309b drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70aea386 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71043504 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71c0fcc6 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71efbf90 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7288d75b drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72e8859e drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7364def8 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73a9e5a5 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7411fe17 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7453782e drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x758dc58a drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7714eb7a drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77423bd1 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x776afd72 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77c8287a drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b120aa9 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9b7d78 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d970156 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7de76182 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e0d2936 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e6048dc drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fb9db4c drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8098ab6a drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x817c6a3f drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81f1a361 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x823f08bf drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x824588ce drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82cc8098 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82d366e6 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85c96fe3 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88ba7df9 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88c37b60 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88c7727a drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88cc0745 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b21b599 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b3216c4 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2231f2 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c9ab7b7 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d103c3f drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ecb9be5 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8edd0426 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91aa715b drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ee8a9d drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x932d0367 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93669390 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94b40679 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94bca4c3 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97a1046c drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99f843c6 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ade9d44 drm_property_destroy +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 0x9bf9ea0d drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c68f1bd __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c9d025a drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d1b3f52 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dc6c6f7 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dc7fded drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dcf8235 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ebba417 drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eee1590 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f8e8734 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fdbb723 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffcda4d drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0c583ea drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa150d092 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa240568a drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa42c2380 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa52d81b2 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa566f8a0 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5890733 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa63142fc drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6ccf98e drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6e1853b drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7f28454 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa838c150 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9650a83 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa335431 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaba9fd4e drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac22e984 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacbd2f8e drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacf50acd drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad8d9203 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xade8408b drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae0801f4 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeeb3a99 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb04a56ab drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb06ef1ae drm_put_dev +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 0xb17c9e7e drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1eafebf drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2172b33 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2f44a1a drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2f52dca drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3755f44 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4050594 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4092a34 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4c0409a drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4f446cf drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb67e2051 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb708e29b drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb82637a0 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb83b6614 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb87f6a4e drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba3f7d70 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba4ee1a7 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba8c6bc9 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb49404c drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb673505 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc7030a4 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcbf6f1e drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd188902 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbddc541e drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe0d4189 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf5cde2c drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc14fca4a drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc20048c3 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc28a3e8f drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc372c7c4 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc39909ce of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc599e305 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6ddb58d drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7075b4d drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7187d6d drm_calc_timestamping_constants +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 0xc873dd30 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc96c8ede drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca272613 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc59e8d8 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcda897a0 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce1e71aa drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05723c0 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd07469f8 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0db1c06 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd12361fe drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1f836b3 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd26b0a3f drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd39e8b32 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd41c57ac drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd448c050 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5b05258 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd602f6f7 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6e95b64 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7007758 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7625710 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9b74a24 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9b91a0d drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9f21bd7 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda3c9ddc drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda5bd79d drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdae2aad8 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdae9cf2a drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdba28b11 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc2ace96 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc9d5140 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcb214cf drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd277c75 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd4f85ce drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd671fc8 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd9c4a82 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde9334dd drm_connector_list_iter_begin +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 0xdf7723d8 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf91863e drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe19d6c63 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe23a167a drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3d738be drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4617616 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe48009cc drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51bc3f6 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe52afe3d drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5955af4 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe725b557 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe794dbc1 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8313f76 drm_connector_cleanup +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 0xe8fe523a __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe93b18eb drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe952c89d drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9cfac33 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecf7ac39 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed4e67f2 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed682b04 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee46b8ec drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefbef968 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf002ac32 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1f1a89f drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf35b3e0c drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf41e4d9c drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5a706c8 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf605ed86 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf635abc9 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf65d876f drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7f92fd3 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf845d3b1 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf91bc188 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf92dbae1 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf950ba7c drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9558acf drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9ce79a3 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa58814f drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfab37818 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfac594b5 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb4b40a2 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfca767d4 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfda4f297 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfee17527 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfee69eff drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff0753e6 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x007b99ba drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00e1bc59 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01097fa4 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05d0b093 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x072d5c37 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08cfcf06 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09476259 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a3eb945 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a6eddb0 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0aa46cde devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bc62bc5 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c6a4e88 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0eff3ed5 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f354112 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f473523 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x112798ae drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1167d24d drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11be2956 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11cdff40 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x125f5c3b drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1418d1a4 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15263538 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16694548 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e640c4 drm_edp_backlight_init +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 0x1a1d6425 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a3dbd57 drm_dp_mst_detect_port +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 0x1b6be09e __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bd323c1 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d5be8c9 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e460f2d drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e80e560 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fd8dd55 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x213fc22c drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21fd06af drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22113cd1 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2243cd03 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24aa4ee2 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x258af42b drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25c43329 drm_atomic_helper_connector_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 0x287cfa42 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bce16bc drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c19fd0d drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c543f05 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cc37698 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cc9c867 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ce98e1a drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d60fde7 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ec7af38 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fd01f2a drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3030fc6f drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30610f4c drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x329711fe drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33413a48 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3419efec drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35d5db47 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36b38c83 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37978c47 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38185553 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38201be4 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38aef3d9 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a92ec1a drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ab04841 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3afa4f72 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cf548c2 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d78955a drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f943d90 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fd5a711 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x418a7f11 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42503b3e drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x429996bf drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43d257ba drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x451699c6 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46fb1d4e drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4756c16a drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x498be685 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49adef1a drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a6a75f6 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ba6349f devm_drm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bea5ba9 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c18bc48 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c5605ec drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c8eb679 drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cc33582 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e04a29f drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e2b4299 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f00c60c drm_dp_mst_get_edid +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 0x548ae097 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x574ce42f drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5772045d drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58864e0e 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 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 0x5b728b9a drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c7b363c drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5de647dc drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dfbac5d drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fcb3bf0 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60d7041c drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60f39354 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x631c6181 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63a477fb drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64172a8d drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x644dea99 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x667e9ad2 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6729ec92 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6aee5fb1 drm_atomic_helper_shutdown +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 0x6c8bb5aa drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c8c757b drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d0d733b drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dd97f18 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ea5096a drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fc2d15d drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7000cc3a drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70f72695 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7232229b drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72a9eff7 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73b7ef8b drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75badb98 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75db6e78 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x764e8aa8 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x767f6fed drm_fb_helper_initial_config +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 0x770c8d32 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77825da4 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78f956eb drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78fd0885 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7961e9a9 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79d25a3e drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b1186b6 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b7c7380 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7be0df37 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bfe6d5d drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c7f108e drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cc5d9b9 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e81bc11 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x809b85e8 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80a37728 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8554ceed drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x858a6d74 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85e50ea3 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8705e7d6 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87be9167 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89b0c6f5 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a47011c drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8afec593 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b020552 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b42fd5d drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8beb60fd drm_helper_hpd_irq_event +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 0x8dc635d9 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x926812f2 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x930e74e5 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93a7502d drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94168983 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x942adf8e drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9456ed08 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9518fd41 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9564d798 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96c10bfe drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96f6ed46 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x984ad80b drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a12d4b0 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ad85ca0 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b199ab7 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cbe3da2 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d3d7b32 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d76540b drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dadac70 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fcfc189 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1a19da9 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa30b9a49 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3b2375c drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6e608f4 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7e8a320 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa82548fb drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa83f46a6 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9998073 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa0a1efc drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa606f4f drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacc9f8b6 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad435c94 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadbedb03 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadbf1b4f drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaec9b041 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf440f1d drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf6a415c drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb009fcde drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb065ac6f drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1a387f5 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb40491e8 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb78f92df drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb79e716b drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7e0ded0 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7f1e5ae drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb84ce3f6 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba56db78 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbac7fd5f drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbaea0096 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc35fc14 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc8d628b drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd61561d drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe364b3e drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf000046 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0e52bfd drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0e9f118 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc25bb346 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc41e3a34 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc44277b9 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc53f63d2 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc62024e5 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc65e735b drm_dp_cec_irq +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 0xc946aa71 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce7188c7 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0ba064c drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0bb7356 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0eb9e77 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd57fc13e drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6661f97 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6942511 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7d857d5 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda04df29 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd01e3fc drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd3c2798 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddc5f21c drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xded28363 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0789159 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1e9a0ad drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3e06f86 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4ebe3bc drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe506f25f __drm_atomic_helper_connector_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 0xe53e459d drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe59f1520 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5bbc095 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6b7664d drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe70798c6 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7c86913 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea48e3a7 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb5bcfbd drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed2da68a drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee49766d drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef1a6f5f drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf08fb44f drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf149eb93 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf16d64fc drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf17b4be4 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1f65405 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf33918d2 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf41cbeed __drm_atomic_helper_private_obj_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 0xf6c88b5b drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7033ddf drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7e64f09 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfad292e2 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb263442 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd4962db drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe7d412a drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe9c0570 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfec4594e drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfee59fb3 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfefdb256 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff0a9ce4 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff1dc489 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffc4e815 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1d1d788b mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3e41aad7 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x406df614 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5820c586 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5c6a370b mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x64e904ed mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x784eec6d mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7e1449f8 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x80950b44 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8a51ce66 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x92e14302 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa2bff203 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa361fe50 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb7e4e015 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb8f10a79 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbb97aa0f mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf3586b9e mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x28172e35 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x6e4ba190 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9bc87091 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9ef540e7 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc6f02d06 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0ab123cc drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0ea6f2c3 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2a7ae090 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3504935a drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3e3caa38 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5a8820c7 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6422f450 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6f448a1e drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x91675deb drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x97bb8c50 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x98bc637f drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x98bc6a0c drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9bdafd0f drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf1a005bc drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfa11a169 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfe749e84 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x63ba7bc6 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x025579fd drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1263d8c7 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x170c9c7c drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x19c865a3 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x55defb8d drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5829b5b8 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5b83f531 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5db8861a drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x64a70cb4 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6c0988b4 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x776f044e drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7be1768e drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x92740cb6 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9623ffdc drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9af16266 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9e48dfc5 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb6c41bfa drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd2e5f72e drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd70c34e2 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe2c54d70 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe99be87c drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf0a039d1 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf472dc55 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf4a8565a drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x18a9da5d sun4i_frontend_update_formats +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x3c08c395 sun4i_frontend_exit +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x3f136aed sun4i_frontend_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x9474f14f 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 0xe13164ef sun4i_frontend_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xe410db34 sun4i_frontend_update_buffer +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xed821150 sun4i_frontend_enable +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x35e795db sun4i_lvds_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x5f17a52d sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x98f507cc sun4i_tcon_mode_set +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xb1183a87 sun4i_tcon_enable_vblank +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xd458568d sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xfd1e944d 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 0xa8f509b3 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0xaabb10a2 sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0190d057 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x03fc5553 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a39b301 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a811df0 ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b24b442 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x106228f1 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18f3b129 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a056df5 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e449c1f ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ab160b9 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2af772ef ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c949f73 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3282fe50 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3582988e ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40050695 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4335ef34 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x436d3b59 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ce65f63 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x585b875a ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x588c5583 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c19f503 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60c19e74 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63cb488d ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x650e4142 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a88b316 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6bb33d84 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6bd4daba ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75d6e823 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a08cb49 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81cc5a96 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86c2f1e7 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x894899c3 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x93f9e06c ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x940d742b ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99c77fdb ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9aa2b765 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6460998 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb047d198 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb073f585 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2071f6d ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3286fff ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb6b8fccb ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2f317c7 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd065b20a ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd539b9e3 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd77165f6 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd970b758 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf03f94e3 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf1b45528 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4a87744 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7991a3a ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8e210ae ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff248fa3 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x28e47c8a ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x3615eda9 ttm_mem_global_free +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 0x79fd7d0e ttm_mem_glob +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x01acaf08 host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x048600e1 host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0beb66f3 host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0cf454f8 host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x103d1aaf host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1085bb68 host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2bb2ea59 host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2db12e19 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x30d39071 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x32db2577 host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x34966fe7 host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x38898a48 host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3b18988a host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x48337296 host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4f3a85b8 host1x_channel_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 0x5396ce7b host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x53b91403 host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x562837c6 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5c3c30d7 host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x64ba1520 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x66d7588d host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6e8488f7 host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x740cd0e1 host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x74a0e1c1 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x77e52091 host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x866e0683 host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x886f44e6 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8a02f641 host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8e128260 host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x91d118c4 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa439a8c5 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa8a1a559 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa9ca8062 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd6ae071d host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe7bbb47f host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xebb31c99 __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf5c4e346 host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8f79469 host1x_syncpt_read +EXPORT_SYMBOL drivers/hid/hid 0x2cf365a3 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 0x40cbaef7 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 0x0d12c3d3 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x0ed01461 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x6110319c i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x296ccb07 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x5392183a i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xfa437ddd amd756_smbus +EXPORT_SYMBOL drivers/i2c/i2c-core 0x13902fa7 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL drivers/i2c/i2c-core 0x17276f68 of_find_i2c_device_by_node +EXPORT_SYMBOL drivers/i2c/i2c-core 0x18fe6e46 i2c_smbus_read_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x1fc787a6 of_find_i2c_adapter_by_node +EXPORT_SYMBOL drivers/i2c/i2c-core 0x2348cd4f i2c_del_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x36c25ffe i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x3eb78853 of_get_i2c_adapter_by_node +EXPORT_SYMBOL drivers/i2c/i2c-core 0x435dcc74 i2c_transfer_buffer_flags +EXPORT_SYMBOL drivers/i2c/i2c-core 0x46d87693 i2c_verify_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0x50fe31f7 i2c_smbus_write_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x54bd4253 __i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x616cefe0 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x6df27c1d i2c_put_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x6ff36f9a i2c_smbus_read_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x73330d27 i2c_del_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x7611e1d1 i2c_get_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x879fae48 i2c_smbus_write_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x8a176a56 i2c_add_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x9279beec i2c_smbus_read_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x9917ea15 i2c_register_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x9c5de2e6 i2c_smbus_write_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x9d5f4ffd i2c_smbus_write_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa50cd716 i2c_smbus_read_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0xafec57c1 i2c_verify_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xb4ac8923 i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xc787d89c __i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xcaecc4d8 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xf3c605d3 i2c_clients_command +EXPORT_SYMBOL drivers/i2c/i2c-core 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x01fd2dc1 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x28ad9b95 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x44ff5223 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4658058d ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4a92dfe7 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5c3eca46 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8ff76431 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa1eae625 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xba2c29b9 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xca7134dd ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd7382c85 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd8accc23 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd9817c9a ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf319cf29 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf47d286d ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00babffb ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x019bcbe1 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04732fd6 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x049968b1 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x061ff4e1 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0621cf88 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0674e1be ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07164e60 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0737567d ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09040e75 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b3678e5 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0baeb92b ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f801c2d rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fbbb1d5 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1117a136 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11afb629 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x130307b2 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14b9afd3 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19776856 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19de7cf8 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c735229 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ce6c6a3 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d741664 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e2934e2 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e544fd2 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f203961 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20582895 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20693534 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2279561c ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24156e0f ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x273f6d91 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x274aa460 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x284d7d38 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x297381f1 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c7e3a96 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3034f1b7 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3078ee12 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x322d6fa2 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x326300d8 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32b03f3f ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3540742c ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35c9913d rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35cfd4d5 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x365e1617 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38013e4b ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38bf397b ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c6e2d81 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3de4f991 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x403be630 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40846cdc _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x417f3675 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x430c9099 rdma_hold_gid_attr +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 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49455be0 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4945e492 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ba654f4 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4be4b46b ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e250d6a rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x502489ac rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50807400 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x510d2546 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52871ffe ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53340df7 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5458118a ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5568ac12 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55dffd21 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x567ca686 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5718e46e ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x573a9498 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x576b547b ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5830c29d ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x593f6acb rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d0ba994 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e2823b6 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e61416f rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x603073e6 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61c053e4 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63d945da ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65f45e32 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67081eec ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67888391 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68d61945 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x692e2f6d ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6980b881 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ab6c8b3 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7046840d ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x713f3b2c ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x716ef085 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7342a942 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x743ea999 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7623ad4b rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7679d8ce rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7902a1dc ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x790f8338 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79fac73f rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ecb8722 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f45a815 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80bdaaa4 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x828617f5 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84a91de5 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x855099ee ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8648162b rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87f682b9 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88379dc9 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x893507c1 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x894a0c05 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x895b7124 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8aa5c716 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ac61803 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b031a20 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cb7076d __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8de03f75 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e8068dc rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e8b2af6 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ed0a66b ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91233157 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9182b853 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x938ed4ff ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97a994c1 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x989be144 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98bd1381 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x998dc65a ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ab9e1d9 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b1b381c ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b53a375 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ba2c6a6 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ea861b6 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0193104 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2b2cbd8 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa61c3ec4 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab357962 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad5005ea ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafd716ce ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafe7a336 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0471e14 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4767fc2 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb640cee6 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6ae2947 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb70fa001 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb82f50b8 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9ec5edb ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba6c3174 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb334429 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb45acf9 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbbee13b rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc701a22 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdbe3900 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf60d5b0 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0af54ef rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3829ab7 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3b01fe4 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc56135ef rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5670641 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6e2f385 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc763ed27 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d3e20c rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc962ec63 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9e38d63 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc35e95b ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd44d0d9 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcedfa2ec ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1b9fc74 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd268f356 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3cca05e rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd471e5b5 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda7e16e2 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb05f14b ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc8f7b70 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd69a53c rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe00ae0a7 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3714738 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe46caa01 rdma_create_ah +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 0xe70e6b70 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7a21f02 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb675054 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebf36bdb rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecd80abf ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2546ed9 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4762d60 __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf54b0140 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5b25df8 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf691a783 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7fab4e7 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf80bd997 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf87e27e3 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc5f3c59 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd8aedbf ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdf9fa3f ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfec2b9e0 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x16a08ddd ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1ff3497a ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2a31d912 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2b2d6b84 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3a93e317 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3bbd2856 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3cd6c282 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3cfb6560 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3e613d0a uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x467bf495 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4c5071ca ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53bcb801 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x57f56156 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5cbfbb68 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x62ab84f0 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x646d3717 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7010c1f2 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8c2906ac flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8e2fd73b ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9476633e uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x95c39f6e ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9ad683b9 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbbb9161b ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbf77ce1c ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc57fc8fa ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcb91efd7 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcc05afb2 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd17b01f5 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe26ae1aa ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe627b39c _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe741b6be uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeda88b6f ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xef0f6481 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf2994781 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf9cb1780 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf9ebf95d ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1974f9e3 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4971347a iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x784b3177 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7ecb3d19 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb477e16a iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdfd47aa7 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe08971f0 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xffef675c iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x006893e7 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x067a5008 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0abf95c5 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0d84aeb1 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x176a5d99 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1c8d2c65 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x22d46bda rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x270401c8 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x368e8729 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x444d8052 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5ae13c19 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x68bc8b80 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7929d9ae rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7f0ae11b rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x84ee8a07 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x86681676 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ba9c6b9 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8d3d202c rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x97b465fd rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9a7c25f9 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9b22e6ea rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xadd6486a rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xafb4b9a0 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc2dfe734 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc8fe96bc __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcfde0225 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdd593b7e rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdefba58f rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdf2ccd1b rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xef567491 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf667c859 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf8383ce3 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf97c8eb1 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xffe2d731 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x00d8aca5 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6ffacaea rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8cc968e9 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xad1206cf rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb5fe8e84 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf19b77e7 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf2b50207 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x16b8e107 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 0x3032f7b6 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b01e41d sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xbdca87b5 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xf492f5a4 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x12cb240f rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3469e269 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x37c28282 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x421fb911 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8d68eae4 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb0da9959 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/input/gameport/gameport 0x095ad7e2 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1500cfd0 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2b716cfd __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2c4c315c gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4a6a71ba gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4b476792 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x518bb6f7 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x52076df7 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9925c3ec gameport_open +EXPORT_SYMBOL drivers/input/matrix-keymap 0x60087871 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0fc2051d sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3cb430f9 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4da61c63 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x619615f6 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xe48d058a sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x2a9aae8c qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x39aeb62e qnoc_remove +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x1ee6425d 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 0xe714bfc7 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x7309e930 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x182a2f40 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x29b484e7 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xed7f7d84 omap_mbox_request_channel +EXPORT_SYMBOL drivers/md/dm-log 0x1a51a7c3 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xd6b6c99d dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xfa8512af dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xff775afe dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x202997e9 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x44314c6b dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x79b55890 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7f0f0bca dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd658ef7c dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xdb80a5b0 dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0xcc8d9c02 r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xdf348eab raid5_set_cache_size +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 0x2d09b21a vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x68264a4e 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-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 0xa73615ce vb2_querybuf +EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x5a12b807 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 0xc0210d68 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x23c2bbbc v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x3c8b1c2b v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x64a0ed3f v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd234e19b v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xe12c5a1f v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xfc27bafe v4l2_async_notifier_init +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 0x562c42ad v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8b419006 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x94ff00e2 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xe5e01aba v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01c8828d video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03754bfe __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07af8c45 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ebb6ead v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11627db6 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12e55ebc __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x19bb3725 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d294e44 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x219cd7a3 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21cc0068 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31a569b1 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +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 0x3da0b86f v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x42ae2947 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43f3b5e1 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4493dd99 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45cf947b v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b351473 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5231097b video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x53ef01c1 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56349f7c v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b67289d v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5e1b9ae6 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6345929b v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7052fb2b v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73110b3d v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d328f9b v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a604184 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99a82c8c v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a2b48a1 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9be4ffa2 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9dfea793 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa790e84c __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf437e61 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6a02e04 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb73724b5 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbb02325d v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe0a4997 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2dfea0f __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5abbda7 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc732e824 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd09d5b4a v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3c57924 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb3f1b30 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdbe1a552 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe271ea8b __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe85c06a6 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeabba1cd v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee997895 v4l2_ctrl_g_ctrl +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 0xf56150d1 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf5a2a96f v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe4854ac v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x369a3771 rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x6e23933e rpcif_prepare +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xba37fc65 rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xd9e7326e rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xf5ff7f55 rpcif_hw_init +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x09a64a1c mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0fbe84a4 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x103864fd mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x138c84c1 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x17f714bc mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x215e77d6 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x216fbb02 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2c1470dc mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2c32b0ef mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5c0739ef mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5f070c17 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6dc70759 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7ee4f471 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x83e82987 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x89398fba mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8f5767f0 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9684ee0c mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x978210a9 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf12704d mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xba5b0df6 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbfaf7343 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc650bb03 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc92719ec mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd8278ed mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe80264d1 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xec4d5497 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf63344ee mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf7ab1580 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf85c4c15 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0c9a1d10 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0d57b705 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x197e3eaf mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1a2cbd5d mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1ef02699 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1f0ab588 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x26fb4335 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2b68b669 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x30ac959f mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x31364220 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x41fcf13c mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x59490345 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6a7ab023 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6f7a1986 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x76e2abbd mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x822377d0 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8a9d3e3a mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8b4d6751 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa1ab429e mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaa4c51a5 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb24b96aa mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcdc0594a mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd4022eb1 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd7967a10 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdb419b1f mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe342ce6f mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf5a4eb13 mptscsih_abort +EXPORT_SYMBOL drivers/mfd/axp20x 0x4c554591 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x6b50351c axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xc89b8778 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x6041a40b pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe073b0e0 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3cb75800 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5db64c45 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5e442220 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5f400df1 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7736082b mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xac5b4cac mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb278d76e mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc54ddbd1 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe9dad4d9 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf1fb3f35 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfdc50608 mc13xxx_unlock +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 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994 0x08bcb5a2 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x214c814a wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x3a860e3b wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x420b5ba2 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x738d19d5 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xa5e40c16 wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x1196fbf8 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x509dc446 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x628a51ab tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x74eddc75 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x7568a9b1 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x87cdf88d tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x93aa33e3 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xad53b434 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xcbcff56c tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xd4fc2137 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xe88f6491 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xec395b13 tifm_unmap_sg +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1c605ec1 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x45388954 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x494d57fe arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4c5f6534 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4fbb4839 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x66ea5039 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6a1e1867 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcbb91976 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdcf7b0cd arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe4bfdc93 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf435e2b2 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x265064f4 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x38f149b4 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xee68b1a8 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0d750762 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x13fb9a31 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x25167f24 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x26500852 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x26a06d93 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2a012b53 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2c7adf3d b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x36beba0f b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x39eab1b5 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3a6df432 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3e737f9f b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x47911b69 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x487e4e16 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x54219354 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x57e14d30 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x59fc4633 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5cafd00e b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5ce99a91 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5e5ac96d b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x708972c5 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x75389356 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7888101c b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8bea4654 b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8c0b3f31 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x924c55ca b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa6ddb012 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xab3f4196 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xacf022ac b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb18a9425 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb514fc59 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb73f5489 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbc156628 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbd7066d8 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc35988b1 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc9c73159 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xca94dcaf b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xce574a24 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd5eafb6d b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd79243f3 b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf7dd80cb b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfe292e75 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x0d21f57a b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1ca342b9 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5a8f9356 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9169dfaa b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa1ef17ec b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa32b5a4d b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x4a7021dc lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x857f3cf8 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xeaed3866 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xff782aa2 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x12dcf00d ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x5a66a50b ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x85f92fb6 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xc3356363 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x3f273488 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x8107bfbb vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xe4cdba7b vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x190aaa68 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x1caeec60 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xc8925fba xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe27a52b3 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xc313272c bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x765a9aee cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0d1be6c1 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x195225a9 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x280d3526 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x298ae051 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3685fffd cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5347651b cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6762e4f9 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6d148a83 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x73493e8d dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x85e6effe cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaad5460b cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb5d7639f t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xca72b898 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd4947d26 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xeec5b8cd cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf83033d9 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x073fb266 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x13fb2b56 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1bbc8ccf cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x22a99221 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x287ad60c cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2974a81a cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2d7fa08b cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x38108111 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3984de42 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47d10f8b cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4991426b cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b7af460 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x53897902 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x55b5c48e cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a14d04b cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5fe1bed4 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x692ac6a8 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d702e8a cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6f83c8a3 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x762c5143 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7909a27c cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7b4cd924 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x80a806ad cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x81581636 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8267d63c cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8f8fc517 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x929625ef cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94a4e216 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9a65ec7f cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f57bfd3 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbdca879e cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc1e8c4c8 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc40a871b cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7d4ac34 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcc7c627e cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd03d199c cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd285dbc8 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd74d9680 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd911d6bf cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe3c84fbe cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe4982b2d cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe870f4f8 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xea9c6192 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xecf77d75 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf152b3c7 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc591149 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x06dd4958 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4c4a5e1a vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x558c7c31 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa075168b vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc958b749 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe4ba9c9f vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x29ac19ed 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 0xcda6f291 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x4412391e dpaa2_phc_index +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x8070b318 dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xaf5efd70 enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x2fc70dc4 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x31dd15fb hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x556c0125 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x95eaa2f2 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xd5c135a1 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x44a5c1ae hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x03015501 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x607890be hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x6ea33a92 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xa0b66ab0 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xa0d7f95c hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xb3bc64c7 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xd1aadb6b hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xdf717147 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x0f55e06c iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x49a73a82 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x13cfc7a3 otx2_reply_invalid_msg +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x1eafac24 __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x25629db2 otx2_mbox_wait_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x2da453be otx2_mbox_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 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 0x5fcaaf62 otx2_mbox_nonempty +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 0x642d63c7 otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x7463147f otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x80de8f80 __traceiter_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x90eb2c51 otx2_mbox_regions_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9912f016 otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa40137e0 otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa52dc756 otx2_mbox_busy_poll_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xaf379ec9 __traceiter_otx2_msg_alloc +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 0xcae77d5f 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 0xd4a12027 __otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xf35e799e otx2_mbox_check_rsp_msgs +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x13b08a99 otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1526cc3f otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1e77d80f otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x33794689 otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x37ed2606 otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3b9e89b9 otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3c7dd49a otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x50520674 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x509a53ab otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x73678589 otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x740f90c0 otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7d80f933 otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7dc93501 mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x897c0f26 mbox_handler_nix_txsch_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8bb94be0 otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc112986d otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc375ee19 mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc3a24612 mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc7aa1d6a mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcd3eebbb cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcd6101fb otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe3bb0fb3 otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeffd130b otx2_get_maxflows +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfe74db51 otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x007d7c01 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07df059f mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2039507f mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26ac6d0f mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a38f60c mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a4963e5 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f52a548 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x339fcacd mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a4d0517 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b8c2c88 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x443a21bf mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b511a80 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52faf628 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57afb02c mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b9022b4 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66a7a004 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79318238 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 0x83fcb6c1 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8421deab mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x870707fb mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94c15f24 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x957ea544 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x975f67f3 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97af8b68 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a3de1eb mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa39d519c mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa62f2fa7 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa8ea4aa mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab3ee5fb mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab5515bf mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae3fb0a3 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5c876e3 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb83d2d7a mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf960cdd mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc08d6145 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5c9fd20 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf2f4348 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde40f9b6 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe363e563 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe55cb351 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec95feb0 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed7abe5c mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6c9d0a8 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcd3da8f set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0089a020 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01bc9289 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03c0e3ac mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0465f0fc mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05be82bc mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06212ae7 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c643b68 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ded3112 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ea9b7d5 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x102dfe99 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x134a656b mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x161a082c mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16c63a72 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17042805 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1812080a mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a6f05ed mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b102d07 mlx5_core_destroy_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 0x1e269bdd mlx5_core_destroy_tir +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 0x22bce683 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x266ed8ba mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x268d3a32 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28f016ea mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b6b5e3e mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d2d9ae2 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d64cb4d mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32ec503b 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 0x3475821f __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38082391 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38726c41 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d205025 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40238b93 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x425cd62a mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45ef1779 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48aa7cee mlx5_core_alloc_pd +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 0x4c5c5bbe mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e9dc770 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ea1e504 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ffc267d mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5001aca6 mlx5_core_destroy_rq +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 0x556850aa mlx5_free_bfreg +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 0x57c0cc20 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f6100fb mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ffdd8e4 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60594512 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60636d36 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60787a52 mlx5_lag_is_roce +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 0x67d34b4e mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c9965ae mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70c6b7e2 mlx5_core_query_rq +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 0x76efa552 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7818c8ee mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79bb9018 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a08a2be mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c9eb1fc __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f6c5b68 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fbf1d09 mlx5_eswitch_add_send_to_vport_rule +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 0x80aa76d1 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8281e6db mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x838ccd43 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8460742b mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84f54c97 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86592d97 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86dd01ef mlx5_notifier_unregister +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 0x895fb146 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a4100d0 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eb87df3 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91294d5a mlx5_core_modify_cq_moderation +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 0x92bb5c81 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9576142a mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95bd2725 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 0x9a07f806 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c47058e mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cc5680c mlx5_fs_remove_rx_underlay_qpn +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 0x9f56e4eb mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f8a8560 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa17a0819 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3aa5c87 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4f7d6e5 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5fd09f2 mlx5_eq_update_ci +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 0xabb41d45 mlx5_core_modify_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 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 0xb6ba1c30 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb72cffaf __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9091673 mlx5_eswitch_vport_match_metadata_enabled +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 0xbbde79af mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbebc04d3 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0aae341 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc122c12e mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc154a09e mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2a171fa mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc46618a2 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4e0015a mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9ea36df mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcac40fad mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb75afee mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd3ca61b mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd7900fa mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd337d5c9 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5064ecd mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd50ccd00 __traceiter_mlx5_fw +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 0xd881ecbb mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd89cba1c mlx5_core_create_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 0xd992eacf mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb07d6a2 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb6edf5d mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcdd5726 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf505374 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe15b1e89 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1e54947 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe57e3333 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe61f9a82 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6618ded mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe75d099b mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8504e3e mlx5_fpga_sbu_conn_destroy +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 0xedb52deb mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeff4def0 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf16b4167 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf44b94ea mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf44d8994 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4b656e9 mlx5_eq_disable +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 0xfa6a096f mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa7b1832 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/mlx5/core/mlx5_core 0xfe7e2b71 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x9891b2a0 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 0x04eef830 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07089e0a mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x11ba0f52 mlxsw_core_port_eth_set +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 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 0x1f8d6f75 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x2b25a03d mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d7e9c72 mlxsw_core_trap_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 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 0x4167bea9 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 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 0x55443603 mlxsw_core_port_devlink_port_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 0x5d6ac3cd mlxsw_afa_block_append_mirror +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 0x6ee90be7 mlxsw_core_rx_listener_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 0x75543fc7 mlxsw_core_driver_register +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 0x7b028507 mlxsw_core_rx_listener_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 0x819edc5c mlxsw_core_ptp_transmitted +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 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 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 0x9eb9fc23 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa1ada173 mlxsw_core_skb_transmit +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 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 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc7413b6 mlxsw_env_get_module_eeprom +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 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 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 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 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 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 0x3fac95fa mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xa5baf8ea mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x0b20c0f2 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x9cd20ee6 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x002e02ac ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x063dde45 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x065406b0 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x09aeaf85 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c0932e6 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1002c9e4 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1575420a ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ee49878 ocelot_port_lag_join +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 0x2aa9d051 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c208eab ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2d791100 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2e305c25 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f29e248 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3b72b448 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x455669a8 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a1c541a ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a969b03 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4bb28429 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4de07a34 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54f9c57a ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5855271a ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a503d53 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5cb8758b ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x66add12e ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6818a05c ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b1b77d1 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x701c5d2e ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a607ddb ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b303412 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c82eec4 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e515fc1 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x821ec716 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84daed90 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x873d6f03 ocelot_mrp_add +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 0x8f978b98 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x937411a5 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93aedb2d ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94e01831 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x997420c4 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e292a42 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9eae378f ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ffc62fa ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa51ff476 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa6d150dc ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa6f0e039 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa85e6011 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa42ab28 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xabf17022 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad975a9e ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb091edb9 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3ee3e01 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbcc28e91 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf6004f7 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc0f23ebc ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc25c91d1 ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5df3068 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xca11d80c ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcfa7557e ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcfdcd3e6 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd47d7c5c ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6a58ec7 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd79875b1 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb28df80 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xebe12181 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xebf4fdfc ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf712fa49 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa38a65c ocelot_ptp_adjfine +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 +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +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 0x1d112399 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x5e06f170 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x9cdeb73c mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xfeda68b5 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x2f30f7e1 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x6c7541d7 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x3746b5c3 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x583b0eb3 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x6420d2cd xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x675995db xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x9b7db8e8 xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/mii 0x147f6837 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x19c1c96f mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x3c32fbde mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x66c9470c mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x9d99dc9c mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xaaa4d0fb mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xd465b930 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xdc8253ea mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xdc82560e mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xe6ef50b6 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xc5114570 lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xfba6481f lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x6e59eda7 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x22aa0941 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x4d62ed52 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xadded300 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xd2ebde53 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0e82c86b hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1401697e detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3e23b20a hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5ae182a4 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5c530665 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6b4da6c1 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x975c6215 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb5410ce6 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf0d63f63 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf3d54718 unregister_hdlc_device +EXPORT_SYMBOL drivers/ntb/ntb 0x01b7b9ea ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x1117e148 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x143322ed ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x3776983c ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x40910874 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x4b9fde93 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x7de3d22f ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x891de61a ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x8a15bee3 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x8be38bc1 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x8ed1f66e ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x9d246a92 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x9f677328 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xb66e54d1 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0xd3241a16 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xda5ed6f4 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xdc0856e5 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xe3f3426d ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xf316a818 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xf32741bd ntb_unregister_client +EXPORT_SYMBOL drivers/parport/parport 0x05beea39 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x0d22daa8 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x12e51594 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x2d75ed83 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x373a7d4b parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x4229676f parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x47e85441 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x4a652631 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x4bd00140 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4d73ebf3 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x4e9903f3 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x53dd2908 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6c7ead31 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x6e6049ac parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x758b40f6 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x7965df75 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x7f10ff44 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x838c6f54 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x88f1797f parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x980db48b parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x9e913dc0 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xa6ac9182 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xa85d79c9 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xac4deca3 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xaffda359 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xc39f5245 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xc7288027 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xd2410e96 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xd60ff615 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xd79dd25b parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xf2b49634 parport_write +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x32571b4c iproc_pcie_setup +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xce21e0ed iproc_pcie_remove +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1534035c pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x276ef2df pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x55a417dc pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8da8af94 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb1be9dcb pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb948b939 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf87fb30 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe3058b03 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xef90ccfc pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfca29689 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xd4f1c5fd pccard_static_ops +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x8c8980ba qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x093308b3 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0aed6c2c rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x19ec7632 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1bdd4f7d rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x37c5bbd6 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x40d7d4e0 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x42aee68f rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x46060b2f rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x49f8a2b0 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x56ce8a6c rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x594a5116 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7a2b8929 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x852bb0c7 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8530f1a8 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x91690000 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa8a3b854 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf9e42d6c __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x522f1b12 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x20d4f342 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x67c2d49f scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb07450b6 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xfa3a6065 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6935a1c5 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd7ef1131 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe0b1d091 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 0xd4dbe000 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x093303b4 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0a530550 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x265798db qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x43176bab qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x473a965a qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x62957791 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7bef5779 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7e2f3d1d qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9e546588 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb5bf799b qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbf635bfb qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf0245abc qlt_lport_register +EXPORT_SYMBOL drivers/scsi/raid_class 0x0d265a8f raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x1c5124cc raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0713ea26 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0c325295 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x150796da sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2c84c307 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x311b5a37 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x35fd328d sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x409b767c sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x50708107 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6ac2ebc4 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7660c156 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x769d6d34 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x77407e0c sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x80726553 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8378cf80 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8cf2b06c sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x95592b52 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xadff4ca4 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae2df4d6 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb5f73253 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc15d33a6 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc1958544 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc1ce80f6 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc2a053d5 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc50d8e3e sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe42271f9 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe7fdd8cd sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf0c5697f sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf6b48d17 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf80dce60 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x18b01905 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7c5bca49 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8096dda9 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb07dcadc spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf0122ded spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x61ccfee4 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa52496f7 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd71bcf83 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe111a6d1 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf9d9710c srp_timed_out +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 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 0x3530bd9f cmdq_mbox_create +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 0x5083ca49 cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x52511008 cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5ad581ce cmdq_mbox_destroy +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 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 0x199c7a43 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 0x2581a207 geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x28d9ad84 geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x48beed19 geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4954c9b7 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4961bcc2 geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4cb25b58 geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5724c4cf geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5a10c5ac geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5b293e2f geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x632d475e geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6ba7d1d5 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6db3f37a geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9c515560 geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb1931578 geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb35d43b3 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xef449e8c geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf82e9431 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x950e724c qmp_get +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x9e2aa1df qmp_send +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x07652b6d qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x14c30e2a qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2e77abd8 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x347b242d qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x54cb3739 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb2e3ca74 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xba8aa130 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd7d8a6d2 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xdf357ca2 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xebedbbb8 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 0x90450a2a qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x04ec1533 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0f0a4a20 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x12830522 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1cfd48af sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1f6b7af2 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2d104511 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x43989e51 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4448593f sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4c150caa sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5bda23b8 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5ddceafd sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x65d54a8b sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6ee2fad1 sdw_write_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 0x73eb6f42 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7829e5dc sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x824ef692 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8632646b sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9c88af26 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa4d81f85 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa8bf6ae6 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xab1eed8a sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb1515ce7 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 0xcb78d973 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdcd8b7b8 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe8826e62 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xee3e8f9f sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/ssb/ssb 0x01b056b1 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x1f869ffd ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x22a327f7 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x3411f969 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x3e58bc7a ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x424eb5f0 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x5c09802f ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x8b0a6f43 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x92d1e252 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xa76272ce ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xb32e9da0 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd2ecdd24 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xd82f4aeb __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe0210668 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xe1afceba ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xe86aeafa ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xf3f501c1 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xf4c9d54d ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xfe59c6a8 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0871fbcd fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x29dd30a8 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2b4feaa1 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x31de4fb4 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x36e5b18c fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x526c0cb8 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x61738871 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6e3d8465 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7e1e6ddf fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8163bb27 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x956552e5 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x99c1e292 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9dcdad06 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa133aa2f fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb42f76d9 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc24bc724 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xca3b0a6f fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcc0d8e5f fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcea28051 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcf9e2fcc fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd6b92c8a fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdd7e1cca fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe21772c3 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe46c185f fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfab94fd7 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x4b0e42da nvec_write_sync +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x9d6740b0 nvec_write_async +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x0198a9b9 vchiq_connect +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 0x22922c50 vchiq_initialise +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x327c3232 vchiq_msg_hold +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 0xa22e9df3 vchiq_add_connected_callback +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xab9c67af vchiq_open_service +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 0xfbbe46de vchiq_shutdown +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0005b169 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x02bfa825 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05b46109 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d134618 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e965def iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24413028 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x253a1726 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x288d29f0 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2d51aa8c iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ed069dd iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x32363f90 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x33f4ae89 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d949d6b iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x49bd75a6 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4f5a0a46 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x588a2960 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5cf67625 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f82cea9 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6021efa7 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x605af1cd iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x605f3954 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x70a0a35c iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x783e6b53 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x78c2c358 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x806de4d6 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8107eef7 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x81e6384c iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x840b370d iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ab8d703 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x93225569 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c7586ce iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ccf52a1 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac19c5c4 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6db1437 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd27e568 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd88187c iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd0eae558 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd8463bda iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe44a5045 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe531827d __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec602e36 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf11ec578 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfcfdb438 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff937881 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x01985709 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x04059537 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x06647dc3 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x06b8ce84 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x07e01226 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a88133c target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c853cbd sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x0df17ec6 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e2773c9 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f1817d5 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e505a0a target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x21fa14df target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x22412cdd transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2373e43c transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b4a54d8 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e05e080 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x31824f3a passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x318d6560 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x32aca421 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x361b1762 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x46a6bd7d passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x48e910bc core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x4b84d0c9 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4bf78c3e transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x4c34bfc1 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4d20fa54 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x4db88237 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x5264a694 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x5887106d core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x5ad4166b transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x603ef2a6 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x657ee8d9 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x66f75537 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e34fb93 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x7397a357 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7777c3d0 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x780f86a5 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d82d30a spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x7de0509a core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x87579697 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x8ac966e2 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b95a63a sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x8de55ad5 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x8fab29b0 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x913c3e78 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x91c9b19f core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x91f507fc spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x9215b97a target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x9299451c spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x971046da target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9cde4732 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x9dcbac20 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9dccacd6 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xa117206d transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xa60dc7a1 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xa9dcdcb5 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xab34ace2 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xab506bc5 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xadd02d0a target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xbbe6c5d7 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xc01d00af transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xc23a4f95 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc388681e __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4cb64d4 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xc6bc5314 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd6a719e6 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6077cbc target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb7eaacd target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xef596173 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xf04eda72 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6387b62 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xfba809df __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfe85f9b5 transport_kmap_data_sg +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x31fa6de6 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4797157d mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4fdc496a mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb4718e0b mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc6e5b81c mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd08d8eaa mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf5cc7d23 mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xfb92bb64 mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/vfio 0x0909b7e3 vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x1aa9fba0 vfio_dma_rw +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 0x7f971f8a vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xaca68d0a vfio_unregister_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0xcffb6ce0 vfio_register_notifier +EXPORT_SYMBOL drivers/vhost/vhost 0x8c8fdd70 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xd3e58b88 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vringh 0x0c46f5fb vringh_iov_pull_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x18f3ddc2 vringh_iov_push_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x19c24590 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x1fe50c1a vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2890c460 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2d2babc9 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x3684d8af vringh_complete_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3ee1955e vringh_init_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4504adc9 vringh_abandon_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x5bd469c0 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5f586ca2 vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x61e3831b vringh_getdesc_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x660779c8 vringh_kiov_advance +EXPORT_SYMBOL drivers/vhost/vringh 0x6a693a25 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x90e93e3c vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x9b30452e vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xa7ce8bd6 vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xa8efaeb9 vringh_set_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc0bb1581 vringh_need_notify_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc87491c8 vringh_notify_enable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xd465f463 vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xe4c21196 vringh_notify_disable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xeb2ec139 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xf1e32cc0 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0xf8605294 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xf9d0dd07 vringh_abandon_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x3cdd09d7 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x5c4febd9 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x8d108184 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xeaf360cd lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x71a1538b sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x9480ab93 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x95e7e996 sys_imageblit +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x0a1b9c74 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x267d3261 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x5bbe98d8 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xc2695d60 is_virtio_dma_buf +EXPORT_SYMBOL fs/fscache/fscache 0x02df5ab4 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2071fde6 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x21f005e9 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x299211b9 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x304afee8 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x32e79736 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x3917dc51 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x39c896d3 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x49ea9da8 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x550c5eed fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x55c565bc fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x59e7185c __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x6025d083 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x6d978e45 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x848f16b0 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x87796f22 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x955d755c __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x972df30d __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x97ece79c fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x9b902bf0 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x9ebbb530 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xa7b0cbcd fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xa7d3709c fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xb98d94f1 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xc4a09a8a __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xc9616c74 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xca2f0f4b __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xcbe28e7e __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xcda0a915 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xd40038af fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xd8ef277d __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xdaf60007 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xeaa92e2d __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xec9aba01 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xed2a1acd __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf45d317c __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xf79d8e70 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xfaa8e18c fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xfcdfdce6 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xfce34aa2 fscache_io_error +EXPORT_SYMBOL fs/netfs/netfs 0x30921626 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x3da291f5 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x62808106 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x7361c96d netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xbccba6f5 netfs_readpage +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x051cc190 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x0b39a80a qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x462b40ff qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xbee73d48 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xdb87d20a qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe7c37ac6 qtree_get_next_id +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +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 +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x5b19e187 chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xc20134e7 chacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xce15a526 xchacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point +EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks +EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x222ff7bb 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 0x60b6bf4e lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams +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 0x0b8d1b4a lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x4921a10e lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x654772a4 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6e29fb6e lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x8f00be65 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xcb5d46d1 lowpan_register_netdevice +EXPORT_SYMBOL net/802/p8022 0xaa144803 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xb70f9abe register_8022_client +EXPORT_SYMBOL net/802/psnap 0x190bd6df register_snap_client +EXPORT_SYMBOL net/802/psnap 0x6f90dfba unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0e26fb33 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x13f4d4c2 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x18cb469a p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x1fbff82e p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x2622687b p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x271931cc p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x2814714a p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x2af9a089 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x2dbeaf42 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x3085f639 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x389f9a8b p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x3ad5fd21 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x58522c76 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x5eae0ac9 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x6402dc4d p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6cc45179 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x6d06c4c6 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x73134ae1 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x82158a76 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8e4ba673 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x8ed41133 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x9236c26d p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x9b3c0237 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x9d097fd3 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x9fa2ce68 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xa74d5ea8 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xacd243c7 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xb69f6b75 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xbc007fe3 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xc535c1d6 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xc76dd341 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc8244271 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc88f97cc v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xcd83f46a v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xd041dcac p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xd29524d0 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xdb4b5b4f p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xe25b1a9e p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe78950d0 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xee1c6c67 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xeee68143 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xf17c8ad3 p9_is_proto_dotl +EXPORT_SYMBOL net/appletalk/appletalk 0x62f82589 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xa384ecdd atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xe7281db7 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xe761b8aa alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x1f256079 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x28a40ff6 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x33d77b9e atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x4b76329b atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x52eb4e68 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x69f7ae99 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x826a3547 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x8cb71ecd atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa3aaac5c atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xa3ac5620 atm_charge +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xc7497226 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xcfe31d3b atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xd191fffa vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x1076b376 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x41dce39d ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x5c1b0a1e ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x8d38c858 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xb8a4065a ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xdce3c063 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0xee46da16 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xfb49f0ab ax25_linkfail_register +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x17394594 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2dcc7844 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x44cb0698 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5db475e8 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x729a54fd ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd631baff ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/caif/caif 0x01135f6e caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x4077a433 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x8b07ddc2 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 0xe0715929 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xfdc4a106 caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x29aede92 can_proto_register +EXPORT_SYMBOL net/can/can 0x83b97a8f can_rx_unregister +EXPORT_SYMBOL net/can/can 0xadbee3fc can_sock_destruct +EXPORT_SYMBOL net/can/can 0xbb2d115a can_rx_register +EXPORT_SYMBOL net/can/can 0xe63b83bd can_send +EXPORT_SYMBOL net/can/can 0xe764f32d can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x05b73981 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x061e6ec7 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x064ba91c ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x08928d52 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x093ecd07 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x0bd8d728 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x1576abd3 ceph_monc_get_version_async +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 0x1893ab76 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x1b29b435 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x1bea7e03 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x1d754778 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x1d77a9eb osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x1f207c33 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x1f9ae2fa ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x22250405 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x24302277 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x281b622c ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x289beccb ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2ac68b49 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x2b034f9b ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x2b1e7e10 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x2b314ec1 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x2e54e7e3 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x2e685f89 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x2eb4e652 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x2ff4ab44 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3bfc8551 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x3c24f7d4 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3c9d1e89 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x3fe14b1f ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x417fe9ed ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x49d0cdc7 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x4dc4d496 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x4dcc78a0 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x5006656b ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x519e27ee ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x53cdeef2 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x549557e0 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5cece1ce ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x5d44c663 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x5f43cd6c ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x60b7649f ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x60baab4d ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x6315c681 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6be33db6 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x6d69fcf5 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x6e04e0bf ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x6e37b689 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x6e43ad95 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7006ecc2 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x76b81b65 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x77ea0642 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x7aad80fa ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x7b4b1d1d ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x82bb8887 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x84b70a9e ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x85fd15bb osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x908ad8eb ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x934d74e4 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x9451609e ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x96e779c8 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x98fad7fa ceph_cls_set_cookie +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 0x9d781394 ceph_cls_break_lock +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 0xa0fa374e osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xa260ef4a osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xa44415a6 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xa524101f ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa6d40b1a ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xa8eac0b7 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xacf8c52a ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xaf620bc6 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb399124a ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xb3ede202 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb713f177 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb7c05496 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xb8286c19 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbd4ba3c5 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xbd784a1d ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbe96acc1 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcdd62215 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0xcde295d0 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xcfe7a4f9 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xd0b42583 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd68065d3 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xdb2c9f00 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xdb38e8de ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xdd35b0b6 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe42ada55 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xee22c686 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xef587278 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xef63e134 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xef73c7c7 ceph_print_client_options +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 0xf185cb53 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank +EXPORT_SYMBOL net/ceph/libceph 0xf2719301 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xf2e36e3c ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xf3423810 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xf49641b9 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xf83f4c7a ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0xf87993ef ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xfadd3c02 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x031a3a42 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x74bdff04 dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x6a6064d2 is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0xd92d6609 hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0a50db95 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1b43735a wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xadd2cb15 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb6c0c31a wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf2df4a3b wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xfd6c7420 wpan_phy_for_each +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x7b6f4d97 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd7a47c1a __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x04353a17 gre_parse_header +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2caf06d2 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4b3ed6aa arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6baa1c58 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x99a13520 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0ad223e0 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x1c73ebf5 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2fc03870 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7a14eb5b ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x9b67c66a xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xb9be74b8 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x158a624d ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1feb8ee4 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x69775eff ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x730dc88c ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb448105a ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb94d534e ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xca4e04d0 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcdc1beff ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd1ee2a37 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x395a8d24 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x477164c6 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x81343767 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xa25f6adf ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x3f1b7ca5 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x5a269b12 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1fc474fc xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x3ab382cc xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x32f3fb67 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x838a87fd lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xa809bf48 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xbd8a71ac lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xd86822fd lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xd9ffedf3 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xdca50ab8 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xfc17071c lapb_getparms +EXPORT_SYMBOL net/llc/llc 0x28206770 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x32fbf02d llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x363cb4d9 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3d9ce4ce llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x8b221221 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x93dea69d llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x9ed63117 llc_sap_close +EXPORT_SYMBOL net/mac80211/mac80211 0x0142c3c7 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x02501fbf ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x03ed0c8a ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x08ecaf9d ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x0967b804 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x0a317193 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x0b9b235e ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x0d64092a ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x0e340b85 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x0f83c099 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x1083447b ieee80211_beacon_loss +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 0x1b3da7b8 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x1bd3203d ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x1c40bec1 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2018a3fa ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x230dd3ab rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x24099632 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x27edec89 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x29cb2d2a ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x2a2ef9e0 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x2e89e62c __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x2ff3d70f __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x30f7d060 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x31bca5e4 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x3506a8ac ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x38e4bb93 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x3a35fa79 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x41544b63 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x42d83b27 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x45744c9d ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x45da6744 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x4759da9f ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x4af88066 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4caf7966 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x53738ea1 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x595e5c89 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x59a21ee0 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x5ad1a812 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5fc740b7 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x600b9108 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x635d2889 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x65c6849f ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x660f91a0 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x66245c20 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6e08c408 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x6f41e635 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x70a6f71d ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x74f569eb ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x78859b68 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x7ae9f522 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x81a6892a ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x8547816a ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x865c5fab ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x866d9adc ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x8cf499b9 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x92696d17 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x930103ae ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x9656187c ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x977d3398 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x98254e72 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9a53af71 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x9d942ce7 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x9ec8fdc1 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x9ec90f35 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x9ef373e4 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x9fa534f5 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xa1891c87 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa7053454 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xa73b2f06 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xa93344d9 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xab04387d ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xac4c20ca ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xb0145c33 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xb3a94f07 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xc3d91e74 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xc4a1bea4 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xc5c1190b ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc7141a68 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xca72601a ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xcb390f57 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xccecc46c ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xd07bb887 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xd0bced60 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd2926708 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd58f5b35 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xd641432b ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xd73b22da ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xde1df826 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xde232086 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xe12f6dad ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe2e71c12 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0xe633aa07 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xe7d752d5 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xe7e8ab3f ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xe99f34a1 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xf588a283 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xfa75fc77 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfba52c1b ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0xffc06b98 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac802154/mac802154 0x4740db4f ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x478a6788 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x4931e3f9 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x945c0aa5 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xb67786ac ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xb9c8e794 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xc51c028a ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xfc08f5ff ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x000b37e5 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0237bea5 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x05b46f00 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0d124307 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x245fc4a1 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x377d2ab2 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4dc57ea5 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x52cb399d ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x54fd299d ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5d413883 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8bf2b609 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa982674f ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb55a601b ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xef370b5d register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf0c6d10a ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x310b0e05 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 0x121d9f44 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x5416e1a3 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x8f51cbdd nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xc5eb3abc __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 0x215e4fd6 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x3875892d xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x897c02a6 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x9c96849b xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xb8082bdb xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xb90cf2a3 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0xbfdcba99 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd649b5a5 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xdd636b3a xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xf779325b xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x0652af04 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x0ad1e38e nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x123be901 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x14bce819 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x2aa8311e nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x4d059fef nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x5b8d44b3 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x63f07f78 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x6a91881c nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x7477b79c nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x801d323b nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x82de8b82 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x936f4efe nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x9e7c6f1e nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xacca4ca9 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xb1fd4da9 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbf4ff37b nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xc0a18091 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xd2fcafc0 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe33bd179 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xffb1caa4 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x067c4551 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x0acf66a4 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x0b635cdb nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x13b0089f nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x14bcaaa4 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x278b3bf4 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x286e33cd nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x3486f3b9 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x3cd78940 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x3fd9a004 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x4a9fa49d nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x4b49da16 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x59ed69fd nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x668d77d6 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x779aa1eb nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x8246e59d nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x8b4ed3f9 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x8fb55d3d nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x925f86fc nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x9acb8e07 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xab2b313f nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xab7d1c3b nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc2465fb4 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xc79507f5 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xdb6a29e6 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xe1371577 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xe970094c nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xecdbadb5 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xf8cb5590 nci_send_frame +EXPORT_SYMBOL net/nfc/nfc 0x03554d42 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x14824bc4 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x16d1765d nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x3bfa9490 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x3ee0ad3c nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x4c9bcdaf nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x59448562 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x5f93a065 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x73373b0d nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x745637b2 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x7781a33e nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x81efe200 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x8f071185 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x981a0296 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x994c89dc nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xa71c8396 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xabf486e1 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xb084edad nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xbc58a3d1 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xc08c1ee5 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xc4e319e1 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xcdafc041 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xf2f8b3a7 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xf735bac0 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xfc627134 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc_digital 0x135bbc9a nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x45edcd9f nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x5459ab31 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xcfd40684 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x1f17023b phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x5854d682 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x593b05c2 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x6cac1a1e phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x85a1e005 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x8f6f3d9c pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x9ea407a2 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xa1222b99 pn_skb_send +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0482ffb7 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0bec7d72 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0ecdbd81 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1bdc4e14 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2e689778 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x35b97254 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x36bbf8bc rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4a9c9b28 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4cbbbdbf rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x71dc1577 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8a18ee13 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa1178d9e rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa1e5a787 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb3fa4d95 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc00d4461 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc414ded8 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd3512d82 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xff537c51 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/sctp/sctp 0x54567277 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xacdc6157 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd08f2e14 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdd0c7211 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x432ba4d8 get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0x48ae6e19 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xacdd7f9b xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd2638567 xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x23cfcd11 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x2eda609d tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x6cf65ccf tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x994d193a tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0xc1fd5dd7 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x0404256e cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x05d7396a cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x0fd4ce6e cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x11164603 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x1248b196 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x130b6437 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x1374ee97 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x1402dbc9 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x1474cfd2 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x21f260ee cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x26c298dc cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x26ed38e7 cfg80211_new_sta +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 0x296c48b8 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x2b06e874 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x2e4c73c3 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x305cbacd cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x3195e2f1 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x3221f602 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x370e9072 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x38295ce3 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x389e2244 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x3aeeeb0b wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x3c609780 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3d970c1d cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x3daf8a4e cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x3e4acd10 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x409f2ef3 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x420783af cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x4451e31b cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x44e664db ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x4710a497 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x486c8714 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x4a68521a cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x4c6495b0 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x50630cb6 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x51ad7197 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x5231a922 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x5282e0ac cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x546feab1 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x58b00f21 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x597dd726 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x5a442b79 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x5b0043d0 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x6068757d __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x60f94bdc cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x65853148 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x680048d2 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6bf8abb0 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x6eba1777 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x6f008539 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x74a52cc0 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x75e8f3de get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x78987191 cfg80211_ref_bss +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 0x7bb1ed55 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7c57a22c cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x7e0ca38e wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x7e76e83b wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x81a51e92 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x8495bd48 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x853010d2 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x8b8656da cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x8d1afb69 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x8e6df879 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x8f35ef6d __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x97ff8364 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x9d105e79 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9eafca6b cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x9f5eb91a cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xa0ad47dd ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xa88a6a31 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xa8bf2935 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa8e470fd cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xaad6e9ff cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xacdda05d cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xadb8611b cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xb2a8a420 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xb3884e81 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb61ff90e cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xb85e5bf1 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xba64c07b cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xba734bdf regulatory_pre_cac_allowed +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 0xc80d1531 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xca49f770 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xcac1393c cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcf9f3fa3 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd77a7525 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xdb053092 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdd92d94f wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xe0263441 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xe05f56b4 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xe2baef8a cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0xe5d58975 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe65f1757 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xe8c3c10b cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xeef79f56 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xeff58fea cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0xf095c056 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xf38b5954 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +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 0x5ab4856f 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 0x9fd2bdd0 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xbcaa29a1 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 0xfde64fbf snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x734e4fba snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7a3e0db5 snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8150b379 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb8620ad8 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd70dbf6 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd935c83 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe9e6c50c snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xe0ac69cf snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0ae29911 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x0d7e6db8 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x27025a9e snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x2a88dce1 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x2f65d635 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x48466b4a snd_device_register +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4e77488d snd_register_device +EXPORT_SYMBOL sound/core/snd 0x5aa04190 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x5ddd1ff6 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x5e34e571 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x6170136f snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x723b39fb snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0x793dd9ca snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x7abb09bc snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x820be671 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x86d23d99 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x8b413cca snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0xa01e5d70 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xaa84ecea snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xad09eab6 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb48a6c29 snd_device_new +EXPORT_SYMBOL sound/core/snd 0xb6993d2e snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xb7a8be9f snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xc168b265 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xcc1b0673 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xd8241d28 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xd8981623 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xda17693d snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xdcd2c487 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xe1773fe4 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xe6adc11e snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xfcec8db3 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xfe1acb2e snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +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 0x056f9a47 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x0c528cfe snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x0d22d071 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x0e84763d snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x13ce1ba1 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x220cb80e snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x289a4094 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x31d7a1d3 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x32d39621 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x35c44bb6 snd_pcm_lib_free_vmalloc_buffer +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 0x3be288ca snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x3e8e139a snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x40a46624 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x40fee916 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x42df94bb snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4497f777 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x47357090 snd_pcm_hw_constraint_ratdens +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 0x50c35640 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x52e01b8e snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x5ad181e9 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5cc8d070 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x5f491eff snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x63ee686a snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x65f4271c snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x673efea0 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x68a70758 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x85177e66 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x883bef0f snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x8a9b6d07 snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x92953955 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x96fde789 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9fa80268 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa2dfcb3d snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa73bda35 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xac470566 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xb0e12e58 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xb7cf44d5 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xb95474fe snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xc6df7a61 snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0xc7e0ca72 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xc931eb68 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xcb71c8b7 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xccdbed8c snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xda19f6aa snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xdbe1aa1a snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xf7e7b355 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-pcm 0xffe1f95b snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0e5a7111 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x15cb77cd snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1d899c30 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x20324f13 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x231447b1 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2f7e7ea9 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x352580c9 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4a201ef1 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7f7bead3 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x865e9ce1 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8eefa1c7 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa57b0a5f snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xaa07fd94 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb504e1e1 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbda47706 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc7cd91b6 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcef005ae snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcf48b824 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd57b319a snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfa5397a0 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x2c59d6aa 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 0x02b45a5d snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x08b86e4f snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x1ec0327a snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x29af23b4 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x30d34613 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x3d76f2b8 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x4a48074c snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x64b5a6b1 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x6f77c884 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x757d47dd snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x8652e9a5 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x894e0e5d snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x8a3c41ec snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xbc72275a snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xfb448fd4 snd_timer_pause +EXPORT_SYMBOL sound/soundcore 0xe454f060 sound_class +EXPORT_SYMBOL vmlinux 0x0010d705 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x001e2e7a param_array_ops +EXPORT_SYMBOL vmlinux 0x002870b1 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x0037d27a eth_header_cache +EXPORT_SYMBOL vmlinux 0x004a80cd vga_put +EXPORT_SYMBOL vmlinux 0x0055d7e0 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x0057dfef done_path_create +EXPORT_SYMBOL vmlinux 0x006c434c put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x00b39951 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00c93e8e from_kgid_munged +EXPORT_SYMBOL vmlinux 0x00cd1d80 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x00d18ebf input_flush_device +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00d96ad7 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x00e21c08 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x00f4c68e xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x00f9d56e nf_hook_slow +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x01094fb3 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x010c0077 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds +EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read +EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x0145097f qdisc_put +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 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x017dfc50 block_read_full_page +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 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01c9e8da tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x01d7264c d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x01dc10e5 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x01e8359e udp_seq_next +EXPORT_SYMBOL vmlinux 0x01eef3d7 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x020456a0 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x020f8abe unload_nls +EXPORT_SYMBOL vmlinux 0x0222c532 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x0226abc6 regset_get_alloc +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x0229a2f2 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0x02350fa0 skb_expand_head +EXPORT_SYMBOL vmlinux 0x023d22be dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x023d9eaa phy_suspend +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x024a91d1 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x02528934 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x026cf58e tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x026dfd5e shmem_aops +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0295f4d7 __breadahead +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02c0777f fman_port_get_device +EXPORT_SYMBOL vmlinux 0x02d30416 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x02d410df inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x02d8fdb9 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x02e477d2 netpoll_setup +EXPORT_SYMBOL vmlinux 0x02fc8591 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x03042af0 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x030cf74d fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x0311a437 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x031d34a2 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x0331fc8c pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x033d53a0 kernel_write +EXPORT_SYMBOL vmlinux 0x035e4973 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036d7616 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x036df775 sk_error_report +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037f8be0 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x0381ac51 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03d6e86b xfrm_state_free +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x040e71ee dev_mc_add +EXPORT_SYMBOL vmlinux 0x040edf5b kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x041a5196 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x04289335 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x04394bf4 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0456827d phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev +EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x047838c0 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x04790260 single_open +EXPORT_SYMBOL vmlinux 0x04794bba proto_register +EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x047e5c22 scsi_done +EXPORT_SYMBOL vmlinux 0x048192d3 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x04839ab7 tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x04967f8c netdev_crit +EXPORT_SYMBOL vmlinux 0x04a14673 xp_alloc +EXPORT_SYMBOL vmlinux 0x04aef2b0 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x04b2ba41 acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0x04c3aece dev_trans_start +EXPORT_SYMBOL vmlinux 0x04c44b69 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x04ca1320 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04f26c63 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x04ff5500 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x0503d4ec vmbus_sendpacket +EXPORT_SYMBOL vmlinux 0x0505f51e dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x0511c60d uart_get_divisor +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x051d9a5e register_quota_format +EXPORT_SYMBOL vmlinux 0x05210969 lock_rename +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052a4ed9 d_make_root +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x0547ca58 vme_dma_request +EXPORT_SYMBOL vmlinux 0x054d261c devm_iounmap +EXPORT_SYMBOL vmlinux 0x054ef01e dev_mc_sync +EXPORT_SYMBOL vmlinux 0x055d783d of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05a811a3 clear_inode +EXPORT_SYMBOL vmlinux 0x05bf4cb7 tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0x05deb2bf mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x05f4adcb alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x05f55d29 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x05f99d1b user_path_create +EXPORT_SYMBOL vmlinux 0x0606736b __d_lookup_done +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x06183e77 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x0619b358 seq_open_private +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x063ea951 __post_watch_notification +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x0675add7 poll_initwait +EXPORT_SYMBOL vmlinux 0x06770098 dump_page +EXPORT_SYMBOL vmlinux 0x068190d2 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x06848c60 to_nfit_uuid +EXPORT_SYMBOL vmlinux 0x069fbc63 set_blocksize +EXPORT_SYMBOL vmlinux 0x06a286d5 inet6_getname +EXPORT_SYMBOL vmlinux 0x06a6ccc6 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x06aeeb97 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x06ba8363 is_subdir +EXPORT_SYMBOL vmlinux 0x06bd1c9b kernel_getpeername +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06da88a6 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm +EXPORT_SYMBOL vmlinux 0x0714aa37 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x07167042 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x0721c118 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x073028bd skb_clone_sk +EXPORT_SYMBOL vmlinux 0x0730362e jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x0750f170 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x076c38e5 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x0774cb85 fc_host_post_vendor_event +EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl +EXPORT_SYMBOL vmlinux 0x0784f982 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07ac5d5e fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x07b50343 phy_find_first +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq +EXPORT_SYMBOL vmlinux 0x07de6321 get_watch_queue +EXPORT_SYMBOL vmlinux 0x07e6f6e6 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x08047566 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082cab59 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x08602202 fc_host_post_fc_event +EXPORT_SYMBOL vmlinux 0x0878f6da __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x087ea1c2 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x08856939 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x08a4bfdb __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x08d0520b scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x08d0bf39 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x08e103d2 seq_pad +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08f4bddd sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x091d2608 to_nd_pfn +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x093e14b5 inet_frags_init +EXPORT_SYMBOL vmlinux 0x09440be2 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x0949185e pci_iounmap +EXPORT_SYMBOL vmlinux 0x0963abc9 mdio_device_create +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x0980c1ca textsearch_register +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098ea346 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x09a3dcc9 of_chosen +EXPORT_SYMBOL vmlinux 0x09b578af load_nls_default +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09e4b3de inet6_add_offload +EXPORT_SYMBOL vmlinux 0x09e6e408 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a1d25e6 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0x0a292909 __scm_destroy +EXPORT_SYMBOL vmlinux 0x0a34372b rt6_lookup +EXPORT_SYMBOL vmlinux 0x0a36766b tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x0a3767cb xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x0a541fd1 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a7aa7d0 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x0a80b597 arp_xmit +EXPORT_SYMBOL vmlinux 0x0a82e7b0 tty_check_change +EXPORT_SYMBOL vmlinux 0x0a867bad blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x0a987628 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x0a9e301c vm_map_pages +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa8a2a2 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0ab15852 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x0ac071e7 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x0ac50ca4 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae8ceea inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x0aeb5da7 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x0af7be70 request_key_tag +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b230c05 pci_choose_state +EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc +EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x0b39f7b3 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x0b57c545 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x0b670df7 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b8abd5b __register_nls +EXPORT_SYMBOL vmlinux 0x0b929116 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0bb18b94 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x0bbeb3b8 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc64fd2 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x0bca775c mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x0bced1c1 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x0bd27222 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x0bd47cff input_setup_polling +EXPORT_SYMBOL vmlinux 0x0be11c86 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x0be6a8e3 lookup_one +EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0x0c13e635 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c499ad4 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c63fae6 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x0c6409c5 copy_string_kernel +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c8bb129 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x0c9c6379 rtc_add_group +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cb873de xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x0cbce570 __of_get_address +EXPORT_SYMBOL vmlinux 0x0cbf28fc of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cc87ccb tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0ce808be simple_pin_fs +EXPORT_SYMBOL vmlinux 0x0cf71a14 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d20726d freeze_bdev +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6bb925 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x0d70939c of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x0d7352e5 dquot_destroy +EXPORT_SYMBOL vmlinux 0x0d75f2b4 md_write_end +EXPORT_SYMBOL vmlinux 0x0d84210a scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x0d845e41 genl_register_family +EXPORT_SYMBOL vmlinux 0x0d9af597 trace_event_printf +EXPORT_SYMBOL vmlinux 0x0db29a7f fc_find_rport_by_wwpn +EXPORT_SYMBOL vmlinux 0x0db482e1 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x0dc8d41d pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x0de2a38b update_region +EXPORT_SYMBOL vmlinux 0x0df638cb xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e50bf10 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x0e58d173 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x0e5eacce fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x0e7028e8 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x0e747829 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor +EXPORT_SYMBOL vmlinux 0x0e7592d3 fb_show_logo +EXPORT_SYMBOL vmlinux 0x0e7a055c dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x0e925639 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x0e943913 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x0e9735af pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x0e9b39b1 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eae7fac pci_match_id +EXPORT_SYMBOL vmlinux 0x0eb0ced4 build_skb_around +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ebff75e nd_device_notify +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed99aed dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x0ef53cb5 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x0ef7d5d9 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x0efb58e1 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f1987bc jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f2a510a inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f79299e phy_device_register +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd6a456 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0ffce272 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x1003895b default_llseek +EXPORT_SYMBOL vmlinux 0x10056685 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x1024fe2f __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x1037b610 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x10604169 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x10689409 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x107b6276 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x107b880a disk_start_io_acct +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107e1a88 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x109ab53c inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x10a30e61 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x10a95f49 dm_register_target +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e66688 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10ec9776 simple_setattr +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1121865c ptp_clock_index +EXPORT_SYMBOL vmlinux 0x112cc361 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x1162cbbe of_match_device +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1195ee1b of_node_get +EXPORT_SYMBOL vmlinux 0x119bd8ce acpi_pm_device_sleep_state +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 0x11f47d8c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x11fe0b95 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120e6afa of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x120ff8e1 xudma_get_rflow_ring_offset +EXPORT_SYMBOL vmlinux 0x12194a8c sock_rfree +EXPORT_SYMBOL vmlinux 0x121bd1ba set_nlink +EXPORT_SYMBOL vmlinux 0x12400113 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x1241764d tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x12433f98 of_find_property +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x124d9489 tty_lock +EXPORT_SYMBOL vmlinux 0x1250c752 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x126e140e dma_resv_fini +EXPORT_SYMBOL vmlinux 0x12759092 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x1288b27d pipe_lock +EXPORT_SYMBOL vmlinux 0x12a05b5e pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user +EXPORT_SYMBOL vmlinux 0x12b01f78 input_get_keycode +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12d696dd neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x12dae737 dcbnl_ieee_notify +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 0x1315ea6e may_setattr +EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x131b460c __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x131f94e5 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x1342cd70 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x135e6e34 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x138bdd96 cpumask_next +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13bd0a16 con_is_bound +EXPORT_SYMBOL vmlinux 0x13bf1f4b inode_add_bytes +EXPORT_SYMBOL vmlinux 0x13c27449 simple_getattr +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 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x140ad545 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x142e7a14 irq_set_chip +EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x1459be9c locks_delete_block +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x1461a393 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x14653cf4 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x1476d3eb tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x14953780 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x1497221a __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14ced76e nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x14d778a8 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool +EXPORT_SYMBOL vmlinux 0x14f68abd netif_skb_features +EXPORT_SYMBOL vmlinux 0x15087666 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x151cb173 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x153e5f6f touch_atime +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x155505bf console_stop +EXPORT_SYMBOL vmlinux 0x15777328 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x15857b2c dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x15a7c185 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x15b35fc4 io_uring_get_socket +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 0x15dd2d4f nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x15eea0a7 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x16058e26 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x1606b958 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x160c4df1 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x16115cf0 vme_bus_type +EXPORT_SYMBOL vmlinux 0x162154d8 import_iovec +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x162e1302 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x16301100 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x1638f410 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x163f51c0 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x1648285a generic_ro_fops +EXPORT_SYMBOL vmlinux 0x1650ad68 key_task_permission +EXPORT_SYMBOL vmlinux 0x1674ad95 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x16809225 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x1684fdbc set_bdi_congested +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x1699676a generic_write_checks +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16cfcbe3 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x17195cc7 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x17375062 sock_no_linger +EXPORT_SYMBOL vmlinux 0x17434cb6 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x17471c68 nf_log_trace +EXPORT_SYMBOL vmlinux 0x17616bff fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x1766c058 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x176e2774 param_set_long +EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get +EXPORT_SYMBOL vmlinux 0x17863c23 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x17a41482 rpmh_write +EXPORT_SYMBOL vmlinux 0x17ba3d58 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x17bc4005 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x17bd1bbf get_tz_trend +EXPORT_SYMBOL vmlinux 0x17c90a84 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x17d3ffed ip_frag_init +EXPORT_SYMBOL vmlinux 0x17d681fb fman_reset_mac +EXPORT_SYMBOL vmlinux 0x17e843e8 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x18079e7b sock_wfree +EXPORT_SYMBOL vmlinux 0x1813dab4 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x1829b1d2 __lock_page +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x184ed4e3 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x1858cce6 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x185fa081 input_grab_device +EXPORT_SYMBOL vmlinux 0x1863e9bc rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x18729066 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x1885e946 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x1887d02e cdrom_open +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188c434b udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1893a75f bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x1896094e configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x18ab28ab filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x18ab68ec dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io +EXPORT_SYMBOL vmlinux 0x18d18120 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x18db637a gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18ee53af jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x18fcbe69 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x190a48a9 efi +EXPORT_SYMBOL vmlinux 0x192207a6 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x19332e29 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x195568c2 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x195d9b5f pnp_is_active +EXPORT_SYMBOL vmlinux 0x19622ade lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x19739ce6 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x197b702c netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x199c7c67 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19aa2a44 pid_task +EXPORT_SYMBOL vmlinux 0x19ada29b skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x19b8028d ppp_input_error +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19f7401a init_pseudo +EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x1a2da23f netif_rx_ni +EXPORT_SYMBOL vmlinux 0x1a3f0ce7 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x1a3f65ee ppp_register_channel +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a560e6b udp_gro_receive +EXPORT_SYMBOL vmlinux 0x1a641b57 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x1a7d3c2b migrate_page_states +EXPORT_SYMBOL vmlinux 0x1a855e29 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x1a862757 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x1a952b4f init_special_inode +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1a9a8ed5 inet_release +EXPORT_SYMBOL vmlinux 0x1a9e5bba tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x1aa2fd17 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x1aa5ed1b dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1aca5ed3 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x1ace4993 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x1add38b4 fqdir_exit +EXPORT_SYMBOL vmlinux 0x1af0024d amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x1af1a78a uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b1534d0 sock_create_lite +EXPORT_SYMBOL vmlinux 0x1b2d149e xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x1b2facd1 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x1b469d54 inet6_release +EXPORT_SYMBOL vmlinux 0x1b4abd91 fc_host_post_event +EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b7563dd d_add_ci +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b92bf03 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb6a8e2 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x1bb8eaf2 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x1bd12b23 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bf32dc0 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x1bfa0cf7 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x1bfd08a9 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x1c07c745 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x1c0dacd2 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x1c22cf97 nd_device_register +EXPORT_SYMBOL vmlinux 0x1c2f9649 nf_reinject +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c6ac9cf pci_claim_resource +EXPORT_SYMBOL vmlinux 0x1c8afc4e __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x1c9a7400 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x1ca1b46c dev_get_by_index +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cbfcb89 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl +EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id +EXPORT_SYMBOL vmlinux 0x1d04b845 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +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 0x1d46933c zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x1d4dd39f param_set_bool +EXPORT_SYMBOL vmlinux 0x1d4f4e36 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x1d50fdb3 fget +EXPORT_SYMBOL vmlinux 0x1d5538b1 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1d637683 __alloc_skb +EXPORT_SYMBOL vmlinux 0x1d709592 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x1d88da62 of_match_node +EXPORT_SYMBOL vmlinux 0x1dbfc193 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x1dc3848c dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dced2a7 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x1dd1f4ba km_state_expired +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de21ed4 audit_log_start +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 0x1df0519f serio_unregister_port +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 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e4a2f5b qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e718d02 amba_find_device +EXPORT_SYMBOL vmlinux 0x1e8af1b6 tso_start +EXPORT_SYMBOL vmlinux 0x1e8d5a1f dqget +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea1ffb4 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x1ebb682d default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x1ebd1ba0 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x1ec6dc50 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x1ed71b8a scsi_ioctl +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1f033a90 register_netdev +EXPORT_SYMBOL vmlinux 0x1f480c10 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x1f52f821 seq_read +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f58d4e4 vfs_readlink +EXPORT_SYMBOL vmlinux 0x1f636daf dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x1f70fe5e phy_register_fixup +EXPORT_SYMBOL vmlinux 0x1f76b8b8 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x1f7b963b generic_file_llseek +EXPORT_SYMBOL vmlinux 0x1f8549a7 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x1f92158e kthread_create_worker +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc5fbb1 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe8ee84 napi_build_skb +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +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 0x20554b7a blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x208c2b8d neigh_table_clear +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b950c5 of_node_put +EXPORT_SYMBOL vmlinux 0x20bf3e5a input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20cca97f module_refcount +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20f2f0e8 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0x2100e2f1 netdev_printk +EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x210f221f sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x211f3e05 xattr_full_name +EXPORT_SYMBOL vmlinux 0x2123c7bc tcp_ioctl +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x2150f0e9 dev_add_offload +EXPORT_SYMBOL vmlinux 0x2187d3da flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21d42ce9 nla_append +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x21f59322 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x220bbda6 d_set_d_op +EXPORT_SYMBOL vmlinux 0x220c7021 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x221defef vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x221f8b27 __scsi_execute +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x2247e37e __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x22565669 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x22911fd7 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x229484cd netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0x229fd5bd input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x22afd6a7 begin_new_exec +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x23312786 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x23315ea0 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x23318a5b __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x23347d0d pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x233aadec md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x23420ea6 pci_dev_get +EXPORT_SYMBOL vmlinux 0x2342a6ea generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x23529ff7 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x23798b02 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x237cc5f9 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23d52b14 passthru_features_check +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23e09804 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x23f56b28 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24175c91 make_kprojid +EXPORT_SYMBOL vmlinux 0x24176ac5 seq_write +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242f8794 page_get_link +EXPORT_SYMBOL vmlinux 0x24410f99 ip_options_compile +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x24460425 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x244c235d devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x2455bf23 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x246cb677 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x248b4f5a fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24dbd893 rio_query_mport +EXPORT_SYMBOL vmlinux 0x24f73eb2 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x250470a2 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x251b495a vme_register_driver +EXPORT_SYMBOL vmlinux 0x251f5aab register_key_type +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x25310400 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x2536d0a6 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x253e291e amba_device_register +EXPORT_SYMBOL vmlinux 0x2559047b tso_build_hdr +EXPORT_SYMBOL vmlinux 0x255e5ef3 tty_port_put +EXPORT_SYMBOL vmlinux 0x2572ed94 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x25804bf5 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x25808069 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2582d5a4 jbd2_journal_check_available_features +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 0x25ab406c rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x25b2e348 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x25b4e8c3 bio_split +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25ed158f d_path +EXPORT_SYMBOL vmlinux 0x2604e21b kernel_bind +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x260b886b mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x26151cbf truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x261c636e __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x26270d0d _dev_printk +EXPORT_SYMBOL vmlinux 0x26305936 fc_remote_port_delete +EXPORT_SYMBOL vmlinux 0x263b12f8 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod +EXPORT_SYMBOL vmlinux 0x26443723 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x26451e60 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x2647ec16 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x26524f7d flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x2652be41 netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0x26576a42 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x26627e17 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x267116fd loop_register_transfer +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x26a1212e pci_resize_resource +EXPORT_SYMBOL vmlinux 0x26a91ce2 component_match_add_release +EXPORT_SYMBOL vmlinux 0x26c0f87c pagecache_get_page +EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26f42e1a input_release_device +EXPORT_SYMBOL vmlinux 0x26faad34 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x270fea5c wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x2715b750 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x2715f336 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x271f87f1 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x27236b46 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x2725b9a3 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +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 0x276e1905 dns_query +EXPORT_SYMBOL vmlinux 0x2770ad5e tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277999cb dquot_initialize +EXPORT_SYMBOL vmlinux 0x277b4cbb submit_bio +EXPORT_SYMBOL vmlinux 0x2780b27c serial8250_register_8250_port +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 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27ecf791 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x27f8381a __skb_checksum +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28239d66 sget +EXPORT_SYMBOL vmlinux 0x2824b064 sync_blockdev +EXPORT_SYMBOL vmlinux 0x282bcb3a follow_up +EXPORT_SYMBOL vmlinux 0x28660276 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x2869b985 stream_open +EXPORT_SYMBOL vmlinux 0x286bfd8e kthread_stop +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x288508c0 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x288530e1 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x289080e2 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x28a33b50 xp_free +EXPORT_SYMBOL vmlinux 0x28c656f6 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x28cda586 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x28cf545a vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x28e0a4a9 file_modified +EXPORT_SYMBOL vmlinux 0x28ed15f2 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x28fcd7ce ip6_frag_next +EXPORT_SYMBOL vmlinux 0x291720e3 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x2928f40b splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x2934dd9d lru_cache_add +EXPORT_SYMBOL vmlinux 0x2937bf72 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x29512cf1 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x2963bf1d page_symlink +EXPORT_SYMBOL vmlinux 0x29726ced netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x297fa014 cont_write_begin +EXPORT_SYMBOL vmlinux 0x29828d77 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x29b7977a devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x29cbc723 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x29d27ade posix_lock_file +EXPORT_SYMBOL vmlinux 0x29dbd167 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x2a1749b9 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x2a27a730 of_iomap +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a51adaf vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x2a58a39d md_bitmap_free +EXPORT_SYMBOL vmlinux 0x2a60b983 block_write_full_page +EXPORT_SYMBOL vmlinux 0x2a8dd591 neigh_for_each +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a9717a3 config_item_get +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get +EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id +EXPORT_SYMBOL vmlinux 0x2ab361bc fb_pan_display +EXPORT_SYMBOL vmlinux 0x2acdaea8 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x2ae9b882 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x2afe6a8d input_event +EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 +EXPORT_SYMBOL vmlinux 0x2b3f5362 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x2b4932fb uart_update_timeout +EXPORT_SYMBOL vmlinux 0x2b4ca85e xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x2b534886 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b727b97 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x2b7807fe msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x2b81c0d4 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2baae7b3 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x2bb16eff discard_new_inode +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bbbb65a scsi_block_requests +EXPORT_SYMBOL vmlinux 0x2bc7a5ad blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x2bcc3104 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x2bd5efbe ptp_clock_register +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bdd55b1 phy_detach +EXPORT_SYMBOL vmlinux 0x2bde205c scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove +EXPORT_SYMBOL vmlinux 0x2c03c583 seq_lseek +EXPORT_SYMBOL vmlinux 0x2c086d2c mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x2c0df9d0 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x2c1107af mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x2c1fad1c xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2d6814 param_set_ulong +EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c35270c kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x2c377232 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x2c4c68db nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c5d6046 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x2c6f735e security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c847755 d_splice_alias +EXPORT_SYMBOL vmlinux 0x2c8f7f21 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x2ca45905 page_pool_put_page +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cdcbca3 register_md_personality +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2cdfad35 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x2cf6dde7 __fs_parse +EXPORT_SYMBOL vmlinux 0x2cfe396b kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d344813 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d4ae6b6 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d5d7b8d simple_transaction_get +EXPORT_SYMBOL vmlinux 0x2d687c45 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x2d7eceb9 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x2d87ebc6 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d93e71b vlan_vid_del +EXPORT_SYMBOL vmlinux 0x2d96588a input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2da0efe1 __frontswap_load +EXPORT_SYMBOL vmlinux 0x2dab4908 d_move +EXPORT_SYMBOL vmlinux 0x2dc0ed4c kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2deaa24d sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x2def4686 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x2df6cfb1 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x2dfa25d5 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e0e96e0 pnp_device_detach +EXPORT_SYMBOL vmlinux 0x2e12e0d5 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x2e1c9299 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e1fe070 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw +EXPORT_SYMBOL vmlinux 0x2e2e1a3b tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e4c7d64 follow_down_one +EXPORT_SYMBOL vmlinux 0x2e4e2ee3 md_integrity_register +EXPORT_SYMBOL vmlinux 0x2e5043a8 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x2e5eb971 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e6d4b90 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x2e7cb8cb kern_path +EXPORT_SYMBOL vmlinux 0x2e842a6e iput +EXPORT_SYMBOL vmlinux 0x2ea14263 file_remove_privs +EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x2eb25dba xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ece4890 vfs_unlink +EXPORT_SYMBOL vmlinux 0x2ed68340 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2eea912c get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x2eee015d devm_ioport_map +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init +EXPORT_SYMBOL vmlinux 0x2f1f502f security_inode_getsecctx +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 0x2f47fcee filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x2f63089c netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f7cdf8a msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x2f7e7e5f sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x2f97c17d mdiobus_read +EXPORT_SYMBOL vmlinux 0x2f9afef7 input_close_device +EXPORT_SYMBOL vmlinux 0x2faa144d fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x2fadb1e7 notify_change +EXPORT_SYMBOL vmlinux 0x2fb1ea15 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x2fc898d5 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x2fcaba36 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0x3007f138 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x300eb191 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x30297f47 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x3034fc16 param_get_hexint +EXPORT_SYMBOL vmlinux 0x303eeddb netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x304804b5 netif_device_attach +EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0x305527b3 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x306c65ce arp_create +EXPORT_SYMBOL vmlinux 0x306e8b1e proc_create +EXPORT_SYMBOL vmlinux 0x308f2102 dma_map_resource +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a37cf0 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f620cd phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x3103d2e4 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x310f8396 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x3114a1b0 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x31165746 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x31298238 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x313009e0 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x31359a8f jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x314faa52 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x3153df37 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x31646d02 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x316be539 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31cfaaa0 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x31d9b071 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x31f1edca vfs_rename +EXPORT_SYMBOL vmlinux 0x31f2778b pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x31fe498e netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x321afe70 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x324d30bd of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x324e7de7 drop_nlink +EXPORT_SYMBOL vmlinux 0x3251e780 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x3258a577 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x32671755 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x32749c72 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32897f5d pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x3289fa6c inet_offloads +EXPORT_SYMBOL vmlinux 0x32a7640d pneigh_lookup +EXPORT_SYMBOL vmlinux 0x32ac2d6c of_n_size_cells +EXPORT_SYMBOL vmlinux 0x32af86dd __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32d8503a kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32eee245 set_disk_ro +EXPORT_SYMBOL vmlinux 0x32eee9d5 filp_open +EXPORT_SYMBOL vmlinux 0x32fd3782 serio_open +EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl +EXPORT_SYMBOL vmlinux 0x33131e11 sock_i_uid +EXPORT_SYMBOL vmlinux 0x3319a1aa pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x3333ef12 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down +EXPORT_SYMBOL vmlinux 0x335d1465 security_sb_remount +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x33797fe8 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x338b6ded __find_get_block +EXPORT_SYMBOL vmlinux 0x33a266b5 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x33bee43a nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x33d86663 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x33db3972 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x33dcb07c security_inet_conn_established +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 0x3410d2c8 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x341bed8d nlmsg_notify +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x3425bac3 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x344c64e0 pci_get_class +EXPORT_SYMBOL vmlinux 0x34770094 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x34869fbc tcf_action_exec +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34b3c181 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x34bd84aa pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34cf5fd5 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x34d23a36 dev_add_pack +EXPORT_SYMBOL vmlinux 0x34e8a06f tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger +EXPORT_SYMBOL vmlinux 0x34fc9439 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3539c802 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x354720d0 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x3547b2d3 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace +EXPORT_SYMBOL vmlinux 0x355f2558 ip6_xmit +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x357654b6 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x357c78cc devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3582fe91 padata_do_serial +EXPORT_SYMBOL vmlinux 0x358cc630 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x358f6aef module_put +EXPORT_SYMBOL vmlinux 0x359b73ff __sock_i_ino +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35c3ed0d of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x35ca7e06 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x35d03b6e pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x35e3e8d1 uart_register_driver +EXPORT_SYMBOL vmlinux 0x35ef6299 file_update_time +EXPORT_SYMBOL vmlinux 0x3607ff63 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x362573b1 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x3640aae4 write_one_page +EXPORT_SYMBOL vmlinux 0x3643a9a9 sock_no_recvmsg +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 0x36602e0d page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x366c718c reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x367b0784 vfs_create +EXPORT_SYMBOL vmlinux 0x367c57ca user_path_at_empty +EXPORT_SYMBOL vmlinux 0x368b8e6b flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x3699937d devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36cc78ce crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x36ea7ec7 inet6_protos +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x372058cb acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x3730f30e cdrom_check_events +EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x375b2d31 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0x377abd59 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x3786a6a7 d_delete +EXPORT_SYMBOL vmlinux 0x37894c46 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x379dbffc __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x37ab3158 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c4d8a2 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x38156426 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38287eed xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x3836f4c4 param_set_charp +EXPORT_SYMBOL vmlinux 0x384ef81f phy_device_remove +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x3868ff77 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x3873de2b of_find_compatible_node +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 0x3894d489 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x389524ea dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x389e4ebe netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b2687f vc_resize +EXPORT_SYMBOL vmlinux 0x38b74a0e nd_integrity_init +EXPORT_SYMBOL vmlinux 0x38d0328e netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38eef0a6 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x38f9211c nf_setsockopt +EXPORT_SYMBOL vmlinux 0x390d469e page_pool_destroy +EXPORT_SYMBOL vmlinux 0x3913e9e1 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x39147be8 d_exact_alias +EXPORT_SYMBOL vmlinux 0x3914c606 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x394cb5f6 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x397078b6 nd_dax_probe +EXPORT_SYMBOL vmlinux 0x397af5ed vlan_for_each +EXPORT_SYMBOL vmlinux 0x3983b55f fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x3996b0cf dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a9187f pci_iomap_range +EXPORT_SYMBOL vmlinux 0x39aaa057 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b61bd9 nf_log_set +EXPORT_SYMBOL vmlinux 0x39b8d49c cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue +EXPORT_SYMBOL vmlinux 0x39d6fae6 fc_eh_timed_out +EXPORT_SYMBOL vmlinux 0x39d72c0c ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x39f2bb4f xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a1ee88f of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a313237 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a61961a dump_align +EXPORT_SYMBOL vmlinux 0x3a65f16e key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x3a835df8 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ad16c3f devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b03551e __ip_options_compile +EXPORT_SYMBOL vmlinux 0x3b0d47a6 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma +EXPORT_SYMBOL vmlinux 0x3b13c724 tty_port_init +EXPORT_SYMBOL vmlinux 0x3b1f336f inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b4138e9 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x3b4bda86 add_to_pipe +EXPORT_SYMBOL vmlinux 0x3b550d7b fs_param_is_path +EXPORT_SYMBOL vmlinux 0x3b61274e pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b8825cd vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3b9ff007 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x3baf188d pcim_pin_device +EXPORT_SYMBOL vmlinux 0x3bcbfb3a mdio_find_bus +EXPORT_SYMBOL vmlinux 0x3bd175e1 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x3be1bcf4 param_set_short +EXPORT_SYMBOL vmlinux 0x3be4c5a4 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bfc71cc __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x3c019aad pci_find_resource +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c30ffbe ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c38b29d vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c41135c inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x3c4cf9b4 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x3c5144f1 cdev_device_add +EXPORT_SYMBOL vmlinux 0x3c574cae d_invalidate +EXPORT_SYMBOL vmlinux 0x3c5756b1 tty_hangup +EXPORT_SYMBOL vmlinux 0x3c641f62 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x3c6f4271 security_path_unlink +EXPORT_SYMBOL vmlinux 0x3c75c1a9 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x3c94a436 netlink_ack +EXPORT_SYMBOL vmlinux 0x3c9b612c dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw +EXPORT_SYMBOL vmlinux 0x3ce1200c inet6_offloads +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce87977 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x3cf5dd97 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d03b5a2 vme_irq_free +EXPORT_SYMBOL vmlinux 0x3d04b21b __put_user_ns +EXPORT_SYMBOL vmlinux 0x3d0a1122 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d440270 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d5a9c15 __phy_resume +EXPORT_SYMBOL vmlinux 0x3d6bbaba dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x3d7ba8d0 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check +EXPORT_SYMBOL vmlinux 0x3d9a81e0 serio_rescan +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +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 0x3dc0cad3 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dc6fcd3 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x3dc7f176 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd3f054 xudma_rchan_get_id +EXPORT_SYMBOL vmlinux 0x3dd7fa63 kill_block_super +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3de1ba27 input_register_handler +EXPORT_SYMBOL vmlinux 0x3df08514 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x3df4473a vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0836f8 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e550325 d_find_alias +EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc +EXPORT_SYMBOL vmlinux 0x3ea0fdb3 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x3eb28193 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x3eb6fa85 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x3eb9b4fa netif_device_detach +EXPORT_SYMBOL vmlinux 0x3ec1c055 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x3ee6228f to_nd_btt +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0784e4 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x3f07d52c framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f306d3c napi_gro_flush +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f545cad cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x3f6c2672 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x3f6ca9bc tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x3f6e556e blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x3f77bf5b finish_swait +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f90dd76 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x3fbe4934 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x3fbef94e filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc9163e fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x3fca76a7 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x3fce046c iommu_put_dma_cookie +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fdaa40e sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fe6b589 vga_get +EXPORT_SYMBOL vmlinux 0x3fe967f2 input_register_handle +EXPORT_SYMBOL vmlinux 0x3ff1f984 input_register_device +EXPORT_SYMBOL vmlinux 0x400a50d8 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x4049cb75 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x4053a99c inet_frag_find +EXPORT_SYMBOL vmlinux 0x40561495 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x4066c2ba vm_map_ram +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c39289 clk_get +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c85a5b kfree_skb_list +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x40e397b5 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x40f37b03 nla_reserve +EXPORT_SYMBOL vmlinux 0x40f3b0e7 inet6_bind +EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc +EXPORT_SYMBOL vmlinux 0x40f9d44f tcp_release_cb +EXPORT_SYMBOL vmlinux 0x41064d5c param_set_hexint +EXPORT_SYMBOL vmlinux 0x411eb302 of_device_unregister +EXPORT_SYMBOL vmlinux 0x412c2825 __lock_buffer +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x41478811 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x4147ca31 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414a9e3f jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue +EXPORT_SYMBOL vmlinux 0x4156edbf udp_pre_connect +EXPORT_SYMBOL vmlinux 0x417a8dae bdi_put +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418abed4 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x418e4ab9 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x41974a1a dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x41b3b31f filemap_flush +EXPORT_SYMBOL vmlinux 0x41c0b331 get_vm_area +EXPORT_SYMBOL vmlinux 0x41c4dcfd tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41f1288d get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x42090bbe gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x420a7df0 set_binfmt +EXPORT_SYMBOL vmlinux 0x420f2a8f pcim_enable_device +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x42167f9a blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x42373dd9 _dev_info +EXPORT_SYMBOL vmlinux 0x4240b54e __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x42429d26 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424ae2c4 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x4255bccd arp_tbl +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x425d0d71 ps2_end_command +EXPORT_SYMBOL vmlinux 0x426203e4 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x42a4e8a9 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x42b447f5 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42d3faa3 input_inject_event +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42fe958b devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430e22a9 vfs_mknod +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x43385f43 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x433fee27 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x435a880f napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x4393f467 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x439b5a77 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x439ecaa9 phy_attached_info +EXPORT_SYMBOL vmlinux 0x43a8ae6b fman_register_intr +EXPORT_SYMBOL vmlinux 0x43b45f57 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x43bb109c __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x43c0fe3f fc_release_transport +EXPORT_SYMBOL vmlinux 0x43c38739 inet_accept +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43f9e7b2 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x4405f101 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x441039a1 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x4419cab8 devm_ioremap +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x4451ec8e netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x4469473a param_ops_byte +EXPORT_SYMBOL vmlinux 0x446decfa sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x446f581e security_sock_graft +EXPORT_SYMBOL vmlinux 0x449855d4 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44b8dddf dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x44bbfaf4 tcp_check_req +EXPORT_SYMBOL vmlinux 0x44c51fa4 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x44cb1a37 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x44e5d9e0 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f5f3ff drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45038ad4 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range +EXPORT_SYMBOL vmlinux 0x45297b98 sock_no_getname +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45522582 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x456f3589 elv_rb_find +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x459bd50b udp_read_sock +EXPORT_SYMBOL vmlinux 0x45b21420 framebuffer_release +EXPORT_SYMBOL vmlinux 0x45c6a164 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x45cba151 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x45cce0bb devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x45d1d3a6 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x4601003e mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x46025df8 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x461e86f7 nf_log_register +EXPORT_SYMBOL vmlinux 0x465731b5 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x46680161 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x468c4e27 nvdimm_namespace_detach_btt +EXPORT_SYMBOL vmlinux 0x468e0750 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46d6e978 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x46e22811 inode_permission +EXPORT_SYMBOL vmlinux 0x46f0ecbb ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x46f57812 fget_raw +EXPORT_SYMBOL vmlinux 0x46ff7d12 qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x470612dc fman_port_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x472e479e pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x4741edc1 vme_lm_request +EXPORT_SYMBOL vmlinux 0x47490b2a sock_bind_add +EXPORT_SYMBOL vmlinux 0x474db375 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom +EXPORT_SYMBOL vmlinux 0x475e37fc kill_litter_super +EXPORT_SYMBOL vmlinux 0x4770943a vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x477595f8 current_time +EXPORT_SYMBOL vmlinux 0x477d34aa pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x478246cb jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x47a956e1 jbd2_journal_stop +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 0x47da6517 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x47dc4b1e dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x481624e8 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb +EXPORT_SYMBOL vmlinux 0x48385ee5 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x48747c3c eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x48899ff5 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x489d5a83 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x489eda10 memset32 +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a1c31c tcf_block_get +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b78844 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x48b7e796 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48c1e51b dquot_drop +EXPORT_SYMBOL vmlinux 0x48ca4a18 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x48f11830 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x492126f0 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x49337410 security_path_mknod +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x4955164a follow_down +EXPORT_SYMBOL vmlinux 0x4960d537 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x49652647 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x4967a09e __bread_gfp +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x49788d31 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a03b60 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x49ada3a8 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49bd997d dev_get_by_name +EXPORT_SYMBOL vmlinux 0x49cec53a fman_set_port_params +EXPORT_SYMBOL vmlinux 0x49d24bc8 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x49e85715 thaw_super +EXPORT_SYMBOL vmlinux 0x49fff496 lock_page_memcg +EXPORT_SYMBOL vmlinux 0x4a316e1f eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x4a372e03 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a4173e9 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x4a4f2ea6 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x4a743fac iget_failed +EXPORT_SYMBOL vmlinux 0x4a7c045e simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4aa20d06 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x4ab40e6b set_page_dirty +EXPORT_SYMBOL vmlinux 0x4ab8dc9b jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x4ae66ae4 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4aec2333 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4af830c0 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities +EXPORT_SYMBOL vmlinux 0x4b0b646d page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x4b14d056 skb_checksum +EXPORT_SYMBOL vmlinux 0x4b15365e request_firmware +EXPORT_SYMBOL vmlinux 0x4b1f7f46 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x4b345564 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x4b3ed01f nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x4b40752f skb_unlink +EXPORT_SYMBOL vmlinux 0x4b5b8554 iterate_fd +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg +EXPORT_SYMBOL vmlinux 0x4b78478a pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x4b9035e9 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x4b929d2c xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x4bab9f6d get_task_cred +EXPORT_SYMBOL vmlinux 0x4bc43615 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x4bcc184c pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bd68f93 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x4bda8899 devfreq_update_status +EXPORT_SYMBOL vmlinux 0x4be90a72 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c0d997c d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x4c2fdea7 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x4c303f1a genphy_update_link +EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c3d1b4d param_get_string +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c423555 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x4c502e2f jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x4c6d3910 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x4c874c2c vfs_getattr +EXPORT_SYMBOL vmlinux 0x4c9be885 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cbdcd79 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x4cc87838 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x4ce4ac8b netlink_net_capable +EXPORT_SYMBOL vmlinux 0x4cef2e3f sock_no_listen +EXPORT_SYMBOL vmlinux 0x4cf4686d seq_dentry +EXPORT_SYMBOL vmlinux 0x4d0a2590 seq_read_iter +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d1fe2ab pci_request_regions +EXPORT_SYMBOL vmlinux 0x4d21e4e7 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d34a97f show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d7d66e0 param_get_ullong +EXPORT_SYMBOL vmlinux 0x4d80b7ac __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq +EXPORT_SYMBOL vmlinux 0x4da71569 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x4daa6c8a simple_fill_super +EXPORT_SYMBOL vmlinux 0x4db4c4f0 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4df9cc44 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock +EXPORT_SYMBOL vmlinux 0x4e16f630 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e259865 __cleancache_init_fs +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 0x4e389689 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e5d5c4e __dquot_free_space +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ea589ad phy_device_create +EXPORT_SYMBOL vmlinux 0x4eaa81e8 tcp_mmap +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ed32a14 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x4ee273ca xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x4eed31f8 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1f7b23 ppp_input +EXPORT_SYMBOL vmlinux 0x4f21dcf9 __block_write_begin +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f226c71 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x4f264cab mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x4f30b1d3 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x4f4571c0 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x4f4a4678 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f6cd1ed dev_uc_del +EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x4f82ab83 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x4f88a865 vfs_fsync +EXPORT_SYMBOL vmlinux 0x4f96b82c bioset_exit +EXPORT_SYMBOL vmlinux 0x4f9a4573 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x4f9a47d9 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x4fcf1371 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x4ff99363 nf_register_queue_handler +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 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x5038ffd9 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x50421273 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x504228de seq_bprintf +EXPORT_SYMBOL vmlinux 0x5045413b csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x5046877a unregister_console +EXPORT_SYMBOL vmlinux 0x504ba6bb pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x5061dc46 of_device_alloc +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x5078b6a8 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a02bfb remove_arg_zero +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50e0cdd7 fb_find_mode +EXPORT_SYMBOL vmlinux 0x50e376ff pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x511746f5 ip_output +EXPORT_SYMBOL vmlinux 0x511d98d8 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x51389f59 md_write_start +EXPORT_SYMBOL vmlinux 0x513eb3e1 release_pages +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x51525861 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x51557ac3 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x515d9c39 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x519d3ed6 padata_free +EXPORT_SYMBOL vmlinux 0x51ab5185 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x51fe9eb0 input_reset_device +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x522af093 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x522ff60d clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x52302204 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x52755f59 from_kgid +EXPORT_SYMBOL vmlinux 0x5279a9eb end_page_writeback +EXPORT_SYMBOL vmlinux 0x5287104d get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x528ce3ac pagecache_write_end +EXPORT_SYMBOL vmlinux 0x528f6f35 write_inode_now +EXPORT_SYMBOL vmlinux 0x5295429c blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a102b6 napi_complete_done +EXPORT_SYMBOL vmlinux 0x52ab9804 noop_qdisc +EXPORT_SYMBOL vmlinux 0x52b6c33a tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x52cfc656 __f_setown +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52da9a93 open_exec +EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x52f39a98 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53117035 skb_store_bits +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x5328390f mdio_device_reset +EXPORT_SYMBOL vmlinux 0x533206b5 sort_r +EXPORT_SYMBOL vmlinux 0x53327131 cdev_device_del +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x5353549f napi_gro_receive +EXPORT_SYMBOL vmlinux 0x535d2f61 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x5371592a pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x537e8c50 get_acl +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53d0deb1 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x53e214b5 bh_submit_read +EXPORT_SYMBOL vmlinux 0x53e50ffa first_ec +EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align +EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0x53ffa3a4 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair +EXPORT_SYMBOL vmlinux 0x5415f205 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x54174009 __register_chrdev +EXPORT_SYMBOL vmlinux 0x541e71a7 pci_release_resource +EXPORT_SYMBOL vmlinux 0x542b7bb5 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x543b5697 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5457a73b security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x5460d15e unregister_binfmt +EXPORT_SYMBOL vmlinux 0x5466ed7d lookup_one_len +EXPORT_SYMBOL vmlinux 0x546ca90a pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x5479a668 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x5479ad83 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x5481a047 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x54934b6b migrate_page_copy +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54baa6f5 vfs_llseek +EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x54cfdd99 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x54cffda2 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x5502b408 set_user_nice +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire +EXPORT_SYMBOL vmlinux 0x551a912d register_shrinker +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested +EXPORT_SYMBOL vmlinux 0x552f95c5 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x552ffac7 single_release +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x555dae33 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x556c334a unregister_quota_format +EXPORT_SYMBOL vmlinux 0x556faefa tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x5583cb82 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x5585afbd fman_unregister_intr +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x559f6846 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x55b90881 cdev_del +EXPORT_SYMBOL vmlinux 0x55bd8672 ip_tunnel_get_iflink +EXPORT_SYMBOL vmlinux 0x55bdd2c4 bio_copy_data +EXPORT_SYMBOL vmlinux 0x55c8b060 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55f729fc phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x55ff5c93 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x560a148f console_start +EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh +EXPORT_SYMBOL vmlinux 0x56181513 param_ops_bint +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x5650e150 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x565a14a6 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x565e6f1d touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x566c4fbc ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x567d4554 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x568b9cf4 kernel_listen +EXPORT_SYMBOL vmlinux 0x5696faa4 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x5697bb3d pcim_iomap +EXPORT_SYMBOL vmlinux 0x569ebfa4 wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0x56c02935 acpi_register_debugger +EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x56c4a909 kill_pgrp +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cd01bc scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x56dccf7e __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x56e50767 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x56fa0ee8 __inet_hash +EXPORT_SYMBOL vmlinux 0x5707b41b module_layout +EXPORT_SYMBOL vmlinux 0x570a0faf configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x570a3aaf pci_dev_driver +EXPORT_SYMBOL vmlinux 0x572a5853 dev_addr_del +EXPORT_SYMBOL vmlinux 0x5737d1ca jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x5759e920 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57819c14 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x5785f701 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57960b67 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x57b46d5c param_get_short +EXPORT_SYMBOL vmlinux 0x57b72903 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57dcd989 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x57e0565f simple_lookup +EXPORT_SYMBOL vmlinux 0x57e37fa5 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x581766db pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583fac38 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x58423c13 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x584ea900 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x5859cf5f writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic +EXPORT_SYMBOL vmlinux 0x5860ec5d zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x58726380 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x587646da pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x588b9823 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x5893748e key_payload_reserve +EXPORT_SYMBOL vmlinux 0x58aa0e85 dma_resv_init +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58ba22c3 mpage_writepage +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58ec94fe jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x58ef9cf7 vfs_statfs +EXPORT_SYMBOL vmlinux 0x590635ee I_BDEV +EXPORT_SYMBOL vmlinux 0x591da9bb iterate_supers_type +EXPORT_SYMBOL vmlinux 0x5922a7ae dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x59259b26 mmput_async +EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq +EXPORT_SYMBOL vmlinux 0x5953f5c3 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x595a8754 del_gendisk +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5968211c pci_restore_state +EXPORT_SYMBOL vmlinux 0x5970cba6 skb_dequeue +EXPORT_SYMBOL vmlinux 0x59804896 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x59808367 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59a53baa md_error +EXPORT_SYMBOL vmlinux 0x59a6207d inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x59a7a1de devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x59b3df8a mount_single +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59ba49c5 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x59bc92dd of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x59f9aeb7 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x5a0b01ca dquot_quota_off +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a103d15 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a2919e8 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x5a2da5a9 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x5a31bc70 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 +EXPORT_SYMBOL vmlinux 0x5a8221f9 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x5a849517 netdev_features_change +EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5a9e02cd secpath_set +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5ac96088 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x5ad04f58 d_instantiate +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5b007791 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x5b21d09e kobject_set_name +EXPORT_SYMBOL vmlinux 0x5b24c8ae __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x5b2c0a64 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b353977 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b3f7aa8 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x5b48c012 bio_endio +EXPORT_SYMBOL vmlinux 0x5b522d59 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x5b5319d2 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5cfb19 devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x5b629e71 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x5b8c9eca ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x5b98abc0 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x5b9c9159 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x5b9ef896 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x5b9f403f vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x5ba1fcd5 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x5ba4ff80 filemap_fault +EXPORT_SYMBOL vmlinux 0x5ba8945a kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x5bb78a15 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x5bbea91d udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x5bbf77ef in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bec4804 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x5bfe0c15 fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0x5c067462 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x5c068bff tcf_block_put +EXPORT_SYMBOL vmlinux 0x5c07cc7b blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x5c14172f inet_ioctl +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c2a0d4e skb_queue_purge +EXPORT_SYMBOL vmlinux 0x5c2afeb3 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c408d3a tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0x5c7ddb7c inet_select_addr +EXPORT_SYMBOL vmlinux 0x5c995beb pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x5cce4d5e unregister_md_personality +EXPORT_SYMBOL vmlinux 0x5ce2aed8 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x5ce685c4 tcf_register_action +EXPORT_SYMBOL vmlinux 0x5cf0db87 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x5cf3d2ee get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf61b69 dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio +EXPORT_SYMBOL vmlinux 0x5d141c96 vm_event_states +EXPORT_SYMBOL vmlinux 0x5d360e11 simple_open +EXPORT_SYMBOL vmlinux 0x5d45ac05 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x5d46300c wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d62d6ec pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x5d7570db kernel_param_lock +EXPORT_SYMBOL vmlinux 0x5d9216a5 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x5d9d7a9e xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x5da48d1b __alloc_pages +EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh +EXPORT_SYMBOL vmlinux 0x5db22885 amba_driver_register +EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e101af5 clear_nlink +EXPORT_SYMBOL vmlinux 0x5e255b1a sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x5e2d409d genlmsg_put +EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e45360b of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x5e471d2c pcie_get_mps +EXPORT_SYMBOL vmlinux 0x5e4966a9 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x5e5bb78a phy_start +EXPORT_SYMBOL vmlinux 0x5e66d7c9 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e7364d4 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x5e7747da super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x5e81fcea tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e858358 put_cmsg +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9debba vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x5ea731a7 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x5eaa3a77 sk_stream_kill_queues +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 0x5ed90adc int_to_scsilun +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 0x5efe543a do_splice_direct +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0b546d security_d_instantiate +EXPORT_SYMBOL vmlinux 0x5f1a3f42 proc_mkdir +EXPORT_SYMBOL vmlinux 0x5f53e5d2 give_up_console +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f57f7cf inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x5f5f5c19 tty_port_close +EXPORT_SYMBOL vmlinux 0x5f73c688 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5f7b1da5 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x5f889155 dma_pool_create +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0x5fb44563 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x5fbfef02 param_ops_string +EXPORT_SYMBOL vmlinux 0x5fc0e036 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fd73e7c tcp_child_process +EXPORT_SYMBOL vmlinux 0x5fe560d1 ip_tunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x5fed178c meson_sm_call +EXPORT_SYMBOL vmlinux 0x5ff109b2 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x5ffa6378 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x6062c5f9 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x6074b98f nf_log_unregister +EXPORT_SYMBOL vmlinux 0x607af3e2 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x607b0ac9 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60b779b5 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60ee4c3f pnp_start_dev +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x6150d493 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x6154df2a nd_btt_version +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge +EXPORT_SYMBOL vmlinux 0x6179984c generic_update_time +EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x617eccac make_bad_inode +EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x6192211a noop_llseek +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x619e359e has_capability +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bafb16 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x61bea481 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x61ce9100 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621e5cad md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6232ace9 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x6233fa54 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x6237b1f4 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x62389249 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x62494b49 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x625ad5c2 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x62709bdf cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +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 0x62aa1f8d sk_wait_data +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62ce446c sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x630ad6b1 make_kgid +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x6333e4c4 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x63452098 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x63649c68 cdrom_release +EXPORT_SYMBOL vmlinux 0x636bc017 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63ba645c __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d44d8a security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x63e3273d devm_memremap +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ed984e input_set_capability +EXPORT_SYMBOL vmlinux 0x640e4fa8 f_setown +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x641a669b pci_pme_active +EXPORT_SYMBOL vmlinux 0x64235146 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x64314d58 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x643b472f pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x644490ef dentry_open +EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus +EXPORT_SYMBOL vmlinux 0x645172b0 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x64752f86 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x647f78f5 do_SAK +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x6484d61c frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x648a92de scsi_print_result +EXPORT_SYMBOL vmlinux 0x648adc7b config_group_init +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x648f0d9e poll_freewait +EXPORT_SYMBOL vmlinux 0x649162ae of_phy_find_device +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64d2f4ac md_finish_reshape +EXPORT_SYMBOL vmlinux 0x64d8fcaa of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x64dd7235 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x64fa5702 tty_name +EXPORT_SYMBOL vmlinux 0x6501dc32 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x651705db netif_carrier_on +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x6535c5d9 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x653c82ad uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654449c3 memset16 +EXPORT_SYMBOL vmlinux 0x656528a6 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65aa6048 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x65b1f783 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x65cd3875 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d3504d nvdimm_namespace_disk_name +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 0x66105cce tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x66332273 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x6638b50c inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr +EXPORT_SYMBOL vmlinux 0x664b8b48 vmbus_recvpacket +EXPORT_SYMBOL vmlinux 0x665c7bf7 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x66625f7d scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x66663330 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x666ceeca fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x66747e6d sock_create +EXPORT_SYMBOL vmlinux 0x668116f3 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc +EXPORT_SYMBOL vmlinux 0x6686eb1b inet_stream_connect +EXPORT_SYMBOL vmlinux 0x6689a5c6 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x669aff1b submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66e71e46 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x671aee18 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x671f4675 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x671fad8f input_unregister_device +EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x67478289 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x675d8136 kobject_del +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x678d4c46 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x6792442d blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x67a543f6 peernet2id +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67e368a6 __nla_reserve +EXPORT_SYMBOL vmlinux 0x67f02cfc __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x6803f891 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x68118588 scsi_is_fc_rport +EXPORT_SYMBOL vmlinux 0x68129c6b tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer +EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x68457741 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68a72a59 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x68ab4e90 md_check_recovery +EXPORT_SYMBOL vmlinux 0x68bc14dc jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x68be8a43 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x68bf4d23 single_open_size +EXPORT_SYMBOL vmlinux 0x68ce0f6a crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x68d093d0 uart_match_port +EXPORT_SYMBOL vmlinux 0x68e6a9df devm_request_resource +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x69043547 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x69113565 block_write_begin +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x69207924 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x692c4948 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x693bbf2f jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x693cfeb0 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x69995d2f dev_uc_init +EXPORT_SYMBOL vmlinux 0x69af3af2 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x69b6fb06 eth_header_parse +EXPORT_SYMBOL vmlinux 0x69b907ef ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x69d91cdc bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x69dd15a3 configfs_register_group +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69ea2fea rpmh_write_batch +EXPORT_SYMBOL vmlinux 0x69f38847 cpu_hwcap_keys +EXPORT_SYMBOL vmlinux 0x69fde15e tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a07dfad skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x6a1af34a iproc_msi_exit +EXPORT_SYMBOL vmlinux 0x6a223340 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x6a359c2c phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x6a369759 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe +EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a530c84 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5d9b65 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a6b58e8 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x6a6be0e4 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a74e1e6 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x6a901030 vm_mmap +EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aaa59fd qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x6aad1c86 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x6ab17bad netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x6ad1c36c skb_queue_head +EXPORT_SYMBOL vmlinux 0x6ad6b99d __ip_select_ident +EXPORT_SYMBOL vmlinux 0x6ad75388 nobh_writepage +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aed85e2 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6afcf8bd dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x6b1a1aeb udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b31da03 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x6b441108 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b586fb2 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x6b76e220 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b9620b6 bdi_register +EXPORT_SYMBOL vmlinux 0x6bad36fa vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x6bbab0e8 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6be604df page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6bf9321a jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x6c202fb2 qdisc_reset +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c264cb2 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x6c30f360 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x6c36defe tty_unlock +EXPORT_SYMBOL vmlinux 0x6c38e645 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x6c419ff0 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x6c52dd41 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x6c57bf8c skb_copy +EXPORT_SYMBOL vmlinux 0x6c5992cf simple_transaction_read +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c685fbc netdev_state_change +EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6c8b6584 key_type_keyring +EXPORT_SYMBOL vmlinux 0x6ca6a288 flush_signals +EXPORT_SYMBOL vmlinux 0x6cb108a3 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cb9d83a ip6_output +EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user +EXPORT_SYMBOL vmlinux 0x6cbcad46 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x6cc4fd38 vm_insert_page +EXPORT_SYMBOL vmlinux 0x6ce78419 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6cf3b039 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x6cfa062a clk_add_alias +EXPORT_SYMBOL vmlinux 0x6cfbeb37 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x6d130d4f qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d1ea60e secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d4d31c0 read_cache_pages +EXPORT_SYMBOL vmlinux 0x6d4f4edd __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0x6d5283b4 _dev_warn +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d635e61 blk_queue_split +EXPORT_SYMBOL vmlinux 0x6d6ce340 inode_init_once +EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d8e78b5 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory +EXPORT_SYMBOL vmlinux 0x6dabfec2 of_device_get_match_data +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 0x6dd59d44 get_cached_acl +EXPORT_SYMBOL vmlinux 0x6ddc5c96 unregister_nls +EXPORT_SYMBOL vmlinux 0x6de9b888 ram_aops +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6dfad47a of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x6e06850c fb_class +EXPORT_SYMBOL vmlinux 0x6e2c9582 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x6e452731 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x6e472751 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x6e48004e lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x6e4e222a input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e6b1a1d xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x6e6e905e dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x6e6ff60b finalize_exec +EXPORT_SYMBOL vmlinux 0x6e702e9c vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e76006e kill_pid +EXPORT_SYMBOL vmlinux 0x6e78d5df udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x6e81a95b ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea5d2e8 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ecfec57 sk_common_release +EXPORT_SYMBOL vmlinux 0x6eedea33 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x6f17d30b dev_change_carrier +EXPORT_SYMBOL vmlinux 0x6f1f209a setattr_should_drop_sgid +EXPORT_SYMBOL vmlinux 0x6f352999 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f4c9d31 pci_find_capability +EXPORT_SYMBOL vmlinux 0x6f50dcf2 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x6f539631 rtnl_notify +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f60e99b call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x6f654841 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x6f674d0c netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x6f683cb4 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x6f85b232 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6f99de09 key_alloc +EXPORT_SYMBOL vmlinux 0x6f9b89ae sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fbb5a6a dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fc257dc tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fcf3b51 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x6fdd399d scsi_print_command +EXPORT_SYMBOL vmlinux 0x6ffa2f8a textsearch_destroy +EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x702200b8 ip_defrag +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x70251535 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x7045c352 iov_iter_init +EXPORT_SYMBOL vmlinux 0x704bd1fb udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x7055ea1d device_add_disk +EXPORT_SYMBOL vmlinux 0x705d0f52 of_get_property +EXPORT_SYMBOL vmlinux 0x7078549c devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70cdd695 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x70d083f0 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool +EXPORT_SYMBOL vmlinux 0x70e3ee35 padata_free_shell +EXPORT_SYMBOL vmlinux 0x70f262ec dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x7101424b security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x711452cd md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x71275c08 dcb_getapp +EXPORT_SYMBOL vmlinux 0x71281f08 page_readlink +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x7161433a no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71816e39 page_mapping +EXPORT_SYMBOL vmlinux 0x71857bc7 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x719b8314 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71ae8237 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x71b59f30 tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0x71bdb2ec genphy_suspend +EXPORT_SYMBOL vmlinux 0x71c4aedd vme_bus_num +EXPORT_SYMBOL vmlinux 0x71d36172 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x71da64f9 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x720bf1d7 generic_fadvise +EXPORT_SYMBOL vmlinux 0x721075c2 __neigh_create +EXPORT_SYMBOL vmlinux 0x7216b777 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x7257bce6 nvdimm_namespace_attach_btt +EXPORT_SYMBOL vmlinux 0x725bcabc phy_init_hw +EXPORT_SYMBOL vmlinux 0x7260b271 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x7263ad0b rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x7278d7f2 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x729e49e6 pci_set_master +EXPORT_SYMBOL vmlinux 0x72a1ff05 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72a81d1b blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x72b23ea8 fman_get_mem_region +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72d1f4f5 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x72dfcc7c __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x72f84182 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x73020dc8 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x7303323d xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x7338f72a skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x73426229 no_llseek +EXPORT_SYMBOL vmlinux 0x7349e832 sock_from_file +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x73603e4f ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x73783aa7 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x7393e398 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x7394a21d elv_bio_merge_ok +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 0x73c2d784 param_get_ushort +EXPORT_SYMBOL vmlinux 0x73e1b3ab netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x7404ef53 mdiobus_free +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x742ff999 of_node_name_eq +EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init +EXPORT_SYMBOL vmlinux 0x744baca8 cdev_init +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x747492fa devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x7475917f kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x74809e92 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x7485c2d4 skb_push +EXPORT_SYMBOL vmlinux 0x748eb4ae skb_ext_add +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74bbbe1f reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74fc0a2f textsearch_unregister +EXPORT_SYMBOL vmlinux 0x750e5a8c tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x751ef7b2 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x7533eb2d km_policy_notify +EXPORT_SYMBOL vmlinux 0x7544c61a devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x75459364 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x75546107 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x755b78c6 meson_sm_call_write +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x755fdc74 param_set_byte +EXPORT_SYMBOL vmlinux 0x756ef388 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x7570fd4c ata_print_version +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x7590177c param_get_uint +EXPORT_SYMBOL vmlinux 0x759a7507 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x759ab63a pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x75b1e630 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x75b25131 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75cd7d7b inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75e8e8ca fb_get_mode +EXPORT_SYMBOL vmlinux 0x75e99e87 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760d8cad wake_up_process +EXPORT_SYMBOL vmlinux 0x7613cc33 freeze_super +EXPORT_SYMBOL vmlinux 0x76156346 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x7630480f vmbus_sendpacket_getid +EXPORT_SYMBOL vmlinux 0x76308048 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x7631c1f1 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x76464a04 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x76689ee3 param_set_ushort +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x7689409b refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x76917f10 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x7694cad0 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x76992035 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a1fd96 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x76c6ae22 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76e0855c tcp_connect +EXPORT_SYMBOL vmlinux 0x76e85a62 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x76ef7c7e debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x76f361b2 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x76f43b64 zap_page_range +EXPORT_SYMBOL vmlinux 0x7702ee38 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x7715165f kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x771c7bba skb_find_text +EXPORT_SYMBOL vmlinux 0x77281a0c flow_rule_match_enc_control +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 0x774e613a dev_close +EXPORT_SYMBOL vmlinux 0x77533503 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x7760c223 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 +EXPORT_SYMBOL vmlinux 0x776d02c6 phy_device_free +EXPORT_SYMBOL vmlinux 0x777a47ff override_creds +EXPORT_SYMBOL vmlinux 0x7787b8df jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x7787c470 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x77a1b97b dst_discard_out +EXPORT_SYMBOL vmlinux 0x77b0e875 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d48a46 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f8e0c3 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x78251d6c key_validate +EXPORT_SYMBOL vmlinux 0x782c5d8a unregister_netdev +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x784d8f12 alloc_pages_vma +EXPORT_SYMBOL vmlinux 0x78551b07 simple_release_fs +EXPORT_SYMBOL vmlinux 0x78649576 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x78699285 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788e8344 serio_bus +EXPORT_SYMBOL vmlinux 0x789115b9 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78b27ba0 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78ffa91e xp_dma_map +EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7914acb5 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x792428af fc_vport_create +EXPORT_SYMBOL vmlinux 0x7925ce30 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x793a83e0 skb_clone +EXPORT_SYMBOL vmlinux 0x796c6525 elevator_alloc +EXPORT_SYMBOL vmlinux 0x796e0dc8 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x799753e5 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x79a2fd5a kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa7b3e set_create_files_as +EXPORT_SYMBOL vmlinux 0x79c70ad0 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x79cdbb7c __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug +EXPORT_SYMBOL vmlinux 0x79f25c82 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x79fee7a4 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x7a098104 input_allocate_device +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a254ca8 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x7a29feb0 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a2f82f6 dma_find_channel +EXPORT_SYMBOL vmlinux 0x7a423183 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x7a459859 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a57581f generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x7a70b301 pci_request_irq +EXPORT_SYMBOL vmlinux 0x7a7731ab _copy_from_iter +EXPORT_SYMBOL vmlinux 0x7a82d404 phy_print_status +EXPORT_SYMBOL vmlinux 0x7a953bfc __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7aa00ebe mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa86619 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x7aafff41 pps_event +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 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7ae784a9 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x7b147610 fc_block_rport +EXPORT_SYMBOL vmlinux 0x7b211dbe netdev_emerg +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b5333c1 of_graph_is_present +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b80fa55 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7ba569af sock_pfree +EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7baf660e sock_no_mmap +EXPORT_SYMBOL vmlinux 0x7baf9429 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x7bafd546 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bc0da2a d_tmpfile +EXPORT_SYMBOL vmlinux 0x7bcb3b49 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x7bcbacf9 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x7bcd96e9 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x7be2a149 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x7bf4670f inet_addr_type +EXPORT_SYMBOL vmlinux 0x7bfd201e mr_table_dump +EXPORT_SYMBOL vmlinux 0x7bffe7b6 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1f85b5 _dev_alert +EXPORT_SYMBOL vmlinux 0x7c2b7066 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x7c2cad36 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x7c3f4075 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x7c40fa41 import_single_range +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c4722ef of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x7c4c6b70 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x7c716d88 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x7c8709fa __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x7c99c355 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7caf54e0 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cb7d156 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x7ccef327 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x7cd86d17 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cfaed25 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x7cfc25c1 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d05b357 generic_fill_statx_attr +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 0x7d46ee98 security_path_rename +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d7ae827 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x7d802567 edac_mc_find +EXPORT_SYMBOL vmlinux 0x7d9fb17d flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dc18e9d tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x7dcd6398 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7ded5d2b param_ops_charp +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df8add8 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x7e25662c __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e324154 param_get_ulong +EXPORT_SYMBOL vmlinux 0x7e49c116 iunique +EXPORT_SYMBOL vmlinux 0x7e603f63 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x7e611332 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x7e786c0d xfrm_state_add +EXPORT_SYMBOL vmlinux 0x7e7a5b44 from_kuid +EXPORT_SYMBOL vmlinux 0x7e806062 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x7e88a63c redraw_screen +EXPORT_SYMBOL vmlinux 0x7e89918d sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x7e8c7e5c ip_tunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x7e929af0 of_device_is_available +EXPORT_SYMBOL vmlinux 0x7eb14a22 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x7eda3b0c __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x7eda90f5 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x7edcce92 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x7eeb7c98 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x7ef5ebe3 mode_strip_sgid +EXPORT_SYMBOL vmlinux 0x7ef6f0c7 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x7efba19b __module_get +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f1ae98d devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x7f1b706d inet_add_offload +EXPORT_SYMBOL vmlinux 0x7f216dcb dquot_commit +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f33ae80 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x7f49b1c5 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5b34cc mntput +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f8b9c49 dqput +EXPORT_SYMBOL vmlinux 0x7f91ed31 phy_attached_print +EXPORT_SYMBOL vmlinux 0x7fa7a92a seq_puts +EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size +EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff2b3f2 ip_frag_next +EXPORT_SYMBOL vmlinux 0x800ae1e9 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x801ba95e ptp_find_pin +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x804de2fd page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x8051d310 xfrm4_udp_encap_rcv +EXPORT_SYMBOL vmlinux 0x8068346b pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x80960c2d pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80a9cca2 netdev_err +EXPORT_SYMBOL vmlinux 0x80abbd66 netif_napi_add +EXPORT_SYMBOL vmlinux 0x80aeed74 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d350bc __kfree_skb +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80e9dc43 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq +EXPORT_SYMBOL vmlinux 0x8108b72c vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x816015f7 param_set_invbool +EXPORT_SYMBOL vmlinux 0x81615746 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x81729096 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x817759c4 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818dbb66 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x8194e07e inet_protos +EXPORT_SYMBOL vmlinux 0x8199442e vfs_rmdir +EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x81b91dec __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81ed6665 kobject_put +EXPORT_SYMBOL vmlinux 0x81fbdcd3 ilookup5 +EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x823f8ab9 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x8258bcc5 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x8269d9dc genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x826fde4b configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x82711b0b ps2_command +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x8288d801 inet_sendpage +EXPORT_SYMBOL vmlinux 0x82978d21 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x829c1e6e inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x82bfbb05 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x82c3f5b6 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82cbdb61 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x82e24d09 __pagevec_release +EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync +EXPORT_SYMBOL vmlinux 0x8302d493 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x83123982 __free_pages +EXPORT_SYMBOL vmlinux 0x8317a39c generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x832453d0 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x833b6a00 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x8359d799 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x835ea9db skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x83642d27 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x836cfca5 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x836ddca1 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x83709c29 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x8379c968 bio_chain +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x83803c09 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x838ebc67 vfs_link +EXPORT_SYMBOL vmlinux 0x8396821f pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x8399cb57 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x83fd94a8 vme_master_request +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x841020e8 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x8422b5c2 netdev_alert +EXPORT_SYMBOL vmlinux 0x842639ee security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x84664676 clkdev_add +EXPORT_SYMBOL vmlinux 0x847ff6c5 phy_loopback +EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x8497b417 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x8499e58a blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x84c63708 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x84d85e81 param_ops_uint +EXPORT_SYMBOL vmlinux 0x84e3017b devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x84ed8e3c mark_info_dirty +EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base +EXPORT_SYMBOL vmlinux 0x851c8a9e file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x8522f1aa ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x852dcc14 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x853edadb page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x85448661 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info +EXPORT_SYMBOL vmlinux 0x85591e2e __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x8564cb37 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85784017 _dev_emerg +EXPORT_SYMBOL vmlinux 0x8588c744 simple_empty +EXPORT_SYMBOL vmlinux 0x85aec79c end_page_private_2 +EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85dc894f scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f0017a try_to_release_page +EXPORT_SYMBOL vmlinux 0x85f2b026 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x85f4ea9a generic_writepages +EXPORT_SYMBOL vmlinux 0x860a43bb cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x86115a3b ping_prot +EXPORT_SYMBOL vmlinux 0x86160c96 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x86216f98 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x86418ce8 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x864811af fman_get_revision +EXPORT_SYMBOL vmlinux 0x8670aea8 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x86714d8f netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x86739cd2 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868ea9d4 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x86bae277 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x86c989d2 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x86d26eb2 sock_no_bind +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86f7891f __neigh_event_send +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86ff3c7e tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x8701beea fc_block_scsi_eh +EXPORT_SYMBOL vmlinux 0x871b0ab1 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x8735f6f2 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x8738f03d xfrm_register_type +EXPORT_SYMBOL vmlinux 0x873f6e9a tty_devnum +EXPORT_SYMBOL vmlinux 0x87511583 phy_init_eee +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x8764101b udplite_prot +EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x8778e987 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x879e6979 skb_append +EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87c5df5e arch_hibernation_header_save +EXPORT_SYMBOL vmlinux 0x87c65b0b vfs_get_link +EXPORT_SYMBOL vmlinux 0x87e71c10 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x88028845 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x880384d6 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x88093c88 neigh_update +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x884d8671 get_phy_device +EXPORT_SYMBOL vmlinux 0x8853d065 skb_trim +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x88947752 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x889f0ab6 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x88acb0fd migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x88d4c6bb mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88f0a365 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x89169139 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x893c4729 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy +EXPORT_SYMBOL vmlinux 0x8957276d pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x897b2376 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x899bf7b8 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x899e1552 iproc_msi_init +EXPORT_SYMBOL vmlinux 0x89a7f75f md_handle_request +EXPORT_SYMBOL vmlinux 0x89a833a8 keyring_alloc +EXPORT_SYMBOL vmlinux 0x89b8d2f2 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x89c40781 dquot_release +EXPORT_SYMBOL vmlinux 0x89cc3e3b __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x89e086a8 bio_devname +EXPORT_SYMBOL vmlinux 0x89e9c2f9 complete_request_key +EXPORT_SYMBOL vmlinux 0x8a27f23d thread_group_exited +EXPORT_SYMBOL vmlinux 0x8a34611f scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x8a3b8fc5 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a5d8d35 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aad656f pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x8ab8a8c2 sock_efree +EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8ae42c33 napi_get_frags +EXPORT_SYMBOL vmlinux 0x8af1f0bf scsi_device_put +EXPORT_SYMBOL vmlinux 0x8af7a409 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x8afed920 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b067909 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x8b4d3957 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x8b56b5d1 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b6ac669 skb_put +EXPORT_SYMBOL vmlinux 0x8b7bcd8e nf_ct_attach +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8bca0798 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x8bd00d45 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x8bd3ae78 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x8bf40cd6 bdi_alloc +EXPORT_SYMBOL vmlinux 0x8c0ec8cd sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x8c0ef09e padata_alloc +EXPORT_SYMBOL vmlinux 0x8c1a428f md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x8c253aa9 of_get_parent +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c3655ba eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x8c3c3e18 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x8c53d336 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x8c56a072 dma_free_attrs +EXPORT_SYMBOL vmlinux 0x8c5b8891 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c8a9af8 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8ca16ff7 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x8ca6677d watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x8cacf43d rtnl_create_link +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cb483c5 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x8ccf73bf __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x8cd0c7fb scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x8cd260e0 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x8ceeb8df key_revoke +EXPORT_SYMBOL vmlinux 0x8cf88ee4 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x8d1fda20 eth_type_trans +EXPORT_SYMBOL vmlinux 0x8d20d786 vma_set_file +EXPORT_SYMBOL vmlinux 0x8d3dfd94 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var +EXPORT_SYMBOL vmlinux 0x8d461ea1 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x8d468aa4 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x8d5400c2 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d624a3e pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d953c63 dget_parent +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8d9f725b cfb_fillrect +EXPORT_SYMBOL vmlinux 0x8da6585d __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x8dae5038 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x8daedb79 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x8dbba24d mdio_driver_register +EXPORT_SYMBOL vmlinux 0x8dc799e7 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x8dcc3131 md_write_inc +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8df1ef30 register_filesystem +EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e0545db mntget +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e1e58a1 component_match_add_typed +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e4400a4 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e53a62f pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x8e627d6b page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x8e733242 key_link +EXPORT_SYMBOL vmlinux 0x8e82c6bc mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8effd3cd tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x8f1068cf __devm_request_region +EXPORT_SYMBOL vmlinux 0x8f2961be configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x8f2d3733 netlink_set_err +EXPORT_SYMBOL vmlinux 0x8f3be505 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x8f3dfb03 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x8f7f0039 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x8f89c89f dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x8f98ba60 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8f9ba1ce set_cached_acl +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fa64945 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x8fb3f3fc tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x8fc5f491 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content +EXPORT_SYMBOL vmlinux 0x8fcf4b60 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fd181f1 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x8fd617c7 md_done_sync +EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds +EXPORT_SYMBOL vmlinux 0x8fe2691b cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x8fe5369a sock_no_connect +EXPORT_SYMBOL vmlinux 0x8fe58643 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x9002bb6c of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x9006d0e1 security_sk_clone +EXPORT_SYMBOL vmlinux 0x90077325 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x9021ec37 inet_put_port +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x902f5199 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x90429e93 udp_prot +EXPORT_SYMBOL vmlinux 0x904a35b5 sg_miter_start +EXPORT_SYMBOL vmlinux 0x905294b2 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x905be36f jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x90661b28 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x9077c207 udp_seq_start +EXPORT_SYMBOL vmlinux 0x907c114d __serio_register_driver +EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override +EXPORT_SYMBOL vmlinux 0x908e5601 cpu_hwcaps +EXPORT_SYMBOL vmlinux 0x9099e9d7 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x90a9e691 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x90b2083e sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x90c35725 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp +EXPORT_SYMBOL vmlinux 0x90f104a4 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x90f1f961 of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0x910f9e59 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x911e63cd __brelse +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x916d6aea fd_install +EXPORT_SYMBOL vmlinux 0x9189b15d submit_bh +EXPORT_SYMBOL vmlinux 0x918d5911 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x918d9572 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x9196a861 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x919b03e8 __break_lease +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x919df526 param_get_charp +EXPORT_SYMBOL vmlinux 0x91a32801 dev_set_threaded +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91a9fdaa truncate_setsize +EXPORT_SYMBOL vmlinux 0x91ae09b8 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x91bc765c _dev_notice +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91d74216 dst_dev_put +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f58e01 dev_get_flags +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x9206468f input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x920894ff __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x920da876 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x920dac03 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x92178e49 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x922db26d config_item_put +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x9235c74d locks_free_lock +EXPORT_SYMBOL vmlinux 0x92397713 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923dbce6 amba_request_regions +EXPORT_SYMBOL vmlinux 0x925389eb devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x925f5fe2 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x926766dd forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x9289ae64 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x92a16f49 kobject_add +EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw +EXPORT_SYMBOL vmlinux 0x92ab0fcb qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x92b89495 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92d308a9 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92dfb537 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931c0c41 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x93435569 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9386ffc0 put_fs_context +EXPORT_SYMBOL vmlinux 0x939e045f fqdir_init +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x93e32295 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x93f5e746 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x93ffa046 bioset_init +EXPORT_SYMBOL vmlinux 0x9401cc71 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x943618c3 dev_addr_init +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x9457519d generic_file_fsync +EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable +EXPORT_SYMBOL vmlinux 0x94902ad7 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x9493fc86 node_states +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94d529fb netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0x94d735cc jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x94de1d8a register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x94f5c3db scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x95030c9c proto_unregister +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x950e3608 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x95256d1e inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x95296e48 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x9546a1c1 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x954fdb56 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x9553690d of_translate_address +EXPORT_SYMBOL vmlinux 0x955f3af8 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x95633af5 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x95640b82 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x957a0213 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x957ce2b2 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x957e5613 md_flush_request +EXPORT_SYMBOL vmlinux 0x957efe77 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95ae1dc9 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x95b03a16 param_set_copystring +EXPORT_SYMBOL vmlinux 0x95bc94f9 netdev_notice +EXPORT_SYMBOL vmlinux 0x95c2c991 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x95cfb08b tcp_peek_len +EXPORT_SYMBOL vmlinux 0x95e176fd ps2_init +EXPORT_SYMBOL vmlinux 0x96050dc8 __next_node_in +EXPORT_SYMBOL vmlinux 0x9605d2b1 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x961207f7 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x9625dea1 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x963741f1 proc_set_size +EXPORT_SYMBOL vmlinux 0x965a768b inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x965fdd24 devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg +EXPORT_SYMBOL vmlinux 0x96793728 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr +EXPORT_SYMBOL vmlinux 0x968dff53 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96cf46c2 inet_getname +EXPORT_SYMBOL vmlinux 0x96e16387 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x971a0119 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x971e6a57 put_watch_queue +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x97420817 pskb_extract +EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x974db22f shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x975318d9 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x978a717e sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x978c416c of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97c02392 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x97c3726c get_user_pages +EXPORT_SYMBOL vmlinux 0x97c47aa2 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x97d4e212 key_invalidate +EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds +EXPORT_SYMBOL vmlinux 0x97e8603c PDE_DATA +EXPORT_SYMBOL vmlinux 0x97ec97dc nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x97eeb737 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x97f44a08 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x9819e5a1 d_drop +EXPORT_SYMBOL vmlinux 0x98264a85 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x985d2df6 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x987d26fc dec_node_page_state +EXPORT_SYMBOL vmlinux 0x98815648 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x988b014f sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x9896f2e8 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x98ad2672 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x98bca9a3 datagram_poll +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98dcef1f mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x98dd8619 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98f10b17 dst_release +EXPORT_SYMBOL vmlinux 0x98f84a7b fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x98ffcd61 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x991ca9ca skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x991d9c88 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x995d5ce2 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x99633684 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x9970f1e9 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x9994d730 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a2ac89 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x99ab24dc kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99d9491a pci_scan_slot +EXPORT_SYMBOL vmlinux 0x99da8bd8 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e4c8b6 __icmp_send +EXPORT_SYMBOL vmlinux 0x99ea7155 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x99ecefeb __frontswap_store +EXPORT_SYMBOL vmlinux 0x99ed0b15 gro_cells_receive +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 0x9a145780 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a29636c xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x9a3f31d0 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x9a4adbbb mark_page_accessed +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a5d0e7f of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x9a67952d pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x9a6d40ee fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9a75b438 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x9a8c487f simple_write_begin +EXPORT_SYMBOL vmlinux 0x9a91e7eb tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x9a93d704 set_posix_acl +EXPORT_SYMBOL vmlinux 0x9a9f99fd sk_ns_capable +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9abe0b2f dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x9ac1b04c phy_write_paged +EXPORT_SYMBOL vmlinux 0x9ac8de87 request_key_rcu +EXPORT_SYMBOL vmlinux 0x9acc2d3e ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x9acf82a5 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b48b9e4 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b50b678 current_in_userns +EXPORT_SYMBOL vmlinux 0x9b54e938 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x9b60e0d5 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x9b6b0a2c kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b79cc68 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x9b83f920 block_commit_write +EXPORT_SYMBOL vmlinux 0x9baa31b3 sk_stream_error +EXPORT_SYMBOL vmlinux 0x9bac25c5 mdio_device_register +EXPORT_SYMBOL vmlinux 0x9bc9fd64 softnet_data +EXPORT_SYMBOL vmlinux 0x9be6e755 phy_read_paged +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c12f710 xfrm_input +EXPORT_SYMBOL vmlinux 0x9c14d2bd mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x9c233e5a tty_port_close_end +EXPORT_SYMBOL vmlinux 0x9c23ac62 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x9c45dda2 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x9c4eddbf dev_uc_sync +EXPORT_SYMBOL vmlinux 0x9c573ab0 napi_enable +EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 +EXPORT_SYMBOL vmlinux 0x9c5f5cc9 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x9c63baf6 tty_vhangup +EXPORT_SYMBOL vmlinux 0x9c64a970 wireless_send_event +EXPORT_SYMBOL vmlinux 0x9c654111 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x9c6b0db4 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x9c8072a7 get_fs_type +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c8b4871 copy_highpage +EXPORT_SYMBOL vmlinux 0x9c9c4b92 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb1efc5 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9cf00da7 sget_fc +EXPORT_SYMBOL vmlinux 0x9d08982e register_cdrom +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d0f4989 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2c781a __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d4b2fe2 __seq_open_private +EXPORT_SYMBOL vmlinux 0x9d545dd8 key_put +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d6a04e8 config_group_find_item +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context +EXPORT_SYMBOL vmlinux 0x9d98b3fd kobject_get +EXPORT_SYMBOL vmlinux 0x9dacd2db sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x9db59b16 kthread_blkcg +EXPORT_SYMBOL vmlinux 0x9dd421d6 free_task +EXPORT_SYMBOL vmlinux 0x9dda99d0 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x9ddbcb2a empty_aops +EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel +EXPORT_SYMBOL vmlinux 0x9dfcaa40 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x9e018bd8 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x9e073679 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e22d30c fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x9e252d23 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e313982 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e56d565 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e765f8d pci_request_region +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e9c34be finish_open +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea3affa blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq +EXPORT_SYMBOL vmlinux 0x9eb46b9b netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9ee16663 page_pool_release_page +EXPORT_SYMBOL vmlinux 0x9eeb755a __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x9f17e216 sock_i_ino +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f66672d acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw +EXPORT_SYMBOL vmlinux 0x9f85bf4b page_mapped +EXPORT_SYMBOL vmlinux 0x9f8aba74 fc_remove_host +EXPORT_SYMBOL vmlinux 0x9f93e284 find_vma +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f9f321a fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb694e7 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x9fc98b5b mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x9fca2c56 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x9fd648b9 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x9fd68faf bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ff45d4f security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffa825d flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa011f877 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0xa0142ef7 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xa027e769 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa03e396c simple_recursive_removal +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa072c035 sock_set_priority +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 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0d0e6a7 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e1e1df tcf_block_get_ext +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 0xa0f46595 inode_init_owner +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa100ad6b jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xa101db69 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1141cd6 migrate_page +EXPORT_SYMBOL vmlinux 0xa13e780a gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xa1668689 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xa1676a6d sk_mc_loop +EXPORT_SYMBOL vmlinux 0xa17a539b vc_cons +EXPORT_SYMBOL vmlinux 0xa18c2c40 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xa1a22fb6 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0xa1c2a544 start_tty +EXPORT_SYMBOL vmlinux 0xa1ca357e nobh_write_end +EXPORT_SYMBOL vmlinux 0xa1d9ee6b ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xa1efa90a udp_ioctl +EXPORT_SYMBOL vmlinux 0xa1fdf345 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xa1fe1255 pci_free_irq +EXPORT_SYMBOL vmlinux 0xa2035ac6 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa21fce66 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xa229c010 filp_close +EXPORT_SYMBOL vmlinux 0xa22b4d05 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa240fbb8 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xa2416b71 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xa2446ce5 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa2633196 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa2774501 pps_register_source +EXPORT_SYMBOL vmlinux 0xa2802edd bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa2910635 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xa29a03dd flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xa2b429e4 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xa2c4d75b bio_add_page +EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid +EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa2e94940 register_qdisc +EXPORT_SYMBOL vmlinux 0xa2f4cc2b dquot_acquire +EXPORT_SYMBOL vmlinux 0xa2fd5b37 dst_release_immediate +EXPORT_SYMBOL vmlinux 0xa30b4e9c tty_do_resize +EXPORT_SYMBOL vmlinux 0xa324ff80 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xa3262df1 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xa3386ca0 gro_cells_init +EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xa3476c58 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xa34786dd unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xa34e645d param_set_ullong +EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np +EXPORT_SYMBOL vmlinux 0xa366c405 task_work_add +EXPORT_SYMBOL vmlinux 0xa36eb6ea md_unregister_thread +EXPORT_SYMBOL vmlinux 0xa378c2e7 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xa382c5bd dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xa39e0f25 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xa3a3f229 cpumask_next_and +EXPORT_SYMBOL vmlinux 0xa3a72800 tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0xa3b822e0 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger +EXPORT_SYMBOL vmlinux 0xa3e9ec4b nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa40abd73 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xa40aede7 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xa40d16b2 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key +EXPORT_SYMBOL vmlinux 0xa450e09f of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0xa465bfa6 ihold +EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction +EXPORT_SYMBOL vmlinux 0xa482ab84 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xa4843eaa sync_filesystem +EXPORT_SYMBOL vmlinux 0xa49db51e pci_dev_put +EXPORT_SYMBOL vmlinux 0xa49ed5cb blk_get_request +EXPORT_SYMBOL vmlinux 0xa4ca6f63 register_netdevice +EXPORT_SYMBOL vmlinux 0xa4d7997b dev_open +EXPORT_SYMBOL vmlinux 0xa4dbe60d __check_sticky +EXPORT_SYMBOL vmlinux 0xa4de8caf is_nd_pfn +EXPORT_SYMBOL vmlinux 0xa4f00d2b inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock +EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit +EXPORT_SYMBOL vmlinux 0xa5233118 inode_io_list_del +EXPORT_SYMBOL vmlinux 0xa536d33a bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xa539aa9c qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0xa53f5241 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xa546e2bd dev_uc_add +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa563e773 fiemap_prep +EXPORT_SYMBOL vmlinux 0xa56d734f netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xa56f1f44 udp_poll +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5ab004a pci_get_slot +EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0xa5b07420 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xa5b2636f pci_release_region +EXPORT_SYMBOL vmlinux 0xa5d7d349 find_inode_rcu +EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xa61b2987 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa63b11c4 drop_super +EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa648fc11 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xa66025c7 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xa674bb73 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xa67660ac dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68ca20f of_root +EXPORT_SYMBOL vmlinux 0xa69ef91a vga_client_register +EXPORT_SYMBOL vmlinux 0xa6a7ae5d md_cluster_ops +EXPORT_SYMBOL vmlinux 0xa6b54ccb neigh_xmit +EXPORT_SYMBOL vmlinux 0xa6b88d14 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xa6c79915 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xa6da2a9c inet_csk_accept +EXPORT_SYMBOL vmlinux 0xa6f789e6 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xa703006a sync_file_create +EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available +EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa713d9f2 __SetPageMovable +EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa72e68cc xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xa72fb698 km_state_notify +EXPORT_SYMBOL vmlinux 0xa73de680 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xa7456c70 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xa74be22b unix_get_socket +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa76a91cb write_cache_pages +EXPORT_SYMBOL vmlinux 0xa7781277 napi_disable +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa7895e60 param_set_bint +EXPORT_SYMBOL vmlinux 0xa796b9e5 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xa7a76cfa netif_receive_skb +EXPORT_SYMBOL vmlinux 0xa7bf4e0c __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xa7c53aeb __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xa7c744fc d_rehash +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7e0e5cf ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xa7e39246 dquot_transfer +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa806c1b2 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xa80cf118 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa820282c generic_delete_inode +EXPORT_SYMBOL vmlinux 0xa82ac51a ilookup +EXPORT_SYMBOL vmlinux 0xa82f7479 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xa834f11a genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0xa83d5b40 seq_release +EXPORT_SYMBOL vmlinux 0xa8426901 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8475c93 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa853396b xa_extract +EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa85fc3f7 __do_once_done +EXPORT_SYMBOL vmlinux 0xa8603c32 inet_listen +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa8836c63 init_task +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8c016dd kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xa8c71087 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8cbde72 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xa8d48960 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0xa8d771d1 mdiobus_write +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8f0ec7e mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa906006b vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xa9074a83 mr_dump +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa90d9360 mdio_device_free +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa9189be6 cdev_alloc +EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa93252d5 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9777e96 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xa97bd287 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0xa9883d07 fasync_helper +EXPORT_SYMBOL vmlinux 0xa991d5b6 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xa9995c27 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9a08707 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xa9a9106e pci_irq_vector +EXPORT_SYMBOL vmlinux 0xa9af5bf4 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xa9afc94d cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xa9b051ed mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xa9b468c3 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0xa9d451a4 __frontswap_test +EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xa9f143ec __invalidate_device +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa0169d7 security_unix_may_send +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa139e45 mpage_readpage +EXPORT_SYMBOL vmlinux 0xaa150e56 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa1b34c2 vme_init_bridge +EXPORT_SYMBOL vmlinux 0xaa1f7bb2 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa3fc51d kern_unmount +EXPORT_SYMBOL vmlinux 0xaa4177e0 sk_free +EXPORT_SYMBOL vmlinux 0xaa588fb7 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xaa6cbf9f dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xaa6e88a6 register_fib_notifier +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7dd300 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL vmlinux 0xaa88be83 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xaa8e343f seq_escape +EXPORT_SYMBOL vmlinux 0xaa9b06e5 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xaaa26399 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad61dc9 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xaad67ae3 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaadebe81 param_ops_int +EXPORT_SYMBOL vmlinux 0xaae31634 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xaae5595f dev_set_group +EXPORT_SYMBOL vmlinux 0xaae58f7f tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab03e42b phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xab099715 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab3ecf3f misc_register +EXPORT_SYMBOL vmlinux 0xab43a002 phy_error +EXPORT_SYMBOL vmlinux 0xab4ad04e ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab785035 path_has_submounts +EXPORT_SYMBOL vmlinux 0xab7fb202 sock_wake_async +EXPORT_SYMBOL vmlinux 0xab9538be __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xab9b9e54 inc_nlink +EXPORT_SYMBOL vmlinux 0xabd254d5 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xabde7b32 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xabf58a86 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xac08b87b dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xac0cf77b vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xac17fb53 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac250280 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xac2793c7 netdev_update_features +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac371b98 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xac3c27c0 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xac44f5ee padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xac4661ec proc_create_data +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac702474 readahead_expand +EXPORT_SYMBOL vmlinux 0xac74d756 dm_get_device +EXPORT_SYMBOL vmlinux 0xac834d81 dm_table_get_size +EXPORT_SYMBOL vmlinux 0xac876178 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xac9b13e3 node_data +EXPORT_SYMBOL vmlinux 0xac9e6411 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xaca7ec1e security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacd95602 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print +EXPORT_SYMBOL vmlinux 0xacf14a3c dquot_get_state +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xad2cba87 sk_net_capable +EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove +EXPORT_SYMBOL vmlinux 0xad649e67 is_bad_inode +EXPORT_SYMBOL vmlinux 0xad682b8f xudma_rchanrt_write +EXPORT_SYMBOL vmlinux 0xad694364 inode_set_ctime_current +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad75b844 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xad7d3876 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xad7faad2 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xad82b3dc param_ops_ulong +EXPORT_SYMBOL vmlinux 0xad8f4466 xp_can_alloc +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xadacb53c param_ops_long +EXPORT_SYMBOL vmlinux 0xadae18ce __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadafff20 acpi_device_hid +EXPORT_SYMBOL vmlinux 0xadbc0b27 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0xadcf6e0a config_item_set_name +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae267ebb register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xae28d57b fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair +EXPORT_SYMBOL vmlinux 0xae4879fd wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae7a401a inode_update_time +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeb8f1db ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xaebcf19b of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaec50ea6 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xaecb910e of_device_register +EXPORT_SYMBOL vmlinux 0xaece870f __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xaed72b62 clkdev_drop +EXPORT_SYMBOL vmlinux 0xaee033dc netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xaee56397 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xaeea121c netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xaef60116 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xaefb3e50 iptun_encaps +EXPORT_SYMBOL vmlinux 0xaf01a848 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings +EXPORT_SYMBOL vmlinux 0xaf5da819 scsi_host_put +EXPORT_SYMBOL vmlinux 0xaf75e2a6 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0xaf874581 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xaf91a868 ether_setup +EXPORT_SYMBOL vmlinux 0xafa7e7c9 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xafab0b39 phy_driver_register +EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafbc0ae9 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc42f28 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xafc5d345 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xafecbd0c mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xb00ce8fb tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xb01a6850 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb01d76c0 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xb0250270 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xb02911c3 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xb0403936 __skb_ext_del +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats +EXPORT_SYMBOL vmlinux 0xb05dd661 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb07145ed pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xb078f4cf scsi_remove_target +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a5d5ab km_policy_expired +EXPORT_SYMBOL vmlinux 0xb0a85031 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xb0c4cbe6 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0ded7f2 reuseport_alloc +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e4afca put_disk +EXPORT_SYMBOL vmlinux 0xb0e6e8f3 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize +EXPORT_SYMBOL vmlinux 0xb0f91fba sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xb1080771 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xb10882e4 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb134e97c mr_table_alloc +EXPORT_SYMBOL vmlinux 0xb1394f4b blk_put_queue +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work +EXPORT_SYMBOL vmlinux 0xb1822f62 kill_fasync +EXPORT_SYMBOL vmlinux 0xb1878049 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xb18f6d4b fman_bind +EXPORT_SYMBOL vmlinux 0xb1914b14 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xb1a8b02e pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug +EXPORT_SYMBOL vmlinux 0xb1d6d087 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xb1d7a11f mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e89e27 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xb1ecc9a5 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xb1fa2c49 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb2753ffb pci_pme_capable +EXPORT_SYMBOL vmlinux 0xb285e8eb fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0xb29fee30 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0xb2a3e4ca of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0xb2ac81ae tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xb2b91d86 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2dfdd01 tty_register_driver +EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b4602 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb3157e05 genphy_config_eee_advert +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 0xb32a5973 acpi_ut_status_exit +EXPORT_SYMBOL vmlinux 0xb32a8a23 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg +EXPORT_SYMBOL vmlinux 0xb3647c79 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb36ece4f dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xb397369e cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xb397c558 netdev_change_features +EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc +EXPORT_SYMBOL vmlinux 0xb3a8af99 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xb3adc001 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0xb3bf151e dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xb3c0aaf6 set_bh_page +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb43bd13e udp_sendmsg +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb464b878 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xb46a4524 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb4b22de1 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xb4bfefe2 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xb4da3eab phy_disconnect +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb504a679 dquot_disable +EXPORT_SYMBOL vmlinux 0xb5055893 kill_anon_super +EXPORT_SYMBOL vmlinux 0xb515c198 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xb516dcc3 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb55f728b dquot_alloc +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5741fce pci_disable_device +EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable +EXPORT_SYMBOL vmlinux 0xb588bbfe __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xb58ac6a0 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb596e30b __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b5373f fs_param_is_bool +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5d8f0d1 disk_end_io_acct +EXPORT_SYMBOL vmlinux 0xb5e6da70 d_lookup +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5e7d46b sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb61e04ca tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb6503de7 blk_rq_init +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb655cf02 would_dump +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb678b417 skb_pull +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb68c41bf dev_deactivate +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69e0f3f pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xb6a902d0 vme_slot_num +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6b65252 dev_activate +EXPORT_SYMBOL vmlinux 0xb6be51ce sock_alloc_file +EXPORT_SYMBOL vmlinux 0xb6bf5afc netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xb6dd8371 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xb6e12440 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb721c516 elv_rb_del +EXPORT_SYMBOL vmlinux 0xb72efae0 pnp_device_attach +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb741c22f netlink_unicast +EXPORT_SYMBOL vmlinux 0xb7565eaa dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xb765adfb genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb77efa75 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xb7839bad fs_param_is_enum +EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb79bc02a seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xb7adde54 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d66715 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xb7f4f05c elv_rb_add +EXPORT_SYMBOL vmlinux 0xb81eb293 rpmh_invalidate +EXPORT_SYMBOL vmlinux 0xb824dd0e page_pool_create +EXPORT_SYMBOL vmlinux 0xb82ea5bd input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xb82ec282 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available +EXPORT_SYMBOL vmlinux 0xb844b806 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xb845bfae netlink_broadcast +EXPORT_SYMBOL vmlinux 0xb84e2545 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb88d92d0 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb89e8c19 unlock_buffer +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8d23c1c netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0xb8d97d13 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xb8f7c4b5 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb919821e inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xb9273342 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xb92ca40c inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xb9308525 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xb930b3b0 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb95e4d55 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xb96068ee vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xb9645417 __skb_pad +EXPORT_SYMBOL vmlinux 0xb9677085 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb977d680 __napi_schedule +EXPORT_SYMBOL vmlinux 0xb984bac7 param_get_byte +EXPORT_SYMBOL vmlinux 0xb99ba70c sock_set_mark +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9cd462c tty_write_room +EXPORT_SYMBOL vmlinux 0xb9d5c9a9 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba1b719e inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xba2992c3 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xba2eac38 bio_advance +EXPORT_SYMBOL vmlinux 0xba319cca memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba531f32 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba5a3085 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xba5f0f68 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xba6ff938 is_nd_dax +EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba773731 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xba931404 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xba986283 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xbaa469e6 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0xbaba12a9 __ps2_command +EXPORT_SYMBOL vmlinux 0xbabed904 phy_connect +EXPORT_SYMBOL vmlinux 0xbacf890e tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xbaffcba2 cdev_add +EXPORT_SYMBOL vmlinux 0xbb02bd57 of_phy_connect +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb1143c0 param_get_int +EXPORT_SYMBOL vmlinux 0xbb17af08 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb293612 bio_uninit +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3eaa0b genphy_resume +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool +EXPORT_SYMBOL vmlinux 0xbb85f6d3 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xbb8aedeb generic_write_end +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbba6a9e0 pci_map_rom +EXPORT_SYMBOL vmlinux 0xbbbd2d87 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xbbc2a043 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xbbe71878 misc_deregister +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbbe92dff mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xbc08fea6 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xbc14ede3 seq_putc +EXPORT_SYMBOL vmlinux 0xbc1907ee seq_printf +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc2b3fa7 param_get_long +EXPORT_SYMBOL vmlinux 0xbc360f14 tegra_ivc_init +EXPORT_SYMBOL vmlinux 0xbc3987f4 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xbc80dd39 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0xbc837fe6 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xbc8748b2 kernel_read +EXPORT_SYMBOL vmlinux 0xbc8938a3 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xbc9060d7 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xbc9f35c5 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcbd47f5 dev_lstats_read +EXPORT_SYMBOL vmlinux 0xbce47c93 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xbcffa2d8 of_xudma_dev_get +EXPORT_SYMBOL vmlinux 0xbd08b32d serio_close +EXPORT_SYMBOL vmlinux 0xbd0f5b51 bio_init +EXPORT_SYMBOL vmlinux 0xbd10d07c bprm_change_interp +EXPORT_SYMBOL vmlinux 0xbd252424 d_alloc_name +EXPORT_SYMBOL vmlinux 0xbd391b9f sock_release +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd492784 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbda856e2 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xbdc6e63b security_path_mkdir +EXPORT_SYMBOL vmlinux 0xbdca816d put_ipc_ns +EXPORT_SYMBOL vmlinux 0xbdcc72ef skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xbdce046a audit_log +EXPORT_SYMBOL vmlinux 0xbdd48321 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0xbde91ed6 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xbdfaedf6 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock +EXPORT_SYMBOL vmlinux 0xbe47a9de md_reload_sb +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe503da8 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe6f2b75 phy_attach +EXPORT_SYMBOL vmlinux 0xbe709df3 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xbe72d856 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xbe98b3b3 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xbeba7e2b sk_capable +EXPORT_SYMBOL vmlinux 0xbebf865b pci_get_device +EXPORT_SYMBOL vmlinux 0xbec75ef3 finish_no_open +EXPORT_SYMBOL vmlinux 0xbecf41ee devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbf053a57 account_page_redirty +EXPORT_SYMBOL vmlinux 0xbf233500 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xbf2b6633 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xbf47fb1c jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xbf540459 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf5c6da3 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xbf5d66f6 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xbf602f58 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xbf67b9d2 unlock_page +EXPORT_SYMBOL vmlinux 0xbf6d31bd pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0xbf82bc5e gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xbf92e5cc register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa496a9 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xbfc1222f netdev_info +EXPORT_SYMBOL vmlinux 0xbfc288a4 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block +EXPORT_SYMBOL vmlinux 0xbfd33212 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff90935 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0xc00f7fb0 get_tree_single +EXPORT_SYMBOL vmlinux 0xc0110133 pnp_register_driver +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc04d0ffa PageMovable +EXPORT_SYMBOL vmlinux 0xc0547847 may_umount_tree +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc0834f7e inode_dio_wait +EXPORT_SYMBOL vmlinux 0xc08a524c skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xc08ad877 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0b67a71 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xc0bcc5cc pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xc0be6dda pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0xc0bec489 touch_buffer +EXPORT_SYMBOL vmlinux 0xc0edbc03 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc1028c60 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xc1111222 dump_emit +EXPORT_SYMBOL vmlinux 0xc116cb51 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xc13373b2 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xc14597f2 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xc146ea82 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc15064dd vme_slave_request +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc1725d70 seq_path +EXPORT_SYMBOL vmlinux 0xc176ea3a nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xc1893066 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0xc1a0368a mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xc1a7f947 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xc1b25569 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xc1b7465a tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xc1bcc86a netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1d91d1e fb_blank +EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xc1e7cdac __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xc1ed3e0d generic_perform_write +EXPORT_SYMBOL vmlinux 0xc1f1d55d __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0xc20206a2 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp +EXPORT_SYMBOL vmlinux 0xc20e3a57 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl +EXPORT_SYMBOL vmlinux 0xc236e18b scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xc237d110 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xc24178e0 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0xc25321d9 proc_set_user +EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc26b3daf blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc2b8f9f0 dcache_dir_open +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 0xc2f52274 __lshrti3 +EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc315336e tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xc3180a45 unpin_user_page +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc32e53ad get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xc343ad63 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xc352e080 genphy_loopback +EXPORT_SYMBOL vmlinux 0xc35e5b3d dm_io +EXPORT_SYMBOL vmlinux 0xc36332b2 cad_pid +EXPORT_SYMBOL vmlinux 0xc3667564 vm_insert_pages +EXPORT_SYMBOL vmlinux 0xc368ab4d ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc36fa69a acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xc3759be4 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37831d3 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc38c9fc2 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xc39a1e25 deactivate_super +EXPORT_SYMBOL vmlinux 0xc3b05f9a of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL vmlinux 0xc3f67020 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xc3fdb5e6 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc40184d6 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xc401fe1b blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xc4047601 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0xc413df86 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xc415c067 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc448e596 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xc4544f72 __netif_schedule +EXPORT_SYMBOL vmlinux 0xc455d6c3 pmem_sector_size +EXPORT_SYMBOL vmlinux 0xc4574cd3 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc472c2fe proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc48d1013 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xc48d61e4 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xc4b20a23 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal +EXPORT_SYMBOL vmlinux 0xc4c3ce22 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xc4d4f1de to_ndd +EXPORT_SYMBOL vmlinux 0xc4da9365 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xc4e44735 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xc4e797b8 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xc4ec88d5 fc_vport_terminate +EXPORT_SYMBOL vmlinux 0xc501e1d8 dump_skip +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc5620249 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xc5632350 of_mdio_find_device +EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual +EXPORT_SYMBOL vmlinux 0xc579acb2 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xc579ca5c nd_region_to_nstype +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 0xc5c628fc sock_create_kern +EXPORT_SYMBOL vmlinux 0xc5c88580 sock_alloc +EXPORT_SYMBOL vmlinux 0xc5ce776d kernel_accept +EXPORT_SYMBOL vmlinux 0xc5ddadf0 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5e92d13 simple_link +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc5fd3fe8 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xc5ffd47a __page_symlink +EXPORT_SYMBOL vmlinux 0xc6027dd6 devm_clk_put +EXPORT_SYMBOL vmlinux 0xc60a3335 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc618ac4c pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xc61eab8d uart_suspend_port +EXPORT_SYMBOL vmlinux 0xc61f0ceb input_set_keycode +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc64ea7a6 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc69df566 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle +EXPORT_SYMBOL vmlinux 0xc6aa38a9 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xc6b10b69 skb_split +EXPORT_SYMBOL vmlinux 0xc6b88c2e seq_escape_mem +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6ce63de pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6e0d5b5 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xc6e49caa netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xc6ecac22 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xc6ee1a2c arp_send +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc71c1e92 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72fe773 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xc7436a7a fput +EXPORT_SYMBOL vmlinux 0xc748c4b4 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c54ffc blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xc7cbae1d update_devfreq +EXPORT_SYMBOL vmlinux 0xc7cfef6e ip_do_fragment +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7f36234 inode_insert5 +EXPORT_SYMBOL vmlinux 0xc8080dde devm_release_resource +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc8136ac1 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xc814a47c kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xc82a5329 __acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 +EXPORT_SYMBOL vmlinux 0xc83cc830 registered_fb +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc85f09b1 ps2_drain +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc88a06fe skb_queue_tail +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b2b3fa ipv6_dev_find +EXPORT_SYMBOL vmlinux 0xc8c6111c of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8f0e504 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xc8f9fce9 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xc8faa5ad netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xc90ae2fe ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc925f9aa fc_remote_port_add +EXPORT_SYMBOL vmlinux 0xc927add2 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xc92a8f93 dev_set_alias +EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc932db28 kern_path_create +EXPORT_SYMBOL vmlinux 0xc93c60b3 dev_addr_add +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc95b6337 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc98523c1 ip_local_deliver +EXPORT_SYMBOL vmlinux 0xc99c0653 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xc9a7a1d0 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xc9b803a6 tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0xc9bf43e8 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xc9c41b99 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xc9c5e4c9 set_capacity +EXPORT_SYMBOL vmlinux 0xc9c8c344 read_cache_page +EXPORT_SYMBOL vmlinux 0xc9dcfe09 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xc9dd56d2 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e38eec netpoll_print_options +EXPORT_SYMBOL vmlinux 0xc9ea4edf __of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned +EXPORT_SYMBOL vmlinux 0xc9f285b0 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xc9f2f6c4 __scm_send +EXPORT_SYMBOL vmlinux 0xc9ff9664 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xca1ac405 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xca211485 do_clone_file_range +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca2bcb09 param_set_uint +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp +EXPORT_SYMBOL vmlinux 0xca677db5 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xca7ad4f9 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca99ed7c pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xcac7b4e6 fsync_bdev +EXPORT_SYMBOL vmlinux 0xcace14b1 alloc_pages +EXPORT_SYMBOL vmlinux 0xcad1729f devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcade7435 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xcae1b99a kthread_bind +EXPORT_SYMBOL vmlinux 0xcae49039 dev_change_flags +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb352dd8 pci_clear_master +EXPORT_SYMBOL vmlinux 0xcb36561a blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb4e9bab tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xcb58ed6e __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xcb6bad3b crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb8282fe tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xcba15916 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xcba5be91 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xcbbf6488 tso_build_data +EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xcbcdf6ab cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xcbd45aba d_instantiate_new +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbdb3ee0 generic_fillattr +EXPORT_SYMBOL vmlinux 0xcbecc379 inode_set_flags +EXPORT_SYMBOL vmlinux 0xcbecf2ec netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc059639 iommu_dma_get_resv_regions +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 0xcc2b0d06 dst_alloc +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 0xcc51de52 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xcc550edf devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xcc55f724 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xcc5aeb7f phy_read_mmd +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc6a98e4 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xcc6f409d km_new_mapping +EXPORT_SYMBOL vmlinux 0xcc6fe9e3 generic_file_open +EXPORT_SYMBOL vmlinux 0xcc825f7d devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xcc88408c iget_locked +EXPORT_SYMBOL vmlinux 0xcca962e1 param_get_bool +EXPORT_SYMBOL vmlinux 0xccaf4e4c skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xccb0d4fd __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xccb3afee of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0xccb57ad6 __devm_release_region +EXPORT_SYMBOL vmlinux 0xccba9df4 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xccc5b772 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccd540e3 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xccd6c9a2 of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xccf78985 phy_get_pause +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd0105f5 eth_header +EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xcd167e72 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd34d769 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xcd3742ec vfs_get_tree +EXPORT_SYMBOL vmlinux 0xcd441958 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0xcd4d54a6 key_move +EXPORT_SYMBOL vmlinux 0xcd64413c tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xcd752a98 setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0xcd7a9338 fs_param_is_string +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd8f2815 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xcd9a9d5a sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xcda01209 pin_user_pages +EXPORT_SYMBOL vmlinux 0xcdb9ae6a read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdedc26e processors +EXPORT_SYMBOL vmlinux 0xcdf6477c serio_interrupt +EXPORT_SYMBOL vmlinux 0xce036f24 sg_split +EXPORT_SYMBOL vmlinux 0xce0509b6 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xce11e43a security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce3cc8b6 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xce47efee dm_table_get_md +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce798e18 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce8e6c63 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xce8f8c90 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xcea4dcd2 _dev_err +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceb747cd input_match_device_id +EXPORT_SYMBOL vmlinux 0xcebbdbd6 fc_remote_port_rolechg +EXPORT_SYMBOL vmlinux 0xcec1f3b3 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xcee12074 par_io_of_config +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcefeeb26 fc_mount +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf319efe jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xcf31cc14 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0xcf47e0f1 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xcf4d8100 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf831028 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa5b99d __register_binfmt +EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xcfae17c1 bdev_read_only +EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfe48f06 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xd00c1da1 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xd02b2cfc hmm_range_fault +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd0563fab netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xd0627d91 key_unlink +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd08dd58c dm_table_event +EXPORT_SYMBOL vmlinux 0xd0949faf scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xd099b41d nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xd09c3222 pci_find_bus +EXPORT_SYMBOL vmlinux 0xd0a2237b devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0xd0a963fd input_free_device +EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0cd5b6c amba_device_unregister +EXPORT_SYMBOL vmlinux 0xd0dbae61 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xd0e0d2dc kobject_init +EXPORT_SYMBOL vmlinux 0xd0e44524 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xd0edfedb tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xd0fb9747 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xd0fd8ad8 unlock_rename +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd10cf6d0 scsi_add_device +EXPORT_SYMBOL vmlinux 0xd1270915 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd13f973e jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xd146ec88 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd1c7d19b reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0xd1c96524 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd202bd71 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd2355a42 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xd23694d3 __d_drop +EXPORT_SYMBOL vmlinux 0xd23dddb2 sk_dst_check +EXPORT_SYMBOL vmlinux 0xd2442813 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xd2477efb ucc_of_parse_tdm +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 0xd264dc24 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xd276f86b skb_copy_header +EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd296202e register_console +EXPORT_SYMBOL vmlinux 0xd2b82e7e of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xd2be7a60 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xd2c22227 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xd2c22dac __destroy_inode +EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xd2d1aa78 _dev_crit +EXPORT_SYMBOL vmlinux 0xd2d4db41 logfc +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2e9b301 blkdev_put +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd2f81cad blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xd2fe2a9e input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xd3069d77 scsi_partsize +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3270c8d udp_sock_create4 +EXPORT_SYMBOL vmlinux 0xd327864f neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xd3397be8 thaw_bdev +EXPORT_SYMBOL vmlinux 0xd33e06c2 security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd3653d2b dquot_file_open +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd380b1ed acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xd38160d5 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xd38ebb44 vfs_ioctl +EXPORT_SYMBOL vmlinux 0xd397a67f bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xd3bb18c8 stop_tty +EXPORT_SYMBOL vmlinux 0xd3c5e5a2 vfs_symlink +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd3fb2a3c devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xd3fba534 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd41d4f06 block_write_end +EXPORT_SYMBOL vmlinux 0xd4339de8 qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0xd437ae48 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xd443e5e6 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xd44f656f proc_remove +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd45f9a91 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd495c22e sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xd49f2c66 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xd4a0a930 pcibus_to_node +EXPORT_SYMBOL vmlinux 0xd4a53449 d_obtain_root +EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam +EXPORT_SYMBOL vmlinux 0xd4b0f0c1 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c648c1 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xd4d0ee11 tty_kref_put +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4d7991a xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xd4e8b094 skb_dump +EXPORT_SYMBOL vmlinux 0xd4f91aab blk_get_queue +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd4fcb978 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xd4fd7856 dcache_readdir +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd52847b7 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd5378027 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xd5408219 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xd54abed2 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xd55072ff kset_unregister +EXPORT_SYMBOL vmlinux 0xd568df6f genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0xd580cd0b sock_init_data_uid +EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise +EXPORT_SYMBOL vmlinux 0xd59cbda5 dst_destroy +EXPORT_SYMBOL vmlinux 0xd59f11de tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xd5a393af genl_unregister_family +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5baa16e blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0xd5bd9d7f blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xd5c07dbe pci_disable_msi +EXPORT_SYMBOL vmlinux 0xd5c7879f sock_gettstamp +EXPORT_SYMBOL vmlinux 0xd5ce0b6f unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xd5cec9e4 devm_clk_get +EXPORT_SYMBOL vmlinux 0xd5d92298 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd609a959 keyring_search +EXPORT_SYMBOL vmlinux 0xd61c3a72 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd654ed18 unix_attach_fds +EXPORT_SYMBOL vmlinux 0xd656abb2 sock_no_accept +EXPORT_SYMBOL vmlinux 0xd65ac2cf phy_config_aneg +EXPORT_SYMBOL vmlinux 0xd65ef202 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd67f69ef remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0xd686e59c iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c0a7c file_path +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd69e3b4f sk_reset_timer +EXPORT_SYMBOL vmlinux 0xd6ae8116 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xd6b29fbc tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6edbf07 free_buffer_head +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +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 0xd71d135f amba_release_regions +EXPORT_SYMBOL vmlinux 0xd731a4bf of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73b8cd0 __mdiobus_write +EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc +EXPORT_SYMBOL vmlinux 0xd74851ba md_register_thread +EXPORT_SYMBOL vmlinux 0xd760ad36 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xd7a666da filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xd7a6da92 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xd7ab5d0e thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7dbf62f sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xd7e08835 tcp_close +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f51d47 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 +EXPORT_SYMBOL vmlinux 0xd809f854 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range +EXPORT_SYMBOL vmlinux 0xd8213bfb get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write +EXPORT_SYMBOL vmlinux 0xd836a84b unregister_key_type +EXPORT_SYMBOL vmlinux 0xd8551085 bdevname +EXPORT_SYMBOL vmlinux 0xd85afa23 blk_put_request +EXPORT_SYMBOL vmlinux 0xd891c8ca close_fd_get_file +EXPORT_SYMBOL vmlinux 0xd89ba93d __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8c55a32 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xd8d89373 netif_rx +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8ea3747 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xd8ed4e82 km_report +EXPORT_SYMBOL vmlinux 0xd8f61faf of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xd8fc26cf copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xd8ffef93 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xd9189ef7 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd9326e95 __quota_error +EXPORT_SYMBOL vmlinux 0xd93f90c9 sock_init_data +EXPORT_SYMBOL vmlinux 0xd944f2a4 tcp_prot +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd9518739 tcp_poll +EXPORT_SYMBOL vmlinux 0xd985919a fc_attach_transport +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd99d098c compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9aa1d49 pci_write_config_word +EXPORT_SYMBOL vmlinux 0xd9aeba9c fman_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0xd9b3af3b param_ops_hexint +EXPORT_SYMBOL vmlinux 0xd9b79f3e fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9c17f2e netif_rx_any_context +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9e187bd bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xd9ede804 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id +EXPORT_SYMBOL vmlinux 0xda17cc07 udp_set_csum +EXPORT_SYMBOL vmlinux 0xda1eaec6 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xda359c01 brioctl_set +EXPORT_SYMBOL vmlinux 0xda36062d flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda49495a d_add +EXPORT_SYMBOL vmlinux 0xda6233b2 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xda64cc6b __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda774304 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xda77549c d_alloc +EXPORT_SYMBOL vmlinux 0xda79b13f proc_create_seq_private +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xda8a216f eth_mac_addr +EXPORT_SYMBOL vmlinux 0xdaaa4edd __devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xdaabe160 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0xdabf7515 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0xdac32dd5 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac9711f __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xdae5a1f3 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xdaec1c08 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xdaf3b858 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xdb101990 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xdb13bd7b netlink_capable +EXPORT_SYMBOL vmlinux 0xdb20b3e9 udp_disconnect +EXPORT_SYMBOL vmlinux 0xdb36b505 icmp6_send +EXPORT_SYMBOL vmlinux 0xdb54e8f1 pci_save_state +EXPORT_SYMBOL vmlinux 0xdb563fd9 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb8a7bf7 inet_del_offload +EXPORT_SYMBOL vmlinux 0xdb902b56 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0xdb9cc9f3 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xdb9e5dd5 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xdbb658e7 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xdbc46ad3 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xdbc4de42 generic_permission +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbe3d19f request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xdbe93eab scsi_remove_device +EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc18d310 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xdc250a1e ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc54e70e sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xdc70547e dev_mc_flush +EXPORT_SYMBOL vmlinux 0xdc8a0420 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xdc8fb003 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xdc901f59 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xdc910d8e sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xdca223d8 skb_seq_read +EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb +EXPORT_SYMBOL vmlinux 0xdcae520c devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcbb878c devm_memunmap +EXPORT_SYMBOL vmlinux 0xdcbda921 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xdcc366a5 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xdcd425b1 get_tree_bdev +EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdcf61ca5 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd16ec34 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd19ac58 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd350722 to_nd_dax +EXPORT_SYMBOL vmlinux 0xdd58223b neigh_lookup +EXPORT_SYMBOL vmlinux 0xdd60bc37 may_umount +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd697d40 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xdd6a712f iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd9077be __put_page +EXPORT_SYMBOL vmlinux 0xdd944470 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xdd995d8d pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xdd99a55b inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xddad65f7 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddaeba23 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat +EXPORT_SYMBOL vmlinux 0xddc29b99 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xddcab133 imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit +EXPORT_SYMBOL vmlinux 0xddd33a9c unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xddef2f63 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xde031417 try_module_get +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde2ea523 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xde3481a0 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xde483be9 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xde6031b1 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xde60c469 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xde65fce4 setattr_prepare +EXPORT_SYMBOL vmlinux 0xde9ea162 __bforget +EXPORT_SYMBOL vmlinux 0xdeab966f tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xdeb20265 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xdeb47039 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xdecac758 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xded49f24 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xdeeae74e tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdefaddeb serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xdf0ad93e jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf25988f __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2f12e4 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf403935 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xdf465d36 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xdf53090d devm_free_irq +EXPORT_SYMBOL vmlinux 0xdf542a62 new_inode +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5c9457 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf77f51a ps2_handle_response +EXPORT_SYMBOL vmlinux 0xdf823141 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf8d559b dev_get_stats +EXPORT_SYMBOL vmlinux 0xdf928914 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfb956f0 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xdfc1f429 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xdfc82357 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfcd554c ppp_unit_number +EXPORT_SYMBOL vmlinux 0xdfd7bb2f xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xdfdbef71 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdfecdd9e d_genocide +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe0012a94 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xe009764f dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xe016914a jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xe01f2d3a d_set_fallthru +EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe0333d0e __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xe03514f1 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe05238f1 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xe0651792 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xe06ab6c4 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xe06b81bf nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xe07cd7e5 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe07efaa9 scsi_host_get +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe087a514 simple_statfs +EXPORT_SYMBOL vmlinux 0xe088ce57 dst_init +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe097f6d0 km_query +EXPORT_SYMBOL vmlinux 0xe09a140f open_with_fake_path +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b8e853 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0ca7edb phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0xe0ddd296 sock_edemux +EXPORT_SYMBOL vmlinux 0xe0e491e9 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0xe0f189a4 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xe0f4657e devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xe1010197 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xe1045d76 of_clk_get +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +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 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe15b6cf2 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xe164fadc mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xe168a3ed neigh_direct_output +EXPORT_SYMBOL vmlinux 0xe1706f86 fman_set_mac_active_pause +EXPORT_SYMBOL vmlinux 0xe171e326 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xe199c867 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xe1ce2de4 clk_bulk_get +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1f345b9 generic_listxattr +EXPORT_SYMBOL vmlinux 0xe1fec0ca dquot_operations +EXPORT_SYMBOL vmlinux 0xe2000ba4 send_sig +EXPORT_SYMBOL vmlinux 0xe211d23e tcp_filter +EXPORT_SYMBOL vmlinux 0xe2148d86 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe240b748 inet_bind +EXPORT_SYMBOL vmlinux 0xe24191da blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xe241dac0 dev_mc_init +EXPORT_SYMBOL vmlinux 0xe271128b cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe28f9ab4 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xe2987b84 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xe2a4c8ea timestamp_truncate +EXPORT_SYMBOL vmlinux 0xe2b65027 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xe2c45a9f mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xe2cf7060 consume_skb +EXPORT_SYMBOL vmlinux 0xe2d46601 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d79817 keyring_clear +EXPORT_SYMBOL vmlinux 0xe2ecb07e vfs_setpos +EXPORT_SYMBOL vmlinux 0xe2faacd1 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xe30cd616 genphy_read_status +EXPORT_SYMBOL vmlinux 0xe3136a17 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe35e2314 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xe360f4c4 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0xe384a219 dcb_setapp +EXPORT_SYMBOL vmlinux 0xe38c4b22 bio_put +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3c0b256 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0xe3ce3e43 release_sock +EXPORT_SYMBOL vmlinux 0xe3d18662 follow_pfn +EXPORT_SYMBOL vmlinux 0xe3d74e7a scsi_target_resume +EXPORT_SYMBOL vmlinux 0xe3e2aa29 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3f2fd69 netdev_has_upper_dev +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 0xe41ceccf acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xe4861635 __serio_register_port +EXPORT_SYMBOL vmlinux 0xe497b05e __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0xe4a07e69 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xe4a55823 simple_unlink +EXPORT_SYMBOL vmlinux 0xe4bae689 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4d8a264 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xe4e15823 vfs_get_super +EXPORT_SYMBOL vmlinux 0xe4e1d7d6 qman_start_using_portal +EXPORT_SYMBOL vmlinux 0xe4f5f811 pci_select_bars +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52ba737 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xe5368fc1 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xe573f640 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe59e34f0 __block_write_full_page +EXPORT_SYMBOL vmlinux 0xe5bc0388 skb_eth_push +EXPORT_SYMBOL vmlinux 0xe5c4d79a mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d51a42 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xe6073dee jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xe60afebe __traceiter_module_get +EXPORT_SYMBOL vmlinux 0xe60c7522 register_framebuffer +EXPORT_SYMBOL vmlinux 0xe60d2a14 fs_bio_set +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe630b85c inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xe656bb93 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xe67027e6 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0xe6939de5 block_truncate_page +EXPORT_SYMBOL vmlinux 0xe69baeb7 vif_device_init +EXPORT_SYMBOL vmlinux 0xe6ad5356 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xe6c1b43b simple_rmdir +EXPORT_SYMBOL vmlinux 0xe6c90820 __do_once_slow_done +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe7046f8c phy_resume +EXPORT_SYMBOL vmlinux 0xe71a6fc8 phy_stop +EXPORT_SYMBOL vmlinux 0xe721a5d1 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe7446329 param_set_int +EXPORT_SYMBOL vmlinux 0xe74f9b98 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xe760bd65 sock_register +EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache +EXPORT_SYMBOL vmlinux 0xe770b2d9 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xe7750af4 backlight_force_update +EXPORT_SYMBOL vmlinux 0xe77cf3fa pskb_expand_head +EXPORT_SYMBOL vmlinux 0xe78cc3a0 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xe78e396d ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xe79200db node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe7b31c52 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xe7b34c4b flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0xe7c66c67 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xe7d48d6b fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d7fd5f blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xe7e2f70f sg_miter_stop +EXPORT_SYMBOL vmlinux 0xe80c78cc ipv4_specific +EXPORT_SYMBOL vmlinux 0xe80e73bb inode_get_bytes +EXPORT_SYMBOL vmlinux 0xe8297fcf tso_count_descs +EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xe83b82ac mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xe85da1bc jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe8696305 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xe87d10e2 md_update_sb +EXPORT_SYMBOL vmlinux 0xe8850736 pci_bus_type +EXPORT_SYMBOL vmlinux 0xe887da9b ptp_clock_event +EXPORT_SYMBOL vmlinux 0xe893e90c skb_tx_error +EXPORT_SYMBOL vmlinux 0xe89a0f91 noop_fsync +EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8bbf127 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xe8c1fa6d fman_get_pause_cfg +EXPORT_SYMBOL vmlinux 0xe8df4b3f ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xe8e5fed2 __sock_create +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 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91f6ff1 dquot_resume +EXPORT_SYMBOL vmlinux 0xe92a0a47 dm_put_device +EXPORT_SYMBOL vmlinux 0xe9376a41 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xe951fc64 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe977d752 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xe98f2490 param_get_invbool +EXPORT_SYMBOL vmlinux 0xe997e53d ppp_dev_name +EXPORT_SYMBOL vmlinux 0xe99f6949 xsk_tx_release +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9c7dbb4 mount_subtree +EXPORT_SYMBOL vmlinux 0xe9c89bb4 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xe9d94b6b xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9f034d8 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock +EXPORT_SYMBOL vmlinux 0xea0862c5 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xea19349e inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc +EXPORT_SYMBOL vmlinux 0xea230c88 load_nls +EXPORT_SYMBOL vmlinux 0xea25e54a xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xea2734f5 bio_reset +EXPORT_SYMBOL vmlinux 0xea29e033 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea45fb62 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xea46c399 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xea56e441 is_nd_btt +EXPORT_SYMBOL vmlinux 0xea6056d0 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xea6ab275 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xea6b34be of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea80252e ll_rw_block +EXPORT_SYMBOL vmlinux 0xea806657 backlight_device_register +EXPORT_SYMBOL vmlinux 0xea8269b8 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xea8e0d28 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xea9bb3d4 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xeaa19632 genl_notify +EXPORT_SYMBOL vmlinux 0xeaa9c408 path_is_under +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeac97d4d rpmh_write_async +EXPORT_SYMBOL vmlinux 0xead0674c tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaed50c4 seq_vprintf +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb03e13e dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xeb06c662 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb2391c9 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xeb27c633 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb693214 tcf_em_register +EXPORT_SYMBOL vmlinux 0xeb766b1e regset_get +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb98972c sk_stop_timer +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xebd978a0 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xebe00256 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xebeb20ea __nla_put +EXPORT_SYMBOL vmlinux 0xebf1d497 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xec195ffc _copy_to_iter +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 0xec35fa82 seq_release_private +EXPORT_SYMBOL vmlinux 0xec3abd5a is_acpi_data_node +EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec4e7310 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xec7ee603 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xec93380f pci_enable_device +EXPORT_SYMBOL vmlinux 0xeca4b0ed dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xeca5fdcf __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xecb57953 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xecb7fe7c md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xecbef624 fman_port_bind +EXPORT_SYMBOL vmlinux 0xeccdd9ec ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xecdbdd78 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xece2812c mpage_writepages +EXPORT_SYMBOL vmlinux 0xece4e71a address_space_init_once +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf80dbd netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed0500cd neigh_app_ns +EXPORT_SYMBOL vmlinux 0xed177124 path_put +EXPORT_SYMBOL vmlinux 0xed1c4d2e __sk_dst_check +EXPORT_SYMBOL vmlinux 0xed1ccc76 nf_log_unset +EXPORT_SYMBOL vmlinux 0xed238617 __put_cred +EXPORT_SYMBOL vmlinux 0xed2b33bf mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed5d64c4 nla_put_64bit +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed66a0d0 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xed73921a ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc30716 pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0xedcba65e iget5_locked +EXPORT_SYMBOL vmlinux 0xeddf1fd2 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xedf812a0 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xee1a0977 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xee1bb469 free_netdev +EXPORT_SYMBOL vmlinux 0xee2442be dev_mc_del +EXPORT_SYMBOL vmlinux 0xee29f17b nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee5217be of_get_next_child +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee7f45bc setup_new_exec +EXPORT_SYMBOL vmlinux 0xee84544b netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array +EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea4ca32 tcp_seq_start +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeec4d0df sock_kfree_s +EXPORT_SYMBOL vmlinux 0xeed92d50 path_get +EXPORT_SYMBOL vmlinux 0xeedbf938 send_sig_info +EXPORT_SYMBOL vmlinux 0xeee315fe input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xeeeb1fbb seg6_push_hmac +EXPORT_SYMBOL vmlinux 0xeef6f355 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xeef75fce skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xeeff991c netif_carrier_off +EXPORT_SYMBOL vmlinux 0xef1fbb73 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xef6bb9d7 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xef8a80a1 ip_tunnel_get_link_net +EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xefa051a6 file_ns_capable +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefdb7ac8 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xefea0f32 fb_set_var +EXPORT_SYMBOL vmlinux 0xefed61f7 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xeff14b2f sk_alloc +EXPORT_SYMBOL vmlinux 0xeff8a6fb __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00a5c56 vmap +EXPORT_SYMBOL vmlinux 0xf00af583 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xf026af5a put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf03e96d6 wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0xf05a91e4 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xf069e313 can_nice +EXPORT_SYMBOL vmlinux 0xf0749e1b ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xf0851769 mount_nodev +EXPORT_SYMBOL vmlinux 0xf0862a95 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xf0932f28 __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf09eb395 arch_hibernation_header_restore +EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds +EXPORT_SYMBOL vmlinux 0xf0aab8a1 param_ops_bool +EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0xf0b2aa7c mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xf0bb09d8 qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0xf0c7e2dc seq_open +EXPORT_SYMBOL vmlinux 0xf0cb839e __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xf0ee1256 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xf0fc765a inet_add_protocol +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf1275c7c nf_log_packet +EXPORT_SYMBOL vmlinux 0xf1285fc8 serio_reconnect +EXPORT_SYMBOL vmlinux 0xf14e5c0a pci_release_regions +EXPORT_SYMBOL vmlinux 0xf15cae2a generic_setlease +EXPORT_SYMBOL vmlinux 0xf164b2ec proc_create_single_data +EXPORT_SYMBOL vmlinux 0xf16df79c vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xf1789cf0 simple_get_link +EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb +EXPORT_SYMBOL vmlinux 0xf183fc15 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xf192025c dma_supported +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1df3096 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e64945 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ecf345 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xf1f38530 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xf1fdca20 dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0xf1ff1d04 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xf2067c0d deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xf21af17f mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xf21ed80c proc_symlink +EXPORT_SYMBOL vmlinux 0xf220f61e xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xf2215a4e xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xf228890d tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xf22eca8f balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24f5c38 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xf25ed286 dump_skip_to +EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf28afc95 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2ac9af6 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf3160b7c vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xf32abf0d posix_test_lock +EXPORT_SYMBOL vmlinux 0xf341ee35 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf353de2c migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf376b199 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xf37e1d7b d_alloc_anon +EXPORT_SYMBOL vmlinux 0xf38a9ac3 inode_init_always +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused +EXPORT_SYMBOL vmlinux 0xf39a82bd genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xf39c9fdf make_kuid +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3caae00 build_skb +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f041a6 nonseekable_open +EXPORT_SYMBOL vmlinux 0xf3f9f66c rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf4102303 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xf431a088 xudma_get_device +EXPORT_SYMBOL vmlinux 0xf4384147 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44d53d2 dma_set_mask +EXPORT_SYMBOL vmlinux 0xf451649f kmem_cache_size +EXPORT_SYMBOL vmlinux 0xf463a88b scsi_device_get +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4852ece pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xf4985fb3 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xf4b2e84b kset_register +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c83b77 add_watch_to_object +EXPORT_SYMBOL vmlinux 0xf4d2c7aa uart_resume_port +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4db999d pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xf4e71fac neigh_destroy +EXPORT_SYMBOL vmlinux 0xf4ec6b2f pipe_unlock +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f3586d vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xf4ff7f48 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xf508b2c7 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xf5158173 pci_iomap +EXPORT_SYMBOL vmlinux 0xf52e67ff config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf53ff56a locks_init_lock +EXPORT_SYMBOL vmlinux 0xf54a916f clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0xf5770571 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xf58a48ff from_kprojid +EXPORT_SYMBOL vmlinux 0xf59eff85 tcp_seq_next +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5aa384f vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xf5ab21a2 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid +EXPORT_SYMBOL vmlinux 0xf5bdf452 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xf5d84779 devm_register_netdev +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf625df7e skb_free_datagram +EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0xf63bfbe6 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xf6430aea lease_modify +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf646dc33 inet_shutdown +EXPORT_SYMBOL vmlinux 0xf659572d vme_irq_request +EXPORT_SYMBOL vmlinux 0xf6628411 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf6802fc5 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68abe01 vfs_mkobj +EXPORT_SYMBOL vmlinux 0xf68fe209 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xf6acff85 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xf6aebcc6 neigh_table_init +EXPORT_SYMBOL vmlinux 0xf6c8728c init_net +EXPORT_SYMBOL vmlinux 0xf6d06fc5 dev_load +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f53a6e __alloc_disk_node +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70c320b locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xf72205c2 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xf72c9502 seq_file_path +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf74554da mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xf758c725 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf75cb660 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf768c0be unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio +EXPORT_SYMBOL vmlinux 0xf788399d blackhole_netdev +EXPORT_SYMBOL vmlinux 0xf79362fb pci_write_vpd +EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr +EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash +EXPORT_SYMBOL vmlinux 0xf7f8c781 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xf809a3bd setup_arg_pages +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf813326a ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xf8170350 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xf81e497c set_anon_super +EXPORT_SYMBOL vmlinux 0xf8281712 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf831b65c inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xf8374cae jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf857ca0f xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xf85ed38c tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xf866b00c tegra_io_pad_power_enable +EXPORT_SYMBOL vmlinux 0xf885e46e mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf89a2b0b xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d5b954 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0xf8de9a22 tty_register_device +EXPORT_SYMBOL vmlinux 0xf8ea648d ip_getsockopt +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf90b5693 sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct +EXPORT_SYMBOL vmlinux 0xf92f6ec1 fman_get_bmi_max_fifo_size +EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf9521bd7 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xf954726c blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf9668561 tty_port_open +EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len +EXPORT_SYMBOL vmlinux 0xf9953466 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xf9984373 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xf99be538 input_open_device +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b33b5c kernel_connect +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9cda89e ethtool_notify +EXPORT_SYMBOL vmlinux 0xf9cf3436 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xf9d85039 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa0e7a1b generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xfa1a7f88 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xfa1af9b4 file_open_root +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa30b334 generic_read_dir +EXPORT_SYMBOL vmlinux 0xfa44e345 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa59a211 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xfa5b9167 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xfa5bf4de dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xfa864eb0 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfa88ed87 param_ops_short +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfab2a8d2 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xfabf4098 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfaccfe1c flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0xfacd8c28 nla_put +EXPORT_SYMBOL vmlinux 0xfad2b0fe simple_rename +EXPORT_SYMBOL vmlinux 0xfada119f __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xfae5f488 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xfb0b62e5 bmap +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb372211 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb3b2df4 udp_seq_stop +EXPORT_SYMBOL vmlinux 0xfb4831d1 dup_iter +EXPORT_SYMBOL vmlinux 0xfb4ddd6b dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7da621 sg_miter_next +EXPORT_SYMBOL vmlinux 0xfba7a150 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbaff4b0 scmd_printk +EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbba5a81 dput +EXPORT_SYMBOL vmlinux 0xfbc27177 tcf_idr_release +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd8fafd igrab +EXPORT_SYMBOL vmlinux 0xfbdef938 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xfbe04f8c inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfbeca169 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0xfc1d371b mount_bdev +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc34811c phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc470fd0 user_revoke +EXPORT_SYMBOL vmlinux 0xfc4cd6f9 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0xfc5325e8 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xfc5ad1e3 sunxi_sram_release +EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset +EXPORT_SYMBOL vmlinux 0xfc88360f dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xfc95593f flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xfc9c276c xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available +EXPORT_SYMBOL vmlinux 0xfca33d13 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xfca7933c tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcdd066f scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfd5728 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xfd1fdf4a tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xfd661562 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xfd6f86c7 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xfd732950 tcp_req_err +EXPORT_SYMBOL vmlinux 0xfd73e005 fc_host_fpin_rcv +EXPORT_SYMBOL vmlinux 0xfd805fba setattr_copy +EXPORT_SYMBOL vmlinux 0xfd866714 netdev_warn +EXPORT_SYMBOL vmlinux 0xfd8e2ae0 mpage_readahead +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdb32c74 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id +EXPORT_SYMBOL vmlinux 0xfdc1c2d1 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xfdc8dc63 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfde38b43 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xfde757e6 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xfdf41511 tcf_classify +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe1a5c43 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe456e46 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe604af3 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xfe70f25d bio_free_pages +EXPORT_SYMBOL vmlinux 0xfe7bc6c6 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xfe86b5dd dev_driver_string +EXPORT_SYMBOL vmlinux 0xfe8996c9 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfe9eef89 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xfea60732 iterate_dir +EXPORT_SYMBOL vmlinux 0xfead8bc4 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0xfeb187c6 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef109a8 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xfefb0286 cdev_set_parent +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff035a16 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xff078f2d generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff4858b7 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xff5504de skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xff62c36a tty_port_close_start +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg +EXPORT_SYMBOL vmlinux 0xff847074 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xffb6936c ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffd25d87 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0xffd3e375 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xffd945eb pci_remove_bus +EXPORT_SYMBOL vmlinux 0xffe250de con_is_visible +EXPORT_SYMBOL vmlinux 0xffe47109 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL_GPL crypto/af_alg 0x074652b2 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x2b1f1eda af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x2de8647f af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x31af905d af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x4541f38f af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x494491d3 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x4b2bcbff af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x562c5652 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x5c08cfae af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x5e5da60a af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x60d95e89 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x60e9a9cb af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x6586e3c3 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x9ab6edc0 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc7f9ec69 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xcd079ad8 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xdd7cb699 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xfaec5787 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x48432112 asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xab5510e5 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x48c27e19 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xda3048f6 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x9629b263 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xf30ebd70 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x063dc376 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x46726cc1 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5f9041ac async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x707ee58f async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x30def64d async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7b26936c async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xb872534d async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xfc2e9d1a async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x6f129b0b blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x9d242077 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x28808976 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/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 0x1b85ba83 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x3401393d cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x38a578d1 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x54aa5509 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x6f87ed3f cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x79a1c162 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x9ad4e058 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xb369fd1a cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xb5865e44 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xb68c28ca cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xde756d53 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xea665795 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xf4170434 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x088e7634 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0ad0bc9c crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x12a9d6a6 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x14315dc4 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x267fe162 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3e50e2af crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4696ad00 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4dbb279e crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7aa4539b crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x970047ed crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb31652da crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcfabeddb crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdc5a7395 crypto_transfer_hash_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 0x851c747c simd_aead_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xc1094eae simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xe34cafa8 simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xe7f5e243 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xed7fcd03 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 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xe077f92e serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/twofish_common 0x3beeaa86 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x33043c64 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x404cd943 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x463e7ca6 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4832758c spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x751271e3 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x9e9a0e5b spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x9ef66bb6 spk_var_store +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 0xbe4f06f4 synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbf74f067 spk_synth_is_alive_nop +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 0xd1a5d4fd spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd39c74f3 spk_var_show +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 0xde3aa929 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe851795d spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xeaa59961 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xfa760920 synth_current +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x4f650524 __pata_platform_probe +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 +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd3e29970 charlcd_backlight +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf3304696 charlcd_free +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf883c540 charlcd_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x07b26ecc hd44780_common_gotoxy +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x1aa688fd hd44780_common_lines +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x23159a5b hd44780_common_clear_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x30e85287 hd44780_common_shift_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x36dc00a2 hd44780_common_print +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x3c4c183f hd44780_common_home +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x489c89e8 hd44780_common_redefine_char +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x64415593 hd44780_common_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x79e8e259 hd44780_common_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8585e5fd hd44780_common_blink +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8d4f3fa4 hd44780_common_init_display +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-i2c 0x2d484c79 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0xe15cba08 __regmap_init_i2c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x05ed1917 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x614e9583 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x144a5c89 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2129f7ef bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x29560fb3 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x33308a7e bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3542652b bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x431872b7 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4986d734 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x592d6b55 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5b34972e bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x97e5e099 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa091848b bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa7bed55c bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb4e87481 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb7ee28e6 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xba51334b __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc2ccc043 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xca167155 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xce3b5d29 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd6270551 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe013d3ac bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe57a85cb bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe59e060e bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe8b29a46 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf1810abe bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x13898de2 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1bb8e506 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1e127c77 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x20fe25ac __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x27d84e10 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x28ea4c92 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x328fc307 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5739ac09 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x576cf82b mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5b81b426 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6dfc8a49 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x70843126 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x71d31754 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x78c20ff4 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7bc9495f mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x85ee9ce6 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x86fd37b5 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa3792561 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb1af9b9f mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbcc35f24 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbf85e807 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc5346e07 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc72543b2 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc78c430d mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcb9d714b mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd075384f mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xde2fac0e mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe5b1b5aa mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe6a9319d mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe88feb44 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x7b5dc163 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xca5a2296 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xdc6661f6 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xecc2f791 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xa22565fa sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xfff4a312 __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x8f3041a9 meson_sclk_ws_inv_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x91497d8c meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xcb3bdbec meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x10810d8d 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 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 0x147fe0e0 qcom_cc_really_probe +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 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 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 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 0x3959f356 qcom_cc_register_board_clk +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 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 0x5a6ae327 clk_alpha_pll_configure +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 +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x63ee9aa4 clk_alpha_pll_fixed_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66922845 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67a553a2 qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67b3e180 qcom_cc_probe +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 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 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 0x8515663c clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8945f752 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 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 0xa3b73ebf devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa73a06e9 qcom_cc_probe_by_index +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 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 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 0xd438c1c3 clk_alpha_pll_postdiv_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd724dcdf qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd7ab6782 clk_alpha_pll_postdiv_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd7d7be4e qcom_find_cfg_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdc014e02 qcom_cc_register_rcg_dfs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe34a7f9f clk_regmap_phy_mux_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/clk/qcom/clk-qcom 0xf9b24198 gdsc_gx_do_nothing_enable +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x096aa17b sprd_div_helper_recalc_rate +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 0x1e998ca1 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 +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x6b8639b9 sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x911aa4a0 sprd_mux_ops +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 0xc9a7c933 sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xe305cb73 sprd_comp_ops +EXPORT_SYMBOL_GPL drivers/counter/counter 0x52168c0c counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xc0ebf12f counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf32c1a8c devm_counter_register +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 0xe8d43a8c ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0a8efc0f hisi_qm_get_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1085dcce hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x15ae4c61 hisi_qm_wait_task_finish +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1908b908 hisi_qm_reset_prepare +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1ca09f20 hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1eb7c47f hisi_qm_resume +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2498069f hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x292b0b02 hisi_qm_dev_slot_reset +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x47a5bf94 hisi_qm_pm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x54b8085f hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x59664f1c hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5a2d0f4d hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5ea05afa hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6c7ebaf5 hisi_qm_free_qps +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6d18cb7d hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x774ff275 hisi_qm_alg_register +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x82e2035d hisi_qm_alloc_qps_node +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x850f7a1c hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8c27a854 hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x90920901 hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x96e560fc hisi_qm_sriov_enable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x994fb7c2 hisi_qm_pm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa38e1ed7 hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa4feba4d hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xad6ebade hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb49c0008 hisi_qm_dev_err_detected +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc073eac3 hisi_qm_reset_done +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcae74655 hisi_qm_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xda29c89e hisi_qm_alg_unregister +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdb03f9cb hisi_qm_put_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdf3cae63 hisi_qm_sriov_disable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdf6de983 hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe4081f64 hisi_qm_suspend +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xebc750fd hisi_qm_release_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xec68c54c hisi_qm_create_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xefea6802 hisi_qm_get_vft +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf92ccb3a hisi_qm_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf97acd14 hisi_qm_get_free_qp_num +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xff268861 hisi_qm_sriov_configure +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 0xff1e1eea otx_cpt_eng_grp_has_eng_type +EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0xa64bcf8f __dax_pmem_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xee96bdf2 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xfcc7ffb4 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x08993a38 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x32405808 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x47e5908d do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6e82c5d8 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8e91c7ea idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9c76fff3 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb96f6f45 dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdb48a382 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe0527c5b do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x293b8431 dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x444d12c7 dpdmai_destroy +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x5ff8121b dpdmai_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x73506458 dpdmai_close +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x94bf3f5b dpdmai_reset +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xa344388d dpdmai_open +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xb69e5835 dpdmai_get_tx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xc6133507 dpdmai_get_attributes +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xcf6ce7ff dpdmai_set_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xf33bf5f2 dpdmai_get_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0cbed962 fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2b6c355d fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2c690137 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x309642f6 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4368f4e2 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x59448576 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6db34408 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x81fcf645 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa756ad4e fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xafa01486 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xafbe4fa6 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xafdcf609 fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb61e8358 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb7cd33d6 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb7d8251c fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf2ea0877 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x4d1aeca1 ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x51e6d538 ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x6017db03 ffa_dev_ops_get +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x7295559c ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x9f949b56 ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xb25254ae ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x38c08e2c 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 0x8e749755 stratix10_svc_request_channel_byname +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xd3df684d stratix10_svc_send +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0f73fc86 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x19820151 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2b38abeb of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3877c3f5 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x484a9f59 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4d7504a8 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8cf44d4f devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9855b81d fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9b475523 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9c5da6ca fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa01358d7 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbb4335de fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfb2ebf9f fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfea0e58f fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x182c39ab fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x1ed3fb3a fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x33cf0460 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x808259a1 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x82f084f0 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb0423760 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb5251070 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd1ecc100 fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xda7504e1 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xea7440c0 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xa07371e2 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x06c3851a sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x86f73a70 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x000c65fc gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x1f319f75 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x424145cb gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x69b61681 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x6eb118cd gnss_register_device +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xb72570ee __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xf1366177 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xadd83b33 gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xef396d5b devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x0f7a5b79 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 0x49b6ce58 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x541350ec analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x57e24aff analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x66de7572 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x84b1f1d4 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x9d0f1794 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe9a35d47 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 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 0x3ab96ecd dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x3db1f9d2 dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6304267b dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8c56146d dw_hdmi_set_high_tmds_clock_ratio +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 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 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 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 0x909fbbc9 dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xce9e81eb dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x07d59f7d drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1386a828 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1472d6ab drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x237df673 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x333e1b78 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x33f84c20 drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x38c0f878 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3aab5b94 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3b9713b7 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x47caaf01 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x56fa2200 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5c51334d drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x614e204a drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x65d5aca4 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6a04e692 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6ddf91ff drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x74bde1e0 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x75c01648 drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x84a55274 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9557ce27 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x96cbeec6 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9df3bb31 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa17dbbf4 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 0xbd46f0b3 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc7057d0d drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc797a5e0 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc7f6daf1 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd0a87872 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd67e947d drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdff975fd drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe3a7e10b drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xebcffac5 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec7e9435 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf143bd28 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfece0dcf drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x26f62d40 devm_of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x323985f2 of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x988de9c8 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xa1494e99 of_dp_aux_depopulate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xeee8ca80 dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x193de2da drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x26dae85a drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x272acefb drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x30798598 drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3a880dfb drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4cadf72f drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x67a0db05 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8425ed0c drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8890e98b drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8c1e582c drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa418ceeb drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xadb08e71 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe754f291 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x83f7e4f7 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x94a785f8 meson_venc_hdmi_supported_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xd6054333 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xeb5762fd meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xf9ee95a3 meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x1d823539 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x397f91bb s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x20bef3ff pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x7dbe1874 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xa7fceaf0 rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xcb6aadea rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xe89a5d1b rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x07ed11a1 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x9f5d3481 rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xafaa5c00 rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xd69bedbf rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x4443a91e rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xe40d070c vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/hid/hid 0x005d6811 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x08301cbe hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x11aa2415 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x133820dd hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1619b007 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b47f524 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2be8a384 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f2656f7 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3265e4fe hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x35ab3523 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x363a005a hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x426d6e4c hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4a01d215 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e6d9710 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4fee3770 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x53266c34 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x540cd093 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a687d99 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5b15b7ee hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c3695b4 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x615dda60 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x630fa2ab hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x67b49bd0 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6f445472 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x77709a2c hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x822eeca5 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x83ea00b5 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x959b72a9 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x95b42d5a hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2bb9bd0 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb86e7846 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb9e928d4 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbf23bbb6 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0f400a2 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc24c41cd hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc2bd1822 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc6927ec7 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcc3bec66 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xccbc7904 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd570366c hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdb4272da hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdbe8a73a hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe5658fe2 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd9a5e00 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x388e5740 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x436ce9cc hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x512c8471 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6247c436 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x64984546 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcc3613fb sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd316e33d sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe32f8715 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xef4f5d6a sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1c44f882 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7d6b636a i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x8b24a25c i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x98c635a6 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x9efe2768 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x398aa218 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x143512ad adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x50a806d3 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xa7391ebf adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x761229d6 ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x027f02af amd_mp2_bus_enable_set +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x46c83219 amd_mp2_process_event +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x528e0163 amd_mp2_unregister_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x65ffe8cb amd_mp2_find_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x9c17e710 amd_mp2_register_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xb3861f84 amd_mp2_rw_timeout +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xdc2c2ead amd_mp2_rw +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x297ff81a i2c_dw_probe_master +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x33d56a8b i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x4d45ec04 i2c_dw_configure_master +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x6a260353 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7877d701 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xe14edfad i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x03ea82e1 i2c_adapter_depth +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x14fbf580 i2c_slave_unregister +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x1667e9b4 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x1f26fae9 i2c_new_scanned_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x28a9469c i2c_new_client_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x2b07b60e i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x45db48d8 i2c_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x501499f2 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x53c16786 i2c_get_device_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x5a2b2f00 i2c_slave_register +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x63d359bb i2c_match_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x68827fda devm_i2c_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x8092b3ec i2c_recover_bus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x8218c21a i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x83926a20 i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x85188e88 of_i2c_get_board_info +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x86015cc2 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x894b2ea8 i2c_adapter_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x8961d613 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x93ff9d98 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x953b4290 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa1fcd7c8 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa38f4b49 i2c_acpi_new_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xb3336209 i2c_for_each_dev +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xb4cbc7d5 i2c_of_match_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xb992aeb5 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xbf28f55f of_i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd95e02b2 i2c_client_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd9a05832 i2c_acpi_client_count +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe4947394 i2c_bus_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe8854b90 i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x0470636b i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x46f5883d i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xae68af32 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd64a225d i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x044251b4 i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x0e418e8e i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x327003d4 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x87e3129f i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x02c3ac11 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x04a2e9f2 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0dc0866d i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x10b5936d i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1a7b14b1 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x23db3a68 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x382d1d43 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3c7ddb38 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3ef2eb72 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x468fe0c1 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6f938829 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7015fad7 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x80bcfe9d i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x81c405a1 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x84d0dabb i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8c802825 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x91f849a4 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xaf5410d6 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbfca9b92 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc1b4f04e i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xda177c7c i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe5896f01 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe96d1557 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xec5d5197 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf22bd457 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x09733deb rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x09e12c07 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x13a1176c rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x28dc8155 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3a4af55c rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x67ff5b9c rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x777d1260 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9a5e0bda rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb078db05 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb98e050d rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc8558454 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcd3467df rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x11528f2c input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x36845672 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x3988eb7f imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xcf5e0483 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 0xb346dae5 of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x139acf0e qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x5480ccc3 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x578be546 qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x835ea6ad qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xa00ebde1 qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xcc5dbc6b qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xe15ca8a5 qcom_icc_rpmh_remove +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 0x1606ad47 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x227f922b ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2b0e776a ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3153c465 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x609c44b7 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc3c38c04 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcbc1fb86 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd95b0927 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe5304964 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x31565db7 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x5817a2b0 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x5cb1c46e devm_of_led_get +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x74c5557a of_led_get +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x7b945967 led_put +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x80c1797e led_classdev_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x96c72d28 led_classdev_suspend +EXPORT_SYMBOL_GPL drivers/leds/led-class 0xc8062c36 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class 0xce13e062 led_classdev_resume +EXPORT_SYMBOL_GPL drivers/leds/led-class 0xe936ad4f led_classdev_register_ext +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x03ee73b6 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x054d2fe7 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x08106fd7 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0b7dd3f1 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1cd87034 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3865349f lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5706a055 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa6814c1c lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe32d091d lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xeffe341a 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/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 0x1484d7e2 __traceiter_bcache_journal_full +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 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 0x214f1d89 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x2ca77269 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x39126c1a __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3dc2a0ba __traceiter_bcache_request_end +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 0x477b3283 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4972e75d __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x50a2e1dc __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x53b5e5e3 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x59287a9b __traceiter_bcache_request_start +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 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 0x6e063672 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78efc9d8 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79734552 __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 0x7e37d8aa __traceiter_bcache_btree_node_alloc +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 0x8fe71af6 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9865dbc4 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0xa71300a2 __traceiter_bcache_btree_set_root +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 0xb0b4d345 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb912ae0b __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc268695 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc5233a56 __traceiter_bcache_btree_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 0xce48d6f4 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcfe9f9fa __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd3081954 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe202b8e6 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe8018344 __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 0xed58fc6a __traceiter_bcache_btree_insert_key +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 0xf51f9f8f __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf70022f7 __traceiter_bcache_btree_node_free +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/bcache/bcache 0xff960efd __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1b819eef dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2273c406 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 0x2f79b373 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7dfc326d dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x934c0e1b dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x970ef643 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9e6ba49e dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa0e4947d dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa2430e80 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xab30da18 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb0cf158d dm_cell_put_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 0xc6cd91f2 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd18ac44b 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 0xdc9ff8af dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe261db66 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf603b3d3 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf7e673a0 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 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x347adbe5 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 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 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +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 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5e346ce3 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 0xadbefda4 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbefffc64 dm_cache_policy_register +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 0x70ce1f62 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x86a9508a 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 0x07e1ba74 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a8b77ff dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9dab5dc6 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9daba360 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa7fd53a4 dm_rh_delay +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 0xc27b5e9e 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 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 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 +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 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 +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30a26537 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30c37cc0 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x382a0134 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ae50a4a dm_tm_inc_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 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 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 +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5736c9c5 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x586705e1 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6b2357b6 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c218062 dm_bitset_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c2c7ef4 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7062014c dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x73420d49 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x75606d09 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x79bdc649 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b6b3af5 dm_bm_read_lock +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 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 +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88a5c035 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8db6f8f0 dm_tm_with_runs +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8f5eefee dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x925f421d dm_array_info_init +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 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 +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 +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 0xa9cf611b dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaed9cbba dm_block_manager_create +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 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 +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 0xdf3a4e7d dm_tm_create_with_sm +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 0x053e15a7 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x10a34ee2 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x127caf76 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x161435f7 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3bae951c cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x445c8c1a cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x56e0ab3e cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x634b8803 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x87cd504f cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa46e3bff cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xab9289f5 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbc7624a7 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc2433a8f cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc6a34907 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc9e241d0 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd7b513da cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe723f887 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe9f5a134 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf3c498b8 cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfbd10a4d cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfd0fa278 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfd1fe764 cec_delete_adapter +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 +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb40fae23 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +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 0x00088388 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x082e0848 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x13cff421 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x13ea198b __traceiter_vb2_qbuf +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 0x2593ff3e vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2eaa22b8 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x326c2d14 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x34ed5c9a vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x45f1edea vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x48b0f2a1 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4c6f293b vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5384fac3 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x56f41fce vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5dcd3f01 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x641bf7ca vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7a2a25dd vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7b81aa5d vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9f5a2cbc vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa2f657ff __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xad1fb797 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb87876ec vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbfe99708 vb2_thread_stop +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 0xca7369e6 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdf2cc0a8 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdfea5a3d vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xeb39b5f0 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xed3ea455 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf2c94235 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf6b300e4 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x1f7ddf37 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xf07c87dc vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x56956e22 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xb06ebf73 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x02e8316f vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x04bf146c vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0a069f09 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1875802b vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x248efaf0 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2a2da64e vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2a5459ef vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x339a3174 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x39b8c656 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x412feea3 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x42f95b20 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4383f41d vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4aa477e1 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5a9a61a9 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6fe43305 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x73864c70 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x77867739 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7870ae0a vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7a32e9cc vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x854508f6 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8be1116f vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x90d46633 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa0550fab vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbddb6d71 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc974620d vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd6ae54f2 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd8e8df8a vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdcc6cdfa vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe0adea2d vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe0f5ed3e vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe6c4fca2 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xeec8c2e4 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf65acb42 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf842f69c vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xacebaeb7 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x07cd7515 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x086487fa media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x155e9e96 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x174a9434 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1852dbe5 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2c133b11 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3d969c2d media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x41c318ef media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x42040640 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4441e8d1 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x534aab07 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x56980d55 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6b77cddf media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6bb18f7f media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6bdb5b60 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6f00a310 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6fcbb742 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x71684e4c __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x84c7341c media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8a21dcd4 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x908e23dd media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x93bb318a media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9990d11b media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xadba0a9e __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb6efcc66 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb89ed8b1 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbb785945 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbdf3da84 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc3d4329a media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc719399d media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc92e8319 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc9a21415 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xca75d9fa media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xced97d0d media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcffed43e media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd6f3d1aa media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd75b5a46 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd8e09789 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd9fd2b48 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xda00ae62 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdd6fa7ee media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe414de63 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe81dfccf __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe9d864db media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeba76f91 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf8802a40 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x0a7999a8 nal_hevc_tier_from_v4l2 +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2988184f nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2d8d7ab9 nal_hevc_write_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2e5a8f46 nal_hevc_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x36d13921 nal_hevc_level_from_v4l2 +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x73a5a9c7 nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa7b01887 nal_h264_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xbba96c2a nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd0fc7c96 nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd3ac2937 nal_hevc_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xda687e65 nal_hevc_profile_from_v4l2 +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe0c884c4 nal_hevc_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe7a2b091 nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xecd61f2b nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xed260c03 nal_h264_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xff10de70 nal_hevc_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xffc1c63c nal_hevc_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x9c2f17a9 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xa4d4360c mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xc2a56377 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xc3f95e9b mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xcc073bd3 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x285a9ca1 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x338c8eec vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x480dc65d vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x5ba58030 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x9b8e5673 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xb1add8e3 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xc96fc68e vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xfa9d9089 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x00a0e8fe venus_helper_set_num_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x034010e5 venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x04e31caa venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x07462372 hfi_session_get_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x10fa70b3 venus_helper_vb2_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1afdb942 venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1c3cb9f6 hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2232a851 venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2318b720 venus_helper_get_opb_size +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x24026a08 venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x24f31c85 venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x26385729 venus_helper_vb2_buf_prepare +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x27b12c5f venus_helper_m2m_device_run +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2d693ecb venus_helper_m2m_job_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2f09c154 hfi_session_start +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3767a2a1 venus_helper_set_format_constraints +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4a222777 venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4c16a0e1 venus_helper_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x51015342 venus_helper_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x53ac31ce venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5539687e venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x563bd40c hfi_session_destroy +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x628674b9 venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x69cbe484 venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6af29e73 venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6c9e5bc8 hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6f556425 venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x72a16948 hfi_session_unload_res +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x72a871db venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x76074906 hfi_session_flush +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7b690941 hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8ce9db8c venus_helper_unregister_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x90816935 hfi_session_process_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x925bffd9 hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x930d0a7a venus_helper_set_dyn_bufmode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x96a69174 hfi_session_create +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9d557fb4 venus_helper_set_multistream +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 0xbd794641 venus_helper_get_ts_metadata +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbfd7310e venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc0982e5c venus_helper_get_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc5f99a8b venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc905d4ea venus_helper_get_out_fmts +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 0xd50148ee venus_helper_intbufs_realloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd6f3bf6e venus_helper_set_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe71d5c55 venus_helper_set_color_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe7313860 hfi_session_continue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xec2dca51 venus_helper_set_work_mode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xef3d8030 venus_helper_queue_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf38daf61 venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf4ddfeb5 venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf64aa20d venus_helper_alloc_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf75e02df hfi_session_set_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfef12b6c venus_helper_acquire_buf_ref +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 0xddce0134 rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x2b16ee37 vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x2bb0a677 vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x36f4c958 vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x39e2311c vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x549c83f2 vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xd528653b vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xe10881dc vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0048e24f xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x14237c56 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4f44cb45 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa8fbfc5b xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe1a8e018 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf02e423e xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfce30963 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xb981b2f6 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1936142b ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2aba419f rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x36fd3d4b rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3b0e68eb lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x43e15c23 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4657cbc1 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x521c143f rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5cf39314 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5d521fb9 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6e41da68 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8fa82171 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9d9817f3 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa6dd7b9e devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbf488c06 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcafc349c rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdd950122 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe142a9e7 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf164b792 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x2b7619c9 __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x79ed60d6 __v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x85c37e18 __v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x97f54f5a v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xa14f35ee __v4l2_async_notifier_add_fwnode_remote_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 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 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-fwnode 0x18536bd4 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1d813d08 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x220163e0 v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2dadc4a0 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x30a27811 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5c8f6e91 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x80cdb240 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x994a383f v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc92fcd40 v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xde1135be v4l2_fwnode_parse_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 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0x30b5ebc6 v4l2_jpeg_parse_scan_header +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xcbfdf5cb v4l2_jpeg_parse_frame_header +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 0x01bde2a8 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05553744 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x14b90a2f v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15891a0c v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x18fa430c v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1928912b v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x215304e1 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x25a259a3 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x263b4878 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2752d7c6 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x27828005 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x29dc335d v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3272da2a v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x39242c35 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x443c203d v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5d61ff05 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5e22c3ea v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x65b91928 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x68f34bd3 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6a969897 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6d622cfc v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7134ad9d v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7c1237b2 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7d99c317 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7f3c6edb v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x86e52ad4 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8a0c013b v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8f0ba391 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9b5d2dc6 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa12713f6 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xafbffd8d v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb2cc98c7 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbe089ecd v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd12856bd v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd4297dbf v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd66500b1 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdaeb3706 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdf3278b2 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdf567ca7 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe421a330 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe8e294db v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf0f0d7d5 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8624660 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfba3a9a1 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d82b52c v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16a71f83 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x191f060c v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20549b35 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x22cfa9d6 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2faa22c5 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x340d03e6 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3b5e7732 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3bc45613 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3d25d9b7 __v4l2_ctrl_handler_setup +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 0x496d3711 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ad7b2e6 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4eddd058 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x533836a3 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x53e0fc04 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61f2d449 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x62d56400 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x64d37fe6 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x688d0582 v4l2_subdev_alloc_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x70277873 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x70871296 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x736063a3 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x750e572e __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7e795829 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x826289a1 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x82a01dc9 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x91230e33 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x917cec9b v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x93a74a52 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fe48752 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa0a55441 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1ab6342 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2471379 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7518434 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaef896fa v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb00e5b37 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb73a4658 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb9ae3bd7 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbcf63d5e v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbd8cf167 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc1d531dd v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc742d6e8 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc768f137 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcdff8ef2 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf810d03 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1dbf28c v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd200fc40 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd7adc139 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde795f9a v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdfed22be v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe213b3f5 __traceiter_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 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe7776af8 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe94b6171 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb17043f v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3193d69 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf562d20f v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf92fb075 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfa184186 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfac199d1 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0xba5ca2f8 mtk_smi_larb_put +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0xdf70037b mtk_smi_larb_get +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x23d1101d pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x705b9b97 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe8c40e7f pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1c314303 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3b9be6c8 cs47l24_spi_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 0x41084a1f arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5f09824f wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x79612135 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8c8b1bf0 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9d64bc80 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa25ad672 wm5102_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 0xb240fdc8 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb4bf4318 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb942fcb2 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbb2c76ba arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc533fb85 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc7971563 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd7e014ff wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xddcd70e3 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe162173e wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf090c1ca wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x465a30e3 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x7bff8b75 atc260x_device_probe +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/lp3943 0x5e669396 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x734ee520 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xcf4932d4 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0a73f4f0 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0a7e28b0 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x100b662b madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x12a68340 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x12ab5f00 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x252798bd cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x252a44fd cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2c6ff1f1 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x38016f88 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x380cb3c8 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4946e9fc cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x494b35bc cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x51939e4c cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x519e420c cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x609ddf52 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x639f60ed cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x661285b1 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x661f59f1 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7b347284 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7b39aec4 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x82ca14ce cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9d071b98 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb1f7d848 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb1fa0408 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc6eb20d3 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xde9b84ff madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf2c2c544 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf2cf1904 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/max14577 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL drivers/mfd/max14577 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x03c2d710 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1952f7a5 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6e5f57d7 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa84f4d45 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xba40b82d mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe8f50665 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x04039d0d pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x04de7fec pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1bc28a76 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x20fc9caa pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x52f6dc53 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9bd97ac3 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb2f5c29b pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb719d9e2 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xce32b810 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdc97d286 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfee93eeb pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x097a9e94 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x38420ac5 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1c5db21f pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x31de5e3d pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6a451264 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8611f4d4 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd82c26a5 pcf50633_gpio_get +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/sm501 0x4439f7de sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x569b916f sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x74e4c915 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xdb706b96 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe96762fc sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0xb4370a1d sprd_pmic_detect_charger_type +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x21c4067c stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x53e2009d stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x49b574eb am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x53902368 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd063631d am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xfd1db9fa am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x3d0737c0 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x6c983daa tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x85355b2f tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xad8475ef tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x3186f063 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x82653513 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd1407b10 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x003017b5 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1b2b6f9a alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8b7dfd10 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xb66886d1 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xdb6b0f62 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe3aefd2e alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xede1fbef alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x24a9eb9e rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2a3d4fea rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x408a9602 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x48669c86 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5ad49383 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x63d0a445 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x716d5d57 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x729ce3da rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7c42e1f2 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x81f5dfb6 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8227873b rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x82646773 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x85e2a785 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8aa8d639 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x94b21095 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9b9680af rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xade9b1c8 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xaed9f6b0 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb1d57674 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb65bb1d4 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb96a6427 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xddbdb548 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf9092628 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfe21f424 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x30cb26cb cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x55d9b2ce cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc5d923cc cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xea6195f9 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x3cb83d5b eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x870b53e9 eeprom_93cx6_write +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 0x1c117a7e enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x299f36ef enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x39573aae enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x43137248 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7198e61d enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x79cf588d enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x98ed9296 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xecbcbfc8 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x021bc677 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x6b08347a uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xdcce5547 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xfe77e522 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x038d1987 vmci_qpair_peekv +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 0x15e00ab6 vmci_qpair_dequev +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 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 0xc1678082 vmci_qpair_enquev +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/most/most_core 0x080f5305 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3512e34b most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3f41dd84 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x42ee7d98 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x43c9a42c most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x6a691eb1 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7bcf1d74 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7f64269f most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x8927abad most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x8eba3edc most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x936c4c0d most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9c3ad1e6 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa53202a4 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfc51eec5 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x01ec17b8 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x031599a6 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1d61ff9b mux_control_try_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1f3d31a7 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x267d195f mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x55b10224 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7d38eaae mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x87adde0c mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa0f6a693 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc4036a7e devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd1255a1d mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf4b9f909 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfd6ce6b7 mux_control_select +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x2224c643 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xee7e39f5 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/bareudp 0x237800cb bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1e99369a alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x62fedc1e c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x860efc33 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9b3949aa unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb26ae0a7 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbdd70d03 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x00212c05 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0eae6d2e can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x190bed3f can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x23675a05 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x25f57d38 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2cdbb225 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x33022c87 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x389307ee alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3dda9468 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x431dd192 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x51080fd8 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5c8816e7 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6315b40a can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x753bbbad can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7a3d7a3a can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7b11b55e unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7b7c1c80 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x82ec4938 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x84e0f139 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8ae1873d safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8c39c21c can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9e49f99b open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa2c839e5 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa6c8bdb5 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb3f0975c alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb5df447c alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd0b99ae7 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdf518d69 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe7eeaca4 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf3f8d021 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1d3c6635 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3bf173cb register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x94dd86c3 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xea45a9d7 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x50e66306 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0da6e152 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2951abd3 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x33a85411 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x35b59345 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x398b6dcb ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4914260f ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x55e4cc49 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x56e7a4ac ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x66179072 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6c613067 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8a6a0757 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x99c5c301 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb35858d1 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd9b445c6 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1a021d83 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1a7901c9 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1cd7ba97 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3476ee2e rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x367d1a9a realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x50f4bda8 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5781639f rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8f3444c8 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x944e07f5 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9d9e20e6 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xabf1796a rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb469237f rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc90f2aa2 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xeaecdcbd rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf8f8c111 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x77a4c34e enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x94149e01 enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xb15d4c2e enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd9d61d6f enetc_mdio_lock +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xc69c66a8 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xcfac5fca i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x346a72cd ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x657b41a9 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xcf9736ee ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xd6d751e0 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xe7a5a25f ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02ff2ed8 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x059eb028 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08cde099 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c49db56 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d2360df mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11e10c0b mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1533a6ce mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19f79deb mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b362f5a mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c348dbe mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20195b2c mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20c3cbb7 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22c2a75f mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23356685 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24e5402d mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28ab1692 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ee309ee mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x325e2466 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3818e911 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38d385de mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3af5da1d mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c75757f mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3edea6eb mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f3a01c9 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46a6aa04 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x470f50cb mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ac49f63 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d22634b mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51abc838 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5201a7d9 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52c2cab8 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53c21351 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54c2885c mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55d6b211 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bfe1e44 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f5a6306 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x607777a5 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x607add97 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61c52b90 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65033d06 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66161b88 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68edb248 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69fd2128 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69fd43c9 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d1e876e mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dec7459 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6eb5cfe2 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74155493 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x767d63f6 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7af7feb4 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cdb1faf mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d678be7 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f8550c8 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x814abc8a mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84ce4505 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84d4f5a5 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85c3abc4 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86584882 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88b3d34d mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8af258a8 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c3e4f98 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e95dfb4 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f300e72 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95b3dc64 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96cb6510 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98d085ee mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9aaa0566 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b2a30e4 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c8b4292 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c9aca64 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d4a66bb mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dc191ef mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ee35c3a mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa138de22 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1784334 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2d3bad6 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2d54af7 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5fd9783 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7ba6a73 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8af2b18 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa92a92a1 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaaaaf7e8 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabd0842d __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabde6867 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaded6926 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf29f6b1 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb063a032 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb33faa47 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7ddfa42 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9699c95 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba5c251a mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe73cec5 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfd9f678 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc01064c4 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2a9e84b mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc33e493f mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc36f2313 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc562c057 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc807efd3 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcaaad18f mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc8778bd mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccafca49 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcea0d1c7 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5bc214f mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb74a724 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe215eeca mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3e50d62 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe62c6918 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6c31372 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe874356a mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef356e72 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf14d4888 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2fc6cb8 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf32abca7 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3f173d9 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5d83116 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf69bb29c mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6da36bd mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaa3a725 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd07afaf mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe1d1d62 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0680c07b mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09f5f472 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c62e74d mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cbf3616 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f19bfcd mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f7d167a mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x120eee7b mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x122eb28b mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12957855 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1afa976d mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1efef24a mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x302afc5a mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35921feb mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36089fa9 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3933dd4f mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cb7cfc9 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4647acc4 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b7df247 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x534409fe mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x542eba86 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58eb2317 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59cfc3c0 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60b28ca8 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6192613d mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x661b4980 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6649e866 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x683190e8 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d7348ee mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7078e997 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71c36f45 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x727f6e90 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73c55db9 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bbf6fe4 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c4412cd mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ce366d3 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87c042c0 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8dae8fe2 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f705567 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91dcaa5e mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa28ebe78 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3d4ed79 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3ed02c1 mlx5_set_port_tc_group +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 0xa764ae86 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaad984e4 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab1aeafe mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad010fed mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf26f13c mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb14038d6 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6e89f94 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7cb650d mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc08ec0e6 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4b7ed1e mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc86868d3 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8a28963 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd034a259 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd23a6610 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd391d6e6 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd59a0a24 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5ef11a8 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd87245b0 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd89844da mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf821e92 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6d9a0dc mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec01d732 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec37264e mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec4bb0fd mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedb4f0e3 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee3ba184 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeffdf60c mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf51606fd mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffa3d2e5 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16a1c2e1 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1894a05c __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b8966ec ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2bb4a988 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6329bb45 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x633fe8d2 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6615a7b6 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82a105e9 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d09b294 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaddd32bf __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc4664dec ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd31ba2ae ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9e146db __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/geneve 0x5a307221 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x346c0549 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc73ce65a ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe2332089 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xea5d1275 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xfdb4b9c2 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macsec 0x7b44a3e4 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x16a322e0 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3860400f macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x42b6178f macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5bfc363b macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x60d59d1f mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x9f7191e1 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xe5eaac33 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x87eefca2 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa0bdeae6 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa5f6777a xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xabbec318 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xc28ca80c xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe84b5fdc xpcs_validate +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0206ac6a bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x05a8413e bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0f532d1b bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0faa6860 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x14199abd __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1efd6426 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x20b6de5f bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2c487f47 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2d64b1ec bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2e4d657b bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x41cc5934 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x459b0bdf bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4d37fdd8 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5b0c5501 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6c108698 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6f2b6388 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7261bb30 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x75a0b219 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x81f5446e bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x82234461 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8363635a bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x840ec8ba bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8cdcb08e bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9b71c585 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa6aa6990 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb1511fe1 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc2737d66 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc3079e3a bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcc76ace6 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd9aea5d2 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda14685e bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe6f2904f bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe774d252 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf31c237e bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0e47a418 phylink_mii_c22_pcs_config +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 0x33c3d8cb phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4e865892 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5b98bbc7 phylink_create +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 0x730def1b 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 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 0xa587a69f phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xaa201f35 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb0efe316 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xbfb29cf3 phylink_mii_c22_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 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 0x1026ed6e tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x1fed8d3a tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x54600142 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x5df0e7cc tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x705dd6ec tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x9567d3d2 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xae879345 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xd583fc86 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xf0a627c9 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x22e2668f wwan_port_rx +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xa2fd72a4 wwan_create_port +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xc9ac5f66 wwan_unregister_ops +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xef9a2c21 wwan_register_ops +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 0x77a9458b ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xdd0a1428 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf5feca83 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x0c890d78 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x78fb4738 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x28c4aba5 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3078a36d nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4178dd69 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x59de5228 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5f2ad401 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x88269d28 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8fbb09dd nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xac577ed0 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdbe3c4a5 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xea3fd13d 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 0x576f3a8e 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 0x04636d42 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x07cdd9a3 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1e65784b nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2f88a3e5 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x31e4acc7 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3501b1a2 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4a868bdb nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x788aef6f nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x87597088 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbfdde06e nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfd84a29f 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 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 0xf9c8cedc nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0x13c54b3b iproc_pcie_shutdown +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xf058ccb6 switchtec_class +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x0081619d hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x05d6ed5e hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x119d74f0 hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2c2aac0b hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ccb6eff hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ec4fc27 hisi_uncore_pmu_online_cpu +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x469fa6bd hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x4efd355b hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6fc9d685 hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb9039b34 hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xba8e8656 hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xc421fe98 hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xd7d39328 hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xdb0a5866 hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xddc6c357 hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xde60ea3a hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xef25c6f8 hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu +EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0xac75c27f sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0c30b140 tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0f3386a6 tegra194_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x356018e4 tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x57780892 tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x778b61af tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7aaf689e tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x85e427b8 tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8a6e8f3f tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa29301ef tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa5c41d8a tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa6f7ed5c tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb2f177cb tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc29409b2 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xd64d58eb tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xdd056d7d tegra186_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe8866f9b tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf44fb543 tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x43c3afbd mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x73b80b52 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xf98bf327 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x61de56b2 devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x6d92c68e reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x85cec575 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xad1cf2c5 devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x0d68a3aa ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x26494843 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x68217820 extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7f70a115 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xa0405ade ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb3fdae73 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xca85e8c0 ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xfc31ec31 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x8146b675 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 0x432c8cbf qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xe93578c3 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xee792cc5 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x143ba67e hisi_sas_init_mem +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x192e734e hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x22190773 hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x2550b883 hisi_sas_sync_irqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3c172a95 hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3e28b116 hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x51baaf19 hisi_sas_debugfs_dir +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5d795cdb hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x70eee144 hisi_sas_controller_reset_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x75c9c028 hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x79a7bdbe hisi_sas_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7e77c598 hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8cbb12b3 hisi_sas_sata_done +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 0xa4f8f850 to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa7fe90a3 hisi_sas_release_tasks +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 0xb81c33b0 hisi_sas_probe +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc04aeebb hisi_sas_notify_phy_event +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 0xd62ab4ee hisi_sas_controller_reset_prepare +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 0xeb537c9e hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xebfae55c hisi_sas_get_ata_protocol +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xee0064b5 hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xee18942d hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf04c52cd hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xfe755ed1 hisi_sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x12e14206 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x2309af1a iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3260d618 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x8b3611a7 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa6a51c88 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd9ca88a6 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfcc919e1 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06f4d3f5 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0bec5242 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e372b62 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x105b9be7 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x168ef38a iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2213d91d iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x280477fb iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2bc5e797 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2bf91be8 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2d93ba26 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ee6fabb iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x333c2d9f iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45ead6f5 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x47c4e9e7 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x563ae6d0 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57f3060a iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60983ba1 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60d93ee9 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6242638d iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7636f1d9 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7791d847 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x796a7bc7 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c30b4ca iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x80811b15 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x85125a11 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x881efdf3 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8a68046a __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91764de6 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9291ce93 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e6c025d iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9f9736c5 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1985225 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb68eaf04 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0e78569 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce702dbb iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf011382 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd002be7c iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5ee765e iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe10d6139 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe13f4587 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe678c432 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe90a75ea iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9e8626f iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xefe75a6c __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf08130bf iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf25d7da0 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf6242128 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff8e350a iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2870fe41 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x33d6ab7c iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4610aea2 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5771b182 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x64c1c1d9 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x75001f3c iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x82bd4e1d iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x91377961 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9be512e0 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xacd423c6 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb2010559 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb6048958 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb7c75a11 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbec260cd iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc367ccbb iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe502db2b iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xff699e1e iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x08a6a938 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x12f60955 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1b2cd043 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f8b12bc sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x36231c00 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x390e241c sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3efea443 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x44b760fa sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4f316d7a sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x56c8c4b2 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5d007a33 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6febdd34 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x816f1bf1 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x81a6c705 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x82ea4f11 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x884e8b8d sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x94598b24 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb10daffb sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb5d452d7 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc2d945d2 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc66b21e9 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcd3fd012 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcd882e9d sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdcb9eefa sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdefa2fe1 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfa960b27 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfb732074 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0239fd11 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x048904b0 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x066a7445 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x075c798c iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e070ab4 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0f34d675 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x118f12da iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14b361e5 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15c9fcbc iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1fd0ab28 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23714dce __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24547432 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3554798e iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3ba28c8b iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4701f971 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4f6210f0 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fe16ab4 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x543a113e iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x567d1d18 iscsi_create_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 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x63231c9b iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64d59d3e iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67119573 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6798dfae iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72aa4c67 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7a7aeb36 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ac3a139 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ac7ce72 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f62a39b iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x805c84a7 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82f76ac8 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8bdfa63a iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e4b065f iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x922511f7 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa104a246 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa5b6aaf9 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8f20ca7 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9fbfaa6 iscsi_block_scsi_eh +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 0xac8227b0 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb834ee2e __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8536ad2 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbbba7dc5 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbd79b598 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd28b4156 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdbd6173b iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe02c346d iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6bab935 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf82596c9 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff9ae43f iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1960ad77 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2b4a97d0 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd626c42d sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe54cce7c sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x5068ff1d 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 0x6339ed8b srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x8005c113 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9c44a4ae srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb0f11074 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xbc9f5045 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf5aaf569 srp_remove_host +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x00b246f8 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x500a978a siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa42ee0d9 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc54a8961 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xed3d8d51 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf273c827 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x036ac9f8 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0baa285a of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0da4bb27 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x199dea20 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2733f1cb slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2d637005 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3e022d08 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3f01809d slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4e3d7fbe slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6b9996e3 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6d575033 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x73987208 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7a13f9bd __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7ff52939 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8c516181 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x90f65f0a slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa7d2a2b2 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb238eeb2 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbcbf6e1c slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbe610130 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc2ff0557 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd524071b slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdccc36b0 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe4889ccf slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf4a04fe8 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf6d14d97 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x5379301a 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 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 0x623567ec 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 0x763edfc8 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 0xb9e81961 dpaa2_io_query_fq_count +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xbdc3310e dpaa2_io_service_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x272c88b7 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x416b9da1 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x42016f48 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x899c05ae 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 0x725dab26 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x78655b3b qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xa1c6a5b9 qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe8a3861c qcom_mdt_get_size +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x03126ae3 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xa0424ea8 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xc26ee0d5 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x4a88c862 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x02b3a671 bcm_qspi_remove +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x5651d14b bcm_qspi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x94e10a3f bcm_qspi_pm_ops +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x38efd777 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x95a2faa4 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb3c89f0d spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbe74f7ce spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcbefb388 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe44e7a51 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2bf8af04 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5df1430d dw_spi_dma_setup_generic +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9249428b dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa3f68990 dw_spi_check_status +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbf989fd8 dw_spi_dma_setup_mfld +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe0888756 dw_spi_update_config +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xec561830 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf5053364 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xfb3b4c94 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x17445524 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x4f69cc97 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x754e61c6 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x433c093e ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1044d13c anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x17cad7ed anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x277a5307 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3ab569dd anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x406912eb anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x43dd056d devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x78db7b72 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8598fc17 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9a36aeda anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9c33193e anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb901a490 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc46aa9e2 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xdace2176 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x12690fb9 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x8df77b32 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9eac1ef2 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xa695bfef fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x055e3f57 imx_media_find_subdev_by_devname +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1d72e178 imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x23b2b010 imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2916db97 imx_media_capture_device_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 0x4559f5a1 imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4dcf82b4 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 0x5d55f843 imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6cc5db82 imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6dac28ad imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x73a3f853 imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x749f8384 imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x777d6f25 imx_media_of_add_csi +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7e95ea76 imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x98067104 imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9e29d555 imx_media_get_pad_fwnode +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 0xba1c7b7e imx_media_mbus_fmt_to_pix_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbc3a6a78 imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbe5d6660 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 0xc99b53e0 imx_media_add_video_device +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 0xd8909339 imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd96ebcbb imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe932b00b imx_media_enum_pixel_formats +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xea9f6317 imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xed1bb145 imx_media_alloc_dma_buf +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 0xfbd86502 imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x02929114 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0eddb2f8 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x115655e9 amvdec_am21c_body_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x15a592b5 codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x15e36840 codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x282e2d85 amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2e1d1be8 amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x48936560 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 0x69b2ce5f codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6da7ca7b amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fd45d71 amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8269bd78 amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xaca20bbb codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbb8040e0 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbc400f17 amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc015f5ba amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc283794c amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc4ddbaaf amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd0d4cd2e amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xdfaf50d4 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe9dc74ca amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf82d3e46 amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x21da73d7 nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x8f57c4b3 nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xedf86edf nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x42e0c54a vchiq_mmal_component_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x5825c980 vchiq_mmal_port_set_format +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x5ea4ce2c vchiq_mmal_component_init +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 0x66b434fb mmal_vchi_buffer_init +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 0x84e3deac vchiq_mmal_component_disable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x8963135b vchiq_mmal_port_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x9a0f44e0 vchiq_mmal_port_parameter_set +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x9a272691 vchiq_mmal_component_finalise +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 0xb7bf8813 vchiq_mmal_port_connect_tunnel +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xcd8db787 vchiq_mmal_port_parameter_get +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xdd2439c8 mmal_vchi_buffer_cleanup +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xfdc00dbe vchiq_mmal_submit_buffer +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xffd03e2f vchiq_mmal_port_disable +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x09a6a00e target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2da30bda target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xb02684b9 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe17faa1e target_submit_prep +EXPORT_SYMBOL_GPL drivers/tee/tee 0x04f3d0fd tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x116399c6 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x157886db tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2014d201 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2da01dc0 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x36c17665 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x474ab234 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x55014af1 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x555de20d tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5a745bb6 tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x60f04b55 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x64f18a60 tee_shm_pool_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x70393c77 tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7047972f tee_shm_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x78ca1bf0 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x793c4b53 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7d2a2687 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x81b4e4ee tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8e3aa56a tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x97171431 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9e339703 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbdb0a860 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc365c40b tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc80e8c16 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe1f826c2 tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe69e9f58 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf8eea3f8 tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0303d975 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0fd6a730 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x10693371 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x21d1bc8c __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2c1db3f7 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x310a60e2 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x31cdd6d1 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3c305de2 tb_xdomain_alloc_out_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 0x60071a95 tb_xdomain_request +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 0x678af297 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6c144a4c tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7211a303 tb_xdomain_find_by_route +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 0x8543bc69 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x89d518a2 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x93ab2fb1 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa4252e19 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa4c5d41a tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xac564aef tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb1a81317 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdfaa3088 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe0ddb9da tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe6ce47ea tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xedd4e691 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf0fc038e tb_xdomain_lane_bonding_disable +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 0x3588f2a6 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x3da456a7 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xb201e8ed uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xcd74f954 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x04b8a57f cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x35802119 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x476c7df7 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7b81e4e0 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9212c7e2 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xc9148a94 cdns_set_active +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd8575059 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xda89ad72 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xdc201480 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xed0137c5 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x19cc9c75 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x57538064 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7027914f __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x960839e5 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc03b04db ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd05c0ca5 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x741b5b40 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xa738cad6 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xcec14931 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xcf29c3b0 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xd9a7f9bd usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x1bdbf147 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x93d1e926 tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xaddf8889 tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xfb2a99da tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x21761f21 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xb05b41ba usb_role_switch_get +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xb0638439 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xe8d9cd96 usb_role_switch_register +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1e6b459e _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2998c611 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x36ac89ef vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3e09c760 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5fe940d7 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x66acee7e vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6cfa0007 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x91abeea4 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xae840c4c __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xd79d647b mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x11194e59 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1cce0ee3 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3adfcbf5 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x40d8d138 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x45569150 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 0x6f555bdb vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x78cfdd31 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x95d9484e vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9f97b4ce vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa1bb7666 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa224bed8 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb2fb6f09 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc9563240 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd25c8c1f vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf129fad0 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfb025abe vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfe97bbad vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x56a829c3 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x763ea57c vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xbb7963ae vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xfed418f7 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0d395352 vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1863713c vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2bd936ec vfio_uninit_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x334bbc3b vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4670d3cd 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 0x6474a74a vfio_group_iommu_domain +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x74676195 vfio_init_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x91c70abf vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x920747ed vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc9da9340 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xda80e804 vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xec352a4a vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf7441355 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfec0de5a vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xff4a4819 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x54e2d08f vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xd71842d8 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x018b0388 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06245701 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0add1b4c vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0d4a6238 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x13d32d12 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2112898a vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x274c1388 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b798816 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d5c557b vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x31f99e77 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3aaf0ac8 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3ff1c3df vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x41d8e4c9 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x45212f1f vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x45a179a0 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4a6839a2 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4c1f1756 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x56ea63e5 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x584865f0 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5b4cac77 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ee16b18 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x62f42eaf vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x699e4f54 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x749cf121 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x85b0462d vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x86187117 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91287417 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9a7c56c7 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa7c6c821 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa7cda467 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa929b083 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xab7c3537 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb69a79ab vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb7dfc680 vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb7ef5490 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc6dd0a2e vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcbdf65b5 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd2270453 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe947df22 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf3227367 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xff34391d vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x6bec0e66 vhost_iotlb_del_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x83be64b9 vhost_iotlb_itree_next +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x885512a2 vhost_iotlb_add_range_ctx +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 0x00098958 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x050cde76 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x31f4d5d1 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6fd7f8a2 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x92a1a71e ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd40c8780 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xffec378c ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x2d38deb2 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x853ef3a7 fb_sys_read +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x52fe6f60 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb67f9fbe 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 0xd27a9a04 dlm_posix_get +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3d8e82b9 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4733d114 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x474bd216 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5f0a93f0 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x74c93e03 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc78fee72 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe585ba68 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x001e0fa0 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01e4884f nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01e8d1bb nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03fc11b4 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0404b4e2 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0466ab69 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04a744cf nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04bad5c9 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06df1705 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07e24441 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08a4a927 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09985112 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d3e9a1b nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0debfd0a nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fecc56d nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11123921 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a7fea81 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a8a410c nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1aada5c2 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bdc45fe nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d04ed93 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d1912c0 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d48bdd6 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eb1df63 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x257cfc7f nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b38e9db nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e24bda5 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ffe6f46 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x328af4f9 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36795c1d nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x368fcb85 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3804605c nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38befd0b nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a04e2fc nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b91b35d nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d7f5c3a nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fbef395 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x416c39e4 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41b746c3 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x433455bc nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43444d26 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43472220 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x461240e0 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d6d08e4 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x504c3a9b nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51339e98 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x534d4090 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54771991 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56e2db60 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57ea76f3 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x581cbad8 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58572f6d nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a19be6b nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b22a0d5 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b7d6405 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x692f7198 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69b4e325 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69d3dc8b nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a1cb574 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ab25d61 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ad8591c nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73d71cbe nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7469d536 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76b27030 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a679bc8 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7af86372 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d15f85e nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8057cf16 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82d3c819 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x836b51cf nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84eb7635 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84f80af1 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8655b990 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x874c362f nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8af70336 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95a6028a nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96c2bfe8 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x983e5722 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99fe47d6 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9de56c32 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e1d7300 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ec535fa nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0305762 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa07e9dc6 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1c7d95b nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa24def1d register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8c78399 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8fb0163 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf9ab0e7 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1dc05a2 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb254cf21 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5679fca nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5de7a59 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb728a23a nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8cfde80 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb97a5d02 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb2b3e7b nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbd3ea2d nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdc85ca9 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1033b30 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc15ed992 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3af04fc nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc44b4d32 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5c62bf9 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7c6b631 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8cec9f8 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9b10f58 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf87cb97 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd169caee nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2f025c2 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd545cb7c nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd557ee58 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd93f324d nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdda1c7a6 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddc4916d nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf5f24a8 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1d79471 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5a54a0a nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe74fe992 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7838966 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec682e85 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed0a01c3 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed8fe9cd nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeebb7266 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf03898c6 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf25775e3 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2ff4ff2 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5866520 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf997b5b5 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa81d1eb nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb5f6b08 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfca0dd84 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfccb9787 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd3aa78b nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdb03a15 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xa54213de nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x086310c1 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08eea415 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08f6ff76 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aeba1f6 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12bb6893 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14256de8 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16879491 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x168b0a7e pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x174b2ffb nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e326997 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20e8a4cb pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2178117f nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ba1ccf3 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2da6dc59 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f2b0a71 pnfs_update_layout +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 0x369807b2 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36e5b44b nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41773611 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45fe07e9 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49f3bc1e pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ea648f1 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53ee2d12 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b99fc06 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cb200e7 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e8a69ab nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f341a7c pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6707b333 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x685a804e pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x698e5c5a nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b10922c nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d62853e pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6eea76d8 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71197fc1 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72ce3ff9 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x757e71bc nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78b462c8 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79b42b74 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a9f9fa1 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ab7bcc6 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b40b768 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7db6e1dc __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x826e37ed nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86583291 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87d4246b pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c359824 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c4e610e nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ca39ffe nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9053c21b nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x976aceb9 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99144006 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac0faf55 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xacb39c8b pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae88dfe9 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaeafdaaa __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaeba4676 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3f57aa0 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb802e484 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbbd8fcd8 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc400d0d1 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4ce0488 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8115678 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcdb9915f nfs4_mark_deviceid_unavailable +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 0xd46791b6 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4c582ec __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5164230 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda6622ea pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdaaf5461 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb4b3679 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf3c5c1e pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdfbed811 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdfee6002 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5bed97d __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe94bb137 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea25d8ae nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb92a4d8 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec0d63f3 pnfs_put_lseg +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 0xf32380a9 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6c06d56 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf78e3d3a pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7eeb7ec pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x61b2ace1 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9865376c opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc56bbd37 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0ebd596d nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x44151f65 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x875a63b8 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x9da8d81e nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xf5b4b251 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x026e913b o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0743ad91 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 0x34bd88bb o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6860e66c o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8456a923 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x93ef099d o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xad1c9e25 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 0x40a49311 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x522253db dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5dba2de5 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x76ab924b dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x82e10b16 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x938de5b3 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 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 0x2c90e160 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8fdac9fa ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa1e7ddb2 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa20e9e25 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 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 0x43cc3d4b pstore_blk_get_config +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x743bab5b register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x7bfa4698 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x9caa2d61 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xf056bf7b unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xabd9af6d cifs_arc4_crypt +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xc4c73891 cifs_arc4_setkey +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xceecd9e4 cifs_md4_final +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xdef1096d cifs_md4_update +EXPORT_SYMBOL_GPL kernel/torture 0x0d535267 torture_num_online_cpus +EXPORT_SYMBOL_GPL kernel/torture 0x1205ef04 torture_hrtimeout_ms +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x2b3de84b torture_hrtimeout_us +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x52acfe88 torture_hrtimeout_jiffies +EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0x615c5465 torture_hrtimeout_ns +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0x759571e0 torture_hrtimeout_s +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xbb8ef471 verbose_torout_sleep +EXPORT_SYMBOL_GPL kernel/torture 0xc238daf6 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xc62aad89 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0xcaf7733a _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x39e8fa4b poly1305_update_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4a833012 poly1305_final_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x8c874435 poly1305_init_generic +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x60b71df7 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x6f393a5d notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x1d29b9e1 decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x561835eb init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x63adbf92 encode_rs8 +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 0x7615eb22 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xdab08440 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x092680e7 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x2aa69e90 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x48d656a2 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x4e3ca0f2 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x62c160b7 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x9a2b6614 garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x055749e0 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x3e1bb9c1 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x6b01e688 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x953f06d1 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xc96169cc mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xf7321533 mrp_register_application +EXPORT_SYMBOL_GPL net/802/stp 0x03494ab6 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x6c06019f stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x2ae9733e p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x89029f95 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 0xeb1adbc8 ax25_register_pid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0bd456af br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1b008027 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1e5de2c3 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x485ab698 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4d2b555d br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5d46200c br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5f970f62 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x65bd2c10 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x721da6fb br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x722b7adf nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x844ef744 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xae307413 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb06259ba br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc3ace2b5 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc3e76c55 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc691bfcc br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc94549e1 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcedfbce1 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcf61d745 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xda0eaeb6 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe8ea1408 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfb1ca928 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/core/failover 0x58728452 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x82df6ef5 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x9274f370 failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c6314d3 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e4fac9e dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x20228495 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x276c04e1 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d1195b2 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x38189c86 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x39e38592 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3ba1aac4 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3be6227a dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4160ceb8 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x546b6082 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f25c0e0 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x63feea92 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x663667c8 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6fe6f551 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x735ed2f2 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x783345c1 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7aed1e3f dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7cd5292d dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x833f5aa2 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x877a610c dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x87ef3221 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x94a6def5 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9a2f90eb dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa1e00907 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa2a74695 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4ce8ef4 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xac80d248 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb5d8dc52 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc8d25661 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc9305617 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe1077c49 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4191ea5 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeba5c0cb dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0b75d59a dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6752f3fe dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x71784632 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7f600dff dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb24669f2 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf096d27b dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0755158e dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0d4285e3 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0def7bdd dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x12aeb8d0 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1f572bbf dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1f72f674 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2fac1be3 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c588037 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5eadd7b7 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5ed26412 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x67568955 dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x69669902 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x742562a5 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7ceaf47c dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x81df57f7 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x83b82dc1 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x88f63357 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8dbec02b dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaba86cf9 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xae369a4f dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb370a3ac dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbc4636b0 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbc8bf173 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbcc33538 dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbeae6b9a dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd32fa4ed dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd67f055f dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd7755c92 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd7d06f6b dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdccb8162 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdeea5d31 dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe04d8e2e dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe297afd2 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe43cd494 dsa_tag_8021q_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/ieee802154/ieee802154 0x37b38a88 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x486ea017 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6a172793 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb16cd40a ieee802154_hdr_pull +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 0xa387d7ef ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xcee50ee9 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x31bcad0b esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x7699f025 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xf080bc6c esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0xbc7d8636 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xe22e734e gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1edb76bf inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2506af00 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x300fed4a inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x31222984 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3b49239e inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3b8f523d inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9d015858 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc8c092ca inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfbb5825e inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x6c2db1ce gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x9c17e89d arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x805607ba ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x5372d1e0 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xd33bdf94 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xc4d2bd1f nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0bfef78f nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3251ddbf nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4d07f95e nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x62818531 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9f70b398 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xeb376e32 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf4f7d5c2 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x58e6e4c4 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x4ab36994 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x4f55a6e9 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xef29d90c nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x15ed63e9 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x8794f6f2 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0be8f605 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x17b57a33 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9c77ec6a tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xea530da5 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xee7b70ac tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x5453f8b2 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd2ec8e4c esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xdff85ae0 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x092ddf49 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x330a87c1 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd352169e ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xa7c8d37f ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x131b624e nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x343eaa69 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x5b139db4 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x347e7074 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x38ad0836 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x54175210 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6f723b08 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbca3dbd3 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd6721055 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdb26d6c8 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe6cec1ce nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xdf8145ad nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x24cbce86 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x7697534c nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xee9195d9 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x2eeeb702 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x4dfc6e36 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x092fa4d3 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0b66eb41 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0d8f6387 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x197b00f3 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1e0dfbff l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x25b8281e l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3ff5f396 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5b129819 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6297ac0b l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7cffd5e5 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa07cd99d l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbebace83 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc2a6b31e l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd547469 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd830d21 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd40d00e6 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd6b27795 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xea0cd31d l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf0fb6314 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf4658d7b l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf712328e l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x705a28ed l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x9221c8ff l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0904d713 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x31b297b2 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x40dd430b ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x45554a0c ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x47ffb7e7 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x55d44298 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x693dbe89 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x70f0584b ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x805412da ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x931ea093 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x93cb7d84 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa0784677 ieee80211_request_smps +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 0xaaf50d6f ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb19c356a ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc572f17c ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc995e799 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcdd73d94 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdbd8c369 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe5e9e48e ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf0e1b29d ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x554f3f56 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5a8225df mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x83709233 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdd5b2e83 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe16ae90f mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x025babb7 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0d7a005f ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1dc8684e ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3357edf1 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3b77f6af ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x40fbe67f ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x44cb3772 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5635689a ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5fcfc25d ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x64037c86 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6e38191c ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x77548560 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x87c6983c ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xab367002 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xafba056d ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe8e3cc0b ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf04708dc ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf33ca77c ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xffa8ef5e ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x04fafc2c unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1c067cbd ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x44d889a0 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xefdbded4 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x2bbb46b4 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x2ce89b7d nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x4308bfe6 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x945543b0 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2caabae nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00471a4a nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x026bfbbb nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x049407ea nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07c87789 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17ff40b6 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x188a6d65 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x201089b3 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2084efa2 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2887ad72 nf_ct_helper_expectfn_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 0x2dc3d28f nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f57af4c nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31ddeee2 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3416fee1 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3615fc83 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x397efeac nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a134d74 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47bd86b9 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47f09bfb nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e5b2e24 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53c6c241 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55a32f20 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x585e3914 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58b29cc1 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5916d9b5 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6269de12 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6775c8f8 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68ac64b5 nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7192ebdf nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74477027 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7603db8a nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7770b706 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x787174b3 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x797d154b nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d0fda18 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7da80507 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f98b8c1 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80af2d04 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80c61da2 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8163ec6a nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85382e48 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89ff87a4 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e7acd16 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x933a86f4 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x984412e3 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9963f8a7 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9db78354 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e8241a2 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f99e026 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fec6885 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac1ae913 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xace16af8 nf_conntrack_helpers_register +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 0xafdb326a nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6fdd58b nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba2bd887 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba6ae31b nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc3c47c3 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc58c79e nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc64c5ca __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc23ed58e nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc26c3da9 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc364b4cd nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4d530b5 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc624da45 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc72b8b62 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccd98362 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce8795d2 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd232fa51 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda2d536c nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbd178bf nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe003c045 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0db6423 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0e90525 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4bc8d33 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb68566a nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xece95c2f nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeda9035a __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xefdd1af2 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8e9e24e nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa8765a7 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfbd1f441 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc513e80 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xc3271858 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x2d479b06 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x1baa0731 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x12ac8bfb get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3323a22e set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x344f8f9c nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3933e4b5 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x65b9490f nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x73b9d637 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc36dab51 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd5d38902 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdce68f22 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdd2cf7b2 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xb0b27a09 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x11c27483 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x12430c2c nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1a4f2a3d nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf8c47588 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0e69f90a ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x24d94a5d ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2ac90338 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x38118aea ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x83c46c85 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd70f9942 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe8dac7e1 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xb46b9bf0 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x9d5d4e08 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x43e0d1d3 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7185c86d nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x874fdf05 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x01be6965 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1332c4db nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2c6a6576 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x36f0a725 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3c81b4a4 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4344f7e5 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x45b1b4b7 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4ea7fd7d flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x526b3a80 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5f9f8022 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6c09f860 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x782ede2e nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x84130a5e nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x890e89c9 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa0a0efad flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaea6dfb0 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd66fcada nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x01e45601 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x02bc5e22 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0ca84b0e nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d5a8a99 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x117d5874 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x11a7e00c nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1c4ab053 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x71a56b5b nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x84a9bc88 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x89e68a1a nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x91790773 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xaf93434c nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb7d39d84 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc25cec67 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 0xe165fe42 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfd681b15 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 0x6f3388fc ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8f0889e7 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xaec9273d synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbee813ed nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd6b98474 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe4482e65 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe69d8669 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe7591e7e nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf2e94a6f synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf52f9688 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfb2df537 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a722c70 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1023fa6b nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x18c3fbc3 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1d445e05 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x251c6f4f nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x252bb1fd nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x297a51dd nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x30f8b029 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x30fa8e35 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3d1e20b6 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x419bd129 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4514bbe5 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4a3a07c4 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5913fc20 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5dd10a6e nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x61cb1983 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x652d5d3f nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6749fac6 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6a1ad9bf nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78489fac nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78a78d73 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x86e3bf9b nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b5ae838 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9cb253b6 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9ed8ebd1 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa8af5266 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaed9d4af nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3bd62b8 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb549a066 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb60a3a85 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbfec0bbf nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0f1dc0f nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc1231a97 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc23cd9bb nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcc951412 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd6cad08a nf_tables_bind_set +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 0xe7da6c1a nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf69f921f nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1683e194 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2e4378bc nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5a981305 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7a26f6ce nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9b980f28 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcd6021d1 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf0107875 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x63fad6b9 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbe822301 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xfb15f3b7 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x21d8f4b6 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x5797ea8d nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x8f47b9a4 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xc684cdca nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe6fadbc4 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf677b0db nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x3e018303 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xba42ce0d nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xee00747f nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2d42023b xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x317230f4 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3290e3a8 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4ce28116 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5616b71d xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5cb30d21 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6a060ddc xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x74f81d67 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x82b0853c xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8400697b xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x85440284 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8b926e87 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8d980341 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8e5277f2 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8f2fd786 xt_compat_target_offset +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 0xa9444125 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xabb1d14c xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaf2f5777 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb5b4c53d xt_compat_target_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 0xcc4e2949 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 0xd665b01b xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd8586991 xt_unregister_template +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 0xe045776f xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4b54bd9d xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xee91b303 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x46344f2f nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x77b1eff8 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf4093784 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x25dc04c1 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x35b6dcb3 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x53b414e7 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nsh/nsh 0x5317e43d nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0x85c5e92e nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x550dd9f9 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x560da601 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x90689e65 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda18cf4a ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xed05f5a7 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xfb396af7 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/psample/psample 0x1ca68770 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x35dc3125 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x8aeeef95 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xba361d65 psample_sample_packet +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x6a70a4b5 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xde8aa32d qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xe81397c6 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x13d94a82 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x13dbeae9 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x1514e698 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x1f5427d6 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x20c5e653 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2fce773c rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3ee7dbdd rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x444fb2aa rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x4b4b686c rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x53dba8f5 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x601821e5 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x69f9aecd rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x6d008498 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x6f3626ee rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x83271117 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x8383b034 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x869dba28 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xa04caf76 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xa313750a rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xaf455a9c rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xb4f691fd rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xbd3d243f rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xca5435a8 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xcd354a7e rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xcdd6b4dc rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xdd1b9868 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xed9ba9cb rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xf5d74008 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xfb7299be rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xbb1b6ffb pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xf06fae40 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 0xa06141b1 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xb43f4f8f sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xb60a2aba sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xc8f60697 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x150ebb0d smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x179f4f34 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x4a6cde58 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x60a8fcf9 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x61e2ff06 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x76bd82ec smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x79ce99d2 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x8d449619 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x9f82d90b smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xd34fb2c9 smc_proto +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x13065c92 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 0xb12133bd gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd52afddb 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 0xeb27bef1 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x011dfbc3 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x025e723d rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0313a29d xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0530271c xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x054a5632 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06ac9ff4 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06f35ccd unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x071c2358 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08070165 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08c3239e rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ca18795 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f6af694 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fdd7f09 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1016f833 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15317adb svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1702e604 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x176cc967 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x182ed4eb xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x192e9906 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19804755 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a8a1ec9 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d0aba87 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dad331f rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e5f7f86 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f8808ff svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x209109c4 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x239762cf rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x248cfe78 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x259cadcf xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x261c7f9f rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26aca05d rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26cd5c03 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x274eada5 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2840955a xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x292a8ae3 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bb5aa3e svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bb7b8ea sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c8c411e xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dcfe5b6 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31974031 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3337bf34 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35e7e55c xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3663d4ef xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x368ecdfe svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36c7117c xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b2acd62 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cbdb6e8 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d176a3e rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d416161 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d5b05c7 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d883cca xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3da3b7ad svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ebe79fd rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fab8f6d svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x487c2231 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x498653aa rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a645287 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a7ff355 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b85e3cf xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c27c2ae rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e10d2a7 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e943b0b sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f0548fd rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x505aeaec svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5366299d svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55cb0799 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55cfe02a rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58de0ab9 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59bb3247 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a40e1b5 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a610945 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c2ee13b svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d61c1e0 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d9ccfb8 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e6fb440 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f00f2b3 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6037afe2 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61206131 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61584e15 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61840c28 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x639eeb69 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65385303 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a05f1da xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c105a78 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cecc144 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d06b732 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d29c797 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dbbccc6 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6efa009d rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f1b7534 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f34670e rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f3d03ef rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71471dc8 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71c54ab1 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fe6a44 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72c4c8e0 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74170f06 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7424e7c8 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75fd5541 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76792610 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79337e76 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cc965a3 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cf80ce7 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d2b02e9 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e29193d rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ea9fba5 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ebb04a2 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x801a2191 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x801c711d svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80695126 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x810fcf0e rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83340ddd rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x859c77f7 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86d58483 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87153230 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8788c158 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8892f8f1 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88b97324 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88bfbec6 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89c3d867 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a778720 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8af9205a svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d3fda0c rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d58ba26 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e29b07a rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8efe28b0 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f4bb9a6 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fe10f42 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x901bd017 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91201159 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x931554bc bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x945279be xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94ba0599 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9780357a rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97c5a980 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97c9045c xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98c1c0a7 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98d9fcfc xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b8f322b svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9caa5cb4 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dc85a3c rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e0dcff7 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e1126f7 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0a858ec xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa18dccb1 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3114671 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4a38915 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7fbdcb3 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa848aa6b svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9469896 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa95c8a28 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9d20025 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9d607a0 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaae5301d svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabf5d4d7 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadc600df xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae8f07d9 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0fecd43 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb109b43a rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1bbd67b rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1d34f78 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2401429 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb261f910 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2dff57b cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3a8b9f1 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3d0b697 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb407faf3 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb691541a rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb81656a4 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8771953 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb886cce3 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8ef2f29 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb937bd05 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbae7aa78 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb22be2f svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1184d59 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2d67ff5 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc427cae5 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc429d73a svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5f13746 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6ea703d cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbe520a4 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcddac61f gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf6f2ff4 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3538972 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd421dbf9 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4379739 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd47d5db3 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7d937ad xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd84cc57e rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd88719e7 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8abb3ad xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda117b65 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda1da725 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda6e6fb0 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb1c7e3d svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbfcb0ea svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde426ea0 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf4c2d97 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf96a629 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0995a6e xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe12de8fa rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1771d05 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe715dc34 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe74df2d2 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe794b353 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe906fa59 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe93fcf9c xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe989660b xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaf003ff xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed44e955 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee1805e2 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee4755ef rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef673402 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1ed0822 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2d40c53 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4073ef7 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf41c711f rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4675b51 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4a922bc rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf537bc3f rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5b63044 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf66c786f svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf69d0aaa rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf71d2000 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8b376ee rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9799e55 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb9e0f4e rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc8de159 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcd42202 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffb169c2 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/tls/tls 0x58c3ee74 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xbfc341af tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xd5b5bfa7 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xf6a1c0f3 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x090b12ea virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0fecae25 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x17289138 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x174894fd virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x18a9d5c5 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x19e5ef5a virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1cb23bc7 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x20b3058a virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x262e2dae virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3bcc6374 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x41697612 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x44d103a3 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x553e613c virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62e8aca6 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6962de62 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7812cbcc virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7951a396 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fbb6551 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x836ae440 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x87d5edee virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8db44886 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x90d93145 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9c64ee54 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa3413ace virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa42f1e77 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb858855d 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 0xca0ba52c virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcd8d03e4 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd2c589ac virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd359562d virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd9ba514b virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xde836d8a virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe26ab79a virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfc411124 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2b4bd0eb vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2bca79aa vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x315922ab vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x34c0a55a vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4188c0cf vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x42fc2de8 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x51d008bc vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x82bd3707 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x831d5719 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x86512019 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8d276800 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9706b347 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9f8eddcd vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaa01850c vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbc9fad25 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcafd8e25 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdd563522 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe1964d81 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe3b266a4 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeb12e1a6 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1585c2c7 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x659833a0 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x731a6745 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x740f66c3 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xae3623fa cfg80211_vendor_cmd_get_sender +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 +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +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 0x66acf47c ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x68b7a940 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x728bfc10 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc25fc851 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 0x096f2154 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x1ccfb804 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x1ddb09ad snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x2b67d06f snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x4bb31374 snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x5623ca93 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x584ad4f7 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x5ac4c884 snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x7478e100 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0x818ea4a3 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x869c74ca snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xccb927d5 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xec13225b snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync +EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xffa41f69 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x07c0b652 _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0c9fb89c snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x229ae7e9 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x394df5d0 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5b07f57b _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x637588a1 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa567354f snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb683f1b3 snd_devm_alloc_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb6ec0da4 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xba7c6216 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd038debd snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x67ca7174 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x76781dcc __snd_seq_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x001e30d5 dpbp_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x0021e414 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x002238c5 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x00377877 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x004c7102 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x005247b4 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x00536f7a dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x006618ba register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x006d9e8d simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x00894643 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x009982e0 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x009db6c8 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x00ab3e45 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x00bb36ae driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x00c3e291 fsl_mc_bus_dpci_type +EXPORT_SYMBOL_GPL vmlinux 0x00d2b7e4 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00dafebe cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00eaa774 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x011008aa of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x0113e842 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x01183276 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x011a8149 dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x0132fd21 d_walk +EXPORT_SYMBOL_GPL vmlinux 0x0149ad1b fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale +EXPORT_SYMBOL_GPL vmlinux 0x01586dc6 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x01603e7f kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x01676f47 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x01760d98 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x017af55e devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x018c913d get_device +EXPORT_SYMBOL_GPL vmlinux 0x0199d2d3 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x019cb838 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01af26ff ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x01b76732 mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01c975ac spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x01d1a417 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e968fb find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x01fc4b03 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x021799e3 dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x021cb603 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x022af642 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x022f086a devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x02398477 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x0258e175 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x025f8708 __nvme_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x0261edc6 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x028aecca ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x02a23612 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x02accd10 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x02ad27f4 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x02b9947f bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x02b9b0cb iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x02cbbdb3 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02d83ecc usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x02d9146d subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02d978da nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02d9b5fa platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x02e51f67 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x02f87118 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x02fc3015 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x02fecae7 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x0301775f ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x0323a119 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x033131b1 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x0335da62 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x03397285 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x033f126c genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0346cea9 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x0351ba54 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x0353f435 kvm_vcpu_gfn_to_pfn_atomic +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 0x03829483 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x03838abc platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0394daa5 fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03a47f04 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03d8bd7b phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x03dc2cd7 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x03dd818e iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0414536d blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x0427f4e0 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x04474132 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x04512962 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x0452490e genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046dccfa iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x047ae97d pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x048d7226 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x048f00b1 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x04a286e3 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x04a45fea of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x04a56427 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x04a97377 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x04a982bc regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04bfd3a3 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c7dac4 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x0505f166 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x05098ff9 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x050c6981 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x050ea55b imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x051800b1 ata_sas_port_start +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 0x0548b68d tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x054a9c52 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x054ecff3 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll +EXPORT_SYMBOL_GPL vmlinux 0x056d2ebc fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x0570ea37 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x057264d7 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x05843661 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058a59f1 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x059a0947 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x05aefc74 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05c0f30e sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x05d3f6c8 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x05e95d33 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x05ec35b6 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x05edb333 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x05edb3e7 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x0602cdc4 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x060513af security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x06116fa9 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x06192668 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x0619ce2a tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x06230572 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x0636119e vfs_write +EXPORT_SYMBOL_GPL vmlinux 0x063e9296 rpi_firmware_put +EXPORT_SYMBOL_GPL vmlinux 0x06430f2d inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x06434dfa fsl_mc_bus_dpdmux_type +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x064f7ca6 k3_udma_glue_rx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x06553e6d sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x0661e2db pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x066be3dc devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x066f7e1d acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x06820b13 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x0686bae0 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x06935056 tick_nohz_dep_set_task +EXPORT_SYMBOL_GPL vmlinux 0x06962bb7 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x06971c9e pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x06991995 kvm_map_gfn +EXPORT_SYMBOL_GPL vmlinux 0x06a14d19 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x06bb7c41 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x06becb9f usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x06c0dc67 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06d727f2 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x06e2dcf2 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x06eb56aa __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x06fdd225 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x0704d370 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x07068a64 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x0707019a context_tracking +EXPORT_SYMBOL_GPL vmlinux 0x0713168a pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x071cc61a device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x0726218f nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x074fe35d genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x0755536b sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07676ff1 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x078c37f6 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x078d2801 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b5068c pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07c199a1 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x07c39e97 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x07c8c589 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x07d68f72 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x07d77ebb dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x07d7b036 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x07ea1af2 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x07f139a9 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x08054e09 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x080c286f bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x0810edd0 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x0813f339 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x081489ca phy_get +EXPORT_SYMBOL_GPL vmlinux 0x08151a82 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x0827e16f pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x083fc8f5 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x084a5440 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x0850fd2a xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x08528a91 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x08639776 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x0873a2c9 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x087ad76b __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x08852519 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x0897ad42 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x089c6aa3 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x08a0b8fe blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x08b8e61b seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x08be9cd9 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08cdd5cd imx_pinctrl_parse_pin_scu +EXPORT_SYMBOL_GPL vmlinux 0x08cea0a9 set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x08d34212 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x08da8fec regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x08e879f1 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x08f11f3e of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x0906379e rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x09196714 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x0945b37c mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x0969cae3 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x097ddc04 context_tracking_exit +EXPORT_SYMBOL_GPL vmlinux 0x09882bed fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x0988d76e pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x09910dc8 meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x099a2572 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x09ad5c62 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09cea094 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x09d816a0 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x09ee2d26 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x09f50f32 rcu_nocb_flush_deferred_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x0a0fbc17 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x0a17959a serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x0a245a16 nvme_disable_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x0a2ec3b6 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x0a337a1d irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x0a4405d1 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a4c1a79 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x0a4da0d6 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a547048 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0a58020b balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a749cd9 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x0a74ae4b kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x0a799f9a ip_tunnel_init_net +EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a92c362 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x0a951516 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x0a968b21 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x0a9bcb4a sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x0ab3cc39 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x0ab7c2ce unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full +EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0ac6453b dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0ac6e926 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x0ac85926 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x0ac9be4d gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x0af6c861 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x0afbdace dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x0b0639c8 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1c5fca task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0b485137 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b5c572d kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x0b6581f6 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x0b669025 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id +EXPORT_SYMBOL_GPL vmlinux 0x0b6a0202 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x0b750fb3 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x0b881fad crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x0b8d53b9 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0b8f543a gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x0b8ff4e1 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x0b91b7a1 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bc41638 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x0bc81c52 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x0bd06725 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0bd0e19e scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x0bd99eab fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x0bdcfb5d iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x0bf1ec18 devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bf824b2 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c00afe8 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x0c2c4d4e pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x0c4e4094 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x0c4f8757 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x0c5403b5 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0c5a6b90 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x0c69201a kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c8eac6c stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x0ca29ffc thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ca7be4a device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x0cac9975 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x0cbc3a74 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cc2cd8b __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x0cc549e8 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config +EXPORT_SYMBOL_GPL vmlinux 0x0cdc5303 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x0ce038cf pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x0ce21c1b rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x0cef09e8 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x0cf4d4be device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x0d01062c scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d184e3d proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x0d1b369e l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x0d1bf3a3 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d604fdc kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x0d669c04 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x0d6afc27 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x0d7e78a1 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x0d8bcebf hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL vmlinux 0x0d98ec45 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x0da4ba8a sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x0dca0a42 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x0dd85707 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0deee65b irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x0e01614e perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x0e0e4ddc fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e1b05fb pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x0e281569 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0e2b620c usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x0e384a81 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x0e3ec7c4 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x0e407399 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x0e4a4337 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x0e569f50 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e6a2c0f udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e7a71e8 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x0e7cbf6e usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x0e7eecca inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x0e996aa2 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ec373cf rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0eca8f99 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x0ed2df1c stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x0eec0703 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x0f16a84c kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f18a206 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x0f1dea20 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL vmlinux 0x0f206502 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x0f4aa698 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x0f4d6976 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0f4d7cce ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x0f4f3c57 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f7a8491 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f8994fa srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f8bce10 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x0f8d01da of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0x0f8f04bf dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x0fb1a3ca pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x0fb366ad pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fc37ea6 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x0fc760a5 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0fcbc275 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0fd2f65b serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fdaffe5 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x0fe72c5e xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x1005d60b tick_nohz_dep_set_cpu +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10260658 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x1041954c bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x10422215 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x10467a31 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x105410d0 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x107da9ad blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x1098d318 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x1099c3f5 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x10a94e19 dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0x10ad156a blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x10c88d54 __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x10e6214a of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x10e68f0a power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10eedaed iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x10ef361e wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x10ff9ce4 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1102b96b iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x11051043 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x111e0a35 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x11351733 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x113a5bb1 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x113aaf39 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x113c3111 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x1141d54b driver_find +EXPORT_SYMBOL_GPL vmlinux 0x114a5916 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x114d58f2 imx_pinconf_set_scu +EXPORT_SYMBOL_GPL vmlinux 0x114dc6a6 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x11509e9d device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x115b5eb7 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x11607b04 meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x116207f8 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x1173dd80 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1174b99e __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x11793e98 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x117b82bf devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x1195bf74 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11a4e11a call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0x11c63b19 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x11c91110 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x11da1355 fsnotify_put_mark +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 0x11e6d788 rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x11ede3fb pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x11f83789 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x1207741f sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x12107aed exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x123761e0 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x1251342f rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x1258502a fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x125adfd2 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126f6da0 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x1294ff21 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x12a3525f regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x12cb0800 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x12dc61d4 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x12e1fece inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x12e828b9 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x12eab879 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12f30291 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x1302bfef acpi_nfit_desc_init +EXPORT_SYMBOL_GPL vmlinux 0x1304cdfa blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x13159f35 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x1317ba4a pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x132d86e7 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x132f23cd scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x13304104 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x1335d536 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x13370146 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x13375e50 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x1347452f virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x136da0ee fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x137b025b dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x139d1fd4 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x13a24a06 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x13a40513 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x13b097b1 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x13b87103 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x13c80777 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x13ffa146 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x140ae8d6 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x1413cb8a regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x141e16e9 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x1429d01f serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x1441ccc2 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x1450452b evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x14532cc5 amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free +EXPORT_SYMBOL_GPL vmlinux 0x145d32d5 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x146cfb51 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x147df7bf __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x14826412 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x148ae980 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x1490fb0f devres_get +EXPORT_SYMBOL_GPL vmlinux 0x14a28c6a fsl_mc_bus_dprc_type +EXPORT_SYMBOL_GPL vmlinux 0x14ac6ebe usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x14b7f172 rockchip_clk_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x14c4acce pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14dd281f rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x14e0dbfa __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x14f86cfd __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x150f1318 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x151ccf79 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x1524fdd9 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x153d1b10 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x1543b59c nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x154d67c4 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x155af7cb irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x1573f432 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x158232c1 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x1591b2c6 hyperv_read_cfg_blk +EXPORT_SYMBOL_GPL vmlinux 0x15968a3d crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x1599ef79 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x15a866e2 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x15cf1320 switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0x15d0e25a tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15ea4da7 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x15ef0370 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x15f46935 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x1607d797 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1615f6dc of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x163ac923 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x163b4544 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x163c9f41 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x1651c8ee proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x16556b5c spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x165b0bf1 alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0x165e699f ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x16758dde generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x169482bf gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x16a4ff90 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x16b94f68 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x16c1ccfc xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x16c777e7 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x16d75df0 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16eace5b ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x16f2a360 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x16f888d6 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x170c8156 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x170e3f58 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x172adaa8 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x1740cd1c page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x17453a71 tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x17538c5e hwspin_lock_register +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 0x1765ae9e usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x17719bcf mtk_pctrl_show_one_pin +EXPORT_SYMBOL_GPL vmlinux 0x177c0ea9 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x179b63c1 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x179ceaf9 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x17ca09ab virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x17cb7950 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17ebfcfc usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x17ec7e1d kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x17f32df3 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x180052ab sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x1806f60b pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x182d3f29 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x1850bbd7 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x185e0fcf fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x18762db5 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x188175e6 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x1889b24d devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x188af7c8 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x188b6ffe ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x18a875a8 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x18ac28b7 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x18bed959 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x18d6f983 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x18e0beee auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x18e2668c inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x18f3dfae tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1913b57a kcpustat_cpu_fetch +EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert +EXPORT_SYMBOL_GPL vmlinux 0x19280841 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x192cfbea edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x193480e2 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1942d2e0 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x1945c8eb subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x19541310 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x195a5a16 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x1963afe2 dpcon_reset +EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x198a4b2c regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x19a198dc regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a4b301 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x19aee973 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x1a0218a5 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x1a0a03a2 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a24899c blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x1a3cee2d sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x1a3d8eda pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1a4d4654 vmbus_connection +EXPORT_SYMBOL_GPL vmlinux 0x1a573676 tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0x1a672350 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a6d3be1 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x1a74d33e usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x1a75b4cd bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list +EXPORT_SYMBOL_GPL vmlinux 0x1a7c58ca vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x1a7c8285 of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1a9754cf sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x1a98b270 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x1a9c2cd5 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1aa56d1a irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x1ab4391e firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x1ac369f7 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x1ac382eb perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad577d3 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1afa77ab fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x1b2c363f regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x1b49643a __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b64a6cf acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x1b65ff9a ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1b6d1359 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x1b7b8b51 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x1b81ce58 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x1b84f065 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1bc5e41b spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0x1be64a53 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bf34664 switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0x1c07f65f rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x1c08b36e rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x1c0a93e9 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x1c1fa3ca ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x1c20512d __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x1c30149b tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c6183cb shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x1c663922 iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent +EXPORT_SYMBOL_GPL vmlinux 0x1c8b99a8 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x1c8d2090 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x1c9e2941 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x1ca293f1 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cd207ef wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x1ceb375e dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x1cfcb947 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x1cfed826 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d243145 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x1d4496e5 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x1d4b9108 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7f9169 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1d89905e attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x1d91a903 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1d94b18c dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x1d9c362d ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x1daa03c8 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x1db20226 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x1db60d09 acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1db67693 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x1dc27a5d devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x1dd65883 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x1dd7c9af spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x1ded3c7a dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x1deefbe4 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1dfe49d9 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x1e06085d of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e25afe9 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x1e286ca8 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x1e333922 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x1e350fac devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e4c42e1 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x1e642ab1 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x1e64ff57 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x1e6b0c7c regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e85a6f4 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9171b7 uart_handle_cts_change +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 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1ed6c245 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x1edf85c5 meson_vid_pll_div_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x1ef7b80b ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1efbc7a8 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x1f0627c4 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x1f0a6b44 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x1f0be0e6 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f143dd9 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x1f1be819 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid +EXPORT_SYMBOL_GPL vmlinux 0x1f2963a4 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x1f2ded14 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x1f31b683 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f427a62 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x1f444d3c led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f48a74f __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x1f538124 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5b3aeb spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x1f7659c0 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x1f7d9d46 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x1f8215f8 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8ab272 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fb7340b crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x1fc4057a usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x1fdef15e pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1ff3d68b __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x200fda15 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x2013a333 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x2058b935 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20897fc1 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x208b4980 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x208e5c5d acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x209490ba of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x209550bc fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x20acf724 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x20b3cbd5 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x20c0a5e2 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x20d24870 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x20e37bd7 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x20e794cd __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x20edc694 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x20eeef02 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x20f698cf mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0x211adb00 input_class +EXPORT_SYMBOL_GPL vmlinux 0x2137ffa3 acpi_nfit_init +EXPORT_SYMBOL_GPL vmlinux 0x21493d39 devm_ti_sci_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x2169ce5f of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2172e088 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x218914ab serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x21980305 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x219808bc nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac0bbe usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b0289c nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL vmlinux 0x21c1feae fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x21c644e2 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x21c9e403 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x21caba7e fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x21eb6d14 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x2203f046 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x221394ae hyperv_reg_block_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x221acc78 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x22279643 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x222b0558 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x226c5274 pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x226df304 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x227c1b8d phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x228082ad ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x2283f869 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x2291b8ce usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x22a47860 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x22b2b68e fsl_mc_bus_dprtc_type +EXPORT_SYMBOL_GPL vmlinux 0x22b91b0c perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x22d0c8bc ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22e96ff9 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x22eb9ed6 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x231fbcec fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x2337056c pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x2344f8b6 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x2365a3ab of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x23707433 k3_udma_glue_tx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x23745f11 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x237c79d1 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x237eafd8 clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x239483a8 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x2396bc99 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x239e7091 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x23ad3d1e virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x23b362e1 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x23b96b56 handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x23c231c1 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x23cf9adf __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x23f0e2d2 devm_acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x241b8844 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x24270a00 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x24289118 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x243afb43 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x243eab9a power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2453d472 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2474c42b tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x248e0a2b devm_rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x2492812a rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x24930840 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24b5f43f kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24e426c1 int_active_memcg +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 0x24fefb24 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x2505e4ce crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x250d27bf ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x25300fc1 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x25349d32 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253893c5 blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0x25403782 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x2548a635 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x2563f9c2 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs +EXPORT_SYMBOL_GPL vmlinux 0x257674b6 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x2591b374 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25bc93e2 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x25c3c364 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x25c57829 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x25e53638 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x25e7cca0 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x25e8bcf3 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x25ec17b2 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x2602efc7 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x26077eed devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x2607b73c __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x2614a98f ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x26187467 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x261974cf synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x261a876c mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x2637722e of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26544241 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x265ed6de pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2668442d extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x266d056f rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x267df55e rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2684f4fa dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x2699d545 mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26ab2176 fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26c9f79b fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x26cf3d5e dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x26e57752 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2701953f mtk_mutex_add_comp +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x270b34e8 fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x2715f52c regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x2717341f debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x271a2f12 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x2734a572 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x2735a59a usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x273c296a regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x273d1594 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x273e2382 __context_tracking_enter +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x27541173 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x27683d00 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x276a0588 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x276f23e0 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x27a56556 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x27ae1398 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x27b77138 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x27d884fd dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x27da4248 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x27ed090c blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fd4f87 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0x28025472 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28071f67 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x281090d9 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x28277864 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x28448eb3 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x284d8be8 of_css +EXPORT_SYMBOL_GPL vmlinux 0x28574164 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x285ee70d blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x286044a0 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x28633ac8 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x28640fc8 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x2879b41e devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x288053ba device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x289ace3b clk_register_fixed_factor +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 0x28b477dc class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x28b74245 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x28cdc038 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x28d30310 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x28f26684 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x28f84a1b ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x28fb5ac6 rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x28ff6f19 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2915ab3d mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x291a9e1e platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x29209bf8 nvme_setup_cmd +EXPORT_SYMBOL_GPL vmlinux 0x2921c5e4 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x292b1011 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x292ceb79 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2936e877 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x2949a8ab vmbus_setevent +EXPORT_SYMBOL_GPL vmlinux 0x29542b56 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x295c2901 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x29641d16 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x2965515d devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2974441e of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x29969bc6 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2997168a pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x29a740f6 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x29ae97a6 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x29b02747 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x29d1f264 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x29dcf288 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x29e80a5c scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f2a879 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x2a006241 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2a059744 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x2a20e5c7 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x2a2260c2 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x2a2be12a posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x2a340845 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll +EXPORT_SYMBOL_GPL vmlinux 0x2a41ba93 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2a473793 vtime_guest_exit +EXPORT_SYMBOL_GPL vmlinux 0x2a5d466d mdio_mux_init +EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a5f8e68 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a871396 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x2a8af55a acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x2a8ba4cf posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x2aa101b2 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2aafca16 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x2ac3e6da dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x2acf4405 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider +EXPORT_SYMBOL_GPL vmlinux 0x2af07b90 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x2afbf1c2 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2b0e1b5f dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x2b1f1692 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b4d5538 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x2b5290e3 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b65cfd5 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b7c71c7 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x2b7dd2bb pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2b9ce440 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x2bb66d7e devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x2bbb2d03 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2bcf5978 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x2be4c45f of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x2bf3c246 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x2bfe715a usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x2c00d2d4 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c29620f ip_tunnel_ctl +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2c3a062f ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x2c3c988c crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x2c4e716c nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c7f5699 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2ca007b4 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x2ca1c03a dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x2ca2000e iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get +EXPORT_SYMBOL_GPL vmlinux 0x2cb2270c dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list +EXPORT_SYMBOL_GPL vmlinux 0x2cd564e7 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x2cd7a3d2 tracepoint_srcu +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 0x2cf8b730 dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0x2d05cf78 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d09dc32 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x2d156ba6 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2b1d5a virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x2d2bd81e virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2d2dcebd component_del +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d2fbd87 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x2d362ca1 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x2d393f48 intel_soc_pmic_exec_mipi_pmic_seq_element +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d437681 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x2d4c16a4 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x2d557ca3 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d6f8557 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2d708440 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x2d74effe synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x2d8b1f00 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x2d91aad7 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x2d951555 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x2d9ad670 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2dc3f62b pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x2dc56e92 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x2dcc6b8e regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x2df383dd ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e0520d7 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e0d0c6e inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x2e1e8506 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e4a4b13 dm_internal_resume +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 0x2e6d624e fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x2e741151 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x2e87caea phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x2eac67d0 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec42903 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x2ec46d36 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x2ec57376 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x2ec75900 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x2eca4af0 __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2ed4a83f devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2eec1572 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x2f05b7ea nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x2f078ea5 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f10c314 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f24ee38 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x2f27053a ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x2f2b6d6c hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f43df23 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x2f4603b2 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x2f47f3a3 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f57c67f acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2f5d8d27 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f761988 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x2f844850 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x2f878759 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2fa391d8 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair +EXPORT_SYMBOL_GPL vmlinux 0x2fae5393 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x2faeb6ee usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x2fb5b099 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x2fc10149 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fc980d0 tick_nohz_dep_clear_task +EXPORT_SYMBOL_GPL vmlinux 0x2fed581f devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x2ffd7ac1 devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0x30002fae skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x300b6966 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting +EXPORT_SYMBOL_GPL vmlinux 0x3027d4cc fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x302f45db devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x3030b54a inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id +EXPORT_SYMBOL_GPL vmlinux 0x30443759 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x30504fc9 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x305ec080 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3076fa6f serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x3079c389 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x307df5a8 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x308a9d84 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x308c3184 devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x3092f17a ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x309ccd61 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x30a22980 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x30a791f2 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x30ae76b5 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x30c87164 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x30e1b57c __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30e42163 tick_nohz_dep_clear_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x311b1947 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x311c5728 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x311eecab platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312c59b5 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single +EXPORT_SYMBOL_GPL vmlinux 0x314381aa dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x31495165 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x3157bbb9 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x31714406 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3176b104 dev_pm_opp_put_supported_hw +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 0x318a0632 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x319bb14a sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31ab2a69 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x31b20e67 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x31bd0923 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31cc9a97 dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x31e2e77f vmbus_free_mmio +EXPORT_SYMBOL_GPL vmlinux 0x31e3dc8e hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode +EXPORT_SYMBOL_GPL vmlinux 0x31ea95a1 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x320a571d dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x321055cb vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL vmlinux 0x32181293 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x322acbc5 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x322b8666 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x323189e4 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x3231a817 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x323eab62 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x3249198a regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x324a63b2 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x3258b6d9 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x325b9447 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x32652685 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x3288b6d5 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x3297eba6 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x329837e8 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32b1a7b6 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x32b7a6e4 debugfs_create_dir +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 0x32c482a7 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x32c5eddb tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x32c919b5 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x32da1226 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x32f1e86e netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x33071d60 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x330edccd meson_clk_dualdiv_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x33149234 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x331dd7c2 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x331fa99b gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x332cc3b0 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x333208cf rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x3343be9a regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x335b2de6 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x33641e9c sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x337b70f9 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x3381a95a regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x339406de l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x339e7ef6 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x33b1adbc __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x33bd8399 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x33c3d00d ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x33d43079 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x33e0cd1d led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x33fa840b spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x33fe1b4d devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x33fe93a2 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x3417996c cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x343a9658 iomap_readahead +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 0x34516bf2 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x3457e96e dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x34662bfe spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x34724e84 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x347818a2 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x347cd6c0 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x34809834 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x34898ed6 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34b2a559 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x34bd9d76 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x34bddae2 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x34c0b17e kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x34c1ef56 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x34c5ea42 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x34dd24e9 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x34f4b635 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x34f76cc2 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x3507b46e regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x350859fe pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x350dea10 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x3511577d crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x354535fc rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x35530107 icmp_build_probe +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 0x356e1671 mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x357041e9 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x35a06769 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x35a473d1 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider +EXPORT_SYMBOL_GPL vmlinux 0x35a55754 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x35ab8936 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x35c3f944 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35d9cdff of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x35db2b52 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x35ee589c trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x35f2de29 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x3606dba1 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36169233 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x362311ad extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x363da9bf vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x3643c440 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x365e73f2 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x365ef149 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x3666d459 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x3676e8c1 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x36832bf8 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a9f362 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x36c39fef wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x36c581db usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x36c9ff77 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x36cd1c1d devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x36d92bc7 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x36dcdd83 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x36ed82b2 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x36f21ed5 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x36f8fe14 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x37129134 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x371ebd86 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x37368f5a crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x374f4d6a devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x375fba99 usb_add_hcd +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 0x37816a88 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset +EXPORT_SYMBOL_GPL vmlinux 0x3790d54a pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x3798f9db dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37c141c7 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x37c8aeaa fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x37d5a13b devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x37e4673c watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x37f1794c task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x37fbcba3 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x38200a46 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x382e9b29 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x382f2a05 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x384f1f88 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x3856e637 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x3868194e subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x3876f0ae io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x38877a49 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x38905ea5 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38a0a627 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38c45108 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x38c8d283 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x38d5977d dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e2c53c __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38e6d090 devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x38eb6d23 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x38f04c20 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL vmlinux 0x38f43a2d extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x390f017f of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x3929bd19 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3932991f crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x3950104c crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x3956567e tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x395a6aab zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x39685973 udp_tun_rx_dst +EXPORT_SYMBOL_GPL vmlinux 0x396ffade tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x397296eb genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x39850cb6 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x3986e345 usb_for_each_port +EXPORT_SYMBOL_GPL vmlinux 0x39895c18 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x39992e63 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39af0065 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39cf562b pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x39d4112c acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39fc692f rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x3a0636ec dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x3a08746c bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x3a089997 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a0ab4df bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x3a0e8563 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x3a228287 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x3a22e26a tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a5093fc ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a8b89b9 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x3a98bb0f gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3a9ec99b mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x3ab43b94 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x3ab4f828 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x3abfc929 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3ac54368 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x3ace4754 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x3af0cb4d of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x3afbf298 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x3b29213f fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b5173ce acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b647754 nvme_wait_freeze +EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x3b87aebe spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3ba2c341 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x3bc934aa crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x3be18174 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x3be9a917 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bfa3e02 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x3bfac250 meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x3c08d5bb rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x3c0a3610 pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c0efddc serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x3c0fed8d of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq +EXPORT_SYMBOL_GPL vmlinux 0x3c16aeb3 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c21fee1 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c46f176 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x3c5616ed crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c64479b debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c6958c7 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x3c7255f0 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8570 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x3c7f48d0 dpbp_close +EXPORT_SYMBOL_GPL vmlinux 0x3c92dddb ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x3c9df844 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x3c9e3f4d __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x3ca0e474 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3cba65bb xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x3cc372de irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x3ccc9e02 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x3ccccc23 unix_inq_len +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 0x3cdec457 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x3cfab644 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3d05b784 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x3d127cfd fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0x3d12e31e genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x3d13cfd6 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x3d1bbd7e crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3eb2d5 bgmac_enet_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3d4f94a4 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d624d5a fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d9449bc ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x3d9d2f5c thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3daae050 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x3dbe9c26 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x3ddeeeb9 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df05f57 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x3df3f171 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x3e0213b7 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x3e09eb55 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x3e2f3b12 fsl_mc_bus_dpbp_type +EXPORT_SYMBOL_GPL vmlinux 0x3e3e58b6 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x3e48713e devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3e4c7ab3 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3e575b37 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e73e9f0 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x3e7e7f22 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x3e90a34c srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x3e9210c8 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x3e946a00 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ead9970 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x3eba1a9f rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x3ec246ac skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x3ec904c5 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x3ecbce4e find_iova +EXPORT_SYMBOL_GPL vmlinux 0x3eed1f98 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x3eedf0e3 put_device +EXPORT_SYMBOL_GPL vmlinux 0x3eeff427 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef47577 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f103e54 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x3f19efd9 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL vmlinux 0x3f1be551 fsl_mc_bus_dpdmai_type +EXPORT_SYMBOL_GPL vmlinux 0x3f2c4d43 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x3f2c4ec6 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3f3bd6d8 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x3f3dc105 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x3f3e47ab __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x3f3fe361 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f54dac1 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3f574090 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x3f586d19 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3f65ccff acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x3f6d8774 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x3f77abc6 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x3f7a0c71 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3f7d7d96 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x3f83f8d3 rcu_bind_current_to_nocb +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3f93e310 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x3f963894 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x3f97750c ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x3f9a3a68 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x3f9f30a1 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x3fa11f4c ti_sci_inta_msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x3fa1ae30 blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fb7395c cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x3fdff032 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fe7b330 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3ff53537 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x401078bf blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x401a841c vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x402d5843 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x4039e150 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x4050b8e2 md_start +EXPORT_SYMBOL_GPL vmlinux 0x40513891 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x40612697 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x4066e7f9 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x407a3cdd nvme_kill_queues +EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x40881002 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40af3a8a inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x40b4a201 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x40b61e78 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x40ca3c53 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x40cb273a debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x40d349b6 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x40d68d6f regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x40e088fe __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x40e0ba52 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f57507 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x40fccf8a fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x40fe0a64 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x4110cb5d ping_err +EXPORT_SYMBOL_GPL vmlinux 0x411ada0d pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x41209602 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature +EXPORT_SYMBOL_GPL vmlinux 0x4129f27b do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x413fcbce skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x4149cb79 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x414aa117 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x414ce097 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x4156fff8 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x4176e558 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x417942b8 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4181d55e bgmac_enet_remove +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41a02b80 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41be12c8 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x41c2aed2 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x41cc86ff usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x41d31c78 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL vmlinux 0x41d78190 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x41da0797 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x41db68fd crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x41e7c42e of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x42030dc6 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x421bc848 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x4226c80a is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x423cb62e fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x42405770 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x4252832d devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x425435d8 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x425bb25b mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x4269a3c9 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4292923c devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x42b29043 mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0x42b416f3 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x42cb1311 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x42d0f7c7 acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0x42debf28 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42f5f348 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x4303e708 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x4312316a switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x432d4404 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43513e88 __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x4361071c kill_device +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x43782ebd nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x437bf54b efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4381b1a6 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x4389037a dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x439e10a9 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x43a39c1b fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43c34db1 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x43ea65fb debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x43eea1aa pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x43f2e90f unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x43f4ce4a dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f6d35b gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f91203 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43fa4f12 dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x44030b96 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x441048cf __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x441284e7 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x443cde9b bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x443eaf1b handle_irq_desc +EXPORT_SYMBOL_GPL vmlinux 0x4441381e page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x444be508 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x444d7529 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x44680809 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448fad6c regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x44953b90 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x4498b7d5 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x44a6f464 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x44a90fa6 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x44ad85cc pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x44b32012 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x44b96c4d regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44ce7db4 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44d06756 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x44d25930 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x44e528e8 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x44e6f00b __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x44e90ce7 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x44f76c23 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x44fba229 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450c2ddf clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x4517287c sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0x451c3e58 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x4527c70c start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x45555469 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x455875f3 dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45818599 nvme_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x4583f794 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x45864cdd devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x45890d14 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x459c3c25 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45a54627 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x45ade296 pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x45aea6bc fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x45b79b0a ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x45c13e55 rockchip_register_softrst +EXPORT_SYMBOL_GPL vmlinux 0x45c94b24 iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x45cb98f1 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x45cdeb95 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x45dc7557 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x45eee67b wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x45fc1629 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x46037792 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x4614961a ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x4615b7b8 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x46353b7c devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x4636fa50 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x463765ee ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4639bcda acpi_nfit_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x463d5f69 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x463d72c6 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x46535379 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x466254d8 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x4674ee13 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x467998e5 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x467e6991 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x4684a8d5 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x46870715 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46d21160 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x46de0e7c devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x46e31681 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x47165e97 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4724403c pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x472d27d4 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x47482140 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x47547770 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x475c82a8 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476f42d3 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x47856fff __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x4785d6d7 devm_pci_epc_destroy +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 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a58cd7 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b3bab5 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x47b8f669 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x47c36fbf skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x47c691a7 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e81a8c security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x47e954c3 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x480c0074 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x481493e9 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x481b9502 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x483ca464 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x484fc222 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x4855bac4 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x4879b7ed clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x487c511e nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x487ef5df dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x48937ace dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0x489e0e8d edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a7f5aa meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48c99c6b devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x48d7c3b4 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x48d9af80 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x48deb080 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0x48f6f981 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x4907c557 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x490f5928 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x492a0da6 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x493977da do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x493c0fc1 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x494b9a4e fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x494f7d0e switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x495b60de spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x495ee3e9 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x496cdfd9 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x497ab0c1 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x498d75cd blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4993e08d tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x49940e33 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x4994a12b pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x4999879e syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x499bbf57 nfit_get_smbios_id +EXPORT_SYMBOL_GPL vmlinux 0x49c5ca87 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d98e9a akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x49e88ecc regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f73079 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a31f85a cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x4a34c013 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a48c359 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x4a5713cb pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x4a6a9d5e bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x4a751d4a relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x4a771ea1 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x4a8d0608 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x4a9fcad2 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x4abd6c31 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x4ac1e3dc acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x4ace5bee ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x4ad8597c devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x4b0cd65c fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x4b188c3c devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x4b2210b8 vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL vmlinux 0x4b3ba866 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x4b410a48 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b591a8d devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b5b38ad phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x4b680477 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x4b716e4d devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x4b90659c inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x4b993429 fsl_mc_bus_dpsw_type +EXPORT_SYMBOL_GPL vmlinux 0x4ba6b26f crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x4ba7012a led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x4bb2d835 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x4bc31fa0 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4bc5cb2d __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4c0dc7d5 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL vmlinux 0x4c1d8976 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4c2e6d1a dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x4c4d1182 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c65c772 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c726f67 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4ca5e797 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cb8b17f __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x4cb9ecdb mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4cbf8032 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x4cc24102 devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0x4cc511b3 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x4cc719e5 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x4ccb8e01 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x4cd0faff vmbus_next_request_id +EXPORT_SYMBOL_GPL vmlinux 0x4cd532fd perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x4cdded68 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4cecd64a led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x4cf26b2d init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0b752f alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x4d0e8acd gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4d21aa67 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x4d29ce26 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x4d39a488 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d5beb66 of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d7c9a2d skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x4d81f84f clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x4d8c2e99 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x4d8cfab0 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x4d938d69 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x4da1f4a7 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x4dae03bd gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x4db79fbb devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x4dc97936 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x4dd5c9a2 acpi_irq_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x4dd5d147 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x4dd7607c pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4ddb2740 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4deec99f virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x4dff03eb skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x4dff996a bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x4e09b821 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x4e0b428d fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x4e0c8ce3 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e284235 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x4e322df7 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x4e375d0d subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x4e37f196 qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e455401 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e5c3d0e vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x4e61a57d raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x4e723302 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4e78a164 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x4e8cdc7c reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x4e949e10 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x4e950a80 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x4e9a1c21 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x4e9f8482 iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4eb67490 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x4eb844f4 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x4ebf6331 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ed72c3c irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x4ee6d560 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f080a05 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x4f256189 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f35cb0f aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x4f3bc939 devm_gpio_request_one +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 0x4f84abfc dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x4f989ead devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fa6e1b1 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x4fab0896 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x4fbdb0c5 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fdd12d4 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x4fdf6324 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x4fe1c29f __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff6c62f scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x4ffa217a rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5005699c __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x50328661 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL vmlinux 0x505043dd find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x505f660d platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x5063124b iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x5083bd4c class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x5099fb0b hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50a6c6f9 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x50a775ab __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x50b10895 clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property +EXPORT_SYMBOL_GPL vmlinux 0x50c61940 __context_tracking_exit +EXPORT_SYMBOL_GPL vmlinux 0x50d396b2 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e3e389 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51203980 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x51466167 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x5147ae01 fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0x514d20b7 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x5157084c devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5160e2d6 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x51612796 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x5176b5d5 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x5176b918 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x517a1289 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x51aa598b ping_close +EXPORT_SYMBOL_GPL vmlinux 0x51ab6c7f bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x51ab7733 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x51c01dd5 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51daf739 nvme_cancel_tagset +EXPORT_SYMBOL_GPL vmlinux 0x51e9ba4d setfl +EXPORT_SYMBOL_GPL vmlinux 0x51f45f40 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x51f51823 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x51f88516 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x51faba90 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x51fb4675 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x52003441 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x520b7a51 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x520da5d0 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x5211a3e5 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x5220de78 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x5222cda3 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x522a65af pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x523643c1 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x5245ca38 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x52482cb0 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x525461e6 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x52652c0a ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x52669507 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x526ddc3a generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x526fe1aa regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52c9a7de tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x52cbd773 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52d6de46 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x52dd8650 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x52e312fb pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x52ed6a45 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x52f5c81a crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x52fcf9ea device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x532d84c3 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x533e2b20 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x534e3268 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x5354321c input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x535dc2dd dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x53628f6e iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x5363a28a nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x53664ef4 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x5368a425 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x5369c57b vmbus_open +EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x537503a8 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL vmlinux 0x53847b40 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x538a5a9d ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x539062a0 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x53ad3120 mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x53b4d332 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53dd2cbb devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x53e8dbe6 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x53e94854 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x54333d55 security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x5433d522 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x54386819 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x544fe63d kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x54543808 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0x5460f79f work_on_cpu_safe_key +EXPORT_SYMBOL_GPL vmlinux 0x5464a435 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x5468f878 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x54827d34 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a08bbf rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54a3f840 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54b71f04 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x54cbe9f7 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x54dccec0 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54e11c16 sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0x54f56441 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x54fcbaef __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x550ca8ff gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x552186ea devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5528543b vmap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55477847 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x555cef01 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x556cb677 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55743deb exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5593b1d1 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x55b2c4dd of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x55c0beac bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x55c339cd mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node +EXPORT_SYMBOL_GPL vmlinux 0x55e0dfac hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x55e5db3a nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f0aae0 ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0x55f4b580 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x55faf803 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x56006715 rockchip_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x560c68fb uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x56205e25 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562c32cf fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564244b3 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x564ca004 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x5651a215 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x565fd2ab rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x5660b2f8 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x5661400e class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x566d7913 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x5674b252 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x5676eb0e setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL vmlinux 0x56889000 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x569c7fcb devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x56a9f78a dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x56ae3234 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x56c4dd3b devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x56c4ef79 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x56d5752b inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x56d61dce context_tracking_enter +EXPORT_SYMBOL_GPL vmlinux 0x56dc4ba2 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x56e37422 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56ec650c usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x571dbf0d acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x57281557 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x573ecec9 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x57612809 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x576fb6e8 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x57788b1b regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x57793604 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579922c5 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57afebfa dprc_open +EXPORT_SYMBOL_GPL vmlinux 0x57b84d12 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x57bbbe44 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x57d2803a tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57e62b20 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x57efc0db devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x580858d5 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x583401a8 __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x58363723 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x58575853 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x585bac59 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5876e175 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587a3f9e dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x587e264a bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x587f1de1 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x588c6ad1 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58a03ddb dprc_setup +EXPORT_SYMBOL_GPL vmlinux 0x58b09ca8 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x58c70fed regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x58ca1a9b mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x58cdb3a8 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58d395e5 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x58db67a7 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58eca388 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x59152f12 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x591bf902 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x59242901 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x5924b143 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x592dac71 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x592fa913 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x5944be06 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x5954b1c0 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x598cddc5 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x59960026 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x599dcc24 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x599ef464 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x59a59594 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59bcc76f regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59cd0d1c xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x59d3547b of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x59dd37dc fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv +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 0x5a3202fd devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x5a419dad thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a8cb82b switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x5a98b763 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x5a9df59d amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5aa6b307 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ac56355 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x5ac76874 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x5ae549e0 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL vmlinux 0x5afa9c39 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x5b04a77c pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b2338c8 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x5b27ae0d ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x5b2855ac fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x5b36a59b xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x5b3a92c3 k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x5b5ecfcf wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b71da1c devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x5b74c362 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x5b9f9a4e __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x5bb35cb3 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x5bb9ea16 ip_tunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bc57a3f irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bc9914a pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd347bd __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x5bd549ba ip_tunnel_init +EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bf36cb6 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x5c08fe14 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x5c0a19b9 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c0ee82d pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x5c1856a3 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x5c1b8b4e pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec +EXPORT_SYMBOL_GPL vmlinux 0x5c3997b6 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c3dd6e6 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x5c4fa2a7 split_page +EXPORT_SYMBOL_GPL vmlinux 0x5c50f941 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x5c5d7513 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x5c60fc3d ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x5c63fbcf clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x5c71a543 gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c895c9e __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x5c8f9336 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x5c9e38af sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5cad0ebf nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cc0f3be percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x5cd63054 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x5cdc4459 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x5ce12a5f pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x5ce61c49 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cf88dc5 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x5cfa5ee9 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d29157e sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d3b7924 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x5d3efe81 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x5d48ae67 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x5d4a35f3 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x5d561f73 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x5d5bf0a8 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x5d70aa4c fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x5d73220d balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x5d769b15 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x5d79254a fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x5d7d1916 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d938375 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x5d964686 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x5da1cde4 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da990b7 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x5dc9eea9 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5dd52587 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push +EXPORT_SYMBOL_GPL vmlinux 0x5de58fb6 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x5e033238 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e1f59e4 acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x5e24d448 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x5e2a6797 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x5e333545 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e674e6a iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x5e686b0a ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size +EXPORT_SYMBOL_GPL vmlinux 0x5e77346e phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e820296 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e9299e0 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x5e9ae49f device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5e9c7125 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x5ea9ad20 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x5ec54941 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource +EXPORT_SYMBOL_GPL vmlinux 0x5ed99605 rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0x5ee194f8 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x5f122c7a platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x5f180229 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x5f1a6aa4 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f6a0929 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f725463 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x5f80ee0d devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5f81d823 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x5f86b76e pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x5f94b830 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x5f9a49be genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x5fa2a43c __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fb43ebb of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL vmlinux 0x5fbec40e devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5fcb9f39 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x5fcddf1c usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x5fd815cc crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x5fda58a4 of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fdac69e blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x5fec4ae5 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x601eef32 nvme_enable_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x602248aa usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x6026e2dc mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x6030e5ca da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x603a4309 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x60412500 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6048928c gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x604c42aa bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size +EXPORT_SYMBOL_GPL vmlinux 0x606ce030 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x607550a8 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x6088130c fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x6088fc4b elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x609544a6 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60a96c02 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x60ae89ef devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60b7bd00 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x60df8f02 component_add +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f93222 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x60fd5629 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x610b04d7 dprc_reset_container +EXPORT_SYMBOL_GPL vmlinux 0x61103b28 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x6110836a thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x612516a8 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x612e0b88 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x613b60cc pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x613fe212 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x6159f6ae phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x616afce2 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL vmlinux 0x61732325 acpi_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x6175a77a alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +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 0x61a9c72b genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x61a9ed69 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61c8846d gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x61cbd399 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x61e7f517 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x61e835c8 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x61f07b59 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x62035b3f devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x62178af3 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x62202d8f regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x6225d663 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x624a5675 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x626a5845 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x6281a158 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x6285e9d6 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x628711ed xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x628d9277 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x6296f658 usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x629dee88 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x62a9a2ea tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62c3ece8 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x62e4b300 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x630acb46 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6312b436 fsl_mc_bus_dpaiop_type +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 0x6329a264 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x633a79d5 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x6366cee2 timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0x636dfd7a vmbus_connect_ring +EXPORT_SYMBOL_GPL vmlinux 0x6373ba6a fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x637dc7c9 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x6387fe79 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x639a6c70 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x639f8bfd skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x63b6cfef __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63cff102 copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0x63db9364 arm64_mm_context_put +EXPORT_SYMBOL_GPL vmlinux 0x63e64ebe vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x63e7d451 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f10ec8 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x6400b883 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable +EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate +EXPORT_SYMBOL_GPL vmlinux 0x645074af devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x64515b60 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x646df133 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x646e5c6a irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6488ddbb genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x6494f1e5 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x649818d4 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64aa5a4e crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL vmlinux 0x64b71173 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x64c6b2b0 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x64d1cac4 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load +EXPORT_SYMBOL_GPL vmlinux 0x64da98ba __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64e62686 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f5e52d fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x65048a43 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x6508b38a usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x650ae0e0 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x650e3f4b pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x6512445e ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x65187db3 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6519b749 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x6538e44f usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x653e6c82 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x655e4879 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x655fb871 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x65900461 fsl_mc_bus_dpmac_type +EXPORT_SYMBOL_GPL vmlinux 0x65a1afc7 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x65aa9f22 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x65b7b8a4 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cdfc47 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x65d4323d dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x65dd5ead clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache +EXPORT_SYMBOL_GPL vmlinux 0x65ea5f02 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x65f0d198 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x65f14b05 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x65f5136d power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x65fb0381 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x660341ef thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x6604e26c __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x660a5706 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6622a4c2 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x6627e7df __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6637f6f4 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x663f176b devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x6644972d generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x66639319 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0x66806c8d pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66b12f39 rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x66b2a432 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bd565f mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66f2e69f mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x67179d02 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x67284914 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x672f053b __traceiter_xdp_bulk_tx +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 0x674e657e hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL vmlinux 0x674fe0ab xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free +EXPORT_SYMBOL_GPL vmlinux 0x677b3015 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x679219e2 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x67933fba vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a2263a regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x67a43cf9 vmbus_request_addr_match +EXPORT_SYMBOL_GPL vmlinux 0x67a81116 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x67b06d3f xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x67b29ac2 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x67c48172 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x67c709e2 bgmac_alloc +EXPORT_SYMBOL_GPL vmlinux 0x67d13600 fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67db3a91 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x67dbe52e led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x6803e323 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x6807918b devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x680d4d3b power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x683edac9 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0x68545c71 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x68549704 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x68596a78 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x68705269 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x6878b491 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x68817742 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x68915792 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x689a8357 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x68b6ac20 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x68b86b84 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x68b99f65 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x68b9e41e crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x68ba061f mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x68e2a0d4 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL vmlinux 0x68e7ff1c bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x68e80369 intel_pmic_install_opregion_handler +EXPORT_SYMBOL_GPL vmlinux 0x6901eb29 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x69163739 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x69291c83 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x694ba8a5 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6960c39f blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x696c85a1 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x696caa6f __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x697bfe2b rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6987e6ed pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x69b1010f hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69ba6ece pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x69be7536 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d09038 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69e85dec kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a269a8e vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x6a2a4d2d kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x6a3b4723 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x6a3e8a16 vp_modern_map_vq_notify +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 0x6a5f3321 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x6a69078b dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x6a6bd6a7 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a87af80 fsl_mc_get_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function +EXPORT_SYMBOL_GPL vmlinux 0x6a95e0b3 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x6aad0659 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x6ab78909 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x6ac78d56 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x6ad39bcd pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x6ae848cd kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x6aed224b nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x6b0570c5 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x6b06e60b sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6b08f7bb irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x6b160722 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b1cb8d1 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x6b205b27 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b2f8c7f blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b3e686c __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b4266bf crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6b47fe6f bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x6b4d202f spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x6b57827e nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x6b73a1cc devm_kstrdup_const +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 0x6b9676d2 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6bbd93e2 divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bd0a31e crypto_skcipher_decrypt +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 0x6be4ec7b dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x6be549d8 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x6bf6f6cf devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x6bf7a5b1 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x6c0f47a6 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c2ca26f raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x6c368129 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6c371d66 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c38f658 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c404ba9 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c6f6e59 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x6c7eea28 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x6c80e824 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x6c89787e fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x6c8b7f09 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6c959c2c pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x6c9658eb meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x6cc0c392 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x6ccc90d5 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x6cdef9ac nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6ce29801 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x6ce5b288 fwnode_graph_get_next_endpoint +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 0x6d1487ea irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6d185119 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d2fda4f virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x6d3d8fae to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x6d41282b synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x6d440773 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit +EXPORT_SYMBOL_GPL vmlinux 0x6d579d92 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x6d5c142d iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x6d5d1abc fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d62227e serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x6d65574a rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x6d6c383a key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x6d6d2074 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x6d6ead37 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7d7b62 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d91cac9 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x6da5e72c strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dbaeafc perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x6dc239b7 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x6dd492aa devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6de2e377 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x6de5ddf9 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x6dead75f tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x6def6b70 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x6e06ec45 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e1c770f cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6e38b3dd gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e441e30 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e50af68 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x6e51fe43 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e63e83f trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x6e74f7d7 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e81aa55 msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8dfc15 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x6e99007c vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x6e9e578e kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0x6eba7bc7 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec2e833 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x6ece3d58 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x6edb915a __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6eef0872 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x6ef0855c ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6ef42c9f ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f026f08 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x6f03ddbf ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x6f0b9e0e securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x6f0ee1ba sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f50f1b1 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x6f55572f device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x6f6752a4 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x6f775ef2 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x6f7db0f4 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f847c82 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f8d590b kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x6f9165f2 is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x6f95bb84 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x6f9781ec of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fb82c9a irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x6fb9e97b iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x6fc93494 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6fff21b4 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x7024b258 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x7030f633 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x70342342 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x7039c48a devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x7042b6de fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x7044a518 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7055c56e __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x70597a5a debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x707b1fdc regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7084edfb bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x70856f5e __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x7085bf4e hv_pkt_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x708b12f6 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x708cd375 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x70a5a36a __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6cc79 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d0c568 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x70e2faee of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x70fadad9 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x710a9418 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x710f350b gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x712bf9ef scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x712e904b pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x71420a6e check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x714f459c ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x715d17dc __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x715dddff raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7169f675 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x717b9c59 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x717f357f xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7183854f fsl_mc_bus_dpmcp_type +EXPORT_SYMBOL_GPL vmlinux 0x718e2de8 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x719849af devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71a43944 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x71a90b04 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire +EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71bba5c0 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x71c19162 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x71d98109 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x721c6d0b extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x723ab9e9 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x724e1b86 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x725f3b26 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x72608636 nvme_reset_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x7274f54b to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727aaabe pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x728c5bb6 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x72f1a320 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x72f5eb17 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x73037cf9 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x73063de8 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL vmlinux 0x73242dcd cpu_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x73270754 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7355b15d __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x735c7e73 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x735f98a9 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x737e7d30 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x738deac4 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x73933039 fsl_mc_bus_dpdcei_type +EXPORT_SYMBOL_GPL vmlinux 0x73964411 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c64b49 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73e90da6 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x73f6a3c9 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x74193557 dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x7419f9a9 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x741c4b58 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x742a3b47 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x7435a323 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743cdcde regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x7446186c md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x744d24f3 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x7479d9dd of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x749cd362 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x749de225 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x74a0b0c0 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x74a6b31b phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b623be vxlan_fdb_replay +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c34ab3 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74f82f79 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x74fbda8a add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x75189fb8 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7540b2b5 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x7540eda3 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x75473a39 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x754cd25b crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7555f077 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x756e1d17 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x758a43fe k3_ringacc_get_ring_irq_num +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x75b64bae of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x75bce807 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x75d7e9c2 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x75da5ea8 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x75dae835 dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75e13200 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x75e84916 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75ea5217 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x75ef6e3c devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x75f67478 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x761a7225 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x761c78fb em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x762e851a pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x7640fd62 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x764e5c4a acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x7653fd75 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x76668a6a devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x767f2e7f device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x76803616 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x76818954 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x768a6b0f pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x7695dc41 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x769a0d97 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x769b52d1 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x769f728c modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x76a2d659 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x76a5a14d devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x76b6a7ea device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x76b9d97d nvme_sync_io_queues +EXPORT_SYMBOL_GPL vmlinux 0x76c42a0e devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x76cbcddd pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x76ced955 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x76d37c02 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e845c7 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76fd216b ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7702ba3e mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x770975e0 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x770c29be page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x770cf58a of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x771417d2 is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x771ef384 usb_driver_set_configuration +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 0x773e13c2 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x7747b9f4 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x774dcd48 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x775009fe get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x777d1293 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x7782cf9b gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x7785840a pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x778675ab ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x779041a3 ip_tunnel_setup +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b57e06 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x77c5f0e0 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x77cd192c iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x77d1755f ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x77d3afbe devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x77dbe276 amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x77e4d66b led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77f35ae6 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x77f3e391 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x780a3082 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x78156315 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x782b8d42 mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0x78308f88 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x784be198 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x784c133a kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x785a4867 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786008d3 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7862bcd4 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7871b3f9 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x7873c468 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7887efdc pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x78929894 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x789fcc20 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x78a47e6d cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x78bde430 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x78d45a2c devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78e54770 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x78f754eb mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x78fe99ad __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x78fed77b regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x791e9540 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x79286391 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x79345cb9 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x7934aa08 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7936d286 pci_create_slot +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 0x79480db6 tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x794f8c8e blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x79554dee debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7965cd89 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x79772eba gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x7983a0d2 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x799574ad get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x7995a096 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x79971923 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x7999ea37 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x799bfd4e led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x79bc3335 devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e99899 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x79eadf55 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x79fbe3bd iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x79ffac9e trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x7a215bba regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x7a375efc pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x7a474185 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7a4cd89b inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7a501551 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x7a5284d6 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x7a53597d iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x7a67b048 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a74988d iommu_unmap_fast +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 0x7aa67dde pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x7aac59b6 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x7ac0aefd serial8250_request_dma +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 0x7ad0434c unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ad2c64c k3_udma_glue_release_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7b09062a ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x7b1562e3 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b1ea5c2 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x7b37cb2a extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b5b7b0a pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b725118 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x7b84cf0a devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x7b943b69 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b9a0e25 device_move +EXPORT_SYMBOL_GPL vmlinux 0x7b9d390f tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x7bb03279 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bbe67ca ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7bd02cc2 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x7be372e1 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x7be4ba5c kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x7bec81a4 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x7c0d454b kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0x7c274d24 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c3165de crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x7c3b2bc8 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c3e736a rcu_nocb_cpu_offload +EXPORT_SYMBOL_GPL vmlinux 0x7c429590 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x7c469dca icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x7c540d5d pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c626556 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7c6b3815 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x7c85e267 regulator_get_drvdata +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 0x7ca64a0b __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7caa5585 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x7cac0a73 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x7cacfcd8 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x7cafe7fe dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cc9e4ee phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd3810c eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x7cd67f3f proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf4da32 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d074364 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d3ad00f vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL vmlinux 0x7d3d6957 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x7d3fd1b0 ip_tunnel_dellink +EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release +EXPORT_SYMBOL_GPL vmlinux 0x7d48de2a ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x7d491683 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x7d511bd5 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7d536de0 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x7d537a2e bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5d4383 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x7d6ce814 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7d7b4ca7 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x7d9121fb tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0x7da358d1 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x7da3b8eb unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7dabbfb8 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x7dbed9dc stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x7dc05ffc blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de3ddda __udp_gso_segment +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 0x7de8220e scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x7dec7944 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x7df8c121 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x7dfc23ed fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x7e0e4e13 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x7e128def acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x7e181b3c devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e1a55dc __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL vmlinux 0x7e1ff100 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7e20ee4c __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x7e2c5033 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e3ba9c9 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e4a6d1d hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x7e53f5cb usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e7430b6 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x7e7628c6 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x7e7a2e18 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7e95471f device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x7e9579d3 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x7e9e0770 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7ead82b3 kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7eba5dec irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x7ebd9c3b device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x7ec4b3f7 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x7ecd3243 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7eee3510 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7efe8a7c l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f0410f2 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7f29d4e0 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x7f3af0f2 sprd_pinctrl_core_probe +EXPORT_SYMBOL_GPL vmlinux 0x7f4d1401 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7f61bf60 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f7660ec edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8149ea __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x7f944ed1 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x7f9a09aa nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x7fa70ed5 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x7fa8436d hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fb3a781 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x7fb4ec9b skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x7fb6f659 __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0x7fb79175 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7fd07329 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x7fd5c863 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x7fe0ef77 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x7ff10329 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement +EXPORT_SYMBOL_GPL vmlinux 0x7ffcd86a regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7ffe29bf rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x80039681 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x800f4d2b spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8010d989 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail +EXPORT_SYMBOL_GPL vmlinux 0x801577d1 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x802014d9 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x8020ae39 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical +EXPORT_SYMBOL_GPL vmlinux 0x8049f3ae cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x804cc991 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x804e8d8b gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x805701a0 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x8061ae41 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x806327ea imx_clk_hw_cpu +EXPORT_SYMBOL_GPL vmlinux 0x806dcfc7 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x8075e1ec __vmbus_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x80773f42 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x80813dc4 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x808531fb blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x808cdf68 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809b8280 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x80ae5df2 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x80b639a2 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x80c380dc tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80ca9689 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x80cc21f8 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80d9a63b raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x80e8358b ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x80eb0cd1 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x80f552e7 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x80f8c89f irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x810a9d20 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x810d7eb6 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x8118cad6 mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x811920d7 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x81192271 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x81490cfe crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x814e2386 kcpustat_field +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8163991a skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x81648f8a devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x816739df pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x816be189 mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x816fc450 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL vmlinux 0x817c9af9 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x817fb6e5 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x81833926 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x8187a429 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x819a8120 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x819d4ff9 msg_zerocopy_put_abort +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 0x81b460b9 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x81bf1cd8 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x81dd44d4 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x81de9fc2 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x820809a5 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x82087724 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x82252984 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x822d5bb0 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x82302d7b vmbus_request_addr +EXPORT_SYMBOL_GPL vmlinux 0x823b2f46 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x824ac6b9 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x8263029a __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x827aa2e9 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x827b6865 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x82972015 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8297cf04 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x82c2b567 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x82c59169 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x82c8e013 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82d93d40 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x82e467b9 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x8305747e debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x830990ea gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x83202334 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x83308446 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x833a9c67 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x8344a08a thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x834ab6fb bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x834db3b0 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x83609c89 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x836106ef devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x8363b4d8 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x83719185 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x837f3097 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x83835915 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x838590b4 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x839ccb7e ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x83cb16ea pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x83d44605 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x83e80cfb of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x83f293c5 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x8405b326 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x8417620e icc_get +EXPORT_SYMBOL_GPL vmlinux 0x841eafde of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x8427e232 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x844cb904 mtk_mutex_remove_comp +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845ad868 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x845ee286 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x84634b46 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x846f8239 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x84816cb0 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x8489027e bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x84894cff devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x8492c48c cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x849656a9 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84cbce9b bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x84cea0be mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x84dc1f28 of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x84e0d141 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x84e596a4 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8529d350 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x852f9857 nvme_wait_reset +EXPORT_SYMBOL_GPL vmlinux 0x8537f142 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x8546ee01 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x855af78f perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x856f768f devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x857b2926 mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x857cf44f nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x8591fb65 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x85bbe553 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85c7528e ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x85f20f5b devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x85f39a2b bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x85f5f977 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x86113c6b kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x86137e96 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x861f526e crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862608ba fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x864d5d70 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x86548719 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x866c3d98 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x867c0c3a nvme_cancel_request +EXPORT_SYMBOL_GPL vmlinux 0x86839cc9 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86932194 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw +EXPORT_SYMBOL_GPL vmlinux 0x86b6c936 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x86ba7633 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86d33aad regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x86d7ccaf __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x86dac08b pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86ece033 ip_tunnel_changelink +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x8701fd3e vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x8703cdbd vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x87098b91 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x870d4b56 fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0x870d8d0b devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x871b8631 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x8725d74b spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8736ffa7 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x87390b9f memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x874d8ab6 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x8759ebc3 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x875d22c2 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x8767bc3a phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x8776c4cf nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87814b3e cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x878b39f8 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x878d7d2b page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x879fc6fc bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x87bab730 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x87ce0be2 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x87d61d02 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x87debe15 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x87f8d439 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x88001b9e regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x88006703 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x8802bb0e nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x880adfe5 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x8810e36e pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x882179cd mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x8829c821 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x883cfda0 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x883d77a1 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x884e26f0 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x885b7a59 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x886008e6 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x8862365e __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x886d1d2d gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x887808a1 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x887bb115 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x888dc9ba iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88afb1bb devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x88b46fae dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ +EXPORT_SYMBOL_GPL vmlinux 0x88dffce2 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x88ea4481 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x89413d15 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x89472c7e dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x89480e0e sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89485d34 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x894d8e93 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x89529f14 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x8961bf01 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x896f8442 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x897039c1 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x8990d127 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x8995a8b9 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x899f46c5 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89b09b09 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x89cce155 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89e4e8f9 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x89f869f0 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x8a006570 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x8a1cda00 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x8a20f0e4 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a4f380d iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a5dc76f regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a8c86e6 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8abe3827 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x8ac01e36 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x8ad43ec7 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x8ad8136c security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8ada2369 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x8ae5dad6 user_update +EXPORT_SYMBOL_GPL vmlinux 0x8ae986d3 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x8ae9ade7 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x8af3beed gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x8b016c9c clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b25007a vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8b27dbe3 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x8b357e9e blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x8b47675a iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x8b52a2d9 vxlan_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x8b5f260f efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release +EXPORT_SYMBOL_GPL vmlinux 0x8b6ec67a pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8b752795 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8b8183a1 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x8b952538 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x8b9cd0ed __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8b9eeb71 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg +EXPORT_SYMBOL_GPL vmlinux 0x8ba1c450 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x8ba37cbe class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x8ba91a2f clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x8bc3b38c devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8bd5d0d2 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0x8bd79f87 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x8be60c88 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x8bf96eba dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0d3dc0 kvm_unmap_gfn +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c12794f devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x8c14f8da pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x8c405a1f usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x8c4e0387 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x8c53c646 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8c594b53 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c773f1c device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x8c7b4928 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x8c82b524 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c8cd20c blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x8c92860a bgmac_adjust_link +EXPORT_SYMBOL_GPL vmlinux 0x8ca9fc98 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable +EXPORT_SYMBOL_GPL vmlinux 0x8cb78ad5 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8cebc2bb pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x8cefe6de genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x8cf5a54c vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL vmlinux 0x8cf833df xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x8cfe7a4f devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8d0dd4e3 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x8d217957 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d2a896e usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8d2e644a ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d3fc8c5 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x8d425405 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x8d458cd6 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x8d58e34a of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d802082 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x8d856cbf verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x8d88ee64 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x8d95c542 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8d99b6c3 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8db06a3a regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x8dc242ae dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x8dc8dab4 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x8dcfa023 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8dd92833 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x8ddcb992 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8df13572 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x8e324285 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e4f64b7 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6b37be of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e75548f mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8e7ec2b6 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x8e8eb882 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e959fca phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x8e9d9e5d device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x8ea3f26b phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x8ea490cc phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x8ea4b3ed fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x8ea5de48 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8eb549f4 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x8eca7c82 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x8ed70cfd edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x8ee785b0 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8eeb6e24 bpf_trace_run4 +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 0x8effb505 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f1f9e8d __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8f2ce70c fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x8f2e5212 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x8f2ff90f wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x8f301a68 od_register_powersave_bias_handler +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 0x8f48fd4b spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x8f8ad405 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x8f9b14b6 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x8f9b8d95 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fb9d0f3 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x8fbae80d __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fc38fa0 mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0x8fcb5246 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x8fccf028 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x8fd452af cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x8fda9537 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x8fdb6107 devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x8feb1191 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x8fefd251 d_exchange +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x9015dc62 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL vmlinux 0x9033e22f __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x904de20e ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x905423c4 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x9063f59f mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0x90654809 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x906dcf44 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x9086a0ce ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x908e7c4a tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x90993929 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL vmlinux 0x909e86e9 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x90a3e74f securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x90a51bbc vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90b19ef2 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x90b1d187 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x90b62887 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90ca68dd device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x90cb4a48 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x90dfeb6d crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x90ef321b fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x90f6f417 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x90f76e93 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x9100f4b1 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x91122c57 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x911a7935 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x911f02db synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x91256e77 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x912b5d24 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x913654c5 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x913a4def ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x913bf625 imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0x914122fc blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0x91470650 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x914e82c0 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x9151aff6 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x91596761 devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x915a6fad posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x915daee6 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x91874dd9 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c7ef56 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91d08a49 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91ee140a set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x91f1b623 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x920b5d26 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x922689cf efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x92335923 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x9241fa24 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x925e4c55 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs +EXPORT_SYMBOL_GPL vmlinux 0x927aac49 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x92887686 mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x9289a42e irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x928bb617 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x928ebcd4 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x929105fd acpi_dev_get_memory_resources +EXPORT_SYMBOL_GPL vmlinux 0x92aa157b __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x92b420cf meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e2036e k3_udma_glue_request_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92eb4347 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x92f8d71a wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x92f8df98 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x93035f35 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring +EXPORT_SYMBOL_GPL vmlinux 0x930d9f3c clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x931a2870 devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x931e9660 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x931eb8f4 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x93247d93 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x93281f77 acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0x9329b47c devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x93317cf7 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x93330426 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x933de562 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x93510581 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x9360884a ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x9373ad8e inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x938c5d8b fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x938e3ada dprc_set_obj_irq +EXPORT_SYMBOL_GPL vmlinux 0x93926dfd tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x939f8b8d pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x93bf6564 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x93c22e30 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93e09501 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x94070c09 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb +EXPORT_SYMBOL_GPL vmlinux 0x941a54f4 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x94203c0e inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9431529c dev_dax_probe +EXPORT_SYMBOL_GPL vmlinux 0x9435a7dc iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x9450e76c nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x94516cc5 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x9484ca7d mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x948de812 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x94933462 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x9499c5d7 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94ba9e8f dprc_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x94be3a2d vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x94d6091b device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x94db2068 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x94dde2e9 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x94e7324f regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x94f48acb irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95379c5c __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95609b26 context_tracking_key +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x957398c3 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x958f2e90 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x95a0d518 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x95ac178a proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95bd2506 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x95c44a0d __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x95c9b814 fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0x95d147c3 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95f574a1 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x96011ab2 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x9606abbb anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x9628461d clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x963be868 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x964f92ed blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0x96541341 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96587482 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x966f8c78 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x9670b28d query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x967171fa mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0x9672da38 meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x9680514b cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9680f701 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x968aac3b srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x9694dc85 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x96998fd0 __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0x96ae9ceb tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x96dd8818 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x96dedbd5 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x96df8064 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x96e0b3fe ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x96eb3a97 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x96f20716 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x96f3d6cf cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x96fa98ab fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x97069969 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x974e1d42 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x975498d8 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9757bf20 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x97587f9c ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x97658959 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x977b5fbb add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9798b434 devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x97d23add pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x97d72c0c kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97ee4c7e ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x97ef86d9 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x980df992 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x9812743b ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98752610 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98834ed7 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x988de13b pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x98d61632 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0x98dc396d __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x98e4fda1 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x98e5dad7 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x98ec6229 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98efc261 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x99025b54 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x99122ad4 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x9917954d led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x9923920d led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x992f4eba devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x9931ebdf genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x99593721 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9968a24f skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x99690071 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x99749b65 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x997cf045 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9987f0bc shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x998f96a0 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x9993c0fe mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x999b09f8 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x999bf48a report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x999eb701 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x99a27a90 imx_pinconf_get_scu +EXPORT_SYMBOL_GPL vmlinux 0x99a2de16 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x99af6da7 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x99bce74e power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x99c26c9d dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x99c6e294 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x99cff27a of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99e5e307 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f1fe06 k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x9a0dc9ea of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a185ace tick_nohz_full_running +EXPORT_SYMBOL_GPL vmlinux 0x9a1a270b blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a296d8a scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x9a2d1c31 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9a34061c pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x9a42c001 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a6b299b bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x9a73f880 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x9a7cebf1 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9a882e23 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x9a8a4260 nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0x9a906ab7 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9a9569c5 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x9a9d0dc6 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x9a9de1b1 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x9aadf296 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x9ab309a5 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad2b59f icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9aeb5bc5 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9af94161 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x9b01d392 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x9b0f937f regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x9b1b9e1d percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x9b32463e blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b5fbf87 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b6f1e07 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9b791291 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x9b8344d1 nvme_init_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b8e7ad3 devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bb40eee usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x9bc6f740 fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0x9bc8980f pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9bcb27ab uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x9bccf956 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x9bce3ba2 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9bdac6da cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x9bdc2da9 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x9bdcb351 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x9be132fd bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf9b364 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x9c07b16c ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9c149893 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x9c2e1d36 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x9c3e5410 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq +EXPORT_SYMBOL_GPL vmlinux 0x9c44d109 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x9c49faa5 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x9c5b63a2 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c79d258 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c83ceaf espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x9c8a2d74 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x9c8eba9b pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x9ca20946 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0x9ca9cbbb devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9cbb9816 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cccbf86 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x9cd058a4 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9ce6689a shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9d022060 nvme_try_sched_reset +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d1feb9c dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x9d275bb8 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d3021b3 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x9d5e4aa3 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x9d85e0eb cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x9d9d171b power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x9da34521 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x9db1edf6 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x9dbdb617 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x9dd24a9a genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x9ddd8703 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x9dedacdd param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x9def74d6 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x9dfa6b74 devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9dffaa8f of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e030fa5 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x9e226c2d serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x9e380688 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x9e38576f devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x9e3f1a9f __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e47a064 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x9e4ee1d4 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9e525dbb dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x9e558d7c platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x9e58ed36 irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x9e6e2336 dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x9e7244cb regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x9e733a8a gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x9e8e5ba7 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x9e8f8642 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9eeb5352 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef3f3dd balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x9efa330f platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x9f044252 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x9f0c0039 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x9f293593 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x9f2a8f54 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9f4af978 devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x9f551094 clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x9f5e679d sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x9f619852 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x9f635728 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x9f639850 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x9f780d96 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x9f7faf75 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9f98b563 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9fac00a6 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x9fad2e6f gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x9fb8e73a register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc5bbda nvme_sync_queues +EXPORT_SYMBOL_GPL vmlinux 0x9fc6f8ee ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x9fcdef5a __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fefcac0 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9ffc6d7c __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xa0042eaa usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xa00da770 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xa00fab8e pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xa011f76a nvme_get_features +EXPORT_SYMBOL_GPL vmlinux 0xa0138126 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa0394f2e pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xa04cde42 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xa073bd3d ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa08bea85 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xa0a82aaa skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xa0b937c3 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa0bd0b22 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xa0d2c80c irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d3d55d __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa0d72542 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xa107cdaf device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xa10a196a usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xa11c0c91 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xa11ee349 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xa13219b7 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa1372bdc trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa1489577 nvme_delete_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xa14a3457 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15ef401 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0xa16086f3 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL vmlinux 0xa161ca78 meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0xa16791e5 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xa168d365 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0xa169a85d regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xa17fd28a devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0xa18ccd31 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xa18e458e blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xa1930f41 clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0xa1a943c6 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1cf4199 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xa1cf43ea devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1ea41b2 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xa1fb579f dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xa206f5a0 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xa20bf9ca devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa20ef8c2 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xa2176916 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa229f262 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa22b5c84 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xa237e555 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xa24eb853 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa25615ba ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2764683 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xa27819ae of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa27d2030 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xa281855f kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0xa2adf300 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xa2adf69e __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2b4c5e8 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xa2c1bff5 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xa2c91d88 nvme_start_queues +EXPORT_SYMBOL_GPL vmlinux 0xa2ca19fa splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xa2cfe95f vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xa2d18229 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xa2d4f620 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xa2d6546c cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xa2dfb58c regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2ec7bc8 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xa2ed0cf2 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa301800a tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa309f290 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0xa30d4be5 devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa3293bbb efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xa34bb665 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xa3625d2d pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xa36977ee tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa37ee89c lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0xa384ea84 pinmux_generic_remove_function +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 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a8a85f irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xa3a996ff blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bad817 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xa3c46c3c ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xa3ca3e96 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa3d150e9 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load +EXPORT_SYMBOL_GPL vmlinux 0xa3e3cdd9 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xa3e4f0d6 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0xa3e6578c gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f3170e regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xa3fe8264 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa405fb66 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xa40e4d4e phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa427a9f3 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xa42a0b7c edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0xa4326300 dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0xa43bd2dc ip_tunnel_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa44975c3 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa450d625 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xa4571f49 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xa472fa9f regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa483f7e7 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xa4850ef0 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa491ee86 thermal_zone_of_get_sensor_id +EXPORT_SYMBOL_GPL vmlinux 0xa4a523e2 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4aeb35a of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0xa4d5f913 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa5133ccb ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa51a62e2 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xa5222c21 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xa52e5712 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa5317e57 devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xa557eb6d addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xa561e4b3 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xa564d1bb of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa56e1a75 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xa56fa434 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xa578fdb9 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xa5802690 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5daa5b6 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f0515b mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0xa5fed19d nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0xa60e2ba2 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0xa613792a blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xa623daba acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xa6404e31 tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0xa64baa3e strp_process +EXPORT_SYMBOL_GPL vmlinux 0xa64f6873 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xa64f753b scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xa6544c8b blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xa6587aa2 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa66ae70f of_k3_ringacc_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa678d3a9 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xa693dd7d fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa69b75be icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6ab18a5 fscrypt_set_bio_crypt_ctx_bh +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 0xa6bf24a2 nvme_set_queue_count +EXPORT_SYMBOL_GPL vmlinux 0xa6c50fd8 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa6fbfc98 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xa7046f11 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa706c6cc devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa716e60a of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0xa7276537 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa771ff1c apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xa7761352 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xa7813923 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xa7856098 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xa788e0f8 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xa7979bdc uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xa79a4ff7 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xa7bc281e devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa7e00bf2 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xa7e1c56e ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xa7e4907d gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xa7eff767 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xa812b964 dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0xa8146ee0 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xa82a5558 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xa84991c5 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa858b3b2 mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0xa869b813 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0xa86bd808 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xa870a7e3 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xa873898e devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xa887db19 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xa8905cf1 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xa895f35c iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xa899c743 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xa8b59edd iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa8d09f6a scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xa8f088ae synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xa8f4ab93 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xa90d9361 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xa9295cba fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9484fcf efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xa95489c2 dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0xa954e6c8 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa955b629 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xa9685b54 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa973ecd6 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xa976adb4 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xa97bd5a7 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xa9899d96 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xa99311ae devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa99ff831 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL vmlinux 0xa9a5c8b5 strp_done +EXPORT_SYMBOL_GPL vmlinux 0xa9a5f83e md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xa9a798b5 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xa9ac89b5 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9fe38f4 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa3a6515 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xaa3cf121 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xaa462084 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xaa4da020 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa73f438 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xaa8b9a86 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xaaa68233 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab05070 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xaabb4900 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xaabe6c3a of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xaacff50a acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0xaafb1141 blk_ksm_intersect_modes +EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data +EXPORT_SYMBOL_GPL vmlinux 0xab07e7b5 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xab1dd23f rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab23f72e k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0xab37dc84 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xab37ee0c dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xab4fced5 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xab55591c blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd3414b relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xabd3a2d8 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xabd6af4d crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xabda08b5 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xabf4f1b5 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0xac058362 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xac0e4460 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xac109cf1 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xac37c9f9 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xac402a29 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xac45858e dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xac8dcf0b thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xac8fbb28 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacc28b98 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xacc38b8a udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xacf14952 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xacfc8f93 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xad02ecb4 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xad0eedf0 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xad200ac1 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad56f6fb dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad5d8f82 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad6930ae pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad7dca20 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad92417b trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xad94c1c4 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xad96e88d root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xad99c8c2 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadab7ada preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xadc69542 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xae099709 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae2b17ec init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae5eadf1 dev_pm_opp_detach_genpd +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 0xae66ad99 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xae67a51b phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6f575b usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae80ffa4 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xae9a7a67 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xaea552f7 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xaebc510e spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xaedb02c1 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xaef2814e kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaf07391e trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf264f16 rdev_get_id +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 0xaf434a73 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xaf53fdae mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0xaf5a21c2 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xaf73cc49 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xaf774cff ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xaf78b19b kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf8105cb fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf8fa769 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xafab3403 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xb0129bcb netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb0218def fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xb02220d0 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xb02a2213 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xb02ee049 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xb03b4f72 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xb03d231a da9052_enable_irq +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 0xb0674e5b put_pid +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07a2c9d pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xb0b25343 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c7231c pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0ec5e06 meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0xb0f75c5a ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xb109a0ed acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb10fb806 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xb116d1e6 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb143962f crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb14b62f2 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xb161f418 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xb1626f67 of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb16bef78 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xb16e4d0a nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb198c0c0 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb19ddf53 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb19f9249 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xb1ab1b99 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xb1bd17a2 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c38156 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xb1dc9146 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb215b0f6 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xb2192562 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2304cbd compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb23d0ef8 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb24886b6 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xb25c5bc1 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xb2666037 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb27d808b skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xb27fa075 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xb287da08 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0xb29439d0 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb29fd9f8 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xb2a5f218 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0xb2a87f80 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xb2acb59f phy_init +EXPORT_SYMBOL_GPL vmlinux 0xb2afff2a __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xb2b09803 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xb2b4db36 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xb2bd9db7 nvme_start_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2d96819 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2e8dd21 dm_put +EXPORT_SYMBOL_GPL vmlinux 0xb2eeff74 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb2f9b1ee reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb309fd2f blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xb318faa3 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xb31a1dee devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xb31ee501 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xb36b1df1 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xb3723cb6 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3b954cf blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xb3d1abb7 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xb3f0d9a3 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xb3f318c0 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xb3f391ca fsl_mc_bus_dpdbg_type +EXPORT_SYMBOL_GPL vmlinux 0xb3fc6950 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xb40b2f59 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request +EXPORT_SYMBOL_GPL vmlinux 0xb40fd2e8 debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xb412f9b0 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xb4146b25 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xb417bdcf dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xb423caec __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb42a78f3 usb_check_int_endpoints +EXPORT_SYMBOL_GPL vmlinux 0xb42b98f8 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xb42e8093 vtime_guest_enter +EXPORT_SYMBOL_GPL vmlinux 0xb437994b regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb440aa8d fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb449cff6 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb4597c32 meson_sm_get +EXPORT_SYMBOL_GPL vmlinux 0xb46bd389 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb4806e95 nvme_complete_async_event +EXPORT_SYMBOL_GPL vmlinux 0xb48482a0 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xb486e7cc kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xb48e6535 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xb48e9dc9 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb49578cf transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xb49b1d36 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb4a25677 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xb4ae70df device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xb4b105ab nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xb4b19455 imx8m_clk_hw_composite_flags +EXPORT_SYMBOL_GPL vmlinux 0xb4b72a40 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bd2f75 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xb4d79220 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xb4e720ae usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4ee56bb ip_tunnel_rcv +EXPORT_SYMBOL_GPL vmlinux 0xb4f33188 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xb4f58605 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xb4f7266e __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb4ff8baf xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb50421e6 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xb506b281 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xb5128d76 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xb513bbb9 vmbus_free_ring +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb5283250 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xb52d6418 iommu_sva_free_pasid +EXPORT_SYMBOL_GPL vmlinux 0xb52f4a03 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xb53fb9f2 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xb543e6fe usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xb54f392d blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xb5671bdc pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xb57a0830 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xb57f6435 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xb5812722 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0xb58cbaf5 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0xb59eed2d switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xb5a5a3ce led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg +EXPORT_SYMBOL_GPL vmlinux 0xb5d78e98 ti_sci_inta_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb5d92317 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xb5dab561 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xb5e2f71c ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0xb5e95374 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xb5e9bd87 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xb5f59fb8 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xb5fa4d16 vmbus_alloc_ring +EXPORT_SYMBOL_GPL vmlinux 0xb600ab1c elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xb6013f5b dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xb6046bea regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xb60f2bea l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xb6104e44 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xb624b566 of_find_spi_device_by_node +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6317e9a fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb642895f pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb66365d3 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xb673530b skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb6a43813 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0xb6b17e58 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6f29225 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xb6ff5ea3 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xb715c873 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xb71a5d4c dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb7394ae7 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0xb73ca4e0 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xb7421681 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xb7454927 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xb74d44c2 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xb76137e2 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xb77536cc vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 +EXPORT_SYMBOL_GPL vmlinux 0xb7838503 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb7a0bd6f rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7b7e074 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xb7dd79a3 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xb7f1f8d2 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb8023f0d devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xb804b67b led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xb81d01c3 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xb8216c28 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb82ec533 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xb8370cc7 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xb83e14a7 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xb8412625 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xb864625f tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xb8658392 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb881b1dc free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0xb886bd48 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error +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 0xb8b15c8f iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource +EXPORT_SYMBOL_GPL vmlinux 0xb8c57713 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb8c9a164 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8ddf561 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb8e88eb8 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8f68d2e bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xb90355d2 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb908bfc7 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb93a384b regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xb93a62ef led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xb93dcc21 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xb954cc53 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xb95942e0 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb95f8da1 nvme_host_path_error +EXPORT_SYMBOL_GPL vmlinux 0xb961cb3e rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb968e66e fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xb97ad539 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0xb99881bd devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xb99a3014 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xb99d4b27 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c3fcce blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9cc5f39 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d03830 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xb9d5578a ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xb9dc3041 bgmac_enet_probe +EXPORT_SYMBOL_GPL vmlinux 0xb9e20339 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0xb9e8db40 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xba1e5017 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba3473ed udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL vmlinux 0xba38131b dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0xba4421c3 hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xba6ff9f8 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xbaa84f32 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbabbe427 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xbabd6f61 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xbac91b65 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xbad023df pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xbadf5c99 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xbae08d3c usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xbae8a3d5 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbb07667b debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb16256b bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb3f69ff sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xbb4cb788 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xbb50adf4 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xbb57f04d clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xbb5f97c8 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6cb9bb __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb9d8231 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xbb9eee77 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xbbaddf04 usb_check_bulk_endpoints +EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put +EXPORT_SYMBOL_GPL vmlinux 0xbbcfac6e pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0xbc063038 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xbc084c94 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbc119897 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xbc230e32 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xbc234181 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbc240afc tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xbc2f5c07 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xbc30ae13 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc41d384 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xbc57c62d driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xbc604544 nvme_remove_namespaces +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc764008 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xbc7e9c55 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xbc99c3c4 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbca80fe1 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xbcb088cf xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0xbcb27ff8 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbcb8cdf3 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcee0595 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcfcc92a component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xbcfd7572 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xbd00efc8 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xbd062e7f ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0xbd10c65c usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0xbd1fd052 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd417c0b usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xbd4f5b24 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xbd63c2bd serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xbd6fa664 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xbd6ff207 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0xbd7124c7 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd8ad159 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xbd8ef884 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xbda813a6 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xbdb7f50a devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xbdc3599f device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xbdc8e20e clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xbddee135 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xbe013c13 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xbe069025 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xbe0c45c9 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xbe1c0550 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xbe36df5c blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xbe3c25d8 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xbe42bf3c gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xbe4349b7 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xbe4eac69 sock_prot_inuse_get +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 0xbe78d35b vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0xbe7df8c8 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe98a0c8 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea7dd8f devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xbea8cb47 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xbeb7b518 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xbeb7c8f7 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xbeb9d444 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xbec01793 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbec05f65 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xbec0996f console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xbec15579 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbece5bb6 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xbed3f3ed get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xbee74026 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0xbee8ddc7 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xbef0da89 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf17a730 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0xbf1bbd00 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xbf1f0645 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xbf3d2a86 k3_ringacc_ring_cfg +EXPORT_SYMBOL_GPL vmlinux 0xbf787138 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xbf7bd6d5 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xbf86168b __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbf90af32 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xc0064fca class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xc00971f5 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc013a928 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xc022cfba blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xc02a239f crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc035729f blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc05b8ea8 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq +EXPORT_SYMBOL_GPL vmlinux 0xc0677ddb ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xc06dc9d5 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xc0704a1d security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0xc071b39f skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xc087bb5e blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xc08ad0cb usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc08ff6fe crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc095bab4 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xc097c578 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xc09cb4f9 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xc0a3d155 k3_udma_glue_rx_get_flow_id_base +EXPORT_SYMBOL_GPL vmlinux 0xc0a8bde0 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0ba511c pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xc0d0c010 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0e29fee tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f97709 meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc117c434 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0xc1238bb9 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xc124ead3 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xc144f25c regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xc165bde8 devm_device_add_groups +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 0xc181fccc devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xc18a672b trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xc193ebb6 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0xc19a8c05 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0xc1b03751 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xc1c77e1f acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc1ea48bc usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xc1fb4b11 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xc1fc82c5 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xc20106e6 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc210d717 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xc2147490 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xc21a9732 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22d0d33 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xc231a341 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc240cbed __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xc240f2e6 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2679205 devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xc2681d56 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc286212f pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2ad1e6e fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xc2afdd43 init_srcu_struct +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 0xc2cea22e device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xc2d55962 work_on_cpu_key +EXPORT_SYMBOL_GPL vmlinux 0xc2d69ca6 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0xc2ddbf89 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2e617c5 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0xc2f58915 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xc2fe2412 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xc305a1e6 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xc30a970d sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xc31badcd acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0xc3201bc8 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0xc32f8ec3 ti_sci_inta_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3428dca usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xc34ca8b4 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xc34eb6e9 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0xc35855b8 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc3723530 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0xc3798de4 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xc379d73b ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xc37d4f0f thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp +EXPORT_SYMBOL_GPL vmlinux 0xc38b91dc devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xc3957551 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xc39d2bfb acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xc39e0a14 devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xc3a0d78f tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xc3a49464 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xc3b25e29 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3d31a61 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xc3d55ec0 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xc3d60d59 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3f323e2 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xc3f43eb4 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xc40af9f7 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xc40d8e13 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc414172f device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xc425baed tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42a43dd hv_pkt_iter_close +EXPORT_SYMBOL_GPL vmlinux 0xc432ec43 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xc434ddea fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc4505809 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xc45190a9 devm_ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xc459335f __vmbus_request_addr_match +EXPORT_SYMBOL_GPL vmlinux 0xc45ac086 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc46521b0 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xc4815c67 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xc4829f6a usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc484d603 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc49178ad inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xc499021a ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0xc49cb37d __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4bbc3e8 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0xc4bc6149 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xc4c093aa ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xc4c2a7f5 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xc4c3f87f rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0xc4d33357 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xc4d94594 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xc4de86e4 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xc4df4d00 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xc4e62fa4 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0xc4f0ca3b phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock +EXPORT_SYMBOL_GPL vmlinux 0xc52f102f crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc5596495 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc56fbfa1 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xc5754d77 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc57eafe7 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xc582fc67 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc58a5013 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xc5919ffe fsl_mc_object_free +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5a6e787 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xc5bcbeab ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xc5decf17 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xc5e7118d sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xc5ebcc51 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xc5f0fda3 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc5fca7a5 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc6040939 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6108574 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc621bb43 sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0xc622ef14 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xc630eff5 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xc636ae11 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xc64d7851 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xc65a6b9a kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xc668b3f1 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66daab2 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc6784a09 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xc68ca735 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xc68cf699 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc698a2d7 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6a50907 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xc6a82a28 tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0xc6b47d17 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xc6b782f0 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xc6c4c186 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6faff46 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xc6fed801 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xc701982c __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc706936b meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xc7077eaa pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc7118ee4 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc73a31b9 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc76f8048 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0xc779f754 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc79240ba dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7ae7bcd fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xc7af4859 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xc7b889d7 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xc7b93416 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xc7c6342a clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc7c90d62 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0xc7ccb850 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xc7d71827 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xc7d9699f sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7e6e1f9 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc8003c85 meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0xc8191c35 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xc81db456 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc8315d2f dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xc831f4e7 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xc837131b attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc83c8d13 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0xc848a16c ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc86f23bc imx_pinctrl_sc_ipc_init +EXPORT_SYMBOL_GPL vmlinux 0xc86f7c54 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc87ec807 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xc8a6a4e6 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xc8b1248f mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xc8b2e428 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xc8cb8922 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8d6cad3 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8e95260 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xc8ead85e regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc904ebc1 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc9334c58 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95bb580 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc964ac44 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xc968c0bc dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xc973f0ab driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc9825fbb dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc98381ed acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0xc985070e usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0xc9874ed1 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xc9982916 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xc99a07b4 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xc9ac4356 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xc9be2cd4 mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xc9c32640 devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0xc9ce0927 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0xc9fc98bf __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xca051e7c dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0xca1be5f9 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xca1c94ee md_run +EXPORT_SYMBOL_GPL vmlinux 0xca20790e divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xca30ee0d pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca48b9af devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xca5a7ceb ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xca603173 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xca70f765 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca7f2bce divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xca87176a iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0xca8c0657 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xca90a167 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcaaff163 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac55638 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xcaca1462 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xcae076e7 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xcaee5854 ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcaf74748 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xcb0062f9 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xcb1fa058 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xcb251d6b phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb2c34ae pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xcb2ee280 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xcb374f83 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xcb409370 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb704194 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb7c7771 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb7e2da7 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0xcb80c06b ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xcb9504fb perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xcba92b31 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xcba95282 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xcbb93cbc tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcbd24128 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xcbd7536a amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbf8ae26 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xcbfe1533 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head +EXPORT_SYMBOL_GPL vmlinux 0xcc1fc987 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xcc21ce89 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xcc24af5e skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xcc260d47 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xcc26a7c3 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc470430 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xcc4750d6 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xcc5d095e governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc69aac1 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcca3334b crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd80ea1 sprd_pinctrl_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccde5ba3 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xcce83ef9 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccfc140f scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xcd21918a sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0xcd21eacc crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xcd2386c1 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd3e5831 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory +EXPORT_SYMBOL_GPL vmlinux 0xcd6da0d2 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset +EXPORT_SYMBOL_GPL vmlinux 0xcd7cd6ca gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0xcd8fb5db path_noexec +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 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcd9f0ca4 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr +EXPORT_SYMBOL_GPL vmlinux 0xcdb01ce5 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0xcdb4a102 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdddf889 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcdfefe88 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xce0b80a4 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xce127e6c of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xce13f0df gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xce15220a pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xce1af5e7 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xce26909c device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xce2724a4 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xce2a4b84 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay +EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xce60414e relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce92ec0c rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xce945996 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xce96b6f3 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xce9a004a __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xce9d869b __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xceab0d7e crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs +EXPORT_SYMBOL_GPL vmlinux 0xceaf12ae debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb7645d devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xcef37f21 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xcefce90f sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xcf1866fb ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xcf33266a ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xcf38798b __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xcf432a21 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xcf4abc4c sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xcf4b9955 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xcf4bcbcc nvme_complete_rq +EXPORT_SYMBOL_GPL vmlinux 0xcf532715 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xcf541ba8 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcf5920e3 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xcf685a7b devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0xcf68fc40 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xcf7f66f9 imx_dev_clk_hw_pll14xx +EXPORT_SYMBOL_GPL vmlinux 0xcf861b3e ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xcf86e9a0 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xcf874c37 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xcf971b18 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0xcf9c53f1 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xcfaaa84d pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xcfae8ac5 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xcfbbde66 pci_cfg_access_unlock +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 0xcfe0429f pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xcff56979 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0xd0028ef8 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xd006e9c7 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xd00750ee ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xd02b693f power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xd0381274 irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0687b74 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xd074765e extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0a3c7fc __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xd0b9e549 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xd0bf03e4 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c32959 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xd0c62805 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd0ca8f35 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xd0cdc4e5 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0fc1202 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xd103a8b7 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xd1064ae3 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xd12b8cb4 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xd130fbd4 tcp_register_congestion_control +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 0xd159fda7 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd16fbf60 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd172ec5e pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0xd179bf0a usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xd17a05ca rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xd17e1fd8 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xd1832875 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0xd18a5938 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xd1956043 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0xd1996930 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xd19f9352 arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1b74ee5 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xd1ba95d3 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xd1c8a5a2 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1daeed0 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL vmlinux 0xd1f2e781 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xd1f2edac param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f3e520 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xd204b959 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xd207dc7a __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xd2156c64 dma_buf_end_cpu_access +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 0xd233fa09 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xd235c75e fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd2503f91 kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0xd25a7097 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd2640fca tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd270e977 pci_bridge_emul_conf_write +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27fae68 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0xd2852714 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xd293e287 tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xd2a4005a device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xd2b104b1 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2ca96c3 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xd2fcedfb device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd2fe860b tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xd30cda25 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xd315f725 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xd3163950 set_task_ioprio +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 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd33e3526 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xd34a0d28 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xd35d1134 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd3618895 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xd365452d mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd3808311 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0xd39d12bb serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3a55910 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xd3abbc70 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xd3b0a2b7 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xd3c755d4 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xd3e0a16a set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40fbbe2 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0xd4166735 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xd41e21b1 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0xd41e414f devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xd41e8b3d devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd420e8ec sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd43dde81 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xd4454e11 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4501d03 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd46cdb31 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xd47306f5 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd47629bb clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xd47836b0 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd4a8ec3c iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xd4b1a860 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xd4b41173 devm_reset_control_array_get +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 0xd4e41c40 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4e72672 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xd4e944db ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xd4efabda fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xd4f216fe dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xd4f26ece regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd4f42ec3 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd4f63807 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xd4f8abe1 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xd503fbb7 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xd50559c2 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xd51b613d platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd55a3806 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd566d4f2 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xd5735a6c scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xd575b57d divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop +EXPORT_SYMBOL_GPL vmlinux 0xd589688d usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL vmlinux 0xd58f0979 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xd5950f74 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5c53cbb rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xd5d17cee udp_sock_create6 +EXPORT_SYMBOL_GPL vmlinux 0xd5d97289 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xd5ed9b8d iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xd5f0b8bf spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd5f25ada iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xd5f3a026 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xd6064b59 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xd60963b6 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xd609fcae ip_tunnel_newlink +EXPORT_SYMBOL_GPL vmlinux 0xd6180719 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xd61ccf5a crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xd620fc20 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd641a761 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xd641cce4 acpi_nfit_ctl +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd671ae6e device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd673b45e rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd683a945 mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xd68420dc sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xd68c1e5d spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xd692cb80 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xd6a3b703 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xd6ba8fee __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xd6c21c60 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xd6c32cbc ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xd6c463f7 kvm_vcpu_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd6cb68db paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xd6d214d2 udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xd6e72854 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xd6f04948 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xd6fdd2e2 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd700fbf7 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xd7067b0c pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0xd706db01 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control +EXPORT_SYMBOL_GPL vmlinux 0xd7290f24 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72d17ae pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xd730ee10 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd756fd0b lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd757e7aa dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd777a03f rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xd779344c bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xd783738e ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0xd79f518b perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xd7a0ccbe crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split +EXPORT_SYMBOL_GPL vmlinux 0xd7b6c57c devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xd7b7fb80 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d22f4f kobj_sysfs_ops +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 0xd7e43c18 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xd7eb4eea ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0xd7ee6d9c transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xd7f02d50 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd7f7371b devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xd7fa33bc fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xd7fb4157 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xd80b727e __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8490636 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd84e79a5 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xd864bf60 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd870e32d sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd882a25f vmbus_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8833437 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0xd8835a9a srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xd8a9c7c3 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xd8bda178 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xd8c1a4d2 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xd8c51f16 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xd8c625f4 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xd8ca4bca of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd9078b8f fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd90fac01 fsl_mc_bus_dpcon_type +EXPORT_SYMBOL_GPL vmlinux 0xd91371cf devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xd9168336 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0xd919b73e ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd91bb780 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd92c9545 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xd92dab02 tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd92f8f92 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xd965e77c dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xd9671ab9 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xd968838d acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd978480a phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xd9896f67 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0xd98b2790 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd993b0ee ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xd99a0ff4 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xd9a1a813 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xd9a64757 nvme_set_features +EXPORT_SYMBOL_GPL vmlinux 0xd9b0c831 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xd9b49211 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xd9cd1a75 dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0xd9cfa856 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9e639c0 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xd9ea4112 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xd9edec41 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda02631b pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xda034009 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda0eff86 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda4591e2 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xda53c89e acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xda5e0b02 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xda74074b ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xda78bf61 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda927d18 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa14821 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xdaa64752 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xdab0e655 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdae7f3e5 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xdaec8638 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb067024 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xdb08691e dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xdb08ba14 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xdb0dd257 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xdb18f7cc __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdb1b5d90 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xdb1e139f fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xdb4183db auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb525310 devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb5d14c9 mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb6630a9 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xdb764bf6 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0xdb84abbb irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb999249 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xdba4fbee devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xdba64941 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xdbd0fa5d led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xdbed3306 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbf87414 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xdbfb3292 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xdbfb9d7f device_del +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc055ab9 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc09804a devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xdc139c13 k3_udma_glue_tx_get_hdesc_size +EXPORT_SYMBOL_GPL vmlinux 0xdc165de9 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdc2c168f unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xdc2d6db2 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0xdc30b1ac device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xdc3c344f udp4_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 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc69610c of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xdc6f2c27 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0xdc788e16 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0xdc7bedfc devm_clk_hw_unregister +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 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca55d03 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0xdcb715db usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xdcbaea50 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd10956e xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xdd1138bd __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xdd2e6a9e xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xdd32d401 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xdd3749c1 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3a759d fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xdd42e237 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0xdd50c745 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xdd5aec62 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xdd6e97fc sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xdd784ee5 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0xdd78901a dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd848525 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xdd8d4b2b pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdda707b7 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd33b3e debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xddeaf586 acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xddf7f738 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find +EXPORT_SYMBOL_GPL vmlinux 0xde167aae sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0xde30cc3e iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xde3f62cf irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xde4f9b75 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xde62b7fd icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xde6dd9da edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde8f22ce devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xde963882 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xde9f6dae nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0xdec33e2c kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xdec37bdd nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdeffe005 of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xdf056fa4 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1c6dcd usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2a0696 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xdf2b4b94 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xdf2fdaf7 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xdf376de2 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xdf3fa5a5 mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf592466 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0xdf62ffba udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL vmlinux 0xdf78f59e xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0xdf8e8f82 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xdf9bfb49 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdfa6a263 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xdfbdf2d5 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfd9896d ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xdfe958a8 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xdff19b47 bgmac_enet_resume +EXPORT_SYMBOL_GPL vmlinux 0xdff4bfa8 mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0xdff5273e task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe00bcaa2 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe059a9dd trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe05e6ea0 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xe0719f92 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe07df83a ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xe07ecf24 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe07fdf30 bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0xe08ba333 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xe0a574e2 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xe0ad137d shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xe0ad4478 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0d05ae8 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xe0dc30a5 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xe0e2cf26 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xe1038e93 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xe104ce88 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xe10aa4bb pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe110e2c8 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xe120c657 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xe12b2627 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL vmlinux 0xe12ddcc7 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xe13d995d meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0xe142b5f5 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xe144611d devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xe147c0f4 device_add +EXPORT_SYMBOL_GPL vmlinux 0xe16e5cdd icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xe172b927 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17b5924 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xe1804bc6 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xe1a1bf36 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1ac773e tick_nohz_full_mask +EXPORT_SYMBOL_GPL vmlinux 0xe1b14e66 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xe1b32710 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx +EXPORT_SYMBOL_GPL vmlinux 0xe1d1664c cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe1d42386 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1de6d20 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe1e54bc9 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xe1f7ac66 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xe2018ca2 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xe207ec8b pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xe20f78c0 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xe22b7116 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xe22c9225 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe23d15e1 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xe2525e9f sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xe26090ba dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xe268ca8c ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xe270061f pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0xe27beed0 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xe2843db4 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xe2963f0b devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xe2a08000 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xe2a3f0f7 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xe2ac06c4 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2be7614 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xe2c0dfb2 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xe2c40474 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xe2cc7733 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2d114a6 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe31806d0 mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xe31e07d2 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xe323df8e sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xe343a1e1 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xe354636c bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xe3609f35 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe37c80d0 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe380939f rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xe38235c8 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe3922d62 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a0dab4 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3b50b59 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xe3b678bd hv_pkt_iter_first_raw +EXPORT_SYMBOL_GPL vmlinux 0xe3b909b2 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3ba9b9c blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3d1273d bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xe3f34293 scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe3f4be99 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0xe3f75aca firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe41afaa1 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe432f0df ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xe44406a0 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xe455e79c bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0xe45daf31 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xe46892fd usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xe47b791c phy_configure +EXPORT_SYMBOL_GPL vmlinux 0xe485c5e6 __acpi_nfit_notify +EXPORT_SYMBOL_GPL vmlinux 0xe48ac421 file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0xe48b6b91 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xe4918bdd crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49df7d8 driver_remove_file +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 0xe4db17b9 nvme_stop_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4f591e5 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xe4fc7fea tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xe51a8bb5 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xe55d14b6 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xe567cbf3 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5885173 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xe58b2465 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0xe5901624 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xe599662d crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xe5a3aa27 dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0xe5a5e8fd skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize +EXPORT_SYMBOL_GPL vmlinux 0xe5b06eb6 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xe5cd52f0 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xe5d0164f acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0xe5f73406 hyperv_write_cfg_blk +EXPORT_SYMBOL_GPL vmlinux 0xe5faa999 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xe5ffecc9 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe606e21f __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe613cfaa relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xe6172b62 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xe61c9496 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe62b2c4b devres_add +EXPORT_SYMBOL_GPL vmlinux 0xe64160e7 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe6427424 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0xe649c019 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe64e4f0c extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xe6507c12 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xe6586e8c spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xe65b9ba7 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xe65e9454 iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0xe67a76e4 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xe68982b6 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xe6b0bd6f skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xe6c6ecfc dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe6c803db dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xe6e07b5b pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id +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 0xe6f8cdb2 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe702d1ec badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xe704f100 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xe707edf0 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xe70b58b8 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xe7301ab3 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xe7433b07 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xe7488195 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe75dcfc4 hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0xe766d479 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76ad61b hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe788898a cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xe78b9b7f security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xe791df1f rcu_nocb_cpu_deoffload +EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate +EXPORT_SYMBOL_GPL vmlinux 0xe79e43d0 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xe7a5a24a skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xe7ad9b3a usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xe7b2d07e pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xe7b5de77 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xe7d4c335 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7d7894c pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0xe7ec77c3 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL vmlinux 0xe7f6c478 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8199ff8 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xe83bbd90 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0xe8403e77 rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xe84ed34a unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe8585771 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe85b5888 vmbus_close +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe871deb1 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xe8901f6c dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xe8b6c8f7 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8e5da47 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xe8eb8c37 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0xe9071414 tcp_register_ulp +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 0xe9250486 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe94ff6b4 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe95c6b1d rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xe95e024d tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xe96ff575 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xe977f88a irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xe97a327f pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe99774a3 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xe9a09406 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0xe9b5ef15 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xe9c31790 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xe9f32fbf virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea058915 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xea06af47 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1bdf91 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xea20b3e2 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea3eeeb8 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xea3f8129 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xea447ccf of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea55e13a blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0xea69a794 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xea71f492 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xea8232c7 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xea887827 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xeaa3ee7b proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0xeaac3aae dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xeabea4ff dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae163b6 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 +EXPORT_SYMBOL_GPL vmlinux 0xeafdf0bc nvme_stop_queues +EXPORT_SYMBOL_GPL vmlinux 0xeb1b2ecd __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0xeb280416 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xeb3154ce of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xeb39f868 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xeb47993b meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xeb90ecde ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xebafb345 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xebbdbd49 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd2dc99 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebe40dec regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xebed822e led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xec0de1e4 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xec196a35 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xec254f7f debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xec333ce8 devm_blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec593cf1 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec63ea62 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xec7141fd __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xec766469 nvme_start_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec78398b clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xeca2e34d fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xeca4b890 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xecb02df6 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0xecb569b7 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0xecb7723c devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xecbb6f12 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xecd0dd3a virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xecd5254a pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xecdf71f6 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xece46453 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0xecf13dc7 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xecf35e1c dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xecf64f38 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xecff2b0c virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xed229d45 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xed280980 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed3ed2a4 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xed4e2934 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xed5405c8 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xed7bd28e nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xed7e8fa2 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0xedadec64 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xedb649a3 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xedc3fde9 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xede84e8b device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xedfac377 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0xedfb3f68 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xedfe74e0 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xee12cf3e fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee3dd075 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xee4cdca4 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xee4e2572 device_create +EXPORT_SYMBOL_GPL vmlinux 0xee506cbf usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee56907e virtqueue_enable_cb_prepare +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 0xee752d1f devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xee7b6578 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xee82bdea crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0xee8acc14 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xee8dd196 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xee99e6ba usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xeea4d6db do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0xeebd4401 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0xeec5abca xhci_run +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 0xeee1f1f3 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xef0b7052 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef28ef34 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef2eb26a dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xef30a6f9 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xef386794 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0xef3a5524 soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef468f6e gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xef4e2239 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef6916b5 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xef6bb938 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef71f662 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xef744bb5 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xef7a1303 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xef9645c8 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xef99b986 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xef9f8a9b dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa3629a pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xefa994ea crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xefae710f transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xefaf7247 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xefbbccf6 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xefc95ae3 device_register +EXPORT_SYMBOL_GPL vmlinux 0xefde5939 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xefde6743 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xeff88c95 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xf02db9f6 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xf03b0410 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf04465d7 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0xf04e59e8 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xf04fbb9d ip_tunnel_uninit +EXPORT_SYMBOL_GPL vmlinux 0xf05571e2 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf064e774 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf078b24b dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xf07bfc05 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf0a0c69d init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xf0a46a35 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xf0a51559 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xf0a562b8 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xf0b83fd3 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xf0cc8442 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0xf0d478c7 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xf0dea6a9 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xf0e08a22 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xf0e298af hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0e3ec92 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xf0e45777 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xf0f9a451 dprc_get_obj_region +EXPORT_SYMBOL_GPL vmlinux 0xf0fea19b usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0xf10eeb8b usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll +EXPORT_SYMBOL_GPL vmlinux 0xf13f7b68 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xf146b597 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xf14ee57d device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf190b2e6 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf19b5800 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xf1b6d9de clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xf1c2a100 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf1caa790 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0xf1e2368f __class_create +EXPORT_SYMBOL_GPL vmlinux 0xf1e4be30 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xf211b517 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xf21cfdf4 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf227fec6 dpbp_disable +EXPORT_SYMBOL_GPL vmlinux 0xf228f842 devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xf23792d8 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0xf23acf5e dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf241e46f topology_set_thermal_pressure +EXPORT_SYMBOL_GPL vmlinux 0xf2449805 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xf25b5f60 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xf260e96a usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0xf265368a md_stop +EXPORT_SYMBOL_GPL vmlinux 0xf2688b38 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xf269023a devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf276ab50 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0xf28c4920 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf2987add md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xf29f92cb unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xf2b14bd6 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2cada0d icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0xf2cd4076 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xf2d3cb63 fsl_mc_bus_dpio_type +EXPORT_SYMBOL_GPL vmlinux 0xf2dac69f edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0xf2e55b67 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xf2e5ca35 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0xf2ef4f4f ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf301880e vmbus_set_event +EXPORT_SYMBOL_GPL vmlinux 0xf303a7c5 ata_sff_drain_fifo +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 0xf3264ce4 imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xf3282530 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33e320f blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf37b058f nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf386bbb4 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xf38a00ff __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0xf38b087b dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0xf3906b1d serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xf39b1763 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xf3a7761a iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3c1b59b clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xf3c446b2 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xf3c630fa skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xf3e4b1b1 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xf3e8ee5a user_read +EXPORT_SYMBOL_GPL vmlinux 0xf3e9b487 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xf40f0890 bgmac_phy_connect_direct +EXPORT_SYMBOL_GPL vmlinux 0xf412dd6f devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xf4188df1 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xf4282af8 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xf4396b72 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xf441af66 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xf45f7180 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf46ab886 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0xf4707cf4 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf47140c3 mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf47bca88 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xf496707d kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4a81e13 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b622d9 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xf4c1baf8 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xf4ccf23a iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4dd05ed scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xf4e35e28 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xf4e8dbd0 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf4efcabd spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xf4f97013 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xf4f9cad2 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xf4fbf055 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xf50ba95e nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0xf50dad5a mmput +EXPORT_SYMBOL_GPL vmlinux 0xf513a867 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xf51905bb perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xf52181cc fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xf532cc37 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xf53d2e71 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf544ea78 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0xf5470ccd dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xf5484297 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xf548988d put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xf5495c90 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5627c4a devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xf5752153 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0xf586be54 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xf58f7fa6 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xf597f5f5 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xf59cdf7e regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf5a0ff0d ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5a9384f kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xf5b81a0c phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xf5c0a4ee regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xf5c4f136 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xf5d8d393 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xf5dc2d8c usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xf5e057e5 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5fc80e6 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xf605ba66 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xf61878dd pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0xf61ab846 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall +EXPORT_SYMBOL_GPL vmlinux 0xf61d8195 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL vmlinux 0xf61f80ca is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xf6330cf4 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf63e66a9 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf6501299 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf667f311 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0xf67429f3 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xf6745d41 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xf6768442 meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0xf678b505 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0xf67afe09 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xf6888a9a spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xf693a524 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6a85852 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xf6adde4f uart_xchar_out +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 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6eef09c devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xf702adf0 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf7088c2c pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xf712c627 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf7200f7c sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xf72446de of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf72f5eb6 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf743dbfe dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xf744298f hv_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xf74453a0 filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0xf744688a dm_bio_from_per_bio_data +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 0xf759d07d rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xf760590c usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xf7617e05 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xf7620034 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xf76216b8 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf78cb7b7 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xf79bc544 imx_obtain_fixed_clk_hw +EXPORT_SYMBOL_GPL vmlinux 0xf79ce709 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0xf7a96a2f blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xf7aa1e5d switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7b288a0 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c349d1 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xf7e3685f pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0xf7e98889 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xf7ff8841 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xf80de729 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0xf81580e1 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xf81b877d tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xf8250727 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xf82be2ee fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xf82cbe24 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf8366628 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf83b0381 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xf850f7cd skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf85366d2 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk +EXPORT_SYMBOL_GPL vmlinux 0xf86ce686 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xf87cd301 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xf881a8f9 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf88b47d2 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf88e2820 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xf8d98670 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xf8e0b32a clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xf8e51be1 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f60385 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xf9000c63 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable +EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf915cf80 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xf91f6891 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xf9238cc3 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xf9297c35 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xf9330c35 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xf93ce7c0 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf9759862 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xf988d0f0 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xf9940199 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi +EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free +EXPORT_SYMBOL_GPL vmlinux 0xf9b6fa1f pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xf9d6a42f crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xf9e382ce regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf9e4e091 bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0xf9ebe553 pci_bridge_emul_init +EXPORT_SYMBOL_GPL vmlinux 0xf9ed22f3 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa2799b6 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa375389 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0xfa381584 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xfa449d8d pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xfa54f4b5 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa697038 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xfa7fa9b5 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xfa85636f br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfacccef7 blk_ksm_is_superset +EXPORT_SYMBOL_GPL vmlinux 0xfad070bc pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfae0420c pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xfb08da92 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xfb13f9be of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xfb23cff2 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfb268c26 dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xfb2e71b2 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xfb2f2e68 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb39e642 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xfb446964 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xfb586e0c perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xfb5a8d1a of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb921e00 hvpci_block_ops +EXPORT_SYMBOL_GPL vmlinux 0xfb975418 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0xfba437a0 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xfba59edb kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xfba8f93f pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xfbb24a52 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc405de sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xfbc7db7a get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xfbd032b4 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xfbd7ebe2 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xfbdc2221 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xfbef86b2 thermal_of_cooling_device_register +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 0xfc05e3d4 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xfc064eff dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc1b08b0 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc29da89 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc4210b2 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfc4b800b nvme_unfreeze +EXPORT_SYMBOL_GPL vmlinux 0xfc5e1889 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xfc7fd94a pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfc8fc6e1 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xfc91abf7 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xfca5cc11 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcc453ac br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xfcd1fd47 dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0xfcd9901a clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0xfceef21b blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xfcef1095 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xfcef8e77 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfcfa55b4 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xfd1f7913 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xfd617d31 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xfd642f04 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xfd6444bf dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xfd6f095f cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd74a795 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xfd88955f bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xfd8cefe7 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xfd8f7ee9 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfdaa3cf0 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdbea110 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xfdd9b2b0 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfdfb55d3 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xfe01c0bc ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xfe0587c7 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfe06a3b5 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe0fc883 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe1ddc4e ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xfe34ce8e iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe3dff2b crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe4c4d13 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xfe7afd73 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe97a841 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe990f24 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xfea7d45e acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0xfeb546c8 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfebce7a4 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xfec5e5d7 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xfed2164c bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfee1fd33 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xff03db06 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff08c13c pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0xff0c8b75 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xff0dafde __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xff144e9b devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2a4a17 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xff3e4473 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0xff4c159d con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xff68c2c5 mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0xff7376ee ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff8130b1 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff8248e3 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xff8de6f3 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb21e26 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xffbec240 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xffbf9039 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xffc09389 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xffca652e efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0xffda3aba psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0xffdbf66f handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xffdce498 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xffe3fe3f cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xffed7bd9 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xfff62f81 driver_deferred_probe_check_state +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +MCB EXPORT_SYMBOL_GPL 0x08ff20c0 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1c631b7b mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x276c9b0a __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4fcb526e mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x5ef40b56 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6ce16348 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x79447098 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xad68ffb7 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xadc2fdf2 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb45a49b0 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb93cb618 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xbf343de4 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe33e3b78 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xf769a1cd mcb_get_resource drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x2c68ddc0 nvme_command_effects vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3f91dcf6 nvme_ctrl_from_file vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x5873001e nvme_execute_passthru_rq vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb93cd866 nvme_find_get_ns vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xbc165217 nvme_put_ns vmlinux diff --git a/debian.azure-5.15/abi/arm64/azure.compiler b/debian.azure-5.15/abi/arm64/azure.compiler new file mode 100644 index 0000000000000..2fe279333467d --- /dev/null +++ b/debian.azure-5.15/abi/arm64/azure.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0 diff --git a/debian.azure-5.15/abi/arm64/azure.modules b/debian.azure-5.15/abi/arm64/azure.modules new file mode 100644 index 0000000000000..b2781586621f5 --- /dev/null +++ b/debian.azure-5.15/abi/arm64/azure.modules @@ -0,0 +1,3367 @@ +3w-9xxx +3w-sas +6lowpan +8021q +8139cp +8139too +8250_bcm7271 +8250_dw +8250_exar +8250_men_mcb +842 +842_compress +842_decompress +88pg86x +88pm805 +88pm80x +9p +9pnet +9pnet_rdma +9pnet_virtio +a100u2w +a53-pll +a7-pll +aacraid +acpi_ipmi +acpi_power_meter +acpiphp_ibm +act8945a +act8945a-regulator +act8945a_charger +act_bpf +act_connmark +act_csum +act_ct +act_ctinfo +act_gact +act_gate +act_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +ad7314 +ad7414 +ad7418 +ad9389b +adc128d818 +adcxx +adfs +adiantum +adin +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1177 +adm9240 +adp5061 +ads7828 +ads7871 +adt7310 +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adv7170 +adv7175 +adv7180 +adv7183 +adv7343 +adv7393 +adv748x +adv7511_drm +adv7604 +adv7842 +advansys +aegis128 +aes-arm64 +aes-ce-blk +aes-ce-ccm +aes-ce-cipher +aes-neon-blk +aes-neon-bs +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +ahci +ahci_brcm +ahci_ceva +ahci_mtk +ahci_mvebu +ahci_platform +ahci_qoriq +ahci_seattle +ahci_tegra +ahci_xgene +aht10 +aic79xx +aic7xxx +aic94xx +ak881x +alcor_pci +algif_aead +algif_hash +algif_rng +algif_skcipher +alim7101_wdt +allegro +altera-msgdma +altera_jtaguart +altera_ps2 +altera_uart +am53c974 +amba-clcd +amba-pl010 +ambakmi +amc6821 +amdgpu +amlogic-gxl-crypto +amlogic_thermal +ams369fg06 +analogix-anx6345 +analogix_dp +anatop-regulator +ansi_cprng +anx7625 +anybuss_core +ao-cec +ao-cec-g12a +apbps2 +apcs-msm8916 +apcs-sdx55 +apds9802als +apds990x +apple-dart +apple-mfi-fastcharge +appletalk +applicom +apr +apss-ipq-pll +apss-ipq6018 +ar9331 +arc-rawmode +arc-rimi +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arcx-anybus +arcxcnn_bl +arizona +arizona-i2c +arizona-spi +arm-cmn +arm_dmc620_pmu +arm_dsu_pmu +arm_mhu +arm_mhu_db +arm_mhuv2 +arm_scpi +arm_smc_wdt +arm_smccc_trng +arm_smmuv3_pmu +arm_spe_pmu +armada-37xx-cpufreq +armada-37xx-rwtm-mailbox +armada-8k-cpufreq +armada_37xx_wdt +arp_tables +arpt_mangle +arptable_filter +as370-hwmon +asc7621 +ashmem_linux +aspeed-pwm-tacho +aspeed-video +ast +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +ata_piix +atc260x-core +atc260x-i2c +atc260x-onkey +atc260x-poweroff +atc260x-regulator +atlantic +atm +atmel-ecc +atmel-flexcom +atmel-hlcdc +atmel-i2c +atmel-sha204a +atmel_captouch +atmtcp +atp870u +atxp1 +aufs +auth_rpcgss +authenc +authencesn +autofs4 +ax25 +ax88796b +axg-audio +axi-fan-control +axis-fifo +axp20x +axp20x-i2c +axp20x-rsb +b44 +b53_common +b53_mdio +b53_mmap +b53_serdes +b53_spi +b53_srab +ba431-rng +bam_dma +bareudp +batman-adv +bcache +bcm-flexrm-mailbox +bcm-keypad +bcm-pdc-mailbox +bcm-phy-lib +bcm-sba-raid +bcm-sf2 +bcm2711_thermal +bcm2835-mmal-vchiq +bcm2835-rng +bcm2835-v4l2 +bcm2835_thermal +bcm2835_wdt +bcm4908_enet +bcm54140 +bcm590xx +bcm7038_wdt +bcm7xxx +bcm_crypto_spu +bcm_vk +bcma +bcmsysport +bd9571mwv +bd9571mwv-regulator +bd99954-charger +be2iscsi +be2net +befs +bfa +bfq +bfs +bh1770glc +binder_linux +binfmt_misc +blake2b_generic +blocklayoutdriver +blowfish_common +blowfish_generic +bluefield_edac +bman-test +bnx2 +bnx2x +bnxt_en +bonding +bpfilter +bq24190_charger +br2684 +br_netfilter +brcmstb-avs-cpufreq +brcmstb-usb-pinmap +brcmstb_thermal +brd +bridge +broadcom +bsd_comp +bt819 +bt856 +bt866 +btrfs +c_can +c_can_pci +c_can_platform +ca8210 +caam +caam_jr +caamalg_desc +caamhash_desc +cachefiles +cadence_wdt +cafe_ccic +caif +caif_socket +caif_usb +caif_virtio +camcc-sc7180 +camcc-sdm845 +camcc-sm8250 +camellia_generic +can +can-bcm +can-dev +can-gw +can-j1939 +can-raw +cap11xx +capmode +capsule-loader +cast5_generic +cast6_generic +cast_common +cavium-rng +cavium-rng-vf +cb710 +ccm +ccp +ccp-crypto +ccree +cctrng +cdc-acm +cdns-csi2rx +cdns-csi2tx +cdns-dphy +cdns-dsi +cdns-mhdp8546 +cdns-usb-common +cdnsp-udc-pci +cec +ceph +cfb +cfg80211 +ch +ch_ipsec +ch_ktls +chacha-neon +chacha20poly1305 +chacha_generic +charlcd +chcr +chipone-icn6211 +chnl_net +chrontel-ch7033 +cifs +cifs_arc4 +cifs_md4 +clip +clk-axi-clkgen +clk-bcm2711-dvp +clk-cdce925 +clk-cpu-8996 +clk-fsl-flexspi +clk-hi3519 +clk-hi655x +clk-lmk04832 +clk-max77686 +clk-max9485 +clk-phase +clk-plldig +clk-pwm +clk-qcom +clk-raspberrypi +clk-rk3568 +clk-rk808 +clk-rpm +clk-rpmh +clk-scmi +clk-scpi +clk-si514 +clk-si5341 +clk-si544 +clk-si570 +clk-smd-rpm +clk-sprd +clk-versaclock5 +clk-xlnx-clock-wizard +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_u32 +cmac +cnic +coda +coda-vpu +com20020 +com20020-pci +com90io +com90xx +cordic +cortina +counter +cpcap-pwrbutton +cpcap-regulator +cppc_cpufreq +cpr +cptpf +cptvf +cramfs +crc-itu-t +crc32_generic +crc4 +crc64 +crc7 +crct10dif-ce +crg-hi3516cv300 +crg-hi3798cv200 +cryptd +crypto_engine +crypto_safexcel +crypto_simd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +csiostor +curve25519-generic +cuse +cw2015_battery +cx25840 +cxgb +cxgb3 +cxgb4 +cxgb4vf +cxl_acpi +cxl_core +cxl_pci +cxl_pmem +da9052-hwmon +da9052_wdt +da9063 +da9063-regulator +da9063_wdt +da9121-regulator +dax_hmem +dax_pmem +dax_pmem_compat +dax_pmem_core +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +defxx +des_generic +diag +digicolor-usart +dispcc-sc7180 +dispcc-sc7280 +dispcc-sdm845 +dispcc-sm8250 +display-connector +dl2k +dlink-dir685-touchkeys +dlm +dm-bio-prison +dm-bufio +dm-cache +dm-cache-smq +dm-clone +dm-crypt +dm-delay +dm-ebs +dm-era +dm-flakey +dm-historical-service-time +dm-integrity +dm-io-affinity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dma-axi-dmac +dmc520_edac +dme1737 +dmx3191d +dnet +dp83822 +dp83869 +dp83tc811 +dpaa2-console +dpaa2-qdma +dpaa2_caam +dpdmai +dpt_i2o +drbd +drivetemp +drm +drm_dp_aux_bus +drm_kms_helper +drm_mipi_dbi +drm_ttm_helper +drm_vram_helper +ds1621 +ds1682 +ds620 +dsa_core +dummy +dummy-irq +dw-axi-dmac-platform +dw-edma +dw-edma-pcie +dw-hdmi +dw-hdmi-cec +dw-i3c-master +dw-mipi-dsi +dw-xdata-pcie +dw_dmac_core +dw_dmac_pci +dw_drm_dsi +dw_wdt +dwc-xlgmac +e100 +e1000 +e1000e +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec_sys +ecc +ecdh_generic +ecdsa_generic +echainiv +ecrdsa_generic +ee1004 +eeprom_93cx6 +efa +efct +efi-pstore +efi_test +efibc +efs +em_canid +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +ems_pci +emu10k1-gp +enclosure +ene_ir +eni +enic +eql +erofs +error +esas2r +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et131x +etas_es58x +ethoc +evbug +exfat +extcon-fsa9480 +extcon-gpio +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-ptn5150 +extcon-qcom-spmi-misc +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +f2fs +f71805f +f71882fg +f75375s +f81601 +failover +fan +fan53880 +farsync +fastrpc +faulty +fb_agm1264k-fl +fb_bd663474 +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_seps525 +fb_sh1106 +fb_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fcrypt +fdomain +fdomain_pci +fealnx +ff-memless +ffa-module +fieldbus_dev +fintek-cir +fixed +flexcan +fm10k +fm801-gp +fore_200e +fou +fou6 +fpga-mgr +freevxfs +fscache +fsi-core +fsi-master-aspeed +fsi-master-gpio +fsi-master-hub +fsi-occ +fsi-sbefifo +fsi-scom +fsl-dpaa2-eth +fsl-dpaa2-ptp +fsl-dpaa2-switch +fsl-edma +fsl-edma-common +fsl-enetc +fsl-enetc-ierb +fsl-enetc-mdio +fsl-enetc-ptp +fsl-enetc-vf +fsl-mc-dpio +fsl-qdma +fsl_dpa +fsl_imx8_ddr_perf +fsl_linflexuart +fsl_lpuart +fsl_pq_mdio +fsl_ucc_hdlc +ftm-quaddec +ftsteutates +g760a +g762 +gameport +garp +gateworks-gsc +gcc-apq8084 +gcc-ipq4019 +gcc-ipq6018 +gcc-ipq806x +gcc-ipq8074 +gcc-mdm9607 +gcc-mdm9615 +gcc-msm8660 +gcc-msm8916 +gcc-msm8939 +gcc-msm8953 +gcc-msm8960 +gcc-msm8974 +gcc-msm8994 +gcc-msm8996 +gcc-msm8998 +gcc-qcs404 +gcc-sc7180 +gcc-sc7280 +gcc-sc8180x +gcc-sdm660 +gcc-sdm845 +gcc-sdx55 +gcc-sm6115 +gcc-sm6125 +gcc-sm6350 +gcc-sm8150 +gcc-sm8250 +gcc-sm8350 +ge2d +gemini +genet +geneve +genwqe_card +gfs2 +ghash-ce +gianfar_driver +gl518sm +gl520sm +gnss +goldfish_battery +gpi +gpio-74x164 +gpio-74xx-mmio +gpio-adnp +gpio-adp5588 +gpio-aggregator +gpio-altera +gpio-altera-a10sr +gpio-amd-fch +gpio-amdpt +gpio-arizona +gpio-bd9571mwv +gpio-brcmstb +gpio-cadence +gpio-da9052 +gpio-dwapb +gpio-eic-sprd +gpio-exar +gpio-fan +gpio-grgpio +gpio-gw-pld +gpio-hisi +gpio-hlwd +gpio-ir-recv +gpio-ir-tx +gpio-janz-ttl +gpio-logicvc +gpio-lp3943 +gpio-lp873x +gpio-lp87565 +gpio-madera +gpio-max3191x +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-max77650 +gpio-mb86s7x +gpio-mc33880 +gpio-menz127 +gpio-mlxbf +gpio-mlxbf2 +gpio-mockup +gpio-moxtet +gpio-pca953x +gpio-pcf857x +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-pisosr +gpio-pmic-eic-sprd +gpio-raspberrypi-exp +gpio-rcar +gpio-rdc321x +gpio-regmap +gpio-rockchip +gpio-sama5d2-piobu +gpio-siox +gpio-sl28cpld +gpio-sprd +gpio-syscon +gpio-thunderx +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-tqmx86 +gpio-vibra +gpio-virtio +gpio-visconti +gpio-wcd934x +gpio-wm831x +gpio-wm8994 +gpio-xgene-sb +gpio-xgs-iproc +gpio-xlp +gpio-xra1403 +gpio-zynq +gpio_keys_polled +gpio_wdt +gpu-sched +gpucc-msm8998 +gpucc-sc7180 +gpucc-sc7280 +gpucc-sdm660 +gpucc-sdm845 +gpucc-sm8150 +gpucc-sm8250 +grace +grcan +gre +gs1662 +gsc-hwmon +gtp +gud +gve +habanalabs +hamachi +hantro-vpu +hci +hclge +hclgevf +hd44780 +hd44780_common +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcd +he +hfpll +hfs +hfsplus +hi311x +hi3660-mailbox +hi6220-mailbox +hi6220_reset +hi6421-pmic-core +hi6421-regulator +hi6421v530-regulator +hi655x-pmic +hi655x-regulator +hibmc-drm +hid +hid-cougar +hid-generic +hid-glorious +hid-hyperv +hid-ite +hid-jabra +hid-led +hid-macally +hid-maltron +hid-mf +hid-nti +hid-playstation +hid-redragon +hid-semitek +hid-sensor-custom +hid-sensor-hub +hid-steam +hid-udraw-ps3 +hid-viewsonic +hid-wiimote +hih6130 +hinic +hip04_eth +hisi-rng +hisi-trng-v2 +hisi_femac +hisi_hikey_usb +hisi_hpre +hisi_powerkey +hisi_qm +hisi_sas_main +hisi_sas_v1_hw +hisi_sas_v2_hw +hisi_sas_v3_hw +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 +hmc6352 +hms-profinet +hnae +hnae3 +hns-roce-hw-v1 +hns-roce-hw-v2 +hns3 +hns_dsaf +hns_enet_drv +hns_mdio +host1x +hpfs +hpsa +hptiop +hpwdt +hsr +ht16k33 +htc-pasic3 +hv_netvsc +hv_sock +hwmon-vid +hwpoison-inject +hx8357 +hx8357d +hyperv-keyboard +hyperv_drm +hyperv_fb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-altera +i2c-amd-mp2-pci +i2c-amd-mp2-plat +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-bcm-iproc +i2c-bcm2835 +i2c-brcmstb +i2c-cbus-gpio +i2c-core +i2c-cp2615 +i2c-demux-pinctrl +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-dev +i2c-fsi +i2c-gpio +i2c-hid +i2c-hid-acpi +i2c-hid-of +i2c-hid-of-goodix +i2c-hisi +i2c-hix5hd2 +i2c-i801 +i2c-imx +i2c-imx-lpi2c +i2c-isch +i2c-meson +i2c-mlxbf +i2c-mt65xx +i2c-mux +i2c-mux-gpmux +i2c-mux-ltc4306 +i2c-mux-pinctrl +i2c-mv64xxx +i2c-nforce2 +i2c-nomadik +i2c-nvidia-gpu +i2c-ocores +i2c-omap +i2c-owl +i2c-parport +i2c-pca-platform +i2c-pxa +i2c-qcom-cci +i2c-qcom-geni +i2c-qup +i2c-rcar +i2c-riic +i2c-rk3x +i2c-scmi +i2c-sh_mobile +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-slave-eeprom +i2c-smbus +i2c-stub +i2c-synquacer +i2c-taos-evm +i2c-tegra +i2c-tegra-bpmp +i2c-thunderx +i2c-versatile +i2c-via +i2c-viapro +i2c-virtio +i2c-xgene-slimpro +i2c-xiic +i2c-xlp9xx +i3c +i3c-master-cdns +i40e +i5k_amb +i6300esb +iavf +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_umad +ib_uverbs +ibmaem +ibmpex +icc-bcm-voter +icc-osm-l3 +icc-rpmh +icc-smd-rpm +ice +ice40-spi +icp +ics932s401 +idma64 +idt77252 +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifcvf +ife +igb +igbvf +igc +ila +ili9225 +ili922x +ili9320 +ili9341 +ili9486 +img-ascii-lcd +imx-bus +imx-cpufreq-dt +imx-dcss +imx-dma +imx-dsp +imx-interconnect +imx-mailbox +imx-media-common +imx-pxp +imx-sdma +imx2_wdt +imx6q-cpufreq +imx7-media-csi +imx7-mipi-csis +imx7ulp_wdt +imx8m-ddrc +imx8mm-interconnect +imx8mm_thermal +imx8mn-interconnect +imx8mq-interconnect +imx8mq-mipi-csi2 +imx_keypad +imx_sc_key +imx_sc_thermal +imx_sc_wdt +imx_thermal +imxfb +ina209 +ina2xx +ina3221 +inet_diag +initio +intel-qep +interrupt-cnt +io-domain +ionic +iosm +ip6_gre +ip6_tables +ip6_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_twos +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipcomp +ipcomp6 +iphase +ipip +ipmb_dev_int +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipr +iproc-rng200 +ips +ipt_CLUSTERIP +ipt_ECN +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipvtap +iqs269a +iqs626a +iqs62x +iqs62x-keys +ir-hix5hd2 +ir-imon-decoder +ir-jvc-decoder +ir-kbd-i2c +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-rcmm-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-spi +ir-xmp-decoder +irdma +irq-madera +irq-pruss-intc +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isl29003 +isl29020 +isofs +isp1704_charger +it87 +ite-cir +ite-it66121 +iw_cm +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jfs +jme +joydev +jsm +k3_bandgap +k3dma +kafs +kcm +keembay-ocs-aes +keembay-ocs-hcu +keembay_wdt +keywrap +khadas-mcu +khadas_mcu_fan +kheaders +kirin-drm +kmb-drm +kmem +komeda +kpss-xcc +ks0127 +ksmbd +ksz8795 +ksz8795_spi +ksz8863_smi +ksz9477 +ksz9477_i2c +ksz9477_spi +ksz_common +kvaser_pci +kvaser_pciefd +kyber-iosched +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +lan743x +lan9303-core +lan9303_i2c +lan9303_mdio +lanai +lantiq_gswip +lapb +lapbether +lattice-ecp3-config +layerscape_edac_mod +lcc-ipq806x +lcc-mdm9615 +lcc-msm8960 +lcd +lec +led-class +led_bl +leds-an30259a +leds-aw2013 +leds-bcm6328 +leds-bcm6358 +leds-cpcap +leds-cr0014114 +leds-el15203000 +leds-gpio +leds-is31fl319x +leds-is31fl32xx +leds-lm3532 +leds-lm36274 +leds-lm3692x +leds-lm3697 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8860 +leds-lt3593 +leds-max77650 +leds-mlxreg +leds-pwm +leds-sc27xx-bltc +leds-spi-byte +leds-ti-lmu-common +leds-tps6105x +ledtrig-activity +ledtrig-audio +ledtrig-netdev +ledtrig-pattern +ledtrig-tty +libarc4 +libceph +libchacha +libchacha20poly1305 +libcrc32c +libcurve25519 +libcurve25519-generic +libdes +libiscsi +libiscsi_tcp +libpoly1305 +libsas +libsm4 +lightning +lima +lineage-pem +linear +linkstation-poweroff +liteuart +litex_liteeth +litex_soc_ctrl +ll_temac +llc +llc2 +llcc-qcom +lm3630a_bl +lm363x-regulator +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmh +lms283gf05 +lms501kf03 +lockd +locktorture +lontium-lt8912b +lontium-lt9611 +lontium-lt9611uxc +lp +lp3943 +lp855x_bl +lp873x +lp873x-regulator +lp87565 +lp87565-regulator +lpass-gfm-sm8250 +lpasscc-sdm845 +lpasscorecc-sc7180 +lpc_ich +lpc_sch +lpfc +lru_cache +lrw +lt3651-charger +ltc2945 +ltc2947-core +ltc2947-i2c +ltc2947-spi +ltc2990 +ltc4151 +ltc4162-l-charger +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltv350qv +lvds-codec +lz4 +lz4_compress +lz4hc +lz4hc_compress +m2m-deinterlace +m52790 +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac802154 +mac802154_hwsim +macsec +macvlan +macvtap +madera +madera-i2c +madera-spi +mailbox-test +mailbox-xgene-slimpro +mali-dp +marvell +marvell-88x2222 +marvell-cesa +marvell10g +matrix-keymap +max1111 +max14577 +max14656_charger_detector +max16065 +max1619 +max1668 +max197 +max3100 +max31722 +max31730 +max31790 +max63xx_wdt +max6621 +max6639 +max6642 +max6650 +max6697 +max77650 +max77650-charger +max77650-onkey +max77650-regulator +max77686 +max77686-regulator +max77693 +max77693-haptic +max77802-regulator +max77826-regulator +max8893 +max8907 +max8973-regulator +max9286 +mc +mc13783-adc +mc13xxx-core +mc13xxx-i2c +mc13xxx-spi +mcam-core +mcb +mcb-lpc +mcb-pci +mcp16502 +mcp3021 +mcr20a +mctp +md-cluster +md4 +mdev +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-hisi-femac +mdio-i2c +mdio-ipq4019 +mdio-ipq8064 +mdio-mscc-miim +mdio-mux-gpio +mdio-mux-meson-g12a +mdio-mux-mmioreg +mdio-mux-multiplexer +mdio-mvusb +mdio-octeon +mdio-thunder +mdio-xgene +mdt_loader +mediatek-cpufreq +mediatek-cpufreq-hw +mediatek-drm +mediatek-drm-hdmi +mediatek-ge +megachips-stdpxxxx-ge-b850v3-fw +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +memory-notifier-error-inject +men_z135_uart +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +menz69_wdt +meson-canvas +meson-drm +meson-gxl +meson-ir +meson-ir-tx +meson-rng +meson-vdec +meson_dw_hdmi +meson_gxbb_wdt +meson_wdt +mhi +mhi_wwan_ctrl +mhi_wwan_mbim +mi0283qt +michael_mic +micrel +microchip +microchip-tcb-capture +microchip_t1 +mii +minix +mip6 +ml86v7667 +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx_wdt +mlxbf-bootctl +mlxbf-pmc +mlxbf-tmfifo +mlxbf_gige +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxsw_core +mlxsw_i2c +mlxsw_minimal +mlxsw_pci +mlxsw_spectrum +mmcc-apq8084 +mmcc-msm8960 +mmcc-msm8974 +mmcc-msm8994 +mmcc-msm8996 +mmcc-msm8998 +mmcc-sdm660 +most_cdev +most_core +most_dim2 +most_i2c +most_net +most_video +motorcomm +motorola-cpcap +moxa +moxtet +mp2629 +mp5416 +mp8859 +mp886x +mpi3mr +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpq7920 +mpt3sas +mptbase +mptcp_diag +mptctl +mptfc +mptsas +mptscsih +mptspi +mrp +mscc +mscc_felix +mscc_ocelot +mscc_ocelot_switch_lib +msdos +msm +msp3400 +mss-sc7180 +mt6360-core +mt6360_charger +mt6380-regulator +mt7530 +mtk-cir +mtk-cmdq-helper +mtk-cmdq-mailbox +mtk-cqdma +mtk-devapc +mtk-hsdma +mtk-pmic-wrap +mtk-rng +mtk-smi +mtk-uart-apdma +mtk-vpu +mtk_thermal +mtk_wdt +mtu3 +multipath +mux-adg792a +mux-adgs1408 +mux-core +mux-gpio +mux-mmio +mvmdio +mvneta +mvpp2 +mvsas +mvumi +mxc-jpeg-encdec +mxl-gpy +mxser +mxsfb +myrb +myrs +n5pf +n_gsm +n_hdlc +nbd +nci +nci_spi +nci_uart +nct6683 +nct6775 +nct7802 +nct7904 +nd_virtio +net_failover +netconsole +netdevsim +netfs +netlink_diag +netrom +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_syslog +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_socket_ipv4 +nf_socket_ipv6 +nf_synproxy_core +nf_tables +nf_tproxy_ipv4 +nf_tproxy_ipv6 +nfc +nfc_digital +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_hook +nfnetlink_log +nfnetlink_osf +nfnetlink_queue +nfp +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_reject_netdev +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +nhpoly1305 +nhpoly1305-neon +nicstar +nilfs2 +nixge +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nosy +notifier-error-inject +nozomi +npcm750-pwm-fan +ns-thermal +ns558 +nsh +ntb +ntb_hw_epf +ntb_hw_idt +ntb_hw_switchtec +ntb_netdev +ntb_transport +ntc_thermistor +ntfs +ntfs3 +ntxec +nuvoton-cir +nvec +nvec_kbd +nvec_paz00 +nvec_power +nvec_ps2 +nvme-fabrics +nvme-fc +nvme-rdma +nvme-tcp +nvmem-bcm-ocotp +nvmem-imx-iim +nvmem-imx-ocotp +nvmem-imx-ocotp-scu +nvmem-reboot-mode +nvmem-rmem +nvmem-rockchip-otp +nvmem-sc27xx-efuse +nvmem_meson_efuse +nvmem_meson_mx_efuse +nvmem_qfprom +nvmem_rockchip_efuse +nvmem_snvs_lpgpr +nvmem_sprd_efuse +nvmem_sunxi_sid +nvmet +nvmet-fc +nvmet-tcp +nwl-dsi +nxp-c45-tja11xx +nxp-ptn3460 +nxp-tja11xx +objagg +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocmem +octeontx-cpt +octeontx-cptvf +of_pmem +of_xilinx_wdt +ofb +omap-mailbox +omap-rng +omap4-keypad +omap_hwspinlock +omfs +openvswitch +optee +optee-rng +otm3225a +ov7670 +overlay +owl-dma +owl-emac +p8022 +panel +panel-abt-y030xx067a +panel-arm-versatile +panel-asus-z00t-tm5p5-n35596 +panel-boe-himax8279d +panel-boe-tv101wum-nl6 +panel-dsi-cm +panel-elida-kd35t133 +panel-feixin-k101-im2ba02 +panel-feiyang-fy07024di26a30d +panel-ilitek-ili9322 +panel-ilitek-ili9341 +panel-ilitek-ili9881c +panel-innolux-ej030na +panel-innolux-p079zca +panel-jdi-lt070me05000 +panel-khadas-ts050 +panel-kingdisplay-kd097d04 +panel-leadtek-ltk050h3146w +panel-leadtek-ltk500hd1829 +panel-lg-lb035q02 +panel-lg-lg4573 +panel-lvds +panel-mantix-mlaf057we51 +panel-nec-nl8048hl11 +panel-novatek-nt35510 +panel-novatek-nt36672a +panel-novatek-nt39016 +panel-olimex-lcd-olinuxino +panel-orisetech-otm8009a +panel-osd-osd101t2587-53ts +panel-panasonic-vvx10f034n00 +panel-raspberrypi-touchscreen +panel-raydium-rm67191 +panel-raydium-rm68200 +panel-ronbo-rb070d30 +panel-samsung-atna33xc20 +panel-samsung-db7430 +panel-samsung-ld9040 +panel-samsung-s6d16d0 +panel-samsung-s6e3ha2 +panel-samsung-s6e63j0x03 +panel-samsung-s6e63m0 +panel-samsung-s6e63m0-dsi +panel-samsung-s6e63m0-spi +panel-samsung-s6e88a0-ams452ef01 +panel-samsung-s6e8aa0 +panel-samsung-sofef00 +panel-seiko-43wvf1g +panel-sharp-lq101r1sx01 +panel-sharp-ls037v7dw01 +panel-sharp-ls043t1le01 +panel-simple +panel-sitronix-st7701 +panel-sitronix-st7703 +panel-sitronix-st7789v +panel-sony-acx424akp +panel-sony-acx565akm +panel-tdo-tl070wsh30 +panel-tpo-td028ttec1 +panel-tpo-td043mtea1 +panel-tpo-tpg110 +panel-truly-nt35597 +panel-visionox-rm69299 +panel-widechips-ws2401 +panel-xinpeng-xpp055c272 +panfrost +parade-ps8622 +parade-ps8640 +parkbd +parman +parport +parport_ax88796 +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_imx +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc300too +pc87360 +pc87427 +pcbc +pcf50633 +pcf50633-adc +pcf50633-gpio +pcf8591 +pci-epf-ntb +pci-pf-stub +pci-stub +pci200syn +pcie-brcmstb +pcie-iproc +pcie-iproc-platform +pcie-mediatek-gen3 +pcie-rockchip-host +pcie-tegra194 +pcips2 +pcmcia_core +pcmcia_rsrc +pcrypt +pcs-lynx +pcs_xpcs +pcwd_pci +pdc_adma +pdr_interface +peak_pci +peak_pciefd +pf8x00-regulator +pfuze100-regulator +phantom +phonet +phy-am654-serdes +phy-armada38x-comphy +phy-bcm-ns-usb2 +phy-bcm-ns-usb3 +phy-bcm-ns2-usbdrd +phy-bcm-sr-pcie +phy-bcm-sr-usb +phy-berlin-sata +phy-berlin-usb +phy-brcm-usb-dvr +phy-cadence-salvo +phy-cadence-sierra +phy-cadence-torrent +phy-can-transceiver +phy-fsl-imx8-mipi-dphy +phy-fsl-imx8mq-usb +phy-generic +phy-hi3660-usb3 +phy-hi3670-usb3 +phy-hi6220-usb +phy-hisi-inno-usb2 +phy-histb-combphy +phy-intel-keembay-emmc +phy-intel-keembay-usb +phy-j721e-wiz +phy-mapphone-mdm6600 +phy-meson-axg-mipi-dphy +phy-meson-g12a-usb2 +phy-meson-g12a-usb3-pcie +phy-meson-gxl-usb2 +phy-meson8b-usb2 +phy-mtk-hdmi-drv +phy-mtk-mipi-dsi-drv +phy-mtk-tphy +phy-mtk-ufs +phy-mtk-xsphy +phy-mvebu-a3700-comphy +phy-mvebu-a3700-utmi +phy-mvebu-cp110-comphy +phy-mvebu-cp110-utmi +phy-ocelot-serdes +phy-omap-usb2 +phy-qcom-apq8064-sata +phy-qcom-ipq4019-usb +phy-qcom-ipq806x-sata +phy-qcom-ipq806x-usb +phy-qcom-pcie2 +phy-qcom-qmp +phy-qcom-qusb2 +phy-qcom-snps-femto-v2 +phy-qcom-usb-hs +phy-qcom-usb-hs-28nm +phy-qcom-usb-hsic +phy-qcom-usb-ss +phy-rcar-gen2 +phy-rcar-gen3-pcie +phy-rcar-gen3-usb2 +phy-rcar-gen3-usb3 +phy-rockchip-dp +phy-rockchip-dphy-rx0 +phy-rockchip-emmc +phy-rockchip-inno-csidphy +phy-rockchip-inno-dsidphy +phy-rockchip-inno-hdmi +phy-rockchip-inno-usb2 +phy-rockchip-pcie +phy-rockchip-typec +phy-rockchip-usb +phy-sun4i-usb +phy-sun50i-usb3 +phy-sun6i-mipi-dphy +phy-tegra-usb +phy-tegra-xusb +phy-tegra194-p2u +phy-tusb1210 +phy-zynqmp +phylink +pi433 +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-axp209 +pinctrl-imx8ulp +pinctrl-ipq4019 +pinctrl-ipq6018 +pinctrl-ipq8064 +pinctrl-ipq8074 +pinctrl-keembay +pinctrl-lpass-lpi +pinctrl-madera +pinctrl-mcp23s08 +pinctrl-mcp23s08_i2c +pinctrl-mcp23s08_spi +pinctrl-mdm9607 +pinctrl-mdm9615 +pinctrl-msm8226 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8953 +pinctrl-msm8960 +pinctrl-msm8976 +pinctrl-msm8994 +pinctrl-msm8996 +pinctrl-msm8998 +pinctrl-msm8x74 +pinctrl-mt6779 +pinctrl-qcs404 +pinctrl-qdf2xxx +pinctrl-rk805 +pinctrl-sc7180 +pinctrl-sc7280 +pinctrl-sc8180x +pinctrl-sdm660 +pinctrl-sdm845 +pinctrl-sdx55 +pinctrl-sm6115 +pinctrl-sm6125 +pinctrl-sm8150 +pinctrl-sm8250 +pinctrl-sm8350 +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pinctrl-stmfx +pinctrl-zynqmp +pkcs7_test_key +pkcs8_key_parser +pktcdvd +pktgen +pl111_drm +pl172 +pl330 +platform_lcd +platform_mhu +plx_dma +plx_pci +pm-notifier-error-inject +pm80xx +pmcraid +pn_pep +poly1305-neon +poly1305_generic +powr1220 +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pptp +pretimeout_panic +pruss +ps2-gpio +ps2mult +psample +psnap +pstore_blk +pstore_zone +ptp-qoriq +ptp_clockmatrix +ptp_dte +ptp_idt82p33 +ptp_kvm +pulse8-cec +pvpanic +pvpanic-mmio +pvpanic-pci +pwm-atmel-hlcdc +pwm-atmel-tcb +pwm-bcm-iproc +pwm-bcm2835 +pwm-beeper +pwm-berlin +pwm-brcmstb +pwm-dwc +pwm-fan +pwm-fsl-ftm +pwm-hibvt +pwm-imx-tpm +pwm-imx1 +pwm-imx27 +pwm-iqs620a +pwm-ir-tx +pwm-keembay +pwm-lp3943 +pwm-mediatek +pwm-meson +pwm-mtk-disp +pwm-ntxec +pwm-pca9685 +pwm-raspberrypi-poe +pwm-rcar +pwm-regulator +pwm-renesas-tpu +pwm-rockchip +pwm-sl28cpld +pwm-sprd +pwm-sun4i +pwm-tegra +pwm-tiecap +pwm-tiehrpwm +pwm-vibra +pwm-visconti +pwm_bl +pxa168_eth +q6sstop-qcs404 +qcom-apcs-ipc-mailbox +qcom-camss +qcom-cpufreq-hw +qcom-cpufreq-nvmem +qcom-geni-se +qcom-pm8008 +qcom-rng +qcom-rpmh-regulator +qcom-wdt +qcom-wled +qcom_aoss +qcom_edac +qcom_geni_serial +qcom_glink +qcom_glink_rpm +qcom_glink_smem +qcom_gsbi +qcom_hwspinlock +qcom_rpm +qcom_rpm-regulator +qcom_smd +qcom_smd-regulator +qcom_tsens +qcrypto +qla1280 +qla2xxx +qla4xxx +qlge +qmi_helpers +qnoc-msm8916 +qnoc-msm8939 +qnoc-msm8974 +qnoc-qcs404 +qnoc-sc7180 +qnoc-sc7280 +qnoc-sc8180x +qnoc-sdm660 +qnoc-sdm845 +qnoc-sdx55 +qnoc-sm8150 +qnoc-sm8250 +qnoc-sm8350 +qnx4 +qnx6 +qoriq-cpufreq +qoriq_thermal +qrtr +qrtr-mhi +qrtr-smd +qrtr-tun +qt1050 +quota_tree +quota_v1 +quota_v2 +qxl +r8169 +radeon +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +rainshadow-cec +ramoops +raspberrypi-cpufreq +raspberrypi-hwmon +raw_diag +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-astrometa-t2hybrid +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-beelink-gs1 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-ct-90405 +rc-d680-dmb +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dtt200u +rc-dvbsky +rc-dvico-mce +rc-dvico-portable +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-geekbox +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-hisi-poplar +rc-hisi-tv-demo +rc-imon-mce +rc-imon-pad +rc-imon-rsc +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-khadas +rc-khamsin +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-mecool-kii-pro +rc-mecool-kiii-pro +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-minix-neo +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-odroid +rc-pctv-sedna +rc-pine64 +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tanix-tx3mini +rc-tanix-tx5max +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-vega-s9x +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-videostrong-kii-pro +rc-wetek-hub +rc-wetek-play2 +rc-winfast +rc-winfast-usbii-deluxe +rc-x96max +rc-xbox-360 +rc-xbox-dvd +rc-zx-irdec +rcar-csi2 +rcar-dmac +rcar-du-drm +rcar-fcp +rcar-vin +rcar_can +rcar_canfd +rcar_cmm +rcar_dw_hdmi +rcar_fdp1 +rcar_gen3_thermal +rcar_jpu +rcar_lvds +rcar_thermal +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-smi +reboot-mode +reed_solomon +regmap-i2c +regmap-slimbus +reiserfs +renesas-rpc-if +renesas_wdt +repaper +reset-a10sr +reset-brcmstb +reset-hi3660 +reset-meson-audio-arb +reset-qcom-pdc +reset-raspberrypi +reset-rzg2l-usbphy-ctrl +reset-scmi +reset-ti-sci +reset-ti-syscon +retu-mfd +retu_wdt +rfc1051 +rfc1201 +rfkill-gpio +rio-scan +rio_cm +rio_mport_cdev +rionet +rk3399_dmc +rk805-pwrkey +rk808 +rk808-regulator +rk_crypto +rmd160 +rmtfs_mem +rn5t618 +rn5t618-regulator +rn5t618_wdt +rnbd-client +rnbd-server +rockchip +rockchip-dfi +rockchip-isp1 +rockchip-rga +rockchip-vdec +rockchip_thermal +rockchipdrm +roles +romfs +rose +rp2 +rpcrdma +rpcsec_gss_krb5 +rpmpd +rpmsg_char +rpmsg_core +rpmsg_ns +rpmsg_wwan_ctrl +rsmu-i2c +rsmu-spi +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt6160-regulator +rt6245-regulator +rtc-ab-eoz9 +rtc-armada38x +rtc-brcmstb-waketimer +rtc-cadence +rtc-cpcap +rtc-fsl-ftm-alarm +rtc-ftrtc010 +rtc-goldfish +rtc-hym8563 +rtc-imx-sc +rtc-imxdi +rtc-isl12026 +rtc-max77686 +rtc-meson-vrtc +rtc-mt2712 +rtc-mt7622 +rtc-mxc +rtc-mxc_v2 +rtc-ntxec +rtc-pcf85363 +rtc-pl030 +rtc-pl031 +rtc-r7301 +rtc-rc5t619 +rtc-rk808 +rtc-rv3028 +rtc-sc27xx +rtc-sd3078 +rtc-sh +rtc-snvs +rtc-tegra +rtc-zynqmp +rti_wdt +rtq2134-regulator +rtq6752-regulator +rtrs-client +rtrs-core +rtrs-server +rts5208 +rtsx_pci +rvu_af +rvu_cptpf +rvu_cptvf +rvu_mbox +rvu_nicpf +rvu_nicvf +rxrpc +rz-dmac +rza_wdt +s2io +sa2ul +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa717x +saa7185 +sahara +samsung_tty +sata_dwc_460ex +sata_rcar +sata_sil +sata_sil24 +sb1000 +sbrmi +sbs-manager +sbsa_gwdt +sc16is7xx +sc2731-regulator +sc2731_charger +sc27xx-poweroff +sc27xx-vibra +sc9860-clk +sc9863a-clk +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cake +sch_cbq +sch_cbs +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_etf +sch_ets +sch_fq +sch_fq_codel +sch_fq_pie +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_skbprio +sch_taprio +sch_tbf +sch_teql +sci-clk +sclk-div +scmi-cpufreq +scmi-hwmon +scmi-regulator +scmi_pm_domain +scpi-cpufreq +scpi-hwmon +scpi_pm_domain +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_diag +serial-tegra +serial_ir +serio_raw +serpent_generic +serport +ses +sf-pdma +sfc +sfc-falcon +sfp +sh_mobile_lcdcfb +sha1-ce +sha2-ce +sha256-arm64 +sha3-ce +sha3_generic +sha512-arm64 +sha512-ce +shiftfs +sht15 +sht21 +sht3x +sht4x +shtc1 +sifive +sii902x +sii9234 +sil-sii8620 +simple-bridge +simple-mfd-i2c +simpledrm +simplefb +siox-bus-gpio +siox-core +sir_ir +sis5595 +sit +siw +sja1000 +sja1000_isa +sja1000_platform +sja1105 +skfp +skge +sky2 +sky81452 +sl28cpld-hwmon +sl28cpld_wdt +slcan +slg51000-regulator +slic_ds26522 +slicoss +slim-qcom-ctrl +slimbus +slip +sm2_generic +sm3-ce +sm3_generic +sm4-ce +sm4_generic +sm501 +sm501fb +sm750fb +smartpqi +smc +smc_diag +smd-rpm +smem +smm665 +smp2p +smsc47b397 +smsc47m1 +smsc47m192 +smsm +snd +snd-aloop +snd-dummy +snd-hrtimer +snd-pcm +snd-rawmidi +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-event +snd-seq-virmidi +snd-timer +snd-virmidi +snic +snvs_pwrkey +socfpga +socfpga-a10 +socinfo +softdog +solos-pci +sony-btf-mpx +soundcore +soundwire-bus +sp805_wdt +sparse-keymap +sparx5-switch +sparx5-temp +sparx5_serdes +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spi-altera-core +spi-altera-platform +spi-amd +spi-armada-3700 +spi-axi-spi-engine +spi-bcm-qspi +spi-bcm2835 +spi-bcm2835aux +spi-bitbang +spi-brcmstb-qspi +spi-butterfly +spi-cadence +spi-cadence-quadspi +spi-dw +spi-dw-mmio +spi-dw-pci +spi-fsi +spi-fsl-dspi +spi-fsl-lpspi +spi-fsl-qspi +spi-geni-qcom +spi-gpio +spi-hisi-kunpeng +spi-hisi-sfc-v3xx +spi-imx +spi-iproc-qspi +spi-lm70llp +spi-loopback-test +spi-meson-spicc +spi-meson-spifc +spi-mt65xx +spi-mtk-nor +spi-mux +spi-mxic +spi-nxp-fspi +spi-oc-tiny +spi-orion +spi-pl022 +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-qcom-qspi +spi-qup +spi-rockchip-sfc +spi-rpc-if +spi-rspi +spi-sc18is602 +spi-sh-hspi +spi-sh-msiof +spi-sifive +spi-slave-mt27xx +spi-slave-system-control +spi-slave-time +spi-sprd +spi-sprd-adi +spi-sun6i +spi-synquacer +spi-tegra114 +spi-tegra20-sflash +spi-tegra20-slink +spi-tegra210-quad +spi-thunderx +spi-tle62x0 +spi-xcomm +spi-xlp +spi-zynqmp-gqspi +spidev +spl +sprd-dma +sprd-iommu +sprd-mailbox +sprd-sc27xx-spi +sprd_hwspinlock +sprd_serial +sprd_thermal +sprd_wdt +sr-thermal +ssb +ssd1307fb +st +st-mipid02 +st7586 +st7735r +stex +stmfx +stmpe-keypad +stp +stratix10-rsu +stratix10-soc +stratix10-svc +streebog_generic +stts751 +sun4i-backend +sun4i-csi +sun4i-drm +sun4i-drm-hdmi +sun4i-frontend +sun4i-gpadc +sun4i-ss +sun4i-tcon +sun4i_tv +sun50i-cpufreq-nvmem +sun6i-csi +sun6i-dma +sun6i_drc +sun6i_hwspinlock +sun6i_mipi_dsi +sun8i-ce +sun8i-di +sun8i-drm-hdmi +sun8i-mixer +sun8i-rotate +sun8i-ss +sun8i_tcon_top +sun8i_thermal +sundance +suni +sunrpc +sunxi-cedrus +sunxi-cir +sunxi-rsb +sunxi_wdt +svc-i3c-master +switchtec +sy8106a-regulator +sy8824x +sy8827n +sym53c8xx +synclink_gt +synopsys_edac +syscon-reboot-mode +syscopyarea +sysfillrect +sysimgblt +sysv +tag_ar9331 +tag_brcm +tag_dsa +tag_gswip +tag_ksz +tag_lan9303 +tag_mtk +tag_ocelot +tag_ocelot_8021q +tag_qca +tag_rtl4_a +tag_sja1105 +tag_trailer +tag_xrs700x +tap +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc358743 +tc358762 +tc358764 +tc358767 +tc358768 +tc358775 +tc654 +tc74 +tcm_loop +tcp_bbr +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tda7432 +tda9840 +tda9950 +tdo24m +tea6415c +tea6420 +tee +tee_bnxt_fw +tegra-aconnect +tegra-bpmp-thermal +tegra-drm +tegra-gmi +tegra-kbc +tegra-vde +tegra-video +tegra186-cpufreq +tegra194-cpufreq +tegra210-adma +tegra210-emc +tegra30-devfreq +tegra_cec +tegra_wdt +test_lockup +tg3 +thc63lvd1024 +thermal_mmio +thmc50 +ths7303 +ths8200 +thunderbolt +thunderbolt-net +thunderx2_pmu +thunderx_edac +thunderx_zip +ti-cal +ti-lmu +ti-sn65dsi83 +ti-sn65dsi86 +ti-tfp410 +ti-tpd12s015 +ti_am335x_tscadc +ti_sci_pm_domains +tidss +tifm_7xx1 +tifm_core +timeriomem-rng +tipc +tls +tlv320aic23b +tmp102 +tmp103 +tmp108 +tmp401 +tmp421 +tmp513 +torture +tpci200 +tpm_ftpm_tee +tpm_key_parser +tpm_tis_i2c_cr50 +tpm_tis_synquacer +tps23861 +tps6105x +tps65010 +tps6507x +tps65086 +tps65132-regulator +tps65217 +tps65217-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps65912-i2c +tqmx86 +ts_bm +ts_fsm +ts_kmp +tsi721_mport +tsl2550 +ttm +ttynull +tunnel4 +tunnel6 +turingcc-qcs404 +turris-mox-rwtm +tvaudio +tvp514x +tvp5150 +tvp7002 +tw2804 +tw9903 +tw9906 +tw9910 +twofish_common +twofish_generic +uPD60620 +uacce +uartlite +ubuntu-host +ucc_uart +ucs1002_power +uda1342 +udf +udp_diag +ufs +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_hv_generic +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +ulpi +unix_diag +upd64031a +upd64083 +usb-conn-gpio +usb-dmac +userio +v4l2-async +v4l2-dv-timings +v4l2-fwnode +v4l2-h264 +v4l2-jpeg +v4l2-mem2mem +v4l2-tpg +vcan +vchiq +vctrl-regulator +vdpa +vduse +venus-core +venus-dec +venus-enc +versal-fpga +veth +vexpress-hwmon +vexpress-regulator +vfio +vfio-amba +vfio-fsl-mc +vfio-pci +vfio-pci-core +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_iommu_type1 +vfio_platform_bcmflexrm +vfio_virqfd +vgg2432a4 +vhost +vhost_iotlb +vhost_net +vhost_scsi +vhost_vdpa +vhost_vsock +via686a +vicodec +video-i2c +video-mux +videobuf2-common +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocc-sc7180 +videocc-sc7280 +videocc-sdm845 +videocc-sm8150 +videocc-sm8250 +videodev +vim2m +vimc +virtio-gpu +virtio-rng +virtio_blk +virtio_crypto +virtio_dma_buf +virtio_input +virtio_net +virtio_pmem +virtio_rpmsg_bus +virtio_scsi +virtio_vdpa +virtiofs +virtual_ncidev +visconti_wdt +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vmac +vme_fake +vme_tsi148 +vme_vmivme7805 +vmw_vmci +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmw_vsock_vmci_transport +vmwgfx +vp27smpx +vp_vdpa +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vqmmc-ipq4019-regulator +vrf +vringh +vsock +vsock_diag +vsock_loopback +vsockmon +vsp1 +vt1211 +vt6655_stage +vt8231 +vx855 +vxcan +vxge +w83627ehf +w83627hf +w83773g +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +wanxl +wcd934x +wcnss_ctrl +wd719x +wdat_wdt +wdt_pci +wfx +wireguard +wm831x-hwmon +wm831x_wdt +wm8739 +wm8775 +wm8994 +wp512 +wwan +wwan_hwsim +x25 +x_tables +xcbc +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xgene-dma +xgene-enet +xgene-enet-v2 +xgene-hwmon +xgene-rng +xgene_edac +xhci-histb +xhci-mtk-hcd +xhci-plat-hcd +xhci-tegra +xilinx-csi2rxss +xilinx-spi +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_can +xilinx_dma +xilinx_dpdma +xilinx_emac +xilinx_emaclite +xilinx_sdfec +xilinx_uartps +xilinxfb +xillybus_class +xillyusb +xiphera-trng +xlnx_vcu +xor +xor-neon +xrs700x +xrs700x_i2c +xrs700x_mdio +xsk_diag +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_MASQUERADE +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xxhash_generic +xz_dec_test +yellowfin +yenta_socket +z3fold +zavl +zcommon +zfs +ziirave_wdt +zlua +znvpair +zonefs +zram +zstd +zstd_compress +zunicode +zynqmp-aes-gcm +zynqmp-dpsub +zynqmp-fpga +zynqmp_dma +zzstd diff --git a/debian.azure-5.15/abi/arm64/azure.modules.builtin b/debian.azure-5.15/abi/arm64/azure.modules.builtin new file mode 100644 index 0000000000000..cf8d7e58f7246 --- /dev/null +++ b/debian.azure-5.15/abi/arm64/azure.modules.builtin @@ -0,0 +1,430 @@ +8250 +8250_base +8250_mtk +8250_of +8250_omap +8250_pci +8250_tegra +acpi_dbg +acpi_mdio +acpiphp +aead +aes_generic +af_packet +ahci_imx +akcipher +altera-sysmgr +altera_edac +amba-pl011 +arm-cci +arm-cci +arm-ccn +arm_smmu +arm_smmu_v3 +armada_thermal +asn1_decoder +asn1_encoder +asymmetric_keys +ata_generic +atkbd +axg +axg-aoclk +backlight +bcm2835-dma +bcm2835-mailbox +bcm2835-pm +bcm2835-power +bcm84881 +bgmac +bgmac-platform +binfmt_elf +binfmt_script +brcmstb_dpfe +bsg +btree +button +cbc +cdrom +cfbcopyarea +cfbfillrect +cfbimgblt +clk-bcm2835 +clk-bcm2835-aux +clk-bm1880 +clk-cpu-dyndiv +clk-dualdiv +clk-fixed-mmio +clk-fsl-sai +clk-hi3559a +clk-imx-lpcg-scu +clk-imx-scu +clk-imx8mm +clk-imx8mn +clk-imx8mp +clk-imx8mq +clk-mpll +clk-pll +clk-regmap +clk-rk3399 +clk-vexpress-osc +cmd-db +cn +compat_binfmt_elf +configfs +cpufreq-dt +cpufreq_conservative +cpufreq_ondemand +cpufreq_performance +cpufreq_powersave +cpufreq_userspace +crc-ccitt +crc-t10dif +crc16 +crc32 +crc32c_generic +crc8 +crct10dif_common +crct10dif_generic +crypto +crypto_acompress +crypto_algapi +crypto_hash +crypto_null +cryptomgr +ctr +cts +da9052-core +da9052-spi +dax +deflate +device_dax +dh_generic +digsig +dm-mod +dns_resolver +drbg +drm_mipi_dsi +drm_panel_orientation_quirks +drop_monitor +ecb +ecryptfs +edac_core +efivarfs +encrypted-keys +evdev +exportfs +ext4 +extcon-core +ezx-pcap +fat +fb +fddi +fec +firmware_class +fixed_phy +font +freq_table +fsl_dpaa_fman +fsl_dpaa_fman_port +fsl_dpaa_mac +fuse +fwnode_mdio +g12a +g12a-aoclk +gcm +geniv +gf128mul +ghash-generic +glob +governor_passive +governor_performance +governor_powersave +governor_simpleondemand +governor_userspace +gpio-generic +gpio-mxc +gpio-pl061 +gpio-poweroff +gpio-restart +gpio-tegra +gpio-tegra186 +gpio-xilinx +gxbb +gxbb-aoclk +hed +hmac +hv_balloon +hv_storvsc +hv_utils +hv_vmbus +hwmon +hwspinlock_core +icc-core +imx +imx-scu +imx-weim +input-core +ioasid +iova +ip6_udp_tunnel +ip_tunnel +ipu_idmac +ipv6 +irq-al-fic +irq-ls-scfg-msi +irq-mbigen +irq-mvebu-pic +irq-renesas-irqc +irq-ti-sci-inta +irq-ti-sci-intr +irqbypass +jbd2 +jitterentropy_rng +kgdboc +kpp +kvm +libaes +libahci +libahci_platform +libata +libblake2s +libnvdimm +libphy +libps2 +libsha256 +linear_ranges +loop +ltc2952-poweroff +lz4_decompress +lzo +lzo-rle +lzo_compress +lzo_decompress +max310x +mbcache +md-mod +md5 +mdio-mux +mdio-mux-bcm-iproc +mdio_devres +meson-aoclk +meson-clk-measure +meson-ee-pwrc +meson-eeclk +meson-gx-pwrc-vpu +meson-secure-pwrc +meson_sm +meson_uart +mfd-core +mousedev +mpi +mq-deadline +msm_serial +mtk-eint +mv_xor_v2 +mx3fb +mxc-clk +n_null +nd_blk +nd_btt +nd_pmem +nfit +nfs_ssc +nls_base +nls_cp437 +nvme +nvme-core +nvmem_core +nvmem_zynqmp_nvmem +of_mdio +oid_registry +owl-uart +packing +pata_sis +pci-aardvark +pci-ep-cfs +pci-epc-core +pci-epc-mem +pci-epf-core +pci-host-common +pci-host-generic +pci-hyperv +pci-hyperv-intf +pci-meson +pci-tegra +pcie-altera +pcie-altera-msi +pcie-histb +pcie-mediatek +pcie-microchip-host +phy-bcm-ns2-pcie +phy-brcm-sata +phy-meson-axg-mipi-pcie-analog +phy-meson-axg-pcie +phy-mxs-usb +phy-xgene +pinctrl-imx +pinctrl-imx8dxl +pinctrl-imx8mm +pinctrl-imx8mn +pinctrl-imx8mp +pinctrl-imx8mq +pinctrl-imx8qm +pinctrl-imx8qxp +pinctrl-meson +pinctrl-meson-a1 +pinctrl-meson-axg +pinctrl-meson-axg-pmx +pinctrl-meson-g12a +pinctrl-meson-gxbb +pinctrl-meson-gxl +pinctrl-meson8-pmx +pinctrl-msm +pinctrl-mt6765 +pinctrl-mt8192 +pinctrl-mt8365 +pinctrl-mtk-common-v2 +pinctrl-paris +pinctrl-rockchip +pinctrl-rzg2l +pinctrl-s700 +pinctrl-s900 +pinctrl-scu +pinctrl-single +pinctrl-sprd +pinctrl-sprd-sc9860 +pkcs7_message +pldmfw +power_supply +ppp_generic +pps_core +pretimeout_noop +processor +pstore +ptp +public_key +qcom-ebi2 +qcom-ipcc +qcom-pdc +qcom-scm +qcom_rpmh +rapidio +raspberrypi +raspberrypi-power +rational +rcar-usb2-clock-sel +regmap-mmio +regmap-spi +regulator-poweroff +renesas-cpg-mssr +reset-berlin +reset-brcmstb-rescal +reset-imx7 +reset-meson +reset-microchip-sparx5 +reset-qcom-aoss +restart-poweroff +rfkill +rng +rng-core +rockchip-mailbox +rpmhpd +rsa_generic +rtc-efi +rtc-mv +rtc-xgene +rzg2l-cpg +sccnxp +scmi-module +scsi_common +scsi_mod +scsi_transport_fc +scu-pd +sd_mod +selftests +seqiv +serial_core +serial_mctrl_gpio +serio +sg +sh-sci +sh_cmt +sh_tmu +sha1_generic +sha256_generic +sha512_generic +shpchp +simple-pm-bus +skcipher +slhc +spi-fsl-lib +spi-fsl-spi +spi-omap2-mcspi +squashfs +sr_mod +stmpe-spi +sun50i-iommu +sun6i-msgbox +sunxi_sram +syscon-clk +system_heap +t10-pi +tcp_cubic +tegra-ahb +tegra-mc +tegra-tcu +tegra124-cpufreq +tegra186-emc +tegra20-apb-dma +tegra20-cpufreq +ti-msgmgr +ti_sci +tpm +tpm_crb +tpm_tis +tpm_tis_core +tps65086-restart +tps65912-core +tps65912-spi +trusted +ttyprintk +tun +ucs2_string +udmabuf +udp_tunnel +uinput +unicode +unix +usb-common +usbcore +vexpress-config +vexpress-sysreg +vfat +vid-pll-div +virt-dma +virtio +virtio-iommu +virtio_balloon +virtio_console +virtio_mmio +virtio_pci +virtio_pci_modern_dev +virtio_ring +vxlan +watch_queue +watchdog +x509_key_parser +xgmac_mdio +xhci-hcd +xhci-pci +xts +xxhash +xz_dec +zbud +zlib_deflate +zlib_inflate +zpool +zsmalloc +zstd_decompress +zswap +zynqmp-ipi-mailbox diff --git a/debian.azure-5.15/abi/arm64/azure.retpoline b/debian.azure-5.15/abi/arm64/azure.retpoline new file mode 100644 index 0000000000000..7f959eb917cdd --- /dev/null +++ b/debian.azure-5.15/abi/arm64/azure.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED diff --git a/debian.azure-5.15/abi/fwinfo b/debian.azure-5.15/abi/fwinfo new file mode 100644 index 0000000000000..dd71f7eb1db80 --- /dev/null +++ b/debian.azure-5.15/abi/fwinfo @@ -0,0 +1,894 @@ +firmware: advansys/3550.bin +firmware: advansys/38C0800.bin +firmware: advansys/38C1600.bin +firmware: advansys/mcode.bin +firmware: aic94xx-seq.fw +firmware: amd/amd_sev_fam17h_model0xh.sbin +firmware: amd/amd_sev_fam17h_model3xh.sbin +firmware: amd/amd_sev_fam19h_model0xh.sbin +firmware: amdgpu/aldebaran_mec.bin +firmware: amdgpu/aldebaran_mec2.bin +firmware: amdgpu/aldebaran_rlc.bin +firmware: amdgpu/aldebaran_sdma.bin +firmware: amdgpu/aldebaran_smc.bin +firmware: amdgpu/aldebaran_sos.bin +firmware: amdgpu/aldebaran_ta.bin +firmware: amdgpu/aldebaran_vcn.bin +firmware: amdgpu/arcturus_asd.bin +firmware: amdgpu/arcturus_gpu_info.bin +firmware: amdgpu/arcturus_mec.bin +firmware: amdgpu/arcturus_rlc.bin +firmware: amdgpu/arcturus_sdma.bin +firmware: amdgpu/arcturus_smc.bin +firmware: amdgpu/arcturus_sos.bin +firmware: amdgpu/arcturus_ta.bin +firmware: amdgpu/arcturus_vcn.bin +firmware: amdgpu/banks_k_2_smc.bin +firmware: amdgpu/beige_goby_ce.bin +firmware: amdgpu/beige_goby_dmcub.bin +firmware: amdgpu/beige_goby_me.bin +firmware: amdgpu/beige_goby_mec.bin +firmware: amdgpu/beige_goby_mec2.bin +firmware: amdgpu/beige_goby_pfp.bin +firmware: amdgpu/beige_goby_rlc.bin +firmware: amdgpu/beige_goby_sdma.bin +firmware: amdgpu/beige_goby_smc.bin +firmware: amdgpu/beige_goby_sos.bin +firmware: amdgpu/beige_goby_ta.bin +firmware: amdgpu/beige_goby_vcn.bin +firmware: amdgpu/bonaire_ce.bin +firmware: amdgpu/bonaire_k_smc.bin +firmware: amdgpu/bonaire_mc.bin +firmware: amdgpu/bonaire_me.bin +firmware: amdgpu/bonaire_mec.bin +firmware: amdgpu/bonaire_pfp.bin +firmware: amdgpu/bonaire_rlc.bin +firmware: amdgpu/bonaire_sdma.bin +firmware: amdgpu/bonaire_sdma1.bin +firmware: amdgpu/bonaire_smc.bin +firmware: amdgpu/bonaire_uvd.bin +firmware: amdgpu/bonaire_vce.bin +firmware: amdgpu/carrizo_ce.bin +firmware: amdgpu/carrizo_me.bin +firmware: amdgpu/carrizo_mec.bin +firmware: amdgpu/carrizo_mec2.bin +firmware: amdgpu/carrizo_pfp.bin +firmware: amdgpu/carrizo_rlc.bin +firmware: amdgpu/carrizo_sdma.bin +firmware: amdgpu/carrizo_sdma1.bin +firmware: amdgpu/carrizo_uvd.bin +firmware: amdgpu/carrizo_vce.bin +firmware: amdgpu/cyan_skillfish2_ce.bin +firmware: amdgpu/cyan_skillfish2_me.bin +firmware: amdgpu/cyan_skillfish2_mec.bin +firmware: amdgpu/cyan_skillfish2_mec2.bin +firmware: amdgpu/cyan_skillfish2_pfp.bin +firmware: amdgpu/cyan_skillfish2_rlc.bin +firmware: amdgpu/cyan_skillfish2_sdma.bin +firmware: amdgpu/cyan_skillfish2_sdma1.bin +firmware: amdgpu/cyan_skillfish_ce.bin +firmware: amdgpu/cyan_skillfish_me.bin +firmware: amdgpu/cyan_skillfish_mec.bin +firmware: amdgpu/cyan_skillfish_mec2.bin +firmware: amdgpu/cyan_skillfish_pfp.bin +firmware: amdgpu/cyan_skillfish_rlc.bin +firmware: amdgpu/cyan_skillfish_sdma.bin +firmware: amdgpu/cyan_skillfish_sdma1.bin +firmware: amdgpu/dimgrey_cavefish_ce.bin +firmware: amdgpu/dimgrey_cavefish_dmcub.bin +firmware: amdgpu/dimgrey_cavefish_me.bin +firmware: amdgpu/dimgrey_cavefish_mec.bin +firmware: amdgpu/dimgrey_cavefish_mec2.bin +firmware: amdgpu/dimgrey_cavefish_pfp.bin +firmware: amdgpu/dimgrey_cavefish_rlc.bin +firmware: amdgpu/dimgrey_cavefish_sdma.bin +firmware: amdgpu/dimgrey_cavefish_smc.bin +firmware: amdgpu/dimgrey_cavefish_sos.bin +firmware: amdgpu/dimgrey_cavefish_ta.bin +firmware: amdgpu/dimgrey_cavefish_vcn.bin +firmware: amdgpu/fiji_ce.bin +firmware: amdgpu/fiji_me.bin +firmware: amdgpu/fiji_mec.bin +firmware: amdgpu/fiji_mec2.bin +firmware: amdgpu/fiji_pfp.bin +firmware: amdgpu/fiji_rlc.bin +firmware: amdgpu/fiji_sdma.bin +firmware: amdgpu/fiji_sdma1.bin +firmware: amdgpu/fiji_smc.bin +firmware: amdgpu/fiji_uvd.bin +firmware: amdgpu/fiji_vce.bin +firmware: amdgpu/green_sardine_asd.bin +firmware: amdgpu/green_sardine_ce.bin +firmware: amdgpu/green_sardine_dmcub.bin +firmware: amdgpu/green_sardine_me.bin +firmware: amdgpu/green_sardine_mec.bin +firmware: amdgpu/green_sardine_mec2.bin +firmware: amdgpu/green_sardine_pfp.bin +firmware: amdgpu/green_sardine_rlc.bin +firmware: amdgpu/green_sardine_sdma.bin +firmware: amdgpu/green_sardine_ta.bin +firmware: amdgpu/green_sardine_vcn.bin +firmware: amdgpu/hainan_ce.bin +firmware: amdgpu/hainan_k_smc.bin +firmware: amdgpu/hainan_mc.bin +firmware: amdgpu/hainan_me.bin +firmware: amdgpu/hainan_pfp.bin +firmware: amdgpu/hainan_rlc.bin +firmware: amdgpu/hainan_smc.bin +firmware: amdgpu/hawaii_ce.bin +firmware: amdgpu/hawaii_k_smc.bin +firmware: amdgpu/hawaii_mc.bin +firmware: amdgpu/hawaii_me.bin +firmware: amdgpu/hawaii_mec.bin +firmware: amdgpu/hawaii_pfp.bin +firmware: amdgpu/hawaii_rlc.bin +firmware: amdgpu/hawaii_sdma.bin +firmware: amdgpu/hawaii_sdma1.bin +firmware: amdgpu/hawaii_smc.bin +firmware: amdgpu/hawaii_uvd.bin +firmware: amdgpu/hawaii_vce.bin +firmware: amdgpu/kabini_ce.bin +firmware: amdgpu/kabini_me.bin +firmware: amdgpu/kabini_mec.bin +firmware: amdgpu/kabini_pfp.bin +firmware: amdgpu/kabini_rlc.bin +firmware: amdgpu/kabini_sdma.bin +firmware: amdgpu/kabini_sdma1.bin +firmware: amdgpu/kabini_uvd.bin +firmware: amdgpu/kabini_vce.bin +firmware: amdgpu/kaveri_ce.bin +firmware: amdgpu/kaveri_me.bin +firmware: amdgpu/kaveri_mec.bin +firmware: amdgpu/kaveri_mec2.bin +firmware: amdgpu/kaveri_pfp.bin +firmware: amdgpu/kaveri_rlc.bin +firmware: amdgpu/kaveri_sdma.bin +firmware: amdgpu/kaveri_sdma1.bin +firmware: amdgpu/kaveri_uvd.bin +firmware: amdgpu/kaveri_vce.bin +firmware: amdgpu/mullins_ce.bin +firmware: amdgpu/mullins_me.bin +firmware: amdgpu/mullins_mec.bin +firmware: amdgpu/mullins_pfp.bin +firmware: amdgpu/mullins_rlc.bin +firmware: amdgpu/mullins_sdma.bin +firmware: amdgpu/mullins_sdma1.bin +firmware: amdgpu/mullins_uvd.bin +firmware: amdgpu/mullins_vce.bin +firmware: amdgpu/navi10_asd.bin +firmware: amdgpu/navi10_ce.bin +firmware: amdgpu/navi10_gpu_info.bin +firmware: amdgpu/navi10_me.bin +firmware: amdgpu/navi10_mec.bin +firmware: amdgpu/navi10_mec2.bin +firmware: amdgpu/navi10_mes.bin +firmware: amdgpu/navi10_pfp.bin +firmware: amdgpu/navi10_rlc.bin +firmware: amdgpu/navi10_sdma.bin +firmware: amdgpu/navi10_sdma1.bin +firmware: amdgpu/navi10_smc.bin +firmware: amdgpu/navi10_sos.bin +firmware: amdgpu/navi10_ta.bin +firmware: amdgpu/navi10_vcn.bin +firmware: amdgpu/navi12_asd.bin +firmware: amdgpu/navi12_ce.bin +firmware: amdgpu/navi12_dmcu.bin +firmware: amdgpu/navi12_gpu_info.bin +firmware: amdgpu/navi12_me.bin +firmware: amdgpu/navi12_mec.bin +firmware: amdgpu/navi12_mec2.bin +firmware: amdgpu/navi12_pfp.bin +firmware: amdgpu/navi12_rlc.bin +firmware: amdgpu/navi12_sdma.bin +firmware: amdgpu/navi12_sdma1.bin +firmware: amdgpu/navi12_smc.bin +firmware: amdgpu/navi12_sos.bin +firmware: amdgpu/navi12_ta.bin +firmware: amdgpu/navi12_vcn.bin +firmware: amdgpu/navi14_asd.bin +firmware: amdgpu/navi14_ce.bin +firmware: amdgpu/navi14_ce_wks.bin +firmware: amdgpu/navi14_gpu_info.bin +firmware: amdgpu/navi14_me.bin +firmware: amdgpu/navi14_me_wks.bin +firmware: amdgpu/navi14_mec.bin +firmware: amdgpu/navi14_mec2.bin +firmware: amdgpu/navi14_mec2_wks.bin +firmware: amdgpu/navi14_mec_wks.bin +firmware: amdgpu/navi14_pfp.bin +firmware: amdgpu/navi14_pfp_wks.bin +firmware: amdgpu/navi14_rlc.bin +firmware: amdgpu/navi14_sdma.bin +firmware: amdgpu/navi14_sdma1.bin +firmware: amdgpu/navi14_smc.bin +firmware: amdgpu/navi14_sos.bin +firmware: amdgpu/navi14_ta.bin +firmware: amdgpu/navi14_vcn.bin +firmware: amdgpu/navy_flounder_ce.bin +firmware: amdgpu/navy_flounder_dmcub.bin +firmware: amdgpu/navy_flounder_me.bin +firmware: amdgpu/navy_flounder_mec.bin +firmware: amdgpu/navy_flounder_mec2.bin +firmware: amdgpu/navy_flounder_pfp.bin +firmware: amdgpu/navy_flounder_rlc.bin +firmware: amdgpu/navy_flounder_sdma.bin +firmware: amdgpu/navy_flounder_smc.bin +firmware: amdgpu/navy_flounder_sos.bin +firmware: amdgpu/navy_flounder_ta.bin +firmware: amdgpu/navy_flounder_vcn.bin +firmware: amdgpu/oland_ce.bin +firmware: amdgpu/oland_k_smc.bin +firmware: amdgpu/oland_mc.bin +firmware: amdgpu/oland_me.bin +firmware: amdgpu/oland_pfp.bin +firmware: amdgpu/oland_rlc.bin +firmware: amdgpu/oland_smc.bin +firmware: amdgpu/oland_uvd.bin +firmware: amdgpu/picasso_asd.bin +firmware: amdgpu/picasso_ce.bin +firmware: amdgpu/picasso_gpu_info.bin +firmware: amdgpu/picasso_me.bin +firmware: amdgpu/picasso_mec.bin +firmware: amdgpu/picasso_mec2.bin +firmware: amdgpu/picasso_pfp.bin +firmware: amdgpu/picasso_rlc.bin +firmware: amdgpu/picasso_rlc_am4.bin +firmware: amdgpu/picasso_sdma.bin +firmware: amdgpu/picasso_ta.bin +firmware: amdgpu/picasso_vcn.bin +firmware: amdgpu/pitcairn_ce.bin +firmware: amdgpu/pitcairn_k_smc.bin +firmware: amdgpu/pitcairn_mc.bin +firmware: amdgpu/pitcairn_me.bin +firmware: amdgpu/pitcairn_pfp.bin +firmware: amdgpu/pitcairn_rlc.bin +firmware: amdgpu/pitcairn_smc.bin +firmware: amdgpu/pitcairn_uvd.bin +firmware: amdgpu/polaris10_ce.bin +firmware: amdgpu/polaris10_ce_2.bin +firmware: amdgpu/polaris10_k2_smc.bin +firmware: amdgpu/polaris10_k_mc.bin +firmware: amdgpu/polaris10_k_smc.bin +firmware: amdgpu/polaris10_mc.bin +firmware: amdgpu/polaris10_me.bin +firmware: amdgpu/polaris10_me_2.bin +firmware: amdgpu/polaris10_mec.bin +firmware: amdgpu/polaris10_mec2.bin +firmware: amdgpu/polaris10_mec2_2.bin +firmware: amdgpu/polaris10_mec_2.bin +firmware: amdgpu/polaris10_pfp.bin +firmware: amdgpu/polaris10_pfp_2.bin +firmware: amdgpu/polaris10_rlc.bin +firmware: amdgpu/polaris10_sdma.bin +firmware: amdgpu/polaris10_sdma1.bin +firmware: amdgpu/polaris10_smc.bin +firmware: amdgpu/polaris10_smc_sk.bin +firmware: amdgpu/polaris10_uvd.bin +firmware: amdgpu/polaris10_vce.bin +firmware: amdgpu/polaris11_ce.bin +firmware: amdgpu/polaris11_ce_2.bin +firmware: amdgpu/polaris11_k2_smc.bin +firmware: amdgpu/polaris11_k_mc.bin +firmware: amdgpu/polaris11_k_smc.bin +firmware: amdgpu/polaris11_mc.bin +firmware: amdgpu/polaris11_me.bin +firmware: amdgpu/polaris11_me_2.bin +firmware: amdgpu/polaris11_mec.bin +firmware: amdgpu/polaris11_mec2.bin +firmware: amdgpu/polaris11_mec2_2.bin +firmware: amdgpu/polaris11_mec_2.bin +firmware: amdgpu/polaris11_pfp.bin +firmware: amdgpu/polaris11_pfp_2.bin +firmware: amdgpu/polaris11_rlc.bin +firmware: amdgpu/polaris11_sdma.bin +firmware: amdgpu/polaris11_sdma1.bin +firmware: amdgpu/polaris11_smc.bin +firmware: amdgpu/polaris11_smc_sk.bin +firmware: amdgpu/polaris11_uvd.bin +firmware: amdgpu/polaris11_vce.bin +firmware: amdgpu/polaris12_32_mc.bin +firmware: amdgpu/polaris12_ce.bin +firmware: amdgpu/polaris12_ce_2.bin +firmware: amdgpu/polaris12_k_mc.bin +firmware: amdgpu/polaris12_k_smc.bin +firmware: amdgpu/polaris12_mc.bin +firmware: amdgpu/polaris12_me.bin +firmware: amdgpu/polaris12_me_2.bin +firmware: amdgpu/polaris12_mec.bin +firmware: amdgpu/polaris12_mec2.bin +firmware: amdgpu/polaris12_mec2_2.bin +firmware: amdgpu/polaris12_mec_2.bin +firmware: amdgpu/polaris12_pfp.bin +firmware: amdgpu/polaris12_pfp_2.bin +firmware: amdgpu/polaris12_rlc.bin +firmware: amdgpu/polaris12_sdma.bin +firmware: amdgpu/polaris12_sdma1.bin +firmware: amdgpu/polaris12_smc.bin +firmware: amdgpu/polaris12_uvd.bin +firmware: amdgpu/polaris12_vce.bin +firmware: amdgpu/raven2_asd.bin +firmware: amdgpu/raven2_ce.bin +firmware: amdgpu/raven2_gpu_info.bin +firmware: amdgpu/raven2_me.bin +firmware: amdgpu/raven2_mec.bin +firmware: amdgpu/raven2_mec2.bin +firmware: amdgpu/raven2_pfp.bin +firmware: amdgpu/raven2_rlc.bin +firmware: amdgpu/raven2_sdma.bin +firmware: amdgpu/raven2_ta.bin +firmware: amdgpu/raven2_vcn.bin +firmware: amdgpu/raven_asd.bin +firmware: amdgpu/raven_ce.bin +firmware: amdgpu/raven_dmcu.bin +firmware: amdgpu/raven_gpu_info.bin +firmware: amdgpu/raven_kicker_rlc.bin +firmware: amdgpu/raven_me.bin +firmware: amdgpu/raven_mec.bin +firmware: amdgpu/raven_mec2.bin +firmware: amdgpu/raven_pfp.bin +firmware: amdgpu/raven_rlc.bin +firmware: amdgpu/raven_sdma.bin +firmware: amdgpu/raven_ta.bin +firmware: amdgpu/raven_vcn.bin +firmware: amdgpu/renoir_asd.bin +firmware: amdgpu/renoir_ce.bin +firmware: amdgpu/renoir_dmcub.bin +firmware: amdgpu/renoir_gpu_info.bin +firmware: amdgpu/renoir_me.bin +firmware: amdgpu/renoir_mec.bin +firmware: amdgpu/renoir_pfp.bin +firmware: amdgpu/renoir_rlc.bin +firmware: amdgpu/renoir_sdma.bin +firmware: amdgpu/renoir_ta.bin +firmware: amdgpu/renoir_vcn.bin +firmware: amdgpu/si58_mc.bin +firmware: amdgpu/sienna_cichlid_ce.bin +firmware: amdgpu/sienna_cichlid_dmcub.bin +firmware: amdgpu/sienna_cichlid_me.bin +firmware: amdgpu/sienna_cichlid_mec.bin +firmware: amdgpu/sienna_cichlid_mec2.bin +firmware: amdgpu/sienna_cichlid_mes.bin +firmware: amdgpu/sienna_cichlid_pfp.bin +firmware: amdgpu/sienna_cichlid_rlc.bin +firmware: amdgpu/sienna_cichlid_sdma.bin +firmware: amdgpu/sienna_cichlid_smc.bin +firmware: amdgpu/sienna_cichlid_sos.bin +firmware: amdgpu/sienna_cichlid_ta.bin +firmware: amdgpu/sienna_cichlid_vcn.bin +firmware: amdgpu/stoney_ce.bin +firmware: amdgpu/stoney_me.bin +firmware: amdgpu/stoney_mec.bin +firmware: amdgpu/stoney_pfp.bin +firmware: amdgpu/stoney_rlc.bin +firmware: amdgpu/stoney_sdma.bin +firmware: amdgpu/stoney_uvd.bin +firmware: amdgpu/stoney_vce.bin +firmware: amdgpu/tahiti_ce.bin +firmware: amdgpu/tahiti_mc.bin +firmware: amdgpu/tahiti_me.bin +firmware: amdgpu/tahiti_pfp.bin +firmware: amdgpu/tahiti_rlc.bin +firmware: amdgpu/tahiti_smc.bin +firmware: amdgpu/tahiti_uvd.bin +firmware: amdgpu/tonga_ce.bin +firmware: amdgpu/tonga_k_smc.bin +firmware: amdgpu/tonga_mc.bin +firmware: amdgpu/tonga_me.bin +firmware: amdgpu/tonga_mec.bin +firmware: amdgpu/tonga_mec2.bin +firmware: amdgpu/tonga_pfp.bin +firmware: amdgpu/tonga_rlc.bin +firmware: amdgpu/tonga_sdma.bin +firmware: amdgpu/tonga_sdma1.bin +firmware: amdgpu/tonga_smc.bin +firmware: amdgpu/tonga_uvd.bin +firmware: amdgpu/tonga_vce.bin +firmware: amdgpu/topaz_ce.bin +firmware: amdgpu/topaz_k_smc.bin +firmware: amdgpu/topaz_mc.bin +firmware: amdgpu/topaz_me.bin +firmware: amdgpu/topaz_mec.bin +firmware: amdgpu/topaz_pfp.bin +firmware: amdgpu/topaz_rlc.bin +firmware: amdgpu/topaz_sdma.bin +firmware: amdgpu/topaz_sdma1.bin +firmware: amdgpu/topaz_smc.bin +firmware: amdgpu/vangogh_asd.bin +firmware: amdgpu/vangogh_ce.bin +firmware: amdgpu/vangogh_dmcub.bin +firmware: amdgpu/vangogh_gpu_info.bin +firmware: amdgpu/vangogh_me.bin +firmware: amdgpu/vangogh_mec.bin +firmware: amdgpu/vangogh_mec2.bin +firmware: amdgpu/vangogh_pfp.bin +firmware: amdgpu/vangogh_rlc.bin +firmware: amdgpu/vangogh_sdma.bin +firmware: amdgpu/vangogh_toc.bin +firmware: amdgpu/vangogh_vcn.bin +firmware: amdgpu/vega10_acg_smc.bin +firmware: amdgpu/vega10_asd.bin +firmware: amdgpu/vega10_ce.bin +firmware: amdgpu/vega10_gpu_info.bin +firmware: amdgpu/vega10_me.bin +firmware: amdgpu/vega10_mec.bin +firmware: amdgpu/vega10_mec2.bin +firmware: amdgpu/vega10_pfp.bin +firmware: amdgpu/vega10_rlc.bin +firmware: amdgpu/vega10_sdma.bin +firmware: amdgpu/vega10_sdma1.bin +firmware: amdgpu/vega10_smc.bin +firmware: amdgpu/vega10_sos.bin +firmware: amdgpu/vega10_uvd.bin +firmware: amdgpu/vega10_vce.bin +firmware: amdgpu/vega12_asd.bin +firmware: amdgpu/vega12_ce.bin +firmware: amdgpu/vega12_gpu_info.bin +firmware: amdgpu/vega12_me.bin +firmware: amdgpu/vega12_mec.bin +firmware: amdgpu/vega12_mec2.bin +firmware: amdgpu/vega12_pfp.bin +firmware: amdgpu/vega12_rlc.bin +firmware: amdgpu/vega12_sdma.bin +firmware: amdgpu/vega12_sdma1.bin +firmware: amdgpu/vega12_smc.bin +firmware: amdgpu/vega12_sos.bin +firmware: amdgpu/vega12_uvd.bin +firmware: amdgpu/vega12_vce.bin +firmware: amdgpu/vega20_asd.bin +firmware: amdgpu/vega20_ce.bin +firmware: amdgpu/vega20_me.bin +firmware: amdgpu/vega20_mec.bin +firmware: amdgpu/vega20_mec2.bin +firmware: amdgpu/vega20_pfp.bin +firmware: amdgpu/vega20_rlc.bin +firmware: amdgpu/vega20_sdma.bin +firmware: amdgpu/vega20_sdma1.bin +firmware: amdgpu/vega20_smc.bin +firmware: amdgpu/vega20_sos.bin +firmware: amdgpu/vega20_ta.bin +firmware: amdgpu/vega20_uvd.bin +firmware: amdgpu/vega20_vce.bin +firmware: amdgpu/vegam_ce.bin +firmware: amdgpu/vegam_me.bin +firmware: amdgpu/vegam_mec.bin +firmware: amdgpu/vegam_mec2.bin +firmware: amdgpu/vegam_pfp.bin +firmware: amdgpu/vegam_rlc.bin +firmware: amdgpu/vegam_sdma.bin +firmware: amdgpu/vegam_sdma1.bin +firmware: amdgpu/vegam_smc.bin +firmware: amdgpu/vegam_uvd.bin +firmware: amdgpu/vegam_vce.bin +firmware: amdgpu/verde_ce.bin +firmware: amdgpu/verde_k_smc.bin +firmware: amdgpu/verde_mc.bin +firmware: amdgpu/verde_me.bin +firmware: amdgpu/verde_pfp.bin +firmware: amdgpu/verde_rlc.bin +firmware: amdgpu/verde_smc.bin +firmware: amdgpu/verde_uvd.bin +firmware: amdgpu/yellow_carp_asd.bin +firmware: amdgpu/yellow_carp_ce.bin +firmware: amdgpu/yellow_carp_dmcub.bin +firmware: amdgpu/yellow_carp_gpu_info.bin +firmware: amdgpu/yellow_carp_me.bin +firmware: amdgpu/yellow_carp_mec.bin +firmware: amdgpu/yellow_carp_mec2.bin +firmware: amdgpu/yellow_carp_pfp.bin +firmware: amdgpu/yellow_carp_rlc.bin +firmware: amdgpu/yellow_carp_sdma.bin +firmware: amdgpu/yellow_carp_ta.bin +firmware: amdgpu/yellow_carp_toc.bin +firmware: amdgpu/yellow_carp_vcn.bin +firmware: ast_dp501_fw.bin +firmware: atmsar11.fw +firmware: bnx2/bnx2-mips-06-6.2.3.fw +firmware: bnx2/bnx2-mips-09-6.2.1b.fw +firmware: bnx2/bnx2-rv2p-06-6.0.15.fw +firmware: bnx2/bnx2-rv2p-09-6.0.17.fw +firmware: bnx2/bnx2-rv2p-09ax-6.0.17.fw +firmware: bnx2x/bnx2x-e1-7.13.15.0.fw +firmware: bnx2x/bnx2x-e1-7.13.21.0.fw +firmware: bnx2x/bnx2x-e1h-7.13.15.0.fw +firmware: bnx2x/bnx2x-e1h-7.13.21.0.fw +firmware: bnx2x/bnx2x-e2-7.13.15.0.fw +firmware: bnx2x/bnx2x-e2-7.13.21.0.fw +firmware: c218tunx.cod +firmware: c320tunx.cod +firmware: cadence/mhdp8546.bin +firmware: cavium/cnn55xx_se.fw +firmware: cbfw-3.2.5.1.bin +firmware: cp204unx.cod +firmware: ct2fw-3.2.5.1.bin +firmware: ctfw-3.2.5.1.bin +firmware: cxgb3/ael2005_opt_edc.bin +firmware: cxgb3/ael2005_twx_edc.bin +firmware: cxgb3/ael2020_twx_edc.bin +firmware: cxgb3/t3b_psram-1.1.0.bin +firmware: cxgb3/t3c_psram-1.1.0.bin +firmware: cxgb3/t3fw-7.12.0.bin +firmware: cxgb4/t4fw.bin +firmware: cxgb4/t5fw.bin +firmware: cxgb4/t6fw.bin +firmware: e100/d101m_ucode.bin +firmware: e100/d101s_ucode.bin +firmware: e100/d102e_ucode.bin +firmware: hfi1_dc8051.fw +firmware: hfi1_fabric.fw +firmware: hfi1_pcie.fw +firmware: hfi1_sbus.fw +firmware: i915/adlp_dmc_ver2_12.bin +firmware: i915/adlp_guc_62.0.3.bin +firmware: i915/adls_dmc_ver2_01.bin +firmware: i915/bxt_dmc_ver1_07.bin +firmware: i915/bxt_guc_62.0.0.bin +firmware: i915/bxt_huc_2.0.0.bin +firmware: i915/cml_guc_62.0.0.bin +firmware: i915/cml_huc_4.0.0.bin +firmware: i915/dg1_dmc_ver2_02.bin +firmware: i915/ehl_guc_62.0.0.bin +firmware: i915/ehl_huc_9.0.0.bin +firmware: i915/glk_dmc_ver1_04.bin +firmware: i915/glk_guc_62.0.0.bin +firmware: i915/glk_huc_4.0.0.bin +firmware: i915/icl_dmc_ver1_09.bin +firmware: i915/icl_guc_62.0.0.bin +firmware: i915/icl_huc_9.0.0.bin +firmware: i915/kbl_dmc_ver1_04.bin +firmware: i915/kbl_guc_62.0.0.bin +firmware: i915/kbl_huc_4.0.0.bin +firmware: i915/rkl_dmc_ver2_03.bin +firmware: i915/skl_dmc_ver1_27.bin +firmware: i915/skl_guc_62.0.0.bin +firmware: i915/skl_huc_2.0.0.bin +firmware: i915/tgl_dmc_ver2_12.bin +firmware: i915/tgl_guc_62.0.0.bin +firmware: i915/tgl_huc_7.9.3.bin +firmware: idt82p33xxx.bin +firmware: imx/sdma/sdma-imx7d.bin +firmware: intel/ice/ddp/ice.pkg +firmware: isci/isci_firmware.bin +firmware: lantiq/xrx200_phy11g_a14.bin +firmware: lantiq/xrx200_phy11g_a22.bin +firmware: lantiq/xrx200_phy22f_a14.bin +firmware: lantiq/xrx200_phy22f_a22.bin +firmware: lantiq/xrx300_phy11g_a21.bin +firmware: lantiq/xrx300_phy22f_a21.bin +firmware: lattice-ecp3.bit +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: netronome/nic_AMDA0058-0011_2x40.nffw +firmware: netronome/nic_AMDA0058-0012_2x40.nffw +firmware: netronome/nic_AMDA0081-0001_1x40.nffw +firmware: netronome/nic_AMDA0081-0001_4x10.nffw +firmware: netronome/nic_AMDA0096-0001_2x10.nffw +firmware: netronome/nic_AMDA0097-0001_2x40.nffw +firmware: netronome/nic_AMDA0097-0001_4x10_1x40.nffw +firmware: netronome/nic_AMDA0097-0001_8x10.nffw +firmware: netronome/nic_AMDA0099-0001_1x10_1x25.nffw +firmware: netronome/nic_AMDA0099-0001_2x10.nffw +firmware: netronome/nic_AMDA0099-0001_2x25.nffw +firmware: nvidia/tegra124/xusb.bin +firmware: nvidia/tegra186/vic04_ucode.bin +firmware: nvidia/tegra186/xusb.bin +firmware: nvidia/tegra194/vic.bin +firmware: nvidia/tegra194/xusb.bin +firmware: nvidia/tegra210/vic04_ucode.bin +firmware: nvidia/tegra210/xusb.bin +firmware: pca200e_ecd.bin2 +firmware: qat_4xxx.bin +firmware: qat_4xxx_mmp.bin +firmware: qat_895xcc.bin +firmware: qat_895xcc_mmp.bin +firmware: qat_c3xxx.bin +firmware: qat_c3xxx_mmp.bin +firmware: qat_c62x.bin +firmware: qat_c62x_mmp.bin +firmware: qcom/a300_pfp.fw +firmware: qcom/a300_pm4.fw +firmware: qcom/a330_pfp.fw +firmware: qcom/a330_pm4.fw +firmware: qcom/a420_pfp.fw +firmware: qcom/a420_pm4.fw +firmware: qcom/a530_pfp.fw +firmware: qcom/a530_pm4.fw +firmware: qcom/a530_zap.b00 +firmware: qcom/a530_zap.b01 +firmware: qcom/a530_zap.b02 +firmware: qcom/a530_zap.mdt +firmware: qcom/a530v3_gpmu.fw2 +firmware: qcom/a630_gmu.bin +firmware: qcom/a630_sqe.fw +firmware: qcom/a630_zap.mbn +firmware: ql2100_fw.bin +firmware: ql2200_fw.bin +firmware: ql2300_fw.bin +firmware: ql2322_fw.bin +firmware: ql2400_fw.bin +firmware: ql2500_fw.bin +firmware: qlogic/1040.bin +firmware: qlogic/12160.bin +firmware: qlogic/1280.bin +firmware: qlogic/sd7220.fw +firmware: r8a779x_usb3_v1.dlmem +firmware: r8a779x_usb3_v2.dlmem +firmware: r8a779x_usb3_v3.dlmem +firmware: radeon/ARUBA_me.bin +firmware: radeon/ARUBA_pfp.bin +firmware: radeon/ARUBA_rlc.bin +firmware: radeon/BARTS_mc.bin +firmware: radeon/BARTS_me.bin +firmware: radeon/BARTS_pfp.bin +firmware: radeon/BARTS_smc.bin +firmware: radeon/BONAIRE_ce.bin +firmware: radeon/BONAIRE_mc.bin +firmware: radeon/BONAIRE_mc2.bin +firmware: radeon/BONAIRE_me.bin +firmware: radeon/BONAIRE_mec.bin +firmware: radeon/BONAIRE_pfp.bin +firmware: radeon/BONAIRE_rlc.bin +firmware: radeon/BONAIRE_sdma.bin +firmware: radeon/BONAIRE_smc.bin +firmware: radeon/BONAIRE_uvd.bin +firmware: radeon/BONAIRE_vce.bin +firmware: radeon/BTC_rlc.bin +firmware: radeon/CAICOS_mc.bin +firmware: radeon/CAICOS_me.bin +firmware: radeon/CAICOS_pfp.bin +firmware: radeon/CAICOS_smc.bin +firmware: radeon/CAYMAN_mc.bin +firmware: radeon/CAYMAN_me.bin +firmware: radeon/CAYMAN_pfp.bin +firmware: radeon/CAYMAN_rlc.bin +firmware: radeon/CAYMAN_smc.bin +firmware: radeon/CEDAR_me.bin +firmware: radeon/CEDAR_pfp.bin +firmware: radeon/CEDAR_rlc.bin +firmware: radeon/CEDAR_smc.bin +firmware: radeon/CYPRESS_me.bin +firmware: radeon/CYPRESS_pfp.bin +firmware: radeon/CYPRESS_rlc.bin +firmware: radeon/CYPRESS_smc.bin +firmware: radeon/CYPRESS_uvd.bin +firmware: radeon/HAINAN_ce.bin +firmware: radeon/HAINAN_mc.bin +firmware: radeon/HAINAN_mc2.bin +firmware: radeon/HAINAN_me.bin +firmware: radeon/HAINAN_pfp.bin +firmware: radeon/HAINAN_rlc.bin +firmware: radeon/HAINAN_smc.bin +firmware: radeon/HAWAII_ce.bin +firmware: radeon/HAWAII_mc.bin +firmware: radeon/HAWAII_mc2.bin +firmware: radeon/HAWAII_me.bin +firmware: radeon/HAWAII_mec.bin +firmware: radeon/HAWAII_pfp.bin +firmware: radeon/HAWAII_rlc.bin +firmware: radeon/HAWAII_sdma.bin +firmware: radeon/HAWAII_smc.bin +firmware: radeon/JUNIPER_me.bin +firmware: radeon/JUNIPER_pfp.bin +firmware: radeon/JUNIPER_rlc.bin +firmware: radeon/JUNIPER_smc.bin +firmware: radeon/KABINI_ce.bin +firmware: radeon/KABINI_me.bin +firmware: radeon/KABINI_mec.bin +firmware: radeon/KABINI_pfp.bin +firmware: radeon/KABINI_rlc.bin +firmware: radeon/KABINI_sdma.bin +firmware: radeon/KAVERI_ce.bin +firmware: radeon/KAVERI_me.bin +firmware: radeon/KAVERI_mec.bin +firmware: radeon/KAVERI_pfp.bin +firmware: radeon/KAVERI_rlc.bin +firmware: radeon/KAVERI_sdma.bin +firmware: radeon/MULLINS_ce.bin +firmware: radeon/MULLINS_me.bin +firmware: radeon/MULLINS_mec.bin +firmware: radeon/MULLINS_pfp.bin +firmware: radeon/MULLINS_rlc.bin +firmware: radeon/MULLINS_sdma.bin +firmware: radeon/OLAND_ce.bin +firmware: radeon/OLAND_mc.bin +firmware: radeon/OLAND_mc2.bin +firmware: radeon/OLAND_me.bin +firmware: radeon/OLAND_pfp.bin +firmware: radeon/OLAND_rlc.bin +firmware: radeon/OLAND_smc.bin +firmware: radeon/PALM_me.bin +firmware: radeon/PALM_pfp.bin +firmware: radeon/PITCAIRN_ce.bin +firmware: radeon/PITCAIRN_mc.bin +firmware: radeon/PITCAIRN_mc2.bin +firmware: radeon/PITCAIRN_me.bin +firmware: radeon/PITCAIRN_pfp.bin +firmware: radeon/PITCAIRN_rlc.bin +firmware: radeon/PITCAIRN_smc.bin +firmware: radeon/R100_cp.bin +firmware: radeon/R200_cp.bin +firmware: radeon/R300_cp.bin +firmware: radeon/R420_cp.bin +firmware: radeon/R520_cp.bin +firmware: radeon/R600_me.bin +firmware: radeon/R600_pfp.bin +firmware: radeon/R600_rlc.bin +firmware: radeon/R600_uvd.bin +firmware: radeon/R700_rlc.bin +firmware: radeon/REDWOOD_me.bin +firmware: radeon/REDWOOD_pfp.bin +firmware: radeon/REDWOOD_rlc.bin +firmware: radeon/REDWOOD_smc.bin +firmware: radeon/RS600_cp.bin +firmware: radeon/RS690_cp.bin +firmware: radeon/RS780_me.bin +firmware: radeon/RS780_pfp.bin +firmware: radeon/RS780_uvd.bin +firmware: radeon/RV610_me.bin +firmware: radeon/RV610_pfp.bin +firmware: radeon/RV620_me.bin +firmware: radeon/RV620_pfp.bin +firmware: radeon/RV630_me.bin +firmware: radeon/RV630_pfp.bin +firmware: radeon/RV635_me.bin +firmware: radeon/RV635_pfp.bin +firmware: radeon/RV670_me.bin +firmware: radeon/RV670_pfp.bin +firmware: radeon/RV710_me.bin +firmware: radeon/RV710_pfp.bin +firmware: radeon/RV710_smc.bin +firmware: radeon/RV710_uvd.bin +firmware: radeon/RV730_me.bin +firmware: radeon/RV730_pfp.bin +firmware: radeon/RV730_smc.bin +firmware: radeon/RV740_smc.bin +firmware: radeon/RV770_me.bin +firmware: radeon/RV770_pfp.bin +firmware: radeon/RV770_smc.bin +firmware: radeon/RV770_uvd.bin +firmware: radeon/SUMO2_me.bin +firmware: radeon/SUMO2_pfp.bin +firmware: radeon/SUMO_me.bin +firmware: radeon/SUMO_pfp.bin +firmware: radeon/SUMO_rlc.bin +firmware: radeon/SUMO_uvd.bin +firmware: radeon/TAHITI_ce.bin +firmware: radeon/TAHITI_mc.bin +firmware: radeon/TAHITI_mc2.bin +firmware: radeon/TAHITI_me.bin +firmware: radeon/TAHITI_pfp.bin +firmware: radeon/TAHITI_rlc.bin +firmware: radeon/TAHITI_smc.bin +firmware: radeon/TAHITI_uvd.bin +firmware: radeon/TAHITI_vce.bin +firmware: radeon/TURKS_mc.bin +firmware: radeon/TURKS_me.bin +firmware: radeon/TURKS_pfp.bin +firmware: radeon/TURKS_smc.bin +firmware: radeon/VERDE_ce.bin +firmware: radeon/VERDE_mc.bin +firmware: radeon/VERDE_mc2.bin +firmware: radeon/VERDE_me.bin +firmware: radeon/VERDE_pfp.bin +firmware: radeon/VERDE_rlc.bin +firmware: radeon/VERDE_smc.bin +firmware: radeon/banks_k_2_smc.bin +firmware: radeon/bonaire_ce.bin +firmware: radeon/bonaire_k_smc.bin +firmware: radeon/bonaire_mc.bin +firmware: radeon/bonaire_me.bin +firmware: radeon/bonaire_mec.bin +firmware: radeon/bonaire_pfp.bin +firmware: radeon/bonaire_rlc.bin +firmware: radeon/bonaire_sdma.bin +firmware: radeon/bonaire_smc.bin +firmware: radeon/bonaire_uvd.bin +firmware: radeon/hainan_ce.bin +firmware: radeon/hainan_k_smc.bin +firmware: radeon/hainan_mc.bin +firmware: radeon/hainan_me.bin +firmware: radeon/hainan_pfp.bin +firmware: radeon/hainan_rlc.bin +firmware: radeon/hainan_smc.bin +firmware: radeon/hawaii_ce.bin +firmware: radeon/hawaii_k_smc.bin +firmware: radeon/hawaii_mc.bin +firmware: radeon/hawaii_me.bin +firmware: radeon/hawaii_mec.bin +firmware: radeon/hawaii_pfp.bin +firmware: radeon/hawaii_rlc.bin +firmware: radeon/hawaii_sdma.bin +firmware: radeon/hawaii_smc.bin +firmware: radeon/kabini_ce.bin +firmware: radeon/kabini_me.bin +firmware: radeon/kabini_mec.bin +firmware: radeon/kabini_pfp.bin +firmware: radeon/kabini_rlc.bin +firmware: radeon/kabini_sdma.bin +firmware: radeon/kaveri_ce.bin +firmware: radeon/kaveri_me.bin +firmware: radeon/kaveri_mec.bin +firmware: radeon/kaveri_mec2.bin +firmware: radeon/kaveri_pfp.bin +firmware: radeon/kaveri_rlc.bin +firmware: radeon/kaveri_sdma.bin +firmware: radeon/mullins_ce.bin +firmware: radeon/mullins_me.bin +firmware: radeon/mullins_mec.bin +firmware: radeon/mullins_pfp.bin +firmware: radeon/mullins_rlc.bin +firmware: radeon/mullins_sdma.bin +firmware: radeon/oland_ce.bin +firmware: radeon/oland_k_smc.bin +firmware: radeon/oland_mc.bin +firmware: radeon/oland_me.bin +firmware: radeon/oland_pfp.bin +firmware: radeon/oland_rlc.bin +firmware: radeon/oland_smc.bin +firmware: radeon/pitcairn_ce.bin +firmware: radeon/pitcairn_k_smc.bin +firmware: radeon/pitcairn_mc.bin +firmware: radeon/pitcairn_me.bin +firmware: radeon/pitcairn_pfp.bin +firmware: radeon/pitcairn_rlc.bin +firmware: radeon/pitcairn_smc.bin +firmware: radeon/si58_mc.bin +firmware: radeon/tahiti_ce.bin +firmware: radeon/tahiti_mc.bin +firmware: radeon/tahiti_me.bin +firmware: radeon/tahiti_pfp.bin +firmware: radeon/tahiti_rlc.bin +firmware: radeon/tahiti_smc.bin +firmware: radeon/verde_ce.bin +firmware: radeon/verde_k_smc.bin +firmware: radeon/verde_mc.bin +firmware: radeon/verde_me.bin +firmware: radeon/verde_pfp.bin +firmware: radeon/verde_rlc.bin +firmware: radeon/verde_smc.bin +firmware: regulatory.db +firmware: regulatory.db.p7s +firmware: rockchip/dptx.bin +firmware: rp2.fw +firmware: rtl_nic/rtl8105e-1.fw +firmware: rtl_nic/rtl8106e-1.fw +firmware: rtl_nic/rtl8106e-2.fw +firmware: rtl_nic/rtl8107e-1.fw +firmware: rtl_nic/rtl8107e-2.fw +firmware: rtl_nic/rtl8125a-3.fw +firmware: rtl_nic/rtl8125b-2.fw +firmware: rtl_nic/rtl8168d-1.fw +firmware: rtl_nic/rtl8168d-2.fw +firmware: rtl_nic/rtl8168e-1.fw +firmware: rtl_nic/rtl8168e-2.fw +firmware: rtl_nic/rtl8168e-3.fw +firmware: rtl_nic/rtl8168f-1.fw +firmware: rtl_nic/rtl8168f-2.fw +firmware: rtl_nic/rtl8168fp-3.fw +firmware: rtl_nic/rtl8168g-2.fw +firmware: rtl_nic/rtl8168g-3.fw +firmware: rtl_nic/rtl8168h-1.fw +firmware: rtl_nic/rtl8168h-2.fw +firmware: rtl_nic/rtl8402-1.fw +firmware: rtl_nic/rtl8411-1.fw +firmware: rtl_nic/rtl8411-2.fw +firmware: slicoss/gbdownload.sys +firmware: slicoss/gbrcvucode.sys +firmware: slicoss/oasisdownload.sys +firmware: slicoss/oasisrcvucode.sys +firmware: solos-FPGA.bin +firmware: solos-Firmware.bin +firmware: solos-db-FPGA.bin +firmware: tigon/tg3.bin +firmware: tigon/tg357766.bin +firmware: tigon/tg3_tso.bin +firmware: tigon/tg3_tso5.bin +firmware: v4l-cx231xx-avcore-01.fw +firmware: v4l-cx23885-avcore-01.fw +firmware: v4l-cx25840.fw +firmware: vxge/X3fw-pxe.ncf +firmware: vxge/X3fw.ncf +firmware: wd719x-risc.bin +firmware: wd719x-wcs.bin diff --git a/debian.azure-5.15/abi/fwinfo.builtin b/debian.azure-5.15/abi/fwinfo.builtin new file mode 100644 index 0000000000000..e69de29bb2d1d diff --git a/debian.azure-5.15/abi/version b/debian.azure-5.15/abi/version new file mode 100644 index 0000000000000..81227ef9b09d8 --- /dev/null +++ b/debian.azure-5.15/abi/version @@ -0,0 +1 @@ +5.15.0-1058.66~20.04.2 diff --git a/debian.azure-5.15/changelog b/debian.azure-5.15/changelog new file mode 100644 index 0000000000000..ff42201e6ced6 --- /dev/null +++ b/debian.azure-5.15/changelog @@ -0,0 +1,21922 @@ +linux-azure-5.15 (5.15.0-1059.67~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1059.67~20.04.1 -proposed tracker + (LP: #2055986) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/s2024.02.05) + + [ Ubuntu: 5.15.0-1059.67 ] + + * jammy/linux-azure: 5.15.0-1059.67 -proposed tracker (LP: #2055987) + * jammy/linux: 5.15.0-101.111 -proposed tracker (LP: #2056026) + * Packaging resync (LP: #1786013) + - [Packaging] update annotations scripts + - debian/dkms-versions -- update from kernel-versions (main/s2024.02.05) + * CVE-2024-24855 + - scsi: lpfc: Fix a possible data race in lpfc_unregister_fcf_rescan() + * CVE-2024-1086 + - netfilter: nf_tables: reject QUEUE/DROP verdict parameters + * CVE-2024-1085 + - netfilter: nf_tables: check if catch-all set element is active in next + generation + * CVE-2023-32247 + - ksmbd: destroy expired sessions + * CVE-2023-23000 + - phy: tegra: xusb: Fix return value of tegra_xusb_find_port_node function + + -- Noah Wager Mon, 11 Mar 2024 15:52:47 -0700 + +linux-azure-5.15 (5.15.0-1058.66~20.04.2) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1058.66~20.04.2 -proposed tracker + (LP: #2052048) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2024.02.05) + + [ Ubuntu: 5.15.0-1058.66 ] + + * jammy/linux-azure: 5.15.0-1058.66 -proposed tracker (LP: #2052049) + * Azure: Enable CONFIG_TEST_LOCKUP (LP: #2052723) + - [Config] CONFIG_TEST_LOCKUP=m + * jammy/linux: 5.15.0-100.110 -proposed tracker (LP: #2052616) + * i915 regression introduced with 5.5 kernel (LP: #2044131) + - drm/i915: Skip some timing checks on BXT/GLK DSI transcoders + * Audio balancing setting doesn't work with the cirrus codec (LP: #2051050) + - ALSA: hda/cs8409: Suppress vmaster control for Dolphin models + * partproke is broken on empty loopback device (LP: #2049689) + - block: Move checking GENHD_FL_NO_PART to bdev_add_partition() + * CVE-2023-0340 + - vhost: use kzalloc() instead of kmalloc() followed by memset() + * CVE-2023-51780 + - atm: Fix Use-After-Free in do_vcc_ioctl + * CVE-2023-6915 + - ida: Fix crash in ida_free when the bitmap is empty + * CVE-2024-0646 + - net: tls, update curr on splice as well + * CVE-2024-0565 + - smb: client: fix OOB in receive_encrypted_standard() + * CVE-2023-51781 + - appletalk: Fix Use-After-Free in atalk_ioctl + * Jammy update: v5.15.143 upstream stable release (LP: #2050858) + - vdpa/mlx5: preserve CVQ vringh index + - hrtimers: Push pending hrtimers away from outgoing CPU earlier + - i2c: designware: Fix corrupted memory seen in the ISR + - netfilter: ipset: fix race condition between swap/destroy and kernel side + add/del/test + - tg3: Move the [rt]x_dropped counters to tg3_napi + - tg3: Increment tx_dropped in tg3_tso_bug() + - kconfig: fix memory leak from range properties + - drm/amdgpu: correct chunk_ptr to a pointer to chunk. + - platform/x86: asus-wmi: Adjust tablet/lidflip handling to use enum + - platform/x86: asus-wmi: Add support for ROG X13 tablet mode + - platform/x86: asus-wmi: Simplify tablet-mode-switch probing + - platform/x86: asus-wmi: Simplify tablet-mode-switch handling + - platform/x86: asus-wmi: Move i8042 filter install to shared asus-wmi code + - of: dynamic: Fix of_reconfig_get_state_change() return value documentation + - platform/x86: wmi: Allow duplicate GUIDs for drivers that use struct + wmi_driver + - platform/x86: wmi: Skip blocks with zero instances + - ipv6: fix potential NULL deref in fib6_add() + - octeontx2-pf: Add missing mutex lock in otx2_get_pauseparam + - octeontx2-af: Check return value of nix_get_nixlf before using nixlf + - hv_netvsc: rndis_filter needs to select NLS + - r8152: Rename RTL8152_UNPLUG to RTL8152_INACCESSIBLE + - r8152: Add RTL8152_INACCESSIBLE checks to more loops + - r8152: Add RTL8152_INACCESSIBLE to r8156b_wait_loading_flash() + - r8152: Add RTL8152_INACCESSIBLE to r8153_pre_firmware_1() + - r8152: Add RTL8152_INACCESSIBLE to r8153_aldps_en() + - mlxbf-bootctl: correctly identify secure boot with development keys + - platform/mellanox: Add null pointer checks for devm_kasprintf() + - platform/mellanox: Check devm_hwmon_device_register_with_groups() return + value + - arcnet: restoring support for multiple Sohard Arcnet cards + - net: stmmac: fix FPE events losing + - octeontx2-af: fix a use-after-free in rvu_npa_register_reporters + - i40e: Fix unexpected MFS warning message + - net: bnxt: fix a potential use-after-free in bnxt_init_tc + - ionic: fix snprintf format length warning + - ionic: Fix dim work handling in split interrupt mode + - ipv4: ip_gre: Avoid skb_pull() failure in ipgre_xmit() + - net: hns: fix fake link up on xge port + - octeontx2-af: Update Tx link register range + - netfilter: nf_tables: validate family when identifying table via handle + - netfilter: xt_owner: Fix for unsafe access of sk->sk_socket + - tcp: do not accept ACK of bytes we never sent + - bpf: sockmap, updating the sg structure should also update curr + - psample: Require 'CAP_NET_ADMIN' when joining "packets" group + - net: add missing kdoc for struct genl_multicast_group::flags + - drop_monitor: Require 'CAP_SYS_ADMIN' when joining "events" group + - tee: optee: Fix supplicant based device enumeration + - RDMA/hns: Fix unnecessary err return when using invalid congest control + algorithm + - RDMA/irdma: Do not modify to SQD on error + - RDMA/irdma: Add wait for suspend on SQD + - arm64: dts: rockchip: Expand reg size of vdec node for RK3399 + - RDMA/rtrs-srv: Do not unconditionally enable irq + - RDMA/rtrs-clt: Start hb after path_up + - RDMA/rtrs-srv: Check return values while processing info request + - RDMA/rtrs-srv: Free srv_mr iu only when always_invalidate is true + - RDMA/rtrs-srv: Destroy path files after making sure no IOs in-flight + - RDMA/rtrs-clt: Fix the max_send_wr setting + - RDMA/rtrs-clt: Remove the warnings for req in_use check + - RDMA/bnxt_re: Correct module description string + - hwmon: (acpi_power_meter) Fix 4.29 MW bug + - hwmon: (nzxt-kraken2) Fix error handling path in kraken2_probe() + - ASoC: wm_adsp: fix memleak in wm_adsp_buffer_populate + - RDMA/core: Fix umem iterator when PAGE_SIZE is greater then HCA pgsz + - RDMA/irdma: Avoid free the non-cqp_request scratch + - arm64: dts: imx8mq: drop usb3-resume-missing-cas from usb + - arm64: dts: imx8mp: imx8mq: Add parkmode-disable-ss-quirk on DWC3 + - ARM: dts: imx6ul-pico: Describe the Ethernet PHY clock + - tracing: Fix a warning when allocating buffered events fails + - scsi: be2iscsi: Fix a memleak in beiscsi_init_wrb_handle() + - ARM: imx: Check return value of devm_kasprintf in imx_mmdc_perf_init + - ARM: dts: imx7: Declare timers compatible with fsl,imx6dl-gpt + - ARM: dts: imx28-xea: Pass the 'model' property + - riscv: fix misaligned access handling of C.SWSP and C.SDSP + - md: introduce md_ro_state + - md: don't leave 'MD_RECOVERY_FROZEN' in error path of md_set_readonly() + - kprobes: consistent rcu api usage for kretprobe holder + - nvme-pci: Add sleep quirk for Kingston drives + - io_uring: fix mutex_unlock with unreferenced ctx + - ALSA: usb-audio: Add Pioneer DJM-450 mixer controls + - ALSA: pcm: fix out-of-bounds in snd_pcm_state_names + - nilfs2: fix missing error check for sb_set_blocksize call + - nilfs2: prevent WARNING in nilfs_sufile_set_segment_usage() + - checkstack: fix printed address + - tracing: Always update snapshot buffer size + - tracing: Disable snapshot buffer when stopping instance tracers + - tracing: Fix incomplete locking when disabling buffered events + - tracing: Fix a possible race when disabling buffered events + - packet: Move reference count in packet_sock to atomic_long_t + - regmap: fix bogus error on regcache_sync success + - platform/surface: aggregator: fix recv_buf() return value + - arm64: dts: mediatek: mt7622: fix memory node warning check + - arm64: dts: mediatek: mt8183-kukui-jacuzzi: fix dsi unnecessary cells + properties + - arm64: dts: mediatek: mt8173-evb: Fix regulator-fixed node names + - arm64: dts: mediatek: mt8183: Fix unit address for scp reserved memory + - binder: fix memory leaks of spam and pending work + - kallsyms: Make kallsyms_on_each_symbol generally available + - coresight: etm4x: Make etm4_remove_dev() return void + - coresight: etm4x: Remove bogous __exit annotation for some functions + - misc: mei: client.c: return negative error code in mei_cl_write + - misc: mei: client.c: fix problem of return '-EOVERFLOW' in mei_cl_write + - ring-buffer: Force absolute timestamp on discard of event + - tracing: Set actual size after ring buffer resize + - tracing: Stop current tracer when resizing buffer + - r8169: fix rtl8125b PAUSE frames blasting when suspended + - mm: fix oops when filemap_map_pmd() without prealloc_pte + - io_uring/af_unix: disable sending io_uring over sockets + - platform/x86: asus-wmi: Fix kbd_dock_devid tablet-switch reporting + - docs/process/howto: Replace C89 with C11 + - tools headers UAPI: Sync linux/perf_event.h with the kernel sources + - arm64: dts: mediatek: align thermal zone node names with dtschema + - arm64: dts: mediatek: mt8183: Move thermal-zones to the root node + - arm64: dts: mediatek: add missing space before { + - arm64: dts: mt8183: kukui: Fix underscores in node names + - gpiolib: sysfs: Fix error handling on failed export + - drm/amd/amdgpu: Fix warnings in amdgpu/amdgpu_display.c + - drm/amdgpu: correct the amdgpu runtime dereference usage count + - usb: gadget: f_hid: fix report descriptor allocation + - parport: Add support for Brainboxes IX/UC/PX parallel cards + - usb: typec: class: fix typec_altmode_put_partner to put plugs + - ARM: PL011: Fix DMA support + - serial: sc16is7xx: address RX timeout interrupt errata + - serial: 8250: 8250_omap: Clear UART_HAS_RHR_IT_DIS bit + - serial: 8250: 8250_omap: Do not start RX DMA on THRI interrupt + - serial: 8250_omap: Add earlycon support for the AM654 UART controller + - x86/CPU/AMD: Check vendor in the AMD microcode callback + - KVM: s390/mm: Properly reset no-dat + - KVM: SVM: Update EFER software model on CR0 trap for SEV-ES + - MIPS: Loongson64: Reserve vgabios memory on boot + - MIPS: Loongson64: Enable DMA noncoherent support + - cifs: Fix non-availability of dedup breaking generic/304 + - smb: client: fix potential NULL deref in parse_dfs_referrals() + - devcoredump : Serialize devcd_del work + - devcoredump: Send uevent once devcd is ready + - Linux 5.15.143 + * Intel E810-XXV - NETDEV WATCHDOG: (ice): transmit queue timed out + (LP: #2036239) + - ice: Add feature bitmap, helpers and a check for DSCP + - ice: Add driver support for firmware changes for LAG + - ice: alter feature support check for SRIOV and LAG + * Don't WARN_ON_ONCE() for a broken discovery table (LP: #2048404) + - perf/x86/uncore: Don't WARN_ON_ONCE() for a broken discovery table + * Reject connection when malformed L2CAP signal packet is received + (LP: #2047634) + - Bluetooth: L2CAP: Send reject on command corrupted request + * Jammy update: v5.15.142 upstream stable release (LP: #2050849) + - pinctrl: avoid reload of p state in list iteration + - firewire: core: fix possible memory leak in create_units() + - mmc: cqhci: Increase recovery halt timeout + - mmc: cqhci: Warn of halt or task clear failure + - mmc: cqhci: Fix task clearing in CQE error recovery + - mmc: block: Retry commands in CQE error recovery + - mmc: block: Do not lose cache flush during CQE error recovery + - mmc: block: Be sure to wait while busy in CQE error recovery + - ALSA: hda: Disable power-save on KONTRON SinglePC + - ALSA: hda/realtek: Headset Mic VREF to 100% + - ALSA: hda/realtek: Add supported ALC257 for ChromeOS + - dm-verity: align struct dm_verity_fec_io properly + - dm verity: don't perform FEC for failed readahead IO + - bcache: revert replacing IS_ERR_OR_NULL with IS_ERR + - iommu/vt-d: Add MTL to quirk list to skip TE disabling + - powerpc: Don't clobber f0/vs0 during fp|altivec register save + - parisc: Drop the HP-UX ENOSYM and EREMOTERELEASE error codes + - btrfs: ref-verify: fix memory leaks in btrfs_ref_tree_mod() + - btrfs: fix off-by-one when checking chunk map includes logical address + - btrfs: send: ensure send_fd is writable + - btrfs: make error messages more clear when getting a chunk map + - Input: xpad - add HyperX Clutch Gladiate Support + - vlan: introduce vlan_dev_free_egress_priority + - vlan: move dev_put into vlan_dev_uninit + - rcu: Avoid tracing a few functions executed in stop machine + - hv_netvsc: fix race of netvsc and VF register_netdevice + - USB: core: Change configuration warnings to notices + - usb: config: fix iteration issue in 'usb_get_bos_descriptor()' + - dpaa2-eth: increase the needed headroom to account for alignment + - uapi: propagate __struct_group() attributes to the container union + - selftests/net: ipsec: fix constant out of range + - octeontx2-af: Fix possible buffer overflow + - net: stmmac: xgmac: Disable FPE MMC interrupts + - octeontx2-pf: Fix adding mbox work queue entry when num_vfs > 64 + - Revert "workqueue: remove unused cancel_work()" + - r8169: prevent potential deadlock in rtl8169_close + - ravb: Fix races between ravb_tx_timeout_work() and net related ops + - net: ravb: Check return value of reset_control_deassert() + - net: ravb: Use pm_runtime_resume_and_get() + - net: ravb: Start TX queues after HW initialization succeeded + - net: ravb: Stop DMA in case of failures on ravb_open() + - perf intel-pt: Fix async branch flags + - selftests/resctrl: Add missing SPDX license to Makefile + - selftests/resctrl: Move _GNU_SOURCE define into Makefile + - smb3: fix touch -h of symlink + - ASoC: Intel: Move soc_intel_is_foo() helpers to a generic header + - ASoC: SOF: sof-pci-dev: use community key on all Up boards + - ASoC: SOF: sof-pci-dev: add parameter to override topology filename + - ASoC: SOF: sof-pci-dev: don't use the community key on APL Chromebooks + - ASoC: SOF: sof-pci-dev: Fix community key quirk detection + - fbdev: stifb: Make the STI next font pointer a 32-bit signed offset + - fs: add ctime accessors infrastructure + - smb3: fix caching of ctime on setxattr + - cpufreq: imx6q: don't warn for disabling a non-existing frequency + - cpufreq: imx6q: Don't disable 792 Mhz OPP unnecessarily + - iommu/vt-d: Omit devTLB invalidation requests when TES=0 + - iommu/vt-d: Make context clearing consistent with context mapping + - mmc: core: add helpers mmc_regulator_enable/disable_vqmmc + - mmc: sdhci-sprd: Fix vqmmc not shutting down after the card was pulled + - r8169: disable ASPM in case of tx timeout + - r8169: fix deadlock on RTL8125 in jumbo mtu mode + - iomap: update ki_pos a little later in iomap_dio_complete + - Linux 5.15.142 + * Jammy update: v5.15.141 upstream stable release (LP: #2050044) + - afs: Fix afs_server_list to be cleaned up with RCU + - afs: Make error on cell lookup failure consistent with OpenAFS + - drm/panel: boe-tv101wum-nl6: Fine tune the panel power sequence + - drm/panel: auo,b101uan08.3: Fine tune the panel power sequence + - drm/panel: simple: Fix Innolux G101ICE-L01 bus flags + - drm/panel: simple: Fix Innolux G101ICE-L01 timings + - wireguard: use DEV_STATS_INC() + - octeontx2-pf: Fix memory leak during interface down + - ata: pata_isapnp: Add missing error check for devm_ioport_map() + - drm/rockchip: vop: Fix color for RGB888/BGR888 format on VOP full + - HID: core: store the unique system identifier in hid_device + - HID: fix HID device resource race between HID core and debugging support + - ipv4: Correct/silence an endian warning in __ip_do_redirect + - net: usb: ax88179_178a: fix failed operations during ax88179_reset + - net/smc: avoid data corruption caused by decline + - arm/xen: fix xen_vcpu_info allocation alignment + - octeontx2-pf: Fix ntuple rule creation to direct packet to VF with higher Rx + queue than its PF + - amd-xgbe: handle corner-case during sfp hotplug + - amd-xgbe: handle the corner-case during tx completion + - amd-xgbe: propagate the correct speed and duplex status + - net: axienet: Fix check for partial TX checksum + - afs: Return ENOENT if no cell DNS record can be found + - afs: Fix file locking on R/O volumes to operate in local mode + - nvmet: nul-terminate the NQNs passed in the connect command + - USB: dwc3: qcom: fix resource leaks on probe deferral + - USB: dwc3: qcom: fix ACPI platform device leak + - lockdep: Fix block chain corruption + - MIPS: KVM: Fix a build warning about variable set but not used + - media: camss: Replace hard coded value with parameter + - media: camss: sm8250: Virtual channels for CSID + - media: qcom: camss: Fix set CSI2_RX_CFG1_VC_MODE when VC is greater than 3 + - media: qcom: camss: Fix csid-gen2 for test pattern generator + - ext4: add a new helper to check if es must be kept + - ext4: factor out __es_alloc_extent() and __es_free_extent() + - ext4: use pre-allocated es in __es_insert_extent() + - ext4: use pre-allocated es in __es_remove_extent() + - ext4: using nofail preallocation in ext4_es_remove_extent() + - ext4: using nofail preallocation in ext4_es_insert_delayed_block() + - ext4: using nofail preallocation in ext4_es_insert_extent() + - ext4: fix slab-use-after-free in ext4_es_insert_extent() + - ext4: make sure allocate pending entry not fail + - proc: sysctl: prevent aliased sysctls from getting passed to init + - ACPI: resource: Skip IRQ override on ASUS ExpertBook B1402CVA + - swiotlb-xen: provide the "max_mapping_size" method + - bcache: replace a mistaken IS_ERR() by IS_ERR_OR_NULL() in + btree_gc_coalesce() + - md: fix bi_status reporting in md_end_clone_io + - bcache: fixup multi-threaded bch_sectors_dirty_init() wake-up race + - io_uring/fs: consider link->flags when getting path for LINKAT + - s390/dasd: protect device queue against concurrent access + - USB: serial: option: add Luat Air72*U series products + - hv_netvsc: Fix race of register_netdevice_notifier and VF register + - hv_netvsc: Mark VF as slave before exposing it to user-mode + - dm-delay: fix a race between delay_presuspend and delay_bio + - bcache: check return value from btree_node_alloc_replacement() + - bcache: prevent potential division by zero error + - bcache: fixup init dirty data errors + - bcache: fixup lock c->root error + - usb: cdnsp: Fix deadlock issue during using NCM gadget + - USB: serial: option: add Fibocom L7xx modules + - USB: serial: option: fix FM101R-GL defines + - USB: serial: option: don't claim interface 4 for ZTE MF290 + - usb: typec: tcpm: Skip hard reset when in error recovery + - USB: dwc2: write HCINT with INTMASK applied + - usb: dwc3: Fix default mode initialization + - usb: dwc3: set the dma max_seg_size + - USB: dwc3: qcom: fix software node leak on probe errors + - USB: dwc3: qcom: fix wakeup after probe deferral + - io_uring: fix off-by one bvec index + - Linux 5.15.141 + * Jammy update: v5.15.140 upstream stable release (LP: #2050038) + - locking/ww_mutex/test: Fix potential workqueue corruption + - perf/core: Bail out early if the request AUX area is out of bound + - clocksource/drivers/timer-imx-gpt: Fix potential memory leak + - clocksource/drivers/timer-atmel-tcb: Fix initialization on SAM9 hardware + - workqueue: Provide one lock class key per work_on_cpu() callsite + - x86/mm: Drop the 4 MB restriction on minimal NUMA node memory size + - wifi: mac80211_hwsim: fix clang-specific fortify warning + - wifi: mac80211: don't return unset power in ieee80211_get_tx_power() + - atl1c: Work around the DMA RX overflow issue + - bpf: Detect IP == ksym.end as part of BPF program + - wifi: ath9k: fix clang-specific fortify warnings + - wifi: ath10k: fix clang-specific fortify warning + - net: annotate data-races around sk->sk_tx_queue_mapping + - net: annotate data-races around sk->sk_dst_pending_confirm + - wifi: ath10k: Don't touch the CE interrupt registers after power up + - Bluetooth: btusb: Add date->evt_skb is NULL check + - Bluetooth: Fix double free in hci_conn_cleanup + - platform/x86: thinkpad_acpi: Add battery quirk for Thinkpad X120e + - drm/komeda: drop all currently held locks if deadlock happens + - drm/amdkfd: Fix a race condition of vram buffer unref in svm code + - drm/amd/display: use full update for clip size increase of large plane + source + - string.h: add array-wrappers for (v)memdup_user() + - kernel: kexec: copy user-array safely + - kernel: watch_queue: copy user-array safely + - drm: vmwgfx_surface.c: copy user-array safely + - drm/msm/dp: skip validity check for DP CTS EDID checksum + - drm/amd: Fix UBSAN array-index-out-of-bounds for SMU7 + - drm/amd: Fix UBSAN array-index-out-of-bounds for Polaris and Tonga + - drm/amdgpu: Fix potential null pointer derefernce + - drm/panel: fix a possible null pointer dereference + - drm/panel/panel-tpo-tpg110: fix a possible null pointer dereference + - drm/amdgpu/vkms: fix a possible null pointer dereference + - drm/panel: st7703: Pick different reset sequence + - drm/amdkfd: Fix shift out-of-bounds issue + - drm/amdgpu: Fix a null pointer access when the smc_rreg pointer is NULL + - arm64: dts: ls208xa: use a pseudo-bus to constrain usb dma size + - selftests/efivarfs: create-read: fix a resource leak + - ASoC: soc-card: Add storage for PCI SSID + - crypto: pcrypt - Fix hungtask for PADATA_RESET + - RDMA/hfi1: Use FIELD_GET() to extract Link Width + - scsi: hisi_sas: Set debugfs_dir pointer to NULL after removing debugfs + - scsi: ibmvfc: Remove BUG_ON in the case of an empty event pool + - fs/jfs: Add check for negative db_l2nbperpage + - fs/jfs: Add validity check for db_maxag and db_agpref + - jfs: fix array-index-out-of-bounds in dbFindLeaf + - jfs: fix array-index-out-of-bounds in diAlloc + - HID: lenovo: Detect quirk-free fw on cptkbd and stop applying workaround + - ARM: 9320/1: fix stack depot IRQ stack filter + - ALSA: hda: Fix possible null-ptr-deref when assigning a stream + - PCI: tegra194: Use FIELD_GET()/FIELD_PREP() with Link Width fields + - atm: iphase: Do PCI error checks on own line + - scsi: libfc: Fix potential NULL pointer dereference in fc_lport_ptp_setup() + - PCI: Use FIELD_GET() to extract Link Width + - PCI: Extract ATS disabling to a helper function + - PCI: Disable ATS for specific Intel IPU E2000 devices + - misc: pci_endpoint_test: Add Device ID for R-Car S4-8 PCIe controller + - PCI: Use FIELD_GET() in Sapphire RX 5600 XT Pulse quirk + - HID: Add quirk for Dell Pro Wireless Keyboard and Mouse KM5221W + - exfat: support handle zero-size directory + - tty: vcc: Add check for kstrdup() in vcc_probe() + - usb: gadget: f_ncm: Always set current gadget in ncm_bind() + - 9p/trans_fd: Annotate data-racy writes to file::f_flags + - 9p: v9fs_listxattr: fix %s null argument warning + - i3c: mipi-i3c-hci: Fix out of bounds access in hci_dma_irq_handler + - i2c: sun6i-p2wi: Prevent potential division by zero + - virtio-blk: fix implicit overflow on virtio_max_dma_size + - i3c: master: mipi-i3c-hci: Fix a kernel panic for accessing DAT_data. + - media: gspca: cpia1: shift-out-of-bounds in set_flicker + - media: vivid: avoid integer overflow + - gfs2: ignore negated quota changes + - gfs2: fix an oops in gfs2_permission + - media: cobalt: Use FIELD_GET() to extract Link Width + - media: ccs: Fix driver quirk struct documentation + - media: imon: fix access to invalid resource for the second interface + - drm/amd/display: Avoid NULL dereference of timing generator + - kgdb: Flush console before entering kgdb on panic + - i2c: dev: copy userspace array safely + - ASoC: ti: omap-mcbsp: Fix runtime PM underflow warnings + - drm/qxl: prevent memory leak + - drm/amdgpu: fix software pci_unplug on some chips + - pwm: Fix double shift bug + - wifi: iwlwifi: Use FW rate for non-data frames + - tracing: Reuse logic from perf's get_recursion_context() + - tracing/perf: Add interrupt_context_level() helper + - sched/core: Optimize in_task() and in_interrupt() a bit + - media: cadence: csi2rx: Unregister v4l2 async notifier + - media: cec: meson: always include meson sub-directory in Makefile + - SUNRPC: ECONNRESET might require a rebind + - SUNRPC: Add an IS_ERR() check back to where it was + - NFSv4.1: fix SP4_MACH_CRED protection for pnfs IO + - SUNRPC: Fix RPC client cleaned up the freed pipefs dentries + - gfs2: Silence "suspicious RCU usage in gfs2_permission" warning + - mptcp: diag: switch to context structure + - mptcp: listen diag dump support + - net: inet: Remove count from inet_listen_hashbucket + - net: inet: Open code inet_hash2 and inet_unhash2 + - net: inet: Retire port only listening_hash + - net: set SOCK_RCU_FREE before inserting socket into hashtable + - ipvlan: add ipvlan_route_v6_outbound() helper + - tty: Fix uninit-value access in ppp_sync_receive() + - net: hns3: fix add VLAN fail issue + - net: hns3: refine the definition for struct hclge_pf_to_vf_msg + - net: hns3: add byte order conversion for PF to VF mailbox message + - net: hns3: add barrier in vf mailbox reply process + - net: hns3: fix incorrect capability bit display for copper port + - net: hns3: fix variable may not initialized problem in hns3_init_mac_addr() + - net: hns3: fix VF reset fail issue + - net: hns3: fix VF wrong speed and duplex issue + - tipc: Fix kernel-infoleak due to uninitialized TLV value + - ppp: limit MRU to 64K + - xen/events: fix delayed eoi list handling + - ptp: annotate data-race around q->head and q->tail + - bonding: stop the device in bond_setup_by_slave() + - net: ethernet: cortina: Fix max RX frame define + - net: ethernet: cortina: Handle large frames + - net: ethernet: cortina: Fix MTU max setting + - af_unix: fix use-after-free in unix_stream_read_actor() + - netfilter: nf_conntrack_bridge: initialize err to 0 + - netfilter: nf_tables: use the correct get/put helpers + - netfilter: nf_tables: add and use BE register load-store helpers + - netfilter: nf_tables: fix pointer math issue in nft_byteorder_eval() + - net: stmmac: fix rx budget limit check + - net/mlx5e: Remove incorrect addition of action fwd flag + - net/mlx5e: Move mod hdr allocation to a single place + - net/mlx5e: Refactor mod header management API + - net/mlx5e: Fix pedit endianness + - net/mlx5e: Reduce the size of icosq_str + - net/mlx5e: Check return value of snprintf writing to fw_version buffer for + representors + - macvlan: Don't propagate promisc change to lower dev in passthru + - tools/power/turbostat: Fix a knl bug + - tools/power/turbostat: Enable the C-state Pre-wake printing + - cifs: spnego: add ';' in HOST_KEY_LEN + - cifs: fix check of rc in function generate_smb3signingkey + - xfs: refactor buffer cancellation table allocation + - xfs: don't leak xfs_buf_cancel structures when recovery fails + - xfs: convert buf_cancel_table allocation to kmalloc_array + - xfs: use invalidate_lock to check the state of mmap_lock + - xfs: prevent a UAF when log IO errors race with unmount + - xfs: flush inode gc workqueue before clearing agi bucket + - xfs: fix use-after-free in xattr node block inactivation + - xfs: don't leak memory when attr fork loading fails + - xfs: fix intermittent hang during quotacheck + - xfs: add missing cmap->br_state = XFS_EXT_NORM update + - xfs: Fix false ENOSPC when performing direct write on a delalloc extent in + cow fork + - xfs: fix inode reservation space for removing transaction + - xfs: avoid a UAF when log intent item recovery fails + - xfs: fix exception caused by unexpected illegal bestcount in leaf dir + - xfs: fix memory leak in xfs_errortag_init + - xfs: Fix unreferenced object reported by kmemleak in xfs_sysfs_init() + - i915/perf: Fix NULL deref bugs with drm_dbg() calls + - media: venus: hfi: add checks to perform sanity on queue pointers + - powerpc/perf: Fix disabling BHRB and instruction sampling + - randstruct: Fix gcc-plugin performance mode to stay in group + - bpf: Fix check_stack_write_fixed_off() to correctly spill imm + - bpf: Fix precision tracking for BPF_ALU | BPF_TO_BE | BPF_END + - scsi: mpt3sas: Fix loop logic + - scsi: megaraid_sas: Increase register read retry rount from 3 to 30 for + selected registers + - scsi: qla2xxx: Fix system crash due to bad pointer access + - crypto: x86/sha - load modules based on CPU features + - x86/cpu/hygon: Fix the CPU topology evaluation for real + - KVM: x86: hyper-v: Don't auto-enable stimer on write from user-space + - KVM: x86: Ignore MSR_AMD64_TW_CFG access + - audit: don't take task_lock() in audit_exe_compare() code path + - audit: don't WARN_ON_ONCE(!current->mm) in audit_exe_compare() + - tty/sysrq: replace smp_processor_id() with get_cpu() + - hvc/xen: fix console unplug + - hvc/xen: fix error path in xen_hvc_init() to always register frontend driver + - hvc/xen: fix event channel handling for secondary consoles + - PCI/sysfs: Protect driver's D3cold preference from user space + - watchdog: move softlockup_panic back to early_param + - ACPI: resource: Do IRQ override on TongFang GMxXGxx + - arm64: Restrict CPU_BIG_ENDIAN to GNU as or LLVM IAS 15.x or newer + - parisc/pdc: Add width field to struct pdc_model + - clk: socfpga: Fix undefined behavior bug in struct stratix10_clock_data + - clk: qcom: ipq8074: drop the CLK_SET_RATE_PARENT flag from PLL clocks + - clk: qcom: ipq6018: drop the CLK_SET_RATE_PARENT flag from PLL clocks + - mmc: vub300: fix an error code + - mmc: sdhci_am654: fix start loop index for TAP value parsing + - PCI/ASPM: Fix L1 substate handling in aspm_attr_store_common() + - PCI: exynos: Don't discard .remove() callback + - wifi: wilc1000: use vmm_table as array in wilc struct + - svcrdma: Drop connection after an RDMA Read error + - rcu/tree: Defer setting of jiffies during stall reset + - arm64: dts: qcom: ipq6018: Fix hwlock index for SMEM + - PM: hibernate: Use __get_safe_page() rather than touching the list + - PM: hibernate: Clean up sync_read handling in snapshot_write_next() + - rcu: kmemleak: Ignore kmemleak false positives when RCU-freeing objects + - btrfs: don't arbitrarily slow down delalloc if we're committing + - firmware: qcom_scm: use 64-bit calling convention only when client is 64-bit + - ACPI: FPDT: properly handle invalid FPDT subtables + - ima: annotate iint mutex to avoid lockdep false positive warnings + - ima: detect changes to the backing overlay file + - wifi: ath11k: fix temperature event locking + - wifi: ath11k: fix dfs radar event locking + - wifi: ath11k: fix htt pktlog locking + - mmc: meson-gx: Remove setting of CMD_CFG_ERROR + - genirq/generic_chip: Make irq_remove_generic_chip() irqdomain aware + - KEYS: trusted: Rollback init_trusted() consistently + - PCI: keystone: Don't discard .remove() callback + - PCI: keystone: Don't discard .probe() callback + - netfilter: nf_tables: split async and sync catchall in two functions + - selftests/resctrl: Remove duplicate feature check from CMT test + - selftests/resctrl: Reduce failures due to outliers in MBA/MBM tests + - ASoC: codecs: wsa-macro: fix uninitialized stack variables with name prefix + - jbd2: fix potential data lost in recovering journal raced with synchronizing + fs bdev + - quota: explicitly forbid quota files from being encrypted + - kernel/reboot: emergency_restart: Set correct system_state + - i2c: core: Run atomic i2c xfer when !preemptible + - tracing: Have the user copy of synthetic event address use correct context + - mcb: fix error handling for different scenarios when parsing + - dmaengine: stm32-mdma: correct desc prep when channel running + - s390/cmma: fix detection of DAT pages + - mm/cma: use nth_page() in place of direct struct page manipulation + - mm/memory_hotplug: use pfn math in place of direct struct page manipulation + - mtd: cfi_cmdset_0001: Byte swap OTP info + - i3c: master: cdns: Fix reading status register + - i3c: master: svc: fix race condition in ibi work thread + - i3c: master: svc: fix wrong data return when IBI happen during start frame + - i3c: master: svc: fix ibi may not return mandatory data byte + - i3c: master: svc: fix check wrong status register in irq handler + - i3c: master: svc: fix SDA keep low when polling IBIWON timeout happen + - parisc: Prevent booting 64-bit kernels on PA1.x machines + - parisc/pgtable: Do not drop upper 5 address bits of physical address + - xhci: Enable RPM on controllers that support low-power states + - ALSA: info: Fix potential deadlock at disconnection + - ALSA: hda/realtek - Add Dell ALC295 to pin fall back table + - ALSA: hda/realtek - Enable internal speaker of ASUS K6500ZC + - serial: meson: Use platform_get_irq() to get the interrupt + - tty: serial: meson: fix hard LOCKUP on crtscts mode + - regmap: Ensure range selector registers are updated after cache sync + - cpufreq: stats: Fix buffer overflow detection in trans_stats() + - Bluetooth: btusb: Add Realtek RTL8852BE support ID 0x0cb8:0xc559 + - bluetooth: Add device 0bda:887b to device tables + - bluetooth: Add device 13d3:3571 to device tables + - Bluetooth: btusb: Add RTW8852BE device 13d3:3570 to device tables + - Bluetooth: btusb: Add 0bda:b85b for Fn-Link RTL8852BE + - ksmbd: fix slab out of bounds write in smb_inherit_dacl() + - arm64: dts: qcom: ipq6018: switch TCSR mutex to MMIO + - arm64: dts: qcom: ipq6018: Fix tcsr_mutex register size + - powerpc/pseries/ddw: simplify enable_ddw() + - Revert ncsi: Propagate carrier gain/loss events to the NCSI controller + - Revert "i2c: pxa: move to generic GPIO recovery" + - lsm: fix default return value for vm_enough_memory + - lsm: fix default return value for inode_getsecctx + - sbsa_gwdt: Calculate timeout with 64-bit math + - i2c: designware: Disable TX_EMPTY irq while waiting for block length byte + - s390/ap: fix AP bus crash on early config change callback invocation + - net: ethtool: Fix documentation of ethtool_sprintf() + - net: dsa: lan9303: consequently nested-lock physical MDIO + - net: phylink: initialize carrier state at creation + - i2c: i801: fix potential race in i801_block_transaction_byte_by_byte + - f2fs: avoid format-overflow warning + - media: lirc: drop trailing space from scancode transmit + - media: sharp: fix sharp encoding + - media: venus: hfi_parser: Add check to keep the number of codecs within + range + - media: venus: hfi: fix the check to handle session buffer requirement + - media: venus: hfi: add checks to handle capabilities from firmware + - media: ccs: Correctly initialise try compose rectangle + - nfsd: fix file memleak on client_opens_release + - riscv: kprobes: allow writing to x0 + - mmc: sdhci-pci-gli: A workaround to allow GL9750 to enter ASPM L1.2 + - mm: kmem: drop __GFP_NOFAIL when allocating objcg vectors + - r8169: fix network lost after resume on DASH systems + - mmc: sdhci-pci-gli: GL9750: Mask the replay timer timeout of AER + - media: qcom: camss: Fix pm_domain_on sequence in probe + - media: qcom: camss: Fix vfe_get() error jump + - media: qcom: camss: Fix VFE-17x vfe_disable_output() + - media: qcom: camss: Fix missing vfe_lite clocks check + - ext4: apply umask if ACL support is disabled + - ext4: correct offset of gdb backup in non meta_bg group to update_backups + - ext4: correct return value of ext4_convert_meta_bg + - ext4: correct the start block of counting reserved clusters + - ext4: remove gdb backup copy for meta bg in setup_new_flex_group_blocks + - ext4: add missed brelse in update_backups + - drm/amd/pm: Handle non-terminated overdrive commands. + - drm/i915: Fix potential spectre vulnerability + - drm/amdgpu: don't use ATRM for external devices + - drm/amdgpu: fix error handling in amdgpu_bo_list_get() + - drm/amd/display: Change the DMCUB mailbox memory location from FB to inbox + - powerpc/powernv: Fix fortify source warnings in opal-prd.c + - tracing: Have trace_event_file have ref counters + - Input: xpad - add VID for Turtle Beach controllers + - driver core: Release all resources during unbind before updating device + links + - Linux 5.15.140 + * CVE-2023-46862 + - io_uring/fdinfo: lock SQ thread while retrieving thread cpu/pid + * Jammy update: v5.15.139 upstream stable release (LP: #2049432) + - iov_iter, x86: Be consistent about the __user tag on copy_mc_to_user() + - sched/uclamp: Ignore (util == 0) optimization in feec() when p_util_max = 0 + - sched: Fix stop_one_cpu_nowait() vs hotplug + - vfs: fix readahead(2) on block devices + - writeback, cgroup: switch inodes with dirty timestamps to release dying + cgwbs + - x86/srso: Fix SBPB enablement for (possible) future fixed HW + - futex: Don't include process MM in futex key on no-MMU + - x86: Share definition of __is_canonical_address() + - x86/sev-es: Allow copy_from_kernel_nofault() in earlier boot + - x86/boot: Fix incorrect startup_gdt_descr.size + - pstore/platform: Add check for kstrdup + - genirq/matrix: Exclude managed interrupts in irq_matrix_allocated() + - i40e: fix potential memory leaks in i40e_remove() + - selftests/bpf: Test tail call counting with bpf2bpf and data on stack + - selftests/bpf: Correct map_fd to data_fd in tailcalls + - udp: add missing WRITE_ONCE() around up->encap_rcv + - tcp: call tcp_try_undo_recovery when an RTOd TFO SYNACK is ACKed + - gve: Use size_add() in call to struct_size() + - mlxsw: Use size_mul() in call to struct_size() + - tipc: Use size_add() in calls to struct_size() + - net: spider_net: Use size_add() in call to struct_size() + - wifi: rtw88: debug: Fix the NULL vs IS_ERR() bug for debugfs_create_file() + - wifi: mt76: mt7603: rework/fix rx pse hang check + - mt76: dma: use kzalloc instead of devm_kzalloc for txwi + - mt76: add support for overriding the device used for DMA mapping + - mt76: pass original queue id from __mt76_tx_queue_skb to the driver + - wifi: mt76: mt7603: improve stuck beacon handling + - tcp_metrics: add missing barriers on delete + - tcp_metrics: properly set tp->snd_ssthresh in tcp_init_metrics() + - tcp_metrics: do not create an entry from tcp_init_metrics() + - wifi: rtlwifi: fix EDCA limit set by BT coexistence + - can: dev: can_restart(): don't crash kernel if carrier is OK + - can: dev: can_restart(): fix race condition between controller restart and + netif_carrier_on() + - can: dev: can_put_echo_skb(): don't crash kernel if can_priv::echo_skb is + accessed out of bounds + - PM / devfreq: rockchip-dfi: Make pmu regmap mandatory + - netfilter: nf_tables: Drop pointless memset when dumping rules + - thermal: core: prevent potential string overflow + - r8169: use tp_to_dev instead of open code + - r8169: fix rare issue with broken rx after link-down on RTL8125 + - chtls: fix tp->rcv_tstamp initialization + - tcp: fix cookie_init_timestamp() overflows + - iwlwifi: pcie: adjust to Bz completion descriptor + - wifi: iwlwifi: call napi_synchronize() before freeing rx/tx queues + - wifi: iwlwifi: pcie: synchronize IRQs before NAPI + - wifi: iwlwifi: empty overflow queue during flush + - ACPI: sysfs: Fix create_pnp_modalias() and create_of_modalias() + - ipv6: avoid atomic fragment on GSO packets + - net: add DEV_STATS_READ() helper + - ipvlan: properly track tx_errors + - regmap: debugfs: Fix a erroneous check after snprintf() + - spi: tegra: Fix missing IRQ check in tegra_slink_probe() + - clk: qcom: clk-rcg2: Fix clock rate overflow for high parent frequencies + - clk: qcom: mmcc-msm8998: Don't check halt bit on some branch clks + - clk: qcom: mmcc-msm8998: Fix the SMMU GDSC + - clk: qcom: gcc-sm8150: Fix gcc_sdcc2_apps_clk_src + - clk: imx: Select MXC_CLK for CLK_IMX8QXP + - clk: imx: imx8mq: correct error handling path + - clk: imx: imx8qxp: Fix elcdif_pll clock + - clk: renesas: rzg2l: Simplify multiplication/shift logic + - clk: renesas: rzg2l: Use FIELD_GET() for PLL register fields + - clk: renesas: rzg2l: Fix computation formula + - spi: nxp-fspi: use the correct ioremap function + - clk: keystone: pll: fix a couple NULL vs IS_ERR() checks + - clk: ti: Add ti_dt_clk_name() helper to use clock-output-names + - clk: ti: Update pll and clockdomain clocks to use ti_dt_clk_name() + - clk: ti: Update component clocks to use ti_dt_clk_name() + - clk: ti: change ti_clk_register[_omap_hw]() API + - clk: ti: fix double free in of_ti_divider_clk_setup() + - clk: npcm7xx: Fix incorrect kfree + - clk: mediatek: clk-mt6765: Add check for mtk_alloc_clk_data + - clk: mediatek: clk-mt6779: Add check for mtk_alloc_clk_data + - clk: mediatek: clk-mt6797: Add check for mtk_alloc_clk_data + - clk: mediatek: clk-mt7629-eth: Add check for mtk_alloc_clk_data + - clk: mediatek: clk-mt7629: Add check for mtk_alloc_clk_data + - clk: mediatek: clk-mt2701: Add check for mtk_alloc_clk_data + - clk: qcom: config IPQ_APSS_6018 should depend on QCOM_SMEM + - platform/x86: wmi: Fix probe failure when failing to register WMI devices + - platform/x86: wmi: remove unnecessary initializations + - platform/x86: wmi: Fix opening of char device + - hwmon: (axi-fan-control) Fix possible NULL pointer dereference + - hwmon: (coretemp) Fix potentially truncated sysfs attribute name + - drm/rockchip: vop: Fix reset of state in duplicate state crtc funcs + - drm/rockchip: vop: Fix call to crtc reset helper + - drm/radeon: possible buffer overflow + - drm/mipi-dsi: Create devm device registration + - drm/mipi-dsi: Create devm device attachment + - drm/bridge: lt8912b: Switch to devm MIPI-DSI helpers + - drm/bridge: lt8912b: Register and attach our DSI device at probe + - drm/bridge: lt8912b: Add hot plug detection + - drm/bridge: lt8912b: Fix bridge_detach + - drm/bridge: lt8912b: Fix crash on bridge detach + - drm/bridge: lt8912b: Manually disable HPD only if it was enabled + - drm/bridge: lt8912b: Add missing drm_bridge_attach call + - drm/bridge: tc358768: Fix use of uninitialized variable + - drm/bridge: tc358768: Disable non-continuous clock mode + - drm/bridge: tc358768: Fix bit updates + - drm/amdkfd: fix some race conditions in vram buffer alloc/free of svm code + - drm/mediatek: Fix iommu fault by swapping FBs after updating plane state + - drm/mediatek: Fix iommu fault during crtc enabling + - drm/rockchip: cdn-dp: Fix some error handling paths in cdn_dp_probe() + - arm64/arm: xen: enlighten: Fix KPTI checks + - drm/rockchip: Fix type promotion bug in rockchip_gem_iommu_map() + - xen-pciback: Consider INTx disabled when MSI/MSI-X is enabled + - drm/msm/dsi: use msm_gem_kernel_put to free TX buffer + - drm: mediatek: mtk_dsi: Fix NO_EOT_PACKET settings/handling + - perf: hisi: Fix use-after-free when register pmu fails + - ARM: dts: renesas: blanche: Fix typo in GP_11_2 pin name + - arm64: dts: qcom: msm8916: Fix iommu local address range + - arm64: dts: qcom: msm8992-libra: drop duplicated reserved memory + - arm64: dts: qcom: sc7280: Add missing LMH interrupts + - arm64: dts: qcom: sdm845-mtp: fix WiFi configuration + - ARM64: dts: marvell: cn9310: Use appropriate label for spi1 pins + - arm64: dts: qcom: apq8016-sbc: Add missing ADV7533 regulators + - ARM: dts: qcom: mdm9615: populate vsdcc fixed regulator + - soc: qcom: llcc: Handle a second device without data corruption + - firmware: ti_sci: Mark driver as non removable + - firmware: arm_ffa: Assign the missing IDR allocation ID to the FFA device + - clk: scmi: Free scmi_clk allocated when the clocks with invalid info are + skipped + - arm64: dts: imx8qm-ss-img: Fix jpegenc compatible entry + - arm64: dts: imx8mm: Add sound-dai-cells to micfil node + - arm64: dts: imx8mn: Add sound-dai-cells to micfil node + - selftests/pidfd: Fix ksft print formats + - selftests/resctrl: Ensure the benchmark commands fits to its array + - crypto: hisilicon/hpre - Fix a erroneous check after snprintf() + - hwrng: geode - fix accessing registers + - RDMA/core: Use size_{add,sub,mul}() in calls to struct_size() + - scsi: ibmvfc: Fix erroneous use of rtas_busy_delay with hcall return code + - libnvdimm/of_pmem: Use devm_kstrdup instead of kstrdup and check its return + value + - nd_btt: Make BTT lanes preemptible + - crypto: caam/qi2 - fix Chacha20 + Poly1305 self test failure + - crypto: caam/jr - fix Chacha20 + Poly1305 self test failure + - crypto: qat - increase size of buffers + - hid: cp2112: Fix duplicate workqueue initialization + - ARM: 9321/1: memset: cast the constant byte to unsigned char + - ext4: move 'ix' sanity check to corrent position + - ASoC: fsl: mpc5200_dma.c: Fix warning of Function parameter or member not + described + - IB/mlx5: Fix rdma counter binding for RAW QP + - RDMA/hns: Fix uninitialized ucmd in hns_roce_create_qp_common() + - RDMA/hns: Fix signed-unsigned mixed comparisons + - RDMA/hns: The UD mode can only be configured with DCQCN + - ASoC: fsl: Fix PM disable depth imbalance in fsl_easrc_probe + - scsi: ufs: core: Leave space for '\0' in utf8 desc string + - RDMA/hfi1: Workaround truncation compilation error + - hid: cp2112: Fix IRQ shutdown stopping polling for all IRQs on chip + - sh: bios: Revive earlyprintk support + - Revert "HID: logitech-hidpp: add a module parameter to keep firmware + gestures" + - HID: logitech-hidpp: Remove HIDPP_QUIRK_NO_HIDINPUT quirk + - HID: logitech-hidpp: Don't restart IO, instead defer hid_connect() only + - HID: logitech-hidpp: Revert "Don't restart communication if not necessary" + - HID: logitech-hidpp: Move get_wireless_feature_index() check to + hidpp_connect_event() + - ASoC: Intel: Skylake: Fix mem leak when parsing UUIDs fails + - padata: Fix refcnt handling in padata_free_shell() + - crypto: qat - fix deadlock in backlog processing + - ASoC: ams-delta.c: use component after check + - mfd: core: Un-constify mfd_cell.of_reg + - mfd: core: Ensure disabled devices are skipped without aborting + - mfd: dln2: Fix double put in dln2_probe + - mfd: arizona-spi: Set pdata.hpdet_channel for ACPI enumerated devs + - leds: turris-omnia: Drop unnecessary mutex locking + - leds: turris-omnia: Do not use SMBUS calls + - leds: pwm: Don't disable the PWM when the LED should be off + - leds: trigger: ledtrig-cpu:: Fix 'output may be truncated' issue for 'cpu' + - f2fs: compress: fix to avoid use-after-free on dic + - f2fs: compress: fix to avoid redundant compress extension + - tty: tty_jobctrl: fix pid memleak in disassociate_ctty() + - livepatch: Fix missing newline character in klp_resolve_symbols() + - dmaengine: idxd: Register dsa_bus_type before registering idxd sub-drivers + - usb: dwc2: fix possible NULL pointer dereference caused by driver + concurrency + - usb: chipidea: Fix DMA overwrite for Tegra + - usb: chipidea: Simplify Tegra DMA alignment code + - dmaengine: ti: edma: handle irq_of_parse_and_map() errors + - misc: st_core: Do not call kfree_skb() under spin_lock_irqsave() + - tools: iio: iio_generic_buffer ensure alignment + - USB: usbip: fix stub_dev hub disconnect + - dmaengine: pxa_dma: Remove an erroneous BUG_ON() in pxad_free_desc() + - f2fs: fix to initialize map.m_pblk in f2fs_precache_extents() + - powerpc: Only define __parse_fpscr() when required + - modpost: fix tee MODULE_DEVICE_TABLE built on big-endian host + - powerpc/40x: Remove stale PTE_ATOMIC_UPDATES macro + - powerpc/xive: Fix endian conversion size + - powerpc/imc-pmu: Use the correct spinlock initializer. + - powerpc/pseries: fix potential memory leak in init_cpu_associativity() + - usb: host: xhci-plat: fix possible kernel oops while resuming + - perf machine: Avoid out of bounds LBR memory read + - perf hist: Add missing puts to hist__account_cycles + - 9p/net: fix possible memory leak in p9_check_errors() + - i3c: Fix potential refcount leak in i3c_master_register_new_i3c_devs + - cxl/mem: Fix shutdown order + - rtc: pcf85363: fix wrong mask/val parameters in regmap_update_bits call + - pcmcia: cs: fix possible hung task and memory leak pccardd() + - pcmcia: ds: fix refcount leak in pcmcia_device_add() + - pcmcia: ds: fix possible name leak in error path in pcmcia_device_add() + - media: i2c: max9286: Fix some redundant of_node_put() calls + - media: bttv: fix use after free error due to btv->timeout timer + - media: s3c-camif: Avoid inappropriate kfree() + - media: vidtv: psi: Add check for kstrdup + - media: vidtv: mux: Add check and kfree for kstrdup + - media: cedrus: Fix clock/reset sequence + - media: dvb-usb-v2: af9035: fix missing unlock + - regmap: prevent noinc writes from clobbering cache + - pwm: sti: Reduce number of allocations and drop usage of chip_data + - pwm: brcmstb: Utilize appropriate clock APIs in suspend/resume + - Input: synaptics-rmi4 - fix use after free in rmi_unregister_function() + - llc: verify mac len before reading mac header + - hsr: Prevent use after free in prp_create_tagged_frame() + - tipc: Change nla_policy for bearer-related names to NLA_NUL_STRING + - bpf: Check map->usercnt after timer->timer is assigned + - inet: shrink struct flowi_common + - octeontx2-pf: Fix error codes + - octeontx2-pf: Fix holes in error code + - dccp: Call security_inet_conn_request() after setting IPv4 addresses. + - dccp/tcp: Call security_inet_conn_request() after setting IPv6 addresses. + - Fix termination state for idr_for_each_entry_ul() + - net: stmmac: xgmac: Enable support for multiple Flexible PPS outputs + - selftests: pmtu.sh: fix result checking + - net/smc: fix dangling sock under state SMC_APPFINCLOSEWAIT + - net/smc: allow cdc msg send rather than drop it with NULL sndbuf_desc + - net/smc: put sk reference if close work was canceled + - tg3: power down device only on SYSTEM_POWER_OFF + - block: remove unneeded return value of bio_check_ro() + - blk-core: use pr_warn_ratelimited() in bio_check_ro() + - r8169: respect userspace disabling IFF_MULTICAST + - i2c: iproc: handle invalid slave state + - netfilter: xt_recent: fix (increase) ipv6 literal buffer length + - netfilter: nft_redir: use `struct nf_nat_range2` throughout and deduplicate + eval call-backs + - netfilter: nat: fix ipv6 nat redirect with mapped and scoped addresses + - drm/syncobj: fix DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE + - ASoC: hdmi-codec: register hpd callback on component probe + - spi: spi-zynq-qspi: add spi-mem to driver kconfig dependencies + - fbdev: imsttfb: Fix error path of imsttfb_probe() + - fbdev: imsttfb: fix a resource leak in probe + - fbdev: fsl-diu-fb: mark wr_reg_wa() static + - tracing/kprobes: Fix the order of argument descriptions + - btrfs: use u64 for buffer sizes in the tree search ioctls + - Linux 5.15.139 + * Jammy update: v5.15.138 upstream stable release (LP: #2049417) + - ASoC: codecs: wcd938x: fix resource leaks on bind errors + - ASoC: codecs: wcd938x: fix runtime PM imbalance on remove + - pinctrl: qcom: lpass-lpi: fix concurrent register updates + - tcp: remove dead code from tcp_sendmsg_locked() + - tcp: cleanup tcp_remove_empty_skb() use + - mptcp: more conservative check for zero probes + - mcb: Return actual parsed size when reading chameleon table + - mcb-lpc: Reallocate memory region to avoid memory overlapping + - virtio_balloon: Fix endless deflation and inflation on arm64 + - virtio-mmio: fix memory leak of vm_dev + - vhost: Allow null msg.size on VHOST_IOTLB_INVALIDATE + - mm/page_alloc: correct start page when guard page debug is enabled + - mm/migrate: fix do_pages_move for compat pointers + - nfsd: lock_rename() needs both directories to live on the same fs + - drm/i915/pmu: Check if pmu is closed before stopping event + - vsock/virtio: factor our the code to initialize and delete VQs + - vsock/virtio: add support for device suspend/resume + - vsock/virtio: initialize the_virtio_vsock before using VQs + - drm/dp_mst: Fix NULL deref in get_mst_branch_device_by_guid_helper() + - firmware/imx-dsp: Fix use_after_free in imx_dsp_setup_channels() + - r8169: fix the KCSAN reported data-race in rtl_tx() while reading tp->cur_tx + - r8169: fix the KCSAN reported data-race in rtl_tx while reading + TxDescArray[entry].opts1 + - r8169: fix the KCSAN reported data race in rtl_rx while reading desc->opts1 + - i40e: Fix I40E_FLAG_VF_VLAN_PRUNING value + - treewide: Spelling fix in comment + - igb: Fix potential memory leak in igb_add_ethtool_nfc_entry + - neighbour: fix various data-races + - igc: Fix ambiguity in the ethtool advertising + - net: ieee802154: adf7242: Fix some potential buffer overflow in + adf7242_stats_show() + - net: usb: smsc95xx: Fix uninit-value access in smsc95xx_read_reg + - r8152: Increase USB control msg timeout to 5000ms as per spec + - r8152: Run the unload routine if we have errors during probe + - r8152: Cancel hw_phy_work if we have an error in probe + - r8152: Release firmware if we have an error in probe + - tcp: fix wrong RTO timeout when received SACK reneging + - gtp: uapi: fix GTPA_MAX + - gtp: fix fragmentation needed check with gso + - i40e: Fix wrong check for I40E_TXR_FLAGS_WB_ON_ITR + - kasan: print the original fault addr when access invalid shadow + - iio: exynos-adc: request second interupt only when touchscreen mode is used + - iio: adc: xilinx-xadc: Don't clobber preset voltage/temperature thresholds + - iio: adc: xilinx-xadc: Correct temperature offset/scale for UltraScale + - i2c: muxes: i2c-mux-pinctrl: Use of_get_i2c_adapter_by_node() + - i2c: muxes: i2c-mux-gpmux: Use of_get_i2c_adapter_by_node() + - i2c: muxes: i2c-demux-pinctrl: Use of_get_i2c_adapter_by_node() + - i2c: stm32f7: Fix PEC handling in case of SMBUS transfers + - i2c: aspeed: Fix i2c bus hang in slave read + - tracing/kprobes: Fix the description of variable length arguments + - misc: fastrpc: Clean buffers on remote invocation failures + - nvmem: imx: correct nregs for i.MX6ULL + - nvmem: imx: correct nregs for i.MX6SLL + - nvmem: imx: correct nregs for i.MX6UL + - perf/core: Fix potential NULL deref + - sparc32: fix a braino in fault handling in csum_and_copy_..._user() + - clk: Sanitize possible_parent_show to Handle Return Value of + of_clk_get_parent_name + - iio: afe: rescale: reorder includes + - iio: afe: rescale: expose scale processing function + - iio: afe: rescale: add offset support + - iio: afe: rescale: Accept only offset channels + - gve: Fix GFP flags when allocing pages + - x86/i8259: Skip probing when ACPI/MADT advertises PCAT compatibility + - x86/mm: Simplify RESERVE_BRK() + - x86/mm: Fix RESERVE_BRK() for older binutils + - ext4: add two helper functions extent_logical_end() and pa_logical_end() + - ext4: fix BUG in ext4_mb_new_inode_pa() due to overflow + - ext4: avoid overlapping preallocations due to overflow + - objtool/x86: add missing embedded_insn check + - driver: platform: Add helper for safer setting of driver_override + - rpmsg: Constify local variable in field store macro + - rpmsg: Fix kfree() of static memory on setting driver_override + - rpmsg: Fix calling device_lock() on non-initialized device + - rpmsg: glink: Release driver_override + - rpmsg: Fix possible refcount leak in rpmsg_register_device_override() + - x86: Fix .brk attribute in linker script + - ASoC: simple-card: fixup asoc_simple_probe() error handling + - net: sched: cls_u32: Fix allocation size in u32_init() + - irqchip/riscv-intc: Mark all INTC nodes as initialized + - irqchip/stm32-exti: add missing DT IRQ flag translation + - dmaengine: ste_dma40: Fix PM disable depth imbalance in d40_probe + - powerpc/85xx: Fix math emulation exception + - Input: synaptics-rmi4 - handle reset delay when using SMBus trsnsport + - fbdev: atyfb: only use ioremap_uc() on i386 and ia64 + - fs/ntfs3: Add ckeck in ni_update_parent() + - fs/ntfs3: Write immediately updated ntfs state + - fs/ntfs3: Use kvmalloc instead of kmalloc(... __GFP_NOWARN) + - fs/ntfs3: Fix possible NULL-ptr-deref in ni_readpage_cmpr() + - fs/ntfs3: Fix NULL pointer dereference on error in attr_allocate_frame() + - fs/ntfs3: Fix directory element type detection + - fs/ntfs3: Avoid possible memory leak + - spi: npcm-fiu: Fix UMA reads when dummy.nbytes == 0 + - netfilter: nfnetlink_log: silence bogus compiler warning + - ASoC: rt5650: fix the wrong result of key button + - drm/ttm: Reorder sys manager cleanup step + - fbdev: uvesafb: Call cn_del_callback() at the end of uvesafb_exit() + - scsi: mpt3sas: Fix in error path + - platform/mellanox: mlxbf-tmfifo: Fix a warning message + - net: chelsio: cxgb4: add an error code check in t4_load_phy_fw + - r8152: Check for unplug in rtl_phy_patch_request() + - r8152: Check for unplug in r8153b_ups_en() / r8153c_ups_en() + - powerpc/mm: Fix boot crash with FLATMEM + - can: isotp: set max PDU size to 64 kByte + - can: isotp: isotp_bind(): return -EINVAL on incorrect CAN ID formatting + - can: isotp: check CAN address family in isotp_bind() + - can: isotp: handle wait_event_interruptible() return values + - can: isotp: add local echo tx processing and tx without FC + - can: isotp: isotp_bind(): do not validate unused address information + - can: isotp: isotp_sendmsg(): fix TX state detection and wait behavior + - drm/amd: Move helper for dynamic speed switch check out of smu13 + - drm/amd: Disable ASPM for VI w/ all Intel systems + - PCI: Prevent xHCI driver from claiming AMD VanGogh USB3 DRD device + - usb: storage: set 1.50 as the lower bcdDevice for older "Super Top" + compatibility + - usb: typec: tcpm: Fix NULL pointer dereference in tcpm_pd_svdm() + - usb: raw-gadget: properly handle interrupted requests + - tty: n_gsm: fix race condition in status line change on dead connections + - tty: 8250: Remove UC-257 and UC-431 + - tty: 8250: Add support for additional Brainboxes UC cards + - tty: 8250: Add support for Brainboxes UP cards + - tty: 8250: Add support for Intashield IS-100 + - tty: 8250: Fix port count of PX-257 + - tty: 8250: Fix up PX-803/PX-857 + - tty: 8250: Add support for additional Brainboxes PX cards + - tty: 8250: Add support for Intashield IX cards + - tty: 8250: Add Brainboxes Oxford Semiconductor-based quirks + - misc: pci_endpoint_test: Add deviceID for J721S2 PCIe EP device support + - ALSA: hda: intel-dsp-config: Fix JSL Chromebook quirk detection + - Linux 5.15.138 + * Jammy update: v5.15.137 upstream stable release (LP: #2049350) + - lib/Kconfig.debug: do not enable DEBUG_PREEMPT by default + - Documentation: sysctl: align cells in second content column + - xfs: don't expose internal symlink metadata buffers to the vfs + - Bluetooth: hci_event: Ignore NULL link key + - Bluetooth: Reject connection with the device which has same BD_ADDR + - Bluetooth: Fix a refcnt underflow problem for hci_conn + - Bluetooth: vhci: Fix race when opening vhci device + - Bluetooth: hci_event: Fix coding style + - Bluetooth: avoid memcmp() out of bounds warning + - ice: fix over-shifted variable + - ice: reset first in crash dump kernels + - nfc: nci: fix possible NULL pointer dereference in send_acknowledge() + - regmap: fix NULL deref on lookup + - KVM: x86: Mask LVTPC when handling a PMI + - tcp: check mptcp-level constraints for backlog coalescing + - fs/ntfs3: Fix possible null-pointer dereference in hdr_find_e() + - fs/ntfs3: fix panic about slab-out-of-bounds caused by ntfs_list_ea() + - fs/ntfs3: fix deadlock in mark_as_free_ex + - netfilter: nft_payload: fix wrong mac header matching + - drm/i915: Retry gtt fault when out of fence registers + - ASoC: codecs: wcd938x-sdw: fix use after free on driver unbind + - ASoC: codecs: wcd938x-sdw: fix runtime PM imbalance on probe errors + - ASoC: codecs: wcd938x: drop bogus bind error handling + - ASoC: codecs: wcd938x: fix unbind tear down order + - qed: fix LL2 RX buffer allocation + - xfrm: fix a data-race in xfrm_gen_index() + - xfrm: interface: use DEV_STATS_INC() + - net: ipv4: fix return value check in esp_remove_trailer + - net: ipv6: fix return value check in esp_remove_trailer + - net: rfkill: gpio: prevent value glitch during probe + - tcp: fix excessive TLP and RACK timeouts from HZ rounding + - tcp: tsq: relax tcp_small_queue_check() when rtx queue contains a single skb + - tun: prevent negative ifindex + - ipv4: fib: annotate races around nh->nh_saddr_genid and nh->nh_saddr + - net: usb: smsc95xx: Fix an error code in smsc95xx_reset() + - i40e: prevent crash on probe if hw registers have invalid values + - net: dsa: bcm_sf2: Fix possible memory leak in bcm_sf2_mdio_register() + - bonding: Return pointer to data after pull on skb + - net/sched: sch_hfsc: upgrade 'rt' to 'sc' when it becomes a inner curve + - neighbor: tracing: Move pin6 inside CONFIG_IPV6=y section + - netfilter: nft_set_rbtree: .deactivate fails if element has expired + - netfilter: nf_tables: do not remove elements if set backend implements + .abort + - netfilter: nf_tables: revert do not remove elements if set backend + implements .abort + - net: pktgen: Fix interface flags printing + - selftests/mm: fix awk usage in charge_reserved_hugetlb.sh and + hugetlb_reparenting_test.sh that may cause error + - serial: 8250: omap: Fix imprecise external abort for omap_8250_pm() + - serial: 8250_omap: Fix errors with no_console_suspend + - iio: Un-inline iio_buffer_enabled() + - iio: core: Hide read accesses to iio_dev->currentmode + - iio: core: introduce iio_device_{claim|release}_buffer_mode() APIs + - iio: cros_ec: fix an use-after-free in cros_ec_sensors_push_data() + - iio: adc: ad7192: Correct reference voltage + - perf: Add irq and exception return branch types + - perf/x86: Move branch classifier + - perf/x86/lbr: Filter vsyscall addresses + - drm/atomic-helper: relax unregistered connector check + - powerpc/32s: Remove capability to disable KUEP at boottime + - powerpc/32s: Do kuep_lock() and kuep_unlock() in assembly + - powerpc/47x: Fix 47x syscall return crash + - mctp: Allow local delivery to the null EID + - mctp: perform route lookups under a RCU read-side lock + - nfp: flower: avoid rmmod nfp crash issues + - ksmbd: not allow to open file if delelete on close bit is set + - ARM: dts: ti: omap: Fix noisy serial with overrun-throttle-ms for mapphone + - fs-writeback: do not requeue a clean inode having skipped pages + - btrfs: return -EUCLEAN for delayed tree ref with a ref count not equals to 1 + - btrfs: initialize start_slot in btrfs_log_prealloc_extents + - i2c: mux: Avoid potential false error message in i2c_mux_add_adapter + - overlayfs: set ctime when setting mtime and atime + - gpio: timberdale: Fix potential deadlock on &tgpio->lock + - ata: libata-core: Fix compilation warning in ata_dev_config_ncq() + - ata: libata-eh: Fix compilation warning in ata_eh_link_report() + - tracing: relax trace_event_eval_update() execution with cond_resched() + - wifi: mwifiex: Sanity check tlv_len and tlv_bitmap_len + - wifi: iwlwifi: Ensure ack flag is properly cleared. + - HID: holtek: fix slab-out-of-bounds Write in holtek_kbd_input_event + - Bluetooth: btusb: add shutdown function for QCA6174 + - Bluetooth: Avoid redundant authentication + - Bluetooth: hci_core: Fix build warnings + - wifi: cfg80211: Fix 6GHz scan configuration + - wifi: mac80211: allow transmitting EAPOL frames with tainted key + - wifi: cfg80211: avoid leaking stack data into trace + - regulator/core: Revert "fix kobject release warning and memory leak in + regulator_register()" + - sky2: Make sure there is at least one frag_addr available + - ipv4/fib: send notify when delete source address routes + - drm: panel-orientation-quirks: Add quirk for One Mix 2S + - btrfs: fix some -Wmaybe-uninitialized warnings in ioctl.c + - btrfs: error out when COWing block using a stale transaction + - btrfs: error when COWing block from a root that is being deleted + - btrfs: error out when reallocating block for defrag using a stale + transaction + - HID: multitouch: Add required quirk for Synaptics 0xcd7e device + - platform/x86: touchscreen_dmi: Add info for the Positivo C4128B + - net/mlx5: Handle fw tracer change ownership event based on MTRC + - Bluetooth: hci_event: Fix using memcmp when comparing keys + - net: introduce a function to check if a netdev name is in use + - net: move from strlcpy with unused retval to strscpy + - net: fix ifname in netlink ntf during netns move + - mtd: rawnand: qcom: Unmap the right resource upon probe failure + - mtd: rawnand: pl353: Ensure program page operations are successful + - mtd: rawnand: marvell: Ensure program page operations are successful + - mtd: rawnand: arasan: Ensure program page operations are successful + - mtd: spinand: micron: correct bitmask for ecc status + - mtd: physmap-core: Restore map_rom fallback + - mmc: mtk-sd: Use readl_poll_timeout_atomic in msdc_reset_hw + - mmc: core: sdio: hold retuning if sdio in 1-bit mode + - pNFS: Fix a hang in nfs4_evict_inode() + - NFSv4.1: fixup use EXCHGID4_FLAG_USE_PNFS_DS for DS server + - ACPI: irq: Fix incorrect return value in acpi_register_gsi() + - nvme-pci: add BOGUS_NID for Intel 0a54 device + - nvme-rdma: do not try to stop unallocated queues + - USB: serial: option: add Telit LE910C4-WWX 0x1035 composition + - USB: serial: option: add entry for Sierra EM9191 with new firmware + - USB: serial: option: add Fibocom to DELL custom modem FM101R-GL + - s390/pci: fix iommu bitmap allocation + - selftests/ftrace: Add new test case which checks non unique symbol + - s390/cio: fix a memleak in css_alloc_subchannel + - platform/surface: platform_profile: Propagate error if profile registration + fails + - platform/x86: asus-wmi: Change ASUS_WMI_BRN_DOWN code from 0x20 to 0x2e + - platform/x86: asus-wmi: Map 0x2a code, Ignore 0x2b and 0x2c events + - gpio: vf610: set value before the direction to avoid a glitch + - ASoC: pxa: fix a memory leak in probe() + - serial: 8250: omap: Move uart_write() inside PM section + - phy: mapphone-mdm6600: Fix runtime disable on probe + - phy: mapphone-mdm6600: Fix runtime PM for remove + - phy: mapphone-mdm6600: Fix pinctrl_pm handling for sleep pins + - Bluetooth: hci_sock: fix slab oob read in create_monitor_event + - Bluetooth: hci_sock: Correctly bounds check and pad HCI_MON_NEW_INDEX name + - xfrm6: fix inet6_dev refcount underflow problem + - Linux 5.15.137 + * CVE-2023-51782 + - net/rose: Fix Use-After-Free in rose_ioctl + * CVE-2023-51779 + - Bluetooth: af_bluetooth: Fix Use-After-Free in bt_sock_recvmsg + * CVE-2023-22995 + - usb: dwc3: dwc3-qcom: Add missing platform_device_put() in + dwc3_qcom_acpi_register_core + * CVE-2023-4134 + - Input: cyttsp4_core - change del_timer_sync() to timer_shutdown_sync() + * Packaging resync (LP: #1786013) + - [Packaging] update annotations scripts + + -- Kevin Becker Mon, 26 Feb 2024 11:45:17 -0500 + +linux-azure-5.15 (5.15.0-1057.65~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1057.65~20.04.1 -proposed tracker + (LP: #2052226) + + [ Ubuntu: 5.15.0-1057.65 ] + + * jammy/linux-azure: 5.15.0-1057.65 -proposed tracker (LP: #2052613) + * CVE-2024-0565 + - smb: client: fix OOB in receive_encrypted_standard() + * jammy/linux: 5.15.0-97.107 -proposed tracker (LP: #2052600) + * Packaging resync (LP: #1786013) + - [Packaging] update annotations scripts + * partproke is broken on empty loopback device (LP: #2049689) + - block: Move checking GENHD_FL_NO_PART to bdev_add_partition() + * CVE-2023-51781 + - appletalk: Fix Use-After-Free in atalk_ioctl + * CVE-2023-51780 + - atm: Fix Use-After-Free in do_vcc_ioctl + * CVE-2023-6915 + - ida: Fix crash in ida_free when the bitmap is empty + * CVE-2024-0646 + - net: tls, update curr on splice as well + + -- Kevin Becker Mon, 12 Feb 2024 10:36:00 -0500 + +linux-azure-5.15 (5.15.0-1056.64~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1056.64~20.04.1 -proposed tracker + (LP: #2052544) + + [ Ubuntu: 5.15.0-1056.64 ] + + * jammy/linux-azure: 5.15.0-1056.64 -proposed tracker (LP: #2052545) + * Azure: Fix regression introduced in LP: #2045069 (LP: #2052453) + - hv_netvsc: Fix race condition between netvsc_probe and netvsc_remove + - hv_netvsc: Register VF in netvsc_probe if NET_DEVICE_REGISTER missed + + -- Tim Gardner Wed, 07 Feb 2024 09:29:22 -0700 + +linux-azure-5.15 (5.15.0-1055.63~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1055.63~20.04.1 -proposed tracker + (LP: #2048290) + + [ Ubuntu: 5.15.0-1055.63 ] + + * jammy/linux-azure: 5.15.0-1055.63 -proposed tracker (LP: #2048291) + * Azure - Kernel crashes when removing gpu from pci (LP: #2042568) + - Revert "PCI: hv: Use async probing to reduce boot time" + * Azure: mlx5e: Add support for PCI relaxed ordering (RO) for better + performance (LP: #2039208) + - RDMA/mlx5: Reorder calls to pcie_relaxed_ordering_enabled() + - RDMA/mlx5: Remove pcie_relaxed_ordering_enabled() check for RO write + * Azure: Deprecate Netvsc and implement MANA direct (LP: #2045069) + - hv_netvsc: fix race of netvsc and VF register_netdevice + - hv_netvsc: Fix race of register_netdevice_notifier and VF register + - hv_netvsc: Mark VF as slave before exposing it to user-mode + * jammy/linux: 5.15.0-94.104 -proposed tracker (LP: #2048777) + * [SRU] Duplicate Device_dax ids Created and hence Probing is Failing. + (LP: #2028158) + - device-dax: Fix duplicate 'hmem' device registration + * Add ODM driver f81604 usb-can (LP: #2045387) + - can: usb: f81604: add Fintek F81604 support + - [Config] updateconfigs for ODM drivers CONFIG_CAN_F81604 + * Add ODM driver gpio-m058ssan (LP: #2045386) + - SAUCE: ODM: gpio: add M058SSAN gpio driver + - [Config] updateconfigs for ODM drivers CONFIG_GPIO_M058SSAN + * Add ODM driver rtc-pcf85263 (LP: #2045385) + - SAUCE: ODM: rtc: add PCF85263 RTC driver + - [Config] updateconfigs for ODM drivers CONFIG_RTC_DRV_PCF85263 + * AppArmor patch for mq-posix interface is missing in jammy (LP: #2045384) + - SAUCE: (no-up) apparmor: reserve mediation classes + - SAUCE: (no-up) apparmor: Add fine grained mediation of posix mqueues + * Packaging resync (LP: #1786013) + - [Packaging] update annotations scripts + * jammy/linux: 5.15.0-93.103 -proposed tracker (LP: #2048330) + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] resync update-dkms-versions helper + - [Packaging] remove helper scripts + - [Packaging] update annotations scripts + - debian/dkms-versions -- update from kernel-versions (main/2024.01.08) + * Hotplugging SCSI disk in QEMU VM fails (LP: #2047382) + - Revert "PCI: acpiphp: Reassign resources on bridge if necessary" + * CVE-2023-6622 + - netfilter: nf_tables: bail out on mismatching dynset and set expressions + * CVE-2024-0193 + - netfilter: nf_tables: skip set commit for deleted/destroyed sets + * CVE-2023-6040 + - netfilter: nf_tables: Reject tables of unsupported family + * Patches needed for AmpereOne (arm64) (LP: #2044192) + - clocksource/arm_arch_timer: Add build-time guards for unhandled register + accesses + - clocksource/drivers/arm_arch_timer: Drop CNT*_TVAL read accessors + - clocksource/drivers/arm_arch_timer: Extend write side of timer register + accessors to u64 + - clocksource/drivers/arm_arch_timer: Move system register timer programming + over to CVAL + - clocksource/drivers/arm_arch_timer: Move drop _tval from erratum function + names + - clocksource/drivers/arm_arch_timer: Fix MMIO base address vs callback + ordering issue + - clocksource/drivers/arm_arch_timer: Move MMIO timer programming over to CVAL + - clocksource/drivers/arm_arch_timer: Advertise 56bit timer to the core code + - clocksource/drivers/arm_arch_timer: Work around broken CVAL implementations + - clocksource/drivers/arm_arch_timer: Remove any trace of the TVAL programming + interface + - clocksource/drivers/arm_arch_timer: Drop unnecessary ISB on CVAL programming + - clocksource/drivers/arm_arch_timer: Fix masking for high freq counters + - clocksource/drivers/arch_arm_timer: Move workaround synchronisation around + * Add quirk to disable i915 fastboot on B&R PC (LP: #2047630) + - SAUCE: i915: force disable fastboot quirk + * Some machines can't pass the pm-graph test (LP: #2046217) + - wifi: iwlwifi: pcie: rescan bus if no parent + * Sound: Add rtl quirk of M90-Gen5 (LP: #2046105) + - ALSA: hda/realtek: Enable headset on Lenovo M90 Gen5 + * linux tools packages for derived kernels refuse to install simultaneously + due to libcpupower name collision (LP: #2035971) + - [Packaging] Statically link libcpupower into cpupower tool + * [Debian] autoreconstruct - Do not generate chmod -x for deleted files + (LP: #2045562) + - [Debian] autoreconstruct - Do not generate chmod -x for deleted files + * CVE-2023-6931 + - perf/core: Add a new read format to get a number of lost samples + - perf: Fix perf_event_validate_size() + - perf: Fix perf_event_validate_size() lockdep splat + * CVE-2023-6932 + - ipv4: igmp: fix refcnt uaf issue when receiving igmp query packet + * CVE-2023-6606 + - smb: client: fix OOB in smbCalcSize() + * CVE-2023-6817 + - netfilter: nft_set_pipapo: skip inactive elements during set walk + * Jammy update: v5.15.136 upstream stable release (LP: #2046008) + - iommu/vt-d: Avoid memory allocation in iommu_suspend() + - scsi: core: Use a structure member to track the SCSI command submitter + - scsi: core: Rename scsi_mq_done() into scsi_done() and export it + - scsi: ib_srp: Call scsi_done() directly + - RDMA/srp: Do not call scsi_done() from srp_abort() + - RDMA/cxgb4: Check skb value for failure to allocate + - perf/arm-cmn: Fix the unhandled overflow status of counter 4 to 7 + - of: overlay: Reorder struct fragment fields kerneldoc + - platform/x86: think-lmi: Fix reference leak + - platform/x86: hp-wmi:: Mark driver struct with __refdata to prevent section + mismatch warning + - lib/test_meminit: fix off-by-one error in test_pages() + - HID: logitech-hidpp: Fix kernel crash on receiver USB disconnect + - quota: Fix slow quotaoff + - net: prevent address rewrite in kernel_bind() + - ALSA: usb-audio: Fix microphone sound on Opencomm2 Headset + - KEYS: trusted: allow use of kernel RNG for key material + - KEYS: trusted: Remove redundant static calls usage + - drm/msm/dp: do not reinitialize phy unless retry during link training + - drm/msm/dsi: skip the wait for video mode done if not applicable + - drm/msm/dsi: fix irq_of_parse_and_map() error checking + - drm/msm/dpu: change _dpu_plane_calc_bw() to use u64 to avoid overflow + - ravb: Fix up dma_free_coherent() call in ravb_remove() + - ravb: Fix use-after-free issue in ravb_tx_timeout_work() + - ieee802154: ca8210: Fix a potential UAF in ca8210_probe + - mlxsw: fix mlxsw_sp2_nve_vxlan_learning_set() return type + - eth: remove copies of the NAPI_POLL_WEIGHT define + - xen-netback: use default TX queue size for vifs + - riscv, bpf: Factor out emit_call for kernel and bpf context + - riscv, bpf: Sign-extend return values + - drm/vmwgfx: fix typo of sizeof argument + - bpf: Fix verifier log for async callback return values + - net: macsec: indicate next pn update when offloading + - net: phy: mscc: macsec: reject PN update requests + - ixgbe: fix crash with empty VF macvlan list + - net/mlx5e: Again mutually exclude RX-FCS and RX-port-timestamp + - net: nfc: fix races in nfc_llcp_sock_get() and nfc_llcp_sock_get_sn() + - pinctrl: renesas: rzn1: Enable missing PINMUX + - nfc: nci: assert requested protocol is valid + - workqueue: Override implicit ordered attribute in + workqueue_apply_unbound_cpumask() + - net: add sysctl accept_ra_min_rtr_lft + - net: change accept_ra_min_rtr_lft to affect all RA lifetimes + - net: release reference to inet6_dev pointer + - media: mtk-jpeg: Fix use after free bug due to uncanceled work + - dmaengine: stm32-mdma: abort resume if no ongoing transfer + - xhci: Keep interrupt disabled in initialization until host is running. + - usb: xhci: xhci-ring: Use sysdev for mapping bounce buffer + - net: usb: dm9601: fix uninitialized variable use in dm9601_mdio_read + - usb: dwc3: Soft reset phy on probe for host + - usb: cdns3: Modify the return value of cdns_set_active () to void when + CONFIG_PM_SLEEP is disabled + - usb: musb: Get the musb_qh poniter after musb_giveback + - usb: musb: Modify the "HWVers" register address + - iio: pressure: bmp280: Fix NULL pointer exception + - iio: pressure: dps310: Adjust Timeout Settings + - iio: pressure: ms5611: ms5611_prom_is_valid false negative bug + - drm/amdgpu: add missing NULL check + - drm/amd/display: Don't set dpms_off for seamless boot + - ACPI: resource: Skip IRQ override on ASUS ExpertBook B1402CBA + - x86/cpu: Fix AMD erratum #1485 on Zen4-based CPUs + - mcb: remove is_added flag from mcb_device struct + - thunderbolt: Workaround an IOMMU fault on certain systems with Intel Maple + Ridge + - thunderbolt: Check that lane 1 is in CL0 before enabling lane bonding + - libceph: use kernel_connect() + - ceph: fix incorrect revoked caps assert in ceph_fill_file_size() + - ceph: fix type promotion bug on 32bit systems + - Input: powermate - fix use-after-free in powermate_config_complete + - Input: psmouse - fix fast_reconnect function for PS/2 mode + - Input: xpad - add PXN V900 support + - Input: i8042 - add Fujitsu Lifebook E5411 to i8042 quirk table + - Input: goodix - ensure int GPIO is in input for gpio_count == 1 && + gpio_int_idx == 0 case + - tee: amdtee: fix use-after-free vulnerability in amdtee_close_session + - cgroup: Remove duplicates in cgroup v1 tasks file + - counter: microchip-tcb-capture: Fix the use of internal GCLK logic + - usb: gadget: udc-xilinx: replace memcpy with memcpy_toio + - usb: gadget: ncm: Handle decoding of multiple NTB's in unwrap call + - usb: cdnsp: Fixes issue with dequeuing not queued requests + - x86/alternatives: Disable KASAN in apply_alternatives() + - dmaengine: idxd: use spin_lock_irqsave before wait_event_lock_irq + - dmaengine: mediatek: Fix deadlock caused by synchronize_irq() + - powerpc/8xx: Fix pte_access_permitted() for PAGE_NONE + - powerpc/64e: Fix wrong test in __ptep_test_and_clear_young() + - arm64: report EL1 UNDEFs better + - arm64: die(): pass 'err' as long + - arm64: consistently pass ESR_ELx to die() + - arm64: rework FPAC exception handling + - arm64: rework BTI exception handling + - arm64: allow kprobes on EL0 handlers + - arm64: split EL0/EL1 UNDEF handlers + - arm64: factor out EL1 SSBS emulation hook + - arm64: factor insn read out of call_undef_hook() + - arm64: rework EL0 MRS emulation + - arm64: armv8_deprecated: fold ops into insn_emulation + - arm64: armv8_deprecated move emulation functions + - arm64: armv8_deprecated: move aarch32 helper earlier + - arm64: armv8_deprecated: rework deprected instruction handling + - arm64: armv8_deprecated: fix unused-function error + - usb: hub: Guard against accesses to uninitialized BOS descriptors + - eth: remove remaining copies of the NAPI_POLL_WEIGHT define + - Linux 5.15.136 + * Jammy update: v5.15.135 upstream stable release (LP: #2045809) + - spi: zynqmp-gqspi: Convert to platform remove callback returning void + - spi: zynqmp-gqspi: fix clock imbalance on probe failure + - ASoC: soc-utils: Export snd_soc_dai_is_dummy() symbol + - ASoC: tegra: Fix redundant PLLA and PLLA_OUT0 updates + - NFS: Cleanup unused rpc_clnt variable + - NFS: rename nfs_client_kset to nfs_kset + - NFSv4: Fix a state manager thread deadlock regression + - ring-buffer: remove obsolete comment for free_buffer_page() + - ring-buffer: Fix bytes info in per_cpu buffer stats + - arm64: Avoid repeated AA64MMFR1_EL1 register read on pagefault path + - iommu/arm-smmu-v3: Set TTL invalidation hint better + - iommu/arm-smmu-v3: Avoid constructing invalid range commands + - rbd: move rbd_dev_refresh() definition + - rbd: decouple header read-in from updating rbd_dev->header + - rbd: decouple parent info read-in from updating rbd_dev + - rbd: take header_rwsem in rbd_dev_refresh() only when updating + - block: fix use-after-free of q->q_usage_counter + - scsi: zfcp: Fix a double put in zfcp_port_enqueue() + - qed/red_ll2: Fix undefined behavior bug in struct qed_ll2_info + - wifi: mwifiex: Fix tlv_buf_left calculation + - net: replace calls to sock->ops->connect() with kernel_connect() + - net: prevent rewrite of msg_name in sock_sendmsg() + - drm/amd: Fix detection of _PR3 on the PCIe root port + - arm64: Add Cortex-A520 CPU part definition + - HID: sony: Fix a potential memory leak in sony_probe() + - ubi: Refuse attaching if mtd's erasesize is 0 + - wifi: iwlwifi: dbg_ini: fix structure packing + - iwlwifi: avoid void pointer arithmetic + - wifi: iwlwifi: mvm: Fix a memory corruption issue + - wifi: mwifiex: Fix oob check condition in mwifiex_process_rx_packet + - bpf: Fix tr dereferencing + - drivers/net: process the result of hdlc_open() and add call of hdlc_close() + in uhdlc_close() + - wifi: mt76: mt76x02: fix MT76x0 external LNA gain handling + - regmap: rbtree: Fix wrong register marked as in-cache when creating new node + - ima: Finish deprecation of IMA_TRUSTED_KEYRING Kconfig + - [Config] updateconfigs for IMA_BLACKLIST_KEYRING + - scsi: target: core: Fix deadlock due to recursive locking + - ima: rework CONFIG_IMA dependency block + - NFSv4: Fix a nfs4_state_manager() race + - bpf, sockmap: Reject sk_msg egress redirects to non-TCP sockets + - modpost: add missing else to the "of" check + - net: fix possible store tearing in neigh_periodic_work() + - ipv4, ipv6: Fix handling of transhdrlen in __ip{,6}_append_data() + - ptp: ocp: Fix error handling in ptp_ocp_device_init + - net: dsa: mv88e6xxx: Avoid EEPROM timeout when EEPROM is absent + - net: usb: smsc75xx: Fix uninit-value access in __smsc75xx_read_reg + - net: nfc: llcp: Add lock when modifying device list + - net: ethernet: ti: am65-cpsw: Fix error code in + am65_cpsw_nuss_init_tx_chns() + - ibmveth: Remove condition to recompute TCP header checksum. + - netfilter: handle the connecting collision properly in + nf_conntrack_proto_sctp + - netfilter: nf_tables: nft_set_rbtree: fix spurious insertion failure + - ipv4: Set offload_failed flag in fibmatch results + - net: stmmac: dwmac-stm32: fix resume on STM32 MCU + - tipc: fix a potential deadlock on &tx->lock + - tcp: fix quick-ack counting to count actual ACKs of new data + - tcp: fix delayed ACKs for MSS boundary condition + - sctp: update transport state when processing a dupcook packet + - sctp: update hb timer immediately after users change hb_interval + - HID: sony: remove duplicate NULL check before calling usb_free_urb() + - HID: intel-ish-hid: ipc: Disable and reenable ACPI GPE bit + - dm zoned: free dmz->ddev array in dmz_put_zoned_devices + - RDMA/core: Require admin capabilities to set system parameters + - of: dynamic: Fix potential memory leak in of_changeset_action() + - IB/mlx4: Fix the size of a buffer in add_port_entries() + - gpio: aspeed: fix the GPIO number passed to pinctrl_gpio_set_config() + - gpio: pxa: disable pinctrl calls for MMP_GPIO + - RDMA/cma: Initialize ib_sa_multicast structure to 0 when join + - RDMA/cma: Fix truncation compilation warning in make_cma_ports + - RDMA/uverbs: Fix typo of sizeof argument + - RDMA/siw: Fix connection failure handling + - RDMA/mlx5: Fix NULL string error + - ksmbd: fix uaf in smb20_oplock_break_ack + - parisc: Restore __ldcw_align for PA-RISC 2.0 processors + - xen/events: replace evtchn_rwlock with RCU + - Linux 5.15.135 + * CVE-2023-46813 + - x86/sev: Disable MMIO emulation from user mode + - x86/sev: Check IOBM for IOIO exceptions from user-space + - x86/sev: Check for user-space IOIO pointing to kernel space + * CVE-2023-6111 + - netfilter: nf_tables: remove catchall element in GC sync path + * Change in trace file leads to test timeout in ftrace tests on 5.15 ARM64 + (LP: #2029405) + - selftests/ftrace: Stop tracing while reading the trace file by default + * Fix ADL: System enabled AHCI can't get into s0ix when attached ODD + (LP: #2037493) + - ata: ahci: Add Intel Alder Lake-P AHCI controller to low power chipsets list + * Kernel doesn't compile with CONFIG_IMA (LP: #2041842) + - SAUCE: LSM: Fix typo in ima_filter_rule_match struct argument + * CVE-2023-32252 + - ksmbd: add smb-direct shutdown + - ksmbd: Implements sess->ksmbd_chann_list as xarray + - ksmbd: fix racy issue from session setup and logoff + * Jammy update: v5.15.134 upstream stable release (LP: #2044023) + - NFS: Use the correct commit info in nfs_join_page_group() + - NFS: More fixes for nfs_direct_write_reschedule_io() + - NFS/pNFS: Report EINVAL errors from connect() to the server + - SUNRPC: Mark the cred for revalidation if the server rejects it + - NFSv4.1: use EXCHGID4_FLAG_USE_PNFS_DS for DS server + - NFSv4.1: fix pnfs MDS=DS session trunking + - tracing: Make trace_marker{,_raw} stream-like + - tracing: Increase trace array ref count on enable and filter files + - ata: ahci: Drop pointless VPRINTK() calls and convert the remaining ones + - ata: libahci: clear pending interrupt status + - ext4: scope ret locally in ext4_try_to_trim_range() + - ext4: change s_last_trim_minblks type to unsigned long + - ext4: replace the traditional ternary conditional operator with with + max()/min() + - ext4: move setting of trimmed bit into ext4_try_to_trim_range() + - ext4: do not let fstrim block system suspend + - tracing: Have event inject files inc the trace array ref count + - netfilter: nft_set_rbtree: use read spinlock to avoid datapath contention + - netfilter: nft_set_pipapo: call nft_trans_gc_queue_sync() in catchall GC + - netfilter: nft_set_pipapo: stop GC iteration if GC transaction allocation + fails + - netfilter: nft_set_hash: try later when GC hits EAGAIN on iteration + - netfilter: nf_tables: fix memleak when more than 255 elements expired + - ASoC: meson: spdifin: start hw on dai probe + - netfilter: nf_tables: disallow element removal on anonymous sets + - bpf: Avoid deadlock when using queue and stack maps from NMI + - selftests: tls: swap the TX and RX sockets in some tests + - net/core: Fix ETH_P_1588 flow dissector + - ASoC: imx-audmix: Fix return error with devm_clk_get() + - iavf: do not process adminq tasks when __IAVF_IN_REMOVE_TASK is set + - i40e: Add VF VLAN pruning + - i40e: Fix VF VLAN offloading when port VLAN is configured + - ionic: fix 16bit math issue when PAGE_SIZE >= 64KB + - igc: Fix infinite initialization loop with early XDP redirect + - powerpc/perf/hv-24x7: Update domain value check + - dccp: fix dccp_v4_err()/dccp_v6_err() again + - platform/x86: intel_scu_ipc: Check status after timeout in busy_loop() + - platform/x86: intel_scu_ipc: Check status upon timeout in + ipc_wait_for_interrupt() + - platform/x86: intel_scu_ipc: Don't override scu in + intel_scu_ipc_dev_simple_command() + - platform/x86: intel_scu_ipc: Fail IPC send if still busy + - x86/srso: Fix srso_show_state() side effect + - x86/srso: Fix SBPB enablement for spec_rstack_overflow=off + - net: hns3: fix GRE checksum offload issue + - net: hns3: only enable unicast promisc when mac table full + - net: hns3: fix fail to delete tc flower rules during reset issue + - net: hns3: add 5ms delay before clear firmware reset irq source + - net: bridge: use DEV_STATS_INC() + - team: fix null-ptr-deref when team device type is changed + - net: rds: Fix possible NULL-pointer dereference + - netfilter: nf_tables: disable toggling dormant table state more than once + - locking/seqlock: Do the lockdep annotation before locking in + do_write_seqcount_begin_nested() + - net: ena: Flush XDP packets on error. + - bnxt_en: Flush XDP for bnxt_poll_nitroa0()'s NAPI + - igc: Expose tx-usecs coalesce setting to user + - Fix up backport of 136191703038 ("interconnect: Teach lockdep about + icc_bw_lock order") + - gpio: tb10x: Fix an error handling path in tb10x_gpio_probe() + - i2c: mux: demux-pinctrl: check the return value of devm_kstrdup() + - i2c: mux: gpio: Replace custom acpi_get_local_address() + - i2c: mux: gpio: Add missing fwnode_handle_put() + - xfs: bound maximum wait time for inodegc work + - xfs: introduce xfs_inodegc_push() + - xfs: explicitly specify cpu when forcing inodegc delayed work to run + immediately + - xfs: check that per-cpu inodegc workers actually run on that cpu + - xfs: disable reaping in fscounters scrub + - xfs: fix xfs_inodegc_stop racing with mod_delayed_work + - Input: i8042 - rename i8042-x86ia64io.h to i8042-acpipnpio.h + - Input: i8042 - add quirk for TUXEDO Gemini 17 Gen1/Clevo PD70PN + - netfilter: exthdr: add support for tcp option removal + - netfilter: nft_exthdr: Fix non-linear header modification + - ata: libata: Rename link flag ATA_LFLAG_NO_DB_DELAY + - ata: ahci: Add support for AMD A85 FCH (Hudson D4) + - ata: ahci: Rename board_ahci_mobile + - ata: ahci: Add Elkhart Lake AHCI controller + - scsi: qla2xxx: Select qpair depending on which CPU post_cmd() gets called + - scsi: qla2xxx: Use raw_smp_processor_id() instead of smp_processor_id() + - btrfs: reset destination buffer when read_extent_buffer() gets invalid range + - MIPS: Alchemy: only build mmc support helpers if au1xmmc is enabled + - drm/bridge: ti-sn65dsi83: Do not generate HFP/HBP/HSA and EOT packet + - bus: ti-sysc: Use fsleep() instead of usleep_range() in sysc_reset() + - bus: ti-sysc: Fix missing AM35xx SoC matching + - clk: tegra: fix error return case for recalc_rate + - treewide: Replace GPLv2 boilerplate/reference with SPDX - gpl-2.0_56.RULE + (part 1) + - ARM: dts: omap: correct indentation + - ARM: dts: ti: omap: Fix bandgap thermal cells addressing for omap3/4 + - ARM: dts: ti: omap: motorola-mapphone: Fix abe_clkctrl warning on boot + - bus: ti-sysc: Fix SYSC_QUIRK_SWSUP_SIDLE_ACT handling for uart wake-up + - power: supply: ucs1002: fix error code in ucs1002_get_property() + - firmware: imx-dsp: Fix an error handling path in imx_dsp_setup_channels() + - xtensa: add default definition for XCHAL_HAVE_DIV32 + - xtensa: iss/network: make functions static + - xtensa: boot: don't add include-dirs + - xtensa: boot/lib: fix function prototypes + - soc: imx8m: Enable OCOTP clock for imx8mm before reading registers + - gpio: pmic-eic-sprd: Add can_sleep flag for PMIC EIC chip + - i2c: npcm7xx: Fix callback completion ordering + - dma-debug: don't call __dma_entry_alloc_check_leak() under free_entries_lock + - spi: sun6i: reduce DMA RX transfer width to single byte + - spi: sun6i: fix race between DMA RX transfer completion and RX FIFO drain + - parisc: sba: Fix compile warning wrt list of SBA devices + - parisc: iosapic.c: Fix sparse warnings + - parisc: drivers: Fix sparse warning + - parisc: irq: Make irq_stack_union static to avoid sparse warning + - scsi: qedf: Add synchronization between I/O completions and abort + - scsi: ufs: core: Move __ufshcd_send_uic_cmd() outside host_lock + - selftests/ftrace: Correctly enable event in instance-event.tc + - ring-buffer: Avoid softlockup in ring_buffer_resize() + - btrfs: improve error message after failure to add delayed dir index item + - selftests: fix dependency checker script + - ring-buffer: Do not attempt to read past "commit" + - platform/mellanox: mlxbf-bootctl: add NET dependency into Kconfig + - drm/amd/display: Don't check registers, if using AUX BL control + - drm/amdgpu: Handle null atom context in VBIOS info ioctl + - scsi: pm80xx: Use phy-specific SAS address when sending PHY_START command + - scsi: pm80xx: Avoid leaking tags when processing + OPC_INB_SET_CONTROLLER_CONFIG command + - smb3: correct places where ENOTSUPP is used instead of preferred EOPNOTSUPP + - ata: libata-eh: do not clear ATA_PFLAG_EH_PENDING in ata_eh_reset() + - spi: nxp-fspi: reset the FLSHxCR1 registers + - spi: stm32: add a delay before SPI disable + - ASoC: fsl: imx-pcm-rpmsg: Add SNDRV_PCM_INFO_BATCH flag + - bpf: Clarify error expectations from bpf_clone_redirect + - ASoC: imx-rpmsg: Set ignore_pmdown_time for dai_link + - media: vb2: frame_vector.c: replace WARN_ONCE with a comment + - powerpc/watchpoints: Disable preemption in thread_change_pc() + - powerpc/watchpoint: Disable pagefaults when getting user instruction + - powerpc/watchpoints: Annotate atomic context in more places + - ncsi: Propagate carrier gain/loss events to the NCSI controller + - fbdev/sh7760fb: Depend on FB=y + - perf build: Define YYNOMEM as YYNOABORT for bison < 3.81 + - sched/cpuacct: Optimize away RCU read lock + - cgroup: Fix suspicious rcu_dereference_check() usage warning + - nvme-pci: factor the iod mempool creation into a helper + - nvme-pci: factor out a nvme_pci_alloc_dev helper + - nvme-pci: do not set the NUMA node of device if it has none + - watchdog: iTCO_wdt: No need to stop the timer in probe + - watchdog: iTCO_wdt: Set NO_REBOOT if the watchdog is not already running + - i40e: fix potential NULL pointer dereferencing of pf->vf + i40e_sync_vsi_filters() + - scsi: qla2xxx: Fix NULL pointer dereference in target mode + - nvme-pci: always return an ERR_PTR from nvme_pci_alloc_dev + - smack: Record transmuting in smk_transmuted + - smack: Retrieve transmuting information in smack_inode_getsecurity() + - Smack:- Use overlay inode label in smack_inode_copy_up() + - iommu/arm-smmu-v3: Fix soft lockup triggered by arm_smmu_mm_invalidate_range + - x86/srso: Add SRSO mitigation for Hygon processors + - Revert "tty: n_gsm: fix UAF in gsm_cleanup_mux" + - serial: 8250_port: Check IRQ data before use + - nilfs2: fix potential use after free in nilfs_gccache_submit_read_data() + - ALSA: hda: Disable power save for solving pop issue on Lenovo ThinkCentre + M70q + - ata: libata-scsi: ignore reserved bits for REPORT SUPPORTED OPERATION CODES + - i2c: i801: unregister tco_pdev in i801_probe() error path + - sched/rt: Fix live lock between select_fallback_rq() and RT push + - io_uring/fs: remove sqe->rw_flags checking from LINKAT + - Revert "SUNRPC dont update timeout value on connection reset" + - proc: nommu: /proc//maps: release mmap read lock + - ring-buffer: Update "shortest_full" in polling + - btrfs: properly report 0 avail for very full file systems + - bpf: Fix BTF_ID symbol generation collision + - bpf: Fix BTF_ID symbol generation collision in tools/ + - net: thunderbolt: Fix TCPv6 GSO checksum calculation + - ata: libata-core: Fix ata_port_request_pm() locking + - ata: libata-core: Fix port and device removal + - ata: libata-core: Do not register PM operations for SAS ports + - ata: libata-sata: increase PMP SRST timeout to 10s + - fs: binfmt_elf_efpic: fix personality for ELF-FDPIC + - drm/meson: fix memory leak on ->hpd_notify callback + - Linux 5.15.134 + * Jammy update: v5.15.133 upstream stable release (LP: #2043422) + - autofs: fix memory leak of waitqueues in autofs_catatonic_mode + - btrfs: output extra debug info if we failed to find an inline backref + - locks: fix KASAN: use-after-free in trace_event_raw_event_filelock_lock + - ACPICA: Add AML_NO_OPERAND_RESOLVE flag to Timer + - kernel/fork: beware of __put_task_struct() calling context + - rcuscale: Move rcu_scale_writer() schedule_timeout_uninterruptible() to + _idle() + - scftorture: Forgive memory-allocation failure if KASAN + - ACPI: video: Add backlight=native DMI quirk for Lenovo Ideapad Z470 + - perf/smmuv3: Enable HiSilicon Erratum 162001900 quirk for HIP08/09 + - perf/imx_ddr: speed up overflow frequency of cycle + - hw_breakpoint: fix single-stepping when using bpf_overflow_handler + - ACPI: x86: s2idle: Catch multiple ACPI_TYPE_PACKAGE objects + - devlink: remove reload failed checks in params get/set callbacks + - crypto: lrw,xts - Replace strlcpy with strscpy + - wifi: ath9k: fix fortify warnings + - wifi: ath9k: fix printk specifier + - wifi: mwifiex: fix fortify warning + - wifi: wil6210: fix fortify warnings + - crypto: lib/mpi - avoid null pointer deref in mpi_cmp_ui() + - tpm_tis: Resend command to recover from data transfer errors + - mmc: sdhci-esdhc-imx: improve ESDHC_FLAG_ERR010450 + - alx: fix OOB-read compiler warning + - wifi: mac80211: check S1G action frame size + - netfilter: ebtables: fix fortify warnings in size_entry_mwt() + - wifi: mac80211_hwsim: drop short frames + - drm/bridge: tc358762: Instruct DSI host to generate HSE packets + - arm64: dts: qcom: sm6125-pdx201: correct ramoops pmsg-size + - arm64: dts: qcom: sm8150-kumano: correct ramoops pmsg-size + - arm64: dts: qcom: sm8250-edo: correct ramoops pmsg-size + - samples/hw_breakpoint: Fix kernel BUG 'invalid opcode: 0000' + - ALSA: hda: intel-dsp-cfg: add LunarLake support + - drm/amd/display: Blocking invalid 420 modes on HDMI TMDS for DCN31 + - drm/exynos: fix a possible null-pointer dereference due to data race in + exynos_drm_crtc_atomic_disable() + - bus: ti-sysc: Configure uart quirks for k3 SoC + - md: raid1: fix potential OOB in raid1_remove_disk() + - ext2: fix datatype of block number in ext2_xattr_set2() + - fs/jfs: prevent double-free in dbUnmount() after failed jfs_remount() + - jfs: fix invalid free of JFS_IP(ipimap)->i_imap in diUnmount + - ARM: 9317/1: kexec: Make smp stop calls asynchronous + - powerpc/pseries: fix possible memory leak in ibmebus_bus_init() + - PCI: fu740: Set the number of MSI vectors + - media: dvb-usb-v2: af9035: Fix null-ptr-deref in af9035_i2c_master_xfer + - media: dw2102: Fix null-ptr-deref in dw2102_i2c_transfer() + - media: af9005: Fix null-ptr-deref in af9005_i2c_xfer + - media: anysee: fix null-ptr-deref in anysee_master_xfer + - media: az6007: Fix null-ptr-deref in az6007_i2c_xfer() + - media: dvb-usb-v2: gl861: Fix null-ptr-deref in gl861_i2c_master_xfer + - media: tuners: qt1010: replace BUG_ON with a regular error + - media: pci: cx23885: replace BUG with error return + - usb: cdns3: Put the cdns set active part outside the spin lock + - usb: gadget: fsl_qe_udc: validate endpoint index for ch9 udc + - tools: iio: iio_generic_buffer: Fix some integer type and calculation + - scsi: target: iscsi: Fix buffer overflow in lio_target_nacl_info_show() + - serial: cpm_uart: Avoid suspicious locking + - usb: ehci: add workaround for chipidea PORTSC.PEC bug + - media: pci: ipu3-cio2: Initialise timing struct to avoid a compiler warning + - kobject: Add sanity check for kset->kobj.ktype in kset_register() + - interconnect: Fix locking for runpm vs reclaim + - printk: Consolidate console deferred printing + - jbd2: refactor wait logic for transaction updates into a common function + - jbd2: fix use-after-free of transaction_t race + - jbd2: kill t_handle_lock transaction spinlock + - jbd2: rename jbd_debug() to jbd2_debug() + - jbd2: correct the end of the journal recovery scan range + - mtd: rawnand: brcmnand: Allow SoC to provide I/O operations + - mtd: rawnand: brcmnand: Fix ECC level field setting for v7.2 controller + - MIPS: Use "grep -E" instead of "egrep" + - perf test: Remove bash construct from stat_bpf_counters.sh test + - perf test shell stat_bpf_counters: Fix test on Intel + - btrfs: move btrfs_pinned_by_swapfile prototype into volumes.h + - btrfs: add a helper to read the superblock metadata_uuid + - btrfs: compare the correct fsid/metadata_uuid in btrfs_validate_super + - drm: gm12u320: Fix the timeout usage for usb_bulk_msg() + - scsi: qla2xxx: Fix NULL vs IS_ERR() bug for debugfs_create_dir() + - selftests: tracing: Fix to unmount tracefs for recovering environment + - scsi: lpfc: Fix the NULL vs IS_ERR() bug for debugfs_create_file() + - x86/boot/compressed: Reserve more memory for page tables + - x86/purgatory: Remove LTO flags + - samples/hw_breakpoint: fix building without module unloading + - md/raid1: fix error: ISO C90 forbids mixed declarations + - attr: block mode changes of symlinks + - ovl: fix failed copyup of fileattr on a symlink + - ovl: fix incorrect fdput() on aio completion + - btrfs: fix lockdep splat and potential deadlock after failure running + delayed items + - btrfs: release path before inode lookup during the ino lookup ioctl + - tracing: Have tracing_max_latency inc the trace array ref count + - tracing: Have current_trace inc the trace array ref count + - tracing: Have option files inc the trace array ref count + - nfsd: fix change_info in NFSv4 RENAME replies + - tracefs: Add missing lockdown check to tracefs_create_dir() + - i2c: aspeed: Reset the i2c controller when timeout occurs + - ata: libata: disallow dev-initiated LPM transitions to unsupported states + - scsi: megaraid_sas: Fix deadlock on firmware crashdump + - scsi: pm8001: Setup IRQs on resume + - ext4: fix rec_len verify error + - drm/amd/display: fix the white screen issue when >= 64GB DRAM + - drm/amdgpu: fix amdgpu_cs_p1_user_fence + - drm/amd/display: enable cursor degamma for DCN3+ DRM legacy gamma + - interconnect: Teach lockdep about icc_bw_lock order + - Linux 5.15.133 + * Jammy update: v5.15.132 upstream stable release (LP: #2041702) + - ARM: dts: imx: update sdma node name format + - ARM: dts: imx7s: Drop dma-apb interrupt-names + - ARM: dts: imx: Adjust dma-apbh node name + - ARM: dts: imx: Set default tuning step for imx7d usdhc + - phy: qcom-snps-femto-v2: use qcom_snps_hsphy_suspend/resume error code + - media: pulse8-cec: handle possible ping error + - media: pci: cx23885: fix error handling for cx23885 ATSC boards + - 9p: virtio: make sure 'offs' is initialized in zc_request + - ksmbd: fix out of bounds in smb3_decrypt_req() + - ksmbd: no response from compound read + - ASoC: da7219: Flush pending AAD IRQ when suspending + - ASoC: da7219: Check for failure reading AAD IRQ events + - ethernet: atheros: fix return value check in atl1c_tso_csum() + - vxlan: generalize vxlan_parse_gpe_hdr and remove unused args + - m68k: Fix invalid .section syntax + - s390/dasd: use correct number of retries for ERP requests + - s390/dasd: fix hanging device after request requeue + - fs/nls: make load_nls() take a const parameter + - ASoC: rt5682-sdw: fix for JD event handling in ClockStop Mode0 + - ASoc: codecs: ES8316: Fix DMIC config + - ASoC: rt711: fix for JD event handling in ClockStop Mode0 + - ASoC: rt711-sdca: fix for JD event handling in ClockStop Mode0 + - ASoC: atmel: Fix the 8K sample parameter in I2SC master + - platform/x86: intel: hid: Always call BTNL ACPI method + - platform/x86/intel/hid: Add HP Dragonfly G2 to VGBS DMI quirks + - platform/x86: huawei-wmi: Silence ambient light sensor + - drm/amd/display: Exit idle optimizations before attempt to access PHY + - ovl: Always reevaluate the file signature for IMA + - ata: pata_arasan_cf: Use dev_err_probe() instead dev_err() in data_xfer() + - security: keys: perform capable check only on privileged operations + - kprobes: Prohibit probing on CFI preamble symbol + - clk: fixed-mmio: make COMMON_CLK_FIXED_MMIO depend on HAS_IOMEM + - vmbus_testing: fix wrong python syntax for integer value comparison + - net: usb: qmi_wwan: add Quectel EM05GV2 + - wifi: brcmfmac: Fix field-spanning write in brcmf_scan_params_v2_to_v1() + - idmaengine: make FSL_EDMA and INTEL_IDMA64 depends on HAS_IOMEM + - scsi: lpfc: Remove reftag check in DIF paths + - scsi: qedi: Fix potential deadlock on &qedi_percpu->p_work_lock + - net: hns3: restore user pause configure when disable autoneg + - drm/amdgpu: Match against exact bootloader status + - netlabel: fix shift wrapping bug in netlbl_catmap_setlong() + - bnx2x: fix page fault following EEH recovery + - sctp: handle invalid error codes without calling BUG() + - scsi: storvsc: Always set no_report_opcodes + - scsi: lpfc: Fix incorrect big endian type assignment in bsg loopback path + - ALSA: seq: oss: Fix racy open/close of MIDI devices + - tracing: Introduce pipe_cpumask to avoid race on trace_pipes + - platform/mellanox: Fix mlxbf-tmfifo not handling all virtio CONSOLE + notifications + - arm64: lib: Import latest version of Arm Optimized Routines' strncmp + - of: kexec: Mark ima_{free,stable}_kexec_buffer() as __init + - udf: Check consistency of Space Bitmap Descriptor + - udf: Handle error when adding extent to a file + - Revert "net: macsec: preserve ingress frame ordering" + - reiserfs: Check the return value from __getblk() + - eventfd: prevent underflow for eventfd semaphores + - fs: Fix error checking for d_hash_and_lookup() + - tmpfs: verify {g,u}id mount options correctly + - selftests/harness: Actually report SKIP for signal tests + - ARM: ptrace: Restore syscall restart tracing + - ARM: ptrace: Restore syscall skipping for tracers + - refscale: Fix uninitalized use of wait_queue_head_t + - OPP: Fix passing 0 to PTR_ERR in _opp_attach_genpd() + - selftests/resctrl: Make resctrl_tests run using kselftest framework + - selftests/resctrl: Add resctrl.h into build deps + - selftests/resctrl: Don't leak buffer in fill_cache() + - selftests/resctrl: Unmount resctrl FS if child fails to run benchmark + - selftests/resctrl: Close perf value read fd on errors + - x86/decompressor: Don't rely on upper 32 bits of GPRs being preserved + - perf/imx_ddr: don't enable counter0 if none of 4 counters are used + - selftests/futex: Order calls to futex_lock_pi + - s390/pkey: fix/harmonize internal keyblob headers + - s390/paes: fix PKEY_TYPE_EP11_AES handling for secure keyblobs + - ACPI: x86: s2idle: Post-increment variables when getting constraints + - ACPI: x86: s2idle: Fix a logic error parsing AMD constraints table + - x86/efistub: Fix PCI ROM preservation in mixed mode + - cpufreq: powernow-k8: Use related_cpus instead of cpus in driver.exit() + - bpftool: Use a local bpf_perf_event_value to fix accessing its fields + - bpf: Clear the probe_addr for uprobe + - tcp: tcp_enter_quickack_mode() should be static + - hwrng: nomadik - keep clock enabled while hwrng is registered + - hwrng: pic32 - use devm_clk_get_enabled + - regmap: rbtree: Use alloc_flags for memory allocations + - udp: re-score reuseport groups when connected sockets are present + - bpf: reject unhashed sockets in bpf_sk_assign + - ipv6: Add reasons for skb drops to __udp6_lib_rcv + - wifi: mt76: testmode: add nla_policy for MT76_TM_ATTR_TX_LENGTH + - spi: tegra20-sflash: fix to check return value of platform_get_irq() in + tegra_sflash_probe() + - can: gs_usb: gs_usb_receive_bulk_callback(): count RX overflow errors also + in case of OOM + - wifi: mt76: mt7915: fix power-limits while chan_switch + - wifi: mwifiex: Fix OOB and integer underflow when rx packets + - wifi: mwifiex: fix error recovery in PCIE buffer descriptor management + - crypto: stm32 - Properly handle pm_runtime_get failing + - crypto: api - Use work queue in crypto_destroy_instance + - Bluetooth: nokia: fix value check in nokia_bluetooth_serdev_probe() + - Bluetooth: Fix potential use-after-free when clear keys + - net: tcp: fix unexcepted socket die when snd_wnd is 0 + - selftests/bpf: Clean up fmod_ret in bench_rename test script + - net-memcg: Fix scope of sockmem pressure indicators + - ice: ice_aq_check_events: fix off-by-one check when filling buffer + - crypto: caam - fix unchecked return value error + - hwrng: iproc-rng200 - Implement suspend and resume calls + - lwt: Fix return values of BPF xmit ops + - lwt: Check LWTUNNEL_XMIT_CONTINUE strictly + - fs: ocfs2: namei: check return value of ocfs2_add_entry() + - wifi: mwifiex: fix memory leak in mwifiex_histogram_read() + - wifi: mwifiex: Fix missed return in oob checks failed path + - samples/bpf: fix broken map lookup probe + - wifi: ath9k: fix races between ath9k_wmi_cmd and ath9k_wmi_ctrl_rx + - wifi: ath9k: protect WMI command response buffer replacement with a lock + - wifi: nl80211/cfg80211: add forgotten nla_policy for BSS color attribute + - wifi: mwifiex: avoid possible NULL skb pointer dereference + - Bluetooth: btusb: Do not call kfree_skb() under spin_lock_irqsave() + - wifi: ath9k: use IS_ERR() with debugfs_create_dir() + - net: arcnet: Do not call kfree_skb() under local_irq_disable() + - mlxsw: i2c: Fix chunk size setting in output mailbox buffer + - mlxsw: i2c: Limit single transaction buffer size + - hwmon: (tmp513) Fix the channel number in tmp51x_is_visible() + - netrom: Deny concurrent connect(). + - drm/bridge: tc358764: Fix debug print parameter order + - quota: factor out dquot_write_dquot() + - quota: rename dquot_active() to inode_quota_active() + - quota: add new helper dquot_active() + - quota: fix dqput() to follow the guarantees dquot_srcu should provide + - ASoC: stac9766: fix build errors with REGMAP_AC97 + - soc: qcom: ocmem: Add OCMEM hardware version print + - soc: qcom: ocmem: Fix NUM_PORTS & NUM_MACROS macros + - arm64: dts: qcom: sm8250: correct dynamic power coefficients + - arm64: dts: qcom: sm8250-edo: Add gpio line names for TLMM + - arm64: dts: qcom: sm8250-edo: Add GPIO line names for PMIC GPIOs + - arm64: dts: qcom: sm8250-edo: Rectify gpio-keys + - arm64: dts: qcom: msm8996: Add missing interrupt to the USB2 controller + - arm64: dts: qcom: sm8350: Add missing LMH interrupts to cpufreq + - arm64: dts: qcom: sm8350: Use proper CPU compatibles + - arm64: dts: qcom: pmk8350: fix ADC-TM compatible string + - arm64: dts: qcom: sm8250: Mark PCIe hosts as DMA coherent + - drm/amdgpu: avoid integer overflow warning in amdgpu_device_resize_fb_bar() + - ARM: dts: BCM53573: Add cells sizes to PCIe node + - ARM: dts: BCM53573: Use updated "spi-gpio" binding properties + - arm64: dts: qcom: sm8250-sony-xperia: correct GPIO keys wakeup again + - arm64: dts: qcom: pmi8998: Add node for WLED + - arm64: dts: qcom: correct SPMI WLED register range encoding + - arm64: dts: qcom: pm660l: Add missing short interrupt + - arm64: dts: qcom: pmi8994: Remove hardcoded linear WLED enabled-strings + - arm64: dts: qcom: Move WLED num-strings from pmi8994 to sony-xperia-tone + - arm64: dts: qcom: pmi8994: Add missing OVP interrupt + - drm/etnaviv: fix dumping of active MMU context + - x86/mm: Fix PAT bit missing from page protection modify mask + - ARM: dts: s3c64xx: align pinctrl with dtschema + - ARM: dts: samsung: s3c6410-mini6410: correct ethernet reg addresses (split) + - ARM: dts: s5pv210: add dummy 5V regulator for backlight on SMDKv210 + - ARM: dts: samsung: s5pv210-smdkv210: correct ethernet reg addresses (split) + - drm: adv7511: Fix low refresh rate register for ADV7533/5 + - ARM: dts: BCM53573: Fix Ethernet info for Luxul devices + - arm64: dts: qcom: sdm845: Add missing RPMh power domain to GCC + - arm64: dts: qcom: sdm845: Fix the min frequency of "ice_core_clk" + - drm/amdgpu: Update min() to min_t() in 'amdgpu_info_ioctl' + - md/raid10: factor out dereference_rdev_and_rrdev() + - md/raid10: use dereference_rdev_and_rrdev() to get devices + - md/bitmap: don't set max_write_behind if there is no write mostly device + - md/md-bitmap: hold 'reconfig_mutex' in backlog_store() + - drm/msm: Update dev core dump to not print backwards + - drm/tegra: dpaux: Fix incorrect return value of platform_get_irq + - of: unittest: fix null pointer dereferencing in + of_unittest_find_node_by_name() + - arm64: dts: qcom: sm8150: Fix the I2C7 interrupt + - drm/armada: Fix off-by-one error in armada_overlay_get_property() + - drm/panel: simple: Add missing connector type and pixel format for AUO + T215HVN01 + - ima: Remove deprecated IMA_TRUSTED_KEYRING Kconfig + - [Config] updateconfigs for IMA_TRUSTED_KEYRING + - drm: xlnx: zynqmp_dpsub: Add missing check for dma_set_mask + - drm/msm/mdp5: Don't leak some plane state + - firmware: meson_sm: fix to avoid potential NULL pointer dereference + - smackfs: Prevent underflow in smk_set_cipso() + - drm/amd/pm: fix variable dereferenced issue in amdgpu_device_attr_create() + - drm/msm/a2xx: Call adreno_gpu_init() earlier + - audit: fix possible soft lockup in __audit_inode_child() + - io_uring: fix drain stalls by invalid SQE + - bus: ti-sysc: Fix build warning for 64-bit build + - drm/mediatek: Remove freeing not dynamic allocated memory + - drm/mediatek: Fix potential memory leak if vmap() fail + - arm64: dts: qcom: apq8016-sbc: Fix ov5640 regulator supply names + - bus: ti-sysc: Fix cast to enum warning + - md: Set MD_BROKEN for RAID1 and RAID10 + - md: add error_handlers for raid0 and linear + - md/raid0: Factor out helper for mapping and submitting a bio + - md/raid0: Fix performance regression for large sequential writes + - md: raid0: account for split bio in iostat accounting + - of: overlay: Call of_changeset_init() early + - of: unittest: Fix overlay type in apply/revert check + - ALSA: ac97: Fix possible error value of *rac97 + - ipmi:ssif: Add check for kstrdup + - ipmi:ssif: Fix a memory leak when scanning for an adapter + - drivers: clk: keystone: Fix parameter judgment in _of_pll_clk_init() + - clk: sunxi-ng: Modify mismatched function name + - clk: qcom: gcc-sc7180: Fix up gcc_sdcc2_apps_clk_src + - EDAC/igen6: Fix the issue of no error events + - ext4: correct grp validation in ext4_mb_good_group + - ext4: avoid potential data overflow in next_linear_group + - clk: qcom: gcc-sm8250: Fix gcc_sdcc2_apps_clk_src + - clk: qcom: reset: Use the correct type of sleep/delay based on length + - clk: qcom: gcc-sm6350: Fix gcc_sdcc2_apps_clk_src + - PCI: microchip: Correct the DED and SEC interrupt bit offsets + - PCI: Mark NVIDIA T4 GPUs to avoid bus reset + - pinctrl: mcp23s08: check return value of devm_kasprintf() + - PCI: pciehp: Use RMW accessors for changing LNKCTL + - PCI/ASPM: Use RMW accessors for changing LNKCTL + - clk: imx8mp: fix sai4 clock + - clk: imx: composite-8m: fix clock pauses when set_rate would be a no-op + - powerpc/radix: Move some functions into #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE + - vfio/type1: fix cap_migration information leak + - powerpc/fadump: reset dump area size if fadump memory reserve fails + - powerpc/perf: Convert fsl_emb notifier to state machine callbacks + - drm/amdgpu: Use RMW accessors for changing LNKCTL + - drm/radeon: Use RMW accessors for changing LNKCTL + - net/mlx5: Use RMW accessors for changing LNKCTL + - wifi: ath11k: Use RMW accessors for changing LNKCTL + - wifi: ath10k: Use RMW accessors for changing LNKCTL + - PCI: dwc: Add start_link/stop_link inlines + - PCI: layerscape: Add the endpoint linkup notifier support + - PCI: layerscape: Add workaround for lost link capabilities during reset + - powerpc: Don't include lppaca.h in paca.h + - powerpc/pseries: Rework lppaca_shared_proc() to avoid DEBUG_PREEMPT + - nfs/blocklayout: Use the passed in gfp flags + - powerpc/iommu: Fix notifiers being shared by PCI and VIO buses + - ext4: fix unttached inode after power cut with orphan file feature enabled + - jfs: validate max amount of blocks before allocation. + - fs: lockd: avoid possible wrong NULL parameter + - NFSD: da_addr_body field missing in some GETDEVICEINFO replies + - NFS: Guard against READDIR loop when entry names exceed MAXNAMELEN + - NFSv4.2: fix handling of COPY ERR_OFFLOAD_NO_REQ + - pNFS: Fix assignment of xprtdata.cred + - RDMA/qedr: Remove a duplicate assignment in irdma_query_ah() + - media: ad5820: Drop unsupported ad5823 from i2c_ and of_device_id tables + - media: i2c: tvp5150: check return value of devm_kasprintf() + - media: v4l2-core: Fix a potential resource leak in v4l2_fwnode_parse_link() + - iommu/amd/iommu_v2: Fix pasid_state refcount dec hit 0 warning on pasid + unbind + - iommu: rockchip: Fix directory table address encoding + - drivers: usb: smsusb: fix error handling code in smsusb_init_device + - media: dib7000p: Fix potential division by zero + - media: dvb-usb: m920x: Fix a potential memory leak in m920x_i2c_xfer() + - media: cx24120: Add retval check for cx24120_message_send() + - scsi: hisi_sas: Modify v3 HW SSP underflow error processing + - scsi: hisi_sas: Modify v3 HW SATA completion error processing + - scsi: hisi_sas: Fix warnings detected by sparse + - scsi: hisi_sas: Fix normally completed I/O analysed as failed + - media: rkvdec: increase max supported height for H.264 + - media: mediatek: vcodec: Return NULL if no vdec_fb is found + - usb: phy: mxs: fix getting wrong state with mxs_phy_is_otg_host() + - scsi: RDMA/srp: Fix residual handling + - scsi: iscsi: Rename iscsi_set_param() to iscsi_if_set_param() + - scsi: iscsi: Add length check for nlattr payload + - scsi: iscsi: Add strlen() check in iscsi_if_set{_host}_param() + - scsi: be2iscsi: Add length check when parsing nlattrs + - scsi: qla4xxx: Add length check when parsing nlattrs + - serial: sprd: Assign sprd_port after initialized to avoid wrong access + - serial: sprd: Fix DMA buffer leak issue + - x86/APM: drop the duplicate APM_MINOR_DEV macro + - scsi: qedf: Do not touch __user pointer in + qedf_dbg_stop_io_on_error_cmd_read() directly + - scsi: qedf: Do not touch __user pointer in qedf_dbg_debug_cmd_read() + directly + - scsi: qedf: Do not touch __user pointer in qedf_dbg_fp_int_cmd_read() + directly + - RDMA/irdma: Replace one-element array with flexible-array member + - coresight: tmc: Explicit type conversions to prevent integer overflow + - dma-buf/sync_file: Fix docs syntax + - driver core: test_async: fix an error code + - iommu/sprd: Add missing force_aperture + - RDMA/hns: Fix port active speed + - RDMA/hns: Fix incorrect post-send with direct wqe of wr-list + - RDMA/hns: Fix CQ and QP cache affinity + - IB/uverbs: Fix an potential error pointer dereference + - fsi: aspeed: Reset master errors after CFAM reset + - iommu/qcom: Disable and reset context bank before programming + - iommu/vt-d: Fix to flush cache of PASID directory table + - platform/x86: dell-sysman: Fix reference leak + - media: go7007: Remove redundant if statement + - media: venus: hfi_venus: Only consider sys_idle_indicator on V1 + - USB: gadget: f_mass_storage: Fix unused variable warning + - media: ov5640: Enable MIPI interface in ov5640_set_power_mipi() + - media: i2c: ov2680: Set V4L2_CTRL_FLAG_MODIFY_LAYOUT on flips + - media: ov2680: Remove auto-gain and auto-exposure controls + - media: ov2680: Fix ov2680_bayer_order() + - media: ov2680: Fix vflip / hflip set functions + - media: ov2680: Remove VIDEO_V4L2_SUBDEV_API ifdef-s + - media: ov2680: Don't take the lock for try_fmt calls + - media: ov2680: Add ov2680_fill_format() helper function + - media: ov2680: Fix ov2680_set_fmt() which == V4L2_SUBDEV_FORMAT_TRY not + working + - media: ov2680: Fix regulators being left enabled on ov2680_power_on() errors + - media: i2c: rdacm21: Fix uninitialized value + - cgroup:namespace: Remove unused cgroup_namespaces_init() + - scsi: core: Use 32-bit hostnum in scsi_host_lookup() + - scsi: fcoe: Fix potential deadlock on &fip->ctlr_lock + - serial: tegra: handle clk prepare error in tegra_uart_hw_init() + - amba: bus: fix refcount leak + - Revert "IB/isert: Fix incorrect release of isert connection" + - HID: logitech-dj: Fix error handling in logi_dj_recv_switch_to_dj_mode() + - HID: multitouch: Correct devm device reference for hidinput input_dev name + - x86/speculation: Mark all Skylake CPUs as vulnerable to GDS + - tracing: Remove extra space at the end of hwlat_detector/mode + - tracing: Fix race issue between cpu buffer write and swap + - mtd: rawnand: brcmnand: Fix mtd oobsize + - phy/rockchip: inno-hdmi: use correct vco_div_5 macro on rk3328 + - phy/rockchip: inno-hdmi: round fractal pixclock in rk3328 recalc_rate + - phy/rockchip: inno-hdmi: do not power on rk3328 post pll on reg write + - rpmsg: glink: Add check for kstrdup + - leds: pwm: Fix error code in led_pwm_create_fwnode() + - leds: multicolor: Use rounded division when calculating color components + - leds: trigger: tty: Do not use LED_ON/OFF constants, use + led_blink_set_oneshot instead + - mtd: spi-nor: Check bus width while setting QE bit + - mtd: rawnand: fsmc: handle clk prepare error in fsmc_nand_resume() + - um: Fix hostaudio build errors + - dmaengine: ste_dma40: Add missing IRQ check in d40_probe + - cpufreq: Fix the race condition while updating the transition_task of policy + - virtio_ring: fix avail_wrap_counter in virtqueue_add_packed + - skbuff: skb_segment, Call zero copy functions before using skbuff frags + - PM / devfreq: Fix leak in devfreq_dev_release() + - ALSA: pcm: Fix missing fixup call in compat hw_refine ioctl + - rcu: dump vmalloc memory info safely + - printk: ringbuffer: Fix truncating buffer size min_t cast + - scsi: core: Fix the scsi_set_resid() documentation + - mm/vmalloc: add a safer version of find_vm_area() for debug + - media: i2c: ccs: Check rules is non-NULL + - PCI: rockchip: Use 64-bit mask on MSI 64-bit PCI address + - ipmi_si: fix a memleak in try_smi_init() + - ARM: OMAP2+: Fix -Warray-bounds warning in _pwrdm_state_switch() + - backlight/gpio_backlight: Compare against struct fb_info.device + - backlight/bd6107: Compare against struct fb_info.device + - backlight/lv5207lp: Compare against struct fb_info.device + - xtensa: PMU: fix base address for the newer hardware + - i3c: master: svc: fix probe failure when no i3c device exist + - arm64: csum: Fix OoB access in IP checksum code for negative lengths + - media: dvb: symbol fixup for dvb_attach() + - media: venus: hfi_venus: Write to VIDC_CTRL_INIT after unmasking interrupts + - Revert "scsi: qla2xxx: Fix buffer overrun" + - scsi: mpt3sas: Perform additional retries if doorbell read returns 0 + - ntb: Drop packets when qp link is down + - ntb: Clean up tx tail index on link down + - ntb: Fix calculation ntb_transport_tx_free_entry() + - Revert "PCI: Mark NVIDIA T4 GPUs to avoid bus reset" + - procfs: block chmod on /proc/thread-self/comm + - parisc: Fix /proc/cpuinfo output for lscpu + - dlm: fix plock lookup when using multiple lockspaces + - dccp: Fix out of bounds access in DCCP error handler + - X.509: if signature is unsupported skip validation + - net: handle ARPHRD_PPP in dev_is_mac_header_xmit() + - fsverity: skip PKCS#7 parser when keyring is empty + - mmc: renesas_sdhi: register irqs before registering controller + - pstore/ram: Check start of empty przs during init + - arm64: sdei: abort running SDEI handlers during crash + - s390/ipl: add missing secure/has_secure file to ipl type 'unknown' + - crypto: stm32 - fix loop iterating through scatterlist for DMA + - cpufreq: brcmstb-avs-cpufreq: Fix -Warray-bounds bug + - usb: typec: tcpm: set initial svdm version based on pd revision + - usb: typec: bus: verify partner exists in typec_altmode_attention + - x86/sgx: Break up long non-preemptible delays in sgx_vepc_release() + - perf/x86/uncore: Correct the number of CHAs on EMR + - tracing: Zero the pipe cpumask on alloc to avoid spurious -EBUSY + - md/md-bitmap: remove unnecessary local variable in backlog_store() + - udf: initialize newblock to 0 + - net/ipv6: SKB symmetric hash should incorporate transport ports + - io_uring: always lock in io_apoll_task_func + - io_uring: break out of iowq iopoll on teardown + - io_uring: break iopolling on signal + - scsi: qla2xxx: Adjust IOCB resource on qpair create + - scsi: qla2xxx: Limit TMF to 8 per function + - scsi: qla2xxx: Fix deletion race condition + - scsi: qla2xxx: fix inconsistent TMF timeout + - scsi: qla2xxx: Fix command flush during TMF + - scsi: qla2xxx: Fix erroneous link up failure + - scsi: qla2xxx: Turn off noisy message log + - scsi: qla2xxx: Fix session hang in gnl + - scsi: qla2xxx: Fix TMF leak through + - scsi: qla2xxx: Remove unsupported ql2xenabledif option + - scsi: qla2xxx: Flush mailbox commands on chip reset + - scsi: qla2xxx: Fix smatch warn for qla_init_iocb_limit() + - scsi: qla2xxx: Error code did not return to upper layer + - scsi: qla2xxx: Fix firmware resource tracking + - fbdev/ep93xx-fb: Do not assign to struct fb_info.dev + - clk: qcom: camcc-sc7180: fix async resume during probe + - drm/ast: Fix DRAM init on AST2200 + - clk: qcom: turingcc-qcs404: fix missing resume during probe + - lib/test_meminit: allocate pages up to order MAX_ORDER + - parisc: led: Fix LAN receive and transmit LEDs + - parisc: led: Reduce CPU overhead for disk & lan LED computation + - pinctrl: cherryview: fix address_space_handler() argument + - dt-bindings: clock: xlnx,versal-clk: drop select:false + - clk: qcom: gcc-mdm9615: use proper parent for pll0_vote clock + - soc: qcom: qmi_encdec: Restrict string length in decode + - clk: qcom: q6sstop-qcs404: fix missing resume during probe + - clk: qcom: mss-sc7180: fix missing resume during probe + - NFS: Fix a potential data corruption + - NFSv4/pnfs: minor fix for cleanup path in nfs4_get_device_info + - bus: mhi: host: Skip MHI reset if device is in RDDM + - kbuild: do not run depmod for 'make modules_sign' + - gfs2: Switch to wait_event in gfs2_logd + - gfs2: low-memory forced flush fixes + - kconfig: fix possible buffer overflow + - perf trace: Use zfree() to reduce chances of use after free + - perf trace: Really free the evsel->priv area + - pwm: atmel-tcb: Convert to platform remove callback returning void + - pwm: atmel-tcb: Harmonize resource allocation order + - pwm: atmel-tcb: Fix resource freeing in error path and remove + - backlight: gpio_backlight: Drop output GPIO direction check for initial + power state + - Input: tca6416-keypad - always expect proper IRQ number in i2c client + - Input: tca6416-keypad - fix interrupt enable disbalance + - perf annotate bpf: Don't enclose non-debug code with an assert() + - x86/virt: Drop unnecessary check on extended CPUID level in cpu_has_svm() + - perf vendor events: Update the JSON/events descriptions for power10 platform + - perf vendor events: Drop some of the JSON/events for power10 platform + - perf top: Don't pass an ERR_PTR() directly to perf_session__delete() + - watchdog: intel-mid_wdt: add MODULE_ALIAS() to allow auto-load + - pwm: lpc32xx: Remove handling of PWM channels + - net/sched: fq_pie: avoid stalls in fq_pie_timer() + - sctp: annotate data-races around sk->sk_wmem_queued + - ipv4: annotate data-races around fi->fib_dead + - net: read sk->sk_family once in sk_mc_loop() + - net: fib: avoid warn splat in flow dissector + - xsk: Fix xsk_diag use-after-free error during socket cleanup + - drm/i915/gvt: Drop unused helper intel_vgpu_reset_gtt() + - ipv4: ignore dst hint for multipath routes + - igb: disable virtualization features on 82580 + - veth: Fixing transmit return status for dropped packets + - net: ipv6/addrconf: avoid integer underflow in ipv6_create_tempaddr + - net: phy: micrel: Correct bit assignments for phy_device flags + - af_unix: Fix data-races around user->unix_inflight. + - af_unix: Fix data-race around unix_tot_inflight. + - af_unix: Fix data-races around sk->sk_shutdown. + - af_unix: Fix data race around sk->sk_err. + - kcm: Destroy mutex in kcm_exit_net() + - octeontx2-af: Fix truncation of smq in CN10K NIX AQ enqueue mbox handler + - igc: Change IGC_MIN to allow set rx/tx value between 64 and 80 + - igbvf: Change IGBVF_MIN to allow set rx/tx value between 64 and 80 + - igb: Change IGB_MIN to allow set rx/tx value between 64 and 80 + - s390/zcrypt: don't leak memory if dev_set_name() fails + - idr: fix param name in idr_alloc_cyclic() doc + - ip_tunnels: use DEV_STATS_INC() + - net: dsa: sja1105: fix bandwidth discrepancy between tc-cbs software and + offload + - net: dsa: sja1105: fix -ENOSPC when replacing the same tc-cbs too many times + - net: dsa: sja1105: complete tc-cbs offload support on SJA1110 + - net: hns3: fix byte order conversion issue in hclge_dbg_fd_tcam_read() + - net: hns3: fix debugfs concurrency issue between kfree buffer and read + - net: hns3: fix invalid mutex between tc qdisc and dcb ets command issue + - net: hns3: fix the port information display when sfp is absent + - net: hns3: remove GSO partial feature bit + - sh: boards: Fix CEU buffer size passed to dma_declare_coherent_memory() + - net/mlx5: Free IRQ rmap and notifier on kernel shutdown + - ARC: atomics: Add compiler barrier to atomic operations... + - dmaengine: sh: rz-dmac: Fix destination and source data size setting + - jbd2: fix checkpoint cleanup performance regression + - jbd2: check 'jh->b_transaction' before removing it from checkpoint + - ext4: add correct group descriptors and reserved GDT blocks to system zone + - lib: test_scanf: Add explicit type cast to result initialization in + test_number_prefix() + - ata: pata_falcon: fix IO base selection for Q40 + - ata: sata_gemini: Add missing MODULE_DESCRIPTION + - ata: pata_ftide010: Add missing MODULE_DESCRIPTION + - fuse: nlookup missing decrement in fuse_direntplus_link + - btrfs: free qgroup rsv on io failure + - btrfs: don't start transaction when joining with TRANS_JOIN_NOSTART + - btrfs: use the correct superblock to compare fsid in btrfs_validate_super + - mtd: rawnand: brcmnand: Fix crash during the panic_write + - mtd: rawnand: brcmnand: Fix potential out-of-bounds access in oob write + - mtd: rawnand: brcmnand: Fix potential false time out warning + - drm/amd/display: prevent potential division by zero errors + - MIPS: Fix CONFIG_CPU_DADDI_WORKAROUNDS `modules_install' regression + - perf hists browser: Fix hierarchy mode header + - perf tools: Handle old data in PERF_RECORD_ATTR + - perf hists browser: Fix the number of entries for 'e' key + - pcd: move the identify buffer into pcd_identify + - pcd: cleanup initialization + - block: move GENHD_FL_NATIVE_CAPACITY to disk->state + - block: move GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE to disk->event_flags + - block: rename GENHD_FL_NO_PART_SCAN to GENHD_FL_NO_PART + - block: don't add or resize partition on the disk with GENHD_FL_NO_PART + - ARM: dts: samsung: exynos4210-i9100: Fix LCD screen's physical size + - ARM: dts: BCM5301X: Extend RAM to full 256MB for Linksys EA6500 V2 + - net: ipv4: fix one memleak in __inet_del_ifa() + - kselftest/runner.sh: Propagate SIGTERM to runner child + - net/smc: use smc_lgr_list.lock to protect smc_lgr_list.list iterate in + smcr_port_add + - net: ethernet: mvpp2_main: fix possible OOB write in + mvpp2_ethtool_get_rxnfc() + - net: ethernet: mtk_eth_soc: fix possible NULL pointer dereference in + mtk_hwlro_get_fdir_all() + - hsr: Fix uninit-value access in fill_frame_info() + - net: dsa: sja1105: hide all multicast addresses from "bridge fdb show" + - r8152: check budget for r8152_poll() + - kcm: Fix memory leak in error path of kcm_sendmsg() + - platform/mellanox: mlxbf-tmfifo: Drop the Rx packet if no more descriptors + - platform/mellanox: mlxbf-tmfifo: Drop jumbo frames + - platform/mellanox: mlxbf-pmc: Fix potential buffer overflows + - platform/mellanox: mlxbf-pmc: Fix reading of unprogrammed events + - ipv6: fix ip6_sock_set_addr_preferences() typo + - ixgbe: fix timestamp configuration code + - kcm: Fix error handling for SOCK_DGRAM in kcm_sendmsg(). + - MIPS: Only fiddle with CHECKFLAGS if `need-compiler' + - drm/amd/display: Fix a bug when searching for insert_above_mpcc + - pcd: fix error codes in pcd_init_unit() + - Linux 5.15.132 + * CVE-2023-6176 + - net/tls: do not free tls_rec on async operation in bpf_exec_tx_verdict() + * CVE-2023-6039 + - timers: Use del_timer_sync() even on UP + - timers: Update kernel-doc for various functions + - timers: Rename del_timer_sync() to timer_delete_sync() + - timers: Rename del_timer() to timer_delete() + - timers: Split [try_to_]del_timer[_sync]() to prepare for shutdown mode + - timers: Add shutdown mechanism to the internal functions + - timers: Provide timer_shutdown[_sync]() + - clocksource/drivers/arm_arch_timer: Do not use timer namespace for + timer_shutdown() function + - clocksource/drivers/sp804: Do not use timer namespace for timer_shutdown() + function + - ARM: spear: Do not use timer namespace for timer_shutdown() function + - net: usb: lan78xx: reorder cleanup operations to avoid UAF bugs + + -- Jacob Martin Wed, 17 Jan 2024 09:42:13 -0600 + +linux-azure-5.15 (5.15.0-1054.62~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1054.62~20.04.1 -proposed tracker + (LP: #2048575) + + [ Ubuntu: 5.15.0-1054.62 ] + + * jammy/linux-azure: 5.15.0-1054.62 -proposed tracker (LP: #2048576) + * Packaging resync (LP: #1786013) + - [Packaging] remove helper scripts + * CVE-2023-5345 + - fs/smb/client: Reset password pointer to NULL + * jammy/linux: 5.15.0-92.102 -proposed tracker (LP: #2048614) + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + * CVE-2024-0193 + - netfilter: nf_tables: skip set commit for deleted/destroyed sets + * CVE-2023-6040 + - netfilter: nf_tables: Reject tables of unsupported family + * CVE-2023-6606 + - smb: client: fix OOB in smbCalcSize() + * CVE-2023-6817 + - netfilter: nft_set_pipapo: skip inactive elements during set walk + * CVE-2023-6932 + - ipv4: igmp: fix refcnt uaf issue when receiving igmp query packet + * CVE-2023-6931 + - perf/core: Add a new read format to get a number of lost samples + - perf: Fix perf_event_validate_size() + - perf: Fix perf_event_validate_size() lockdep splat + + -- Jacob Martin Tue, 16 Jan 2024 11:04:07 -0600 + +linux-azure-5.15 (5.15.0-1053.61~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1053.61~20.04.1 -proposed tracker + (LP: #2041564) + + [ Ubuntu: 5.15.0-1053.61 ] + + * jammy/linux-azure: 5.15.0-1053.61 -proposed tracker (LP: #2041565) + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + * Azure: Improve SQL DB latency (LP: #2040300) + - tcp: Set pingpong threshold via sysctl + * jammy/linux: 5.15.0-91.101 -proposed tracker (LP: #2043452) + * USB bus error after upgrading to proposed kernel on lunar and jammy + (LP: #2043197) + - USB: core: Fix oversight in SuperSpeed initialization + * jammy/linux: 5.15.0-90.100 -proposed tracker (LP: #2041603) + * CVE-2023-25775 + - RDMA/irdma: Remove irdma_uk_mw_bind() + - RDMA/irdma: Remove irdma_sc_send_lsmm_nostag() + - RDMA/irdma: Remove irdma_cqp_up_map_cmd() + - RDMA/irdma: Remove irdma_get_hw_addr() + - RDMA/irdma: Make irdma_uk_cq_init() return a void + - RDMA/irdma: optimize rx path by removing unnecessary copy + - RDMA/irdma: Remove enum irdma_status_code + - RDMA/irdma: Remove excess error variables + - RDMA/irdma: Prevent zero-length STAG registration + * CVE-2023-39189 + - netfilter: nfnetlink_osf: avoid OOB read + * SMC stats: Wrong bucket calculation for payload of exactly 4096 bytes + (LP: #2039575) + - net/smc: Fix pos miscalculation in statistics + * CVE-2023-45871 + - igb: set max size RX buffer when store bad packet is enabled + * CVE-2023-39193 + - netfilter: xt_sctp: validate the flag_info count + * CVE-2023-39192 + - netfilter: xt_u32: validate user space input + * CVE-2023-31085 + - ubi: Refuse attaching if mtd's erasesize is 0 + * CVE-2023-5717 + - perf: Disallow mis-matched inherited group reads + * CVE-2023-5178 + - nvmet-tcp: Fix a possible UAF in queue intialization setup + * CVE-2023-5158 + - vringh: don't use vringh_kiov_advance() in vringh_iov_xfer() + * [SRU][J/L/M] UBUNTU: [Packaging] Make WWAN driver a loadable module + (LP: #2033406) + - [Packaging] Make WWAN driver loadable modules + * HP ProBook 450 G8 Notebook fail to wifi test (LP: #2037513) + - iwlwifi: mvm: Don't fail if PPAG isn't supported + - wifi: iwlwifi: fw: skip PPAG for JF + * usbip: error: failed to open /usr/share/hwdata//usb.ids (LP: #2039439) + - [Packaging] Make linux-tools-common depend on hwdata + * scripts/pahole-flags.sh change return to exit 0 (LP: #2035123) + - SAUCE: scripts/pahole-flags.sh change return to exit 0 + * Unable to use nvme drive to install Ubuntu 23.10 (LP: #2040157) + - misc: rtsx: Fix some platforms can not boot and move the l1ss judgment to + probe + * Jammy update: v5.15.131 upstream stable release (LP: #2039610) + - erofs: ensure that the post-EOF tails are all zeroed + - ksmbd: fix wrong DataOffset validation of create context + - ksmbd: replace one-element array with flex-array member in struct + smb2_ea_info + - ARM: pxa: remove use of symbol_get() + - mmc: au1xmmc: force non-modular build and remove symbol_get usage + - net: enetc: use EXPORT_SYMBOL_GPL for enetc_phc_index + - rtc: ds1685: use EXPORT_SYMBOL_GPL for ds1685_rtc_poweroff + - modules: only allow symbol_get of EXPORT_SYMBOL_GPL modules + - USB: serial: option: add Quectel EM05G variant (0x030e) + - USB: serial: option: add FOXCONN T99W368/T99W373 product + - ALSA: usb-audio: Fix init call orders for UAC1 + - usb: dwc3: meson-g12a: do post init to fix broken usb after resumption + - usb: chipidea: imx: improve logic if samsung,picophy-* parameter is 0 + - HID: wacom: remove the battery when the EKR is off + - staging: rtl8712: fix race condition + - Bluetooth: btsdio: fix use after free bug in btsdio_remove due to race + condition + - wifi: mt76: mt7921: do not support one stream on secondary antenna only + - serial: qcom-geni: fix opp vote on shutdown + - serial: sc16is7xx: fix broken port 0 uart init + - serial: sc16is7xx: fix bug when first setting GPIO direction + - firmware: stratix10-svc: Fix an NULL vs IS_ERR() bug in probe + - fsi: master-ast-cf: Add MODULE_FIRMWARE macro + - tcpm: Avoid soft reset when partner does not support get_status + - nilfs2: fix general protection fault in nilfs_lookup_dirty_data_buffers() + - nilfs2: fix WARNING in mark_buffer_dirty due to discarded buffer reuse + - pinctrl: amd: Don't show `Invalid config param` errors + - usb: typec: tcpci: move tcpci.h to include/linux/usb/ + - usb: typec: tcpci: clear the fault status bit + - Linux 5.15.131 + * Jammy update: v5.15.130 upstream stable release (LP: #2039608) + - ACPI: thermal: Drop nocrt parameter + - module: Expose module_init_layout_section() + - arm64: module-plts: inline linux/moduleloader.h + - arm64: module: Use module_init_layout_section() to spot init sections + - ARM: module: Use module_init_layout_section() to spot init sections + - rcu: Prevent expedited GP from enabling tick on offline CPU + - rcu-tasks: Fix IPI failure handling in trc_wait_for_one_reader + - rcu-tasks: Wait for trc_read_check_handler() IPIs + - rcu-tasks: Add trc_inspect_reader() checks for exiting critical section + - Linux 5.15.130 + * CVE-2023-42754 + - ipv4: fix null-deref in ipv4_link_failure + * Jammy update: v5.15.129 upstream stable release (LP: #2039227) + - NFSv4.2: fix error handling in nfs42_proc_getxattr + - NFSv4: fix out path in __nfs4_get_acl_uncached + - xprtrdma: Remap Receive buffers after a reconnect + - PCI: acpiphp: Reassign resources on bridge if necessary + - dlm: improve plock logging if interrupted + - dlm: replace usage of found with dedicated list iterator variable + - fs: dlm: add pid to debug log + - fs: dlm: change plock interrupted message to debug again + - fs: dlm: use dlm_plock_info for do_unlock_close + - fs: dlm: fix mismatch of plock results from userspace + - MIPS: cpu-features: Enable octeon_cache by cpu_type + - MIPS: cpu-features: Use boot_cpu_type for CPU type based features + - fbdev: Improve performance of sys_imageblit() + - fbdev: Fix sys_imageblit() for arbitrary image widths + - fbdev: fix potential OOB read in fast_imageblit() + - ALSA: pcm: Fix potential data race at PCM memory allocation helpers + - jbd2: remove t_checkpoint_io_list + - jbd2: remove journal_clean_one_cp_list() + - jbd2: fix a race when checking checkpoint buffer busy + - can: raw: fix receiver memory leak + - drm/amd/display: do not wait for mpc idle if tg is disabled + - drm/amd/display: check TG is non-null before checking if enabled + - can: raw: fix lockdep issue in raw_release() + - tracing: Fix cpu buffers unavailable due to 'record_disabled' missed + - tracing: Fix memleak due to race between current_tracer and trace + - octeontx2-af: SDP: fix receive link config + - sock: annotate data-races around prot->memory_pressure + - dccp: annotate data-races in dccp_poll() + - ipvlan: Fix a reference count leak warning in ipvlan_ns_exit() + - net: bgmac: Fix return value check for fixed_phy_register() + - net: bcmgenet: Fix return value check for fixed_phy_register() + - net: validate veth and vxcan peer ifindexes + - ice: fix receive buffer size miscalculation + - igb: Avoid starting unnecessary workqueues + - igc: Fix the typo in the PTM Control macro + - net/sched: fix a qdisc modification with ambiguous command request + - netfilter: nf_tables: flush pending destroy work before netlink notifier + - netfilter: nf_tables: fix out of memory error handling + - rtnetlink: return ENODEV when ifname does not exist and group is given + - rtnetlink: Reject negative ifindexes in RTM_NEWLINK + - net: remove bond_slave_has_mac_rcu() + - bonding: fix macvlan over alb bond support + - net/ncsi: make one oem_gma function for all mfr id + - net/ncsi: change from ndo_set_mac_address to dev_set_mac_address + - ibmveth: Use dcbf rather than dcbfl + - NFSv4: Fix dropped lock for racing OPEN and delegation return + - clk: Fix slab-out-of-bounds error in devm_clk_release() + - ALSA: ymfpci: Fix the missing snd_card_free() call at probe error + - mm: add a call to flush_cache_vmap() in vmap_pfn() + - NFS: Fix a use after free in nfs_direct_join_group() + - nfsd: Fix race to FREE_STATEID and cl_revoked + - selinux: set next pointer before attaching to list + - batman-adv: Trigger events for auto adjusted MTU + - batman-adv: Don't increase MTU when set by user + - batman-adv: Do not get eth header before batadv_check_management_packet + - batman-adv: Fix TT global entry leak when client roamed back + - batman-adv: Fix batadv_v_ogm_aggr_send memory leak + - batman-adv: Hold rtnl lock during MTU update via netlink + - lib/clz_ctz.c: Fix __clzdi2() and __ctzdi2() for 32-bit kernels + - radix tree: remove unused variable + - of: unittest: Fix EXPECT for parse_phandle_with_args_map() test + - of: dynamic: Refactor action prints to not use "%pOF" inside devtree_lock + - media: vcodec: Fix potential array out-of-bounds in encoder queue_setup + - PCI: acpiphp: Use pci_assign_unassigned_bridge_resources() only for non-root + bus + - drm/vmwgfx: Fix shader stage validation + - drm/display/dp: Fix the DP DSC Receiver cap size + - x86/fpu: Invalidate FPU state correctly on exec() + - nfs: use vfs setgid helper + - nfsd: use vfs setgid helper + - torture: Fix hang during kthread shutdown phase + - cgroup/cpuset: Rename functions dealing with DEADLINE accounting + - sched/cpuset: Bring back cpuset_mutex + - sched/cpuset: Keep track of SCHED_DEADLINE task in cpusets + - cgroup/cpuset: Iterate only if DEADLINE tasks are present + - sched/deadline: Create DL BW alloc, free & check overflow interface + - cgroup/cpuset: Free DL BW in case can_attach() fails + - drm/i915: Fix premature release of request's reusable memory + - can: raw: add missing refcount for memory leak fix + - scsi: snic: Fix double free in snic_tgt_create() + - scsi: core: raid_class: Remove raid_component_add() + - clk: Fix undefined reference to `clk_rate_exclusive_{get,put}' + - pinctrl: renesas: rza2: Add lock around + pinctrl_generic{{add,remove}_group,{add,remove}_function} + - dma-buf/sw_sync: Avoid recursive lock during fence signal + - mm: memory-failure: kill soft_offline_free_page() + - mm: memory-failure: fix unexpected return value in soft_offline_page() + - mm,ima,kexec,of: use memblock_free_late from ima_free_kexec_buffer + - Linux 5.15.129 + * Jammy update: v5.15.128 upstream stable release (LP: #2038486) + - mmc: sdhci-f-sdh30: Replace with sdhci_pltfm + - selftests: forwarding: tc_actions: cleanup temporary files when test is + aborted + - selftests: forwarding: tc_actions: Use ncat instead of nc + - macsec: Fix traffic counters/statistics + - macsec: use DEV_STATS_INC() + - net/tls: Perform immediate device ctx cleanup when possible + - net/tls: Multi-threaded calls to TX tls_dev_del + - net: tls: avoid discarding data on record close + - PCI: tegra194: Fix possible array out of bounds access + - ARM: dts: imx6dl: prtrvt, prtvt7, prti6q, prtwd2: fix USB related warnings + - iopoll: Call cpu_relax() in busy loops + - ASoC: SOF: Intel: fix SoundWire/HDaudio mutual exclusion + - dma-remap: use kvmalloc_array/kvfree for larger dma memory remap + - HID: logitech-hidpp: Add USB and Bluetooth IDs for the Logitech G915 TKL + Keyboard + - HID: add quirk for 03f0:464a HP Elite Presenter Mouse + - RDMA/mlx5: Return the firmware result upon destroying QP/RQ + - ovl: check type and offset of struct vfsmount in ovl_entry + - smb: client: fix warning in cifs_smb3_do_mount() + - media: v4l2-mem2mem: add lock to protect parameter num_rdy + - usb: gadget: u_serial: Avoid spinlock recursion in __gs_console_push + - media: platform: mediatek: vpu: fix NULL ptr dereference + - thunderbolt: Read retimer NVM authentication status prior + tb_retimer_set_inbound_sbtx() + - usb: chipidea: imx: don't request QoS for imx8ulp + - usb: chipidea: imx: add missing USB PHY DPDM wakeup setting + - gfs2: Fix possible data races in gfs2_show_options() + - pcmcia: rsrc_nonstatic: Fix memory leak in nonstatic_release_resource_db() + - firewire: net: fix use after free in fwnet_finish_incoming_packet() + - watchdog: sp5100_tco: support Hygon FCH/SCH (Server Controller Hub) + - Bluetooth: L2CAP: Fix use-after-free + - Bluetooth: btusb: Add MT7922 bluetooth ID for the Asus Ally + - drm/amdgpu: Fix potential fence use-after-free v2 + - fs/ntfs3: Enhance sanity check while generating attr_list + - fs: ntfs3: Fix possible null-pointer dereferences in mi_read() + - fs/ntfs3: Mark ntfs dirty when on-disk struct is corrupted + - ALSA: hda/realtek: Add quirks for Unis H3C Desktop B760 & Q760 + - ALSA: hda: fix a possible null-pointer dereference due to data race in + snd_hdac_regmap_sync() + - powerpc/kasan: Disable KCOV in KASAN code + - ring-buffer: Do not swap cpu_buffer during resize process + - iio: add addac subdirectory + - iio: adc: stx104: Utilize iomap interface + - iio: adc: stx104: Implement and utilize register structures + - iio: stx104: Move to addac subdirectory + - iio: addac: stx104: Fix race condition for stx104_write_raw() + - iio: addac: stx104: Fix race condition when converting analog-to-digital + - igc: read before write to SRRCTL register + - ARM: dts: aspeed: asrock: Correct firmware flash SPI clocks + - drm/amd/display: save restore hdcp state when display is unplugged from mst + hub + - drm/amd/display: phase3 mst hdcp for multiple displays + - drm/amd/display: fix access hdcp_workqueue assert + - usb: dwc3: gadget: Synchronize IRQ between soft connect/disconnect + - usb: dwc3: Remove DWC3 locking during gadget suspend/resume + - usb: dwc3: Fix typos in gadget.c + - USB: dwc3: gadget: drop dead hibernation code + - usb: dwc3: gadget: Improve dwc3_gadget_suspend() and dwc3_gadget_resume() + - tty: serial: fsl_lpuart: Add i.MXRT1050 support + - tty: serial: fsl_lpuart: make rx_watermark configurable for different + platforms + - tty: serial: fsl_lpuart: reduce RX watermark to 0 on LS1028A + - USB: dwc3: qcom: fix NULL-deref on suspend + - USB: dwc3: fix use-after-free on core driver unbind + - mmc: bcm2835: fix deferred probing + - mmc: sunxi: fix deferred probing + - ARM: dts: imx6sll: fixup of operating points + - ARM: dts: nxp/imx6sll: fix wrong property name in usbphy node + - btrfs: move out now unused BG from the reclaim list + - virtio-mmio: don't break lifecycle of vm_dev + - vduse: Use proper spinlock for IRQ injection + - cifs: fix potential oops in cifs_oplock_break + - i2c: bcm-iproc: Fix bcm_iproc_i2c_isr deadlock issue + - i2c: hisi: Only handle the interrupt of the driver's transfer + - fbdev: mmp: fix value check in mmphw_probe() + - powerpc/rtas_flash: allow user copy to flash block cache objects + - tty: n_gsm: fix the UAF caused by race condition in gsm_cleanup_mux + - tty: serial: fsl_lpuart: Clear the error flags by writing 1 for lpuart32 + platforms + - btrfs: fix BUG_ON condition in btrfs_cancel_balance + - i2c: designware: Correct length byte validation logic + - i2c: designware: Handle invalid SMBus block data response length value + - net: xfrm: Fix xfrm_address_filter OOB read + - net: af_key: fix sadb_x_filter validation + - net: xfrm: Amend XFRMA_SEC_CTX nla_policy structure + - xfrm: fix slab-use-after-free in decode_session6 + - ip6_vti: fix slab-use-after-free in decode_session6 + - ip_vti: fix potential slab-use-after-free in decode_session6 + - xfrm: add forgotten nla_policy for XFRMA_MTIMER_THRESH + - net: phy: fix IRQ-based wake-on-lan over hibernate / power off + - selftests: mirror_gre_changes: Tighten up the TTL test match + - drm/panel: simple: Fix AUO G121EAN01 panel timings according to the docs + - netfilter: nf_tables: fix false-positive lockdep splat + - ipvs: fix racy memcpy in proc_do_sync_threshold + - net: phy: broadcom: stub c45 read/write for 54810 + - team: Fix incorrect deletion of ETH_P_8021AD protocol vid from slaves + - iavf: fix FDIR rule fields masks validation + - i40e: fix misleading debug logs + - net: dsa: mv88e6xxx: Wait for EEPROM done before HW reset + - sock: Fix misuse of sk_under_memory_pressure() + - net: do not allow gso_size to be set to GSO_BY_FRAGS + - bus: ti-sysc: Flush posted write on enable before reset + - arm64: dts: qcom: qrb5165-rb5: fix thermal zone conflict + - ARM: dts: imx: Set default tuning step for imx6sx usdhc + - ASoC: rt5665: add missed regulator_bulk_disable + - ASoC: meson: axg-tdm-formatter: fix channel slot allocation + - soc: aspeed: socinfo: Add kfree for kstrdup + - ALSA: hda/realtek - Remodified 3k pull low procedure + - riscv: uaccess: Return the number of bytes effectively not copied + - serial: 8250: Fix oops for port->pm on uart_change_pm() + - ALSA: usb-audio: Add support for Mythware XA001AU capture and playback + interfaces. + - cifs: Release folio lock on fscache read hit. + - mmc: wbsd: fix double mmc_free_host() in wbsd_init() + - mmc: block: Fix in_flight[issue_type] value error + - drm/qxl: fix UAF on handle creation + - drm/amd: flush any delayed gfxoff on suspend entry + - netfilter: set default timeout to 3 secs for sctp shutdown send and recv + state + - arm64: dts: rockchip: Disable HS400 for eMMC on ROCK Pi 4 + - virtio-net: set queues after driver_ok + - net: fix the RTO timer retransmitting skb every 1ms if linear option is + enabled + - mmc: f-sdh30: fix order of function calls in sdhci_f_sdh30_remove + - Linux 5.15.128 + * Jammy update: v5.15.127 upstream stable release (LP: #2038382) + - ksmbd: validate command request size + - ksmbd: fix wrong next length validation of ea buffer in smb2_set_ea() + - wireguard: allowedips: expand maximum node depth + - mmc: moxart: read scr register without changing byte order + - ipv6: adjust ndisc_is_useropt() to also return true for PIO + - dmaengine: pl330: Return DMA_PAUSED when transaction is paused + - riscv,mmio: Fix readX()-to-delay() ordering + - drm/nouveau/gr: enable memory loads on helper invocation on all channels + - drm/shmem-helper: Reset vma->vm_ops before calling dma_buf_mmap() + - drm/amd/display: check attr flag before set cursor degamma on DCN3+ + - hwmon: (pmbus/bel-pfe) Enable PMBUS_SKIP_STATUS_CHECK for pfe1100 + - radix tree test suite: fix incorrect allocation size for pthreads + - nilfs2: fix use-after-free of nilfs_root in dirtying inodes via iput + - bpf: allow precision tracking for programs with subprogs + - bpf: stop setting precise in current state + - bpf: aggressively forget precise markings during state checkpointing + - selftests/bpf: make test_align selftest more robust + - selftests/bpf: Workaround verification failure for + fexit_bpf2bpf/func_replace_return_code + - selftests/bpf: Fix sk_assign on s390x + - io_uring: correct check for O_TMPFILE + - iio: cros_ec: Fix the allocation size for cros_ec_command + - iio: adc: ina2xx: avoid NULL pointer dereference on OF device match + - binder: fix memory leak in binder_init() + - misc: rtsx: judge ASPM Mode to set PETXCFG Reg + - usb-storage: alauda: Fix uninit-value in alauda_check_media() + - usb: dwc3: Properly handle processing of pending events + - usb: common: usb-conn-gpio: Prevent bailing out if initial role is none + - usb: typec: tcpm: Fix response to vsafe0V event + - x86/cpu/amd: Enable Zenbleed fix for AMD Custom APU 0405 + - x86/mm: Fix VDSO and VVAR placement on 5-level paging machines + - x86/speculation: Add cpu_show_gds() prototype + - x86: Move gds_ucode_mitigated() declaration to header + - drm/nouveau/disp: Revert a NULL check inside nouveau_connector_get_modes + - selftests/rseq: Fix build with undefined __weak + - selftests: forwarding: Add a helper to skip test when using veth pairs + - selftests: forwarding: ethtool: Skip when using veth pairs + - selftests: forwarding: ethtool_extended_state: Skip when using veth pairs + - selftests: forwarding: Skip test when no interfaces are specified + - selftests: forwarding: Switch off timeout + - selftests: forwarding: tc_flower: Relax success criterion + - net: core: remove unnecessary frame_sz check in bpf_xdp_adjust_tail() + - bpf, sockmap: Fix map type error in sock_map_del_link + - bpf, sockmap: Fix bug that strp_done cannot be called + - mISDN: Update parameter type of dsp_cmx_send() + - net/packet: annotate data-races around tp->status + - tunnels: fix kasan splat when generating ipv4 pmtu error + - xsk: fix refcount underflow in error path + - bonding: Fix incorrect deletion of ETH_P_8021AD protocol vid from slaves + - dccp: fix data-race around dp->dccps_mss_cache + - drivers: net: prevent tun_build_skb() to exceed the packet size limit + - iavf: fix potential races for FDIR filters + - IB/hfi1: Fix possible panic during hotplug remove + - drm/rockchip: Don't spam logs in atomic check + - wifi: cfg80211: fix sband iftype data lookup for AP_VLAN + - RDMA/umem: Set iova in ODP flow + - net: phy: at803x: remove set/get wol callbacks for AR8032 + - net: hns3: refactor hclge_mac_link_status_wait for interface reuse + - net: hns3: add wait until mac link down + - nexthop: Fix infinite nexthop dump when using maximum nexthop ID + - nexthop: Make nexthop bucket dump more efficient + - nexthop: Fix infinite nexthop bucket dump when using maximum nexthop ID + - dmaengine: mcf-edma: Fix a potential un-allocated memory access + - net/mlx5: Allow 0 for total host VFs + - net/mlx5: Skip clock update work when device is in error state + - ibmvnic: Enforce stronger sanity checks on login response + - ibmvnic: Unmap DMA login rsp buffer on send login fail + - ibmvnic: Handle DMA unmapping of login buffs in release functions + - btrfs: don't stop integrity writeback too early + - btrfs: exit gracefully if reloc roots don't match + - btrfs: reject invalid reloc tree root keys with stack dump + - btrfs: set cache_block_group_error if we find an error + - nvme-tcp: fix potential unbalanced freeze & unfreeze + - nvme-rdma: fix potential unbalanced freeze & unfreeze + - netfilter: nf_tables: report use refcount overflow + - scsi: core: Fix legacy /proc parsing buffer overflow + - scsi: storvsc: Fix handling of virtual Fibre Channel timeouts + - scsi: 53c700: Check that command slot is not NULL + - scsi: snic: Fix possible memory leak if device_add() fails + - scsi: core: Fix possible memory leak if device_add() fails + - scsi: fnic: Replace return codes in fnic_clean_pending_aborts() + - scsi: qedi: Fix firmware halt over suspend and resume + - scsi: qedf: Fix firmware halt over suspend and resume + - alpha: remove __init annotation from exported page_is_ram() + - sch_netem: fix issues in netem_change() vs get_dist_table() + - tick: Detect and fix jiffies update stall + - timers/nohz: Switch to ONESHOT_STOPPED in the low-res handler when the tick + is stopped + - timers/nohz: Last resort update jiffies on nohz_full IRQ entry + - Linux 5.15.127 + - Upstream stable to v5.15.127 + * CVE-2023-37453 + - USB: core: Unite old scheme and new scheme descriptor reads + - USB: core: Change usb_get_device_descriptor() API + - USB: core: Fix race by not overwriting udev->descriptor in hub_port_init() + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + -- Jacob Martin Tue, 21 Nov 2023 10:19:23 -0600 + +linux-azure-5.15 (5.15.0-1052.60~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1052.60~20.04.1 -proposed tracker + (LP: #2041910) + + [ Ubuntu: 5.15.0-1052.60 ] + + * jammy/linux-azure: 5.15.0-1052.60 -proposed tracker (LP: #2041911) + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + * jammy/linux: 5.15.0-89.99 -proposed tracker (LP: #2041949) + * CVE-2023-31085 + - ubi: Refuse attaching if mtd's erasesize is 0 + * CVE-2023-45871 + - igb: set max size RX buffer when store bad packet is enabled + * CVE-2023-25775 + - RDMA/irdma: Remove irdma_uk_mw_bind() + - RDMA/irdma: Remove irdma_sc_send_lsmm_nostag() + - RDMA/irdma: Remove irdma_cqp_up_map_cmd() + - RDMA/irdma: Remove irdma_get_hw_addr() + - RDMA/irdma: Make irdma_uk_cq_init() return a void + - RDMA/irdma: optimize rx path by removing unnecessary copy + - RDMA/irdma: Remove enum irdma_status_code + - RDMA/irdma: Remove excess error variables + - RDMA/irdma: Prevent zero-length STAG registration + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + -- Jacob Martin Mon, 06 Nov 2023 22:13:58 +0200 + +linux-azure-5.15 (5.15.0-1051.59~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1051.59~20.04.1 -proposed tracker + (LP: #2038018) + + [ Ubuntu: 5.15.0-1051.59 ] + + * jammy/linux-azure: 5.15.0-1051.59 -proposed tracker (LP: #2038019) + * Azure: Update CIFS to v6.5 (LP: #2036450) + - Revert "UBUNTU: SAUCE: Fix cifs: fix mid leak during reconnection after + timeout threshold" + - Revert "smb3: lower default deferred close timeout to address perf + regression" + - Revert "smb3: allow deferred close timeout to be configurable" + - Revert "cifs: remove minor build warning" + - Revert "cifs: remove some camelCase and also some static build warnings" + - Revert "cifs: remove unnecessary (void*) conversions." + - Revert "cifs: remove unnecessary type castings" + - Revert "cifs: remove redundant initialization to variable mnt_sign_enabled" + - Revert "smb3: workaround negprot bug in some Samba servers" + - Revert "cifs: remove unnecessary locking of chan_lock while freeing session" + - Revert "cifs: fix race condition with delayed threads" + - Revert "cifs: update cifs_ses::ip_addr after failover" + - Revert "cifs: avoid deadlocks while updating iface" + - Revert "cifs: periodically query network interfaces from server" + - Revert "cifs: during reconnect, update interface if necessary" + - Revert "cifs: change iface_list from array to sorted linked list" + - Revert "smb3: use netname when available on secondary channels" + - Revert "smb3: fix empty netname context on secondary channels" + - Revert "cifs: when a channel is not found for server, log its connection id" + - Revert "smb3: add trace point for SMB2_set_eof" + - Revert "cifs: populate empty hostnames for extra channels" + - Revert "cifs: fix uninitialized pointer in error case in + dfs_cache_get_tgt_share" + - Revert "cifs: skip trailing separators of prefix paths" + - Revert "cifs: update internal module number" + - Revert "cifs: do not build smb1ops if legacy support is disabled" + - Revert "cifs: fix potential deadlock in direct reclaim" + - Revert "cifs: remove repeated debug message on cifs_put_smb_ses()" + - Revert "smb3: remove unneeded null check in cifs_readdir" + - Revert "cifs: fix ntlmssp on old servers" + - Revert "cifs: cache the dirents for entries in a cached directory" + - Revert "cifs: avoid parallel session setups on same channel" + - Revert "cifs: use new enum for ses_status" + - Revert "cifs: do not use tcpStatus after negotiate completes" + - Revert "smb3: add mount parm nosparse" + - Revert "smb3: don't set rc when used and unneeded in query_info_compound" + - Revert "cifs: fix minor compile warning" + - Revert "Add various fsctl structs" + - Revert "Add defines for various newer FSCTLs" + - Revert "smb3: add trace point for oplock not found" + - Revert "cifs: return the more nuanced writeback error on close()" + - Revert "smb3: add trace point for lease not found issue" + - Revert "cifs: smbd: fix typo in comment" + - Revert "cifs: set the CREATE_NOT_FILE when opening the directory in + use_cached_dir()" + - Revert "cifs: check for smb1 in open_cached_dir()" + - Revert "cifs: move definition of cifs_fattr earlier in cifsglob.h" + - Revert "cifs: print TIDs as hex" + - Revert "cifs: return ENOENT for DFS lookup_cache_entry()" + - Revert "cifs: don't call cifs_dfs_query_info_nonascii_quirk() if nodfs was + set" + - Revert "cifs: fix signed integer overflow when fl_end is OFFSET_MAX" + - Revert "cifs: use correct lock type in cifs_reconnect()" + - Revert "cifs: fix NULL ptr dereference in refresh_mounts()" + - Revert "cifs: Use kzalloc instead of kmalloc/memset" + - Revert "cifs: Split the smb3_add_credits tracepoint" + - Revert "cifs: update internal module number" + - Revert "cifs: force new session setup and tcon for dfs" + - Revert "cifs: remove check of list iterator against head past the loop body" + - Revert "cifs: fix potential race with cifsd thread" + - Revert "fs: Remove ->readpages address space operation" + - Revert "smb3: fix ksmbd bigendian bug in oplock break, and move its struct + to smbfs_common" + - Revert "smb3: cleanup and clarify status of tree connections" + - Revert "smb3: move defines for query info and query fsinfo to smbfs_common" + - Revert "smb3: move defines for ioctl protocol header and SMB2 sizes to + smbfs_common" + - Revert "move more common protocol header definitions to smbfs_common" + - Revert "cifs: fix incorrect use of list iterator after the loop" + - Revert "cifs: fix bad fids sent over wire" + - Revert "cifs: change smb2_query_info_compound to use a cached fid, if + available" + - Revert "cifs: convert the path to utf16 in smb2_query_info_compound" + - Revert "cifs: do not skip link targets when an I/O fails" + - Revert "cifs: use a different reconnect helper for non-cifsd threads" + - Revert "cifs: truncate the inode and mapping when we simulate fcollapse" + - Revert "smb3: fix incorrect session setup check for multiuser mounts" + - Revert "treewide: Replace zero-length arrays with flexible-array members" + - Revert "cifs: mark sessions for reconnection in helper function" + - Revert "cifs: call helper functions for marking channels for reconnect" + - Revert "cifs: call cifs_reconnect when a connection is marked" + - Revert "improve error message when mount options conflict with posix" + - Revert "cifs: fix workstation_name for multiuser mounts" + - Revert "cifs: unlock chan_lock before calling cifs_put_tcp_session" + - Revert "Fix a warning about a malformed kernel doc comment in cifs" + - Revert "cifs: update internal module number" + - Revert "smb3: send NTLMSSP version information" + - Revert "cifs: cifs_ses_mark_for_reconnect should also update reconnect bits" + - Revert "cifs: update tcpStatus during negotiate and sess setup" + - Revert "cifs: make status checks in version independent callers" + - Revert "cifs: remove repeated state change in dfs tree connect" + - Revert "cifs: fix the cifs_reconnect path for DFS" + - Revert "cifs: remove unused variable ses_selected" + - Revert "cifs: protect all accesses to chan_* with chan_lock" + - Revert "cifs: fix the connection state transitions with multichannel" + - Revert "cifs: check reconnects for channels of active tcons too" + - Revert "smb3: add new defines from protocol specification" + - Revert "cifs: serialize all mount attempts" + - Revert "cifs: quirk for STATUS_OBJECT_NAME_INVALID returned for non-ASCII + dfs refs" + - Revert "cifs: alloc_path_with_tree_prefix: do not append sep. if the path is + empty" + - Revert "cifs: clean up an inconsistent indenting" + - Revert "cifs: free ntlmsspblob allocated in negotiate" + - Revert "cifs: fix FILE_BOTH_DIRECTORY_INFO definition" + - Revert "cifs: move superblock magic defitions to magic.h" + - Revert "cifs: Fix smb311_update_preauth_hash() kernel-doc comment" + - Revert "cifs: avoid race during socket reconnect between send and recv" + - Revert "cifs: maintain a state machine for tcp/smb/tcon sessions" + - Revert "cifs: fix hang on cifs_get_next_mid()" + - Revert "cifs: take cifs_tcp_ses_lock for status checks" + - Revert "cifs: reconnect only the connection and not smb session where + possible" + - Revert "cifs: add WARN_ON for when chan_count goes below minimum" + - Revert "cifs: adjust DebugData to use chans_need_reconnect for conn status" + - Revert "cifs: use the chans_need_reconnect bitmap for reconnect status" + - Revert "cifs: track individual channel status using chans_need_reconnect" + - Revert "cifs: remove redundant assignment to pointer p" + - Revert "cifs: ignore resource_id while getting fscache super cookie" + - Revert "cifs: fix ntlmssp auth when there is no key exchange" + - Revert "cifs: avoid use of dstaddr as key for fscache client cookie" + - Revert "cifs: add server conn_id to fscache client cookie" + - Revert "cifs: wait for tcon resource_id before getting fscache super" + - Revert "cifs: update internal version number" + - Revert "smb2: clarify rc initialization in smb2_reconnect" + - Revert "cifs: populate server_hostname for extra channels" + - Revert "cifs: introduce cifs_ses_mark_for_reconnect() helper" + - Revert "cifs: protect srv_count with cifs_tcp_ses_lock" + - Revert "cifs: move debug print out of spinlock" + - Revert "cifs: do not duplicate fscache cookie for secondary channels" + - Revert "cifs: connect individual channel servers to primary channel server" + - Revert "cifs: do not negotiate session if session already exists" + - Revert "smb3: do not setup the fscache_super_cookie until fsinfo + initialized" + - Revert "cifs: fix potential use-after-free bugs" + - Revert "smb3: add additional null check in SMB311_posix_mkdir" + - Revert "cifs: release lock earlier in dequeue_mid error case" + - Revert "smb3: add additional null check in SMB2_tcon" + - Revert "smb3: add additional null check in SMB2_open" + - Revert "smb3: add additional null check in SMB2_ioctl" + - Revert "smb3: remove trivial dfs compile warning" + - Revert "cifs: for compound requests, use open handle if possible" + - Revert "cifs: convert list_for_each to entry variant" + - Revert "cifs: fix print of hdr_flags in dfscache_proc_show()" + - Revert "cifs: send workstation name during ntlmssp session setup" + - Revert "smb3: add dynamic trace points for socket connection" + - Revert "cifs: Move SMB2_Create definitions to the shared area" + - Revert "cifs: Move more definitions into the shared area" + - Revert "cifs: move NEGOTIATE_PROTOCOL definitions out into the common area" + - Revert "cifs: Create a new shared file holding smb2 pdu definitions" + - Revert "cifs: add mount parameter tcpnodelay" + - Revert "cifs: if deferred close is disabled then close files immediately" + - Revert "cifs: use fs_context for automounts" + - Revert "SMB3: Do not send lease break acknowledgment if all file handles + have been closed" + - Revert "cifs: fix lease break oops in xfstest generic/098" + - Revert "cifs: fix mid leak during reconnection after timeout threshold" + - Revert "cifs: mapchars mount option ignored" + - Revert "SMB3: drop reference to cfile before sending oplock break" + - Revert "SMB3: Close all deferred handles of inode in case of handle lease + break" + - Revert "SMB3: force unmount was failing to close deferred close files" + - Revert "smb3: fix problem remounting a share after shutdown" + - Revert "cifs: release leases for deferred close handles when freezing" + - Revert "cifs: fix pcchunk length type in smb2_copychunk_range" + - Revert "SMB3: Close deferred file handles in case of handle lease break" + - Revert "SMB3: Add missing locks to protect deferred close file list" + - Revert "cifs: sanitize paths in cifs_update_super_prepath." + - Revert "smb3: lower default deferred close timeout to address perf + regression" + - Revert "smb3: allow deferred close timeout to be configurable" + - Revert "cifs: fix DFS traversal oops without CONFIG_CIFS_DFS_UPCALL" + - Revert "cifs: prevent infinite recursion in CIFSGetDFSRefer()" + - Revert "cifs: print session id while listing open files" + - Revert "cifs: empty interface list when server doesn't support query + interfaces" + - Revert "cifs: Fix smb2_set_path_size()" + - Revert "cifs: Move the in_send statistic to __smb_send_rqst()" + - Revert "cifs: Fix uninitialized memory read in smb3_qfs_tcon()" + - Revert "cifs: Fix warning and UAF when destroy the MR list" + - Revert "cifs: Fix lost destroy smbd connection when MR allocate failed" + - Revert "cifs: Fix use-after-free in rdata->read_into_pages()" + - Revert "cifs: fix return of uninitialized rc in dfs_cache_update_tgthint()" + - Revert "cifs: Fix oops due to uncleared server->smbd_conn in reconnect" + - Revert "cifs: fix potential deadlock in cache_refresh_path()" + - Revert "cifs: do not include page data when checking signature" + - Revert "cifs: Fix uninitialized memory read for smb311 posix symlink create" + - Revert "cifs: fix missing display of three mount options" + - Revert "cifs: fix confusing debug message" + - Revert "cifs: fix oops during encryption" + - Revert "cifs: fix use-after-free caused by invalid pointer `hostname`" + - Revert "cifs: fix missed refcounting of ipc tcon" + - Revert "cifs: Fix connections leak when tlink setup failed" + - Revert "cifs: support nested dfs links over reconnect" + - Revert "cifs: split out dfs code from cifs_reconnect()" + - Revert "cifs: introduce new helper for cifs_reconnect()" + - Revert "cifs: add check for returning value of SMB2_set_info_init" + - Revert "cifs: Fix wrong return value checking when GETFLAGS" + - Revert "cifs: add check for returning value of SMB2_close_init" + - Revert "cifs: fix regression in very old smb1 mounts" + - Revert "cifs: Fix xid leak in cifs_ses_add_channel()" + - Revert "cifs: Fix xid leak in cifs_flock()" + - Revert "cifs: Fix xid leak in cifs_copy_file_range()" + - Revert "cifs: Fix xid leak in cifs_create()" + - Revert "cifs: return correct error in ->calc_signature()" + - Revert "smb3: must initialize two ACL struct fields to zero" + - Revert "cifs: Fix the error length of VALIDATE_NEGOTIATE_INFO message" + - Revert "cifs: destage dirty pages before re-reading them for cache=none" + - Revert "cifs: always initialize struct msghdr smb_msg completely" + - Revert "cifs: don't send down the destination address to sendmsg for a + SOCK_STREAM" + - Revert "cifs: revalidate mapping when doing direct writes" + - Revert "cifs: fix small mempool leak in SMB2_negotiate()" + - Revert "smb3: missing inode locks in punch hole" + - Revert "smb3: check xattr value length earlier" + - Revert "cifs: Fix memory leak on the deferred close" + - Revert "SMB3: fix lease break timeout when multiple deferred close handles + for the same file." + - Revert "cifs: fix reconnect on smb3 mount types" + - Revert "cifs: return errors during session setup during reconnects" + - Revert "cifs: version operations for smb20 unneeded when legacy support + disabled" + - Revert "SMB3: EBADF/EIO errors in rename/open caused by race condition in + smb2_compound_op" + - Revert "smb3: check for null tcon" + - Revert "cifs: when extending a file with falloc we should make files not- + sparse" + - Revert "cifs: fix potential double free during failed mount" + - Revert "cifs: destage any unwritten data to the server before calling + copychunk_write" + - Revert "cifs: Check the IOCB_DIRECT flag, not O_DIRECT" + - Revert "cifs: verify that tcon is valid before dereference in cifs_kill_sb" + - Revert "cifs: potential buffer overflow in handling symlinks" + - Revert "cifs: release cached dentries only if mount is complete" + - Revert "Adjust cifssb maximum read size" + - Revert "cifs: fix NULL ptr dereference in smb2_ioctl_query_info()" + - Revert "cifs: prevent bad output lengths in smb2_ioctl_query_info()" + - Revert "cifs: we do not need a spinlock around the tree access during + umount" + - Revert "cifs: fix handlecache and multiuser" + - Revert "cifs: fix confusing unneeded warning message on smb2.1 and earlier" + - Revert "cifs: protect session channel fields with chan_lock" + - Revert "cifs: modefromsids must add an ACE for authenticated users" + - Revert "cifs: fix double free race when mount fails in cifs_get_root()" + - Revert "cifs: do not use uninitialized data in the owner/group sid" + - Revert "smb3: fix snapshot mount option" + - Revert "cifs: fix set of group SID via NTSD xattrs" + - Revert "cifs: sanitize multiple delimiters in prepath" + - Revert "cifs: Fix crash on unload of cifs_arc4.ko" + - Revert "cifs: nosharesock should be set on new server" + - Revert "cifs: nosharesock should not share socket with future sessions" + - Revert "cifs: fix memory leak of smb3_fs_context_dup::server_hostname" + - Revert "smb3: do not error on fsync when readonly" + - Revert "cifs: set a minimum of 120s for next dns resolution" + - Revert "cifs: To match file servers, make sure the server hostname matches" + - cifs: To match file servers, make sure the server hostname matches + - cifs: add mount parameter tcpnodelay + - cifs: Create a new shared file holding smb2 pdu definitions + - cifs: move NEGOTIATE_PROTOCOL definitions out into the common area + - cifs: Move more definitions into the shared area + - cifs: Move SMB2_Create definitions to the shared area + - smb3: add dynamic trace points for socket connection + - cifs: nosharesock should not share socket with future sessions + - cifs: send workstation name during ntlmssp session setup + - cifs: fix print of hdr_flags in dfscache_proc_show() + - cifs: introduce new helper for cifs_reconnect() + - cifs: convert list_for_each to entry variant + - cifs: split out dfs code from cifs_reconnect() + - cifs: set a minimum of 120s for next dns resolution + - cifs: for compound requests, use open handle if possible + - smb3: do not error on fsync when readonly + - cifs: support nested dfs links over reconnect + - smb3: remove trivial dfs compile warning + - smb3: add additional null check in SMB2_ioctl + - smb3: add additional null check in SMB2_open + - smb3: add additional null check in SMB2_tcon + - cifs: release lock earlier in dequeue_mid error case + - smb3: add additional null check in SMB311_posix_mkdir + - cifs: fix memory leak of smb3_fs_context_dup::server_hostname + - cifs: fix potential use-after-free bugs + - smb3: do not setup the fscache_super_cookie until fsinfo initialized + - cifs: do not negotiate session if session already exists + - cifs: protect session channel fields with chan_lock + - cifs: connect individual channel servers to primary channel server + - cifs: do not duplicate fscache cookie for secondary channels + - cifs: move debug print out of spinlock + - cifs: protect srv_count with cifs_tcp_ses_lock + - cifs: introduce cifs_ses_mark_for_reconnect() helper + - cifs: nosharesock should be set on new server + - cifs: populate server_hostname for extra channels + - smb2: clarify rc initialization in smb2_reconnect + - cifs: update internal version number + - cifs: fix missed refcounting of ipc tcon + - cifs: wait for tcon resource_id before getting fscache super + - cifs: add server conn_id to fscache client cookie + - cifs: avoid use of dstaddr as key for fscache client cookie + - cifs: Fix crash on unload of cifs_arc4.ko + - cifs: fix ntlmssp auth when there is no key exchange + - cifs: ignore resource_id while getting fscache super cookie + - cifs: sanitize multiple delimiters in prepath + - cifs: remove redundant assignment to pointer p + - cifs: track individual channel status using chans_need_reconnect + - cifs: use the chans_need_reconnect bitmap for reconnect status + - cifs: adjust DebugData to use chans_need_reconnect for conn status + - cifs: add WARN_ON for when chan_count goes below minimum + - cifs: reconnect only the connection and not smb session where possible + - cifs: take cifs_tcp_ses_lock for status checks + - cifs: fix hang on cifs_get_next_mid() + - cifs: maintain a state machine for tcp/smb/tcon sessions + - cifs: avoid race during socket reconnect between send and recv + - cifs: Fix smb311_update_preauth_hash() kernel-doc comment + - cifs: move superblock magic defitions to magic.h + - cifs: fix FILE_BOTH_DIRECTORY_INFO definition + - cifs: free ntlmsspblob allocated in negotiate + - cifs: clean up an inconsistent indenting + - cifs: alloc_path_with_tree_prefix: do not append sep. if the path is empty + - cifs: quirk for STATUS_OBJECT_NAME_INVALID returned for non-ASCII dfs refs + - cifs: serialize all mount attempts + - smb3: add new defines from protocol specification + - cifs: check reconnects for channels of active tcons too + - cifs: fix the connection state transitions with multichannel + - cifs: protect all accesses to chan_* with chan_lock + - cifs: remove unused variable ses_selected + - cifs: fix the cifs_reconnect path for DFS + - cifs: remove repeated state change in dfs tree connect + - cifs: make status checks in version independent callers + - cifs: update tcpStatus during negotiate and sess setup + - cifs: cifs_ses_mark_for_reconnect should also update reconnect bits + - smb3: send NTLMSSP version information + - cifs: update internal module number + - Fix a warning about a malformed kernel doc comment in cifs + - cifs: unlock chan_lock before calling cifs_put_tcp_session + - cifs: fix workstation_name for multiuser mounts + - improve error message when mount options conflict with posix + - cifs: call cifs_reconnect when a connection is marked + - cifs: call helper functions for marking channels for reconnect + - cifs: mark sessions for reconnection in helper function + - smb3: fix snapshot mount option + - cifs: fix set of group SID via NTSD xattrs + - cifs: do not use uninitialized data in the owner/group sid + - cifs: fix double free race when mount fails in cifs_get_root() + - cifs: modefromsids must add an ACE for authenticated users + - cifs: fix confusing unneeded warning message on smb2.1 and earlier + - treewide: Replace zero-length arrays with flexible-array members + - smb3: fix incorrect session setup check for multiuser mounts + - cifs: fix handlecache and multiuser + - cifs: truncate the inode and mapping when we simulate fcollapse + - Adjust cifssb maximum read size + - cifs: we do not need a spinlock around the tree access during umount + - cifs: use a different reconnect helper for non-cifsd threads + - cifs: do not skip link targets when an I/O fails + - cifs: convert the path to utf16 in smb2_query_info_compound + - cifs: change smb2_query_info_compound to use a cached fid, if available + - cifs: fix bad fids sent over wire + - cifs: fix incorrect use of list iterator after the loop + - move more common protocol header definitions to smbfs_common + - smb3: move defines for ioctl protocol header and SMB2 sizes to smbfs_common + - smb3: move defines for query info and query fsinfo to smbfs_common + - smb3: cleanup and clarify status of tree connections + - smb3: fix ksmbd bigendian bug in oplock break, and move its struct to + smbfs_common + - cifs: prevent bad output lengths in smb2_ioctl_query_info() + - cifs: fix NULL ptr dereference in smb2_ioctl_query_info() + - cifs: fix potential race with cifsd thread + - cifs: remove check of list iterator against head past the loop body + - cifs: force new session setup and tcon for dfs + - cifs: update internal module number + - cifs: Check the IOCB_DIRECT flag, not O_DIRECT + - cifs: release cached dentries only if mount is complete + - cifs: Split the smb3_add_credits tracepoint + - cifs: potential buffer overflow in handling symlinks + - cifs: verify that tcon is valid before dereference in cifs_kill_sb + - cifs: Use kzalloc instead of kmalloc/memset + - cifs: fix NULL ptr dereference in refresh_mounts() + - cifs: use correct lock type in cifs_reconnect() + - cifs: destage any unwritten data to the server before calling + copychunk_write + - SMB3: EBADF/EIO errors in rename/open caused by race condition in + smb2_compound_op + - cifs: fix signed integer overflow when fl_end is OFFSET_MAX + - cifs: don't call cifs_dfs_query_info_nonascii_quirk() if nodfs was set + - cifs: return ENOENT for DFS lookup_cache_entry() + - cifs: print TIDs as hex + - cifs: move definition of cifs_fattr earlier in cifsglob.h + - cifs: check for smb1 in open_cached_dir() + - cifs: set the CREATE_NOT_FILE when opening the directory in use_cached_dir() + - cifs: smbd: fix typo in comment + - smb3: add trace point for lease not found issue + - cifs: return the more nuanced writeback error on close() + - smb3: add trace point for oplock not found + - Add defines for various newer FSCTLs + - Add various fsctl structs + - cifs: fix minor compile warning + - smb3: check for null tcon + - smb3: don't set rc when used and unneeded in query_info_compound + - smb3: add mount parm nosparse + - cifs: do not use tcpStatus after negotiate completes + - cifs: use new enum for ses_status + - cifs: avoid parallel session setups on same channel + - cifs: cache the dirents for entries in a cached directory + - cifs: fix ntlmssp on old servers + - smb3: remove unneeded null check in cifs_readdir + - cifs: fix potential double free during failed mount + - cifs: remove repeated debug message on cifs_put_smb_ses() + - cifs: when extending a file with falloc we should make files not-sparse + - cifs: fix potential deadlock in direct reclaim + - cifs: do not build smb1ops if legacy support is disabled + - cifs: version operations for smb20 unneeded when legacy support disabled + - cifs: update internal module number + - cifs: skip trailing separators of prefix paths + - cifs: fix uninitialized pointer in error case in dfs_cache_get_tgt_share + - cifs: fix reconnect on smb3 mount types + - cifs: return errors during session setup during reconnects + - cifs: populate empty hostnames for extra channels + - smb3: add trace point for SMB2_set_eof + - cifs: when a channel is not found for server, log its connection id + - smb3: fix empty netname context on secondary channels + - smb3: use netname when available on secondary channels + - cifs: change iface_list from array to sorted linked list + - cifs: during reconnect, update interface if necessary + - cifs: periodically query network interfaces from server + - cifs: avoid deadlocks while updating iface + - cifs: update cifs_ses::ip_addr after failover + - cifs: fix race condition with delayed threads + - cifs: remove unnecessary locking of chan_lock while freeing session + - smb3: workaround negprot bug in some Samba servers + - smb3: check xattr value length earlier + - cifs: remove redundant initialization to variable mnt_sign_enabled + - cifs: remove unnecessary type castings + - cifs: remove unnecessary (void*) conversions. + - cifs: remove some camelCase and also some static build warnings + - cifs: remove minor build warning + - smb2: small refactor in smb2_check_message() + - cifs: list_for_each() -> list_for_each_entry() + - cifs: remove remaining build warnings + - cifs: avoid use of global locks for high contention data + - cifs: fix wrong unlock before return from cifs_tree_connect() + - cifs: when insecure legacy is disabled shrink amount of SMB1 code + - cifs: remove useless DeleteMidQEntry() + - cifs: remove "cifs_" prefix from init/destroy mids functions + - cifs: alloc_mid function should be marked as static + - cifs: update internal module number + - cifs: fix lock length calculation + - cifs: Move cached-dir functions into a separate file + - cifs: Do not use tcon->cfid directly, use the cfid we get from + open_cached_dir + - smb3: allow deferred close timeout to be configurable + - SMB3: fix lease break timeout when multiple deferred close handles for the + same file. + - cifs: Add constructor/destructors for tcon->cfid + - cifs: Do not access tcon->cfids->cfid directly from is_path_accessible + - cifs: remove unused server parameter from calc_smb_size() + - cifs: remove useless parameter 'is_fsctl' from SMB2_ioctl() + - cifs: Fix memory leak on the deferred close + - cifs: move from strlcpy with unused retval to strscpy + - smb3: missing inode locks in zero range + - smb3: missing inode locks in punch hole + - cifs: skip extra NULL byte in filenames + - cifs: Use help macro to get the header preamble size + - cifs: Use help macro to get the mid header size + - cifs: Add helper function to check smb1+ server + - smb3: Move the flush out of smb2_copychunk_range() into its callers + - smb3: fix temporary data corruption in collapse range + - smb3: fix temporary data corruption in insert range + - smb3: use filemap_write_and_wait_range instead of filemap_write_and_wait + - cifs: fix small mempool leak in SMB2_negotiate() + - cifs: revalidate mapping when doing direct writes + - cifs: don't send down the destination address to sendmsg for a SOCK_STREAM + - cifs: always initialize struct msghdr smb_msg completely + - cifs: add missing spinlock around tcon refcount + - cifs: update internal module number + - cifs: misc: fix spelling typo in comment + - cifs: return correct error in ->calc_signature() + - cifs: destage dirty pages before re-reading them for cache=none + - cifs: Fix the error length of VALIDATE_NEGOTIATE_INFO message + - Decrease the number of SMB3 smbdirect client SGEs + - Reduce client smbdirect max receive segment size + - Handle variable number of SGEs in client smbdirect send. + - Fix formatting of client smbdirect RDMA logging + - smb3: add dynamic trace points for tree disconnect + - cifs: Make tcon contain a wrapper structure cached_fids instead of + cached_fid + - cifs: improve handlecaching + - cifs: store a pointer to a fid in the cfid structure instead of the struct + - smb3: define missing create contexts + - smb3: do not log confusing message when server returns no network interfaces + - cifs: Replace a couple of one-element arrays with flexible-array members + - cifs: remove initialization value + - cifs: replace kfree() with kfree_sensitive() for sensitive data + - smb3: rename encryption/decryption TFMs + - cifs: secmech: use shash_desc directly, remove sdesc + - smb3: fix oops in calculating shash_setkey + - cifs: fix skipping to incorrect offset in emit_cached_dirents + - cifs: fix regression in very old smb1 mounts + - smb3: clarify multichannel warning + - cifs: improve symlink handling for smb2+ + - cifs: fix uninitialised var in smb2_compound_op() + - cifs: prevent copying past input buffer boundaries + - cifs: enable caching of directories for which a lease is held + - cifs: find and use the dentry for cached non-root directories also + - cifs: use ALIGN() and round_up() macros + - cifs: fix static checker warning + - cifs: fix double-fault crash during ntlmssp + - smb3: must initialize two ACL struct fields to zero + - cifs: lease key is uninitialized in smb1 paths + - cifs: lease key is uninitialized in two additional functions when smb1 + - smb3: improve SMB3 change notification support + - cifs: Fix xid leak in cifs_create() + - cifs: Fix xid leak in cifs_copy_file_range() + - cifs: Fix xid leak in cifs_flock() + - cifs: Fix xid leak in cifs_ses_add_channel() + - cifs: Fix xid leak in cifs_get_file_info_unix() + - cifs: use LIST_HEAD() and list_move() to simplify code + - cifs: set rc to -ENOENT if we can not get a dentry for the cached dir + - cifs: Fix memory leak when build ntlmssp negotiate blob failed + - smb3: interface count displayed incorrectly + - cifs: drop the lease for cached directories on rmdir or rename + - cifs: fix memory leaks in session setup + - cifs: update internal module number + - cifs: Fix pages array leak when writedata alloc failed in + cifs_writedata_alloc() + - cifs: Fix pages leak when writedata alloc failed in cifs_write_from_iter() + - cifs: fix use-after-free caused by invalid pointer `hostname` + - cred: Do not default to init_cred in prepare_kernel_cred() + - cifs: always iterate smb sessions using primary channel + - cifs: avoid unnecessary iteration of tcp sessions + - cifs: fix use-after-free on the link name + - cifs: Fix connections leak when tlink setup failed + - cifs: add check for returning value of SMB2_close_init + - cifs: Fix wrong return value checking when GETFLAGS + - cifs: add check for returning value of SMB2_set_info_init + - cifs: Use after free in debug code + - cifs: fix missing unlock in cifs_file_copychunk_range() + - cifs: Add "extbuf" and "extbuflen" args to smb2_compound_op() + - cifs: Parse owner/group for stat in smb311 posix extensions + - cifs: skip alloc when request has no pages + - cifs: minor cleanup of some headers + - cifs: fix various whitespace errors in headers + - cifs: fix missing display of three mount options + - cifs: print warning when conflicting soft vs. hard mount options specified + - cifs: fix oops during encryption + - cifs: Remove duplicated include in cifsglob.h + - cifs: set correct tcon status after initial tree connect + - cifs: set correct ipc status after initial tree connect + - cifs: reduce roundtrips on create/qinfo requests + - cifs: use fs_context for automounts + - cifs: get rid of mount options string parsing + - cifs: remove unused smb3_fs_context::mount_options + - cifs: set resolved ip in sockaddr + - cifs: split out ses and tcon retrieval from mount_get_conns() + - cifs: share dfs connections and supers + - cifs: don't refresh cached referrals from unactive mounts + - cifs: fix refresh of cached referrals + - cifs: refresh root referrals + - cifs: don't block in dfs_cache_noreq_update_tgthint() + - cifs: fix confusing debug message + - cifs: fix source pathname comparison of dfs supers + - cifs: optimize reconnect of nested links + - cifs: set correct status of tcon ipc when reconnecting + - cifs: use origin fullpath for automounts + - cifs: don't leak -ENOMEM in smb2_open_file() + - cifs: update internal module number + - cifs: Fix kmap_local_page() unmapping + - cifs: ignore ipc reconnect failures during dfs failover + - cifs: fix race in assemble_neg_contexts() + - cifs: protect access of TCP_Server_Info::{dstaddr,hostname} + - cifs: refcount only the selected iface during interface update + - cifs: fix interface count calculation during refresh + - cifs: fix file info setting in cifs_query_path_info() + - cifs: fix file info setting in cifs_open_file() + - cifs: remove redundant assignment to the variable match + - cifs: fix double free on failed kerberos auth + - cifs: do not query ifaces on smb1 mounts + - cifs: fix potential memory leaks in session setup + - cifs: Fix uninitialized memory read for smb311 posix symlink create + - cifs: fix potential deadlock in cache_refresh_path() + - cifs: avoid re-lookups in dfs_cache_find() + - cifs: don't take exclusive lock for updating target hints + - cifs: remove duplicate code in __refresh_tcon() + - cifs: handle cache lookup errors different than -ENOENT + - cifs: fix return of uninitialized rc in dfs_cache_update_tgthint() + - cifs: do not include page data when checking signature + - cifs: remove unused function + - cifs: Fix oops due to uncleared server->smbd_conn in reconnect + - cifs: Fix use-after-free in rdata->read_into_pages() + - cifs: Use kstrtobool() instead of strtobool() + - cifs: Replace zero-length arrays with flexible-array members + - cifs: print last update time for interface list + - cifs: Get rid of unneeded conditional in the smb2_get_aead_req() + - cifs: update Kconfig description + - cifs: fix indentation in make menuconfig options + - cifs: prevent data race in smb2_reconnect() + - cifs: get rid of unneeded conditional in cifs_get_num_sgs() + - cifs: introduce cifs_io_parms in smb2_async_writev() + - cifs: split out smb3_use_rdma_offload() helper + - cifs: don't try to use rdma offload on encrypted connections + - cifs: Fix uninitialized memory read in smb3_qfs_tcon() + - cifs: remove unneeded 2bytes of padding from smb2 tree connect + - cifs: Fix uninitialized memory reads for oparms.mode + - cifs: fix mount on old smb servers + - cifs: Convert struct fealist away from 1-element array + - cifs: Replace remaining 1-element arrays + - cifs: Check the lease context if we actually got a lease + - cifs: return a single-use cfid if we did not get a lease + - cifs: Fix lost destroy smbd connection when MR allocate failed + - cifs: Fix warning and UAF when destroy the MR list + - cifs: get rid of dns resolve worker + - smb3: Replace smb2pdu 1-element arrays with flex-arrays + - cifs: Add a function to read into an iter from a socket + - cifs: use the least loaded channel for sending requests + - cifs: use tcon allocation functions even for dummy tcon + - cifs: update ip_addr for ses only for primary chan setup + - update internal module version number for cifs.ko + - cifs: match even the scope id for ipv6 addresses + - cifs: reuse cifs_match_ipaddr for comparison of dstaddr too + - cifs: improve checking of DFS links over STATUS_OBJECT_NAME_INVALID + - cifs: prevent data race in cifs_reconnect_tcon() + - cifs: Move the in_send statistic to __smb_send_rqst() + - cifs: Fix smb2_set_path_size() + - cifs: generate signkey for the channel that's reconnecting + - cifs: set DFS root session in cifs_get_smb_ses() + - cifs: fix use-after-free bug in refresh_cache_worker() + - cifs: return DFS root session id in DebugData + - cifs: use DFS root session instead of tcon ses + - cifs: check only tcon status on tcon related functions + - cifs: lock chan_lock outside match_session + - cifs: do not poll server interfaces too regularly + - cifs: empty interface list when server doesn't support query interfaces + - cifs: dump pending mids for all channels in DebugData + - cifs: print session id while listing open files + - cifs: append path to open_enter trace event + - cifs: avoid race conditions with parallel reconnects + - cifs: fix missing unload_nls() in smb2_reconnect() + - smb3: lower default deferred close timeout to address perf regression + - cifs: fix dentry lookups in directory handle cache + - smb3: fix unusable share after force unmount failure + - cifs: fix DFS traversal oops without CONFIG_CIFS_DFS_UPCALL + - cifs: avoid races in parallel reconnects in smb1 + - cifs: prevent infinite recursion in CIFSGetDFSRefer() + - cifs: get rid of dead check in smb2_reconnect() + - cifs: sanitize paths in cifs_update_super_prepath. + - cifs: double lock in cifs_reconnect_tcon() + - cifs: fix negotiate context parsing + - cifs: avoid dup prefix path in dfs_get_automount_devname() + - cifs: Simplify SMB2_open_init() + - cifs: Simplify SMB2_open_init() + - cifs: Simplify SMB2_open_init() + - cifs: Avoid a cast in add_lease_context() + - SMB3: Add missing locks to protect deferred close file list + - SMB3: Close deferred file handles in case of handle lease break + - cifs: missing lock when updating session status + - SMB3.1.1: add new tree connect ShareFlags + - smb3: make query_on_disk_id open context consistent and move to common code + - smb3: move some common open context structs to smbfs_common + - cifs: update internal module version number for cifs.ko + - SMB3.1.1: correct definition for app_instance_id create contexts + - cifs: protect session status check in smb2_reconnect() + - cifs: print smb3_fs_context::source when mounting + - cifs: fix potential use-after-free bugs in TCP_Server_Info::hostname + - cifs: fix potential race when tree connecting ipc + - cifs: protect access of TCP_Server_Info::{origin,leaf}_fullpath + - cifs: avoid potential races when handling multiple dfs tcons + - cifs: fix sharing of DFS connections + - cifs: fix pcchunk length type in smb2_copychunk_range + - do not reuse connection if share marked as isolated + - smb3: improve parallel reads of large files + - SMB3: force unmount was failing to close deferred close files + - smb3: fix problem remounting a share after shutdown + - cifs: release leases for deferred close handles when freezing + - SMB3: Close all deferred handles of inode in case of handle lease break + - SMB3: drop reference to cfile before sending oplock break + - cifs: fix smb1 mount regression + - smb3: display debug information better for encryption + - cifs: mapchars mount option ignored + - smb3: missing null check in SMB2_change_notify + - smb: delete an unnecessary statement + - cifs: address unused variable warning + - smb: remove obsolete comment + - cifs: fix status checks in cifs_tree_connect + - cifs: print all credit counters in DebugData + - smb/client: print "Unknown" instead of bogus link speed value + - cifs: fix sockaddr comparison in iface_cmp + - cifs: fix max_credits implementation + - cifs: fix lease break oops in xfstest generic/098 + - cifs: add a warning when the in-flight count goes negative + - SMB3: Do not send lease break acknowledgment if all file handles have been + closed + - cifs: print nosharesock value while dumping mount options + - smb: client: fix warning in cifs_match_super() + - smb: client: fix warning in cifs_smb3_do_mount() + - cifs: print more detail when invalidate_inode_mapping fails + - smb3: do not reserve too many oplock credits + - smb: client: fix warning in CIFSFindFirst() + - smb: client: fix warning in CIFSFindNext() + - smb: client: fix warning in generic_ip_connect() + - cifs: prevent use-after-free by freeing the cfile later + - cifs: do all necessary checks for credits within or before locking + - cifs: fix session state check in reconnect to avoid use-after-free issue + - cifs: fix session state check in smb2_find_smb_ses + - cifs: print client_guid in DebugData + - smb: client: fix broken file attrs with nodfs mounts + - smb: client: fix parsing of source mount option + - smb: client: fix shared DFS root mounts with different prefixes + - smb: client: improve DFS mount check + - cifs: log session id when a matching ses is not found + - cifs: new dynamic tracepoint to track ses not found errors + - cifs: fix session state transition to avoid use-after-free issue + - smb: client: remove redundant pointer 'server' + - cifs: if deferred close is disabled then close files immediately + - smb: client: Fix -Wstringop-overflow issues + - smb: client: fix missed ses refcounting + - cifs: fix mid leak during reconnection after timeout threshold + - cifs: update internal module version number for cifs.ko + - cifs: allow dumping keys for directories too + - smb3: do not set NTLMSSP_VERSION flag for negotiate not auth request + - cifs: add missing return value check for cifs_sb_tlink + - smb: client: fix dfs link mount against w2k8 + - cifs: fix potential oops in cifs_oplock_break + - cifs: Release folio lock on fscache read hit. + - smb3: display network namespace in debug information + - smb: client: fix null auth + * jammy/linux: 5.15.0-88.98 -proposed tracker (LP: #2038055) + * CVE-2023-4244 + - netfilter: nf_tables: don't skip expired elements during walk + - netfilter: nf_tables: adapt set backend to use GC transaction API + - netfilter: nft_set_hash: mark set element as dead when deleting from packet + path + - netfilter: nf_tables: GC transaction API to avoid race with control plane + - netfilter: nf_tables: remove busy mark and gc batch API + - netfilter: nf_tables: don't fail inserts if duplicate has expired + - netfilter: nf_tables: fix kdoc warnings after gc rework + - netfilter: nf_tables: fix GC transaction races with netns and netlink event + exit path + - netfilter: nf_tables: GC transaction race with netns dismantle + - netfilter: nf_tables: GC transaction race with abort path + - netfilter: nf_tables: use correct lock to protect gc_list + - netfilter: nf_tables: defer gc run if previous batch is still pending + - netfilter: nft_dynset: disallow object maps + - netfilter: nft_set_rbtree: skip sync GC for new elements in this transaction + * CVE-2023-42756 + - netfilter: ipset: Fix race between IPSET_CMD_CREATE and IPSET_CMD_SWAP + * CVE-2023-4623 + - net/sched: sch_hfsc: Ensure inner classes have fsc curve + * PCI BARs larger than 128GB are disabled (LP: #2037403) + - PCI: Support BAR sizes up to 8TB + * Fix unstable audio at low levels on Thinkpad P1G4 (LP: #2037077) + - ALSA: hda/realtek - ALC287 I2S speaker platform support + * Check for changes relevant for security certifications (LP: #1945989) + - [Packaging] Add a new fips-checks script + * Jammy update: v5.15.126 upstream stable release (LP: #2037593) + - io_uring: gate iowait schedule on having pending requests + - perf: Fix function pointer case + - net/mlx5: Free irqs only on shutdown callback + - arm64: errata: Add workaround for TSB flush failures + - arm64: errata: Add detection for TRBE write to out-of-range + - [Config] updateconfigs for ARM64_ERRATUM_ and + ARM64_WORKAROUND_TSB_FLUSH_FAILURE + - iommu/arm-smmu-v3: Work around MMU-600 erratum 1076982 + - iommu/arm-smmu-v3: Document MMU-700 erratum 2812531 + - iommu/arm-smmu-v3: Add explicit feature for nesting + - iommu/arm-smmu-v3: Document nesting-related errata + - arm64: dts: imx8mn-var-som: add missing pull-up for onboard PHY reset pinmux + - word-at-a-time: use the same return type for has_zero regardless of + endianness + - KVM: s390: fix sthyi error handling + - wifi: cfg80211: Fix return value in scan logic + - net/mlx5: DR, fix memory leak in mlx5dr_cmd_create_reformat_ctx + - net/mlx5e: fix return value check in mlx5e_ipsec_remove_trailer() + - bpf: Add length check for SK_DIAG_BPF_STORAGE_REQ_MAP_FD parsing + - rtnetlink: let rtnl_bridge_setlink checks IFLA_BRIDGE_MODE length + - net: dsa: fix value check in bcm_sf2_sw_probe() + - perf test uprobe_from_different_cu: Skip if there is no gcc + - net: sched: cls_u32: Fix match key mis-addressing + - mISDN: hfcpci: Fix potential deadlock on &hc->lock + - qed: Fix kernel-doc warnings + - qed: Fix scheduling in a tasklet while getting stats + - net: annotate data-races around sk->sk_max_pacing_rate + - net: add missing READ_ONCE(sk->sk_rcvlowat) annotation + - net: add missing READ_ONCE(sk->sk_sndbuf) annotation + - net: add missing READ_ONCE(sk->sk_rcvbuf) annotation + - net: add missing data-race annotations around sk->sk_peek_off + - net: add missing data-race annotation for sk_ll_usec + - net/sched: taprio: Limit TCA_TAPRIO_ATTR_SCHED_CYCLE_TIME to INT_MAX. + - bpf, cpumap: Handle skb as well when clean up ptr_ring + - bpf: sockmap: Remove preempt_disable in sock_map_sk_acquire + - net: ll_temac: Switch to use dev_err_probe() helper + - net: ll_temac: fix error checking of irq_of_parse_and_map() + - net: korina: handle clk prepare error in korina_probe() + - net: netsec: Ignore 'phy-mode' on SynQuacer in DT mode + - net: dcb: choose correct policy to parse DCB_ATTR_BCN + - s390/qeth: Don't call dev_close/dev_open (DOWN/UP) + - ip6mr: Fix skb_under_panic in ip6mr_cache_report() + - vxlan: Fix nexthop hash size + - net/mlx5: fs_core: Make find_closest_ft more generic + - net/mlx5: fs_core: Skip the FTs in the same FS_TYPE_PRIO_CHAINS fs_prio + - prestera: fix fallback to previous version on same major version + - tcp_metrics: fix addr_same() helper + - tcp_metrics: annotate data-races around tm->tcpm_stamp + - tcp_metrics: annotate data-races around tm->tcpm_lock + - tcp_metrics: annotate data-races around tm->tcpm_vals[] + - tcp_metrics: annotate data-races around tm->tcpm_net + - tcp_metrics: fix data-race in tcpm_suck_dst() vs fastopen + - scsi: zfcp: Defer fc_rport blocking until after ADISC response + - scsi: storvsc: Limit max_sectors for virtual Fibre Channel devices + - libceph: fix potential hang in ceph_osdc_notify() + - USB: zaurus: Add ID for A-300/B-500/C-700 + - ceph: defer stopping mdsc delayed_work + - firmware: arm_scmi: Drop OF node reference in the transport channel setup + - exfat: use kvmalloc_array/kvfree instead of kmalloc_array/kfree + - exfat: release s_lock before calling dir_emit() + - mtd: spinand: toshiba: Fix ecc_get_status + - mtd: rawnand: meson: fix OOB available bytes for ECC + - arm64: dts: stratix10: fix incorrect I2C property for SCL signal + - wifi: mt76: mt7615: do not advertise 5 GHz on first phy of MT7615D (DBDC) + - rbd: prevent busy loop when requesting exclusive lock + - bpf: Disable preemption in bpf_event_output + - open: make RESOLVE_CACHED correctly test for O_TMPFILE + - drm/ttm: check null pointer before accessing when swapping + - bpf, cpumap: Make sure kthread is running before map update returns + - file: reinstate f_pos locking optimization for regular files + - fs/ntfs3: Use __GFP_NOWARN allocation at ntfs_load_attr_list() + - fs/sysv: Null check to prevent null-ptr-deref bug + - net: usbnet: Fix WARNING in usbnet_start_xmit/usb_submit_urb + - fs: Protect reconfiguration of sb read-write from racing writes + - ext2: Drop fragment support + - mtd: rawnand: omap_elm: Fix incorrect type in assignment + - mtd: rawnand: rockchip: fix oobfree offset and description + - mtd: rawnand: rockchip: Align hwecc vs. raw page helper layouts + - mtd: rawnand: fsl_upm: Fix an off-by one test in fun_exec_op() + - powerpc/mm/altmap: Fix altmap boundary check + - drm/imx/ipuv3: Fix front porch adjustment upon hactive aligning + - selftests/rseq: check if libc rseq support is registered + - selftests/rseq: Play nice with binaries statically linked against glibc + 2.35+ + - soundwire: bus: pm_runtime_request_resume on peripheral attachment + - soundwire: fix enumeration completion + - PM / wakeirq: support enabling wake-up irq after runtime_suspend called + - PM: sleep: wakeirq: fix wake irq arming + - Linux 5.15.126 + * Jammy update: v5.15.125 upstream stable release (LP: #2036843) + - ia64/cpu: Switch to arch_cpu_finalize_init() + - m68k/cpu: Switch to arch_cpu_finalize_init() + - mips/cpu: Switch to arch_cpu_finalize_init() + - sh/cpu: Switch to arch_cpu_finalize_init() + - Linux 5.15.125 + - Upstream stable to v5.15.125 + * CVE-2023-42755 + - net/sched: Retire rsvp classifier + - [Config] remove NET_CLS_RSVP and NET_CLS_RSVP6 + * CVE-2023-42753 + - netfilter: ipset: add the missing IP_SET_HASH_WITH_NET0 macro for + ip_set_hash_netportnet.c + * CVE-2023-34319 + - xen/netback: Fix buffer overrun triggered by unusual packet + * CVE-2023-5197 + - netfilter: nf_tables: disallow rule removal from chain binding + * CVE-2023-4921 + - net: sched: sch_qfq: Fix UAF in qfq_dequeue() + * CVE-2023-42752 + - igmp: limit igmpv3_newpack() packet size to IP_MAX_MTU + * Avoid address overwrite in kernel_connect (LP: #2035163) + - net: Avoid address overwrite in kernel_connect + * NULL Pointer Dereference During KVM MMU Page Invalidation (LP: #2035166) + - KVM: x86/mmu: Track the number of TDP MMU pages, but not the actual pages + * Fix suspend hang on Lenovo workstation (LP: #2034479) + - igb: Fix igb_down hung on surprise removal + * [regression] Unable to initialize SGX enclaves with XFRM other than 3 + (LP: #2034745) + - x86/fpu: Set X86_FEATURE_OSXSAVE feature after enabling OSXSAVE in CR4 + * CVE-2023-4881 + - netfilter: nftables: exthdr: fix 4-byte stack OOB write + * CVE-2023-4622 + - af_unix: Fix null-ptr-deref in unix_stream_sendpage(). + * Jammy update: v5.15.124 upstream stable release (LP: #2035400) + - jbd2: Fix wrongly judgement for buffer head removing while doing checkpoint + - KVM: s390: pv: fix index value of replaced ASCE + - io_uring: don't audit the capability check in io_uring_create() + - gpio: tps68470: Make tps68470_gpio_output() always set the initial value + - pwm: Add a stub for devm_pwmchip_add() + - gpio: mvebu: Make use of devm_pwmchip_add + - gpio: mvebu: fix irq domain leak + - btrfs: fix race between quota disable and relocation + - i2c: Delete error messages for failed memory allocations + - i2c: Improve size determinations + - i2c: nomadik: Remove unnecessary goto label + - i2c: nomadik: Use devm_clk_get_enabled() + - i2c: nomadik: Remove a useless call in the remove function + - PCI/ASPM: Return 0 or -ETIMEDOUT from pcie_retrain_link() + - PCI/ASPM: Factor out pcie_wait_for_retrain() + - PCI/ASPM: Avoid link retraining race + - PCI: rockchip: Remove writes to unused registers + - PCI: rockchip: Fix window mapping and address translation for endpoint + - PCI: rockchip: Don't advertise MSI-X in PCIe capabilities + - dlm: cleanup plock_op vs plock_xop + - dlm: rearrange async condition return + - fs: dlm: interrupt posix locks only when process is killed + - drm/ttm: Don't print error message if eviction was interrupted + - drm/ttm: Don't leak a resource on eviction error + - n_tty: Rename tail to old_tail in n_tty_read() + - tty: fix hang on tty device with no_room set + - drm/ttm: never consider pinned BOs for eviction&swap + - cifs: missing directory in MAINTAINERS file + - cifs: use fs_context for automounts + - ksmbd: remove internal.h include + - cifs: if deferred close is disabled then close files immediately + - pwm: meson: Simplify duplicated per-channel tracking + - pwm: meson: fix handling of period/duty if greater than UINT_MAX + - tracing/probes: Add symstr type for dynamic events + - tracing/probes: Fix to avoid double count of the string length on the array + - tracing: Allow synthetic events to pass around stacktraces + - Revert "tracing: Add "(fault)" name injection to kernel probes" + - tracing/probes: Fix to record 0-length data_loc in fetch_store_string*() if + fails + - scsi: qla2xxx: Remove unused declarations for qla2xxx + - scsi: qla2xxx: Multi-que support for TMF + - scsi: qla2xxx: Fix task management cmd failure + - scsi: qla2xxx: Fix task management cmd fail due to unavailable resource + - scsi: qla2xxx: Add debug prints in the device remove path + - scsi: qla2xxx: Fix hang in task management + - drm/amdgpu: fix vkms crtc settings + - drm/amdgpu/vkms: relax timer deactivation by hrtimer_try_to_cancel + - phy: qcom-snps: Use dev_err_probe() to simplify code + - phy: qcom-snps: correct struct qcom_snps_hsphy kerneldoc + - phy: qcom-snps-femto-v2: keep cfg_ahb_clk enabled during runtime suspend + - phy: qcom-snps-femto-v2: properly enable ref clock + - soundwire: qcom: update status correctly with mask + - media: staging: atomisp: select V4L2_FWNODE + - i40e: Fix an NULL vs IS_ERR() bug for debugfs_create_dir() + - iavf: fix potential deadlock on allocation failure + - iavf: check for removal state before IAVF_FLAG_PF_COMMS_FAILED + - net: phy: marvell10g: fix 88x3310 power up + - net: hns3: fix wrong tc bandwidth weight data issue + - net: hns3: fix wrong bw weight of disabled tc issue + - vxlan: move to its own directory + - vxlan: calculate correct header length for GPE + - phy: hisilicon: Fix an out of bounds check in hisi_inno_phy_probe() + - ethernet: atheros: fix return value check in atl1e_tso_csum() + - ipv6 addrconf: fix bug where deleting a mngtmpaddr can create a new + temporary address + - ice: Fix memory management in ice_ethtool_fdir.c + - bonding: reset bond's flags when down link is P2P device + - team: reset team's flags when down link is P2P device + - net: stmmac: Apply redundant write work around on 4.xx too + - platform/x86: msi-laptop: Fix rfkill out-of-sync on MSI Wind U100 + - igc: Fix Kernel Panic during ndo_tx_timeout callback + - netfilter: nft_set_rbtree: fix overlap expiration walk + - net/sched: mqprio: refactor nlattr parsing to a separate function + - net/sched: mqprio: add extack to mqprio_parse_nlattr() + - net/sched: mqprio: Add length check for TCA_MQPRIO_{MAX/MIN}_RATE64 + - benet: fix return value check in be_lancer_xmit_workarounds() + - tipc: check return value of pskb_trim() + - tipc: stop tipc crypto on failure in tipc_node_create + - RDMA/mlx4: Make check for invalid flags stricter + - drm/msm/dpu: drop enum dpu_core_perf_data_bus_id + - drm/msm/adreno: Fix snapshot BINDLESS_DATA size + - RDMA/irdma: Add missing read barriers + - RDMA/irdma: Fix data race on CQP completion stats + - RDMA/irdma: Fix data race on CQP request done + - RDMA/mthca: Fix crash when polling CQ for shared QPs + - RDMA/bnxt_re: Prevent handling any completions after qp destroy + - drm/msm: Fix IS_ERR_OR_NULL() vs NULL check in a5xx_submit_in_rb() + - ASoC: fsl_spdif: Silence output on stop + - block: Fix a source code comment in include/uapi/linux/blkzoned.h + - dm raid: fix missing reconfig_mutex unlock in raid_ctr() error paths + - dm raid: clean up four equivalent goto tags in raid_ctr() + - dm raid: protect md_stop() with 'reconfig_mutex' + - drm/amd: Fix an error handling mistake in psp_sw_init() + - RDMA/irdma: Report correct WC error + - ata: pata_ns87415: mark ns87560_tf_read static + - ring-buffer: Fix wrong stat of cpu_buffer->read + - tracing: Fix warning in trace_buffered_event_disable() + - Revert "usb: gadget: tegra-xudc: Fix error check in + tegra_xudc_powerdomain_init()" + - usb: gadget: call usb_gadget_check_config() to verify UDC capability + - USB: gadget: Fix the memory leak in raw_gadget driver + - KVM: Grab a reference to KVM for VM and vCPU stats file descriptors + - KVM: VMX: Don't fudge CR0 and CR4 for restricted L2 guest + - serial: qcom-geni: drop bogus runtime pm state update + - serial: 8250_dw: Preserve original value of DLF register + - serial: sifive: Fix sifive_serial_console_setup() section + - USB: serial: option: support Quectel EM060K_128 + - USB: serial: option: add Quectel EC200A module support + - USB: serial: simple: add Kaufmann RKS+CAN VCP + - USB: serial: simple: sort driver entries + - can: gs_usb: gs_can_close(): add missing set of CAN state to + CAN_STATE_STOPPED + - Revert "usb: dwc3: core: Enable AutoRetry feature in the controller" + - usb: dwc3: pci: skip BYT GPIO lookup table for hardwired phy + - usb: dwc3: don't reset device side if dwc3 was configured as host-only + - usb: ohci-at91: Fix the unhandle interrupt when resume + - USB: quirks: add quirk for Focusrite Scarlett + - usb: cdns3: fix incorrect calculation of ep_buf_size when more than one + config + - usb: xhci-mtk: set the dma max_seg_size + - Revert "usb: xhci: tegra: Fix error check" + - Documentation: security-bugs.rst: update preferences when dealing with the + linux-distros group + - Documentation: security-bugs.rst: clarify CVE handling + - staging: r8712: Fix memory leak in _r8712_init_xmit_priv() + - staging: ks7010: potential buffer overflow in ks_wlan_set_encode_ext() + - tty: n_gsm: fix UAF in gsm_cleanup_mux + - Revert "xhci: add quirk for host controllers that don't update endpoint DCS" + - ALSA: hda/relatek: Enable Mute LED on HP 250 G8 + - hwmon: (k10temp) Enable AMD3255 Proc to show negative temperature + - hwmon: (nct7802) Fix for temp6 (PECI1) processed even if PECI1 disabled + - btrfs: check if the transaction was aborted at btrfs_wait_for_commit() + - btrfs: check for commit error at btrfs_attach_transaction_barrier() + - file: always lock position for FMODE_ATOMIC_POS + - nfsd: Remove incorrect check in nfsd4_validate_stateid + - tpm_tis: Explicitly check for error code + - irq-bcm6345-l1: Do not assume a fixed block to cpu mapping + - irqchip/gic-v4.1: Properly lock VPEs when doing a directLPI invalidation + - locking/rtmutex: Fix task->pi_waiters integrity + - KVM: x86: Disallow KVM_SET_SREGS{2} if incoming CR0 is invalid + - virtio-net: fix race between set queues and probe + - s390/dasd: fix hanging device after quiesce/resume + - ASoC: wm8904: Fill the cache for WM8904_ADC_TEST_0 register + - ceph: never send metrics if disable_send_metrics is set + - dm cache policy smq: ensure IO doesn't prevent cleaner policy progress + - rbd: make get_lock_owner_info() return a single locker or NULL + - rbd: harden get_lock_owner_info() a bit + - rbd: retrieve and check lock owner twice before blocklisting + - tracing: Fix trace_event_raw_event_synth() if else statement + - ACPI: processor: perflib: Use the "no limit" frequency QoS + - ACPI: processor: perflib: Avoid updating frequency QoS unnecessarily + - cpufreq: intel_pstate: Drop ACPI _PSS states table patching + - selftests: mptcp: sockopt: use 'iptables-legacy' if available + - io_uring: treat -EAGAIN for REQ_F_NOWAIT as final for io-wq + - ASoC: cs42l51: fix driver to properly autoload with automatic module loading + - selftests: mptcp: join: only check for ip6tables if needed + - Linux 5.15.124 + * Jammy update: v5.15.123 upstream stable release (LP: #2034612) + - ALSA: hda/realtek - remove 3k pull low procedure + - ALSA: hda/realtek: Add quirk for Clevo NS70AU + - ALSA: hda/realtek: Enable Mute LED on HP Laptop 15s-eq2xxx + - keys: Fix linking a duplicate key to a keyring's assoc_array + - perf probe: Add test for regression introduced by switch to + die_get_decl_file() + - btrfs: fix warning when putting transaction with qgroups enabled after abort + - fuse: revalidate: don't invalidate if interrupted + - btrfs: zoned: fix memory leak after finding block group with super blocks + - fuse: ioctl: translate ENOSYS in outarg + - selftests: tc: set timeout to 15 minutes + - selftests: tc: add 'ct' action kconfig dep + - regmap: Drop initial version of maximum transfer length fixes + - regmap: Account for register length in SMBus I/O limits + - can: bcm: Fix UAF in bcm_proc_show() + - selftests: tc: add ConnTrack procfs kconfig + - drm/client: Fix memory leak in drm_client_target_cloned + - drm/client: Fix memory leak in drm_client_modeset_probe + - drm/amd/display: Disable MPC split by default on special asic + - drm/amd/display: Keep PHY active for DP displays on DCN31 + - ASoC: fsl_sai: Disable bit clock with transmitter + - ASoC: codecs: wcd938x: fix missing clsh ctrl error handling + - ASoC: codecs: wcd-mbhc-v2: fix resource leaks on component remove + - ASoC: codecs: wcd938x: fix resource leaks on component remove + - ASoC: codecs: wcd938x: fix missing mbhc init error handling + - ASoC: codecs: wcd934x: fix resource leaks on component remove + - ASoC: codecs: wcd938x: fix codec initialisation race + - ASoC: codecs: wcd938x: fix soundwire initialisation race + - ext4: correct inline offset when handling xattrs in inode body + - drm/radeon: Fix integer overflow in radeon_cs_parser_init + - ALSA: emu10k1: roll up loops in DSP setup code for Audigy + - quota: Properly disable quotas when add_dquot_ref() fails + - quota: fix warning in dqgrab() + - udf: Fix uninitialized array access for some pathnames + - fs: jfs: Fix UBSAN: array-index-out-of-bounds in dbAllocDmapLev + - MIPS: dec: prom: Address -Warray-bounds warning + - FS: JFS: Fix null-ptr-deref Read in txBegin + - FS: JFS: Check for read-only mounted filesystem in txBegin + - spi: bcm63xx: fix max prepend length + - fbdev: imxfb: warn about invalid left/right margin + - perf build: Fix library not found error when using CSLIBS + - pinctrl: amd: Use amd_pinconf_set() for all config options + - net: ethernet: ti: cpsw_ale: Fix cpsw_ale_get_field()/cpsw_ale_set_field() + - bridge: Add extack warning when enabling STP in netns. + - ethernet: use eth_hw_addr_set() instead of ether_addr_copy() + - of: net: add a helper for loading netdev->dev_addr + - ethernet: use of_get_ethdev_address() + - net: ethernet: mtk_eth_soc: handle probe deferral + - net: sched: cls_bpf: Undo tcf_bind_filter in case of an error + - iavf: Fix use-after-free in free_netdev + - iavf: Fix out-of-bounds when setting channels on remove + - security: keys: Modify mismatched function name + - octeontx2-pf: Dont allocate BPIDs for LBK interfaces + - bpf: Fix subprog idx logic in check_max_stack_depth + - igc: Prevent garbled TX queue with XDP ZEROCOPY + - tcp: annotate data-races around tcp_rsk(req)->ts_recent + - net: ipv4: Use kfree_sensitive instead of kfree + - net:ipv6: check return value of pskb_trim() + - Revert "tcp: avoid the lookup process failing to get sk in ehash table" + - fbdev: au1200fb: Fix missing IRQ check in au1200fb_drv_probe + - llc: Don't drop packet from non-root netns. + - netfilter: nf_tables: fix spurious set element insertion failure + - netfilter: nf_tables: skip bound chain in netns release path + - tcp: annotate data-races around tp->tcp_tx_delay + - tcp: annotate data-races around tp->keepalive_time + - tcp: annotate data-races around tp->keepalive_intvl + - tcp: annotate data-races around tp->keepalive_probes + - tcp: annotate data-races around icsk->icsk_syn_retries + - tcp: annotate data-races around tp->linger2 + - tcp: annotate data-races around rskq_defer_accept + - tcp: annotate data-races around tp->notsent_lowat + - tcp: annotate data-races around icsk->icsk_user_timeout + - tcp: annotate data-races around fastopenq.max_qlen + - net: phy: prevent stale pointer dereference in phy_init() + - jbd2: recheck chechpointing non-dirty buffer + - tracing/histograms: Return an error if we fail to add histogram to hist_vars + list + - nixge: fix mac address error handling again + - Linux 5.15.123 + * allow io_uring to be disabled in runtime (LP: #2035116) + - io_uring: add a sysctl to disable io_uring system-wide + * CVE-2023-31083 + - Bluetooth: hci_ldisc: check HCI_UART_PROTO_READY flag in HCIUARTGETPROTO + * CVE-2023-3772 + - xfrm: add NULL check in xfrm_update_ae_params + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + -- Tim Gardner Tue, 17 Oct 2023 10:19:43 -0600 + +linux-azure-5.15 (5.15.0-1050.57~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1050.57~20.04.1 -proposed tracker + (LP: #2038172) + + [ Ubuntu: 5.15.0-1050.57 ] + + * jammy/linux-azure: 5.15.0-1050.57 -proposed tracker (LP: #2038173) + * jammy/linux: 5.15.0-87.97 -proposed tracker (LP: #2038209) + * CVE-2023-4623 + - net/sched: sch_hfsc: Ensure inner classes have fsc curve + * CVE-2023-42755 + - net/sched: Retire rsvp classifier + - [Config] remove NET_CLS_RSVP and NET_CLS_RSVP6 + * CVE-2023-34319 + - xen/netback: Fix buffer overrun triggered by unusual packet + * CVE-2023-4921 + - net: sched: sch_qfq: Fix UAF in qfq_dequeue() + * CVE-2023-42752 + - igmp: limit igmpv3_newpack() packet size to IP_MAX_MTU + * CVE-2023-4622 + - af_unix: Fix null-ptr-deref in unix_stream_sendpage(). + * CVE-2023-4244 + - netfilter: nft_set_rbtree: fix overlap expiration walk + - netfilter: nf_tables: don't skip expired elements during walk + - netfilter: nf_tables: adapt set backend to use GC transaction API + - netfilter: nft_set_hash: mark set element as dead when deleting from packet + path + - netfilter: nf_tables: GC transaction API to avoid race with control plane + - netfilter: nf_tables: remove busy mark and gc batch API + - netfilter: nf_tables: don't fail inserts if duplicate has expired + - netfilter: nf_tables: fix kdoc warnings after gc rework + - netfilter: nf_tables: fix GC transaction races with netns and netlink event + exit path + - netfilter: nf_tables: GC transaction race with netns dismantle + - netfilter: nf_tables: GC transaction race with abort path + - netfilter: nf_tables: use correct lock to protect gc_list + - netfilter: nf_tables: defer gc run if previous batch is still pending + - netfilter: nft_dynset: disallow object maps + - netfilter: nft_set_rbtree: skip sync GC for new elements in this transaction + * CVE-2023-42756 + - netfilter: ipset: Fix race between IPSET_CMD_CREATE and IPSET_CMD_SWAP + * CVE-2023-42753 + - netfilter: ipset: add the missing IP_SET_HASH_WITH_NET0 macro for + ip_set_hash_netportnet.c + * CVE-2023-5197 + - netfilter: nf_tables: skip bound chain in netns release path + - netfilter: nf_tables: disallow rule removal from chain binding + * CVE-2023-4881 + - netfilter: nftables: exthdr: fix 4-byte stack OOB write + + -- Tim Gardner Wed, 04 Oct 2023 10:50:01 -0600 + +linux-azure-5.15 (5.15.0-1049.56~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1049.56~20.04.1 -proposed tracker + (LP: #2036536) + + [ Ubuntu: 5.15.0-1049.56 ] + + * jammy/linux-azure: 5.15.0-1049.56 -proposed tracker (LP: #2036537) + * jammy/linux: 5.15.0-86.96 -proposed tracker (LP: #2036575) + * 5.15.0-85 live migration regression (LP: #2036675) + - Revert "KVM: x86: Always enable legacy FP/SSE in allowed user XFEATURES" + - Revert "x86/kvm/fpu: Limit guest user_xfeatures to supported bits of XCR0" + * Regression for ubuntu_bpf test build on Jammy 5.15.0-85.95 (LP: #2035181) + - selftests/bpf: fix static assert compilation issue for test_cls_*.c + * `refcount_t: underflow; use-after-free.` on hidon w/ 5.15.0-85-generic + (LP: #2034447) + - crypto: rsa-pkcs1pad - Use helper to set reqsize + + -- Stefan Bader Thu, 21 Sep 2023 14:44:08 +0200 + +linux-azure-5.15 (5.15.0-1048.55~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1048.55~20.04.1 -proposed tracker + (LP: #2033785) + + [ Ubuntu: 5.15.0-1048.55 ] + + * jammy/linux-azure: 5.15.0-1048.55 -proposed tracker (LP: #2033786) + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + * Azure: Fix Infiniband identifier order (LP: #2034747) + - RDMA: Add ERDMA to rdma_driver_id definition + * Azure: net: mana: Fix MANA VF unload when hardware is unresponsive + (LP: #2033531) + - net: mana: Fix MANA VF unload when hardware is unresponsive + * Azure: net: mana: Add page pool for RX buffers (LP: #2034277) + - net: mana: Add page pool for RX buffers + * jammy/linux: 5.15.0-85.95 -proposed tracker (LP: #2033821) + * Please enable Renesas RZ platform serial installer (LP: #2022361) + - [Config] enable hihope RZ/G2M serial console + - [Config] Mark sh-sci as built-in + * Request backport of xen timekeeping performance improvements (LP: #2033122) + - x86/xen/time: prefer tsc as clocksource when it is invariant + * kdump doesn't work with UEFI secure boot and kernel lockdown enabled on + ARM64 (LP: #2033007) + - [Config]: Enable CONFIG_KEXEC_IMAGE_VERIFY_SIG + - kexec, KEYS: make the code in bzImage64_verify_sig generic + - arm64: kexec_file: use more system keyrings to verify kernel image signature + * ubuntu_kernel_selftests:net:vrf-xfrm-tests.sh: 8 failed test cases on + jammy/fips (LP: #2019880) + - selftests: net: vrf-xfrm-tests: change authentication and encryption algos + * ubuntu_kernel_selftests:net:tls: 88 failed test cases on jammy/fips + (LP: #2019868) + - selftests/harness: allow tests to be skipped during setup + - selftests: net: tls: check if FIPS mode is enabled + * A general-proteciton exception during guest migration to unsupported PKRU + machine (LP: 2032164, reverted) + - x86/kvm/fpu: Limit guest user_xfeatures to supported bits of XCR0 + - KVM: x86: Always enable legacy FP/SSE in allowed user XFEATURES + * CVE-2023-4569 + - netfilter: nf_tables: deactivate catchall elements in next generation + * CVE-2023-20569 + - x86/cpu, kvm: Add support for CPUID_80000021_EAX + - x86/srso: Add a Speculative RAS Overflow mitigation + - x86/srso: Add IBPB_BRTYPE support + - x86/srso: Add SRSO_NO support + - x86/srso: Add IBPB + - x86/srso: Add IBPB on VMEXIT + - x86/srso: Fix return thunks in generated code + - x86/srso: Tie SBPB bit setting to microcode patch detection + - x86: fix backwards merge of GDS/SRSO bit + - x86/srso: Fix build breakage with the LLVM linker + - x86/cpu: Fix __x86_return_thunk symbol type + - x86/cpu: Fix up srso_safe_ret() and __x86_return_thunk() + - x86/alternative: Make custom return thunk unconditional + - objtool: Add frame-pointer-specific function ignore + - x86/ibt: Add ANNOTATE_NOENDBR + - x86/cpu: Clean up SRSO return thunk mess + - x86/cpu: Rename original retbleed methods + - x86/cpu: Rename srso_(.*)_alias to srso_alias_\1 + - x86/cpu: Cleanup the untrain mess + - x86/srso: Explain the untraining sequences a bit more + - x86/static_call: Fix __static_call_fixup() + - x86/retpoline: Don't clobber RFLAGS during srso_safe_ret() + - x86/srso: Disable the mitigation on unaffected configurations + - x86/retpoline,kprobes: Fix position of thunk sections with CONFIG_LTO_CLANG + - objtool/x86: Fixup frame-pointer vs rethunk + - x86/srso: Correct the mitigation status when SMT is disabled + - objtool/x86: Fix SRSO mess + - Ubuntu: [Config]: enable Speculative Return Stack Overflow mitigation + * Fix unreliable ethernet cable detection on I219 NIC (LP: #2028122) + - e1000e: Use PME poll to circumvent unreliable ACPI wake + * Need to get fine-grained control for FAN(TFN) Participant. (LP: #2031333) + - ACPI: fan: Separate file for attributes creation + - ACPI: fan: Optimize struct acpi_fan_fif + - ACPI: fan: Properly handle fine grain control + - ACPI: fan: Add additional attributes for fine grain control + * [SRU][Ubuntu 22.04.1] Unable to interpret the frequency values in + cpuinfo_min_freq and cpuino_max_freq sysfs files. (LP: #2030924) + - cpufreq: intel_pstate: Fix scaling for hybrid-capable + * CVE-2023-40283 + - Bluetooth: L2CAP: Fix use-after-free in l2cap_sock_ready_cb + * CVE-2023-20588 + - x86/bugs: Increase the x86 bugs vector size to two u32s + - x86/CPU/AMD: Do not leak quotient data after a division by 0 + - x86/CPU/AMD: Fix the DIV(0) initial fix attempt + * CVE-2023-4194 + - net: tun_chr_open(): set sk_uid from current_fsuid() + - net: tap_open(): set sk_uid from current_fsuid() + * CVE-2023-4155 + - KVM: SEV: Refactor out sev_es_state struct + - KVM: SEV: Fall back to vmalloc for SEV-ES scratch area if necessary + - KVM: SVM: Do not terminate SEV-ES guests on GHCB validation failure + - KVM: SVM: Exit to userspace on ENOMEM/EFAULT GHCB errors + - KVM: SEV: snapshot the GHCB before accessing it + - KVM: SEV: only access GHCB fields once + * CVE-2023-1206 + - tcp: Reduce chance of collisions in inet6_hashfn(). + * Crashing with CPU soft lock on GA kernel 5.15.0.79.76 and HWE kernel + 5.19.0-46.47-22.04.1 (LP: #2032176) + - Revert "KVM: x86: enable TDP MMU by default" + * Jammy update: v5.15.122 upstream stable release (LP: #2032690) + - Linux 5.15.122 + - Upstream stable to v5.15.122 + * Jammy update: v5.15.121 upstream stable release (LP: #2032689) + - netfilter: nf_tables: drop map element references from preparation phase + - fs: pipe: reveal missing function protoypes + - x86/resctrl: Only show tasks' pid in current pid namespace + - blk-iocost: use spin_lock_irqsave in adjust_inuse_and_calc_cost + - md/raid10: check slab-out-of-bounds in md_bitmap_get_counter + - md/raid10: fix overflow of md/safe_mode_delay + - md/raid10: fix wrong setting of max_corr_read_errors + - md/raid10: fix null-ptr-deref of mreplace in raid10_sync_request + - md/raid10: fix io loss while replacement replace rdev + - irqchip/jcore-aic: Fix missing allocation of IRQ descriptors + - svcrdma: Prevent page release when nothing was received + - posix-timers: Prevent RT livelock in itimer_delete() + - tracing/timer: Add missing hrtimer modes to decode_hrtimer_mode(). + - clocksource/drivers/cadence-ttc: Fix memory leak in ttc_timer_probe + - PM: domains: fix integer overflow issues in genpd_parse_state() + - perf/arm-cmn: Fix DTC reset + - powercap: RAPL: Fix CONFIG_IOSF_MBI dependency + - ARM: 9303/1: kprobes: avoid missing-declaration warnings + - cpufreq: intel_pstate: Fix energy_performance_preference for passive + - thermal/drivers/sun8i: Fix some error handling paths in sun8i_ths_probe() + - rcutorture: Correct name of use_softirq module parameter + - rcuscale: Always log error message + - rcuscale: Move shutdown from wait_event() to wait_event_idle() + - rcu/rcuscale: Move rcu_scale_*() after kfree_scale_cleanup() + - rcu/rcuscale: Stop kfree_scale_thread thread(s) after unloading rcuscale + - kselftest: vDSO: Fix accumulation of uninitialized ret when CLOCK_REALTIME + is undefined + - perf/ibs: Fix interface via core pmu events + - x86/mm: Fix __swp_entry_to_pte() for Xen PV guests + - locking/atomic: arm: fix sync ops + - evm: Complete description of evm_inode_setattr() + - evm: Fix build warnings + - ima: Fix build warnings + - pstore/ram: Add check for kstrdup + - igc: Enable and fix RX hash usage by netstack + - wifi: ath9k: fix AR9003 mac hardware hang check register offset calculation + - wifi: ath9k: avoid referencing uninit memory in ath9k_wmi_ctrl_rx + - libbpf: btf_dump_type_data_check_overflow needs to consider + BTF_MEMBER_BITFIELD_SIZE + - samples/bpf: Fix buffer overflow in tcp_basertt + - spi: spi-geni-qcom: Correct CS_TOGGLE bit in SPI_TRANS_CFG + - wifi: wilc1000: fix for absent RSN capabilities WFA testcase + - wifi: mwifiex: Fix the size of a memory allocation in + mwifiex_ret_802_11_scan() + - sctp: add bpf_bypass_getsockopt proto callback + - libbpf: fix offsetof() and container_of() to work with CO-RE + - bpf: Don't EFAULT for {g,s}setsockopt with wrong optlen + - spi: dw: Round of n_bytes to power of 2 + - nfc: llcp: fix possible use of uninitialized variable in + nfc_llcp_send_connect() + - bpftool: JIT limited misreported as negative value on aarch64 + - regulator: core: Fix more error checking for debugfs_create_dir() + - regulator: core: Streamline debugfs operations + - wifi: orinoco: Fix an error handling path in spectrum_cs_probe() + - wifi: orinoco: Fix an error handling path in orinoco_cs_probe() + - wifi: atmel: Fix an error handling path in atmel_probe() + - wl3501_cs: use eth_hw_addr_set() + - wifi: wl3501_cs: Fix an error handling path in wl3501_probe() + - wifi: ray_cs: Utilize strnlen() in parse_addr() + - wifi: ray_cs: Drop useless status variable in parse_addr() + - wifi: ray_cs: Fix an error handling path in ray_probe() + - wifi: ath9k: don't allow to overwrite ENDPOINT0 attributes + - selftests/bpf: Fix check_mtu using wrong variable type + - wifi: rsi: Do not configure WoWlan in shutdown hook if not enabled + - wifi: rsi: Do not set MMC_PM_KEEP_POWER in shutdown + - watchdog/perf: define dummy watchdog_update_hrtimer_threshold() on correct + config + - watchdog/perf: more properly prevent false positives with turbo modes + - kexec: fix a memory leak in crash_shrink_memory() + - memstick r592: make memstick_debug_get_tpc_name() static + - wifi: ath9k: Fix possible stall on ath9k_txq_list_has_key() + - rtnetlink: extend RTEXT_FILTER_SKIP_STATS to IFLA_VF_INFO + - wifi: iwlwifi: pull from TXQs with softirqs disabled + - iwlwifi: don't dump_stack() when we get an unexpected interrupt + - wifi: iwlwifi: pcie: fix NULL pointer dereference in + iwl_pcie_irq_rx_msix_handler() + - wifi: cfg80211: rewrite merging of inherited elements + - wifi: iwlwifi: mvm: indicate HW decrypt for beacon protection + - wifi: ath9k: convert msecs to jiffies where needed + - bpf: Omit superfluous address family check in __bpf_skc_lookup + - bpf: Factor out socket lookup functions for the TC hookpoint. + - bpf: Call __bpf_sk_lookup()/__bpf_skc_lookup() directly via TC hookpoint + - bpf: Fix bpf socket lookup from tc/xdp to respect socket VRF bindings + - can: length: fix bitstuffing count + - igc: Fix race condition in PTP tx code + - net: stmmac: fix double serdes powerdown + - netlink: fix potential deadlock in netlink_set_err() + - netlink: do not hard code device address lenth in fdb dumps + - bonding: do not assume skb mac_header is set + - selftests: rtnetlink: remove netdevsim device after ipsec offload test + - gtp: Fix use-after-free in __gtp_encap_destroy(). + - net: axienet: Move reset before 64-bit DMA detection + - sfc: fix crash when reading stats while NIC is resetting + - lib/ts_bm: reset initial match offset for every block of text + - netfilter: conntrack: dccp: copy entire header to stack buffer, not just + basic one + - netfilter: nf_conntrack_sip: fix the ct_sip_parse_numerical_param() return + value. + - ipvlan: Fix return value of ipvlan_queue_xmit() + - netlink: Add __sock_i_ino() for __netlink_diag_dump(). + - drm/amd/display: Add logging for display MALL refresh setting + - radeon: avoid double free in ci_dpm_init() + - drm/amd/display: Explicitly specify update type per plane info change + - Input: drv260x - sleep between polling GO bit + - drm/bridge: tc358768: always enable HS video mode + - drm/bridge: tc358768: fix PLL parameters computation + - drm/bridge: tc358768: fix PLL target frequency + - drm/bridge: tc358768: fix TCLK_ZEROCNT computation + - drm/bridge: tc358768: Add atomic_get_input_bus_fmts() implementation + - drm/bridge: tc358768: fix TCLK_TRAILCNT computation + - drm/bridge: tc358768: fix THS_ZEROCNT computation + - drm/bridge: tc358768: fix TXTAGOCNT computation + - drm/bridge: tc358768: fix THS_TRAILCNT computation + - drm/vram-helper: fix function names in vram helper doc + - ARM: dts: BCM5301X: Drop "clock-names" from the SPI node + - ARM: dts: meson8b: correct uart_B and uart_C clock references + - Input: adxl34x - do not hardcode interrupt trigger type + - drm: sun4i_tcon: use devm_clk_get_enabled in `sun4i_tcon_init_clocks` + - drm/panel: sharp-ls043t1le01: adjust mode settings + - ARM: dts: stm32: Move ethernet MAC EEPROM from SoM to carrier boards + - bus: ti-sysc: Fix dispc quirk masking bool variables + - arm64: dts: microchip: sparx5: do not use PSCI on reference boards + - clk: imx: scu: use _safe list iterator to avoid a use after free + - RDMA/bnxt_re: Disable/kill tasklet only if it is enabled + - RDMA/bnxt_re: Fix to remove unnecessary return labels + - RDMA/bnxt_re: Use unique names while registering interrupts + - RDMA/bnxt_re: Remove a redundant check inside bnxt_re_update_gid + - RDMA/bnxt_re: Fix to remove an unnecessary log + - drm/msm/dsi: don't allow enabling 14nm VCO with unprogrammed rate + - drm/msm/disp/dpu: get timing engine status from intf status register + - drm/msm/dpu: Set DPU_DATA_HCTL_EN for in INTF_SC7180_MASK + - ARM: dts: gta04: Move model property out of pinctrl node + - arm64: dts: qcom: msm8916: correct camss unit address + - arm64: dts: qcom: msm8994: correct SPMI unit address + - arm64: dts: qcom: msm8996: correct camss unit address + - arm64: dts: qcom: sdm630: correct camss unit address + - arm64: dts: qcom: sdm845: correct camss unit address + - arm64: dts: qcom: db820c: Move blsp1_uart2 pin states to msm8996.dtsi + - arm64: dts: qcom: apq8016-sbc: Update modem and WiFi firmware path + - arm64: dts: qcom: apq8016-sbc: Clarify firmware-names + - arm64: dts: qcom: apq8016-sbc: fix mpps state names + - arm64: dts: qcom: Drop unneeded extra device-specific includes + - arm64: dts: qcom: apq8016-sbc: Fix regulator constraints + - arm64: dts: qcom: apq8016-sbc: Fix 1.8V power rail on LS expansion + - drm/panel: simple: fix active size for Ampire AM-480272H3TMQW-T01H + - ARM: ep93xx: fix missing-prototype warnings + - ARM: omap2: fix missing tick_broadcast() prototype + - arm64: dts: qcom: apq8096: fix fixed regulator name property + - arm64: dts: mediatek: mt8183: Add mediatek,broken-save-restore-fw to kukui + - ARM: dts: stm32: Shorten the AV96 HDMI sound card name + - memory: brcmstb_dpfe: fix testing array offset after use + - ASoC: es8316: Increment max value for ALC Capture Target Volume control + - ASoC: es8316: Do not set rate constraints for unsupported MCLKs + - ARM: dts: meson8: correct uart_B and uart_C clock references + - soc/fsl/qe: fix usb.c build errors + - RDMA/irdma: avoid fortify-string warning in irdma_clr_wqes + - IB/hfi1: Use bitmap_zalloc() when applicable + - IB/hfi1: Fix wrong mmu_node used for user SDMA packet after invalidate + - RDMA/hns: Fix hns_roce_table_get return value + - ARM: dts: iwg20d-q7-common: Fix backlight pwm specifier + - arm64: dts: renesas: ulcb-kf: Remove flow control for SCIF1 + - fbdev: omapfb: lcd_mipid: Fix an error handling path in mipid_spi_probe() + - arm64: dts: ti: k3-j7200: Fix physical address of pin + - ARM: dts: stm32: Fix audio routing on STM32MP15xx DHCOM PDK2 + - ARM: dts: stm32: fix i2s endpoint format property for stm32mp15xx-dkx + - hwmon: (gsc-hwmon) fix fan pwm temperature scaling + - hwmon: (adm1275) Allow setting sample averaging + - hwmon: (pmbus/adm1275) Fix problems with temperature monitoring on ADM1272 + - ARM: dts: BCM5301X: fix duplex-full => full-duplex + - drm/amdkfd: Fix potential deallocation of previously deallocated memory. + - drm/amd/display: Fix artifacting on eDP panels when engaging freesync video + mode + - drm/radeon: fix possible division-by-zero errors + - amdgpu: validate offset_in_bo of drm_amdgpu_gem_va + - drm/msm/a5xx: really check for A510 in a5xx_gpu_init + - RDMA/bnxt_re: wraparound mbox producer index + - RDMA/bnxt_re: Avoid calling wake_up threads from spin_lock context + - clk: imx: clk-imx8mn: fix memory leak in imx8mn_clocks_probe + - clk: imx: clk-imx8mp: improve error handling in imx8mp_clocks_probe() + - arm64: dts: qcom: sm8250-edo: Panel framebuffer is 2.5k instead of 4k + - clk: clocking-wizard: Fix Oops in clk_wzrd_register_divider() + - clk: tegra: tegra124-emc: Fix potential memory leak + - ALSA: ac97: Fix possible NULL dereference in snd_ac97_mixer + - drm/msm/dpu: do not enable color-management if DSPPs are not available + - drm/msm/dp: Free resources after unregistering them + - arm64: dts: mediatek: Add cpufreq nodes for MT8192 + - arm64: dts: mediatek: mt8192: Fix CPUs capacity-dmips-mhz + - drm/msm/dpu: correct MERGE_3D length + - clk: vc5: check memory returned by kasprintf() + - clk: cdce925: check return value of kasprintf() + - clk: si5341: return error if one synth clock registration fails + - clk: si5341: check return value of {devm_}kasprintf() + - clk: si5341: free unused memory on probe failure + - clk: keystone: sci-clk: check return value of kasprintf() + - clk: ti: clkctrl: check return value of kasprintf() + - drivers: meson: secure-pwrc: always enable DMA domain + - ovl: update of dentry revalidate flags after copy up + - ASoC: imx-audmix: check return value of devm_kasprintf() + - clk: Fix memory leak in devm_clk_notifier_register() + - PCI: cadence: Fix Gen2 Link Retraining process + - PCI: vmd: Reset VMD config register between soft reboots + - scsi: qedf: Fix NULL dereference in error handling + - pinctrl: bcm2835: Handle gpiochip_add_pin_range() errors + - PCI/ASPM: Disable ASPM on MFD function removal to avoid use-after-free + - scsi: 3w-xxxx: Add error handling for initialization failure in tw_probe() + - PCI: pciehp: Cancel bringup sequence if card is not present + - PCI: ftpci100: Release the clock resources + - PCI: Add pci_clear_master() stub for non-CONFIG_PCI + - perf bench: Use unbuffered output when pipe/tee'ing to a file + - perf bench: Add missing setlocale() call to allow usage of %'d style + formatting + - pinctrl: cherryview: Return correct value if pin in push-pull mode + - kcsan: Don't expect 64 bits atomic builtins from 32 bits architectures + - powerpc/interrupt: Don't read MSR from interrupt_exit_kernel_prepare() + - powerpc/signal32: Force inlining of __unsafe_save_user_regs() and + save_tm_user_regs_unsafe() + - perf script: Fix allocation of evsel->priv related to per-event dump files + - perf dwarf-aux: Fix off-by-one in die_get_varname() + - powerpc/64s: Fix VAS mm use after free + - pinctrl: microchip-sgpio: check return value of devm_kasprintf() + - pinctrl: at91-pio4: check return value of devm_kasprintf() + - powerpc/powernv/sriov: perform null check on iov before dereferencing iov + - powerpc: simplify ppc_save_regs + - powerpc: update ppc_save_regs to save current r1 in pt_regs + - riscv: uprobes: Restore thread.bad_cause + - powerpc/book3s64/mm: Fix DirectMap stats in /proc/meminfo + - powerpc/mm/dax: Fix the condition when checking if altmap vmemap can cross- + boundary + - hwrng: virtio - add an internal buffer + - hwrng: virtio - don't wait on cleanup + - hwrng: virtio - don't waste entropy + - hwrng: virtio - always add a pending request + - hwrng: virtio - Fix race on data_avail and actual data + - modpost: remove broken calculation of exception_table_entry size + - crypto: nx - fix build warnings when DEBUG_FS is not enabled + - modpost: fix section mismatch message for R_ARM_ABS32 + - modpost: fix section mismatch message for R_ARM_{PC24,CALL,JUMP24} + - crypto: marvell/cesa - Fix type mismatch warning + - modpost: fix off by one in is_executable_section() + - ARC: define ASM_NL and __ALIGN(_STR) outside #ifdef __ASSEMBLY__ guard + - crypto: qat - honor CRYPTO_TFM_REQ_MAY_SLEEP flag + - crypto: qat - replace get_current_node() with numa_node_id() + - crypto: qat - use reference to structure in dma_map_single() + - crypto: kpp - Add helper to set reqsize + - crypto: qat - Use helper to set reqsize + - crypto: qat - unmap buffer before free for DH + - crypto: qat - unmap buffers before free for RSA + - NFSv4.1: freeze the session table upon receiving NFS4ERR_BADSESSION + - SMB3: Do not send lease break acknowledgment if all file handles have been + closed + - dax: Fix dax_mapping_release() use after free + - dax: Introduce alloc_dev_dax_id() + - dax/kmem: Pass valid argument to memory_group_register_static + - hwrng: st - keep clock enabled while hwrng is registered + - kbuild: Disable GCOV for *.mod.o + - efi/libstub: Disable PCI DMA before grabbing the EFI memory map + - ksmbd: avoid field overflow warning + - ACPI: utils: Fix acpi_evaluate_dsm_typed() redefinition error + - bootmem: remove the vmemmap pages from kmemleak in free_bootmem_page + - USB: serial: option: add LARA-R6 01B PIDs + - usb: dwc3: gadget: Propagate core init errors to UDC during pullup + - phy: tegra: xusb: Clear the driver reference in usb-phy dev + - iio: adc: ad7192: Fix null ad7192_state pointer access + - iio: adc: ad7192: Fix internal/external clock selection + - iio: accel: fxls8962af: errata bug only applicable for FXLS8962AF + - iio: accel: fxls8962af: fixup buffer scan element type + - ALSA: hda/realtek: Add quirk for Clevo NPx0SNx + - ALSA: jack: Fix mutex call in snd_jack_report() + - block: fix signed int overflow in Amiga partition support + - block: add overflow checks for Amiga partition support + - block: change all __u32 annotations to __be32 in affs_hardblocks.h + - block: increment diskseq on all media change events + - SUNRPC: Fix UAF in svc_tcp_listen_data_ready() + - w1: w1_therm: fix locking behavior in convert_t + - w1: fix loop in w1_fini() + - sh: j2: Use ioremap() to translate device tree address into kernel memory + - usb: dwc2: platform: Improve error reporting for problems during .remove() + - usb: dwc2: Fix some error handling paths + - serial: 8250: omap: Fix freeing of resources on failed register + - clk: qcom: camcc-sc7180: Add parent dependency to all camera GDSCs + - clk: qcom: gcc-ipq6018: Use floor ops for sdcc clocks + - media: usb: Check az6007_read() return value + - media: videodev2.h: Fix struct v4l2_input tuner index comment + - media: usb: siano: Fix warning due to null work_func_t function pointer + - media: i2c: Correct format propagation for st-mipid02 + - clk: qcom: reset: Allow specifying custom reset delay + - clk: qcom: reset: support resetting multiple bits + - clk: qcom: ipq6018: fix networking resets + - usb: dwc3: qcom: Fix potential memory leak + - usb: gadget: u_serial: Add null pointer check in gserial_suspend + - extcon: Fix kernel doc of property fields to avoid warnings + - extcon: Fix kernel doc of property capability fields to avoid warnings + - usb: phy: phy-tahvo: fix memory leak in tahvo_usb_probe() + - usb: hide unused usbfs_notify_suspend/resume functions + - serial: 8250: lock port for stop_rx() in omap8250_irq() + - serial: 8250: lock port for UART_IER access in omap8250_irq() + - kernfs: fix missing kernfs_idr_lock to remove an ID from the IDR + - coresight: Fix loss of connection info when a module is unloaded + - mfd: rt5033: Drop rt5033-battery sub-device + - media: venus: helpers: Fix ALIGN() of non power of two + - media: atomisp: gmin_platform: fix out_len in gmin_get_config_dsm_var() + - KVM: s390: fix KVM_S390_GET_CMMA_BITS for GFNs in memslot holes + - usb: dwc3: qcom: Release the correct resources in dwc3_qcom_remove() + - usb: dwc3: qcom: Fix an error handling path in dwc3_qcom_probe() + - usb: common: usb-conn-gpio: Set last role to unknown before initial + detection + - usb: dwc3-meson-g12a: Fix an error handling path in dwc3_meson_g12a_probe() + - mfd: intel-lpss: Add missing check for platform_get_resource + - Revert "usb: common: usb-conn-gpio: Set last role to unknown before initial + detection" + - serial: 8250_omap: Use force_suspend and resume for system suspend + - test_firmware: return ENOMEM instead of ENOSPC on failed memory allocation + - nvmem: rmem: Use NVMEM_DEVID_AUTO + - mfd: stmfx: Fix error path in stmfx_chip_init + - mfd: stmfx: Nullify stmfx->vdd in case of error + - KVM: s390: vsie: fix the length of APCB bitmap + - KVM: s390/diag: fix racy access of physical cpu number in diag 9c handler + - mfd: stmpe: Only disable the regulators if they are enabled + - phy: tegra: xusb: check return value of devm_kzalloc() + - pwm: imx-tpm: force 'real_period' to be zero in suspend + - pwm: sysfs: Do not apply state to already disabled PWMs + - pwm: ab8500: Fix error code in probe() + - pwm: mtk_disp: Fix the disable flow of disp_pwm + - md/raid10: fix the condition to call bio_end_io_acct() + - rtc: st-lpc: Release some resources in st_rtc_probe() in case of error + - drm/i915/psr: Use hw.adjusted mode when calculating io/fast wake times + - media: cec: i2c: ch7322: also select REGMAP + - sctp: fix potential deadlock on &net->sctp.addr_wq_lock + - net/sched: act_ipt: add sanity checks on table name and hook locations + - Add MODULE_FIRMWARE() for FIRMWARE_TG357766. + - ibmvnic: Do not reset dql stats on NON_FATAL err + - net: dsa: vsc73xx: fix MTU configuration + - spi: bcm-qspi: return error if neither hif_mspi nor mspi is available + - mailbox: ti-msgmgr: Fill non-message tx data fields with 0x0 + - f2fs: fix error path handling in truncate_dnode() + - octeontx2-af: Fix mapping for NIX block from CGX connection + - octeontx2-af: Add validation before accessing cgx and lmac + - ntfs: Fix panic about slab-out-of-bounds caused by ntfs_listxattr() + - powerpc: allow PPC_EARLY_DEBUG_CPM only when SERIAL_CPM=y + - net: bridge: keep ports without IFF_UNICAST_FLT in BR_PROMISC mode + - tcp: annotate data races in __tcp_oow_rate_limited() + - xsk: Honor SO_BINDTODEVICE on bind + - net/sched: act_pedit: Add size check for TCA_PEDIT_PARMS_EX + - riscv: move memblock_allow_resize() after linear mapping is ready + - pptp: Fix fib lookup calls. + - net: dsa: tag_sja1105: fix MAC DA patching from meta frames + - octeontx-af: fix hardware timestamp configuration + - s390/qeth: Fix vipa deletion + - sh: dma: Fix DMA channel offset calculation + - apparmor: fix missing error check for rhashtable_insert_fast + - i2c: xiic: Defer xiic_wakeup() and __xiic_start_xfer() in xiic_process() + - i2c: xiic: Don't try to handle more interrupt events after error + - extcon: usbc-tusb320: Convert to i2c's .probe_new() + - btrfs: do not BUG_ON() on tree mod log failure at balance_level() + - i2c: qup: Add missing unwind goto in qup_i2c_probe() + - NFSD: add encoding of op_recall flag for write delegation + - io_uring: wait interruptibly for request completions on exit + - mmc: core: disable TRIM on Kingston EMMC04G-M627 + - mmc: core: disable TRIM on Micron MTFC4GACAJCN-1M + - mmc: mmci: Set PROBE_PREFER_ASYNCHRONOUS + - mmc: sdhci: fix DMA configure compatibility issue when 64bit DMA mode is + used. + - bcache: fixup btree_cache_wait list damage + - bcache: Remove unnecessary NULL point check in node allocations + - bcache: Fix __bch_btree_node_alloc to make the failure behavior consistent + - um: Use HOST_DIR for mrproper + - integrity: Fix possible multiple allocation in integrity_inode_get() + - autofs: use flexible array in ioctl structure + - shmem: use ramfs_kill_sb() for kill_sb method of ramfs-based tmpfs + - ext4: Remove ext4 locking of moved directory + - Revert "f2fs: fix potential corruption when moving a directory" + - fs: Establish locking order for unrelated directories + - fs: Lock moved directories + - ipvs: increase ip_vs_conn_tab_bits range for 64BIT + - jffs2: reduce stack usage in jffs2_build_xattr_subsystem() + - fs: avoid empty option when generating legacy mount string + - btrfs: add handling for RAID1C23/DUP to btrfs_reduce_alloc_profile + - btrfs: delete unused BGs while reclaiming BGs + - btrfs: bail out reclaim process if filesystem is read-only + - btrfs: reinsert BGs failed to reclaim + - btrfs: fix race when deleting quota root from the dirty cow roots list + - btrfs: fix extent buffer leak after tree mod log failure at split_node() + - btrfs: do not BUG_ON() on tree mod log failure at __btrfs_cow_block() + - ASoC: mediatek: mt8173: Fix irq error path + - ASoC: mediatek: mt8173: Fix snd_soc_component_initialize error path + - ARM: dts: qcom: ipq4019: fix broken NAND controller properties override + - ARM: orion5x: fix d2net gpio initialization + - leds: trigger: netdev: Recheck NETDEV_LED_MODE_LINKUP on dev rename + - fs: no need to check source + - ovl: fix null pointer dereference in ovl_get_acl_rcu() + - fanotify: disallow mount/sb marks on kernel internal pseudo fs + - netfilter: conntrack: Avoid nf_ct_helper_hash uses after free + - wireguard: queueing: use saner cpu selection wrapping + - wireguard: netlink: send staged packets when setting initial private key + - tty: serial: fsl_lpuart: add earlycon for imx8ulp platform + - block/partition: fix signedness issue for Amiga partitions + - io_uring: Use io_schedule* in cqring wait + - io_uring: add reschedule point to handle_tw_list() + - net: lan743x: Don't sleep in atomic context + - workqueue: clean up WORK_* constant types, clarify masking + - ksmbd: use ksmbd_req_buf_next() in ksmbd_smb2_check_message() + - ksmbd: validate command payload size + - ksmbd: fix out-of-bound read in smb2_write + - ksmbd: validate session id and tree id in the compound request + - drm/panel: simple: Add connector_type for innolux_at043tn24 + - drm/bridge: ti-sn65dsi86: Fix auxiliary bus lifetime + - drm/panel: simple: Add Powertip PH800480T013 drm_display_mode flags + - igc: Remove delay during TX ring configuration + - net/mlx5e: fix double free in mlx5e_destroy_flow_table + - net/mlx5e: fix memory leak in mlx5e_ptp_open + - net/mlx5e: Check for NOT_READY flag state after locking + - igc: set TP bit in 'supported' and 'advertising' fields of + ethtool_link_ksettings + - igc: Handle PPS start time programming for past time values + - scsi: qla2xxx: Fix error code in qla2x00_start_sp() + - bpf: Fix max stack depth check for async callbacks + - net: mvneta: fix txq_map in case of txq_number==1 + - gve: Set default duplex configuration to full + - ionic: remove WARN_ON to prevent panic_on_warn + - net: bgmac: postpone turning IRQs off to avoid SoC hangs + - net: prevent skb corruption on frag list segmentation + - icmp6: Fix null-ptr-deref of ip6_null_entry->rt6i_idev in icmp6_dev(). + - udp6: fix udp6_ehashfn() typo + - ntb: idt: Fix error handling in idt_pci_driver_init() + - NTB: amd: Fix error handling in amd_ntb_pci_driver_init() + - ntb: intel: Fix error handling in intel_ntb_pci_driver_init() + - NTB: ntb_transport: fix possible memory leak while device_register() fails + - NTB: ntb_tool: Add check for devm_kcalloc + - ipv6/addrconf: fix a potential refcount underflow for idev + - platform/x86: wmi: remove unnecessary argument + - platform/x86: wmi: use guid_t and guid_equal() + - platform/x86: wmi: move variables + - platform/x86: wmi: Break possible infinite loop when parsing GUID + - kernel/trace: Fix cleanup logic of enable_trace_eprobe + - igc: Fix launchtime before start of cycle + - igc: Fix inserting of empty frame for launchtime + - bpf, riscv: Support riscv jit to provide bpf_line_info + - riscv, bpf: Fix inconsistent JIT image generation + - drm/i915: Fix one wrong caching mode enum usage + - octeontx2-pf: Add additional check for MCAM rules + - erofs: avoid infinite loop in z_erofs_do_read_page() when reading beyond EOF + - erofs: decouple basic mount options from fs_context + - erofs: fix fsdax unavailability for chunk-based regular files + - wifi: airo: avoid uninitialized warning in airo_get_rate() + - bpf: cpumap: Fix memory leak in cpu_map_update_elem + - net/sched: flower: Ensure both minimum and maximum ports are specified + - riscv: mm: fix truncation warning on RV32 + - netdevsim: fix uninitialized data in nsim_dev_trap_fa_cookie_write() + - net/sched: make psched_mtu() RTNL-less safe + - nvme-pci: remove nvme_queue from nvme_iod + - nvme-pci: fix DMA direction of unmapping integrity data + - pinctrl: amd: Fix mistake in handling clearing pins at startup + - pinctrl: amd: Detect internal GPIO0 debounce handling + - pinctrl: amd: Detect and mask spurious interrupts + - pinctrl: amd: Only use special debounce behavior for GPIO 0 + - tpm: tpm_vtpm_proxy: fix a race condition in /dev/vtpmx creation + - mtd: rawnand: meson: fix unaligned DMA buffers handling + - net: bcmgenet: Ensure MDIO unregistration has clocks enabled + - mm/damon/ops-common: atomically test and clear young on ptes and pmds + - powerpc: Fail build if using recordmcount with binutils v2.37 + - misc: fastrpc: Create fastrpc scalar with correct buffer count + - powerpc/security: Fix Speculation_Store_Bypass reporting on Power10 + - arm64: errata: Add detection for TRBE overwrite in FILL mode + - erofs: fix compact 4B support for 16k block size + - MIPS: Loongson: Fix cpu_probe_loongson() again + - MIPS: KVM: Fix NULL pointer dereference + - ext4: Fix reusing stale buffer heads from last failed mounting + - ext4: fix wrong unit use in ext4_mb_clear_bb + - ext4: get block from bh in ext4_free_blocks for fast commit replay + - ext4: fix wrong unit use in ext4_mb_new_blocks + - ext4: fix to check return value of freeze_bdev() in ext4_shutdown() + - ext4: turn quotas off if mount failed after enabling quotas + - ext4: only update i_reserved_data_blocks on successful block allocation + - jfs: jfs_dmap: Validate db_l2nbperpage while mounting + - hwrng: imx-rngc - fix the timeout for init and self check + - dm integrity: reduce vmalloc space footprint on 32-bit architectures + - PCI/PM: Avoid putting EloPOS E2/S2/H2 PCIe Ports in D3cold + - PCI: Add function 1 DMA alias quirk for Marvell 88SE9235 + - PCI: qcom: Disable write access to read only registers for IP v2.3.3 + - PCI: rockchip: Assert PCI Configuration Enable bit after probe + - PCI: rockchip: Write PCI Device ID to correct register + - PCI: rockchip: Add poll and timeout to wait for PHY PLLs to be locked + - PCI: rockchip: Fix legacy IRQ generation for RK3399 PCIe endpoint core + - PCI: rockchip: Use u32 variable to access 32-bit registers + - PCI: rockchip: Set address alignment for endpoint mode + - misc: pci_endpoint_test: Free IRQs before removing the device + - misc: pci_endpoint_test: Re-init completion for every test + - mfd: pm8008: Fix module autoloading + - md/raid0: add discard support for the 'original' layout + - dm init: add dm-mod.waitfor to wait for asynchronously probed block devices + - fs: dlm: return positive pid value for F_GETLK + - drm/atomic: Allow vblank-enabled + self-refresh "disable" + - drm/rockchip: vop: Leave vblank enabled in self-refresh + - drm/amdgpu: fix clearing mappings for BOs that are always valid in VM + - drm/amd/display: Correct `DMUB_FW_VERSION` macro + - drm/amdgpu: avoid restore process run into dead loop. + - drm/ttm: Don't leak a resource on swapout move error + - serial: atmel: don't enable IRQs prematurely + - tty: serial: samsung_tty: Fix a memory leak in s3c24xx_serial_getclk() in + case of error + - tty: serial: samsung_tty: Fix a memory leak in s3c24xx_serial_getclk() when + iterating clk + - tty: serial: imx: fix rs485 rx after tx + - firmware: stratix10-svc: Fix a potential resource leak in + svc_create_memory_pool() + - libceph: harden msgr2.1 frame segment length checks + - ceph: don't let check_caps skip sending responses for revoke msgs + - xhci: Fix resume issue of some ZHAOXIN hosts + - xhci: Fix TRB prefetch issue of ZHAOXIN hosts + - xhci: Show ZHAOXIN xHCI root hub speed correctly + - meson saradc: fix clock divider mask length + - opp: Fix use-after-free in lazy_opp_tables after probe deferral + - soundwire: qcom: fix storing port config out-of-bounds + - Revert "8250: add support for ASIX devices with a FIFO bug" + - bus: ixp4xx: fix IXP4XX_EXP_T1_MASK + - s390/decompressor: fix misaligned symbol build error + - tracing/histograms: Add histograms to hist_vars if they have referenced + variables + - tracing: Fix memory leak of iter->temp when reading trace_pipe + - samples: ftrace: Save required argument registers in sample trampolines + - net: ena: fix shift-out-of-bounds in exponential backoff + - ring-buffer: Fix deadloop issue on reading trace_pipe + - ftrace: Fix possible warning on checking all pages used in + ftrace_process_locs() + - xtensa: ISS: fix call to split_if_spec + - tracing: Fix null pointer dereference in tracing_err_log_open() + - selftests: mptcp: sockopt: return error if wrong mark + - selftests: mptcp: depend on SYN_COOKIES + - tracing/probes: Fix not to count error code to total length + - tracing/probes: Fix to update dynamic data counter if fetcharg uses it + - scsi: qla2xxx: Wait for io return on terminate rport + - scsi: qla2xxx: Array index may go out of bound + - scsi: qla2xxx: Avoid fcport pointer dereference + - scsi: qla2xxx: Fix buffer overrun + - scsi: qla2xxx: Fix potential NULL pointer dereference + - scsi: qla2xxx: Check valid rport returned by fc_bsg_to_rport() + - scsi: qla2xxx: Correct the index of array + - scsi: qla2xxx: Pointer may be dereferenced + - scsi: qla2xxx: Remove unused nvme_ls_waitq wait queue + - MIPS: kvm: Fix build error with KVM_MIPS_DEBUG_COP0_COUNTERS enabled + - net/sched: sch_qfq: reintroduce lmax bound check for MTU + - drm/atomic: Fix potential use-after-free in nonblocking commits + - Linux 5.15.121 + * Jammy update: v5.15.120 upstream stable release (LP: #2032688) + - mptcp: fix possible divide by zero in recvmsg() + - mptcp: consolidate fallback and non fallback state machine + - mm, hwpoison: try to recover from copy-on write faults + - mm, hwpoison: when copy-on-write hits poison, take page offline + - drm/amdgpu: Set vmbo destroy after pt bo is created + - x86/microcode/AMD: Load late on both threads too + - x86/smp: Use dedicated cache-line for mwait_play_dead() + - can: isotp: isotp_sendmsg(): fix return error fix on TX path + - bpf: ensure main program has an extable + - HID: wacom: Use ktime_t rather than int when dealing with timestamps + - HID: logitech-hidpp: add HIDPP_QUIRK_DELAYED_INIT for the T651. + - Revert "thermal/drivers/mediatek: Use devm_of_iomap to avoid resource leak + in mtk_thermal_probe" + - perf symbols: Symbol lookup with kcore can fail if multiple segments match + stext + - scripts/tags.sh: Resolve gtags empty index generation + - drm/amdgpu: Validate VM ioctl flags. + - parisc: Delete redundant register definitions in + - nubus: Partially revert proc_create_single_data() conversion + - Linux 5.15.120 + * Jammy update: v5.15.119 upstream stable release (LP: #2032683) + - drm/amd/display: fix the system hang while disable PSR + - tracing: Add tracing_reset_all_online_cpus_unlocked() function + - tpm, tpm_tis: Claim locality in interrupt handler + - drm/amd/display: Add minimal pipe split transition state + - drm/amd/display: Use dc_update_planes_and_stream + - drm/amd/display: Add wrapper to call planes and stream update + - tick/common: Align tick period during sched_timer setup + - selftests: mptcp: lib: skip if missing symbol + - selftests: mptcp: lib: skip if not below kernel version + - selftests/mount_setattr: fix redefine struct mount_attr build error + - selftests: mptcp: pm nl: remove hardcoded default limits + - selftests: mptcp: join: use 'iptables-legacy' if available + - selftests: mptcp: join: skip check if MIB counter not supported + - nilfs2: fix buffer corruption due to concurrent device reads + - ACPI: sleep: Avoid breaking S3 wakeup due to might_sleep() + - KVM: Avoid illegal stage2 mapping on invalid memory slot + - Drivers: hv: vmbus: Call hv_synic_free() if hv_synic_alloc() fails + - Drivers: hv: vmbus: Fix vmbus_wait_for_unload() to scan present CPUs + - PCI: hv: Fix a race condition bug in hv_pci_query_relations() + - Revert "PCI: hv: Fix a timing issue which causes kdump to fail occasionally" + - PCI: hv: Remove the useless hv_pcichild_state from struct hv_pci_dev + - PCI: hv: Fix a race condition in hv_irq_unmask() that can cause panic + - PCI: hv: Add a per-bus mutex state_lock + - cgroup: Do not corrupt task iteration when rebinding subsystem + - mmc: sdhci-msm: Disable broken 64-bit DMA on MSM8916 + - mmc: meson-gx: remove redundant mmc_request_done() call from irq context + - mmc: mmci: stm32: fix max busy timeout calculation + - ip_tunnels: allow VXLAN/GENEVE to inherit TOS/TTL from VLAN + - regulator: pca9450: Fix LDO3OUT and LDO4OUT MASK + - regmap: spi-avmm: Fix regmap_bus max_raw_write + - writeback: fix dereferencing NULL mapping->host on writeback_page_template + - io_uring/net: save msghdr->msg_control for retries + - io_uring/net: clear msg_controllen on partial sendmsg retry + - io_uring/net: disable partial retries for recvmsg with cmsg + - nilfs2: prevent general protection fault in nilfs_clear_dirty_page() + - x86/mm: Avoid using set_pgd() outside of real PGD pages + - memfd: check for non-NULL file_seals in memfd_create() syscall + - mmc: meson-gx: fix deferred probing + - ieee802154: hwsim: Fix possible memory leaks + - xfrm: Treat already-verified secpath entries as optional + - xfrm: interface: rename xfrm_interface.c to xfrm_interface_core.c + - xfrm: Ensure policies always checked on XFRM-I input path + - bpf: track immediate values written to stack by BPF_ST instruction + - bpf: Fix verifier id tracking of scalars on spill + - xfrm: fix inbound ipv4/udp/esp packets to UDPv6 dualstack sockets + - selftests: net: fcnal-test: check if FIPS mode is enabled + - xfrm: Linearize the skb after offloading if needed. + - net: qca_spi: Avoid high load if QCA7000 is not available + - mmc: mtk-sd: fix deferred probing + - mmc: mvsdio: fix deferred probing + - mmc: omap: fix deferred probing + - mmc: omap_hsmmc: fix deferred probing + - mmc: owl: fix deferred probing + - mmc: sdhci-acpi: fix deferred probing + - mmc: sh_mmcif: fix deferred probing + - mmc: usdhi60rol0: fix deferred probing + - ipvs: align inner_mac_header for encapsulation + - net: dsa: mt7530: fix trapping frames on non-MT7621 SoC MT7530 switch + - net: dsa: mt7530: fix handling of BPDUs on MT7530 switch + - be2net: Extend xmit workaround to BE3 chip + - netfilter: nft_set_pipapo: .walk does not deal with generations + - netfilter: nf_tables: disallow element updates of bound anonymous sets + - netfilter: nf_tables: reject unbound anonymous set before commit phase + - netfilter: nf_tables: reject unbound chain set before commit phase + - netfilter: nf_tables: disallow updates of anonymous sets + - netfilter: nfnetlink_osf: fix module autoload + - Revert "net: phy: dp83867: perform soft reset and retain established link" + - bpf/btf: Accept function names that contain dots + - selftests: forwarding: Fix race condition in mirror installation + - sch_netem: acquire qdisc lock in netem_change() + - gpio: Allow per-parent interrupt data + - gpiolib: Fix GPIO chip IRQ initialization restriction + - gpio: sifive: add missing check for platform_get_irq + - scsi: target: iscsi: Prevent login threads from racing between each other + - HID: wacom: Add error check to wacom_parse_and_register() + - arm64: Add missing Set/Way CMO encodings + - media: cec: core: don't set last_initiator if tx in progress + - nfcsim.c: Fix error checking for debugfs_create_dir + - usb: gadget: udc: fix NULL dereference in remove() + - nvme: double KA polling frequency to avoid KATO with TBKAS on + - Input: soc_button_array - add invalid acpi_index DMI quirk handling + - s390/cio: unregister device when the only path is gone + - spi: lpspi: disable lpspi module irq in DMA mode + - ASoC: simple-card: Add missing of_node_put() in case of error + - soundwire: dmi-quirks: add new mapping for HP Spectre x360 + - ASoC: nau8824: Add quirk to active-high jack-detect + - s390/purgatory: disable branch profiling + - ARM: dts: Fix erroneous ADS touchscreen polarities + - drm/exynos: vidi: fix a wrong error return + - drm/exynos: fix race condition UAF in exynos_g2d_exec_ioctl + - drm/radeon: fix race condition UAF in radeon_gem_set_domain_ioctl + - vhost_net: revert upend_idx only on retriable error + - x86/apic: Fix kernel panic when booting with intremap=off and x2apic_phys + - i2c: imx-lpi2c: fix type char overflow issue when calculating the clock + cycle + - act_mirred: remove unneded merge conflict markers + - Linux 5.15.119 + * Jammy update: v5.15.118 upstream stable release (LP: #2030239) + - test_firmware: Use kstrtobool() instead of strtobool() + - test_firmware: prevent race conditions by a correct implementation of + locking + - test_firmware: fix a memory leak with reqs buffer + - ksmbd: fix slab-out-of-bounds read in smb2_handle_negotiate + - drm/amdgpu: fix Null pointer dereference error in amdgpu_device_recover_vram + - of: overlay: rename variables to be consistent + - of: overlay: rework overlay apply and remove kfree()s + - of: overlay: Fix missing of_node_put() in error case of + init_overlay_changeset() + - power: supply: ab8500: Fix external_power_changed race + - power: supply: sc27xx: Fix external_power_changed race + - power: supply: bq27xxx: Use mod_delayed_work() instead of cancel() + + schedule() + - ARM: dts: vexpress: add missing cache properties + - tools: gpio: fix debounce_period_us output of lsgpio + - power: supply: Ratelimit no data debug output + - platform/x86: asus-wmi: Ignore WMI events with codes 0x7B, 0xC0 + - regulator: Fix error checking for debugfs_create_dir + - irqchip/gic-v3: Disable pseudo NMIs on Mediatek devices w/ firmware issues + - power: supply: Fix logic checking if system is running from battery + - btrfs: scrub: try harder to mark RAID56 block groups read-only + - btrfs: handle memory allocation failure in btrfs_csum_one_bio + - ASoC: soc-pcm: test if a BE can be prepared + - parisc: Improve cache flushing for PCXL in arch_sync_dma_for_cpu() + - parisc: Flush gatt writes and adjust gatt mask in parisc_agp_mask_memory() + - MIPS: unhide PATA_PLATFORM + - MIPS: Alchemy: fix dbdma2 + - mips: Move initrd_start check after initrd address sanitisation. + - ASoC: dwc: move DMA init to snd_soc_dai_driver probe() + - xen/blkfront: Only check REQ_FUA for writes + - drm:amd:amdgpu: Fix missing buffer object unlock in failure path + - NVMe: Add MAXIO 1602 to bogus nid list. + - irqchip/gic: Correctly validate OF quirk descriptors + - wifi: cfg80211: fix locking in regulatory disconnect + - wifi: cfg80211: fix double lock bug in reg_wdev_chan_valid() + - epoll: ep_autoremove_wake_function should use list_del_init_careful + - ocfs2: fix use-after-free when unmounting read-only filesystem + - ocfs2: check new file size on fallocate call + - nios2: dts: Fix tse_mac "max-frame-size" property + - nilfs2: fix incomplete buffer cleanup in nilfs_btnode_abort_change_key() + - nilfs2: fix possible out-of-bounds segment allocation in resize ioctl + - kexec: support purgatories with .text.hot sections + - x86/purgatory: remove PGO flags + - powerpc/purgatory: remove PGO flags + - ALSA: usb-audio: Add quirk flag for HEM devices to enable native DSD + playback + - dm thin metadata: check fail_io before using data_sm + - nouveau: fix client work fence deletion race + - RDMA/uverbs: Restrict usage of privileged QKEYs + - net: usb: qmi_wwan: add support for Compal RXM-G1 + - drm/amdgpu: add missing radeon secondary PCI ID + - ALSA: hda/realtek: Add a quirk for Compaq N14JP6 + - Remove DECnet support from kernel + - [Config] updateconfigs for DECNET + - thunderbolt: dma_test: Use correct value for absent rings when creating + paths + - thunderbolt: Mask ring interrupt on Intel hardware as well + - USB: serial: option: add Quectel EM061KGL series + - serial: lantiq: add missing interrupt ack + - usb: dwc3: gadget: Reset num TRBs before giving back the request + - RDMA/rtrs: Fix the last iu->buf leak in err path + - RDMA/rtrs: Fix rxe_dealloc_pd warning + - RDMA/rxe: Fix packet length checks + - spi: fsl-dspi: avoid SCK glitches with continuous transfers + - netfilter: nf_tables: integrate pipapo into commit protocol + - netfilter: nfnetlink: skip error delivery on batch in case of ENOMEM + - net: enetc: correct the indexes of highest and 2nd highest TCs + - ping6: Fix send to link-local addresses with VRF. + - net/sched: simplify tcf_pedit_act + - net/sched: act_pedit: remove extra check for key type + - net/sched: act_pedit: Parse L3 Header for L4 offset + - RDMA/rxe: Remove the unused variable obj + - RDMA/rxe: Removed unused name from rxe_task struct + - RDMA/rxe: Fix the use-before-initialization error of resp_pkts + - iavf: remove mask from iavf_irq_enable_queues() + - octeontx2-af: fixed resource availability check + - octeontx2-af: fix lbk link credits on cn10k + - RDMA/mlx5: Initiate dropless RQ for RAW Ethernet functions + - RDMA/cma: Always set static rate to 0 for RoCE + - IB/uverbs: Fix to consider event queue closing also upon non-blocking mode + - IB/isert: Fix dead lock in ib_isert + - IB/isert: Fix possible list corruption in CMA handler + - IB/isert: Fix incorrect release of isert connection + - net: ethtool: correct MAX attribute value for stats + - ipvlan: fix bound dev checking for IPv6 l3s mode + - sctp: fix an error code in sctp_sf_eat_auth() + - igc: Clean the TX buffer and TX descriptor ring + - igb: fix nvm.ops.read() error handling + - drm/nouveau: don't detect DSM for non-NVIDIA device + - drm/nouveau/dp: check for NULL nv_connector->native_mode + - drm/nouveau: add nv_encoder pointer check for NULL + - cifs: fix lease break oops in xfstest generic/098 + - ext4: drop the call to ext4_error() from ext4_get_group_info() + - net/sched: cls_api: Fix lockup on flushing explicitly created chain + - net: lapbether: only support ethernet devices + - dm: don't lock fs when the map is NULL during suspend or resume + - net: tipc: resize nlattr array to correct size + - selftests/ptp: Fix timestamp printf format for PTP_SYS_OFFSET + - afs: Fix vlserver probe RTT handling + - cgroup: always put cset in cgroup_css_set_put_fork + - rcu/kvfree: Avoid freeing new kfree_rcu() memory after old grace period + - neighbour: Remove unused inline function neigh_key_eq16() + - net: Remove unused inline function dst_hold_and_use() + - net: Remove DECnet leftovers from flow.h. + - neighbour: delete neigh_lookup_nodev as not used + - of: overlay: add entry to of_overlay_action_name[] + - mmc: block: ensure error propagation for non-blk + - nilfs2: reject devices with insufficient block count + - Linux 5.15.118 + * Jammy update: v5.15.117 upstream stable release (LP: #2030107) + - ata: ahci: fix enum constants for gcc-13 + - gcc-plugins: Reorganize gimple includes for GCC 13 + - remove the sx8 block driver + - [Config] updateconfigs for BLK_DEV_SX8 + - sfc (gcc13): synchronize ef100_enqueue_skb()'s return type + - i40e: Remove string printing for i40e_status + - i40e: use int for i40e_status + - i40e: fix build warning in ice_fltr_add_mac_to_list() + - bonding (gcc13): synchronize bond_{a,t}lb_xmit() types + - f2fs: fix iostat lock protection + - blk-iocost: avoid 64-bit division in ioc_timer_fn + - platform/surface: aggregator: Allow completion work-items to be executed in + parallel + - spi: qup: Request DMA before enabling clocks + - afs: Fix setting of mtime when creating a file/dir/symlink + - wifi: mt76: mt7615: fix possible race in mt7615_mac_sta_poll + - neighbour: fix unaligned access to pneigh_entry + - net: dsa: lan9303: allow vid != 0 in port_fdb_{add|del} methods + - bpf: Fix UAF in task local storage + - net/ipv6: fix bool/int mismatch for skip_notify_on_dev_down + - net/smc: Avoid to access invalid RMBs' MRs in SMCRv1 ADD LINK CONT + - net: enetc: correct the statistics of rx bytes + - net/sched: fq_pie: ensure reasonable TCA_FQ_PIE_QUANTUM values + - drm/i915: Explain the magic numbers for AUX SYNC/precharge length + - drm/i915: Use 18 fast wake AUX sync len + - Bluetooth: Fix l2cap_disconnect_req deadlock + - Bluetooth: L2CAP: Add missing checks for invalid DCID + - qed/qede: Fix scheduling while atomic + - wifi: cfg80211: fix locking in sched scan stop work + - selftests/bpf: Verify optval=NULL case + - selftests/bpf: Fix sockopt_sk selftest + - netfilter: conntrack: fix NULL pointer dereference in nf_confirm_cthelper + - netfilter: ipset: Add schedule point in call_ad(). + - ipv6: rpl: Fix Route of Death. + - rfs: annotate lockless accesses to sk->sk_rxhash + - rfs: annotate lockless accesses to RFS sock flow table + - drm/i915/selftests: Increase timeout for live_parallel_switch + - drm/i915/selftests: Stop using kthread_stop() + - drm/i915/selftests: Add some missing error propagation + - net: sched: move rtm_tca_policy declaration to include file + - net: sched: act_police: fix sparse errors in tcf_police_dump() + - net: sched: fix possible refcount leak in tc_chain_tmplt_add() + - bpf: Add extra path pointer check to d_path helper + - lib: cpu_rmap: Fix potential use-after-free in irq_cpu_rmap_release() + - bnxt_en: Don't issue AP reset during ethtool's reset operation + - bnxt_en: Query default VLAN before VNIC setup on a VF + - bnxt_en: Implement .set_port / .unset_port UDP tunnel callbacks + - batman-adv: Broken sync while rescheduling delayed work + - Input: xpad - delete a Razer DeathAdder mouse VID/PID entry + - Input: psmouse - fix OOB access in Elantech protocol + - Input: fix open count when closing inhibited device + - ALSA: hda/realtek: Add quirk for Clevo NS50AU + - ALSA: hda/realtek: Add a quirk for HP Slim Desktop S01 + - drm/i915/gt: Use the correct error value when kernel_context() fails + - drm/amd/pm: conditionally disable pcie lane switching for some + sienna_cichlid SKUs + - drm/amdgpu: fix xclk freq on CHIP_STONEY + - drm/amd/pm: Fix power context allocation in SMU13 + - can: j1939: j1939_sk_send_loop_abort(): improved error queue handling in + J1939 Socket + - can: j1939: change j1939_netdev_lock type to mutex + - can: j1939: avoid possible use-after-free when j1939_can_rx_register fails + - ceph: fix use-after-free bug for inodes when flushing capsnaps + - s390/dasd: Use correct lock while counting channel queue length + - Bluetooth: Fix use-after-free in hci_remove_ltk/hci_remove_irk + - Bluetooth: hci_qca: fix debugfs registration + - tee: amdtee: Add return_origin to 'struct tee_cmd_load_ta' + - rbd: move RBD_OBJ_FLAG_COPYUP_ENABLED flag setting + - rbd: get snapshot context after exclusive lock is ensured to be held + - pinctrl: meson-axg: add missing GPIOA_18 gpio group + - usb: usbfs: Enforce page requirements for mmap + - usb: usbfs: Use consistent mmap functions + - ARM: dts: at91: sama7g5ek: fix debounce delay property for shdwc + - ASoC: codecs: wsa881x: do not set can_multi_write flag + - arm64: dts: qcom: sc7180-lite: Fix SDRAM freq for misidentified sc7180-lite + boards + - arm64: dts: imx8qm-mek: correct GPIOs for USDHC2 CD and WP signals + - arm64: dts: imx8-ss-dma: assign default clock rate for lpuarts + - ASoC: mediatek: mt8195-afe-pcm: Convert to platform remove callback + returning void + - ASoC: mediatek: mt8195: fix use-after-free in driver remove path + - arm64: dts: imx8mn-beacon: Fix SPI CS pinmux + - i2c: mv64xxx: Fix reading invalid status value in atomic mode + - firmware: arm_ffa: Set handle field to zero in memory descriptor + - i2c: sprd: Delete i2c adapter in .remove's error path + - eeprom: at24: also select REGMAP + - riscv: fix kprobe __user string arg print fault issue + - vduse: avoid empty string for dev name + - vhost: support PACKED when setting-getting vring_base + - vhost_vdpa: support PACKED when setting-getting vring_base + - ext4: only check dquot_initialize_needed() when debugging + - Linux 5.15.117 + * CVE-2023-4273 + - exfat: check if filename entries exceeds max filename length + * CVE-2023-4128 + - net/sched: cls_u32: No longer copy tcf_result on update to avoid use-after- + free + - net/sched: cls_fw: No longer copy tcf_result on update to avoid use-after- + free + - net/sched: cls_route: No longer copy tcf_result on update to avoid use- + after-free + * CVE-2023-3863 + - nfc: llcp: simplify llcp_sock_connect() error paths + - net: nfc: Fix use-after-free caused by nfc_llcp_find_local + + -- Tim Gardner Mon, 11 Sep 2023 13:20:24 -0600 + +linux-azure-5.15 (5.15.0-1047.54~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1047.54~20.04.1 -proposed tracker + (LP: #2034165) + + [ Ubuntu: 5.15.0-1047.54 ] + + * jammy/linux-azure: 5.15.0-1047.54 -proposed tracker (LP: #2034166) + * jammy/linux: 5.15.0-84.93 -proposed tracker (LP: #2034202) + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + * CVE-2023-4569 + - netfilter: nf_tables: deactivate catchall elements in next generation + * CVE-2023-40283 + - Bluetooth: L2CAP: Fix use-after-free in l2cap_sock_ready_cb + * CVE-2023-20588 + - x86/bugs: Increase the x86 bugs vector size to two u32s + - x86/CPU/AMD: Do not leak quotient data after a division by 0 + - x86/CPU/AMD: Fix the DIV(0) initial fix attempt + * CVE-2023-4128 + - net/sched: cls_u32: No longer copy tcf_result on update to avoid use-after- + free + - net/sched: cls_fw: No longer copy tcf_result on update to avoid use-after- + free + - net/sched: cls_route: No longer copy tcf_result on update to avoid use- + after-free + + -- Tim Gardner Wed, 06 Sep 2023 11:32:50 -0600 + +linux-azure-5.15 (5.15.0-1046.53~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1046.53~20.04.1 -proposed tracker + (LP: #2030386) + + [ Ubuntu: 5.15.0-1046.53 ] + + * jammy/linux-azure: 5.15.0-1046.53 -proposed tracker (LP: #2030387) + * cifs: fix mid leak during reconnection after timeout threshold + (LP: #2029138) + - SAUCE: Fix cifs: fix mid leak during reconnection after timeout threshold + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2023.08.07) + * jammy/linux: 5.15.0-83.92 -proposed tracker (LP: #2031132) + * libgnutls report "trap invalid opcode" when trying to install packages over + https (LP: #2031093) + - [Config]: disable CONFIG_GDS_FORCE_MITIGATION + * jammy/linux: 5.15.0-81.90 -proposed tracker (LP: #2030422) + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + - [Packaging] resync getabis + - debian/dkms-versions -- update from kernel-versions (main/2023.08.07) + * CVE-2022-40982 + - x86/mm: Initialize text poking earlier + - x86/mm: fix poking_init() for Xen PV guests + - x86/mm: Use mm_alloc() in poking_init() + - mm: Move mm_cachep initialization to mm_init() + - init: Provide arch_cpu_finalize_init() + - x86/cpu: Switch to arch_cpu_finalize_init() + - ARM: cpu: Switch to arch_cpu_finalize_init() + - sparc/cpu: Switch to arch_cpu_finalize_init() + - um/cpu: Switch to arch_cpu_finalize_init() + - init: Remove check_bugs() leftovers + - init: Invoke arch_cpu_finalize_init() earlier + - init, x86: Move mem_encrypt_init() into arch_cpu_finalize_init() + - x86/init: Initialize signal frame size late + - x86/fpu: Remove cpuinfo argument from init functions + - x86/fpu: Mark init functions __init + - x86/fpu: Move FPU initialization into arch_cpu_finalize_init() + - x86/xen: Fix secondary processors' FPU initialization + - x86/speculation: Add Gather Data Sampling mitigation + - x86/speculation: Add force option to GDS mitigation + - x86/speculation: Add Kconfig option for GDS + - KVM: Add GDS_NO support to KVM + - Documentation/x86: Fix backwards on/off logic about YMM support + - [Config]: Enable CONFIG_ARCH_HAS_CPU_FINALIZE_INIT and + CONFIG_GDS_FORCE_MITIGATION + * CVE-2023-3609 + - net/sched: cls_u32: Fix reference counter leak leading to overflow + * CVE-2023-21400 + - io_uring: ensure IOPOLL locks around deferred work + * CVE-2023-4015 + - netfilter: nf_tables: add NFT_TRANS_PREPARE_ERROR to deal with bound + set/chain + - netfilter: nf_tables: unbind non-anonymous set if rule construction fails + - netfilter: nf_tables: skip immediate deactivate in _PREPARE_ERROR + * CVE-2023-3995 + - netfilter: nf_tables: disallow rule addition to bound chain via + NFTA_RULE_CHAIN_ID + * CVE-2023-3777 + - netfilter: nf_tables: skip bound chain on rule flush + * losetup with mknod fails on jammy with kernel 5.15.0-69-generic + (LP: #2015400) + - loop: do not enforce max_loop hard limit by (new) default + * Include the MAC address pass through function on RTL8153DD-CG (LP: #2020295) + - r8152: add USB device driver for config selection + * Jammy update: v5.15.116 upstream stable release (LP: #2029401) + - RDMA/bnxt_re: Fix the page_size used during the MR creation + - RDMA/efa: Fix unsupported page sizes in device + - RDMA/hns: Fix base address table allocation + - RDMA/hns: Modify the value of long message loopback slice + - dmaengine: at_xdmac: Move the free desc to the tail of the desc list + - dmaengine: at_xdmac: fix potential Oops in at_xdmac_prep_interleaved() + - RDMA/bnxt_re: Fix a possible memory leak + - RDMA/bnxt_re: Fix return value of bnxt_re_process_raw_qp_pkt_rx + - iommu/rockchip: Fix unwind goto issue + - iommu/amd: Don't block updates to GATag if guest mode is on + - dmaengine: pl330: rename _start to prevent build error + - riscv: Fix unused variable warning when BUILTIN_DTB is set + - net/mlx5: fw_tracer, Fix event handling + - net/mlx5e: Don't attach netdev profile while handling internal error + - net: mellanox: mlxbf_gige: Fix skb_panic splat under memory pressure + - netrom: fix info-leak in nr_write_internal() + - af_packet: Fix data-races of pkt_sk(sk)->num. + - amd-xgbe: fix the false linkup in xgbe_phy_status + - mtd: rawnand: ingenic: fix empty stub helper definitions + - RDMA/irdma: Add SW mechanism to generate completions on error + - RDMA/irdma: Prevent QP use after free + - RDMA/irdma: Fix Local Invalidate fencing + - af_packet: do not use READ_ONCE() in packet_bind() + - tcp: deny tcp_disconnect() when threads are waiting + - tcp: Return user_mss for TCP_MAXSEG in CLOSE/LISTEN state if user_mss set + - net/sched: sch_ingress: Only create under TC_H_INGRESS + - net/sched: sch_clsact: Only create under TC_H_CLSACT + - net/sched: Reserve TC_H_INGRESS (TC_H_CLSACT) for ingress (clsact) Qdiscs + - net/sched: Prohibit regrafting ingress or clsact Qdiscs + - net: sched: fix NULL pointer dereference in mq_attach + - net/netlink: fix NETLINK_LIST_MEMBERSHIPS length report + - udp6: Fix race condition in udp6_sendmsg & connect + - net/mlx5e: Fix error handling in mlx5e_refresh_tirs + - net/mlx5: Read embedded cpu after init bit cleared + - net: dsa: mv88e6xxx: Increase wait after reset deactivation + - mtd: rawnand: marvell: ensure timing values are written + - mtd: rawnand: marvell: don't set the NAND frequency select + - rtnetlink: call validate_linkmsg in rtnl_create_link + - drm/amdgpu: release gpu full access after "amdgpu_device_ip_late_init" + - watchdog: menz069_wdt: fix watchdog initialisation + - ALSA: hda: Glenfly: add HD Audio PCI IDs and HDMI Codec Vendor IDs. + - drm/amdgpu: Use the default reset when loading or reloading the driver + - mailbox: mailbox-test: Fix potential double-free in + mbox_test_message_write() + - drm/ast: Fix ARM compatibility + - btrfs: abort transaction when sibling keys check fails for leaves + - ARM: 9295/1: unwind:fix unwind abort for uleb128 case + - media: rcar-vin: Select correct interrupt mode for V4L2_FIELD_ALTERNATE + - platform/x86: intel_scu_pcidrv: Add back PCI ID for Medfield + - gfs2: Don't deref jdesc in evict + - fbdev: imsttfb: Fix use after free bug in imsttfb_probe + - fbdev: modedb: Add 1920x1080 at 60 Hz video mode + - fbdev: stifb: Fix info entry in sti_struct on error path + - nbd: Fix debugfs_create_dir error checking + - block/rnbd: replace REQ_OP_FLUSH with REQ_OP_WRITE + - nvme-pci: add NVME_QUIRK_BOGUS_NID for HS-SSD-FUTURE 2048G + - nvme-pci: add quirk for missing secondary temperature thresholds + - ASoC: dwc: limit the number of overrun messages + - um: harddog: fix modular build + - xfrm: Check if_id in inbound policy/secpath match + - ASoC: dt-bindings: Adjust #sound-dai-cells on TI's single-DAI codecs + - ASoC: ssm2602: Add workaround for playback distortions + - media: dvb_demux: fix a bug for the continuity counter + - media: dvb-usb: az6027: fix three null-ptr-deref in az6027_i2c_xfer() + - media: dvb-usb-v2: ec168: fix null-ptr-deref in ec168_i2c_xfer() + - media: dvb-usb-v2: ce6230: fix null-ptr-deref in ce6230_i2c_master_xfer() + - media: dvb-usb-v2: rtl28xxu: fix null-ptr-deref in rtl28xxu_i2c_xfer + - media: dvb-usb: digitv: fix null-ptr-deref in digitv_i2c_xfer() + - media: dvb-usb: dw2102: fix uninit-value in su3000_read_mac_address + - media: netup_unidvb: fix irq init by register it at the end of probe + - media: dvb_ca_en50221: fix a size write bug + - media: ttusb-dec: fix memory leak in ttusb_dec_exit_dvb() + - media: mn88443x: fix !CONFIG_OF error by drop of_match_ptr from ID table + - media: dvb-core: Fix use-after-free due on race condition at dvb_net + - media: dvb-core: Fix use-after-free due to race at dvb_register_device() + - media: dvb-core: Fix use-after-free due to race condition at dvb_ca_en50221 + - s390/pkey: zeroize key blobs + - s390/topology: honour nr_cpu_ids when adding CPUs + - ACPI: resource: Add IRQ override quirk for LG UltraPC 17U70P + - wifi: rtl8xxxu: fix authentication timeout due to incorrect RCR value + - ARM: dts: stm32: add pin map for CAN controller on stm32f7 + - arm64/mm: mark private VM_FAULT_X defines as vm_fault_t + - arm64: vdso: Pass (void *) to virt_to_page() + - wifi: mac80211: simplify chanctx allocation + - scsi: core: Decrease scsi_device's iorequest_cnt if dispatch failed + - wifi: b43: fix incorrect __packed annotation + - netfilter: conntrack: define variables exp_nat_nla_policy and any_addr with + CONFIG_NF_NAT + - nvme-multipath: don't call blk_mark_disk_dead in nvme_mpath_remove_disk + - ALSA: oss: avoid missing-prototype warnings + - drm/msm: Be more shouty if per-process pgtables aren't working + - atm: hide unused procfs functions + - drm/amdgpu: skip disabling fence driver src_irqs when device is unplugged + - nvme-pci: Add quirk for Teamgroup MP33 SSD + - mailbox: mailbox-test: fix a locking issue in mbox_test_message_write() + - media: uvcvideo: Don't expose unsupported formats to userspace + - iio: accel: st_accel: Fix invalid mount_matrix on devices without ACPI _ONT + method + - iio: adc: mxs-lradc: fix the order of two cleanup operations + - HID: google: add jewel USB id + - HID: wacom: avoid integer overflow in wacom_intuos_inout() + - iio: imu: inv_icm42600: fix timestamp reset + - dt-bindings: iio: adc: renesas,rcar-gyroadc: Fix adi,ad7476 compatible value + - iio: light: vcnl4035: fixed chip ID check + - iio: adc: ad_sigma_delta: Fix IRQ issue by setting IRQ_DISABLE_UNLAZY flag + - iio: dac: mcp4725: Fix i2c_master_send() return value handling + - iio: adc: ad7192: Change "shorted" channels to differential + - iio: dac: build ad5758 driver when AD5758 is selected + - net: usb: qmi_wwan: Set DTR quirk for BroadMobi BM818 + - dt-bindings: usb: snps,dwc3: Fix "snps,hsphy_interface" type + - usb: gadget: f_fs: Add unbind event before functionfs_unbind + - md/raid5: fix miscalculation of 'end_sector' in raid5_read_one_chunk() + - misc: fastrpc: return -EPIPE to invocations on device removal + - misc: fastrpc: reject new invocations during device removal + - scsi: stex: Fix gcc 13 warnings + - ata: libata-scsi: Use correct device no in ata_find_dev() + - drm/amd/pm: reverse mclk and fclk clocks levels for vangogh + - drm/amd/pm: reverse mclk and fclk clocks levels for yellow carp + - drm/amd/pm: reverse mclk and fclk clocks levels for renoir + - x86/boot: Wrap literal addresses in absolute_pointer() + - ath6kl: Use struct_group() to avoid size-mismatched casting + - block/blk-iocost (gcc13): keep large values in a new enum + - mmc: vub300: fix invalid response handling + - mmc: pwrseq: sd8787: Fix WILC CHIP_EN and RESETN toggling order + - tty: serial: fsl_lpuart: use UARTCTRL_TXINV to send break instead of + UARTCTRL_SBK + - btrfs: fix csum_tree_block page iteration to avoid tripping on + -Werror=array-bounds + - powerpc/iommu: Limit number of TCEs to 512 for H_STUFF_TCE hcall + - iommu/amd: Fix domain flush size when syncing iotlb + - usb: cdns3: allocate TX FIFO size according to composite EP number + - usb: cdns3: fix NCM gadget RX speed 20x slow than expection at iMX8QM + - block: fix revalidate performance regression + - selinux: don't use make's grouped targets feature yet + - tracing/probe: trace_probe_primary_from_call(): checked list_first_entry + - selftests: mptcp: connect: skip if MPTCP is not supported + - selftests: mptcp: pm nl: skip if MPTCP is not supported + - selftests: mptcp: sockopt: skip if MPTCP is not supported + - ext4: add EA_INODE checking to ext4_iget() + - ext4: set lockdep subclass for the ea_inode in ext4_xattr_inode_cache_find() + - ext4: disallow ea_inodes with extended attributes + - ext4: add lockdep annotations for i_data_sem for ea_inode's + - fbcon: Fix null-ptr-deref in soft_cursor + - serial: 8250_tegra: Fix an error handling path in tegra_uart_probe() + - test_firmware: fix the memory leak of the allocated firmware buffer + - KVM: x86: Account fastpath-only VM-Exits in vCPU stats + - ksmbd: fix credit count leakage + - ksmbd: fix incorrect AllocationSize set in smb2_get_info + - KEYS: asymmetric: Copy sig and digest in public_key_verify_signature() + - regmap: Account for register length when chunking + - tpm, tpm_tis: Request threaded interrupt handler + - drm/rcar: stop using 'imply' for dependencies + - [Config] updateconfigs for DRM_RCAR_LVDS + - scsi: dpt_i2o: Remove broken pass-through ioctl (I2OUSERCMD) + - scsi: dpt_i2o: Do not process completions with invalid addresses + - [Config] updateconfigs for SCSI_DPT_I2O + - drm/amdgpu/gfx10: Disable gfxoff before disabling powergating. + - selftests: mptcp: diag: skip if MPTCP is not supported + - selftests: mptcp: simult flows: skip if MPTCP is not supported + - selftests: mptcp: join: skip if MPTCP is not supported + - ext4: enable the lazy init thread when remounting read/write + - ARM: defconfig: drop CONFIG_DRM_RCAR_LVDS + - RDMA/irdma: Fix drain SQ hang with no completion + - RDMA/irdma: Do not generate SW completions for NOPs + - Linux 5.15.116 + * CVE-2023-20593 + - x86/cpu/amd: Move the errata checking functionality up + - x86/cpu/amd: Add a Zenbleed fix + * CVE-2023-4004 + - netfilter: nft_set_pipapo: fix improper element removal + * CVE-2023-3611 + - net/sched: sch_qfq: refactor parsing of netlink parameters + - net/sched: sch_qfq: account for stab overhead in qfq_enqueue + * CVE-2023-3610 + - netfilter: nf_tables: fix chain binding transaction logic + * CVE-2023-2898 + - f2fs: fix to avoid NULL pointer dereference f2fs_write_end_io() + * Backport support to tolerate ZSTD compressed firmware files (LP: #2028550) + - firmware_loader: EXTRA_FIRMWARE does not support compressed files + - firmware: Add the support for ZSTD-compressed firmware files + - [Config] Enable FW_LOADER_COMPRESS_ZSTD by default + * stacked overlay file system mounts that have chroot() called against them + appear to be getting locked (by the kernel most likely?) (LP: #2016398) + - SAUCE: overlayfs: fix reference count mismatch + * kdump fails on big arm64 systems when offset is not specified (LP: #2024479) + - arm64: mm: use IS_ENABLED(CONFIG_KEXEC_CORE) instead of #ifdef + - arm64: kdump: Reimplement crashkernel=X + - docs: kdump: Update the crashkernel description for arm64 + - arm64: kdump: Do not allocate crash low memory if not needed + - arm64/mm: Define defer_reserve_crashkernel() + - arm64: kdump: Provide default size when crashkernel=Y, low is not specified + - arm64: kdump: Support crashkernel=X fall back to reserve region above DMA + zones + * usbrtl sometimes doesn't reload firmware (LP: #2026028) + - Bluetooth: btrtl: Ask ic_info to drop firmware + * cifs: fix mid leak during reconnection after timeout threshold + (LP: #2029138) + - cifs: fix mid leak during reconnection after timeout threshold + * Jammy update: v5.15.115 upstream stable release (LP: #2028799) + - power: supply: bq27xxx: expose battery data when CI=1 + - power: supply: bq27xxx: Move bq27xxx_battery_update() down + - power: supply: bq27xxx: Ensure power_supply_changed() is called on current + sign changes + - power: supply: bq27xxx: After charger plug in/out wait 0.5s for things to + stabilize + - power: supply: core: Refactor + power_supply_set_input_current_limit_from_supplier() + - power: supply: bq24190: Call power_supply_changed() after updating input + current + - bpf: fix a memory leak in the LRU and LRU_PERCPU hash maps + - net/mlx5: devcom only supports 2 ports + - net/mlx5e: Fix deadlock in tc route query code + - net/mlx5: Devcom, serialize devcom registration + - platform/x86: ISST: PUNIT device mapping with Sub-NUMA clustering + - platform/x86: ISST: Remove 8 socket limit + - net: phy: mscc: enable VSC8501/2 RGMII RX clock + - net: dsa: introduce helpers for iterating through ports using dp + - net: dsa: mt7530: rework mt753[01]_setup + - net: dsa: mt7530: split-off common parts from mt7531_setup + - net: dsa: mt7530: fix network connectivity with multiple CPU ports + - Bonding: add arp_missed_max option + - bonding: fix send_peer_notif overflow + - binder: fix UAF caused by faulty buffer cleanup + - irqchip/mips-gic: Get rid of the reliance on irq_cpu_online() + - irqchip/mips-gic: Use raw spinlock for gic_lock + - net/mlx5e: Fix SQ wake logic in ptp napi_poll context + - xdp: Allow registering memory model without rxq reference + - net: page_pool: use in_softirq() instead + - page_pool: fix inconsistency for page_pool_ring_[un]lock() + - irqchip/mips-gic: Don't touch vl_map if a local interrupt is not routable + - xdp: xdp_mem_allocator can be NULL in trace_mem_connect(). + - bluetooth: Add cmd validity checks at the start of hci_sock_ioctl() + - Revert "binder_alloc: add missing mmap_lock calls when using the VMA" + - Revert "android: binder: stop saving a pointer to the VMA" + - binder: add lockless binder_alloc_(set|get)_vma() + - binder: fix UAF of alloc->vma in race with munmap() + - ipv{4,6}/raw: fix output xfrm lookup wrt protocol + - netfilter: ctnetlink: Support offloaded conntrack entry deletion + - Linux 5.15.115 + * Jammy update: v5.15.114 upstream stable release (LP: #2028701) + - usb: gadget: Properly configure the device for remote wakeup + - usb: dwc3: fix gadget mode suspend interrupt handler issue + - dt-bindings: ata: ahci-ceva: convert to yaml + - dt-bindings: ata: ahci-ceva: Cover all 4 iommus entries + - watchdog: sp5100_tco: Immediately trigger upon starting. + - ARM: dts: stm32: fix AV96 board SAI2 pin muxing on stm32mp15 + - spi: fsl-spi: Re-organise transfer bits_per_word adaptation + - spi: fsl-cpm: Use 16 bit mode for large transfers with even size + - ocfs2: Switch to security_inode_init_security() + - arm64: Also reset KASAN tag if page is not PG_mte_tagged + - ALSA: hda/ca0132: add quirk for EVGA X299 DARK + - ALSA: hda: Fix unhandled register update during auto-suspend period + - ALSA: hda/realtek: Enable headset onLenovo M70/M90 + - mmc: sdhci-esdhc-imx: make "no-mmc-hs400" works + - ASoC: rt5682: Disable jack detection interrupt during suspend + - net: cdc_ncm: Deal with too low values of dwNtbOutMaxSize + - m68k: Move signal frame following exception on 68020/030 + - parisc: Handle kgdb breakpoints only in kernel context + - parisc: Allow to reboot machine after system halt + - gpio: mockup: Fix mode of debugfs files + - btrfs: use nofs when cleaning up aborted transactions + - dt-binding: cdns,usb3: Fix cdns,on-chip-buff-size type + - selftests/memfd: Fix unknown type name build failure + - parisc: Fix flush_dcache_page() for usage from irq context + - perf/x86/uncore: Correct the number of CHAs on SPR + - x86/topology: Fix erroneous smp_num_siblings on Intel Hybrid platforms + - debugobjects: Don't wake up kswapd from fill_pool() + - fbdev: udlfb: Fix endpoint check + - net: fix stack overflow when LRO is disabled for virtual interfaces + - udplite: Fix NULL pointer dereference in __sk_mem_raise_allocated(). + - USB: core: Add routines for endpoint checks in old drivers + - USB: sisusbvga: Add endpoint checks + - media: radio-shark: Add endpoint checks + - ASoC: lpass: Fix for KASAN use_after_free out of bounds + - net: fix skb leak in __skb_tstamp_tx() + - selftests: fib_tests: mute cleanup error message + - octeontx2-pf: Fix TSOv6 offload + - bpf: Fix mask generation for 32-bit narrow loads of 64-bit fields + - ipv6: Fix out-of-bounds access in ipv6_find_tlv() + - cifs: mapchars mount option ignored + - power: supply: leds: Fix blink to LED on transition + - power: supply: mt6360: add a check of devm_work_autocancel in + mt6360_charger_probe + - power: supply: bq27xxx: Fix bq27xxx_battery_update() race condition + - power: supply: bq27xxx: Fix I2C IRQ race on remove + - power: supply: bq27xxx: Fix poll_interval handling and races on remove + - power: supply: bq27xxx: Add cache parameter to + bq27xxx_battery_current_and_status() + - power: supply: sbs-charger: Fix INHIBITED bit for Status reg + - firmware: arm_ffa: Check if ffa_driver remove is present before executing + - firmware: arm_ffa: Fix FFA device names for logical partitions + - fs: fix undefined behavior in bit shift for SB_NOUSER + - regulator: pca9450: Fix BUCK2 enable_mask + - coresight: Fix signedness bug in tmc_etr_buf_insert_barrier_packet() + - xen/pvcalls-back: fix double frees with pvcalls_new_active_socket() + - x86/show_trace_log_lvl: Ensure stack pointer is aligned, again + - ASoC: Intel: Skylake: Fix declaration of enum skl_ch_cfg + - sctp: fix an issue that plpmtu can never go to complete state + - forcedeth: Fix an error handling path in nv_probe() + - platform/mellanox: mlxbf-pmc: fix sscanf() error checking + - net/mlx5e: do as little as possible in napi poll when budget is 0 + - net/mlx5: DR, Fix crc32 calculation to work on big-endian (BE) CPUs + - net/mlx5: DR, Check force-loopback RC QP capability independently from RoCE + - net/mlx5: Fix error message when failing to allocate device memory + - net/mlx5: Devcom, fix error flow in mlx5_devcom_register_device + - arm64: dts: imx8mn-var-som: fix PHY detection bug by adding deassert delay + - firmware: arm_ffa: Set reserved/MBZ fields to zero in the memory descriptors + - regulator: mt6359: add read check for PMIC MT6359 + - 3c589_cs: Fix an error handling path in tc589_probe() + - net: phy: mscc: add VSC8502 to MODULE_DEVICE_TABLE + - Linux 5.15.114 + * Jammy update: v5.15.113 upstream stable release (LP: #2028408) + - drm/mipi-dsi: Set the fwnode for mipi_dsi_device + - ARM: 9296/1: HP Jornada 7XX: fix kernel-doc warnings + - net: mdio: mvusb: Fix an error handling path in mvusb_mdio_probe() + - scsi: ufs: core: Fix I/O hang that occurs when BKOPS fails in W-LUN suspend + - tick/broadcast: Make broadcast device replacement work correctly + - linux/dim: Do nothing if no time delta between samples + - net: stmmac: switch to use interrupt for hw crosstimestamping + - net: stmmac: Initialize MAC_ONEUS_TIC_COUNTER register + - net: Fix load-tearing on sk->sk_stamp in sock_recv_cmsgs(). + - netfilter: nf_tables: always release netdev hooks from notifier + - netfilter: conntrack: fix possible bug_on with enable_hooks=1 + - netlink: annotate accesses to nlk->cb_running + - net: annotate sk->sk_err write from do_recvmmsg() + - net: deal with most data-races in sk_wait_event() + - net: add vlan_get_protocol_and_depth() helper + - tcp: add annotations around sk->sk_shutdown accesses + - gve: Remove the code of clearing PBA bit + - net: datagram: fix data-races in datagram_poll() + - af_unix: Fix a data race of sk->sk_receive_queue->qlen. + - af_unix: Fix data races around sk->sk_shutdown. + - drm/i915/dp: prevent potential div-by-zero + - fbdev: arcfb: Fix error handling in arcfb_probe() + - ext4: remove an unused variable warning with CONFIG_QUOTA=n + - ext4: reflect error codes from ext4_multi_mount_protect() to its callers + - ext4: fix lockdep warning when enabling MMP + - ext4: allow to find by goal if EXT4_MB_HINT_GOAL_ONLY is set + - ext4: allow ext4_get_group_info() to fail + - refscale: Move shutdown from wait_event() to wait_event_idle() + - rcu: Protect rcu_print_task_exp_stall() ->exp_tasks access + - fs: hfsplus: remove WARN_ON() from hfsplus_cat_{read,write}_inode() + - drm/displayid: add displayid_get_header() and check bounds better + - drm/amd/display: Use DC_LOG_DC in the trasform pixel function + - regmap: cache: Return error in cache sync operations for REGCACHE_NONE + - arm64: dts: qcom: msm8996: Add missing DWC3 quirks + - media: cx23885: Fix a null-ptr-deref bug in buffer_prepare() and + buffer_finish() + - media: pci: tw68: Fix null-ptr-deref bug in buf prepare and finish + - firmware: arm_sdei: Fix sleep from invalid context BUG + - ACPI: EC: Fix oops when removing custom query handlers + - remoteproc: stm32_rproc: Add mutex protection for workqueue + - drm/tegra: Avoid potential 32-bit integer overflow + - drm/msm/dp: Clean up handling of DP AUX interrupts + - ACPICA: Avoid undefined behavior: applying zero offset to null pointer + - ACPICA: ACPICA: check null return of ACPI_ALLOCATE_ZEROED in + acpi_db_display_objects + - drm/amd: Fix an out of bounds error in BIOS parser + - media: Prefer designated initializers over memset for subdev pad ops + - wifi: ath: Silence memcpy run-time false positive warning + - bpf: Annotate data races in bpf_local_storage + - wifi: brcmfmac: cfg80211: Pass the PMK in binary instead of hex + - ext2: Check block size validity during mount + - scsi: lpfc: Prevent lpfc_debugfs_lockstat_write() buffer overflow + - bnxt: avoid overflow in bnxt_get_nvram_directory() + - net: pasemi: Fix return type of pasemi_mac_start_tx() + - net: Catch invalid index in XPS mapping + - scsi: target: iscsit: Free cmds before session free + - lib: cpu_rmap: Avoid use after free on rmap->obj array entries + - scsi: message: mptlan: Fix use after free bug in mptlan_remove() due to race + condition + - gfs2: Fix inode height consistency check + - scsi: ufs: ufs-pci: Add support for Intel Lunar Lake + - ext4: set goal start correctly in ext4_mb_normalize_request + - ext4: Fix best extent lstart adjustment logic in ext4_mb_new_inode_pa() + - f2fs: fix to drop all dirty pages during umount() if cp_error is set + - f2fs: fix to check readonly condition correctly + - samples/bpf: Fix fout leak in hbm's run_bpf_prog + - bpf: Add preempt_count_{sub,add} into btf id deny list + - wifi: iwlwifi: pcie: fix possible NULL pointer dereference + - wifi: iwlwifi: pcie: Fix integer overflow in iwl_write_to_user_buf + - null_blk: Always check queue mode setting from configfs + - wifi: iwlwifi: dvm: Fix memcpy: detected field-spanning write backtrace + - wifi: ath11k: Fix SKB corruption in REO destination ring + - nbd: fix incomplete validation of ioctl arg + - ipvs: Update width of source for ip_vs_sync_conn_options + - Bluetooth: btintel: Add LE States quirk support + - Bluetooth: hci_bcm: Fall back to getting bdaddr from EFI if not set + - Bluetooth: L2CAP: fix "bad unlock balance" in l2cap_disconnect_rsp + - HID: logitech-hidpp: Don't use the USB serial for USB devices + - HID: logitech-hidpp: Reconcile USB and Unifying serials + - spi: spi-imx: fix MX51_ECSPI_* macros when cs > 3 + - HID: wacom: generic: Set battery quirk only when we see battery data + - usb: typec: tcpm: fix multiple times discover svids error + - serial: 8250: Reinit port->pm on port specific driver unbind + - mcb-pci: Reallocate memory region to avoid memory overlapping + - sched: Fix KCSAN noinstr violation + - recordmcount: Fix memory leaks in the uwrite function + - RDMA/core: Fix multiple -Warray-bounds warnings + - iommu/arm-smmu-qcom: Limit the SMR groups to 128 + - fs/ntfs3: Fix NULL pointer dereference in 'ni_write_inode' + - fs/ntfs3: Enhance the attribute size check + - fs/ntfs3: Fix NULL dereference in ni_write_inode + - fs/ntfs3: Validate MFT flags before replaying logs + - fs/ntfs3: Add length check in indx_get_root + - fs/ntfs3: Fix a possible null-pointer dereference in ni_clear() + - clk: tegra20: fix gcc-7 constant overflow warning + - iommu/arm-smmu-v3: Acknowledge pri/event queue overflow if any + - iommu/sprd: Release dma buffer to avoid memory leak + - Input: xpad - add constants for GIP interface numbers + - phy: st: miphy28lp: use _poll_timeout functions for waits + - soundwire: qcom: gracefully handle too many ports in DT + - mfd: dln2: Fix memory leak in dln2_probe() + - parisc: Replace regular spinlock with spin_trylock on panic path + - platform/x86: hp-wmi: Support touchpad on/off + - [Config] updateconfigs for X86_PLATFORM_DRIVERS_HP + - platform/x86: Move existing HP drivers to a new hp subdir + - platform/x86: hp-wmi: add micmute to hp_wmi_keymap struct + - xfrm: don't check the default policy if the policy allows the packet + - Revert "Fix XFRM-I support for nested ESP tunnels" + - drm/msm/dp: unregister audio driver during unbind + - drm/msm/dpu: Add INTF_5 interrupts + - drm/msm/dpu: Move non-MDP_TOP INTF_INTR offsets out of hwio header + - drm/msm/dpu: Remove duplicate register defines from INTF + - dt-bindings: display/msm: dsi-controller-main: Document qcom, master-dsi and + qcom, sync-dual-dsi + - ASoC: fsl_micfil: Fix error handler with pm_runtime_enable + - cpupower: Make TSC read per CPU for Mperf monitor + - af_key: Reject optional tunnel/BEET mode templates in outbound policies + - selftests: seg6: disable DAD on IPv6 router cfg for srv6_end_dt4_l3vpn_test + - selftets: seg6: disable rp_filter by default in srv6_end_dt4_l3vpn_test + - net: fec: Better handle pm_runtime_get() failing in .remove() + - net: phy: dp83867: add w/a for packet errors seen with short cables + - ALSA: firewire-digi00x: prevent potential use after free + - ALSA: hda/realtek: Apply HP B&O top speaker profile to Pavilion 15 + - vsock: avoid to close connected socket after the timeout + - tcp: fix possible sk_priority leak in tcp_v4_send_reset() + - serial: arc_uart: fix of_iomap leak in `arc_serial_probe` + - serial: 8250_bcm7271: balance clk_enable calls + - serial: 8250_bcm7271: fix leak in `brcmuart_probe` + - erspan: get the proto with the md version for collect_md + - net: hns3: fix output information incomplete for dumping tx queue info with + debugfs + - net: hns3: fix sending pfc frames after reset issue + - net: hns3: fix reset delay time to avoid configuration timeout + - media: netup_unidvb: fix use-after-free at del_timer() + - SUNRPC: double free xprt_ctxt while still in use + - tracing: Introduce helpers to safely handle dynamic-sized sockaddrs + - SUNRPC: Clean up svc_deferred_class trace events + - SUNRPC: Remove dead code in svc_tcp_release_rqst() + - SUNRPC: Remove svc_rqst::rq_xprt_hlen + - SUNRPC: always free ctxt when freeing deferred request + - SUNRPC: Fix trace_svc_register() call site + - drm/exynos: fix g2d_open/close helper function definitions + - net: nsh: Use correct mac_offset to unwind gso skb in nsh_gso_segment() + - virtio-net: Maintain reverse cleanup order + - virtio_net: Fix error unwinding of XDP initialization + - tipc: add tipc_bearer_min_mtu to calculate min mtu + - tipc: do not update mtu if msg_max is too small in mtu negotiation + - tipc: check the bearer min mtu properly when setting it by netlink + - s390/cio: include subchannels without devices also for evaluation + - net: bcmgenet: Remove phy_stop() from bcmgenet_netif_stop() + - net: bcmgenet: Restore phy_stop() depending upon suspend/close + - wifi: mac80211: fix min center freq offset tracing + - wifi: iwlwifi: mvm: fix cancel_delayed_work_sync() deadlock + - wifi: iwlwifi: mvm: don't trust firmware n_channels + - scsi: storvsc: Don't pass unused PFNs to Hyper-V host + - cassini: Fix a memory leak in the error handling path of cas_init_one() + - net: dsa: mv88e6xxx: Fix mv88e6393x EPC write command offset + - igb: fix bit_shift to be in [1..8] range + - vlan: fix a potential uninit-value in vlan_dev_hard_start_xmit() + - netfilter: nf_tables: fix nft_trans type confusion + - netfilter: nft_set_rbtree: fix null deref on element insertion + - bridge: always declare tunnel functions + - ALSA: usb-audio: Add a sample rate workaround for Line6 Pod Go + - USB: usbtmc: Fix direction for 0-length ioctl control messages + - usb-storage: fix deadlock when a scsi command timeouts more than once + - USB: UHCI: adjust zhaoxin UHCI controllers OverCurrent bit value + - usb: dwc3: debugfs: Resume dwc3 before accessing registers + - usb: gadget: u_ether: Fix host MAC address case + - usb: typec: altmodes/displayport: fix pin_assignment_show + - xhci-pci: Only run d3cold avoidance quirk for s2idle + - xhci: Fix incorrect tracking of free space on transfer rings + - ALSA: hda: Fix Oops by 9.1 surround channel names + - ALSA: hda: Add NVIDIA codec IDs a3 through a7 to patch table + - ALSA: hda/realtek: Add quirk for Clevo L140AU + - ALSA: hda/realtek: Add a quirk for HP EliteDesk 805 + - ALSA: hda/realtek: Add quirk for 2nd ASUS GU603 + - can: j1939: recvmsg(): allow MSG_CMSG_COMPAT flag + - can: isotp: recvmsg(): allow MSG_CMSG_COMPAT flag + - can: kvaser_pciefd: Set CAN_STATE_STOPPED in kvaser_pciefd_stop() + - can: kvaser_pciefd: Call request_irq() before enabling interrupts + - can: kvaser_pciefd: Empty SRB buffer in probe + - can: kvaser_pciefd: Clear listen-only bit if not explicitly requested + - can: kvaser_pciefd: Do not send EFLUSH command on TFD interrupt + - can: kvaser_pciefd: Disable interrupts in probe error path + - SMB3: Close all deferred handles of inode in case of handle lease break + - SMB3: drop reference to cfile before sending oplock break + - ksmbd: smb2: Allow messages padded to 8byte boundary + - ksmbd: allocate one more byte for implied bcc[0] + - ksmbd: fix wrong UserName check in session_user + - ksmbd: fix global-out-of-bounds in smb2_find_context_vals + - statfs: enforce statfs[64] structure initialization + - serial: Add support for Advantech PCI-1611U card + - serial: 8250_exar: Add support for USR298x PCI Modems + - serial: qcom-geni: fix enabling deactivated interrupt + - thunderbolt: Clear registers properly when auto clear isn't in use + - vc_screen: reload load of struct vc_data pointer in vcs_write() to avoid UAF + - ceph: force updating the msg pointer in non-split case + - powerpc/iommu: Incorrect DDW Table is referenced for SR-IOV device + - tpm/tpm_tis: Disable interrupts for more Lenovo devices + - powerpc/64s/radix: Fix soft dirty tracking + - nilfs2: fix use-after-free bug of nilfs_root in nilfs_evict_inode() + - s390/qdio: fix do_sqbs() inline assembly constraint + - HID: wacom: Force pen out of prox if no events have been received in a while + - HID: wacom: Add new Intuos Pro Small (PTH-460) device IDs + - HID: wacom: add three styli to wacom_intuos_get_tool_type + - Linux 5.15.113 + * Jammy update: v5.15.112 upstream stable release (LP: #2026607) + - ring-buffer: Ensure proper resetting of atomic variables in + ring_buffer_reset_online_cpus + - crypto: ccp - Clear PSP interrupt status register before calling handler + - ubifs: Fix AA deadlock when setting xattr for encrypted file + - ubifs: Fix memory leak in do_rename + - bus: mhi: Move host MHI code to "host" directory + - bus: mhi: host: Remove duplicate ee check for syserr + - bus: mhi: host: Use mhi_tryset_pm_state() for setting fw error state + - bus: mhi: host: Range check CHDBOFF and ERDBOFF + - mailbox: zynq: Switch to flexible array to simplify code + - mailbox: zynqmp: Fix counts of child nodes + - ASoC: soc-pcm: use GFP_ATOMIC for dpcm structure + - ASoC: soc-pcm: align BE 'atomicity' with that of the FE + - ASoC: soc-pcm: Fix and cleanup DPCM locking + - ASoC: soc-pcm: serialize BE triggers + - ASoC: soc-pcm: test refcount before triggering + - ASoC: soc-pcm: fix BE handling of PAUSE_RELEASE + - fs/ntfs3: Fix null-ptr-deref on inode->i_op in ntfs_lookup() + - drm/hyperv: Don't overwrite dirt_needed value set by host + - scsi: qedi: Fix use after free bug in qedi_remove() + - net/ncsi: clear Tx enable mode when handling a Config required AEN + - net/sched: cls_api: remove block_cb from driver_list before freeing + - sit: update dev->needed_headroom in ipip6_tunnel_bind_dev() + - selftests: srv6: make srv6_end_dt46_l3vpn_test more robust + - net: dsa: mv88e6xxx: add mv88e6321 rsvd2cpu + - writeback: fix call of incorrect macro + - watchdog: dw_wdt: Fix the error handling path of dw_wdt_drv_probe() + - RISC-V: mm: Enable huge page support to kernel_page_present() function + - net/sched: act_mirred: Add carrier check + - r8152: fix flow control issue of RTL8156A + - r8152: fix the poor throughput for 2.5G devices + - r8152: move setting r8153b_rx_agg_chg_indicate() + - sfc: Fix module EEPROM reporting for QSFP modules + - rxrpc: Fix hard call timeout units + - octeontx2-af: Secure APR table update with the lock + - octeontx2-af: Skip PFs if not enabled + - octeontx2-pf: Disable packet I/O for graceful exit + - octeontx2-vf: Detach LF resources on probe cleanup + - ionic: remove noise from ethtool rxnfc error msg + - ethtool: Fix uninitialized number of lanes + - ionic: catch failure from devlink_alloc + - af_packet: Don't send zero-byte data in packet_sendmsg_spkt(). + - drm/amdgpu: add a missing lock for AMDGPU_SCHED + - ALSA: caiaq: input: Add error handling for unsupported input methods in + `snd_usb_caiaq_input_init` + - net: dsa: mt7530: fix corrupt frames using trgmii on 40 MHz XTAL MT7621 + - virtio_net: split free_unused_bufs() + - virtio_net: suppress cpu stall when free_unused_bufs + - net: enetc: check the index of the SFI rather than the handle + - perf scripts intel-pt-events.py: Fix IPC output for Python 2 + - perf vendor events power9: Remove UTF-8 characters from JSON files + - perf pmu: zfree() expects a pointer to a pointer to zero it after freeing + its contents + - perf map: Delete two variable initialisations before null pointer checks in + sort__sym_from_cmp() + - crypto: sun8i-ss - Fix a test in sun8i_ss_setup_ivs() + - crypto: engine - check if BH is disabled during completion + - crypto: api - Add scaffolding to change completion function signature + - crypto: engine - Use crypto_request_complete + - crypto: engine - fix crypto_queue backlog handling + - perf symbols: Fix return incorrect build_id size in elf_read_build_id() + - perf evlist: Refactor evlist__for_each_cpu() + - perf stat: Separate bperf from bpf_profiler + - btrfs: fix btrfs_prev_leaf() to not return the same key twice + - btrfs: zoned: fix wrong use of bitops API in btrfs_ensure_empty_zones + - btrfs: fix encoded write i_size corruption with no-holes + - btrfs: don't free qgroup space unless specified + - btrfs: zero the buffer before marking it dirty in btrfs_redirty_list_add + - btrfs: print-tree: parent bytenr must be aligned to sector size + - btrfs: fix space cache inconsistency after error loading it from disk + - cifs: fix pcchunk length type in smb2_copychunk_range + - cifs: release leases for deferred close handles when freezing + - platform/x86: touchscreen_dmi: Add upside-down quirk for GDIX1002 ts on the + Juno Tablet + - platform/x86: touchscreen_dmi: Add info for the Dexp Ursus KX210i + - inotify: Avoid reporting event with invalid wd + - smb3: fix problem remounting a share after shutdown + - SMB3: force unmount was failing to close deferred close files + - sh: math-emu: fix macro redefined warning + - sh: mcount.S: fix build error when PRINTK is not enabled + - sh: init: use OF_EARLY_FLATTREE for early init + - sh: nmi_debug: fix return value of __setup handler + - remoteproc: stm32: Call of_node_put() on iteration error + - remoteproc: st: Call of_node_put() on iteration error + - remoteproc: imx_rproc: Call of_node_put() on iteration error + - ARM: dts: exynos: fix WM8960 clock name in Itop Elite + - ARM: dts: s5pv210: correct MIPI CSIS clock name + - drm/bridge: lt8912b: Fix DSI Video Mode + - drm/msm: fix NULL-deref on snapshot tear down + - drm/msm: fix NULL-deref on irq uninstall + - f2fs: fix potential corruption when moving a directory + - drm/panel: otm8009a: Set backlight parent to panel device + - drm/amd/display: fix flickering caused by S/G mode + - drm/amdgpu: fix an amdgpu_irq_put() issue in gmc_v9_0_hw_fini() + - drm/amdgpu/gfx: disable gfx9 cp_ecc_error_irq only when enabling legacy gfx + ras + - drm/amdgpu: Fix vram recover doesn't work after whole GPU reset (v2) + - drm/amdgpu: disable sdma ecc irq only when sdma RAS is enabled in suspend + - HID: wacom: Set a default resolution for older tablets + - HID: wacom: insert timestamp to packed Bluetooth (BT) events + - fs/ntfs3: Refactoring of various minor issues + - ASoC: soc-pcm: Fix DPCM lockdep warning due to nested stream locks + - ASoC: soc-compress: Inherit atomicity from DAI link for Compress FE + - ASoC: soc-pcm: Move debugfs removal out of spinlock + - ASoC: DPCM: Don't pick up BE without substream + - ASoC: soc-pcm.c: call __soc_pcm_close() in soc_pcm_close() + - drm/i915/dg2: Support 4k@30 on HDMI + - drm/i915/dg2: Add additional HDMI pixel clock frequencies + - drm/i915/dg2: Add HDMI pixel clock frequencies 267.30 and 319.89 MHz + - drm/msm: Remove struct_mutex usage + - drm/msm/adreno: fix runtime PM imbalance at gpu load + - drm/amd/display: Refine condition of cursor visibility for pipe-split + - drm/amd/display: Add NULL plane_state check for cursor disable logic + - wifi: rtw88: rtw8821c: Fix rfe_option field width + - ksmbd: set RSS capable in FSCTL_QUERY_NETWORK_INTERFACE_INFO + - ksmbd: fix multi session connection failure + - ksmbd: replace sessions list in connection with xarray + - ksmbd: add channel rwlock + - ksmbd: fix kernel oops from idr_remove() + - ksmbd: fix racy issue while destroying session on multichannel + - ksmbd: fix deadlock in ksmbd_find_crypto_ctx() + - ksmbd: not allow guest user on multichannel + - locking/rwsem: Add __always_inline annotation to __down_read_common() and + inlined callers + - ext4: fix WARNING in mb_find_extent + - ext4: avoid a potential slab-out-of-bounds in ext4_group_desc_csum + - ext4: fix data races when using cached status extents + - ext4: check iomap type only if ext4_iomap_begin() does not fail + - ext4: improve error recovery code paths in __ext4_remount() + - ext4: improve error handling from ext4_dirhash() + - ext4: fix deadlock when converting an inline directory in nojournal mode + - ext4: add bounds checking in get_max_inline_xattr_value_size() + - ext4: bail out of ext4_xattr_ibody_get() fails for any reason + - ext4: remove a BUG_ON in ext4_mb_release_group_pa() + - ext4: fix invalid free tracking in ext4_xattr_move_to_block() + - drm/msm/adreno: adreno_gpu: Use suspend() instead of idle() on load error + - serial: 8250: Fix serial8250_tx_empty() race with DMA Tx + - drbd: correctly submit flush bio on barrier + - RISC-V: Fix up a cherry-pick warning in setup_vm_final() + - drm/amd/display: Fix hang when skipping modeset + - Linux 5.15.112 + * CVE-2023-31084 // CVE-2023-31084 was assigned to this bug. + - media: dvb-core: Fix kernel WARNING for blocking operation in wait_event*() + * CVE-2023-3776 + - net/sched: cls_fw: Fix improper refcount update leads to use-after-free + + -- Tim Gardner Mon, 28 Aug 2023 07:24:02 -0600 + +linux-azure-5.15 (5.15.0-1045.52~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1045.52~20.04.1 -proposed tracker + (LP: #2030552) + + [ Ubuntu: 5.15.0-1045.52 ] + + * jammy/linux-azure: 5.15.0-1045.52 -proposed tracker (LP: #2030553) + * jammy/linux: 5.15.0-82.91 -proposed tracker (LP: #2031147) + * libgnutls report "trap invalid opcode" when trying to install packages over + https (LP: #2031093) + - [Config]: disable CONFIG_GDS_FORCE_MITIGATION + * jammy/linux: 5.15.0-80.87 -proposed tracker (LP: #2030588) + * CVE-2022-40982 + - x86/mm: Initialize text poking earlier + - x86/mm: fix poking_init() for Xen PV guests + - x86/mm: Use mm_alloc() in poking_init() + - mm: Move mm_cachep initialization to mm_init() + - init: Provide arch_cpu_finalize_init() + - x86/cpu: Switch to arch_cpu_finalize_init() + - ARM: cpu: Switch to arch_cpu_finalize_init() + - sparc/cpu: Switch to arch_cpu_finalize_init() + - um/cpu: Switch to arch_cpu_finalize_init() + - init: Remove check_bugs() leftovers + - init: Invoke arch_cpu_finalize_init() earlier + - init, x86: Move mem_encrypt_init() into arch_cpu_finalize_init() + - x86/init: Initialize signal frame size late + - x86/fpu: Remove cpuinfo argument from init functions + - x86/fpu: Mark init functions __init + - x86/fpu: Move FPU initialization into arch_cpu_finalize_init() + - x86/xen: Fix secondary processors' FPU initialization + - x86/speculation: Add Gather Data Sampling mitigation + - x86/speculation: Add force option to GDS mitigation + - x86/speculation: Add Kconfig option for GDS + - KVM: Add GDS_NO support to KVM + - Documentation/x86: Fix backwards on/off logic about YMM support + - [Config]: Enable CONFIG_ARCH_HAS_CPU_FINALIZE_INIT and + CONFIG_GDS_FORCE_MITIGATION + * CVE-2023-21400 + - io_uring: ensure IOPOLL locks around deferred work + * CVE-2023-4015 + - netfilter: nf_tables: add NFT_TRANS_PREPARE_ERROR to deal with bound + set/chain + - netfilter: nf_tables: unbind non-anonymous set if rule construction fails + - netfilter: nf_tables: skip immediate deactivate in _PREPARE_ERROR + * CVE-2023-3777 + - netfilter: nf_tables: skip bound chain on rule flush + * CVE-2023-3995 + - netfilter: nf_tables: disallow rule addition to bound chain via + NFTA_RULE_CHAIN_ID + * CVE-2023-20593 + - x86/cpu/amd: Move the errata checking functionality up + - x86/cpu/amd: Add a Zenbleed fix + * CVE-2023-3776 + - net/sched: cls_fw: Fix improper refcount update leads to use-after-free + * CVE-2023-4004 + - netfilter: nft_set_pipapo: fix improper element removal + * CVE-2023-3611 + - net/sched: sch_qfq: refactor parsing of netlink parameters + - net/sched: sch_qfq: account for stab overhead in qfq_enqueue + * CVE-2023-3610 + - netfilter: nf_tables: fix chain binding transaction logic + * CVE-2023-3609 + - net/sched: cls_u32: Fix reference counter leak leading to overflow + + [ Ubuntu: 5.15.0-1044.51 ] + + * jammy/linux-azure: 5.15.0-1044.51 -proposed tracker (LP: #2029291) + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + - [Packaging] update variants + + -- Tim Gardner Fri, 18 Aug 2023 06:47:19 -0600 + +linux-azure-5.15 (5.15.0-1043.50~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1043.50~20.04.1 -proposed tracker + (LP: #2026494) + + [ Ubuntu: 5.15.0-1043.50 ] + + * jammy/linux-azure: 5.15.0-1043.50 -proposed tracker (LP: #2026495) + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + - [Packaging] resync getabis + * kdump fails on big arm64 systems when offset is not specified (LP: #2024479) + - arm64: mm: use IS_ENABLED(CONFIG_KEXEC_CORE) instead of #ifdef + - arm64: kdump: Reimplement crashkernel=X + - docs: kdump: Update the crashkernel description for arm64 + - arm64: kdump: Do not allocate crash low memory if not needed + - arm64/mm: Define defer_reserve_crashkernel() + - arm64: kdump: Provide default size when crashkernel=Y, low is not specified + - arm64: kdump: Support crashkernel=X fall back to reserve region above DMA + zones + * Azure: MANA: Fix doorbell access for receives (LP: #2027615) + - SAUCE: net: mana: Batch ringing RX queue doorbell on receiving packets + - SAUCE: net: mana: Use the correct WQE count for ringing RQ doorbell + * [Azure][MANA][InfinitiBand] Features Support and InfiniBand for MANA + (LP: #2024917) + - bpf: Let bpf_warn_invalid_xdp_action() report more info + - PCI: Move PCI_VENDOR_ID_MICROSOFT/PCI_DEVICE_ID_HYPERV_VIDEO definitions to + pci_ids.h + - net: mana: Assign interrupts to CPUs based on NUMA nodes + - net: mana: Add support for auxiliary device + - net: mana: Record the physical address for doorbell page region + - net: mana: Handle vport sharing between devices + - net: mana: Set the DMA device max segment size + - net: mana: Export Work Queue functions for use by RDMA driver + - net: mana: Record port number in netdev + - net: mana: Move header files to a common location + - net: mana: Define max values for SGL entries + - net: mana: Define and process GDMA response code GDMA_STATUS_MORE_ENTRIES + - net: mana: Define data structures for allocating doorbell page from GDMA + - net: mana: Define data structures for protection domain and memory + registration + - net: mana: Fix return type of mana_start_xmit() + - RDMA/mana_ib: Add a driver for Microsoft Azure Network Adapter + - RDMA/mana: Remove redefinition of basic u64 type + - RDMA/mana_ib: Prevent array underflow in mana_ib_create_qp_raw() + - net: mana: Fix accessing freed irq affinity_hint + - [Config] azure: Enable MANA_INFINIBAND + * [Azure] Fix VM crash/hang issues due to fast VF add/remove events + (LP: #2023071) // Case [Azure] Fix VM crash/hang issues due to fast VF + add/remove events (LP: #2023594) + - PCI: hv: Fix a race condition bug in hv_pci_query_relations() + - PCI: hv: Fix a race condition in hv_irq_unmask() that can cause panic + - PCI: hv: Remove the useless hv_pcichild_state from struct hv_pci_dev + - Revert "PCI: hv: Fix a timing issue which causes kdump to fail occasionally" + - PCI: hv: Add a per-bus mutex state_lock + - PCI: hv: Use async probing to reduce boot time + * [Azure][MANA][VLANTagging] Support for VLAN Tagging for MANA (LP: #2023695) + - net: mana: Add support for vlan tagging + * jammy/linux: 5.15.0-79.86 -proposed tracker (LP: #2026531) + * Jammy update: v5.15.111 upstream stable release (LP: #2025095) + - ASOC: Intel: sof_sdw: add quirk for Intel 'Rooks County' NUC M15 + - ASoC: soc-pcm: fix hw->formats cleared by soc_pcm_hw_init() for dpcm + - x86/hyperv: Block root partition functionality in a Confidential VM + - iio: adc: palmas_gpadc: fix NULL dereference on rmmod + - ASoC: Intel: bytcr_rt5640: Add quirk for the Acer Iconia One 7 B1-750 + - selftests mount: Fix mount_setattr_test builds failed + - asm-generic/io.h: suppress endianness warnings for readq() and writeq() + - x86/cpu: Add model number for Intel Arrow Lake processor + - wireguard: timers: cast enum limits members to int in prints + - wifi: mt76: mt7921e: Set memory space enable in PCI_COMMAND if unset + - arm64: Always load shadow stack pointer directly from the task struct + - arm64: Stash shadow stack pointer in the task struct on interrupt + - PCI: pciehp: Fix AB-BA deadlock between reset_lock and device_lock + - PCI: qcom: Fix the incorrect register usage in v2.7.0 config + - IMA: allow/fix UML builds + - USB: dwc3: fix runtime pm imbalance on probe errors + - USB: dwc3: fix runtime pm imbalance on unbind + - hwmon: (k10temp) Check range scale when CUR_TEMP register is read-write + - hwmon: (adt7475) Use device_property APIs when configuring polarity + - posix-cpu-timers: Implement the missing timer_wait_running callback + - blk-mq: release crypto keyslot before reporting I/O complete + - blk-crypto: make blk_crypto_evict_key() return void + - blk-crypto: make blk_crypto_evict_key() more robust + - ext4: use ext4_journal_start/stop for fast commit transactions + - staging: iio: resolver: ads1210: fix config mode + - tty: Prevent writing chars during tcsetattr TCSADRAIN/FLUSH + - xhci: fix debugfs register accesses while suspended + - tick/nohz: Fix cpu_is_hotpluggable() by checking with nohz subsystem + - MIPS: fw: Allow firmware to pass a empty env + - ipmi:ssif: Add send_retries increment + - ipmi: fix SSIF not responding under certain cond. + - kheaders: Use array declaration instead of char + - wifi: mt76: add missing locking to protect against concurrent rx/status + calls + - pwm: meson: Fix axg ao mux parents + - pwm: meson: Fix g12a ao clk81 name + - soundwire: qcom: correct setting ignore bit on v1.5.1 + - pinctrl: qcom: lpass-lpi: set output value before enabling output + - ring-buffer: Sync IRQ works before buffer destruction + - crypto: api - Demote BUG_ON() in crypto_unregister_alg() to a WARN_ON() + - crypto: safexcel - Cleanup ring IRQ workqueues on load failure + - rcu: Avoid stack overflow due to __rcu_irq_enter_check_tick() being kprobe- + ed + - reiserfs: Add security prefix to xattr name in reiserfs_security_write() + - KVM: nVMX: Emulate NOPs in L2, and PAUSE if it's not intercepted + - relayfs: fix out-of-bounds access in relay_file_read + - writeback, cgroup: fix null-ptr-deref write in bdi_split_work_to_wbs + - ksmbd: call rcu_barrier() in ksmbd_server_exit() + - ksmbd: fix NULL pointer dereference in smb2_get_info_filesystem() + - ksmbd: fix memleak in session setup + - i2c: omap: Fix standard mode false ACK readings + - riscv: mm: remove redundant parameter of create_fdt_early_page_table + - tracing: Fix permissions for the buffer_percent file + - iommu/amd: Fix "Guest Virtual APIC Table Root Pointer" configuration in IRTE + - ubifs: Fix memleak when insert_old_idx() failed + - ubi: Fix return value overwrite issue in try_write_vid_and_data() + - ubifs: Free memory for tmpfile name + - xfs: don't consider future format versions valid + - sound/oss/dmasound: fix build when drivers are mixed =y/=m + - rcu: Fix missing TICK_DEP_MASK_RCU_EXP dependency check + - selftests/resctrl: Return NULL if malloc_and_init_memory() did not alloc mem + - selftests/resctrl: Extend CPU vendor detection + - selftests/resctrl: Move ->setup() call outside of test specific branches + - selftests/resctrl: Allow ->setup() to return errors + - selftests/resctrl: Check for return value after write_schemata() + - selinux: fix Makefile dependencies of flask.h + - selinux: ensure av_permissions.h is built when needed + - tpm, tpm_tis: Do not skip reset of original interrupt vector + - tpm, tpm_tis: Claim locality before writing TPM_INT_ENABLE register + - tpm, tpm_tis: Disable interrupts if tpm_tis_probe_irq() failed + - tpm, tpm_tis: Claim locality before writing interrupt registers + - tpm, tpm: Implement usage counter for locality + - tpm, tpm_tis: Claim locality when interrupts are reenabled on resume + - erofs: stop parsing non-compact HEAD index if clusterofs is invalid + - erofs: fix potential overflow calculating xattr_isize + - drm/rockchip: Drop unbalanced obj unref + - drm/vgem: add missing mutex_destroy + - drm/probe-helper: Cancel previous job before starting new one + - tools/x86/kcpuid: Fix avx512bw and avx512lvl fields in Fn00000007 + - soc: ti: pm33xx: Fix refcount leak in am33xx_pm_probe + - arm64: dts: renesas: r8a77990: Remove bogus voltages from OPP table + - arm64: dts: renesas: r8a774c0: Remove bogus voltages from OPP table + - drm/msm/disp/dpu: check for crtc enable rather than crtc active to release + shared resources + - EDAC/skx: Fix overflows on the DRAM row address mapping arrays + - regulator: core: Shorten off-on-delay-us for always-on/boot-on by time since + booted + - arm64: dts: ti: k3-j721e-main: Remove ti,strobe-sel property + - arm64: dts: broadcom: bcm4908: add DT for Netgear RAXE500 + - arm64: dts: Add DTS files for bcmbca SoC BCM63158 + - arm64: dts: Add DTS files for bcmbca SoC BCM4912 + - ARM64: dts: Add DTS files for bcmbca SoC BCM6858 + - arm64: dts: Add base DTS file for bcmbca device Asus GT-AX6000 + - arm64: dts: Move BCM4908 dts to bcmbca folder + - arm64: dts: broadcom: bcmbca: bcm4908: fix NAND interrupt name + - arm64: dts: broadcom: bcmbca: bcm4908: fix procmon nodename + - arm64: dts: qcom: msm8998: Fix stm-stimulus-base reg name + - arm64: dts: qcom: sdm845: correct dynamic power coefficients + - arm64: dts: qcom: sdm845: Fix the PCI I/O port range + - arm64: dts: qcom: msm8998: Fix the PCI I/O port range + - arm64: dts: qcom: ipq8074: Fix the PCI I/O port range + - arm64: dts: qcom: ipq6018: Fix the PCI I/O port range + - arm64: dts: qcom: msm8996: Fix the PCI I/O port range + - arm64: dts: qcom: sm8250: Fix the PCI I/O port range + - ARM: dts: qcom: ipq4019: Fix the PCI I/O port range + - ARM: dts: qcom: ipq8064: reduce pci IO size to 64K + - ARM: dts: qcom: ipq8064: Fix the PCI I/O port range + - x86/MCE/AMD: Use an u64 for bank_map + - media: bdisp: Add missing check for create_workqueue + - media: av7110: prevent underflow in write_ts_to_decoder() + - firmware: qcom_scm: Clear download bit during reboot + - drm/bridge: adv7533: Fix adv7533_mode_valid for adv7533 and adv7535 + - media: max9286: Free control handler + - drm/msm/adreno: Defer enabling runpm until hw_init() + - drm/msm/adreno: drop bogus pm_runtime_set_active() + - drm: msm: adreno: Disable preemption on Adreno 510 + - drm/amd/display/dc/dce60/Makefile: Fix previous attempt to silence known + override-init warnings + - ACPI: processor: Fix evaluating _PDC method when running as Xen dom0 + - mmc: sdhci-of-esdhc: fix quirk to ignore command inhibit for data + - drm: rcar-du: Fix a NULL vs IS_ERR() bug + - ARM: dts: gta04: fix excess dma channel usage + - firmware: arm_scmi: Fix xfers allocation on Rx channel + - ACPI: VIOT: Initialize the correct IOMMU fwspec + - drm/lima/lima_drv: Add missing unwind goto in lima_pdev_probe() + - mailbox: mpfs: switch to txdone_poll + - arm64: dts: qcom: sc7180-trogdor-lazor: correct trackpad supply + - arm64: dts: qcom: msm8994-kitakami: drop unit address from PMI8994 regulator + - arm64: dts: qcom: msm8994-msft-lumia-octagon: drop unit address from PMI8994 + regulator + - drm/ttm: optimize pool allocations a bit v2 + - drm/ttm/pool: Fix ttm_pool_alloc error path + - regulator: core: Consistently set mutex_owner when using + ww_mutex_lock_slow() + - regulator: core: Avoid lockdep reports when resolving supplies + - x86/apic: Fix atomic update of offset in reserve_eilvt_offset() + - media: rkvdec: fix use after free bug in rkvdec_remove + - media: dm1105: Fix use after free bug in dm1105_remove due to race condition + - media: saa7134: fix use after free bug in saa7134_finidev due to race + condition + - media: rcar_fdp1: Make use of the helper function + devm_platform_ioremap_resource() + - media: rcar_fdp1: Fix the correct variable assignments + - platform: Provide a remove callback that returns no value + - media: rcar_fdp1: Convert to platform remove callback returning void + - media: rcar_fdp1: Fix refcount leak in probe and remove function + - drm/amd/display: Fix potential null dereference + - media: rc: gpio-ir-recv: Fix support for wake-up + - media: venus: dec: Fix handling of the start cmd + - regulator: stm32-pwr: fix of_iomap leak + - x86/ioapic: Don't return 0 from arch_dynirq_lower_bound() + - arm64: kgdb: Set PSTATE.SS to 1 to re-enable single-step + - debugobject: Prevent init race with static objects + - drm/i915: Make intel_get_crtc_new_encoder() less oopsy + - tick/common: Align tick period with the HZ tick. + - cpufreq: use correct unit when verify cur freq + - hwmon: (pmbus/fsp-3y) Fix functionality bitmask in FSP-3Y YM-2151E + - wifi: ath6kl: minor fix for allocation size + - wifi: ath9k: hif_usb: fix memory leak of remain_skbs + - wifi: ath5k: fix an off by one check in ath5k_eeprom_read_freq_list() + - wifi: brcmfmac: support CQM RSSI notification with older firmware + - wifi: ath6kl: reduce WARN to dev_dbg() in callback + - tools: bpftool: Remove invalid \' json escape + - wifi: rtw88: mac: Return the original error from rtw_pwr_seq_parser() + - wifi: rtw88: mac: Return the original error from rtw_mac_power_switch() + - bpf: take into account liveness when propagating precision + - bpf: fix precision propagation verbose logging + - scm: fix MSG_CTRUNC setting condition for SO_PASSSEC + - selftests/bpf: Fix a fd leak in an error path in network_helpers.c + - bpf: Remove misleading spec_v1 check on var-offset stack read + - net: pcs: xpcs: remove double-read of link state when using AN + - vlan: partially enable SIOCSHWTSTAMP in container + - net/packet: annotate accesses to po->xmit + - net/packet: convert po->origdev to an atomic flag + - net/packet: convert po->auxdata to an atomic flag + - scsi: target: Fix multiple LUN_RESET handling + - scsi: target: iscsit: Fix TAS handling during conn cleanup + - scsi: megaraid: Fix mega_cmd_done() CMDID_INT_CMDS + - f2fs: handle dqget error in f2fs_transfer_project_quota() + - f2fs: enforce single zone capacity + - f2fs: apply zone capacity to all zone type + - f2fs: compress: fix to call f2fs_wait_on_page_writeback() in + f2fs_write_raw_pages() + - crypto: caam - Clear some memory in instantiate_rng + - crypto: sa2ul - Select CRYPTO_DES + - wifi: rtlwifi: fix incorrect error codes in rtl_debugfs_set_write_rfreg() + - wifi: rtlwifi: fix incorrect error codes in rtl_debugfs_set_write_reg() + - wifi: rt2x00: Fix memory leak when handling surveys + - net: qrtr: correct types of trace event parameters + - selftests: xsk: Disable IPv6 on VETH1 + - selftests/bpf: Wait for receive in cg_storage_multi test + - bpftool: Fix bug for long instructions in program CFG dumps + - crypto: drbg - make drbg_prepare_hrng() handle jent instantiation errors + - crypto: drbg - Only fail when jent is unavailable in FIPS mode + - xsk: Fix unaligned descriptor validation + - f2fs: fix to avoid use-after-free for cached IPU bio + - scsi: lpfc: Fix ioremap issues in lpfc_sli4_pci_mem_setup() + - net: ethernet: stmmac: dwmac-rk: fix optional phy regulator handling + - bpf, sockmap: fix deadlocks in the sockhash and sockmap + - nvmet: use i_size_read() to set size for file-ns + - nvmet: move the call to nvmet_ns_changed out of nvmet_ns_revalidate + - nvmet: fix error handling in nvmet_execute_identify_cns_cs_ns() + - nvmet: fix Identify Namespace handling + - nvmet: fix Identify Controller handling + - nvmet: fix Identify Active Namespace ID list handling + - nvmet: fix I/O Command Set specific Identify Controller + - nvme: handle the persistent internal error AER + - nvme: fix async event trace event + - nvme-fcloop: fix "inconsistent {IN-HARDIRQ-W} -> {HARDIRQ-ON-W} usage" + - selftests/bpf: Fix leaked bpf_link in get_stackid_cannot_attach + - bpf, sockmap: Revert buggy deadlock fix in the sockhash and sockmap + - md: drop queue limitation for RAID1 and RAID10 + - md: raid10 add nowait support + - md/raid10: factor out code from wait_barrier() to stop_waiting_barrier() + - md/raid10: fix task hung in raid10d + - md/raid10: fix leak of 'r10bio->remaining' for recovery + - md/raid10: fix memleak for 'conf->bio_split' + - md/raid10: fix memleak of md thread + - md/raid10: don't call bio_start_io_acct twice for bio which experienced read + error + - wifi: iwlwifi: yoyo: skip dump correctly on hw error + - wifi: iwlwifi: yoyo: Fix possible division by zero + - wifi: iwlwifi: mvm: initialize seq variable + - wifi: iwlwifi: fw: move memset before early return + - jdb2: Don't refuse invalidation of already invalidated buffers + - wifi: iwlwifi: make the loop for card preparation effective + - wifi: mt76: handle failure of vzalloc in mt7615_coredump_work + - wifi: mt76: add flexible polling wait-interval support + - wifi: mt76: mt7921e: fix probe timeout after reboot + - wifi: mt76: fix 6GHz high channel not be scanned + - wifi: mt76: mt7921e: improve reliability of dma reset + - wifi: iwlwifi: mvm: check firmware response size + - wifi: iwlwifi: fw: fix memory leak in debugfs + - ixgbe: Allow flow hash to be set via ethtool + - ixgbe: Enable setting RSS table to default values + - net/mlx5: E-switch, Don't destroy indirect table in split rule + - net: stmmac:fix system hang when setting up tag_8021q VLAN for DSA ports + - bpf: Don't EFAULT for getsockopt with optval=NULL + - netfilter: nf_tables: don't write table validation state without mutex + - net/sched: sch_fq: fix integer overflow of "credit" + - ipv4: Fix potential uninit variable access bug in __ip_make_skb() + - netlink: Use copy_to_user() for optval in netlink_getsockopt(). + - net: amd: Fix link leak when verifying config failed + - tcp/udp: Fix memleaks of sk and zerocopy skbs with TX timestamp. + - ipmi: ASPEED_BT_IPMI_BMC: select REGMAP_MMIO instead of depending on it + - drivers: staging: rtl8723bs: Fix locking in _rtw_join_timeout_handler() + - drivers: staging: rtl8723bs: Fix locking in rtw_scan_timeout_handler() + - pstore: Revert pmsg_lock back to a normal mutex + - usb: host: xhci-rcar: remove leftover quirk handling + - usb: dwc3: gadget: Change condition for processing suspend event + - serial: stm32: re-introduce an irq flag condition in usart_receive_chars + - serial: stm32: Re-assert RTS/DE GPIO in RS485 mode only if more data are + transmitted + - fpga: bridge: fix kernel-doc parameter description + - iio: light: max44009: add missing OF device matching + - serial: 8250_bcm7271: Fix arbitration handling + - spi: spi-imx: using pm_runtime_resume_and_get instead of pm_runtime_get_sync + - spi: imx: Don't skip cleanup in remove's error path + - usb: gadget: udc: renesas_usb3: Fix use after free bug in + renesas_usb3_remove due to race condition + - PCI: imx6: Install the fault handler only on compatible match + - ASoC: es8316: Handle optional IRQ assignment + - linux/vt_buffer.h: allow either builtin or modular for macros + - spi: qup: Don't skip cleanup in remove's error path + - spi: fsl-spi: Fix CPM/QE mode Litte Endian + - vmci_host: fix a race condition in vmci_host_poll() causing GPF + - of: Fix modalias string generation + - PCI/EDR: Clear Device Status after EDR error recovery + - ia64: mm/contig: fix section mismatch warning/error + - ia64: salinfo: placate defined-but-not-used warning + - scripts/gdb: bail early if there are no clocks + - scripts/gdb: bail early if there are no generic PD + - HID: amd_sfh: Add support for shutdown operation + - coresight: etm_pmu: Set the module field + - ASoC: fsl_mqs: move of_node_put() to the correct location + - spi: cadence-quadspi: fix suspend-resume implementations + - i2c: cadence: cdns_i2c_master_xfer(): Fix runtime PM leak on error path + - scripts/gdb: raise error with reduced debugging information + - uapi/linux/const.h: prefer ISO-friendly __typeof__ + - sh: sq: Fix incorrect element size for allocating bitmap buffer + - usb: gadget: tegra-xudc: Fix crash in vbus_draw + - usb: chipidea: fix missing goto in `ci_hdrc_probe` + - usb: mtu3: fix kernel panic at qmu transfer done irq handler + - firmware: stratix10-svc: Fix an NULL vs IS_ERR() bug in probe + - tty: serial: fsl_lpuart: adjust buffer length to the intended size + - serial: 8250: Add missing wakeup event reporting + - staging: rtl8192e: Fix W_DISABLE# does not work after stop/start + - spmi: Add a check for remove callback when removing a SPMI driver + - virtio_ring: don't update event idx on get_buf + - macintosh/windfarm_smu_sat: Add missing of_node_put() + - powerpc/mpc512x: fix resource printk format warning + - powerpc/wii: fix resource printk format warnings + - powerpc/sysdev/tsi108: fix resource printk format warnings + - macintosh: via-pmu-led: requires ATA to be set + - powerpc/rtas: use memmove for potentially overlapping buffer copy + - sched/fair: Use __schedstat_set() in set_next_entity() + - sched: Make struct sched_statistics independent of fair sched class + - sched/fair: Fix inaccurate tally of ttwu_move_affine + - perf/core: Fix hardlockup failure caused by perf throttle + - Revert "objtool: Support addition to set CFA base" + - sched/rt: Fix bad task migration for rt tasks + - clk: at91: clk-sam9x60-pll: fix return value check + - RDMA/siw: Fix potential page_array out of range access + - RDMA/rdmavt: Delete unnecessary NULL check + - workqueue: Introduce show_one_worker_pool and show_one_workqueue. + - workqueue: Fix hung time report of worker pools + - rtc: omap: include header for omap_rtc_power_off_program prototype + - RDMA/mlx4: Prevent shift wrapping in set_user_sq_size() + - rtc: meson-vrtc: Use ktime_get_real_ts64() to get the current time + - fs/ntfs3: Fix memory leak if ntfs_read_mft failed + - fs/ntfs3: Add check for kmemdup + - fs/ntfs3: Fix OOB read in indx_insert_into_buffer + - fs/ntfs3: Fix slab-out-of-bounds read in hdr_delete_de() + - power: supply: generic-adc-battery: fix unit scaling + - clk: add missing of_node_put() in "assigned-clocks" property parsing + - RDMA/siw: Remove namespace check from siw_netdev_event() + - clk: qcom: gcc-sm6115: Mark RCGs shared where applicable + - RDMA/cm: Trace icm_send_rej event before the cm state is reset + - RDMA/srpt: Add a check for valid 'mad_agent' pointer + - IB/hfi1: Fix SDMA mmu_rb_node not being evicted in LRU order + - IB/hfi1: Fix bugs with non-PAGE_SIZE-end multi-iovec user SDMA requests + - NFSv4.1: Always send a RECLAIM_COMPLETE after establishing lease + - clk: qcom: regmap: add PHY clock source implementation + - clk: qcom: gcc-sm8350: fix PCIe PIPE clocks handling + - Input: raspberrypi-ts - fix refcount leak in rpi_ts_probe + - RDMA/mlx5: Fix flow counter query via DEVX + - SUNRPC: remove the maximum number of retries in call_bind_status + - RDMA/mlx5: Use correct device num_ports when modify DC + - clocksource/drivers/davinci: Fix memory leak in davinci_timer_register when + init fails + - openrisc: Properly store r31 to pt_regs on unhandled exceptions + - timekeeping: Fix references to nonexistent ktime_get_fast_ns() + - SMB3: Add missing locks to protect deferred close file list + - SMB3: Close deferred file handles in case of handle lease break + - ext4: fix i_disksize exceeding i_size problem in paritally written case + - ext4: fix use-after-free read in ext4_find_extent for bigalloc + inline + - pinctrl: renesas: r8a779a0: Remove incorrect AVB[01] pinmux configuration + - leds: TI_LMU_COMMON: select REGMAP instead of depending on it + - dmaengine: mv_xor_v2: Fix an error code. + - leds: tca6507: Fix error handling of using fwnode_property_read_string + - pwm: mtk-disp: Disable shadow registers before setting backlight values + - pwm: mtk-disp: Configure double buffering before reading in .get_state() + - phy: tegra: xusb: Add missing tegra_xusb_port_unregister for usb2_port and + ulpi_port + - dma: gpi: remove spurious unlock in gpi_ch_init + - dmaengine: dw-edma: Fix to change for continuous transfer + - dmaengine: dw-edma: Fix to enable to issue dma request on DMA processing + - dmaengine: at_xdmac: Fix concurrency over chan's completed_cookie + - dmaengine: at_xdmac: Fix race for the tx desc callback + - dmaengine: at_xdmac: do not enable all cyclic channels + - thermal/drivers/mediatek: Use devm_of_iomap to avoid resource leak in + mtk_thermal_probe + - mfd: tqmx86: Do not access I2C_DETECT register through io_base + - mfd: tqmx86: Specify IO port register range more precisely + - mfd: tqmx86: Correct board names for TQMxE39x + - afs: Fix updating of i_size with dv jump from server + - parisc: Fix argument pointer in real64_call_asm() + - ALSA: usb-audio: Add quirk for Pioneer DDJ-800 + - nilfs2: do not write dirty data after degenerating to read-only + - nilfs2: fix infinite loop in nilfs_mdt_get_block() + - md/raid10: fix null-ptr-deref in raid10_sync_request + - mtd: core: provide unique name for nvmem device, take two + - mtd: core: fix nvmem error reporting + - mtd: core: fix error path for nvmem provider + - mailbox: zynqmp: Fix IPI isr handling + - mailbox: zynqmp: Fix typo in IPI documentation + - wifi: rtl8xxxu: RTL8192EU always needs full init + - clk: rockchip: rk3399: allow clk_cifout to force clk_cifout_src to reparent + - scripts/gdb: fix lx-timerlist for Python3 + - btrfs: scrub: reject unsupported scrub flags + - s390/dasd: fix hanging blockdevice after request requeue + - ia64: fix an addr to taddr in huge_pte_offset() + - dm verity: fix error handling for check_at_most_once on FEC + - dm clone: call kmem_cache_destroy() in dm_clone_init() error path + - dm integrity: call kmem_cache_destroy() in dm_integrity_init() error path + - dm flakey: fix a crash with invalid table line + - dm ioctl: fix nested locking in table_clear() to remove deadlock concern + - dm: don't lock fs when the map is NULL in process of resume + - perf auxtrace: Fix address filter entire kernel size + - perf intel-pt: Fix CYC timestamps after standalone CBR + - sound/oss/dmasound: fix 'dmasound_setup' defined but not used + - arm64: dts: qcom: sdm845: correct dynamic power coefficients - again + - sched: Fix DEBUG && !SCHEDSTATS warn + - Linux 5.15.111 + * Jammy update: v5.15.110 upstream stable release (LP: #2025090) + - PCI/ASPM: Remove pcie_aspm_pm_state_change() + - selftests/kselftest/runner/run_one(): allow running non-executable files + - KVM: arm64: Retry fault if vma_lookup() results become invalid + - KVM: arm64: Fix buffer overflow in kvm_arm_set_fw_reg() + - drm/fb-helper: set x/yres_virtual in drm_fb_helper_check_var + - bluetooth: Perform careful capability checks in hci_sock_ioctl() + - USB: serial: option: add UNISOC vendor and TOZED LT70C product + - driver core: Don't require dynamic_debug for initcall_debug probe timing + - selftests: mptcp: join: fix "invalid address, ADD_ADDR timeout" + - riscv: Move early dtb mapping into the fixmap region + - riscv: Do not set initial_boot_params to the linear address of the dtb + - riscv: No need to relocate the dtb as it lies in the fixmap region + - Linux 5.15.110 + * Jammy update: v5.15.109 upstream stable release (LP: #2024265) + - ARM: dts: rockchip: fix a typo error for rk3288 spdif node + - arm64: dts: qcom: ipq8074-hk01: enable QMP device, not the PHY node + - arm64: dts: meson-g12-common: specify full DMC range + - arm64: dts: imx8mm-evk: correct pmic clock source + - netfilter: br_netfilter: fix recent physdev match breakage + - regulator: fan53555: Explicitly include bits header + - regulator: fan53555: Fix wrong TCS_SLEW_MASK + - virtio_net: bugfix overflow inside xdp_linearize_page() + - sfc: Split STATE_READY in to STATE_NET_DOWN and STATE_NET_UP. + - sfc: Fix use-after-free due to selftest_work + - netfilter: nf_tables: fix ifdef to also consider nf_tables=m + - i40e: fix accessing vsi->active_filters without holding lock + - i40e: fix i40e_setup_misc_vector() error handling + - netfilter: nf_tables: validate catch-all set elements + - netfilter: nf_tables: tighten netlink attribute requirements for catch-all + elements + - bnxt_en: Do not initialize PTP on older P3/P4 chips + - mlxfw: fix null-ptr-deref in mlxfw_mfa2_tlv_next() + - bonding: Fix memory leak when changing bond type to Ethernet + - net: rpl: fix rpl header size calculation + - mlxsw: pci: Fix possible crash during initialization + - spi: spi-rockchip: Fix missing unwind goto in rockchip_sfc_probe() + - bpf: Fix incorrect verifier pruning due to missing register precision taints + - e1000e: Disable TSO on i219-LM card to increase speed + - f2fs: Fix f2fs_truncate_partial_nodes ftrace event + - Input: i8042 - add quirk for Fujitsu Lifebook A574/H + - platform/x86 (gigabyte-wmi): Add support for A320M-S2H V2 + - selftests: sigaltstack: fix -Wuninitialized + - scsi: megaraid_sas: Fix fw_crash_buffer_show() + - scsi: core: Improve scsi_vpd_inquiry() checks + - net: dsa: b53: mmap: add phy ops + - s390/ptrace: fix PTRACE_GET_LAST_BREAK error handling + - nvme-tcp: fix a possible UAF when failing to allocate an io queue + - xen/netback: use same error messages for same errors + - platform/x86: gigabyte-wmi: add support for X570S AORUS ELITE + - rtmutex: Add acquire semantics for rtmutex lock acquisition slow path + - iio: light: tsl2772: fix reading proximity-diodes from device tree + - nilfs2: initialize unused bytes in segment summary blocks + - memstick: fix memory leak if card device is never registered + - kernel/sys.c: fix and improve control flow in __sys_setres[ug]id() + - mmc: sdhci_am654: Set HIGH_SPEED_ENA for SDR12 and SDR25 + - drm/i915: Fix fast wake AUX sync len + - mm/khugepaged: check again on anon uffd-wp during isolation + - mm: page_alloc: skip regions with hugetlbfs pages when allocating 1G pages + - sched/uclamp: Fix fits_capacity() check in feec() + - sched/uclamp: Make cpu_overutilized() use util_fits_cpu() + - sched/uclamp: Cater for uclamp in find_energy_efficient_cpu()'s early exit + condition + - sched/fair: Detect capacity inversion + - sched/fair: Consider capacity inversion in util_fits_cpu() + - sched/uclamp: Fix a uninitialized variable warnings + - sched/fair: Fixes for capacity inversion detection + - MIPS: Define RUNTIME_DISCARD_EXIT in LD script + - docs: futex: Fix kernel-doc references after code split-up preparation + - purgatory: fix disabling debug info + - fuse: fix attr version comparison in fuse_read_update_size() + - fuse: always revalidate rename target dentry + - fuse: fix deadlock between atomic O_TRUNC and page invalidation + - udp: Call inet6_destroy_sock() in setsockopt(IPV6_ADDRFORM). + - tcp/udp: Call inet6_destroy_sock() in IPv6 sk->sk_destruct(). + - inet6: Remove inet6_destroy_sock() in sk->sk_prot->destroy(). + - dccp: Call inet6_destroy_sock() via sk->sk_destruct(). + - sctp: Call inet6_destroy_sock() via sk->sk_destruct(). + - pwm: meson: Explicitly set .polarity in .get_state() + - pwm: iqs620a: Explicitly set .polarity in .get_state() + - pwm: hibvt: Explicitly set .polarity in .get_state() + - counter: 104-quad-8: Fix race condition between FLAG and CNTR reads + - iio: adc: at91-sama5d2_adc: fix an error code in at91_adc_allocate_trigger() + - mm/page_alloc: fix potential deadlock on zonelist_update_seq seqlock + - ASoC: fsl_asrc_dma: fix potential null-ptr-deref + - ASN.1: Fix check for strdup() success + - soc: sifive: l2_cache: fix missing iounmap() in error path in + sifive_l2_init() + - soc: sifive: l2_cache: fix missing free_irq() in error path in + sifive_l2_init() + - soc: sifive: l2_cache: fix missing of_node_put() in sifive_l2_init() + - Linux 5.15.109 + * Disable hv-kvp-daemon if /dev/vmbus/hv_kvp is not present (LP: #2024900) + - [Packaging] disable hv-kvp-daemon if needed + * A deadlock issue in scsi rescan task while resuming from S3 (LP: #2018566) + - ata: libata-scsi: Avoid deadlock on rescan after device resume + * [SRU] Intel Sapphire Rapids HBM support needs CONFIG_NUMA_EMU (LP: #2008745) + - [Config] Intel Sapphire Rapids HBM support needs CONFIG_NUMA_EMU + * [22.04 FEAT] Enhanced Interpretation for PCI Functions on s390x - kernel + part (LP: #1853306) + - kvm: use kvfree() in kvm_arch_free_vm() + - s390/sclp: add detection of IPL-complete-control facility + - s390/pci: use phys_to_virt() for AIBVs/DIBVs + - s390/sclp: detect the zPCI load/store interpretation facility + - s390/sclp: detect the AISII facility + - s390/sclp: detect the AENI facility + - s390/sclp: detect the AISI facility + - s390/airq: pass more TPI info to airq handlers + - s390/airq: allow for airq structure that uses an input vector + - s390/pci: externalize the SIC operation controls and routine + - s390/pci: stash associated GISA designation + - s390/pci: stash dtsm and maxstbl + - vfio/pci: introduce CONFIG_VFIO_PCI_ZDEV_KVM + - KVM: s390: pci: add basic kvm_zdev structure + - KVM: s390: pci: do initial setup for AEN interpretation + - KVM: s390: pci: enable host forwarding of Adapter Event Notifications + - KVM: s390: mechanism to enable guest zPCI Interpretation + - KVM: s390: pci: provide routines for enabling/disabling interrupt forwarding + - KVM: s390: pci: add routines to start/stop interpretive execution + - vfio-pci/zdev: add open/close device hooks + - vfio-pci/zdev: add function handle to clp base capability + - vfio-pci/zdev: different maxstbl for interpreted devices + - KVM: s390: add KVM_S390_ZPCI_OP to manage guest zPCI devices + - MAINTAINERS: additional files related kvm s390 pci passthrough + - Documentation: kvm: extend KVM_S390_ZPCI_OP subheading underline + - KVM: s390: pci: Hook to access KVM lowlevel from VFIO + - KVM: s390: pci: fix plain integer as NULL pointer warnings + - KVM: s390: pci: fix GAIT physical vs virtual pointers usage + - KVM: s390: pci: register pci hooks without interpretation + - [Config] enable VFIO zPCI pass-through for s390x + * Undefined Behavior Sanitizer (UBSAN) causes failure to match symbols + (LP: #2003374) + - [Config] s390x: Re-adding UBSAN to configuration + * CVE-2023-35001 + - netfilter: nf_tables: prevent OOB access in nft_byteorder_eval + * CVE-2023-31248 + - netfilter: nf_tables: do not ignore genmask when looking up chain by id + * CVE-2023-3389 + - io_uring: hold uring mutex around poll removal + * CVE-2023-3439 + - mctp: Add refcounts to mctp_dev + - mctp: Allow MCTP on tun devices + - mctp: make __mctp_dev_get() take a refcount hold + - mctp: defer the kfree of object mdev->addrs + * CVE-2023-3390 + - netfilter: nf_tables: incorrect error path handling with NFT_MSG_NEWRULE + * CVE-2023-3141 + - memstick: r592: Fix UAF bug in r592_remove due to race condition + * CVE-2023-3090 + - ipvlan:Fix out-of-bounds caused by unclear skb->cb + * CVE-2022-48502 + - fs/ntfs3: Check fields while reading + * ftrace in ubuntu_kernel_selftests failed with "check if duplicate events are + caught" on J-5.15 P9 / J-kvm / L-kvm (LP: #1977827) + - SAUCE: selftests/ftrace: Add test dependency + * Add microphone support of the front headphone port on P3 Tower + (LP: #2023650) + - ALSA: hda/realtek: Add Lenovo P3 Tower platform + * Add audio support for ThinkPad P1 Gen 6 and Z16 Gen 2 (LP: #2023539) + - ALSA: hda/realtek: Add quirks for Lenovo Z13/Z16 Gen2 + - ALSA: hda/realtek: Add quirk for ThinkPad P1 Gen 6 + * Resolve synchronous exception on arm64 (LP: #2023311) + - arm64: efi: Recover from synchronous exceptions occurring in firmware + * Enable Tracing Configs for OSNOISE and TIMERLAT (LP: #2018591) + - [Config] Enable OSNOISE_TRACER and TIMERLAT_TRACER configs + * Severe NFS performance degradation after LP #2003053 (LP: #2022098) + - SAUCE: Make NFS file-access stale cache behaviour opt-in + * Encountering an issue with memcpy_fromio causing failed boot of SEV-enabled + guest (LP: #2020319) + - x86/sev: Unroll string mmio with CC_ATTR_GUEST_UNROLL_STRING_IO + * linux-*: please enable dm-verity kconfigs to allow MoK/db verified root + images (LP: #2019040) + - [Config] CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING=y + * CVE-2023-2124 + - xfs: verify buffer contents when we skip log replay + * CVE-2023-0597 + - x86/kasan: Map shadow for percpu pages on demand + - x86/mm: Randomize per-cpu entry area + - x86/mm: Recompute physical address for every page of per-CPU CEA mapping + - x86/mm: Populate KASAN shadow for entire per-CPU range of CPU entry area + - x86/mm: Do not shuffle CPU entry areas without KASLR + * Jammy update: v5.15.108 upstream stable release (LP: #2023328) + - Revert "pinctrl: amd: Disable and mask interrupts on resume" + - ALSA: emu10k1: fix capture interrupt handler unlinking + - ALSA: hda/sigmatel: add pin overrides for Intel DP45SG motherboard + - ALSA: i2c/cs8427: fix iec958 mixer control deactivation + - ALSA: firewire-tascam: add missing unwind goto in + snd_tscm_stream_start_duplex() + - ALSA: emu10k1: don't create old pass-through playback device on Audigy + - ALSA: hda/sigmatel: fix S/PDIF out on Intel D*45* motherboards + - Bluetooth: L2CAP: Fix use-after-free in l2cap_disconnect_{req,rsp} + - Bluetooth: Fix race condition in hidp_session_thread + - btrfs: print checksum type and implementation at mount time + - btrfs: fix fast csum implementation detection + - fbmem: Reject FB_ACTIVATE_KD_TEXT from userspace + - mtdblock: tolerate corrected bit-flips + - mtd: rawnand: meson: fix bitmask for length in command word + - mtd: rawnand: stm32_fmc2: remove unsupported EDO mode + - mtd: rawnand: stm32_fmc2: use timings.mode instead of checking tRC_min + - KVM: arm64: PMU: Restore the guest's EL0 event counting after migration + - drm/i915/dsi: fix DSS CTL register offsets for TGL+ + - clk: sprd: set max_register according to mapping range + - RDMA/irdma: Fix memory leak of PBLE objects + - RDMA/irdma: Increase iWARP CM default rexmit count + - RDMA/irdma: Add ipv4 check to irdma_find_listener() + - IB/mlx5: Add support for 400G_8X lane speed + - RDMA/cma: Allow UD qp_type to join multicast only + - bpf: tcp: Use sock_gen_put instead of sock_put in bpf_iter_tcp + - niu: Fix missing unwind goto in niu_alloc_channels() + - tcp: restrict net.ipv4.tcp_app_win + - drm/armada: Fix a potential double free in an error handling path + - qlcnic: check pci_reset_function result + - net: qrtr: Fix an uninit variable access bug in qrtr_tx_resume() + - sctp: fix a potential overflow in sctp_ifwdtsn_skip + - RDMA/core: Fix GID entry ref leak when create_ah fails + - udp6: fix potential access to stale information + - net: macb: fix a memory corruption in extended buffer descriptor mode + - skbuff: Fix a race between coalescing and releasing SKBs + - libbpf: Fix single-line struct definition output in btf_dump + - ARM: 9290/1: uaccess: Fix KASAN false-positives + - power: supply: cros_usbpd: reclassify "default case!" as debug + - wifi: mwifiex: mark OF related data as maybe unused + - i2c: imx-lpi2c: clean rx/tx buffers upon new message + - i2c: hisi: Avoid redundant interrupts + - efi: sysfb_efi: Add quirk for Lenovo Yoga Book X91F/L + - drm: panel-orientation-quirks: Add quirk for Lenovo Yoga Book X90F + - verify_pefile: relax wrapper length check + - asymmetric_keys: log on fatal failures in PE/pkcs7 + - wifi: iwlwifi: mvm: fix mvmtxq->stopped handling + - ACPI: resource: Add Medion S17413 to IRQ override quirk + - counter: stm32-lptimer-cnt: Provide defines for clock polarities + - counter: stm32-timer-cnt: Provide defines for slave mode selection + - counter: Internalize sysfs interface code + - counter: 104-quad-8: Fix Synapse action reported for Index signals + - tracing: Add trace_array_puts() to write into instance + - tracing: Have tracing_snapshot_instance_cond() write errors to the + appropriate instance + - i915/perf: Replace DRM_DEBUG with driver specific drm_dbg call + - drm/i915: fix race condition UAF in i915_perf_add_config_ioctl + - riscv: add icache flush for nommu sigreturn trampoline + - net: sfp: initialize sfp->i2c_block_size at sfp allocation + - net: phy: nxp-c45-tja11xx: add remove callback + - net: phy: nxp-c45-tja11xx: fix unsigned long multiplication overflow + - scsi: ses: Handle enclosure with just a primary component gracefully + - x86/PCI: Add quirk for AMD XHCI controller that loses MSI-X state in D3hot + - cgroup/cpuset: Wake up cpuset_attach_wq tasks in cpuset_cancel_attach() + - mptcp: use mptcp_schedule_work instead of open-coding it + - mptcp: stricter state check in mptcp_worker + - ubi: Fix failure attaching when vid_hdr offset equals to (sub)page size + - ubi: Fix deadlock caused by recursively holding work_sem + - powerpc/papr_scm: Update the NUMA distance table for the target node + - sched/fair: Move calculate of avg_load to a better location + - sched/fair: Fix imbalance overflow + - x86/rtc: Remove __init for runtime functions + - i2c: ocores: generate stop condition after timeout in polling mode + - nvme-pci: add NVME_QUIRK_BOGUS_NID for ADATA XPG GAMMIX S50 + - nvme-pci: avoid the deepest sleep state on ZHITAI TiPro7000 SSDs + - nvme-pci: Crucial P2 has bogus namespace ids + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Lexar NM610 + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Lexar NM760 + - nvme-pci: mark Lexar NM760 as IGNORE_DEV_SUBNQN + - nvme-pci: add NVME_QUIRK_BOGUS_NID for T-FORCE Z330 SSD + - kexec: turn all kexec_mutex acquisitions into trylocks + - panic, kexec: make __crash_kexec() NMI safe + - counter: fix docum. build problems after filename change + - counter: Add the necessary colons and indents to the comments of + counter_compi + - nvme-pci: avoid the deepest sleep state on ZHITAI TiPro5000 SSDs + - Linux 5.15.108 + * Jammy update: v5.15.107 upstream stable release (LP: #2023320) + - ocfs2: ocfs2_mount_volume does cleanup job before return error + - ocfs2: rewrite error handling of ocfs2_fill_super + - ocfs2: fix memory leak in ocfs2_mount_volume() + - NFSD: Fix sparse warning + - NFSD: pass range end to vfs_fsync_range() instead of count + - RDMA/irdma: Do not request 2-level PBLEs for CQ alloc + - platform/x86: int3472: Split into 2 drivers + - [Config] updateconfigs for Intel skl_int3472 driver split + - platform/x86: int3472/discrete: Ensure the clk/power enable pins are in + output mode + - iavf: return errno code instead of status code + - iavf/iavf_main: actually log ->src mask when talking about it + - serial: 8250_exar: derive nr_ports from PCI ID for Acces I/O cards + - serial: exar: Add support for Sealevel 7xxxC serial cards + - bpf: hash map, avoid deadlock with suitable hash mask + - gpio: GPIO_REGMAP: select REGMAP instead of depending on it + - Drivers: vmbus: Check for channel allocation before looking up relids + - pwm: cros-ec: Explicitly set .polarity in .get_state() + - pwm: sprd: Explicitly set .polarity in .get_state() + - KVM: s390: pv: fix external interruption loop not always detected + - wifi: mac80211: fix invalid drv_sta_pre_rcu_remove calls for non-uploaded + sta + - net: qrtr: combine nameservice into main module + - [Config] updateconfigs for ns module merger + - net: qrtr: Fix a refcount bug in qrtr_recvmsg() + - NFSD: Avoid calling OPDESC() with ops->opnum == OP_ILLEGAL + - icmp: guard against too small mtu + - net: don't let netpoll invoke NAPI if in xmit context + - net: dsa: mv88e6xxx: Reset mv88e6393x force WD event bit + - sctp: check send stream number after wait_for_sndbuf + - net: qrtr: Do not do DEL_SERVER broadcast after DEL_CLIENT + - ipv6: Fix an uninit variable access bug in __ip6_make_skb() + - platform/x86: think-lmi: Fix memory leak when showing current settings + - platform/x86: think-lmi: Fix memory leaks when parsing ThinkStation WMI + strings + - platform/x86: think-lmi: Clean up display of current_value on Thinkstation + - gpio: davinci: Add irq chip flag to skip set wake + - net: ethernet: ti: am65-cpsw: Fix mdio cleanup in probe + - net: stmmac: fix up RX flow hash indirection table when setting channels + - sunrpc: only free unix grouplist after RCU settles + - NFSD: callback request does not use correct credential for AUTH_SYS + - ice: fix wrong fallback logic for FDIR + - ice: Reset FDIR counter in FDIR init stage + - ethtool: reset #lanes when lanes is omitted + - gve: Secure enough bytes in the first TX desc for all TCP pkts + - kbuild: refactor single builds of *.ko + - usb: xhci: tegra: fix sleep in atomic call + - xhci: also avoid the XHCI_ZERO_64B_REGS quirk with a passthrough iommu + - usb: cdnsp: Fixes error: uninitialized symbol 'len' + - usb: dwc3: pci: add support for the Intel Meteor Lake-S + - USB: serial: cp210x: add Silicon Labs IFS-USB-DATACABLE IDs + - usb: typec: altmodes/displayport: Fix configure initial pin assignment + - USB: serial: option: add Telit FE990 compositions + - USB: serial: option: add Quectel RM500U-CN modem + - iio: adis16480: select CONFIG_CRC32 + - iio: adc: ti-ads7950: Set `can_sleep` flag for GPIO chip + - iio: dac: cio-dac: Fix max DAC write value check for 12-bit + - iio: light: cm32181: Unregister second I2C client if present + - tty: serial: sh-sci: Fix transmit end interrupt handler + - tty: serial: sh-sci: Fix Rx on RZ/G2L SCI + - tty: serial: fsl_lpuart: avoid checking for transfer complete when + UARTCTRL_SBK is asserted in lpuart32_tx_empty + - nilfs2: fix potential UAF of struct nilfs_sc_info in nilfs_segctor_thread() + - nilfs2: fix sysfs interface lifetime + - dt-bindings: serial: renesas,scif: Fix 4th IRQ for 4-IRQ SCIFs + - ksmbd: do not call kvmalloc() with __GFP_NORETRY | __GFP_NO_WARN + - ALSA: hda/realtek: Add quirk for Clevo X370SNW + - coresight: etm4x: Do not access TRCIDR1 for identification + - coresight-etm4: Fix for() loop drvdata->nr_addr_cmp range bug + - iio: adc: ad7791: fix IRQ flags + - scsi: qla2xxx: Fix memory leak in qla2x00_probe_one() + - scsi: iscsi_tcp: Check that sock is valid before iscsi_set_param() + - smb3: allow deferred close timeout to be configurable + - smb3: lower default deferred close timeout to address perf regression + - cifs: sanitize paths in cifs_update_super_prepath. + - perf/core: Fix the same task check in perf_event_set_output + - ftrace: Mark get_lock_parent_ip() __always_inline + - ftrace: Fix issue that 'direct->addr' not restored in modify_ftrace_direct() + - fs: drop peer group ids under namespace lock + - can: j1939: j1939_tp_tx_dat_new(): fix out-of-bounds memory access + - can: isotp: isotp_ops: fix poll() to not report false EPOLLOUT events + - tracing: Free error logs of tracing instances + - ASoC: hdac_hdmi: use set_stream() instead of set_tdm_slots() + - mm: vmalloc: avoid warn_alloc noise caused by fatal signal + - drm/panfrost: Fix the panfrost_mmu_map_fault_addr() error path + - drm/nouveau/disp: Support more modes by checking with lower bpc + - ring-buffer: Fix race while reader and writer are on the same page + - mm/swap: fix swap_info_struct race between swapoff and get_swap_pages() + - drm/bridge: lt9611: Fix PLL being unable to lock + - mm: take a page reference when removing device exclusive entries + - kbuild: fix single directory build + - ocfs2: fix freeing uninitialized resource on ocfs2_dlm_shutdown + - bpftool: Print newline before '}' for struct with padding only fields + - Linux 5.15.107 + * Jammy update: v5.15.106 upstream stable release (LP: #2023233) + - fsverity: don't drop pagecache at end of FS_IOC_ENABLE_VERITY + - usb: dwc3: gadget: move cmd_endtransfer to extra function + - usb: dwc3: gadget: Add 1ms delay after end transfer command without IOC + - kernel: kcsan: kcsan_test: build without structleak plugin + - kcsan: avoid passing -g for test + - ksmbd: don't terminate inactive sessions after a few seconds + - bus: imx-weim: fix branch condition evaluates to a garbage value + - xfrm: Zero padding when dumping algos and encap + - ASoC: codecs: tx-macro: Fix for KASAN: slab-out-of-bounds + - md: avoid signed overflow in slot_store() + - x86/PVH: obtain VGA console info in Dom0 + - net: hsr: Don't log netdev_err message on unknown prp dst node + - ALSA: asihpi: check pao in control_message() + - ALSA: hda/ca0132: fixup buffer overrun at tuning_ctl_set() + - fbdev: tgafb: Fix potential divide by zero + - sched_getaffinity: don't assume 'cpumask_size()' is fully initialized + - fbdev: nvidia: Fix potential divide by zero + - fbdev: intelfb: Fix potential divide by zero + - fbdev: lxfb: Fix potential divide by zero + - fbdev: au1200fb: Fix potential divide by zero + - tools/power turbostat: Fix /dev/cpu_dma_latency warnings + - tools/power turbostat: fix decoding of HWP_STATUS + - tracing: Fix wrong return in kprobe_event_gen_test.c + - ca8210: Fix unsigned mac_len comparison with zero in ca8210_skb_tx() + - mips: bmips: BCM6358: disable RAC flush for TP1 + - ALSA: usb-audio: Fix recursive locking at XRUN during syncing + - platform/x86: think-lmi: add missing type attribute + - platform/x86: think-lmi: use correct possible_values delimiters + - platform/x86: think-lmi: only display possible_values if available + - platform/x86: think-lmi: Add possible_values for ThinkStation + - mtd: rawnand: meson: invalidate cache on polling ECC bit + - SUNRPC: fix shutdown of NFS TCP client socket + - sfc: ef10: don't overwrite offload features at NIC reset + - scsi: megaraid_sas: Fix crash after a double completion + - scsi: mpt3sas: Don't print sense pool info twice + - ptp_qoriq: fix memory leak in probe() + - net: dsa: microchip: ksz8863_smi: fix bulk access + - r8169: fix RTL8168H and RTL8107E rx crc error + - regulator: Handle deferred clk + - net/net_failover: fix txq exceeding warning + - net: stmmac: don't reject VLANs when IFF_PROMISC is set + - drm/i915/tc: Fix the ICL PHY ownership check in TC-cold state + - platform/x86/intel/pmc: Alder Lake PCH slp_s0_residency fix + - can: bcm: bcm_tx_setup(): fix KMSAN uninit-value in vfs_write + - s390/vfio-ap: fix memory leak in vfio_ap device driver + - loop: suppress uevents while reconfiguring the device + - loop: LOOP_CONFIGURE: send uevents for partitions + - net: mvpp2: classifier flow fix fragmentation flags + - net: mvpp2: parser fix QinQ + - net: mvpp2: parser fix PPPoE + - smsc911x: avoid PHY being resumed when interface is not up + - ice: add profile conflict check for AVF FDIR + - ice: fix invalid check for empty list in ice_sched_assoc_vsi_to_agg() + - ALSA: ymfpci: Create card with device-managed snd_devm_card_new() + - ALSA: ymfpci: Fix BUG_ON in probe function + - net: ipa: compute DMA pool size properly + - i40e: fix registers dump after run ethtool adapter self test + - bnxt_en: Fix reporting of test result in ethtool selftest + - bnxt_en: Fix typo in PCI id to device description string mapping + - bnxt_en: Add missing 200G link speed reporting + - net: dsa: mv88e6xxx: Enable IGMP snooping on user ports only + - net: ethernet: mtk_eth_soc: fix flow block refcounting logic + - pinctrl: ocelot: Fix alt mode for ocelot + - iommu/vt-d: Allow zero SAGAW if second-stage not supported + - Input: alps - fix compatibility with -funsigned-char + - Input: focaltech - use explicitly signed char type + - cifs: prevent infinite recursion in CIFSGetDFSRefer() + - cifs: fix DFS traversal oops without CONFIG_CIFS_DFS_UPCALL + - Input: goodix - add Lenovo Yoga Book X90F to nine_bytes_report DMI table + - btrfs: fix race between quota disable and quota assign ioctls + - btrfs: scan device in non-exclusive mode + - zonefs: Always invalidate last cached page on append write + - can: j1939: prevent deadlock by moving j1939_sk_errqueue() + - xen/netback: don't do grant copy across page boundary + - net: phy: dp83869: fix default value for tx-/rx-internal-delay + - pinctrl: amd: Disable and mask interrupts on resume + - pinctrl: at91-pio4: fix domain name assignment + - powerpc: Don't try to copy PPR for task with NULL pt_regs + - NFSv4: Fix hangs when recovering open state after a server reboot + - ALSA: hda/conexant: Partial revert of a quirk for Lenovo + - ALSA: usb-audio: Fix regression on detection of Roland VS-100 + - ALSA: hda/realtek: Add quirks for some Clevo laptops + - ALSA: hda/realtek: Add quirk for Lenovo ZhaoYang CF4620Z + - xtensa: fix KASAN report for show_stack + - rcu: Fix rcu_torture_read ftrace event + - drm/etnaviv: fix reference leak when mmaping imported buffer + - drm/amd/display: Add DSC Support for Synaptics Cascaded MST Hub + - KVM: arm64: Disable interrupts while walking userspace PTs + - KVM: VMX: Move preemption timer <=> hrtimer dance to common x86 + - KVM: x86: Inject #GP on x2APIC WRMSR that sets reserved bits 63:32 + - KVM: x86: Purge "highest ISR" cache when updating APICv state + - zonefs: Fix error message in zonefs_file_dio_append() + - selftests/bpf: Test btf dump for struct with padding only fields + - libbpf: Fix BTF-to-C converter's padding logic + - selftests/bpf: Add few corner cases to test padding handling of btf_dump + - libbpf: Fix btf_dump's packed struct determination + - hsr: ratelimit only when errors are printed + - x86/PVH: avoid 32-bit build warning when obtaining VGA console info + - Linux 5.15.106 + * Jammy update: v5.15.105 upstream stable release (LP: #2023230) + - interconnect: qcom: osm-l3: fix icc_onecell_data allocation + - perf/core: Fix perf_output_begin parameter is incorrectly invoked in + perf_event_bpf_output + - perf: fix perf_event_context->time + - tracing/hwlat: Replace sched_setaffinity with set_cpus_allowed_ptr + - serial: fsl_lpuart: Fix comment typo + - tty: serial: fsl_lpuart: switch to new dmaengine_terminate_* API + - tty: serial: fsl_lpuart: fix race on RX DMA shutdown + - serial: 8250: SERIAL_8250_ASPEED_VUART should depend on ARCH_ASPEED + - [Config] updateconfigs for SERIAL_8250_ASPEED_VUART + - serial: 8250: ASPEED_VUART: select REGMAP instead of depending on it + - kthread: add the helper function kthread_run_on_cpu() + - trace/hwlat: make use of the helper function kthread_run_on_cpu() + - trace/hwlat: Do not start per-cpu thread if it is already running + - net: tls: fix possible race condition between do_tls_getsockopt_conf() and + do_tls_setsockopt_conf() + - power: supply: bq24190_charger: using pm_runtime_resume_and_get instead of + pm_runtime_get_sync + - power: supply: bq24190: Fix use after free bug in bq24190_remove due to race + condition + - power: supply: da9150: Fix use after free bug in da9150_charger_remove due + to race condition + - ARM: dts: imx6sll: e60k02: fix usbotg1 pinctrl + - ARM: dts: imx6sl: tolino-shine2hd: fix usbotg1 pinctrl + - arm64: dts: imx8mn: specify #sound-dai-cells for SAI nodes + - xsk: Add missing overflow check in xdp_umem_reg + - iavf: fix inverted Rx hash condition leading to disabled hash + - iavf: fix non-tunneled IPv6 UDP packet type and hashing + - intel/igbvf: free irq on the error path in igbvf_request_msix() + - igbvf: Regard vf reset nack as success + - igc: fix the validation logic for taprio's gate list + - i2c: imx-lpi2c: check only for enabled interrupt flags + - i2c: hisi: Only use the completion interrupt to finish the transfer + - scsi: scsi_dh_alua: Fix memleak for 'qdata' in alua_activate() + - net: dsa: b53: mmap: fix device tree support + - net: usb: smsc95xx: Limit packet length to skb->len + - qed/qed_sriov: guard against NULL derefs from qed_iov_get_vf_info + - net: phy: Ensure state transitions are processed from phy_stop() + - net: mdio: fix owner field for mdio buses registered using device-tree + - net: mdio: fix owner field for mdio buses registered using ACPI + - drm/i915/gt: perform uc late init after probe error injection + - net: qcom/emac: Fix use after free bug in emac_remove due to race condition + - net/ps3_gelic_net: Fix RX sk_buff length + - net/ps3_gelic_net: Use dma_mapping_error + - octeontx2-vf: Add missing free for alloc_percpu + - bootconfig: Fix testcase to increase max node + - keys: Do not cache key in task struct if key is requested from kernel thread + - iavf: fix hang on reboot with ice + - i40e: fix flow director packet filter programming + - bpf: Adjust insufficient default bpf_jit_limit + - net/mlx5e: Set uplink rep as NETNS_LOCAL + - net/mlx5: Fix steering rules cleanup + - net/mlx5: Read the TC mapping of all priorities on ETS query + - net/mlx5: E-Switch, Fix an Oops in error handling code + - net: dsa: tag_brcm: legacy: fix daisy-chained switches + - atm: idt77252: fix kmemleak when rmmod idt77252 + - erspan: do not use skb_mac_header() in ndo_start_xmit() + - net/sonic: use dma_mapping_error() for error check + - nvme-tcp: fix nvme_tcp_term_pdu to match spec + - hvc/xen: prevent concurrent accesses to the shared ring + - ksmbd: add low bound validation to FSCTL_SET_ZERO_DATA + - ksmbd: add low bound validation to FSCTL_QUERY_ALLOCATED_RANGES + - ksmbd: fix possible refcount leak in smb2_open() + - gve: Cache link_speed value from device + - net: dsa: mt7530: move enabling disabling core clock to mt7530_pll_setup() + - net: dsa: mt7530: move lowering TRGMII driving to mt7530_setup() + - net: dsa: mt7530: move setting ssc_delta to PHY_INTERFACE_MODE_TRGMII case + - net: mdio: thunder: Add missing fwnode_handle_put() + - Bluetooth: btqcomsmd: Fix command timeout after setting BD address + - Bluetooth: L2CAP: Fix responding with wrong PDU type + - platform/chrome: cros_ec_chardev: fix kernel data leak from ioctl + - thread_info: Add helpers to snapshot thread flags + - entry: Snapshot thread flags + - entry/rcu: Check TIF_RESCHED _after_ delayed RCU wake-up + - hwmon: fix potential sensor registration fail if of_node is missing + - hwmon (it87): Fix voltage scaling for chips with 10.9mV ADCs + - scsi: qla2xxx: Synchronize the IOCB count to be in order + - scsi: qla2xxx: Perform lockless command completion in abort path + - uas: Add US_FL_NO_REPORT_OPCODES for JMicron JMS583Gen 2 + - thunderbolt: Use scale field when allocating USB3 bandwidth + - thunderbolt: Call tb_check_quirks() after initializing adapters + - thunderbolt: Disable interrupt auto clear for rings + - thunderbolt: Add missing UNSET_INBOUND_SBTX for retimer access + - thunderbolt: Use const qualifier for `ring_interrupt_index` + - thunderbolt: Rename shadowed variables bit to interrupt_bit and + auto_clear_bit + - ACPI: x86: utils: Add Cezanne to the list for forcing StorageD3Enable + - riscv: Bump COMMAND_LINE_SIZE value to 1024 + - drm/cirrus: NULL-check pipe->plane.state->fb in cirrus_pipe_update() + - HID: cp2112: Fix driver not registering GPIO IRQ chip as threaded + - ca8210: fix mac_len negative array access + - HID: intel-ish-hid: ipc: Fix potential use-after-free in work function + - m68k: Only force 030 bus error if PC not in exception table + - selftests/bpf: check that modifier resolves after pointer + - scsi: target: iscsi: Fix an error message in iscsi_check_key() + - scsi: hisi_sas: Check devm_add_action() return value + - scsi: ufs: core: Add soft dependency on governor_simpleondemand + - scsi: lpfc: Check kzalloc() in lpfc_sli4_cgn_params_read() + - scsi: lpfc: Avoid usage of list iterator variable after loop + - scsi: storvsc: Handle BlockSize change in Hyper-V VHD/VHDX file + - net: usb: cdc_mbim: avoid altsetting toggling for Telit FE990 + - net: usb: qmi_wwan: add Telit 0x1080 composition + - sh: sanitize the flags on sigreturn + - net/sched: act_mirred: better wording on protection against excessive stack + growth + - act_mirred: use the backlog for nested calls to mirred ingress + - cifs: empty interface list when server doesn't support query interfaces + - cifs: print session id while listing open files + - scsi: core: Add BLIST_SKIP_VPD_PAGES for SKhynix H28U74301AMR + - usb: dwc2: fix a devres leak in hw_enable upon suspend resume + - usb: gadget: u_audio: don't let userspace block driver unbind + - efi: sysfb_efi: Fix DMI quirks not working for simpledrm + - mm/slab: Fix undefined init_cache_node_node() for NUMA and !SMP + - fscrypt: destroy keyring after security_sb_delete() + - fsverity: Remove WQ_UNBOUND from fsverity read workqueue + - lockd: set file_lock start and end when decoding nlm4 testargs + - arm64: dts: imx8mm-nitrogen-r2: fix WM8960 clock name + - igb: revert rtnl_lock() that causes deadlock + - dm thin: fix deadlock when swapping to thin device + - usb: typec: tcpm: fix warning when handle discover_identity message + - usb: cdns3: Fix issue with using incorrect PCI device function + - usb: cdnsp: Fixes issue with redundant Status Stage + - usb: cdnsp: changes PCI Device ID to fix conflict with CNDS3 driver + - usb: chipdea: core: fix return -EINVAL if request role is the same with + current role + - usb: chipidea: core: fix possible concurrent when switch role + - usb: ucsi: Fix NULL pointer deref in ucsi_connector_change() + - kfence: avoid passing -g for test + - KVM: x86: hyper-v: Avoid calling kvm_make_vcpus_request_mask() with + vcpu_mask==NULL + - ksmbd: set FILE_NAMED_STREAMS attribute in FS_ATTRIBUTE_INFORMATION + - ksmbd: return STATUS_NOT_SUPPORTED on unsupported smb2.0 dialect + - ksmbd: return unsupported error on smb1 mount + - wifi: mac80211: fix qos on mesh interfaces + - nilfs2: fix kernel-infoleak in nilfs_ioctl_wrap_copy() + - drm/bridge: lt8912b: return EPROBE_DEFER if bridge is not found + - drm/meson: fix missing component unbind on bind errors + - drm/amdgpu/nv: Apply ASPM quirk on Intel ADL + AMD Navi + - drm/i915/active: Fix missing debug object activation + - drm/i915: Preserve crtc_state->inherited during state clearing + - riscv: mm: Fix incorrect ASID argument when flushing TLB + - riscv: Handle zicsr/zifencei issues between clang and binutils + - tee: amdtee: fix race condition in amdtee_open_session + - firmware: arm_scmi: Fix device node validation for mailbox transport + - i2c: xgene-slimpro: Fix out-of-bounds bug in xgene_slimpro_i2c_xfer() + - dm stats: check for and propagate alloc_percpu failure + - dm crypt: add cond_resched() to dmcrypt_write() + - dm crypt: avoid accessing uninitialized tasklet + - sched/fair: sanitize vruntime of entity being placed + - sched/fair: Sanitize vruntime of entity being migrated + - mm: kfence: fix using kfence_metadata without initialization in + show_object() + - ocfs2: fix data corruption after failed write + - Linux 5.15.105 + * Jammy update: v5.15.104 upstream stable release (LP: #2023225) + - xfrm: Allow transport-mode states with AF_UNSPEC selector + - drm/panfrost: Don't sync rpm suspension after mmu flushing + - cifs: Move the in_send statistic to __smb_send_rqst() + - drm/meson: fix 1px pink line on GXM when scaling video overlay + - clk: HI655X: select REGMAP instead of depending on it + - docs: Correct missing "d_" prefix for dentry_operations member + d_weak_revalidate + - scsi: mpt3sas: Fix NULL pointer access in mpt3sas_transport_port_add() + - ALSA: hda: Match only Intel devices with CONTROLLER_IN_GPU() + - netfilter: nft_nat: correct length for loading protocol registers + - netfilter: nft_masq: correct length for loading protocol registers + - netfilter: nft_redir: correct length for loading protocol registers + - netfilter: nft_redir: correct value of inet type `.maxattrs` + - scsi: core: Fix a procfs host directory removal regression + - tcp: tcp_make_synack() can be called from process context + - nfc: pn533: initialize struct pn533_out_arg properly + - ipvlan: Make skb->skb_iif track skb->dev for l3s mode + - i40e: Fix kernel crash during reboot when adapter is in recovery mode + - vdpa_sim: not reset state in vdpasim_queue_ready + - vdpa_sim: set last_used_idx as last_avail_idx in vdpasim_queue_ready + - PCI: s390: Fix use-after-free of PCI resources with per-function hotplug + - drm/i915/display: Workaround cursor left overs with PSR2 selective fetch + enabled + - drm/i915/display/psr: Use drm damage helpers to calculate plane damaged area + - drm/i915/display: clean up comments + - drm/i915/psr: Use calculated io and fast wake lines + - net/smc: fix NULL sndbuf_desc in smc_cdc_tx_handler() + - qed/qed_dev: guard against a possible division by zero + - net: dsa: mt7530: remove now incorrect comment regarding port 5 + - net: dsa: mt7530: set PLL frequency and trgmii only when trgmii is used + - loop: Fix use-after-free issues + - net: tunnels: annotate lockless accesses to dev->needed_headroom + - net: phy: smsc: bail out in lan87xx_read_status if genphy_read_status fails + - nfc: st-nci: Fix use after free bug in ndlc_remove due to race condition + - net/smc: fix deadlock triggered by cancel_delayed_work_syn() + - net: usb: smsc75xx: Limit packet length to skb->len + - drm/bridge: Fix returned array size name for atomic_get_input_bus_fmts kdoc + - block: null_blk: Fix handling of fake timeout request + - nvme: fix handling single range discard request + - nvmet: avoid potential UAF in nvmet_req_complete() + - block: sunvdc: add check for mdesc_grab() returning NULL + - ice: xsk: disable txq irq before flushing hw + - net: dsa: mv88e6xxx: fix max_mtu of 1492 on 6165, 6191, 6220, 6250, 6290 + - ravb: avoid PHY being resumed when interface is not up + - sh_eth: avoid PHY being resumed when interface is not up + - ipv4: Fix incorrect table ID in IOCTL path + - net: usb: smsc75xx: Move packet length check to prevent kernel panic in + skb_pull + - net/iucv: Fix size of interrupt data + - qed/qed_mng_tlv: correctly zero out ->min instead of ->hour + - ethernet: sun: add check for the mdesc_grab() + - bonding: restore IFF_MASTER/SLAVE flags on bond enslave ether type change + - bonding: restore bond's IFF_SLAVE flag if a non-eth dev enslave fails + - hwmon: (adt7475) Display smoothing attributes in correct order + - hwmon: (adt7475) Fix masking of hysteresis registers + - hwmon: (xgene) Fix use after free bug in xgene_hwmon_remove due to race + condition + - hwmon: (ina3221) return prober error code + - hwmon: (ucd90320) Add minimum delay between bus accesses + - hwmon: tmp512: drop of_match_ptr for ID table + - kconfig: Update config changed flag before calling callback + - hwmon: (adm1266) Set `can_sleep` flag for GPIO chip + - hwmon: (ltc2992) Set `can_sleep` flag for GPIO chip + - media: m5mols: fix off-by-one loop termination error + - mmc: atmel-mci: fix race between stop command and start of next command + - jffs2: correct logic when creating a hole in jffs2_write_begin + - ext4: fail ext4_iget if special inode unallocated + - ext4: update s_journal_inum if it changes after journal replay + - ext4: fix task hung in ext4_xattr_delete_inode + - drm/amdkfd: Fix an illegal memory access + - net/9p: fix bug in client create for .L + - sh: intc: Avoid spurious sizeof-pointer-div warning + - drm/amd/display: fix shift-out-of-bounds in CalculateVMAndRowBytes + - ext4: fix possible double unlock when moving a directory + - tty: serial: fsl_lpuart: skip waiting for transmission complete when + UARTCTRL_SBK is asserted + - serial: 8250_em: Fix UART port type + - serial: 8250_fsl: fix handle_irq locking + - firmware: xilinx: don't make a sleepable memory allocation from an atomic + context + - s390/ipl: add missing intersection check to ipl_report handling + - interconnect: fix mem leak when freeing nodes + - interconnect: exynos: fix node leak in probe PM QoS error path + - tracing: Make splice_read available again + - tracing: Check field value in hist_field_name() + - tracing: Make tracepoint lockdep check actually test something + - cifs: Fix smb2_set_path_size() + - ALSA: hda: intel-dsp-config: add MTL PCI id + - ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book2 Pro + - Revert "riscv: mm: notify remote harts about mmu cache updates" + - riscv: asid: Fixup stale TLB entry cause application crash + - drm/shmem-helper: Remove another errant put in error path + - drm/sun4i: fix missing component unbind on bind errors + - drm/amd/pm: Fix sienna cichlid incorrect OD volage after resume + - mptcp: fix possible deadlock in subflow_error_report + - mptcp: add ro_after_init for tcp{,v6}_prot_override + - mptcp: avoid setting TCP_CLOSE state twice + - mptcp: fix lockdep false positive in mptcp_pm_nl_create_listen_socket() + - ftrace: Fix invalid address access in lookup_rec() when index is 0 + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Netac NV3000 + - mm/userfaultfd: propagate uffd-wp bit when PTE-mapping the huge zeropage + - mmc: sdhci_am654: lower power-on failed message severity + - fbdev: stifb: Provide valid pixelclock and add fb_check_var() checks + - trace/hwlat: Do not wipe the contents of per-cpu thread data + - net: phy: nxp-c45-tja11xx: fix MII_BASIC_CONFIG_REV bit + - cpuidle: psci: Iterate backwards over list in psci_pd_remove() + - x86/mce: Make sure logged MCEs are processed after sysfs update + - x86/mm: Fix use of uninitialized buffer in sme_enable() + - x86/resctrl: Clear staged_config[] before and after it is used + - drm/i915: Don't use stolen memory for ring buffers with LLC + - drm/i915/active: Fix misuse of non-idle barriers as fence trackers + - io_uring: avoid null-ptr-deref in io_arm_poll_handler + - PCI: Unify delay handling for reset and resume + - PCI/DPC: Await readiness of secondary bus after reset + - HID: core: Provide new max_buffer_size attribute to over-ride the default + - HID: uhid: Over-ride the default maximum data buffer value with our own + - perf: Fix check before add_event_to_groups() in perf_group_detach() + - Linux 5.15.104 + * Jammy update: v5.15.103 upstream stable release (LP: #2023224) + - fs: prevent out-of-bounds array speculation when closing a file descriptor + - btrfs: fix percent calculation for bg reclaim message + - perf inject: Fix --buildid-all not to eat up MMAP2 + - fork: allow CLONE_NEWTIME in clone3 flags + - x86/CPU/AMD: Disable XSAVES on AMD family 0x17 + - drm/amdgpu: fix error checking in amdgpu_read_mm_registers for soc15 + - drm/connector: print max_requested_bpc in state debugfs + - staging: rtl8723bs: Pass correct parameters to cfg80211_get_bss() + - ext4: fix cgroup writeback accounting with fs-layer encryption + - ext4: fix RENAME_WHITEOUT handling for inline directories + - ext4: fix another off-by-one fsmap error on 1k block filesystems + - ext4: move where set the MAY_INLINE_DATA flag is set + - ext4: fix WARNING in ext4_update_inline_data + - ext4: zero i_disksize when initializing the bootloader inode + - nfc: change order inside nfc_se_io error path + - KVM: Optimize kvm_make_vcpus_request_mask() a bit + - KVM: Pre-allocate cpumasks for kvm_make_all_cpus_request_except() + - KVM: Register /dev/kvm as the _very_ last thing during initialization + - KVM: SVM: Don't rewrite guest ICR on AVIC IPI virtualization failure + - KVM: SVM: Process ICR on AVIC IPI delivery failure due to invalid target + - fs: dlm: fix log of lowcomms vs midcomms + - fs: dlm: add midcomms init/start functions + - fs: dlm: start midcomms before scand + - udf: Fix off-by-one error when discarding preallocation + - f2fs: avoid down_write on nat_tree_lock during checkpoint + - f2fs: do not bother checkpoint by f2fs_get_node_info + - f2fs: retry to update the inode page given data corruption + - ipmi:ssif: Increase the message retry time + - ipmi:ssif: Add a timer between request retries + - irqdomain: Refactor __irq_domain_alloc_irqs() + - iommu/vt-d: Fix PASID directory pointer coherency + - block/brd: add error handling support for add_disk() + - brd: mark as nowait compatible + - arm64: efi: Make efi_rt_lock a raw_spinlock + - RISC-V: Avoid dereferening NULL regs in die() + - riscv: Avoid enabling interrupts in die() + - riscv: Add header include guards to insn.h + - scsi: core: Remove the /proc/scsi/${proc_name} directory earlier + - regulator: Flag uncontrollable regulators as always_on + - regulator: core: Fix off-on-delay-us for always-on/boot-on regulators + - regulator: core: Use ktime_get_boottime() to determine how long a regulator + was off + - ext4: Fix possible corruption when moving a directory + - drm/nouveau/kms/nv50-: remove unused functions + - drm/nouveau/kms/nv50: fix nv50_wndw_new_ prototype + - drm/msm: Fix potential invalid ptr free + - drm/msm/a5xx: fix setting of the CP_PREEMPT_ENABLE_LOCAL register + - drm/msm/a5xx: fix highest bank bit for a530 + - drm/msm/a5xx: fix the emptyness check in the preempt code + - drm/msm/a5xx: fix context faults during ring switch + - bgmac: fix *initial* chip reset to support BCM5358 + - nfc: fdp: add null check of devm_kmalloc_array in + fdp_nci_i2c_read_device_properties + - powerpc: dts: t1040rdb: fix compatible string for Rev A boards + - ila: do not generate empty messages in ila_xlat_nl_cmd_get_mapping() + - selftests: nft_nat: ensuring the listening side is up before starting the + client + - perf stat: Fix counting when initial delay configured + - net: lan78xx: fix accessing the LAN7800's internal phy specific registers + from the MAC driver + - net: caif: Fix use-after-free in cfusbl_device_notify() + - ice: copy last block omitted in ice_get_module_eeprom() + - bpf, sockmap: Fix an infinite loop error when len is 0 in + tcp_bpf_recvmsg_parser() + - drm/msm/dpu: fix len of sc7180 ctl blocks + - net: stmmac: add to set device wake up flag when stmmac init phy + - net: phylib: get rid of unnecessary locking + - bnxt_en: Avoid order-5 memory allocation for TPA data + - netfilter: tproxy: fix deadlock due to missing BH disable + - btf: fix resolving BTF_KIND_VAR after ARRAY, STRUCT, UNION, PTR + - net: phy: smsc: Cache interrupt mask + - net: phy: smsc: fix link up detection in forced irq mode + - net: ethernet: mtk_eth_soc: fix RX data corruption issue + - scsi: megaraid_sas: Update max supported LD IDs to 240 + - platform: x86: MLX_PLATFORM: select REGMAP instead of depending on it + - net/smc: fix fallback failed while sendmsg with fastopen + - octeontx2-af: Unlock contexts in the queue context cache in case of fault + detection + - SUNRPC: Fix a server shutdown leak + - net: dsa: mt7530: permit port 5 to work without port 6 on MT7621 SoC + - af_unix: Remove unnecessary brackets around CONFIG_AF_UNIX_OOB. + - af_unix: fix struct pid leaks in OOB support + - riscv: Use READ_ONCE_NOCHECK in imprecise unwinding stack mode + - s390/ftrace: remove dead code + - RISC-V: Don't check text_mutex during stop_machine + - ext4: Fix deadlock during directory rename + - irqdomain: Fix mapping-creation race + - nbd: use the correct block_device in nbd_bdev_reset + - iommu/amd: Add PCI segment support for ivrs_[ioapic/hpet/acpihid] commands + - iommu/amd: Fix ill-formed ivrs_ioapic, ivrs_hpet and ivrs_acpihid options + - iommu/amd: Add a length limitation for the ivrs_acpihid command-line + parameter + - staging: rtl8723bs: clean up comparsions to NULL + - Staging: rtl8723bs: Placing opening { braces in previous line + - staging: rtl8723bs: fix placement of braces + - staging: rtl8723bs: Fix key-store index handling + - watch_queue: fix IOC_WATCH_QUEUE_SET_SIZE alloc error paths + - tpm/eventlog: Don't abort tpm_read_log on faulty ACPI address + - xfs: use setattr_copy to set vfs inode attributes + - xfs: remove XFS_PREALLOC_SYNC + - xfs: fallocate() should call file_modified() + - xfs: set prealloc flag in xfs_alloc_file_space() + - fs: add mode_strip_sgid() helper + - fs: move S_ISGID stripping into the vfs_*() helpers + - attr: add in_group_or_capable() + - fs: move should_remove_suid() + - attr: add setattr_should_drop_sgid() + - attr: use consistent sgid stripping checks + - fs: use consistent setgid checks in is_sxid() + - MIPS: Fix a compilation issue + - powerpc/iommu: fix memory leak with using debugfs_lookup() + - powerpc/kcsan: Exclude udelay to prevent recursive instrumentation + - alpha: fix R_ALPHA_LITERAL reloc for large modules + - macintosh: windfarm: Use unsigned type for 1-bit bitfields + - PCI: Add SolidRun vendor ID + - scripts: handle BrokenPipeError for python scripts + - media: ov5640: Fix analogue gain control + - media: rc: gpio-ir-recv: add remove function + - filelocks: use mount idmapping for setlease permission check + - ext4: refactor ext4_free_blocks() to pull out ext4_mb_clear_bb() + - ext4: add ext4_sb_block_valid() refactored out of ext4_inode_block_valid() + - ext4: add strict range checks while freeing blocks + - ext4: block range must be validated before use in ext4_mb_clear_bb() + - arch: fix broken BuildID for arm64 and riscv + - powerpc/vmlinux.lds: Define RUNTIME_DISCARD_EXIT + - powerpc/vmlinux.lds: Don't discard .rela* for relocatable builds + - s390: define RUNTIME_DISCARD_EXIT to fix link error with GNU ld < 2.36 + - sh: define RUNTIME_DISCARD_EXIT + - tools build: Add feature test for init_disassemble_info API changes + - tools include: add dis-asm-compat.h to handle version differences + - tools perf: Fix compilation error with new binutils + - tools bpf_jit_disasm: Fix compilation error with new binutils + - tools bpftool: Fix compilation error with new binutils + - KVM: fix memoryleak in kvm_init() + - xfs: remove xfs_setattr_time() declaration + - UML: define RUNTIME_DISCARD_EXIT + - fs: hold writers when changing mount's idmapping + - KVM: nVMX: Don't use Enlightened MSR Bitmap for L3 + - KVM: VMX: Introduce vmx_msr_bitmap_l01_changed() helper + - KVM: VMX: Fix crash due to uninitialized current_vmcs + - Makefile: use -gdwarf-{4|5} for assembler for DEBUG_INFO_DWARF{4|5} + - Linux 5.15.103 + * Jammy update: v5.15.102 upstream stable release (LP: #2020393) + - staging: rtl8192e: Remove function ..dm_check_ac_dc_power calling a script + - staging: rtl8192e: Remove call_usermodehelper starting RadioPower.sh + - Linux 5.15.102 + * Jammy update: v5.15.101 upstream stable release (LP: #2020391) + - Linux 5.15.101 + * Jammy update: v5.15.100 upstream stable release (LP: #2020387) + - auxdisplay: hd44780: Fix potential memory leak in hd44780_remove() + - fs/jfs: fix shift exponent db_agl2size negative + - objtool: Fix memory leak in create_static_call_sections() + - pwm: sifive: Reduce time the controller lock is held + - pwm: sifive: Always let the first pwm_apply_state succeed + - pwm: stm32-lp: fix the check on arr and cmp registers update + - f2fs: use memcpy_{to,from}_page() where possible + - fs: f2fs: initialize fsdata in pagecache_write() + - f2fs: allow set compression option of files without blocks + - um: vector: Fix memory leak in vector_config + - ubi: ensure that VID header offset + VID header size <= alloc, size + - ubifs: Fix build errors as symbol undefined + - ubifs: Rectify space budget for ubifs_symlink() if symlink is encrypted + - ubifs: Rectify space budget for ubifs_xrename() + - ubifs: Fix wrong dirty space budget for dirty inode + - ubifs: do_rename: Fix wrong space budget when target inode's nlink > 1 + - ubifs: Reserve one leb for each journal head while doing budget + - ubi: Fix use-after-free when volume resizing failed + - ubi: Fix unreferenced object reported by kmemleak in ubi_resize_volume() + - ubifs: Fix memory leak in alloc_wbufs() + - ubi: Fix possible null-ptr-deref in ubi_free_volume() + - ubifs: Re-statistic cleaned znode count if commit failed + - ubifs: ubifs_writepage: Mark page dirty after writing inode failed + - ubi: fastmap: Fix missed fm_anchor PEB in wear-leveling after disabling + fastmap + - ubi: Fix UAF wear-leveling entry in eraseblk_count_seq_show() + - ubi: ubi_wl_put_peb: Fix infinite loop when wear-leveling work failed + - f2fs: fix to avoid potential memory corruption in __update_iostat_latency() + - ext4: use ext4_fc_tl_mem in fast-commit replay path + - netfilter: nf_tables: allow to fetch set elements when table has an owner + - x86: um: vdso: Add '%rcx' and '%r11' to the syscall clobber list + - um: virtio_uml: free command if adding to virtqueue failed + - um: virtio_uml: mark device as unregistered when breaking it + - um: virtio_uml: move device breaking into workqueue + - um: virt-pci: properly remove PCI device from bus + - watchdog: at91sam9_wdt: use devm_request_irq to avoid missing free_irq() in + error path + - watchdog: Fix kmemleak in watchdog_cdev_register + - watchdog: pcwd_usb: Fix attempting to access uninitialized memory + - watchdog: sbsa_wdog: Make sure the timeout programming is within the limits + - netfilter: ctnetlink: fix possible refcount leak in + ctnetlink_create_conntrack() + - netfilter: ebtables: fix table blob use-after-free + - netfilter: x_tables: fix percpu counter block leak on error path when + creating new netns + - ipv6: Add lwtunnel encap size of all siblings in nexthop calculation + - sctp: add a refcnt in sctp_stream_priorities to avoid a nested loop + - octeontx2-pf: Use correct struct reference in test condition + - net: fix __dev_kfree_skb_any() vs drop monitor + - 9p/xen: fix version parsing + - 9p/xen: fix connection sequence + - 9p/rdma: unmap receive dma buffer in rdma_request()/post_recv() + - net/mlx5e: Verify flow_source cap before using it + - net/mlx5: Geneve, Fix handling of Geneve object id as error code + - nfc: fix memory leak of se_io context in nfc_genl_se_io + - net/sched: transition act_pedit to rcu and percpu stats + - net/sched: act_pedit: fix action bind logic + - net/sched: act_mpls: fix action bind logic + - net/sched: act_sample: fix action bind logic + - ARM: dts: spear320-hmi: correct STMPE GPIO compatible + - tcp: tcp_check_req() can be called from process context + - vc_screen: modify vcs_size() handling in vcs_read() + - rtc: sun6i: Always export the internal oscillator + - genirq: Refactor accessors to use irq_data_get_affinity_mask + - genirq: Add and use an irq_data_update_affinity helper + - scsi: ipr: Work around fortify-string warning + - rtc: allow rtc_read_alarm without read_alarm callback + - loop: loop_set_status_from_info() check before assignment + - ASoC: adau7118: don't disable regulators on device unbind + - ASoC: zl38060: Remove spurious gpiolib select + - ASoC: zl38060 add gpiolib dependency + - ASoC: mediatek: mt8195: add missing initialization + - thermal: intel: quark_dts: fix error pointer dereference + - thermal: intel: BXT_PMIC: select REGMAP instead of depending on it + - tracing: Add NULL checks for buffer in ring_buffer_free_read_page() + - kernel/printk/index.c: fix memory leak with using debugfs_lookup() + - firmware/efi sysfb_efi: Add quirk for Lenovo IdeaPad Duet 3 + - bootconfig: Increase max nodes of bootconfig from 1024 to 8192 for DCC + support + - mfd: arizona: Use pm_runtime_resume_and_get() to prevent refcnt leak + - IB/hfi1: Update RMT size calculation + - iommu/amd: Fix error handling for pdev_pri_ats_enable() + - media: uvcvideo: Remove format descriptions + - media: uvcvideo: Handle cameras with invalid descriptors + - media: uvcvideo: Handle errors from calls to usb_string + - media: uvcvideo: Quirk for autosuspend in Logitech B910 and C910 + - media: uvcvideo: Silence memcpy() run-time false positive warnings + - USB: fix memory leak with using debugfs_lookup() + - staging: emxx_udc: Add checks for dma_alloc_coherent() + - tty: fix out-of-bounds access in tty_driver_lookup_tty() + - tty: serial: fsl_lpuart: disable the CTS when send break signal + - serial: sc16is7xx: setup GPIO controller later in probe + - mei: bus-fixup:upon error print return values of send and receive + - tools/iio/iio_utils:fix memory leak + - iio: accel: mma9551_core: Prevent uninitialized variable in + mma9551_read_status_word() + - iio: accel: mma9551_core: Prevent uninitialized variable in + mma9551_read_config_word() + - soundwire: bus_type: Avoid lockdep assert in sdw_drv_probe() + - PCI: loongson: Prevent LS7A MRRS increases + - USB: dwc3: fix memory leak with using debugfs_lookup() + - USB: chipidea: fix memory leak with using debugfs_lookup() + - USB: uhci: fix memory leak with using debugfs_lookup() + - USB: sl811: fix memory leak with using debugfs_lookup() + - USB: fotg210: fix memory leak with using debugfs_lookup() + - USB: isp116x: fix memory leak with using debugfs_lookup() + - USB: isp1362: fix memory leak with using debugfs_lookup() + - USB: gadget: gr_udc: fix memory leak with using debugfs_lookup() + - USB: gadget: bcm63xx_udc: fix memory leak with using debugfs_lookup() + - USB: gadget: lpc32xx_udc: fix memory leak with using debugfs_lookup() + - USB: gadget: pxa25x_udc: fix memory leak with using debugfs_lookup() + - USB: gadget: pxa27x_udc: fix memory leak with using debugfs_lookup() + - usb: host: xhci: mvebu: Iterate over array indexes instead of using pointer + math + - USB: ene_usb6250: Allocate enough memory for full object + - usb: uvc: Enumerate valid values for color matching + - usb: gadget: uvc: Make bSourceID read/write + - PCI: Align extra resources for hotplug bridges properly + - PCI: Take other bus devices into account when distributing resources + - tty: pcn_uart: fix memory leak with using debugfs_lookup() + - misc: vmw_balloon: fix memory leak with using debugfs_lookup() + - drivers: base: component: fix memory leak with using debugfs_lookup() + - drivers: base: dd: fix memory leak with using debugfs_lookup() + - kernel/fail_function: fix memory leak with using debugfs_lookup() + - PCI: loongson: Add more devices that need MRRS quirk + - PCI: Add ACS quirk for Wangxun NICs + - phy: rockchip-typec: Fix unsigned comparison with less than zero + - soundwire: cadence: Remove wasted space in response_buf + - soundwire: cadence: Drain the RX FIFO after an IO timeout + - net: tls: avoid hanging tasks on the tx_lock + - x86/resctl: fix scheduler confusion with 'current' + - drm/display/dp_mst: Fix down/up message handling after sink disconnect + - drm/display/dp_mst: Fix down message handling after a packet reception error + - Bluetooth: hci_sock: purge socket queues in the destruct() callback + - media: uvcvideo: Fix race condition with usb_kill_urb + - drm/virtio: Fix error code in virtio_gpu_object_shmem_init() + - Revert "scsi: mpt3sas: Fix return value check of dma_get_required_mask()" + - scsi: mpt3sas: Don't change DMA mask while reallocating pools + - scsi: mpt3sas: re-do lost mpt3sas DMA mask fix + - scsi: mpt3sas: Remove usage of dma_get_required_mask() API + - malidp: Fix NULL vs IS_ERR() checking + - usb: gadget: uvc: fix missing mutex_unlock() if kstrtou8() fails + - Linux 5.15.100 + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + - [Packaging] update annotations scripts + + -- Tim Gardner Wed, 19 Jul 2023 10:15:03 -0600 + +linux-azure-5.15 (5.15.0-1042.49~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1042.49~20.04.1 -proposed tracker + (LP: #2026410) + + [ Ubuntu: 5.15.0-1042.49 ] + + * jammy/linux-azure: 5.15.0-1042.49 -proposed tracker (LP: #2026411) + * jammy/linux: 5.15.0-78.85 -proposed tracker (LP: #2026448) + * CVE-2023-35001 + - netfilter: nf_tables: prevent OOB access in nft_byteorder_eval + * CVE-2023-31248 + - netfilter: nf_tables: do not ignore genmask when looking up chain by id + * CVE-2023-3389 + - io_uring: hold uring mutex around poll removal + * CVE-2023-3439 + - mctp: Add refcounts to mctp_dev + - mctp: Allow MCTP on tun devices + - mctp: make __mctp_dev_get() take a refcount hold + - mctp: defer the kfree of object mdev->addrs + * CVE-2023-3390 + - netfilter: nf_tables: incorrect error path handling with NFT_MSG_NEWRULE + * CVE-2023-3090 + - ipvlan:Fix out-of-bounds caused by unclear skb->cb + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + + -- Tim Gardner Wed, 12 Jul 2023 06:24:18 -0600 + +linux-azure-5.15 (5.15.0-1041.48~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1041.48~20.04.1 -proposed tracker + (LP: #2023868) + + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + + [ Ubuntu: 5.15.0-1041.48 ] + + * jammy/linux-azure: 5.15.0-1041.48 -proposed tracker (LP: #2023869) + * jammy/linux: 5.15.0-76.83 -proposed tracker (LP: #2023905) + * cls_flower: off-by-one in fl_set_geneve_opt (LP: #2023577) + - net/sched: flower: fix possible OOB write in fl_set_geneve_opt() + * Some INVLPG implementations can leave Global translations unflushed when + PCIDs are enabled (LP: #2023220) + - x86/mm: Avoid incomplete Global INVLPG flushes + * jammy/linux: 5.15.0-75.82 -proposed tracker (LP: #2023065) + * Jammy update: v5.15.102 upstream stable release (LP: #2020393) + - wifi: cfg80211: Partial revert "wifi: cfg80211: Fix use after free for wext" + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] resync getabis + * fix typo in config-checks invocation (LP: #2020413) + - [Packaging] fix typo when calling the old config-check + - [Packaging] fix typo in 4-checks.mk + * support python < 3.9 with annotations (LP: #2020531) + - [Packaging] kconfig/annotations.py: support older way of merging dicts + + -- Tim Gardner Wed, 21 Jun 2023 08:38:16 -0600 + +linux-azure-5.15 (5.15.0-1040.47~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1040.47~20.04.1 -proposed tracker + (LP: #2019384) + + * Use new annotations model (LP: #2019000) + - [Config] azure-5.15: migrate all configs into annotations + + [ Ubuntu: 5.15.0-1040.47 ] + + * jammy/linux-azure: 5.15.0-1040.47 -proposed tracker (LP: #2019385) + * Use new annotations model (LP: #2019000) + - [Config] azure: migrate all configs into annotations + * fix typo in config-checks invocation (LP: #2020413) + - [Packaging] fix typo when calling the old config-check + - [Packaging] fix typo in 4-checks.mk + * support python < 3.9 with annotations (LP: #2020531) + - [Packaging] kconfig/annotations.py: support older way of merging dicts + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] resync getabis + * Azure: Limit Hyperv error messages (LP: #2019009) + - drm/hyperv: Don't overwrite dirt_needed value set by host + - drm/hyperv: Add ratelimit on error message + * Azure: Enable MANA Jumbo Frame Support reprise (LP: #2018593) + - net: mana: Rename mana_refill_rxoob and remove some empty lines + - net: mana: Check if netdev/napi_alloc_frag returns single page + * Miscellaneous Ubuntu changes + - [Config] azure: Ignore ABI + * jammy/linux: 5.15.0-74.81 -proposed tracker (LP: #2019420) + * smartpqi: Update 22.04 driver to include recent bug fixes and support + current generation devices (LP: #1998643) + - scsi: smartpqi: Switch to attribute groups + - scsi: smartpqi: Fix rmmod stack trace + - scsi: smartpqi: Add PCI IDs + - scsi: smartpqi: Enable SATA NCQ priority in sysfs + - scsi: smartpqi: Eliminate drive spin down on warm boot + - scsi: smartpqi: Quickly propagate path failures to SCSI midlayer + - scsi: smartpqi: Fix a name typo and cleanup code + - scsi: smartpqi: Fix a typo in func pqi_aio_submit_io() + - scsi: smartpqi: Resolve delay issue with PQI_HZ value + - scsi: smartpqi: Avoid drive spin-down during suspend + - scsi: smartpqi: Update volume size after expansion + - scsi: smartpqi: Speed up RAID 10 sequential reads + - scsi: smartpqi: Expose SAS address for SATA drives + - scsi: smartpqi: Fix NUMA node not updated during init + - scsi: smartpqi: Fix BUILD_BUG_ON() statements + - scsi: smartpqi: Fix hibernate and suspend + - scsi: smartpqi: Fix lsscsi -t SAS addresses + - scsi: smartpqi: Update version to 2.1.14-035 + - scsi: smartpqi: Fix unused variable pqi_pm_ops for clang + - scsi: smartpqi: Stop using the SCSI pointer + - scsi: smartpqi: Fix typo in comment + - scsi: smartpqi: Shorten drive visibility after removal + - scsi: smartpqi: Add controller fw version to console log + - scsi: smartpqi: Add PCI IDs for ramaxel controllers + - scsi: smartpqi: Close write read holes + - scsi: smartpqi: Add driver support for multi-LUN devices + - scsi: smartpqi: Fix PCI control linkdown system hang + - scsi: smartpqi: Add PCI ID for Adaptec SmartHBA 2100-8i + - scsi: smartpqi: Add PCI IDs for Lenovo controllers + - scsi: smartpqi: Stop logging spurious PQI reset failures + - scsi: smartpqi: Fix RAID map race condition + - scsi: smartpqi: Add module param to disable managed ints + - scsi: smartpqi: Update deleting a LUN via sysfs + - scsi: smartpqi: Add ctrl ready timeout module parameter + - scsi: smartpqi: Update copyright to current year + - scsi: smartpqi: Update version to 2.1.18-045 + - scsi: smartpqi: Convert to host_tagset + - scsi: smartpqi: Add new controller PCI IDs + - scsi: smartpqi: Correct max LUN number + - scsi: smartpqi: Change sysfs raid_level attribute to N/A for controllers + - scsi: smartpqi: Correct device removal for multi-actuator devices + - scsi: smartpqi: Add controller cache flush during rmmod + - scsi: smartpqi: Initialize feature section info + - scsi: smartpqi: Change version to 2.1.20-035 + * CVE-2023-32233 + - netfilter: nf_tables: deactivate anonymous set from preparation phase + * CVE-2023-2612 + - SAUCE: shiftfs: prevent lock unbalance in shiftfs_create_object() + * CVE-2023-31436 + - net: sched: sch_qfq: prevent slab-out-of-bounds in qfq_activate_agg + * CVE-2023-1380 + - wifi: brcmfmac: slab-out-of-bounds read in brcmf_get_assoc_ies() + * Add PPIN support for Intel EMR cpu (LP: #2019131) + - x86/cpu: Merge Intel and AMD ppin_init() functions + - x86/cpu: Add Xeon Emerald Rapids to list of CPUs that support PPIN + * conntrack mark is not advertised via netlink (LP: #2016269) + - netfilter: ctnetlink: revert to dumping mark regardless of event type + * [SRU] Backport request for hpwdt from upstream 6.1 to Jammy (LP: #2008751) + - watchdog/hpwdt: Enable HP_WATCHDOG for ARM64 systems. + - watchdog/hpwdt: Include nmi.h only if CONFIG_HPWDT_NMI_DECODING + - [Config] Add arm64 option to CONFIG_HP_WATCHDOG + * Ubuntu 22.04 raise abnormal NIC MSI-X requests with larger CPU cores (256) + (LP: #2012335) + - ice: Allow operation with reduced device MSI-X + * Dell: Enable speaker mute hotkey LED indicator (LP: #2015972) + - platform/x86: dell-laptop: Register ctl-led for speaker-mute + * [SRU]With "Performance per Watt (DAPC)" enabled in the BIOS, Bootup time is + taking longer than expected (LP: #2008527) + - cpufreq: ACPI: Defer setting boost MSRs + * [SRU][Jammy] CONFIG_PCI_MESON is not enabled (LP: #2007745) + - [Config] arm64: Enable PCI_MESON module + * Jammy update: v5.15.99 upstream stable release (LP: #2018438) + - HID: asus: use spinlock to protect concurrent accesses + - HID: asus: use spinlock to safely schedule workers + - powerpc/mm: Rearrange if-else block to avoid clang warning + - ARM: OMAP2+: Fix memory leak in realtime_counter_init() + - arm64: dts: qcom: qcs404: use symbol names for PCIe resets + - arm64: dts: qcom: msm8996-tone: Fix USB taking 6 minutes to wake up + - arm64: dts: qcom: sm8150-kumano: Panel framebuffer is 2.5k instead of 4k + - arm64: dts: qcom: sm6125: Reorder HSUSB PHY clocks to match bindings + - arm64: dts: imx8m: Align SoC unique ID node unit address + - ARM: zynq: Fix refcount leak in zynq_early_slcr_init + - arm64: dts: mediatek: mt8183: Fix systimer 13 MHz clock description + - arm64: dts: qcom: sdm845-db845c: fix audio codec interrupt pin name + - arm64: dts: qcom: sc7180: correct SPMI bus address cells + - arm64: dts: qcom: sc7280: correct SPMI bus address cells + - arm64: dts: meson-gx: Fix Ethernet MAC address unit name + - arm64: dts: meson-g12a: Fix internal Ethernet PHY unit name + - arm64: dts: meson-gx: Fix the SCPI DVFS node name and unit address + - arm64: dts: msm8992-bullhead: add memory hole region + - arm64: dts: qcom: msm8992-bullhead: Fix cont_splash_mem size + - arm64: dts: qcom: msm8992-bullhead: Disable dfps_data_mem + - arm64: dts: qcom: ipq8074: correct USB3 QMP PHY-s clock output names + - arm64: dts: qcom: Fix IPQ8074 PCIe PHY nodes + - arm64: dts: qcom: ipq8074: fix PCIe PHY serdes size + - arm64: dts: qcom: ipq8074: fix Gen3 PCIe QMP PHY + - arm64: dts: qcom: ipq8074: correct Gen2 PCIe ranges + - arm64: dts: qcom: ipq8074: fix Gen3 PCIe node + - arm64: dts: qcom: ipq8074: correct PCIe QMP PHY output clock names + - arm64: dts: meson: remove CPU opps below 1GHz for G12A boards + - ARM: OMAP1: call platform_device_put() in error case in + omap1_dm_timer_init() + - ARM: bcm2835_defconfig: Enable the framebuffer + - ARM: s3c: fix s3c64xx_set_timer_source prototype + - arm64: dts: ti: k3-j7200: Fix wakeup pinmux range + - ARM: dts: exynos: correct wr-active property in Exynos3250 Rinato + - ARM: imx: Call ida_simple_remove() for ida_simple_get + - arm64: dts: amlogic: meson-gx: fix SCPI clock dvfs node name + - arm64: dts: amlogic: meson-axg: fix SCPI clock dvfs node name + - arm64: dts: amlogic: meson-gx: add missing SCPI sensors compatible + - arm64: dts: amlogic: meson-gxl-s905d-sml5442tw: drop invalid clock-names + property + - arm64: dts: amlogic: meson-gx: add missing unit address to rng node name + - arm64: dts: amlogic: meson-gxl: add missing unit address to eth-phy-mux node + name + - arm64: dts: amlogic: meson-gx-libretech-pc: fix update button name + - arm64: dts: amlogic: meson-sm1-bananapi-m5: fix adc keys node names + - arm64: dts: amlogic: meson-gxl-s905d-phicomm-n1: fix led node name + - arm64: dts: amlogic: meson-gxbb-kii-pro: fix led node name + - arm64: dts: amlogic: meson-sm1-odroid-hc4: fix active fan thermal trip + - locking/rwsem: Optimize down_read_trylock() under highly contended case + - locking/rwsem: Disable preemption in all down_read*() and up_read() code + paths + - arm64: dts: renesas: beacon-renesom: Fix gpio expander reference + - arm64: dts: meson: bananapi-m5: switch VDDIO_C pin to OPEN_DRAIN + - ARM: dts: sun8i: nanopi-duo2: Fix regulator GPIO reference + - ARM: dts: imx7s: correct iomuxc gpr mux controller cells + - arm64: dts: mt8192: Fix CPU map for single-cluster SoC + - arm64: dts: mediatek: mt7622: Add missing pwm-cells to pwm node + - blk-mq: avoid sleep in blk_mq_alloc_request_hctx + - blk-mq: remove stale comment for blk_mq_sched_mark_restart_hctx + - blk-mq: correct stale comment of .get_budget + - arm64: dts: qcom: msm8992-lg-bullhead: Correct memory overlaps with the SMEM + and MPSS memory regions + - s390/dasd: Fix potential memleak in dasd_eckd_init() + - sched/deadline,rt: Remove unused parameter from pick_next_[rt|dl]_entity() + - sched/rt: pick_next_rt_entity(): check list_entry + - x86/perf/zhaoxin: Add stepping check for ZXC + - KEYS: asymmetric: Fix ECDSA use via keyctl uapi + - arm64: dts: qcom: pmk8350: Specify PBS register for PON + - arm64: dts: qcom: pmk8350: Use the correct PON compatible + - block: bio-integrity: Copy flags when bio_integrity_payload is cloned + - wifi: rsi: Fix memory leak in rsi_coex_attach() + - wifi: rtlwifi: rtl8821ae: don't call kfree_skb() under spin_lock_irqsave() + - wifi: rtlwifi: rtl8188ee: don't call kfree_skb() under spin_lock_irqsave() + - wifi: rtlwifi: rtl8723be: don't call kfree_skb() under spin_lock_irqsave() + - wifi: iwlegacy: common: don't call dev_kfree_skb() under spin_lock_irqsave() + - wifi: libertas: fix memory leak in lbs_init_adapter() + - wifi: rtl8xxxu: don't call dev_kfree_skb() under spin_lock_irqsave() + - wifi: rtlwifi: Fix global-out-of-bounds bug in + _rtl8812ae_phy_set_txpower_limit() + - libbpf: Fix btf__align_of() by taking into account field offsets + - wifi: ipw2x00: don't call dev_kfree_skb() under spin_lock_irqsave() + - wifi: ipw2200: fix memory leak in ipw_wdev_init() + - wifi: wilc1000: fix potential memory leak in wilc_mac_xmit() + - wifi: brcmfmac: fix potential memory leak in brcmf_netdev_start_xmit() + - wifi: brcmfmac: unmap dma buffer in brcmf_msgbuf_alloc_pktid() + - wifi: libertas_tf: don't call kfree_skb() under spin_lock_irqsave() + - wifi: libertas: if_usb: don't call kfree_skb() under spin_lock_irqsave() + - wifi: libertas: main: don't call kfree_skb() under spin_lock_irqsave() + - wifi: libertas: cmdresp: don't call kfree_skb() under spin_lock_irqsave() + - wifi: wl3501_cs: don't call kfree_skb() under spin_lock_irqsave() + - crypto: x86/ghash - fix unaligned access in ghash_setkey() + - ACPICA: Drop port I/O validation for some regions + - genirq: Fix the return type of kstat_cpu_irqs_sum() + - rcu-tasks: Improve comments explaining tasks_rcu_exit_srcu purpose + - rcu-tasks: Remove preemption disablement around srcu_read_[un]lock() calls + - rcu-tasks: Fix synchronize_rcu_tasks() VS zap_pid_ns_processes() + - lib/mpi: Fix buffer overrun when SG is too long + - crypto: ccp - Avoid page allocation failure warning for SEV_GET_ID2 + - ACPICA: nsrepair: handle cases without a return value correctly + - thermal/drivers/tsens: Drop msm8976-specific defines + - thermal/drivers/tsens: Add compat string for the qcom,msm8960 + - thermal/drivers/tsens: Sort out msm8976 vs msm8956 data + - thermal/drivers/tsens: fix slope values for msm8939 + - thermal/drivers/tsens: limit num_sensors to 9 for msm8939 + - wifi: rtl8xxxu: Fix memory leaks with RTL8723BU, RTL8192EU + - wifi: orinoco: check return value of hermes_write_wordrec() + - wifi: ath9k: htc_hst: free skb in ath9k_htc_rx_msg() if there is no callback + function + - ath9k: hif_usb: simplify if-if to if-else + - ath9k: htc: clean up statistics macros + - wifi: ath9k: hif_usb: clean up skbs if ath9k_hif_usb_rx_stream() fails + - wifi: ath9k: Fix potential stack-out-of-bounds write in + ath9k_wmi_rsp_callback() + - wifi: ath11k: Fix memory leak in ath11k_peer_rx_frag_setup + - wifi: cfg80211: Fix extended KCK key length check in + nl80211_set_rekey_data() + - ACPI: battery: Fix missing NUL-termination with large strings + - crypto: ccp - Failure on re-initialization due to duplicate sysfs filename + - crypto: essiv - Handle EBUSY correctly + - crypto: seqiv - Handle EBUSY correctly + - powercap: fix possible name leak in powercap_register_zone() + - x86: Mark stop_this_cpu() __noreturn + - x86/microcode: Rip out the OLD_INTERFACE + - [Config] Drop MICROCODE_OLD_INTERFACE + - x86/microcode: Default-disable late loading + - x86/microcode: Print previous version of microcode after reload + - x86/microcode: Add a parameter to microcode_check() to store CPU + capabilities + - x86/microcode: Check CPU capabilities after late microcode update correctly + - x86/microcode: Adjust late loading result reporting message + - crypto: xts - Handle EBUSY correctly + - leds: led-class: Add missing put_device() to led_put() + - crypto: ccp - Refactor out sev_fw_alloc() + - crypto: ccp - Flush the SEV-ES TMR memory before giving it to firmware + - bpftool: profile online CPUs instead of possible + - mt76: mt7915: fix polling firmware-own status + - net/mlx5: Enhance debug print in page allocation failure + - irqchip: Fix refcount leak in platform_irqchip_probe + - irqchip/alpine-msi: Fix refcount leak in alpine_msix_init_domains + - irqchip/irq-mvebu-gicp: Fix refcount leak in mvebu_gicp_probe + - irqchip/ti-sci: Fix refcount leak in ti_sci_intr_irq_domain_probe + - s390/mem_detect: fix detect_memory() error handling + - s390/vmem: fix empty page tables cleanup under KASAN + - net: add sock_init_data_uid() + - tun: tun_chr_open(): correctly initialize socket uid + - tap: tap_open(): correctly initialize socket uid + - OPP: fix error checking in opp_migrate_dentry() + - Bluetooth: L2CAP: Fix potential user-after-free + - Bluetooth: hci_qca: get wakeup status from serdev device handle + - s390/ap: fix status returned by ap_aqic() + - s390/ap: fix status returned by ap_qact() + - libbpf: Fix alen calculation in libbpf_nla_dump_errormsg() + - rds: rds_rm_zerocopy_callback() correct order for list_add_tail() + - crypto: rsa-pkcs1pad - Use akcipher_request_complete + - m68k: /proc/hardware should depend on PROC_FS + - RISC-V: time: initialize hrtimer based broadcast clock event device + - wifi: iwl3945: Add missing check for create_singlethread_workqueue + - wifi: iwl4965: Add missing check for create_singlethread_workqueue() + - wifi: mwifiex: fix loop iterator in mwifiex_update_ampdu_txwinsize() + - selftests/bpf: Fix out-of-srctree build + - ACPI: resource: Add IRQ overrides for MAINGEAR Vector Pro 2 models + - ACPI: resource: Do IRQ override on all TongFang GMxRGxx + - crypto: crypto4xx - Call dma_unmap_page when done + - wifi: mac80211: make rate u32 in sta_set_rate_info_rx() + - thermal/drivers/hisi: Drop second sensor hi3660 + - can: esd_usb: Move mislocated storage of SJA1000_ECC_SEG bits in case of a + bus error + - bpf: Fix global subprog context argument resolution logic + - irqchip/irq-brcmstb-l2: Set IRQ_LEVEL for level triggered interrupts + - irqchip/irq-bcm7120-l2: Set IRQ_LEVEL for level triggered interrupts + - selftests/net: Interpret UDP_GRO cmsg data as an int value + - l2tp: Avoid possible recursive deadlock in l2tp_tunnel_register() + - net: bcmgenet: fix MoCA LED control + - sefltests: netdevsim: wait for devlink instance after netns removal + - drm: Fix potential null-ptr-deref due to drmm_mode_config_init() + - drm/fourcc: Add missing big-endian XRGB1555 and RGB565 formats + - drm/bridge: ti-sn65dsi83: Fix delay after reset deassert to match spec + - drm: mxsfb: DRM_MXSFB should depend on ARCH_MXS || ARCH_MXC + - [Config] Drop DRM_MXSFB for armhf-generic-lpae + - drm/bridge: megachips: Fix error handling in i2c_register_driver() + - drm/vkms: Fix memory leak in vkms_init() + - drm/vkms: Fix null-ptr-deref in vkms_release() + - drm/vc4: dpi: Add option for inverting pixel clock and output enable + - drm/vc4: dpi: Fix format mapping for RGB565 + - drm: tidss: Fix pixel format definition + - gpu: ipu-v3: common: Add of_node_put() for reference returned by + of_graph_get_port_by_id() + - hwmon: (ftsteutates) Fix scaling of measurements + - drm/msm/hdmi: Add missing check for alloc_ordered_workqueue + - pinctrl: qcom: pinctrl-msm8976: Correct function names for wcss pins + - pinctrl: stm32: Fix refcount leak in stm32_pctrl_get_irq_domain + - pinctrl: rockchip: Fix refcount leak in rockchip_pinctrl_parse_groups + - drm/vc4: hvs: Set AXI panic modes + - drm/vc4: hvs: Fix colour order for xRGB1555 on HVS5 + - drm/vc4: hdmi: Correct interlaced timings again + - drm/msm: clean event_thread->worker in case of an error + - scsi: qla2xxx: edif: Fix I/O timeout due to over-subscription + - scsi: qla2xxx: Fix exchange oversubscription + - scsi: qla2xxx: Fix exchange oversubscription for management commands + - ASoC: fsl_sai: Update to modern clocking terminology + - ASoC: fsl_sai: initialize is_dsp_mode flag + - drm/msm/adreno: Fix null ptr access in adreno_gpu_cleanup() + - ALSA: hda/ca0132: minor fix for allocation size + - drm/msm/gem: Add check for kmalloc + - drm/msm/dpu: Disallow unallocated resources to be returned + - drm/bridge: lt9611: fix sleep mode setup + - drm/bridge: lt9611: fix HPD reenablement + - drm/bridge: lt9611: fix polarity programming + - drm/bridge: lt9611: fix programming of video modes + - drm/bridge: lt9611: fix clock calculation + - drm/bridge: lt9611: pass a pointer to the of node + - drm/mipi-dsi: Fix byte order of 16-bit DCS set/get brightness + - drm: exynos: dsi: Fix MIPI_DSI*_NO_* mode flags + - drm/msm/dsi: Allow 2 CTRLs on v2.5.0 + - drm/msm: use strscpy instead of strncpy + - drm/msm/dpu: Add check for cstate + - drm/msm/dpu: Add check for pstates + - drm/msm/mdp5: Add check for kzalloc + - pinctrl: bcm2835: Remove of_node_put() in bcm2835_of_gpio_ranges_fallback() + - pinctrl: mediatek: fix coding style + - pinctrl: mediatek: Initialize variable pullen and pullup to zero + - pinctrl: mediatek: Initialize variable *buf to zero + - gpu: host1x: Don't skip assigning syncpoints to channels + - drm/tegra: firewall: Check for is_addr_reg existence in IMM check + - drm/msm/dpu: set pdpu->is_rt_pipe early in dpu_plane_sspp_atomic_update() + - drm/mediatek: dsi: Reduce the time of dsi from LP11 to sending cmd + - drm/mediatek: Use NULL instead of 0 for NULL pointer + - drm/mediatek: Drop unbalanced obj unref + - drm/mediatek: mtk_drm_crtc: Add checks for devm_kcalloc + - drm/mediatek: Clean dangling pointer on bind error path + - ASoC: soc-compress.c: fixup private_data on snd_soc_new_compress() + - gpio: vf610: connect GPIO label to dev name + - spi: dw_bt1: fix MUX_MMIO dependencies + - ASoC: mchp-spdifrx: fix controls which rely on rsr register + - ASoC: mchp-spdifrx: fix return value in case completion times out + - ASoC: mchp-spdifrx: fix controls that works with completion mechanism + - ASoC: mchp-spdifrx: disable all interrupts in mchp_spdifrx_dai_remove() + - ASoC: rsnd: fixup #endif position + - ASoC: mchp-spdifrx: Fix uninitialized use of mr in mchp_spdifrx_hw_params() + - ASoC: dt-bindings: meson: fix gx-card codec node regex + - hwmon: (ltc2945) Handle error case in ltc2945_value_store + - drm/amdgpu: fix enum odm_combine_mode mismatch + - scsi: mpt3sas: Fix a memory leak + - scsi: aic94xx: Add missing check for dma_map_single() + - HID: multitouch: Add quirks for flipped axes + - HID: retain initial quirks set up when creating HID devices + - ASoC: codecs: Change bulk clock voting to optional voting in digital codecs + - ASoC: codecs: rx-macro: move clk provider to managed variants + - ASoC: codecs: tx-macro: move clk provider to managed variants + - ASoC: codecs: rx-macro: move to individual clks from bulk + - ASoC: codecs: tx-macro: move to individual clks from bulk + - ASoC: codecs: lpass: fix incorrect mclk rate + - spi: bcm63xx-hsspi: Fix multi-bit mode setting + - hwmon: (mlxreg-fan) Return zero speed for broken fan + - ASoC: tlv320adcx140: fix 'ti,gpio-config' DT property init + - dm: remove flush_scheduled_work() during local_exit() + - NFSv4: keep state manager thread active if swap is enabled + - nfs4trace: fix state manager flag printing + - NFS: fix disabling of swap + - spi: synquacer: Fix timeout handling in synquacer_spi_transfer_one() + - ASoC: soc-dapm.h: fixup warning struct snd_pcm_substream not declared + - HID: bigben: use spinlock to protect concurrent accesses + - HID: bigben_worker() remove unneeded check on report_field + - HID: bigben: use spinlock to safely schedule workers + - hid: bigben_probe(): validate report count + - drm/shmem-helper: Fix locking for drm_gem_shmem_get_pages_sgt() + - nfsd: fix race to check ls_layouts + - cifs: Fix lost destroy smbd connection when MR allocate failed + - cifs: Fix warning and UAF when destroy the MR list + - gfs2: jdata writepage fix + - perf llvm: Fix inadvertent file creation + - leds: led-core: Fix refcount leak in of_led_get() + - perf inject: Use perf_data__read() for auxtrace + - perf intel-pt: Add documentation for Event Trace and TNT disable + - perf intel-pt: Add link to the perf wiki's Intel PT page + - perf intel-pt: Add support for emulated ptwrite + - perf intel-pt: Do not try to queue auxtrace data on pipe + - perf tools: Fix auto-complete on aarch64 + - sparc: allow PM configs for sparc32 COMPILE_TEST + - printf: fix errname.c list + - objtool: add UACCESS exceptions for __tsan_volatile_read/write + - mfd: cs5535: Don't build on UML + - mfd: pcf50633-adc: Fix potential memleak in pcf50633_adc_async_read() + - dmaengine: idxd: Set traffic class values in GRPCFG on DSA 2.0 + - dmaengine: HISI_DMA should depend on ARCH_HISI + - [Config] Add HISI_DMA=n for armhf + - iio: light: tsl2563: Do not hardcode interrupt trigger type + - usb: gadget: fusb300_udc: free irq on the error path in fusb300_probe() + - i2c: designware: fix i2c_dw_clk_rate() return size to be u32 + - soundwire: cadence: Don't overflow the command FIFOs + - driver core: fix potential null-ptr-deref in device_add() + - kobject: modify kobject_get_path() to take a const * + - kobject: Fix slab-out-of-bounds in fill_kobj_path() + - alpha/boot/tools/objstrip: fix the check for ELF header + - media: uvcvideo: Do not check for V4L2_CTRL_WHICH_DEF_VAL + - media: uvcvideo: Remove s_ctrl and g_ctrl + - media: uvcvideo: refactor __uvc_ctrl_add_mapping + - media: uvcvideo: Add support for V4L2_CTRL_TYPE_CTRL_CLASS + - media: uvcvideo: Use control names from framework + - media: uvcvideo: Check controls flags before accessing them + - media: uvcvideo: Check for INACTIVE in uvc_ctrl_is_accessible() + - coresight: etm4x: Fix accesses to TRCSEQRSTEVR and TRCSEQSTR + - coresight: cti: Prevent negative values of enable count + - coresight: cti: Add PM runtime call in enable_store + - ACPI: resource: Add helper function acpi_dev_get_memory_resources() + - usb: typec: intel_pmc_mux: Use the helper acpi_dev_get_memory_resources() + - usb: typec: intel_pmc_mux: Don't leak the ACPI device reference count + - PCI/IOV: Enlarge virtfn sysfs name buffer + - PCI: switchtec: Return -EFAULT for copy_to_user() errors + - tty: serial: fsl_lpuart: disable Rx/Tx DMA in lpuart32_shutdown() + - tty: serial: fsl_lpuart: clear LPUART Status Register in lpuart32_shutdown() + - serial: tegra: Add missing clk_disable_unprepare() in tegra_uart_hw_init() + - Revert "char: pcmcia: cm4000_cs: Replace mdelay with usleep_range in + set_protocol" + - eeprom: idt_89hpesx: Fix error handling in idt_init() + - applicom: Fix PCI device refcount leak in applicom_init() + - firmware: stratix10-svc: add missing gen_pool_destroy() in + stratix10_svc_drv_probe() + - VMCI: check context->notify_page after call to get_user_pages_fast() to + avoid GPF + - misc/mei/hdcp: Use correct macros to initialize uuid_le + - driver core: fix resource leak in device_add() + - drivers: base: transport_class: fix possible memory leak + - drivers: base: transport_class: fix resource leak when + transport_add_device() fails + - firmware: dmi-sysfs: Fix null-ptr-deref in dmi_sysfs_register_handle + - fotg210-udc: Add missing completion handler + - dmaengine: dw-edma: Fix missing src/dst address of interleaved xfers + - usb: early: xhci-dbc: Fix a potential out-of-bound memory access + - tty: serial: fsl_lpuart: Fix the wrong RXWATER setting for rx dma case + - RDMA/cxgb4: add null-ptr-check after ip_dev_find() + - usb: musb: mediatek: don't unregister something that wasn't registered + - usb: gadget: configfs: use to_config_usb_cfg() in os_desc_link() + - usb: gadget: configfs: use to_usb_function_instance() in cfg (un)link func + - usb: gadget: configfs: remove using list iterator after loop body as a ptr + - usb: gadget: configfs: Restrict symlink creation is UDC already binded + - iommu/vt-d: Set No Execute Enable bit in PASID table entry + - power: supply: remove faulty cooling logic + - RDMA/cxgb4: Fix potential null-ptr-deref in pass_establish() + - usb: max-3421: Fix setting of I/O pins + - RDMA/irdma: Cap MSIX used to online CPUs + 1 + - serial: fsl_lpuart: fix RS485 RTS polariy inverse issue + - tty: serial: imx: Handle RS485 DE signal active high + - tty: serial: imx: disable Ageing Timer interrupt request irq + - dmaengine: dw-edma: Fix readq_ch() return value truncation + - phy: rockchip-typec: fix tcphy_get_mode error case + - iw_cxgb4: Fix potential NULL dereference in c4iw_fill_res_cm_id_entry() + - iommu: Fix error unwind in iommu_group_alloc() + - dmaengine: sf-pdma: pdma_desc memory leak fix + - dmaengine: dw-axi-dmac: Do not dereference NULL structure + - iommu/vt-d: Fix error handling in sva enable/disable paths + - iommu/vt-d: Remove duplicate identity domain flag + - iommu/vt-d: Check FL and SL capability sanity in scalable mode + - iommu/vt-d: Use second level for GPA->HPA translation + - iommu/vt-d: Allow to use flush-queue when first level is default + - IB/hfi1: Fix math bugs in hfi1_can_pin_pages() + - IB/hfi1: Fix sdma.h tx->num_descs off-by-one errors + - remoteproc: qcom_q6v5_mss: Use a carveout to authenticate modem headers + - media: ti: cal: fix possible memory leak in cal_ctx_create() + - media: platform: ti: Add missing check for devm_regulator_get + - powerpc: Remove linker flag from KBUILD_AFLAGS + - s390/vdso: remove -nostdlib compiler flag + - s390/vdso: Drop '-shared' from KBUILD_CFLAGS_64 + - builddeb: clean generated package content + - media: max9286: Fix memleak in max9286_v4l2_register() + - media: ov2740: Fix memleak in ov2740_init_controls() + - media: ov5675: Fix memleak in ov5675_init_controls() + - media: i2c: ov772x: Fix memleak in ov772x_probe() + - media: i2c: imx219: Split common registers from mode tables + - media: i2c: imx219: Fix binning for RAW8 capture + - media: v4l2-jpeg: correct the skip count in jpeg_parse_app14_data + - media: v4l2-jpeg: ignore the unknown APP14 marker + - media: imx-jpeg: Apply clk_bulk api instead of operating specific clk + - media: i2c: ov7670: 0 instead of -EINVAL was returned + - media: usb: siano: Fix use after free bugs caused by do_submit_urb + - media: saa7134: Use video_unregister_device for radio_dev + - rpmsg: glink: Avoid infinite loop on intent for missing channel + - udf: Define EFSCORRUPTED error code + - ARM: dts: exynos: Use Exynos5420 compatible for the MIPI video phy + - blk-iocost: fix divide by 0 error in calc_lcoefs() + - trace/blktrace: fix memory leak with using debugfs_lookup() + - wifi: ath9k: Fix use-after-free in ath9k_hif_usb_disconnect() + - wifi: brcmfmac: Fix potential stack-out-of-bounds in brcmf_c_preinit_dcmds() + - rcu: Make RCU_LOCKDEP_WARN() avoid early lockdep checks + - rcu: Suppress smp_processor_id() complaint in + synchronize_rcu_expedited_wait() + - rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug + - wifi: ath11k: debugfs: fix to work with multiple PCI devices + - thermal: intel: Fix unsigned comparison with less than zero + - timers: Prevent union confusion from unexpected restart_syscall() + - x86/bugs: Reset speculation control settings on init + - wifi: brcmfmac: ensure CLM version is null-terminated to prevent stack-out- + of-bounds + - wifi: mt7601u: fix an integer underflow + - inet: fix fast path in __inet_hash_connect() + - ice: restrict PTP HW clock freq adjustments to 100, 000, 000 PPB + - ice: add missing checks for PF vsi type + - ACPI: Don't build ACPICA with '-Os' + - thermal: intel: intel_pch: Add support for Wellsburg PCH + - clocksource: Suspend the watchdog temporarily when high read latency + detected + - crypto: hisilicon: Wipe entire pool on error + - net: bcmgenet: Add a check for oversized packets + - m68k: Check syscall_trace_enter() return code + - netfilter: nf_tables: NULL pointer dereference in nf_tables_updobj() + - wifi: mt76: dma: free rx_head in mt76_dma_rx_cleanup + - ACPI: video: Fix Lenovo Ideapad Z570 DMI match + - net/mlx5: fw_tracer: Fix debug print + - coda: Avoid partial allocation of sig_inputArgs + - uaccess: Add minimum bounds check on kernel buffer size + - s390/idle: mark arch_cpu_idle() noinstr + - time/debug: Fix memory leak with using debugfs_lookup() + - PM: domains: fix memory leak with using debugfs_lookup() + - PM: EM: fix memory leak with using debugfs_lookup() + - Bluetooth: btusb: Add VID:PID 13d3:3529 for Realtek RTL8821CE + - hv_netvsc: Check status in SEND_RNDIS_PKT completion message + - scm: add user copy checks to put_cmsg() + - drm/amd/display: Revert Reduce delay when sink device not able to ACK 00340h + write + - drm/amd/display: Fix potential null-deref in dm_resume + - drm/omap: dsi: Fix excessive stack usage + - HID: Add Mapping for System Microphone Mute + - drm/tiny: ili9486: Do not assume 8-bit only SPI controllers + - drm/radeon: free iio for atombios when driver shutdown + - scsi: lpfc: Fix use-after-free KFENCE violation during sysfs firmware write + - Revert "fbcon: don't lose the console font across generic->chip driver + switch" + - drm: amd: display: Fix memory leakage + - drm/msm/dsi: Add missing check for alloc_ordered_workqueue + - docs/scripts/gdb: add necessary make scripts_gdb step + - ASoC: soc-compress: Reposition and add pcm_mutex + - ASoC: kirkwood: Iterate over array indexes instead of using pointer math + - regulator: max77802: Bounds check regulator id against opmode + - regulator: s5m8767: Bounds check id indexing into arrays + - gfs2: Improve gfs2_make_fs_rw error handling + - hwmon: (coretemp) Simplify platform device handling + - pinctrl: at91: use devm_kasprintf() to avoid potential leaks + - scsi: snic: Fix memory leak with using debugfs_lookup() + - HID: logitech-hidpp: Don't restart communication if not necessary + - drm: panel-orientation-quirks: Add quirk for Lenovo IdeaPad Duet 3 10IGL5 + - dm thin: add cond_resched() to various workqueue loops + - dm cache: add cond_resched() to various workqueue loops + - nfsd: zero out pointers after putting nfsd_files on COPY setup error + - drm/shmem-helper: Revert accidental non-GPL export + - wifi: rtl8xxxu: fixing transmisison failure for rtl8192eu + - firmware: coreboot: framebuffer: Ignore reserved pixel color bits + - block: don't allow multiple bios for IOCB_NOWAIT issue + - rtc: pm8xxx: fix set-alarm race + - ipmi:ssif: resend_msg() cannot fail + - ipmi_ssif: Rename idle state and check + - s390/extmem: return correct segment type in __segment_load() + - s390: discard .interp section + - s390/kprobes: fix irq mask clobbering on kprobe reenter from post_handler + - s390/kprobes: fix current_kprobe never cleared after kprobes reenter + - cifs: Fix uninitialized memory read in smb3_qfs_tcon() + - btrfs: hold block group refcount during async discard + - locking/rwsem: Prevent non-first waiter from spinning in down_write() + slowpath + - ksmbd: fix wrong data area length for smb2 lock request + - ksmbd: do not allow the actual frame length to be smaller than the rfc1002 + length + - ARM: dts: exynos: correct HDMI phy compatible in Exynos4 + - hfs: fix missing hfs_bnode_get() in __hfs_bnode_create + - fs: hfsplus: fix UAF issue in hfsplus_put_super + - exfat: fix reporting fs error when reading dir beyond EOF + - exfat: fix unexpected EOF while reading dir + - exfat: redefine DIR_DELETED as the bad cluster number + - exfat: fix inode->i_blocks for non-512 byte sector size device + - fs: dlm: don't set stop rx flag after node reset + - fs: dlm: move sending fin message into state change handling + - fs: dlm: send FIN ack back in right cases + - f2fs: fix information leak in f2fs_move_inline_dirents() + - f2fs: fix cgroup writeback accounting with fs-layer encryption + - ocfs2: fix defrag path triggering jbd2 ASSERT + - ocfs2: fix non-auto defrag path not working issue + - selftests/landlock: Skip overlayfs tests when not supported + - selftests/landlock: Test ptrace as much as possible with Yama + - udf: Truncate added extents on failed expansion + - udf: Do not bother merging very long extents + - udf: Do not update file length for failed writes to inline files + - udf: Preserve link count of system files + - udf: Detect system inodes linked into directory hierarchy + - udf: Fix file corruption when appending just after end of preallocated + extent + - RDMA/siw: Fix user page pinning accounting + - KVM: Destroy target device if coalesced MMIO unregistration fails + - KVM: x86: Inject #GP if WRMSR sets reserved bits in APIC Self-IPI + - KVM: SVM: Fix potential overflow in SEV's send|receive_update_data() + - KVM: SVM: hyper-v: placate modpost section mismatch error + - KVM: s390: disable migration mode when dirty tracking is disabled + - x86/virt: Force GIF=1 prior to disabling SVM (for reboot flows) + - x86/crash: Disable virt in core NMI crash handler to avoid double shootdown + - x86/reboot: Disable virtualization in an emergency if SVM is supported + - x86/reboot: Disable SVM, not just VMX, when stopping CPUs + - x86/kprobes: Fix __recover_optprobed_insn check optimizing logic + - x86/kprobes: Fix arch_check_optimized_kprobe check within optimized_kprobe + range + - x86/microcode/amd: Remove load_microcode_amd()'s bsp parameter + - x86/microcode/AMD: Add a @cpu parameter to the reloading functions + - x86/microcode/AMD: Fix mixed steppings support + - x86/speculation: Allow enabling STIBP with legacy IBRS + - Documentation/hw-vuln: Document the interaction between IBRS and STIBP + - brd: return 0/-error from brd_insert_page() + - ima: Align ima_file_mmap() parameters with mmap_file LSM hook + - irqdomain: Fix association race + - irqdomain: Fix disassociation race + - irqdomain: Look for existing mapping only once + - irqdomain: Drop bogus fwspec-mapping error handling + - irqdomain: Fix domain registration race + - crypto: qat - fix out-of-bounds read + - io_uring: handle TIF_NOTIFY_RESUME when checking for task_work + - io_uring: mark task TASK_RUNNING before handling resume/task work + - io_uring: add a conditional reschedule to the IOPOLL cancelation loop + - io_uring/rsrc: disallow multi-source reg buffers + - io_uring: remove MSG_NOSIGNAL from recvmsg + - io_uring/poll: allow some retries for poll triggering spuriously + - ALSA: ice1712: Do not left ice->gpio_mutex locked in aureon_add_controls() + - ALSA: hda/realtek: Add quirk for HP EliteDesk 800 G6 Tower PC + - jbd2: fix data missing when reusing bh which is ready to be checkpointed + - ext4: optimize ea_inode block expansion + - ext4: refuse to create ea block when umounted + - mtd: spi-nor: sfdp: Fix index value for SCCR dwords + - mtd: spi-nor: spansion: Consider reserved bits in CFR5 register + - mtd: spi-nor: Fix shift-out-of-bounds in spi_nor_set_erase_type + - dm: send just one event on resize, not two + - dm: add cond_resched() to dm_wq_work() + - wifi: rtl8xxxu: Use a longer retry limit of 48 + - wifi: ath11k: allow system suspend to survive ath11k + - wifi: cfg80211: Fix use after free for wext + - qede: fix interrupt coalescing configuration + - thermal: intel: powerclamp: Fix cur_state for multi package system + - dm flakey: fix logic when corrupting a bio + - dm flakey: don't corrupt the zero page + - dm flakey: fix a bug with 32-bit highmem systems + - ARM: dts: qcom: sdx55: Add Qcom SMMU-500 as the fallback for IOMMU node + - ARM: dts: exynos: correct TMU phandle in Exynos4210 + - ARM: dts: exynos: correct TMU phandle in Exynos4 + - ARM: dts: exynos: correct TMU phandle in Odroid XU3 family + - ARM: dts: exynos: correct TMU phandle in Exynos5250 + - ARM: dts: exynos: correct TMU phandle in Odroid XU + - ARM: dts: exynos: correct TMU phandle in Odroid HC1 + - fuse: add inode/permission checks to fileattr_get/fileattr_set + - rbd: avoid use-after-free in do_rbd_add() when rbd_dev_create() fails + - ceph: update the time stamps and try to drop the suid/sgid + - alpha: fix FEN fault handling + - dax/kmem: Fix leak of memory-hotplug resources + - mips: fix syscall_get_nr + - media: ipu3-cio2: Fix PM runtime usage_count in driver unbind + - remoteproc/mtk_scp: Move clk ops outside send_lock + - docs: gdbmacros: print newest record + - mm: memcontrol: deprecate charge moving + - mm/thp: check and bail out if page in deferred queue already + - ktest.pl: Give back console on Ctrt^C on monitor + - ktest.pl: Fix missing "end_monitor" when machine check fails + - ktest.pl: Add RUN_TIMEOUT option with default unlimited + - ring-buffer: Handle race between rb_move_tail and rb_check_pages + - tools/bootconfig: fix single & used for logical condition + - scsi: qla2xxx: Fix link failure in NPIV environment + - scsi: qla2xxx: Check if port is online before sending ELS + - scsi: qla2xxx: Fix DMA-API call trace on NVMe LS requests + - scsi: qla2xxx: Remove unintended flag clearing + - scsi: qla2xxx: Fix erroneous link down + - scsi: qla2xxx: Remove increment of interface err cnt + - scsi: ses: Don't attach if enclosure has no components + - scsi: ses: Fix slab-out-of-bounds in ses_enclosure_data_process() + - scsi: ses: Fix possible addl_desc_ptr out-of-bounds accesses + - scsi: ses: Fix possible desc_ptr out-of-bounds accesses + - scsi: ses: Fix slab-out-of-bounds in ses_intf_remove() + - RISC-V: add a spin_shadow_stack declaration + - riscv: mm: fix regression due to update_mmu_cache change + - riscv: jump_label: Fixup unaligned arch_static_branch function + - riscv, mm: Perform BPF exhandler fixup on page fault + - riscv: ftrace: Remove wasted nops for !RISCV_ISA_C + - riscv: ftrace: Reduce the detour code size to half + - MIPS: DTS: CI20: fix otg power gpio + - PCI/PM: Observe reset delay irrespective of bridge_d3 + - PCI: hotplug: Allow marking devices as disconnected during bind/unbind + - PCI: Avoid FLR for AMD FCH AHCI adapters + - iommu/vt-d: Avoid superfluous IOTLB tracking in lazy mode + - vfio/type1: prevent underflow of locked_vm via exec() + - vfio/type1: track locked_vm per dma + - vfio/type1: restore locked_vm + - drm/i915/quirks: Add inverted backlight quirk for HP 14-r206nv + - drm/radeon: Fix eDP for single-display iMac11,2 + - drm/edid: fix AVI infoframe aspect ratio handling + - perf intel-pt: pkt-decoder: Add CFE and EVD packets + - qede: avoid uninitialized entries in coal_entry array + - media: uvcvideo: Fix memory leak of object map on error exit path + - iommu/vt-d: Fix an unbalanced rcu_read_lock/rcu_read_unlock() + - arm64: dts: qcom: ipq8074: fix Gen2 PCIe QMP PHY + - wifi: ath9k: use proper statements in conditionals + - kbuild: Port silent mode detection to future gnu make. + - Linux 5.15.99 + - [Config] Stop expecting mxsfb for ppc64el + * Use new annotations model (LP: #2019000) + - [Packaging] new annotations model infrastructure + - [Config] migrate all configs into annotations + * CVE-2023-30456 + - KVM: nVMX: add missing consistency checks for CR0 and CR4 + * CVE-2023-1859 + - 9p/xen : Fix use after free bug in xen_9pfs_front_remove due to race + condition + * CVE-2023-1670 + - xirc2ps_cs: Fix use after free bug in xirc2ps_detach + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + -- Tim Gardner Fri, 02 Jun 2023 15:16:31 -0600 + +linux-azure-5.15 (5.15.0-1039.46~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1039.46~20.04.1 -proposed tracker + (LP: #2019611) + + [ Ubuntu: 5.15.0-1039.46 ] + + * jammy/linux-azure: 5.15.0-1039.46 -proposed tracker (LP: #2019612) + * jammy/linux: 5.15.0-73.80 -proposed tracker (LP: #2019647) + * CVE-2023-32233 + - netfilter: nf_tables: deactivate anonymous set from preparation phase + * CVE-2023-2612 + - SAUCE: shiftfs: prevent lock unbalance in shiftfs_create_object() + * CVE-2023-31436 + - net: sched: sch_qfq: prevent slab-out-of-bounds in qfq_activate_agg + * CVE-2023-1380 + - wifi: brcmfmac: slab-out-of-bounds read in brcmf_get_assoc_ies() + * CVE-2023-30456 + - KVM: nVMX: add missing consistency checks for CR0 and CR4 + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + -- Tim Gardner Mon, 22 May 2023 13:23:39 -0600 + +linux-azure-5.15 (5.15.0-1038.45~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1038.45~20.04.1 -proposed tracker + (LP: #2016510) + + [ Ubuntu: 5.15.0-1038.45 ] + + * jammy/linux-azure: 5.15.0-1038.45 -proposed tracker (LP: #2016511) + * Azure: Enable MANA Jumbo Frame Support (LP: #2016898) + - net: mana: Use napi_build_skb in RX path + - net: mana: Refactor RX buffer allocation code to prepare for various MTU + - net: mana: Enable RX path to handle various MTU sizes + - net: mana: Add support for jumbo frame + * Azure: smb3: allow deferred close timeout to be configurable (LP: #2013349) + - smb3: allow deferred close timeout to be configurable + - smb3: lower default deferred close timeout to address perf regression + - keys: Do not cache key in task struct if key is requested from kernel thread + * jammy/linux: 5.15.0-72.79 -proposed tracker (LP: #2016548) + * Add split lock detection for EMR (LP: #2015855) + - x86/split_lock: Enumerate architectural split lock disable bit + * selftest: fib_tests: Always cleanup before exit (LP: #2015956) + - selftest: fib_tests: Always cleanup before exit + * Add support for intel EMR cpu (LP: #2015372) + - platform/x86: intel-uncore-freq: add Emerald Rapids support + - perf/x86/intel/cstate: Add Emerald Rapids + - perf/x86/rapl: Add support for Intel Emerald Rapids + - intel_idle: add Emerald Rapids Xeon support + - tools/power/x86/intel-speed-select: Add Emerald Rapid quirk + - tools/power turbostat: Introduce support for EMR + - powercap: intel_rapl: add support for Emerald Rapids + - EDAC/i10nm: Add Intel Emerald Rapids server support + * Kernel livepatch ftrace graph fix (LP: #2013603) + - kprobes: treewide: Remove trampoline_address from + kretprobe_trampoline_handler() + - kprobes: treewide: Make it harder to refer kretprobe_trampoline directly + - kprobes: Add kretprobe_find_ret_addr() for searching return address + - s390/unwind: recover kretprobe modified return address in stacktrace + - s390/unwind: fix fgraph return address recovery + * Jammy update: v5.15.98 upstream stable release (LP: #2015600) + - Linux 5.15.98 + * Jammy update: v5.15.97 upstream stable release (LP: #2015599) + - ionic: refactor use of ionic_rx_fill() + - Fix XFRM-I support for nested ESP tunnels + - arm64: dts: rockchip: drop unused LED mode property from rk3328-roc-cc + - ARM: dts: rockchip: add power-domains property to dp node on rk3288 + - HID: elecom: add support for TrackBall 056E:011C + - ACPI: NFIT: fix a potential deadlock during NFIT teardown + - btrfs: send: limit number of clones and allocated memory size + - ASoC: rt715-sdca: fix clock stop prepare timeout issue + - IB/hfi1: Assign npages earlier + - neigh: make sure used and confirmed times are valid + - HID: core: Fix deadloop in hid_apply_multiplier. + - x86/cpu: Add Lunar Lake M + - staging: mt7621-dts: change palmbus address to lower case + - bpf: bpf_fib_lookup should not return neigh in NUD_FAILED state + - net: Remove WARN_ON_ONCE(sk->sk_forward_alloc) from sk_stream_kill_queues(). + - vc_screen: don't clobber return value in vcs_read + - scripts/tags.sh: Invoke 'realpath' via 'xargs' + - scripts/tags.sh: fix incompatibility with PCRE2 + - usb: dwc3: pci: add support for the Intel Meteor Lake-M + - USB: serial: option: add support for VW/Skoda "Carstick LTE" + - usb: gadget: u_serial: Add null pointer check in gserial_resume + - USB: core: Don't hold device lock while reading the "descriptors" sysfs file + - Linux 5.15.97 + * Jammy update: v5.15.96 upstream stable release (LP: #2015595) + - drm/etnaviv: don't truncate physical page address + - wifi: rtl8xxxu: gen2: Turn on the rate control + - drm/edid: Fix minimum bpc supported with DSC1.2 for HDMI sink + - clk: mxl: Switch from direct readl/writel based IO to regmap based IO + - clk: mxl: Remove redundant spinlocks + - clk: mxl: Add option to override gate clks + - clk: mxl: Fix a clk entry by adding relevant flags + - powerpc: dts: t208x: Mark MAC1 and MAC2 as 10G + - clk: mxl: syscon_node_to_regmap() returns error pointers + - random: always mix cycle counter in add_latent_entropy() + - KVM: x86: Fail emulation during EMULTYPE_SKIP on any exception + - KVM: SVM: Skip WRMSR fastpath on VM-Exit if next RIP isn't valid + - can: kvaser_usb: hydra: help gcc-13 to figure out cmd_len + - powerpc: dts: t208x: Disable 10G on MAC1 and MAC2 + - powerpc: use generic version of arch_is_kernel_initmem_freed() + - powerpc/vmlinux.lds: Ensure STRICT_ALIGN_SIZE is at least page aligned + - powerpc/vmlinux.lds: Add an explicit symbol for the SRWX boundary + - powerpc/64s/radix: Fix crash with unaligned relocated kernel + - powerpc/64s/radix: Fix RWX mapping with relocated kernel + - drm/i915/gvt: fix double free bug in split_2MB_gtt_entry + - uaccess: Add speculation barrier to copy_from_user() + - binder: read pre-translated fds from sender buffer + - binder: defer copies of pre-patched txn data + - binder: fix pointer cast warning + - binder: Address corner cases in deferred copy and fixup + - binder: Gracefully handle BINDER_TYPE_FDA objects with num_fds=0 + - nbd: fix possible overflow on 'first_minor' in nbd_dev_add() + - wifi: mwifiex: Add missing compatible string for SD8787 + - audit: update the mailing list in MAINTAINERS + - ext4: Fix function prototype mismatch for ext4_feat_ktype + - bpf: add missing header file include + - Linux 5.15.96 + * Debian autoreconstruct Fix restoration of execute permissions (LP: #2015498) + - [Debian] autoreconstruct - fix restoration of execute permissions + * kernel: fix __clear_user() inline assembly constraints (LP: #2013088) + - s390/uaccess: add missing earlyclobber annotations to __clear_user() + * Kernel crash during Mellanox performance testing (LP: #2015097) + - net/mlx5: fs, refactor software deletion rule + * expoline.o is packaged unconditionally for s390x (LP: #2013209) + - [Packaging] Copy expoline.o only when produced by the build + * Intel E810 NICs driver in causing hangs when booting and bonds configured + (LP: #2004262) + - ice: avoid bonding causing auxiliary plug/unplug under RTNL lock + * Jammy update: v5.15.95 upstream stable release (LP: #2013118) + - mptcp: fix locking for in-kernel listener creation + - kprobes: treewide: Cleanup the error messages for kprobes + - riscv: kprobe: Fixup misaligned load text + - ACPI / x86: Add support for LPS0 callback handler + - ASoC: Intel: sof_rt5682: always set dpcm_capture for amplifiers + - ASoC: Intel: sof_cs42l42: always set dpcm_capture for amplifiers + - selftests/bpf: Verify copy_register_state() preserves parent/live fields + - ALSA: hda: Do not unset preset when cleaning up codec + - bpf, sockmap: Don't let sock_map_{close,destroy,unhash} call itself + - ASoC: cs42l56: fix DT probe + - tools/virtio: fix the vringh test for virtio ring changes + - net/rose: Fix to not accept on connected socket + - net: stmmac: do not stop RX_CLK in Rx LPI state for qcs404 SoC + - drm/nouveau/devinit/tu102-: wait for GFW_BOOT_PROGRESS == COMPLETED + - net: sched: sch: Bounds check priority + - s390/decompressor: specify __decompress() buf len to avoid overflow + - nvme-fc: fix a missing queue put in nvmet_fc_ls_create_association + - drm/amd/display: Properly handle additional cases where DCN is not supported + - platform/x86: touchscreen_dmi: Add Chuwi Vi8 (CWI501) DMI match + - nvmem: core: add error handling for dev_set_name + - nvmem: core: fix cleanup after dev_set_name() + - nvmem: core: fix registration vs use race + - nvmem: core: fix return value + - xfs: zero inode fork buffer at allocation + - xfs: fix potential log item leak + - xfs: detect self referencing btree sibling pointers + - xfs: set XFS_FEAT_NLINK correctly + - xfs: validate v5 feature fields + - xfs: avoid unnecessary runtime sibling pointer endian conversions + - xfs: don't assert fail on perag references on teardown + - xfs: assert in xfs_btree_del_cursor should take into account error + - xfs: purge dquots after inode walk fails during quotacheck + - xfs: don't leak btree cursor when insrec fails after a split + - mptcp: do not wait for bare sockets' timeout + - aio: fix mremap after fork null-deref + - drm/amd/display: Fail atomic_check early on normalize_zpos error + - platform/x86: amd-pmc: Fix compilation when CONFIG_DEBUGFS is disabled + - platform/x86: amd-pmc: Correct usage of SMU version + - platform/x86/amd: pmc: Disable IRQ1 wakeup for RN/CZN + - netfilter: nft_tproxy: restrict to prerouting hook + - tcp: Fix listen() regression in 5.15.88. + - mmc: jz4740: Work around bug on JZ4760(B) + - mmc: sdio: fix possible resource leaks in some error paths + - mmc: mmc_spi: fix error handling in mmc_spi_probe() + - ALSA: hda/conexant: add a new hda codec SN6180 + - ALSA: hda/realtek - fixed wrong gpio assigned + - sched/psi: Fix use-after-free in ep_remove_wait_queue() + - hugetlb: check for undefined shift on 32 bit architectures + - of: reserved_mem: Have kmemleak ignore dynamically allocated reserved mem + - selftest/lkdtm: Skip stack-entropy test if lkdtm is not available + - net: Fix unwanted sign extension in netdev_stats_to_stats64() + - revert "squashfs: harden sanity check in squashfs_read_xattr_id_table" + - ixgbe: allow to increase MTU to 3K with XDP enabled + - i40e: add double of VLAN header when computing the max MTU + - net: bgmac: fix BCM5358 support by setting correct flags + - net: ethernet: ti: am65-cpsw: Add RX DMA Channel Teardown Quirk + - sctp: sctp_sock_filter(): avoid list_entry() on possibly empty list + - dccp/tcp: Avoid negative sk_forward_alloc by ipv6_pinfo.pktoptions. + - net/usb: kalmia: Don't pass act_len in usb_bulk_msg error path + - net: openvswitch: fix possible memory leak in ovs_meter_cmd_set() + - net: stmmac: fix order of dwmac5 FlexPPS parametrization sequence + - bnxt_en: Fix mqprio and XDP ring checking logic + - net: stmmac: Restrict warning on disabling DMA store and fwd mode + - ixgbe: add double of VLAN header when computing the max MTU + - ipv6: Fix datagram socket connection with DSCP. + - ipv6: Fix tcp socket connection with DSCP. + - nilfs2: fix underflow in second superblock position calculations + - mm/filemap: fix page end in filemap_get_read_batch + - drm/i915/gen11: Moving WAs to icl_gt_workarounds_init() + - drm/i915/gen11: Wa_1408615072/Wa_1407596294 should be on GT list + - flow_offload: fill flags to action structure + - net/sched: act_ctinfo: use percpu stats + - i40e: Add checking for null for nlmsg_find_attr() + - kvm: initialize all of the kvm_debugregs structure before sending it to + userspace + - alarmtimer: Prevent starvation by small intervals and SIG_IGN + - ASoC: SOF: Intel: hda-dai: fix possible stream_tag leak + - net: sched: sch: Fix off by one in htb_activate_prios() + - platform/x86/amd: pmc: add CONFIG_SERIO dependency + - Linux 5.15.95 + * CVE-2023-1075 + - net/tls: tls_is_tx_ready() checked list_entry + * devlink_port_split from ubuntu_kernel_selftests.net fails on hirsute + (KeyError: 'flavour') (LP: #1937133) + - selftests: net: devlink_port_split.py: skip test if no suitable device + available + * Connection timeout due to conntrack limits (LP: #2011616) + - netfilter: conntrack: adopt safer max chain length + * Jammy update: v5.15.94 upstream stable release (LP: #2012673) + - mm/migration: return errno when isolate_huge_page failed + - migrate: hugetlb: check for hugetlb shared PMD in node migration + - btrfs: limit device extents to the device size + - btrfs: zlib: zero-initialize zlib workspace + - ALSA: hda/realtek: Add Positivo N14KP6-TG + - ALSA: emux: Avoid potential array out-of-bound in snd_emux_xg_control() + - ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book2 Pro 360 + - ALSA: hda/realtek: Enable mute/micmute LEDs on HP Elitebook, 645 G9 + - tracing: Fix poll() and select() do not work on per_cpu trace_pipe and + trace_pipe_raw + - of/address: Return an error when no valid dma-ranges are found + - can: j1939: do not wait 250 ms if the same addr was already claimed + - xfrm: compat: change expression for switch in xfrm_xlate64 + - IB/hfi1: Restore allocated resources on failed copyout + - xfrm/compat: prevent potential spectre v1 gadget in xfrm_xlate32_attr() + - IB/IPoIB: Fix legacy IPoIB due to wrong number of queues + - RDMA/irdma: Fix potential NULL-ptr-dereference + - RDMA/usnic: use iommu_map_atomic() under spin_lock() + - xfrm: fix bug with DSCP copy to v6 from v4 tunnel + - net: phylink: move phy_device_free() to correctly release phy device + - bonding: fix error checking in bond_debug_reregister() + - net: phy: meson-gxl: use MMD access dummy stubs for GXL, internal PHY + - ionic: clean interrupt before enabling queue to avoid credit race + - uapi: add missing ip/ipv6 header dependencies for linux/stddef.h + - ice: Do not use WQ_MEM_RECLAIM flag for workqueue + - net: dsa: mt7530: don't change PVC_EG_TAG when CPU port becomes VLAN-aware + - net: mscc: ocelot: fix VCAP filters not matching on MAC with "protocol + 802.1Q" + - net/mlx5e: Move repeating clear_bit in mlx5e_rx_reporter_err_rq_cqe_recover + - net/mlx5e: Introduce the mlx5e_flush_rq function + - net/mlx5e: Update rx ring hw mtu upon each rx-fcs flag change + - net/mlx5: Bridge, fix ageing of peer FDB entries + - net/mlx5e: IPoIB, Show unknown speed instead of error + - net/mlx5: fw_tracer, Clear load bit when freeing string DBs buffers + - net/mlx5: fw_tracer, Zero consumer index when reloading the tracer + - net/mlx5: Serialize module cleanup with reload and remove + - igc: Add ndo_tx_timeout support + - rds: rds_rm_zerocopy_callback() use list_first_entry() + - selftests: forwarding: lib: quote the sysctl values + - ALSA: pci: lx6464es: fix a debug loop + - riscv: stacktrace: Fix missing the first frame + - ASoC: topology: Return -ENOMEM on memory allocation failure + - pinctrl: mediatek: Fix the drive register definition of some Pins + - pinctrl: aspeed: Fix confusing types in return value + - pinctrl: single: fix potential NULL dereference + - spi: dw: Fix wrong FIFO level setting for long xfers + - pinctrl: intel: Restore the pins that used to be in Direct IRQ mode + - cifs: Fix use-after-free in rdata->read_into_pages() + - net: USB: Fix wrong-direction WARNING in plusb.c + - mptcp: be careful on subflow status propagation on errors + - btrfs: free device in btrfs_close_devices for a single device filesystem + - usb: core: add quirk for Alcor Link AK9563 smartcard reader + - usb: typec: altmodes/displayport: Fix probe pin assign check + - clk: ingenic: jz4760: Update M/N/OD calculation algorithm + - ceph: flush cap releases when the session is flushed + - riscv: Fixup race condition on PG_dcache_clean in flush_icache_pte + - powerpc/64s/interrupt: Fix interrupt exit race with security mitigation + switch + - rtmutex: Ensure that the top waiter is always woken up + - arm64: dts: meson-gx: Make mmc host controller interrupts level-sensitive + - arm64: dts: meson-g12-common: Make mmc host controller interrupts level- + sensitive + - arm64: dts: meson-axg: Make mmc host controller interrupts level-sensitive + - Fix page corruption caused by racy check in __free_pages + - drm/amdgpu/fence: Fix oops due to non-matching drm_sched init/fini + - drm/i915: Initialize the obj flags for shmem objects + - drm/i915: Fix VBT DSI DVO port handling + - x86/speculation: Identify processors vulnerable to SMT RSB predictions + - KVM: x86: Mitigate the cross-thread return address predictions bug + - Documentation/hw-vuln: Add documentation for Cross-Thread Return Predictions + - Linux 5.15.94 + * Jammy update: v5.15.93 upstream stable release (LP: #2012665) + - firewire: fix memory leak for payload of request subaction to IEC 61883-1 + FCP region + - bus: sunxi-rsb: Fix error handling in sunxi_rsb_init() + - ASoC: Intel: boards: fix spelling in comments + - ASoC: Intel: bytcht_es8316: move comment to the right place + - ASoC: Intel: bytcht_es8316: Drop reference count of ACPI device after use + - ASoC: Intel: bytcr_rt5651: Drop reference count of ACPI device after use + - ASoC: Intel: bytcr_rt5640: Drop reference count of ACPI device after use + - ASoC: Intel: bytcr_wm5102: Drop reference count of ACPI device after use + - bpf: Fix a possible task gone issue with bpf_send_signal[_thread]() helpers + - ALSA: hda/via: Avoid potential array out-of-bound in add_secret_dac_path() + - bpf: Support <8-byte scalar spill and refill + - bpf: Fix to preserve reg parent/live fields when copying range info + - bpf, sockmap: Check for any of tcp_bpf_prots when cloning a listener + - arm64: dts: imx8mm: Fix pad control for UART1_DTE_RX + - drm/vc4: hdmi: make CEC adapter name unique + - scsi: Revert "scsi: core: map PQ=1, PDT=other values to + SCSI_SCAN_TARGET_PRESENT" + - vhost/net: Clear the pending messages when the backend is removed + - WRITE is "data source", not destination... + - READ is "data destination", not source... + - fix iov_iter_bvec() "direction" argument + - fix "direction" argument of iov_iter_kvec() + - ice: Prevent set_channel from changing queues while RDMA active + - qede: execute xdp_do_flush() before napi_complete_done() + - virtio-net: execute xdp_do_flush() before napi_complete_done() + - dpaa_eth: execute xdp_do_flush() before napi_complete_done() + - dpaa2-eth: execute xdp_do_flush() before napi_complete_done() + - sfc: correctly advertise tunneled IPv6 segmentation + - net: phy: dp83822: Fix null pointer access on DP83825/DP83826 devices + - block/bfq-iosched.c: use "false" rather than "BLK_RW_ASYNC" + - block, bfq: replace 0/1 with false/true in bic apis + - block, bfq: fix uaf for bfqq in bic_set_bfqq() + - netrom: Fix use-after-free caused by accept on already connected socket + - drm/i915/guc: Fix locking when searching for a hung request + - drm/i915/adlp: Fix typo for reference clock + - netfilter: br_netfilter: disable sabotage_in hook after first suppression + - squashfs: harden sanity check in squashfs_read_xattr_id_table + - net: phy: meson-gxl: Add generic dummy stubs for MMD register access + - ip/ip6_gre: Fix changing addr gen mode not generating IPv6 link local + address + - ip/ip6_gre: Fix non-point-to-point tunnel not generating IPv6 link local + address + - riscv: kprobe: Fixup kernel panic when probing an illegal position + - igc: return an error if the mac type is unknown in + igc_ptp_systim_to_hwtstamp() + - can: j1939: fix errant WARN_ON_ONCE in j1939_session_deactivate + - ata: libata: Fix sata_down_spd_limit() when no link speed is reported + - selftests: net: udpgso_bench_rx: Fix 'used uninitialized' compiler warning + - selftests: net: udpgso_bench_rx/tx: Stop when wrong CLI args are provided + - selftests: net: udpgso_bench_tx: Cater for pending datagrams zerocopy + benchmarking + - virtio-net: Keep stop() to follow mirror sequence of open() + - net: openvswitch: fix flow memory leak in ovs_flow_cmd_new + - efi: fix potential NULL deref in efi_mem_reserve_persistent + - i2c: designware-pci: Add new PCI IDs for AMD NAVI GPU + - i2c: mxs: suppress probe-deferral error message + - scsi: target: core: Fix warning on RT kernels + - perf/x86/intel: Add Emerald Rapids + - scsi: iscsi_tcp: Fix UAF during logout when accessing the shost ipaddress + - scsi: iscsi_tcp: Fix UAF during login when accessing the shost ipaddress + - i2c: rk3x: fix a bunch of kernel-doc warnings + - platform/x86: gigabyte-wmi: add support for B450M DS3H WIFI-CF + - net/x25: Fix to not accept on connected socket + - drm/amd/display: Fix timing not changning when freesync video is enabled + - iio: adc: stm32-dfsdm: fill module aliases + - usb: dwc3: qcom: enable vbus override when in OTG dr-mode + - usb: gadget: f_fs: Fix unbalanced spinlock in __ffs_ep0_queue_wait + - vc_screen: move load of struct vc_data pointer in vcs_read() to avoid UAF + - Input: i8042 - add Clevo PCX0DX to i8042 quirk table + - fbcon: Check font dimension limits + - net: qrtr: free memory on error path in radix_tree_insert() + - watchdog: diag288_wdt: do not use stack buffers for hardware data + - watchdog: diag288_wdt: fix __diag288() inline assembly + - ALSA: hda/realtek: Add Acer Predator PH315-54 + - efi: Accept version 2 of memory attributes table + - iio: hid: fix the retval in accel_3d_capture_sample + - iio: hid: fix the retval in gyro_3d_capture_sample + - iio: adc: berlin2-adc: Add missing of_node_put() in error path + - iio:adc:twl6030: Enable measurements of VUSB, VBAT and others + - iio: imu: fxos8700: fix ACCEL measurement range selection + - iio: imu: fxos8700: fix incomplete ACCEL and MAGN channels readback + - iio: imu: fxos8700: fix IMU data bits returned to user space + - iio: imu: fxos8700: fix map label of channel type to MAGN sensor + - iio: imu: fxos8700: fix swapped ACCEL and MAGN channels readback + - iio: imu: fxos8700: fix incorrect ODR mode readback + - iio: imu: fxos8700: fix failed initialization ODR mode assignment + - iio: imu: fxos8700: remove definition FXOS8700_CTRL_ODR_MIN + - iio: imu: fxos8700: fix MAGN sensor scale and unit + - nvmem: qcom-spmi-sdam: fix module autoloading + - parisc: Fix return code of pdc_iodc_print() + - parisc: Wire up PTRACE_GETREGS/PTRACE_SETREGS for compat case + - riscv: disable generation of unwind tables + - mm: hugetlb: proc: check for hugetlb shared PMD in /proc/PID/smaps + - usb: gadget: f_uac2: Fix incorrect increment of bNumEndpoints + - kernel/irq/irqdomain.c: fix memory leak with using debugfs_lookup() + - x86/debug: Fix stack recursion caused by wrongly ordered DR7 accesses + - fpga: stratix10-soc: Fix return value check in s10_ops_write_init() + - mm/swapfile: add cond_resched() in get_swap_pages() + - highmem: round down the address passed to kunmap_flush_on_unmap() + - Squashfs: fix handling and sanity checking of xattr_ids count + - drm/i915: Fix potential bit_17 double-free + - nvmem: core: initialise nvmem->id early + - nvmem: core: remove nvmem_config wp_gpio + - nvmem: core: fix cell removal on error + - serial: 8250_dma: Fix DMA Rx completion race + - serial: 8250_dma: Fix DMA Rx rearm race + - phy: qcom-qmp-combo: disable runtime PM on unbind + - phy: qcom-qmp-combo: fix memleak on probe deferral + - phy: qcom-qmp-usb: fix memleak on probe deferral + - phy: qcom-qmp-combo: fix broken power on + - phy: qcom-qmp-combo: fix runtime suspend + - bpf: Fix incorrect state pruning for <8B spill/fill + - bpf: Do not reject when the stack read size is different from the tracked + scalar size + - iio:adc:twl6030: Enable measurement of VAC + - powerpc/imc-pmu: Revert nest_init_lock to being a mutex + - fs/ntfs3: Validate attribute data and valid sizes + - ovl: Use "buf" flexible array for memcpy() destination + - fbdev: smscufx: fix error handling code in ufx_usb_probe + - f2fs: fix to do sanity check on i_extra_isize in is_alive() + - wifi: brcmfmac: Check the count value of channel spec to prevent out-of- + bounds reads + - gfs2: Cosmetic gfs2_dinode_{in,out} cleanup + - gfs2: Always check inode size of inline inodes + - bpf: Skip invalid kfunc call in backtrack_insn + - Linux 5.15.93 + * CVE-2023-1118 + - media: rc: Fix use-after-free bugs caused by ene_tx_irqsim() + * [SRU][Ubuntu 22.04.1]: Observed "Array Index out of bounds" Call Trace + multiple times on Ubuntu 22.04.1 OS during boot (LP: #2008157) + - scsi: megaraid_sas: Replace one-element array with flexible-array member in + MR_FW_RAID_MAP + - scsi: megaraid_sas: Replace one-element array with flexible-array member in + MR_FW_RAID_MAP_DYNAMIC + - scsi: megaraid_sas: Replace one-element array with flexible-array member in + MR_DRV_RAID_MAP + - scsi: megaraid_sas: Replace one-element array with flexible-array member in + MR_PD_CFG_SEQ_NUM_SYNC + - scsi: megaraid_sas: Use struct_size() in code related to struct + MR_FW_RAID_MAP + - scsi: megaraid_sas: Use struct_size() in code related to struct + MR_PD_CFG_SEQ_NUM_SYNC + * Revert "net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo + child qdiscs" (LP: #2011926) + - Revert "net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo + child qdiscs" + + [ Ubuntu: 5.15.0-1037.44 ] + + * jammy/linux-azure: 5.15.0-1037.44 -proposed tracker (LP: #2016785) + * CVE-2023-1829 + - [Config]: Make sure CONFIG_NET_CLS_TCINDEX is not available + * jammy/linux: 5.15.0-71.78 -proposed tracker (LP: #2016820) + * CVE-2023-1872 + - io_uring: add missing lock in io_get_file_fixed + - io_uring: ensure that io_init_req() passes in the right issue_flags + * CVE-2023-1829 + - net/sched: Retire tcindex classifier + - [Config]: Make sure CONFIG_NET_CLS_TCINDEX is not available + + -- Tim Gardner Tue, 25 Apr 2023 12:29:04 -0600 + +linux-azure-5.15 (5.15.0-1036.43~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1036.43~20.04.1 -proposed tracker + (LP: #2011882) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + [ Ubuntu: 5.15.0-1036.43 ] + + * jammy/linux-azure: 5.15.0-1036.43 -proposed tracker (LP: #2011883) + * jammy/linux: 5.15.0-70.77 -proposed tracker (LP: #2011918) + * CVE-2023-26545 + - net: mpls: fix stale pointer if allocation fails during device rename + * CVE-2023-1281 + - net/sched: tcindex: update imperfect hash filters respecting rcu + * [SRU][Ubuntu 22.04.1] mpi3mr: Add management application interface(BSG) + support (LP: #1971151) + - scsi: mpi3mr: Add bsg device support + - scsi: mpi3mr: Add support for driver commands + - scsi: mpi3mr: Move data structures/definitions from MPI headers to uapi + header + - scsi: mpi3mr: Add support for MPT commands + - scsi: mpi3mr: Add support for PEL commands + - scsi: mpi3mr: Expose adapter state to sysfs + - scsi: mpi3mr: Add support for NVMe passthrough + - scsi: mpi3mr: Update driver version to 8.0.0.69.0 + - scsi: mpi3mr: Increase I/O timeout value to 60s + - scsi: mpi3mr: Hidden drives not removed during soft reset + - scsi: mpi3mr: Return I/Os to an unrecoverable HBA with DID_ERROR + - scsi: mpi3mr: Fix a NULL vs IS_ERR() bug in mpi3mr_bsg_init() + - scsi: mpi3mr: Return error if dma_alloc_coherent() fails + - scsi: mpi3mr: Add shost related sysfs attributes + - scsi: mpi3mr: Add target device related sysfs attributes + - scsi: mpi3mr: Rework mrioc->bsg_device model to fix warnings + - scsi: mpi3mr: Fix kernel-doc + * cpufreq: intel_pstate: Update Balance performance EPP for Sapphire Rapids + (LP: #2008519) + - cpufreq: intel_pstate: Update EPP for AlderLake mobile + - cpufreq: intel_pstate: Adjust balance_performance EPP for Sapphire Rapids + * Fail to output sound to external monitor which connects via docking station + (LP: #2009024) + - [Config] Enable CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM + * Fix mediatek wifi driver crash when loading wrong SAR table (LP: #2009118) + - wifi: mt76: mt7921: fix error code of return in mt7921_acpi_read + * Jammy update: v5.15.92 upstream stable release (LP: #2011472) + - ARM: dts: imx: Fix pca9547 i2c-mux node name + - ARM: dts: vf610: Fix pca9548 i2c-mux node names + - arm64: dts: freescale: Fix pca954x i2c-mux node names + - arm64: dts: imx8mq-thor96: fix no-mmc property for SDHCI + - firmware: arm_scmi: Clear stale xfer->hdr.status + - bpf: Skip task with pid=1 in send_signal_common() + - erofs/zmap.c: Fix incorrect offset calculation + - blk-cgroup: fix missing pd_online_fn() while activating policy + - HID: playstation: sanity check DualSense calibration data. + - dmaengine: imx-sdma: Fix a possible memory leak in sdma_transfer_init + - cifs: fix return of uninitialized rc in dfs_cache_update_tgthint() + - extcon: usbc-tusb320: fix kernel-doc warning + - Bluetooth: fix null ptr deref on hci_sync_conn_complete_evt + - tools: fix ARRAY_SIZE defines in tools and selftests hdrs + - selftests/vm: remove ARRAY_SIZE define from individual tests + - selftests: Provide local define of __cpuid_count() + - net: fix NULL pointer in skb_segment_list + - net: mctp: purge receive queues on sk destruction + - Linux 5.15.92 + * Jammy update: v5.15.91 upstream stable release (LP: #2011467) + - memory: tegra: Remove clients SID override programming + - memory: atmel-sdramc: Fix missing clk_disable_unprepare in + atmel_ramc_probe() + - memory: mvebu-devbus: Fix missing clk_disable_unprepare in + mvebu_devbus_probe() + - dmaengine: ti: k3-udma: Do conditional decrement of + UDMA_CHAN_RT_PEER_BCNT_REG + - arm64: dts: imx8mp-phycore-som: Remove invalid PMIC property + - ARM: dts: imx6ul-pico-dwarf: Use 'clock-frequency' + - ARM: dts: imx7d-pico: Use 'clock-frequency' + - ARM: dts: imx6qdl-gw560x: Remove incorrect 'uart-has-rtscts' + - arm64: dts: imx8mm-beacon: Fix ecspi2 pinmux + - ARM: imx: add missing of_node_put() + - HID: intel_ish-hid: Add check for ishtp_dma_tx_map + - arm64: dts: imx8mm-venice-gw7901: fix USB2 controller OC polarity + - soc: imx8m: Fix incorrect check for of_clk_get_by_name() + - reset: uniphier-glue: Use reset_control_bulk API + - reset: uniphier-glue: Fix possible null-ptr-deref + - EDAC/highbank: Fix memory leak in highbank_mc_probe() + - firmware: arm_scmi: Harden shared memory access in fetch_response + - firmware: arm_scmi: Harden shared memory access in fetch_notification + - tomoyo: fix broken dependency on *.conf.default + - RDMA/core: Fix ib block iterator counter overflow + - IB/hfi1: Reject a zero-length user expected buffer + - IB/hfi1: Reserve user expected TIDs + - IB/hfi1: Fix expected receive setup error exit issues + - IB/hfi1: Immediately remove invalid memory from hardware + - IB/hfi1: Remove user expected buffer invalidate race + - affs: initialize fsdata in affs_truncate() + - PM: AVS: qcom-cpr: Fix an error handling path in cpr_probe() + - arm64: dts: qcom: msm8992: Don't use sfpb mutex + - arm64: dts: qcom: msm8992-libra: Add CPU regulators + - arm64: dts: qcom: msm8992-libra: Fix the memory map + - phy: ti: fix Kconfig warning and operator precedence + - NFSD: fix use-after-free in nfsd4_ssc_setup_dul() + - ARM: dts: at91: sam9x60: fix the ddr clock for sam9x60 + - amd-xgbe: TX Flow Ctrl Registers are h/w ver dependent + - amd-xgbe: Delay AN timeout during KR training + - bpf: Fix pointer-leak due to insufficient speculative store bypass + mitigation + - phy: rockchip-inno-usb2: Fix missing clk_disable_unprepare() in + rockchip_usb2phy_power_on() + - net: nfc: Fix use-after-free in local_cleanup() + - net: wan: Add checks for NULL for utdm in undo_uhdlc_init and unmap_si_regs + - net: enetc: avoid deadlock in enetc_tx_onestep_tstamp() + - sch_htb: Avoid grafting on htb_destroy_class_offload when destroying htb + - gpio: use raw spinlock for gpio chip shadowed data + - gpio: mxc: Protect GPIO irqchip RMW with bgpio spinlock + - gpio: mxc: Always set GPIOs used as interrupt source to INPUT mode + - pinctrl/rockchip: Use temporary variable for struct device + - pinctrl/rockchip: add error handling for pull/drive register getters + - pinctrl: rockchip: fix reading pull type on rk3568 + - net: stmmac: Fix queue statistics reading + - net/sched: sch_taprio: fix possible use-after-free + - l2tp: Serialize access to sk_user_data with sk_callback_lock + - l2tp: Don't sleep and disable BH under writer-side sk_callback_lock + - l2tp: convert l2tp_tunnel_list to idr + - l2tp: close all race conditions in l2tp_tunnel_register() + - octeontx2-pf: Avoid use of GFP_KERNEL in atomic context + - net: usb: sr9700: Handle negative len + - net: mdio: validate parameter addr in mdiobus_get_phy() + - HID: check empty report_list in hid_validate_values() + - HID: check empty report_list in bigben_probe() + - net: stmmac: fix invalid call to mdiobus_get_phy() + - pinctrl: rockchip: fix mux route data for rk3568 + - HID: revert CHERRY_MOUSE_000C quirk + - usb: gadget: f_fs: Prevent race during ffs_ep0_queue_wait + - usb: gadget: f_fs: Ensure ep0req is dequeued before free_request + - Bluetooth: Fix possible deadlock in rfcomm_sk_state_change + - net: ipa: disable ipa interrupt during suspend + - net/mlx5: E-switch, Fix setting of reserved fields on + MODIFY_SCHEDULING_ELEMENT + - net: mlx5: eliminate anonymous module_init & module_exit + - drm/panfrost: fix GENERIC_ATOMIC64 dependency + - dmaengine: Fix double increment of client_count in dma_chan_get() + - net: macb: fix PTP TX timestamp failure due to packet padding + - virtio-net: correctly enable callback during start_xmit + - l2tp: prevent lockdep issue in l2tp_tunnel_register() + - HID: betop: check shape of output reports + - cifs: fix potential deadlock in cache_refresh_path() + - dmaengine: xilinx_dma: call of_node_put() when breaking out of + for_each_child_of_node() + - phy: phy-can-transceiver: Skip warning if no "max-bitrate" + - drm/amd/display: fix issues with driver unload + - nvme-pci: fix timeout request state check + - tcp: avoid the lookup process failing to get sk in ehash table + - octeontx2-pf: Fix the use of GFP_KERNEL in atomic context on rt + - ptdma: pt_core_execute_cmd() should use spinlock + - device property: fix of node refcount leak in + fwnode_graph_get_next_endpoint() + - w1: fix deadloop in __w1_remove_master_device() + - w1: fix WARNING after calling w1_process() + - driver core: Fix test_async_probe_init saves device in wrong array + - selftests/net: toeplitz: fix race on tpacket_v3 block close + - net: dsa: microchip: ksz9477: port map correction in ALU table entry + register + - thermal/core: Remove duplicate information when an error occurs + - thermal/core: Rename 'trips' to 'num_trips' + - thermal: Validate new state in cur_state_store() + - thermal/core: fix error code in __thermal_cooling_device_register() + - thermal: core: call put_device() only after device_register() fails + - net: stmmac: enable all safety features by default + - tcp: fix rate_app_limited to default to 1 + - scsi: iscsi: Fix multiple iSCSI session unbind events sent to userspace + - cpufreq: Add Tegra234 to cpufreq-dt-platdev blocklist + - kcsan: test: don't put the expect array on the stack + - cpufreq: Add SM6375 to cpufreq-dt-platdev blocklist + - ASoC: fsl_micfil: Correct the number of steps on SX controls + - net: usb: cdc_ether: add support for Thales Cinterion PLS62-W modem + - drm: Add orientation quirk for Lenovo ideapad D330-10IGL + - s390/debug: add _ASM_S390_ prefix to header guard + - s390: expicitly align _edata and _end symbols on page boundary + - perf/x86/msr: Add Emerald Rapids + - perf/x86/intel/uncore: Add Emerald Rapids + - cpufreq: armada-37xx: stop using 0 as NULL pointer + - ASoC: fsl_ssi: Rename AC'97 streams to avoid collisions with AC'97 CODEC + - ASoC: fsl-asoc-card: Fix naming of AC'97 CODEC widgets + - spi: spidev: remove debug messages that access spidev->spi without locking + - KVM: s390: interrupt: use READ_ONCE() before cmpxchg() + - scsi: hisi_sas: Set a port invalid only if there are no devices attached + when refreshing port id + - r8152: add vendor/device ID pair for Microsoft Devkit + - platform/x86: touchscreen_dmi: Add info for the CSL Panther Tab HD + - platform/x86: asus-nb-wmi: Add alternate mapping for KEY_SCREENLOCK + - lockref: stop doing cpu_relax in the cmpxchg loop + - firmware: coreboot: Check size of table entry and use flex-array + - drm/i915: Allow switching away via vga-switcheroo if uninitialized + - drm/i915: Remove unused variable + - x86: ACPI: cstate: Optimize C3 entry on AMD CPUs + - fs: reiserfs: remove useless new_opts in reiserfs_remount + - sysctl: add a new register_sysctl_init() interface + - kernel/panic: move panic sysctls to its own file + - panic: unset panic_on_warn inside panic() + - ubsan: no need to unset panic_on_warn in ubsan_epilogue() + - kasan: no need to unset panic_on_warn in end_report() + - exit: Add and use make_task_dead. + - objtool: Add a missing comma to avoid string concatenation + - hexagon: Fix function name in die() + - h8300: Fix build errors from do_exit() to make_task_dead() transition + - csky: Fix function name in csky_alignment() and die() + - ia64: make IA64_MCA_RECOVERY bool instead of tristate + - panic: Separate sysctl logic from CONFIG_SMP + - exit: Put an upper limit on how often we can oops + - exit: Expose "oops_count" to sysfs + - exit: Allow oops_limit to be disabled + - panic: Consolidate open-coded panic_on_warn checks + - panic: Introduce warn_limit + - panic: Expose "warn_count" to sysfs + - docs: Fix path paste-o for /sys/kernel/warn_count + - exit: Use READ_ONCE() for all oops/warn limit reads + - Bluetooth: hci_sync: cancel cmd_timer if hci_open failed + - drm/amdgpu: complete gfxoff allow signal during suspend without delay + - scsi: hpsa: Fix allocation size for scsi_host_alloc() + - KVM: SVM: fix tsc scaling cache logic + - module: Don't wait for GOING modules + - tracing: Make sure trace_printk() can output as soon as it can be used + - trace_events_hist: add check for return value of 'create_hist_field' + - ftrace/scripts: Update the instructions for ftrace-bisect.sh + - cifs: Fix oops due to uncleared server->smbd_conn in reconnect + - i2c: mv64xxx: Remove shutdown method from driver + - i2c: mv64xxx: Add atomic_xfer method to driver + - ksmbd: add smbd max io size parameter + - ksmbd: add max connections parameter + - ksmbd: do not sign response to session request for guest login + - ksmbd: downgrade ndr version error message to debug + - ksmbd: limit pdu length size according to connection status + - ovl: fail on invalid uid/gid mapping at copy up + - KVM: x86/vmx: Do not skip segment attributes if unusable bit is set + - KVM: arm64: GICv4.1: Fix race with doorbell on VPE activation/deactivation + - thermal: intel: int340x: Protect trip temperature from concurrent updates + - ipv6: fix reachability confirmation with proxy_ndp + - ARM: 9280/1: mm: fix warning on phys_addr_t to void pointer assignment + - EDAC/device: Respect any driver-supplied workqueue polling value + - EDAC/qcom: Do not pass llcc_driv_data as edac_device_ctl_info's pvt_info + - net: mana: Fix IRQ name - add PCI and queue number + - scsi: ufs: core: Fix devfreq deadlocks + - i2c: designware: use casting of u64 in clock multiplication to avoid + overflow + - netlink: prevent potential spectre v1 gadgets + - net: fix UaF in netns ops registration error path + - drm/i915/selftest: fix intel_selftest_modify_policy argument types + - netfilter: nft_set_rbtree: Switch to node list walk for overlap detection + - netfilter: nft_set_rbtree: skip elements in transaction from garbage + collection + - netlink: annotate data races around nlk->portid + - netlink: annotate data races around dst_portid and dst_group + - netlink: annotate data races around sk_state + - ipv4: prevent potential spectre v1 gadget in ip_metrics_convert() + - ipv4: prevent potential spectre v1 gadget in fib_metrics_match() + - netfilter: conntrack: fix vtag checks for ABORT/SHUTDOWN_COMPLETE + - netrom: Fix use-after-free of a listening socket. + - net/sched: sch_taprio: do not schedule in taprio_reset() + - sctp: fail if no bound addresses can be used for a given scope + - riscv/kprobe: Fix instruction simulation of JALR + - nvme: fix passthrough csi check + - gpio: mxc: Unlock on error path in mxc_flip_edge() + - ravb: Rename "no_ptp_cfg_active" and "ptp_cfg_active" variables + - net: ravb: Fix lack of register setting after system resumed for Gen3 + - net: ravb: Fix possible hang if RIS2_QFF1 happen + - net: mctp: mark socks as dead on unhash, prevent re-add + - thermal: intel: int340x: Add locking to int340x_thermal_get_trip_type() + - net/tg3: resolve deadlock in tg3_reset_task() during EEH + - net: mdio-mux-meson-g12a: force internal PHY off on mux switch + - treewide: fix up files incorrectly marked executable + - tools: gpio: fix -c option of gpio-event-mon + - Revert "Input: synaptics - switch touchpad on HP Laptop 15-da3001TU to RMI + mode" + - cpufreq: Move to_gov_attr_set() to cpufreq.h + - cpufreq: governor: Use kobject release() method to free dbs_data + - kbuild: Allow kernel installation packaging to override pkg-config + - block: fix and cleanup bio_check_ro + - x86/i8259: Mark legacy PIC interrupts with IRQ_LEVEL + - netfilter: conntrack: unify established states for SCTP paths + - perf/x86/amd: fix potential integer overflow on shift of a int + - Linux 5.15.91 + * Kernel livepatch support for for s390x (LP: #1639924) + - sched: Improve try_invoke_on_locked_down_task() + - sched,rcu: Rework try_invoke_on_locked_down_task() + - sched,livepatch: Use task_call_func() + - sched: Simplify wake_up_*idle*() + - sched,livepatch: Use wake_up_if_idle() + - sched: Improve wake_up_all_idle_cpus() take #2 + - s390/entry: remove unused expoline thunk + - s390: remove unused expoline to BC instructions + - s390/nospec: generate single register thunks if possible + - s390/nospec: add an option to use thunk-extern + - s390/nospec: align and size extern thunks + - bug: Use normal relative pointers in 'struct bug_entry' + - s390/nospec: build expoline.o for modules_prepare target + - [Config] Enable EXPOLINE_EXTERN on s390x + - [Config] s390x: Removing UBSAN from configuration + * Do not sort the task scan result from /proc when synthesizing perf events + (LP: #2008971) + - perf synthetic-events: Don't sort the task scan result from /proc + * linux: Staging modules should be unsigned (LP: #1642368) + - [Packaging] Move and update signature inclusion list + - SAUCE: Add selective signing of staging modules + - [Packaging] Add module-signature-check + - [Packaging] module-signature-check: Check debian./signature-inclusion + - [Packaging] Introduce debian/scripts/sign-module + - SAUCE: Switch to using debian/scripts/sign-module + * Jammy update: v5.15.90 upstream stable release (LP: #2008933) + - btrfs: fix trace event name typo for FLUSH_DELAYED_REFS + - pNFS/filelayout: Fix coalescing test for single DS + - tools/virtio: initialize spinlocks in vring_test.c + - virtio_pci: modify ENOENT to EINVAL + - vduse: Validate vq_num in vduse_validate_config() + - net/ethtool/ioctl: return -EOPNOTSUPP if we have no phy stats + - r8169: move rtl_wol_enable_rx() and rtl_prepare_power_down() + - RDMA/srp: Move large values to a new enum for gcc13 + - btrfs: always report error in run_one_delayed_ref() + - x86/asm: Fix an assembler warning with current binutils + - f2fs: let's avoid panic if extent_tree is not created + - perf/x86/rapl: Treat Tigerlake like Icelake + - fbdev: omapfb: avoid stack overflow warning + - Bluetooth: hci_qca: Fix driver shutdown on closed serdev + - wifi: brcmfmac: fix regression for Broadcom PCIe wifi devices + - wifi: mac80211: sdata can be NULL during AMPDU start + - Add exception protection processing for vd in axi_chan_handle_err function + - zonefs: Detect append writes at invalid locations + - nilfs2: fix general protection fault in nilfs_btree_insert() + - efi: fix userspace infinite retry read efivars after EFI runtime services + page fault + - ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook + - ALSA: hda/realtek: fix mute/micmute LEDs don't work for a HP platform + - drm/amdgpu: disable runtime pm on several sienna cichlid cards(v2) + - drm/amd: Delay removal of the firmware framebuffer + - hugetlb: unshare some PMDs when splitting VMAs + - io_uring: don't gate task_work run on TIF_NOTIFY_SIGNAL + - eventpoll: add EPOLL_URING_WAKE poll wakeup flag + - eventfd: provide a eventfd_signal_mask() helper + - io_uring: pass in EPOLL_URING_WAKE for eventfd signaling and wakeups + - io_uring: improve send/recv error handling + - io_uring: ensure recv and recvmsg handle MSG_WAITALL correctly + - io_uring: add flag for disabling provided buffer recycling + - io_uring: support MSG_WAITALL for IORING_OP_SEND(MSG) + - io_uring: allow re-poll if we made progress + - io_uring: fix async accept on O_NONBLOCK sockets + - io_uring: ensure that cached task references are always put on exit + - io_uring: remove duplicated calls to io_kiocb_ppos + - io_uring: update kiocb->ki_pos at execution time + - io_uring: do not recalculate ppos unnecessarily + - io_uring/rw: defer fsnotify calls to task context + - xhci-pci: set the dma max_seg_size + - usb: xhci: Check endpoint is valid before dereferencing it + - xhci: Fix null pointer dereference when host dies + - xhci: Add update_hub_device override for PCI xHCI hosts + - xhci: Add a flag to disable USB3 lpm on a xhci root port level. + - usb: acpi: add helper to check port lpm capability using acpi _DSM + - xhci: Detect lpm incapable xHC USB3 roothub ports from ACPI tables + - prlimit: do_prlimit needs to have a speculation check + - USB: serial: option: add Quectel EM05-G (GR) modem + - USB: serial: option: add Quectel EM05-G (CS) modem + - USB: serial: option: add Quectel EM05-G (RS) modem + - USB: serial: option: add Quectel EC200U modem + - USB: serial: option: add Quectel EM05CN (SG) modem + - USB: serial: option: add Quectel EM05CN modem + - staging: vchiq_arm: fix enum vchiq_status return types + - USB: misc: iowarrior: fix up header size for USB_DEVICE_ID_CODEMERCS_IOW100 + - misc: fastrpc: Don't remove map on creater_process and device_release + - misc: fastrpc: Fix use-after-free race condition for maps + - usb: core: hub: disable autosuspend for TI TUSB8041 + - comedi: adv_pci1760: Fix PWM instruction handling + - ACPI: PRM: Check whether EFI runtime is available + - mmc: sunxi-mmc: Fix clock refcount imbalance during unbind + - mmc: sdhci-esdhc-imx: correct the tuning start tap and step setting + - btrfs: do not abort transaction on failure to write log tree when syncing + log + - btrfs: fix race between quota rescan and disable leading to NULL pointer + deref + - cifs: do not include page data when checking signature + - thunderbolt: Use correct function to calculate maximum USB3 link rate + - riscv: dts: sifive: fu740: fix size of pcie 32bit memory + - bpf: restore the ebpf program ID for BPF_AUDIT_UNLOAD and + PERF_BPF_EVENT_PROG_UNLOAD + - staging: mt7621-dts: change some node hex addresses to lower case + - tty: serial: qcom-geni-serial: fix slab-out-of-bounds on RX FIFO buffer + - tty: fix possible null-ptr-defer in spk_ttyio_release + - USB: serial: cp210x: add SCALANCE LPE-9000 device id + - usb: cdns3: remove fetched trb from cache before dequeuing + - usb: host: ehci-fsl: Fix module alias + - usb: typec: tcpm: Fix altmode re-registration causes sysfs create fail + - usb: typec: altmodes/displayport: Add pin assignment helper + - usb: typec: altmodes/displayport: Fix pin assignment calculation + - usb: gadget: g_webcam: Send color matching descriptor per frame + - usb: gadget: f_ncm: fix potential NULL ptr deref in ncm_bitrate() + - usb-storage: apply IGNORE_UAS only for HIKSEMI MD202 on RTL9210 + - dt-bindings: phy: g12a-usb2-phy: fix compatible string documentation + - dt-bindings: phy: g12a-usb3-pcie-phy: fix compatible string documentation + - serial: pch_uart: Pass correct sg to dma_unmap_sg() + - dmaengine: lgm: Move DT parsing after initialization + - dmaengine: tegra210-adma: fix global intr clear + - dmaengine: idxd: Let probe fail when workqueue cannot be enabled + - serial: amba-pl011: fix high priority character transmission in rs486 mode + - serial: atmel: fix incorrect baudrate setup + - gsmi: fix null-deref in gsmi_get_variable + - mei: me: add meteor lake point M DID + - drm/i915: re-disable RC6p on Sandy Bridge + - drm/i915/display: Check source height is > 0 + - drm/amd/display: Fix set scaling doesn's work + - drm/amd/display: Calculate output_color_space after pixel encoding + adjustment + - drm/amd/display: Fix COLOR_SPACE_YCBCR2020_TYPE matrix + - drm/amdgpu: drop experimental flag on aldebaran + - fs/ntfs3: Fix attr_punch_hole() null pointer derenference + - arm64: efi: Execute runtime services from a dedicated stack + - efi: rt-wrapper: Add missing include + - x86/fpu: Use _Alignof to avoid undefined behavior in TYPE_ALIGN + - tracing: Use alignof__(struct {type b;}) instead of offsetof() + - io_uring: io_kiocb_update_pos() should not touch file for non -1 offset + - io_uring/net: fix fast_iov assignment in io_setup_async_msg() + - net/mlx5: fix missing mutex_unlock in mlx5_fw_fatal_reporter_err_work() + - block: mq-deadline: Rename deadline_is_seq_writes() + - soc: qcom: apr: Make qcom,protection-domain optional again + - mm/khugepaged: fix collapse_pte_mapped_thp() to allow anon_vma + - io_uring: Clean up a false-positive warning from GCC 9.3.0 + - io_uring: fix double poll leak on repolling + - io_uring/rw: ensure kiocb_end_write() is always called + - io_uring/rw: remove leftover debug statement + - Linux 5.15.90 + * Jammy update: v5.15.89 upstream stable release (LP: #2008929) + - ALSA: control-led: use strscpy in set_led_id() + - ALSA: hda/realtek - Turn on power early + - ALSA: hda/realtek: Enable mute/micmute LEDs on HP Spectre x360 13-aw0xxx + - KVM: arm64: Fix S1PTW handling on RO memslots + - KVM: arm64: nvhe: Fix build with profile optimization + - selftests: kvm: Fix a compile error in selftests/kvm/rseq_test.c + - efi: tpm: Avoid READ_ONCE() for accessing the event log + - docs: Fix the docs build with Sphinx 6.0 + - net: stmmac: add aux timestamps fifo clearance wait + - perf auxtrace: Fix address filter duplicate symbol selection + - s390/kexec: fix ipl report address for kdump + - ASoC: qcom: lpass-cpu: Fix fallback SD line index handling + - s390/cpum_sf: add READ_ONCE() semantics to compare and swap loops + - s390/percpu: add READ_ONCE() to arch_this_cpu_to_op_simple() + - drm/virtio: Fix GEM handle creation UAF + - drm/i915/gt: Reset twice + - net/mlx5e: Set action fwd flag when parsing tc action goto + - cifs: Fix uninitialized memory read for smb311 posix symlink create + - platform/x86: dell-privacy: Only register SW_CAMERA_LENS_COVER if present + - platform/surface: aggregator: Ignore command messages not intended for us + - platform/x86: dell-privacy: Fix SW_CAMERA_LENS_COVER reporting + - dt-bindings: msm: dsi-controller-main: Fix operating-points-v2 constraint + - drm/msm/adreno: Make adreno quirks not overwrite each other + - dt-bindings: msm: dsi-controller-main: Fix power-domain constraint + - dt-bindings: msm: dsi-controller-main: Fix description of core clock + - dt-bindings: msm: dsi-phy-28nm: Add missing qcom, dsi-phy-regulator-ldo-mode + - platform/x86: ideapad-laptop: Add Legion 5 15ARH05 DMI id to + set_fn_lock_led_list[] + - drm/msm/dp: do not complete dp_aux_cmd_fifo_tx() if irq is not for aux + transfer + - dt-bindings: msm/dsi: Don't require vdds-supply on 10nm PHY + - dt-bindings: msm/dsi: Don't require vcca-supply on 14nm PHY + - platform/x86: sony-laptop: Don't turn off 0x153 keyboard backlight during + probe + - ixgbe: fix pci device refcount leak + - ipv6: raw: Deduct extension header length in rawv6_push_pending_frames + - bus: mhi: host: Fix race between channel preparation and M0 event + - usb: ulpi: defer ulpi_register on ulpi_read_id timeout + - iommu/iova: Fix alloc iova overflows issue + - iommu/mediatek-v1: Fix an error handling path in mtk_iommu_v1_probe() + - sched/core: Fix use-after-free bug in dup_user_cpus_ptr() + - netfilter: ipset: Fix overflow before widen in the bitmap_ip_create() + function. + - powerpc/imc-pmu: Fix use of mutex in IRQs disabled section + - x86/boot: Avoid using Intel mnemonics in AT&T syntax asm + - EDAC/device: Fix period calculation in edac_device_reset_delay_period() + - x86/resctrl: Fix task CLOSID/RMID update race + - regulator: da9211: Use irq handler when ready + - scsi: mpi3mr: Refer CONFIG_SCSI_MPI3MR in Makefile + - scsi: ufs: Stop using the clock scaling lock in the error handler + - scsi: ufs: core: WLUN suspend SSU/enter hibern8 fail recovery + - ASoC: wm8904: fix wrong outputs volume after power reactivation + - ALSA: usb-audio: Make sure to stop endpoints before closing EPs + - ALSA: usb-audio: Relax hw constraints for implicit fb sync + - tipc: fix unexpected link reset due to discovery messages + - octeontx2-af: Fix LMAC config in cgx_lmac_rx_tx_enable + - hvc/xen: lock console list traversal + - nfc: pn533: Wait for out_urb's completion in pn533_usb_send_frame() + - af_unix: selftest: Fix the size of the parameter to connect() + - tools/nolibc: x86: Remove `r8`, `r9` and `r10` from the clobber list + - tools/nolibc: x86-64: Use `mov $60,%eax` instead of `mov $60,%rax` + - tools/nolibc: use pselect6 on RISCV + - tools/nolibc/std: move the standard type definitions to std.h + - tools/nolibc/types: split syscall-specific definitions into their own files + - tools/nolibc/arch: split arch-specific code into individual files + - tools/nolibc/arch: mark the _start symbol as weak + - tools/nolibc: Remove .global _start from the entry point code + - tools/nolibc: restore mips branch ordering in the _start block + - tools/nolibc: fix the O_* fcntl/open macro definitions for riscv + - net/sched: act_mpls: Fix warning during failed attribute validation + - net/mlx5: Fix ptp max frequency adjustment range + - net/mlx5e: Don't support encap rules with gbp option + - perf build: Properly guard libbpf includes + - igc: Fix PPS delta between two synchronized end-points + - platform/surface: aggregator: Add missing call to ssam_request_sync_free() + - Documentation: KVM: add API issues section + - KVM: x86: Do not return host topology information from + KVM_GET_SUPPORTED_CPUID + - io_uring: lock overflowing for IOPOLL + - arm64: atomics: format whitespace consistently + - arm64: atomics: remove LL/SC trampolines + - arm64: cmpxchg_double*: hazard against entire exchange variable + - efi: fix NULL-deref in init error path + - io_uring/io-wq: free worker if task_work creation is canceled + - io_uring/io-wq: only free worker if it was allocated for creation + - block: handle bio_split_to_limits() NULL return + - Revert "usb: ulpi: defer ulpi_register on ulpi_read_id timeout" + - pinctrl: amd: Add dynamic debugging for active GPIOs + - Linux 5.15.89 + * Jammy update: v5.15.88 upstream stable release (LP: #2008927) + - parisc: Align parisc MADV_XXX constants with all other architectures + - serial: fixup backport of "serial: Deassert Transmit Enable on probe in + driver-specific way" + - net: sched: disallow noqueue for qdisc classes + - ALSA: hda/hdmi: Add a HP device 0x8715 to force connect list + - ALSA: hda - Enable headset mic on another Dell laptop with ALC3254 + - Linux 5.15.88 + * Fix selftests/ftracetests/Meta-selftests (LP: #2006453) + - selftests/ftrace: Fix bash specific "==" operator + * jammy/linux: 5.15.0-69.76 -proposed tracker (LP: #2012092) + * NFS deathlock with last Kernel 5.4.0-144.161 and 5.15.0-67.74 (LP: #2009325) + - NFS: Correct timing for assigning access cache timestamp + + -- Tim Gardner Wed, 29 Mar 2023 13:54:22 -0600 + +linux-azure-5.15 (5.15.0-1035.42~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1035.42~20.04.1 -proposed tracker + (LP: #2008311) + + [ Ubuntu: 5.15.0-1035.42 ] + + * jammy/linux-azure: 5.15.0-1035.42 -proposed tracker (LP: #2008312) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2023.02.27) + * jammy/linux: 5.15.0-68.75 -proposed tracker (LP: #2008349) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2023.02.27) + * Ubuntu 22.04 kernel 5.15.0-46-generic leaks kernel memory in kmalloc-2k + slabs (LP: #1987430) + - SAUCE: audit: fix memory leak of audit_log_lsm() + * [EGS] Backport intel_idle support for Eagle Stream Ubuntu 22.04 release + (LP: #2003267) + - intel_idle: add SPR support + - intel_idle: add 'preferred_cstates' module argument + - intel_idle: add core C6 optimization for SPR + - cpuidle: intel_idle: Drop redundant backslash at line end + - intel_idle: Fix the 'preferred_cstates' module parameter + - intel_idle: Fix SPR C6 optimization + - intel_idle: make SPR C1 and C1E be independent + * Fix speaker mute hotkey doesn't work on Dell G16 series (LP: #2003161) + - platform/x86: dell-wmi: Add a keymap for KEY_MUTE in type 0x0010 table + * Fix the ACPI _CPC not found error from kernel dmesg on some dynamic SSDT + table loaded firmwares (LP: #2006077) + - ACPI: bus: Avoid using CPPC if not supported by firmware + - ACPI: bus: Set CPPC _OSC bits for all and when CPPC_LIB is supported + - ACPI: CPPC: Only probe for _CPC if CPPC v2 is acked + * rtcpie in timers from ubuntu_kernel_selftests randomly failing + (LP: #1814234) + - SAUCE: selftest: rtcpie: Force passing unreliable subtest + * Jammy update: v5.15.87 upstream stable release (LP: #2007441) + - usb: dwc3: qcom: Fix memory leak in dwc3_qcom_interconnect_init + - cifs: fix oops during encryption + - nvme-pci: fix doorbell buffer value endianness + - nvme-pci: fix mempool alloc size + - nvme-pci: fix page size checks + - ACPI: resource: do IRQ override on LENOVO IdeaPad + - ACPI: resource: do IRQ override on XMG Core 15 + - ACPI: resource: do IRQ override on Lenovo 14ALC7 + - block, bfq: fix uaf for bfqq in bfq_exit_icq_bfqq + - ata: ahci: Fix PCS quirk application for suspend + - nvme: fix the NVME_CMD_EFFECTS_CSE_MASK definition + - nvmet: don't defer passthrough commands with trivial effects to the + workqueue + - fs/ntfs3: Validate BOOT record_size + - fs/ntfs3: Add overflow check for attribute size + - fs/ntfs3: Validate data run offset + - fs/ntfs3: Add null pointer check to attr_load_runs_vcn + - fs/ntfs3: Fix memory leak on ntfs_fill_super() error path + - fs/ntfs3: Add null pointer check for inode operations + - fs/ntfs3: Validate attribute name offset + - fs/ntfs3: Validate buffer length while parsing index + - fs/ntfs3: Validate resident attribute name + - fs/ntfs3: Fix slab-out-of-bounds read in run_unpack + - soundwire: dmi-quirks: add quirk variant for LAPBC710 NUC15 + - fs/ntfs3: Validate index root when initialize NTFS security + - fs/ntfs3: Use __GFP_NOWARN allocation at wnd_init() + - fs/ntfs3: Use __GFP_NOWARN allocation at ntfs_fill_super() + - fs/ntfs3: Delete duplicate condition in ntfs_read_mft() + - fs/ntfs3: Fix slab-out-of-bounds in r_page + - objtool: Fix SEGFAULT + - powerpc/rtas: avoid device tree lookups in rtas_os_term() + - powerpc/rtas: avoid scheduling in rtas_os_term() + - HID: multitouch: fix Asus ExpertBook P2 P2451FA trackpoint + - HID: plantronics: Additional PIDs for double volume key presses quirk + - pstore: Properly assign mem_type property + - pstore/zone: Use GFP_ATOMIC to allocate zone buffer + - hfsplus: fix bug causing custom uid and gid being unable to be assigned with + mount + - binfmt: Fix error return code in load_elf_fdpic_binary() + - ovl: Use ovl mounter's fsuid and fsgid in ovl_link() + - ALSA: line6: correct midi status byte when receiving data from podxt + - ALSA: line6: fix stack overflow in line6_midi_transmit + - pnode: terminate at peers of source + - mfd: mt6360: Add bounds checking in Regmap read/write call-backs + - md: fix a crash in mempool_free + - mm, compaction: fix fast_isolate_around() to stay within boundaries + - f2fs: should put a page when checking the summary info + - f2fs: allow to read node block after shutdown + - mmc: vub300: fix warning - do not call blocking ops when !TASK_RUNNING + - tpm: acpi: Call acpi_put_table() to fix memory leak + - tpm: tpm_crb: Add the missed acpi_put_table() to fix memory leak + - tpm: tpm_tis: Add the missed acpi_put_table() to fix memory leak + - SUNRPC: Don't leak netobj memory when gss_read_proxy_verf() fails + - kcsan: Instrument memcpy/memset/memmove with newer Clang + - ASoC: Intel/SOF: use set_stream() instead of set_tdm_slots() for HDAudio + - ASoC/SoundWire: dai: expand 'stream' concept beyond SoundWire + - rcu-tasks: Simplify trc_read_check_handler() atomic operations + - net/af_packet: add VLAN support for AF_PACKET SOCK_RAW GSO + - net/af_packet: make sure to pull mac header + - media: stv0288: use explicitly signed char + - soc: qcom: Select REMAP_MMIO for LLCC driver + - kest.pl: Fix grub2 menu handling for rebooting + - ktest.pl minconfig: Unset configs instead of just removing them + - jbd2: use the correct print format + - perf/x86/intel/uncore: Disable I/O stacks to PMU mapping on ICX-D + - perf/x86/intel/uncore: Clear attr_update properly + - arm64: dts: qcom: sdm845-db845c: correct SPI2 pins drive strength + - mmc: sdhci-sprd: Disable CLK_AUTO when the clock is less than 400K + - btrfs: fix resolving backrefs for inline extent followed by prealloc + - ARM: ux500: do not directly dereference __iomem + - arm64: dts: qcom: sdm850-lenovo-yoga-c630: correct I2C12 pins drive strength + - selftests: Use optional USERCFLAGS and USERLDFLAGS + - PM/devfreq: governor: Add a private governor_data for governor + - cpufreq: Init completion before kobject_init_and_add() + - ALSA: patch_realtek: Fix Dell Inspiron Plus 16 + - ALSA: hda/realtek: Apply dual codec fixup for Dell Latitude laptops + - fs: dlm: fix sock release if listen fails + - fs: dlm: retry accept() until -EAGAIN or error returns + - mptcp: mark ops structures as ro_after_init + - mptcp: remove MPTCP 'ifdef' in TCP SYN cookies + - dm cache: Fix ABBA deadlock between shrink_slab and dm_cache_metadata_abort + - dm thin: Fix ABBA deadlock between shrink_slab and dm_pool_abort_metadata + - dm thin: Use last transaction's pmd->root when commit failed + - dm thin: resume even if in FAIL mode + - dm thin: Fix UAF in run_timer_softirq() + - dm integrity: Fix UAF in dm_integrity_dtr() + - dm clone: Fix UAF in clone_dtr() + - dm cache: Fix UAF in destroy() + - dm cache: set needs_check flag after aborting metadata + - tracing/hist: Fix out-of-bound write on 'action_data.var_ref_idx' + - perf/core: Call LSM hook after copying perf_event_attr + - of/kexec: Fix reading 32-bit "linux,initrd-{start,end}" values + - KVM: VMX: Resume guest immediately when injecting #GP on ECREATE + - KVM: nVMX: Inject #GP, not #UD, if "generic" VMXON CR0/CR4 check fails + - KVM: nVMX: Properly expose ENABLE_USR_WAIT_PAUSE control to L1 + - x86/microcode/intel: Do not retry microcode reloading on the APs + - ftrace/x86: Add back ftrace_expected for ftrace bug reports + - x86/kprobes: Fix kprobes instruction boudary check with CONFIG_RETHUNK + - x86/kprobes: Fix optprobe optimization check with CONFIG_RETHUNK + - tracing: Fix race where eprobes can be called before the event + - tracing: Fix complicated dependency of CONFIG_TRACER_MAX_TRACE + - tracing/hist: Fix wrong return value in parse_action_params() + - tracing/probes: Handle system names with hyphens + - tracing: Fix infinite loop in tracing_read_pipe on overflowed + print_trace_line + - staging: media: tegra-video: fix chan->mipi value on error + - staging: media: tegra-video: fix device_node use after free + - ARM: 9256/1: NWFPE: avoid compiler-generated __aeabi_uldivmod + - media: dvb-core: Fix double free in dvb_register_device() + - cifs: fix confusing debug message + - cifs: fix missing display of three mount options + - rtc: ds1347: fix value written to century register + - block: mq-deadline: Do not break sequential write streams to zoned HDDs + - md/bitmap: Fix bitmap chunk size overflow issues + - efi: Add iMac Pro 2017 to uefi skip cert quirk + - wifi: wilc1000: sdio: fix module autoloading + - ASoC: jz4740-i2s: Handle independent FIFO flush bits + - ipu3-imgu: Fix NULL pointer dereference in imgu_subdev_set_selection() + - ipmi: fix long wait in unload when IPMI disconnect + - mtd: spi-nor: Check for zero erase size in spi_nor_find_best_erase_type() + - ima: Fix a potential NULL pointer access in ima_restore_measurement_list + - ipmi: fix use after free in _ipmi_destroy_user() + - PCI: Fix pci_device_is_present() for VFs by checking PF + - PCI/sysfs: Fix double free in error path + - riscv: stacktrace: Fixup ftrace_graph_ret_addr retp argument + - riscv: mm: notify remote harts about mmu cache updates + - crypto: n2 - add missing hash statesize + - driver core: Fix bus_type.match() error handling in __driver_attach() + - phy: qcom-qmp-combo: fix sc8180x reset + - iommu/amd: Fix ivrs_acpihid cmdline parsing code + - remoteproc: core: Do pm_relax when in RPROC_OFFLINE state + - parisc: led: Fix potential null-ptr-deref in start_task() + - device_cgroup: Roll back to original exceptions after copy failure + - drm/connector: send hotplug uevent on connector cleanup + - drm/vmwgfx: Validate the box size for the snooped cursor + - drm/i915/dsi: fix VBT send packet port selection for dual link DSI + - drm/ingenic: Fix missing platform_driver_unregister() call in + ingenic_drm_init() + - ext4: silence the warning when evicting inode with dioread_nolock + - ext4: add inode table check in __ext4_get_inode_loc to aovid possible + infinite loop + - ext4: remove trailing newline from ext4_msg() message + - fs: ext4: initialize fsdata in pagecache_write() + - ext4: fix use-after-free in ext4_orphan_cleanup + - ext4: fix undefined behavior in bit shift for ext4_check_flag_values + - ext4: add EXT4_IGET_BAD flag to prevent unexpected bad inode + - ext4: add helper to check quota inums + - ext4: fix bug_on in __es_tree_search caused by bad quota inode + - ext4: fix reserved cluster accounting in __es_remove_extent() + - ext4: check and assert if marking an no_delete evicting inode dirty + - ext4: fix bug_on in __es_tree_search caused by bad boot loader inode + - ext4: fix leaking uninitialized memory in fast-commit journal + - ext4: fix uninititialized value in 'ext4_evict_inode' + - ext4: init quota for 'old.inode' in 'ext4_rename' + - ext4: fix delayed allocation bug in ext4_clu_mapped for bigalloc + inline + - ext4: fix error code return to user-space in ext4_get_branch() + - ext4: avoid BUG_ON when creating xattrs + - ext4: fix kernel BUG in 'ext4_write_inline_data_end()' + - ext4: fix inode leak in ext4_xattr_inode_create() on an error path + - ext4: initialize quota before expanding inode in setproject ioctl + - ext4: avoid unaccounted block allocation when expanding inode + - ext4: allocate extended attribute value in vmalloc area + - drm/amdgpu: handle polaris10/11 overlap asics (v2) + - block: mq-deadline: Fix dd_finish_request() for zoned devices + - tracing: Fix issue of missing one synthetic field + - ext4: remove unused enum EXT4_FC_COMMIT_FAILED + - ext4: use ext4_debug() instead of jbd_debug() + - ext4: introduce EXT4_FC_TAG_BASE_LEN helper + - ext4: factor out ext4_fc_get_tl() + - ext4: fix potential out of bound read in ext4_fc_replay_scan() + - ext4: disable fast-commit of encrypted dir operations + - ext4: don't set up encryption key during jbd2 transaction + - ext4: add missing validation of fast-commit record lengths + - ext4: fix unaligned memory access in ext4_fc_reserve_space() + - ext4: fix off-by-one errors in fast-commit block filling + - ARM: renumber bits related to _TIF_WORK_MASK + - phy: qcom-qmp-combo: fix out-of-bounds clock access + - btrfs: replace strncpy() with strscpy() + - btrfs: move missing device handling in a dedicate function + - btrfs: fix extent map use-after-free when handling missing device in + read_one_chunk + - x86/mce: Get rid of msr_ops + - x86/MCE/AMD: Clear DFR errors found in THR handler + - media: s5p-mfc: Fix to handle reference queue during finishing + - media: s5p-mfc: Clear workbit to handle error condition + - media: s5p-mfc: Fix in register read and write for H264 + - perf probe: Use dwarf_attr_integrate as generic DWARF attr accessor + - perf probe: Fix to get the DW_AT_decl_file and DW_AT_call_file as unsinged + data + - ravb: Fix "failed to switch device to config mode" message during unbind + - ext4: goto right label 'failed_mount3a' + - ext4: correct inconsistent error msg in nojournal mode + - mbcache: automatically delete entries from cache on freeing + - ext4: fix deadlock due to mbcache entry corruption + - drm/i915/migrate: don't check the scratch page + - drm/i915/migrate: fix offset calculation + - drm/i915/migrate: fix length calculation + - SUNRPC: ensure the matching upcall is in-flight upon downcall + - btrfs: fix an error handling path in btrfs_defrag_leaves() + - bpf: pull before calling skb_postpull_rcsum() + - drm/panfrost: Fix GEM handle creation ref-counting + - netfilter: nf_tables: consolidate set description + - netfilter: nf_tables: add function to create set stateful expressions + - netfilter: nf_tables: perform type checking for existing sets + - vmxnet3: correctly report csum_level for encapsulated packet + - netfilter: nf_tables: honor set timeout and garbage collection updates + - veth: Fix race with AF_XDP exposing old or uninitialized descriptors + - nfsd: shut down the NFSv4 state objects before the filecache + - net: hns3: add interrupts re-initialization while doing VF FLR + - net: hns3: refactor hns3_nic_reuse_page() + - net: hns3: extract macro to simplify ring stats update code + - net: hns3: fix miss L3E checking for rx packet + - net: hns3: fix VF promisc mode not update when mac table full + - net: sched: fix memory leak in tcindex_set_parms + - qlcnic: prevent ->dcb use-after-free on qlcnic_dcb_enable() failure + - net: dsa: mv88e6xxx: depend on PTP conditionally + - nfc: Fix potential resource leaks + - vdpa_sim: fix possible memory leak in vdpasim_net_init() and + vdpasim_blk_init() + - vhost/vsock: Fix error handling in vhost_vsock_init() + - vringh: fix range used in iotlb_translate() + - vhost: fix range used in translate_desc() + - vdpa_sim: fix vringh initialization in vdpasim_queue_ready() + - net/mlx5: E-Switch, properly handle ingress tagged packets on VST + - net/mlx5: Add forgotten cleanup calls into mlx5_init_once() error path + - net/mlx5: Avoid recovery in probe flows + - net/mlx5e: IPoIB, Don't allow CQE compression to be turned on by default + - net/mlx5e: TC, Refactor mlx5e_tc_add_flow_mod_hdr() to get flow attr + - net/mlx5e: Always clear dest encap in neigh-update-del + - net/mlx5e: Fix hw mtu initializing at XDP SQ allocation + - net: amd-xgbe: add missed tasklet_kill + - net: ena: Fix toeplitz initial hash value + - net: ena: Don't register memory info on XDP exchange + - net: ena: Account for the number of processed bytes in XDP + - net: ena: Use bitmask to indicate packet redirection + - net: ena: Fix rx_copybreak value update + - net: ena: Set default value for RX interrupt moderation + - net: ena: Update NUMA TPH hint register upon NUMA node update + - net: phy: xgmiitorgmii: Fix refcount leak in xgmiitorgmii_probe + - RDMA/mlx5: Fix mlx5_ib_get_hw_stats when used for device + - RDMA/mlx5: Fix validation of max_rd_atomic caps for DC + - drm/meson: Reduce the FIFO lines held when AFBC is not used + - filelock: new helper: vfs_inode_has_locks + - ceph: switch to vfs_inode_has_locks() to fix file lock bug + - gpio: sifive: Fix refcount leak in sifive_gpio_probe + - net: sched: atm: dont intepret cls results when asked to drop + - net: sched: cbq: dont intepret cls results when asked to drop + - net: sparx5: Fix reading of the MAC address + - netfilter: ipset: fix hash:net,port,net hang with /0 subnet + - netfilter: ipset: Rework long task execution when adding/deleting entries + - perf tools: Fix resources leak in perf_data__open_dir() + - drm/imx: ipuv3-plane: Fix overlay plane width + - fs/ntfs3: don't hold ni_lock when calling truncate_setsize() + - drivers/net/bonding/bond_3ad: return when there's no aggregator + - octeontx2-pf: Fix lmtst ID used in aura free + - usb: rndis_host: Secure rndis_query check against int overflow + - perf stat: Fix handling of --for-each-cgroup with --bpf-counters to match + non BPF mode + - drm/i915: unpin on error in intel_vgpu_shadow_mm_pin() + - caif: fix memory leak in cfctrl_linkup_request() + - udf: Fix extension of the last extent in the file + - ASoC: Intel: bytcr_rt5640: Add quirk for the Advantech MICA-071 tablet + - nvme: fix multipath crash caused by flush request when blktrace is enabled + - io_uring: check for valid register opcode earlier + - nvmet: use NVME_CMD_EFFECTS_CSUPP instead of open coding it + - nvme: also return I/O command effects from nvme_command_effects + - btrfs: check superblock to ensure the fs was not modified at thaw time + - x86/kexec: Fix double-free of elf header buffer + - nfsd: fix handling of readdir in v4root vs. mount upcall timeout + - fbdev: matroxfb: G200eW: Increase max memory from 1 MB to 16 MB + - block: don't allow splitting of a REQ_NOWAIT bio + - io_uring: fix CQ waiting timeout handling + - thermal: int340x: Add missing attribute for data rate base + - riscv: uaccess: fix type of 0 variable on error in get_user() + - riscv, kprobes: Stricter c.jr/c.jalr decoding + - drm/i915/gvt: fix gvt debugfs destroy + - drm/i915/gvt: fix vgpu debugfs clean in remove + - hfs/hfsplus: use WARN_ON for sanity check + - hfs/hfsplus: avoid WARN_ON() for sanity check, use proper error handling + - ksmbd: fix infinite loop in ksmbd_conn_handler_loop() + - ksmbd: check nt_len to be at least CIFS_ENCPWD_SIZE in + ksmbd_decode_ntlmssp_auth_blob + - Revert "ACPI: PM: Add support for upcoming AMD uPEP HID AMDI007" + - mptcp: dedicated request sock for subflow in v6 + - mptcp: use proper req destructor for IPv6 + - ext4: don't allow journal inode to have encrypt flag + - selftests: set the BUILD variable to absolute path + - btrfs: make thaw time super block check to also verify checksum + - net: hns3: fix return value check bug of rx copybreak + - mbcache: Avoid nesting of cache->c_list_lock under bit locks + - efi: random: combine bootloader provided RNG seed with RNG protocol output + - io_uring: Fix unsigned 'res' comparison with zero in io_fixup_rw_res() + - drm/mgag200: Fix PLL setup for G200_SE_A rev >=4 + - Linux 5.15.87 + * Jammy update: v5.15.87 upstream stable release (LP: #2007441) // + CVE-2022-41218 is assigned to those bugs above. + - media: dvb-core: Fix UAF due to refcount races at releasing + * RaptorLake: Fix the Screen is shaking by onboard HDMI port in mirror mode + (LP: #1993561) + - drm/i915/display: Drop check for doublescan mode in modevalid + - drm/i915/display: Prune Interlace modes for Display >=12 + * CVE-2023-0266 // CVE-2023-0266 was assigned for this issue. + - ALSA: pcm: Move rwsem lock inside snd_ctl_elem_read to prevent UAF + * CVE-2022-4382 + - USB: gadgetfs: Fix race between mounting and unmounting + * CVE-2022-2196 + - KVM: VMX: Execute IBPB on emulated VM-exit when guest has IBRS + * ubuntu_kernel_selftests: net:udpgso_bench.sh failed (LP: #1951447) + - selftests: net: udpgso_bench: Fix racing bug between the rx/tx programs + * net:fcnal-test.sh didn't return a non-zero value even with some sub-tests + failed (LP: #2006692) + - selftests: net/fcnal-test.sh: add exit code + * LXD containers using shiftfs on ZFS or TMPFS broken on 5.15.0-48.54 + (LP: #1990849) + - SAUCE: shiftfs: always rely on init_user_ns + - [SAUCE] shiftfs: fix -EOVERFLOW inside the container + * Regression in ext4 during online resize (LP: #2003816) + - ext4: fix bad checksum after online resize + - ext4: fix corruption when online resizing a 1K bigalloc fs + - SAUCE: Export ext4_superblock_csum function + - ext4: fix corrupt backup group descriptors after online resize + * Jammy update: v5.15.86 upstream stable release (LP: #2005113) + - usb: musb: remove extra check in musb_gadget_vbus_draw + - arm64: dts: qcom: ipq6018-cp01-c1: use BLSPI1 pins + - arm64: dts: qcom: sm8250-sony-xperia-edo: fix touchscreen bias-disable + - arm64: dts: qcom: msm8996: Add MSM8996 Pro support + - arm64: dts: qcom: msm8996: fix supported-hw in cpufreq OPP tables + - arm64: dts: qcom: msm8996: fix GPU OPP table + - ARM: dts: qcom: apq8064: fix coresight compatible + - arm64: dts: qcom: sdm630: fix UART1 pin bias + - arm64: dts: qcom: sdm845-cheza: fix AP suspend pin bias + - arm64: dts: qcom: msm8916: Drop MSS fallback compatible + - objtool, kcsan: Add volatile read/write instrumentation to whitelist + - ARM: dts: stm32: Drop stm32mp15xc.dtsi from Avenger96 + - ARM: dts: stm32: Fix AV96 WLAN regulator gpio property + - drivers: soc: ti: knav_qmss_queue: Mark knav_acc_firmwares as static + - arm64: dts: qcom: pm660: Use unique ADC5_VCOIN address in node name + - arm64: dts: qcom: sm8250: correct LPASS pin pull down + - soc: qcom: llcc: make irq truly optional + - arm64: dts: qcom: Correct QMP PHY child node name + - arm64: dts: qcom: sm8150: fix UFS PHY registers + - arm64: dts: qcom: sm8250: fix UFS PHY registers + - arm64: dts: qcom: sm8350: fix UFS PHY registers + - arm64: dts: qcom: sm8250: drop bogus DP PHY clock + - soc: qcom: apr: make code more reuseable + - soc: qcom: apr: Add check for idr_alloc and of_property_read_string_index + - arm64: dts: qcom: sm6125: fix SDHCI CQE reg names + - arm: dts: spear600: Fix clcd interrupt + - soc: ti: knav_qmss_queue: Use pm_runtime_resume_and_get instead of + pm_runtime_get_sync + - soc: ti: knav_qmss_queue: Fix PM disable depth imbalance in knav_queue_probe + - soc: ti: smartreflex: Fix PM disable depth imbalance in omap_sr_probe + - arm64: Treat ESR_ELx as a 64-bit register + - arm64: mm: kfence: only handle translation faults + - perf: arm_dsu: Fix hotplug callback leak in dsu_pmu_init() + - perf/arm_dmc620: Fix hotplug callback leak in dmc620_pmu_init() + - perf/smmuv3: Fix hotplug callback leak in arm_smmu_pmu_init() + - arm64: dts: ti: k3-am65-main: Drop dma-coherent in crypto node + - arm64: dts: ti: k3-j721e-main: Drop dma-coherent in crypto node + - ARM: dts: nuvoton: Remove bogus unit addresses from fixed-partition nodes + - arm64: dts: mt6779: Fix devicetree build warnings + - arm64: dts: mt2712e: Fix unit_address_vs_reg warning for oscillators + - arm64: dts: mt2712e: Fix unit address for pinctrl node + - arm64: dts: mt2712-evb: Fix vproc fixed regulators unit names + - arm64: dts: mt2712-evb: Fix usb vbus regulators unit names + - arm64: dts: mediatek: pumpkin-common: Fix devicetree warnings + - arm64: dts: mediatek: mt6797: Fix 26M oscillator unit name + - ARM: dts: dove: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-370: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-xp: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-375: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-38x: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-39x: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: turris-omnia: Add ethernet aliases + - ARM: dts: turris-omnia: Add switch port 6 node + - arm64: dts: armada-3720-turris-mox: Add missing interrupt for RTC + - seccomp: Move copy_seccomp() to no failure path. + - pstore/ram: Fix error return code in ramoops_probe() + - ARM: mmp: fix timer_read delay + - pstore: Avoid kcore oops by vmap()ing with VM_IOREMAP + - tpm/tpm_ftpm_tee: Fix error handling in ftpm_mod_init() + - tpm/tpm_crb: Fix error message in __crb_relinquish_locality() + - ovl: store lower path in ovl_inode + - ovl: use ovl_copy_{real,upper}attr() wrappers + - ovl: remove privs in ovl_copyfile() + - ovl: remove privs in ovl_fallocate() + - sched/fair: Cleanup task_util and capacity type + - sched/uclamp: Fix relationship between uclamp and migration margin + - sched/uclamp: Make task_fits_capacity() use util_fits_cpu() + - sched/uclamp: Make select_idle_capacity() use util_fits_cpu() + - sched/fair: Removed useless update of p->recent_used_cpu + - sched/core: Introduce sched_asym_cpucap_active() + - sched/uclamp: Make asym_fits_capacity() use util_fits_cpu() + - cpuidle: dt: Return the correct numbers of parsed idle states + - alpha: fix TIF_NOTIFY_SIGNAL handling + - alpha: fix syscall entry in !AUDUT_SYSCALL case + - x86/sgx: Reduce delay and interference of enclave release + - PM: hibernate: Fix mistake in kerneldoc comment + - fs: don't audit the capability check in simple_xattr_list() + - cpufreq: qcom-hw: Fix memory leak in qcom_cpufreq_hw_read_lut() + - selftests/ftrace: event_triggers: wait longer for test_event_enable + - perf: Fix possible memleak in pmu_dev_alloc() + - lib/debugobjects: fix stat count and optimize debug_objects_mem_init + - platform/x86: huawei-wmi: fix return value calculation + - timerqueue: Use rb_entry_safe() in timerqueue_getnext() + - proc: fixup uptime selftest + - lib/fonts: fix undefined behavior in bit shift for get_default_font + - ocfs2: fix memory leak in ocfs2_stack_glue_init() + - MIPS: vpe-mt: fix possible memory leak while module exiting + - MIPS: vpe-cmp: fix possible memory leak while module exiting + - selftests/efivarfs: Add checking of the test return value + - PNP: fix name memory leak in pnp_alloc_dev() + - perf/x86/intel/uncore: Fix reference count leak in sad_cfg_iio_topology() + - perf/x86/intel/uncore: Fix reference count leak in hswep_has_limit_sbox() + - perf/x86/intel/uncore: Fix reference count leak in snr_uncore_mmio_map() + - perf/x86/intel/uncore: Fix reference count leak in __uncore_imc_init_box() + - platform/chrome: cros_usbpd_notify: Fix error handling in + cros_usbpd_notify_init() + - thermal: core: fix some possible name leaks in error paths + - irqchip: gic-pm: Use pm_runtime_resume_and_get() in gic_probe() + - irqchip/wpcm450: Fix memory leak in wpcm450_aic_of_init() + - EDAC/i10nm: fix refcount leak in pci_get_dev_wrapper() + - SUNRPC: Return true/false (not 1/0) from bool functions + - NFSD: Finish converting the NFSv2 GETACL result encoder + - nfsd: don't call nfsd_file_put from client states seqfile display + - genirq/irqdesc: Don't try to remove non-existing sysfs files + - cpufreq: amd_freq_sensitivity: Add missing pci_dev_put() + - libfs: add DEFINE_SIMPLE_ATTRIBUTE_SIGNED for signed value + - lib/notifier-error-inject: fix error when writing -errno to debugfs file + - debugfs: fix error when writing negative value to atomic_t debugfs file + - rapidio: fix possible name leaks when rio_add_device() fails + - rapidio: rio: fix possible name leak in rio_register_mport() + - clocksource/drivers/sh_cmt: Access registers according to spec + - mips: ralink: mt7621: define MT7621_SYSC_BASE with __iomem + - mips: ralink: mt7621: soc queries and tests as functions + - mips: ralink: mt7621: do not use kzalloc too early + - futex: Move to kernel/futex/ + - futex: Resend potentially swallowed owner death notification + - cpu/hotplug: Make target_store() a nop when target == state + - cpu/hotplug: Do not bail-out in DYING/STARTING sections + - clocksource/drivers/timer-ti-dm: Fix missing clk_disable_unprepare in + dmtimer_systimer_init_clock() + - ACPICA: Fix use-after-free in acpi_ut_copy_ipackage_to_ipackage() + - uprobes/x86: Allow to probe a NOP instruction with 0x66 prefix + - x86/xen: Fix memory leak in xen_smp_intr_init{_pv}() + - x86/xen: Fix memory leak in xen_init_lock_cpu() + - xen/privcmd: Fix a possible warning in privcmd_ioctl_mmap_resource() + - PM: runtime: Do not call __rpm_callback() from rpm_idle() + - platform/chrome: cros_ec_typec: Cleanup switch handle return paths + - platform/chrome: cros_ec_typec: zero out stale pointers + - platform/x86: mxm-wmi: fix memleak in mxm_wmi_call_mx[ds|mx]() + - platform/x86: intel_scu_ipc: fix possible name leak in + __intel_scu_ipc_register() + - MIPS: BCM63xx: Add check for NULL for clk in clk_enable + - MIPS: OCTEON: warn only once if deprecated link status is being used + - lockd: set other missing fields when unlocking files + - fs: sysv: Fix sysv_nblocks() returns wrong value + - rapidio: fix possible UAF when kfifo_alloc() fails + - eventfd: change int to __u64 in eventfd_signal() ifndef CONFIG_EVENTFD + - relay: fix type mismatch when allocating memory in relay_create_buf() + - hfs: Fix OOB Write in hfs_asc2mac + - rapidio: devices: fix missing put_device in mport_cdev_open + - platform/mellanox: mlxbf-pmc: Fix event typo + - wifi: ath9k: hif_usb: fix memory leak of urbs in + ath9k_hif_usb_dealloc_tx_urbs() + - wifi: ath9k: hif_usb: Fix use-after-free in ath9k_hif_usb_reg_in_cb() + - wifi: rtl8xxxu: Fix reading the vendor of combo chips + - drm/bridge: adv7533: remove dynamic lane switching from adv7533 bridge + - libbpf: Fix use-after-free in btf_dump_name_dups + - libbpf: Fix null-pointer dereference in find_prog_by_sec_insn() + - ata: libata: move ata_{port,link,dev}_dbg to standard pr_XXX() macros + - ata: add/use ata_taskfile::{error|status} fields + - ata: libata: fix NCQ autosense logic + - ipmi: kcs: Poll OBF briefly to reduce OBE latency + - drm/amdgpu/powerplay/psm: Fix memory leak in power state init + - media: v4l2-ctrls: Fix off-by-one error in integer menu control check + - media: coda: jpeg: Add check for kmalloc + - media: adv748x: afe: Select input port when initializing AFE + - media: i2c: ad5820: Fix error path + - venus: pm_helpers: Fix error check in vcodec_domains_get() + - soreuseport: Fix socket selection for SO_INCOMING_CPU. + - media: exynos4-is: don't rely on the v4l2_async_subdev internals + - libbpf: Btf dedup identical struct test needs check for nested + structs/arrays + - can: kvaser_usb: do not increase tx statistics when sending error message + frames + - can: kvaser_usb: kvaser_usb_leaf: Get capabilities from device + - can: kvaser_usb: kvaser_usb_leaf: Rename {leaf,usbcan}_cmd_error_event to + {leaf,usbcan}_cmd_can_error_event + - can: kvaser_usb: kvaser_usb_leaf: Handle CMD_ERROR_EVENT + - can: kvaser_usb_leaf: Set Warning state even without bus errors + - can: kvaser_usb: make use of units.h in assignment of frequency + - can: kvaser_usb_leaf: Fix improved state not being reported + - can: kvaser_usb_leaf: Fix wrong CAN state after stopping + - can: kvaser_usb_leaf: Fix bogus restart events + - can: kvaser_usb: Add struct kvaser_usb_busparams + - can: kvaser_usb: Compare requested bittiming parameters with actual + parameters in do_set_{,data}_bittiming + - drm/rockchip: lvds: fix PM usage counter unbalance in poweron + - clk: renesas: r9a06g032: Repair grave increment error + - spi: Update reference to struct spi_controller + - drm/panel/panel-sitronix-st7701: Remove panel on DSI attach failure + - drm/msm/hdmi: drop unused GPIO support + - drm/msm/hdmi: use devres helper for runtime PM management + - bpf: Fix slot type check in check_stack_write_var_off + - media: vivid: fix compose size exceed boundary + - media: platform: exynos4-is: fix return value check in fimc_md_probe() + - bpf: propagate precision in ALU/ALU64 operations + - bpf: Check the other end of slot_type for STACK_SPILL + - bpf: propagate precision across all frames, not just the last one + - clk: qcom: gcc-sm8250: Use retention mode for USB GDSCs + - mtd: Fix device name leak when register device failed in add_mtd_device() + - Input: joystick - fix Kconfig warning for JOYSTICK_ADC + - wifi: rsi: Fix handling of 802.3 EAPOL frames sent via control port + - media: camss: Clean up received buffers on failed start of streaming + - net, proc: Provide PROC_FS=n fallback for proc_create_net_single_write() + - rxrpc: Fix ack.bufferSize to be 0 when generating an ack + - bfq: fix waker_bfqq inconsistency crash + - drm/radeon: Add the missed acpi_put_table() to fix memory leak + - drm/mediatek: Modify dpi power on/off sequence. + - ASoC: pxa: fix null-pointer dereference in filter() + - libbpf: Fix uninitialized warning in btf_dump_dump_type_data + - nvmet: only allocate a single slab for bvecs + - regulator: core: fix unbalanced of node refcount in regulator_dev_lookup() + - amdgpu/pm: prevent array underflow in vega20_odn_edit_dpm_table() + - nvme: return err on nvme_init_non_mdts_limits fail + - regulator: qcom-rpmh: Fix PMR735a S3 regulator spec + - drm/fourcc: Add packed 10bit YUV 4:2:0 format + - drm/fourcc: Fix vsub/hsub for Q410 and Q401 + - integrity: Fix memory leakage in keyring allocation error path + - ima: Fix misuse of dereference of pointer in template_desc_init_fields() + - block: clear ->slave_dir when dropping the main slave_dir reference + - wifi: ath10k: Fix return value in ath10k_pci_init() + - drm/msm/a6xx: Fix speed-bin detection vs probe-defer + - mtd: lpddr2_nvm: Fix possible null-ptr-deref + - Input: elants_i2c - properly handle the reset GPIO when power is off + - media: vidtv: Fix use-after-free in vidtv_bridge_dvb_init() + - media: solo6x10: fix possible memory leak in solo_sysfs_init() + - media: platform: exynos4-is: Fix error handling in fimc_md_init() + - media: videobuf-dma-contig: use dma_mmap_coherent + - inet: add READ_ONCE(sk->sk_bound_dev_if) in inet_csk_bind_conflict() + - mtd: spi-nor: hide jedec_id sysfs attribute if not present + - mtd: spi-nor: Fix the number of bytes for the dummy cycles + - bpf: Move skb->len == 0 checks into __bpf_redirect + - HID: hid-sensor-custom: set fixed size for custom attributes + - pinctrl: k210: call of_node_put() + - ALSA: pcm: fix undefined behavior in bit shift for SNDRV_PCM_RATE_KNOT + - ALSA: seq: fix undefined behavior in bit shift for + SNDRV_SEQ_FILTER_USE_EVENT + - regulator: core: use kfree_const() to free space conditionally + - clk: rockchip: Fix memory leak in rockchip_clk_register_pll() + - drm/amdgpu: fix pci device refcount leak + - bonding: fix link recovery in mode 2 when updelay is nonzero + - mtd: maps: pxa2xx-flash: fix memory leak in probe + - drbd: remove call to memset before free device/resource/connection + - drbd: destroy workqueue when drbd device was freed + - ASoC: qcom: Add checks for devm_kcalloc + - media: vimc: Fix wrong function called when vimc_init() fails + - media: imon: fix a race condition in send_packet() + - clk: imx8mn: rename vpu_pll to m7_alt_pll + - clk: imx: replace osc_hdmi with dummy + - clk: imx8mn: fix imx8mn_sai2_sels clocks list + - clk: imx8mn: fix imx8mn_enet_phy_sels clocks list + - pinctrl: pinconf-generic: add missing of_node_put() + - media: dvb-core: Fix ignored return value in dvb_register_frontend() + - media: dvb-usb: az6027: fix null-ptr-deref in az6027_i2c_xfer() + - media: s5p-mfc: Add variant data for MFC v7 hardware for Exynos 3250 SoC + - drm/tegra: Add missing clk_disable_unprepare() in tegra_dc_probe() + - ASoC: dt-bindings: wcd9335: fix reset line polarity in example + - ASoC: mediatek: mtk-btcvsd: Add checks for write and read of mtk_btcvsd_snd + - NFSv4.2: Clear FATTR4_WORD2_SECURITY_LABEL when done decoding + - NFSv4.2: Fix a memory stomp in decode_attr_security_label + - NFSv4.2: Fix initialisation of struct nfs4_label + - NFSv4: Fix a credential leak in _nfs4_discover_trunking() + - NFSv4: Fix a deadlock between nfs4_open_recover_helper() and delegreturn + - NFS: Fix an Oops in nfs_d_automount() + - ALSA: asihpi: fix missing pci_disable_device() + - wifi: iwlwifi: mvm: fix double free on tx path. + - ASoC: mediatek: mt8173: Fix debugfs registration for components + - ASoC: mediatek: mt8173: Enable IRQ when pdata is ready + - drm/amd/pm/smu11: BACO is supported when it's in BACO state + - drm/radeon: Fix PCI device refcount leak in radeon_atrm_get_bios() + - drm/amdgpu: Fix PCI device refcount leak in amdgpu_atrm_get_bios() + - drm/amdkfd: Fix memory leakage + - ASoC: pcm512x: Fix PM disable depth imbalance in pcm512x_probe + - netfilter: conntrack: set icmpv6 redirects as RELATED + - Input: wistron_btns - disable on UML + - bpf, sockmap: Fix repeated calls to sock_put() when msg has more_data + - bpf, sockmap: Fix missing BPF_F_INGRESS flag when using apply_bytes + - bpf, sockmap: Fix data loss caused by using apply_bytes on ingress redirect + - bonding: uninitialized variable in bond_miimon_inspect() + - spi: spidev: mask SPI_CS_HIGH in SPI_IOC_RD_MODE + - wifi: cfg80211: Fix not unregister reg_pdev when load_builtin_regdb_keys() + fails + - mt76: stop the radar detector after leaving dfs channel + - wifi: mt76: mt7921: fix reporting of TX AGGR histogram + - wifi: mt76: fix coverity overrun-call in mt76_get_txpower() + - regulator: core: fix module refcount leak in set_supply() + - clk: qcom: lpass-sc7180: Fix pm_runtime usage + - clk: qcom: clk-krait: fix wrong div2 functions + - hsr: Add a rcu-read lock to hsr_forward_skb(). + - hsr: Avoid double remove of a node. + - hsr: Disable netpoll. + - hsr: Synchronize sending frames to have always incremented outgoing seq nr. + - hsr: Synchronize sequence number updates. + - configfs: fix possible memory leak in configfs_create_dir() + - regulator: core: fix resource leak in regulator_register() + - hwmon: (jc42) Convert register access and caching to regmap/regcache + - hwmon: (jc42) Restore the min/max/critical temperatures on resume + - bpf, sockmap: fix race in sock_map_free() + - ALSA: pcm: Set missing stop_operating flag at undoing trigger start + - media: saa7164: fix missing pci_disable_device() + - ALSA: mts64: fix possible null-ptr-defer in snd_mts64_interrupt + - xprtrdma: Fix regbuf data not freed in rpcrdma_req_create() + - SUNRPC: Fix missing release socket in rpc_sockname() + - NFSv4.x: Fail client initialisation if state manager thread can't run + - riscv, bpf: Emit fixed-length instructions for BPF_PSEUDO_FUNC + - mmc: alcor: fix return value check of mmc_add_host() + - mmc: moxart: fix return value check of mmc_add_host() + - mmc: mxcmmc: fix return value check of mmc_add_host() + - mmc: pxamci: fix return value check of mmc_add_host() + - mmc: rtsx_pci: fix return value check of mmc_add_host() + - mmc: rtsx_usb_sdmmc: fix return value check of mmc_add_host() + - mmc: toshsd: fix return value check of mmc_add_host() + - mmc: vub300: fix return value check of mmc_add_host() + - mmc: wmt-sdmmc: fix return value check of mmc_add_host() + - mmc: atmel-mci: fix return value check of mmc_add_host() + - mmc: omap_hsmmc: fix return value check of mmc_add_host() + - mmc: meson-gx: fix return value check of mmc_add_host() + - mmc: via-sdmmc: fix return value check of mmc_add_host() + - mmc: wbsd: fix return value check of mmc_add_host() + - mmc: mmci: fix return value check of mmc_add_host() + - mmc: renesas_sdhi: alway populate SCC pointer + - memstick: ms_block: Add error handling support for add_disk() + - memstick/ms_block: Add check for alloc_ordered_workqueue + - mmc: core: Normalize the error handling branch in sd_read_ext_regs() + - regulator: qcom-labibb: Fix missing of_node_put() in + qcom_labibb_regulator_probe() + - media: c8sectpfe: Add of_node_put() when breaking out of loop + - media: coda: Add check for dcoda_iram_alloc + - media: coda: Add check for kmalloc + - clk: samsung: Fix memory leak in _samsung_clk_register_pll() + - spi: spi-gpio: Don't set MOSI as an input if not 3WIRE mode + - wifi: rtl8xxxu: Add __packed to struct rtl8723bu_c2h + - wifi: rtl8xxxu: Fix the channel width reporting + - wifi: brcmfmac: Fix error return code in brcmf_sdio_download_firmware() + - blktrace: Fix output non-blktrace event when blk_classic option enabled + - bpf: Do not zero-extend kfunc return values + - clk: socfpga: Fix memory leak in socfpga_gate_init() + - net: vmw_vsock: vmci: Check memcpy_from_msg() + - net: defxx: Fix missing err handling in dfx_init() + - net: stmmac: selftests: fix potential memleak in stmmac_test_arpoffload() + - net: stmmac: fix possible memory leak in stmmac_dvr_probe() + - drivers: net: qlcnic: Fix potential memory leak in qlcnic_sriov_init() + - of: overlay: fix null pointer dereferencing in find_dup_cset_node_entry() + and find_dup_cset_prop() + - ethernet: s2io: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: farsync: Fix kmemleak when rmmods farsync + - net/tunnel: wait until all sk_user_data reader finish before releasing the + sock + - net: apple: mace: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: apple: bmac: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: emaclite: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: ethernet: dnet: don't call dev_kfree_skb() under spin_lock_irqsave() + - hamradio: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: amd: lance: don't call dev_kfree_skb() under spin_lock_irqsave() + - af_unix: call proto_unregister() in the error path in af_unix_init() + - net: amd-xgbe: Fix logic around active and passive cables + - net: amd-xgbe: Check only the minimum speed for active/passive cables + - can: tcan4x5x: Remove invalid write in clear_interrupts + - can: m_can: Call the RAM init directly from m_can_chip_config + - can: tcan4x5x: Fix use of register error status mask + - net: lan9303: Fix read error execution path + - ntb_netdev: Use dev_kfree_skb_any() in interrupt context + - sctp: sysctl: make extra pointers netns aware + - Bluetooth: MGMT: Fix error report for ADD_EXT_ADV_PARAMS + - Bluetooth: btintel: Fix missing free skb in btintel_setup_combined() + - Bluetooth: btusb: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_qca: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_ll: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_h5: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_bcsp: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_core: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: RFCOMM: don't call kfree_skb() under spin_lock_irqsave() + - stmmac: fix potential division by 0 + - i40e: Fix the inability to attach XDP program on downed interface + - net: dsa: tag_8021q: avoid leaking ctx on dsa_tag_8021q_register() error + path + - apparmor: fix a memleak in multi_transaction_new() + - apparmor: fix lockdep warning when removing a namespace + - apparmor: Fix abi check to include v8 abi + - crypto: hisilicon/qm - fix missing destroy qp_idr + - crypto: sun8i-ss - use dma_addr instead u32 + - crypto: nitrox - avoid double free on error path in nitrox_sriov_init() + - scsi: core: Fix a race between scsi_done() and scsi_timeout() + - apparmor: Use pointer to struct aa_label for lbs_cred + - PCI: dwc: Fix n_fts[] array overrun + - RDMA/core: Fix order of nldev_exit call + - PCI: pci-epf-test: Register notifier if only core_init_notifier is enabled + - f2fs: Fix the race condition of resize flag between resizefs + - crypto: rockchip - do not do custom power management + - crypto: rockchip - do not store mode globally + - crypto: rockchip - add fallback for cipher + - crypto: rockchip - add fallback for ahash + - crypto: rockchip - better handle cipher key + - crypto: rockchip - remove non-aligned handling + - crypto: rockchip - rework by using crypto_engine + - apparmor: Fix memleak in alloc_ns() + - f2fs: fix to invalidate dcc->f2fs_issue_discard in error path + - f2fs: fix normal discard process + - f2fs: fix to destroy sbi->post_read_wq in error path of f2fs_fill_super() + - RDMA/irdma: Report the correct link speed + - scsi: qla2xxx: Fix set-but-not-used variable warnings + - RDMA/siw: Fix immediate work request flush to completion queue + - IB/mad: Don't call to function that might sleep while in atomic context + - RDMA/restrack: Release MR restrack when delete + - RDMA/core: Make sure "ib_port" is valid when access sysfs node + - RDMA/nldev: Return "-EAGAIN" if the cm_id isn't from expected port + - RDMA/siw: Set defined status for work completion with undefined status + - scsi: scsi_debug: Fix a warning in resp_write_scat() + - crypto: ccree - Remove debugfs when platform_driver_register failed + - crypto: cryptd - Use request context instead of stack for sub-request + - crypto: hisilicon/qm - add missing pci_dev_put() in q_num_set() + - RDMA/hns: Repacing 'dseg_len' by macros in fill_ext_sge_inl_data() + - RDMA/hns: Fix ext_sge num error when post send + - PCI: Check for alloc failure in pci_request_irq() + - RDMA/hfi: Decrease PCI device reference count in error path + - crypto: ccree - Make cc_debugfs_global_fini() available for module init + function + - RDMA/hns: fix memory leak in hns_roce_alloc_mr() + - RDMA/rxe: Fix NULL-ptr-deref in rxe_qp_do_cleanup() when socket create + failed + - dt-bindings: imx6q-pcie: Fix clock names for imx6sx and imx8mq + - dt-bindings: visconti-pcie: Fix interrupts array max constraints + - scsi: hpsa: Fix possible memory leak in hpsa_init_one() + - crypto: tcrypt - Fix multibuffer skcipher speed test mem leak + - padata: Always leave BHs disabled when running ->parallel() + - padata: Fix list iterator in padata_do_serial() + - scsi: mpt3sas: Fix possible resource leaks in mpt3sas_transport_port_add() + - scsi: hpsa: Fix error handling in hpsa_add_sas_host() + - scsi: hpsa: Fix possible memory leak in hpsa_add_sas_device() + - scsi: efct: Fix possible memleak in efct_device_init() + - scsi: scsi_debug: Fix a warning in resp_verify() + - scsi: scsi_debug: Fix a warning in resp_report_zones() + - scsi: fcoe: Fix possible name leak when device_register() fails + - scsi: scsi_debug: Fix possible name leak in sdebug_add_host_helper() + - scsi: ipr: Fix WARNING in ipr_init() + - scsi: fcoe: Fix transport not deattached when fcoe_if_init() fails + - scsi: snic: Fix possible UAF in snic_tgt_create() + - RDMA/nldev: Add checks for nla_nest_start() in fill_stat_counter_qps() + - f2fs: avoid victim selection from previous victim section + - RDMA/nldev: Fix failure to send large messages + - crypto: amlogic - Remove kcalloc without check + - crypto: omap-sham - Use pm_runtime_resume_and_get() in omap_sham_probe() + - riscv/mm: add arch hook arch_clear_hugepage_flags + - RDMA/hfi1: Fix error return code in parse_platform_config() + - RDMA/srp: Fix error return code in srp_parse_options() + - PCI: mt7621: Rename mt7621_pci_ to mt7621_pcie_ + - PCI: mt7621: Add sentinel to quirks table + - orangefs: Fix sysfs not cleanup when dev init failed + - RDMA/hns: Fix AH attr queried by query_qp + - RDMA/hns: Fix PBL page MTR find + - RDMA/hns: Fix page size cap from firmware + - RDMA/hns: Fix error code of CMD + - crypto: img-hash - Fix variable dereferenced before check 'hdev->req' + - hwrng: amd - Fix PCI device refcount leak + - hwrng: geode - Fix PCI device refcount leak + - IB/IPoIB: Fix queue count inconsistency for PKEY child interfaces + - RISC-V: Align the shadow stack + - drivers: dio: fix possible memory leak in dio_init() + - serial: tegra: Read DMA status before terminating + - serial: 8250_bcm7271: Fix error handling in brcmuart_init() + - class: fix possible memory leak in __class_register() + - vfio: platform: Do not pass return buffer to ACPI _RST method + - uio: uio_dmem_genirq: Fix missing unlock in irq configuration + - uio: uio_dmem_genirq: Fix deadlock between irq config and handling + - usb: fotg210-udc: Fix ages old endianness issues + - staging: vme_user: Fix possible UAF in tsi148_dma_list_add + - usb: typec: Check for ops->exit instead of ops->enter in altmode_exit + - usb: typec: tcpci: fix of node refcount leak in tcpci_register_port() + - usb: typec: tipd: Cleanup resources if devm_tps6598_psy_register fails + - usb: typec: tipd: Fix spurious fwnode_handle_put in error path + - extcon: usbc-tusb320: Add support for mode setting and reset + - extcon: usbc-tusb320: Add support for TUSB320L + - usb: typec: Factor out non-PD fwnode properties + - extcon: usbc-tusb320: Factor out extcon into dedicated functions + - extcon: usbc-tusb320: Add USB TYPE-C support + - extcon: usbc-tusb320: Update state on probe even if no IRQ pending + - serial: amba-pl011: avoid SBSA UART accessing DMACR register + - serial: pl011: Do not clear RX FIFO & RX interrupt in unthrottle. + - serial: stm32: move dma_request_chan() before clk_prepare_enable() + - serial: pch: Fix PCI device refcount leak in pch_request_dma() + - tty: serial: clean up stop-tx part in altera_uart_tx_chars() + - tty: serial: altera_uart_{r,t}x_chars() need only uart_port + - serial: altera_uart: fix locking in polling mode + - serial: sunsab: Fix error handling in sunsab_init() + - test_firmware: fix memory leak in test_firmware_init() + - misc: ocxl: fix possible name leak in ocxl_file_register_afu() + - ocxl: fix pci device refcount leak when calling get_function_0() + - misc: tifm: fix possible memory leak in tifm_7xx1_switch_media() + - misc: sgi-gru: fix use-after-free error in gru_set_context_option, gru_fault + and gru_handle_user_call_os + - firmware: raspberrypi: fix possible memory leak in rpi_firmware_probe() + - cxl: fix possible null-ptr-deref in cxl_guest_init_afu|adapter() + - cxl: fix possible null-ptr-deref in cxl_pci_init_afu|adapter() + - iio: temperature: ltc2983: make bulk write buffer DMA-safe + - iio: adis: handle devices that cannot unmask the drdy pin + - iio: adis: stylistic changes + - iio:imu:adis: Move exports into IIO_ADISLIB namespace + - iio: adis: add '__adis_enable_irq()' implementation + - counter: stm32-lptimer-cnt: fix the check on arr and cmp registers update + - coresight: trbe: remove cpuhp instance node before remove cpuhp state + - usb: roles: fix of node refcount leak in usb_role_switch_is_parent() + - usb: gadget: f_hid: fix f_hidg lifetime vs cdev + - usb: gadget: f_hid: fix refcount leak on error path + - drivers: mcb: fix resource leak in mcb_probe() + - mcb: mcb-parse: fix error handing in chameleon_parse_gdd() + - chardev: fix error handling in cdev_device_add() + - i2c: pxa-pci: fix missing pci_disable_device() on error in ce4100_i2c_probe + - staging: rtl8192u: Fix use after free in ieee80211_rx() + - staging: rtl8192e: Fix potential use-after-free in rtllib_rx_Monitor() + - vme: Fix error not catched in fake_init() + - gpiolib: Get rid of redundant 'else' + - gpiolib: cdev: fix NULL-pointer dereferences + - gpiolib: make struct comments into real kernel docs + - gpiolib: protect the GPIO device against being dropped while in use by user- + space + - i2c: mux: reg: check return value after calling platform_get_resource() + - i2c: ismt: Fix an out-of-bounds bug in ismt_access() + - usb: storage: Add check for kcalloc + - tracing/hist: Fix issue of losting command info in error_log + - ksmbd: Fix resource leak in ksmbd_session_rpc_open() + - samples: vfio-mdev: Fix missing pci_disable_device() in mdpy_fb_probe() + - thermal/drivers/imx8mm_thermal: Validate temperature range + - thermal/drivers/qcom/temp-alarm: Fix inaccurate warning for gen2 + - thermal/drivers/qcom/lmh: Fix irq handler return value + - fbdev: ssd1307fb: Drop optional dependency + - fbdev: pm2fb: fix missing pci_disable_device() + - fbdev: via: Fix error in via_core_init() + - fbdev: vermilion: decrease reference count in error path + - fbdev: ep93xx-fb: Add missing clk_disable_unprepare in ep93xxfb_probe() + - fbdev: geode: don't build on UML + - fbdev: uvesafb: don't build on UML + - fbdev: uvesafb: Fixes an error handling path in uvesafb_probe() + - HSI: omap_ssi_core: fix unbalanced pm_runtime_disable() + - HSI: omap_ssi_core: fix possible memory leak in ssi_probe() + - power: supply: fix residue sysfs file in error handle route of + __power_supply_register() + - perf trace: Return error if a system call doesn't exist + - perf trace: Use macro RAW_SYSCALL_ARGS_NUM to replace number + - perf trace: Handle failure when trace point folder is missed + - perf symbol: correction while adjusting symbol + - power: supply: z2_battery: Fix possible memleak in z2_batt_probe() + - HSI: omap_ssi_core: Fix error handling in ssi_init() + - power: supply: ab8500: Fix error handling in ab8500_charger_init() + - power: supply: fix null pointer dereferencing in + power_supply_get_battery_info + - perf stat: Refactor __run_perf_stat() common code + - perf stat: Do not delay the workload with --delay + - RDMA/siw: Fix pointer cast warning + - fs/ntfs3: Avoid UBSAN error on true_sectors_per_clst() + - overflow: Implement size_t saturating arithmetic helpers + - fs/ntfs3: Harden against integer overflows + - iommu/sun50i: Fix reset release + - iommu/sun50i: Consider all fault sources for reset + - iommu/sun50i: Fix R/W permission check + - iommu/sun50i: Fix flush size + - iommu/rockchip: fix permission bits in page table entries v2 + - phy: usb: s2 WoL wakeup_count not incremented for USB->Eth devices + - include/uapi/linux/swab: Fix potentially missing __always_inline + - pwm: tegra: Improve required rate calculation + - fs/ntfs3: Fix slab-out-of-bounds read in ntfs_trim_fs + - dmaengine: idxd: Fix crc_val field for completion record + - rtc: rtc-cmos: Do not check ACPI_FADT_LOW_POWER_S0 + - rtc: cmos: Fix event handler registration ordering issue + - rtc: cmos: Fix wake alarm breakage + - rtc: cmos: fix build on non-ACPI platforms + - rtc: cmos: Call cmos_wake_setup() from cmos_do_probe() + - rtc: cmos: Call rtc_wake_setup() from cmos_do_probe() + - rtc: cmos: Eliminate forward declarations of some functions + - rtc: cmos: Rename ACPI-related functions + - rtc: cmos: Disable ACPI RTC event on removal + - rtc: snvs: Allow a time difference on clock register read + - rtc: pcf85063: Fix reading alarm + - iommu/amd: Fix pci device refcount leak in ppr_notifier() + - iommu/fsl_pamu: Fix resource leak in fsl_pamu_probe() + - macintosh: fix possible memory leak in macio_add_one_device() + - macintosh/macio-adb: check the return value of ioremap() + - powerpc/52xx: Fix a resource leak in an error handling path + - cxl: Fix refcount leak in cxl_calc_capp_routing + - powerpc/xmon: Fix -Wswitch-unreachable warning in bpt_cmds + - powerpc/xive: add missing iounmap() in error path in + xive_spapr_populate_irq_data() + - powerpc/perf: callchain validate kernel stack pointer bounds + - powerpc/83xx/mpc832x_rdb: call platform_device_put() in error case in + of_fsl_spi_probe() + - powerpc/hv-gpci: Fix hv_gpci event list + - selftests/powerpc: Fix resource leaks + - iommu/sun50i: Remove IOMMU_DOMAIN_IDENTITY + - pwm: sifive: Call pwm_sifive_update_clock() while mutex is held + - pwm: mtk-disp: Fix the parameters calculated by the enabled flag of disp_pwm + - pwm: mediatek: always use bus clock for PWM on MT7622 + - remoteproc: sysmon: fix memory leak in qcom_add_sysmon_subdev() + - remoteproc: qcom: q6v5: Fix potential null-ptr-deref in + q6v5_wcss_init_mmio() + - remoteproc: qcom_q6v5_pas: disable wakeup on probe fail or remove + - remoteproc: qcom_q6v5_pas: detach power domains on remove + - remoteproc: qcom_q6v5_pas: Fix missing of_node_put() in + adsp_alloc_memory_region() + - remoteproc: qcom: q6v5: Fix missing clk_disable_unprepare() in + q6v5_wcss_qcs404_power_on() + - powerpc/eeh: Drop redundant spinlock initialization + - powerpc/pseries/eeh: use correct API for error log size + - mfd: bd957x: Fix Kconfig dependency on REGMAP_IRQ + - mfd: qcom_rpm: Fix an error handling path in qcom_rpm_probe() + - mfd: pm8008: Remove driver data structure pm8008_data + - mfd: pm8008: Fix return value check in pm8008_probe() + - netfilter: flowtable: really fix NAT IPv6 offload + - rtc: st-lpc: Add missing clk_disable_unprepare in st_rtc_probe() + - rtc: pic32: Move devm_rtc_allocate_device earlier in pic32_rtc_probe() + - rtc: pcf85063: fix pcf85063_clkout_control + - nfsd: under NFSv4.1, fix double svc_xprt_put on rpc_create failure + - net: macsec: fix net device access prior to holding a lock + - mISDN: hfcsusb: don't call dev_kfree_skb/kfree_skb() under + spin_lock_irqsave() + - mISDN: hfcpci: don't call dev_kfree_skb/kfree_skb() under + spin_lock_irqsave() + - mISDN: hfcmulti: don't call dev_kfree_skb/kfree_skb() under + spin_lock_irqsave() + - block, bfq: fix possible uaf for 'bfqq->bic' + - net: enetc: avoid buffer leaks on xdp_do_redirect() failure + - nfc: pn533: Clear nfc_target before being used + - unix: Fix race in SOCK_SEQPACKET's unix_dgram_sendmsg() + - r6040: Fix kmemleak in probe and remove + - igc: Enhance Qbv scheduling by using first flag bit + - igc: Use strict cycles for Qbv scheduling + - igc: Add checking for basetime less than zero + - igc: allow BaseTime 0 enrollment for Qbv + - igc: recalculate Qbv end_time by considering cycle time + - igc: Lift TAPRIO schedule restriction + - igc: Set Qbv start_time and end_time to end_time if not being configured in + GCL + - rtc: mxc_v2: Add missing clk_disable_unprepare() + - selftests: devlink: fix the fd redirect in dummy_reporter_test + - openvswitch: Fix flow lookup to use unmasked key + - soc: mediatek: pm-domains: Fix the power glitch issue + - arm64: dts: mt8183: Fix Mali GPU clock + - skbuff: Account for tail adjustment during pull operations + - mailbox: mpfs: read the system controller's status + - mailbox: arm_mhuv2: Fix return value check in mhuv2_probe() + - mailbox: zynq-ipi: fix error handling while device_register() fails + - net_sched: reject TCF_EM_SIMPLE case for complex ematch module + - rxrpc: Fix missing unlock in rxrpc_do_sendmsg() + - myri10ge: Fix an error handling path in myri10ge_probe() + - net: stream: purge sk_error_queue in sk_stream_kill_queues() + - HID: amd_sfh: Add missing check for dma_alloc_coherent + - rcu: Fix __this_cpu_read() lockdep warning in rcu_force_quiescent_state() + - arm64: make is_ttbrX_addr() noinstr-safe + - video: hyperv_fb: Avoid taking busy spinlock on panic path + - x86/hyperv: Remove unregister syscore call from Hyper-V cleanup + - binfmt_misc: fix shift-out-of-bounds in check_special_flags + - fs: jfs: fix shift-out-of-bounds in dbAllocAG + - udf: Avoid double brelse() in udf_rename() + - jfs: Fix fortify moan in symlink + - fs: jfs: fix shift-out-of-bounds in dbDiscardAG + - ACPICA: Fix error code path in acpi_ds_call_control_method() + - nilfs2: fix shift-out-of-bounds/overflow in nilfs_sb2_bad_offset() + - nilfs2: fix shift-out-of-bounds due to too large exponent of block size + - acct: fix potential integer overflow in encode_comp_t() + - hfs: fix OOB Read in __hfs_brec_find + - drm/etnaviv: add missing quirks for GC300 + - media: imx-jpeg: Disable useless interrupt to avoid kernel panic + - brcmfmac: return error when getting invalid max_flowrings from dongle + - wifi: ath9k: verify the expected usb_endpoints are present + - wifi: ar5523: Fix use-after-free on ar5523_cmd() timed out + - ASoC: codecs: rt298: Add quirk for KBL-R RVP platform + - ipmi: fix memleak when unload ipmi driver + - drm/amd/display: prevent memory leak + - Revert "drm/amd/display: Limit max DSC target bpp for specific monitors" + - qed (gcc13): use u16 for fid to be big enough + - bpf: make sure skb->len != 0 when redirecting to a tunneling device + - net: ethernet: ti: Fix return type of netcp_ndo_start_xmit() + - hamradio: baycom_epp: Fix return type of baycom_send_packet() + - wifi: brcmfmac: Fix potential shift-out-of-bounds in + brcmf_fw_alloc_request() + - igb: Do not free q_vector unless new one was allocated + - drm/amdgpu: Fix type of second parameter in trans_msg() callback + - drm/amdgpu: Fix type of second parameter in odn_edit_dpm_table() callback + - s390/ctcm: Fix return type of ctc{mp,}m_tx() + - s390/netiucv: Fix return type of netiucv_tx() + - s390/lcs: Fix return type of lcs_start_xmit() + - drm/msm: Use drm_mode_copy() + - drm/rockchip: Use drm_mode_copy() + - drm/sti: Use drm_mode_copy() + - drm/mediatek: Fix return type of mtk_hdmi_bridge_mode_valid() + - drivers/md/md-bitmap: check the return value of md_bitmap_get_counter() + - md/raid1: stop mdx_raid1 thread when raid1 array run failed + - drm/amd/display: fix array index out of bound error in bios parser + - net: add atomic_long_t to net_device_stats fields + - ipv6/sit: use DEV_STATS_INC() to avoid data-races + - mrp: introduce active flags to prevent UAF when applicant uninit + - ppp: associate skb with a device at tx + - bpf: Prevent decl_tag from being referenced in func_proto arg + - ethtool: avoiding integer overflow in ethtool_phys_id() + - media: dvb-frontends: fix leak of memory fw + - media: dvbdev: adopts refcnt to avoid UAF + - media: dvb-usb: fix memory leak in dvb_usb_adapter_init() + - blk-mq: fix possible memleak when register 'hctx' failed + - drm/amd/display: Use the largest vready_offset in pipe group + - libbpf: Avoid enum forward-declarations in public API in C++ mode + - regulator: core: fix use_count leakage when handling boot-on + - wifi: mt76: do not run mt76u_status_worker if the device is not running + - mmc: f-sdh30: Add quirks for broken timeout clock capability + - mmc: renesas_sdhi: better reset from HS400 mode + - media: si470x: Fix use-after-free in si470x_int_in_callback() + - clk: st: Fix memory leak in st_of_quadfs_setup() + - crypto: hisilicon/hpre - fix resource leak in remove process + - scsi: lpfc: Fix hard lockup when reading the rx_monitor from debugfs + - scsi: ufs: Reduce the START STOP UNIT timeout + - scsi: elx: libefc: Fix second parameter type in state callbacks + - hugetlbfs: fix null-ptr-deref in hugetlbfs_parse_param() + - drm/fsl-dcu: Fix return type of fsl_dcu_drm_connector_mode_valid() + - drm/sti: Fix return type of sti_{dvo,hda,hdmi}_connector_mode_valid() + - orangefs: Fix kmemleak in orangefs_prepare_debugfs_help_string() + - orangefs: Fix kmemleak in orangefs_{kernel,client}_debug_init() + - tools/include: Add _RET_IP_ and math definitions to kernel.h + - KVM: selftests: Fix build regression by using accessor function + - hwmon: (jc42) Fix missing unlock on error in jc42_write() + - ALSA/ASoC: hda: move/rename snd_hdac_ext_stop_streams to hdac_stream.c + - ALSA: hda: add snd_hdac_stop_streams() helper + - ASoC: Intel: Skylake: Fix driver hang during shutdown + - ASoC: mediatek: mt8173-rt5650-rt5514: fix refcount leak in + mt8173_rt5650_rt5514_dev_probe() + - ASoC: audio-graph-card: fix refcount leak of cpu_ep in + __graph_for_each_link() + - ASoC: rockchip: pdm: Add missing clk_disable_unprepare() in + rockchip_pdm_runtime_resume() + - ASoC: mediatek: mt8183: fix refcount leak in + mt8183_mt6358_ts3a227_max98357_dev_probe() + - ASoC: wm8994: Fix potential deadlock + - ASoC: rockchip: spdif: Add missing clk_disable_unprepare() in + rk_spdif_runtime_resume() + - ASoC: rt5670: Remove unbalanced pm_runtime_put() + - drm/i915/display: Don't disable DDI/Transcoder when setting phy test pattern + - LoadPin: Ignore the "contents" argument of the LSM hooks + - pstore: Switch pmsg_lock to an rt_mutex to avoid priority inversion + - perf debug: Set debug_peo_args and redirect_to_stderr variable to correct + values in perf_quiet_option() + - afs: Fix lost servers_outstanding count + - pstore: Make sure CONFIG_PSTORE_PMSG selects CONFIG_RT_MUTEXES + - ALSA: usb-audio: add the quirk for KT0206 device + - ALSA: hda/realtek: Add quirk for Lenovo TianYi510Pro-14IOB + - ALSA: hda/hdmi: Add HP Device 0x8711 to force connect list + - usb: cdnsp: fix lack of ZLP for ep0 + - usb: xhci-mtk: fix leakage of shared hcd when fail to set wakeup irq + - arm64: dts: qcom: sm8250: fix USB-DP PHY registers + - usb: dwc3: Fix race between dwc3_set_mode and __dwc3_set_mode + - usb: dwc3: core: defer probe on ulpi_read_id timeout + - xhci: Prevent infinite loop in transaction errors recovery for streams + - HID: wacom: Ensure bootloader PID is usable in hidraw mode + - HID: mcp2221: don't connect hidraw + - loop: Fix the max_loop commandline argument treatment when it is set to 0 + - 9p: set req refcount to zero to avoid uninitialized usage + - security: Restrict CONFIG_ZERO_CALL_USED_REGS to gcc or clang > 15.0.6 + - reiserfs: Add missing calls to reiserfs_security_free() + - iio: fix memory leak in iio_device_register_eventset() + - iio: adc: ad_sigma_delta: do not use internal iio_dev lock + - iio: adc128s052: add proper .data members in adc128_of_match table + - regulator: core: fix deadlock on regulator enable + - floppy: Fix memory leak in do_floppy_init() + - gcov: add support for checksum field + - fbdev: fbcon: release buffer when fbcon_do_set_font() failed + - ovl: fix use inode directly in rcu-walk mode + - btrfs: do not BUG_ON() on ENOMEM when dropping extent items for a range + - scsi: qla2xxx: Fix crash when I/O abort times out + - net: stmmac: fix errno when create_singlethread_workqueue() fails + - media: dvbdev: fix build warning due to comments + - media: dvbdev: fix refcnt bug + - extcon: usbc-tusb320: Call the Type-C IRQ handler only if a port is + registered + - mfd: qcom_rpm: Use devm_of_platform_populate() to simplify code + - pwm: tegra: Fix 32 bit build + - Linux 5.15.86 + * Screen freeze after resuming from suspend (nvme0: I/O timeout) + (LP: #1996048) // Jammy update: v5.15.86 upstream stable release + (LP: #2005113) + - PCI: vmd: Disable MSI remapping after suspend + * CVE-2023-23559 + - wifi: rndis_wlan: Prevent buffer overflow in rndis_query_oid + * CVE-2023-0045 + - x86/bugs: Flush IBP in ib_prctl_set() + * jammy/linux: 5.15.0-67.74 -proposed tracker (LP: #2008074) + * [Inspiron 7590, Realtek ALC3254, Speaker, Internal] fails after a while + (LP: #2007798) + - Revert "ASoC: soc-pcm: Don't zero TDM masks in __soc_pcm_open()" + + -- Tim Gardner Wed, 01 Mar 2023 11:50:24 -0700 + +linux-azure-5.15 (5.15.0-1034.41~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1034.41~20.04.1 -proposed tracker + (LP: #2004308) + + [ Ubuntu: 5.15.0-1034.41 ] + + * jammy/linux-azure: 5.15.0-1034.41 -proposed tracker (LP: #2004309) + * Jammy update: v5.15.81 upstream stable release (LP: #2003130) + - [Config] azure: Update configs after rebase + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2023.01.30) + * Azure: mana: Fix IRQ name - add PCI and queue number (LP: #2004604) + - net: mana: Fix IRQ name - add PCI and queue number + * jammy/linux: 5.15.0-66.73 -proposed tracker (LP: #2004636) + * CVE-2023-0461 + - SAUCE: Fix inet_csk_listen_start after CVE-2023-0461 + * jammy/linux: 5.15.0-65.72 -proposed tracker (LP: #2004344) + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - debian/dkms-versions -- update from kernel-versions (main/2023.01.30) + * NFS: client permission error after adding user to permissible group + (LP: #2003053) + - NFS: Clear the file access cache upon login + - NFS: Judge the file access cache's timestamp in rcu path + - NFS: Fix up a sparse warning + * Fix W6400 hang after resume of S3 stress (LP: #2000299) + - drm/amd/display: Manually adjust strobe for DCN303 + * Rear Audio port sometimes has no audio output after reboot(Cirrus Logic) + (LP: #1998905) + - ALSA: hda/cirrus: Add extra 10 ms delay to allow PLL settle and lock. + * CVE-2022-20369 + - NFSD: fix use-after-free in __nfs42_ssc_open() + * CVE-2023-0461 + - net/ulp: prevent ULP without clone op from entering the LISTEN status + - net/ulp: use consistent error code when blocking ULP + * CVE-2023-0179 + - netfilter: nft_payload: incorrect arithmetics when fetching VLAN header bits + * Jammy update: v5.15.85 upstream stable release (LP: #2003139) + - udf: Discard preallocation before extending file with a hole + - udf: Fix preallocation discarding at indirect extent boundary + - udf: Do not bother looking for prealloc extents if i_lenExtents matches + i_size + - udf: Fix extending file within last block + - usb: gadget: uvc: Prevent buffer overflow in setup handler + - USB: serial: option: add Quectel EM05-G modem + - USB: serial: cp210x: add Kamstrup RF sniffer PIDs + - USB: serial: f81232: fix division by zero on line-speed change + - USB: serial: f81534: fix division by zero on line-speed change + - xhci: Apply XHCI_RESET_TO_DEFAULT quirk to ADL-N + - igb: Initialize mailbox message for VF reset + - usb: dwc3: pci: Update PCIe device ID for USB3 controller on CPU sub-system + for Raptor Lake + - HID: uclogic: Add HID_QUIRK_HIDINPUT_FORCE quirk + - selftests: net: Use "grep -E" instead of "egrep" + - net: loopback: use NET_NAME_PREDICTABLE for name_assign_type + - Linux 5.15.85 + * Jammy update: v5.15.84 upstream stable release (LP: #2003137) + - x86/vdso: Conditionally export __vdso_sgx_enter_enclave() + - vfs: fix copy_file_range() averts filesystem freeze protection + - ASoC: fsl_micfil: explicitly clear software reset bit + - ASoC: fsl_micfil: explicitly clear CHnF flags + - ASoC: ops: Check bounds for second channel in snd_soc_put_volsw_sx() + - libbpf: Use page size as max_entries when probing ring buffer map + - pinctrl: meditatek: Startup with the IRQs disabled + - can: sja1000: fix size of OCR_MODE_MASK define + - can: mcba_usb: Fix termination command argument + - net: fec: don't reset irq coalesce settings to defaults on "ip link up" + - ASoC: cs42l51: Correct PGA Volume minimum value + - perf: Fix perf_pending_task() UaF + - nvme-pci: clear the prp2 field when not used + - ASoC: ops: Correct bounds check for second channel on SX controls + - net: fec: properly guard irq coalesce setup + - Linux 5.15.84 + * Jammy update: v5.15.83 upstream stable release (LP: #2003134) + - clk: generalize devm_clk_get() a bit + - clk: Provide new devm_clk helpers for prepared and enabled clocks + - mmc: mtk-sd: Fix missing clk_disable_unprepare in msdc_of_clock_parse() + - arm64: dts: rockchip: keep I2S1 disabled for GPIO function on ROCK Pi 4 + series + - arm: dts: rockchip: fix node name for hym8563 rtc + - arm: dts: rockchip: remove clock-frequency from rtc + - ARM: dts: rockchip: fix ir-receiver node names + - arm64: dts: rockchip: fix ir-receiver node names + - ARM: dts: rockchip: rk3188: fix lcdc1-rgb24 node name + - fs: use acquire ordering in __fget_light() + - ARM: 9251/1: perf: Fix stacktraces for tracepoint events in THUMB2 kernels + - ARM: 9266/1: mm: fix no-MMU ZERO_PAGE() implementation + - ASoC: wm8962: Wait for updated value of WM8962_CLOCKING1 register + - spi: mediatek: Fix DEVAPC Violation at KO Remove + - ARM: dts: rockchip: disable arm_global_timer on rk3066 and rk3188 + - ASoC: rt711-sdca: fix the latency time of clock stop prepare state machine + transitions + - 9p/fd: Use P9_HDRSZ for header size + - regulator: slg51000: Wait after asserting CS pin + - ALSA: seq: Fix function prototype mismatch in snd_seq_expand_var_event + - selftests/net: Find nettest in current directory + - btrfs: send: avoid unaligned encoded writes when attempting to clone range + - ASoC: soc-pcm: Add NULL check in BE reparenting + - regulator: twl6030: fix get status of twl6032 regulators + - fbcon: Use kzalloc() in fbcon_prepare_logo() + - usb: dwc3: gadget: Disable GUSB2PHYCFG.SUSPHY for End Transfer + - 9p/xen: check logical size for buffer size + - net: usb: qmi_wwan: add u-blox 0x1342 composition + - mm/khugepaged: take the right locks for page table retraction + - mm/khugepaged: fix GUP-fast interaction by sending IPI + - mm/khugepaged: invoke MMU notifiers in shmem/file collapse paths + - rtc: mc146818-lib: extract mc146818_avoid_UIP + - rtc: cmos: avoid UIP when writing alarm time + - rtc: cmos: avoid UIP when reading alarm time + - cifs: fix use-after-free caused by invalid pointer `hostname` + - drm/bridge: anx7625: Fix edid_read break case in sp_tx_edid_read() + - xen/netback: do some code cleanup + - xen/netback: don't call kfree_skb() with interrupts disabled + - media: videobuf2-core: take mmap_lock in vb2_get_unmapped_area() + - soundwire: intel: Initialize clock stop timeout + - media: v4l2-dv-timings.c: fix too strict blanking sanity checks + - memcg: fix possible use-after-free in memcg_write_event_control() + - mm/gup: fix gup_pud_range() for dax + - Bluetooth: btusb: Add debug message for CSR controllers + - Bluetooth: Fix crash when replugging CSR fake controllers + - net: mana: Fix race on per-CQ variable napi work_done + - KVM: s390: vsie: Fix the initialization of the epoch extension (epdx) field + - drm/vmwgfx: Don't use screen objects when SEV is active + - drm/amdgpu/sdma_v4_0: turn off SDMA ring buffer in the s2idle suspend + - drm/shmem-helper: Remove errant put in error path + - drm/shmem-helper: Avoid vm_open error paths + - net: dsa: sja1105: avoid out of bounds access in sja1105_init_l2_policing() + - HID: usbhid: Add ALWAYS_POLL quirk for some mice + - HID: hid-lg4ff: Add check for empty lbuf + - HID: core: fix shift-out-of-bounds in hid_report_raw_event + - HID: ite: Enable QUIRK_TOUCHPAD_ON_OFF_REPORT on Acer Aspire Switch V 10 + - can: af_can: fix NULL pointer dereference in can_rcv_filter + - clk: Fix pointer casting to prevent oops in devm_clk_release() + - gpiolib: improve coding style for local variables + - gpiolib: check the 'ngpios' property in core gpiolib code + - gpiolib: fix memory leak in gpiochip_setup_dev() + - netfilter: nft_set_pipapo: Actually validate intervals in fields after the + first one + - drm/vmwgfx: Fix race issue calling pin_user_pages + - ieee802154: cc2520: Fix error return code in cc2520_hw_init() + - ca8210: Fix crash by zero initializing data + - netfilter: ctnetlink: fix compilation warning after data race fixes in ct + mark + - drm/bridge: ti-sn65dsi86: Fix output polarity setting bug + - gpio: amd8111: Fix PCI device reference count leak + - e1000e: Fix TX dispatch condition + - igb: Allocate MSI-X vector when testing + - net: broadcom: Add PTP_1588_CLOCK_OPTIONAL dependency for BCMGENET under + ARCH_BCM2835 + - drm: bridge: dw_hdmi: fix preference of RGB modes over YUV420 + - af_unix: Get user_ns from in_skb in unix_diag_get_exact(). + - vmxnet3: correctly report encapsulated LRO packet + - vmxnet3: use correct intrConf reference when using extended queues + - Bluetooth: 6LoWPAN: add missing hci_dev_put() in get_l2cap_conn() + - Bluetooth: Fix not cleanup led when bt_init fails + - net: dsa: ksz: Check return value + - net: dsa: hellcreek: Check return value + - net: dsa: sja1105: Check return value + - selftests: rtnetlink: correct xfrm policy rule in kci_test_ipsec_offload + - mac802154: fix missing INIT_LIST_HEAD in ieee802154_if_add() + - net: encx24j600: Add parentheses to fix precedence + - net: encx24j600: Fix invalid logic in reading of MISTAT register + - net: mdiobus: fwnode_mdiobus_register_phy() rework error handling + - net: mdiobus: fix double put fwnode in the error path + - octeontx2-pf: Fix potential memory leak in otx2_init_tc() + - xen-netfront: Fix NULL sring after live migration + - net: mvneta: Prevent out of bounds read in mvneta_config_rss() + - i40e: Fix not setting default xps_cpus after reset + - i40e: Fix for VF MAC address 0 + - i40e: Disallow ip4 and ip6 l4_4_bytes + - NFC: nci: Bounds check struct nfc_target arrays + - nvme initialize core quirks before calling nvme_init_subsystem + - gpio/rockchip: fix refcount leak in rockchip_gpiolib_register() + - net: stmmac: fix "snps,axi-config" node property parsing + - ip_gre: do not report erspan version on GRE interface + - net: microchip: sparx5: Fix missing destroy_workqueue of mact_queue + - net: thunderx: Fix missing destroy_workqueue of nicvf_rx_mode_wq + - net: hisilicon: Fix potential use-after-free in hisi_femac_rx() + - net: mdio: fix unbalanced fwnode reference count in mdio_device_release() + - net: hisilicon: Fix potential use-after-free in hix5hd2_rx() + - tipc: Fix potential OOB in tipc_link_proto_rcv() + - ipv4: Fix incorrect route flushing when source address is deleted + - ipv4: Fix incorrect route flushing when table ID 0 is used + - net: dsa: sja1105: fix memory leak in sja1105_setup_devlink_regions() + - tipc: call tipc_lxc_xmit without holding node_read_lock + - ethernet: aeroflex: fix potential skb leak in greth_init_rings() + - dpaa2-switch: Fix memory leak in dpaa2_switch_acl_entry_add() and + dpaa2_switch_acl_entry_remove() + - net: phy: mxl-gpy: fix version reporting + - net: plip: don't call kfree_skb/dev_kfree_skb() under spin_lock_irq() + - ipv6: avoid use-after-free in ip6_fragment() + - net: thunderbolt: fix memory leak in tbnet_open() + - net: mvneta: Fix an out of bounds check + - macsec: add missing attribute validation for offload + - s390/qeth: fix various format strings + - s390/qeth: fix use-after-free in hsci + - can: esd_usb: Allow REC and TEC to return to zero + - block: move CONFIG_BLOCK guard to top Makefile + - io_uring: move to separate directory + - io_uring: Fix a null-ptr-deref in io_tctx_exit_cb() + - Linux 5.15.83 + * 5.15.0-58.64 breaks xen bridge networking (pvh domU) (LP: #2002889) // Jammy + update: v5.15.83 upstream stable release (LP: #2003134) + - xen/netback: fix build warning + * Jammy update: v5.15.82 upstream stable release (LP: #2003132) + - arm64: mte: Avoid setting PG_mte_tagged if no tags cleared or restored + - drm/i915: Create a dummy object for gen6 ppgtt + - drm/i915/gt: Use i915_vm_put on ppgtt_create error paths + - erofs: fix order >= MAX_ORDER warning due to crafted negative i_size + - btrfs: sink iterator parameter to btrfs_ioctl_logical_to_ino + - btrfs: free btrfs_path before copying inodes to userspace + - spi: spi-imx: Fix spi_bus_clk if requested clock is higher than input clock + - btrfs: move QUOTA_ENABLED check to rescan_should_stop from + btrfs_qgroup_rescan_worker + - btrfs: qgroup: fix sleep from invalid context bug in btrfs_qgroup_inherit() + - drm/display/dp_mst: Fix drm_dp_mst_add_affected_dsc_crtcs() return code + - drm/amdgpu: update drm_display_info correctly when the edid is read + - drm/amdgpu: Partially revert "drm/amdgpu: update drm_display_info correctly + when the edid is read" + - iio: health: afe4403: Fix oob read in afe4403_read_raw + - iio: health: afe4404: Fix oob read in afe4404_[read|write]_raw + - iio: light: rpr0521: add missing Kconfig dependencies + - bpf, perf: Use subprog name when reporting subprog ksymbol + - scripts/faddr2line: Fix regression in name resolution on ppc64le + - ARM: at91: rm9200: fix usb device clock id + - libbpf: Handle size overflow for ringbuf mmap + - hwmon: (ltc2947) fix temperature scaling + - hwmon: (ina3221) Fix shunt sum critical calculation + - hwmon: (i5500_temp) fix missing pci_disable_device() + - hwmon: (ibmpex) Fix possible UAF when ibmpex_register_bmc() fails + - bpf: Do not copy spin lock field from user in bpf_selem_alloc + - nvmem: rmem: Fix return value check in rmem_read() + - of: property: decrement node refcount in of_fwnode_get_reference_args() + - ixgbevf: Fix resource leak in ixgbevf_init_module() + - i40e: Fix error handling in i40e_init_module() + - fm10k: Fix error handling in fm10k_init_module() + - iavf: remove redundant ret variable + - iavf: Fix error handling in iavf_init_module() + - e100: Fix possible use after free in e100_xmit_prepare + - net/mlx5: DR, Fix uninitialized var warning + - net/mlx5: Fix uninitialized variable bug in outlen_write() + - net/mlx5e: Fix use-after-free when reverting termination table + - can: sja1000_isa: sja1000_isa_probe(): add missing free_sja1000dev() + - can: cc770: cc770_isa_probe(): add missing free_cc770dev() + - can: etas_es58x: es58x_init_netdev(): free netdev when register_candev() + - can: m_can: pci: add missing m_can_class_free_dev() in probe/remove methods + - can: m_can: Add check for devm_clk_get + - qlcnic: fix sleep-in-atomic-context bugs caused by msleep + - aquantia: Do not purge addresses when setting the number of rings + - wifi: cfg80211: fix buffer overflow in elem comparison + - wifi: cfg80211: don't allow multi-BSSID in S1G + - wifi: mac8021: fix possible oob access in ieee80211_get_rate_duration + - net: phy: fix null-ptr-deref while probe() failed + - net: ethernet: ti: am65-cpsw: fix error handling in am65_cpsw_nuss_probe() + - net: net_netdev: Fix error handling in ntb_netdev_init_module() + - net/9p: Fix a potential socket leak in p9_socket_open + - net: ethernet: nixge: fix NULL dereference + - net: wwan: iosm: fix kernel test robot reported error + - net: wwan: iosm: fix dma_alloc_coherent incompatible pointer type + - dsa: lan9303: Correct stat name + - tipc: re-fetch skb cb after tipc_msg_validate + - net: hsr: Fix potential use-after-free + - net: mdiobus: fix unbalanced node reference count + - afs: Fix fileserver probe RTT handling + - net: tun: Fix use-after-free in tun_detach() + - packet: do not set TP_STATUS_CSUM_VALID on CHECKSUM_COMPLETE + - sctp: fix memory leak in sctp_stream_outq_migrate() + - net: ethernet: renesas: ravb: Fix promiscuous mode after system resumed + - hwmon: (coretemp) Check for null before removing sysfs attrs + - hwmon: (coretemp) fix pci device refcount leak in nv1a_ram_new() + - riscv: vdso: fix section overlapping under some conditions + - riscv: mm: Proper page permissions after initmem free + - ALSA: dice: fix regression for Lexicon I-ONIX FW810S + - error-injection: Add prompt for function error injection + - tools/vm/slabinfo-gnuplot: use "grep -E" instead of "egrep" + - nilfs2: fix NULL pointer dereference in nilfs_palloc_commit_free_entry() + - x86/bugs: Make sure MSR_SPEC_CTRL is updated properly upon resume from S3 + - pinctrl: intel: Save and restore pins in "direct IRQ" mode + - v4l2: don't fall back to follow_pfn() if pin_user_pages_fast() fails + - net: stmmac: Set MAC's flow control register to reflect current settings + - mmc: mmc_test: Fix removal of debugfs file + - mmc: core: Fix ambiguous TRIM and DISCARD arg + - mmc: sdhci-esdhc-imx: correct CQHCI exit halt state check + - mmc: sdhci-sprd: Fix no reset data and command after voltage switch + - mmc: sdhci: Fix voltage switch delay + - drm/amdgpu: temporarily disable broken Clang builds due to blown stack-frame + - drm/amdgpu: enable Vangogh VCN indirect sram mode + - drm/i915: Fix negative value passed as remaining time + - drm/i915: Never return 0 if not all requests retired + - tracing/osnoise: Fix duration type + - tracing: Fix race where histograms can be called before the event + - tracing: Free buffers when a used dynamic event is removed + - io_uring: update res mask in io_poll_check_events + - io_uring: fix tw losing poll events + - io_uring: cmpxchg for poll arm refs release + - io_uring: make poll refs more robust + - io_uring/poll: fix poll_refs race with cancelation + - KVM: x86/mmu: Fix race condition in direct_page_fault + - ASoC: ops: Fix bounds check for _sx controls + - pinctrl: single: Fix potential division by zero + - riscv: Sync efi page table's kernel mappings before switching + - riscv: fix race when vmap stack overflow + - riscv: kexec: Fixup irq controller broken in kexec crash path + - nvme: fix SRCU protection of nvme_ns_head list + - iommu/vt-d: Fix PCI device refcount leak in has_external_pci() + - iommu/vt-d: Fix PCI device refcount leak in dmar_dev_scope_init() + - mm: __isolate_lru_page_prepare() in isolate_migratepages_block() + - mm: migrate: fix THP's mapcount on isolation + - parisc: Increase FRAME_WARN to 2048 bytes on parisc + - Kconfig.debug: provide a little extra FRAME_WARN leeway when KASAN is + enabled + - selftests: net: add delete nexthop route warning test + - selftests: net: fix nexthop warning cleanup double ip typo + - ipv4: Handle attempt to delete multipath route when fib_info contains an nh + reference + - ipv4: Fix route deletion when nexthop info is not specified + - serial: stm32: Factor out GPIO RTS toggling into separate function + - serial: stm32: Use TC interrupt to deassert GPIO RTS in RS485 mode + - serial: stm32: Deassert Transmit Enable on ->rs485_config() + - i2c: npcm7xx: Fix error handling in npcm_i2c_init() + - i2c: imx: Only DMA messages with I2C_M_DMA_SAFE flag set + - ACPI: HMAT: remove unnecessary variable initialization + - ACPI: HMAT: Fix initiator registration for single-initiator systems + - Revert "clocksource/drivers/riscv: Events are stopped during CPU suspend" + - char: tpm: Protect tpm_pm_suspend with locks + - Input: raydium_ts_i2c - fix memory leak in raydium_i2c_send() + - ipc/sem: Fix dangling sem_array access in semtimedop race + - Linux 5.15.82 + * Jammy update: v5.15.81 upstream stable release (LP: #2003130) + - ASoC: fsl_sai: use local device pointer + - ASoC: fsl_asrc fsl_esai fsl_sai: allow CONFIG_PM=N + - serial: Add rs485_supported to uart_port + - serial: fsl_lpuart: Fill in rs485_supported + - tty: serial: fsl_lpuart: don't break the on-going transfer when global reset + - sctp: remove the unnecessary sinfo_stream check in sctp_prsctp_prune_unsent + - sctp: clear out_curr if all frag chunks of current msg are pruned + - cifs: introduce new helper for cifs_reconnect() + - cifs: split out dfs code from cifs_reconnect() + - cifs: support nested dfs links over reconnect + - cifs: Fix connections leak when tlink setup failed + - ata: libata-scsi: simplify __ata_scsi_queuecmd() + - ata: libata-core: do not issue non-internal commands once EH is pending + - drm/display: Don't assume dual mode adaptors support i2c sub-addressing + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Micron Nitro + - nvme-pci: disable namespace identifiers for the MAXIO MAP1001 + - nvme-pci: disable write zeroes on various Kingston SSD + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Netac NV7000 + - iio: ms5611: Simplify IO callback parameters + - iio: pressure: ms5611: fixed value compensation bug + - ceph: do not update snapshot context when there is no new snapshot + - ceph: avoid putting the realm twice when decoding snaps fails + - x86/sgx: Create utility to validate user provided offset and length + - x86/sgx: Add overflow check in sgx_validate_offset_length() + - binder: validate alloc->mm in ->mmap() handler + - ceph: Use kcalloc for allocating multiple elements + - ceph: fix NULL pointer dereference for req->r_session + - wifi: mac80211: fix memory free error when registering wiphy fail + - wifi: mac80211_hwsim: fix debugfs attribute ps with rc table support + - riscv: dts: sifive unleashed: Add PWM controlled LEDs + - audit: fix undefined behavior in bit shift for AUDIT_BIT + - wifi: airo: do not assign -1 to unsigned char + - wifi: mac80211: Fix ack frame idr leak when mesh has no route + - wifi: ath11k: Fix QCN9074 firmware boot on x86 + - spi: stm32: fix stm32_spi_prepare_mbr() that halves spi clk for every run + - selftests/bpf: Add verifier test for release_reference() + - Revert "net: macsec: report real_dev features when HW offloading is enabled" + - platform/x86: ideapad-laptop: Disable touchpad_switch + - platform/x86: touchscreen_dmi: Add info for the RCA Cambio W101 v2 2-in-1 + - platform/x86/intel/pmt: Sapphire Rapids PMT errata fix + - platform/x86/intel/hid: Add some ACPI device IDs + - scsi: ibmvfc: Avoid path failures during live migration + - scsi: scsi_debug: Make the READ CAPACITY response compliant with ZBC + - drm: panel-orientation-quirks: Add quirk for Acer Switch V 10 (SW5-017) + - block, bfq: fix null pointer dereference in bfq_bio_bfqg() + - arm64/syscall: Include asm/ptrace.h in syscall_wrapper header. + - nvmet: fix memory leak in nvmet_subsys_attr_model_store_locked + - Revert "drm/amdgpu: Revert "drm/amdgpu: getting fan speed pwm for vega10 + properly"" + - ALSA: usb-audio: add quirk to fix Hamedal C20 disconnect issue + - RISC-V: vdso: Do not add missing symbols to version section in linker script + - MIPS: pic32: treat port as signed integer + - xfrm: fix "disable_policy" on ipv4 early demux + - xfrm: replay: Fix ESN wrap around for GSO + - af_key: Fix send_acquire race with pfkey_register + - ARM: dts: am335x-pcm-953: Define fixed regulators in root node + - ASoC: hdac_hda: fix hda pcm buffer overflow issue + - ASoC: sgtl5000: Reset the CHIP_CLK_CTRL reg on remove + - ASoC: soc-pcm: Don't zero TDM masks in __soc_pcm_open() + - x86/hyperv: Restore VP assist page after cpu offlining/onlining + - scsi: storvsc: Fix handling of srb_status and capacity change events + - ASoC: max98373: Add checks for devm_kcalloc + - regulator: core: fix kobject release warning and memory leak in + regulator_register() + - spi: dw-dma: decrease reference count in dw_spi_dma_init_mfld() + - regulator: core: fix UAF in destroy_regulator() + - bus: sunxi-rsb: Remove the shutdown callback + - bus: sunxi-rsb: Support atomic transfers + - tee: optee: fix possible memory leak in optee_register_device() + - ARM: dts: at91: sam9g20ek: enable udc vbus gpio pinctrl + - selftests: mptcp: more stable simult_flows tests + - selftests: mptcp: fix mibit vs mbit mix up + - net: liquidio: simplify if expression + - rxrpc: Allow list of in-use local UDP endpoints to be viewed in /proc + - rxrpc: Use refcount_t rather than atomic_t + - rxrpc: Fix race between conn bundle lookup and bundle removal [ZDI- + CAN-15975] + - net: dsa: sja1105: disallow C45 transactions on the BASE-TX MDIO bus + - nfc/nci: fix race with opening and closing + - net: pch_gbe: fix potential memleak in pch_gbe_tx_queue() + - 9p/fd: fix issue of list_del corruption in p9_fd_cancel() + - netfilter: conntrack: Fix data-races around ct mark + - netfilter: nf_tables: do not set up extensions for end interval + - iavf: Fix a crash during reset task + - iavf: Do not restart Tx queues after reset task failure + - iavf: Fix race condition between iavf_shutdown and iavf_remove + - ARM: mxs: fix memory leak in mxs_machine_init() + - ARM: dts: imx6q-prti6q: Fix ref/tcxo-clock-frequency properties + - net: ethernet: mtk_eth_soc: fix error handling in mtk_open() + - net/mlx4: Check retval of mlx4_bitmap_init + - net: mvpp2: fix possible invalid pointer dereference + - net/qla3xxx: fix potential memleak in ql3xxx_send() + - octeontx2-af: debugsfs: fix pci device refcount leak + - net: pch_gbe: fix pci device refcount leak while module exiting + - nfp: fill splittable of devlink_port_attrs correctly + - nfp: add port from netdev validation for EEPROM access + - macsec: Fix invalid error code set + - Drivers: hv: vmbus: fix double free in the error path of + vmbus_add_channel_work() + - Drivers: hv: vmbus: fix possible memory leak in vmbus_device_register() + - netfilter: ipset: regression in ip_set_hash_ip.c + - net/mlx5: Do not query pci info while pci disabled + - net/mlx5: Fix FW tracer timestamp calculation + - net/mlx5: Fix handling of entry refcount when command is not issued to FW + - tipc: set con sock in tipc_conn_alloc + - tipc: add an extra conn_get in tipc_conn_alloc + - tipc: check skb_linearize() return value in tipc_disc_rcv() + - xfrm: Fix oops in __xfrm_state_delete() + - xfrm: Fix ignored return value in xfrm6_init() + - net: wwan: iosm: use ACPI_FREE() but not kfree() in ipc_pcie_read_bios_cfg() + - sfc: fix potential memleak in __ef100_hard_start_xmit() + - net: sparx5: fix error handling in sparx5_port_open() + - net: sched: allow act_ct to be built without NF_NAT + - NFC: nci: fix memory leak in nci_rx_data_packet() + - regulator: twl6030: re-add TWL6032_SUBCLASS + - bnx2x: fix pci device refcount leak in bnx2x_vf_is_pcie_pending() + - dma-buf: fix racing conflict of dma_heap_add() + - netfilter: ipset: restore allowing 64 clashing elements in hash:net,iface + - netfilter: flowtable_offload: add missing locking + - fs: do not update freeing inode i_io_list + - dccp/tcp: Reset saddr on failure after inet6?_hash_connect(). + - ipv4: Fix error return code in fib_table_insert() + - arcnet: fix potential memory leak in com20020_probe() + - s390/dasd: fix no record found for raw_track_access + - nfc: st-nci: fix incorrect validating logic in EVT_TRANSACTION + - nfc: st-nci: fix memory leaks in EVT_TRANSACTION + - nfc: st-nci: fix incorrect sizing calculations in EVT_TRANSACTION + - net: enetc: manage ENETC_F_QBV in priv->active_offloads only when enabled + - net: enetc: cache accesses to &priv->si->hw + - net: enetc: preserve TX ring priority across reconfiguration + - octeontx2-pf: Add check for devm_kcalloc + - octeontx2-af: Fix reference count issue in rvu_sdp_init() + - net: thunderx: Fix the ACPI memory leak + - s390/crashdump: fix TOD programmable field size + - lib/vdso: use "grep -E" instead of "egrep" + - [Config] updateconfigs for CC_HAS_ASM_GOTO_TIED_OUTPUT + - init/Kconfig: fix CC_HAS_ASM_GOTO_TIED_OUTPUT test with dash + - nios2: add FORCE for vmlinuz.gz + - mmc: sdhci-brcmstb: Re-organize flags + - mmc: sdhci-brcmstb: Enable Clock Gating to save power + - mmc: sdhci-brcmstb: Fix SDHCI_RESET_ALL for CQHCI + - KVM: arm64: pkvm: Fixup boot mode to reflect that the kernel resumes from + EL1 + - usb: dwc3: exynos: Fix remove() function + - usb: cdnsp: Fix issue with Clear Feature Halt Endpoint + - usb: cdnsp: fix issue with ZLP - added TD_SIZE = 1 + - ext4: fix use-after-free in ext4_ext_shift_extents + - arm64: dts: rockchip: lower rk3399-puma-haikou SD controller clock frequency + - iio: light: apds9960: fix wrong register for gesture gain + - iio: core: Fix entry not deleted when iio_register_sw_trigger_type() fails + - bus: ixp4xx: Don't touch bit 7 on IXP42x + - usb: dwc3: gadget: conditionally remove requests + - usb: dwc3: gadget: Return -ESHUTDOWN on ep disable + - usb: dwc3: gadget: Clear ep descriptor last + - nilfs2: fix nilfs_sufile_mark_dirty() not set segment usage as dirty + - gcov: clang: fix the buffer overflow issue + - mm: vmscan: fix extreme overreclaim and swap floods + - KVM: x86: nSVM: leave nested mode on vCPU free + - KVM: x86: forcibly leave nested mode on vCPU reset + - KVM: x86: nSVM: harden svm_free_nested against freeing vmcb02 while still in + use + - KVM: x86: add kvm_leave_nested + - KVM: x86: remove exit_int_info warning in svm_handle_exit + - x86/tsx: Add a feature bit for TSX control MSR support + - x86/pm: Add enumeration check before spec MSRs save/restore setup + - x86/ioremap: Fix page aligned size calculation in __ioremap_caller() + - Input: synaptics - switch touchpad on HP Laptop 15-da3001TU to RMI mode + - ASoC: Intel: bytcht_es8316: Add quirk for the Nanote UMPC-01 + - tools: iio: iio_generic_buffer: Fix read size + - serial: 8250: 8250_omap: Avoid RS485 RTS glitch on ->set_termios() + - Input: goodix - try resetting the controller when no config is set + - Input: soc_button_array - add use_low_level_irq module parameter + - Input: soc_button_array - add Acer Switch V 10 to dmi_use_low_level_irq[] + - Input: i8042 - apply probe defer to more ASUS ZenBook models + - ASoC: stm32: dfsdm: manage cb buffers cleanup + - xen-pciback: Allow setting PCI_MSIX_FLAGS_MASKALL too + - xen/platform-pci: add missing free_irq() in error path + - platform/x86: asus-wmi: add missing pci_dev_put() in asus_wmi_set_xusb2pr() + - platform/x86: acer-wmi: Enable SW_TABLET_MODE on Switch V 10 (SW5-017) + - drm/amdgpu: disable BACO support on more cards + - zonefs: fix zone report size in __zonefs_io_error() + - platform/x86: hp-wmi: Ignore Smart Experience App event + - platform/x86: ideapad-laptop: Fix interrupt storm on fn-lock toggle on some + Yoga laptops + - [Config] updateconfigs for INET_TABLE_PERTURB_ORDER + - tcp: configurable source port perturb table size + - net: usb: qmi_wwan: add Telit 0x103a composition + - scsi: iscsi: Fix possible memory leak when device_register() failed + - gpu: host1x: Avoid trying to use GART on Tegra20 + - dm integrity: flush the journal on suspend + - dm integrity: clear the journal on suspend + - fuse: lock inode unconditionally in fuse_fallocate() + - wifi: wilc1000: validate length of IEEE80211_P2P_ATTR_OPER_CHANNEL attribute + - wifi: wilc1000: validate length of IEEE80211_P2P_ATTR_CHANNEL_LIST attribute + - wifi: wilc1000: validate number of channels + - genirq/msi: Shutdown managed interrupts with unsatifiable affinities + - genirq: Always limit the affinity to online CPUs + - irqchip/gic-v3: Always trust the managed affinity provided by the core code + - genirq: Take the proposed affinity at face value if force==true + - btrfs: free btrfs_path before copying root refs to userspace + - btrfs: free btrfs_path before copying fspath to userspace + - btrfs: free btrfs_path before copying subvol info to userspace + - btrfs: zoned: fix missing endianness conversion in sb_write_pointer + - btrfs: use kvcalloc in btrfs_get_dev_zone_info + - btrfs: sysfs: normalize the error handling branch in btrfs_init_sysfs() + - drm/amd/dc/dce120: Fix audio register mapping, stop triggering KASAN + - drm/amd/display: No display after resume from WB/CB + - drm/amdgpu: Enable Aldebaran devices to report CU Occupancy + - drm/amdgpu: always register an MMU notifier for userptr + - cifs: fix missed refcounting of ipc tcon + - Linux 5.15.81 + * Jammy update: v5.15.80 upstream stable release (LP: #2003122) + - mm: hwpoison: refactor refcount check handling + - mm: hwpoison: handle non-anonymous THP correctly + - mm: shmem: don't truncate page if memory failure happens + - ASoC: wm5102: Revert "ASoC: wm5102: Fix PM disable depth imbalance in + wm5102_probe" + - ASoC: wm5110: Revert "ASoC: wm5110: Fix PM disable depth imbalance in + wm5110_probe" + - ASoC: wm8997: Revert "ASoC: wm8997: Fix PM disable depth imbalance in + wm8997_probe" + - ASoC: mt6660: Keep the pm_runtime enables before component stuff in + mt6660_i2c_probe + - ASoC: rt1019: Fix the TDM settings + - ASoC: wm8962: Add an event handler for TEMP_HP and TEMP_SPK + - spi: intel: Fix the offset to get the 64K erase opcode + - ASoC: codecs: jz4725b: add missed Line In power control bit + - ASoC: codecs: jz4725b: fix reported volume for Master ctl + - ASoC: codecs: jz4725b: use right control for Capture Volume + - ASoC: codecs: jz4725b: fix capture selector naming + - ASoC: Intel: sof_sdw: add quirk variant for LAPBC710 NUC15 + - selftests/futex: fix build for clang + - selftests/intel_pstate: fix build for ARCH=x86_64 + - ASoC: rt1308-sdw: add the default value of some registers + - drm/amd/display: Remove wrong pipe control lock + - ACPI: scan: Add LATT2021 to acpi_ignore_dep_ids[] + - RDMA/efa: Add EFA 0xefa2 PCI ID + - btrfs: raid56: properly handle the error when unable to find the missing + stripe + - NFSv4: Retry LOCK on OLD_STATEID during delegation return + - ACPI: x86: Add another system to quirk list for forcing StorageD3Enable + - firmware: arm_scmi: Cleanup the core driver removal callback + - i2c: tegra: Allocate DMA memory for DMA engine + - i2c: i801: add lis3lv02d's I2C address for Vostro 5568 + - drm/imx: imx-tve: Fix return type of imx_tve_connector_mode_valid + - btrfs: remove pointless and double ulist frees in error paths of qgroup + tests + - x86/cpu: Add several Intel server CPU model numbers + - ASoC: codecs: jz4725b: Fix spelling mistake "Sourc" -> "Source", "Routee" -> + "Route" + - mtd: spi-nor: intel-spi: Disable write protection only if asked + - spi: intel: Use correct mask for flash and protected regions + - KVM: x86/pmu: Do not speculatively query Intel GP PMCs that don't exist yet + - hugetlbfs: don't delete error page from pagecache + - arm64: dts: qcom: sa8155p-adp: Specify which LDO modes are allowed + - arm64: dts: qcom: sm8150-xperia-kumano: Specify which LDO modes are allowed + - arm64: dts: qcom: sm8250-xperia-edo: Specify which LDO modes are allowed + - arm64: dts: qcom: sm8350-hdk: Specify which LDO modes are allowed + - spi: stm32: Print summary 'callbacks suppressed' message + - ARM: dts: at91: sama7g5: fix signal name of pin PB2 + - ASoC: core: Fix use-after-free in snd_soc_exit() + - ASoC: tas2770: Fix set_tdm_slot in case of single slot + - ASoC: tas2764: Fix set_tdm_slot in case of single slot + - ARM: at91: pm: avoid soft resetting AC DLL + - serial: 8250: omap: Fix missing PM runtime calls for omap8250_set_mctrl() + - serial: 8250_omap: remove wait loop from Errata i202 workaround + - serial: 8250: omap: Fix unpaired pm_runtime_put_sync() in omap8250_remove() + - serial: 8250: omap: Flush PM QOS work on remove + - serial: imx: Add missing .thaw_noirq hook + - tty: n_gsm: fix sleep-in-atomic-context bug in gsm_control_send + - bpf, test_run: Fix alignment problem in bpf_prog_test_run_skb() + - ASoC: soc-utils: Remove __exit for snd_soc_util_exit() + - pinctrl: rockchip: list all pins in a possible mux route for PX30 + - scsi: scsi_transport_sas: Fix error handling in sas_phy_add() + - block: sed-opal: kmalloc the cmd/resp buffers + - bpf: Fix memory leaks in __check_func_call + - arm64: Fix bit-shifting UB in the MIDR_CPU_MODEL() macro + - siox: fix possible memory leak in siox_device_add() + - parport_pc: Avoid FIFO port location truncation + - pinctrl: devicetree: fix null pointer dereferencing in pinctrl_dt_to_map + - drm/vc4: kms: Fix IS_ERR() vs NULL check for vc4_kms + - drm/panel: simple: set bpc field for logic technologies displays + - drm/drv: Fix potential memory leak in drm_dev_init() + - drm: Fix potential null-ptr-deref in drm_vblank_destroy_worker() + - arm64: dts: imx8mm: Fix NAND controller size-cells + - arm64: dts: imx8mn: Fix NAND controller size-cells + - ata: libata-transport: fix double ata_host_put() in ata_tport_add() + - ata: libata-transport: fix error handling in ata_tport_add() + - ata: libata-transport: fix error handling in ata_tlink_add() + - ata: libata-transport: fix error handling in ata_tdev_add() + - nfp: change eeprom length to max length enumerators + - MIPS: fix duplicate definitions for exported symbols + - MIPS: Loongson64: Add WARN_ON on kexec related kmalloc failed + - bpf: Initialize same number of free nodes for each pcpu_freelist + - net: bgmac: Drop free_netdev() from bgmac_enet_remove() + - mISDN: fix possible memory leak in mISDN_dsp_element_register() + - net: hinic: Fix error handling in hinic_module_init() + - net: stmmac: ensure tx function is not running in stmmac_xdp_release() + - soc: imx8m: Enable OCOTP clock before reading the register + - net: liquidio: release resources when liquidio driver open failed + - mISDN: fix misuse of put_device() in mISDN_register_device() + - net: macvlan: Use built-in RCU list checking + - net: caif: fix double disconnect client in chnl_net_open() + - bnxt_en: Remove debugfs when pci_register_driver failed + - net: mhi: Fix memory leak in mhi_net_dellink() + - net: dsa: make dsa_master_ioctl() see through port_hwtstamp_get() shims + - xen/pcpu: fix possible memory leak in register_pcpu() + - net: ionic: Fix error handling in ionic_init_module() + - net: ena: Fix error handling in ena_init() + - net: hns3: fix setting incorrect phy link ksettings for firmware in + resetting process + - bridge: switchdev: Fix memory leaks when changing VLAN protocol + - drbd: use after free in drbd_create_device() + - platform/x86/intel: pmc: Don't unconditionally attach Intel PMC when + virtualized + - platform/surface: aggregator: Do not check for repeated unsequenced packets + - cifs: add check for returning value of SMB2_close_init + - net: ag71xx: call phylink_disconnect_phy if ag71xx_hw_enable() fail in + ag71xx_open() + - net/x25: Fix skb leak in x25_lapb_receive_frame() + - cifs: Fix wrong return value checking when GETFLAGS + - net: microchip: sparx5: Fix potential null-ptr-deref in sparx_stats_init() + and sparx5_start() + - net: thunderbolt: Fix error handling in tbnet_init() + - cifs: add check for returning value of SMB2_set_info_init + - ftrace: Fix the possible incorrect kernel message + - ftrace: Optimize the allocation for mcount entries + - ftrace: Fix null pointer dereference in ftrace_add_mod() + - ring_buffer: Do not deactivate non-existant pages + - tracing: Fix memory leak in tracing_read_pipe() + - tracing/ring-buffer: Have polling block on watermark + - tracing: Fix memory leak in test_gen_synth_cmd() and + test_empty_synth_event() + - tracing: Fix wild-memory-access in register_synth_event() + - tracing: Fix race where eprobes can be called before the event + - tracing: kprobe: Fix potential null-ptr-deref on trace_event_file in + kprobe_event_gen_test_exit() + - tracing: kprobe: Fix potential null-ptr-deref on trace_array in + kprobe_event_gen_test_exit() + - drm/amd/display: Add HUBP surface flip interrupt handler + - ALSA: usb-audio: Drop snd_BUG_ON() from snd_usbmidi_output_open() + - ALSA: hda/realtek: fix speakers for Samsung Galaxy Book Pro + - ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book Pro 360 + - Revert "usb: dwc3: disable USB core PHY management" + - slimbus: qcom-ngd: Fix build error when CONFIG_SLIM_QCOM_NGD_CTRL=y && + CONFIG_QCOM_RPROC_COMMON=m + - slimbus: stream: correct presence rate frequencies + - speakup: fix a segfault caused by switching consoles + - USB: bcma: Make GPIO explicitly optional + - USB: serial: option: add Sierra Wireless EM9191 + - USB: serial: option: remove old LARA-R6 PID + - USB: serial: option: add u-blox LARA-R6 00B modem + - USB: serial: option: add u-blox LARA-L6 modem + - USB: serial: option: add Fibocom FM160 0x0111 composition + - usb: add NO_LPM quirk for Realforce 87U Keyboard + - usb: chipidea: fix deadlock in ci_otg_del_timer + - usb: cdns3: host: fix endless superspeed hub port reset + - usb: typec: mux: Enter safe mode only when pins need to be reconfigured + - iio: adc: at91_adc: fix possible memory leak in at91_adc_allocate_trigger() + - iio: trigger: sysfs: fix possible memory leak in iio_sysfs_trig_init() + - iio: adc: mp2629: fix wrong comparison of channel + - iio: adc: mp2629: fix potential array out of bound access + - iio: pressure: ms5611: changed hardcoded SPI speed to value limited + - dm ioctl: fix misbehavior if list_versions races with module loading + - serial: 8250: Fall back to non-DMA Rx if IIR_RDI occurs + - serial: 8250: Flush DMA Rx on RLSI + - serial: 8250_lpss: Configure DMA also w/o DMA filter + - Input: iforce - invert valid length check when fetching device IDs + - maccess: Fix writing offset in case of fault in + strncpy_from_kernel_nofault() + - net: phy: marvell: add sleep time after enabling the loopback bit + - scsi: zfcp: Fix double free of FSF request when qdio send fails + - iommu/vt-d: Preset Access bit for IOVA in FL non-leaf paging entries + - iommu/vt-d: Set SRE bit only when hardware has SRS cap + - firmware: coreboot: Register bus in module init + - mmc: core: properly select voltage range without power cycle + - mmc: sdhci-pci-o2micro: fix card detect fail issue caused by CD# debounce + timeout + - mmc: sdhci-pci: Fix possible memory leak caused by missing pci_dev_put() + - docs: update mediator contact information in CoC doc + - misc/vmw_vmci: fix an infoleak in vmci_host_do_receive_datagram() + - perf/x86/intel/pt: Fix sampling using single range output + - nvme: restrict management ioctls to admin + - nvme: ensure subsystem reset is single threaded + - serial: 8250_lpss: Use 16B DMA burst with Elkhart Lake + - perf: Improve missing SIGTRAP checking + - ring-buffer: Include dropped pages in counting dirty patches + - tracing: Fix warning on variable 'struct trace_array' + - net: use struct_group to copy ip/ipv6 header addresses + - scsi: target: tcm_loop: Fix possible name leak in tcm_loop_setup_hba_bus() + - scsi: scsi_debug: Fix possible UAF in sdebug_add_host_helper() + - kprobes: Skip clearing aggrprobe's post_handler in kprobe-on-ftrace case + - Input: i8042 - fix leaking of platform device on module removal + - macvlan: enforce a consistent minimal mtu + - tcp: cdg: allow tcp_cdg_release() to be called multiple times + - kcm: avoid potential race in kcm_tx_work + - kcm: close race conditions on sk_receive_queue + - 9p: trans_fd/p9_conn_cancel: drop client lock earlier + - gfs2: Check sb_bsize_shift after reading superblock + - gfs2: Switch from strlcpy to strscpy + - 9p/trans_fd: always use O_NONBLOCK read/write + - wifi: wext: use flex array destination for memcpy() + - mm: fs: initialize fsdata passed to write_begin/write_end interface + - net/9p: use a dedicated spinlock for trans_fd + - ntfs: fix use-after-free in ntfs_attr_find() + - ntfs: fix out-of-bounds read in ntfs_attr_find() + - ntfs: check overflow when iterating ATTR_RECORDs + - Linux 5.15.80 + * CVE-2022-4139 + - drm/i915: fix TLB invalidation for Gen12 video and compute engines + * Jammy update: v5.15.79 upstream stable release (LP: #2001570) + - fuse: fix readdir cache race + - drm/amdkfd: avoid recursive lock in migrations back to RAM + - drm/amdkfd: handle CPU fault on COW mapping + - drm/amdkfd: Fix NULL pointer dereference in svm_migrate_to_ram() + - hwspinlock: qcom: correct MMIO max register for newer SoCs + - phy: stm32: fix an error code in probe + - wifi: cfg80211: silence a sparse RCU warning + - wifi: cfg80211: fix memory leak in query_regdb_file() + - soundwire: qcom: reinit broadcast completion + - soundwire: qcom: check for outanding writes before doing a read + - bpf, verifier: Fix memory leak in array reallocation for stack state + - bpf, sockmap: Fix the sk->sk_forward_alloc warning of sk_stream_kill_queues + - wifi: mac80211: Set TWT Information Frame Disabled bit as 1 + - bpftool: Fix NULL pointer dereference when pin {PROG, MAP, LINK} without + FILE + - HID: hyperv: fix possible memory leak in mousevsc_probe() + - bpf, sockmap: Fix sk->sk_forward_alloc warn_on in sk_stream_kill_queues + - bpf: Fix sockmap calling sleepable function in teardown path + - bpf, sock_map: Move cancel_work_sync() out of sock lock + - bpf: Add helper macro bpf_for_each_reg_in_vstate + - bpf: Fix wrong reg type conversion in release_reference() + - net: gso: fix panic on frag_list with mixed head alloc types + - macsec: delete new rxsc when offload fails + - macsec: fix secy->n_rx_sc accounting + - macsec: fix detection of RXSCs when toggling offloading + - macsec: clear encryption keys from the stack after setting up offload + - octeontx2-pf: Use hardware register for CQE count + - octeontx2-pf: NIX TX overwrites SQ_CTX_HW_S[SQ_INT] + - net: tun: Fix memory leaks of napi_get_frags + - bnxt_en: Fix possible crash in bnxt_hwrm_set_coal() + - bnxt_en: fix potentially incorrect return value for ndo_rx_flow_steer + - net: fman: Unregister ethernet device on removal + - capabilities: fix undefined behavior in bit shift for CAP_TO_MASK + - phy: ralink: mt7621-pci: add sentinel to quirks table + - KVM: s390: pv: don't allow userspace to set the clock under PV + - net: lapbether: fix issue of dev reference count leakage in + lapbeth_device_event() + - hamradio: fix issue of dev reference count leakage in bpq_device_event() + - net: wwan: iosm: fix memory leak in ipc_wwan_dellink + - net: wwan: mhi: fix memory leak in mhi_mbim_dellink + - drm/vc4: Fix missing platform_unregister_drivers() call in + vc4_drm_register() + - tcp: prohibit TCP_REPAIR_OPTIONS if data was already sent + - ipv6: addrlabel: fix infoleak when sending struct ifaddrlblmsg to network + - can: af_can: fix NULL pointer dereference in can_rx_register() + - net: stmmac: dwmac-meson8b: fix meson8b_devm_clk_prepare_enable() + - net: broadcom: Fix BCMGENET Kconfig + - tipc: fix the msg->req tlv len check in + tipc_nl_compat_name_table_dump_header + - dmaengine: pxa_dma: use platform_get_irq_optional + - dmaengine: mv_xor_v2: Fix a resource leak in mv_xor_v2_remove() + - dmaengine: ti: k3-udma-glue: fix memory leak when register device fail + - net: lapbether: fix issue of invalid opcode in lapbeth_open() + - drivers: net: xgene: disable napi when register irq failed in + xgene_enet_open() + - perf stat: Fix printing os->prefix in CSV metrics output + - perf tools: Add the include/perf/ directory to .gitignore + - netfilter: nfnetlink: fix potential dead lock in nfnetlink_rcv_msg() + - netfilter: Cleanup nft_net->module_list from nf_tables_exit_net() + - net: marvell: prestera: fix memory leak in prestera_rxtx_switch_init() + - net: nixge: disable napi when enable interrupts failed in nixge_open() + - net: wwan: iosm: fix memory leak in ipc_pcie_read_bios_cfg + - net/mlx5: Bridge, verify LAG state when adding bond to bridge + - net/mlx5: Allow async trigger completion execution on single CPU systems + - net/mlx5e: E-Switch, Fix comparing termination table instance + - net: cpsw: disable napi in cpsw_ndo_open() + - net: cxgb3_main: disable napi when bind qsets failed in cxgb_up() + - stmmac: intel: Enable 2.5Gbps for Intel AlderLake-S + - stmmac: intel: Update PCH PTP clock rate from 200MHz to 204.8MHz + - mctp: Fix an error handling path in mctp_init() + - cxgb4vf: shut down the adapter when t4vf_update_port_info() failed in + cxgb4vf_open() + - stmmac: dwmac-loongson: fix missing pci_disable_msi() while module exiting + - stmmac: dwmac-loongson: fix missing pci_disable_device() in + loongson_dwmac_probe() + - stmmac: dwmac-loongson: fix missing of_node_put() while module exiting + - net: phy: mscc: macsec: clear encryption keys when freeing a flow + - net: atlantic: macsec: clear encryption keys from the stack + - ethernet: s2io: disable napi when start nic failed in s2io_card_up() + - net: mv643xx_eth: disable napi when init rxq or txq failed in + mv643xx_eth_open() + - ethernet: tundra: free irq when alloc ring failed in tsi108_open() + - net: macvlan: fix memory leaks of macvlan_common_newlink + - riscv: process: fix kernel info leakage + - riscv: vdso: fix build with llvm + - riscv: fix reserved memory setup + - arm64: efi: Fix handling of misaligned runtime regions and drop warning + - MIPS: jump_label: Fix compat branch range check + - mmc: cqhci: Provide helper for resetting both SDHCI and CQHCI + - mmc: sdhci-of-arasan: Fix SDHCI_RESET_ALL for CQHCI + - mmc: sdhci_am654: Fix SDHCI_RESET_ALL for CQHCI + - mmc: sdhci-tegra: Fix SDHCI_RESET_ALL for CQHCI + - mmc: sdhci-esdhc-imx: use the correct host caps for MMC_CAP_8_BIT_DATA + - ALSA: hda/hdmi - enable runtime pm for more AMD display audio + - ALSA: hda/ca0132: add quirk for EVGA Z390 DARK + - ALSA: hda: fix potential memleak in 'add_widget_node' + - ALSA: hda/realtek: Add Positivo C6300 model quirk + - ALSA: usb-audio: Yet more regression for for the delayed card registration + - ALSA: usb-audio: Add quirk entry for M-Audio Micro + - ALSA: usb-audio: Add DSD support for Accuphase DAC-60 + - vmlinux.lds.h: Fix placement of '.data..decrypted' section + - ata: libata-scsi: fix SYNCHRONIZE CACHE (16) command failure + - nilfs2: fix deadlock in nilfs_count_free_blocks() + - nilfs2: fix use-after-free bug of ns_writer on remount + - drm/i915/dmabuf: fix sg_table handling in map_dma_buf + - drm/amdgpu: disable BACO on special BEIGE_GOBY card + - btrfs: fix match incorrectly in dev_args_match_device + - btrfs: selftests: fix wrong error check in btrfs_free_dummy_root() + - btrfs: zoned: initialize device's zone info for seeding + - mms: sdhci-esdhc-imx: Fix SDHCI_RESET_ALL for CQHCI + - udf: Fix a slab-out-of-bounds write bug in udf_find_entry() + - mm/damon/dbgfs: check if rm_contexts input is for a real context + - mm/memremap.c: map FS_DAX device memory as decrypted + - mm/shmem: use page_mapping() to detect page cache for uffd continue + - can: j1939: j1939_send_one(): fix missing CAN header initialization + - cert host tools: Stop complaining about deprecated OpenSSL functions + - dmaengine: at_hdmac: Fix at_lli struct definition + - dmaengine: at_hdmac: Don't start transactions at tx_submit level + - dmaengine: at_hdmac: Start transfer for cyclic channels in issue_pending + - dmaengine: at_hdmac: Fix premature completion of desc in issue_pending + - dmaengine: at_hdmac: Do not call the complete callback on + device_terminate_all + - dmaengine: at_hdmac: Protect atchan->status with the channel lock + - dmaengine: at_hdmac: Fix concurrency problems by removing atc_complete_all() + - dmaengine: at_hdmac: Fix concurrency over descriptor + - dmaengine: at_hdmac: Free the memset buf without holding the chan lock + - dmaengine: at_hdmac: Fix concurrency over the active list + - dmaengine: at_hdmac: Fix descriptor handling when issuing it to hardware + - dmaengine: at_hdmac: Fix completion of unissued descriptor in case of errors + - dmaengine: at_hdmac: Don't allow CPU to reorder channel enable + - dmaengine: at_hdmac: Fix impossible condition + - dmaengine: at_hdmac: Check return code of dma_async_device_register + - marvell: octeontx2: build error: unknown type name 'u64' + - drm/amdkfd: Migrate in CPU page fault use current mm + - net: tun: call napi_schedule_prep() to ensure we own a napi + - x86/cpu: Restore AMD's DE_CFG MSR after resume + - Linux 5.15.79 + * CVE-2022-47520 + - wifi: wilc1000: validate pairwise and authentication suite offsets + * CVE-2022-3545 + - nfp: fix use-after-free in area_cache_get() + + -- Tim Gardner Sat, 11 Feb 2023 09:41:39 -0700 + +linux-azure-5.15 (5.15.0-1033.40~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1033.40~20.04.1 -proposed tracker + (LP: #2003489) + + [ Ubuntu: 5.15.0-1033.40 ] + + * jammy/linux-azure: 5.15.0-1033.40 -proposed tracker (LP: #2003426) + * jammy/linux: 5.15.0-60.66 -proposed tracker (LP: #2003450) + * Revoke & rotate to new signing key (LP: #2002812) + - [Packaging] Revoke and rotate to new signing key + + -- Stefan Bader Tue, 24 Jan 2023 16:43:57 +0100 + +linux-azure-5.15 (5.15.0-1032.39~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1032.39~20.04.1 -proposed tracker + (LP: #2001762) + + [ Ubuntu: 5.15.0-1032.39 ] + + * jammy/linux-azure: 5.15.0-1032.39 -proposed tracker (LP: #2001763) + * Jammy update: v5.15.75 upstream stable release (LP: #1996825) // Jammy + update: v5.15.76 upstream stable release (LP: #1997113) + - [Config] azure: Update after rebase + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2023.01.02) + * Azure: Jammy fio test hangs, swiotlb buffers exhausted (LP: #1998838) + - Revert "UBUNTU: SAUCE: scsi: storvsc: Fix swiotlb bounce buffer leak in + confidential VM" + - scsi: storvsc: Fix swiotlb bounce buffer leak in confidential VM + * jammy/linux: 5.15.0-59.65 -proposed tracker (LP: #2001801) + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + * CVE-2022-47940 + - ksmbd: validate length in smb2_write() + * Fix iosm: WWAN cannot build the connection (DW5823e) (LP: #1998115) + - net: wwan: iosm: fix driver not working with INTEL_IOMMU disabled + - [Config] CONFIG_IOSM update annotations on arm64 armhf ppc64el s390x + * support for same series backports versioning numbers (LP: #1993563) + - [Packaging] sameport -- add support for sameport versioning + * [DEP-8] Run ADT regression suite for lowlatency kernels Jammy and later + (LP: #1999528) + - [DEP-8] Fix regression suite to run on lowlatency + * Micron NVME storage failure [1344,5407] (LP: #1998883) + - nvme: add a bogus subsystem NQN quirk for Micron MTFDKBA2T0TFH + * Jammy update: v5.15.78 upstream stable release (LP: #1998843) + - scsi: lpfc: Rework MIB Rx Monitor debug info logic + - serial: ar933x: Deassert Transmit Enable on ->rs485_config() + - KVM: x86: Trace re-injected exceptions + - KVM: x86: Treat #DBs from the emulator as fault-like (code and DR7.GD=1) + - drm/amd/display: explicitly disable psr_feature_enable appropriately + - mm/hugetlb: fix races when looking up a CONT-PTE/PMD size hugetlb page + - HID: playstation: add initial DualSense Edge controller support + - KVM: x86: Protect the unused bits in MSR exiting flags + - KVM: x86: Copy filter arg outside kvm_vm_ioctl_set_msr_filter() + - KVM: x86: Add compat handler for KVM_X86_SET_MSR_FILTER + - RDMA/cma: Use output interface for net_dev check + - IB/hfi1: Correctly move list in sc_disable() + - RDMA/hns: Remove magic number + - RDMA/hns: Use hr_reg_xxx() instead of remaining roce_set_xxx() + - RDMA/hns: Disable local invalidate operation + - NFSv4: Fix a potential state reclaim deadlock + - NFSv4.1: Handle RECLAIM_COMPLETE trunking errors + - NFSv4.1: We must always send RECLAIM_COMPLETE after a reboot + - SUNRPC: Fix null-ptr-deref when xps sysfs alloc failed + - NFSv4.2: Fixup CLONE dest file size for zero-length count + - nfs4: Fix kmemleak when allocate slot failed + - net: dsa: Fix possible memory leaks in dsa_loop_init() + - RDMA/core: Fix null-ptr-deref in ib_core_cleanup() + - RDMA/qedr: clean up work queue on failure in qedr_alloc_resources() + - net: dsa: fall back to default tagger if we can't load the one from DT + - nfc: fdp: Fix potential memory leak in fdp_nci_send() + - nfc: nxp-nci: Fix potential memory leak in nxp_nci_send() + - nfc: s3fwrn5: Fix potential memory leak in s3fwrn5_nci_send() + - nfc: nfcmrvl: Fix potential memory leak in nfcmrvl_i2c_nci_send() + - net: fec: fix improper use of NETDEV_TX_BUSY + - ata: pata_legacy: fix pdc20230_set_piomode() + - net: sched: Fix use after free in red_enqueue() + - net: tun: fix bugs for oversize packet when napi frags enabled + - netfilter: nf_tables: netlink notifier might race to release objects + - netfilter: nf_tables: release flow rule object from commit path + - ipvs: use explicitly signed chars + - ipvs: fix WARNING in __ip_vs_cleanup_batch() + - ipvs: fix WARNING in ip_vs_app_net_cleanup() + - rose: Fix NULL pointer dereference in rose_send_frame() + - mISDN: fix possible memory leak in mISDN_register_device() + - isdn: mISDN: netjet: fix wrong check of device registration + - btrfs: fix inode list leak during backref walking at resolve_indirect_refs() + - btrfs: fix inode list leak during backref walking at find_parent_nodes() + - btrfs: fix ulist leaks in error paths of qgroup self tests + - netfilter: ipset: enforce documented limit to prevent allocating huge memory + - Bluetooth: virtio_bt: Use skb_put to set length + - Bluetooth: L2CAP: fix use-after-free in l2cap_conn_del() + - Bluetooth: L2CAP: Fix memory leak in vhci_write + - net: mdio: fix undefined behavior in bit shift for __mdiobus_register + - ibmvnic: Free rwi on reset success + - stmmac: dwmac-loongson: fix invalid mdio_node + - net/smc: Fix possible leaked pernet namespace in smc_init() + - net, neigh: Fix null-ptr-deref in neigh_table_clear() + - ipv6: fix WARNING in ip6_route_net_exit_late() + - vsock: fix possible infinite sleep in vsock_connectible_wait_data() + - drm/msm/hdmi: Remove spurious IRQF_ONESHOT flag + - drm/msm/hdmi: fix IRQ lifetime + - video/fbdev/stifb: Implement the stifb_fillrect() function + - fbdev: stifb: Fall back to cfb_fillrect() on 32-bit HCRX cards + - mtd: parsers: bcm47xxpart: print correct offset on read error + - mtd: parsers: bcm47xxpart: Fix halfblock reads + - s390/uaccess: add missing EX_TABLE entries to __clear_user() + - s390/cio: fix out-of-bounds access on cio_ignore free + - media: rkisp1: Don't pass the quantization to rkisp1_csm_config() + - media: rkisp1: Initialize color space on resizer sink and source pads + - media: rkisp1: Use correct macro for gradient registers + - media: rkisp1: Zero v4l2_subdev_format fields in when validating links + - media: s5p_cec: limit msg.len to CEC_MAX_MSG_SIZE + - media: cros-ec-cec: limit msg.len to CEC_MAX_MSG_SIZE + - media: dvb-frontends/drxk: initialize err to 0 + - media: meson: vdec: fix possible refcount leak in vdec_probe() + - media: v4l: subdev: Fail graciously when getting try data for NULL state + - ACPI: APEI: Fix integer overflow in ghes_estatus_pool_init() + - scsi: core: Restrict legal sdev_state transitions via sysfs + - HID: saitek: add madcatz variant of MMO7 mouse device ID + - drm/amdgpu: set vm_update_mode=0 as default for Sienna Cichlid in SRIOV case + - i2c: xiic: Add platform module alias + - efi/tpm: Pass correct address to memblock_reserve + - clk: qcom: Update the force mem core bit for GPU clocks + - ARM: dts: imx6qdl-gw59{10,13}: fix user pushbutton GPIO offset + - arm64: dts: imx8: correct clock order + - arm64: dts: lx2160a: specify clock frequencies for the MDIO controllers + - arm64: dts: ls1088a: specify clock frequencies for the MDIO controllers + - arm64: dts: ls208xa: specify clock frequencies for the MDIO controllers + - block: Fix possible memory leak for rq_wb on add_disk failure + - firmware: arm_scmi: Suppress the driver's bind attributes + - firmware: arm_scmi: Make Rx chan_setup fail on memory errors + - firmware: arm_scmi: Fix devres allocation device in virtio transport + - arm64: dts: juno: Add thermal critical trip points + - i2c: piix4: Fix adapter not be removed in piix4_remove() + - Bluetooth: L2CAP: Fix attempting to access uninitialized memory + - block, bfq: protect 'bfqd->queued' by 'bfqd->lock' + - af_unix: Fix memory leaks of the whole sk due to OOB skb. + - fscrypt: stop using keyrings subsystem for fscrypt_master_key + - fscrypt: fix keyring memory leak on mount failure + - btrfs: fix lost file sync on direct IO write with nowait and dsync iocb + - btrfs: fix tree mod log mishandling of reallocated nodes + - btrfs: fix type of parameter generation in btrfs_get_dentry + - ftrace: Fix use-after-free for dynamic ftrace_ops + - tcp/udp: Make early_demux back namespacified. + - tracing: kprobe: Fix memory leak in test_gen_kprobe/kretprobe_cmd() + - kprobe: reverse kp->flags when arm_kprobe failed + - ring-buffer: Check for NULL cpu_buffer in ring_buffer_wake_waiters() + - tools/nolibc/string: Fix memcmp() implementation + - tracing/histogram: Update document for KEYS_MAX size + - capabilities: fix potential memleak on error path from vfs_getxattr_alloc() + - fuse: add file_modified() to fallocate + - efi: random: reduce seed size to 32 bytes + - efi: random: Use 'ACPI reclaim' memory for random seed + - arm64: entry: avoid kprobe recursion + - perf/x86/intel: Fix pebs event constraints for ICL + - perf/x86/intel: Add Cooper Lake stepping to isolation_ucodes[] + - perf/x86/intel: Fix pebs event constraints for SPR + - parisc: Make 8250_gsc driver dependend on CONFIG_PARISC + - parisc: Export iosapic_serial_irq() symbol for serial port driver + - parisc: Avoid printing the hardware path twice + - ext4: fix warning in 'ext4_da_release_space' + - ext4: fix BUG_ON() when directory entry has invalid rec_len + - x86/syscall: Include asm/ptrace.h in syscall_wrapper header + - KVM: x86: Mask off reserved bits in CPUID.80000006H + - KVM: x86: Mask off reserved bits in CPUID.8000001AH + - KVM: x86: Mask off reserved bits in CPUID.80000008H + - KVM: x86: Mask off reserved bits in CPUID.80000001H + - KVM: x86: Mask off reserved bits in CPUID.8000001FH + - KVM: VMX: fully disable SGX if SECONDARY_EXEC_ENCLS_EXITING unavailable + - KVM: arm64: Fix bad dereference on MTE-enabled systems + - KVM: x86: emulator: em_sysexit should update ctxt->mode + - KVM: x86: emulator: introduce emulator_recalc_and_set_mode + - KVM: x86: emulator: update the emulation mode after rsm + - KVM: x86: emulator: update the emulation mode after CR0 write + - tee: Fix tee_shm_register() for kernel TEE drivers + - ext4,f2fs: fix readahead of verity data + - cifs: fix regression in very old smb1 mounts + - drm/rockchip: dsi: Clean up 'usage_mode' when failing to attach + - drm/rockchip: dsi: Force synchronous probe + - drm/i915/sdvo: Filter out invalid outputs more sensibly + - drm/i915/sdvo: Setup DDC fully before output init + - wifi: brcmfmac: Fix potential buffer overflow in brcmf_fweh_event_worker() + - Linux 5.15.78 + * Fix AMD-PState driver for Genoa CPU (LP: #1998106) + - Documentation: amd-pstate: add tracer tool introduction + - Documentation: amd-pstate: grammar and sentence structure updates + - Documentation: amd-pstate: Add unit test introduction + - cpufreq: amd-pstate: cpufreq: amd-pstate: reset MSR_AMD_PERF_CTL register at + init + - cpufreq: amd-pstate: change amd-pstate driver to be built-in type + - cpufreq: amd-pstate: add amd-pstate driver parameter for mode selection + - Documentation: amd-pstate: add driver working mode introduction + - Documentation: add amd-pstate kernel command line options + * Mediatek WLAN RZ616(MT7922) SAR table control (LP: #1997200) + - mt76: mt7921: add .set_sar_specs support + - mt76: add 6 GHz band support in mt76_sar_freq_ranges + - mt76: mt7921: introduce ACPI SAR support + - mt76: connac: add support for limiting to maximum regulatory Tx power + - mt76: move sar utilities to mt76-core module + - mt76: mt7921: honor mt76_connac_mcu_set_rate_txpower return value in + mt7921_config + - mt76: mt7921: introduce ACPI SAR config in tx power + - wifi: mt76: mt7921: fix use after free in mt7921_acpi_read() + * [22.04/Jammy] Replace SAUCE AMD DP tunneling patch by upstream version + (LP: #1989944) + - Revert "UBUNTU: SAUCE: thunderbolt: Add DP out resource when DP tunnel is + discovered." + - thunderbolt: Add DP OUT resource when DP tunnel is discovered + * Jammy update: v5.15.77 upstream stable release (LP: #1997981) + - NFSv4: Fix free of uninitialized nfs4_label on referral lookup. + - NFSv4: Add an fattr allocation to _nfs4_discover_trunking() + - can: j1939: transport: j1939_session_skb_drop_old(): + spin_unlock_irqrestore() before kfree_skb() + - can: kvaser_usb: Fix possible completions during init_completion + - ALSA: Use del_timer_sync() before freeing timer + - ALSA: usb-audio: Add quirks for M-Audio Fast Track C400/600 + - ALSA: au88x0: use explicitly signed char + - ALSA: rme9652: use explicitly signed char + - USB: add RESET_RESUME quirk for NVIDIA Jetson devices in RCM + - usb: gadget: uvc: fix sg handling in error case + - usb: gadget: uvc: fix sg handling during video encode + - usb: dwc3: gadget: Stop processing more requests on IMI + - usb: dwc3: gadget: Don't set IMI for no_interrupt + - usb: bdc: change state when port disconnected + - usb: xhci: add XHCI_SPURIOUS_SUCCESS to ASM1042 despite being a V0.96 + controller + - mtd: rawnand: marvell: Use correct logic for nand-keep-config + - xhci: Add quirk to reset host back to default state at shutdown + - xhci-pci: Set runtime PM as default policy on all xHC 1.2 or later devices + - xhci: Remove device endpoints from bandwidth list when freeing the device + - tools: iio: iio_utils: fix digit calculation + - iio: light: tsl2583: Fix module unloading + - iio: temperature: ltc2983: allocate iio channels once + - iio: adxl372: Fix unsafe buffer attributes + - fbdev: smscufx: Fix several use-after-free bugs + - cpufreq: intel_pstate: Read all MSRs on the target CPU + - cpufreq: intel_pstate: hybrid: Use known scaling factor for P-cores + - fs/binfmt_elf: Fix memory leak in load_elf_binary() + - exec: Copy oldsighand->action under spin-lock + - mac802154: Fix LQI recording + - scsi: qla2xxx: Use transport-defined speed mask for supported_speeds + - drm/amdgpu: disallow gfxoff until GC IP blocks complete s2idle resume + - drm/msm/dsi: fix memory corruption with too many bridges + - drm/msm/hdmi: fix memory corruption with too many bridges + - drm/msm/dp: fix IRQ lifetime + - coresight: cti: Fix hang in cti_disable_hw() + - mmc: sdhci_am654: 'select', not 'depends' REGMAP_MMIO + - mmc: core: Fix kernel panic when remove non-standard SDIO card + - mmc: sdhci-pci-core: Disable ES for ASUS BIOS on Jasper Lake + - mmc: sdhci-esdhc-imx: Propagate ESDHC_FLAG_HS400* only on 8bit bus + - counter: microchip-tcb-capture: Handle Signal1 read and Synapse + - kernfs: fix use-after-free in __kernfs_remove + - pinctrl: Ingenic: JZ4755 bug fixes + - ARC: mm: fix leakage of memory allocated for PTE + - perf auxtrace: Fix address filter symbol name match for modules + - s390/futex: add missing EX_TABLE entry to __futex_atomic_op() + - s390/pci: add missing EX_TABLE entries to + __pcistg_mio_inuser()/__pcilg_mio_inuser() + - Revert "scsi: lpfc: Resolve some cleanup issues following SLI path + refactoring" + - Revert "scsi: lpfc: Fix element offset in __lpfc_sli_release_iocbq_s4()" + - Revert "scsi: lpfc: Fix locking for lpfc_sli_iocbq_lookup()" + - Revert "scsi: lpfc: SLI path split: Refactor SCSI paths" + - Revert "scsi: lpfc: SLI path split: Refactor fast and slow paths to native + SLI4" + - Revert "scsi: lpfc: SLI path split: Refactor lpfc_iocbq" + - mmc: block: Remove error check of hw_reset on reset + - ethtool: eeprom: fix null-deref on genl_info in dump + - net: ieee802154: fix error return code in dgram_bind() + - media: v4l2: Fix v4l2_i2c_subdev_set_name function documentation + - media: atomisp: prevent integer overflow in sh_css_set_black_frame() + - drm/msm: Fix return type of mdp4_lvds_connector_mode_valid + - KVM: selftests: Fix number of pages for memory slot in + memslot_modification_stress_test + - ASoC: qcom: lpass-cpu: mark HDMI TX registers as volatile + - perf: Fix missing SIGTRAPs + - sched/core: Fix comparison in sched_group_cookie_match() + - arc: iounmap() arg is volatile + - mtd: rawnand: intel: Add missing of_node_put() in ebu_nand_probe() + - ASoC: qcom: lpass-cpu: Mark HDMI TX parity register as volatile + - ALSA: ac97: fix possible memory leak in snd_ac97_dev_register() + - perf/x86/intel/lbr: Use setup_clear_cpu_cap() instead of clear_cpu_cap() + - tipc: fix a null-ptr-deref in tipc_topsrv_accept + - net: netsec: fix error handling in netsec_register_mdio() + - net: hinic: fix incorrect assignment issue in hinic_set_interrupt_cfg() + - net: hinic: fix memory leak when reading function table + - net: hinic: fix the issue of CMDQ memory leaks + - net: hinic: fix the issue of double release MBOX callback of VF + - net: macb: Specify PHY PM management done by MAC + - nfc: virtual_ncidev: Fix memory leak in virtual_nci_send() + - x86/unwind/orc: Fix unreliable stack dump with gcov + - amd-xgbe: fix the SFP compliance codes check for DAC cables + - amd-xgbe: add the bit rate quirk for Molex cables + - drm/i915/dp: Reset frl trained flag before restarting FRL training + - atlantic: fix deadlock at aq_nic_stop + - kcm: annotate data-races around kcm->rx_psock + - kcm: annotate data-races around kcm->rx_wait + - net: fix UAF issue in nfqnl_nf_hook_drop() when ops_init() failed + - net: lantiq_etop: don't free skb when returning NETDEV_TX_BUSY + - tcp: minor optimization in tcp_add_backlog() + - tcp: fix a signed-integer-overflow bug in tcp_add_backlog() + - tcp: fix indefinite deferral of RTO with SACK reneging + - net-memcg: avoid stalls when under memory pressure + - drm/amdkfd: Fix memory leak in kfd_mem_dmamap_userptr() + - can: mscan: mpc5xxx: mpc5xxx_can_probe(): add missing put_clock() in error + path + - can: mcp251x: mcp251x_can_probe(): add missing unregister_candev() in error + path + - PM: hibernate: Allow hybrid sleep to work with s2idle + - media: vivid: s_fbuf: add more sanity checks + - media: vivid: dev->bitmap_cap wasn't freed in all cases + - media: v4l2-dv-timings: add sanity checks for blanking values + - media: videodev2.h: V4L2_DV_BT_BLANKING_HEIGHT should check 'interlaced' + - media: vivid: set num_in/outputs to 0 if not supported + - perf vendor events power10: Fix hv-24x7 metric events + - ipv6: ensure sane device mtu in tunnels + - i40e: Fix ethtool rx-flow-hash setting for X722 + - i40e: Fix VF hang when reset is triggered on another VF + - i40e: Fix flow-type by setting GL_HASH_INSET registers + - net: ksz884x: fix missing pci_disable_device() on error in pcidev_init() + - PM: domains: Fix handling of unavailable/disabled idle states + - perf vendor events arm64: Fix incorrect Hisi hip08 L3 metrics + - net: fec: limit register access on i.MX6UL + - net: ethernet: ave: Fix MAC to be in charge of PHY PM + - ALSA: aoa: i2sbus: fix possible memory leak in i2sbus_add_dev() + - ALSA: aoa: Fix I2S device accounting + - openvswitch: switch from WARN to pr_warn + - net: ehea: fix possible memory leak in ehea_register_port() + - net: bcmsysport: Indicate MAC is in charge of PHY PM + - nh: fix scope used to find saddr when adding non gw nh + - net: broadcom: bcm4908enet: remove redundant variable bytes + - net: broadcom: bcm4908_enet: update TX stats after actual transmission + - netdevsim: remove dir in nsim_dev_debugfs_init() when creating ports dir + failed + - net/mlx5e: Do not increment ESN when updating IPsec ESN state + - net/mlx5e: Extend SKB room check to include PTP-SQ + - net/mlx5: Fix possible use-after-free in async command interface + - net/mlx5: Print more info on pci error handlers + - net/mlx5: Update fw fatal reporter state on PCI handlers successful recover + - net/mlx5: Fix crash during sync firmware reset + - net: do not sense pfmemalloc status in skb_append_pagefrags() + - kcm: do not sense pfmemalloc status in kcm_sendpage() + - net: enetc: survive memory pressure without crashing + - arm64: Add AMPERE1 to the Spectre-BHB affected list + - scsi: sd: Revert "scsi: sd: Remove a local variable" + - can: rcar_canfd: fix channel specific IRQ handling for RZ/G2L + - can: rcar_canfd: rcar_canfd_handle_global_receive(): fix IRQ storm on global + FIFO receive + - serial: core: move RS485 configuration tasks from drivers into core + - serial: Deassert Transmit Enable on probe in driver-specific way + - Linux 5.15.77 + * RCU stalls (LP: #1991951) + - [Config] Harmonize RCU_CPU_STALL_TIMEOUT + * Jammy update: v5.15.76 upstream stable release (LP: #1997113) + - r8152: add PID for the Lenovo OneLink+ Dock + - arm64/mm: Consolidate TCR_EL1 fields + - usb: gadget: uvc: consistently use define for headerlen + - usb: gadget: uvc: use on returned header len in video_encode_isoc_sg + - usb: gadget: uvc: rework uvcg_queue_next_buffer to uvcg_complete_buffer + - usb: gadget: uvc: giveback vb2 buffer on req complete + - usb: gadget: uvc: improve sg exit condition + - [Config] updateconfigs for ARM64_ERRATUM_1742098 + - arm64: errata: Remove AES hwcap for COMPAT tasks + - perf/x86/intel/pt: Relax address filter validation + - btrfs: enhance unsupported compat RO flags handling + - ocfs2: clear dinode links count in case of error + - ocfs2: fix BUG when iput after ocfs2_mknod fails + - selinux: enable use of both GFP_KERNEL and GFP_ATOMIC in convert_context() + - cpufreq: qcom: fix writes in read-only memory region + - i2c: qcom-cci: Fix ordering of pm_runtime_xx and i2c_add_adapter + - x86/microcode/AMD: Apply the patch early on every logical thread + - hwmon/coretemp: Handle large core ID value + - ata: ahci-imx: Fix MODULE_ALIAS + - x86/resctrl: Fix min_cbm_bits for AMD + - cpufreq: qcom: fix memory leak in error path + - drm/amdgpu: fix sdma doorbell init ordering on APUs + - mm,hugetlb: take hugetlb_lock before decrementing h->resv_huge_pages + - kvm: Add support for arch compat vm ioctls + - KVM: arm64: vgic: Fix exit condition in scan_its_table() + - media: ipu3-imgu: Fix NULL pointer dereference in active selection access + - media: mceusb: set timeout to at least timeout provided + - media: venus: dec: Handle the case where find_format fails + - x86/topology: Fix multiple packages shown on a single-package system + - x86/topology: Fix duplicated core ID within a package + - btrfs: fix processing of delayed data refs during backref walking + - btrfs: fix processing of delayed tree block refs during backref walking + - drm/vc4: Add module dependency on hdmi-codec + - ACPI: extlog: Handle multiple records + - tipc: Fix recognition of trial period + - tipc: fix an information leak in tipc_topsrv_kern_subscr + - i40e: Fix DMA mappings leak + - HID: magicmouse: Do not set BTN_MOUSE on double report + - sfc: Change VF mac via PF as first preference if available. + - net/atm: fix proc_mpc_write incorrect return value + - net: phy: dp83867: Extend RX strap quirk for SGMII mode + - net: phylink: add mac_managed_pm in phylink_config structure + - scsi: lpfc: Fix memory leak in lpfc_create_port() + - udp: Update reuse->has_conns under reuseport_lock. + - cifs: Fix xid leak in cifs_create() + - cifs: Fix xid leak in cifs_copy_file_range() + - cifs: Fix xid leak in cifs_flock() + - cifs: Fix xid leak in cifs_ses_add_channel() + - dm: remove unnecessary assignment statement in alloc_dev() + - net: hsr: avoid possible NULL deref in skb_clone() + - ionic: catch NULL pointer issue on reconfig + - netfilter: nf_tables: relax NFTA_SET_ELEM_KEY_END set flags requirements + - nvme-hwmon: consistently ignore errors from nvme_hwmon_init + - nvme-hwmon: kmalloc the NVME SMART log buffer + - nvmet: fix workqueue MEM_RECLAIM flushing dependency + - net: sched: cake: fix null pointer access issue when cake_init() fails + - net: sched: delete duplicate cleanup of backlog and qlen + - net: sched: sfb: fix null pointer access issue when sfb_init() fails + - sfc: include vport_id in filter spec hash and equal() + - wwan_hwsim: fix possible memory leak in wwan_hwsim_dev_new() + - net: hns: fix possible memory leak in hnae_ae_register() + - net: sched: fix race condition in qdisc_graft() + - net: phy: dp83822: disable MDI crossover status change interrupt + - iommu/vt-d: Allow NVS regions in arch_rmrr_sanity_check() + - iommu/vt-d: Clean up si_domain in the init_dmars() error path + - fs: dlm: fix invalid derefence of sb_lvbptr + - arm64: mte: move register initialization to C + - ksmbd: handle smb2 query dir request for OutputBufferLength that is too + small + - ksmbd: fix incorrect handling of iterate_dir + - tracing: Simplify conditional compilation code in tracing_set_tracer() + - tracing: Do not free snapshot if tracer is on cmdline + - mmc: sdhci-tegra: Use actual clock rate for SW tuning correction + - perf: Skip and warn on unknown format 'configN' attrs + - ACPI: video: Force backlight native for more TongFang devices + - x86/Kconfig: Drop check for -mabi=ms for CONFIG_EFI_STUB + - Makefile.debug: re-enable debug info for .S files + - mmc: core: Add SD card quirk for broken discard + - mm: /proc/pid/smaps_rollup: fix no vma's null-deref + - Linux 5.15.76 + * UBSAN: array-index-out-of-bounds in + /build/linux-9H675w/linux-5.15.0/drivers/ata/libahci.c:968:41 + (LP: #1970074) // Jammy update: v5.15.76 upstream stable release + (LP: #1997113) + - ata: ahci: Match EM_MAX_SLOTS with SATA_PMP_MAX_PORTS + * Jammy update: v5.15.75 upstream stable release (LP: #1996825) + - Revert "fs: check FMODE_LSEEK to control internal pipe splicing" + - ALSA: oss: Fix potential deadlock at unregistration + - ALSA: rawmidi: Drop register_mutex in snd_rawmidi_free() + - ALSA: usb-audio: Fix potential memory leaks + - ALSA: usb-audio: Fix NULL dererence at error path + - ALSA: hda/realtek: remove ALC289_FIXUP_DUAL_SPK for Dell 5530 + - ALSA: hda/realtek: Correct pin configs for ASUS G533Z + - ALSA: hda/realtek: Add quirk for ASUS GV601R laptop + - ALSA: hda/realtek: Add Intel Reference SSID to support headset keys + - mtd: rawnand: atmel: Unmap streaming DMA mappings + - io_uring/net: don't update msg_name if not provided + - hv_netvsc: Fix race between VF offering and VF association message from host + - cifs: destage dirty pages before re-reading them for cache=none + - cifs: Fix the error length of VALIDATE_NEGOTIATE_INFO message + - iio: dac: ad5593r: Fix i2c read protocol requirements + - iio: ltc2497: Fix reading conversion results + - iio: adc: ad7923: fix channel readings for some variants + - iio: pressure: dps310: Refactor startup procedure + - iio: pressure: dps310: Reset chip after timeout + - xhci: dbc: Fix memory leak in xhci_alloc_dbc() + - usb: add quirks for Lenovo OneLink+ Dock + - can: kvaser_usb: Fix use of uninitialized completion + - can: kvaser_usb_leaf: Fix overread with an invalid command + - can: kvaser_usb_leaf: Fix TX queue out of sync after restart + - can: kvaser_usb_leaf: Fix CAN state after restart + - mmc: sdhci-sprd: Fix minimum clock limit + - i2c: designware: Fix handling of real but unexpected device interrupts + - fs: dlm: fix race between test_bit() and queue_work() + - fs: dlm: handle -EBUSY first in lock arg validation + - HID: multitouch: Add memory barriers + - quota: Check next/prev free block number after reading from quota file + - platform/chrome: cros_ec_proto: Update version on GET_NEXT_EVENT failure + - ASoC: wcd9335: fix order of Slimbus unprepare/disable + - ASoC: wcd934x: fix order of Slimbus unprepare/disable + - hwmon: (gsc-hwmon) Call of_node_get() before of_find_xxx API + - net: thunderbolt: Enable DMA paths only after rings are enabled + - regulator: qcom_rpm: Fix circular deferral regression + - arm64: topology: move store_cpu_topology() to shared code + - riscv: topology: fix default topology reporting + - RISC-V: Make port I/O string accessors actually work + - parisc: fbdev/stifb: Align graphics memory size to 4MB + - riscv: Make VM_WRITE imply VM_READ + - riscv: always honor the CONFIG_CMDLINE_FORCE when parsing dtb + - riscv: Pass -mno-relax only on lld < 15.0.0 + - UM: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK + - nvmem: core: Fix memleak in nvmem_register() + - nvme-multipath: fix possible hang in live ns resize with ANA access + - nvme-pci: set min_align_mask before calculating max_hw_sectors + - dmaengine: mxs: use platform_driver_register + - drm/virtio: Check whether transferred 2D BO is shmem + - drm/virtio: Unlock reservations on virtio_gpu_object_shmem_init() error + - drm/virtio: Use appropriate atomic state in virtio_gpu_plane_cleanup_fb() + - drm/udl: Restore display mode on resume + - [Config] updateconfigs for ARM64_ERRATUM_2441007 + - arm64: errata: Add Cortex-A55 to the repeat tlbi list + - mm/damon: validate if the pmd entry is present before accessing + - mm/mmap: undo ->mmap() when arch_validate_flags() fails + - xen/gntdev: Prevent leaking grants + - xen/gntdev: Accommodate VMA splitting + - PCI: Sanitise firmware BAR assignments behind a PCI-PCI bridge + - serial: 8250: Let drivers request full 16550A feature probing + - serial: 8250: Request full 16550A feature probing for OxSemi PCIe devices + - powercap: intel_rapl: Use standard Energy Unit for SPR Dram RAPL domain + - powerpc/boot: Explicitly disable usage of SPE instructions + - slimbus: qcom-ngd: use correct error in message of pdr_add_lookup() failure + - slimbus: qcom-ngd: cleanup in probe error path + - scsi: qedf: Populate sysfs attributes for vport + - gpio: rockchip: request GPIO mux to pinctrl when setting direction + - pinctrl: rockchip: add pinmux_ops.gpio_set_direction callback + - fbdev: smscufx: Fix use-after-free in ufx_ops_open() + - ksmbd: fix endless loop when encryption for response fails + - ksmbd: Fix wrong return value and message length check in smb2_ioctl() + - ksmbd: Fix user namespace mapping + - fs: record I_DIRTY_TIME even if inode already has I_DIRTY_INODE + - btrfs: fix race between quota enable and quota rescan ioctl + - btrfs: set generation before calling btrfs_clean_tree_block in + btrfs_init_new_buffer + - f2fs: complete checkpoints during remount + - f2fs: flush pending checkpoints when freezing super + - f2fs: increase the limit for reserve_root + - f2fs: fix to do sanity check on destination blkaddr during recovery + - f2fs: fix to do sanity check on summary info + - hardening: Avoid harmless Clang option under CONFIG_INIT_STACK_ALL_ZERO + - hardening: Remove Clang's enable flag for -ftrivial-auto-var-init=zero + - jbd2: wake up journal waiters in FIFO order, not LIFO + - jbd2: fix potential buffer head reference count leak + - jbd2: fix potential use-after-free in jbd2_fc_wait_bufs + - jbd2: add miss release buffer head in fc_do_one_pass() + - ext4: avoid crash when inline data creation follows DIO write + - ext4: fix null-ptr-deref in ext4_write_info + - ext4: make ext4_lazyinit_thread freezable + - ext4: fix check for block being out of directory size + - ext4: don't increase iversion counter for ea_inodes + - ext4: ext4_read_bh_lock() should submit IO if the buffer isn't uptodate + - ext4: place buffer head allocation before handle start + - ext4: fix dir corruption when ext4_dx_add_entry() fails + - ext4: fix miss release buffer head in ext4_fc_write_inode + - ext4: fix potential memory leak in ext4_fc_record_modified_inode() + - ext4: fix potential memory leak in ext4_fc_record_regions() + - ext4: update 'state->fc_regions_size' after successful memory allocation + - livepatch: fix race between fork and KLP transition + - ftrace: Properly unset FTRACE_HASH_FL_MOD + - ring-buffer: Allow splice to read previous partially read pages + - ring-buffer: Have the shortest_full queue be the shortest not longest + - ring-buffer: Check pending waiters when doing wake ups as well + - ring-buffer: Add ring_buffer_wake_waiters() + - ring-buffer: Fix race between reset page and reading page + - tracing: Disable interrupt or preemption before acquiring arch_spinlock_t + - tracing: Wake up ring buffer waiters on closing of the file + - tracing: Wake up waiters when tracing is disabled + - tracing: Add ioctl() to force ring buffer waiters to wake up + - tracing: Move duplicate code of trace_kprobe/eprobe.c into header + - tracing: Add "(fault)" name injection to kernel probes + - tracing: Fix reading strings from synthetic events + - thunderbolt: Explicitly enable lane adapter hotplug events at startup + - efi: libstub: drop pointless get_memory_map() call + - media: cedrus: Set the platform driver data earlier + - media: cedrus: Fix endless loop in cedrus_h265_skip_bits() + - blk-wbt: call rq_qos_add() after wb_normal is initialized + - KVM: x86/emulator: Fix handing of POP SS to correctly set interruptibility + - KVM: nVMX: Unconditionally purge queued/injected events on nested "exit" + - KVM: nVMX: Don't propagate vmcs12's PERF_GLOBAL_CTRL settings to vmcs02 + - KVM: VMX: Drop bits 31:16 when shoving exception error code into VMCS + - staging: greybus: audio_helper: remove unused and wrong debugfs usage + - drm/nouveau/kms/nv140-: Disable interlacing + - drm/nouveau: fix a use-after-free in nouveau_gem_prime_import_sg_table() + - drm/i915: Fix watermark calculations for gen12+ RC CCS modifier + - drm/i915: Fix watermark calculations for gen12+ MC CCS modifier + - drm/i915: Fix watermark calculations for gen12+ CCS+CC modifier + - drm/amd/display: Fix vblank refcount in vrr transition + - smb3: must initialize two ACL struct fields to zero + - selinux: use "grep -E" instead of "egrep" + - ima: fix blocking of security.ima xattrs of unsupported algorithms + - userfaultfd: open userfaultfds with O_RDONLY + - ntfs3: rework xattr handlers and switch to POSIX ACL VFS helpers + - thermal: cpufreq_cooling: Check the policy first in + cpufreq_cooling_register() + - sh: machvec: Use char[] for section boundaries + - MIPS: SGI-IP27: Free some unused memory + - MIPS: SGI-IP27: Fix platform-device leak in bridge_platform_create() + - ARM: 9244/1: dump: Fix wrong pg_level in walk_pmd() + - ARM: 9247/1: mm: set readonly for MT_MEMORY_RO with ARM_LPAE + - objtool: Preserve special st_shndx indexes in elf_update_symbol + - nfsd: Fix a memory leak in an error handling path + - NFSD: Fix handling of oversized NFSv4 COMPOUND requests + - wifi: rtlwifi: 8192de: correct checking of IQK reload + - wifi: ath10k: add peer map clean up for peer delete in ath10k_sta_state() + - leds: lm3601x: Don't use mutex after it was destroyed + - bpf: Fix reference state management for synchronous callbacks + - wifi: mac80211: allow bw change during channel switch in mesh + - bpftool: Fix a wrong type cast in btf_dumper_int + - spi: mt7621: Fix an error message in mt7621_spi_probe() + - x86/resctrl: Fix to restore to original value when re-enabling hardware + prefetch register + - xsk: Fix backpressure mechanism on Tx + - bpf: Disable preemption when increasing per-cpu map_locked + - bpf: Propagate error from htab_lock_bucket() to userspace + - bpf: Use this_cpu_{inc|dec|inc_return} for bpf_task_storage_busy + - Bluetooth: btusb: mediatek: fix WMT failure during runtime suspend + - wifi: rtl8xxxu: tighten bounds checking in rtl8xxxu_read_efuse() + - wifi: rtw88: add missing destroy_workqueue() on error path in + rtw_core_init() + - selftests/xsk: Avoid use-after-free on ctx + - spi: qup: add missing clk_disable_unprepare on error in spi_qup_resume() + - spi: qup: add missing clk_disable_unprepare on error in + spi_qup_pm_resume_runtime() + - wifi: rtl8xxxu: Fix skb misuse in TX queue selection + - spi: meson-spicc: do not rely on busy flag in pow2 clk ops + - bpf: btf: fix truncated last_member_type_id in btf_struct_resolve + - wifi: rtl8xxxu: gen2: Fix mistake in path B IQ calibration + - wifi: rtl8xxxu: Remove copy-paste leftover in gen2_update_rate_mask + - wifi: mt76: sdio: fix transmitting packet hangs + - wifi: mt76: mt7615: add mt7615_mutex_acquire/release in + mt7615_sta_set_decap_offload + - wifi: mt76: mt7915: do not check state before configuring implicit beamform + - Bluetooth: RFCOMM: Fix possible deadlock on socket shutdown/release + - net: fs_enet: Fix wrong check in do_pd_setup + - bpf: Ensure correct locking around vulnerable function find_vpid() + - Bluetooth: hci_{ldisc,serdev}: check percpu_init_rwsem() failure + - netfilter: conntrack: fix the gc rescheduling delay + - netfilter: conntrack: revisit the gc initial rescheduling bias + - wifi: ath11k: fix number of VHT beamformee spatial streams + - x86/microcode/AMD: Track patch allocation size explicitly + - x86/cpu: Include the header of init_ia32_feat_ctl()'s prototype + - spi: dw: Fix PM disable depth imbalance in dw_spi_bt1_probe + - spi/omap100k:Fix PM disable depth imbalance in omap1_spi100k_probe + - skmsg: Schedule psock work if the cached skb exists on the psock + - i2c: mlxbf: support lock mechanism + - Bluetooth: hci_core: Fix not handling link timeouts propertly + - xfrm: Reinject transport-mode packets through workqueue + - netfilter: nft_fib: Fix for rpath check with VRF devices + - spi: s3c64xx: Fix large transfers with DMA + - wifi: rtl8xxxu: Fix AIFS written to REG_EDCA_*_PARAM + - vhost/vsock: Use kvmalloc/kvfree for larger packets. + - eth: alx: take rtnl_lock on resume + - sctp: handle the error returned from sctp_auth_asoc_init_active_key + - tcp: fix tcp_cwnd_validate() to not forget is_cwnd_limited + - spi: Ensure that sg_table won't be used after being freed + - hwmon: (pmbus/mp2888) Fix sensors readouts for MPS Multi-phase mp2888 + controller + - net: rds: don't hold sock lock when cancelling work from + rds_tcp_reset_callbacks() + - bnx2x: fix potential memory leak in bnx2x_tpa_stop() + - net: wwan: iosm: Call mutex_init before locking it + - net/ieee802154: reject zero-sized raw_sendmsg() + - once: add DO_ONCE_SLOW() for sleepable contexts + - net: mvpp2: fix mvpp2 debugfs leak + - drm: bridge: adv7511: fix CEC power down control register offset + - drm: bridge: adv7511: unregister cec i2c device after cec adapter + - drm/bridge: Avoid uninitialized variable warning + - drm/mipi-dsi: Detach devices when removing the host + - drm/virtio: Correct drm_gem_shmem_get_sg_table() error handling + - drm/bridge: parade-ps8640: Fix regulator supply order + - drm/dp_mst: fix drm_dp_dpcd_read return value checks + - drm:pl111: Add of_node_put() when breaking out of + for_each_available_child_of_node() + - ASoC: mt6359: fix tests for platform_get_irq() failure + - platform/chrome: fix double-free in chromeos_laptop_prepare() + - platform/chrome: fix memory corruption in ioctl + - ASoC: tas2764: Allow mono streams + - ASoC: tas2764: Drop conflicting set_bias_level power setting + - ASoC: tas2764: Fix mute/unmute + - platform/x86: msi-laptop: Fix old-ec check for backlight registering + - platform/x86: msi-laptop: Fix resource cleanup + - platform/chrome: cros_ec_typec: Correct alt mode index + - drm/amdgpu: add missing pci_disable_device() in + amdgpu_pmops_runtime_resume() + - drm/bridge: megachips: Fix a null pointer dereference bug + - ASoC: rsnd: Add check for rsnd_mod_power_on + - ALSA: hda: beep: Simplify keep-power-at-enable behavior + - drm/bochs: fix blanking + - drm/omap: dss: Fix refcount leak bugs + - drm/amdgpu: Fix memory leak in hpd_rx_irq_create_workqueue() + - mmc: au1xmmc: Fix an error handling path in au1xmmc_probe() + - ASoC: eureka-tlv320: Hold reference returned from of_find_xxx API + - drm/msm/dpu: index dpu_kms->hw_vbif using vbif_idx + - drm/msm/dp: correct 1.62G link rate at dp_catalog_ctrl_config_msa() + - drm/vmwgfx: Fix memory leak in vmw_mksstat_add_ioctl() + - ASoC: codecs: tx-macro: fix kcontrol put + - ASoC: da7219: Fix an error handling path in da7219_register_dai_clks() + - ALSA: dmaengine: increment buffer pointer atomically + - mmc: wmt-sdmmc: Fix an error handling path in wmt_mci_probe() + - ASoC: wm8997: Fix PM disable depth imbalance in wm8997_probe + - ASoC: wm5110: Fix PM disable depth imbalance in wm5110_probe + - ASoC: wm5102: Fix PM disable depth imbalance in wm5102_probe + - ASoC: mt6660: Fix PM disable depth imbalance in mt6660_i2c_probe + - ALSA: hda/hdmi: Don't skip notification handling during PM operation + - memory: pl353-smc: Fix refcount leak bug in pl353_smc_probe() + - memory: of: Fix refcount leak bug in of_get_ddr_timings() + - memory: of: Fix refcount leak bug in of_lpddr3_get_ddr_timings() + - locks: fix TOCTOU race when granting write lease + - soc: qcom: smsm: Fix refcount leak bugs in qcom_smsm_probe() + - soc: qcom: smem_state: Add refcounting for the 'state->of_node' + - ARM: dts: imx6qdl-kontron-samx6i: hook up DDC i2c bus + - ARM: dts: turris-omnia: Fix mpp26 pin name and comment + - ARM: dts: kirkwood: lsxl: fix serial line + - ARM: dts: kirkwood: lsxl: remove first ethernet port + - ia64: export memory_add_physaddr_to_nid to fix cxl build error + - soc/tegra: fuse: Drop Kconfig dependency on TEGRA20_APB_DMA + - arm64: dts: ti: k3-j7200: fix main pinmux range + - ARM: dts: exynos: correct s5k6a3 reset polarity on Midas family + - ARM: Drop CMDLINE_* dependency on ATAGS + - ext4: don't run ext4lazyinit for read-only filesystems + - arm64: ftrace: fix module PLTs with mcount + - ARM: dts: exynos: fix polarity of VBUS GPIO of Origen + - iio: adc: at91-sama5d2_adc: fix AT91_SAMA5D2_MR_TRACKTIM_MAX + - iio: adc: at91-sama5d2_adc: check return status for pressure and touch + - iio: adc: at91-sama5d2_adc: lock around oversampling and sample freq + - iio: adc: at91-sama5d2_adc: disable/prepare buffer on suspend/resume + - iio: inkern: only release the device node when done with it + - iio: inkern: fix return value in devm_of_iio_channel_get_by_name() + - iio: ABI: Fix wrong format of differential capacitance channel ABI. + - iio: magnetometer: yas530: Change data type of hard_offsets to signed + - RDMA/mlx5: Don't compare mkey tags in DEVX indirect mkey + - usb: common: debug: Check non-standard control requests + - clk: meson: Hold reference returned by of_get_parent() + - clk: oxnas: Hold reference returned by of_get_parent() + - clk: qoriq: Hold reference returned by of_get_parent() + - clk: berlin: Add of_node_put() for of_get_parent() + - clk: sprd: Hold reference returned by of_get_parent() + - clk: tegra: Fix refcount leak in tegra210_clock_init + - clk: tegra: Fix refcount leak in tegra114_clock_init + - clk: tegra20: Fix refcount leak in tegra20_clock_init + - HSI: omap_ssi: Fix refcount leak in ssi_probe + - HSI: omap_ssi_port: Fix dma_map_sg error check + - media: exynos4-is: fimc-is: Add of_node_put() when breaking out of loop + - tty: xilinx_uartps: Fix the ignore_status + - media: meson: vdec: add missing clk_disable_unprepare on error in + vdec_hevc_start() + - media: uvcvideo: Fix memory leak in uvc_gpio_parse + - media: uvcvideo: Use entity get_cur in uvc_ctrl_set + - media: xilinx: vipp: Fix refcount leak in xvip_graph_dma_init + - RDMA/rxe: Fix "kernel NULL pointer dereference" error + - RDMA/rxe: Fix the error caused by qp->sk + - misc: ocxl: fix possible refcount leak in afu_ioctl() + - fpga: prevent integer overflow in dfl_feature_ioctl_set_irq() + - dmaengine: hisilicon: Disable channels when unregister hisi_dma + - dmaengine: hisilicon: Fix CQ head update + - dmaengine: hisilicon: Add multi-thread support for a DMA channel + - dyndbg: fix static_branch manipulation + - dyndbg: fix module.dyndbg handling + - dyndbg: let query-modname override actual module name + - dyndbg: drop EXPORTed dynamic_debug_exec_queries + - clk: qcom: sm6115: Select QCOM_GDSC + - mtd: devices: docg3: check the return value of devm_ioremap() in the probe + - phy: amlogic: phy-meson-axg-mipi-pcie-analog: Hold reference returned by + of_get_parent() + - phy: phy-mtk-tphy: fix the phy type setting issue + - mtd: rawnand: intel: Read the chip-select line from the correct OF node + - mtd: rawnand: intel: Remove undocumented compatible string + - mtd: rawnand: fsl_elbc: Fix none ECC mode + - RDMA/irdma: Align AE id codes to correct flush code and event + - RDMA/srp: Fix srp_abort() + - RDMA/siw: Always consume all skbuf data in sk_data_ready() upcall. + - RDMA/siw: Fix QP destroy to wait for all references dropped. + - ata: fix ata_id_sense_reporting_enabled() and ata_id_has_sense_reporting() + - ata: fix ata_id_has_devslp() + - ata: fix ata_id_has_ncq_autosense() + - ata: fix ata_id_has_dipm() + - mtd: rawnand: meson: fix bit map use in meson_nfc_ecc_correct() + - md/raid5: Ensure stripe_fill happens on non-read IO with journal + - md/raid5: Remove unnecessary bio_put() in raid5_read_one_chunk() + - RDMA/cm: Use SLID in the work completion as the DLID in responder side + - IB: Set IOVA/LENGTH on IB_MR in core/uverbs layers + - xhci: Don't show warning for reinit on known broken suspend + - usb: gadget: function: fix dangling pnp_string in f_printer.c + - drivers: serial: jsm: fix some leaks in probe + - serial: 8250: Toggle IER bits on only after irq has been set up + - tty: serial: fsl_lpuart: disable dma rx/tx use flags in lpuart_dma_shutdown + - phy: qualcomm: call clk_disable_unprepare in the error handling + - staging: vt6655: fix some erroneous memory clean-up loops + - slimbus: qcom-ngd-ctrl: allow compile testing without QCOM_RPROC_COMMON + - firmware: google: Test spinlock on panic path to avoid lockups + - serial: 8250: Fix restoring termios speed after suspend + - scsi: libsas: Fix use-after-free bug in smp_execute_task_sg() + - scsi: iscsi: Rename iscsi_conn_queue_work() + - scsi: iscsi: Add recv workqueue helpers + - scsi: iscsi: Run recv path from workqueue + - scsi: iscsi: iscsi_tcp: Fix null-ptr-deref while calling getpeername() + - clk: qcom: apss-ipq6018: mark apcs_alias0_core_clk as critical + - clk: qcom: gcc-sm6115: Override default Alpha PLL regs + - RDMA/rxe: Fix resize_finish() in rxe_queue.c + - fsi: core: Check error number after calling ida_simple_get + - mfd: intel_soc_pmic: Fix an error handling path in + intel_soc_pmic_i2c_probe() + - mfd: fsl-imx25: Fix an error handling path in mx25_tsadc_setup_irq() + - mfd: lp8788: Fix an error handling path in lp8788_probe() + - mfd: lp8788: Fix an error handling path in lp8788_irq_init() and + lp8788_irq_init() + - mfd: fsl-imx25: Fix check for platform_get_irq() errors + - mfd: sm501: Add check for platform_driver_register() + - clk: mediatek: mt8183: mfgcfg: Propagate rate changes to parent + - dmaengine: ioat: stop mod_timer from resurrecting deleted timer in + __cleanup() + - usb: mtu3: fix failed runtime suspend in host only mode + - spmi: pmic-arb: correct duplicate APID to PPID mapping logic + - clk: vc5: Fix 5P49V6901 outputs disabling when enabling FOD + - clk: baikal-t1: Fix invalid xGMAC PTP clock divider + - clk: baikal-t1: Add shared xGMAC ref/ptp clocks internal parent + - clk: baikal-t1: Add SATA internal ref clock buffer + - clk: bcm2835: fix bcm2835_clock_rate_from_divisor declaration + - clk: imx: scu: fix memleak on platform_device_add() fails + - clk: ti: dra7-atl: Fix reference leak in of_dra7_atl_clk_probe + - clk: ast2600: BCLK comes from EPLL + - mailbox: mpfs: fix handling of the reg property + - mailbox: mpfs: account for mbox offsets while sending + - mailbox: bcm-ferxrm-mailbox: Fix error check for dma_map_sg + - powerpc/configs: Properly enable PAPR_SCM in pseries_defconfig + - powerpc/math_emu/efp: Include module.h + - powerpc/sysdev/fsl_msi: Add missing of_node_put() + - powerpc/pci_dn: Add missing of_node_put() + - powerpc/powernv: add missing of_node_put() in opal_export_attrs() + - powerpc: Fix fallocate and fadvise64_64 compat parameter combination + - x86/hyperv: Fix 'struct hv_enlightened_vmcs' definition + - powerpc/64s: Fix GENERIC_CPU build flags for PPC970 / G5 + - powerpc: Fix SPE Power ISA properties for e500v1 platforms + - powerpc/kprobes: Fix null pointer reference in arch_prepare_kprobe() + - powerpc/pseries/vas: Pass hw_cpu_id to node associativity HCALL + - crypto: sahara - don't sleep when in softirq + - crypto: hisilicon/zip - fix mismatch in get/set sgl_sge_nr + - hwrng: arm-smccc-trng - fix NO_ENTROPY handling + - cgroup: Honor caller's cgroup NS when resolving path + - hwrng: imx-rngc - Moving IRQ handler registering after + imx_rngc_irq_mask_clear() + - crypto: qat - fix default value of WDT timer + - crypto: hisilicon/qm - fix missing put dfx access + - cgroup/cpuset: Enable update_tasks_cpumask() on top_cpuset + - iommu/omap: Fix buffer overflow in debugfs + - crypto: akcipher - default implementation for setting a private key + - crypto: ccp - Release dma channels before dmaengine unrgister + - crypto: inside-secure - Change swab to swab32 + - crypto: qat - fix DMA transfer direction + - cifs: return correct error in ->calc_signature() + - iommu/iova: Fix module config properly + - tracing: kprobe: Fix kprobe event gen test module on exit + - tracing: kprobe: Make gen test module work in arm and riscv + - tracing/osnoise: Fix possible recursive locking in stop_per_cpu_kthreads + - kbuild: remove the target in signal traps when interrupted + - kbuild: rpm-pkg: fix breakage when V=1 is used + - crypto: marvell/octeontx - prevent integer overflows + - crypto: cavium - prevent integer overflow loading firmware + - thermal/drivers/qcom/tsens-v0_1: Fix MSM8939 fourth sensor hw_id + - ACPI: APEI: do not add task_work to kernel thread to avoid memory leak + - f2fs: fix race condition on setting FI_NO_EXTENT flag + - f2fs: fix to account FS_CP_DATA_IO correctly + - selftest: tpm2: Add Client.__del__() to close /dev/tpm* handle + - fs: dlm: fix race in lowcomms + - rcu: Avoid triggering strict-GP irq-work when RCU is idle + - rcu: Back off upon fill_page_cache_func() allocation failure + - rcu-tasks: Convert RCU_LOCKDEP_WARN() to WARN_ONCE() + - ACPI: video: Add Toshiba Satellite/Portege Z830 quirk + - ACPI: tables: FPDT: Don't call acpi_os_map_memory() on invalid phys address + - cpufreq: intel_pstate: Add Tigerlake support in no-HWP mode + - MIPS: BCM47XX: Cast memcmp() of function to (void *) + - powercap: intel_rapl: fix UBSAN shift-out-of-bounds issue + - thermal: intel_powerclamp: Use get_cpu() instead of smp_processor_id() to + avoid crash + - ARM: decompressor: Include .data.rel.ro.local + - ACPI: x86: Add a quirk for Dell Inspiron 14 2-in-1 for StorageD3Enable + - x86/entry: Work around Clang __bdos() bug + - NFSD: Return nfserr_serverfault if splice_ok but buf->pages have data + - NFSD: fix use-after-free on source server when doing inter-server copy + - wifi: brcmfmac: fix invalid address access when enabling SCAN log level + - bpftool: Clear errno after libcap's checks + - ice: set tx_tstamps when creating new Tx rings via ethtool + - net: ethernet: ti: davinci_mdio: Add workaround for errata i2329 + - openvswitch: Fix double reporting of drops in dropwatch + - openvswitch: Fix overreporting of drops in dropwatch + - tcp: annotate data-race around tcp_md5sig_pool_populated + - x86/mce: Retrieve poison range from hardware + - wifi: ath9k: avoid uninit memory read in ath9k_htc_rx_msg() + - thunderbolt: Add back Intel Falcon Ridge end-to-end flow control workaround + - xfrm: Update ipcomp_scratches with NULL when freed + - iavf: Fix race between iavf_close and iavf_reset_task + - wifi: brcmfmac: fix use-after-free bug in brcmf_netdev_start_xmit() + - Bluetooth: btintel: Mark Intel controller to support LE_STATES quirk + - regulator: core: Prevent integer underflow + - wifi: mt76: mt7921: reset msta->airtime_ac while clearing up hw value + - Bluetooth: L2CAP: initialize delayed works at l2cap_chan_create() + - Bluetooth: hci_sysfs: Fix attempting to call device_add multiple times + - can: bcm: check the result of can_send() in bcm_can_tx() + - wifi: rt2x00: don't run Rt5592 IQ calibration on MT7620 + - wifi: rt2x00: set correct TX_SW_CFG1 MAC register for MT7620 + - wifi: rt2x00: set VGC gain for both chains of MT7620 + - wifi: rt2x00: set SoC wmac clock register + - wifi: rt2x00: correctly set BBP register 86 for MT7620 + - hwmon: (sht4x) do not overflow clamping operation on 32-bit platforms + - net: If sock is dead don't access sock's sk_wq in sk_stream_wait_memory + - Bluetooth: L2CAP: Fix user-after-free + - drm/nouveau/nouveau_bo: fix potential memory leak in nouveau_bo_alloc() + - drm: Use size_t type for len variable in drm_copy_field() + - drm: Prevent drm_copy_field() to attempt copying a NULL pointer + - drm/komeda: Fix handling of atomic commits in the atomic_commit_tail hook + - gpu: lontium-lt9611: Fix NULL pointer dereference in lt9611_connector_init() + - drm/amd/display: fix overflow on MIN_I64 definition + - udmabuf: Set ubuf->sg = NULL if the creation of sg table fails + - drm: bridge: dw_hdmi: only trigger hotplug event on link change + - ALSA: usb-audio: Register card at the last interface + - drm/vc4: vec: Fix timings for VEC modes + - drm: panel-orientation-quirks: Add quirk for Anbernic Win600 + - platform/chrome: cros_ec: Notify the PM of wake events during resume + - platform/x86: msi-laptop: Change DMI match / alias strings to fix module + autoloading + - ASoC: SOF: pci: Change DMI match info to support all Chrome platforms + - drm/amdgpu: fix initial connector audio value + - drm/meson: reorder driver deinit sequence to fix use-after-free bug + - drm/meson: explicitly remove aggregate driver at module unload time + - mmc: sdhci-msm: add compatible string check for sdm670 + - drm/dp: Don't rewrite link config when setting phy test pattern + - drm/amd/display: Remove interface for periodic interrupt 1 + - ARM: dts: imx7d-sdb: config the max pressure for tsc2046 + - ARM: dts: imx6q: add missing properties for sram + - ARM: dts: imx6dl: add missing properties for sram + - ARM: dts: imx6qp: add missing properties for sram + - ARM: dts: imx6sl: add missing properties for sram + - ARM: dts: imx6sll: add missing properties for sram + - ARM: dts: imx6sx: add missing properties for sram + - kselftest/arm64: Fix validatation termination record after EXTRA_CONTEXT + - arm64: dts: imx8mq-librem5: Add bq25895 as max17055's power supply + - btrfs: dump extra info if one free space cache has more bitmaps than it + should + - btrfs: scrub: try to fix super block errors + - btrfs: don't print information about space cache or tree every remount + - ARM: 9242/1: kasan: Only map modules if CONFIG_KASAN_VMALLOC=n + - clk: zynqmp: Fix stack-out-of-bounds in strncpy` + - media: cx88: Fix a null-ptr-deref bug in buffer_prepare() + - media: platform: fix some double free in meson-ge2d and mtk-jpeg and s5p-mfc + - clk: zynqmp: pll: rectify rate rounding in zynqmp_pll_round_rate + - usb: host: xhci-plat: suspend and resume clocks + - usb: host: xhci-plat: suspend/resume clks for brcm + - dmaengine: ti: k3-udma: Reset UDMA_CHAN_RT byte counters to prevent overflow + - scsi: 3w-9xxx: Avoid disabling device if failing to enable it + - nbd: Fix hung when signal interrupts nbd_start_device_ioctl() + - iommu/arm-smmu-v3: Make default domain type of HiSilicon PTT device to + identity + - power: supply: adp5061: fix out-of-bounds read in adp5061_get_chg_type() + - staging: vt6655: fix potential memory leak + - blk-throttle: prevent overflow while calculating wait time + - ata: libahci_platform: Sanity check the DT child nodes number + - bcache: fix set_at_max_writeback_rate() for multiple attached devices + - soundwire: cadence: Don't overwrite msg->buf during write commands + - soundwire: intel: fix error handling on dai registration issues + - HID: roccat: Fix use-after-free in roccat_read() + - eventfd: guard wake_up in eventfd fs calls as well + - md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d + - usb: host: xhci: Fix potential memory leak in xhci_alloc_stream_info() + - usb: musb: Fix musb_gadget.c rxstate overflow bug + - arm64: dts: imx8mp: Add snps,gfladj-refclk-lpm-sel quirk to USB nodes + - usb: dwc3: core: Enable GUCTL1 bit 10 for fixing termination error after + resume bug + - Revert "usb: storage: Add quirk for Samsung Fit flash" + - staging: rtl8723bs: fix potential memory leak in rtw_init_drv_sw() + - staging: rtl8723bs: fix a potential memory leak in rtw_init_cmd_priv() + - scsi: tracing: Fix compile error in trace_array calls when TRACING is + disabled + - ext2: Use kvmalloc() for group descriptor array + - nvme: copy firmware_rev on each init + - nvmet-tcp: add bounds check on Transfer Tag + - usb: idmouse: fix an uninit-value in idmouse_open + - clk: bcm2835: Make peripheral PLLC critical + - clk: bcm2835: Round UART input clock up + - perf intel-pt: Fix segfault in intel_pt_print_info() with uClibc + - io_uring: correct pinned_vm accounting + - io_uring/rw: fix short rw error handling + - io_uring/rw: fix error'ed retry return values + - io_uring/rw: fix unexpected link breakage + - mm: hugetlb: fix UAF in hugetlb_handle_userfault + - net: ieee802154: return -EINVAL for unknown addr type + - ALSA: usb-audio: Fix last interface check for registration + - blk-wbt: fix that 'rwb->wc' is always set to 1 in wbt_init() + - [Config] updateconfigs for MDIO_BITBANG + - net: ethernet: ti: davinci_mdio: fix build for mdio bitbang uses + - Revert "net/ieee802154: reject zero-sized raw_sendmsg()" + - net/ieee802154: don't warn zero-sized raw_sendmsg() + - drm/amd/display: Fix build breakage with CONFIG_DEBUG_FS=n + - Kconfig.debug: simplify the dependency of DEBUG_INFO_DWARF4/5 + - Kconfig.debug: add toolchain checks for DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT + - lib/Kconfig.debug: Add check for non-constant .{s,u}leb128 support to DWARF5 + - [Config] updateconfigs for AS_HAS_NON_CONST_LEB128 + - ext4: continue to expand file system when the target size doesn't reach + - thermal: intel_powerclamp: Use first online CPU as control_cpu + - gcov: support GCC 12.1 and newer compilers + - io-wq: Fix memory leak in worker creation + - Linux 5.15.75 + * [SRU] Ubuntu 22.04 - NVMe TCP - Host fails to reconnect to target after + link down/link up sequence (LP: #1989990) + - nvme-fabrics: parse nvme connect Linux error codes + - nvme-tcp: handle number of queue changes + - nvme-rdma: handle number of queue changes + - nvmet: expose max queues to configfs + + -- Tim Gardner Tue, 17 Jan 2023 09:36:23 -0700 + +linux-azure-5.15 (5.15.0-1031.38~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1031.38~20.04.1 -proposed tracker + (LP: #2001631) + + [ Ubuntu: 5.15.0-1031.38 ] + + * jammy/linux-azure: 5.15.0-1031.38 -proposed tracker (LP: #2001632) + * jammy/linux: 5.15.0-58.64 -proposed tracker (LP: #2001670) + * CVE-2022-3643 + - xen/netback: Ensure protocol headers don't fall in the non-linear area + * CVE-2022-4378 + - proc: proc_skip_spaces() shouldn't think it is working on C strings + - proc: avoid integer type confusion in get_proc_long + * CVE-2022-45934 + - Bluetooth: L2CAP: Fix u8 overflow + * CVE-2022-42896 + - Bluetooth: L2CAP: Fix accepting connection request for invalid SPSM + - Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm + + -- Thadeu Lima de Souza Cascardo Mon, 09 Jan 2023 15:12:00 -0300 + +linux-azure-5.15 (5.15.0-1030.37~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1030.37~20.04.1 -proposed tracker + (LP: #1999437) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.10.10) + + [ Ubuntu: 5.15.0-1030.37 ] + + * jammy/linux-azure: 5.15.0-1030.37 -proposed tracker (LP: #1999425) + * Azure: Jammy fio test causes panic (LP: #1996806) + - scsi: storvsc: Fix unsigned comparison to zero + * Azure: Jammy fio test hangs, swiotlb buffers exhausted (LP: #1998838) + - SAUCE: scsi: storvsc: Fix swiotlb bounce buffer leak in confidential VM + * Azure: hv_netvsc: Fix race between VF offering and VF association message + from host (LP: #1994974) + - hv_netvsc: Fix race between VF offering and VF association message from host + * [Azure][Arm64] Unable to detect all VF nics / Failing provisioning + (LP: #1996117) + - PCI: hv: Fix the definition of vector in hv_compose_msi_msg() + * Azure: MANA New Feature MANA XDP_Redirect Action (LP: #1998351) + - net: mana: Add support of XDP_REDIRECT action + * jammy/linux: 5.15.0-57.63 -proposed tracker (LP: #1997737) + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - debian/dkms-versions -- update from kernel-versions (main/2022.11.14) + * Expose built-in trusted and revoked certificates (LP: #1996892) + - [Packaging] Expose built-in trusted and revoked certificates + * TEE Support for CCP driver (LP: #1991608) + - crypto: ccp: Add support for TEE for PCI ID 0x14CA + * alsa: soc: the kernel print UBSAN calltrace on the machine with cs35l41 + codec (LP: #1996121) + - ASoC: cs35l41: Add one more variable in the debug log + - ASoC: cs35l41: Fix an out-of-bounds access in otp_packed_element_t + * Fix ath11k deadlock on WCN6855 (LP: #1995041) + - wifi: ath11k: avoid deadlock during regulatory update in + ath11k_regd_update() + * [UBUNTU 20.04] boot: Add s390x secure boot trailer (LP: #1996071) + - s390/boot: add secure boot trailer + * Fix rfkill causing soft blocked wifi (LP: #1996198) + - platform/x86: hp_wmi: Fix rfkill causing soft blocked wifi + * Fix Thunderbolt device hotplug fail when connect via thunderbolt dock + (LP: #1991366) + - PCI: Fix used_buses calculation in pci_scan_child_bus_extend() + - PCI: Pass available buses even if the bridge is already configured + - PCI: Move pci_assign_unassigned_root_bus_resources() + - PCI: Distribute available resources for root buses, too + - PCI: Fix whitespace and indentation + - PCI: Fix typo in pci_scan_child_bus_extend() + * md: Replace snprintf with scnprintf (LP: #1993315) + - md: Replace snprintf with scnprintf + * input/keyboard: the keyboard on some Asus laptops can't work (LP: #1992266) + - ACPI: resource: Skip IRQ override on Asus Vivobook K3402ZA/K3502ZA + - ACPI: resource: Add ASUS model S5402ZA to quirks + * Fix Turbostat is not working for fam: 6 model: 191: stepping: 2 CPU + (LP: #1991365) + - tools/power turbostat: Add support for RPL-S + * pcieport 0000:00:1b.0: PCIe Bus Error: severity=Uncorrected (Non-Fatal), + type=Transaction Layer, (Requester ID) (LP: #1988797) + - PCI/PTM: Cache PTM Capability offset + - PCI/PTM: Add pci_upstream_ptm() helper + - PCI/PTM: Separate configuration and enable + - PCI/PTM: Add pci_suspend_ptm() and pci_resume_ptm() + - PCI/PTM: Move pci_ptm_info() body into its only caller + - PCI/PTM: Preserve RsvdP bits in PTM Control register + - PCI/PTM: Reorder functions in logical order + - PCI/PTM: Consolidate PTM interface declarations + - PCI/PM: Always disable PTM for all devices during suspend + - PCI/PM: Simplify pci_pm_suspend_noirq() + * Fix RPL-S support on powercap/intel_rapl (LP: #1990161) + - x86/cpu: Drop spurious underscore from RAPTOR_LAKE #define + - x86/cpu: Add new Alderlake and Raptorlake CPU model numbers + - x86/cpu: Add new Raptor Lake CPU model number + - powercap: intel_rapl: add support for RaptorLake + - powercap: intel_rapl: Add support for RAPTORLAKE_P + - powercap: intel_rapl: Add support for RAPTORLAKE_S + * AMD Yellow Carp system hang on HDMI plug in/out over HP hook2 docking + (LP: #1991974) + - drm/amd/display: Fix for link encoder access for MST. + - drm/amd/display: Fix MST link encoder availability check. + - drm/amd/display: FEC configuration for dpia links + - drm/amd/display: FEC configuration for dpia links in MST mode + - drm/amd/display: Add work around for tunneled MST. + * Jammy update: v5.15.74 upstream stable release (LP: #1995638) + - nilfs2: fix use-after-free bug of struct nilfs_root + - nilfs2: fix leak of nilfs_root in case of writer thread creation failure + - nilfs2: replace WARN_ONs by nilfs_error for checkpoint acquisition failure + - ceph: don't truncate file in atomic_open + - random: restore O_NONBLOCK support + - random: clamp credited irq bits to maximum mixed + - ALSA: hda: Fix position reporting on Poulsbo + - efi: Correct Macmini DMI match in uefi cert quirk + - USB: serial: qcserial: add new usb-id for Dell branded EM7455 + - Revert "powerpc/rtas: Implement reentrant rtas call" + - Revert "crypto: qat - reduce size of mapped region" + - random: avoid reading two cache lines on irq randomness + - random: use expired timer rather than wq for mixing fast pool + - Input: xpad - add supported devices as contributed on github + - Input: xpad - fix wireless 360 controller breaking after suspend + - misc: pci_endpoint_test: Aggregate params checking for xfer + - misc: pci_endpoint_test: Fix pci_endpoint_test_{copy,write,read}() panic + - Linux 5.15.74 + * Jammy update: v5.15.73 upstream stable release (LP: #1995637) + - Makefile.extrawarn: Move -Wcast-function-type-strict to W=1 + - docs: update mediator information in CoC docs + - xsk: Inherit need_wakeup flag for shared sockets + - mm: gup: fix the fast GUP race against THP collapse + - powerpc/64s/radix: don't need to broadcast IPI for radix pmd collapse flush + - firmware: arm_scmi: Improve checks in the info_get operations + - firmware: arm_scmi: Harden accesses to the sensor domains + - firmware: arm_scmi: Add SCMI PM driver remove routine + - dmaengine: xilinx_dma: Fix devm_platform_ioremap_resource error handling + - dmaengine: xilinx_dma: cleanup for fetching xlnx,num-fstores property + - dmaengine: xilinx_dma: Report error in case of dma_set_mask_and_coherent API + failure + - ARM: dts: fix Moxa SDIO 'compatible', remove 'sdhci' misnomer + - scsi: qedf: Fix a UAF bug in __qedf_probe() + - net/ieee802154: fix uninit value bug in dgram_sendmsg + - net: marvell: prestera: add support for for Aldrin2 + - ALSA: hda/hdmi: Fix the converter reuse for the silent stream + - um: Cleanup syscall_handler_t cast in syscalls_32.h + - um: Cleanup compiler warning in arch/x86/um/tls_32.c + - arch: um: Mark the stack non-executable to fix a binutils warning + - net: atlantic: fix potential memory leak in aq_ndev_close() + - drm/amd/display: Fix double cursor on non-video RGB MPO + - drm/amd/display: Assume an LTTPR is always present on fixed_vs links + - drm/amd/display: update gamut remap if plane has changed + - drm/amd/display: skip audio setup when audio stream is enabled + - mmc: core: Replace with already defined values for readability + - mmc: core: Terminate infinite loop in SD-UHS voltage switch + - perf parse-events: Identify broken modifiers + - mm/huge_memory: minor cleanup for split_huge_pages_all + - mm/huge_memory: use pfn_to_online_page() in split_huge_pages_all() + - wifi: cfg80211: fix MCS divisor value + - net/mlx5: Disable irq when locking lag_lock + - usb: mon: make mmapped memory read only + - USB: serial: ftdi_sio: fix 300 bps rate for SIO + - rpmsg: qcom: glink: replace strncpy() with strscpy_pad() + - Revert "clk: ti: Stop using legacy clkctrl names for omap4 and 5" + - Linux 5.15.73 + * Jammy update: v5.15.72 upstream stable release (LP: #1995517) + - ALSA: hda: Do disconnect jacks at codec unbind + - ALSA: hda: Fix hang at HD-audio codec unbinding due to refcount saturation + - ALSA: hda: Fix Nvidia dp infoframe + - cgroup: reduce dependency on cgroup_mutex + - cgroup: cgroup_get_from_id() must check the looked-up kn is a directory + - uas: add no-uas quirk for Hiksemi usb_disk + - usb-storage: Add Hiksemi USB3-FW to IGNORE_UAS + - uas: ignore UAS for Thinkplus chips + - usb: typec: ucsi: Remove incorrect warning + - thunderbolt: Explicitly reset plug events delay back to USB4 spec value + - net: usb: qmi_wwan: Add new usb-id for Dell branded EM7455 + - Input: snvs_pwrkey - fix SNVS_HPVIDR1 register address + - can: c_can: don't cache TX messages for C_CAN cores + - clk: ingenic-tcu: Properly enable registers before accessing timers + - x86/sgx: Do not fail on incomplete sanitization on premature stop of ksgxd + - ARM: dts: integrator: Tag PCI host with device_type + - ntfs: fix BUG_ON in ntfs_lookup_inode_by_name() + - mm/damon/dbgfs: fix memory leak when using debugfs_lookup() + - net: mt7531: only do PLL once after the reset + - Revert "firmware: arm_scmi: Add clock management to the SCMI power domain" + - drm/i915/gt: Restrict forced preemption to the active context + - drm/amdgpu: Add amdgpu suspend-resume code path under SRIOV + - vduse: prevent uninitialized memory accesses + - libata: add ATA_HORKAGE_NOLPM for Pioneer BDR-207M and BDR-205 + - mmc: moxart: fix 4-bit bus width and remove 8-bit bus width + - mmc: hsq: Fix data stomping during mmc recovery + - mm/page_alloc: fix race condition between build_all_zonelists and page + allocation + - mm: prevent page_frag_alloc() from corrupting the memory + - mm: fix dereferencing possible ERR_PTR + - mm/migrate_device.c: flush TLB while holding PTL + - mm: fix madivse_pageout mishandling on non-LRU page + - mm,hwpoison: check mm when killing accessing process + - media: dvb_vb2: fix possible out of bound access + - media: rkvdec: Disable H.264 error detection + - media: v4l2-compat-ioctl32.c: zero buffer passed to + v4l2_compat_get_array_args() + - swiotlb: max mapping size takes min align mask into account + - ARM: dts: am33xx: Fix MMCHS0 dma properties + - reset: imx7: Fix the iMX8MP PCIe PHY PERST support + - ARM: dts: am5748: keep usb4_tm disabled + - soc: sunxi: sram: Actually claim SRAM regions + - soc: sunxi: sram: Prevent the driver from being unbound + - soc: sunxi_sram: Make use of the helper function + devm_platform_ioremap_resource() + - soc: sunxi: sram: Fix probe function ordering issues + - soc: sunxi: sram: Fix debugfs info for A64 SRAM C + - ASoC: imx-card: Fix refcount issue with of_node_put + - arm64: dts: qcom: sm8350: fix UFS PHY serdes size + - ASoC: tas2770: Reinit regcache on reset + - drm/bridge: lt8912b: add vsync hsync + - drm/bridge: lt8912b: set hdmi or dvi mode + - drm/bridge: lt8912b: fix corrupted image output + - Revert "drm: bridge: analogix/dp: add panel prepare/unprepare in + suspend/resume time" + - Input: melfas_mip4 - fix return value check in mip4_probe() + - gpio: mvebu: Fix check for pwm support on non-A8K platforms + - usbnet: Fix memory leak in usbnet_disconnect() + - net: sched: act_ct: fix possible refcount leak in tcf_ct_init() + - cxgb4: fix missing unlock on ETHOFLD desc collect fail path + - net/mlxbf_gige: Fix an IS_ERR() vs NULL bug in mlxbf_gige_mdio_probe + - nvme: Fix IOC_PR_CLEAR and IOC_PR_RELEASE ioctls for nvme devices + - wifi: mac80211: fix regression with non-QoS drivers + - net: stmmac: power up/down serdes in stmmac_open/release + - net: phy: Don't WARN for PHY_UP state in mdio_bus_phy_resume() + - selftests: Fix the if conditions of in test_extra_filter() + - vdpa/ifcvf: fix the calculation of queuepair + - fs: split off setxattr_copy and do_setxattr function from setxattr + - clk: imx: imx6sx: remove the SET_RATE_PARENT flag for QSPI clocks + - clk: iproc: Do not rely on node name for correct PLL setup + - KVM: x86: Hide IA32_PLATFORM_DCA_CAP[31:0] from the guest + - x86/alternative: Fix race in try_get_desc() + - drm/i915/gem: Really move i915_gem_context.link under ref protection + - Linux 5.15.72 + * Jammy update: v5.15.71 upstream stable release (LP: #1995420) + - drm/amdgpu: Separate vf2pf work item init from virt data exchange + - drm/amdgpu: make sure to init common IP before gmc + - staging: r8188eu: Remove support for devices with 8188FU chipset (0bda:f179) + - staging: r8188eu: Add Rosewill USB-N150 Nano to device tables + - usb: dwc3: gadget: Avoid starting DWC3 gadget during UDC unbind + - usb: dwc3: Issue core soft reset before enabling run/stop + - usb: dwc3: gadget: Prevent repeat pullup() + - usb: dwc3: gadget: Refactor pullup() + - usb: dwc3: gadget: Don't modify GEVNTCOUNT in pullup() + - usb: dwc3: gadget: Avoid duplicate requests to enable Run/Stop + - usb: add quirks for Lenovo OneLink+ Dock + - usb: gadget: udc-xilinx: replace memcpy with memcpy_toio + - Revert "usb: add quirks for Lenovo OneLink+ Dock" + - Revert "usb: gadget: udc-xilinx: replace memcpy with memcpy_toio" + - drivers/base: Fix unsigned comparison to -1 in CPUMAP_FILE_MAX_BYTES + - USB: core: Fix RST error in hub.c + - USB: serial: option: add Quectel BG95 0x0203 composition + - USB: serial: option: add Quectel RM520N + - ALSA: core: Fix double-free at snd_card_new() + - ALSA: hda/tegra: set depop delay for tegra + - ALSA: hda: add Intel 5 Series / 3400 PCI DID + - ALSA: hda/realtek: Add quirk for Huawei WRT-WX9 + - ALSA: hda/realtek: Enable 4-speaker output Dell Precision 5570 laptop + - ALSA: hda/realtek: Re-arrange quirk table entries + - ALSA: hda/realtek: Add pincfg for ASUS G513 HP jack + - ALSA: hda/realtek: Add pincfg for ASUS G533Z HP jack + - ALSA: hda/realtek: Add quirk for ASUS GA503R laptop + - ALSA: hda/realtek: Enable 4-speaker output Dell Precision 5530 laptop + - iommu/vt-d: Check correct capability for sagaw determination + - btrfs: fix hang during unmount when stopping block group reclaim worker + - btrfs: fix hang during unmount when stopping a space reclaim worker + - media: flexcop-usb: fix endpoint type check + - usb: dwc3: core: leave default DMA if the controller does not support 64-bit + DMA + - efi: x86: Wipe setup_data on pure EFI boot + - efi: libstub: check Shim mode using MokSBStateRT + - wifi: mt76: fix reading current per-tid starting sequence number for + aggregation + - gpio: mockup: fix NULL pointer dereference when removing debugfs + - gpio: mockup: Fix potential resource leakage when register a chip + - gpiolib: cdev: Set lineevent_state::irq after IRQ register successfully + - riscv: fix a nasty sigreturn bug... + - kasan: call kasan_malloc() from __kmalloc_*track_caller() + - can: flexcan: flexcan_mailbox_read() fix return value for drop = true + - net: mana: Add rmb after checking owner bits + - mm/slub: fix to return errno if kmalloc() fails + - mm: slub: fix flush_cpu_slab()/__free_slab() invocations in task context. + - KVM: x86: Inject #UD on emulated XSETBV if XSAVES isn't enabled + - arm64: topology: fix possible overflow in amu_fie_setup() + - vmlinux.lds.h: CFI: Reduce alignment of jump-table to function alignment + - xfs: reorder iunlink remove operation in xfs_ifree + - xfs: fix xfs_ifree() error handling to not leak perag ref + - xfs: validate inode fork size against fork format + - firmware: arm_scmi: Harden accesses to the reset domains + - firmware: arm_scmi: Fix the asynchronous reset requests + - arm64: dts: rockchip: Pull up wlan wake# on Gru-Bob + - arm64: dts: rockchip: Fix typo in lisense text for PX30.Core + - drm/mediatek: dsi: Add atomic {destroy,duplicate}_state, reset callbacks + - arm64: dts: rockchip: Set RK3399-Gru PCLK_EDP to 24 MHz + - dmaengine: ti: k3-udma-private: Fix refcount leak bug in of_xudma_dev_get() + - arm64: dts: rockchip: Remove 'enable-active-low' from rk3399-puma + - netfilter: nf_conntrack_sip: fix ct_sip_walk_headers + - netfilter: nf_conntrack_irc: Tighten matching on DCC message + - netfilter: nfnetlink_osf: fix possible bogus match in nf_osf_find() + - ice: Don't double unplug aux on peer initiated reset + - iavf: Fix cached head and tail value for iavf_get_tx_pending + - ipvlan: Fix out-of-bound bugs caused by unset skb->mac_header + - net: core: fix flow symmetric hash + - net: phy: aquantia: wait for the suspend/resume operations to finish + - scsi: qla2xxx: Fix memory leak in __qlt_24xx_handle_abts() + - scsi: mpt3sas: Fix return value check of dma_get_required_mask() + - net: bonding: Share lacpdu_mcast_addr definition + - net: bonding: Unsync device addresses on ndo_stop + - net: team: Unsync device addresses on ndo_stop + - drm/panel: simple: Fix innolux_g121i1_l01 bus_format + - MIPS: lantiq: export clk_get_io() for lantiq_wdt.ko + - MIPS: Loongson32: Fix PHY-mode being left unspecified + - um: fix default console kernel parameter + - iavf: Fix bad page state + - mlxbf_gige: clear MDIO gateway lock after read + - i40e: Fix set max_tx_rate when it is lower than 1 Mbps + - sfc: fix TX channel offset when using legacy interrupts + - sfc: fix null pointer dereference in efx_hard_start_xmit + - drm/hisilicon/hibmc: Allow to be built if COMPILE_TEST is enabled + - drm/hisilicon: Add depends on MMU + - of: mdio: Add of_node_put() when breaking out of for_each_xx + - net: ipa: properly limit modem routing table use + - wireguard: ratelimiter: disable timings test by default + - wireguard: netlink: avoid variable-sized memcpy on sockaddr + - net: enetc: move enetc_set_psfp() out of the common enetc_set_features() + - net: enetc: deny offload of tc-based TSN features on VF interfaces + - net/sched: taprio: avoid disabling offload when it was never enabled + - net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo child + qdiscs + - netfilter: nf_tables: fix nft_counters_enabled underflow at + nf_tables_addchain() + - netfilter: nf_tables: fix percpu memory leak at nf_tables_addchain() + - netfilter: ebtables: fix memory leak when blob is malformed + - net: ravb: Fix PHY state warning splat during system resume + - net: sh_eth: Fix PHY state warning splat during system resume + - can: gs_usb: gs_can_open(): fix race dev->can.state condition + - perf stat: Fix BPF program section name + - perf jit: Include program header in ELF files + - perf kcore_copy: Do not check /proc/modules is unchanged + - perf tools: Honor namespace when synthesizing build-ids + - drm/mediatek: dsi: Move mtk_dsi_stop() call back to mtk_dsi_poweroff() + - net/smc: Stop the CLC flow if no link to map buffers on + - bonding: fix NULL deref in bond_rr_gen_slave_id + - net: sunhme: Fix packet reception for len < RX_COPY_THRESHOLD + - net: sched: fix possible refcount leak in tc_new_tfilter() + - bnxt: prevent skb UAF after handing over to PTP worker + - selftests: forwarding: add shebang for sch_red.sh + - KVM: x86/mmu: Fold rmap_recycle into rmap_add + - serial: fsl_lpuart: Reset prior to registration + - serial: Create uart_xmit_advance() + - serial: tegra: Use uart_xmit_advance(), fixes icount.tx accounting + - serial: tegra-tcu: Use uart_xmit_advance(), fixes icount.tx accounting + - s390/dasd: fix Oops in dasd_alias_get_start_dev due to missing pavgroup + - drm/amd/amdgpu: fixing read wrong pf2vf data in SRIOV + - Drivers: hv: Never allocate anything besides framebuffer from framebuffer + memory region + - drm/gma500: Fix BUG: sleeping function called from invalid context errors + - drm/amd/pm: disable BACO entry/exit completely on several sienna cichlid + cards + - drm/amdgpu: use dirty framebuffer helper + - drm/amd/display: Limit user regamma to a valid value + - drm/amd/display: Reduce number of arguments of dml31's + CalculateWatermarksAndDRAMSpeedChangeSupport() + - drm/amd/display: Reduce number of arguments of dml31's + CalculateFlipSchedule() + - drm/amd/display: Mark dml30's UseMinimumDCFCLK() as noinline for stack usage + - drm/rockchip: Fix return type of cdn_dp_connector_mode_valid + - fsdax: Fix infinite loop in dax_iomap_rw() + - workqueue: don't skip lockdep work dependency in cancel_work_sync() + - i2c: imx: If pm_runtime_get_sync() returned 1 device access is possible + - i2c: mlxbf: incorrect base address passed during io write + - i2c: mlxbf: prevent stack overflow in mlxbf_i2c_smbus_start_transaction() + - i2c: mlxbf: Fix frequency calculation + - drm/amdgpu: don't register a dirty callback for non-atomic + - NFSv4: Fixes for nfs4_inode_return_delegation() + - devdax: Fix soft-reservation memory description + - ext4: make directory inode spreading reflect flexbg size + - ext4: fix bug in extents parsing when eh_entries == 0 and eh_depth > 0 + - ext4: limit the number of retries after discarding preallocations blocks + - ext4: make mballoc try target group first even with mb_optimize_scan + - ext4: avoid unnecessary spreading of allocations among groups + - ext4: use locality group preallocation for small closed files + - Linux 5.15.71 + - Revert "drm/amdgpu: use dirty framebuffer helper" + * Jammy update: v5.15.70 upstream stable release (LP: #1995415) + - drm/tegra: vic: Fix build warning when CONFIG_PM=n + - serial: atmel: remove redundant assignment in rs485_config + - tty: serial: atmel: Preserve previous USART mode if RS485 disabled + - of: fdt: fix off-by-one error in unflatten_dt_nodes() + - pinctrl: qcom: sc8180x: Fix gpio_wakeirq_map + - pinctrl: qcom: sc8180x: Fix wrong pin numbers + - pinctrl: rockchip: Enhance support for IRQ_TYPE_EDGE_BOTH + - pinctrl: sunxi: Fix name for A100 R_PIO + - NFSv4: Turn off open-by-filehandle and NFS re-export for NFSv4.0 + - gpio: mpc8xxx: Fix support for IRQ_TYPE_LEVEL_LOW flow_type in mpc85xx + - drm/meson: Correct OSD1 global alpha value + - drm/meson: Fix OSD1 RGB to YCbCr coefficient + - block: blk_queue_enter() / __bio_queue_enter() must return -EAGAIN for + nowait + - parisc: ccio-dma: Add missing iounmap in error path in ccio_probe() + - of/device: Fix up of_dma_configure_id() stub + - cifs: revalidate mapping when doing direct writes + - cifs: don't send down the destination address to sendmsg for a SOCK_STREAM + - cifs: always initialize struct msghdr smb_msg completely + - parisc: Allow CONFIG_64BIT with ARCH=parisc + - tools/include/uapi: Fix for parisc and xtensa + - drm/amdgpu: Don't enable LTR if not supported + - drm/amdgpu: move nbio ih_doorbell_range() into ih code for vega + - drm/amdgpu: move nbio sdma_doorbell_range() into sdma code for vega + - binder: remove inaccurate mmap_assert_locked() + - arm64: dts: juno: Add missing MHU secure-irq + - ASoC: nau8824: Fix semaphore unbalance at error paths + - regulator: pfuze100: Fix the global-out-of-bounds access in + pfuze100_regulator_probe() + - scsi: lpfc: Return DID_TRANSPORT_DISRUPTED instead of DID_REQUEUE + - rxrpc: Fix local destruction being repeated + - rxrpc: Fix calc of resend age + - wifi: mac80211_hwsim: check length for virtio packets + - ALSA: hda/sigmatel: Keep power up while beep is enabled + - ALSA: hda/tegra: Align BDL entry to 4KB boundary + - net: usb: qmi_wwan: add Quectel RM520N + - afs: Return -EAGAIN, not -EREMOTEIO, when a file already locked + - MIPS: OCTEON: irq: Fix octeon_irq_force_ciu_mapping() + - drm/panfrost: devfreq: set opp to the recommended one to configure regulator + - mksysmap: Fix the mismatch of 'L0' symbols in System.map + - video: fbdev: pxa3xx-gcu: Fix integer overflow in pxa3xx_gcu_write + - net: Find dst with sk's xfrm policy not ctl_sk + - KVM: SEV: add cache flush to solve SEV cache incoherency issues + - cgroup: Add missing cpus_read_lock() to cgroup_attach_task_all() + - ALSA: hda/sigmatel: Fix unused variable warning for beep power change + - Linux 5.15.70 + * Jammy update: v5.15.69 upstream stable release (LP: #1993010) + - NFS: Fix WARN_ON due to unionization of nfs_inode.nrequests + - ACPI: resource: skip IRQ override on AMD Zen platforms + - ARM: dts: imx: align SPI NOR node name with dtschema + - ARM: dts: imx6qdl-kontron-samx6i: fix spi-flash compatible + - ARM: dts: at91: fix low limit for CPU regulator + - ARM: dts: at91: sama7g5ek: specify proper regulator output ranges + - lockdep: Fix -Wunused-parameter for _THIS_IP_ + - x86/mm: Force-inline __phys_addr_nodebug() + - task_stack, x86/cea: Force-inline stack helpers + - tracing: hold caller_addr to hardirq_{enable,disable}_ip + - tracefs: Only clobber mode/uid/gid on remount if asked + - iommu/vt-d: Fix kdump kernels boot failure with scalable mode + - Input: goodix - add support for GT1158 + - platform/surface: aggregator_registry: Add support for Surface Laptop Go 2 + - drm/msm/rd: Fix FIFO-full deadlock + - dt-bindings: iio: gyroscope: bosch,bmg160: correct number of pins + - HID: ishtp-hid-clientHID: ishtp-hid-client: Fix comment typo + - hid: intel-ish-hid: ishtp: Fix ishtp client sending disordered message + - tg3: Disable tg3 device on system reboot to avoid triggering AER + - gpio: mockup: remove gpio debugfs when remove device + - ieee802154: cc2520: add rc code in cc2520_tx() + - Input: iforce - add support for Boeder Force Feedback Wheel + - nvmet-tcp: fix unhandled tcp states in nvmet_tcp_state_change() + - drm/amd/amdgpu: skip ucode loading if ucode_size == 0 + - net: dsa: hellcreek: Print warning only once + - perf/arm_pmu_platform: fix tests for platform_get_irq() failure + - platform/x86: acer-wmi: Acer Aspire One AOD270/Packard Bell Dot keymap fixes + - usb: storage: Add ASUS <0x0b05:0x1932> to IGNORE_UAS + - mm: Fix TLB flush for not-first PFNMAP mappings in unmap_region() + - soc: fsl: select FSL_GUTS driver for DPIO + - usb: gadget: f_uac2: clean up some inconsistent indenting + - usb: gadget: f_uac2: fix superspeed transfer + - RDMA/irdma: Use s/g array in post send only when its valid + - Input: goodix - add compatible string for GT1158 + - Linux 5.15.69 + * Jammy update: v5.15.68 upstream stable release (LP: #1993003) + - net: wwan: iosm: remove pointless null check + - efi: libstub: Disable struct randomization + - efi: capsule-loader: Fix use-after-free in efi_capsule_write + - wifi: iwlegacy: 4965: corrected fix for potential off-by-one overflow in + il4965_rs_fill_link_cmd() + - fs: only do a memory barrier for the first set_buffer_uptodate() + - Revert "mm: kmemleak: take a full lowmem check in kmemleak_*_phys()" + - scsi: qla2xxx: Disable ATIO interrupt coalesce for quad port ISP27XX + - scsi: megaraid_sas: Fix double kfree() + - drm/gem: Fix GEM handle release errors + - drm/amdgpu: Move psp_xgmi_terminate call from amdgpu_xgmi_remove_device to + psp_hw_fini + - drm/amdgpu: Check num_gfx_rings for gfx v9_0 rb setup. + - drm/radeon: add a force flush to delay work when radeon + - scsi: ufs: core: Reduce the power mode change timeout + - Revert "parisc: Show error if wrong 32/64-bit compiler is being used" + - parisc: ccio-dma: Handle kmalloc failure in ccio_init_resources() + - parisc: Add runtime check to prevent PA2.0 kernels on PA1.x machines + - arm64: cacheinfo: Fix incorrect assignment of signed error value to unsigned + fw_level + - netfilter: conntrack: work around exceeded receive window + - cpufreq: check only freq_table in __resolve_freq() + - net/core/skbuff: Check the return value of skb_copy_bits() + - md: Flush workqueue md_rdev_misc_wq in md_alloc() + - fbdev: fbcon: Destroy mutex on freeing struct fb_info + - fbdev: chipsfb: Add missing pci_disable_device() in chipsfb_pci_init() + - drm/amdgpu: mmVM_L2_CNTL3 register not initialized correctly + - ALSA: pcm: oss: Fix race at SNDCTL_DSP_SYNC + - ALSA: emu10k1: Fix out of bounds access in snd_emu10k1_pcm_channel_alloc() + - ALSA: aloop: Fix random zeros in capture data when using jiffies timer + - ALSA: usb-audio: Fix an out-of-bounds bug in + __snd_usb_parse_audio_interface() + - tracing: Fix to check event_mutex is held while accessing trigger list + - btrfs: zoned: set pseudo max append zone limit in zone emulation mode + - vfio/type1: Unpin zero pages + - kprobes: Prohibit probes in gate area + - debugfs: add debugfs_lookup_and_remove() + - sched/debug: fix dentry leak in update_sched_domain_debugfs + - drm/amd/display: fix memory leak when using debugfs_lookup() + - nvmet: fix a use-after-free + - scsi: mpt3sas: Fix use-after-free warning + - scsi: lpfc: Add missing destroy_workqueue() in error path + - NFS: Further optimisations for 'ls -l' + - NFS: Save some space in the inode + - NFS: Fix another fsync() issue after a server reboot + - cgroup: Elide write-locking threadgroup_rwsem when updating csses on an + empty subtree + - cgroup: Fix threadgroup_rwsem <-> cpus_read_lock() deadlock + - ASoC: qcom: sm8250: add missing module owner + - RDMA/rtrs-clt: Use the right sg_cnt after ib_dma_map_sg + - RDMA/rtrs-srv: Pass the correct number of entries for dma mapped SGL + - ARM: dts: imx6qdl-kontron-samx6i: remove duplicated node + - soc: imx: gpcv2: Assert reset before ungating clock + - regulator: core: Clean up on enable failure + - tee: fix compiler warning in tee_shm_register() + - RDMA/cma: Fix arguments order in net device validation + - soc: brcmstb: pm-arm: Fix refcount leak and __iomem leak bugs + - RDMA/hns: Fix supported page size + - RDMA/hns: Fix wrong fixed value of qp->rq.wqe_shift + - wifi: wilc1000: fix DMA on stack objects + - ARM: at91: pm: fix self-refresh for sama7g5 + - ARM: at91: pm: fix DDR recalibration when resuming from backup and self- + refresh + - ARM: dts: at91: sama5d27_wlsom1: specify proper regulator output ranges + - ARM: dts: at91: sama5d2_icp: specify proper regulator output ranges + - ARM: dts: at91: sama5d27_wlsom1: don't keep ldo2 enabled all the time + - ARM: dts: at91: sama5d2_icp: don't keep vdd_other enabled all the time + - netfilter: br_netfilter: Drop dst references before setting. + - netfilter: nf_tables: clean up hook list when offload flags check fails + - RDMA/srp: Set scmnd->result only when scmnd is not NULL + - ALSA: usb-audio: Inform the delayed registration more properly + - ALSA: usb-audio: Register card again for iface over delayed_register option + - rxrpc: Fix ICMP/ICMP6 error handling + - rxrpc: Fix an insufficiently large sglist in rxkad_verify_packet_2() + - afs: Use the operation issue time instead of the reply time for callbacks + - Revert "net: phy: meson-gxl: improve link-up behavior" + - sch_sfb: Don't assume the skb is still around after enqueueing to child + - tipc: fix shift wrapping bug in map_get() + - net: introduce __skb_fill_page_desc_noacc + - tcp: TX zerocopy should not sense pfmemalloc status + - ice: use bitmap_free instead of devm_kfree + - i40e: Fix kernel crash during module removal + - iavf: Detach device during reset task + - xen-netback: only remove 'hotplug-status' when the vif is actually destroyed + - RDMA/siw: Pass a pointer to virt_to_page() + - ipv6: sr: fix out-of-bounds read when setting HMAC data. + - IB/core: Fix a nested dead lock as part of ODP flow + - RDMA/mlx5: Set local port to one when accessing counters + - erofs: fix pcluster use-after-free on UP platforms + - nvme-tcp: fix UAF when detecting digest errors + - nvme-tcp: fix regression that causes sporadic requests to time out + - tcp: fix early ETIMEDOUT after spurious non-SACK RTO + - nvmet: fix mar and mor off-by-one errors + - RDMA/irdma: Report the correct max cqes from query device + - RDMA/irdma: Return correct WC error for bind operation failure + - RDMA/irdma: Report RNR NAK generation in device caps + - sch_sfb: Also store skb len before calling child enqueue + - perf script: Fix Cannot print 'iregs' field for hybrid systems + - hwmon: (tps23861) fix byte order in resistance register + - ASoC: mchp-spdiftx: remove references to mchp_i2s_caps + - ASoC: mchp-spdiftx: Fix clang -Wbitfield-constant-conversion + - MIPS: loongson32: ls1c: Fix hang during startup + - kbuild: disable header exports for UML in a straightforward way + - i40e: Refactor tc mqprio checks + - i40e: Fix ADQ rate limiting for PF + - swiotlb: avoid potential left shift overflow + - iommu/amd: use full 64-bit value in build_completion_wait() + - s390/boot: fix absolute zero lowcore corruption on boot + - hwmon: (mr75203) fix VM sensor allocation when "intel,vm-map" not defined + - hwmon: (mr75203) update pvt->v_num and vm_num to the actual number of used + sensors + - hwmon: (mr75203) fix voltage equation for negative source input + - hwmon: (mr75203) fix multi-channel voltage reading + - hwmon: (mr75203) enable polling for all VM channels + - arm64/bti: Disable in kernel BTI when cross section thunks are broken + - [Config] updateconfigs for ARM64_BTI_KERNEL + - iommu/vt-d: Correctly calculate sagaw value of IOMMU + - [Config] updateconfigs for ARM64_ERRATUM_2457168 + - arm64: errata: add detection for AMEVCNTR01 incrementing incorrectly + - drm/bridge: display-connector: implement bus fmts callbacks + - perf machine: Use path__join() to compose a path instead of snprintf(dir, + '/', filename) + - ARM: at91: ddr: remove CONFIG_SOC_SAMA7 dependency + - Linux 5.15.68 + * Jammy update: v5.15.67 upstream stable release (LP: #1991841) + - Linux 5.15.67 + * Jammy update: v5.15.66 upstream stable release (LP: #1991840) + - drm/msm/dsi: fix the inconsistent indenting + - drm/msm/dp: delete DP_RECOVERED_CLOCK_OUT_EN to fix tps4 + - drm/msm/dsi: Fix number of regulators for msm8996_dsi_cfg + - drm/msm/dsi: Fix number of regulators for SDM660 + - platform/x86: pmc_atom: Fix SLP_TYPx bitfield mask + - iio: adc: mcp3911: make use of the sign bit + - skmsg: Fix wrong last sg check in sk_msg_recvmsg() + - bpf: Restrict bpf_sys_bpf to CAP_PERFMON + - bpf, cgroup: Fix kernel BUG in purge_effective_progs + - ieee802154/adf7242: defer destroy_workqueue call + - drm/i915/backlight: extract backlight code to a separate file + - drm/i915/display: avoid warnings when registering dual panel backlight + - ALSA: hda: intel-nhlt: remove use of __func__ in dev_dbg + - ALSA: hda: intel-nhlt: Correct the handling of fmt_config flexible array + - wifi: cfg80211: debugfs: fix return type in ht40allow_map_read() + - Revert "xhci: turn off port power in shutdown" + - net: sparx5: fix handling uneven length packets in manual extraction + - net: smsc911x: Stop and start PHY during suspend and resume + - openvswitch: fix memory leak at failed datapath creation + - net: dsa: xrs700x: Use irqsave variant for u64 stats update + - net: sched: tbf: don't call qdisc_put() while holding tree lock + - net/sched: fix netdevice reference leaks in attach_default_qdiscs() + - ethernet: rocker: fix sleep in atomic context bug in neigh_timer_handler + - mlxbf_gige: compute MDIO period based on i1clk + - kcm: fix strp_init() order and cleanup + - sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb + - tcp: annotate data-race around challenge_timestamp + - Revert "sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb" + - net/smc: Remove redundant refcount increase + - soundwire: qcom: fix device status array range + - serial: fsl_lpuart: RS485 RTS polariy is inverse + - staging: rtl8712: fix use after free bugs + - staging: r8188eu: add firmware dependency + - powerpc: align syscall table for ppc32 + - vt: Clear selection before changing the font + - musb: fix USB_MUSB_TUSB6010 dependency + - tty: serial: lpuart: disable flow control while waiting for the transmit + engine to complete + - Input: iforce - wake up after clearing IFORCE_XMIT_RUNNING flag + - iio: ad7292: Prevent regulator double disable + - iio: adc: mcp3911: use correct formula for AD conversion + - misc: fastrpc: fix memory corruption on probe + - misc: fastrpc: fix memory corruption on open + - USB: serial: ftdi_sio: add Omron CS1W-CIF31 device id + - mmc: core: Fix UHS-I SD 1.8V workaround branch + - mmc: core: Fix inconsistent sd3_bus_mode at UHS-I SD voltage switch failure + - binder: fix UAF of ref->proc caused by race condition + - binder: fix alloc->vma_vm_mm null-ptr dereference + - cifs: fix small mempool leak in SMB2_negotiate() + - KVM: VMX: Heed the 'msr' argument in msr_write_intercepted() + - drm/i915/reg: Fix spelling mistake "Unsupport" -> "Unsupported" + - clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops + - Revert "clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops" + - clk: core: Fix runtime PM sequence in clk_core_unprepare() + - Input: rk805-pwrkey - fix module autoloading + - clk: bcm: rpi: Fix error handling of raspberrypi_fw_get_rate + - clk: bcm: rpi: Use correct order for the parameters of devm_kcalloc() + - clk: bcm: rpi: Prevent out-of-bounds access + - clk: bcm: rpi: Add missing newline + - hwmon: (gpio-fan) Fix array out of bounds access + - gpio: pca953x: Add mutex_lock for regcache sync in PM + - KVM: x86: Mask off unsupported and unknown bits of IA32_ARCH_CAPABILITIES + - xen/grants: prevent integer overflow in gnttab_dma_alloc_pages() + - mm: pagewalk: Fix race between unmap and page walker + - xen-blkback: Advertise feature-persistent as user requested + - xen-blkfront: Advertise feature-persistent as user requested + - xen-blkfront: Cache feature_persistent value before advertisement + - thunderbolt: Use the actual buffer in tb_async_error() + - usb: dwc3: pci: Add support for Intel Raptor Lake + - media: mceusb: Use new usb_control_msg_*() routines + - xhci: Add grace period after xHC start to prevent premature runtime suspend. + - USB: serial: cp210x: add Decagon UCA device id + - USB: serial: option: add support for OPPO R11 diag port + - USB: serial: option: add Quectel EM060K modem + - USB: serial: option: add support for Cinterion MV32-WA/WB RmNet mode + - usb: typec: altmodes/displayport: correct pin assignment for UFP receptacles + - usb: typec: intel_pmc_mux: Add new ACPI ID for Meteor Lake IOM device + - usb: typec: tcpm: Return ENOTSUPP for power supply prop writes + - usb: dwc2: fix wrong order of phy_power_on and phy_init + - usb: cdns3: fix issue with rearming ISO OUT endpoint + - usb: cdns3: fix incorrect handling TRB_SMM flag for ISOC transfer + - USB: cdc-acm: Add Icom PMR F3400 support (0c26:0020) + - usb-storage: Add ignore-residue quirk for NXP PN7462AU + - s390/hugetlb: fix prepare_hugepage_range() check for 2 GB hugepages + - s390: fix nospec table alignments + - USB: core: Prevent nested device-reset calls + - usb: xhci-mtk: relax TT periodic bandwidth allocation + - usb: xhci-mtk: fix bandwidth release issue + - usb: gadget: mass_storage: Fix cdrom data transfers on MAC-OS + - driver core: Don't probe devices after bus_type.match() probe deferral + - wifi: mac80211: Don't finalize CSA in IBSS mode if state is disconnected + - wifi: mac80211: Fix UAF in ieee80211_scan_rx() + - net: Use u64_stats_fetch_begin_irq() for stats fetch. + - net: mac802154: Fix a condition in the receive path + - ALSA: hda/realtek: Add speaker AMP init for Samsung laptops with ALC298 + - ALSA: seq: oss: Fix data-race for max_midi_devs access + - ALSA: seq: Fix data-race at module auto-loading + - drm/i915/glk: ECS Liva Q2 needs GLK HDMI port timing quirk + - drm/i915: Skip wm/ddb readout for disabled pipes + - tty: n_gsm: add sanity check for gsm->receive in gsm_receive_buf() + - kbuild: Add skip_encoding_btf_enum64 option to pahole + - usb: dwc3: fix PHY disable sequence + - usb: dwc3: qcom: fix use-after-free on runtime-PM wakeup + - usb: dwc3: disable USB core PHY management + - USB: serial: ch341: fix lost character on LCR updates + - USB: serial: ch341: fix disabled rx timer on older devices + - Linux 5.15.66 + * Jammy update: v5.15.65 upstream stable release (LP: #1991831) + - mm: Force TLB flush for PFNMAP mappings before unlink_file_vma() + - drm/bridge: Add stubs for devm_drm_of_get_bridge when OF is disabled + - ACPI: thermal: drop an always true check + - drm/vc4: hdmi: Rework power up + - drm/vc4: hdmi: Depends on CONFIG_PM + - firmware: tegra: bpmp: Do only aligned access to IPC memory area + - crypto: lib - remove unneeded selection of XOR_BLOCKS + - Drivers: hv: balloon: Support status report for larger page sizes + - mm/hugetlb: avoid corrupting page->mapping in hugetlb_mcopy_atomic_pte + - [Config] updateconfigs for ARM64_ERRATUM_2441009 + - arm64: errata: Add Cortex-A510 to the repeat tlbi list + - io_uring: Remove unused function req_ref_put + - kbuild: Fix include path in scripts/Makefile.modpost + - Bluetooth: L2CAP: Fix build errors in some archs + - HID: steam: Prevent NULL pointer dereference in steam_{recv,send}_report + - udmabuf: Set the DMA mask for the udmabuf device (v2) + - media: pvrusb2: fix memory leak in pvr_probe + - HID: hidraw: fix memory leak in hidraw_release() + - net: fix refcount bug in sk_psock_get (2) + - fbdev: fb_pm2fb: Avoid potential divide by zero error + - ftrace: Fix NULL pointer dereference in is_ftrace_trampoline when ftrace is + dead + - bpf: Don't redirect packets with invalid pkt_len + - ALSA: usb-audio: Add quirk for LH Labs Geek Out HD Audio 1V5 + - HID: add Lenovo Yoga C630 battery quirk + - HID: AMD_SFH: Add a DMI quirk entry for Chromebooks + - HID: asus: ROG NKey: Ignore portion of 0x5a report + - HID: thrustmaster: Add sparco wheel and fix array length + - drm/i915/gt: Skip TLB invalidations once wedged + - mmc: mtk-sd: Clear interrupts when cqe off/disable + - mmc: sdhci-of-dwcmshc: add reset call back for rockchip Socs + - mmc: sdhci-of-dwcmshc: rename rk3568 to rk35xx + - mmc: sdhci-of-dwcmshc: Re-enable support for the BlueField-3 SoC + - btrfs: remove root argument from btrfs_unlink_inode() + - btrfs: remove no longer needed logic for replaying directory deletes + - btrfs: add and use helper for unlinking inode during log replay + - btrfs: fix warning during log replay when bumping inode link count + - fs/ntfs3: Fix work with fragmented xattr + - ASoC: sh: rz-ssi: Improve error handling in rz_ssi_probe() error path + - drm/amd/display: Avoid MPC infinite loop + - drm/amd/display: Fix HDMI VSIF V3 incorrect issue + - drm/amd/display: For stereo keep "FLIP_ANY_FRAME" + - drm/amd/display: clear optc underflow before turn off odm clock + - ksmbd: return STATUS_BAD_NETWORK_NAME error status if share is not + configured + - neigh: fix possible DoS due to net iface start/stop loop + - s390/hypfs: avoid error message under KVM + - ksmbd: don't remove dos attribute xattr on O_TRUNC open + - drm/amd/pm: add missing ->fini_microcode interface for Sienna Cichlid + - drm/amd/display: Fix pixel clock programming + - drm/amdgpu: Increase tlb flush timeout for sriov + - drm/amd/display: avoid doing vm_init multiple time + - netfilter: conntrack: NF_CONNTRACK_PROCFS should no longer default to y + - testing: selftests: nft_flowtable.sh: use random netns names + - btrfs: move lockdep class helpers to locking.c + - btrfs: fix lockdep splat with reloc root extent buffers + - btrfs: tree-checker: check for overlapping extent items + - kprobes: don't call disarm_kprobe() for disabled kprobes + - btrfs: fix space cache corruption and potential double allocations + - android: binder: fix lockdep check on clearing vma + - net/af_packet: check len when min_header_len equals to 0 + - net: neigh: don't call kfree_skb() under spin_lock_irqsave() + - Linux 5.15.65 + * CVE-2022-2663 + - netfilter: nf_conntrack_irc: Fix forged IP logic + * CVE-2022-3061 + - video: fbdev: i740fb: Error out if 'pixclock' equals zero + * jammy/linux: 5.15.0-56.62 -proposed tracker (LP: #1997079) + * CVE-2022-3566 + - tcp: Fix data races around icsk->icsk_af_ops. + * CVE-2022-3567 + - ipv6: annotate some data-races around sk->sk_prot + - ipv6: Fix data races around sk->sk_prot. + * CVE-2022-3621 + - nilfs2: fix NULL pointer dereference at nilfs_bmap_lookup_at_level() + * CVE-2022-3564 + - Bluetooth: L2CAP: Fix use-after-free caused by l2cap_reassemble_sdu + * CVE-2022-3524 + - tcp/udp: Fix memory leak in ipv6_renew_options(). + * CVE-2022-3565 + - mISDN: fix use-after-free bugs in l1oip timer handlers + * CVE-2022-3594 + - r8152: Rate limit overflow messages + * CVE-2022-43945 + - SUNRPC: Fix svcxdr_init_decode's end-of-buffer calculation + - SUNRPC: Fix svcxdr_init_encode's buflen calculation + - NFSD: Protect against send buffer overflow in NFSv2 READDIR + - NFSD: Protect against send buffer overflow in NFSv3 READDIR + - NFSD: Protect against send buffer overflow in NFSv2 READ + - NFSD: Protect against send buffer overflow in NFSv3 READ + - NFSD: Remove "inline" directives on op_rsize_bop helpers + - NFSD: Cap rsize_bop result based on send buffer size + * CVE-2022-42703 + - mm/rmap: Fix anon_vma->degree ambiguity leading to double-reuse + * 5.15.0-53-generic no longer boots (LP: #1996740) + - drm/amd/display: Add helper for blanking all dp displays + + -- Tim Gardner Mon, 12 Dec 2022 14:00:39 -0700 + +linux-azure-5.15 (5.15.0-1029.36~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1029.36~20.04.1 -proposed tracker + (LP: #1998946) + + [ Ubuntu: 5.15.0-1029.36 ] + + * jammy/linux-azure: 5.15.0-1029.36 -proposed tracker (LP: #1998845) + * Azure: Jammy fio test hangs, swiotlb buffers exhausted (LP: #1998838) + - SAUCE: scsi: storvsc: Fix swiotlb bounce buffer leak in confidential VM + + [ Ubuntu: 5.15.0-1027.33 ] + + * jammy/linux-azure: 5.15.0-1027.33 -proposed tracker (LP: #1997044) + * jammy/linux: 5.15.0-56.62 -proposed tracker (LP: #1997079) + * CVE-2022-3566 + - tcp: Fix data races around icsk->icsk_af_ops. + * CVE-2022-3567 + - ipv6: annotate some data-races around sk->sk_prot + - ipv6: Fix data races around sk->sk_prot. + * CVE-2022-3621 + - nilfs2: fix NULL pointer dereference at nilfs_bmap_lookup_at_level() + * CVE-2022-3564 + - Bluetooth: L2CAP: Fix use-after-free caused by l2cap_reassemble_sdu + * CVE-2022-3524 + - tcp/udp: Fix memory leak in ipv6_renew_options(). + * CVE-2022-3565 + - mISDN: fix use-after-free bugs in l1oip timer handlers + * CVE-2022-3594 + - r8152: Rate limit overflow messages + * CVE-2022-43945 + - SUNRPC: Fix svcxdr_init_decode's end-of-buffer calculation + - SUNRPC: Fix svcxdr_init_encode's buflen calculation + - NFSD: Protect against send buffer overflow in NFSv2 READDIR + - NFSD: Protect against send buffer overflow in NFSv3 READDIR + - NFSD: Protect against send buffer overflow in NFSv2 READ + - NFSD: Protect against send buffer overflow in NFSv3 READ + - NFSD: Remove "inline" directives on op_rsize_bop helpers + - NFSD: Cap rsize_bop result based on send buffer size + * CVE-2022-42703 + - mm/rmap: Fix anon_vma->degree ambiguity leading to double-reuse + * 5.15.0-53-generic no longer boots (LP: #1996740) + - drm/amd/display: Add helper for blanking all dp displays + + [ Ubuntu: 5.15.0-1024.30 ] + + * jammy/linux-azure: 5.15.0-1024.30 -proposed tracker (LP: #1996817) + * Azure: Jammy fio test causes panic (LP: #1996806) + - scsi: storvsc: Fix unsigned comparison to zero + + -- Tim Gardner Tue, 06 Dec 2022 09:42:46 -0700 + +linux-azure-5.15 (5.15.0-1023.29~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1023.29~20.04.1 -proposed tracker + (LP: #1991982) + + * Jammy update: v5.15.61 upstream stable release (LP: #1990162) + - [Config] azure-5.15: updateconfigs for CRYPTO_LIB_BLAKE2S + + [ Ubuntu: 5.15.0-1023.29 ] + + * jammy/linux-azure: 5.15.0-1023.29 -proposed tracker (LP: #1991983) + * Jammy update: v5.15.61 upstream stable release (LP: #1990162) + - [Config] azure: updateconfigs for CRYPTO_LIB_BLAKE2S + * azure: CIFS Backport Updates to 5.15 Kernel (LP: #1987699) + - cifs: fix signed integer overflow when fl_end is OFFSET_MAX + - cifs: don't call cifs_dfs_query_info_nonascii_quirk() if nodfs was set + - cifs: return ENOENT for DFS lookup_cache_entry() + - cifs: print TIDs as hex + - cifs: move definition of cifs_fattr earlier in cifsglob.h + - cifs: check for smb1 in open_cached_dir() + - cifs: set the CREATE_NOT_FILE when opening the directory in use_cached_dir() + - cifs: smbd: fix typo in comment + - smb3: add trace point for lease not found issue + - cifs: return the more nuanced writeback error on close() + - smb3: add trace point for oplock not found + - Add defines for various newer FSCTLs + - Add various fsctl structs + - cifs: fix minor compile warning + - smb3: don't set rc when used and unneeded in query_info_compound + - smb3: add mount parm nosparse + - cifs: do not use tcpStatus after negotiate completes + - cifs: use new enum for ses_status + - cifs: avoid parallel session setups on same channel + - cifs: cache the dirents for entries in a cached directory + - cifs: fix ntlmssp on old servers + - smb3: remove unneeded null check in cifs_readdir + - cifs: remove repeated debug message on cifs_put_smb_ses() + - cifs: fix potential deadlock in direct reclaim + - cifs: do not build smb1ops if legacy support is disabled + - cifs: update internal module number + - cifs: skip trailing separators of prefix paths + - cifs: fix uninitialized pointer in error case in dfs_cache_get_tgt_share + - cifs: populate empty hostnames for extra channels + - smb3: add trace point for SMB2_set_eof + - cifs: when a channel is not found for server, log its connection id + - smb3: fix empty netname context on secondary channels + - smb3: use netname when available on secondary channels + - cifs: change iface_list from array to sorted linked list + - cifs: during reconnect, update interface if necessary + - cifs: periodically query network interfaces from server + - cifs: avoid deadlocks while updating iface + - cifs: update cifs_ses::ip_addr after failover + - cifs: fix race condition with delayed threads + - cifs: remove unnecessary locking of chan_lock while freeing session + - smb3: workaround negprot bug in some Samba servers + - cifs: remove redundant initialization to variable mnt_sign_enabled + - cifs: remove unnecessary type castings + - cifs: remove unnecessary (void*) conversions. + - cifs: remove some camelCase and also some static build warnings + - cifs: remove minor build warning + * Azure: PCI: Fix synchronization (LP: #1991134) + - PCI: hv: Use vmbus_requestor to generate transaction IDs for VMbus hardening + - Drivers: hv: vmbus: Introduce vmbus_sendpacket_getid() + - Drivers: hv: vmbus: Introduce vmbus_request_addr_match() + - Drivers: hv: vmbus: Introduce {lock,unlock}_requestor() + - PCI: hv: Fix synchronization between channel callback and + hv_compose_msi_msg() + - PCI: hv: Fix synchronization between channel callback and hv_pci_bus_exit() + * md: Replace snprintf with scnprintf (LP: #1993315) + - md: Replace snprintf with scnprintf + * Fix blank screen on Thinkpad ADL 4K+ panel (LP: #1980621) + - drm/i915: Implement WaEdpLinkRateDataReload + * Kernel regresses openjdk on riscv64 (LP: #1992484) + - SAUCE: Revert "riscv: mmap with PROT_WRITE but no PROT_READ is invalid" + * iavf: SR-IOV VFs error with no traffic flow when MTU greater than 1500 + (LP: #1983656) + - iavf: Fix set max MTU size with port VLAN and jumbo frames + - i40e: Fix VF set max MTU size + * [Ubuntu 22.04] mpt3sas: Request to include latest bug fix patches + (LP: #1965927) + - scsi: mpt3sas: Remove scsi_dma_map() error messages + - scsi: mpt3sas: Update persistent trigger pages from sysfs interface + * ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel + systems (LP: #1990985) + - ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel + systems + * Fix resume on AMD platforms when TBT monitor is plugged (LP: #1990920) + - SAUCE: Revert "drm/amd/display: Add helper for blanking all dp displays" + - drm/amd/display: Detect dpcd_rev when hotplug mst monitor + - drm/amd/display: Release remote dc_sink under mst scenario + * LSM: Configuring Too Many LSMs Causes Kernel Panic on Boot (LP: #1987998) + - SAUCE: LSM: Change Landlock from LSMBLOB_NEEDED to LSMBLOB_NOT_NEEDED + * To support Intel Maple Ridge Thunderbolt [8086:1134] (LP: #1990240) + - thunderbolt: Add support for Intel Maple Ridge single port controller + * Intel graphic driver is not probing[8086:468b] (LP: #1990242) + - drm/i915/adl_s: Update ADL-S PCI IDs + - drm/i915: Add new ADL-S pci id + * Add HDMI codec ID for Intel Raptor Lake (LP: #1989578) + - ALSA: hda: Add PCI and HDMI IDs for Intel Raptor Lake + * Jammy update: v5.15.64 upstream stable release (LP: #1991717) + - wifi: rtlwifi: remove always-true condition pointed out by GCC 12 + - eth: sun: cassini: remove dead code + - audit: fix potential double free on error path from fsnotify_add_inode_mark + - cgroup: Fix race condition at rebind_subsystems() + - parisc: Make CONFIG_64BIT available for ARCH=parisc64 only + - parisc: Fix exception handler for fldw and fstw instructions + - kernel/sys_ni: add compat entry for fadvise64_64 + - x86/entry: Move CLD to the start of the idtentry macro + - block: add a bdev_max_zone_append_sectors helper + - block: add bdev_max_segments() helper + - btrfs: zoned: revive max_zone_append_bytes + - btrfs: replace BTRFS_MAX_EXTENT_SIZE with fs_info->max_extent_size + - btrfs: convert count_max_extents() to use fs_info->max_extent_size + - Input: i8042 - move __initconst to fix code styling warning + - Input: i8042 - merge quirk tables + - Input: i8042 - add TUXEDO devices to i8042 quirk tables + - Input: i8042 - add additional TUXEDO devices to i8042 quirk tables + - drivers/base: fix userspace break from using bin_attributes for cpumap and + cpulist + - scsi: qla2xxx: Fix response queue handler reading stale packets + - scsi: qla2xxx: edif: Fix dropped IKE message + - btrfs: put initial index value of a directory in a constant + - btrfs: pass the dentry to btrfs_log_new_name() instead of the inode + - btrfs: remove unnecessary parameter delalloc_start for writepage_delalloc() + - riscv: lib: uaccess: fold fixups into body + - riscv: lib: uaccess: fix CSR_STATUS SR_SUM bit + - xfrm: fix refcount leak in __xfrm_policy_check() + - xfrm: clone missing x->lastused in xfrm_do_migrate + - xfrm: policy: fix metadata dst->dev xmit null pointer dereference + - fs: require CAP_SYS_ADMIN in target namespace for idmapped mounts + - net: use eth_hw_addr_set() instead of ether_addr_copy() + - Revert "net: macsec: update SCI upon MAC address change." + - NFS: Don't allocate nfs_fattr on the stack in __nfs42_ssc_open() + - NFSv4.2 fix problems with __nfs42_ssc_open + - SUNRPC: RPC level errors should set task->tk_rpc_status + - mm/smaps: don't access young/dirty bit if pte unpresent + - ntfs: fix acl handling + - rose: check NULL rose_loopback_neigh->loopback + - r8152: fix the units of some registers for RTL8156A + - r8152: fix the RX FIFO settings when suspending + - nfc: pn533: Fix use-after-free bugs caused by pn532_cmd_timeout + - ice: xsk: Force rings to be sized to power of 2 + - ice: xsk: prohibit usage of non-balanced queue id + - net/mlx5e: Properly disable vlan strip on non-UL reps + - net/mlx5: Avoid false positive lockdep warning by adding lock_class_key + - net/mlx5e: Fix wrong application of the LRO state + - net/mlx5e: Fix wrong tc flag used when set hw-tc-offload off + - net: ipa: don't assume SMEM is page-aligned + - net: phy: Don't WARN for PHY_READY state in mdio_bus_phy_resume() + - net: moxa: get rid of asymmetry in DMA mapping/unmapping + - bonding: 802.3ad: fix no transmission of LACPDUs + - net: ipvtap - add __init/__exit annotations to module init/exit funcs + - netfilter: ebtables: reject blobs that don't provide all entry points + - bnxt_en: fix NQ resource accounting during vf creation on 57500 chips + - netfilter: nf_tables: disallow updates of implicit chain + - netfilter: nf_tables: make table handle allocation per-netns friendly + - netfilter: nft_payload: report ERANGE for too long offset and length + - netfilter: nft_payload: do not truncate csum_offset and csum_type + - netfilter: nf_tables: do not leave chain stats enabled on error + - netfilter: nft_osf: restrict osf to ipv4, ipv6 and inet families + - netfilter: nft_tunnel: restrict it to netdev family + - netfilter: nf_tables: consolidate rule verdict trace call + - netfilter: nft_cmp: optimize comparison for 16-bytes + - netfilter: bitwise: improve error goto labels + - netfilter: nf_tables: upfront validation of data via nft_data_init() + - netfilter: nf_tables: disallow jump to implicit chain from set element + - netfilter: nf_tables: disallow binding to already bound chain + - netfilter: flowtable: add function to invoke garbage collection immediately + - netfilter: flowtable: fix stuck flows on cleanup due to pending work + - net: Fix data-races around sysctl_[rw]mem_(max|default). + - net: Fix data-races around weight_p and dev_weight_[rt]x_bias. + - net: Fix data-races around netdev_max_backlog. + - net: Fix data-races around netdev_tstamp_prequeue. + - ratelimit: Fix data-races in ___ratelimit(). + - net: Fix data-races around sysctl_optmem_max. + - net: Fix a data-race around sysctl_tstamp_allow_data. + - net: Fix a data-race around sysctl_net_busy_poll. + - net: Fix a data-race around sysctl_net_busy_read. + - net: Fix a data-race around netdev_budget. + - tcp: expose the tcp_mark_push() and tcp_skb_entail() helpers + - mptcp: stop relying on tcp_tx_skb_cache + - net: Fix data-races around sysctl_max_skb_frags. + - net: Fix a data-race around netdev_budget_usecs. + - net: Fix data-races around sysctl_fb_tunnels_only_for_init_net. + - net: Fix data-races around sysctl_devconf_inherit_init_net. + - net: Fix a data-race around sysctl_somaxconn. + - ixgbe: stop resetting SYSTIME in ixgbe_ptp_start_cyclecounter + - i40e: Fix incorrect address type for IPv6 flow rules + - rxrpc: Fix locking in rxrpc's sendmsg + - ionic: widen queue_lock use around lif init and deinit + - ionic: clear broken state on generation change + - ionic: fix up issues with handling EAGAIN on FW cmds + - ionic: VF initial random MAC address if no assigned mac + - net: stmmac: work around sporadic tx issue on link-up + - btrfs: fix silent failure when deleting root reference + - btrfs: replace: drop assert for suspended replace + - btrfs: add info when mount fails due to stale replace target + - btrfs: check if root is readonly while setting security xattr + - btrfs: fix possible memory leak in btrfs_get_dev_args_from_path() + - perf/x86/lbr: Enable the branch type for the Arch LBR by default + - x86/unwind/orc: Unwind ftrace trampolines with correct ORC entry + - x86/bugs: Add "unknown" reporting for MMIO Stale Data + - x86/nospec: Unwreck the RSB stuffing + - loop: Check for overflow while configuring loop + - writeback: avoid use-after-free after removing device + - asm-generic: sections: refactor memory_intersects + - mm/damon/dbgfs: avoid duplicate context directory creation + - s390/mm: do not trigger write fault when vma does not allow VM_WRITE + - bootmem: remove the vmemmap pages from kmemleak in put_page_bootmem + - s390: fix double free of GS and RI CBs on fork() failure + - fbdev: fbcon: Properly revert changes when vc_resize() failed + - Revert "memcg: cleanup racy sum avoidance code" + - ACPI: processor: Remove freq Qos request for all CPUs + - nouveau: explicitly wait on the fence in nouveau_bo_move_m2mf + - smb3: missing inode locks in punch hole + - xen/privcmd: fix error exit of privcmd_ioctl_dm_op() + - riscv: traps: add missing prototype + - io_uring: fix issue with io_write() not always undoing sb_start_write() + - mm/hugetlb: fix hugetlb not supporting softdirty tracking + - md: call __md_stop_writes in md_stop + - mptcp: Fix crash due to tcp_tsorted_anchor was initialized before release + skb + - arm64: Fix match_list for erratum 1286807 on Arm Cortex-A76 + - binder_alloc: add missing mmap_lock calls when using the VMA + - x86/nospec: Fix i386 RSB stuffing + - Documentation/ABI: Mention retbleed vulnerability info file for sysfs + - blk-mq: fix io hung due to missing commit_rqs + - perf python: Fix build when PYTHON_CONFIG is user supplied + - perf/x86/intel/uncore: Fix broken read_counter() for SNB IMC PMU + - perf/x86/intel/ds: Fix precise store latency handling + - perf stat: Clear evsel->reset_group for each stat run + - scsi: ufs: core: Enable link lost interrupt + - scsi: storvsc: Remove WQ_MEM_RECLAIM from storvsc_error_wq + - bpf: Don't use tnum_range on array range checking for poke descriptors + - Linux 5.15.64 + * Jammy update: v5.15.63 upstream stable release (LP: #1990564) + - ALSA: info: Fix llseek return value when using callback + - ALSA: hda/realtek: Add quirk for Clevo NS50PU, NS70PU + - KVM: Unconditionally get a ref to /dev/kvm module when creating a VM + - x86/mm: Use proper mask when setting PUD mapping + - rds: add missing barrier to release_refill + - locking/atomic: Make test_and_*_bit() ordered on failure + - drm/nouveau: recognise GA103 + - drm/ttm: Fix dummy res NULL ptr deref bug + - drm/amd/display: Check correct bounds for stream encoder instances for + DCN303 + - ata: libata-eh: Add missing command name + - mmc: pxamci: Fix another error handling path in pxamci_probe() + - mmc: pxamci: Fix an error handling path in pxamci_probe() + - mmc: meson-gx: Fix an error handling path in meson_mmc_probe() + - btrfs: unset reloc control if transaction commit fails in + prepare_to_relocate() + - btrfs: reset RO counter on block group if we fail to relocate + - btrfs: fix lost error handling when looking up extended ref on log replay + - cifs: Fix memory leak on the deferred close + - x86/kprobes: Fix JNG/JNLE emulation + - tracing/eprobes: Do not allow eprobes to use $stack, or % for regs + - tracing/eprobes: Do not hardcode $comm as a string + - tracing/eprobes: Have event probes be consistent with kprobes and uprobes + - tracing/probes: Have kprobes and uprobes use $COMM too + - tracing: Have filter accept "common_cpu" to be consistent + - ALSA: usb-audio: More comprehensive mixer map for ASUS ROG Zenith II + - dt-bindings: usb: mtk-xhci: Allow wakeup interrupt-names to be optional + - can: ems_usb: fix clang's -Wunaligned-access warning + - apparmor: fix quiet_denied for file rules + - Revert "UBUNTU: SAUCE: apparmor: drop prefixing abs root labels with '='" + - apparmor: fix absroot causing audited secids to begin with = + - apparmor: Fix failed mount permission check error message + - apparmor: fix aa_label_asxprint return check + - apparmor: fix setting unconfined mode on a loaded profile + - apparmor: fix overlapping attachment computation + - apparmor: fix reference count leak in aa_pivotroot() + - apparmor: Fix memleak in aa_simple_write_to_buffer() + - Documentation: ACPI: EINJ: Fix obsolete example + - NFSv4.1: Don't decrease the value of seq_nr_highest_sent + - NFSv4.1: Handle NFS4ERR_DELAY replies to OP_SEQUENCE correctly + - NFSv4: Fix races in the legacy idmapper upcall + - NFSv4.1: RECLAIM_COMPLETE must handle EACCES + - NFSv4/pnfs: Fix a use-after-free bug in open + - BPF: Fix potential bad pointer dereference in bpf_sys_bpf() + - bpf: Don't reinit map value in prealloc_lru_pop + - bpf: Acquire map uref in .init_seq_private for array map iterator + - bpf: Acquire map uref in .init_seq_private for hash map iterator + - bpf: Acquire map uref in .init_seq_private for sock local storage map + iterator + - bpf: Acquire map uref in .init_seq_private for sock{map,hash} iterator + - bpf: Check the validity of max_rdwr_access for sock local storage map + iterator + - can: mcp251x: Fix race condition on receive interrupt + - can: j1939: j1939_session_destroy(): fix memory leak of skbs + - net: atlantic: fix aq_vec index out of range error + - m68k: coldfire/device.c: protect FLEXCAN blocks + - sunrpc: fix expiry of auth creds + - SUNRPC: Fix xdr_encode_bool() + - SUNRPC: Reinitialise the backchannel request buffers before reuse + - virtio_net: fix memory leak inside XPD_TX with mergeable + - devlink: Fix use-after-free after a failed reload + - net: phy: Warn about incorrect mdio_bus_phy_resume() state + - net: bcmgenet: Indicate MAC is in charge of PHY PM + - net: bgmac: Fix a BUG triggered by wrong bytes_compl + - selftests: forwarding: Fix failing tests with old libnet + - dt-bindings: arm: qcom: fix Alcatel OneTouch Idol 3 compatibles + - pinctrl: nomadik: Fix refcount leak in nmk_pinctrl_dt_subnode_to_map + - pinctrl: qcom: msm8916: Allow CAMSS GP clocks to be muxed + - pinctrl: amd: Don't save/restore interrupt status and wake status bits + - pinctrl: sunxi: Add I/O bias setting for H6 R-PIO + - pinctrl: qcom: sm8250: Fix PDC map + - Input: exc3000 - fix return value check of wait_for_completion_timeout + - octeontx2-pf: Fix NIX_AF_TL3_TL2X_LINKX_CFG register configuration + - octeontx2-af: Apply tx nibble fixup always + - octeontx2-af: suppress external profile loading warning + - octeontx2-af: Fix mcam entry resource leak + - octeontx2-af: Fix key checking for source mac + - ACPI: property: Return type of acpi_add_nondev_subnodes() should be bool + - geneve: do not use RT_TOS for IPv6 flowlabel + - mlx5: do not use RT_TOS for IPv6 flowlabel + - ipv6: do not use RT_TOS for IPv6 flowlabel + - plip: avoid rcu debug splat + - vsock: Fix memory leak in vsock_connect() + - vsock: Set socket state back to SS_UNCONNECTED in vsock_connect_timeout() + - dt-bindings: gpio: zynq: Add missing compatible strings + - dt-bindings: arm: qcom: fix Longcheer L8150 compatibles + - dt-bindings: arm: qcom: fix MSM8916 MTP compatibles + - dt-bindings: arm: qcom: fix MSM8994 boards compatibles + - dt-bindings: clock: qcom,gcc-msm8996: add more GCC clock sources + - spi: dt-bindings: cadence: add missing 'required' + - spi: dt-bindings: zynqmp-qspi: add missing 'required' + - ceph: use correct index when encoding client supported features + - tools/vm/slabinfo: use alphabetic order when two values are equal + - ceph: don't leak snap_rwsem in handle_cap_grant + - kbuild: dummy-tools: avoid tmpdir leak in dummy gcc + - tools build: Switch to new openssl API for test-libcrypto + - NTB: ntb_tool: uninitialized heap data in tool_fn_write() + - nfp: ethtool: fix the display error of `ethtool -m DEVNAME` + - xen/xenbus: fix return type in xenbus_file_read() + - atm: idt77252: fix use-after-free bugs caused by tst_timer + - geneve: fix TOS inheriting for ipv4 + - perf probe: Fix an error handling path in 'parse_perf_probe_command()' + - perf parse-events: Fix segfault when event parser gets an error + - perf tests: Fix Track with sched_switch test for hybrid case + - dpaa2-eth: trace the allocated address instead of page struct + - fs/ntfs3: Fix using uninitialized value n when calling indx_read + - fs/ntfs3: Fix NULL deref in ntfs_update_mftmirr + - fs/ntfs3: Don't clear upper bits accidentally in log_replay() + - fs/ntfs3: Fix double free on remount + - fs/ntfs3: Do not change mode if ntfs_set_ea failed + - fs/ntfs3: Fix missing i_op in ntfs_read_mft + - nios2: page fault et.al. are *not* restartable syscalls... + - nios2: don't leave NULLs in sys_call_table[] + - nios2: traced syscall does need to check the syscall number + - nios2: fix syscall restart checks + - nios2: restarts apply only to the first sigframe we build... + - nios2: add force_successful_syscall_return() + - iavf: Fix adminq error handling + - iavf: Fix reset error handling + - ASoC: SOF: debug: Fix potential buffer overflow by snprintf() + - ASoC: tas2770: Set correct FSYNC polarity + - ASoC: tas2770: Allow mono streams + - ASoC: tas2770: Drop conflicting set_bias_level power setting + - ASoC: tas2770: Fix handling of mute/unmute + - ASoC: codec: tlv320aic32x4: fix mono playback via I2S + - netfilter: nf_tables: use READ_ONCE and WRITE_ONCE for shared generation id + access + - fs/ntfs3: uninitialized variable in ntfs_set_acl_ex() + - netfilter: nf_tables: disallow NFTA_SET_ELEM_KEY_END with + NFT_SET_ELEM_INTERVAL_END flag + - netfilter: nf_tables: possible module reference underflow in error path + - netfilter: nf_tables: really skip inactive sets when allocating name + - netfilter: nf_tables: validate NFTA_SET_ELEM_OBJREF based on NFT_SET_OBJECT + flag + - netfilter: nf_tables: NFTA_SET_ELEM_KEY_END requires concat and interval + flags + - netfilter: nf_tables: disallow NFT_SET_ELEM_CATCHALL and + NFT_SET_ELEM_INTERVAL_END + - netfilter: nf_tables: check NFT_SET_CONCAT flag if field_count is specified + - powerpc/pci: Fix get_phb_number() locking + - spi: meson-spicc: add local pow2 clock ops to preserve rate between messages + - net/sunrpc: fix potential memory leaks in rpc_sysfs_xprt_state_change() + - net: dsa: mv88e6060: prevent crash on an unused port + - mlxsw: spectrum: Clear PTP configuration after unregistering the netdevice + - net: moxa: pass pdev instead of ndev to DMA functions + - net: fix potential refcount leak in ndisc_router_discovery() + - net: dsa: microchip: ksz9477: fix fdb_dump last invalid entry + - net: dsa: felix: fix ethtool 256-511 and 512-1023 TX packet counters + - net: genl: fix error path memory leak in policy dumping + - net: dsa: don't warn in dsa_port_set_state_now() when driver doesn't support + it + - net: dsa: sja1105: fix buffer overflow in sja1105_setup_devlink_regions() + - ice: Ignore EEXIST when setting promisc mode + - i2c: imx: Make sure to unregister adapter on remove() + - regulator: pca9450: Remove restrictions for regulator-name + - i40e: Fix to stop tx_timeout recovery if GLOBR fails + - fec: Fix timer capture timing in `fec_ptp_enable_pps()` + - stmmac: intel: Add a missing clk_disable_unprepare() call in + intel_eth_pci_remove() + - igb: Add lock to avoid data race + - kbuild: fix the modules order between drivers and libs + - gcc-plugins: Undefine LATENT_ENTROPY_PLUGIN when plugin disabled for a file + - tracing/eprobes: Fix reading of string fields + - drm/imx/dcss: get rid of HPD warning message + - ASoC: SOF: Intel: hda: Define rom_status_reg in sof_intel_dsp_desc + - ASoC: SOF: Intel: hda: Fix potential buffer overflow by snprintf() + - drm/meson: Fix refcount bugs in meson_vpu_has_available_connectors() + - drm/sun4i: dsi: Prevent underflow when computing packet sizes + - net: qrtr: start MHI channel after endpoit creation + - KVM: arm64: Treat PMCR_EL1.LC as RES1 on asymmetric systems + - KVM: arm64: Reject 32bit user PSTATE on asymmetric systems + - HID: multitouch: new device class fix Lenovo X12 trackpad sticky + - PCI: Add ACS quirk for Broadcom BCM5750x NICs + - platform/chrome: cros_ec_proto: don't show MKBP version if unsupported + - usb: cdns3 fix use-after-free at workaround 2 + - usb: cdns3: fix random warning message when driver load + - usb: gadget: uvc: calculate the number of request depending on framesize + - usb: gadget: uvc: call uvc uvcg_warn on completed status instead of + uvcg_info + - PCI: aardvark: Fix reporting Slot capabilities on emulated bridge + - irqchip/tegra: Fix overflow implicit truncation warnings + - drm/meson: Fix overflow implicit truncation warnings + - clk: ti: Stop using legacy clkctrl names for omap4 and 5 + - scsi: ufs: ufs-mediatek: Fix the timing of configuring device regulators + - usb: host: ohci-ppc-of: Fix refcount leak bug + - usb: renesas: Fix refcount leak bug + - usb: dwc2: gadget: remove D+ pull-up while no vbus with usb-role-switch + - vboxguest: Do not use devm for irq + - clk: qcom: ipq8074: dont disable gcc_sleep_clk_src + - uacce: Handle parent device removal or parent driver module rmmod + - zram: do not lookup algorithm in backends table + - clk: qcom: clk-alpha-pll: fix clk_trion_pll_configure description + - scsi: lpfc: Prevent buffer overflow crashes in debugfs with malformed user + input + - scsi: lpfc: Fix possible memory leak when failing to issue CMF WQE + - gadgetfs: ep_io - wait until IRQ finishes + - coresight: etm4x: avoid build failure with unrolled loops + - habanalabs/gaudi: fix shift out of bounds + - habanalabs/gaudi: mask constant value before cast + - mmc: tmio: avoid glitches when resetting + - pinctrl: intel: Check against matching data instead of ACPI companion + - cxl: Fix a memory leak in an error handling path + - PCI/ACPI: Guard ARM64-specific mcfg_quirks + - um: add "noreboot" command line option for PANIC_TIMEOUT=-1 setups + - dmaengine: dw-axi-dmac: do not print NULL LLI during error + - dmaengine: dw-axi-dmac: ignore interrupt if no descriptor + - RDMA/rxe: Limit the number of calls to each tasklet + - csky/kprobe: reclaim insn_slot on kprobe unregistration + - selftests/kprobe: Do not test for GRP/ without event failures + - dmaengine: sprd: Cleanup in .remove() after pm_runtime_get_sync() failed + - openrisc: io: Define iounmap argument as volatile + - phy: samsung: phy-exynos-pcie: sanitize init/power_on callbacks + - md: Notify sysfs sync_completed in md_reap_sync_thread() + - nvmet-tcp: fix lockdep complaint on nvmet_tcp_wq flush during queue teardown + - drivers:md:fix a potential use-after-free bug + - ext4: avoid remove directory when directory is corrupted + - ext4: avoid resizing to a partial cluster size + - lib/list_debug.c: Detect uninitialized lists + - tty: serial: Fix refcount leak bug in ucc_uart.c + - KVM: PPC: Book3S HV: Fix "rm_exit" entry in debugfs timings + - vfio: Clear the caps->buf to NULL after free + - mips: cavium-octeon: Fix missing of_node_put() in octeon2_usb_clocks_start + - iommu/io-pgtable-arm-v7s: Add a quirk to allow pgtable PA up to 35bit + - modules: Ensure natural alignment for .altinstructions and __bug_table + sections + - ASoC: rsnd: care default case on rsnd_ssiu_busif_err_irq_ctrl() + - riscv: dts: sifive: Add fu740 topology information + - riscv: dts: canaan: Add k210 topology information + - riscv: mmap with PROT_WRITE but no PROT_READ is invalid + - RISC-V: Add fast call path of crash_kexec() + - watchdog: export lockup_detector_reconfigure + - powerpc/32: Set an IBAT covering up to _einittext during init + - powerpc/32: Don't always pass -mcpu=powerpc to the compiler + - ovl: warn if trusted xattr creation fails + - powerpc/ioda/iommu/debugfs: Generate unique debugfs entries + - ALSA: core: Add async signal helpers + - ALSA: timer: Use deferred fasync helper + - ALSA: control: Use deferred fasync helper + - f2fs: fix to avoid use f2fs_bug_on() in f2fs_new_node_page() + - f2fs: fix to do sanity check on segment type in build_sit_entries() + - smb3: check xattr value length earlier + - powerpc/64: Init jump labels before parse_early_param() + - venus: pm_helpers: Fix warning in OPP during probe + - video: fbdev: i740fb: Check the argument of i740_calc_vclk() + - MIPS: tlbex: Explicitly compare _PAGE_NO_EXEC against 0 + - can: j1939: j1939_sk_queue_activate_next_locked(): replace WARN_ON_ONCE with + netdev_warn_once() + - scsi: ufs: ufs-mediatek: Fix build error and type mismatch + - xfs: flush inodegc workqueue tasks before cancel + - xfs: reserve quota for dir expansion when linking/unlinking files + - xfs: reserve quota for target dir expansion when renaming files + - xfs: remove infinite loop when reserving free block pool + - xfs: always succeed at setting the reserve pool size + - xfs: fix overfilling of reserve pool + - xfs: fix soft lockup via spinning in filestream ag selection loop + - xfs: revert "xfs: actually bump warning counts when we send warnings" + - xfs: reject crazy array sizes being fed to XFS_IOC_GETBMAP* + - Linux 5.15.63 + * Jammy update: v5.15.62 upstream stable release (LP: #1990554) + - io_uring: use original request task for inflight tracking + - tee: add overflow check in register_shm_helper() + - net_sched: cls_route: disallow handle of 0 + - ksmbd: prevent out of bound read for SMB2_WRITE + - ksmbd: fix heap-based overflow in set_ntacl_dacl() + - btrfs: only write the sectors in the vertical stripe which has data stripes + - btrfs: raid56: don't trust any cached sector in __raid56_parity_recover() + - Linux 5.15.62 + * Jammy update: v5.15.61 upstream stable release (LP: #1990162) + - Makefile: link with -z noexecstack --no-warn-rwx-segments + - x86: link vdso and boot with -z noexecstack --no-warn-rwx-segments + - Revert "pNFS: nfs3_set_ds_client should set NFS_CS_NOPING" + - scsi: Revert "scsi: qla2xxx: Fix disk failure to rediscover" + - pNFS/flexfiles: Report RDMA connection errors to the server + - NFSD: Clean up the show_nf_flags() macro + - nfsd: eliminate the NFSD_FILE_BREAK_* flags + - ALSA: usb-audio: Add quirk for Behringer UMC202HD + - ALSA: bcd2000: Fix a UAF bug on the error path of probing + - ALSA: hda/realtek: Add quirk for Clevo NV45PZ + - ALSA: hda/realtek: Add quirk for HP Spectre x360 15-eb0xxx + - wifi: mac80211_hwsim: fix race condition in pending packet + - wifi: mac80211_hwsim: add back erroneously removed cast + - wifi: mac80211_hwsim: use 32-bit skb cookie + - add barriers to buffer_uptodate and set_buffer_uptodate + - lockd: detect and reject lock arguments that overflow + - HID: hid-input: add Surface Go battery quirk + - HID: wacom: Only report rotation for art pen + - HID: wacom: Don't register pad_input for touch switch + - KVM: nVMX: Snapshot pre-VM-Enter BNDCFGS for !nested_run_pending case + - KVM: nVMX: Snapshot pre-VM-Enter DEBUGCTL for !nested_run_pending case + - KVM: SVM: Don't BUG if userspace injects an interrupt with GIF=0 + - KVM: s390: pv: don't present the ecall interrupt twice + - KVM: x86: Split kvm_is_valid_cr4() and export only the non-vendor bits + - KVM: nVMX: Let userspace set nVMX MSR to any _host_ supported value + - KVM: nVMX: Account for KVM reserved CR4 bits in consistency checks + - KVM: nVMX: Inject #UD if VMXON is attempted with incompatible CR0/CR4 + - KVM: x86: Mark TSS busy during LTR emulation _after_ all fault checks + - KVM: x86: Set error code to segment selector on LLDT/LTR non-canonical #GP + - KVM: nVMX: Always enable TSC scaling for L2 when it was enabled for L1 + - KVM: x86: Tag kvm_mmu_x86_module_init() with __init + - KVM: x86: do not report preemption if the steal time cache is stale + - KVM: x86: revalidate steal time cache if MSR value changes + - riscv: set default pm_power_off to NULL + - ALSA: hda/conexant: Add quirk for LENOVO 20149 Notebook model + - ALSA: hda/cirrus - support for iMac 12,1 model + - ALSA: hda/realtek: Add quirk for another Asus K42JZ model + - ALSA: hda/realtek: Add a quirk for HP OMEN 15 (8786) mute LED + - tty: vt: initialize unicode screen buffer + - vfs: Check the truncate maximum size in inode_newsize_ok() + - fs: Add missing umask strip in vfs_tmpfile + - thermal: sysfs: Fix cooling_device_stats_setup() error code path + - fbcon: Fix boundary checks for fbcon=vc:n1-n2 parameters + - fbcon: Fix accelerated fbdev scrolling while logo is still shown + - usbnet: Fix linkwatch use-after-free on disconnect + - fix short copy handling in copy_mc_pipe_to_iter() + - crypto: ccp - Use kzalloc for sev ioctl interfaces to prevent kernel memory + leak + - ovl: drop WARN_ON() dentry is NULL in ovl_encode_fh() + - parisc: Fix device names in /proc/iomem + - parisc: Drop pa_swapper_pg_lock spinlock + - parisc: Check the return value of ioremap() in lba_driver_probe() + - parisc: io_pgetevents_time64() needs compat syscall in 32-bit compat mode + - riscv:uprobe fix SR_SPIE set/clear handling + - dt-bindings: riscv: fix SiFive l2-cache's cache-sets + - RISC-V: kexec: Fixup use of smp_processor_id() in preemptible context + - RISC-V: Fixup get incorrect user mode PC for kernel mode regs + - RISC-V: Fixup schedule out issue in machine_crash_shutdown() + - RISC-V: Add modules to virtual kernel memory layout dump + - rtc: rx8025: fix 12/24 hour mode detection on RX-8035 + - drm/gem: Properly annotate WW context on drm_gem_lock_reservations() error + - drm/shmem-helper: Add missing vunmap on error + - drm/vc4: hdmi: Disable audio if dmas property is present but empty + - drm/hyperv-drm: Include framebuffer and EDID headers + - drm/nouveau: fix another off-by-one in nvbios_addr + - drm/nouveau: Don't pm_runtime_put_sync(), only pm_runtime_put_autosuspend() + - drm/nouveau/acpi: Don't print error when we get -EINPROGRESS from pm_runtime + - drm/nouveau/kms: Fix failure path for creating DP connectors + - drm/amdgpu: Check BO's requested pinning domains against its + preferred_domains + - bpf: Fix KASAN use-after-free Read in compute_effective_progs + - btrfs: reject log replay if there is unsupported RO compat flag + - mtd: rawnand: arasan: Fix clock rate in NV-DDR + - mtd: rawnand: arasan: Update NAND bus clock instead of system clock + - um: Remove straying parenthesis + - um: seed rng using host OS rng + - iio: fix iio_format_avail_range() printing for none IIO_VAL_INT + - iio: light: isl29028: Fix the warning in isl29028_remove() + - scsi: sg: Allow waiting for commands to complete on removed device + - scsi: qla2xxx: Fix incorrect display of max frame size + - scsi: qla2xxx: Zero undefined mailbox IN registers + - soundwire: qcom: Check device status before reading devid + - ksmbd: fix memory leak in smb2_handle_negotiate + - ksmbd: prevent out of bound read for SMB2_TREE_CONNNECT + - ksmbd: fix use-after-free bug in smb2_tree_disconect + - fuse: limit nsec + - fuse: ioctl: translate ENOSYS + - serial: mvebu-uart: uart2 error bits clearing + - md-raid10: fix KASAN warning + - mbcache: don't reclaim used entries + - mbcache: add functions to delete entry if unused + - media: [PATCH] pci: atomisp_cmd: fix three missing checks on list iterator + - ia64, processor: fix -Wincompatible-pointer-types in ia64_get_irr() + - PCI: Add defines for normal and subtractive PCI bridges + - powerpc/fsl-pci: Fix Class Code of PCIe Root Port + - powerpc/ptdump: Fix display of RW pages on FSL_BOOK3E + - powerpc/powernv: Avoid crashing if rng is NULL + - MIPS: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK + - coresight: Clear the connection field properly + - usb: typec: ucsi: Acknowledge the GET_ERROR_STATUS command completion + - USB: HCD: Fix URB giveback issue in tasklet function + - ARM: dts: uniphier: Fix USB interrupts for PXs2 SoC + - arm64: dts: uniphier: Fix USB interrupts for PXs3 SoC + - usb: dwc3: gadget: refactor dwc3_repare_one_trb + - usb: dwc3: gadget: fix high speed multiplier setting + - netfilter: nf_tables: fix null deref due to zeroed list head + - epoll: autoremove wakers even more aggressively + - x86: Handle idle=nomwait cmdline properly for x86_idle + - arch: make TRACE_IRQFLAGS_NMI_SUPPORT generic + - arm64: Do not forget syscall when starting a new thread. + - arm64: fix oops in concurrently setting insn_emulation sysctls + - ext2: Add more validity checks for inode counts + - sched/fair: Introduce SIS_UTIL to search idle CPU based on sum of util_avg + - genirq: Don't return error on missing optional irq_request_resources() + - irqchip/mips-gic: Only register IPI domain when SMP is enabled + - genirq: GENERIC_IRQ_IPI depends on SMP + - sched/core: Always flush pending blk_plug + - irqchip/mips-gic: Check the return value of ioremap() in gic_of_init() + - wait: Fix __wait_event_hrtimeout for RT/DL tasks + - ARM: dts: imx6ul: add missing properties for sram + - ARM: dts: imx6ul: change operating-points to uint32-matrix + - ARM: dts: imx6ul: fix keypad compatible + - ARM: dts: imx6ul: fix csi node compatible + - ARM: dts: imx6ul: fix lcdif node compatible + - ARM: dts: imx6ul: fix qspi node compatible + - ARM: dts: BCM5301X: Add DT for Meraki MR26 + - ARM: dts: ux500: Fix Codina accelerometer mounting matrix + - ARM: dts: ux500: Fix Gavini accelerometer mounting matrix + - spi: synquacer: Add missing clk_disable_unprepare() + - ARM: OMAP2+: display: Fix refcount leak bug + - ARM: OMAP2+: pdata-quirks: Fix refcount leak bug + - ACPI: EC: Remove duplicate ThinkPad X1 Carbon 6th entry from DMI quirks + - ACPI: EC: Drop the EC_FLAGS_IGNORE_DSDT_GPE quirk + - ACPI: PM: save NVS memory for Lenovo G40-45 + - ACPI: LPSS: Fix missing check in register_device_clock() + - ARM: dts: qcom: sdx55: Fix the IRQ trigger type for UART + - arm64: dts: qcom: ipq8074: fix NAND node name + - arm64: dts: allwinner: a64: orangepi-win: Fix LED node name + - ARM: shmobile: rcar-gen2: Increase refcount for new reference + - firmware: tegra: Fix error check return value of debugfs_create_file() + - hwmon: (dell-smm) Add Dell XPS 13 7390 to fan control whitelist + - hwmon: (sht15) Fix wrong assumptions in device remove callback + - PM: hibernate: defer device probing when resuming from hibernation + - selinux: fix memleak in security_read_state_kernel() + - selinux: Add boundary check in put_entry() + - kasan: test: Silence GCC 12 warnings + - drm/amdgpu: Remove one duplicated ef removal + - powerpc/64s: Disable stack variable initialisation for prom_init + - spi: spi-rspi: Fix PIO fallback on RZ platforms + - ARM: findbit: fix overflowing offset + - meson-mx-socinfo: Fix refcount leak in meson_mx_socinfo_init + - arm64: dts: renesas: beacon: Fix regulator node names + - spi: spi-altera-dfl: Fix an error handling path + - ARM: bcm: Fix refcount leak in bcm_kona_smc_init + - ACPI: processor/idle: Annotate more functions to live in cpuidle section + - ARM: dts: imx7d-colibri-emmc: add cpu1 supply + - soc: renesas: r8a779a0-sysc: Fix A2DP1 and A2CV[2357] PDR values + - scsi: hisi_sas: Use managed PCI functions + - dt-bindings: iio: accel: Add DT binding doc for ADXL355 + - soc: amlogic: Fix refcount leak in meson-secure-pwrc.c + - arm64: dts: renesas: Fix thermal-sensors on single-zone sensors + - x86/pmem: Fix platform-device leak in error path + - ARM: dts: ast2500-evb: fix board compatible + - ARM: dts: ast2600-evb: fix board compatible + - ARM: dts: ast2600-evb-a1: fix board compatible + - arm64: dts: mt8192: Fix idle-states nodes naming scheme + - arm64: dts: mt8192: Fix idle-states entry-method + - arm64: select TRACE_IRQFLAGS_NMI_SUPPORT + - arm64: cpufeature: Allow different PMU versions in ID_DFR0_EL1 + - locking/lockdep: Fix lockdep_init_map_*() confusion + - arm64: dts: qcom: sc7180: Remove ipa_fw_mem node on trogdor + - soc: fsl: guts: machine variable might be unset + - block: fix infinite loop for invalid zone append + - ARM: dts: qcom: mdm9615: add missing PMIC GPIO reg + - ARM: OMAP2+: Fix refcount leak in omapdss_init_of + - ARM: OMAP2+: Fix refcount leak in omap3xxx_prm_late_init + - arm64: dts: qcom: sdm630: disable GPU by default + - arm64: dts: qcom: sdm630: fix the qusb2phy ref clock + - arm64: dts: qcom: sdm630: fix gpu's interconnect path + - arm64: dts: qcom: sdm636-sony-xperia-ganges-mermaid: correct sdc2 pinconf + - cpufreq: zynq: Fix refcount leak in zynq_get_revision + - regulator: qcom_smd: Fix pm8916_pldo range + - ACPI: APEI: Fix _EINJ vs EFI_MEMORY_SP + - ARM: dts: qcom-msm8974: fix irq type on blsp2_uart1 + - soc: qcom: ocmem: Fix refcount leak in of_get_ocmem + - soc: qcom: aoss: Fix refcount leak in qmp_cooling_devices_register + - ARM: dts: qcom: pm8841: add required thermal-sensor-cells + - bus: hisi_lpc: fix missing platform_device_put() in hisi_lpc_acpi_probe() + - stack: Declare {randomize_,}kstack_offset to fix Sparse warnings + - arm64: dts: qcom: msm8916: Fix typo in pronto remoteproc node + - ACPI: APEI: explicit init of HEST and GHES in apci_init() + - drivers/iio: Remove all strcpy() uses + - ACPI: VIOT: Fix ACS setup + - arm64: dts: qcom: sm6125: Move sdc2 pinctrl from seine-pdx201 to sm6125 + - arm64: dts: qcom: sm6125: Append -state suffix to pinctrl nodes + - arm64: dts: qcom: sm8250: add missing PCIe PHY clock-cells + - arm64: dts: mt7622: fix BPI-R64 WPS button + - arm64: tegra: Fixup SYSRAM references + - arm64: tegra: Update Tegra234 BPMP channel addresses + - arm64: tegra: Mark BPMP channels as no-memory-wc + - arm64: tegra: Fix SDMMC1 CD on P2888 + - erofs: avoid consecutive detection for Highmem memory + - blk-mq: don't create hctx debugfs dir until q->debugfs_dir is created + - spi: Fix simplification of devm_spi_register_controller + - spi: tegra20-slink: fix UAF in tegra_slink_remove() + - hwmon: (drivetemp) Add module alias + - blktrace: Trace remapped requests correctly + - PM: domains: Ensure genpd_debugfs_dir exists before remove + - dm writecache: return void from functions + - dm writecache: count number of blocks read, not number of read bios + - dm writecache: count number of blocks written, not number of write bios + - dm writecache: count number of blocks discarded, not number of discard bios + - regulator: of: Fix refcount leak bug in of_get_regulation_constraints() + - soc: qcom: Make QCOM_RPMPD depend on PM + - arm64: dts: qcom: qcs404: Fix incorrect USB2 PHYs assignment + - irqdomain: Report irq number for NOMAP domains + - drivers/perf: arm_spe: Fix consistency of SYS_PMSCR_EL1.CX + - nohz/full, sched/rt: Fix missed tick-reenabling bug in dequeue_task_rt() + - x86/extable: Fix ex_handler_msr() print condition + - selftests/seccomp: Fix compile warning when CC=clang + - thermal/tools/tmon: Include pthread and time headers in tmon.h + - dm: return early from dm_pr_call() if DM device is suspended + - pwm: sifive: Simplify offset calculation for PWMCMP registers + - pwm: sifive: Ensure the clk is enabled exactly once per running PWM + - pwm: sifive: Shut down hardware only after pwmchip_remove() completed + - pwm: lpc18xx-sct: Reduce number of devm memory allocations + - pwm: lpc18xx-sct: Simplify driver by not using pwm_[gs]et_chip_data() + - pwm: lpc18xx: Fix period handling + - drm/dp: Export symbol / kerneldoc fixes for DP AUX bus + - drm/bridge: tc358767: Move (e)DP bridge endpoint parsing into dedicated + function + - ath10k: do not enforce interrupt trigger type + - drm/st7735r: Fix module autoloading for Okaya RH128128T + - drm/panel: Fix build error when CONFIG_DRM_PANEL_SAMSUNG_ATNA33XC20=y && + CONFIG_DRM_DISPLAY_HELPER=m + - wifi: rtlwifi: fix error codes in rtl_debugfs_set_write_h2c() + - ath11k: fix netdev open race + - drm/mipi-dbi: align max_chunk to 2 in spi_transfer + - ath11k: Fix incorrect debug_mask mappings + - drm/radeon: fix potential buffer overflow in ni_set_mc_special_registers() + - drm/mediatek: Modify dsi funcs to atomic operations + - drm/mediatek: Separate poweron/poweroff from enable/disable and define new + funcs + - drm/mediatek: Add pull-down MIPI operation in mtk_dsi_poweroff function + - drm/meson: encoder_hdmi: switch to bridge DRM_BRIDGE_ATTACH_NO_CONNECTOR + - drm/meson: encoder_hdmi: Fix refcount leak in meson_encoder_hdmi_init + - drm/bridge: lt9611uxc: Cancel only driver's work + - i2c: npcm: Remove own slave addresses 2:10 + - i2c: npcm: Correct slave role behavior + - i2c: mxs: Silence a clang warning + - virtio-gpu: fix a missing check to avoid NULL dereference + - drm/shmem-helper: Unexport drm_gem_shmem_create_with_handle() + - drm/shmem-helper: Export dedicated wrappers for GEM object functions + - drm/shmem-helper: Pass GEM shmem object in public interfaces + - drm/virtio: Fix NULL vs IS_ERR checking in virtio_gpu_object_shmem_init + - drm: adv7511: override i2c address of cec before accessing it + - crypto: sun8i-ss - do not allocate memory when handling hash requests + - crypto: sun8i-ss - fix error codes in allocate_flows() + - net: fix sk_wmem_schedule() and sk_rmem_schedule() errors + - can: netlink: allow configuring of fixed bit rates without need for + do_set_bittiming callback + - can: netlink: allow configuring of fixed data bit rates without need for + do_set_data_bittiming callback + - i2c: Fix a potential use after free + - crypto: sun8i-ss - fix infinite loop in sun8i_ss_setup_ivs() + - media: atmel: atmel-sama7g5-isc: fix warning in configs without OF + - media: tw686x: Register the irq at the end of probe + - media: imx-jpeg: Correct some definition according specification + - media: imx-jpeg: Leave a blank space before the configuration data + - media: imx-jpeg: Add pm-runtime support for imx-jpeg + - media: imx-jpeg: use NV12M to represent non contiguous NV12 + - media: imx-jpeg: Set V4L2_BUF_FLAG_LAST at eos + - media: imx-jpeg: Refactor function mxc_jpeg_parse + - media: imx-jpeg: Identify and handle precision correctly + - media: imx-jpeg: Handle source change in a function + - media: imx-jpeg: Support dynamic resolution change + - media: imx-jpeg: Align upwards buffer size + - media: imx-jpeg: Implement drain using v4l2-mem2mem helpers + - wifi: iwlegacy: 4965: fix potential off-by-one overflow in + il4965_rs_fill_link_cmd() + - drm/radeon: fix incorrrect SPDX-License-Identifiers + - rcutorture: Warn on individual rcu_torture_init() error conditions + - rcutorture: Don't cpuhp_remove_state() if cpuhp_setup_state() failed + - rcutorture: Fix ksoftirqd boosting timing and iteration + - test_bpf: fix incorrect netdev features + - crypto: ccp - During shutdown, check SEV data pointer before using + - drm: bridge: adv7511: Add check for mipi_dsi_driver_register + - media: imx-jpeg: Disable slot interrupt when frame done + - drm/mcde: Fix refcount leak in mcde_dsi_bind + - media: hdpvr: fix error value returns in hdpvr_read + - media: v4l2-mem2mem: prevent pollerr when last_buffer_dequeued is set + - media: driver/nxp/imx-jpeg: fix a unexpected return value problem + - media: tw686x: Fix memory leak in tw686x_video_init + - drm/vc4: plane: Remove subpixel positioning check + - drm/vc4: plane: Fix margin calculations for the right/bottom edges + - drm/bridge: Add a function to abstract away panels + - drm/vc4: dsi: Switch to devm_drm_of_get_bridge + - drm/vc4: Use of_device_get_match_data() + - drm/vc4: dsi: Release workaround buffer and DMA + - drm/vc4: dsi: Correct DSI divider calculations + - drm/vc4: dsi: Correct pixel order for DSI0 + - drm/vc4: dsi: Register dsi0 as the correct vc4 encoder type + - drm/vc4: dsi: Fix dsi0 interrupt support + - drm/vc4: dsi: Add correct stop condition to vc4_dsi_encoder_disable + iteration + - drm/vc4: hdmi: Fix HPD GPIO detection + - drm/vc4: hdmi: Avoid full hdmi audio fifo writes + - drm/vc4: hdmi: Reset HDMI MISC_CONTROL register + - drm/vc4: hdmi: Fix timings for interlaced modes + - drm/vc4: hdmi: Correct HDMI timing registers for interlaced modes + - crypto: arm64/gcm - Select AEAD for GHASH_ARM64_CE + - selftests/xsk: Destroy BPF resources only when ctx refcount drops to 0 + - drm/rockchip: vop: Don't crash for invalid duplicate_state() + - drm/rockchip: Fix an error handling path rockchip_dp_probe() + - drm/mediatek: dpi: Remove output format of YUV + - drm/mediatek: dpi: Only enable dpi after the bridge is enabled + - drm: bridge: sii8620: fix possible off-by-one + - hinic: Use the bitmap API when applicable + - net: hinic: fix bug that ethtool get wrong stats + - net: hinic: avoid kernel hung in hinic_get_stats64() + - drm/msm/mdp5: Fix global state lock backoff + - crypto: hisilicon/sec - don't sleep when in softirq + - crypto: hisilicon - Kunpeng916 crypto driver don't sleep when in softirq + - media: platform: mtk-mdp: Fix mdp_ipi_comm structure alignment + - drm/msm: Avoid dirtyfb stalls on video mode displays (v2) + - drm/msm/dpu: Fix for non-visible planes + - mt76: mt76x02u: fix possible memory leak in __mt76x02u_mcu_send_msg + - mt76: mt7615: do not update pm stats in case of error + - ieee80211: add EHT 1K aggregation definitions + - mt76: mt7921: fix aggregation subframes setting to HE max + - mt76: mt7921: enlarge maximum VHT MPDU length to 11454 + - mediatek: mt76: mac80211: Fix missing of_node_put() in mt76_led_init() + - mediatek: mt76: eeprom: fix missing of_node_put() in + mt76_find_power_limits_node() + - skmsg: Fix invalid last sg check in sk_msg_recvmsg() + - drm/exynos/exynos7_drm_decon: free resources when clk_set_parent() failed. + - tcp: make retransmitted SKB fit into the send window + - libbpf: Fix the name of a reused map + - selftests: timers: valid-adjtimex: build fix for newer toolchains + - selftests: timers: clocksource-switch: fix passing errors from child + - bpf: Fix subprog names in stack traces. + - fs: check FMODE_LSEEK to control internal pipe splicing + - media: cedrus: h265: Fix flag name + - media: hantro: postproc: Fix motion vector space size + - media: hantro: Simplify postprocessor + - media: hevc: Embedded indexes in RPS + - media: staging: media: hantro: Fix typos + - wifi: wil6210: debugfs: fix info leak in wil_write_file_wmi() + - wifi: p54: Fix an error handling path in p54spi_probe() + - wifi: p54: add missing parentheses in p54_flush() + - selftests/bpf: fix a test for snprintf() overflow + - libbpf: fix an snprintf() overflow check + - can: pch_can: do not report txerr and rxerr during bus-off + - can: rcar_can: do not report txerr and rxerr during bus-off + - can: sja1000: do not report txerr and rxerr during bus-off + - can: hi311x: do not report txerr and rxerr during bus-off + - can: sun4i_can: do not report txerr and rxerr during bus-off + - can: kvaser_usb_hydra: do not report txerr and rxerr during bus-off + - can: kvaser_usb_leaf: do not report txerr and rxerr during bus-off + - can: usb_8dev: do not report txerr and rxerr during bus-off + - can: error: specify the values of data[5..7] of CAN error frames + - can: pch_can: pch_can_error(): initialize errc before using it + - Bluetooth: hci_intel: Add check for platform_driver_register + - i2c: cadence: Support PEC for SMBus block read + - i2c: mux-gpmux: Add of_node_put() when breaking out of loop + - wifi: wil6210: debugfs: fix uninitialized variable use in + `wil_write_file_wmi()` + - wifi: iwlwifi: mvm: fix double list_add at iwl_mvm_mac_wake_tx_queue + - wifi: libertas: Fix possible refcount leak in if_usb_probe() + - media: cedrus: hevc: Add check for invalid timestamp + - net/mlx5e: Remove WARN_ON when trying to offload an unsupported TLS + cipher/version + - net/mlx5e: Fix the value of MLX5E_MAX_RQ_NUM_MTTS + - net/mlx5: Adjust log_max_qp to be 18 at most + - crypto: hisilicon/hpre - don't use GFP_KERNEL to alloc mem during softirq + - crypto: inside-secure - Add missing MODULE_DEVICE_TABLE for of + - crypto: hisilicon/sec - fix auth key size error + - inet: add READ_ONCE(sk->sk_bound_dev_if) in INET_MATCH() + - ipv6: add READ_ONCE(sk->sk_bound_dev_if) in INET6_MATCH() + - net: allow unbound socket for packets in VRF when tcp_l3mdev_accept set + - netdevsim: fib: Fix reference count leak on route deletion failure + - wifi: rtw88: check the return value of alloc_workqueue() + - iavf: Fix max_rate limiting + - iavf: Fix 'tc qdisc show' listing too many queues + - netdevsim: Avoid allocation warnings triggered from user space + - net: rose: fix netdev reference changes + - net: ionic: fix error check for vlan flags in ionic_set_nic_features() + - dccp: put dccp_qpolicy_full() and dccp_qpolicy_push() in the same lock + - net: usb: make USB_RTL8153_ECM non user configurable + - wireguard: ratelimiter: use hrtimer in selftest + - wireguard: allowedips: don't corrupt stack when detecting overflow + - HID: amd_sfh: Don't show client init failed as error when discovery fails + - clk: renesas: r9a06g032: Fix UART clkgrp bitsel + - mtd: maps: Fix refcount leak in of_flash_probe_versatile + - mtd: maps: Fix refcount leak in ap_flash_init + - mtd: rawnand: meson: Fix a potential double free issue + - of: check previous kernel's ima-kexec-buffer against memory bounds + - scsi: qla2xxx: edif: Reduce Initiator-Initiator thrashing + - scsi: qla2xxx: edif: Fix potential stuck session in sa update + - scsi: qla2xxx: edif: Reduce connection thrash + - scsi: qla2xxx: edif: Fix inconsistent check of db_flags + - scsi: qla2xxx: edif: Synchronize NPIV deletion with authentication + application + - scsi: qla2xxx: edif: Add retry for ELS passthrough + - scsi: qla2xxx: edif: Fix n2n discovery issue with secure target + - scsi: qla2xxx: edif: Fix n2n login retry for secure device + - KVM: SVM: Unwind "speculative" RIP advancement if INTn injection "fails" + - KVM: SVM: Stuff next_rip on emulated INT3 injection if NRIPS is supported + - phy: samsung: exynosautov9-ufs: correct TSRV register configurations + - PCI: microchip: Fix refcount leak in mc_pcie_init_irq_domains() + - PCI: tegra194: Fix PM error handling in tegra_pcie_config_ep() + - HID: cp2112: prevent a buffer overflow in cp2112_xfer() + - mtd: sm_ftl: Fix deadlock caused by cancel_work_sync in sm_release + - mtd: partitions: Fix refcount leak in parse_redboot_of + - mtd: parsers: ofpart: Fix refcount leak in bcm4908_partitions_fw_offset + - mtd: st_spi_fsm: Add a clk_disable_unprepare() in .probe()'s error path + - PCI: mediatek-gen3: Fix refcount leak in mtk_pcie_init_irq_domains() + - fpga: altera-pr-ip: fix unsigned comparison with less than zero + - usb: host: Fix refcount leak in ehci_hcd_ppc_of_probe + - usb: ohci-nxp: Fix refcount leak in ohci_hcd_nxp_probe + - usb: gadget: tegra-xudc: Fix error check in tegra_xudc_powerdomain_init() + - usb: xhci: tegra: Fix error check + - netfilter: xtables: Bring SPDX identifier back + - scsi: qla2xxx: edif: Send LOGO for unexpected IKE message + - scsi: qla2xxx: edif: Reduce disruption due to multiple app start + - scsi: qla2xxx: edif: Fix no login after app start + - scsi: qla2xxx: edif: Tear down session if keys have been removed + - scsi: qla2xxx: edif: Fix session thrash + - scsi: qla2xxx: edif: Fix no logout on delete for N2N + - iio: accel: bma400: Fix the scale min and max macro values + - platform/chrome: cros_ec: Always expose last resume result + - iio: accel: bma400: Reordering of header files + - clk: mediatek: reset: Fix written reset bit offset + - lib/test_hmm: avoid accessing uninitialized pages + - memremap: remove support for external pgmap refcounts + - mm/memremap: fix memunmap_pages() race with get_dev_pagemap() + - KVM: Don't set Accessed/Dirty bits for ZERO_PAGE + - mwifiex: Ignore BTCOEX events from the 88W8897 firmware + - mwifiex: fix sleep in atomic context bugs caused by dev_coredumpv + - scsi: iscsi: Allow iscsi_if_stop_conn() to be called from kernel + - scsi: iscsi: Add helper to remove a session from the kernel + - scsi: iscsi: Fix session removal on shutdown + - dmaengine: dw-edma: Fix eDMA Rd/Wr-channels and DMA-direction semantics + - mtd: dataflash: Add SPI ID table + - clk: qcom: camcc-sm8250: Fix halt on boot by reducing driver's init level + - misc: rtsx: Fix an error handling path in rtsx_pci_probe() + - driver core: fix potential deadlock in __driver_attach + - clk: qcom: clk-krait: unlock spin after mux completion + - clk: qcom: gcc-msm8939: Add missing SYSTEM_MM_NOC_BFDCD_CLK_SRC + - clk: qcom: gcc-msm8939: Fix bimc_ddr_clk_src rcgr base address + - clk: qcom: gcc-msm8939: Add missing system_mm_noc_bfdcd_clk_src + - clk: qcom: gcc-msm8939: Point MM peripherals to system_mm_noc clock + - usb: host: xhci: use snprintf() in xhci_decode_trb() + - RDMA/rxe: Fix deadlock in rxe_do_local_ops() + - clk: qcom: ipq8074: fix NSS core PLL-s + - clk: qcom: ipq8074: SW workaround for UBI32 PLL lock + - clk: qcom: ipq8074: fix NSS port frequency tables + - clk: qcom: ipq8074: set BRANCH_HALT_DELAY flag for UBI clocks + - clk: qcom: camcc-sdm845: Fix topology around titan_top power domain + - clk: qcom: camcc-sm8250: Fix topology around titan_top power domain + - clk: qcom: clk-rcg2: Fail Duty-Cycle configuration if MND divider is not + enabled. + - clk: qcom: clk-rcg2: Make sure to not write d=0 to the NMD register + - mm/mempolicy: fix get_nodes out of bound access + - PCI: dwc: Stop link on host_init errors and de-initialization + - PCI: dwc: Add unroll iATU space support to dw_pcie_disable_atu() + - PCI: dwc: Disable outbound windows only for controllers using iATU + - PCI: dwc: Set INCREASE_REGION_SIZE flag based on limit address + - PCI: dwc: Deallocate EPC memory on dw_pcie_ep_init() errors + - PCI: dwc: Always enable CDM check if "snps,enable-cdm-check" exists + - soundwire: bus_type: fix remove and shutdown support + - soundwire: revisit driver bind/unbind and callbacks + - KVM: arm64: Don't return from void function + - dmaengine: sf-pdma: Add multithread support for a DMA channel + - PCI: endpoint: Don't stop controller when unbinding endpoint function + - scsi: qla2xxx: Check correct variable in qla24xx_async_gffid() + - intel_th: Fix a resource leak in an error handling path + - intel_th: msu-sink: Potential dereference of null pointer + - intel_th: msu: Fix vmalloced buffers + - binder: fix redefinition of seq_file attributes + - staging: rtl8192u: Fix sleep in atomic context bug in + dm_fsync_timer_callback + - mmc: sdhci-of-esdhc: Fix refcount leak in esdhc_signal_voltage_switch + - mmc: mxcmmc: Silence a clang warning + - mmc: renesas_sdhi: Get the reset handle early in the probe + - memstick/ms_block: Fix some incorrect memory allocation + - memstick/ms_block: Fix a memory leak + - mmc: sdhci-of-at91: fix set_uhs_signaling rewriting of MC1R + - of: device: Fix missing of_node_put() in of_dma_set_restricted_buffer + - mmc: block: Add single read for 4k sector cards + - KVM: s390: pv: leak the topmost page table when destroy fails + - PCI: qcom: Set up rev 2.1.0 PARF_PHY before enabling clocks + - scsi: smartpqi: Fix DMA direction for RAID requests + - xtensa: iss/network: provide release() callback + - xtensa: iss: fix handling error cases in iss_net_configure() + - usb: gadget: udc: amd5536 depends on HAS_DMA + - usb: aspeed-vhub: Fix refcount leak bug in ast_vhub_init_desc() + - usb: dwc3: core: Deprecate GCTL.CORESOFTRESET + - usb: dwc3: core: Do not perform GCTL_CORE_SOFTRESET during bootup + - usb: dwc3: qcom: fix missing optional irq warnings + - eeprom: idt_89hpesx: uninitialized data in idt_dbgfs_csr_write() + - phy: stm32: fix error return in stm32_usbphyc_phy_init + - interconnect: imx: fix max_node_id + - um: random: Don't initialise hwrng struct with zero + - RDMA/irdma: Fix a window for use-after-free + - RDMA/irdma: Fix VLAN connection with wildcard address + - RDMA/irdma: Fix setting of QP context err_rq_idx_valid field + - RDMA/rtrs-srv: Fix modinfo output for stringify + - RDMA/rtrs: Fix warning when use poll mode on client side. + - RDMA/rtrs: Replace duplicate check with is_pollqueue helper + - RDMA/rtrs: Introduce destroy_cq helper + - RDMA/rtrs: Do not allow sessname to contain special symbols / and . + - RDMA/rtrs: Rename rtrs_sess to rtrs_path + - RDMA/rtrs-srv: Rename rtrs_srv_sess to rtrs_srv_path + - RDMA/rtrs-clt: Rename rtrs_clt_sess to rtrs_clt_path + - RDMA/rtrs-clt: Replace list_next_or_null_rr_rcu with an inline function + - RDMA/qedr: Fix potential memory leak in __qedr_alloc_mr() + - RDMA/hns: Fix incorrect clearing of interrupt status register + - RDMA/siw: Fix duplicated reported IW_CM_EVENT_CONNECT_REPLY event + - iio: cros: Register FIFO callback after sensor is registered + - clk: qcom: gcc-msm8939: Fix weird field spacing in ftbl_gcc_camss_cci_clk + - RDMA/hfi1: fix potential memory leak in setup_base_ctxt() + - gpio: gpiolib-of: Fix refcount bugs in of_mm_gpiochip_add_data() + - HID: mcp2221: prevent a buffer overflow in mcp_smbus_write() + - HID: amd_sfh: Add NULL check for hid device + - dmaengine: imx-dma: Cast of_device_get_match_data() with (uintptr_t) + - scripts/gdb: lx-dmesg: read records individually + - scripts/gdb: fix 'lx-dmesg' on 32 bits arch + - RDMA/rxe: Fix mw bind to allow any consumer key portion + - mmc: cavium-octeon: Add of_node_put() when breaking out of loop + - mmc: cavium-thunderx: Add of_node_put() when breaking out of loop + - HID: alps: Declare U1_UNICORN_LEGACY support + - RDMA/rxe: For invalidate compare according to set keys in mr + - PCI: tegra194: Fix Root Port interrupt handling + - PCI: tegra194: Fix link up retry sequence + - HID: amd_sfh: Handle condition of "no sensors" + - USB: serial: fix tty-port initialized comments + - usb: cdns3: change place of 'priv_ep' assignment in + cdns3_gadget_ep_dequeue(), cdns3_gadget_ep_enable() + - mtd: spi-nor: fix spi_nor_spimem_setup_op() call in + spi_nor_erase_{sector,chip}() + - KVM: nVMX: Set UMIP bit CR4_FIXED1 MSR when emulating UMIP + - platform/olpc: Fix uninitialized data in debugfs write + - RDMA/srpt: Duplicate port name members + - RDMA/srpt: Introduce a reference count in struct srpt_device + - RDMA/srpt: Fix a use-after-free + - android: binder: stop saving a pointer to the VMA + - mm/mmap.c: fix missing call to vm_unacct_memory in mmap_region + - selftests: kvm: set rax before vmcall + - of/fdt: declared return type does not match actual return type + - RDMA/mlx5: Add missing check for return value in get namespace flow + - RDMA/rxe: Add memory barriers to kernel queues + - RDMA/rxe: Remove the is_user members of struct rxe_sq/rxe_rq/rxe_srq + - RDMA/rxe: Fix error unwind in rxe_create_qp() + - block/rnbd-srv: Set keep_id to true after mutex_trylock + - null_blk: fix ida error handling in null_add_dev() + - nvme: use command_id instead of req->tag in trace_nvme_complete_rq() + - nvme: define compat_ioctl again to unbreak 32-bit userspace. + - nvme: disable namespace access for unsupported metadata + - nvme: don't return an error from nvme_configure_metadata + - nvme: catch -ENODEV from nvme_revalidate_zones again + - block/bio: remove duplicate append pages code + - block: ensure iov_iter advances for added pages + - jbd2: fix outstanding credits assert in jbd2_journal_commit_transaction() + - ext4: recover csum seed of tmp_inode after migrating to extents + - jbd2: fix assertion 'jh->b_frozen_data == NULL' failure when journal aborted + - usb: cdns3: Don't use priv_dev uninitialized in cdns3_gadget_ep_enable() + - opp: Fix error check in dev_pm_opp_attach_genpd() + - ASoC: cros_ec_codec: Fix refcount leak in cros_ec_codec_platform_probe + - ASoC: samsung: Fix error handling in aries_audio_probe + - ASoC: imx-audmux: Silence a clang warning + - ASoC: mediatek: mt8173: Fix refcount leak in mt8173_rt5650_rt5676_dev_probe + - ASoC: mt6797-mt6351: Fix refcount leak in mt6797_mt6351_dev_probe + - ASoC: codecs: da7210: add check for i2c_add_driver + - ASoC: mediatek: mt8173-rt5650: Fix refcount leak in mt8173_rt5650_dev_probe + - serial: 8250: Export ICR access helpers for internal use + - serial: 8250: dma: Allow driver operations before starting DMA transfers + - serial: 8250_dw: Store LSR into lsr_saved_flags in dw8250_tx_wait_empty() + - ASoC: codecs: msm8916-wcd-digital: move gains from SX_TLV to S8_TLV + - ASoC: codecs: wcd9335: move gains from SX_TLV to S8_TLV + - rpmsg: char: Add mutex protection for rpmsg_eptdev_open() + - rpmsg: mtk_rpmsg: Fix circular locking dependency + - remoteproc: k3-r5: Fix refcount leak in k3_r5_cluster_of_init + - selftests/livepatch: better synchronize test_klp_callbacks_busy + - profiling: fix shift too large makes kernel panic + - remoteproc: imx_rproc: Fix refcount leak in imx_rproc_addr_init + - ASoC: samsung: h1940_uda1380: include proepr GPIO consumer header + - powerpc/perf: Optimize clearing the pending PMI and remove WARN_ON for PMI + check in power_pmu_disable + - ASoC: samsung: change gpiod_speaker_power and rx1950_audio from global to + static variables + - tty: n_gsm: Delete gsmtty open SABM frame when config requester + - tty: n_gsm: fix user open not possible at responder until initiator open + - tty: n_gsm: fix tty registration before control channel open + - tty: n_gsm: fix wrong queuing behavior in gsm_dlci_data_output() + - tty: n_gsm: fix missing timer to handle stalled links + - tty: n_gsm: fix non flow control frames during mux flow off + - tty: n_gsm: fix packet re-transmission without open control channel + - tty: n_gsm: fix race condition in gsmld_write() + - tty: n_gsm: fix resource allocation order in gsm_activate_mux() + - ASoC: qcom: Fix missing of_node_put() in + asoc_qcom_lpass_cpu_platform_probe() + - ASoC: imx-card: Fix DSD/PDM mclk frequency + - remoteproc: qcom: wcnss: Fix handling of IRQs + - vfio/ccw: Do not change FSM state in subchannel event + - serial: 8250_fsl: Don't report FE, PE and OE twice + - tty: n_gsm: fix wrong T1 retry count handling + - tty: n_gsm: fix DM command + - tty: n_gsm: fix missing corner cases in gsmld_poll() + - MIPS: vdso: Utilize __pa() for gic_pfn + - swiotlb: fail map correctly with failed io_tlb_default_mem + - ASoC: mt6359: Fix refcount leak bug + - serial: 8250_bcm7271: Save/restore RTS in suspend/resume + - iommu/exynos: Handle failed IOMMU device registration properly + - 9p: fix a bunch of checkpatch warnings + - 9p: Drop kref usage + - 9p: Add client parameter to p9_req_put() + - net: 9p: fix refcount leak in p9_read_work() error handling + - MIPS: Fixed __debug_virt_addr_valid() + - rpmsg: qcom_smd: Fix refcount leak in qcom_smd_parse_edge + - kfifo: fix kfifo_to_user() return type + - lib/smp_processor_id: fix imbalanced instrumentation_end() call + - proc: fix a dentry lock race between release_task and lookup + - remoteproc: qcom: pas: Check if coredump is enabled + - remoteproc: sysmon: Wait for SSCTL service to come up + - mfd: t7l66xb: Drop platform disable callback + - mfd: max77620: Fix refcount leak in max77620_initialise_fps + - iommu/arm-smmu: qcom_iommu: Add of_node_put() when breaking out of loop + - perf tools: Fix dso_id inode generation comparison + - s390/dump: fix old lowcore virtual vs physical address confusion + - s390/maccess: fix semantics of memcpy_real() and its callers + - s390/crash: fix incorrect number of bytes to copy to user space + - s390/zcore: fix race when reading from hardware system area + - ASoC: fsl_asrc: force cast the asrc_format type + - ASoC: fsl-asoc-card: force cast the asrc_format type + - ASoC: fsl_easrc: use snd_pcm_format_t type for sample_format + - ASoC: imx-card: use snd_pcm_format_t type for asrc_format + - ASoC: qcom: q6dsp: Fix an off-by-one in q6adm_alloc_copp() + - fuse: Remove the control interface for virtio-fs + - ASoC: audio-graph-card: Add of_node_put() in fail path + - watchdog: sp5100_tco: Fix a memory leak of EFCH MMIO resource + - watchdog: armada_37xx_wdt: check the return value of devm_ioremap() in + armada_37xx_wdt_probe() + - video: fbdev: amba-clcd: Fix refcount leak bugs + - video: fbdev: sis: fix typos in SiS_GetModeID() + - ASoC: mchp-spdifrx: disable end of block interrupt on failures + - powerpc/32: Call mmu_mark_initmem_nx() regardless of data block mapping. + - powerpc/32: Do not allow selection of e5500 or e6500 CPUs on PPC32 + - powerpc/iommu: Fix iommu_table_in_use for a small default DMA window case + - powerpc/pci: Prefer PCI domain assignment via DT 'linux,pci-domain' and + alias + - tty: serial: fsl_lpuart: correct the count of break characters + - s390/dump: fix os_info virtual vs physical address confusion + - s390/smp: cleanup target CPU callback starting + - s390/smp: cleanup control register update routines + - s390/maccess: rework absolute lowcore accessors + - s390/smp: enforce lowcore protection on CPU restart + - f2fs: fix to remove F2FS_COMPR_FL and tag F2FS_NOCOMP_FL at the same time + - powerpc/spufs: Fix refcount leak in spufs_init_isolated_loader + - powerpc/xive: Fix refcount leak in xive_get_max_prio + - powerpc/cell/axon_msi: Fix refcount leak in setup_msi_msg_address + - perf symbol: Fail to read phdr workaround + - kprobes: Forbid probing on trampoline and BPF code areas + - x86/bus_lock: Don't assume the init value of DEBUGCTLMSR.BUS_LOCK_DETECT to + be zero + - powerpc/pci: Fix PHB numbering when using opal-phbid + - genelf: Use HAVE_LIBCRYPTO_SUPPORT, not the never defined HAVE_LIBCRYPTO + - scripts/faddr2line: Fix vmlinux detection on arm64 + - sched/deadline: Merge dl_task_can_attach() and dl_cpu_busy() + - sched, cpuset: Fix dl_cpu_busy() panic due to empty cs->cpus_allowed + - x86/numa: Use cpumask_available instead of hardcoded NULL check + - video: fbdev: arkfb: Fix a divide-by-zero bug in ark_set_pixclock() + - tools/thermal: Fix possible path truncations + - sched: Fix the check of nr_running at queue wakelist + - sched: Remove the limitation of WF_ON_CPU on wakelist if wakee cpu is idle + - sched/core: Do not requeue task on CPU excluded from cpus_mask + - f2fs: allow compression for mmap files in compress_mode=user + - f2fs: do not allow to decompress files have FI_COMPRESS_RELEASED + - video: fbdev: vt8623fb: Check the size of screen before memset_io() + - video: fbdev: arkfb: Check the size of screen before memset_io() + - video: fbdev: s3fb: Check the size of screen before memset_io() + - scsi: ufs: core: Correct ufshcd_shutdown() flow + - scsi: zfcp: Fix missing auto port scan and thus missing target ports + - scsi: qla2xxx: Fix imbalance vha->vref_count + - scsi: qla2xxx: Fix discovery issues in FC-AL topology + - scsi: qla2xxx: Turn off multi-queue for 8G adapters + - scsi: qla2xxx: Fix crash due to stale SRB access around I/O timeouts + - scsi: qla2xxx: Fix excessive I/O error messages by default + - scsi: qla2xxx: Fix erroneous mailbox timeout after PCI error injection + - scsi: qla2xxx: Wind down adapter after PCIe error + - scsi: qla2xxx: Fix losing FCP-2 targets on long port disable with I/Os + - scsi: qla2xxx: Fix losing target when it reappears during delete + - scsi: qla2xxx: Fix losing FCP-2 targets during port perturbation tests + - x86/bugs: Enable STIBP for IBPB mitigated RETBleed + - ftrace/x86: Add back ftrace_expected assignment + - x86/kprobes: Update kcb status flag after singlestepping + - x86/olpc: fix 'logical not is only applied to the left hand side' + - SMB3: fix lease break timeout when multiple deferred close handles for the + same file. + - Input: gscps2 - check return value of ioremap() in gscps2_probe() + - __follow_mount_rcu(): verify that mount_lock remains unchanged + - spmi: trace: fix stack-out-of-bound access in SPMI tracing functions + - drm/mediatek: Allow commands to be sent during video mode + - drm/mediatek: Keep dsi as LP00 before dcs cmds transfer + - crypto: blake2s - remove shash module + - [Config] updateconfigs for CRYPTO_LIB_BLAKE2S + - drm/vc4: drv: Adopt the dma configuration from the HVS or V3D component + - usbnet: smsc95xx: Don't clear read-only PHY interrupt + - usbnet: smsc95xx: Avoid link settings race on interrupt reception + - firmware: arm_scpi: Ensure scpi_info is not assigned if the probe fails + - scsi: lpfc: SLI path split: Refactor lpfc_iocbq + - scsi: lpfc: SLI path split: Refactor fast and slow paths to native SLI4 + - scsi: lpfc: SLI path split: Refactor SCSI paths + - scsi: lpfc: Remove extra atomic_inc on cmd_pending in queuecommand after + VMID + - intel_th: pci: Add Meteor Lake-P support + - intel_th: pci: Add Raptor Lake-S PCH support + - intel_th: pci: Add Raptor Lake-S CPU support + - KVM: set_msr_mce: Permit guests to ignore single-bit ECC errors + - KVM: x86: Signal #GP, not -EPERM, on bad WRMSR(MCi_CTL/STATUS) + - iommu/vt-d: avoid invalid memory access via node_online(NUMA_NO_NODE) + - PCI/AER: Iterate over error counters instead of error strings + - PCI: qcom: Power on PHY before IPQ8074 DBI register accesses + - serial: 8250_pci: Refactor the loop in pci_ite887x_init() + - serial: 8250_pci: Replace dev_*() by pci_*() macros + - serial: 8250: Fold EndRun device support into OxSemi Tornado code + - serial: 8250: Add proper clock handling for OxSemi PCIe devices + - tty: 8250: Add support for Brainboxes PX cards. + - dm writecache: set a default MAX_WRITEBACK_JOBS + - kexec, KEYS, s390: Make use of built-in and secondary keyring for signature + verification + - dm thin: fix use-after-free crash in dm_sm_register_threshold_callback + - net/9p: Initialize the iounit field during fid creation + - ARM: remove some dead code + - timekeeping: contribute wall clock to rng on time change + - locking/csd_lock: Change csdlock_debug from early_param to __setup + - block: remove the struct blk_queue_ctx forward declaration + - block: don't allow the same type rq_qos add more than once + - btrfs: ensure pages are unlocked on cow_file_range() failure + - btrfs: reset block group chunk force if we have to wait + - btrfs: properly flag filesystem with BTRFS_FEATURE_INCOMPAT_BIG_METADATA + - ACPI: CPPC: Do not prevent CPPC from working in the future + - powerpc/powernv/kvm: Use darn for H_RANDOM on Power9 + - KVM: x86/pmu: Introduce the ctrl_mask value for fixed counter + - KVM: VMX: Mark all PERF_GLOBAL_(OVF)_CTRL bits reserved if there's no vPMU + - KVM: x86/pmu: Ignore pmu->global_ctrl check if vPMU doesn't support + global_ctrl + - KVM: VMX: Add helper to check if the guest PMU has PERF_GLOBAL_CTRL + - KVM: nVMX: Attempt to load PERF_GLOBAL_CTRL on nVMX xfer iff it exists + - dm raid: fix address sanitizer warning in raid_status + - dm raid: fix address sanitizer warning in raid_resume + - tracing: Add '__rel_loc' using trace event macros + - tracing: Avoid -Warray-bounds warning for __rel_loc macro + - ext4: update s_overhead_clusters in the superblock during an on-line resize + - ext4: fix extent status tree race in writeback error recovery path + - ext4: add EXT4_INODE_HAS_XATTR_SPACE macro in xattr.h + - ext4: fix use-after-free in ext4_xattr_set_entry + - ext4: correct max_inline_xattr_value_size computing + - ext4: correct the misjudgment in ext4_iget_extra_inode + - ext4: fix warning in ext4_iomap_begin as race between bmap and write + - ext4: check if directory block is within i_size + - ext4: make sure ext4_append() always allocates new block + - ext4: remove EA inode entry from mbcache on inode eviction + - ext4: use kmemdup() to replace kmalloc + memcpy + - ext4: unindent codeblock in ext4_xattr_block_set() + - ext4: fix race when reusing xattr blocks + - KEYS: asymmetric: enforce SM2 signature use pkey algo + - tpm: eventlog: Fix section mismatch for DEBUG_SECTION_MISMATCH + - xen-blkback: fix persistent grants negotiation + - xen-blkback: Apply 'feature_persistent' parameter when connect + - xen-blkfront: Apply 'feature_persistent' parameter when connect + - powerpc: Fix eh field when calling lwarx on PPC32 + - tracing: Use a struct alignof to determine trace event field alignment + - mac80211: fix a memory leak where sta_info is not freed + - tcp: fix over estimation in sk_forced_mem_schedule() + - crypto: lib/blake2s - reduce stack frame usage in self test + - Revert "mwifiex: fix sleep in atomic context bugs caused by dev_coredumpv" + - Revert "s390/smp: enforce lowcore protection on CPU restart" + - drm/bridge: tc358767: Fix (e)DP bridge endpoint parsing in dedicated + function + - net: phy: smsc: Disable Energy Detect Power-Down in interrupt mode + - drm/vc4: change vc4_dma_range_matches from a global to static + - tracing/perf: Avoid -Warray-bounds warning for __rel_loc macro + - drm/msm: Fix dirtyfb refcounting + - drm/meson: Fix refcount leak in meson_encoder_hdmi_init + - io_uring: mem-account pbuf buckets + - Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm regression + - drm/bridge: Move devm_drm_of_get_bridge to bridge/panel.c + - scsi: lpfc: Fix locking for lpfc_sli_iocbq_lookup() + - scsi: lpfc: Fix element offset in __lpfc_sli_release_iocbq_s4() + - scsi: lpfc: Resolve some cleanup issues following SLI path refactoring + - Linux 5.15.61 + * CVE-2022-3028 + - af_key: Do not call xfrm_probe_algs in parallel + * CVE-2022-2978 + - fs: fix UAF/GPF bug in nilfs_mdt_destroy + * CVE-2022-40768 + - scsi: stex: Properly zero out the passthrough command structure + + -- Tim Gardner Wed, 26 Oct 2022 12:57:36 -0600 + +linux-azure-5.15 (5.15.0-1022.27~20.04.1) focal; urgency=medium + + [ Ubuntu: 5.15.0-1022.27 ] + + * CVE-2022-2602 + - SAUCE: io_uring/af_unix: defer registered files gc to io_uring release + - SAUCE: io_uring/af_unix: fix memleak during unix GC + * CVE-2022-41674 + - mac80211: move CRC into struct ieee802_11_elems + - mac80211: mlme: find auth challenge directly + - mac80211: mesh: clean up rx_bcn_presp API + - mac80211: always allocate struct ieee802_11_elems + - mac80211: fix memory leaks with element parsing + - SAUCE: wifi: cfg80211: fix u8 overflow in + cfg80211_update_notlisted_nontrans() + - SAUCE: wifi: cfg80211/mac80211: reject bad MBSSID elements + - SAUCE: wifi: cfg80211: ensure length byte is present before access + - SAUCE: wifi: mac80211_hwsim: avoid mac80211 warning on bad rate + - SAUCE: wifi: cfg80211: update hidden BSSes to avoid WARN_ON + * CVE-2022-42722 + - SAUCE: wifi: mac80211: fix crash in beacon protection for P2P-device + * CVE-2022-42721 + - SAUCE: wifi: cfg80211: avoid nontransmitted BSS list corruption + * CVE-2022-42720 + - SAUCE: wifi: cfg80211: fix BSS refcounting bugs + * CVE-2022-42719 + - SAUCE: wifi: mac80211: fix MBSSID parsing use-after-free + + -- Thadeu Lima de Souza Cascardo Sun, 16 Oct 2022 20:18:59 -0300 + +linux-azure-5.15 (5.15.0-1021.26~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1021.26~20.04.1 -proposed tracker + (LP: #1989753) + + [ Ubuntu: 5.15.0-1021.26 ] + + * jammy/linux-azure: 5.15.0-1021.26 -proposed tracker (LP: #1989754) + * Packaging resync (LP: #1786013) + - [Packaging] update variants + * Azure: Enable vPCI multi-MSI interrupts (LP: #1990184) + - genirq/msi: Guard sysfs code + - genirq/msi: Remove unused domain callbacks + - genirq/msi: Fixup includes + - PCI/MSI: Make pci_msi_domain_write_msg() static + - PCI/MSI: Remove msi_desc_to_pci_sysdata() + - genirq/msi, treewide: Use a named struct for PCI/MSI attributes + - PCI: hv: Fix multi-MSI to allow more than one MSI vector + - PCI: hv: Avoid the retarget interrupt hypercall in irq_unmask() on ARM64 + - PCI: hv: Fix hv_arch_irq_unmask() for multi-MSI + - PCI: hv: Reuse existing IRTE allocation in compose_msi_msg() + - PCI: hv: Fix interrupt mapping for multi-MSI + - SAUCE: PCI: hv: Only reuse existing IRTE allocation for Multi-MSI + * Azure: Add support for multi-MSI (LP: #1981577) // Azure: Enable vPCI multi- + MSI interrupts (LP: #1990184) + - PCI: hv: Remove unused hv_set_msi_entry_from_desc() + * cma alloc failure in large 5.15 arm instances (LP: #1990167) + - [Config] Disable CONFIG_CMA for arm64 + * jammy/linux: 5.15.0-50.56 -proposed tracker (LP: #1990148) + * CVE-2022-3176 + - io_uring: refactor poll update + - io_uring: move common poll bits + - io_uring: kill poll linking optimisation + - io_uring: inline io_poll_complete + - io_uring: correct fill events helpers types + - io_uring: clean cqe filling functions + - io_uring: poll rework + - io_uring: remove poll entry from list when canceling all + - io_uring: bump poll refs to full 31-bits + - io_uring: fail links when poll fails + - io_uring: fix wrong arm_poll error handling + - io_uring: fix UAF due to missing POLLFREE handling + * ip/nexthop: fix default address selection for connected nexthop + (LP: #1988809) + - selftests/net: test nexthop without gw + * ip/nexthop: fix default address selection for connected nexthop + (LP: #1988809) // icmp_redirect.sh in ubuntu_kernel_selftests failed on + Jammy 5.15.0-49.55 (LP: #1990124) + - ip: fix triggering of 'icmp redirect' + * jammy/linux: 5.15.0-49.55 -proposed tracker (LP: #1989785) + * amdgpu module crash after 5.15 kernel update (LP: #1981883) + - drm/amdgpu: fix check in fbdev init + * scsi: hisi_sas: Increase debugfs_dump_index after dump is  completed + (LP: #1982070) + - scsi: hisi_sas: Increase debugfs_dump_index after dump is completed + * [UBUNTU 22.04] s390/qeth: cache link_info for ethtool (LP: #1984103) + - s390/qeth: cache link_info for ethtool + * WARN in trace_event_dyn_put_ref (LP: #1987232) + - tracing/perf: Fix double put of trace event when init fails + * Jammy update: v5.15.60 upstream stable release (LP: #1989221) + - x86/speculation: Make all RETbleed mitigations 64-bit only + - selftests/bpf: Extend verifier and bpf_sock tests for dst_port loads + - selftests/bpf: Check dst_port only on the client socket + - block: fix default IO priority handling again + - tools/vm/slabinfo: Handle files in debugfs + - ACPI: video: Force backlight native for some TongFang devices + - ACPI: video: Shortening quirk list by identifying Clevo by board_name only + - ACPI: APEI: Better fix to avoid spamming the console with old error logs + - crypto: arm64/poly1305 - fix a read out-of-bound + - KVM: x86: do not report a vCPU as preempted outside instruction boundaries + - KVM: x86: do not set st->preempted when going back to user space + - KVM: selftests: Make hyperv_clock selftest more stable + - tools/kvm_stat: fix display of error when multiple processes are found + - selftests: KVM: Handle compiler optimizations in ucall + - KVM: x86/svm: add __GFP_ACCOUNT to __sev_dbg_{en,de}crypt_user() + - arm64: set UXN on swapper page tables + - btrfs: zoned: prevent allocation from previous data relocation BG + - btrfs: zoned: fix critical section of relocation inode writeback + - Bluetooth: hci_bcm: Add BCM4349B1 variant + - Bluetooth: hci_bcm: Add DT compatible for CYW55572 + - dt-bindings: bluetooth: broadcom: Add BCM4349B1 DT binding + - Bluetooth: btusb: Add support of IMC Networks PID 0x3568 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x04CA:0x4007 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x04C5:0x1675 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x0CB8:0xC558 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x13D3:0x3587 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x13D3:0x3586 + - macintosh/adb: fix oob read in do_adb_query() function + - x86/speculation: Add RSB VM Exit protections + - x86/speculation: Add LFENCE to RSB fill sequence + - Linux 5.15.60 + * Jammy update: v5.15.59 upstream stable release (LP: #1989218) + - Bluetooth: L2CAP: Fix use-after-free caused by l2cap_chan_put + - Revert "ocfs2: mount shared volume without ha stack" + - ntfs: fix use-after-free in ntfs_ucsncmp() + - fs: sendfile handles O_NONBLOCK of out_fd + - secretmem: fix unhandled fault in truncate + - mm: fix page leak with multiple threads mapping the same page + - hugetlb: fix memoryleak in hugetlb_mcopy_atomic_pte + - asm-generic: remove a broken and needless ifdef conditional + - s390/archrandom: prevent CPACF trng invocations in interrupt context + - nouveau/svm: Fix to migrate all requested pages + - drm/simpledrm: Fix return type of simpledrm_simple_display_pipe_mode_valid() + - watch_queue: Fix missing rcu annotation + - watch_queue: Fix missing locking in add_watch_to_object() + - tcp: Fix data-races around sysctl_tcp_dsack. + - tcp: Fix a data-race around sysctl_tcp_app_win. + - tcp: Fix a data-race around sysctl_tcp_adv_win_scale. + - tcp: Fix a data-race around sysctl_tcp_frto. + - tcp: Fix a data-race around sysctl_tcp_nometrics_save. + - tcp: Fix data-races around sysctl_tcp_no_ssthresh_metrics_save. + - ice: check (DD | EOF) bits on Rx descriptor rather than (EOP | RS) + - ice: do not setup vlan for loopback VSI + - scsi: ufs: host: Hold reference returned by of_parse_phandle() + - Revert "tcp: change pingpong threshold to 3" + - octeontx2-pf: Fix UDP/TCP src and dst port tc filters + - tcp: Fix data-races around sysctl_tcp_moderate_rcvbuf. + - tcp: Fix a data-race around sysctl_tcp_limit_output_bytes. + - tcp: Fix a data-race around sysctl_tcp_challenge_ack_limit. + - scsi: core: Fix warning in scsi_alloc_sgtables() + - scsi: mpt3sas: Stop fw fault watchdog work item during system shutdown + - net: ping6: Fix memleak in ipv6_renew_options(). + - ipv6/addrconf: fix a null-ptr-deref bug for ip6_ptr + - net/tls: Remove the context from the list in tls_device_down + - igmp: Fix data-races around sysctl_igmp_qrv. + - net: pcs: xpcs: propagate xpcs_read error to xpcs_get_state_c37_sgmii + - net: sungem_phy: Add of_node_put() for reference returned by of_get_parent() + - tcp: Fix a data-race around sysctl_tcp_min_tso_segs. + - tcp: Fix a data-race around sysctl_tcp_min_rtt_wlen. + - tcp: Fix a data-race around sysctl_tcp_autocorking. + - tcp: Fix a data-race around sysctl_tcp_invalid_ratelimit. + - Documentation: fix sctp_wmem in ip-sysctl.rst + - macsec: fix NULL deref in macsec_add_rxsa + - macsec: fix error message in macsec_add_rxsa and _txsa + - macsec: limit replay window size with XPN + - macsec: always read MACSEC_SA_ATTR_PN as a u64 + - net: macsec: fix potential resource leak in macsec_add_rxsa() and + macsec_add_txsa() + - net: mld: fix reference count leak in mld_{query | report}_work() + - tcp: Fix data-races around sk_pacing_rate. + - net: Fix data-races around sysctl_[rw]mem(_offset)?. + - tcp: Fix a data-race around sysctl_tcp_comp_sack_delay_ns. + - tcp: Fix a data-race around sysctl_tcp_comp_sack_slack_ns. + - tcp: Fix a data-race around sysctl_tcp_comp_sack_nr. + - tcp: Fix data-races around sysctl_tcp_reflect_tos. + - ipv4: Fix data-races around sysctl_fib_notify_on_flag_change. + - i40e: Fix interface init with MSI interrupts (no MSI-X) + - sctp: fix sleep in atomic context bug in timer handlers + - octeontx2-pf: cn10k: Fix egress ratelimit configuration + - virtio-net: fix the race between refill work and close + - perf symbol: Correct address for bss symbols + - sfc: disable softirqs for ptp TX + - sctp: leave the err path free in sctp_stream_init to sctp_stream_free + - ARM: crypto: comment out gcc warning that breaks clang builds + - mm/hmm: fault non-owner device private entries + - page_alloc: fix invalid watermark check on a negative value + - ARM: 9216/1: Fix MAX_DMA_ADDRESS overflow + - EDAC/ghes: Set the DIMM label unconditionally + - docs/kernel-parameters: Update descriptions for "mitigations=" param with + retbleed + - locking/rwsem: Allow slowpath writer to ignore handoff bit if not set by + first waiter + - x86/bugs: Do not enable IBPB at firmware entry when IBPB is not available + - Linux 5.15.59 + * Jammy update: v5.15.58 upstream stable release (LP: #1988479) + - pinctrl: stm32: fix optional IRQ support to gpios + - riscv: add as-options for modules with assembly compontents + - mlxsw: spectrum_router: Fix IPv4 nexthop gateway indication + - lockdown: Fix kexec lockdown bypass with ima policy + - drm/ttm: fix locking in vmap/vunmap TTM GEM helpers + - bus: mhi: host: pci_generic: add Telit FN980 v1 hardware revision + - bus: mhi: host: pci_generic: add Telit FN990 + - Revert "selftest/vm: verify remap destination address in mremap_test" + - Revert "selftest/vm: verify mmap addr in mremap_test" + - PCI: hv: Fix multi-MSI to allow more than one MSI vector + - PCI: hv: Fix hv_arch_irq_unmask() for multi-MSI + - PCI: hv: Reuse existing IRTE allocation in compose_msi_msg() + - PCI: hv: Fix interrupt mapping for multi-MSI + - serial: mvebu-uart: correctly report configured baudrate value + - batman-adv: Use netif_rx_any_context() any. + - xfs: fix maxlevels comparisons in the btree staging code + - xfs: fold perag loop iteration logic into helper function + - xfs: rename the next_agno perag iteration variable + - xfs: terminate perag iteration reliably on agcount + - xfs: fix perag reference leak on iteration race with growfs + - xfs: prevent a WARN_ONCE() in xfs_ioc_attr_list() + - r8152: fix a WOL issue + - ip: Fix data-races around sysctl_ip_default_ttl. + - xfrm: xfrm_policy: fix a possible double xfrm_pols_put() in + xfrm_bundle_lookup() + - power/reset: arm-versatile: Fix refcount leak in versatile_reboot_probe + - RDMA/irdma: Do not advertise 1GB page size for x722 + - RDMA/irdma: Fix sleep from invalid context BUG + - pinctrl: ralink: rename MT7628(an) functions to MT76X8 + - pinctrl: ralink: rename pinctrl-rt2880 to pinctrl-ralink + - pinctrl: ralink: Check for null return of devm_kcalloc + - perf/core: Fix data race between perf_event_set_output() and + perf_mmap_close() + - ipv4/tcp: do not use per netns ctl sockets + - net: tun: split run_ebpf_filter() and pskb_trim() into different "if + statement" + - mm/pagealloc: sysctl: change watermark_scale_factor max limit to 30% + - sysctl: move some boundary constants from sysctl.c to sysctl_vals + - tcp: Fix data-races around sysctl_tcp_ecn. + - drm/amd/display: Add option to defer works of hpd_rx_irq + - drm/amd/display: Fork thread to offload work of hpd_rx_irq + - drm/amdgpu/display: add quirk handling for stutter mode + - drm/amd/display: Ignore First MST Sideband Message Return Error + - scsi: megaraid: Clear READ queue map's nr_queues + - scsi: ufs: core: Drop loglevel of WriteBoost message + - nvme: check for duplicate identifiers earlier + - nvme: fix block device naming collision + - igc: Reinstate IGC_REMOVED logic and implement it properly + - ip: Fix data-races around sysctl_ip_no_pmtu_disc. + - ip: Fix data-races around sysctl_ip_fwd_use_pmtu. + - ip: Fix data-races around sysctl_ip_fwd_update_priority. + - ip: Fix data-races around sysctl_ip_nonlocal_bind. + - ip: Fix a data-race around sysctl_ip_autobind_reuse. + - ip: Fix a data-race around sysctl_fwmark_reflect. + - tcp/dccp: Fix a data-race around sysctl_tcp_fwmark_accept. + - tcp: sk->sk_bound_dev_if once in inet_request_bound_dev_if() + - tcp: Fix data-races around sysctl_tcp_l3mdev_accept. + - tcp: Fix data-races around sysctl_tcp_mtu_probing. + - tcp: Fix data-races around sysctl_tcp_base_mss. + - tcp: Fix data-races around sysctl_tcp_min_snd_mss. + - tcp: Fix a data-race around sysctl_tcp_mtu_probe_floor. + - tcp: Fix a data-race around sysctl_tcp_probe_threshold. + - tcp: Fix a data-race around sysctl_tcp_probe_interval. + - net: stmmac: fix pm runtime issue in stmmac_dvr_remove() + - net: stmmac: fix unbalanced ptp clock issue in suspend/resume flow + - mtd: rawnand: gpmi: validate controller clock rate + - mtd: rawnand: gpmi: Set WAIT_FOR_READY timeout based on program/erase times + - net: dsa: microchip: ksz_common: Fix refcount leak bug + - net: skb: introduce kfree_skb_reason() + - net: skb: use kfree_skb_reason() in tcp_v4_rcv() + - net: skb: use kfree_skb_reason() in __udp4_lib_rcv() + - net: socket: rename SKB_DROP_REASON_SOCKET_FILTER + - net: skb_drop_reason: add document for drop reasons + - net: netfilter: use kfree_drop_reason() for NF_DROP + - net: ipv4: use kfree_skb_reason() in ip_rcv_core() + - net: ipv4: use kfree_skb_reason() in ip_rcv_finish_core() + - i2c: mlxcpld: Fix register setting for 400KHz frequency + - i2c: cadence: Change large transfer count reset logic to be unconditional + - perf tests: Fix Convert perf time to TSC test for hybrid + - net: stmmac: fix dma queue left shift overflow issue + - net/tls: Fix race in TLS device down flow + - igmp: Fix data-races around sysctl_igmp_llm_reports. + - igmp: Fix a data-race around sysctl_igmp_max_memberships. + - igmp: Fix data-races around sysctl_igmp_max_msf. + - tcp: Fix data-races around keepalive sysctl knobs. + - tcp: Fix data-races around sysctl_tcp_syn(ack)?_retries. + - tcp: Fix data-races around sysctl_tcp_syncookies. + - tcp: Fix data-races around sysctl_tcp_migrate_req. + - tcp: Fix data-races around sysctl_tcp_reordering. + - tcp: Fix data-races around some timeout sysctl knobs. + - tcp: Fix a data-race around sysctl_tcp_notsent_lowat. + - tcp: Fix a data-race around sysctl_tcp_tw_reuse. + - tcp: Fix data-races around sysctl_max_syn_backlog. + - tcp: Fix data-races around sysctl_tcp_fastopen. + - tcp: Fix data-races around sysctl_tcp_fastopen_blackhole_timeout. + - iavf: Fix handling of dummy receive descriptors + - pinctrl: armada-37xx: Use temporary variable for struct device + - pinctrl: armada-37xx: Make use of the devm_platform_ioremap_resource() + - pinctrl: armada-37xx: Convert to use dev_err_probe() + - pinctrl: armada-37xx: use raw spinlocks for regmap to avoid invalid wait + context + - i40e: Fix erroneous adapter reinitialization during recovery process + - ixgbe: Add locking to prevent panic when setting sriov_numvfs to zero + - net: stmmac: remove redunctant disable xPCS EEE call + - gpio: pca953x: only use single read/write for No AI mode + - gpio: pca953x: use the correct range when do regmap sync + - gpio: pca953x: use the correct register address when regcache sync during + init + - be2net: Fix buffer overflow in be_get_module_eeprom + - net: dsa: sja1105: silent spi_device_id warnings + - net: dsa: vitesse-vsc73xx: silent spi_device_id warnings + - drm/imx/dcss: Add missing of_node_put() in fail path + - ipv4: Fix a data-race around sysctl_fib_multipath_use_neigh. + - ipv4: Fix data-races around sysctl_fib_multipath_hash_policy. + - ipv4: Fix data-races around sysctl_fib_multipath_hash_fields. + - ip: Fix data-races around sysctl_ip_prot_sock. + - udp: Fix a data-race around sysctl_udp_l3mdev_accept. + - tcp: Fix data-races around sysctl knobs related to SYN option. + - tcp: Fix a data-race around sysctl_tcp_early_retrans. + - tcp: Fix data-races around sysctl_tcp_recovery. + - tcp: Fix a data-race around sysctl_tcp_thin_linear_timeouts. + - tcp: Fix data-races around sysctl_tcp_slow_start_after_idle. + - tcp: Fix a data-race around sysctl_tcp_retrans_collapse. + - tcp: Fix a data-race around sysctl_tcp_stdurg. + - tcp: Fix a data-race around sysctl_tcp_rfc1337. + - tcp: Fix a data-race around sysctl_tcp_abort_on_overflow. + - tcp: Fix data-races around sysctl_tcp_max_reordering. + - gpio: gpio-xilinx: Fix integer overflow + - KVM: selftests: Fix target thread to be migrated in rseq_test + - spi: bcm2835: bcm2835_spi_handle_err(): fix NULL pointer deref for non DMA + transfers + - KVM: Don't null dereference ops->destroy + - mm/mempolicy: fix uninit-value in mpol_rebind_policy() + - bpf: Make sure mac_header was set before using it + - sched/deadline: Fix BUG_ON condition for deboosted tasks + - x86/bugs: Warn when "ibrs" mitigation is selected on Enhanced IBRS parts + - dlm: fix pending remove if msg allocation fails + - x86/uaccess: Implement macros for CMPXCHG on user addresses + - bitfield.h: Fix "type of reg too small for mask" test + - x86/entry_32: Remove .fixup usage + - x86/extable: Extend extable functionality + - x86/msr: Remove .fixup usage + - x86/futex: Remove .fixup usage + - KVM: x86: Use __try_cmpxchg_user() to emulate atomic accesses + - xhci: dbc: refactor xhci_dbc_init() + - xhci: dbc: create and remove dbc structure in dbgtty driver. + - xhci: dbc: Rename xhci_dbc_init and xhci_dbc_exit + - xhci: Set HCD flag to defer primary roothub registration + - mt76: fix use-after-free by removing a non-RCU wcid pointer + - iwlwifi: fw: uefi: add missing include guards + - crypto: qat - set to zero DH parameters before free + - crypto: qat - use pre-allocated buffers in datapath + - crypto: qat - refactor submission logic + - crypto: qat - add backlog mechanism + - crypto: qat - fix memory leak in RSA + - crypto: qat - remove dma_free_coherent() for RSA + - crypto: qat - remove dma_free_coherent() for DH + - crypto: qat - add param check for RSA + - crypto: qat - add param check for DH + - crypto: qat - re-enable registration of algorithms + - exfat: fix referencing wrong parent directory information after renaming + - tracing: Have event format check not flag %p* on __get_dynamic_array() + - tracing: Place trace_pid_list logic into abstract functions + - tracing: Fix return value of trace_pid_write() + - um: virtio_uml: Allow probing from devicetree + - um: virtio_uml: Fix broken device handling in time-travel + - Bluetooth: Add bt_skb_sendmsg helper + - Bluetooth: Add bt_skb_sendmmsg helper + - Bluetooth: SCO: Replace use of memcpy_from_msg with bt_skb_sendmsg + - Bluetooth: RFCOMM: Replace use of memcpy_from_msg with bt_skb_sendmmsg + - Bluetooth: Fix passing NULL to PTR_ERR + - Bluetooth: SCO: Fix sco_send_frame returning skb->len + - Bluetooth: Fix bt_skb_sendmmsg not allocating partial chunks + - exfat: use updated exfat_chain directly during renaming + - x86/amd: Use IBPB for firmware calls + - x86/alternative: Report missing return thunk details + - watchqueue: make sure to serialize 'wqueue->defunct' properly + - tty: drivers/tty/, stop using tty_schedule_flip() + - tty: the rest, stop using tty_schedule_flip() + - tty: drop tty_schedule_flip() + - tty: extract tty_flip_buffer_commit() from tty_flip_buffer_push() + - tty: use new tty_insert_flip_string_and_push_buffer() in pty_write() + - watch-queue: remove spurious double semicolon + - drm/amd/display: invalid parameter check in dmub_hpd_callback + - x86/extable: Prefer local labels in .set directives + - KVM: x86: fix typo in __try_cmpxchg_user causing non-atomicness + - x86: drop bogus "cc" clobber from __try_cmpxchg_user_asm() + - drm/amdgpu: Off by one in dm_dmub_outbox1_low_irq() + - x86/entry_32: Fix segment exceptions + - Linux 5.15.58 + * Jammy update: v5.15.57 upstream stable release (LP: #1988353) + - x86/xen: Fix initialisation in hypercall_page after rethunk + - tools arch x86: Sync the msr-index.h copy with the kernel sources + - tools headers cpufeatures: Sync with the kernel sources + - um: Add missing apply_returns() + - x86: Use -mindirect-branch-cs-prefix for RETPOLINE builds + - Linux 5.15.57 + * Jammy update: v5.15.56 upstream stable release (LP: #1988351) + - ALSA: hda - Add fixup for Dell Latitidue E5430 + - ALSA: hda/conexant: Apply quirk for another HP ProDesk 600 G3 model + - ALSA: hda/realtek: Fix headset mic for Acer SF313-51 + - ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc671 + - ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc221 + - ALSA: hda/realtek - Enable the headset-mic on a Xiaomi's laptop + - xen/netback: avoid entering xenvif_rx_next_skb() with an empty rx queue + - fix race between exit_itimers() and /proc/pid/timers + - mm: userfaultfd: fix UFFDIO_CONTINUE on fallocated shmem pages + - mm: split huge PUD on wp_huge_pud fallback + - tracing/histograms: Fix memory leak problem + - net: sock: tracing: Fix sock_exceed_buf_limit not to dereference stale + pointer + - ip: fix dflt addr selection for connected nexthop + - ARM: 9213/1: Print message about disabled Spectre workarounds only once + - ARM: 9214/1: alignment: advance IT state after emulating Thumb instruction + - wifi: mac80211: fix queue selection for mesh/OCB interfaces + - cgroup: Use separate src/dst nodes when preloading css_sets for migration + - btrfs: return -EAGAIN for NOWAIT dio reads/writes on compressed and inline + extents + - drm/panfrost: Put mapping instead of shmem obj on + panfrost_mmu_map_fault_addr() error + - drm/panfrost: Fix shrinker list corruption by madvise IOCTL + - fs/remap: constrain dedupe of EOF blocks + - nilfs2: fix incorrect masking of permission flags for symlinks + - sh: convert nommu io{re,un}map() to static inline functions + - Revert "evm: Fix memleak in init_desc" + - xfs: only run COW extent recovery when there are no live extents + - xfs: don't include bnobt blocks when reserving free block pool + - xfs: run callbacks before waking waiters in xlog_state_shutdown_callbacks + - xfs: drop async cache flushes from CIL commits. + - reset: Fix devm bulk optional exclusive control getter + - ARM: dts: imx6qdl-ts7970: Fix ngpio typo and count + - spi: amd: Limit max transfer and message size + - ARM: 9209/1: Spectre-BHB: avoid pr_info() every time a CPU comes out of idle + - ARM: 9210/1: Mark the FDT_FIXED sections as shareable + - net/mlx5e: kTLS, Fix build time constant test in TX + - net/mlx5e: kTLS, Fix build time constant test in RX + - net/mlx5e: Fix enabling sriov while tc nic rules are offloaded + - net/mlx5e: Fix capability check for updating vnic env counters + - net/mlx5e: Ring the TX doorbell on DMA errors + - drm/i915: fix a possible refcount leak in intel_dp_add_mst_connector() + - ima: Fix a potential integer overflow in ima_appraise_measurement + - ASoC: sgtl5000: Fix noise on shutdown/remove + - ASoC: tas2764: Add post reset delays + - ASoC: tas2764: Fix and extend FSYNC polarity handling + - ASoC: tas2764: Correct playback volume range + - ASoC: tas2764: Fix amp gain register offset & default + - ASoC: Intel: Skylake: Correct the ssp rate discovery in skl_get_ssp_clks() + - ASoC: Intel: Skylake: Correct the handling of fmt_config flexible array + - net: stmmac: dwc-qos: Disable split header for Tegra194 + - net: ethernet: ti: am65-cpsw: Fix devlink port register sequence + - sysctl: Fix data races in proc_dointvec(). + - sysctl: Fix data races in proc_douintvec(). + - sysctl: Fix data races in proc_dointvec_minmax(). + - sysctl: Fix data races in proc_douintvec_minmax(). + - sysctl: Fix data races in proc_doulongvec_minmax(). + - sysctl: Fix data races in proc_dointvec_jiffies(). + - tcp: Fix a data-race around sysctl_tcp_max_orphans. + - inetpeer: Fix data-races around sysctl. + - net: Fix data-races around sysctl_mem. + - cipso: Fix data-races around sysctl. + - icmp: Fix data-races around sysctl. + - ipv4: Fix a data-race around sysctl_fib_sync_mem. + - ARM: dts: at91: sama5d2: Fix typo in i2s1 node + - ARM: dts: sunxi: Fix SPI NOR campatible on Orange Pi Zero + - arm64: dts: broadcom: bcm4908: Fix timer node for BCM4906 SoC + - arm64: dts: broadcom: bcm4908: Fix cpu node for smp boot + - netfilter: nf_log: incorrect offset to network header + - netfilter: nf_tables: replace BUG_ON by element length check + - drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() + - xen/gntdev: Ignore failure to unmap INVALID_GRANT_HANDLE + - lockd: set fl_owner when unlocking files + - lockd: fix nlm_close_files + - tracing: Fix sleeping while atomic in kdb ftdump + - drm/i915/selftests: fix a couple IS_ERR() vs NULL tests + - drm/i915/dg2: Add Wa_22011100796 + - drm/i915/gt: Serialize GRDOM access between multiple engine resets + - drm/i915/gt: Serialize TLB invalidates with GT resets + - drm/i915/uc: correctly track uc_fw init failure + - drm/i915: Require the vm mutex for i915_vma_bind() + - bnxt_en: Fix bnxt_reinit_after_abort() code path + - bnxt_en: Fix bnxt_refclk_read() + - sysctl: Fix data-races in proc_dou8vec_minmax(). + - sysctl: Fix data-races in proc_dointvec_ms_jiffies(). + - icmp: Fix data-races around sysctl_icmp_echo_enable_probe. + - icmp: Fix a data-race around sysctl_icmp_ignore_bogus_error_responses. + - icmp: Fix a data-race around sysctl_icmp_errors_use_inbound_ifaddr. + - icmp: Fix a data-race around sysctl_icmp_ratelimit. + - icmp: Fix a data-race around sysctl_icmp_ratemask. + - raw: Fix a data-race around sysctl_raw_l3mdev_accept. + - tcp: Fix a data-race around sysctl_tcp_ecn_fallback. + - ipv4: Fix data-races around sysctl_ip_dynaddr. + - nexthop: Fix data-races around nexthop_compat_mode. + - net: ftgmac100: Hold reference returned by of_get_child_by_name() + - net: stmmac: fix leaks in probe + - ima: force signature verification when CONFIG_KEXEC_SIG is configured + - ima: Fix potential memory leak in ima_init_crypto() + - drm/amd/display: Only use depth 36 bpp linebuffers on DCN display engines. + - drm/amd/pm: Prevent divide by zero + - sfc: fix use after free when disabling sriov + - ceph: switch netfs read ops to use rreq->inode instead of + rreq->mapping->host + - seg6: fix skb checksum evaluation in SRH encapsulation/insertion + - seg6: fix skb checksum in SRv6 End.B6 and End.B6.Encaps behaviors + - seg6: bpf: fix skb checksum in bpf_push_seg6_encap() + - sfc: fix kernel panic when creating VF + - KVM: x86: Fully initialize 'struct kvm_lapic_irq' in kvm_pv_kick_cpu_op() + - net/tls: Check for errors in tls_device_init + - ACPI: video: Fix acpi_video_handles_brightness_key_presses() + - mm: sysctl: fix missing numa_stat when !CONFIG_HUGETLB_PAGE + - btrfs: rename btrfs_bio to btrfs_io_context + - btrfs: zoned: fix a leaked bioc in read_zone_info + - ksmbd: use SOCK_NONBLOCK type for kernel_accept() + - powerpc/xive/spapr: correct bitmap allocation size + - vdpa/mlx5: Initialize CVQ vringh only once + - vduse: Tie vduse mgmtdev and its device + - virtio_mmio: Add missing PM calls to freeze/restore + - virtio_mmio: Restore guest page size on resume + - netfilter: br_netfilter: do not skip all hooks with 0 priority + - scsi: hisi_sas: Limit max hw sectors for v3 HW + - cpufreq: pmac32-cpufreq: Fix refcount leak bug + - firmware: sysfb: Make sysfb_create_simplefb() return a pdev pointer + - firmware: sysfb: Add sysfb_disable() helper function + - fbdev: Disable sysfb device registration when removing conflicting FBs + - net: tipc: fix possible refcount leak in tipc_sk_create() + - NFC: nxp-nci: don't print header length mismatch on i2c error + - nvme-tcp: always fail a request when sending it failed + - nvme: fix regression when disconnect a recovering ctrl + - net: sfp: fix memory leak in sfp_probe() + - ASoC: ops: Fix off by one in range control validation + - pinctrl: aspeed: Fix potential NULL dereference in aspeed_pinmux_set_mux() + - ASoC: Realtek/Maxim SoundWire codecs: disable pm_runtime on remove + - ASoC: rt711-sdca-sdw: fix calibrate mutex initialization + - ASoC: Intel: sof_sdw: handle errors on card registration + - ASoC: rt711: fix calibrate mutex initialization + - ASoC: rt7*-sdw: harden jack_detect_handler + - ASoC: codecs: rt700/rt711/rt711-sdca: initialize workqueues in probe + - ASoC: SOF: Intel: hda-loader: Clarify the cl_dsp_init() flow + - ASoC: wcd938x: Fix event generation for some controls + - ASoC: Intel: bytcr_wm5102: Fix GPIO related probe-ordering problem + - ASoC: wm5110: Fix DRE control + - ASoC: rt711-sdca: fix kernel NULL pointer dereference when IO error + - ASoC: dapm: Initialise kcontrol data for mux/demux controls + - ASoC: cs47l15: Fix event generation for low power mux control + - ASoC: madera: Fix event generation for OUT1 demux + - ASoC: madera: Fix event generation for rate controls + - irqchip: or1k-pic: Undefine mask_ack for level triggered hardware + - x86: Clear .brk area at early boot + - soc: ixp4xx/npe: Fix unused match warning + - ARM: dts: stm32: use the correct clock source for CEC on stm32mp151 + - Revert "can: xilinx_can: Limit CANFD brp to 2" + - ALSA: usb-audio: Add quirks for MacroSilicon MS2100/MS2106 devices + - ALSA: usb-audio: Add quirk for Fiero SC-01 + - ALSA: usb-audio: Add quirk for Fiero SC-01 (fw v1.0.0) + - nvme-pci: phison e16 has bogus namespace ids + - signal handling: don't use BUG_ON() for debugging + - USB: serial: ftdi_sio: add Belimo device ids + - usb: typec: add missing uevent when partner support PD + - usb: dwc3: gadget: Fix event pending check + - tty: serial: samsung_tty: set dma burst_size to 1 + - vt: fix memory overlapping when deleting chars in the buffer + - serial: 8250: fix return error code in serial8250_request_std_resource() + - serial: stm32: Clear prev values before setting RTS delays + - serial: pl011: UPSTAT_AUTORTS requires .throttle/unthrottle + - serial: 8250: Fix PM usage_count for console handover + - x86/pat: Fix x86_has_pat_wp() + - drm/aperture: Run fbdev removal before internal helpers + - Linux 5.15.56 + * Jammy update: v5.15.55 upstream stable release (LP: #1988338) + - Linux 5.15.55 + * Jammy update: v5.15.54 upstream stable release (LP: #1987451) + - mm/slub: add missing TID updates on slab deactivation + - mm/filemap: fix UAF in find_lock_entries + - Revert "selftests/bpf: Add test for bpf_timer overwriting crash" + - ALSA: usb-audio: Workarounds for Behringer UMC 204/404 HD + - ALSA: hda/realtek: Add quirk for Clevo L140PU + - ALSA: cs46xx: Fix missing snd_card_free() call at probe error + - can: bcm: use call_rcu() instead of costly synchronize_rcu() + - can: grcan: grcan_probe(): remove extra of_node_get() + - can: gs_usb: gs_usb_open/close(): fix memory leak + - can: m_can: m_can_chip_config(): actually enable internal timestamping + - can: m_can: m_can_{read_fifo,echo_tx_event}(): shift timestamp to full 32 + bits + - can: mcp251xfd: mcp251xfd_regmap_crc_read(): improve workaround handling for + mcp2517fd + - can: mcp251xfd: mcp251xfd_regmap_crc_read(): update workaround broken CRC on + TBC register + - bpf: Fix incorrect verifier simulation around jmp32's jeq/jne + - bpf: Fix insufficient bounds propagation from adjust_scalar_min_max_vals + - usbnet: fix memory leak in error case + - net: rose: fix UAF bug caused by rose_t0timer_expiry + - netfilter: nft_set_pipapo: release elements in clone from abort path + - btrfs: rename btrfs_alloc_chunk to btrfs_create_chunk + - btrfs: add additional parameters to btrfs_init_tree_ref/btrfs_init_data_ref + - btrfs: fix invalid delayed ref after subvolume creation failure + - btrfs: fix warning when freeing leaf after subvolume creation failure + - Input: cpcap-pwrbutton - handle errors from platform_get_irq() + - Input: goodix - change goodix_i2c_write() len parameter type to int + - Input: goodix - add a goodix.h header file + - Input: goodix - refactor reset handling + - Input: goodix - try not to touch the reset-pin on x86/ACPI devices + - dma-buf/poll: Get a file reference for outstanding fence callbacks + - btrfs: fix deadlock between chunk allocation and chunk btree modifications + - drm/i915: Disable bonding on gen12+ platforms + - drm/i915/gt: Register the migrate contexts with their engines + - drm/i915: Replace the unconditional clflush with drm_clflush_virt_range() + - media: ir_toy: prevent device from hanging during transmit + - memory: renesas-rpc-if: Avoid unaligned bus access for HyperFlash + - ath11k: add hw_param for wakeup_mhi + - qed: Improve the stack space of filter_config() + - platform/x86: wmi: introduce helper to convert driver to WMI driver + - platform/x86: wmi: Replace read_takes_no_args with a flags field + - platform/x86: wmi: Fix driver->notify() vs ->probe() race + - mt76: mt7921: get rid of mt7921_mac_set_beacon_filter + - mt76: mt7921: introduce mt7921_mcu_set_beacon_filter utility routine + - mt76: mt7921: fix a possible race enabling/disabling runtime-pm + - bpf: Stop caching subprog index in the bpf_pseudo_func insn + - bpf, arm64: Use emit_addr_mov_i64() for BPF_PSEUDO_FUNC + - riscv: defconfig: enable DRM_NOUVEAU + - RISC-V: defconfigs: Set CONFIG_FB=y, for FB console + - net/mlx5e: Check action fwd/drop flag exists also for nic flows + - net/mlx5e: Split actions_match_supported() into a sub function + - net/mlx5e: TC, Reject rules with drop and modify hdr action + - net/mlx5e: TC, Reject rules with forward and drop actions + - ASoC: rt5682: Avoid the unexpected IRQ event during going to suspend + - ASoC: rt5682: Re-detect the combo jack after resuming + - ASoC: rt5682: Fix deadlock on resume + - netfilter: nf_tables: convert pktinfo->tprot_set to flags field + - netfilter: nft_payload: support for inner header matching / mangling + - netfilter: nft_payload: don't allow th access for fragments + - s390/boot: allocate amode31 section in decompressor + - s390/setup: use physical pointers for memblock_reserve() + - s390/setup: preserve memory at OLDMEM_BASE and OLDMEM_SIZE + - ibmvnic: init init_done_rc earlier + - ibmvnic: clear fop when retrying probe + - ibmvnic: Allow queueing resets during probe + - virtio-blk: avoid preallocating big SGL for data + - io_uring: ensure that fsnotify is always called + - block: use bdev_get_queue() in bio.c + - block: only mark bio as tracked if it really is tracked + - block: fix rq-qos breakage from skipping rq_qos_done_bio() + - stddef: Introduce struct_group() helper macro + - media: omap3isp: Use struct_group() for memcpy() region + - media: davinci: vpif: fix use-after-free on driver unbind + - mt76: mt76_connac: fix MCU_CE_CMD_SET_ROC definition error + - mt76: mt7921: do not always disable fw runtime-pm + - cxl/port: Hold port reference until decoder release + - clk: renesas: r9a07g044: Update multiplier and divider values for PLL2/3 + - KVM: x86/mmu: Use yield-safe TDP MMU root iter in MMU notifier unmapping + - KVM: x86/mmu: Use common TDP MMU zap helper for MMU notifier unmap hook + - scsi: qla2xxx: Move heartbeat handling from DPC thread to workqueue + - scsi: qla2xxx: Fix laggy FC remote port session recovery + - scsi: qla2xxx: edif: Replace list_for_each_safe with + list_for_each_entry_safe + - scsi: qla2xxx: Fix crash during module load unload test + - gfs2: Fix gfs2_file_buffered_write endless loop workaround + - vdpa/mlx5: Avoid processing works if workqueue was destroyed + - btrfs: handle device lookup with btrfs_dev_lookup_args + - btrfs: add a btrfs_get_dev_args_from_path helper + - btrfs: use btrfs_get_dev_args_from_path in dev removal ioctls + - btrfs: remove device item and update super block in the same transaction + - drbd: add error handling support for add_disk() + - drbd: Fix double free problem in drbd_create_device + - drbd: fix an invalid memory access caused by incorrect use of list iterator + - drm/amd/display: Set min dcfclk if pipe count is 0 + - drm/amd/display: Fix by adding FPU protection for dcn30_internal_validate_bw + - NFSD: De-duplicate net_generic(nf->nf_net, nfsd_net_id) + - NFSD: COMMIT operations must not return NFS?ERR_INVAL + - riscv/mm: Add XIP_FIXUP for riscv_pfn_base + - iio: accel: mma8452: use the correct logic to get mma8452_data + - batman-adv: Use netif_rx(). + - mtd: spi-nor: Skip erase logic when SPI_NOR_NO_ERASE is set + - Compiler Attributes: add __alloc_size() for better bounds checking + - mm: vmalloc: introduce array allocation functions + - KVM: use __vcalloc for very large allocations + - btrfs: don't access possibly stale fs_info data in device_list_add + - KVM: s390x: fix SCK locking + - scsi: qla2xxx: Fix loss of NVMe namespaces after driver reload test + - powerpc/32: Don't use lmw/stmw for saving/restoring non volatile regs + - powerpc: flexible GPR range save/restore macros + - powerpc/tm: Fix more userspace r13 corruption + - serial: sc16is7xx: Clear RS485 bits in the shutdown + - bus: mhi: core: Use correctly sized arguments for bit field + - bus: mhi: Fix pm_state conversion to string + - stddef: Introduce DECLARE_FLEX_ARRAY() helper + - uapi/linux/stddef.h: Add include guards + - ASoC: rt5682: move clk related code to rt5682_i2c_probe + - ASoC: rt5682: fix an incorrect NULL check on list iterator + - drm/amd/vcn: fix an error msg on vcn 3.0 + - KVM: Don't create VM debugfs files outside of the VM directory + - tty: n_gsm: Modify CR,PF bit when config requester + - tty: n_gsm: Save dlci address open status when config requester + - tty: n_gsm: fix frame reception handling + - ALSA: usb-audio: add mapping for MSI MPG X570S Carbon Max Wifi. + - ALSA: usb-audio: add mapping for MSI MAG X570S Torpedo MAX. + - tty: n_gsm: fix missing update of modem controls after DLCI open + - btrfs: zoned: encapsulate inode locking for zoned relocation + - btrfs: zoned: use dedicated lock for data relocation + - KVM: Initialize debugfs_dentry when a VM is created to avoid NULL deref + - mm/hwpoison: mf_mutex for soft offline and unpoison + - mm/hwpoison: avoid the impact of hwpoison_filter() return value on mce + handler + - mm/memory-failure.c: fix race with changing page compound again + - mm/hwpoison: fix race between hugetlb free/demotion and + memory_failure_hugetlb() + - tty: n_gsm: fix invalid use of MSC in advanced option + - tty: n_gsm: fix sometimes uninitialized warning in gsm_dlci_modem_output() + - serial: 8250_mtk: Make sure to select the right FEATURE_SEL + - tty: n_gsm: fix invalid gsmtty_write_room() result + - drm/i915: Fix a race between vma / object destruction and unbinding + - drm/mediatek: Use mailbox rx_callback instead of cmdq_task_cb + - drm/mediatek: Remove the pointer of struct cmdq_client + - drm/mediatek: Detect CMDQ execution timeout + - drm/mediatek: Add cmdq_handle in mtk_crtc + - drm/mediatek: Add vblank register/unregister callback functions + - Bluetooth: protect le accept and resolv lists with hdev->lock + - Bluetooth: btmtksdio: fix use-after-free at btmtksdio_recv_event + - io_uring: avoid io-wq -EAGAIN looping for !IOPOLL + - irqchip/gic-v3: Ensure pseudo-NMIs have an ISB between ack and handling + - irqchip/gic-v3: Refactor ISB + EOIR at ack time + - rxrpc: Fix locking issue + - dt-bindings: soc: qcom: smd-rpm: Add compatible for MSM8953 SoC + - dt-bindings: soc: qcom: smd-rpm: Fix missing MSM8936 compatible + - module: change to print useful messages from elf_validity_check() + - module: fix [e_shstrndx].sh_size=0 OOB access + - iommu/vt-d: Fix PCI bus rescan device hot add + - fbdev: fbmem: Fix logo center image dx issue + - PM: runtime: Redefine pm_runtime_release_supplier() + - memregion: Fix memregion_free() fallback definition + - video: of_display_timing.h: include errno.h + - powerpc/powernv: delay rng platform device creation until later in boot + - net: dsa: qca8k: reset cpu port on MTU change + - can: kvaser_usb: replace run-time checks with struct kvaser_usb_driver_info + - can: kvaser_usb: kvaser_usb_leaf: fix CAN clock frequency regression + - can: kvaser_usb: kvaser_usb_leaf: fix bittiming limits + - xfs: remove incorrect ASSERT in xfs_rename + - Revert "serial: sc16is7xx: Clear RS485 bits in the shutdown" + - btrfs: fix error pointer dereference in btrfs_ioctl_rm_dev_v2() + - virtio-blk: modify the value type of num in virtio_queue_rq() + - btrfs: fix use of uninitialized variable at rm device ioctl + - tty: n_gsm: fix encoding of command/response bit + - ARM: meson: Fix refcount leak in meson_smp_prepare_cpus + - pinctrl: sunxi: a83t: Fix NAND function name for some pins + - ASoC: rt711: Add endianness flag in snd_soc_component_driver + - ASoC: rt711-sdca: Add endianness flag in snd_soc_component_driver + - ASoC: codecs: rt700/rt711/rt711-sdca: resume bus/codec in .set_jack_detect + - arm64: dts: qcom: msm8994: Fix CPU6/7 reg values + - arm64: dts: qcom: sdm845: use dispcc AHB clock for mdss node + - ARM: mxs_defconfig: Enable the framebuffer + - arm64: dts: imx8mp-evk: correct mmc pad settings + - arm64: dts: imx8mp-evk: correct the uart2 pinctl value + - arm64: dts: imx8mp-evk: correct gpio-led pad settings + - arm64: dts: imx8mp-evk: correct vbus pad settings + - arm64: dts: imx8mp-evk: correct eqos pad settings + - arm64: dts: imx8mp-evk: correct I2C1 pad settings + - arm64: dts: imx8mp-evk: correct I2C3 pad settings + - arm64: dts: imx8mp-phyboard-pollux-rdk: correct uart pad settings + - arm64: dts: imx8mp-phyboard-pollux-rdk: correct eqos pad settings + - arm64: dts: imx8mp-phyboard-pollux-rdk: correct i2c2 & mmc settings + - pinctrl: sunxi: sunxi_pconf_set: use correct offset + - arm64: dts: qcom: msm8992-*: Fix vdd_lvs1_2-supply typo + - ARM: at91: pm: use proper compatible for sama5d2's rtc + - ARM: at91: pm: use proper compatibles for sam9x60's rtc and rtt + - ARM: at91: pm: use proper compatibles for sama7g5's rtc and rtt + - ARM: dts: at91: sam9x60ek: fix eeprom compatible and size + - ARM: dts: at91: sama5d2_icp: fix eeprom compatibles + - ARM: at91: fix soc detection for SAM9X60 SiPs + - xsk: Clear page contiguity bit when unmapping pool + - i2c: piix4: Fix a memory leak in the EFCH MMIO support + - i40e: Fix dropped jumbo frames statistics + - i40e: Fix VF's MAC Address change on VM + - ARM: dts: stm32: use usbphyc ck_usbo_48m as USBH OHCI clock on stm32mp151 + - ARM: dts: stm32: add missing usbh clock and fix clk order on stm32mp15 + - ibmvnic: Properly dispose of all skbs during a failover. + - selftests: forwarding: fix flood_unicast_test when h2 supports + IFF_UNICAST_FLT + - selftests: forwarding: fix learning_test when h1 supports IFF_UNICAST_FLT + - selftests: forwarding: fix error message in learning_test + - r8169: fix accessing unset transport header + - i2c: cadence: Unregister the clk notifier in error path + - dmaengine: imx-sdma: Allow imx8m for imx7 FW revs + - misc: rtsx_usb: fix use of dma mapped buffer for usb bulk transfer + - misc: rtsx_usb: use separate command and response buffers + - misc: rtsx_usb: set return value in rsp_buf alloc err path + - Revert "mm/memory-failure.c: fix race with changing page compound again" + - Revert "serial: 8250_mtk: Make sure to select the right FEATURE_SEL" + - dt-bindings: dma: allwinner,sun50i-a64-dma: Fix min/max typo + - ida: don't use BUG_ON() for debugging + - dmaengine: pl330: Fix lockdep warning about non-static key + - dmaengine: lgm: Fix an error handling path in intel_ldma_probe() + - dmaengine: at_xdma: handle errors of at_xdmac_alloc_desc() correctly + - dmaengine: ti: Fix refcount leak in ti_dra7_xbar_route_allocate + - dmaengine: qcom: bam_dma: fix runtime PM underflow + - dmaengine: ti: Add missing put_device in ti_dra7_xbar_route_allocate + - dmaengine: idxd: force wq context cleanup on device disable path + - selftests/net: fix section name when using xdp_dummy.o + - Linux 5.15.54 + + -- Tim Gardner Fri, 23 Sep 2022 10:37:41 -0600 + +linux-azure-5.15 (5.15.0-1020.25~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1020.25~20.04.1 -proposed tracker + (LP: #1987743) + + [ Ubuntu: 5.15.0-1020.25 ] + + * jammy/linux-azure: 5.15.0-1020.25 -proposed tracker (LP: #1987744) + * Jammy update: v5.15.49 upstream stable release (LP: #1983149) + - [Config] azure: updateconfigs for LIB_MEMNEQ + * azure: Set arm64 CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=n (LP: #1988434) + - [Config] azure: arm64: CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=n + * azure: Replace hyperv_fb with hyperv_drm (LP: #1986713) + - [Packaging] azure: Include hyperv_drm, exclude hyperv_fb from linux-modules + * jammy/linux: 5.15.0-48.54 -proposed tracker (LP: #1987775) + * System freeze after resuming from suspend due to PCI ASPM settings + (LP: #1980829) + - SAUCE: PCI/ASPM: Save/restore L1SS Capability for suspend/resume + - SAUCE: whitelist platforms that needs save/restore ASPM L1SS for + suspend/resume + * [SRU][J/OEM-5.17][PATCH 0/1] Fix oled brightness set above frame-average + luminance (LP: #1978986) + - SAUCE: drm: New function to get luminance range based on static hdr metadata + - SAUCE: drm/amdgpu_dm: Rely on split out luminance calculation function + - SAUCE: drm/i915: Use luminance range calculated during edid parsing + * Jammy: Add OVS Internal Port HW Offload to mlx5 driver (LP: #1983498) + - net/mlx5e: Refactor rx handler of represetor device + - net/mlx5e: Use generic name for the forwarding dev pointer + - net/mlx5: E-Switch, Add ovs internal port mapping to metadata support + - net/mlx5e: Support accept action + - net/mlx5e: Accept action skbedit in the tc actions list + - net/mlx5e: Offload tc rules that redirect to ovs internal port + - net/mlx5e: Offload internal port as encap route device + - net/mlx5e: Enable TC offload for ingress MACVLAN + - net/mlx5e: Add indirect tc offload of ovs internal port + - net/mlx5e: Term table handling of internal port rules + - net/mlx5: Support internal port as decap route device + - net/mlx5: Fix some error handling paths in 'mlx5e_tc_add_fdb_flow()' + - net/mlx5e: TC, Fix memory leak with rules with internal port + - net/mlx5e: Fix skb memory leak when TC classifier action offloads are + disabled + - net/mlx5e: Fix nullptr on deleting mirroring rule + - net/mlx5e: Avoid implicit modify hdr for decap drop rule + - net/mlx5e: Fix wrong source vport matching on tunnel rule + - net/mlx5e: TC, fix decap fallback to uplink when int port not supported + * Remove unused variable from i915 psr (LP: #1986798) + - SAUCE: drm/i915/display/psr: Remove unused variable + * refactoring of overlayfs fix to properly support shiftfs (LP: #1983640) + - SAUCE: overlayfs: remove CONFIG_AUFS_FS dependency + * Jammy update: v5.15.53 upstream stable release (LP: #1986728) + - Revert "drm/amdgpu/display: set vblank_disable_immediate for DC" + - drm/amdgpu: To flush tlb for MMHUB of RAVEN series + - ksmbd: set the range of bytes to zero without extending file size in + FSCTL_ZERO_DATA + - ksmbd: check invalid FileOffset and BeyondFinalZero in FSCTL_ZERO_DATA + - ksmbd: use vfs_llseek instead of dereferencing NULL + - ipv6: take care of disable_policy when restoring routes + - net: phy: Don't trigger state machine while in suspend + - nvme-pci: add NVME_QUIRK_BOGUS_NID for ADATA XPG SX6000LNP (AKA SPECTRIX + S40G) + - nvme-pci: add NVME_QUIRK_BOGUS_NID for ADATA IM2P33F8ABR1 + - nvdimm: Fix badblocks clear off-by-one error + - powerpc/prom_init: Fix kernel config grep + - powerpc/book3e: Fix PUD allocation size in map_kernel_page() + - powerpc/bpf: Fix use of user_pt_regs in uapi + - dm raid: fix accesses beyond end of raid member array + - dm raid: fix KASAN warning in raid5_add_disks + - s390/archrandom: simplify back to earlier design and initialize earlier + - SUNRPC: Fix READ_PLUS crasher + - net: rose: fix UAF bugs caused by timer handler + - net: usb: ax88179_178a: Fix packet receiving + - virtio-net: fix race between ndo_open() and virtio_device_ready() + - selftests/net: pass ipv6_args to udpgso_bench's IPv6 TCP test + - net: dsa: bcm_sf2: force pause link settings + - net: tun: unlink NAPI from device on destruction + - net: tun: stop NAPI when detaching queues + - net: dp83822: disable false carrier interrupt + - net: dp83822: disable rx error interrupt + - RDMA/qedr: Fix reporting QP timeout attribute + - RDMA/cm: Fix memory leak in ib_cm_insert_listen + - linux/dim: Fix divide by 0 in RDMA DIM + - net: usb: asix: do not force pause frames support + - usbnet: fix memory allocation in helpers + - selftests: mptcp: more stable diag tests + - net: ipv6: unexport __init-annotated seg6_hmac_net_init() + - NFSD: restore EINVAL error translation in nfsd_commit() + - vfs: fix copy_file_range() regression in cross-fs copies + - caif_virtio: fix race between virtio_device_ready() and ndo_open() + - PM / devfreq: exynos-ppmu: Fix refcount leak in of_get_devfreq_events + - vdpa/mlx5: Update Control VQ callback information + - s390: remove unneeded 'select BUILD_BIN2C' + - netfilter: nft_dynset: restore set element counter when failing to update + - net/dsa/hirschmann: Add missing of_node_get() in hellcreek_led_setup() + - net/sched: act_api: Notify user space if any actions were flushed before + error + - net: asix: fix "can't send until first packet is send" issue + - net: bonding: fix possible NULL deref in rlb code + - net: phy: ax88772a: fix lost pause advertisement configuration + - net: bonding: fix use-after-free after 802.3ad slave unbind + - powerpc/memhotplug: Add add_pages override for PPC + - nfc: nfcmrvl: Fix irq_of_parse_and_map() return value + - NFC: nxp-nci: Don't issue a zero length i2c_master_read() + - tipc: move bc link creation back to tipc_node_create + - epic100: fix use after free on rmmod + - io_uring: ensure that send/sendmsg and recv/recvmsg check sqe->ioprio + - ACPI: video: Change how we determine if brightness key-presses are handled + - tunnels: do not assume mac header is set in skb_tunnel_check_pmtu() + - ipv6/sit: fix ipip6_tunnel_get_prl return value + - ipv6: fix lockdep splat in in6_dump_addrs() + - mlxsw: spectrum_router: Fix rollback in tunnel next hop init + - net: tun: avoid disabling NAPI twice + - MAINTAINERS: add Leah as xfs maintainer for 5.15.y + - tcp: add a missing nf_reset_ct() in 3WHS handling + - selftests/bpf: Add test_verifier support to fixup kfunc call insns + - selftests/rseq: remove ARRAY_SIZE define from individual tests + - selftests/rseq: introduce own copy of rseq uapi header + - selftests/rseq: Remove useless assignment to cpu variable + - selftests/rseq: Remove volatile from __rseq_abi + - selftests/rseq: Introduce rseq_get_abi() helper + - selftests/rseq: Introduce thread pointer getters + - selftests/rseq: Uplift rseq selftests for compatibility with glibc-2.35 + - selftests/rseq: Fix ppc32: wrong rseq_cs 32-bit field pointer on big endian + - selftests/rseq: Fix ppc32 missing instruction selection "u" and "x" for + load/store + - selftests/rseq: Fix ppc32 offsets by using long rather than off_t + - selftests/rseq: Fix warnings about #if checks of undefined tokens + - selftests/rseq: Remove arm/mips asm goto compiler work-around + - selftests/rseq: Fix: work-around asm goto compiler bugs + - selftests/rseq: x86-64: use %fs segment selector for accessing rseq thread + area + - selftests/rseq: x86-32: use %gs segment selector for accessing rseq thread + area + - selftests/rseq: Change type of rseq_offset to ptrdiff_t + - xen/blkfront: fix leaking data in shared pages + - xen/netfront: fix leaking data in shared pages + - xen/netfront: force data bouncing when backend is untrusted + - xen/blkfront: force data bouncing when backend is untrusted + - xen-netfront: restore __skb_queue_tail() positioning in + xennet_get_responses() + - xen/arm: Fix race in RB-tree based P2M accounting + - net: usb: qmi_wwan: add Telit 0x1070 composition + - clocksource/drivers/ixp4xx: remove EXPORT_SYMBOL_GPL from + ixp4xx_timer_setup() + - fsi: occ: Force sequence numbering per OCC + - net: fix IFF_TX_SKB_NO_LINEAR definition + - drm/i915/gem: add missing else + - drm/msm/gem: Fix error return on fence id alloc fail + - drivers: cpufreq: Add missing of_node_put() in qoriq-cpufreq.c + - platform/x86: panasonic-laptop: de-obfuscate button codes + - platform/x86: panasonic-laptop: sort includes alphabetically + - platform/x86: panasonic-laptop: revert "Resolve hotkey double trigger bug" + - platform/x86: panasonic-laptop: don't report duplicate brightness key- + presses + - platform/x86: panasonic-laptop: filter out duplicate volume up/down/mute + keypresses + - drm/fourcc: fix integer type usage in uapi header + - hwmon: (occ) Remove sequence numbering and checksum calculation + - hwmon: (occ) Prevent power cap command overwriting poll response + - hwmon: (ibmaem) don't call platform_device_del() if platform_device_add() + fails + - Linux 5.15.53 + * Jammy update: v5.15.52 upstream stable release (LP: #1986724) + - tick/nohz: unexport __init-annotated tick_nohz_full_setup() + - xfs: use kmem_cache_free() for kmem_cache objects + - xfs: punch out data fork delalloc blocks on COW writeback failure + - xfs: Fix the free logic of state in xfs_attr_node_hasname + - xfs: remove all COW fork extents when remounting readonly + - xfs: check sb_meta_uuid for dabuf buffer recovery + - xfs: prevent UAF in xfs_log_item_in_current_chkpt + - xfs: only bother with sync_filesystem during readonly remount + - powerpc/ftrace: Remove ftrace init tramp once kernel init is complete + - fs: add is_idmapped_mnt() helper + - fs: move mapping helpers + - fs: tweak fsuidgid_has_mapping() + - fs: account for filesystem mappings + - docs: update mapping documentation + - fs: use low-level mapping helpers + - fs: remove unused low-level mapping helpers + - fs: port higher-level mapping helpers + - fs: add i_user_ns() helper + - fs: support mapped mounts of mapped filesystems + - fs: fix acl translation + - fs: account for group membership + - rtw88: 8821c: support RFE type4 wifi NIC + - rtw88: rtw8821c: enable rfe 6 devices + - net: mscc: ocelot: allow unregistered IP multicast flooding to CPU + - io_uring: fix not locked access to fixed buf table + - Linux 5.15.52 + * Jammy update: v5.15.51 upstream stable release (LP: #1986718) + - random: schedule mix_interrupt_randomness() less often + - random: quiet urandom warning ratelimit suppression message + - ALSA: hda/via: Fix missing beep setup + - ALSA: hda/conexant: Fix missing beep setup + - ALSA: hda/realtek: Add mute LED quirk for HP Omen laptop + - ALSA: hda/realtek: Apply fixup for Lenovo Yoga Duet 7 properly + - ALSA: hda/realtek: Add quirk for Clevo PD70PNT + - ALSA: hda/realtek: Add quirk for Clevo NS50PU + - net: openvswitch: fix parsing of nw_proto for IPv6 fragments + - 9p: Fix refcounting during full path walks for fid lookups + - 9p: fix fid refcount leak in v9fs_vfs_atomic_open_dotl + - 9p: fix fid refcount leak in v9fs_vfs_get_link + - btrfs: fix hang during unmount when block group reclaim task is running + - btrfs: prevent remounting to v1 space cache for subpage mount + - btrfs: add error messages to all unrecognized mount options + - scsi: ibmvfc: Store vhost pointer during subcrq allocation + - scsi: ibmvfc: Allocate/free queue resource only during probe/remove + - mmc: sdhci-pci-o2micro: Fix card detect by dealing with debouncing + - mmc: mediatek: wait dma stop bit reset to 0 + - xen/gntdev: Avoid blocking in unmap_grant_pages() + - MAINTAINERS: Add new IOMMU development mailing list + - ata: libata: add qc->flags in ata_qc_complete_template tracepoint + - dm era: commit metadata in postsuspend after worker stops + - dm mirror log: clear log bits up to BITS_PER_LONG boundary + - tracing/kprobes: Check whether get_kretprobe() returns NULL in + kretprobe_dispatcher() + - drm/i915: Implement w/a 22010492432 for adl-s + - USB: serial: pl2303: add support for more HXN (G) types + - USB: serial: option: add Telit LE910Cx 0x1250 composition + - USB: serial: option: add Quectel EM05-G modem + - USB: serial: option: add Quectel RM500K module support + - drm/msm: Ensure mmap offset is initialized + - drm/msm: Fix double pm_runtime_disable() call + - netfilter: use get_random_u32 instead of prandom + - scsi: scsi_debug: Fix zone transition to full condition + - drm/msm: Switch ordering of runpm put vs devfreq_idle + - scsi: iscsi: Exclude zero from the endpoint ID range + - xsk: Fix generic transmit when completion queue reservation fails + - drm/msm: use for_each_sgtable_sg to iterate over scatterlist + - bpf: Fix request_sock leak in sk lookup helpers + - drm/sun4i: Fix crash during suspend after component bind failure + - bpf, x86: Fix tail call count offset calculation on bpf2bpf call + - scsi: storvsc: Correct reporting of Hyper-V I/O size limits + - phy: aquantia: Fix AN when higher speeds than 1G are not advertised + - KVM: arm64: Prevent kmemleak from accessing pKVM memory + - net: Write lock dev_base_lock without disabling bottom halves. + - net: fix data-race in dev_isalive() + - tipc: fix use-after-free Read in tipc_named_reinit + - igb: fix a use-after-free issue in igb_clean_tx_ring + - bonding: ARP monitor spams NETDEV_NOTIFY_PEERS notifiers + - ethtool: Fix get module eeprom fallback + - net/sched: sch_netem: Fix arithmetic in netem_dump() for 32-bit platforms + - drm/msm/mdp4: Fix refcount leak in mdp4_modeset_init_intf + - drm/msm/dp: check core_initialized before disable interrupts at + dp_display_unbind() + - drm/msm/dp: Drop now unused hpd_high member + - drm/msm/dp: dp_link_parse_sink_count() return immediately if aux read failed + - drm/msm/dp: do not initialize phy until plugin interrupt received + - drm/msm/dp: force link training for display resolution change + - perf arm-spe: Don't set data source if it's not a memory operation + - erspan: do not assume transport header is always set + - net/tls: fix tls_sk_proto_close executed repeatedly + - udmabuf: add back sanity check + - selftests: netfilter: correct PKTGEN_SCRIPT_PATHS in nft_concat_range.sh + - xen-blkfront: Handle NULL gendisk + - x86/xen: Remove undefined behavior in setup_features() + - MIPS: Remove repetitive increase irq_err_count + - afs: Fix dynamic root getattr + - ice: ethtool: advertise 1000M speeds properly + - regmap-irq: Fix a bug in regmap_irq_enable() for type_in_mask chips + - regmap-irq: Fix offset/index mismatch in read_sub_irq_data() + - virtio_net: fix xdp_rxq_info bug after suspend/resume + - Revert "net/tls: fix tls_sk_proto_close executed repeatedly" + - sock: redo the psock vs ULP protection check + - nvme-pci: add NO APST quirk for Kioxia device + - nvme: move the Samsung X5 quirk entry to the core quirks + - gpio: winbond: Fix error code in winbond_gpio_get() + - s390/cpumf: Handle events cycles and instructions identical + - iio: mma8452: fix probe fail when device tree compatible is used. + - iio: magnetometer: yas530: Fix memchr_inv() misuse + - iio: adc: vf610: fix conversion mode sysfs node name + - usb: typec: wcove: Drop wrong dependency to INTEL_SOC_PMIC + - xhci-pci: Allow host runtime PM as default for Intel Raptor Lake xHCI + - xhci-pci: Allow host runtime PM as default for Intel Meteor Lake xHCI + - usb: gadget: Fix non-unique driver names in raw-gadget driver + - USB: gadget: Fix double-free bug in raw_gadget driver + - usb: chipidea: udc: check request status before setting device address + - dt-bindings: usb: ohci: Increase the number of PHYs + - dt-bindings: usb: ehci: Increase the number of PHYs + - btrfs: don't set lock_owner when locking extent buffer for reading + - btrfs: fix deadlock with fsync+fiemap+transaction commit + - f2fs: attach inline_data after setting compression + - iio:humidity:hts221: rearrange iio trigger get and register + - iio:chemical:ccs811: rearrange iio trigger get and register + - iio:accel:kxcjk-1013: rearrange iio trigger get and register + - iio:accel:bma180: rearrange iio trigger get and register + - iio:accel:mxc4005: rearrange iio trigger get and register + - iio: accel: mma8452: ignore the return value of reset operation + - iio: gyro: mpu3050: Fix the error handling in mpu3050_power_up() + - iio: trigger: sysfs: fix use-after-free on remove + - iio: adc: stm32: fix maximum clock rate for stm32mp15x + - iio: imu: inv_icm42600: Fix broken icm42600 (chip id 0 value) + - iio: afe: rescale: Fix boolean logic bug + - iio: adc: stm32: Fix ADCs iteration in irq handler + - iio: adc: stm32: Fix IRQs on STM32F4 by removing custom spurious IRQs + message + - iio: adc: axp288: Override TS pin bias current for some models + - iio: adc: rzg2l_adc: add missing fwnode_handle_put() in + rzg2l_adc_parse_properties() + - iio: adc: adi-axi-adc: Fix refcount leak in adi_axi_adc_attach_client + - iio: adc: ti-ads131e08: add missing fwnode_handle_put() in + ads131e08_alloc_channels() + - xtensa: xtfpga: Fix refcount leak bug in setup + - xtensa: Fix refcount leak bug in time.c + - parisc/stifb: Fix fb_is_primary_device() only available with CONFIG_FB_STI + - parisc: Enable ARCH_HAS_STRICT_MODULE_RWX + - powerpc/microwatt: wire up rng during setup_arch() + - powerpc: Enable execve syscall exit tracepoint + - powerpc/rtas: Allow ibm,platform-dump RTAS call with null buffer address + - powerpc/powernv: wire up rng during setup_arch + - drm/msm/dp: Always clear mask bits to disable interrupts at + dp_ctrl_reset_irq_ctrl() + - ARM: dts: imx7: Move hsic_phy power domain to HSIC PHY node + - ARM: dts: imx6qdl: correct PU regulator ramp delay + - arm64: dts: ti: k3-am64-main: Remove support for HS400 speed mode + - ARM: exynos: Fix refcount leak in exynos_map_pmu + - soc: bcm: brcmstb: pm: pm-arm: Fix refcount leak in brcmstb_pm_probe + - ARM: Fix refcount leak in axxia_boot_secondary + - memory: samsung: exynos5422-dmc: Fix refcount leak in of_get_dram_timings + - ARM: cns3xxx: Fix refcount leak in cns3xxx_init + - modpost: fix section mismatch check for exported init/exit sections + - ARM: dts: bcm2711-rpi-400: Fix GPIO line names + - random: update comment from copy_to_user() -> copy_to_iter() + - perf build-id: Fix caching files with a wrong build ID + - dma-direct: use the correct size for dma_set_encrypted() + - kbuild: link vmlinux only once for CONFIG_TRIM_UNUSED_KSYMS (2nd attempt) + - powerpc/pseries: wire up rng during setup_arch() + - Linux 5.15.51 + * Jammy update: v5.15.50 upstream stable release (LP: #1986715) + - net: mana: Add handling of CQE_RX_TRUNCATED + - zonefs: fix zonefs_iomap_begin() for reads + - usb: gadget: u_ether: fix regression in setting fixed MAC address + - bpf: Fix calling global functions from BPF_PROG_TYPE_EXT programs + - selftests/bpf: Add selftest for calling global functions from freplace + - serial: core: Initialize rs485 RTS polarity already on probe + - arm64: mm: Don't invalidate FROM_DEVICE buffers at start of DMA transfer + - Linux 5.15.50 + * Jammy update: v5.15.49 upstream stable release (LP: #1983149) + - Revert "drm/amd/display: Fix DCN3 B0 DP Alt Mapping" + - nfsd: Replace use of rwsem with errseq_t + - arm64: dts: imx8mm-beacon: Enable RTS-CTS on UART3 + - arm64: dts: imx8mn-beacon: Enable RTS-CTS on UART3 + - powerpc/kasan: Silence KASAN warnings in __get_wchan() + - ASoC: nau8822: Add operation for internal PLL off and on + - drm/amd/display: Read Golden Settings Table from VBIOS + - drm/amdkfd: Use mmget_not_zero in MMU notifier + - dma-debug: make things less spammy under memory pressure + - ASoC: cs42l52: Fix TLV scales for mixer controls + - ASoC: cs35l36: Update digital volume TLV + - ASoC: cs53l30: Correct number of volume levels on SX controls + - ASoC: cs42l52: Correct TLV for Bypass Volume + - ASoC: cs42l56: Correct typo in minimum level for SX volume controls + - ASoC: cs42l51: Correct minimum value for SX volume control + - drm/amdkfd: add pinned BOs to kfd_bo_list + - ata: libata-core: fix NULL pointer deref in ata_host_alloc_pinfo() + - quota: Prevent memory allocation recursion while holding dq_lock + - ASoC: wm8962: Fix suspend while playing music + - ASoC: es8328: Fix event generation for deemphasis control + - ASoC: wm_adsp: Fix event generation for wm_adsp_fw_put() + - Input: soc_button_array - also add Lenovo Yoga Tablet2 1051F to + dmi_use_low_level_irq + - scsi: vmw_pvscsi: Expand vcpuHint to 16 bits + - scsi: lpfc: Resolve NULL ptr dereference after an ELS LOGO is aborted + - scsi: lpfc: Fix port stuck in bypassed state after LIP in PT2PT topology + - scsi: lpfc: Allow reduced polling rate for nvme_admin_async_event cmd + completion + - scsi: mpt3sas: Fix out-of-bounds compiler warning + - scsi: ipr: Fix missing/incorrect resource cleanup in error case + - scsi: pmcraid: Fix missing resource cleanup in error case + - ALSA: hda/realtek - Add HW8326 support + - virtio-mmio: fix missing put_device() when vm_cmdline_parent registration + failed + - nfc: nfcmrvl: Fix memory leak in nfcmrvl_play_deferred + - ipv6: Fix signed integer overflow in l2tp_ip6_sendmsg + - net: ethernet: mtk_eth_soc: fix misuse of mem alloc interface + netdev[napi]_alloc_frag + - gcc-12: disable '-Wdangling-pointer' warning for now + - mellanox: mlx5: avoid uninitialized variable warning with gcc-12 + - MIPS: Loongson-3: fix compile mips cpu_hwmon as module build error. + - random: credit cpu and bootloader seeds by default + - gpio: dwapb: Don't print error on -EPROBE_DEFER + - platform/x86: gigabyte-wmi: Add Z690M AORUS ELITE AX DDR4 support + - platform/x86: gigabyte-wmi: Add support for B450M DS3H-CF + - platform/x86/intel: hid: Add Surface Go to VGBS allow list + - staging: r8188eu: fix rtw_alloc_hwxmits error detection for now + - staging: r8188eu: Use zeroing allocator in wpa_set_encryption() + - staging: r8188eu: Fix warning of array overflow in ioctl_linux.c + - pNFS: Don't keep retrying if the server replied NFS4ERR_LAYOUTUNAVAILABLE + - pNFS: Avoid a live lock condition in pnfs_update_layout() + - sunrpc: set cl_max_connect when cloning an rpc_clnt + - clocksource: hyper-v: unexport __init-annotated hv_init_clocksource() + - i40e: Fix adding ADQ filter to TC0 + - i40e: Fix calculating the number of queue pairs + - i40e: Fix call trace in setup_tx_descriptors + - Drivers: hv: vmbus: Release cpu lock in error case + - tty: goldfish: Fix free_irq() on remove + - misc: atmel-ssc: Fix IRQ check in ssc_probe + - io_uring: fix races with file table unregister + - io_uring: fix races with buffer table unregister + - drm/i915/reset: Fix error_state_read ptr + offset use + - net: hns3: split function hclge_update_port_base_vlan_cfg() + - net: hns3: set port base vlan tbl_sta to false before removing old vlan + - net: hns3: don't push link state to VF if unalive + - net: hns3: fix tm port shapping of fibre port is incorrect after driver + initialization + - nvme: add device name to warning in uuid_show() + - mlxsw: spectrum_cnt: Reorder counter pools + - net: bgmac: Fix an erroneous kfree() in bgmac_remove() + - net: ax25: Fix deadlock caused by skb_recv_datagram in ax25_recvmsg + - arm64: ftrace: fix branch range checks + - arm64: ftrace: consistently handle PLTs. + - certs/blacklist_hashes.c: fix const confusion in certs blacklist + - init: Initialize noop_backing_dev_info early + - block: Fix handling of offline queues in blk_mq_alloc_request_hctx() + - faddr2line: Fix overlapping text section failures, the sequel + - i2c: npcm7xx: Add check for platform_driver_register + - irqchip/gic/realview: Fix refcount leak in realview_gic_of_init + - irqchip/gic-v3: Fix error handling in gic_populate_ppi_partitions + - irqchip/gic-v3: Fix refcount leak in gic_populate_ppi_partitions + - irqchip/realtek-rtl: Fix refcount leak in map_interrupts + - sched: Fix balance_push() vs __sched_setscheduler() + - i2c: designware: Use standard optional ref clock implementation + - mei: hbm: drop capability response on early shutdown + - mei: me: add raptor lake point S DID + - comedi: vmk80xx: fix expression for tx buffer size + - [Config] updateconfigs for LIB_MEMNEQ + - crypto: memneq - move into lib/ + - USB: serial: option: add support for Cinterion MV31 with new baseline + - USB: serial: io_ti: add Agilent E5805A support + - usb: dwc2: Fix memory leak in dwc2_hcd_init + - usb: cdnsp: Fixed setting last_trb incorrectly + - usb: gadget: lpc32xx_udc: Fix refcount leak in lpc32xx_udc_probe + - usb: gadget: f_fs: change ep->status safe in ffs_epfile_io() + - usb: gadget: f_fs: change ep->ep safe in ffs_epfile_io() + - tty: n_gsm: Debug output allocation must use GFP_ATOMIC + - serial: 8250: Store to lsr_save_flags after lsr read + - bus: fsl-mc-bus: fix KASAN use-after-free in fsl_mc_bus_remove() + - dm mirror log: round up region bitmap size to BITS_PER_LONG + - drm/amd/display: Cap OLED brightness per max frame-average luminance + - cfi: Fix __cfi_slowpath_diag RCU usage with cpuidle + - ext4: fix super block checksum incorrect after mount + - ext4: fix bug_on ext4_mb_use_inode_pa + - ext4: make variable "count" signed + - ext4: add reserved GDT blocks check + - KVM: arm64: Don't read a HW interrupt pending state in user context + - virtio-pci: Remove wrong address verification in vp_del_vqs() + - powerpc/book3e: get rid of #include + - clk: imx8mp: fix usb_root_clk parent + - Linux 5.15.49 + * Jammy update: v5.15.48 upstream stable release (LP: #1983146) + - Linux 5.15.48 + - Upstream stable to v5.15.48 + * Jammy update: v5.15.47 upstream stable release (LP: #1982968) + - pcmcia: db1xxx_ss: restrict to MIPS_DB1XXX boards + - staging: greybus: codecs: fix type confusion of list iterator variable + - iio: adc: ad7124: Remove shift from scan_type + - lkdtm/bugs: Check for the NULL pointer after calling kmalloc + - lkdtm/bugs: Don't expect thread termination without CONFIG_UBSAN_TRAP + - tty: goldfish: Use tty_port_destroy() to destroy port + - tty: serial: owl: Fix missing clk_disable_unprepare() in owl_uart_probe + - tty: n_tty: Restore EOF push handling behavior + - serial: 8250_aspeed_vuart: Fix potential NULL dereference in + aspeed_vuart_probe + - tty: serial: fsl_lpuart: fix potential bug when using both of_alias_get_id + and ida_simple_get + - remoteproc: imx_rproc: Ignore create mem entry for resource table + - usb: usbip: fix a refcount leak in stub_probe() + - usb: usbip: add missing device lock on tweak configuration cmd + - USB: storage: karma: fix rio_karma_init return + - usb: musb: Fix missing of_node_put() in omap2430_probe + - staging: fieldbus: Fix the error handling path in + anybuss_host_common_probe() + - pwm: lp3943: Fix duty calculation in case period was clamped + - pwm: raspberrypi-poe: Fix endianness in firmware struct + - rpmsg: qcom_smd: Fix irq_of_parse_and_map() return value + - usb: dwc3: gadget: Replace list_for_each_entry_safe() if using giveback + - usb: dwc3: pci: Fix pm_runtime_get_sync() error checking + - misc: fastrpc: fix an incorrect NULL check on list iterator + - firmware: stratix10-svc: fix a missing check on list iterator + - usb: typec: mux: Check dev_set_name() return value + - rpmsg: virtio: Fix possible double free in rpmsg_probe() + - rpmsg: virtio: Fix possible double free in rpmsg_virtio_add_ctrl_dev() + - rpmsg: virtio: Fix the unregistration of the device rpmsg_ctrl + - iio: adc: stmpe-adc: Fix wait_for_completion_timeout return value check + - iio: proximity: vl53l0x: Fix return value check of + wait_for_completion_timeout + - iio: adc: sc27xx: fix read big scale voltage not right + - iio: adc: sc27xx: Fine tune the scale calibration values + - rpmsg: qcom_smd: Fix returning 0 if irq_of_parse_and_map() fails + - pvpanic: Fix typos in the comments + - misc/pvpanic: Convert regular spinlock into trylock on panic path + - phy: qcom-qmp: fix pipe-clock imbalance on power-on failure + - power: supply: axp288_fuel_gauge: Drop BIOS version check from "T3 MRD" DMI + quirk + - serial: sifive: Report actual baud base rather than fixed 115200 + - export: fix string handling of namespace in EXPORT_SYMBOL_NS + - soundwire: intel: prevent pm_runtime resume prior to system suspend + - coresight: cpu-debug: Replace mutex with mutex_trylock on panic notifier + - ksmbd: fix reference count leak in smb_check_perm_dacl() + - extcon: ptn5150: Add queue work sync before driver release + - soc: rockchip: Fix refcount leak in rockchip_grf_init + - clocksource/drivers/riscv: Events are stopped during CPU suspend + - ARM: dts: aspeed: ast2600-evb: Enable RX delay for MAC0/MAC1 + - rtc: mt6397: check return value after calling platform_get_resource() + - rtc: ftrtc010: Use platform_get_irq() to get the interrupt + - rtc: ftrtc010: Fix error handling in ftrtc010_rtc_probe + - staging: r8188eu: add check for kzalloc + - tty: n_gsm: Don't ignore write return value in gsmld_output() + - tty: n_gsm: Fix packet data hex dump output + - serial: meson: acquire port->lock in startup() + - serial: 8250_fintek: Check SER_RS485_RTS_* only with RS485 + - serial: cpm_uart: Fix build error without CONFIG_SERIAL_CPM_CONSOLE + - serial: digicolor-usart: Don't allow CS5-6 + - serial: rda-uart: Don't allow CS5-6 + - serial: txx9: Don't allow CS5-6 + - serial: sh-sci: Don't allow CS5-6 + - serial: sifive: Sanitize CSIZE and c_iflag + - serial: st-asc: Sanitize CSIZE and correct PARENB for CS7 + - serial: stm32-usart: Correct CSIZE, bits, and parity + - firmware: dmi-sysfs: Fix memory leak in dmi_sysfs_register_handle + - bus: ti-sysc: Fix warnings for unbind for serial + - driver: base: fix UAF when driver_attach failed + - driver core: fix deadlock in __device_attach + - watchdog: rti-wdt: Fix pm_runtime_get_sync() error checking + - watchdog: ts4800_wdt: Fix refcount leak in ts4800_wdt_probe + - blk-mq: don't touch ->tagset in blk_mq_get_sq_hctx + - ASoC: fsl_sai: Fix FSL_SAI_xDR/xFR definition + - clocksource/drivers/oxnas-rps: Fix irq_of_parse_and_map() return value + - s390/crypto: fix scatterwalk_unmap() callers in AES-GCM + - net: sched: fixed barrier to prevent skbuff sticking in qdisc backlog + - net: ethernet: mtk_eth_soc: out of bounds read in mtk_hwlro_get_fdir_entry() + - net: ethernet: ti: am65-cpsw-nuss: Fix some refcount leaks + - net: dsa: mv88e6xxx: Fix refcount leak in mv88e6xxx_mdios_register + - modpost: fix removing numeric suffixes + - jffs2: fix memory leak in jffs2_do_fill_super + - ubi: fastmap: Fix high cpu usage of ubi_bgt by making sure wl_pool not empty + - ubi: ubi_create_volume: Fix use-after-free when volume creation failed + - selftests/bpf: fix selftest after random: Urandom_read tracepoint removal + - selftests/bpf: fix stacktrace_build_id with missing kprobe/urandom_read + - bpf: Fix probe read error in ___bpf_prog_run() + - block: take destination bvec offsets into account in bio_copy_data_iter + - riscv: read-only pages should not be writable + - net/smc: fixes for converting from "struct smc_cdc_tx_pend **" to "struct + smc_wr_tx_pend_priv *" + - tcp: add accessors to read/set tp->snd_cwnd + - nfp: only report pause frame configuration for physical device + - sfc: fix considering that all channels have TX queues + - sfc: fix wrong tx channel offset with efx_separate_tx_channels + - block: make bioset_exit() fully resilient against being called twice + - vdpa: Fix error logic in vdpa_nl_cmd_dev_get_doit + - virtio: pci: Fix an error handling path in vp_modern_probe() + - net/mlx5: Don't use already freed action pointer + - net/mlx5: CT: Fix header-rewrite re-use for tupels + - net/mlx5: correct ECE offset in query qp output + - net/mlx5e: Update netdev features after changing XDP state + - net: sched: add barrier to fix packet stuck problem for lockless qdisc + - tcp: tcp_rtx_synack() can be called from process context + - vdpa: ifcvf: set pci driver data in probe + - octeontx2-af: fix error code in is_valid_offset() + - s390/mcck: isolate SIE instruction when setting CIF_MCCK_GUEST flag + - regulator: mt6315-regulator: fix invalid allowed mode + - gpio: pca953x: use the correct register address to do regcache sync + - afs: Fix infinite loop found by xfstest generic/676 + - scsi: sd: Fix potential NULL pointer dereference + - tipc: check attribute length for bearer name + - driver core: Fix wait_for_device_probe() & deferred_probe_timeout + interaction + - perf c2c: Fix sorting in percent_rmt_hitm_cmp() + - dmaengine: idxd: set DMA_INTERRUPT cap bit + - mips: cpc: Fix refcount leak in mips_cpc_default_phys_base + - bootconfig: Make the bootconfig.o as a normal object file + - tracing: Make tp_printk work on syscall tracepoints + - tracing: Fix sleeping function called from invalid context on RT kernel + - tracing: Avoid adding tracer option before update_tracer_options + - iommu/arm-smmu: fix possible null-ptr-deref in arm_smmu_device_probe() + - iommu/arm-smmu-v3: check return value after calling platform_get_resource() + - f2fs: remove WARN_ON in f2fs_is_valid_blkaddr + - i2c: cadence: Increase timeout per message if necessary + - m68knommu: set ZERO_PAGE() to the allocated zeroed page + - m68knommu: fix undefined reference to `_init_sp' + - dmaengine: zynqmp_dma: In struct zynqmp_dma_chan fix desc_size data type + - NFSv4: Don't hold the layoutget locks across multiple RPC calls + - video: fbdev: hyperv_fb: Allow resolutions with size > 64 MB for Gen1 + - video: fbdev: pxa3xx-gcu: release the resources correctly in + pxa3xx_gcu_probe/remove() + - RISC-V: use memcpy for kexec_file mode + - m68knommu: fix undefined reference to `mach_get_rtc_pll' + - f2fs: fix to tag gcing flag on page during file defragment + - xprtrdma: treat all calls not a bcall when bc_serv is NULL + - drm/bridge: sn65dsi83: Fix an error handling path in sn65dsi83_probe() + - drm/bridge: ti-sn65dsi83: Handle dsi_lanes == 0 as invalid + - netfilter: nat: really support inet nat without l3 address + - netfilter: nf_tables: use kfree_rcu(ptr, rcu) to release hooks in clean_net + path + - netfilter: nf_tables: delete flowtable hooks via transaction list + - powerpc/kasan: Force thread size increase with KASAN + - SUNRPC: Trap RDMA segment overflows + - netfilter: nf_tables: always initialize flowtable hook list in transaction + - ata: pata_octeon_cf: Fix refcount leak in octeon_cf_probe + - netfilter: nf_tables: release new hooks on unsupported flowtable flags + - netfilter: nf_tables: memleak flow rule from commit path + - netfilter: nf_tables: bail out early if hardware offload is not supported + - xen: unexport __init-annotated xen_xlate_map_ballooned_pages() + - stmmac: intel: Fix an error handling path in intel_eth_pci_probe() + - af_unix: Fix a data-race in unix_dgram_peer_wake_me(). + - bpf, arm64: Clear prog->jited_len along prog->jited + - net: dsa: lantiq_gswip: Fix refcount leak in gswip_gphy_fw_list + - net/mlx4_en: Fix wrong return value on ioctl EEPROM query failure + - i40e: xsk: Move tmp desc array from driver to pool + - xsk: Fix handling of invalid descriptors in XSK TX batching API + - SUNRPC: Fix the calculation of xdr->end in xdr_get_next_encode_buffer() + - net: mdio: unexport __init-annotated mdio_bus_init() + - net: xfrm: unexport __init-annotated xfrm4_protocol_init() + - net: ipv6: unexport __init-annotated seg6_hmac_init() + - net/mlx5: Lag, filter non compatible devices + - net/mlx5: Fix mlx5_get_next_dev() peer device matching + - net/mlx5: Rearm the FW tracer after each tracer event + - net/mlx5: fs, fail conflicting actions + - ip_gre: test csum_start instead of transport header + - net: altera: Fix refcount leak in altera_tse_mdio_create + - net: dsa: mv88e6xxx: use BMSR_ANEGCOMPLETE bit for filling an_complete + - tcp: use alloc_large_system_hash() to allocate table_perturb + - drm: imx: fix compiler warning with gcc-12 + - nfp: flower: restructure flow-key for gre+vlan combination + - iov_iter: Fix iter_xarray_get_pages{,_alloc}() + - iio: dummy: iio_simple_dummy: check the return value of kstrdup() + - staging: rtl8712: fix a potential memory leak in r871xu_drv_init() + - iio: st_sensors: Add a local lock for protecting odr + - lkdtm/usercopy: Expand size of "out of frame" object + - drivers: staging: rtl8723bs: Fix deadlock in rtw_surveydone_event_callback() + - drivers: staging: rtl8192bs: Fix deadlock in rtw_joinbss_event_prehandle() + - tty: synclink_gt: Fix null-pointer-dereference in slgt_clean() + - tty: Fix a possible resource leak in icom_probe + - thunderbolt: Use different lane for second DisplayPort tunnel + - drivers: staging: rtl8192u: Fix deadlock in ieee80211_beacons_stop() + - drivers: staging: rtl8192e: Fix deadlock in rtllib_beacons_stop() + - USB: host: isp116x: check return value after calling platform_get_resource() + - drivers: tty: serial: Fix deadlock in sa1100_set_termios() + - drivers: usb: host: Fix deadlock in oxu_bus_suspend() + - USB: hcd-pci: Fully suspend across freeze/thaw cycle + - char: xillybus: fix a refcount leak in cleanup_dev() + - sysrq: do not omit current cpu when showing backtrace of all active CPUs + - usb: dwc2: gadget: don't reset gadget's driver->bus + - soundwire: qcom: adjust autoenumeration timeout + - misc: rtsx: set NULL intfdata when probe fails + - extcon: Fix extcon_get_extcon_dev() error handling + - extcon: Modify extcon device to be created after driver data is set + - clocksource/drivers/sp804: Avoid error on multiple instances + - staging: rtl8712: fix uninit-value in usb_read8() and friends + - staging: rtl8712: fix uninit-value in r871xu_drv_init() + - serial: msm_serial: disable interrupts in __msm_console_write() + - kernfs: Separate kernfs_pr_cont_buf and rename_lock. + - watchdog: wdat_wdt: Stop watchdog when rebooting the system + - md: protect md_unregister_thread from reentrancy + - scsi: myrb: Fix up null pointer access on myrb_cleanup() + - ceph: allow ceph.dir.rctime xattr to be updatable + - ceph: flush the mdlog for filesystem sync + - drm/amd/display: Check if modulo is 0 before dividing. + - drm/radeon: fix a possible null pointer dereference + - drm/amd/pm: Fix missing thermal throttler status + - um: line: Use separate IRQs per line + - modpost: fix undefined behavior of is_arm_mapping_symbol() + - x86/cpu: Elide KCSAN for cpu_has() and friends + - jump_label,noinstr: Avoid instrumentation for JUMP_LABEL=n builds + - nbd: call genl_unregister_family() first in nbd_cleanup() + - nbd: fix race between nbd_alloc_config() and module removal + - cifs: version operations for smb20 unneeded when legacy support disabled + - drm/amd/pm: use bitmap_{from,to}_arr32 where appropriate + - nodemask: Fix return values to be unsigned + - vringh: Fix loop descriptors check in the indirect cases + - scripts/gdb: change kernel config dumping method + - ALSA: usb-audio: Skip generic sync EP parse for secondary EP + - ALSA: usb-audio: Set up (implicit) sync for Saffire 6 + - ALSA: hda/conexant - Fix loopback issue with CX20632 + - ALSA: hda/realtek: Fix for quirk to enable speaker output on the Lenovo Yoga + DuetITL 2021 + - ALSA: hda/realtek: Add quirk for HP Dev One + - cifs: return errors during session setup during reconnects + - cifs: fix reconnect on smb3 mount types + - KEYS: trusted: tpm2: Fix migratable logic + - ata: libata-transport: fix {dma|pio|xfer}_mode sysfs files + - mmc: block: Fix CQE recovery reset success + - net: phy: dp83867: retrigger SGMII AN when link change + - writeback: Fix inode->i_io_list not be protected by inode->i_lock error + - nfc: st21nfca: fix incorrect validating logic in EVT_TRANSACTION + - nfc: st21nfca: fix memory leaks in EVT_TRANSACTION handling + - nfc: st21nfca: fix incorrect sizing calculations in EVT_TRANSACTION + - ixgbe: fix bcast packets Rx on VF after promisc removal + - ixgbe: fix unexpected VLAN Rx in promisc mode on VF + - Input: bcm5974 - set missing URB_NO_TRANSFER_DMA_MAP urb flag + - vduse: Fix NULL pointer dereference on sysfs access + - powerpc: Don't select HAVE_IRQ_EXIT_ON_IRQ_STACK + - drm/bridge: analogix_dp: Support PSR-exit to disable transition + - drm/atomic: Force bridge self-refresh-exit on CRTC switch + - drm/amdgpu: update VCN codec support for Yellow Carp + - powerpc/32: Fix overread/overwrite of thread_struct via ptrace + - powerpc/mm: Switch obsolete dssall to .long + - drm/ast: Create threshold values for AST2600 + - random: avoid checking crng_ready() twice in random_init() + - random: mark bootloader randomness code as __init + - random: account for arch randomness in bits + - md/raid0: Ignore RAID0 layout if the second zone has only one device + - net/sched: act_police: more accurate MTU policing + - PCI: qcom: Fix pipe clock imbalance + - zonefs: fix handling of explicit_open option on mount + - iov_iter: fix build issue due to possible type mis-match + - dmaengine: idxd: add missing callback function to support DMA_INTERRUPT + - tcp: fix tcp_mtup_probe_success vs wrong snd_cwnd + - xsk: Fix possible crash when multiple sockets are created + - Linux 5.15.47 + * CVE-2022-36946 + - netfilter: nf_queue: do not allow packet truncation below transport header + offset + * CVE-2021-33655 + - fbcon: Disallow setting font bigger than screen size + - fbcon: Prevent that screen size is smaller than font size + - fbmem: Check virtual screen sizes in fb_set_var() + + -- Tim Gardner Thu, 01 Sep 2022 12:58:35 -0600 + +linux-azure-5.15 (5.15.0-1019.24~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1019.22~20.04.1 -proposed tracker + (LP: #1987326) + + * azure-5.15: Remove circular dependency on linux-modules and linux-image + (LP: #1987294) + - [Packaging] azure-5.15: Remove circular package dependencies (partial + revert) + + [ Ubuntu: 5.15.0-1019.24 ] + + * jammy/linux-azure: 5.15.0-1019.22 -proposed tracker (LP: #1987327) + * azure-5.15: Remove circular dependency on linux-modules and linux-image + (LP: #1987294) + - [Packaging] azure-5.15: Remove circular package dependencies (partial + revert) + + -- Tim Gardner Tue, 23 Aug 2022 09:25:55 -0600 + +linux-azure-5.15 (5.15.0-1019.22~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1019.22~20.04.1 -proposed tracker + (LP: #1987326) + + * azure-5.15: Remove circular dependency on linux-modules and linux-image + (LP: #1987294) + - [Packaging] azure-5.15: Remove circular package dependnecies + + [ Ubuntu: 5.15.0-1019.22 ] + + * jammy/linux-azure: 5.15.0-1019.22 -proposed tracker (LP: #1987327) + * azure-5.15: Remove circular dependency on linux-modules and linux-image + (LP: #1987294) + - [Packaging] azure-5.15: Remove circular package dependencies + + -- Tim Gardner Mon, 22 Aug 2022 12:35:07 -0600 + +linux-azure-5.15 (5.15.0-1018.21~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1018.21~20.04.1 -proposed tracker + (LP: #1983872) + + * Jammy update: v5.15.44 upstream stable release (LP: #1981649) + - [Config] updateconfigs for CRYPTO_LIB_BLAKE2S + + * Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - [Packaging] azure-5.15: Move python3-dev to build-depends + + [ Ubuntu: 5.15.0-1018.21 ] + + * jammy/linux-azure: 5.15.0-1018.21 -proposed tracker (LP: #1983873) + * Jammy update: v5.15.44 upstream stable release (LP: #1981649) // Jammy + update: v5.15.46 upstream stable release (LP: #1981864) + - [Config] azure: Update configs after rebase + * Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - [Packaging] azure: Move python3-dev to build-depends + * Azure: Add the Linux MANA PF driver (LP: #1980766) + - ethernet: use eth_hw_addr_set() instead of ether_addr_copy() + - net: mana: Use kcalloc() instead of kzalloc() + - net: mana: Allow setting the number of queues while the NIC is down + - net: mana: Fix the netdev_err()'s vPort argument in mana_init_port() + - net: mana: Report OS info to the PF driver + - net: mana: Improve the HWC error handling + - net: mana: Support hibernation and kexec + - net: mana: Fix spelling mistake "calledd" -> "called" + - net: mana: Add XDP support + - net: Add includes masked by netdevice.h including uapi/bpf.h + - net: mana: Use struct_size() helper in mana_gd_create_dma_region() + - net: mana: Add counter for packet dropped by XDP + - net: mana: Add counter for XDP_TX + - net: mana: Reuse XDP dropped page + - net: mana: Add the Linux MANA PF driver + * 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 + + -- Tim Gardner Tue, 16 Aug 2022 08:49:00 -0600 + +linux-azure-5.15 (5.15.0-1017.20~20.04.1) focal; urgency=medium + + [ Ubuntu: 5.15.0-1017.20 ] + + * 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 Fri, 05 Aug 2022 08:49:03 -0300 + +linux-azure-5.15 (5.15.0-1016.19~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1016.19~20.04.1 -proposed tracker + (LP: #1982620) + + [ Ubuntu: 5.15.0-1016.19 ] + + * jammy/linux-azure: 5.15.0-1016.19 -proposed tracker (LP: #1982619) + * Azure: multi-MSI patches break fio tests on NVMe (LP: #1982613) + - Revert "PCI: hv: Fix interrupt mapping for multi-MSI" + - Revert "PCI: hv: Reuse existing IRTE allocation in compose_msi_msg()" + - Revert "PCI: hv: Fix hv_arch_irq_unmask() for multi-MSI" + - Revert "PCI: hv: Remove unused hv_set_msi_entry_from_desc()" + - Revert "PCI: hv: Avoid the retarget interrupt hypercall in irq_unmask() on + ARM64" + - Revert "PCI: hv: Fix multi-MSI to allow more than one MSI vector" + - Revert "genirq/msi, treewide: Use a named struct for PCI/MSI attributes" + - Revert "PCI/MSI: Remove msi_desc_to_pci_sysdata()" + - Revert "PCI/MSI: Make pci_msi_domain_write_msg() static" + - Revert "genirq/msi: Fixup includes" + - Revert "genirq/msi: Remove unused domain callbacks" + - Revert "genirq/msi: Guard sysfs code" + + -- Tim Gardner Fri, 22 Jul 2022 18:31:48 -0600 + +linux-azure-5.15 (5.15.0-1015.18~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1015.18~20.04.1 -proposed tracker + (LP: #1982312) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + [ Ubuntu: 5.15.0-1015.18 ] + + * jammy/linux-azure: 5.15.0-1015.18 -proposed tracker (LP: #1982272) + * Azure: Add support for multi-MSI (LP: #1981577) + - genirq/msi: Guard sysfs code + - genirq/msi: Remove unused domain callbacks + - genirq/msi: Fixup includes + - PCI/MSI: Make pci_msi_domain_write_msg() static + - PCI/MSI: Remove msi_desc_to_pci_sysdata() + - genirq/msi, treewide: Use a named struct for PCI/MSI attributes + - PCI: hv: Fix multi-MSI to allow more than one MSI vector + - PCI: hv: Avoid the retarget interrupt hypercall in irq_unmask() on ARM64 + - PCI: hv: Remove unused hv_set_msi_entry_from_desc() + - PCI: hv: Fix hv_arch_irq_unmask() for multi-MSI + - PCI: hv: Reuse existing IRTE allocation in compose_msi_msg() + - PCI: hv: Fix interrupt mapping for multi-MSI + * AMD ACP 6.x DMIC Supports (LP: #1949245) + - [Config] azure: Disable AMD ACP 6 DMIC Support + * Ubuntu 22.04 and 20.04 DPC Fixes for Failure Cases of DownPort Containment + events (LP: #1965241) + - [Config] azure: Enable config option CONFIG_PCIE_EDR + * CVE-2022-29900 // CVE-2022-29901 + - [Config]: azure: Enable speculation mitigations + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.07.11) + * 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 + * 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 + + -- Tim Gardner Wed, 20 Jul 2022 12:18:51 -0600 + +linux-azure-5.15 (5.15.0-1014.17~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1014.17~20.04.1 -proposed tracker + (LP: #1979424) + + [ Ubuntu: 5.15.0-1014.17 ] + + * jammy/linux-azure: 5.15.0-1014.17 -proposed tracker (LP: #1979425) + * 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 + * SGX fixes for 5.15 Azure tuned kernel (LP: #1979541) + - 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 + * No sound support on Linux AWS/Azure kernels (but supported on GCP) + (LP: #1970586) + - [Config] azure: CONFIG_SOUND=m + * 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 + + -- Tim Gardner Thu, 23 Jun 2022 13:44:08 -0600 + +linux-azure-5.15 (5.15.0-1013.16~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1013.16~20.04.1 -proposed tracker + (LP: #1978587) + + [ Ubuntu: 5.15.0-1013.16 ] + + * jammy/linux-azure: 5.15.0-1013.16 -proposed tracker (LP: #1978588) + * build backport-iwlwifi-dkms as linux-modules-iwlwifi-ABI (LP: #1969434) + - [Packaging] azure: drop do_ arch specific configs + * Support Intel IPU6 MIPI camera on Alder Lake platforms (LP: #1955383) // + IPU6 camera has no function on Andrews MLK (LP: #1964983) // disable Intel + DMA remapping by default (LP: #1971699) + - [Config] azure: Annotation and config updates after rebase + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.05.30) + * 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 + + [ Ubuntu: 5.15.0-1012.15 ] + + * 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 + + [ Ubuntu: 5.15.0-1010.12 ] + + * 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 + + -- Tim Gardner Thu, 16 Jun 2022 06:28:21 -0600 + +linux-azure-5.15 (5.15.0-1008.9~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1008.9~20.04.1 -proposed tracker + (LP: #1974292) + + [ Ubuntu: 5.15.0-1008.9 ] + + * jammy/linux-azure: 5.15.0-1008.9 -proposed tracker (LP: #1974294) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.04.18) + * [Azure] WARNING: CPU: 0 PID: 499 at include/linux/dma-mapping.h:555 + netvsc_probe+0x3c9/0x3e0 (LP: #1975717) + - Drivers: hv: vmbus: Rework use of DMA_BIT_MASK(64) + - Drivers: hv: vmbus: Fix initialization of device object in + vmbus_device_register() + * config CONFIG_HISI_PMU for kunpeng920 (LP: #1956086) + - [Config] azure: CONFIG_HISI_PMU=m + * linux: CONFIG_SERIAL_8250_MID=y (LP: #1967338) + - [Config] azure: CONFIG_SERIAL_8250_MID=y + * Support AMD P-State cpufreq control mechanism (LP: #1956509) // Enable + speakup kernel modules to allow the speakup screen reader to function + (LP: #1967702) + - [Config] azure: Update configs after rebase + * Azure: swiotlb patch needed for CVM (LP: #1971701) // [Azure][CVM] Fix + swiotlb_max_mapping_size() for potential bounce buffer allocation failure in + storvsc (LP: #1973169) + - SAUCE: swiotlb: Max mapping size takes min align mask into account + * Azure: swiotlb patch needed for CVM (LP: #1971701) + - SAUCE: treewide: Replace the use of mem_encrypt_active() with + cc_platform_has() + - SAUCE: swiotlb: use bitmap to track free slots + - SAUCE: swiotlb: allocate memory in a cache-friendly way + - SAUCE: swiotlb: Split up single swiotlb lock + * jammy/linux-azure: Update cifs to 5.15 backport (LP: #1970977) + - improve error message when mount options conflict with posix + - cifs: call cifs_reconnect when a connection is marked + - cifs: call helper functions for marking channels for reconnect + - cifs: mark sessions for reconnection in helper function + - treewide: Replace zero-length arrays with flexible-array members + - smb3: fix incorrect session setup check for multiuser mounts + - cifs: truncate the inode and mapping when we simulate fcollapse + - cifs: use a different reconnect helper for non-cifsd threads + - cifs: do not skip link targets when an I/O fails + - cifs: convert the path to utf16 in smb2_query_info_compound + - cifs: change smb2_query_info_compound to use a cached fid, if available + - cifs: fix bad fids sent over wire + - cifs: fix incorrect use of list iterator after the loop + - move more common protocol header definitions to smbfs_common + - smb3: move defines for ioctl protocol header and SMB2 sizes to smbfs_common + - smb3: move defines for query info and query fsinfo to smbfs_common + - smb3: cleanup and clarify status of tree connections + - smb3: fix ksmbd bigendian bug in oplock break, and move its struct to + smbfs_common + - fs: Remove ->readpages address space operation + - cifs: fix potential race with cifsd thread + - cifs: remove check of list iterator against head past the loop body + - cifs: force new session setup and tcon for dfs + - cifs: update internal module number + - cifs: Check the IOCB_DIRECT flag, not O_DIRECT + - cifs: Split the smb3_add_credits tracepoint + - cifs: Use kzalloc instead of kmalloc/memset + - cifs: fix NULL ptr dereference in refresh_mounts() + - cifs: use correct lock type in cifs_reconnect() + - cifs: destage any unwritten data to the server before calling + copychunk_write + * [Azure] PCI: hv: Do not set PCI_COMMAND_MEMORY to reduce VM boot time + (LP: #1972662) + - PCI: hv: Do not set PCI_COMMAND_MEMORY to reduce VM boot time + * Jammy/linux-azure: CONFIG_BLK_DEV_FD=n (LP: #1972017) + - [Config] azure: CONFIG_BLK_DEV_FD=n + * [Azure] hv_netvsc: Add support for XDP_REDIRECT (LP: #1972832) + - hv_netvsc: Add comment of netvsc_xdp_xmit() + - hv_netvsc: Add support for XDP_REDIRECT + * linux-azure: Patch Set for ARM64 Images 20.04 and 18.04 (LP: #1970468) + - Drivers: hv: balloon: Support status report for larger page sizes + * CVE-2022-21499 + - SAUCE: debug: Lock down kgdb + * jammy/linux: 5.15.0-34.35 -proposed tracker (LP: #1974322) + * AMD APU s2idle is broken after the ASIC reset fix (LP: #1972134) + - drm/amdgpu: unify BO evicting method in amdgpu_ttm + - drm/amdgpu: explicitly check for s0ix when evicting resources + * amd_gpio AMDI0030:00: Failed to translate GPIO pin 0x0000 to IRQ, err -517 + (LP: #1971597) + - gpio: Request interrupts after IRQ is initialized + * config CONFIG_HISI_PMU for kunpeng920 (LP: #1956086) + - [Config] CONFIG_HISI_PMU=m + * Mute/mic LEDs no function on EliteBook G9 platfroms (LP: #1970552) + - ALSA: hda/realtek: Enable mute/micmute LEDs support for HP Laptops + * network-manager/1.36.4-2ubuntu1 ADT test failure with linux/5.15.0-28.29 + (LP: #1971418) + - Revert "rfkill: make new event layout opt-in" + * PCIE LnkCtl ASPM not enabled under VMD mode for Alder Lake platforms + (LP: #1942160) + - SAUCE: vmd: fixup bridge ASPM by driver name instead + * Mute/mic LEDs no function on HP EliteBook 845/865 G9 (LP: #1970178) + - ALSA: hda/realtek: Enable mute/micmute LEDs and limit mic boost on EliteBook + 845/865 G9 + * Enable headset mic on Lenovo P360 (LP: #1967069) + - ALSA: hda/realtek: Enable headset mic on Lenovo P360 + * WCN6856 BT keep in OFF state after coldboot system (LP: #1967067) + - Bluetooth: btusb: Improve stability for QCA devices + * Screen sometimes can't update [Failed to post KMS update: CRTC property + (GAMMA_LUT) not found] (LP: #1967274) + - drm/i915/xelpd: Enable Pipe color support for D13 platform + - drm/i915: Use unlocked register accesses for LUT loads + - drm/i915/xelpd: Enable Pipe Degamma + - drm/i915/xelpd: Add Pipe Color Lut caps to platform config + * Jammy update: v5.15.35 upstream stable release (LP: #1969857) + - drm/amd/display: Add pstate verification and recovery for DCN31 + - drm/amd/display: Fix p-state allow debug index on dcn31 + - hamradio: defer 6pack kfree after unregister_netdev + - hamradio: remove needs_free_netdev to avoid UAF + - cpuidle: PSCI: Move the `has_lpi` check to the beginning of the function + - ACPI: processor idle: Check for architectural support for LPI + - ACPI: processor: idle: fix lockup regression on 32-bit ThinkPad T40 + - btrfs: remove unused parameter nr_pages in add_ra_bio_pages() + - btrfs: remove no longer used counter when reading data page + - btrfs: remove unused variable in btrfs_{start,write}_dirty_block_groups() + - soc: qcom: aoss: Expose send for generic usecase + - dt-bindings: net: qcom,ipa: add optional qcom,qmp property + - net: ipa: request IPA register values be retained + - btrfs: release correct delalloc amount in direct IO write path + - ALSA: core: Add snd_card_free_on_error() helper + - ALSA: sis7019: Fix the missing error handling + - ALSA: ali5451: Fix the missing snd_card_free() call at probe error + - ALSA: als300: Fix the missing snd_card_free() call at probe error + - ALSA: als4000: Fix the missing snd_card_free() call at probe error + - ALSA: atiixp: Fix the missing snd_card_free() call at probe error + - ALSA: au88x0: Fix the missing snd_card_free() call at probe error + - ALSA: aw2: Fix the missing snd_card_free() call at probe error + - ALSA: azt3328: Fix the missing snd_card_free() call at probe error + - ALSA: bt87x: Fix the missing snd_card_free() call at probe error + - ALSA: ca0106: Fix the missing snd_card_free() call at probe error + - ALSA: cmipci: Fix the missing snd_card_free() call at probe error + - ALSA: cs4281: Fix the missing snd_card_free() call at probe error + - ALSA: cs5535audio: Fix the missing snd_card_free() call at probe error + - ALSA: echoaudio: Fix the missing snd_card_free() call at probe error + - ALSA: emu10k1x: Fix the missing snd_card_free() call at probe error + - ALSA: ens137x: Fix the missing snd_card_free() call at probe error + - ALSA: es1938: Fix the missing snd_card_free() call at probe error + - ALSA: es1968: Fix the missing snd_card_free() call at probe error + - ALSA: fm801: Fix the missing snd_card_free() call at probe error + - ALSA: galaxy: Fix the missing snd_card_free() call at probe error + - ALSA: hdsp: Fix the missing snd_card_free() call at probe error + - ALSA: hdspm: Fix the missing snd_card_free() call at probe error + - ALSA: ice1724: Fix the missing snd_card_free() call at probe error + - ALSA: intel8x0: Fix the missing snd_card_free() call at probe error + - ALSA: intel_hdmi: Fix the missing snd_card_free() call at probe error + - ALSA: korg1212: Fix the missing snd_card_free() call at probe error + - ALSA: lola: Fix the missing snd_card_free() call at probe error + - ALSA: lx6464es: Fix the missing snd_card_free() call at probe error + - ALSA: maestro3: Fix the missing snd_card_free() call at probe error + - ALSA: oxygen: Fix the missing snd_card_free() call at probe error + - ALSA: riptide: Fix the missing snd_card_free() call at probe error + - ALSA: rme32: Fix the missing snd_card_free() call at probe error + - ALSA: rme9652: Fix the missing snd_card_free() call at probe error + - ALSA: rme96: Fix the missing snd_card_free() call at probe error + - ALSA: sc6000: Fix the missing snd_card_free() call at probe error + - ALSA: sonicvibes: Fix the missing snd_card_free() call at probe error + - ALSA: via82xx: Fix the missing snd_card_free() call at probe error + - ALSA: usb-audio: Cap upper limits of buffer/period bytes for implicit fb + - ALSA: nm256: Don't call card private_free at probe error path + - drm/msm: Add missing put_task_struct() in debugfs path + - firmware: arm_scmi: Remove clear channel call on the TX channel + - memory: atmel-ebi: Fix missing of_node_put in atmel_ebi_probe + - Revert "ath11k: mesh: add support for 256 bitmap in blockack frames in 11ax" + - firmware: arm_scmi: Fix sorting of retrieved clock rates + - media: rockchip/rga: do proper error checking in probe + - SUNRPC: Fix the svc_deferred_event trace class + - net/sched: flower: fix parsing of ethertype following VLAN header + - veth: Ensure eth header is in skb's linear part + - gpiolib: acpi: use correct format characters + - cifs: release cached dentries only if mount is complete + - net: mdio: don't defer probe forever if PHY IRQ provider is missing + - mlxsw: i2c: Fix initialization error flow + - net/sched: fix initialization order when updating chain 0 head + - net: dsa: felix: suppress -EPROBE_DEFER errors + - net: ethernet: stmmac: fix altr_tse_pcs function when using a fixed-link + - net/sched: taprio: Check if socket flags are valid + - cfg80211: hold bss_lock while updating nontrans_list + - netfilter: nft_socket: make cgroup match work in input too + - drm/msm: Fix range size vs end confusion + - drm/msm/dsi: Use connector directly in msm_dsi_manager_connector_init() + - drm/msm/dp: add fail safe mode outside of event_mutex context + - net/smc: Fix NULL pointer dereference in smc_pnet_find_ib() + - scsi: pm80xx: Mask and unmask upper interrupt vectors 32-63 + - scsi: pm80xx: Enable upper inbound, outbound queues + - scsi: iscsi: Move iscsi_ep_disconnect() + - scsi: iscsi: Fix offload conn cleanup when iscsid restarts + - scsi: iscsi: Fix endpoint reuse regression + - scsi: iscsi: Fix conn cleanup and stop race during iscsid restart + - scsi: iscsi: Fix unbound endpoint error handling + - sctp: Initialize daddr on peeled off socket + - netfilter: nf_tables: nft_parse_register can return a negative value + - ALSA: ad1889: Fix the missing snd_card_free() call at probe error + - ALSA: mtpav: Don't call card private_free at probe error path + - io_uring: move io_uring_rsrc_update2 validation + - io_uring: verify that resv2 is 0 in io_uring_rsrc_update2 + - io_uring: verify pad field is 0 in io_get_ext_arg + - testing/selftests/mqueue: Fix mq_perf_tests to free the allocated cpu set + - ALSA: usb-audio: Increase max buffer size + - ALSA: usb-audio: Limit max buffer and period sizes per time + - perf tools: Fix misleading add event PMU debug message + - macvlan: Fix leaking skb in source mode with nodst option + - net: ftgmac100: access hardware register after clock ready + - nfc: nci: add flush_workqueue to prevent uaf + - cifs: potential buffer overflow in handling symlinks + - dm mpath: only use ktime_get_ns() in historical selector + - vfio/pci: Fix vf_token mechanism when device-specific VF drivers are used + - net: bcmgenet: Revert "Use stronger register read/writes to assure ordering" + - block: fix offset/size check in bio_trim() + - drm/amd: Add USBC connector ID + - btrfs: fix fallocate to use file_modified to update permissions consistently + - btrfs: do not warn for free space inode in cow_file_range + - drm/amdgpu: conduct a proper cleanup of PDB bo + - drm/amdgpu/gmc: use PCI BARs for APUs in passthrough + - drm/amd/display: fix audio format not updated after edid updated + - drm/amd/display: FEC check in timing validation + - drm/amd/display: Update VTEM Infopacket definition + - drm/amdkfd: Fix Incorrect VMIDs passed to HWS + - drm/amdgpu/vcn: improve vcn dpg stop procedure + - drm/amdkfd: Check for potential null return of kmalloc_array() + - Drivers: hv: vmbus: Deactivate sysctl_record_panic_msg by default in + isolated guests + - PCI: hv: Propagate coherence from VMbus device to PCI device + - Drivers: hv: vmbus: Prevent load re-ordering when reading ring buffer + - scsi: target: tcmu: Fix possible page UAF + - scsi: lpfc: Fix queue failures when recovering from PCI parity error + - scsi: ibmvscsis: Increase INITIAL_SRP_LIMIT to 1024 + - net: micrel: fix KS8851_MLL Kconfig + - ata: libata-core: Disable READ LOG DMA EXT for Samsung 840 EVOs + - gpu: ipu-v3: Fix dev_dbg frequency output + - regulator: wm8994: Add an off-on delay for WM8994 variant + - arm64: alternatives: mark patch_alternative() as `noinstr` + - tlb: hugetlb: Add more sizes to tlb_remove_huge_tlb_entry + - net: axienet: setup mdio unconditionally + - Drivers: hv: balloon: Disable balloon and hot-add accordingly + - net: usb: aqc111: Fix out-of-bounds accesses in RX fixup + - myri10ge: fix an incorrect free for skb in myri10ge_sw_tso + - spi: cadence-quadspi: fix protocol setup for non-1-1-X operations + - drm/amd/display: Enable power gating before init_pipes + - drm/amd/display: Revert FEC check in validation + - drm/amd/display: Fix allocate_mst_payload assert on resume + - drbd: set QUEUE_FLAG_STABLE_WRITES + - scsi: mpt3sas: Fail reset operation if config request timed out + - scsi: mvsas: Add PCI ID of RocketRaid 2640 + - scsi: megaraid_sas: Target with invalid LUN ID is deleted during scan + - drivers: net: slip: fix NPD bug in sl_tx_timeout() + - io_uring: zero tag on rsrc removal + - io_uring: use nospec annotation for more indexes + - perf/imx_ddr: Fix undefined behavior due to shift overflowing the constant + - mm/secretmem: fix panic when growing a memfd_secret + - mm, page_alloc: fix build_zonerefs_node() + - mm: fix unexpected zeroed page mapping with zram swap + - mm: kmemleak: take a full lowmem check in kmemleak_*_phys() + - KVM: x86/mmu: Resolve nx_huge_pages when kvm.ko is loaded + - SUNRPC: Fix NFSD's request deferral on RDMA transports + - memory: renesas-rpc-if: fix platform-device leak in error path + - gcc-plugins: latent_entropy: use /dev/urandom + - cifs: verify that tcon is valid before dereference in cifs_kill_sb + - ath9k: Properly clear TX status area before reporting to mac80211 + - ath9k: Fix usage of driver-private space in tx_info + - btrfs: fix root ref counts in error handling in btrfs_get_root_ref + - btrfs: mark resumed async balance as writing + - ALSA: hda/realtek: Add quirk for Clevo PD50PNT + - ALSA: hda/realtek: add quirk for Lenovo Thinkpad X12 speakers + - ALSA: pcm: Test for "silence" field in struct "pcm_format_data" + - nl80211: correctly check NL80211_ATTR_REG_ALPHA2 size + - ipv6: fix panic when forwarding a pkt with no in6 dev + - drm/amd/display: don't ignore alpha property on pre-multiplied mode + - drm/amdgpu: Enable gfxoff quirk on MacBook Pro + - x86/tsx: Use MSR_TSX_CTRL to clear CPUID bits + - x86/tsx: Disable TSX development mode at boot + - genirq/affinity: Consider that CPUs on nodes can be unbalanced + - tick/nohz: Use WARN_ON_ONCE() to prevent console saturation + - ARM: davinci: da850-evm: Avoid NULL pointer dereference + - dm integrity: fix memory corruption when tag_size is less than digest size + - i2c: dev: check return value when calling dev_set_name() + - smp: Fix offline cpu check in flush_smp_call_function_queue() + - i2c: pasemi: Wait for write xfers to finish + - dt-bindings: net: snps: remove duplicate name + - timers: Fix warning condition in __run_timers() + - dma-direct: avoid redundant memory sync for swiotlb + - drm/i915: Sunset igpu legacy mmap support based on GRAPHICS_VER_FULL + - cpu/hotplug: Remove the 'cpu' member of cpuhp_cpu_state + - soc: qcom: aoss: Fix missing put_device call in qmp_get + - net: ipa: fix a build dependency + - cpufreq: intel_pstate: ITMT support for overclocked system + - ax25: add refcount in ax25_dev to avoid UAF bugs + - ax25: fix reference count leaks of ax25_dev + - ax25: fix UAF bugs of net_device caused by rebinding operation + - ax25: Fix refcount leaks caused by ax25_cb_del() + - ax25: fix UAF bug in ax25_send_control() + - ax25: fix NPD bug in ax25_disconnect + - ax25: Fix NULL pointer dereferences in ax25 timers + - ax25: Fix UAF bugs in ax25 timers + - Linux 5.15.35 + * CONFIG_SND_COMPRESS_OFFLOAD missing in jammy/ppc64el kernel config + (LP: #1969807) + - [Config] updateconfigs for SND_COMPRESS_OFFLOAD (ppc64el) + * Micmute LED support for Zbook Fury 16 G9 (LP: #1968892) + - ALSA: hda/realtek: Add mute and micmut LED support for Zbook Fury 17 G9 + * Fix broken HDMI audio on AMD PRO VII after S3 (LP: #1968475) + - drm/amdgpu: don't set s3 and s0ix at the same time + - drm/amdgpu: Ensure HDA function is suspended before ASIC reset + * [Ubuntu 22.04] mpi3mr: Request to include latest bug fixes (LP: #1967116) + - scsi: mpi3mr: Clean up mpi3mr_print_ioc_info() + - scsi: mpi3mr: Use scnprintf() instead of snprintf() + - scsi: mpi3mr: Add debug APIs based on logging_level bits + - scsi: mpi3mr: Replace spin_lock() with spin_lock_irqsave() + - scsi: mpi3mr: Don't reset IOC if cmnds flush with reset status + - scsi: mpi3mr: Update MPI3 headers - part1 + - scsi: mpi3mr: Update MPI3 headers - part2 + - scsi: mpi3mr: Add support for PCIe Managed Switch SES device + - scsi: mpi3mr: Do access status validation before adding devices + - scsi: mpi3mr: Increase internal cmnds timeout to 60s + - scsi: mpi3mr: Handle unaligned PLL in unmap cmnds + - scsi: mpi3mr: Display IOC firmware package version + - scsi: mpi3mr: Fault IOC when internal command gets timeout + - scsi: mpi3mr: Code refactor of IOC init - part1 + - scsi: mpi3mr: Code refactor of IOC init - part2 + - scsi: mpi3mr: Handle offline FW activation in graceful manner + - scsi: mpi3mr: Add IOC reinit function + - scsi: mpi3mr: Detect async reset that occurred in firmware + - scsi: mpi3mr: Gracefully handle online FW update operation + - scsi: mpi3mr: Add Event acknowledgment logic + - scsi: mpi3mr: Support Prepare for Reset event + - scsi: mpi3mr: Print cable mngnt and temp threshold events + - scsi: mpi3mr: Add io_uring interface support in I/O-polled mode + - scsi: mpi3mr: Use TM response codes from MPI3 headers + - scsi: mpi3mr: Enhanced Task Management Support Reply handling + - scsi: mpi3mr: Bump driver version to 8.0.0.61.0 + - scsi: mpi3mr: Fix some spelling mistakes + - scsi: mpi3mr: Fix formatting problems in some kernel-doc comments + - scsi: mpi3mr: Fix deadlock while canceling the fw event + - scsi: mpi3mr: Fix printing of pending I/O count + - scsi: mpi3mr: Update MPI3 headers + - scsi: mpi3mr: Fix hibernation issue + - scsi: mpi3mr: Fix cmnd getting marked as in use forever + - scsi: mpi3mr: Update the copyright year + - scsi: mpi3mr: Bump driver version to 8.0.0.68.0 + - scsi: mpi3mr: Fix flushing !WQ_MEM_RECLAIM events warning + * Support AMD P-State cpufreq control mechanism (LP: #1956509) + - x86/cpufeatures: Add AMD Collaborative Processor Performance Control feature + flag + - x86/msr: Add AMD CPPC MSR definitions + - ACPI: CPPC: Implement support for SystemIO registers + - ACPI: CPPC: Add CPPC enable register function + - cpufreq: amd-pstate: Introduce a new AMD P-State driver to support future + processors + - cpufreq: amd-pstate: Add fast switch function for AMD P-State + - cpufreq: amd-pstate: Introduce the support for the processors with shared + memory solution + - cpufreq: amd-pstate: Add trace for AMD P-State module + - cpufreq: amd-pstate: Add boost mode support for AMD P-State + - cpufreq: amd-pstate: Add AMD P-State frequencies attributes + - cpufreq: amd-pstate: Add AMD P-State performance attributes + - Documentation: amd-pstate: Add AMD P-State driver introduction + - MAINTAINERS: Add AMD P-State driver maintainer entry + - cpufreq: amd-pstate: Fix struct amd_cpudata kernel-doc comment + - cpufreq: amd-pstate: Fix Kconfig dependencies for AMD P-State + - [Config] enable X86_AMD_PSTATE as built-in on amd64 + * Bolt doesn't work with native USB4 hosts (LP: #1962349) + - thunderbolt: Retry DROM reads for more failure scenarios + - thunderbolt: Do not resume routers if UID is not set + - thunderbolt: Do not make DROM read success compulsory + - PCI/ACPI: Allow D3 only if Root Port can signal and wake from D3 + * linux-image-5.0.0-35-generic breaks checkpointing of container + (LP: #1857257) // re-apply missing overlayfs SAUCE patch (LP: #1967924) + - SAUCE: overlayfs: fix incorrect mnt_id of files opened from map_files + * [Jammy, mlx5, ConnectX-7] add CX7 support for software steering + (LP: #1966194) + - net/mlx5: DR, Fix vport number data type to u16 + - net/mlx5: DR, Replace local WIRE_PORT macro with the existing + MLX5_VPORT_UPLINK + - net/mlx5: DR, Add missing query for vport 0 + - net/mlx5: DR, Align error messages for failure to obtain vport caps + - net/mlx5: DR, Support csum recalculation flow table on SFs + - net/mlx5: DR, Add support for SF vports + - net/mlx5: DR, Increase supported num of actions to 32 + - net/mlx5: DR, Fix typo 'offeset' to 'offset' + - net/mlx5: DR, init_next_match only if needed + - net/mlx5: DR, Add missing string for action type SAMPLER + - net/mlx5: DR, Add check for unsupported fields in match param + - net/mlx5: Introduce new uplink destination type + - net/mlx5: DR, Handle eswitch manager and uplink vports separately + - net/mlx5: DR, Fix querying eswitch manager vport for ECPF + - net/mlx5: DR, Fix check for unsupported fields in match param + - net/mlx5: DR, Fix error flow in creating matcher + - net/mlx5: DR, Fix lower case macro prefix "mlx5_" to "MLX5_" + - net/mlx5: DR, Remove unused struct member in matcher + - net/mlx5: DR, Rename list field in matcher struct to list_node + - net/mlx5: DR, Add check for flex parser ID value + - net/mlx5: DR, Add missing reserved fields to dr_match_param + - net/mlx5: DR, Add support for dumping steering info + - net/mlx5: DR, Add support for UPLINK destination type + - net/mlx5: DR, Warn on failure to destroy objects due to refcount + - net/mlx5: Add misc5 flow table match parameters + - net/mlx5: DR, Add misc5 to match_param structs + - net/mlx5: DR, Support matching on tunnel headers 0 and 1 + - net/mlx5: DR, Add support for matching on geneve_tlv_option_0_exist field + - net/mlx5: DR, Improve steering for empty or RX/TX-only matchers + - net/mlx5: DR, Ignore modify TTL if device doesn't support it + - net/mlx5: Set SMFS as a default steering mode if device supports it + - net/mlx5: DR, Fix slab-out-of-bounds in mlx5_cmd_dr_create_fte + - net/mlx5: DR, Add support for matching on Internet Header Length (IHL) + - net/mlx5: DR, Remove unneeded comments + - net/mlx5: DR, Fix handling of different actions on the same STE in STEv1 + - net/mlx5: DR, Rename action modify fields to reflect naming in HW spec + - net/mlx5: DR, Refactor ste_ctx handling for STE v0/1 + - net/mlx5: Introduce software defined steering capabilities + - net/mlx5: DR, Add support for ConnectX-7 steering + * alsa: enable the cirrus-logic side-codec to make the speaker output sound + (LP: #1965496) + - ASoC: cs35l41: CS35L41 Boosted Smart Amplifier + - ASoC: cs35l41: Fix use of an uninitialised variable + - ASoC: cs35l41: Use regmap_read_poll_timeout to wait for OTP boot + - ASoC: cs35l41: Combine adjacent register writes + - ASoC: cs35l41: Don't overwrite returned error code + - ASoC: cs35l41: Fixup the error messages + - ASoC: cs35l41: Fix a bunch of trivial code formating/style issues + - misc: cs35l41: Remove unused pdn variable + - ASoC: cs35l41: Make cs35l41_remove() return void + - ASoC: cs35l41: Change monitor widgets to siggens + - ASoC: cs35l41: DSP Support + - ASoC: cs35l41: Set the max SPI speed for the whole device + - ASoC: cs35l41: Fix link problem + - ASoC: cs35l41: Fix undefined reference to core functions + - ASoC: cs35l41: Convert tables to shared source code + - ASoC: cs35l41: Move cs35l41_otp_unpack to shared code + - ASoC: cs35l41: Move power initializations to reg_sequence + - ASoC: cs35l41: Create shared function for errata patches + - ASoC: cs35l41: Create shared function for setting channels + - ASoC: cs35l41: Create shared function for boost configuration + - ASoC: cs35l41: Add cs35l51/53 IDs + - ASoC: cs35l41: Remove incorrect comment + - ASoC: cs35l41: Correct DSP power down + - ASoC: cs35l41: Correct handling of some registers in the cache + - ALSA: hda: cs35l41: Add support for CS35L41 in HDA systems + - ASoC: cs35l41: Update handling of test key registers + - ASoC: cs35l41: Add support for hibernate memory retention mode + - ALSA: hda: cs35l41: fix double free on error in probe() + - ALSA: hda: cs35l41: Avoid overwriting register patch + - ALSA: hda: cs35l41: Add calls to newly added test key function + - ALSA: hda: cs35l41: Move cs35l41* calls to its own symbol namespace + - ALSA: hda: cs35l41: Add missing default cases + - ALSA: hda: cs35l41: Make use of the helper function dev_err_probe() + - ALSA: hda: cs35l41: Tidyup code + - ALSA: hda: cs35l41: Make cs35l41_hda_remove() return void + - ALSA: hda/realtek: Add support for Legion 7 16ACHg6 laptop + - ALSA: hda/realtek: Add CS35L41 support for Thinkpad laptops + - ALSA: hda/realtek: fix speakers and micmute on HP 855 G8 + - Revert "platform/x86: i2c-multi-instantiate: Don't create platform device + for INT3515 ACPI nodes" + - spi: Create helper API to lookup ACPI info for spi device + - spi: Support selection of the index of the ACPI Spi Resource before alloc + - spi: Add API to count spi acpi resources + - platform/x86: i2c-multi-instantiate: Rename it for a generic serial driver + name + - platform/x86: serial-multi-instantiate: Reorganize I2C functions + - platform/x86: serial-multi-instantiate: Add SPI support + - ALSA: hda/realtek: Add support for HP Laptops + - ACPI / scan: Create platform device for CS35L41 + - [Config] Add cirruslogic side codec support + * Use kernel-testing repo from launchpad for ADT tests (LP: #1968016) + - [Debian] Use kernel-testing repo from launchpad + * Fix ADL, WD22TB4,Dual monitors display resolution can't reach 4K 60hz + (LP: #1967986) + - drm/i915/display: Remove check for low voltage sku for max dp source rate + - drm/i915/intel_combo_phy: Print I/O voltage info + * Support different Cirrus audio codec configurations on Dell laptops + (LP: #1967988) + - ALSA: hda/cs8409: Fix Warlock to use mono mic configuration + - ALSA: hda/cs8409: Re-order quirk table into ascending order + - ALSA: hda/cs8409: Fix Full Scale Volume setting for all variants + - ALSA: hda/cs8409: Support new Warlock MLK Variants + - ALSA: hda/cs8409: Disable HSBIAS_SENSE_EN for Cyborg + - ALSA: hda/cs8409: Add new Dolphin HW variants + * Enable speakup kernel modules to allow the speakup screen reader to function + (LP: #1967702) + - [Config] CONFIG_SPEAKUP=m + * linux: CONFIG_SERIAL_8250_MID=y (LP: #1967338) + - [Config] amd64 CONFIG_SERIAL_8250_MID=y + * alsa/sdw: Fix the audio issue on a Dell machine without internal mic + (LP: #1966841) + - ASoC: Intel: soc-acpi: add entries in ADL match table + * Jammy update: v5.15.34 upstream stable release (LP: #1969107) + - Revert "UBUNTU: SAUCE: Revert "scsi: core: Reallocate device's budget map on + queue depth change"" + - lib/logic_iomem: correct fallback config references + - um: fix and optimize xor select template for CONFIG64 and timetravel mode + - rtc: wm8350: Handle error for wm8350_register_irq + - nbd: add error handling support for add_disk() + - nbd: Fix incorrect error handle when first_minor is illegal in nbd_dev_add + - nbd: Fix hungtask when nbd_config_put + - nbd: fix possible overflow on 'first_minor' in nbd_dev_add() + - kfence: count unexpectedly skipped allocations + - kfence: move saving stack trace of allocations into __kfence_alloc() + - kfence: limit currently covered allocations when pool nearly full + - KVM: x86/pmu: Use different raw event masks for AMD and Intel + - KVM: SVM: Fix kvm_cache_regs.h inclusions for is_guest_mode() + - KVM: x86/svm: Clear reserved bits written to PerfEvtSeln MSRs + - KVM: x86/pmu: Fix and isolate TSX-specific performance event logic + - KVM: x86/emulator: Emulate RDPID only if it is enabled in guest + - drm: Add orientation quirk for GPD Win Max + - ath5k: fix OOB in ath5k_eeprom_read_pcal_info_5111 + - drm/amd/display: Add signal type check when verify stream backends same + - drm/amd/amdgpu/amdgpu_cs: fix refcount leak of a dma_fence obj + - drm/amd/display: Fix memory leak + - drm/amd/display: Use PSR version selected during set_psr_caps + - usb: gadget: tegra-xudc: Do not program SPARAM + - usb: gadget: tegra-xudc: Fix control endpoint's definitions + - usb: cdnsp: fix cdnsp_decode_trb function to properly handle ret value + - ptp: replace snprintf with sysfs_emit + - drm/amdkfd: Don't take process mutex for svm ioctls + - powerpc: dts: t104xrdb: fix phy type for FMAN 4/5 + - ath11k: fix kernel panic during unload/load ath11k modules + - ath11k: pci: fix crash on suspend if board file is not found + - ath11k: mhi: use mhi_sync_power_up() + - net/smc: Send directly when TCP_CORK is cleared + - drm/bridge: Add missing pm_runtime_put_sync + - bpf: Make dst_port field in struct bpf_sock 16-bit wide + - scsi: mvsas: Replace snprintf() with sysfs_emit() + - scsi: bfa: Replace snprintf() with sysfs_emit() + - drm/v3d: fix missing unlock + - power: supply: axp20x_battery: properly report current when discharging + - mt76: mt7921: fix crash when startup fails. + - mt76: dma: initialize skip_unmap in mt76_dma_rx_fill + - cfg80211: don't add non transmitted BSS to 6GHz scanned channels + - libbpf: Fix build issue with llvm-readelf + - ipv6: make mc_forwarding atomic + - net: initialize init_net earlier + - powerpc: Set crashkernel offset to mid of RMA region + - drm/amdgpu: Fix recursive locking warning + - scsi: smartpqi: Fix kdump issue when controller is locked up + - PCI: aardvark: Fix support for MSI interrupts + - iommu/arm-smmu-v3: fix event handling soft lockup + - usb: ehci: add pci device support for Aspeed platforms + - PCI: endpoint: Fix alignment fault error in copy tests + - tcp: Don't acquire inet_listen_hashbucket::lock with disabled BH. + - PCI: pciehp: Add Qualcomm quirk for Command Completed erratum + - scsi: mpi3mr: Fix reporting of actual data transfer size + - scsi: mpi3mr: Fix memory leaks + - powerpc/set_memory: Avoid spinlock recursion in change_page_attr() + - power: supply: axp288-charger: Set Vhold to 4.4V + - net/mlx5e: Disable TX queues before registering the netdev + - usb: dwc3: pci: Set the swnode from inside dwc3_pci_quirks() + - iwlwifi: mvm: Correctly set fragmented EBS + - iwlwifi: mvm: move only to an enabled channel + - drm/msm/dsi: Remove spurious IRQF_ONESHOT flag + - ipv4: Invalidate neighbour for broadcast address upon address addition + - dm ioctl: prevent potential spectre v1 gadget + - dm: requeue IO if mapping table not yet available + - drm/amdkfd: make CRAT table missing message informational only + - vfio/pci: Stub vfio_pci_vga_rw when !CONFIG_VFIO_PCI_VGA + - scsi: pm8001: Fix pm80xx_pci_mem_copy() interface + - scsi: pm8001: Fix pm8001_mpi_task_abort_resp() + - scsi: pm8001: Fix task leak in pm8001_send_abort_all() + - scsi: pm8001: Fix tag leaks on error + - scsi: pm8001: Fix memory leak in pm8001_chip_fw_flash_update_req() + - mt76: mt7915: fix injected MPDU transmission to not use HW A-MSDU + - powerpc/64s/hash: Make hash faults work in NMI context + - mt76: mt7615: Fix assigning negative values to unsigned variable + - scsi: aha152x: Fix aha152x_setup() __setup handler return value + - scsi: hisi_sas: Free irq vectors in order for v3 HW + - scsi: hisi_sas: Limit users changing debugfs BIST count value + - net/smc: correct settings of RMB window update limit + - mips: ralink: fix a refcount leak in ill_acc_of_setup() + - macvtap: advertise link netns via netlink + - tuntap: add sanity checks about msg_controllen in sendmsg + - Bluetooth: Fix not checking for valid hdev on bt_dev_{info,warn,err,dbg} + - Bluetooth: use memset avoid memory leaks + - bnxt_en: Eliminate unintended link toggle during FW reset + - PCI: endpoint: Fix misused goto label + - MIPS: fix fortify panic when copying asm exception handlers + - powerpc/64e: Tie PPC_BOOK3E_64 to PPC_FSL_BOOK3E + - powerpc/secvar: fix refcount leak in format_show() + - scsi: libfc: Fix use after free in fc_exch_abts_resp() + - can: isotp: set default value for N_As to 50 micro seconds + - can: etas_es58x: es58x_fd_rx_event_msg(): initialize rx_event_msg before + calling es58x_check_msg_len() + - riscv: Fixed misaligned memory access. Fixed pointer comparison. + - net: account alternate interface name memory + - net: limit altnames to 64k total + - net/mlx5e: Remove overzealous validations in netlink EEPROM query + - net: sfp: add 2500base-X quirk for Lantech SFP module + - usb: dwc3: omap: fix "unbalanced disables for smps10_out1" on omap5evm + - mt76: fix monitor mode crash with sdio driver + - xtensa: fix DTC warning unit_address_format + - MIPS: ingenic: correct unit node address + - Bluetooth: Fix use after free in hci_send_acl + - netfilter: conntrack: revisit gc autotuning + - netlabel: fix out-of-bounds memory accesses + - ceph: fix inode reference leakage in ceph_get_snapdir() + - ceph: fix memory leak in ceph_readdir when note_last_dentry returns error + - lib/Kconfig.debug: add ARCH dependency for FUNCTION_ALIGN option + - init/main.c: return 1 from handled __setup() functions + - minix: fix bug when opening a file with O_DIRECT + - clk: si5341: fix reported clk_rate when output divider is 2 + - staging: vchiq_arm: Avoid NULL ptr deref in vchiq_dump_platform_instances + - staging: vchiq_core: handle NULL result of find_service_by_handle + - phy: amlogic: phy-meson-gxl-usb2: fix shared reset controller use + - phy: amlogic: meson8b-usb2: Use dev_err_probe() + - phy: amlogic: meson8b-usb2: fix shared reset control use + - clk: rockchip: drop CLK_SET_RATE_PARENT from dclk_vop* on rk3568 + - cpufreq: CPPC: Fix performance/frequency conversion + - opp: Expose of-node's name in debugfs + - staging: wfx: fix an error handling in wfx_init_common() + - w1: w1_therm: fixes w1_seq for ds28ea00 sensors + - NFSv4.2: fix reference count leaks in _nfs42_proc_copy_notify() + - NFSv4: Protect the state recovery thread against direct reclaim + - habanalabs: fix possible memory leak in MMU DR fini + - xen: delay xen_hvm_init_time_ops() if kdump is boot on vcpu>=32 + - clk: ti: Preserve node in ti_dt_clocks_register() + - clk: Enforce that disjoints limits are invalid + - SUNRPC/call_alloc: async tasks mustn't block waiting for memory + - SUNRPC/xprt: async tasks mustn't block waiting for memory + - SUNRPC: remove scheduling boost for "SWAPPER" tasks. + - NFS: swap IO handling is slightly different for O_DIRECT IO + - NFS: swap-out must always use STABLE writes. + - x86: Annotate call_on_stack() + - x86/Kconfig: Do not allow CONFIG_X86_X32_ABI=y with llvm-objcopy + - serial: samsung_tty: do not unlock port->lock for uart_write_wakeup() + - virtio_console: eliminate anonymous module_init & module_exit + - jfs: prevent NULL deref in diFree + - SUNRPC: Fix socket waits for write buffer space + - NFS: nfsiod should not block forever in mempool_alloc() + - NFS: Avoid writeback threads getting stuck in mempool_alloc() + - selftests: net: Add tls config dependency for tls selftests + - parisc: Fix CPU affinity for Lasi, WAX and Dino chips + - parisc: Fix patch code locking and flushing + - mm: fix race between MADV_FREE reclaim and blkdev direct IO read + - rtc: mc146818-lib: change return values of mc146818_get_time() + - rtc: Check return value from mc146818_get_time() + - rtc: mc146818-lib: fix RTC presence check + - drm/amdgpu: fix off by one in amdgpu_gfx_kiq_acquire() + - Drivers: hv: vmbus: Fix potential crash on module unload + - Revert "NFSv4: Handle the special Linux file open access mode" + - NFSv4: fix open failure with O_ACCMODE flag + - scsi: sr: Fix typo in CDROM(CLOSETRAY|EJECT) handling + - scsi: core: Fix sbitmap depth in scsi_realloc_sdev_budget_map() + - scsi: zorro7xx: Fix a resource leak in zorro7xx_remove_one() + - vdpa/mlx5: Rename control VQ workqueue to vdpa wq + - vdpa/mlx5: Propagate link status from device to vdpa driver + - vdpa: mlx5: prevent cvq work from hogging CPU + - net: sfc: add missing xdp queue reinitialization + - net/tls: fix slab-out-of-bounds bug in decrypt_internal + - vrf: fix packet sniffing for traffic originating from ip tunnels + - skbuff: fix coalescing for page_pool fragment recycling + - ice: Clear default forwarding VSI during VSI release + - mctp: Fix check for dev_hard_header() result + - net: ipv4: fix route with nexthop object delete warning + - net: stmmac: Fix unset max_speed difference between DT and non-DT platforms + - drm/imx: imx-ldb: Check for null pointer after calling kmemdup + - drm/imx: Fix memory leak in imx_pd_connector_get_modes + - drm/imx: dw_hdmi-imx: Fix bailout in error cases of probe + - regulator: rtq2134: Fix missing active_discharge_on setting + - regulator: atc260x: Fix missing active_discharge_on setting + - arch/arm64: Fix topology initialization for core scheduling + - bnxt_en: Synchronize tx when xdp redirects happen on same ring + - bnxt_en: reserve space inside receive page for skb_shared_info + - bnxt_en: Prevent XDP redirect from running when stopping TX queue + - sfc: Do not free an empty page_ring + - RDMA/mlx5: Don't remove cache MRs when a delay is needed + - RDMA/mlx5: Add a missing update of cache->last_add + - IB/cm: Cancel mad on the DREQ event when the state is MRA_REP_RCVD + - IB/rdmavt: add lock to call to rvt_error_qp to prevent a race condition + - sctp: count singleton chunks in assoc user stats + - dpaa2-ptp: Fix refcount leak in dpaa2_ptp_probe + - ice: Set txq_teid to ICE_INVAL_TEID on ring creation + - ice: Do not skip not enabled queues in ice_vc_dis_qs_msg + - ipv6: Fix stats accounting in ip6_pkt_drop + - ice: synchronize_rcu() when terminating rings + - ice: xsk: fix VSI state check in ice_xsk_wakeup() + - net: openvswitch: don't send internal clone attribute to the userspace. + - net: ethernet: mv643xx: Fix over zealous checking of_get_mac_address() + - net: openvswitch: fix leak of nested actions + - rxrpc: fix a race in rxrpc_exit_net() + - net: sfc: fix using uninitialized xdp tx_queue + - net: phy: mscc-miim: reject clause 45 register accesses + - qede: confirm skb is allocated before using + - spi: bcm-qspi: fix MSPI only access with bcm_qspi_exec_mem_op() + - bpf: Support dual-stack sockets in bpf_tcp_check_syncookie + - drbd: Fix five use after free bugs in get_initial_state + - scsi: ufs: ufshpb: Fix a NULL check on list iterator + - io_uring: nospec index for tags on files update + - io_uring: don't touch scm_fp_list after queueing skb + - SUNRPC: Handle ENOMEM in call_transmit_status() + - SUNRPC: Handle low memory situations in call_status() + - SUNRPC: svc_tcp_sendmsg() should handle errors from xdr_alloc_bvec() + - iommu/omap: Fix regression in probe for NULL pointer dereference + - perf: arm-spe: Fix perf report --mem-mode + - perf tools: Fix perf's libperf_print callback + - perf session: Remap buf if there is no space for event + - arm64: Add part number for Arm Cortex-A78AE + - scsi: mpt3sas: Fix use after free in _scsih_expander_node_remove() + - scsi: ufs: ufs-pci: Add support for Intel MTL + - Revert "mmc: sdhci-xenon: fix annoying 1.8V regulator warning" + - mmc: block: Check for errors after write on SPI + - mmc: mmci: stm32: correctly check all elements of sg list + - mmc: renesas_sdhi: don't overwrite TAP settings when HS400 tuning is + complete + - mmc: core: Fixup support for writeback-cache for eMMC and SD + - lz4: fix LZ4_decompress_safe_partial read out of bound + - highmem: fix checks in __kmap_local_sched_{in,out} + - mmmremap.c: avoid pointless invalidate_range_start/end on mremap(old_size=0) + - mm/mempolicy: fix mpol_new leak in shared_policy_replace + - io_uring: don't check req->file in io_fsync_prep() + - io_uring: defer splice/tee file validity check until command issue + - io_uring: implement compat handling for IORING_REGISTER_IOWQ_AFF + - io_uring: fix race between timeout flush and removal + - x86/pm: Save the MSR validity status at context setup + - x86/speculation: Restore speculation related MSRs during S3 resume + - perf/x86/intel: Update the FRONTEND MSR mask on Sapphire Rapids + - btrfs: fix qgroup reserve overflow the qgroup limit + - btrfs: prevent subvol with swapfile from being deleted + - spi: core: add dma_map_dev for __spi_unmap_msg() + - arm64: patch_text: Fixup last cpu should be master + - RDMA/hfi1: Fix use-after-free bug for mm struct + - gpio: Restrict usage of GPIO chip irq members before initialization + - x86/msi: Fix msi message data shadow struct + - x86/mm/tlb: Revert retpoline avoidance approach + - perf/x86/intel: Don't extend the pseudo-encoding to GP counters + - ata: sata_dwc_460ex: Fix crash due to OOB write + - perf: qcom_l2_pmu: fix an incorrect NULL check on list iterator + - perf/core: Inherit event_caps + - irqchip/gic-v3: Fix GICR_CTLR.RWP polling + - fbdev: Fix unregistering of framebuffers without device + - amd/display: set backlight only if required + - SUNRPC: Prevent immediate close+reconnect + - drm/panel: ili9341: fix optional regulator handling + - drm/amdgpu/display: change pipe policy for DCN 2.1 + - drm/amdgpu/smu10: fix SoC/fclk units in auto mode + - drm/amdgpu/vcn: Fix the register setting for vcn1 + - drm/nouveau/pmu: Add missing callbacks for Tegra devices + - drm/amdkfd: Create file descriptor after client is added to smi_clients list + - drm/amdgpu: don't use BACO for reset in S3 + - KVM: SVM: Allow AVIC support on system w/ physical APIC ID > 255 + - net/smc: send directly on setting TCP_NODELAY + - Revert "selftests: net: Add tls config dependency for tls selftests" + - bpf: Make remote_port field in struct bpf_sk_lookup 16-bit wide + - selftests/bpf: Fix u8 narrow load checks for bpf_sk_lookup remote_port + - rtc: mc146818-lib: fix signedness bug in mc146818_get_time() + - SUNRPC: Don't call connect() more than once on a TCP socket + - Revert "nbd: fix possible overflow on 'first_minor' in nbd_dev_add()" + - perf build: Don't use -ffat-lto-objects in the python feature test when + building with clang-13 + - perf python: Fix probing for some clang command line options + - tools build: Filter out options and warnings not supported by clang + - tools build: Use $(shell ) instead of `` to get embedded libperl's ccopts + - dmaengine: Revert "dmaengine: shdma: Fix runtime PM imbalance on error" + - KVM: avoid NULL pointer dereference in kvm_dirty_ring_push + - Revert "net/mlx5: Accept devlink user input after driver initialization + complete" + - ubsan: remove CONFIG_UBSAN_OBJECT_SIZE + - selftests: cgroup: Make cg_create() use 0755 for permission instead of 0644 + - selftests: cgroup: Test open-time credential usage for migration checks + - selftests: cgroup: Test open-time cgroup namespace usage for migration + checks + - mm: don't skip swap entry even if zap_details specified + - Drivers: hv: vmbus: Replace smp_store_mb() with virt_store_mb() + - x86/bug: Prevent shadowing in __WARN_FLAGS + - sched: Teach the forced-newidle balancer about CPU affinity limitation. + - x86,static_call: Fix __static_call_return0 for i386 + - irqchip/gic-v4: Wait for GICR_VPENDBASER.Dirty to clear before descheduling + - powerpc/64: Fix build failure with allyesconfig in book3s_64_entry.S + - irqchip/gic, gic-v3: Prevent GSI to SGI translations + - mm/sparsemem: fix 'mem_section' will never be NULL gcc 12 warning + - static_call: Don't make __static_call_return0 static + - powerpc: Fix virt_addr_valid() for 64-bit Book3E & 32-bit + - stacktrace: move filter_irq_stacks() to kernel/stacktrace.c + - Linux 5.15.34 + - [Config] armhf, s390x: update annotations following + DEBUG_FORCE_FUNCTION_ALIGN_64B support removal in v5.15.34 + * Jammy update: v5.15.33 upstream stable release (LP: #1969110) + - Revert "swiotlb: rework "fix info leak with DMA_FROM_DEVICE"" + - USB: serial: pl2303: add IBM device IDs + - dt-bindings: usb: hcd: correct usb-device path + - USB: serial: pl2303: fix GS type detection + - USB: serial: simple: add Nokia phone driver + - mm: kfence: fix missing objcg housekeeping for SLAB + - hv: utils: add PTP_1588_CLOCK to Kconfig to fix build + - HID: logitech-dj: add new lightspeed receiver id + - HID: Add support for open wheel and no attachment to T300 + - xfrm: fix tunnel model fragmentation behavior + - ARM: mstar: Select HAVE_ARM_ARCH_TIMER + - virtio_console: break out of buf poll on remove + - vdpa/mlx5: should verify CTRL_VQ feature exists for MQ + - tools/virtio: fix virtio_test execution + - ethernet: sun: Free the coherent when failing in probing + - gpio: Revert regression in sysfs-gpio (gpiolib.c) + - spi: Fix invalid sgs value + - net:mcf8390: Use platform_get_irq() to get the interrupt + - Revert "gpio: Revert regression in sysfs-gpio (gpiolib.c)" + - spi: Fix erroneous sgs value with min_t() + - Input: zinitix - do not report shadow fingers + - af_key: add __GFP_ZERO flag for compose_sadb_supported in function + pfkey_register + - net: dsa: microchip: add spi_device_id tables + - selftests: vm: fix clang build error multiple output files + - locking/lockdep: Avoid potential access of invalid memory in lock_class + - drm/amdgpu: move PX checking into amdgpu_device_ip_early_init + - drm/amdgpu: only check for _PR3 on dGPUs + - iommu/iova: Improve 32-bit free space estimate + - virtio-blk: Use blk_validate_block_size() to validate block size + - tpm: fix reference counting for struct tpm_chip + - usb: typec: tipd: Forward plug orientation to typec subsystem + - USB: usb-storage: Fix use of bitfields for hardware data in ene_ub6250.c + - xhci: fix garbage USBSTS being logged in some cases + - xhci: fix runtime PM imbalance in USB2 resume + - xhci: make xhci_handshake timeout for xhci_reset() adjustable + - xhci: fix uninitialized string returned by xhci_decode_ctrl_ctx() + - mei: me: disable driver on the ign firmware + - mei: me: add Alder Lake N device id. + - mei: avoid iterator usage outside of list_for_each_entry + - bus: mhi: pci_generic: Add mru_default for Quectel EM1xx series + - bus: mhi: Fix MHI DMA structure endianness + - docs: sphinx/requirements: Limit jinja2<3.1 + - coresight: Fix TRCCONFIGR.QE sysfs interface + - coresight: syscfg: Fix memleak on registration failure in + cscfg_create_device + - iio: afe: rescale: use s64 for temporary scale calculations + - iio: inkern: apply consumer scale on IIO_VAL_INT cases + - iio: inkern: apply consumer scale when no channel scale is available + - iio: inkern: make a best effort on offset calculation + - greybus: svc: fix an error handling bug in gb_svc_hello() + - clk: rockchip: re-add rational best approximation algorithm to the + fractional divider + - clk: uniphier: Fix fixed-rate initialization + - cifs: fix handlecache and multiuser + - cifs: we do not need a spinlock around the tree access during umount + - KEYS: fix length validation in keyctl_pkey_params_get_2() + - KEYS: asymmetric: enforce that sig algo matches key algo + - KEYS: asymmetric: properly validate hash_algo and encoding + - Documentation: add link to stable release candidate tree + - Documentation: update stable tree link + - firmware: stratix10-svc: add missing callback parameter on RSU + - firmware: sysfb: fix platform-device leak in error path + - HID: intel-ish-hid: Use dma_alloc_coherent for firmware update + - SUNRPC: avoid race between mod_timer() and del_timer_sync() + - NFS: NFSv2/v3 clients should never be setting NFS_CAP_XATTR + - NFSD: prevent underflow in nfssvc_decode_writeargs() + - NFSD: prevent integer overflow on 32 bit systems + - f2fs: fix to unlock page correctly in error path of is_alive() + - f2fs: quota: fix loop condition at f2fs_quota_sync() + - f2fs: fix to do sanity check on .cp_pack_total_block_count + - remoteproc: Fix count check in rproc_coredump_write() + - mm/mlock: fix two bugs in user_shm_lock() + - pinctrl: ingenic: Fix regmap on X series SoCs + - pinctrl: samsung: drop pin banks references on error paths + - net: bnxt_ptp: fix compilation error + - spi: mxic: Fix the transmit path + - mtd: rawnand: protect access to rawnand devices while in suspend + - can: ems_usb: ems_usb_start_xmit(): fix double dev_kfree_skb() in error path + - can: m_can: m_can_tx_handler(): fix use after free of skb + - can: usb_8dev: usb_8dev_start_xmit(): fix double dev_kfree_skb() in error + path + - jffs2: fix use-after-free in jffs2_clear_xattr_subsystem + - jffs2: fix memory leak in jffs2_do_mount_fs + - jffs2: fix memory leak in jffs2_scan_medium + - mm: fs: fix lru_cache_disabled race in bh_lru + - mm/pages_alloc.c: don't create ZONE_MOVABLE beyond the end of a node + - mm: invalidate hwpoison page cache page in fault path + - mempolicy: mbind_range() set_policy() after vma_merge() + - scsi: core: sd: Add silence_suspend flag to suppress some PM messages + - scsi: ufs: Fix runtime PM messages never-ending cycle + - scsi: scsi_transport_fc: Fix FPIN Link Integrity statistics counters + - scsi: libsas: Fix sas_ata_qc_issue() handling of NCQ NON DATA commands + - qed: display VF trust config + - qed: validate and restrict untrusted VFs vlan promisc mode + - riscv: dts: canaan: Fix SPI3 bus width + - riscv: Fix fill_callchain return value + - riscv: Increase stack size under KASAN + - Revert "Input: clear BTN_RIGHT/MIDDLE on buttonpads" + - cifs: prevent bad output lengths in smb2_ioctl_query_info() + - cifs: fix NULL ptr dereference in smb2_ioctl_query_info() + - ALSA: cs4236: fix an incorrect NULL check on list iterator + - ALSA: hda: Avoid unsol event during RPM suspending + - ALSA: pcm: Fix potential AB/BA lock with buffer_mutex and mmap_lock + - ALSA: hda/realtek: Fix audio regression on Mi Notebook Pro 2020 + - rtc: mc146818-lib: fix locking in mc146818_set_time + - rtc: pl031: fix rtc features null pointer dereference + - ocfs2: fix crash when mount with quota enabled + - drm/simpledrm: Add "panel orientation" property on non-upright mounted LCD + panels + - mm: madvise: skip unmapped vma holes passed to process_madvise + - mm: madvise: return correct bytes advised with process_madvise + - Revert "mm: madvise: skip unmapped vma holes passed to process_madvise" + - mm,hwpoison: unmap poisoned page before invalidation + - mm/kmemleak: reset tag when compare object pointer + - dm stats: fix too short end duration_ns when using precise_timestamps + - dm: fix use-after-free in dm_cleanup_zoned_dev() + - dm: interlock pending dm_io and dm_wait_for_bios_completion + - dm: fix double accounting of flush with data + - dm integrity: set journal entry unused when shrinking device + - tracing: Have trace event string test handle zero length strings + - drbd: fix potential silent data corruption + - powerpc/kvm: Fix kvm_use_magic_page + - PCI: fu740: Force 2.5GT/s for initial device probe + - arm64: signal: nofpsimd: Do not allocate fp/simd context when not available + - arm64: Do not defer reserve_crashkernel() for platforms with no DMA memory + zones + - arm64: dts: qcom: sm8250: Fix MSI IRQ for PCIe1 and PCIe2 + - arm64: dts: ti: k3-am65: Fix gic-v3 compatible regs + - arm64: dts: ti: k3-j721e: Fix gic-v3 compatible regs + - arm64: dts: ti: k3-j7200: Fix gic-v3 compatible regs + - arm64: dts: ti: k3-am64: Fix gic-v3 compatible regs + - ASoC: SOF: Intel: Fix NULL ptr dereference when ENOMEM + - Revert "ACPI: Pass the same capabilities to the _OSC regardless of the query + flag" + - ACPI: properties: Consistently return -ENOENT if there are no more + references + - coredump: Also dump first pages of non-executable ELF libraries + - ext4: fix ext4_fc_stats trace point + - ext4: fix fs corruption when tring to remove a non-empty directory with IO + error + - ext4: make mb_optimize_scan performance mount option work with extents + - drivers: hamradio: 6pack: fix UAF bug caused by mod_timer() + - samples/landlock: Fix path_list memory leak + - landlock: Use square brackets around "landlock-ruleset" + - mailbox: tegra-hsp: Flush whole channel + - block: limit request dispatch loop duration + - block: don't merge across cgroup boundaries if blkcg is enabled + - drm/edid: check basic audio support on CEA extension block + - fbdev: Hot-unplug firmware fb devices on forced removal + - video: fbdev: sm712fb: Fix crash in smtcfb_read() + - video: fbdev: atari: Atari 2 bpp (STe) palette bugfix + - rfkill: make new event layout opt-in + - ARM: dts: at91: sama7g5: Remove unused properties in i2c nodes + - ARM: dts: at91: sama5d2: Fix PMERRLOC resource size + - ARM: dts: exynos: fix UART3 pins configuration in Exynos5250 + - ARM: dts: exynos: add missing HDMI supplies on SMDK5250 + - ARM: dts: exynos: add missing HDMI supplies on SMDK5420 + - mgag200 fix memmapsl configuration in GCTL6 register + - carl9170: fix missing bit-wise or operator for tx_params + - pstore: Don't use semaphores in always-atomic-context code + - thermal: int340x: Increase bitmap size + - lib/raid6/test: fix multiple definition linking error + - exec: Force single empty string when argv is empty + - crypto: rsa-pkcs1pad - only allow with rsa + - crypto: rsa-pkcs1pad - correctly get hash from source scatterlist + - crypto: rsa-pkcs1pad - restore signature length check + - crypto: rsa-pkcs1pad - fix buffer overread in pkcs1pad_verify_complete() + - bcache: fixup multiple threads crash + - PM: domains: Fix sleep-in-atomic bug caused by genpd_debug_remove() + - DEC: Limit PMAX memory probing to R3k systems + - media: gpio-ir-tx: fix transmit with long spaces on Orange Pi PC + - media: venus: hfi_cmds: List HDR10 property as unsupported for v1 and v3 + - media: venus: venc: Fix h264 8x8 transform control + - media: davinci: vpif: fix unbalanced runtime PM get + - media: davinci: vpif: fix unbalanced runtime PM enable + - btrfs: zoned: mark relocation as writing + - btrfs: extend locking to all space_info members accesses + - btrfs: verify the tranisd of the to-be-written dirty extent buffer + - xtensa: define update_mmu_tlb function + - xtensa: fix stop_machine_cpuslocked call in patch_text + - xtensa: fix xtensa_wsr always writing 0 + - drm/syncobj: flatten dma_fence_chains on transfer + - drm/nouveau/backlight: Fix LVDS backlight detection on some laptops + - drm/nouveau/backlight: Just set all backlight types as RAW + - drm/fb-helper: Mark screen buffers in system memory with FBINFO_VIRTFB + - brcmfmac: firmware: Allocate space for default boardrev in nvram + - brcmfmac: pcie: Release firmwares in the brcmf_pcie_setup error path + - brcmfmac: pcie: Declare missing firmware files in pcie.c + - brcmfmac: pcie: Replace brcmf_pcie_copy_mem_todev with memcpy_toio + - brcmfmac: pcie: Fix crashes due to early IRQs + - drm/i915/opregion: check port number bounds for SWSCI display power state + - drm/i915/gem: add missing boundary check in vm_access + - PCI: imx6: Allow to probe when dw_pcie_wait_for_link() fails + - PCI: pciehp: Clear cmd_busy bit in polling mode + - PCI: xgene: Revert "PCI: xgene: Fix IB window setup" + - regulator: qcom_smd: fix for_each_child.cocci warnings + - selinux: access superblock_security_struct in LSM blob way + - selinux: check return value of sel_make_avc_files + - crypto: ccp - Ensure psp_ret is always init'd in + __sev_platform_init_locked() + - hwrng: cavium - Check health status while reading random data + - hwrng: cavium - HW_RANDOM_CAVIUM should depend on ARCH_THUNDER + - crypto: sun8i-ss - really disable hash on A80 + - crypto: authenc - Fix sleep in atomic context in decrypt_tail + - crypto: mxs-dcp - Fix scatterlist processing + - selinux: Fix selinux_sb_mnt_opts_compat() + - thermal: int340x: Check for NULL after calling kmemdup() + - crypto: octeontx2 - remove CONFIG_DM_CRYPT check + - spi: tegra114: Add missing IRQ check in tegra_spi_probe + - spi: tegra210-quad: Fix missin IRQ check in tegra_qspi_probe + - stack: Constrain and fix stack offset randomization with Clang builds + - arm64/mm: avoid fixmap race condition when create pud mapping + - blk-cgroup: set blkg iostat after percpu stat aggregation + - selftests/x86: Add validity check and allow field splitting + - selftests/sgx: Treat CC as one argument + - crypto: rockchip - ECB does not need IV + - audit: log AUDIT_TIME_* records only from rules + - EVM: fix the evm= __setup handler return value + - crypto: ccree - don't attempt 0 len DMA mappings + - crypto: hisilicon/sec - fix the aead software fallback for engine + - spi: pxa2xx-pci: Balance reference count for PCI DMA device + - hwmon: (pmbus) Add mutex to regulator ops + - hwmon: (sch56xx-common) Replace WDOG_ACTIVE with WDOG_HW_RUNNING + - nvme: cleanup __nvme_check_ids + - nvme: fix the check for duplicate unique identifiers + - block: don't delete queue kobject before its children + - PM: hibernate: fix __setup handler error handling + - PM: suspend: fix return value of __setup handler + - spi: spi-zynqmp-gqspi: Handle error for dma_set_mask + - hwrng: atmel - disable trng on failure path + - crypto: sun8i-ss - call finalize with bh disabled + - crypto: sun8i-ce - call finalize with bh disabled + - crypto: amlogic - call finalize with bh disabled + - crypto: gemini - call finalize with bh disabled + - crypto: vmx - add missing dependencies + - clocksource/drivers/timer-ti-dm: Fix regression from errata i940 fix + - clocksource/drivers/exynos_mct: Refactor resources allocation + - clocksource/drivers/exynos_mct: Handle DTS with higher number of interrupts + - clocksource/drivers/timer-microchip-pit64b: Use notrace + - clocksource/drivers/timer-of: Check return value of of_iomap in + timer_of_base_init() + - arm64: prevent instrumentation of bp hardening callbacks + - KEYS: trusted: Fix trusted key backends when building as module + - KEYS: trusted: Avoid calling null function trusted_key_exit + - ACPI: APEI: fix return value of __setup handlers + - crypto: ccp - ccp_dmaengine_unregister release dma channels + - crypto: ccree - Fix use after free in cc_cipher_exit() + - hwrng: nomadik - Change clk_disable to clk_disable_unprepare + - hwmon: (pmbus) Add Vin unit off handling + - clocksource: acpi_pm: fix return value of __setup handler + - io_uring: don't check unrelated req->open.how in accept request + - io_uring: terminate manual loop iterator loop correctly for non-vecs + - watch_queue: Fix NULL dereference in error cleanup + - watch_queue: Actually free the watch + - f2fs: fix to enable ATGC correctly via gc_idle sysfs interface + - sched/debug: Remove mpol_get/put and task_lock/unlock from sched_show_numa + - sched/core: Export pelt_thermal_tp + - sched/uclamp: Fix iowait boost escaping uclamp restriction + - rseq: Remove broken uapi field layout on 32-bit little endian + - perf/core: Fix address filter parser for multiple filters + - perf/x86/intel/pt: Fix address filter config for 32-bit kernel + - sched/fair: Improve consistency of allowed NUMA balance calculations + - f2fs: fix missing free nid in f2fs_handle_failed_inode + - nfsd: more robust allocation failure handling in nfsd_file_cache_init + - sched/cpuacct: Fix charge percpu cpuusage + - sched/rt: Plug rt_mutex_setprio() vs push_rt_task() race + - f2fs: fix to avoid potential deadlock + - btrfs: fix unexpected error path when reflinking an inline extent + - f2fs: fix compressed file start atomic write may cause data corruption + - selftests, x86: fix how check_cc.sh is being invoked + - drivers/base/memory: add memory block to memory group after registration + succeeded + - kunit: make kunit_test_timeout compatible with comment + - pinctrl: samsung: Remove EINT handler for Exynos850 ALIVE and CMGP gpios + - media: staging: media: zoran: fix usage of vb2_dma_contig_set_max_seg_size + - media: camss: csid-170: fix non-10bit formats + - media: camss: csid-170: don't enable unused irqs + - media: camss: csid-170: set the right HALT_CMD when disabled + - media: camss: vfe-170: fix "VFE halt timeout" error + - media: staging: media: imx: imx7-mipi-csis: Make subdev name unique + - media: v4l2-mem2mem: Apply DST_QUEUE_OFF_BASE on MMAP buffers across ioctls + - media: mtk-vcodec: potential dereference of null pointer + - media: imx: imx8mq-mipi-csi2: remove wrong irq config write operation + - media: imx: imx8mq-mipi_csi2: fix system resume + - media: bttv: fix WARNING regression on tunerless devices + - media: atmel: atmel-sama7g5-isc: fix ispck leftover + - ASoC: sh: rz-ssi: Drop calling rz_ssi_pio_recv() recursively + - ASoC: codecs: Check for error pointer after calling devm_regmap_init_mmio + - ASoC: xilinx: xlnx_formatter_pcm: Handle sysclk setting + - ASoC: simple-card-utils: Set sysclk on all components + - media: coda: Fix missing put_device() call in coda_get_vdoa_data + - media: meson: vdec: potential dereference of null pointer + - media: hantro: Fix overfill bottom register field name + - media: ov6650: Fix set format try processing path + - media: v4l: Avoid unaligned access warnings when printing 4cc modifiers + - media: ov5648: Don't pack controls struct + - media: aspeed: Correct value for h-total-pixels + - video: fbdev: matroxfb: set maxvram of vbG200eW to the same as vbG200 to + avoid black screen + - video: fbdev: controlfb: Fix COMPILE_TEST build + - video: fbdev: smscufx: Fix null-ptr-deref in ufx_usb_probe() + - video: fbdev: atmel_lcdfb: fix an error code in atmel_lcdfb_probe() + - video: fbdev: fbcvt.c: fix printing in fb_cvt_print_name() + - ARM: dts: Fix OpenBMC flash layout label addresses + - firmware: qcom: scm: Remove reassignment to desc following initializer + - ARM: dts: qcom: ipq4019: fix sleep clock + - soc: qcom: rpmpd: Check for null return of devm_kcalloc + - soc: qcom: ocmem: Fix missing put_device() call in of_get_ocmem + - soc: qcom: aoss: remove spurious IRQF_ONESHOT flags + - arm64: dts: qcom: sdm845: fix microphone bias properties and values + - arm64: dts: qcom: sm8250: fix PCIe bindings to follow schema + - arm64: dts: broadcom: bcm4908: use proper TWD binding + - arm64: dts: qcom: sm8150: Correct TCS configuration for apps rsc + - arm64: dts: qcom: sm8350: Correct TCS configuration for apps rsc + - firmware: ti_sci: Fix compilation failure when CONFIG_TI_SCI_PROTOCOL is not + defined + - soc: ti: wkup_m3_ipc: Fix IRQ check in wkup_m3_ipc_probe + - ARM: dts: sun8i: v3s: Move the csi1 block to follow address order + - vsprintf: Fix potential unaligned access + - ARM: dts: imx: Add missing LVDS decoder on M53Menlo + - media: mexon-ge2d: fixup frames size in registers + - media: video/hdmi: handle short reads of hdmi info frame. + - media: ti-vpe: cal: Fix a NULL pointer dereference in + cal_ctx_v4l2_init_formats() + - media: em28xx: initialize refcount before kref_get + - media: usb: go7007: s2250-board: fix leak in probe() + - media: cedrus: H265: Fix neighbour info buffer size + - media: cedrus: h264: Fix neighbour info buffer size + - ASoC: codecs: rx-macro: fix accessing compander for aux + - ASoC: codecs: rx-macro: fix accessing array out of bounds for enum type + - ASoC: codecs: va-macro: fix accessing array out of bounds for enum type + - ASoC: codecs: wc938x: fix accessing array out of bounds for enum type + - ASoC: codecs: wcd938x: fix kcontrol max values + - ASoC: codecs: wcd934x: fix kcontrol max values + - ASoC: codecs: wcd934x: fix return value of wcd934x_rx_hph_mode_put + - media: v4l2-core: Initialize h264 scaling matrix + - media: ov5640: Fix set format, v4l2_mbus_pixelcode not updated + - selftests/lkdtm: Add UBSAN config + - lib: uninline simple_strntoull() as well + - vsprintf: Fix %pK with kptr_restrict == 0 + - uaccess: fix nios2 and microblaze get_user_8() + - ASoC: rt5663: check the return value of devm_kzalloc() in rt5663_parse_dp() + - soc: mediatek: pm-domains: Add wakeup capacity support in power domain + - mmc: sdhci_am654: Fix the driver data of AM64 SoC + - ASoC: ti: davinci-i2s: Add check for clk_enable() + - ALSA: spi: Add check for clk_enable() + - arm64: dts: ns2: Fix spi-cpol and spi-cpha property + - arm64: dts: broadcom: Fix sata nodename + - printk: fix return value of printk.devkmsg __setup handler + - ASoC: mxs-saif: Handle errors for clk_enable + - ASoC: atmel_ssc_dai: Handle errors for clk_enable + - ASoC: dwc-i2s: Handle errors for clk_enable + - ASoC: soc-compress: prevent the potentially use of null pointer + - memory: emif: Add check for setup_interrupts + - memory: emif: check the pointer temp in get_device_details() + - ALSA: firewire-lib: fix uninitialized flag for AV/C deferred transaction + - arm64: dts: rockchip: Fix SDIO regulator supply properties on rk3399-firefly + - m68k: coldfire/device.c: only build for MCF_EDMA when h/w macros are defined + - media: stk1160: If start stream fails, return buffers with + VB2_BUF_STATE_QUEUED + - media: vidtv: Check for null return of vzalloc + - ASoC: atmel: Add missing of_node_put() in at91sam9g20ek_audio_probe + - ASoC: wm8350: Handle error for wm8350_register_irq + - ASoC: fsi: Add check for clk_enable + - video: fbdev: omapfb: Add missing of_node_put() in dvic_probe_of + - media: saa7134: fix incorrect use to determine if list is empty + - ivtv: fix incorrect device_caps for ivtvfb + - ASoC: atmel: Fix error handling in snd_proto_probe + - ASoC: rockchip: i2s: Fix missing clk_disable_unprepare() in + rockchip_i2s_probe + - ASoC: SOF: Add missing of_node_put() in imx8m_probe + - ASoC: mediatek: use of_device_get_match_data() + - ASoC: mediatek: mt8192-mt6359: Fix error handling in mt8192_mt6359_dev_probe + - ASoC: rk817: Fix missing clk_disable_unprepare() in rk817_platform_probe + - ASoC: dmaengine: do not use a NULL prepare_slave_config() callback + - ASoC: mxs: Fix error handling in mxs_sgtl5000_probe + - ASoC: fsl_spdif: Disable TX clock when stop + - ASoC: imx-es8328: Fix error return code in imx_es8328_probe() + - ASoC: SOF: Intel: enable DMI L1 for playback streams + - ASoC: msm8916-wcd-digital: Fix missing clk_disable_unprepare() in + msm8916_wcd_digital_probe + - mmc: davinci_mmc: Handle error for clk_enable + - ASoC: atmel: Fix error handling in sam9x5_wm8731_driver_probe + - ASoC: msm8916-wcd-analog: Fix error handling in pm8916_wcd_analog_spmi_probe + - ASoC: codecs: wcd934x: Add missing of_node_put() in wcd934x_codec_parse_data + - ASoC: amd: Fix reference to PCM buffer address + - ARM: configs: multi_v5_defconfig: re-enable CONFIG_V4L_PLATFORM_DRIVERS + - ARM: configs: multi_v5_defconfig: re-enable DRM_PANEL and FB_xxx + - drm/meson: osd_afbcd: Add an exit callback to struct meson_afbcd_ops + - drm/meson: Make use of the helper function + devm_platform_ioremap_resourcexxx() + - drm/meson: split out encoder from meson_dw_hdmi + - drm/meson: Fix error handling when afbcd.ops->init fails + - drm/bridge: Fix free wrong object in sii8620_init_rcp_input_dev + - drm/bridge: Add missing pm_runtime_disable() in __dw_mipi_dsi_probe + - drm/bridge: nwl-dsi: Fix PM disable depth imbalance in nwl_dsi_probe + - drm: bridge: adv7511: Fix ADV7535 HPD enablement + - ath10k: fix memory overwrite of the WoWLAN wakeup packet pattern + - drm/v3d/v3d_drv: Check for error num after setting mask + - drm/panfrost: Check for error num after setting mask + - libbpf: Fix possible NULL pointer dereference when destroying skeleton + - bpftool: Only set obj->skeleton on complete success + - udmabuf: validate ubuf->pagecount + - bpf: Fix UAF due to race between btf_try_get_module and load_module + - drm/selftests/test-drm_dp_mst_helper: Fix memory leak in + sideband_msg_req_encode_decode + - selftests: bpf: Fix bind on used port + - Bluetooth: btintel: Fix WBS setting for Intel legacy ROM products + - Bluetooth: hci_serdev: call init_rwsem() before p->open() + - mtd: onenand: Check for error irq + - mtd: rawnand: gpmi: fix controller timings setting + - drm/edid: Don't clear formats if using deep color + - drm/edid: Split deep color modes between RGB and YUV444 + - ionic: fix type complaint in ionic_dev_cmd_clean() + - ionic: start watchdog after all is setup + - ionic: Don't send reset commands if FW isn't running + - drm/nouveau/acr: Fix undefined behavior in nvkm_acr_hsfw_load_bl() + - drm/amd/display: Fix a NULL pointer dereference in + amdgpu_dm_connector_add_common_modes() + - drm/amd/pm: return -ENOTSUPP if there is no get_dpm_ultimate_freq function + - net: phy: at803x: move page selection fix to config_init + - selftests/bpf: Normalize XDP section names in selftests + - selftests/bpf/test_xdp_redirect_multi: use temp netns for testing + - ath9k_htc: fix uninit value bugs + - RDMA/core: Set MR type in ib_reg_user_mr + - KVM: PPC: Fix vmx/vsx mixup in mmio emulation + - selftests/net: timestamping: Fix bind_phc check + - i40e: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - i40e: respect metadata on XSK Rx to skb + - igc: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - ixgbe: pass bi->xdp to ixgbe_construct_skb_zc() directly + - ixgbe: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - ixgbe: respect metadata on XSK Rx to skb + - power: reset: gemini-poweroff: Fix IRQ check in gemini_poweroff_probe + - ray_cs: Check ioremap return value + - powerpc: dts: t1040rdb: fix ports names for Seville Ethernet switch + - KVM: PPC: Book3S HV: Check return value of kvmppc_radix_init + - powerpc/perf: Don't use perf_hw_context for trace IMC PMU + - mt76: connac: fix sta_rec_wtbl tag len + - mt76: mt7915: use proper aid value in mt7915_mcu_wtbl_generic_tlv in sta + mode + - mt76: mt7915: use proper aid value in mt7915_mcu_sta_basic_tlv + - mt76: mt7921: fix a leftover race in runtime-pm + - mt76: mt7615: fix a leftover race in runtime-pm + - mt76: mt7603: check sta_rates pointer in mt7603_sta_rate_tbl_update + - mt76: mt7615: check sta_rates pointer in mt7615_sta_rate_tbl_update + - ptp: unregister virtual clocks when unregistering physical clock. + - net: dsa: mv88e6xxx: Enable port policy support on 6097 + - mac80211: Remove a couple of obsolete TODO + - mac80211: limit bandwidth in HE capabilities + - scripts/dtc: Call pkg-config POSIXly correct + - livepatch: Fix build failure on 32 bits processors + - net: asix: add proper error handling of usb read errors + - i2c: bcm2835: Use platform_get_irq() to get the interrupt + - i2c: bcm2835: Fix the error handling in 'bcm2835_i2c_probe()' + - mtd: mchp23k256: Add SPI ID table + - mtd: mchp48l640: Add SPI ID table + - igc: avoid kernel warning when changing RX ring parameters + - igb: refactor XDP registration + - PCI: aardvark: Fix reading MSI interrupt number + - PCI: aardvark: Fix reading PCI_EXP_RTSTA_PME bit on emulated bridge + - RDMA/rxe: Check the last packet by RXE_END_MASK + - libbpf: Fix signedness bug in btf_dump_array_data() + - cxl/core: Fix cxl_probe_component_regs() error message + - cxl/regs: Fix size of CXL Capability Header Register + - net:enetc: allocate CBD ring data memory using DMA coherent methods + - libbpf: Fix compilation warning due to mismatched printf format + - drm/bridge: dw-hdmi: use safe format when first in bridge chain + - libbpf: Use dynamically allocated buffer when receiving netlink messages + - power: supply: ab8500: Fix memory leak in ab8500_fg_sysfs_init + - HID: i2c-hid: fix GET/SET_REPORT for unnumbered reports + - iommu/ipmmu-vmsa: Check for error num after setting mask + - drm/bridge: anx7625: Fix overflow issue on reading EDID + - bpftool: Fix the error when lookup in no-btf maps + - drm/amd/pm: enable pm sysfs write for one VF mode + - drm/amd/display: Add affected crtcs to atomic state for dsc mst unplug + - libbpf: Fix memleak in libbpf_netlink_recv() + - IB/cma: Allow XRC INI QPs to set their local ACK timeout + - dax: make sure inodes are flushed before destroy cache + - selftests: mptcp: add csum mib check for mptcp_connect + - iwlwifi: mvm: Don't call iwl_mvm_sta_from_mac80211() with NULL sta + - iwlwifi: mvm: don't iterate unadded vifs when handling FW SMPS req + - iwlwifi: mvm: align locking in D3 test debugfs + - iwlwifi: yoyo: remove DBGI_SRAM address reset writing + - iwlwifi: Fix -EIO error code that is never returned + - iwlwifi: mvm: Fix an error code in iwl_mvm_up() + - mtd: rawnand: pl353: Set the nand chip node as the flash node + - drm/msm/dp: populate connector of struct dp_panel + - drm/msm/dp: stop link training after link training 2 failed + - drm/msm/dp: always add fail-safe mode into connector mode list + - drm/msm/dsi: Use "ref" fw clock instead of global name for VCO parent + - drm/msm/dsi/phy: fix 7nm v4.0 settings for C-PHY mode + - drm/msm/dpu: add DSPP blocks teardown + - drm/msm/dpu: fix dp audio condition + - dm crypt: fix get_key_size compiler warning if !CONFIG_KEYS + - vfio/pci: fix memory leak during D3hot to D0 transition + - vfio/pci: wake-up devices around reset functions + - scsi: fnic: Fix a tracing statement + - scsi: pm8001: Fix command initialization in pm80XX_send_read_log() + - scsi: pm8001: Fix command initialization in pm8001_chip_ssp_tm_req() + - scsi: pm8001: Fix payload initialization in pm80xx_set_thermal_config() + - scsi: pm8001: Fix le32 values handling in + pm80xx_set_sas_protocol_timer_config() + - scsi: pm8001: Fix payload initialization in pm80xx_encrypt_update() + - scsi: pm8001: Fix le32 values handling in pm80xx_chip_ssp_io_req() + - scsi: pm8001: Fix le32 values handling in pm80xx_chip_sata_req() + - scsi: pm8001: Fix NCQ NON DATA command task initialization + - scsi: pm8001: Fix NCQ NON DATA command completion handling + - scsi: pm8001: Fix abort all task initialization + - RDMA/mlx5: Fix the flow of a miss in the allocation of a cache ODP MR + - drm/amd/display: Remove vupdate_int_entry definition + - TOMOYO: fix __setup handlers return values + - power: supply: sbs-charger: Don't cancel work that is not initialized + - ext2: correct max file size computing + - drm/tegra: Fix reference leak in tegra_dsi_ganged_probe + - power: supply: bq24190_charger: Fix bq24190_vbus_is_enabled() wrong false + return + - scsi: hisi_sas: Change permission of parameter prot_mask + - drm/bridge: cdns-dsi: Make sure to to create proper aliases for dt + - bpf, arm64: Call build_prologue() first in first JIT pass + - bpf, arm64: Feed byte-offset into bpf line info + - xsk: Fix race at socket teardown + - RDMA/irdma: Fix netdev notifications for vlan's + - RDMA/irdma: Fix Passthrough mode in VM + - RDMA/irdma: Remove incorrect masking of PD + - gpu: host1x: Fix a memory leak in 'host1x_remove()' + - libbpf: Skip forward declaration when counting duplicated type names + - powerpc/mm/numa: skip NUMA_NO_NODE onlining in parse_numa_properties() + - powerpc/Makefile: Don't pass -mcpu=powerpc64 when building 32-bit + - KVM: x86: Fix emulation in writing cr8 + - KVM: x86/emulator: Defer not-present segment check in + __load_segment_descriptor() + - hv_balloon: rate-limit "Unhandled message" warning + - i2c: xiic: Make bus names unique + - power: supply: wm8350-power: Handle error for wm8350_register_irq + - power: supply: wm8350-power: Add missing free in free_charger_irq + - IB/hfi1: Allow larger MTU without AIP + - RDMA/core: Fix ib_qp_usecnt_dec() called when error + - PCI: Reduce warnings on possible RW1C corruption + - net: axienet: fix RX ring refill allocation failure handling + - drm/msm/a6xx: Fix missing ARRAY_SIZE() check + - mips: DEC: honor CONFIG_MIPS_FP_SUPPORT=n + - MIPS: Sanitise Cavium switch cases in TLB handler synthesizers + - powerpc/sysdev: fix incorrect use to determine if list is empty + - powerpc/64s: Don't use DSISR for SLB faults + - mfd: mc13xxx: Add check for mc13xxx_irq_request + - libbpf: Unmap rings when umem deleted + - selftests/bpf: Make test_lwt_ip_encap more stable and faster + - platform/x86: huawei-wmi: check the return value of device_create_file() + - scsi: mpt3sas: Fix incorrect 4GB boundary check + - powerpc: 8xx: fix a return value error in mpc8xx_pic_init + - vxcan: enable local echo for sent CAN frames + - ath10k: Fix error handling in ath10k_setup_msa_resources + - mips: cdmm: Fix refcount leak in mips_cdmm_phys_base + - MIPS: RB532: fix return value of __setup handler + - MIPS: pgalloc: fix memory leak caused by pgd_free() + - mtd: rawnand: atmel: fix refcount issue in atmel_nand_controller_init + - power: ab8500_chargalg: Use CLOCK_MONOTONIC + - RDMA/irdma: Prevent some integer underflows + - Revert "RDMA/core: Fix ib_qp_usecnt_dec() called when error" + - RDMA/mlx5: Fix memory leak in error flow for subscribe event routine + - bpf, sockmap: Fix memleak in sk_psock_queue_msg + - bpf, sockmap: Fix memleak in tcp_bpf_sendmsg while sk msg is full + - bpf, sockmap: Fix more uncharged while msg has more_data + - bpf, sockmap: Fix double uncharge the mem of sk_msg + - samples/bpf, xdpsock: Fix race when running for fix duration of time + - USB: storage: ums-realtek: fix error code in rts51x_read_mem() + - drm/i915/display: Fix HPD short pulse handling for eDP + - netfilter: flowtable: Fix QinQ and pppoe support for inet table + - mt76: mt7921: fix mt7921_queues_acq implementation + - can: isotp: sanitize CAN ID checks in isotp_bind() + - can: isotp: return -EADDRNOTAVAIL when reading from unbound socket + - can: isotp: support MSG_TRUNC flag when reading from socket + - bareudp: use ipv6_mod_enabled to check if IPv6 enabled + - ibmvnic: fix race between xmit and reset + - af_unix: Fix some data-races around unix_sk(sk)->oob_skb. + - selftests/bpf: Fix error reporting from sock_fields programs + - Bluetooth: hci_uart: add missing NULL check in h5_enqueue + - Bluetooth: call hci_le_conn_failed with hdev lock in hci_le_conn_failed + - Bluetooth: btmtksdio: Fix kernel oops in btmtksdio_interrupt + - ipv4: Fix route lookups when handling ICMP redirects and PMTU updates + - af_netlink: Fix shift out of bounds in group mask calculation + - i2c: meson: Fix wrong speed use from probe + - netfilter: conntrack: Add and use nf_ct_set_auto_assign_helper_warned() + - i2c: mux: demux-pinctrl: do not deactivate a master that is not active + - powerpc/pseries: Fix use after free in remove_phb_dynamic() + - selftests/bpf/test_lirc_mode2.sh: Exit with proper code + - PCI: Avoid broken MSI on SB600 USB devices + - net: bcmgenet: Use stronger register read/writes to assure ordering + - tcp: ensure PMTU updates are processed during fastopen + - openvswitch: always update flow key after nat + - net: dsa: fix panic on shutdown if multi-chip tree failed to probe + - tipc: fix the timer expires after interval 100ms + - mfd: asic3: Add missing iounmap() on error asic3_mfd_probe + - ice: fix 'scheduling while atomic' on aux critical err interrupt + - ice: don't allow to run ice_send_event_to_aux() in atomic ctx + - drivers: ethernet: cpsw: fix panic when interrupt coaleceing is set via + ethtool + - kernel/resource: fix kfree() of bootmem memory again + - staging: r8188eu: convert DBG_88E_LEVEL call in hal/rtl8188e_hal_init.c + - staging: r8188eu: release_firmware is not called if allocation fails + - mxser: fix xmit_buf leak in activate when LSR == 0xff + - fsi: scom: Fix error handling + - fsi: scom: Remove retries in indirect scoms + - pwm: lpc18xx-sct: Initialize driver data and hardware before pwmchip_add() + - pps: clients: gpio: Propagate return value from pps_gpio_probe + - fsi: Aspeed: Fix a potential double free + - misc: alcor_pci: Fix an error handling path + - cpufreq: qcom-cpufreq-nvmem: fix reading of PVS Valid fuse + - soundwire: intel: fix wrong register name in intel_shim_wake + - clk: qcom: ipq8074: fix PCI-E clock oops + - dmaengine: idxd: check GENCAP config support for gencfg register + - dmaengine: idxd: change bandwidth token to read buffers + - dmaengine: idxd: restore traffic class defaults after wq reset + - iio: mma8452: Fix probe failing when an i2c_device_id is used + - serial: 8250_aspeed_vuart: add PORT_ASPEED_VUART port type + - staging:iio:adc:ad7280a: Fix handing of device address bit reversing. + - pinctrl: renesas: r8a77470: Reduce size for narrow VIN1 channel + - pinctrl: renesas: checker: Fix miscalculation of number of states + - clk: qcom: ipq8074: Use floor ops for SDCC1 clock + - phy: dphy: Correct lpx parameter and its derivatives(ta_{get,go,sure}) + - phy: phy-brcm-usb: fixup BCM4908 support + - serial: 8250_mid: Balance reference count for PCI DMA device + - serial: 8250_lpss: Balance reference count for PCI DMA device + - NFS: Use of mapping_set_error() results in spurious errors + - serial: 8250: Fix race condition in RTS-after-send handling + - iio: adc: Add check for devm_request_threaded_irq + - habanalabs: Add check for pci_enable_device + - NFS: Return valid errors from nfs2/3_decode_dirent() + - staging: r8188eu: fix endless loop in recv_func + - dma-debug: fix return value of __setup handlers + - clk: imx7d: Remove audio_mclk_root_clk + - clk: imx: off by one in imx_lpcg_parse_clks_from_dt() + - clk: at91: sama7g5: fix parents of PDMCs' GCLK + - clk: qcom: clk-rcg2: Update logic to calculate D value for RCG + - clk: qcom: clk-rcg2: Update the frac table for pixel clock + - dmaengine: hisi_dma: fix MSI allocate fail when reload hisi_dma + - remoteproc: qcom: Fix missing of_node_put in adsp_alloc_memory_region + - remoteproc: qcom_wcnss: Add missing of_node_put() in + wcnss_alloc_memory_region + - remoteproc: qcom_q6v5_mss: Fix some leaks in q6v5_alloc_memory_region + - nvdimm/region: Fix default alignment for small regions + - clk: actions: Terminate clk_div_table with sentinel element + - clk: loongson1: Terminate clk_div_table with sentinel element + - clk: hisilicon: Terminate clk_div_table with sentinel element + - clk: clps711x: Terminate clk_div_table with sentinel element + - clk: Fix clk_hw_get_clk() when dev is NULL + - clk: tegra: tegra124-emc: Fix missing put_device() call in + emc_ensure_emc_driver + - mailbox: imx: fix crash in resume on i.mx8ulp + - NFS: remove unneeded check in decode_devicenotify_args() + - staging: mt7621-dts: fix LEDs and pinctrl on GB-PC1 devicetree + - staging: mt7621-dts: fix formatting + - staging: mt7621-dts: fix pinctrl properties for ethernet + - staging: mt7621-dts: fix GB-PC2 devicetree + - pinctrl: mediatek: Fix missing of_node_put() in mtk_pctrl_init + - pinctrl: mediatek: paris: Fix PIN_CONFIG_BIAS_* readback + - pinctrl: mediatek: paris: Fix "argument" argument type for mtk_pinconf_get() + - pinctrl: mediatek: paris: Fix pingroup pin config state readback + - pinctrl: mediatek: paris: Skip custom extra pin config dump for virtual + GPIOs + - pinctrl: microchip sgpio: use reset driver + - pinctrl: microchip-sgpio: lock RMW access + - pinctrl: nomadik: Add missing of_node_put() in nmk_pinctrl_probe + - pinctrl/rockchip: Add missing of_node_put() in rockchip_pinctrl_probe + - tty: hvc: fix return value of __setup handler + - kgdboc: fix return value of __setup handler + - serial: 8250: fix XOFF/XON sending when DMA is used + - virt: acrn: obtain pa from VMA with PFNMAP flag + - virt: acrn: fix a memory leak in acrn_dev_ioctl() + - kgdbts: fix return value of __setup handler + - firmware: google: Properly state IOMEM dependency + - driver core: dd: fix return value of __setup handler + - jfs: fix divide error in dbNextAG + - netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options + - SUNRPC don't resend a task on an offlined transport + - NFSv4.1: don't retry BIND_CONN_TO_SESSION on session error + - kdb: Fix the putarea helper function + - perf stat: Fix forked applications enablement of counters + - clk: qcom: gcc-msm8994: Fix gpll4 width + - vsock/virtio: initialize vdev->priv before using VQs + - vsock/virtio: read the negotiated features before using VQs + - vsock/virtio: enable VQs early on probe + - clk: Initialize orphan req_rate + - xen: fix is_xen_pmu() + - net: enetc: report software timestamping via SO_TIMESTAMPING + - net: hns3: fix bug when PF set the duplicate MAC address for VFs + - net: hns3: fix port base vlan add fail when concurrent with reset + - net: hns3: add vlan list lock to protect vlan list + - net: hns3: format the output of the MAC address + - net: hns3: refine the process when PF set VF VLAN + - net: phy: broadcom: Fix brcm_fet_config_init() + - selftests: test_vxlan_under_vrf: Fix broken test case + - NFS: Don't loop forever in nfs_do_recoalesce() + - net: hns3: clean residual vf config after disable sriov + - net: sparx5: depends on PTP_1588_CLOCK_OPTIONAL + - qlcnic: dcb: default to returning -EOPNOTSUPP + - net/x25: Fix null-ptr-deref caused by x25_disconnect + - net: sparx5: switchdev: fix possible NULL pointer dereference + - octeontx2-af: initialize action variable + - net: prefer nf_ct_put instead of nf_conntrack_put + - net/sched: act_ct: fix ref leak when switching zones + - NFSv4/pNFS: Fix another issue with a list iterator pointing to the head + - net: dsa: bcm_sf2_cfp: fix an incorrect NULL check on list iterator + - fs: fd tables have to be multiples of BITS_PER_LONG + - lib/test: use after free in register_test_dev_kmod() + - fs: fix fd table size alignment properly + - LSM: general protection fault in legacy_parse_param + - regulator: rpi-panel: Handle I2C errors/timing to the Atmel + - crypto: hisilicon/qm - cleanup warning in qm_vf_read_qos + - gcc-plugins/stackleak: Exactly match strings instead of prefixes + - pinctrl: npcm: Fix broken references to chip->parent_device + - rcu: Mark writes to the rcu_segcblist structure's ->flags field + - block/bfq_wf2q: correct weight to ioprio + - crypto: xts - Add softdep on ecb + - crypto: hisilicon/sec - not need to enable sm4 extra mode at HW V3 + - block, bfq: don't move oom_bfqq + - selinux: use correct type for context length + - arm64: module: remove (NOLOAD) from linker script + - selinux: allow FIOCLEX and FIONCLEX with policy capability + - loop: use sysfs_emit() in the sysfs xxx show() + - Fix incorrect type in assignment of ipv6 port for audit + - irqchip/qcom-pdc: Fix broken locking + - irqchip/nvic: Release nvic_base upon failure + - fs/binfmt_elf: Fix AT_PHDR for unusual ELF files + - bfq: fix use-after-free in bfq_dispatch_request + - ACPICA: Avoid walking the ACPI Namespace if it is not there + - lib/raid6/test/Makefile: Use $(pound) instead of \# for Make 4.3 + - Revert "Revert "block, bfq: honor already-setup queue merges"" + - ACPI/APEI: Limit printable size of BERT table data + - PM: core: keep irq flags in device_pm_check_callbacks() + - parisc: Fix handling off probe non-access faults + - nvme-tcp: lockdep: annotate in-kernel sockets + - spi: tegra20: Use of_device_get_match_data() + - atomics: Fix atomic64_{read_acquire,set_release} fallbacks + - locking/lockdep: Iterate lock_classes directly when reading lockdep files + - ext4: correct cluster len and clusters changed accounting in ext4_mb_mark_bb + - ext4: fix ext4_mb_mark_bb() with flex_bg with fast_commit + - sched/tracing: Report TASK_RTLOCK_WAIT tasks as TASK_UNINTERRUPTIBLE + - ext4: don't BUG if someone dirty pages without asking ext4 first + - f2fs: fix to do sanity check on curseg->alloc_type + - NFSD: Fix nfsd_breaker_owns_lease() return values + - f2fs: don't get FREEZE lock in f2fs_evict_inode in frozen fs + - btrfs: harden identification of a stale device + - btrfs: make search_csum_tree return 0 if we get -EFBIG + - f2fs: use spin_lock to avoid hang + - f2fs: compress: fix to print raw data size in error path of lz4 + decompression + - Adjust cifssb maximum read size + - ntfs: add sanity check on allocation size + - media: staging: media: zoran: move videodev alloc + - media: staging: media: zoran: calculate the right buffer number for + zoran_reap_stat_com + - media: staging: media: zoran: fix various V4L2 compliance errors + - media: atmel: atmel-isc-base: report frame sizes as full supported range + - media: ir_toy: free before error exiting + - ASoC: sh: rz-ssi: Make the data structures available before registering the + handlers + - ASoC: SOF: Intel: match sdw version on link_slaves_found + - media: imx-jpeg: Prevent decoding NV12M jpegs into single-planar buffers + - media: iommu/mediatek-v1: Free the existed fwspec if the master dev already + has + - media: iommu/mediatek: Return ENODEV if the device is NULL + - media: iommu/mediatek: Add device_link between the consumer and the larb + devices + - video: fbdev: nvidiafb: Use strscpy() to prevent buffer overflow + - video: fbdev: w100fb: Reset global state + - video: fbdev: cirrusfb: check pixclock to avoid divide by zero + - video: fbdev: omapfb: acx565akm: replace snprintf with sysfs_emit + - ARM: dts: qcom: fix gic_irq_domain_translate warnings for msm8960 + - ARM: dts: bcm2837: Add the missing L1/L2 cache information + - ASoC: madera: Add dependencies on MFD + - media: atomisp_gmin_platform: Add DMI quirk to not turn AXP ELDO2 regulator + off on some boards + - media: atomisp: fix dummy_ptr check to avoid duplicate active_bo + - ARM: ftrace: avoid redundant loads or clobbering IP + - ARM: dts: imx7: Use audio_mclk_post_div instead audio_mclk_root_clk + - arm64: defconfig: build imx-sdma as a module + - video: fbdev: omapfb: panel-dsi-cm: Use sysfs_emit() instead of snprintf() + - video: fbdev: omapfb: panel-tpo-td043mtea1: Use sysfs_emit() instead of + snprintf() + - video: fbdev: udlfb: replace snprintf in show functions with sysfs_emit + - ARM: dts: bcm2711: Add the missing L1/L2 cache information + - ASoC: soc-core: skip zero num_dai component in searching dai name + - media: imx-jpeg: fix a bug of accessing array out of bounds + - media: cx88-mpeg: clear interrupt status register before streaming video + - uaccess: fix type mismatch warnings from access_ok() + - lib/test_lockup: fix kernel pointer check for separate address spaces + - ARM: tegra: tamonten: Fix I2C3 pad setting + - ARM: mmp: Fix failure to remove sram device + - ASoC: amd: vg: fix for pm resume callback sequence + - video: fbdev: sm712fb: Fix crash in smtcfb_write() + - media: i2c: ov5648: Fix lockdep error + - media: Revert "media: em28xx: add missing em28xx_close_extension" + - media: hdpvr: initialize dev->worker at hdpvr_register_videodev + - ASoC: Intel: sof_sdw: fix quirks for 2022 HP Spectre x360 13" + - tracing: Have TRACE_DEFINE_ENUM affect trace event types as well + - mmc: host: Return an error when ->enable_sdio_irq() ops is missing + - media: atomisp: fix bad usage at error handling logic + - ALSA: hda/realtek: Add alc256-samsung-headphone fixup + - KVM: x86: Reinitialize context if host userspace toggles EFER.LME + - KVM: x86/mmu: Move "invalid" check out of kvm_tdp_mmu_get_root() + - KVM: x86/mmu: Zap _all_ roots when unmapping gfn range in TDP MMU + - KVM: x86/mmu: Check for present SPTE when clearing dirty bit in TDP MMU + - KVM: x86: hyper-v: Drop redundant 'ex' parameter from kvm_hv_send_ipi() + - KVM: x86: hyper-v: Drop redundant 'ex' parameter from kvm_hv_flush_tlb() + - KVM: x86: hyper-v: Fix the maximum number of sparse banks for XMM fast TLB + flush hypercalls + - KVM: x86: hyper-v: HVCALL_SEND_IPI_EX is an XMM fast hypercall + - powerpc/kasan: Fix early region not updated correctly + - powerpc/lib/sstep: Fix 'sthcx' instruction + - powerpc/lib/sstep: Fix build errors with newer binutils + - powerpc: Add set_memory_{p/np}() and remove set_memory_attr() + - powerpc: Fix build errors with newer binutils + - drm/dp: Fix off-by-one in register cache size + - drm/i915: Treat SAGV block time 0 as SAGV disabled + - drm/i915: Fix PSF GV point mask when SAGV is not possible + - drm/i915: Reject unsupported TMDS rates on ICL+ + - scsi: qla2xxx: Refactor asynchronous command initialization + - scsi: qla2xxx: Implement ref count for SRB + - scsi: qla2xxx: Fix stuck session in gpdb + - scsi: qla2xxx: Fix warning message due to adisc being flushed + - scsi: qla2xxx: Fix scheduling while atomic + - scsi: qla2xxx: Fix premature hw access after PCI error + - scsi: qla2xxx: Fix wrong FDMI data for 64G adapter + - scsi: qla2xxx: Fix warning for missing error code + - scsi: qla2xxx: Fix device reconnect in loop topology + - scsi: qla2xxx: edif: Fix clang warning + - scsi: qla2xxx: Fix T10 PI tag escape and IP guard options for 28XX adapters + - scsi: qla2xxx: Add devids and conditionals for 28xx + - scsi: qla2xxx: Check for firmware dump already collected + - scsi: qla2xxx: Suppress a kernel complaint in qla_create_qpair() + - scsi: qla2xxx: Fix disk failure to rediscover + - scsi: qla2xxx: Fix incorrect reporting of task management failure + - scsi: qla2xxx: Fix hang due to session stuck + - scsi: qla2xxx: Fix missed DMA unmap for NVMe ls requests + - scsi: qla2xxx: Fix N2N inconsistent PLOGI + - scsi: qla2xxx: Fix stuck session of PRLI reject + - scsi: qla2xxx: Reduce false trigger to login + - scsi: qla2xxx: Use correct feature type field during RFF_ID processing + - platform: chrome: Split trace include file + - KVM: x86: Check lapic_in_kernel() before attempting to set a SynIC irq + - KVM: x86: Avoid theoretical NULL pointer dereference in + kvm_irq_delivery_to_apic_fast() + - KVM: x86: Forbid VMM to set SYNIC/STIMER MSRs when SynIC wasn't activated + - KVM: Prevent module exit until all VMs are freed + - KVM: x86: fix sending PV IPI + - KVM: SVM: fix panic on out-of-bounds guest IRQ + - ubifs: rename_whiteout: Fix double free for whiteout_ui->data + - ubifs: Fix deadlock in concurrent rename whiteout and inode writeback + - ubifs: Add missing iput if do_tmpfile() failed in rename whiteout + - ubifs: Rename whiteout atomically + - ubifs: Fix 'ui->dirty' race between do_tmpfile() and writeback work + - ubifs: Rectify space amount budget for mkdir/tmpfile operations + - ubifs: setflags: Make dirtied_ino_d 8 bytes aligned + - ubifs: Fix read out-of-bounds in ubifs_wbuf_write_nolock() + - ubifs: Fix to add refcount once page is set private + - ubifs: rename_whiteout: correct old_dir size computing + - nvme: allow duplicate NSIDs for private namespaces + - nvme: fix the read-only state for zoned namespaces with unsupposed features + - wireguard: queueing: use CFI-safe ptr_ring cleanup function + - wireguard: socket: free skb in send6 when ipv6 is disabled + - wireguard: socket: ignore v6 endpoints when ipv6 is disabled + - XArray: Fix xas_create_range() when multi-order entry present + - can: mcba_usb: mcba_usb_start_xmit(): fix double dev_kfree_skb in error path + - can: mcba_usb: properly check endpoint type + - can: mcp251xfd: mcp251xfd_register_get_dev_id(): fix return of error value + - XArray: Update the LRU list in xas_split() + - modpost: restore the warning message for missing symbol versions + - rtc: check if __rtc_read_time was successful + - gfs2: gfs2_setattr_size error path fix + - gfs2: Make sure FITRIM minlen is rounded up to fs block size + - net: hns3: fix the concurrency between functions reading debugfs + - net: hns3: fix software vlan talbe of vlan 0 inconsistent with hardware + - rxrpc: fix some null-ptr-deref bugs in server_key.c + - rxrpc: Fix call timer start racing with call destruction + - mailbox: imx: fix wakeup failure from freeze mode + - crypto: arm/aes-neonbs-cbc - Select generic cbc and aes + - watch_queue: Free the page array when watch_queue is dismantled + - pinctrl: pinconf-generic: Print arguments for bias-pull-* + - watchdog: rti-wdt: Add missing pm_runtime_disable() in probe function + - net: sparx5: uses, depends on BRIDGE or !BRIDGE + - pinctrl: nuvoton: npcm7xx: Rename DS() macro to DSTR() + - pinctrl: nuvoton: npcm7xx: Use %zu printk format for ARRAY_SIZE() + - ASoC: mediatek: mt6358: add missing EXPORT_SYMBOLs + - ubi: Fix race condition between ctrl_cdev_ioctl and ubi_cdev_ioctl + - ARM: iop32x: offset IRQ numbers by 1 + - block: Fix the maximum minor value is blk_alloc_ext_minor() + - io_uring: fix memory leak of uid in files registration + - riscv module: remove (NOLOAD) + - ACPI: CPPC: Avoid out of bounds access when parsing _CPC data + - vhost: handle error while adding split ranges to iotlb + - spi: Fix Tegra QSPI example + - platform/chrome: cros_ec_typec: Check for EC device + - can: isotp: restore accidentally removed MSG_PEEK feature + - proc: bootconfig: Add null pointer check + - drm/connector: Fix typo in documentation + - scsi: qla2xxx: Add qla2x00_async_done() for async routines + - staging: mt7621-dts: fix pinctrl-0 items to be size-1 items on ethernet + - arm64: mm: Drop 'const' from conditional arm64_dma_phys_limit definition + - ASoC: soc-compress: Change the check for codec_dai + - Reinstate some of "swiotlb: rework "fix info leak with DMA_FROM_DEVICE"" + - tracing: Have type enum modifications copy the strings + - net: add skb_set_end_offset() helper + - net: preserve skb_end_offset() in skb_unclone_keeptruesize() + - mm/mmap: return 1 from stack_guard_gap __setup() handler + - ARM: 9187/1: JIVE: fix return value of __setup handler + - mm/memcontrol: return 1 from cgroup.memory __setup() handler + - mm/usercopy: return 1 from hardened_usercopy __setup() handler + - af_unix: Support POLLPRI for OOB. + - bpf: Adjust BPF stack helper functions to accommodate skip > 0 + - bpf: Fix comment for helper bpf_current_task_under_cgroup() + - mmc: rtsx: Use pm_runtime_{get,put}() to handle runtime PM + - dt-bindings: mtd: nand-controller: Fix the reg property description + - dt-bindings: mtd: nand-controller: Fix a comment in the examples + - dt-bindings: spi: mxic: The interrupt property is not mandatory + - dt-bindings: memory: mtk-smi: No need mediatek,larb-id for mt8167 + - dt-bindings: pinctrl: pinctrl-microchip-sgpio: Fix example + - ubi: fastmap: Return error code if memory allocation fails in add_aeb() + - ASoC: SOF: Intel: Fix build error without SND_SOC_SOF_PCI_DEV + - ASoC: topology: Allow TLV control to be either read or write + - perf vendor events: Update metrics for SkyLake Server + - media: ov6650: Add try support to selection API operations + - media: ov6650: Fix crop rectangle affected by set format + - spi: mediatek: support tick_delay without enhance_timing + - ARM: dts: spear1340: Update serial node properties + - ARM: dts: spear13xx: Update SPI dma properties + - arm64: dts: ls1043a: Update i2c dma properties + - arm64: dts: ls1046a: Update i2c node dma properties + - um: Fix uml_mconsole stop/go + - docs: sysctl/kernel: add missing bit to panic_print + - openvswitch: Fixed nd target mask field in the flow dump. + - torture: Make torture.sh help message match reality + - n64cart: convert bi_disk to bi_bdev->bd_disk fix build + - mmc: rtsx: Let MMC core handle runtime PM + - mmc: rtsx: Fix build errors/warnings for unused variable + - KVM: x86/mmu: do compare-and-exchange of gPTE via the user address + - iommu/dma: Skip extra sync during unmap w/swiotlb + - iommu/dma: Fold _swiotlb helpers into callers + - iommu/dma: Check CONFIG_SWIOTLB more broadly + - swiotlb: Support aligned swiotlb buffers + - iommu/dma: Account for min_align_mask w/swiotlb + - coredump: Snapshot the vmas in do_coredump + - coredump: Remove the WARN_ON in dump_vma_snapshot + - coredump/elf: Pass coredump_params into fill_note_info + - coredump: Use the vma snapshot in fill_files_note + - PCI: xgene: Revert "PCI: xgene: Use inbound resources for setup" + - Linux 5.15.33 + * Jammy update: v5.15.32 upstream stable release (LP: #1969106) + - net: ipv6: fix skb_over_panic in __ip6_append_data + - tpm: Fix error handling in async work + - Bluetooth: btusb: Add another Realtek 8761BU + - llc: fix netdevice reference leaks in llc_ui_bind() + - ASoC: sti: Fix deadlock via snd_pcm_stop_xrun() call + - ALSA: oss: Fix PCM OSS buffer allocation overflow + - ALSA: usb-audio: add mapping for new Corsair Virtuoso SE + - ALSA: hda/realtek: Add quirk for Clevo NP70PNJ + - ALSA: hda/realtek: Add quirk for Clevo NP50PNJ + - ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc671 + - ALSA: hda/realtek: Add quirk for ASUS GA402 + - ALSA: pcm: Fix races among concurrent hw_params and hw_free calls + - ALSA: pcm: Fix races among concurrent read/write and buffer changes + - ALSA: pcm: Fix races among concurrent prepare and hw_params/hw_free calls + - ALSA: pcm: Fix races among concurrent prealloc proc writes + - ALSA: pcm: Add stream lock during PCM reset ioctl operations + - ALSA: usb-audio: Add mute TLV for playback volumes on RODE NT-USB + - ALSA: cmipci: Restore aux vol on suspend/resume + - ALSA: pci: fix reading of swapped values from pcmreg in AC97 codec + - drivers: net: xgene: Fix regression in CRC stripping + - ACPI / x86: Work around broken XSDT on Advantech DAC-BJ01 board + - ACPI: battery: Add device HID and quirk for Microsoft Surface Go 3 + - ACPI: video: Force backlight native for Clevo NL5xRU and NL5xNU + - crypto: qat - disable registration of algorithms + - Bluetooth: btusb: Add one more Bluetooth part for the Realtek RTL8852AE + - Revert "ath: add support for special 0x0 regulatory domain" + - drm/virtio: Ensure that objs is not NULL in virtio_gpu_array_put_free() + - rcu: Don't deboost before reporting expedited quiescent state + - uaccess: fix integer overflow on access_ok() + - mac80211: fix potential double free on mesh join + - tpm: use try_get_ops() in tpm-space.c + - wcn36xx: Differentiate wcn3660 from wcn3620 + - m68k: fix access_ok for coldfire + - nds32: fix access_ok() checks in get/put_user + - llc: only change llc->dev when bind() succeeds + - Linux 5.15.32 + * Jammy update: v5.15.31 upstream stable release (LP: #1969105) + - crypto: qcom-rng - ensure buffer for generate is completely filled + - ocfs2: fix crash when initialize filecheck kobj fails + - mm: swap: get rid of livelock in swapin readahead + - block: release rq qos structures for queue without disk + - drm/mgag200: Fix PLL setup for g200wb and g200ew + - efi: fix return value of __setup handlers + - alx: acquire mutex for alx_reinit in alx_change_mtu + - vsock: each transport cycles only on its own sockets + - esp6: fix check on ipv6_skip_exthdr's return value + - net: phy: marvell: Fix invalid comparison in the resume and suspend + functions + - net/packet: fix slab-out-of-bounds access in packet_recvmsg() + - atm: eni: Add check for dma_map_single + - iavf: Fix double free in iavf_reset_task + - hv_netvsc: Add check for kvmalloc_array + - drm/imx: parallel-display: Remove bus flags check in + imx_pd_bridge_atomic_check() + - drm/panel: simple: Fix Innolux G070Y2-L01 BPP settings + - net: handle ARPHRD_PIMREG in dev_is_mac_header_xmit() + - drm: Don't make DRM_PANEL_BRIDGE dependent on DRM_KMS_HELPERS + - net: dsa: Add missing of_node_put() in dsa_port_parse_of + - net: phy: mscc: Add MODULE_FIRMWARE macros + - bnx2x: fix built-in kernel driver load failure + - net: bcmgenet: skip invalid partial checksums + - net: mscc: ocelot: fix backwards compatibility with single-chain tc-flower + offload + - iavf: Fix hang during reboot/shutdown + - arm64: fix clang warning about TRAMP_VALIAS + - usb: gadget: rndis: prevent integer overflow in rndis_set_response() + - usb: gadget: Fix use-after-free bug by not setting udc->dev.driver + - usb: usbtmc: Fix bug in pipe direction for control transfers + - scsi: mpt3sas: Page fault in reply q processing + - Input: aiptek - properly check endpoint type + - perf symbols: Fix symbol size calculation condition + - btrfs: skip reserved bytes warning on unmount after log cleanup failure + - Linux 5.15.31 + + -- Tim Gardner Fri, 27 May 2022 06:54:43 -0600 + +linux-azure-5.15 (5.15.0-1007.8~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1007.8~20.04.1 -proposed tracker + (LP: #1973895) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.05.09) + + [ Ubuntu: 5.15.0-1007.8 ] + + * jammy/linux-azure: 5.15.0-1007.8 -proposed tracker (LP: #1973896) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + * Intel: enable x86 AMX (LP: #1967750) + - [Config] azure: updateconfigs after AMX patchset + * jammy/linux: 5.15.0-33.34 -proposed tracker (LP: #1973924) + * CVE-2022-29581 + - net/sched: cls_u32: fix netns refcount changes in u32_change() + * ext4: limit length to bitmap_maxbytes (LP: #1972281) + - ext4: limit length to bitmap_maxbytes - blocksize in punch_hole + * Unprivileged users may use PTRACE_SEIZE to set PTRACE_O_SUSPEND_SECCOMP + option (LP: #1972740) + - ptrace: Check PTRACE_O_SUSPEND_SECCOMP permission on PTRACE_SEIZE + * jammy/linux: 5.15.0-30.31 -proposed tracker (LP: #1971685) + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - debian/dkms-versions -- update from kernel-versions (main/2022.04.18) + * Intel: enable x86 AMX (LP: #1967750) + - x86/extable: Tidy up redundant handler functions + - x86/extable: Get rid of redundant macros + - x86/mce: Deduplicate exception handling + - x86/mce: Get rid of stray semicolons + - x86/extable: Rework the exception table mechanics + - x86/extable: Provide EX_TYPE_DEFAULT_MCE_SAFE and EX_TYPE_FAULT_MCE_SAFE + - x86/copy_mc: Use EX_TYPE_DEFAULT_MCE_SAFE for exception fixups + - x86/fpu: Use EX_TYPE_FAULT_MCE_SAFE for exception fixups + - x86/extable: Remove EX_TYPE_FAULT from MCE safe fixups + - x86/fpu/signal: Clarify exception handling in restore_fpregs_from_user() + - x86/fpu/signal: Move header zeroing out of xsave_to_user_sigframe() + - x86/fpu/signal: Move xstate clearing out of copy_fpregs_to_sigframe() + - x86/fpu/signal: Change return type of copy_fpstate_to_sigframe() to boolean + - x86/fpu/signal: Change return type of copy_fpregs_to_sigframe() helpers to + boolean + - x86/signal: Change return type of restore_sigcontext() to boolean + - x86/fpu/signal: Change return type of fpu__restore_sig() to boolean + - x86/fpu/signal: Change return type of __fpu_restore_sig() to boolean + - x86/fpu/signal: Change return code of check_xstate_in_sigframe() to boolean + - x86/fpu/signal: Change return code of restore_fpregs_from_user() to boolean + - x86/fpu/signal: Fix missed conversion to correct boolean retval in + save_xstate_epilog() + - x86/fpu: Remove pointless argument from switch_fpu_finish() + - x86/fpu: Update stale comments + - x86/pkru: Remove useless include + - x86/fpu: Restrict xsaves()/xrstors() to independent states + - x86/fpu: Cleanup the on_boot_cpu clutter + - x86/fpu: Remove pointless memset in fpu_clone() + - x86/process: Clone FPU in copy_thread() + - x86/fpu: Do not inherit FPU context for kernel and IO worker threads + - x86/fpu: Cleanup xstate xcomp_bv initialization + - x86/fpu/xstate: Provide and use for_each_xfeature() + - x86/fpu/xstate: Mark all init only functions __init + - x86/fpu: Move KVMs FPU swapping to FPU core + - x86/fpu: Replace KVMs home brewed FPU copy from user + - x86/fpu: Rework copy_xstate_to_uabi_buf() + - x86/fpu: Mark fpu__init_prepare_fx_sw_frame() as __init + - x86/fpu: Move context switch and exit to user inlines into sched.h + - x86/fpu: Clean up CPU feature tests + - x86/fpu: Make os_xrstor_booting() private + - x86/fpu: Move os_xsave() and os_xrstor() to core + - x86/fpu: Move legacy ASM wrappers to core + - x86/fpu: Make WARN_ON_FPU() private + - x86/fpu: Move fpregs_restore_userregs() to core + - x86/fpu: Move mxcsr related code to core + - x86/fpu: Move fpstate functions to api.h + - x86/fpu: Remove internal.h dependency from fpu/signal.h + - x86/sev: Include fpu/xcr.h + - x86/fpu: Mop up the internal.h leftovers + - x86/fpu: Replace the includes of fpu/internal.h + - x86/fpu: Provide a proper function for ex_handler_fprestore() + - x86/fpu: Replace KVMs home brewed FPU copy to user + - x86/fpu: Provide struct fpstate + - x86/fpu: Convert fpstate_init() to struct fpstate + - x86/fpu: Convert restore_fpregs_from_fpstate() to struct fpstate + - x86/fpu: Replace KVMs xstate component clearing + - x86/KVM: Convert to fpstate + - x86/fpu: Convert tracing to fpstate + - x86/fpu/regset: Convert to fpstate + - x86/fpu/signal: Convert to fpstate + - x86/fpu/core: Convert to fpstate + - x86/math-emu: Convert to fpstate + - x86/fpu: Remove fpu::state + - x86/fpu: Do not leak fpstate pointer on fork + - x86/process: Move arch_thread_struct_whitelist() out of line + - x86/fpu: Add size and mask information to fpstate + - x86/fpu: Use fpstate::size + - x86/fpu/xstate: Use fpstate for os_xsave() + - x86/fpu/xstate: Use fpstate for xsave_to_user_sigframe() + - x86/fpu: Use fpstate in fpu_copy_kvm_uabi_to_fpstate() + - x86/fpu: Use fpstate in __copy_xstate_to_uabi_buf() + - x86/fpu/xstate: Use fpstate for copy_uabi_to_xstate() + - x86/fpu/signal: Use fpstate for size and features + - x86/fpu: Provide struct fpu_config + - x86/fpu: Cleanup fpu__init_system_xstate_size_legacy() + - x86/fpu/xstate: Cleanup size calculations + - x86/fpu: Move xstate size to fpu_*_cfg + - x86/fpu: Move xstate feature masks to fpu_*_cfg + - x86/fpu: Mop up xfeatures_mask_uabi() + - x86/fpu: Rework restore_regs_from_fpstate() + - x86/fpu/xstate: Move remaining xfeature helpers to core + - x86/fpu: Prepare for sanitizing KVM FPU code + - x86/fpu: Provide infrastructure for KVM FPU cleanup + - x86/kvm: Convert FPU handling to a single swap buffer + - x86/fpu: Remove old KVM FPU interface + - signal: Add an optional check for altstack size + - x86/signal: Implement sigaltstack size validation + - x86/fpu/xstate: Provide xstate_calculate_size() + - x86/fpu: Add members to struct fpu to cache permission information + - x86/fpu: Add fpu_state_config::legacy_features + - x86/arch_prctl: Add controls for dynamic XSTATE components + - x86/fpu: Add basic helpers for dynamically enabled features + - x86/signal: Use fpu::__state_user_size for sigalt stack validation + - x86/fpu/signal: Prepare for variable sigframe length + - x86/fpu: Prepare fpu_clone() for dynamically enabled features + - x86/fpu: Reset permission and fpstate on exec() + - x86/cpufeatures: Add eXtended Feature Disabling (XFD) feature bit + - x86/msr-index: Add MSRs for XFD + - x86/fpu: Add XFD state to fpstate + - x86/fpu: Add sanity checks for XFD + - x86/fpu: Update XFD state where required + - x86/fpu/xstate: Add XFD #NM handler + - x86/fpu/xstate: Add fpstate_realloc()/free() + - x86/fpu/xstate: Prepare XSAVE feature table for gaps in state component + numbers + - x86/fpu/amx: Define AMX state components and have it used for boot-time + checks + - x86/fpu: Calculate the default sizes independently + - x86/fpu: Add XFD handling for dynamic states + - x86/fpu/amx: Enable the AMX feature in 64-bit mode + - selftests/x86/amx: Add test cases for AMX state management + - selftests/x86/amx: Add context switch test + - Documentation/x86: Add documentation for using dynamic XSTATE features + - x86/fpu/signal: Initialize sw_bytes in save_xstate_epilog() + - signal: Skip the altstack update when not needed + - x86/cpufeatures: Put the AMX macros in the word 18 block + - x86/fpu/xstate: Fix the ARCH_REQ_XCOMP_PERM implementation + - selftests/x86/amx: Update the ARCH_REQ_XCOMP_PERM test + - [Config] updateconfigs after AMX patchset + + -- Tim Gardner Thu, 19 May 2022 11:31:01 -0600 + +linux-azure-5.15 (5.15.0-1006.7~20.04.1) focal; urgency=medium + + * focal/linux-azure-5.15: 5.15.0-1006.7~20.04.1 -proposed tracker + (LP: #1971862) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - [Packaging] update Ubuntu.md + + * Miscellaneous Ubuntu changes + - [Packaging] Initial azure-5.15 packaging + + [ Ubuntu: 5.15.0-1006.7 ] + + * jammy/linux-azure: 5.15.0-1006.7 -proposed tracker (LP: #1971863) + * config CONFIG_HISI_PMU for kunpeng920 (LP: #1956086) + - [Config] azure: CONFIG_HISI_PMU=m + * linux: CONFIG_SERIAL_8250_MID=y (LP: #1967338) + - [Config] azure: CONFIG_SERIAL_8250_MID=y + * Support AMD P-State cpufreq control mechanism (LP: #1956509) // Enable + speakup kernel modules to allow the speakup screen reader to function + (LP: #1967702) + - [Config] azure: Update configs after rebase + * Azure: swiotlb patch needed for CVM (LP: #1971701) // [Azure][CVM] Fix + swiotlb_max_mapping_size() for potential bounce buffer allocation failure in + storvsc (LP: #1973169) + - SAUCE: swiotlb: Max mapping size takes min align mask into account + * Azure: swiotlb patch needed for CVM (LP: #1971701) + - SAUCE: treewide: Replace the use of mem_encrypt_active() with + cc_platform_has() + - SAUCE: swiotlb: use bitmap to track free slots + - SAUCE: swiotlb: allocate memory in a cache-friendly way + - SAUCE: swiotlb: Split up single swiotlb lock + * jammy/linux-azure: Update cifs to 5.15 backport (LP: #1970977) + - improve error message when mount options conflict with posix + - cifs: call cifs_reconnect when a connection is marked + - cifs: call helper functions for marking channels for reconnect + - cifs: mark sessions for reconnection in helper function + - treewide: Replace zero-length arrays with flexible-array members + - smb3: fix incorrect session setup check for multiuser mounts + - cifs: truncate the inode and mapping when we simulate fcollapse + - cifs: use a different reconnect helper for non-cifsd threads + - cifs: do not skip link targets when an I/O fails + - cifs: convert the path to utf16 in smb2_query_info_compound + - cifs: change smb2_query_info_compound to use a cached fid, if available + - cifs: fix bad fids sent over wire + - cifs: fix incorrect use of list iterator after the loop + - move more common protocol header definitions to smbfs_common + - smb3: move defines for ioctl protocol header and SMB2 sizes to smbfs_common + - smb3: move defines for query info and query fsinfo to smbfs_common + - smb3: cleanup and clarify status of tree connections + - smb3: fix ksmbd bigendian bug in oplock break, and move its struct to + smbfs_common + - fs: Remove ->readpages address space operation + - cifs: fix potential race with cifsd thread + - cifs: remove check of list iterator against head past the loop body + - cifs: force new session setup and tcon for dfs + - cifs: update internal module number + - cifs: Check the IOCB_DIRECT flag, not O_DIRECT + - cifs: Split the smb3_add_credits tracepoint + - cifs: Use kzalloc instead of kmalloc/memset + - cifs: fix NULL ptr dereference in refresh_mounts() + - cifs: use correct lock type in cifs_reconnect() + - cifs: destage any unwritten data to the server before calling + copychunk_write + * [Azure] PCI: hv: Do not set PCI_COMMAND_MEMORY to reduce VM boot time + (LP: #1972662) + - PCI: hv: Do not set PCI_COMMAND_MEMORY to reduce VM boot time + * Jammy/linux-azure: CONFIG_BLK_DEV_FD=n (LP: #1972017) + - [Config] azure: CONFIG_BLK_DEV_FD=n + * [Azure] hv_netvsc: Add support for XDP_REDIRECT (LP: #1972832) + - hv_netvsc: Add comment of netvsc_xdp_xmit() + - hv_netvsc: Add support for XDP_REDIRECT + * linux-azure: Patch Set for ARM64 Images 20.04 and 18.04 (LP: #1970468) + - Drivers: hv: balloon: Support status report for larger page sizes + * jammy/linux: 5.15.0-32.33 -proposed tracker (LP: #1972668) + * ext4: limit length to bitmap_maxbytes (LP: #1972281) + - ext4: limit length to bitmap_maxbytes - blocksize in punch_hole + * AMD APU s2idle is broken after the ASIC reset fix (LP: #1972134) + - drm/amdgpu: unify BO evicting method in amdgpu_ttm + - drm/amdgpu: explicitly check for s0ix when evicting resources + * jammy/linux: 5.15.0-31.32 -proposed tracker (LP: #1971890) + * amd_gpio AMDI0030:00: Failed to translate GPIO pin 0x0000 to IRQ, err -517 + (LP: #1971597) + - gpio: Request interrupts after IRQ is initialized + * config CONFIG_HISI_PMU for kunpeng920 (LP: #1956086) + - [Config] CONFIG_HISI_PMU=m + * Mute/mic LEDs no function on EliteBook G9 platfroms (LP: #1970552) + - ALSA: hda/realtek: Enable mute/micmute LEDs support for HP Laptops + * network-manager/1.36.4-2ubuntu1 ADT test failure with linux/5.15.0-28.29 + (LP: #1971418) + - Revert "rfkill: make new event layout opt-in" + * PCIE LnkCtl ASPM not enabled under VMD mode for Alder Lake platforms + (LP: #1942160) + - SAUCE: vmd: fixup bridge ASPM by driver name instead + * Mute/mic LEDs no function on HP EliteBook 845/865 G9 (LP: #1970178) + - ALSA: hda/realtek: Enable mute/micmute LEDs and limit mic boost on EliteBook + 845/865 G9 + * Enable headset mic on Lenovo P360 (LP: #1967069) + - ALSA: hda/realtek: Enable headset mic on Lenovo P360 + * WCN6856 BT keep in OFF state after coldboot system (LP: #1967067) + - Bluetooth: btusb: Improve stability for QCA devices + * Screen sometimes can't update on Intel Alder Lake GPUs [Failed to post KMS + update: CRTC property (GAMMA_LUT) not found] (LP: #1967274) + - drm/i915/xelpd: Enable Pipe color support for D13 platform + - drm/i915: Use unlocked register accesses for LUT loads + - drm/i915/xelpd: Enable Pipe Degamma + - drm/i915/xelpd: Add Pipe Color Lut caps to platform config + * Jammy update: v5.15.35 upstream stable release (LP: #1969857) + - drm/amd/display: Add pstate verification and recovery for DCN31 + - drm/amd/display: Fix p-state allow debug index on dcn31 + - hamradio: defer 6pack kfree after unregister_netdev + - hamradio: remove needs_free_netdev to avoid UAF + - cpuidle: PSCI: Move the `has_lpi` check to the beginning of the function + - ACPI: processor idle: Check for architectural support for LPI + - ACPI: processor: idle: fix lockup regression on 32-bit ThinkPad T40 + - btrfs: remove unused parameter nr_pages in add_ra_bio_pages() + - btrfs: remove no longer used counter when reading data page + - btrfs: remove unused variable in btrfs_{start,write}_dirty_block_groups() + - soc: qcom: aoss: Expose send for generic usecase + - dt-bindings: net: qcom,ipa: add optional qcom,qmp property + - net: ipa: request IPA register values be retained + - btrfs: release correct delalloc amount in direct IO write path + - ALSA: core: Add snd_card_free_on_error() helper + - ALSA: sis7019: Fix the missing error handling + - ALSA: ali5451: Fix the missing snd_card_free() call at probe error + - ALSA: als300: Fix the missing snd_card_free() call at probe error + - ALSA: als4000: Fix the missing snd_card_free() call at probe error + - ALSA: atiixp: Fix the missing snd_card_free() call at probe error + - ALSA: au88x0: Fix the missing snd_card_free() call at probe error + - ALSA: aw2: Fix the missing snd_card_free() call at probe error + - ALSA: azt3328: Fix the missing snd_card_free() call at probe error + - ALSA: bt87x: Fix the missing snd_card_free() call at probe error + - ALSA: ca0106: Fix the missing snd_card_free() call at probe error + - ALSA: cmipci: Fix the missing snd_card_free() call at probe error + - ALSA: cs4281: Fix the missing snd_card_free() call at probe error + - ALSA: cs5535audio: Fix the missing snd_card_free() call at probe error + - ALSA: echoaudio: Fix the missing snd_card_free() call at probe error + - ALSA: emu10k1x: Fix the missing snd_card_free() call at probe error + - ALSA: ens137x: Fix the missing snd_card_free() call at probe error + - ALSA: es1938: Fix the missing snd_card_free() call at probe error + - ALSA: es1968: Fix the missing snd_card_free() call at probe error + - ALSA: fm801: Fix the missing snd_card_free() call at probe error + - ALSA: galaxy: Fix the missing snd_card_free() call at probe error + - ALSA: hdsp: Fix the missing snd_card_free() call at probe error + - ALSA: hdspm: Fix the missing snd_card_free() call at probe error + - ALSA: ice1724: Fix the missing snd_card_free() call at probe error + - ALSA: intel8x0: Fix the missing snd_card_free() call at probe error + - ALSA: intel_hdmi: Fix the missing snd_card_free() call at probe error + - ALSA: korg1212: Fix the missing snd_card_free() call at probe error + - ALSA: lola: Fix the missing snd_card_free() call at probe error + - ALSA: lx6464es: Fix the missing snd_card_free() call at probe error + - ALSA: maestro3: Fix the missing snd_card_free() call at probe error + - ALSA: oxygen: Fix the missing snd_card_free() call at probe error + - ALSA: riptide: Fix the missing snd_card_free() call at probe error + - ALSA: rme32: Fix the missing snd_card_free() call at probe error + - ALSA: rme9652: Fix the missing snd_card_free() call at probe error + - ALSA: rme96: Fix the missing snd_card_free() call at probe error + - ALSA: sc6000: Fix the missing snd_card_free() call at probe error + - ALSA: sonicvibes: Fix the missing snd_card_free() call at probe error + - ALSA: via82xx: Fix the missing snd_card_free() call at probe error + - ALSA: usb-audio: Cap upper limits of buffer/period bytes for implicit fb + - ALSA: nm256: Don't call card private_free at probe error path + - drm/msm: Add missing put_task_struct() in debugfs path + - firmware: arm_scmi: Remove clear channel call on the TX channel + - memory: atmel-ebi: Fix missing of_node_put in atmel_ebi_probe + - Revert "ath11k: mesh: add support for 256 bitmap in blockack frames in 11ax" + - firmware: arm_scmi: Fix sorting of retrieved clock rates + - media: rockchip/rga: do proper error checking in probe + - SUNRPC: Fix the svc_deferred_event trace class + - net/sched: flower: fix parsing of ethertype following VLAN header + - veth: Ensure eth header is in skb's linear part + - gpiolib: acpi: use correct format characters + - cifs: release cached dentries only if mount is complete + - net: mdio: don't defer probe forever if PHY IRQ provider is missing + - mlxsw: i2c: Fix initialization error flow + - net/sched: fix initialization order when updating chain 0 head + - net: dsa: felix: suppress -EPROBE_DEFER errors + - net: ethernet: stmmac: fix altr_tse_pcs function when using a fixed-link + - net/sched: taprio: Check if socket flags are valid + - cfg80211: hold bss_lock while updating nontrans_list + - netfilter: nft_socket: make cgroup match work in input too + - drm/msm: Fix range size vs end confusion + - drm/msm/dsi: Use connector directly in msm_dsi_manager_connector_init() + - drm/msm/dp: add fail safe mode outside of event_mutex context + - net/smc: Fix NULL pointer dereference in smc_pnet_find_ib() + - scsi: pm80xx: Mask and unmask upper interrupt vectors 32-63 + - scsi: pm80xx: Enable upper inbound, outbound queues + - scsi: iscsi: Move iscsi_ep_disconnect() + - scsi: iscsi: Fix offload conn cleanup when iscsid restarts + - scsi: iscsi: Fix endpoint reuse regression + - scsi: iscsi: Fix conn cleanup and stop race during iscsid restart + - scsi: iscsi: Fix unbound endpoint error handling + - sctp: Initialize daddr on peeled off socket + - netfilter: nf_tables: nft_parse_register can return a negative value + - ALSA: ad1889: Fix the missing snd_card_free() call at probe error + - ALSA: mtpav: Don't call card private_free at probe error path + - io_uring: move io_uring_rsrc_update2 validation + - io_uring: verify that resv2 is 0 in io_uring_rsrc_update2 + - io_uring: verify pad field is 0 in io_get_ext_arg + - testing/selftests/mqueue: Fix mq_perf_tests to free the allocated cpu set + - ALSA: usb-audio: Increase max buffer size + - ALSA: usb-audio: Limit max buffer and period sizes per time + - perf tools: Fix misleading add event PMU debug message + - macvlan: Fix leaking skb in source mode with nodst option + - net: ftgmac100: access hardware register after clock ready + - nfc: nci: add flush_workqueue to prevent uaf + - cifs: potential buffer overflow in handling symlinks + - dm mpath: only use ktime_get_ns() in historical selector + - vfio/pci: Fix vf_token mechanism when device-specific VF drivers are used + - net: bcmgenet: Revert "Use stronger register read/writes to assure ordering" + - block: fix offset/size check in bio_trim() + - drm/amd: Add USBC connector ID + - btrfs: fix fallocate to use file_modified to update permissions consistently + - btrfs: do not warn for free space inode in cow_file_range + - drm/amdgpu: conduct a proper cleanup of PDB bo + - drm/amdgpu/gmc: use PCI BARs for APUs in passthrough + - drm/amd/display: fix audio format not updated after edid updated + - drm/amd/display: FEC check in timing validation + - drm/amd/display: Update VTEM Infopacket definition + - drm/amdkfd: Fix Incorrect VMIDs passed to HWS + - drm/amdgpu/vcn: improve vcn dpg stop procedure + - drm/amdkfd: Check for potential null return of kmalloc_array() + - Drivers: hv: vmbus: Deactivate sysctl_record_panic_msg by default in + isolated guests + - PCI: hv: Propagate coherence from VMbus device to PCI device + - Drivers: hv: vmbus: Prevent load re-ordering when reading ring buffer + - scsi: target: tcmu: Fix possible page UAF + - scsi: lpfc: Fix queue failures when recovering from PCI parity error + - scsi: ibmvscsis: Increase INITIAL_SRP_LIMIT to 1024 + - net: micrel: fix KS8851_MLL Kconfig + - ata: libata-core: Disable READ LOG DMA EXT for Samsung 840 EVOs + - gpu: ipu-v3: Fix dev_dbg frequency output + - regulator: wm8994: Add an off-on delay for WM8994 variant + - arm64: alternatives: mark patch_alternative() as `noinstr` + - tlb: hugetlb: Add more sizes to tlb_remove_huge_tlb_entry + - net: axienet: setup mdio unconditionally + - Drivers: hv: balloon: Disable balloon and hot-add accordingly + - net: usb: aqc111: Fix out-of-bounds accesses in RX fixup + - myri10ge: fix an incorrect free for skb in myri10ge_sw_tso + - spi: cadence-quadspi: fix protocol setup for non-1-1-X operations + - drm/amd/display: Enable power gating before init_pipes + - drm/amd/display: Revert FEC check in validation + - drm/amd/display: Fix allocate_mst_payload assert on resume + - drbd: set QUEUE_FLAG_STABLE_WRITES + - scsi: mpt3sas: Fail reset operation if config request timed out + - scsi: mvsas: Add PCI ID of RocketRaid 2640 + - scsi: megaraid_sas: Target with invalid LUN ID is deleted during scan + - drivers: net: slip: fix NPD bug in sl_tx_timeout() + - io_uring: zero tag on rsrc removal + - io_uring: use nospec annotation for more indexes + - perf/imx_ddr: Fix undefined behavior due to shift overflowing the constant + - mm/secretmem: fix panic when growing a memfd_secret + - mm, page_alloc: fix build_zonerefs_node() + - mm: fix unexpected zeroed page mapping with zram swap + - mm: kmemleak: take a full lowmem check in kmemleak_*_phys() + - KVM: x86/mmu: Resolve nx_huge_pages when kvm.ko is loaded + - SUNRPC: Fix NFSD's request deferral on RDMA transports + - memory: renesas-rpc-if: fix platform-device leak in error path + - gcc-plugins: latent_entropy: use /dev/urandom + - cifs: verify that tcon is valid before dereference in cifs_kill_sb + - ath9k: Properly clear TX status area before reporting to mac80211 + - ath9k: Fix usage of driver-private space in tx_info + - btrfs: fix root ref counts in error handling in btrfs_get_root_ref + - btrfs: mark resumed async balance as writing + - ALSA: hda/realtek: Add quirk for Clevo PD50PNT + - ALSA: hda/realtek: add quirk for Lenovo Thinkpad X12 speakers + - ALSA: pcm: Test for "silence" field in struct "pcm_format_data" + - nl80211: correctly check NL80211_ATTR_REG_ALPHA2 size + - ipv6: fix panic when forwarding a pkt with no in6 dev + - drm/amd/display: don't ignore alpha property on pre-multiplied mode + - drm/amdgpu: Enable gfxoff quirk on MacBook Pro + - x86/tsx: Use MSR_TSX_CTRL to clear CPUID bits + - x86/tsx: Disable TSX development mode at boot + - genirq/affinity: Consider that CPUs on nodes can be unbalanced + - tick/nohz: Use WARN_ON_ONCE() to prevent console saturation + - ARM: davinci: da850-evm: Avoid NULL pointer dereference + - dm integrity: fix memory corruption when tag_size is less than digest size + - i2c: dev: check return value when calling dev_set_name() + - smp: Fix offline cpu check in flush_smp_call_function_queue() + - i2c: pasemi: Wait for write xfers to finish + - dt-bindings: net: snps: remove duplicate name + - timers: Fix warning condition in __run_timers() + - dma-direct: avoid redundant memory sync for swiotlb + - drm/i915: Sunset igpu legacy mmap support based on GRAPHICS_VER_FULL + - cpu/hotplug: Remove the 'cpu' member of cpuhp_cpu_state + - soc: qcom: aoss: Fix missing put_device call in qmp_get + - net: ipa: fix a build dependency + - cpufreq: intel_pstate: ITMT support for overclocked system + - ax25: add refcount in ax25_dev to avoid UAF bugs + - ax25: fix reference count leaks of ax25_dev + - ax25: fix UAF bugs of net_device caused by rebinding operation + - ax25: Fix refcount leaks caused by ax25_cb_del() + - ax25: fix UAF bug in ax25_send_control() + - ax25: fix NPD bug in ax25_disconnect + - ax25: Fix NULL pointer dereferences in ax25 timers + - ax25: Fix UAF bugs in ax25 timers + - Linux 5.15.35 + * CONFIG_SND_COMPRESS_OFFLOAD missing in jammy/ppc64el kernel config + (LP: #1969807) + - [Config] updateconfigs for SND_COMPRESS_OFFLOAD (ppc64el) + * Micmute LED support for Zbook Fury 16 G9 (LP: #1968892) + - ALSA: hda/realtek: Add mute and micmut LED support for Zbook Fury 17 G9 + * Fix broken HDMI audio on AMD PRO VII after S3 (LP: #1968475) + - drm/amdgpu: don't set s3 and s0ix at the same time + - drm/amdgpu: Ensure HDA function is suspended before ASIC reset + * [Ubuntu 22.04] mpi3mr: Request to include latest bug fixes (LP: #1967116) + - scsi: mpi3mr: Clean up mpi3mr_print_ioc_info() + - scsi: mpi3mr: Use scnprintf() instead of snprintf() + - scsi: mpi3mr: Add debug APIs based on logging_level bits + - scsi: mpi3mr: Replace spin_lock() with spin_lock_irqsave() + - scsi: mpi3mr: Don't reset IOC if cmnds flush with reset status + - scsi: mpi3mr: Update MPI3 headers - part1 + - scsi: mpi3mr: Update MPI3 headers - part2 + - scsi: mpi3mr: Add support for PCIe Managed Switch SES device + - scsi: mpi3mr: Do access status validation before adding devices + - scsi: mpi3mr: Increase internal cmnds timeout to 60s + - scsi: mpi3mr: Handle unaligned PLL in unmap cmnds + - scsi: mpi3mr: Display IOC firmware package version + - scsi: mpi3mr: Fault IOC when internal command gets timeout + - scsi: mpi3mr: Code refactor of IOC init - part1 + - scsi: mpi3mr: Code refactor of IOC init - part2 + - scsi: mpi3mr: Handle offline FW activation in graceful manner + - scsi: mpi3mr: Add IOC reinit function + - scsi: mpi3mr: Detect async reset that occurred in firmware + - scsi: mpi3mr: Gracefully handle online FW update operation + - scsi: mpi3mr: Add Event acknowledgment logic + - scsi: mpi3mr: Support Prepare for Reset event + - scsi: mpi3mr: Print cable mngnt and temp threshold events + - scsi: mpi3mr: Add io_uring interface support in I/O-polled mode + - scsi: mpi3mr: Use TM response codes from MPI3 headers + - scsi: mpi3mr: Enhanced Task Management Support Reply handling + - scsi: mpi3mr: Bump driver version to 8.0.0.61.0 + - scsi: mpi3mr: Fix some spelling mistakes + - scsi: mpi3mr: Fix formatting problems in some kernel-doc comments + - scsi: mpi3mr: Fix deadlock while canceling the fw event + - scsi: mpi3mr: Fix printing of pending I/O count + - scsi: mpi3mr: Update MPI3 headers + - scsi: mpi3mr: Fix hibernation issue + - scsi: mpi3mr: Fix cmnd getting marked as in use forever + - scsi: mpi3mr: Update the copyright year + - scsi: mpi3mr: Bump driver version to 8.0.0.68.0 + - scsi: mpi3mr: Fix flushing !WQ_MEM_RECLAIM events warning + * Support AMD P-State cpufreq control mechanism (LP: #1956509) + - x86/cpufeatures: Add AMD Collaborative Processor Performance Control feature + flag + - x86/msr: Add AMD CPPC MSR definitions + - ACPI: CPPC: Implement support for SystemIO registers + - ACPI: CPPC: Add CPPC enable register function + - cpufreq: amd-pstate: Introduce a new AMD P-State driver to support future + processors + - cpufreq: amd-pstate: Add fast switch function for AMD P-State + - cpufreq: amd-pstate: Introduce the support for the processors with shared + memory solution + - cpufreq: amd-pstate: Add trace for AMD P-State module + - cpufreq: amd-pstate: Add boost mode support for AMD P-State + - cpufreq: amd-pstate: Add AMD P-State frequencies attributes + - cpufreq: amd-pstate: Add AMD P-State performance attributes + - Documentation: amd-pstate: Add AMD P-State driver introduction + - MAINTAINERS: Add AMD P-State driver maintainer entry + - cpufreq: amd-pstate: Fix struct amd_cpudata kernel-doc comment + - cpufreq: amd-pstate: Fix Kconfig dependencies for AMD P-State + - [Config] enable X86_AMD_PSTATE as built-in on amd64 + * Bolt doesn't work with native USB4 hosts (LP: #1962349) + - thunderbolt: Retry DROM reads for more failure scenarios + - thunderbolt: Do not resume routers if UID is not set + - thunderbolt: Do not make DROM read success compulsory + - PCI/ACPI: Allow D3 only if Root Port can signal and wake from D3 + * linux-image-5.0.0-35-generic breaks checkpointing of container + (LP: #1857257) // re-apply missing overlayfs SAUCE patch (LP: #1967924) + - SAUCE: overlayfs: fix incorrect mnt_id of files opened from map_files + * [Jammy, mlx5, ConnectX-7] add CX7 support for software steering + (LP: #1966194) + - net/mlx5: DR, Fix vport number data type to u16 + - net/mlx5: DR, Replace local WIRE_PORT macro with the existing + MLX5_VPORT_UPLINK + - net/mlx5: DR, Add missing query for vport 0 + - net/mlx5: DR, Align error messages for failure to obtain vport caps + - net/mlx5: DR, Support csum recalculation flow table on SFs + - net/mlx5: DR, Add support for SF vports + - net/mlx5: DR, Increase supported num of actions to 32 + - net/mlx5: DR, Fix typo 'offeset' to 'offset' + - net/mlx5: DR, init_next_match only if needed + - net/mlx5: DR, Add missing string for action type SAMPLER + - net/mlx5: DR, Add check for unsupported fields in match param + - net/mlx5: Introduce new uplink destination type + - net/mlx5: DR, Handle eswitch manager and uplink vports separately + - net/mlx5: DR, Fix querying eswitch manager vport for ECPF + - net/mlx5: DR, Fix check for unsupported fields in match param + - net/mlx5: DR, Fix error flow in creating matcher + - net/mlx5: DR, Fix lower case macro prefix "mlx5_" to "MLX5_" + - net/mlx5: DR, Remove unused struct member in matcher + - net/mlx5: DR, Rename list field in matcher struct to list_node + - net/mlx5: DR, Add check for flex parser ID value + - net/mlx5: DR, Add missing reserved fields to dr_match_param + - net/mlx5: DR, Add support for dumping steering info + - net/mlx5: DR, Add support for UPLINK destination type + - net/mlx5: DR, Warn on failure to destroy objects due to refcount + - net/mlx5: Add misc5 flow table match parameters + - net/mlx5: DR, Add misc5 to match_param structs + - net/mlx5: DR, Support matching on tunnel headers 0 and 1 + - net/mlx5: DR, Add support for matching on geneve_tlv_option_0_exist field + - net/mlx5: DR, Improve steering for empty or RX/TX-only matchers + - net/mlx5: DR, Ignore modify TTL if device doesn't support it + - net/mlx5: Set SMFS as a default steering mode if device supports it + - net/mlx5: DR, Fix slab-out-of-bounds in mlx5_cmd_dr_create_fte + - net/mlx5: DR, Add support for matching on Internet Header Length (IHL) + - net/mlx5: DR, Remove unneeded comments + - net/mlx5: DR, Fix handling of different actions on the same STE in STEv1 + - net/mlx5: DR, Rename action modify fields to reflect naming in HW spec + - net/mlx5: DR, Refactor ste_ctx handling for STE v0/1 + - net/mlx5: Introduce software defined steering capabilities + - net/mlx5: DR, Add support for ConnectX-7 steering + * alsa: enable the cirrus-logic side-codec to make the speaker output sound + (LP: #1965496) + - ASoC: cs35l41: CS35L41 Boosted Smart Amplifier + - ASoC: cs35l41: Fix use of an uninitialised variable + - ASoC: cs35l41: Use regmap_read_poll_timeout to wait for OTP boot + - ASoC: cs35l41: Combine adjacent register writes + - ASoC: cs35l41: Don't overwrite returned error code + - ASoC: cs35l41: Fixup the error messages + - ASoC: cs35l41: Fix a bunch of trivial code formating/style issues + - misc: cs35l41: Remove unused pdn variable + - ASoC: cs35l41: Make cs35l41_remove() return void + - ASoC: cs35l41: Change monitor widgets to siggens + - ASoC: cs35l41: DSP Support + - ASoC: cs35l41: Set the max SPI speed for the whole device + - ASoC: cs35l41: Fix link problem + - ASoC: cs35l41: Fix undefined reference to core functions + - ASoC: cs35l41: Convert tables to shared source code + - ASoC: cs35l41: Move cs35l41_otp_unpack to shared code + - ASoC: cs35l41: Move power initializations to reg_sequence + - ASoC: cs35l41: Create shared function for errata patches + - ASoC: cs35l41: Create shared function for setting channels + - ASoC: cs35l41: Create shared function for boost configuration + - ASoC: cs35l41: Add cs35l51/53 IDs + - ASoC: cs35l41: Remove incorrect comment + - ASoC: cs35l41: Correct DSP power down + - ASoC: cs35l41: Correct handling of some registers in the cache + - ALSA: hda: cs35l41: Add support for CS35L41 in HDA systems + - ASoC: cs35l41: Update handling of test key registers + - ASoC: cs35l41: Add support for hibernate memory retention mode + - ALSA: hda: cs35l41: fix double free on error in probe() + - ALSA: hda: cs35l41: Avoid overwriting register patch + - ALSA: hda: cs35l41: Add calls to newly added test key function + - ALSA: hda: cs35l41: Move cs35l41* calls to its own symbol namespace + - ALSA: hda: cs35l41: Add missing default cases + - ALSA: hda: cs35l41: Make use of the helper function dev_err_probe() + - ALSA: hda: cs35l41: Tidyup code + - ALSA: hda: cs35l41: Make cs35l41_hda_remove() return void + - ALSA: hda/realtek: Add support for Legion 7 16ACHg6 laptop + - ALSA: hda/realtek: Add CS35L41 support for Thinkpad laptops + - ALSA: hda/realtek: fix speakers and micmute on HP 855 G8 + - Revert "platform/x86: i2c-multi-instantiate: Don't create platform device + for INT3515 ACPI nodes" + - spi: Create helper API to lookup ACPI info for spi device + - spi: Support selection of the index of the ACPI Spi Resource before alloc + - spi: Add API to count spi acpi resources + - platform/x86: i2c-multi-instantiate: Rename it for a generic serial driver + name + - platform/x86: serial-multi-instantiate: Reorganize I2C functions + - platform/x86: serial-multi-instantiate: Add SPI support + - ALSA: hda/realtek: Add support for HP Laptops + - ACPI / scan: Create platform device for CS35L41 + - [Config] Add cirruslogic side codec support + * Use kernel-testing repo from launchpad for ADT tests (LP: #1968016) + - [Debian] Use kernel-testing repo from launchpad + * Fix ADL, WD22TB4,Dual monitors display resolution can't reach 4K 60hz + (LP: #1967986) + - drm/i915/display: Remove check for low voltage sku for max dp source rate + - drm/i915/intel_combo_phy: Print I/O voltage info + * Support different Cirrus audio codec configurations on Dell laptops + (LP: #1967988) + - ALSA: hda/cs8409: Fix Warlock to use mono mic configuration + - ALSA: hda/cs8409: Re-order quirk table into ascending order + - ALSA: hda/cs8409: Fix Full Scale Volume setting for all variants + - ALSA: hda/cs8409: Support new Warlock MLK Variants + - ALSA: hda/cs8409: Disable HSBIAS_SENSE_EN for Cyborg + - ALSA: hda/cs8409: Add new Dolphin HW variants + * Enable speakup kernel modules to allow the speakup screen reader to function + (LP: #1967702) + - [Config] CONFIG_SPEAKUP=m + * linux: CONFIG_SERIAL_8250_MID=y (LP: #1967338) + - [Config] amd64 CONFIG_SERIAL_8250_MID=y + * alsa/sdw: Fix the audio issue on a Dell machine without internal mic + (LP: #1966841) + - ASoC: Intel: soc-acpi: add entries in ADL match table + * Jammy update: v5.15.34 upstream stable release (LP: #1969107) + - Revert "UBUNTU: SAUCE: Revert "scsi: core: Reallocate device's budget map on + queue depth change"" + - lib/logic_iomem: correct fallback config references + - um: fix and optimize xor select template for CONFIG64 and timetravel mode + - rtc: wm8350: Handle error for wm8350_register_irq + - nbd: add error handling support for add_disk() + - nbd: Fix incorrect error handle when first_minor is illegal in nbd_dev_add + - nbd: Fix hungtask when nbd_config_put + - nbd: fix possible overflow on 'first_minor' in nbd_dev_add() + - kfence: count unexpectedly skipped allocations + - kfence: move saving stack trace of allocations into __kfence_alloc() + - kfence: limit currently covered allocations when pool nearly full + - KVM: x86/pmu: Use different raw event masks for AMD and Intel + - KVM: SVM: Fix kvm_cache_regs.h inclusions for is_guest_mode() + - KVM: x86/svm: Clear reserved bits written to PerfEvtSeln MSRs + - KVM: x86/pmu: Fix and isolate TSX-specific performance event logic + - KVM: x86/emulator: Emulate RDPID only if it is enabled in guest + - drm: Add orientation quirk for GPD Win Max + - ath5k: fix OOB in ath5k_eeprom_read_pcal_info_5111 + - drm/amd/display: Add signal type check when verify stream backends same + - drm/amd/amdgpu/amdgpu_cs: fix refcount leak of a dma_fence obj + - drm/amd/display: Fix memory leak + - drm/amd/display: Use PSR version selected during set_psr_caps + - usb: gadget: tegra-xudc: Do not program SPARAM + - usb: gadget: tegra-xudc: Fix control endpoint's definitions + - usb: cdnsp: fix cdnsp_decode_trb function to properly handle ret value + - ptp: replace snprintf with sysfs_emit + - drm/amdkfd: Don't take process mutex for svm ioctls + - powerpc: dts: t104xrdb: fix phy type for FMAN 4/5 + - ath11k: fix kernel panic during unload/load ath11k modules + - ath11k: pci: fix crash on suspend if board file is not found + - ath11k: mhi: use mhi_sync_power_up() + - net/smc: Send directly when TCP_CORK is cleared + - drm/bridge: Add missing pm_runtime_put_sync + - bpf: Make dst_port field in struct bpf_sock 16-bit wide + - scsi: mvsas: Replace snprintf() with sysfs_emit() + - scsi: bfa: Replace snprintf() with sysfs_emit() + - drm/v3d: fix missing unlock + - power: supply: axp20x_battery: properly report current when discharging + - mt76: mt7921: fix crash when startup fails. + - mt76: dma: initialize skip_unmap in mt76_dma_rx_fill + - cfg80211: don't add non transmitted BSS to 6GHz scanned channels + - libbpf: Fix build issue with llvm-readelf + - ipv6: make mc_forwarding atomic + - net: initialize init_net earlier + - powerpc: Set crashkernel offset to mid of RMA region + - drm/amdgpu: Fix recursive locking warning + - scsi: smartpqi: Fix kdump issue when controller is locked up + - PCI: aardvark: Fix support for MSI interrupts + - iommu/arm-smmu-v3: fix event handling soft lockup + - usb: ehci: add pci device support for Aspeed platforms + - PCI: endpoint: Fix alignment fault error in copy tests + - tcp: Don't acquire inet_listen_hashbucket::lock with disabled BH. + - PCI: pciehp: Add Qualcomm quirk for Command Completed erratum + - scsi: mpi3mr: Fix reporting of actual data transfer size + - scsi: mpi3mr: Fix memory leaks + - powerpc/set_memory: Avoid spinlock recursion in change_page_attr() + - power: supply: axp288-charger: Set Vhold to 4.4V + - net/mlx5e: Disable TX queues before registering the netdev + - usb: dwc3: pci: Set the swnode from inside dwc3_pci_quirks() + - iwlwifi: mvm: Correctly set fragmented EBS + - iwlwifi: mvm: move only to an enabled channel + - drm/msm/dsi: Remove spurious IRQF_ONESHOT flag + - ipv4: Invalidate neighbour for broadcast address upon address addition + - dm ioctl: prevent potential spectre v1 gadget + - dm: requeue IO if mapping table not yet available + - drm/amdkfd: make CRAT table missing message informational only + - vfio/pci: Stub vfio_pci_vga_rw when !CONFIG_VFIO_PCI_VGA + - scsi: pm8001: Fix pm80xx_pci_mem_copy() interface + - scsi: pm8001: Fix pm8001_mpi_task_abort_resp() + - scsi: pm8001: Fix task leak in pm8001_send_abort_all() + - scsi: pm8001: Fix tag leaks on error + - scsi: pm8001: Fix memory leak in pm8001_chip_fw_flash_update_req() + - mt76: mt7915: fix injected MPDU transmission to not use HW A-MSDU + - powerpc/64s/hash: Make hash faults work in NMI context + - mt76: mt7615: Fix assigning negative values to unsigned variable + - scsi: aha152x: Fix aha152x_setup() __setup handler return value + - scsi: hisi_sas: Free irq vectors in order for v3 HW + - scsi: hisi_sas: Limit users changing debugfs BIST count value + - net/smc: correct settings of RMB window update limit + - mips: ralink: fix a refcount leak in ill_acc_of_setup() + - macvtap: advertise link netns via netlink + - tuntap: add sanity checks about msg_controllen in sendmsg + - Bluetooth: Fix not checking for valid hdev on bt_dev_{info,warn,err,dbg} + - Bluetooth: use memset avoid memory leaks + - bnxt_en: Eliminate unintended link toggle during FW reset + - PCI: endpoint: Fix misused goto label + - MIPS: fix fortify panic when copying asm exception handlers + - powerpc/64e: Tie PPC_BOOK3E_64 to PPC_FSL_BOOK3E + - powerpc/secvar: fix refcount leak in format_show() + - scsi: libfc: Fix use after free in fc_exch_abts_resp() + - can: isotp: set default value for N_As to 50 micro seconds + - can: etas_es58x: es58x_fd_rx_event_msg(): initialize rx_event_msg before + calling es58x_check_msg_len() + - riscv: Fixed misaligned memory access. Fixed pointer comparison. + - net: account alternate interface name memory + - net: limit altnames to 64k total + - net/mlx5e: Remove overzealous validations in netlink EEPROM query + - net: sfp: add 2500base-X quirk for Lantech SFP module + - usb: dwc3: omap: fix "unbalanced disables for smps10_out1" on omap5evm + - mt76: fix monitor mode crash with sdio driver + - xtensa: fix DTC warning unit_address_format + - MIPS: ingenic: correct unit node address + - Bluetooth: Fix use after free in hci_send_acl + - netfilter: conntrack: revisit gc autotuning + - netlabel: fix out-of-bounds memory accesses + - ceph: fix inode reference leakage in ceph_get_snapdir() + - ceph: fix memory leak in ceph_readdir when note_last_dentry returns error + - lib/Kconfig.debug: add ARCH dependency for FUNCTION_ALIGN option + - init/main.c: return 1 from handled __setup() functions + - minix: fix bug when opening a file with O_DIRECT + - clk: si5341: fix reported clk_rate when output divider is 2 + - staging: vchiq_arm: Avoid NULL ptr deref in vchiq_dump_platform_instances + - staging: vchiq_core: handle NULL result of find_service_by_handle + - phy: amlogic: phy-meson-gxl-usb2: fix shared reset controller use + - phy: amlogic: meson8b-usb2: Use dev_err_probe() + - phy: amlogic: meson8b-usb2: fix shared reset control use + - clk: rockchip: drop CLK_SET_RATE_PARENT from dclk_vop* on rk3568 + - cpufreq: CPPC: Fix performance/frequency conversion + - opp: Expose of-node's name in debugfs + - staging: wfx: fix an error handling in wfx_init_common() + - w1: w1_therm: fixes w1_seq for ds28ea00 sensors + - NFSv4.2: fix reference count leaks in _nfs42_proc_copy_notify() + - NFSv4: Protect the state recovery thread against direct reclaim + - habanalabs: fix possible memory leak in MMU DR fini + - xen: delay xen_hvm_init_time_ops() if kdump is boot on vcpu>=32 + - clk: ti: Preserve node in ti_dt_clocks_register() + - clk: Enforce that disjoints limits are invalid + - SUNRPC/call_alloc: async tasks mustn't block waiting for memory + - SUNRPC/xprt: async tasks mustn't block waiting for memory + - SUNRPC: remove scheduling boost for "SWAPPER" tasks. + - NFS: swap IO handling is slightly different for O_DIRECT IO + - NFS: swap-out must always use STABLE writes. + - x86: Annotate call_on_stack() + - x86/Kconfig: Do not allow CONFIG_X86_X32_ABI=y with llvm-objcopy + - serial: samsung_tty: do not unlock port->lock for uart_write_wakeup() + - virtio_console: eliminate anonymous module_init & module_exit + - jfs: prevent NULL deref in diFree + - SUNRPC: Fix socket waits for write buffer space + - NFS: nfsiod should not block forever in mempool_alloc() + - NFS: Avoid writeback threads getting stuck in mempool_alloc() + - selftests: net: Add tls config dependency for tls selftests + - parisc: Fix CPU affinity for Lasi, WAX and Dino chips + - parisc: Fix patch code locking and flushing + - mm: fix race between MADV_FREE reclaim and blkdev direct IO read + - rtc: mc146818-lib: change return values of mc146818_get_time() + - rtc: Check return value from mc146818_get_time() + - rtc: mc146818-lib: fix RTC presence check + - drm/amdgpu: fix off by one in amdgpu_gfx_kiq_acquire() + - Drivers: hv: vmbus: Fix potential crash on module unload + - Revert "NFSv4: Handle the special Linux file open access mode" + - NFSv4: fix open failure with O_ACCMODE flag + - scsi: sr: Fix typo in CDROM(CLOSETRAY|EJECT) handling + - scsi: core: Fix sbitmap depth in scsi_realloc_sdev_budget_map() + - scsi: zorro7xx: Fix a resource leak in zorro7xx_remove_one() + - vdpa/mlx5: Rename control VQ workqueue to vdpa wq + - vdpa/mlx5: Propagate link status from device to vdpa driver + - vdpa: mlx5: prevent cvq work from hogging CPU + - net: sfc: add missing xdp queue reinitialization + - net/tls: fix slab-out-of-bounds bug in decrypt_internal + - vrf: fix packet sniffing for traffic originating from ip tunnels + - skbuff: fix coalescing for page_pool fragment recycling + - ice: Clear default forwarding VSI during VSI release + - mctp: Fix check for dev_hard_header() result + - net: ipv4: fix route with nexthop object delete warning + - net: stmmac: Fix unset max_speed difference between DT and non-DT platforms + - drm/imx: imx-ldb: Check for null pointer after calling kmemdup + - drm/imx: Fix memory leak in imx_pd_connector_get_modes + - drm/imx: dw_hdmi-imx: Fix bailout in error cases of probe + - regulator: rtq2134: Fix missing active_discharge_on setting + - regulator: atc260x: Fix missing active_discharge_on setting + - arch/arm64: Fix topology initialization for core scheduling + - bnxt_en: Synchronize tx when xdp redirects happen on same ring + - bnxt_en: reserve space inside receive page for skb_shared_info + - bnxt_en: Prevent XDP redirect from running when stopping TX queue + - sfc: Do not free an empty page_ring + - RDMA/mlx5: Don't remove cache MRs when a delay is needed + - RDMA/mlx5: Add a missing update of cache->last_add + - IB/cm: Cancel mad on the DREQ event when the state is MRA_REP_RCVD + - IB/rdmavt: add lock to call to rvt_error_qp to prevent a race condition + - sctp: count singleton chunks in assoc user stats + - dpaa2-ptp: Fix refcount leak in dpaa2_ptp_probe + - ice: Set txq_teid to ICE_INVAL_TEID on ring creation + - ice: Do not skip not enabled queues in ice_vc_dis_qs_msg + - ipv6: Fix stats accounting in ip6_pkt_drop + - ice: synchronize_rcu() when terminating rings + - ice: xsk: fix VSI state check in ice_xsk_wakeup() + - net: openvswitch: don't send internal clone attribute to the userspace. + - net: ethernet: mv643xx: Fix over zealous checking of_get_mac_address() + - net: openvswitch: fix leak of nested actions + - rxrpc: fix a race in rxrpc_exit_net() + - net: sfc: fix using uninitialized xdp tx_queue + - net: phy: mscc-miim: reject clause 45 register accesses + - qede: confirm skb is allocated before using + - spi: bcm-qspi: fix MSPI only access with bcm_qspi_exec_mem_op() + - bpf: Support dual-stack sockets in bpf_tcp_check_syncookie + - drbd: Fix five use after free bugs in get_initial_state + - scsi: ufs: ufshpb: Fix a NULL check on list iterator + - io_uring: nospec index for tags on files update + - io_uring: don't touch scm_fp_list after queueing skb + - SUNRPC: Handle ENOMEM in call_transmit_status() + - SUNRPC: Handle low memory situations in call_status() + - SUNRPC: svc_tcp_sendmsg() should handle errors from xdr_alloc_bvec() + - iommu/omap: Fix regression in probe for NULL pointer dereference + - perf: arm-spe: Fix perf report --mem-mode + - perf tools: Fix perf's libperf_print callback + - perf session: Remap buf if there is no space for event + - arm64: Add part number for Arm Cortex-A78AE + - scsi: mpt3sas: Fix use after free in _scsih_expander_node_remove() + - scsi: ufs: ufs-pci: Add support for Intel MTL + - Revert "mmc: sdhci-xenon: fix annoying 1.8V regulator warning" + - mmc: block: Check for errors after write on SPI + - mmc: mmci: stm32: correctly check all elements of sg list + - mmc: renesas_sdhi: don't overwrite TAP settings when HS400 tuning is + complete + - mmc: core: Fixup support for writeback-cache for eMMC and SD + - lz4: fix LZ4_decompress_safe_partial read out of bound + - highmem: fix checks in __kmap_local_sched_{in,out} + - mmmremap.c: avoid pointless invalidate_range_start/end on mremap(old_size=0) + - mm/mempolicy: fix mpol_new leak in shared_policy_replace + - io_uring: don't check req->file in io_fsync_prep() + - io_uring: defer splice/tee file validity check until command issue + - io_uring: implement compat handling for IORING_REGISTER_IOWQ_AFF + - io_uring: fix race between timeout flush and removal + - x86/pm: Save the MSR validity status at context setup + - x86/speculation: Restore speculation related MSRs during S3 resume + - perf/x86/intel: Update the FRONTEND MSR mask on Sapphire Rapids + - btrfs: fix qgroup reserve overflow the qgroup limit + - btrfs: prevent subvol with swapfile from being deleted + - spi: core: add dma_map_dev for __spi_unmap_msg() + - arm64: patch_text: Fixup last cpu should be master + - RDMA/hfi1: Fix use-after-free bug for mm struct + - gpio: Restrict usage of GPIO chip irq members before initialization + - x86/msi: Fix msi message data shadow struct + - x86/mm/tlb: Revert retpoline avoidance approach + - perf/x86/intel: Don't extend the pseudo-encoding to GP counters + - ata: sata_dwc_460ex: Fix crash due to OOB write + - perf: qcom_l2_pmu: fix an incorrect NULL check on list iterator + - perf/core: Inherit event_caps + - irqchip/gic-v3: Fix GICR_CTLR.RWP polling + - fbdev: Fix unregistering of framebuffers without device + - amd/display: set backlight only if required + - SUNRPC: Prevent immediate close+reconnect + - drm/panel: ili9341: fix optional regulator handling + - drm/amdgpu/display: change pipe policy for DCN 2.1 + - drm/amdgpu/smu10: fix SoC/fclk units in auto mode + - drm/amdgpu/vcn: Fix the register setting for vcn1 + - drm/nouveau/pmu: Add missing callbacks for Tegra devices + - drm/amdkfd: Create file descriptor after client is added to smi_clients list + - drm/amdgpu: don't use BACO for reset in S3 + - KVM: SVM: Allow AVIC support on system w/ physical APIC ID > 255 + - net/smc: send directly on setting TCP_NODELAY + - Revert "selftests: net: Add tls config dependency for tls selftests" + - bpf: Make remote_port field in struct bpf_sk_lookup 16-bit wide + - selftests/bpf: Fix u8 narrow load checks for bpf_sk_lookup remote_port + - rtc: mc146818-lib: fix signedness bug in mc146818_get_time() + - SUNRPC: Don't call connect() more than once on a TCP socket + - Revert "nbd: fix possible overflow on 'first_minor' in nbd_dev_add()" + - perf build: Don't use -ffat-lto-objects in the python feature test when + building with clang-13 + - perf python: Fix probing for some clang command line options + - tools build: Filter out options and warnings not supported by clang + - tools build: Use $(shell ) instead of `` to get embedded libperl's ccopts + - dmaengine: Revert "dmaengine: shdma: Fix runtime PM imbalance on error" + - KVM: avoid NULL pointer dereference in kvm_dirty_ring_push + - Revert "net/mlx5: Accept devlink user input after driver initialization + complete" + - ubsan: remove CONFIG_UBSAN_OBJECT_SIZE + - selftests: cgroup: Make cg_create() use 0755 for permission instead of 0644 + - selftests: cgroup: Test open-time credential usage for migration checks + - selftests: cgroup: Test open-time cgroup namespace usage for migration + checks + - mm: don't skip swap entry even if zap_details specified + - Drivers: hv: vmbus: Replace smp_store_mb() with virt_store_mb() + - x86/bug: Prevent shadowing in __WARN_FLAGS + - sched: Teach the forced-newidle balancer about CPU affinity limitation. + - x86,static_call: Fix __static_call_return0 for i386 + - irqchip/gic-v4: Wait for GICR_VPENDBASER.Dirty to clear before descheduling + - powerpc/64: Fix build failure with allyesconfig in book3s_64_entry.S + - irqchip/gic, gic-v3: Prevent GSI to SGI translations + - mm/sparsemem: fix 'mem_section' will never be NULL gcc 12 warning + - static_call: Don't make __static_call_return0 static + - powerpc: Fix virt_addr_valid() for 64-bit Book3E & 32-bit + - stacktrace: move filter_irq_stacks() to kernel/stacktrace.c + - Linux 5.15.34 + - [Config] armhf, s390x: update annotations following + DEBUG_FORCE_FUNCTION_ALIGN_64B support removal in v5.15.34 + * Jammy update: v5.15.33 upstream stable release (LP: #1969110) + - Revert "swiotlb: rework "fix info leak with DMA_FROM_DEVICE"" + - USB: serial: pl2303: add IBM device IDs + - dt-bindings: usb: hcd: correct usb-device path + - USB: serial: pl2303: fix GS type detection + - USB: serial: simple: add Nokia phone driver + - mm: kfence: fix missing objcg housekeeping for SLAB + - hv: utils: add PTP_1588_CLOCK to Kconfig to fix build + - HID: logitech-dj: add new lightspeed receiver id + - HID: Add support for open wheel and no attachment to T300 + - xfrm: fix tunnel model fragmentation behavior + - ARM: mstar: Select HAVE_ARM_ARCH_TIMER + - virtio_console: break out of buf poll on remove + - vdpa/mlx5: should verify CTRL_VQ feature exists for MQ + - tools/virtio: fix virtio_test execution + - ethernet: sun: Free the coherent when failing in probing + - gpio: Revert regression in sysfs-gpio (gpiolib.c) + - spi: Fix invalid sgs value + - net:mcf8390: Use platform_get_irq() to get the interrupt + - Revert "gpio: Revert regression in sysfs-gpio (gpiolib.c)" + - spi: Fix erroneous sgs value with min_t() + - Input: zinitix - do not report shadow fingers + - af_key: add __GFP_ZERO flag for compose_sadb_supported in function + pfkey_register + - net: dsa: microchip: add spi_device_id tables + - selftests: vm: fix clang build error multiple output files + - locking/lockdep: Avoid potential access of invalid memory in lock_class + - drm/amdgpu: move PX checking into amdgpu_device_ip_early_init + - drm/amdgpu: only check for _PR3 on dGPUs + - iommu/iova: Improve 32-bit free space estimate + - virtio-blk: Use blk_validate_block_size() to validate block size + - tpm: fix reference counting for struct tpm_chip + - usb: typec: tipd: Forward plug orientation to typec subsystem + - USB: usb-storage: Fix use of bitfields for hardware data in ene_ub6250.c + - xhci: fix garbage USBSTS being logged in some cases + - xhci: fix runtime PM imbalance in USB2 resume + - xhci: make xhci_handshake timeout for xhci_reset() adjustable + - xhci: fix uninitialized string returned by xhci_decode_ctrl_ctx() + - mei: me: disable driver on the ign firmware + - mei: me: add Alder Lake N device id. + - mei: avoid iterator usage outside of list_for_each_entry + - bus: mhi: pci_generic: Add mru_default for Quectel EM1xx series + - bus: mhi: Fix MHI DMA structure endianness + - docs: sphinx/requirements: Limit jinja2<3.1 + - coresight: Fix TRCCONFIGR.QE sysfs interface + - coresight: syscfg: Fix memleak on registration failure in + cscfg_create_device + - iio: afe: rescale: use s64 for temporary scale calculations + - iio: inkern: apply consumer scale on IIO_VAL_INT cases + - iio: inkern: apply consumer scale when no channel scale is available + - iio: inkern: make a best effort on offset calculation + - greybus: svc: fix an error handling bug in gb_svc_hello() + - clk: rockchip: re-add rational best approximation algorithm to the + fractional divider + - clk: uniphier: Fix fixed-rate initialization + - ptrace: Check PTRACE_O_SUSPEND_SECCOMP permission on PTRACE_SEIZE + - cifs: fix handlecache and multiuser + - cifs: we do not need a spinlock around the tree access during umount + - KEYS: fix length validation in keyctl_pkey_params_get_2() + - KEYS: asymmetric: enforce that sig algo matches key algo + - KEYS: asymmetric: properly validate hash_algo and encoding + - Documentation: add link to stable release candidate tree + - Documentation: update stable tree link + - firmware: stratix10-svc: add missing callback parameter on RSU + - firmware: sysfb: fix platform-device leak in error path + - HID: intel-ish-hid: Use dma_alloc_coherent for firmware update + - SUNRPC: avoid race between mod_timer() and del_timer_sync() + - NFS: NFSv2/v3 clients should never be setting NFS_CAP_XATTR + - NFSD: prevent underflow in nfssvc_decode_writeargs() + - NFSD: prevent integer overflow on 32 bit systems + - f2fs: fix to unlock page correctly in error path of is_alive() + - f2fs: quota: fix loop condition at f2fs_quota_sync() + - f2fs: fix to do sanity check on .cp_pack_total_block_count + - remoteproc: Fix count check in rproc_coredump_write() + - mm/mlock: fix two bugs in user_shm_lock() + - pinctrl: ingenic: Fix regmap on X series SoCs + - pinctrl: samsung: drop pin banks references on error paths + - net: bnxt_ptp: fix compilation error + - spi: mxic: Fix the transmit path + - mtd: rawnand: protect access to rawnand devices while in suspend + - can: ems_usb: ems_usb_start_xmit(): fix double dev_kfree_skb() in error path + - can: m_can: m_can_tx_handler(): fix use after free of skb + - can: usb_8dev: usb_8dev_start_xmit(): fix double dev_kfree_skb() in error + path + - jffs2: fix use-after-free in jffs2_clear_xattr_subsystem + - jffs2: fix memory leak in jffs2_do_mount_fs + - jffs2: fix memory leak in jffs2_scan_medium + - mm: fs: fix lru_cache_disabled race in bh_lru + - mm/pages_alloc.c: don't create ZONE_MOVABLE beyond the end of a node + - mm: invalidate hwpoison page cache page in fault path + - mempolicy: mbind_range() set_policy() after vma_merge() + - scsi: core: sd: Add silence_suspend flag to suppress some PM messages + - scsi: ufs: Fix runtime PM messages never-ending cycle + - scsi: scsi_transport_fc: Fix FPIN Link Integrity statistics counters + - scsi: libsas: Fix sas_ata_qc_issue() handling of NCQ NON DATA commands + - qed: display VF trust config + - qed: validate and restrict untrusted VFs vlan promisc mode + - riscv: dts: canaan: Fix SPI3 bus width + - riscv: Fix fill_callchain return value + - riscv: Increase stack size under KASAN + - Revert "Input: clear BTN_RIGHT/MIDDLE on buttonpads" + - cifs: prevent bad output lengths in smb2_ioctl_query_info() + - cifs: fix NULL ptr dereference in smb2_ioctl_query_info() + - ALSA: cs4236: fix an incorrect NULL check on list iterator + - ALSA: hda: Avoid unsol event during RPM suspending + - ALSA: pcm: Fix potential AB/BA lock with buffer_mutex and mmap_lock + - ALSA: hda/realtek: Fix audio regression on Mi Notebook Pro 2020 + - rtc: mc146818-lib: fix locking in mc146818_set_time + - rtc: pl031: fix rtc features null pointer dereference + - ocfs2: fix crash when mount with quota enabled + - drm/simpledrm: Add "panel orientation" property on non-upright mounted LCD + panels + - mm: madvise: skip unmapped vma holes passed to process_madvise + - mm: madvise: return correct bytes advised with process_madvise + - Revert "mm: madvise: skip unmapped vma holes passed to process_madvise" + - mm,hwpoison: unmap poisoned page before invalidation + - mm/kmemleak: reset tag when compare object pointer + - dm stats: fix too short end duration_ns when using precise_timestamps + - dm: fix use-after-free in dm_cleanup_zoned_dev() + - dm: interlock pending dm_io and dm_wait_for_bios_completion + - dm: fix double accounting of flush with data + - dm integrity: set journal entry unused when shrinking device + - tracing: Have trace event string test handle zero length strings + - drbd: fix potential silent data corruption + - powerpc/kvm: Fix kvm_use_magic_page + - PCI: fu740: Force 2.5GT/s for initial device probe + - arm64: signal: nofpsimd: Do not allocate fp/simd context when not available + - arm64: Do not defer reserve_crashkernel() for platforms with no DMA memory + zones + - arm64: dts: qcom: sm8250: Fix MSI IRQ for PCIe1 and PCIe2 + - arm64: dts: ti: k3-am65: Fix gic-v3 compatible regs + - arm64: dts: ti: k3-j721e: Fix gic-v3 compatible regs + - arm64: dts: ti: k3-j7200: Fix gic-v3 compatible regs + - arm64: dts: ti: k3-am64: Fix gic-v3 compatible regs + - ASoC: SOF: Intel: Fix NULL ptr dereference when ENOMEM + - Revert "ACPI: Pass the same capabilities to the _OSC regardless of the query + flag" + - ACPI: properties: Consistently return -ENOENT if there are no more + references + - coredump: Also dump first pages of non-executable ELF libraries + - ext4: fix ext4_fc_stats trace point + - ext4: fix fs corruption when tring to remove a non-empty directory with IO + error + - ext4: make mb_optimize_scan performance mount option work with extents + - drivers: hamradio: 6pack: fix UAF bug caused by mod_timer() + - samples/landlock: Fix path_list memory leak + - landlock: Use square brackets around "landlock-ruleset" + - mailbox: tegra-hsp: Flush whole channel + - block: limit request dispatch loop duration + - block: don't merge across cgroup boundaries if blkcg is enabled + - drm/edid: check basic audio support on CEA extension block + - fbdev: Hot-unplug firmware fb devices on forced removal + - video: fbdev: sm712fb: Fix crash in smtcfb_read() + - video: fbdev: atari: Atari 2 bpp (STe) palette bugfix + - rfkill: make new event layout opt-in + - ARM: dts: at91: sama7g5: Remove unused properties in i2c nodes + - ARM: dts: at91: sama5d2: Fix PMERRLOC resource size + - ARM: dts: exynos: fix UART3 pins configuration in Exynos5250 + - ARM: dts: exynos: add missing HDMI supplies on SMDK5250 + - ARM: dts: exynos: add missing HDMI supplies on SMDK5420 + - mgag200 fix memmapsl configuration in GCTL6 register + - carl9170: fix missing bit-wise or operator for tx_params + - pstore: Don't use semaphores in always-atomic-context code + - thermal: int340x: Increase bitmap size + - lib/raid6/test: fix multiple definition linking error + - exec: Force single empty string when argv is empty + - crypto: rsa-pkcs1pad - only allow with rsa + - crypto: rsa-pkcs1pad - correctly get hash from source scatterlist + - crypto: rsa-pkcs1pad - restore signature length check + - crypto: rsa-pkcs1pad - fix buffer overread in pkcs1pad_verify_complete() + - bcache: fixup multiple threads crash + - PM: domains: Fix sleep-in-atomic bug caused by genpd_debug_remove() + - DEC: Limit PMAX memory probing to R3k systems + - media: gpio-ir-tx: fix transmit with long spaces on Orange Pi PC + - media: venus: hfi_cmds: List HDR10 property as unsupported for v1 and v3 + - media: venus: venc: Fix h264 8x8 transform control + - media: davinci: vpif: fix unbalanced runtime PM get + - media: davinci: vpif: fix unbalanced runtime PM enable + - btrfs: zoned: mark relocation as writing + - btrfs: extend locking to all space_info members accesses + - btrfs: verify the tranisd of the to-be-written dirty extent buffer + - xtensa: define update_mmu_tlb function + - xtensa: fix stop_machine_cpuslocked call in patch_text + - xtensa: fix xtensa_wsr always writing 0 + - drm/syncobj: flatten dma_fence_chains on transfer + - drm/nouveau/backlight: Fix LVDS backlight detection on some laptops + - drm/nouveau/backlight: Just set all backlight types as RAW + - drm/fb-helper: Mark screen buffers in system memory with FBINFO_VIRTFB + - brcmfmac: firmware: Allocate space for default boardrev in nvram + - brcmfmac: pcie: Release firmwares in the brcmf_pcie_setup error path + - brcmfmac: pcie: Declare missing firmware files in pcie.c + - brcmfmac: pcie: Replace brcmf_pcie_copy_mem_todev with memcpy_toio + - brcmfmac: pcie: Fix crashes due to early IRQs + - drm/i915/opregion: check port number bounds for SWSCI display power state + - drm/i915/gem: add missing boundary check in vm_access + - PCI: imx6: Allow to probe when dw_pcie_wait_for_link() fails + - PCI: pciehp: Clear cmd_busy bit in polling mode + - PCI: xgene: Revert "PCI: xgene: Fix IB window setup" + - regulator: qcom_smd: fix for_each_child.cocci warnings + - selinux: access superblock_security_struct in LSM blob way + - selinux: check return value of sel_make_avc_files + - crypto: ccp - Ensure psp_ret is always init'd in + __sev_platform_init_locked() + - hwrng: cavium - Check health status while reading random data + - hwrng: cavium - HW_RANDOM_CAVIUM should depend on ARCH_THUNDER + - crypto: sun8i-ss - really disable hash on A80 + - crypto: authenc - Fix sleep in atomic context in decrypt_tail + - crypto: mxs-dcp - Fix scatterlist processing + - selinux: Fix selinux_sb_mnt_opts_compat() + - thermal: int340x: Check for NULL after calling kmemdup() + - crypto: octeontx2 - remove CONFIG_DM_CRYPT check + - spi: tegra114: Add missing IRQ check in tegra_spi_probe + - spi: tegra210-quad: Fix missin IRQ check in tegra_qspi_probe + - stack: Constrain and fix stack offset randomization with Clang builds + - arm64/mm: avoid fixmap race condition when create pud mapping + - blk-cgroup: set blkg iostat after percpu stat aggregation + - selftests/x86: Add validity check and allow field splitting + - selftests/sgx: Treat CC as one argument + - crypto: rockchip - ECB does not need IV + - audit: log AUDIT_TIME_* records only from rules + - EVM: fix the evm= __setup handler return value + - crypto: ccree - don't attempt 0 len DMA mappings + - crypto: hisilicon/sec - fix the aead software fallback for engine + - spi: pxa2xx-pci: Balance reference count for PCI DMA device + - hwmon: (pmbus) Add mutex to regulator ops + - hwmon: (sch56xx-common) Replace WDOG_ACTIVE with WDOG_HW_RUNNING + - nvme: cleanup __nvme_check_ids + - nvme: fix the check for duplicate unique identifiers + - block: don't delete queue kobject before its children + - PM: hibernate: fix __setup handler error handling + - PM: suspend: fix return value of __setup handler + - spi: spi-zynqmp-gqspi: Handle error for dma_set_mask + - hwrng: atmel - disable trng on failure path + - crypto: sun8i-ss - call finalize with bh disabled + - crypto: sun8i-ce - call finalize with bh disabled + - crypto: amlogic - call finalize with bh disabled + - crypto: gemini - call finalize with bh disabled + - crypto: vmx - add missing dependencies + - clocksource/drivers/timer-ti-dm: Fix regression from errata i940 fix + - clocksource/drivers/exynos_mct: Refactor resources allocation + - clocksource/drivers/exynos_mct: Handle DTS with higher number of interrupts + - clocksource/drivers/timer-microchip-pit64b: Use notrace + - clocksource/drivers/timer-of: Check return value of of_iomap in + timer_of_base_init() + - arm64: prevent instrumentation of bp hardening callbacks + - KEYS: trusted: Fix trusted key backends when building as module + - KEYS: trusted: Avoid calling null function trusted_key_exit + - ACPI: APEI: fix return value of __setup handlers + - crypto: ccp - ccp_dmaengine_unregister release dma channels + - crypto: ccree - Fix use after free in cc_cipher_exit() + - hwrng: nomadik - Change clk_disable to clk_disable_unprepare + - hwmon: (pmbus) Add Vin unit off handling + - clocksource: acpi_pm: fix return value of __setup handler + - io_uring: don't check unrelated req->open.how in accept request + - io_uring: terminate manual loop iterator loop correctly for non-vecs + - watch_queue: Fix NULL dereference in error cleanup + - watch_queue: Actually free the watch + - f2fs: fix to enable ATGC correctly via gc_idle sysfs interface + - sched/debug: Remove mpol_get/put and task_lock/unlock from sched_show_numa + - sched/core: Export pelt_thermal_tp + - sched/uclamp: Fix iowait boost escaping uclamp restriction + - rseq: Remove broken uapi field layout on 32-bit little endian + - perf/core: Fix address filter parser for multiple filters + - perf/x86/intel/pt: Fix address filter config for 32-bit kernel + - sched/fair: Improve consistency of allowed NUMA balance calculations + - f2fs: fix missing free nid in f2fs_handle_failed_inode + - nfsd: more robust allocation failure handling in nfsd_file_cache_init + - sched/cpuacct: Fix charge percpu cpuusage + - sched/rt: Plug rt_mutex_setprio() vs push_rt_task() race + - f2fs: fix to avoid potential deadlock + - btrfs: fix unexpected error path when reflinking an inline extent + - f2fs: fix compressed file start atomic write may cause data corruption + - selftests, x86: fix how check_cc.sh is being invoked + - drivers/base/memory: add memory block to memory group after registration + succeeded + - kunit: make kunit_test_timeout compatible with comment + - pinctrl: samsung: Remove EINT handler for Exynos850 ALIVE and CMGP gpios + - media: staging: media: zoran: fix usage of vb2_dma_contig_set_max_seg_size + - media: camss: csid-170: fix non-10bit formats + - media: camss: csid-170: don't enable unused irqs + - media: camss: csid-170: set the right HALT_CMD when disabled + - media: camss: vfe-170: fix "VFE halt timeout" error + - media: staging: media: imx: imx7-mipi-csis: Make subdev name unique + - media: v4l2-mem2mem: Apply DST_QUEUE_OFF_BASE on MMAP buffers across ioctls + - media: mtk-vcodec: potential dereference of null pointer + - media: imx: imx8mq-mipi-csi2: remove wrong irq config write operation + - media: imx: imx8mq-mipi_csi2: fix system resume + - media: bttv: fix WARNING regression on tunerless devices + - media: atmel: atmel-sama7g5-isc: fix ispck leftover + - ASoC: sh: rz-ssi: Drop calling rz_ssi_pio_recv() recursively + - ASoC: codecs: Check for error pointer after calling devm_regmap_init_mmio + - ASoC: xilinx: xlnx_formatter_pcm: Handle sysclk setting + - ASoC: simple-card-utils: Set sysclk on all components + - media: coda: Fix missing put_device() call in coda_get_vdoa_data + - media: meson: vdec: potential dereference of null pointer + - media: hantro: Fix overfill bottom register field name + - media: ov6650: Fix set format try processing path + - media: v4l: Avoid unaligned access warnings when printing 4cc modifiers + - media: ov5648: Don't pack controls struct + - media: aspeed: Correct value for h-total-pixels + - video: fbdev: matroxfb: set maxvram of vbG200eW to the same as vbG200 to + avoid black screen + - video: fbdev: controlfb: Fix COMPILE_TEST build + - video: fbdev: smscufx: Fix null-ptr-deref in ufx_usb_probe() + - video: fbdev: atmel_lcdfb: fix an error code in atmel_lcdfb_probe() + - video: fbdev: fbcvt.c: fix printing in fb_cvt_print_name() + - ARM: dts: Fix OpenBMC flash layout label addresses + - firmware: qcom: scm: Remove reassignment to desc following initializer + - ARM: dts: qcom: ipq4019: fix sleep clock + - soc: qcom: rpmpd: Check for null return of devm_kcalloc + - soc: qcom: ocmem: Fix missing put_device() call in of_get_ocmem + - soc: qcom: aoss: remove spurious IRQF_ONESHOT flags + - arm64: dts: qcom: sdm845: fix microphone bias properties and values + - arm64: dts: qcom: sm8250: fix PCIe bindings to follow schema + - arm64: dts: broadcom: bcm4908: use proper TWD binding + - arm64: dts: qcom: sm8150: Correct TCS configuration for apps rsc + - arm64: dts: qcom: sm8350: Correct TCS configuration for apps rsc + - firmware: ti_sci: Fix compilation failure when CONFIG_TI_SCI_PROTOCOL is not + defined + - soc: ti: wkup_m3_ipc: Fix IRQ check in wkup_m3_ipc_probe + - ARM: dts: sun8i: v3s: Move the csi1 block to follow address order + - vsprintf: Fix potential unaligned access + - ARM: dts: imx: Add missing LVDS decoder on M53Menlo + - media: mexon-ge2d: fixup frames size in registers + - media: video/hdmi: handle short reads of hdmi info frame. + - media: ti-vpe: cal: Fix a NULL pointer dereference in + cal_ctx_v4l2_init_formats() + - media: em28xx: initialize refcount before kref_get + - media: usb: go7007: s2250-board: fix leak in probe() + - media: cedrus: H265: Fix neighbour info buffer size + - media: cedrus: h264: Fix neighbour info buffer size + - ASoC: codecs: rx-macro: fix accessing compander for aux + - ASoC: codecs: rx-macro: fix accessing array out of bounds for enum type + - ASoC: codecs: va-macro: fix accessing array out of bounds for enum type + - ASoC: codecs: wc938x: fix accessing array out of bounds for enum type + - ASoC: codecs: wcd938x: fix kcontrol max values + - ASoC: codecs: wcd934x: fix kcontrol max values + - ASoC: codecs: wcd934x: fix return value of wcd934x_rx_hph_mode_put + - media: v4l2-core: Initialize h264 scaling matrix + - media: ov5640: Fix set format, v4l2_mbus_pixelcode not updated + - selftests/lkdtm: Add UBSAN config + - lib: uninline simple_strntoull() as well + - vsprintf: Fix %pK with kptr_restrict == 0 + - uaccess: fix nios2 and microblaze get_user_8() + - ASoC: rt5663: check the return value of devm_kzalloc() in rt5663_parse_dp() + - soc: mediatek: pm-domains: Add wakeup capacity support in power domain + - mmc: sdhci_am654: Fix the driver data of AM64 SoC + - ASoC: ti: davinci-i2s: Add check for clk_enable() + - ALSA: spi: Add check for clk_enable() + - arm64: dts: ns2: Fix spi-cpol and spi-cpha property + - arm64: dts: broadcom: Fix sata nodename + - printk: fix return value of printk.devkmsg __setup handler + - ASoC: mxs-saif: Handle errors for clk_enable + - ASoC: atmel_ssc_dai: Handle errors for clk_enable + - ASoC: dwc-i2s: Handle errors for clk_enable + - ASoC: soc-compress: prevent the potentially use of null pointer + - memory: emif: Add check for setup_interrupts + - memory: emif: check the pointer temp in get_device_details() + - ALSA: firewire-lib: fix uninitialized flag for AV/C deferred transaction + - arm64: dts: rockchip: Fix SDIO regulator supply properties on rk3399-firefly + - m68k: coldfire/device.c: only build for MCF_EDMA when h/w macros are defined + - media: stk1160: If start stream fails, return buffers with + VB2_BUF_STATE_QUEUED + - media: vidtv: Check for null return of vzalloc + - ASoC: atmel: Add missing of_node_put() in at91sam9g20ek_audio_probe + - ASoC: wm8350: Handle error for wm8350_register_irq + - ASoC: fsi: Add check for clk_enable + - video: fbdev: omapfb: Add missing of_node_put() in dvic_probe_of + - media: saa7134: fix incorrect use to determine if list is empty + - ivtv: fix incorrect device_caps for ivtvfb + - ASoC: atmel: Fix error handling in snd_proto_probe + - ASoC: rockchip: i2s: Fix missing clk_disable_unprepare() in + rockchip_i2s_probe + - ASoC: SOF: Add missing of_node_put() in imx8m_probe + - ASoC: mediatek: use of_device_get_match_data() + - ASoC: mediatek: mt8192-mt6359: Fix error handling in mt8192_mt6359_dev_probe + - ASoC: rk817: Fix missing clk_disable_unprepare() in rk817_platform_probe + - ASoC: dmaengine: do not use a NULL prepare_slave_config() callback + - ASoC: mxs: Fix error handling in mxs_sgtl5000_probe + - ASoC: fsl_spdif: Disable TX clock when stop + - ASoC: imx-es8328: Fix error return code in imx_es8328_probe() + - ASoC: SOF: Intel: enable DMI L1 for playback streams + - ASoC: msm8916-wcd-digital: Fix missing clk_disable_unprepare() in + msm8916_wcd_digital_probe + - mmc: davinci_mmc: Handle error for clk_enable + - ASoC: atmel: Fix error handling in sam9x5_wm8731_driver_probe + - ASoC: msm8916-wcd-analog: Fix error handling in pm8916_wcd_analog_spmi_probe + - ASoC: codecs: wcd934x: Add missing of_node_put() in wcd934x_codec_parse_data + - ASoC: amd: Fix reference to PCM buffer address + - ARM: configs: multi_v5_defconfig: re-enable CONFIG_V4L_PLATFORM_DRIVERS + - ARM: configs: multi_v5_defconfig: re-enable DRM_PANEL and FB_xxx + - drm/meson: osd_afbcd: Add an exit callback to struct meson_afbcd_ops + - drm/meson: Make use of the helper function + devm_platform_ioremap_resourcexxx() + - drm/meson: split out encoder from meson_dw_hdmi + - drm/meson: Fix error handling when afbcd.ops->init fails + - drm/bridge: Fix free wrong object in sii8620_init_rcp_input_dev + - drm/bridge: Add missing pm_runtime_disable() in __dw_mipi_dsi_probe + - drm/bridge: nwl-dsi: Fix PM disable depth imbalance in nwl_dsi_probe + - drm: bridge: adv7511: Fix ADV7535 HPD enablement + - ath10k: fix memory overwrite of the WoWLAN wakeup packet pattern + - drm/v3d/v3d_drv: Check for error num after setting mask + - drm/panfrost: Check for error num after setting mask + - libbpf: Fix possible NULL pointer dereference when destroying skeleton + - bpftool: Only set obj->skeleton on complete success + - udmabuf: validate ubuf->pagecount + - bpf: Fix UAF due to race between btf_try_get_module and load_module + - drm/selftests/test-drm_dp_mst_helper: Fix memory leak in + sideband_msg_req_encode_decode + - selftests: bpf: Fix bind on used port + - Bluetooth: btintel: Fix WBS setting for Intel legacy ROM products + - Bluetooth: hci_serdev: call init_rwsem() before p->open() + - mtd: onenand: Check for error irq + - mtd: rawnand: gpmi: fix controller timings setting + - drm/edid: Don't clear formats if using deep color + - drm/edid: Split deep color modes between RGB and YUV444 + - ionic: fix type complaint in ionic_dev_cmd_clean() + - ionic: start watchdog after all is setup + - ionic: Don't send reset commands if FW isn't running + - drm/nouveau/acr: Fix undefined behavior in nvkm_acr_hsfw_load_bl() + - drm/amd/display: Fix a NULL pointer dereference in + amdgpu_dm_connector_add_common_modes() + - drm/amd/pm: return -ENOTSUPP if there is no get_dpm_ultimate_freq function + - net: phy: at803x: move page selection fix to config_init + - selftests/bpf: Normalize XDP section names in selftests + - selftests/bpf/test_xdp_redirect_multi: use temp netns for testing + - ath9k_htc: fix uninit value bugs + - RDMA/core: Set MR type in ib_reg_user_mr + - KVM: PPC: Fix vmx/vsx mixup in mmio emulation + - selftests/net: timestamping: Fix bind_phc check + - i40e: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - i40e: respect metadata on XSK Rx to skb + - igc: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - ixgbe: pass bi->xdp to ixgbe_construct_skb_zc() directly + - ixgbe: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - ixgbe: respect metadata on XSK Rx to skb + - power: reset: gemini-poweroff: Fix IRQ check in gemini_poweroff_probe + - ray_cs: Check ioremap return value + - powerpc: dts: t1040rdb: fix ports names for Seville Ethernet switch + - KVM: PPC: Book3S HV: Check return value of kvmppc_radix_init + - powerpc/perf: Don't use perf_hw_context for trace IMC PMU + - mt76: connac: fix sta_rec_wtbl tag len + - mt76: mt7915: use proper aid value in mt7915_mcu_wtbl_generic_tlv in sta + mode + - mt76: mt7915: use proper aid value in mt7915_mcu_sta_basic_tlv + - mt76: mt7921: fix a leftover race in runtime-pm + - mt76: mt7615: fix a leftover race in runtime-pm + - mt76: mt7603: check sta_rates pointer in mt7603_sta_rate_tbl_update + - mt76: mt7615: check sta_rates pointer in mt7615_sta_rate_tbl_update + - ptp: unregister virtual clocks when unregistering physical clock. + - net: dsa: mv88e6xxx: Enable port policy support on 6097 + - mac80211: Remove a couple of obsolete TODO + - mac80211: limit bandwidth in HE capabilities + - scripts/dtc: Call pkg-config POSIXly correct + - livepatch: Fix build failure on 32 bits processors + - net: asix: add proper error handling of usb read errors + - i2c: bcm2835: Use platform_get_irq() to get the interrupt + - i2c: bcm2835: Fix the error handling in 'bcm2835_i2c_probe()' + - mtd: mchp23k256: Add SPI ID table + - mtd: mchp48l640: Add SPI ID table + - igc: avoid kernel warning when changing RX ring parameters + - igb: refactor XDP registration + - PCI: aardvark: Fix reading MSI interrupt number + - PCI: aardvark: Fix reading PCI_EXP_RTSTA_PME bit on emulated bridge + - RDMA/rxe: Check the last packet by RXE_END_MASK + - libbpf: Fix signedness bug in btf_dump_array_data() + - cxl/core: Fix cxl_probe_component_regs() error message + - cxl/regs: Fix size of CXL Capability Header Register + - net:enetc: allocate CBD ring data memory using DMA coherent methods + - libbpf: Fix compilation warning due to mismatched printf format + - drm/bridge: dw-hdmi: use safe format when first in bridge chain + - libbpf: Use dynamically allocated buffer when receiving netlink messages + - power: supply: ab8500: Fix memory leak in ab8500_fg_sysfs_init + - HID: i2c-hid: fix GET/SET_REPORT for unnumbered reports + - iommu/ipmmu-vmsa: Check for error num after setting mask + - drm/bridge: anx7625: Fix overflow issue on reading EDID + - bpftool: Fix the error when lookup in no-btf maps + - drm/amd/pm: enable pm sysfs write for one VF mode + - drm/amd/display: Add affected crtcs to atomic state for dsc mst unplug + - libbpf: Fix memleak in libbpf_netlink_recv() + - IB/cma: Allow XRC INI QPs to set their local ACK timeout + - dax: make sure inodes are flushed before destroy cache + - selftests: mptcp: add csum mib check for mptcp_connect + - iwlwifi: mvm: Don't call iwl_mvm_sta_from_mac80211() with NULL sta + - iwlwifi: mvm: don't iterate unadded vifs when handling FW SMPS req + - iwlwifi: mvm: align locking in D3 test debugfs + - iwlwifi: yoyo: remove DBGI_SRAM address reset writing + - iwlwifi: Fix -EIO error code that is never returned + - iwlwifi: mvm: Fix an error code in iwl_mvm_up() + - mtd: rawnand: pl353: Set the nand chip node as the flash node + - drm/msm/dp: populate connector of struct dp_panel + - drm/msm/dp: stop link training after link training 2 failed + - drm/msm/dp: always add fail-safe mode into connector mode list + - drm/msm/dsi: Use "ref" fw clock instead of global name for VCO parent + - drm/msm/dsi/phy: fix 7nm v4.0 settings for C-PHY mode + - drm/msm/dpu: add DSPP blocks teardown + - drm/msm/dpu: fix dp audio condition + - dm crypt: fix get_key_size compiler warning if !CONFIG_KEYS + - vfio/pci: fix memory leak during D3hot to D0 transition + - vfio/pci: wake-up devices around reset functions + - scsi: fnic: Fix a tracing statement + - scsi: pm8001: Fix command initialization in pm80XX_send_read_log() + - scsi: pm8001: Fix command initialization in pm8001_chip_ssp_tm_req() + - scsi: pm8001: Fix payload initialization in pm80xx_set_thermal_config() + - scsi: pm8001: Fix le32 values handling in + pm80xx_set_sas_protocol_timer_config() + - scsi: pm8001: Fix payload initialization in pm80xx_encrypt_update() + - scsi: pm8001: Fix le32 values handling in pm80xx_chip_ssp_io_req() + - scsi: pm8001: Fix le32 values handling in pm80xx_chip_sata_req() + - scsi: pm8001: Fix NCQ NON DATA command task initialization + - scsi: pm8001: Fix NCQ NON DATA command completion handling + - scsi: pm8001: Fix abort all task initialization + - RDMA/mlx5: Fix the flow of a miss in the allocation of a cache ODP MR + - drm/amd/display: Remove vupdate_int_entry definition + - TOMOYO: fix __setup handlers return values + - power: supply: sbs-charger: Don't cancel work that is not initialized + - ext2: correct max file size computing + - drm/tegra: Fix reference leak in tegra_dsi_ganged_probe + - power: supply: bq24190_charger: Fix bq24190_vbus_is_enabled() wrong false + return + - scsi: hisi_sas: Change permission of parameter prot_mask + - drm/bridge: cdns-dsi: Make sure to to create proper aliases for dt + - bpf, arm64: Call build_prologue() first in first JIT pass + - bpf, arm64: Feed byte-offset into bpf line info + - xsk: Fix race at socket teardown + - RDMA/irdma: Fix netdev notifications for vlan's + - RDMA/irdma: Fix Passthrough mode in VM + - RDMA/irdma: Remove incorrect masking of PD + - gpu: host1x: Fix a memory leak in 'host1x_remove()' + - libbpf: Skip forward declaration when counting duplicated type names + - powerpc/mm/numa: skip NUMA_NO_NODE onlining in parse_numa_properties() + - powerpc/Makefile: Don't pass -mcpu=powerpc64 when building 32-bit + - KVM: x86: Fix emulation in writing cr8 + - KVM: x86/emulator: Defer not-present segment check in + __load_segment_descriptor() + - hv_balloon: rate-limit "Unhandled message" warning + - i2c: xiic: Make bus names unique + - power: supply: wm8350-power: Handle error for wm8350_register_irq + - power: supply: wm8350-power: Add missing free in free_charger_irq + - IB/hfi1: Allow larger MTU without AIP + - RDMA/core: Fix ib_qp_usecnt_dec() called when error + - PCI: Reduce warnings on possible RW1C corruption + - net: axienet: fix RX ring refill allocation failure handling + - drm/msm/a6xx: Fix missing ARRAY_SIZE() check + - mips: DEC: honor CONFIG_MIPS_FP_SUPPORT=n + - MIPS: Sanitise Cavium switch cases in TLB handler synthesizers + - powerpc/sysdev: fix incorrect use to determine if list is empty + - powerpc/64s: Don't use DSISR for SLB faults + - mfd: mc13xxx: Add check for mc13xxx_irq_request + - libbpf: Unmap rings when umem deleted + - selftests/bpf: Make test_lwt_ip_encap more stable and faster + - platform/x86: huawei-wmi: check the return value of device_create_file() + - scsi: mpt3sas: Fix incorrect 4GB boundary check + - powerpc: 8xx: fix a return value error in mpc8xx_pic_init + - vxcan: enable local echo for sent CAN frames + - ath10k: Fix error handling in ath10k_setup_msa_resources + - mips: cdmm: Fix refcount leak in mips_cdmm_phys_base + - MIPS: RB532: fix return value of __setup handler + - MIPS: pgalloc: fix memory leak caused by pgd_free() + - mtd: rawnand: atmel: fix refcount issue in atmel_nand_controller_init + - power: ab8500_chargalg: Use CLOCK_MONOTONIC + - RDMA/irdma: Prevent some integer underflows + - Revert "RDMA/core: Fix ib_qp_usecnt_dec() called when error" + - RDMA/mlx5: Fix memory leak in error flow for subscribe event routine + - bpf, sockmap: Fix memleak in sk_psock_queue_msg + - bpf, sockmap: Fix memleak in tcp_bpf_sendmsg while sk msg is full + - bpf, sockmap: Fix more uncharged while msg has more_data + - bpf, sockmap: Fix double uncharge the mem of sk_msg + - samples/bpf, xdpsock: Fix race when running for fix duration of time + - USB: storage: ums-realtek: fix error code in rts51x_read_mem() + - drm/i915/display: Fix HPD short pulse handling for eDP + - netfilter: flowtable: Fix QinQ and pppoe support for inet table + - mt76: mt7921: fix mt7921_queues_acq implementation + - can: isotp: sanitize CAN ID checks in isotp_bind() + - can: isotp: return -EADDRNOTAVAIL when reading from unbound socket + - can: isotp: support MSG_TRUNC flag when reading from socket + - bareudp: use ipv6_mod_enabled to check if IPv6 enabled + - ibmvnic: fix race between xmit and reset + - af_unix: Fix some data-races around unix_sk(sk)->oob_skb. + - selftests/bpf: Fix error reporting from sock_fields programs + - Bluetooth: hci_uart: add missing NULL check in h5_enqueue + - Bluetooth: call hci_le_conn_failed with hdev lock in hci_le_conn_failed + - Bluetooth: btmtksdio: Fix kernel oops in btmtksdio_interrupt + - ipv4: Fix route lookups when handling ICMP redirects and PMTU updates + - af_netlink: Fix shift out of bounds in group mask calculation + - i2c: meson: Fix wrong speed use from probe + - netfilter: conntrack: Add and use nf_ct_set_auto_assign_helper_warned() + - i2c: mux: demux-pinctrl: do not deactivate a master that is not active + - powerpc/pseries: Fix use after free in remove_phb_dynamic() + - selftests/bpf/test_lirc_mode2.sh: Exit with proper code + - PCI: Avoid broken MSI on SB600 USB devices + - net: bcmgenet: Use stronger register read/writes to assure ordering + - tcp: ensure PMTU updates are processed during fastopen + - openvswitch: always update flow key after nat + - net: dsa: fix panic on shutdown if multi-chip tree failed to probe + - tipc: fix the timer expires after interval 100ms + - mfd: asic3: Add missing iounmap() on error asic3_mfd_probe + - ice: fix 'scheduling while atomic' on aux critical err interrupt + - ice: don't allow to run ice_send_event_to_aux() in atomic ctx + - drivers: ethernet: cpsw: fix panic when interrupt coaleceing is set via + ethtool + - kernel/resource: fix kfree() of bootmem memory again + - staging: r8188eu: convert DBG_88E_LEVEL call in hal/rtl8188e_hal_init.c + - staging: r8188eu: release_firmware is not called if allocation fails + - mxser: fix xmit_buf leak in activate when LSR == 0xff + - fsi: scom: Fix error handling + - fsi: scom: Remove retries in indirect scoms + - pwm: lpc18xx-sct: Initialize driver data and hardware before pwmchip_add() + - pps: clients: gpio: Propagate return value from pps_gpio_probe + - fsi: Aspeed: Fix a potential double free + - misc: alcor_pci: Fix an error handling path + - cpufreq: qcom-cpufreq-nvmem: fix reading of PVS Valid fuse + - soundwire: intel: fix wrong register name in intel_shim_wake + - clk: qcom: ipq8074: fix PCI-E clock oops + - dmaengine: idxd: check GENCAP config support for gencfg register + - dmaengine: idxd: change bandwidth token to read buffers + - dmaengine: idxd: restore traffic class defaults after wq reset + - iio: mma8452: Fix probe failing when an i2c_device_id is used + - serial: 8250_aspeed_vuart: add PORT_ASPEED_VUART port type + - staging:iio:adc:ad7280a: Fix handing of device address bit reversing. + - pinctrl: renesas: r8a77470: Reduce size for narrow VIN1 channel + - pinctrl: renesas: checker: Fix miscalculation of number of states + - clk: qcom: ipq8074: Use floor ops for SDCC1 clock + - phy: dphy: Correct lpx parameter and its derivatives(ta_{get,go,sure}) + - phy: phy-brcm-usb: fixup BCM4908 support + - serial: 8250_mid: Balance reference count for PCI DMA device + - serial: 8250_lpss: Balance reference count for PCI DMA device + - NFS: Use of mapping_set_error() results in spurious errors + - serial: 8250: Fix race condition in RTS-after-send handling + - iio: adc: Add check for devm_request_threaded_irq + - habanalabs: Add check for pci_enable_device + - NFS: Return valid errors from nfs2/3_decode_dirent() + - staging: r8188eu: fix endless loop in recv_func + - dma-debug: fix return value of __setup handlers + - clk: imx7d: Remove audio_mclk_root_clk + - clk: imx: off by one in imx_lpcg_parse_clks_from_dt() + - clk: at91: sama7g5: fix parents of PDMCs' GCLK + - clk: qcom: clk-rcg2: Update logic to calculate D value for RCG + - clk: qcom: clk-rcg2: Update the frac table for pixel clock + - dmaengine: hisi_dma: fix MSI allocate fail when reload hisi_dma + - remoteproc: qcom: Fix missing of_node_put in adsp_alloc_memory_region + - remoteproc: qcom_wcnss: Add missing of_node_put() in + wcnss_alloc_memory_region + - remoteproc: qcom_q6v5_mss: Fix some leaks in q6v5_alloc_memory_region + - nvdimm/region: Fix default alignment for small regions + - clk: actions: Terminate clk_div_table with sentinel element + - clk: loongson1: Terminate clk_div_table with sentinel element + - clk: hisilicon: Terminate clk_div_table with sentinel element + - clk: clps711x: Terminate clk_div_table with sentinel element + - clk: Fix clk_hw_get_clk() when dev is NULL + - clk: tegra: tegra124-emc: Fix missing put_device() call in + emc_ensure_emc_driver + - mailbox: imx: fix crash in resume on i.mx8ulp + - NFS: remove unneeded check in decode_devicenotify_args() + - staging: mt7621-dts: fix LEDs and pinctrl on GB-PC1 devicetree + - staging: mt7621-dts: fix formatting + - staging: mt7621-dts: fix pinctrl properties for ethernet + - staging: mt7621-dts: fix GB-PC2 devicetree + - pinctrl: mediatek: Fix missing of_node_put() in mtk_pctrl_init + - pinctrl: mediatek: paris: Fix PIN_CONFIG_BIAS_* readback + - pinctrl: mediatek: paris: Fix "argument" argument type for mtk_pinconf_get() + - pinctrl: mediatek: paris: Fix pingroup pin config state readback + - pinctrl: mediatek: paris: Skip custom extra pin config dump for virtual + GPIOs + - pinctrl: microchip sgpio: use reset driver + - pinctrl: microchip-sgpio: lock RMW access + - pinctrl: nomadik: Add missing of_node_put() in nmk_pinctrl_probe + - pinctrl/rockchip: Add missing of_node_put() in rockchip_pinctrl_probe + - tty: hvc: fix return value of __setup handler + - kgdboc: fix return value of __setup handler + - serial: 8250: fix XOFF/XON sending when DMA is used + - virt: acrn: obtain pa from VMA with PFNMAP flag + - virt: acrn: fix a memory leak in acrn_dev_ioctl() + - kgdbts: fix return value of __setup handler + - firmware: google: Properly state IOMEM dependency + - driver core: dd: fix return value of __setup handler + - jfs: fix divide error in dbNextAG + - netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options + - SUNRPC don't resend a task on an offlined transport + - NFSv4.1: don't retry BIND_CONN_TO_SESSION on session error + - kdb: Fix the putarea helper function + - perf stat: Fix forked applications enablement of counters + - clk: qcom: gcc-msm8994: Fix gpll4 width + - vsock/virtio: initialize vdev->priv before using VQs + - vsock/virtio: read the negotiated features before using VQs + - vsock/virtio: enable VQs early on probe + - clk: Initialize orphan req_rate + - xen: fix is_xen_pmu() + - net: enetc: report software timestamping via SO_TIMESTAMPING + - net: hns3: fix bug when PF set the duplicate MAC address for VFs + - net: hns3: fix port base vlan add fail when concurrent with reset + - net: hns3: add vlan list lock to protect vlan list + - net: hns3: format the output of the MAC address + - net: hns3: refine the process when PF set VF VLAN + - net: phy: broadcom: Fix brcm_fet_config_init() + - selftests: test_vxlan_under_vrf: Fix broken test case + - NFS: Don't loop forever in nfs_do_recoalesce() + - net: hns3: clean residual vf config after disable sriov + - net: sparx5: depends on PTP_1588_CLOCK_OPTIONAL + - qlcnic: dcb: default to returning -EOPNOTSUPP + - net/x25: Fix null-ptr-deref caused by x25_disconnect + - net: sparx5: switchdev: fix possible NULL pointer dereference + - octeontx2-af: initialize action variable + - net: prefer nf_ct_put instead of nf_conntrack_put + - net/sched: act_ct: fix ref leak when switching zones + - NFSv4/pNFS: Fix another issue with a list iterator pointing to the head + - net: dsa: bcm_sf2_cfp: fix an incorrect NULL check on list iterator + - fs: fd tables have to be multiples of BITS_PER_LONG + - lib/test: use after free in register_test_dev_kmod() + - fs: fix fd table size alignment properly + - LSM: general protection fault in legacy_parse_param + - regulator: rpi-panel: Handle I2C errors/timing to the Atmel + - crypto: hisilicon/qm - cleanup warning in qm_vf_read_qos + - gcc-plugins/stackleak: Exactly match strings instead of prefixes + - pinctrl: npcm: Fix broken references to chip->parent_device + - rcu: Mark writes to the rcu_segcblist structure's ->flags field + - block/bfq_wf2q: correct weight to ioprio + - crypto: xts - Add softdep on ecb + - crypto: hisilicon/sec - not need to enable sm4 extra mode at HW V3 + - block, bfq: don't move oom_bfqq + - selinux: use correct type for context length + - arm64: module: remove (NOLOAD) from linker script + - selinux: allow FIOCLEX and FIONCLEX with policy capability + - loop: use sysfs_emit() in the sysfs xxx show() + - Fix incorrect type in assignment of ipv6 port for audit + - irqchip/qcom-pdc: Fix broken locking + - irqchip/nvic: Release nvic_base upon failure + - fs/binfmt_elf: Fix AT_PHDR for unusual ELF files + - bfq: fix use-after-free in bfq_dispatch_request + - ACPICA: Avoid walking the ACPI Namespace if it is not there + - lib/raid6/test/Makefile: Use $(pound) instead of \# for Make 4.3 + - Revert "Revert "block, bfq: honor already-setup queue merges"" + - ACPI/APEI: Limit printable size of BERT table data + - PM: core: keep irq flags in device_pm_check_callbacks() + - parisc: Fix handling off probe non-access faults + - nvme-tcp: lockdep: annotate in-kernel sockets + - spi: tegra20: Use of_device_get_match_data() + - atomics: Fix atomic64_{read_acquire,set_release} fallbacks + - locking/lockdep: Iterate lock_classes directly when reading lockdep files + - ext4: correct cluster len and clusters changed accounting in ext4_mb_mark_bb + - ext4: fix ext4_mb_mark_bb() with flex_bg with fast_commit + - sched/tracing: Report TASK_RTLOCK_WAIT tasks as TASK_UNINTERRUPTIBLE + - ext4: don't BUG if someone dirty pages without asking ext4 first + - f2fs: fix to do sanity check on curseg->alloc_type + - NFSD: Fix nfsd_breaker_owns_lease() return values + - f2fs: don't get FREEZE lock in f2fs_evict_inode in frozen fs + - btrfs: harden identification of a stale device + - btrfs: make search_csum_tree return 0 if we get -EFBIG + - f2fs: use spin_lock to avoid hang + - f2fs: compress: fix to print raw data size in error path of lz4 + decompression + - Adjust cifssb maximum read size + - ntfs: add sanity check on allocation size + - media: staging: media: zoran: move videodev alloc + - media: staging: media: zoran: calculate the right buffer number for + zoran_reap_stat_com + - media: staging: media: zoran: fix various V4L2 compliance errors + - media: atmel: atmel-isc-base: report frame sizes as full supported range + - media: ir_toy: free before error exiting + - ASoC: sh: rz-ssi: Make the data structures available before registering the + handlers + - ASoC: SOF: Intel: match sdw version on link_slaves_found + - media: imx-jpeg: Prevent decoding NV12M jpegs into single-planar buffers + - media: iommu/mediatek-v1: Free the existed fwspec if the master dev already + has + - media: iommu/mediatek: Return ENODEV if the device is NULL + - media: iommu/mediatek: Add device_link between the consumer and the larb + devices + - video: fbdev: nvidiafb: Use strscpy() to prevent buffer overflow + - video: fbdev: w100fb: Reset global state + - video: fbdev: cirrusfb: check pixclock to avoid divide by zero + - video: fbdev: omapfb: acx565akm: replace snprintf with sysfs_emit + - ARM: dts: qcom: fix gic_irq_domain_translate warnings for msm8960 + - ARM: dts: bcm2837: Add the missing L1/L2 cache information + - ASoC: madera: Add dependencies on MFD + - media: atomisp_gmin_platform: Add DMI quirk to not turn AXP ELDO2 regulator + off on some boards + - media: atomisp: fix dummy_ptr check to avoid duplicate active_bo + - ARM: ftrace: avoid redundant loads or clobbering IP + - ARM: dts: imx7: Use audio_mclk_post_div instead audio_mclk_root_clk + - arm64: defconfig: build imx-sdma as a module + - video: fbdev: omapfb: panel-dsi-cm: Use sysfs_emit() instead of snprintf() + - video: fbdev: omapfb: panel-tpo-td043mtea1: Use sysfs_emit() instead of + snprintf() + - video: fbdev: udlfb: replace snprintf in show functions with sysfs_emit + - ARM: dts: bcm2711: Add the missing L1/L2 cache information + - ASoC: soc-core: skip zero num_dai component in searching dai name + - media: imx-jpeg: fix a bug of accessing array out of bounds + - media: cx88-mpeg: clear interrupt status register before streaming video + - uaccess: fix type mismatch warnings from access_ok() + - lib/test_lockup: fix kernel pointer check for separate address spaces + - ARM: tegra: tamonten: Fix I2C3 pad setting + - ARM: mmp: Fix failure to remove sram device + - ASoC: amd: vg: fix for pm resume callback sequence + - video: fbdev: sm712fb: Fix crash in smtcfb_write() + - media: i2c: ov5648: Fix lockdep error + - media: Revert "media: em28xx: add missing em28xx_close_extension" + - media: hdpvr: initialize dev->worker at hdpvr_register_videodev + - ASoC: Intel: sof_sdw: fix quirks for 2022 HP Spectre x360 13" + - tracing: Have TRACE_DEFINE_ENUM affect trace event types as well + - mmc: host: Return an error when ->enable_sdio_irq() ops is missing + - media: atomisp: fix bad usage at error handling logic + - ALSA: hda/realtek: Add alc256-samsung-headphone fixup + - KVM: x86: Reinitialize context if host userspace toggles EFER.LME + - KVM: x86/mmu: Move "invalid" check out of kvm_tdp_mmu_get_root() + - KVM: x86/mmu: Zap _all_ roots when unmapping gfn range in TDP MMU + - KVM: x86/mmu: Check for present SPTE when clearing dirty bit in TDP MMU + - KVM: x86: hyper-v: Drop redundant 'ex' parameter from kvm_hv_send_ipi() + - KVM: x86: hyper-v: Drop redundant 'ex' parameter from kvm_hv_flush_tlb() + - KVM: x86: hyper-v: Fix the maximum number of sparse banks for XMM fast TLB + flush hypercalls + - KVM: x86: hyper-v: HVCALL_SEND_IPI_EX is an XMM fast hypercall + - powerpc/kasan: Fix early region not updated correctly + - powerpc/lib/sstep: Fix 'sthcx' instruction + - powerpc/lib/sstep: Fix build errors with newer binutils + - powerpc: Add set_memory_{p/np}() and remove set_memory_attr() + - powerpc: Fix build errors with newer binutils + - drm/dp: Fix off-by-one in register cache size + - drm/i915: Treat SAGV block time 0 as SAGV disabled + - drm/i915: Fix PSF GV point mask when SAGV is not possible + - drm/i915: Reject unsupported TMDS rates on ICL+ + - scsi: qla2xxx: Refactor asynchronous command initialization + - scsi: qla2xxx: Implement ref count for SRB + - scsi: qla2xxx: Fix stuck session in gpdb + - scsi: qla2xxx: Fix warning message due to adisc being flushed + - scsi: qla2xxx: Fix scheduling while atomic + - scsi: qla2xxx: Fix premature hw access after PCI error + - scsi: qla2xxx: Fix wrong FDMI data for 64G adapter + - scsi: qla2xxx: Fix warning for missing error code + - scsi: qla2xxx: Fix device reconnect in loop topology + - scsi: qla2xxx: edif: Fix clang warning + - scsi: qla2xxx: Fix T10 PI tag escape and IP guard options for 28XX adapters + - scsi: qla2xxx: Add devids and conditionals for 28xx + - scsi: qla2xxx: Check for firmware dump already collected + - scsi: qla2xxx: Suppress a kernel complaint in qla_create_qpair() + - scsi: qla2xxx: Fix disk failure to rediscover + - scsi: qla2xxx: Fix incorrect reporting of task management failure + - scsi: qla2xxx: Fix hang due to session stuck + - scsi: qla2xxx: Fix missed DMA unmap for NVMe ls requests + - scsi: qla2xxx: Fix N2N inconsistent PLOGI + - scsi: qla2xxx: Fix stuck session of PRLI reject + - scsi: qla2xxx: Reduce false trigger to login + - scsi: qla2xxx: Use correct feature type field during RFF_ID processing + - platform: chrome: Split trace include file + - KVM: x86: Check lapic_in_kernel() before attempting to set a SynIC irq + - KVM: x86: Avoid theoretical NULL pointer dereference in + kvm_irq_delivery_to_apic_fast() + - KVM: x86: Forbid VMM to set SYNIC/STIMER MSRs when SynIC wasn't activated + - KVM: Prevent module exit until all VMs are freed + - KVM: x86: fix sending PV IPI + - KVM: SVM: fix panic on out-of-bounds guest IRQ + - ubifs: rename_whiteout: Fix double free for whiteout_ui->data + - ubifs: Fix deadlock in concurrent rename whiteout and inode writeback + - ubifs: Add missing iput if do_tmpfile() failed in rename whiteout + - ubifs: Rename whiteout atomically + - ubifs: Fix 'ui->dirty' race between do_tmpfile() and writeback work + - ubifs: Rectify space amount budget for mkdir/tmpfile operations + - ubifs: setflags: Make dirtied_ino_d 8 bytes aligned + - ubifs: Fix read out-of-bounds in ubifs_wbuf_write_nolock() + - ubifs: Fix to add refcount once page is set private + - ubifs: rename_whiteout: correct old_dir size computing + - nvme: allow duplicate NSIDs for private namespaces + - nvme: fix the read-only state for zoned namespaces with unsupposed features + - wireguard: queueing: use CFI-safe ptr_ring cleanup function + - wireguard: socket: free skb in send6 when ipv6 is disabled + - wireguard: socket: ignore v6 endpoints when ipv6 is disabled + - XArray: Fix xas_create_range() when multi-order entry present + - can: mcba_usb: mcba_usb_start_xmit(): fix double dev_kfree_skb in error path + - can: mcba_usb: properly check endpoint type + - can: mcp251xfd: mcp251xfd_register_get_dev_id(): fix return of error value + - XArray: Update the LRU list in xas_split() + - modpost: restore the warning message for missing symbol versions + - rtc: check if __rtc_read_time was successful + - gfs2: gfs2_setattr_size error path fix + - gfs2: Make sure FITRIM minlen is rounded up to fs block size + - net: hns3: fix the concurrency between functions reading debugfs + - net: hns3: fix software vlan talbe of vlan 0 inconsistent with hardware + - rxrpc: fix some null-ptr-deref bugs in server_key.c + - rxrpc: Fix call timer start racing with call destruction + - mailbox: imx: fix wakeup failure from freeze mode + - crypto: arm/aes-neonbs-cbc - Select generic cbc and aes + - watch_queue: Free the page array when watch_queue is dismantled + - pinctrl: pinconf-generic: Print arguments for bias-pull-* + - watchdog: rti-wdt: Add missing pm_runtime_disable() in probe function + - net: sparx5: uses, depends on BRIDGE or !BRIDGE + - pinctrl: nuvoton: npcm7xx: Rename DS() macro to DSTR() + - pinctrl: nuvoton: npcm7xx: Use %zu printk format for ARRAY_SIZE() + - ASoC: mediatek: mt6358: add missing EXPORT_SYMBOLs + - ubi: Fix race condition between ctrl_cdev_ioctl and ubi_cdev_ioctl + - ARM: iop32x: offset IRQ numbers by 1 + - block: Fix the maximum minor value is blk_alloc_ext_minor() + - io_uring: fix memory leak of uid in files registration + - riscv module: remove (NOLOAD) + - ACPI: CPPC: Avoid out of bounds access when parsing _CPC data + - vhost: handle error while adding split ranges to iotlb + - spi: Fix Tegra QSPI example + - platform/chrome: cros_ec_typec: Check for EC device + - can: isotp: restore accidentally removed MSG_PEEK feature + - proc: bootconfig: Add null pointer check + - drm/connector: Fix typo in documentation + - scsi: qla2xxx: Add qla2x00_async_done() for async routines + - staging: mt7621-dts: fix pinctrl-0 items to be size-1 items on ethernet + - arm64: mm: Drop 'const' from conditional arm64_dma_phys_limit definition + - ASoC: soc-compress: Change the check for codec_dai + - Reinstate some of "swiotlb: rework "fix info leak with DMA_FROM_DEVICE"" + - tracing: Have type enum modifications copy the strings + - net: add skb_set_end_offset() helper + - net: preserve skb_end_offset() in skb_unclone_keeptruesize() + - mm/mmap: return 1 from stack_guard_gap __setup() handler + - ARM: 9187/1: JIVE: fix return value of __setup handler + - mm/memcontrol: return 1 from cgroup.memory __setup() handler + - mm/usercopy: return 1 from hardened_usercopy __setup() handler + - af_unix: Support POLLPRI for OOB. + - bpf: Adjust BPF stack helper functions to accommodate skip > 0 + - bpf: Fix comment for helper bpf_current_task_under_cgroup() + - mmc: rtsx: Use pm_runtime_{get,put}() to handle runtime PM + - dt-bindings: mtd: nand-controller: Fix the reg property description + - dt-bindings: mtd: nand-controller: Fix a comment in the examples + - dt-bindings: spi: mxic: The interrupt property is not mandatory + - dt-bindings: memory: mtk-smi: No need mediatek,larb-id for mt8167 + - dt-bindings: pinctrl: pinctrl-microchip-sgpio: Fix example + - ubi: fastmap: Return error code if memory allocation fails in add_aeb() + - ASoC: SOF: Intel: Fix build error without SND_SOC_SOF_PCI_DEV + - ASoC: topology: Allow TLV control to be either read or write + - perf vendor events: Update metrics for SkyLake Server + - media: ov6650: Add try support to selection API operations + - media: ov6650: Fix crop rectangle affected by set format + - spi: mediatek: support tick_delay without enhance_timing + - ARM: dts: spear1340: Update serial node properties + - ARM: dts: spear13xx: Update SPI dma properties + - arm64: dts: ls1043a: Update i2c dma properties + - arm64: dts: ls1046a: Update i2c node dma properties + - um: Fix uml_mconsole stop/go + - docs: sysctl/kernel: add missing bit to panic_print + - openvswitch: Fixed nd target mask field in the flow dump. + - torture: Make torture.sh help message match reality + - n64cart: convert bi_disk to bi_bdev->bd_disk fix build + - mmc: rtsx: Let MMC core handle runtime PM + - mmc: rtsx: Fix build errors/warnings for unused variable + - KVM: x86/mmu: do compare-and-exchange of gPTE via the user address + - iommu/dma: Skip extra sync during unmap w/swiotlb + - iommu/dma: Fold _swiotlb helpers into callers + - iommu/dma: Check CONFIG_SWIOTLB more broadly + - swiotlb: Support aligned swiotlb buffers + - iommu/dma: Account for min_align_mask w/swiotlb + - coredump: Snapshot the vmas in do_coredump + - coredump: Remove the WARN_ON in dump_vma_snapshot + - coredump/elf: Pass coredump_params into fill_note_info + - coredump: Use the vma snapshot in fill_files_note + - PCI: xgene: Revert "PCI: xgene: Use inbound resources for setup" + - Linux 5.15.33 + * Jammy update: v5.15.32 upstream stable release (LP: #1969106) + - net: ipv6: fix skb_over_panic in __ip6_append_data + - tpm: Fix error handling in async work + - Bluetooth: btusb: Add another Realtek 8761BU + - llc: fix netdevice reference leaks in llc_ui_bind() + - ASoC: sti: Fix deadlock via snd_pcm_stop_xrun() call + - ALSA: oss: Fix PCM OSS buffer allocation overflow + - ALSA: usb-audio: add mapping for new Corsair Virtuoso SE + - ALSA: hda/realtek: Add quirk for Clevo NP70PNJ + - ALSA: hda/realtek: Add quirk for Clevo NP50PNJ + - ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc671 + - ALSA: hda/realtek: Add quirk for ASUS GA402 + - ALSA: pcm: Fix races among concurrent hw_params and hw_free calls + - ALSA: pcm: Fix races among concurrent read/write and buffer changes + - ALSA: pcm: Fix races among concurrent prepare and hw_params/hw_free calls + - ALSA: pcm: Fix races among concurrent prealloc proc writes + - ALSA: pcm: Add stream lock during PCM reset ioctl operations + - ALSA: usb-audio: Add mute TLV for playback volumes on RODE NT-USB + - ALSA: cmipci: Restore aux vol on suspend/resume + - ALSA: pci: fix reading of swapped values from pcmreg in AC97 codec + - drivers: net: xgene: Fix regression in CRC stripping + - ACPI / x86: Work around broken XSDT on Advantech DAC-BJ01 board + - ACPI: battery: Add device HID and quirk for Microsoft Surface Go 3 + - ACPI: video: Force backlight native for Clevo NL5xRU and NL5xNU + - crypto: qat - disable registration of algorithms + - Bluetooth: btusb: Add one more Bluetooth part for the Realtek RTL8852AE + - Revert "ath: add support for special 0x0 regulatory domain" + - drm/virtio: Ensure that objs is not NULL in virtio_gpu_array_put_free() + - rcu: Don't deboost before reporting expedited quiescent state + - uaccess: fix integer overflow on access_ok() + - mac80211: fix potential double free on mesh join + - tpm: use try_get_ops() in tpm-space.c + - wcn36xx: Differentiate wcn3660 from wcn3620 + - m68k: fix access_ok for coldfire + - nds32: fix access_ok() checks in get/put_user + - llc: only change llc->dev when bind() succeeds + - Linux 5.15.32 + * Jammy update: v5.15.31 upstream stable release (LP: #1969105) + - crypto: qcom-rng - ensure buffer for generate is completely filled + - ocfs2: fix crash when initialize filecheck kobj fails + - mm: swap: get rid of livelock in swapin readahead + - block: release rq qos structures for queue without disk + - drm/mgag200: Fix PLL setup for g200wb and g200ew + - efi: fix return value of __setup handlers + - alx: acquire mutex for alx_reinit in alx_change_mtu + - vsock: each transport cycles only on its own sockets + - esp6: fix check on ipv6_skip_exthdr's return value + - net: phy: marvell: Fix invalid comparison in the resume and suspend + functions + - net/packet: fix slab-out-of-bounds access in packet_recvmsg() + - atm: eni: Add check for dma_map_single + - iavf: Fix double free in iavf_reset_task + - hv_netvsc: Add check for kvmalloc_array + - drm/imx: parallel-display: Remove bus flags check in + imx_pd_bridge_atomic_check() + - drm/panel: simple: Fix Innolux G070Y2-L01 BPP settings + - net: handle ARPHRD_PIMREG in dev_is_mac_header_xmit() + - drm: Don't make DRM_PANEL_BRIDGE dependent on DRM_KMS_HELPERS + - net: dsa: Add missing of_node_put() in dsa_port_parse_of + - net: phy: mscc: Add MODULE_FIRMWARE macros + - bnx2x: fix built-in kernel driver load failure + - net: bcmgenet: skip invalid partial checksums + - net: mscc: ocelot: fix backwards compatibility with single-chain tc-flower + offload + - iavf: Fix hang during reboot/shutdown + - arm64: fix clang warning about TRAMP_VALIAS + - usb: gadget: rndis: prevent integer overflow in rndis_set_response() + - usb: gadget: Fix use-after-free bug by not setting udc->dev.driver + - usb: usbtmc: Fix bug in pipe direction for control transfers + - scsi: mpt3sas: Page fault in reply q processing + - Input: aiptek - properly check endpoint type + - perf symbols: Fix symbol size calculation condition + - btrfs: skip reserved bytes warning on unmount after log cleanup failure + - Linux 5.15.31 + * jammy/linux: 5.15.0-30.31 -proposed tracker (LP: #1971685) + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - debian/dkms-versions -- update from kernel-versions (main/2022.04.18) + * Intel: enable x86 AMX (LP: #1967750) + - x86/extable: Tidy up redundant handler functions + - x86/extable: Get rid of redundant macros + - x86/mce: Deduplicate exception handling + - x86/mce: Get rid of stray semicolons + - x86/extable: Rework the exception table mechanics + - x86/extable: Provide EX_TYPE_DEFAULT_MCE_SAFE and EX_TYPE_FAULT_MCE_SAFE + - x86/copy_mc: Use EX_TYPE_DEFAULT_MCE_SAFE for exception fixups + - x86/fpu: Use EX_TYPE_FAULT_MCE_SAFE for exception fixups + - x86/extable: Remove EX_TYPE_FAULT from MCE safe fixups + - x86/fpu/signal: Clarify exception handling in restore_fpregs_from_user() + - x86/fpu/signal: Move header zeroing out of xsave_to_user_sigframe() + - x86/fpu/signal: Move xstate clearing out of copy_fpregs_to_sigframe() + - x86/fpu/signal: Change return type of copy_fpstate_to_sigframe() to boolean + - x86/fpu/signal: Change return type of copy_fpregs_to_sigframe() helpers to + boolean + - x86/signal: Change return type of restore_sigcontext() to boolean + - x86/fpu/signal: Change return type of fpu__restore_sig() to boolean + - x86/fpu/signal: Change return type of __fpu_restore_sig() to boolean + - x86/fpu/signal: Change return code of check_xstate_in_sigframe() to boolean + - x86/fpu/signal: Change return code of restore_fpregs_from_user() to boolean + - x86/fpu/signal: Fix missed conversion to correct boolean retval in + save_xstate_epilog() + - x86/fpu: Remove pointless argument from switch_fpu_finish() + - x86/fpu: Update stale comments + - x86/pkru: Remove useless include + - x86/fpu: Restrict xsaves()/xrstors() to independent states + - x86/fpu: Cleanup the on_boot_cpu clutter + - x86/fpu: Remove pointless memset in fpu_clone() + - x86/process: Clone FPU in copy_thread() + - x86/fpu: Do not inherit FPU context for kernel and IO worker threads + - x86/fpu: Cleanup xstate xcomp_bv initialization + - x86/fpu/xstate: Provide and use for_each_xfeature() + - x86/fpu/xstate: Mark all init only functions __init + - x86/fpu: Move KVMs FPU swapping to FPU core + - x86/fpu: Replace KVMs home brewed FPU copy from user + - x86/fpu: Rework copy_xstate_to_uabi_buf() + - x86/fpu: Mark fpu__init_prepare_fx_sw_frame() as __init + - x86/fpu: Move context switch and exit to user inlines into sched.h + - x86/fpu: Clean up CPU feature tests + - x86/fpu: Make os_xrstor_booting() private + - x86/fpu: Move os_xsave() and os_xrstor() to core + - x86/fpu: Move legacy ASM wrappers to core + - x86/fpu: Make WARN_ON_FPU() private + - x86/fpu: Move fpregs_restore_userregs() to core + - x86/fpu: Move mxcsr related code to core + - x86/fpu: Move fpstate functions to api.h + - x86/fpu: Remove internal.h dependency from fpu/signal.h + - x86/sev: Include fpu/xcr.h + - x86/fpu: Mop up the internal.h leftovers + - x86/fpu: Replace the includes of fpu/internal.h + - x86/fpu: Provide a proper function for ex_handler_fprestore() + - x86/fpu: Replace KVMs home brewed FPU copy to user + - x86/fpu: Provide struct fpstate + - x86/fpu: Convert fpstate_init() to struct fpstate + - x86/fpu: Convert restore_fpregs_from_fpstate() to struct fpstate + - x86/fpu: Replace KVMs xstate component clearing + - x86/KVM: Convert to fpstate + - x86/fpu: Convert tracing to fpstate + - x86/fpu/regset: Convert to fpstate + - x86/fpu/signal: Convert to fpstate + - x86/fpu/core: Convert to fpstate + - x86/math-emu: Convert to fpstate + - x86/fpu: Remove fpu::state + - x86/fpu: Do not leak fpstate pointer on fork + - x86/process: Move arch_thread_struct_whitelist() out of line + - x86/fpu: Add size and mask information to fpstate + - x86/fpu: Use fpstate::size + - x86/fpu/xstate: Use fpstate for os_xsave() + - x86/fpu/xstate: Use fpstate for xsave_to_user_sigframe() + - x86/fpu: Use fpstate in fpu_copy_kvm_uabi_to_fpstate() + - x86/fpu: Use fpstate in __copy_xstate_to_uabi_buf() + - x86/fpu/xstate: Use fpstate for copy_uabi_to_xstate() + - x86/fpu/signal: Use fpstate for size and features + - x86/fpu: Provide struct fpu_config + - x86/fpu: Cleanup fpu__init_system_xstate_size_legacy() + - x86/fpu/xstate: Cleanup size calculations + - x86/fpu: Move xstate size to fpu_*_cfg + - x86/fpu: Move xstate feature masks to fpu_*_cfg + - x86/fpu: Mop up xfeatures_mask_uabi() + - x86/fpu: Rework restore_regs_from_fpstate() + - x86/fpu/xstate: Move remaining xfeature helpers to core + - x86/fpu: Prepare for sanitizing KVM FPU code + - x86/fpu: Provide infrastructure for KVM FPU cleanup + - x86/kvm: Convert FPU handling to a single swap buffer + - x86/fpu: Remove old KVM FPU interface + - signal: Add an optional check for altstack size + - x86/signal: Implement sigaltstack size validation + - x86/fpu/xstate: Provide xstate_calculate_size() + - x86/fpu: Add members to struct fpu to cache permission information + - x86/fpu: Add fpu_state_config::legacy_features + - x86/arch_prctl: Add controls for dynamic XSTATE components + - x86/fpu: Add basic helpers for dynamically enabled features + - x86/signal: Use fpu::__state_user_size for sigalt stack validation + - x86/fpu/signal: Prepare for variable sigframe length + - x86/fpu: Prepare fpu_clone() for dynamically enabled features + - x86/fpu: Reset permission and fpstate on exec() + - x86/cpufeatures: Add eXtended Feature Disabling (XFD) feature bit + - x86/msr-index: Add MSRs for XFD + - x86/fpu: Add XFD state to fpstate + - x86/fpu: Add sanity checks for XFD + - x86/fpu: Update XFD state where required + - x86/fpu/xstate: Add XFD #NM handler + - x86/fpu/xstate: Add fpstate_realloc()/free() + - x86/fpu/xstate: Prepare XSAVE feature table for gaps in state component + numbers + - x86/fpu/amx: Define AMX state components and have it used for boot-time + checks + - x86/fpu: Calculate the default sizes independently + - x86/fpu: Add XFD handling for dynamic states + - x86/fpu/amx: Enable the AMX feature in 64-bit mode + - selftests/x86/amx: Add test cases for AMX state management + - selftests/x86/amx: Add context switch test + - Documentation/x86: Add documentation for using dynamic XSTATE features + - x86/fpu/signal: Initialize sw_bytes in save_xstate_epilog() + - signal: Skip the altstack update when not needed + - x86/cpufeatures: Put the AMX macros in the word 18 block + - x86/fpu/xstate: Fix the ARCH_REQ_XCOMP_PERM implementation + - selftests/x86/amx: Update the ARCH_REQ_XCOMP_PERM test + - [Config] updateconfigs after AMX patchset + + -- Tim Gardner Thu, 12 May 2022 11:35:05 -0600 + +linux-azure-5.15 (5.15.0-1000.0~20.04.1) focal; urgency=medium + + * Dummy entry + + -- Tim Gardner Tue, 03 May 2022 12:09:23 -0600 diff --git a/debian.azure-5.15/config/annotations b/debian.azure-5.15/config/annotations new file mode 100644 index 0000000000000..0a771fd43d166 --- /dev/null +++ b/debian.azure-5.15/config/annotations @@ -0,0 +1,48 @@ +# Menu: HEADER +# FORMAT: 4 +# ARCH: amd64 +# FLAVOUR: amd64-azure + +include "../../debian.azure/config/annotations" + +CONFIG_ARM64_BTI_KERNEL policy<{'arm64': '-'}> +CONFIG_ARM64_BTI_KERNEL note<'o not enforce CONFIG_ARM64_BTI_KERNEL in Focal, as it depends on a newer gcc version.'> + +CONFIG_AUFS_FS policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_AUFS_FS note<'We are still supporting AUFS in focal, so make sure to re-enable it.'> + + +# ---- Annotations without notes ---- + +CONFIG_AS_VERSION policy<{'amd64': '23400', 'arm64': '23400'}> +CONFIG_AUFS_BDEV_LOOP policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_AUFS_BRANCH_MAX_1023 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_AUFS_BRANCH_MAX_127 policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_AUFS_BRANCH_MAX_32767 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_AUFS_BRANCH_MAX_511 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_AUFS_BR_FUSE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_AUFS_BR_HFSPLUS policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_AUFS_BR_RAMFS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_AUFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_AUFS_DIRREN policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_AUFS_EXPORT policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_AUFS_FHSM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_AUFS_HNOTIFY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_AUFS_INO_T_64 policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_AUFS_RDU policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_AUFS_SBILIST policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_AUFS_SHWH policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_AUFS_XATTR policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_CC_HAS_ASM_GOTO_OUTPUT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CC_HAS_KASAN_SW_TAGS policy<{'arm64': '-'}> +CONFIG_CC_HAS_SLS policy<{'amd64': '-'}> +CONFIG_CC_HAS_ZERO_CALL_USED_REGS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CC_VERSION_TEXT policy<{'amd64': '"x86_64-linux-gnu-gcc (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0"', 'arm64': '"aarch64-linux-gnu-gcc (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0"'}> +CONFIG_GCC_VERSION policy<{'amd64': '90400', 'arm64': '90400'}> +CONFIG_HAVE_KCSAN_COMPILER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KCSAN policy<{'amd64': '-'}> +CONFIG_LD_VERSION policy<{'amd64': '23400', 'arm64': '23400'}> +CONFIG_PAHOLE_VERSION policy<{'amd64': '121', 'arm64': '121'}> +CONFIG_SLS policy<{'amd64': '-'}> +CONFIG_ZERO_CALL_USED_REGS policy<{'amd64': '-', 'arm64': '-'}> diff --git a/debian.azure-5.15/control.d/azure.inclusion-list b/debian.azure-5.15/control.d/azure.inclusion-list new file mode 100644 index 0000000000000..c575d14ed4ce6 --- /dev/null +++ b/debian.azure-5.15/control.d/azure.inclusion-list @@ -0,0 +1,275 @@ +arch/*/{crypto,kernel,oprofile} +arch/*/kvm/kvm.ko +arch/powerpc/kvm/kvm-hv.ko +arch/powerpc/kvm/kvm-pr.ko +arch/powerpc/kvm/vfio.ko +arch/powerpc/platforms/powernv/opal-prd.ko +arch/s390/* +arch/x86/kvm/kvm-amd.ko +arch/x86/kvm/kvm-intel.ko +block/bfq.ko +block/cfq-iosched.ko +block/deadline-iosched.ko +block/kyber-iosched.ko +block/mq-deadline.ko +crypto/* +drivers/acpi/* +drivers/ata/acard-ahci.ko +drivers/ata/ahci.ko +drivers/ata/ahci_platform.ko +drivers/ata/ata_generic.ko +drivers/ata/libahci.ko +drivers/ata/libahci_platform.ko +drivers/ata/pata_acpi.ko +drivers/block/brd.ko +drivers/block/cryptoloop.ko +drivers/block/drbd/drbd.ko +drivers/block/floppy.ko +drivers/block/loop.ko +drivers/block/nbd.ko +drivers/block/rbd.ko +drivers/block/virtio_blk.ko +drivers/block/xen-blkfront.ko +drivers/catapult/catapult.ko +drivers/char/hangcheck-timer.ko +drivers/char/hw_random/powernv-rng.ko +drivers/char/hw_random/virtio-rng.ko +drivers/char/ipmi/* +drivers/char/ipmi/ipmi_msghandler.ko +drivers/char/lp.ko +drivers/char/nvram.ko +drivers/char/ppdev.ko +drivers/char/raw.ko +drivers/char/virtio_console.ko +drivers/crypto/nx/* +drivers/crypto/vmx/vmx-crypto.ko +drivers/firmware/efi/* +drivers/firmware/iscsi_ibft.ko +drivers/fpga/* +drivers/gpu/drm/ast/ast.ko +drivers/gpu/drm/drm_kms_helper.ko +drivers/gpu/drm/drm.ko +drivers/gpu/drm/hyperv/hyperv_drm.ko +drivers/gpu/drm/ttm/ttm.ko +drivers/hid/hid-generic.ko +drivers/hid/hid-hyperv.ko +drivers/hid/hid.ko +drivers/hid/usbhid/usbhid.ko +drivers/hv/* +drivers/hwmon/ibmpowernv.ko +drivers/i2c/busses/i2c-piix4.ko +drivers/infiniband/core/ib_addr.ko +drivers/infiniband/core/ib_cm.ko +drivers/infiniband/core/ib_core.ko +drivers/infiniband/core/ib_mad.ko +drivers/infiniband/core/ib_sa.ko +drivers/infiniband/core/ib_umad.ko +drivers/infiniband/core/iw_cm.ko +drivers/infiniband/core/rdma_cm.ko +drivers/infiniband/core/rdma_ucm.ko +drivers/infiniband/hw/mlx4/* +drivers/infiniband/hw/mlx5/* +drivers/infiniband/hw/vmbus-rdma/* +drivers/infiniband/ulp/ipoib/ib_ipoib.ko +drivers/infiniband/ulp/iser/ib_iser.ko +drivers/infiniband/ulp/isert/ib_isert.ko +drivers/input/evbug.ko +drivers/input/gameport/gameport.ko +drivers/input/input-leds.ko +drivers/input/joydev.ko +drivers/input/misc/xen-kbdfront.ko +drivers/input/mouse/psmouse.ko +drivers/input/serio/hyperv-keyboard.ko +drivers/input/serio/serio_raw.ko +drivers/input/serio/serport.ko +drivers/input/touchscreen/usbtouchscreen.ko +drivers/leds/leds-powernv.ko +drivers/md/* +drivers/message/fusion* +drivers/misc/cxl/* +drivers/misc/eeprom/at24.ko +drivers/misc/vmw_balloon.ko +drivers/misc/vmw_vmci/vmw_vmci.ko +drivers/mtd/cmdlinepart.ko +drivers/mtd/devices/powernv_flash.ko +drivers/mtd/ofpart.ko +drivers/net/appletalk/ipddp.ko +drivers/net/bonding/bonding.ko +drivers/net/caif/caif_virtio.ko +drivers/net/dummy.ko +drivers/net/eql.ko +drivers/net/ethernet/8390/8390.ko +drivers/net/ethernet/8390/ne2k-pci.ko +drivers/net/ethernet/amazon/ena/ena.ko +drivers/net/ethernet/amd/pcnet32.ko +drivers/net/ethernet/broadcom/bnx2x/* +drivers/net/ethernet/broadcom/tg3.ko +drivers/net/ethernet/dec/tulip/* +drivers/net/ethernet/emulex/benet/* +drivers/net/ethernet/ibm/* +drivers/net/ethernet/intel/e1000/e1000.ko +drivers/net/ethernet/intel/e1000e/e1000e.ko +drivers/net/ethernet/intel/i40e/* +drivers/net/ethernet/intel/igb/* +drivers/net/ethernet/intel/igbvf/igbvf.ko +drivers/net/ethernet/intel/ixgbe/* +drivers/net/ethernet/intel/ixgbevf/ixgbevf.ko +drivers/net/ethernet/mellanox/* +drivers/net/ethernet/realtek/8139cp.ko +drivers/net/ethernet/realtek/8139too.ko +drivers/net/fddi/* +drivers/net/geneve.ko +drivers/net/hyperv/hv_netvsc.ko +drivers/net/ifb.ko +drivers/net/ipvlan/* +drivers/net/macvlan.ko +drivers/net/macvtap.ko +drivers/net/mii.ko +drivers/net/netconsole.ko +drivers/net/ppp/* +drivers/net/ppp/bsd_comp.ko +drivers/net/slip/* +drivers/net/veth.ko +drivers/net/virtio_net.ko +drivers/net/vmxnet3/vmxnet3.ko +drivers/net/vxlan.ko +drivers/net/wireguard/wireguard.ko +drivers/net/xen-netback/* +drivers/net/xen-netfront.ko +drivers/nvme/host/nvme.ko +drivers/nvmem/nvmem_core.ko +drivers/parport/parport.ko +drivers/parport/parport_pc.ko +drivers/pci/controller/pci-hyperv.ko +drivers/platform/x86/pvpanic.ko +drivers/pps/pps_core.ko +drivers/ptp/ptp.ko +drivers/s390/* +drivers/s390/block/xpram.ko +drivers/scsi/aacraid/* +drivers/scsi/BusLogic.ko +drivers/scsi/cxlflash/* +drivers/scsi/device_handler/scsi_dh_alua.ko +drivers/scsi/device_handler/scsi_dh_emc.ko +drivers/scsi/device_handler/scsi_dh_hp_sw.ko +drivers/scsi/device_handler/scsi_dh_rdac.ko +drivers/scsi/hv_storvsc.ko +drivers/scsi/ibmvscsi/* +drivers/scsi/ipr.ko +drivers/scsi/iscsi_boot_sysfs.ko +drivers/scsi/iscsi_tcp.ko +drivers/scsi/libiscsi.ko +drivers/scsi/libiscsi_tcp.ko +drivers/scsi/libsas/* +drivers/scsi/lpfc/* +drivers/scsi/megaraid/* +drivers/scsi/mpt3sas/* +drivers/scsi/osd/libosd.ko +drivers/scsi/osd/osd.ko +drivers/scsi/qla1280.ko +drivers/scsi/qla2xxx/* +drivers/scsi/raid_class.ko +drivers/scsi/scsi_transport_fc.ko +drivers/scsi/scsi_transport_iscsi.ko +drivers/scsi/scsi_transport_sas.ko +drivers/scsi/scsi_transport_spi.ko +drivers/scsi/sd_mod.ko +drivers/scsi/sr_mod.ko +drivers/scsi/virtio_scsi.ko +drivers/scsi/vmw_pvscsi.ko +drivers/target/loopback/tcm_loop.ko +drivers/target/target_core*.ko +drivers/tty/serial/jsm/* +drivers/uio/uio_hv_generic.ko +drivers/uio/uio.ko +drivers/uio/uio_pci_generic.ko +drivers/uio/uio_pdrv_genirq.ko +drivers/usb/host/* +drivers/usb/storage/uas.ko +drivers/usb/storage/usb-storage.ko +drivers/vfio/* +drivers/vhost/* +! find drivers/video/fbdev -name "*.ko" | grep -v hyperv_fb +drivers/video/vgastate.ko +drivers/virtio/* +drivers/watchdog/softdog.ko +drivers/xen/* +! find sound/core -name oss -prune -o -name *.ko -print +fs/9p/* +fs/aufs/aufs.ko +fs/autofs/autofs4.ko +fs/binfmt_misc.ko +fs/btrfs/* +fs/cachefiles/cachefiles.ko +fs/ceph/* +fs/cifs/* +fs/configfs/* +fs/dlm/dlm.ko +fs/ecryptfs/* +fs/efivarfs/* +fs/exofs/libore.ko +fs/ext4/* +fs/fat/* +fs/fscache/* +fs/fuse/* +fs/isofs/* +fs/lockd/* +fs/nfs/* +fs/nfs_common/* +fs/nfsd/* +fs/nls/nls_cp437.ko +fs/nls/nls_iso8859-1.ko +fs/nls/nls_utf8.ko +fs/overlayfs/* +fs/squashfs/* +fs/udf/* +fs/ufs/* +fs/xfs/* +lib/* +net/6lowpan/* +net/802/* +net/8021q/* +net/9p/* +net/appletalk/* +net/atm/* +net/ax25/* +net/bpfilter/bpfilter.ko +net/bridge/* +net/can/* +net/ceph/libceph.ko +net/core/* +net/dccp/* +net/decnet/* +net/ieee802154/* +net/ipv4/* +net/ipv6/* +net/ipx/* +net/irda/* +net/key/* +net/lapb/* +net/llc/* +net/netfilter/* +net/netlink/netlink_diag.ko +net/netrom/* +net/openvswitch/* +net/packet/af_packet_diag.ko +net/phonet/* +net/rose/* +net/rxrpc/* +net/sched/* +net/sctp/* +net/sunrpc/auth_gss/auth_rpcgss.ko +net/sunrpc/auth_gss/rpcsec_gss_krb5.ko +net/sunrpc/sunrpc.ko +net/tipc/* +net/unix/unix_diag.ko +net/vmw_vsock/* +net/x25/* +net/xfrm/* +sound/drivers/pcsp/snd-pcsp.ko +sound/pci/snd-ens1370.ko +sound/soundcore.ko +ubuntu/vbox/vboxguest/vboxguest.ko +ubuntu/vbox/vboxsf/vboxsf.ko +zfs/* +ubuntu/ubuntu-host/ubuntu-host.ko diff --git a/debian.azure-5.15/control.d/flavour-control.stub b/debian.azure-5.15/control.d/flavour-control.stub new file mode 100644 index 0000000000000..355d6e7e536ae --- /dev/null +++ b/debian.azure-5.15/control.d/flavour-control.stub @@ -0,0 +1,152 @@ +# Items that get replaced: +# FLAVOUR +# DESC +# ARCH +# SUPPORTED +# TARGET +# BOOTLOADER +# =PROVIDES= +# +# Items marked with =FOO= are optional +# +# This file describes the template for packages that are created for each flavour +# in debian/control.d/vars.* +# +# This file gets edited in a couple of places. See the debian/control.stub rule in +# debian/rules. PGGVER, ABINUM, and SRCPKGNAME are all converted in the +# process of creating debian/control. +# +# The flavour specific strings (ARCH, DESC, etc) are converted using values from the various +# flavour files in debian/control.d/vars.* +# +# XXX: Leave the blank line before the first package!! + +Package: linux-image=SIGN-ME-PKG=-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Provides: linux-image, fuse-module, =PROVIDES=${linux:rprovides} +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-PKGVER-ABINUM-FLAVOUR +Recommends: BOOTLOADER +Breaks: flash-kernel (<< 3.0~rc.4ubuntu64) [arm64] +Conflicts: linux-image=SIGN-PEER-PKG=-PKGVER-ABINUM-FLAVOUR +Suggests: fdutils, SRCPKGNAME-doc-PKGVER | SRCPKGNAME-source-PKGVER, SRCPKGNAME-tools, linux-headers-PKGVER-ABINUM-FLAVOUR, initramfs-tools | linux-initramfs-tool +Description: Linux kernel image for version PKGVER on DESC + This package contains the=SIGN-ME-TXT= Linux kernel image for version PKGVER on + DESC. + . + Supports SUPPORTED processors. + . + TARGET + . + You likely do not want to install this package directly. Instead, install + the linux-FLAVOUR meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-modules-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-base-sgx +Built-Using: ${linux:BuiltUsing} +Description: Linux kernel extra modules for version PKGVER on DESC + Contains the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports SUPPORTED processors. + . + TARGET + . + You likely do not want to install this package directly. Instead, install + the linux-FLAVOUR meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-modules-extra-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-PKGVER-ABINUM-FLAVOUR | linux-image-unsigned-PKGVER-ABINUM-FLAVOUR, crda | wireless-crda +Description: Linux kernel extra modules for version PKGVER on DESC + This package contains the Linux kernel extra modules for version PKGVER on + DESC. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports SUPPORTED processors. + . + TARGET + . + You likely do not want to install this package directly. Instead, install + the linux-FLAVOUR meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends}, SRCPKGNAME-headers-PKGVER-ABINUM, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version PKGVER on DESC + This package provides kernel header files for version PKGVER on + DESC. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-PKGVER-ABINUM/debian.README.gz for details. + +Package: linux-image=SIGN-ME-PKG=-PKGVER-ABINUM-FLAVOUR-dbgsym +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version PKGVER on DESC + This package provides the=SIGN-ME-TXT= kernel debug image for version PKGVER on + DESC. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-tools-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends}, SRCPKGNAME-tools-PKGVER-ABINUM +Description: Linux kernel version specific tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PKGVER-ABINUM on + =HUMAN=. + +Package: linux-cloud-tools-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends}, SRCPKGNAME-cloud-tools-PKGVER-ABINUM +Description: Linux kernel version specific cloud tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools for cloud for version PKGVER-ABINUM on + =HUMAN=. + +Package: linux-udebs-FLAVOUR +Build-Profiles: +XC-Package-Type: udeb +Section: debian-installer +Architecture: ARCH +Depends: ${udeb:Depends} +Description: Metapackage depending on kernel udebs + This package depends on the all udebs that the kernel build generated, + for easier version and migration tracking. + diff --git a/debian.azure-5.15/control.d/vars.azure b/debian.azure-5.15/control.d/vars.azure new file mode 100644 index 0000000000000..4a1c9159dfa36 --- /dev/null +++ b/debian.azure-5.15/control.d/vars.azure @@ -0,0 +1,6 @@ +arch="amd64 arm64" +supported="Azure" +target="Geared toward Azure systems." +desc="=HUMAN= SMP" +bootloader="grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | flash-kernel [arm64] | grub-efi-arm64 [arm64]" +provides="kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [amd64]" diff --git a/debian.azure-5.15/control.stub.in b/debian.azure-5.15/control.stub.in new file mode 100644 index 0000000000000..3bbe87bf5b3f9 --- /dev/null +++ b/debian.azure-5.15/control.stub.in @@ -0,0 +1,94 @@ +Source: SRCPKGNAME +Section: devel +Priority: optional +Maintainer: Ubuntu Kernel Team +Standards-Version: 3.9.4.0 +Build-Depends: + debhelper-compat (= 10), + dh-systemd, + cpio, + kernel-wedge , + dctrl-tools , + kmod , + libcap-dev , + makedumpfile [amd64] , + libelf-dev , + libnewt-dev , + libiberty-dev , + rsync , + libdw-dev , + libpci-dev , + pkg-config , + python3-dev , + flex , + bison , + libunwind8-dev [amd64 arm64 armhf ppc64el] , + liblzma-dev , + openssl , + libssl-dev , + libaudit-dev , + bc , + gawk , + libudev-dev , + autoconf , + automake , + libtool , + uuid-dev , + libnuma-dev [amd64 arm64 ppc64el s390x] , + dkms , + curl , + zstd [amd64] , + lz4 , + dwarves (>= 1.19) [amd64 arm64 armhf ppc64el s390x] , +Build-Depends-Indep: + xmlto , + docbook-utils , + ghostscript , + fig2dev , + bzip2 , + sharutils , + asciidoc , + python3-sphinx , + python3-sphinx-rtd-theme , + python3-docutils , +Vcs-Git: git://git.launchpad.net/~canonical-kernel/ubuntu/+source/linux-azure/+git/=SERIES= +XS-Testsuite: autopkgtest +#XS-Testsuite-Depends: gcc-4.7 binutils + +Package: SRCPKGNAME-headers-PKGVER-ABINUM +Build-Profiles: +Architecture: all +Multi-Arch: foreign +Section: devel +Priority: optional +Depends: ${misc:Depends}, coreutils +Description: Header files related to Linux kernel version PKGVER + This package provides kernel header files for version PKGVER, for sites + that want the latest kernel headers. Please read + /usr/share/doc/SRCPKGNAME-headers-PKGVER-ABINUM/debian.README.gz for details + +Package: SRCPKGNAME-tools-PKGVER-ABINUM +Build-Profiles: +Architecture: amd64 arm64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common +Description: Linux kernel version specific tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PKGVER-ABINUM on + =HUMAN=. + You probably want to install linux-tools-PKGVER-ABINUM-. + +Package: SRCPKGNAME-cloud-tools-PKGVER-ABINUM +Build-Profiles: +Architecture: amd64 arm64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-cloud-tools-common +Description: Linux kernel version specific cloud tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools for cloud tools for version PKGVER-ABINUM on + =HUMAN=. + You probably want to install linux-cloud-tools-PKGVER-ABINUM-. + diff --git a/debian.azure-5.15/copyright b/debian.azure-5.15/copyright new file mode 100644 index 0000000000000..d1d04a6d66974 --- /dev/null +++ b/debian.azure-5.15/copyright @@ -0,0 +1,29 @@ +This is the Ubuntu prepackaged version of the Linux kernel. +Linux was written by Linus Torvalds +and others. + +This package was put together by the Ubuntu Kernel Team, from +sources retrieved from upstream linux git. +The sources may be found at most Linux ftp sites, including +ftp://ftp.kernel.org/pub/linux/kernel/ + +This package is currently maintained by the +Ubuntu Kernel Team + +Linux is copyrighted by Linus Torvalds and others. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 dated June, 1991. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Ubuntu Linux systems, the complete text of the GNU General +Public License v2 can be found in `/usr/share/common-licenses/GPL-2'. diff --git a/debian.azure-5.15/d-i/firmware/README.txt b/debian.azure-5.15/d-i/firmware/README.txt new file mode 100644 index 0000000000000..27a8600bc0f88 --- /dev/null +++ b/debian.azure-5.15/d-i/firmware/README.txt @@ -0,0 +1,4 @@ +# +# Place the names of udeb modules into this directory that require +# runtime firmware. +# diff --git a/debian.azure-5.15/d-i/kernel-versions b/debian.azure-5.15/d-i/kernel-versions new file mode 100644 index 0000000000000..d4fb3e8842c60 --- /dev/null +++ b/debian.azure-5.15/d-i/kernel-versions @@ -0,0 +1,2 @@ +# arch version flavour installedname suffix bdep +amd64 - azure - - - diff --git a/debian.azure-5.15/d-i/modules/none b/debian.azure-5.15/d-i/modules/none new file mode 100644 index 0000000000000..e69de29bb2d1d diff --git a/debian.azure-5.15/d-i/package-list b/debian.azure-5.15/d-i/package-list new file mode 100644 index 0000000000000..41ebec026ad01 --- /dev/null +++ b/debian.azure-5.15/d-i/package-list @@ -0,0 +1,208 @@ +Package: kernel-image +Provides: ext3-modules, ext4-modules +Provides_amd64: efi-modules, ext3-modules, ext4-modules +Provides_i386: efi-modules, ext3-modules, ext4-modules +Provides_ppc64el: ext3-modules, ext4-modules, fat-modules +Provides_s390x: ext3-modules, ext4-modules, ppp-modules +Description: kernel image and system map + +Package: dasd-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: DASD storage support + +Package: dasd-extra-modules +Depends: dasd-modules +Priority: extra +Description: DASD storage support -- extras + +Package: fat-modules +Depends: kernel-image +Priority: standard +Description: FAT filesystem support + This includes Windows FAT and VFAT support. + +Package: fb-modules +Depends: kernel-image +Priority: standard +Description: Framebuffer modules + +Package: firewire-core-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: Firewire (IEEE-1394) Support + +Package: floppy-modules +Depends: kernel-image +Priority: standard +Description: Floppy driver support + +Package: fs-core-modules +Depends: kernel-image +Priority: standard +Provides: ext2-modules, jfs-modules, reiserfs-modules, xfs-modules +Description: Base filesystem modules + This includes jfs, reiserfs and xfs. + +Package: fs-secondary-modules +Depends: kernel-image, fat-modules +Priority: standard +Provides: btrfs-modules, ntfs-modules, hfs-modules +Description: Extra filesystem modules + This includes support for Windows NTFS and MacOS HFS/HFSPlus + +Package: input-modules +Depends: kernel-image, usb-modules +Priority: standard +Description: Support for various input methods + +Package: irda-modules +Depends: kernel-image, nic-shared-modules +Priority: standard +Description: Support for Infrared protocols + +Package: md-modules +Depends: kernel-image +Priority: standard +Provides: crypto-dm-modules +Description: Multi-device support (raid, device-mapper, lvm) + +Package: nic-modules +Depends: kernel-image, nic-shared-modules, virtio-modules +Priority: standard +Description: Network interface support + +Package: nic-pcmcia-modules +Depends: kernel-image, nic-shared-modules, nic-modules +Priority: standard +Description: PCMCIA network interface support + +Package: nic-usb-modules +Depends: kernel-image, nic-shared-modules, usb-modules +Priority: standard +Description: USB network interface support + +Package: nic-shared-modules +Depends: kernel-image, crypto-modules +Priority: standard +Description: nic shared modules + This package contains modules which support nic modules + +Package: parport-modules +Depends: kernel-image +Priority: standard +Description: Parallel port support + +Package: pata-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: PATA support modules + +Package: pcmcia-modules +Depends: kernel-image +Priority: standard +Description: PCMCIA Modules + +Package: pcmcia-storage-modules +Depends: kernel-image, scsi-modules +Priority: standard +Description: PCMCIA storage support + +Package: plip-modules +Depends: kernel-image, nic-shared-modules, parport-modules +Priority: standard +Description: PLIP (parallel port) networking support + +Package: ppp-modules +Depends: kernel-image, nic-shared-modules, serial-modules +Priority: standard +Description: PPP (serial port) networking support + +Package: sata-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: SATA storage support + +Package: scsi-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: SCSI storage support + +Package: serial-modules +Depends: kernel-image +Priority: standard +Description: Serial port support + +Package: storage-core-modules +Depends: kernel-image +Priority: standard +Provides: loop-modules +Description: Core storage support + Includes core SCSI, LibATA, USB-Storage. Also includes related block + devices for CD, Disk and Tape medium (and IDE Floppy). + +Package: usb-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: Core USB support + +Package: nfs-modules +Priority: standard +Depends: kernel-image +Description: NFS filesystem drivers + Includes the NFS client driver, and supporting modules. + +Package: block-modules +Priority: standard +Provides: nbd-modules +Depends: kernel-image, storage-core-modules, parport-modules, virtio-modules +Description: Block storage devices + This package contains the block storage devices, including DAC960 and + paraide. + +Package: message-modules +Priority: standard +Depends: kernel-image, storage-core-modules, scsi-modules +Description: Fusion and i2o storage modules + This package containes the fusion and i2o storage modules. + +Package: crypto-modules +Priority: extra +Depends: kernel-image +Description: crypto modules + This package contains crypto modules. + +Package: virtio-modules +Priority: standard +Depends: kernel-image +Description: VirtIO Modules + Includes modules for VirtIO (virtual machine, generally kvm guests) + +Package: socket-modules +Depends: kernel-image +Priority: standard +Description: Unix socket support + +Package: mouse-modules +Depends: kernel-image, input-modules, usb-modules +Priority: extra +Description: Mouse support + This package contains mouse drivers for the Linux kernel. + +Package: vlan-modules +Depends: kernel-image +Priority: extra +Description: vlan modules + This package contains vlan (8021.Q) modules. + +Package: ipmi-modules +Depends: kernel-image +Priority: standard +Description: ipmi modules + +Package: multipath-modules +Depends: kernel-image +Priority: extra +Description: DM-Multipath support + This package contains modules for device-mapper multipath support. + diff --git a/debian.azure-5.15/etc/getabis b/debian.azure-5.15/etc/getabis new file mode 100644 index 0000000000000..a0ea4e5d13943 --- /dev/null +++ b/debian.azure-5.15/etc/getabis @@ -0,0 +1,18 @@ +repo_list=( + "http://archive.ubuntu.com/ubuntu/pool/main/l/linux-azure-5.15" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure-5.15" + "http://archive.ubuntu.com/ubuntu/pool/universe/l/linux-azure-5.15" + "http://ports.ubuntu.com/ubuntu-ports/pool/universe/l/linux-azure-5.15" + "http://ppa.launchpad.net/canonical-kernel-team/ppa/ubuntu/pool/main/l/linux-azure-5.15" + "http://ppa.launchpad.net/canonical-kernel-team/ppa2/ubuntu/pool/main/l/linux-azure-5.15" + "http://ppa.launchpad.net/canonical-kernel-team/ppa/ubuntu/pool/main/l/linux-signed-azure-5.15" + "http://ppa.launchpad.net/canonical-kernel-team/unstable/ubuntu/pool/main/l/linux-azure-5.15" + "http://ppa.launchpad.net/canonical-kernel-team/bootstrap/ubuntu/pool/main/l/linux-azure-5.15" +) + +package_prefixes linux-image linux-modules linux-modules-extra + +getall amd64 azure +getall arm64 azure + +# Ports arches and flavours. diff --git a/debian.azure-5.15/etc/kernelconfig b/debian.azure-5.15/etc/kernelconfig new file mode 100644 index 0000000000000..2f07ffc6a95ce --- /dev/null +++ b/debian.azure-5.15/etc/kernelconfig @@ -0,0 +1,7 @@ +if [ "$variant" = "ports" ]; then + archs="" + family='ports' +else + archs="amd64 arm64" + family='ubuntu' +fi diff --git a/debian.azure-5.15/etc/update.conf b/debian.azure-5.15/etc/update.conf new file mode 100644 index 0000000000000..59b21f2d69414 --- /dev/null +++ b/debian.azure-5.15/etc/update.conf @@ -0,0 +1,8 @@ +# WARNING: we do not create update.conf when we are not a +# derivative. Various cranky components make use of this. +# If we start unconditionally creating update.conf we need +# to fix at least cranky close and cranky rebase. +RELEASE_REPO=git://git.launchpad.net/~canonical-kernel/ubuntu/+source/linux-azure/+git/jammy +SOURCE_RELEASE_BRANCH=master-next +DEBIAN_MASTER=debian.azure +BACKPORT_SUFFIX=~20.04 diff --git a/debian.azure-5.15/modprobe.d/common.conf b/debian.azure-5.15/modprobe.d/common.conf new file mode 100644 index 0000000000000..734054dc30e3d --- /dev/null +++ b/debian.azure-5.15/modprobe.d/common.conf @@ -0,0 +1,7 @@ +# LP:1434842 -- disable OSS drivers by default to allow pulseaudio to emulate +blacklist snd-mixer-oss +blacklist snd-pcm-oss +# LP:1708699 -- prevent RDMA drivers from being hot plugged +install vmbus:3daf2e8ca732094bab99bd1f1c86b501 true +# LP:1712915 -- [Hyper-V] linux-azure: rdma_ucm should autoload on HPC images +softdep hv_network_direct_* post: rdma_ucm diff --git a/debian.azure-5.15/reconstruct b/debian.azure-5.15/reconstruct new file mode 100644 index 0000000000000..377528245d735 --- /dev/null +++ b/debian.azure-5.15/reconstruct @@ -0,0 +1,166 @@ +# Recreate any symlinks created since the orig. +chmod +x 'arch/s390/tools/gcc-thunk-extern.sh' +chmod +x 'debian.azure-5.15/scripts/helpers/copy-files' +chmod +x 'debian.azure/scripts/helpers/copy-files' +chmod +x 'debian/cloud-tools/hv_get_dhcp_info' +chmod +x 'debian/cloud-tools/hv_get_dns_info' +chmod +x 'debian/cloud-tools/hv_set_ifconfig' +chmod +x 'debian/rules' +chmod +x 'debian/scripts/abi-check' +chmod +x 'debian/scripts/config-check' +chmod +x 'debian/scripts/control-create' +chmod +x 'debian/scripts/dkms-build' +chmod +x 'debian/scripts/dkms-build--nvidia-N' +chmod +x 'debian/scripts/dkms-build-configure--zfs' +chmod +x 'debian/scripts/file-downloader' +chmod +x 'debian/scripts/link-headers' +chmod +x 'debian/scripts/misc/annotations' +chmod +x 'debian/scripts/misc/arch-has-odm-enabled.sh' +chmod +x 'debian/scripts/misc/final-checks' +chmod +x 'debian/scripts/misc/find-missing-sauce.sh' +chmod +x 'debian/scripts/misc/fips-checks' +chmod +x 'debian/scripts/misc/fw-to-ihex.sh' +chmod +x 'debian/scripts/misc/gen-auto-reconstruct' +chmod +x 'debian/scripts/misc/getabis' +chmod +x 'debian/scripts/misc/git-ubuntu-log' +chmod +x 'debian/scripts/misc/insert-changes' +chmod +x 'debian/scripts/misc/insert-mainline-changes' +chmod +x 'debian/scripts/misc/insert-ubuntu-changes' +chmod +x 'debian/scripts/misc/kernelconfig' +chmod +x 'debian/scripts/misc/migrate-annotations' +chmod +x 'debian/scripts/misc/retag' +chmod +x 'debian/scripts/misc/splitconfig.pl' +chmod +x 'debian/scripts/misc/tristate.sh' +chmod +x 'debian/scripts/misc/update-aufs.sh' +chmod +x 'debian/scripts/module-check' +chmod +x 'debian/scripts/module-inclusion' +chmod +x 'debian/scripts/module-signature-check' +chmod +x 'debian/scripts/retpoline-check' +chmod +x 'debian/scripts/retpoline-extract' +chmod +x 'debian/scripts/retpoline-extract-one' +chmod +x 'debian/scripts/sign-module' +chmod +x 'debian/templates/extra.postinst.in' +chmod +x 'debian/templates/extra.postrm.in' +chmod +x 'debian/templates/headers.postinst.in' +chmod +x 'debian/templates/image.postinst.in' +chmod +x 'debian/templates/image.postrm.in' +chmod +x 'debian/templates/image.preinst.in' +chmod +x 'debian/templates/image.prerm.in' +chmod +x 'debian/tests-build/check-aliases' +chmod +x 'debian/tests/rebuild' +chmod +x 'debian/tests/ubuntu-regression-suite' +chmod +x 'drivers/watchdog/f71808e_wdt.c' +chmod +x 'scripts/pahole-flags.sh' +chmod +x 'scripts/pahole-version.sh' +chmod +x 'tools/testing/selftests/net/fib_nexthop_nongw.sh' +chmod +x 'tools/testing/selftests/netfilter/conntrack_vrf.sh' +chmod +x 'update-dkms-versions' +chmod +x 'update-version-dkms' +# Remove any files deleted from the orig. +rm -f 'Documentation/devicetree/bindings/ata/ahci-ceva.txt' +rm -f 'Documentation/devicetree/bindings/phy/amlogic,meson-g12a-usb2-phy.yaml' +rm -f 'Documentation/devicetree/bindings/phy/amlogic,meson-g12a-usb3-pcie-phy.yaml' +rm -f 'Documentation/networking/decnet.rst' +rm -f 'arch/alpha/include/asm/bugs.h' +rm -f 'arch/arm64/boot/dts/broadcom/bcm4908/Makefile' +rm -f 'arch/arm64/boot/dts/broadcom/bcm4908/bcm4906-netgear-r8000p.dts' +rm -f 'arch/arm64/boot/dts/broadcom/bcm4908/bcm4906-tplink-archer-c2300-v1.dts' +rm -f 'arch/arm64/boot/dts/broadcom/bcm4908/bcm4906.dtsi' +rm -f 'arch/arm64/boot/dts/broadcom/bcm4908/bcm4908-asus-gt-ac5300.dts' +rm -f 'arch/arm64/boot/dts/broadcom/bcm4908/bcm4908.dtsi' +rm -f 'arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi' +rm -f 'arch/arm64/boot/dts/qcom/apq8096-db820c.dtsi' +rm -f 'arch/arm64/boot/dts/qcom/msm8916-mtp.dtsi' +rm -f 'arch/arm64/boot/dts/qcom/msm8996-mtp.dtsi' +rm -f 'arch/hexagon/include/asm/timer-regs.h' +rm -f 'arch/ia64/include/asm/bugs.h' +rm -f 'arch/m68k/include/asm/bugs.h' +rm -f 'arch/parisc/include/asm/bugs.h' +rm -f 'arch/powerpc/include/asm/bugs.h' +rm -f 'arch/powerpc/include/uapi/asm/bpf_perf_event.h' +rm -f 'arch/sh/include/asm/bugs.h' +rm -f 'arch/sparc/include/asm/bugs.h' +rm -f 'arch/um/include/asm/bugs.h' +rm -f 'arch/xtensa/include/asm/bugs.h' +rm -f 'crypto/blake2s_generic.c' +rm -f 'crypto/memneq.c' +rm -f 'drivers/acpi/fan.c' +rm -f 'drivers/block/sx8.c' +rm -f 'drivers/bus/mhi/core/Makefile' +rm -f 'drivers/bus/mhi/core/boot.c' +rm -f 'drivers/bus/mhi/core/debugfs.c' +rm -f 'drivers/bus/mhi/core/init.c' +rm -f 'drivers/bus/mhi/core/internal.h' +rm -f 'drivers/bus/mhi/core/main.c' +rm -f 'drivers/bus/mhi/core/pm.c' +rm -f 'drivers/bus/mhi/pci_generic.c' +rm -f 'drivers/counter/counter.c' +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/iio/adc/stx104.c' +rm -f 'drivers/infiniband/hw/irdma/status.h' +rm -f 'drivers/input/serio/i8042-x86ia64io.h' +rm -f 'drivers/net/ethernet/microsoft/mana/gdma.h' +rm -f 'drivers/net/ethernet/microsoft/mana/hw_channel.h' +rm -f 'drivers/net/ethernet/microsoft/mana/mana.h' +rm -f 'drivers/net/ethernet/microsoft/mana/shm_channel.h' +rm -f 'drivers/net/vxlan.c' +rm -f 'drivers/of/of_net.c' +rm -f 'drivers/pinctrl/ralink/pinctrl-rt2880.c' +rm -f 'drivers/pinctrl/ralink/pinmux.h' +rm -f 'drivers/platform/x86/hp-wmi.c' +rm -f 'drivers/platform/x86/hp_accel.c' +rm -f 'drivers/platform/x86/i2c-multi-instantiate.c' +rm -f 'drivers/platform/x86/intel/int3472/intel_skl_int3472_clk_and_regulator.c' +rm -f 'drivers/platform/x86/intel/int3472/intel_skl_int3472_common.c' +rm -f 'drivers/platform/x86/intel/int3472/intel_skl_int3472_common.h' +rm -f 'drivers/platform/x86/intel/int3472/intel_skl_int3472_discrete.c' +rm -f 'drivers/platform/x86/intel/int3472/intel_skl_int3472_tps68470.c' +rm -f 'drivers/platform/x86/tc1100-wmi.c' +rm -f 'drivers/staging/most/dim2/sysfs.c' +rm -f 'drivers/usb/typec/tcpm/tcpci.h' +rm -f 'fs/io-wq.c' +rm -f 'fs/io-wq.h' +rm -f 'fs/io_uring.c' +rm -f 'include/asm-generic/bugs.h' +rm -f 'include/linux/counter_enum.h' +rm -f 'include/net/dn.h' +rm -f 'include/net/dn_dev.h' +rm -f 'include/net/dn_fib.h' +rm -f 'include/net/dn_neigh.h' +rm -f 'include/net/dn_nsp.h' +rm -f 'include/net/dn_route.h' +rm -f 'include/trace/events/random.h' +rm -f 'include/uapi/linux/dn.h' +rm -f 'include/uapi/linux/netfilter_decnet.h' +rm -f 'kernel/futex.c' +rm -f 'net/decnet/Kconfig' +rm -f 'net/decnet/Makefile' +rm -f 'net/decnet/README' +rm -f 'net/decnet/af_decnet.c' +rm -f 'net/decnet/dn_dev.c' +rm -f 'net/decnet/dn_fib.c' +rm -f 'net/decnet/dn_neigh.c' +rm -f 'net/decnet/dn_nsp_in.c' +rm -f 'net/decnet/dn_nsp_out.c' +rm -f 'net/decnet/dn_route.c' +rm -f 'net/decnet/dn_rules.c' +rm -f 'net/decnet/dn_table.c' +rm -f 'net/decnet/dn_timer.c' +rm -f 'net/decnet/netfilter/Kconfig' +rm -f 'net/decnet/netfilter/Makefile' +rm -f 'net/decnet/netfilter/dn_rtmsg.c' +rm -f 'net/decnet/sysctl_net_decnet.c' +rm -f 'net/qrtr/qrtr.c' +rm -f 'net/sched/cls_rsvp.c' +rm -f 'net/sched/cls_rsvp.h' +rm -f 'net/sched/cls_rsvp6.c' +rm -f 'net/sched/cls_tcindex.c' +rm -f 'net/xfrm/xfrm_interface.c' +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/pmu-events/arch/powerpc/power10/floating_point.json' +rm -f 'tools/perf/util/bpf_skel/bperf.h' +exit 0 diff --git a/debian.azure-5.15/rules.d/amd64.mk b/debian.azure-5.15/rules.d/amd64.mk new file mode 100644 index 0000000000000..e551c6edba402 --- /dev/null +++ b/debian.azure-5.15/rules.d/amd64.mk @@ -0,0 +1,24 @@ +human_arch = 64 bit x86 +build_arch = x86 +header_arch = $(build_arch) +defconfig = defconfig +flavours = azure +build_image = bzImage +kernel_file = arch/$(build_arch)/boot/bzImage +install_file = vmlinuz +loader = grub +vdso = vdso_install +no_dumpfile = true +uefi_signed = true +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_bpftool = true +do_tools_x86 = true +do_tools_hyperv = true +do_extras_package = true +do_tools_common = false +do_libc_dev_package=false +disable_d_i=true +do_source_package = false +do_doc_package = false diff --git a/debian.azure-5.15/rules.d/arm64.mk b/debian.azure-5.15/rules.d/arm64.mk new file mode 100644 index 0000000000000..0340d3b7e07e8 --- /dev/null +++ b/debian.azure-5.15/rules.d/arm64.mk @@ -0,0 +1,24 @@ +human_arch = ARMv8 +build_arch = arm64 +header_arch = arm64 +defconfig = defconfig +flavours = azure +build_image = Image.gz +kernel_file = arch/$(build_arch)/boot/Image.gz +install_file = vmlinuz +loader = grub +vdso = vdso_install +no_dumpfile = true +uefi_signed = true +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_bpftool = true +do_tools_x86 = false +do_tools_hyperv = true +do_extras_package = true +do_tools_common = false +do_libc_dev_package=false +disable_d_i=true +do_source_package = false +do_doc_package = false diff --git a/debian.azure-5.15/rules.d/hooks.mk b/debian.azure-5.15/rules.d/hooks.mk new file mode 100644 index 0000000000000..94db6b78d4982 --- /dev/null +++ b/debian.azure-5.15/rules.d/hooks.mk @@ -0,0 +1 @@ +do_enforce_all = true diff --git a/debian.azure-5.15/scripts/helpers/copy-files b/debian.azure-5.15/scripts/helpers/copy-files new file mode 100755 index 0000000000000..a1f43dc48f798 --- /dev/null +++ b/debian.azure-5.15/scripts/helpers/copy-files @@ -0,0 +1,67 @@ +#!/bin/bash -eu + +if [ -f debian/debian.env ]; then + # shellcheck disable=SC1091 + . debian/debian.env +fi + +if [ ! -d "${DEBIAN}" ]; then + echo You must run this script from the top directory of this repository. + exit 1 +fi + +CONF="${DEBIAN}"/etc/update.conf +if [ -f "${CONF}" ]; then + # shellcheck disable=SC1090 + . "${CONF}" +fi + +FOREIGN_ARCHES="" +LOCAL_CONF="${DEBIAN}/etc/local.conf" +if [ -f "${LOCAL_CONF}" ]; then + # shellcheck disable=SC1090 + . "${LOCAL_CONF}" +fi + +SKIP_RULES_D=${SKIP_RULES_D:-} + +# +# Pick up any master branch changes to udeb modules or firmware. +# +rsync -avc --delete "${DEBIAN_MASTER}/d-i/" "${DEBIAN}/d-i" + +# +# Update configs from master +# +#rsync -avc --delete "${DEBIAN_MASTER}/config/" "${DEBIAN}/config" + +# +# Update package and DTB settings from master. +# +if [ -z "${SKIP_RULES_D}" ] ; then + rsync -avc "${DEBIAN_MASTER}/rules.d/"*.mk "${DEBIAN}/rules.d/" +fi + +# Remove the .mk files from the arch's that are not supported +for i in ${FOREIGN_ARCHES} +do + rm -f "${DEBIAN}/rules.d/${i}.mk" + git rm -f --ignore-unmatch "${DEBIAN}/rules.d/${i}.mk" || true +done + +# +# Update modprobe.d from master +# +# Some releases (trusty) don't have this directory, and rsync would fail +# without this check. +if [ -d "${DEBIAN}/modprobe.d/" ]; then + rsync -avc --delete "${DEBIAN_MASTER}/modprobe.d/" "${DEBIAN}/modprobe.d" +fi + +cp -p "${DEBIAN_MASTER}/control.d/"*.inclusion-list "${DEBIAN}/control.d" + +cp -p "${DEBIAN_MASTER}/reconstruct" "${DEBIAN}/reconstruct" + +if [ -x "${DEBIAN}/scripts/helpers/local-mangle" ]; then + "./${DEBIAN}/scripts/helpers/local-mangle" +fi diff --git a/debian.azure-5.15/tracking-bug b/debian.azure-5.15/tracking-bug new file mode 100644 index 0000000000000..e1fbeb4296027 --- /dev/null +++ b/debian.azure-5.15/tracking-bug @@ -0,0 +1 @@ +2055986 s2024.02.05-1 diff --git a/debian.azure-5.15/variants b/debian.azure-5.15/variants new file mode 100644 index 0000000000000..e919e50a3d065 --- /dev/null +++ b/debian.azure-5.15/variants @@ -0,0 +1,3 @@ +-- +-cvm +-edge diff --git a/debian.azure/abi/abiname b/debian.azure/abi/abiname new file mode 100644 index 0000000000000..9a9755e49a163 --- /dev/null +++ b/debian.azure/abi/abiname @@ -0,0 +1 @@ +1058 diff --git a/debian.azure/abi/amd64/azure b/debian.azure/abi/amd64/azure new file mode 100644 index 0000000000000..623d586be14ce --- /dev/null +++ b/debian.azure/abi/amd64/azure @@ -0,0 +1,19931 @@ +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x92cd0f33 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xad08a905 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xf40686fe crypto_cipher_encrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x1729a921 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x23ce8f08 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2654bded cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x48e4e307 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x57312dd0 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x58f0a8fe cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x64f34cd8 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6e898762 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x73b01942 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7c09141c devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9952565b devm_cxl_add_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9ae362ff __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa259443b to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb87b6523 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdb66affc cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe31b8bc7 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe90e74df cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf8493c74 devm_cxl_add_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 +EXPORT_SYMBOL arch/x86/crypto/curve25519-x86_64 0x3c74a43e curve25519_base_arch +EXPORT_SYMBOL arch/x86/crypto/curve25519-x86_64 0xc832c670 curve25519_arch +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 0xb39769c6 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 +EXPORT_SYMBOL crypto/ecc 0x1a5faa3a vli_mod_inv +EXPORT_SYMBOL crypto/ecc 0x4c281912 vli_is_zero +EXPORT_SYMBOL crypto/ecc 0x671f7aa5 ecc_is_key_valid +EXPORT_SYMBOL crypto/ecc 0x7c0fbb00 vli_mod_mult_slow +EXPORT_SYMBOL crypto/ecc 0x8261eccb ecc_get_curve25519 +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xb10fc19e ecc_get_curve +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +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 0x112ec938 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x38fdad72 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x87d11928 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xcc4e4e0f crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xf6ac150b crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0xfaf8ae3e crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/sha3_generic 0x8fa0012f crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xb60546a9 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0xd400e091 crypto_sha3_init +EXPORT_SYMBOL crypto/sm2_generic 0x835c4bef sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x2c2a640e crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0x4e1737fb crypto_sm3_final +EXPORT_SYMBOL crypto/sm3_generic 0x92370b4f crypto_sm3_update +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/acpi/video 0x702d37f4 acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xd2bc624c acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0x6ea3a65f suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0xd87a9260 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0xd8ee3fd3 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xe93fab63 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 0x018e28f9 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x170b90b6 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x172454f3 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x6f5cf56d pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x8fc1cdb3 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xa30f9d32 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xc3776f9f pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xd2e23029 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xde321927 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xea42a70a pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xeb0b0f1e pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xee1a083c pi_read_regr +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x4842f9a7 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 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5c4bbfff ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7f7cc2e6 ipmi_get_smi_info +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 0x93b0d2df ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb272e6a6 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 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/xillybus/xillybus_class 0x3a71b9c9 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x40f18991 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xd7af3205 xillybus_init_chrdev +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc52ebaeb atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xe5bda8a0 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/crypto/atmel-i2c 0xff8e09fc atmel_i2c_enqueue +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/gpu/drm/drm 0x00738a74 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x007d147b drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0106202c drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03a25134 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x041c639b drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04d494f2 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ef5a67 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x058072dc drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05a1ec42 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08659d05 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bbdb612 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0da2fb76 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eee526a drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ef57d99 drm_gem_prime_mmap +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 0x1080b7e9 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1282908e drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12f6355d drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13a6224c drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x148e74a1 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c3a31d drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17fc0a4d drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1878a824 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18a3b46d drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x191010bb drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19bc7a03 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b550029 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d44daee drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d6fb5f5 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d81ce32 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1db509a4 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e24b952 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e7772ff drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fb2eb17 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fdcd431 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2065c3bb drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x208f7c9e drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2172c64e drm_gem_handle_delete +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 0x21e9393f drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x226161c8 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22b0576f drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f654d8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x249628bb drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cf437a drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x254a372f drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27506e3a drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27922ade drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2794fb9c drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a60500 drm_object_attach_property +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 0x2baa047c drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c4ed753 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c9dd873 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d970436 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dd85d4a drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e6339ad drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eb6ae17 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eceada7 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fd87925 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x301b4f16 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3096e20c drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31033424 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3141be9a drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x324518c4 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x327b9807 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33033f10 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33aab9ae drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34566b92 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34d6d5a5 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34eda9f6 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38fc6231 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a07e2b7 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a654827 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a704f6d drm_noop +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 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d755449 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dadec2b drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e720ed3 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f0ce76d drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4003cf21 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x402106f2 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41e7d4df drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43d31d1e drm_object_property_set_value +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 0x44f452d0 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45a1468f drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c0b0ac drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4663d4e7 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46be2727 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46d44b8e drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47307e3c drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x487ec667 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48dba9bc drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x491c964d drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a33b5c5 drm_crtc_vblank_on +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 0x4aba938c drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4afe026a drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b74d929 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bce626a drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce04341 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d998f66 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dcf5519 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e1d3e02 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e42b451 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4efbf013 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x500bb90f drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x506757a1 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x511535d8 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51368bc2 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x517123d2 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521497ed drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52c62613 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52d2033f drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x533b9388 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x544be430 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54e02866 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x562ce44a drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x571be953 drm_modeset_acquire_init +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 0x58141346 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x587ea024 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59b518e4 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a64331e drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a6fffc0 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ae91fae drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5af1d8ed drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bf00e9e drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c125a38 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c7e5caf drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ccac9b8 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd8b3cb drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d731985 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dcb1608 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5de7ca76 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e8dff54 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f72a239 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f926fb7 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6089d887 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60a0074b drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60d6d589 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x622d59a2 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6258abe7 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x633b430f drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6344825e drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6368c2d1 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63d545fd drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63d8748a drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6770ff80 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x680ac94a drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68f26830 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900416d drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6921ba2f drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6951f08d drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69eb0e67 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a180475 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a204ec3 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a2b15ee drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a8f96b2 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ba1bded drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6be795b4 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6beae5f1 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6beb8a14 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c0d43df drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c3dee8b drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ca00de7 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ce1671d drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6de0b752 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e3f5b72 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e69b6ee drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x709dfc66 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x719d4c87 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71d7b11a drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73042020 drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x731bbfb0 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x732d2f56 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x735e5142 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7371a504 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74303f45 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x744b9f10 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x745ea3c4 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75458d65 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7735bc29 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78a9b675 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78e57534 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78ea3708 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78f33a03 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78f4b6fa drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7af16003 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7af61d12 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c2ae507 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c7f64da drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d0bc634 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d443330 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d583d37 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d7f1924 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ded8f3b drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e6351c5 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f9f3ea6 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81472748 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8160f97e drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81a63c67 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8289f271 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84b091f0 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85d4c991 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x860420fd drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x862a03f2 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87200a40 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x875beaae drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87e54140 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88ece72d drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8abfca5f drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ada542a drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cbc4a6c drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cdce729 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d3222d7 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d5f40f8 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ee94c6a drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fbf4e8d drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ff15035 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90732bcb drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9110d5e1 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91c4d5c6 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ee8a9d drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x931cbc0d drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x935ec48e drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93669390 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x943ffdf3 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94e94936 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x955c1dc8 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95855db7 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a645f1 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x966b038a drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9816f58e drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x988f231b drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98b04f3a drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x995b9463 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9967b2b3 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a086315 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b57dee6 drm_modeset_lock_init +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 0x9c99f6f0 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce958b2 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0d8d8a drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d5f598e drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dbad39d drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dbc12ee drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ebba417 drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f2e48e6 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f469147 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa09b76aa drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa17be69f drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1b7861c drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa26d7ba2 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa286bc76 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3f5c2b7 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5280b93 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa57d6e3c drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5e3cac2 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa67f6e73 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6ddd301 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8709ca6 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa45d165 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa88fb08 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaad887c6 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaccc0fcc drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad08a66d drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf739f0c drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb010dbb0 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb02340bf drm_mode_config_cleanup +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 0xb0b216da drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb165d189 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb34498de drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4050594 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4e4b14b __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4f13ad6 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb55b6874 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb63ca812 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6b6de01 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6da5d50 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb97a50d0 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9adc1c7 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbab9862d drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb82c494 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc3e9273 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf023bda drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2c3b1b3 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc354fa69 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4db9315 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4df2203 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5c85a76 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc60cfc3a drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6250a8d drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6f353d5 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc75b615d drm_atomic_add_encoder_bridges +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 0xc8c40861 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc95175cb drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc96ab9b2 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca300ecf drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca42976d drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcafbcd7b drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc8b19bd drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccfdf691 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccffc90e devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce1d082a drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce2628f2 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce5c5981 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xceb3664a drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcefe3489 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfc6610e drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfdb65c7 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0dfd9d2 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1523e2b drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2fd0837 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd359a771 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3621f0b drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3f9b6ec drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4b7181d drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4ea5398 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6374bcd drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd766a87d drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7fccdb0 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd82d79fd drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8c13d92 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8e1a943 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8e8c125 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd98ea5ce __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad55310 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc602650 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc812041 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd671fc8 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddfdb44c drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdeb60bd6 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf01fbe0 drm_gem_vunmap +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 0xe02347a7 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe02ded03 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe06a07b0 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe281b2a6 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2aa8e7c drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe343d455 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe552d3ad drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe59782de drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5c00f4d drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe68be931 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7bf6af2 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7e3e22d drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7e5a1ed drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe839b854 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8595f4d drm_atomic_get_old_private_obj_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 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea200541 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea94cdcc drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaccadc4 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb3ee96b drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec85ffc2 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecd96496 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed02759d drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed4e67f2 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeda2b989 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedd081fa drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee8b5d00 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef71b811 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0bbbaae drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0c5a462 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0d09330 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0e9525b drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0f65aba drm_i2c_encoder_commit +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 0xf234fa54 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf24d6162 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf25bfc83 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2bfdcbe drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3b47bda __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf44b774f drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf44df013 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf48ece8d drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf62b3c83 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7bf015d drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8438fa5 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf86fbf16 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf91811db drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9825941 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa5dbc91 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb6b5fbb drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc486afc drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc702dbe drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd2aa8f4 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd363e9f drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd6bf987 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffcb9cf8 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x016b8a9e drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05bf0fa2 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06af5d8d drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0759a1fb drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x078a9c17 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07b1632d drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07b2c37d drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0824ee62 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0856565d drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a13deab drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dd310e0 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e255771 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fd10740 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ff41999 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1166c6bf drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11ae0e2c drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11c8bc41 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11fca973 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x136aa1be drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14da2cd7 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x154054af drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16c7e18a drm_atomic_get_mst_topology_state +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 0x17b9a7af drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x190ac868 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a966014 drm_dp_set_phy_test_pattern +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 0x1bca52ad drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e4fc591 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ff9cbdf drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20ce6ce0 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x213b540f drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21b516f3 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22cac77a drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22da3a58 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23bf477f drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25274c15 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2532e3cd drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26ee6218 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26f3e35d __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x278fd0d7 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x299538e8 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29eda697 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ad2852b drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c7fbd3e __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cd2b0d8 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cee4536 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cf8ecc6 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e24b605 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ed7d65a drm_edp_backlight_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 0x312b2c00 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3162b5ec drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31a32857 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32afb158 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33176b35 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36deda77 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36fbcd84 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x375e6d17 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37c77a3c devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38d46947 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x398bc3d8 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fa27507 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ffc960f drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40f748c5 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x410ec578 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41265da9 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4148fe62 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x419e3798 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x428a5af5 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43021c3e drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44477320 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x445913ca drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47cbaf43 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x491e2fce drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4999d9ec drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b14e991 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b1a6c4a drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b4d25f2 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c0f0def drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4caef909 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e670125 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4eaface4 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4eb84321 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f34a24c drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x502574f2 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x507b5d3d drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50e6d0c9 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50f173e0 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52a68948 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52d836b2 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53a0aaaa drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53a23284 __drm_gem_destroy_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 0x565d5f2b drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56fa3202 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x571ae1ff drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5823d0d9 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58c1513c drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x593b5f87 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59d0b2a5 drm_atomic_helper_connector_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 0x5a1d04fd drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a2d921a drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ad6f64e drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b17a952 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5be3ac5f drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cea1cf6 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d5613b3 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5df949d5 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e712922 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e78efd3 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x611f59d3 drm_dp_pcon_hdmi_link_mode +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 0x64d9cf80 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65ecd348 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x668dd619 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66b68026 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66e496aa drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x670cf335 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6742549d drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x698a6787 drm_edp_backlight_set_level +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 0x6df7c24a drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ecffcba drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f2b94ee drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f581d43 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fc7f37a drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fdf63d7 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ff48db1 drm_dp_read_lttpr_phy_caps +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 0x74ca3e31 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74df429a drm_lspcon_get_mode +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 0x7ae669d0 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c3e1b79 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c6e8b4d drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d4aac85 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d74aaaa drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f39ac31 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f722f4a drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fd0e5b6 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80db7bb4 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8124961f drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81ba832b drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x835c4484 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83995b04 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87331791 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87dc8e0b drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87e1101e drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x882fd7cd drm_atomic_helper_wait_for_fences +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 0x8a3c84dc drm_dp_mst_topology_state_funcs +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 0x8e0e8226 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ec40025 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8eff08f2 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x904f943c drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90dd5d39 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90ff588e drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x919585cb drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9257d99a drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93b251ee __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93e10b43 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x943b945b drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94dc2e96 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x957db68c __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96385fb6 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97cf1788 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97e7ca7d __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98142a99 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x981d03c3 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98488217 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x986744e1 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98f28d51 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99faca1a drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c502623 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c8f9f15 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d41c573 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d7a4391 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dde9ad6 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9eb76a67 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1afc160 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1d43b2d drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1dba647 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1e000f1 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa553e344 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa66f31a6 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa71dc1f9 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7362fa2 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa0c9741 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa961a00 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacdcd3ce drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadc2cb1f drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb18a93db drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb27eb995 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3a15e8e drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5d46d5c drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9ce729b drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb756ebe drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbcc4b3c drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbf7aa81 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdf6cebf drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe58b20e drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe66be34 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbec4265f drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbed0eed8 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf5d7a5a drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfc15ef4 __drm_atomic_helper_connector_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 0xc11c5fd5 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1f05ce8 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2455748 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc397165a drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc54c26b7 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc60eee97 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc823afd7 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc827b5d5 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc91d8214 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc925602b drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc977e7c5 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca9e120f drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb41b5c6 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb53407f drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb5f4feb drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc556cd4 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfe468af drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0b9367a drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd21f419b drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3d38f74 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd440a788 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4be3a11 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4ef6afe drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd51510fb drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd95250c0 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdce936b1 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd38b8db drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde7911f2 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf81e555 drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe000bbe0 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe28132f5 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5a676ff drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7197aaa drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe98406fe drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe98e16d0 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea1ee5dc drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeca3cebc drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed2d4ba9 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee9a8a1b drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef3bab8d drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1e84de9 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2803043 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2c66e9c drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf401e5cd drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4291df9 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4b6ba45 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf577d416 drm_helper_connector_dpms +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 0xf7d195e7 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf837009d drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8e6ef8c drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf94d4a37 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf96a2a0c drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa2c273d drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfad9bc55 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb83506e drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcdb138e drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdae7d97 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdd5adbb __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfed197c4 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x04314dc2 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0c856e3f mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1a8ad976 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1cff87ac mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2bc10d8d mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2ec9959b mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3edf9a68 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x562cf1ab mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8b558ad3 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8bc1ec26 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x937cca91 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa1ed5e15 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xaf351a3d mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc0d2402b mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcca250b2 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xddcc3f4a mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe4f288c7 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x1d6d9ca6 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x856a0469 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x96703fea drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc1ae6d81 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xce70983d drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0d270a96 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x138bad82 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x28c88a7c drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2da01a01 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x33cf3449 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3559f26f drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x35853cfe drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x550aff37 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5d73bc4d drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6ff0d56a drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa0f1f604 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa73311fe drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xca26cded drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xccef983b drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdd9bfe4a drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf27edf9d drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x005ae40d drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x02002736 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x04f7a672 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1b44d04c drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1b7e4322 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2e59fa27 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2e69fe10 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x36b59e74 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x512a5a19 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5576a9fc drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x610d5063 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x721ee1a9 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x72cf264f drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x79ec47f4 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8816b150 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9129f0dd drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x99c11c6f drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9f9d4e39 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa4722a2e to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcc6effe4 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcf57bd57 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe0d22692 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xeb591c0d drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xef36ac58 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0caa6440 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e7a110f ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x124e31e7 ttm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1449558c ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x186979cb ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x19b0e694 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c19fa1e ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x257a7970 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25aa4bf6 ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2602a4c5 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28b3f582 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2bdf02cf ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x330d346c ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x335c755c ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3369194d ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33b6c643 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37356e3c ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e7ee61b ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4666818b ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4717cbc8 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a3d0021 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c26a3dd ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e7051e6 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4fc3deca ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59a53ae9 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x608636dc ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6536031b ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68c841d4 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b9db288 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ea3f6cd ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x71bb050a ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73bd7312 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7de98a98 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e7b6a2b ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f8cb22e ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84692eca ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87b04609 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88398ad5 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9154a396 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x934cccfc ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9796b327 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2d0e45b ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa92b1687 ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac4fe0ca ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7d98963 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb908565b ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbaa1ad9d ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbbe66e42 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0b69bc4 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4f14fec ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd29d7f59 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb12164d ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde126684 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4b4e460 ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf59b9d3d ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf62dbc95 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf72a0b13 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbda50b5 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x5fc2e47d ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xb7854fd6 ttm_mem_glob +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xb9310fe1 ttm_mem_global_free +EXPORT_SYMBOL drivers/hid/hid 0x259276d4 hid_bus_type +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0768bc6e ishtp_get_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x089baf75 ishtp_cl_driver_unregister +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x08f72988 ishtp_get_pci_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0c2f98b2 ishtp_bus_remove_all_clients +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1054faa7 ishtp_reset_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x13141317 ishtp_cl_flush_queues +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x14447e26 ishtp_dev_to_cl_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x14eebb33 ishtp_cl_get_tx_free_buffer_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x15582ceb ishtp_recv +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1679efc8 ishtp_cl_send +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x25d73afe ishtp_cl_rx_get_rb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x290b2607 ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x445b586f ishtp_cl_link +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x49bc7728 ishtp_cl_io_rb_recycle +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4a6d1bcb ishtp_trace_callback +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x565ac47b ishtp_reset_compl_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x585686a8 ishtp_set_connection_state +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5a7bacb0 ishtp_set_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x64c5e1a9 ishtp_fw_cl_by_uuid +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x65fcea47 ishtp_cl_driver_register +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x74960035 ishtp_set_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x75e7f703 ish_hw_reset +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7fa0aa68 ishtp_get_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x801efa25 ishtp_cl_connect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x813461f4 ishtp_get_ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x858217be ishtp_cl_free +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x873c9f9d ishtp_send_resume +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9eb2ec63 ishtp_cl_allocate +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa04ff4f3 ishtp_cl_disconnect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa0c98057 ishtp_cl_tx_empty +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa4a231dc ishtp_send_suspend +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa5ba6b02 ishtp_fw_cl_get_client +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb0427b51 ishtp_register_event_cb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb9d7df43 ishtp_get_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc10e1adf ishtp_cl_unlink +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc600a13c ishtp_device_init +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd3002122 ishtp_cl_get_tx_free_rings +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd66c776d ishtp_cl_set_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdd1daea1 ishtp_set_rx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xddc7707b ishtp_put_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf2886a3f ishtp_set_tx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf5dc65a7 ishtp_start +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 0x71290f53 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 0x067b22e4 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb8c57f8b i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xed444247 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x66058fe3 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xfa82f7c6 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x2cb46b2e amd756_smbus +EXPORT_SYMBOL drivers/i2c/i2c-core 0x02d9e30f i2c_smbus_read_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x06a9bc2c i2c_clients_command +EXPORT_SYMBOL drivers/i2c/i2c-core 0x0a573a5d i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x0b37aa92 i2c_verify_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0x115e575a i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x1c09558f i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x1ede8854 i2c_del_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x215a225f __i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x2a2c8a75 i2c_smbus_write_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x4a071218 i2c_put_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x557ee117 i2c_del_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x5c32779c i2c_get_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x66639c44 i2c_smbus_read_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x66fcc155 i2c_smbus_write_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x70d3ac6a i2c_register_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x745a39a0 i2c_add_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x78a8d22a i2c_verify_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x950e094d i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa5bca0fc i2c_transfer_buffer_flags +EXPORT_SYMBOL drivers/i2c/i2c-core 0xbbcf42d5 i2c_smbus_write_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0xbe377302 i2c_smbus_read_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0xc825a22b i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL drivers/i2c/i2c-core 0xebd6b2ec __i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xed0a708e i2c_smbus_write_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL drivers/i2c/i2c-core 0xfc9561b5 i2c_smbus_read_block_data +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2b753201 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x30329eba ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x31378899 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x343200e2 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x447de002 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4a4bd5d5 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x59bd238a ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69212ff0 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8d7ff62f ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x90b5f800 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa6ba659a ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbbfadad6 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc131d834 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcafd905e ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeae13972 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x006c701a rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00d7f230 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00ec8d6c ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x012f144a ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01b637bc rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0709cc4f ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09fc842d rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a37b776 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bc9fe27 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d7313b2 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dc29b86 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e018524 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e71cb76 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ed9e35e ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13b621b9 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13dc3aaf ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a698fe6 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b682e2f rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e4ac5d9 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ff7bd44 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2002a25a ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x204474e8 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x210b719d ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22c23ab9 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2852b8ea rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bef1464 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ceb1910 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d700d76 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30c7af1a ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35113d1e ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36a6faee ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3baec9aa rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bd30366 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3deab12c ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e9f85a0 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f971cd9 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f9c1af6 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fa4682b ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x422c1356 ib_qp_usecnt_inc +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 0x441e1529 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45224a35 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46a18262 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4830ccb8 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b6aa09d ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bb421a1 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c40fe75 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e63e011 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f6c9bd6 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x510d2546 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52b5a5fa ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52ba2294 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5512ac31 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55218073 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56600f46 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56ed274d rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57411505 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58675f7f ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d7682d9 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e6b3c9c ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fdbe794 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x607f1275 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x610e4abf rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6174eba7 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6182ae7c ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67751d13 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67ef7936 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68df0b77 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b82c964 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e4b9dd4 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e7e6b79 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x707ef771 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x708cfa43 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71fd9382 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72dddcd7 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x743c1d89 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x769220c9 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x782fef15 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79602f9a rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ad04624 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x829cd071 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84bb6939 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87460202 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x881be52c rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88636f85 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8972f886 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89b7fdec ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89c7003a rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d44a31a rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e5fa233 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8eb2a3c4 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f5fd1f7 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90c7adbd ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90d79c04 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9106585e ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9161d764 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9333eb8b ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x942fc121 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x991e5e5b rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99a60e26 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ad59a4d rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b6fd628 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c4b7b33 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cfb2079 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d5c9588 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9df828ca rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e2f90a6 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa025ae34 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0be907a ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0cd193e roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0de60d7 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa25cb254 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3ef97b8 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5473a8e ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7428438 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7d9c76c ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8e282f8 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa986e9a3 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf937e1d rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafd08a7f ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb05a02cb rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0a88c89 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb10d6d15 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1139896 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1748eba rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1e913e5 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb381fc6e ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb457f118 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb488ad65 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb60093b9 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7ce4323 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb82c7bd6 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9fc4c8b rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdf5711a rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3095fde rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc37f82b8 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3d5cd36 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc66aaffb ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc902e1ec ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9a9ac91 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca577412 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb6d07b4 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbca9ea7 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbeb3841 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcccf5b1f rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf69f8d5 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd24a8e7e rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2ab1750 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd323c30d ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd555c7b6 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd569db48 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5cc777b ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5d760d6 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5e3ae68 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6964ce3 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7723237 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7f72e02 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8797f6b ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd89b016f ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8e9162f ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda191e43 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb4a2104 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbd7ca5d rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc145b08 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd8321d3 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde5e9069 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4e1dcfc rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe52e383a ibdev_notice +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 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe831d900 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9a9ebef rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9b291ea ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeaf0af90 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb1e40ae ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeef1c8ca ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef50fcea ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef8972ec ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2776e55 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4762d60 __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf499c610 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5970efd ib_qp_usecnt_dec +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 0xf81b00ef rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf84014c2 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8e1e32a ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfaf3509b ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc3d9256 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfca51c0f rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd888cda rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfde35510 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff34de52 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x00ae83b3 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x00c04e69 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0fcf0740 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x12888839 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1c51feef _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x326085a8 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4b4c9c56 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4c8c81ff ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4dfbe1d6 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53da9601 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6505ec4f ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x68b7670f ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x74466153 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7e2a6ab7 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7e3dbdb8 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x80ca87b0 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x80d16cf1 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x92600470 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x96c3ba80 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9947103e ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9d38e537 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9e6a294d ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xafa880d1 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc63c1ca0 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc99c3409 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcd57eea7 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcf3b1cc0 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd3034403 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd889df53 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xda4eb0a4 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe13d6748 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe36d9b26 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3a2ec4a ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3f16558 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf5ec9b32 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfe2b3a55 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2177d3f5 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4255326f iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8d16c911 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x920438df iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbd852577 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe368bcc8 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe71cc7d0 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfc2972d9 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x05b79df0 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1285995f rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x187d9788 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f0b5c98 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2653ea44 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2f0b0295 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a12a85d rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4026ba11 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x47e0364c rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4a108f93 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4c5e7a21 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x509cbe00 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x54540155 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5d242c44 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x66fdc952 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x870f5956 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x903996e7 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x929d3b5c rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x96d07d18 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9a290699 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9badafd8 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9ec0da55 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa397c5de __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf8392d5 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb412fc80 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc09e3ec8 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc54781c7 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc536c73 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xed402784 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf75b6bbe rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf97275cd rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfb3dec01 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfcc951a8 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfd016956 rdma_connect +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x038f8927 rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1fc93ed0 rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x27cfef67 rvt_add_rnr_timer +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x28313683 rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2f7e9814 rvt_compute_aeth +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x31ed7ea7 rvt_rc_error +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x49e2cdaa rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x58f89927 rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5bbe217e rvt_copy_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5cbcf30a rvt_qp_iter_next +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6e387483 rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6f4b14c7 rvt_get_rwqe +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7ea936c1 rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x81f12719 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8476b099 rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x84cea52f rvt_ruc_loopback +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x85fa36ab rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8d3166bb rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8ff1946d rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xaf6fb319 rvt_del_timers_sync +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb7ee98b2 rvt_rc_rnr_retry +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb80ed6d5 rvt_restart_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xbeff5c0f rvt_qp_iter_init +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc9e0bc00 rvt_send_complete +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd6525ea5 rvt_add_retry_timer_ext +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xda198433 rvt_get_credit +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe72054c6 rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe8395535 rvt_stop_rc_timers +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf5e46114 rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xfaa82d1c rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x06ab3834 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x07ea64e7 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4f7fbb06 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4ff6c447 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9881fd3f rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc3dfc756 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd263019b rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x44d2ce60 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 0x62242742 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x6dfc7f2f rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7c6b92cb 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-server 0x23a4b14b rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x412884f2 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x6b7b6726 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa0d1eab8 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc9d54cb1 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xff29486a rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/input/matrix-keymap 0xd176dbec matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/sparse-keymap 0x00123ee1 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x37f7e5f8 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7d09f729 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xd4411baf sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfbc40f82 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x097b21a9 amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x15622751 amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x4f194004 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x708a77d4 amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x88102be4 amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x964df8ad amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x1a93f545 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x26372910 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/md/dm-log 0x142e5b42 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x4f03c2c6 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xb15c3039 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xbf7c8e02 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x17c4ec2d dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x327fa8af dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x355020de dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3e74bfbb dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x78f9a757 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x81f0470b dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/raid456 0x134edd9e r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0x23efe617 raid5_set_cache_size +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 0x30500e8b vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x4b8b3fb1 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-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 0xfbd237f4 vb2_querybuf +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 0x8f0b22a0 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 0xf446074f ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0xfe684ea0 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x03e19e03 v4l2_async_notifier_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x41bd37e8 v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x4ae23e7a v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb13e1273 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xbc7c47c9 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd1e9f788 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x1a07fc6c v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x1e287e9f v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x30203e74 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd94d13ad v4l2_m2m_get_vq +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 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11aa3270 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13166abb v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x17b3c0d2 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x181e0616 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20768e0c v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21d6d2f3 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2398c888 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25f46757 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28ca0f20 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2eb24cd8 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 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3fa69194 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43949d17 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4cf64b93 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5050dcf4 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x580c7b1a v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61a4d777 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6df2c4f1 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f2d3eb3 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f957dd6 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72f86475 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7384292a v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x758ba879 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75a200d5 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x76de48d4 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d34726b v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7dddef68 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8759037a v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x91c8f526 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x96dda952 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9c9470e6 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa665f2e8 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac26ffdd __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad36c489 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae6e543d __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb2d68df6 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3eae940 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb5f87dec v4l2_ctrl_notify +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 0xbec42bf3 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbed414d0 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbfac247a v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcbdde146 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce797b15 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3457252 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf82343a v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3492e6e video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb3de4ae __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xef53dbd9 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3892cc2 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf72269f9 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf8a3efc7 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xff0f7d60 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x087b8032 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0e74e807 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0f7d9d5e mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x173667cf mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x31d09d08 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3877f55d mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d9b68d6 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3dacbed3 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5c113c2c mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6461a8d1 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x72a8fc38 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x822b4a63 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8ae8d564 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x926b8236 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x92ba9f93 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9e87e3d1 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa012d23d mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa5d84236 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xac5f9413 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xae8d9964 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaea62639 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc306093 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc05cdf89 mpt_HardResetHandler +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 0xf1aecddf mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf46c0d56 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf554c20b mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf6576cc7 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf6d9c05e mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfd592018 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x00aff9bc mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x08e1dbe3 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0b697a1a mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1a5233fd mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x303050c7 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x309f4185 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x36ee9e41 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x46ba61ab mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4d3813e1 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4fa4b5bb mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x50525b30 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5feabeb7 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6092422f mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6d5c16bb mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7738bd5e mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x887b2e41 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x960a3a4f mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xae145966 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb815ab34 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb8e5fb74 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbf27cbf0 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc0a2a4b9 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc3618dc8 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdd348ce3 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe6b4eb96 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe78ffb08 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfd85c51f mptscsih_dev_reset +EXPORT_SYMBOL drivers/mfd/axp20x 0xac057797 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xced7dc33 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xf484c044 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xc1acdcc8 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe9df38e8 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x004a86f0 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x019bbfba mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1b600b47 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x29cc6b9f mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2aa470aa mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6e88c151 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6ebcfe82 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x85c2e9b8 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xae7b3ccb mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc0dd78b8 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe9ada70b mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994 0x0d7f16da wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x1e7e14f5 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x28b50895 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x2c44af6c wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x61b5792d wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x811c16d8 wm1811_regmap_config +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 0x26b66818 __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x3b0a488d __SCT__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x5fe2c8aa __traceiter_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x62435709 __traceiter_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x7f14389e __traceiter_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x9f447da9 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xb3ba6ae0 __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xc77d7c62 __SCK__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xe2f7b0dd __SCK__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xfd52a8a8 __SCK__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/tifm_core 0x09d7790e tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x302ab254 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x554f2650 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x6ab3cc3a tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x77f07f6d tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x7c1282a5 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x7f485233 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x880c40a2 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xaebebad5 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xb6424561 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xfe065043 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xfe45dd58 tifm_remove_adapter +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x019de6f1 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x09faf01c arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x10c92626 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2004bcaf arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x24fa7e2b arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x86c3da3b arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xab2f4175 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc1158fb0 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xced60d85 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe7c34b29 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfdf41b61 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x0f3e989c com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x66f454d1 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x74c160d5 com20020_check +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x016708be b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x06261cab b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x11dbcde0 b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x14c45eff b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x14fd9f71 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x176409b0 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1ac60a78 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1cdfc342 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1f7c9e34 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x23733de1 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x273c9f61 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x27df11e9 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2a90fdd6 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x315c39fb b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x39dfb3bd b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3d650352 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3f65ace3 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x484f0c52 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4bb17881 b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5ae19b43 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5afc0c70 b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x620051d7 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x728c7dce b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x85cc9bbb b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x990d8e8f b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa158fcc7 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb8c248ff b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb8cc25df b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbbfabe69 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbc01b046 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbc27c78c b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc1a90141 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc1de69c1 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc5901af0 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc83855eb b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc9f816fc b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd16fd01a b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdac7f0e7 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde2f783f b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf56a23e0 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf5c5fd76 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x03c49e1f b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x4b2ae95f b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9afd1d14 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xacdc2e46 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xe42483d6 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xf76787f2 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x18fb48e3 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x9894382f lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x9b749b46 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x75418c5f ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x4c76fd7c ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x78b5a7f1 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xb6f896ea ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xeeec12b2 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x57cd41d5 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x67ee2030 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x9b26d433 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x42ee86b4 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x4f8a0c83 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 0xad4a3570 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 0xea2d343d xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xd8a72dfa bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x1e440758 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x05e40152 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x259aff97 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x332bca2d dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x391fc3e4 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x40991f3a t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x51ce8f93 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6f7c41ba cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7709110c t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8880f380 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbc86d5f8 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbe4fd5f9 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd217d532 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdd25fec3 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe96d5bfb cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf5ca07b2 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfcf35e42 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x034a8b8c cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ac47a6a cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f78a84a cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x10a35b4f cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x14667cc1 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x165e9320 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2111a71c cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31ce5b8e cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b26528b cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c21e9c4 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x46684c2b cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4770e9c2 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47a05ecd cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x49f40dbf cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4dc94792 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x52902da3 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5621b51b cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x588f2706 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5b2bb51b cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5b4eeda7 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5f7ae5f2 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x64bef7ce cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78609852 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7896f9ca cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d53e0f2 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e2ffd20 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x906dce99 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x93e7d0c1 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x96172b73 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x98f76eb7 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99122be5 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f8165f7 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa5661b39 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa77737b3 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaff6ec4b cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb29a2631 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xba90bc26 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbba76e5f cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc079635d t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc3af599a cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xde15ed26 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe4f0f0cc cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe71083e2 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe790161f cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb25ffe6 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfef9d10e cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x311fe92a vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x55bf86e4 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x730f6868 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8f497ac3 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa2b6f495 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb83e4612 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x82fdd6e2 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xd86f6bdc be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xbbf4daea iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xe78f8fdf iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00e6fef1 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b46adb7 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b9acd5f set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x228ff284 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dbc0a96 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31bf7f85 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34a6b027 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x381348e0 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cf2efdf mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f525a3a mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45aabae2 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x529393fd mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53e54a94 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e8f31cf mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f69f5ea mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x602cdb7c mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e6de566 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fe4993c mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7376ae0e mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88d72ca0 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x925a4a22 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94838f21 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98ab913b mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x998ae590 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a4414bc mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa54d5886 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf62c0f5 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8d748e2 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd40c4b7 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1182bf5 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc25ca91d mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfe175f8 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd17f70f8 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xded738ed mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe11c02c2 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4548187 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe808a292 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed8e881c mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0531b35 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0535c51 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb29d8b2 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff140104 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff1ff3db get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff3e4d81 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00bf769d mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01d32194 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x039ad932 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0505c37e mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x067ce3e4 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0770bc9f __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ceb690c mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10013471 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x141f0573 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14a4431d __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16552cdf mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19346a5f mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a3c6fe5 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a724aff mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bb7f284 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c55aa9b mlx5_eswitch_reg_c1_loopback_enabled +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 0x1d6e4eb7 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f08d872 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21020026 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22a8dc8d mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2312b5f4 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26d8e7c4 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ad6ac11 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b7c9799 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c0376af mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ee544aa mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f9a6563 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fe7a9d3 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31200934 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x314d51cc mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33dae339 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38f7b514 __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3aaf6bc2 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d339c2b mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44408dcc mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4509707e mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x458d71a3 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45f3d59b mlx5_eswitch_get_encap_mode +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 0x49aabff9 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e1b77d4 __traceiter_mlx5_fw +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 0x51022cfb mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51549487 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52fc443a mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x534933e5 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x538526b5 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5449cef5 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54a8e0c9 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54bad430 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x557f0d76 mlx5_cmd_cleanup_async_ctx +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 0x56b063e8 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5918f486 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fcf74cb mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x607ecb25 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60880c24 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 0x60e04ae4 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6120f87a 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 0x62dc190a __SCT__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x631c4d4d __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c5d3240 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fc711e0 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7044a2ea mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7073a6cc mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72763938 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74e572f2 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x754b028f __SCK__tp_func_mlx5_fs_del_fg +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 0x7c9eb1fc __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88db5339 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e021048 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f7d6a09 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91206a4e mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x912e2eda mlx5_eswitch_vport_rep +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 0x91e302d7 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x929bbfb5 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x930aec72 __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95a8a4d2 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9604b836 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96f8249c mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98cf4c0d mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99d44434 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a6acbd4 mlx5_rsc_dump_next +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 0x9e8b045b __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ea5edee mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fb5f557 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa053bcc7 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0ce803e mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0e30b02 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa13a4d2f mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6c6c7c0 mlx5_fc_query +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 0xa7f5d2ce mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa940b824 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaad7b0f0 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaae62c47 mlx5_notifier_unregister +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 0xadd80c4d mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae0f081c mlx5_eq_notifier_unregister +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 0xb0938085 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb104edff mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1cc4ad9 mlx5_fpga_sbu_conn_sendmsg +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 0xb5338b3b mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb880035b mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba305a36 __SCK__tp_func_mlx5_fw +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 0xbbcdfc28 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc6c03c6 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdb0f4de __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc456bc39 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca86959e mlx5_add_flow_rules +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 0xd3beba7f mlx5_eq_destroy_generic +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 0xd926fa2a mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb6033f2 mlx5_core_modify_cq_moderation +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 0xdb702ab0 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc5fb54c __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc76ead1 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc772749 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdea3df21 mlx5_lag_get_slave_port +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 0xe168df86 __tracepoint_mlx5_fs_del_rule +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 0xe3b2b5ff mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe639b248 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe770a1b8 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9453bbd mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9755bd5 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe99a4c26 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9ad9046 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb2474c8 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf00c4345 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1f160c9 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1f4f027 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4476692 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf56ae41e mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf59af61a mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5b3a362 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf734dbe8 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8735d7f mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf91bf220 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa7495f9 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbe3d81c __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd3ba3c2 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe80dbdb mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff3d09fc mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfff9fd22 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x83715cc5 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 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 0x19833e0f mlxsw_core_trap_register +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 +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 0x271cff13 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2dc24996 mlxsw_env_get_module_eeprom +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 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 0x5299dfcd mlxsw_core_trap_unregister +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 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 0x6bd5cff8 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 0x7b0fa489 mlxsw_core_trap_state_set +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 0x81be32c6 mlxsw_core_ptp_transmitted +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 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 0x9148cd65 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 0x9b0f27fe 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 0x9e41f494 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa03c94cb mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa2798b84 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa36a2a82 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 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 0xbbb7a867 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc0a5f0a mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 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 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 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 0xdb2c664c mlxsw_core_port_devlink_port_get +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 0xe6efb415 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf1b449ee mlxsw_core_driver_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 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x747a8875 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xa1c86f3a mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x32ed54da mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x88ace36d mlxsw_pci_driver_register +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 +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +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 0x481cdce8 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x7670932b free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xf98d5c2a mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xfeba4589 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mii 0x273959e9 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x37185530 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x5c975d25 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x6c6a9a30 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x712ae1de mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x7e590b6e mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xaaaad25e mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xbc6ff7f2 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xe337c0d0 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xf6ae4aca mii_link_ok +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x5ef2638e bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x595c574f pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8be9bae5 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x9bc64e31 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xc0a4fd87 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/wan/hdlc 0x36ce72ec register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3dfc038c hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3e2a11c4 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4cec2d77 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x63012a59 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6db09240 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6fcd1093 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7c3da1ef alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x906a4e0f unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd26f7410 detach_hdlc_protocol +EXPORT_SYMBOL drivers/nfc/microread/microread 0x1df5ecaa microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xd6384e4c microread_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x3590100f pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xd826877a pn544_hci_probe +EXPORT_SYMBOL drivers/ntb/ntb 0x27e28861 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x2931dab9 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x2ddbb59c ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x33dc6d7f ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x3e78ffb7 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x41a0c628 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x47a73995 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x53978626 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x69bda6b2 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x727b111f ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x9009f67a ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x9ac2d34a ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x9e1b595f ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xc378fd98 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xc481a54c ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xd86b7164 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xdb93b2ae ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xe2c67fa2 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0xe343cdf2 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xeed48742 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/parport/parport 0x0172c43e parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x0bcc0958 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x0dbf1beb parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x15fa0044 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x20a97063 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x216617c9 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x222a957c parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x22d7b0f5 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x25ccacb2 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x28e69c23 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x2e6b8f3c parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x42a5b9ae parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x47a450b1 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x48c709f6 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4f8d32fc parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x5b75595e parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x662019f5 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x6def8fd3 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x71703b77 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x7171a4b4 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x7293c57a parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x83391b76 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x8db61741 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x9ff081d6 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xa993f873 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xab402102 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xc4e843c0 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xdb88c22d parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xe393187f parport_write +EXPORT_SYMBOL drivers/parport/parport 0xf3a81367 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xf3f9cb8f parport_release +EXPORT_SYMBOL drivers/parport/parport_pc 0x2c20d1d8 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xe67a6a65 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0a431c10 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0f7463db pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x37d6dfe4 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5ab95b33 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5d6842c3 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6055dbee pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x77df98bb pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8c6fde7a pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9b2be7f7 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf8a03656 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x2df75274 pccard_static_ops +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 0x374197b4 __wmi_driver_register +EXPORT_SYMBOL drivers/platform/x86/wmi 0x3c0b559d wmi_driver_unregister +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x01415882 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0405f190 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0f6009a4 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x36ca9db3 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x471581b8 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6b35ae9c rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x78ce695d rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7f45edf9 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x87c03901 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x96789986 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9fdcded1 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb35aa4f6 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb4944568 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc2105a61 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc4bba41c rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcec2892e rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfb3a2f40 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xb52f77cc rpmsg_ns_register_device +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0xb3fccde6 NCR_700_release +EXPORT_SYMBOL drivers/scsi/53c700 0xf2df0184 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x2c2c4214 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5801789f scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x69cdb16d scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xfef05353 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5661051d sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x9f63caa7 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd1739aaf sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa28acb3c mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x06c55605 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0a6d249b qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x24ec2a04 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3cb1412e qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5b87efe8 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x65f38bc0 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6e3abeb3 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8227d61b qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x936804dc qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x93eabe2b qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcb6affdd qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe7ac4c5c qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/raid_class 0x52ce59b1 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x6e41aa8e raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0e2cc08f sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1f44e2ae sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x21f6b88c scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x29a27c75 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2a5061f6 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2b95f02a sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x35148f67 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a3d9ee4 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a7d6248 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x40027e9d sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4261dc81 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x47d55a09 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6492087e sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69361e1f sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x776d9f39 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a39f88f sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7e54e495 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x82be6ea4 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c031712 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x96fa4422 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xab84219a sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xba612e27 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc21a3a2f sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc899a44d sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcb10df0b sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcf1a6be6 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdabb0677 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe6a19bc3 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf995a2ed sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x15a3f4f0 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4bf9d1d7 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa00e2ad8 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb5ed6a41 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xbd4512ce spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x00f31045 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x25bfac20 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x436c1d89 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x8fd9109c srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa9688888 srp_rport_put +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 0x1efcb0c6 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x22df299a sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x287e3038 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x38aee7ea sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5e6ac746 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5ebf28db sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6062e448 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60ad27c4 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x623f85e9 sdw_update +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 0x74ce7203 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7885f2f4 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x879aaca4 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x88e7f0d0 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8b63aaf0 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x98f9086c sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x994f7437 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9ff1b46d sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xab470470 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb125b77b sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb60e7065 sdw_stream_remove_master +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 0xbe20d9f4 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc21d8da7 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe1cc1dc1 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe678e597 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe8ec9cc7 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfd6327b8 sdw_nread +EXPORT_SYMBOL drivers/ssb/ssb 0x10948b5d ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x17c011d8 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x24cf6452 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x2b51cb0e ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x4991d2ed ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x5bdbcaeb ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x69f83481 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x6dc2cd9f ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x7bc28927 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x85a5e27e ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x8616ab81 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x8e6a3711 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x9bf946ec ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xb141a4ef ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd8093602 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xd978f115 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe558f219 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xed7f7356 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xffe0a63d ssb_dma_translation +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x00ece056 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x05235d99 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x13f79740 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1a25f901 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x24efbce5 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x34cbba37 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3f8b96d1 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4320fa4b fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4a277811 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4cb3998c fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4e58a272 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x533a2cc4 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6d525c8d fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7eaa0d5e fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x89f5f1e6 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9135dc39 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9259e784 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x96a2a3a3 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaca01595 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xafd3975f fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb02bcef8 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xce803952 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd1a3b586 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeb5ab7a5 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfcb33fff fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x00b8ef24 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0451635e iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09decc4f iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x12c30794 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x15a0f665 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x171835cd iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d479af9 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2937214e iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x31f2b392 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x344bec77 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42bacad3 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x457d0e1c iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4d2bf2f3 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4df5256c iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4ed0daf0 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x698a8354 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6cb21042 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x77118c97 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x780d13a2 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x802a2c2e iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x886e187e iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8af0a3de iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8d34465b iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e098b27 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x93bd2546 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9461dd41 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa71a89d2 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac1c5f98 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf76eab7 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb1a11013 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe41bbc9 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc04a3dff iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc9ea92d8 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcede4956 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf1deba1 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd0c028f0 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd65fe25e iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd7ef090b iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd8bd9dbf iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdc51cad5 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe00bc803 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe83c5c6a iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe9dd806e iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf2d0eb47 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/target_core_mod 0x009df420 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x00d0a9ea target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x00db5eb6 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x0663069a target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d2abd1c sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x15630cc2 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x16f18b1f transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x198800c8 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1dfc4604 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f1d6689 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x1fe08bcc spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x22faf4e4 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x27f1402d target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x28f18897 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x302635cc core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x3453721f core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x361b1762 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3cf0b560 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x3fbe0f52 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x41469c19 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x43a7db9e target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x49c6f8d1 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e5c9e3e target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x509f23ab transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x53ffb267 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x568ab7a7 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x57f7eb25 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x5981ed87 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x664e8497 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a10f133 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f41ec35 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x7273a77b transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x731c6332 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x78466916 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ac9f819 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x891bc921 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b4bd7a7 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x8dbd3c84 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f29ec50 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9286c9d5 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x949dd6e5 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x977d78da target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x991c4f3b transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x996fb48d target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x99b48947 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b9c57a4 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xa24e9fab target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3e0222e transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa606e1e5 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xa69d33f9 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xa8532bde core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xa93c4f06 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xae6e58de target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xae7c97da core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb013053e spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xb2101695 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xb598844c __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbbb914e3 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xc060950d transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4163614 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7443da6 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc92b17a4 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4f55d7b target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xda53c9cd transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xdcefa18b transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xddad29fe core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0247d79 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xe5237247 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe64cc6ca target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xea8828ae target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xecd9a245 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf8ad2089 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfda1f5e4 transport_lookup_tmr_lun +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/vfio/mdev/mdev 0x00476b82 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x2db8506f mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x55d4c76c mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x772581f1 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xbdefb0ad mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc17a814c mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xcd45cb5f mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf5e4b651 mtype_get_type_group_id +EXPORT_SYMBOL drivers/vhost/vhost 0x9a502f60 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xffcfd252 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vringh 0x0c46f5fb vringh_iov_pull_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x18f3ddc2 vringh_iov_push_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x19c24590 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x1fe50c1a vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2890c460 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2d2babc9 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x3684d8af vringh_complete_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3ee1955e vringh_init_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4504adc9 vringh_abandon_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x5bd469c0 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5f586ca2 vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x61e3831b vringh_getdesc_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x660779c8 vringh_kiov_advance +EXPORT_SYMBOL drivers/vhost/vringh 0x6a693a25 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x90e93e3c vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x9b30452e vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xa7ce8bd6 vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xa8efaeb9 vringh_set_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc0bb1581 vringh_need_notify_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc87491c8 vringh_notify_enable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xd465f463 vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xe4c21196 vringh_notify_disable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xeb2ec139 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xf1e32cc0 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0xf8605294 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xf9d0dd07 vringh_abandon_user +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x62d53d2d sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x7dc4d901 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x5ce82fa4 sys_imageblit +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x4e732e06 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xa49b34c8 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb5c34f19 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xdb6d9e03 virtio_dma_buf_attach +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 0x00fbd8e1 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x030d7c3e __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x0f59f418 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x1449c6ab __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x1753fa35 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x1d0e9e81 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x1f827366 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x2fe8e963 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x30dcc92d fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x32f71518 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x3e6c32d1 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x423a4e4d __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x437214c4 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x48bcb7c4 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x4978a71f fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x4b0ad8bd __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x583a4acd __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x5db76409 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x61ff72d4 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x678b23ca fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x6950ac81 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x6db43bcc fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7352168e __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7ade7d3c fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x8fad9289 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x976fa3f5 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x9c4d55ae fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xa43c4dfb __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xab7b75f6 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xb215a19a fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xd01ff839 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xd32857ef __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xd4cf53ff fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xdb5fafdc __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xde2b472b __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xe5bc433d __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xefd0c530 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xf05f79e9 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xf1afdd89 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xf55e65e8 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/netfs/netfs 0x3409ad56 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x44bfde73 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x4cdb6604 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0xb6de0cea netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xd1191917 netfs_readpage +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x1393453c qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x18680997 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x45ad6898 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x5599852b qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x92c8ee2b qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xcabb1ed0 qtree_read_dquot +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crc8 0x9c5d5b94 crc8 +EXPORT_SYMBOL lib/crc8 0xaa8106bc crc8_populate_msb +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/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x147c3f2e chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x37b34b92 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x5b19e187 chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xc20134e7 chacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xce15a526 xchacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point +EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks +EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0x9d82f009 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xd2f1b36e 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 +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams +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 0x25732c80 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x3e3d9fa9 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x4b012c45 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x86633d9b lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd783e3fd lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xfdbc5ebc lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x78529a27 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xd64e2fdb unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x40a2137d unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xf2911d26 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x02b39896 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x04c185d4 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x0607c460 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x10fb86bd p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x180c6b11 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x1c49467e p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x244b2742 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2a439620 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x31a86d82 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x36ef7ce0 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3d7b9d77 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x44a15ab8 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x451e2cbd p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x4913e4a5 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x4c674a08 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x50cd475e p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x5431d574 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x54d3ed1d p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x62846d4f p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x6d06e422 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x78fffda8 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x7ef79241 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x80c8e969 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x83819b65 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8651357e v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x8df03895 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x8eccf279 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x9a6484f1 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x9c7b420b p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xa29608c1 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb0089096 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xb59fe069 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xb70fad58 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xb8144ab3 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xbc7f81e5 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xbf2f8ff3 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xcf8a2358 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd4f5ab1c p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdbdcbf83 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xf01e9d20 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xf2fdee7a p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xfb83a24e p9_client_open +EXPORT_SYMBOL net/appletalk/appletalk 0x77cea118 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x85ae243b alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x8d83336f atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xc9aa5d4a atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x03fdc6b8 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x09522753 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x15441cb8 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x249f443d atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x3ceb8f50 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x3f765bc6 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x741e5824 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x83d8f5db vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb4c6a77f atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xbe30fea2 atm_charge +EXPORT_SYMBOL net/atm/atm 0xd284c7e1 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf8f078b3 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xfd504a3b atm_init_aal5 +EXPORT_SYMBOL net/ax25/ax25 0x02163d04 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x1de96bde ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x565ea0d2 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x589acb22 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x908e68aa ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc7293009 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xd08711ba ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xe54a4e84 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x18b66f54 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1a58c89f ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x717d1f5d ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x88b8f73d ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xaa5427b1 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe941da25 ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x1d0b0da8 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 0x38f31c2b caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x408f60cd 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 0x55c0203f cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x91996354 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 0x9ec8d439 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xad262d6d can_sock_destruct +EXPORT_SYMBOL net/can/can 0xd142aa42 can_send +EXPORT_SYMBOL net/can/can 0xdb11e8f0 can_rx_register +EXPORT_SYMBOL net/can/can 0xe07f5e9a can_proto_register +EXPORT_SYMBOL net/can/can 0xf21e58a3 can_rx_unregister +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x083db6c6 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x0981b64b ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x0b576701 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x0d091ebd ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x10bf4b56 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x1350048f ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x157b0c8c ceph_msg_new +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 0x1920c660 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x1bc54e3c ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x1de3f321 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x1e726398 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x1eb14ee8 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x1f80138e ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x257ec9fa ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x268682f8 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x278f42ab ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x297175a7 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2d34e57a osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x2e45f053 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x3143fd65 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x36c33911 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x370a9c82 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x38ca43ae ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x39568c71 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3d6bc028 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x3e77137c ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x40747ef8 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x451895f4 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x4614d0f7 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x480fc4f9 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x4b8b29d2 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x4ffb3570 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x511d2ea0 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x519765d6 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x52be1ab9 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x550ccca0 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x56f0d593 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x592bfd2f ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x59c5211d ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5be72c2b ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5f9da9ce ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x5feb4c6a osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x64eed932 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x66630aac ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x69ee6214 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6bb116ac ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x74fbf7b4 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x78aa4ad3 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x7ac7449f osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x7f19699d ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x7fb1bbd5 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7fdd2da5 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x80cdd8c0 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x830e0af2 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x85d546ad ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x89737bea ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x8b664b90 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x8d58bf2f ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x95087c34 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x98bbf931 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x994797c7 ceph_osdc_update_epoch_barrier +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 0x9cd97340 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x9fe2c300 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xabbbfd7d osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xad44737a ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xad6152d1 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xad834f97 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xae1c4cc3 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xaea07814 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb0977b1e ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xb1daf638 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xb41e55a4 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6744651 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xba82e161 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xbcbe97b9 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe379ef6 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbea15d3f __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xbf3cc0ee ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xc27786fd ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc515037e ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xc836f9ea ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xc8d42460 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xca906143 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xcdf4c8cf osd_req_op_extent_osd_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 0xd5bbc48f ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xd7dd422c ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe07824c5 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xe07b96f5 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xe1428365 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xe20ec69a ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xe2695c85 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe6f636c9 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xe8633808 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0xe8728135 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xeeb6ed64 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xeeb8a6ec ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xef688a99 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xefce3c3b ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xefce991c ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank +EXPORT_SYMBOL net/ceph/libceph 0xf5ed7e3f ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xf722c68d ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xfaf1d9a6 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3edef5f5 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x417c39ff dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x4bd22c61 is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0x7739117d hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x27295e05 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3e06ddb2 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x602fba05 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb67aee7a wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xbc82017c wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf8ce933b wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x398a4e09 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x46cb0508 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x1b98ff39 gre_parse_header +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x27555244 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x40b89716 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5f419071 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xede7ad54 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3d06f51e ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x404b75cc ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7df2dc92 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe3dd0594 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0xced6f122 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xff3ca687 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x108bbed8 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2287316a ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x29af8d40 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x59109b46 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x62494122 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x659cb537 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x845ef163 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb08dac15 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcaa2e4e4 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1dc7366d ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x38f5b316 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4d80aabf ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb97e9869 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x74a53cd5 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x77fec1b8 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x59b25f69 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x6da7f8a4 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x322bc2ab lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x343d2cf2 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x3f4980f9 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x80d2f3ab lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x8a847787 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x9e864fe0 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xba6b751f lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xed9f5daa lapb_disconnect_request +EXPORT_SYMBOL net/llc/llc 0x1ec021a1 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x4bafff6d llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x5ad46ac4 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x66cfdc24 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xc23ce059 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xd49c8163 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xf8cd103a llc_sap_close +EXPORT_SYMBOL net/mac80211/mac80211 0x04c85590 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x06851454 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x0ccd3822 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x0e8be3ec ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x10b9fbbc ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x14ec068f ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x17417314 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x181f7355 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x1916fd65 ieee80211_wake_queue +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 0x1b1caeda ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x1d6c2668 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1e3c8699 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x20e1b800 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x234e533c ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x23712e33 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x24f835f2 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x28686acb rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x2a47cc3b ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x2e6f6fd9 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x2f026a4c ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x2fb8d377 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x34266e3d ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x3990fdef ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x3d83cbae ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x422aa1a9 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x42a925d4 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x442b5f58 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x460b0917 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x46cfd651 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x49d4468f ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x5203fa6e ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x52044811 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x5229e4d5 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x5636f375 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x568119fc ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x568b6b12 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x5a7e9736 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x5d13ea25 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x64f269c1 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x675226fd ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x6758506c wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x67b39bf2 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x6be6d0bb ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6d2db455 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x750a83d6 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7c31bcc4 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x7c7fe6a2 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x80860708 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x811de31e ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x8cb75c8f ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x8e6c4ac5 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x9019b119 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x91870ccc ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x9192b820 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x9645c0b7 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x964d9350 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x96eaf20e ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x97a1a630 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9b6282d8 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x9b691b0b ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x9d0fe11d ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x9e15d147 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9e7258d4 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xa08032a5 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xa2e36f7f ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa47da86f __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xa57519e3 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xa875ad97 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xa9854efc ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xaab6bbb2 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xad3543cd ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xb91b5f82 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0xbbe5fcfa ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xbc23570f ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xbcf6afd1 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xc233b431 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xc25228e9 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xcd2e4960 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xd17e45a5 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd5d12fda ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xd5eb6f98 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xda050175 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xda40c0e6 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xdb9c4a0b ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xde336423 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0xdedcb36c ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xdf980e75 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xe387dada ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0xe9dbf4a6 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xea1f5ea9 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xeeb0adb3 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf3ed8230 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xf5c982c1 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xf65dd425 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xf9291c24 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xf9948c75 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0xf9d121b4 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xfbc80565 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xfd29edd5 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac802154/mac802154 0x23b09f65 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x31a1ba96 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x7fce12d8 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x94d9c512 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xc8ca9c78 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xd748b6fe ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe0368e52 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xeae32fa9 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x01c15323 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x12844613 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1f3973ff unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2c18676b register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x412b6485 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4fda8437 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x65c7d147 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7d1a7266 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8065688a unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa02a8e3f register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa2b6db87 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc2fc8235 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd77a9b84 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdb21c783 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfae63a2c ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x87b71412 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x1911aa6d __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x8083f5e6 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x9cd6a051 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xacc797c1 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0c72cc02 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x2da02216 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 0x4abdae6b xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x51774308 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x79fbe51d xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x99811349 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xc87f002e xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xcd28ce87 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xdb13cc70 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0xdd2e4687 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x03dad680 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x1002ee82 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x11659ab0 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x13b6c1ed nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x13c11562 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x27c28551 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x2bce7c67 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x3460a840 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x51a3c771 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x6199a2ae nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x7760f338 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x77b97812 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x8d0ac5f7 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x947a41bf nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xb639f897 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xbc08f057 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xc8960d8a nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xd37177c5 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdc2db26b nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe2c4b198 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xfb8d5182 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x0f32d1c1 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x1003f411 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x132c023c nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x13f62c6c nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x2251bcd0 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x237ebf2d nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x2774454e nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x2fa3e603 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x3b93b73f nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x42988f35 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x4d6fab15 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x5792baa6 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x6c07588e nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x75fbfda4 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x7adc6717 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x908a99f5 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x9764b5a7 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xa0d59da3 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xa8203c8a nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xae0f65af nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xb1ce7fd3 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xb5fd8865 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc0bbb1ca nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xc2337b9f nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xc28e7111 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe1ceb153 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xe7afba83 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xf7db6800 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xfa101bd6 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nfc 0x06896946 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x2c6532b9 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x42b6dfd8 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x49492ad3 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x4fc3ae28 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x510c7ea2 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x691fc78d nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x7521ad83 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x7cf3994c nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x876725af nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x88d13663 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xa74bc517 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xa96941d7 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xafb86139 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xb52c063d __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xc5ffce4b nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xc7b121ec nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xc9bed227 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xca936e71 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xcd1f810f nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xd8dd9280 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xdb4242dd nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xde2a2e68 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xe63c1909 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xfdd1b0cc nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc_digital 0x39d40676 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x8e3ba1c3 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xcf755f24 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe8ad3ab1 nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x00684315 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x0e1c597c phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x1c8187a1 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x580ddca8 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x88c961f3 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xb991efe6 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xd3ae3b08 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xed5d3c82 phonet_header_ops +EXPORT_SYMBOL net/rxrpc/rxrpc 0x03596782 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0f40bf3f rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1e5f1a95 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2d57153a rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x40a42f90 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5eee3ecb rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5fcce1b7 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x654816b7 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7bc7a74d rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9dd850bd rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa16a1f08 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa803641a rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb4b52af9 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbad176f3 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbfb5cb92 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe9b48949 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf5a06297 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf8431378 rxrpc_kernel_check_life +EXPORT_SYMBOL net/sctp/sctp 0xd3526833 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2411658c gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7c75b5ca gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf1e94d69 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x08ba56c8 get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0x8209ac54 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xae9ed1dd xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd2fa8d4c svc_pool_stats_open +EXPORT_SYMBOL net/tipc/tipc 0x1649823f tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x4f513237 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x8a64a481 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xd5332e54 tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0x7f4e7c37 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x037680aa cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x049eeccf wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x05f65e4b cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x060e2c96 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x0b335704 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x0bac5769 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x123e11eb cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1320e863 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1a409245 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x1abf9953 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1d5bccaa cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x1f0e4ee4 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x21f6d2ae cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x23c444e0 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x2402da7c ieee80211_get_num_supported_channels +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 0x2a5d816f cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x2e2fd7c2 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x2eba2608 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x31279327 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x35340a03 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x36935a4d cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x36dfe4c6 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x38601856 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x38fb3d6c cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x391d7cd7 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x393908ed cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x3d0979e6 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3ed0e5f4 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x40582603 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x45cdc8d0 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x473fdbbd wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x48568ecb cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x4d783c7f regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x4f49a1a0 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x57f61cb6 cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x58686dc6 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x5f3a45f8 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x6059f3bd freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x60a02b3d wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x60acd135 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x660dcb62 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x6988dba9 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6f1f0ed9 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x6f9625d2 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x6fb10edb cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7679fffd __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x780772c6 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7ac307ab 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 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x826368ae cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x829a015d cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x850eb53a cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x85873396 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x89fa94b7 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8a78fd0b wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x8b024024 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x8c2d95fe cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x8d7c745a cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x8e622ed6 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa35d87 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x93b2e2c4 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x956a3db3 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x96fb859c cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0xa0ab4bdf cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xa20703b9 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xa2856fc5 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xa6b7882d cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa7d854e2 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xa9a1dd4c cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xacab81de wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xad538d06 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb34c5cac cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xb3543166 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xb4f0bdd9 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb7371e78 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xbfb9fe41 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xc4d31112 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xc52be698 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xcb7eb762 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcee07900 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd10f7c73 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xd3fb65f0 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd7cd9db6 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdcd15261 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xdd71d345 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xdef521b6 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xe2a6fa74 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xe2fbf827 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0xe32dad10 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0xe3ec89f5 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xe48a35f3 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xe5b4c766 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf0441784 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xfad1a58e cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfaff079c __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xfb95e47e cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xfc3a5093 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xfcb6f17a wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xff2be4c5 cfg80211_cac_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1381bf7c 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 0x25f78dae snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x8e294c40 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 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0xec56f5de snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x734e4fba snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7a3e0db5 snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8150b379 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb8620ad8 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd70dbf6 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd935c83 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe9e6c50c snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x08542ac5 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0760aa70 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x0c109055 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x0f5d549c snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x12cdcf3e snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x154b6ac3 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x246daba4 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x33b2f83d snd_card_free +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x36953f4f snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x39c2bc72 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x3bb44e61 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x3bff2c6e snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x43cb130e snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x5dc453b5 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x69e0031f snd_register_device +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 0x756dd3f7 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x76a8632e snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x98383b82 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xa0dd60d0 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xa13558ba snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xa1adefc7 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0xa3521d26 snd_device_free +EXPORT_SYMBOL sound/core/snd 0xa9e5b9b5 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xad4887dc snd_device_new +EXPORT_SYMBOL sound/core/snd 0xaffa440a snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xb143d5b4 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xb1609368 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xbb22ea35 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xbe358df1 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc5c6dce5 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xca9121d2 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xcd0fe6bb snd_component_add +EXPORT_SYMBOL sound/core/snd 0xf3e9e532 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xfc0cff73 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +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 0x0de8b8ab snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x115abaf7 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x18e15ecf snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x197aa5ce snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1deddcad snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x225fbc78 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x2e3eaf6d snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x3047fe3b snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x35d92c9e snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3b8f2482 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x3cea14f4 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x40931c61 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x428df25c snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x4d00c224 snd_pcm_open_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 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x55bd63cc snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x5c21301f snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x5ce8aa36 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x63cfe0d1 snd_pcm_hw_constraint_msbits +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 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x72c76554 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x7be4278e snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x7d838552 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x852bc1d3 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x8cb752b5 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x90481836 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x95193f92 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x98cf64de snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x99661770 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x9a5c4bf3 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x9d3481a6 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xa416dd40 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xa52b0818 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xad44f2e2 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xad7587b3 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xb140b129 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xb792eeea snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xc0c3a38f snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xc19b09ff snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xc41805ab _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xc5929760 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0xc7cb21ea snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xcc252c6c snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xd9cf4570 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xe53c23d6 snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xeaf99270 snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0xf8a9da6b snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xfaf3cd3b snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xfc4b026e snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xfe840d41 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x022a345e snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1319388c snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x14a01db7 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3b556182 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3cf26ae4 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3fc3e3d2 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x453c7844 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x48b30983 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x558753be __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x63001e08 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x78cd21dc snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x87775e8d snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb0dff632 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbc12adc5 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcabe4ab9 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd08ab80d snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xde5d8fcb snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xef053b7c snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf5ef8bd9 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf837472f snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x0d8c3e7b 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 0x1764e8d7 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x24ddd1cf snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x30c49c1d snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x3a71d057 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x3c47c10b snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x4bcb1379 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x6acb4569 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x79eb18cb snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x931a2ec6 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xa81bb099 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xaa2fe79d snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xafe29244 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xc54d1ae7 snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0xd9d78488 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0xda4091fe snd_timer_open +EXPORT_SYMBOL sound/soundcore 0x881c7f63 sound_class +EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x001570f7 d_splice_alias +EXPORT_SYMBOL vmlinux 0x0024d1c6 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x003137dd d_instantiate +EXPORT_SYMBOL vmlinux 0x003486c0 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x004a7bff phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x005ad65c pneigh_lookup +EXPORT_SYMBOL vmlinux 0x00855aea scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x008e132c noop_llseek +EXPORT_SYMBOL vmlinux 0x0090d10c request_key_tag +EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode +EXPORT_SYMBOL vmlinux 0x00ab8cda get_cached_acl +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00b8e6fa mdiobus_free +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00d8ef5e jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x00d9a8cd udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x00dc2f89 param_ops_int +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0103d06b fc_host_fpin_rcv +EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds +EXPORT_SYMBOL vmlinux 0x011f402f tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x0126458e register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x012790e1 input_register_handle +EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x0140d9f9 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x01442819 __alloc_skb +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x014959d5 genl_register_family +EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x01652c42 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +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 0x01a44b4c filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x01b20000 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01b9cf46 ptp_clock_register +EXPORT_SYMBOL vmlinux 0x01bb4c5e devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01d20ed7 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x01e3d214 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x01eb872d __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x01f16eb3 __seq_open_private +EXPORT_SYMBOL vmlinux 0x01fc842d pipe_lock +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x021bc7fd ppp_channel_index +EXPORT_SYMBOL vmlinux 0x021c9a85 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x02231519 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x0224bc70 pci_save_state +EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x022aa55b vfs_create_mount +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027583e9 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x0287522c __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02c3818b __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x02fa75b9 lru_cache_add +EXPORT_SYMBOL vmlinux 0x03092d06 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x030dc462 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x034fde49 pmem_should_map_pages +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 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037b7257 get_fs_type +EXPORT_SYMBOL vmlinux 0x03824115 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x03956450 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03ac7bd9 sync_filesystem +EXPORT_SYMBOL vmlinux 0x03ad238e netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x03bf0946 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03c8df80 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0415459b __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x0420ccfc clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x0421cc4b setattr_prepare +EXPORT_SYMBOL vmlinux 0x0440e102 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x0444141e skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x04489e1b fb_set_cmap +EXPORT_SYMBOL vmlinux 0x044b8145 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x044fea4a security_sock_graft +EXPORT_SYMBOL vmlinux 0x045c9986 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x0469464b genphy_suspend +EXPORT_SYMBOL vmlinux 0x046df3d1 submit_bio +EXPORT_SYMBOL vmlinux 0x047112df qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x047a3994 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x04858517 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x048fff58 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x04994aed input_unregister_handle +EXPORT_SYMBOL vmlinux 0x04a05066 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x04b7764f __do_once_slow_done +EXPORT_SYMBOL vmlinux 0x04c207a8 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04c75437 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x04da57d0 account_page_redirty +EXPORT_SYMBOL vmlinux 0x04e0407f kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04f5674d mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x050954d5 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05255a64 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x056e84c2 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x058ed9fc flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x059cf5fb pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05b121b7 netdev_features_change +EXPORT_SYMBOL vmlinux 0x05b448fb pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x05ceeb20 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x05da1e0a pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x05db9918 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x060da59a skb_free_datagram +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0616afb7 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x0618e51b icmp6_send +EXPORT_SYMBOL vmlinux 0x061a5a0b skb_copy_expand +EXPORT_SYMBOL vmlinux 0x0623a812 sk_capable +EXPORT_SYMBOL vmlinux 0x062a343e __nd_driver_register +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x064b9971 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x064e9dd4 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x0660a0c0 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x0668afba phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x067d9387 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x06848c60 to_nfit_uuid +EXPORT_SYMBOL vmlinux 0x06853a8f nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x069d4eaa kfree_skb_list +EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 +EXPORT_SYMBOL vmlinux 0x06b45efc dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06d3c454 param_set_ulong +EXPORT_SYMBOL vmlinux 0x06d7ab59 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x06d910e1 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x06eac587 __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0x06fa94cc devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x07116fa4 eisa_bus_type +EXPORT_SYMBOL vmlinux 0x071d5c0f generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x07378f44 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x074aeebe seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x0755627b __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07ba794f phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x07beff8a mpage_readahead +EXPORT_SYMBOL vmlinux 0x07c1a62d scsi_device_put +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07d1b613 bio_add_page +EXPORT_SYMBOL vmlinux 0x07e334b2 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07fdf8a3 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x080969c1 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082e9b98 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x083ae4df blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x08658ada serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x086d4ce1 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x087a74bd __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x087e8544 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x088dfa75 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x0899f62d tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x089e801d block_write_begin +EXPORT_SYMBOL vmlinux 0x08a0ccfc dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x08aef10a napi_enable +EXPORT_SYMBOL vmlinux 0x08c954bb ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x0906d136 migrate_page_states +EXPORT_SYMBOL vmlinux 0x091d8544 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x0924c494 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x092aa09a dm_io +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x09319481 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x0933c507 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x094abc96 skb_seq_read +EXPORT_SYMBOL vmlinux 0x094c46af cdev_init +EXPORT_SYMBOL vmlinux 0x09531776 vif_device_init +EXPORT_SYMBOL vmlinux 0x09563527 skb_dequeue +EXPORT_SYMBOL vmlinux 0x096e20b0 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x09803473 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09e4f0fa jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x09e668de iunique +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a19a3bf ptp_find_pin +EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0x0a26e32e skb_clone_sk +EXPORT_SYMBOL vmlinux 0x0a28f289 vfs_fsync +EXPORT_SYMBOL vmlinux 0x0a325438 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x0a418e56 netdev_notice +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a784516 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x0a7984a9 inet_listen +EXPORT_SYMBOL vmlinux 0x0a821f03 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x0a87b72c pci_request_regions +EXPORT_SYMBOL vmlinux 0x0a911384 sock_bind_add +EXPORT_SYMBOL vmlinux 0x0a985bb2 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x0a9ba04f srso_untrain_ret +EXPORT_SYMBOL vmlinux 0x0a9ead80 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0aaf5098 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae24c94 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x0b0c1c8d xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc +EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x0b36d4c4 dev_get_stats +EXPORT_SYMBOL vmlinux 0x0b3b1a6c __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x0b637410 cr4_update_irqsoff +EXPORT_SYMBOL vmlinux 0x0b69c069 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b81ad65 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x0b960a21 __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0ba2d4d2 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x0bb218cf tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc4a25f dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x0bc4c9a5 tty_do_resize +EXPORT_SYMBOL vmlinux 0x0bcb6260 devm_iounmap +EXPORT_SYMBOL vmlinux 0x0bf586cb dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x0bfafa02 set_trace_device +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c04e828 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0x0c251ef6 iterate_dir +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c2e293a devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c597d29 phy_error +EXPORT_SYMBOL vmlinux 0x0c5aeebb nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c7b9bca cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x0c7fc16d tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x0c94a15d configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x0c99d4a6 try_module_get +EXPORT_SYMBOL vmlinux 0x0ca43631 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x0cb8046d __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x0cbc730a pnp_start_dev +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cc6ac7a start_tty +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d09787b framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x0d2e5bcc devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x0d3d3687 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d66c778 deactivate_super +EXPORT_SYMBOL vmlinux 0x0d7a78f7 dump_page +EXPORT_SYMBOL vmlinux 0x0d7bcc85 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x0d9ae9d1 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x0da8d6c4 tcp_req_err +EXPORT_SYMBOL vmlinux 0x0ddad87b reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x0dde448d __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x0e109f03 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x0e26244e default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x0e3e447f tty_hangup +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e5ec303 tty_devnum +EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor +EXPORT_SYMBOL vmlinux 0x0e7d25d0 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x0e7e2fed write_inode_now +EXPORT_SYMBOL vmlinux 0x0e891b6b get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x0e8c3c85 thread_group_exited +EXPORT_SYMBOL vmlinux 0x0e9c4e57 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x0e9e0b77 pci_fixup_cardbus +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 0x0ede1ca7 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x0ef48405 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x0f057bc3 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f2a58e7 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f4c06e5 tty_register_device +EXPORT_SYMBOL vmlinux 0x0f6ce16a tty_port_close_end +EXPORT_SYMBOL vmlinux 0x0f7e3c96 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f9d0b85 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x0fa0c830 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x0faa0c9d mpage_writepage +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fabc598 may_umount_tree +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd153a7 input_reset_device +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0ff80f59 zalloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x1006d412 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x100a76c2 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x104a600d acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x104b9748 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x104d3ee4 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x10541937 input_set_keycode +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x106718f1 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x106744f6 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x10799185 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10963898 param_set_ushort +EXPORT_SYMBOL vmlinux 0x10b9389f fb_class +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10cde52b mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x10cf21aa tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x10d1c669 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x10d97525 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10da65ab netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x10dec2d9 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10eab414 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x10ec8e0b gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x10f4dfa1 neigh_for_each +EXPORT_SYMBOL vmlinux 0x10f6c463 is_nd_dax +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x112761f4 vm_insert_page +EXPORT_SYMBOL vmlinux 0x114bf685 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1170bf8f vfs_statfs +EXPORT_SYMBOL vmlinux 0x117b6f55 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x11801ec7 security_sb_remount +EXPORT_SYMBOL vmlinux 0x119561be dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x11961da4 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x11be76d4 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x11dc7163 netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x123863d4 sock_no_bind +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x1250c752 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x127b1f25 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x128ea42f zpool_register_driver +EXPORT_SYMBOL vmlinux 0x129810ca tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x129a686a param_ops_invbool +EXPORT_SYMBOL vmlinux 0x129b2a3d skb_unlink +EXPORT_SYMBOL vmlinux 0x12adfb0a mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x12bf2c0c acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x12c6d90b lock_sock_nested +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12d1e64c __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x12ef93bf napi_gro_flush +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12fe04a8 amd_iommu_complete_ppr +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 0x13336775 fget_raw +EXPORT_SYMBOL vmlinux 0x133f1301 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x13438fc7 audit_log_start +EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x134cc5b2 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x13792c57 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13a10831 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x13a1c8cf dev_disable_lro +EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e043b6 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x13e078cd tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x13e76c6b backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x13ee9083 mdio_device_free +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f79a1d unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x144f4b05 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x14771097 key_unlink +EXPORT_SYMBOL vmlinux 0x14810ca8 vfs_setpos +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x149af36e devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x14a393cc netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0x14b6e116 __frontswap_store +EXPORT_SYMBOL vmlinux 0x14c18361 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14ced76e nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x14d33cb4 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x14dd39ff ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x14f797dd genphy_update_link +EXPORT_SYMBOL vmlinux 0x1500942f pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x151b0959 lookup_one +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x1530f5fe vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1565aa45 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x156a4430 neigh_lookup +EXPORT_SYMBOL vmlinux 0x156e29b4 __pagevec_release +EXPORT_SYMBOL vmlinux 0x15808120 kernel_read +EXPORT_SYMBOL vmlinux 0x15832dd8 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x158a6768 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x15a66331 kobject_set_name +EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies +EXPORT_SYMBOL vmlinux 0x15bae833 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c25d9c sock_i_ino +EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init +EXPORT_SYMBOL vmlinux 0x15cee3e4 netdev_printk +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x16002b4e _dev_err +EXPORT_SYMBOL vmlinux 0x160e067f sock_no_accept +EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x162d64d2 sock_wake_async +EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x166d0466 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x1672acef d_move +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167e4aec flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x168a7c11 pci_get_device +EXPORT_SYMBOL vmlinux 0x1694c7ea to_nd_dax +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x169fedf5 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x16a08f4f skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x16bae1e5 __scsi_execute +EXPORT_SYMBOL vmlinux 0x16bea1e6 scsi_print_result +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16ebdb6b xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x17353e96 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x173e42f9 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x1754857d ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock +EXPORT_SYMBOL vmlinux 0x176a438a ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x177a82c3 entry_untrain_ret +EXPORT_SYMBOL vmlinux 0x179a4163 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event +EXPORT_SYMBOL vmlinux 0x17bfa6b2 bdi_put +EXPORT_SYMBOL vmlinux 0x17c6361c d_find_alias +EXPORT_SYMBOL vmlinux 0x17c8bdc9 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x17cfc793 wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0x17d26fdf blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x17d3153b freeze_super +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f813a9 __SCT__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x18211c84 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x18243fc8 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x18350f3b single_open +EXPORT_SYMBOL vmlinux 0x18619d29 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188bf11b vfs_fadvise +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189884b8 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x1898f0e0 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x18a5f212 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x18a73c15 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18bed4a8 inet_add_offload +EXPORT_SYMBOL vmlinux 0x18d8e139 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x18e5c3ac dump_skip +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18e8702e inode_set_bytes +EXPORT_SYMBOL vmlinux 0x18f193d3 unlock_page +EXPORT_SYMBOL vmlinux 0x18f33ae0 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x1918a9eb iov_iter_advance +EXPORT_SYMBOL vmlinux 0x1921abb2 ihold +EXPORT_SYMBOL vmlinux 0x19224cdd napi_gro_receive +EXPORT_SYMBOL vmlinux 0x192629e0 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x192ea14f __SCT__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x1941ab74 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x1949efd4 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL vmlinux 0x1975d937 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x197ef676 pci_set_master +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x1989f38a scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x1995e4fa key_move +EXPORT_SYMBOL vmlinux 0x19994d5e tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19d200ec __SCT__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x19d244f2 dqget +EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x19e059db devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x19e8677c blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x19f4d476 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x19fb75ae dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x1a06a91b __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x1a0ad86e vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x1a1b53d7 tty_port_put +EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a79c8e9 __x86_indirect_thunk_r13 +EXPORT_SYMBOL vmlinux 0x1a7b538e insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x1a86722a vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x1a8b7480 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x1a93aefa tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa16d78 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x1aa9fba0 vfio_dma_rw +EXPORT_SYMBOL vmlinux 0x1aae73e7 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ac987ac inet_csk_accept +EXPORT_SYMBOL vmlinux 0x1ad09c8b pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x1ae6116a fc_host_post_event +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b160c3a tty_unregister_device +EXPORT_SYMBOL vmlinux 0x1b37b224 file_remove_privs +EXPORT_SYMBOL vmlinux 0x1b4da235 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x1b52b699 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b72f65e fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b852a49 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b97c283 truncate_setsize +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bbe8c29 fc_mount +EXPORT_SYMBOL vmlinux 0x1bbeebea ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bdfd669 disk_start_io_acct +EXPORT_SYMBOL vmlinux 0x1bf477c5 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x1bfaa14b tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x1c0af008 md_done_sync +EXPORT_SYMBOL vmlinux 0x1c1186be simple_lookup +EXPORT_SYMBOL vmlinux 0x1c20e49f fc_host_post_vendor_event +EXPORT_SYMBOL vmlinux 0x1c56cf14 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c60d209 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x1c66ea3c cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x1c99bae3 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cf16b83 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x1cf2537c proc_set_user +EXPORT_SYMBOL vmlinux 0x1cf52c8a dst_release_immediate +EXPORT_SYMBOL vmlinux 0x1cf944de acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d18bb63 neigh_update +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 0x1d3959ef xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x1d3eec2f uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d415f3f udp_set_csum +EXPORT_SYMBOL vmlinux 0x1d54b1de sk_reset_timer +EXPORT_SYMBOL vmlinux 0x1d72f6c9 scsi_add_device +EXPORT_SYMBOL vmlinux 0x1d76fd9a uart_update_timeout +EXPORT_SYMBOL vmlinux 0x1d7e8ec8 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x1dab023f genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1dbcb785 input_release_device +EXPORT_SYMBOL vmlinux 0x1dbdf946 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x1dc44335 padata_free_shell +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dc8068b tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1dfc2cb8 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e1a3667 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x1e1acb03 param_get_ulong +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e46c396 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x1e4eee44 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x1e6054a7 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e83dcf4 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eaf6829 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x1eafaf9f inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x1eb0a758 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1eca11af dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x1ed69ee3 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ef8e035 request_firmware +EXPORT_SYMBOL vmlinux 0x1efb31fe tcf_classify +EXPORT_SYMBOL vmlinux 0x1f01b208 has_capability +EXPORT_SYMBOL vmlinux 0x1f05f96d blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x1f199d24 copy_user_generic_string +EXPORT_SYMBOL vmlinux 0x1f35a381 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f8138d3 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x1fa9210a dm_table_event +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc0cc7c intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd40da6 tty_port_close +EXPORT_SYMBOL vmlinux 0x1fe23caf __register_chrdev +EXPORT_SYMBOL vmlinux 0x1fe7c9e3 serio_reconnect +EXPORT_SYMBOL vmlinux 0x1ff33245 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x1ff6555d kill_anon_super +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200010d6 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x203c429b fasync_helper +EXPORT_SYMBOL vmlinux 0x203d2611 bio_chain +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 0x205234be bio_endio +EXPORT_SYMBOL vmlinux 0x2086dba8 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x208d2424 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x209e30d5 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x20bcbe4f blake2s_compress +EXPORT_SYMBOL vmlinux 0x20c12ddc param_set_uint +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20e71f2f unregister_shrinker +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20fae84c fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0x21029aaa migrate_vma_pages +EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x21097293 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x211130c1 alloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x21145500 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x2122cfaf phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x21271fd0 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x2143afbe __sk_dst_check +EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event +EXPORT_SYMBOL vmlinux 0x217e13ba jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x218388c9 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x2188158c import_single_range +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21a1b1e1 netlink_ack +EXPORT_SYMBOL vmlinux 0x21a34fcd d_alloc_anon +EXPORT_SYMBOL vmlinux 0x21ba9e27 pci_bus_type +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21c01fbe skb_queue_head +EXPORT_SYMBOL vmlinux 0x21c0ea81 dm_put_device +EXPORT_SYMBOL vmlinux 0x21d349a5 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x21d42ce9 nla_append +EXPORT_SYMBOL vmlinux 0x21d7597e sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21e1b536 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x21e6a829 dm_register_target +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x2211c813 kthread_stop +EXPORT_SYMBOL vmlinux 0x221ae681 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x22266941 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x223ae01d security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x223b6685 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x223eb368 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x225da00e ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x2264ba71 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x22697227 skb_put +EXPORT_SYMBOL vmlinux 0x227a18af kmem_cache_size +EXPORT_SYMBOL vmlinux 0x228a6891 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x229484cd netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0x22989f25 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b78173 pci_free_irq +EXPORT_SYMBOL vmlinux 0x22beb59e uart_get_divisor +EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier +EXPORT_SYMBOL vmlinux 0x22ea0fc6 dev_set_alias +EXPORT_SYMBOL vmlinux 0x230acb66 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x23375d4b security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x2344055a xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x2364899d dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x2366beb3 pci_match_id +EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x23a664fd blk_queue_split +EXPORT_SYMBOL vmlinux 0x23adea92 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x23af76d0 seq_vprintf +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23be5b18 vfio_pin_pages +EXPORT_SYMBOL vmlinux 0x23c55a14 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23e09804 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x23fe6fa2 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x240a9c6b tcp_check_req +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x243b70e2 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2472c783 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x24744826 sock_wfree +EXPORT_SYMBOL vmlinux 0x2479c440 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x248420d3 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24866a81 __neigh_create +EXPORT_SYMBOL vmlinux 0x249f7465 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24f02eaa vm_map_pages +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2542463f udp6_set_csum +EXPORT_SYMBOL vmlinux 0x2555a9de scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x256eccab __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x2580f8bb iput +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +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 0x25b9afd7 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x25c9c276 sk_free +EXPORT_SYMBOL vmlinux 0x25ce0821 from_kprojid +EXPORT_SYMBOL vmlinux 0x25ce7c46 __SCK__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f6800e mdio_bus_type +EXPORT_SYMBOL vmlinux 0x2606bb90 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x263210f5 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x2648b705 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x264cdd5d thaw_bdev +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x269280ff md_reload_sb +EXPORT_SYMBOL vmlinux 0x26a1acaf tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x26b7fc2c dev_get_iflink +EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit +EXPORT_SYMBOL vmlinux 0x26cd0e7e fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x26d44a52 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x270d63ae pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x27158c2d kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x2717ba56 get_tz_trend +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x273100ef inet_sendpage +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x27495387 phy_stop +EXPORT_SYMBOL vmlinux 0x27541dff dquot_operations +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x2765737d input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x2768a0d0 simple_getattr +EXPORT_SYMBOL vmlinux 0x276e1905 dns_query +EXPORT_SYMBOL vmlinux 0x276f06b2 sock_set_mark +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x27810361 acpi_os_wait_events_complete +EXPORT_SYMBOL vmlinux 0x27823ab1 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x2784aaca __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27af89bc blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x27b3230f pci_remove_bus +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c146a3 empty_aops +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x2810d1c9 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x28150171 lease_modify +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2825811a eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x28323f3d cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x284faa6b __x86_indirect_thunk_r11 +EXPORT_SYMBOL vmlinux 0x285ca4e8 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x2863be05 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x2871624e nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x28b57e29 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x28c493e9 default_llseek +EXPORT_SYMBOL vmlinux 0x28d4ba79 con_is_bound +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x291ee747 csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x29267173 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x292e35a1 sock_edemux +EXPORT_SYMBOL vmlinux 0x29332499 __x86_indirect_thunk_rsi +EXPORT_SYMBOL vmlinux 0x293ef5cf skb_trim +EXPORT_SYMBOL vmlinux 0x294ea48f xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x295baed1 ip_tunnel_get_iflink +EXPORT_SYMBOL vmlinux 0x295c89bc register_fib_notifier +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x29804d97 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x2981f445 netdev_change_features +EXPORT_SYMBOL vmlinux 0x298b4add mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x29a5bb5a __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x29aba2be jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type +EXPORT_SYMBOL vmlinux 0x29af75db blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x29cc4e2e scsi_host_get +EXPORT_SYMBOL vmlinux 0x29e1a691 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29ef47cf __ip_dev_find +EXPORT_SYMBOL vmlinux 0x2a0b351a pci_find_capability +EXPORT_SYMBOL vmlinux 0x2a149f36 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x2a173191 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37ad03 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x2a424b56 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x2a521d07 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x2a56befb security_path_rename +EXPORT_SYMBOL vmlinux 0x2a6eca33 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x2a6fa0d0 __SCT__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa00e26 intel_scu_ipc_dev_update +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2ab0516e jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x2abba8e2 set_page_dirty +EXPORT_SYMBOL vmlinux 0x2ac41198 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x2ad02a5a genl_unregister_family +EXPORT_SYMBOL vmlinux 0x2ad12a45 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x2ad60261 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x2aebfb68 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x2afdbe92 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x2afe823c unpin_user_pages +EXPORT_SYMBOL vmlinux 0x2b05af03 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x2b0ffe11 block_commit_write +EXPORT_SYMBOL vmlinux 0x2b17dfc1 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x2b3542c2 file_path +EXPORT_SYMBOL vmlinux 0x2b3de144 fb_pan_display +EXPORT_SYMBOL vmlinux 0x2b5497b3 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b5d8441 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x2b5f8b8e phy_device_remove +EXPORT_SYMBOL vmlinux 0x2b6f0962 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x2b884dcf pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x2b98d7c0 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bbc01f6 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x2bbd2870 md_handle_request +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bdaec42 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x2bdbec26 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x2bfdc431 follow_down +EXPORT_SYMBOL vmlinux 0x2c0453b0 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x2c06a4dd t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x2c1f4c45 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2f3acb fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x2c38ee59 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x2c422447 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c58d838 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c834405 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x2c870a93 tcf_em_register +EXPORT_SYMBOL vmlinux 0x2ca60947 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die +EXPORT_SYMBOL vmlinux 0x2cb9ba0e __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x2cc42828 inet_bind +EXPORT_SYMBOL vmlinux 0x2cc5637e fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2cf68deb filp_close +EXPORT_SYMBOL vmlinux 0x2cf9ce4e pci_enable_device +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d1d18c6 d_path +EXPORT_SYMBOL vmlinux 0x2d26b5c8 path_is_under +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3e255d tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d599382 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x2d5a07c4 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x2d724e1f tcp_read_sock +EXPORT_SYMBOL vmlinux 0x2d8377ed xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2d9f45e7 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x2dcbcb17 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2ddc36b3 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2df73d36 __alloc_pages +EXPORT_SYMBOL vmlinux 0x2dfc8ea1 sock_no_linger +EXPORT_SYMBOL vmlinux 0x2dfd9522 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e1bd70c bio_kmalloc +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e3cd41c blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e48d4db xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e6324b8 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x2e6f1ad9 inet6_protos +EXPORT_SYMBOL vmlinux 0x2e8ee90e gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x2e9e1da2 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x2ea85a75 mount_nodev +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ee05bb0 igrab +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2eea912c get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x2ef0e096 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x2ef3cfec fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f1a37bd dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0x2f2d42ca request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f3bc636 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x2f43cc85 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x2f682b8f seq_bprintf +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f78e1a2 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x2f816d38 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x2f8b275d __bforget +EXPORT_SYMBOL vmlinux 0x2f9179e8 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x2f9dead4 md_integrity_register +EXPORT_SYMBOL vmlinux 0x2fa0f6fb mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x2fb64789 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x2fc4a3e6 sock_from_file +EXPORT_SYMBOL vmlinux 0x2fc610c7 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x301304c2 __get_user_nocheck_8 +EXPORT_SYMBOL vmlinux 0x30273542 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0x305a916c __x86_indirect_thunk_rdi +EXPORT_SYMBOL vmlinux 0x307ac6d8 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x30818db4 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309e628e request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x309ed1da pci_write_config_word +EXPORT_SYMBOL vmlinux 0x309f29f6 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x30a2239b phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30aa648c vme_dma_request +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30c0e928 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x30d59958 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x30e3b966 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x30e49f0f simple_dir_operations +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30efcd6d sg_miter_next +EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x313f0a60 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x3146a4c5 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x31549b2a __x86_indirect_thunk_r10 +EXPORT_SYMBOL vmlinux 0x315797be fc_vport_create +EXPORT_SYMBOL vmlinux 0x31646403 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x31948f99 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x319d9045 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x31a112e9 inc_nlink +EXPORT_SYMBOL vmlinux 0x31a3e761 dquot_disable +EXPORT_SYMBOL vmlinux 0x31b4d291 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x31e0b66c __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x31f7b558 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x32011ed7 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x32081b70 ip_options_compile +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x322d2753 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x32303327 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x3233dfb2 dev_driver_string +EXPORT_SYMBOL vmlinux 0x323cdef3 param_ops_charp +EXPORT_SYMBOL vmlinux 0x32457e8b noop_qdisc +EXPORT_SYMBOL vmlinux 0x324a209c proc_create_single_data +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x32682f79 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x328107d4 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32beea03 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32d4df07 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x331567c3 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x332575f5 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x33274844 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down +EXPORT_SYMBOL vmlinux 0x334575ef flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x33646c7a mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x336922cf blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x3377fb51 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x33830b7d vmbus_sendpacket_getid +EXPORT_SYMBOL vmlinux 0x3383ca0b dma_resv_fini +EXPORT_SYMBOL vmlinux 0x339103f3 brioctl_set +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33b8c674 zap_page_range +EXPORT_SYMBOL vmlinux 0x33cba66b disk_stack_limits +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fb257c vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x33fd3b94 ip_frag_init +EXPORT_SYMBOL vmlinux 0x33fd9da4 acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x34133f19 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x3417ee48 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x34269db9 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x3427ba04 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x3441445f msrs_free +EXPORT_SYMBOL vmlinux 0x34679040 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x348fc9d0 pid_task +EXPORT_SYMBOL vmlinux 0x3499967e ps2_end_command +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a0badc genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34ae4401 pci_pme_active +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x34e8404d jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x34e9f8bf __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3511690c do_SAK +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351b761b fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x3541ebac inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace +EXPORT_SYMBOL vmlinux 0x35543981 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3586fe5e __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x35875f82 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35cf8d33 done_path_create +EXPORT_SYMBOL vmlinux 0x35cfa602 input_flush_device +EXPORT_SYMBOL vmlinux 0x35e6a79a netlink_net_capable +EXPORT_SYMBOL vmlinux 0x35f3290a nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x35f46aa7 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x35f9badf mntget +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x360d7288 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x36253f69 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable +EXPORT_SYMBOL vmlinux 0x3648c726 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x3683b46b shmem_aops +EXPORT_SYMBOL vmlinux 0x36945c48 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x36a004b6 dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36cb81d1 flush_signals +EXPORT_SYMBOL vmlinux 0x36d32068 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x3704f826 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x372ed468 begin_new_exec +EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x37596f3e dcache_dir_close +EXPORT_SYMBOL vmlinux 0x375c0eb4 add_to_pipe +EXPORT_SYMBOL vmlinux 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL vmlinux 0x376497f5 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x3764e44c napi_complete_done +EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x377f6be7 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x377f9693 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x37834986 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x379d4a72 input_grab_device +EXPORT_SYMBOL vmlinux 0x37a16f9f tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x37a9feef flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x37b30bc2 devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c8b121 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37f44377 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x37fbbd78 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38208c86 find_inode_rcu +EXPORT_SYMBOL vmlinux 0x382cdbb5 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x382e4be2 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x3836b7b2 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x385725b4 ps2_drain +EXPORT_SYMBOL vmlinux 0x385fa480 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x387d49bf sk_error_report +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x3891b36c __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x389c9d99 set_pages_uc +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38af20d6 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x38bc8c24 blk_put_request +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x38f816de serio_open +EXPORT_SYMBOL vmlinux 0x38fb1fcc xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x3902bdcc clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x39107d57 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x391db78d tcf_register_action +EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x393258fa acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x3933e76b pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3947bf30 mdiobus_read +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x394bf7e4 key_invalidate +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x39631f42 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x397df60b alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x398d284d kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x398e337f d_add_ci +EXPORT_SYMBOL vmlinux 0x39991267 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39b4ae44 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bed7d5 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x39e0ea73 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr +EXPORT_SYMBOL vmlinux 0x39f18748 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a099605 __get_user_nocheck_4 +EXPORT_SYMBOL vmlinux 0x3a0d9af7 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +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 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a52db01 sock_create_kern +EXPORT_SYMBOL vmlinux 0x3a531023 dev_change_flags +EXPORT_SYMBOL vmlinux 0x3a576075 param_get_uint +EXPORT_SYMBOL vmlinux 0x3a756625 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x3a7a9bd5 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x3a88b59d agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x3aa83c21 __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x3ab45dcf pci_enable_msi +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3abbb911 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x3ac44f19 sk_wait_data +EXPORT_SYMBOL vmlinux 0x3ac9ffff devm_of_iomap +EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region +EXPORT_SYMBOL vmlinux 0x3ae4733c __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x3aef594e agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x3b102e65 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b254211 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x3b30f44a md_finish_reshape +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b391e28 free_buffer_head +EXPORT_SYMBOL vmlinux 0x3b3c4d9d redraw_screen +EXPORT_SYMBOL vmlinux 0x3b4e607c skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b686202 dev_uc_init +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b77cd6d flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3b9835c9 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x3b9ce6fe nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x3ba6b0e3 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x3be53b86 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bf80261 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x3bff73a3 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1b347f devm_register_netdev +EXPORT_SYMBOL vmlinux 0x3c2fdfce unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x3c3e2c76 dev_open +EXPORT_SYMBOL vmlinux 0x3c3f5792 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map +EXPORT_SYMBOL vmlinux 0x3c48cb57 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x3c4d90d9 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x3c5771b8 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x3c6314d6 netdev_err +EXPORT_SYMBOL vmlinux 0x3c640710 sock_init_data +EXPORT_SYMBOL vmlinux 0x3c6e0c5f unregister_md_personality +EXPORT_SYMBOL vmlinux 0x3c89a6d1 inet_accept +EXPORT_SYMBOL vmlinux 0x3c8c24a4 bio_reset +EXPORT_SYMBOL vmlinux 0x3c95e1a0 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x3c985968 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x3c9cd739 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x3ca3e3f1 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x3ca92f00 phy_device_create +EXPORT_SYMBOL vmlinux 0x3cc8ebf5 ether_setup +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d01a965 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d1efb29 ps2_init +EXPORT_SYMBOL vmlinux 0x3d1f3c2f netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d25f84d vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d972116 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3da900c7 end_page_writeback +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 0x3dbe5a4a simple_transaction_read +EXPORT_SYMBOL vmlinux 0x3dbf5b7c register_qdisc +EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd32247 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x3dd8901b mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e00e249 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x3e0e7135 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x3e0f0fb1 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x3e1e225b skb_eth_push +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e586172 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x3e60e599 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x3e6a164d update_devfreq +EXPORT_SYMBOL vmlinux 0x3e954e8c bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x3ebb11e6 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3ef19c90 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f2e06cf kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x3f431721 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x3f4354be vme_bus_type +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f55e6a4 key_task_permission +EXPORT_SYMBOL vmlinux 0x3f5ba388 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x3f624036 phy_device_register +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f8c26c5 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0x3f8d4591 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x3f99217b vfs_mknod +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fd7da59 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x3fdf1d8c dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fe9c85c __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4022453a tcp_filter +EXPORT_SYMBOL vmlinux 0x4036699f sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x4045a320 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x4048411f devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x404dc660 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x40656497 md_write_start +EXPORT_SYMBOL vmlinux 0x40792247 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x407ed6af blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40adc59d __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x40b8ed34 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x40bd6858 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c7b599 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x40c7fd84 d_drop +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x40dd99e6 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x40f2d5ea pin_user_pages +EXPORT_SYMBOL vmlinux 0x40f37b03 nla_reserve +EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc +EXPORT_SYMBOL vmlinux 0x410acdb7 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x4112d4bb neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x412a066c blk_get_queue +EXPORT_SYMBOL vmlinux 0x412e6135 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x41349807 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x41371732 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x4143575a dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414f9fae vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x41519e8a __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x415256b9 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x4159e373 __SCK__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0x415d2f98 sock_set_priority +EXPORT_SYMBOL vmlinux 0x41701547 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418e2076 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x41b37078 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x41c3ef57 param_set_bint +EXPORT_SYMBOL vmlinux 0x41c429b7 netdev_alert +EXPORT_SYMBOL vmlinux 0x41d3fabe phy_write_paged +EXPORT_SYMBOL vmlinux 0x41dd23de xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x41e18def pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41fd1cd3 nd_device_register +EXPORT_SYMBOL vmlinux 0x41ff26fe kernel_write +EXPORT_SYMBOL vmlinux 0x42056147 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x42130a13 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x42258aab ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x422c685c generic_write_checks +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x42480600 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424c394e tty_register_driver +EXPORT_SYMBOL vmlinux 0x424c664f nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x4278a795 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x427ef0d4 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x4284753c inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x4285e2f5 pci_get_slot +EXPORT_SYMBOL vmlinux 0x429af51a udp_prot +EXPORT_SYMBOL vmlinux 0x429ec58a vfs_get_link +EXPORT_SYMBOL vmlinux 0x429ecabf xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x42bb18f1 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42c4e23e xfrm_lookup +EXPORT_SYMBOL vmlinux 0x42d30e45 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x42db3ddd padata_alloc +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4307746f dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x433464d4 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x4350133f dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436ca90d __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x436f8ef1 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x4376cbc6 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43888d5d register_netdev +EXPORT_SYMBOL vmlinux 0x438f4b33 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x43bd2c34 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x43c2b2e1 xp_dma_map +EXPORT_SYMBOL vmlinux 0x43d0136e genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43e19b7b mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x43e6d91f __scsi_add_device +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x4412b336 datagram_poll +EXPORT_SYMBOL vmlinux 0x441bc592 page_symlink +EXPORT_SYMBOL vmlinux 0x443ab9b1 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x443c44d0 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x444ba6a2 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x445ee924 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x445efc73 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x448af022 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event +EXPORT_SYMBOL vmlinux 0x4494beee dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44c1734f jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x44ccb6c0 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f61347 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x4502018b jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x452df0a5 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45403630 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x4545c4d0 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x4562cace filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x458987b7 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x458b80cc seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x45a0a605 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x45b6aac1 dquot_acquire +EXPORT_SYMBOL vmlinux 0x45c283d8 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x45d42bbd agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x45e86f10 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 +EXPORT_SYMBOL vmlinux 0x45f7c831 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x45fc19d2 retbleed_untrain_ret +EXPORT_SYMBOL vmlinux 0x4602222d inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x46066f49 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x4619edad phy_validate_pause +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x46319c15 file_modified +EXPORT_SYMBOL vmlinux 0x464b32ae inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x464fc08f mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x4652a5ab fqdir_exit +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466b7390 sk_common_release +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x4672a795 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x46968009 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46bbe71b proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x46c143b0 vmbus_sendpacket +EXPORT_SYMBOL vmlinux 0x46c2abd8 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46c4eb88 tty_vhangup +EXPORT_SYMBOL vmlinux 0x46cdeff7 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x46cf10eb cachemode2protval +EXPORT_SYMBOL vmlinux 0x46d1dc89 genl_notify +EXPORT_SYMBOL vmlinux 0x46e2ad52 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x46ec5042 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x46f771f1 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x46fc5b69 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x470401e6 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x470d9336 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x471b9325 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x473529d8 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x47424924 udplite_prot +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x47b0de93 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x47b70e37 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47cc58c9 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x47e1d9d5 complete_request_key +EXPORT_SYMBOL vmlinux 0x48024f1a nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x4810ace5 unregister_nls +EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x4813dfc8 amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481ee1e1 fs_param_is_string +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x4833ec43 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x483dd7fe tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x48476bcb intel_gtt_insert_page +EXPORT_SYMBOL vmlinux 0x484978d7 get_tree_nodev +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 0x4871d75d clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a6a620 netif_device_detach +EXPORT_SYMBOL vmlinux 0x48a81d7e vfio_group_pin_pages +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b0a764 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x48b36511 devm_clk_get +EXPORT_SYMBOL vmlinux 0x48b8a882 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48be5a9f ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48c5e613 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x48e55968 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x48e8b0b1 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x48ff8ea5 inet_select_addr +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490ca8ed ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x491daa39 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x493ca275 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x497c360e tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x49924896 release_pages +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a40b25 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49c6074e __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x49c848d7 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x49cbec52 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x49d6d3ae load_nls +EXPORT_SYMBOL vmlinux 0x49f670b9 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x49fa988a kmem_cache_create +EXPORT_SYMBOL vmlinux 0x4a026bf3 __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x4a0a6803 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x4a165127 kobject_put +EXPORT_SYMBOL vmlinux 0x4a18cd99 param_ops_byte +EXPORT_SYMBOL vmlinux 0x4a22d341 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a3ea124 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x4a40011c xfrm_state_free +EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 +EXPORT_SYMBOL vmlinux 0x4a688f9f flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x4a6a5300 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x4a74931e inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x4a81ef9b jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4aae089e pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x4ab09200 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x4abb7d10 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x4ad90849 param_get_string +EXPORT_SYMBOL vmlinux 0x4ad96a83 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b14febd pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x4b2321f2 elevator_alloc +EXPORT_SYMBOL vmlinux 0x4b4afda0 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x4b4dad9a dst_destroy +EXPORT_SYMBOL vmlinux 0x4b4ea2b2 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x4b5e3a47 __get_user_nocheck_1 +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b655d6b vma_set_file +EXPORT_SYMBOL vmlinux 0x4b6a58af dev_get_flags +EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg +EXPORT_SYMBOL vmlinux 0x4b805637 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x4b80ea64 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x4b99a136 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x4ba9ce33 __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x4bc27697 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bcd4d88 phy_attached_info +EXPORT_SYMBOL vmlinux 0x4be1e28b agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf57327 is_subdir +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c18b49c scsi_scan_host +EXPORT_SYMBOL vmlinux 0x4c236f6f __x86_indirect_thunk_r15 +EXPORT_SYMBOL vmlinux 0x4c36bd43 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c4bdee6 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x4c6a4015 md_update_sb +EXPORT_SYMBOL vmlinux 0x4c737069 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x4c77b53e rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x4c89f5bd dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x4c8cf250 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x4c8f14a1 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x4c9bd4b5 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4cb225a0 _dev_crit +EXPORT_SYMBOL vmlinux 0x4cb938f7 udp_read_sock +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cd3a174 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x4cd940fa set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x4ceae601 get_cpu_entry_area +EXPORT_SYMBOL vmlinux 0x4d014d23 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x4d02cd30 nf_log_set +EXPORT_SYMBOL vmlinux 0x4d041035 get_user_pages +EXPORT_SYMBOL vmlinux 0x4d139486 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x4d195610 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x4d2603fe mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d572ff9 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x4d60024f __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x4d6cae88 mount_single +EXPORT_SYMBOL vmlinux 0x4d8a01b3 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da2c5fc jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x4da60836 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x4dadfbf0 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x4daef354 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x4dbd3499 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x4dbdddd3 arp_xmit +EXPORT_SYMBOL vmlinux 0x4dc708dd sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4dcc5eb5 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x4dd852c5 ip_output +EXPORT_SYMBOL vmlinux 0x4dd9d156 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x4ddfe04f ata_print_version +EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4df46e2f open_with_fake_path +EXPORT_SYMBOL vmlinux 0x4df793f7 pci_request_region +EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock +EXPORT_SYMBOL vmlinux 0x4dfcfa22 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x4e1a677a touch_buffer +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e2793d2 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e496ebc tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e62ecbf scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x4e63e57f __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e7242ae remove_proc_entry +EXPORT_SYMBOL vmlinux 0x4e7c75b8 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x4e8420a2 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x4e871d35 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x4e879416 __lock_page +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ec65eb9 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x4ef58da6 devm_clk_put +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f44e77d udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x4f4afb2d napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x4f711f84 intel_scu_ipc_dev_iowrite8 +EXPORT_SYMBOL vmlinux 0x4f7330e4 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x4f73e3b7 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x4f8d4e97 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x4f96009b ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x4f9af74e block_read_full_page +EXPORT_SYMBOL vmlinux 0x4fcabacc xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x4fcfada2 param_array_ops +EXPORT_SYMBOL vmlinux 0x4fd6efa0 d_make_root +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4ff5ec12 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x4fffd6a1 inet6_offloads +EXPORT_SYMBOL vmlinux 0x5004f5e6 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x500af721 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x500d99a5 skb_store_bits +EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x50248841 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x502ae2d9 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x5050891a tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x5051450a netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x505519d8 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x50646a08 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x506c67e1 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x50bd2e5b dev_activate +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50c90c8e __skb_checksum +EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50e820f9 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x50f37997 devm_memunmap +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x510e32c6 iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x511d375f simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x518082fe gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x51ba2221 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51e70ca7 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x51f298e0 intel_scu_ipc_dev_ioread8 +EXPORT_SYMBOL vmlinux 0x51f4245e param_ops_hexint +EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x51fad47f add_watch_to_object +EXPORT_SYMBOL vmlinux 0x5208c2de sync_file_create +EXPORT_SYMBOL vmlinux 0x520f63cb input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x5223e83a mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x5264c65c pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x52678676 pipe_unlock +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x527c732b xp_free +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52b9620d page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52d9afca security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x52e9c077 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x52eb1b06 __find_get_block +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x5304fb08 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x531c0388 fb_set_var +EXPORT_SYMBOL vmlinux 0x531c523a netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x533206b5 sort_r +EXPORT_SYMBOL vmlinux 0x53354095 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x5342c48b skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x534f9250 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x535d2f61 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x536289fc dm_kobject_release +EXPORT_SYMBOL vmlinux 0x5379d823 register_netdevice +EXPORT_SYMBOL vmlinux 0x5379ecb4 clk_get +EXPORT_SYMBOL vmlinux 0x53984476 __page_symlink +EXPORT_SYMBOL vmlinux 0x539d730f fqdir_init +EXPORT_SYMBOL vmlinux 0x53a0a72c md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x53a4c5de __udp_disconnect +EXPORT_SYMBOL vmlinux 0x53b38c3e pci_get_subsys +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53ba0505 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x53e50ffa first_ec +EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54430280 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x54457046 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x5461cf61 dst_init +EXPORT_SYMBOL vmlinux 0x5478c645 neigh_destroy +EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable +EXPORT_SYMBOL vmlinux 0x5488d2b8 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x54a74f2f udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54b22bb1 __SCT__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x54bf2949 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x54c60d55 param_set_int +EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x54d3eccb tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x550e3f8d neigh_event_ns +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552bf012 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x5535a6b4 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x55385e2e __x86_indirect_thunk_r14 +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache +EXPORT_SYMBOL vmlinux 0x556b4db7 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine +EXPORT_SYMBOL vmlinux 0x5574ef19 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x557993ab amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55a98e34 km_policy_expired +EXPORT_SYMBOL vmlinux 0x55c1b52f sock_create +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55e3874a nd_device_unregister +EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot +EXPORT_SYMBOL vmlinux 0x56108322 amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0x56116415 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x561bd1aa fc_remote_port_add +EXPORT_SYMBOL vmlinux 0x561c3a76 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x5657d4b5 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x5673d7fe set_bh_page +EXPORT_SYMBOL vmlinux 0x567e9f77 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x568b0099 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x568be8bc security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x56b441a7 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x56c4d96f input_register_handler +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56ebdd23 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x56f0540f mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x56fbc5ea generic_file_fsync +EXPORT_SYMBOL vmlinux 0x57027e75 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x5712be5d unpin_user_page +EXPORT_SYMBOL vmlinux 0x5726f2b6 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x5728caec __scm_send +EXPORT_SYMBOL vmlinux 0x573053d4 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x574fe31f pcim_iomap +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575a67a0 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x575dc8c3 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x57695b21 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x576e76e6 ip_tunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x57710e40 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0x57735fce get_tree_single +EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57ad7528 get_task_cred +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57ebd3eb __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x57f66039 netdev_info +EXPORT_SYMBOL vmlinux 0x57f9b6af inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x5801f5be security_sk_clone +EXPORT_SYMBOL vmlinux 0x58050187 get_acl +EXPORT_SYMBOL vmlinux 0x5816c8ff devfreq_add_device +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x581fe8bb udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x582522a6 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x582dbb16 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x585456b7 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x5857961a sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x5858a311 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x5862a818 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x58699fb0 param_ops_bint +EXPORT_SYMBOL vmlinux 0x586c73dc xfrm_state_update +EXPORT_SYMBOL vmlinux 0x586e0542 cpu_info +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bb4350 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x58c49166 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x58ca1a54 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58ff46d6 dev_add_offload +EXPORT_SYMBOL vmlinux 0x59001627 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x590204ff xfrm_state_add +EXPORT_SYMBOL vmlinux 0x5902433e __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x590c088e ppp_unit_number +EXPORT_SYMBOL vmlinux 0x591a3b6d tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x591cbb7f pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x5929ca5d __do_once_done +EXPORT_SYMBOL vmlinux 0x593a061f ip_setsockopt +EXPORT_SYMBOL vmlinux 0x593edc4b cpu_tlbstate_shared +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594eff23 pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x59665cb7 mmput_async +EXPORT_SYMBOL vmlinux 0x5973578f mark_page_accessed +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59a6c37b __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x59acf859 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59f07211 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x59f694d3 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0dec81 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a354ad5 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x5a39012a pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x5a3fddac pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5a67f7c2 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x5a6c9a8b sock_no_listen +EXPORT_SYMBOL vmlinux 0x5a74958a padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x5a86b9b7 __register_binfmt +EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5aa29b76 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x5ab24296 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x5abc6f59 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5b258cfa thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b62c216 framebuffer_release +EXPORT_SYMBOL vmlinux 0x5b641283 arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x5b77c653 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x5b7c0e3c __free_pages +EXPORT_SYMBOL vmlinux 0x5b8239ca __x86_return_thunk +EXPORT_SYMBOL vmlinux 0x5b932bc4 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x5b9cd6d8 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x5baa2f0e pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x5bc8deb2 inode_set_ctime_current +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bd89137 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x5be1fddb __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x5be36052 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5be76bf9 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x5bed6d63 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x5bf41415 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x5c0530a0 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x5c1452c2 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c39f02b thaw_super +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c538415 block_write_end +EXPORT_SYMBOL vmlinux 0x5c55c065 vfs_symlink +EXPORT_SYMBOL vmlinux 0x5c7dc15b fs_lookup_param +EXPORT_SYMBOL vmlinux 0x5c82f3ac setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0x5c8501f5 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x5c9bfbd0 logfc +EXPORT_SYMBOL vmlinux 0x5c9e7451 vmbus_recvpacket +EXPORT_SYMBOL vmlinux 0x5ca37d0d sock_recvmsg +EXPORT_SYMBOL vmlinux 0x5ca81a99 md_register_thread +EXPORT_SYMBOL vmlinux 0x5cb32ed0 get_phy_device +EXPORT_SYMBOL vmlinux 0x5cc30099 block_truncate_page +EXPORT_SYMBOL vmlinux 0x5cc3f02b netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x5cc698ad I_BDEV +EXPORT_SYMBOL vmlinux 0x5cd1b42f inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x5ce45a20 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x5ce8eb50 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf87f3f dev_uc_add +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5cfba215 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x5cfc2a94 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x5d08507a __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x5d08e67f fc_block_scsi_eh +EXPORT_SYMBOL vmlinux 0x5d3243f5 dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0x5d34a780 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d826a78 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x5dae1184 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x5dca4e56 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x5de9356d current_in_userns +EXPORT_SYMBOL vmlinux 0x5de9ef13 input_match_device_id +EXPORT_SYMBOL vmlinux 0x5dede63f drop_super +EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e1eced4 vlan_for_each +EXPORT_SYMBOL vmlinux 0x5e249a6e phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e38a140 scsi_device_get +EXPORT_SYMBOL vmlinux 0x5e3c340b drop_nlink +EXPORT_SYMBOL vmlinux 0x5e40bf20 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x5e4fa294 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x5e68ff5a amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0x5e6b4390 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x5e742ea8 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x5e79433f unregister_binfmt +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e8d8602 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea809ef sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x5ead5dbb vm_map_ram +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb562bb tcp_prot +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 0x5ed99e68 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5ef88eee ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5f00b27d sock_register +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f197aeb ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x5f1bb4be seq_escape +EXPORT_SYMBOL vmlinux 0x5f327553 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x5f480745 nf_log_unset +EXPORT_SYMBOL vmlinux 0x5f4b94a4 make_kgid +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x5f5eec51 simple_open +EXPORT_SYMBOL vmlinux 0x5f773e36 dquot_commit +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo +EXPORT_SYMBOL vmlinux 0x5fa20201 module_layout +EXPORT_SYMBOL vmlinux 0x5fb2314d try_to_release_page +EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fd1f893 generic_fadvise +EXPORT_SYMBOL vmlinux 0x5fd3518c dquot_resume +EXPORT_SYMBOL vmlinux 0x5fd45301 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x5fdad12f acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x5fe13529 __SCT__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601b545d bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x601ca6cb bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602591cf _dev_alert +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x6060b654 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x606f36aa jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x606f9606 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x60763003 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x6082e597 arp_tbl +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x60880f8a get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x608891bd tty_port_lower_dtr_rts +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 0x60a5c1a8 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x60b006b7 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60f07045 vga_get +EXPORT_SYMBOL vmlinux 0x61001be5 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612a3634 filemap_flush +EXPORT_SYMBOL vmlinux 0x612c4c9f input_setup_polling +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x6137099c __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x6140c17d pci_select_bars +EXPORT_SYMBOL vmlinux 0x614a33fe mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge +EXPORT_SYMBOL vmlinux 0x6179d977 skb_vlan_pop +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 0x61946802 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x619dfcdc intel_scu_ipc_dev_readv +EXPORT_SYMBOL vmlinux 0x61aea1b3 set_capacity +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61b8f1f4 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x61c94396 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x61ce05d6 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6258eef1 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x626a9b32 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62881493 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x628931a5 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x6298f629 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x6299230b mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62db09a2 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x62ee617b mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x62f24700 simple_empty +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x63015f02 key_type_keyring +EXPORT_SYMBOL vmlinux 0x6302b880 arp_send +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x6323cd06 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x6325312e configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x632db681 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x63619fc4 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps +EXPORT_SYMBOL vmlinux 0x6368c65c mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x636946ad get_vm_area +EXPORT_SYMBOL vmlinux 0x6383b27c __x86_indirect_thunk_rdx +EXPORT_SYMBOL vmlinux 0x639a48b1 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x63a040fd phy_connect_direct +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b79d5e set_disk_ro +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63c94a86 fc_release_transport +EXPORT_SYMBOL vmlinux 0x63dc9c24 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f835ba on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6420ef87 sock_no_connect +EXPORT_SYMBOL vmlinux 0x642f5a26 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x6436c382 kill_pgrp +EXPORT_SYMBOL vmlinux 0x64404d1e mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x645dfc3b mdio_device_register +EXPORT_SYMBOL vmlinux 0x6470ea1f dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x647aee6e __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64953af7 generic_writepages +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649d67fb jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x64a1cb7f sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64ab1712 register_cdrom +EXPORT_SYMBOL vmlinux 0x64b31b57 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c1f103 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x64d28e69 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x64e4a8cc input_enable_softrepeat +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 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6541261d sock_i_uid +EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop +EXPORT_SYMBOL vmlinux 0x65487097 __x86_indirect_thunk_rax +EXPORT_SYMBOL vmlinux 0x654e3bf7 legacy_pic +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x6577787d pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x659df6ae dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x65c5a535 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65da558f tty_driver_flush_buffer +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 0x65e169fe sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x65f0eb9a fsync_bdev +EXPORT_SYMBOL vmlinux 0x66017def may_umount +EXPORT_SYMBOL vmlinux 0x660bfca0 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x66107fa2 mr_table_dump +EXPORT_SYMBOL vmlinux 0x661fde19 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x662679a3 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x662b4325 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x6658ddeb input_set_capability +EXPORT_SYMBOL vmlinux 0x66594f0e xattr_full_name +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x6672331d tcp_connect +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x66a12134 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x66abd4d0 read_cache_pages +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66cca4f9 __x86_indirect_thunk_rcx +EXPORT_SYMBOL vmlinux 0x670ecece __x86_indirect_thunk_rbx +EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x67698cc3 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x676f115c kernel_getpeername +EXPORT_SYMBOL vmlinux 0x677c7b39 dst_alloc +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x679700fc jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x67979411 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x67a67991 sg_miter_start +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67b8188f __napi_schedule +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67c9312f xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x67d634cf end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x67e119fb request_key_rcu +EXPORT_SYMBOL vmlinux 0x67e28284 import_iovec +EXPORT_SYMBOL vmlinux 0x67e368a6 __nla_reserve +EXPORT_SYMBOL vmlinux 0x67fd591f build_skb_around +EXPORT_SYMBOL vmlinux 0x680a9114 simple_rename +EXPORT_SYMBOL vmlinux 0x680d3b0a dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer +EXPORT_SYMBOL vmlinux 0x682a081e unregister_console +EXPORT_SYMBOL vmlinux 0x68318cf3 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x685133a0 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x6861351f skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x6869fccb may_setattr +EXPORT_SYMBOL vmlinux 0x68771e5b scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x687ec04e tty_write_room +EXPORT_SYMBOL vmlinux 0x68872e43 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x68a5129a dev_set_threaded +EXPORT_SYMBOL vmlinux 0x68c4b824 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x68cc4d09 seq_putc +EXPORT_SYMBOL vmlinux 0x68e0815a devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x68e93b4d bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x68eca20e tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x690db539 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x690fbc22 blk_put_queue +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6936dfc1 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x69567de9 make_kuid +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697407f4 write_cache_pages +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x6988950f tty_kref_put +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x699a1ddc fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x699e1cea jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69cce97c dump_align +EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x69d5d6a8 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x69d78344 vc_resize +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e90511 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x69eb0199 user_path_create +EXPORT_SYMBOL vmlinux 0x69ef7f34 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x69f176e5 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a261b78 irq_stat +EXPORT_SYMBOL vmlinux 0x6a2ca2b5 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x6a2d3283 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a48f635 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x6a542508 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a7fb167 mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0x6a815c2f pci_find_bus +EXPORT_SYMBOL vmlinux 0x6a840e2a gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x6a87fe3c config_group_init +EXPORT_SYMBOL vmlinux 0x6a8b2073 vfs_create +EXPORT_SYMBOL vmlinux 0x6a915717 kill_fasync +EXPORT_SYMBOL vmlinux 0x6a9e7109 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aba29e2 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae0cbb5 ip_defrag +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b00c63a unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x6b0fa51f netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user +EXPORT_SYMBOL vmlinux 0x6b1395c1 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2a9f4c clear_nlink +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b30d1fc seq_printf +EXPORT_SYMBOL vmlinux 0x6b3bf2ca mr_dump +EXPORT_SYMBOL vmlinux 0x6b3d22b7 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x6b49677f vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b7721c6 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x6b849cf1 f_setown +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8b48a9 path_put +EXPORT_SYMBOL vmlinux 0x6b8b865c d_prune_aliases +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6bb28165 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x6bc1ed00 bdi_register +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6be808b8 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x6bff5e47 param_get_long +EXPORT_SYMBOL vmlinux 0x6c0f1645 config_item_get +EXPORT_SYMBOL vmlinux 0x6c0f1787 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x6c0fd173 blk_rq_map_user +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 0x6c32fb77 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x6c453c73 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x6c4f9641 input_get_keycode +EXPORT_SYMBOL vmlinux 0x6c5c3e4c __ps2_command +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c794218 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x6c8e206a sock_wmalloc +EXPORT_SYMBOL vmlinux 0x6c9b9bc7 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x6caacc75 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x6cb2f5a1 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d19df00 input_mt_get_slot_by_key +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 0x6d343251 simple_fill_super +EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d8fee5c ppp_register_channel +EXPORT_SYMBOL vmlinux 0x6d9c070c netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x6daf401e netif_napi_add +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 0x6ddbbd26 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6dff0126 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x6e048245 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x6e0ee25a peernet2id +EXPORT_SYMBOL vmlinux 0x6e18b949 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x6e239456 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x6e315b18 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e746f20 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x6e8b4288 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x6e9b360e shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eeb2c59 serio_bus +EXPORT_SYMBOL vmlinux 0x6f0230b5 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x6f03cac1 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x6f053e78 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x6f12a495 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x6f142822 textsearch_register +EXPORT_SYMBOL vmlinux 0x6f18e89a update_region +EXPORT_SYMBOL vmlinux 0x6f1d42b4 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f436a6c ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f5ee95b __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x6f6a0fa4 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x6f75e41f pci_get_class +EXPORT_SYMBOL vmlinux 0x6f83018b fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6f95ecd4 generic_write_end +EXPORT_SYMBOL vmlinux 0x6f961023 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x6f9f745f bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x6fa73bc2 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fb58bc5 input_unregister_device +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fbce9d4 bh_submit_read +EXPORT_SYMBOL vmlinux 0x6fc9a500 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fdaaa55 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x6fe1cda0 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x6fea09c7 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x6ff51ad4 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x6ffa61d7 skb_ext_add +EXPORT_SYMBOL vmlinux 0x6ffd68ff dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x700bf975 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x700d0486 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x70152cb0 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x701602af __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x7017d408 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x7037e0af validate_slab_cache +EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x7083626a set_blocksize +EXPORT_SYMBOL vmlinux 0x708e3521 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x70908bf1 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x70922ae4 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70bf4c09 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x70cfee34 file_update_time +EXPORT_SYMBOL vmlinux 0x70ddefb9 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x70ead413 tcp_close +EXPORT_SYMBOL vmlinux 0x70f4d14b __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x7109d49b notify_change +EXPORT_SYMBOL vmlinux 0x711c16e5 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x711ffa45 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7130838e fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x71314a9f xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x71372033 wireless_send_event +EXPORT_SYMBOL vmlinux 0x7144e016 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x7162c85f sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x718a4693 __SCT__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x718d5256 d_exact_alias +EXPORT_SYMBOL vmlinux 0x719a3b2c dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x719a89f8 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71ab8f2e kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x71b006f6 bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x71cbaf34 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x720571e4 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x7209ddd1 tso_build_data +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x7224865e from_kuid +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x726c7205 dev_mc_add +EXPORT_SYMBOL vmlinux 0x72874207 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x72971b7f __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x729d2a35 stop_tty +EXPORT_SYMBOL vmlinux 0x72afc305 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72d79d83 pgdir_shift +EXPORT_SYMBOL vmlinux 0x72e9450e agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72eaba39 ip6_xmit +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x72f5ba9d is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x731ed915 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x732d934b pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x736f4a50 agp_copy_info +EXPORT_SYMBOL vmlinux 0x737e6d1e vfio_register_notifier +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x7383f72b skb_expand_head +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73bc5522 kobject_add +EXPORT_SYMBOL vmlinux 0x73caf137 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x73d6a005 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0x73d7a871 _dev_emerg +EXPORT_SYMBOL vmlinux 0x73db9f34 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73e4c181 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x74004d57 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x74276fe2 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x743eeab4 setup_new_exec +EXPORT_SYMBOL vmlinux 0x7445a4cd security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x7452a9e5 kern_path +EXPORT_SYMBOL vmlinux 0x7452fe81 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x7463e2d9 register_console +EXPORT_SYMBOL vmlinux 0x746a8357 seq_puts +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x747fdbec neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x74a5fb68 keyring_clear +EXPORT_SYMBOL vmlinux 0x74a81128 misc_deregister +EXPORT_SYMBOL vmlinux 0x74b56d10 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c6402c fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e7847e pv_ops +EXPORT_SYMBOL vmlinux 0x74eae332 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x74fd4509 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x750cfa7f netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x750e8d0e path_has_submounts +EXPORT_SYMBOL vmlinux 0x751a5ea6 __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0x7530bb0c __SCT__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x75466f95 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x754a10e7 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x754c0855 iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x75503190 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x7586b966 generic_setlease +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock +EXPORT_SYMBOL vmlinux 0x75a1464c mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x75a8e3dc fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75cb9bc9 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x75cfeaa7 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d30d68 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75dc511f inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x75e247de dcache_dir_open +EXPORT_SYMBOL vmlinux 0x75eda4d3 proto_unregister +EXPORT_SYMBOL vmlinux 0x75f5fd81 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7610ea9b md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x7628dce0 blkdev_put +EXPORT_SYMBOL vmlinux 0x762b085d regset_get +EXPORT_SYMBOL vmlinux 0x76450226 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766243be jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x76748ecf d_delete +EXPORT_SYMBOL vmlinux 0x767d3a4f devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x769adb6d fb_find_mode +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76ae1e7b sk_net_capable +EXPORT_SYMBOL vmlinux 0x76c883cf unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x76c978ba mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x76d0aebb tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76e220e3 keyring_search +EXPORT_SYMBOL vmlinux 0x76f83c74 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x77132a8e nf_getsockopt +EXPORT_SYMBOL vmlinux 0x7720ff07 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x77223ed3 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x7732e27b eth_gro_complete +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773cb5e4 pci_iomap +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 +EXPORT_SYMBOL vmlinux 0x7770f249 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x77724461 seq_read_iter +EXPORT_SYMBOL vmlinux 0x77770eea ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x777a47ff override_creds +EXPORT_SYMBOL vmlinux 0x778898ac vme_register_driver +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x77af84c0 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d6b489 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f1ec78 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x77f3bfe1 cdev_alloc +EXPORT_SYMBOL vmlinux 0x77fc86e3 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x782d1b60 sk_alloc +EXPORT_SYMBOL vmlinux 0x7834defd vfio_group_unpin_pages +EXPORT_SYMBOL vmlinux 0x7834f917 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x7847ffcd __skb_pad +EXPORT_SYMBOL vmlinux 0x784fd7a6 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x786628e6 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x78778431 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7895138c __sock_i_ino +EXPORT_SYMBOL vmlinux 0x789724be simple_unlink +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78b6ebd5 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78c54e12 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x78d7e16e ip_do_fragment +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78f80e39 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x78fb8f2c filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x78fbe175 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x791295c4 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x791e7f80 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x79630a4f __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x796f4b46 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin +EXPORT_SYMBOL vmlinux 0x7973a0c7 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x79866826 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x7988f8c7 __devm_request_region +EXPORT_SYMBOL vmlinux 0x79987435 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa2685 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x79ac1665 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x79b4afbe vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x79baca59 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted +EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a0c1f43 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x7a1630fc find_vma +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a3525dc xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x7a489421 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x7a4a3315 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x7a4b7a24 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x7a4fde3c dcache_readdir +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a6c39d6 dev_set_group +EXPORT_SYMBOL vmlinux 0x7a7886d9 kernel_listen +EXPORT_SYMBOL vmlinux 0x7a7b511b cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab45d25 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abaf458 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adac406 elv_rb_add +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae482a6 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x7b259b31 dev_add_pack +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b3f8d69 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b63751b ll_rw_block +EXPORT_SYMBOL vmlinux 0x7b71d85b flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7bb32184 __acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bc3c401 locks_init_lock +EXPORT_SYMBOL vmlinux 0x7bc9fb6a nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x7bca328d xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x7bd74727 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x7be569ad xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x7bfc159f pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1c2a50 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x7c2137d9 genphy_read_status +EXPORT_SYMBOL vmlinux 0x7c281ce2 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c545791 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x7c56dff5 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x7c9237ba mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cfbfb2d blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d4e14c6 d_add +EXPORT_SYMBOL vmlinux 0x7d4fc45a dev_deactivate +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio +EXPORT_SYMBOL vmlinux 0x7d678dbf inet_register_protosw +EXPORT_SYMBOL vmlinux 0x7d6c5e1a refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d8514de component_match_add_release +EXPORT_SYMBOL vmlinux 0x7da6b4f4 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x7dac2f7d tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7db523fc vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x7dbd7a4b security_d_instantiate +EXPORT_SYMBOL vmlinux 0x7dc25b5d key_validate +EXPORT_SYMBOL vmlinux 0x7dc561c9 seq_path +EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfd5344 d_set_d_op +EXPORT_SYMBOL vmlinux 0x7e161cb0 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x7e185330 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e40af58 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x7e50260c vfs_getattr +EXPORT_SYMBOL vmlinux 0x7e51a7bd serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x7e560d07 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x7e627876 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x7e6c9ed4 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x7e87373e dm_unregister_target +EXPORT_SYMBOL vmlinux 0x7e8fef88 security_path_mknod +EXPORT_SYMBOL vmlinux 0x7ea40c9f bmap +EXPORT_SYMBOL vmlinux 0x7eb1009c __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x7ebc99ce tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x7ed18455 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x7ed85ef7 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x7ef26405 pci_clear_mwi +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 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f26c8b9 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x7f415634 fget +EXPORT_SYMBOL vmlinux 0x7f431215 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x7f51f8f5 kill_litter_super +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f7805c9 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f80ead1 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x7f8951f4 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x7fb8b101 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x7fd4f63b __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x7fd988ec sock_rfree +EXPORT_SYMBOL vmlinux 0x7fdf59e2 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe6d854 mdio_find_bus +EXPORT_SYMBOL vmlinux 0x7ff6eb7a inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x7ff8187f sock_setsockopt +EXPORT_SYMBOL vmlinux 0x7ffc9b73 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x80034145 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x80249bbc splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x8031a28f ps2_command +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x803f5878 fb_show_logo +EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x8057cb9c blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x805f9834 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80a3420b vga_con +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80acd934 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x80b70f61 set_bdi_congested +EXPORT_SYMBOL vmlinux 0x80c302ea __block_write_full_page +EXPORT_SYMBOL vmlinux 0x80c4a850 mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d5e49d __frontswap_test +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d81921 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x80dbbeb1 phy_connect +EXPORT_SYMBOL vmlinux 0x80e5e6c5 iget_failed +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80f5127c tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x81124a61 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x814d3373 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x81601482 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command +EXPORT_SYMBOL vmlinux 0x816d2265 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x817ddb8e dec_node_page_state +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x81997f93 __break_lease +EXPORT_SYMBOL vmlinux 0x81a2b6a8 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x81bb9e5a rt6_lookup +EXPORT_SYMBOL vmlinux 0x81c76d65 no_llseek +EXPORT_SYMBOL vmlinux 0x81ce9941 intel_scu_ipc_dev_writev +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81dc9d80 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x820113fe __post_watch_notification +EXPORT_SYMBOL vmlinux 0x8214fab7 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x8225f4b1 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x8233a0ea remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked +EXPORT_SYMBOL vmlinux 0x823dda69 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x8271ca1f mode_strip_sgid +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82a6dd1d inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x82a70d3b inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x82ab3baf scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x82bb0350 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82d692a5 param_get_hexint +EXPORT_SYMBOL vmlinux 0x82e416d3 vfs_link +EXPORT_SYMBOL vmlinux 0x82e94b10 stream_open +EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync +EXPORT_SYMBOL vmlinux 0x82fd77fb ps2_begin_command +EXPORT_SYMBOL vmlinux 0x830dc9f2 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x830f08ae iommu_put_dma_cookie +EXPORT_SYMBOL vmlinux 0x8316cb5f security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x832b4ee6 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x832fd785 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x83376585 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x833e1c6e xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x834236cc udp_seq_next +EXPORT_SYMBOL vmlinux 0x8352d831 set_binfmt +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x8366d16f input_free_device +EXPORT_SYMBOL vmlinux 0x836d9886 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x8372c22c to_nd_pfn +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x83ae00b5 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x83bf9779 proc_set_size +EXPORT_SYMBOL vmlinux 0x83d5704e ip6_frag_next +EXPORT_SYMBOL vmlinux 0x83da1064 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x83e01ff8 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x83e034ea scsi_remove_device +EXPORT_SYMBOL vmlinux 0x83e5a696 netif_rx_any_context +EXPORT_SYMBOL vmlinux 0x83f5264e is_bad_inode +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x8425ff39 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 +EXPORT_SYMBOL vmlinux 0x8446454e bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x84497605 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x8452498a mdio_device_reset +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x8459b241 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x8460dc1a genphy_resume +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c2aae2 generic_listxattr +EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x84c4f080 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x84c874a9 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x84e3193c set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x84f3f506 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x850f7675 generic_permission +EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8522d6bc strncpy_from_user +EXPORT_SYMBOL vmlinux 0x8542517a dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x85449184 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x8546d570 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x8554fb9e fs_bio_set +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c008ce seq_release +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x86096601 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x86172953 skb_tx_error +EXPORT_SYMBOL vmlinux 0x86277695 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x862ab74b scsi_host_busy +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x864968eb kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x864d8e60 config_group_find_item +EXPORT_SYMBOL vmlinux 0x86604346 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x8692bd0a migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x86a24535 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x86a70063 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x86abb31b scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x86bc2f7e page_pool_create +EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86d9e96b elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x86e41fb3 flow_rule_match_eth_addrs +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 0x8706e766 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x870cdd44 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x8714563b csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x872d5282 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x872ee493 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x8752fe0a tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x8763ab58 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x87706d4e __put_user_nocheck_8 +EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x8789446f rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87a5ebe3 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x87b44333 inode_init_once +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87db5b18 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x87e16a69 iget_locked +EXPORT_SYMBOL vmlinux 0x87eb959e nf_ct_attach +EXPORT_SYMBOL vmlinux 0x87fb7f72 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x8804e44a tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x88113422 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x881a01c9 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x881ab28e netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x881c99a6 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x8829e7c8 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x88434ca7 xfrm4_udp_encap_rcv +EXPORT_SYMBOL vmlinux 0x887e9491 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8882fa46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x88855c33 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x888b2cc4 md_write_end +EXPORT_SYMBOL vmlinux 0x8896d8b7 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x88a946b5 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x88bbde3e mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x88d7c9b2 vm_mmap +EXPORT_SYMBOL vmlinux 0x88db5764 pnp_is_active +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88ddeb51 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88ef0ab4 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x88f02581 sock_alloc +EXPORT_SYMBOL vmlinux 0x88f87686 ip6_mtu +EXPORT_SYMBOL vmlinux 0x89158220 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x8923471c fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x893811b2 backlight_force_update +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x89535590 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x89899ef2 __icmp_send +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x8998d9de dev_trans_start +EXPORT_SYMBOL vmlinux 0x89c2a2bb flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x89c48050 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x89ccff3f __destroy_inode +EXPORT_SYMBOL vmlinux 0x89d7d2a2 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x89dda6e1 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x89deacfa user_revoke +EXPORT_SYMBOL vmlinux 0x89e237a7 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x89ee351d phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x89f441f8 sock_no_getname +EXPORT_SYMBOL vmlinux 0x8a15f5fe pci_choose_state +EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask +EXPORT_SYMBOL vmlinux 0x8a440620 netpoll_setup +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a6c42e4 nonseekable_open +EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa3b6df __d_lookup_done +EXPORT_SYMBOL vmlinux 0x8aa9d422 param_ops_uint +EXPORT_SYMBOL vmlinux 0x8abf6890 nobh_write_end +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8ac9b79c pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x8ae82d22 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x8afc196f dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0x8b0aee11 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x8b15d4f5 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x8b1c1ad0 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x8b1c6d30 blk_get_request +EXPORT_SYMBOL vmlinux 0x8b3218f7 scsi_partsize +EXPORT_SYMBOL vmlinux 0x8b3af83e input_close_device +EXPORT_SYMBOL vmlinux 0x8b3e0702 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x8b48705f d_instantiate_new +EXPORT_SYMBOL vmlinux 0x8b4d0e7e flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b63e89a alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x8b67a240 is_nd_btt +EXPORT_SYMBOL vmlinux 0x8b7492ef file_open_root +EXPORT_SYMBOL vmlinux 0x8b8026da arp_create +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b892f74 d_obtain_root +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b966b63 sn_rtc_cycles_per_second +EXPORT_SYMBOL vmlinux 0x8b96d255 follow_pfn +EXPORT_SYMBOL vmlinux 0x8b9757b5 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8ba984e6 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x8babb65a phy_read_mmd +EXPORT_SYMBOL vmlinux 0x8bb69742 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x8bbea1f1 dma_find_channel +EXPORT_SYMBOL vmlinux 0x8bc27a1b pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x8bd48a4d agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit +EXPORT_SYMBOL vmlinux 0x8bde7e18 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x8bde85f7 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8be16871 km_report +EXPORT_SYMBOL vmlinux 0x8bf332c1 tso_start +EXPORT_SYMBOL vmlinux 0x8c1e1739 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c3bde6c mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x8c62a50d del_gendisk +EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8c73b74b ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x8c7611e7 __fs_parse +EXPORT_SYMBOL vmlinux 0x8c7ad2e0 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8ca67f48 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x8cad4299 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cbf9814 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cc9796b fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x8cce7cb5 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x8cd850d4 register_filesystem +EXPORT_SYMBOL vmlinux 0x8d02c19d tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x8d03be0b set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x8d0cca38 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x8d0fe93f simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x8d1f773f skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x8d2fd46c pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d55de08 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x8d5aec4d netpoll_poll_disable +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 0x8d922e9f finish_swait +EXPORT_SYMBOL vmlinux 0x8d9a9f0b send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8da97e9a simple_setattr +EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x8db73e17 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x8dbef264 agp_create_memory +EXPORT_SYMBOL vmlinux 0x8dd67ef1 phy_get_pause +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8ddf062e seq_file_path +EXPORT_SYMBOL vmlinux 0x8deb2e83 dst_discard_out +EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e04cd0d file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e1be5d4 simple_statfs +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e221ea1 netdev_crit +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e5bbe9a md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x8e5c0c62 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x8e637845 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x8e663d0f zalloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x8e7718c3 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x8e7c5ed8 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8e947ae5 bio_split +EXPORT_SYMBOL vmlinux 0x8e95c580 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x8ea2851e __register_nls +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ed79c30 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x8ee0d726 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x8ef2b0b3 cdev_device_del +EXPORT_SYMBOL vmlinux 0x8ef90593 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x8f003ad0 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f4024bb scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x8f5ddd1d single_release +EXPORT_SYMBOL vmlinux 0x8f6607fb ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0x8f9908df blk_mq_kick_requeue_list +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 0x8fbad402 phy_print_status +EXPORT_SYMBOL vmlinux 0x8fbc68c9 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x8fc08b95 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x8fc17fd1 pci_release_region +EXPORT_SYMBOL vmlinux 0x8fcc8ee0 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x8fd1f3c9 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds +EXPORT_SYMBOL vmlinux 0x8fde6d8a xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x8fe1e69c netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x9025718f pnp_register_driver +EXPORT_SYMBOL vmlinux 0x902a4344 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x90377399 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x903fcecd jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x90461f98 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x905a4a23 nf_log_register +EXPORT_SYMBOL vmlinux 0x90605d82 generic_fillattr +EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override +EXPORT_SYMBOL vmlinux 0x909cde01 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0x90afcded phy_attached_print +EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp +EXPORT_SYMBOL vmlinux 0x90e4a79a sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x911182fa jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x9115ff38 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x9138a351 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x913dfcfb tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x914c7224 mount_bdev +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x916fd4e7 md_error +EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0x917af202 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a10c61 intel_scu_ipc_dev_simple_command +EXPORT_SYMBOL vmlinux 0x91a250d0 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91bb26c6 con_is_visible +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91c845c7 keyring_alloc +EXPORT_SYMBOL vmlinux 0x91d166b0 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x91e3e28f thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x91e8e1bf cfb_copyarea +EXPORT_SYMBOL vmlinux 0x91ef2624 single_open_size +EXPORT_SYMBOL vmlinux 0x91f33915 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x920b6d6d pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x9217cded scmd_printk +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92520cff tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x925f9a5f seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x92657970 wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0x9271d4f0 unregister_key_type +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x929d0283 gro_cells_init +EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw +EXPORT_SYMBOL vmlinux 0x92b30076 inet_shutdown +EXPORT_SYMBOL vmlinux 0x92b520a7 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c3f8f0 param_set_long +EXPORT_SYMBOL vmlinux 0x92cfef15 seq_lseek +EXPORT_SYMBOL vmlinux 0x92d027fc fiemap_prep +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92e42d0a pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92fa00e4 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fade3b task_work_add +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9303b46a fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931909d6 device_add_disk +EXPORT_SYMBOL vmlinux 0x93396a2e nf_reinject +EXPORT_SYMBOL vmlinux 0x93580e47 kernel_accept +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93980930 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x93a2393c blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93d02936 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x93ed371b __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x944ac22e dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x94581a24 proc_mkdir +EXPORT_SYMBOL vmlinux 0x945f7552 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x94603a2c __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x947a9078 eth_header +EXPORT_SYMBOL vmlinux 0x947ed5e7 sync_blockdev +EXPORT_SYMBOL vmlinux 0x94877a51 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable +EXPORT_SYMBOL vmlinux 0x948df40f phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x94902d45 follow_down_one +EXPORT_SYMBOL vmlinux 0x9492248f pci_dev_put +EXPORT_SYMBOL vmlinux 0x9493fc86 node_states +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a17c86 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x94a2464f tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x94b227a6 inode_permission +EXPORT_SYMBOL vmlinux 0x94bab9e4 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bddc18 key_put +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94cdf22f xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x94e22e0a inet_release +EXPORT_SYMBOL vmlinux 0x94e43568 touch_atime +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x94e8f0d7 netdev_emerg +EXPORT_SYMBOL vmlinux 0x94f3ffee poll_initwait +EXPORT_SYMBOL vmlinux 0x94f60007 dquot_file_open +EXPORT_SYMBOL vmlinux 0x94ffd226 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x950d7ff4 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x952707de ip_getsockopt +EXPORT_SYMBOL vmlinux 0x952b675e security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x952c5837 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x9537c1eb serio_interrupt +EXPORT_SYMBOL vmlinux 0x95397539 vga_client_register +EXPORT_SYMBOL vmlinux 0x953edf04 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x954534d1 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x955e345b sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x95732353 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x95817a9c scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x95920c38 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x95a42a0b truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95bc6cb1 get_watch_queue +EXPORT_SYMBOL vmlinux 0x95bd22b5 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x95c0d808 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x95caac34 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x96050dc8 __next_node_in +EXPORT_SYMBOL vmlinux 0x96100133 netdev_update_features +EXPORT_SYMBOL vmlinux 0x96187721 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add +EXPORT_SYMBOL vmlinux 0x964553a2 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9685615c nd_device_notify +EXPORT_SYMBOL vmlinux 0x96995e3d xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x96a81535 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96c400e3 vm_insert_pages +EXPORT_SYMBOL vmlinux 0x96c7d648 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d23108 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x96e2b6bd vfio_unregister_notifier +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 0x970cd192 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x9720c17c phy_resume +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x97450e14 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x974e54d6 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x97633be3 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base +EXPORT_SYMBOL vmlinux 0x9786b122 phy_detach +EXPORT_SYMBOL vmlinux 0x979860e8 cont_write_begin +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97bbcfdb get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97c1f87b __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x97d2d2b1 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds +EXPORT_SYMBOL vmlinux 0x97f85bbc md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x97f9901c configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x98026ff7 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x9817f6d9 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x981b07db genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x9821f4b9 d_tmpfile +EXPORT_SYMBOL vmlinux 0x982615b1 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982df976 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x984c2c35 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x9856b577 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x9872a719 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x9876a35e vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x98a5f6b0 rtnl_notify +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c2ec9c blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x98c6d85a nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98f1e806 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x98feeb94 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x99013999 kernel_connect +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x9908648a textsearch_prepare +EXPORT_SYMBOL vmlinux 0x990c0edb nf_log_packet +EXPORT_SYMBOL vmlinux 0x990dd081 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x990f6794 inet6_bind +EXPORT_SYMBOL vmlinux 0x9918ba96 param_get_short +EXPORT_SYMBOL vmlinux 0x9933d77c dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x9934b3ed skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x993553a8 __d_drop +EXPORT_SYMBOL vmlinux 0x993740f3 ip_tunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99562812 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x995dfe13 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x9961b8db __SCK__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x997f4d3f blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a2a376 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x99a60da5 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x99b5a487 consume_skb +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e48410 bio_copy_data +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 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a3f5523 cdev_device_add +EXPORT_SYMBOL vmlinux 0x9a547f6e blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x9a57704d sget +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9a815bf9 mntput +EXPORT_SYMBOL vmlinux 0x9a83ffd3 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x9aa7e4b3 simple_write_begin +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired +EXPORT_SYMBOL vmlinux 0x9ad7b283 inet_frags_init +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9af12c61 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x9afe6ae3 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x9b110ca1 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x9b117685 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x9b22d268 __invalidate_device +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b6f4acc dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b748c81 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x9ba81cc4 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x9bb0a694 pps_event +EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be +EXPORT_SYMBOL vmlinux 0x9bc1f202 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x9bd35f21 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x9be45414 param_set_charp +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c131853 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x9c1e53fa pps_register_source +EXPORT_SYMBOL vmlinux 0x9c2025e8 proto_register +EXPORT_SYMBOL vmlinux 0x9c20f015 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x9c2545f2 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x9c298331 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x9c3a8bcc jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x9c40cf65 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x9c517e38 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x9c58f7f0 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x9c5f762f generic_ro_fops +EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x9c80059a md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c880071 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base +EXPORT_SYMBOL vmlinux 0x9cc19323 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x9cca25c8 fb_blank +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ced41ad __SCT__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0x9cff52a7 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x9d023783 vfs_readlink +EXPORT_SYMBOL vmlinux 0x9d03d201 agp_bridge +EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x9d0a3061 amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d2fb1fb agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x9d3c6b39 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x9d47a797 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl +EXPORT_SYMBOL vmlinux 0x9d85a9b3 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context +EXPORT_SYMBOL vmlinux 0x9da46928 put_cmsg +EXPORT_SYMBOL vmlinux 0x9db272ea sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x9dbc2982 from_kgid +EXPORT_SYMBOL vmlinux 0x9dd87b5f irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x9dfd3007 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0c9e9a nvdimm_namespace_detach_btt +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e1361f2 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e168c6b simple_get_link +EXPORT_SYMBOL vmlinux 0x9e188073 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x9e1ae492 __sock_create +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e3993c4 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x9e449fab nd_dax_probe +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e58b03b always_delete_dentry +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x9e6e161e tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x9e7c42f3 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e800e75 unlock_rename +EXPORT_SYMBOL vmlinux 0x9e80d9b5 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x9e87c9b5 __lock_buffer +EXPORT_SYMBOL vmlinux 0x9e94f640 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea35e73 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x9ea52a20 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x9ea79aab __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9ee0b455 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x9eede915 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x9ef0850d __alloc_disk_node +EXPORT_SYMBOL vmlinux 0x9ef0eee7 __SCT__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x9ef14c60 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x9f064a48 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x9f1a539e icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x9f1ae846 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x9f2b357a inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x9f2bc82a poll_freewait +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f5dfe08 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x9f6d34bb dump_skip_to +EXPORT_SYMBOL vmlinux 0x9f7d8256 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x9f852f04 ilookup5 +EXPORT_SYMBOL vmlinux 0x9f86f268 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x9f975c93 noop_fsync +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb0c954 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x9fd3cfb7 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x9fddb05c i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe9d202 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x9feacba7 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ff64537 clk_add_alias +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa0017144 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa00c0406 vfs_unlink +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa01e6c06 ip6_dst_check +EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa02fa0d3 sget_fc +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa0466b36 cdrom_release +EXPORT_SYMBOL vmlinux 0xa0527293 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xa058b897 serio_rescan +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa05bf4d2 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xa05ed2e8 pci_find_next_bus +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 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa098cc8e tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xa0a169ed acpi_register_debugger +EXPORT_SYMBOL vmlinux 0xa0a33ffb md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xa0a79dfa console_start +EXPORT_SYMBOL vmlinux 0xa0abc23b phy_suspend +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +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 0xa0f3e11e fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0fe54d2 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xa1041721 ip_frag_next +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa116a794 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xa12e1403 netdev_state_change +EXPORT_SYMBOL vmlinux 0xa13e780a gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xa14597e9 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xa159e7cf pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xa15ff3a9 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0xa177ef89 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xa192eda4 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xa19cebfb vfs_mkdir +EXPORT_SYMBOL vmlinux 0xa1a32f5c freeze_bdev +EXPORT_SYMBOL vmlinux 0xa1abc8e1 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters +EXPORT_SYMBOL vmlinux 0xa1bf7bf6 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa2078508 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xa225593a fs_param_is_path +EXPORT_SYMBOL vmlinux 0xa2294708 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa23de832 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa252a7a0 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2705865 skb_checksum +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa28d558a ip_ct_attach +EXPORT_SYMBOL vmlinux 0xa2b400c1 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xa2ba0ea3 put_watch_queue +EXPORT_SYMBOL vmlinux 0xa2c77418 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xa2d052a7 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xa2edd303 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xa31602c8 fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0xa336940f xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xa3535e6a kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa3537298 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xa363c4e1 genlmsg_put +EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga +EXPORT_SYMBOL vmlinux 0xa3906098 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xa39286f0 iget5_locked +EXPORT_SYMBOL vmlinux 0xa39e1c12 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xa3b6c0d8 kobject_del +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3c1bd16 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3dd3f9f param_ops_long +EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger +EXPORT_SYMBOL vmlinux 0xa3e9ec4b nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xa3f2097d vfs_get_tree +EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa4048e43 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xa406095a dget_parent +EXPORT_SYMBOL vmlinux 0xa406215f nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xa40a39cc dquot_quota_on +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa4123261 param_set_hexint +EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io +EXPORT_SYMBOL vmlinux 0xa41edc25 acpi_device_hid +EXPORT_SYMBOL vmlinux 0xa4267773 proc_symlink +EXPORT_SYMBOL vmlinux 0xa436de15 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xa474e4fd sock_release +EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction +EXPORT_SYMBOL vmlinux 0xa47fdfa6 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xa481583b napi_get_frags +EXPORT_SYMBOL vmlinux 0xa487fb82 set_cached_acl +EXPORT_SYMBOL vmlinux 0xa49fed9d phy_find_first +EXPORT_SYMBOL vmlinux 0xa4b47ea8 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c41e6a phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xa4c6afdf kset_unregister +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4f009d3 param_get_invbool +EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xa509ae83 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit +EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0xa51061f7 build_skb +EXPORT_SYMBOL vmlinux 0xa52047aa kern_path_create +EXPORT_SYMBOL vmlinux 0xa53a07d7 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xa53ee82b flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xa54c3e63 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5855016 uart_match_port +EXPORT_SYMBOL vmlinux 0xa58792c9 alloc_pages_vma +EXPORT_SYMBOL vmlinux 0xa5898e13 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xa591943c netif_rx_ni +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0xa5b1b110 param_get_byte +EXPORT_SYMBOL vmlinux 0xa5c12eaf ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xa5cce978 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0xa5daa5ca genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xa5dc9f96 __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa5e50fc8 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xa5f9e181 km_query +EXPORT_SYMBOL vmlinux 0xa605637c pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa627ad43 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xa63f40ee generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa6529938 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xa65ef30d udp_disconnect +EXPORT_SYMBOL vmlinux 0xa664bd74 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xa6744a7f inode_set_flags +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6853398 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xa6a5f667 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0xa6a77298 pci_resize_resource +EXPORT_SYMBOL vmlinux 0xa6be2b27 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xa6c63fca tcp_make_synack +EXPORT_SYMBOL vmlinux 0xa6cb8e4f _dev_printk +EXPORT_SYMBOL vmlinux 0xa6dfb144 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xa706e63c km_state_notify +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa71202ef unix_detach_fds +EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt +EXPORT_SYMBOL vmlinux 0xa72dd6ad napi_build_skb +EXPORT_SYMBOL vmlinux 0xa733feb9 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xa7486947 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa75a489f skb_copy +EXPORT_SYMBOL vmlinux 0xa76275a4 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa77f536f _dev_notice +EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 +EXPORT_SYMBOL vmlinux 0xa793a7b9 rtc_add_groups +EXPORT_SYMBOL vmlinux 0xa796679d __SCT__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xa79af98d ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xa7a38f35 pci_release_regions +EXPORT_SYMBOL vmlinux 0xa7bafa91 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xa7be8733 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7da0355 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xa7dd72b3 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xa7df2e29 dquot_get_state +EXPORT_SYMBOL vmlinux 0xa7edd509 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa818e5d5 input_allocate_device +EXPORT_SYMBOL vmlinux 0xa827b7d4 padata_free +EXPORT_SYMBOL vmlinux 0xa836226e component_match_add_typed +EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xa838d992 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8463aa6 qdisc_reset +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 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa88b23e8 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa8987a2c scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa89b20ca dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xa8ba1bd4 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xa8c5acc9 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8d4b181 softnet_data +EXPORT_SYMBOL vmlinux 0xa8e32bc9 __put_page +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8e80eac sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa9207e00 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa931af8a asm_load_gs_index +EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa94f9c8e kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa973f515 __serio_register_port +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map +EXPORT_SYMBOL vmlinux 0xa97aae3b give_up_console +EXPORT_SYMBOL vmlinux 0xa988e361 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xa9930fd1 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0xa9cc052d wake_up_process +EXPORT_SYMBOL vmlinux 0xa9efba65 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xa9f660a9 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xa9f9f90b __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa40a789 load_nls_default +EXPORT_SYMBOL vmlinux 0xaa44a707 cpumask_next +EXPORT_SYMBOL vmlinux 0xaa4bd4d3 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xaa559ffc iterate_supers_type +EXPORT_SYMBOL vmlinux 0xaa611dd1 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7217fa inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xaa7ee3cb acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0xaa943d36 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa85290 vlan_filter_drop_vids +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 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab29af89 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab41f0a8 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0xab53255d proc_create_data +EXPORT_SYMBOL vmlinux 0xab59be9f fc_find_rport_by_wwpn +EXPORT_SYMBOL vmlinux 0xab5c2a10 key_link +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab64514e netlink_capable +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab6bfadc sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab72c39a xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab78dd5a PDE_DATA +EXPORT_SYMBOL vmlinux 0xab7a60a1 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xab8fdec1 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xab960368 tty_lock +EXPORT_SYMBOL vmlinux 0xab9ea418 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xab9f83b9 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xabae97d2 __ip_options_compile +EXPORT_SYMBOL vmlinux 0xabb811f2 skb_copy_header +EXPORT_SYMBOL vmlinux 0xabcc0d4b register_quota_format +EXPORT_SYMBOL vmlinux 0xabd22acb netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xabe10722 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xabefec7b nobh_write_begin +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac07dc37 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xac10dfc1 migrate_page +EXPORT_SYMBOL vmlinux 0xac14e3de dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac3f4626 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xac404a25 open_exec +EXPORT_SYMBOL vmlinux 0xac4353b4 is_nd_pfn +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5ce5d5 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xac5ea3a7 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac612e90 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xac6c6a60 security_unix_may_send +EXPORT_SYMBOL vmlinux 0xac81b69e csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacccdf66 skb_find_text +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xacdfc6b4 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xacf6a771 ip_tunnel_get_link_net +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0a0038 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode +EXPORT_SYMBOL vmlinux 0xad3457f7 page_mapped +EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad3f5648 cdev_del +EXPORT_SYMBOL vmlinux 0xad4d5316 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid +EXPORT_SYMBOL vmlinux 0xad55f3a6 mount_subtree +EXPORT_SYMBOL vmlinux 0xad597a2c redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad771253 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xad85242c agp_backend_release +EXPORT_SYMBOL vmlinux 0xad8663b0 __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xada33449 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xada475bb dcb_getapp +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadb31dd0 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL vmlinux 0xadc6b0b1 pci_restore_state +EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadf5fca9 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae02bfdf prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae1c8a48 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xae1d970c agp_free_memory +EXPORT_SYMBOL vmlinux 0xae209642 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae449593 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xae53564a pci_assign_resource +EXPORT_SYMBOL vmlinux 0xae58e98a bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae8ec2f9 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xae9364a6 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xae9f2133 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeacbb45 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xaeb0476e pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaed1fc0d scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xaf0ea8c8 inet6_release +EXPORT_SYMBOL vmlinux 0xaf354bbe cpu_tss_rw +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf3e703a fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xaf5bc118 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xaf6c6c4f nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xaf96973a set_pages_array_wb +EXPORT_SYMBOL vmlinux 0xaf9d775a reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xafb233c3 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xafb7bd42 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xafd744c6 __x86_indirect_thunk_rbp +EXPORT_SYMBOL vmlinux 0xafd9a43d fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb028eda9 mdio_driver_register +EXPORT_SYMBOL vmlinux 0xb02df2d6 __traceiter_rdpmc +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats +EXPORT_SYMBOL vmlinux 0xb05dd661 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb06da6b0 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xb06dac39 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xb06ddb25 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xb083e968 pci_enable_wake +EXPORT_SYMBOL vmlinux 0xb08c07ee mdio_device_create +EXPORT_SYMBOL vmlinux 0xb09f9359 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0ce5adc pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xb0dd9598 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize +EXPORT_SYMBOL vmlinux 0xb0f7d826 md_check_recovery +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb10f0075 dcb_setapp +EXPORT_SYMBOL vmlinux 0xb119b1ee skb_copy_bits +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb12ef8c9 dm_get_device +EXPORT_SYMBOL vmlinux 0xb1316039 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xb1363537 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xb148a6fa __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work +EXPORT_SYMBOL vmlinux 0xb15f4769 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xb1737ba6 current_task +EXPORT_SYMBOL vmlinux 0xb193b40f acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xb19c577e page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0xb1ad787f set_posix_acl +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug +EXPORT_SYMBOL vmlinux 0xb1d47dfe phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xb1d63663 posix_lock_file +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb2086288 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xb2125dc5 scsi_done +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +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 0xb23a2bc0 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0xb24156e8 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0xb25eedd1 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xb2601486 __SCT__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xb287113c md_flush_request +EXPORT_SYMBOL vmlinux 0xb287f78b jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xb2979225 param_get_ullong +EXPORT_SYMBOL vmlinux 0xb2a48b5d seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xb2b88398 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2c96edc convert_art_ns_to_tsc +EXPORT_SYMBOL vmlinux 0xb2cc8256 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xb2d2a929 netlink_unicast +EXPORT_SYMBOL vmlinux 0xb2dfdf3c kset_register +EXPORT_SYMBOL vmlinux 0xb2eb334d devfreq_update_status +EXPORT_SYMBOL vmlinux 0xb2ec4b93 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +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 0xb30356ad filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb3229504 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0xb32a5973 acpi_ut_status_exit +EXPORT_SYMBOL vmlinux 0xb32d6db2 __brelse +EXPORT_SYMBOL vmlinux 0xb32e1360 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xb32fac75 tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0xb34a8556 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xb35c0a8b scsi_register_driver +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb373a194 skb_dump +EXPORT_SYMBOL vmlinux 0xb374c9ba skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic +EXPORT_SYMBOL vmlinux 0xb3a587b0 key_alloc +EXPORT_SYMBOL vmlinux 0xb3b1d748 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xb3b8ac35 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3fa7062 udp_seq_start +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb406446e phy_loopback +EXPORT_SYMBOL vmlinux 0xb40ae745 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42658c9 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xb44c82c8 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xb44dded2 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb45a2486 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xb4684501 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xb4729bf3 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb4a8253d vfs_rmdir +EXPORT_SYMBOL vmlinux 0xb4aab398 put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0xb4abcf73 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xb4bf22b6 __netif_schedule +EXPORT_SYMBOL vmlinux 0xb4db83b1 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xb4e2ce26 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0xb4e34cfe __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4f57ab8 register_framebuffer +EXPORT_SYMBOL vmlinux 0xb5055f43 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb5419e78 init_net +EXPORT_SYMBOL vmlinux 0xb547394e blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xb54b222e generic_perform_write +EXPORT_SYMBOL vmlinux 0xb5596e5f param_ops_short +EXPORT_SYMBOL vmlinux 0xb55d0da2 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xb561b8b7 param_get_int +EXPORT_SYMBOL vmlinux 0xb5639ed6 bioset_init +EXPORT_SYMBOL vmlinux 0xb571d79c devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb596e30b __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xb5995375 node_data +EXPORT_SYMBOL vmlinux 0xb5a01064 can_nice +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined +EXPORT_SYMBOL vmlinux 0xb5b5435d scsi_scan_target +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5c39ed2 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5e81425 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xb6035cf8 user_path_at_empty +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb6505090 configfs_register_group +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb65e467d _dev_warn +EXPORT_SYMBOL vmlinux 0xb663cd20 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xb66a90e3 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb675a67f tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb68673a7 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6b3cdd8 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xb6b4a9e3 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xb6c753b0 module_refcount +EXPORT_SYMBOL vmlinux 0xb6cace4e end_page_private_2 +EXPORT_SYMBOL vmlinux 0xb6cd5c4c kobject_init +EXPORT_SYMBOL vmlinux 0xb6d4a74f irq_set_chip +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6f71cea md_write_inc +EXPORT_SYMBOL vmlinux 0xb6f9fedf devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb7080f5c block_write_full_page +EXPORT_SYMBOL vmlinux 0xb709bebb tcp_poll +EXPORT_SYMBOL vmlinux 0xb711b0a6 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71afa30 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xb76ebcec lookup_one_len +EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb7958967 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xb7a183a4 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xb7a79f73 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xb7ba3358 bio_init +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7c795a7 dquot_alloc +EXPORT_SYMBOL vmlinux 0xb7cf51a4 pci_disable_device +EXPORT_SYMBOL vmlinux 0xb7de653a rio_query_mport +EXPORT_SYMBOL vmlinux 0xb7fbee88 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xb80d0518 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xb823cbe4 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xb82d9039 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xb84130b4 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xb841d94f km_state_expired +EXPORT_SYMBOL vmlinux 0xb855985e vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0xb855e8ba __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xb85e2d29 fc_block_rport +EXPORT_SYMBOL vmlinux 0xb85f7bc1 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xb862d8ff scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var +EXPORT_SYMBOL vmlinux 0xb87d11c1 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xb8861377 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xb88aa9f0 dma_supported +EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8a772dc fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8d57839 agp_put_bridge +EXPORT_SYMBOL vmlinux 0xb8dfb1ae __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8f74078 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xb8fae735 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb952bada follow_up +EXPORT_SYMBOL vmlinux 0xb95c3245 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xb960d957 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb97717b6 to_ndd +EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xb983aecf inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xb9847749 __put_user_ns +EXPORT_SYMBOL vmlinux 0xb9917b99 free_task +EXPORT_SYMBOL vmlinux 0xb9941c9f kernel_param_lock +EXPORT_SYMBOL vmlinux 0xb99da7c2 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xb9a48680 vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0xb9aba5c5 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9e276cf wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xb9e7429c memcpy_toio +EXPORT_SYMBOL vmlinux 0xb9e8b589 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9feca1b lock_page_memcg +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba103433 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xba357b86 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xba487a4f page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4bc104 fput +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba6652c1 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xba667fbf __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xba8014eb generic_read_dir +EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xba92dd61 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xbaa504b7 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xbaa78116 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xbade0ade misc_register +EXPORT_SYMBOL vmlinux 0xbaf0c774 dma_map_resource +EXPORT_SYMBOL vmlinux 0xbaf7ebd5 tty_name +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0d744c devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many +EXPORT_SYMBOL vmlinux 0xbb13a824 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xbb1a33fa vga_switcheroo_client_probe_defer +EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb2ef339 fc_host_post_fc_event +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3e51e6 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xbb3ff78e readahead_expand +EXPORT_SYMBOL vmlinux 0xbb4baf93 dquot_transfer +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb518c72 gro_cells_receive +EXPORT_SYMBOL vmlinux 0xbb6b1ed0 generic_file_open +EXPORT_SYMBOL vmlinux 0xbb7254b9 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xbb83253a xfrm_input +EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags +EXPORT_SYMBOL vmlinux 0xbb97ee22 phy_write_mmd +EXPORT_SYMBOL vmlinux 0xbb9beda8 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbba236c3 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xbbc19551 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xbbd458e0 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xbbe0aca4 qdisc_put +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbc16ac35 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc3750e6 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xbc378530 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xbc6b4fd7 iptun_encaps +EXPORT_SYMBOL vmlinux 0xbc799729 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xbc7bdfaa elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xbc986c7e pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xbca0c6b2 simple_rmdir +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcb72be8 generic_update_time +EXPORT_SYMBOL vmlinux 0xbcd6a86b devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xbceb69fe close_fd_get_file +EXPORT_SYMBOL vmlinux 0xbcf0a1e8 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xbd00f7e1 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xbd06fb73 serio_close +EXPORT_SYMBOL vmlinux 0xbd257bea input_register_device +EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd47eb05 netlink_set_err +EXPORT_SYMBOL vmlinux 0xbd61fc71 param_set_ullong +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd889df6 genphy_loopback +EXPORT_SYMBOL vmlinux 0xbd8b18d4 tcp_child_process +EXPORT_SYMBOL vmlinux 0xbd9c1651 cad_pid +EXPORT_SYMBOL vmlinux 0xbda419a3 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xbda5f0a5 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xbdb0745d dma_free_attrs +EXPORT_SYMBOL vmlinux 0xbdb542f2 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xbdbaeea1 unix_get_socket +EXPORT_SYMBOL vmlinux 0xbdc501ba __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xbdc665ea __frontswap_load +EXPORT_SYMBOL vmlinux 0xbde03230 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xbdec82c1 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbe000cf2 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0xbe037d85 tcf_block_get +EXPORT_SYMBOL vmlinux 0xbe0b5f42 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xbe134928 pps_unregister_source +EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock +EXPORT_SYMBOL vmlinux 0xbe383c6c mr_table_alloc +EXPORT_SYMBOL vmlinux 0xbe3f9466 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe64975c ilookup +EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe7d6108 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xbe888b40 processors +EXPORT_SYMBOL vmlinux 0xbe95db6f vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xbea03cfe vfs_rename +EXPORT_SYMBOL vmlinux 0xbea161f3 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xbebda6f7 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xbee2b3a6 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef99c93 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbf256e8a ipv4_specific +EXPORT_SYMBOL vmlinux 0xbf2dc2ee vme_register_bridge +EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xbf3cd239 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf5d318d pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xbf95567f dma_sync_wait +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfb0863a neigh_connected_output +EXPORT_SYMBOL vmlinux 0xbfb61146 param_get_bool +EXPORT_SYMBOL vmlinux 0xbfb6d861 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfd81235 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xbfd9bcdf dqput +EXPORT_SYMBOL vmlinux 0xbfdb882e input_inject_event +EXPORT_SYMBOL vmlinux 0xbfdda8b3 super_setup_bdi +EXPORT_SYMBOL vmlinux 0xbfddd908 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xbfdec2d6 bio_free_pages +EXPORT_SYMBOL vmlinux 0xbfe4d75c skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbffba15a scsi_is_fc_rport +EXPORT_SYMBOL vmlinux 0xbffc5af2 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xbffe9157 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc057a7f0 dev_mc_del +EXPORT_SYMBOL vmlinux 0xc06f40c1 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0xc07495c1 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc09480cc ipv4_dst_check +EXPORT_SYMBOL vmlinux 0xc0966955 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xc0a3d1bb __neigh_event_send +EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0babbe5 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xc0bb35f2 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xc0c63b03 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xc0d67c1a configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xc0f50bb3 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc10bd509 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xc111ae64 intel_gtt_get +EXPORT_SYMBOL vmlinux 0xc12d535e passthru_features_check +EXPORT_SYMBOL vmlinux 0xc1308c5b __f_setown +EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0xc14c20e5 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc15198e1 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xc156a99c kill_block_super +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc17de202 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xc17e8bea devm_request_resource +EXPORT_SYMBOL vmlinux 0xc1abddcd blk_rq_init +EXPORT_SYMBOL vmlinux 0xc1b94f55 param_set_short +EXPORT_SYMBOL vmlinux 0xc1b983a2 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xc1c6ed26 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xc1cfb293 secpath_set +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e7fad2 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xc2041cd8 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xc23405ba flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xc234ecbc ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc2479874 fc_remote_port_rolechg +EXPORT_SYMBOL vmlinux 0xc247ab97 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xc25c7421 mpage_writepages +EXPORT_SYMBOL vmlinux 0xc25d5f6d udp_seq_ops +EXPORT_SYMBOL vmlinux 0xc25ed5a8 nd_btt_version +EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc2681f7b tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xc273fc18 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xc2760b6c register_shrinker +EXPORT_SYMBOL vmlinux 0xc2769ca7 config_item_put +EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc28e18be ram_aops +EXPORT_SYMBOL vmlinux 0xc299f3c5 dentry_open +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc2a449ac devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xc2b33e4d iov_iter_zero +EXPORT_SYMBOL vmlinux 0xc2be6c73 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xc2c06a38 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xc2c9ebdf jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xc2d06704 filp_open +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f840c9 md_bitmap_free +EXPORT_SYMBOL vmlinux 0xc2fc80f4 iterate_fd +EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc31e6e10 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc32dc70b d_alloc_name +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3ab457e inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3d175be flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0xc3d7ed81 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xc3d8c5f7 agp_enable +EXPORT_SYMBOL vmlinux 0xc3e83b78 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xc3fd2790 tso_count_descs +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc4002b99 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xc400fbee lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xc411b572 eisa_driver_register +EXPORT_SYMBOL vmlinux 0xc4121c94 kthread_blkcg +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc4428a95 make_bad_inode +EXPORT_SYMBOL vmlinux 0xc44919a0 set_anon_super +EXPORT_SYMBOL vmlinux 0xc44e32bc mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xc4550161 xp_can_alloc +EXPORT_SYMBOL vmlinux 0xc456d0d5 audit_log +EXPORT_SYMBOL vmlinux 0xc4680bc4 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc4818271 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0xc4838d22 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xc49a6286 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xc4c9dd6b __block_write_begin +EXPORT_SYMBOL vmlinux 0xc4ef3dc5 inet_del_offload +EXPORT_SYMBOL vmlinux 0xc4fd152d xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xc507507a vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0xc50b3a8c phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0xc511adfd config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xc51f29e1 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc533d848 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xc53f9d4b dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xc54b6692 d_find_any_alias +EXPORT_SYMBOL vmlinux 0xc54c2a0b send_sig +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc5642e43 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc592dc6b __kfree_skb +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59df92c nvdimm_namespace_attach_btt +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5c67956 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xc5d3ed33 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5dcc43a ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc61a6b3c __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo +EXPORT_SYMBOL vmlinux 0xc62200a4 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc645d1c7 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xc6470d10 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xc653f7b4 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xc6585af0 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc +EXPORT_SYMBOL vmlinux 0xc69610f8 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xc6b9f97f udp_ioctl +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6d47549 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xc6e30d1e agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xc6eb3231 seq_open_private +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc71e494f registered_fb +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7221771 neigh_xmit +EXPORT_SYMBOL vmlinux 0xc7254678 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xc74332d9 seq_write +EXPORT_SYMBOL vmlinux 0xc75568c9 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a83aec phy_init_hw +EXPORT_SYMBOL vmlinux 0xc7b48c88 __quota_error +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c46bbb unload_nls +EXPORT_SYMBOL vmlinux 0xc7c755e4 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xc7cb7de5 rtc_add_group +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7dc31c9 __breadahead +EXPORT_SYMBOL vmlinux 0xc7ec3cc6 bdevname +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc81cc063 finish_open +EXPORT_SYMBOL vmlinux 0xc8287a9f blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8513ade netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xc86ac284 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8a933e6 km_new_mapping +EXPORT_SYMBOL vmlinux 0xc8bda0f9 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8f0f1d2 tty_port_open +EXPORT_SYMBOL vmlinux 0xc9043762 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0xc9067b79 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc930c92e tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xc9324bdf init_special_inode +EXPORT_SYMBOL vmlinux 0xc93604f5 param_set_byte +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc962f236 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc98d6390 make_kprojid +EXPORT_SYMBOL vmlinux 0xc9b33111 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0xc9cb0927 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xca1f6d98 kern_unmount +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca2c08dd skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca48eb66 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xca57b63d sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0xca5ae293 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xca7a949f kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xca92a007 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xcab64b88 simple_nosetlease +EXPORT_SYMBOL vmlinux 0xcab799ac flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xcab7ffcc pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xcab9162a __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xcac1975c tcp_shutdown +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcaef7335 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0a4ece input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xcb2f2b52 boot_cpu_data +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb667304 dput +EXPORT_SYMBOL vmlinux 0xcb72c79d vc_cons +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb7a9d4b show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0xcb8013e8 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0xcb8463fa scsi_host_put +EXPORT_SYMBOL vmlinux 0xcb997fab get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xcba95aae file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xcbafef8e __devm_release_region +EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbe53c46 convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0xcbecaa16 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc1ed883 km_policy_notify +EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc25db9a vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xcc2da69f pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc455e27 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0xcc4ee4b8 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc774f23 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0xcc800b6e inet_getname +EXPORT_SYMBOL vmlinux 0xcc9a4582 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xcc9dcef1 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xcc9fb118 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xccbee009 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0xcccd4d46 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccd8e6dc ping_prot +EXPORT_SYMBOL vmlinux 0xccdccc92 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xccf0521d phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xccf5b366 mr_rtm_dumproute +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 0xcd042882 release_sock +EXPORT_SYMBOL vmlinux 0xcd07ae36 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xcd11a24e config_group_init_type_name +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd5b4c03 seq_open +EXPORT_SYMBOL vmlinux 0xcd5bb6c4 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xcd731f08 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd914fd0 write_one_page +EXPORT_SYMBOL vmlinux 0xcda3b306 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xcda4095a pci_read_vpd +EXPORT_SYMBOL vmlinux 0xcda78278 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xcdbbdb06 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xcdbc0c9d mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc79377 setattr_copy +EXPORT_SYMBOL vmlinux 0xcdd40814 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xcddeb834 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdedaec3 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xce0c450b __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xce127eaa do_clone_file_range +EXPORT_SYMBOL vmlinux 0xce202d2d phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0xce24c493 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce8a1b69 trace_event_printf +EXPORT_SYMBOL vmlinux 0xce92357d bio_put +EXPORT_SYMBOL vmlinux 0xce9a3381 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xcea381dd x86_match_cpu +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcec172d3 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xcec1a86b security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xcedee13e read_cache_page +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf2728af vme_lm_request +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf8e7fdf mpage_readpage +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xcfc66ace fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfca9374 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfdbf7b3 vme_bus_num +EXPORT_SYMBOL vmlinux 0xcfeb45c1 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xcff8ae55 seq_dentry +EXPORT_SYMBOL vmlinux 0xd0227b43 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0xd03dd975 dma_resv_init +EXPORT_SYMBOL vmlinux 0xd048b083 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd06d266b fc_remove_host +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd0993b19 inode_update_time +EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0c1acd2 dst_dev_put +EXPORT_SYMBOL vmlinux 0xd0c5d8e1 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xd0ced4b9 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xd0d92e51 pmem_sector_size +EXPORT_SYMBOL vmlinux 0xd0da656b __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd1066477 cdev_set_parent +EXPORT_SYMBOL vmlinux 0xd135cf34 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd16a3b77 dst_release +EXPORT_SYMBOL vmlinux 0xd1769161 kobject_get +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd186ddb1 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd19e6b12 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xd19e7683 ppp_input_error +EXPORT_SYMBOL vmlinux 0xd1a05d4f md_cluster_ops +EXPORT_SYMBOL vmlinux 0xd1a85e9d pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xd1b2c1d8 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1f44c74 simple_release_fs +EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd214d92b uart_resume_port +EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd22c84f6 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xd23e17f0 wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0xd23f3964 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xd23fe189 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xd2523494 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xd254ea96 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd28190ed agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0xd289b11a bio_advance +EXPORT_SYMBOL vmlinux 0xd28e354b filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xd2a56d68 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xd2bc5c46 __get_user_nocheck_2 +EXPORT_SYMBOL vmlinux 0xd2c5aa9c param_ops_ushort +EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2dd224c sock_init_data_uid +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd2ed91d4 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xd3117a98 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xd312d8bb dma_ops +EXPORT_SYMBOL vmlinux 0xd319216e vme_master_mmap +EXPORT_SYMBOL vmlinux 0xd32ca436 seq_escape_mem +EXPORT_SYMBOL vmlinux 0xd3381912 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xd340d9a9 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xd35405f2 fb_firmware_edid +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 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd3864148 i8042_install_filter +EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask +EXPORT_SYMBOL vmlinux 0xd3dac9b6 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xd3e28c1e security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xd3e82f10 address_space_init_once +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd4124212 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xd443e5e6 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd4811d07 xsk_tx_release +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48b6743 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xd48bc4d8 config_item_set_name +EXPORT_SYMBOL vmlinux 0xd4a6325a scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xd4b20cf7 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xd4b79811 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c84975 eth_header_cache +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4e2d9ac tcf_idr_create +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd5411ec4 pnp_device_detach +EXPORT_SYMBOL vmlinux 0xd54940a9 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xd56346c3 __scm_destroy +EXPORT_SYMBOL vmlinux 0xd56b9ab8 inet6_getname +EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise +EXPORT_SYMBOL vmlinux 0xd592c92d init_pseudo +EXPORT_SYMBOL vmlinux 0xd5a2c7c7 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5b83320 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xd5ba8254 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xd5c2019e inode_insert5 +EXPORT_SYMBOL vmlinux 0xd5cda392 set_pages_wb +EXPORT_SYMBOL vmlinux 0xd5d0664d ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xd5d33227 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xd5d9a894 page_get_link +EXPORT_SYMBOL vmlinux 0xd5dd79c5 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xd5ef1641 dump_emit +EXPORT_SYMBOL vmlinux 0xd5f4e487 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd61bfec0 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd62feecb qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xd63386e8 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xd63587a6 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd663a3aa tty_unthrottle +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd684d003 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xd686859b pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd6aa45ba pagecache_get_page +EXPORT_SYMBOL vmlinux 0xd6ad9275 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6e247cb security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xd6e450b5 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f7530c free_netdev +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd6ffc12b netpoll_send_skb +EXPORT_SYMBOL vmlinux 0xd7031ad9 phy_disconnect +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd725d53b page_readlink +EXPORT_SYMBOL vmlinux 0xd735caf2 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73ad3b6 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc +EXPORT_SYMBOL vmlinux 0xd77905e2 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0xd7b9f05f pci_dev_get +EXPORT_SYMBOL vmlinux 0xd7bd27fa tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xd7c397a7 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d941d0 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f86467 param_ops_string +EXPORT_SYMBOL vmlinux 0xd8072096 __bread_gfp +EXPORT_SYMBOL vmlinux 0xd814c758 edac_mc_find +EXPORT_SYMBOL vmlinux 0xd81ac014 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xd82a9058 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0xd85c7a8e md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xd886a4c1 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xd8876f74 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0xd892e36b phy_init_eee +EXPORT_SYMBOL vmlinux 0xd8931d9c filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a0affe nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8aae210 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8c7cb75 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xd8cef6e1 clear_user +EXPORT_SYMBOL vmlinux 0xd8d0f20e msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xd8d71cbf unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8df4456 file_ns_capable +EXPORT_SYMBOL vmlinux 0xd8e05006 put_disk +EXPORT_SYMBOL vmlinux 0xd8f73eb6 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xd90e5ec9 fc_remote_port_delete +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd92fa832 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xd933f209 __SCT__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd9701d67 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xd97dae56 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xd97e2675 blackhole_netdev +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9aa5d81 ethtool_notify +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9c18d84 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xd9c4240d ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9e22dcf pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xd9f9d913 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xda19585a phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0xda26b8ea __irq_regs +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda596739 fc_attach_transport +EXPORT_SYMBOL vmlinux 0xda64cc6b __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xda66a388 __module_get +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda7694ca dma_pool_create +EXPORT_SYMBOL vmlinux 0xda7c88d0 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xda860a46 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xdaa46301 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xdaa7d5e4 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xdaaee1e7 dquot_release +EXPORT_SYMBOL vmlinux 0xdab948eb __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad0fb58 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xdad13544 ptrs_per_p4d +EXPORT_SYMBOL vmlinux 0xdad652dd dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xdae129d8 security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb261a20 bio_uninit +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb8dc770 neigh_table_init +EXPORT_SYMBOL vmlinux 0xdb95e185 intel_scu_ipc_dev_command_with_size +EXPORT_SYMBOL vmlinux 0xdba66606 eth_type_trans +EXPORT_SYMBOL vmlinux 0xdba7ee36 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdd2ff2 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbe0733d skb_pull +EXPORT_SYMBOL vmlinux 0xdbe7c327 filemap_fault +EXPORT_SYMBOL vmlinux 0xdbec9106 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xdbfeb7a0 dev_addr_init +EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1df178 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xdc21a529 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xdc301c48 bdi_alloc +EXPORT_SYMBOL vmlinux 0xdc369739 pci_clear_master +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc4a24c2 unix_attach_fds +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0xdc9ba500 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xdca0ee8a phy_read_paged +EXPORT_SYMBOL vmlinux 0xdcbf2a70 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0xdcc48f4d pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0xdcd3d277 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd14a1a9 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd20f63d __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd2e6870 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xdd35f05f sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xdd4a55c0 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd7e304f tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd9a990c ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat +EXPORT_SYMBOL vmlinux 0xddb262b5 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xddb32359 key_revoke +EXPORT_SYMBOL vmlinux 0xddb807f4 tcp_seq_start +EXPORT_SYMBOL vmlinux 0xddc8e12e devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit +EXPORT_SYMBOL vmlinux 0xddd891ef dm_table_get_md +EXPORT_SYMBOL vmlinux 0xdde6ffc1 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xddfbb9bb seq_pad +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xde7ae669 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xde7b6d8d mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xde7f2218 init_task +EXPORT_SYMBOL vmlinux 0xde80cd09 ioremap +EXPORT_SYMBOL vmlinux 0xde8e064f blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea4552e qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdef7b6d2 dev_addr_del +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdef8d0ae __SCT__tp_func_kfree +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf3fa165 fd_install +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf63561a mdiobus_write +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf6d605c dquot_scan_active +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 0xdfaf0de4 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xdfaf98b4 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfd823be discard_new_inode +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdfedb9de sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe0112fc4 __x86_indirect_thunk_r9 +EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe033cb29 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe042ff48 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xe06b4ada nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xe074c486 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xe07dc2bd tty_unlock +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 0xe08640ca tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe092af5e pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0a43194 fc_vport_terminate +EXPORT_SYMBOL vmlinux 0xe0a45d14 pci_find_resource +EXPORT_SYMBOL vmlinux 0xe0af6907 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bda073 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0c748ae __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xe0d46c94 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xe0f2ff13 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0xe0f47308 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xe104862d fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe1142bf3 skb_eth_pop +EXPORT_SYMBOL vmlinux 0xe115ff80 posix_test_lock +EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0xe1210ff1 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe13dbe29 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xe13e3f71 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xe13f135f neigh_table_clear +EXPORT_SYMBOL vmlinux 0xe140b9e5 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xe1672ce8 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xe1701b0d security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xe1981a75 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xe1bb33bc unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xe1bee700 __traceiter_read_msr +EXPORT_SYMBOL vmlinux 0xe1c63c13 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xe1c7cdf7 vga_put +EXPORT_SYMBOL vmlinux 0xe1d1105a kernel_sendpage +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1ef4011 __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0xe2021cd8 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xe211f527 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe21ff64f put_fs_context +EXPORT_SYMBOL vmlinux 0xe2533004 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xe2589154 lock_rename +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe286cdd1 mdio_device_remove +EXPORT_SYMBOL vmlinux 0xe290e5bb vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0xe2addc29 kthread_bind +EXPORT_SYMBOL vmlinux 0xe2b67e2f nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xe2b85d66 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xe2b8b053 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xe2c11ed9 dev_mc_init +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e28fc0 __traceiter_write_msr +EXPORT_SYMBOL vmlinux 0xe312798d inet_del_protocol +EXPORT_SYMBOL vmlinux 0xe329843d __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe3320249 inode_init_always +EXPORT_SYMBOL vmlinux 0xe336d582 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0xe33f4747 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xe3580680 d_genocide +EXPORT_SYMBOL vmlinux 0xe35a454f devm_ioremap +EXPORT_SYMBOL vmlinux 0xe35caf5c blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xe35f7bb9 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xe387d248 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xe38dabd0 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3a05636 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xe3ac8c19 get_agp_version +EXPORT_SYMBOL vmlinux 0xe3b69007 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xe3bb9d55 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xe3c29839 dev_load +EXPORT_SYMBOL vmlinux 0xe3c404c2 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xe3d516a8 skb_clone +EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe3dc6f42 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3fb7836 param_set_copystring +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 0xe40c44a3 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xe40fe96c param_get_charp +EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be +EXPORT_SYMBOL vmlinux 0xe41cc334 phy_device_free +EXPORT_SYMBOL vmlinux 0xe41ee9e7 seq_release_private +EXPORT_SYMBOL vmlinux 0xe426775f ptp_clock_index +EXPORT_SYMBOL vmlinux 0xe4367a96 ipv4_mtu +EXPORT_SYMBOL vmlinux 0xe440cd36 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xe45a8d6f tty_port_close_start +EXPORT_SYMBOL vmlinux 0xe45c7acb vfs_iter_read +EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe47c759d __check_sticky +EXPORT_SYMBOL vmlinux 0xe4809988 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xe4a19518 dup_iter +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4bee174 param_set_invbool +EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable +EXPORT_SYMBOL vmlinux 0xe4fc52d6 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xe500733b inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xe513f5cd tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xe5159bee __inet_hash +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52d323f xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xe52e4daf generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xe5368fc1 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xe545e7df xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0xe54e6002 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xe54e82fa udp_sock_create4 +EXPORT_SYMBOL vmlinux 0xe570a777 seq_read +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5a7bc90 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5cb4872 _dev_info +EXPORT_SYMBOL vmlinux 0xe5d3564e dev_mc_sync +EXPORT_SYMBOL vmlinux 0xe5db4166 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xe5f8b498 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xe5fcf4ae pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe5ff5e51 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xe601d7c3 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0xe60915cc scsi_target_resume +EXPORT_SYMBOL vmlinux 0xe60f6e26 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe61e0732 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xe61e49a1 ppp_input +EXPORT_SYMBOL vmlinux 0xe6204427 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0xe62cd2c2 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xe62daa0a tty_check_change +EXPORT_SYMBOL vmlinux 0xe6468a54 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0xe64c9fa9 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xe64d4d0f vme_irq_generate +EXPORT_SYMBOL vmlinux 0xe677d923 blk_sync_queue +EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0xe6931890 locks_delete_block +EXPORT_SYMBOL vmlinux 0xe69bdfca netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xe6a8bf51 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe6aaeab5 current_time +EXPORT_SYMBOL vmlinux 0xe6d1372b __phy_resume +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6f2040b elv_rb_find +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0xe72374c8 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe7369756 d_lookup +EXPORT_SYMBOL vmlinux 0xe759f1df bprm_change_interp +EXPORT_SYMBOL vmlinux 0xe768dd7b find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xe78abf9e sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xe78aec53 reuseport_alloc +EXPORT_SYMBOL vmlinux 0xe78b7194 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xe78e04fa skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xe7b9b900 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e58761 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xe8117043 skb_split +EXPORT_SYMBOL vmlinux 0xe81c54f7 new_inode +EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xe840818b inode_dio_wait +EXPORT_SYMBOL vmlinux 0xe842d51a tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xe85e8385 vmap +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe86663f8 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xe87127e0 bio_devname +EXPORT_SYMBOL vmlinux 0xe884d59b security_path_unlink +EXPORT_SYMBOL vmlinux 0xe89a760d finalize_exec +EXPORT_SYMBOL vmlinux 0xe89c5ce4 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0xe8a5ceee __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xe8a720d4 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xe8b05725 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xe8be11c7 kill_pid +EXPORT_SYMBOL vmlinux 0xe8d58c27 ptp_clock_event +EXPORT_SYMBOL vmlinux 0xe8d9a2d4 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0xe8dcda8a param_get_ushort +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe90ff79d pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91f3bf7 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95dcdc2 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xe964cddc jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xe9669dd3 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xe9765dcb input_event +EXPORT_SYMBOL vmlinux 0xe986d59d inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xe9a1eedf eth_validate_addr +EXPORT_SYMBOL vmlinux 0xe9a4ba6d vfs_fileattr_get +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 0xe9bec115 phy_driver_register +EXPORT_SYMBOL vmlinux 0xe9e3c7c2 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9f7e379 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xe9fa0820 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock +EXPORT_SYMBOL vmlinux 0xea106598 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xea1a754d module_put +EXPORT_SYMBOL vmlinux 0xea312675 d_rehash +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea520af1 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea70af2b nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea81d8a4 vme_slave_request +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeacb9860 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xeada0bfe pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaea1dda unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xeb223c15 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb2391c9 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb57a71c mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xeb6ab119 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xeba311f6 dev_close +EXPORT_SYMBOL vmlinux 0xebb24723 nobh_writepage +EXPORT_SYMBOL vmlinux 0xebc25319 dma_set_mask +EXPORT_SYMBOL vmlinux 0xebeb20ea __nla_put +EXPORT_SYMBOL vmlinux 0xebf7cca1 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xec075abc mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xec22982a read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xec2a91b6 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec3973fe eth_header_parse +EXPORT_SYMBOL vmlinux 0xec435a1b skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec5d4cc5 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xec5efd7a fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xec8a4009 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xec956912 console_stop +EXPORT_SYMBOL vmlinux 0xec9c71ee phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xecb3a591 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xecd87af5 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xecdcabd2 copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0xece49626 devm_release_resource +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf434cc block_invalidatepage +EXPORT_SYMBOL vmlinux 0xecf458b2 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed238617 __put_cred +EXPORT_SYMBOL vmlinux 0xed293fcf inet_frags_fini +EXPORT_SYMBOL vmlinux 0xed2c3f9b __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set +EXPORT_SYMBOL vmlinux 0xed3dcc3e tcf_block_put +EXPORT_SYMBOL vmlinux 0xed4daf5c mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed5b2416 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xed5d64c4 nla_put_64bit +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed6a4d50 set_create_files_as +EXPORT_SYMBOL vmlinux 0xed6fb5aa inode_init_owner +EXPORT_SYMBOL vmlinux 0xed9a3271 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xed9fae11 do_splice_direct +EXPORT_SYMBOL vmlinux 0xedb1a5d3 set_user_nice +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xede4f557 sock_pfree +EXPORT_SYMBOL vmlinux 0xede8a379 fb_get_mode +EXPORT_SYMBOL vmlinux 0xedeab5e2 udp_poll +EXPORT_SYMBOL vmlinux 0xedf3e0c9 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee2f143c pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xee2f1fe6 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee71b20e simple_transaction_set +EXPORT_SYMBOL vmlinux 0xee7bf964 simple_link +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array +EXPORT_SYMBOL vmlinux 0xee8b6ef8 vme_irq_free +EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeb17036 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xeeba5d87 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xeec1ab0b inet_stream_ops +EXPORT_SYMBOL vmlinux 0xeec3aaca dev_uc_del +EXPORT_SYMBOL vmlinux 0xeec5e0af sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xeecdf555 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xeeeb4c34 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0xeeed61ce phy_attach +EXPORT_SYMBOL vmlinux 0xef0f1ea0 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xef1ecfa2 backlight_device_register +EXPORT_SYMBOL vmlinux 0xef3d8bc1 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0xef4f9550 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xef50b9bc tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xef645a36 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xef6eec18 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xef71d6ff phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xef76b705 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xef87138b jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xef8c2943 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xef920e46 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefa06e96 param_set_bool +EXPORT_SYMBOL vmlinux 0xefaaaf57 unregister_netdev +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefc0af6e netif_device_attach +EXPORT_SYMBOL vmlinux 0xefc24b5f __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefe4cae3 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xefe69feb from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0017f0e napi_disable +EXPORT_SYMBOL vmlinux 0xf00caa7a inet_put_port +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf03b7789 bioset_exit +EXPORT_SYMBOL vmlinux 0xf0414bae skb_push +EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf0608559 pci_request_irq +EXPORT_SYMBOL vmlinux 0xf0698f5d scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xf069d4eb inet_offloads +EXPORT_SYMBOL vmlinux 0xf077c1e1 bdev_read_only +EXPORT_SYMBOL vmlinux 0xf078f90d pci_map_rom +EXPORT_SYMBOL vmlinux 0xf0831be1 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xf089cf57 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xf0932f28 __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xf09ac47c netif_skb_features +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds +EXPORT_SYMBOL vmlinux 0xf0aa68ed mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0xf0bce2da block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xf0be7367 _copy_from_iter +EXPORT_SYMBOL vmlinux 0xf0cf9820 phy_start +EXPORT_SYMBOL vmlinux 0xf0daacfc kthread_create_worker +EXPORT_SYMBOL vmlinux 0xf0f316f7 inet_addr_type +EXPORT_SYMBOL vmlinux 0xf10dd7fe arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xf112dac8 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf128489b input_open_device +EXPORT_SYMBOL vmlinux 0xf1304c7c tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xf159f21c fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xf166179f inet_frag_find +EXPORT_SYMBOL vmlinux 0xf168a13b d_alloc +EXPORT_SYMBOL vmlinux 0xf16a1e5a page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf1bf465b padata_do_serial +EXPORT_SYMBOL vmlinux 0xf1c5a276 locks_free_lock +EXPORT_SYMBOL vmlinux 0xf1cac98a xsk_tx_completed +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e2df64 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xf1e7bedf sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1fc5573 d_invalidate +EXPORT_SYMBOL vmlinux 0xf2077f8b qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xf21ac2c9 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xf2271bc6 PageMovable +EXPORT_SYMBOL vmlinux 0xf231ad8c __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xf23b91f8 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf25a06a7 unlock_buffer +EXPORT_SYMBOL vmlinux 0xf27b9a8d blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf2846fbc agp_find_bridge +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf29b163e sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2a08569 vfs_llseek +EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0xf2c027a1 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2cec3c0 register_key_type +EXPORT_SYMBOL vmlinux 0xf2e388dd neigh_seq_start +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf2fb02bd gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xf2fbe5b7 submit_bh +EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf3184d4b ip6_output +EXPORT_SYMBOL vmlinux 0xf31d58cf path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xf341ee35 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34a2e97 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0xf34b4590 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf364410c regset_get_alloc +EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf37b9c07 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xf37ec3f9 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xf38935ff configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused +EXPORT_SYMBOL vmlinux 0xf39e3d12 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3b1e364 inc_node_page_state +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf4102303 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xf416baaf blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xf4273d78 vme_irq_request +EXPORT_SYMBOL vmlinux 0xf42e2478 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf4441c3b phy_attach_direct +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf4525a76 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xf45f15ed agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf476da7e cdrom_open +EXPORT_SYMBOL vmlinux 0xf4a289cf d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf4ab5940 sk_dst_check +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4be4563 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xf4c218e5 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xf4c4651a rt_dst_clone +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4dc5c03 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf5036aa4 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xf505d8bf jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xf507aea9 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xf515ede1 setattr_should_drop_sgid +EXPORT_SYMBOL vmlinux 0xf53526ee vme_master_request +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5550154 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xf55af12e skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xf5708f8c pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xf572180a jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0xf57c7581 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xf5985d9f udp_gro_complete +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc +EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid +EXPORT_SYMBOL vmlinux 0xf5ae9928 proc_create +EXPORT_SYMBOL vmlinux 0xf5b5517e input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xf5d62ba0 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xf60f011e sg_miter_stop +EXPORT_SYMBOL vmlinux 0xf611af9a mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xf613eb22 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xf61efd7a inet_ioctl +EXPORT_SYMBOL vmlinux 0xf62cbdf3 sk_stream_error +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf6617ff5 skb_append +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf6795910 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68447ba __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0xf6e2284d dquot_commit_info +EXPORT_SYMBOL vmlinux 0xf6e9b344 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0xf6eb03b9 cdev_add +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6edf3ce inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf7013d73 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xf7042d19 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xf70d9d01 dev_addr_add +EXPORT_SYMBOL vmlinux 0xf7115e5c ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xf71519c0 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xf71a8905 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xf723d04f proc_remove +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf798908a vfs_get_super +EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0xf79f009d textsearch_destroy +EXPORT_SYMBOL vmlinux 0xf7c7fe99 pci_iounmap +EXPORT_SYMBOL vmlinux 0xf7c8ff2e udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xf7d1ccb6 devm_memremap +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7d794dc page_pool_put_page +EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release +EXPORT_SYMBOL vmlinux 0xf7f474db phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0xf7f8c781 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xf808abac blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xf80be44e rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812ac07 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf8189bdf scm_detach_fds +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf83919c6 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf8bbd5f3 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8dbfb49 dquot_initialize +EXPORT_SYMBOL vmlinux 0xf8f524ad touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf90a1e85 __x86_indirect_thunk_r8 +EXPORT_SYMBOL vmlinux 0xf90ba950 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xf9292dd1 would_dump +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf94bf62c elv_rb_del +EXPORT_SYMBOL vmlinux 0xf94d73f9 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xf956f1f8 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xf958c43e mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xf9609f16 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xf9637336 clear_inode +EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len +EXPORT_SYMBOL vmlinux 0xf9722f90 devm_free_irq +EXPORT_SYMBOL vmlinux 0xf98ee5da __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xf9914866 pci_irq_vector +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b074ba blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9e453bd skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xf9e71d74 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xf9f283ec ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xf9f3c0b0 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa1a3078 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa482ae4 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa682113 register_md_personality +EXPORT_SYMBOL vmlinux 0xfa7ef17d pci_disable_msix +EXPORT_SYMBOL vmlinux 0xfa7ff2b7 finish_no_open +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfaaa9226 pci_read_config_word +EXPORT_SYMBOL vmlinux 0xfabe0865 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8c28 nla_put +EXPORT_SYMBOL vmlinux 0xfacfca53 dquot_drop +EXPORT_SYMBOL vmlinux 0xfad0c5d4 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xfade9f0a tty_port_init +EXPORT_SYMBOL vmlinux 0xfadf0902 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xfaf5b702 xp_alloc +EXPORT_SYMBOL vmlinux 0xfaf5dbaf __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xfb106d32 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb3581a7 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xfb3831ad nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb4cd6c9 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xfb578fc5 memset +EXPORT_SYMBOL vmlinux 0xfb62ef81 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb70cfd6 sock_create_lite +EXPORT_SYMBOL vmlinux 0xfb743665 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xfb82c594 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xfba740fc reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbab1bb1 ioread8_rep +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbbbf858 iov_iter_init +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbe60ff9 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfbef0003 nf_log_trace +EXPORT_SYMBOL vmlinux 0xfbf163b6 dev_change_carrier +EXPORT_SYMBOL vmlinux 0xfbfaf333 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xfc1cdedc dquot_destroy +EXPORT_SYMBOL vmlinux 0xfc2b6e94 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xfc2ddc40 page_pool_release_page +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3cea28 vme_slot_num +EXPORT_SYMBOL vmlinux 0xfc3d53cb __put_user_nocheck_1 +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc53420f pskb_extract +EXPORT_SYMBOL vmlinux 0xfc66153b netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xfc683aba page_mapping +EXPORT_SYMBOL vmlinux 0xfc7b6016 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xfc84cdc3 sock_efree +EXPORT_SYMBOL vmlinux 0xfc85e146 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xfc92d020 fc_eh_timed_out +EXPORT_SYMBOL vmlinux 0xfca30c3c disk_end_io_acct +EXPORT_SYMBOL vmlinux 0xfcb10ca1 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xfcbae29b xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xfcbf0e3b sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfce86f55 inode_nohighmem +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf7f2db uart_register_driver +EXPORT_SYMBOL vmlinux 0xfd09893c try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xfd0f792d netif_rx +EXPORT_SYMBOL vmlinux 0xfd27900e scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xfd2fcd16 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xfd38e165 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xfd43c3ba fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xfd4a12da netpoll_print_options +EXPORT_SYMBOL vmlinux 0xfd4f7242 set_nlink +EXPORT_SYMBOL vmlinux 0xfd592aad to_nd_btt +EXPORT_SYMBOL vmlinux 0xfd5bfd5d tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xfd671af1 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xfd6900a9 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xfd6adefd remove_arg_zero +EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc +EXPORT_SYMBOL vmlinux 0xfd99a3dd md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd35059 alloc_pages +EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xfdf747e3 tcp_mmap +EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported +EXPORT_SYMBOL vmlinux 0xfdff2ad7 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi +EXPORT_SYMBOL vmlinux 0xfe150dd2 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe1d9233 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xfe378ee9 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xfe384e8c scsi_print_command +EXPORT_SYMBOL vmlinux 0xfe47de8e scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe59c477 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6ed99d pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xfe755b0f pci_release_resource +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 0xfeafa793 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfeccecac iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xfece8104 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xfedb3202 param_ops_bool +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee051b4 inet_protos +EXPORT_SYMBOL vmlinux 0xfeea58f2 srso_alias_untrain_ret +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef216eb _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff02a19a input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xff1885c6 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff219f0d kernel_bind +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff52848a __SCT__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xff88c602 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xff948f46 netdev_warn +EXPORT_SYMBOL vmlinux 0xffa5126c flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0xffaa714f gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xffae4287 path_get +EXPORT_SYMBOL vmlinux 0xffb3d2c8 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xffc319b6 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xffc6dd78 send_sig_info +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire +EXPORT_SYMBOL vmlinux 0xffda396c tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfff4f873 __wait_on_buffer +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 +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x0b901549 camellia_dec_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x69f4ff25 __camellia_enc_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x8d725052 __camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x8d9b761c camellia_decrypt_cbc_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xfe729ed6 __camellia_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xff09bd65 camellia_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x194b2841 serpent_ecb_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x38800636 serpent_cbc_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x4140192a serpent_ecb_dec_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x2d2d84f1 sm4_avx_ecb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x4256e679 sm4_cbc_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x43d2dc1b sm4_avx_cfb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x728fc0e1 sm4_avx_ecb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x7c786fba sm4_cfb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xc67366de sm4_avx_cbc_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xd1d5cff5 sm4_avx_ctr_crypt +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x1f491d36 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x7c7bf6e0 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x92a51c43 twofish_dec_blk_cbc_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xb4e98a46 twofish_dec_blk_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xe4ae7508 __twofish_enc_blk_3way +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x002262c7 kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x008d0c4e kvm_apic_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01d5e516 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0323b696 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0338321d __SCK__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04795365 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x049e08a5 __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05a08a70 __traceiter_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x065e53b9 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0814dd11 __SCT__kvm_x86_tlb_flush_current +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08596a97 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0874b5f3 __SCK__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x088dab66 kvm_get_apic_mode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x093bcda5 kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0968b619 __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09ac844e kvm_skip_emulated_instruction +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 0x0beae561 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ca0ee95 __SCK__tp_func_kvm_apicv_update_request +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 0x0e9581f3 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f78e44a __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0fabad5e kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x102f662e kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1179bd09 __tracepoint_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11ae6845 __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1235000a kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12797ed8 kvm_emulate_xsetbv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x127ce9f6 __SCK__kvm_x86_tlb_flush_current +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1305db61 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x130fd155 supported_xss +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 0x15d04fbc __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16478dcc kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x173b4c93 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x176b0b95 __tracepoint_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x185a9df2 kvm_init_shadow_npt_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1943b8a4 kvm_emulate_mwait +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19503974 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1957f2e1 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c5e6d48 kvm_valid_efer +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 0x1f21db79 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21269ad5 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23263c0a __traceiter_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x237988a9 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23de9ce8 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x244fe2ec kvm_read_guest_cached +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 0x25ee0748 kvm_map_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26222bfd kvm_lapic_reg_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26ef9f57 kvm_vcpu_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27d478b4 kvm_fixup_and_inject_pf_error +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28411ed7 kvm_max_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2888a5bb kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2932bd02 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2976b749 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ac8ecd5 kvm_emulate_as_nop +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bdec63d kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c5e8b8a __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c6ea2bf kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d13e99c __tracepoint_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d692bf7 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ded0cad kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f32bbd6 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fe2be40 kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x306c9c53 kvm_sev_es_string_io +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x342e65ac kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x354eacbb kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36218c37 kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x365ab13a kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36c26226 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e0e10 __SCT__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38ba1790 kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x393cf688 kvm_apic_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x398217c8 kvm_emulate_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3983e452 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39e335a4 kvm_lapic_switch_to_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a6eb62b __traceiter_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b365da5 kvm_emulate_invd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ba6c794 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3baf20e8 __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d2996cc __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d2ed0b5 kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d56ea67 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d724b3e kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e25cc97 kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e36bb57 __SCK__tp_func_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e8eae4a kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f510ff5 kvm_has_noapic_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41027005 __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41b84d16 __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41f61634 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42f60a67 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x439d2e1a kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44db2285 __SCK__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46589682 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x474b9e16 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47631dbc kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47706e99 __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48360cfa kvm_init +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 0x48aa4a77 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49351fc7 __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4942be67 __SCT__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a36df84 __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c9f1112 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4dd139bd kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50cf4cb6 file_is_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51023612 __SCK__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51d81c59 kvm_handle_invalid_op +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5211f543 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53326c5f kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54cd466b __traceiter_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54d6be48 kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55877614 __SCK__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55f940d0 kvm_wait_lapic_expire +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5853e2a1 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58e2348a kvm_apic_send_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59840171 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5afc00ae kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b310709 kvm_vcpu_reset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b50d7e9 __traceiter_kvm_exit +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 0x5cceb1db __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d996b31 kvm_set_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5dcaa4fb kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5e455d0d kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5e9daec2 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fe36399 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fec4d2d kvm_cpu_has_injectable_intr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x617d8954 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6189cbea reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr +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 0x64490af0 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x661a6a73 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6755adc2 __SCK__tp_func_kvm_vmgexit_msr_protocol_exit +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 0x6976ccf0 kvm_request_apicv_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6becaded __SCT__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6cec4dfc kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d768c0e kvm_service_local_tlb_flush_requests +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e27c02f kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f7bd28a kvm_emulate_hypercall +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 0x7263ae77 __traceiter_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72bb9511 handle_fastpath_set_msr_irqoff +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x731f1d23 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x748f2325 reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74934397 __SCK__tp_func_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76097d36 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76225c1f kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76a44e3c kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x789dca41 __SCK__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79090244 __SCK__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x798b2e18 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a0e17f7 kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a595395 __SCK__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a797081 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a83f069 kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ab1b22f kvm_inject_page_fault +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 0x7d04f5e7 kvm_mmu_gva_to_gpa_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e1bb648 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e4c81c5 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e74c03d kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f61cdac __tracepoint_kvm_cr +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 0x80e9f9d5 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81b6cd88 kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8371629e kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x862328e8 vcpu_load +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 0x8bc7c775 __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8bf83643 __SCK__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cc07ada gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ccc2526 kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d4db2f6 __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e4a78b0 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e78931e kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ea38e6c kvm_unmap_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x918592c2 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91f0a78f kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93a3e40e __SCT__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9430059a kvm_can_use_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x944882ed kvm_has_bus_lock_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9626f504 __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x97b578d3 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98b40401 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98f9ad3b __SCT__tp_func_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9930970a kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99640afe kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x997e42b6 kvm_update_dr7 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99c04291 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99efcb2b gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9aa5e4eb kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ab2df39 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ae96340 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9bc75027 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cdbf5cf kvm_emulate_ap_reset_hold +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ee423dd __SCK__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa056909b kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa161ea5e kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa211732b kvm_apic_clear_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2a193d9 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2bb474b kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2f0d0c6 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4db1732 __SCK__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa51088f6 kvm_post_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa573ff2f __tracepoint_kvm_pml_full +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 0xa7bc6c65 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa80595a6 __traceiter_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa84a2e73 __SCT__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa95c4a51 __tracepoint_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac3330b1 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad3da56d kvm_vcpu_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb122403e kvm_lapic_reg_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb238aef3 __tracepoint_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb3f71dfd kvm_mmu_free_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb540efd8 kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb56c770a kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5908d6b kvm_slot_page_track_add_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5fe8932 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6654574 kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb70b2051 kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb7f12e3f kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb317548 kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbbab8ca6 kvm_sev_es_mmio_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd0dcd85 kvm_post_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0991705 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0d4712c kvm_handle_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0e4ebbc __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1cceace kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc25657a0 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3a1fabb kvm_emulate_monitor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3b5d1e6 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc455748d x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc67d2fbd handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc790493d __SCK__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7e1b087 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7f82a46 __kvm_is_valid_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc916d018 kvm_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9655dd1 hv_remote_flush_tlb_with_range +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc96d35f4 report_ignored_msrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc97c7651 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc18f3bc kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc68668f kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc6cd55d kvm_hv_assist_page_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcce10d03 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd1eb69a kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce02da86 __tracepoint_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce2d2edd kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0153408 kvm_mmu_gva_to_gpa_read +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 0xd1326784 __SCK__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd15a6635 current_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1d4cd64 kvm_lapic_switch_to_sw_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd41ee85d kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4367895 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4cfa75e kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5c27745 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8f54648 kvm_inject_emulated_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8fc987a kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9c09836 kvm_load_guest_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda13df03 kvm_lapic_hv_timer_in_use +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdaa11707 __kvm_request_apicv_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbb4a41f __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbbf6dd2 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbd2a1ea __SCK__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd19b6c2 __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xddcabcd2 __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xddf3dbf1 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdebce9da kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf026a18 __traceiter_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf8d42c7 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf9b5683 kvm_handle_memory_failure +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfbcc95f kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe056e670 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe105d6b2 kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5901141 hv_remote_flush_tlb +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe65a9cce kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6ce3af1 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6e60355 __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6fdc8b0 __SCK__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe76f2033 __SCK__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7d96caa kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8a67c5e kvm_handle_invpcid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe93dfc8c __SCT__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9674a16 supported_xcr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9e02ae8 kvm_vcpu_deliver_sipi_vector +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5cda33 __SCT__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed05bcc1 kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee07a647 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee30874f kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeff79924 __SCK__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0561c3a kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf06afdcb gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0e45d1c kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2df48f3 __SCT__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf32dff97 __SCT__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf43c7c24 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4668dfb __traceiter_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf66a49be gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf71128f5 kvm_update_cpuid_runtime +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7df4d3d kvm_fast_pio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7e0e21b __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf88f9a16 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf92e487f __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf958aca6 kvm_mmu_free_guest_mode_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9f453f9 __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc801f1d __SCK__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL crypto/af_alg 0x06d411cf af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x07483e59 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x0978e649 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x3b2710f3 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x3e4cd836 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x49810e24 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x568a02d3 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x7978293c af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x84e56f7d af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x865b7a46 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xa2c19b9b af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xb91141da af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xbb55d9c4 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xcb58ca2c af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xde0b884f af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xe8647745 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xf13e239e af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xf798034b af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x45d32e59 asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x1e89cbc3 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x05172e9e async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xef379d46 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xc1b4e00c async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xf8c8c86e async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0f19f350 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x8a80ba3f async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xed10bb13 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xed562c47 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x494e57e0 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x4954d0b4 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x4e15d496 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9cc04791 async_xor_val +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x19e89fb3 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x9542f1eb 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 0x4804e673 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 0x0484cbad cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x0ca4fef3 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x14af0d3c cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x29c5cc4f cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x331f3725 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x4d80a2cc cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x55b6db4c cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x5a85fcc3 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x845c18c6 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x8a658b92 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb95d729b cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xc8ad7a24 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xef93013d cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x02623a27 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x101949ac crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2672b019 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2a87a056 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2a8fc294 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x32ff0c69 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4f355c21 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7286382f crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x901ffd80 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa39e8baa crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb0556db4 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc5ae2c3a crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd64cc48b crypto_engine_alloc_init +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 0x6c9fb07f simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x7d3582de 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 0xbbb7d77c simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xcf6ab0df 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 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x68acb39f 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 0x980e8174 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x00224aa7 synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x05081c37 spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x058a57c4 spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0a9f54e7 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0fe77179 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x13cf0a79 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x27ef1ab5 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x3ed48b1d spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4152f43c spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x437278ab spk_do_catch_up +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 0x4e419781 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5b41f892 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x86f22bc2 spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb1da516f spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb734cb9d speakup_event +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbb1dac8b synth_current +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 0xe194d0ef synth_printf +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/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback +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 0x02b8932f ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0689b6b3 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x104e7ee1 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x221bcb9a ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2740b0db ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2de000f8 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x54948b4f ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x59e9dbbd ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5dce8605 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x762f1350 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7ba7adb2 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x93aeb353 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x93c95110 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa17e72c7 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa515a6f2 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb96440ee ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb984c555 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc0abc7ec ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc8110ea1 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd247dd1c ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe41b3f97 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea4d9694 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf111ea7c ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfaf09618 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x00041487 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0f9b1e79 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x13d07102 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x14a31a49 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x31d94bdd ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x495780cd ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5523f556 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5939c653 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5f1946b2 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6541683b ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x75f285cf ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb3504299 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb9025994 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xba458411 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcfa43529 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe5f29ab3 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xcd940f31 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd3e29970 charlcd_backlight +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf3304696 charlcd_free +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf883c540 charlcd_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x07b26ecc hd44780_common_gotoxy +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x1aa688fd hd44780_common_lines +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x23159a5b hd44780_common_clear_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x30e85287 hd44780_common_shift_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x36dc00a2 hd44780_common_print +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x3c4c183f hd44780_common_home +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x489c89e8 hd44780_common_redefine_char +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x64415593 hd44780_common_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x79e8e259 hd44780_common_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8585e5fd hd44780_common_blink +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8d4f3fa4 hd44780_common_init_display +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/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0x0e8c184d __regmap_init_i2c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0x33186843 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x823125d6 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xff97d129 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x099fdc6c bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0bd08309 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x101136c6 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x19727abf bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2661165d bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x28b87a93 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x384ce4bb bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5549e7b1 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5558fdbc bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5a2d1804 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6fd4ba54 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x70ee1d87 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x720916fb bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x722466a2 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7e7c6c76 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x80af41e5 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x98e2f53e bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa27183b8 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbda823ce bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xca3f3553 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xca54a9f4 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf2b7040a bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf35994f4 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfb2c06e8 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0a32ac81 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0bd2a4d6 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0cf50d23 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x145ba7e9 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x194a6dbb mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1d0e8bb3 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x26af904c mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3a22a7bf mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3bef3698 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x45daddf3 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4afe3bba mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5222e315 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x668bd099 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6f7b7a07 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7059cd5e mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x70ef9a15 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x76619568 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7d71193e mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x887f6830 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8b3b9324 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x943982a3 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x947d2d10 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x998567d9 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaa4e29e0 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xac234b7d mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbc820140 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcf01d68e mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd55e55db mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd8d35d5d mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfeb08299 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/counter/counter 0x5069a854 counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0x51d9312b devm_counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xddb281d6 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 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 0x56d2640e 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 0xaab8da4f ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd02e197f sev_platform_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0c44056a adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0c4a4f4f adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0e86e3a7 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x128f1134 adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x15a9a48f adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2056e915 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2b9bb881 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2be4e269 adf_gen2_get_arb_info +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x301d099d adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x309510e1 adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3e707f37 adf_gen2_get_admin_info +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3fd4c585 adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x50276975 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x511428f6 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5189ea5b adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x57df9b94 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5c4145ab adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5d21dd3e adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x62916c33 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x678e0142 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x678e9404 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6ca21dd3 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6fdebc0c adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x704d8c56 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x78c4180c adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x808b1b29 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8a3473c0 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9503b89c adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x95eb6871 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9f7ad88f adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9ff0f748 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa1eef9ba adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa758fcfc adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xab553871 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xad5953cf adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb0704642 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb31f766e adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb82982b0 qat_crypto_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb9852cec adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbba5e203 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbf20780e adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc2393a45 adf_reset_flr +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 0xc71ee8ca adf_dev_started +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 0xd2df7648 adf_cfg_dev_add +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 0xdb5b94e4 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfad2fe33 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0x0aeb9261 __dax_pmem_probe +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x2674fdde dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x71426d94 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x89452a40 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x9a5a2880 unregister_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 0xb1bef1db alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xc95466dd register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xfd3a9585 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x01e43bfd dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xa46fdb0b dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x01453853 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x03a474dc dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x060bbbe0 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x27281a31 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x29e55cc7 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x366a8e10 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc325dbe3 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xccb07648 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdfd5ab3d dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0ce87a25 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1efeadf3 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x46981496 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x543b8fcb devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5fc965f9 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6f068ac3 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x83a2e0f7 devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa42cb882 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb36f8370 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbfba149f fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdb178347 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xea46934e of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xed0eab13 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf9e7306b fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x033c6abe gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x4a3d3c04 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x632c7a0c gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x890af734 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xfdb6514b gnss_register_device +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x0126bf50 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x3d0a56ca __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x7504fc49 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x03a5dafa drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0a9f4685 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x27784bd0 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x327e30f2 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x332002d1 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3e498b2c drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4459c467 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x49eacc53 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4a409a8f drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x526cbdf2 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5794034c drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x57af9bd8 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x67ce4dc4 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7665ae41 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x81694763 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8816a5fb drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x989973fe drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9aa13626 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa44c6dba drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaab6e096 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb89fce43 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xba753aba drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc6fba856 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe0effda9 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe467e6d9 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf546b2f7 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf5812996 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf78c7329 drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf9302fd4 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xffae28bb drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x08b93d24 drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2432293f drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x30b082d7 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x41dd9408 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4a55cc8c drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x56190fa1 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5959f8ac drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x70c997d7 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa3515f4b drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa8ab3406 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd528bcfd drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xdba20b1b drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe3dc924b drm_bridge_connector_disable_hpd +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 0x4ad6bb04 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/hid/hid 0x01b10674 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x07e7322c hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x14c1daea hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1622a52e hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x18e7a769 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x195127d1 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19f7cc5b hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x24225d1a hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x25b01732 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x25ded571 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2e2de079 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3438b915 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b80271c hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x464e8a88 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4ba96af2 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x50ce6611 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5713f6a2 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x59466800 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x675f34b2 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x676de14a hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6904f93e hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6da32155 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7caec7a2 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x828b94b1 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8bcf217b hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d381527 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x93c4ea4e hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa1404f81 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa219af40 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa30e9cf8 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa5ac3cc3 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaf7be12c __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb225df9d hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbab10cff hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0bd58e0 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0d56c64 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdde70fd4 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf3f4bf2 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xed74b5d0 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf389446f hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf44f8771 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf55e7c62 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfac4b12e hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc185ab2 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0d723230 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1979e386 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5f18371f sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6b7208d2 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x99134bea sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa122a3b7 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xba6da8d8 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcf6a7c7f sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd4437a5f hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x4e68dec5 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xb3251f6f i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xc3480fde i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xc71e9a65 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xf0678ad9 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0x0d8d5175 ishtp_wait_resume +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x42f1f344 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x25541a14 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x49d3d1ed adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x68902c54 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x3571cb15 ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x324865a3 amd_mp2_bus_enable_set +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x3ab17d2b amd_mp2_register_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x59c197b5 amd_mp2_rw_timeout +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x8d045cbc amd_mp2_unregister_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x912be9ef amd_mp2_rw +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x955121f9 amd_mp2_find_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xfe716bba amd_mp2_process_event +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x11ec55d2 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x163a4e68 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x49d89c4b i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x5d793bec i2c_dw_validate_speed +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x842f3227 i2c_dw_probe_master +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd1c2fd91 i2c_dw_configure_master +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xce44c9cf nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x0a4b38e8 i2c_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x104ce976 i2c_for_each_dev +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x15c5bd5b i2c_new_scanned_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x16186d07 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x1dfdf814 i2c_recover_bus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x2944b226 i2c_acpi_client_count +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x30447b02 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x33953350 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x3a55041e i2c_acpi_new_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x540f2691 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x558a1809 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x610dc90a i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x62876745 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x653789bd i2c_adapter_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x8748c1d6 i2c_new_client_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x8d9d6fb2 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x96990650 i2c_match_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x985275da i2c_bus_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x99cc11d2 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa3844269 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xbc4f56d5 i2c_adapter_depth +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc60b3173 i2c_client_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xcfd6f52b i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xf47addc4 i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xfa66661b i2c_get_device_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x488b2202 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x9d6fa609 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xf0a779d5 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xfa5d868d i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x0133a5ac i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x6d71828c i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x00807643 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x04e80828 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x120f0535 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x27fe149e i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x29e68a0e i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3171b458 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3f8cf83d i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x459c8926 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4f4e707f i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x54b8abb4 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5720d8c7 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5acaf2f9 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x675e9c59 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x69859a0f i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6a1e07d2 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x78a97044 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x97e4c480 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xadd13139 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xae415eec i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb0652d4d i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb9d500ee i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc73f2474 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdcc91898 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe977dfde i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfb7aa3cd i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x07363840 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0f218bf9 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1ed37790 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x221b47b6 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4901f14b rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7e5150a0 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8a5ec50c rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8f2c3470 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x90a1e91c rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa6bb2a29 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc4207e6c rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfb523d10 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xf5bebbc0 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xded77c8c matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x00d69ba7 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0bcd9e15 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x132d1c03 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1ebbadf6 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x291cd9cb ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x36b8fe58 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4bd85173 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x566e6a61 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x91c0d53b ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x295f2251 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x510b4380 led_classdev_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x55d2f1d1 led_classdev_suspend +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x668d6ed3 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x86738a22 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x9e57e58f led_put +EXPORT_SYMBOL_GPL drivers/leds/led-class 0xc5c3b409 led_classdev_resume +EXPORT_SYMBOL_GPL drivers/leds/led-class 0xca84a243 of_led_get +EXPORT_SYMBOL_GPL drivers/leds/led-class 0xd237df63 led_classdev_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class 0xe67de33d devm_of_led_get +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/md/bcache/bcache 0x00bc0e67 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x097fe671 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0acd459a __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0cf44c29 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0e6feda3 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0feafc9f __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x11825297 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x12032f2d __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x14fb2d9c __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1d0011ca __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1d74801b __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x213f3afe __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21b87a42 __SCT__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22cd2e4f __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25cacb14 __SCT__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25fe6022 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x273143e8 __SCK__tp_func_bcache_bypass_sequential +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 0x2a4d170c __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b620a01 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2c3bc7d4 __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e1d7e4c __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x300c8ff4 __SCT__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36f317a4 __SCT__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37104463 __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3f3c22ec __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fed28df __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x406e7bcd __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4543b49b __SCT__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4556e298 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4644482f __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4845c4c8 __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a267012 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ccd95d3 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4d122f29 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4dd5916a __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4eec07b9 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x551f4e2d __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x58c12a55 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5973f21a __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5afd8436 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dd80bd5 __SCT__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e6fb0f7 __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f35fcd2 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6279f1ce __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x629c9180 __SCT__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64b6c998 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65544190 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6677ebf0 __SCT__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d8d1825 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x738157bc __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x752f7fa4 __SCT__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7857bc9f __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x787810b2 __SCT__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7b518755 __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7b9627c2 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f252e00 __SCT__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x817ad796 __SCT__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x822db771 __SCT__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8788e082 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8e0691fb __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96d371c0 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x972aa384 __SCT__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x984f1be3 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x99345198 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9981768b __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d28d153 __SCT__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9f16d636 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa15bd7c4 __SCT__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa784e073 __SCT__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa809190f __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad96f605 __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xae503676 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaefab1b8 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb26661bd __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4c8fb1f __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5bc44cd __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7e5379d __SCT__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbddb2a3b __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0b13fbe __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc73e0c99 __SCT__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcb7aad7d __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce451ad8 __SCT__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd25f9d60 __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd30206ff __SCT__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd44a04f8 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd5087b3e __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd5641b0e __traceiter_bcache_journal_full +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 0xdb09f7d9 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdd87f132 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe0cd64ad __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe2663ce9 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe4962a47 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe69dff2e __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe76463c2 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe8cc6790 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe9de9401 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeb71051d __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedf90bb3 __SCT__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeed7d8b7 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef2696b0 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf0adeecb __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf25368c7 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf3025e90 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf461cb13 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf4e4545e __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf57f81ae __SCT__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf639f9f9 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7a5edc7 __SCT__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfae9e4b4 __tracepoint_bcache_write +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/bcache/bcache 0xfd07209a __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x10c3d9d5 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 0x19944227 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1a953b93 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1f49c75a dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2e52a53c dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x59460b39 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 0x68904331 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6c4e3a1b dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7010ed5f dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x88b5212d dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x94edb607 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x97a2c69b dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xad85052c dm_cell_put_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 0xbf5405ae dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe4a83707 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xed04eca9 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf6fb1e60 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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 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 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 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +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-bufio 0xfc797fab dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x25e713cf dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3dc4f4dc 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 +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 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 0x1bf629ae dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x6b16aeaf 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 0x221e5b37 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5cd9c9ba dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0xa87c5ed1 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xae9d08b8 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xaeb3dca2 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 0xef67fe94 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 +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1125b94a 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 +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 +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 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 +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30a26537 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30c37cc0 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x382a0134 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ae50a4a dm_tm_inc_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 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 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 +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5736c9c5 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x586705e1 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6b2357b6 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c218062 dm_bitset_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c2c7ef4 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7062014c dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x73420d49 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x75606d09 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x79bdc649 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b6b3af5 dm_bm_read_lock +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 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 +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88a5c035 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8db6f8f0 dm_tm_with_runs +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8f5eefee dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x925f421d dm_array_info_init +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 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 +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 +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 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 +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 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 +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 0xdf3a4e7d dm_tm_create_with_sm +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 0x03c29645 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0b99ebf6 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1b007a2a cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1c09ef53 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1e24b93a cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x40daa73b cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4a13bf8a cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x57430795 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5b5b04ce cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6a7e7e09 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6cd88e13 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6d861313 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x70785e4b cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7268496d cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa0c76312 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa45a1bca cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaf6e0b8f cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb42b58d1 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb5e1f5a1 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe419ef6e cec_transmit_done_ts +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 +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb40fae23 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +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 0x056de027 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0a53b33e vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0f603185 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x21fa5954 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x240e12a1 vb2_core_streamoff +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 0x2fef7942 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x309ad29a vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3617f33f vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x45167939 __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x471c26e6 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4b1815f8 vb2_core_dqbuf +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 0x6506cf0a __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6ef95bf8 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x80e17e8a __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8353b18d __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8b11755a vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x924bdc85 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9261c089 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x96427694 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa23a58b4 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa2f8d274 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa69136ef vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa9619e72 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xadd6b304 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb018361a vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb0c210e5 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbf706644 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbf86a5a5 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc24a3b2d vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc35165de vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc54c863e __SCT__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc63bc0cd vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7920841 __SCT__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcd53b4f4 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd4f13820 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd93d1032 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe3769d4a vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe557a0f3 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf7db02b0 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x3865e462 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x7da148f9 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x6e1062b1 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x4ad3690c vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x05d3b430 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0c4fc07c vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x16e92a4c vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1bb6a678 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x23137822 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2f9c034b vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x331d3e67 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3a290345 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3a4f871b vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x40e4847c vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x49fbf8a8 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4f5064c0 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x52c30f47 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x52fa2de5 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x59503e82 vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5b0e51f6 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5e09e46b vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6c9c4aca _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6da11c15 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x80bba99d vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x81d7180b vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x861c407c vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9661b887 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9ae0c9e5 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa0c19eb8 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa83044b8 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xad7c6668 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb20ad2d9 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe5eaa2d4 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe777eb0c vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf1eae10c vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf2e7f57c vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf71ccc5d vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfb98a7e6 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xc5d5e945 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x05a5718d media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0a12d5a4 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0bf038c5 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0c26bf1f media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0cd10e11 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x23fa579b media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x25bd1151 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x311924df media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x33de3496 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x34967035 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x374d1493 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3a29a740 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3f05fbeb media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x40472808 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x43ea0197 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4906e835 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4c094223 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x59a41510 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5bae8b1a media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x644d2461 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6c84ba88 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x710e8bdd media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x75a9759e media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7b3db4a2 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x80fb2c57 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x83ad446a media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x94ae237e media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x95f6cb75 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9c1d92d8 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa3120db3 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa5066343 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xadd6342f media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc404c8b2 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc8eeb77c __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd53ffdfd media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd73541d1 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xda1fac11 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe1471182 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe2194cf5 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xee92933b media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf76e543a media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfab24c8a __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfae294c4 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfdc849c2 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfdff9b00 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfe404485 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x23a37bab mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x318a1928 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x35ae9d64 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x3f10b96f mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xa3a8145e mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1320c4a6 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x16d65585 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x20034df2 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x434688e9 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4cce09f2 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x56b3c645 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5b3ec9e9 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5fbf2f69 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8976a5db rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8cf8178d ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x92a12568 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9e53806f rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa55a5c09 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb0e43456 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbbf5a5a9 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdaa531ef rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xec2d72be ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xecb1f7f8 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x3f79b26c v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x46bce51c __v4l2_async_notifier_add_fwnode_remote_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x4afcb8a0 __v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xa4124c4f __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xb47323c2 __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 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 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-fwnode 0x37fc8c05 v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3be0b89f v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x596d29de v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5d35daed 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 0x63a26653 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa013484a v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc7eb4302 v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd21dfb32 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xdc9b0626 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf9a2b65c v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x04578874 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x07bdfbb8 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0b6830aa v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0c83732c v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0cf25223 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x128e16ab v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x13cd3878 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2040c3ea v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3254c57c v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x34bb29ea v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x357b0f03 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3e3f3794 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x44683bd0 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x44e267a8 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x457273e9 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x47f95e70 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4a8925f3 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4b991024 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f4ea22b v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x542e9b55 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5566863b v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5617224e v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x57bac39d v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5bc796aa v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x65cc473b v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x67166989 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6b548490 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x70ed6580 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x75fb56eb v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x77740f81 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7e66bcc2 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x868e6dbb v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b7c58c7 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1dd7691 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbda828c2 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbdb1e908 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc3e4904c v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6307ac9 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6ca0a6d v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcc9d1c3a v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd251f581 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd4710d22 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd52fdaf3 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe24b3788 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x11807483 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x12da6e20 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x15f85532 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1c7e358f videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1ca0f99b videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1d088e76 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x274b2987 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2e1ee2fd videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x30e68f1a videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4293ef13 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4d2631c9 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x525ac97f videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5d682a11 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5f80f206 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6deadb7a videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x75eeccfe videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7cac966a videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x920b875e videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x98a4ec2a videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb9262c1c videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbd847fcc videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe0abdf5c videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe4903f85 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xffef05e0 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x38816b1c videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x77fb3624 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xb18299a4 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x017dc058 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x01a887b4 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03cc2af3 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0415208a __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x099455b9 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x14093dde v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x17716f53 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x18b2c9d5 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1db3a7e1 v4l2_subdev_alloc_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x200a8a26 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28d8e88d v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2d9f592e v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2de5dfd6 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3256869a v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x33099e5d v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3fa4205c v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x41280883 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43d9194c v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x450cf653 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b7fac04 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5305bd9e __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5673e63a v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5af531bd v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c16ce17 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5d7195da __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5da50707 __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5f1ac6f5 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x609c604b v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x648a5820 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67799cb7 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2a16c3 v4l2_create_fwnode_links_to_pad +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 0x6ec13952 __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b9950c8 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f9b2e1e v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x83fdd64d v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x896e4a6a v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9218895b v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x968356cc v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ac91a94 v4l2_event_queue +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 0xa2feb6ed __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa494b54a v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa68f7ee6 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae076527 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb387ee06 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb805fd3e v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb8fb090 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbdd87400 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2eff81b v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc66e08cb v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc85f9f97 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8dd867f __SCT__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcadbf29e v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf21ec30 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcfe385bd __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd12bb880 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1522ca1 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1553258 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd541e31a __SCT__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdaf0e578 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe1c90317 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe1ca2bd6 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe26411ab v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4d1147f v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf1daa446 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf221a88d v4l2_fh_is_singular +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 0xf7112eb5 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb916ca7 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd0d61ca v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x182b7a72 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x1dae38f9 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x6dc970bf pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1bf96ca6 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x286aef5a cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x39ea9648 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3fcb126a wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4382c100 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4a71d0e7 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x632ab827 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6d0105d2 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6e67176d arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7092bc0f arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7cf3d326 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x81a0871b wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa534f959 arizona_set_irq_wake +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 0xbaeb6d8a arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc2984657 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd7a92e03 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xeabcd6cc arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfb9ef70c arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x4b095d70 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x7e7510fb atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x7118cb89 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x85225ae8 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x88f3e725 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x93a6e029 intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xc86e68e0 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x05754060 intel_pmc_s0ix_counter_read +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x2622baf7 intel_pmc_gcr_update +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x4ceb9055 intel_pmc_gcr_read64 +EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa86d731e lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc461fbf9 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xf6ea1ae6 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x03e3ff7c madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0630cb56 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x063d1716 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x173a0c18 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1b163c63 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1b1be023 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x23793499 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2c97279e cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2c9afbde cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3442502e cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x344f8c6e cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4505d65a cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x45080a1a cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5823216f cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x582efd2f cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6fa23a92 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6fafe6d2 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x77774d22 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x777a9162 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7e28207b cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7ec68ab1 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8fc67c96 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8fcba0d6 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb8834d51 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbc58b5fc madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xccf3619a cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xccfebdda cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcd9c8f18 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/max14577 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL drivers/mfd/max14577 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x47cdadbb mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa0976ae1 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd687ea72 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe02d21c1 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xea6444f5 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf222d4a9 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1d1a10bd pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1e6d369d pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x337ba10e pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x52c1d66c pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5a5f9aed pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7612b705 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7dc59440 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8ac34d9f pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x91c16d81 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc77a4722 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd9ff2a5f pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x0e1ed3ae pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x3026c69b pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x05c57d51 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3aa76e72 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5a63a19b pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7780cad7 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x94692541 pcf50633_gpio_invert_get +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/sm501 0x7084bff7 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x93c683cb sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x97693bc8 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xcea18e02 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xdce687ea sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x1ab68e26 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4773c301 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x6c44224e am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xcc7c6484 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x173459db alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x262b607d alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7b870cf9 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x881b59d1 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xcbd1138e alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe479956d alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xfeb2c5cd alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x11195d41 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x18ea0cca rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x27b404db rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x29c3edba rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3c47784e rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x42ce2393 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x498af2a3 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x632ed60f rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x78b3674c rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x926dd4e8 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x98b2ed2f rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa1873dae rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa4e803cc rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa7a49bf9 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa9a34114 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe11a562e rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe170db75 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe83d9684 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe8ae6203 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xeca5afe6 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf011d3d2 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf423b2b0 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf92598fa rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfc6feaf5 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x3cb83d5b eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x870b53e9 eeprom_93cx6_write +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 0x00ec0153 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x018be9d6 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0f3ae5e0 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1833740e enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1e1681b1 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x59c166b7 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6767b3ce enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x71818105 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0b96914d lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1819af87 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1b5468d7 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x37d84a60 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x674400b4 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6f2b34bd lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x75a36366 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9674adc8 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x052ff680 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0f8ec2dc mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1d962377 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x270cbb40 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x27689559 mei_cldev_register_rx_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x27abdc2d mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2b4c4f11 mei_cldev_recv_nonblock +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x300e6280 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3d7e2e61 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x41cc5d83 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4b2275e6 mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x692d4551 mei_cldev_recv_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x76542efe mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7da1318a mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x86b01ec2 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x87346bff mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8a7c9031 mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90d8ab68 mei_cldev_register_notif_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9f75bdeb mei_cldev_send_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb311bfbd mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb78d032f mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb8694ff6 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd467d46b mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd73ddd18 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xde9471a0 mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe1942e9e mei_cldev_recv_nonblock_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe50d0d29 mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe6515221 __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xeb731e3f mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfe633641 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xff9ad2d2 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x392b1a80 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 +EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0xd3d2bf04 gru_free_message +EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0xde08c325 gru_read_gpa +EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0xeed7d505 gru_send_message_gpa +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x1018eee0 xp_restrict_memprotect +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x12333991 xpc_set_interface +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x345c9217 xpc_disconnect +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x39046c7a xpc_clear_interface +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x48e62c9f xp_region_size +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x6285dfe8 xp_cpu_to_nasid +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x64ba5017 xp_pa +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x68d27065 xp_expand_memprotect +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x68fa7d28 xp_remote_memcpy +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0x8d146cd0 xpc_registrations +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xc04c7267 xpc_connect +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xe68acd6c xpc_interface +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xead4f7fe xp_max_npartitions +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xed1d3813 xp_socket_pa +EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xf3b47f67 xp_partition_id +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x11d9a4f0 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xa24abf64 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xdfb20094 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 0x83f557cb vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x8dbeca83 vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb2722696 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/most/most_core 0x29ec457c most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3e1aa126 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4e753642 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x63c667fd most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x782b1c8c most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7ac22058 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7b35cbb0 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb4b6fa72 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbdf2213f most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xc843a31b most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xdc4356bb most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xddac89cd most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfca5ae14 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfdb1e58f channel_has_mbo +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x060ade3c mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x165ac365 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1ce1e2e8 mux_control_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x356b1649 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x38b87700 mux_control_try_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4faa7993 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x709dddff mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x72190c08 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7b04275f devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x82753b5a devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x945cc8d8 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x982f41b3 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf9b0c1fe mux_control_deselect +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x27d69b62 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x9bff86f3 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/bareudp 0x237824d9 bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x039a7af5 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x13eacb64 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x19aa782e alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x71542657 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x846c0a5a c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdd38beb6 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x169c431e free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1e895ecb can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x224c7333 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x24aecc2f can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x258af53f alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2b64605f can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3c70a73d can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3e2ef84a unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4194158c can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x49f4b72d can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x504bd6ac alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5497d3ba alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x576363ff open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6e1f545e can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7cbc0d88 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x830d16a8 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8b084ec5 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x911e2597 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9b64fd26 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa0b253aa can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa6cf4d27 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xacf775b9 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb0a4ae66 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb861649d can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbcd36a3b alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcfcd5c38 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd5d95dcb can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe8747375 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xea8bb96b can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1cd74000 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x44e4fe6a alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x499d5ee8 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa739a171 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x27676785 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0dfed279 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x160fe6cb ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1de8b538 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x28d0d05b ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x39722201 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4339253e ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x44cace1e ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x50991555 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x65ac2828 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8656e6f8 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8e5b7b8a ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb5696c55 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xee7deadd ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xfad3386a ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x17af912c rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x19ccb8ff rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1c501bae rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x28004497 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x45bd25dc rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x98612c6a rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa82e8d88 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbe22dcc2 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbfab202b rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdb5e91f4 rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdfd6da28 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe120098e rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe277be8f rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf00168f4 realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf60838d0 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x076c7cc0 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xece8fdee i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x02dfa665 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x86339929 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x90c5b540 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb6feda55 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc35e5514 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x008c1dc7 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03309f36 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0486ce2d mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dbd3f60 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1234493b mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14ebc32e mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x159fb4eb mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1683673f mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a4dfee2 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e23da6e mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2006de1e mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22ae514f mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x241ebb73 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2495a0d5 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2505dcfc mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25e85de5 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x267d2670 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2784b19f mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2aa1992a mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2eb3f21f mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3106bab8 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31cfbc97 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x325b6ae1 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33965d44 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x339f9b7e mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38b639b4 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a0edd52 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a68a55d mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d4dc4b2 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d980ed4 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40b09322 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4384a1af mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4466c3b1 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x448ec65e mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4602ea82 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46139237 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4646ea9d mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47bca44f mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48821e24 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a2bffac mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a71f0aa __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d30af40 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e1291ee mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5056ee90 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51ac0683 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5412b969 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x545491c4 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57ad2ab8 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5857cd71 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5973ae54 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d08d602 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f3e4750 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60aebaf8 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62a4af68 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x663626c4 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x664d5d02 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67b4f7cc mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x692cb0e2 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69fc4348 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d120714 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d94feec mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f684e85 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71386de1 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7265716d __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x734bfb67 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d24645f mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e8510ff mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f33b107 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83a90c92 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8428a7ac mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cfb91ec mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e85987f mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93b9ff43 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9470bcda mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x947a35aa mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95e23b71 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9771587b mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x989e4ad6 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c4e0780 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d4e10bd __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa04adb83 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa118b5fc mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa31bf2ea mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4db0e71 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7ff472f mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9b3fe4c mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab9e3e49 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac77a603 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf141eef mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb09ae397 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb391185a mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4896ec2 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb84905d7 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9081904 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba9e7826 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbaad8385 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb2ca23b mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf61c337 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc10da95d mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcab1c2e0 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc8dcffe mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccb90ea4 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xced02b2e __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf03f82f mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd34d7a50 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5cc3a88 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd607d19f mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbb520d4 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde482535 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1e0b1f3 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe204470a mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3cbd9d6 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe974bf35 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe99d29d8 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec42c7b2 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef73908f mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4c53d3a mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6d655c6 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9c742a2 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa0fcb5a mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe49c5e9 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00c75fac mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x012dba1a mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02e0a7a0 mlx5_nic_vport_query_local_lb +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 0x0bc8cf4f mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f41fc81 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1346c665 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1500b6c5 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1622e021 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cf4b4eb mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e1cf419 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f6a9b65 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35c4d70c mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3713ed15 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38cdef2d mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a8e05f9 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fa8a67b mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x491d382d mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e7b8943 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54b3ad74 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57c3582c mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5aba54db mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bb203a7 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e2914ec mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61884b88 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62bfa7bd mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6334b654 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6420b85e mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c7d3b9a mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x744595ae mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7eb51caa mlx5_frag_buf_free +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 0x83716eb0 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85348478 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8575e073 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87913231 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b139216 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91e96996 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9230ec9e mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93229ff8 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x932d613a mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93966600 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x946c9437 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x963ca6ec mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b17237a mlx5_query_mac_address +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 0xa8d1fd98 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9385d63 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2724ee0 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3c63e47 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb82c6c9f mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd275e1f mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe3b56f1 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc52e373d mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5e28936 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb283c0e mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce2a72a2 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd26ce899 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd28f780f mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd879122e mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd9b6e78 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf64b8c4 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2d8ee2d mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9f4a4e8 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee89af3b mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1880490 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3025d37 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3243bcc mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf50c0eef mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8340557 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9cbdffe mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd27c141 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdf86133 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff3786a6 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/geneve 0xa73e21d9 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x0616e11f ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3953922e ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8a7b1bcc ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc3ae26e4 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xeb6f6397 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/macsec 0x4711935d macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7bb15fe1 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa02191a4 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xad7d17d2 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf7aae058 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x9863d659 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xcaa3de6b net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xce1e9d24 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x1ef3f430 xpcs_validate +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x37b731f3 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x39a978f4 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x6788f1d5 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xcb58d841 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf7670909 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2f567ead bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3012cd65 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x30970523 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3889d7f0 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x38f367eb bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3b153f0c __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4a231eb8 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4af604de bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x544ba587 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5cfdf616 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5d6a6046 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x654fc081 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x65c95bd0 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x694a36a7 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x89d2a26a bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8c03803e bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8cbcae37 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8d832966 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8e1fc19a __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa0438984 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbb72464a bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbfee6f33 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc13ad0ba bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc3491bd4 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xce49c128 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd09f328f bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd3ffc423 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd86b8d05 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdb04d4e5 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe5a88a81 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe672db59 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf26811be __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf55c077c bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf959f15a __bcm_phy_write_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 0x1c6a4e2d phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x1edd2b11 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2f51dd16 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x41eb49e4 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 0x5de333c9 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 0x68a206df phylink_mii_c45_pcs_get_state +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 0x8f6382d9 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 0xa8c6b2b8 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xbb516d4e 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 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 0x0c2117ab tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x29610db5 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x85a0f572 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x8685fb64 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x9352f5ca tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xb8b98b14 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xcee8a624 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xfa7f77a5 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xffe040cc tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x6a8949bd wwan_port_rx +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x970f8fa3 wwan_register_ops +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xa41520c9 wwan_create_port +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xda9034fd wwan_unregister_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x677ccdc9 mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xab09cb5a nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xac184a38 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x1e6a993c ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x55427b58 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9499001e ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 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 0xcc040d7a virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xe0d4d848 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x348e2b40 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7b3c62f6 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8f257737 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb2022cea nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb7dee89c nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd34f900d nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe7827f44 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xec8eb663 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf5f7e713 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfaa08711 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 0x540da97c 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 0x3983855e nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x399ac876 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x474fdde0 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x59ca1c8f nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6197d93b nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6a6c8ebb nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7c1c4b60 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7fad36b7 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa1d5c6c9 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa7aa3a67 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf6c42443 nvmet_sq_destroy +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 0x777e7afc 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 0xc0f0ad4c switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x5060985c mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xc67b6cac mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xf600c843 mcp23x08_regmap +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 0x1ad39689 dell_smbios_unregister_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x1b0b3141 dell_laptop_register_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x45170471 dell_smbios_call +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x76411e09 dell_smbios_register_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x7fd2ce06 dell_smbios_find_token +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xb6ae3b95 dell_smbios_call_filter +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xb9400dbf dell_laptop_call_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xc2871e79 dell_smbios_error +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xd6c6b12d dell_laptop_unregister_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi 0x9d4b709e dell_privacy_has_mic_mute +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0x8eef8246 dell_wmi_get_hotfix +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0x9559234e dell_wmi_get_interface_version +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0xa167d064 dell_wmi_get_size +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0xa3dcfa65 dell_wmi_get_descriptor_valid +EXPORT_SYMBOL_GPL drivers/platform/x86/firmware_attributes_class 0x8ce864e3 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/speed_select_if/isst_if_common 0x06f7821f isst_if_mbox_cmd_set_req +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x58a8261f isst_if_mbox_cmd_invalid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x861369f8 isst_resume_common +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x97246c58 isst_if_cdev_register +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 0xaba1942d isst_if_get_pci_dev +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xe18f42a5 isst_if_cdev_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x1c7565c2 telemetry_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x5bb8e91a telemetry_raw_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x665cd407 telemetry_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x6b892524 telemetry_set_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x90551504 telemetry_add_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x9deec96c telemetry_set_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xb75bd1e6 telemetry_raw_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xbb9a2726 telemetry_reset_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xd14ffffc telemetry_update_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xe1eb4be1 telemetry_set_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xe8847f53 telemetry_get_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xf00771b0 telemetry_get_eventconfig +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xf9d5ad60 telemetry_get_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx +EXPORT_SYMBOL_GPL drivers/platform/x86/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 0x4556a8ec wmidev_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6068bedf wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x75b65df5 set_required_buffer_size +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x76ae31fd wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x9cf1f29a 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 0xf18bdd75 wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xa77bf5cb 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/fdomain 0xa99cd061 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xe562d260 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 +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7e9bb800 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa0772fdb iscsi_boot_create_acpitbl +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/libiscsi 0x008188cf __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e3fe33c __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28b63157 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x315a0db5 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x373b7cfb iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3857ad73 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x38fd2b1e iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3a7fad7c iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3c401dbe iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40434ff7 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d8187a9 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4e097610 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x53e4019e iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a450e88 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b0e7bf7 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6624bf62 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66c182f2 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x67456a9c iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6804e975 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e0e6d5b iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7aae81f6 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x85fb169d iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x866633e2 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86e00b4e iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x89c2a282 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9cf769ef iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9dadcabb iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa58fd169 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac54cf9d iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb358aeef iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3ae51eb iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb6ddfb89 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc390a6a iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc99dce2 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe8d437a iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6257e53 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc813abc8 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb5e66df iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd52c7d1 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf2d199b iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8e77c9f __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9acc63a iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9c84c3e iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda2c6e68 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc72f7d4 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdedaa0f5 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf17b4632 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf76eb920 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x01558ca9 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x16632343 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1a44ce23 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1e8f7aaf iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2f39a036 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x327bec0c iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x35464c82 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x61819d33 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6dd47592 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x77022245 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x77b0bf53 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7b3d5890 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xabef2526 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd88a593a iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xda8b0a8b iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdf1ff98e iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe7e7e2ca iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x23d63a2f sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x255bb701 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x290ca657 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2f26fb00 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3cde4bc0 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d79875e sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3e34c2e6 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4041bff0 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4dca5135 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4e5d7540 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4e782a8c sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5c5edf40 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6a3af3e5 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7cb738c8 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x873f8535 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8a8ad3b6 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x95883bc5 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa118b30f sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb573207e sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xba147911 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbc29e879 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd62e27ed sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc6cb008 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc6e9428 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdedcdacd sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2d3f3e3 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf1ae7835 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x02f425cc iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0838f0f1 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x084fc2ab iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0978d9ef __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a33116a __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b632a6b iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x119f9cd8 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15dc8bab __SCT__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x164da637 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f6c2fcd iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x27539e41 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3315c87d iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3cf398b8 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41f5d355 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42bf6df1 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x445f992b iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c6de7cb iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d78fe38 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4f7f14d6 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52575134 __SCT__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x53842669 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x56afa4d6 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x577e850c __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x581e3983 __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f253453 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6032db6d iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6033860a __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6bc9c628 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x73827a90 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x78cf8b21 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x821a495f iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x856d10f8 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x894a0759 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a4d007f iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c69fbc9 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9193e356 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91c1bed9 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9200ad33 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x92fb4039 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98a6fb98 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ca16a85 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa61b4ca0 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c4b5e1 __SCT__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb150e498 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3df93b2 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbec67fa4 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf17579d __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf2c25da iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2a79cbf iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1a57b64 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd815fb17 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd83d7610 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd91b7d1f iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdc3e84dd iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdcd197b7 __traceiter_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 0xe4721f84 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf054efe5 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf18b3223 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf395f91f iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e749fb __SCT__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfef28aa6 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff4e5cc8 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3e911b22 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5e899cf3 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xad4e7ea9 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf0b29481 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 0x5e45c9bb 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 0x02e0d590 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7dc84401 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xccebafd4 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xcf94d824 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe56b6cc1 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf25f3a11 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x094ad20b siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1e13ef62 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2359b6c8 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x548cb5ee siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x849a158d siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x946c6088 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0bc36af8 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x11b803cf slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x22ced534 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2573be5a slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3306ebdc slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3b9f2a4b slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3eadbcfa __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x52defb96 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x535c039e slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x554d0cf5 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x576aff0e of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5a7f5667 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x61593b71 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6ba07795 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x70a1886b slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x733850fe slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7e2a3291 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x96d200a5 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x98c483fd slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa3f11959 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaadfd49c slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbb370593 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc3354bd3 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdc660120 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xded95584 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xee3eff75 slim_msg_response +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xa4eed266 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xe2a87270 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xf62db972 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xbc4bca59 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x633d3952 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8f7f7f07 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x95a486c1 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9dd32867 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9ea42458 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbf6ae412 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1a9171a0 dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3f138c1c dw_spi_dma_setup_generic +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x485c8ce2 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x49e7c693 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x78145830 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x929c35d0 dw_spi_dma_setup_mfld +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9576c8f4 dw_spi_check_status +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9a639057 dw_spi_update_config +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xeceffee9 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x7f5b7336 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x81564195 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xe8d6ece6 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x51885ac7 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x2c684397 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x518edb02 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9d02f5be fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf08197e7 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x9bfdde40 load_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xb5c149de apply_msr_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xd3df4065 release_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x10cef7a3 gmin_camera_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x3e0d02fb atomisp_gmin_find_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x408cb5d0 camera_sensor_csi +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x54e30335 gmin_get_var_int +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xae433b4e atomisp_gmin_remove_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 0xcac99ee9 atomisp_register_i2c_module +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xd14bcaf8 atomisp_get_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xf72959a0 atomisp_gmin_register_vcm_control +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x05e1eae8 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x40be3b4c target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x98103596 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xab4d9b38 target_submit_prep +EXPORT_SYMBOL_GPL drivers/tee/tee 0x15dadd9d tee_shm_pool_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x193f8bcd tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1d653dfc tee_shm_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x27fec4c0 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x297009df tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x302e5e7c tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x352d9969 tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3956e0e8 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3ff071a3 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x417cbc5d tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x52680195 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5b8ff89f tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x60534a59 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x66c68317 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x709cdb3b tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8079e5fc tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x81e63dd8 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85aae580 tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8927ae7e tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8aaea611 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8b60650c tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0xab45ae97 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb90f32f0 tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc5e0753b tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xda88ad9b tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xdb790fe9 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0xfb6b5f38 tee_device_register +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x2b3dc684 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x7855a7d5 int340x_thermal_read_trips +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x80c60a39 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x87d7dd00 proc_thermal_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x9a3efbd4 proc_thermal_mmio_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xb8525a0e proc_thermal_mmio_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xd0f385af proc_thermal_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xd35a8f63 proc_thermal_resume +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xe692d62e proc_thermal_suspend +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x09cf62bb proc_thermal_mbox_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x8fa578a6 proc_thermal_mbox_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x5bd963d0 proc_thermal_rfim_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0xb2c73b5b proc_thermal_rfim_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x27b2c3fb intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x7b6e3fed intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xa514f6be intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xd263ca2e intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x12f4903d tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1f1dfefe tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3ebc9581 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x41a6e92e __tb_ring_enqueue +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 0x501d1623 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x50675fc4 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x61af6a20 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x63f947f6 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x66859f74 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 0x7e4ff14b tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7f6cf66e tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x92f1eb1c tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x95bcbeb7 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa6b11d50 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa95ebe30 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xad12ffdf tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xaf4c6413 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbcf795a8 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc4a1d8dc tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xce9bbfe2 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd2d7027b tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xeede9a71 tb_ring_free +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 0xf81736e6 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfcab7a08 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/uio/uio 0x997dc3c5 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xbe59649d __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xccd9684d __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xcece5aa0 uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x07bdd675 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x366ee366 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x38fac9ad cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x4f837078 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x537c78b6 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x97c496b4 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9b8389fb cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa42bd390 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd43b4635 cdns_set_active +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf58ddf17 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6a13d023 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa146d568 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbcea0a3e __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd093d0a4 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf0b9fb39 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xfd243bc2 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x18797b3d fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x4cd8c668 usb_role_switch_get +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xab9318ab usb_role_switch_register +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xfcb5cd58 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x015de439 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x15352281 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1dc26105 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x504de7ea vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5fa7bde0 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x652c8091 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7ea4eeea __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9abfbcf6 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9e0bedf8 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x19dcbd4e mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x03082dd6 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x045d2194 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0dbacfda vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0ee68eaf vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x12c0ed33 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x14a3bc64 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1c32cde7 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2bc43c0d vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3c552bd9 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3db36b42 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x420700e8 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b1141ee vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4d8ac122 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x565ec226 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5df4ab3a vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x630bab43 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x63e87831 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x65232c5e vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x660a1df4 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6876feb3 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6881d6ef vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6c2f404e vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x704d2930 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x73cf7f54 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7605812c vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c5971d9 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x831cd933 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x83ef5515 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x84f10729 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x93a5e803 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x955c7087 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa1ad5888 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa25b796d vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa6d5867f vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb218fe5a vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc3480778 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8158b1f vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd1182f52 vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdd8dc5dc vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe6aed369 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe7a7ac36 vhost_get_vq_desc +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 +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x6bec0e66 vhost_iotlb_del_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x83be64b9 vhost_iotlb_itree_next +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x885512a2 vhost_iotlb_add_range_ctx +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x5758122d fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x886b8402 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xa27b1a62 fb_sys_write +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 0x8d7e5e5d 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 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x04f5b19d visorbus_unregister_visor_driver +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x0e338292 visorchannel_signalempty +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x4de03230 visorchannel_signalinsert +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x56401853 visorchannel_signalremove +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x72219d88 visorbus_disable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x8b518357 visorbus_read_channel +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xba2c1dc4 visorbus_enable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xc0807d6f visorbus_write_channel +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xc455c651 visorchannel_get_guid +EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xcf011741 visorbus_register_visor_driver +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x08dfabb5 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 0xa88fbf83 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 0xdb789950 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x18041607 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x491d0169 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6461774f nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9de5bbe1 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc451c46f lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd020ba4a nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe5f6aa6a lockd_down +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x019c59b0 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05997e96 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0629099d __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06b538b9 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07b9c9ce __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x080f20d1 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09a1e2ac nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09f378ca nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f146c17 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1307507d nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x135a0776 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13def30a nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14981162 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14d5ade7 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1536a371 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15f34ebf nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1678aced nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18a1b1a5 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19467cae nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e2d40e1 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x213228ba nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2141743a nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x217dab57 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22f4558b nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24118fbf nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25bff190 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bdc9f3a nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d1ee2b5 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d98a1f7 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f6eba54 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3399a5dd nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37239e6d __SCT__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3afac50f nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3df2a939 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e82bb3f nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f0f02ba nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x402c9736 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42d04e90 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4596ea11 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4611f398 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46f3e2a7 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b621aae nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c7ba6f4 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d3f8e03 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f12d3a7 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5366901b nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54bfdc5a nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57cf8db1 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b61071c nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c8cdb26 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d9c091c nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6161ed71 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61af4102 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62966bac __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62a056ed nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64c5f47a nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x660dfc71 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66b22cfb nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6776ba3b nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b69e2a6 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d417bea nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ff50ddf nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x718b69d7 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7847b30a nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x786c5ea5 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78a32b18 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cd44d47 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cedb04c nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e1329c9 __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fc86f5e __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8177bd50 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81f577d2 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83532a98 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83ed7b91 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83f69538 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8524a63b nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x855f8452 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x861d8b5a nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ac81a2e nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e623a3d nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x900000ed nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d9e54a nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9818c42b nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x985ba585 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c3921b6 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c8a83f3 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa04593fe nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4cafb08 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa79a8426 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa5009b0 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac43d141 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xace9466c nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf0f4679 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0b801ed nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3fc4fd6 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb57da510 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb600cd36 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb658fcbd nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6ffdde3 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb73c42ab nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8de56ea nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbac480d4 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbd3d798 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd4c2dbb nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd7a6028 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbffa9a69 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc159ef2a nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc15ed992 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6d5cc14 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc77ab9f1 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca5b9e42 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccad613d nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdd0ce14 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcde71e35 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0aa57a5 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd11e7667 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2337649 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2ec8d0b nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3b8ee7d nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3e5a611 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7883195 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8865654 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8ddcfb4 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae6be92 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc8bb0b9 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde872815 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf6d326b nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe12dbe3c nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2a67c18 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3679717 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe37ccbcd __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe83b9715 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeac53e20 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb1bd1df nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee366d42 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeecc3da9 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefa1a8c5 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2aaa09e nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf536bccf nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5597bbb __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8c2cc65 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9431bc8 nfs_lookup +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/nfs 0xff9a6e72 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffbeb147 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xf200054f nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06869503 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0847ced5 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0938b492 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a2c3b19 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a9ce309 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f2ac9ff __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1272a6f5 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x128f0401 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x136b1528 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17fb2d15 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x183c1090 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19a23d87 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b35d4aa pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f858980 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2036946f __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23218167 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23557f96 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x239f741c nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25515af2 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25b5d2f3 __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2613aad1 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27f5909c __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2933ed67 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c6d5d24 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2df46542 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x375eaaf1 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3bd442eb pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d52867d nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40e08d39 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41405a71 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x454e6670 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x469401a4 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a03e5fe __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b86fa19 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e35d148 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ebb4849 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55497ad1 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57617ef6 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5979314d __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63826d35 __SCT__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x653e42a9 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65cb3dce nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x662c882f pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66bed419 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x672a3e0d pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a5eb444 __SCT__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a925097 __SCT__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b76ea28 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6dc34320 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6debb2d1 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ef1ca8d nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70d657e9 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7120372f pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72d05367 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x734af830 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7361538a pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75723598 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77e98d90 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a78d059 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d040285 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e42bd3f __SCT__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7eddbbca __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ef69b84 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f0c88a9 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87c2d19c nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87e6c15b __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e0e84ad __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91bdb62f pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930a94fd __SCT__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96c4643f __SCT__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9714f46a __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x975e53b3 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x996773e6 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a2f3c74 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9affc203 __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ba0e44d __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9eea58f0 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4fe5c53 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa66e8bc3 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9a27501 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadeca730 __SCT__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae271b2d pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae51bc5e __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0b948aa nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb17444d0 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1c4c99b pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb260f092 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbcd1342e nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3830e3d __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3c34b06 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4d488e4 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7ac892a pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8f5724e __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd7c9317 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce4d1dad __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0725c9e pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4ec169c pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4f6224b pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb8c4e13 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe859a442 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea780cd1 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb1c637e __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebb0138d pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee35d490 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32fa2b7 __SCT__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf36ce97e nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf648b2cf pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9193d0a __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb6e581f __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe0d2488 __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe0dc1b7 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe81e479 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff78f476 __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x61b2ace1 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9865376c opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc56bbd37 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x3d45ec4b nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc5fa31a1 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd2009ea3 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xfdbe2aeb nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x5674f8eb nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0b06f30c o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x413db2c4 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4e45c1d0 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x51aa8ab9 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 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9f95ec88 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa5a9c43e o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa6aba01f 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 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 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 0x01442737 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x173e0b13 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2d648684 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3ab76575 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x56edbb1a 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 0x9b2dbe71 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 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 0x3932f4c2 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x54a25cfd 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 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc2497a20 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 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 0xfacd9b33 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x5b94cdcd unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x85f09d18 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x2f63e1c3 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xc011a0c4 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xabd9af6d cifs_arc4_crypt +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xc4c73891 cifs_arc4_setkey +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xceecd9e4 cifs_md4_final +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xdef1096d cifs_md4_update +EXPORT_SYMBOL_GPL kernel/torture 0x0c415256 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x0d535267 torture_num_online_cpus +EXPORT_SYMBOL_GPL kernel/torture 0x1205ef04 torture_hrtimeout_ms +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x2b3de84b torture_hrtimeout_us +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x42181939 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x52acfe88 torture_hrtimeout_jiffies +EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0x615c5465 torture_hrtimeout_ns +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0x71d2e434 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x759571e0 torture_hrtimeout_s +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xbb8ef471 verbose_torout_sleep +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4b45fb6e poly1305_init_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x7f376d08 poly1305_final_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xfa617389 poly1305_update_generic +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xaff2aa49 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xe6c74d34 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x1d29b9e1 decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x561835eb init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x63adbf92 encode_rs8 +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 0x09cfc535 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xcff57667 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x14fb9294 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x301b91af garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x46e8771b garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xae378b3f garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xdc595904 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xe1a3789e garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x00a0d8dc mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x22037031 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x59f31d0e mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x62d241bc mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xe874a71f mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xff15f4cc mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x783504df stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xfd61aff3 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x4d2ef113 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x81ed02da 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 0x43556eb0 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/bridge/bridge 0x1562a5c2 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x28b31022 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x344d0c1e br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3e8b5d88 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5a5149ca br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x702db808 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x74d3932a br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x781c959e br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8afe4db4 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x95513568 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9a172006 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa07956f2 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb1ebb852 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb3c8379d br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb4386237 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb442364b br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb8f75764 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd1734406 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe0f93eb1 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe8074b49 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf2afc1c1 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xff371642 br_get_ageing_time +EXPORT_SYMBOL_GPL net/core/failover 0x2fa8115b failover_register +EXPORT_SYMBOL_GPL net/core/failover 0xacdf221d failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xd6d50667 failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x089783c9 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e4fac9e dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1ff42e35 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x20b62732 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2150dac5 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x220abfdf dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x25a5a8eb dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x264e0411 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x26b6ce9e dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x34928477 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x38f371a3 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4c489a15 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x563d3a93 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x572f6866 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e56b8b4 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7600633e dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7aed1e3f dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c858fda 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 0x8af1390e dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x99c873a1 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0e54a14 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa23f4d88 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa428c372 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad0258ea dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad8edabc dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1ed0ba2 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb92dc048 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcb532a31 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd1e1badd dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd83b258e dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd883ba70 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe3caf228 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe89e0d32 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3982b43 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x26bf7edc dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x405d9666 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4465a670 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x51859f9c dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe5a1b2fc dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe5cc0020 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0490a3e8 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1daa009d dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x22476999 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x25e2dfbe dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x27aa47bc dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2f5953a1 dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x335ac84b dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4228fa66 dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5526115f dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5aca7e79 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5af96239 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5e2fd565 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5e34a39c dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x61a9b9e2 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x89de2ebd dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8c49afdb dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x95d99dc8 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9cfe335d dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa3ec43ab dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa6e4d1ee dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa8bcd383 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb81f2db0 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb85f1c99 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbd1072bf dsa_8021q_rx_vid +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 0xc3836442 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcc99f656 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd291b086 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdf1c6300 dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe46f481b dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xea985435 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xed6a6fa3 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf654214f dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf9c27477 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfe7cadf4 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x177de470 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x2ca01d32 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x61855ec8 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xed163a10 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ife/ife 0x26e2f496 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next +EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xc7c90721 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x23c23a3b esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xaedec84b esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xf85c1200 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x3182b5e7 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xdaa41f6c gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3b419d9a inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x52415a55 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5279a878 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x602808d4 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb4ea8e11 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbb46f620 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc7cacea1 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdd2c4867 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe8e78d0a inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x002de671 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x63fa432b arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x04dcee75 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x3f29a9e9 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x592f75ba nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xe9ed2e22 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0ba512f6 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x67abc9a2 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x880395e5 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa9b9e937 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xadff767d nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xaed8c7da nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd444a906 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xd2e6aabc nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x304fd58c nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xb2014faf nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xe86b51ef nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xa5fb419e nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xf1fe3f9d nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5ce19184 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9e9d028a tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9f1b78bc tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbb0c7dba tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf6d459ff tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x79d08ad8 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xa062f634 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xcc9728cc esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0a4e1790 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2ba837ab ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3f4c1d44 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x3eebe54c ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x0c2af6ba nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x2754feba nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x77727eac nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x09b5a68c nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x074291bf nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x07b5f681 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x20353c66 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x236a41e8 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbf8c7d01 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbfd63d7f nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd4df53fd nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x55810bd5 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x6163ecfd nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xe97edc86 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xfe3f768e nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x64648b38 nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xdb38f200 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x025baec2 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x057b5296 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0a1d6015 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3a5c59be l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x43e361f1 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x47a4f13c l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4e049568 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5eb42b14 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5f38c52c l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6d2a80a3 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa5416db0 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa7d396ce l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb65785c7 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc25e33f7 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd2833ab l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd13b453e l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd78dd004 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeab405a2 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xed98e31a l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeebba6ae l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfb10ad09 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x22a7177b l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xdfaa9686 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x032ac191 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x03eedbf8 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x28ec649d ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x31163134 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x49de8de7 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4d76cf66 ieee80211_iterate_stations_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 0x896bb9df ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x900750bd ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1628123 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaceec955 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad4a4589 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb60d7d55 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb8e79443 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe30ca0fe ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe7836429 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec01c80b ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec0ed32c ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf4cba065 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf54c481d wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf912decd ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x40047870 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x421f68c1 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x529fcce0 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x75c0abe0 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb2fe4201 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 0x37847414 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x45b0043f ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4b553a1b ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4cbf0678 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x559c950d 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 0x7aa2ee26 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8793f6bd ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8e137881 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x90022f39 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x93e5949e ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x99353f42 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x99a62cc6 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa400afac ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xadf4c200 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbb56a9f7 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xce9bf13e ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xda0b865d ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdf26fe54 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe3c5b78a ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0bbb9768 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1a3122d5 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3c3710a5 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9a7a0233 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x71bc9671 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x756e5400 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xec30c671 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xefff2ae9 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf6527d13 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02748441 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0495bc34 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0506fc4f nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x058d314f nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0708d0fd nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e43f7bf nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x132ec323 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x181ae095 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1963e8dc nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fe8adb4 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2078221f nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2397f600 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24aae5b6 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x273a872f nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2759ac0b nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27757eab nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28890b87 nf_connlabels_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 0x2fd30b7c nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3bbd7506 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d8875d9 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ffccdf1 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4051ea50 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40f35aac nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41c8c20f nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4284594c nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x428bddf3 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4457ccbe nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44cc3f4f nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4823726f nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a72377c nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4aae73d6 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e54a794 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x522a2a96 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59977383 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5df4a6d3 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6117646b __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x697f6419 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c8990f8 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e3fc64e nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x732e7c49 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d710e22 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82fbf8d1 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x835a9b77 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8699f8b3 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86dc1859 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ce66056 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x904566d5 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9169a6de nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x938b3c9c nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cf85f85 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4aa358f nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad91f00a nf_conntrack_helper_try_module_get +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 0xb559d616 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbca46f1d nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc308db31 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc326b915 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5727b47 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8de583a nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca7247bc nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccce39b0 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcdc13bde nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3a42852 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3dfeb32 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd73c072b nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8db8cb8 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9305950 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9ea955a nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdaccf6ef nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde78d3a1 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4510ec2 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4841b0d nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe65d079e nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe821720a nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe9edbca8 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xefbf55a0 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf102beb7 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf58f8297 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7cba958 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9f500e2 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfcaf6ed1 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd00f6c5 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x3b62d4f2 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x39102ab3 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x548a47d1 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x17159448 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1fee03a2 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x344abbc9 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x38cf8956 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3b50f4d0 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3b8f1c7e nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x53fd4bb6 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5bc223e2 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x664ee272 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa0305a30 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x318d8951 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1a01b179 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6a934ad3 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x70ff5a39 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x97fca351 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x442a6237 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x47180f1d ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x64de0f55 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9cbee6f3 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd972f1f9 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf01b9749 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf8a4413d ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x9fedfb53 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x6eb1eccc nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x438d54b2 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x64abc39f nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x6ba84064 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x19e7f92b nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1f4a3961 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x20b59dd8 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x279ba236 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x35472a89 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3b71dfbe nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5528aba3 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x617b1be9 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x67817078 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x75685107 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x81691a1d nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x87032959 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9a4eaa91 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9a77e299 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa9d1dff2 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd7d12681 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xde8d5045 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x01ccc25c nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1cfe9322 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x27e40e5c nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bcef832 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x491eecfd nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x53fd77ba nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5ef7bb78 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6f57c53c nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x883ae0c0 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x950d438c nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9b4b7137 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9ea11585 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb78648d6 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd596de35 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe80226e9 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf0624081 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0e08990d 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 0x34fcf635 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3d348894 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4a28d4c3 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x69d6eeec nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x69e38533 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6b4e561a synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa4c04436 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb1e248ea nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb98f6270 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xecc85033 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x057bbe07 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06395fec nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0b7bbd3e nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x111000f6 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x14707cfa nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15b6cacf nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1708dedf nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x180916ab nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1acc3106 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2291f613 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 0x3d79851e nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4bddb4cd nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e9b34d1 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x509a6298 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5eaf2565 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5ef666a4 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6667cacd nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6983b1d5 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x895f11b4 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b5ae838 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x968839bd nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x971e139f nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9828a904 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9e0b994c nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa070110e nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3bd62b8 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc1ba1547 nft_set_do_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc23cd9bb nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd881baeb nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd96a6ac6 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd2b0c10 nft_meta_get_eval +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 0xe2c37bf7 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe54d6284 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe5ecf5b1 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe85c73db nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xea7d3ef2 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeacb3acc nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf3e23f54 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf8d2cfe4 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x651caa37 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x706b1f58 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x723589ce nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x92960088 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x984cc2a8 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa73e15a4 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc38e0329 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8417e58a nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8de6a926 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xfbf641fa nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xc4285b13 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xf5c54354 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2c3e21a8 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7892697e nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xac213f4f nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe3f626b8 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x02379107 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x15f7d5d0 nft_reject_init +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 0xdb599f69 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x11938a49 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x12940bbc xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x134b8a9a xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x138d6013 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2d426ac8 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x33a0f5ff xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x38aa99cf xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40349d63 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x56771939 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x57ea8bcd xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x60a48845 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x633fc63d xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x82b20a59 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x907334af xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9d8c5c65 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb2a38567 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xba9f987e xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc1ca3a17 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc4c37f91 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd84ca116 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdaf5b365 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe9bcd74c xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe9d6ae8a xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x752ab345 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb78f806f xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x22226b65 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x66567453 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa5ec36b4 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x836190eb nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xab551fa2 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xdd96e68b nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x65c5f419 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0xc91bf5a5 nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x037ce203 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0ce918a1 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1b36f084 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3f96e853 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8b9c7a36 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa5ccd748 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/psample/psample 0x07f520ae psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x6f58c68f psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xbcc6e04e psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xf47e36a2 psample_group_put +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x127a81a1 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xdb099c27 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xfb60f29a qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/rds/rds 0x0033c8c6 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x10e171d0 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x17b1c3d9 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x20c5e653 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2ca50d7e rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x332deed5 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x34b02ceb rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x55c2cb4c rds_send_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 0x61293bb4 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x64101d42 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x69d6acc1 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x77c3da39 rds_rdma_send_complete +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 0x87e2754b rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x8ef67561 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xa5b7069a rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xa96b8dd8 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xb3d71ca1 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xbc6819db rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc29e3d79 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc4799faf rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xd557ae46 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xdba63f12 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xde9dc60b rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xeabb1632 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xf16ecf0d rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xf7b4038e rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xf8a0355b rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xf96c7096 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xfbe71099 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x015cdf68 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x5ce34339 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +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 0x160cd762 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x571654b2 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x623d0def sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xb463aae1 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/smc/smc 0x0dcbe831 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x34d6a177 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x5653f9d3 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x62751f39 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x7224db05 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x7deecc5e smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x87c91d70 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x9bfb2bbb smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x9bfbad0b smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xd8024591 smc_proto +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x245e7726 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2848337e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2d3448fa 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 0x80c2b00e gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00315632 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01e7ec27 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x021c3ea1 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0573af89 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05d700e8 rpc_call_start +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 0x06bc3c21 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ac22a7e rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ae495de xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c131a49 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d6d4012 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0efb5a44 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fbf6133 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1024653c xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x105a456c xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x105c57a0 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11e96712 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12c523c0 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1373d1df sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14237f5c xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x143170a5 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1488fbb0 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1506e7d4 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15a26c2d rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15c14012 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15cd0582 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x178e06a2 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x194ec644 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19c3307b rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b000aa0 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f07515f svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22ce9906 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x231dbd4f xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23a94e2d svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x245cff96 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25fbd794 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27456a94 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28b697de xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a1721c3 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a2ab247 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a83f7e0 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b2baa9a svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b5120d8 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c6b833b rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fd64aae svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30ad83d2 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31622bd0 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32c9d633 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x337304f8 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34a6b09a rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x360a730f xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3680699f rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x374a8da9 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x374dbd8c svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x398658ef rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a27d267 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a7452b5 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d7c8f9c svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x414384bd cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43c93d62 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x451ecaca svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49129e42 svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49879f5f svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4b9d3d xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aa85405 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b3a67b9 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bfd1d40 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d506037 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e64ab67 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e9bec59 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5312d13e rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5420e447 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5562ef42 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x569dacef rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56bdf89b cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5799f0d8 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57e5031d cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x590e5e4f xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x591cfe96 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cd4ef2e xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d893a44 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e5a62e9 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eb096eb rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60114d87 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6026d18b rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64960a73 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x649e3993 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64c5edef svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x654b36c2 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x662a9e0f xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x663b0754 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x686a1faa xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x687d81c6 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68ae2af9 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x691e3e1e _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69600496 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b550541 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c20c033 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c5bbce3 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6df15980 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ec36c73 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x706164fd xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x712ea6ec rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71866b46 svc_seq_show +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 0x7200d25d rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72315958 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73e8af60 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7599cb93 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7834a583 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78a5f7f3 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ab42652 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b748a4e auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dcafd8d rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f464031 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f48954d write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81b826d1 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82381f9c svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82d04e65 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8307c979 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85bc3cab xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89d6f414 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89f06929 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8acb0f12 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c094126 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8de839ae rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f87daa5 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fc9c934 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90b54fa5 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93a67588 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95693584 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x963167cf rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x966a26e6 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x966c1988 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9948587d svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c33af77 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cb0b583 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9db8e41c rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dc9bd0d svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ea30e58 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa03ee8d0 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa064cd6d svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa106c421 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1ae59ec xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1c12228 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1c8ea48 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4ea1255 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa618c5be svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa68e6b94 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa79f8122 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa841764a xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa89126d0 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabe68799 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac8f0525 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xada1cfca xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadc0a4b3 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae0d9c5e rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaef187c5 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaefa089b rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb09de68c gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb14c50f4 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb22488bd svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb274c402 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2cdb3b4 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8de42ba rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba8c682a xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbecfe72c rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf275636 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc08c4201 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc23b8ef5 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc282d6e0 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4588ea9 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7480cb9 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7626c8f rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7a54ce3 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc991e394 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9ca570c xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca76b603 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc0a920f xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc2a30d1 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcca88a14 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce431e65 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd062ab12 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd06ae6d1 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd072c039 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd148d14f rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3272bbf rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd32c699a svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3373b2b xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4dea0c2 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7184da0 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7a66155 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd89767fa xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8d40b91 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8fb854d cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd982d917 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9d3e59d svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9f52749 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbceea2f svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd169054 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddd17b5e unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde8681ac svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdeef11a1 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdffc3809 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe09d6a99 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1f31cfb xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe336004c read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe40190fb rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4641c48 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe543a664 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe640a63d xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6972d0b xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe753194e rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe94e71df rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec0418f6 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xede979db auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee92fdbd cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0d2d64 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf260294c svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf327df2c xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf41f2550 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf59837d1 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6b672a8 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6c52449 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6f5e160 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf70c53ab svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf81498df rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9f512bc rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa7d0a9b svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb812226 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfba5d212 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc44eb21 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfea2bbb2 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/tls/tls 0x6e4c61e0 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x8e8ecdbf tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xc5145da0 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xf8016d02 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0cc399ef virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0e7c4a46 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0fdaeec1 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x127aa8af virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x17bbd6fe virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1bca0114 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1f5179e6 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x25b71e60 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2bb71f53 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x31055fd6 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x49338e55 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4a4d30d9 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x55a6f656 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5b5049a4 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6c6a5e3f virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x74b2b6fe virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x785c9cd9 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x825128bd virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x87662aa1 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8c5873bc virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x99dff12d virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9a61ec87 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb24b1aad virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb7e5e691 virtio_transport_get_credit +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 0xc23f9183 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc9ae02d0 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xda0db27e virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe626f769 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xea59a08a virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeaa77411 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xee1f82b1 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeec7da53 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf3e6d87a virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf6df8a32 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x03070dd7 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x16c6f1d9 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44ebf7a1 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x62efac88 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6bfe77d5 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6eb3ce95 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x726f8c83 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8eda661c vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9672c47b vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9f3c0749 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa33da259 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xad2787f5 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb22fde68 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbf6b2dec vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd38856c4 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdcafc794 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe949b94f vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf97b261f vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfb7256b9 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfd6b2a80 vsock_core_unregister +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2d6b1681 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4eef93da cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x80db8845 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb3836ec7 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcee45a10 cfg80211_pmsr_report +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 +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +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 0x1e764bd2 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x321c61eb ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x38156c22 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x614a7fd6 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/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 0x4b5c707a snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0x5081ef1e snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x7c4238da snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x88712ec3 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x934ef45d snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x971ad14c snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xa06b1b8c snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0xb0ea8453 snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0xb51f3cba snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xcc4ac6a3 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xd18a2dc6 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0xddd6fa9e snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xe55c076c snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0xe61b94e7 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xf79a3255 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync +EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x02bc47f1 snd_pcm_stop_xrun +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 0x143b7d8f snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x21f70e5c snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x240bc0c5 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4478ef48 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x58b8c3b7 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5a4f3a00 snd_devm_alloc_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5eee41d3 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x679b2c3b _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8f47d997 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa751361a snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x4c3d5a9e __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x61bdc7f7 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x000af9cc devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable +EXPORT_SYMBOL_GPL vmlinux 0x003df210 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x0044f5bf cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x0050e598 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005b663c virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x0061d166 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x0062125e regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x006b6ff1 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x00748c55 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x0075d01e crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x00797134 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00997e5f user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x009b957b mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x00b168f3 blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x00b1e7df inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x00c6ac9b rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x00cc2cdd get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x00cd3f93 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00d81356 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00e7cc84 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x00eb739e perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x00f24821 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x01033ab1 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x01101bbd sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x01270475 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x013a63e0 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x01424785 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x015e1926 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x01666bc3 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x0169e4c4 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x016a4f20 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x016ca6ff devm_bitmap_zalloc +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 0x01943add gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x019c0337 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x019c5d89 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x01cebb38 _copy_mc_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e9932b regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x02016270 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x0202a730 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x0205c882 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x02166657 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x021bc062 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0232d03e dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x027357e8 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x02754ba0 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x0277eff6 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x02891780 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x02b0801f pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x02c5f047 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x02d2dfd0 __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x02e11d8c device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x02e4f2d4 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x02e56ff3 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x02f1dedf ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x02fc8d7f __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0x02fce574 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x02fdef87 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x02ff8f65 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x0302efe9 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x03111a04 ip_tunnel_rcv +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x031c79ba scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x032f18a2 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03553082 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x03670e04 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x03908a5b bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03bac46a serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c1c035 acrn_remove_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0x03cba21e desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03e2d5b0 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x03e5c9bc crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x03e8b93b __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x03ead289 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x03ed2c9a ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL vmlinux 0x03f86768 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x03fb9cc9 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x040165cd dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040eaf7e __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x041b980f wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x0424c6e1 acpi_nfit_ctl +EXPORT_SYMBOL_GPL vmlinux 0x042522f2 sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x04340877 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x0437c4a6 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x0439c2e9 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x044a0f90 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x044aa10e rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x044bf74c pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x04599779 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x0464ad1b regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0467f4ef query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x047a4c5e cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c3500f vfio_group_iommu_domain +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04da872d bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x04dd0b59 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e75e84 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x04f8012c ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x04f977f6 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x051def99 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x0538dc1f scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x053aa354 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0550f762 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x056ca6e1 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x056fe6d1 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x057e8070 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058cd3ff blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x058db806 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x05ac12dd tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x05b18d01 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x05c59fd6 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x05c5eba7 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x05cf2c0d dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x05d6e317 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x05ddce6a devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x05e3c97b __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x05e653d2 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL vmlinux 0x0608598e bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x060ae6d1 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL vmlinux 0x061d4748 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x062e719b kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x0645b549 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x064742a7 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065a2ac4 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x068144ae inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x068532b5 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x06861f26 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0688e8aa gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x068c1e8c mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x068f2f1c pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x06c935e0 msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06d942fe fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x06ed051c edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x06f526db pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x06f8067c device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x0707019a context_tracking +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x072afee8 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL vmlinux 0x0738f68e device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x0753518d platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x0753cc4e kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07830d94 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x07a2cb3b devres_find +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 0x07b6d78f devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0x07b7b69a regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07c23e39 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x07c27f44 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x07c9516f irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x07dd3031 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x07de2ec8 debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x07e15ed1 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x07f80d73 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x080407c3 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x080b909f devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x0842fa87 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x084344bf ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x086e282f component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x0874a011 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x087c13ec put_device +EXPORT_SYMBOL_GPL vmlinux 0x087d494a ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x088fd410 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x08b79dbd regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x08c23ecc fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x08c565b3 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08fecc4c pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x090942fa sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x090d665e pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x0913dcdd crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0925493f clear_page_orig +EXPORT_SYMBOL_GPL vmlinux 0x092b75c6 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x092f173d dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x094e7782 nvme_complete_async_event +EXPORT_SYMBOL_GPL vmlinux 0x09624a07 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base +EXPORT_SYMBOL_GPL vmlinux 0x097208fc virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x0974bb49 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x097ddc04 context_tracking_exit +EXPORT_SYMBOL_GPL vmlinux 0x098745b8 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x09a5044f irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09b8bf47 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x09cf9342 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x09dbb8a7 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x09e18d63 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x09f19baf tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x09f50f32 rcu_nocb_flush_deferred_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x09f512ec bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x09f8b6c2 sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0x0a17e1f9 devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x0a4b2ca8 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x0a4e034f __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a5bf122 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0a5d964c crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x0a6216bd fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x0a6b6d48 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a95ac4e sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x0a9c0b8e pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x0aa22c74 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x0ab2c493 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0ad05c7c vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address +EXPORT_SYMBOL_GPL vmlinux 0x0ad3a08a debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x0ada12c4 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b151342 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x0b20dd3a pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b4955fd vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x0b4ed3f7 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b55d1c8 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0b5619c5 switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0x0b58c2c2 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x0b637c74 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x0b9127c2 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x0b914240 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x0ba2bbab __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x0ba9e1cd pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bbeaeba uv_bios_enum_ports +EXPORT_SYMBOL_GPL vmlinux 0x0bcf778e l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x0be16848 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x0be1a4d8 amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c03fdd6 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c34d6cf security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x0c3f0f47 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x0c4948c3 vxlan_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x0c54cff7 __SCK__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x0c5dcc70 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0c60f789 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x0c7b7586 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x0c7c758a driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c8b308d debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x0c9af06c irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x0ca01fcf __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x0ca31dae rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cf07ff9 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x0cfe59cb hyperv_fill_flush_guest_mapping_list +EXPORT_SYMBOL_GPL vmlinux 0x0d01b04a spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d133dfb devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x0d1da30f pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x0d241a7c vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x0d2a996f iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x0d2d3ee5 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x0d342601 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x0d38dd81 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x0d43b940 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d71a1d1 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL vmlinux 0x0d7b1515 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x0d7bcaa5 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0d8311b0 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x0d838737 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x0d85b643 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x0db1b6ef vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x0dcb4665 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0ddadea2 __SCT__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de5b244 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x0dfe75ce do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x0dffa52e dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x0e08612b kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e1fc8ef __SCT__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0e25362b iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x0e584e3d dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x0e58c248 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e6de920 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x0e7c6e0e crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x0e7e2994 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0e92e151 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x0ebfeb22 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ec4e47f hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x0ed8e0e6 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0x0eeae3e8 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x0f02d493 __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused +EXPORT_SYMBOL_GPL vmlinux 0x0f0e970a usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x0f11f051 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f26fd87 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f68f614 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x0f6a1c2b tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x0f6a4f40 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f743a40 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f96e216 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x0f9c5386 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x0f9fc04e uv_get_archtype +EXPORT_SYMBOL_GPL vmlinux 0x0fa49d5c sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0fa6e87c ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x0fad2b72 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fbe4ae5 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fd6ebd5 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x0fe798d0 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x0fece2eb mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x10039a8e dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x1005d60b tick_nohz_dep_set_cpu +EXPORT_SYMBOL_GPL vmlinux 0x10086db3 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x100991f8 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x100dea98 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x10111e85 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1018b857 dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0x101c183f pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x102467f6 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names +EXPORT_SYMBOL_GPL vmlinux 0x103bab8f alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x10577aec blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x1071abdf inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1088a5e2 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x1088ea76 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x109008e2 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x109fc8d3 vfio_device_put +EXPORT_SYMBOL_GPL vmlinux 0x10b7c3b0 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x10c24695 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x10cc4574 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x10d334a2 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1154ae0b tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x1156294a vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x115d6d8a iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x116180b5 hv_current_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x1174b99e __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x117d5a30 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x118fc754 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x1191d2ee devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0x11927fbe usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x11981664 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11a7ae29 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x11caed2a events_hybrid_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x11de0037 crypto_shoot_alg +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 0x11eae0b1 __intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0x11f91d5f rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x120cdd71 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x12189359 __SCT__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1229d00f crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x122b35eb anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x123eafa4 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x1244eb54 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x124e3937 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x126767a6 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126f724f __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x126f8420 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x1270c510 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1272a4c2 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x127c109b __SCT__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x128124df nvme_disable_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x12889e3e ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x12974f91 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x12bb735a dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x12bc34ee ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x12bed58b alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0x12c05495 ip_tunnel_lookup +EXPORT_SYMBOL_GPL vmlinux 0x12cf81bc phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x12db3a8b kvm_clock +EXPORT_SYMBOL_GPL vmlinux 0x12e285ec is_uv_system +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12fa21b6 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13073d20 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x13121de8 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13223af5 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x13242834 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x134c218e crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x134f60ca debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x13525c94 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1377f447 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x1388db1a iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x139095c4 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x1398fabc power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x1399c13e set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x13b405ee __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x13c3ff27 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f348a9 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x14081688 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x143320fc cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x14365c3e fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x143ce29c acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x144e23aa crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x14566173 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x1458c888 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x146eacf1 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x1483939f clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x1488dcd7 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x148ed96b sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x1494337f tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x14a976ed ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x14aad932 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x14b621d9 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x14c000e9 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x14c2af7e devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14c8dfb3 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14d1f003 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x14d2d8fb fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x14eb451b rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x14f7f944 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x15046184 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x1506d38e dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x150f3b07 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x15260493 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15498f58 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x155b8d55 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x156e8afe __SCT__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1579573a kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x158b354a blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x158bebda pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x1591b2c6 hyperv_read_cfg_blk +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15b3340d vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x15b55173 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x15cc30f1 cc_platform_has +EXPORT_SYMBOL_GPL vmlinux 0x15cf0ba3 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x15cfa6f2 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x15ea0b9d nvme_enable_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x1603c53d mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x1617c776 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x1618920d crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x163b9a48 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x164009bf regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x164f68c2 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x1650d4b2 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x1652b5d9 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x1655f142 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x16768dcd ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x1688efdf dm_put +EXPORT_SYMBOL_GPL vmlinux 0x168c3ea5 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x169775ef __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x169a11d9 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x169a3899 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x16a51b2d bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x16ae93d0 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x16b3ed99 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x16d49c3c irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16de1f6f pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16feb550 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x170a2dba usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x171337a6 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x1719e5fa nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x171ddfee wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x17345c3f __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x174251f2 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x17558b0e ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x175ca264 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x176d4bd2 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x17726600 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1773ffec rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x17760948 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x1776a1d1 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x177ada6b spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x177ff650 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x1780172a devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x1782334c usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x17940f87 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x17987e13 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x17ab7caf wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x17c5526c dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x17d82c2b vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17e822c4 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x17fddb34 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x18060d92 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x181fcdb1 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1825291d subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x18274e6d devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x182f88e8 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x18339423 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x18603938 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x18790ee8 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x188dfc2e ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x188e8531 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x18952848 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x18b2790f uv_bios_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x18b54b81 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x18c79344 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x18d67766 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18fa1e4c rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x18fcbede badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x191032b4 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x1913b57a kcpustat_cpu_fetch +EXPORT_SYMBOL_GPL vmlinux 0x1920a8e6 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x1920aa95 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x19351847 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state +EXPORT_SYMBOL_GPL vmlinux 0x193fc57b find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x19453041 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x1951f410 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x1955608c nvme_cancel_tagset +EXPORT_SYMBOL_GPL vmlinux 0x195d44d5 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x19634e1f switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x1968e331 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x196bb8e5 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x1976760d init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x197e1b07 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x198b3a66 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x198cd337 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x199425e3 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x1997456c fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x1999be82 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19b4e00c phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x19d51267 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x19e0ae50 __SCT__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x19fc1376 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x1a018d9d attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a1ccf0d tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x1a2fe42e hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x1a445b2e vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x1a4a8aa0 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x1a5bd1df regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x1a5e8cb2 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x1a5fdff3 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a9754cf sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x1a9c0e37 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x1aa0e98b handle_irq_desc +EXPORT_SYMBOL_GPL vmlinux 0x1aab0cff tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x1ac20a25 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x1acb0258 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad780e0 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0x1b00dfca ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x1b0d0391 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x1b1e02e2 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x1b217e48 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x1b28fe54 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x1b2fb34c balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x1b3e1f65 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x1b42eef4 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x1b44807c device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x1b4fc482 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b7ffbe8 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8e1f04 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid +EXPORT_SYMBOL_GPL vmlinux 0x1ba6b6b2 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x1bc1c883 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bcf1bf8 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x1be70622 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL vmlinux 0x1bed573d blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1c077ee7 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x1c404f44 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c6819a4 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1c71ce37 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x1c754a37 usb_get_hcd +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 0x1c9be343 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x1ca2f962 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x1cb0d290 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cbd8ce1 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cc2bf2e __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x1ce62765 vfio_pci_core_request +EXPORT_SYMBOL_GPL vmlinux 0x1ceae696 setfl +EXPORT_SYMBOL_GPL vmlinux 0x1cf93533 nvme_host_path_error +EXPORT_SYMBOL_GPL vmlinux 0x1cfbe5ef pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x1cff74d8 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x1d05b3b4 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d34e996 pp_msgs +EXPORT_SYMBOL_GPL vmlinux 0x1d3b9c95 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x1d4124e9 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x1d44960c tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1d51eba9 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x1d56ca29 md_run +EXPORT_SYMBOL_GPL vmlinux 0x1d696874 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7f26ad usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1db1e9a7 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x1db96feb fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x1dbdddc2 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x1dda2b7e __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x1ddd29fc __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x1ddf4edf vmf_insert_pfn_pud_prot +EXPORT_SYMBOL_GPL vmlinux 0x1debcab8 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x1df899db cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e15575e bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e42e0cf blk_ksm_is_superset +EXPORT_SYMBOL_GPL vmlinux 0x1e491fa8 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x1e4b0169 iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x1e5b6620 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x1e5d6d29 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x1e5dab9f nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x1e73e366 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7e60bb rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x1e7eb816 pci_user_write_config_byte +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 0x1ea14bbe trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x1eadec6f ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x1eb1250d udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec580a7 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1ef84079 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f142f98 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x1f313229 ip_tunnel_dellink +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f52a20e irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5ece97 cond_wakeup_cpu0 +EXPORT_SYMBOL_GPL vmlinux 0x1f6a3821 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x1f702a64 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1f831240 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x1f832f27 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8aa42b regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fa24edd sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1fa8ee7d ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x1fabfb27 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL vmlinux 0x1fb23b59 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e5d6 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x1ff85ba3 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x1ffa9578 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x1ffafae0 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x20165016 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x201bd0f0 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x2021a5a7 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x203b09d2 devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x2042a470 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x20489e48 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x20619177 fpu_alloc_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x2074689e acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x207f90e6 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr +EXPORT_SYMBOL_GPL vmlinux 0x208da646 devm_acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x208ee991 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x20926611 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x2092e178 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x209bbe31 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x209ead9e devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x20a6db5a devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x20b34ca4 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x20b9d2f1 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x20bc5c3e vfs_write +EXPORT_SYMBOL_GPL vmlinux 0x20cb7b22 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x20e5cc47 hv_pkt_iter_first_raw +EXPORT_SYMBOL_GPL vmlinux 0x20ebe767 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x20f2c470 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x210b089f pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x21143f54 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x211715f0 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x2119a27c kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x21249e9a uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x212bfd41 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x215509bd xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x21711965 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x21960167 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21bd059c regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x21bf135c regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x21c55209 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x21ffaeeb crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x22042929 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x220d062e nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x220ea27c posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x221394ae hyperv_reg_block_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x2222770b debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x222e96a4 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x223be722 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x22411e02 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x2252b5ac rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x22534b43 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x226cfec1 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x226df0ea pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x227f8544 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x2283d929 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x22b0d9f7 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x22b985e9 vfio_pci_core_write +EXPORT_SYMBOL_GPL vmlinux 0x22c53055 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x22cce752 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x22d19ce5 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x22d52913 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22dac36d css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x22ed62de usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x22fd6fa2 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x2302d554 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x23034fb5 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x23278f45 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2330c86e __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x2331eac2 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x2333dd84 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x2336ee6e ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x233b2f13 xfrm_unregister_translator +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x2346617f usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x235671b2 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2358d3a7 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x2365e741 devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x236a6529 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x237109de acpi_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x23724cc5 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x238623e4 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2386c0ea __SCT__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x23901a92 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23996db1 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep +EXPORT_SYMBOL_GPL vmlinux 0x23b6a2e6 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x23b6f541 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x23b9720d fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x23ba32de __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x23dfe777 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x2410c338 x86_virt_spec_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x24196afa iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x241f5611 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x24360bd8 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x24591218 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x24707daa of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x24845138 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x24a25015 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x24abe633 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x24ac6cc0 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24b2093f dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x24bfb0d1 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x24c77d19 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x24d9232a __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24e47bd4 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x24ea4e5a is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24efb5ea evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x24fc1e73 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24ffb6d3 device_create +EXPORT_SYMBOL_GPL vmlinux 0x2518303b blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x251f720d ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x25370f14 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253c4099 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x25487615 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x25661a9b pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x257b4e5f edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x2580efea crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x258f0582 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x2597159f yield_to +EXPORT_SYMBOL_GPL vmlinux 0x259b8baa nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x259c1a71 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x25ae30d4 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25cefaf2 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x25e95892 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x25f2f9e8 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x25fc64b1 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x263b9a89 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x263ccfef iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem +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 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2671942f acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2696309f usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x26a835c7 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x26a8fb00 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cd4029 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any +EXPORT_SYMBOL_GPL vmlinux 0x26cfad4c agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x26d03493 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x26e6c173 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f839fd usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x26fafbe3 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x26fd13e7 smca_banks +EXPORT_SYMBOL_GPL vmlinux 0x27058781 wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x270a2e1a tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x27173d66 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x272022b4 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x27274e8f platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2728548c __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x272a7fc6 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x273aff5c __SCT__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x273e2382 __context_tracking_enter +EXPORT_SYMBOL_GPL vmlinux 0x273e6030 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x27597363 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x2763fa4b blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x276dd92a pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x276df968 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x277eb8e9 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x2785135f __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x27ba09df cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x27c415b6 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x27c8f824 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x27ef82de blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fc0a71 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x27ff6384 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x27ff7b3d clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x2805f005 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x281dad2b pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x2870cca2 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x287446e8 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x28785456 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x2878ef64 __vmbus_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x289070a2 alloc_dax_region +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 0x28be0cef misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0x28d87421 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x28dfc3c2 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x28f0db02 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x28ffe4dc crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x29075a93 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x290de259 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x29366b61 register_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x2942efc1 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x294336dc _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x294b9209 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x2962b5fa serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x296942e5 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x29b87189 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x29c184e1 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x29dd55ba debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x29e10c39 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a1c5b58 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x2a27883c pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x2a29857e __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2a4e6da7 usb_autopm_put_interface_async +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 0x2a6ced7b devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x2a891c41 nvme_stop_queues +EXPORT_SYMBOL_GPL vmlinux 0x2a8af55a acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x2a9f2b41 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2ab81c74 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x2aed7bcf ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x2aeea32d init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x2aeeba8f nvme_sync_queues +EXPORT_SYMBOL_GPL vmlinux 0x2aff68f9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x2b1ec748 hv_pkt_iter_close +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 0x2b450ccc balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x2b5ac0ed vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b67aa5e __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear +EXPORT_SYMBOL_GPL vmlinux 0x2b6a7c05 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b72f4f4 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x2b7a0808 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x2b7f08c6 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x2b856338 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2b9fe22d kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x2ba56c20 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2bafc66a __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x2baff687 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x2bc49a81 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x2bd166bd devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x2c1f96f0 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x2c1fd1ba inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c369cb5 user_update +EXPORT_SYMBOL_GPL vmlinux 0x2c560a34 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c592bbe __traceiter_pelt_irq_tp +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 0x2c71593d ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c940be3 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get +EXPORT_SYMBOL_GPL vmlinux 0x2ce724f8 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x2d019639 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2b1b84 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d393f48 intel_soc_pmic_exec_mipi_pmic_seq_element +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d44be3b __SCT__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2d5035da gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x2d523353 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d741d51 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x2d7472d4 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x2d749fc4 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x2d81387f irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x2d859648 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x2d89b1ad __SCT__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x2d8c8500 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x2d917ae0 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x2da816d2 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x2daa9035 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL vmlinux 0x2db398a6 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x2db74bd4 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x2dc346e5 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x2de7b941 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2dfbb22c iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e0d8003 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x2e140cf4 clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e28a1f0 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2e291bc2 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap +EXPORT_SYMBOL_GPL vmlinux 0x2e4d88a7 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x2e5e5240 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x2e670427 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0x2e7a17d4 vmap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x2e861ec3 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x2e86e69d ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x2e9378ef dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x2e9e5003 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x2ea08cf7 mmput +EXPORT_SYMBOL_GPL vmlinux 0x2ea6e28d task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x2eaa2d47 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x2eaed3b6 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x2eb9e085 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec6a0ee gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x2eca2999 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2eda4807 is_uv_hubbed +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2eeedba3 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x2efcf399 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x2f0c0d77 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1590e4 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x2f286c37 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0x2f2b5b23 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f4b5e54 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x2f4ff940 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x2f5b1d6c regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x2f637259 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f72f1f2 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2fa2a894 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x2fa3d042 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x2fa65383 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x2faa3805 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x2face89e power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fdbc831 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x2ff6a0f4 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x2ffbfff5 nvme_init_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x30124f64 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3018cb61 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x303c5acc nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x307373a5 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x307f9106 vfio_iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x3088c928 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x308ec7ce sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x30adbe1f wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x30af03e3 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x30c0103a cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x30d0af3c lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x30d2b539 acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x30da88bb pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x30dbe367 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x30e05815 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30e42163 tick_nohz_dep_clear_cpu +EXPORT_SYMBOL_GPL vmlinux 0x30e46a90 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x30e78fda irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x30e92723 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x30fbe7ce unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x311a64aa ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31273ab6 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x31300675 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x3132eedd crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x3149cac0 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x31598b87 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x315f3efc pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x31706316 __SCT__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x3198bd55 __SCT__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x319c10f7 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x31a6694e pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d49ded get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x31db3896 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x31dcb7f0 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x31e2e77f vmbus_free_mmio +EXPORT_SYMBOL_GPL vmlinux 0x31e414d6 device_move +EXPORT_SYMBOL_GPL vmlinux 0x31e7b504 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x32011461 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x320190f6 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x32083674 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x32084cb4 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x321055cb vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL vmlinux 0x321d0d1d gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x3229ef16 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x323d7914 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x3286e006 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x32889741 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x328c1829 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x32908d4a synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x32a372ca devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32b0c790 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x32b688c9 pm_generic_resume_noirq +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 0x32d50a21 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x32dc048f dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x32dfd146 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x32e4d1e0 sgx_virt_ecreate +EXPORT_SYMBOL_GPL vmlinux 0x32e701ec virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x32e92c40 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x33044752 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x33121bef inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x3328581f devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x332e9f0b check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x332f9359 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x3332e1c6 iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x333d98c9 vfio_pci_core_disable +EXPORT_SYMBOL_GPL vmlinux 0x33490bd7 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336d828e __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x3387433c perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x3391f34e scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x339cc9f3 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x33a680e6 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x33b0679e device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x33b6520c crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x33d2dc1f dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x33d3ba25 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x33dcf888 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x33e91029 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x33e92de5 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x34374cc7 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x343af395 nvme_change_ctrl_state +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 0x345b1183 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x3461be24 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x3466ce63 x86_msi_msg_get_destid +EXPORT_SYMBOL_GPL vmlinux 0x346f47e8 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3474fb5d regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x348257ed __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x349566d2 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x3498e094 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34a86b5f cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x34aed260 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x34b6053a __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x34c1426d devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x34c7e6c4 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x34e4abf0 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x34e7c2af dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x34eff6d9 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x34faed39 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x34fc8057 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x350c6731 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x351353ab tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x3513e216 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x35237dcb dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3543be4f dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x35464fb2 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x35604fc2 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x3560c17d xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL vmlinux 0x356d09a1 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3576f75e rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x35813be0 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3598a4d8 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x35cfac72 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35dfc466 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x35f43770 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x35f5a92a crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x35fa5819 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x35fe74ff rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3613d0f9 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x36173c1d phys_to_target_node +EXPORT_SYMBOL_GPL vmlinux 0x3617b323 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x3626c0e0 generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0x3632123e iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x36456002 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3658f37b relay_open +EXPORT_SYMBOL_GPL vmlinux 0x36652703 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x36669eaf sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x36950900 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x369f06b3 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b1ff47 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36ceac02 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x36d14575 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x36dba8e5 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x36ec8845 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x36f119c7 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x36f4917f devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x37048fce acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3726f7f7 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x372d3278 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x372fbc02 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x37346964 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x37447de7 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x37529996 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x375b6cb4 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x3763f509 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x376666c9 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x376a7ccb sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x377adb93 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x378df586 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x379542be irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x37983859 udp_tun_rx_dst +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37cbad33 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x37cc372d generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x37cfc5d8 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x37d9bf86 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x37e25a5c bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x37e779c2 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x37f292c4 pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x37f86a38 nvme_set_queue_count +EXPORT_SYMBOL_GPL vmlinux 0x37f9016d efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x3800e3eb skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x38049e65 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x380be198 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x381690de __class_register +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x382ddaa4 vfio_external_group_match_file +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x3840a165 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x384de6f1 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x386ae35e dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x386da927 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x387cbc66 vtime_guest_exit +EXPORT_SYMBOL_GPL vmlinux 0x388264ea amd_clear_divider +EXPORT_SYMBOL_GPL vmlinux 0x38833af1 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x38883112 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x388dad7a acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38b5f710 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x38b6a890 __SCT__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38c49e3f xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x38ccc36d bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x38d71f9c fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x38e10a36 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38f0920a is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x38f74d4b gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x3931c7de ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x393d950a fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x39447c15 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x39478d2e __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x39662e38 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x396a4c3e device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x397d1f59 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x39996de6 __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x399b2915 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x39a025a7 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39ad93c3 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x39bba704 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x39c1e576 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39ded14f __SCT__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x3a0ec4c5 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x3a210dfa sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a2a31ff encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x3a31e496 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x3a348bb3 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x3a4b6103 hwspin_lock_get_id +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 0x3a808892 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x3a8ff87c devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa83ea3 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x3aad73e7 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x3aae5f18 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x3ab4e8c0 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3ad8b9ca __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3af483a5 bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0x3af6bd9f crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x3af82a1f switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x3b1da1f5 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x3b2b4a56 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x3b4f5b5a mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3b5ccb53 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x3b74c466 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x3b794c71 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x3b7a7163 __static_call_return0 +EXPORT_SYMBOL_GPL vmlinux 0x3b84a7ab ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx +EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free +EXPORT_SYMBOL_GPL vmlinux 0x3b9f1e27 is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3bc746ac ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x3bc8d568 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x3bcdaa82 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x3bd5714b ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf2393a __SCT__tp_func_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0x3bfb5fe5 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x3bfbda15 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c16b513 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c33d075 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3c3ff1ed blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c5ee0e5 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3c625df6 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c70fd89 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x3c83e6b6 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x3c8774c7 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x3c87e9c9 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c8b79b1 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x3c918117 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x3c966325 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL vmlinux 0x3c980f25 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3ca1fc95 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3ca6c34a mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x3ca6cea0 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x3cacf3de hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3cb976f1 driver_for_each_device +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 0x3cd68971 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x3cdaf548 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x3ce58e68 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x3cf6f2be syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x3cfe8fc0 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x3d1f4efb ip_tunnel_changelink +EXPORT_SYMBOL_GPL vmlinux 0x3d26dcc7 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x3d30f777 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d5a9e7f kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x3d619650 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3d7bbf97 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3da474e1 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x3da5bfcf tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x3dd41073 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df426bd crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x3df82d00 mce_log +EXPORT_SYMBOL_GPL vmlinux 0x3e0063bf acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x3e070ab2 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x3e086e80 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3e0b4c71 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x3e58c858 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e75934f devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x3e7d9c0c ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x3e861ee2 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ea8e5ea gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x3eb8f055 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x3ec5f7c0 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x3ec93255 hv_get_isolation_type +EXPORT_SYMBOL_GPL vmlinux 0x3ecbce4e find_iova +EXPORT_SYMBOL_GPL vmlinux 0x3ed54797 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x3ed9cc8a usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f27328c filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x3f2dc6ce irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x3f3d90ea virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f51076d __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3f511773 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x3f68380b fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x3f6f46f3 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x3f83f8d3 rcu_bind_current_to_nocb +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fb454c5 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3ff59aa5 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x3ff75ea7 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x40000aa7 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x40053004 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x40236df3 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x402f5d58 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x4032810d __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40439493 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x405e84a2 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x4064a27f pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406977aa vfio_virqfd_disable +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +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 0x407b57c5 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x40815f03 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40a0aafc __flush_tlb_all +EXPORT_SYMBOL_GPL vmlinux 0x40aac77a xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x40b3f784 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x40bd6775 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x40d349b6 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x40d61d55 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x40e53ea7 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x40e5ab07 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x40e9d066 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x40e9e00c pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x40ed2e52 blk_queue_required_elevator_features +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 0x4106e6c5 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x41195fa5 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x411a9be9 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x413ae8bb tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x41413067 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x41558c03 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x415b734d crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x41689c61 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x41974dcc __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41b0415f srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x41b7e8e2 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x41b91400 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41d77158 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x41dc7569 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x41df16c3 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x41e2195f perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41f30b8f component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x41f5efff pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x420ccb70 iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x420f7092 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x422a3252 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x422e578a __SCT__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x422e9549 __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x4234505c hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x42554188 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x427a9d22 __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x42823ae9 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4293d491 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x429d9734 __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x42a42adb nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x42a6c863 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x42bcab8d sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x42c5af10 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42caf025 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x42e10397 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x42e445f6 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x42e62741 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42f5c9df pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x4300fc82 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x43051802 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x431550f3 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x432838e7 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x432d9e05 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x432e22fd extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x4340f134 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x4357074b fpstate_clear_xstate_component +EXPORT_SYMBOL_GPL vmlinux 0x435f1892 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x43643684 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x437612df perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x437748f7 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x437acb08 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x43993101 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x439e8425 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL vmlinux 0x43a79271 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43aae962 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x43b4f5a9 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x43b985b5 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x43c2d251 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x43d88533 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x43dd7f0f gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x43e0c3ff icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x43e39079 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x43e84d1d crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x43f24c80 virtqueue_is_broken +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 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x4408d2e4 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x4416c77c sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x441fd88f kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x443b71d9 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x4447f9da ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x444a16ae dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x444b438e register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x444c8522 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x444f8403 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x44592276 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x44809efe blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x4481470c tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c0cfff kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44d2ce6d ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x44e6348f iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x4500c7cb tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x45066280 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x45188b14 devlink_port_attrs_set +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 0x45426951 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x4550ba6e add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x456c7d22 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45bfefef iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x45cdf933 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x45d324ad pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x45e1b295 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x45e3fd3c tick_nohz_dep_set_task +EXPORT_SYMBOL_GPL vmlinux 0x45ec53c9 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x45f247e2 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x45f3d5e0 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x460b1b8f iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x4636cb9c iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x4637a04c gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x4639bcda acpi_nfit_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x463d8290 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x464198c2 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x464e70ef device_rename +EXPORT_SYMBOL_GPL vmlinux 0x46593826 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x465c14f6 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x466254d8 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x4663ad1e irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x46646ce2 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x46687211 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x4681ac12 __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4688f14a __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x469feac4 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46a6c9ef hv_get_tsc_page +EXPORT_SYMBOL_GPL vmlinux 0x46a79c98 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x46ae4c88 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46c87a20 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x47001da0 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x470c7bc0 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4723e3ec watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x472703ad ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x47383aa6 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x4746deea ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x47551a0a ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x475c5a22 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476ebf08 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x476ec060 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x4772bbad xfrm_get_translator +EXPORT_SYMBOL_GPL vmlinux 0x4780c809 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x47851d2f iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x4787ff15 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478dbd0c dev_pm_opp_unregister_set_opp_helper +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 0x47a46d2b xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47aefcc3 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x47b056be vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x47cf905b mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47d44c70 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47ee9ef6 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x47fcb9e3 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x481483c7 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x481831c1 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x483037aa dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x485ee057 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x4861bef2 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x48674936 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x4874c37a nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x4896fcfc sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x489a507a iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a41589 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x48abefb8 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x48af4620 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x48c6556e dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x48c658d6 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x48cb82dc __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x48cc0f58 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x48d18d42 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x48d51a48 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x48de86b5 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x48e3d70f gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x48ecbb99 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0x48f4f5cf uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x48faa8b2 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x48fec4bc devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x49028070 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x49192b58 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4928bae4 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x493516a0 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x49354680 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x493e6fb1 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x49491f8c xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x494e8d65 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x495304f8 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x495a4221 __SCT__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x496ad6f7 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x49859ee6 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49951708 sev_enable_key +EXPORT_SYMBOL_GPL vmlinux 0x4995a226 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x4998aaf0 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x499bbf57 nfit_get_smbios_id +EXPORT_SYMBOL_GPL vmlinux 0x49a5b262 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x49ad91e9 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0x49b7ebc3 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x49bed50b usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d93637 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ef73be __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x49f24f43 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x49f8160c led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x4a0042c2 security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a22c2a5 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4a2dbf80 vmbus_next_request_id +EXPORT_SYMBOL_GPL vmlinux 0x4a2efd9f ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x4a31fec2 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a58b806 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4a8c9335 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x4a91792a ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x4a96f7d0 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x4ac2c528 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x4ac6970e regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x4ae0bb4d find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x4af73861 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x4afc9ccd lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x4afe17a7 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x4b2210b8 vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL vmlinux 0x4b2cd5af crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x4b4108d0 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x4b420b4d __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b5aef87 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x4b5d0019 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x4b6a7e30 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x4b7819b4 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x4b7e859f regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4b87be6d devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x4b9e58d1 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x4ba2307f kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x4ba9e237 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x4bab4d7a usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x4bb84816 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4bbffe57 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x4bc512d2 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4beb87f4 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x4c153b83 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x4c1eb656 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x4c247f4c blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x4c3fb245 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping +EXPORT_SYMBOL_GPL vmlinux 0x4c77f03e crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x4c78aab9 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c9d5b0c blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x4caea83c pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb49af7 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x4ccfc465 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x4cda3739 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x4cea76cc devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x4cf156ac iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL vmlinux 0x4cfa4d2d pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x4cfb4064 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0b752f alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x4d1b8fa1 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x4d1c5c84 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4d23d5c3 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x4d269e8b spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x4d3dcafe dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d50faa8 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d55a31d key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x4d64b6f9 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d75a897 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x4d7eef77 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x4d9e2024 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x4da1f4a7 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x4db141ba generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x4dd4f09c __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4e064c7b gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x4e1015b0 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e130d1a seg6_do_srh_encap +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 0x4e26d2e6 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x4e282945 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e5ee273 tick_nohz_full_mask +EXPORT_SYMBOL_GPL vmlinux 0x4e613bdb __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x4e623112 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x4e655e64 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x4e693c1f devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x4e763dc8 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x4e89ed46 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4e8f7766 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x4e93a62b sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eafd45d vmbus_open +EXPORT_SYMBOL_GPL vmlinux 0x4eb6074e mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x4eb87788 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4edae6ae acpi_nfit_init +EXPORT_SYMBOL_GPL vmlinux 0x4ee2687e xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4efdef1a rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x4f0811f0 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x4f1f65bc mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2c96b8 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f37efe7 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x4f66bdd9 serial8250_em485_start_tx +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 0x4f7e1b59 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x4f7e2c75 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x4f8546af cpuidle_poll_state_init +EXPORT_SYMBOL_GPL vmlinux 0x4f99fe62 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x4f9b8c95 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x4fb61032 start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x4fb6af41 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x501d41f2 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x5020f427 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x50237714 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x50419bbb addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x5043f56c power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x505d055d __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5069e08e usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x506a29f5 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x5073542d em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x5074860f ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x50759163 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x50a6eef9 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x50b42ba1 entry_ibpb +EXPORT_SYMBOL_GPL vmlinux 0x50c61940 __context_tracking_exit +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e23ff3 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50e76372 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51020e23 fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0x5133d5b0 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x5151b9e1 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x5165787c devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51690cdd nvme_get_features +EXPORT_SYMBOL_GPL vmlinux 0x516a9016 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x5170b132 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x517b2375 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x5198a6ee rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x51b9cd70 __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51d456d4 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x51d9f5b1 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x51e2dfe9 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x51f4d664 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x51f88744 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5225d3d0 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x52274ce3 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x522957f9 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x522b465a sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x522c58db exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x524f50dc dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x525be127 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x526275e3 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x526d5f58 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x5271f21c vmbus_close +EXPORT_SYMBOL_GPL vmlinux 0x5287896e fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x5288b8dc blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52b39aad regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x52b90566 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52d79426 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x52e3917c xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x52fa11e4 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x534619b0 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x53601760 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x5366dd38 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x537686b2 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x53780798 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x537920a0 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x537fd616 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x53aa0213 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x53ac5628 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x53b169bd wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53c9cb76 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x53d36dd0 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53e47633 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x53e89195 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x53ef25da net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541e0c32 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x542f3bfd nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x543fcc00 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x5446855e driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x544af065 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x544e550e pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x54526ee0 xfrm_put_translator +EXPORT_SYMBOL_GPL vmlinux 0x5460f79f work_on_cpu_safe_key +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x54838e28 vmbus_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5492fcd1 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x5497026e ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x549e7e84 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x549fedbd nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x54ac2ce4 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54c5b2f2 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x54f7bdab wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x54fc4bc9 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x54feb5b7 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x550053f1 devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x552298eb dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x5532db95 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x55387397 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553e073b lookup_address_in_mm +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5543494d __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x554f217c fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x5553a29e nvme_reset_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x555731fd fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x55607054 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x557fa068 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x5588b170 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x5597ac87 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x559ea6e1 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x55be13e0 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55c7fd91 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x55ca48e0 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x55cd00f9 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x55dd26cc ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x560f40f6 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x5611bfce nvme_complete_rq +EXPORT_SYMBOL_GPL vmlinux 0x5612c07d phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x56214e96 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x56250a1a dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562694bc acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0x562f05fc xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x563ef6e2 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x563fb48f sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564e70ac regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x56545b26 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x565d4cce skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x5660460c __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x56609cf0 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5677c1ca netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x5677dd71 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x5678cb41 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x567ae49c nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x568693d2 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x568fe5a6 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x569951f9 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x56aa96f0 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x56b300da dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x56b5268a __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x56b53b1d thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x56c1b9cc do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x56d61dce context_tracking_enter +EXPORT_SYMBOL_GPL vmlinux 0x56d8cd5d udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL vmlinux 0x56d97d7e list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x56f0b553 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x56f9f48b nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x57113567 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x571f2b43 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x575776c3 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x57602b94 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5779e198 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x578016f7 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x57861a5c gds_ucode_mitigated +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x5799d0bc clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57ad7259 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x57b7e306 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x57bedfc5 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x57ca743b sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57db4cd6 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x57e0e5f6 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x57e78547 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f9ff5d blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x582d10cb ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x583068a8 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x58a4f58f switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x58a9be34 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x58b7c98e component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x58c5cbc9 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x58dc2f07 device_register +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58f333c1 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5908af6e xfrm_register_translator +EXPORT_SYMBOL_GPL vmlinux 0x5912d787 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x5922fa73 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x59364d98 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x59488b1f unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0x594d9c9e ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5954399c pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x595a7a11 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x5960cd8f governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x597ed065 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x5993796d nvme_unfreeze +EXPORT_SYMBOL_GPL vmlinux 0x599d1566 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x59b07c68 dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59bbcebd synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x59bbf145 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x59bd797c fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x59bdebd7 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59c5db41 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x59c6aff4 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x59daa158 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x59dc4e5c dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x59e0f053 fpu_free_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x59ebdfae pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f3a775 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x5a0a1357 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x5a16fd11 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a2985a9 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x5a315b03 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a4ab05b crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x5a5144b1 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x5a5250ef tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x5a52578a kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5a556d09 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x5a5f7828 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a65971a perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a6feba9 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x5a717a8f pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5aa2b50a hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5acacd83 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x5ad19c5f device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x5afb273c sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b287909 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x5b322f31 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5b41a90e raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x5b4f7889 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x5b50c623 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x5b6a853e dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b8a2c21 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x5b8f0ecd hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x5ba9678a dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x5bb02861 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x5bb2bf63 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bbf230a addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bc9ebe4 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x5bcae8ea dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x5bcb0627 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd43e0e ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bded4b8 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x5bef36f4 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x5bf5173f gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x5bf52b9d nvme_start_queues +EXPORT_SYMBOL_GPL vmlinux 0x5bf8f047 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x5c005910 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x5c09818f auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x5c0c165e __SCT__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c1b96ce gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec +EXPORT_SYMBOL_GPL vmlinux 0x5c3134f1 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x5c38685f regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5c3b226e pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x5c3e95f4 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x5c4839bf vfio_pci_core_enable +EXPORT_SYMBOL_GPL vmlinux 0x5c4fdbcc find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x5c5688e3 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5a720a tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x5c630fd0 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x5c6b7efd power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x5c743871 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x5c831e80 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x5ca49708 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x5ca4f531 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cb96933 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x5cb99a7f blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x5cc7e3b0 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x5cd1794c __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x5ce0d4ad fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5ce1cd77 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cff0332 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x5d0113e0 x86_pred_cmd +EXPORT_SYMBOL_GPL vmlinux 0x5d12b78a __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d24063f __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x5d26e622 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x5d28fd82 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d320d87 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5d555f04 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x5d6e3981 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x5d729bdc __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5d7491b4 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d91af29 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq +EXPORT_SYMBOL_GPL vmlinux 0x5da4985a __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da863ee fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dcc36e8 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x5de428f0 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x5e000f0c pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5e005b5a ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x5e0c0882 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x5e0d1e0f regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x5e1043de fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x5e115602 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e1eb4c6 __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x5e2ee254 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x5e35348f debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x5e502329 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e5b9fef scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x5e67e911 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5e711f57 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e896494 nvme_sync_io_queues +EXPORT_SYMBOL_GPL vmlinux 0x5e912445 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x5e9f5731 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x5e9fbbe6 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5eaef665 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x5eb67777 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ebfbb4d nvme_kill_queues +EXPORT_SYMBOL_GPL vmlinux 0x5ed1b27e eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x5ee0ff9e clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x5ee41aa7 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5eeac9b3 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x5f0cb548 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x5f0cc847 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5f1dde01 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f2e947e serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x5f422702 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x5f4a2c58 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x5f4d67dc nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f94537e vfio_pci_core_match +EXPORT_SYMBOL_GPL vmlinux 0x5f9d0ba8 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fae9131 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x5fafd044 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5fe9b746 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x5fee27b4 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x602d4038 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x60447a06 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x6044b22a icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x604b1751 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x60788345 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x6089204d unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x608c6e91 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60989e91 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a1f5c0 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL vmlinux 0x60b3cdd1 pwm_lpss_probe +EXPORT_SYMBOL_GPL vmlinux 0x60bfffac rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x60c38f52 intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL vmlinux 0x60d3e413 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f3dae5 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x60f4dbd1 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x60f9814e vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x60ff801e preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x610972a5 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x610f05db __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x6111549a tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x6115ee99 __xdp_build_skb_from_frame +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 0x612e24e4 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x6148321d fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x6176ce5c bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x617dcbdd rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x618c719d ip6_sk_redirect +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 0x619f3fe1 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x61b443f8 x86_spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x61c0d017 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x61c2bf6f clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x61e2f8aa devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x62199470 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x622e71dc reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x623f2ad0 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x624cd5a5 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x62599c82 vfio_uninit_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x625aae22 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0x62694dfd dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x62699e8a hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x626c5b66 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x62b33d74 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62f5c6a7 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x63016136 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x63026490 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x631ff11e platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x63233ac8 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x632695d9 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x6327f8ce bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model +EXPORT_SYMBOL_GPL vmlinux 0x63543740 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x63555dbf __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x635b534e tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x6360b34f clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x6389bf06 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x639907f5 vtime_guest_enter +EXPORT_SYMBOL_GPL vmlinux 0x63a7d56a of_css +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63cc40a2 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x63d9f51b iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f793f0 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x63ffe35e events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x6400456c get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x641f0832 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x6427210e uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x64636146 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x6472ac05 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x6475bba8 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x647c2eec netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x648d327a ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x648da00d regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x64ab6bed set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x64b47fda regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL vmlinux 0x64b71173 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x64ba9e97 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x64cbc94c regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x64d26173 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load +EXPORT_SYMBOL_GPL vmlinux 0x64da810f pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x65098f61 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x6515f35e acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x651a1734 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x651e1e95 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x65240e93 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x6525746d devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x653608e2 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x65634368 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x659ab64e sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x65b75654 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x65ba295a __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x65bb32e8 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65e596a1 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x65f23124 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x65f88adb nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL vmlinux 0x65fa0f9e dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65fd7bde __traceiter_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0x660c9eb8 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x66118e53 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x6613e2eb bus_register +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x662992a6 hsu_dma_remove +EXPORT_SYMBOL_GPL vmlinux 0x662ae005 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x66450608 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x6648f110 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x664f4236 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x66534393 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x666939b5 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668a4588 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x66a0ab4f __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x66b12891 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x66b408dc __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x67045d7c __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x670d5b96 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x670f9899 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x672930e0 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x672f7eda power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x673d9f86 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x674ad176 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x674e657e hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL vmlinux 0x6759bd00 __SCT__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x675cd4f6 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x677ecef5 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x67843f5c device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x6790a259 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67959050 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x679d30f0 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x67c9eac2 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x67e0df72 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x68196367 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x6838c916 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x6882a767 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x688b47bb put_pid +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68a71203 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x68ab0111 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x68b09f83 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x68b806cc wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x68c5764d agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x68c72123 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x68e0cb63 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x68e3eb9d md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x68e9765b __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x68ed4a4a blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x68f3d84b ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x68fe104c subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x691b4cbc gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x693bc43b tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x694475bb dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x694c3a1a switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x696c689b ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x69797ac8 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x699820b1 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x699909aa usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x699d47c5 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x69a3fe50 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x69ac4c63 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x69bd36c6 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +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 0x6a04eba6 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x6a0e99a9 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a17d8e2 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x6a2fcfa1 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a452317 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a51cc0a devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x6a52a593 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x6a53f970 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x6a7b6fc0 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x6a7d0aed wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x6a7f0f3a devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a928c41 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x6aa9a939 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6ab45c0c ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x6ab46794 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x6ab70406 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6ab9a034 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x6aca44e9 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x6ad6d705 usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0x6ae507a2 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x6b0eaa18 hv_ghcb_msr_read +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b33d6f1 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x6b35a16b intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b511615 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x6b52689e pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x6b5ba664 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x6b66cb65 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b81d4e4 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b89650e crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x6b9ba983 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x6b9bf6d9 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6baf8741 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x6bbcf8c7 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x6bc6b5b5 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x6bcc842e syscon_node_to_regmap +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 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c26c328 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x6c28bfd2 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3c085b od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c507693 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x6c5554b5 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c617ee0 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work +EXPORT_SYMBOL_GPL vmlinux 0x6c89f380 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x6c98e88f device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x6c995f0b __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x6c9a0fe5 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x6c9c9af7 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x6ca1b2fa iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x6ca1cd03 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca8c0f8 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x6cad946a edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x6cb3ef8a transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x6cb7a2f1 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x6cd5c3b9 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x6cd73156 pci_disable_rom +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 0x6d109fee iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6d2245b1 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL vmlinux 0x6d2ca05e __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x6d2e899d mce_usable_address +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d34bfcf acpi_dev_get_memory_resources +EXPORT_SYMBOL_GPL vmlinux 0x6d3de58a phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x6d5c8a15 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d86c429 intel_pinctrl_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6d9d274a proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x6da4c410 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc81034 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x6dd37aa1 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6dda50fa acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0x6df7c9dc regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x6e1748c4 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x6e3b650c __vmbus_request_addr_match +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e48cf59 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x6e49aca5 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e6cf940 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x6e749b23 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e85a86b irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e954e72 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x6e98816f gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ee0c36e __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x6ee214de dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ef805d6 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x6f0d09b7 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f2390f4 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x6f23b81c phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x6f3223d3 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x6f332b00 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x6f339fc4 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6f51578f led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x6f5f4677 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x6f7101b4 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f7efbb8 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL vmlinux 0x6f92157a blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x6f935e35 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6f95bb84 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa509a8 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x6fabae87 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x6fae53b2 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x6fc11f80 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x6fc7d2b0 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fde785a acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x6fe7ebd7 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x6fea64d5 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x6fefe6be tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff9cdcc sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x6ffce680 x86_cpu_has_min_microcode_rev +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x700b3acf led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x700eb8b2 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x7012c3cf platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x702b5994 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x703491d3 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x704577bd synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x70497bca devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7055c56e __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0x706d2d30 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7084fe8b usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x709d6321 vmbus_alloc_ring +EXPORT_SYMBOL_GPL vmlinux 0x70adc093 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x70b0aecd __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70cf1a81 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x70f9ca12 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x710837b4 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71134c21 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x711a0054 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x7134bc6f sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x713de973 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL vmlinux 0x71494c77 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x714d9ea6 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x715610e2 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7165221d ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +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 0x71d3921d __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x71da8e72 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x71db37ec __put_net +EXPORT_SYMBOL_GPL vmlinux 0x71e49e5b rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x71e9a344 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x7204675e acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x721a0418 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x7231609b serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x72429676 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x72787a93 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727edc41 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7289d3a9 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x7296febf ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x729c24e2 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x72af72c4 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x72b0fcde wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72d4fd6d mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x72db4496 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x72dc4cb9 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x72e96c01 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x72fcd1b3 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x7304986b devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x731bae07 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x7328d3a5 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x732aed4f add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x732df578 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x733c63e1 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x733ec33e __SCT__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x7350cda1 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x7352d6b6 __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0x73705288 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x73735eef sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x737e3e21 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x73840ca7 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x738955f5 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x73905f37 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73aa4c26 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x73b1c6d0 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c7a34e intel_pmic_install_opregion_handler +EXPORT_SYMBOL_GPL vmlinux 0x73c98990 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d1de59 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x73d646c8 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x73d9f0d0 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x73dc2f01 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x73de32b5 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL vmlinux 0x73e1770b register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x74056a24 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x741192b3 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x741956c4 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x741a31e4 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x7428cf4e gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x744f0cb0 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x745371a9 ip_tunnel_ctl +EXPORT_SYMBOL_GPL vmlinux 0x74643895 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x7475e20d devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x74787df3 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x74834354 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x74914aac dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x7497f747 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bfab4f regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x74c31637 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74e15fe5 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74f1dad8 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x74fc12bf fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x74fd122f pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x7504c7b4 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x75066192 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7517944c hsu_dma_probe +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75250f9e wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x752f1962 nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0x75324cd3 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x75447c88 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x754a1d9b __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x754e6ab0 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x755c73cd tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x75775c65 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x757a5019 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x75998a0e cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x759c4589 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x75c40b1f __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x75ff4a5b usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x76017f24 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x7608c1e4 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x7616fe30 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x762640ab __SCT__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x7644616a task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x76582db3 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x765a4973 tracing_cond_snapshot_data +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 0x766e2f2c phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x7676870e pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x768f9c92 blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76b0ab3b blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x76c20136 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x76d40a04 fib_table_lookup +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 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f48488 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x7701240c regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7715d5f2 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x771a978b nvmem_cell_read_variable_le_u32 +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 0x773506ee dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x77353c6b __static_call_update +EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x774ec366 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x77559d33 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x776eabe9 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x77713233 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x7776436d pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x777a350d fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x778a47fe page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77937325 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x77a07213 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x77ab5dac sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b83e3e sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77e764da rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77fcc516 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x780f0e59 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x78109bc8 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785ccd07 spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x7868685f devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x78746f2d usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x78981c90 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78adb3df fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x78b603fb pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x78b839e4 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x78bab66b irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x78bf2ae6 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x78bf7517 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x78d7d6fc handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78f6a285 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x78fa64e2 fpu_copy_guest_fpstate_to_uabi +EXPORT_SYMBOL_GPL vmlinux 0x790a9bc7 phy_get +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 0x791ab49e acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x791dc587 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x79262eab spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x793468ef regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x7940edc7 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x7948811e regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x795eb41e phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x796bf96b __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x798bbb42 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x799557cf crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x799bb25b usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x79a955ba pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x79ab92d1 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x79b0906d regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x79b848ad __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79daf4de __SCT__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x79db6fe1 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e1478a pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7a0a7f05 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7a1056af crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x7a13d23d pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x7a28c3b9 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x7a29a2d9 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7a2d289d vmbus_request_addr +EXPORT_SYMBOL_GPL vmlinux 0x7a2f475b show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x7a367015 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7a3f5467 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x7a44f7c5 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x7a5868e5 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x7a5f9762 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x7a655f68 acpi_processor_claim_cst_control +EXPORT_SYMBOL_GPL vmlinux 0x7a73427e gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a7be1ec pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x7a7f7d8b phy_pm_runtime_allow +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 0x7a9e3b38 vfio_init_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7aaae790 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x7aadf961 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7ab4e2e2 uart_console_device +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 0x7ad49f3c skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x7ae06177 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x7ae463d2 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7b0716b3 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b2a2609 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x7b2a7f80 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x7b3f5420 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL vmlinux 0x7b4209b4 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x7b4fa202 devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b714f22 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x7b842e06 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b98398a fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x7baf0178 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bb9c11f sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x7bba6ae7 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7bbc68e3 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x7bc98960 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x7bd00ace debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x7bd6f420 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x7bd9c730 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x7c02c840 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7c0535a2 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x7c0aac49 bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x7c16601a __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x7c176e45 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x7c1840dc pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x7c198073 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt +EXPORT_SYMBOL_GPL vmlinux 0x7c286ea6 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c391c47 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c3e3976 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x7c3e736a rcu_nocb_cpu_offload +EXPORT_SYMBOL_GPL vmlinux 0x7c4067c9 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x7c50d8a4 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x7c5cef30 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c609532 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x7c626556 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7c63cc3e iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x7c656ea1 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x7c72ecb5 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x7c85d12f gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x7c8ce3b5 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9b1261 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cb912f0 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x7cc24054 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd52b9c vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cdc5fbc __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7cdff88b device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x7ce2c199 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x7ce43263 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ceff0b8 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d3739e5 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x7d3cf3f6 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x7d481e44 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0x7d491683 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5a575f rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7d698279 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x7d918c74 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x7dbc0201 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x7dbf83b9 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x7dc75901 fc_eh_should_retry_cmd +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 0x7e25641f nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x7e28575c open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x7e3afdbe bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e484e9b fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x7e57445f pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7e57558c dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e74e1d4 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7e766b70 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x7e7a2ca6 irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7b0e04 component_del +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e875793 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e8f707a phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x7ea1f425 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eab1f7c ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7eb596bf nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ec1a073 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x7ec60fd6 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x7eddeb2e klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7f00443e rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x7f0a677c ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x7f0f9732 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x7f1649fe ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x7f1ba190 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x7f4b81d2 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x7f5f6687 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x7f5f905c spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f733f06 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f99edfd security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fb99135 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x7fbb180a tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x7fbc7fe9 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x7fc22918 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x7fcf48a4 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7feb4375 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x7ff59df6 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x8018ef0d unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x802c1e3a gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x8030c7ce ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x8045eefd proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x8057fcfd dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x806d37a3 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x8070c0e9 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x8076ac8f serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x8087a488 devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x808a8088 handle_guest_split_lock +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80a123ee devres_release +EXPORT_SYMBOL_GPL vmlinux 0x80a52d0b iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x80be3255 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x80c18cd5 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80ca5920 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x80d44ee2 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x81012311 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x811424b6 ip_tunnel_uninit +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num +EXPORT_SYMBOL_GPL vmlinux 0x81304fe1 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x814e2386 kcpustat_field +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815c6645 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816450aa rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x8171740d crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x8174dd9a pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a5b6af devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x81f96d29 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x82035948 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x82081905 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x821ec7f1 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x821ef035 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x8220c9d6 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x822c1c9a xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x8238a3ae devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x8238b9a0 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x824c8ac2 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x825b36eb to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x826c870a ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x828202c5 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x828f63ca pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x829910bf tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x829da500 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x82ad98d5 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x82d1144e unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x82d1953c pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82daf23a nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x82f859c5 input_class +EXPORT_SYMBOL_GPL vmlinux 0x82fc7f1a bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x830f8524 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x83148b64 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x8319b4c6 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x83202334 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x832795c8 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x8328673f uv_bios_get_master_nasid +EXPORT_SYMBOL_GPL vmlinux 0x832eee9e rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x8334aefc security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x8335ca43 __SCT__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8337a342 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8359ca1f mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x83622a4d crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x83635499 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x8368cbd8 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x83699c22 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x836c2e5e devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x83916935 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x83c6040d unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x8403123b __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x841e7889 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8448ee4a regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x8453c8fb pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x84553cb3 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x8464f92e usb_check_bulk_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x84678725 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8480e638 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x848636dc mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x8488ef5a power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x848f9991 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x8494b9b5 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x84950a3d device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x849f98f3 vfio_pci_core_read +EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id +EXPORT_SYMBOL_GPL vmlinux 0x84dcabd0 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x84e4f3c1 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x84e8cc7a usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x8502b51f devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x8521c835 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x852383f3 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x85263d4e nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x8533e047 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x85498165 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x85527e6d efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x85678d40 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x856fbbb0 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x857e0065 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x8581d751 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x8592d892 amd_register_ecc_decoder +EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x85a90cef mmu_notifier_put +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 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85e594dd spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x85e8caf2 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x85ebe749 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x85f59287 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x85f6457b dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x86014b46 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x86142549 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x8631b8d4 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x863866b3 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x863f52f2 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x86472402 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x8648d135 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x86599411 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x865b0065 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x865cf2ec spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x865e0923 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x86644f7c inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x866455bc task_cgroup_path +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 0x8683d6e8 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x8686553e power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868da0ef strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x86904b08 nvme_start_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x86a0b3a1 intel_pinctrl_probe_by_uid +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b17c5e ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x86b6e4a1 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x86be644d mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86cc2e46 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x86cf7c02 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x86d45897 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x87219e30 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x872a0fd8 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x872d4f7c __SCT__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8738ab09 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x873d760a transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87406a47 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x8744b1e1 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x874be939 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x875d254a tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x8775bff5 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x87803300 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x8781eacf ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x87ce0be2 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x87d5166e sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x87d6e9e7 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature +EXPORT_SYMBOL_GPL vmlinux 0x87f241d9 dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0x87f34e99 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x87f46ec6 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x87fef38e devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x88183ab4 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x881b8d8f led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x881cc89b pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x881d14cd intel_pinctrl_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x881d8a46 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x8835c5f2 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x884c962c spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x88740a30 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x887cf1d9 vfio_register_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x88aa4581 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88b77f50 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x88c7e1de virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x890bfb1d pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x890e6ffa dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x891ba3fd device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892f9f04 __SCT__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x893aa2f9 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x893fed6c crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89700fef follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x8986a9d6 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x8990d127 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x8999b8aa page_endio +EXPORT_SYMBOL_GPL vmlinux 0x89a9a5c0 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x89aa3abb devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bdcb55 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x89be9bab misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x89bf5ada xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x89c38c53 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x89e16017 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89e40b39 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x89e60212 __acpi_nfit_notify +EXPORT_SYMBOL_GPL vmlinux 0x89e6586b handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x89e6a50a usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x89e8c14e cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x89f96592 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x89fd08eb hv_pkt_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x8a0fd551 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x8a2e5c81 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP +EXPORT_SYMBOL_GPL vmlinux 0x8a547c56 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x8a5861f3 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a6898d0 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x8a782461 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a7e2212 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x8a7ee1e3 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x8a82c5ae thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a838ef6 intel_scu_ipc_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a94a017 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL vmlinux 0x8aa2d4b5 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x8aa50734 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x8aaf2f72 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x8aafe64c simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac07151 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x8ac0c4e4 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x8aca2926 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x8acae1ef dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x8acc5ef4 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x8ad4ffd1 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list +EXPORT_SYMBOL_GPL vmlinux 0x8aefc31a validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x8af8f942 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8afdd25a usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x8b004ce0 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x8b0d286c crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x8b12170b dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b352b20 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x8b47ea1d __SCT__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x8b48abe3 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x8b4d3c0e bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x8b537065 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x8b61a398 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x8b670137 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8b921f43 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x8b95b6de apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x8b9a57d6 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x8bb8849d fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x8bc0cbfb hsu_dma_do_irq +EXPORT_SYMBOL_GPL vmlinux 0x8bd082a7 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8bd15fa5 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x8be710ce regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x8bee3108 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c092479 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c17c93b dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x8c1d5eb3 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x8c228dba blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x8c288e57 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL vmlinux 0x8c2900a3 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x8c306db9 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs +EXPORT_SYMBOL_GPL vmlinux 0x8c4c80bd ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x8c4fded2 sgx_virt_einit +EXPORT_SYMBOL_GPL vmlinux 0x8c5f9dc6 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c813982 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c98020e bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8c9dfa45 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x8ca0996b __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x8ca36c01 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x8ca6a20b pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x8ce578b4 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x8d07b073 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d2da98e usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d3f386f pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x8d4fefe8 vmbus_connect_ring +EXPORT_SYMBOL_GPL vmlinux 0x8d6afb05 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x8d7162bc cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d88ee64 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x8d8cc84a xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x8d90ef82 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8db18947 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8dbb2257 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x8dc82027 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8dd7fbde crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8de76282 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x8e0761c4 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x8e08ad02 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x8e2fd7b2 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x8e396243 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x8e3d911b arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e4a76f8 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e4f64b7 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x8e60598d set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x8e66bb3f iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e71ca0a ptdump_walk_pgd_level_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x8e77aa75 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e9e6318 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x8ea4ba0f vmbus_free_ring +EXPORT_SYMBOL_GPL vmlinux 0x8ea5b525 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8ebc121f nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x8ecdf935 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x8ecfd99d sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x8ed0c49d tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x8ed97e93 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x8eed0fa2 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef81ffa shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x8efb8ba0 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f09f535 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x8f136afa fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x8f1fc342 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x8f27a3b3 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints +EXPORT_SYMBOL_GPL vmlinux 0x8f3211c4 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x8f393f3f security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x8f3d0460 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8f3e02ff ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x8f49ec01 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x8f5ec807 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x8f67a067 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x8f6abcb8 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f793611 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x8f96b858 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x8f9e5cfe regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8fa9d9e8 __SCT__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fb791c1 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fc85c13 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x8fddba03 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8fe38593 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x8ff4a0c2 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ffb1df7 acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0x900fac06 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x9012223d power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x901d2ba6 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x90212828 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear +EXPORT_SYMBOL_GPL vmlinux 0x903a4cd9 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x90408ab9 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x90474f7a tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x9049cf3c pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9060fe7e devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x906e0f13 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms +EXPORT_SYMBOL_GPL vmlinux 0x909987df fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90bb79bd param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x90c33315 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x90c4bf10 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x90c66c3a edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90cd4473 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x90cf38bf crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90de20f5 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x90de72a9 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x90f2fc6e devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x90f92e03 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9107d224 __SCT__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x91130299 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x9140fd38 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x914e3cdd devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x9161155c rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x917ad120 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x917d953b __SCT__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x91838cca __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x919b99b9 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x919fe4c9 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x91a816c5 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x91b063b6 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91b9a4ba e820__mapped_any +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91cb727d __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x91d35d5b pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x91e76bc5 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91fb3e4a acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x92088172 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x920c3ac4 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x920f27a9 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x92274fe6 acpi_unregister_lps0_dev +EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x92350a66 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x923753f9 __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9258f902 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x92616122 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x92688c71 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x92892211 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x92919b1c devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x9297a1f7 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92cfa4ed usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x92d09ceb synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92dc80dc __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x92e5766e cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92f6ed45 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x930e6a3f strp_done +EXPORT_SYMBOL_GPL vmlinux 0x931a3024 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x932059fc vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x9328660e crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x933d80eb gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x935b8ca5 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x93a2458d crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x93a57953 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x93b353db devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x93b895e1 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93cb1f11 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93dd3841 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x93eb2c92 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x9409555b xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x94145804 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x94146b46 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x9415c65a dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb +EXPORT_SYMBOL_GPL vmlinux 0x941a3d4f clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x941f2722 dw_pcie_setup_rc +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 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x94401dee extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x94564466 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x94681b45 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x94754305 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible +EXPORT_SYMBOL_GPL vmlinux 0x9485268f irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x9495df5a rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94cc4f74 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x94d03b29 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x94d0d4a4 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x94e226c4 __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f49873 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950909ec acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x950a44ad pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x95168002 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x9522bd2b tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x95231eb8 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x953ebed0 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x95547edd dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x955a271d da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95609b26 context_tracking_key +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x957dc08a ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x9581b340 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x9588d3a1 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x958e4c86 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x9592d80f genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x95baac87 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95be3b01 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95f9febc edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x960023bd extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x96158765 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x9615b005 hv_map_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x96212c2f spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x962523b1 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x964db8e9 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x96999c26 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x96aaf783 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x96abf53d pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x96b57e32 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x96caf929 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x96e8089d irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x96f13ce1 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x96f4deef spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x96f6c7f0 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x97004055 vfio_group_get_external_user +EXPORT_SYMBOL_GPL vmlinux 0x9701aa33 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x9709539b percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9719bcfd pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x9719f028 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x971ac4fa devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x97247463 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x972a37c4 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x973a595a device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x97638297 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x976a2ec8 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x97715f99 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x977c0d79 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x97846de3 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x978e283f dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x979103e7 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x97a022fb hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x97ae1ed0 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x97b4fe28 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x97b72776 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x97bc4d66 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x97bf9e94 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x97c11f36 nvme_setup_cmd +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97f36469 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x97f8ad1d pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x9809513a usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x98166a6b devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x983109a1 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9835fc3d gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x98420b28 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x984edb79 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x985e69cd klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98831dd8 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x989d2729 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x98a751c9 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x98a845af vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98bc1d54 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x98c3e638 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x98c64520 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x98c95340 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x98c9a645 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x98ce6e05 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x98e9ec0e subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f2340b rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x98f41a8e devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x98f47e1c pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98ff0ba6 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x9922868a l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect +EXPORT_SYMBOL_GPL vmlinux 0x993c63f3 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x993e967c ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x99408388 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x99439f72 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x994c4801 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995df7ba ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x9967bdf5 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x996b63a8 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x997356d5 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x997cc46f ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x998f4b63 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x99a7b89e irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x99b1cc00 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x99c4c434 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x99d37932 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99ec4fb1 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x9a0bce32 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a185ace tick_nohz_full_running +EXPORT_SYMBOL_GPL vmlinux 0x9a198c26 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a39ae43 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a685621 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x9a6b3183 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x9a70b828 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x9a85454d usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x9a898b85 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x9a911f59 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9a9dd36b param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x9a9f3bdf __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x9ab6003d devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9adf7612 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x9ae9c2d2 ip_tunnel_init_net +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9b19a516 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9b3db55b tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x9b534942 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x9b554b03 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b5dd868 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x9b5f8e9d dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x9b60154d pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x9b67f223 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b73ec3d iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x9b7d8e13 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b916e13 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba1dc87 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9ba9e700 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg +EXPORT_SYMBOL_GPL vmlinux 0x9bcc0363 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9bdf0255 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9bea3c84 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c070af1 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x9c17c9f6 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x9c622cdd regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9c6e2e10 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c7daf88 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x9c7e8c4f pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c94794c bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9ca9cc5d devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x9cad465a __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x9cad8488 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ccc137d regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9cd4852f __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cdc12d5 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9cdeca56 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x9cefa955 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cf680f1 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x9cfdffc1 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x9d026a8c watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d0f05e6 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x9d106f9e tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x9d14205c cr4_read_shadow +EXPORT_SYMBOL_GPL vmlinux 0x9d16c1e4 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x9d373f28 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL vmlinux 0x9d3dccfc devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d419233 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x9d483326 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x9d4894c8 x2apic_mode +EXPORT_SYMBOL_GPL vmlinux 0x9d508ba0 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x9d5286e9 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x9d6f649c pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x9d7d801a regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x9d8340ab blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x9d8b1280 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x9d91dc47 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x9db947a2 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x9dc0c266 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x9dce187b phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9df2a7d6 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x9dfa38f8 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e03a963 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x9e04998a devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x9e0f1492 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9e2aa3bb virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x9e2b9719 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x9e32ecde strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e678888 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x9e72424e skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x9e7729cb ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9e985344 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x9e992aa8 __nvme_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x9eb28f4f pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x9ed52ba2 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed58085 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9ed61513 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x9ed7775d blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x9ed8b6ae thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9f053210 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x9f075b68 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x9f223fe4 __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x9f4349f8 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x9f46ed41 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x9f4f9a64 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x9f60fafd fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x9f69e15c evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x9f777ae6 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x9f7ffa1f regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x9f82ad96 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x9f8c3437 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x9f921382 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x9f97b308 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9fa9912c debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc8463d blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x9fc8fc56 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fdafd7d crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x9fe1504c isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x9fe7a9cc crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ffc8c46 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x9ffd59a3 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xa0001b05 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xa004e405 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa033b987 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xa033f541 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xa0351ed8 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xa04d85f3 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa05073e5 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xa0626c11 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xa06540b0 split_page +EXPORT_SYMBOL_GPL vmlinux 0xa0688c3f extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xa07a2ac2 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa090478a arch_has_restricted_virtio_memory_access +EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d81b76 __SCT__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xa0e4d58e crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xa1057bb7 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xa11160cf sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0xa13089b8 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xa13b4184 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xa143fe10 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xa1447115 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xa1485c61 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xa14ca67c seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa164a477 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xa17ccc80 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xa18afa57 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xa19550f0 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xa1a8f438 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0xa1b4e99a crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xa1b91cc2 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xa1c7363e pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xa1c9602f ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xa1e852e0 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xa1ea7c67 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0xa201939b dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa2147148 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xa216514d ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa21fe0e2 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa22a7778 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xa257e392 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xa25c3b2b fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xa2617481 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xa263270e ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa27298d9 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xa2775bb3 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xa295d4c9 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xa2975fdf crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xa29dadce __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xa2a1f421 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xa2ae6d9d br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xa2b3391e crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xa2c45aa9 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xa2c4c62a crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xa2cb2ea1 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xa2d0b59d mmio_stale_data_clear +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2eeaaea crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xa2f52f20 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa2fd0fd5 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xa31028e7 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xa31c9ea8 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa337cf57 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xa3389e95 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xa346e04c md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xa3498915 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xa349fb9b dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xa354246c ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xa36e0388 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xa36ebd21 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa37a91c0 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xa37d15eb wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xa3830c75 __clk_hw_register_divider +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 0xa391b276 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xa39b6ead irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xa39ea191 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3af6f67 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xa3b01180 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa3b62ff7 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3e7f8d9 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xa3e86baa ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f98743 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xa3fcf5db tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xa3ff501d skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa40f8e9c __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa42539ed phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa4343e04 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xa434bb9b kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xa43849c8 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xa4428e8b srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa44c375c vfio_iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0xa44e654f gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa462d5a6 __SCT__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xa4651899 __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xa47ce233 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4826b69 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa4a8d3f2 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4b28bf5 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0xa4d1681e serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0xa4e487b3 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0xa4f47303 intel_pinctrl_get_soc_data +EXPORT_SYMBOL_GPL vmlinux 0xa51b5982 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xa5205245 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa5358f60 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xa55c5d8d nvme_try_sched_reset +EXPORT_SYMBOL_GPL vmlinux 0xa5796f4c housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xa57c8fda acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa58e083d pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xa597b8ba nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xa5a1793e unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5c2a7fe unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa611506d gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xa61382e8 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0xa623c52e skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xa626813c devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xa626fb2a pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xa63e0268 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xa646ab9c device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa64ee73e devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xa65627c3 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xa679ce3b get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xa67f78a5 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xa696d390 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a10cec unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b7ac70 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xa6c00544 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa6d8d4bc pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6ed6012 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xa6f23513 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa709e111 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0xa714bba7 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa71a53da pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xa71c8073 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xa71fe173 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xa7218eba irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0xa7295a54 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa7418f0e regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xa74c52da pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xa751eeb5 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xa7535d49 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xa76056ad power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xa7638443 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa764b0bc pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa78c1a97 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa78c9933 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xa78deb45 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xa7a9eb2f regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xa7c0261b ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa7cf64bf cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xa7e3779c device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xa8003886 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xa80f55f0 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xa8185267 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xa82be40f of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xa830c338 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xa84b4875 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8686553 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xa869c615 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xa870f7d7 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xa87206fa register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa8759bc2 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xa890d332 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xa8bd35e0 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa8c6503c rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa8c69295 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xa8ce76a1 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xa8db3150 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xa8e126fb efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8e9325e devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xa8ebf924 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xa8f0cd2d reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xa901d376 nvme_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0xa9029533 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xa9075e77 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xa90e90c1 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa91c67b1 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa931fda9 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93d0bbd __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xa94068c6 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xa9481d64 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xa94ad8a5 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa9672aea bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa9749bd3 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xa97b7b81 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xa9854364 umc_normaddr_to_sysaddr +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a61386 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xa9ab9e13 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xa9c27065 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xa9c4171d pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa9d4f544 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xa9e14f44 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e20ee1 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0xa9f0d1b7 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xa9f7eff6 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa9f92afe __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0xa9f93d02 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xa9fafcb5 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xaa0d0717 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xaa119680 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa30cc6a scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xaa374abf device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xaa50f90f devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaa62ec5d devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xaa6a04f2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa77d715 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xaa78b4d9 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xaa799490 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades +EXPORT_SYMBOL_GPL vmlinux 0xaa8a8593 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xaa9127f2 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xaa946280 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xaa99c94e usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xaa9bfdb8 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xaaa87367 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaad93f0 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xaabfafc5 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xaac3c30b generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xaae8c077 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xaaeadccb pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0xaaeae056 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0xab03e5cc extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xab040ce1 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xab16a5a0 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab27a6d1 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xab3d184c irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0xab451609 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0xab4c8585 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0xab71e4b9 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xab73b12d kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xab8a8423 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xabb7c7c2 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xabbc40a1 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xabbf8160 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xabc1661d fpu_swap_kvm_fpstate +EXPORT_SYMBOL_GPL vmlinux 0xabc298d0 intel_scu_ipc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd522a2 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xabd8fd89 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xabee2824 vmbus_connection +EXPORT_SYMBOL_GPL vmlinux 0xabf03fc3 __SCT__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xac0549fa class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xac15e0d8 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xac16eb10 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0xac39e410 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xac3e5165 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xac4ad383 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xac58635d inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xac5f89be fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xac6fe0ec regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xac719d57 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0xac755352 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xac7894b1 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xac7a8825 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xac85baae usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xac96b8a3 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacb56620 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xaccbc729 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xacd4cc12 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xacfc34e1 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xad05da07 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xad0eb9e9 hsu_dma_get_status +EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad479bcc phy_init +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad5a4ee8 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad636843 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad6573e8 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xad7f78a5 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada5beac scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xada91a33 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xadc7a618 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xadcc17f8 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xaddc9476 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0xadfbff74 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xae06382d __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xae09e8be sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xae0d7a3d __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xae101a99 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae112956 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xae275eff rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xae2fcb10 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae5e0cc4 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xae64a9fc acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xae64c59c class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xae68971f nvme_remove_namespaces +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6c6383 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae841e4d devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xae8b9874 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xae8dea1f attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xae93fc7d noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xaead056f report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xaeaf1ec0 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xaecc0295 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xaed56236 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xaeda1e24 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaee5503c fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xaf02a837 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf090ea0 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf1515a6 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xaf184002 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL vmlinux 0xaf18b55b device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xaf18f399 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xaf2009fe devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf2b7ae7 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xaf307cff nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL vmlinux 0xaf3f3a29 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf40ba4c __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xaf45a464 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xaf4a9077 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0xaf5f682a aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xaf5f711f nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf7ad092 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xaf7d1a11 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL vmlinux 0xaf7fc51b acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xaf845560 vmbus_set_event +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xafa629e3 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xafbdbeec __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xafc33c72 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xafd7cd4d devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xafd87c49 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafdfe87e devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xafe1e1c1 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xafe7e985 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xafff2d1e crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb0025fbd edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xb00e5b57 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xb018b019 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xb0205703 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xb0496ff0 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07b2a3d __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xb088900a ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xb09bc71d pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xb0a6a593 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb0ab143c pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xb0b1d32a devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0b434fc gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0d6ea32 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xb0e6ae5d cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xb0f3c55a relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0f5db4c usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xb0fbb722 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xb1059089 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb111aaa3 dw_pcie_read_dbi +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 0xb11f005e edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xb12009ff nvme_fail_nonready_command +EXPORT_SYMBOL_GPL vmlinux 0xb13e32ba get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb16cf97c dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb17e38ac blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb194f0ba irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xb1a2a9f0 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1cb59d3 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0xb1dcec80 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0xb1de5b9a crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1fa5646 icc_get +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb213fa6b transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xb214a9bd pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xb218e629 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xb21eac39 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb2528f92 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0xb25e09b5 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xb26066fe ibft_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xb260e357 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xb2613efe acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0xb26665df nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0xb26855fd crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb29afb64 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xb2b13561 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb2b48c81 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xb2beabad blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2cd0f27 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0xb2ce44cd sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xb2d3ea3b sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb2de4cf2 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2ea3fe1 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb3615c5c blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0xb3802723 uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0xb3814ebd shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xb3902da4 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xb3922bb6 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0xb3df11d0 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb3e6e60a __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xb3f56fab phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xb41459e2 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xb41e2c84 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb420a7a1 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xb425d11c cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xb42dfb68 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xb42fac68 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xb4333472 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb44a177c __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb455e675 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb457d8bc crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xb4590339 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xb466cfe0 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xb47b43f2 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xb47eedfb usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb49de913 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xb4a73bb1 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c2b9dc crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xb4c386a2 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xb4d97696 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xb4e2f66d pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xb4ea411a rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f8bd0f usb_check_int_endpoints +EXPORT_SYMBOL_GPL vmlinux 0xb4ff2917 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xb4ffd54c get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb50e3ad3 ata_sff_dev_classify +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 0xb52debef get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xb52eb6f2 get_device +EXPORT_SYMBOL_GPL vmlinux 0xb537d627 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5389099 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0xb542f60a dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb5479a49 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xb5569c79 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb56163cb cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xb57186ba int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0xb5973939 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5aea948 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xb5b5ae78 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xb5b94660 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xb5bd9e36 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xb5c67546 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xb5c7f70f blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xb5d0ff09 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb5f0d185 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xb5f7b050 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0xb5f93c2c tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0xb60da3e6 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xb6100525 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xb612f308 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xb61ceab3 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb63366c1 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb63b8c30 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb64c0430 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0xb653b231 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb65746e9 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xb65d857b security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb66d581b __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xb671bab1 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xb672d3c7 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb675f10c fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xb6763a30 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb67ccbd2 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb68f7987 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xb6904cc1 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xb6988bcc __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xb6a42955 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xb6ae7a27 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xb6b580a1 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xb6bfb9dc devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xb6c5e614 acpi_processor_evaluate_cst +EXPORT_SYMBOL_GPL vmlinux 0xb6cea671 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xb6d5487b wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xb6d6a19c dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xb6d6bad4 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6eabe37 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb71b78c6 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xb72944db tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xb72d57b7 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init +EXPORT_SYMBOL_GPL vmlinux 0xb7759b2b irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb782b5ec gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cbdd3c __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb7cdb9f0 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb7ff43bb d_walk +EXPORT_SYMBOL_GPL vmlinux 0xb8194836 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb81d5cec gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xb81f6ad2 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xb8207844 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb83c6056 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb8432196 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xb8526390 __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0xb85fdfd6 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xb8769e10 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xb87ae6a4 hv_ghcb_msr_write +EXPORT_SYMBOL_GPL vmlinux 0xb87c7d79 trace_event_buffer_lock_reserve +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 0xb8938b8b fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8b92cc8 irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0xb8bbba11 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8cfbda9 nvme_wait_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb8d4b7c5 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xb8db8817 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0xb8df23f0 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb901837d regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xb905e6a3 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb9415f15 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb968dab0 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xb97f3a46 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0xb99076d2 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xb99c2943 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xb9a8b543 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xb9b5226f crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xb9b9206c gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9f7ef7d __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xb9fdfccd __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0xb9ff24d1 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xba040b4b mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xba0963aa dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xba106697 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xba13b119 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xba195bc2 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba28c88f nvme_stop_keep_alive +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba59cc00 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xba5f4e98 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xba7871dd tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xba7c753d mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba82f246 uv_bios_install_heap +EXPORT_SYMBOL_GPL vmlinux 0xba83507c iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0xba90c41e sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xbab7b80b acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xbad0aff8 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0xbad81f8c uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0xbae331f3 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xbaefea32 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xbaf1b601 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbaf7537e crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb26725e attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xbb267e1c spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xbb2c3ff9 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbb2ef751 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xbb52c6ff __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xbb5598ce get_llc_id +EXPORT_SYMBOL_GPL vmlinux 0xbb5f670c zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb684783 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6d5f69 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb83c8b6 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xbb90ce84 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb9eb819 blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xbb9f1e42 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xbbabc840 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xbbac9cdf ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbbdf237 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xbbbe1046 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xbbc50236 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0xbbc57d0f serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xbbd2da75 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xbbdc6841 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbeb78a9 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0xbc1114b0 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xbc13fd7e tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xbc220f0a __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbc3458ec phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc4e24bb copy_mc_to_kernel +EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbc6627e9 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xbc664c2c bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc77626d pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xbc83e3c2 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xbc8473f7 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xbc9505c2 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xbc958f1c fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbcaa30d9 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbcbdb766 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbcbf1c17 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcc6d4f1 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xbcc6d62e iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce4a4e4 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xbce51771 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcfa1ab4 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xbcfcc46a shake_page +EXPORT_SYMBOL_GPL vmlinux 0xbd07c514 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xbd0d7d75 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xbd221198 devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbd2f5753 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd50afa8 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xbd55dbb9 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xbd74bfe4 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd7d6f46 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xbd9b7368 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xbda07fb6 __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xbdafff5e ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa +EXPORT_SYMBOL_GPL vmlinux 0xbdbc5fdd __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0xbdc4ef9c n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xbdea84e6 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xbdf35f44 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xbe0502af ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xbe0c3783 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xbe143f3c vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xbe1f4fa8 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xbe233961 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xbe25577b regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xbe3d16ac pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xbe4a88fe ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe644d38 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xbe653b7e spi_mem_dirmap_destroy +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 0xbe6d8576 nvme_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbe6f4fbe debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xbe89bebe md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xbe8f760d rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea0bf03 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbebd091d devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbedccfc5 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xbee16f9d iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0xbeebcd43 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf13fc91 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xbf165dec __SCT__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xbf2c1f86 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xbf31ac15 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xbf32ea55 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xbf535a56 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xbf5969ea crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xbf5e76bc of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xbf61db67 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xbf6d8806 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xbf84e59f dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xbf87e740 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xbf8c7f10 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xbf8c88c1 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0xbf8f6efc device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xbfb0bc90 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc897ac nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xbfe06048 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xbfeebf92 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xbff45eaa debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xbff87a49 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xc00a47ac pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xc010448e thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc01247dd tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xc0178d90 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xc0285820 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xc03c62a2 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xc03fcf34 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc0519b5b devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0xc057da7e fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xc069a61c iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0xc07f60cb virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0c6755c iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xc0ca4519 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL vmlinux 0xc0d40313 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc11932b3 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xc11de42d devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xc13d8b78 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL vmlinux 0xc15058d5 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xc1690c08 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17e44c5 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xc18cdf36 amd_df_indirect_read +EXPORT_SYMBOL_GPL vmlinux 0xc1a67525 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xc1a8e7b8 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0xc1b1d6b5 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xc1b5dcc3 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xc1bcf63b task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xc1cad9bf crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc1caf534 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL vmlinux 0xc2033d9f amd_get_highest_perf +EXPORT_SYMBOL_GPL vmlinux 0xc20f2898 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xc214c3ee set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xc21c4385 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xc2211161 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xc2218d9c pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc23601c1 __SCT__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xc244b82c pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2659e37 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc2790384 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xc27c7b23 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2897073 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc292d90e dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2ab175f pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xc2b5e9f4 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2c3066e pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xc2c6f7ce blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0xc2d3e0a6 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xc2d55962 work_on_cpu_key +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2fb483f __SCT__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xc3329c64 apic +EXPORT_SYMBOL_GPL vmlinux 0xc3407a40 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34435e4 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xc3636b4d pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xc36d4fc7 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xc36d90bd skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc373d95c tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc385c1c5 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp +EXPORT_SYMBOL_GPL vmlinux 0xc3af82c8 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xc3b81250 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3d77f54 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e4f1ec bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3ef540b dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xc3f981c1 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xc3fed105 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0xc40beebf virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xc4163a23 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0xc41b4c14 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xc420a78b lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xc421a00b fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42f2396 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc45587b2 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xc45b702a __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xc45d0d13 injectm +EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc4630ead acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc4729305 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xc47bae3e dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL vmlinux 0xc4977cf7 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc4991a2c xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4a92302 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xc4c8f1a5 blk_ksm_intersect_modes +EXPORT_SYMBOL_GPL vmlinux 0xc4d022cb __SCT__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xc4e0e7da virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4f76d27 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc50223c7 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xc50b06e8 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xc50dca33 __SCT__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc5387075 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc54130b5 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xc5416239 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc56d77a8 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc58385f1 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xc585cfba init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc591c11f dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5d6a237 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xc5d6b1b0 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xc5d99f9a iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc5e23296 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xc5f5e9e9 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0xc5fdf303 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xc6005d6b fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xc604ab28 __SCT__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xc6054456 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xc6095ff4 nvme_wait_reset +EXPORT_SYMBOL_GPL vmlinux 0xc61791d9 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc62d49df crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0xc62fb05b blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xc6435a70 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66fc4b8 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted +EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6ab4e0f spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xc6cf167d devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xc6d96f18 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6eec8f5 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xc6fcd0c7 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc767ac64 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xc76805f1 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xc769cdb4 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xc76f8048 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0xc77ef76d pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc78f5b08 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xc7919191 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xc79bee7c switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a6ac98 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7ae150f tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc7affb21 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc7bb68ce gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xc7be7dc2 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xc7c51c84 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc7dfd66e user_read +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7e85025 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xc7eafbd1 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0xc7ebe35f devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7fcfa66 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc802877a led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xc806bb1c umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xc8141173 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0xc820c35f sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xc82863f1 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc831a80f genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc83c9f73 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc874d710 hv_unmap_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc87db18b fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xc8894cfd ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xc8bf4593 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8f5f6d9 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xc904f45c rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xc91c4973 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xc91ee1b5 __SCT__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc924086c regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc9351d9c sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xc93a662f devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc94e9137 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc956e52f devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xc96132cb gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc9731956 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc989ef36 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xc98c278d edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xc98c96ce register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xc98e556d devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc991c03f __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0xc9a14c36 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xc9a4b416 copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xc9b62902 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xc9c118f8 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca02e108 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xca0de663 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xca169648 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xca183b76 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xca242955 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xca4032b4 vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL vmlinux 0xca414f37 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca700069 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca7eb00e thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xca926797 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xca94063a usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xca9743a5 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xca984677 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xca99985a ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcaa4af74 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0xcab70c03 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcad23dd4 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb02579c iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xcb03ecf4 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcb09eb3f device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xcb0f4113 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb17758e cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xcb9f81c9 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xcba1f9cd dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xcbb46ca0 misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0xcbbff0e1 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xcbc3acb2 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xcbcc0360 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0xcbd9caf3 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbeac76c regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xcbf54369 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xcbfdf072 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0xcc09b556 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc24336d __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xcc26bfed raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc312197 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc36ec0a devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc542ed0 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xcc59ab9a __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xcc5b06cd relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xcc602f02 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xcc662ae7 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0xcc6a3513 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xcc6f7908 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc980d09 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xccce1fbf genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xccce5cf4 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xcce600e6 acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccf10086 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xccf396a3 x86_perf_get_lbr +EXPORT_SYMBOL_GPL vmlinux 0xccf46ff2 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xcd0d80d2 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd255bdf balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xcd30d00a device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xcd389142 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory +EXPORT_SYMBOL_GPL vmlinux 0xcd4d0d14 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd5b68c5 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xcd609ff0 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return +EXPORT_SYMBOL_GPL vmlinux 0xcd8e8f82 uv_bios_enum_objs +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda460cd tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xcdaade97 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xcdb637c0 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdb777ff devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xcdc049fe spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xcdc393ee scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd47b4b tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcdff0e5b debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xce19f653 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xce22763c __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xce321402 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xce39b4dd sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xce3c5bb6 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xce644b4c thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xce64a55d fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce70f689 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xce77ac05 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xce889905 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xce8e951c perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xce945996 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xce96805c usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xce985658 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu +EXPORT_SYMBOL_GPL vmlinux 0xcebe83d4 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xceca341e clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xced78efd fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee94d7e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xcf02ab71 __SCT__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xcf173c00 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0xcf431733 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcf540422 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xcf7c0efe handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xcf906434 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xcf9d0cbd dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xcfa173cb udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xcfa69895 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xcfab2205 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xcfb17d1b __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcfb56b54 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0xcfc3f655 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc6fcbb skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xcfd548b9 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xcfd82927 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xcfe336aa class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xcfebe882 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xcff210a1 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcff647a3 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xd0108318 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xd011fb47 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xd0177a65 acrn_setup_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0xd02f15e6 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd03161d8 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd04ad5b9 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd059610b serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd062f722 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0741286 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xd07907c8 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xd087d3da sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xd08ef671 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0b903d7 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c7e9b7 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xd0d0f4c7 rio_request_mport_dma +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 0xd0f1c178 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xd0f57b33 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xd11008dc vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL vmlinux 0xd1132fe5 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xd116cc66 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0xd1171af7 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xd1289495 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xd13371fc bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xd13a94d1 __SCT__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd1469a87 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd15ea542 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xd164103d devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xd164c976 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xd1752f57 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xd1a77b60 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xd1aa3fce device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xd1b5a0fd icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1da898e led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd1e87567 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xd1e9af3d devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xd1e9b2ad __SCT__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f428bb rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xd1ffdf3f mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xd207444c devm_pinctrl_register_and_init +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 0xd24403ac fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xd245ae64 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0xd249a56b md_start +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd26ddb55 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xd26e1629 acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xd270c7ad regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd281ded8 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xd2826499 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xd29e8e0f mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xd2a7c7a0 udp_sock_create6 +EXPORT_SYMBOL_GPL vmlinux 0xd2acbd4d rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xd2aeefb9 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2c33aee tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xd2dd45e0 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xd2e40edc power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd2e76bcb irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xd2eef2bf crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd3048323 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xd3132a9b pinctrl_select_default_state +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 0xd34bbb14 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xd3529860 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd3887587 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3b0e1a1 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3f0335b sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd3f94d39 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xd402934f ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4189e04 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42ac3df gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd43b6bc4 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xd4404350 __SCT__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xd4471629 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd452d128 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xd4532354 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd4724adf crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd4965829 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd49e6d8a event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xd49fb695 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xd4a6f0b5 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xd4ab7f27 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4ba217e vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4e944e6 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xd4ec429c usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd51cd337 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd53913b5 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd55e4486 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xd564b69a phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xd570b68f spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5838e7d fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xd58b6d5d device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd59e2e2a bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0xd5a675c6 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xd5ac3380 __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xd5b72df7 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xd5c72a09 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0xd5c77c17 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xd5c7ccc1 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xd5d24d95 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0xd5eb0d4e acpi_register_lps0_dev +EXPORT_SYMBOL_GPL vmlinux 0xd5f2792c tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xd5f3c595 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd5f8b4b8 kill_device +EXPORT_SYMBOL_GPL vmlinux 0xd610c4fc led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xd6175b5d ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xd61d11d9 __devm_intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0xd632aef4 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xd634ec91 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xd63581e3 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xd63c67d5 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd65a7182 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd68b9ea3 dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0xd694195c usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xd6a718ad crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xd6c38323 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xd6dcfcf3 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xd6e2e2a8 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xd6eece55 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xd6fa5ecc gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd715b335 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control +EXPORT_SYMBOL_GPL vmlinux 0xd727f1a8 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72b9541 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xd7362cb2 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd742b779 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xd7520eb2 dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xd7599f5c xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd75bd605 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xd7651fef __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd77cf905 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd7986799 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xd7ac0812 usb_add_phy +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 0xd7ceab02 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7f894ad subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xd823e646 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xd84767d9 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd84e6fe4 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8a35b07 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0xd8a8f42a irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xd8b41614 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xd8b8060e device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xd8c27679 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd8ca33e2 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd8d065dd hv_stimer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8e2aca7 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xd8f9432a clk_register +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd923b123 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd9353546 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xd93a7ef2 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xd95fca39 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd975864d __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xd98e275d extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd9992eb4 uv_bios_get_geoinfo +EXPORT_SYMBOL_GPL vmlinux 0xd99a6675 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0xd9aaf7a1 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xd9ad279d relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xd9ae3d63 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xd9b00b47 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xd9b7b0ba perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd9bb1675 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xd9c164e2 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xd9c55377 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9e528f6 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xd9e932a8 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda0fa647 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xda0fe189 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xda1c33de bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda3597a9 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xda3f56bd tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xda506e2f dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xda6fd5c4 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda7cab22 devm_blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0xda8369a7 __traceiter_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda99ed31 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdab55e66 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdab6443d relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xdab68eeb icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0xdac71caa vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xdaed9c8e dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb3498ab kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xdb4c543c list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xdb4e3a35 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xdb58b89a blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xdb5a25c0 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xdb62dc67 __SCT__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb8004b1 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe8b021 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf50b1c posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc1b9c82 nvme_cancel_request +EXPORT_SYMBOL_GPL vmlinux 0xdc29ac1c balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xdc2b8174 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc6afcde __SCK__tp_func_unmap +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 0xdc9739f6 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca0c977 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xdcbbf00a __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xdce2f25a skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xdce5444e regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0xdcf33a22 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd096cfc device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xdd293def ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdd2fa6fb da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xdd339fa5 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd4253c7 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xdd4db267 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xdd9bea26 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xddad2ace __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xddb69c30 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddcb0144 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xdde1e1ad fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find +EXPORT_SYMBOL_GPL vmlinux 0xde11bfee fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xde1eecf6 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xde24dfe1 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xde264f2c gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0xde269307 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xde2725a0 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xde56ff04 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xde6d62d7 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde7da3a3 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xde8dac84 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xde8e8f2c __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xde924210 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xdec4bfd7 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xdee3cbe3 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdee6b33b md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xdefbb1c4 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xdefe69fd __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf4e1d75 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xdf564aca firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0xdf633ecd irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free +EXPORT_SYMBOL_GPL vmlinux 0xdf9dd086 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xdfad2c73 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xdfaffc0e phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xdfb0e541 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xdfb1f2ea iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0xdfbff174 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xdfc8779d devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xe0129fcc usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xe01f76f7 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xe02b8aac led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xe02f6e5f dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0xe02ffe2d vmbus_request_addr_match +EXPORT_SYMBOL_GPL vmlinux 0xe030db2a extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe0352125 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xe0396cad pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe04c78db __SCT__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xe04e3157 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xe04e79ce synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe060e3c5 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe06e9a0e dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xe06f1af3 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xe075c146 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe098ae6e vmbus_setevent +EXPORT_SYMBOL_GPL vmlinux 0xe0a88ef2 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b26667 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xe0b84192 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xe0b89eb5 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0cbd5a6 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xe0d16bf6 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe0d39f1c sgx_set_attribute +EXPORT_SYMBOL_GPL vmlinux 0xe0de9190 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1095f1d __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe11a7ac9 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xe12b3db3 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xe134cecc irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xe138c68f skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xe13db712 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xe13eef62 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xe1491e78 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe149497b regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe167dc3d init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1864db4 acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xe1a5ab79 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xe1a6b23b inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xe1b29781 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c123d1 tick_nohz_dep_clear_task +EXPORT_SYMBOL_GPL vmlinux 0xe1c24612 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx +EXPORT_SYMBOL_GPL vmlinux 0xe1c8ff8a tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xe1d0ba66 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xe1d878f1 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xe1f7e283 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xe202916d perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xe213dccc sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xe227dbb6 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xe229cb87 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe2410f8f __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xe24a8ce4 tty_put_char +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 0xe280db5d bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xe28bfcc0 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe29f30f0 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2ec330c wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xe2effe97 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xe2f6fb07 ip_tunnel_init +EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe314ed97 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xe33997c9 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xe33b13c0 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xe340e0ad virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xe3497566 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xe34fa4dc phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xe3570b29 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xe36b8577 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xe36f5f7d ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a60db5 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3c39cfd nvme_stop_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3d46f2e vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0xe3de1056 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xe3e88acb __get_current_cr3_fast +EXPORT_SYMBOL_GPL vmlinux 0xe3eb3363 nvme_delete_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xe3eb81e5 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xe4038bb8 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe40c0639 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0xe40f80b5 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0xe411bd1d device_add +EXPORT_SYMBOL_GPL vmlinux 0xe4167d5c acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe42f6595 d_exchange +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe45a019e inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xe4625210 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xe46e5f5a vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xe4805562 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xe48d7826 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xe4918f15 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4ace1e5 skb_complete_wifi_ack +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 0xe4cc9f85 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xe4d4696f vxlan_fdb_replay +EXPORT_SYMBOL_GPL vmlinux 0xe4e226b1 strp_init +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4e4f307 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xe502fddf ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xe50a7306 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe51cad70 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xe52137b4 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL vmlinux 0xe528aa70 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xe552c1d8 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xe5595b40 dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xe5661444 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xe568a71e security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xe574d9b1 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xe57c2612 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5bad085 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5c94575 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xe5cca654 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xe5d6997a amd_iommu_is_attach_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe5e013b4 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xe5e0f72d fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0xe5efa537 udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0xe5f73406 hyperv_write_cfg_blk +EXPORT_SYMBOL_GPL vmlinux 0xe5f83559 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe613e58e devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xe6174f44 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe6742e32 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xe674de81 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xe675a085 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xe69a5a6e aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xe6a9713b __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xe6ac2f2b regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xe6ae21a7 clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0xe6b6af83 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xe6be7cf6 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xe6cde097 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe6d13cc2 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xe6d40511 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xe6dd4956 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6eef3f7 regulator_bulk_force_disable +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 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe740b58a hv_vp_assist_page +EXPORT_SYMBOL_GPL vmlinux 0xe74eab4e sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe790530e rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xe791df1f rcu_nocb_cpu_deoffload +EXPORT_SYMBOL_GPL vmlinux 0xe7982d73 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xe79b24c9 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe7b150a9 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xe7b452a5 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7e9b19f scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xe8004a88 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8199ff8 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xe81f68f9 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0xe827445a __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe83e5032 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation +EXPORT_SYMBOL_GPL vmlinux 0xe848932c cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85353bc pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xe861e969 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8675239 devm_intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xe86d54f8 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xe8847313 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xe88566e9 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xe886665c led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xe89fa22f ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xe8a31a17 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe8aa5306 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xe8ba9157 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8c53d6a sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xe8d3cd9b devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xe8d8e005 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe8dc75c8 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0xe8df7d31 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xe8e235c8 arch_static_call_transform +EXPORT_SYMBOL_GPL vmlinux 0xe8ed2394 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xe90e164c bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe923f3d3 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xe937a95e tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0xe93a4679 hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9526582 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe95d4807 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xe95fe10a regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xe9c78772 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d7ba5a serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xe9fadf16 __SCT__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xe9ff9d28 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea02d092 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea26d94d pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea3d5c60 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xea435080 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xea4aa755 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xea4cf947 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xea5ed373 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xea61d188 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xea78fb95 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xea7abd13 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xea95a047 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xea992873 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xeaacc2f5 store_sampling_rate +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 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeb177c68 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xeb3bf7d4 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xeb3d2647 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xeb5955e0 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xeb94536f x86_platform +EXPORT_SYMBOL_GPL vmlinux 0xebaba765 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xebb12f7e perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebeb2898 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xec04e0f2 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xec0a85bd set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xec40dc0e ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xec40dda9 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xec56268b pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xec562ae1 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec59a8eb rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec667417 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xec7477fe iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0xec8071ce transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xec8b7e9f platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xec8bfd51 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xec9ecaac debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xeca43192 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xecaa8cf6 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xecae4c02 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xecc8ac2f fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xecf080c1 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xed00ba18 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xed0ab523 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xed157262 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xed161f5f debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xed1e1ddf bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xed2ece1d fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed42d135 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xed52ef28 ip_tunnel_newlink +EXPORT_SYMBOL_GPL vmlinux 0xed620eff ip_tunnel_setup +EXPORT_SYMBOL_GPL vmlinux 0xed770b61 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xed911f29 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xeda437f9 dev_dax_probe +EXPORT_SYMBOL_GPL vmlinux 0xeda9ebe8 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xedacd24d devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xedc59b6f crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xedc73ea3 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0xedcb43a8 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedd5ab48 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xedd73983 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xedd96800 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xede98ec5 intel_pt_validate_hw_cap +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xedec0a9b sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xedecc0ed irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xedf3eb22 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xedf5c700 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0xedf64b9e __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee28e0ff gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xee3056e6 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee463caf __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xee4b3d23 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee52867a pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xee53b84e serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0xee54ccdd l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xee5d5e01 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xee5fc6e0 sysfs_remove_link +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 0xee82b40d acpi_nfit_desc_init +EXPORT_SYMBOL_GPL vmlinux 0xee914ce0 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xeea20374 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xeeaac003 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xeeab8650 smca_get_long_name +EXPORT_SYMBOL_GPL vmlinux 0xeead9d3f regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xeec20bed bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xeece94ae skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xeed52f88 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xeed59084 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run +EXPORT_SYMBOL_GPL vmlinux 0xeee504e9 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xeee5c182 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent +EXPORT_SYMBOL_GPL vmlinux 0xeefa9876 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xef018806 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xef12af19 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xef1cf8f9 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0xef1f38af ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef2223b9 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xef36802d pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xef393a79 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xef3a70aa __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xef3e5188 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef490e36 vfio_assign_device_set +EXPORT_SYMBOL_GPL vmlinux 0xef54a909 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xef5b2d9f shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef639623 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef71a1bc vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xef744bb5 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xef7a72e9 perf_event_period +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 0xefa826bb fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xefc4a82b pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xefc67e46 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xefc799d7 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xefd43914 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xefd9411c blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xefd9e149 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xf01d8192 __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xf0259d90 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xf026ae8c irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf028f9ca ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xf0333332 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf056271c __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf06e7e98 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xf0718472 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf091cbfc clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xf099ea64 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xf0a02bb9 device_del +EXPORT_SYMBOL_GPL vmlinux 0xf0a0c69d init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xf0a8db45 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0b1abc4 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0xf0b5be91 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf0c975bb uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0d37539 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xf0d478c7 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xf0d522ba debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xf0df4ac8 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xf0f3f9db crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xf0f4da70 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xf0fb0b89 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL vmlinux 0xf1010237 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xf1108371 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xf112ac3a sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xf12e2668 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xf1334507 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf144561d scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xf1556c24 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xf16e2077 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf175fd37 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf197cf59 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xf1a9067f __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf1ba7794 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xf1c23cac perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xf1cd8929 kvm_read_and_reset_apf_flags +EXPORT_SYMBOL_GPL vmlinux 0xf1ce5eb6 usb_for_each_port +EXPORT_SYMBOL_GPL vmlinux 0xf1e52e9b crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xf1e78789 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xf1ebbba5 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xf210119d vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xf21470b2 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xf21bfc57 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf22d0534 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xf2620c4a subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf262cbf9 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xf26537d8 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0xf2657c8d usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf2657ea0 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xf2817688 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf29094ca elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf29ffccb crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xf2a10a23 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2b3cdaf clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xf2c53d53 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xf2e8c124 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xf2ef9e4a input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xf2efe682 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf3035a35 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0xf307279a crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf3189f7e __uv_cpu_info +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf3220742 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf3364681 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xf3512630 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf364d610 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xf366e7f4 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xf374b05c irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38982dd nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xf395cdc6 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xf39aee75 perf_msr_probe +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3e73b80 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf3f75878 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xf418e1a8 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xf41e2112 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xf42dcb74 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xf4317ec2 ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xf447b372 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xf44c3eb3 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xf45c8d11 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf46256cf usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xf4658492 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf468c19d __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xf4707cf4 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf470dc19 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xf4715073 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf482d46f regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xf490236a perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xf4a220bc ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xf4ad6e52 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4d24493 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf4d9377e iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xf4dd89bf uv_get_hubless_system +EXPORT_SYMBOL_GPL vmlinux 0xf4e1db5f __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xf4e35e28 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xf4f69d1f clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xf520173d blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xf5215620 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xf53042e4 gpiochip_lock_as_irq +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 0xf5590741 __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf5653bf1 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xf5727181 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xf59575ed of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5a988fd ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xf5b6c42d blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xf5c3c3d8 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xf5e8e98b mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xf5e9218b dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf600dcc5 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xf6024174 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xf6061cec badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xf6137d3b shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xf6251cd6 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xf62e7892 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf6529552 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf6654b14 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xf66ba8e1 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xf68ca333 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6acdf3d ip_tunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xf6c39e9b usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c7ff35 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6cbe3cd root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6d2c0bb devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6e923cf dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xf6eb69f7 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xf70f39d7 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xf728e552 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf72dd161 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xf735c795 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xf74233b3 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xf744298f hv_unmap_memory +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 0xf75c8288 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xf75d3750 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data +EXPORT_SYMBOL_GPL vmlinux 0xf7753c30 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf7830bbc net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xf7843bdc ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf7a43681 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xf7a8da35 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7b988c3 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf7bc11fc __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c2f1a7 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xf7d423d8 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xf7d59f28 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xf7daa5f8 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0xf7fdc206 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xf81f3d10 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf828afe9 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xf8290826 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xf82e455c __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xf8323f49 nvme_start_freeze +EXPORT_SYMBOL_GPL vmlinux 0xf8360f0b driver_find +EXPORT_SYMBOL_GPL vmlinux 0xf836f569 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xf8384246 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xf844a9da regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xf86644c3 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0xf873d4dc fpu_copy_uabi_to_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0xf87b12f4 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf87d6445 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt +EXPORT_SYMBOL_GPL vmlinux 0xf884800b rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xf884f88a fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xf8891037 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xf8a5de8e fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xf8bdfa68 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xf8d4553c cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xf8d91401 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xf8ea6ea2 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f7db69 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xf8f9421a dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf8f9d508 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr +EXPORT_SYMBOL_GPL vmlinux 0xf8ffb66c genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xf90495e6 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf907d54a efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xf918ca50 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xf921f77a scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xf92978ee sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xf933b046 vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0xf93ebfed rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf9878e3e devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9afaf47 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free +EXPORT_SYMBOL_GPL vmlinux 0xf9bdf8e3 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xf9c0df8c usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xf9c6e0b6 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xf9d8cd14 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xf9e05afd fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xf9e33fde sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0xf9ef2ee7 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0xfa07d67e regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xfa15789d gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa48486b spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xfa50ac7e iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xfa510926 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa696247 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xfa7f151a gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xfa83e4ee clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xfaa1588b rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xfab17f21 __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfab865e9 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0xfaca8147 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xfad4f4e2 __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfaf6ac77 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0xfaf885c9 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xfafa30b0 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xfb0f626c filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0xfb158713 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xfb26b6b8 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb5693b5 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb871a87 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xfb9033a1 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xfb921e00 hvpci_block_ops +EXPORT_SYMBOL_GPL vmlinux 0xfb928641 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xfbbcbc4e firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbbdb341 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xfbffcdbc kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc001c17 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xfc03a4ca proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc05c246 component_add +EXPORT_SYMBOL_GPL vmlinux 0xfc0c06cc node_to_amd_nb +EXPORT_SYMBOL_GPL vmlinux 0xfc0ebd34 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL vmlinux 0xfc143c22 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc228133 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc56e520 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xfc5b2fe1 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xfc9002ba vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xfcae2fe3 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xfcb6d1ac wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcbffdbb acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcca5424 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xfcd0a05b pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xfcd52561 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfcea99e5 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd16f8c1 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xfd37244c acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xfd397e92 __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xfd3aa681 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xfd3eeebd irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xfd4cfeee __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xfd561b93 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd7468b3 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xfd80f3c6 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xfd88ff0a __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xfd8a306e ping_err +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdc6a24b task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xfdd7e79a pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe0ba623 devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe2a5d03 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xfe2cf580 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xfe2d79af fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe4920dd platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xfe498cc4 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xfe4b1821 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xfe5aad0c divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfe5cdad1 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0xfe630038 iommu_sva_free_pasid +EXPORT_SYMBOL_GPL vmlinux 0xfe7954b8 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xfe7a84fe gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe90ab46 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea004e1 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xfea6431e unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0xfea930c4 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xfeabb79b dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xfeb6e51c net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xfebb4194 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xfec7dc11 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xfec812bc inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xfec99982 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xfecf3438 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xfed561ff divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xfef70905 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff069590 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff1da334 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff43d25a spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xff644152 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xff708f36 security_file_permission +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 0xff9b1020 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xff9b503e __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffadb6fa subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb141cd trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xffb9eb9f pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xffc0dec1 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xffc64028 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xffdca487 fat_free_clusters +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +IDXD EXPORT_SYMBOL_GPL 0x414c2f87 idxd_dmaengine_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x95e89a85 dsa_bus_type drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x9e6fae4a idxd_user_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xad152a38 idxd_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xb845bb5a __idxd_driver_register drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xd8fd5c74 idxd_driver_unregister drivers/dma/idxd/idxd_bus +INT340X_THERMAL EXPORT_SYMBOL_GPL 0x94c76e93 processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INT340X_THERMAL EXPORT_SYMBOL_GPL 0xff4fb3f1 processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +MCB EXPORT_SYMBOL_GPL 0x232cbe49 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x291a53eb mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3b3aecf1 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3b780b7d mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x57172621 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x69b87eb8 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x84732a11 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x94d13488 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa57d7eb9 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa7e7da8c mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc9afab4a mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd5d67607 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xecdeaedd mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xfb26a0b9 mcb_alloc_bus drivers/mcb/mcb +NET_MANA EXPORT_SYMBOL 0x051d5b68 mana_destroy_wq_obj vmlinux +NET_MANA EXPORT_SYMBOL 0x477fa3ee mana_uncfg_vport vmlinux +NET_MANA EXPORT_SYMBOL 0x59ee3ab2 mana_cfg_vport vmlinux +NET_MANA EXPORT_SYMBOL 0xaddac238 mana_gd_destroy_dma_region vmlinux +NET_MANA EXPORT_SYMBOL 0xb0f1d0e0 mana_gd_send_request vmlinux +NET_MANA EXPORT_SYMBOL 0xcb4f536b mana_create_wq_obj vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x22f2c9e9 nvme_ctrl_from_file vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x34b64d79 nvme_put_ns vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x53192388 nvme_command_effects vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x79f789b2 nvme_find_get_ns vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x9661d678 nvme_execute_passthru_rq vmlinux diff --git a/debian.azure/abi/amd64/azure.compiler b/debian.azure/abi/amd64/azure.compiler new file mode 100644 index 0000000000000..3a937869fbe68 --- /dev/null +++ b/debian.azure/abi/amd64/azure.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 diff --git a/debian.azure/abi/amd64/azure.modules b/debian.azure/abi/amd64/azure.modules new file mode 100644 index 0000000000000..6a2f047211735 --- /dev/null +++ b/debian.azure/abi/amd64/azure.modules @@ -0,0 +1,2622 @@ +104-quad-8 +3w-9xxx +3w-sas +53c700 +6lowpan +8021q +8139cp +8139too +8250_dw +8250_exar +8250_lpss +8250_men_mcb +842 +842_compress +842_decompress +88pg86x +88pm805 +88pm80x +9p +9pnet +9pnet_rdma +9pnet_virtio +BusLogic +a100u2w +aacraid +abituguru +abituguru3 +acer-wireless +acer-wmi +acerhdf +acpi_extlog +acpi_ipmi +acpi_pad +acpi_power_meter +acpi_thermal_rel +acpiphp_ibm +acquirewdt +acrn +act_bpf +act_connmark +act_csum +act_ct +act_ctinfo +act_gact +act_gate +act_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +ad7314 +ad7414 +ad7418 +ad9389b +adc128d818 +adcxx +adfs +adiantum +adin +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1177 +adm9240 +adp5061 +ads7828 +ads7871 +adt7310 +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adv7170 +adv7175 +adv7180 +adv7183 +adv7343 +adv7393 +adv7511-v4l2 +adv7604 +adv7842 +adv_swbutton +advansys +advantechwdt +aegis128 +aegis128-aesni +aesni-intel +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +aha1740 +ahci +ahci_platform +aht10 +aic79xx +aic7xxx +aic94xx +ak881x +alcor_pci +algif_aead +algif_hash +algif_rng +algif_skcipher +alienware-wmi +alim1535_wdt +alim7101_wdt +altera-msgdma +altera_jtaguart +altera_ps2 +altera_uart +am53c974 +ambassador +amc6821 +amd-pmc +amd-rng +amd-uncore +amd64_edac +amd_freq_sensitivity +amd_sfh +amdgpu +amdtee +amilo-rfkill +amlogic-gxl-crypto +ansi_cprng +apanel +apds9802als +apds990x +apple-gmux +apple-mfi-fastcharge +apple_bl +applesmc +applespi +appletalk +applicom +ar9331 +arc-rawmode +arc-rimi +arc_ps2 +arc_uart +arcfb +arcmsr +arcnet +arcxcnn_bl +arizona +arizona-i2c +arizona-spi +arp_tables +arpt_mangle +arptable_filter +as370-hwmon +asb100 +asc7621 +ashmem_linux +aspeed-pwm-tacho +aspeed-video +ast +asus-laptop +asus-wireless +asus_atk0110 +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +atc260x-core +atc260x-i2c +atc260x-onkey +atc260x-poweroff +atc260x-regulator +aten +atlantic +atlas_btns +atm +atmel-ecc +atmel-i2c +atmel-sha204a +atmtcp +atomisp +atomisp-gc0310 +atomisp-gc2235 +atomisp-libmsrlisthelper +atomisp-lm3554 +atomisp-mt9m114 +atomisp-ov2680 +atomisp-ov2722 +atomisp-ov5693 +atomisp_gmin_platform +atp +atp870u +atxp1 +auth_rpcgss +authenc +authencesn +autofs4 +ax25 +ax88796b +axi-fan-control +axp20x +axp20x-i2c +axp288_charger +b44 +b53_common +b53_mdio +b53_mmap +b53_serdes +b53_spi +b53_srab +ba431-rng +bareudp +batman-adv +bcache +bcm-phy-lib +bcm-sf2 +bcm54140 +bcm590xx +bcm7xxx +bcm_vk +bcma +bcmsysport +bd9571mwv +bd9571mwv-regulator +bd99954-charger +be2iscsi +be2net +befs +bfa +bfq +bfs +bh1770glc +binder_linux +binfmt_misc +blake2b_generic +blocklayoutdriver +blowfish-x86_64 +blowfish_common +blowfish_generic +bnx2 +bnx2x +bnxt_en +bonding +bpck +bpfilter +bq24190_charger +br2684 +br_netfilter +brd +bridge +bsd_comp +bt819 +bt856 +bt866 +btrfs +c_can +c_can_pci +c_can_platform +ca8210 +cachefiles +cadence_wdt +cafe_ccic +caif +caif_socket +caif_usb +caif_virtio +camellia-aesni-avx-x86_64 +camellia-aesni-avx2 +camellia-x86_64 +camellia_generic +can +can-bcm +can-dev +can-gw +can-j1939 +can-raw +capmode +capsule-loader +cast5-avx-x86_64 +cast5_generic +cast6-avx-x86_64 +cast6_generic +cast_common +ccm +ccp +ccp-crypto +cdc-acm +cdns-csi2rx +cdns-csi2tx +cdns-usb-common +cdnsp-udc-pci +cec +ceph +cfag12864b +cfag12864bfb +cfb +cfg80211 +ch +ch_ipsec +ch_ktls +chacha-x86_64 +chacha20poly1305 +chacha_generic +charlcd +chcr +chnl_net +cifs +cifs_arc4 +cifs_md4 +classmate-laptop +clip +clk-lmk04832 +clk-max9485 +clk-pwm +clk-si5341 +clk-si544 +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_u32 +cmac +cnic +coda +com20020 +com20020-pci +com90io +com90xx +comm +compal-laptop +cordic +coretemp +cortina +counter +cpcihp_generic +cpcihp_zt5550 +cpu5wdt +cpuid +cpuidle-haltpoll +cramfs +crc-itu-t +crc32-pclmul +crc32_generic +crc4 +crc64 +crc7 +crc8 +crct10dif-pclmul +crvml +cryptd +crypto_engine +crypto_safexcel +crypto_simd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +csiostor +ct82c710 +curve25519-generic +curve25519-x86_64 +cuse +cw2015_battery +cx25840 +cxgb +cxgb3 +cxgb4 +cxgb4vf +cxl_acpi +cxl_core +cxl_pci +cxl_pmem +da9052-hwmon +da9052_wdt +da9063 +da9063_wdt +dax_hmem +dax_pmem +dax_pmem_compat +dax_pmem_core +dc395x +dca +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dcdbas +defxx +dell-laptop +dell-rbtn +dell-smbios +dell-smm-hwmon +dell-smo8800 +dell-uart-backlight +dell-wmi +dell-wmi-aio +dell-wmi-descriptor +dell-wmi-led +dell-wmi-sysman +dell_rbu +des3_ede-x86_64 +des_generic +diag +dl2k +dlink-dir685-touchkeys +dlm +dm-bio-prison +dm-bufio +dm-cache +dm-cache-smq +dm-clone +dm-crypt +dm-delay +dm-ebs +dm-era +dm-flakey +dm-historical-service-time +dm-integrity +dm-io-affinity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dme1737 +dmx3191d +dnet +dp83822 +dp83869 +dp83tc811 +dpt_i2o +dptf_pch_fivr +dptf_power +drbd +drivetemp +drm +drm_kms_helper +drm_mipi_dbi +drm_ttm_helper +drm_vram_helper +ds1621 +ds1682 +ds620 +dsa_core +dstr +dummy +dummy-irq +dw-edma +dw-edma-pcie +dw-i3c-master +dw-xdata-pcie +dw_dmac_core +dw_dmac_pci +dw_wdt +dwc-xlgmac +e100 +e1000 +e1000e +e752x_edac +ebc-c384_wdt +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec_bhf +ec_sys +ecc +ecdh_generic +ecdsa_generic +echainiv +ecrdsa_generic +ee1004 +eeepc-laptop +eeprom_93cx6 +efa +efct +efi-pstore +efi_test +efibc +efs +em_canid +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +ems_pci +enclosure +ene_ir +eni +enic +epat +epia +eql +erofs +esas2r +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et131x +etas_es58x +ethoc +eurotechwdt +evbug +exfat +extcon-axp288 +extcon-fsa9480 +extcon-gpio +extcon-intel-int3496 +extcon-intel-mrfld +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-ptn5150 +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81601 +f81604 +failover +fam15h_power +fan +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_seps525 +fb_sh1106 +fb_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fcrypt +fdomain +fdomain_pci +fealnx +ff-memless +fieldbus_dev +fintek-cir +firestream +firmware_attributes_class +fit2 +fit3 +fixed +fm10k +fore_200e +fou +fou6 +fpga-mgr +freevxfs +friq +frpw +fscache +fschmd +fsl_linflexuart +fsl_lpuart +ftsteutates +fujitsu-laptop +fujitsu-tablet +g760a +g762 +garp +genet +geneve +genwqe_card +gfs2 +ghash-clmulni-intel +gigabyte-wmi +gl518sm +gl520sm +gma500_gfx +gnss +goldfish_battery +gpd-pocket-fan +gpio-104-dio-48e +gpio-104-idi-48 +gpio-104-idio-16 +gpio-adp5588 +gpio-aggregator +gpio-amd-fch +gpio-amd8111 +gpio-amdpt +gpio-arizona +gpio-bd9571mwv +gpio-da9052 +gpio-dwapb +gpio-exar +gpio-f7188x +gpio-generic +gpio-gpio-mm +gpio-ich +gpio-it87 +gpio-janz-ttl +gpio-lp3943 +gpio-lp873x +gpio-madera +gpio-max3191x +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mb86s7x +gpio-mc33880 +gpio-menz127 +gpio-ml-ioh +gpio-mockup +gpio-pca953x +gpio-pcf857x +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-pisosr +gpio-rdc321x +gpio-sch +gpio-sch311x +gpio-siox +gpio-tpic2810 +gpio-tps65086 +gpio-tps65912 +gpio-tqmx86 +gpio-vibra +gpio-virtio +gpio-vx855 +gpio-wcove +gpio-winbond +gpio-wm831x +gpio-wm8994 +gpio-ws16c48 +gpio-xra1403 +gpio_keys_polled +gpu-sched +grace +gre +gru +gs1662 +gtp +gud +gve +habanalabs +hamachi +hangcheck-timer +hci +hd44780 +hd44780_common +hdaps +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +he +hecubafb +hfi1 +hfs +hfsplus +hgafb +hi311x +hid +hid-cougar +hid-generic +hid-glorious +hid-hyperv +hid-ite +hid-jabra +hid-led +hid-macally +hid-maltron +hid-mf +hid-nti +hid-playstation +hid-redragon +hid-semitek +hid-sensor-custom +hid-sensor-hub +hid-steam +hid-udraw-ps3 +hid-viewsonic +hid-wiimote +hih6130 +hinic +hmc6352 +horizon +hp-wmi +hp_accel +hpfs +hpsa +hptiop +hpwdt +hsr +htc-pasic3 +hv_azure_blob +hv_netvsc +hv_sock +hwmon-vid +hwpoison-inject +hx8357d +hyperv-keyboard +hyperv_drm +hyperv_fb +i10nm_edac +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd-mp2-pci +i2c-amd-mp2-plat +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-cbus-gpio +i2c-core +i2c-cp2615 +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-dev +i2c-gpio +i2c-hid +i2c-hid-acpi +i2c-i801 +i2c-isch +i2c-ismt +i2c-mlxcpld +i2c-mux +i2c-mux-ltc4306 +i2c-nforce2 +i2c-nforce2-s4985 +i2c-nvidia-gpu +i2c-ocores +i2c-parport +i2c-pca-platform +i2c-scmi +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-via +i2c-viapro +i2c-virtio +i2c-xiic +i3000_edac +i3200_edac +i3c +i3c-master-cdns +i40e +i5000_edac +i5100_edac +i5400_edac +i5500_temp +i5k_amb +i6300esb +i7300_edac +i7core_edac +i82975x_edac +i915 +iTCO_vendor_support +iTCO_wdt +iavf +ib700wdt +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_qib +ib_srp +ib_umad +ib_uverbs +ibm_rtl +ibmaem +ibmasm +ibmasr +ibmpex +ice +icp +ics932s401 +ideapad-laptop +ideapad_slidebar +idma64 +idt77252 +idxd +idxd_bus +ie31200_edac +ie6xx_wdt +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifcvf +ife +igb +igbvf +igc +igen6_edac +ila +ili9225 +ili9341 +ili9486 +img-ascii-lcd +imm +ina209 +ina2xx +ina3221 +inet_diag +initio +int3400_thermal +int3401_thermal +int3402_thermal +int3403_thermal +int3406_thermal +int340x_thermal_zone +intel-cstate +intel-hid +intel-ish-ipc +intel-ishtp +intel-ishtp-hid +intel-ishtp-loader +intel-lpss +intel-lpss-acpi +intel-lpss-pci +intel-qep +intel-rng +intel-rst +intel-smartconnect +intel-uncore-frequency +intel-vbtn +intel-wmi-sbl-fw-update +intel-wmi-thunderbolt +intel-xhci-usb-role-switch +intel_atomisp2_led +intel_bxt_pmic_thermal +intel_bxtwc_tmu +intel_chtdc_ti_pwrbtn +intel_int0002_vgpio +intel_ips +intel_mrfld_pwrbtn +intel_oaktrail +intel_pch_thermal +intel_pmc_bxt +intel_powerclamp +intel_punit_ipc +intel_qat +intel_quark_i2c_gpio +intel_sar +intel_scu_ipcutil +intel_scu_pltdrv +intel_skl_int3472_discrete +intel_skl_int3472_tps68470 +intel_soc_dts_iosf +intel_soc_dts_thermal +intel_soc_pmic_bxtwc +intel_soc_pmic_chtdc_ti +intel_soc_pmic_mrfld +intel_tcc_cooling +intel_telemetry_core +intel_telemetry_debugfs +intel_telemetry_pltdrv +intelfb +interrupt-cnt +ioatdma +iommu_v2 +ionic +iosm +ip6_gre +ip6_tables +ip6_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_twos +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipcomp +ipcomp6 +iphase +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipr +ips +ipt_CLUSTERIP +ipt_ECN +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipu3-imgu +ipvlan +ipvtap +iqs269a +iqs626a +iqs62x +iqs62x-keys +ir-imon-decoder +ir-jvc-decoder +ir-kbd-i2c +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-rcmm-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-xmp-decoder +irdma +irq-madera +isci +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isl29003 +isl29020 +isofs +isp1704_charger +isst_if_common +isst_if_mbox_msr +isst_if_mbox_pci +isst_if_mmio +it87 +it8712f_wdt +it87_wdt +ite-cir +iw_cm +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jfs +jme +joydev +jsm +k10temp +k8temp +kafs +kb3886_bl +kbic +kcm +keywrap +kheaders +kmem +ks0108 +ks0127 +ksmbd +ksz8795 +ksz8795_spi +ksz8863_smi +ksz9477 +ksz9477_i2c +ksz9477_spi +ksz_common +ktti +kvaser_pci +kvaser_pciefd +kvm +kvm-amd +kvm-intel +kvmgt +kyber-iosched +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +lan743x +lan9303-core +lan9303_i2c +lan9303_mdio +lanai +lantiq +lantiq_gswip +lapb +lapbether +lattice-ecp3-config +lec +led-class +leds-apu +leds-clevo-mail +leds-gpio +leds-lm3532 +leds-lm36274 +leds-lt3593 +leds-mlxcpld +leds-mlxreg +leds-nic78bx +leds-pwm +leds-ss4200 +leds-ti-lmu-common +leds-tps6105x +ledtrig-activity +ledtrig-audio +ledtrig-netdev +ledtrig-pattern +ledtrig-tty +lg-laptop +libahci +libahci_platform +libarc4 +libceph +libchacha +libchacha20poly1305 +libcrc32c +libcurve25519 +libcurve25519-generic +libdes +libiscsi +libiscsi_tcp +libpoly1305 +libsas +libsm4 +lineage-pem +linear +lis3lv02d +ll_temac +llc +llc2 +lm3630a_bl +lm363x-regulator +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmc +lockd +locktorture +lp +lp3943 +lp855x_bl +lp873x +lpc_ich +lpc_sch +lpfc +lru_cache +lrw +lt3651-charger +ltc2945 +ltc2947-core +ltc2947-i2c +ltc2947-spi +ltc2990 +ltc4151 +ltc4162-l-charger +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltpc +lz4 +lz4_compress +lz4hc +lz4hc_compress +m2m-deinterlace +m52790 +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac802154 +mac802154_hwsim +mac_hid +machzwd +macsec +macvlan +macvtap +madera +madera-i2c +madera-spi +mana_ib +marvell-88x2222 +marvell10g +matrix-keymap +max1111 +max14577 +max16065 +max1619 +max1668 +max197 +max3100 +max31722 +max31730 +max31790 +max63xx_wdt +max6621 +max6639 +max6642 +max6650 +max6697 +max77693 +max77693-haptic +max77826-regulator +max8893 +max8907 +mc +mc13783-adc +mc13xxx-core +mc13xxx-i2c +mc13xxx-spi +mcam-core +mcb +mcb-lpc +mcb-pci +mce-inject +mcp3021 +mcr20a +mctp +md-cluster +md4 +mdev +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-gpio +mdio-i2c +mdio-mscc-miim +mdio-mvusb +mediatek-ge +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mei-me +mei-txe +mei_hdcp +mei_phy +mei_wdt +memory-notifier-error-inject +men_z135_uart +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +menz69_wdt +meraki-mx100 +mhi +mhi_wwan_ctrl +mhi_wwan_mbim +mi0283qt +michael_mic +microchip_t1 +microread +microread_mei +mii +minix +mip6 +ml86v7667 +mlx-platform +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx_wdt +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxsw_core +mlxsw_i2c +mlxsw_minimal +mlxsw_pci +mlxsw_spectrum +most_cdev +most_core +most_i2c +most_net +most_video +motorcomm +moxa +mp2629 +mp8859 +mpi3mr +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpt3sas +mptbase +mptcp_diag +mptctl +mptfc +mptsas +mptscsih +mptspi +mrp +msdos +msi-laptop +msi-wmi +msp3400 +msr +mt6360-core +mt6360_charger +mt7530 +multipath +mux-adg792a +mux-adgs1408 +mux-core +mux-gpio +mvmdio +mvsas +mvumi +mwave +mxl-gpy +mxm-wmi +mxser +myrb +myrs +n411 +n5pf +n_gsm +n_hdlc +nbd +nci +nci_spi +nci_uart +nct6683 +nct6775 +nct7802 +nct7904 +nd_virtio +net_failover +netconsole +netdevsim +netfs +netlink_diag +netrom +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_syslog +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_socket_ipv4 +nf_socket_ipv6 +nf_synproxy_core +nf_tables +nf_tproxy_ipv4 +nf_tproxy_ipv6 +nfc +nfc_digital +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_hook +nfnetlink_log +nfnetlink_osf +nfnetlink_queue +nfp +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_reject_netdev +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +nhpoly1305 +nhpoly1305-avx2 +nhpoly1305-sse2 +ni903x_wdt +nic7018_wdt +nicstar +nilfs2 +nitro_enclaves +nixge +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nosy +notifier-error-inject +nozomi +npcm750-pwm-fan +nsh +ntb +ntb_hw_epf +ntb_hw_idt +ntb_hw_intel +ntb_hw_switchtec +ntb_netdev +ntb_transport +ntc_thermistor +ntfs +ntfs3 +nuvoton-cir +nv_tco +nvidia-wmi-ec-backlight +nvme-fabrics +nvme-fc +nvme-rdma +nvme-tcp +nvmem-rmem +nvmet +nvmet-fc +nvmet-tcp +nvram +nxp-c45-tja11xx +nxp-tja11xx +objagg +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +of_xilinx_wdt +ofb +omfs +on20 +on26 +opa_vnic +openvswitch +ov7670 +overlay +p4-clockmod +p8022 +padlock-aes +padlock-sha +panasonic-laptop +panel +panel-raspberrypi-touchscreen +panel-widechips-ws2401 +paride +parkbd +parman +parport +parport_ax88796 +parport_pc +parport_serial +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc300too +pc87360 +pc87413_wdt +pc87427 +pcbc +pcd +pcengines-apuv2 +pcf50633 +pcf50633-adc +pcf50633-gpio +pcf8591 +pci-epf-ntb +pci-pf-stub +pci-stub +pci200syn +pcips2 +pcmcia_core +pcmcia_rsrc +pcrypt +pcs_xpcs +pcspkr +pcwd_pci +pd +pdc_adma +peak_pci +peak_pciefd +peaq-wmi +pf +pg +phantom +phonet +phy-can-transceiver +phy-intel-lgm-emmc +phy-lgm-usb +phy-qcom-usb-hs +phy-qcom-usb-hsic +phy-tusb1210 +phylink +pi433 +pinctrl-alderlake +pinctrl-broxton +pinctrl-cannonlake +pinctrl-cedarfork +pinctrl-denverton +pinctrl-elkhartlake +pinctrl-emmitsburg +pinctrl-geminilake +pinctrl-icelake +pinctrl-jasperlake +pinctrl-lakefield +pinctrl-lewisburg +pinctrl-lynxpoint +pinctrl-madera +pinctrl-mcp23s08 +pinctrl-mcp23s08_i2c +pinctrl-mcp23s08_spi +pinctrl-sunrisepoint +pinctrl-tigerlake +pkcs7_test_key +pkcs8_key_parser +pktcdvd +pktgen +platform_profile +plx_dma +plx_pci +pm-notifier-error-inject +pm80xx +pmcraid +pn544 +pn544_mei +pn_pep +pnd2_edac +poly1305-x86_64 +poly1305_generic +powr1220 +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pptp +pretimeout_panic +processor_thermal_device +processor_thermal_device_pci +processor_thermal_device_pci_legacy +processor_thermal_mbox +processor_thermal_rfim +ps2-gpio +ps2mult +psample +psnap +pstore_blk +pstore_zone +pt +ptdma +ptp_clockmatrix +ptp_idt82p33 +ptp_kvm +ptp_vmw +pulse8-cec +punit_atom_debug +pvpanic +pvpanic-mmio +pvpanic-pci +pwm-beeper +pwm-dwc +pwm-iqs620a +pwm-lp3943 +pwm-pca9685 +pwm-regulator +pwm-vibra +pwm_bl +qat_4xxx +qat_c3xxx +qat_c3xxxvf +qat_c62x +qat_c62xvf +qat_dh895xcc +qat_dh895xccvf +qcom-wled +qcom_glink +qcom_glink_rpm +qla1280 +qla2xxx +qla4xxx +qlge +qnx4 +qnx6 +qrtr +qrtr-mhi +qrtr-smd +qrtr-tun +qt1050 +quota_tree +quota_v1 +quota_v2 +qxl +r8169 +radeon +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +rainshadow-cec +ramoops +rapl +raw_diag +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-astrometa-t2hybrid +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-beelink-gs1 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-ct-90405 +rc-d680-dmb +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dtt200u +rc-dvbsky +rc-dvico-mce +rc-dvico-portable +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-geekbox +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-hisi-poplar +rc-hisi-tv-demo +rc-imon-mce +rc-imon-pad +rc-imon-rsc +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-khadas +rc-khamsin +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-mecool-kii-pro +rc-mecool-kiii-pro +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-minix-neo +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-odroid +rc-pctv-sedna +rc-pine64 +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tanix-tx3mini +rc-tanix-tx5max +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-vega-s9x +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-videostrong-kii-pro +rc-wetek-hub +rc-wetek-play2 +rc-winfast +rc-winfast-usbii-deluxe +rc-x96max +rc-xbox-360 +rc-xbox-dvd +rc-zx-irdec +rdc321x-southbridge +rdma_cm +rdma_ucm +rdmavt +rds +rds_rdma +rds_tcp +realtek +realtek-smi +reed_solomon +regmap-i2c +regmap-slimbus +reiserfs +repaper +reset-ti-syscon +retu-mfd +retu_wdt +rfc1051 +rfc1201 +rfkill-gpio +rio-scan +rio_cm +rio_mport_cdev +rionet +rmd160 +rnbd-client +rnbd-server +rockchip +roles +romfs +rose +rp2 +rpcrdma +rpcsec_gss_krb5 +rpmsg_char +rpmsg_core +rpmsg_ns +rpmsg_wwan_ctrl +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt6160-regulator +rt6245-regulator +rtc-ab-eoz9 +rtc-ftrtc010 +rtc-goldfish +rtc-pcf85363 +rtc-rv3028 +rtc-sd3078 +rtq2134-regulator +rtq6752-regulator +rtrs-client +rtrs-core +rtrs-server +rts5208 +rtsx_pci +rxrpc +s2io +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa717x +saa7185 +samsung-laptop +samsung-q10 +sata_dwc_460ex +sb1000 +sb_edac +sbc60xxwdt +sbc_epx_c3 +sbc_fitpc2_wdt +sbrmi +sbs +sbs-manager +sbshc +sc1200wdt +sc16is7xx +sch311x_wdt +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cake +sch_cbq +sch_cbs +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_etf +sch_ets +sch_fq +sch_fq_codel +sch_fq_pie +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_skbprio +sch_taprio +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_diag +seco-cec +serial-multi-instantiate +serial_ir +serio_raw +serpent-avx-x86_64 +serpent-avx2 +serpent-sse2-x86_64 +serpent_generic +serport +ses +sf-pdma +sfc +sfc-falcon +sfp +sha1-ssse3 +sha256-ssse3 +sha3_generic +sha512-ssse3 +shiftfs +sht15 +sht21 +sht3x +sht4x +shtc1 +sim710 +simpledrm +simplefb +siox-bus-gpio +siox-core +sir_ir +sis-agp +sis5595 +sit +siw +sja1000 +sja1000_isa +sja1000_platform +sja1105 +skfp +skge +skx_edac +sky2 +sky81452 +slcan +slg51000-regulator +slicoss +slim-qcom-ctrl +slimbus +slip +sm2_generic +sm3_generic +sm4-aesni-avx-x86_64 +sm4-aesni-avx2-x86_64 +sm4_generic +sm501 +sm501fb +sm750fb +smartpqi +smc +smc_diag +smm665 +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +snd +snd-aloop +snd-dummy +snd-hrtimer +snd-pcm +snd-rawmidi +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-event +snd-seq-virmidi +snd-timer +snd-virmidi +snic +softdog +solos-pci +sony-btf-mpx +sony-laptop +soundcore +soundwire-bus +sp5100_tco +sparse-keymap +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedstep-lib +spi-altera-core +spi-altera-platform +spi-amd +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-dw +spi-dw-mmio +spi-dw-pci +spi-gpio +spi-lantiq-ssc +spi-lm70llp +spi-loopback-test +spi-mux +spi-mxic +spi-nxp-fspi +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-sc18is602 +spi-sifive +spi-slave-system-control +spi-slave-time +spi-tle62x0 +spi-xcomm +spi-zynqmp-gqspi +spidev +spl +sprd_serial +ssb +ssd1307fb +st +st-mipid02 +st7586 +st7735r +stex +stp +streebog_generic +stts751 +sundance +suni +sunrpc +svc-i3c-master +switchtec +sym53c8xx +synclink_gt +syscopyarea +sysfillrect +sysimgblt +system76_acpi +sysv +tag_ar9331 +tag_brcm +tag_dsa +tag_gswip +tag_ksz +tag_lan9303 +tag_mtk +tag_ocelot +tag_ocelot_8021q +tag_qca +tag_rtl4_a +tag_sja1105 +tag_trailer +tag_xrs700x +tap +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc358743 +tc654 +tc74 +tcm_loop +tcp_bbr +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tda7432 +tda9840 +tda9950 +tea6415c +tea6420 +tee +test_lockup +tg3 +think-lmi +thmc50 +ths7303 +ths8200 +thunderbolt +thunderbolt-net +ti-lmu +ti_am335x_tscadc +tifm_7xx1 +tifm_core +timeriomem-rng +tipc +tlclk +tls +tlv320aic23b +tmp102 +tmp103 +tmp108 +tmp401 +tmp421 +tmp513 +topstar-laptop +torture +toshiba_bluetooth +toshiba_haps +tpci200 +tpm_key_parser +tpm_nsc +tpm_tis_i2c_cr50 +tps23861 +tps6105x +tps65010 +tps6507x +tps65086 +tps65132-regulator +tps65912-i2c +tqmx86 +tqmx86_wdt +ts_bm +ts_fsm +ts_kmp +tsi721_mport +tsl2550 +ttm +ttynull +tunnel4 +tunnel6 +tvaudio +tvp514x +tvp5150 +tvp7002 +tw2804 +tw9903 +tw9906 +tw9910 +twofish-avx-x86_64 +twofish-x86_64 +twofish-x86_64-3way +twofish_common +twofish_generic +uPD60620 +uPD98402 +uacce +uartlite +ubuntu-host +uda1342 +udf +udp_diag +ufs +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_hv_generic +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +ulpi +unix_diag +upd64031a +upd64083 +userio +usnic_verbs +uv_mmtimer +uv_sysfs +v4l2-async +v4l2-dv-timings +v4l2-fwnode +v4l2-mem2mem +v4l2-tpg +v4l2loopback +vboxvideo +vcan +vdpa +vduse +veth +vga16fb +vgastate +vhost +vhost_iotlb +vhost_net +vhost_scsi +vhost_vdpa +vhost_vsock +via-camera +via-cputemp +via-rng +via686a +via_wdt +viafb +vicodec +video +video-i2c +videobuf-core +videobuf-vmalloc +videobuf2-common +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videodev +vim2m +vimc +virtio-gpu +virtio-rng +virtio_blk +virtio_crypto +virtio_dma_buf +virtio_input +virtio_mem +virtio_net +virtio_pmem +virtio_rpmsg_bus +virtio_scsi +virtio_vdpa +virtiofs +virtual_ncidev +visorbus +visorhba +visorinput +visornic +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vmac +vmd +vme_ca91cx42 +vme_fake +vme_tsi148 +vme_vmivme7805 +vmlfb +vmw_balloon +vmw_pvscsi +vmw_vmci +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmw_vsock_vmci_transport +vmwgfx +vp27smpx +vp_vdpa +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vrf +vringh +vsock +vsock_diag +vsock_loopback +vsockmon +vt1211 +vt6655_stage +vt8231 +vx855 +vxcan +vxge +w83627ehf +w83627hf +w83627hf_wdt +w83773g +w83781d +w83791d +w83792d +w83793 +w83795 +w83877f_wdt +w83977f_wdt +w83l785ts +w83l786ng +wafer5823wdt +wanxl +wcd934x +wd719x +wdat_wdt +wdt_pci +wfx +winbond-cir +wireguard +wireless-hotkey +wm831x-hwmon +wm831x_wdt +wm8739 +wm8775 +wm8994 +wmi +wmi-bmof +wp512 +wwan +wwan_hwsim +x25 +x38_edac +x86_pkg_temp_thermal +x_tables +xcbc +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_compat +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xgene-hwmon +xhci-plat-hcd +xiaomi-wmi +xilinx-spi +xilinx_emac +xilinx_emaclite +xilinx_sdfec +xillybus_class +xillyusb +xiphera-trng +xlnx_vcu +xor +xp +xpc +xpnet +xrs700x +xrs700x_i2c +xrs700x_mdio +xsk_diag +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_MASQUERADE +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xxhash_generic +xz_dec_test +yellowfin +yenta_socket +z3fold +zatm +zavl +zcommon +zfs +ziirave_wdt +zlua +znvpair +zonefs +zram +zstd +zstd_compress +zunicode +zzstd diff --git a/debian.azure/abi/amd64/azure.modules.builtin b/debian.azure/abi/amd64/azure.modules.builtin new file mode 100644 index 0000000000000..67ac3419a9627 --- /dev/null +++ b/debian.azure/abi/amd64/azure.modules.builtin @@ -0,0 +1,281 @@ +8250 +8250_base +8250_mid +8250_pci +acpi-cpufreq +acpi_dbg +acpi_mdio +acpiphp +aead +aes_generic +af_packet +agpgart +akcipher +amd64-agp +amd_pstate +asn1_decoder +asn1_encoder +asymmetric_keys +ata_generic +ata_piix +atkbd +backlight +bcm84881 +binfmt_elf +binfmt_script +bitrev +bsg +btree +button +cbc +cdrom +cfbcopyarea +cfbfillrect +cfbimgblt +cn +compat_binfmt_elf +configfs +cpufreq_conservative +cpufreq_ondemand +cpufreq_performance +cpufreq_powersave +cpufreq_userspace +crc-ccitt +crc-t10dif +crc16 +crc32 +crc32c-intel +crc32c_generic +crct10dif_common +crct10dif_generic +crypto +crypto_acompress +crypto_algapi +crypto_hash +crypto_null +cryptomgr +ctr +cts +da9052-core +da9052-spi +dax +deflate +device_dax +dh_generic +digsig +dm-mod +dns_resolver +drbg +drm_mipi_dsi +drm_panel_orientation_quirks +drop_monitor +ecb +ecryptfs +edac_core +edd +efivarfs +efivars +encrypted-keys +evdev +exportfs +ext4 +extcon-core +ezx-pcap +fat +fb +fbdev +fddi +firmware_class +fixed_phy +font +freq_table +fuse +fwnode_mdio +gcm +geniv +gf128mul +ghash-generic +glob +governor_passive +governor_performance +governor_powersave +governor_simpleondemand +governor_userspace +hed +hmac +hsu_dma +hv_balloon +hv_storvsc +hv_utils +hv_vmbus +hwmon +hwspinlock_core +i8042 +icc-core +input-core +intel-agp +intel-gtt +intel-uncore +intel_pmc_core +intel_pmc_core_pltdrv +intel_pstate +ioasid +iosf_mbi +iova +ip6_udp_tunnel +ip_tunnel +ipv6 +irqbypass +jbd2 +jitterentropy_rng +kgdboc +kpp +libaes +libata +libblake2s +libblake2s-x86_64 +libnvdimm +libphy +libps2 +libsha256 +linear_ranges +loop +lz4_decompress +lzo +lzo-rle +lzo_compress +lzo_decompress +mana +max310x +mbcache +md-mod +md5 +mdio_devres +mfd-core +mousedev +mpi +mq-deadline +n_null +nd_blk +nd_btt +nd_e820 +nd_pmem +nfit +nfs_ssc +nls_base +nls_cp437 +nvme +nvme-core +nvmem_core +oid_registry +packing +pata_sis +pcc-cpufreq +pci-ep-cfs +pci-epc-core +pci-epc-mem +pci-epf-core +pci-hyperv +pci-hyperv-intf +pci-meson +pinctrl-cherryview +pinctrl-intel +pkcs7_message +pldmfw +power_supply +powernow-k8 +ppp_generic +pps_core +pretimeout_noop +processor +pstore +ptp +public_key +pwm-lpss +pwm-lpss-pci +pwm-lpss-platform +rapidio +rational +regmap-mmio +regmap-spi +restart-poweroff +rfkill +rng +rng-core +rsa_generic +rtc-cmos +sccnxp +scsi_common +scsi_mod +scsi_transport_fc +sd_mod +selftests +seqiv +serial_core +serial_mctrl_gpio +serio +sg +sha1_generic +sha256_generic +sha512_generic +shpchp +skcipher +slhc +speedstep-centrino +squashfs +sr_mod +system_heap +t10-pi +tcp_cubic +tpm +tpm_crb +tpm_tis +tpm_tis_core +tps65086-restart +tps65912-core +tps65912-spi +trusted +ttyprintk +tun +ucs2_string +udmabuf +udp_tunnel +uinput +unicode +unix +usb-common +usbcore +vesafb +vfat +vfio +vfio-pci +vfio-pci-core +vfio_iommu_type1 +vfio_virqfd +vgacon +via-agp +virt-dma +virtio +virtio-iommu +virtio_balloon +virtio_console +virtio_mmio +virtio_pci +virtio_pci_modern_dev +virtio_ring +vxlan +watch_queue +watchdog +x509_key_parser +xhci-hcd +xhci-pci +xts +xxhash +xz_dec +zbud +zlib_deflate +zlib_inflate +zpool +zsmalloc +zstd_decompress +zswap diff --git a/debian.azure/abi/amd64/azure.retpoline b/debian.azure/abi/amd64/azure.retpoline new file mode 100644 index 0000000000000..945dc3fef780d --- /dev/null +++ b/debian.azure/abi/amd64/azure.retpoline @@ -0,0 +1 @@ +# retpoline v1.0 diff --git a/debian.azure/abi/arm64/azure b/debian.azure/abi/arm64/azure new file mode 100644 index 0000000000000..140d1b0f63580 --- /dev/null +++ b/debian.azure/abi/arm64/azure @@ -0,0 +1,20374 @@ +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x15425e8d crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x1b353051 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xf0535edf crypto_cipher_setkey vmlinux +CXL EXPORT_SYMBOL_GPL 0x0bef4310 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x11a878b4 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1e1e1044 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x35e82521 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3c8b8ff3 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4b8e2fbc to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x58e9075a __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5bf0c6f2 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6cb0b503 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x929f4681 devm_cxl_add_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xab746aa4 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb21e0c9a cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb48d100f to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbf16921a devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbf6312bc cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdd5b0676 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe5914875 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf0459d92 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x4275fd17 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 +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xea11590c neon_aes_xts_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xefc32a9b neon_aes_xts_decrypt +EXPORT_SYMBOL arch/arm64/crypto/chacha-neon 0x220b49ab chacha_crypt_arch +EXPORT_SYMBOL arch/arm64/crypto/chacha-neon 0xdc94f829 chacha_init_arch +EXPORT_SYMBOL arch/arm64/crypto/chacha-neon 0xdd8ec6bd hchacha_block_arch +EXPORT_SYMBOL arch/arm64/crypto/poly1305-neon 0x1c3e6e5b poly1305_init_arch +EXPORT_SYMBOL arch/arm64/crypto/poly1305-neon 0x6ddf27bc poly1305_update_arch +EXPORT_SYMBOL arch/arm64/crypto/poly1305-neon 0xf39f5240 poly1305_final_arch +EXPORT_SYMBOL arch/arm64/crypto/sha256-arm64 0xb455924d sha256_block_data_order +EXPORT_SYMBOL arch/arm64/crypto/sha512-arm64 0x6402c8df sha512_block_data_order +EXPORT_SYMBOL arch/arm64/lib/xor-neon 0xd4671463 xor_block_inner_neon +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 +EXPORT_SYMBOL crypto/ecc 0x1a5faa3a vli_mod_inv +EXPORT_SYMBOL crypto/ecc 0x4c281912 vli_is_zero +EXPORT_SYMBOL crypto/ecc 0x671f7aa5 ecc_is_key_valid +EXPORT_SYMBOL crypto/ecc 0x7c0fbb00 vli_mod_mult_slow +EXPORT_SYMBOL crypto/ecc 0x8261eccb ecc_get_curve25519 +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x9f6efabd vli_sub +EXPORT_SYMBOL crypto/ecc 0xa76b31a2 crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0xb10fc19e ecc_get_curve +EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey +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 0x320347d9 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x333d3e3a crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xa60e148d crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xcf8ce1ca crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xd26fd17a crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xe35118e3 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/sha3_generic 0x245fed52 crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x6221a5f9 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0xb6ea5ec8 crypto_sha3_final +EXPORT_SYMBOL crypto/sm2_generic 0x26dd089f sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x2fd249ad crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0x66f6f142 crypto_sm3_final +EXPORT_SYMBOL crypto/sm3_generic 0xee3695e3 crypto_sm3_finup +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x08b0e02c suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0xb33a7118 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xcd99de31 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/bus/mhi/host/mhi 0x9f57e703 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 0x0ea65f9b ipmi_add_smi +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 0x2ca250c9 ipmi_get_smi_info +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 0x60008a2f ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x60967f5f ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x6df77cd8 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x9c2dbefb xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xc5e8c0d6 xillybus_find_inode +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 0x1dc82fc7 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x65496446 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 0xcee1f3c9 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/crypto/caam/caam 0x17572340 caam_congested +EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 +EXPORT_SYMBOL drivers/crypto/caam/caam 0x44ae4bc4 qi_cache_free +EXPORT_SYMBOL drivers/crypto/caam/caam 0xb33e47b5 caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam 0xca869822 caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam 0xe257a507 caam_drv_ctx_init +EXPORT_SYMBOL drivers/crypto/caam/caam 0xf06718c0 caam_drv_ctx_rel +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x280c4997 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x54f2e42f gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x928e4a0f split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xae006624 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe6d5393a 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 +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7b0c587f cnstr_shdsc_rfc4543_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7b7bcab8 cnstr_shdsc_rfc4543_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x86bcdec7 cnstr_shdsc_xts_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x88430d4c cnstr_shdsc_aead_null_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x91ac0969 cnstr_shdsc_aead_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa3115081 cnstr_shdsc_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa340e264 cnstr_shdsc_aead_givencap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa99d7fa6 cnstr_shdsc_aead_null_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xebcdd349 cnstr_shdsc_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xf92c5da5 cnstr_shdsc_gcm_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xf95bcf62 cnstr_shdsc_gcm_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfd807e48 cnstr_shdsc_rfc4106_decap +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 0x7dd5d621 dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz +EXPORT_SYMBOL drivers/crypto/caam/error 0x8b44dd40 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 0xc6f1932b xilinx_vdma_channel_set_config +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 0x1326bda5 imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x9eca5f94 imx_dsp_request_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xabeaae3c imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00738a74 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0081184c drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01582e23 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x017702dd drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x021e2155 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0289769c drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02d6dc13 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fb5f89 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06d78bb4 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07c12a6c drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07dca8c8 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x096ae7cd drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x098a9eb2 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a0933f2 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a233f57 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a59645c __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b374698 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b8eb8c3 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c5fb143 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0df6b138 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fadaff5 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fba2576 drm_panel_disable +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 0x108ae8cb drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x109253b2 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11e985ee drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1282908e drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12aa15e6 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13d61f0f drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14ba855d drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1552fc1c drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17469237 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18306278 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x191010bb drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1acaa707 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c8abdb0 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1caf884c drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ce7af4a drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cecefaa drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d3c3224 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d89e6a2 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1de81dc6 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e0d41fb drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fa739a0 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x211b31e3 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x217af5ef __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21a23bea drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21b4dc70 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x229294f3 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f654d8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2407632c drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2495e87b drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24af6e7b drm_property_replace_global_blob +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 0x2544e799 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25599979 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25ab1d2b drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25e87ca6 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27a9ccd6 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27e5ccf8 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28183cf5 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28544f26 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2984af91 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f5b705 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aa5c47b drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b0fe7cf drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b5101f5 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c35b324 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2da72c0a drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e23b062 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f60b1c7 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f6a3c6c drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fa3e559 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30b0eb5d drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x316d3c41 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31dffa4a drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e619df drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x352d9819 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x363de2e8 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36c9deef drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d6b950 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38782ef3 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38ecfd46 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38fc55cf drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3900a1f6 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39fe8fb4 drm_atomic_set_fence_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac6bf2f drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b299361 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c229315 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cbb0ff7 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d39f8d1 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e268b2a drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e724c8f drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41dc2d15 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4200dfbc drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4218df35 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42b99ba6 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4330e58e drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4350d1fb drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43d15c78 drm_dev_enter +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 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x459cb481 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46381b91 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46af5efc drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x485afc82 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a136d55 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a60e7de drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ad0ba5b drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ae74a0e drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b190638 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ca12ba3 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cc86271 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d2e8cbf drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d9af0d3 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dd67937 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea45f24 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f466c05 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f4d6051 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fa3232c drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fe28978 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x519e475c drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51b04ac3 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5249c5f3 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5260a8ca drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52c80413 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52d3fc08 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52e519c9 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x531539ce drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x533df508 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53519e24 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x538e1282 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53920371 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x545b8234 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x546f39dc drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5619aaa7 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x565383e0 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5668ef6e drm_framebuffer_lookup +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 0x57da2687 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x588ebf3e drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x595c0f82 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x598df5ee drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a0126d5 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a1e8593 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a2f90b5 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b325062 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bc64862 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c6e2e2a drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd8b3cb drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d5d95a7 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dc23167 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e6c85a3 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e6d315f drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f6f044b drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f97ff45 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ff8f7f5 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6035d264 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6065f0f5 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61d34307 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61d9919f drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x621e437a drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63577208 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63857f21 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64438144 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64f7d580 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6576e75b drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66893b04 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x671bac60 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6749e8cc drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68a43d03 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68bef26f drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69035dbb drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x693216ef drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6993f66b drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a4ac231 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a4c30f4 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6abf70e5 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b75aa2a drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cae60f9 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d9797b9 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ddc164d drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e183196 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e71dc15 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ff09ea6 drm_hdmi_avi_infoframe_colorspace +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70073438 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x708bedcd drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70a6309b drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70aea386 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71043504 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71c0fcc6 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71efbf90 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7288d75b drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72e8859e drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7364def8 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73a9e5a5 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7411fe17 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7453782e drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x758dc58a drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7714eb7a drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77423bd1 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x776afd72 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77c8287a drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b120aa9 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9b7d78 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d970156 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7de76182 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e0d2936 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e6048dc drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fb9db4c drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8098ab6a drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x817c6a3f drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81f1a361 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x823f08bf drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x824588ce drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82cc8098 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82d366e6 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85c96fe3 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88ba7df9 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88c37b60 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88c7727a drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88cc0745 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b21b599 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b3216c4 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2231f2 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c9ab7b7 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d103c3f drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ecb9be5 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8edd0426 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91aa715b drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ee8a9d drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x932d0367 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93669390 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94b40679 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94bca4c3 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97a1046c drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99f843c6 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ade9d44 drm_property_destroy +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 0x9bf9ea0d drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c68f1bd __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c9d025a drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d1b3f52 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dc6c6f7 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dc7fded drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dcf8235 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ebba417 drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eee1590 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f8e8734 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fdbb723 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffcda4d drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0c583ea drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa150d092 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa240568a drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa42c2380 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa52d81b2 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa566f8a0 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5890733 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa63142fc drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6ccf98e drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6e1853b drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7f28454 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa838c150 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9650a83 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa335431 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaba9fd4e drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac22e984 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacbd2f8e drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacf50acd drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad8d9203 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xade8408b drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae0801f4 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeeb3a99 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb04a56ab drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb06ef1ae drm_put_dev +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 0xb17c9e7e drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1eafebf drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2172b33 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2f44a1a drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2f52dca drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3755f44 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4050594 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4092a34 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4c0409a drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4f446cf drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb67e2051 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb708e29b drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb82637a0 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb83b6614 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb87f6a4e drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba3f7d70 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba4ee1a7 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba8c6bc9 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb49404c drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb673505 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc7030a4 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcbf6f1e drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd188902 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbddc541e drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe0d4189 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf5cde2c drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc14fca4a drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc20048c3 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc28a3e8f drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc372c7c4 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc39909ce of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc599e305 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6ddb58d drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7075b4d drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7187d6d drm_calc_timestamping_constants +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 0xc873dd30 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc96c8ede drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca272613 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc59e8d8 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcda897a0 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce1e71aa drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05723c0 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd07469f8 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0db1c06 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd12361fe drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1f836b3 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd26b0a3f drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd39e8b32 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd41c57ac drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd448c050 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5b05258 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd602f6f7 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6e95b64 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7007758 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7625710 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9b74a24 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9b91a0d drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9f21bd7 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda3c9ddc drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda5bd79d drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdae2aad8 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdae9cf2a drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdba28b11 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc2ace96 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc9d5140 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcb214cf drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd277c75 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd4f85ce drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd671fc8 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd9c4a82 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde9334dd drm_connector_list_iter_begin +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 0xdf7723d8 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf91863e drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe19d6c63 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe23a167a drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3d738be drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4617616 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe48009cc drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51bc3f6 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe52afe3d drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5955af4 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe725b557 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe794dbc1 drm_gem_fence_array_add_implicit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8313f76 drm_connector_cleanup +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 0xe8fe523a __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe93b18eb drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe952c89d drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9cfac33 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecf7ac39 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed4e67f2 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed682b04 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee46b8ec drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefbef968 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf002ac32 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1f1a89f drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf35b3e0c drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf41e4d9c drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5a706c8 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf605ed86 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf635abc9 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf65d876f drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7f92fd3 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf845d3b1 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf91bc188 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf92dbae1 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf950ba7c drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9558acf drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9ce79a3 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa58814f drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfab37818 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfac594b5 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb4b40a2 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfca767d4 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfda4f297 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfee17527 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfee69eff drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff0753e6 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x007b99ba drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00e1bc59 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01097fa4 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05d0b093 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x072d5c37 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08cfcf06 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09476259 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a3eb945 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a6eddb0 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0aa46cde devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bc62bc5 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c6a4e88 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0eff3ed5 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f354112 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f473523 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x112798ae drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1167d24d drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11be2956 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11cdff40 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x125f5c3b drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1418d1a4 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15263538 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16694548 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e640c4 drm_edp_backlight_init +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 0x1a1d6425 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a3dbd57 drm_dp_mst_detect_port +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 0x1b6be09e __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bd323c1 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d5be8c9 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e460f2d drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e80e560 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fd8dd55 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x213fc22c drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21fd06af drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22113cd1 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2243cd03 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24aa4ee2 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x258af42b drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25c43329 drm_atomic_helper_connector_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 0x287cfa42 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bce16bc drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c19fd0d drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c543f05 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cc37698 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cc9c867 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ce98e1a drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d60fde7 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ec7af38 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fd01f2a drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3030fc6f drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30610f4c drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x329711fe drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33413a48 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3419efec drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35d5db47 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36b38c83 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37978c47 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38185553 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38201be4 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38aef3d9 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a92ec1a drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ab04841 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3afa4f72 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cf548c2 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d78955a drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f943d90 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fd5a711 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x418a7f11 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42503b3e drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x429996bf drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43d257ba drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x451699c6 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46fb1d4e drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4756c16a drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x498be685 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49adef1a drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a6a75f6 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ba6349f devm_drm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bea5ba9 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c18bc48 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c5605ec drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c8eb679 drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cc33582 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e04a29f drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e2b4299 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f00c60c drm_dp_mst_get_edid +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 0x548ae097 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x574ce42f drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5772045d drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58864e0e 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 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 0x5b728b9a drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c7b363c drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5de647dc drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dfbac5d drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fcb3bf0 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60d7041c drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60f39354 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x631c6181 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63a477fb drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64172a8d drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x644dea99 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x667e9ad2 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6729ec92 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6aee5fb1 drm_atomic_helper_shutdown +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 0x6c8bb5aa drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c8c757b drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d0d733b drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dd97f18 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ea5096a drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fc2d15d drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7000cc3a drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70f72695 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7232229b drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72a9eff7 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73b7ef8b drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75badb98 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75db6e78 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x764e8aa8 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x767f6fed drm_fb_helper_initial_config +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 0x770c8d32 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77825da4 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78f956eb drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78fd0885 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7961e9a9 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79d25a3e drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b1186b6 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b7c7380 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7be0df37 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bfe6d5d drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c7f108e drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cc5d9b9 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e81bc11 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x809b85e8 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80a37728 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8554ceed drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x858a6d74 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85e50ea3 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8705e7d6 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87be9167 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89b0c6f5 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a47011c drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8afec593 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b020552 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b42fd5d drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8beb60fd drm_helper_hpd_irq_event +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 0x8dc635d9 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x926812f2 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x930e74e5 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93a7502d drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94168983 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x942adf8e drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9456ed08 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9518fd41 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9564d798 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96c10bfe drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96f6ed46 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x984ad80b drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a12d4b0 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ad85ca0 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b199ab7 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cbe3da2 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d3d7b32 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d76540b drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dadac70 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fcfc189 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1a19da9 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa30b9a49 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3b2375c drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6e608f4 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7e8a320 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa82548fb drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa83f46a6 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9998073 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa0a1efc drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa606f4f drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacc9f8b6 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad435c94 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadbedb03 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadbf1b4f drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaec9b041 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf440f1d drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf6a415c drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb009fcde drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb065ac6f drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1a387f5 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb40491e8 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb78f92df drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb79e716b drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7e0ded0 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7f1e5ae drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb84ce3f6 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba56db78 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbac7fd5f drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbaea0096 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc35fc14 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc8d628b drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd61561d drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe364b3e drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf000046 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0e52bfd drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0e9f118 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc25bb346 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc41e3a34 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc44277b9 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc53f63d2 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc62024e5 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc65e735b drm_dp_cec_irq +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 0xc946aa71 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce7188c7 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0ba064c drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0bb7356 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0eb9e77 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd57fc13e drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6661f97 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6942511 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7d857d5 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda04df29 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd01e3fc drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd3c2798 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddc5f21c drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xded28363 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0789159 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1e9a0ad drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3e06f86 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4ebe3bc drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe506f25f __drm_atomic_helper_connector_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 0xe53e459d drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe59f1520 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5bbc095 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6b7664d drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe70798c6 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7c86913 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea48e3a7 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb5bcfbd drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed2da68a drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee49766d drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef1a6f5f drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf08fb44f drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf149eb93 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf16d64fc drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf17b4be4 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1f65405 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf33918d2 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf41cbeed __drm_atomic_helper_private_obj_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 0xf6c88b5b drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7033ddf drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7e64f09 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfad292e2 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb263442 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd4962db drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe7d412a drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe9c0570 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfec4594e drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfee59fb3 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfefdb256 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff0a9ce4 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff1dc489 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffc4e815 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1d1d788b mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3e41aad7 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x406df614 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5820c586 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5c6a370b mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x64e904ed mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x784eec6d mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7e1449f8 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x80950b44 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8a51ce66 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x92e14302 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa2bff203 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa361fe50 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb7e4e015 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb8f10a79 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbb97aa0f mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf3586b9e mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x28172e35 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x6e4ba190 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9bc87091 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9ef540e7 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc6f02d06 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0ab123cc drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0ea6f2c3 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2a7ae090 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3504935a drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3e3caa38 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5a8820c7 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6422f450 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6f448a1e drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x91675deb drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x97bb8c50 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x98bc637f drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x98bc6a0c drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9bdafd0f drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf1a005bc drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfa11a169 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfe749e84 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x63ba7bc6 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x025579fd drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1263d8c7 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x170c9c7c drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x19c865a3 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x55defb8d drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5829b5b8 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5b83f531 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5db8861a drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x64a70cb4 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6c0988b4 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x776f044e drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7be1768e drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x92740cb6 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9623ffdc drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9af16266 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9e48dfc5 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb6c41bfa drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd2e5f72e drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd70c34e2 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe2c54d70 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe99be87c drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf0a039d1 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf472dc55 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf4a8565a drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x18a9da5d sun4i_frontend_update_formats +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x3c08c395 sun4i_frontend_exit +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x3f136aed sun4i_frontend_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x9474f14f 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 0xe13164ef sun4i_frontend_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xe410db34 sun4i_frontend_update_buffer +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xed821150 sun4i_frontend_enable +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x35e795db sun4i_lvds_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x5f17a52d sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x98f507cc sun4i_tcon_mode_set +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xb1183a87 sun4i_tcon_enable_vblank +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xd458568d sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xfd1e944d 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 0xa8f509b3 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0xaabb10a2 sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0190d057 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x03fc5553 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a39b301 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a811df0 ttm_tt_destroy_common +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b24b442 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x106228f1 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18f3b129 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a056df5 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e449c1f ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ab160b9 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2af772ef ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c949f73 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3282fe50 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3582988e ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40050695 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4335ef34 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x436d3b59 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ce65f63 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x585b875a ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x588c5583 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c19f503 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60c19e74 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63cb488d ttm_range_man_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x650e4142 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a88b316 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6bb33d84 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6bd4daba ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75d6e823 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a08cb49 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81cc5a96 ttm_bo_bulk_move_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86c2f1e7 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x894899c3 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x93f9e06c ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x940d742b ttm_range_man_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99c77fdb ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9aa2b765 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6460998 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb047d198 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb073f585 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2071f6d ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3286fff ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb6b8fccb ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2f317c7 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd065b20a ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd539b9e3 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd77165f6 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd970b758 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf03f94e3 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf1b45528 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4a87744 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7991a3a ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8e210ae ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff248fa3 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x28e47c8a ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x3615eda9 ttm_mem_global_free +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 0x79fd7d0e ttm_mem_glob +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x01acaf08 host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x048600e1 host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0beb66f3 host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0cf454f8 host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x103d1aaf host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1085bb68 host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2bb2ea59 host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2db12e19 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x30d39071 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x32db2577 host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x34966fe7 host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x38898a48 host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3b18988a host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x48337296 host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4f3a85b8 host1x_channel_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 0x5396ce7b host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x53b91403 host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x562837c6 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5c3c30d7 host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x64ba1520 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x66d7588d host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6e8488f7 host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x740cd0e1 host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x74a0e1c1 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x77e52091 host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x866e0683 host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x886f44e6 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8a02f641 host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8e128260 host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x91d118c4 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa439a8c5 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa8a1a559 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa9ca8062 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd6ae071d host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe7bbb47f host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xebb31c99 __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf5c4e346 host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8f79469 host1x_syncpt_read +EXPORT_SYMBOL drivers/hid/hid 0x2cf365a3 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 0x40cbaef7 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 0x0d12c3d3 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x0ed01461 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x6110319c i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x296ccb07 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x5392183a i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xfa437ddd amd756_smbus +EXPORT_SYMBOL drivers/i2c/i2c-core 0x13902fa7 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL drivers/i2c/i2c-core 0x17276f68 of_find_i2c_device_by_node +EXPORT_SYMBOL drivers/i2c/i2c-core 0x18fe6e46 i2c_smbus_read_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x1fc787a6 of_find_i2c_adapter_by_node +EXPORT_SYMBOL drivers/i2c/i2c-core 0x2348cd4f i2c_del_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x36c25ffe i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x3eb78853 of_get_i2c_adapter_by_node +EXPORT_SYMBOL drivers/i2c/i2c-core 0x435dcc74 i2c_transfer_buffer_flags +EXPORT_SYMBOL drivers/i2c/i2c-core 0x46d87693 i2c_verify_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0x50fe31f7 i2c_smbus_write_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x54bd4253 __i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x616cefe0 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x6df27c1d i2c_put_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x6ff36f9a i2c_smbus_read_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x73330d27 i2c_del_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x7611e1d1 i2c_get_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x879fae48 i2c_smbus_write_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x8a176a56 i2c_add_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x9279beec i2c_smbus_read_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x9917ea15 i2c_register_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x9c5de2e6 i2c_smbus_write_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x9d5f4ffd i2c_smbus_write_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa50cd716 i2c_smbus_read_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0xafec57c1 i2c_verify_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xb4ac8923 i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xc787d89c __i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xcaecc4d8 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xf3c605d3 i2c_clients_command +EXPORT_SYMBOL drivers/i2c/i2c-core 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x01fd2dc1 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x28ad9b95 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x44ff5223 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4658058d ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4a92dfe7 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5c3eca46 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8ff76431 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa1eae625 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xba2c29b9 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xca7134dd ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd7382c85 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd8accc23 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd9817c9a ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf319cf29 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf47d286d ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00babffb ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x019bcbe1 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04732fd6 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x049968b1 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x061ff4e1 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0621cf88 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0674e1be ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07164e60 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0737567d ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09040e75 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b3678e5 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0baeb92b ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f801c2d rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fbbb1d5 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1117a136 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11afb629 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x130307b2 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14b9afd3 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19776856 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19de7cf8 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c735229 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ce6c6a3 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d741664 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e2934e2 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e544fd2 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f203961 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20582895 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20693534 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2279561c ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24156e0f ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x273f6d91 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x274aa460 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x284d7d38 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x297381f1 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c7e3a96 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3034f1b7 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3078ee12 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x322d6fa2 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x326300d8 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32b03f3f ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3540742c ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35c9913d rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35cfd4d5 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x365e1617 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38013e4b ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38bf397b ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c6e2d81 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3de4f991 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x403be630 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40846cdc _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x417f3675 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x430c9099 rdma_hold_gid_attr +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 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49455be0 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4945e492 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ba654f4 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4be4b46b ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e250d6a rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x502489ac rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50807400 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x510d2546 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52871ffe ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53340df7 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5458118a ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5568ac12 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55dffd21 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x567ca686 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5718e46e ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x573a9498 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x576b547b ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5830c29d ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x593f6acb rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d0ba994 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e2823b6 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e61416f rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x603073e6 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61c053e4 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63d945da ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65f45e32 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67081eec ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67888391 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68d61945 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x692e2f6d ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6980b881 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ab6c8b3 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7046840d ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x713f3b2c ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x716ef085 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7342a942 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x743ea999 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7623ad4b rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7679d8ce rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7902a1dc ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x790f8338 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79fac73f rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ecb8722 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f45a815 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80bdaaa4 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x828617f5 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84a91de5 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x855099ee ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8648162b rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87f682b9 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88379dc9 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x893507c1 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x894a0c05 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x895b7124 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8aa5c716 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ac61803 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b031a20 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cb7076d __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8de03f75 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e8068dc rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e8b2af6 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ed0a66b ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91233157 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9182b853 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x938ed4ff ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97a994c1 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x989be144 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98bd1381 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x998dc65a ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ab9e1d9 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b1b381c ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b53a375 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ba2c6a6 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ea861b6 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0193104 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2b2cbd8 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa61c3ec4 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab357962 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad5005ea ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafd716ce ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafe7a336 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0471e14 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4767fc2 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb640cee6 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6ae2947 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb70fa001 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb82f50b8 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9ec5edb ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba6c3174 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb334429 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb45acf9 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbbee13b rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc701a22 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdbe3900 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf60d5b0 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0af54ef rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3829ab7 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3b01fe4 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc56135ef rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5670641 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6e2f385 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc763ed27 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d3e20c rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc962ec63 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9e38d63 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc35e95b ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd44d0d9 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcedfa2ec ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1b9fc74 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd268f356 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3cca05e rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd471e5b5 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda7e16e2 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb05f14b ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc8f7b70 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd69a53c rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe00ae0a7 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3714738 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe46caa01 rdma_create_ah +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 0xe70e6b70 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7a21f02 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb675054 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebf36bdb rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecd80abf ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2546ed9 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4762d60 __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf54b0140 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5b25df8 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf691a783 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7fab4e7 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf80bd997 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf87e27e3 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc5f3c59 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd8aedbf ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdf9fa3f ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfec2b9e0 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x16a08ddd ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1ff3497a ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2a31d912 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2b2d6b84 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3a93e317 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3bbd2856 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3cd6c282 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3cfb6560 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3e613d0a uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x467bf495 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4c5071ca ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53bcb801 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x57f56156 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5cbfbb68 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x62ab84f0 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x646d3717 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7010c1f2 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8c2906ac flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8e2fd73b ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9476633e uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x95c39f6e ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9ad683b9 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbbb9161b ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbf77ce1c ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc57fc8fa ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcb91efd7 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcc05afb2 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd17b01f5 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe26ae1aa ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe627b39c _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe741b6be uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeda88b6f ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xef0f6481 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf2994781 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf9cb1780 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf9ebf95d ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1974f9e3 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4971347a iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x784b3177 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7ecb3d19 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb477e16a iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdfd47aa7 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe08971f0 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xffef675c iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x006893e7 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x067a5008 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0abf95c5 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0d84aeb1 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x176a5d99 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1c8d2c65 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x22d46bda rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x270401c8 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x368e8729 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x444d8052 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5ae13c19 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x68bc8b80 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7929d9ae rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7f0ae11b rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x84ee8a07 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x86681676 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ba9c6b9 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8d3d202c rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x97b465fd rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9a7c25f9 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9b22e6ea rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xadd6486a rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xafb4b9a0 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc2dfe734 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc8fe96bc __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcfde0225 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdd593b7e rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdefba58f rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdf2ccd1b rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xef567491 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf667c859 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf8383ce3 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf97c8eb1 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xffe2d731 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x00d8aca5 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6ffacaea rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8cc968e9 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xad1206cf rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb5fe8e84 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf19b77e7 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf2b50207 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x16b8e107 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 0x3032f7b6 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b01e41d sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xbdca87b5 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xf492f5a4 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x12cb240f rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3469e269 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x37c28282 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x421fb911 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8d68eae4 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb0da9959 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/input/gameport/gameport 0x095ad7e2 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1500cfd0 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2b716cfd __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2c4c315c gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4a6a71ba gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4b476792 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x518bb6f7 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x52076df7 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9925c3ec gameport_open +EXPORT_SYMBOL drivers/input/matrix-keymap 0x60087871 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0fc2051d sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3cb430f9 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4da61c63 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x619615f6 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xe48d058a sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x2a9aae8c qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x39aeb62e qnoc_remove +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x1ee6425d 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 0xe714bfc7 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x7309e930 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x182a2f40 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x29b484e7 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xed7f7d84 omap_mbox_request_channel +EXPORT_SYMBOL drivers/md/dm-log 0x1a51a7c3 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xd6b6c99d dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xfa8512af dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xff775afe dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x202997e9 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x44314c6b dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x79b55890 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7f0f0bca dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd658ef7c dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xdb80a5b0 dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0xcc8d9c02 r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xdf348eab raid5_set_cache_size +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 0x2d09b21a vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x68264a4e 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-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 0xa73615ce vb2_querybuf +EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x5a12b807 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 0xc0210d68 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x23c2bbbc v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x3c8b1c2b v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x64a0ed3f v4l2_async_subdev_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd234e19b v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xe12c5a1f v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xfc27bafe v4l2_async_notifier_init +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 0x562c42ad v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8b419006 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x94ff00e2 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xe5e01aba v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01c8828d video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03754bfe __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07af8c45 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ebb6ead v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11627db6 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12e55ebc __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x19bb3725 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d294e44 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x219cd7a3 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21cc0068 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31a569b1 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +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 0x3da0b86f v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x42ae2947 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43f3b5e1 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4493dd99 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45cf947b v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b351473 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5231097b video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x53ef01c1 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56349f7c v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b67289d v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5e1b9ae6 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6345929b v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7052fb2b v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73110b3d v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d328f9b v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a604184 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99a82c8c v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a2b48a1 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9be4ffa2 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9dfea793 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa790e84c __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf437e61 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6a02e04 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb73724b5 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbb02325d v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe0a4997 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2dfea0f __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5abbda7 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc732e824 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd09d5b4a v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3c57924 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb3f1b30 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdbe1a552 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe271ea8b __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe85c06a6 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeabba1cd v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee997895 v4l2_ctrl_g_ctrl +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 0xf56150d1 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf5a2a96f v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe4854ac v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x369a3771 rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x6e23933e rpcif_prepare +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xba37fc65 rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xd9e7326e rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xf5ff7f55 rpcif_hw_init +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x09a64a1c mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0fbe84a4 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x103864fd mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x138c84c1 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x17f714bc mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x215e77d6 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x216fbb02 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2c1470dc mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2c32b0ef mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5c0739ef mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5f070c17 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6dc70759 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7ee4f471 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x83e82987 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x89398fba mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8f5767f0 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9684ee0c mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x978210a9 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf12704d mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xba5b0df6 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbfaf7343 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc650bb03 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc92719ec mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd8278ed mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe80264d1 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xec4d5497 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf63344ee mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf7ab1580 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf85c4c15 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0c9a1d10 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0d57b705 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x197e3eaf mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1a2cbd5d mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1ef02699 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1f0ab588 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x26fb4335 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2b68b669 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x30ac959f mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x31364220 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x41fcf13c mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x59490345 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6a7ab023 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6f7a1986 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x76e2abbd mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x822377d0 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8a9d3e3a mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8b4d6751 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa1ab429e mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaa4c51a5 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb24b96aa mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcdc0594a mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd4022eb1 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd7967a10 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdb419b1f mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe342ce6f mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf5a4eb13 mptscsih_abort +EXPORT_SYMBOL drivers/mfd/axp20x 0x4c554591 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x6b50351c axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xc89b8778 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x6041a40b pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe073b0e0 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3cb75800 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5db64c45 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5e442220 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5f400df1 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7736082b mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xac5b4cac mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb278d76e mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc54ddbd1 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe9dad4d9 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf1fb3f35 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfdc50608 mc13xxx_unlock +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 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/wm8994 0x08bcb5a2 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x214c814a wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x3a860e3b wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x420b5ba2 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x738d19d5 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xa5e40c16 wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x1196fbf8 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x509dc446 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x628a51ab tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x74eddc75 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x7568a9b1 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x87cdf88d tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x93aa33e3 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xad53b434 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xcbcff56c tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xd4fc2137 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xe88f6491 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xec395b13 tifm_unmap_sg +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1c605ec1 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x45388954 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x494d57fe arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4c5f6534 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4fbb4839 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x66ea5039 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6a1e1867 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcbb91976 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdcf7b0cd arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe4bfdc93 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf435e2b2 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x265064f4 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x38f149b4 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xee68b1a8 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0d750762 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x13fb9a31 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x25167f24 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x26500852 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x26a06d93 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2a012b53 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2c7adf3d b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x36beba0f b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x39eab1b5 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3a6df432 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3e737f9f b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x47911b69 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x487e4e16 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x54219354 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x57e14d30 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x59fc4633 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5cafd00e b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5ce99a91 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5e5ac96d b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x708972c5 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x75389356 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7888101c b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8bea4654 b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8c0b3f31 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x924c55ca b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa6ddb012 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xab3f4196 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xacf022ac b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb18a9425 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb514fc59 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb73f5489 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbc156628 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbd7066d8 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc35988b1 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc9c73159 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xca94dcaf b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xce574a24 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd5eafb6d b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd79243f3 b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf7dd80cb b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfe292e75 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x0d21f57a b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1ca342b9 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5a8f9356 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9169dfaa b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa1ef17ec b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa32b5a4d b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x4a7021dc lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x857f3cf8 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xeaed3866 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xff782aa2 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x12dcf00d ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x5a66a50b ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x85f92fb6 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xc3356363 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x3f273488 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x8107bfbb vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xe4cdba7b vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x190aaa68 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x1caeec60 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xc8925fba xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe27a52b3 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xc313272c bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x765a9aee cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0d1be6c1 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x195225a9 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x280d3526 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x298ae051 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3685fffd cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5347651b cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6762e4f9 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6d148a83 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x73493e8d dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x85e6effe cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaad5460b cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb5d7639f t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xca72b898 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd4947d26 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xeec5b8cd cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf83033d9 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x073fb266 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x13fb2b56 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1bbc8ccf cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x22a99221 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x287ad60c cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2974a81a cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2d7fa08b cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x38108111 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3984de42 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47d10f8b cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4991426b cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b7af460 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x53897902 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x55b5c48e cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a14d04b cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5fe1bed4 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x692ac6a8 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d702e8a cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6f83c8a3 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x762c5143 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7909a27c cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7b4cd924 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x80a806ad cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x81581636 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8267d63c cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8f8fc517 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x929625ef cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94a4e216 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9a65ec7f cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f57bfd3 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbdca879e cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc1e8c4c8 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc40a871b cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7d4ac34 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcc7c627e cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd03d199c cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd285dbc8 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd74d9680 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd911d6bf cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe3c84fbe cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe4982b2d cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe870f4f8 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xea9c6192 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xecf77d75 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf152b3c7 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc591149 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x06dd4958 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4c4a5e1a vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x558c7c31 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa075168b vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc958b749 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe4ba9c9f vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x29ac19ed 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 0xcda6f291 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x4412391e dpaa2_phc_index +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x8070b318 dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xaf5efd70 enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x2fc70dc4 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x31dd15fb hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x556c0125 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x95eaa2f2 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xd5c135a1 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x44a5c1ae hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x03015501 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x607890be hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x6ea33a92 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xa0b66ab0 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xa0d7f95c hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xb3bc64c7 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xd1aadb6b hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xdf717147 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x0f55e06c iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x49a73a82 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x13cfc7a3 otx2_reply_invalid_msg +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x1eafac24 __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x25629db2 otx2_mbox_wait_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x2da453be otx2_mbox_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 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 0x5fcaaf62 otx2_mbox_nonempty +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 0x642d63c7 otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x7463147f otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x80de8f80 __traceiter_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x90eb2c51 otx2_mbox_regions_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9912f016 otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa40137e0 otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa52dc756 otx2_mbox_busy_poll_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xaf379ec9 __traceiter_otx2_msg_alloc +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 0xcae77d5f 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 0xd4a12027 __otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xf35e799e otx2_mbox_check_rsp_msgs +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x13b08a99 otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1526cc3f otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1e77d80f otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x33794689 otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x37ed2606 otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3b9e89b9 otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3c7dd49a otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x50520674 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x509a53ab otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x73678589 otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x740f90c0 otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7d80f933 otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7dc93501 mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x897c0f26 mbox_handler_nix_txsch_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8bb94be0 otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc112986d otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc375ee19 mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc3a24612 mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc7aa1d6a mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcd3eebbb cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcd6101fb otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe3bb0fb3 otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeffd130b otx2_get_maxflows +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfe74db51 otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x007d7c01 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07df059f mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2039507f mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26ac6d0f mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a38f60c mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a4963e5 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f52a548 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x339fcacd mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a4d0517 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b8c2c88 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x443a21bf mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b511a80 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52faf628 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57afb02c mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b9022b4 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66a7a004 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79318238 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 0x83fcb6c1 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8421deab mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x870707fb mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94c15f24 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x957ea544 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x975f67f3 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97af8b68 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a3de1eb mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa39d519c mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa62f2fa7 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa8ea4aa mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab3ee5fb mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab5515bf mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae3fb0a3 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5c876e3 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb83d2d7a mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf960cdd mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc08d6145 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5c9fd20 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf2f4348 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde40f9b6 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe363e563 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe55cb351 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec95feb0 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed7abe5c mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6c9d0a8 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcd3da8f set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0089a020 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01bc9289 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03c0e3ac mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0465f0fc mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05be82bc mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06212ae7 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c643b68 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ded3112 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ea9b7d5 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x102dfe99 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x134a656b mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x161a082c mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16c63a72 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17042805 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1812080a mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a6f05ed mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b102d07 mlx5_core_destroy_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 0x1e269bdd mlx5_core_destroy_tir +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 0x22bce683 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x266ed8ba mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x268d3a32 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28f016ea mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b6b5e3e mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d2d9ae2 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d64cb4d mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32ec503b 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 0x3475821f __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38082391 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38726c41 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d205025 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40238b93 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x425cd62a mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45ef1779 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48aa7cee mlx5_core_alloc_pd +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 0x4c5c5bbe mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e9dc770 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ea1e504 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ffc267d mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5001aca6 mlx5_core_destroy_rq +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 0x556850aa mlx5_free_bfreg +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 0x57c0cc20 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f6100fb mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ffdd8e4 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60594512 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60636d36 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60787a52 mlx5_lag_is_roce +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 0x67d34b4e mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c9965ae mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70c6b7e2 mlx5_core_query_rq +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 0x76efa552 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7818c8ee mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79bb9018 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a08a2be mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c9eb1fc __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f6c5b68 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fbf1d09 mlx5_eswitch_add_send_to_vport_rule +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 0x80aa76d1 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8281e6db mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x838ccd43 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8460742b mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84f54c97 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86592d97 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86dd01ef mlx5_notifier_unregister +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 0x895fb146 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a4100d0 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eb87df3 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91294d5a mlx5_core_modify_cq_moderation +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 0x92bb5c81 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9576142a mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95bd2725 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 0x9a07f806 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c47058e mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cc5680c mlx5_fs_remove_rx_underlay_qpn +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 0x9f56e4eb mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f8a8560 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa17a0819 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3aa5c87 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4f7d6e5 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5fd09f2 mlx5_eq_update_ci +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 0xabb41d45 mlx5_core_modify_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 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 0xb6ba1c30 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb72cffaf __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9091673 mlx5_eswitch_vport_match_metadata_enabled +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 0xbbde79af mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbebc04d3 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0aae341 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc122c12e mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc154a09e mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2a171fa mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc46618a2 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4e0015a mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9ea36df mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcac40fad mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb75afee mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd3ca61b mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd7900fa mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd337d5c9 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5064ecd mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd50ccd00 __traceiter_mlx5_fw +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 0xd881ecbb mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd89cba1c mlx5_core_create_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 0xd992eacf mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb07d6a2 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb6edf5d mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcdd5726 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf505374 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe15b1e89 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1e54947 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe57e3333 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe61f9a82 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6618ded mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe75d099b mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8504e3e mlx5_fpga_sbu_conn_destroy +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 0xedb52deb mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeff4def0 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf16b4167 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf44b94ea mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf44d8994 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4b656e9 mlx5_eq_disable +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 0xfa6a096f mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa7b1832 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/mlx5/core/mlx5_core 0xfe7e2b71 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x9891b2a0 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 0x04eef830 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07089e0a mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x11ba0f52 mlxsw_core_port_eth_set +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 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 0x1f8d6f75 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x2b25a03d mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d7e9c72 mlxsw_core_trap_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 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 0x4167bea9 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 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 0x55443603 mlxsw_core_port_devlink_port_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 0x5d6ac3cd mlxsw_afa_block_append_mirror +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 0x6ee90be7 mlxsw_core_rx_listener_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 0x75543fc7 mlxsw_core_driver_register +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 0x7b028507 mlxsw_core_rx_listener_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 0x819edc5c mlxsw_core_ptp_transmitted +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 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 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 0x9eb9fc23 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa1ada173 mlxsw_core_skb_transmit +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 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 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc7413b6 mlxsw_env_get_module_eeprom +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 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 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 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 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 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 0x3fac95fa mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xa5baf8ea mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x0b20c0f2 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x9cd20ee6 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x002e02ac ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x063dde45 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x065406b0 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x09aeaf85 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c0932e6 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1002c9e4 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1575420a ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ee49878 ocelot_port_lag_join +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 0x2aa9d051 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c208eab ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2d791100 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2e305c25 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f29e248 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3b72b448 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x455669a8 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a1c541a ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a969b03 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4bb28429 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4de07a34 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54f9c57a ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5855271a ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a503d53 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5cb8758b ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x66add12e ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6818a05c ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b1b77d1 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x701c5d2e ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a607ddb ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b303412 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c82eec4 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e515fc1 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x821ec716 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84daed90 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x873d6f03 ocelot_mrp_add +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 0x8f978b98 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x937411a5 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93aedb2d ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94e01831 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x997420c4 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e292a42 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9eae378f ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ffc62fa ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa51ff476 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa6d150dc ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa6f0e039 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa85e6011 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa42ab28 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xabf17022 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad975a9e ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb091edb9 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3ee3e01 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbcc28e91 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf6004f7 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc0f23ebc ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc25c91d1 ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5df3068 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xca11d80c ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcfa7557e ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcfdcd3e6 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd47d7c5c ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6a58ec7 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd79875b1 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb28df80 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xebe12181 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xebf4fdfc ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf712fa49 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa38a65c ocelot_ptp_adjfine +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 +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +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 0x1d112399 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x5e06f170 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x9cdeb73c mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xfeda68b5 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x2f30f7e1 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x6c7541d7 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x3746b5c3 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x583b0eb3 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x6420d2cd xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x675995db xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x9b7db8e8 xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/mii 0x147f6837 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x19c1c96f mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x3c32fbde mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x66c9470c mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x9d99dc9c mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xaaa4d0fb mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xd465b930 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xdc8253ea mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xdc82560e mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xe6ef50b6 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xc5114570 lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xfba6481f lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x6e59eda7 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x22aa0941 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x4d62ed52 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xadded300 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xd2ebde53 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0e82c86b hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1401697e detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3e23b20a hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5ae182a4 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5c530665 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6b4da6c1 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x975c6215 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb5410ce6 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf0d63f63 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf3d54718 unregister_hdlc_device +EXPORT_SYMBOL drivers/ntb/ntb 0x01b7b9ea ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x1117e148 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x143322ed ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x3776983c ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x40910874 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x4b9fde93 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x7de3d22f ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x891de61a ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x8a15bee3 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x8be38bc1 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x8ed1f66e ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x9d246a92 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x9f677328 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xb66e54d1 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0xd3241a16 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xda5ed6f4 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xdc0856e5 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xe3f3426d ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xf316a818 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xf32741bd ntb_unregister_client +EXPORT_SYMBOL drivers/parport/parport 0x05beea39 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x0d22daa8 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x12e51594 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x2d75ed83 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x373a7d4b parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x4229676f parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x47e85441 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x4a652631 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x4bd00140 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4d73ebf3 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x4e9903f3 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x53dd2908 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6c7ead31 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x6e6049ac parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x758b40f6 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x7965df75 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x7f10ff44 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x838c6f54 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x88f1797f parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x980db48b parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x9e913dc0 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xa6ac9182 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xa85d79c9 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xac4deca3 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xaffda359 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xc39f5245 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xc7288027 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xd2410e96 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xd60ff615 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xd79dd25b parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xf2b49634 parport_write +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x32571b4c iproc_pcie_setup +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xce21e0ed iproc_pcie_remove +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1534035c pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x276ef2df pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x55a417dc pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8da8af94 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb1be9dcb pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb948b939 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf87fb30 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe3058b03 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xef90ccfc pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfca29689 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xd4f1c5fd pccard_static_ops +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x8c8980ba qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x093308b3 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0aed6c2c rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x19ec7632 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1bdd4f7d rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x37c5bbd6 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x40d7d4e0 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x42aee68f rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x46060b2f rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x49f8a2b0 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x56ce8a6c rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x594a5116 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7a2b8929 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x852bb0c7 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8530f1a8 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x91690000 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa8a3b854 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf9e42d6c __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x522f1b12 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x20d4f342 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x67c2d49f scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb07450b6 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xfa3a6065 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6935a1c5 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd7ef1131 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe0b1d091 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 0xd4dbe000 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x093303b4 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0a530550 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x265798db qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x43176bab qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x473a965a qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x62957791 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7bef5779 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7e2f3d1d qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9e546588 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb5bf799b qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbf635bfb qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf0245abc qlt_lport_register +EXPORT_SYMBOL drivers/scsi/raid_class 0x0d265a8f raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x1c5124cc raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0713ea26 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0c325295 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x150796da sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2c84c307 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x311b5a37 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x35fd328d sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x409b767c sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x50708107 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6ac2ebc4 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7660c156 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x769d6d34 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x77407e0c sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x80726553 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8378cf80 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8cf2b06c sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x95592b52 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xadff4ca4 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae2df4d6 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb5f73253 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc15d33a6 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc1958544 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc1ce80f6 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc2a053d5 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc50d8e3e sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe42271f9 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe7fdd8cd sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf0c5697f sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf6b48d17 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf80dce60 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x18b01905 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7c5bca49 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8096dda9 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb07dcadc spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf0122ded spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x61ccfee4 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa52496f7 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd71bcf83 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe111a6d1 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf9d9710c srp_timed_out +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 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 0x3530bd9f cmdq_mbox_create +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 0x5083ca49 cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x52511008 cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5ad581ce cmdq_mbox_destroy +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 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 0x199c7a43 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 0x2581a207 geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x28d9ad84 geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x48beed19 geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4954c9b7 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4961bcc2 geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4cb25b58 geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5724c4cf geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5a10c5ac geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5b293e2f geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x632d475e geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6ba7d1d5 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6db3f37a geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9c515560 geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb1931578 geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb35d43b3 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xef449e8c geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf82e9431 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x950e724c qmp_get +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x9e2aa1df qmp_send +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x07652b6d qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x14c30e2a qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2e77abd8 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x347b242d qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x54cb3739 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb2e3ca74 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xba8aa130 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd7d8a6d2 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xdf357ca2 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xebedbbb8 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 0x90450a2a qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x04ec1533 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0f0a4a20 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x12830522 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1cfd48af sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1f6b7af2 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2d104511 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x43989e51 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4448593f sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4c150caa sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5bda23b8 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5ddceafd sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x65d54a8b sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6ee2fad1 sdw_write_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 0x73eb6f42 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7829e5dc sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x824ef692 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8632646b sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9c88af26 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa4d81f85 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa8bf6ae6 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xab1eed8a sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb1515ce7 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 0xcb78d973 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdcd8b7b8 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe8826e62 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xee3e8f9f sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/ssb/ssb 0x01b056b1 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x1f869ffd ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x22a327f7 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x3411f969 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x3e58bc7a ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x424eb5f0 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x5c09802f ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x8b0a6f43 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x92d1e252 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xa76272ce ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xb32e9da0 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd2ecdd24 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xd82f4aeb __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe0210668 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xe1afceba ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xe86aeafa ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xf3f501c1 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xf4c9d54d ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xfe59c6a8 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0871fbcd fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x29dd30a8 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2b4feaa1 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x31de4fb4 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x36e5b18c fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x526c0cb8 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x61738871 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6e3d8465 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7e1e6ddf fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8163bb27 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x956552e5 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x99c1e292 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9dcdad06 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa133aa2f fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb42f76d9 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc24bc724 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xca3b0a6f fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcc0d8e5f fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcea28051 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcf9e2fcc fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd6b92c8a fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdd7e1cca fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe21772c3 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe46c185f fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfab94fd7 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x4b0e42da nvec_write_sync +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x9d6740b0 nvec_write_async +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x0198a9b9 vchiq_connect +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 0x22922c50 vchiq_initialise +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x327c3232 vchiq_msg_hold +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 0xa22e9df3 vchiq_add_connected_callback +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xab9c67af vchiq_open_service +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 0xfbbe46de vchiq_shutdown +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0005b169 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x02bfa825 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05b46109 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d134618 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e965def iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24413028 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x253a1726 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x288d29f0 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2d51aa8c iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ed069dd iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x32363f90 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x33f4ae89 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d949d6b iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x49bd75a6 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4f5a0a46 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x588a2960 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5cf67625 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f82cea9 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6021efa7 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x605af1cd iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x605f3954 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x70a0a35c iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x783e6b53 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x78c2c358 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x806de4d6 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8107eef7 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x81e6384c iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x840b370d iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ab8d703 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x93225569 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c7586ce iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ccf52a1 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac19c5c4 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6db1437 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd27e568 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd88187c iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd0eae558 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd8463bda iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe44a5045 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe531827d __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec602e36 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf11ec578 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfcfdb438 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff937881 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x01985709 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x04059537 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x06647dc3 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x06b8ce84 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x07e01226 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a88133c target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c853cbd sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x0df17ec6 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e2773c9 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f1817d5 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e505a0a target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x21fa14df target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x22412cdd transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2373e43c transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b4a54d8 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e05e080 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x31824f3a passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x318d6560 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x32aca421 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x361b1762 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x46a6bd7d passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x48e910bc core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x4b84d0c9 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4bf78c3e transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x4c34bfc1 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4d20fa54 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x4db88237 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x5264a694 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x5887106d core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x5ad4166b transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x603ef2a6 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x657ee8d9 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x66f75537 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e34fb93 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x7397a357 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7777c3d0 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x780f86a5 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d82d30a spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x7de0509a core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x87579697 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x8ac966e2 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b95a63a sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x8de55ad5 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x8fab29b0 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x913c3e78 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x91c9b19f core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x91f507fc spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x9215b97a target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x9299451c spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x971046da target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9cde4732 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x9dcbac20 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9dccacd6 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xa117206d transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xa60dc7a1 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xa9dcdcb5 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xab34ace2 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xab506bc5 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xadd02d0a target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xbbe6c5d7 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xc01d00af transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xc23a4f95 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc388681e __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4cb64d4 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xc6bc5314 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd6a719e6 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6077cbc target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb7eaacd target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xef596173 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xf04eda72 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6387b62 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xfba809df __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfe85f9b5 transport_kmap_data_sg +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x31fa6de6 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4797157d mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4fdc496a mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb4718e0b mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc6e5b81c mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd08d8eaa mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf5cc7d23 mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xfb92bb64 mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/vfio 0x0909b7e3 vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x1aa9fba0 vfio_dma_rw +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 0x7f971f8a vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xaca68d0a vfio_unregister_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0xcffb6ce0 vfio_register_notifier +EXPORT_SYMBOL drivers/vhost/vhost 0x8c8fdd70 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xd3e58b88 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vringh 0x0c46f5fb vringh_iov_pull_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x18f3ddc2 vringh_iov_push_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x19c24590 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x1fe50c1a vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2890c460 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x2d2babc9 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x3684d8af vringh_complete_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3ee1955e vringh_init_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x4504adc9 vringh_abandon_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x5bd469c0 vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x5f586ca2 vringh_init_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x61e3831b vringh_getdesc_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x660779c8 vringh_kiov_advance +EXPORT_SYMBOL drivers/vhost/vringh 0x6a693a25 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x90e93e3c vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x9b30452e vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0xa7ce8bd6 vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xa8efaeb9 vringh_set_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc0bb1581 vringh_need_notify_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc87491c8 vringh_notify_enable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xd465f463 vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xe4c21196 vringh_notify_disable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xeb2ec139 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xf1e32cc0 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0xf8605294 vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xf9d0dd07 vringh_abandon_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x3cdd09d7 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x5c4febd9 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x8d108184 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xeaf360cd lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x71a1538b sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x9480ab93 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x95e7e996 sys_imageblit +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x0a1b9c74 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x267d3261 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x5bbe98d8 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xc2695d60 is_virtio_dma_buf +EXPORT_SYMBOL fs/fscache/fscache 0x02df5ab4 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2071fde6 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x21f005e9 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x299211b9 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x304afee8 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x32e79736 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x3917dc51 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x39c896d3 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x49ea9da8 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x550c5eed fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x55c565bc fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x59e7185c __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x6025d083 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x6d978e45 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x848f16b0 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x87796f22 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x955d755c __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x972df30d __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x97ece79c fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x9b902bf0 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x9ebbb530 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xa7b0cbcd fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xa7d3709c fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xb98d94f1 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xc4a09a8a __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xc9616c74 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xca2f0f4b __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xcbe28e7e __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xcda0a915 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xd40038af fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xd8ef277d __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xdaf60007 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xeaa92e2d __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xec9aba01 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xed2a1acd __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf45d317c __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xf79d8e70 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xfaa8e18c fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xfcdfdce6 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xfce34aa2 fscache_io_error +EXPORT_SYMBOL fs/netfs/netfs 0x30921626 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x3da291f5 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x62808106 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x7361c96d netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xbccba6f5 netfs_readpage +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x051cc190 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x0b39a80a qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x462b40ff qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xbee73d48 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xdb87d20a qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe7c37ac6 qtree_get_next_id +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +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 +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x5b19e187 chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xc20134e7 chacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xce15a526 xchacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point +EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks +EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x222ff7bb 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 0x60b6bf4e lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL lib/zstd/zstd_compress 0x0e27a2dd ZSTD_initCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1278221d ZSTD_compressBegin_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1a107de2 ZSTD_compressCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1df63e88 ZSTD_compressBegin +EXPORT_SYMBOL lib/zstd/zstd_compress 0x1f03912b ZSTD_flushStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2524ba17 ZSTD_getCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x279be432 ZSTD_copyCCtx +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2833f577 ZSTD_compressBegin_advanced +EXPORT_SYMBOL lib/zstd/zstd_compress 0x2914ea2d ZSTD_compressBlock +EXPORT_SYMBOL lib/zstd/zstd_compress 0x30af45a1 ZSTD_initCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x371e7f3a ZSTD_initCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x430ecc96 ZSTD_initCStream_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0x49ed86a0 ZSTD_endStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0x56466e42 ZSTD_CStreamInSize +EXPORT_SYMBOL lib/zstd/zstd_compress 0x5c00d810 ZSTD_CDictWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0x61577694 ZSTD_compressEnd +EXPORT_SYMBOL lib/zstd/zstd_compress 0x74725e69 ZSTD_compressContinue +EXPORT_SYMBOL lib/zstd/zstd_compress 0x94e481cf ZSTD_adjustCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0x9f65c857 ZSTD_checkCParams +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa155c071 ZSTD_compressBegin_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb0aed408 ZSTD_compressStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xb4985beb ZSTD_resetCStream +EXPORT_SYMBOL lib/zstd/zstd_compress 0xbaffff96 ZSTD_CStreamWorkspaceBound +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce3864eb ZSTD_compress_usingDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xce50e5de ZSTD_compress_usingCDict +EXPORT_SYMBOL lib/zstd/zstd_compress 0xd90cb249 ZSTD_getBlockSizeMax +EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams +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 0x0b8d1b4a lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x4921a10e lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x654772a4 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6e29fb6e lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x8f00be65 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xcb5d46d1 lowpan_register_netdevice +EXPORT_SYMBOL net/802/p8022 0xaa144803 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xb70f9abe register_8022_client +EXPORT_SYMBOL net/802/psnap 0x190bd6df register_snap_client +EXPORT_SYMBOL net/802/psnap 0x6f90dfba unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0e26fb33 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x13f4d4c2 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x18cb469a p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x1fbff82e p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x2622687b p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x271931cc p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x2814714a p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x2af9a089 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x2dbeaf42 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x3085f639 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x389f9a8b p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x3ad5fd21 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x58522c76 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x5eae0ac9 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x6402dc4d p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6cc45179 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x6d06c4c6 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x73134ae1 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x82158a76 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8e4ba673 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x8ed41133 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x9236c26d p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x9b3c0237 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x9d097fd3 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x9fa2ce68 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xa74d5ea8 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xacd243c7 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xb69f6b75 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xbc007fe3 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xc535c1d6 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xc76dd341 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc8244271 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc88f97cc v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xcd83f46a v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xd041dcac p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xd29524d0 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xdb4b5b4f p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xe25b1a9e p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe78950d0 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xee1c6c67 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xeee68143 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xf17c8ad3 p9_is_proto_dotl +EXPORT_SYMBOL net/appletalk/appletalk 0x62f82589 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xa384ecdd atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xe7281db7 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xe761b8aa alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x1f256079 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x28a40ff6 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x33d77b9e atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x4b76329b atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x52eb4e68 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x69f7ae99 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x826a3547 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x8cb71ecd atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa3aaac5c atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xa3ac5620 atm_charge +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xc7497226 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xcfe31d3b atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xd191fffa vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x1076b376 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x41dce39d ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x5c1b0a1e ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x8d38c858 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xb8a4065a ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xdce3c063 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0xee46da16 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xfb49f0ab ax25_linkfail_register +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x17394594 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2dcc7844 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x44cb0698 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5db475e8 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x729a54fd ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd631baff ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/caif/caif 0x01135f6e caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x4077a433 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x8b07ddc2 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 0xe0715929 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xfdc4a106 caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x29aede92 can_proto_register +EXPORT_SYMBOL net/can/can 0x83b97a8f can_rx_unregister +EXPORT_SYMBOL net/can/can 0xadbee3fc can_sock_destruct +EXPORT_SYMBOL net/can/can 0xbb2d115a can_rx_register +EXPORT_SYMBOL net/can/can 0xe63b83bd can_send +EXPORT_SYMBOL net/can/can 0xe764f32d can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x05b73981 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x061e6ec7 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x064ba91c ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x08928d52 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x093ecd07 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x0bd8d728 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x1576abd3 ceph_monc_get_version_async +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 0x1893ab76 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x1b29b435 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x1bea7e03 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x1d754778 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x1d77a9eb osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x1f207c33 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x1f9ae2fa ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x22250405 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x24302277 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x281b622c ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x289beccb ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2ac68b49 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x2b034f9b ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x2b1e7e10 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x2b314ec1 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x2e54e7e3 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x2e685f89 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x2eb4e652 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x2ff4ab44 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3bfc8551 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x3c24f7d4 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3c9d1e89 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x3fe14b1f ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x417fe9ed ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x49d0cdc7 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x4dc4d496 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x4dcc78a0 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x5006656b ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x519e27ee ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x53cdeef2 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x549557e0 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5cece1ce ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x5d44c663 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x5f43cd6c ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x60b7649f ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x60baab4d ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x6315c681 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6be33db6 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x6d69fcf5 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x6e04e0bf ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x6e37b689 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x6e43ad95 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7006ecc2 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x76b81b65 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x77ea0642 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x7aad80fa ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x7b4b1d1d ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x82bb8887 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x84b70a9e ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x85fd15bb osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x908ad8eb ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x934d74e4 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x9451609e ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x96e779c8 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x98fad7fa ceph_cls_set_cookie +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 0x9d781394 ceph_cls_break_lock +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 0xa0fa374e osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xa260ef4a osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xa44415a6 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xa524101f ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa6d40b1a ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xa8eac0b7 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xacf8c52a ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xaf620bc6 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb399124a ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xb3ede202 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb713f177 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb7c05496 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xb8286c19 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbd4ba3c5 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xbd784a1d ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbe96acc1 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcdd62215 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0xcde295d0 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xcfe7a4f9 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xd0b42583 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd68065d3 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xdb2c9f00 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xdb38e8de ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xdd35b0b6 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe42ada55 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xee22c686 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xef587278 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xef63e134 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xef73c7c7 ceph_print_client_options +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 0xf185cb53 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank +EXPORT_SYMBOL net/ceph/libceph 0xf2719301 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xf2e36e3c ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xf3423810 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xf49641b9 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xf83f4c7a ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0xf87993ef ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xfadd3c02 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x031a3a42 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x74bdff04 dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x6a6064d2 is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0xd92d6609 hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0a50db95 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1b43735a wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xadd2cb15 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb6c0c31a wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf2df4a3b wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xfd6c7420 wpan_phy_for_each +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x7b6f4d97 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd7a47c1a __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x04353a17 gre_parse_header +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2caf06d2 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4b3ed6aa arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6baa1c58 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x99a13520 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0ad223e0 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x1c73ebf5 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2fc03870 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7a14eb5b ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x9b67c66a xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xb9be74b8 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x158a624d ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1feb8ee4 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x69775eff ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x730dc88c ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb448105a ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb94d534e ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xca4e04d0 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcdc1beff ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd1ee2a37 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x395a8d24 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x477164c6 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x81343767 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xa25f6adf ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x3f1b7ca5 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x5a269b12 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1fc474fc xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x3ab382cc xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x32f3fb67 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x838a87fd lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xa809bf48 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xbd8a71ac lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xd86822fd lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xd9ffedf3 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xdca50ab8 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xfc17071c lapb_getparms +EXPORT_SYMBOL net/llc/llc 0x28206770 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x32fbf02d llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x363cb4d9 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3d9ce4ce llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x8b221221 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x93dea69d llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x9ed63117 llc_sap_close +EXPORT_SYMBOL net/mac80211/mac80211 0x0142c3c7 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x02501fbf ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x03ed0c8a ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x08ecaf9d ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x0967b804 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x0a317193 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x0b9b235e ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x0d64092a ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x0e340b85 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x0f83c099 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x1083447b ieee80211_beacon_loss +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 0x1b3da7b8 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x1bd3203d ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x1c40bec1 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2018a3fa ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x230dd3ab rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x24099632 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x27edec89 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x29cb2d2a ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x2a2ef9e0 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x2e89e62c __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x2ff3d70f __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x30f7d060 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x31bca5e4 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x3506a8ac ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x38e4bb93 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x3a35fa79 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x41544b63 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x42d83b27 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x45744c9d ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x45da6744 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x4759da9f ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x4af88066 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4caf7966 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x53738ea1 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x595e5c89 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x59a21ee0 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x5ad1a812 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5fc740b7 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x600b9108 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x635d2889 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x65c6849f ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x660f91a0 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x66245c20 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6e08c408 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x6f41e635 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x70a6f71d ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x74f569eb ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x78859b68 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x7ae9f522 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x81a6892a ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x8547816a ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x865c5fab ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x866d9adc ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x8cf499b9 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x92696d17 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x930103ae ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x9656187c ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x977d3398 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x98254e72 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9a53af71 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x9d942ce7 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x9ec8fdc1 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x9ec90f35 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x9ef373e4 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x9fa534f5 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xa1891c87 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa7053454 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xa73b2f06 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xa93344d9 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xab04387d ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xac4c20ca ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xb0145c33 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xb3a94f07 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xc3d91e74 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xc4a1bea4 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xc5c1190b ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc7141a68 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xca72601a ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xcb390f57 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xccecc46c ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xd07bb887 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xd0bced60 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd2926708 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd58f5b35 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xd641432b ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xd73b22da ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xde1df826 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xde232086 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xe12f6dad ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe2e71c12 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0xe633aa07 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xe7d752d5 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xe7e8ab3f ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xe99f34a1 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xf588a283 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xfa75fc77 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfba52c1b ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0xffc06b98 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac802154/mac802154 0x4740db4f ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x478a6788 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x4931e3f9 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x945c0aa5 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xb67786ac ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xb9c8e794 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xc51c028a ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xfc08f5ff ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x000b37e5 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0237bea5 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x05b46f00 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0d124307 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x245fc4a1 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x377d2ab2 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4dc57ea5 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x52cb399d ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x54fd299d ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5d413883 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8bf2b609 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa982674f ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb55a601b ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xef370b5d register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf0c6d10a ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x310b0e05 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 0x121d9f44 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x5416e1a3 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x8f51cbdd nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xc5eb3abc __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 0x215e4fd6 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x3875892d xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x897c02a6 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x9c96849b xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xb8082bdb xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xb90cf2a3 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0xbfdcba99 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd649b5a5 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xdd636b3a xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xf779325b xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x0652af04 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x0ad1e38e nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x123be901 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x14bce819 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x2aa8311e nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x4d059fef nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x5b8d44b3 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x63f07f78 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x6a91881c nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x7477b79c nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x801d323b nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x82de8b82 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x936f4efe nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x9e7c6f1e nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xacca4ca9 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xb1fd4da9 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbf4ff37b nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xc0a18091 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xd2fcafc0 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe33bd179 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xffb1caa4 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x067c4551 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x0acf66a4 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x0b635cdb nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x13b0089f nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x14bcaaa4 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x278b3bf4 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x286e33cd nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x3486f3b9 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x3cd78940 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x3fd9a004 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x4a9fa49d nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x4b49da16 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x59ed69fd nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x668d77d6 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x779aa1eb nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x8246e59d nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x8b4ed3f9 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x8fb55d3d nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x925f86fc nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x9acb8e07 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xab2b313f nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xab7d1c3b nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc2465fb4 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xc79507f5 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xdb6a29e6 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xe1371577 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xe970094c nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xecdbadb5 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xf8cb5590 nci_send_frame +EXPORT_SYMBOL net/nfc/nfc 0x03554d42 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x14824bc4 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x16d1765d nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x3bfa9490 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x3ee0ad3c nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x4c9bcdaf nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x59448562 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x5f93a065 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x73373b0d nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x745637b2 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x7781a33e nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x81efe200 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x8f071185 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x981a0296 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x994c89dc nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xa71c8396 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xabf486e1 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xb084edad nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xbc58a3d1 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xc08c1ee5 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xc4e319e1 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xcdafc041 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xf2f8b3a7 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xf735bac0 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xfc627134 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc_digital 0x135bbc9a nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x45edcd9f nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x5459ab31 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xcfd40684 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x1f17023b phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x5854d682 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x593b05c2 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x6cac1a1e phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x85a1e005 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x8f6f3d9c pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x9ea407a2 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xa1222b99 pn_skb_send +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0482ffb7 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0bec7d72 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0ecdbd81 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1bdc4e14 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2e689778 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x35b97254 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x36bbf8bc rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4a9c9b28 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4cbbbdbf rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x71dc1577 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8a18ee13 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa1178d9e rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa1e5a787 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb3fa4d95 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc00d4461 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc414ded8 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd3512d82 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xff537c51 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/sctp/sctp 0x54567277 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xacdc6157 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd08f2e14 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdd0c7211 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x432ba4d8 get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0x48ae6e19 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xacdd7f9b xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd2638567 xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x23cfcd11 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x2eda609d tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x6cf65ccf tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x994d193a tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0xc1fd5dd7 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x0404256e cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x05d7396a cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x0fd4ce6e cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x11164603 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x1248b196 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x130b6437 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x1374ee97 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x1402dbc9 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x1474cfd2 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x21f260ee cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x26c298dc cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x26ed38e7 cfg80211_new_sta +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 0x296c48b8 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x2b06e874 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x2e4c73c3 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x305cbacd cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x3195e2f1 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x3221f602 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x370e9072 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x38295ce3 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x389e2244 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x3aeeeb0b wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x3c609780 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3d970c1d cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x3daf8a4e cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x3e4acd10 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x409f2ef3 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x420783af cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x4451e31b cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x44e664db ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x4710a497 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x486c8714 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x4a68521a cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x4c6495b0 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x50630cb6 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x51ad7197 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x5231a922 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x5282e0ac cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x546feab1 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x58b00f21 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x597dd726 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x5a442b79 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x5b0043d0 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x6068757d __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x60f94bdc cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x65853148 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x680048d2 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6bf8abb0 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x6eba1777 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x6f008539 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x74a52cc0 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x75e8f3de get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x78987191 cfg80211_ref_bss +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 0x7bb1ed55 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7c57a22c cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x7e0ca38e wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x7e76e83b wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x81a51e92 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x8495bd48 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x853010d2 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x8b8656da cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x8d1afb69 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x8e6df879 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x8f35ef6d __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x97ff8364 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x9d105e79 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9eafca6b cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x9f5eb91a cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xa0ad47dd ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xa88a6a31 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xa8bf2935 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa8e470fd cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xaad6e9ff cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xacdda05d cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xadb8611b cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xb2a8a420 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xb3884e81 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb61ff90e cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xb85e5bf1 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xba64c07b cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xba734bdf regulatory_pre_cac_allowed +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 0xc80d1531 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xca49f770 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xcac1393c cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcf9f3fa3 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd77a7525 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xdb053092 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdd92d94f wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xe0263441 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xe05f56b4 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xe2baef8a cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0xe5d58975 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe65f1757 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xe8c3c10b cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xeef79f56 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xeff58fea cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0xf095c056 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xf38b5954 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +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 0x5ab4856f 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 0x9fd2bdd0 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xbcaa29a1 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 0xfde64fbf snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x734e4fba snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7a3e0db5 snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8150b379 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb8620ad8 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd70dbf6 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd935c83 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe9e6c50c snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xe0ac69cf snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0ae29911 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x0d7e6db8 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x27025a9e snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x2a88dce1 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x2f65d635 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x48466b4a snd_device_register +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4e77488d snd_register_device +EXPORT_SYMBOL sound/core/snd 0x5aa04190 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x5ddd1ff6 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x5e34e571 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x6170136f snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x723b39fb snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0x793dd9ca snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x7abb09bc snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x820be671 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x86d23d99 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x8b413cca snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0xa01e5d70 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xaa84ecea snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xad09eab6 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb48a6c29 snd_device_new +EXPORT_SYMBOL sound/core/snd 0xb6993d2e snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xb7a8be9f snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xc168b265 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xcc1b0673 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xd8241d28 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xd8981623 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xda17693d snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xdcd2c487 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xe1773fe4 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xe6adc11e snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xfcec8db3 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xfe1acb2e snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +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 0x056f9a47 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x0c528cfe snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x0d22d071 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x0e84763d snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x13ce1ba1 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x220cb80e snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x289a4094 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x31d7a1d3 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x32d39621 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x35c44bb6 snd_pcm_lib_free_vmalloc_buffer +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 0x3be288ca snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x3e8e139a snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x40a46624 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x40fee916 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x42df94bb snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4497f777 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x47357090 snd_pcm_hw_constraint_ratdens +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 0x50c35640 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x52e01b8e snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x5ad181e9 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5cc8d070 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x5f491eff snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x63ee686a snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x65f4271c snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x673efea0 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x68a70758 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x85177e66 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x883bef0f snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x8a9b6d07 snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x92953955 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x96fde789 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9fa80268 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa2dfcb3d snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa73bda35 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xac470566 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xb0e12e58 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xb7cf44d5 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xb95474fe snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xc6df7a61 snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0xc7e0ca72 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xc931eb68 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xcb71c8b7 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xccdbed8c snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xda19f6aa snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xdbe1aa1a snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xf7e7b355 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-pcm 0xffe1f95b snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0e5a7111 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x15cb77cd snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1d899c30 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x20324f13 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x231447b1 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2f7e7ea9 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x352580c9 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4a201ef1 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7f7bead3 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x865e9ce1 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8eefa1c7 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa57b0a5f snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xaa07fd94 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb504e1e1 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbda47706 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc7cd91b6 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcef005ae snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcf48b824 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd57b319a snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfa5397a0 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x2c59d6aa 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 0x02b45a5d snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x08b86e4f snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x1ec0327a snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x29af23b4 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x30d34613 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x3d76f2b8 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x4a48074c snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x64b5a6b1 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x6f77c884 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x757d47dd snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x8652e9a5 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x894e0e5d snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x8a3c41ec snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xbc72275a snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xfb448fd4 snd_timer_pause +EXPORT_SYMBOL sound/soundcore 0xe454f060 sound_class +EXPORT_SYMBOL vmlinux 0x0010d705 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x001e2e7a param_array_ops +EXPORT_SYMBOL vmlinux 0x002870b1 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x0037d27a eth_header_cache +EXPORT_SYMBOL vmlinux 0x004a80cd vga_put +EXPORT_SYMBOL vmlinux 0x0055d7e0 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x0057dfef done_path_create +EXPORT_SYMBOL vmlinux 0x006c434c put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x00b39951 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00c93e8e from_kgid_munged +EXPORT_SYMBOL vmlinux 0x00cd1d80 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x00d18ebf input_flush_device +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00d96ad7 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x00e21c08 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x00f4c68e xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x00f9d56e nf_hook_slow +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x01094fb3 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x010c0077 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds +EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read +EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x0145097f qdisc_put +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 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x017dfc50 block_read_full_page +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 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01c9e8da tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x01d7264c d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x01dc10e5 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x01e8359e udp_seq_next +EXPORT_SYMBOL vmlinux 0x01eef3d7 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x020456a0 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x020f8abe unload_nls +EXPORT_SYMBOL vmlinux 0x0222c532 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x0226abc6 regset_get_alloc +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x0229a2f2 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0x02350fa0 skb_expand_head +EXPORT_SYMBOL vmlinux 0x023d22be dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x023d9eaa phy_suspend +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x024a91d1 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x02528934 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x026cf58e tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x026dfd5e shmem_aops +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0295f4d7 __breadahead +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02c0777f fman_port_get_device +EXPORT_SYMBOL vmlinux 0x02d30416 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x02d410df inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x02d8fdb9 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x02e477d2 netpoll_setup +EXPORT_SYMBOL vmlinux 0x02fc8591 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x03042af0 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x030cf74d fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x0311a437 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x031d34a2 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x0331fc8c pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x033d53a0 kernel_write +EXPORT_SYMBOL vmlinux 0x035e4973 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036d7616 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x036df775 sk_error_report +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037f8be0 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x0381ac51 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03d6e86b xfrm_state_free +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x040e71ee dev_mc_add +EXPORT_SYMBOL vmlinux 0x040edf5b kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x041a5196 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x04289335 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x04394bf4 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0456827d phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev +EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x047838c0 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x04790260 single_open +EXPORT_SYMBOL vmlinux 0x04794bba proto_register +EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x047e5c22 scsi_done +EXPORT_SYMBOL vmlinux 0x048192d3 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x04839ab7 tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x04967f8c netdev_crit +EXPORT_SYMBOL vmlinux 0x04a14673 xp_alloc +EXPORT_SYMBOL vmlinux 0x04aef2b0 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x04b2ba41 acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0x04c3aece dev_trans_start +EXPORT_SYMBOL vmlinux 0x04c44b69 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x04ca1320 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04f26c63 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x04ff5500 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x0503d4ec vmbus_sendpacket +EXPORT_SYMBOL vmlinux 0x0505f51e dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x0511c60d uart_get_divisor +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x051d9a5e register_quota_format +EXPORT_SYMBOL vmlinux 0x05210969 lock_rename +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052a4ed9 d_make_root +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x0547ca58 vme_dma_request +EXPORT_SYMBOL vmlinux 0x054d261c devm_iounmap +EXPORT_SYMBOL vmlinux 0x054ef01e dev_mc_sync +EXPORT_SYMBOL vmlinux 0x055d783d of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05a811a3 clear_inode +EXPORT_SYMBOL vmlinux 0x05bf4cb7 tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0x05deb2bf mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x05f4adcb alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x05f55d29 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x05f99d1b user_path_create +EXPORT_SYMBOL vmlinux 0x0606736b __d_lookup_done +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x06183e77 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x0619b358 seq_open_private +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x063ea951 __post_watch_notification +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x0675add7 poll_initwait +EXPORT_SYMBOL vmlinux 0x06770098 dump_page +EXPORT_SYMBOL vmlinux 0x068190d2 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x06848c60 to_nfit_uuid +EXPORT_SYMBOL vmlinux 0x069fbc63 set_blocksize +EXPORT_SYMBOL vmlinux 0x06a286d5 inet6_getname +EXPORT_SYMBOL vmlinux 0x06a6ccc6 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x06aeeb97 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x06ba8363 is_subdir +EXPORT_SYMBOL vmlinux 0x06bd1c9b kernel_getpeername +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06da88a6 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm +EXPORT_SYMBOL vmlinux 0x0714aa37 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x07167042 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x0721c118 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x073028bd skb_clone_sk +EXPORT_SYMBOL vmlinux 0x0730362e jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x0750f170 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x076c38e5 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x0774cb85 fc_host_post_vendor_event +EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl +EXPORT_SYMBOL vmlinux 0x0784f982 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07ac5d5e fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x07b50343 phy_find_first +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq +EXPORT_SYMBOL vmlinux 0x07de6321 get_watch_queue +EXPORT_SYMBOL vmlinux 0x07e6f6e6 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x08047566 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082cab59 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x08602202 fc_host_post_fc_event +EXPORT_SYMBOL vmlinux 0x0878f6da __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x087ea1c2 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x08856939 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x08a4bfdb __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x08d0520b scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x08d0bf39 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x08e103d2 seq_pad +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08f4bddd sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x091d2608 to_nd_pfn +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x093e14b5 inet_frags_init +EXPORT_SYMBOL vmlinux 0x09440be2 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x0949185e pci_iounmap +EXPORT_SYMBOL vmlinux 0x0963abc9 mdio_device_create +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x0980c1ca textsearch_register +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098ea346 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x09a3dcc9 of_chosen +EXPORT_SYMBOL vmlinux 0x09b578af load_nls_default +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09e4b3de inet6_add_offload +EXPORT_SYMBOL vmlinux 0x09e6e408 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a1d25e6 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0x0a292909 __scm_destroy +EXPORT_SYMBOL vmlinux 0x0a34372b rt6_lookup +EXPORT_SYMBOL vmlinux 0x0a36766b tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x0a3767cb xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x0a541fd1 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a7aa7d0 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x0a80b597 arp_xmit +EXPORT_SYMBOL vmlinux 0x0a82e7b0 tty_check_change +EXPORT_SYMBOL vmlinux 0x0a867bad blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x0a987628 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x0a9e301c vm_map_pages +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa8a2a2 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0ab15852 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x0ac071e7 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x0ac50ca4 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae8ceea inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x0aeb5da7 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x0af7be70 request_key_tag +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b230c05 pci_choose_state +EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc +EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x0b39f7b3 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x0b57c545 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x0b670df7 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b8abd5b __register_nls +EXPORT_SYMBOL vmlinux 0x0b929116 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0bb18b94 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x0bbeb3b8 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc64fd2 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x0bca775c mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x0bced1c1 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x0bd27222 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x0bd47cff input_setup_polling +EXPORT_SYMBOL vmlinux 0x0be11c86 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x0be6a8e3 lookup_one +EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame +EXPORT_SYMBOL vmlinux 0x0c13e635 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c499ad4 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c63fae6 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x0c6409c5 copy_string_kernel +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c8bb129 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x0c9c6379 rtc_add_group +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cb873de xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x0cbce570 __of_get_address +EXPORT_SYMBOL vmlinux 0x0cbf28fc of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cc87ccb tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0ce808be simple_pin_fs +EXPORT_SYMBOL vmlinux 0x0cf71a14 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d20726d freeze_bdev +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6bb925 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x0d70939c of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x0d7352e5 dquot_destroy +EXPORT_SYMBOL vmlinux 0x0d75f2b4 md_write_end +EXPORT_SYMBOL vmlinux 0x0d84210a scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x0d845e41 genl_register_family +EXPORT_SYMBOL vmlinux 0x0d9af597 trace_event_printf +EXPORT_SYMBOL vmlinux 0x0db29a7f fc_find_rport_by_wwpn +EXPORT_SYMBOL vmlinux 0x0db482e1 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x0dc8d41d pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x0de2a38b update_region +EXPORT_SYMBOL vmlinux 0x0df638cb xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e50bf10 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x0e58d173 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x0e5eacce fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x0e7028e8 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x0e747829 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor +EXPORT_SYMBOL vmlinux 0x0e7592d3 fb_show_logo +EXPORT_SYMBOL vmlinux 0x0e7a055c dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x0e925639 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x0e943913 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x0e9735af pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x0e9b39b1 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eae7fac pci_match_id +EXPORT_SYMBOL vmlinux 0x0eb0ced4 build_skb_around +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ebff75e nd_device_notify +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed99aed dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x0ef53cb5 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x0ef7d5d9 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x0efb58e1 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f1987bc jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f2a510a inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f79299e phy_device_register +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd6a456 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0ffce272 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x1003895b default_llseek +EXPORT_SYMBOL vmlinux 0x10056685 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x1024fe2f __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x1037b610 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x10604169 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x10689409 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x107b6276 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x107b880a disk_start_io_acct +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107e1a88 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x109ab53c inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x10a30e61 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x10a95f49 dm_register_target +EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e66688 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10ec9776 simple_setattr +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1121865c ptp_clock_index +EXPORT_SYMBOL vmlinux 0x112cc361 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x1162cbbe of_match_device +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1195ee1b of_node_get +EXPORT_SYMBOL vmlinux 0x119bd8ce acpi_pm_device_sleep_state +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 0x11f47d8c utf8_strncmp +EXPORT_SYMBOL vmlinux 0x11fe0b95 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120e6afa of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x120ff8e1 xudma_get_rflow_ring_offset +EXPORT_SYMBOL vmlinux 0x12194a8c sock_rfree +EXPORT_SYMBOL vmlinux 0x121bd1ba set_nlink +EXPORT_SYMBOL vmlinux 0x12400113 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x1241764d tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x12433f98 of_find_property +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x124d9489 tty_lock +EXPORT_SYMBOL vmlinux 0x1250c752 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x126e140e dma_resv_fini +EXPORT_SYMBOL vmlinux 0x12759092 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x1288b27d pipe_lock +EXPORT_SYMBOL vmlinux 0x12a05b5e pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user +EXPORT_SYMBOL vmlinux 0x12b01f78 input_get_keycode +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12d696dd neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x12dae737 dcbnl_ieee_notify +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 0x1315ea6e may_setattr +EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x131b460c __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x131f94e5 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x1342cd70 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x135e6e34 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x138bdd96 cpumask_next +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13bd0a16 con_is_bound +EXPORT_SYMBOL vmlinux 0x13bf1f4b inode_add_bytes +EXPORT_SYMBOL vmlinux 0x13c27449 simple_getattr +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 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x140ad545 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x142e7a14 irq_set_chip +EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x1459be9c locks_delete_block +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x1461a393 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x14653cf4 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x1476d3eb tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x14953780 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x1497221a __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14ced76e nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x14d778a8 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool +EXPORT_SYMBOL vmlinux 0x14f68abd netif_skb_features +EXPORT_SYMBOL vmlinux 0x15087666 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x151cb173 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x153e5f6f touch_atime +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x155505bf console_stop +EXPORT_SYMBOL vmlinux 0x15777328 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x15857b2c dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x15a7c185 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x15b35fc4 io_uring_get_socket +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 0x15dd2d4f nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x15eea0a7 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x16058e26 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x1606b958 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x160c4df1 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x16115cf0 vme_bus_type +EXPORT_SYMBOL vmlinux 0x162154d8 import_iovec +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x162e1302 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x16301100 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x1638f410 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x163f51c0 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x1648285a generic_ro_fops +EXPORT_SYMBOL vmlinux 0x1650ad68 key_task_permission +EXPORT_SYMBOL vmlinux 0x1674ad95 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x16809225 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x1684fdbc set_bdi_congested +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x1699676a generic_write_checks +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16cfcbe3 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x17195cc7 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x17375062 sock_no_linger +EXPORT_SYMBOL vmlinux 0x17434cb6 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x17471c68 nf_log_trace +EXPORT_SYMBOL vmlinux 0x17616bff fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x1766c058 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x176e2774 param_set_long +EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get +EXPORT_SYMBOL vmlinux 0x17863c23 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x17a41482 rpmh_write +EXPORT_SYMBOL vmlinux 0x17ba3d58 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x17bc4005 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x17bd1bbf get_tz_trend +EXPORT_SYMBOL vmlinux 0x17c90a84 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x17d3ffed ip_frag_init +EXPORT_SYMBOL vmlinux 0x17d681fb fman_reset_mac +EXPORT_SYMBOL vmlinux 0x17e843e8 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x18079e7b sock_wfree +EXPORT_SYMBOL vmlinux 0x1813dab4 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x1829b1d2 __lock_page +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x184ed4e3 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x1858cce6 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x185fa081 input_grab_device +EXPORT_SYMBOL vmlinux 0x1863e9bc rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x18729066 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x1885e946 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x1887d02e cdrom_open +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188c434b udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1893a75f bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x1896094e configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x18ab28ab filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x18ab68ec dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io +EXPORT_SYMBOL vmlinux 0x18d18120 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x18db637a gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18ee53af jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x18fcbe69 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x190a48a9 efi +EXPORT_SYMBOL vmlinux 0x192207a6 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x19332e29 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x195568c2 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x195d9b5f pnp_is_active +EXPORT_SYMBOL vmlinux 0x19622ade lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x19739ce6 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x197b702c netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x199c7c67 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19aa2a44 pid_task +EXPORT_SYMBOL vmlinux 0x19ada29b skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x19b8028d ppp_input_error +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19f7401a init_pseudo +EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x1a2da23f netif_rx_ni +EXPORT_SYMBOL vmlinux 0x1a3f0ce7 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x1a3f65ee ppp_register_channel +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a560e6b udp_gro_receive +EXPORT_SYMBOL vmlinux 0x1a641b57 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x1a7d3c2b migrate_page_states +EXPORT_SYMBOL vmlinux 0x1a855e29 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x1a862757 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x1a952b4f init_special_inode +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1a9a8ed5 inet_release +EXPORT_SYMBOL vmlinux 0x1a9e5bba tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x1aa2fd17 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x1aa5ed1b dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1aca5ed3 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x1ace4993 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x1add38b4 fqdir_exit +EXPORT_SYMBOL vmlinux 0x1af0024d amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x1af1a78a uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b1534d0 sock_create_lite +EXPORT_SYMBOL vmlinux 0x1b2d149e xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x1b2facd1 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x1b469d54 inet6_release +EXPORT_SYMBOL vmlinux 0x1b4abd91 fc_host_post_event +EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b7563dd d_add_ci +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b92bf03 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb6a8e2 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x1bb8eaf2 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x1bd12b23 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bf32dc0 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x1bfa0cf7 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x1bfd08a9 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x1c07c745 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x1c0dacd2 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x1c22cf97 nd_device_register +EXPORT_SYMBOL vmlinux 0x1c2f9649 nf_reinject +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c6ac9cf pci_claim_resource +EXPORT_SYMBOL vmlinux 0x1c8afc4e __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x1c9a7400 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x1ca1b46c dev_get_by_index +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cbfcb89 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl +EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id +EXPORT_SYMBOL vmlinux 0x1d04b845 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +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 0x1d46933c zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x1d4dd39f param_set_bool +EXPORT_SYMBOL vmlinux 0x1d4f4e36 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x1d50fdb3 fget +EXPORT_SYMBOL vmlinux 0x1d5538b1 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1d637683 __alloc_skb +EXPORT_SYMBOL vmlinux 0x1d709592 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x1d88da62 of_match_node +EXPORT_SYMBOL vmlinux 0x1dbfc193 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x1dc3848c dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dced2a7 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x1dd1f4ba km_state_expired +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de21ed4 audit_log_start +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 0x1df0519f serio_unregister_port +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 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e4a2f5b qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e718d02 amba_find_device +EXPORT_SYMBOL vmlinux 0x1e8af1b6 tso_start +EXPORT_SYMBOL vmlinux 0x1e8d5a1f dqget +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea1ffb4 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x1ebb682d default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x1ebd1ba0 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x1ec6dc50 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x1ed71b8a scsi_ioctl +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1f033a90 register_netdev +EXPORT_SYMBOL vmlinux 0x1f480c10 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x1f52f821 seq_read +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f58d4e4 vfs_readlink +EXPORT_SYMBOL vmlinux 0x1f636daf dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x1f70fe5e phy_register_fixup +EXPORT_SYMBOL vmlinux 0x1f76b8b8 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x1f7b963b generic_file_llseek +EXPORT_SYMBOL vmlinux 0x1f8549a7 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x1f92158e kthread_create_worker +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc5fbb1 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe8ee84 napi_build_skb +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +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 0x20554b7a blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x208c2b8d neigh_table_clear +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b950c5 of_node_put +EXPORT_SYMBOL vmlinux 0x20bf3e5a input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20cca97f module_refcount +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20f2f0e8 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize +EXPORT_SYMBOL vmlinux 0x2100e2f1 netdev_printk +EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x210f221f sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x211f3e05 xattr_full_name +EXPORT_SYMBOL vmlinux 0x2123c7bc tcp_ioctl +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x2150f0e9 dev_add_offload +EXPORT_SYMBOL vmlinux 0x2187d3da flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21d42ce9 nla_append +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x21f59322 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x220bbda6 d_set_d_op +EXPORT_SYMBOL vmlinux 0x220c7021 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x221defef vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x221f8b27 __scsi_execute +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x2247e37e __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x22565669 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x22911fd7 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x229484cd netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0x229fd5bd input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x22afd6a7 begin_new_exec +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x23312786 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x23315ea0 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x23318a5b __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x23347d0d pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x233aadec md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x23420ea6 pci_dev_get +EXPORT_SYMBOL vmlinux 0x2342a6ea generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x23529ff7 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x23798b02 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x237cc5f9 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23d52b14 passthru_features_check +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23e09804 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x23f56b28 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24175c91 make_kprojid +EXPORT_SYMBOL vmlinux 0x24176ac5 seq_write +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242f8794 page_get_link +EXPORT_SYMBOL vmlinux 0x24410f99 ip_options_compile +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x24460425 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x244c235d devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x2455bf23 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x246cb677 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x248b4f5a fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24dbd893 rio_query_mport +EXPORT_SYMBOL vmlinux 0x24f73eb2 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x250470a2 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x251b495a vme_register_driver +EXPORT_SYMBOL vmlinux 0x251f5aab register_key_type +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x25310400 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x2536d0a6 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x253e291e amba_device_register +EXPORT_SYMBOL vmlinux 0x2559047b tso_build_hdr +EXPORT_SYMBOL vmlinux 0x255e5ef3 tty_port_put +EXPORT_SYMBOL vmlinux 0x2572ed94 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x25804bf5 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x25808069 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2582d5a4 jbd2_journal_check_available_features +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 0x25ab406c rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x25b2e348 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x25b4e8c3 bio_split +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25ed158f d_path +EXPORT_SYMBOL vmlinux 0x2604e21b kernel_bind +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x260b886b mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x26151cbf truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x261c636e __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x26270d0d _dev_printk +EXPORT_SYMBOL vmlinux 0x26305936 fc_remote_port_delete +EXPORT_SYMBOL vmlinux 0x263b12f8 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod +EXPORT_SYMBOL vmlinux 0x26443723 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x26451e60 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x2647ec16 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x26524f7d flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x2652be41 netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0x26576a42 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x26627e17 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x267116fd loop_register_transfer +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x26a1212e pci_resize_resource +EXPORT_SYMBOL vmlinux 0x26a91ce2 component_match_add_release +EXPORT_SYMBOL vmlinux 0x26c0f87c pagecache_get_page +EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26f42e1a input_release_device +EXPORT_SYMBOL vmlinux 0x26faad34 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x270fea5c wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x2715b750 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x2715f336 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x271f87f1 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x27236b46 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x2725b9a3 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +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 0x276e1905 dns_query +EXPORT_SYMBOL vmlinux 0x2770ad5e tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277999cb dquot_initialize +EXPORT_SYMBOL vmlinux 0x277b4cbb submit_bio +EXPORT_SYMBOL vmlinux 0x2780b27c serial8250_register_8250_port +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 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27ecf791 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x27f8381a __skb_checksum +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28239d66 sget +EXPORT_SYMBOL vmlinux 0x2824b064 sync_blockdev +EXPORT_SYMBOL vmlinux 0x282bcb3a follow_up +EXPORT_SYMBOL vmlinux 0x28660276 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x2869b985 stream_open +EXPORT_SYMBOL vmlinux 0x286bfd8e kthread_stop +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x288508c0 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x288530e1 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x289080e2 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x28a33b50 xp_free +EXPORT_SYMBOL vmlinux 0x28c656f6 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x28cda586 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x28cf545a vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x28e0a4a9 file_modified +EXPORT_SYMBOL vmlinux 0x28ed15f2 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x28fcd7ce ip6_frag_next +EXPORT_SYMBOL vmlinux 0x291720e3 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x2928f40b splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x2934dd9d lru_cache_add +EXPORT_SYMBOL vmlinux 0x2937bf72 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x29512cf1 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x2963bf1d page_symlink +EXPORT_SYMBOL vmlinux 0x29726ced netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x297fa014 cont_write_begin +EXPORT_SYMBOL vmlinux 0x29828d77 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x29b7977a devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x29cbc723 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x29d27ade posix_lock_file +EXPORT_SYMBOL vmlinux 0x29dbd167 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x2a1749b9 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x2a27a730 of_iomap +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a51adaf vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x2a58a39d md_bitmap_free +EXPORT_SYMBOL vmlinux 0x2a60b983 block_write_full_page +EXPORT_SYMBOL vmlinux 0x2a8dd591 neigh_for_each +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a9717a3 config_item_get +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get +EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id +EXPORT_SYMBOL vmlinux 0x2ab361bc fb_pan_display +EXPORT_SYMBOL vmlinux 0x2acdaea8 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x2ae9b882 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x2afe6a8d input_event +EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 +EXPORT_SYMBOL vmlinux 0x2b3f5362 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x2b4932fb uart_update_timeout +EXPORT_SYMBOL vmlinux 0x2b4ca85e xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x2b534886 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b727b97 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x2b7807fe msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x2b81c0d4 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2baae7b3 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x2bb16eff discard_new_inode +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bbbb65a scsi_block_requests +EXPORT_SYMBOL vmlinux 0x2bc7a5ad blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x2bcc3104 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x2bd5efbe ptp_clock_register +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bdd55b1 phy_detach +EXPORT_SYMBOL vmlinux 0x2bde205c scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove +EXPORT_SYMBOL vmlinux 0x2c03c583 seq_lseek +EXPORT_SYMBOL vmlinux 0x2c086d2c mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x2c0df9d0 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x2c1107af mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x2c1fad1c xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2d6814 param_set_ulong +EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c35270c kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x2c377232 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x2c4c68db nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c5d6046 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x2c6f735e security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c847755 d_splice_alias +EXPORT_SYMBOL vmlinux 0x2c8f7f21 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x2ca45905 page_pool_put_page +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cdcbca3 register_md_personality +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2cdfad35 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x2cf6dde7 __fs_parse +EXPORT_SYMBOL vmlinux 0x2cfe396b kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d344813 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d4ae6b6 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d5d7b8d simple_transaction_get +EXPORT_SYMBOL vmlinux 0x2d687c45 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x2d7eceb9 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x2d87ebc6 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d93e71b vlan_vid_del +EXPORT_SYMBOL vmlinux 0x2d96588a input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2da0efe1 __frontswap_load +EXPORT_SYMBOL vmlinux 0x2dab4908 d_move +EXPORT_SYMBOL vmlinux 0x2dc0ed4c kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2deaa24d sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x2def4686 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x2df6cfb1 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x2dfa25d5 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e0e96e0 pnp_device_detach +EXPORT_SYMBOL vmlinux 0x2e12e0d5 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x2e1c9299 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e1fe070 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw +EXPORT_SYMBOL vmlinux 0x2e2e1a3b tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e4c7d64 follow_down_one +EXPORT_SYMBOL vmlinux 0x2e4e2ee3 md_integrity_register +EXPORT_SYMBOL vmlinux 0x2e5043a8 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x2e5eb971 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e6d4b90 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x2e7cb8cb kern_path +EXPORT_SYMBOL vmlinux 0x2e842a6e iput +EXPORT_SYMBOL vmlinux 0x2ea14263 file_remove_privs +EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x2eb25dba xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ece4890 vfs_unlink +EXPORT_SYMBOL vmlinux 0x2ed68340 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2eea912c get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x2eee015d devm_ioport_map +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init +EXPORT_SYMBOL vmlinux 0x2f1f502f security_inode_getsecctx +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 0x2f47fcee filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x2f63089c netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f7cdf8a msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x2f7e7e5f sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x2f97c17d mdiobus_read +EXPORT_SYMBOL vmlinux 0x2f9afef7 input_close_device +EXPORT_SYMBOL vmlinux 0x2faa144d fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x2fadb1e7 notify_change +EXPORT_SYMBOL vmlinux 0x2fb1ea15 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x2fc898d5 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x2fcaba36 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0x3007f138 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x300eb191 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x30297f47 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x3034fc16 param_get_hexint +EXPORT_SYMBOL vmlinux 0x303eeddb netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x304804b5 netif_device_attach +EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0x305527b3 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x306c65ce arp_create +EXPORT_SYMBOL vmlinux 0x306e8b1e proc_create +EXPORT_SYMBOL vmlinux 0x308f2102 dma_map_resource +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a37cf0 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f620cd phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x3103d2e4 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x310f8396 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x3114a1b0 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x31165746 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x31298238 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x313009e0 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x31359a8f jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x314faa52 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x3153df37 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x31646d02 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x316be539 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31cfaaa0 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x31d9b071 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x31f1edca vfs_rename +EXPORT_SYMBOL vmlinux 0x31f2778b pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x31fe498e netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x321afe70 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x324d30bd of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x324e7de7 drop_nlink +EXPORT_SYMBOL vmlinux 0x3251e780 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x3258a577 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x32671755 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x32749c72 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32897f5d pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x3289fa6c inet_offloads +EXPORT_SYMBOL vmlinux 0x32a7640d pneigh_lookup +EXPORT_SYMBOL vmlinux 0x32ac2d6c of_n_size_cells +EXPORT_SYMBOL vmlinux 0x32af86dd __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32d8503a kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32eee245 set_disk_ro +EXPORT_SYMBOL vmlinux 0x32eee9d5 filp_open +EXPORT_SYMBOL vmlinux 0x32fd3782 serio_open +EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl +EXPORT_SYMBOL vmlinux 0x33131e11 sock_i_uid +EXPORT_SYMBOL vmlinux 0x3319a1aa pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x3333ef12 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down +EXPORT_SYMBOL vmlinux 0x335d1465 security_sb_remount +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x33797fe8 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x338b6ded __find_get_block +EXPORT_SYMBOL vmlinux 0x33a266b5 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x33bee43a nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x33d86663 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x33db3972 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x33dcb07c security_inet_conn_established +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 0x3410d2c8 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x341bed8d nlmsg_notify +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x3425bac3 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x344c64e0 pci_get_class +EXPORT_SYMBOL vmlinux 0x34770094 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x34869fbc tcf_action_exec +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34b3c181 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x34bd84aa pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34cf5fd5 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x34d23a36 dev_add_pack +EXPORT_SYMBOL vmlinux 0x34e8a06f tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger +EXPORT_SYMBOL vmlinux 0x34fc9439 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3539c802 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x354720d0 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x3547b2d3 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace +EXPORT_SYMBOL vmlinux 0x355f2558 ip6_xmit +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x357654b6 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x357c78cc devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3582fe91 padata_do_serial +EXPORT_SYMBOL vmlinux 0x358cc630 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x358f6aef module_put +EXPORT_SYMBOL vmlinux 0x359b73ff __sock_i_ino +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35c3ed0d of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x35ca7e06 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x35d03b6e pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x35e3e8d1 uart_register_driver +EXPORT_SYMBOL vmlinux 0x35ef6299 file_update_time +EXPORT_SYMBOL vmlinux 0x3607ff63 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x362573b1 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x3640aae4 write_one_page +EXPORT_SYMBOL vmlinux 0x3643a9a9 sock_no_recvmsg +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 0x36602e0d page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x366c718c reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x367b0784 vfs_create +EXPORT_SYMBOL vmlinux 0x367c57ca user_path_at_empty +EXPORT_SYMBOL vmlinux 0x368b8e6b flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x3699937d devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36cc78ce crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x36ea7ec7 inet6_protos +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x372058cb acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x3730f30e cdrom_check_events +EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x375b2d31 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream +EXPORT_SYMBOL vmlinux 0x377abd59 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x3786a6a7 d_delete +EXPORT_SYMBOL vmlinux 0x37894c46 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x379dbffc __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x37ab3158 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c4d8a2 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x38156426 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38287eed xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x3836f4c4 param_set_charp +EXPORT_SYMBOL vmlinux 0x384ef81f phy_device_remove +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x3868ff77 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x3873de2b of_find_compatible_node +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 0x3894d489 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x389524ea dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x389e4ebe netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b2687f vc_resize +EXPORT_SYMBOL vmlinux 0x38b74a0e nd_integrity_init +EXPORT_SYMBOL vmlinux 0x38d0328e netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38eef0a6 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x38f9211c nf_setsockopt +EXPORT_SYMBOL vmlinux 0x390d469e page_pool_destroy +EXPORT_SYMBOL vmlinux 0x3913e9e1 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x39147be8 d_exact_alias +EXPORT_SYMBOL vmlinux 0x3914c606 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x394cb5f6 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x397078b6 nd_dax_probe +EXPORT_SYMBOL vmlinux 0x397af5ed vlan_for_each +EXPORT_SYMBOL vmlinux 0x3983b55f fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x3996b0cf dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a9187f pci_iomap_range +EXPORT_SYMBOL vmlinux 0x39aaa057 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b61bd9 nf_log_set +EXPORT_SYMBOL vmlinux 0x39b8d49c cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue +EXPORT_SYMBOL vmlinux 0x39d6fae6 fc_eh_timed_out +EXPORT_SYMBOL vmlinux 0x39d72c0c ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x39f2bb4f xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a1ee88f of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a313237 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a61961a dump_align +EXPORT_SYMBOL vmlinux 0x3a65f16e key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x3a835df8 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ad16c3f devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b03551e __ip_options_compile +EXPORT_SYMBOL vmlinux 0x3b0d47a6 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma +EXPORT_SYMBOL vmlinux 0x3b13c724 tty_port_init +EXPORT_SYMBOL vmlinux 0x3b1f336f inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b4138e9 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x3b4bda86 add_to_pipe +EXPORT_SYMBOL vmlinux 0x3b550d7b fs_param_is_path +EXPORT_SYMBOL vmlinux 0x3b61274e pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b8825cd vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3b9ff007 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x3baf188d pcim_pin_device +EXPORT_SYMBOL vmlinux 0x3bcbfb3a mdio_find_bus +EXPORT_SYMBOL vmlinux 0x3bd175e1 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x3be1bcf4 param_set_short +EXPORT_SYMBOL vmlinux 0x3be4c5a4 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bfc71cc __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x3c019aad pci_find_resource +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c30ffbe ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c38b29d vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c41135c inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x3c4cf9b4 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x3c5144f1 cdev_device_add +EXPORT_SYMBOL vmlinux 0x3c574cae d_invalidate +EXPORT_SYMBOL vmlinux 0x3c5756b1 tty_hangup +EXPORT_SYMBOL vmlinux 0x3c641f62 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x3c6f4271 security_path_unlink +EXPORT_SYMBOL vmlinux 0x3c75c1a9 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x3c94a436 netlink_ack +EXPORT_SYMBOL vmlinux 0x3c9b612c dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw +EXPORT_SYMBOL vmlinux 0x3ce1200c inet6_offloads +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce87977 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x3cf5dd97 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d03b5a2 vme_irq_free +EXPORT_SYMBOL vmlinux 0x3d04b21b __put_user_ns +EXPORT_SYMBOL vmlinux 0x3d0a1122 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d440270 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload +EXPORT_SYMBOL vmlinux 0x3d5a9c15 __phy_resume +EXPORT_SYMBOL vmlinux 0x3d6bbaba dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x3d7ba8d0 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check +EXPORT_SYMBOL vmlinux 0x3d9a81e0 serio_rescan +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +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 0x3dc0cad3 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dc6fcd3 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x3dc7f176 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd3f054 xudma_rchan_get_id +EXPORT_SYMBOL vmlinux 0x3dd7fa63 kill_block_super +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3de1ba27 input_register_handler +EXPORT_SYMBOL vmlinux 0x3df08514 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x3df4473a vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0836f8 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e550325 d_find_alias +EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc +EXPORT_SYMBOL vmlinux 0x3ea0fdb3 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x3eb28193 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x3eb6fa85 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x3eb9b4fa netif_device_detach +EXPORT_SYMBOL vmlinux 0x3ec1c055 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x3ee6228f to_nd_btt +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0784e4 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x3f07d52c framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f306d3c napi_gro_flush +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f545cad cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x3f6c2672 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x3f6ca9bc tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x3f6e556e blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x3f77bf5b finish_swait +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f90dd76 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x3fbe4934 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x3fbef94e filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc9163e fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x3fca76a7 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x3fce046c iommu_put_dma_cookie +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fdaa40e sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fe6b589 vga_get +EXPORT_SYMBOL vmlinux 0x3fe967f2 input_register_handle +EXPORT_SYMBOL vmlinux 0x3ff1f984 input_register_device +EXPORT_SYMBOL vmlinux 0x400a50d8 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x4049cb75 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x4053a99c inet_frag_find +EXPORT_SYMBOL vmlinux 0x40561495 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x4066c2ba vm_map_ram +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c39289 clk_get +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c85a5b kfree_skb_list +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x40e397b5 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x40f37b03 nla_reserve +EXPORT_SYMBOL vmlinux 0x40f3b0e7 inet6_bind +EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc +EXPORT_SYMBOL vmlinux 0x40f9d44f tcp_release_cb +EXPORT_SYMBOL vmlinux 0x41064d5c param_set_hexint +EXPORT_SYMBOL vmlinux 0x411eb302 of_device_unregister +EXPORT_SYMBOL vmlinux 0x412c2825 __lock_buffer +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x41478811 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x4147ca31 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414a9e3f jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue +EXPORT_SYMBOL vmlinux 0x4156edbf udp_pre_connect +EXPORT_SYMBOL vmlinux 0x417a8dae bdi_put +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418abed4 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x418e4ab9 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x41974a1a dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x41b3b31f filemap_flush +EXPORT_SYMBOL vmlinux 0x41c0b331 get_vm_area +EXPORT_SYMBOL vmlinux 0x41c4dcfd tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41f1288d get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x42090bbe gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x420a7df0 set_binfmt +EXPORT_SYMBOL vmlinux 0x420f2a8f pcim_enable_device +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x42167f9a blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x42373dd9 _dev_info +EXPORT_SYMBOL vmlinux 0x4240b54e __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x42429d26 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424ae2c4 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x4255bccd arp_tbl +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x425d0d71 ps2_end_command +EXPORT_SYMBOL vmlinux 0x426203e4 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x42a4e8a9 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x42b447f5 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42d3faa3 input_inject_event +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42fe958b devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430e22a9 vfs_mknod +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x43385f43 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x433fee27 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x435a880f napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x4393f467 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x439b5a77 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x439ecaa9 phy_attached_info +EXPORT_SYMBOL vmlinux 0x43a8ae6b fman_register_intr +EXPORT_SYMBOL vmlinux 0x43b45f57 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x43bb109c __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x43c0fe3f fc_release_transport +EXPORT_SYMBOL vmlinux 0x43c38739 inet_accept +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43f9e7b2 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x4405f101 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x441039a1 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x4419cab8 devm_ioremap +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x4451ec8e netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x4469473a param_ops_byte +EXPORT_SYMBOL vmlinux 0x446decfa sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x446f581e security_sock_graft +EXPORT_SYMBOL vmlinux 0x449855d4 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44b8dddf dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x44bbfaf4 tcp_check_req +EXPORT_SYMBOL vmlinux 0x44c51fa4 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x44cb1a37 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x44e5d9e0 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f5f3ff drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45038ad4 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range +EXPORT_SYMBOL vmlinux 0x45297b98 sock_no_getname +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45522582 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x456f3589 elv_rb_find +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x459bd50b udp_read_sock +EXPORT_SYMBOL vmlinux 0x45b21420 framebuffer_release +EXPORT_SYMBOL vmlinux 0x45c6a164 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x45cba151 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x45cce0bb devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x45d1d3a6 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x4601003e mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x46025df8 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x461e86f7 nf_log_register +EXPORT_SYMBOL vmlinux 0x465731b5 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x46680161 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x468c4e27 nvdimm_namespace_detach_btt +EXPORT_SYMBOL vmlinux 0x468e0750 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46d6e978 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x46e22811 inode_permission +EXPORT_SYMBOL vmlinux 0x46f0ecbb ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x46f57812 fget_raw +EXPORT_SYMBOL vmlinux 0x46ff7d12 qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x470612dc fman_port_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x472e479e pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x4741edc1 vme_lm_request +EXPORT_SYMBOL vmlinux 0x47490b2a sock_bind_add +EXPORT_SYMBOL vmlinux 0x474db375 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom +EXPORT_SYMBOL vmlinux 0x475e37fc kill_litter_super +EXPORT_SYMBOL vmlinux 0x4770943a vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x477595f8 current_time +EXPORT_SYMBOL vmlinux 0x477d34aa pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x478246cb jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x47a956e1 jbd2_journal_stop +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 0x47da6517 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x47dc4b1e dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x481624e8 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb +EXPORT_SYMBOL vmlinux 0x48385ee5 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x48747c3c eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x48899ff5 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x489d5a83 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x489eda10 memset32 +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a1c31c tcf_block_get +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b78844 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x48b7e796 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48c1e51b dquot_drop +EXPORT_SYMBOL vmlinux 0x48ca4a18 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x48f11830 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x492126f0 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x49337410 security_path_mknod +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x4955164a follow_down +EXPORT_SYMBOL vmlinux 0x4960d537 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x49652647 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x4967a09e __bread_gfp +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x49788d31 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a03b60 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x49ada3a8 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49bd997d dev_get_by_name +EXPORT_SYMBOL vmlinux 0x49cec53a fman_set_port_params +EXPORT_SYMBOL vmlinux 0x49d24bc8 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x49e85715 thaw_super +EXPORT_SYMBOL vmlinux 0x49fff496 lock_page_memcg +EXPORT_SYMBOL vmlinux 0x4a316e1f eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x4a372e03 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a4173e9 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x4a4f2ea6 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x4a743fac iget_failed +EXPORT_SYMBOL vmlinux 0x4a7c045e simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4aa20d06 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x4ab40e6b set_page_dirty +EXPORT_SYMBOL vmlinux 0x4ab8dc9b jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x4ae66ae4 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4aec2333 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4af830c0 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities +EXPORT_SYMBOL vmlinux 0x4b0b646d page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x4b14d056 skb_checksum +EXPORT_SYMBOL vmlinux 0x4b15365e request_firmware +EXPORT_SYMBOL vmlinux 0x4b1f7f46 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x4b345564 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x4b3ed01f nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x4b40752f skb_unlink +EXPORT_SYMBOL vmlinux 0x4b5b8554 iterate_fd +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg +EXPORT_SYMBOL vmlinux 0x4b78478a pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x4b9035e9 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x4b929d2c xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x4bab9f6d get_task_cred +EXPORT_SYMBOL vmlinux 0x4bc43615 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x4bcc184c pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bd68f93 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x4bda8899 devfreq_update_status +EXPORT_SYMBOL vmlinux 0x4be90a72 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c0d997c d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x4c2fdea7 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x4c303f1a genphy_update_link +EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c3d1b4d param_get_string +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c423555 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x4c502e2f jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x4c6d3910 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x4c874c2c vfs_getattr +EXPORT_SYMBOL vmlinux 0x4c9be885 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cbdcd79 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x4cc87838 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x4ce4ac8b netlink_net_capable +EXPORT_SYMBOL vmlinux 0x4cef2e3f sock_no_listen +EXPORT_SYMBOL vmlinux 0x4cf4686d seq_dentry +EXPORT_SYMBOL vmlinux 0x4d0a2590 seq_read_iter +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d1fe2ab pci_request_regions +EXPORT_SYMBOL vmlinux 0x4d21e4e7 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d34a97f show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d7d66e0 param_get_ullong +EXPORT_SYMBOL vmlinux 0x4d80b7ac __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq +EXPORT_SYMBOL vmlinux 0x4da71569 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x4daa6c8a simple_fill_super +EXPORT_SYMBOL vmlinux 0x4db4c4f0 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4df9cc44 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock +EXPORT_SYMBOL vmlinux 0x4e16f630 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e259865 __cleancache_init_fs +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 0x4e389689 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e5d5c4e __dquot_free_space +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ea589ad phy_device_create +EXPORT_SYMBOL vmlinux 0x4eaa81e8 tcp_mmap +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ed32a14 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x4ee273ca xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x4eed31f8 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1f7b23 ppp_input +EXPORT_SYMBOL vmlinux 0x4f21dcf9 __block_write_begin +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f226c71 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x4f264cab mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x4f30b1d3 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x4f4571c0 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x4f4a4678 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f6cd1ed dev_uc_del +EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x4f82ab83 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x4f88a865 vfs_fsync +EXPORT_SYMBOL vmlinux 0x4f96b82c bioset_exit +EXPORT_SYMBOL vmlinux 0x4f9a4573 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x4f9a47d9 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x4fcf1371 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x4ff99363 nf_register_queue_handler +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 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x5038ffd9 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x50421273 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x504228de seq_bprintf +EXPORT_SYMBOL vmlinux 0x5045413b csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x5046877a unregister_console +EXPORT_SYMBOL vmlinux 0x504ba6bb pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x5061dc46 of_device_alloc +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x5078b6a8 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a02bfb remove_arg_zero +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50e0cdd7 fb_find_mode +EXPORT_SYMBOL vmlinux 0x50e376ff pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x511746f5 ip_output +EXPORT_SYMBOL vmlinux 0x511d98d8 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x51389f59 md_write_start +EXPORT_SYMBOL vmlinux 0x513eb3e1 release_pages +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x51525861 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x51557ac3 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x515d9c39 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x519d3ed6 padata_free +EXPORT_SYMBOL vmlinux 0x51ab5185 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x51fe9eb0 input_reset_device +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x522af093 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x522ff60d clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x52302204 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x52755f59 from_kgid +EXPORT_SYMBOL vmlinux 0x5279a9eb end_page_writeback +EXPORT_SYMBOL vmlinux 0x5287104d get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x528ce3ac pagecache_write_end +EXPORT_SYMBOL vmlinux 0x528f6f35 write_inode_now +EXPORT_SYMBOL vmlinux 0x5295429c blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a102b6 napi_complete_done +EXPORT_SYMBOL vmlinux 0x52ab9804 noop_qdisc +EXPORT_SYMBOL vmlinux 0x52b6c33a tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x52cfc656 __f_setown +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52da9a93 open_exec +EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x52f39a98 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53117035 skb_store_bits +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x5328390f mdio_device_reset +EXPORT_SYMBOL vmlinux 0x533206b5 sort_r +EXPORT_SYMBOL vmlinux 0x53327131 cdev_device_del +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x5353549f napi_gro_receive +EXPORT_SYMBOL vmlinux 0x535d2f61 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x5371592a pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x537e8c50 get_acl +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53d0deb1 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x53e214b5 bh_submit_read +EXPORT_SYMBOL vmlinux 0x53e50ffa first_ec +EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align +EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock +EXPORT_SYMBOL vmlinux 0x53ffa3a4 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair +EXPORT_SYMBOL vmlinux 0x5415f205 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x54174009 __register_chrdev +EXPORT_SYMBOL vmlinux 0x541e71a7 pci_release_resource +EXPORT_SYMBOL vmlinux 0x542b7bb5 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x543b5697 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5457a73b security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x5460d15e unregister_binfmt +EXPORT_SYMBOL vmlinux 0x5466ed7d lookup_one_len +EXPORT_SYMBOL vmlinux 0x546ca90a pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x5479a668 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x5479ad83 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x5481a047 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x54934b6b migrate_page_copy +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54baa6f5 vfs_llseek +EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x54cfdd99 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x54cffda2 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x5502b408 set_user_nice +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire +EXPORT_SYMBOL vmlinux 0x551a912d register_shrinker +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested +EXPORT_SYMBOL vmlinux 0x552f95c5 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x552ffac7 single_release +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x555dae33 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x556c334a unregister_quota_format +EXPORT_SYMBOL vmlinux 0x556faefa tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x5583cb82 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x5585afbd fman_unregister_intr +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x559f6846 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x55b90881 cdev_del +EXPORT_SYMBOL vmlinux 0x55bd8672 ip_tunnel_get_iflink +EXPORT_SYMBOL vmlinux 0x55bdd2c4 bio_copy_data +EXPORT_SYMBOL vmlinux 0x55c8b060 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55f729fc phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x55ff5c93 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x560a148f console_start +EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh +EXPORT_SYMBOL vmlinux 0x56181513 param_ops_bint +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x5650e150 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x565a14a6 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x565e6f1d touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x566c4fbc ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x567d4554 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x568b9cf4 kernel_listen +EXPORT_SYMBOL vmlinux 0x5696faa4 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x5697bb3d pcim_iomap +EXPORT_SYMBOL vmlinux 0x569ebfa4 wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0x56c02935 acpi_register_debugger +EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x56c4a909 kill_pgrp +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cd01bc scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x56dccf7e __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x56e50767 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x56fa0ee8 __inet_hash +EXPORT_SYMBOL vmlinux 0x5707b41b module_layout +EXPORT_SYMBOL vmlinux 0x570a0faf configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x570a3aaf pci_dev_driver +EXPORT_SYMBOL vmlinux 0x572a5853 dev_addr_del +EXPORT_SYMBOL vmlinux 0x5737d1ca jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x5759e920 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57819c14 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x5785f701 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57960b67 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x57b46d5c param_get_short +EXPORT_SYMBOL vmlinux 0x57b72903 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57dcd989 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x57e0565f simple_lookup +EXPORT_SYMBOL vmlinux 0x57e37fa5 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x581766db pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583fac38 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x58423c13 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x584ea900 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x5859cf5f writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic +EXPORT_SYMBOL vmlinux 0x5860ec5d zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x58726380 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x587646da pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x588b9823 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x5893748e key_payload_reserve +EXPORT_SYMBOL vmlinux 0x58aa0e85 dma_resv_init +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58ba22c3 mpage_writepage +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58ec94fe jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x58ef9cf7 vfs_statfs +EXPORT_SYMBOL vmlinux 0x590635ee I_BDEV +EXPORT_SYMBOL vmlinux 0x591da9bb iterate_supers_type +EXPORT_SYMBOL vmlinux 0x5922a7ae dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x59259b26 mmput_async +EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq +EXPORT_SYMBOL vmlinux 0x5953f5c3 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x595a8754 del_gendisk +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5968211c pci_restore_state +EXPORT_SYMBOL vmlinux 0x5970cba6 skb_dequeue +EXPORT_SYMBOL vmlinux 0x59804896 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x59808367 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59a53baa md_error +EXPORT_SYMBOL vmlinux 0x59a6207d inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x59a7a1de devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x59b3df8a mount_single +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59ba49c5 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x59bc92dd of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x59f9aeb7 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x5a0b01ca dquot_quota_off +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a103d15 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a2919e8 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x5a2da5a9 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x5a31bc70 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 +EXPORT_SYMBOL vmlinux 0x5a8221f9 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x5a849517 netdev_features_change +EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5a9e02cd secpath_set +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5ac96088 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x5ad04f58 d_instantiate +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5b007791 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x5b21d09e kobject_set_name +EXPORT_SYMBOL vmlinux 0x5b24c8ae __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x5b2c0a64 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b353977 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b3f7aa8 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x5b48c012 bio_endio +EXPORT_SYMBOL vmlinux 0x5b522d59 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x5b5319d2 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5cfb19 devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x5b629e71 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x5b8c9eca ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x5b98abc0 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x5b9c9159 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x5b9ef896 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x5b9f403f vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x5ba1fcd5 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x5ba4ff80 filemap_fault +EXPORT_SYMBOL vmlinux 0x5ba8945a kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x5bb78a15 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x5bbea91d udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x5bbf77ef in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bec4804 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x5bfe0c15 fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0x5c067462 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x5c068bff tcf_block_put +EXPORT_SYMBOL vmlinux 0x5c07cc7b blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x5c14172f inet_ioctl +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c2a0d4e skb_queue_purge +EXPORT_SYMBOL vmlinux 0x5c2afeb3 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c408d3a tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0x5c7ddb7c inet_select_addr +EXPORT_SYMBOL vmlinux 0x5c995beb pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x5cce4d5e unregister_md_personality +EXPORT_SYMBOL vmlinux 0x5ce2aed8 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x5ce685c4 tcf_register_action +EXPORT_SYMBOL vmlinux 0x5cf0db87 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x5cf3d2ee get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf61b69 dma_resv_reserve_shared +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio +EXPORT_SYMBOL vmlinux 0x5d141c96 vm_event_states +EXPORT_SYMBOL vmlinux 0x5d360e11 simple_open +EXPORT_SYMBOL vmlinux 0x5d45ac05 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x5d46300c wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d62d6ec pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x5d7570db kernel_param_lock +EXPORT_SYMBOL vmlinux 0x5d9216a5 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x5d9d7a9e xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x5da48d1b __alloc_pages +EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh +EXPORT_SYMBOL vmlinux 0x5db22885 amba_driver_register +EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e101af5 clear_nlink +EXPORT_SYMBOL vmlinux 0x5e255b1a sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x5e2d409d genlmsg_put +EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e45360b of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x5e471d2c pcie_get_mps +EXPORT_SYMBOL vmlinux 0x5e4966a9 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x5e5bb78a phy_start +EXPORT_SYMBOL vmlinux 0x5e66d7c9 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e7364d4 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x5e7747da super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x5e81fcea tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e858358 put_cmsg +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9debba vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x5ea731a7 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x5eaa3a77 sk_stream_kill_queues +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 0x5ed90adc int_to_scsilun +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 0x5efe543a do_splice_direct +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0b546d security_d_instantiate +EXPORT_SYMBOL vmlinux 0x5f1a3f42 proc_mkdir +EXPORT_SYMBOL vmlinux 0x5f53e5d2 give_up_console +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f57f7cf inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x5f5f5c19 tty_port_close +EXPORT_SYMBOL vmlinux 0x5f73c688 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5f7b1da5 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x5f889155 dma_pool_create +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0x5fb44563 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x5fbfef02 param_ops_string +EXPORT_SYMBOL vmlinux 0x5fc0e036 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fd73e7c tcp_child_process +EXPORT_SYMBOL vmlinux 0x5fe560d1 ip_tunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x5fed178c meson_sm_call +EXPORT_SYMBOL vmlinux 0x5ff109b2 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x5ffa6378 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x6062c5f9 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x6074b98f nf_log_unregister +EXPORT_SYMBOL vmlinux 0x607af3e2 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x607b0ac9 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60b779b5 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60ee4c3f pnp_start_dev +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x6150d493 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x6154df2a nd_btt_version +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge +EXPORT_SYMBOL vmlinux 0x6179984c generic_update_time +EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x617eccac make_bad_inode +EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x6192211a noop_llseek +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x619e359e has_capability +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bafb16 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x61bea481 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x61ce9100 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621e5cad md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6232ace9 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x6233fa54 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x6237b1f4 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x62389249 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x62494b49 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x625ad5c2 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x62709bdf cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +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 0x62aa1f8d sk_wait_data +EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62ce446c sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x630ad6b1 make_kgid +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x6333e4c4 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x63452098 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x63649c68 cdrom_release +EXPORT_SYMBOL vmlinux 0x636bc017 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63ba645c __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d44d8a security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x63e3273d devm_memremap +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ed984e input_set_capability +EXPORT_SYMBOL vmlinux 0x640e4fa8 f_setown +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x641a669b pci_pme_active +EXPORT_SYMBOL vmlinux 0x64235146 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x64314d58 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x643b472f pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x644490ef dentry_open +EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus +EXPORT_SYMBOL vmlinux 0x645172b0 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x64752f86 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x647f78f5 do_SAK +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x6484d61c frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x648a92de scsi_print_result +EXPORT_SYMBOL vmlinux 0x648adc7b config_group_init +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x648f0d9e poll_freewait +EXPORT_SYMBOL vmlinux 0x649162ae of_phy_find_device +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64d2f4ac md_finish_reshape +EXPORT_SYMBOL vmlinux 0x64d8fcaa of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x64dd7235 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x64fa5702 tty_name +EXPORT_SYMBOL vmlinux 0x6501dc32 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x651705db netif_carrier_on +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x6535c5d9 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x653c82ad uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654449c3 memset16 +EXPORT_SYMBOL vmlinux 0x656528a6 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65aa6048 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x65b1f783 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x65cd3875 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d3504d nvdimm_namespace_disk_name +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 0x66105cce tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x66332273 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x6638b50c inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr +EXPORT_SYMBOL vmlinux 0x664b8b48 vmbus_recvpacket +EXPORT_SYMBOL vmlinux 0x665c7bf7 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x66625f7d scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x66663330 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x666ceeca fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x66747e6d sock_create +EXPORT_SYMBOL vmlinux 0x668116f3 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc +EXPORT_SYMBOL vmlinux 0x6686eb1b inet_stream_connect +EXPORT_SYMBOL vmlinux 0x6689a5c6 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x669aff1b submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66e71e46 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x671aee18 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x671f4675 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x671fad8f input_unregister_device +EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x67478289 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x675d8136 kobject_del +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x678d4c46 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x6792442d blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x67a543f6 peernet2id +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67e368a6 __nla_reserve +EXPORT_SYMBOL vmlinux 0x67f02cfc __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x6803f891 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x68118588 scsi_is_fc_rport +EXPORT_SYMBOL vmlinux 0x68129c6b tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer +EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x68457741 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68a72a59 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x68ab4e90 md_check_recovery +EXPORT_SYMBOL vmlinux 0x68bc14dc jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x68be8a43 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x68bf4d23 single_open_size +EXPORT_SYMBOL vmlinux 0x68ce0f6a crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x68d093d0 uart_match_port +EXPORT_SYMBOL vmlinux 0x68e6a9df devm_request_resource +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x69043547 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x69113565 block_write_begin +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x69207924 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x692c4948 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x693bbf2f jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x693cfeb0 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x69995d2f dev_uc_init +EXPORT_SYMBOL vmlinux 0x69af3af2 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x69b6fb06 eth_header_parse +EXPORT_SYMBOL vmlinux 0x69b907ef ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x69d91cdc bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x69dd15a3 configfs_register_group +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69ea2fea rpmh_write_batch +EXPORT_SYMBOL vmlinux 0x69f38847 cpu_hwcap_keys +EXPORT_SYMBOL vmlinux 0x69fde15e tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a07dfad skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x6a1af34a iproc_msi_exit +EXPORT_SYMBOL vmlinux 0x6a223340 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x6a359c2c phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x6a369759 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe +EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a530c84 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5d9b65 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a6b58e8 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x6a6be0e4 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a74e1e6 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x6a901030 vm_mmap +EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aaa59fd qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x6aad1c86 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x6ab17bad netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x6ad1c36c skb_queue_head +EXPORT_SYMBOL vmlinux 0x6ad6b99d __ip_select_ident +EXPORT_SYMBOL vmlinux 0x6ad75388 nobh_writepage +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aed85e2 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6afcf8bd dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x6b1a1aeb udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b31da03 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x6b441108 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b586fb2 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x6b76e220 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b9620b6 bdi_register +EXPORT_SYMBOL vmlinux 0x6bad36fa vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x6bbab0e8 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6be604df page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6bf9321a jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x6c202fb2 qdisc_reset +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c264cb2 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x6c30f360 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x6c36defe tty_unlock +EXPORT_SYMBOL vmlinux 0x6c38e645 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x6c419ff0 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x6c52dd41 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x6c57bf8c skb_copy +EXPORT_SYMBOL vmlinux 0x6c5992cf simple_transaction_read +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c685fbc netdev_state_change +EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6c8b6584 key_type_keyring +EXPORT_SYMBOL vmlinux 0x6ca6a288 flush_signals +EXPORT_SYMBOL vmlinux 0x6cb108a3 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cb9d83a ip6_output +EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user +EXPORT_SYMBOL vmlinux 0x6cbcad46 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x6cc4fd38 vm_insert_page +EXPORT_SYMBOL vmlinux 0x6ce78419 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6cf3b039 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x6cfa062a clk_add_alias +EXPORT_SYMBOL vmlinux 0x6cfbeb37 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x6d130d4f qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d1ea60e secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d4d31c0 read_cache_pages +EXPORT_SYMBOL vmlinux 0x6d4f4edd __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0x6d5283b4 _dev_warn +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d635e61 blk_queue_split +EXPORT_SYMBOL vmlinux 0x6d6ce340 inode_init_once +EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d8e78b5 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory +EXPORT_SYMBOL vmlinux 0x6dabfec2 of_device_get_match_data +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 0x6dd59d44 get_cached_acl +EXPORT_SYMBOL vmlinux 0x6ddc5c96 unregister_nls +EXPORT_SYMBOL vmlinux 0x6de9b888 ram_aops +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6dfad47a of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x6e06850c fb_class +EXPORT_SYMBOL vmlinux 0x6e2c9582 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x6e452731 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x6e472751 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x6e48004e lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x6e4e222a input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e6b1a1d xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x6e6e905e dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x6e6ff60b finalize_exec +EXPORT_SYMBOL vmlinux 0x6e702e9c vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e76006e kill_pid +EXPORT_SYMBOL vmlinux 0x6e78d5df udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x6e81a95b ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea5d2e8 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ecfec57 sk_common_release +EXPORT_SYMBOL vmlinux 0x6eedea33 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x6f17d30b dev_change_carrier +EXPORT_SYMBOL vmlinux 0x6f1f209a setattr_should_drop_sgid +EXPORT_SYMBOL vmlinux 0x6f352999 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f4c9d31 pci_find_capability +EXPORT_SYMBOL vmlinux 0x6f50dcf2 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x6f539631 rtnl_notify +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f60e99b call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x6f654841 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x6f674d0c netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x6f683cb4 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x6f85b232 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6f99de09 key_alloc +EXPORT_SYMBOL vmlinux 0x6f9b89ae sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fbb5a6a dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fc257dc tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fcf3b51 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x6fdd399d scsi_print_command +EXPORT_SYMBOL vmlinux 0x6ffa2f8a textsearch_destroy +EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x702200b8 ip_defrag +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x70251535 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x7045c352 iov_iter_init +EXPORT_SYMBOL vmlinux 0x704bd1fb udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x7055ea1d device_add_disk +EXPORT_SYMBOL vmlinux 0x705d0f52 of_get_property +EXPORT_SYMBOL vmlinux 0x7078549c devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70cdd695 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x70d083f0 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool +EXPORT_SYMBOL vmlinux 0x70e3ee35 padata_free_shell +EXPORT_SYMBOL vmlinux 0x70f262ec dma_resv_add_excl_fence +EXPORT_SYMBOL vmlinux 0x7101424b security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x711452cd md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x71275c08 dcb_getapp +EXPORT_SYMBOL vmlinux 0x71281f08 page_readlink +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x7161433a no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71816e39 page_mapping +EXPORT_SYMBOL vmlinux 0x71857bc7 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x719b8314 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71ae8237 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x71b59f30 tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0x71bdb2ec genphy_suspend +EXPORT_SYMBOL vmlinux 0x71c4aedd vme_bus_num +EXPORT_SYMBOL vmlinux 0x71d36172 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x71da64f9 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x720bf1d7 generic_fadvise +EXPORT_SYMBOL vmlinux 0x721075c2 __neigh_create +EXPORT_SYMBOL vmlinux 0x7216b777 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported +EXPORT_SYMBOL vmlinux 0x7257bce6 nvdimm_namespace_attach_btt +EXPORT_SYMBOL vmlinux 0x725bcabc phy_init_hw +EXPORT_SYMBOL vmlinux 0x7260b271 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x7263ad0b rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x7278d7f2 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x729e49e6 pci_set_master +EXPORT_SYMBOL vmlinux 0x72a1ff05 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72a81d1b blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x72b23ea8 fman_get_mem_region +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72d1f4f5 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x72dfcc7c __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x72f84182 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x73020dc8 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x7303323d xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x7338f72a skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x73426229 no_llseek +EXPORT_SYMBOL vmlinux 0x7349e832 sock_from_file +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x73603e4f ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x73783aa7 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x7393e398 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x7394a21d elv_bio_merge_ok +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 0x73c2d784 param_get_ushort +EXPORT_SYMBOL vmlinux 0x73e1b3ab netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x7404ef53 mdiobus_free +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x742ff999 of_node_name_eq +EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init +EXPORT_SYMBOL vmlinux 0x744baca8 cdev_init +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x747492fa devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x7475917f kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x74809e92 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x7485c2d4 skb_push +EXPORT_SYMBOL vmlinux 0x748eb4ae skb_ext_add +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74bbbe1f reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74fc0a2f textsearch_unregister +EXPORT_SYMBOL vmlinux 0x750e5a8c tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x751ef7b2 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x7533eb2d km_policy_notify +EXPORT_SYMBOL vmlinux 0x7544c61a devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x75459364 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x75546107 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x755b78c6 meson_sm_call_write +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x755fdc74 param_set_byte +EXPORT_SYMBOL vmlinux 0x756ef388 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x7570fd4c ata_print_version +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x7590177c param_get_uint +EXPORT_SYMBOL vmlinux 0x759a7507 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x759ab63a pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x75b1e630 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x75b25131 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75cd7d7b inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75e8e8ca fb_get_mode +EXPORT_SYMBOL vmlinux 0x75e99e87 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760d8cad wake_up_process +EXPORT_SYMBOL vmlinux 0x7613cc33 freeze_super +EXPORT_SYMBOL vmlinux 0x76156346 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x7630480f vmbus_sendpacket_getid +EXPORT_SYMBOL vmlinux 0x76308048 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x7631c1f1 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x76464a04 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x76689ee3 param_set_ushort +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x7689409b refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x76917f10 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x7694cad0 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x76992035 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a1fd96 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x76c6ae22 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76e0855c tcp_connect +EXPORT_SYMBOL vmlinux 0x76e85a62 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x76ef7c7e debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x76f361b2 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x76f43b64 zap_page_range +EXPORT_SYMBOL vmlinux 0x7702ee38 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x7715165f kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x771c7bba skb_find_text +EXPORT_SYMBOL vmlinux 0x77281a0c flow_rule_match_enc_control +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 0x774e613a dev_close +EXPORT_SYMBOL vmlinux 0x77533503 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x7760c223 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 +EXPORT_SYMBOL vmlinux 0x776d02c6 phy_device_free +EXPORT_SYMBOL vmlinux 0x777a47ff override_creds +EXPORT_SYMBOL vmlinux 0x7787b8df jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x7787c470 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x77a1b97b dst_discard_out +EXPORT_SYMBOL vmlinux 0x77b0e875 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d48a46 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f8e0c3 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x78251d6c key_validate +EXPORT_SYMBOL vmlinux 0x782c5d8a unregister_netdev +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x784d8f12 alloc_pages_vma +EXPORT_SYMBOL vmlinux 0x78551b07 simple_release_fs +EXPORT_SYMBOL vmlinux 0x78649576 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x78699285 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788e8344 serio_bus +EXPORT_SYMBOL vmlinux 0x789115b9 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78b27ba0 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78ffa91e xp_dma_map +EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7914acb5 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x792428af fc_vport_create +EXPORT_SYMBOL vmlinux 0x7925ce30 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x793a83e0 skb_clone +EXPORT_SYMBOL vmlinux 0x796c6525 elevator_alloc +EXPORT_SYMBOL vmlinux 0x796e0dc8 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x799753e5 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x79a2fd5a kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa7b3e set_create_files_as +EXPORT_SYMBOL vmlinux 0x79c70ad0 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x79cdbb7c __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug +EXPORT_SYMBOL vmlinux 0x79f25c82 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x79fee7a4 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x7a098104 input_allocate_device +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a254ca8 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x7a29feb0 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a2f82f6 dma_find_channel +EXPORT_SYMBOL vmlinux 0x7a423183 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x7a459859 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a57581f generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x7a70b301 pci_request_irq +EXPORT_SYMBOL vmlinux 0x7a7731ab _copy_from_iter +EXPORT_SYMBOL vmlinux 0x7a82d404 phy_print_status +EXPORT_SYMBOL vmlinux 0x7a953bfc __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7aa00ebe mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa86619 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x7aafff41 pps_event +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 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7ae784a9 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x7b147610 fc_block_rport +EXPORT_SYMBOL vmlinux 0x7b211dbe netdev_emerg +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b5333c1 of_graph_is_present +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b80fa55 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7ba569af sock_pfree +EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7baf660e sock_no_mmap +EXPORT_SYMBOL vmlinux 0x7baf9429 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x7bafd546 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bc0da2a d_tmpfile +EXPORT_SYMBOL vmlinux 0x7bcb3b49 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x7bcbacf9 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x7bcd96e9 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x7be2a149 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x7bf4670f inet_addr_type +EXPORT_SYMBOL vmlinux 0x7bfd201e mr_table_dump +EXPORT_SYMBOL vmlinux 0x7bffe7b6 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1f85b5 _dev_alert +EXPORT_SYMBOL vmlinux 0x7c2b7066 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x7c2cad36 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x7c3f4075 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x7c40fa41 import_single_range +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c4722ef of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x7c4c6b70 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x7c716d88 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x7c8709fa __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x7c99c355 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7caf54e0 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL vmlinux 0x7cb7d156 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x7ccef327 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x7cd86d17 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cfaed25 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x7cfc25c1 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d05b357 generic_fill_statx_attr +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 0x7d46ee98 security_path_rename +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d7ae827 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x7d802567 edac_mc_find +EXPORT_SYMBOL vmlinux 0x7d9fb17d flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dc18e9d tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x7dcd6398 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7ded5d2b param_ops_charp +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df8add8 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x7e25662c __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e324154 param_get_ulong +EXPORT_SYMBOL vmlinux 0x7e49c116 iunique +EXPORT_SYMBOL vmlinux 0x7e603f63 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x7e611332 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x7e786c0d xfrm_state_add +EXPORT_SYMBOL vmlinux 0x7e7a5b44 from_kuid +EXPORT_SYMBOL vmlinux 0x7e806062 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x7e88a63c redraw_screen +EXPORT_SYMBOL vmlinux 0x7e89918d sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x7e8c7e5c ip_tunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x7e929af0 of_device_is_available +EXPORT_SYMBOL vmlinux 0x7eb14a22 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x7eda3b0c __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x7eda90f5 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x7edcce92 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x7eeb7c98 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x7ef5ebe3 mode_strip_sgid +EXPORT_SYMBOL vmlinux 0x7ef6f0c7 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x7efba19b __module_get +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f1ae98d devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x7f1b706d inet_add_offload +EXPORT_SYMBOL vmlinux 0x7f216dcb dquot_commit +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f33ae80 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x7f49b1c5 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5b34cc mntput +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f8b9c49 dqput +EXPORT_SYMBOL vmlinux 0x7f91ed31 phy_attached_print +EXPORT_SYMBOL vmlinux 0x7fa7a92a seq_puts +EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size +EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff2b3f2 ip_frag_next +EXPORT_SYMBOL vmlinux 0x800ae1e9 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x801ba95e ptp_find_pin +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x804de2fd page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x8051d310 xfrm4_udp_encap_rcv +EXPORT_SYMBOL vmlinux 0x8068346b pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x80960c2d pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80a9cca2 netdev_err +EXPORT_SYMBOL vmlinux 0x80abbd66 netif_napi_add +EXPORT_SYMBOL vmlinux 0x80aeed74 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d350bc __kfree_skb +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80e9dc43 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq +EXPORT_SYMBOL vmlinux 0x8108b72c vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x816015f7 param_set_invbool +EXPORT_SYMBOL vmlinux 0x81615746 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x81729096 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x817759c4 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818dbb66 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x8194e07e inet_protos +EXPORT_SYMBOL vmlinux 0x8199442e vfs_rmdir +EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x81b91dec __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81ed6665 kobject_put +EXPORT_SYMBOL vmlinux 0x81fbdcd3 ilookup5 +EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x823f8ab9 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x8258bcc5 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x8269d9dc genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x826fde4b configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x82711b0b ps2_command +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x8288d801 inet_sendpage +EXPORT_SYMBOL vmlinux 0x82978d21 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x829c1e6e inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x82bfbb05 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x82c3f5b6 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82cbdb61 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x82e24d09 __pagevec_release +EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync +EXPORT_SYMBOL vmlinux 0x8302d493 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x83123982 __free_pages +EXPORT_SYMBOL vmlinux 0x8317a39c generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x832453d0 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x833b6a00 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x8359d799 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x835ea9db skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x83642d27 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x836cfca5 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x836ddca1 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x83709c29 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x8379c968 bio_chain +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x83803c09 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x838ebc67 vfs_link +EXPORT_SYMBOL vmlinux 0x8396821f pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x8399cb57 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x83fd94a8 vme_master_request +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x841020e8 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x8422b5c2 netdev_alert +EXPORT_SYMBOL vmlinux 0x842639ee security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x84664676 clkdev_add +EXPORT_SYMBOL vmlinux 0x847ff6c5 phy_loopback +EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x8497b417 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x8499e58a blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x84c63708 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x84d85e81 param_ops_uint +EXPORT_SYMBOL vmlinux 0x84e3017b devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x84ed8e3c mark_info_dirty +EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base +EXPORT_SYMBOL vmlinux 0x851c8a9e file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x8522f1aa ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x852dcc14 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x853edadb page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x85448661 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info +EXPORT_SYMBOL vmlinux 0x85591e2e __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x8564cb37 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85784017 _dev_emerg +EXPORT_SYMBOL vmlinux 0x8588c744 simple_empty +EXPORT_SYMBOL vmlinux 0x85aec79c end_page_private_2 +EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85dc894f scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f0017a try_to_release_page +EXPORT_SYMBOL vmlinux 0x85f2b026 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x85f4ea9a generic_writepages +EXPORT_SYMBOL vmlinux 0x860a43bb cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x86115a3b ping_prot +EXPORT_SYMBOL vmlinux 0x86160c96 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x86216f98 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x86418ce8 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x864811af fman_get_revision +EXPORT_SYMBOL vmlinux 0x8670aea8 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x86714d8f netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x86739cd2 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868ea9d4 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x86bae277 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x86c989d2 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x86d26eb2 sock_no_bind +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86f7891f __neigh_event_send +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86ff3c7e tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x8701beea fc_block_scsi_eh +EXPORT_SYMBOL vmlinux 0x871b0ab1 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x8735f6f2 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x8738f03d xfrm_register_type +EXPORT_SYMBOL vmlinux 0x873f6e9a tty_devnum +EXPORT_SYMBOL vmlinux 0x87511583 phy_init_eee +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x8764101b udplite_prot +EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x8778e987 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x879e6979 skb_append +EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87c5df5e arch_hibernation_header_save +EXPORT_SYMBOL vmlinux 0x87c65b0b vfs_get_link +EXPORT_SYMBOL vmlinux 0x87e71c10 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x88028845 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x880384d6 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x88093c88 neigh_update +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x884d8671 get_phy_device +EXPORT_SYMBOL vmlinux 0x8853d065 skb_trim +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x88947752 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x889f0ab6 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock +EXPORT_SYMBOL vmlinux 0x88acb0fd migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x88d4c6bb mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88f0a365 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x89169139 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x893c4729 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy +EXPORT_SYMBOL vmlinux 0x8957276d pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x897b2376 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x899bf7b8 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x899e1552 iproc_msi_init +EXPORT_SYMBOL vmlinux 0x89a7f75f md_handle_request +EXPORT_SYMBOL vmlinux 0x89a833a8 keyring_alloc +EXPORT_SYMBOL vmlinux 0x89b8d2f2 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x89c40781 dquot_release +EXPORT_SYMBOL vmlinux 0x89cc3e3b __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x89e086a8 bio_devname +EXPORT_SYMBOL vmlinux 0x89e9c2f9 complete_request_key +EXPORT_SYMBOL vmlinux 0x8a27f23d thread_group_exited +EXPORT_SYMBOL vmlinux 0x8a34611f scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x8a3b8fc5 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a5d8d35 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aad656f pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x8ab8a8c2 sock_efree +EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8ae42c33 napi_get_frags +EXPORT_SYMBOL vmlinux 0x8af1f0bf scsi_device_put +EXPORT_SYMBOL vmlinux 0x8af7a409 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x8afed920 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b067909 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x8b4d3957 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x8b56b5d1 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b6ac669 skb_put +EXPORT_SYMBOL vmlinux 0x8b7bcd8e nf_ct_attach +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8bca0798 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x8bd00d45 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x8bd3ae78 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x8bf40cd6 bdi_alloc +EXPORT_SYMBOL vmlinux 0x8c0ec8cd sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x8c0ef09e padata_alloc +EXPORT_SYMBOL vmlinux 0x8c1a428f md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x8c253aa9 of_get_parent +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c3655ba eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x8c3c3e18 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x8c53d336 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x8c56a072 dma_free_attrs +EXPORT_SYMBOL vmlinux 0x8c5b8891 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c8a9af8 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8ca16ff7 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x8ca6677d watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x8cacf43d rtnl_create_link +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cb483c5 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x8ccf73bf __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x8cd0c7fb scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x8cd260e0 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x8ceeb8df key_revoke +EXPORT_SYMBOL vmlinux 0x8cf88ee4 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x8d1fda20 eth_type_trans +EXPORT_SYMBOL vmlinux 0x8d20d786 vma_set_file +EXPORT_SYMBOL vmlinux 0x8d3dfd94 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var +EXPORT_SYMBOL vmlinux 0x8d461ea1 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x8d468aa4 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x8d5400c2 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d624a3e pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d953c63 dget_parent +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8d9f725b cfb_fillrect +EXPORT_SYMBOL vmlinux 0x8da6585d __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x8dae5038 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x8daedb79 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x8dbba24d mdio_driver_register +EXPORT_SYMBOL vmlinux 0x8dc799e7 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x8dcc3131 md_write_inc +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8df1ef30 register_filesystem +EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e0545db mntget +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e1e58a1 component_match_add_typed +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e4400a4 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e53a62f pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x8e627d6b page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x8e733242 key_link +EXPORT_SYMBOL vmlinux 0x8e82c6bc mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8effd3cd tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x8f1068cf __devm_request_region +EXPORT_SYMBOL vmlinux 0x8f2961be configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x8f2d3733 netlink_set_err +EXPORT_SYMBOL vmlinux 0x8f3be505 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x8f3dfb03 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x8f7f0039 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x8f89c89f dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x8f98ba60 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8f9ba1ce set_cached_acl +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fa64945 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x8fb3f3fc tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x8fc5f491 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content +EXPORT_SYMBOL vmlinux 0x8fcf4b60 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fd181f1 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x8fd617c7 md_done_sync +EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds +EXPORT_SYMBOL vmlinux 0x8fe2691b cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x8fe5369a sock_no_connect +EXPORT_SYMBOL vmlinux 0x8fe58643 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x9002bb6c of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x9006d0e1 security_sk_clone +EXPORT_SYMBOL vmlinux 0x90077325 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x9021ec37 inet_put_port +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x902f5199 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x90429e93 udp_prot +EXPORT_SYMBOL vmlinux 0x904a35b5 sg_miter_start +EXPORT_SYMBOL vmlinux 0x905294b2 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x905be36f jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x90661b28 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x9077c207 udp_seq_start +EXPORT_SYMBOL vmlinux 0x907c114d __serio_register_driver +EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override +EXPORT_SYMBOL vmlinux 0x908e5601 cpu_hwcaps +EXPORT_SYMBOL vmlinux 0x9099e9d7 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x90a9e691 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x90b2083e sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x90c35725 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp +EXPORT_SYMBOL vmlinux 0x90f104a4 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x90f1f961 of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0x910f9e59 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x911e63cd __brelse +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x916d6aea fd_install +EXPORT_SYMBOL vmlinux 0x9189b15d submit_bh +EXPORT_SYMBOL vmlinux 0x918d5911 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x918d9572 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x9196a861 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x919b03e8 __break_lease +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x919df526 param_get_charp +EXPORT_SYMBOL vmlinux 0x91a32801 dev_set_threaded +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91a9fdaa truncate_setsize +EXPORT_SYMBOL vmlinux 0x91ae09b8 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x91bc765c _dev_notice +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91d74216 dst_dev_put +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f58e01 dev_get_flags +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x9206468f input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x920894ff __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x920da876 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x920dac03 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x92178e49 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x922db26d config_item_put +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x9235c74d locks_free_lock +EXPORT_SYMBOL vmlinux 0x92397713 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923dbce6 amba_request_regions +EXPORT_SYMBOL vmlinux 0x925389eb devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x925f5fe2 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x926766dd forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x9289ae64 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x92a16f49 kobject_add +EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw +EXPORT_SYMBOL vmlinux 0x92ab0fcb qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x92b89495 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92d308a9 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92dfb537 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931c0c41 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x93435569 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9386ffc0 put_fs_context +EXPORT_SYMBOL vmlinux 0x939e045f fqdir_init +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x93e32295 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x93f5e746 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x93ffa046 bioset_init +EXPORT_SYMBOL vmlinux 0x9401cc71 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x943618c3 dev_addr_init +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x9457519d generic_file_fsync +EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable +EXPORT_SYMBOL vmlinux 0x94902ad7 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x9493fc86 node_states +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94d529fb netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0x94d735cc jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x94de1d8a register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x94f5c3db scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x95030c9c proto_unregister +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x950e3608 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x95256d1e inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x95296e48 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x9546a1c1 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x954fdb56 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x9553690d of_translate_address +EXPORT_SYMBOL vmlinux 0x955f3af8 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x95633af5 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x95640b82 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x957a0213 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x957ce2b2 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x957e5613 md_flush_request +EXPORT_SYMBOL vmlinux 0x957efe77 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95ae1dc9 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x95b03a16 param_set_copystring +EXPORT_SYMBOL vmlinux 0x95bc94f9 netdev_notice +EXPORT_SYMBOL vmlinux 0x95c2c991 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x95cfb08b tcp_peek_len +EXPORT_SYMBOL vmlinux 0x95e176fd ps2_init +EXPORT_SYMBOL vmlinux 0x96050dc8 __next_node_in +EXPORT_SYMBOL vmlinux 0x9605d2b1 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x961207f7 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x9625dea1 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x963741f1 proc_set_size +EXPORT_SYMBOL vmlinux 0x965a768b inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x965fdd24 devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg +EXPORT_SYMBOL vmlinux 0x96793728 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr +EXPORT_SYMBOL vmlinux 0x968dff53 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96cf46c2 inet_getname +EXPORT_SYMBOL vmlinux 0x96e16387 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x971a0119 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x971e6a57 put_watch_queue +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x97420817 pskb_extract +EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x974db22f shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x975318d9 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x978a717e sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x978c416c of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97c02392 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x97c3726c get_user_pages +EXPORT_SYMBOL vmlinux 0x97c47aa2 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x97d4e212 key_invalidate +EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds +EXPORT_SYMBOL vmlinux 0x97e8603c PDE_DATA +EXPORT_SYMBOL vmlinux 0x97ec97dc nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x97eeb737 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x97f44a08 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x9819e5a1 d_drop +EXPORT_SYMBOL vmlinux 0x98264a85 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x985d2df6 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x987d26fc dec_node_page_state +EXPORT_SYMBOL vmlinux 0x98815648 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x988b014f sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x9896f2e8 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x98ad2672 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x98bca9a3 datagram_poll +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98dcef1f mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x98dd8619 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98f10b17 dst_release +EXPORT_SYMBOL vmlinux 0x98f84a7b fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x98ffcd61 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x991ca9ca skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x991d9c88 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x995d5ce2 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x99633684 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x9970f1e9 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x9994d730 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a2ac89 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x99ab24dc kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99d9491a pci_scan_slot +EXPORT_SYMBOL vmlinux 0x99da8bd8 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e4c8b6 __icmp_send +EXPORT_SYMBOL vmlinux 0x99ea7155 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x99ecefeb __frontswap_store +EXPORT_SYMBOL vmlinux 0x99ed0b15 gro_cells_receive +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 0x9a145780 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a29636c xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x9a3f31d0 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x9a4adbbb mark_page_accessed +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a5d0e7f of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x9a67952d pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x9a6d40ee fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9a75b438 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x9a8c487f simple_write_begin +EXPORT_SYMBOL vmlinux 0x9a91e7eb tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x9a93d704 set_posix_acl +EXPORT_SYMBOL vmlinux 0x9a9f99fd sk_ns_capable +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9abe0b2f dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x9ac1b04c phy_write_paged +EXPORT_SYMBOL vmlinux 0x9ac8de87 request_key_rcu +EXPORT_SYMBOL vmlinux 0x9acc2d3e ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x9acf82a5 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b48b9e4 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b50b678 current_in_userns +EXPORT_SYMBOL vmlinux 0x9b54e938 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x9b60e0d5 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x9b6b0a2c kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b79cc68 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x9b83f920 block_commit_write +EXPORT_SYMBOL vmlinux 0x9baa31b3 sk_stream_error +EXPORT_SYMBOL vmlinux 0x9bac25c5 mdio_device_register +EXPORT_SYMBOL vmlinux 0x9bc9fd64 softnet_data +EXPORT_SYMBOL vmlinux 0x9be6e755 phy_read_paged +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c12f710 xfrm_input +EXPORT_SYMBOL vmlinux 0x9c14d2bd mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x9c233e5a tty_port_close_end +EXPORT_SYMBOL vmlinux 0x9c23ac62 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x9c45dda2 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x9c4eddbf dev_uc_sync +EXPORT_SYMBOL vmlinux 0x9c573ab0 napi_enable +EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 +EXPORT_SYMBOL vmlinux 0x9c5f5cc9 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x9c63baf6 tty_vhangup +EXPORT_SYMBOL vmlinux 0x9c64a970 wireless_send_event +EXPORT_SYMBOL vmlinux 0x9c654111 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x9c6b0db4 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x9c8072a7 get_fs_type +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c8b4871 copy_highpage +EXPORT_SYMBOL vmlinux 0x9c9c4b92 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb1efc5 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9cf00da7 sget_fc +EXPORT_SYMBOL vmlinux 0x9d08982e register_cdrom +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d0f4989 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2c781a __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d4b2fe2 __seq_open_private +EXPORT_SYMBOL vmlinux 0x9d545dd8 key_put +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d6a04e8 config_group_find_item +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context +EXPORT_SYMBOL vmlinux 0x9d98b3fd kobject_get +EXPORT_SYMBOL vmlinux 0x9dacd2db sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x9db59b16 kthread_blkcg +EXPORT_SYMBOL vmlinux 0x9dd421d6 free_task +EXPORT_SYMBOL vmlinux 0x9dda99d0 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x9ddbcb2a empty_aops +EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel +EXPORT_SYMBOL vmlinux 0x9dfcaa40 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x9e018bd8 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x9e073679 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e22d30c fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x9e252d23 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e313982 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e56d565 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e765f8d pci_request_region +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e9c34be finish_open +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea3affa blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq +EXPORT_SYMBOL vmlinux 0x9eb46b9b netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9ee16663 page_pool_release_page +EXPORT_SYMBOL vmlinux 0x9eeb755a __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x9f17e216 sock_i_ino +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f66672d acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw +EXPORT_SYMBOL vmlinux 0x9f85bf4b page_mapped +EXPORT_SYMBOL vmlinux 0x9f8aba74 fc_remove_host +EXPORT_SYMBOL vmlinux 0x9f93e284 find_vma +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f9f321a fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb694e7 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x9fc98b5b mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x9fca2c56 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x9fd648b9 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x9fd68faf bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ff45d4f security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffa825d flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa011f877 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0xa0142ef7 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xa027e769 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa03e396c simple_recursive_removal +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa072c035 sock_set_priority +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 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0d0e6a7 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e1e1df tcf_block_get_ext +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 0xa0f46595 inode_init_owner +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa100ad6b jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xa101db69 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1141cd6 migrate_page +EXPORT_SYMBOL vmlinux 0xa13e780a gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xa1668689 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xa1676a6d sk_mc_loop +EXPORT_SYMBOL vmlinux 0xa17a539b vc_cons +EXPORT_SYMBOL vmlinux 0xa18c2c40 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xa1a22fb6 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0xa1c2a544 start_tty +EXPORT_SYMBOL vmlinux 0xa1ca357e nobh_write_end +EXPORT_SYMBOL vmlinux 0xa1d9ee6b ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xa1efa90a udp_ioctl +EXPORT_SYMBOL vmlinux 0xa1fdf345 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xa1fe1255 pci_free_irq +EXPORT_SYMBOL vmlinux 0xa2035ac6 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa21fce66 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xa229c010 filp_close +EXPORT_SYMBOL vmlinux 0xa22b4d05 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa240fbb8 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xa2416b71 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xa2446ce5 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa2633196 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa2774501 pps_register_source +EXPORT_SYMBOL vmlinux 0xa2802edd bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa2910635 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xa29a03dd flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xa2b429e4 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xa2c4d75b bio_add_page +EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid +EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa2e94940 register_qdisc +EXPORT_SYMBOL vmlinux 0xa2f4cc2b dquot_acquire +EXPORT_SYMBOL vmlinux 0xa2fd5b37 dst_release_immediate +EXPORT_SYMBOL vmlinux 0xa30b4e9c tty_do_resize +EXPORT_SYMBOL vmlinux 0xa324ff80 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xa3262df1 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xa3386ca0 gro_cells_init +EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xa3476c58 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xa34786dd unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xa34e645d param_set_ullong +EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np +EXPORT_SYMBOL vmlinux 0xa366c405 task_work_add +EXPORT_SYMBOL vmlinux 0xa36eb6ea md_unregister_thread +EXPORT_SYMBOL vmlinux 0xa378c2e7 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xa382c5bd dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xa39e0f25 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xa3a3f229 cpumask_next_and +EXPORT_SYMBOL vmlinux 0xa3a72800 tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0xa3b822e0 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger +EXPORT_SYMBOL vmlinux 0xa3e9ec4b nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa40abd73 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xa40aede7 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xa40d16b2 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key +EXPORT_SYMBOL vmlinux 0xa450e09f of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0xa465bfa6 ihold +EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction +EXPORT_SYMBOL vmlinux 0xa482ab84 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xa4843eaa sync_filesystem +EXPORT_SYMBOL vmlinux 0xa49db51e pci_dev_put +EXPORT_SYMBOL vmlinux 0xa49ed5cb blk_get_request +EXPORT_SYMBOL vmlinux 0xa4ca6f63 register_netdevice +EXPORT_SYMBOL vmlinux 0xa4d7997b dev_open +EXPORT_SYMBOL vmlinux 0xa4dbe60d __check_sticky +EXPORT_SYMBOL vmlinux 0xa4de8caf is_nd_pfn +EXPORT_SYMBOL vmlinux 0xa4f00d2b inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock +EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit +EXPORT_SYMBOL vmlinux 0xa5233118 inode_io_list_del +EXPORT_SYMBOL vmlinux 0xa536d33a bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xa539aa9c qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0xa53f5241 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xa546e2bd dev_uc_add +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa563e773 fiemap_prep +EXPORT_SYMBOL vmlinux 0xa56d734f netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xa56f1f44 udp_poll +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5ab004a pci_get_slot +EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0xa5b07420 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xa5b2636f pci_release_region +EXPORT_SYMBOL vmlinux 0xa5d7d349 find_inode_rcu +EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xa61b2987 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa63b11c4 drop_super +EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa648fc11 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xa66025c7 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xa674bb73 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xa67660ac dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68ca20f of_root +EXPORT_SYMBOL vmlinux 0xa69ef91a vga_client_register +EXPORT_SYMBOL vmlinux 0xa6a7ae5d md_cluster_ops +EXPORT_SYMBOL vmlinux 0xa6b54ccb neigh_xmit +EXPORT_SYMBOL vmlinux 0xa6b88d14 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xa6c79915 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xa6da2a9c inet_csk_accept +EXPORT_SYMBOL vmlinux 0xa6f789e6 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xa703006a sync_file_create +EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available +EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa713d9f2 __SetPageMovable +EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa72e68cc xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xa72fb698 km_state_notify +EXPORT_SYMBOL vmlinux 0xa73de680 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xa7456c70 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xa74be22b unix_get_socket +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa76a91cb write_cache_pages +EXPORT_SYMBOL vmlinux 0xa7781277 napi_disable +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa7895e60 param_set_bint +EXPORT_SYMBOL vmlinux 0xa796b9e5 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xa7a76cfa netif_receive_skb +EXPORT_SYMBOL vmlinux 0xa7bf4e0c __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xa7c53aeb __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xa7c744fc d_rehash +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7e0e5cf ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xa7e39246 dquot_transfer +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa806c1b2 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xa80cf118 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa820282c generic_delete_inode +EXPORT_SYMBOL vmlinux 0xa82ac51a ilookup +EXPORT_SYMBOL vmlinux 0xa82f7479 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xa834f11a genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0xa83d5b40 seq_release +EXPORT_SYMBOL vmlinux 0xa8426901 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8475c93 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa853396b xa_extract +EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa85fc3f7 __do_once_done +EXPORT_SYMBOL vmlinux 0xa8603c32 inet_listen +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa8836c63 init_task +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8c016dd kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xa8c71087 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8cbde72 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xa8d48960 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0xa8d771d1 mdiobus_write +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8f0ec7e mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa906006b vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xa9074a83 mr_dump +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa90d9360 mdio_device_free +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa9189be6 cdev_alloc +EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa93252d5 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9777e96 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xa97bd287 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0xa9883d07 fasync_helper +EXPORT_SYMBOL vmlinux 0xa991d5b6 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xa9995c27 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9a08707 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xa9a9106e pci_irq_vector +EXPORT_SYMBOL vmlinux 0xa9af5bf4 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xa9afc94d cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xa9b051ed mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xa9b468c3 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0xa9d451a4 __frontswap_test +EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xa9f143ec __invalidate_device +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa0169d7 security_unix_may_send +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa139e45 mpage_readpage +EXPORT_SYMBOL vmlinux 0xaa150e56 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa1b34c2 vme_init_bridge +EXPORT_SYMBOL vmlinux 0xaa1f7bb2 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa3fc51d kern_unmount +EXPORT_SYMBOL vmlinux 0xaa4177e0 sk_free +EXPORT_SYMBOL vmlinux 0xaa588fb7 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xaa6cbf9f dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xaa6e88a6 register_fib_notifier +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7dd300 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL vmlinux 0xaa88be83 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xaa8e343f seq_escape +EXPORT_SYMBOL vmlinux 0xaa9b06e5 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xaaa26399 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad61dc9 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xaad67ae3 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaadebe81 param_ops_int +EXPORT_SYMBOL vmlinux 0xaae31634 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xaae5595f dev_set_group +EXPORT_SYMBOL vmlinux 0xaae58f7f tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab03e42b phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xab099715 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab3ecf3f misc_register +EXPORT_SYMBOL vmlinux 0xab43a002 phy_error +EXPORT_SYMBOL vmlinux 0xab4ad04e ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab785035 path_has_submounts +EXPORT_SYMBOL vmlinux 0xab7fb202 sock_wake_async +EXPORT_SYMBOL vmlinux 0xab9538be __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xab9b9e54 inc_nlink +EXPORT_SYMBOL vmlinux 0xabd254d5 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xabde7b32 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xabf58a86 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xac08b87b dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xac0cf77b vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xac17fb53 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac250280 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xac2793c7 netdev_update_features +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac371b98 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xac3c27c0 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xac44f5ee padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xac4661ec proc_create_data +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac702474 readahead_expand +EXPORT_SYMBOL vmlinux 0xac74d756 dm_get_device +EXPORT_SYMBOL vmlinux 0xac834d81 dm_table_get_size +EXPORT_SYMBOL vmlinux 0xac876178 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xac9b13e3 node_data +EXPORT_SYMBOL vmlinux 0xac9e6411 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xaca7ec1e security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacd95602 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print +EXPORT_SYMBOL vmlinux 0xacf14a3c dquot_get_state +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xad2cba87 sk_net_capable +EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove +EXPORT_SYMBOL vmlinux 0xad649e67 is_bad_inode +EXPORT_SYMBOL vmlinux 0xad682b8f xudma_rchanrt_write +EXPORT_SYMBOL vmlinux 0xad694364 inode_set_ctime_current +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad75b844 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xad7d3876 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xad7faad2 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xad82b3dc param_ops_ulong +EXPORT_SYMBOL vmlinux 0xad8f4466 xp_can_alloc +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xadacb53c param_ops_long +EXPORT_SYMBOL vmlinux 0xadae18ce __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadafff20 acpi_device_hid +EXPORT_SYMBOL vmlinux 0xadbc0b27 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0xadcf6e0a config_item_set_name +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae267ebb register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xae28d57b fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair +EXPORT_SYMBOL vmlinux 0xae4879fd wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae7a401a inode_update_time +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeb8f1db ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xaebcf19b of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaec50ea6 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xaecb910e of_device_register +EXPORT_SYMBOL vmlinux 0xaece870f __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xaed72b62 clkdev_drop +EXPORT_SYMBOL vmlinux 0xaee033dc netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xaee56397 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xaeea121c netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xaef60116 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xaefb3e50 iptun_encaps +EXPORT_SYMBOL vmlinux 0xaf01a848 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings +EXPORT_SYMBOL vmlinux 0xaf5da819 scsi_host_put +EXPORT_SYMBOL vmlinux 0xaf75e2a6 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0xaf874581 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xaf91a868 ether_setup +EXPORT_SYMBOL vmlinux 0xafa7e7c9 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xafab0b39 phy_driver_register +EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafbc0ae9 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc42f28 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xafc5d345 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xafecbd0c mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xb00ce8fb tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xb01a6850 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb01d76c0 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xb0250270 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xb02911c3 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xb0403936 __skb_ext_del +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats +EXPORT_SYMBOL vmlinux 0xb05dd661 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb07145ed pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xb078f4cf scsi_remove_target +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a5d5ab km_policy_expired +EXPORT_SYMBOL vmlinux 0xb0a85031 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xb0c4cbe6 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0ded7f2 reuseport_alloc +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e4afca put_disk +EXPORT_SYMBOL vmlinux 0xb0e6e8f3 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize +EXPORT_SYMBOL vmlinux 0xb0f91fba sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xb1080771 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xb10882e4 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb134e97c mr_table_alloc +EXPORT_SYMBOL vmlinux 0xb1394f4b blk_put_queue +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work +EXPORT_SYMBOL vmlinux 0xb1822f62 kill_fasync +EXPORT_SYMBOL vmlinux 0xb1878049 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xb18f6d4b fman_bind +EXPORT_SYMBOL vmlinux 0xb1914b14 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xb1a8b02e pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug +EXPORT_SYMBOL vmlinux 0xb1d6d087 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xb1d7a11f mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e89e27 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xb1ecc9a5 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xb1fa2c49 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb2753ffb pci_pme_capable +EXPORT_SYMBOL vmlinux 0xb285e8eb fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0xb29fee30 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0xb2a3e4ca of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0xb2ac81ae tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xb2b91d86 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2dfdd01 tty_register_driver +EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b4602 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb3157e05 genphy_config_eee_advert +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 0xb32a5973 acpi_ut_status_exit +EXPORT_SYMBOL vmlinux 0xb32a8a23 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg +EXPORT_SYMBOL vmlinux 0xb3647c79 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb36ece4f dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xb397369e cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xb397c558 netdev_change_features +EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc +EXPORT_SYMBOL vmlinux 0xb3a8af99 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xb3adc001 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0xb3bf151e dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xb3c0aaf6 set_bh_page +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb43bd13e udp_sendmsg +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb464b878 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xb46a4524 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb4b22de1 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xb4bfefe2 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xb4da3eab phy_disconnect +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb504a679 dquot_disable +EXPORT_SYMBOL vmlinux 0xb5055893 kill_anon_super +EXPORT_SYMBOL vmlinux 0xb515c198 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xb516dcc3 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb55f728b dquot_alloc +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5741fce pci_disable_device +EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable +EXPORT_SYMBOL vmlinux 0xb588bbfe __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xb58ac6a0 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb596e30b __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b5373f fs_param_is_bool +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5d8f0d1 disk_end_io_acct +EXPORT_SYMBOL vmlinux 0xb5e6da70 d_lookup +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5e7d46b sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb61e04ca tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb6503de7 blk_rq_init +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb655cf02 would_dump +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb678b417 skb_pull +EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb68c41bf dev_deactivate +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69e0f3f pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xb6a902d0 vme_slot_num +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6b65252 dev_activate +EXPORT_SYMBOL vmlinux 0xb6be51ce sock_alloc_file +EXPORT_SYMBOL vmlinux 0xb6bf5afc netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xb6dd8371 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xb6e12440 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb721c516 elv_rb_del +EXPORT_SYMBOL vmlinux 0xb72efae0 pnp_device_attach +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb741c22f netlink_unicast +EXPORT_SYMBOL vmlinux 0xb7565eaa dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xb765adfb genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb77efa75 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xb7839bad fs_param_is_enum +EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb79bc02a seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xb7adde54 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d66715 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xb7f4f05c elv_rb_add +EXPORT_SYMBOL vmlinux 0xb81eb293 rpmh_invalidate +EXPORT_SYMBOL vmlinux 0xb824dd0e page_pool_create +EXPORT_SYMBOL vmlinux 0xb82ea5bd input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xb82ec282 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue +EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available +EXPORT_SYMBOL vmlinux 0xb844b806 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xb845bfae netlink_broadcast +EXPORT_SYMBOL vmlinux 0xb84e2545 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb88d92d0 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb89e8c19 unlock_buffer +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8d23c1c netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0xb8d97d13 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xb8f7c4b5 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb919821e inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xb9273342 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xb92ca40c inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xb9308525 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xb930b3b0 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb95e4d55 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xb96068ee vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xb9645417 __skb_pad +EXPORT_SYMBOL vmlinux 0xb9677085 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb977d680 __napi_schedule +EXPORT_SYMBOL vmlinux 0xb984bac7 param_get_byte +EXPORT_SYMBOL vmlinux 0xb99ba70c sock_set_mark +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9cd462c tty_write_room +EXPORT_SYMBOL vmlinux 0xb9d5c9a9 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba1b719e inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xba2992c3 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xba2eac38 bio_advance +EXPORT_SYMBOL vmlinux 0xba319cca memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba531f32 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba5a3085 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xba5f0f68 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xba6ff938 is_nd_dax +EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba773731 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xba931404 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xba986283 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xbaa469e6 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0xbaba12a9 __ps2_command +EXPORT_SYMBOL vmlinux 0xbabed904 phy_connect +EXPORT_SYMBOL vmlinux 0xbacf890e tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xbaffcba2 cdev_add +EXPORT_SYMBOL vmlinux 0xbb02bd57 of_phy_connect +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb1143c0 param_get_int +EXPORT_SYMBOL vmlinux 0xbb17af08 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb293612 bio_uninit +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3eaa0b genphy_resume +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool +EXPORT_SYMBOL vmlinux 0xbb85f6d3 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xbb8aedeb generic_write_end +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbba6a9e0 pci_map_rom +EXPORT_SYMBOL vmlinux 0xbbbd2d87 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xbbc2a043 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xbbe71878 misc_deregister +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbbe92dff mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xbc08fea6 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xbc14ede3 seq_putc +EXPORT_SYMBOL vmlinux 0xbc1907ee seq_printf +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc2b3fa7 param_get_long +EXPORT_SYMBOL vmlinux 0xbc360f14 tegra_ivc_init +EXPORT_SYMBOL vmlinux 0xbc3987f4 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xbc80dd39 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0xbc837fe6 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xbc8748b2 kernel_read +EXPORT_SYMBOL vmlinux 0xbc8938a3 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xbc9060d7 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xbc9f35c5 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcbd47f5 dev_lstats_read +EXPORT_SYMBOL vmlinux 0xbce47c93 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xbcffa2d8 of_xudma_dev_get +EXPORT_SYMBOL vmlinux 0xbd08b32d serio_close +EXPORT_SYMBOL vmlinux 0xbd0f5b51 bio_init +EXPORT_SYMBOL vmlinux 0xbd10d07c bprm_change_interp +EXPORT_SYMBOL vmlinux 0xbd252424 d_alloc_name +EXPORT_SYMBOL vmlinux 0xbd391b9f sock_release +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd492784 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbda856e2 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xbdc6e63b security_path_mkdir +EXPORT_SYMBOL vmlinux 0xbdca816d put_ipc_ns +EXPORT_SYMBOL vmlinux 0xbdcc72ef skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xbdce046a audit_log +EXPORT_SYMBOL vmlinux 0xbdd48321 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0xbde91ed6 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xbdfaedf6 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock +EXPORT_SYMBOL vmlinux 0xbe47a9de md_reload_sb +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe503da8 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe6f2b75 phy_attach +EXPORT_SYMBOL vmlinux 0xbe709df3 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xbe72d856 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xbe98b3b3 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xbeba7e2b sk_capable +EXPORT_SYMBOL vmlinux 0xbebf865b pci_get_device +EXPORT_SYMBOL vmlinux 0xbec75ef3 finish_no_open +EXPORT_SYMBOL vmlinux 0xbecf41ee devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbf053a57 account_page_redirty +EXPORT_SYMBOL vmlinux 0xbf233500 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xbf2b6633 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xbf47fb1c jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xbf540459 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf5c6da3 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xbf5d66f6 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xbf602f58 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xbf67b9d2 unlock_page +EXPORT_SYMBOL vmlinux 0xbf6d31bd pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0xbf82bc5e gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xbf92e5cc register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa496a9 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xbfc1222f netdev_info +EXPORT_SYMBOL vmlinux 0xbfc288a4 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block +EXPORT_SYMBOL vmlinux 0xbfd33212 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff90935 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0xc00f7fb0 get_tree_single +EXPORT_SYMBOL vmlinux 0xc0110133 pnp_register_driver +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc04d0ffa PageMovable +EXPORT_SYMBOL vmlinux 0xc0547847 may_umount_tree +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc0834f7e inode_dio_wait +EXPORT_SYMBOL vmlinux 0xc08a524c skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xc08ad877 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0b67a71 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xc0bcc5cc pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xc0be6dda pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0xc0bec489 touch_buffer +EXPORT_SYMBOL vmlinux 0xc0edbc03 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc1028c60 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xc1111222 dump_emit +EXPORT_SYMBOL vmlinux 0xc116cb51 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xc13373b2 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xc14597f2 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xc146ea82 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc15064dd vme_slave_request +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable +EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict +EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc1725d70 seq_path +EXPORT_SYMBOL vmlinux 0xc176ea3a nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xc1893066 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0xc1a0368a mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xc1a7f947 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xc1b25569 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xc1b7465a tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xc1bcc86a netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1d91d1e fb_blank +EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xc1e7cdac __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xc1ed3e0d generic_perform_write +EXPORT_SYMBOL vmlinux 0xc1f1d55d __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0xc20206a2 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp +EXPORT_SYMBOL vmlinux 0xc20e3a57 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl +EXPORT_SYMBOL vmlinux 0xc236e18b scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xc237d110 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xc24178e0 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0xc25321d9 proc_set_user +EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate +EXPORT_SYMBOL vmlinux 0xc26b3daf blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc2b8f9f0 dcache_dir_open +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 0xc2f52274 __lshrti3 +EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc315336e tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xc3180a45 unpin_user_page +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc32e53ad get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xc343ad63 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xc352e080 genphy_loopback +EXPORT_SYMBOL vmlinux 0xc35e5b3d dm_io +EXPORT_SYMBOL vmlinux 0xc36332b2 cad_pid +EXPORT_SYMBOL vmlinux 0xc3667564 vm_insert_pages +EXPORT_SYMBOL vmlinux 0xc368ab4d ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc36fa69a acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xc3759be4 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37831d3 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc38c9fc2 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xc39a1e25 deactivate_super +EXPORT_SYMBOL vmlinux 0xc3b05f9a of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL vmlinux 0xc3f67020 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xc3fdb5e6 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc40184d6 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xc401fe1b blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xc4047601 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0xc413df86 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xc415c067 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc448e596 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xc4544f72 __netif_schedule +EXPORT_SYMBOL vmlinux 0xc455d6c3 pmem_sector_size +EXPORT_SYMBOL vmlinux 0xc4574cd3 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc472c2fe proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc48d1013 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xc48d61e4 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xc4b20a23 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal +EXPORT_SYMBOL vmlinux 0xc4c3ce22 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xc4d4f1de to_ndd +EXPORT_SYMBOL vmlinux 0xc4da9365 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xc4e44735 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xc4e797b8 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xc4ec88d5 fc_vport_terminate +EXPORT_SYMBOL vmlinux 0xc501e1d8 dump_skip +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc5620249 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xc5632350 of_mdio_find_device +EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual +EXPORT_SYMBOL vmlinux 0xc579acb2 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xc579ca5c nd_region_to_nstype +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 0xc5c628fc sock_create_kern +EXPORT_SYMBOL vmlinux 0xc5c88580 sock_alloc +EXPORT_SYMBOL vmlinux 0xc5ce776d kernel_accept +EXPORT_SYMBOL vmlinux 0xc5ddadf0 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5e92d13 simple_link +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc5fd3fe8 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xc5ffd47a __page_symlink +EXPORT_SYMBOL vmlinux 0xc6027dd6 devm_clk_put +EXPORT_SYMBOL vmlinux 0xc60a3335 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc618ac4c pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xc61eab8d uart_suspend_port +EXPORT_SYMBOL vmlinux 0xc61f0ceb input_set_keycode +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc64ea7a6 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc69df566 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle +EXPORT_SYMBOL vmlinux 0xc6aa38a9 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xc6b10b69 skb_split +EXPORT_SYMBOL vmlinux 0xc6b88c2e seq_escape_mem +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6ce63de pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6e0d5b5 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xc6e49caa netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xc6ecac22 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xc6ee1a2c arp_send +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc71c1e92 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72fe773 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xc7436a7a fput +EXPORT_SYMBOL vmlinux 0xc748c4b4 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c54ffc blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xc7cbae1d update_devfreq +EXPORT_SYMBOL vmlinux 0xc7cfef6e ip_do_fragment +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7f36234 inode_insert5 +EXPORT_SYMBOL vmlinux 0xc8080dde devm_release_resource +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc8136ac1 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xc814a47c kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xc82a5329 __acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 +EXPORT_SYMBOL vmlinux 0xc83cc830 registered_fb +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc85f09b1 ps2_drain +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc88a06fe skb_queue_tail +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b2b3fa ipv6_dev_find +EXPORT_SYMBOL vmlinux 0xc8c6111c of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8f0e504 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xc8f9fce9 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xc8faa5ad netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xc90ae2fe ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc925f9aa fc_remote_port_add +EXPORT_SYMBOL vmlinux 0xc927add2 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xc92a8f93 dev_set_alias +EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc932db28 kern_path_create +EXPORT_SYMBOL vmlinux 0xc93c60b3 dev_addr_add +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc95b6337 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc98523c1 ip_local_deliver +EXPORT_SYMBOL vmlinux 0xc99c0653 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xc9a7a1d0 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xc9b803a6 tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0xc9bf43e8 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xc9c41b99 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xc9c5e4c9 set_capacity +EXPORT_SYMBOL vmlinux 0xc9c8c344 read_cache_page +EXPORT_SYMBOL vmlinux 0xc9dcfe09 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xc9dd56d2 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e38eec netpoll_print_options +EXPORT_SYMBOL vmlinux 0xc9ea4edf __of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned +EXPORT_SYMBOL vmlinux 0xc9f285b0 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xc9f2f6c4 __scm_send +EXPORT_SYMBOL vmlinux 0xc9ff9664 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xca1ac405 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xca211485 do_clone_file_range +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca2bcb09 param_set_uint +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp +EXPORT_SYMBOL vmlinux 0xca677db5 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xca7ad4f9 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca99ed7c pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xcac7b4e6 fsync_bdev +EXPORT_SYMBOL vmlinux 0xcace14b1 alloc_pages +EXPORT_SYMBOL vmlinux 0xcad1729f devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcade7435 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xcae1b99a kthread_bind +EXPORT_SYMBOL vmlinux 0xcae49039 dev_change_flags +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb352dd8 pci_clear_master +EXPORT_SYMBOL vmlinux 0xcb36561a blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb4e9bab tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xcb58ed6e __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xcb6bad3b crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb8282fe tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xcba15916 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xcba5be91 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xcbbf6488 tso_build_data +EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xcbcdf6ab cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xcbd45aba d_instantiate_new +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbdb3ee0 generic_fillattr +EXPORT_SYMBOL vmlinux 0xcbecc379 inode_set_flags +EXPORT_SYMBOL vmlinux 0xcbecf2ec netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc059639 iommu_dma_get_resv_regions +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 0xcc2b0d06 dst_alloc +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 0xcc51de52 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xcc550edf devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xcc55f724 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xcc5aeb7f phy_read_mmd +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc6a98e4 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xcc6f409d km_new_mapping +EXPORT_SYMBOL vmlinux 0xcc6fe9e3 generic_file_open +EXPORT_SYMBOL vmlinux 0xcc825f7d devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xcc88408c iget_locked +EXPORT_SYMBOL vmlinux 0xcca962e1 param_get_bool +EXPORT_SYMBOL vmlinux 0xccaf4e4c skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xccb0d4fd __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xccb3afee of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0xccb57ad6 __devm_release_region +EXPORT_SYMBOL vmlinux 0xccba9df4 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xccc5b772 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccd540e3 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xccd6c9a2 of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xccf78985 phy_get_pause +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd0105f5 eth_header +EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xcd167e72 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd34d769 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xcd3742ec vfs_get_tree +EXPORT_SYMBOL vmlinux 0xcd441958 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0xcd4d54a6 key_move +EXPORT_SYMBOL vmlinux 0xcd64413c tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xcd752a98 setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0xcd7a9338 fs_param_is_string +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd8f2815 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xcd9a9d5a sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xcda01209 pin_user_pages +EXPORT_SYMBOL vmlinux 0xcdb9ae6a read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdedc26e processors +EXPORT_SYMBOL vmlinux 0xcdf6477c serio_interrupt +EXPORT_SYMBOL vmlinux 0xce036f24 sg_split +EXPORT_SYMBOL vmlinux 0xce0509b6 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xce11e43a security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce3cc8b6 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xce47efee dm_table_get_md +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce798e18 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce8e6c63 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xce8f8c90 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xcea4dcd2 _dev_err +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceb747cd input_match_device_id +EXPORT_SYMBOL vmlinux 0xcebbdbd6 fc_remote_port_rolechg +EXPORT_SYMBOL vmlinux 0xcec1f3b3 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xcee12074 par_io_of_config +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcefeeb26 fc_mount +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf319efe jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xcf31cc14 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0xcf47e0f1 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xcf4d8100 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf831028 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa5b99d __register_binfmt +EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xcfae17c1 bdev_read_only +EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfe48f06 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xd00c1da1 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xd02b2cfc hmm_range_fault +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd0563fab netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xd0627d91 key_unlink +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd08dd58c dm_table_event +EXPORT_SYMBOL vmlinux 0xd0949faf scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xd099b41d nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xd09c3222 pci_find_bus +EXPORT_SYMBOL vmlinux 0xd0a2237b devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0xd0a963fd input_free_device +EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0cd5b6c amba_device_unregister +EXPORT_SYMBOL vmlinux 0xd0dbae61 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xd0e0d2dc kobject_init +EXPORT_SYMBOL vmlinux 0xd0e44524 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xd0edfedb tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xd0fb9747 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xd0fd8ad8 unlock_rename +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd10cf6d0 scsi_add_device +EXPORT_SYMBOL vmlinux 0xd1270915 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd13f973e jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xd146ec88 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd1c7d19b reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0xd1c96524 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd202bd71 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd2355a42 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xd23694d3 __d_drop +EXPORT_SYMBOL vmlinux 0xd23dddb2 sk_dst_check +EXPORT_SYMBOL vmlinux 0xd2442813 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xd2477efb ucc_of_parse_tdm +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 0xd264dc24 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xd276f86b skb_copy_header +EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd296202e register_console +EXPORT_SYMBOL vmlinux 0xd2b82e7e of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xd2be7a60 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xd2c22227 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xd2c22dac __destroy_inode +EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xd2d1aa78 _dev_crit +EXPORT_SYMBOL vmlinux 0xd2d4db41 logfc +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2e9b301 blkdev_put +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd2f81cad blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xd2fe2a9e input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xd3069d77 scsi_partsize +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3270c8d udp_sock_create4 +EXPORT_SYMBOL vmlinux 0xd327864f neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xd3397be8 thaw_bdev +EXPORT_SYMBOL vmlinux 0xd33e06c2 security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd3653d2b dquot_file_open +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd380b1ed acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xd38160d5 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xd38ebb44 vfs_ioctl +EXPORT_SYMBOL vmlinux 0xd397a67f bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xd3bb18c8 stop_tty +EXPORT_SYMBOL vmlinux 0xd3c5e5a2 vfs_symlink +EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL vmlinux 0xd3fb2a3c devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xd3fba534 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd41d4f06 block_write_end +EXPORT_SYMBOL vmlinux 0xd4339de8 qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0xd437ae48 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xd443e5e6 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xd44f656f proc_remove +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd45f9a91 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd495c22e sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xd49f2c66 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xd4a0a930 pcibus_to_node +EXPORT_SYMBOL vmlinux 0xd4a53449 d_obtain_root +EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam +EXPORT_SYMBOL vmlinux 0xd4b0f0c1 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c648c1 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xd4d0ee11 tty_kref_put +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4d7991a xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xd4e8b094 skb_dump +EXPORT_SYMBOL vmlinux 0xd4f91aab blk_get_queue +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd4fcb978 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xd4fd7856 dcache_readdir +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd52847b7 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd5378027 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xd5408219 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xd54abed2 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xd55072ff kset_unregister +EXPORT_SYMBOL vmlinux 0xd568df6f genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0xd580cd0b sock_init_data_uid +EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise +EXPORT_SYMBOL vmlinux 0xd59cbda5 dst_destroy +EXPORT_SYMBOL vmlinux 0xd59f11de tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xd5a393af genl_unregister_family +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5baa16e blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0xd5bd9d7f blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xd5c07dbe pci_disable_msi +EXPORT_SYMBOL vmlinux 0xd5c7879f sock_gettstamp +EXPORT_SYMBOL vmlinux 0xd5ce0b6f unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xd5cec9e4 devm_clk_get +EXPORT_SYMBOL vmlinux 0xd5d92298 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd609a959 keyring_search +EXPORT_SYMBOL vmlinux 0xd61c3a72 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd654ed18 unix_attach_fds +EXPORT_SYMBOL vmlinux 0xd656abb2 sock_no_accept +EXPORT_SYMBOL vmlinux 0xd65ac2cf phy_config_aneg +EXPORT_SYMBOL vmlinux 0xd65ef202 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd67f69ef remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0xd686e59c iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c0a7c file_path +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd69e3b4f sk_reset_timer +EXPORT_SYMBOL vmlinux 0xd6ae8116 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xd6b29fbc tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6edbf07 free_buffer_head +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +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 0xd71d135f amba_release_regions +EXPORT_SYMBOL vmlinux 0xd731a4bf of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73b8cd0 __mdiobus_write +EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc +EXPORT_SYMBOL vmlinux 0xd74851ba md_register_thread +EXPORT_SYMBOL vmlinux 0xd760ad36 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xd7a666da filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xd7a6da92 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xd7ab5d0e thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7dbf62f sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xd7e08835 tcp_close +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f51d47 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 +EXPORT_SYMBOL vmlinux 0xd809f854 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range +EXPORT_SYMBOL vmlinux 0xd8213bfb get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write +EXPORT_SYMBOL vmlinux 0xd836a84b unregister_key_type +EXPORT_SYMBOL vmlinux 0xd8551085 bdevname +EXPORT_SYMBOL vmlinux 0xd85afa23 blk_put_request +EXPORT_SYMBOL vmlinux 0xd891c8ca close_fd_get_file +EXPORT_SYMBOL vmlinux 0xd89ba93d __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8c55a32 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xd8d89373 netif_rx +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8ea3747 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xd8ed4e82 km_report +EXPORT_SYMBOL vmlinux 0xd8f61faf of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xd8fc26cf copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xd8ffef93 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xd9189ef7 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd9326e95 __quota_error +EXPORT_SYMBOL vmlinux 0xd93f90c9 sock_init_data +EXPORT_SYMBOL vmlinux 0xd944f2a4 tcp_prot +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd9518739 tcp_poll +EXPORT_SYMBOL vmlinux 0xd985919a fc_attach_transport +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd99d098c compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9aa1d49 pci_write_config_word +EXPORT_SYMBOL vmlinux 0xd9aeba9c fman_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0xd9b3af3b param_ops_hexint +EXPORT_SYMBOL vmlinux 0xd9b79f3e fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9c17f2e netif_rx_any_context +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9e187bd bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xd9ede804 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id +EXPORT_SYMBOL vmlinux 0xda17cc07 udp_set_csum +EXPORT_SYMBOL vmlinux 0xda1eaec6 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xda359c01 brioctl_set +EXPORT_SYMBOL vmlinux 0xda36062d flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda49495a d_add +EXPORT_SYMBOL vmlinux 0xda6233b2 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xda64cc6b __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda774304 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xda77549c d_alloc +EXPORT_SYMBOL vmlinux 0xda79b13f proc_create_seq_private +EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xda8a216f eth_mac_addr +EXPORT_SYMBOL vmlinux 0xdaaa4edd __devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xdaabe160 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0xdabf7515 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0xdac32dd5 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac9711f __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xdae5a1f3 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xdaec1c08 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xdaf3b858 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xdb101990 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xdb13bd7b netlink_capable +EXPORT_SYMBOL vmlinux 0xdb20b3e9 udp_disconnect +EXPORT_SYMBOL vmlinux 0xdb36b505 icmp6_send +EXPORT_SYMBOL vmlinux 0xdb54e8f1 pci_save_state +EXPORT_SYMBOL vmlinux 0xdb563fd9 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb8a7bf7 inet_del_offload +EXPORT_SYMBOL vmlinux 0xdb902b56 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0xdb9cc9f3 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xdb9e5dd5 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xdbb658e7 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xdbc46ad3 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xdbc4de42 generic_permission +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbe3d19f request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xdbe93eab scsi_remove_device +EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc18d310 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xdc250a1e ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc54e70e sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xdc70547e dev_mc_flush +EXPORT_SYMBOL vmlinux 0xdc8a0420 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xdc8fb003 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xdc901f59 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xdc910d8e sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xdca223d8 skb_seq_read +EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb +EXPORT_SYMBOL vmlinux 0xdcae520c devm_nvmem_unregister +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcbb878c devm_memunmap +EXPORT_SYMBOL vmlinux 0xdcbda921 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xdcc366a5 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xdcd425b1 get_tree_bdev +EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdcf61ca5 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd16ec34 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd19ac58 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd350722 to_nd_dax +EXPORT_SYMBOL vmlinux 0xdd58223b neigh_lookup +EXPORT_SYMBOL vmlinux 0xdd60bc37 may_umount +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd697d40 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xdd6a712f iommu_get_dma_cookie +EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd9077be __put_page +EXPORT_SYMBOL vmlinux 0xdd944470 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xdd995d8d pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xdd99a55b inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xddad65f7 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddaeba23 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat +EXPORT_SYMBOL vmlinux 0xddc29b99 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xddcab133 imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit +EXPORT_SYMBOL vmlinux 0xddd33a9c unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xddef2f63 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xde031417 try_module_get +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde2ea523 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xde3481a0 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xde483be9 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xde6031b1 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xde60c469 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xde65fce4 setattr_prepare +EXPORT_SYMBOL vmlinux 0xde9ea162 __bforget +EXPORT_SYMBOL vmlinux 0xdeab966f tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xdeb20265 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xdeb47039 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xdecac758 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xded49f24 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xdeeae74e tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdefaddeb serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xdf0ad93e jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf25988f __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2f12e4 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf403935 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xdf465d36 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xdf53090d devm_free_irq +EXPORT_SYMBOL vmlinux 0xdf542a62 new_inode +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5c9457 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf77f51a ps2_handle_response +EXPORT_SYMBOL vmlinux 0xdf823141 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf8d559b dev_get_stats +EXPORT_SYMBOL vmlinux 0xdf928914 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfb956f0 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xdfc1f429 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xdfc82357 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfcd554c ppp_unit_number +EXPORT_SYMBOL vmlinux 0xdfd7bb2f xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xdfdbef71 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdfecdd9e d_genocide +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe0012a94 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xe009764f dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xe016914a jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xe01f2d3a d_set_fallthru +EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe0333d0e __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xe03514f1 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe05238f1 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xe0651792 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xe06ab6c4 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xe06b81bf nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xe07cd7e5 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe07efaa9 scsi_host_get +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe087a514 simple_statfs +EXPORT_SYMBOL vmlinux 0xe088ce57 dst_init +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe097f6d0 km_query +EXPORT_SYMBOL vmlinux 0xe09a140f open_with_fake_path +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b8e853 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0ca7edb phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0xe0ddd296 sock_edemux +EXPORT_SYMBOL vmlinux 0xe0e491e9 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0xe0f189a4 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xe0f4657e devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xe1010197 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xe1045d76 of_clk_get +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +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 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe15b6cf2 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xe164fadc mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xe168a3ed neigh_direct_output +EXPORT_SYMBOL vmlinux 0xe1706f86 fman_set_mac_active_pause +EXPORT_SYMBOL vmlinux 0xe171e326 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xe199c867 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xe1ce2de4 clk_bulk_get +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1f345b9 generic_listxattr +EXPORT_SYMBOL vmlinux 0xe1fec0ca dquot_operations +EXPORT_SYMBOL vmlinux 0xe2000ba4 send_sig +EXPORT_SYMBOL vmlinux 0xe211d23e tcp_filter +EXPORT_SYMBOL vmlinux 0xe2148d86 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe240b748 inet_bind +EXPORT_SYMBOL vmlinux 0xe24191da blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xe241dac0 dev_mc_init +EXPORT_SYMBOL vmlinux 0xe271128b cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe28f9ab4 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xe2987b84 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xe2a4c8ea timestamp_truncate +EXPORT_SYMBOL vmlinux 0xe2b65027 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xe2c45a9f mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xe2cf7060 consume_skb +EXPORT_SYMBOL vmlinux 0xe2d46601 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d79817 keyring_clear +EXPORT_SYMBOL vmlinux 0xe2ecb07e vfs_setpos +EXPORT_SYMBOL vmlinux 0xe2faacd1 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xe30cd616 genphy_read_status +EXPORT_SYMBOL vmlinux 0xe3136a17 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe35e2314 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xe360f4c4 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0xe384a219 dcb_setapp +EXPORT_SYMBOL vmlinux 0xe38c4b22 bio_put +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3c0b256 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0xe3ce3e43 release_sock +EXPORT_SYMBOL vmlinux 0xe3d18662 follow_pfn +EXPORT_SYMBOL vmlinux 0xe3d74e7a scsi_target_resume +EXPORT_SYMBOL vmlinux 0xe3e2aa29 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3f2fd69 netdev_has_upper_dev +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 0xe41ceccf acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xe4861635 __serio_register_port +EXPORT_SYMBOL vmlinux 0xe497b05e __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0xe4a07e69 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xe4a55823 simple_unlink +EXPORT_SYMBOL vmlinux 0xe4bae689 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4d8a264 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xe4e15823 vfs_get_super +EXPORT_SYMBOL vmlinux 0xe4e1d7d6 qman_start_using_portal +EXPORT_SYMBOL vmlinux 0xe4f5f811 pci_select_bars +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52ba737 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xe5368fc1 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xe573f640 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe59e34f0 __block_write_full_page +EXPORT_SYMBOL vmlinux 0xe5bc0388 skb_eth_push +EXPORT_SYMBOL vmlinux 0xe5c4d79a mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d51a42 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xe6073dee jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xe60afebe __traceiter_module_get +EXPORT_SYMBOL vmlinux 0xe60c7522 register_framebuffer +EXPORT_SYMBOL vmlinux 0xe60d2a14 fs_bio_set +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe630b85c inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xe656bb93 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xe67027e6 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0xe6939de5 block_truncate_page +EXPORT_SYMBOL vmlinux 0xe69baeb7 vif_device_init +EXPORT_SYMBOL vmlinux 0xe6ad5356 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xe6c1b43b simple_rmdir +EXPORT_SYMBOL vmlinux 0xe6c90820 __do_once_slow_done +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe7046f8c phy_resume +EXPORT_SYMBOL vmlinux 0xe71a6fc8 phy_stop +EXPORT_SYMBOL vmlinux 0xe721a5d1 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf +EXPORT_SYMBOL vmlinux 0xe7446329 param_set_int +EXPORT_SYMBOL vmlinux 0xe74f9b98 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xe760bd65 sock_register +EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache +EXPORT_SYMBOL vmlinux 0xe770b2d9 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xe7750af4 backlight_force_update +EXPORT_SYMBOL vmlinux 0xe77cf3fa pskb_expand_head +EXPORT_SYMBOL vmlinux 0xe78cc3a0 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xe78e396d ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xe79200db node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe7b31c52 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xe7b34c4b flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0xe7c66c67 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xe7d48d6b fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d7fd5f blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xe7e2f70f sg_miter_stop +EXPORT_SYMBOL vmlinux 0xe80c78cc ipv4_specific +EXPORT_SYMBOL vmlinux 0xe80e73bb inode_get_bytes +EXPORT_SYMBOL vmlinux 0xe8297fcf tso_count_descs +EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xe83b82ac mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xe85da1bc jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe8696305 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xe87d10e2 md_update_sb +EXPORT_SYMBOL vmlinux 0xe8850736 pci_bus_type +EXPORT_SYMBOL vmlinux 0xe887da9b ptp_clock_event +EXPORT_SYMBOL vmlinux 0xe893e90c skb_tx_error +EXPORT_SYMBOL vmlinux 0xe89a0f91 noop_fsync +EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8bbf127 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xe8c1fa6d fman_get_pause_cfg +EXPORT_SYMBOL vmlinux 0xe8df4b3f ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xe8e5fed2 __sock_create +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 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91f6ff1 dquot_resume +EXPORT_SYMBOL vmlinux 0xe92a0a47 dm_put_device +EXPORT_SYMBOL vmlinux 0xe9376a41 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xe951fc64 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe977d752 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xe98f2490 param_get_invbool +EXPORT_SYMBOL vmlinux 0xe997e53d ppp_dev_name +EXPORT_SYMBOL vmlinux 0xe99f6949 xsk_tx_release +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9c7dbb4 mount_subtree +EXPORT_SYMBOL vmlinux 0xe9c89bb4 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xe9d94b6b xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9f034d8 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock +EXPORT_SYMBOL vmlinux 0xea0862c5 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xea19349e inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc +EXPORT_SYMBOL vmlinux 0xea230c88 load_nls +EXPORT_SYMBOL vmlinux 0xea25e54a xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xea2734f5 bio_reset +EXPORT_SYMBOL vmlinux 0xea29e033 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea45fb62 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xea46c399 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xea56e441 is_nd_btt +EXPORT_SYMBOL vmlinux 0xea6056d0 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xea6ab275 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xea6b34be of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea80252e ll_rw_block +EXPORT_SYMBOL vmlinux 0xea806657 backlight_device_register +EXPORT_SYMBOL vmlinux 0xea8269b8 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xea8e0d28 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xea9bb3d4 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xeaa19632 genl_notify +EXPORT_SYMBOL vmlinux 0xeaa9c408 path_is_under +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeac97d4d rpmh_write_async +EXPORT_SYMBOL vmlinux 0xead0674c tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaed50c4 seq_vprintf +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb03e13e dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xeb06c662 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb2391c9 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xeb27c633 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb693214 tcf_em_register +EXPORT_SYMBOL vmlinux 0xeb766b1e regset_get +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb98972c sk_stop_timer +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xebd978a0 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xebe00256 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xebeb20ea __nla_put +EXPORT_SYMBOL vmlinux 0xebf1d497 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xec195ffc _copy_to_iter +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 0xec35fa82 seq_release_private +EXPORT_SYMBOL vmlinux 0xec3abd5a is_acpi_data_node +EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec4e7310 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xec7ee603 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xec93380f pci_enable_device +EXPORT_SYMBOL vmlinux 0xeca4b0ed dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xeca5fdcf __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xecb57953 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xecb7fe7c md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xecbef624 fman_port_bind +EXPORT_SYMBOL vmlinux 0xeccdd9ec ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xecdbdd78 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xece2812c mpage_writepages +EXPORT_SYMBOL vmlinux 0xece4e71a address_space_init_once +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf80dbd netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed0500cd neigh_app_ns +EXPORT_SYMBOL vmlinux 0xed177124 path_put +EXPORT_SYMBOL vmlinux 0xed1c4d2e __sk_dst_check +EXPORT_SYMBOL vmlinux 0xed1ccc76 nf_log_unset +EXPORT_SYMBOL vmlinux 0xed238617 __put_cred +EXPORT_SYMBOL vmlinux 0xed2b33bf mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed5d64c4 nla_put_64bit +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed66a0d0 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xed73921a ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc30716 pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0xedcba65e iget5_locked +EXPORT_SYMBOL vmlinux 0xeddf1fd2 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xedf812a0 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xee1a0977 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xee1bb469 free_netdev +EXPORT_SYMBOL vmlinux 0xee2442be dev_mc_del +EXPORT_SYMBOL vmlinux 0xee29f17b nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee5217be of_get_next_child +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee7f45bc setup_new_exec +EXPORT_SYMBOL vmlinux 0xee84544b netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array +EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea4ca32 tcp_seq_start +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeec4d0df sock_kfree_s +EXPORT_SYMBOL vmlinux 0xeed92d50 path_get +EXPORT_SYMBOL vmlinux 0xeedbf938 send_sig_info +EXPORT_SYMBOL vmlinux 0xeee315fe input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xeeeb1fbb seg6_push_hmac +EXPORT_SYMBOL vmlinux 0xeef6f355 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xeef75fce skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xeeff991c netif_carrier_off +EXPORT_SYMBOL vmlinux 0xef1fbb73 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xef6bb9d7 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xef8a80a1 ip_tunnel_get_link_net +EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xefa051a6 file_ns_capable +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefdb7ac8 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xefea0f32 fb_set_var +EXPORT_SYMBOL vmlinux 0xefed61f7 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xeff14b2f sk_alloc +EXPORT_SYMBOL vmlinux 0xeff8a6fb __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00a5c56 vmap +EXPORT_SYMBOL vmlinux 0xf00af583 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xf026af5a put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf03e96d6 wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0xf05a91e4 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xf069e313 can_nice +EXPORT_SYMBOL vmlinux 0xf0749e1b ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xf0851769 mount_nodev +EXPORT_SYMBOL vmlinux 0xf0862a95 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xf0932f28 __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf09eb395 arch_hibernation_header_restore +EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds +EXPORT_SYMBOL vmlinux 0xf0aab8a1 param_ops_bool +EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0xf0b2aa7c mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xf0bb09d8 qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0xf0c7e2dc seq_open +EXPORT_SYMBOL vmlinux 0xf0cb839e __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xf0ee1256 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xf0fc765a inet_add_protocol +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf1275c7c nf_log_packet +EXPORT_SYMBOL vmlinux 0xf1285fc8 serio_reconnect +EXPORT_SYMBOL vmlinux 0xf14e5c0a pci_release_regions +EXPORT_SYMBOL vmlinux 0xf15cae2a generic_setlease +EXPORT_SYMBOL vmlinux 0xf164b2ec proc_create_single_data +EXPORT_SYMBOL vmlinux 0xf16df79c vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xf1789cf0 simple_get_link +EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb +EXPORT_SYMBOL vmlinux 0xf183fc15 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xf192025c dma_supported +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1df3096 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e64945 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ecf345 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xf1f38530 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xf1fdca20 dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0xf1ff1d04 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xf2067c0d deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xf21af17f mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xf21ed80c proc_symlink +EXPORT_SYMBOL vmlinux 0xf220f61e xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xf2215a4e xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xf228890d tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xf22eca8f balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24f5c38 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xf25ed286 dump_skip_to +EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier +EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL vmlinux 0xf28afc95 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2ac9af6 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf3160b7c vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xf32abf0d posix_test_lock +EXPORT_SYMBOL vmlinux 0xf341ee35 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf353de2c migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf376b199 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xf37e1d7b d_alloc_anon +EXPORT_SYMBOL vmlinux 0xf38a9ac3 inode_init_always +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused +EXPORT_SYMBOL vmlinux 0xf39a82bd genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xf39c9fdf make_kuid +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3caae00 build_skb +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f041a6 nonseekable_open +EXPORT_SYMBOL vmlinux 0xf3f9f66c rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf4102303 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xf431a088 xudma_get_device +EXPORT_SYMBOL vmlinux 0xf4384147 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44d53d2 dma_set_mask +EXPORT_SYMBOL vmlinux 0xf451649f kmem_cache_size +EXPORT_SYMBOL vmlinux 0xf463a88b scsi_device_get +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4852ece pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xf4985fb3 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xf4b2e84b kset_register +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c83b77 add_watch_to_object +EXPORT_SYMBOL vmlinux 0xf4d2c7aa uart_resume_port +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4db999d pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xf4e71fac neigh_destroy +EXPORT_SYMBOL vmlinux 0xf4ec6b2f pipe_unlock +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f3586d vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xf4ff7f48 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xf508b2c7 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xf5158173 pci_iomap +EXPORT_SYMBOL vmlinux 0xf52e67ff config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf53ff56a locks_init_lock +EXPORT_SYMBOL vmlinux 0xf54a916f clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0xf5770571 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xf58a48ff from_kprojid +EXPORT_SYMBOL vmlinux 0xf59eff85 tcp_seq_next +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5aa384f vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xf5ab21a2 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid +EXPORT_SYMBOL vmlinux 0xf5bdf452 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xf5d84779 devm_register_netdev +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf625df7e skb_free_datagram +EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0xf63bfbe6 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xf6430aea lease_modify +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf646dc33 inet_shutdown +EXPORT_SYMBOL vmlinux 0xf659572d vme_irq_request +EXPORT_SYMBOL vmlinux 0xf6628411 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf6802fc5 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68abe01 vfs_mkobj +EXPORT_SYMBOL vmlinux 0xf68fe209 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xf6acff85 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xf6aebcc6 neigh_table_init +EXPORT_SYMBOL vmlinux 0xf6c8728c init_net +EXPORT_SYMBOL vmlinux 0xf6d06fc5 dev_load +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f53a6e __alloc_disk_node +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70c320b locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xf72205c2 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xf72c9502 seq_file_path +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf74554da mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xf758c725 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf75cb660 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf768c0be unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio +EXPORT_SYMBOL vmlinux 0xf788399d blackhole_netdev +EXPORT_SYMBOL vmlinux 0xf79362fb pci_write_vpd +EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr +EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash +EXPORT_SYMBOL vmlinux 0xf7f8c781 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xf809a3bd setup_arg_pages +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf813326a ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xf8170350 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xf81e497c set_anon_super +EXPORT_SYMBOL vmlinux 0xf8281712 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf831b65c inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xf8374cae jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf857ca0f xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xf85ed38c tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xf866b00c tegra_io_pad_power_enable +EXPORT_SYMBOL vmlinux 0xf885e46e mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf89a2b0b xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d5b954 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0xf8de9a22 tty_register_device +EXPORT_SYMBOL vmlinux 0xf8ea648d ip_getsockopt +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf90b5693 sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct +EXPORT_SYMBOL vmlinux 0xf92f6ec1 fman_get_bmi_max_fifo_size +EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf9521bd7 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xf954726c blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf9668561 tty_port_open +EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len +EXPORT_SYMBOL vmlinux 0xf9953466 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xf9984373 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xf99be538 input_open_device +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b33b5c kernel_connect +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9cda89e ethtool_notify +EXPORT_SYMBOL vmlinux 0xf9cf3436 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xf9d85039 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa0e7a1b generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xfa1a7f88 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xfa1af9b4 file_open_root +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa30b334 generic_read_dir +EXPORT_SYMBOL vmlinux 0xfa44e345 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa59a211 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xfa5b9167 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xfa5bf4de dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xfa864eb0 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed +EXPORT_SYMBOL vmlinux 0xfa88ed87 param_ops_short +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfab2a8d2 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xfabf4098 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfaccfe1c flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0xfacd8c28 nla_put +EXPORT_SYMBOL vmlinux 0xfad2b0fe simple_rename +EXPORT_SYMBOL vmlinux 0xfada119f __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xfae5f488 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xfb0b62e5 bmap +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb372211 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb3b2df4 udp_seq_stop +EXPORT_SYMBOL vmlinux 0xfb4831d1 dup_iter +EXPORT_SYMBOL vmlinux 0xfb4ddd6b dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7da621 sg_miter_next +EXPORT_SYMBOL vmlinux 0xfba7a150 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbaff4b0 scmd_printk +EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbba5a81 dput +EXPORT_SYMBOL vmlinux 0xfbc27177 tcf_idr_release +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd8fafd igrab +EXPORT_SYMBOL vmlinux 0xfbdef938 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xfbe04f8c inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfbeca169 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0xfc1d371b mount_bdev +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc34811c phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc470fd0 user_revoke +EXPORT_SYMBOL vmlinux 0xfc4cd6f9 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0xfc5325e8 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xfc5ad1e3 sunxi_sram_release +EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset +EXPORT_SYMBOL vmlinux 0xfc88360f dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xfc95593f flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xfc9c276c xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available +EXPORT_SYMBOL vmlinux 0xfca33d13 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xfca7933c tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcdd066f scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfd5728 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xfd1fdf4a tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xfd661562 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xfd6f86c7 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xfd732950 tcp_req_err +EXPORT_SYMBOL vmlinux 0xfd73e005 fc_host_fpin_rcv +EXPORT_SYMBOL vmlinux 0xfd805fba setattr_copy +EXPORT_SYMBOL vmlinux 0xfd866714 netdev_warn +EXPORT_SYMBOL vmlinux 0xfd8e2ae0 mpage_readahead +EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdb32c74 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id +EXPORT_SYMBOL vmlinux 0xfdc1c2d1 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xfdc8dc63 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfde38b43 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xfde757e6 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xfdf41511 tcf_classify +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe1a5c43 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe456e46 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe604af3 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xfe70f25d bio_free_pages +EXPORT_SYMBOL vmlinux 0xfe7bc6c6 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xfe86b5dd dev_driver_string +EXPORT_SYMBOL vmlinux 0xfe8996c9 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfe9eef89 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xfea60732 iterate_dir +EXPORT_SYMBOL vmlinux 0xfead8bc4 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0xfeb187c6 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef109a8 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xfefb0286 cdev_set_parent +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff035a16 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xff078f2d generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff4858b7 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xff5504de skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xff62c36a tty_port_close_start +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg +EXPORT_SYMBOL vmlinux 0xff847074 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xffb6936c ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffd25d87 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0xffd3e375 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xffd945eb pci_remove_bus +EXPORT_SYMBOL vmlinux 0xffe250de con_is_visible +EXPORT_SYMBOL vmlinux 0xffe47109 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL_GPL crypto/af_alg 0x074652b2 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x2b1f1eda af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x2de8647f af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x31af905d af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x4541f38f af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x494491d3 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x4b2bcbff af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x562c5652 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x5c08cfae af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x5e5da60a af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x60d95e89 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x60e9a9cb af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x6586e3c3 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x9ab6edc0 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc7f9ec69 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xcd079ad8 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xdd7cb699 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xfaec5787 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x48432112 asym_tpm_subtype +EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xab5510e5 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x48c27e19 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xda3048f6 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x9629b263 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xf30ebd70 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x063dc376 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x46726cc1 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5f9041ac async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x707ee58f async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x30def64d async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7b26936c async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xb872534d async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xfc2e9d1a async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x6f129b0b blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x9d242077 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x28808976 cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/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 0x1b85ba83 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x3401393d cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x38a578d1 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x54aa5509 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x6f87ed3f cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x79a1c162 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x9ad4e058 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xb369fd1a cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xb5865e44 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xb68c28ca cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xde756d53 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xea665795 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xf4170434 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x088e7634 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0ad0bc9c crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x12a9d6a6 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x14315dc4 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x267fe162 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3e50e2af crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4696ad00 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4dbb279e crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7aa4539b crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x970047ed crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb31652da crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcfabeddb crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdc5a7395 crypto_transfer_hash_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 0x851c747c simd_aead_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xc1094eae simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xe34cafa8 simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xe7f5e243 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xed7fcd03 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 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xe077f92e serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/twofish_common 0x3beeaa86 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x33043c64 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x404cd943 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x463e7ca6 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4832758c spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x751271e3 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x9e9a0e5b spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x9ef66bb6 spk_var_store +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 0xbe4f06f4 synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbf74f067 spk_synth_is_alive_nop +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 0xd1a5d4fd spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd39c74f3 spk_var_show +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 0xde3aa929 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe851795d spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xeaa59961 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xfa760920 synth_current +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x4f650524 __pata_platform_probe +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 +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xd3e29970 charlcd_backlight +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf3304696 charlcd_free +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0xf883c540 charlcd_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x07b26ecc hd44780_common_gotoxy +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x1aa688fd hd44780_common_lines +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x23159a5b hd44780_common_clear_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x30e85287 hd44780_common_shift_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x36dc00a2 hd44780_common_print +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x3c4c183f hd44780_common_home +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x489c89e8 hd44780_common_redefine_char +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x64415593 hd44780_common_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x79e8e259 hd44780_common_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8585e5fd hd44780_common_blink +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x8d4f3fa4 hd44780_common_init_display +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-i2c 0x2d484c79 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0xe15cba08 __regmap_init_i2c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x05ed1917 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x614e9583 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x144a5c89 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2129f7ef bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x29560fb3 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x33308a7e bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3542652b bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x431872b7 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4986d734 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x592d6b55 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5b34972e bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x97e5e099 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa091848b bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa7bed55c bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb4e87481 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb7ee28e6 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xba51334b __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc2ccc043 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xca167155 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xce3b5d29 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd6270551 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe013d3ac bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe57a85cb bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe59e060e bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe8b29a46 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf1810abe bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x13898de2 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1bb8e506 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1e127c77 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x20fe25ac __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x27d84e10 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x28ea4c92 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x328fc307 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5739ac09 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x576cf82b mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5b81b426 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6dfc8a49 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x70843126 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x71d31754 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x78c20ff4 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7bc9495f mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x85ee9ce6 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x86fd37b5 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa3792561 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb1af9b9f mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbcc35f24 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbf85e807 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc5346e07 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc72543b2 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc78c430d mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcb9d714b mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd075384f mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xde2fac0e mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe5b1b5aa mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe6a9319d mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe88feb44 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x7b5dc163 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xca5a2296 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xdc6661f6 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xecc2f791 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xa22565fa sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xfff4a312 __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x8f3041a9 meson_sclk_ws_inv_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x91497d8c meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xcb3bdbec meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x10810d8d 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 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 0x147fe0e0 qcom_cc_really_probe +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 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 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 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 0x3959f356 qcom_cc_register_board_clk +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 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 0x5a6ae327 clk_alpha_pll_configure +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 +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x63ee9aa4 clk_alpha_pll_fixed_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66922845 clk_branch_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67a553a2 qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x67b3e180 qcom_cc_probe +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 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 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 0x8515663c clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8945f752 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 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 0xa3b73ebf devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa73a06e9 qcom_cc_probe_by_index +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 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 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 0xd438c1c3 clk_alpha_pll_postdiv_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd724dcdf qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd7ab6782 clk_alpha_pll_postdiv_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd7d7be4e qcom_find_cfg_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdc014e02 qcom_cc_register_rcg_dfs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe34a7f9f clk_regmap_phy_mux_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/clk/qcom/clk-qcom 0xf9b24198 gdsc_gx_do_nothing_enable +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x096aa17b sprd_div_helper_recalc_rate +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 0x1e998ca1 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 +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x6b8639b9 sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x911aa4a0 sprd_mux_ops +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 0xc9a7c933 sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xe305cb73 sprd_comp_ops +EXPORT_SYMBOL_GPL drivers/counter/counter 0x52168c0c counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xc0ebf12f counter_register +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf32c1a8c devm_counter_register +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 0xe8d43a8c ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0a8efc0f hisi_qm_get_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1085dcce hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x15ae4c61 hisi_qm_wait_task_finish +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1908b908 hisi_qm_reset_prepare +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1ca09f20 hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1eb7c47f hisi_qm_resume +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2498069f hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x292b0b02 hisi_qm_dev_slot_reset +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x47a5bf94 hisi_qm_pm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x54b8085f hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x59664f1c hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5a2d0f4d hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5ea05afa hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6c7ebaf5 hisi_qm_free_qps +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6d18cb7d hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x774ff275 hisi_qm_alg_register +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x82e2035d hisi_qm_alloc_qps_node +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x850f7a1c hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8c27a854 hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x90920901 hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x96e560fc hisi_qm_sriov_enable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x994fb7c2 hisi_qm_pm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa38e1ed7 hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa4feba4d hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xad6ebade hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb49c0008 hisi_qm_dev_err_detected +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc073eac3 hisi_qm_reset_done +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcae74655 hisi_qm_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xda29c89e hisi_qm_alg_unregister +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdb03f9cb hisi_qm_put_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdf3cae63 hisi_qm_sriov_disable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdf6de983 hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe4081f64 hisi_qm_suspend +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xebc750fd hisi_qm_release_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xec68c54c hisi_qm_create_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xefea6802 hisi_qm_get_vft +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf92ccb3a hisi_qm_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf97acd14 hisi_qm_get_free_qp_num +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xff268861 hisi_qm_sriov_configure +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 0xff1e1eea otx_cpt_eng_grp_has_eng_type +EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0xa64bcf8f __dax_pmem_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xee96bdf2 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xfcc7ffb4 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x08993a38 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x32405808 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x47e5908d do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6e82c5d8 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8e91c7ea idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9c76fff3 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb96f6f45 dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdb48a382 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe0527c5b do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x293b8431 dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x444d12c7 dpdmai_destroy +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x5ff8121b dpdmai_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x73506458 dpdmai_close +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x94bf3f5b dpdmai_reset +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xa344388d dpdmai_open +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xb69e5835 dpdmai_get_tx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xc6133507 dpdmai_get_attributes +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xcf6ce7ff dpdmai_set_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xf33bf5f2 dpdmai_get_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0cbed962 fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2b6c355d fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2c690137 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x309642f6 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4368f4e2 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x59448576 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6db34408 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x81fcf645 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa756ad4e fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xafa01486 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xafbe4fa6 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xafdcf609 fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb61e8358 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb7cd33d6 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb7d8251c fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf2ea0877 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x4d1aeca1 ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x51e6d538 ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x6017db03 ffa_dev_ops_get +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x7295559c ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x9f949b56 ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xb25254ae ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x38c08e2c 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 0x8e749755 stratix10_svc_request_channel_byname +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xd3df684d stratix10_svc_send +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0f73fc86 fpga_mgr_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x19820151 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2b38abeb of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3877c3f5 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x484a9f59 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4d7504a8 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8cf44d4f devm_fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9855b81d fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9b475523 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9c5da6ca fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa01358d7 fpga_mgr_create +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbb4335de fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfb2ebf9f fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfea0e58f fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x182c39ab fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x1ed3fb3a fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x33cf0460 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x808259a1 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x82f084f0 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb0423760 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb5251070 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd1ecc100 fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xda7504e1 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xea7440c0 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xa07371e2 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x06c3851a sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x86f73a70 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x000c65fc gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x1f319f75 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x424145cb gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x69b61681 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x6eb118cd gnss_register_device +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xb72570ee __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xf1366177 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xadd83b33 gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xef396d5b devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x0f7a5b79 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 0x49b6ce58 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x541350ec analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x57e24aff analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x66de7572 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x84b1f1d4 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x9d0f1794 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe9a35d47 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 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 0x3ab96ecd dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x3db1f9d2 dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6304267b dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8c56146d dw_hdmi_set_high_tmds_clock_ratio +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 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 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 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 0x909fbbc9 dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xce9e81eb dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x07d59f7d drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1386a828 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1472d6ab drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x237df673 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x333e1b78 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x33f84c20 drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x38c0f878 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3aab5b94 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3b9713b7 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x47caaf01 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x56fa2200 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5c51334d drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x614e204a drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x65d5aca4 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6a04e692 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6ddf91ff drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x74bde1e0 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x75c01648 drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x84a55274 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9557ce27 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x96cbeec6 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9df3bb31 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa17dbbf4 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 0xbd46f0b3 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc7057d0d drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc797a5e0 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc7f6daf1 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd0a87872 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd67e947d drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdff975fd drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe3a7e10b drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xebcffac5 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec7e9435 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf143bd28 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfece0dcf drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x26f62d40 devm_of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x323985f2 of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x988de9c8 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xa1494e99 of_dp_aux_depopulate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xeee8ca80 dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x193de2da drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x26dae85a drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x272acefb drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x30798598 drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3a880dfb drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4cadf72f drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x67a0db05 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8425ed0c drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8890e98b drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8c1e582c drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa418ceeb drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xadb08e71 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe754f291 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x83f7e4f7 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x94a785f8 meson_venc_hdmi_supported_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xd6054333 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xeb5762fd meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xf9ee95a3 meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x1d823539 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x397f91bb s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x20bef3ff pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x7dbe1874 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xa7fceaf0 rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xcb6aadea rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xe89a5d1b rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x07ed11a1 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x9f5d3481 rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xafaa5c00 rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xd69bedbf rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x4443a91e rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xe40d070c vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/hid/hid 0x005d6811 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x08301cbe hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x11aa2415 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x133820dd hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1619b007 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b47f524 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2be8a384 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f2656f7 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3265e4fe hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x35ab3523 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x363a005a hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x426d6e4c hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4a01d215 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e6d9710 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4fee3770 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x53266c34 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x540cd093 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a687d99 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5b15b7ee hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c3695b4 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x615dda60 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x630fa2ab hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x67b49bd0 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6f445472 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x77709a2c hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x822eeca5 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x83ea00b5 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x959b72a9 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x95b42d5a hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2bb9bd0 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb86e7846 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb9e928d4 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbf23bbb6 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0f400a2 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc24c41cd hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc2bd1822 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc6927ec7 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcc3bec66 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xccbc7904 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd570366c hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdb4272da hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdbe8a73a hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe5658fe2 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd9a5e00 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x388e5740 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x436ce9cc hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x512c8471 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6247c436 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x64984546 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcc3613fb sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd316e33d sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe32f8715 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xef4f5d6a sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1c44f882 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7d6b636a i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x8b24a25c i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x98c635a6 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x9efe2768 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x398aa218 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x143512ad adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x50a806d3 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xa7391ebf adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x761229d6 ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x027f02af amd_mp2_bus_enable_set +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x46c83219 amd_mp2_process_event +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x528e0163 amd_mp2_unregister_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x65ffe8cb amd_mp2_find_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x9c17e710 amd_mp2_register_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xb3861f84 amd_mp2_rw_timeout +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xdc2c2ead amd_mp2_rw +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x297ff81a i2c_dw_probe_master +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x33d56a8b i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x4d45ec04 i2c_dw_configure_master +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x6a260353 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7877d701 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xe14edfad i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x03ea82e1 i2c_adapter_depth +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x14fbf580 i2c_slave_unregister +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x1667e9b4 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x1f26fae9 i2c_new_scanned_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x28a9469c i2c_new_client_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x2b07b60e i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x45db48d8 i2c_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x501499f2 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x53c16786 i2c_get_device_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x5a2b2f00 i2c_slave_register +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x63d359bb i2c_match_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x68827fda devm_i2c_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x8092b3ec i2c_recover_bus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x8218c21a i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x83926a20 i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x85188e88 of_i2c_get_board_info +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x86015cc2 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x894b2ea8 i2c_adapter_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x8961d613 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x93ff9d98 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x953b4290 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa1fcd7c8 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa38f4b49 i2c_acpi_new_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xb3336209 i2c_for_each_dev +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xb4cbc7d5 i2c_of_match_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xb992aeb5 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xbf28f55f of_i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd95e02b2 i2c_client_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd9a05832 i2c_acpi_client_count +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe4947394 i2c_bus_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe8854b90 i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x0470636b i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x46f5883d i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xae68af32 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd64a225d i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x044251b4 i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x0e418e8e i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x327003d4 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x87e3129f i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x02c3ac11 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x04a2e9f2 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0dc0866d i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x10b5936d i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1a7b14b1 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x23db3a68 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x382d1d43 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3c7ddb38 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3ef2eb72 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x468fe0c1 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6f938829 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7015fad7 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x80bcfe9d i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x81c405a1 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x84d0dabb i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8c802825 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x91f849a4 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xaf5410d6 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbfca9b92 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc1b4f04e i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xda177c7c i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe5896f01 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe96d1557 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xec5d5197 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf22bd457 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x09733deb rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x09e12c07 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x13a1176c rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x28dc8155 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3a4af55c rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x67ff5b9c rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x777d1260 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9a5e0bda rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb078db05 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb98e050d rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc8558454 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcd3467df rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x11528f2c input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x36845672 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x3988eb7f imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xcf5e0483 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 0xb346dae5 of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x139acf0e qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x5480ccc3 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x578be546 qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x835ea6ad qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xa00ebde1 qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xcc5dbc6b qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xe15ca8a5 qcom_icc_rpmh_remove +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 0x1606ad47 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x227f922b ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2b0e776a ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3153c465 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x609c44b7 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc3c38c04 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcbc1fb86 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd95b0927 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe5304964 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x31565db7 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x5817a2b0 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x5cb1c46e devm_of_led_get +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x74c5557a of_led_get +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x7b945967 led_put +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x80c1797e led_classdev_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class 0x96c72d28 led_classdev_suspend +EXPORT_SYMBOL_GPL drivers/leds/led-class 0xc8062c36 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class 0xce13e062 led_classdev_resume +EXPORT_SYMBOL_GPL drivers/leds/led-class 0xe936ad4f led_classdev_register_ext +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x03ee73b6 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x054d2fe7 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x08106fd7 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0b7dd3f1 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1cd87034 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3865349f lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5706a055 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa6814c1c lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe32d091d lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xeffe341a 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/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 0x1484d7e2 __traceiter_bcache_journal_full +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 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 0x214f1d89 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x2ca77269 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x39126c1a __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3dc2a0ba __traceiter_bcache_request_end +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 0x477b3283 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4972e75d __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x50a2e1dc __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x53b5e5e3 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x59287a9b __traceiter_bcache_request_start +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 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 0x6e063672 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78efc9d8 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79734552 __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 0x7e37d8aa __traceiter_bcache_btree_node_alloc +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 0x8fe71af6 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9865dbc4 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0xa71300a2 __traceiter_bcache_btree_set_root +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 0xb0b4d345 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb912ae0b __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc268695 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc5233a56 __traceiter_bcache_btree_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 0xce48d6f4 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcfe9f9fa __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd3081954 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe202b8e6 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe8018344 __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 0xed58fc6a __traceiter_bcache_btree_insert_key +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 0xf51f9f8f __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf70022f7 __traceiter_bcache_btree_node_free +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/bcache/bcache 0xff960efd __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1b819eef dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2273c406 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 0x2f79b373 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7dfc326d dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x934c0e1b dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x970ef643 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9e6ba49e dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa0e4947d dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa2430e80 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xab30da18 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb0cf158d dm_cell_put_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 0xc6cd91f2 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd18ac44b 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 0xdc9ff8af dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe261db66 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf603b3d3 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf7e673a0 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 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x347adbe5 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 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 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +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 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5e346ce3 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 0xadbefda4 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbefffc64 dm_cache_policy_register +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 0x70ce1f62 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x86a9508a 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 0x07e1ba74 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a8b77ff dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9dab5dc6 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9daba360 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa7fd53a4 dm_rh_delay +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 0xc27b5e9e 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 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 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 +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 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 +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2f40da68 dm_bm_set_read_write +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30a26537 dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x30c37cc0 dm_bm_write_lock_zero +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3646e38f dm_tm_issue_prefetches +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x382a0134 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ae50a4a dm_tm_inc_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 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 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 +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5736c9c5 dm_bitset_flush +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x586705e1 dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6b2357b6 dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c218062 dm_bitset_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c2c7ef4 dm_array_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7062014c dm_btree_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x73420d49 dm_bitset_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x75606d09 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x79bdc649 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b6b3af5 dm_bm_read_lock +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 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 +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88a5c035 dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8db6f8f0 dm_tm_with_runs +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8f5eefee dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x925f421d dm_array_info_init +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 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 +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 +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 0xa9cf611b dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xaed9cbba dm_block_manager_create +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 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 +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 0xdf3a4e7d dm_tm_create_with_sm +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 0x053e15a7 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x10a34ee2 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x127caf76 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x161435f7 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3bae951c cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x445c8c1a cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x56e0ab3e cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x634b8803 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x87cd504f cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa46e3bff cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xab9289f5 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbc7624a7 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc2433a8f cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc6a34907 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc9e241d0 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd7b513da cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe723f887 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe9f5a134 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf3c498b8 cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfbd10a4d cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfd0fa278 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfd1fe764 cec_delete_adapter +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 +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb40fae23 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +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 0x00088388 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x082e0848 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x13cff421 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x13ea198b __traceiter_vb2_qbuf +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 0x2593ff3e vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2eaa22b8 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x326c2d14 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x34ed5c9a vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x45f1edea vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x48b0f2a1 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4c6f293b vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5384fac3 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x56f41fce vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5dcd3f01 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x641bf7ca vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7a2a25dd vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7b81aa5d vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9f5a2cbc vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa2f657ff __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xad1fb797 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb87876ec vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbfe99708 vb2_thread_stop +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 0xca7369e6 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdf2cc0a8 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdfea5a3d vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xeb39b5f0 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xed3ea455 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf2c94235 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf6b300e4 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x1f7ddf37 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xf07c87dc vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x56956e22 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xb06ebf73 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x02e8316f vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x04bf146c vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0a069f09 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1875802b vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x248efaf0 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2a2da64e vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2a5459ef vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x339a3174 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x39b8c656 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x412feea3 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x42f95b20 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4383f41d vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4aa477e1 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5a9a61a9 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6fe43305 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x73864c70 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x77867739 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7870ae0a vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7a32e9cc vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x854508f6 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8be1116f vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x90d46633 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa0550fab vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbddb6d71 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc974620d vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd6ae54f2 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd8e8df8a vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdcc6cdfa vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe0adea2d vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe0f5ed3e vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe6c4fca2 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xeec8c2e4 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf65acb42 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf842f69c vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xacebaeb7 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x07cd7515 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x086487fa media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x155e9e96 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x174a9434 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1852dbe5 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2c133b11 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3d969c2d media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x41c318ef media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x42040640 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4441e8d1 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x534aab07 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x56980d55 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6b77cddf media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6bb18f7f media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6bdb5b60 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6f00a310 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6fcbb742 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x71684e4c __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x84c7341c media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8a21dcd4 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x908e23dd media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x93bb318a media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9990d11b media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xadba0a9e __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb6efcc66 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb89ed8b1 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbb785945 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbdf3da84 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc3d4329a media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc719399d media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc92e8319 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc9a21415 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xca75d9fa media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xced97d0d media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcffed43e media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd6f3d1aa media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd75b5a46 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd8e09789 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd9fd2b48 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xda00ae62 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdd6fa7ee media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe414de63 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe81dfccf __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe9d864db media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeba76f91 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf8802a40 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x0a7999a8 nal_hevc_tier_from_v4l2 +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2988184f nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2d8d7ab9 nal_hevc_write_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2e5a8f46 nal_hevc_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x36d13921 nal_hevc_level_from_v4l2 +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x73a5a9c7 nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa7b01887 nal_h264_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xbba96c2a nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd0fc7c96 nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd3ac2937 nal_hevc_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xda687e65 nal_hevc_profile_from_v4l2 +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe0c884c4 nal_hevc_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe7a2b091 nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xecd61f2b nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xed260c03 nal_h264_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xff10de70 nal_hevc_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xffc1c63c nal_hevc_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x9c2f17a9 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xa4d4360c mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xc2a56377 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xc3f95e9b mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xcc073bd3 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x285a9ca1 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x338c8eec vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x480dc65d vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x5ba58030 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x9b8e5673 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xb1add8e3 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xc96fc68e vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xfa9d9089 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x00a0e8fe venus_helper_set_num_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x034010e5 venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x04e31caa venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x07462372 hfi_session_get_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x10fa70b3 venus_helper_vb2_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1afdb942 venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1c3cb9f6 hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2232a851 venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2318b720 venus_helper_get_opb_size +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x24026a08 venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x24f31c85 venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x26385729 venus_helper_vb2_buf_prepare +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x27b12c5f venus_helper_m2m_device_run +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2d693ecb venus_helper_m2m_job_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2f09c154 hfi_session_start +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3767a2a1 venus_helper_set_format_constraints +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4a222777 venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4c16a0e1 venus_helper_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x51015342 venus_helper_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x53ac31ce venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5539687e venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x563bd40c hfi_session_destroy +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x628674b9 venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x69cbe484 venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6af29e73 venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6c9e5bc8 hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6f556425 venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x72a16948 hfi_session_unload_res +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x72a871db venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x76074906 hfi_session_flush +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7b690941 hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8ce9db8c venus_helper_unregister_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x90816935 hfi_session_process_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x925bffd9 hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x930d0a7a venus_helper_set_dyn_bufmode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x96a69174 hfi_session_create +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9d557fb4 venus_helper_set_multistream +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 0xbd794641 venus_helper_get_ts_metadata +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbfd7310e venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc0982e5c venus_helper_get_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc5f99a8b venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc905d4ea venus_helper_get_out_fmts +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 0xd50148ee venus_helper_intbufs_realloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd6f3bf6e venus_helper_set_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe71d5c55 venus_helper_set_color_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe7313860 hfi_session_continue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xec2dca51 venus_helper_set_work_mode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xef3d8030 venus_helper_queue_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf38daf61 venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf4ddfeb5 venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf64aa20d venus_helper_alloc_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf75e02df hfi_session_set_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfef12b6c venus_helper_acquire_buf_ref +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 0xddce0134 rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x2b16ee37 vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x2bb0a677 vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x36f4c958 vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x39e2311c vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x549c83f2 vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xd528653b vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xe10881dc vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0048e24f xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x14237c56 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4f44cb45 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa8fbfc5b xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe1a8e018 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf02e423e xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfce30963 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xb981b2f6 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1936142b ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2aba419f rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x36fd3d4b rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3b0e68eb lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x43e15c23 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4657cbc1 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x521c143f rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5cf39314 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5d521fb9 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6e41da68 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8fa82171 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9d9817f3 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa6dd7b9e devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbf488c06 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcafc349c rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdd950122 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe142a9e7 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf164b792 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x2b7619c9 __v4l2_async_notifier_add_i2c_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x79ed60d6 __v4l2_async_notifier_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x85c37e18 __v4l2_async_notifier_add_fwnode_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x97f54f5a v4l2_async_notifier_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xa14f35ee __v4l2_async_notifier_add_fwnode_remote_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 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x4839762f v4l2_calc_timeperframe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 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-fwnode 0x18536bd4 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1d813d08 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x220163e0 v4l2_async_notifier_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2dadc4a0 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x30a27811 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5c8f6e91 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x80cdb240 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x994a383f v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc92fcd40 v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xde1135be v4l2_fwnode_parse_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 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0x30b5ebc6 v4l2_jpeg_parse_scan_header +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xcbfdf5cb v4l2_jpeg_parse_frame_header +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 0x01bde2a8 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05553744 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x14b90a2f v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15891a0c v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x18fa430c v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1928912b v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x215304e1 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x25a259a3 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x263b4878 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2752d7c6 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x27828005 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x29dc335d v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3272da2a v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x39242c35 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x443c203d v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5d61ff05 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5e22c3ea v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x65b91928 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x68f34bd3 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6a969897 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6d622cfc v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7134ad9d v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7c1237b2 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7d99c317 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7f3c6edb v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x86e52ad4 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8a0c013b v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8f0ba391 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9b5d2dc6 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa12713f6 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xafbffd8d v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb2cc98c7 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbe089ecd v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd12856bd v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd4297dbf v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd66500b1 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdaeb3706 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdf3278b2 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdf567ca7 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe421a330 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe8e294db v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf0f0d7d5 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8624660 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfba3a9a1 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d82b52c v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16a71f83 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x191f060c v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20549b35 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x22cfa9d6 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2faa22c5 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x340d03e6 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3b5e7732 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3bc45613 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3d25d9b7 __v4l2_ctrl_handler_setup +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 0x496d3711 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ad7b2e6 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4eddd058 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x533836a3 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x53e0fc04 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61f2d449 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x62d56400 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x64d37fe6 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x688d0582 v4l2_subdev_alloc_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x70277873 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x70871296 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x736063a3 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x750e572e __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7e795829 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x826289a1 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x82a01dc9 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x91230e33 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x917cec9b v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x93a74a52 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fe48752 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa0a55441 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1ab6342 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2471379 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7518434 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaef896fa v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb00e5b37 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb73a4658 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb9ae3bd7 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbcf63d5e v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbd8cf167 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc1d531dd v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc742d6e8 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc768f137 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcdff8ef2 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf810d03 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1dbf28c v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd200fc40 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd7adc139 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde795f9a v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdfed22be v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe213b3f5 __traceiter_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 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe7776af8 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe94b6171 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb17043f v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3193d69 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf562d20f v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf92fb075 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfa184186 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfac199d1 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0xba5ca2f8 mtk_smi_larb_put +EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0xdf70037b mtk_smi_larb_get +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x23d1101d pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x705b9b97 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe8c40e7f pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1c314303 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3b9be6c8 cs47l24_spi_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 0x41084a1f arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5f09824f wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x79612135 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8c8b1bf0 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9d64bc80 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa25ad672 wm5102_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 0xb240fdc8 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb4bf4318 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb942fcb2 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbb2c76ba arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc533fb85 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc7971563 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd7e014ff wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xddcd70e3 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe162173e wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf090c1ca wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x465a30e3 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x7bff8b75 atc260x_device_probe +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/lp3943 0x5e669396 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x734ee520 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xcf4932d4 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0a73f4f0 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0a7e28b0 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x100b662b madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x12a68340 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x12ab5f00 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x252798bd cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x252a44fd cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2c6ff1f1 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x38016f88 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x380cb3c8 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4946e9fc cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x494b35bc cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x51939e4c cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x519e420c cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x609ddf52 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x639f60ed cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x661285b1 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x661f59f1 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7b347284 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7b39aec4 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x82ca14ce cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9d071b98 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb1f7d848 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb1fa0408 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc6eb20d3 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xde9b84ff madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf2c2c544 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf2cf1904 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/max14577 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL drivers/mfd/max14577 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x03c2d710 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1952f7a5 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6e5f57d7 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa84f4d45 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xba40b82d mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe8f50665 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x04039d0d pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x04de7fec pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1bc28a76 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x20fc9caa pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x52f6dc53 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9bd97ac3 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb2f5c29b pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb719d9e2 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xce32b810 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdc97d286 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfee93eeb pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x097a9e94 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x38420ac5 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1c5db21f pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x31de5e3d pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6a451264 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8611f4d4 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd82c26a5 pcf50633_gpio_get +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/sm501 0x4439f7de sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x569b916f sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x74e4c915 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xdb706b96 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe96762fc sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0xb4370a1d sprd_pmic_detect_charger_type +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x21c4067c stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x53e2009d stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x49b574eb am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x53902368 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd063631d am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xfd1db9fa am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x3d0737c0 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x6c983daa tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x85355b2f tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xad8475ef tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x3186f063 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x82653513 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd1407b10 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x003017b5 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1b2b6f9a alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8b7dfd10 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xb66886d1 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xdb6b0f62 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe3aefd2e alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xede1fbef alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x24a9eb9e rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2a3d4fea rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x408a9602 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x48669c86 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5ad49383 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x63d0a445 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x716d5d57 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x729ce3da rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7c42e1f2 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x81f5dfb6 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8227873b rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x82646773 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x85e2a785 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8aa8d639 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x94b21095 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9b9680af rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xade9b1c8 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xaed9f6b0 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb1d57674 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb65bb1d4 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb96a6427 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xddbdb548 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf9092628 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfe21f424 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x30cb26cb cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x55d9b2ce cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc5d923cc cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xea6195f9 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x3cb83d5b eeprom_93cx6_multireadb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d2ff63 eeprom_93cx6_wren +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x870b53e9 eeprom_93cx6_write +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 0x1c117a7e enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x299f36ef enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x39573aae enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x43137248 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7198e61d enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x79cf588d enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x98ed9296 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xecbcbfc8 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x021bc677 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x6b08347a uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xdcce5547 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xfe77e522 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x038d1987 vmci_qpair_peekv +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 0x15e00ab6 vmci_qpair_dequev +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 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 0xc1678082 vmci_qpair_enquev +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/most/most_core 0x080f5305 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3512e34b most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3f41dd84 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x42ee7d98 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x43c9a42c most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x6a691eb1 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7bcf1d74 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7f64269f most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x8927abad most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x8eba3edc most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x936c4c0d most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9c3ad1e6 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa53202a4 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfc51eec5 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x01ec17b8 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x031599a6 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1d61ff9b mux_control_try_select +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1f3d31a7 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x267d195f mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x55b10224 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7d38eaae mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x87adde0c mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa0f6a693 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc4036a7e devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd1255a1d mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf4b9f909 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfd6ce6b7 mux_control_select +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x2224c643 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xee7e39f5 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/bareudp 0x237800cb bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1e99369a alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x62fedc1e c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x860efc33 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9b3949aa unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb26ae0a7 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbdd70d03 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x00212c05 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0eae6d2e can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x190bed3f can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x23675a05 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x25f57d38 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2cdbb225 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x33022c87 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x389307ee alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3dda9468 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x431dd192 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x51080fd8 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5c8816e7 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6315b40a can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x753bbbad can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7a3d7a3a can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7b11b55e unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7b7c1c80 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x82ec4938 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x84e0f139 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8ae1873d safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8c39c21c can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9e49f99b open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa2c839e5 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa6c8bdb5 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb3f0975c alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb5df447c alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd0b99ae7 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdf518d69 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe7eeaca4 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf3f8d021 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1d3c6635 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3bf173cb register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x94dd86c3 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xea45a9d7 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x50e66306 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0da6e152 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2951abd3 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x33a85411 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x35b59345 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x398b6dcb ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4914260f ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x55e4cc49 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x56e7a4ac ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x66179072 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6c613067 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8a6a0757 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x99c5c301 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb35858d1 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd9b445c6 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1a021d83 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1a7901c9 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1cd7ba97 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3476ee2e rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x367d1a9a realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x50f4bda8 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5781639f rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8f3444c8 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x944e07f5 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9d9e20e6 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xabf1796a rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb469237f rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc90f2aa2 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xeaecdcbd rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf8f8c111 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x77a4c34e enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x94149e01 enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xb15d4c2e enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd9d61d6f enetc_mdio_lock +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xc69c66a8 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xcfac5fca i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x346a72cd ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x657b41a9 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xcf9736ee ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xd6d751e0 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xe7a5a25f ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02ff2ed8 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x059eb028 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08cde099 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c49db56 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d2360df mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11e10c0b mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1533a6ce mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19f79deb mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b362f5a mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c348dbe mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20195b2c mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20c3cbb7 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22c2a75f mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23356685 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24e5402d mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28ab1692 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ee309ee mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x325e2466 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3818e911 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38d385de mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3af5da1d mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c75757f mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3edea6eb mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f3a01c9 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46a6aa04 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x470f50cb mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ac49f63 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d22634b mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51abc838 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5201a7d9 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52c2cab8 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53c21351 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54c2885c mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55d6b211 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bfe1e44 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f5a6306 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x607777a5 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x607add97 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61c52b90 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65033d06 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66161b88 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68edb248 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69fd2128 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69fd43c9 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d1e876e mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dec7459 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6eb5cfe2 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74155493 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x767d63f6 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7af7feb4 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cdb1faf mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d678be7 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f8550c8 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x814abc8a mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84ce4505 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84d4f5a5 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85c3abc4 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86584882 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88b3d34d mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8af258a8 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c3e4f98 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e95dfb4 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f300e72 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95b3dc64 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96cb6510 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98d085ee mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9aaa0566 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b2a30e4 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c8b4292 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c9aca64 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d4a66bb mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dc191ef mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ee35c3a mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa138de22 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1784334 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2d3bad6 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2d54af7 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5fd9783 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7ba6a73 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8af2b18 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa92a92a1 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaaaaf7e8 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabd0842d __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabde6867 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaded6926 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf29f6b1 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb063a032 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb33faa47 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7ddfa42 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9699c95 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba5c251a mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe73cec5 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfd9f678 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc01064c4 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2a9e84b mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc33e493f mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc36f2313 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc562c057 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc807efd3 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcaaad18f mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc8778bd mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccafca49 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcea0d1c7 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5bc214f mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb74a724 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe215eeca mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3e50d62 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe62c6918 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6c31372 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe874356a mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef356e72 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf14d4888 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2fc6cb8 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf32abca7 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3f173d9 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5d83116 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf69bb29c mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6da36bd mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaa3a725 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd07afaf mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe1d1d62 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0680c07b mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09f5f472 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c62e74d mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cbf3616 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f19bfcd mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f7d167a mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x120eee7b mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x122eb28b mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12957855 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1afa976d mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1efef24a mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x302afc5a mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35921feb mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36089fa9 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3933dd4f mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cb7cfc9 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4647acc4 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b7df247 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x534409fe mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x542eba86 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58eb2317 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59cfc3c0 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60b28ca8 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6192613d mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x661b4980 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6649e866 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x683190e8 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d7348ee mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7078e997 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71c36f45 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x727f6e90 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73c55db9 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bbf6fe4 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c4412cd mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ce366d3 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87c042c0 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8dae8fe2 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f705567 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91dcaa5e mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa28ebe78 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3d4ed79 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3ed02c1 mlx5_set_port_tc_group +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 0xa764ae86 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaad984e4 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab1aeafe mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad010fed mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf26f13c mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb14038d6 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6e89f94 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7cb650d mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc08ec0e6 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4b7ed1e mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc86868d3 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8a28963 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd034a259 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd23a6610 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd391d6e6 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd59a0a24 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5ef11a8 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd87245b0 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd89844da mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf821e92 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6d9a0dc mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec01d732 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec37264e mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec4bb0fd mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedb4f0e3 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee3ba184 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeffdf60c mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf51606fd mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffa3d2e5 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16a1c2e1 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1894a05c __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b8966ec ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2bb4a988 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6329bb45 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x633fe8d2 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6615a7b6 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82a105e9 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d09b294 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaddd32bf __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc4664dec ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd31ba2ae ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9e146db __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/geneve 0x5a307221 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x346c0549 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc73ce65a ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe2332089 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xea5d1275 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xfdb4b9c2 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macsec 0x7b44a3e4 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x16a322e0 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3860400f macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x42b6178f macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5bfc363b macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x60d59d1f mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x9f7191e1 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xe5eaac33 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x87eefca2 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa0bdeae6 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa5f6777a xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xabbec318 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xc28ca80c xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe84b5fdc xpcs_validate +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0206ac6a bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x05a8413e bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0f532d1b bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0faa6860 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x14199abd __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1efd6426 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x20b6de5f bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2c487f47 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2d64b1ec bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2e4d657b bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x41cc5934 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x459b0bdf bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4d37fdd8 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5b0c5501 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6c108698 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6f2b6388 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7261bb30 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x75a0b219 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x81f5446e bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x82234461 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8363635a bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x840ec8ba bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8cdcb08e bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9b71c585 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa6aa6990 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb1511fe1 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc2737d66 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc3079e3a bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcc76ace6 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd9aea5d2 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda14685e bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe6f2904f bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe774d252 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf31c237e bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0e47a418 phylink_mii_c22_pcs_config +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 0x33c3d8cb phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4e865892 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5b98bbc7 phylink_create +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 0x730def1b 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 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 0xa587a69f phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xaa201f35 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb0efe316 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xbfb29cf3 phylink_mii_c22_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 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 0x1026ed6e tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x1fed8d3a tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x54600142 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x5df0e7cc tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x705dd6ec tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x9567d3d2 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xae879345 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xd583fc86 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xf0a627c9 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x22e2668f wwan_port_rx +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xa2fd72a4 wwan_create_port +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xc9ac5f66 wwan_unregister_ops +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xef9a2c21 wwan_register_ops +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 0x77a9458b ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xdd0a1428 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf5feca83 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x0c890d78 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x78fb4738 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x28c4aba5 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3078a36d nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4178dd69 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x59de5228 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5f2ad401 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x88269d28 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8fbb09dd nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xac577ed0 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdbe3c4a5 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xea3fd13d 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 0x576f3a8e 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 0x04636d42 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x07cdd9a3 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1e65784b nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2f88a3e5 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x31e4acc7 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3501b1a2 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4a868bdb nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x788aef6f nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x87597088 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbfdde06e nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfd84a29f 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 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 0xf9c8cedc nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0x13c54b3b iproc_pcie_shutdown +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xf058ccb6 switchtec_class +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x0081619d hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x05d6ed5e hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x119d74f0 hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2c2aac0b hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ccb6eff hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ec4fc27 hisi_uncore_pmu_online_cpu +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x469fa6bd hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x4efd355b hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6fc9d685 hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb9039b34 hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xba8e8656 hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xc421fe98 hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xd7d39328 hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xdb0a5866 hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xddc6c357 hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xde60ea3a hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xef25c6f8 hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu +EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0xac75c27f sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0c30b140 tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0f3386a6 tegra194_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x356018e4 tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x57780892 tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x778b61af tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7aaf689e tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x85e427b8 tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8a6e8f3f tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa29301ef tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa5c41d8a tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa6f7ed5c tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb2f177cb tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc29409b2 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xd64d58eb tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xdd056d7d tegra186_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe8866f9b tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf44fb543 tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x43c3afbd mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x73b80b52 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xf98bf327 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x61de56b2 devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x6d92c68e reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x85cec575 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xad1cf2c5 devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x0d68a3aa ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x26494843 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x68217820 extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7f70a115 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xa0405ade ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb3fdae73 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xca85e8c0 ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xfc31ec31 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x8146b675 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 0x432c8cbf qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xe93578c3 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xee792cc5 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x143ba67e hisi_sas_init_mem +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x192e734e hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x22190773 hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x2550b883 hisi_sas_sync_irqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3c172a95 hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3e28b116 hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x51baaf19 hisi_sas_debugfs_dir +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5d795cdb hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x70eee144 hisi_sas_controller_reset_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x75c9c028 hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x79a7bdbe hisi_sas_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7e77c598 hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8cbb12b3 hisi_sas_sata_done +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 0xa4f8f850 to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa7fe90a3 hisi_sas_release_tasks +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 0xb81c33b0 hisi_sas_probe +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc04aeebb hisi_sas_notify_phy_event +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 0xd62ab4ee hisi_sas_controller_reset_prepare +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 0xeb537c9e hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xebfae55c hisi_sas_get_ata_protocol +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xee0064b5 hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xee18942d hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf04c52cd hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xfe755ed1 hisi_sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x12e14206 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x2309af1a iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3260d618 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x8b3611a7 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa6a51c88 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd9ca88a6 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfcc919e1 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06f4d3f5 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0bec5242 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e372b62 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x105b9be7 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x168ef38a iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2213d91d iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x280477fb iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2bc5e797 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2bf91be8 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2d93ba26 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ee6fabb iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x333c2d9f iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45ead6f5 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x47c4e9e7 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x563ae6d0 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57f3060a iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60983ba1 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60d93ee9 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6242638d iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7636f1d9 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7791d847 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x796a7bc7 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c30b4ca iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x80811b15 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x85125a11 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x881efdf3 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8a68046a __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91764de6 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9291ce93 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e6c025d iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9f9736c5 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1985225 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb68eaf04 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0e78569 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce702dbb iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf011382 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd002be7c iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5ee765e iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe10d6139 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe13f4587 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe678c432 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe90a75ea iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9e8626f iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xefe75a6c __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf08130bf iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf25d7da0 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf6242128 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff8e350a iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2870fe41 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x33d6ab7c iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4610aea2 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5771b182 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x64c1c1d9 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x75001f3c iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x82bd4e1d iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x91377961 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9be512e0 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xacd423c6 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb2010559 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb6048958 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb7c75a11 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbec260cd iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc367ccbb iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe502db2b iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xff699e1e iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x08a6a938 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x12f60955 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1b2cd043 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f8b12bc sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x36231c00 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x390e241c sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3efea443 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x44b760fa sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4f316d7a sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x56c8c4b2 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5d007a33 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6febdd34 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x816f1bf1 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x81a6c705 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x82ea4f11 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x884e8b8d sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x94598b24 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb10daffb sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb5d452d7 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc2d945d2 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc66b21e9 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcd3fd012 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcd882e9d sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdcb9eefa sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdefa2fe1 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfa960b27 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfb732074 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0239fd11 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x048904b0 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x066a7445 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x075c798c iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e070ab4 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0f34d675 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x118f12da iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14b361e5 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15c9fcbc iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1fd0ab28 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23714dce __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24547432 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3554798e iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3ba28c8b iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4701f971 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4f6210f0 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fe16ab4 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x543a113e iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x567d1d18 iscsi_create_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 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x63231c9b iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64d59d3e iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67119573 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6798dfae iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72aa4c67 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7a7aeb36 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ac3a139 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ac7ce72 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f62a39b iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x805c84a7 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82f76ac8 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8bdfa63a iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e4b065f iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x922511f7 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa104a246 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa5b6aaf9 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8f20ca7 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9fbfaa6 iscsi_block_scsi_eh +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 0xac8227b0 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb834ee2e __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8536ad2 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbbba7dc5 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbd79b598 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd28b4156 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdbd6173b iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe02c346d iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6bab935 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf82596c9 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff9ae43f iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1960ad77 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2b4a97d0 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd626c42d sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe54cce7c sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x5068ff1d 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 0x6339ed8b srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x8005c113 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9c44a4ae srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb0f11074 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xbc9f5045 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf5aaf569 srp_remove_host +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x00b246f8 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x500a978a siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa42ee0d9 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc54a8961 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xed3d8d51 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf273c827 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x036ac9f8 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0baa285a of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0da4bb27 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x199dea20 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2733f1cb slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2d637005 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3e022d08 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3f01809d slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4e3d7fbe slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6b9996e3 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6d575033 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x73987208 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7a13f9bd __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7ff52939 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8c516181 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x90f65f0a slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa7d2a2b2 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb238eeb2 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbcbf6e1c slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbe610130 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc2ff0557 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd524071b slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdccc36b0 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe4889ccf slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf4a04fe8 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf6d14d97 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x5379301a 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 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 0x623567ec 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 0x763edfc8 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 0xb9e81961 dpaa2_io_query_fq_count +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xbdc3310e dpaa2_io_service_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x272c88b7 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x416b9da1 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x42016f48 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x899c05ae 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 0x725dab26 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x78655b3b qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xa1c6a5b9 qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe8a3861c qcom_mdt_get_size +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x03126ae3 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xa0424ea8 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xc26ee0d5 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x4a88c862 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x02b3a671 bcm_qspi_remove +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x5651d14b bcm_qspi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x94e10a3f bcm_qspi_pm_ops +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x38efd777 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x95a2faa4 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb3c89f0d spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbe74f7ce spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcbefb388 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe44e7a51 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2bf8af04 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5df1430d dw_spi_dma_setup_generic +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9249428b dw_spi_set_cs +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa3f68990 dw_spi_check_status +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbf989fd8 dw_spi_dma_setup_mfld +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe0888756 dw_spi_update_config +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xec561830 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf5053364 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xfb3b4c94 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x17445524 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x4f69cc97 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x754e61c6 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x433c093e ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1044d13c anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x17cad7ed anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x277a5307 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3ab569dd anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x406912eb anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x43dd056d devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x78db7b72 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8598fc17 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9a36aeda anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9c33193e anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb901a490 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc46aa9e2 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xdace2176 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x12690fb9 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x8df77b32 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9eac1ef2 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xa695bfef fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x055e3f57 imx_media_find_subdev_by_devname +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1d72e178 imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x23b2b010 imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2916db97 imx_media_capture_device_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 0x4559f5a1 imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4dcf82b4 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 0x5d55f843 imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6cc5db82 imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6dac28ad imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x73a3f853 imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x749f8384 imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x777d6f25 imx_media_of_add_csi +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7e95ea76 imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x98067104 imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9e29d555 imx_media_get_pad_fwnode +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 0xba1c7b7e imx_media_mbus_fmt_to_pix_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbc3a6a78 imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbe5d6660 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 0xc99b53e0 imx_media_add_video_device +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 0xd8909339 imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd96ebcbb imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe932b00b imx_media_enum_pixel_formats +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xea9f6317 imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xed1bb145 imx_media_alloc_dma_buf +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 0xfbd86502 imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x02929114 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0eddb2f8 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x115655e9 amvdec_am21c_body_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x15a592b5 codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x15e36840 codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x282e2d85 amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2e1d1be8 amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x48936560 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 0x69b2ce5f codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6da7ca7b amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fd45d71 amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8269bd78 amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xaca20bbb codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbb8040e0 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbc400f17 amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc015f5ba amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc283794c amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc4ddbaaf amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd0d4cd2e amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xdfaf50d4 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe9dc74ca amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf82d3e46 amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x21da73d7 nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x8f57c4b3 nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xedf86edf nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x42e0c54a vchiq_mmal_component_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x5825c980 vchiq_mmal_port_set_format +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x5ea4ce2c vchiq_mmal_component_init +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 0x66b434fb mmal_vchi_buffer_init +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 0x84e3deac vchiq_mmal_component_disable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x8963135b vchiq_mmal_port_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x9a0f44e0 vchiq_mmal_port_parameter_set +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x9a272691 vchiq_mmal_component_finalise +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 0xb7bf8813 vchiq_mmal_port_connect_tunnel +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xcd8db787 vchiq_mmal_port_parameter_get +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xdd2439c8 mmal_vchi_buffer_cleanup +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xfdc00dbe vchiq_mmal_submit_buffer +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xffd03e2f vchiq_mmal_port_disable +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x09a6a00e target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2da30bda target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xb02684b9 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe17faa1e target_submit_prep +EXPORT_SYMBOL_GPL drivers/tee/tee 0x04f3d0fd tee_shm_pool_mgr_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x116399c6 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x157886db tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2014d201 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2da01dc0 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x36c17665 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x474ab234 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x55014af1 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x555de20d tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5a745bb6 tee_shm_pool_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x60f04b55 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x64f18a60 tee_shm_pool_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x70393c77 tee_shm_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7047972f tee_shm_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x78ca1bf0 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x793c4b53 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7d2a2687 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x81b4e4ee tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8e3aa56a tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x97171431 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9e339703 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbdb0a860 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc365c40b tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc80e8c16 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe1f826c2 tee_shm_va2pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe69e9f58 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf8eea3f8 tee_shm_pa2va +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0303d975 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0fd6a730 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x10693371 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x21d1bc8c __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2c1db3f7 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x310a60e2 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x31cdd6d1 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3c305de2 tb_xdomain_alloc_out_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 0x60071a95 tb_xdomain_request +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 0x678af297 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6c144a4c tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7211a303 tb_xdomain_find_by_route +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 0x8543bc69 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x89d518a2 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x93ab2fb1 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa4252e19 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa4c5d41a tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xac564aef tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb1a81317 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdfaa3088 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe0ddb9da tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe6ce47ea tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xedd4e691 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf0fc038e tb_xdomain_lane_bonding_disable +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 0x3588f2a6 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x3da456a7 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xb201e8ed uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xcd74f954 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x04b8a57f cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x35802119 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x476c7df7 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7b81e4e0 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9212c7e2 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xc9148a94 cdns_set_active +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd8575059 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xda89ad72 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xdc201480 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xed0137c5 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x19cc9c75 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x57538064 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7027914f __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x960839e5 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc03b04db ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd05c0ca5 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x741b5b40 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xa738cad6 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xcec14931 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xcf29c3b0 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xd9a7f9bd usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x1bdbf147 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x93d1e926 tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xaddf8889 tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xfb2a99da tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x21761f21 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xb05b41ba usb_role_switch_get +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xb0638439 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xe8d9cd96 usb_role_switch_register +EXPORT_SYMBOL_GPL drivers/usb/roles/roles 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1e6b459e _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2998c611 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x36ac89ef vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3e09c760 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5fe940d7 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x66acee7e vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6cfa0007 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x91abeea4 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xae840c4c __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xd79d647b mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x11194e59 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1cce0ee3 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3adfcbf5 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x40d8d138 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x45569150 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 0x6f555bdb vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x78cfdd31 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x95d9484e vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9f97b4ce vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa1bb7666 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa224bed8 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb2fb6f09 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc9563240 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd25c8c1f vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf129fad0 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfb025abe vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfe97bbad vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x56a829c3 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x763ea57c vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xbb7963ae vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xfed418f7 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0d395352 vfio_iommu_group_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1863713c vfio_device_put +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2bd936ec vfio_uninit_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x334bbc3b vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4670d3cd 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 0x6474a74a vfio_group_iommu_domain +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x74676195 vfio_init_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x91c70abf vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x920747ed vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc9da9340 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xda80e804 vfio_group_get_external_user_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xec352a4a vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf7441355 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfec0de5a vfio_iommu_group_get +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xff4a4819 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x54e2d08f vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xd71842d8 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x018b0388 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06245701 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0add1b4c vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0d4a6238 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x13d32d12 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2112898a vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x274c1388 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b798816 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d5c557b vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x31f99e77 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3aaf0ac8 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3ff1c3df vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x41d8e4c9 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x45212f1f vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x45a179a0 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4a6839a2 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4c1f1756 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x56ea63e5 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x584865f0 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5b4cac77 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ee16b18 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x62f42eaf vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x699e4f54 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x749cf121 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x85b0462d vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x86187117 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91287417 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9a7c56c7 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa7c6c821 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa7cda467 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa929b083 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xab7c3537 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb69a79ab vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb7dfc680 vhost_work_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb7ef5490 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc6dd0a2e vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcbdf65b5 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd2270453 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe947df22 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf3227367 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xff34391d vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x6bec0e66 vhost_iotlb_del_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x83be64b9 vhost_iotlb_itree_next +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x885512a2 vhost_iotlb_add_range_ctx +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 0x00098958 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x050cde76 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x31f4d5d1 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6fd7f8a2 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x92a1a71e ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd40c8780 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xffec378c ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x2d38deb2 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x853ef3a7 fb_sys_read +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x52fe6f60 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb67f9fbe 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 0xd27a9a04 dlm_posix_get +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3d8e82b9 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4733d114 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x474bd216 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5f0a93f0 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x74c93e03 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc78fee72 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe585ba68 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x001e0fa0 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01e4884f nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01e8d1bb nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03fc11b4 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0404b4e2 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0466ab69 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04a744cf nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04bad5c9 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06df1705 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07e24441 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08a4a927 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09985112 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d3e9a1b nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0debfd0a nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fecc56d nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11123921 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a7fea81 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a8a410c nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1aada5c2 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bdc45fe nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d04ed93 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d1912c0 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d48bdd6 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eb1df63 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x257cfc7f nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b38e9db nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e24bda5 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ffe6f46 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x328af4f9 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36795c1d nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x368fcb85 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3804605c nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38befd0b nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a04e2fc nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b91b35d nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d7f5c3a nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fbef395 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x416c39e4 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41b746c3 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x433455bc nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43444d26 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43472220 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x461240e0 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d6d08e4 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x504c3a9b nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51339e98 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x534d4090 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54771991 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56e2db60 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57ea76f3 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x581cbad8 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58572f6d nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a19be6b nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b22a0d5 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b7d6405 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x692f7198 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69b4e325 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69d3dc8b nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a1cb574 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ab25d61 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ad8591c nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73d71cbe nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7469d536 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76b27030 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a679bc8 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7af86372 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d15f85e nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8057cf16 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82d3c819 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x836b51cf nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84eb7635 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84f80af1 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8655b990 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x874c362f nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8af70336 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95a6028a nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96c2bfe8 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x983e5722 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99fe47d6 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9de56c32 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e1d7300 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ec535fa nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0305762 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa07e9dc6 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1c7d95b nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa24def1d register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8c78399 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8fb0163 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf9ab0e7 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1dc05a2 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb254cf21 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5679fca nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5de7a59 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb728a23a nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8cfde80 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb97a5d02 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb2b3e7b nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbd3ea2d nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdc85ca9 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1033b30 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc15ed992 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3af04fc nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc44b4d32 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5c62bf9 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7c6b631 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8cec9f8 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9b10f58 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf87cb97 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd169caee nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2f025c2 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd545cb7c nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd557ee58 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd93f324d nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdda1c7a6 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddc4916d nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf5f24a8 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1d79471 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5a54a0a nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe74fe992 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7838966 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec682e85 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed0a01c3 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed8fe9cd nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeebb7266 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf03898c6 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf25775e3 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2ff4ff2 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5866520 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf997b5b5 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa81d1eb nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb5f6b08 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfca0dd84 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfccb9787 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd3aa78b nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdb03a15 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xa54213de nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x086310c1 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08eea415 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08f6ff76 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aeba1f6 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12bb6893 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14256de8 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16879491 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x168b0a7e pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x174b2ffb nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e326997 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20e8a4cb pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2178117f nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ba1ccf3 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2da6dc59 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f2b0a71 pnfs_update_layout +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 0x369807b2 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36e5b44b nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41773611 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45fe07e9 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49f3bc1e pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ea648f1 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53ee2d12 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b99fc06 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cb200e7 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e8a69ab nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f341a7c pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6707b333 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x685a804e pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x698e5c5a nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b10922c nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d62853e pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6eea76d8 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71197fc1 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72ce3ff9 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x757e71bc nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78b462c8 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79b42b74 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a9f9fa1 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ab7bcc6 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b40b768 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7db6e1dc __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x826e37ed nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86583291 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87d4246b pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c359824 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c4e610e nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ca39ffe nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9053c21b nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x976aceb9 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99144006 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac0faf55 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xacb39c8b pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae88dfe9 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaeafdaaa __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaeba4676 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3f57aa0 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb802e484 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbbd8fcd8 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc400d0d1 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4ce0488 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8115678 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcdb9915f nfs4_mark_deviceid_unavailable +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 0xd46791b6 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4c582ec __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5164230 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda6622ea pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdaaf5461 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb4b3679 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf3c5c1e pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdfbed811 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdfee6002 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5bed97d __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe94bb137 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea25d8ae nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb92a4d8 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec0d63f3 pnfs_put_lseg +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 0xf32380a9 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6c06d56 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf78e3d3a pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7eeb7ec pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x61b2ace1 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9865376c opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc56bbd37 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0ebd596d nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x44151f65 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x875a63b8 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x9da8d81e nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xf5b4b251 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x026e913b o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0743ad91 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 0x34bd88bb o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6860e66c o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8456a923 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x93ef099d o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xad1c9e25 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 0x40a49311 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x522253db dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5dba2de5 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x76ab924b dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x82e10b16 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x938de5b3 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 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 0x2c90e160 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8fdac9fa ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa1e7ddb2 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa20e9e25 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 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 0x43cc3d4b pstore_blk_get_config +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x743bab5b register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x7bfa4698 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x9caa2d61 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xf056bf7b unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xabd9af6d cifs_arc4_crypt +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xc4c73891 cifs_arc4_setkey +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xceecd9e4 cifs_md4_final +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xdef1096d cifs_md4_update +EXPORT_SYMBOL_GPL kernel/torture 0x0d535267 torture_num_online_cpus +EXPORT_SYMBOL_GPL kernel/torture 0x1205ef04 torture_hrtimeout_ms +EXPORT_SYMBOL_GPL kernel/torture 0x1b2fca48 torture_must_stop_irq +EXPORT_SYMBOL_GPL kernel/torture 0x1be7d8be torture_onoff_failures +EXPORT_SYMBOL_GPL kernel/torture 0x2b3de84b torture_hrtimeout_us +EXPORT_SYMBOL_GPL kernel/torture 0x3e9619f5 torture_onoff_stats +EXPORT_SYMBOL_GPL kernel/torture 0x3ff9be11 torture_online +EXPORT_SYMBOL_GPL kernel/torture 0x447d9c95 torture_offline +EXPORT_SYMBOL_GPL kernel/torture 0x4c7529bd torture_shutdown_absorb +EXPORT_SYMBOL_GPL kernel/torture 0x52665f8b torture_random +EXPORT_SYMBOL_GPL kernel/torture 0x52acfe88 torture_hrtimeout_jiffies +EXPORT_SYMBOL_GPL kernel/torture 0x5a12a7da torture_stutter_init +EXPORT_SYMBOL_GPL kernel/torture 0x615c5465 torture_hrtimeout_ns +EXPORT_SYMBOL_GPL kernel/torture 0x679d9e50 torture_must_stop +EXPORT_SYMBOL_GPL kernel/torture 0x688e6a64 torture_cleanup_end +EXPORT_SYMBOL_GPL kernel/torture 0x6c3ff11a torture_init_begin +EXPORT_SYMBOL_GPL kernel/torture 0x759571e0 torture_hrtimeout_s +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0xbb8ef471 verbose_torout_sleep +EXPORT_SYMBOL_GPL kernel/torture 0xc238daf6 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xc62aad89 torture_shuffle_task_register +EXPORT_SYMBOL_GPL kernel/torture 0xc67a49d4 torture_cleanup_begin +EXPORT_SYMBOL_GPL kernel/torture 0xc94a93e3 torture_onoff_init +EXPORT_SYMBOL_GPL kernel/torture 0xcaf7733a _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xdbc5277a torture_shutdown_init +EXPORT_SYMBOL_GPL kernel/torture 0xe2430307 stutter_wait +EXPORT_SYMBOL_GPL kernel/torture 0xe6989fd3 torture_init_end +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +EXPORT_SYMBOL_GPL lib/crc64 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x39e8fa4b poly1305_update_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4a833012 poly1305_final_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x8c874435 poly1305_init_generic +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x60b71df7 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x6f393a5d notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x2b30f429 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xe4b051cf raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x1d29b9e1 decode_rs8 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x561835eb init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x63adbf92 encode_rs8 +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 0x7615eb22 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xdab08440 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x092680e7 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x2aa69e90 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x48d656a2 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x4e3ca0f2 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x62c160b7 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x9a2b6614 garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x055749e0 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x3e1bb9c1 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x6b01e688 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x953f06d1 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xc96169cc mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xf7321533 mrp_register_application +EXPORT_SYMBOL_GPL net/802/stp 0x03494ab6 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x6c06019f stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x2ae9733e p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x89029f95 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 0xeb1adbc8 ax25_register_pid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0bd456af br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1b008027 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1e5de2c3 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x485ab698 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4d2b555d br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5d46200c br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5f970f62 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x65bd2c10 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x721da6fb br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x722b7adf nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x844ef744 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xae307413 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb06259ba br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc3ace2b5 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc3e76c55 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc691bfcc br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc94549e1 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcedfbce1 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcf61d745 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xda0eaeb6 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe8ea1408 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfb1ca928 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/core/failover 0x58728452 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x82df6ef5 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x9274f370 failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c6314d3 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e4fac9e dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x20228495 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x276c04e1 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d1195b2 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x38189c86 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x39e38592 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3ba1aac4 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3be6227a dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4160ceb8 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x546b6082 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f25c0e0 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x63feea92 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x663667c8 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6fe6f551 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x735ed2f2 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x783345c1 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7aed1e3f dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7cd5292d dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x833f5aa2 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x877a610c dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x87ef3221 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x94a6def5 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9a2f90eb dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa1e00907 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa2a74695 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4ce8ef4 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xac80d248 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb5d8dc52 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc8d25661 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc9305617 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe1077c49 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4191ea5 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeba5c0cb dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0b75d59a dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6752f3fe dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x71784632 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7f600dff dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb24669f2 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf096d27b dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0755158e dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0d4285e3 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0def7bdd dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x12aeb8d0 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1f572bbf dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1f72f674 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2fac1be3 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c588037 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5eadd7b7 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5ed26412 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x67568955 dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x69669902 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x742562a5 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7ceaf47c dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x81df57f7 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x83b82dc1 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x88f63357 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8dbec02b dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaba86cf9 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xae369a4f dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb370a3ac dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbc4636b0 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbc8bf173 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbcc33538 dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbeae6b9a dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd32fa4ed dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd67f055f dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd7755c92 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd7d06f6b dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdccb8162 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdeea5d31 dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe04d8e2e dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe297afd2 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe43cd494 dsa_tag_8021q_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/ieee802154/ieee802154 0x37b38a88 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x486ea017 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6a172793 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb16cd40a ieee802154_hdr_pull +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 0xa387d7ef ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xcee50ee9 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x31bcad0b esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x7699f025 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xf080bc6c esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0xbc7d8636 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xe22e734e gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1edb76bf inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2506af00 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x300fed4a inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x31222984 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3b49239e inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3b8f523d inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9d015858 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc8c092ca inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfbb5825e inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x6c2db1ce gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x9c17e89d arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x805607ba ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x5372d1e0 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xd33bdf94 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xc4d2bd1f nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0bfef78f nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3251ddbf nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4d07f95e nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x62818531 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9f70b398 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xeb376e32 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf4f7d5c2 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x58e6e4c4 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x4ab36994 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x4f55a6e9 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xef29d90c nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x15ed63e9 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x8794f6f2 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0be8f605 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x17b57a33 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9c77ec6a tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xea530da5 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xee7b70ac tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x5453f8b2 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd2ec8e4c esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xdff85ae0 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x092ddf49 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x330a87c1 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd352169e ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xa7c8d37f ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x131b624e nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x343eaa69 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x5b139db4 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x347e7074 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x38ad0836 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x54175210 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6f723b08 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbca3dbd3 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd6721055 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdb26d6c8 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe6cec1ce nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xdf8145ad nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x24cbce86 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x7697534c nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xee9195d9 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x2eeeb702 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x4dfc6e36 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x092fa4d3 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0b66eb41 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0d8f6387 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x197b00f3 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1e0dfbff l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x25b8281e l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3ff5f396 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5b129819 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6297ac0b l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7cffd5e5 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa07cd99d l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbebace83 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc2a6b31e l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd547469 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd830d21 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd40d00e6 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd6b27795 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xea0cd31d l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf0fb6314 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf4658d7b l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf712328e l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x705a28ed l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x9221c8ff l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0904d713 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x31b297b2 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x40dd430b ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x45554a0c ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x47ffb7e7 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x55d44298 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x693dbe89 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x70f0584b ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x805412da ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x931ea093 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x93cb7d84 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa0784677 ieee80211_request_smps +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 0xaaf50d6f ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb19c356a ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc572f17c ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc995e799 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcdd73d94 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdbd8c369 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe5e9e48e ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf0e1b29d ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x554f3f56 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5a8225df mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x83709233 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdd5b2e83 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe16ae90f mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x025babb7 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0d7a005f ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1dc8684e ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3357edf1 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3b77f6af ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x40fbe67f ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x44cb3772 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5635689a ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5fcfc25d ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x64037c86 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6e38191c ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x77548560 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x87c6983c ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xab367002 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xafba056d ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe8e3cc0b ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf04708dc ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf33ca77c ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xffa8ef5e ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x04fafc2c unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1c067cbd ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x44d889a0 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xefdbded4 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x2bbb46b4 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x2ce89b7d nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x4308bfe6 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x945543b0 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2caabae nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00471a4a nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x026bfbbb nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x049407ea nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07c87789 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17ff40b6 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x188a6d65 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x201089b3 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2084efa2 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2887ad72 nf_ct_helper_expectfn_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 0x2dc3d28f nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f57af4c nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31ddeee2 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3416fee1 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3615fc83 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x397efeac nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a134d74 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47bd86b9 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47f09bfb nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e5b2e24 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53c6c241 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55a32f20 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x585e3914 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58b29cc1 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5916d9b5 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6269de12 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6775c8f8 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68ac64b5 nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7192ebdf nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74477027 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7603db8a nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7770b706 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x787174b3 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x797d154b nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d0fda18 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7da80507 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f98b8c1 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80af2d04 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80c61da2 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8163ec6a nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85382e48 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89ff87a4 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e7acd16 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x933a86f4 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x984412e3 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9963f8a7 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9db78354 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e8241a2 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f99e026 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fec6885 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac1ae913 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xace16af8 nf_conntrack_helpers_register +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 0xafdb326a nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6fdd58b nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba2bd887 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba6ae31b nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc3c47c3 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc58c79e nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc64c5ca __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc23ed58e nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc26c3da9 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc364b4cd nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4d530b5 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc624da45 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc72b8b62 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccd98362 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce8795d2 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd232fa51 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda2d536c nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbd178bf nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe003c045 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0db6423 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0e90525 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4bc8d33 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb68566a nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xece95c2f nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeda9035a __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xefdd1af2 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8e9e24e nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa8765a7 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfbd1f441 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc513e80 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xc3271858 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x2d479b06 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x1baa0731 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x12ac8bfb get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3323a22e set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x344f8f9c nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3933e4b5 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x65b9490f nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x73b9d637 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc36dab51 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd5d38902 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdce68f22 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdd2cf7b2 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xb0b27a09 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x11c27483 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x12430c2c nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1a4f2a3d nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf8c47588 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0e69f90a ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x24d94a5d ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2ac90338 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x38118aea ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x83c46c85 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd70f9942 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe8dac7e1 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xb46b9bf0 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x9d5d4e08 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x43e0d1d3 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7185c86d nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x874fdf05 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x01be6965 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1332c4db nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2c6a6576 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x36f0a725 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3c81b4a4 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4344f7e5 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x45b1b4b7 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4ea7fd7d flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x526b3a80 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5f9f8022 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6c09f860 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x782ede2e nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x84130a5e nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x890e89c9 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa0a0efad flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaea6dfb0 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd66fcada nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x01e45601 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x02bc5e22 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0ca84b0e nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d5a8a99 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x117d5874 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x11a7e00c nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1c4ab053 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x71a56b5b nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x84a9bc88 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x89e68a1a nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x91790773 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xaf93434c nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb7d39d84 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc25cec67 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 0xe165fe42 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfd681b15 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 0x6f3388fc ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8f0889e7 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xaec9273d synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbee813ed nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd6b98474 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe4482e65 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe69d8669 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe7591e7e nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf2e94a6f synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf52f9688 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfb2df537 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a722c70 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1023fa6b nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x18c3fbc3 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1d445e05 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x251c6f4f nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x252bb1fd nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x297a51dd nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x30f8b029 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x30fa8e35 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3d1e20b6 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x419bd129 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4514bbe5 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4a3a07c4 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5913fc20 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5dd10a6e nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x61cb1983 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x652d5d3f nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6749fac6 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6a1ad9bf nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78489fac nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78a78d73 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x86e3bf9b nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b5ae838 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9cb253b6 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9ed8ebd1 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa8af5266 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaed9d4af nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3bd62b8 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb549a066 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb60a3a85 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbfec0bbf nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0f1dc0f nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc1231a97 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc23cd9bb nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcc951412 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd6cad08a nf_tables_bind_set +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 0xe7da6c1a nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf69f921f nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1683e194 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2e4378bc nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5a981305 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7a26f6ce nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9b980f28 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcd6021d1 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf0107875 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x63fad6b9 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbe822301 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xfb15f3b7 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x21d8f4b6 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x5797ea8d nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x8f47b9a4 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xc684cdca nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe6fadbc4 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf677b0db nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x3e018303 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xba42ce0d nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xee00747f nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2d42023b xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x317230f4 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3290e3a8 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4ce28116 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5616b71d xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5cb30d21 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6a060ddc xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x74f81d67 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x82b0853c xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8400697b xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x85440284 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8b926e87 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8d980341 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8e5277f2 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8f2fd786 xt_compat_target_offset +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 0xa9444125 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xabb1d14c xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaf2f5777 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb5b4c53d xt_compat_target_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 0xcc4e2949 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 0xd665b01b xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd8586991 xt_unregister_template +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 0xe045776f xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4b54bd9d xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xee91b303 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x46344f2f nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x77b1eff8 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf4093784 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x25dc04c1 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x35b6dcb3 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x53b414e7 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nsh/nsh 0x5317e43d nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0x85c5e92e nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x550dd9f9 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x560da601 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x90689e65 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda18cf4a ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xed05f5a7 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xfb396af7 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/psample/psample 0x1ca68770 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x35dc3125 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x8aeeef95 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xba361d65 psample_sample_packet +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x6a70a4b5 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xde8aa32d qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xe81397c6 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x13d94a82 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x13dbeae9 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x1514e698 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x1f5427d6 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x20c5e653 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2fce773c rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3ee7dbdd rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x444fb2aa rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x4b4b686c rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x53dba8f5 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x601821e5 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x69f9aecd rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x6d008498 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x6f3626ee rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x83271117 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x8383b034 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x869dba28 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xa04caf76 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xa313750a rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xaf455a9c rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xb4f691fd rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xbd3d243f rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xca5435a8 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xcd354a7e rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xcdd6b4dc rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xdd1b9868 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xed9ba9cb rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xf5d74008 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xfb7299be rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xbb1b6ffb pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xf06fae40 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 0xa06141b1 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xb43f4f8f sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xb60a2aba sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xc8f60697 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x150ebb0d smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x179f4f34 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x4a6cde58 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x60a8fcf9 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x61e2ff06 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x76bd82ec smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x79ce99d2 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x8d449619 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x9f82d90b smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xd34fb2c9 smc_proto +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x13065c92 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 0xb12133bd gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd52afddb 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 0xeb27bef1 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x011dfbc3 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x025e723d rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0313a29d xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0530271c xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x054a5632 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06ac9ff4 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06f35ccd unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x071c2358 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08070165 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08c3239e rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ca18795 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f6af694 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fdd7f09 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1016f833 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15317adb svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1702e604 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x176cc967 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x182ed4eb xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x192e9906 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19804755 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a8a1ec9 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d0aba87 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dad331f rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e5f7f86 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f8808ff svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x209109c4 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x239762cf rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x248cfe78 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x259cadcf xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x261c7f9f rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26aca05d rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26cd5c03 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x274eada5 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2840955a xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x292a8ae3 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bb5aa3e svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bb7b8ea sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c8c411e xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dcfe5b6 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31974031 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3337bf34 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35e7e55c xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3663d4ef xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x368ecdfe svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36c7117c xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b2acd62 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cbdb6e8 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d176a3e rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d416161 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d5b05c7 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d883cca xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3da3b7ad svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ebe79fd rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fab8f6d svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x487c2231 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x498653aa rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a645287 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a7ff355 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b85e3cf xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c27c2ae rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e10d2a7 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e943b0b sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f0548fd rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x505aeaec svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5366299d svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55cb0799 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55cfe02a rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58de0ab9 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59bb3247 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a40e1b5 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a610945 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c2ee13b svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d61c1e0 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d9ccfb8 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e6fb440 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f00f2b3 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6037afe2 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61206131 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61584e15 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61840c28 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x639eeb69 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65385303 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a05f1da xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c105a78 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cecc144 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d06b732 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d29c797 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dbbccc6 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6efa009d rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f1b7534 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f34670e rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f3d03ef rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71471dc8 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71c54ab1 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fe6a44 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72c4c8e0 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74170f06 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7424e7c8 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75fd5541 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76792610 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79337e76 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cc965a3 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cf80ce7 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d2b02e9 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e29193d rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ea9fba5 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ebb04a2 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x801a2191 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x801c711d svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80695126 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x810fcf0e rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83340ddd rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x859c77f7 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86d58483 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87153230 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8788c158 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8892f8f1 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88b97324 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88bfbec6 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89c3d867 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a778720 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8af9205a svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d3fda0c rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d58ba26 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e29b07a rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8efe28b0 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f4bb9a6 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fe10f42 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x901bd017 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91201159 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x931554bc bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x945279be xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94ba0599 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9780357a rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97c5a980 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97c9045c xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98c1c0a7 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98d9fcfc xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b8f322b svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9caa5cb4 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dc85a3c rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e0dcff7 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e1126f7 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0a858ec xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa18dccb1 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3114671 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4a38915 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7fbdcb3 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa848aa6b svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9469896 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa95c8a28 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9d20025 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9d607a0 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaae5301d svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabf5d4d7 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadc600df xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae8f07d9 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0fecd43 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb109b43a rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1bbd67b rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1d34f78 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2401429 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb261f910 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2dff57b cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3a8b9f1 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3d0b697 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb407faf3 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb691541a rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb81656a4 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8771953 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb886cce3 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8ef2f29 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb937bd05 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbae7aa78 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb22be2f svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1184d59 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2d67ff5 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc427cae5 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc429d73a svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5f13746 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6ea703d cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbe520a4 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcddac61f gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf6f2ff4 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3538972 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd421dbf9 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4379739 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd47d5db3 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7d937ad xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd84cc57e rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd88719e7 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8abb3ad xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda117b65 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda1da725 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda6e6fb0 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb1c7e3d svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbfcb0ea svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde426ea0 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf4c2d97 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf96a629 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0995a6e xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe12de8fa rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1771d05 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe715dc34 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe74df2d2 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe794b353 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe906fa59 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe93fcf9c xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe989660b xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaf003ff xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed44e955 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee1805e2 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee4755ef rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef673402 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1ed0822 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2d40c53 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4073ef7 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf41c711f rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4675b51 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4a922bc rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf537bc3f rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5b63044 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf66c786f svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf69d0aaa rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf71d2000 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8b376ee rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9799e55 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb9e0f4e rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc8de159 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcd42202 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffb169c2 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/tls/tls 0x58c3ee74 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xbfc341af tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xd5b5bfa7 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xf6a1c0f3 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x090b12ea virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0fecae25 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x17289138 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x174894fd virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x18a9d5c5 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x19e5ef5a virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1cb23bc7 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x20b3058a virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x262e2dae virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3bcc6374 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x41697612 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x44d103a3 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x553e613c virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62e8aca6 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6962de62 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7812cbcc virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7951a396 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fbb6551 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x836ae440 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x87d5edee virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8db44886 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x90d93145 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9c64ee54 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa3413ace virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa42f1e77 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb858855d 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 0xca0ba52c virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcd8d03e4 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd2c589ac virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd359562d virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd9ba514b virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xde836d8a virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe26ab79a virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfc411124 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2b4bd0eb vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2bca79aa vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x315922ab vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x34c0a55a vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4188c0cf vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x42fc2de8 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x51d008bc vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x82bd3707 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x831d5719 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x86512019 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8d276800 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9706b347 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9f8eddcd vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaa01850c vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbc9fad25 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcafd8e25 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdd563522 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe1964d81 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe3b266a4 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeb12e1a6 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1585c2c7 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x659833a0 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x731a6745 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x740f66c3 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xae3623fa cfg80211_vendor_cmd_get_sender +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 +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +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 0x66acf47c ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x68b7a940 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x728bfc10 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc25fc851 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 0x096f2154 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x1ccfb804 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x1ddb09ad snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x2b67d06f snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x4bb31374 snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x5623ca93 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x584ad4f7 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x5ac4c884 snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x7478e100 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0x818ea4a3 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x869c74ca snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xccb927d5 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xec13225b snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync +EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xffa41f69 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x07c0b652 _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0c9fb89c snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x229ae7e9 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x394df5d0 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5b07f57b _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x637588a1 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa567354f snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb683f1b3 snd_devm_alloc_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb6ec0da4 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xba7c6216 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd038debd snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x67ca7174 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x76781dcc __snd_seq_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x001e30d5 dpbp_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x0021e414 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x002238c5 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x00377877 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x004c7102 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x005247b4 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x00536f7a dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x006618ba register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x006d9e8d simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x00894643 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x009982e0 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x009db6c8 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x00ab3e45 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x00bb36ae driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x00c3e291 fsl_mc_bus_dpci_type +EXPORT_SYMBOL_GPL vmlinux 0x00d2b7e4 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00dafebe cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00eaa774 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x011008aa of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x0113e842 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x01183276 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x011a8149 dma_buf_dynamic_attach +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x0132fd21 d_walk +EXPORT_SYMBOL_GPL vmlinux 0x0149ad1b fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale +EXPORT_SYMBOL_GPL vmlinux 0x01586dc6 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x01603e7f kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x01676f47 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x01760d98 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x017af55e devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x018c913d get_device +EXPORT_SYMBOL_GPL vmlinux 0x0199d2d3 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x019cb838 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01af26ff ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x01b76732 mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01c975ac spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x01d1a417 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e968fb find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x01fc4b03 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x021799e3 dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x021cb603 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x022af642 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x022f086a devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x02398477 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x0258e175 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x025f8708 __nvme_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x0261edc6 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x028aecca ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x02a23612 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x02accd10 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x02ad27f4 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x02b9947f bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x02b9b0cb iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x02cbbdb3 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02d83ecc usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x02d9146d subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02d978da nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02d9b5fa platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x02e51f67 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x02f87118 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x02fc3015 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x02fecae7 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x0301775f ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x0323a119 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x033131b1 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x0335da62 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x03397285 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x033f126c genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0346cea9 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x0351ba54 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x0353f435 kvm_vcpu_gfn_to_pfn_atomic +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 0x03829483 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x03838abc platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0394daa5 fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03a47f04 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03d8bd7b phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x03dc2cd7 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x03dd818e iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0414536d blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x0427f4e0 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x04474132 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x04512962 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x0452490e genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046dccfa iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x047ae97d pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x048d7226 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x048f00b1 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x04a286e3 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x04a45fea of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x04a56427 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x04a97377 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x04a982bc regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04bfd3a3 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c7dac4 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x0505f166 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x05098ff9 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x050c6981 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x050ea55b imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x051800b1 ata_sas_port_start +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 0x0548b68d tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x054a9c52 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x054ecff3 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll +EXPORT_SYMBOL_GPL vmlinux 0x056d2ebc fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x0570ea37 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x057264d7 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x05843661 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058a59f1 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x059a0947 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x05aefc74 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05c0f30e sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x05d3f6c8 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x05e95d33 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x05ec35b6 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x05edb333 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x05edb3e7 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x0602cdc4 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x060513af security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x06116fa9 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x06192668 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x0619ce2a tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x06230572 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x0636119e vfs_write +EXPORT_SYMBOL_GPL vmlinux 0x063e9296 rpi_firmware_put +EXPORT_SYMBOL_GPL vmlinux 0x06430f2d inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x06434dfa fsl_mc_bus_dpdmux_type +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x064f7ca6 k3_udma_glue_rx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x06553e6d sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x0661e2db pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x066be3dc devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x066f7e1d acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x06820b13 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x0686bae0 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x06935056 tick_nohz_dep_set_task +EXPORT_SYMBOL_GPL vmlinux 0x06962bb7 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x06971c9e pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x06991995 kvm_map_gfn +EXPORT_SYMBOL_GPL vmlinux 0x06a14d19 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x06bb7c41 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x06becb9f usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x06c0dc67 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06d727f2 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x06e2dcf2 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x06eb56aa __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x06fdd225 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x0704d370 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x07068a64 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x0707019a context_tracking +EXPORT_SYMBOL_GPL vmlinux 0x0713168a pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x071cc61a device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x0726218f nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x074fe35d genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x0755536b sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07676ff1 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x078c37f6 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x078d2801 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b5068c pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07c199a1 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x07c39e97 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x07c8c589 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x07d68f72 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x07d77ebb dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x07d7b036 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x07ea1af2 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x07f139a9 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x08054e09 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x080c286f bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x0810edd0 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x0813f339 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x081489ca phy_get +EXPORT_SYMBOL_GPL vmlinux 0x08151a82 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x0827e16f pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x083fc8f5 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x084a5440 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x0850fd2a xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x08528a91 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x08639776 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x0873a2c9 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x087ad76b __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x08852519 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x0897ad42 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x089c6aa3 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x08a0b8fe blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x08b8e61b seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x08be9cd9 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08cdd5cd imx_pinctrl_parse_pin_scu +EXPORT_SYMBOL_GPL vmlinux 0x08cea0a9 set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x08d34212 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x08da8fec regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x08e879f1 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x08f11f3e of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x0906379e rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x09196714 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x0945b37c mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x0969cae3 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x097ddc04 context_tracking_exit +EXPORT_SYMBOL_GPL vmlinux 0x09882bed fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x0988d76e pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x09910dc8 meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x099a2572 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x09ad5c62 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09cea094 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x09d816a0 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x09ee2d26 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x09f50f32 rcu_nocb_flush_deferred_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x0a0fbc17 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x0a17959a serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x0a245a16 nvme_disable_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x0a2ec3b6 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x0a337a1d irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x0a4405d1 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a4c1a79 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x0a4da0d6 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a547048 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0a58020b balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a749cd9 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x0a74ae4b kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x0a799f9a ip_tunnel_init_net +EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a92c362 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x0a951516 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x0a968b21 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x0a9bcb4a sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x0ab3cc39 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x0ab7c2ce unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full +EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0ac6453b dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0ac6e926 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x0ac85926 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x0ac9be4d gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x0af6c861 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x0afbdace dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x0b0639c8 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1c5fca task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0b485137 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b5c572d kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x0b6581f6 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x0b669025 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id +EXPORT_SYMBOL_GPL vmlinux 0x0b6a0202 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x0b750fb3 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x0b881fad crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x0b8d53b9 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0b8f543a gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x0b8ff4e1 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x0b91b7a1 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bc41638 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x0bc81c52 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x0bd06725 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0bd0e19e scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x0bd99eab fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x0bdcfb5d iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x0bf1ec18 devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bf824b2 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c00afe8 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x0c2c4d4e pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x0c4e4094 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x0c4f8757 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x0c5403b5 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0c5a6b90 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x0c69201a kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c8eac6c stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x0ca29ffc thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ca7be4a device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x0cac9975 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x0cbc3a74 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cc2cd8b __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x0cc549e8 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config +EXPORT_SYMBOL_GPL vmlinux 0x0cdc5303 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x0ce038cf pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x0ce21c1b rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x0cef09e8 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x0cf4d4be device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x0d01062c scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d184e3d proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x0d1b369e l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x0d1bf3a3 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d604fdc kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x0d669c04 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x0d6afc27 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x0d7e78a1 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x0d8bcebf hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL vmlinux 0x0d98ec45 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x0da4ba8a sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x0dca0a42 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x0dd85707 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0deee65b irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x0e01614e perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x0e0e4ddc fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e1b05fb pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x0e281569 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0e2b620c usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x0e384a81 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x0e3ec7c4 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x0e407399 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x0e4a4337 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x0e569f50 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e6a2c0f udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e7a71e8 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x0e7cbf6e usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x0e7eecca inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x0e996aa2 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ec373cf rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0eca8f99 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x0ed2df1c stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x0eec0703 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x0f16a84c kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f18a206 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x0f1dea20 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL vmlinux 0x0f206502 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x0f4aa698 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x0f4d6976 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0f4d7cce ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x0f4f3c57 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f7a8491 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f8994fa srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f8bce10 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x0f8d01da of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0x0f8f04bf dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x0fb1a3ca pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x0fb366ad pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fc37ea6 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x0fc760a5 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0fcbc275 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0fd2f65b serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fdaffe5 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x0fe72c5e xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x1005d60b tick_nohz_dep_set_cpu +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10260658 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x1041954c bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x10422215 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x10467a31 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x105410d0 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x107da9ad blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x1098d318 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x1099c3f5 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x10a94e19 dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0x10ad156a blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x10c88d54 __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x10e6214a of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x10e68f0a power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10eedaed iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x10ef361e wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x10ff9ce4 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1102b96b iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x11051043 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x111e0a35 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x11351733 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x113a5bb1 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x113aaf39 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x113c3111 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x1141d54b driver_find +EXPORT_SYMBOL_GPL vmlinux 0x114a5916 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x114d58f2 imx_pinconf_set_scu +EXPORT_SYMBOL_GPL vmlinux 0x114dc6a6 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x11509e9d device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x115b5eb7 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x11607b04 meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x116207f8 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x1173dd80 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1174b99e __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x11793e98 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x117b82bf devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x1195bf74 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11a4e11a call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0x11c63b19 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x11c91110 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x11da1355 fsnotify_put_mark +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 0x11e6d788 rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x11ede3fb pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x11f83789 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x1207741f sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x12107aed exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x123761e0 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x1251342f rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x1258502a fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x125adfd2 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126f6da0 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x1294ff21 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x12a3525f regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x12cb0800 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x12dc61d4 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x12e1fece inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x12e828b9 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x12eab879 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12f30291 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x1302bfef acpi_nfit_desc_init +EXPORT_SYMBOL_GPL vmlinux 0x1304cdfa blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x13159f35 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x1317ba4a pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x132d86e7 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x132f23cd scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x13304104 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x1335d536 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x13370146 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x13375e50 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x1347452f virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x136da0ee fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x137b025b dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x139d1fd4 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x13a24a06 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x13a40513 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x13b097b1 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x13b87103 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x13c80777 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x13ffa146 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x140ae8d6 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x1413cb8a regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x141e16e9 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x1429d01f serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x1441ccc2 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x1450452b evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x14532cc5 amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free +EXPORT_SYMBOL_GPL vmlinux 0x145d32d5 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x146cfb51 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x147df7bf __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x14826412 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x148ae980 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x1490fb0f devres_get +EXPORT_SYMBOL_GPL vmlinux 0x14a28c6a fsl_mc_bus_dprc_type +EXPORT_SYMBOL_GPL vmlinux 0x14ac6ebe usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x14b7f172 rockchip_clk_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x14c4acce pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14dd281f rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x14e0dbfa __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x14f86cfd __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x150f1318 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x151ccf79 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x1524fdd9 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x153d1b10 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x1543b59c nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x154d67c4 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x155af7cb irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x1573f432 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x158232c1 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x1591b2c6 hyperv_read_cfg_blk +EXPORT_SYMBOL_GPL vmlinux 0x15968a3d crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x1599ef79 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x15a866e2 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x15cf1320 switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0x15d0e25a tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15ea4da7 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x15ef0370 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x15f46935 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x1607d797 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1615f6dc of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x163ac923 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x163b4544 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x163c9f41 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x1651c8ee proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x16556b5c spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x165b0bf1 alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0x165e699f ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x16758dde generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x169482bf gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x16a4ff90 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x16b94f68 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x16c1ccfc xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x16c777e7 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x16d75df0 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16eace5b ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x16f2a360 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x16f888d6 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x170c8156 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x170e3f58 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x172adaa8 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x1740cd1c page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x17453a71 tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x17538c5e hwspin_lock_register +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 0x1765ae9e usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x17719bcf mtk_pctrl_show_one_pin +EXPORT_SYMBOL_GPL vmlinux 0x177c0ea9 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x179b63c1 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x179ceaf9 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x17ca09ab virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x17cb7950 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17ebfcfc usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x17ec7e1d kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x17f32df3 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x180052ab sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x1806f60b pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x182d3f29 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x1850bbd7 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x185e0fcf fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x18762db5 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x188175e6 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x1889b24d devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x188af7c8 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x188b6ffe ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x18a875a8 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x18ac28b7 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x18bed959 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x18d6f983 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x18e0beee auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x18e2668c inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x18f3dfae tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1913b57a kcpustat_cpu_fetch +EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert +EXPORT_SYMBOL_GPL vmlinux 0x19280841 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x192cfbea edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x193480e2 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1942d2e0 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x1945c8eb subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x19541310 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x195a5a16 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x1963afe2 dpcon_reset +EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x198a4b2c regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x19a198dc regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a4b301 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x19aee973 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x1a0218a5 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x1a0a03a2 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a24899c blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x1a3cee2d sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x1a3d8eda pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1a4d4654 vmbus_connection +EXPORT_SYMBOL_GPL vmlinux 0x1a573676 tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0x1a672350 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a6d3be1 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x1a74d33e usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x1a75b4cd bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list +EXPORT_SYMBOL_GPL vmlinux 0x1a7c58ca vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x1a7c8285 of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1a9754cf sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x1a98b270 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x1a9c2cd5 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1aa56d1a irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x1ab4391e firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x1ac369f7 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x1ac382eb perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad577d3 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1afa77ab fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x1b2c363f regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x1b49643a __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b64a6cf acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x1b65ff9a ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1b6d1359 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x1b7b8b51 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x1b81ce58 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x1b84f065 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1bc5e41b spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0x1be64a53 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bf34664 switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0x1c07f65f rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x1c08b36e rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x1c0a93e9 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x1c1fa3ca ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x1c20512d __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x1c30149b tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c6183cb shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x1c663922 iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent +EXPORT_SYMBOL_GPL vmlinux 0x1c8b99a8 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x1c8d2090 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x1c9e2941 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x1ca293f1 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cd207ef wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x1ceb375e dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x1cfcb947 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x1cfed826 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d243145 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x1d4496e5 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x1d4b9108 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7f9169 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1d89905e attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x1d91a903 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1d94b18c dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x1d9c362d ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x1daa03c8 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x1db20226 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x1db60d09 acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1db67693 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x1dc27a5d devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x1dd65883 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x1dd7c9af spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x1ded3c7a dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x1deefbe4 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1dfe49d9 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x1e06085d of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e25afe9 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x1e286ca8 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x1e333922 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x1e350fac devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e4c42e1 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x1e642ab1 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x1e64ff57 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x1e6b0c7c regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e85a6f4 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9171b7 uart_handle_cts_change +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 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1ed6c245 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x1edf85c5 meson_vid_pll_div_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x1ef7b80b ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1efbc7a8 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x1f0627c4 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x1f0a6b44 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x1f0be0e6 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f143dd9 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x1f1be819 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid +EXPORT_SYMBOL_GPL vmlinux 0x1f2963a4 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x1f2ded14 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x1f31b683 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f427a62 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x1f444d3c led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f48a74f __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x1f538124 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5b3aeb spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x1f7659c0 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x1f7d9d46 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x1f8215f8 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8ab272 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fb7340b crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x1fc4057a usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x1fdef15e pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1ff3d68b __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x200fda15 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x2013a333 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x2058b935 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20897fc1 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x208b4980 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x208e5c5d acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x209490ba of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x209550bc fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x20acf724 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x20b3cbd5 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x20c0a5e2 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x20d24870 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x20e37bd7 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x20e794cd __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x20edc694 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x20eeef02 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x20f698cf mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0x211adb00 input_class +EXPORT_SYMBOL_GPL vmlinux 0x2137ffa3 acpi_nfit_init +EXPORT_SYMBOL_GPL vmlinux 0x21493d39 devm_ti_sci_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x2169ce5f of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2172e088 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x218914ab serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x21980305 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x219808bc nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac0bbe usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b0289c nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL vmlinux 0x21c1feae fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x21c644e2 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x21c9e403 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x21caba7e fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x21eb6d14 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x2203f046 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x221394ae hyperv_reg_block_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x221acc78 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x22279643 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x222b0558 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x226c5274 pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x226df304 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x227c1b8d phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x228082ad ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x2283f869 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x2291b8ce usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x22a47860 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x22b2b68e fsl_mc_bus_dprtc_type +EXPORT_SYMBOL_GPL vmlinux 0x22b91b0c perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x22d0c8bc ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22e96ff9 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x22eb9ed6 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x231fbcec fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x2337056c pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x2344f8b6 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x2365a3ab of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x23707433 k3_udma_glue_tx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x23745f11 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x237c79d1 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x237eafd8 clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x239483a8 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x2396bc99 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x239e7091 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x23ad3d1e virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x23b362e1 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x23b96b56 handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x23c231c1 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x23cf9adf __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x23f0e2d2 devm_acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x241b8844 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x24270a00 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x24289118 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x243afb43 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x243eab9a power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2453d472 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2474c42b tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x248e0a2b devm_rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x2492812a rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x24930840 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24b5f43f kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24e426c1 int_active_memcg +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 0x24fefb24 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x2505e4ce crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x250d27bf ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x25300fc1 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x25349d32 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253893c5 blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0x25403782 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x2548a635 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x2563f9c2 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs +EXPORT_SYMBOL_GPL vmlinux 0x257674b6 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x2591b374 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25bc93e2 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x25c3c364 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x25c57829 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x25e53638 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x25e7cca0 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x25e8bcf3 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x25ec17b2 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x2602efc7 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x26077eed devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x2607b73c __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x2614a98f ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x26187467 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x261974cf synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x261a876c mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x2637722e of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26544241 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x265ed6de pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2668442d extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x266d056f rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x267df55e rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2684f4fa dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x2699d545 mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26ab2176 fsnotify_alloc_user_group +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26c9f79b fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x26cf3d5e dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x26e57752 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2701953f mtk_mutex_add_comp +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x270b34e8 fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x2715f52c regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x2717341f debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x271a2f12 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x2734a572 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x2735a59a usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x273c296a regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x273d1594 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x273e2382 __context_tracking_enter +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x27541173 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x27683d00 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x276a0588 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x276f23e0 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x27a56556 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x27ae1398 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x27b77138 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x27d884fd dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x27da4248 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x27ed090c blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fd4f87 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0x28025472 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28071f67 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x281090d9 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x28277864 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x28448eb3 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x284d8be8 of_css +EXPORT_SYMBOL_GPL vmlinux 0x28574164 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x285ee70d blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x286044a0 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x28633ac8 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x28640fc8 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x2879b41e devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x288053ba device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x289ace3b clk_register_fixed_factor +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 0x28b477dc class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x28b74245 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x28cdc038 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x28d30310 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x28f26684 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x28f84a1b ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x28fb5ac6 rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x28ff6f19 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2915ab3d mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x291a9e1e platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x29209bf8 nvme_setup_cmd +EXPORT_SYMBOL_GPL vmlinux 0x2921c5e4 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x292b1011 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x292ceb79 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2936e877 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x2949a8ab vmbus_setevent +EXPORT_SYMBOL_GPL vmlinux 0x29542b56 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x295c2901 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x29641d16 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x2965515d devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2974441e of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x29969bc6 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2997168a pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x29a740f6 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x29ae97a6 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x29b02747 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x29d1f264 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x29dcf288 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x29e80a5c scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f2a879 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x2a006241 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2a059744 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x2a20e5c7 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x2a2260c2 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x2a2be12a posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x2a340845 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll +EXPORT_SYMBOL_GPL vmlinux 0x2a41ba93 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2a473793 vtime_guest_exit +EXPORT_SYMBOL_GPL vmlinux 0x2a5d466d mdio_mux_init +EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a5f8e68 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a871396 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x2a8af55a acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x2a8ba4cf posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x2aa101b2 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2aafca16 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x2ac3e6da dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x2acf4405 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider +EXPORT_SYMBOL_GPL vmlinux 0x2af07b90 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x2afbf1c2 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2b0e1b5f dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x2b1f1692 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b4d5538 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x2b5290e3 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b65cfd5 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b7c71c7 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x2b7dd2bb pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2b9ce440 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x2bb66d7e devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x2bbb2d03 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2bcf5978 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x2be4c45f of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x2bf3c246 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x2bfe715a usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x2c00d2d4 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c29620f ip_tunnel_ctl +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2c3a062f ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x2c3c988c crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x2c4e716c nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c7f5699 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2ca007b4 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x2ca1c03a dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x2ca2000e iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get +EXPORT_SYMBOL_GPL vmlinux 0x2cb2270c dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list +EXPORT_SYMBOL_GPL vmlinux 0x2cd564e7 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x2cd7a3d2 tracepoint_srcu +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 0x2cf8b730 dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0x2d05cf78 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d09dc32 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x2d156ba6 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2b1d5a virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x2d2bd81e virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2d2dcebd component_del +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d2fbd87 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x2d362ca1 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x2d393f48 intel_soc_pmic_exec_mipi_pmic_seq_element +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d437681 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x2d4c16a4 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x2d557ca3 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d6f8557 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2d708440 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x2d74effe synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x2d8b1f00 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x2d91aad7 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x2d951555 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x2d9ad670 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2dc3f62b pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x2dc56e92 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x2dcc6b8e regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x2df383dd ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e0520d7 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e0d0c6e inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x2e1e8506 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e4a4b13 dm_internal_resume +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 0x2e6d624e fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x2e741151 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x2e87caea phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x2eac67d0 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec42903 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x2ec46d36 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x2ec57376 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x2ec75900 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x2eca4af0 __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2ed4a83f devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2eec1572 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x2f05b7ea nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x2f078ea5 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f10c314 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f24ee38 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x2f27053a ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x2f2b6d6c hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f43df23 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x2f4603b2 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x2f47f3a3 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f57c67f acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2f5d8d27 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f761988 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x2f844850 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x2f878759 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2fa391d8 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair +EXPORT_SYMBOL_GPL vmlinux 0x2fae5393 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x2faeb6ee usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x2fb5b099 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x2fc10149 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fc980d0 tick_nohz_dep_clear_task +EXPORT_SYMBOL_GPL vmlinux 0x2fed581f devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x2ffd7ac1 devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0x30002fae skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x300b6966 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting +EXPORT_SYMBOL_GPL vmlinux 0x3027d4cc fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x302f45db devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x3030b54a inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id +EXPORT_SYMBOL_GPL vmlinux 0x30443759 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x30504fc9 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x305ec080 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3076fa6f serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x3079c389 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x307df5a8 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x308a9d84 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x308c3184 devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0x3092f17a ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x309ccd61 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x30a22980 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x30a791f2 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x30ae76b5 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x30c87164 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x30e1b57c __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30e42163 tick_nohz_dep_clear_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x311b1947 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x311c5728 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x311eecab platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312c59b5 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single +EXPORT_SYMBOL_GPL vmlinux 0x314381aa dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x31495165 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x3157bbb9 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x31714406 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3176b104 dev_pm_opp_put_supported_hw +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 0x318a0632 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x319bb14a sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31ab2a69 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x31b20e67 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x31bd0923 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31cc9a97 dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x31e2e77f vmbus_free_mmio +EXPORT_SYMBOL_GPL vmlinux 0x31e3dc8e hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode +EXPORT_SYMBOL_GPL vmlinux 0x31ea95a1 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x320a571d dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x321055cb vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL vmlinux 0x32181293 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x322acbc5 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x322b8666 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x323189e4 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x3231a817 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x323eab62 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x3249198a regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x324a63b2 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x3258b6d9 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x325b9447 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x32652685 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x3288b6d5 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x3297eba6 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x329837e8 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32b1a7b6 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x32b7a6e4 debugfs_create_dir +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 0x32c482a7 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x32c5eddb tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x32c919b5 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x32da1226 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x32f1e86e netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x33071d60 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x330edccd meson_clk_dualdiv_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x33149234 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x331dd7c2 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x331fa99b gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x332cc3b0 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x333208cf rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x3343be9a regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x335b2de6 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x33641e9c sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x337b70f9 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x3381a95a regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x339406de l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x339e7ef6 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x33b1adbc __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x33bd8399 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x33c3d00d ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x33d43079 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x33e0cd1d led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x33fa840b spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x33fe1b4d devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x33fe93a2 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x3417996c cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x343a9658 iomap_readahead +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 0x34516bf2 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x3457e96e dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x34662bfe spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x34724e84 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x347818a2 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x347cd6c0 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x34809834 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x34898ed6 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34b2a559 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x34bd9d76 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x34bddae2 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x34c0b17e kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x34c1ef56 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x34c5ea42 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x34dd24e9 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x34f4b635 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x34f76cc2 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x3507b46e regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x350859fe pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x350dea10 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x3511577d crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x354535fc rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x35530107 icmp_build_probe +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 0x356e1671 mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x357041e9 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x35a06769 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x35a473d1 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider +EXPORT_SYMBOL_GPL vmlinux 0x35a55754 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x35ab8936 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x35c3f944 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35d9cdff of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x35db2b52 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x35ee589c trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x35f2de29 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x3606dba1 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36169233 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x362311ad extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x363da9bf vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x3643c440 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x365e73f2 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x365ef149 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x3666d459 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x3676e8c1 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x36832bf8 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a9f362 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x36c39fef wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x36c581db usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x36c9ff77 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x36cd1c1d devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x36d92bc7 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x36dcdd83 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x36ed82b2 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x36f21ed5 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x36f8fe14 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x37129134 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x371ebd86 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x37368f5a crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x374f4d6a devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x375fba99 usb_add_hcd +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 0x37816a88 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset +EXPORT_SYMBOL_GPL vmlinux 0x3790d54a pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x3798f9db dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37c141c7 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x37c8aeaa fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x37d5a13b devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x37e4673c watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x37f1794c task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x37fbcba3 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x38200a46 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x382e9b29 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x382f2a05 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x384f1f88 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x3856e637 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x3868194e subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x3876f0ae io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x38877a49 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x38905ea5 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38a0a627 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38c45108 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x38c8d283 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x38d5977d dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e2c53c __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38e6d090 devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x38eb6d23 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x38f04c20 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL vmlinux 0x38f43a2d extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x390f017f of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x3929bd19 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3932991f crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x3950104c crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x3956567e tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x395a6aab zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x39685973 udp_tun_rx_dst +EXPORT_SYMBOL_GPL vmlinux 0x396ffade tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x397296eb genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x39850cb6 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x3986e345 usb_for_each_port +EXPORT_SYMBOL_GPL vmlinux 0x39895c18 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x39992e63 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39af0065 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39cf562b pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x39d4112c acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39fc692f rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x3a0636ec dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x3a08746c bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x3a089997 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a0ab4df bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x3a0e8563 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x3a228287 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x3a22e26a tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a5093fc ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a8b89b9 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x3a98bb0f gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3a9ec99b mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x3ab43b94 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x3ab4f828 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x3abfc929 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3ac54368 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x3ace4754 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x3af0cb4d of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x3afbf298 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x3b29213f fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b5173ce acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b647754 nvme_wait_freeze +EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x3b87aebe spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3ba2c341 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x3bc934aa crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x3be18174 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x3be9a917 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bfa3e02 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x3bfac250 meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x3c08d5bb rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x3c0a3610 pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c0efddc serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x3c0fed8d of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq +EXPORT_SYMBOL_GPL vmlinux 0x3c16aeb3 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c21fee1 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c46f176 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x3c5616ed crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c64479b debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c6958c7 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x3c7255f0 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8570 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x3c7f48d0 dpbp_close +EXPORT_SYMBOL_GPL vmlinux 0x3c92dddb ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x3c9df844 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x3c9e3f4d __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x3ca0e474 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3cba65bb xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x3cc372de irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x3ccc9e02 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x3ccccc23 unix_inq_len +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 0x3cdec457 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x3cfab644 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3d05b784 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x3d127cfd fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0x3d12e31e genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x3d13cfd6 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x3d1bbd7e crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3eb2d5 bgmac_enet_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3d4f94a4 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d624d5a fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d9449bc ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x3d9d2f5c thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3daae050 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x3dbe9c26 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x3ddeeeb9 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df05f57 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x3df3f171 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x3e0213b7 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x3e09eb55 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x3e2f3b12 fsl_mc_bus_dpbp_type +EXPORT_SYMBOL_GPL vmlinux 0x3e3e58b6 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x3e48713e devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3e4c7ab3 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3e575b37 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e73e9f0 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x3e7e7f22 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x3e90a34c srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x3e9210c8 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x3e946a00 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ead9970 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x3eba1a9f rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x3ec246ac skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x3ec904c5 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x3ecbce4e find_iova +EXPORT_SYMBOL_GPL vmlinux 0x3eed1f98 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x3eedf0e3 put_device +EXPORT_SYMBOL_GPL vmlinux 0x3eeff427 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef47577 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3f103e54 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x3f19efd9 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL vmlinux 0x3f1be551 fsl_mc_bus_dpdmai_type +EXPORT_SYMBOL_GPL vmlinux 0x3f2c4d43 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x3f2c4ec6 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3f3bd6d8 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x3f3dc105 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x3f3e47ab __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x3f3fe361 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f54dac1 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3f574090 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x3f586d19 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3f65ccff acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x3f6d8774 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x3f77abc6 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x3f7a0c71 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3f7d7d96 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x3f83f8d3 rcu_bind_current_to_nocb +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3f93e310 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x3f963894 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x3f97750c ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x3f9a3a68 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x3f9f30a1 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x3fa11f4c ti_sci_inta_msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x3fa1ae30 blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fb7395c cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x3fdff032 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fe7b330 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3ff53537 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x401078bf blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x401a841c vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x402d5843 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x4039e150 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x4050b8e2 md_start +EXPORT_SYMBOL_GPL vmlinux 0x40513891 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x40612697 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x4066e7f9 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x407a3cdd nvme_kill_queues +EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x40881002 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40af3a8a inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x40b4a201 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x40b61e78 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x40ca3c53 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x40cb273a debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x40d349b6 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x40d68d6f regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x40e088fe __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x40e0ba52 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f57507 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped +EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x40fccf8a fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x40fe0a64 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x4110cb5d ping_err +EXPORT_SYMBOL_GPL vmlinux 0x411ada0d pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x41209602 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature +EXPORT_SYMBOL_GPL vmlinux 0x4129f27b do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x413fcbce skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x4149cb79 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x414aa117 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x414ce097 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x4156fff8 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x4176e558 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x417942b8 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4181d55e bgmac_enet_remove +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41a02b80 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41be12c8 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x41c2aed2 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x41cc86ff usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x41d31c78 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL vmlinux 0x41d78190 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x41da0797 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x41db68fd crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x41e7c42e of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x42030dc6 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x421bc848 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x4226c80a is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x423cb62e fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x42405770 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x4252832d devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x425435d8 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x425bb25b mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x4269a3c9 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4292923c devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x42b29043 mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0x42b416f3 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x42cb1311 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x42d0f7c7 acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0x42debf28 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42f5f348 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x4303e708 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x4312316a switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x432d4404 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43513e88 __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x4361071c kill_device +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x43782ebd nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x437bf54b efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4381b1a6 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x4389037a dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x439e10a9 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x43a39c1b fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43c34db1 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x43ea65fb debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x43eea1aa pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x43f2e90f unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x43f4ce4a dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f6d35b gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f91203 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43fa4f12 dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x44030b96 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x441048cf __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x441284e7 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x443cde9b bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x443eaf1b handle_irq_desc +EXPORT_SYMBOL_GPL vmlinux 0x4441381e page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x444be508 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x444d7529 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x44680809 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448fad6c regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x44953b90 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x4498b7d5 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x44a6f464 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x44a90fa6 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x44ad85cc pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x44b32012 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x44b96c4d regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44ce7db4 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44d06756 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x44d25930 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x44e528e8 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x44e6f00b __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x44e90ce7 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x44f76c23 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x44fba229 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450c2ddf clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x4517287c sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0x451c3e58 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x4527c70c start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x45555469 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x455875f3 dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45818599 nvme_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x4583f794 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x45864cdd devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x45890d14 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x459c3c25 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45a54627 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x45ade296 pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x45aea6bc fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x45b79b0a ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x45c13e55 rockchip_register_softrst +EXPORT_SYMBOL_GPL vmlinux 0x45c94b24 iommu_aux_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x45cb98f1 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x45cdeb95 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x45dc7557 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x45eee67b wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x45fc1629 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x46037792 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x4614961a ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x4615b7b8 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x46353b7c devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x4636fa50 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x463765ee ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4639bcda acpi_nfit_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x463d5f69 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x463d72c6 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x46535379 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x466254d8 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x4674ee13 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x467998e5 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x467e6991 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x4684a8d5 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x46870715 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46d21160 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x46de0e7c devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x46e31681 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x47165e97 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4724403c pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x472d27d4 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x47482140 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x47547770 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x475c82a8 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476f42d3 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x47856fff __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x4785d6d7 devm_pci_epc_destroy +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 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a58cd7 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b3bab5 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x47b8f669 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x47c36fbf skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x47c691a7 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e81a8c security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x47e954c3 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x480c0074 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x481493e9 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x481b9502 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x483ca464 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x484fc222 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x4855bac4 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x4879b7ed clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x487c511e nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x487ef5df dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x48937ace dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0x489e0e8d edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a7f5aa meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48c99c6b devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x48d7c3b4 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x48d9af80 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x48deb080 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0x48f6f981 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x4907c557 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x490f5928 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x492a0da6 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x493977da do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x493c0fc1 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x494b9a4e fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x494f7d0e switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x495b60de spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x495ee3e9 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x496cdfd9 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x497ab0c1 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x498d75cd blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4993e08d tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x49940e33 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x4994a12b pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x4999879e syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x499bbf57 nfit_get_smbios_id +EXPORT_SYMBOL_GPL vmlinux 0x49c5ca87 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d98e9a akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x49e88ecc regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f73079 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a31f85a cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x4a34c013 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a48c359 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x4a5713cb pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x4a6a9d5e bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x4a751d4a relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x4a771ea1 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x4a8d0608 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x4a9fcad2 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x4abd6c31 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x4ac1e3dc acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x4ace5bee ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x4ad8597c devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x4b0cd65c fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x4b188c3c devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x4b2210b8 vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL vmlinux 0x4b3ba866 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x4b410a48 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b591a8d devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b5b38ad phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x4b680477 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x4b716e4d devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x4b90659c inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x4b993429 fsl_mc_bus_dpsw_type +EXPORT_SYMBOL_GPL vmlinux 0x4ba6b26f crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x4ba7012a led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x4bb2d835 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x4bc31fa0 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4bc5cb2d __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4c0dc7d5 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL vmlinux 0x4c1d8976 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4c2e6d1a dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x4c4d1182 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c65c772 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c726f67 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4ca5e797 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cb8b17f __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x4cb9ecdb mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4cbf8032 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x4cc24102 devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0x4cc511b3 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x4cc719e5 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x4ccb8e01 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x4cd0faff vmbus_next_request_id +EXPORT_SYMBOL_GPL vmlinux 0x4cd532fd perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x4cdded68 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4cecd64a led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x4cf26b2d init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0b752f alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x4d0e8acd gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4d21aa67 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x4d29ce26 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x4d39a488 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d5beb66 of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d7c9a2d skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x4d81f84f clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x4d8c2e99 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x4d8cfab0 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x4d938d69 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x4da1f4a7 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x4dae03bd gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x4db79fbb devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x4dc97936 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x4dd5c9a2 acpi_irq_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x4dd5d147 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x4dd7607c pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4ddb2740 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4deec99f virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x4dff03eb skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x4dff996a bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x4e09b821 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x4e0b428d fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x4e0c8ce3 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e284235 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x4e322df7 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x4e375d0d subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x4e37f196 qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e455401 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e5c3d0e vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x4e61a57d raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x4e723302 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4e78a164 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x4e8cdc7c reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x4e949e10 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x4e950a80 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x4e9a1c21 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x4e9f8482 iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4eb67490 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x4eb844f4 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x4ebf6331 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ed72c3c irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x4ee6d560 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f080a05 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x4f256189 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f35cb0f aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x4f3bc939 devm_gpio_request_one +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 0x4f84abfc dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x4f989ead devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fa6e1b1 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x4fab0896 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x4fbdb0c5 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fdd12d4 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x4fdf6324 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x4fe1c29f __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff6c62f scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x4ffa217a rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5005699c __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x50328661 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL vmlinux 0x505043dd find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x505f660d platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x5063124b iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x5083bd4c class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x5099fb0b hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50a6c6f9 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x50a775ab __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x50b10895 clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property +EXPORT_SYMBOL_GPL vmlinux 0x50c61940 __context_tracking_exit +EXPORT_SYMBOL_GPL vmlinux 0x50d396b2 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e3e389 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51203980 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x51466167 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x5147ae01 fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0x514d20b7 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x5157084c devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5160e2d6 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x51612796 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x5176b5d5 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x5176b918 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x517a1289 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x51aa598b ping_close +EXPORT_SYMBOL_GPL vmlinux 0x51ab6c7f bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x51ab7733 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x51c01dd5 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51daf739 nvme_cancel_tagset +EXPORT_SYMBOL_GPL vmlinux 0x51e9ba4d setfl +EXPORT_SYMBOL_GPL vmlinux 0x51f45f40 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x51f51823 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x51f88516 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x51faba90 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x51fb4675 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x52003441 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x520b7a51 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x520da5d0 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x5211a3e5 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x5220de78 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x5222cda3 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x522a65af pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x523643c1 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x5245ca38 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x52482cb0 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x525461e6 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x52652c0a ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x52669507 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x526ddc3a generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x526fe1aa regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52c9a7de tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x52cbd773 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52d6de46 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x52dd8650 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x52e312fb pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x52ed6a45 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x52f5c81a crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x52fcf9ea device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x532d84c3 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x533e2b20 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x534e3268 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x5354321c input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x535dc2dd dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x53628f6e iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x5363a28a nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x53664ef4 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x5368a425 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x5369c57b vmbus_open +EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x537503a8 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL vmlinux 0x53847b40 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x538a5a9d ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x539062a0 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x53ad3120 mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x53b4d332 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53dd2cbb devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x53e8dbe6 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x53e94854 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x54333d55 security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x5433d522 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x54386819 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x544fe63d kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x54543808 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0x5460f79f work_on_cpu_safe_key +EXPORT_SYMBOL_GPL vmlinux 0x5464a435 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x5468f878 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x54827d34 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a08bbf rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54a3f840 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54b71f04 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x54cbe9f7 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x54dccec0 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54e11c16 sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0x54f56441 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x54fcbaef __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x550ca8ff gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x552186ea devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5528543b vmap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55477847 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x555cef01 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x556cb677 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55743deb exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5593b1d1 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x55b2c4dd of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x55c0beac bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x55c339cd mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node +EXPORT_SYMBOL_GPL vmlinux 0x55e0dfac hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x55e5db3a nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f0aae0 ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0x55f4b580 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x55faf803 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x56006715 rockchip_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x560c68fb uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x56205e25 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562c32cf fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564244b3 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x564ca004 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x5651a215 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x565fd2ab rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x5660b2f8 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x5661400e class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x566d7913 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x5674b252 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x5676eb0e setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL vmlinux 0x56889000 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x569c7fcb devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x56a9f78a dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x56ae3234 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x56c4dd3b devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x56c4ef79 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x56d5752b inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x56d61dce context_tracking_enter +EXPORT_SYMBOL_GPL vmlinux 0x56dc4ba2 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x56e37422 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56ec650c usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x571dbf0d acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x57281557 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x573ecec9 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x57612809 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x576fb6e8 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x57788b1b regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x57793604 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579922c5 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57afebfa dprc_open +EXPORT_SYMBOL_GPL vmlinux 0x57b84d12 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x57bbbe44 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x57d2803a tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57e62b20 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x57efc0db devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x580858d5 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x583401a8 __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x58363723 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x58575853 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x585bac59 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5876e175 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587a3f9e dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x587e264a bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x587f1de1 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x588c6ad1 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58a03ddb dprc_setup +EXPORT_SYMBOL_GPL vmlinux 0x58b09ca8 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x58c70fed regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x58ca1a9b mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x58cdb3a8 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58d395e5 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x58db67a7 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58eca388 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x59152f12 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x591bf902 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x59242901 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x5924b143 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x592dac71 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x592fa913 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x5944be06 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x5954b1c0 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x598cddc5 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x59960026 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x599dcc24 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x599ef464 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x59a59594 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59bcc76f regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59cd0d1c xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x59d3547b of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x59dd37dc fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv +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 0x5a3202fd devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x5a419dad thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a8cb82b switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x5a98b763 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x5a9df59d amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5aa6b307 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ac56355 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x5ac76874 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x5ae549e0 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL vmlinux 0x5afa9c39 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x5b04a77c pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b2338c8 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x5b27ae0d ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x5b2855ac fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x5b36a59b xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x5b3a92c3 k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x5b5ecfcf wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b71da1c devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x5b74c362 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x5b9f9a4e __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x5bb35cb3 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x5bb9ea16 ip_tunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bc57a3f irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bc9914a pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd347bd __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x5bd549ba ip_tunnel_init +EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bf36cb6 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x5c08fe14 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x5c0a19b9 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c0ee82d pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x5c1856a3 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x5c1b8b4e pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec +EXPORT_SYMBOL_GPL vmlinux 0x5c3997b6 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c3dd6e6 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x5c4fa2a7 split_page +EXPORT_SYMBOL_GPL vmlinux 0x5c50f941 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x5c5d7513 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x5c60fc3d ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x5c63fbcf clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x5c71a543 gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c895c9e __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x5c8f9336 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x5c9e38af sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5cad0ebf nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cc0f3be percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x5cd63054 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x5cdc4459 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x5ce12a5f pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x5ce61c49 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cf88dc5 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x5cfa5ee9 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d29157e sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d3b7924 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x5d3efe81 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x5d48ae67 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x5d4a35f3 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x5d561f73 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x5d5bf0a8 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x5d70aa4c fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x5d73220d balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x5d769b15 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x5d79254a fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x5d7d1916 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d938375 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x5d964686 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x5da1cde4 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da990b7 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x5dc9eea9 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5dd52587 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push +EXPORT_SYMBOL_GPL vmlinux 0x5de58fb6 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x5e033238 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e1f59e4 acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x5e24d448 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x5e2a6797 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x5e333545 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e674e6a iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x5e686b0a ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size +EXPORT_SYMBOL_GPL vmlinux 0x5e77346e phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e820296 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e9299e0 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x5e9ae49f device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5e9c7125 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x5ea9ad20 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x5ec54941 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource +EXPORT_SYMBOL_GPL vmlinux 0x5ed99605 rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0x5ee194f8 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x5f122c7a platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x5f180229 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x5f1a6aa4 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f6a0929 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f725463 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x5f80ee0d devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5f81d823 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x5f86b76e pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x5f94b830 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x5f9a49be genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x5fa2a43c __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fb43ebb of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL vmlinux 0x5fbec40e devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5fcb9f39 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x5fcddf1c usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x5fd815cc crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x5fda58a4 of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fdac69e blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x5fec4ae5 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x601eef32 nvme_enable_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x602248aa usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x6026e2dc mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x6030e5ca da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x603a4309 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x60412500 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6048928c gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x604c42aa bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size +EXPORT_SYMBOL_GPL vmlinux 0x606ce030 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x607550a8 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x6088130c fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x6088fc4b elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x609544a6 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60a96c02 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x60ae89ef devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60b7bd00 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x60df8f02 component_add +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f93222 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x60fd5629 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x610b04d7 dprc_reset_container +EXPORT_SYMBOL_GPL vmlinux 0x61103b28 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x6110836a thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x612516a8 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x612e0b88 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x613b60cc pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x613fe212 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x6159f6ae phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x616afce2 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL vmlinux 0x61732325 acpi_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x6175a77a alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +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 0x61a9c72b genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x61a9ed69 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61c8846d gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x61cbd399 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x61e7f517 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x61e835c8 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x61f07b59 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x62035b3f devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x62178af3 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x62202d8f regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x6225d663 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x624a5675 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x626a5845 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x6281a158 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x6285e9d6 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x628711ed xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x628d9277 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x6296f658 usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x629dee88 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x62a9a2ea tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62c3ece8 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x62e4b300 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x630acb46 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6312b436 fsl_mc_bus_dpaiop_type +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 0x6329a264 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x633a79d5 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x6366cee2 timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0x636dfd7a vmbus_connect_ring +EXPORT_SYMBOL_GPL vmlinux 0x6373ba6a fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x637dc7c9 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x6387fe79 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x639a6c70 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x639f8bfd skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x63b6cfef __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63cff102 copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0x63db9364 arm64_mm_context_put +EXPORT_SYMBOL_GPL vmlinux 0x63e64ebe vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x63e7d451 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f10ec8 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x6400b883 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable +EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate +EXPORT_SYMBOL_GPL vmlinux 0x645074af devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x64515b60 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x646df133 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x646e5c6a irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6488ddbb genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x6494f1e5 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x649818d4 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64aa5a4e crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL vmlinux 0x64b71173 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x64c6b2b0 devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x64d1cac4 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load +EXPORT_SYMBOL_GPL vmlinux 0x64da98ba __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64e62686 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f5e52d fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x65048a43 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x6508b38a usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x650ae0e0 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x650e3f4b pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x6512445e ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x65187db3 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6519b749 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x6538e44f usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x653e6c82 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x655e4879 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x655fb871 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x65900461 fsl_mc_bus_dpmac_type +EXPORT_SYMBOL_GPL vmlinux 0x65a1afc7 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x65aa9f22 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x65b7b8a4 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cdfc47 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x65d4323d dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x65dd5ead clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache +EXPORT_SYMBOL_GPL vmlinux 0x65ea5f02 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x65f0d198 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x65f14b05 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x65f5136d power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x65fb0381 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x660341ef thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x6604e26c __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x660a5706 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6622a4c2 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x6627e7df __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6637f6f4 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x663f176b devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x6644972d generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x66639319 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0x66806c8d pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66b12f39 rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x66b2a432 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bd565f mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66f2e69f mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x67179d02 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x67284914 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x672f053b __traceiter_xdp_bulk_tx +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 0x674e657e hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL vmlinux 0x674fe0ab xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free +EXPORT_SYMBOL_GPL vmlinux 0x677b3015 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x679219e2 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x67933fba vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a2263a regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x67a43cf9 vmbus_request_addr_match +EXPORT_SYMBOL_GPL vmlinux 0x67a81116 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x67b06d3f xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x67b29ac2 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x67c48172 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x67c709e2 bgmac_alloc +EXPORT_SYMBOL_GPL vmlinux 0x67d13600 fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67db3a91 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x67dbe52e led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x6803e323 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x6807918b devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x680d4d3b power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x683edac9 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0x68545c71 iommu_aux_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x68549704 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x68596a78 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x68705269 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x6878b491 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x68817742 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x68915792 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x689a8357 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x68b6ac20 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x68b86b84 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x68b99f65 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x68b9e41e crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x68ba061f mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x68e2a0d4 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL vmlinux 0x68e7ff1c bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x68e80369 intel_pmic_install_opregion_handler +EXPORT_SYMBOL_GPL vmlinux 0x6901eb29 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x69163739 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x69291c83 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x694ba8a5 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6960c39f blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x696c85a1 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x696caa6f __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x697bfe2b rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6987e6ed pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x69b1010f hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69ba6ece pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x69be7536 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d09038 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69e85dec kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a269a8e vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x6a2a4d2d kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x6a3b4723 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x6a3e8a16 vp_modern_map_vq_notify +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 0x6a5f3321 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x6a69078b dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x6a6bd6a7 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a87af80 fsl_mc_get_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function +EXPORT_SYMBOL_GPL vmlinux 0x6a95e0b3 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x6aad0659 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x6ab78909 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x6ac78d56 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x6ad39bcd pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x6ae848cd kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x6aed224b nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x6b0570c5 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x6b06e60b sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6b08f7bb irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x6b160722 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b1cb8d1 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x6b205b27 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b2f8c7f blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b3e686c __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b4266bf crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6b47fe6f bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x6b4d202f spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x6b57827e nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x6b73a1cc devm_kstrdup_const +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 0x6b9676d2 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6bbd93e2 divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bd0a31e crypto_skcipher_decrypt +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 0x6be4ec7b dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x6be549d8 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x6bf6f6cf devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x6bf7a5b1 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x6c0f47a6 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c2ca26f raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x6c368129 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6c371d66 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c38f658 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c404ba9 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c6f6e59 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x6c7eea28 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x6c80e824 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x6c89787e fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x6c8b7f09 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6c959c2c pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x6c9658eb meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x6cc0c392 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x6ccc90d5 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x6cdef9ac nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6ce29801 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x6ce5b288 fwnode_graph_get_next_endpoint +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 0x6d1487ea irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6d185119 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d2fda4f virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x6d3d8fae to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x6d41282b synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x6d440773 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit +EXPORT_SYMBOL_GPL vmlinux 0x6d579d92 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x6d5c142d iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x6d5d1abc fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d62227e serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x6d65574a rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x6d6c383a key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x6d6d2074 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x6d6ead37 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7d7b62 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d91cac9 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x6da5e72c strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dbaeafc perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x6dc239b7 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x6dd492aa devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6de2e377 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x6de5ddf9 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x6dead75f tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x6def6b70 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x6e06ec45 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e1c770f cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6e38b3dd gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e441e30 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable +EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free +EXPORT_SYMBOL_GPL vmlinux 0x6e50af68 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x6e51fe43 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e63e83f trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x6e74f7d7 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e81aa55 msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8dfc15 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x6e99007c vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x6e9e578e kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0x6eba7bc7 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec2e833 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x6ece3d58 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x6edb915a __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6eef0872 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x6ef0855c ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6ef42c9f ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f026f08 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x6f03ddbf ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x6f0b9e0e securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x6f0ee1ba sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f50f1b1 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x6f55572f device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x6f6752a4 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x6f775ef2 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x6f7db0f4 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f847c82 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f8d590b kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x6f9165f2 is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x6f95bb84 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x6f9781ec of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fb82c9a irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x6fb9e97b iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x6fc93494 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6fff21b4 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x7024b258 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x7030f633 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x70342342 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x7039c48a devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x7042b6de fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x7044a518 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7055c56e __sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x70597a5a debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x707b1fdc regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7084edfb bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x70856f5e __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x7085bf4e hv_pkt_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x708b12f6 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x708cd375 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x70a5a36a __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6cc79 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d0c568 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x70e2faee of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x70fadad9 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x710a9418 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x710f350b gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x712bf9ef scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x712e904b pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x71420a6e check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x714f459c ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x715d17dc __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x715dddff raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7169f675 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x717b9c59 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x717f357f xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7183854f fsl_mc_bus_dpmcp_type +EXPORT_SYMBOL_GPL vmlinux 0x718e2de8 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x719849af devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71a43944 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x71a90b04 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire +EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71bba5c0 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x71c19162 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x71d98109 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x721c6d0b extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x723ab9e9 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x724e1b86 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x725f3b26 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x72608636 nvme_reset_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x7274f54b to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727aaabe pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x728c5bb6 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x72f1a320 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x72f5eb17 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x73037cf9 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x73063de8 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL vmlinux 0x73242dcd cpu_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x73270754 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7355b15d __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x735c7e73 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x735f98a9 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x737e7d30 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x738deac4 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x73933039 fsl_mc_bus_dpdcei_type +EXPORT_SYMBOL_GPL vmlinux 0x73964411 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c64b49 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73e90da6 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x73f6a3c9 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x74193557 dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x7419f9a9 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x741c4b58 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x742a3b47 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x7435a323 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743cdcde regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x7446186c md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x744d24f3 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x7479d9dd of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x749cd362 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x749de225 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x74a0b0c0 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x74a6b31b phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b623be vxlan_fdb_replay +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c34ab3 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74f82f79 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x74fbda8a add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x75189fb8 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7540b2b5 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x7540eda3 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x75473a39 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x754cd25b crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7555f077 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x756e1d17 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x758a43fe k3_ringacc_get_ring_irq_num +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x75b64bae of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x75bce807 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x75d7e9c2 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x75da5ea8 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x75dae835 dma_buf_pin +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75e13200 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x75e84916 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75ea5217 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x75ef6e3c devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x75f67478 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x761a7225 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x761c78fb em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x762e851a pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x7640fd62 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x764e5c4a acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x7653fd75 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x76668a6a devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x767f2e7f device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x76803616 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x76818954 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x768a6b0f pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x7695dc41 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x769a0d97 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x769b52d1 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x769f728c modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x76a2d659 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x76a5a14d devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x76b6a7ea device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x76b9d97d nvme_sync_io_queues +EXPORT_SYMBOL_GPL vmlinux 0x76c42a0e devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x76cbcddd pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x76ced955 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x76d37c02 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e845c7 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76fd216b ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7702ba3e mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x770975e0 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x770c29be page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x770cf58a of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x771417d2 is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x771ef384 usb_driver_set_configuration +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 0x773e13c2 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x7747b9f4 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x774dcd48 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x775009fe get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x777d1293 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x7782cf9b gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x7785840a pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x778675ab ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x779041a3 ip_tunnel_setup +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b57e06 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x77c5f0e0 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x77cd192c iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x77d1755f ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x77d3afbe devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x77dbe276 amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x77e4d66b led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77f35ae6 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x77f3e391 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x780a3082 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x78156315 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x782b8d42 mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0x78308f88 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x784be198 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x784c133a kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x785a4867 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786008d3 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7862bcd4 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7871b3f9 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x7873c468 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7887efdc pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x78929894 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x789fcc20 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x78a47e6d cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x78bde430 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x78d45a2c devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78e54770 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x78f754eb mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x78fe99ad __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x78fed77b regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x791e9540 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x79286391 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x79345cb9 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x7934aa08 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7936d286 pci_create_slot +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 0x79480db6 tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x794f8c8e blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x79554dee debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7965cd89 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x79772eba gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x7983a0d2 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x799574ad get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x7995a096 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x79971923 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x7999ea37 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x799bfd4e led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x79bc3335 devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e99899 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x79eadf55 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x79fbe3bd iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x79ffac9e trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x7a215bba regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x7a375efc pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x7a474185 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7a4cd89b inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7a501551 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x7a5284d6 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x7a53597d iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x7a67b048 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a74988d iommu_unmap_fast +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 0x7aa67dde pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x7aac59b6 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x7ac0aefd serial8250_request_dma +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 0x7ad0434c unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ad2c64c k3_udma_glue_release_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7b09062a ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x7b1562e3 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b1ea5c2 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x7b37cb2a extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b5b7b0a pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b725118 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x7b84cf0a devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x7b943b69 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b9a0e25 device_move +EXPORT_SYMBOL_GPL vmlinux 0x7b9d390f tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x7bb03279 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bbe67ca ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7bd02cc2 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x7be372e1 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x7be4ba5c kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x7bec81a4 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x7c0d454b kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0x7c274d24 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c3165de crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x7c3b2bc8 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c3e736a rcu_nocb_cpu_offload +EXPORT_SYMBOL_GPL vmlinux 0x7c429590 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x7c469dca icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x7c540d5d pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c626556 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7c6b3815 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x7c85e267 regulator_get_drvdata +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 0x7ca64a0b __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7caa5585 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x7cac0a73 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x7cacfcd8 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x7cafe7fe dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cc9e4ee phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd3810c eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x7cd67f3f proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf4da32 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d074364 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d3ad00f vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL vmlinux 0x7d3d6957 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x7d3fd1b0 ip_tunnel_dellink +EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release +EXPORT_SYMBOL_GPL vmlinux 0x7d48de2a ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x7d491683 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x7d511bd5 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7d536de0 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x7d537a2e bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5d4383 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x7d6ce814 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7d7b4ca7 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x7d9121fb tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0x7da358d1 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x7da3b8eb unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7dabbfb8 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x7dbed9dc stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x7dc05ffc blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de3ddda __udp_gso_segment +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 0x7de8220e scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x7dec7944 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x7df8c121 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x7dfc23ed fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x7e0e4e13 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x7e128def acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x7e181b3c devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e1a55dc __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL vmlinux 0x7e1ff100 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7e20ee4c __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x7e2c5033 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e3ba9c9 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e4a6d1d hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x7e53f5cb usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e7430b6 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x7e7628c6 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x7e7a2e18 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7e95471f device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x7e9579d3 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x7e9e0770 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7ead82b3 kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7eba5dec irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x7ebd9c3b device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x7ec4b3f7 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x7ecd3243 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7eee3510 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7efe8a7c l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f0410f2 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7f29d4e0 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x7f3af0f2 sprd_pinctrl_core_probe +EXPORT_SYMBOL_GPL vmlinux 0x7f4d1401 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7f61bf60 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f7660ec edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8149ea __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x7f944ed1 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x7f9a09aa nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x7fa70ed5 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x7fa8436d hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fb3a781 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x7fb4ec9b skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x7fb6f659 __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0x7fb79175 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7fd07329 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x7fd5c863 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x7fe0ef77 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x7ff10329 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement +EXPORT_SYMBOL_GPL vmlinux 0x7ffcd86a regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7ffe29bf rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x80039681 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x800f4d2b spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8010d989 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail +EXPORT_SYMBOL_GPL vmlinux 0x801577d1 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x802014d9 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x8020ae39 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical +EXPORT_SYMBOL_GPL vmlinux 0x8049f3ae cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x804cc991 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x804e8d8b gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x805701a0 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x8061ae41 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x806327ea imx_clk_hw_cpu +EXPORT_SYMBOL_GPL vmlinux 0x806dcfc7 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x8075e1ec __vmbus_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x80773f42 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x80813dc4 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x808531fb blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x808cdf68 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809b8280 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x80ae5df2 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x80b639a2 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x80c380dc tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80ca9689 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x80cc21f8 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80d9a63b raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x80e8358b ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x80eb0cd1 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x80f552e7 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x80f8c89f irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x810a9d20 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x810d7eb6 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x8118cad6 mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x811920d7 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x81192271 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x81490cfe crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x814e2386 kcpustat_field +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8163991a skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x81648f8a devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x816739df pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x816be189 mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x816fc450 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL vmlinux 0x817c9af9 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x817fb6e5 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x81833926 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x8187a429 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x819a8120 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x819d4ff9 msg_zerocopy_put_abort +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 0x81b460b9 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x81bf1cd8 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x81dd44d4 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x81de9fc2 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x820809a5 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x82087724 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x82252984 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x822d5bb0 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x82302d7b vmbus_request_addr +EXPORT_SYMBOL_GPL vmlinux 0x823b2f46 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x824ac6b9 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x8263029a __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x827aa2e9 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x827b6865 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x82972015 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8297cf04 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x82c2b567 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x82c59169 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x82c8e013 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82d93d40 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x82e467b9 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x8305747e debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x830990ea gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x83202334 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x83308446 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x833a9c67 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x8344a08a thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x834ab6fb bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x834db3b0 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x83609c89 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x836106ef devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x8363b4d8 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x83719185 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x837f3097 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x83835915 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x838590b4 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x839ccb7e ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x83cb16ea pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x83d44605 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x83e80cfb of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x83f293c5 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x8405b326 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x8417620e icc_get +EXPORT_SYMBOL_GPL vmlinux 0x841eafde of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x8427e232 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x844cb904 mtk_mutex_remove_comp +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845ad868 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x845ee286 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x84634b46 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x846f8239 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x84816cb0 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x8489027e bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x84894cff devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x8492c48c cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x849656a9 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84cbce9b bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x84cea0be mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x84dc1f28 of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x84e0d141 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x84e596a4 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8529d350 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x852f9857 nvme_wait_reset +EXPORT_SYMBOL_GPL vmlinux 0x8537f142 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x8546ee01 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x855af78f perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x856f768f devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x857b2926 mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x857cf44f nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x8591fb65 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x85bbe553 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85c7528e ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x85f20f5b devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x85f39a2b bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x85f5f977 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x86113c6b kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x86137e96 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x861f526e crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862608ba fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x864d5d70 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x86548719 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x866c3d98 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x867c0c3a nvme_cancel_request +EXPORT_SYMBOL_GPL vmlinux 0x86839cc9 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86932194 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw +EXPORT_SYMBOL_GPL vmlinux 0x86b6c936 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x86ba7633 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86d33aad regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x86d7ccaf __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x86dac08b pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86ece033 ip_tunnel_changelink +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x8701fd3e vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x8703cdbd vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x87098b91 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x870d4b56 fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0x870d8d0b devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x871b8631 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x8725d74b spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8736ffa7 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x87390b9f memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x874d8ab6 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x8759ebc3 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x875d22c2 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x8767bc3a phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x8776c4cf nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87814b3e cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x878b39f8 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x878d7d2b page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x879fc6fc bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x87bab730 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x87ce0be2 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x87d61d02 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x87debe15 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x87f8d439 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x88001b9e regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x88006703 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x8802bb0e nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x880adfe5 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x8810e36e pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x882179cd mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x8829c821 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x883cfda0 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x883d77a1 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x884e26f0 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x885b7a59 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x886008e6 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x8862365e __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x886d1d2d gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x887808a1 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x887bb115 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x888dc9ba iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88afb1bb devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x88b46fae dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ +EXPORT_SYMBOL_GPL vmlinux 0x88dffce2 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x88ea4481 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x89413d15 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x89472c7e dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x89480e0e sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89485d34 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x894d8e93 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x89529f14 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x8961bf01 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x896f8442 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x897039c1 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x8990d127 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x8995a8b9 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x899f46c5 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89b09b09 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x89cce155 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89e4e8f9 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x89f869f0 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x8a006570 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x8a1cda00 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x8a20f0e4 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a4f380d iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a5dc76f regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a8c86e6 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8abe3827 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x8ac01e36 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x8ad43ec7 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x8ad8136c security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8ada2369 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x8ae5dad6 user_update +EXPORT_SYMBOL_GPL vmlinux 0x8ae986d3 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x8ae9ade7 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x8af3beed gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x8b016c9c clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b25007a vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8b27dbe3 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x8b357e9e blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x8b47675a iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x8b52a2d9 vxlan_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x8b5f260f efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release +EXPORT_SYMBOL_GPL vmlinux 0x8b6ec67a pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8b752795 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8b8183a1 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x8b952538 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x8b9cd0ed __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8b9eeb71 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg +EXPORT_SYMBOL_GPL vmlinux 0x8ba1c450 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x8ba37cbe class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x8ba91a2f clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x8bc3b38c devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8bd5d0d2 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0x8bd79f87 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x8be60c88 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x8bf96eba dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0d3dc0 kvm_unmap_gfn +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c12794f devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x8c14f8da pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x8c405a1f usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x8c4e0387 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x8c53c646 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8c594b53 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c773f1c device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x8c7b4928 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x8c82b524 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c8cd20c blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x8c92860a bgmac_adjust_link +EXPORT_SYMBOL_GPL vmlinux 0x8ca9fc98 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable +EXPORT_SYMBOL_GPL vmlinux 0x8cb78ad5 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8cebc2bb pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x8cefe6de genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x8cf5a54c vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL vmlinux 0x8cf833df xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x8cfe7a4f devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8d0dd4e3 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x8d217957 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d2a896e usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8d2e644a ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d3fc8c5 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x8d425405 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x8d458cd6 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x8d58e34a of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d802082 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x8d856cbf verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x8d88ee64 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x8d95c542 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8d99b6c3 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8db06a3a regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x8dc242ae dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x8dc8dab4 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x8dcfa023 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8dd92833 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x8ddcb992 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8df13572 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x8e324285 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e4f64b7 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6b37be of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e75548f mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8e7ec2b6 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x8e8eb882 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e959fca phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x8e9d9e5d device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x8ea3f26b phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x8ea490cc phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x8ea4b3ed fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x8ea5de48 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8eb549f4 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x8eca7c82 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x8ed70cfd edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x8ee785b0 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8eeb6e24 bpf_trace_run4 +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 0x8effb505 phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f1f9e8d __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8f2ce70c fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x8f2e5212 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x8f2ff90f wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x8f301a68 od_register_powersave_bias_handler +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 0x8f48fd4b spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x8f8ad405 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x8f9b14b6 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x8f9b8d95 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fb9d0f3 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x8fbae80d __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fc38fa0 mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0x8fcb5246 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x8fccf028 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x8fd452af cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x8fda9537 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x8fdb6107 devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x8feb1191 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x8fefd251 d_exchange +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x9015dc62 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL vmlinux 0x9033e22f __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x904de20e ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x905423c4 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x9063f59f mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0x90654809 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x906dcf44 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x9086a0ce ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x908e7c4a tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x90993929 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL vmlinux 0x909e86e9 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x90a3e74f securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x90a51bbc vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90b19ef2 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x90b1d187 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x90b62887 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90ca68dd device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x90cb4a48 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x90dfeb6d crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x90ef321b fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x90f6f417 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x90f76e93 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x9100f4b1 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x91122c57 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x911a7935 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x911f02db synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x91256e77 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x912b5d24 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x913654c5 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x913a4def ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x913bf625 imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0x914122fc blk_ksm_destroy +EXPORT_SYMBOL_GPL vmlinux 0x91470650 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x914e82c0 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x9151aff6 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x91596761 devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x915a6fad posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x915daee6 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x91874dd9 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c7ef56 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91d08a49 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91ee140a set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x91f1b623 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x920b5d26 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x922689cf efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x92335923 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x9241fa24 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x925e4c55 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs +EXPORT_SYMBOL_GPL vmlinux 0x927aac49 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x92887686 mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x9289a42e irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x928bb617 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x928ebcd4 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x929105fd acpi_dev_get_memory_resources +EXPORT_SYMBOL_GPL vmlinux 0x92aa157b __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x92b420cf meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e2036e k3_udma_glue_request_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92eb4347 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x92f8d71a wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x92f8df98 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x93035f35 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring +EXPORT_SYMBOL_GPL vmlinux 0x930d9f3c clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x931a2870 devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x931e9660 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x931eb8f4 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x93247d93 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x93281f77 acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0x9329b47c devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x93317cf7 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x93330426 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x933de562 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x93510581 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x9360884a ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x9373ad8e inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x938c5d8b fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x938e3ada dprc_set_obj_irq +EXPORT_SYMBOL_GPL vmlinux 0x93926dfd tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x939f8b8d pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x93bf6564 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x93c22e30 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93e09501 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x94070c09 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb +EXPORT_SYMBOL_GPL vmlinux 0x941a54f4 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x94203c0e inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9431529c dev_dax_probe +EXPORT_SYMBOL_GPL vmlinux 0x9435a7dc iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x9450e76c nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x94516cc5 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x9484ca7d mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x948de812 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x94933462 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x9499c5d7 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94ba9e8f dprc_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x94be3a2d vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x94d6091b device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x94db2068 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x94dde2e9 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x94e7324f regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x94f48acb irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95379c5c __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95609b26 context_tracking_key +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x957398c3 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x958f2e90 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x95a0d518 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x95ac178a proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95bd2506 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x95c44a0d __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x95c9b814 fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0x95d147c3 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95f574a1 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x96011ab2 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x9606abbb anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x9628461d clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x963be868 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x964f92ed blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0x96541341 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96587482 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x966f8c78 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x9670b28d query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x967171fa mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0x9672da38 meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x9680514b cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9680f701 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x968aac3b srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x9694dc85 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x96998fd0 __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0x96ae9ceb tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x96dd8818 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x96dedbd5 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x96df8064 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x96e0b3fe ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x96eb3a97 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x96f20716 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x96f3d6cf cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x96fa98ab fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x97069969 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x974e1d42 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x975498d8 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9757bf20 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x97587f9c ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x97658959 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x977b5fbb add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9798b434 devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x97d23add pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x97d72c0c kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97ee4c7e ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x97ef86d9 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x980df992 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x9812743b ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98752610 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98834ed7 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x988de13b pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x98d61632 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0x98dc396d __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x98e4fda1 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x98e5dad7 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x98ec6229 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98efc261 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x99025b54 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x99122ad4 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x9917954d led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x9923920d led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x992f4eba devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x9931ebdf genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x99593721 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9968a24f skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x99690071 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x99749b65 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x997cf045 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9987f0bc shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x998f96a0 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x9993c0fe mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x999b09f8 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x999bf48a report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x999eb701 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x99a27a90 imx_pinconf_get_scu +EXPORT_SYMBOL_GPL vmlinux 0x99a2de16 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x99af6da7 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x99bce74e power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x99c26c9d dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x99c6e294 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x99cff27a of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99e5e307 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f1fe06 k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x9a0dc9ea of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a185ace tick_nohz_full_running +EXPORT_SYMBOL_GPL vmlinux 0x9a1a270b blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a296d8a scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x9a2d1c31 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9a34061c pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x9a42c001 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a6b299b bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x9a73f880 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x9a7cebf1 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9a882e23 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x9a8a4260 nd_blk_memremap_flags +EXPORT_SYMBOL_GPL vmlinux 0x9a906ab7 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9a9569c5 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x9a9d0dc6 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x9a9de1b1 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x9aadf296 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x9ab309a5 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad2b59f icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9aeb5bc5 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9af94161 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x9b01d392 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x9b0f937f regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x9b1b9e1d percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x9b32463e blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b5fbf87 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b6f1e07 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9b791291 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x9b8344d1 nvme_init_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill +EXPORT_SYMBOL_GPL vmlinux 0x9b8e7ad3 devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bb40eee usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x9bc6f740 fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0x9bc8980f pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9bcb27ab uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x9bccf956 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x9bce3ba2 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9bdac6da cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x9bdc2da9 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x9bdcb351 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x9be132fd bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf9b364 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x9c07b16c ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9c149893 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x9c2e1d36 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x9c3e5410 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq +EXPORT_SYMBOL_GPL vmlinux 0x9c44d109 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x9c49faa5 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x9c5b63a2 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c79d258 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c83ceaf espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x9c8a2d74 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x9c8eba9b pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x9ca20946 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0x9ca9cbbb devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9cbb9816 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cccbf86 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x9cd058a4 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9ce6689a shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9d022060 nvme_try_sched_reset +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d1feb9c dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x9d275bb8 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d3021b3 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x9d5e4aa3 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x9d85e0eb cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x9d9d171b power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x9da34521 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x9db1edf6 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x9dbdb617 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x9dd24a9a genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x9ddd8703 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x9dedacdd param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x9def74d6 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x9dfa6b74 devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9dffaa8f of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e030fa5 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x9e226c2d serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x9e380688 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x9e38576f devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x9e3f1a9f __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e47a064 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x9e4ee1d4 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9e525dbb dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x9e558d7c platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x9e58ed36 irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x9e6e2336 dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x9e7244cb regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x9e733a8a gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x9e8e5ba7 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x9e8f8642 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9eeb5352 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef3f3dd balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x9efa330f platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x9f044252 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x9f0c0039 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x9f293593 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x9f2a8f54 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9f4af978 devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x9f551094 clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x9f5e679d sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x9f619852 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x9f635728 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x9f639850 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x9f780d96 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x9f7faf75 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9f98b563 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9fac00a6 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x9fad2e6f gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x9fb8e73a register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc5bbda nvme_sync_queues +EXPORT_SYMBOL_GPL vmlinux 0x9fc6f8ee ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x9fcdef5a __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fefcac0 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9ffc6d7c __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xa0042eaa usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xa00da770 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xa00fab8e pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xa011f76a nvme_get_features +EXPORT_SYMBOL_GPL vmlinux 0xa0138126 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa0394f2e pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xa04cde42 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xa073bd3d ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa08bea85 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xa0a82aaa skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xa0b937c3 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa0bd0b22 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xa0d2c80c irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d3d55d __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa0d72542 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xa107cdaf device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xa10a196a usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xa11c0c91 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xa11ee349 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xa13219b7 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa1372bdc trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa1489577 nvme_delete_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xa14a3457 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15ef401 loop_backing_file +EXPORT_SYMBOL_GPL vmlinux 0xa16086f3 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL vmlinux 0xa161ca78 meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0xa16791e5 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xa168d365 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0xa169a85d regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xa17fd28a devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0xa18ccd31 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xa18e458e blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xa1930f41 clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0xa1a943c6 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1cf4199 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xa1cf43ea devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1ea41b2 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xa1fb579f dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xa206f5a0 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xa20bf9ca devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa20ef8c2 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xa2176916 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa229f262 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa22b5c84 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xa237e555 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xa24eb853 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa25615ba ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2764683 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xa27819ae of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa27d2030 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xa281855f kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0xa2adf300 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xa2adf69e __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2b4c5e8 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xa2c1bff5 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xa2c91d88 nvme_start_queues +EXPORT_SYMBOL_GPL vmlinux 0xa2ca19fa splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xa2cfe95f vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xa2d18229 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xa2d4f620 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xa2d6546c cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xa2dfb58c regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2ec7bc8 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xa2ed0cf2 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa301800a tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa309f290 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0xa30d4be5 devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa3293bbb efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xa34bb665 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xa3625d2d pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xa36977ee tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa37ee89c lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0xa384ea84 pinmux_generic_remove_function +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 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a8a85f irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xa3a996ff blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bad817 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xa3c46c3c ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xa3ca3e96 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa3d150e9 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load +EXPORT_SYMBOL_GPL vmlinux 0xa3e3cdd9 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xa3e4f0d6 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0xa3e6578c gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f3170e regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xa3fe8264 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa405fb66 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xa40e4d4e phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa427a9f3 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xa42a0b7c edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0xa4326300 dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0xa43bd2dc ip_tunnel_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa44975c3 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa450d625 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xa4571f49 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xa472fa9f regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa483f7e7 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xa4850ef0 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa491ee86 thermal_zone_of_get_sensor_id +EXPORT_SYMBOL_GPL vmlinux 0xa4a523e2 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4aeb35a of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0xa4d5f913 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa5133ccb ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa51a62e2 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xa5222c21 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xa52e5712 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa5317e57 devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xa557eb6d addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xa561e4b3 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xa564d1bb of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa56e1a75 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xa56fa434 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xa578fdb9 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xa5802690 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5daa5b6 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f0515b mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0xa5fed19d nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0xa60e2ba2 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0xa613792a blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xa623daba acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xa6404e31 tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0xa64baa3e strp_process +EXPORT_SYMBOL_GPL vmlinux 0xa64f6873 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xa64f753b scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xa6544c8b blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xa6587aa2 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa66ae70f of_k3_ringacc_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa678d3a9 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xa693dd7d fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa69b75be icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6ab18a5 fscrypt_set_bio_crypt_ctx_bh +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 0xa6bf24a2 nvme_set_queue_count +EXPORT_SYMBOL_GPL vmlinux 0xa6c50fd8 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa6fbfc98 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xa7046f11 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa706c6cc devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa716e60a of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0xa7276537 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa771ff1c apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xa7761352 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xa7813923 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xa7856098 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xa788e0f8 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xa7979bdc uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xa79a4ff7 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xa7bc281e devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa7e00bf2 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xa7e1c56e ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xa7e4907d gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xa7eff767 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xa812b964 dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0xa8146ee0 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xa82a5558 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xa84991c5 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa858b3b2 mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0xa869b813 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0xa86bd808 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xa870a7e3 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xa873898e devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xa887db19 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xa8905cf1 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xa895f35c iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xa899c743 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xa8b59edd iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa8d09f6a scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xa8f088ae synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xa8f4ab93 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xa90d9361 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xa9295cba fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9484fcf efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xa95489c2 dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0xa954e6c8 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa955b629 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xa9685b54 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa973ecd6 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xa976adb4 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xa97bd5a7 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xa9899d96 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xa99311ae devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa99ff831 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL vmlinux 0xa9a5c8b5 strp_done +EXPORT_SYMBOL_GPL vmlinux 0xa9a5f83e md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xa9a798b5 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xa9ac89b5 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9fe38f4 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xaa3a6515 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xaa3cf121 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xaa462084 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xaa4da020 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa73f438 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xaa8b9a86 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xaaa68233 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab05070 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xaabb4900 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xaabe6c3a of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xaacff50a acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0xaafb1141 blk_ksm_intersect_modes +EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data +EXPORT_SYMBOL_GPL vmlinux 0xab07e7b5 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xab1dd23f rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab23f72e k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0xab37dc84 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xab37ee0c dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xab4fced5 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xab55591c blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare +EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd3414b relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xabd3a2d8 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xabd6af4d crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xabda08b5 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xabf4f1b5 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0xac058362 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xac0e4460 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xac109cf1 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xac37c9f9 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xac402a29 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xac45858e dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xac8dcf0b thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xac8fbb28 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacc28b98 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xacc38b8a udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xacf14952 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xacfc8f93 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xad02ecb4 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xad0eedf0 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xad200ac1 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad56f6fb dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad5d8f82 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad6930ae pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad7dca20 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad92417b trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xad94c1c4 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xad96e88d root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xad99c8c2 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadab7ada preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xadc69542 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xae099709 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae2b17ec init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae5eadf1 dev_pm_opp_detach_genpd +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 0xae66ad99 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xae67a51b phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6f575b usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae80ffa4 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xae9a7a67 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xaea552f7 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xaebc510e spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xaedb02c1 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xaef2814e kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaf07391e trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf264f16 rdev_get_id +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 0xaf434a73 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xaf53fdae mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0xaf5a21c2 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xaf73cc49 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xaf774cff ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xaf78b19b kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf8105cb fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf8fa769 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xafab3403 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xb0129bcb netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb0218def fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xb02220d0 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xb02a2213 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xb02ee049 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xb03b4f72 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xb03d231a da9052_enable_irq +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 0xb0674e5b put_pid +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07a2c9d pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xb0b25343 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c7231c pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0ec5e06 meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0xb0f75c5a ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xb109a0ed acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb10fb806 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xb116d1e6 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb143962f crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb14b62f2 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xb161f418 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xb1626f67 of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb16bef78 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xb16e4d0a nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb198c0c0 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb19ddf53 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb19f9249 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xb1ab1b99 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xb1bd17a2 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c38156 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xb1dc9146 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb215b0f6 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xb2192562 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2304cbd compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb23d0ef8 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb24886b6 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xb25c5bc1 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xb2666037 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb27d808b skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xb27fa075 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xb287da08 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0xb29439d0 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb29fd9f8 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xb2a5f218 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0xb2a87f80 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xb2acb59f phy_init +EXPORT_SYMBOL_GPL vmlinux 0xb2afff2a __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xb2b09803 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xb2b4db36 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xb2bd9db7 nvme_start_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2d96819 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2e8dd21 dm_put +EXPORT_SYMBOL_GPL vmlinux 0xb2eeff74 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb2f9b1ee reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb309fd2f blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xb318faa3 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xb31a1dee devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xb31ee501 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xb36b1df1 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xb3723cb6 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3b954cf blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xb3d1abb7 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xb3f0d9a3 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xb3f318c0 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xb3f391ca fsl_mc_bus_dpdbg_type +EXPORT_SYMBOL_GPL vmlinux 0xb3fc6950 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xb40b2f59 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request +EXPORT_SYMBOL_GPL vmlinux 0xb40fd2e8 debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xb412f9b0 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xb4146b25 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xb417bdcf dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xb423caec __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb42a78f3 usb_check_int_endpoints +EXPORT_SYMBOL_GPL vmlinux 0xb42b98f8 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xb42e8093 vtime_guest_enter +EXPORT_SYMBOL_GPL vmlinux 0xb437994b regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb440aa8d fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb449cff6 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb4597c32 meson_sm_get +EXPORT_SYMBOL_GPL vmlinux 0xb46bd389 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb4806e95 nvme_complete_async_event +EXPORT_SYMBOL_GPL vmlinux 0xb48482a0 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xb486e7cc kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xb48e6535 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xb48e9dc9 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb49578cf transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xb49b1d36 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb4a25677 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xb4ae70df device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xb4b105ab nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xb4b19455 imx8m_clk_hw_composite_flags +EXPORT_SYMBOL_GPL vmlinux 0xb4b72a40 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bd2f75 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xb4d79220 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xb4e720ae usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4ee56bb ip_tunnel_rcv +EXPORT_SYMBOL_GPL vmlinux 0xb4f33188 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xb4f58605 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xb4f7266e __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb4ff8baf xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb50421e6 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xb506b281 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xb5128d76 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xb513bbb9 vmbus_free_ring +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb5283250 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xb52d6418 iommu_sva_free_pasid +EXPORT_SYMBOL_GPL vmlinux 0xb52f4a03 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xb53fb9f2 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xb543e6fe usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xb54f392d blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xb5671bdc pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xb57a0830 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xb57f6435 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xb5812722 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0xb58cbaf5 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0xb59eed2d switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xb5a5a3ce led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg +EXPORT_SYMBOL_GPL vmlinux 0xb5d78e98 ti_sci_inta_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb5d92317 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xb5dab561 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xb5e2f71c ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0xb5e95374 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xb5e9bd87 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xb5f59fb8 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xb5fa4d16 vmbus_alloc_ring +EXPORT_SYMBOL_GPL vmlinux 0xb600ab1c elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xb6013f5b dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xb6046bea regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xb60f2bea l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xb6104e44 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xb624b566 of_find_spi_device_by_node +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6317e9a fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb642895f pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb66365d3 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xb673530b skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb6a43813 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0xb6b17e58 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6f29225 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xb6ff5ea3 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xb715c873 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xb71a5d4c dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb7394ae7 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0xb73ca4e0 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xb7421681 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xb7454927 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xb74d44c2 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xb76137e2 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xb77536cc vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 +EXPORT_SYMBOL_GPL vmlinux 0xb7838503 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb7a0bd6f rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7b7e074 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xb7dd79a3 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xb7f1f8d2 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb8023f0d devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xb804b67b led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xb81d01c3 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xb8216c28 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb82ec533 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xb8370cc7 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xb83e14a7 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xb8412625 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xb864625f tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xb8658392 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb881b1dc free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0xb886bd48 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error +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 0xb8b15c8f iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource +EXPORT_SYMBOL_GPL vmlinux 0xb8c57713 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb8c9a164 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8ddf561 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb8e88eb8 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8f68d2e bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xb90355d2 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb908bfc7 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb93a384b regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xb93a62ef led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xb93dcc21 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xb954cc53 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xb95942e0 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb95f8da1 nvme_host_path_error +EXPORT_SYMBOL_GPL vmlinux 0xb961cb3e rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb968e66e fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xb97ad539 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0xb99881bd devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xb99a3014 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xb99d4b27 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c3fcce blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9cc5f39 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d03830 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xb9d5578a ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xb9dc3041 bgmac_enet_probe +EXPORT_SYMBOL_GPL vmlinux 0xb9e20339 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0xb9e8db40 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xba1e5017 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba3473ed udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL vmlinux 0xba38131b dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0xba4421c3 hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xba6ff9f8 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xbaa84f32 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbabbe427 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xbabd6f61 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xbac91b65 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xbad023df pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xbadf5c99 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xbae08d3c usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xbae8a3d5 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbb07667b debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb16256b bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb3f69ff sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xbb4cb788 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xbb50adf4 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xbb57f04d clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xbb5f97c8 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6cb9bb __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb9d8231 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xbb9eee77 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xbbaddf04 usb_check_bulk_endpoints +EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put +EXPORT_SYMBOL_GPL vmlinux 0xbbcfac6e pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0xbc063038 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xbc084c94 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbc119897 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xbc230e32 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xbc234181 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbc240afc tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xbc2f5c07 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xbc30ae13 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc41d384 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xbc57c62d driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xbc604544 nvme_remove_namespaces +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc764008 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xbc7e9c55 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xbc99c3c4 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbca80fe1 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xbcb088cf xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0xbcb27ff8 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbcb8cdf3 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcee0595 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcfcc92a component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xbcfd7572 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xbd00efc8 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xbd062e7f ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0xbd10c65c usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0xbd1fd052 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd417c0b usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xbd4f5b24 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xbd63c2bd serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xbd6fa664 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xbd6ff207 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0xbd7124c7 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd8ad159 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xbd8ef884 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xbda813a6 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xbdb7f50a devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xbdc3599f device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xbdc8e20e clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xbddee135 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xbe013c13 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xbe069025 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xbe0c45c9 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xbe1c0550 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xbe36df5c blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xbe3c25d8 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xbe42bf3c gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xbe4349b7 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xbe4eac69 sock_prot_inuse_get +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 0xbe78d35b vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0xbe7df8c8 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe98a0c8 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea7dd8f devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xbea8cb47 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xbeb7b518 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xbeb7c8f7 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xbeb9d444 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xbec01793 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbec05f65 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xbec0996f console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xbec15579 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbece5bb6 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xbed3f3ed get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xbee74026 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0xbee8ddc7 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xbef0da89 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf17a730 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0xbf1bbd00 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xbf1f0645 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xbf3d2a86 k3_ringacc_ring_cfg +EXPORT_SYMBOL_GPL vmlinux 0xbf787138 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xbf7bd6d5 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xbf86168b __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbf90af32 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xc0064fca class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xc00971f5 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc013a928 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xc022cfba blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xc02a239f crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc035729f blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc05b8ea8 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq +EXPORT_SYMBOL_GPL vmlinux 0xc0677ddb ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xc06dc9d5 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xc0704a1d security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0xc071b39f skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xc087bb5e blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xc08ad0cb usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc08ff6fe crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc095bab4 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xc097c578 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xc09cb4f9 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xc0a3d155 k3_udma_glue_rx_get_flow_id_base +EXPORT_SYMBOL_GPL vmlinux 0xc0a8bde0 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0ba511c pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xc0d0c010 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0e29fee tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f97709 meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc117c434 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0xc1238bb9 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xc124ead3 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xc144f25c regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xc165bde8 devm_device_add_groups +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 0xc181fccc devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xc18a672b trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xc193ebb6 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0xc19a8c05 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0xc1b03751 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xc1c77e1f acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc1ea48bc usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xc1fb4b11 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xc1fc82c5 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xc20106e6 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc210d717 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xc2147490 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xc21a9732 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22d0d33 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xc231a341 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc240cbed __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xc240f2e6 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2679205 devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xc2681d56 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc286212f pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2ad1e6e fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xc2afdd43 init_srcu_struct +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 0xc2cea22e device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xc2d55962 work_on_cpu_key +EXPORT_SYMBOL_GPL vmlinux 0xc2d69ca6 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0xc2ddbf89 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2e617c5 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0xc2f58915 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xc2fe2412 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xc305a1e6 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xc30a970d sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xc31badcd acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0xc3201bc8 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0xc32f8ec3 ti_sci_inta_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3428dca usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xc34ca8b4 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xc34eb6e9 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0xc35855b8 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc3723530 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0xc3798de4 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xc379d73b ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xc37d4f0f thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp +EXPORT_SYMBOL_GPL vmlinux 0xc38b91dc devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xc3957551 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xc39d2bfb acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xc39e0a14 devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xc3a0d78f tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xc3a49464 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xc3b25e29 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3d31a61 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xc3d55ec0 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xc3d60d59 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3f323e2 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xc3f43eb4 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xc40af9f7 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xc40d8e13 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc414172f device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xc425baed tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42a43dd hv_pkt_iter_close +EXPORT_SYMBOL_GPL vmlinux 0xc432ec43 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xc434ddea fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc4505809 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xc45190a9 devm_ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xc459335f __vmbus_request_addr_match +EXPORT_SYMBOL_GPL vmlinux 0xc45ac086 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc46521b0 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xc4815c67 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xc4829f6a usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc484d603 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc49178ad inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xc499021a ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0xc49cb37d __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4bbc3e8 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0xc4bc6149 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xc4c093aa ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xc4c2a7f5 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xc4c3f87f rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0xc4d33357 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xc4d94594 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xc4de86e4 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xc4df4d00 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xc4e62fa4 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0xc4f0ca3b phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock +EXPORT_SYMBOL_GPL vmlinux 0xc52f102f crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc5596495 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc56fbfa1 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xc5754d77 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc57eafe7 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xc582fc67 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc58a5013 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xc5919ffe fsl_mc_object_free +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5a6e787 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xc5bcbeab ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xc5decf17 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xc5e7118d sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xc5ebcc51 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xc5f0fda3 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc5fca7a5 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc6040939 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6108574 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc621bb43 sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0xc622ef14 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xc630eff5 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xc636ae11 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xc64d7851 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xc65a6b9a kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xc668b3f1 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66daab2 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc6784a09 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xc68ca735 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xc68cf699 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc698a2d7 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6a50907 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xc6a82a28 tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0xc6b47d17 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xc6b782f0 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xc6c4c186 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6faff46 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xc6fed801 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xc701982c __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc706936b meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xc7077eaa pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc7118ee4 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc73a31b9 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc76f8048 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0xc779f754 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc79240ba dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7ae7bcd fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xc7af4859 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xc7b889d7 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xc7b93416 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xc7c6342a clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc7c90d62 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0xc7ccb850 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xc7d71827 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xc7d9699f sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7e6e1f9 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc8003c85 meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0xc8191c35 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xc81db456 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc8315d2f dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xc831f4e7 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xc837131b attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc83c8d13 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0xc848a16c ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc86f23bc imx_pinctrl_sc_ipc_init +EXPORT_SYMBOL_GPL vmlinux 0xc86f7c54 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc87ec807 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xc8a6a4e6 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xc8b1248f mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xc8b2e428 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xc8cb8922 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8d6cad3 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8e95260 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xc8ead85e regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc904ebc1 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc9334c58 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95bb580 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc964ac44 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xc968c0bc dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xc973f0ab driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc9825fbb dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc98381ed acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0xc985070e usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0xc9874ed1 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xc9982916 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xc99a07b4 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xc9ac4356 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xc9be2cd4 mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xc9c32640 devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0xc9ce0927 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0xc9fc98bf __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xca051e7c dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0xca1be5f9 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xca1c94ee md_run +EXPORT_SYMBOL_GPL vmlinux 0xca20790e divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xca30ee0d pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca48b9af devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xca5a7ceb ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xca603173 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xca70f765 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca7f2bce divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xca87176a iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0xca8c0657 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xca90a167 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcaaff163 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac55638 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xcaca1462 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xcae076e7 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xcaee5854 ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcaf74748 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xcb0062f9 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xcb1fa058 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xcb251d6b phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb2c34ae pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xcb2ee280 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xcb374f83 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xcb409370 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb704194 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb7c7771 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb7e2da7 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0xcb80c06b ata_ncq_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xcb9504fb perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xcba92b31 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xcba95282 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xcbb93cbc tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcbd24128 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xcbd7536a amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbf8ae26 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xcbfe1533 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head +EXPORT_SYMBOL_GPL vmlinux 0xcc1fc987 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xcc21ce89 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xcc24af5e skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xcc260d47 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xcc26a7c3 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc470430 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xcc4750d6 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xcc5d095e governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc69aac1 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcca3334b crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd80ea1 sprd_pinctrl_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccde5ba3 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xcce83ef9 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccfc140f scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xcd21918a sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0xcd21eacc crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xcd2386c1 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd3e5831 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory +EXPORT_SYMBOL_GPL vmlinux 0xcd6da0d2 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset +EXPORT_SYMBOL_GPL vmlinux 0xcd7cd6ca gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0xcd8fb5db path_noexec +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 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcd9f0ca4 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr +EXPORT_SYMBOL_GPL vmlinux 0xcdb01ce5 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0xcdb4a102 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdddf889 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcdfefe88 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xce0b80a4 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xce127e6c of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xce13f0df gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xce15220a pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xce1af5e7 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xce26909c device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xce2724a4 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xce2a4b84 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay +EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xce60414e relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce92ec0c rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xce945996 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xce96b6f3 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xce9a004a __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xce9d869b __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xceab0d7e crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs +EXPORT_SYMBOL_GPL vmlinux 0xceaf12ae debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb7645d devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xcef37f21 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xcefce90f sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xcf1866fb ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xcf33266a ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xcf38798b __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xcf432a21 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xcf4abc4c sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xcf4b9955 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xcf4bcbcc nvme_complete_rq +EXPORT_SYMBOL_GPL vmlinux 0xcf532715 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xcf541ba8 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcf5920e3 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xcf685a7b devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0xcf68fc40 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xcf7f66f9 imx_dev_clk_hw_pll14xx +EXPORT_SYMBOL_GPL vmlinux 0xcf861b3e ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xcf86e9a0 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xcf874c37 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xcf971b18 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0xcf9c53f1 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xcfaaa84d pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xcfae8ac5 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xcfbbde66 pci_cfg_access_unlock +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 0xcfe0429f pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xcff56979 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0xd0028ef8 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xd006e9c7 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xd00750ee ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xd02b693f power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xd0381274 irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0687b74 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xd074765e extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0a3c7fc __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xd0b9e549 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xd0bf03e4 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c32959 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xd0c62805 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd0ca8f35 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xd0cdc4e5 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0fc1202 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xd103a8b7 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xd1064ae3 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xd12b8cb4 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xd130fbd4 tcp_register_congestion_control +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 0xd159fda7 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd16fbf60 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd172ec5e pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0xd179bf0a usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xd17a05ca rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xd17e1fd8 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xd1832875 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0xd18a5938 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xd1956043 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0xd1996930 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xd19f9352 arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1b74ee5 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xd1ba95d3 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xd1c8a5a2 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1daeed0 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL vmlinux 0xd1f2e781 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xd1f2edac param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f3e520 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xd204b959 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xd207dc7a __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xd2156c64 dma_buf_end_cpu_access +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 0xd233fa09 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xd235c75e fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd2503f91 kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0xd25a7097 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd2640fca tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd270e977 pci_bridge_emul_conf_write +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27fae68 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0xd2852714 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xd293e287 tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xd2a4005a device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xd2b104b1 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2ca96c3 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xd2fcedfb device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd2fe860b tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xd30cda25 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xd315f725 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xd3163950 set_task_ioprio +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 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd33e3526 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xd34a0d28 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xd35d1134 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd3618895 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xd365452d mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd3808311 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0xd39d12bb serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3a55910 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xd3abbc70 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xd3b0a2b7 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xd3c755d4 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xd3e0a16a set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40fbbe2 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0xd4166735 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xd41e21b1 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0xd41e414f devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xd41e8b3d devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd420e8ec sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd43dde81 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xd4454e11 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4501d03 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd46cdb31 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xd47306f5 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd47629bb clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xd47836b0 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd4a8ec3c iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xd4b1a860 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xd4b41173 devm_reset_control_array_get +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 0xd4e41c40 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4e72672 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xd4e944db ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xd4efabda fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xd4f216fe dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xd4f26ece regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd4f42ec3 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd4f63807 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xd4f8abe1 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xd503fbb7 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xd50559c2 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xd51b613d platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd55a3806 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd566d4f2 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xd5735a6c scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xd575b57d divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop +EXPORT_SYMBOL_GPL vmlinux 0xd589688d usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL vmlinux 0xd58f0979 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xd5950f74 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5c53cbb rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xd5d17cee udp_sock_create6 +EXPORT_SYMBOL_GPL vmlinux 0xd5d97289 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xd5ed9b8d iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xd5f0b8bf spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd5f25ada iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xd5f3a026 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xd6064b59 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xd60963b6 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xd609fcae ip_tunnel_newlink +EXPORT_SYMBOL_GPL vmlinux 0xd6180719 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xd61ccf5a crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xd620fc20 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd641a761 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xd641cce4 acpi_nfit_ctl +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd671ae6e device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd673b45e rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd683a945 mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xd68420dc sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xd68c1e5d spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xd692cb80 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xd6a3b703 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xd6ba8fee __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xd6c21c60 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xd6c32cbc ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xd6c463f7 kvm_vcpu_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd6cb68db paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xd6d214d2 udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xd6e72854 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xd6f04948 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xd6fdd2e2 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd700fbf7 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xd7067b0c pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0xd706db01 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control +EXPORT_SYMBOL_GPL vmlinux 0xd7290f24 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72d17ae pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xd730ee10 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd756fd0b lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd757e7aa dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd777a03f rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xd779344c bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xd783738e ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0xd79f518b perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xd7a0ccbe crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split +EXPORT_SYMBOL_GPL vmlinux 0xd7b6c57c devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xd7b7fb80 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d22f4f kobj_sysfs_ops +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 0xd7e43c18 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xd7eb4eea ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0xd7ee6d9c transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xd7f02d50 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd7f7371b devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xd7fa33bc fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xd7fb4157 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xd80b727e __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8490636 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd84e79a5 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xd864bf60 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd870e32d sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd882a25f vmbus_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8833437 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0xd8835a9a srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xd8a9c7c3 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xd8bda178 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xd8c1a4d2 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xd8c51f16 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xd8c625f4 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xd8ca4bca of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd9078b8f fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd90fac01 fsl_mc_bus_dpcon_type +EXPORT_SYMBOL_GPL vmlinux 0xd91371cf devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xd9168336 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL vmlinux 0xd919b73e ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd91bb780 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd92c9545 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xd92dab02 tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd92f8f92 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xd965e77c dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xd9671ab9 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xd968838d acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd978480a phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xd9896f67 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0xd98b2790 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd993b0ee ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xd99a0ff4 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xd9a1a813 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xd9a64757 nvme_set_features +EXPORT_SYMBOL_GPL vmlinux 0xd9b0c831 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xd9b49211 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xd9cd1a75 dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0xd9cfa856 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9e639c0 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xd9ea4112 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xd9edec41 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda02631b pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xda034009 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda0eff86 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda4591e2 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xda53c89e acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xda5e0b02 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xda74074b ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xda78bf61 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda927d18 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa14821 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xdaa64752 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xdab0e655 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdae7f3e5 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xdaec8638 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb067024 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xdb08691e dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xdb08ba14 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xdb0dd257 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xdb18f7cc __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdb1b5d90 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xdb1e139f fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xdb4183db auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb525310 devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb5d14c9 mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb6630a9 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xdb764bf6 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0xdb84abbb irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb999249 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xdba4fbee devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xdba64941 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xdbd0fa5d led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xdbed3306 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbf87414 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xdbfb3292 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xdbfb9d7f device_del +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc055ab9 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc09804a devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xdc139c13 k3_udma_glue_tx_get_hdesc_size +EXPORT_SYMBOL_GPL vmlinux 0xdc165de9 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdc2c168f unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xdc2d6db2 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0xdc30b1ac device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xdc3c344f udp4_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 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc69610c of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xdc6f2c27 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0xdc788e16 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0xdc7bedfc devm_clk_hw_unregister +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 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca55d03 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0xdcb715db usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xdcbaea50 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd10956e xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xdd1138bd __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xdd2e6a9e xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xdd32d401 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xdd3749c1 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3a759d fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xdd42e237 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0xdd50c745 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xdd5aec62 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xdd6e97fc sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xdd784ee5 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0xdd78901a dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd848525 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xdd8d4b2b pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdda707b7 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd33b3e debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xddeaf586 acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xddf7f738 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find +EXPORT_SYMBOL_GPL vmlinux 0xde167aae sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0xde30cc3e iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xde3f62cf irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xde4f9b75 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xde62b7fd icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xde6dd9da edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde8f22ce devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xde963882 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xde9f6dae nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0xdec33e2c kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xdec37bdd nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdeffe005 of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xdf056fa4 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1c6dcd usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2a0696 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xdf2b4b94 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xdf2fdaf7 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xdf376de2 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xdf3fa5a5 mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf592466 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0xdf62ffba udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL vmlinux 0xdf78f59e xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0xdf8e8f82 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xdf9bfb49 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdfa6a263 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xdfbdf2d5 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfd9896d ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xdfe958a8 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xdff19b47 bgmac_enet_resume +EXPORT_SYMBOL_GPL vmlinux 0xdff4bfa8 mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0xdff5273e task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe00bcaa2 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe059a9dd trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe05e6ea0 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xe0719f92 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe07df83a ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xe07ecf24 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe07fdf30 bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0xe08ba333 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xe0a574e2 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xe0ad137d shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xe0ad4478 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0d05ae8 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xe0dc30a5 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xe0e2cf26 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xe1038e93 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xe104ce88 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xe10aa4bb pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe110e2c8 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xe120c657 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xe12b2627 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL vmlinux 0xe12ddcc7 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xe13d995d meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0xe142b5f5 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xe144611d devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xe147c0f4 device_add +EXPORT_SYMBOL_GPL vmlinux 0xe16e5cdd icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xe172b927 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17b5924 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xe1804bc6 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xe1a1bf36 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1ac773e tick_nohz_full_mask +EXPORT_SYMBOL_GPL vmlinux 0xe1b14e66 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xe1b32710 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx +EXPORT_SYMBOL_GPL vmlinux 0xe1d1664c cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe1d42386 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1de6d20 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe1e54bc9 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xe1f7ac66 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xe2018ca2 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xe207ec8b pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xe20f78c0 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xe22b7116 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xe22c9225 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe23d15e1 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xe2525e9f sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xe26090ba dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xe268ca8c ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xe270061f pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0xe27beed0 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xe2843db4 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xe2963f0b devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xe2a08000 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xe2a3f0f7 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xe2ac06c4 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2be7614 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xe2c0dfb2 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xe2c40474 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xe2cc7733 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2d114a6 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe31806d0 mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xe31e07d2 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xe323df8e sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xe343a1e1 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xe354636c bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xe3609f35 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe37c80d0 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe380939f rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xe38235c8 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe3922d62 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a0dab4 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3b50b59 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xe3b678bd hv_pkt_iter_first_raw +EXPORT_SYMBOL_GPL vmlinux 0xe3b909b2 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3ba9b9c blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3d1273d bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xe3f34293 scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe3f4be99 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0xe3f75aca firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe41afaa1 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe432f0df ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xe44406a0 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xe455e79c bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0xe45daf31 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xe46892fd usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xe47b791c phy_configure +EXPORT_SYMBOL_GPL vmlinux 0xe485c5e6 __acpi_nfit_notify +EXPORT_SYMBOL_GPL vmlinux 0xe48ac421 file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0xe48b6b91 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xe4918bdd crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49df7d8 driver_remove_file +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 0xe4db17b9 nvme_stop_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4f591e5 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xe4fc7fea tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xe51a8bb5 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xe55d14b6 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xe567cbf3 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5885173 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xe58b2465 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0xe5901624 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xe599662d crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xe5a3aa27 dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0xe5a5e8fd skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize +EXPORT_SYMBOL_GPL vmlinux 0xe5b06eb6 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xe5cd52f0 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xe5d0164f acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0xe5f73406 hyperv_write_cfg_blk +EXPORT_SYMBOL_GPL vmlinux 0xe5faa999 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xe5ffecc9 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe606e21f __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe613cfaa relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xe6172b62 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xe61c9496 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe62b2c4b devres_add +EXPORT_SYMBOL_GPL vmlinux 0xe64160e7 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe6427424 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0xe649c019 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe64e4f0c extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xe6507c12 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xe6586e8c spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xe65b9ba7 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xe65e9454 iomap_readpage +EXPORT_SYMBOL_GPL vmlinux 0xe67a76e4 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xe68982b6 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xe6b0bd6f skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xe6c6ecfc dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe6c803db dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xe6e07b5b pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id +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 0xe6f8cdb2 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe702d1ec badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xe704f100 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xe707edf0 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xe70b58b8 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xe7301ab3 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xe7433b07 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xe7488195 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe75dcfc4 hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0xe766d479 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76ad61b hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe788898a cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xe78b9b7f security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xe791df1f rcu_nocb_cpu_deoffload +EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate +EXPORT_SYMBOL_GPL vmlinux 0xe79e43d0 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xe7a5a24a skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xe7ad9b3a usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xe7b2d07e pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xe7b5de77 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xe7d4c335 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7d7894c pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0xe7ec77c3 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL vmlinux 0xe7f6c478 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8199ff8 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xe83bbd90 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0xe8403e77 rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xe84ed34a unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe8585771 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe85b5888 vmbus_close +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe871deb1 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xe8901f6c dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xe8b6c8f7 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8e5da47 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xe8eb8c37 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0xe9071414 tcp_register_ulp +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 0xe9250486 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe94ff6b4 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe95c6b1d rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xe95e024d tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xe96ff575 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xe977f88a irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xe97a327f pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe99774a3 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xe9a09406 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0xe9b5ef15 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xe9c31790 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xe9f32fbf virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea058915 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xea06af47 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1bdf91 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xea20b3e2 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea3eeeb8 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xea3f8129 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xea447ccf of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea55e13a blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0xea69a794 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xea71f492 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xea8232c7 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xea887827 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xeaa3ee7b proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0xeaac3aae dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xeabea4ff dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae163b6 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 +EXPORT_SYMBOL_GPL vmlinux 0xeafdf0bc nvme_stop_queues +EXPORT_SYMBOL_GPL vmlinux 0xeb1b2ecd __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0xeb280416 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xeb3154ce of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xeb39f868 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xeb47993b meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xeb90ecde ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xebafb345 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xebbdbd49 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd2dc99 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebe40dec regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xebed822e led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xec0de1e4 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xec196a35 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xec254f7f debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xec333ce8 devm_blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec593cf1 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec63ea62 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xec7141fd __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xec766469 nvme_start_ctrl +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec78398b clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xeca2e34d fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xeca4b890 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xecb02df6 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0xecb569b7 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0xecb7723c devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xecbb6f12 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xecd0dd3a virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xecd5254a pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xecdf71f6 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xece46453 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0xecf13dc7 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xecf35e1c dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xecf64f38 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xecff2b0c virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xed229d45 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xed280980 noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed3ed2a4 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xed4e2934 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xed5405c8 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xed7bd28e nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xed7e8fa2 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0xedadec64 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xedb649a3 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xedc3fde9 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xede84e8b device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xedfac377 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0xedfb3f68 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xedfe74e0 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xee12cf3e fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee3dd075 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xee4cdca4 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xee4e2572 device_create +EXPORT_SYMBOL_GPL vmlinux 0xee506cbf usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee56907e virtqueue_enable_cb_prepare +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 0xee752d1f devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xee7b6578 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xee82bdea crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0xee8acc14 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xee8dd196 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xee99e6ba usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xeea4d6db do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0xeebd4401 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0xeec5abca xhci_run +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 0xeee1f1f3 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xef0b7052 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef28ef34 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef2eb26a dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xef30a6f9 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xef386794 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0xef3a5524 soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef468f6e gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xef4e2239 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef6916b5 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xef6bb938 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef71f662 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xef744bb5 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0xef7a1303 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xef9645c8 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xef99b986 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xef9f8a9b dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa3629a pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xefa994ea crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xefae710f transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xefaf7247 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xefbbccf6 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xefc95ae3 device_register +EXPORT_SYMBOL_GPL vmlinux 0xefde5939 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xefde6743 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xeff88c95 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xf02db9f6 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xf03b0410 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf04465d7 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0xf04e59e8 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xf04fbb9d ip_tunnel_uninit +EXPORT_SYMBOL_GPL vmlinux 0xf05571e2 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf064e774 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf078b24b dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xf07bfc05 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf0a0c69d init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xf0a46a35 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xf0a51559 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xf0a562b8 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xf0b83fd3 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xf0cc8442 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0xf0d478c7 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xf0dea6a9 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xf0e08a22 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xf0e298af hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0e3ec92 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xf0e45777 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xf0f9a451 dprc_get_obj_region +EXPORT_SYMBOL_GPL vmlinux 0xf0fea19b usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0xf10eeb8b usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll +EXPORT_SYMBOL_GPL vmlinux 0xf13f7b68 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xf146b597 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xf14ee57d device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf190b2e6 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf19b5800 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xf1b6d9de clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xf1c2a100 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf1caa790 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0xf1e2368f __class_create +EXPORT_SYMBOL_GPL vmlinux 0xf1e4be30 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xf211b517 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xf21cfdf4 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf227fec6 dpbp_disable +EXPORT_SYMBOL_GPL vmlinux 0xf228f842 devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xf23792d8 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0xf23acf5e dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf241e46f topology_set_thermal_pressure +EXPORT_SYMBOL_GPL vmlinux 0xf2449805 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xf25b5f60 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xf260e96a usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0xf265368a md_stop +EXPORT_SYMBOL_GPL vmlinux 0xf2688b38 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xf269023a devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf276ab50 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0xf28c4920 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf2987add md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xf29f92cb unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xf2b14bd6 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2cada0d icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0xf2cd4076 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xf2d3cb63 fsl_mc_bus_dpio_type +EXPORT_SYMBOL_GPL vmlinux 0xf2dac69f edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0xf2e55b67 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xf2e5ca35 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0xf2ef4f4f ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf301880e vmbus_set_event +EXPORT_SYMBOL_GPL vmlinux 0xf303a7c5 ata_sff_drain_fifo +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 0xf3264ce4 imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xf3282530 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33e320f blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf37b058f nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf386bbb4 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xf38a00ff __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0xf38b087b dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0xf3906b1d serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xf39b1763 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xf3a7761a iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3c1b59b clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xf3c446b2 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xf3c630fa skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xf3e4b1b1 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xf3e8ee5a user_read +EXPORT_SYMBOL_GPL vmlinux 0xf3e9b487 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xf40f0890 bgmac_phy_connect_direct +EXPORT_SYMBOL_GPL vmlinux 0xf412dd6f devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xf4188df1 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xf4282af8 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xf4396b72 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xf441af66 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xf45f7180 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf46ab886 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0xf4707cf4 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf47140c3 mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf47bca88 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xf496707d kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4a81e13 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b622d9 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xf4c1baf8 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xf4ccf23a iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4dd05ed scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xf4e35e28 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xf4e8dbd0 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf4efcabd spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xf4f97013 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xf4f9cad2 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xf4fbf055 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xf50ba95e nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0xf50dad5a mmput +EXPORT_SYMBOL_GPL vmlinux 0xf513a867 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xf51905bb perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xf52181cc fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xf532cc37 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xf53d2e71 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf544ea78 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0xf5470ccd dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xf5484297 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xf548988d put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xf5495c90 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5627c4a devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xf5752153 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0xf586be54 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xf58f7fa6 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xf597f5f5 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xf59cdf7e regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf5a0ff0d ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5a9384f kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xf5b81a0c phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xf5c0a4ee regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xf5c4f136 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xf5d8d393 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xf5dc2d8c usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xf5e057e5 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5fc80e6 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xf605ba66 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xf61878dd pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0xf61ab846 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall +EXPORT_SYMBOL_GPL vmlinux 0xf61d8195 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL vmlinux 0xf61f80ca is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xf6330cf4 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf63e66a9 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf6501299 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf667f311 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0xf67429f3 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xf6745d41 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xf6768442 meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0xf678b505 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0xf67afe09 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xf6888a9a spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xf693a524 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6a85852 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xf6adde4f uart_xchar_out +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 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6eef09c devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xf702adf0 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf7088c2c pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xf712c627 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf7200f7c sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xf72446de of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf72f5eb6 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf743dbfe dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xf744298f hv_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xf74453a0 filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0xf744688a dm_bio_from_per_bio_data +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 0xf759d07d rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xf760590c usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xf7617e05 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xf7620034 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xf76216b8 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf78cb7b7 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xf79bc544 imx_obtain_fixed_clk_hw +EXPORT_SYMBOL_GPL vmlinux 0xf79ce709 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0xf7a96a2f blk_poll +EXPORT_SYMBOL_GPL vmlinux 0xf7aa1e5d switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7b288a0 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c349d1 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xf7e3685f pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0xf7e98889 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xf7ff8841 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xf80de729 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0xf81580e1 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xf81b877d tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xf8250727 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xf82be2ee fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xf82cbe24 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf8366628 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf83b0381 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xf850f7cd skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf85366d2 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk +EXPORT_SYMBOL_GPL vmlinux 0xf86ce686 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xf87cd301 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xf881a8f9 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf88b47d2 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf88e2820 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xf8d98670 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xf8e0b32a clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xf8e51be1 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f60385 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xf9000c63 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable +EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf915cf80 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xf91f6891 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xf9238cc3 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xf9297c35 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xf9330c35 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xf93ce7c0 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf9759862 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xf988d0f0 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xf9940199 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi +EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free +EXPORT_SYMBOL_GPL vmlinux 0xf9b6fa1f pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xf9d6a42f crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xf9e382ce regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf9e4e091 bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0xf9ebe553 pci_bridge_emul_init +EXPORT_SYMBOL_GPL vmlinux 0xf9ed22f3 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa2799b6 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa375389 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0xfa381584 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xfa449d8d pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xfa54f4b5 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa697038 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xfa7fa9b5 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xfa85636f br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfacccef7 blk_ksm_is_superset +EXPORT_SYMBOL_GPL vmlinux 0xfad070bc pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfae0420c pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xfb08da92 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xfb13f9be of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xfb23cff2 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfb268c26 dax_copy_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xfb2e71b2 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xfb2f2e68 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb39e642 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xfb446964 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xfb586e0c perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xfb5a8d1a of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb921e00 hvpci_block_ops +EXPORT_SYMBOL_GPL vmlinux 0xfb975418 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0xfba437a0 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xfba59edb kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xfba8f93f pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xfbb24a52 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc405de sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xfbc7db7a get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xfbd032b4 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xfbd7ebe2 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xfbdc2221 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xfbef86b2 thermal_of_cooling_device_register +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 0xfc05e3d4 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xfc064eff dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0xfc1b08b0 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc29da89 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc4210b2 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfc4b800b nvme_unfreeze +EXPORT_SYMBOL_GPL vmlinux 0xfc5e1889 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xfc7fd94a pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfc8fc6e1 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xfc91abf7 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xfca5cc11 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcc453ac br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xfcd1fd47 dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0xfcd9901a clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0xfceef21b blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xfcef1095 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xfcef8e77 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfcfa55b4 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xfd1f7913 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xfd617d31 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xfd642f04 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xfd6444bf dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xfd6f095f cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd74a795 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xfd88955f bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xfd8cefe7 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xfd8f7ee9 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfdaa3cf0 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdbea110 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xfdd9b2b0 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfdfb55d3 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xfe01c0bc ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xfe0587c7 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfe06a3b5 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe0fc883 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe1ddc4e ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xfe34ce8e iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe3dff2b crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe4c4d13 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xfe7afd73 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe97a841 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe990f24 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xfea7d45e acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0xfeb546c8 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfebce7a4 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xfec5e5d7 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xfed2164c bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfee1fd33 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xff03db06 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff08c13c pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0xff0c8b75 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xff0dafde __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xff144e9b devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2a4a17 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xff3e4473 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0xff4c159d con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xff68c2c5 mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0xff7376ee ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff8130b1 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff8248e3 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xff8de6f3 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb21e26 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xffbec240 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xffbf9039 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xffc09389 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xffca652e efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0xffda3aba psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0xffdbf66f handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xffdce498 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xffe3fe3f cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xffed7bd9 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xfff62f81 driver_deferred_probe_check_state +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +MCB EXPORT_SYMBOL_GPL 0x08ff20c0 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1c631b7b mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x276c9b0a __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4fcb526e mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x5ef40b56 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6ce16348 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x79447098 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xad68ffb7 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xadc2fdf2 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb45a49b0 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb93cb618 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xbf343de4 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe33e3b78 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xf769a1cd mcb_get_resource drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x2c68ddc0 nvme_command_effects vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3f91dcf6 nvme_ctrl_from_file vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x5873001e nvme_execute_passthru_rq vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb93cd866 nvme_find_get_ns vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xbc165217 nvme_put_ns vmlinux diff --git a/debian.azure/abi/arm64/azure.compiler b/debian.azure/abi/arm64/azure.compiler new file mode 100644 index 0000000000000..3a937869fbe68 --- /dev/null +++ b/debian.azure/abi/arm64/azure.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 diff --git a/debian.azure/abi/arm64/azure.modules b/debian.azure/abi/arm64/azure.modules new file mode 100644 index 0000000000000..3e0a5dfbab657 --- /dev/null +++ b/debian.azure/abi/arm64/azure.modules @@ -0,0 +1,3366 @@ +3w-9xxx +3w-sas +6lowpan +8021q +8139cp +8139too +8250_bcm7271 +8250_dw +8250_exar +8250_men_mcb +842 +842_compress +842_decompress +88pg86x +88pm805 +88pm80x +9p +9pnet +9pnet_rdma +9pnet_virtio +a100u2w +a53-pll +a7-pll +aacraid +acpi_ipmi +acpi_power_meter +acpiphp_ibm +act8945a +act8945a-regulator +act8945a_charger +act_bpf +act_connmark +act_csum +act_ct +act_ctinfo +act_gact +act_gate +act_ipt +act_mirred +act_mpls +act_nat +act_pedit +act_police +act_sample +act_simple +act_skbedit +act_skbmod +act_tunnel_key +act_vlan +ad7314 +ad7414 +ad7418 +ad9389b +adc128d818 +adcxx +adfs +adiantum +adin +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm1177 +adm9240 +adp5061 +ads7828 +ads7871 +adt7310 +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adt7x10 +adummy +adv7170 +adv7175 +adv7180 +adv7183 +adv7343 +adv7393 +adv748x +adv7511_drm +adv7604 +adv7842 +advansys +aegis128 +aes-arm64 +aes-ce-blk +aes-ce-ccm +aes-ce-cipher +aes-neon-blk +aes-neon-bs +af_alg +af_key +af_packet_diag +affs +ah4 +ah6 +ahci +ahci_brcm +ahci_ceva +ahci_mtk +ahci_mvebu +ahci_platform +ahci_qoriq +ahci_seattle +ahci_tegra +ahci_xgene +aht10 +aic79xx +aic7xxx +aic94xx +ak881x +alcor_pci +algif_aead +algif_hash +algif_rng +algif_skcipher +alim7101_wdt +allegro +altera-msgdma +altera_jtaguart +altera_ps2 +altera_uart +am53c974 +amba-clcd +amba-pl010 +ambakmi +amc6821 +amdgpu +amlogic-gxl-crypto +amlogic_thermal +ams369fg06 +analogix-anx6345 +analogix_dp +anatop-regulator +ansi_cprng +anx7625 +anybuss_core +ao-cec +ao-cec-g12a +apbps2 +apcs-msm8916 +apcs-sdx55 +apds9802als +apds990x +apple-dart +apple-mfi-fastcharge +appletalk +applicom +apr +apss-ipq-pll +apss-ipq6018 +ar9331 +arc-rawmode +arc-rimi +arc_ps2 +arc_uart +arcmsr +arcnet +arcpgu +arcx-anybus +arcxcnn_bl +arizona +arizona-i2c +arizona-spi +arm-cmn +arm_dmc620_pmu +arm_dsu_pmu +arm_mhu +arm_mhu_db +arm_mhuv2 +arm_scpi +arm_smc_wdt +arm_smccc_trng +arm_smmuv3_pmu +arm_spe_pmu +armada-37xx-cpufreq +armada-37xx-rwtm-mailbox +armada-8k-cpufreq +armada_37xx_wdt +arp_tables +arpt_mangle +arptable_filter +as370-hwmon +asc7621 +ashmem_linux +aspeed-pwm-tacho +aspeed-video +ast +asym_tpm +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +ata_piix +atc260x-core +atc260x-i2c +atc260x-onkey +atc260x-poweroff +atc260x-regulator +atlantic +atm +atmel-ecc +atmel-flexcom +atmel-hlcdc +atmel-i2c +atmel-sha204a +atmel_captouch +atmtcp +atp870u +atxp1 +auth_rpcgss +authenc +authencesn +autofs4 +ax25 +ax88796b +axg-audio +axi-fan-control +axis-fifo +axp20x +axp20x-i2c +axp20x-rsb +b44 +b53_common +b53_mdio +b53_mmap +b53_serdes +b53_spi +b53_srab +ba431-rng +bam_dma +bareudp +batman-adv +bcache +bcm-flexrm-mailbox +bcm-keypad +bcm-pdc-mailbox +bcm-phy-lib +bcm-sba-raid +bcm-sf2 +bcm2711_thermal +bcm2835-mmal-vchiq +bcm2835-rng +bcm2835-v4l2 +bcm2835_thermal +bcm2835_wdt +bcm4908_enet +bcm54140 +bcm590xx +bcm7038_wdt +bcm7xxx +bcm_crypto_spu +bcm_vk +bcma +bcmsysport +bd9571mwv +bd9571mwv-regulator +bd99954-charger +be2iscsi +be2net +befs +bfa +bfq +bfs +bh1770glc +binder_linux +binfmt_misc +blake2b_generic +blocklayoutdriver +blowfish_common +blowfish_generic +bluefield_edac +bman-test +bnx2 +bnx2x +bnxt_en +bonding +bpfilter +bq24190_charger +br2684 +br_netfilter +brcmstb-avs-cpufreq +brcmstb-usb-pinmap +brcmstb_thermal +brd +bridge +broadcom +bsd_comp +bt819 +bt856 +bt866 +btrfs +c_can +c_can_pci +c_can_platform +ca8210 +caam +caam_jr +caamalg_desc +caamhash_desc +cachefiles +cadence_wdt +cafe_ccic +caif +caif_socket +caif_usb +caif_virtio +camcc-sc7180 +camcc-sdm845 +camcc-sm8250 +camellia_generic +can +can-bcm +can-dev +can-gw +can-j1939 +can-raw +cap11xx +capmode +capsule-loader +cast5_generic +cast6_generic +cast_common +cavium-rng +cavium-rng-vf +cb710 +ccm +ccp +ccp-crypto +ccree +cctrng +cdc-acm +cdns-csi2rx +cdns-csi2tx +cdns-dphy +cdns-dsi +cdns-mhdp8546 +cdns-usb-common +cdnsp-udc-pci +cec +ceph +cfb +cfg80211 +ch +ch_ipsec +ch_ktls +chacha-neon +chacha20poly1305 +chacha_generic +charlcd +chcr +chipone-icn6211 +chnl_net +chrontel-ch7033 +cifs +cifs_arc4 +cifs_md4 +clip +clk-axi-clkgen +clk-bcm2711-dvp +clk-cdce925 +clk-cpu-8996 +clk-fsl-flexspi +clk-hi3519 +clk-hi655x +clk-lmk04832 +clk-max77686 +clk-max9485 +clk-phase +clk-plldig +clk-pwm +clk-qcom +clk-raspberrypi +clk-rk3568 +clk-rk808 +clk-rpm +clk-rpmh +clk-scmi +clk-scpi +clk-si514 +clk-si5341 +clk-si544 +clk-si570 +clk-smd-rpm +clk-sprd +clk-versaclock5 +clk-xlnx-clock-wizard +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_u32 +cmac +cnic +coda +coda-vpu +com20020 +com20020-pci +com90io +com90xx +cordic +cortina +counter +cpcap-pwrbutton +cpcap-regulator +cppc_cpufreq +cpr +cptpf +cptvf +cramfs +crc-itu-t +crc32_generic +crc4 +crc64 +crc7 +crct10dif-ce +crg-hi3516cv300 +crg-hi3798cv200 +cryptd +crypto_engine +crypto_safexcel +crypto_simd +crypto_user +cryptoloop +cs3308 +cs5345 +cs53l32a +csiostor +curve25519-generic +cuse +cw2015_battery +cx25840 +cxgb +cxgb3 +cxgb4 +cxgb4vf +cxl_acpi +cxl_core +cxl_pci +cxl_pmem +da9052-hwmon +da9052_wdt +da9063 +da9063-regulator +da9063_wdt +da9121-regulator +dax_hmem +dax_pmem +dax_pmem_compat +dax_pmem_core +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +defxx +des_generic +diag +digicolor-usart +dispcc-sc7180 +dispcc-sc7280 +dispcc-sdm845 +dispcc-sm8250 +display-connector +dl2k +dlink-dir685-touchkeys +dlm +dm-bio-prison +dm-bufio +dm-cache +dm-cache-smq +dm-clone +dm-crypt +dm-delay +dm-ebs +dm-era +dm-flakey +dm-historical-service-time +dm-integrity +dm-io-affinity +dm-log +dm-log-userspace +dm-log-writes +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-switch +dm-thin-pool +dm-unstripe +dm-verity +dm-writecache +dm-zero +dm-zoned +dma-axi-dmac +dmc520_edac +dme1737 +dmx3191d +dnet +dp83822 +dp83869 +dp83tc811 +dpaa2-console +dpaa2-qdma +dpaa2_caam +dpdmai +dpt_i2o +drbd +drivetemp +drm +drm_dp_aux_bus +drm_kms_helper +drm_mipi_dbi +drm_ttm_helper +drm_vram_helper +ds1621 +ds1682 +ds620 +dsa_core +dummy +dummy-irq +dw-axi-dmac-platform +dw-edma +dw-edma-pcie +dw-hdmi +dw-hdmi-cec +dw-i3c-master +dw-mipi-dsi +dw-xdata-pcie +dw_dmac_core +dw_dmac_pci +dw_drm_dsi +dw_wdt +dwc-xlgmac +e100 +e1000 +e1000e +ebt_802_3 +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_vlan +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ec_sys +ecc +ecdh_generic +ecdsa_generic +echainiv +ecrdsa_generic +ee1004 +eeprom_93cx6 +efa +efct +efi-pstore +efi_test +efibc +efs +em_canid +em_cmp +em_ipset +em_ipt +em_meta +em_nbyte +em_text +em_u32 +emc1403 +emc2103 +emc6w201 +ems_pci +emu10k1-gp +enclosure +ene_ir +eni +enic +eql +erofs +error +esas2r +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et131x +etas_es58x +ethoc +evbug +exfat +extcon-fsa9480 +extcon-gpio +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-ptn5150 +extcon-qcom-spmi-misc +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +f2fs +f71805f +f71882fg +f75375s +f81601 +failover +fan +fan53880 +farsync +fastrpc +faulty +fb_agm1264k-fl +fb_bd663474 +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_seps525 +fb_sh1106 +fb_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fb_watterott +fbtft +fcrypt +fdomain +fdomain_pci +fealnx +ff-memless +ffa-module +fieldbus_dev +fintek-cir +fixed +flexcan +fm10k +fm801-gp +fore_200e +fou +fou6 +fpga-mgr +freevxfs +fscache +fsi-core +fsi-master-aspeed +fsi-master-gpio +fsi-master-hub +fsi-occ +fsi-sbefifo +fsi-scom +fsl-dpaa2-eth +fsl-dpaa2-ptp +fsl-dpaa2-switch +fsl-edma +fsl-edma-common +fsl-enetc +fsl-enetc-ierb +fsl-enetc-mdio +fsl-enetc-ptp +fsl-enetc-vf +fsl-mc-dpio +fsl-qdma +fsl_dpa +fsl_imx8_ddr_perf +fsl_linflexuart +fsl_lpuart +fsl_pq_mdio +fsl_ucc_hdlc +ftm-quaddec +ftsteutates +g760a +g762 +gameport +garp +gateworks-gsc +gcc-apq8084 +gcc-ipq4019 +gcc-ipq6018 +gcc-ipq806x +gcc-ipq8074 +gcc-mdm9607 +gcc-mdm9615 +gcc-msm8660 +gcc-msm8916 +gcc-msm8939 +gcc-msm8953 +gcc-msm8960 +gcc-msm8974 +gcc-msm8994 +gcc-msm8996 +gcc-msm8998 +gcc-qcs404 +gcc-sc7180 +gcc-sc7280 +gcc-sc8180x +gcc-sdm660 +gcc-sdm845 +gcc-sdx55 +gcc-sm6115 +gcc-sm6125 +gcc-sm6350 +gcc-sm8150 +gcc-sm8250 +gcc-sm8350 +ge2d +gemini +genet +geneve +genwqe_card +gfs2 +ghash-ce +gianfar_driver +gl518sm +gl520sm +gnss +goldfish_battery +gpi +gpio-74x164 +gpio-74xx-mmio +gpio-adnp +gpio-adp5588 +gpio-aggregator +gpio-altera +gpio-altera-a10sr +gpio-amd-fch +gpio-amdpt +gpio-arizona +gpio-bd9571mwv +gpio-brcmstb +gpio-cadence +gpio-da9052 +gpio-dwapb +gpio-eic-sprd +gpio-exar +gpio-fan +gpio-grgpio +gpio-gw-pld +gpio-hisi +gpio-hlwd +gpio-ir-recv +gpio-ir-tx +gpio-janz-ttl +gpio-logicvc +gpio-lp3943 +gpio-lp873x +gpio-lp87565 +gpio-madera +gpio-max3191x +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-max77650 +gpio-mb86s7x +gpio-mc33880 +gpio-menz127 +gpio-mlxbf +gpio-mlxbf2 +gpio-mockup +gpio-moxtet +gpio-pca953x +gpio-pcf857x +gpio-pci-idio-16 +gpio-pcie-idio-24 +gpio-pisosr +gpio-pmic-eic-sprd +gpio-raspberrypi-exp +gpio-rcar +gpio-rdc321x +gpio-regmap +gpio-rockchip +gpio-sama5d2-piobu +gpio-siox +gpio-sl28cpld +gpio-sprd +gpio-syscon +gpio-thunderx +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-tqmx86 +gpio-vibra +gpio-virtio +gpio-visconti +gpio-wcd934x +gpio-wm831x +gpio-wm8994 +gpio-xgene-sb +gpio-xgs-iproc +gpio-xlp +gpio-xra1403 +gpio-zynq +gpio_keys_polled +gpio_wdt +gpu-sched +gpucc-msm8998 +gpucc-sc7180 +gpucc-sc7280 +gpucc-sdm660 +gpucc-sdm845 +gpucc-sm8150 +gpucc-sm8250 +grace +grcan +gre +gs1662 +gsc-hwmon +gtp +gud +gve +habanalabs +hamachi +hantro-vpu +hci +hclge +hclgevf +hd44780 +hd44780_common +hdlc +hdlc_cisco +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdlcd +he +hfpll +hfs +hfsplus +hi311x +hi3660-mailbox +hi6220-mailbox +hi6220_reset +hi6421-pmic-core +hi6421-regulator +hi6421v530-regulator +hi655x-pmic +hi655x-regulator +hibmc-drm +hid +hid-cougar +hid-generic +hid-glorious +hid-hyperv +hid-ite +hid-jabra +hid-led +hid-macally +hid-maltron +hid-mf +hid-nti +hid-playstation +hid-redragon +hid-semitek +hid-sensor-custom +hid-sensor-hub +hid-steam +hid-udraw-ps3 +hid-viewsonic +hid-wiimote +hih6130 +hinic +hip04_eth +hisi-rng +hisi-trng-v2 +hisi_femac +hisi_hikey_usb +hisi_hpre +hisi_powerkey +hisi_qm +hisi_sas_main +hisi_sas_v1_hw +hisi_sas_v2_hw +hisi_sas_v3_hw +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 +hmc6352 +hms-profinet +hnae +hnae3 +hns-roce-hw-v1 +hns-roce-hw-v2 +hns3 +hns_dsaf +hns_enet_drv +hns_mdio +host1x +hpfs +hpsa +hptiop +hpwdt +hsr +ht16k33 +htc-pasic3 +hv_netvsc +hv_sock +hwmon-vid +hwpoison-inject +hx8357 +hx8357d +hyperv-keyboard +hyperv_drm +hyperv_fb +i2c-algo-bit +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-altera +i2c-amd-mp2-pci +i2c-amd-mp2-plat +i2c-amd756 +i2c-amd8111 +i2c-arb-gpio-challenge +i2c-bcm-iproc +i2c-bcm2835 +i2c-brcmstb +i2c-cbus-gpio +i2c-core +i2c-cp2615 +i2c-demux-pinctrl +i2c-designware-core +i2c-designware-pci +i2c-designware-platform +i2c-dev +i2c-fsi +i2c-gpio +i2c-hid +i2c-hid-acpi +i2c-hid-of +i2c-hid-of-goodix +i2c-hisi +i2c-hix5hd2 +i2c-i801 +i2c-imx +i2c-imx-lpi2c +i2c-isch +i2c-meson +i2c-mlxbf +i2c-mt65xx +i2c-mux +i2c-mux-gpmux +i2c-mux-ltc4306 +i2c-mux-pinctrl +i2c-mv64xxx +i2c-nforce2 +i2c-nomadik +i2c-nvidia-gpu +i2c-ocores +i2c-omap +i2c-owl +i2c-parport +i2c-pca-platform +i2c-pxa +i2c-qcom-cci +i2c-qcom-geni +i2c-qup +i2c-rcar +i2c-riic +i2c-rk3x +i2c-scmi +i2c-sh_mobile +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-slave-eeprom +i2c-smbus +i2c-stub +i2c-synquacer +i2c-taos-evm +i2c-tegra +i2c-tegra-bpmp +i2c-thunderx +i2c-versatile +i2c-via +i2c-viapro +i2c-virtio +i2c-xgene-slimpro +i2c-xiic +i2c-xlp9xx +i3c +i3c-master-cdns +i40e +i5k_amb +i6300esb +iavf +ib_cm +ib_core +ib_ipoib +ib_iser +ib_isert +ib_mthca +ib_srp +ib_umad +ib_uverbs +ibmaem +ibmpex +icc-bcm-voter +icc-osm-l3 +icc-rpmh +icc-smd-rpm +ice +ice40-spi +icp +ics932s401 +idma64 +idt77252 +ieee802154 +ieee802154_6lowpan +ieee802154_socket +ifb +ifcvf +ife +igb +igbvf +igc +ila +ili9225 +ili922x +ili9320 +ili9341 +ili9486 +img-ascii-lcd +imx-bus +imx-cpufreq-dt +imx-dcss +imx-dma +imx-dsp +imx-interconnect +imx-mailbox +imx-media-common +imx-pxp +imx-sdma +imx2_wdt +imx6q-cpufreq +imx7-media-csi +imx7-mipi-csis +imx7ulp_wdt +imx8m-ddrc +imx8mm-interconnect +imx8mm_thermal +imx8mn-interconnect +imx8mq-interconnect +imx8mq-mipi-csi2 +imx_keypad +imx_sc_key +imx_sc_thermal +imx_sc_wdt +imx_thermal +imxfb +ina209 +ina2xx +ina3221 +inet_diag +initio +intel-qep +interrupt-cnt +io-domain +ionic +iosm +ip6_gre +ip6_tables +ip6_tunnel +ip6_vti +ip6t_NPT +ip6t_REJECT +ip6t_SYNPROXY +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_mh +ip6t_rpfilter +ip6t_rt +ip6t_srh +ip6table_filter +ip6table_mangle +ip6table_nat +ip6table_raw +ip6table_security +ip_gre +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipmac +ip_set_hash_ipmark +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_mac +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netnet +ip_set_hash_netport +ip_set_hash_netportnet +ip_set_list_set +ip_tables +ip_vs +ip_vs_dh +ip_vs_fo +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_mh +ip_vs_nq +ip_vs_ovf +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_twos +ip_vs_wlc +ip_vs_wrr +ip_vti +ipack +ipcomp +ipcomp6 +iphase +ipip +ipmb_dev_int +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_ssif +ipmi_watchdog +ipr +iproc-rng200 +ips +ipt_CLUSTERIP +ipt_ECN +ipt_REJECT +ipt_SYNPROXY +ipt_ah +ipt_rpfilter +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +iptable_security +ipvlan +ipvtap +iqs269a +iqs626a +iqs62x +iqs62x-keys +ir-hix5hd2 +ir-imon-decoder +ir-jvc-decoder +ir-kbd-i2c +ir-mce_kbd-decoder +ir-nec-decoder +ir-rc5-decoder +ir-rc6-decoder +ir-rcmm-decoder +ir-sanyo-decoder +ir-sharp-decoder +ir-sony-decoder +ir-spi +ir-xmp-decoder +irdma +irq-madera +irq-pruss-intc +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isl29003 +isl29020 +isofs +isp1704_charger +it87 +ite-cir +ite-it66121 +iw_cm +ixgb +ixgbe +ixgbevf +janz-cmodio +janz-ican3 +jc42 +jfs +jme +joydev +jsm +k3_bandgap +k3dma +kafs +kcm +keembay-ocs-aes +keembay-ocs-hcu +keembay_wdt +keywrap +khadas-mcu +khadas_mcu_fan +kheaders +kirin-drm +kmb-drm +kmem +komeda +kpss-xcc +ks0127 +ksmbd +ksz8795 +ksz8795_spi +ksz8863_smi +ksz9477 +ksz9477_i2c +ksz9477_spi +ksz_common +kvaser_pci +kvaser_pciefd +kyber-iosched +l2tp_core +l2tp_debugfs +l2tp_eth +l2tp_ip +l2tp_ip6 +l2tp_netlink +l2tp_ppp +l4f00242t03 +lan743x +lan9303-core +lan9303_i2c +lan9303_mdio +lanai +lantiq_gswip +lapb +lapbether +lattice-ecp3-config +layerscape_edac_mod +lcc-ipq806x +lcc-mdm9615 +lcc-msm8960 +lcd +lec +led-class +led_bl +leds-an30259a +leds-aw2013 +leds-bcm6328 +leds-bcm6358 +leds-cpcap +leds-cr0014114 +leds-el15203000 +leds-gpio +leds-is31fl319x +leds-is31fl32xx +leds-lm3532 +leds-lm36274 +leds-lm3692x +leds-lm3697 +leds-lp5521 +leds-lp5523 +leds-lp5562 +leds-lp55xx-common +leds-lp8501 +leds-lp8860 +leds-lt3593 +leds-max77650 +leds-mlxreg +leds-pwm +leds-sc27xx-bltc +leds-spi-byte +leds-ti-lmu-common +leds-tps6105x +ledtrig-activity +ledtrig-audio +ledtrig-netdev +ledtrig-pattern +ledtrig-tty +libarc4 +libceph +libchacha +libchacha20poly1305 +libcrc32c +libcurve25519 +libcurve25519-generic +libdes +libiscsi +libiscsi_tcp +libpoly1305 +libsas +libsm4 +lightning +lima +lineage-pem +linear +linkstation-poweroff +liteuart +litex_liteeth +litex_soc_ctrl +ll_temac +llc +llc2 +llcc-qcom +lm3630a_bl +lm363x-regulator +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95234 +lm95241 +lm95245 +lmh +lms283gf05 +lms501kf03 +lockd +locktorture +lontium-lt8912b +lontium-lt9611 +lontium-lt9611uxc +lp +lp3943 +lp855x_bl +lp873x +lp873x-regulator +lp87565 +lp87565-regulator +lpass-gfm-sm8250 +lpasscc-sdm845 +lpasscorecc-sc7180 +lpc_ich +lpc_sch +lpfc +lru_cache +lrw +lt3651-charger +ltc2945 +ltc2947-core +ltc2947-i2c +ltc2947-spi +ltc2990 +ltc4151 +ltc4162-l-charger +ltc4215 +ltc4222 +ltc4245 +ltc4260 +ltc4261 +ltv350qv +lvds-codec +lz4 +lz4_compress +lz4hc +lz4hc_compress +m2m-deinterlace +m52790 +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +mac80211 +mac802154 +mac802154_hwsim +macsec +macvlan +macvtap +madera +madera-i2c +madera-spi +mailbox-test +mailbox-xgene-slimpro +mali-dp +marvell +marvell-88x2222 +marvell-cesa +marvell10g +matrix-keymap +max1111 +max14577 +max14656_charger_detector +max16065 +max1619 +max1668 +max197 +max3100 +max31722 +max31730 +max31790 +max63xx_wdt +max6621 +max6639 +max6642 +max6650 +max6697 +max77650 +max77650-charger +max77650-onkey +max77650-regulator +max77686 +max77686-regulator +max77693 +max77693-haptic +max77802-regulator +max77826-regulator +max8893 +max8907 +max8973-regulator +max9286 +mc +mc13783-adc +mc13xxx-core +mc13xxx-i2c +mc13xxx-spi +mcam-core +mcb +mcb-lpc +mcb-pci +mcp16502 +mcp3021 +mcr20a +mctp +md-cluster +md4 +mdev +mdio +mdio-bcm-unimac +mdio-bitbang +mdio-cavium +mdio-gpio +mdio-hisi-femac +mdio-i2c +mdio-ipq4019 +mdio-ipq8064 +mdio-mscc-miim +mdio-mux-gpio +mdio-mux-meson-g12a +mdio-mux-mmioreg +mdio-mux-multiplexer +mdio-mvusb +mdio-octeon +mdio-thunder +mdio-xgene +mdt_loader +mediatek-cpufreq +mediatek-cpufreq-hw +mediatek-drm +mediatek-drm-hdmi +mediatek-ge +megachips-stdpxxxx-ge-b850v3-fw +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +memory-notifier-error-inject +men_z135_uart +mena21_wdt +menf21bmc +menf21bmc_hwmon +menf21bmc_wdt +menz69_wdt +meson-canvas +meson-drm +meson-gxl +meson-ir +meson-ir-tx +meson-rng +meson-vdec +meson_dw_hdmi +meson_gxbb_wdt +meson_wdt +mhi +mhi_wwan_ctrl +mhi_wwan_mbim +mi0283qt +michael_mic +micrel +microchip +microchip-tcb-capture +microchip_t1 +mii +minix +mip6 +ml86v7667 +mlx4_core +mlx4_en +mlx4_ib +mlx5_core +mlx5_ib +mlx_wdt +mlxbf-bootctl +mlxbf-pmc +mlxbf-tmfifo +mlxbf_gige +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxsw_core +mlxsw_i2c +mlxsw_minimal +mlxsw_pci +mlxsw_spectrum +mmcc-apq8084 +mmcc-msm8960 +mmcc-msm8974 +mmcc-msm8994 +mmcc-msm8996 +mmcc-msm8998 +mmcc-sdm660 +most_cdev +most_core +most_dim2 +most_i2c +most_net +most_video +motorcomm +motorola-cpcap +moxa +moxtet +mp2629 +mp5416 +mp8859 +mp886x +mpi3mr +mpls_gso +mpls_iptunnel +mpls_router +mpoa +mpq7920 +mpt3sas +mptbase +mptcp_diag +mptctl +mptfc +mptsas +mptscsih +mptspi +mrp +mscc +mscc_felix +mscc_ocelot +mscc_ocelot_switch_lib +msdos +msm +msp3400 +mss-sc7180 +mt6360-core +mt6360_charger +mt6380-regulator +mt7530 +mtk-cir +mtk-cmdq-helper +mtk-cmdq-mailbox +mtk-cqdma +mtk-devapc +mtk-hsdma +mtk-pmic-wrap +mtk-rng +mtk-smi +mtk-uart-apdma +mtk-vpu +mtk_thermal +mtk_wdt +mtu3 +multipath +mux-adg792a +mux-adgs1408 +mux-core +mux-gpio +mux-mmio +mvmdio +mvneta +mvpp2 +mvsas +mvumi +mxc-jpeg-encdec +mxl-gpy +mxser +mxsfb +myrb +myrs +n5pf +n_gsm +n_hdlc +nbd +nci +nci_spi +nci_uart +nct6683 +nct6775 +nct7802 +nct7904 +nd_virtio +net_failover +netconsole +netdevsim +netfs +netlink_diag +netrom +nf_conncount +nf_conntrack +nf_conntrack_amanda +nf_conntrack_bridge +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_dup_ipv4 +nf_dup_ipv6 +nf_dup_netdev +nf_flow_table +nf_flow_table_inet +nf_flow_table_ipv4 +nf_flow_table_ipv6 +nf_log_syslog +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nf_reject_ipv4 +nf_reject_ipv6 +nf_socket_ipv4 +nf_socket_ipv6 +nf_synproxy_core +nf_tables +nf_tproxy_ipv4 +nf_tproxy_ipv6 +nfc +nfc_digital +nfnetlink +nfnetlink_acct +nfnetlink_cthelper +nfnetlink_cttimeout +nfnetlink_hook +nfnetlink_log +nfnetlink_osf +nfnetlink_queue +nfp +nfs +nfs_acl +nfs_layout_flexfiles +nfs_layout_nfsv41_files +nfsd +nfsv2 +nfsv3 +nfsv4 +nft_chain_nat +nft_compat +nft_connlimit +nft_counter +nft_ct +nft_dup_ipv4 +nft_dup_ipv6 +nft_dup_netdev +nft_fib +nft_fib_inet +nft_fib_ipv4 +nft_fib_ipv6 +nft_fib_netdev +nft_flow_offload +nft_fwd_netdev +nft_hash +nft_limit +nft_log +nft_masq +nft_meta_bridge +nft_nat +nft_numgen +nft_objref +nft_osf +nft_queue +nft_quota +nft_redir +nft_reject +nft_reject_bridge +nft_reject_inet +nft_reject_ipv4 +nft_reject_ipv6 +nft_reject_netdev +nft_socket +nft_synproxy +nft_tproxy +nft_tunnel +nft_xfrm +nhc_dest +nhc_fragment +nhc_hop +nhc_ipv6 +nhc_mobility +nhc_routing +nhc_udp +nhpoly1305 +nhpoly1305-neon +nicstar +nilfs2 +nixge +nlmon +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nosy +notifier-error-inject +nozomi +npcm750-pwm-fan +ns-thermal +ns558 +nsh +ntb +ntb_hw_epf +ntb_hw_idt +ntb_hw_switchtec +ntb_netdev +ntb_transport +ntc_thermistor +ntfs +ntfs3 +ntxec +nuvoton-cir +nvec +nvec_kbd +nvec_paz00 +nvec_power +nvec_ps2 +nvme-fabrics +nvme-fc +nvme-rdma +nvme-tcp +nvmem-bcm-ocotp +nvmem-imx-iim +nvmem-imx-ocotp +nvmem-imx-ocotp-scu +nvmem-reboot-mode +nvmem-rmem +nvmem-rockchip-otp +nvmem-sc27xx-efuse +nvmem_meson_efuse +nvmem_meson_mx_efuse +nvmem_qfprom +nvmem_rockchip_efuse +nvmem_snvs_lpgpr +nvmem_sprd_efuse +nvmem_sunxi_sid +nvmet +nvmet-fc +nvmet-tcp +nwl-dsi +nxp-c45-tja11xx +nxp-ptn3460 +nxp-tja11xx +objagg +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocmem +octeontx-cpt +octeontx-cptvf +of_pmem +of_xilinx_wdt +ofb +omap-mailbox +omap-rng +omap4-keypad +omap_hwspinlock +omfs +openvswitch +optee +optee-rng +otm3225a +ov7670 +overlay +owl-dma +owl-emac +p8022 +panel +panel-abt-y030xx067a +panel-arm-versatile +panel-asus-z00t-tm5p5-n35596 +panel-boe-himax8279d +panel-boe-tv101wum-nl6 +panel-dsi-cm +panel-elida-kd35t133 +panel-feixin-k101-im2ba02 +panel-feiyang-fy07024di26a30d +panel-ilitek-ili9322 +panel-ilitek-ili9341 +panel-ilitek-ili9881c +panel-innolux-ej030na +panel-innolux-p079zca +panel-jdi-lt070me05000 +panel-khadas-ts050 +panel-kingdisplay-kd097d04 +panel-leadtek-ltk050h3146w +panel-leadtek-ltk500hd1829 +panel-lg-lb035q02 +panel-lg-lg4573 +panel-lvds +panel-mantix-mlaf057we51 +panel-nec-nl8048hl11 +panel-novatek-nt35510 +panel-novatek-nt36672a +panel-novatek-nt39016 +panel-olimex-lcd-olinuxino +panel-orisetech-otm8009a +panel-osd-osd101t2587-53ts +panel-panasonic-vvx10f034n00 +panel-raspberrypi-touchscreen +panel-raydium-rm67191 +panel-raydium-rm68200 +panel-ronbo-rb070d30 +panel-samsung-atna33xc20 +panel-samsung-db7430 +panel-samsung-ld9040 +panel-samsung-s6d16d0 +panel-samsung-s6e3ha2 +panel-samsung-s6e63j0x03 +panel-samsung-s6e63m0 +panel-samsung-s6e63m0-dsi +panel-samsung-s6e63m0-spi +panel-samsung-s6e88a0-ams452ef01 +panel-samsung-s6e8aa0 +panel-samsung-sofef00 +panel-seiko-43wvf1g +panel-sharp-lq101r1sx01 +panel-sharp-ls037v7dw01 +panel-sharp-ls043t1le01 +panel-simple +panel-sitronix-st7701 +panel-sitronix-st7703 +panel-sitronix-st7789v +panel-sony-acx424akp +panel-sony-acx565akm +panel-tdo-tl070wsh30 +panel-tpo-td028ttec1 +panel-tpo-td043mtea1 +panel-tpo-tpg110 +panel-truly-nt35597 +panel-visionox-rm69299 +panel-widechips-ws2401 +panel-xinpeng-xpp055c272 +panfrost +parade-ps8622 +parade-ps8640 +parkbd +parman +parport +parport_ax88796 +pata_acpi +pata_ali +pata_amd +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_imx +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc300too +pc87360 +pc87427 +pcbc +pcf50633 +pcf50633-adc +pcf50633-gpio +pcf8591 +pci-epf-ntb +pci-pf-stub +pci-stub +pci200syn +pcie-brcmstb +pcie-iproc +pcie-iproc-platform +pcie-mediatek-gen3 +pcie-rockchip-host +pcie-tegra194 +pcips2 +pcmcia_core +pcmcia_rsrc +pcrypt +pcs-lynx +pcs_xpcs +pcwd_pci +pdc_adma +pdr_interface +peak_pci +peak_pciefd +pf8x00-regulator +pfuze100-regulator +phantom +phonet +phy-am654-serdes +phy-armada38x-comphy +phy-bcm-ns-usb2 +phy-bcm-ns-usb3 +phy-bcm-ns2-usbdrd +phy-bcm-sr-pcie +phy-bcm-sr-usb +phy-berlin-sata +phy-berlin-usb +phy-brcm-usb-dvr +phy-cadence-salvo +phy-cadence-sierra +phy-cadence-torrent +phy-can-transceiver +phy-fsl-imx8-mipi-dphy +phy-fsl-imx8mq-usb +phy-generic +phy-hi3660-usb3 +phy-hi3670-usb3 +phy-hi6220-usb +phy-hisi-inno-usb2 +phy-histb-combphy +phy-intel-keembay-emmc +phy-intel-keembay-usb +phy-j721e-wiz +phy-mapphone-mdm6600 +phy-meson-axg-mipi-dphy +phy-meson-g12a-usb2 +phy-meson-g12a-usb3-pcie +phy-meson-gxl-usb2 +phy-meson8b-usb2 +phy-mtk-hdmi-drv +phy-mtk-mipi-dsi-drv +phy-mtk-tphy +phy-mtk-ufs +phy-mtk-xsphy +phy-mvebu-a3700-comphy +phy-mvebu-a3700-utmi +phy-mvebu-cp110-comphy +phy-mvebu-cp110-utmi +phy-ocelot-serdes +phy-omap-usb2 +phy-qcom-apq8064-sata +phy-qcom-ipq4019-usb +phy-qcom-ipq806x-sata +phy-qcom-ipq806x-usb +phy-qcom-pcie2 +phy-qcom-qmp +phy-qcom-qusb2 +phy-qcom-snps-femto-v2 +phy-qcom-usb-hs +phy-qcom-usb-hs-28nm +phy-qcom-usb-hsic +phy-qcom-usb-ss +phy-rcar-gen2 +phy-rcar-gen3-pcie +phy-rcar-gen3-usb2 +phy-rcar-gen3-usb3 +phy-rockchip-dp +phy-rockchip-dphy-rx0 +phy-rockchip-emmc +phy-rockchip-inno-csidphy +phy-rockchip-inno-dsidphy +phy-rockchip-inno-hdmi +phy-rockchip-inno-usb2 +phy-rockchip-pcie +phy-rockchip-typec +phy-rockchip-usb +phy-sun4i-usb +phy-sun50i-usb3 +phy-sun6i-mipi-dphy +phy-tegra-usb +phy-tegra-xusb +phy-tegra194-p2u +phy-tusb1210 +phy-zynqmp +phylink +pi433 +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-axp209 +pinctrl-imx8ulp +pinctrl-ipq4019 +pinctrl-ipq6018 +pinctrl-ipq8064 +pinctrl-ipq8074 +pinctrl-keembay +pinctrl-lpass-lpi +pinctrl-madera +pinctrl-mcp23s08 +pinctrl-mcp23s08_i2c +pinctrl-mcp23s08_spi +pinctrl-mdm9607 +pinctrl-mdm9615 +pinctrl-msm8226 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8953 +pinctrl-msm8960 +pinctrl-msm8976 +pinctrl-msm8994 +pinctrl-msm8996 +pinctrl-msm8998 +pinctrl-msm8x74 +pinctrl-mt6779 +pinctrl-qcs404 +pinctrl-qdf2xxx +pinctrl-rk805 +pinctrl-sc7180 +pinctrl-sc7280 +pinctrl-sc8180x +pinctrl-sdm660 +pinctrl-sdm845 +pinctrl-sdx55 +pinctrl-sm6115 +pinctrl-sm6125 +pinctrl-sm8150 +pinctrl-sm8250 +pinctrl-sm8350 +pinctrl-ssbi-gpio +pinctrl-ssbi-mpp +pinctrl-stmfx +pinctrl-zynqmp +pkcs7_test_key +pkcs8_key_parser +pktcdvd +pktgen +pl111_drm +pl172 +pl330 +platform_lcd +platform_mhu +plx_dma +plx_pci +pm-notifier-error-inject +pm80xx +pmcraid +pn_pep +poly1305-neon +poly1305_generic +powr1220 +ppdev +ppp_async +ppp_deflate +ppp_mppe +ppp_synctty +pppoatm +pppoe +pppox +pptp +pretimeout_panic +pruss +ps2-gpio +ps2mult +psample +psnap +pstore_blk +pstore_zone +ptp-qoriq +ptp_clockmatrix +ptp_dte +ptp_idt82p33 +ptp_kvm +pulse8-cec +pvpanic +pvpanic-mmio +pvpanic-pci +pwm-atmel-hlcdc +pwm-atmel-tcb +pwm-bcm-iproc +pwm-bcm2835 +pwm-beeper +pwm-berlin +pwm-brcmstb +pwm-dwc +pwm-fan +pwm-fsl-ftm +pwm-hibvt +pwm-imx-tpm +pwm-imx1 +pwm-imx27 +pwm-iqs620a +pwm-ir-tx +pwm-keembay +pwm-lp3943 +pwm-mediatek +pwm-meson +pwm-mtk-disp +pwm-ntxec +pwm-pca9685 +pwm-raspberrypi-poe +pwm-rcar +pwm-regulator +pwm-renesas-tpu +pwm-rockchip +pwm-sl28cpld +pwm-sprd +pwm-sun4i +pwm-tegra +pwm-tiecap +pwm-tiehrpwm +pwm-vibra +pwm-visconti +pwm_bl +pxa168_eth +q6sstop-qcs404 +qcom-apcs-ipc-mailbox +qcom-camss +qcom-cpufreq-hw +qcom-cpufreq-nvmem +qcom-geni-se +qcom-pm8008 +qcom-rng +qcom-rpmh-regulator +qcom-wdt +qcom-wled +qcom_aoss +qcom_edac +qcom_geni_serial +qcom_glink +qcom_glink_rpm +qcom_glink_smem +qcom_gsbi +qcom_hwspinlock +qcom_rpm +qcom_rpm-regulator +qcom_smd +qcom_smd-regulator +qcom_tsens +qcrypto +qla1280 +qla2xxx +qla4xxx +qlge +qmi_helpers +qnoc-msm8916 +qnoc-msm8939 +qnoc-msm8974 +qnoc-qcs404 +qnoc-sc7180 +qnoc-sc7280 +qnoc-sc8180x +qnoc-sdm660 +qnoc-sdm845 +qnoc-sdx55 +qnoc-sm8150 +qnoc-sm8250 +qnoc-sm8350 +qnx4 +qnx6 +qoriq-cpufreq +qoriq_thermal +qrtr +qrtr-mhi +qrtr-smd +qrtr-tun +qt1050 +quota_tree +quota_v1 +quota_v2 +qxl +r8169 +radeon +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid_class +rainshadow-cec +ramoops +raspberrypi-cpufreq +raspberrypi-hwmon +raw_diag +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-astrometa-t2hybrid +rc-asus-pc39 +rc-asus-ps3-100 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-beelink-gs1 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-ct-90405 +rc-d680-dmb +rc-delock-61959 +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-dtt200u +rc-dvbsky +rc-dvico-mce +rc-dvico-portable +rc-em-terratec +rc-encore-enltv +rc-encore-enltv-fm53 +rc-encore-enltv2 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-geekbox +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-hisi-poplar +rc-hisi-tv-demo +rc-imon-mce +rc-imon-pad +rc-imon-rsc +rc-iodata-bctv7e +rc-it913x-v1 +rc-it913x-v2 +rc-kaiomy +rc-khadas +rc-khamsin +rc-kworld-315u +rc-kworld-pc150u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lme2510 +rc-loopback +rc-manli +rc-mecool-kii-pro +rc-mecool-kiii-pro +rc-medion-x10 +rc-medion-x10-digitainer +rc-medion-x10-or2x +rc-minix-neo +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-odroid +rc-pctv-sedna +rc-pine64 +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-reddo +rc-snapstream-firefly +rc-streamzap +rc-su3000 +rc-tanix-tx3mini +rc-tanix-tx5max +rc-tbs-nec +rc-technisat-ts35 +rc-technisat-usb2 +rc-terratec-cinergy-c-pci +rc-terratec-cinergy-s2-hd +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-total-media-in-hand-02 +rc-trekstor +rc-tt-1500 +rc-twinhan-dtv-cab-ci +rc-twinhan1027 +rc-vega-s9x +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-videostrong-kii-pro +rc-wetek-hub +rc-wetek-play2 +rc-winfast +rc-winfast-usbii-deluxe +rc-x96max +rc-xbox-360 +rc-xbox-dvd +rc-zx-irdec +rcar-csi2 +rcar-dmac +rcar-du-drm +rcar-fcp +rcar-vin +rcar_can +rcar_canfd +rcar_cmm +rcar_dw_hdmi +rcar_fdp1 +rcar_gen3_thermal +rcar_jpu +rcar_lvds +rcar_thermal +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-smi +reboot-mode +reed_solomon +regmap-i2c +regmap-slimbus +reiserfs +renesas-rpc-if +renesas_wdt +repaper +reset-a10sr +reset-brcmstb +reset-hi3660 +reset-meson-audio-arb +reset-qcom-pdc +reset-raspberrypi +reset-rzg2l-usbphy-ctrl +reset-scmi +reset-ti-sci +reset-ti-syscon +retu-mfd +retu_wdt +rfc1051 +rfc1201 +rfkill-gpio +rio-scan +rio_cm +rio_mport_cdev +rionet +rk3399_dmc +rk805-pwrkey +rk808 +rk808-regulator +rk_crypto +rmd160 +rmtfs_mem +rn5t618 +rn5t618-regulator +rn5t618_wdt +rnbd-client +rnbd-server +rockchip +rockchip-dfi +rockchip-isp1 +rockchip-rga +rockchip-vdec +rockchip_thermal +rockchipdrm +roles +romfs +rose +rp2 +rpcrdma +rpcsec_gss_krb5 +rpmpd +rpmsg_char +rpmsg_core +rpmsg_ns +rpmsg_wwan_ctrl +rsmu-i2c +rsmu-spi +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt6160-regulator +rt6245-regulator +rtc-ab-eoz9 +rtc-armada38x +rtc-brcmstb-waketimer +rtc-cadence +rtc-cpcap +rtc-fsl-ftm-alarm +rtc-ftrtc010 +rtc-goldfish +rtc-hym8563 +rtc-imx-sc +rtc-imxdi +rtc-isl12026 +rtc-max77686 +rtc-meson-vrtc +rtc-mt2712 +rtc-mt7622 +rtc-mxc +rtc-mxc_v2 +rtc-ntxec +rtc-pcf85363 +rtc-pl030 +rtc-pl031 +rtc-r7301 +rtc-rc5t619 +rtc-rk808 +rtc-rv3028 +rtc-sc27xx +rtc-sd3078 +rtc-sh +rtc-snvs +rtc-tegra +rtc-zynqmp +rti_wdt +rtq2134-regulator +rtq6752-regulator +rtrs-client +rtrs-core +rtrs-server +rts5208 +rtsx_pci +rvu_af +rvu_cptpf +rvu_cptvf +rvu_mbox +rvu_nicpf +rvu_nicvf +rxrpc +rz-dmac +rza_wdt +s2io +sa2ul +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa717x +saa7185 +sahara +samsung_tty +sata_dwc_460ex +sata_rcar +sata_sil +sata_sil24 +sb1000 +sbrmi +sbs-manager +sbsa_gwdt +sc16is7xx +sc2731-regulator +sc2731_charger +sc27xx-poweroff +sc27xx-vibra +sc9860-clk +sc9863a-clk +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cake +sch_cbq +sch_cbs +sch_choke +sch_codel +sch_drr +sch_dsmark +sch_etf +sch_ets +sch_fq +sch_fq_codel +sch_fq_pie +sch_gred +sch_hfsc +sch_hhf +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_pie +sch_plug +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_skbprio +sch_taprio +sch_tbf +sch_teql +sci-clk +sclk-div +scmi-cpufreq +scmi-hwmon +scmi-regulator +scmi_pm_domain +scpi-cpufreq +scpi-hwmon +scpi_pm_domain +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +sctp +sctp_diag +serial-tegra +serial_ir +serio_raw +serpent_generic +serport +ses +sf-pdma +sfc +sfc-falcon +sfp +sh_mobile_lcdcfb +sha1-ce +sha2-ce +sha256-arm64 +sha3-ce +sha3_generic +sha512-arm64 +sha512-ce +shiftfs +sht15 +sht21 +sht3x +sht4x +shtc1 +sifive +sii902x +sii9234 +sil-sii8620 +simple-bridge +simple-mfd-i2c +simpledrm +simplefb +siox-bus-gpio +siox-core +sir_ir +sis5595 +sit +siw +sja1000 +sja1000_isa +sja1000_platform +sja1105 +skfp +skge +sky2 +sky81452 +sl28cpld-hwmon +sl28cpld_wdt +slcan +slg51000-regulator +slic_ds26522 +slicoss +slim-qcom-ctrl +slimbus +slip +sm2_generic +sm3-ce +sm3_generic +sm4-ce +sm4_generic +sm501 +sm501fb +sm750fb +smartpqi +smc +smc_diag +smd-rpm +smem +smm665 +smp2p +smsc47b397 +smsc47m1 +smsc47m192 +smsm +snd +snd-aloop +snd-dummy +snd-hrtimer +snd-pcm +snd-rawmidi +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-event +snd-seq-virmidi +snd-timer +snd-virmidi +snic +snvs_pwrkey +socfpga +socfpga-a10 +socinfo +softdog +solos-pci +sony-btf-mpx +soundcore +soundwire-bus +sp805_wdt +sparse-keymap +sparx5-switch +sparx5-temp +sparx5_serdes +speakup +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_dectlk +speakup_dummy +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spi-altera-core +spi-altera-platform +spi-amd +spi-armada-3700 +spi-axi-spi-engine +spi-bcm-qspi +spi-bcm2835 +spi-bcm2835aux +spi-bitbang +spi-brcmstb-qspi +spi-butterfly +spi-cadence +spi-cadence-quadspi +spi-dw +spi-dw-mmio +spi-dw-pci +spi-fsi +spi-fsl-dspi +spi-fsl-lpspi +spi-fsl-qspi +spi-geni-qcom +spi-gpio +spi-hisi-kunpeng +spi-hisi-sfc-v3xx +spi-imx +spi-iproc-qspi +spi-lm70llp +spi-loopback-test +spi-meson-spicc +spi-meson-spifc +spi-mt65xx +spi-mtk-nor +spi-mux +spi-mxic +spi-nxp-fspi +spi-oc-tiny +spi-orion +spi-pl022 +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-qcom-qspi +spi-qup +spi-rockchip-sfc +spi-rpc-if +spi-rspi +spi-sc18is602 +spi-sh-hspi +spi-sh-msiof +spi-sifive +spi-slave-mt27xx +spi-slave-system-control +spi-slave-time +spi-sprd +spi-sprd-adi +spi-sun6i +spi-synquacer +spi-tegra114 +spi-tegra20-sflash +spi-tegra20-slink +spi-tegra210-quad +spi-thunderx +spi-tle62x0 +spi-xcomm +spi-xlp +spi-zynqmp-gqspi +spidev +spl +sprd-dma +sprd-iommu +sprd-mailbox +sprd-sc27xx-spi +sprd_hwspinlock +sprd_serial +sprd_thermal +sprd_wdt +sr-thermal +ssb +ssd1307fb +st +st-mipid02 +st7586 +st7735r +stex +stmfx +stmpe-keypad +stp +stratix10-rsu +stratix10-soc +stratix10-svc +streebog_generic +stts751 +sun4i-backend +sun4i-csi +sun4i-drm +sun4i-drm-hdmi +sun4i-frontend +sun4i-gpadc +sun4i-ss +sun4i-tcon +sun4i_tv +sun50i-cpufreq-nvmem +sun6i-csi +sun6i-dma +sun6i_drc +sun6i_hwspinlock +sun6i_mipi_dsi +sun8i-ce +sun8i-di +sun8i-drm-hdmi +sun8i-mixer +sun8i-rotate +sun8i-ss +sun8i_tcon_top +sun8i_thermal +sundance +suni +sunrpc +sunxi-cedrus +sunxi-cir +sunxi-rsb +sunxi_wdt +svc-i3c-master +switchtec +sy8106a-regulator +sy8824x +sy8827n +sym53c8xx +synclink_gt +synopsys_edac +syscon-reboot-mode +syscopyarea +sysfillrect +sysimgblt +sysv +tag_ar9331 +tag_brcm +tag_dsa +tag_gswip +tag_ksz +tag_lan9303 +tag_mtk +tag_ocelot +tag_ocelot_8021q +tag_qca +tag_rtl4_a +tag_sja1105 +tag_trailer +tag_xrs700x +tap +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +target_core_user +tc358743 +tc358762 +tc358764 +tc358767 +tc358768 +tc358775 +tc654 +tc74 +tcm_loop +tcp_bbr +tcp_bic +tcp_cdg +tcp_dctcp +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_nv +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tda7432 +tda9840 +tda9950 +tdo24m +tea6415c +tea6420 +tee +tee_bnxt_fw +tegra-aconnect +tegra-bpmp-thermal +tegra-drm +tegra-gmi +tegra-kbc +tegra-vde +tegra-video +tegra186-cpufreq +tegra194-cpufreq +tegra210-adma +tegra210-emc +tegra30-devfreq +tegra_cec +tegra_wdt +test_lockup +tg3 +thc63lvd1024 +thermal_mmio +thmc50 +ths7303 +ths8200 +thunderbolt +thunderbolt-net +thunderx2_pmu +thunderx_edac +thunderx_zip +ti-cal +ti-lmu +ti-sn65dsi83 +ti-sn65dsi86 +ti-tfp410 +ti-tpd12s015 +ti_am335x_tscadc +ti_sci_pm_domains +tidss +tifm_7xx1 +tifm_core +timeriomem-rng +tipc +tls +tlv320aic23b +tmp102 +tmp103 +tmp108 +tmp401 +tmp421 +tmp513 +torture +tpci200 +tpm_ftpm_tee +tpm_key_parser +tpm_tis_i2c_cr50 +tpm_tis_synquacer +tps23861 +tps6105x +tps65010 +tps6507x +tps65086 +tps65132-regulator +tps65217 +tps65217-regulator +tps65217_bl +tps65217_charger +tps65218 +tps65218-pwrbutton +tps65218-regulator +tps65912-i2c +tqmx86 +ts_bm +ts_fsm +ts_kmp +tsi721_mport +tsl2550 +ttm +ttynull +tunnel4 +tunnel6 +turingcc-qcs404 +turris-mox-rwtm +tvaudio +tvp514x +tvp5150 +tvp7002 +tw2804 +tw9903 +tw9906 +tw9910 +twofish_common +twofish_generic +uPD60620 +uacce +uartlite +ubuntu-host +ucc_uart +ucs1002_power +uda1342 +udf +udp_diag +ufs +uhid +uio +uio_aec +uio_cif +uio_dmem_genirq +uio_hv_generic +uio_mf624 +uio_netx +uio_pci_generic +uio_pdrv_genirq +uio_pruss +uio_sercos3 +ulpi +unix_diag +upd64031a +upd64083 +usb-conn-gpio +usb-dmac +userio +v4l2-async +v4l2-dv-timings +v4l2-fwnode +v4l2-h264 +v4l2-jpeg +v4l2-mem2mem +v4l2-tpg +vcan +vchiq +vctrl-regulator +vdpa +vduse +venus-core +venus-dec +venus-enc +versal-fpga +veth +vexpress-hwmon +vexpress-regulator +vfio +vfio-amba +vfio-fsl-mc +vfio-pci +vfio-pci-core +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +vfio_iommu_type1 +vfio_platform_bcmflexrm +vfio_virqfd +vgg2432a4 +vhost +vhost_iotlb +vhost_net +vhost_scsi +vhost_vdpa +vhost_vsock +via686a +vicodec +video-i2c +video-mux +videobuf2-common +videobuf2-dma-contig +videobuf2-dma-sg +videobuf2-memops +videobuf2-v4l2 +videobuf2-vmalloc +videocc-sc7180 +videocc-sc7280 +videocc-sdm845 +videocc-sm8150 +videocc-sm8250 +videodev +vim2m +vimc +virtio-gpu +virtio-rng +virtio_blk +virtio_crypto +virtio_dma_buf +virtio_input +virtio_net +virtio_pmem +virtio_rpmsg_bus +virtio_scsi +virtio_vdpa +virtiofs +virtual_ncidev +visconti_wdt +vitesse +vitesse-vsc73xx-core +vitesse-vsc73xx-platform +vitesse-vsc73xx-spi +vivid +vkms +vmac +vme_fake +vme_tsi148 +vme_vmivme7805 +vmw_vmci +vmw_vsock_virtio_transport +vmw_vsock_virtio_transport_common +vmw_vsock_vmci_transport +vmwgfx +vp27smpx +vp_vdpa +vport-geneve +vport-gre +vport-vxlan +vpx3220 +vqmmc-ipq4019-regulator +vrf +vringh +vsock +vsock_diag +vsock_loopback +vsockmon +vsp1 +vt1211 +vt6655_stage +vt8231 +vx855 +vxcan +vxge +w83627ehf +w83627hf +w83773g +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +wanxl +wcd934x +wcnss_ctrl +wd719x +wdat_wdt +wdt_pci +wfx +wireguard +wm831x-hwmon +wm831x_wdt +wm8739 +wm8775 +wm8994 +wp512 +wwan +wwan_hwsim +x25 +x_tables +xcbc +xfrm4_tunnel +xfrm6_tunnel +xfrm_algo +xfrm_interface +xfrm_ipcomp +xfrm_user +xfs +xgene-dma +xgene-enet +xgene-enet-v2 +xgene-hwmon +xgene-rng +xgene_edac +xhci-histb +xhci-mtk-hcd +xhci-plat-hcd +xhci-tegra +xilinx-csi2rxss +xilinx-spi +xilinx-tpg +xilinx-video +xilinx-vtc +xilinx_can +xilinx_dma +xilinx_dpdma +xilinx_emac +xilinx_emaclite +xilinx_sdfec +xilinx_uartps +xilinxfb +xillybus_class +xillyusb +xiphera-trng +xlnx_vcu +xor +xor-neon +xrs700x +xrs700x_i2c +xrs700x_mdio +xsk_diag +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_CONNSECMARK +xt_CT +xt_DSCP +xt_HL +xt_HMARK +xt_IDLETIMER +xt_LED +xt_LOG +xt_MASQUERADE +xt_NETMAP +xt_NFLOG +xt_NFQUEUE +xt_RATEEST +xt_REDIRECT +xt_SECMARK +xt_TCPMSS +xt_TCPOPTSTRIP +xt_TEE +xt_TPROXY +xt_TRACE +xt_addrtype +xt_bpf +xt_cgroup +xt_cluster +xt_comment +xt_connbytes +xt_connlabel +xt_connlimit +xt_connmark +xt_conntrack +xt_cpu +xt_dccp +xt_devgroup +xt_dscp +xt_ecn +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_ipcomp +xt_iprange +xt_ipvs +xt_l2tp +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_nat +xt_nfacct +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_realm +xt_recent +xt_sctp +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_tcpudp +xt_time +xt_u32 +xxhash_generic +xz_dec_test +yellowfin +yenta_socket +z3fold +zavl +zcommon +zfs +ziirave_wdt +zlua +znvpair +zonefs +zram +zstd +zstd_compress +zunicode +zynqmp-aes-gcm +zynqmp-dpsub +zynqmp-fpga +zynqmp_dma +zzstd diff --git a/debian.azure/abi/arm64/azure.modules.builtin b/debian.azure/abi/arm64/azure.modules.builtin new file mode 100644 index 0000000000000..cf8d7e58f7246 --- /dev/null +++ b/debian.azure/abi/arm64/azure.modules.builtin @@ -0,0 +1,430 @@ +8250 +8250_base +8250_mtk +8250_of +8250_omap +8250_pci +8250_tegra +acpi_dbg +acpi_mdio +acpiphp +aead +aes_generic +af_packet +ahci_imx +akcipher +altera-sysmgr +altera_edac +amba-pl011 +arm-cci +arm-cci +arm-ccn +arm_smmu +arm_smmu_v3 +armada_thermal +asn1_decoder +asn1_encoder +asymmetric_keys +ata_generic +atkbd +axg +axg-aoclk +backlight +bcm2835-dma +bcm2835-mailbox +bcm2835-pm +bcm2835-power +bcm84881 +bgmac +bgmac-platform +binfmt_elf +binfmt_script +brcmstb_dpfe +bsg +btree +button +cbc +cdrom +cfbcopyarea +cfbfillrect +cfbimgblt +clk-bcm2835 +clk-bcm2835-aux +clk-bm1880 +clk-cpu-dyndiv +clk-dualdiv +clk-fixed-mmio +clk-fsl-sai +clk-hi3559a +clk-imx-lpcg-scu +clk-imx-scu +clk-imx8mm +clk-imx8mn +clk-imx8mp +clk-imx8mq +clk-mpll +clk-pll +clk-regmap +clk-rk3399 +clk-vexpress-osc +cmd-db +cn +compat_binfmt_elf +configfs +cpufreq-dt +cpufreq_conservative +cpufreq_ondemand +cpufreq_performance +cpufreq_powersave +cpufreq_userspace +crc-ccitt +crc-t10dif +crc16 +crc32 +crc32c_generic +crc8 +crct10dif_common +crct10dif_generic +crypto +crypto_acompress +crypto_algapi +crypto_hash +crypto_null +cryptomgr +ctr +cts +da9052-core +da9052-spi +dax +deflate +device_dax +dh_generic +digsig +dm-mod +dns_resolver +drbg +drm_mipi_dsi +drm_panel_orientation_quirks +drop_monitor +ecb +ecryptfs +edac_core +efivarfs +encrypted-keys +evdev +exportfs +ext4 +extcon-core +ezx-pcap +fat +fb +fddi +fec +firmware_class +fixed_phy +font +freq_table +fsl_dpaa_fman +fsl_dpaa_fman_port +fsl_dpaa_mac +fuse +fwnode_mdio +g12a +g12a-aoclk +gcm +geniv +gf128mul +ghash-generic +glob +governor_passive +governor_performance +governor_powersave +governor_simpleondemand +governor_userspace +gpio-generic +gpio-mxc +gpio-pl061 +gpio-poweroff +gpio-restart +gpio-tegra +gpio-tegra186 +gpio-xilinx +gxbb +gxbb-aoclk +hed +hmac +hv_balloon +hv_storvsc +hv_utils +hv_vmbus +hwmon +hwspinlock_core +icc-core +imx +imx-scu +imx-weim +input-core +ioasid +iova +ip6_udp_tunnel +ip_tunnel +ipu_idmac +ipv6 +irq-al-fic +irq-ls-scfg-msi +irq-mbigen +irq-mvebu-pic +irq-renesas-irqc +irq-ti-sci-inta +irq-ti-sci-intr +irqbypass +jbd2 +jitterentropy_rng +kgdboc +kpp +kvm +libaes +libahci +libahci_platform +libata +libblake2s +libnvdimm +libphy +libps2 +libsha256 +linear_ranges +loop +ltc2952-poweroff +lz4_decompress +lzo +lzo-rle +lzo_compress +lzo_decompress +max310x +mbcache +md-mod +md5 +mdio-mux +mdio-mux-bcm-iproc +mdio_devres +meson-aoclk +meson-clk-measure +meson-ee-pwrc +meson-eeclk +meson-gx-pwrc-vpu +meson-secure-pwrc +meson_sm +meson_uart +mfd-core +mousedev +mpi +mq-deadline +msm_serial +mtk-eint +mv_xor_v2 +mx3fb +mxc-clk +n_null +nd_blk +nd_btt +nd_pmem +nfit +nfs_ssc +nls_base +nls_cp437 +nvme +nvme-core +nvmem_core +nvmem_zynqmp_nvmem +of_mdio +oid_registry +owl-uart +packing +pata_sis +pci-aardvark +pci-ep-cfs +pci-epc-core +pci-epc-mem +pci-epf-core +pci-host-common +pci-host-generic +pci-hyperv +pci-hyperv-intf +pci-meson +pci-tegra +pcie-altera +pcie-altera-msi +pcie-histb +pcie-mediatek +pcie-microchip-host +phy-bcm-ns2-pcie +phy-brcm-sata +phy-meson-axg-mipi-pcie-analog +phy-meson-axg-pcie +phy-mxs-usb +phy-xgene +pinctrl-imx +pinctrl-imx8dxl +pinctrl-imx8mm +pinctrl-imx8mn +pinctrl-imx8mp +pinctrl-imx8mq +pinctrl-imx8qm +pinctrl-imx8qxp +pinctrl-meson +pinctrl-meson-a1 +pinctrl-meson-axg +pinctrl-meson-axg-pmx +pinctrl-meson-g12a +pinctrl-meson-gxbb +pinctrl-meson-gxl +pinctrl-meson8-pmx +pinctrl-msm +pinctrl-mt6765 +pinctrl-mt8192 +pinctrl-mt8365 +pinctrl-mtk-common-v2 +pinctrl-paris +pinctrl-rockchip +pinctrl-rzg2l +pinctrl-s700 +pinctrl-s900 +pinctrl-scu +pinctrl-single +pinctrl-sprd +pinctrl-sprd-sc9860 +pkcs7_message +pldmfw +power_supply +ppp_generic +pps_core +pretimeout_noop +processor +pstore +ptp +public_key +qcom-ebi2 +qcom-ipcc +qcom-pdc +qcom-scm +qcom_rpmh +rapidio +raspberrypi +raspberrypi-power +rational +rcar-usb2-clock-sel +regmap-mmio +regmap-spi +regulator-poweroff +renesas-cpg-mssr +reset-berlin +reset-brcmstb-rescal +reset-imx7 +reset-meson +reset-microchip-sparx5 +reset-qcom-aoss +restart-poweroff +rfkill +rng +rng-core +rockchip-mailbox +rpmhpd +rsa_generic +rtc-efi +rtc-mv +rtc-xgene +rzg2l-cpg +sccnxp +scmi-module +scsi_common +scsi_mod +scsi_transport_fc +scu-pd +sd_mod +selftests +seqiv +serial_core +serial_mctrl_gpio +serio +sg +sh-sci +sh_cmt +sh_tmu +sha1_generic +sha256_generic +sha512_generic +shpchp +simple-pm-bus +skcipher +slhc +spi-fsl-lib +spi-fsl-spi +spi-omap2-mcspi +squashfs +sr_mod +stmpe-spi +sun50i-iommu +sun6i-msgbox +sunxi_sram +syscon-clk +system_heap +t10-pi +tcp_cubic +tegra-ahb +tegra-mc +tegra-tcu +tegra124-cpufreq +tegra186-emc +tegra20-apb-dma +tegra20-cpufreq +ti-msgmgr +ti_sci +tpm +tpm_crb +tpm_tis +tpm_tis_core +tps65086-restart +tps65912-core +tps65912-spi +trusted +ttyprintk +tun +ucs2_string +udmabuf +udp_tunnel +uinput +unicode +unix +usb-common +usbcore +vexpress-config +vexpress-sysreg +vfat +vid-pll-div +virt-dma +virtio +virtio-iommu +virtio_balloon +virtio_console +virtio_mmio +virtio_pci +virtio_pci_modern_dev +virtio_ring +vxlan +watch_queue +watchdog +x509_key_parser +xgmac_mdio +xhci-hcd +xhci-pci +xts +xxhash +xz_dec +zbud +zlib_deflate +zlib_inflate +zpool +zsmalloc +zstd_decompress +zswap +zynqmp-ipi-mailbox diff --git a/debian.azure/abi/arm64/azure.retpoline b/debian.azure/abi/arm64/azure.retpoline new file mode 100644 index 0000000000000..7f959eb917cdd --- /dev/null +++ b/debian.azure/abi/arm64/azure.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED diff --git a/debian.azure/abi/fwinfo b/debian.azure/abi/fwinfo new file mode 100644 index 0000000000000..dd71f7eb1db80 --- /dev/null +++ b/debian.azure/abi/fwinfo @@ -0,0 +1,894 @@ +firmware: advansys/3550.bin +firmware: advansys/38C0800.bin +firmware: advansys/38C1600.bin +firmware: advansys/mcode.bin +firmware: aic94xx-seq.fw +firmware: amd/amd_sev_fam17h_model0xh.sbin +firmware: amd/amd_sev_fam17h_model3xh.sbin +firmware: amd/amd_sev_fam19h_model0xh.sbin +firmware: amdgpu/aldebaran_mec.bin +firmware: amdgpu/aldebaran_mec2.bin +firmware: amdgpu/aldebaran_rlc.bin +firmware: amdgpu/aldebaran_sdma.bin +firmware: amdgpu/aldebaran_smc.bin +firmware: amdgpu/aldebaran_sos.bin +firmware: amdgpu/aldebaran_ta.bin +firmware: amdgpu/aldebaran_vcn.bin +firmware: amdgpu/arcturus_asd.bin +firmware: amdgpu/arcturus_gpu_info.bin +firmware: amdgpu/arcturus_mec.bin +firmware: amdgpu/arcturus_rlc.bin +firmware: amdgpu/arcturus_sdma.bin +firmware: amdgpu/arcturus_smc.bin +firmware: amdgpu/arcturus_sos.bin +firmware: amdgpu/arcturus_ta.bin +firmware: amdgpu/arcturus_vcn.bin +firmware: amdgpu/banks_k_2_smc.bin +firmware: amdgpu/beige_goby_ce.bin +firmware: amdgpu/beige_goby_dmcub.bin +firmware: amdgpu/beige_goby_me.bin +firmware: amdgpu/beige_goby_mec.bin +firmware: amdgpu/beige_goby_mec2.bin +firmware: amdgpu/beige_goby_pfp.bin +firmware: amdgpu/beige_goby_rlc.bin +firmware: amdgpu/beige_goby_sdma.bin +firmware: amdgpu/beige_goby_smc.bin +firmware: amdgpu/beige_goby_sos.bin +firmware: amdgpu/beige_goby_ta.bin +firmware: amdgpu/beige_goby_vcn.bin +firmware: amdgpu/bonaire_ce.bin +firmware: amdgpu/bonaire_k_smc.bin +firmware: amdgpu/bonaire_mc.bin +firmware: amdgpu/bonaire_me.bin +firmware: amdgpu/bonaire_mec.bin +firmware: amdgpu/bonaire_pfp.bin +firmware: amdgpu/bonaire_rlc.bin +firmware: amdgpu/bonaire_sdma.bin +firmware: amdgpu/bonaire_sdma1.bin +firmware: amdgpu/bonaire_smc.bin +firmware: amdgpu/bonaire_uvd.bin +firmware: amdgpu/bonaire_vce.bin +firmware: amdgpu/carrizo_ce.bin +firmware: amdgpu/carrizo_me.bin +firmware: amdgpu/carrizo_mec.bin +firmware: amdgpu/carrizo_mec2.bin +firmware: amdgpu/carrizo_pfp.bin +firmware: amdgpu/carrizo_rlc.bin +firmware: amdgpu/carrizo_sdma.bin +firmware: amdgpu/carrizo_sdma1.bin +firmware: amdgpu/carrizo_uvd.bin +firmware: amdgpu/carrizo_vce.bin +firmware: amdgpu/cyan_skillfish2_ce.bin +firmware: amdgpu/cyan_skillfish2_me.bin +firmware: amdgpu/cyan_skillfish2_mec.bin +firmware: amdgpu/cyan_skillfish2_mec2.bin +firmware: amdgpu/cyan_skillfish2_pfp.bin +firmware: amdgpu/cyan_skillfish2_rlc.bin +firmware: amdgpu/cyan_skillfish2_sdma.bin +firmware: amdgpu/cyan_skillfish2_sdma1.bin +firmware: amdgpu/cyan_skillfish_ce.bin +firmware: amdgpu/cyan_skillfish_me.bin +firmware: amdgpu/cyan_skillfish_mec.bin +firmware: amdgpu/cyan_skillfish_mec2.bin +firmware: amdgpu/cyan_skillfish_pfp.bin +firmware: amdgpu/cyan_skillfish_rlc.bin +firmware: amdgpu/cyan_skillfish_sdma.bin +firmware: amdgpu/cyan_skillfish_sdma1.bin +firmware: amdgpu/dimgrey_cavefish_ce.bin +firmware: amdgpu/dimgrey_cavefish_dmcub.bin +firmware: amdgpu/dimgrey_cavefish_me.bin +firmware: amdgpu/dimgrey_cavefish_mec.bin +firmware: amdgpu/dimgrey_cavefish_mec2.bin +firmware: amdgpu/dimgrey_cavefish_pfp.bin +firmware: amdgpu/dimgrey_cavefish_rlc.bin +firmware: amdgpu/dimgrey_cavefish_sdma.bin +firmware: amdgpu/dimgrey_cavefish_smc.bin +firmware: amdgpu/dimgrey_cavefish_sos.bin +firmware: amdgpu/dimgrey_cavefish_ta.bin +firmware: amdgpu/dimgrey_cavefish_vcn.bin +firmware: amdgpu/fiji_ce.bin +firmware: amdgpu/fiji_me.bin +firmware: amdgpu/fiji_mec.bin +firmware: amdgpu/fiji_mec2.bin +firmware: amdgpu/fiji_pfp.bin +firmware: amdgpu/fiji_rlc.bin +firmware: amdgpu/fiji_sdma.bin +firmware: amdgpu/fiji_sdma1.bin +firmware: amdgpu/fiji_smc.bin +firmware: amdgpu/fiji_uvd.bin +firmware: amdgpu/fiji_vce.bin +firmware: amdgpu/green_sardine_asd.bin +firmware: amdgpu/green_sardine_ce.bin +firmware: amdgpu/green_sardine_dmcub.bin +firmware: amdgpu/green_sardine_me.bin +firmware: amdgpu/green_sardine_mec.bin +firmware: amdgpu/green_sardine_mec2.bin +firmware: amdgpu/green_sardine_pfp.bin +firmware: amdgpu/green_sardine_rlc.bin +firmware: amdgpu/green_sardine_sdma.bin +firmware: amdgpu/green_sardine_ta.bin +firmware: amdgpu/green_sardine_vcn.bin +firmware: amdgpu/hainan_ce.bin +firmware: amdgpu/hainan_k_smc.bin +firmware: amdgpu/hainan_mc.bin +firmware: amdgpu/hainan_me.bin +firmware: amdgpu/hainan_pfp.bin +firmware: amdgpu/hainan_rlc.bin +firmware: amdgpu/hainan_smc.bin +firmware: amdgpu/hawaii_ce.bin +firmware: amdgpu/hawaii_k_smc.bin +firmware: amdgpu/hawaii_mc.bin +firmware: amdgpu/hawaii_me.bin +firmware: amdgpu/hawaii_mec.bin +firmware: amdgpu/hawaii_pfp.bin +firmware: amdgpu/hawaii_rlc.bin +firmware: amdgpu/hawaii_sdma.bin +firmware: amdgpu/hawaii_sdma1.bin +firmware: amdgpu/hawaii_smc.bin +firmware: amdgpu/hawaii_uvd.bin +firmware: amdgpu/hawaii_vce.bin +firmware: amdgpu/kabini_ce.bin +firmware: amdgpu/kabini_me.bin +firmware: amdgpu/kabini_mec.bin +firmware: amdgpu/kabini_pfp.bin +firmware: amdgpu/kabini_rlc.bin +firmware: amdgpu/kabini_sdma.bin +firmware: amdgpu/kabini_sdma1.bin +firmware: amdgpu/kabini_uvd.bin +firmware: amdgpu/kabini_vce.bin +firmware: amdgpu/kaveri_ce.bin +firmware: amdgpu/kaveri_me.bin +firmware: amdgpu/kaveri_mec.bin +firmware: amdgpu/kaveri_mec2.bin +firmware: amdgpu/kaveri_pfp.bin +firmware: amdgpu/kaveri_rlc.bin +firmware: amdgpu/kaveri_sdma.bin +firmware: amdgpu/kaveri_sdma1.bin +firmware: amdgpu/kaveri_uvd.bin +firmware: amdgpu/kaveri_vce.bin +firmware: amdgpu/mullins_ce.bin +firmware: amdgpu/mullins_me.bin +firmware: amdgpu/mullins_mec.bin +firmware: amdgpu/mullins_pfp.bin +firmware: amdgpu/mullins_rlc.bin +firmware: amdgpu/mullins_sdma.bin +firmware: amdgpu/mullins_sdma1.bin +firmware: amdgpu/mullins_uvd.bin +firmware: amdgpu/mullins_vce.bin +firmware: amdgpu/navi10_asd.bin +firmware: amdgpu/navi10_ce.bin +firmware: amdgpu/navi10_gpu_info.bin +firmware: amdgpu/navi10_me.bin +firmware: amdgpu/navi10_mec.bin +firmware: amdgpu/navi10_mec2.bin +firmware: amdgpu/navi10_mes.bin +firmware: amdgpu/navi10_pfp.bin +firmware: amdgpu/navi10_rlc.bin +firmware: amdgpu/navi10_sdma.bin +firmware: amdgpu/navi10_sdma1.bin +firmware: amdgpu/navi10_smc.bin +firmware: amdgpu/navi10_sos.bin +firmware: amdgpu/navi10_ta.bin +firmware: amdgpu/navi10_vcn.bin +firmware: amdgpu/navi12_asd.bin +firmware: amdgpu/navi12_ce.bin +firmware: amdgpu/navi12_dmcu.bin +firmware: amdgpu/navi12_gpu_info.bin +firmware: amdgpu/navi12_me.bin +firmware: amdgpu/navi12_mec.bin +firmware: amdgpu/navi12_mec2.bin +firmware: amdgpu/navi12_pfp.bin +firmware: amdgpu/navi12_rlc.bin +firmware: amdgpu/navi12_sdma.bin +firmware: amdgpu/navi12_sdma1.bin +firmware: amdgpu/navi12_smc.bin +firmware: amdgpu/navi12_sos.bin +firmware: amdgpu/navi12_ta.bin +firmware: amdgpu/navi12_vcn.bin +firmware: amdgpu/navi14_asd.bin +firmware: amdgpu/navi14_ce.bin +firmware: amdgpu/navi14_ce_wks.bin +firmware: amdgpu/navi14_gpu_info.bin +firmware: amdgpu/navi14_me.bin +firmware: amdgpu/navi14_me_wks.bin +firmware: amdgpu/navi14_mec.bin +firmware: amdgpu/navi14_mec2.bin +firmware: amdgpu/navi14_mec2_wks.bin +firmware: amdgpu/navi14_mec_wks.bin +firmware: amdgpu/navi14_pfp.bin +firmware: amdgpu/navi14_pfp_wks.bin +firmware: amdgpu/navi14_rlc.bin +firmware: amdgpu/navi14_sdma.bin +firmware: amdgpu/navi14_sdma1.bin +firmware: amdgpu/navi14_smc.bin +firmware: amdgpu/navi14_sos.bin +firmware: amdgpu/navi14_ta.bin +firmware: amdgpu/navi14_vcn.bin +firmware: amdgpu/navy_flounder_ce.bin +firmware: amdgpu/navy_flounder_dmcub.bin +firmware: amdgpu/navy_flounder_me.bin +firmware: amdgpu/navy_flounder_mec.bin +firmware: amdgpu/navy_flounder_mec2.bin +firmware: amdgpu/navy_flounder_pfp.bin +firmware: amdgpu/navy_flounder_rlc.bin +firmware: amdgpu/navy_flounder_sdma.bin +firmware: amdgpu/navy_flounder_smc.bin +firmware: amdgpu/navy_flounder_sos.bin +firmware: amdgpu/navy_flounder_ta.bin +firmware: amdgpu/navy_flounder_vcn.bin +firmware: amdgpu/oland_ce.bin +firmware: amdgpu/oland_k_smc.bin +firmware: amdgpu/oland_mc.bin +firmware: amdgpu/oland_me.bin +firmware: amdgpu/oland_pfp.bin +firmware: amdgpu/oland_rlc.bin +firmware: amdgpu/oland_smc.bin +firmware: amdgpu/oland_uvd.bin +firmware: amdgpu/picasso_asd.bin +firmware: amdgpu/picasso_ce.bin +firmware: amdgpu/picasso_gpu_info.bin +firmware: amdgpu/picasso_me.bin +firmware: amdgpu/picasso_mec.bin +firmware: amdgpu/picasso_mec2.bin +firmware: amdgpu/picasso_pfp.bin +firmware: amdgpu/picasso_rlc.bin +firmware: amdgpu/picasso_rlc_am4.bin +firmware: amdgpu/picasso_sdma.bin +firmware: amdgpu/picasso_ta.bin +firmware: amdgpu/picasso_vcn.bin +firmware: amdgpu/pitcairn_ce.bin +firmware: amdgpu/pitcairn_k_smc.bin +firmware: amdgpu/pitcairn_mc.bin +firmware: amdgpu/pitcairn_me.bin +firmware: amdgpu/pitcairn_pfp.bin +firmware: amdgpu/pitcairn_rlc.bin +firmware: amdgpu/pitcairn_smc.bin +firmware: amdgpu/pitcairn_uvd.bin +firmware: amdgpu/polaris10_ce.bin +firmware: amdgpu/polaris10_ce_2.bin +firmware: amdgpu/polaris10_k2_smc.bin +firmware: amdgpu/polaris10_k_mc.bin +firmware: amdgpu/polaris10_k_smc.bin +firmware: amdgpu/polaris10_mc.bin +firmware: amdgpu/polaris10_me.bin +firmware: amdgpu/polaris10_me_2.bin +firmware: amdgpu/polaris10_mec.bin +firmware: amdgpu/polaris10_mec2.bin +firmware: amdgpu/polaris10_mec2_2.bin +firmware: amdgpu/polaris10_mec_2.bin +firmware: amdgpu/polaris10_pfp.bin +firmware: amdgpu/polaris10_pfp_2.bin +firmware: amdgpu/polaris10_rlc.bin +firmware: amdgpu/polaris10_sdma.bin +firmware: amdgpu/polaris10_sdma1.bin +firmware: amdgpu/polaris10_smc.bin +firmware: amdgpu/polaris10_smc_sk.bin +firmware: amdgpu/polaris10_uvd.bin +firmware: amdgpu/polaris10_vce.bin +firmware: amdgpu/polaris11_ce.bin +firmware: amdgpu/polaris11_ce_2.bin +firmware: amdgpu/polaris11_k2_smc.bin +firmware: amdgpu/polaris11_k_mc.bin +firmware: amdgpu/polaris11_k_smc.bin +firmware: amdgpu/polaris11_mc.bin +firmware: amdgpu/polaris11_me.bin +firmware: amdgpu/polaris11_me_2.bin +firmware: amdgpu/polaris11_mec.bin +firmware: amdgpu/polaris11_mec2.bin +firmware: amdgpu/polaris11_mec2_2.bin +firmware: amdgpu/polaris11_mec_2.bin +firmware: amdgpu/polaris11_pfp.bin +firmware: amdgpu/polaris11_pfp_2.bin +firmware: amdgpu/polaris11_rlc.bin +firmware: amdgpu/polaris11_sdma.bin +firmware: amdgpu/polaris11_sdma1.bin +firmware: amdgpu/polaris11_smc.bin +firmware: amdgpu/polaris11_smc_sk.bin +firmware: amdgpu/polaris11_uvd.bin +firmware: amdgpu/polaris11_vce.bin +firmware: amdgpu/polaris12_32_mc.bin +firmware: amdgpu/polaris12_ce.bin +firmware: amdgpu/polaris12_ce_2.bin +firmware: amdgpu/polaris12_k_mc.bin +firmware: amdgpu/polaris12_k_smc.bin +firmware: amdgpu/polaris12_mc.bin +firmware: amdgpu/polaris12_me.bin +firmware: amdgpu/polaris12_me_2.bin +firmware: amdgpu/polaris12_mec.bin +firmware: amdgpu/polaris12_mec2.bin +firmware: amdgpu/polaris12_mec2_2.bin +firmware: amdgpu/polaris12_mec_2.bin +firmware: amdgpu/polaris12_pfp.bin +firmware: amdgpu/polaris12_pfp_2.bin +firmware: amdgpu/polaris12_rlc.bin +firmware: amdgpu/polaris12_sdma.bin +firmware: amdgpu/polaris12_sdma1.bin +firmware: amdgpu/polaris12_smc.bin +firmware: amdgpu/polaris12_uvd.bin +firmware: amdgpu/polaris12_vce.bin +firmware: amdgpu/raven2_asd.bin +firmware: amdgpu/raven2_ce.bin +firmware: amdgpu/raven2_gpu_info.bin +firmware: amdgpu/raven2_me.bin +firmware: amdgpu/raven2_mec.bin +firmware: amdgpu/raven2_mec2.bin +firmware: amdgpu/raven2_pfp.bin +firmware: amdgpu/raven2_rlc.bin +firmware: amdgpu/raven2_sdma.bin +firmware: amdgpu/raven2_ta.bin +firmware: amdgpu/raven2_vcn.bin +firmware: amdgpu/raven_asd.bin +firmware: amdgpu/raven_ce.bin +firmware: amdgpu/raven_dmcu.bin +firmware: amdgpu/raven_gpu_info.bin +firmware: amdgpu/raven_kicker_rlc.bin +firmware: amdgpu/raven_me.bin +firmware: amdgpu/raven_mec.bin +firmware: amdgpu/raven_mec2.bin +firmware: amdgpu/raven_pfp.bin +firmware: amdgpu/raven_rlc.bin +firmware: amdgpu/raven_sdma.bin +firmware: amdgpu/raven_ta.bin +firmware: amdgpu/raven_vcn.bin +firmware: amdgpu/renoir_asd.bin +firmware: amdgpu/renoir_ce.bin +firmware: amdgpu/renoir_dmcub.bin +firmware: amdgpu/renoir_gpu_info.bin +firmware: amdgpu/renoir_me.bin +firmware: amdgpu/renoir_mec.bin +firmware: amdgpu/renoir_pfp.bin +firmware: amdgpu/renoir_rlc.bin +firmware: amdgpu/renoir_sdma.bin +firmware: amdgpu/renoir_ta.bin +firmware: amdgpu/renoir_vcn.bin +firmware: amdgpu/si58_mc.bin +firmware: amdgpu/sienna_cichlid_ce.bin +firmware: amdgpu/sienna_cichlid_dmcub.bin +firmware: amdgpu/sienna_cichlid_me.bin +firmware: amdgpu/sienna_cichlid_mec.bin +firmware: amdgpu/sienna_cichlid_mec2.bin +firmware: amdgpu/sienna_cichlid_mes.bin +firmware: amdgpu/sienna_cichlid_pfp.bin +firmware: amdgpu/sienna_cichlid_rlc.bin +firmware: amdgpu/sienna_cichlid_sdma.bin +firmware: amdgpu/sienna_cichlid_smc.bin +firmware: amdgpu/sienna_cichlid_sos.bin +firmware: amdgpu/sienna_cichlid_ta.bin +firmware: amdgpu/sienna_cichlid_vcn.bin +firmware: amdgpu/stoney_ce.bin +firmware: amdgpu/stoney_me.bin +firmware: amdgpu/stoney_mec.bin +firmware: amdgpu/stoney_pfp.bin +firmware: amdgpu/stoney_rlc.bin +firmware: amdgpu/stoney_sdma.bin +firmware: amdgpu/stoney_uvd.bin +firmware: amdgpu/stoney_vce.bin +firmware: amdgpu/tahiti_ce.bin +firmware: amdgpu/tahiti_mc.bin +firmware: amdgpu/tahiti_me.bin +firmware: amdgpu/tahiti_pfp.bin +firmware: amdgpu/tahiti_rlc.bin +firmware: amdgpu/tahiti_smc.bin +firmware: amdgpu/tahiti_uvd.bin +firmware: amdgpu/tonga_ce.bin +firmware: amdgpu/tonga_k_smc.bin +firmware: amdgpu/tonga_mc.bin +firmware: amdgpu/tonga_me.bin +firmware: amdgpu/tonga_mec.bin +firmware: amdgpu/tonga_mec2.bin +firmware: amdgpu/tonga_pfp.bin +firmware: amdgpu/tonga_rlc.bin +firmware: amdgpu/tonga_sdma.bin +firmware: amdgpu/tonga_sdma1.bin +firmware: amdgpu/tonga_smc.bin +firmware: amdgpu/tonga_uvd.bin +firmware: amdgpu/tonga_vce.bin +firmware: amdgpu/topaz_ce.bin +firmware: amdgpu/topaz_k_smc.bin +firmware: amdgpu/topaz_mc.bin +firmware: amdgpu/topaz_me.bin +firmware: amdgpu/topaz_mec.bin +firmware: amdgpu/topaz_pfp.bin +firmware: amdgpu/topaz_rlc.bin +firmware: amdgpu/topaz_sdma.bin +firmware: amdgpu/topaz_sdma1.bin +firmware: amdgpu/topaz_smc.bin +firmware: amdgpu/vangogh_asd.bin +firmware: amdgpu/vangogh_ce.bin +firmware: amdgpu/vangogh_dmcub.bin +firmware: amdgpu/vangogh_gpu_info.bin +firmware: amdgpu/vangogh_me.bin +firmware: amdgpu/vangogh_mec.bin +firmware: amdgpu/vangogh_mec2.bin +firmware: amdgpu/vangogh_pfp.bin +firmware: amdgpu/vangogh_rlc.bin +firmware: amdgpu/vangogh_sdma.bin +firmware: amdgpu/vangogh_toc.bin +firmware: amdgpu/vangogh_vcn.bin +firmware: amdgpu/vega10_acg_smc.bin +firmware: amdgpu/vega10_asd.bin +firmware: amdgpu/vega10_ce.bin +firmware: amdgpu/vega10_gpu_info.bin +firmware: amdgpu/vega10_me.bin +firmware: amdgpu/vega10_mec.bin +firmware: amdgpu/vega10_mec2.bin +firmware: amdgpu/vega10_pfp.bin +firmware: amdgpu/vega10_rlc.bin +firmware: amdgpu/vega10_sdma.bin +firmware: amdgpu/vega10_sdma1.bin +firmware: amdgpu/vega10_smc.bin +firmware: amdgpu/vega10_sos.bin +firmware: amdgpu/vega10_uvd.bin +firmware: amdgpu/vega10_vce.bin +firmware: amdgpu/vega12_asd.bin +firmware: amdgpu/vega12_ce.bin +firmware: amdgpu/vega12_gpu_info.bin +firmware: amdgpu/vega12_me.bin +firmware: amdgpu/vega12_mec.bin +firmware: amdgpu/vega12_mec2.bin +firmware: amdgpu/vega12_pfp.bin +firmware: amdgpu/vega12_rlc.bin +firmware: amdgpu/vega12_sdma.bin +firmware: amdgpu/vega12_sdma1.bin +firmware: amdgpu/vega12_smc.bin +firmware: amdgpu/vega12_sos.bin +firmware: amdgpu/vega12_uvd.bin +firmware: amdgpu/vega12_vce.bin +firmware: amdgpu/vega20_asd.bin +firmware: amdgpu/vega20_ce.bin +firmware: amdgpu/vega20_me.bin +firmware: amdgpu/vega20_mec.bin +firmware: amdgpu/vega20_mec2.bin +firmware: amdgpu/vega20_pfp.bin +firmware: amdgpu/vega20_rlc.bin +firmware: amdgpu/vega20_sdma.bin +firmware: amdgpu/vega20_sdma1.bin +firmware: amdgpu/vega20_smc.bin +firmware: amdgpu/vega20_sos.bin +firmware: amdgpu/vega20_ta.bin +firmware: amdgpu/vega20_uvd.bin +firmware: amdgpu/vega20_vce.bin +firmware: amdgpu/vegam_ce.bin +firmware: amdgpu/vegam_me.bin +firmware: amdgpu/vegam_mec.bin +firmware: amdgpu/vegam_mec2.bin +firmware: amdgpu/vegam_pfp.bin +firmware: amdgpu/vegam_rlc.bin +firmware: amdgpu/vegam_sdma.bin +firmware: amdgpu/vegam_sdma1.bin +firmware: amdgpu/vegam_smc.bin +firmware: amdgpu/vegam_uvd.bin +firmware: amdgpu/vegam_vce.bin +firmware: amdgpu/verde_ce.bin +firmware: amdgpu/verde_k_smc.bin +firmware: amdgpu/verde_mc.bin +firmware: amdgpu/verde_me.bin +firmware: amdgpu/verde_pfp.bin +firmware: amdgpu/verde_rlc.bin +firmware: amdgpu/verde_smc.bin +firmware: amdgpu/verde_uvd.bin +firmware: amdgpu/yellow_carp_asd.bin +firmware: amdgpu/yellow_carp_ce.bin +firmware: amdgpu/yellow_carp_dmcub.bin +firmware: amdgpu/yellow_carp_gpu_info.bin +firmware: amdgpu/yellow_carp_me.bin +firmware: amdgpu/yellow_carp_mec.bin +firmware: amdgpu/yellow_carp_mec2.bin +firmware: amdgpu/yellow_carp_pfp.bin +firmware: amdgpu/yellow_carp_rlc.bin +firmware: amdgpu/yellow_carp_sdma.bin +firmware: amdgpu/yellow_carp_ta.bin +firmware: amdgpu/yellow_carp_toc.bin +firmware: amdgpu/yellow_carp_vcn.bin +firmware: ast_dp501_fw.bin +firmware: atmsar11.fw +firmware: bnx2/bnx2-mips-06-6.2.3.fw +firmware: bnx2/bnx2-mips-09-6.2.1b.fw +firmware: bnx2/bnx2-rv2p-06-6.0.15.fw +firmware: bnx2/bnx2-rv2p-09-6.0.17.fw +firmware: bnx2/bnx2-rv2p-09ax-6.0.17.fw +firmware: bnx2x/bnx2x-e1-7.13.15.0.fw +firmware: bnx2x/bnx2x-e1-7.13.21.0.fw +firmware: bnx2x/bnx2x-e1h-7.13.15.0.fw +firmware: bnx2x/bnx2x-e1h-7.13.21.0.fw +firmware: bnx2x/bnx2x-e2-7.13.15.0.fw +firmware: bnx2x/bnx2x-e2-7.13.21.0.fw +firmware: c218tunx.cod +firmware: c320tunx.cod +firmware: cadence/mhdp8546.bin +firmware: cavium/cnn55xx_se.fw +firmware: cbfw-3.2.5.1.bin +firmware: cp204unx.cod +firmware: ct2fw-3.2.5.1.bin +firmware: ctfw-3.2.5.1.bin +firmware: cxgb3/ael2005_opt_edc.bin +firmware: cxgb3/ael2005_twx_edc.bin +firmware: cxgb3/ael2020_twx_edc.bin +firmware: cxgb3/t3b_psram-1.1.0.bin +firmware: cxgb3/t3c_psram-1.1.0.bin +firmware: cxgb3/t3fw-7.12.0.bin +firmware: cxgb4/t4fw.bin +firmware: cxgb4/t5fw.bin +firmware: cxgb4/t6fw.bin +firmware: e100/d101m_ucode.bin +firmware: e100/d101s_ucode.bin +firmware: e100/d102e_ucode.bin +firmware: hfi1_dc8051.fw +firmware: hfi1_fabric.fw +firmware: hfi1_pcie.fw +firmware: hfi1_sbus.fw +firmware: i915/adlp_dmc_ver2_12.bin +firmware: i915/adlp_guc_62.0.3.bin +firmware: i915/adls_dmc_ver2_01.bin +firmware: i915/bxt_dmc_ver1_07.bin +firmware: i915/bxt_guc_62.0.0.bin +firmware: i915/bxt_huc_2.0.0.bin +firmware: i915/cml_guc_62.0.0.bin +firmware: i915/cml_huc_4.0.0.bin +firmware: i915/dg1_dmc_ver2_02.bin +firmware: i915/ehl_guc_62.0.0.bin +firmware: i915/ehl_huc_9.0.0.bin +firmware: i915/glk_dmc_ver1_04.bin +firmware: i915/glk_guc_62.0.0.bin +firmware: i915/glk_huc_4.0.0.bin +firmware: i915/icl_dmc_ver1_09.bin +firmware: i915/icl_guc_62.0.0.bin +firmware: i915/icl_huc_9.0.0.bin +firmware: i915/kbl_dmc_ver1_04.bin +firmware: i915/kbl_guc_62.0.0.bin +firmware: i915/kbl_huc_4.0.0.bin +firmware: i915/rkl_dmc_ver2_03.bin +firmware: i915/skl_dmc_ver1_27.bin +firmware: i915/skl_guc_62.0.0.bin +firmware: i915/skl_huc_2.0.0.bin +firmware: i915/tgl_dmc_ver2_12.bin +firmware: i915/tgl_guc_62.0.0.bin +firmware: i915/tgl_huc_7.9.3.bin +firmware: idt82p33xxx.bin +firmware: imx/sdma/sdma-imx7d.bin +firmware: intel/ice/ddp/ice.pkg +firmware: isci/isci_firmware.bin +firmware: lantiq/xrx200_phy11g_a14.bin +firmware: lantiq/xrx200_phy11g_a22.bin +firmware: lantiq/xrx200_phy22f_a14.bin +firmware: lantiq/xrx200_phy22f_a22.bin +firmware: lantiq/xrx300_phy11g_a21.bin +firmware: lantiq/xrx300_phy22f_a21.bin +firmware: lattice-ecp3.bit +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: netronome/nic_AMDA0058-0011_2x40.nffw +firmware: netronome/nic_AMDA0058-0012_2x40.nffw +firmware: netronome/nic_AMDA0081-0001_1x40.nffw +firmware: netronome/nic_AMDA0081-0001_4x10.nffw +firmware: netronome/nic_AMDA0096-0001_2x10.nffw +firmware: netronome/nic_AMDA0097-0001_2x40.nffw +firmware: netronome/nic_AMDA0097-0001_4x10_1x40.nffw +firmware: netronome/nic_AMDA0097-0001_8x10.nffw +firmware: netronome/nic_AMDA0099-0001_1x10_1x25.nffw +firmware: netronome/nic_AMDA0099-0001_2x10.nffw +firmware: netronome/nic_AMDA0099-0001_2x25.nffw +firmware: nvidia/tegra124/xusb.bin +firmware: nvidia/tegra186/vic04_ucode.bin +firmware: nvidia/tegra186/xusb.bin +firmware: nvidia/tegra194/vic.bin +firmware: nvidia/tegra194/xusb.bin +firmware: nvidia/tegra210/vic04_ucode.bin +firmware: nvidia/tegra210/xusb.bin +firmware: pca200e_ecd.bin2 +firmware: qat_4xxx.bin +firmware: qat_4xxx_mmp.bin +firmware: qat_895xcc.bin +firmware: qat_895xcc_mmp.bin +firmware: qat_c3xxx.bin +firmware: qat_c3xxx_mmp.bin +firmware: qat_c62x.bin +firmware: qat_c62x_mmp.bin +firmware: qcom/a300_pfp.fw +firmware: qcom/a300_pm4.fw +firmware: qcom/a330_pfp.fw +firmware: qcom/a330_pm4.fw +firmware: qcom/a420_pfp.fw +firmware: qcom/a420_pm4.fw +firmware: qcom/a530_pfp.fw +firmware: qcom/a530_pm4.fw +firmware: qcom/a530_zap.b00 +firmware: qcom/a530_zap.b01 +firmware: qcom/a530_zap.b02 +firmware: qcom/a530_zap.mdt +firmware: qcom/a530v3_gpmu.fw2 +firmware: qcom/a630_gmu.bin +firmware: qcom/a630_sqe.fw +firmware: qcom/a630_zap.mbn +firmware: ql2100_fw.bin +firmware: ql2200_fw.bin +firmware: ql2300_fw.bin +firmware: ql2322_fw.bin +firmware: ql2400_fw.bin +firmware: ql2500_fw.bin +firmware: qlogic/1040.bin +firmware: qlogic/12160.bin +firmware: qlogic/1280.bin +firmware: qlogic/sd7220.fw +firmware: r8a779x_usb3_v1.dlmem +firmware: r8a779x_usb3_v2.dlmem +firmware: r8a779x_usb3_v3.dlmem +firmware: radeon/ARUBA_me.bin +firmware: radeon/ARUBA_pfp.bin +firmware: radeon/ARUBA_rlc.bin +firmware: radeon/BARTS_mc.bin +firmware: radeon/BARTS_me.bin +firmware: radeon/BARTS_pfp.bin +firmware: radeon/BARTS_smc.bin +firmware: radeon/BONAIRE_ce.bin +firmware: radeon/BONAIRE_mc.bin +firmware: radeon/BONAIRE_mc2.bin +firmware: radeon/BONAIRE_me.bin +firmware: radeon/BONAIRE_mec.bin +firmware: radeon/BONAIRE_pfp.bin +firmware: radeon/BONAIRE_rlc.bin +firmware: radeon/BONAIRE_sdma.bin +firmware: radeon/BONAIRE_smc.bin +firmware: radeon/BONAIRE_uvd.bin +firmware: radeon/BONAIRE_vce.bin +firmware: radeon/BTC_rlc.bin +firmware: radeon/CAICOS_mc.bin +firmware: radeon/CAICOS_me.bin +firmware: radeon/CAICOS_pfp.bin +firmware: radeon/CAICOS_smc.bin +firmware: radeon/CAYMAN_mc.bin +firmware: radeon/CAYMAN_me.bin +firmware: radeon/CAYMAN_pfp.bin +firmware: radeon/CAYMAN_rlc.bin +firmware: radeon/CAYMAN_smc.bin +firmware: radeon/CEDAR_me.bin +firmware: radeon/CEDAR_pfp.bin +firmware: radeon/CEDAR_rlc.bin +firmware: radeon/CEDAR_smc.bin +firmware: radeon/CYPRESS_me.bin +firmware: radeon/CYPRESS_pfp.bin +firmware: radeon/CYPRESS_rlc.bin +firmware: radeon/CYPRESS_smc.bin +firmware: radeon/CYPRESS_uvd.bin +firmware: radeon/HAINAN_ce.bin +firmware: radeon/HAINAN_mc.bin +firmware: radeon/HAINAN_mc2.bin +firmware: radeon/HAINAN_me.bin +firmware: radeon/HAINAN_pfp.bin +firmware: radeon/HAINAN_rlc.bin +firmware: radeon/HAINAN_smc.bin +firmware: radeon/HAWAII_ce.bin +firmware: radeon/HAWAII_mc.bin +firmware: radeon/HAWAII_mc2.bin +firmware: radeon/HAWAII_me.bin +firmware: radeon/HAWAII_mec.bin +firmware: radeon/HAWAII_pfp.bin +firmware: radeon/HAWAII_rlc.bin +firmware: radeon/HAWAII_sdma.bin +firmware: radeon/HAWAII_smc.bin +firmware: radeon/JUNIPER_me.bin +firmware: radeon/JUNIPER_pfp.bin +firmware: radeon/JUNIPER_rlc.bin +firmware: radeon/JUNIPER_smc.bin +firmware: radeon/KABINI_ce.bin +firmware: radeon/KABINI_me.bin +firmware: radeon/KABINI_mec.bin +firmware: radeon/KABINI_pfp.bin +firmware: radeon/KABINI_rlc.bin +firmware: radeon/KABINI_sdma.bin +firmware: radeon/KAVERI_ce.bin +firmware: radeon/KAVERI_me.bin +firmware: radeon/KAVERI_mec.bin +firmware: radeon/KAVERI_pfp.bin +firmware: radeon/KAVERI_rlc.bin +firmware: radeon/KAVERI_sdma.bin +firmware: radeon/MULLINS_ce.bin +firmware: radeon/MULLINS_me.bin +firmware: radeon/MULLINS_mec.bin +firmware: radeon/MULLINS_pfp.bin +firmware: radeon/MULLINS_rlc.bin +firmware: radeon/MULLINS_sdma.bin +firmware: radeon/OLAND_ce.bin +firmware: radeon/OLAND_mc.bin +firmware: radeon/OLAND_mc2.bin +firmware: radeon/OLAND_me.bin +firmware: radeon/OLAND_pfp.bin +firmware: radeon/OLAND_rlc.bin +firmware: radeon/OLAND_smc.bin +firmware: radeon/PALM_me.bin +firmware: radeon/PALM_pfp.bin +firmware: radeon/PITCAIRN_ce.bin +firmware: radeon/PITCAIRN_mc.bin +firmware: radeon/PITCAIRN_mc2.bin +firmware: radeon/PITCAIRN_me.bin +firmware: radeon/PITCAIRN_pfp.bin +firmware: radeon/PITCAIRN_rlc.bin +firmware: radeon/PITCAIRN_smc.bin +firmware: radeon/R100_cp.bin +firmware: radeon/R200_cp.bin +firmware: radeon/R300_cp.bin +firmware: radeon/R420_cp.bin +firmware: radeon/R520_cp.bin +firmware: radeon/R600_me.bin +firmware: radeon/R600_pfp.bin +firmware: radeon/R600_rlc.bin +firmware: radeon/R600_uvd.bin +firmware: radeon/R700_rlc.bin +firmware: radeon/REDWOOD_me.bin +firmware: radeon/REDWOOD_pfp.bin +firmware: radeon/REDWOOD_rlc.bin +firmware: radeon/REDWOOD_smc.bin +firmware: radeon/RS600_cp.bin +firmware: radeon/RS690_cp.bin +firmware: radeon/RS780_me.bin +firmware: radeon/RS780_pfp.bin +firmware: radeon/RS780_uvd.bin +firmware: radeon/RV610_me.bin +firmware: radeon/RV610_pfp.bin +firmware: radeon/RV620_me.bin +firmware: radeon/RV620_pfp.bin +firmware: radeon/RV630_me.bin +firmware: radeon/RV630_pfp.bin +firmware: radeon/RV635_me.bin +firmware: radeon/RV635_pfp.bin +firmware: radeon/RV670_me.bin +firmware: radeon/RV670_pfp.bin +firmware: radeon/RV710_me.bin +firmware: radeon/RV710_pfp.bin +firmware: radeon/RV710_smc.bin +firmware: radeon/RV710_uvd.bin +firmware: radeon/RV730_me.bin +firmware: radeon/RV730_pfp.bin +firmware: radeon/RV730_smc.bin +firmware: radeon/RV740_smc.bin +firmware: radeon/RV770_me.bin +firmware: radeon/RV770_pfp.bin +firmware: radeon/RV770_smc.bin +firmware: radeon/RV770_uvd.bin +firmware: radeon/SUMO2_me.bin +firmware: radeon/SUMO2_pfp.bin +firmware: radeon/SUMO_me.bin +firmware: radeon/SUMO_pfp.bin +firmware: radeon/SUMO_rlc.bin +firmware: radeon/SUMO_uvd.bin +firmware: radeon/TAHITI_ce.bin +firmware: radeon/TAHITI_mc.bin +firmware: radeon/TAHITI_mc2.bin +firmware: radeon/TAHITI_me.bin +firmware: radeon/TAHITI_pfp.bin +firmware: radeon/TAHITI_rlc.bin +firmware: radeon/TAHITI_smc.bin +firmware: radeon/TAHITI_uvd.bin +firmware: radeon/TAHITI_vce.bin +firmware: radeon/TURKS_mc.bin +firmware: radeon/TURKS_me.bin +firmware: radeon/TURKS_pfp.bin +firmware: radeon/TURKS_smc.bin +firmware: radeon/VERDE_ce.bin +firmware: radeon/VERDE_mc.bin +firmware: radeon/VERDE_mc2.bin +firmware: radeon/VERDE_me.bin +firmware: radeon/VERDE_pfp.bin +firmware: radeon/VERDE_rlc.bin +firmware: radeon/VERDE_smc.bin +firmware: radeon/banks_k_2_smc.bin +firmware: radeon/bonaire_ce.bin +firmware: radeon/bonaire_k_smc.bin +firmware: radeon/bonaire_mc.bin +firmware: radeon/bonaire_me.bin +firmware: radeon/bonaire_mec.bin +firmware: radeon/bonaire_pfp.bin +firmware: radeon/bonaire_rlc.bin +firmware: radeon/bonaire_sdma.bin +firmware: radeon/bonaire_smc.bin +firmware: radeon/bonaire_uvd.bin +firmware: radeon/hainan_ce.bin +firmware: radeon/hainan_k_smc.bin +firmware: radeon/hainan_mc.bin +firmware: radeon/hainan_me.bin +firmware: radeon/hainan_pfp.bin +firmware: radeon/hainan_rlc.bin +firmware: radeon/hainan_smc.bin +firmware: radeon/hawaii_ce.bin +firmware: radeon/hawaii_k_smc.bin +firmware: radeon/hawaii_mc.bin +firmware: radeon/hawaii_me.bin +firmware: radeon/hawaii_mec.bin +firmware: radeon/hawaii_pfp.bin +firmware: radeon/hawaii_rlc.bin +firmware: radeon/hawaii_sdma.bin +firmware: radeon/hawaii_smc.bin +firmware: radeon/kabini_ce.bin +firmware: radeon/kabini_me.bin +firmware: radeon/kabini_mec.bin +firmware: radeon/kabini_pfp.bin +firmware: radeon/kabini_rlc.bin +firmware: radeon/kabini_sdma.bin +firmware: radeon/kaveri_ce.bin +firmware: radeon/kaveri_me.bin +firmware: radeon/kaveri_mec.bin +firmware: radeon/kaveri_mec2.bin +firmware: radeon/kaveri_pfp.bin +firmware: radeon/kaveri_rlc.bin +firmware: radeon/kaveri_sdma.bin +firmware: radeon/mullins_ce.bin +firmware: radeon/mullins_me.bin +firmware: radeon/mullins_mec.bin +firmware: radeon/mullins_pfp.bin +firmware: radeon/mullins_rlc.bin +firmware: radeon/mullins_sdma.bin +firmware: radeon/oland_ce.bin +firmware: radeon/oland_k_smc.bin +firmware: radeon/oland_mc.bin +firmware: radeon/oland_me.bin +firmware: radeon/oland_pfp.bin +firmware: radeon/oland_rlc.bin +firmware: radeon/oland_smc.bin +firmware: radeon/pitcairn_ce.bin +firmware: radeon/pitcairn_k_smc.bin +firmware: radeon/pitcairn_mc.bin +firmware: radeon/pitcairn_me.bin +firmware: radeon/pitcairn_pfp.bin +firmware: radeon/pitcairn_rlc.bin +firmware: radeon/pitcairn_smc.bin +firmware: radeon/si58_mc.bin +firmware: radeon/tahiti_ce.bin +firmware: radeon/tahiti_mc.bin +firmware: radeon/tahiti_me.bin +firmware: radeon/tahiti_pfp.bin +firmware: radeon/tahiti_rlc.bin +firmware: radeon/tahiti_smc.bin +firmware: radeon/verde_ce.bin +firmware: radeon/verde_k_smc.bin +firmware: radeon/verde_mc.bin +firmware: radeon/verde_me.bin +firmware: radeon/verde_pfp.bin +firmware: radeon/verde_rlc.bin +firmware: radeon/verde_smc.bin +firmware: regulatory.db +firmware: regulatory.db.p7s +firmware: rockchip/dptx.bin +firmware: rp2.fw +firmware: rtl_nic/rtl8105e-1.fw +firmware: rtl_nic/rtl8106e-1.fw +firmware: rtl_nic/rtl8106e-2.fw +firmware: rtl_nic/rtl8107e-1.fw +firmware: rtl_nic/rtl8107e-2.fw +firmware: rtl_nic/rtl8125a-3.fw +firmware: rtl_nic/rtl8125b-2.fw +firmware: rtl_nic/rtl8168d-1.fw +firmware: rtl_nic/rtl8168d-2.fw +firmware: rtl_nic/rtl8168e-1.fw +firmware: rtl_nic/rtl8168e-2.fw +firmware: rtl_nic/rtl8168e-3.fw +firmware: rtl_nic/rtl8168f-1.fw +firmware: rtl_nic/rtl8168f-2.fw +firmware: rtl_nic/rtl8168fp-3.fw +firmware: rtl_nic/rtl8168g-2.fw +firmware: rtl_nic/rtl8168g-3.fw +firmware: rtl_nic/rtl8168h-1.fw +firmware: rtl_nic/rtl8168h-2.fw +firmware: rtl_nic/rtl8402-1.fw +firmware: rtl_nic/rtl8411-1.fw +firmware: rtl_nic/rtl8411-2.fw +firmware: slicoss/gbdownload.sys +firmware: slicoss/gbrcvucode.sys +firmware: slicoss/oasisdownload.sys +firmware: slicoss/oasisrcvucode.sys +firmware: solos-FPGA.bin +firmware: solos-Firmware.bin +firmware: solos-db-FPGA.bin +firmware: tigon/tg3.bin +firmware: tigon/tg357766.bin +firmware: tigon/tg3_tso.bin +firmware: tigon/tg3_tso5.bin +firmware: v4l-cx231xx-avcore-01.fw +firmware: v4l-cx23885-avcore-01.fw +firmware: v4l-cx25840.fw +firmware: vxge/X3fw-pxe.ncf +firmware: vxge/X3fw.ncf +firmware: wd719x-risc.bin +firmware: wd719x-wcs.bin diff --git a/debian.azure/abi/fwinfo.builtin b/debian.azure/abi/fwinfo.builtin new file mode 100644 index 0000000000000..e69de29bb2d1d diff --git a/debian.azure/abi/version b/debian.azure/abi/version new file mode 100644 index 0000000000000..3b2ac48a69ff7 --- /dev/null +++ b/debian.azure/abi/version @@ -0,0 +1 @@ +5.15.0-1058.66 diff --git a/debian.azure/changelog b/debian.azure/changelog new file mode 100644 index 0000000000000..865903c00b0d2 --- /dev/null +++ b/debian.azure/changelog @@ -0,0 +1,23007 @@ +linux-azure (5.15.0-1059.67) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1059.67 -proposed tracker (LP: #2055987) + + [ Ubuntu: 5.15.0-101.111 ] + + * jammy/linux: 5.15.0-101.111 -proposed tracker (LP: #2056026) + * Packaging resync (LP: #1786013) + - [Packaging] update annotations scripts + - debian/dkms-versions -- update from kernel-versions (main/s2024.02.05) + * CVE-2024-24855 + - scsi: lpfc: Fix a possible data race in lpfc_unregister_fcf_rescan() + * CVE-2024-1086 + - netfilter: nf_tables: reject QUEUE/DROP verdict parameters + * CVE-2024-1085 + - netfilter: nf_tables: check if catch-all set element is active in next + generation + * CVE-2023-32247 + - ksmbd: destroy expired sessions + * CVE-2023-23000 + - phy: tegra: xusb: Fix return value of tegra_xusb_find_port_node function + + -- Tim Gardner Fri, 08 Mar 2024 20:05:17 -0700 + +linux-azure (5.15.0-1058.66) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1058.66 -proposed tracker (LP: #2052049) + + * Azure: Enable CONFIG_TEST_LOCKUP (LP: #2052723) + - [Config] CONFIG_TEST_LOCKUP=m + + [ Ubuntu: 5.15.0-100.110 ] + + * jammy/linux: 5.15.0-100.110 -proposed tracker (LP: #2052616) + * i915 regression introduced with 5.5 kernel (LP: #2044131) + - drm/i915: Skip some timing checks on BXT/GLK DSI transcoders + * Audio balancing setting doesn't work with the cirrus codec (LP: #2051050) + - ALSA: hda/cs8409: Suppress vmaster control for Dolphin models + * partproke is broken on empty loopback device (LP: #2049689) + - block: Move checking GENHD_FL_NO_PART to bdev_add_partition() + * CVE-2023-0340 + - vhost: use kzalloc() instead of kmalloc() followed by memset() + * CVE-2023-51780 + - atm: Fix Use-After-Free in do_vcc_ioctl + * CVE-2023-6915 + - ida: Fix crash in ida_free when the bitmap is empty + * CVE-2024-0646 + - net: tls, update curr on splice as well + * CVE-2024-0565 + - smb: client: fix OOB in receive_encrypted_standard() + * CVE-2023-51781 + - appletalk: Fix Use-After-Free in atalk_ioctl + * Jammy update: v5.15.143 upstream stable release (LP: #2050858) + - vdpa/mlx5: preserve CVQ vringh index + - hrtimers: Push pending hrtimers away from outgoing CPU earlier + - i2c: designware: Fix corrupted memory seen in the ISR + - netfilter: ipset: fix race condition between swap/destroy and kernel side + add/del/test + - tg3: Move the [rt]x_dropped counters to tg3_napi + - tg3: Increment tx_dropped in tg3_tso_bug() + - kconfig: fix memory leak from range properties + - drm/amdgpu: correct chunk_ptr to a pointer to chunk. + - platform/x86: asus-wmi: Adjust tablet/lidflip handling to use enum + - platform/x86: asus-wmi: Add support for ROG X13 tablet mode + - platform/x86: asus-wmi: Simplify tablet-mode-switch probing + - platform/x86: asus-wmi: Simplify tablet-mode-switch handling + - platform/x86: asus-wmi: Move i8042 filter install to shared asus-wmi code + - of: dynamic: Fix of_reconfig_get_state_change() return value documentation + - platform/x86: wmi: Allow duplicate GUIDs for drivers that use struct + wmi_driver + - platform/x86: wmi: Skip blocks with zero instances + - ipv6: fix potential NULL deref in fib6_add() + - octeontx2-pf: Add missing mutex lock in otx2_get_pauseparam + - octeontx2-af: Check return value of nix_get_nixlf before using nixlf + - hv_netvsc: rndis_filter needs to select NLS + - r8152: Rename RTL8152_UNPLUG to RTL8152_INACCESSIBLE + - r8152: Add RTL8152_INACCESSIBLE checks to more loops + - r8152: Add RTL8152_INACCESSIBLE to r8156b_wait_loading_flash() + - r8152: Add RTL8152_INACCESSIBLE to r8153_pre_firmware_1() + - r8152: Add RTL8152_INACCESSIBLE to r8153_aldps_en() + - mlxbf-bootctl: correctly identify secure boot with development keys + - platform/mellanox: Add null pointer checks for devm_kasprintf() + - platform/mellanox: Check devm_hwmon_device_register_with_groups() return + value + - arcnet: restoring support for multiple Sohard Arcnet cards + - net: stmmac: fix FPE events losing + - octeontx2-af: fix a use-after-free in rvu_npa_register_reporters + - i40e: Fix unexpected MFS warning message + - net: bnxt: fix a potential use-after-free in bnxt_init_tc + - ionic: fix snprintf format length warning + - ionic: Fix dim work handling in split interrupt mode + - ipv4: ip_gre: Avoid skb_pull() failure in ipgre_xmit() + - net: hns: fix fake link up on xge port + - octeontx2-af: Update Tx link register range + - netfilter: nf_tables: validate family when identifying table via handle + - netfilter: xt_owner: Fix for unsafe access of sk->sk_socket + - tcp: do not accept ACK of bytes we never sent + - bpf: sockmap, updating the sg structure should also update curr + - psample: Require 'CAP_NET_ADMIN' when joining "packets" group + - net: add missing kdoc for struct genl_multicast_group::flags + - drop_monitor: Require 'CAP_SYS_ADMIN' when joining "events" group + - tee: optee: Fix supplicant based device enumeration + - RDMA/hns: Fix unnecessary err return when using invalid congest control + algorithm + - RDMA/irdma: Do not modify to SQD on error + - RDMA/irdma: Add wait for suspend on SQD + - arm64: dts: rockchip: Expand reg size of vdec node for RK3399 + - RDMA/rtrs-srv: Do not unconditionally enable irq + - RDMA/rtrs-clt: Start hb after path_up + - RDMA/rtrs-srv: Check return values while processing info request + - RDMA/rtrs-srv: Free srv_mr iu only when always_invalidate is true + - RDMA/rtrs-srv: Destroy path files after making sure no IOs in-flight + - RDMA/rtrs-clt: Fix the max_send_wr setting + - RDMA/rtrs-clt: Remove the warnings for req in_use check + - RDMA/bnxt_re: Correct module description string + - hwmon: (acpi_power_meter) Fix 4.29 MW bug + - hwmon: (nzxt-kraken2) Fix error handling path in kraken2_probe() + - ASoC: wm_adsp: fix memleak in wm_adsp_buffer_populate + - RDMA/core: Fix umem iterator when PAGE_SIZE is greater then HCA pgsz + - RDMA/irdma: Avoid free the non-cqp_request scratch + - arm64: dts: imx8mq: drop usb3-resume-missing-cas from usb + - arm64: dts: imx8mp: imx8mq: Add parkmode-disable-ss-quirk on DWC3 + - ARM: dts: imx6ul-pico: Describe the Ethernet PHY clock + - tracing: Fix a warning when allocating buffered events fails + - scsi: be2iscsi: Fix a memleak in beiscsi_init_wrb_handle() + - ARM: imx: Check return value of devm_kasprintf in imx_mmdc_perf_init + - ARM: dts: imx7: Declare timers compatible with fsl,imx6dl-gpt + - ARM: dts: imx28-xea: Pass the 'model' property + - riscv: fix misaligned access handling of C.SWSP and C.SDSP + - md: introduce md_ro_state + - md: don't leave 'MD_RECOVERY_FROZEN' in error path of md_set_readonly() + - kprobes: consistent rcu api usage for kretprobe holder + - nvme-pci: Add sleep quirk for Kingston drives + - io_uring: fix mutex_unlock with unreferenced ctx + - ALSA: usb-audio: Add Pioneer DJM-450 mixer controls + - ALSA: pcm: fix out-of-bounds in snd_pcm_state_names + - nilfs2: fix missing error check for sb_set_blocksize call + - nilfs2: prevent WARNING in nilfs_sufile_set_segment_usage() + - checkstack: fix printed address + - tracing: Always update snapshot buffer size + - tracing: Disable snapshot buffer when stopping instance tracers + - tracing: Fix incomplete locking when disabling buffered events + - tracing: Fix a possible race when disabling buffered events + - packet: Move reference count in packet_sock to atomic_long_t + - regmap: fix bogus error on regcache_sync success + - platform/surface: aggregator: fix recv_buf() return value + - arm64: dts: mediatek: mt7622: fix memory node warning check + - arm64: dts: mediatek: mt8183-kukui-jacuzzi: fix dsi unnecessary cells + properties + - arm64: dts: mediatek: mt8173-evb: Fix regulator-fixed node names + - arm64: dts: mediatek: mt8183: Fix unit address for scp reserved memory + - binder: fix memory leaks of spam and pending work + - kallsyms: Make kallsyms_on_each_symbol generally available + - coresight: etm4x: Make etm4_remove_dev() return void + - coresight: etm4x: Remove bogous __exit annotation for some functions + - misc: mei: client.c: return negative error code in mei_cl_write + - misc: mei: client.c: fix problem of return '-EOVERFLOW' in mei_cl_write + - ring-buffer: Force absolute timestamp on discard of event + - tracing: Set actual size after ring buffer resize + - tracing: Stop current tracer when resizing buffer + - r8169: fix rtl8125b PAUSE frames blasting when suspended + - mm: fix oops when filemap_map_pmd() without prealloc_pte + - io_uring/af_unix: disable sending io_uring over sockets + - platform/x86: asus-wmi: Fix kbd_dock_devid tablet-switch reporting + - docs/process/howto: Replace C89 with C11 + - tools headers UAPI: Sync linux/perf_event.h with the kernel sources + - arm64: dts: mediatek: align thermal zone node names with dtschema + - arm64: dts: mediatek: mt8183: Move thermal-zones to the root node + - arm64: dts: mediatek: add missing space before { + - arm64: dts: mt8183: kukui: Fix underscores in node names + - gpiolib: sysfs: Fix error handling on failed export + - drm/amd/amdgpu: Fix warnings in amdgpu/amdgpu_display.c + - drm/amdgpu: correct the amdgpu runtime dereference usage count + - usb: gadget: f_hid: fix report descriptor allocation + - parport: Add support for Brainboxes IX/UC/PX parallel cards + - usb: typec: class: fix typec_altmode_put_partner to put plugs + - ARM: PL011: Fix DMA support + - serial: sc16is7xx: address RX timeout interrupt errata + - serial: 8250: 8250_omap: Clear UART_HAS_RHR_IT_DIS bit + - serial: 8250: 8250_omap: Do not start RX DMA on THRI interrupt + - serial: 8250_omap: Add earlycon support for the AM654 UART controller + - x86/CPU/AMD: Check vendor in the AMD microcode callback + - KVM: s390/mm: Properly reset no-dat + - KVM: SVM: Update EFER software model on CR0 trap for SEV-ES + - MIPS: Loongson64: Reserve vgabios memory on boot + - MIPS: Loongson64: Enable DMA noncoherent support + - cifs: Fix non-availability of dedup breaking generic/304 + - smb: client: fix potential NULL deref in parse_dfs_referrals() + - devcoredump : Serialize devcd_del work + - devcoredump: Send uevent once devcd is ready + - Linux 5.15.143 + * Intel E810-XXV - NETDEV WATCHDOG: (ice): transmit queue timed out + (LP: #2036239) + - ice: Add feature bitmap, helpers and a check for DSCP + - ice: Add driver support for firmware changes for LAG + - ice: alter feature support check for SRIOV and LAG + * Don't WARN_ON_ONCE() for a broken discovery table (LP: #2048404) + - perf/x86/uncore: Don't WARN_ON_ONCE() for a broken discovery table + * Reject connection when malformed L2CAP signal packet is received + (LP: #2047634) + - Bluetooth: L2CAP: Send reject on command corrupted request + * Jammy update: v5.15.142 upstream stable release (LP: #2050849) + - pinctrl: avoid reload of p state in list iteration + - firewire: core: fix possible memory leak in create_units() + - mmc: cqhci: Increase recovery halt timeout + - mmc: cqhci: Warn of halt or task clear failure + - mmc: cqhci: Fix task clearing in CQE error recovery + - mmc: block: Retry commands in CQE error recovery + - mmc: block: Do not lose cache flush during CQE error recovery + - mmc: block: Be sure to wait while busy in CQE error recovery + - ALSA: hda: Disable power-save on KONTRON SinglePC + - ALSA: hda/realtek: Headset Mic VREF to 100% + - ALSA: hda/realtek: Add supported ALC257 for ChromeOS + - dm-verity: align struct dm_verity_fec_io properly + - dm verity: don't perform FEC for failed readahead IO + - bcache: revert replacing IS_ERR_OR_NULL with IS_ERR + - iommu/vt-d: Add MTL to quirk list to skip TE disabling + - powerpc: Don't clobber f0/vs0 during fp|altivec register save + - parisc: Drop the HP-UX ENOSYM and EREMOTERELEASE error codes + - btrfs: ref-verify: fix memory leaks in btrfs_ref_tree_mod() + - btrfs: fix off-by-one when checking chunk map includes logical address + - btrfs: send: ensure send_fd is writable + - btrfs: make error messages more clear when getting a chunk map + - Input: xpad - add HyperX Clutch Gladiate Support + - vlan: introduce vlan_dev_free_egress_priority + - vlan: move dev_put into vlan_dev_uninit + - rcu: Avoid tracing a few functions executed in stop machine + - hv_netvsc: fix race of netvsc and VF register_netdevice + - USB: core: Change configuration warnings to notices + - usb: config: fix iteration issue in 'usb_get_bos_descriptor()' + - dpaa2-eth: increase the needed headroom to account for alignment + - uapi: propagate __struct_group() attributes to the container union + - selftests/net: ipsec: fix constant out of range + - octeontx2-af: Fix possible buffer overflow + - net: stmmac: xgmac: Disable FPE MMC interrupts + - octeontx2-pf: Fix adding mbox work queue entry when num_vfs > 64 + - Revert "workqueue: remove unused cancel_work()" + - r8169: prevent potential deadlock in rtl8169_close + - ravb: Fix races between ravb_tx_timeout_work() and net related ops + - net: ravb: Check return value of reset_control_deassert() + - net: ravb: Use pm_runtime_resume_and_get() + - net: ravb: Start TX queues after HW initialization succeeded + - net: ravb: Stop DMA in case of failures on ravb_open() + - perf intel-pt: Fix async branch flags + - selftests/resctrl: Add missing SPDX license to Makefile + - selftests/resctrl: Move _GNU_SOURCE define into Makefile + - smb3: fix touch -h of symlink + - ASoC: Intel: Move soc_intel_is_foo() helpers to a generic header + - ASoC: SOF: sof-pci-dev: use community key on all Up boards + - ASoC: SOF: sof-pci-dev: add parameter to override topology filename + - ASoC: SOF: sof-pci-dev: don't use the community key on APL Chromebooks + - ASoC: SOF: sof-pci-dev: Fix community key quirk detection + - fbdev: stifb: Make the STI next font pointer a 32-bit signed offset + - fs: add ctime accessors infrastructure + - smb3: fix caching of ctime on setxattr + - cpufreq: imx6q: don't warn for disabling a non-existing frequency + - cpufreq: imx6q: Don't disable 792 Mhz OPP unnecessarily + - iommu/vt-d: Omit devTLB invalidation requests when TES=0 + - iommu/vt-d: Make context clearing consistent with context mapping + - mmc: core: add helpers mmc_regulator_enable/disable_vqmmc + - mmc: sdhci-sprd: Fix vqmmc not shutting down after the card was pulled + - r8169: disable ASPM in case of tx timeout + - r8169: fix deadlock on RTL8125 in jumbo mtu mode + - iomap: update ki_pos a little later in iomap_dio_complete + - Linux 5.15.142 + * Jammy update: v5.15.141 upstream stable release (LP: #2050044) + - afs: Fix afs_server_list to be cleaned up with RCU + - afs: Make error on cell lookup failure consistent with OpenAFS + - drm/panel: boe-tv101wum-nl6: Fine tune the panel power sequence + - drm/panel: auo,b101uan08.3: Fine tune the panel power sequence + - drm/panel: simple: Fix Innolux G101ICE-L01 bus flags + - drm/panel: simple: Fix Innolux G101ICE-L01 timings + - wireguard: use DEV_STATS_INC() + - octeontx2-pf: Fix memory leak during interface down + - ata: pata_isapnp: Add missing error check for devm_ioport_map() + - drm/rockchip: vop: Fix color for RGB888/BGR888 format on VOP full + - HID: core: store the unique system identifier in hid_device + - HID: fix HID device resource race between HID core and debugging support + - ipv4: Correct/silence an endian warning in __ip_do_redirect + - net: usb: ax88179_178a: fix failed operations during ax88179_reset + - net/smc: avoid data corruption caused by decline + - arm/xen: fix xen_vcpu_info allocation alignment + - octeontx2-pf: Fix ntuple rule creation to direct packet to VF with higher Rx + queue than its PF + - amd-xgbe: handle corner-case during sfp hotplug + - amd-xgbe: handle the corner-case during tx completion + - amd-xgbe: propagate the correct speed and duplex status + - net: axienet: Fix check for partial TX checksum + - afs: Return ENOENT if no cell DNS record can be found + - afs: Fix file locking on R/O volumes to operate in local mode + - nvmet: nul-terminate the NQNs passed in the connect command + - USB: dwc3: qcom: fix resource leaks on probe deferral + - USB: dwc3: qcom: fix ACPI platform device leak + - lockdep: Fix block chain corruption + - MIPS: KVM: Fix a build warning about variable set but not used + - media: camss: Replace hard coded value with parameter + - media: camss: sm8250: Virtual channels for CSID + - media: qcom: camss: Fix set CSI2_RX_CFG1_VC_MODE when VC is greater than 3 + - media: qcom: camss: Fix csid-gen2 for test pattern generator + - ext4: add a new helper to check if es must be kept + - ext4: factor out __es_alloc_extent() and __es_free_extent() + - ext4: use pre-allocated es in __es_insert_extent() + - ext4: use pre-allocated es in __es_remove_extent() + - ext4: using nofail preallocation in ext4_es_remove_extent() + - ext4: using nofail preallocation in ext4_es_insert_delayed_block() + - ext4: using nofail preallocation in ext4_es_insert_extent() + - ext4: fix slab-use-after-free in ext4_es_insert_extent() + - ext4: make sure allocate pending entry not fail + - proc: sysctl: prevent aliased sysctls from getting passed to init + - ACPI: resource: Skip IRQ override on ASUS ExpertBook B1402CVA + - swiotlb-xen: provide the "max_mapping_size" method + - bcache: replace a mistaken IS_ERR() by IS_ERR_OR_NULL() in + btree_gc_coalesce() + - md: fix bi_status reporting in md_end_clone_io + - bcache: fixup multi-threaded bch_sectors_dirty_init() wake-up race + - io_uring/fs: consider link->flags when getting path for LINKAT + - s390/dasd: protect device queue against concurrent access + - USB: serial: option: add Luat Air72*U series products + - hv_netvsc: Fix race of register_netdevice_notifier and VF register + - hv_netvsc: Mark VF as slave before exposing it to user-mode + - dm-delay: fix a race between delay_presuspend and delay_bio + - bcache: check return value from btree_node_alloc_replacement() + - bcache: prevent potential division by zero error + - bcache: fixup init dirty data errors + - bcache: fixup lock c->root error + - usb: cdnsp: Fix deadlock issue during using NCM gadget + - USB: serial: option: add Fibocom L7xx modules + - USB: serial: option: fix FM101R-GL defines + - USB: serial: option: don't claim interface 4 for ZTE MF290 + - usb: typec: tcpm: Skip hard reset when in error recovery + - USB: dwc2: write HCINT with INTMASK applied + - usb: dwc3: Fix default mode initialization + - usb: dwc3: set the dma max_seg_size + - USB: dwc3: qcom: fix software node leak on probe errors + - USB: dwc3: qcom: fix wakeup after probe deferral + - io_uring: fix off-by one bvec index + - Linux 5.15.141 + * Jammy update: v5.15.140 upstream stable release (LP: #2050038) + - locking/ww_mutex/test: Fix potential workqueue corruption + - perf/core: Bail out early if the request AUX area is out of bound + - clocksource/drivers/timer-imx-gpt: Fix potential memory leak + - clocksource/drivers/timer-atmel-tcb: Fix initialization on SAM9 hardware + - workqueue: Provide one lock class key per work_on_cpu() callsite + - x86/mm: Drop the 4 MB restriction on minimal NUMA node memory size + - wifi: mac80211_hwsim: fix clang-specific fortify warning + - wifi: mac80211: don't return unset power in ieee80211_get_tx_power() + - atl1c: Work around the DMA RX overflow issue + - bpf: Detect IP == ksym.end as part of BPF program + - wifi: ath9k: fix clang-specific fortify warnings + - wifi: ath10k: fix clang-specific fortify warning + - net: annotate data-races around sk->sk_tx_queue_mapping + - net: annotate data-races around sk->sk_dst_pending_confirm + - wifi: ath10k: Don't touch the CE interrupt registers after power up + - Bluetooth: btusb: Add date->evt_skb is NULL check + - Bluetooth: Fix double free in hci_conn_cleanup + - platform/x86: thinkpad_acpi: Add battery quirk for Thinkpad X120e + - drm/komeda: drop all currently held locks if deadlock happens + - drm/amdkfd: Fix a race condition of vram buffer unref in svm code + - drm/amd/display: use full update for clip size increase of large plane + source + - string.h: add array-wrappers for (v)memdup_user() + - kernel: kexec: copy user-array safely + - kernel: watch_queue: copy user-array safely + - drm: vmwgfx_surface.c: copy user-array safely + - drm/msm/dp: skip validity check for DP CTS EDID checksum + - drm/amd: Fix UBSAN array-index-out-of-bounds for SMU7 + - drm/amd: Fix UBSAN array-index-out-of-bounds for Polaris and Tonga + - drm/amdgpu: Fix potential null pointer derefernce + - drm/panel: fix a possible null pointer dereference + - drm/panel/panel-tpo-tpg110: fix a possible null pointer dereference + - drm/amdgpu/vkms: fix a possible null pointer dereference + - drm/panel: st7703: Pick different reset sequence + - drm/amdkfd: Fix shift out-of-bounds issue + - drm/amdgpu: Fix a null pointer access when the smc_rreg pointer is NULL + - arm64: dts: ls208xa: use a pseudo-bus to constrain usb dma size + - selftests/efivarfs: create-read: fix a resource leak + - ASoC: soc-card: Add storage for PCI SSID + - crypto: pcrypt - Fix hungtask for PADATA_RESET + - RDMA/hfi1: Use FIELD_GET() to extract Link Width + - scsi: hisi_sas: Set debugfs_dir pointer to NULL after removing debugfs + - scsi: ibmvfc: Remove BUG_ON in the case of an empty event pool + - fs/jfs: Add check for negative db_l2nbperpage + - fs/jfs: Add validity check for db_maxag and db_agpref + - jfs: fix array-index-out-of-bounds in dbFindLeaf + - jfs: fix array-index-out-of-bounds in diAlloc + - HID: lenovo: Detect quirk-free fw on cptkbd and stop applying workaround + - ARM: 9320/1: fix stack depot IRQ stack filter + - ALSA: hda: Fix possible null-ptr-deref when assigning a stream + - PCI: tegra194: Use FIELD_GET()/FIELD_PREP() with Link Width fields + - atm: iphase: Do PCI error checks on own line + - scsi: libfc: Fix potential NULL pointer dereference in fc_lport_ptp_setup() + - PCI: Use FIELD_GET() to extract Link Width + - PCI: Extract ATS disabling to a helper function + - PCI: Disable ATS for specific Intel IPU E2000 devices + - misc: pci_endpoint_test: Add Device ID for R-Car S4-8 PCIe controller + - PCI: Use FIELD_GET() in Sapphire RX 5600 XT Pulse quirk + - HID: Add quirk for Dell Pro Wireless Keyboard and Mouse KM5221W + - exfat: support handle zero-size directory + - tty: vcc: Add check for kstrdup() in vcc_probe() + - usb: gadget: f_ncm: Always set current gadget in ncm_bind() + - 9p/trans_fd: Annotate data-racy writes to file::f_flags + - 9p: v9fs_listxattr: fix %s null argument warning + - i3c: mipi-i3c-hci: Fix out of bounds access in hci_dma_irq_handler + - i2c: sun6i-p2wi: Prevent potential division by zero + - virtio-blk: fix implicit overflow on virtio_max_dma_size + - i3c: master: mipi-i3c-hci: Fix a kernel panic for accessing DAT_data. + - media: gspca: cpia1: shift-out-of-bounds in set_flicker + - media: vivid: avoid integer overflow + - gfs2: ignore negated quota changes + - gfs2: fix an oops in gfs2_permission + - media: cobalt: Use FIELD_GET() to extract Link Width + - media: ccs: Fix driver quirk struct documentation + - media: imon: fix access to invalid resource for the second interface + - drm/amd/display: Avoid NULL dereference of timing generator + - kgdb: Flush console before entering kgdb on panic + - i2c: dev: copy userspace array safely + - ASoC: ti: omap-mcbsp: Fix runtime PM underflow warnings + - drm/qxl: prevent memory leak + - drm/amdgpu: fix software pci_unplug on some chips + - pwm: Fix double shift bug + - wifi: iwlwifi: Use FW rate for non-data frames + - tracing: Reuse logic from perf's get_recursion_context() + - tracing/perf: Add interrupt_context_level() helper + - sched/core: Optimize in_task() and in_interrupt() a bit + - media: cadence: csi2rx: Unregister v4l2 async notifier + - media: cec: meson: always include meson sub-directory in Makefile + - SUNRPC: ECONNRESET might require a rebind + - SUNRPC: Add an IS_ERR() check back to where it was + - NFSv4.1: fix SP4_MACH_CRED protection for pnfs IO + - SUNRPC: Fix RPC client cleaned up the freed pipefs dentries + - gfs2: Silence "suspicious RCU usage in gfs2_permission" warning + - mptcp: diag: switch to context structure + - mptcp: listen diag dump support + - net: inet: Remove count from inet_listen_hashbucket + - net: inet: Open code inet_hash2 and inet_unhash2 + - net: inet: Retire port only listening_hash + - net: set SOCK_RCU_FREE before inserting socket into hashtable + - ipvlan: add ipvlan_route_v6_outbound() helper + - tty: Fix uninit-value access in ppp_sync_receive() + - net: hns3: fix add VLAN fail issue + - net: hns3: refine the definition for struct hclge_pf_to_vf_msg + - net: hns3: add byte order conversion for PF to VF mailbox message + - net: hns3: add barrier in vf mailbox reply process + - net: hns3: fix incorrect capability bit display for copper port + - net: hns3: fix variable may not initialized problem in hns3_init_mac_addr() + - net: hns3: fix VF reset fail issue + - net: hns3: fix VF wrong speed and duplex issue + - tipc: Fix kernel-infoleak due to uninitialized TLV value + - ppp: limit MRU to 64K + - xen/events: fix delayed eoi list handling + - ptp: annotate data-race around q->head and q->tail + - bonding: stop the device in bond_setup_by_slave() + - net: ethernet: cortina: Fix max RX frame define + - net: ethernet: cortina: Handle large frames + - net: ethernet: cortina: Fix MTU max setting + - af_unix: fix use-after-free in unix_stream_read_actor() + - netfilter: nf_conntrack_bridge: initialize err to 0 + - netfilter: nf_tables: use the correct get/put helpers + - netfilter: nf_tables: add and use BE register load-store helpers + - netfilter: nf_tables: fix pointer math issue in nft_byteorder_eval() + - net: stmmac: fix rx budget limit check + - net/mlx5e: Remove incorrect addition of action fwd flag + - net/mlx5e: Move mod hdr allocation to a single place + - net/mlx5e: Refactor mod header management API + - net/mlx5e: Fix pedit endianness + - net/mlx5e: Reduce the size of icosq_str + - net/mlx5e: Check return value of snprintf writing to fw_version buffer for + representors + - macvlan: Don't propagate promisc change to lower dev in passthru + - tools/power/turbostat: Fix a knl bug + - tools/power/turbostat: Enable the C-state Pre-wake printing + - cifs: spnego: add ';' in HOST_KEY_LEN + - cifs: fix check of rc in function generate_smb3signingkey + - xfs: refactor buffer cancellation table allocation + - xfs: don't leak xfs_buf_cancel structures when recovery fails + - xfs: convert buf_cancel_table allocation to kmalloc_array + - xfs: use invalidate_lock to check the state of mmap_lock + - xfs: prevent a UAF when log IO errors race with unmount + - xfs: flush inode gc workqueue before clearing agi bucket + - xfs: fix use-after-free in xattr node block inactivation + - xfs: don't leak memory when attr fork loading fails + - xfs: fix intermittent hang during quotacheck + - xfs: add missing cmap->br_state = XFS_EXT_NORM update + - xfs: Fix false ENOSPC when performing direct write on a delalloc extent in + cow fork + - xfs: fix inode reservation space for removing transaction + - xfs: avoid a UAF when log intent item recovery fails + - xfs: fix exception caused by unexpected illegal bestcount in leaf dir + - xfs: fix memory leak in xfs_errortag_init + - xfs: Fix unreferenced object reported by kmemleak in xfs_sysfs_init() + - i915/perf: Fix NULL deref bugs with drm_dbg() calls + - media: venus: hfi: add checks to perform sanity on queue pointers + - powerpc/perf: Fix disabling BHRB and instruction sampling + - randstruct: Fix gcc-plugin performance mode to stay in group + - bpf: Fix check_stack_write_fixed_off() to correctly spill imm + - bpf: Fix precision tracking for BPF_ALU | BPF_TO_BE | BPF_END + - scsi: mpt3sas: Fix loop logic + - scsi: megaraid_sas: Increase register read retry rount from 3 to 30 for + selected registers + - scsi: qla2xxx: Fix system crash due to bad pointer access + - crypto: x86/sha - load modules based on CPU features + - x86/cpu/hygon: Fix the CPU topology evaluation for real + - KVM: x86: hyper-v: Don't auto-enable stimer on write from user-space + - KVM: x86: Ignore MSR_AMD64_TW_CFG access + - audit: don't take task_lock() in audit_exe_compare() code path + - audit: don't WARN_ON_ONCE(!current->mm) in audit_exe_compare() + - tty/sysrq: replace smp_processor_id() with get_cpu() + - hvc/xen: fix console unplug + - hvc/xen: fix error path in xen_hvc_init() to always register frontend driver + - hvc/xen: fix event channel handling for secondary consoles + - PCI/sysfs: Protect driver's D3cold preference from user space + - watchdog: move softlockup_panic back to early_param + - ACPI: resource: Do IRQ override on TongFang GMxXGxx + - arm64: Restrict CPU_BIG_ENDIAN to GNU as or LLVM IAS 15.x or newer + - parisc/pdc: Add width field to struct pdc_model + - clk: socfpga: Fix undefined behavior bug in struct stratix10_clock_data + - clk: qcom: ipq8074: drop the CLK_SET_RATE_PARENT flag from PLL clocks + - clk: qcom: ipq6018: drop the CLK_SET_RATE_PARENT flag from PLL clocks + - mmc: vub300: fix an error code + - mmc: sdhci_am654: fix start loop index for TAP value parsing + - PCI/ASPM: Fix L1 substate handling in aspm_attr_store_common() + - PCI: exynos: Don't discard .remove() callback + - wifi: wilc1000: use vmm_table as array in wilc struct + - svcrdma: Drop connection after an RDMA Read error + - rcu/tree: Defer setting of jiffies during stall reset + - arm64: dts: qcom: ipq6018: Fix hwlock index for SMEM + - PM: hibernate: Use __get_safe_page() rather than touching the list + - PM: hibernate: Clean up sync_read handling in snapshot_write_next() + - rcu: kmemleak: Ignore kmemleak false positives when RCU-freeing objects + - btrfs: don't arbitrarily slow down delalloc if we're committing + - firmware: qcom_scm: use 64-bit calling convention only when client is 64-bit + - ACPI: FPDT: properly handle invalid FPDT subtables + - ima: annotate iint mutex to avoid lockdep false positive warnings + - ima: detect changes to the backing overlay file + - wifi: ath11k: fix temperature event locking + - wifi: ath11k: fix dfs radar event locking + - wifi: ath11k: fix htt pktlog locking + - mmc: meson-gx: Remove setting of CMD_CFG_ERROR + - genirq/generic_chip: Make irq_remove_generic_chip() irqdomain aware + - KEYS: trusted: Rollback init_trusted() consistently + - PCI: keystone: Don't discard .remove() callback + - PCI: keystone: Don't discard .probe() callback + - netfilter: nf_tables: split async and sync catchall in two functions + - selftests/resctrl: Remove duplicate feature check from CMT test + - selftests/resctrl: Reduce failures due to outliers in MBA/MBM tests + - ASoC: codecs: wsa-macro: fix uninitialized stack variables with name prefix + - jbd2: fix potential data lost in recovering journal raced with synchronizing + fs bdev + - quota: explicitly forbid quota files from being encrypted + - kernel/reboot: emergency_restart: Set correct system_state + - i2c: core: Run atomic i2c xfer when !preemptible + - tracing: Have the user copy of synthetic event address use correct context + - mcb: fix error handling for different scenarios when parsing + - dmaengine: stm32-mdma: correct desc prep when channel running + - s390/cmma: fix detection of DAT pages + - mm/cma: use nth_page() in place of direct struct page manipulation + - mm/memory_hotplug: use pfn math in place of direct struct page manipulation + - mtd: cfi_cmdset_0001: Byte swap OTP info + - i3c: master: cdns: Fix reading status register + - i3c: master: svc: fix race condition in ibi work thread + - i3c: master: svc: fix wrong data return when IBI happen during start frame + - i3c: master: svc: fix ibi may not return mandatory data byte + - i3c: master: svc: fix check wrong status register in irq handler + - i3c: master: svc: fix SDA keep low when polling IBIWON timeout happen + - parisc: Prevent booting 64-bit kernels on PA1.x machines + - parisc/pgtable: Do not drop upper 5 address bits of physical address + - xhci: Enable RPM on controllers that support low-power states + - ALSA: info: Fix potential deadlock at disconnection + - ALSA: hda/realtek - Add Dell ALC295 to pin fall back table + - ALSA: hda/realtek - Enable internal speaker of ASUS K6500ZC + - serial: meson: Use platform_get_irq() to get the interrupt + - tty: serial: meson: fix hard LOCKUP on crtscts mode + - regmap: Ensure range selector registers are updated after cache sync + - cpufreq: stats: Fix buffer overflow detection in trans_stats() + - Bluetooth: btusb: Add Realtek RTL8852BE support ID 0x0cb8:0xc559 + - bluetooth: Add device 0bda:887b to device tables + - bluetooth: Add device 13d3:3571 to device tables + - Bluetooth: btusb: Add RTW8852BE device 13d3:3570 to device tables + - Bluetooth: btusb: Add 0bda:b85b for Fn-Link RTL8852BE + - ksmbd: fix slab out of bounds write in smb_inherit_dacl() + - arm64: dts: qcom: ipq6018: switch TCSR mutex to MMIO + - arm64: dts: qcom: ipq6018: Fix tcsr_mutex register size + - powerpc/pseries/ddw: simplify enable_ddw() + - Revert ncsi: Propagate carrier gain/loss events to the NCSI controller + - Revert "i2c: pxa: move to generic GPIO recovery" + - lsm: fix default return value for vm_enough_memory + - lsm: fix default return value for inode_getsecctx + - sbsa_gwdt: Calculate timeout with 64-bit math + - i2c: designware: Disable TX_EMPTY irq while waiting for block length byte + - s390/ap: fix AP bus crash on early config change callback invocation + - net: ethtool: Fix documentation of ethtool_sprintf() + - net: dsa: lan9303: consequently nested-lock physical MDIO + - net: phylink: initialize carrier state at creation + - i2c: i801: fix potential race in i801_block_transaction_byte_by_byte + - f2fs: avoid format-overflow warning + - media: lirc: drop trailing space from scancode transmit + - media: sharp: fix sharp encoding + - media: venus: hfi_parser: Add check to keep the number of codecs within + range + - media: venus: hfi: fix the check to handle session buffer requirement + - media: venus: hfi: add checks to handle capabilities from firmware + - media: ccs: Correctly initialise try compose rectangle + - nfsd: fix file memleak on client_opens_release + - riscv: kprobes: allow writing to x0 + - mmc: sdhci-pci-gli: A workaround to allow GL9750 to enter ASPM L1.2 + - mm: kmem: drop __GFP_NOFAIL when allocating objcg vectors + - r8169: fix network lost after resume on DASH systems + - mmc: sdhci-pci-gli: GL9750: Mask the replay timer timeout of AER + - media: qcom: camss: Fix pm_domain_on sequence in probe + - media: qcom: camss: Fix vfe_get() error jump + - media: qcom: camss: Fix VFE-17x vfe_disable_output() + - media: qcom: camss: Fix missing vfe_lite clocks check + - ext4: apply umask if ACL support is disabled + - ext4: correct offset of gdb backup in non meta_bg group to update_backups + - ext4: correct return value of ext4_convert_meta_bg + - ext4: correct the start block of counting reserved clusters + - ext4: remove gdb backup copy for meta bg in setup_new_flex_group_blocks + - ext4: add missed brelse in update_backups + - drm/amd/pm: Handle non-terminated overdrive commands. + - drm/i915: Fix potential spectre vulnerability + - drm/amdgpu: don't use ATRM for external devices + - drm/amdgpu: fix error handling in amdgpu_bo_list_get() + - drm/amd/display: Change the DMCUB mailbox memory location from FB to inbox + - powerpc/powernv: Fix fortify source warnings in opal-prd.c + - tracing: Have trace_event_file have ref counters + - Input: xpad - add VID for Turtle Beach controllers + - driver core: Release all resources during unbind before updating device + links + - Linux 5.15.140 + * CVE-2023-46862 + - io_uring/fdinfo: lock SQ thread while retrieving thread cpu/pid + * Jammy update: v5.15.139 upstream stable release (LP: #2049432) + - iov_iter, x86: Be consistent about the __user tag on copy_mc_to_user() + - sched/uclamp: Ignore (util == 0) optimization in feec() when p_util_max = 0 + - sched: Fix stop_one_cpu_nowait() vs hotplug + - vfs: fix readahead(2) on block devices + - writeback, cgroup: switch inodes with dirty timestamps to release dying + cgwbs + - x86/srso: Fix SBPB enablement for (possible) future fixed HW + - futex: Don't include process MM in futex key on no-MMU + - x86: Share definition of __is_canonical_address() + - x86/sev-es: Allow copy_from_kernel_nofault() in earlier boot + - x86/boot: Fix incorrect startup_gdt_descr.size + - pstore/platform: Add check for kstrdup + - genirq/matrix: Exclude managed interrupts in irq_matrix_allocated() + - i40e: fix potential memory leaks in i40e_remove() + - selftests/bpf: Test tail call counting with bpf2bpf and data on stack + - selftests/bpf: Correct map_fd to data_fd in tailcalls + - udp: add missing WRITE_ONCE() around up->encap_rcv + - tcp: call tcp_try_undo_recovery when an RTOd TFO SYNACK is ACKed + - gve: Use size_add() in call to struct_size() + - mlxsw: Use size_mul() in call to struct_size() + - tipc: Use size_add() in calls to struct_size() + - net: spider_net: Use size_add() in call to struct_size() + - wifi: rtw88: debug: Fix the NULL vs IS_ERR() bug for debugfs_create_file() + - wifi: mt76: mt7603: rework/fix rx pse hang check + - mt76: dma: use kzalloc instead of devm_kzalloc for txwi + - mt76: add support for overriding the device used for DMA mapping + - mt76: pass original queue id from __mt76_tx_queue_skb to the driver + - wifi: mt76: mt7603: improve stuck beacon handling + - tcp_metrics: add missing barriers on delete + - tcp_metrics: properly set tp->snd_ssthresh in tcp_init_metrics() + - tcp_metrics: do not create an entry from tcp_init_metrics() + - wifi: rtlwifi: fix EDCA limit set by BT coexistence + - can: dev: can_restart(): don't crash kernel if carrier is OK + - can: dev: can_restart(): fix race condition between controller restart and + netif_carrier_on() + - can: dev: can_put_echo_skb(): don't crash kernel if can_priv::echo_skb is + accessed out of bounds + - PM / devfreq: rockchip-dfi: Make pmu regmap mandatory + - netfilter: nf_tables: Drop pointless memset when dumping rules + - thermal: core: prevent potential string overflow + - r8169: use tp_to_dev instead of open code + - r8169: fix rare issue with broken rx after link-down on RTL8125 + - chtls: fix tp->rcv_tstamp initialization + - tcp: fix cookie_init_timestamp() overflows + - iwlwifi: pcie: adjust to Bz completion descriptor + - wifi: iwlwifi: call napi_synchronize() before freeing rx/tx queues + - wifi: iwlwifi: pcie: synchronize IRQs before NAPI + - wifi: iwlwifi: empty overflow queue during flush + - ACPI: sysfs: Fix create_pnp_modalias() and create_of_modalias() + - ipv6: avoid atomic fragment on GSO packets + - net: add DEV_STATS_READ() helper + - ipvlan: properly track tx_errors + - regmap: debugfs: Fix a erroneous check after snprintf() + - spi: tegra: Fix missing IRQ check in tegra_slink_probe() + - clk: qcom: clk-rcg2: Fix clock rate overflow for high parent frequencies + - clk: qcom: mmcc-msm8998: Don't check halt bit on some branch clks + - clk: qcom: mmcc-msm8998: Fix the SMMU GDSC + - clk: qcom: gcc-sm8150: Fix gcc_sdcc2_apps_clk_src + - clk: imx: Select MXC_CLK for CLK_IMX8QXP + - clk: imx: imx8mq: correct error handling path + - clk: imx: imx8qxp: Fix elcdif_pll clock + - clk: renesas: rzg2l: Simplify multiplication/shift logic + - clk: renesas: rzg2l: Use FIELD_GET() for PLL register fields + - clk: renesas: rzg2l: Fix computation formula + - spi: nxp-fspi: use the correct ioremap function + - clk: keystone: pll: fix a couple NULL vs IS_ERR() checks + - clk: ti: Add ti_dt_clk_name() helper to use clock-output-names + - clk: ti: Update pll and clockdomain clocks to use ti_dt_clk_name() + - clk: ti: Update component clocks to use ti_dt_clk_name() + - clk: ti: change ti_clk_register[_omap_hw]() API + - clk: ti: fix double free in of_ti_divider_clk_setup() + - clk: npcm7xx: Fix incorrect kfree + - clk: mediatek: clk-mt6765: Add check for mtk_alloc_clk_data + - clk: mediatek: clk-mt6779: Add check for mtk_alloc_clk_data + - clk: mediatek: clk-mt6797: Add check for mtk_alloc_clk_data + - clk: mediatek: clk-mt7629-eth: Add check for mtk_alloc_clk_data + - clk: mediatek: clk-mt7629: Add check for mtk_alloc_clk_data + - clk: mediatek: clk-mt2701: Add check for mtk_alloc_clk_data + - clk: qcom: config IPQ_APSS_6018 should depend on QCOM_SMEM + - platform/x86: wmi: Fix probe failure when failing to register WMI devices + - platform/x86: wmi: remove unnecessary initializations + - platform/x86: wmi: Fix opening of char device + - hwmon: (axi-fan-control) Fix possible NULL pointer dereference + - hwmon: (coretemp) Fix potentially truncated sysfs attribute name + - drm/rockchip: vop: Fix reset of state in duplicate state crtc funcs + - drm/rockchip: vop: Fix call to crtc reset helper + - drm/radeon: possible buffer overflow + - drm/mipi-dsi: Create devm device registration + - drm/mipi-dsi: Create devm device attachment + - drm/bridge: lt8912b: Switch to devm MIPI-DSI helpers + - drm/bridge: lt8912b: Register and attach our DSI device at probe + - drm/bridge: lt8912b: Add hot plug detection + - drm/bridge: lt8912b: Fix bridge_detach + - drm/bridge: lt8912b: Fix crash on bridge detach + - drm/bridge: lt8912b: Manually disable HPD only if it was enabled + - drm/bridge: lt8912b: Add missing drm_bridge_attach call + - drm/bridge: tc358768: Fix use of uninitialized variable + - drm/bridge: tc358768: Disable non-continuous clock mode + - drm/bridge: tc358768: Fix bit updates + - drm/amdkfd: fix some race conditions in vram buffer alloc/free of svm code + - drm/mediatek: Fix iommu fault by swapping FBs after updating plane state + - drm/mediatek: Fix iommu fault during crtc enabling + - drm/rockchip: cdn-dp: Fix some error handling paths in cdn_dp_probe() + - arm64/arm: xen: enlighten: Fix KPTI checks + - drm/rockchip: Fix type promotion bug in rockchip_gem_iommu_map() + - xen-pciback: Consider INTx disabled when MSI/MSI-X is enabled + - drm/msm/dsi: use msm_gem_kernel_put to free TX buffer + - drm: mediatek: mtk_dsi: Fix NO_EOT_PACKET settings/handling + - perf: hisi: Fix use-after-free when register pmu fails + - ARM: dts: renesas: blanche: Fix typo in GP_11_2 pin name + - arm64: dts: qcom: msm8916: Fix iommu local address range + - arm64: dts: qcom: msm8992-libra: drop duplicated reserved memory + - arm64: dts: qcom: sc7280: Add missing LMH interrupts + - arm64: dts: qcom: sdm845-mtp: fix WiFi configuration + - ARM64: dts: marvell: cn9310: Use appropriate label for spi1 pins + - arm64: dts: qcom: apq8016-sbc: Add missing ADV7533 regulators + - ARM: dts: qcom: mdm9615: populate vsdcc fixed regulator + - soc: qcom: llcc: Handle a second device without data corruption + - firmware: ti_sci: Mark driver as non removable + - firmware: arm_ffa: Assign the missing IDR allocation ID to the FFA device + - clk: scmi: Free scmi_clk allocated when the clocks with invalid info are + skipped + - arm64: dts: imx8qm-ss-img: Fix jpegenc compatible entry + - arm64: dts: imx8mm: Add sound-dai-cells to micfil node + - arm64: dts: imx8mn: Add sound-dai-cells to micfil node + - selftests/pidfd: Fix ksft print formats + - selftests/resctrl: Ensure the benchmark commands fits to its array + - crypto: hisilicon/hpre - Fix a erroneous check after snprintf() + - hwrng: geode - fix accessing registers + - RDMA/core: Use size_{add,sub,mul}() in calls to struct_size() + - scsi: ibmvfc: Fix erroneous use of rtas_busy_delay with hcall return code + - libnvdimm/of_pmem: Use devm_kstrdup instead of kstrdup and check its return + value + - nd_btt: Make BTT lanes preemptible + - crypto: caam/qi2 - fix Chacha20 + Poly1305 self test failure + - crypto: caam/jr - fix Chacha20 + Poly1305 self test failure + - crypto: qat - increase size of buffers + - hid: cp2112: Fix duplicate workqueue initialization + - ARM: 9321/1: memset: cast the constant byte to unsigned char + - ext4: move 'ix' sanity check to corrent position + - ASoC: fsl: mpc5200_dma.c: Fix warning of Function parameter or member not + described + - IB/mlx5: Fix rdma counter binding for RAW QP + - RDMA/hns: Fix uninitialized ucmd in hns_roce_create_qp_common() + - RDMA/hns: Fix signed-unsigned mixed comparisons + - RDMA/hns: The UD mode can only be configured with DCQCN + - ASoC: fsl: Fix PM disable depth imbalance in fsl_easrc_probe + - scsi: ufs: core: Leave space for '\0' in utf8 desc string + - RDMA/hfi1: Workaround truncation compilation error + - hid: cp2112: Fix IRQ shutdown stopping polling for all IRQs on chip + - sh: bios: Revive earlyprintk support + - Revert "HID: logitech-hidpp: add a module parameter to keep firmware + gestures" + - HID: logitech-hidpp: Remove HIDPP_QUIRK_NO_HIDINPUT quirk + - HID: logitech-hidpp: Don't restart IO, instead defer hid_connect() only + - HID: logitech-hidpp: Revert "Don't restart communication if not necessary" + - HID: logitech-hidpp: Move get_wireless_feature_index() check to + hidpp_connect_event() + - ASoC: Intel: Skylake: Fix mem leak when parsing UUIDs fails + - padata: Fix refcnt handling in padata_free_shell() + - crypto: qat - fix deadlock in backlog processing + - ASoC: ams-delta.c: use component after check + - mfd: core: Un-constify mfd_cell.of_reg + - mfd: core: Ensure disabled devices are skipped without aborting + - mfd: dln2: Fix double put in dln2_probe + - mfd: arizona-spi: Set pdata.hpdet_channel for ACPI enumerated devs + - leds: turris-omnia: Drop unnecessary mutex locking + - leds: turris-omnia: Do not use SMBUS calls + - leds: pwm: Don't disable the PWM when the LED should be off + - leds: trigger: ledtrig-cpu:: Fix 'output may be truncated' issue for 'cpu' + - f2fs: compress: fix to avoid use-after-free on dic + - f2fs: compress: fix to avoid redundant compress extension + - tty: tty_jobctrl: fix pid memleak in disassociate_ctty() + - livepatch: Fix missing newline character in klp_resolve_symbols() + - dmaengine: idxd: Register dsa_bus_type before registering idxd sub-drivers + - usb: dwc2: fix possible NULL pointer dereference caused by driver + concurrency + - usb: chipidea: Fix DMA overwrite for Tegra + - usb: chipidea: Simplify Tegra DMA alignment code + - dmaengine: ti: edma: handle irq_of_parse_and_map() errors + - misc: st_core: Do not call kfree_skb() under spin_lock_irqsave() + - tools: iio: iio_generic_buffer ensure alignment + - USB: usbip: fix stub_dev hub disconnect + - dmaengine: pxa_dma: Remove an erroneous BUG_ON() in pxad_free_desc() + - f2fs: fix to initialize map.m_pblk in f2fs_precache_extents() + - powerpc: Only define __parse_fpscr() when required + - modpost: fix tee MODULE_DEVICE_TABLE built on big-endian host + - powerpc/40x: Remove stale PTE_ATOMIC_UPDATES macro + - powerpc/xive: Fix endian conversion size + - powerpc/imc-pmu: Use the correct spinlock initializer. + - powerpc/pseries: fix potential memory leak in init_cpu_associativity() + - usb: host: xhci-plat: fix possible kernel oops while resuming + - perf machine: Avoid out of bounds LBR memory read + - perf hist: Add missing puts to hist__account_cycles + - 9p/net: fix possible memory leak in p9_check_errors() + - i3c: Fix potential refcount leak in i3c_master_register_new_i3c_devs + - cxl/mem: Fix shutdown order + - rtc: pcf85363: fix wrong mask/val parameters in regmap_update_bits call + - pcmcia: cs: fix possible hung task and memory leak pccardd() + - pcmcia: ds: fix refcount leak in pcmcia_device_add() + - pcmcia: ds: fix possible name leak in error path in pcmcia_device_add() + - media: i2c: max9286: Fix some redundant of_node_put() calls + - media: bttv: fix use after free error due to btv->timeout timer + - media: s3c-camif: Avoid inappropriate kfree() + - media: vidtv: psi: Add check for kstrdup + - media: vidtv: mux: Add check and kfree for kstrdup + - media: cedrus: Fix clock/reset sequence + - media: dvb-usb-v2: af9035: fix missing unlock + - regmap: prevent noinc writes from clobbering cache + - pwm: sti: Reduce number of allocations and drop usage of chip_data + - pwm: brcmstb: Utilize appropriate clock APIs in suspend/resume + - Input: synaptics-rmi4 - fix use after free in rmi_unregister_function() + - llc: verify mac len before reading mac header + - hsr: Prevent use after free in prp_create_tagged_frame() + - tipc: Change nla_policy for bearer-related names to NLA_NUL_STRING + - bpf: Check map->usercnt after timer->timer is assigned + - inet: shrink struct flowi_common + - octeontx2-pf: Fix error codes + - octeontx2-pf: Fix holes in error code + - dccp: Call security_inet_conn_request() after setting IPv4 addresses. + - dccp/tcp: Call security_inet_conn_request() after setting IPv6 addresses. + - Fix termination state for idr_for_each_entry_ul() + - net: stmmac: xgmac: Enable support for multiple Flexible PPS outputs + - selftests: pmtu.sh: fix result checking + - net/smc: fix dangling sock under state SMC_APPFINCLOSEWAIT + - net/smc: allow cdc msg send rather than drop it with NULL sndbuf_desc + - net/smc: put sk reference if close work was canceled + - tg3: power down device only on SYSTEM_POWER_OFF + - block: remove unneeded return value of bio_check_ro() + - blk-core: use pr_warn_ratelimited() in bio_check_ro() + - r8169: respect userspace disabling IFF_MULTICAST + - i2c: iproc: handle invalid slave state + - netfilter: xt_recent: fix (increase) ipv6 literal buffer length + - netfilter: nft_redir: use `struct nf_nat_range2` throughout and deduplicate + eval call-backs + - netfilter: nat: fix ipv6 nat redirect with mapped and scoped addresses + - drm/syncobj: fix DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE + - ASoC: hdmi-codec: register hpd callback on component probe + - spi: spi-zynq-qspi: add spi-mem to driver kconfig dependencies + - fbdev: imsttfb: Fix error path of imsttfb_probe() + - fbdev: imsttfb: fix a resource leak in probe + - fbdev: fsl-diu-fb: mark wr_reg_wa() static + - tracing/kprobes: Fix the order of argument descriptions + - btrfs: use u64 for buffer sizes in the tree search ioctls + - Linux 5.15.139 + * Jammy update: v5.15.138 upstream stable release (LP: #2049417) + - ASoC: codecs: wcd938x: fix resource leaks on bind errors + - ASoC: codecs: wcd938x: fix runtime PM imbalance on remove + - pinctrl: qcom: lpass-lpi: fix concurrent register updates + - tcp: remove dead code from tcp_sendmsg_locked() + - tcp: cleanup tcp_remove_empty_skb() use + - mptcp: more conservative check for zero probes + - mcb: Return actual parsed size when reading chameleon table + - mcb-lpc: Reallocate memory region to avoid memory overlapping + - virtio_balloon: Fix endless deflation and inflation on arm64 + - virtio-mmio: fix memory leak of vm_dev + - vhost: Allow null msg.size on VHOST_IOTLB_INVALIDATE + - mm/page_alloc: correct start page when guard page debug is enabled + - mm/migrate: fix do_pages_move for compat pointers + - nfsd: lock_rename() needs both directories to live on the same fs + - drm/i915/pmu: Check if pmu is closed before stopping event + - vsock/virtio: factor our the code to initialize and delete VQs + - vsock/virtio: add support for device suspend/resume + - vsock/virtio: initialize the_virtio_vsock before using VQs + - drm/dp_mst: Fix NULL deref in get_mst_branch_device_by_guid_helper() + - firmware/imx-dsp: Fix use_after_free in imx_dsp_setup_channels() + - r8169: fix the KCSAN reported data-race in rtl_tx() while reading tp->cur_tx + - r8169: fix the KCSAN reported data-race in rtl_tx while reading + TxDescArray[entry].opts1 + - r8169: fix the KCSAN reported data race in rtl_rx while reading desc->opts1 + - i40e: Fix I40E_FLAG_VF_VLAN_PRUNING value + - treewide: Spelling fix in comment + - igb: Fix potential memory leak in igb_add_ethtool_nfc_entry + - neighbour: fix various data-races + - igc: Fix ambiguity in the ethtool advertising + - net: ieee802154: adf7242: Fix some potential buffer overflow in + adf7242_stats_show() + - net: usb: smsc95xx: Fix uninit-value access in smsc95xx_read_reg + - r8152: Increase USB control msg timeout to 5000ms as per spec + - r8152: Run the unload routine if we have errors during probe + - r8152: Cancel hw_phy_work if we have an error in probe + - r8152: Release firmware if we have an error in probe + - tcp: fix wrong RTO timeout when received SACK reneging + - gtp: uapi: fix GTPA_MAX + - gtp: fix fragmentation needed check with gso + - i40e: Fix wrong check for I40E_TXR_FLAGS_WB_ON_ITR + - kasan: print the original fault addr when access invalid shadow + - iio: exynos-adc: request second interupt only when touchscreen mode is used + - iio: adc: xilinx-xadc: Don't clobber preset voltage/temperature thresholds + - iio: adc: xilinx-xadc: Correct temperature offset/scale for UltraScale + - i2c: muxes: i2c-mux-pinctrl: Use of_get_i2c_adapter_by_node() + - i2c: muxes: i2c-mux-gpmux: Use of_get_i2c_adapter_by_node() + - i2c: muxes: i2c-demux-pinctrl: Use of_get_i2c_adapter_by_node() + - i2c: stm32f7: Fix PEC handling in case of SMBUS transfers + - i2c: aspeed: Fix i2c bus hang in slave read + - tracing/kprobes: Fix the description of variable length arguments + - misc: fastrpc: Clean buffers on remote invocation failures + - nvmem: imx: correct nregs for i.MX6ULL + - nvmem: imx: correct nregs for i.MX6SLL + - nvmem: imx: correct nregs for i.MX6UL + - perf/core: Fix potential NULL deref + - sparc32: fix a braino in fault handling in csum_and_copy_..._user() + - clk: Sanitize possible_parent_show to Handle Return Value of + of_clk_get_parent_name + - iio: afe: rescale: reorder includes + - iio: afe: rescale: expose scale processing function + - iio: afe: rescale: add offset support + - iio: afe: rescale: Accept only offset channels + - gve: Fix GFP flags when allocing pages + - x86/i8259: Skip probing when ACPI/MADT advertises PCAT compatibility + - x86/mm: Simplify RESERVE_BRK() + - x86/mm: Fix RESERVE_BRK() for older binutils + - ext4: add two helper functions extent_logical_end() and pa_logical_end() + - ext4: fix BUG in ext4_mb_new_inode_pa() due to overflow + - ext4: avoid overlapping preallocations due to overflow + - objtool/x86: add missing embedded_insn check + - driver: platform: Add helper for safer setting of driver_override + - rpmsg: Constify local variable in field store macro + - rpmsg: Fix kfree() of static memory on setting driver_override + - rpmsg: Fix calling device_lock() on non-initialized device + - rpmsg: glink: Release driver_override + - rpmsg: Fix possible refcount leak in rpmsg_register_device_override() + - x86: Fix .brk attribute in linker script + - ASoC: simple-card: fixup asoc_simple_probe() error handling + - net: sched: cls_u32: Fix allocation size in u32_init() + - irqchip/riscv-intc: Mark all INTC nodes as initialized + - irqchip/stm32-exti: add missing DT IRQ flag translation + - dmaengine: ste_dma40: Fix PM disable depth imbalance in d40_probe + - powerpc/85xx: Fix math emulation exception + - Input: synaptics-rmi4 - handle reset delay when using SMBus trsnsport + - fbdev: atyfb: only use ioremap_uc() on i386 and ia64 + - fs/ntfs3: Add ckeck in ni_update_parent() + - fs/ntfs3: Write immediately updated ntfs state + - fs/ntfs3: Use kvmalloc instead of kmalloc(... __GFP_NOWARN) + - fs/ntfs3: Fix possible NULL-ptr-deref in ni_readpage_cmpr() + - fs/ntfs3: Fix NULL pointer dereference on error in attr_allocate_frame() + - fs/ntfs3: Fix directory element type detection + - fs/ntfs3: Avoid possible memory leak + - spi: npcm-fiu: Fix UMA reads when dummy.nbytes == 0 + - netfilter: nfnetlink_log: silence bogus compiler warning + - ASoC: rt5650: fix the wrong result of key button + - drm/ttm: Reorder sys manager cleanup step + - fbdev: uvesafb: Call cn_del_callback() at the end of uvesafb_exit() + - scsi: mpt3sas: Fix in error path + - platform/mellanox: mlxbf-tmfifo: Fix a warning message + - net: chelsio: cxgb4: add an error code check in t4_load_phy_fw + - r8152: Check for unplug in rtl_phy_patch_request() + - r8152: Check for unplug in r8153b_ups_en() / r8153c_ups_en() + - powerpc/mm: Fix boot crash with FLATMEM + - can: isotp: set max PDU size to 64 kByte + - can: isotp: isotp_bind(): return -EINVAL on incorrect CAN ID formatting + - can: isotp: check CAN address family in isotp_bind() + - can: isotp: handle wait_event_interruptible() return values + - can: isotp: add local echo tx processing and tx without FC + - can: isotp: isotp_bind(): do not validate unused address information + - can: isotp: isotp_sendmsg(): fix TX state detection and wait behavior + - drm/amd: Move helper for dynamic speed switch check out of smu13 + - drm/amd: Disable ASPM for VI w/ all Intel systems + - PCI: Prevent xHCI driver from claiming AMD VanGogh USB3 DRD device + - usb: storage: set 1.50 as the lower bcdDevice for older "Super Top" + compatibility + - usb: typec: tcpm: Fix NULL pointer dereference in tcpm_pd_svdm() + - usb: raw-gadget: properly handle interrupted requests + - tty: n_gsm: fix race condition in status line change on dead connections + - tty: 8250: Remove UC-257 and UC-431 + - tty: 8250: Add support for additional Brainboxes UC cards + - tty: 8250: Add support for Brainboxes UP cards + - tty: 8250: Add support for Intashield IS-100 + - tty: 8250: Fix port count of PX-257 + - tty: 8250: Fix up PX-803/PX-857 + - tty: 8250: Add support for additional Brainboxes PX cards + - tty: 8250: Add support for Intashield IX cards + - tty: 8250: Add Brainboxes Oxford Semiconductor-based quirks + - misc: pci_endpoint_test: Add deviceID for J721S2 PCIe EP device support + - ALSA: hda: intel-dsp-config: Fix JSL Chromebook quirk detection + - Linux 5.15.138 + * Jammy update: v5.15.137 upstream stable release (LP: #2049350) + - lib/Kconfig.debug: do not enable DEBUG_PREEMPT by default + - Documentation: sysctl: align cells in second content column + - xfs: don't expose internal symlink metadata buffers to the vfs + - Bluetooth: hci_event: Ignore NULL link key + - Bluetooth: Reject connection with the device which has same BD_ADDR + - Bluetooth: Fix a refcnt underflow problem for hci_conn + - Bluetooth: vhci: Fix race when opening vhci device + - Bluetooth: hci_event: Fix coding style + - Bluetooth: avoid memcmp() out of bounds warning + - ice: fix over-shifted variable + - ice: reset first in crash dump kernels + - nfc: nci: fix possible NULL pointer dereference in send_acknowledge() + - regmap: fix NULL deref on lookup + - KVM: x86: Mask LVTPC when handling a PMI + - tcp: check mptcp-level constraints for backlog coalescing + - fs/ntfs3: Fix possible null-pointer dereference in hdr_find_e() + - fs/ntfs3: fix panic about slab-out-of-bounds caused by ntfs_list_ea() + - fs/ntfs3: fix deadlock in mark_as_free_ex + - netfilter: nft_payload: fix wrong mac header matching + - drm/i915: Retry gtt fault when out of fence registers + - ASoC: codecs: wcd938x-sdw: fix use after free on driver unbind + - ASoC: codecs: wcd938x-sdw: fix runtime PM imbalance on probe errors + - ASoC: codecs: wcd938x: drop bogus bind error handling + - ASoC: codecs: wcd938x: fix unbind tear down order + - qed: fix LL2 RX buffer allocation + - xfrm: fix a data-race in xfrm_gen_index() + - xfrm: interface: use DEV_STATS_INC() + - net: ipv4: fix return value check in esp_remove_trailer + - net: ipv6: fix return value check in esp_remove_trailer + - net: rfkill: gpio: prevent value glitch during probe + - tcp: fix excessive TLP and RACK timeouts from HZ rounding + - tcp: tsq: relax tcp_small_queue_check() when rtx queue contains a single skb + - tun: prevent negative ifindex + - ipv4: fib: annotate races around nh->nh_saddr_genid and nh->nh_saddr + - net: usb: smsc95xx: Fix an error code in smsc95xx_reset() + - i40e: prevent crash on probe if hw registers have invalid values + - net: dsa: bcm_sf2: Fix possible memory leak in bcm_sf2_mdio_register() + - bonding: Return pointer to data after pull on skb + - net/sched: sch_hfsc: upgrade 'rt' to 'sc' when it becomes a inner curve + - neighbor: tracing: Move pin6 inside CONFIG_IPV6=y section + - netfilter: nft_set_rbtree: .deactivate fails if element has expired + - netfilter: nf_tables: do not remove elements if set backend implements + .abort + - netfilter: nf_tables: revert do not remove elements if set backend + implements .abort + - net: pktgen: Fix interface flags printing + - selftests/mm: fix awk usage in charge_reserved_hugetlb.sh and + hugetlb_reparenting_test.sh that may cause error + - serial: 8250: omap: Fix imprecise external abort for omap_8250_pm() + - serial: 8250_omap: Fix errors with no_console_suspend + - iio: Un-inline iio_buffer_enabled() + - iio: core: Hide read accesses to iio_dev->currentmode + - iio: core: introduce iio_device_{claim|release}_buffer_mode() APIs + - iio: cros_ec: fix an use-after-free in cros_ec_sensors_push_data() + - iio: adc: ad7192: Correct reference voltage + - perf: Add irq and exception return branch types + - perf/x86: Move branch classifier + - perf/x86/lbr: Filter vsyscall addresses + - drm/atomic-helper: relax unregistered connector check + - powerpc/32s: Remove capability to disable KUEP at boottime + - powerpc/32s: Do kuep_lock() and kuep_unlock() in assembly + - powerpc/47x: Fix 47x syscall return crash + - mctp: Allow local delivery to the null EID + - mctp: perform route lookups under a RCU read-side lock + - nfp: flower: avoid rmmod nfp crash issues + - ksmbd: not allow to open file if delelete on close bit is set + - ARM: dts: ti: omap: Fix noisy serial with overrun-throttle-ms for mapphone + - fs-writeback: do not requeue a clean inode having skipped pages + - btrfs: return -EUCLEAN for delayed tree ref with a ref count not equals to 1 + - btrfs: initialize start_slot in btrfs_log_prealloc_extents + - i2c: mux: Avoid potential false error message in i2c_mux_add_adapter + - overlayfs: set ctime when setting mtime and atime + - gpio: timberdale: Fix potential deadlock on &tgpio->lock + - ata: libata-core: Fix compilation warning in ata_dev_config_ncq() + - ata: libata-eh: Fix compilation warning in ata_eh_link_report() + - tracing: relax trace_event_eval_update() execution with cond_resched() + - wifi: mwifiex: Sanity check tlv_len and tlv_bitmap_len + - wifi: iwlwifi: Ensure ack flag is properly cleared. + - HID: holtek: fix slab-out-of-bounds Write in holtek_kbd_input_event + - Bluetooth: btusb: add shutdown function for QCA6174 + - Bluetooth: Avoid redundant authentication + - Bluetooth: hci_core: Fix build warnings + - wifi: cfg80211: Fix 6GHz scan configuration + - wifi: mac80211: allow transmitting EAPOL frames with tainted key + - wifi: cfg80211: avoid leaking stack data into trace + - regulator/core: Revert "fix kobject release warning and memory leak in + regulator_register()" + - sky2: Make sure there is at least one frag_addr available + - ipv4/fib: send notify when delete source address routes + - drm: panel-orientation-quirks: Add quirk for One Mix 2S + - btrfs: fix some -Wmaybe-uninitialized warnings in ioctl.c + - btrfs: error out when COWing block using a stale transaction + - btrfs: error when COWing block from a root that is being deleted + - btrfs: error out when reallocating block for defrag using a stale + transaction + - HID: multitouch: Add required quirk for Synaptics 0xcd7e device + - platform/x86: touchscreen_dmi: Add info for the Positivo C4128B + - net/mlx5: Handle fw tracer change ownership event based on MTRC + - Bluetooth: hci_event: Fix using memcmp when comparing keys + - net: introduce a function to check if a netdev name is in use + - net: move from strlcpy with unused retval to strscpy + - net: fix ifname in netlink ntf during netns move + - mtd: rawnand: qcom: Unmap the right resource upon probe failure + - mtd: rawnand: pl353: Ensure program page operations are successful + - mtd: rawnand: marvell: Ensure program page operations are successful + - mtd: rawnand: arasan: Ensure program page operations are successful + - mtd: spinand: micron: correct bitmask for ecc status + - mtd: physmap-core: Restore map_rom fallback + - mmc: mtk-sd: Use readl_poll_timeout_atomic in msdc_reset_hw + - mmc: core: sdio: hold retuning if sdio in 1-bit mode + - pNFS: Fix a hang in nfs4_evict_inode() + - NFSv4.1: fixup use EXCHGID4_FLAG_USE_PNFS_DS for DS server + - ACPI: irq: Fix incorrect return value in acpi_register_gsi() + - nvme-pci: add BOGUS_NID for Intel 0a54 device + - nvme-rdma: do not try to stop unallocated queues + - USB: serial: option: add Telit LE910C4-WWX 0x1035 composition + - USB: serial: option: add entry for Sierra EM9191 with new firmware + - USB: serial: option: add Fibocom to DELL custom modem FM101R-GL + - s390/pci: fix iommu bitmap allocation + - selftests/ftrace: Add new test case which checks non unique symbol + - s390/cio: fix a memleak in css_alloc_subchannel + - platform/surface: platform_profile: Propagate error if profile registration + fails + - platform/x86: asus-wmi: Change ASUS_WMI_BRN_DOWN code from 0x20 to 0x2e + - platform/x86: asus-wmi: Map 0x2a code, Ignore 0x2b and 0x2c events + - gpio: vf610: set value before the direction to avoid a glitch + - ASoC: pxa: fix a memory leak in probe() + - serial: 8250: omap: Move uart_write() inside PM section + - phy: mapphone-mdm6600: Fix runtime disable on probe + - phy: mapphone-mdm6600: Fix runtime PM for remove + - phy: mapphone-mdm6600: Fix pinctrl_pm handling for sleep pins + - Bluetooth: hci_sock: fix slab oob read in create_monitor_event + - Bluetooth: hci_sock: Correctly bounds check and pad HCI_MON_NEW_INDEX name + - xfrm6: fix inet6_dev refcount underflow problem + - Linux 5.15.137 + * CVE-2023-51782 + - net/rose: Fix Use-After-Free in rose_ioctl + * CVE-2023-51779 + - Bluetooth: af_bluetooth: Fix Use-After-Free in bt_sock_recvmsg + * CVE-2023-22995 + - usb: dwc3: dwc3-qcom: Add missing platform_device_put() in + dwc3_qcom_acpi_register_core + * CVE-2023-4134 + - Input: cyttsp4_core - change del_timer_sync() to timer_shutdown_sync() + * Packaging resync (LP: #1786013) + - [Packaging] update annotations scripts + + -- Tim Gardner Thu, 15 Feb 2024 17:07:27 -0700 + +linux-azure (5.15.0-1057.65) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1057.65 -proposed tracker (LP: #2052613) + + * CVE-2024-0565 + - smb: client: fix OOB in receive_encrypted_standard() + + [ Ubuntu: 5.15.0-97.107 ] + + * jammy/linux: 5.15.0-97.107 -proposed tracker (LP: #2052600) + * Packaging resync (LP: #1786013) + - [Packaging] update annotations scripts + * partproke is broken on empty loopback device (LP: #2049689) + - block: Move checking GENHD_FL_NO_PART to bdev_add_partition() + * CVE-2023-51781 + - appletalk: Fix Use-After-Free in atalk_ioctl + * CVE-2023-51780 + - atm: Fix Use-After-Free in do_vcc_ioctl + * CVE-2023-6915 + - ida: Fix crash in ida_free when the bitmap is empty + * CVE-2024-0646 + - net: tls, update curr on splice as well + + -- Tim Gardner Fri, 09 Feb 2024 11:14:46 -0700 + +linux-azure (5.15.0-1056.64) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1056.64 -proposed tracker (LP: #2052545) + + * Azure: Fix regression introduced in LP: #2045069 (LP: #2052453) + - hv_netvsc: Fix race condition between netvsc_probe and netvsc_remove + - hv_netvsc: Register VF in netvsc_probe if NET_DEVICE_REGISTER missed + + -- Tim Gardner Tue, 06 Feb 2024 12:02:54 -0700 + +linux-azure (5.15.0-1055.63) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1055.63 -proposed tracker (LP: #2048291) + + * Azure - Kernel crashes when removing gpu from pci (LP: #2042568) + - Revert "PCI: hv: Use async probing to reduce boot time" + + * Azure: mlx5e: Add support for PCI relaxed ordering (RO) for better + performance (LP: #2039208) + - RDMA/mlx5: Reorder calls to pcie_relaxed_ordering_enabled() + - RDMA/mlx5: Remove pcie_relaxed_ordering_enabled() check for RO write + + * Azure: Deprecate Netvsc and implement MANA direct (LP: #2045069) + - hv_netvsc: fix race of netvsc and VF register_netdevice + - hv_netvsc: Fix race of register_netdevice_notifier and VF register + - hv_netvsc: Mark VF as slave before exposing it to user-mode + + [ Ubuntu: 5.15.0-94.104 ] + + * jammy/linux: 5.15.0-94.104 -proposed tracker (LP: #2048777) + * [SRU] Duplicate Device_dax ids Created and hence Probing is Failing. + (LP: #2028158) + - device-dax: Fix duplicate 'hmem' device registration + * Add ODM driver f81604 usb-can (LP: #2045387) + - can: usb: f81604: add Fintek F81604 support + - [Config] updateconfigs for ODM drivers CONFIG_CAN_F81604 + * Add ODM driver gpio-m058ssan (LP: #2045386) + - SAUCE: ODM: gpio: add M058SSAN gpio driver + - [Config] updateconfigs for ODM drivers CONFIG_GPIO_M058SSAN + * Add ODM driver rtc-pcf85263 (LP: #2045385) + - SAUCE: ODM: rtc: add PCF85263 RTC driver + - [Config] updateconfigs for ODM drivers CONFIG_RTC_DRV_PCF85263 + * AppArmor patch for mq-posix interface is missing in jammy (LP: #2045384) + - SAUCE: (no-up) apparmor: reserve mediation classes + - SAUCE: (no-up) apparmor: Add fine grained mediation of posix mqueues + * Packaging resync (LP: #1786013) + - [Packaging] update annotations scripts + + [ Ubuntu: 5.15.0-93.103 ] + + * jammy/linux: 5.15.0-93.103 -proposed tracker (LP: #2048330) + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] resync update-dkms-versions helper + - [Packaging] remove helper scripts + - [Packaging] update annotations scripts + - debian/dkms-versions -- update from kernel-versions (main/2024.01.08) + * Hotplugging SCSI disk in QEMU VM fails (LP: #2047382) + - Revert "PCI: acpiphp: Reassign resources on bridge if necessary" + * CVE-2023-6622 + - netfilter: nf_tables: bail out on mismatching dynset and set expressions + * CVE-2024-0193 + - netfilter: nf_tables: skip set commit for deleted/destroyed sets + * CVE-2023-6040 + - netfilter: nf_tables: Reject tables of unsupported family + * Patches needed for AmpereOne (arm64) (LP: #2044192) + - clocksource/arm_arch_timer: Add build-time guards for unhandled register + accesses + - clocksource/drivers/arm_arch_timer: Drop CNT*_TVAL read accessors + - clocksource/drivers/arm_arch_timer: Extend write side of timer register + accessors to u64 + - clocksource/drivers/arm_arch_timer: Move system register timer programming + over to CVAL + - clocksource/drivers/arm_arch_timer: Move drop _tval from erratum function + names + - clocksource/drivers/arm_arch_timer: Fix MMIO base address vs callback + ordering issue + - clocksource/drivers/arm_arch_timer: Move MMIO timer programming over to CVAL + - clocksource/drivers/arm_arch_timer: Advertise 56bit timer to the core code + - clocksource/drivers/arm_arch_timer: Work around broken CVAL implementations + - clocksource/drivers/arm_arch_timer: Remove any trace of the TVAL programming + interface + - clocksource/drivers/arm_arch_timer: Drop unnecessary ISB on CVAL programming + - clocksource/drivers/arm_arch_timer: Fix masking for high freq counters + - clocksource/drivers/arch_arm_timer: Move workaround synchronisation around + * Add quirk to disable i915 fastboot on B&R PC (LP: #2047630) + - SAUCE: i915: force disable fastboot quirk + * Some machines can't pass the pm-graph test (LP: #2046217) + - wifi: iwlwifi: pcie: rescan bus if no parent + * Sound: Add rtl quirk of M90-Gen5 (LP: #2046105) + - ALSA: hda/realtek: Enable headset on Lenovo M90 Gen5 + * linux tools packages for derived kernels refuse to install simultaneously + due to libcpupower name collision (LP: #2035971) + - [Packaging] Statically link libcpupower into cpupower tool + * [Debian] autoreconstruct - Do not generate chmod -x for deleted files + (LP: #2045562) + - [Debian] autoreconstruct - Do not generate chmod -x for deleted files + * CVE-2023-6931 + - perf/core: Add a new read format to get a number of lost samples + - perf: Fix perf_event_validate_size() + - perf: Fix perf_event_validate_size() lockdep splat + * CVE-2023-6932 + - ipv4: igmp: fix refcnt uaf issue when receiving igmp query packet + * CVE-2023-6606 + - smb: client: fix OOB in smbCalcSize() + * CVE-2023-6817 + - netfilter: nft_set_pipapo: skip inactive elements during set walk + * Jammy update: v5.15.136 upstream stable release (LP: #2046008) + - iommu/vt-d: Avoid memory allocation in iommu_suspend() + - scsi: core: Use a structure member to track the SCSI command submitter + - scsi: core: Rename scsi_mq_done() into scsi_done() and export it + - scsi: ib_srp: Call scsi_done() directly + - RDMA/srp: Do not call scsi_done() from srp_abort() + - RDMA/cxgb4: Check skb value for failure to allocate + - perf/arm-cmn: Fix the unhandled overflow status of counter 4 to 7 + - of: overlay: Reorder struct fragment fields kerneldoc + - platform/x86: think-lmi: Fix reference leak + - platform/x86: hp-wmi:: Mark driver struct with __refdata to prevent section + mismatch warning + - lib/test_meminit: fix off-by-one error in test_pages() + - HID: logitech-hidpp: Fix kernel crash on receiver USB disconnect + - quota: Fix slow quotaoff + - net: prevent address rewrite in kernel_bind() + - ALSA: usb-audio: Fix microphone sound on Opencomm2 Headset + - KEYS: trusted: allow use of kernel RNG for key material + - KEYS: trusted: Remove redundant static calls usage + - drm/msm/dp: do not reinitialize phy unless retry during link training + - drm/msm/dsi: skip the wait for video mode done if not applicable + - drm/msm/dsi: fix irq_of_parse_and_map() error checking + - drm/msm/dpu: change _dpu_plane_calc_bw() to use u64 to avoid overflow + - ravb: Fix up dma_free_coherent() call in ravb_remove() + - ravb: Fix use-after-free issue in ravb_tx_timeout_work() + - ieee802154: ca8210: Fix a potential UAF in ca8210_probe + - mlxsw: fix mlxsw_sp2_nve_vxlan_learning_set() return type + - eth: remove copies of the NAPI_POLL_WEIGHT define + - xen-netback: use default TX queue size for vifs + - riscv, bpf: Factor out emit_call for kernel and bpf context + - riscv, bpf: Sign-extend return values + - drm/vmwgfx: fix typo of sizeof argument + - bpf: Fix verifier log for async callback return values + - net: macsec: indicate next pn update when offloading + - net: phy: mscc: macsec: reject PN update requests + - ixgbe: fix crash with empty VF macvlan list + - net/mlx5e: Again mutually exclude RX-FCS and RX-port-timestamp + - net: nfc: fix races in nfc_llcp_sock_get() and nfc_llcp_sock_get_sn() + - pinctrl: renesas: rzn1: Enable missing PINMUX + - nfc: nci: assert requested protocol is valid + - workqueue: Override implicit ordered attribute in + workqueue_apply_unbound_cpumask() + - net: add sysctl accept_ra_min_rtr_lft + - net: change accept_ra_min_rtr_lft to affect all RA lifetimes + - net: release reference to inet6_dev pointer + - media: mtk-jpeg: Fix use after free bug due to uncanceled work + - dmaengine: stm32-mdma: abort resume if no ongoing transfer + - xhci: Keep interrupt disabled in initialization until host is running. + - usb: xhci: xhci-ring: Use sysdev for mapping bounce buffer + - net: usb: dm9601: fix uninitialized variable use in dm9601_mdio_read + - usb: dwc3: Soft reset phy on probe for host + - usb: cdns3: Modify the return value of cdns_set_active () to void when + CONFIG_PM_SLEEP is disabled + - usb: musb: Get the musb_qh poniter after musb_giveback + - usb: musb: Modify the "HWVers" register address + - iio: pressure: bmp280: Fix NULL pointer exception + - iio: pressure: dps310: Adjust Timeout Settings + - iio: pressure: ms5611: ms5611_prom_is_valid false negative bug + - drm/amdgpu: add missing NULL check + - drm/amd/display: Don't set dpms_off for seamless boot + - ACPI: resource: Skip IRQ override on ASUS ExpertBook B1402CBA + - x86/cpu: Fix AMD erratum #1485 on Zen4-based CPUs + - mcb: remove is_added flag from mcb_device struct + - thunderbolt: Workaround an IOMMU fault on certain systems with Intel Maple + Ridge + - thunderbolt: Check that lane 1 is in CL0 before enabling lane bonding + - libceph: use kernel_connect() + - ceph: fix incorrect revoked caps assert in ceph_fill_file_size() + - ceph: fix type promotion bug on 32bit systems + - Input: powermate - fix use-after-free in powermate_config_complete + - Input: psmouse - fix fast_reconnect function for PS/2 mode + - Input: xpad - add PXN V900 support + - Input: i8042 - add Fujitsu Lifebook E5411 to i8042 quirk table + - Input: goodix - ensure int GPIO is in input for gpio_count == 1 && + gpio_int_idx == 0 case + - tee: amdtee: fix use-after-free vulnerability in amdtee_close_session + - cgroup: Remove duplicates in cgroup v1 tasks file + - counter: microchip-tcb-capture: Fix the use of internal GCLK logic + - usb: gadget: udc-xilinx: replace memcpy with memcpy_toio + - usb: gadget: ncm: Handle decoding of multiple NTB's in unwrap call + - usb: cdnsp: Fixes issue with dequeuing not queued requests + - x86/alternatives: Disable KASAN in apply_alternatives() + - dmaengine: idxd: use spin_lock_irqsave before wait_event_lock_irq + - dmaengine: mediatek: Fix deadlock caused by synchronize_irq() + - powerpc/8xx: Fix pte_access_permitted() for PAGE_NONE + - powerpc/64e: Fix wrong test in __ptep_test_and_clear_young() + - arm64: report EL1 UNDEFs better + - arm64: die(): pass 'err' as long + - arm64: consistently pass ESR_ELx to die() + - arm64: rework FPAC exception handling + - arm64: rework BTI exception handling + - arm64: allow kprobes on EL0 handlers + - arm64: split EL0/EL1 UNDEF handlers + - arm64: factor out EL1 SSBS emulation hook + - arm64: factor insn read out of call_undef_hook() + - arm64: rework EL0 MRS emulation + - arm64: armv8_deprecated: fold ops into insn_emulation + - arm64: armv8_deprecated move emulation functions + - arm64: armv8_deprecated: move aarch32 helper earlier + - arm64: armv8_deprecated: rework deprected instruction handling + - arm64: armv8_deprecated: fix unused-function error + - usb: hub: Guard against accesses to uninitialized BOS descriptors + - eth: remove remaining copies of the NAPI_POLL_WEIGHT define + - Linux 5.15.136 + * Jammy update: v5.15.135 upstream stable release (LP: #2045809) + - spi: zynqmp-gqspi: Convert to platform remove callback returning void + - spi: zynqmp-gqspi: fix clock imbalance on probe failure + - ASoC: soc-utils: Export snd_soc_dai_is_dummy() symbol + - ASoC: tegra: Fix redundant PLLA and PLLA_OUT0 updates + - NFS: Cleanup unused rpc_clnt variable + - NFS: rename nfs_client_kset to nfs_kset + - NFSv4: Fix a state manager thread deadlock regression + - ring-buffer: remove obsolete comment for free_buffer_page() + - ring-buffer: Fix bytes info in per_cpu buffer stats + - arm64: Avoid repeated AA64MMFR1_EL1 register read on pagefault path + - iommu/arm-smmu-v3: Set TTL invalidation hint better + - iommu/arm-smmu-v3: Avoid constructing invalid range commands + - rbd: move rbd_dev_refresh() definition + - rbd: decouple header read-in from updating rbd_dev->header + - rbd: decouple parent info read-in from updating rbd_dev + - rbd: take header_rwsem in rbd_dev_refresh() only when updating + - block: fix use-after-free of q->q_usage_counter + - scsi: zfcp: Fix a double put in zfcp_port_enqueue() + - qed/red_ll2: Fix undefined behavior bug in struct qed_ll2_info + - wifi: mwifiex: Fix tlv_buf_left calculation + - net: replace calls to sock->ops->connect() with kernel_connect() + - net: prevent rewrite of msg_name in sock_sendmsg() + - drm/amd: Fix detection of _PR3 on the PCIe root port + - arm64: Add Cortex-A520 CPU part definition + - HID: sony: Fix a potential memory leak in sony_probe() + - ubi: Refuse attaching if mtd's erasesize is 0 + - wifi: iwlwifi: dbg_ini: fix structure packing + - iwlwifi: avoid void pointer arithmetic + - wifi: iwlwifi: mvm: Fix a memory corruption issue + - wifi: mwifiex: Fix oob check condition in mwifiex_process_rx_packet + - bpf: Fix tr dereferencing + - drivers/net: process the result of hdlc_open() and add call of hdlc_close() + in uhdlc_close() + - wifi: mt76: mt76x02: fix MT76x0 external LNA gain handling + - regmap: rbtree: Fix wrong register marked as in-cache when creating new node + - ima: Finish deprecation of IMA_TRUSTED_KEYRING Kconfig + - [Config] updateconfigs for IMA_BLACKLIST_KEYRING + - scsi: target: core: Fix deadlock due to recursive locking + - ima: rework CONFIG_IMA dependency block + - NFSv4: Fix a nfs4_state_manager() race + - bpf, sockmap: Reject sk_msg egress redirects to non-TCP sockets + - modpost: add missing else to the "of" check + - net: fix possible store tearing in neigh_periodic_work() + - ipv4, ipv6: Fix handling of transhdrlen in __ip{,6}_append_data() + - ptp: ocp: Fix error handling in ptp_ocp_device_init + - net: dsa: mv88e6xxx: Avoid EEPROM timeout when EEPROM is absent + - net: usb: smsc75xx: Fix uninit-value access in __smsc75xx_read_reg + - net: nfc: llcp: Add lock when modifying device list + - net: ethernet: ti: am65-cpsw: Fix error code in + am65_cpsw_nuss_init_tx_chns() + - ibmveth: Remove condition to recompute TCP header checksum. + - netfilter: handle the connecting collision properly in + nf_conntrack_proto_sctp + - netfilter: nf_tables: nft_set_rbtree: fix spurious insertion failure + - ipv4: Set offload_failed flag in fibmatch results + - net: stmmac: dwmac-stm32: fix resume on STM32 MCU + - tipc: fix a potential deadlock on &tx->lock + - tcp: fix quick-ack counting to count actual ACKs of new data + - tcp: fix delayed ACKs for MSS boundary condition + - sctp: update transport state when processing a dupcook packet + - sctp: update hb timer immediately after users change hb_interval + - HID: sony: remove duplicate NULL check before calling usb_free_urb() + - HID: intel-ish-hid: ipc: Disable and reenable ACPI GPE bit + - dm zoned: free dmz->ddev array in dmz_put_zoned_devices + - RDMA/core: Require admin capabilities to set system parameters + - of: dynamic: Fix potential memory leak in of_changeset_action() + - IB/mlx4: Fix the size of a buffer in add_port_entries() + - gpio: aspeed: fix the GPIO number passed to pinctrl_gpio_set_config() + - gpio: pxa: disable pinctrl calls for MMP_GPIO + - RDMA/cma: Initialize ib_sa_multicast structure to 0 when join + - RDMA/cma: Fix truncation compilation warning in make_cma_ports + - RDMA/uverbs: Fix typo of sizeof argument + - RDMA/siw: Fix connection failure handling + - RDMA/mlx5: Fix NULL string error + - ksmbd: fix uaf in smb20_oplock_break_ack + - parisc: Restore __ldcw_align for PA-RISC 2.0 processors + - xen/events: replace evtchn_rwlock with RCU + - Linux 5.15.135 + * CVE-2023-46813 + - x86/sev: Disable MMIO emulation from user mode + - x86/sev: Check IOBM for IOIO exceptions from user-space + - x86/sev: Check for user-space IOIO pointing to kernel space + * CVE-2023-6111 + - netfilter: nf_tables: remove catchall element in GC sync path + * Change in trace file leads to test timeout in ftrace tests on 5.15 ARM64 + (LP: #2029405) + - selftests/ftrace: Stop tracing while reading the trace file by default + * Fix ADL: System enabled AHCI can't get into s0ix when attached ODD + (LP: #2037493) + - ata: ahci: Add Intel Alder Lake-P AHCI controller to low power chipsets list + * Kernel doesn't compile with CONFIG_IMA (LP: #2041842) + - SAUCE: LSM: Fix typo in ima_filter_rule_match struct argument + * CVE-2023-32252 + - ksmbd: add smb-direct shutdown + - ksmbd: Implements sess->ksmbd_chann_list as xarray + - ksmbd: fix racy issue from session setup and logoff + * Jammy update: v5.15.134 upstream stable release (LP: #2044023) + - NFS: Use the correct commit info in nfs_join_page_group() + - NFS: More fixes for nfs_direct_write_reschedule_io() + - NFS/pNFS: Report EINVAL errors from connect() to the server + - SUNRPC: Mark the cred for revalidation if the server rejects it + - NFSv4.1: use EXCHGID4_FLAG_USE_PNFS_DS for DS server + - NFSv4.1: fix pnfs MDS=DS session trunking + - tracing: Make trace_marker{,_raw} stream-like + - tracing: Increase trace array ref count on enable and filter files + - ata: ahci: Drop pointless VPRINTK() calls and convert the remaining ones + - ata: libahci: clear pending interrupt status + - ext4: scope ret locally in ext4_try_to_trim_range() + - ext4: change s_last_trim_minblks type to unsigned long + - ext4: replace the traditional ternary conditional operator with with + max()/min() + - ext4: move setting of trimmed bit into ext4_try_to_trim_range() + - ext4: do not let fstrim block system suspend + - tracing: Have event inject files inc the trace array ref count + - netfilter: nft_set_rbtree: use read spinlock to avoid datapath contention + - netfilter: nft_set_pipapo: call nft_trans_gc_queue_sync() in catchall GC + - netfilter: nft_set_pipapo: stop GC iteration if GC transaction allocation + fails + - netfilter: nft_set_hash: try later when GC hits EAGAIN on iteration + - netfilter: nf_tables: fix memleak when more than 255 elements expired + - ASoC: meson: spdifin: start hw on dai probe + - netfilter: nf_tables: disallow element removal on anonymous sets + - bpf: Avoid deadlock when using queue and stack maps from NMI + - selftests: tls: swap the TX and RX sockets in some tests + - net/core: Fix ETH_P_1588 flow dissector + - ASoC: imx-audmix: Fix return error with devm_clk_get() + - iavf: do not process adminq tasks when __IAVF_IN_REMOVE_TASK is set + - i40e: Add VF VLAN pruning + - i40e: Fix VF VLAN offloading when port VLAN is configured + - ionic: fix 16bit math issue when PAGE_SIZE >= 64KB + - igc: Fix infinite initialization loop with early XDP redirect + - powerpc/perf/hv-24x7: Update domain value check + - dccp: fix dccp_v4_err()/dccp_v6_err() again + - platform/x86: intel_scu_ipc: Check status after timeout in busy_loop() + - platform/x86: intel_scu_ipc: Check status upon timeout in + ipc_wait_for_interrupt() + - platform/x86: intel_scu_ipc: Don't override scu in + intel_scu_ipc_dev_simple_command() + - platform/x86: intel_scu_ipc: Fail IPC send if still busy + - x86/srso: Fix srso_show_state() side effect + - x86/srso: Fix SBPB enablement for spec_rstack_overflow=off + - net: hns3: fix GRE checksum offload issue + - net: hns3: only enable unicast promisc when mac table full + - net: hns3: fix fail to delete tc flower rules during reset issue + - net: hns3: add 5ms delay before clear firmware reset irq source + - net: bridge: use DEV_STATS_INC() + - team: fix null-ptr-deref when team device type is changed + - net: rds: Fix possible NULL-pointer dereference + - netfilter: nf_tables: disable toggling dormant table state more than once + - locking/seqlock: Do the lockdep annotation before locking in + do_write_seqcount_begin_nested() + - net: ena: Flush XDP packets on error. + - bnxt_en: Flush XDP for bnxt_poll_nitroa0()'s NAPI + - igc: Expose tx-usecs coalesce setting to user + - Fix up backport of 136191703038 ("interconnect: Teach lockdep about + icc_bw_lock order") + - gpio: tb10x: Fix an error handling path in tb10x_gpio_probe() + - i2c: mux: demux-pinctrl: check the return value of devm_kstrdup() + - i2c: mux: gpio: Replace custom acpi_get_local_address() + - i2c: mux: gpio: Add missing fwnode_handle_put() + - xfs: bound maximum wait time for inodegc work + - xfs: introduce xfs_inodegc_push() + - xfs: explicitly specify cpu when forcing inodegc delayed work to run + immediately + - xfs: check that per-cpu inodegc workers actually run on that cpu + - xfs: disable reaping in fscounters scrub + - xfs: fix xfs_inodegc_stop racing with mod_delayed_work + - Input: i8042 - rename i8042-x86ia64io.h to i8042-acpipnpio.h + - Input: i8042 - add quirk for TUXEDO Gemini 17 Gen1/Clevo PD70PN + - netfilter: exthdr: add support for tcp option removal + - netfilter: nft_exthdr: Fix non-linear header modification + - ata: libata: Rename link flag ATA_LFLAG_NO_DB_DELAY + - ata: ahci: Add support for AMD A85 FCH (Hudson D4) + - ata: ahci: Rename board_ahci_mobile + - ata: ahci: Add Elkhart Lake AHCI controller + - scsi: qla2xxx: Select qpair depending on which CPU post_cmd() gets called + - scsi: qla2xxx: Use raw_smp_processor_id() instead of smp_processor_id() + - btrfs: reset destination buffer when read_extent_buffer() gets invalid range + - MIPS: Alchemy: only build mmc support helpers if au1xmmc is enabled + - drm/bridge: ti-sn65dsi83: Do not generate HFP/HBP/HSA and EOT packet + - bus: ti-sysc: Use fsleep() instead of usleep_range() in sysc_reset() + - bus: ti-sysc: Fix missing AM35xx SoC matching + - clk: tegra: fix error return case for recalc_rate + - treewide: Replace GPLv2 boilerplate/reference with SPDX - gpl-2.0_56.RULE + (part 1) + - ARM: dts: omap: correct indentation + - ARM: dts: ti: omap: Fix bandgap thermal cells addressing for omap3/4 + - ARM: dts: ti: omap: motorola-mapphone: Fix abe_clkctrl warning on boot + - bus: ti-sysc: Fix SYSC_QUIRK_SWSUP_SIDLE_ACT handling for uart wake-up + - power: supply: ucs1002: fix error code in ucs1002_get_property() + - firmware: imx-dsp: Fix an error handling path in imx_dsp_setup_channels() + - xtensa: add default definition for XCHAL_HAVE_DIV32 + - xtensa: iss/network: make functions static + - xtensa: boot: don't add include-dirs + - xtensa: boot/lib: fix function prototypes + - soc: imx8m: Enable OCOTP clock for imx8mm before reading registers + - gpio: pmic-eic-sprd: Add can_sleep flag for PMIC EIC chip + - i2c: npcm7xx: Fix callback completion ordering + - dma-debug: don't call __dma_entry_alloc_check_leak() under free_entries_lock + - spi: sun6i: reduce DMA RX transfer width to single byte + - spi: sun6i: fix race between DMA RX transfer completion and RX FIFO drain + - parisc: sba: Fix compile warning wrt list of SBA devices + - parisc: iosapic.c: Fix sparse warnings + - parisc: drivers: Fix sparse warning + - parisc: irq: Make irq_stack_union static to avoid sparse warning + - scsi: qedf: Add synchronization between I/O completions and abort + - scsi: ufs: core: Move __ufshcd_send_uic_cmd() outside host_lock + - selftests/ftrace: Correctly enable event in instance-event.tc + - ring-buffer: Avoid softlockup in ring_buffer_resize() + - btrfs: improve error message after failure to add delayed dir index item + - selftests: fix dependency checker script + - ring-buffer: Do not attempt to read past "commit" + - platform/mellanox: mlxbf-bootctl: add NET dependency into Kconfig + - drm/amd/display: Don't check registers, if using AUX BL control + - drm/amdgpu: Handle null atom context in VBIOS info ioctl + - scsi: pm80xx: Use phy-specific SAS address when sending PHY_START command + - scsi: pm80xx: Avoid leaking tags when processing + OPC_INB_SET_CONTROLLER_CONFIG command + - smb3: correct places where ENOTSUPP is used instead of preferred EOPNOTSUPP + - ata: libata-eh: do not clear ATA_PFLAG_EH_PENDING in ata_eh_reset() + - spi: nxp-fspi: reset the FLSHxCR1 registers + - spi: stm32: add a delay before SPI disable + - ASoC: fsl: imx-pcm-rpmsg: Add SNDRV_PCM_INFO_BATCH flag + - bpf: Clarify error expectations from bpf_clone_redirect + - ASoC: imx-rpmsg: Set ignore_pmdown_time for dai_link + - media: vb2: frame_vector.c: replace WARN_ONCE with a comment + - powerpc/watchpoints: Disable preemption in thread_change_pc() + - powerpc/watchpoint: Disable pagefaults when getting user instruction + - powerpc/watchpoints: Annotate atomic context in more places + - ncsi: Propagate carrier gain/loss events to the NCSI controller + - fbdev/sh7760fb: Depend on FB=y + - perf build: Define YYNOMEM as YYNOABORT for bison < 3.81 + - sched/cpuacct: Optimize away RCU read lock + - cgroup: Fix suspicious rcu_dereference_check() usage warning + - nvme-pci: factor the iod mempool creation into a helper + - nvme-pci: factor out a nvme_pci_alloc_dev helper + - nvme-pci: do not set the NUMA node of device if it has none + - watchdog: iTCO_wdt: No need to stop the timer in probe + - watchdog: iTCO_wdt: Set NO_REBOOT if the watchdog is not already running + - i40e: fix potential NULL pointer dereferencing of pf->vf + i40e_sync_vsi_filters() + - scsi: qla2xxx: Fix NULL pointer dereference in target mode + - nvme-pci: always return an ERR_PTR from nvme_pci_alloc_dev + - smack: Record transmuting in smk_transmuted + - smack: Retrieve transmuting information in smack_inode_getsecurity() + - Smack:- Use overlay inode label in smack_inode_copy_up() + - iommu/arm-smmu-v3: Fix soft lockup triggered by arm_smmu_mm_invalidate_range + - x86/srso: Add SRSO mitigation for Hygon processors + - Revert "tty: n_gsm: fix UAF in gsm_cleanup_mux" + - serial: 8250_port: Check IRQ data before use + - nilfs2: fix potential use after free in nilfs_gccache_submit_read_data() + - ALSA: hda: Disable power save for solving pop issue on Lenovo ThinkCentre + M70q + - ata: libata-scsi: ignore reserved bits for REPORT SUPPORTED OPERATION CODES + - i2c: i801: unregister tco_pdev in i801_probe() error path + - sched/rt: Fix live lock between select_fallback_rq() and RT push + - io_uring/fs: remove sqe->rw_flags checking from LINKAT + - Revert "SUNRPC dont update timeout value on connection reset" + - proc: nommu: /proc//maps: release mmap read lock + - ring-buffer: Update "shortest_full" in polling + - btrfs: properly report 0 avail for very full file systems + - bpf: Fix BTF_ID symbol generation collision + - bpf: Fix BTF_ID symbol generation collision in tools/ + - net: thunderbolt: Fix TCPv6 GSO checksum calculation + - ata: libata-core: Fix ata_port_request_pm() locking + - ata: libata-core: Fix port and device removal + - ata: libata-core: Do not register PM operations for SAS ports + - ata: libata-sata: increase PMP SRST timeout to 10s + - fs: binfmt_elf_efpic: fix personality for ELF-FDPIC + - drm/meson: fix memory leak on ->hpd_notify callback + - Linux 5.15.134 + * Jammy update: v5.15.133 upstream stable release (LP: #2043422) + - autofs: fix memory leak of waitqueues in autofs_catatonic_mode + - btrfs: output extra debug info if we failed to find an inline backref + - locks: fix KASAN: use-after-free in trace_event_raw_event_filelock_lock + - ACPICA: Add AML_NO_OPERAND_RESOLVE flag to Timer + - kernel/fork: beware of __put_task_struct() calling context + - rcuscale: Move rcu_scale_writer() schedule_timeout_uninterruptible() to + _idle() + - scftorture: Forgive memory-allocation failure if KASAN + - ACPI: video: Add backlight=native DMI quirk for Lenovo Ideapad Z470 + - perf/smmuv3: Enable HiSilicon Erratum 162001900 quirk for HIP08/09 + - perf/imx_ddr: speed up overflow frequency of cycle + - hw_breakpoint: fix single-stepping when using bpf_overflow_handler + - ACPI: x86: s2idle: Catch multiple ACPI_TYPE_PACKAGE objects + - devlink: remove reload failed checks in params get/set callbacks + - crypto: lrw,xts - Replace strlcpy with strscpy + - wifi: ath9k: fix fortify warnings + - wifi: ath9k: fix printk specifier + - wifi: mwifiex: fix fortify warning + - wifi: wil6210: fix fortify warnings + - crypto: lib/mpi - avoid null pointer deref in mpi_cmp_ui() + - tpm_tis: Resend command to recover from data transfer errors + - mmc: sdhci-esdhc-imx: improve ESDHC_FLAG_ERR010450 + - alx: fix OOB-read compiler warning + - wifi: mac80211: check S1G action frame size + - netfilter: ebtables: fix fortify warnings in size_entry_mwt() + - wifi: mac80211_hwsim: drop short frames + - drm/bridge: tc358762: Instruct DSI host to generate HSE packets + - arm64: dts: qcom: sm6125-pdx201: correct ramoops pmsg-size + - arm64: dts: qcom: sm8150-kumano: correct ramoops pmsg-size + - arm64: dts: qcom: sm8250-edo: correct ramoops pmsg-size + - samples/hw_breakpoint: Fix kernel BUG 'invalid opcode: 0000' + - ALSA: hda: intel-dsp-cfg: add LunarLake support + - drm/amd/display: Blocking invalid 420 modes on HDMI TMDS for DCN31 + - drm/exynos: fix a possible null-pointer dereference due to data race in + exynos_drm_crtc_atomic_disable() + - bus: ti-sysc: Configure uart quirks for k3 SoC + - md: raid1: fix potential OOB in raid1_remove_disk() + - ext2: fix datatype of block number in ext2_xattr_set2() + - fs/jfs: prevent double-free in dbUnmount() after failed jfs_remount() + - jfs: fix invalid free of JFS_IP(ipimap)->i_imap in diUnmount + - ARM: 9317/1: kexec: Make smp stop calls asynchronous + - powerpc/pseries: fix possible memory leak in ibmebus_bus_init() + - PCI: fu740: Set the number of MSI vectors + - media: dvb-usb-v2: af9035: Fix null-ptr-deref in af9035_i2c_master_xfer + - media: dw2102: Fix null-ptr-deref in dw2102_i2c_transfer() + - media: af9005: Fix null-ptr-deref in af9005_i2c_xfer + - media: anysee: fix null-ptr-deref in anysee_master_xfer + - media: az6007: Fix null-ptr-deref in az6007_i2c_xfer() + - media: dvb-usb-v2: gl861: Fix null-ptr-deref in gl861_i2c_master_xfer + - media: tuners: qt1010: replace BUG_ON with a regular error + - media: pci: cx23885: replace BUG with error return + - usb: cdns3: Put the cdns set active part outside the spin lock + - usb: gadget: fsl_qe_udc: validate endpoint index for ch9 udc + - tools: iio: iio_generic_buffer: Fix some integer type and calculation + - scsi: target: iscsi: Fix buffer overflow in lio_target_nacl_info_show() + - serial: cpm_uart: Avoid suspicious locking + - usb: ehci: add workaround for chipidea PORTSC.PEC bug + - media: pci: ipu3-cio2: Initialise timing struct to avoid a compiler warning + - kobject: Add sanity check for kset->kobj.ktype in kset_register() + - interconnect: Fix locking for runpm vs reclaim + - printk: Consolidate console deferred printing + - jbd2: refactor wait logic for transaction updates into a common function + - jbd2: fix use-after-free of transaction_t race + - jbd2: kill t_handle_lock transaction spinlock + - jbd2: rename jbd_debug() to jbd2_debug() + - jbd2: correct the end of the journal recovery scan range + - mtd: rawnand: brcmnand: Allow SoC to provide I/O operations + - mtd: rawnand: brcmnand: Fix ECC level field setting for v7.2 controller + - MIPS: Use "grep -E" instead of "egrep" + - perf test: Remove bash construct from stat_bpf_counters.sh test + - perf test shell stat_bpf_counters: Fix test on Intel + - btrfs: move btrfs_pinned_by_swapfile prototype into volumes.h + - btrfs: add a helper to read the superblock metadata_uuid + - btrfs: compare the correct fsid/metadata_uuid in btrfs_validate_super + - drm: gm12u320: Fix the timeout usage for usb_bulk_msg() + - scsi: qla2xxx: Fix NULL vs IS_ERR() bug for debugfs_create_dir() + - selftests: tracing: Fix to unmount tracefs for recovering environment + - scsi: lpfc: Fix the NULL vs IS_ERR() bug for debugfs_create_file() + - x86/boot/compressed: Reserve more memory for page tables + - x86/purgatory: Remove LTO flags + - samples/hw_breakpoint: fix building without module unloading + - md/raid1: fix error: ISO C90 forbids mixed declarations + - attr: block mode changes of symlinks + - ovl: fix failed copyup of fileattr on a symlink + - ovl: fix incorrect fdput() on aio completion + - btrfs: fix lockdep splat and potential deadlock after failure running + delayed items + - btrfs: release path before inode lookup during the ino lookup ioctl + - tracing: Have tracing_max_latency inc the trace array ref count + - tracing: Have current_trace inc the trace array ref count + - tracing: Have option files inc the trace array ref count + - nfsd: fix change_info in NFSv4 RENAME replies + - tracefs: Add missing lockdown check to tracefs_create_dir() + - i2c: aspeed: Reset the i2c controller when timeout occurs + - ata: libata: disallow dev-initiated LPM transitions to unsupported states + - scsi: megaraid_sas: Fix deadlock on firmware crashdump + - scsi: pm8001: Setup IRQs on resume + - ext4: fix rec_len verify error + - drm/amd/display: fix the white screen issue when >= 64GB DRAM + - drm/amdgpu: fix amdgpu_cs_p1_user_fence + - drm/amd/display: enable cursor degamma for DCN3+ DRM legacy gamma + - interconnect: Teach lockdep about icc_bw_lock order + - Linux 5.15.133 + * Jammy update: v5.15.132 upstream stable release (LP: #2041702) + - ARM: dts: imx: update sdma node name format + - ARM: dts: imx7s: Drop dma-apb interrupt-names + - ARM: dts: imx: Adjust dma-apbh node name + - ARM: dts: imx: Set default tuning step for imx7d usdhc + - phy: qcom-snps-femto-v2: use qcom_snps_hsphy_suspend/resume error code + - media: pulse8-cec: handle possible ping error + - media: pci: cx23885: fix error handling for cx23885 ATSC boards + - 9p: virtio: make sure 'offs' is initialized in zc_request + - ksmbd: fix out of bounds in smb3_decrypt_req() + - ksmbd: no response from compound read + - ASoC: da7219: Flush pending AAD IRQ when suspending + - ASoC: da7219: Check for failure reading AAD IRQ events + - ethernet: atheros: fix return value check in atl1c_tso_csum() + - vxlan: generalize vxlan_parse_gpe_hdr and remove unused args + - m68k: Fix invalid .section syntax + - s390/dasd: use correct number of retries for ERP requests + - s390/dasd: fix hanging device after request requeue + - fs/nls: make load_nls() take a const parameter + - ASoC: rt5682-sdw: fix for JD event handling in ClockStop Mode0 + - ASoc: codecs: ES8316: Fix DMIC config + - ASoC: rt711: fix for JD event handling in ClockStop Mode0 + - ASoC: rt711-sdca: fix for JD event handling in ClockStop Mode0 + - ASoC: atmel: Fix the 8K sample parameter in I2SC master + - platform/x86: intel: hid: Always call BTNL ACPI method + - platform/x86/intel/hid: Add HP Dragonfly G2 to VGBS DMI quirks + - platform/x86: huawei-wmi: Silence ambient light sensor + - drm/amd/display: Exit idle optimizations before attempt to access PHY + - ovl: Always reevaluate the file signature for IMA + - ata: pata_arasan_cf: Use dev_err_probe() instead dev_err() in data_xfer() + - security: keys: perform capable check only on privileged operations + - kprobes: Prohibit probing on CFI preamble symbol + - clk: fixed-mmio: make COMMON_CLK_FIXED_MMIO depend on HAS_IOMEM + - vmbus_testing: fix wrong python syntax for integer value comparison + - net: usb: qmi_wwan: add Quectel EM05GV2 + - wifi: brcmfmac: Fix field-spanning write in brcmf_scan_params_v2_to_v1() + - idmaengine: make FSL_EDMA and INTEL_IDMA64 depends on HAS_IOMEM + - scsi: lpfc: Remove reftag check in DIF paths + - scsi: qedi: Fix potential deadlock on &qedi_percpu->p_work_lock + - net: hns3: restore user pause configure when disable autoneg + - drm/amdgpu: Match against exact bootloader status + - netlabel: fix shift wrapping bug in netlbl_catmap_setlong() + - bnx2x: fix page fault following EEH recovery + - sctp: handle invalid error codes without calling BUG() + - scsi: storvsc: Always set no_report_opcodes + - scsi: lpfc: Fix incorrect big endian type assignment in bsg loopback path + - ALSA: seq: oss: Fix racy open/close of MIDI devices + - tracing: Introduce pipe_cpumask to avoid race on trace_pipes + - platform/mellanox: Fix mlxbf-tmfifo not handling all virtio CONSOLE + notifications + - arm64: lib: Import latest version of Arm Optimized Routines' strncmp + - of: kexec: Mark ima_{free,stable}_kexec_buffer() as __init + - udf: Check consistency of Space Bitmap Descriptor + - udf: Handle error when adding extent to a file + - Revert "net: macsec: preserve ingress frame ordering" + - reiserfs: Check the return value from __getblk() + - eventfd: prevent underflow for eventfd semaphores + - fs: Fix error checking for d_hash_and_lookup() + - tmpfs: verify {g,u}id mount options correctly + - selftests/harness: Actually report SKIP for signal tests + - ARM: ptrace: Restore syscall restart tracing + - ARM: ptrace: Restore syscall skipping for tracers + - refscale: Fix uninitalized use of wait_queue_head_t + - OPP: Fix passing 0 to PTR_ERR in _opp_attach_genpd() + - selftests/resctrl: Make resctrl_tests run using kselftest framework + - selftests/resctrl: Add resctrl.h into build deps + - selftests/resctrl: Don't leak buffer in fill_cache() + - selftests/resctrl: Unmount resctrl FS if child fails to run benchmark + - selftests/resctrl: Close perf value read fd on errors + - x86/decompressor: Don't rely on upper 32 bits of GPRs being preserved + - perf/imx_ddr: don't enable counter0 if none of 4 counters are used + - selftests/futex: Order calls to futex_lock_pi + - s390/pkey: fix/harmonize internal keyblob headers + - s390/paes: fix PKEY_TYPE_EP11_AES handling for secure keyblobs + - ACPI: x86: s2idle: Post-increment variables when getting constraints + - ACPI: x86: s2idle: Fix a logic error parsing AMD constraints table + - x86/efistub: Fix PCI ROM preservation in mixed mode + - cpufreq: powernow-k8: Use related_cpus instead of cpus in driver.exit() + - bpftool: Use a local bpf_perf_event_value to fix accessing its fields + - bpf: Clear the probe_addr for uprobe + - tcp: tcp_enter_quickack_mode() should be static + - hwrng: nomadik - keep clock enabled while hwrng is registered + - hwrng: pic32 - use devm_clk_get_enabled + - regmap: rbtree: Use alloc_flags for memory allocations + - udp: re-score reuseport groups when connected sockets are present + - bpf: reject unhashed sockets in bpf_sk_assign + - ipv6: Add reasons for skb drops to __udp6_lib_rcv + - wifi: mt76: testmode: add nla_policy for MT76_TM_ATTR_TX_LENGTH + - spi: tegra20-sflash: fix to check return value of platform_get_irq() in + tegra_sflash_probe() + - can: gs_usb: gs_usb_receive_bulk_callback(): count RX overflow errors also + in case of OOM + - wifi: mt76: mt7915: fix power-limits while chan_switch + - wifi: mwifiex: Fix OOB and integer underflow when rx packets + - wifi: mwifiex: fix error recovery in PCIE buffer descriptor management + - crypto: stm32 - Properly handle pm_runtime_get failing + - crypto: api - Use work queue in crypto_destroy_instance + - Bluetooth: nokia: fix value check in nokia_bluetooth_serdev_probe() + - Bluetooth: Fix potential use-after-free when clear keys + - net: tcp: fix unexcepted socket die when snd_wnd is 0 + - selftests/bpf: Clean up fmod_ret in bench_rename test script + - net-memcg: Fix scope of sockmem pressure indicators + - ice: ice_aq_check_events: fix off-by-one check when filling buffer + - crypto: caam - fix unchecked return value error + - hwrng: iproc-rng200 - Implement suspend and resume calls + - lwt: Fix return values of BPF xmit ops + - lwt: Check LWTUNNEL_XMIT_CONTINUE strictly + - fs: ocfs2: namei: check return value of ocfs2_add_entry() + - wifi: mwifiex: fix memory leak in mwifiex_histogram_read() + - wifi: mwifiex: Fix missed return in oob checks failed path + - samples/bpf: fix broken map lookup probe + - wifi: ath9k: fix races between ath9k_wmi_cmd and ath9k_wmi_ctrl_rx + - wifi: ath9k: protect WMI command response buffer replacement with a lock + - wifi: nl80211/cfg80211: add forgotten nla_policy for BSS color attribute + - wifi: mwifiex: avoid possible NULL skb pointer dereference + - Bluetooth: btusb: Do not call kfree_skb() under spin_lock_irqsave() + - wifi: ath9k: use IS_ERR() with debugfs_create_dir() + - net: arcnet: Do not call kfree_skb() under local_irq_disable() + - mlxsw: i2c: Fix chunk size setting in output mailbox buffer + - mlxsw: i2c: Limit single transaction buffer size + - hwmon: (tmp513) Fix the channel number in tmp51x_is_visible() + - netrom: Deny concurrent connect(). + - drm/bridge: tc358764: Fix debug print parameter order + - quota: factor out dquot_write_dquot() + - quota: rename dquot_active() to inode_quota_active() + - quota: add new helper dquot_active() + - quota: fix dqput() to follow the guarantees dquot_srcu should provide + - ASoC: stac9766: fix build errors with REGMAP_AC97 + - soc: qcom: ocmem: Add OCMEM hardware version print + - soc: qcom: ocmem: Fix NUM_PORTS & NUM_MACROS macros + - arm64: dts: qcom: sm8250: correct dynamic power coefficients + - arm64: dts: qcom: sm8250-edo: Add gpio line names for TLMM + - arm64: dts: qcom: sm8250-edo: Add GPIO line names for PMIC GPIOs + - arm64: dts: qcom: sm8250-edo: Rectify gpio-keys + - arm64: dts: qcom: msm8996: Add missing interrupt to the USB2 controller + - arm64: dts: qcom: sm8350: Add missing LMH interrupts to cpufreq + - arm64: dts: qcom: sm8350: Use proper CPU compatibles + - arm64: dts: qcom: pmk8350: fix ADC-TM compatible string + - arm64: dts: qcom: sm8250: Mark PCIe hosts as DMA coherent + - drm/amdgpu: avoid integer overflow warning in amdgpu_device_resize_fb_bar() + - ARM: dts: BCM53573: Add cells sizes to PCIe node + - ARM: dts: BCM53573: Use updated "spi-gpio" binding properties + - arm64: dts: qcom: sm8250-sony-xperia: correct GPIO keys wakeup again + - arm64: dts: qcom: pmi8998: Add node for WLED + - arm64: dts: qcom: correct SPMI WLED register range encoding + - arm64: dts: qcom: pm660l: Add missing short interrupt + - arm64: dts: qcom: pmi8994: Remove hardcoded linear WLED enabled-strings + - arm64: dts: qcom: Move WLED num-strings from pmi8994 to sony-xperia-tone + - arm64: dts: qcom: pmi8994: Add missing OVP interrupt + - drm/etnaviv: fix dumping of active MMU context + - x86/mm: Fix PAT bit missing from page protection modify mask + - ARM: dts: s3c64xx: align pinctrl with dtschema + - ARM: dts: samsung: s3c6410-mini6410: correct ethernet reg addresses (split) + - ARM: dts: s5pv210: add dummy 5V regulator for backlight on SMDKv210 + - ARM: dts: samsung: s5pv210-smdkv210: correct ethernet reg addresses (split) + - drm: adv7511: Fix low refresh rate register for ADV7533/5 + - ARM: dts: BCM53573: Fix Ethernet info for Luxul devices + - arm64: dts: qcom: sdm845: Add missing RPMh power domain to GCC + - arm64: dts: qcom: sdm845: Fix the min frequency of "ice_core_clk" + - drm/amdgpu: Update min() to min_t() in 'amdgpu_info_ioctl' + - md/raid10: factor out dereference_rdev_and_rrdev() + - md/raid10: use dereference_rdev_and_rrdev() to get devices + - md/bitmap: don't set max_write_behind if there is no write mostly device + - md/md-bitmap: hold 'reconfig_mutex' in backlog_store() + - drm/msm: Update dev core dump to not print backwards + - drm/tegra: dpaux: Fix incorrect return value of platform_get_irq + - of: unittest: fix null pointer dereferencing in + of_unittest_find_node_by_name() + - arm64: dts: qcom: sm8150: Fix the I2C7 interrupt + - drm/armada: Fix off-by-one error in armada_overlay_get_property() + - drm/panel: simple: Add missing connector type and pixel format for AUO + T215HVN01 + - ima: Remove deprecated IMA_TRUSTED_KEYRING Kconfig + - [Config] updateconfigs for IMA_TRUSTED_KEYRING + - drm: xlnx: zynqmp_dpsub: Add missing check for dma_set_mask + - drm/msm/mdp5: Don't leak some plane state + - firmware: meson_sm: fix to avoid potential NULL pointer dereference + - smackfs: Prevent underflow in smk_set_cipso() + - drm/amd/pm: fix variable dereferenced issue in amdgpu_device_attr_create() + - drm/msm/a2xx: Call adreno_gpu_init() earlier + - audit: fix possible soft lockup in __audit_inode_child() + - io_uring: fix drain stalls by invalid SQE + - bus: ti-sysc: Fix build warning for 64-bit build + - drm/mediatek: Remove freeing not dynamic allocated memory + - drm/mediatek: Fix potential memory leak if vmap() fail + - arm64: dts: qcom: apq8016-sbc: Fix ov5640 regulator supply names + - bus: ti-sysc: Fix cast to enum warning + - md: Set MD_BROKEN for RAID1 and RAID10 + - md: add error_handlers for raid0 and linear + - md/raid0: Factor out helper for mapping and submitting a bio + - md/raid0: Fix performance regression for large sequential writes + - md: raid0: account for split bio in iostat accounting + - of: overlay: Call of_changeset_init() early + - of: unittest: Fix overlay type in apply/revert check + - ALSA: ac97: Fix possible error value of *rac97 + - ipmi:ssif: Add check for kstrdup + - ipmi:ssif: Fix a memory leak when scanning for an adapter + - drivers: clk: keystone: Fix parameter judgment in _of_pll_clk_init() + - clk: sunxi-ng: Modify mismatched function name + - clk: qcom: gcc-sc7180: Fix up gcc_sdcc2_apps_clk_src + - EDAC/igen6: Fix the issue of no error events + - ext4: correct grp validation in ext4_mb_good_group + - ext4: avoid potential data overflow in next_linear_group + - clk: qcom: gcc-sm8250: Fix gcc_sdcc2_apps_clk_src + - clk: qcom: reset: Use the correct type of sleep/delay based on length + - clk: qcom: gcc-sm6350: Fix gcc_sdcc2_apps_clk_src + - PCI: microchip: Correct the DED and SEC interrupt bit offsets + - PCI: Mark NVIDIA T4 GPUs to avoid bus reset + - pinctrl: mcp23s08: check return value of devm_kasprintf() + - PCI: pciehp: Use RMW accessors for changing LNKCTL + - PCI/ASPM: Use RMW accessors for changing LNKCTL + - clk: imx8mp: fix sai4 clock + - clk: imx: composite-8m: fix clock pauses when set_rate would be a no-op + - powerpc/radix: Move some functions into #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE + - vfio/type1: fix cap_migration information leak + - powerpc/fadump: reset dump area size if fadump memory reserve fails + - powerpc/perf: Convert fsl_emb notifier to state machine callbacks + - drm/amdgpu: Use RMW accessors for changing LNKCTL + - drm/radeon: Use RMW accessors for changing LNKCTL + - net/mlx5: Use RMW accessors for changing LNKCTL + - wifi: ath11k: Use RMW accessors for changing LNKCTL + - wifi: ath10k: Use RMW accessors for changing LNKCTL + - PCI: dwc: Add start_link/stop_link inlines + - PCI: layerscape: Add the endpoint linkup notifier support + - PCI: layerscape: Add workaround for lost link capabilities during reset + - powerpc: Don't include lppaca.h in paca.h + - powerpc/pseries: Rework lppaca_shared_proc() to avoid DEBUG_PREEMPT + - nfs/blocklayout: Use the passed in gfp flags + - powerpc/iommu: Fix notifiers being shared by PCI and VIO buses + - ext4: fix unttached inode after power cut with orphan file feature enabled + - jfs: validate max amount of blocks before allocation. + - fs: lockd: avoid possible wrong NULL parameter + - NFSD: da_addr_body field missing in some GETDEVICEINFO replies + - NFS: Guard against READDIR loop when entry names exceed MAXNAMELEN + - NFSv4.2: fix handling of COPY ERR_OFFLOAD_NO_REQ + - pNFS: Fix assignment of xprtdata.cred + - RDMA/qedr: Remove a duplicate assignment in irdma_query_ah() + - media: ad5820: Drop unsupported ad5823 from i2c_ and of_device_id tables + - media: i2c: tvp5150: check return value of devm_kasprintf() + - media: v4l2-core: Fix a potential resource leak in v4l2_fwnode_parse_link() + - iommu/amd/iommu_v2: Fix pasid_state refcount dec hit 0 warning on pasid + unbind + - iommu: rockchip: Fix directory table address encoding + - drivers: usb: smsusb: fix error handling code in smsusb_init_device + - media: dib7000p: Fix potential division by zero + - media: dvb-usb: m920x: Fix a potential memory leak in m920x_i2c_xfer() + - media: cx24120: Add retval check for cx24120_message_send() + - scsi: hisi_sas: Modify v3 HW SSP underflow error processing + - scsi: hisi_sas: Modify v3 HW SATA completion error processing + - scsi: hisi_sas: Fix warnings detected by sparse + - scsi: hisi_sas: Fix normally completed I/O analysed as failed + - media: rkvdec: increase max supported height for H.264 + - media: mediatek: vcodec: Return NULL if no vdec_fb is found + - usb: phy: mxs: fix getting wrong state with mxs_phy_is_otg_host() + - scsi: RDMA/srp: Fix residual handling + - scsi: iscsi: Rename iscsi_set_param() to iscsi_if_set_param() + - scsi: iscsi: Add length check for nlattr payload + - scsi: iscsi: Add strlen() check in iscsi_if_set{_host}_param() + - scsi: be2iscsi: Add length check when parsing nlattrs + - scsi: qla4xxx: Add length check when parsing nlattrs + - serial: sprd: Assign sprd_port after initialized to avoid wrong access + - serial: sprd: Fix DMA buffer leak issue + - x86/APM: drop the duplicate APM_MINOR_DEV macro + - scsi: qedf: Do not touch __user pointer in + qedf_dbg_stop_io_on_error_cmd_read() directly + - scsi: qedf: Do not touch __user pointer in qedf_dbg_debug_cmd_read() + directly + - scsi: qedf: Do not touch __user pointer in qedf_dbg_fp_int_cmd_read() + directly + - RDMA/irdma: Replace one-element array with flexible-array member + - coresight: tmc: Explicit type conversions to prevent integer overflow + - dma-buf/sync_file: Fix docs syntax + - driver core: test_async: fix an error code + - iommu/sprd: Add missing force_aperture + - RDMA/hns: Fix port active speed + - RDMA/hns: Fix incorrect post-send with direct wqe of wr-list + - RDMA/hns: Fix CQ and QP cache affinity + - IB/uverbs: Fix an potential error pointer dereference + - fsi: aspeed: Reset master errors after CFAM reset + - iommu/qcom: Disable and reset context bank before programming + - iommu/vt-d: Fix to flush cache of PASID directory table + - platform/x86: dell-sysman: Fix reference leak + - media: go7007: Remove redundant if statement + - media: venus: hfi_venus: Only consider sys_idle_indicator on V1 + - USB: gadget: f_mass_storage: Fix unused variable warning + - media: ov5640: Enable MIPI interface in ov5640_set_power_mipi() + - media: i2c: ov2680: Set V4L2_CTRL_FLAG_MODIFY_LAYOUT on flips + - media: ov2680: Remove auto-gain and auto-exposure controls + - media: ov2680: Fix ov2680_bayer_order() + - media: ov2680: Fix vflip / hflip set functions + - media: ov2680: Remove VIDEO_V4L2_SUBDEV_API ifdef-s + - media: ov2680: Don't take the lock for try_fmt calls + - media: ov2680: Add ov2680_fill_format() helper function + - media: ov2680: Fix ov2680_set_fmt() which == V4L2_SUBDEV_FORMAT_TRY not + working + - media: ov2680: Fix regulators being left enabled on ov2680_power_on() errors + - media: i2c: rdacm21: Fix uninitialized value + - cgroup:namespace: Remove unused cgroup_namespaces_init() + - scsi: core: Use 32-bit hostnum in scsi_host_lookup() + - scsi: fcoe: Fix potential deadlock on &fip->ctlr_lock + - serial: tegra: handle clk prepare error in tegra_uart_hw_init() + - amba: bus: fix refcount leak + - Revert "IB/isert: Fix incorrect release of isert connection" + - HID: logitech-dj: Fix error handling in logi_dj_recv_switch_to_dj_mode() + - HID: multitouch: Correct devm device reference for hidinput input_dev name + - x86/speculation: Mark all Skylake CPUs as vulnerable to GDS + - tracing: Remove extra space at the end of hwlat_detector/mode + - tracing: Fix race issue between cpu buffer write and swap + - mtd: rawnand: brcmnand: Fix mtd oobsize + - phy/rockchip: inno-hdmi: use correct vco_div_5 macro on rk3328 + - phy/rockchip: inno-hdmi: round fractal pixclock in rk3328 recalc_rate + - phy/rockchip: inno-hdmi: do not power on rk3328 post pll on reg write + - rpmsg: glink: Add check for kstrdup + - leds: pwm: Fix error code in led_pwm_create_fwnode() + - leds: multicolor: Use rounded division when calculating color components + - leds: trigger: tty: Do not use LED_ON/OFF constants, use + led_blink_set_oneshot instead + - mtd: spi-nor: Check bus width while setting QE bit + - mtd: rawnand: fsmc: handle clk prepare error in fsmc_nand_resume() + - um: Fix hostaudio build errors + - dmaengine: ste_dma40: Add missing IRQ check in d40_probe + - cpufreq: Fix the race condition while updating the transition_task of policy + - virtio_ring: fix avail_wrap_counter in virtqueue_add_packed + - skbuff: skb_segment, Call zero copy functions before using skbuff frags + - PM / devfreq: Fix leak in devfreq_dev_release() + - ALSA: pcm: Fix missing fixup call in compat hw_refine ioctl + - rcu: dump vmalloc memory info safely + - printk: ringbuffer: Fix truncating buffer size min_t cast + - scsi: core: Fix the scsi_set_resid() documentation + - mm/vmalloc: add a safer version of find_vm_area() for debug + - media: i2c: ccs: Check rules is non-NULL + - PCI: rockchip: Use 64-bit mask on MSI 64-bit PCI address + - ipmi_si: fix a memleak in try_smi_init() + - ARM: OMAP2+: Fix -Warray-bounds warning in _pwrdm_state_switch() + - backlight/gpio_backlight: Compare against struct fb_info.device + - backlight/bd6107: Compare against struct fb_info.device + - backlight/lv5207lp: Compare against struct fb_info.device + - xtensa: PMU: fix base address for the newer hardware + - i3c: master: svc: fix probe failure when no i3c device exist + - arm64: csum: Fix OoB access in IP checksum code for negative lengths + - media: dvb: symbol fixup for dvb_attach() + - media: venus: hfi_venus: Write to VIDC_CTRL_INIT after unmasking interrupts + - Revert "scsi: qla2xxx: Fix buffer overrun" + - scsi: mpt3sas: Perform additional retries if doorbell read returns 0 + - ntb: Drop packets when qp link is down + - ntb: Clean up tx tail index on link down + - ntb: Fix calculation ntb_transport_tx_free_entry() + - Revert "PCI: Mark NVIDIA T4 GPUs to avoid bus reset" + - procfs: block chmod on /proc/thread-self/comm + - parisc: Fix /proc/cpuinfo output for lscpu + - dlm: fix plock lookup when using multiple lockspaces + - dccp: Fix out of bounds access in DCCP error handler + - X.509: if signature is unsupported skip validation + - net: handle ARPHRD_PPP in dev_is_mac_header_xmit() + - fsverity: skip PKCS#7 parser when keyring is empty + - mmc: renesas_sdhi: register irqs before registering controller + - pstore/ram: Check start of empty przs during init + - arm64: sdei: abort running SDEI handlers during crash + - s390/ipl: add missing secure/has_secure file to ipl type 'unknown' + - crypto: stm32 - fix loop iterating through scatterlist for DMA + - cpufreq: brcmstb-avs-cpufreq: Fix -Warray-bounds bug + - usb: typec: tcpm: set initial svdm version based on pd revision + - usb: typec: bus: verify partner exists in typec_altmode_attention + - x86/sgx: Break up long non-preemptible delays in sgx_vepc_release() + - perf/x86/uncore: Correct the number of CHAs on EMR + - tracing: Zero the pipe cpumask on alloc to avoid spurious -EBUSY + - md/md-bitmap: remove unnecessary local variable in backlog_store() + - udf: initialize newblock to 0 + - net/ipv6: SKB symmetric hash should incorporate transport ports + - io_uring: always lock in io_apoll_task_func + - io_uring: break out of iowq iopoll on teardown + - io_uring: break iopolling on signal + - scsi: qla2xxx: Adjust IOCB resource on qpair create + - scsi: qla2xxx: Limit TMF to 8 per function + - scsi: qla2xxx: Fix deletion race condition + - scsi: qla2xxx: fix inconsistent TMF timeout + - scsi: qla2xxx: Fix command flush during TMF + - scsi: qla2xxx: Fix erroneous link up failure + - scsi: qla2xxx: Turn off noisy message log + - scsi: qla2xxx: Fix session hang in gnl + - scsi: qla2xxx: Fix TMF leak through + - scsi: qla2xxx: Remove unsupported ql2xenabledif option + - scsi: qla2xxx: Flush mailbox commands on chip reset + - scsi: qla2xxx: Fix smatch warn for qla_init_iocb_limit() + - scsi: qla2xxx: Error code did not return to upper layer + - scsi: qla2xxx: Fix firmware resource tracking + - fbdev/ep93xx-fb: Do not assign to struct fb_info.dev + - clk: qcom: camcc-sc7180: fix async resume during probe + - drm/ast: Fix DRAM init on AST2200 + - clk: qcom: turingcc-qcs404: fix missing resume during probe + - lib/test_meminit: allocate pages up to order MAX_ORDER + - parisc: led: Fix LAN receive and transmit LEDs + - parisc: led: Reduce CPU overhead for disk & lan LED computation + - pinctrl: cherryview: fix address_space_handler() argument + - dt-bindings: clock: xlnx,versal-clk: drop select:false + - clk: qcom: gcc-mdm9615: use proper parent for pll0_vote clock + - soc: qcom: qmi_encdec: Restrict string length in decode + - clk: qcom: q6sstop-qcs404: fix missing resume during probe + - clk: qcom: mss-sc7180: fix missing resume during probe + - NFS: Fix a potential data corruption + - NFSv4/pnfs: minor fix for cleanup path in nfs4_get_device_info + - bus: mhi: host: Skip MHI reset if device is in RDDM + - kbuild: do not run depmod for 'make modules_sign' + - gfs2: Switch to wait_event in gfs2_logd + - gfs2: low-memory forced flush fixes + - kconfig: fix possible buffer overflow + - perf trace: Use zfree() to reduce chances of use after free + - perf trace: Really free the evsel->priv area + - pwm: atmel-tcb: Convert to platform remove callback returning void + - pwm: atmel-tcb: Harmonize resource allocation order + - pwm: atmel-tcb: Fix resource freeing in error path and remove + - backlight: gpio_backlight: Drop output GPIO direction check for initial + power state + - Input: tca6416-keypad - always expect proper IRQ number in i2c client + - Input: tca6416-keypad - fix interrupt enable disbalance + - perf annotate bpf: Don't enclose non-debug code with an assert() + - x86/virt: Drop unnecessary check on extended CPUID level in cpu_has_svm() + - perf vendor events: Update the JSON/events descriptions for power10 platform + - perf vendor events: Drop some of the JSON/events for power10 platform + - perf top: Don't pass an ERR_PTR() directly to perf_session__delete() + - watchdog: intel-mid_wdt: add MODULE_ALIAS() to allow auto-load + - pwm: lpc32xx: Remove handling of PWM channels + - net/sched: fq_pie: avoid stalls in fq_pie_timer() + - sctp: annotate data-races around sk->sk_wmem_queued + - ipv4: annotate data-races around fi->fib_dead + - net: read sk->sk_family once in sk_mc_loop() + - net: fib: avoid warn splat in flow dissector + - xsk: Fix xsk_diag use-after-free error during socket cleanup + - drm/i915/gvt: Drop unused helper intel_vgpu_reset_gtt() + - ipv4: ignore dst hint for multipath routes + - igb: disable virtualization features on 82580 + - veth: Fixing transmit return status for dropped packets + - net: ipv6/addrconf: avoid integer underflow in ipv6_create_tempaddr + - net: phy: micrel: Correct bit assignments for phy_device flags + - af_unix: Fix data-races around user->unix_inflight. + - af_unix: Fix data-race around unix_tot_inflight. + - af_unix: Fix data-races around sk->sk_shutdown. + - af_unix: Fix data race around sk->sk_err. + - kcm: Destroy mutex in kcm_exit_net() + - octeontx2-af: Fix truncation of smq in CN10K NIX AQ enqueue mbox handler + - igc: Change IGC_MIN to allow set rx/tx value between 64 and 80 + - igbvf: Change IGBVF_MIN to allow set rx/tx value between 64 and 80 + - igb: Change IGB_MIN to allow set rx/tx value between 64 and 80 + - s390/zcrypt: don't leak memory if dev_set_name() fails + - idr: fix param name in idr_alloc_cyclic() doc + - ip_tunnels: use DEV_STATS_INC() + - net: dsa: sja1105: fix bandwidth discrepancy between tc-cbs software and + offload + - net: dsa: sja1105: fix -ENOSPC when replacing the same tc-cbs too many times + - net: dsa: sja1105: complete tc-cbs offload support on SJA1110 + - net: hns3: fix byte order conversion issue in hclge_dbg_fd_tcam_read() + - net: hns3: fix debugfs concurrency issue between kfree buffer and read + - net: hns3: fix invalid mutex between tc qdisc and dcb ets command issue + - net: hns3: fix the port information display when sfp is absent + - net: hns3: remove GSO partial feature bit + - sh: boards: Fix CEU buffer size passed to dma_declare_coherent_memory() + - net/mlx5: Free IRQ rmap and notifier on kernel shutdown + - ARC: atomics: Add compiler barrier to atomic operations... + - dmaengine: sh: rz-dmac: Fix destination and source data size setting + - jbd2: fix checkpoint cleanup performance regression + - jbd2: check 'jh->b_transaction' before removing it from checkpoint + - ext4: add correct group descriptors and reserved GDT blocks to system zone + - lib: test_scanf: Add explicit type cast to result initialization in + test_number_prefix() + - ata: pata_falcon: fix IO base selection for Q40 + - ata: sata_gemini: Add missing MODULE_DESCRIPTION + - ata: pata_ftide010: Add missing MODULE_DESCRIPTION + - fuse: nlookup missing decrement in fuse_direntplus_link + - btrfs: free qgroup rsv on io failure + - btrfs: don't start transaction when joining with TRANS_JOIN_NOSTART + - btrfs: use the correct superblock to compare fsid in btrfs_validate_super + - mtd: rawnand: brcmnand: Fix crash during the panic_write + - mtd: rawnand: brcmnand: Fix potential out-of-bounds access in oob write + - mtd: rawnand: brcmnand: Fix potential false time out warning + - drm/amd/display: prevent potential division by zero errors + - MIPS: Fix CONFIG_CPU_DADDI_WORKAROUNDS `modules_install' regression + - perf hists browser: Fix hierarchy mode header + - perf tools: Handle old data in PERF_RECORD_ATTR + - perf hists browser: Fix the number of entries for 'e' key + - pcd: move the identify buffer into pcd_identify + - pcd: cleanup initialization + - block: move GENHD_FL_NATIVE_CAPACITY to disk->state + - block: move GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE to disk->event_flags + - block: rename GENHD_FL_NO_PART_SCAN to GENHD_FL_NO_PART + - block: don't add or resize partition on the disk with GENHD_FL_NO_PART + - ARM: dts: samsung: exynos4210-i9100: Fix LCD screen's physical size + - ARM: dts: BCM5301X: Extend RAM to full 256MB for Linksys EA6500 V2 + - net: ipv4: fix one memleak in __inet_del_ifa() + - kselftest/runner.sh: Propagate SIGTERM to runner child + - net/smc: use smc_lgr_list.lock to protect smc_lgr_list.list iterate in + smcr_port_add + - net: ethernet: mvpp2_main: fix possible OOB write in + mvpp2_ethtool_get_rxnfc() + - net: ethernet: mtk_eth_soc: fix possible NULL pointer dereference in + mtk_hwlro_get_fdir_all() + - hsr: Fix uninit-value access in fill_frame_info() + - net: dsa: sja1105: hide all multicast addresses from "bridge fdb show" + - r8152: check budget for r8152_poll() + - kcm: Fix memory leak in error path of kcm_sendmsg() + - platform/mellanox: mlxbf-tmfifo: Drop the Rx packet if no more descriptors + - platform/mellanox: mlxbf-tmfifo: Drop jumbo frames + - platform/mellanox: mlxbf-pmc: Fix potential buffer overflows + - platform/mellanox: mlxbf-pmc: Fix reading of unprogrammed events + - ipv6: fix ip6_sock_set_addr_preferences() typo + - ixgbe: fix timestamp configuration code + - kcm: Fix error handling for SOCK_DGRAM in kcm_sendmsg(). + - MIPS: Only fiddle with CHECKFLAGS if `need-compiler' + - drm/amd/display: Fix a bug when searching for insert_above_mpcc + - pcd: fix error codes in pcd_init_unit() + - Linux 5.15.132 + * CVE-2023-6176 + - net/tls: do not free tls_rec on async operation in bpf_exec_tx_verdict() + * CVE-2023-6039 + - timers: Use del_timer_sync() even on UP + - timers: Update kernel-doc for various functions + - timers: Rename del_timer_sync() to timer_delete_sync() + - timers: Rename del_timer() to timer_delete() + - timers: Split [try_to_]del_timer[_sync]() to prepare for shutdown mode + - timers: Add shutdown mechanism to the internal functions + - timers: Provide timer_shutdown[_sync]() + - clocksource/drivers/arm_arch_timer: Do not use timer namespace for + timer_shutdown() function + - clocksource/drivers/sp804: Do not use timer namespace for timer_shutdown() + function + - ARM: spear: Do not use timer namespace for timer_shutdown() function + - net: usb: lan78xx: reorder cleanup operations to avoid UAF bugs + + -- Tim Gardner Tue, 16 Jan 2024 14:11:09 -0700 + +linux-azure (5.15.0-1054.62) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1054.62 -proposed tracker (LP: #2048576) + + * Packaging resync (LP: #1786013) + - [Packaging] remove helper scripts + + * CVE-2023-5345 + - fs/smb/client: Reset password pointer to NULL + + [ Ubuntu: 5.15.0-92.102 ] + + * jammy/linux: 5.15.0-92.102 -proposed tracker (LP: #2048614) + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + * CVE-2024-0193 + - netfilter: nf_tables: skip set commit for deleted/destroyed sets + * CVE-2023-6040 + - netfilter: nf_tables: Reject tables of unsupported family + * CVE-2023-6606 + - smb: client: fix OOB in smbCalcSize() + * CVE-2023-6817 + - netfilter: nft_set_pipapo: skip inactive elements during set walk + * CVE-2023-6932 + - ipv4: igmp: fix refcnt uaf issue when receiving igmp query packet + * CVE-2023-6931 + - perf/core: Add a new read format to get a number of lost samples + - perf: Fix perf_event_validate_size() + - perf: Fix perf_event_validate_size() lockdep splat + + -- Tim Gardner Mon, 15 Jan 2024 08:31:15 -0700 + +linux-azure (5.15.0-1053.61) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1053.61 -proposed tracker (LP: #2041565) + + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + + * Azure: Improve SQL DB latency (LP: #2040300) + - tcp: Set pingpong threshold via sysctl + + [ Ubuntu: 5.15.0-91.101 ] + + * jammy/linux: 5.15.0-91.101 -proposed tracker (LP: #2043452) + * USB bus error after upgrading to proposed kernel on lunar and jammy + (LP: #2043197) + - USB: core: Fix oversight in SuperSpeed initialization + + [ Ubuntu: 5.15.0-90.100 ] + + * jammy/linux: 5.15.0-90.100 -proposed tracker (LP: #2041603) + * CVE-2023-25775 + - RDMA/irdma: Remove irdma_uk_mw_bind() + - RDMA/irdma: Remove irdma_sc_send_lsmm_nostag() + - RDMA/irdma: Remove irdma_cqp_up_map_cmd() + - RDMA/irdma: Remove irdma_get_hw_addr() + - RDMA/irdma: Make irdma_uk_cq_init() return a void + - RDMA/irdma: optimize rx path by removing unnecessary copy + - RDMA/irdma: Remove enum irdma_status_code + - RDMA/irdma: Remove excess error variables + - RDMA/irdma: Prevent zero-length STAG registration + * CVE-2023-39189 + - netfilter: nfnetlink_osf: avoid OOB read + * SMC stats: Wrong bucket calculation for payload of exactly 4096 bytes + (LP: #2039575) + - net/smc: Fix pos miscalculation in statistics + * CVE-2023-45871 + - igb: set max size RX buffer when store bad packet is enabled + * CVE-2023-39193 + - netfilter: xt_sctp: validate the flag_info count + * CVE-2023-39192 + - netfilter: xt_u32: validate user space input + * CVE-2023-31085 + - ubi: Refuse attaching if mtd's erasesize is 0 + * CVE-2023-5717 + - perf: Disallow mis-matched inherited group reads + * CVE-2023-5178 + - nvmet-tcp: Fix a possible UAF in queue intialization setup + * CVE-2023-5158 + - vringh: don't use vringh_kiov_advance() in vringh_iov_xfer() + * [SRU][J/L/M] UBUNTU: [Packaging] Make WWAN driver a loadable module + (LP: #2033406) + - [Packaging] Make WWAN driver loadable modules + * HP ProBook 450 G8 Notebook fail to wifi test (LP: #2037513) + - iwlwifi: mvm: Don't fail if PPAG isn't supported + - wifi: iwlwifi: fw: skip PPAG for JF + * usbip: error: failed to open /usr/share/hwdata//usb.ids (LP: #2039439) + - [Packaging] Make linux-tools-common depend on hwdata + * scripts/pahole-flags.sh change return to exit 0 (LP: #2035123) + - SAUCE: scripts/pahole-flags.sh change return to exit 0 + * Unable to use nvme drive to install Ubuntu 23.10 (LP: #2040157) + - misc: rtsx: Fix some platforms can not boot and move the l1ss judgment to + probe + * Jammy update: v5.15.131 upstream stable release (LP: #2039610) + - erofs: ensure that the post-EOF tails are all zeroed + - ksmbd: fix wrong DataOffset validation of create context + - ksmbd: replace one-element array with flex-array member in struct + smb2_ea_info + - ARM: pxa: remove use of symbol_get() + - mmc: au1xmmc: force non-modular build and remove symbol_get usage + - net: enetc: use EXPORT_SYMBOL_GPL for enetc_phc_index + - rtc: ds1685: use EXPORT_SYMBOL_GPL for ds1685_rtc_poweroff + - modules: only allow symbol_get of EXPORT_SYMBOL_GPL modules + - USB: serial: option: add Quectel EM05G variant (0x030e) + - USB: serial: option: add FOXCONN T99W368/T99W373 product + - ALSA: usb-audio: Fix init call orders for UAC1 + - usb: dwc3: meson-g12a: do post init to fix broken usb after resumption + - usb: chipidea: imx: improve logic if samsung,picophy-* parameter is 0 + - HID: wacom: remove the battery when the EKR is off + - staging: rtl8712: fix race condition + - Bluetooth: btsdio: fix use after free bug in btsdio_remove due to race + condition + - wifi: mt76: mt7921: do not support one stream on secondary antenna only + - serial: qcom-geni: fix opp vote on shutdown + - serial: sc16is7xx: fix broken port 0 uart init + - serial: sc16is7xx: fix bug when first setting GPIO direction + - firmware: stratix10-svc: Fix an NULL vs IS_ERR() bug in probe + - fsi: master-ast-cf: Add MODULE_FIRMWARE macro + - tcpm: Avoid soft reset when partner does not support get_status + - nilfs2: fix general protection fault in nilfs_lookup_dirty_data_buffers() + - nilfs2: fix WARNING in mark_buffer_dirty due to discarded buffer reuse + - pinctrl: amd: Don't show `Invalid config param` errors + - usb: typec: tcpci: move tcpci.h to include/linux/usb/ + - usb: typec: tcpci: clear the fault status bit + - Linux 5.15.131 + * Jammy update: v5.15.130 upstream stable release (LP: #2039608) + - ACPI: thermal: Drop nocrt parameter + - module: Expose module_init_layout_section() + - arm64: module-plts: inline linux/moduleloader.h + - arm64: module: Use module_init_layout_section() to spot init sections + - ARM: module: Use module_init_layout_section() to spot init sections + - rcu: Prevent expedited GP from enabling tick on offline CPU + - rcu-tasks: Fix IPI failure handling in trc_wait_for_one_reader + - rcu-tasks: Wait for trc_read_check_handler() IPIs + - rcu-tasks: Add trc_inspect_reader() checks for exiting critical section + - Linux 5.15.130 + * CVE-2023-42754 + - ipv4: fix null-deref in ipv4_link_failure + * Jammy update: v5.15.129 upstream stable release (LP: #2039227) + - NFSv4.2: fix error handling in nfs42_proc_getxattr + - NFSv4: fix out path in __nfs4_get_acl_uncached + - xprtrdma: Remap Receive buffers after a reconnect + - PCI: acpiphp: Reassign resources on bridge if necessary + - dlm: improve plock logging if interrupted + - dlm: replace usage of found with dedicated list iterator variable + - fs: dlm: add pid to debug log + - fs: dlm: change plock interrupted message to debug again + - fs: dlm: use dlm_plock_info for do_unlock_close + - fs: dlm: fix mismatch of plock results from userspace + - MIPS: cpu-features: Enable octeon_cache by cpu_type + - MIPS: cpu-features: Use boot_cpu_type for CPU type based features + - fbdev: Improve performance of sys_imageblit() + - fbdev: Fix sys_imageblit() for arbitrary image widths + - fbdev: fix potential OOB read in fast_imageblit() + - ALSA: pcm: Fix potential data race at PCM memory allocation helpers + - jbd2: remove t_checkpoint_io_list + - jbd2: remove journal_clean_one_cp_list() + - jbd2: fix a race when checking checkpoint buffer busy + - can: raw: fix receiver memory leak + - drm/amd/display: do not wait for mpc idle if tg is disabled + - drm/amd/display: check TG is non-null before checking if enabled + - can: raw: fix lockdep issue in raw_release() + - tracing: Fix cpu buffers unavailable due to 'record_disabled' missed + - tracing: Fix memleak due to race between current_tracer and trace + - octeontx2-af: SDP: fix receive link config + - sock: annotate data-races around prot->memory_pressure + - dccp: annotate data-races in dccp_poll() + - ipvlan: Fix a reference count leak warning in ipvlan_ns_exit() + - net: bgmac: Fix return value check for fixed_phy_register() + - net: bcmgenet: Fix return value check for fixed_phy_register() + - net: validate veth and vxcan peer ifindexes + - ice: fix receive buffer size miscalculation + - igb: Avoid starting unnecessary workqueues + - igc: Fix the typo in the PTM Control macro + - net/sched: fix a qdisc modification with ambiguous command request + - netfilter: nf_tables: flush pending destroy work before netlink notifier + - netfilter: nf_tables: fix out of memory error handling + - rtnetlink: return ENODEV when ifname does not exist and group is given + - rtnetlink: Reject negative ifindexes in RTM_NEWLINK + - net: remove bond_slave_has_mac_rcu() + - bonding: fix macvlan over alb bond support + - net/ncsi: make one oem_gma function for all mfr id + - net/ncsi: change from ndo_set_mac_address to dev_set_mac_address + - ibmveth: Use dcbf rather than dcbfl + - NFSv4: Fix dropped lock for racing OPEN and delegation return + - clk: Fix slab-out-of-bounds error in devm_clk_release() + - ALSA: ymfpci: Fix the missing snd_card_free() call at probe error + - mm: add a call to flush_cache_vmap() in vmap_pfn() + - NFS: Fix a use after free in nfs_direct_join_group() + - nfsd: Fix race to FREE_STATEID and cl_revoked + - selinux: set next pointer before attaching to list + - batman-adv: Trigger events for auto adjusted MTU + - batman-adv: Don't increase MTU when set by user + - batman-adv: Do not get eth header before batadv_check_management_packet + - batman-adv: Fix TT global entry leak when client roamed back + - batman-adv: Fix batadv_v_ogm_aggr_send memory leak + - batman-adv: Hold rtnl lock during MTU update via netlink + - lib/clz_ctz.c: Fix __clzdi2() and __ctzdi2() for 32-bit kernels + - radix tree: remove unused variable + - of: unittest: Fix EXPECT for parse_phandle_with_args_map() test + - of: dynamic: Refactor action prints to not use "%pOF" inside devtree_lock + - media: vcodec: Fix potential array out-of-bounds in encoder queue_setup + - PCI: acpiphp: Use pci_assign_unassigned_bridge_resources() only for non-root + bus + - drm/vmwgfx: Fix shader stage validation + - drm/display/dp: Fix the DP DSC Receiver cap size + - x86/fpu: Invalidate FPU state correctly on exec() + - nfs: use vfs setgid helper + - nfsd: use vfs setgid helper + - torture: Fix hang during kthread shutdown phase + - cgroup/cpuset: Rename functions dealing with DEADLINE accounting + - sched/cpuset: Bring back cpuset_mutex + - sched/cpuset: Keep track of SCHED_DEADLINE task in cpusets + - cgroup/cpuset: Iterate only if DEADLINE tasks are present + - sched/deadline: Create DL BW alloc, free & check overflow interface + - cgroup/cpuset: Free DL BW in case can_attach() fails + - drm/i915: Fix premature release of request's reusable memory + - can: raw: add missing refcount for memory leak fix + - scsi: snic: Fix double free in snic_tgt_create() + - scsi: core: raid_class: Remove raid_component_add() + - clk: Fix undefined reference to `clk_rate_exclusive_{get,put}' + - pinctrl: renesas: rza2: Add lock around + pinctrl_generic{{add,remove}_group,{add,remove}_function} + - dma-buf/sw_sync: Avoid recursive lock during fence signal + - mm: memory-failure: kill soft_offline_free_page() + - mm: memory-failure: fix unexpected return value in soft_offline_page() + - mm,ima,kexec,of: use memblock_free_late from ima_free_kexec_buffer + - Linux 5.15.129 + * Jammy update: v5.15.128 upstream stable release (LP: #2038486) + - mmc: sdhci-f-sdh30: Replace with sdhci_pltfm + - selftests: forwarding: tc_actions: cleanup temporary files when test is + aborted + - selftests: forwarding: tc_actions: Use ncat instead of nc + - macsec: Fix traffic counters/statistics + - macsec: use DEV_STATS_INC() + - net/tls: Perform immediate device ctx cleanup when possible + - net/tls: Multi-threaded calls to TX tls_dev_del + - net: tls: avoid discarding data on record close + - PCI: tegra194: Fix possible array out of bounds access + - ARM: dts: imx6dl: prtrvt, prtvt7, prti6q, prtwd2: fix USB related warnings + - iopoll: Call cpu_relax() in busy loops + - ASoC: SOF: Intel: fix SoundWire/HDaudio mutual exclusion + - dma-remap: use kvmalloc_array/kvfree for larger dma memory remap + - HID: logitech-hidpp: Add USB and Bluetooth IDs for the Logitech G915 TKL + Keyboard + - HID: add quirk for 03f0:464a HP Elite Presenter Mouse + - RDMA/mlx5: Return the firmware result upon destroying QP/RQ + - ovl: check type and offset of struct vfsmount in ovl_entry + - smb: client: fix warning in cifs_smb3_do_mount() + - media: v4l2-mem2mem: add lock to protect parameter num_rdy + - usb: gadget: u_serial: Avoid spinlock recursion in __gs_console_push + - media: platform: mediatek: vpu: fix NULL ptr dereference + - thunderbolt: Read retimer NVM authentication status prior + tb_retimer_set_inbound_sbtx() + - usb: chipidea: imx: don't request QoS for imx8ulp + - usb: chipidea: imx: add missing USB PHY DPDM wakeup setting + - gfs2: Fix possible data races in gfs2_show_options() + - pcmcia: rsrc_nonstatic: Fix memory leak in nonstatic_release_resource_db() + - firewire: net: fix use after free in fwnet_finish_incoming_packet() + - watchdog: sp5100_tco: support Hygon FCH/SCH (Server Controller Hub) + - Bluetooth: L2CAP: Fix use-after-free + - Bluetooth: btusb: Add MT7922 bluetooth ID for the Asus Ally + - drm/amdgpu: Fix potential fence use-after-free v2 + - fs/ntfs3: Enhance sanity check while generating attr_list + - fs: ntfs3: Fix possible null-pointer dereferences in mi_read() + - fs/ntfs3: Mark ntfs dirty when on-disk struct is corrupted + - ALSA: hda/realtek: Add quirks for Unis H3C Desktop B760 & Q760 + - ALSA: hda: fix a possible null-pointer dereference due to data race in + snd_hdac_regmap_sync() + - powerpc/kasan: Disable KCOV in KASAN code + - ring-buffer: Do not swap cpu_buffer during resize process + - iio: add addac subdirectory + - iio: adc: stx104: Utilize iomap interface + - iio: adc: stx104: Implement and utilize register structures + - iio: stx104: Move to addac subdirectory + - iio: addac: stx104: Fix race condition for stx104_write_raw() + - iio: addac: stx104: Fix race condition when converting analog-to-digital + - igc: read before write to SRRCTL register + - ARM: dts: aspeed: asrock: Correct firmware flash SPI clocks + - drm/amd/display: save restore hdcp state when display is unplugged from mst + hub + - drm/amd/display: phase3 mst hdcp for multiple displays + - drm/amd/display: fix access hdcp_workqueue assert + - usb: dwc3: gadget: Synchronize IRQ between soft connect/disconnect + - usb: dwc3: Remove DWC3 locking during gadget suspend/resume + - usb: dwc3: Fix typos in gadget.c + - USB: dwc3: gadget: drop dead hibernation code + - usb: dwc3: gadget: Improve dwc3_gadget_suspend() and dwc3_gadget_resume() + - tty: serial: fsl_lpuart: Add i.MXRT1050 support + - tty: serial: fsl_lpuart: make rx_watermark configurable for different + platforms + - tty: serial: fsl_lpuart: reduce RX watermark to 0 on LS1028A + - USB: dwc3: qcom: fix NULL-deref on suspend + - USB: dwc3: fix use-after-free on core driver unbind + - mmc: bcm2835: fix deferred probing + - mmc: sunxi: fix deferred probing + - ARM: dts: imx6sll: fixup of operating points + - ARM: dts: nxp/imx6sll: fix wrong property name in usbphy node + - btrfs: move out now unused BG from the reclaim list + - virtio-mmio: don't break lifecycle of vm_dev + - vduse: Use proper spinlock for IRQ injection + - cifs: fix potential oops in cifs_oplock_break + - i2c: bcm-iproc: Fix bcm_iproc_i2c_isr deadlock issue + - i2c: hisi: Only handle the interrupt of the driver's transfer + - fbdev: mmp: fix value check in mmphw_probe() + - powerpc/rtas_flash: allow user copy to flash block cache objects + - tty: n_gsm: fix the UAF caused by race condition in gsm_cleanup_mux + - tty: serial: fsl_lpuart: Clear the error flags by writing 1 for lpuart32 + platforms + - btrfs: fix BUG_ON condition in btrfs_cancel_balance + - i2c: designware: Correct length byte validation logic + - i2c: designware: Handle invalid SMBus block data response length value + - net: xfrm: Fix xfrm_address_filter OOB read + - net: af_key: fix sadb_x_filter validation + - net: xfrm: Amend XFRMA_SEC_CTX nla_policy structure + - xfrm: fix slab-use-after-free in decode_session6 + - ip6_vti: fix slab-use-after-free in decode_session6 + - ip_vti: fix potential slab-use-after-free in decode_session6 + - xfrm: add forgotten nla_policy for XFRMA_MTIMER_THRESH + - net: phy: fix IRQ-based wake-on-lan over hibernate / power off + - selftests: mirror_gre_changes: Tighten up the TTL test match + - drm/panel: simple: Fix AUO G121EAN01 panel timings according to the docs + - netfilter: nf_tables: fix false-positive lockdep splat + - ipvs: fix racy memcpy in proc_do_sync_threshold + - net: phy: broadcom: stub c45 read/write for 54810 + - team: Fix incorrect deletion of ETH_P_8021AD protocol vid from slaves + - iavf: fix FDIR rule fields masks validation + - i40e: fix misleading debug logs + - net: dsa: mv88e6xxx: Wait for EEPROM done before HW reset + - sock: Fix misuse of sk_under_memory_pressure() + - net: do not allow gso_size to be set to GSO_BY_FRAGS + - bus: ti-sysc: Flush posted write on enable before reset + - arm64: dts: qcom: qrb5165-rb5: fix thermal zone conflict + - ARM: dts: imx: Set default tuning step for imx6sx usdhc + - ASoC: rt5665: add missed regulator_bulk_disable + - ASoC: meson: axg-tdm-formatter: fix channel slot allocation + - soc: aspeed: socinfo: Add kfree for kstrdup + - ALSA: hda/realtek - Remodified 3k pull low procedure + - riscv: uaccess: Return the number of bytes effectively not copied + - serial: 8250: Fix oops for port->pm on uart_change_pm() + - ALSA: usb-audio: Add support for Mythware XA001AU capture and playback + interfaces. + - cifs: Release folio lock on fscache read hit. + - mmc: wbsd: fix double mmc_free_host() in wbsd_init() + - mmc: block: Fix in_flight[issue_type] value error + - drm/qxl: fix UAF on handle creation + - drm/amd: flush any delayed gfxoff on suspend entry + - netfilter: set default timeout to 3 secs for sctp shutdown send and recv + state + - arm64: dts: rockchip: Disable HS400 for eMMC on ROCK Pi 4 + - virtio-net: set queues after driver_ok + - net: fix the RTO timer retransmitting skb every 1ms if linear option is + enabled + - mmc: f-sdh30: fix order of function calls in sdhci_f_sdh30_remove + - Linux 5.15.128 + * Jammy update: v5.15.127 upstream stable release (LP: #2038382) + - ksmbd: validate command request size + - ksmbd: fix wrong next length validation of ea buffer in smb2_set_ea() + - wireguard: allowedips: expand maximum node depth + - mmc: moxart: read scr register without changing byte order + - ipv6: adjust ndisc_is_useropt() to also return true for PIO + - dmaengine: pl330: Return DMA_PAUSED when transaction is paused + - riscv,mmio: Fix readX()-to-delay() ordering + - drm/nouveau/gr: enable memory loads on helper invocation on all channels + - drm/shmem-helper: Reset vma->vm_ops before calling dma_buf_mmap() + - drm/amd/display: check attr flag before set cursor degamma on DCN3+ + - hwmon: (pmbus/bel-pfe) Enable PMBUS_SKIP_STATUS_CHECK for pfe1100 + - radix tree test suite: fix incorrect allocation size for pthreads + - nilfs2: fix use-after-free of nilfs_root in dirtying inodes via iput + - bpf: allow precision tracking for programs with subprogs + - bpf: stop setting precise in current state + - bpf: aggressively forget precise markings during state checkpointing + - selftests/bpf: make test_align selftest more robust + - selftests/bpf: Workaround verification failure for + fexit_bpf2bpf/func_replace_return_code + - selftests/bpf: Fix sk_assign on s390x + - io_uring: correct check for O_TMPFILE + - iio: cros_ec: Fix the allocation size for cros_ec_command + - iio: adc: ina2xx: avoid NULL pointer dereference on OF device match + - binder: fix memory leak in binder_init() + - misc: rtsx: judge ASPM Mode to set PETXCFG Reg + - usb-storage: alauda: Fix uninit-value in alauda_check_media() + - usb: dwc3: Properly handle processing of pending events + - usb: common: usb-conn-gpio: Prevent bailing out if initial role is none + - usb: typec: tcpm: Fix response to vsafe0V event + - x86/cpu/amd: Enable Zenbleed fix for AMD Custom APU 0405 + - x86/mm: Fix VDSO and VVAR placement on 5-level paging machines + - x86/speculation: Add cpu_show_gds() prototype + - x86: Move gds_ucode_mitigated() declaration to header + - drm/nouveau/disp: Revert a NULL check inside nouveau_connector_get_modes + - selftests/rseq: Fix build with undefined __weak + - selftests: forwarding: Add a helper to skip test when using veth pairs + - selftests: forwarding: ethtool: Skip when using veth pairs + - selftests: forwarding: ethtool_extended_state: Skip when using veth pairs + - selftests: forwarding: Skip test when no interfaces are specified + - selftests: forwarding: Switch off timeout + - selftests: forwarding: tc_flower: Relax success criterion + - net: core: remove unnecessary frame_sz check in bpf_xdp_adjust_tail() + - bpf, sockmap: Fix map type error in sock_map_del_link + - bpf, sockmap: Fix bug that strp_done cannot be called + - mISDN: Update parameter type of dsp_cmx_send() + - net/packet: annotate data-races around tp->status + - tunnels: fix kasan splat when generating ipv4 pmtu error + - xsk: fix refcount underflow in error path + - bonding: Fix incorrect deletion of ETH_P_8021AD protocol vid from slaves + - dccp: fix data-race around dp->dccps_mss_cache + - drivers: net: prevent tun_build_skb() to exceed the packet size limit + - iavf: fix potential races for FDIR filters + - IB/hfi1: Fix possible panic during hotplug remove + - drm/rockchip: Don't spam logs in atomic check + - wifi: cfg80211: fix sband iftype data lookup for AP_VLAN + - RDMA/umem: Set iova in ODP flow + - net: phy: at803x: remove set/get wol callbacks for AR8032 + - net: hns3: refactor hclge_mac_link_status_wait for interface reuse + - net: hns3: add wait until mac link down + - nexthop: Fix infinite nexthop dump when using maximum nexthop ID + - nexthop: Make nexthop bucket dump more efficient + - nexthop: Fix infinite nexthop bucket dump when using maximum nexthop ID + - dmaengine: mcf-edma: Fix a potential un-allocated memory access + - net/mlx5: Allow 0 for total host VFs + - net/mlx5: Skip clock update work when device is in error state + - ibmvnic: Enforce stronger sanity checks on login response + - ibmvnic: Unmap DMA login rsp buffer on send login fail + - ibmvnic: Handle DMA unmapping of login buffs in release functions + - btrfs: don't stop integrity writeback too early + - btrfs: exit gracefully if reloc roots don't match + - btrfs: reject invalid reloc tree root keys with stack dump + - btrfs: set cache_block_group_error if we find an error + - nvme-tcp: fix potential unbalanced freeze & unfreeze + - nvme-rdma: fix potential unbalanced freeze & unfreeze + - netfilter: nf_tables: report use refcount overflow + - scsi: core: Fix legacy /proc parsing buffer overflow + - scsi: storvsc: Fix handling of virtual Fibre Channel timeouts + - scsi: 53c700: Check that command slot is not NULL + - scsi: snic: Fix possible memory leak if device_add() fails + - scsi: core: Fix possible memory leak if device_add() fails + - scsi: fnic: Replace return codes in fnic_clean_pending_aborts() + - scsi: qedi: Fix firmware halt over suspend and resume + - scsi: qedf: Fix firmware halt over suspend and resume + - alpha: remove __init annotation from exported page_is_ram() + - sch_netem: fix issues in netem_change() vs get_dist_table() + - tick: Detect and fix jiffies update stall + - timers/nohz: Switch to ONESHOT_STOPPED in the low-res handler when the tick + is stopped + - timers/nohz: Last resort update jiffies on nohz_full IRQ entry + - Linux 5.15.127 + - Upstream stable to v5.15.127 + * CVE-2023-37453 + - USB: core: Unite old scheme and new scheme descriptor reads + - USB: core: Change usb_get_device_descriptor() API + - USB: core: Fix race by not overwriting udev->descriptor in hub_port_init() + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + -- Tim Gardner Tue, 21 Nov 2023 06:46:24 -0700 + +linux-azure (5.15.0-1052.60) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1052.60 -proposed tracker (LP: #2041911) + + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + + [ Ubuntu: 5.15.0-89.99 ] + + * jammy/linux: 5.15.0-89.99 -proposed tracker (LP: #2041949) + * CVE-2023-31085 + - ubi: Refuse attaching if mtd's erasesize is 0 + * CVE-2023-45871 + - igb: set max size RX buffer when store bad packet is enabled + * CVE-2023-25775 + - RDMA/irdma: Remove irdma_uk_mw_bind() + - RDMA/irdma: Remove irdma_sc_send_lsmm_nostag() + - RDMA/irdma: Remove irdma_cqp_up_map_cmd() + - RDMA/irdma: Remove irdma_get_hw_addr() + - RDMA/irdma: Make irdma_uk_cq_init() return a void + - RDMA/irdma: optimize rx path by removing unnecessary copy + - RDMA/irdma: Remove enum irdma_status_code + - RDMA/irdma: Remove excess error variables + - RDMA/irdma: Prevent zero-length STAG registration + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + -- Tim Gardner Mon, 06 Nov 2023 02:43:01 -0700 + +linux-azure (5.15.0-1051.59) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1051.59 -proposed tracker (LP: #2038019) + + * Azure: Update CIFS to v6.5 (LP: #2036450) + - Revert "UBUNTU: SAUCE: Fix cifs: fix mid leak during reconnection after + timeout threshold" + - Revert "smb3: lower default deferred close timeout to address perf + regression" + - Revert "smb3: allow deferred close timeout to be configurable" + - Revert "cifs: remove minor build warning" + - Revert "cifs: remove some camelCase and also some static build warnings" + - Revert "cifs: remove unnecessary (void*) conversions." + - Revert "cifs: remove unnecessary type castings" + - Revert "cifs: remove redundant initialization to variable mnt_sign_enabled" + - Revert "smb3: workaround negprot bug in some Samba servers" + - Revert "cifs: remove unnecessary locking of chan_lock while freeing session" + - Revert "cifs: fix race condition with delayed threads" + - Revert "cifs: update cifs_ses::ip_addr after failover" + - Revert "cifs: avoid deadlocks while updating iface" + - Revert "cifs: periodically query network interfaces from server" + - Revert "cifs: during reconnect, update interface if necessary" + - Revert "cifs: change iface_list from array to sorted linked list" + - Revert "smb3: use netname when available on secondary channels" + - Revert "smb3: fix empty netname context on secondary channels" + - Revert "cifs: when a channel is not found for server, log its connection id" + - Revert "smb3: add trace point for SMB2_set_eof" + - Revert "cifs: populate empty hostnames for extra channels" + - Revert "cifs: fix uninitialized pointer in error case in + dfs_cache_get_tgt_share" + - Revert "cifs: skip trailing separators of prefix paths" + - Revert "cifs: update internal module number" + - Revert "cifs: do not build smb1ops if legacy support is disabled" + - Revert "cifs: fix potential deadlock in direct reclaim" + - Revert "cifs: remove repeated debug message on cifs_put_smb_ses()" + - Revert "smb3: remove unneeded null check in cifs_readdir" + - Revert "cifs: fix ntlmssp on old servers" + - Revert "cifs: cache the dirents for entries in a cached directory" + - Revert "cifs: avoid parallel session setups on same channel" + - Revert "cifs: use new enum for ses_status" + - Revert "cifs: do not use tcpStatus after negotiate completes" + - Revert "smb3: add mount parm nosparse" + - Revert "smb3: don't set rc when used and unneeded in query_info_compound" + - Revert "cifs: fix minor compile warning" + - Revert "Add various fsctl structs" + - Revert "Add defines for various newer FSCTLs" + - Revert "smb3: add trace point for oplock not found" + - Revert "cifs: return the more nuanced writeback error on close()" + - Revert "smb3: add trace point for lease not found issue" + - Revert "cifs: smbd: fix typo in comment" + - Revert "cifs: set the CREATE_NOT_FILE when opening the directory in + use_cached_dir()" + - Revert "cifs: check for smb1 in open_cached_dir()" + - Revert "cifs: move definition of cifs_fattr earlier in cifsglob.h" + - Revert "cifs: print TIDs as hex" + - Revert "cifs: return ENOENT for DFS lookup_cache_entry()" + - Revert "cifs: don't call cifs_dfs_query_info_nonascii_quirk() if nodfs was + set" + - Revert "cifs: fix signed integer overflow when fl_end is OFFSET_MAX" + - Revert "cifs: use correct lock type in cifs_reconnect()" + - Revert "cifs: fix NULL ptr dereference in refresh_mounts()" + - Revert "cifs: Use kzalloc instead of kmalloc/memset" + - Revert "cifs: Split the smb3_add_credits tracepoint" + - Revert "cifs: update internal module number" + - Revert "cifs: force new session setup and tcon for dfs" + - Revert "cifs: remove check of list iterator against head past the loop body" + - Revert "cifs: fix potential race with cifsd thread" + - Revert "fs: Remove ->readpages address space operation" + - Revert "smb3: fix ksmbd bigendian bug in oplock break, and move its struct + to smbfs_common" + - Revert "smb3: cleanup and clarify status of tree connections" + - Revert "smb3: move defines for query info and query fsinfo to smbfs_common" + - Revert "smb3: move defines for ioctl protocol header and SMB2 sizes to + smbfs_common" + - Revert "move more common protocol header definitions to smbfs_common" + - Revert "cifs: fix incorrect use of list iterator after the loop" + - Revert "cifs: fix bad fids sent over wire" + - Revert "cifs: change smb2_query_info_compound to use a cached fid, if + available" + - Revert "cifs: convert the path to utf16 in smb2_query_info_compound" + - Revert "cifs: do not skip link targets when an I/O fails" + - Revert "cifs: use a different reconnect helper for non-cifsd threads" + - Revert "cifs: truncate the inode and mapping when we simulate fcollapse" + - Revert "smb3: fix incorrect session setup check for multiuser mounts" + - Revert "treewide: Replace zero-length arrays with flexible-array members" + - Revert "cifs: mark sessions for reconnection in helper function" + - Revert "cifs: call helper functions for marking channels for reconnect" + - Revert "cifs: call cifs_reconnect when a connection is marked" + - Revert "improve error message when mount options conflict with posix" + - Revert "cifs: fix workstation_name for multiuser mounts" + - Revert "cifs: unlock chan_lock before calling cifs_put_tcp_session" + - Revert "Fix a warning about a malformed kernel doc comment in cifs" + - Revert "cifs: update internal module number" + - Revert "smb3: send NTLMSSP version information" + - Revert "cifs: cifs_ses_mark_for_reconnect should also update reconnect bits" + - Revert "cifs: update tcpStatus during negotiate and sess setup" + - Revert "cifs: make status checks in version independent callers" + - Revert "cifs: remove repeated state change in dfs tree connect" + - Revert "cifs: fix the cifs_reconnect path for DFS" + - Revert "cifs: remove unused variable ses_selected" + - Revert "cifs: protect all accesses to chan_* with chan_lock" + - Revert "cifs: fix the connection state transitions with multichannel" + - Revert "cifs: check reconnects for channels of active tcons too" + - Revert "smb3: add new defines from protocol specification" + - Revert "cifs: serialize all mount attempts" + - Revert "cifs: quirk for STATUS_OBJECT_NAME_INVALID returned for non-ASCII + dfs refs" + - Revert "cifs: alloc_path_with_tree_prefix: do not append sep. if the path is + empty" + - Revert "cifs: clean up an inconsistent indenting" + - Revert "cifs: free ntlmsspblob allocated in negotiate" + - Revert "cifs: fix FILE_BOTH_DIRECTORY_INFO definition" + - Revert "cifs: move superblock magic defitions to magic.h" + - Revert "cifs: Fix smb311_update_preauth_hash() kernel-doc comment" + - Revert "cifs: avoid race during socket reconnect between send and recv" + - Revert "cifs: maintain a state machine for tcp/smb/tcon sessions" + - Revert "cifs: fix hang on cifs_get_next_mid()" + - Revert "cifs: take cifs_tcp_ses_lock for status checks" + - Revert "cifs: reconnect only the connection and not smb session where + possible" + - Revert "cifs: add WARN_ON for when chan_count goes below minimum" + - Revert "cifs: adjust DebugData to use chans_need_reconnect for conn status" + - Revert "cifs: use the chans_need_reconnect bitmap for reconnect status" + - Revert "cifs: track individual channel status using chans_need_reconnect" + - Revert "cifs: remove redundant assignment to pointer p" + - Revert "cifs: ignore resource_id while getting fscache super cookie" + - Revert "cifs: fix ntlmssp auth when there is no key exchange" + - Revert "cifs: avoid use of dstaddr as key for fscache client cookie" + - Revert "cifs: add server conn_id to fscache client cookie" + - Revert "cifs: wait for tcon resource_id before getting fscache super" + - Revert "cifs: update internal version number" + - Revert "smb2: clarify rc initialization in smb2_reconnect" + - Revert "cifs: populate server_hostname for extra channels" + - Revert "cifs: introduce cifs_ses_mark_for_reconnect() helper" + - Revert "cifs: protect srv_count with cifs_tcp_ses_lock" + - Revert "cifs: move debug print out of spinlock" + - Revert "cifs: do not duplicate fscache cookie for secondary channels" + - Revert "cifs: connect individual channel servers to primary channel server" + - Revert "cifs: do not negotiate session if session already exists" + - Revert "smb3: do not setup the fscache_super_cookie until fsinfo + initialized" + - Revert "cifs: fix potential use-after-free bugs" + - Revert "smb3: add additional null check in SMB311_posix_mkdir" + - Revert "cifs: release lock earlier in dequeue_mid error case" + - Revert "smb3: add additional null check in SMB2_tcon" + - Revert "smb3: add additional null check in SMB2_open" + - Revert "smb3: add additional null check in SMB2_ioctl" + - Revert "smb3: remove trivial dfs compile warning" + - Revert "cifs: for compound requests, use open handle if possible" + - Revert "cifs: convert list_for_each to entry variant" + - Revert "cifs: fix print of hdr_flags in dfscache_proc_show()" + - Revert "cifs: send workstation name during ntlmssp session setup" + - Revert "smb3: add dynamic trace points for socket connection" + - Revert "cifs: Move SMB2_Create definitions to the shared area" + - Revert "cifs: Move more definitions into the shared area" + - Revert "cifs: move NEGOTIATE_PROTOCOL definitions out into the common area" + - Revert "cifs: Create a new shared file holding smb2 pdu definitions" + - Revert "cifs: add mount parameter tcpnodelay" + - Revert "cifs: if deferred close is disabled then close files immediately" + - Revert "cifs: use fs_context for automounts" + - Revert "SMB3: Do not send lease break acknowledgment if all file handles + have been closed" + - Revert "cifs: fix lease break oops in xfstest generic/098" + - Revert "cifs: fix mid leak during reconnection after timeout threshold" + - Revert "cifs: mapchars mount option ignored" + - Revert "SMB3: drop reference to cfile before sending oplock break" + - Revert "SMB3: Close all deferred handles of inode in case of handle lease + break" + - Revert "SMB3: force unmount was failing to close deferred close files" + - Revert "smb3: fix problem remounting a share after shutdown" + - Revert "cifs: release leases for deferred close handles when freezing" + - Revert "cifs: fix pcchunk length type in smb2_copychunk_range" + - Revert "SMB3: Close deferred file handles in case of handle lease break" + - Revert "SMB3: Add missing locks to protect deferred close file list" + - Revert "cifs: sanitize paths in cifs_update_super_prepath." + - Revert "smb3: lower default deferred close timeout to address perf + regression" + - Revert "smb3: allow deferred close timeout to be configurable" + - Revert "cifs: fix DFS traversal oops without CONFIG_CIFS_DFS_UPCALL" + - Revert "cifs: prevent infinite recursion in CIFSGetDFSRefer()" + - Revert "cifs: print session id while listing open files" + - Revert "cifs: empty interface list when server doesn't support query + interfaces" + - Revert "cifs: Fix smb2_set_path_size()" + - Revert "cifs: Move the in_send statistic to __smb_send_rqst()" + - Revert "cifs: Fix uninitialized memory read in smb3_qfs_tcon()" + - Revert "cifs: Fix warning and UAF when destroy the MR list" + - Revert "cifs: Fix lost destroy smbd connection when MR allocate failed" + - Revert "cifs: Fix use-after-free in rdata->read_into_pages()" + - Revert "cifs: fix return of uninitialized rc in dfs_cache_update_tgthint()" + - Revert "cifs: Fix oops due to uncleared server->smbd_conn in reconnect" + - Revert "cifs: fix potential deadlock in cache_refresh_path()" + - Revert "cifs: do not include page data when checking signature" + - Revert "cifs: Fix uninitialized memory read for smb311 posix symlink create" + - Revert "cifs: fix missing display of three mount options" + - Revert "cifs: fix confusing debug message" + - Revert "cifs: fix oops during encryption" + - Revert "cifs: fix use-after-free caused by invalid pointer `hostname`" + - Revert "cifs: fix missed refcounting of ipc tcon" + - Revert "cifs: Fix connections leak when tlink setup failed" + - Revert "cifs: support nested dfs links over reconnect" + - Revert "cifs: split out dfs code from cifs_reconnect()" + - Revert "cifs: introduce new helper for cifs_reconnect()" + - Revert "cifs: add check for returning value of SMB2_set_info_init" + - Revert "cifs: Fix wrong return value checking when GETFLAGS" + - Revert "cifs: add check for returning value of SMB2_close_init" + - Revert "cifs: fix regression in very old smb1 mounts" + - Revert "cifs: Fix xid leak in cifs_ses_add_channel()" + - Revert "cifs: Fix xid leak in cifs_flock()" + - Revert "cifs: Fix xid leak in cifs_copy_file_range()" + - Revert "cifs: Fix xid leak in cifs_create()" + - Revert "cifs: return correct error in ->calc_signature()" + - Revert "smb3: must initialize two ACL struct fields to zero" + - Revert "cifs: Fix the error length of VALIDATE_NEGOTIATE_INFO message" + - Revert "cifs: destage dirty pages before re-reading them for cache=none" + - Revert "cifs: always initialize struct msghdr smb_msg completely" + - Revert "cifs: don't send down the destination address to sendmsg for a + SOCK_STREAM" + - Revert "cifs: revalidate mapping when doing direct writes" + - Revert "cifs: fix small mempool leak in SMB2_negotiate()" + - Revert "smb3: missing inode locks in punch hole" + - Revert "smb3: check xattr value length earlier" + - Revert "cifs: Fix memory leak on the deferred close" + - Revert "SMB3: fix lease break timeout when multiple deferred close handles + for the same file." + - Revert "cifs: fix reconnect on smb3 mount types" + - Revert "cifs: return errors during session setup during reconnects" + - Revert "cifs: version operations for smb20 unneeded when legacy support + disabled" + - Revert "SMB3: EBADF/EIO errors in rename/open caused by race condition in + smb2_compound_op" + - Revert "smb3: check for null tcon" + - Revert "cifs: when extending a file with falloc we should make files not- + sparse" + - Revert "cifs: fix potential double free during failed mount" + - Revert "cifs: destage any unwritten data to the server before calling + copychunk_write" + - Revert "cifs: Check the IOCB_DIRECT flag, not O_DIRECT" + - Revert "cifs: verify that tcon is valid before dereference in cifs_kill_sb" + - Revert "cifs: potential buffer overflow in handling symlinks" + - Revert "cifs: release cached dentries only if mount is complete" + - Revert "Adjust cifssb maximum read size" + - Revert "cifs: fix NULL ptr dereference in smb2_ioctl_query_info()" + - Revert "cifs: prevent bad output lengths in smb2_ioctl_query_info()" + - Revert "cifs: we do not need a spinlock around the tree access during + umount" + - Revert "cifs: fix handlecache and multiuser" + - Revert "cifs: fix confusing unneeded warning message on smb2.1 and earlier" + - Revert "cifs: protect session channel fields with chan_lock" + - Revert "cifs: modefromsids must add an ACE for authenticated users" + - Revert "cifs: fix double free race when mount fails in cifs_get_root()" + - Revert "cifs: do not use uninitialized data in the owner/group sid" + - Revert "smb3: fix snapshot mount option" + - Revert "cifs: fix set of group SID via NTSD xattrs" + - Revert "cifs: sanitize multiple delimiters in prepath" + - Revert "cifs: Fix crash on unload of cifs_arc4.ko" + - Revert "cifs: nosharesock should be set on new server" + - Revert "cifs: nosharesock should not share socket with future sessions" + - Revert "cifs: fix memory leak of smb3_fs_context_dup::server_hostname" + - Revert "smb3: do not error on fsync when readonly" + - Revert "cifs: set a minimum of 120s for next dns resolution" + - Revert "cifs: To match file servers, make sure the server hostname matches" + - cifs: To match file servers, make sure the server hostname matches + - cifs: add mount parameter tcpnodelay + - cifs: Create a new shared file holding smb2 pdu definitions + - cifs: move NEGOTIATE_PROTOCOL definitions out into the common area + - cifs: Move more definitions into the shared area + - cifs: Move SMB2_Create definitions to the shared area + - smb3: add dynamic trace points for socket connection + - cifs: nosharesock should not share socket with future sessions + - cifs: send workstation name during ntlmssp session setup + - cifs: fix print of hdr_flags in dfscache_proc_show() + - cifs: introduce new helper for cifs_reconnect() + - cifs: convert list_for_each to entry variant + - cifs: split out dfs code from cifs_reconnect() + - cifs: set a minimum of 120s for next dns resolution + - cifs: for compound requests, use open handle if possible + - smb3: do not error on fsync when readonly + - cifs: support nested dfs links over reconnect + - smb3: remove trivial dfs compile warning + - smb3: add additional null check in SMB2_ioctl + - smb3: add additional null check in SMB2_open + - smb3: add additional null check in SMB2_tcon + - cifs: release lock earlier in dequeue_mid error case + - smb3: add additional null check in SMB311_posix_mkdir + - cifs: fix memory leak of smb3_fs_context_dup::server_hostname + - cifs: fix potential use-after-free bugs + - smb3: do not setup the fscache_super_cookie until fsinfo initialized + - cifs: do not negotiate session if session already exists + - cifs: protect session channel fields with chan_lock + - cifs: connect individual channel servers to primary channel server + - cifs: do not duplicate fscache cookie for secondary channels + - cifs: move debug print out of spinlock + - cifs: protect srv_count with cifs_tcp_ses_lock + - cifs: introduce cifs_ses_mark_for_reconnect() helper + - cifs: nosharesock should be set on new server + - cifs: populate server_hostname for extra channels + - smb2: clarify rc initialization in smb2_reconnect + - cifs: update internal version number + - cifs: fix missed refcounting of ipc tcon + - cifs: wait for tcon resource_id before getting fscache super + - cifs: add server conn_id to fscache client cookie + - cifs: avoid use of dstaddr as key for fscache client cookie + - cifs: Fix crash on unload of cifs_arc4.ko + - cifs: fix ntlmssp auth when there is no key exchange + - cifs: ignore resource_id while getting fscache super cookie + - cifs: sanitize multiple delimiters in prepath + - cifs: remove redundant assignment to pointer p + - cifs: track individual channel status using chans_need_reconnect + - cifs: use the chans_need_reconnect bitmap for reconnect status + - cifs: adjust DebugData to use chans_need_reconnect for conn status + - cifs: add WARN_ON for when chan_count goes below minimum + - cifs: reconnect only the connection and not smb session where possible + - cifs: take cifs_tcp_ses_lock for status checks + - cifs: fix hang on cifs_get_next_mid() + - cifs: maintain a state machine for tcp/smb/tcon sessions + - cifs: avoid race during socket reconnect between send and recv + - cifs: Fix smb311_update_preauth_hash() kernel-doc comment + - cifs: move superblock magic defitions to magic.h + - cifs: fix FILE_BOTH_DIRECTORY_INFO definition + - cifs: free ntlmsspblob allocated in negotiate + - cifs: clean up an inconsistent indenting + - cifs: alloc_path_with_tree_prefix: do not append sep. if the path is empty + - cifs: quirk for STATUS_OBJECT_NAME_INVALID returned for non-ASCII dfs refs + - cifs: serialize all mount attempts + - smb3: add new defines from protocol specification + - cifs: check reconnects for channels of active tcons too + - cifs: fix the connection state transitions with multichannel + - cifs: protect all accesses to chan_* with chan_lock + - cifs: remove unused variable ses_selected + - cifs: fix the cifs_reconnect path for DFS + - cifs: remove repeated state change in dfs tree connect + - cifs: make status checks in version independent callers + - cifs: update tcpStatus during negotiate and sess setup + - cifs: cifs_ses_mark_for_reconnect should also update reconnect bits + - smb3: send NTLMSSP version information + - cifs: update internal module number + - Fix a warning about a malformed kernel doc comment in cifs + - cifs: unlock chan_lock before calling cifs_put_tcp_session + - cifs: fix workstation_name for multiuser mounts + - improve error message when mount options conflict with posix + - cifs: call cifs_reconnect when a connection is marked + - cifs: call helper functions for marking channels for reconnect + - cifs: mark sessions for reconnection in helper function + - smb3: fix snapshot mount option + - cifs: fix set of group SID via NTSD xattrs + - cifs: do not use uninitialized data in the owner/group sid + - cifs: fix double free race when mount fails in cifs_get_root() + - cifs: modefromsids must add an ACE for authenticated users + - cifs: fix confusing unneeded warning message on smb2.1 and earlier + - treewide: Replace zero-length arrays with flexible-array members + - smb3: fix incorrect session setup check for multiuser mounts + - cifs: fix handlecache and multiuser + - cifs: truncate the inode and mapping when we simulate fcollapse + - Adjust cifssb maximum read size + - cifs: we do not need a spinlock around the tree access during umount + - cifs: use a different reconnect helper for non-cifsd threads + - cifs: do not skip link targets when an I/O fails + - cifs: convert the path to utf16 in smb2_query_info_compound + - cifs: change smb2_query_info_compound to use a cached fid, if available + - cifs: fix bad fids sent over wire + - cifs: fix incorrect use of list iterator after the loop + - move more common protocol header definitions to smbfs_common + - smb3: move defines for ioctl protocol header and SMB2 sizes to smbfs_common + - smb3: move defines for query info and query fsinfo to smbfs_common + - smb3: cleanup and clarify status of tree connections + - smb3: fix ksmbd bigendian bug in oplock break, and move its struct to + smbfs_common + - cifs: prevent bad output lengths in smb2_ioctl_query_info() + - cifs: fix NULL ptr dereference in smb2_ioctl_query_info() + - cifs: fix potential race with cifsd thread + - cifs: remove check of list iterator against head past the loop body + - cifs: force new session setup and tcon for dfs + - cifs: update internal module number + - cifs: Check the IOCB_DIRECT flag, not O_DIRECT + - cifs: release cached dentries only if mount is complete + - cifs: Split the smb3_add_credits tracepoint + - cifs: potential buffer overflow in handling symlinks + - cifs: verify that tcon is valid before dereference in cifs_kill_sb + - cifs: Use kzalloc instead of kmalloc/memset + - cifs: fix NULL ptr dereference in refresh_mounts() + - cifs: use correct lock type in cifs_reconnect() + - cifs: destage any unwritten data to the server before calling + copychunk_write + - SMB3: EBADF/EIO errors in rename/open caused by race condition in + smb2_compound_op + - cifs: fix signed integer overflow when fl_end is OFFSET_MAX + - cifs: don't call cifs_dfs_query_info_nonascii_quirk() if nodfs was set + - cifs: return ENOENT for DFS lookup_cache_entry() + - cifs: print TIDs as hex + - cifs: move definition of cifs_fattr earlier in cifsglob.h + - cifs: check for smb1 in open_cached_dir() + - cifs: set the CREATE_NOT_FILE when opening the directory in use_cached_dir() + - cifs: smbd: fix typo in comment + - smb3: add trace point for lease not found issue + - cifs: return the more nuanced writeback error on close() + - smb3: add trace point for oplock not found + - Add defines for various newer FSCTLs + - Add various fsctl structs + - cifs: fix minor compile warning + - smb3: check for null tcon + - smb3: don't set rc when used and unneeded in query_info_compound + - smb3: add mount parm nosparse + - cifs: do not use tcpStatus after negotiate completes + - cifs: use new enum for ses_status + - cifs: avoid parallel session setups on same channel + - cifs: cache the dirents for entries in a cached directory + - cifs: fix ntlmssp on old servers + - smb3: remove unneeded null check in cifs_readdir + - cifs: fix potential double free during failed mount + - cifs: remove repeated debug message on cifs_put_smb_ses() + - cifs: when extending a file with falloc we should make files not-sparse + - cifs: fix potential deadlock in direct reclaim + - cifs: do not build smb1ops if legacy support is disabled + - cifs: version operations for smb20 unneeded when legacy support disabled + - cifs: update internal module number + - cifs: skip trailing separators of prefix paths + - cifs: fix uninitialized pointer in error case in dfs_cache_get_tgt_share + - cifs: fix reconnect on smb3 mount types + - cifs: return errors during session setup during reconnects + - cifs: populate empty hostnames for extra channels + - smb3: add trace point for SMB2_set_eof + - cifs: when a channel is not found for server, log its connection id + - smb3: fix empty netname context on secondary channels + - smb3: use netname when available on secondary channels + - cifs: change iface_list from array to sorted linked list + - cifs: during reconnect, update interface if necessary + - cifs: periodically query network interfaces from server + - cifs: avoid deadlocks while updating iface + - cifs: update cifs_ses::ip_addr after failover + - cifs: fix race condition with delayed threads + - cifs: remove unnecessary locking of chan_lock while freeing session + - smb3: workaround negprot bug in some Samba servers + - smb3: check xattr value length earlier + - cifs: remove redundant initialization to variable mnt_sign_enabled + - cifs: remove unnecessary type castings + - cifs: remove unnecessary (void*) conversions. + - cifs: remove some camelCase and also some static build warnings + - cifs: remove minor build warning + - smb2: small refactor in smb2_check_message() + - cifs: list_for_each() -> list_for_each_entry() + - cifs: remove remaining build warnings + - cifs: avoid use of global locks for high contention data + - cifs: fix wrong unlock before return from cifs_tree_connect() + - cifs: when insecure legacy is disabled shrink amount of SMB1 code + - cifs: remove useless DeleteMidQEntry() + - cifs: remove "cifs_" prefix from init/destroy mids functions + - cifs: alloc_mid function should be marked as static + - cifs: update internal module number + - cifs: fix lock length calculation + - cifs: Move cached-dir functions into a separate file + - cifs: Do not use tcon->cfid directly, use the cfid we get from + open_cached_dir + - smb3: allow deferred close timeout to be configurable + - SMB3: fix lease break timeout when multiple deferred close handles for the + same file. + - cifs: Add constructor/destructors for tcon->cfid + - cifs: Do not access tcon->cfids->cfid directly from is_path_accessible + - cifs: remove unused server parameter from calc_smb_size() + - cifs: remove useless parameter 'is_fsctl' from SMB2_ioctl() + - cifs: Fix memory leak on the deferred close + - cifs: move from strlcpy with unused retval to strscpy + - smb3: missing inode locks in zero range + - smb3: missing inode locks in punch hole + - cifs: skip extra NULL byte in filenames + - cifs: Use help macro to get the header preamble size + - cifs: Use help macro to get the mid header size + - cifs: Add helper function to check smb1+ server + - smb3: Move the flush out of smb2_copychunk_range() into its callers + - smb3: fix temporary data corruption in collapse range + - smb3: fix temporary data corruption in insert range + - smb3: use filemap_write_and_wait_range instead of filemap_write_and_wait + - cifs: fix small mempool leak in SMB2_negotiate() + - cifs: revalidate mapping when doing direct writes + - cifs: don't send down the destination address to sendmsg for a SOCK_STREAM + - cifs: always initialize struct msghdr smb_msg completely + - cifs: add missing spinlock around tcon refcount + - cifs: update internal module number + - cifs: misc: fix spelling typo in comment + - cifs: return correct error in ->calc_signature() + - cifs: destage dirty pages before re-reading them for cache=none + - cifs: Fix the error length of VALIDATE_NEGOTIATE_INFO message + - Decrease the number of SMB3 smbdirect client SGEs + - Reduce client smbdirect max receive segment size + - Handle variable number of SGEs in client smbdirect send. + - Fix formatting of client smbdirect RDMA logging + - smb3: add dynamic trace points for tree disconnect + - cifs: Make tcon contain a wrapper structure cached_fids instead of + cached_fid + - cifs: improve handlecaching + - cifs: store a pointer to a fid in the cfid structure instead of the struct + - smb3: define missing create contexts + - smb3: do not log confusing message when server returns no network interfaces + - cifs: Replace a couple of one-element arrays with flexible-array members + - cifs: remove initialization value + - cifs: replace kfree() with kfree_sensitive() for sensitive data + - smb3: rename encryption/decryption TFMs + - cifs: secmech: use shash_desc directly, remove sdesc + - smb3: fix oops in calculating shash_setkey + - cifs: fix skipping to incorrect offset in emit_cached_dirents + - cifs: fix regression in very old smb1 mounts + - smb3: clarify multichannel warning + - cifs: improve symlink handling for smb2+ + - cifs: fix uninitialised var in smb2_compound_op() + - cifs: prevent copying past input buffer boundaries + - cifs: enable caching of directories for which a lease is held + - cifs: find and use the dentry for cached non-root directories also + - cifs: use ALIGN() and round_up() macros + - cifs: fix static checker warning + - cifs: fix double-fault crash during ntlmssp + - smb3: must initialize two ACL struct fields to zero + - cifs: lease key is uninitialized in smb1 paths + - cifs: lease key is uninitialized in two additional functions when smb1 + - smb3: improve SMB3 change notification support + - cifs: Fix xid leak in cifs_create() + - cifs: Fix xid leak in cifs_copy_file_range() + - cifs: Fix xid leak in cifs_flock() + - cifs: Fix xid leak in cifs_ses_add_channel() + - cifs: Fix xid leak in cifs_get_file_info_unix() + - cifs: use LIST_HEAD() and list_move() to simplify code + - cifs: set rc to -ENOENT if we can not get a dentry for the cached dir + - cifs: Fix memory leak when build ntlmssp negotiate blob failed + - smb3: interface count displayed incorrectly + - cifs: drop the lease for cached directories on rmdir or rename + - cifs: fix memory leaks in session setup + - cifs: update internal module number + - cifs: Fix pages array leak when writedata alloc failed in + cifs_writedata_alloc() + - cifs: Fix pages leak when writedata alloc failed in cifs_write_from_iter() + - cifs: fix use-after-free caused by invalid pointer `hostname` + - cred: Do not default to init_cred in prepare_kernel_cred() + - cifs: always iterate smb sessions using primary channel + - cifs: avoid unnecessary iteration of tcp sessions + - cifs: fix use-after-free on the link name + - cifs: Fix connections leak when tlink setup failed + - cifs: add check for returning value of SMB2_close_init + - cifs: Fix wrong return value checking when GETFLAGS + - cifs: add check for returning value of SMB2_set_info_init + - cifs: Use after free in debug code + - cifs: fix missing unlock in cifs_file_copychunk_range() + - cifs: Add "extbuf" and "extbuflen" args to smb2_compound_op() + - cifs: Parse owner/group for stat in smb311 posix extensions + - cifs: skip alloc when request has no pages + - cifs: minor cleanup of some headers + - cifs: fix various whitespace errors in headers + - cifs: fix missing display of three mount options + - cifs: print warning when conflicting soft vs. hard mount options specified + - cifs: fix oops during encryption + - cifs: Remove duplicated include in cifsglob.h + - cifs: set correct tcon status after initial tree connect + - cifs: set correct ipc status after initial tree connect + - cifs: reduce roundtrips on create/qinfo requests + - cifs: use fs_context for automounts + - cifs: get rid of mount options string parsing + - cifs: remove unused smb3_fs_context::mount_options + - cifs: set resolved ip in sockaddr + - cifs: split out ses and tcon retrieval from mount_get_conns() + - cifs: share dfs connections and supers + - cifs: don't refresh cached referrals from unactive mounts + - cifs: fix refresh of cached referrals + - cifs: refresh root referrals + - cifs: don't block in dfs_cache_noreq_update_tgthint() + - cifs: fix confusing debug message + - cifs: fix source pathname comparison of dfs supers + - cifs: optimize reconnect of nested links + - cifs: set correct status of tcon ipc when reconnecting + - cifs: use origin fullpath for automounts + - cifs: don't leak -ENOMEM in smb2_open_file() + - cifs: update internal module number + - cifs: Fix kmap_local_page() unmapping + - cifs: ignore ipc reconnect failures during dfs failover + - cifs: fix race in assemble_neg_contexts() + - cifs: protect access of TCP_Server_Info::{dstaddr,hostname} + - cifs: refcount only the selected iface during interface update + - cifs: fix interface count calculation during refresh + - cifs: fix file info setting in cifs_query_path_info() + - cifs: fix file info setting in cifs_open_file() + - cifs: remove redundant assignment to the variable match + - cifs: fix double free on failed kerberos auth + - cifs: do not query ifaces on smb1 mounts + - cifs: fix potential memory leaks in session setup + - cifs: Fix uninitialized memory read for smb311 posix symlink create + - cifs: fix potential deadlock in cache_refresh_path() + - cifs: avoid re-lookups in dfs_cache_find() + - cifs: don't take exclusive lock for updating target hints + - cifs: remove duplicate code in __refresh_tcon() + - cifs: handle cache lookup errors different than -ENOENT + - cifs: fix return of uninitialized rc in dfs_cache_update_tgthint() + - cifs: do not include page data when checking signature + - cifs: remove unused function + - cifs: Fix oops due to uncleared server->smbd_conn in reconnect + - cifs: Fix use-after-free in rdata->read_into_pages() + - cifs: Use kstrtobool() instead of strtobool() + - cifs: Replace zero-length arrays with flexible-array members + - cifs: print last update time for interface list + - cifs: Get rid of unneeded conditional in the smb2_get_aead_req() + - cifs: update Kconfig description + - cifs: fix indentation in make menuconfig options + - cifs: prevent data race in smb2_reconnect() + - cifs: get rid of unneeded conditional in cifs_get_num_sgs() + - cifs: introduce cifs_io_parms in smb2_async_writev() + - cifs: split out smb3_use_rdma_offload() helper + - cifs: don't try to use rdma offload on encrypted connections + - cifs: Fix uninitialized memory read in smb3_qfs_tcon() + - cifs: remove unneeded 2bytes of padding from smb2 tree connect + - cifs: Fix uninitialized memory reads for oparms.mode + - cifs: fix mount on old smb servers + - cifs: Convert struct fealist away from 1-element array + - cifs: Replace remaining 1-element arrays + - cifs: Check the lease context if we actually got a lease + - cifs: return a single-use cfid if we did not get a lease + - cifs: Fix lost destroy smbd connection when MR allocate failed + - cifs: Fix warning and UAF when destroy the MR list + - cifs: get rid of dns resolve worker + - smb3: Replace smb2pdu 1-element arrays with flex-arrays + - cifs: Add a function to read into an iter from a socket + - cifs: use the least loaded channel for sending requests + - cifs: use tcon allocation functions even for dummy tcon + - cifs: update ip_addr for ses only for primary chan setup + - update internal module version number for cifs.ko + - cifs: match even the scope id for ipv6 addresses + - cifs: reuse cifs_match_ipaddr for comparison of dstaddr too + - cifs: improve checking of DFS links over STATUS_OBJECT_NAME_INVALID + - cifs: prevent data race in cifs_reconnect_tcon() + - cifs: Move the in_send statistic to __smb_send_rqst() + - cifs: Fix smb2_set_path_size() + - cifs: generate signkey for the channel that's reconnecting + - cifs: set DFS root session in cifs_get_smb_ses() + - cifs: fix use-after-free bug in refresh_cache_worker() + - cifs: return DFS root session id in DebugData + - cifs: use DFS root session instead of tcon ses + - cifs: check only tcon status on tcon related functions + - cifs: lock chan_lock outside match_session + - cifs: do not poll server interfaces too regularly + - cifs: empty interface list when server doesn't support query interfaces + - cifs: dump pending mids for all channels in DebugData + - cifs: print session id while listing open files + - cifs: append path to open_enter trace event + - cifs: avoid race conditions with parallel reconnects + - cifs: fix missing unload_nls() in smb2_reconnect() + - smb3: lower default deferred close timeout to address perf regression + - cifs: fix dentry lookups in directory handle cache + - smb3: fix unusable share after force unmount failure + - cifs: fix DFS traversal oops without CONFIG_CIFS_DFS_UPCALL + - cifs: avoid races in parallel reconnects in smb1 + - cifs: prevent infinite recursion in CIFSGetDFSRefer() + - cifs: get rid of dead check in smb2_reconnect() + - cifs: sanitize paths in cifs_update_super_prepath. + - cifs: double lock in cifs_reconnect_tcon() + - cifs: fix negotiate context parsing + - cifs: avoid dup prefix path in dfs_get_automount_devname() + - cifs: Simplify SMB2_open_init() + - cifs: Simplify SMB2_open_init() + - cifs: Simplify SMB2_open_init() + - cifs: Avoid a cast in add_lease_context() + - SMB3: Add missing locks to protect deferred close file list + - SMB3: Close deferred file handles in case of handle lease break + - cifs: missing lock when updating session status + - SMB3.1.1: add new tree connect ShareFlags + - smb3: make query_on_disk_id open context consistent and move to common code + - smb3: move some common open context structs to smbfs_common + - cifs: update internal module version number for cifs.ko + - SMB3.1.1: correct definition for app_instance_id create contexts + - cifs: protect session status check in smb2_reconnect() + - cifs: print smb3_fs_context::source when mounting + - cifs: fix potential use-after-free bugs in TCP_Server_Info::hostname + - cifs: fix potential race when tree connecting ipc + - cifs: protect access of TCP_Server_Info::{origin,leaf}_fullpath + - cifs: avoid potential races when handling multiple dfs tcons + - cifs: fix sharing of DFS connections + - cifs: fix pcchunk length type in smb2_copychunk_range + - do not reuse connection if share marked as isolated + - smb3: improve parallel reads of large files + - SMB3: force unmount was failing to close deferred close files + - smb3: fix problem remounting a share after shutdown + - cifs: release leases for deferred close handles when freezing + - SMB3: Close all deferred handles of inode in case of handle lease break + - SMB3: drop reference to cfile before sending oplock break + - cifs: fix smb1 mount regression + - smb3: display debug information better for encryption + - cifs: mapchars mount option ignored + - smb3: missing null check in SMB2_change_notify + - smb: delete an unnecessary statement + - cifs: address unused variable warning + - smb: remove obsolete comment + - cifs: fix status checks in cifs_tree_connect + - cifs: print all credit counters in DebugData + - smb/client: print "Unknown" instead of bogus link speed value + - cifs: fix sockaddr comparison in iface_cmp + - cifs: fix max_credits implementation + - cifs: fix lease break oops in xfstest generic/098 + - cifs: add a warning when the in-flight count goes negative + - SMB3: Do not send lease break acknowledgment if all file handles have been + closed + - cifs: print nosharesock value while dumping mount options + - smb: client: fix warning in cifs_match_super() + - smb: client: fix warning in cifs_smb3_do_mount() + - cifs: print more detail when invalidate_inode_mapping fails + - smb3: do not reserve too many oplock credits + - smb: client: fix warning in CIFSFindFirst() + - smb: client: fix warning in CIFSFindNext() + - smb: client: fix warning in generic_ip_connect() + - cifs: prevent use-after-free by freeing the cfile later + - cifs: do all necessary checks for credits within or before locking + - cifs: fix session state check in reconnect to avoid use-after-free issue + - cifs: fix session state check in smb2_find_smb_ses + - cifs: print client_guid in DebugData + - smb: client: fix broken file attrs with nodfs mounts + - smb: client: fix parsing of source mount option + - smb: client: fix shared DFS root mounts with different prefixes + - smb: client: improve DFS mount check + - cifs: log session id when a matching ses is not found + - cifs: new dynamic tracepoint to track ses not found errors + - cifs: fix session state transition to avoid use-after-free issue + - smb: client: remove redundant pointer 'server' + - cifs: if deferred close is disabled then close files immediately + - smb: client: Fix -Wstringop-overflow issues + - smb: client: fix missed ses refcounting + - cifs: fix mid leak during reconnection after timeout threshold + - cifs: update internal module version number for cifs.ko + - cifs: allow dumping keys for directories too + - smb3: do not set NTLMSSP_VERSION flag for negotiate not auth request + - cifs: add missing return value check for cifs_sb_tlink + - smb: client: fix dfs link mount against w2k8 + - cifs: fix potential oops in cifs_oplock_break + - cifs: Release folio lock on fscache read hit. + - smb3: display network namespace in debug information + - smb: client: fix null auth + + [ Ubuntu: 5.15.0-88.98 ] + + * jammy/linux: 5.15.0-88.98 -proposed tracker (LP: #2038055) + * CVE-2023-4244 + - netfilter: nf_tables: don't skip expired elements during walk + - netfilter: nf_tables: adapt set backend to use GC transaction API + - netfilter: nft_set_hash: mark set element as dead when deleting from packet + path + - netfilter: nf_tables: GC transaction API to avoid race with control plane + - netfilter: nf_tables: remove busy mark and gc batch API + - netfilter: nf_tables: don't fail inserts if duplicate has expired + - netfilter: nf_tables: fix kdoc warnings after gc rework + - netfilter: nf_tables: fix GC transaction races with netns and netlink event + exit path + - netfilter: nf_tables: GC transaction race with netns dismantle + - netfilter: nf_tables: GC transaction race with abort path + - netfilter: nf_tables: use correct lock to protect gc_list + - netfilter: nf_tables: defer gc run if previous batch is still pending + - netfilter: nft_dynset: disallow object maps + - netfilter: nft_set_rbtree: skip sync GC for new elements in this transaction + * CVE-2023-42756 + - netfilter: ipset: Fix race between IPSET_CMD_CREATE and IPSET_CMD_SWAP + * CVE-2023-4623 + - net/sched: sch_hfsc: Ensure inner classes have fsc curve + * PCI BARs larger than 128GB are disabled (LP: #2037403) + - PCI: Support BAR sizes up to 8TB + * Fix unstable audio at low levels on Thinkpad P1G4 (LP: #2037077) + - ALSA: hda/realtek - ALC287 I2S speaker platform support + * Check for changes relevant for security certifications (LP: #1945989) + - [Packaging] Add a new fips-checks script + * Jammy update: v5.15.126 upstream stable release (LP: #2037593) + - io_uring: gate iowait schedule on having pending requests + - perf: Fix function pointer case + - net/mlx5: Free irqs only on shutdown callback + - arm64: errata: Add workaround for TSB flush failures + - arm64: errata: Add detection for TRBE write to out-of-range + - [Config] updateconfigs for ARM64_ERRATUM_ and + ARM64_WORKAROUND_TSB_FLUSH_FAILURE + - iommu/arm-smmu-v3: Work around MMU-600 erratum 1076982 + - iommu/arm-smmu-v3: Document MMU-700 erratum 2812531 + - iommu/arm-smmu-v3: Add explicit feature for nesting + - iommu/arm-smmu-v3: Document nesting-related errata + - arm64: dts: imx8mn-var-som: add missing pull-up for onboard PHY reset pinmux + - word-at-a-time: use the same return type for has_zero regardless of + endianness + - KVM: s390: fix sthyi error handling + - wifi: cfg80211: Fix return value in scan logic + - net/mlx5: DR, fix memory leak in mlx5dr_cmd_create_reformat_ctx + - net/mlx5e: fix return value check in mlx5e_ipsec_remove_trailer() + - bpf: Add length check for SK_DIAG_BPF_STORAGE_REQ_MAP_FD parsing + - rtnetlink: let rtnl_bridge_setlink checks IFLA_BRIDGE_MODE length + - net: dsa: fix value check in bcm_sf2_sw_probe() + - perf test uprobe_from_different_cu: Skip if there is no gcc + - net: sched: cls_u32: Fix match key mis-addressing + - mISDN: hfcpci: Fix potential deadlock on &hc->lock + - qed: Fix kernel-doc warnings + - qed: Fix scheduling in a tasklet while getting stats + - net: annotate data-races around sk->sk_max_pacing_rate + - net: add missing READ_ONCE(sk->sk_rcvlowat) annotation + - net: add missing READ_ONCE(sk->sk_sndbuf) annotation + - net: add missing READ_ONCE(sk->sk_rcvbuf) annotation + - net: add missing data-race annotations around sk->sk_peek_off + - net: add missing data-race annotation for sk_ll_usec + - net/sched: taprio: Limit TCA_TAPRIO_ATTR_SCHED_CYCLE_TIME to INT_MAX. + - bpf, cpumap: Handle skb as well when clean up ptr_ring + - bpf: sockmap: Remove preempt_disable in sock_map_sk_acquire + - net: ll_temac: Switch to use dev_err_probe() helper + - net: ll_temac: fix error checking of irq_of_parse_and_map() + - net: korina: handle clk prepare error in korina_probe() + - net: netsec: Ignore 'phy-mode' on SynQuacer in DT mode + - net: dcb: choose correct policy to parse DCB_ATTR_BCN + - s390/qeth: Don't call dev_close/dev_open (DOWN/UP) + - ip6mr: Fix skb_under_panic in ip6mr_cache_report() + - vxlan: Fix nexthop hash size + - net/mlx5: fs_core: Make find_closest_ft more generic + - net/mlx5: fs_core: Skip the FTs in the same FS_TYPE_PRIO_CHAINS fs_prio + - prestera: fix fallback to previous version on same major version + - tcp_metrics: fix addr_same() helper + - tcp_metrics: annotate data-races around tm->tcpm_stamp + - tcp_metrics: annotate data-races around tm->tcpm_lock + - tcp_metrics: annotate data-races around tm->tcpm_vals[] + - tcp_metrics: annotate data-races around tm->tcpm_net + - tcp_metrics: fix data-race in tcpm_suck_dst() vs fastopen + - scsi: zfcp: Defer fc_rport blocking until after ADISC response + - scsi: storvsc: Limit max_sectors for virtual Fibre Channel devices + - libceph: fix potential hang in ceph_osdc_notify() + - USB: zaurus: Add ID for A-300/B-500/C-700 + - ceph: defer stopping mdsc delayed_work + - firmware: arm_scmi: Drop OF node reference in the transport channel setup + - exfat: use kvmalloc_array/kvfree instead of kmalloc_array/kfree + - exfat: release s_lock before calling dir_emit() + - mtd: spinand: toshiba: Fix ecc_get_status + - mtd: rawnand: meson: fix OOB available bytes for ECC + - arm64: dts: stratix10: fix incorrect I2C property for SCL signal + - wifi: mt76: mt7615: do not advertise 5 GHz on first phy of MT7615D (DBDC) + - rbd: prevent busy loop when requesting exclusive lock + - bpf: Disable preemption in bpf_event_output + - open: make RESOLVE_CACHED correctly test for O_TMPFILE + - drm/ttm: check null pointer before accessing when swapping + - bpf, cpumap: Make sure kthread is running before map update returns + - file: reinstate f_pos locking optimization for regular files + - fs/ntfs3: Use __GFP_NOWARN allocation at ntfs_load_attr_list() + - fs/sysv: Null check to prevent null-ptr-deref bug + - net: usbnet: Fix WARNING in usbnet_start_xmit/usb_submit_urb + - fs: Protect reconfiguration of sb read-write from racing writes + - ext2: Drop fragment support + - mtd: rawnand: omap_elm: Fix incorrect type in assignment + - mtd: rawnand: rockchip: fix oobfree offset and description + - mtd: rawnand: rockchip: Align hwecc vs. raw page helper layouts + - mtd: rawnand: fsl_upm: Fix an off-by one test in fun_exec_op() + - powerpc/mm/altmap: Fix altmap boundary check + - drm/imx/ipuv3: Fix front porch adjustment upon hactive aligning + - selftests/rseq: check if libc rseq support is registered + - selftests/rseq: Play nice with binaries statically linked against glibc + 2.35+ + - soundwire: bus: pm_runtime_request_resume on peripheral attachment + - soundwire: fix enumeration completion + - PM / wakeirq: support enabling wake-up irq after runtime_suspend called + - PM: sleep: wakeirq: fix wake irq arming + - Linux 5.15.126 + * Jammy update: v5.15.125 upstream stable release (LP: #2036843) + - ia64/cpu: Switch to arch_cpu_finalize_init() + - m68k/cpu: Switch to arch_cpu_finalize_init() + - mips/cpu: Switch to arch_cpu_finalize_init() + - sh/cpu: Switch to arch_cpu_finalize_init() + - Linux 5.15.125 + - Upstream stable to v5.15.125 + * CVE-2023-42755 + - net/sched: Retire rsvp classifier + - [Config] remove NET_CLS_RSVP and NET_CLS_RSVP6 + * CVE-2023-42753 + - netfilter: ipset: add the missing IP_SET_HASH_WITH_NET0 macro for + ip_set_hash_netportnet.c + * CVE-2023-34319 + - xen/netback: Fix buffer overrun triggered by unusual packet + * CVE-2023-5197 + - netfilter: nf_tables: disallow rule removal from chain binding + * CVE-2023-4921 + - net: sched: sch_qfq: Fix UAF in qfq_dequeue() + * CVE-2023-42752 + - igmp: limit igmpv3_newpack() packet size to IP_MAX_MTU + * Avoid address overwrite in kernel_connect (LP: #2035163) + - net: Avoid address overwrite in kernel_connect + * NULL Pointer Dereference During KVM MMU Page Invalidation (LP: #2035166) + - KVM: x86/mmu: Track the number of TDP MMU pages, but not the actual pages + * Fix suspend hang on Lenovo workstation (LP: #2034479) + - igb: Fix igb_down hung on surprise removal + * [regression] Unable to initialize SGX enclaves with XFRM other than 3 + (LP: #2034745) + - x86/fpu: Set X86_FEATURE_OSXSAVE feature after enabling OSXSAVE in CR4 + * CVE-2023-4881 + - netfilter: nftables: exthdr: fix 4-byte stack OOB write + * CVE-2023-4622 + - af_unix: Fix null-ptr-deref in unix_stream_sendpage(). + * Jammy update: v5.15.124 upstream stable release (LP: #2035400) + - jbd2: Fix wrongly judgement for buffer head removing while doing checkpoint + - KVM: s390: pv: fix index value of replaced ASCE + - io_uring: don't audit the capability check in io_uring_create() + - gpio: tps68470: Make tps68470_gpio_output() always set the initial value + - pwm: Add a stub for devm_pwmchip_add() + - gpio: mvebu: Make use of devm_pwmchip_add + - gpio: mvebu: fix irq domain leak + - btrfs: fix race between quota disable and relocation + - i2c: Delete error messages for failed memory allocations + - i2c: Improve size determinations + - i2c: nomadik: Remove unnecessary goto label + - i2c: nomadik: Use devm_clk_get_enabled() + - i2c: nomadik: Remove a useless call in the remove function + - PCI/ASPM: Return 0 or -ETIMEDOUT from pcie_retrain_link() + - PCI/ASPM: Factor out pcie_wait_for_retrain() + - PCI/ASPM: Avoid link retraining race + - PCI: rockchip: Remove writes to unused registers + - PCI: rockchip: Fix window mapping and address translation for endpoint + - PCI: rockchip: Don't advertise MSI-X in PCIe capabilities + - dlm: cleanup plock_op vs plock_xop + - dlm: rearrange async condition return + - fs: dlm: interrupt posix locks only when process is killed + - drm/ttm: Don't print error message if eviction was interrupted + - drm/ttm: Don't leak a resource on eviction error + - n_tty: Rename tail to old_tail in n_tty_read() + - tty: fix hang on tty device with no_room set + - drm/ttm: never consider pinned BOs for eviction&swap + - cifs: missing directory in MAINTAINERS file + - cifs: use fs_context for automounts + - ksmbd: remove internal.h include + - cifs: if deferred close is disabled then close files immediately + - pwm: meson: Simplify duplicated per-channel tracking + - pwm: meson: fix handling of period/duty if greater than UINT_MAX + - tracing/probes: Add symstr type for dynamic events + - tracing/probes: Fix to avoid double count of the string length on the array + - tracing: Allow synthetic events to pass around stacktraces + - Revert "tracing: Add "(fault)" name injection to kernel probes" + - tracing/probes: Fix to record 0-length data_loc in fetch_store_string*() if + fails + - scsi: qla2xxx: Remove unused declarations for qla2xxx + - scsi: qla2xxx: Multi-que support for TMF + - scsi: qla2xxx: Fix task management cmd failure + - scsi: qla2xxx: Fix task management cmd fail due to unavailable resource + - scsi: qla2xxx: Add debug prints in the device remove path + - scsi: qla2xxx: Fix hang in task management + - drm/amdgpu: fix vkms crtc settings + - drm/amdgpu/vkms: relax timer deactivation by hrtimer_try_to_cancel + - phy: qcom-snps: Use dev_err_probe() to simplify code + - phy: qcom-snps: correct struct qcom_snps_hsphy kerneldoc + - phy: qcom-snps-femto-v2: keep cfg_ahb_clk enabled during runtime suspend + - phy: qcom-snps-femto-v2: properly enable ref clock + - soundwire: qcom: update status correctly with mask + - media: staging: atomisp: select V4L2_FWNODE + - i40e: Fix an NULL vs IS_ERR() bug for debugfs_create_dir() + - iavf: fix potential deadlock on allocation failure + - iavf: check for removal state before IAVF_FLAG_PF_COMMS_FAILED + - net: phy: marvell10g: fix 88x3310 power up + - net: hns3: fix wrong tc bandwidth weight data issue + - net: hns3: fix wrong bw weight of disabled tc issue + - vxlan: move to its own directory + - vxlan: calculate correct header length for GPE + - phy: hisilicon: Fix an out of bounds check in hisi_inno_phy_probe() + - ethernet: atheros: fix return value check in atl1e_tso_csum() + - ipv6 addrconf: fix bug where deleting a mngtmpaddr can create a new + temporary address + - ice: Fix memory management in ice_ethtool_fdir.c + - bonding: reset bond's flags when down link is P2P device + - team: reset team's flags when down link is P2P device + - net: stmmac: Apply redundant write work around on 4.xx too + - platform/x86: msi-laptop: Fix rfkill out-of-sync on MSI Wind U100 + - igc: Fix Kernel Panic during ndo_tx_timeout callback + - netfilter: nft_set_rbtree: fix overlap expiration walk + - net/sched: mqprio: refactor nlattr parsing to a separate function + - net/sched: mqprio: add extack to mqprio_parse_nlattr() + - net/sched: mqprio: Add length check for TCA_MQPRIO_{MAX/MIN}_RATE64 + - benet: fix return value check in be_lancer_xmit_workarounds() + - tipc: check return value of pskb_trim() + - tipc: stop tipc crypto on failure in tipc_node_create + - RDMA/mlx4: Make check for invalid flags stricter + - drm/msm/dpu: drop enum dpu_core_perf_data_bus_id + - drm/msm/adreno: Fix snapshot BINDLESS_DATA size + - RDMA/irdma: Add missing read barriers + - RDMA/irdma: Fix data race on CQP completion stats + - RDMA/irdma: Fix data race on CQP request done + - RDMA/mthca: Fix crash when polling CQ for shared QPs + - RDMA/bnxt_re: Prevent handling any completions after qp destroy + - drm/msm: Fix IS_ERR_OR_NULL() vs NULL check in a5xx_submit_in_rb() + - ASoC: fsl_spdif: Silence output on stop + - block: Fix a source code comment in include/uapi/linux/blkzoned.h + - dm raid: fix missing reconfig_mutex unlock in raid_ctr() error paths + - dm raid: clean up four equivalent goto tags in raid_ctr() + - dm raid: protect md_stop() with 'reconfig_mutex' + - drm/amd: Fix an error handling mistake in psp_sw_init() + - RDMA/irdma: Report correct WC error + - ata: pata_ns87415: mark ns87560_tf_read static + - ring-buffer: Fix wrong stat of cpu_buffer->read + - tracing: Fix warning in trace_buffered_event_disable() + - Revert "usb: gadget: tegra-xudc: Fix error check in + tegra_xudc_powerdomain_init()" + - usb: gadget: call usb_gadget_check_config() to verify UDC capability + - USB: gadget: Fix the memory leak in raw_gadget driver + - KVM: Grab a reference to KVM for VM and vCPU stats file descriptors + - KVM: VMX: Don't fudge CR0 and CR4 for restricted L2 guest + - serial: qcom-geni: drop bogus runtime pm state update + - serial: 8250_dw: Preserve original value of DLF register + - serial: sifive: Fix sifive_serial_console_setup() section + - USB: serial: option: support Quectel EM060K_128 + - USB: serial: option: add Quectel EC200A module support + - USB: serial: simple: add Kaufmann RKS+CAN VCP + - USB: serial: simple: sort driver entries + - can: gs_usb: gs_can_close(): add missing set of CAN state to + CAN_STATE_STOPPED + - Revert "usb: dwc3: core: Enable AutoRetry feature in the controller" + - usb: dwc3: pci: skip BYT GPIO lookup table for hardwired phy + - usb: dwc3: don't reset device side if dwc3 was configured as host-only + - usb: ohci-at91: Fix the unhandle interrupt when resume + - USB: quirks: add quirk for Focusrite Scarlett + - usb: cdns3: fix incorrect calculation of ep_buf_size when more than one + config + - usb: xhci-mtk: set the dma max_seg_size + - Revert "usb: xhci: tegra: Fix error check" + - Documentation: security-bugs.rst: update preferences when dealing with the + linux-distros group + - Documentation: security-bugs.rst: clarify CVE handling + - staging: r8712: Fix memory leak in _r8712_init_xmit_priv() + - staging: ks7010: potential buffer overflow in ks_wlan_set_encode_ext() + - tty: n_gsm: fix UAF in gsm_cleanup_mux + - Revert "xhci: add quirk for host controllers that don't update endpoint DCS" + - ALSA: hda/relatek: Enable Mute LED on HP 250 G8 + - hwmon: (k10temp) Enable AMD3255 Proc to show negative temperature + - hwmon: (nct7802) Fix for temp6 (PECI1) processed even if PECI1 disabled + - btrfs: check if the transaction was aborted at btrfs_wait_for_commit() + - btrfs: check for commit error at btrfs_attach_transaction_barrier() + - file: always lock position for FMODE_ATOMIC_POS + - nfsd: Remove incorrect check in nfsd4_validate_stateid + - tpm_tis: Explicitly check for error code + - irq-bcm6345-l1: Do not assume a fixed block to cpu mapping + - irqchip/gic-v4.1: Properly lock VPEs when doing a directLPI invalidation + - locking/rtmutex: Fix task->pi_waiters integrity + - KVM: x86: Disallow KVM_SET_SREGS{2} if incoming CR0 is invalid + - virtio-net: fix race between set queues and probe + - s390/dasd: fix hanging device after quiesce/resume + - ASoC: wm8904: Fill the cache for WM8904_ADC_TEST_0 register + - ceph: never send metrics if disable_send_metrics is set + - dm cache policy smq: ensure IO doesn't prevent cleaner policy progress + - rbd: make get_lock_owner_info() return a single locker or NULL + - rbd: harden get_lock_owner_info() a bit + - rbd: retrieve and check lock owner twice before blocklisting + - tracing: Fix trace_event_raw_event_synth() if else statement + - ACPI: processor: perflib: Use the "no limit" frequency QoS + - ACPI: processor: perflib: Avoid updating frequency QoS unnecessarily + - cpufreq: intel_pstate: Drop ACPI _PSS states table patching + - selftests: mptcp: sockopt: use 'iptables-legacy' if available + - io_uring: treat -EAGAIN for REQ_F_NOWAIT as final for io-wq + - ASoC: cs42l51: fix driver to properly autoload with automatic module loading + - selftests: mptcp: join: only check for ip6tables if needed + - Linux 5.15.124 + * Jammy update: v5.15.123 upstream stable release (LP: #2034612) + - ALSA: hda/realtek - remove 3k pull low procedure + - ALSA: hda/realtek: Add quirk for Clevo NS70AU + - ALSA: hda/realtek: Enable Mute LED on HP Laptop 15s-eq2xxx + - keys: Fix linking a duplicate key to a keyring's assoc_array + - perf probe: Add test for regression introduced by switch to + die_get_decl_file() + - btrfs: fix warning when putting transaction with qgroups enabled after abort + - fuse: revalidate: don't invalidate if interrupted + - btrfs: zoned: fix memory leak after finding block group with super blocks + - fuse: ioctl: translate ENOSYS in outarg + - selftests: tc: set timeout to 15 minutes + - selftests: tc: add 'ct' action kconfig dep + - regmap: Drop initial version of maximum transfer length fixes + - regmap: Account for register length in SMBus I/O limits + - can: bcm: Fix UAF in bcm_proc_show() + - selftests: tc: add ConnTrack procfs kconfig + - drm/client: Fix memory leak in drm_client_target_cloned + - drm/client: Fix memory leak in drm_client_modeset_probe + - drm/amd/display: Disable MPC split by default on special asic + - drm/amd/display: Keep PHY active for DP displays on DCN31 + - ASoC: fsl_sai: Disable bit clock with transmitter + - ASoC: codecs: wcd938x: fix missing clsh ctrl error handling + - ASoC: codecs: wcd-mbhc-v2: fix resource leaks on component remove + - ASoC: codecs: wcd938x: fix resource leaks on component remove + - ASoC: codecs: wcd938x: fix missing mbhc init error handling + - ASoC: codecs: wcd934x: fix resource leaks on component remove + - ASoC: codecs: wcd938x: fix codec initialisation race + - ASoC: codecs: wcd938x: fix soundwire initialisation race + - ext4: correct inline offset when handling xattrs in inode body + - drm/radeon: Fix integer overflow in radeon_cs_parser_init + - ALSA: emu10k1: roll up loops in DSP setup code for Audigy + - quota: Properly disable quotas when add_dquot_ref() fails + - quota: fix warning in dqgrab() + - udf: Fix uninitialized array access for some pathnames + - fs: jfs: Fix UBSAN: array-index-out-of-bounds in dbAllocDmapLev + - MIPS: dec: prom: Address -Warray-bounds warning + - FS: JFS: Fix null-ptr-deref Read in txBegin + - FS: JFS: Check for read-only mounted filesystem in txBegin + - spi: bcm63xx: fix max prepend length + - fbdev: imxfb: warn about invalid left/right margin + - perf build: Fix library not found error when using CSLIBS + - pinctrl: amd: Use amd_pinconf_set() for all config options + - net: ethernet: ti: cpsw_ale: Fix cpsw_ale_get_field()/cpsw_ale_set_field() + - bridge: Add extack warning when enabling STP in netns. + - ethernet: use eth_hw_addr_set() instead of ether_addr_copy() + - of: net: add a helper for loading netdev->dev_addr + - ethernet: use of_get_ethdev_address() + - net: ethernet: mtk_eth_soc: handle probe deferral + - net: sched: cls_bpf: Undo tcf_bind_filter in case of an error + - iavf: Fix use-after-free in free_netdev + - iavf: Fix out-of-bounds when setting channels on remove + - security: keys: Modify mismatched function name + - octeontx2-pf: Dont allocate BPIDs for LBK interfaces + - bpf: Fix subprog idx logic in check_max_stack_depth + - igc: Prevent garbled TX queue with XDP ZEROCOPY + - tcp: annotate data-races around tcp_rsk(req)->ts_recent + - net: ipv4: Use kfree_sensitive instead of kfree + - net:ipv6: check return value of pskb_trim() + - Revert "tcp: avoid the lookup process failing to get sk in ehash table" + - fbdev: au1200fb: Fix missing IRQ check in au1200fb_drv_probe + - llc: Don't drop packet from non-root netns. + - netfilter: nf_tables: fix spurious set element insertion failure + - netfilter: nf_tables: skip bound chain in netns release path + - tcp: annotate data-races around tp->tcp_tx_delay + - tcp: annotate data-races around tp->keepalive_time + - tcp: annotate data-races around tp->keepalive_intvl + - tcp: annotate data-races around tp->keepalive_probes + - tcp: annotate data-races around icsk->icsk_syn_retries + - tcp: annotate data-races around tp->linger2 + - tcp: annotate data-races around rskq_defer_accept + - tcp: annotate data-races around tp->notsent_lowat + - tcp: annotate data-races around icsk->icsk_user_timeout + - tcp: annotate data-races around fastopenq.max_qlen + - net: phy: prevent stale pointer dereference in phy_init() + - jbd2: recheck chechpointing non-dirty buffer + - tracing/histograms: Return an error if we fail to add histogram to hist_vars + list + - nixge: fix mac address error handling again + - Linux 5.15.123 + * allow io_uring to be disabled in runtime (LP: #2035116) + - io_uring: add a sysctl to disable io_uring system-wide + * CVE-2023-31083 + - Bluetooth: hci_ldisc: check HCI_UART_PROTO_READY flag in HCIUARTGETPROTO + * CVE-2023-3772 + - xfrm: add NULL check in xfrm_update_ae_params + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + -- Tim Gardner Wed, 11 Oct 2023 12:28:58 -0600 + +linux-azure (5.15.0-1050.57) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1050.57 -proposed tracker (LP: #2038173) + + [ Ubuntu: 5.15.0-87.97 ] + + * jammy/linux: 5.15.0-87.97 -proposed tracker (LP: #2038209) + * CVE-2023-4623 + - net/sched: sch_hfsc: Ensure inner classes have fsc curve + * CVE-2023-42755 + - net/sched: Retire rsvp classifier + - [Config] remove NET_CLS_RSVP and NET_CLS_RSVP6 + * CVE-2023-34319 + - xen/netback: Fix buffer overrun triggered by unusual packet + * CVE-2023-4921 + - net: sched: sch_qfq: Fix UAF in qfq_dequeue() + * CVE-2023-42752 + - igmp: limit igmpv3_newpack() packet size to IP_MAX_MTU + * CVE-2023-4622 + - af_unix: Fix null-ptr-deref in unix_stream_sendpage(). + * CVE-2023-4244 + - netfilter: nft_set_rbtree: fix overlap expiration walk + - netfilter: nf_tables: don't skip expired elements during walk + - netfilter: nf_tables: adapt set backend to use GC transaction API + - netfilter: nft_set_hash: mark set element as dead when deleting from packet + path + - netfilter: nf_tables: GC transaction API to avoid race with control plane + - netfilter: nf_tables: remove busy mark and gc batch API + - netfilter: nf_tables: don't fail inserts if duplicate has expired + - netfilter: nf_tables: fix kdoc warnings after gc rework + - netfilter: nf_tables: fix GC transaction races with netns and netlink event + exit path + - netfilter: nf_tables: GC transaction race with netns dismantle + - netfilter: nf_tables: GC transaction race with abort path + - netfilter: nf_tables: use correct lock to protect gc_list + - netfilter: nf_tables: defer gc run if previous batch is still pending + - netfilter: nft_dynset: disallow object maps + - netfilter: nft_set_rbtree: skip sync GC for new elements in this transaction + * CVE-2023-42756 + - netfilter: ipset: Fix race between IPSET_CMD_CREATE and IPSET_CMD_SWAP + * CVE-2023-42753 + - netfilter: ipset: add the missing IP_SET_HASH_WITH_NET0 macro for + ip_set_hash_netportnet.c + * CVE-2023-5197 + - netfilter: nf_tables: skip bound chain in netns release path + - netfilter: nf_tables: disallow rule removal from chain binding + * CVE-2023-4881 + - netfilter: nftables: exthdr: fix 4-byte stack OOB write + + -- Tim Gardner Wed, 04 Oct 2023 07:15:26 -0600 + +linux-azure (5.15.0-1049.56) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1049.56 -proposed tracker (LP: #2036537) + + [ Ubuntu: 5.15.0-86.96 ] + + * jammy/linux: 5.15.0-86.96 -proposed tracker (LP: #2036575) + * 5.15.0-85 live migration regression (LP: #2036675) + - Revert "KVM: x86: Always enable legacy FP/SSE in allowed user XFEATURES" + - Revert "x86/kvm/fpu: Limit guest user_xfeatures to supported bits of XCR0" + * Regression for ubuntu_bpf test build on Jammy 5.15.0-85.95 (LP: #2035181) + - selftests/bpf: fix static assert compilation issue for test_cls_*.c + * `refcount_t: underflow; use-after-free.` on hidon w/ 5.15.0-85-generic + (LP: #2034447) + - crypto: rsa-pkcs1pad - Use helper to set reqsize + + -- Roxana Nicolescu Wed, 20 Sep 2023 12:02:19 +0200 + +linux-azure (5.15.0-1048.55) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1048.55 -proposed tracker (LP: #2033786) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * Azure: Fix Infiniband identifier order (LP: #2034747) + - RDMA: Add ERDMA to rdma_driver_id definition + + * Azure: net: mana: Fix MANA VF unload when hardware is unresponsive + (LP: #2033531) + - net: mana: Fix MANA VF unload when hardware is unresponsive + + * Azure: net: mana: Add page pool for RX buffers (LP: #2034277) + - net: mana: Add page pool for RX buffers + + [ Ubuntu: 5.15.0-85.95 ] + + * jammy/linux: 5.15.0-85.95 -proposed tracker (LP: #2033821) + * Please enable Renesas RZ platform serial installer (LP: #2022361) + - [Config] enable hihope RZ/G2M serial console + - [Config] Mark sh-sci as built-in + * Request backport of xen timekeeping performance improvements (LP: #2033122) + - x86/xen/time: prefer tsc as clocksource when it is invariant + * kdump doesn't work with UEFI secure boot and kernel lockdown enabled on + ARM64 (LP: #2033007) + - [Config]: Enable CONFIG_KEXEC_IMAGE_VERIFY_SIG + - kexec, KEYS: make the code in bzImage64_verify_sig generic + - arm64: kexec_file: use more system keyrings to verify kernel image signature + * ubuntu_kernel_selftests:net:vrf-xfrm-tests.sh: 8 failed test cases on + jammy/fips (LP: #2019880) + - selftests: net: vrf-xfrm-tests: change authentication and encryption algos + * ubuntu_kernel_selftests:net:tls: 88 failed test cases on jammy/fips + (LP: #2019868) + - selftests/harness: allow tests to be skipped during setup + - selftests: net: tls: check if FIPS mode is enabled + * A general-proteciton exception during guest migration to unsupported PKRU + machine (LP: #2032164, reverted) + - x86/kvm/fpu: Limit guest user_xfeatures to supported bits of XCR0 + - KVM: x86: Always enable legacy FP/SSE in allowed user XFEATURES + * CVE-2023-4569 + - netfilter: nf_tables: deactivate catchall elements in next generation + * CVE-2023-20569 + - x86/cpu, kvm: Add support for CPUID_80000021_EAX + - x86/srso: Add a Speculative RAS Overflow mitigation + - x86/srso: Add IBPB_BRTYPE support + - x86/srso: Add SRSO_NO support + - x86/srso: Add IBPB + - x86/srso: Add IBPB on VMEXIT + - x86/srso: Fix return thunks in generated code + - x86/srso: Tie SBPB bit setting to microcode patch detection + - x86: fix backwards merge of GDS/SRSO bit + - x86/srso: Fix build breakage with the LLVM linker + - x86/cpu: Fix __x86_return_thunk symbol type + - x86/cpu: Fix up srso_safe_ret() and __x86_return_thunk() + - x86/alternative: Make custom return thunk unconditional + - objtool: Add frame-pointer-specific function ignore + - x86/ibt: Add ANNOTATE_NOENDBR + - x86/cpu: Clean up SRSO return thunk mess + - x86/cpu: Rename original retbleed methods + - x86/cpu: Rename srso_(.*)_alias to srso_alias_\1 + - x86/cpu: Cleanup the untrain mess + - x86/srso: Explain the untraining sequences a bit more + - x86/static_call: Fix __static_call_fixup() + - x86/retpoline: Don't clobber RFLAGS during srso_safe_ret() + - x86/srso: Disable the mitigation on unaffected configurations + - x86/retpoline,kprobes: Fix position of thunk sections with CONFIG_LTO_CLANG + - objtool/x86: Fixup frame-pointer vs rethunk + - x86/srso: Correct the mitigation status when SMT is disabled + - objtool/x86: Fix SRSO mess + - Ubuntu: [Config]: enable Speculative Return Stack Overflow mitigation + * Fix unreliable ethernet cable detection on I219 NIC (LP: #2028122) + - e1000e: Use PME poll to circumvent unreliable ACPI wake + * Need to get fine-grained control for FAN(TFN) Participant. (LP: #2031333) + - ACPI: fan: Separate file for attributes creation + - ACPI: fan: Optimize struct acpi_fan_fif + - ACPI: fan: Properly handle fine grain control + - ACPI: fan: Add additional attributes for fine grain control + * [SRU][Ubuntu 22.04.1] Unable to interpret the frequency values in + cpuinfo_min_freq and cpuino_max_freq sysfs files. (LP: #2030924) + - cpufreq: intel_pstate: Fix scaling for hybrid-capable + * CVE-2023-40283 + - Bluetooth: L2CAP: Fix use-after-free in l2cap_sock_ready_cb + * CVE-2023-20588 + - x86/bugs: Increase the x86 bugs vector size to two u32s + - x86/CPU/AMD: Do not leak quotient data after a division by 0 + - x86/CPU/AMD: Fix the DIV(0) initial fix attempt + * CVE-2023-4194 + - net: tun_chr_open(): set sk_uid from current_fsuid() + - net: tap_open(): set sk_uid from current_fsuid() + * CVE-2023-4155 + - KVM: SEV: Refactor out sev_es_state struct + - KVM: SEV: Fall back to vmalloc for SEV-ES scratch area if necessary + - KVM: SVM: Do not terminate SEV-ES guests on GHCB validation failure + - KVM: SVM: Exit to userspace on ENOMEM/EFAULT GHCB errors + - KVM: SEV: snapshot the GHCB before accessing it + - KVM: SEV: only access GHCB fields once + * CVE-2023-1206 + - tcp: Reduce chance of collisions in inet6_hashfn(). + * Crashing with CPU soft lock on GA kernel 5.15.0.79.76 and HWE kernel + 5.19.0-46.47-22.04.1 (LP: #2032176) + - Revert "KVM: x86: enable TDP MMU by default" + * Jammy update: v5.15.122 upstream stable release (LP: #2032690) + - Linux 5.15.122 + - Upstream stable to v5.15.122 + * Jammy update: v5.15.121 upstream stable release (LP: #2032689) + - netfilter: nf_tables: drop map element references from preparation phase + - fs: pipe: reveal missing function protoypes + - x86/resctrl: Only show tasks' pid in current pid namespace + - blk-iocost: use spin_lock_irqsave in adjust_inuse_and_calc_cost + - md/raid10: check slab-out-of-bounds in md_bitmap_get_counter + - md/raid10: fix overflow of md/safe_mode_delay + - md/raid10: fix wrong setting of max_corr_read_errors + - md/raid10: fix null-ptr-deref of mreplace in raid10_sync_request + - md/raid10: fix io loss while replacement replace rdev + - irqchip/jcore-aic: Fix missing allocation of IRQ descriptors + - svcrdma: Prevent page release when nothing was received + - posix-timers: Prevent RT livelock in itimer_delete() + - tracing/timer: Add missing hrtimer modes to decode_hrtimer_mode(). + - clocksource/drivers/cadence-ttc: Fix memory leak in ttc_timer_probe + - PM: domains: fix integer overflow issues in genpd_parse_state() + - perf/arm-cmn: Fix DTC reset + - powercap: RAPL: Fix CONFIG_IOSF_MBI dependency + - ARM: 9303/1: kprobes: avoid missing-declaration warnings + - cpufreq: intel_pstate: Fix energy_performance_preference for passive + - thermal/drivers/sun8i: Fix some error handling paths in sun8i_ths_probe() + - rcutorture: Correct name of use_softirq module parameter + - rcuscale: Always log error message + - rcuscale: Move shutdown from wait_event() to wait_event_idle() + - rcu/rcuscale: Move rcu_scale_*() after kfree_scale_cleanup() + - rcu/rcuscale: Stop kfree_scale_thread thread(s) after unloading rcuscale + - kselftest: vDSO: Fix accumulation of uninitialized ret when CLOCK_REALTIME + is undefined + - perf/ibs: Fix interface via core pmu events + - x86/mm: Fix __swp_entry_to_pte() for Xen PV guests + - locking/atomic: arm: fix sync ops + - evm: Complete description of evm_inode_setattr() + - evm: Fix build warnings + - ima: Fix build warnings + - pstore/ram: Add check for kstrdup + - igc: Enable and fix RX hash usage by netstack + - wifi: ath9k: fix AR9003 mac hardware hang check register offset calculation + - wifi: ath9k: avoid referencing uninit memory in ath9k_wmi_ctrl_rx + - libbpf: btf_dump_type_data_check_overflow needs to consider + BTF_MEMBER_BITFIELD_SIZE + - samples/bpf: Fix buffer overflow in tcp_basertt + - spi: spi-geni-qcom: Correct CS_TOGGLE bit in SPI_TRANS_CFG + - wifi: wilc1000: fix for absent RSN capabilities WFA testcase + - wifi: mwifiex: Fix the size of a memory allocation in + mwifiex_ret_802_11_scan() + - sctp: add bpf_bypass_getsockopt proto callback + - libbpf: fix offsetof() and container_of() to work with CO-RE + - bpf: Don't EFAULT for {g,s}setsockopt with wrong optlen + - spi: dw: Round of n_bytes to power of 2 + - nfc: llcp: fix possible use of uninitialized variable in + nfc_llcp_send_connect() + - bpftool: JIT limited misreported as negative value on aarch64 + - regulator: core: Fix more error checking for debugfs_create_dir() + - regulator: core: Streamline debugfs operations + - wifi: orinoco: Fix an error handling path in spectrum_cs_probe() + - wifi: orinoco: Fix an error handling path in orinoco_cs_probe() + - wifi: atmel: Fix an error handling path in atmel_probe() + - wl3501_cs: use eth_hw_addr_set() + - wifi: wl3501_cs: Fix an error handling path in wl3501_probe() + - wifi: ray_cs: Utilize strnlen() in parse_addr() + - wifi: ray_cs: Drop useless status variable in parse_addr() + - wifi: ray_cs: Fix an error handling path in ray_probe() + - wifi: ath9k: don't allow to overwrite ENDPOINT0 attributes + - selftests/bpf: Fix check_mtu using wrong variable type + - wifi: rsi: Do not configure WoWlan in shutdown hook if not enabled + - wifi: rsi: Do not set MMC_PM_KEEP_POWER in shutdown + - watchdog/perf: define dummy watchdog_update_hrtimer_threshold() on correct + config + - watchdog/perf: more properly prevent false positives with turbo modes + - kexec: fix a memory leak in crash_shrink_memory() + - memstick r592: make memstick_debug_get_tpc_name() static + - wifi: ath9k: Fix possible stall on ath9k_txq_list_has_key() + - rtnetlink: extend RTEXT_FILTER_SKIP_STATS to IFLA_VF_INFO + - wifi: iwlwifi: pull from TXQs with softirqs disabled + - iwlwifi: don't dump_stack() when we get an unexpected interrupt + - wifi: iwlwifi: pcie: fix NULL pointer dereference in + iwl_pcie_irq_rx_msix_handler() + - wifi: cfg80211: rewrite merging of inherited elements + - wifi: iwlwifi: mvm: indicate HW decrypt for beacon protection + - wifi: ath9k: convert msecs to jiffies where needed + - bpf: Omit superfluous address family check in __bpf_skc_lookup + - bpf: Factor out socket lookup functions for the TC hookpoint. + - bpf: Call __bpf_sk_lookup()/__bpf_skc_lookup() directly via TC hookpoint + - bpf: Fix bpf socket lookup from tc/xdp to respect socket VRF bindings + - can: length: fix bitstuffing count + - igc: Fix race condition in PTP tx code + - net: stmmac: fix double serdes powerdown + - netlink: fix potential deadlock in netlink_set_err() + - netlink: do not hard code device address lenth in fdb dumps + - bonding: do not assume skb mac_header is set + - selftests: rtnetlink: remove netdevsim device after ipsec offload test + - gtp: Fix use-after-free in __gtp_encap_destroy(). + - net: axienet: Move reset before 64-bit DMA detection + - sfc: fix crash when reading stats while NIC is resetting + - lib/ts_bm: reset initial match offset for every block of text + - netfilter: conntrack: dccp: copy entire header to stack buffer, not just + basic one + - netfilter: nf_conntrack_sip: fix the ct_sip_parse_numerical_param() return + value. + - ipvlan: Fix return value of ipvlan_queue_xmit() + - netlink: Add __sock_i_ino() for __netlink_diag_dump(). + - drm/amd/display: Add logging for display MALL refresh setting + - radeon: avoid double free in ci_dpm_init() + - drm/amd/display: Explicitly specify update type per plane info change + - Input: drv260x - sleep between polling GO bit + - drm/bridge: tc358768: always enable HS video mode + - drm/bridge: tc358768: fix PLL parameters computation + - drm/bridge: tc358768: fix PLL target frequency + - drm/bridge: tc358768: fix TCLK_ZEROCNT computation + - drm/bridge: tc358768: Add atomic_get_input_bus_fmts() implementation + - drm/bridge: tc358768: fix TCLK_TRAILCNT computation + - drm/bridge: tc358768: fix THS_ZEROCNT computation + - drm/bridge: tc358768: fix TXTAGOCNT computation + - drm/bridge: tc358768: fix THS_TRAILCNT computation + - drm/vram-helper: fix function names in vram helper doc + - ARM: dts: BCM5301X: Drop "clock-names" from the SPI node + - ARM: dts: meson8b: correct uart_B and uart_C clock references + - Input: adxl34x - do not hardcode interrupt trigger type + - drm: sun4i_tcon: use devm_clk_get_enabled in `sun4i_tcon_init_clocks` + - drm/panel: sharp-ls043t1le01: adjust mode settings + - ARM: dts: stm32: Move ethernet MAC EEPROM from SoM to carrier boards + - bus: ti-sysc: Fix dispc quirk masking bool variables + - arm64: dts: microchip: sparx5: do not use PSCI on reference boards + - clk: imx: scu: use _safe list iterator to avoid a use after free + - RDMA/bnxt_re: Disable/kill tasklet only if it is enabled + - RDMA/bnxt_re: Fix to remove unnecessary return labels + - RDMA/bnxt_re: Use unique names while registering interrupts + - RDMA/bnxt_re: Remove a redundant check inside bnxt_re_update_gid + - RDMA/bnxt_re: Fix to remove an unnecessary log + - drm/msm/dsi: don't allow enabling 14nm VCO with unprogrammed rate + - drm/msm/disp/dpu: get timing engine status from intf status register + - drm/msm/dpu: Set DPU_DATA_HCTL_EN for in INTF_SC7180_MASK + - ARM: dts: gta04: Move model property out of pinctrl node + - arm64: dts: qcom: msm8916: correct camss unit address + - arm64: dts: qcom: msm8994: correct SPMI unit address + - arm64: dts: qcom: msm8996: correct camss unit address + - arm64: dts: qcom: sdm630: correct camss unit address + - arm64: dts: qcom: sdm845: correct camss unit address + - arm64: dts: qcom: db820c: Move blsp1_uart2 pin states to msm8996.dtsi + - arm64: dts: qcom: apq8016-sbc: Update modem and WiFi firmware path + - arm64: dts: qcom: apq8016-sbc: Clarify firmware-names + - arm64: dts: qcom: apq8016-sbc: fix mpps state names + - arm64: dts: qcom: Drop unneeded extra device-specific includes + - arm64: dts: qcom: apq8016-sbc: Fix regulator constraints + - arm64: dts: qcom: apq8016-sbc: Fix 1.8V power rail on LS expansion + - drm/panel: simple: fix active size for Ampire AM-480272H3TMQW-T01H + - ARM: ep93xx: fix missing-prototype warnings + - ARM: omap2: fix missing tick_broadcast() prototype + - arm64: dts: qcom: apq8096: fix fixed regulator name property + - arm64: dts: mediatek: mt8183: Add mediatek,broken-save-restore-fw to kukui + - ARM: dts: stm32: Shorten the AV96 HDMI sound card name + - memory: brcmstb_dpfe: fix testing array offset after use + - ASoC: es8316: Increment max value for ALC Capture Target Volume control + - ASoC: es8316: Do not set rate constraints for unsupported MCLKs + - ARM: dts: meson8: correct uart_B and uart_C clock references + - soc/fsl/qe: fix usb.c build errors + - RDMA/irdma: avoid fortify-string warning in irdma_clr_wqes + - IB/hfi1: Use bitmap_zalloc() when applicable + - IB/hfi1: Fix wrong mmu_node used for user SDMA packet after invalidate + - RDMA/hns: Fix hns_roce_table_get return value + - ARM: dts: iwg20d-q7-common: Fix backlight pwm specifier + - arm64: dts: renesas: ulcb-kf: Remove flow control for SCIF1 + - fbdev: omapfb: lcd_mipid: Fix an error handling path in mipid_spi_probe() + - arm64: dts: ti: k3-j7200: Fix physical address of pin + - ARM: dts: stm32: Fix audio routing on STM32MP15xx DHCOM PDK2 + - ARM: dts: stm32: fix i2s endpoint format property for stm32mp15xx-dkx + - hwmon: (gsc-hwmon) fix fan pwm temperature scaling + - hwmon: (adm1275) Allow setting sample averaging + - hwmon: (pmbus/adm1275) Fix problems with temperature monitoring on ADM1272 + - ARM: dts: BCM5301X: fix duplex-full => full-duplex + - drm/amdkfd: Fix potential deallocation of previously deallocated memory. + - drm/amd/display: Fix artifacting on eDP panels when engaging freesync video + mode + - drm/radeon: fix possible division-by-zero errors + - amdgpu: validate offset_in_bo of drm_amdgpu_gem_va + - drm/msm/a5xx: really check for A510 in a5xx_gpu_init + - RDMA/bnxt_re: wraparound mbox producer index + - RDMA/bnxt_re: Avoid calling wake_up threads from spin_lock context + - clk: imx: clk-imx8mn: fix memory leak in imx8mn_clocks_probe + - clk: imx: clk-imx8mp: improve error handling in imx8mp_clocks_probe() + - arm64: dts: qcom: sm8250-edo: Panel framebuffer is 2.5k instead of 4k + - clk: clocking-wizard: Fix Oops in clk_wzrd_register_divider() + - clk: tegra: tegra124-emc: Fix potential memory leak + - ALSA: ac97: Fix possible NULL dereference in snd_ac97_mixer + - drm/msm/dpu: do not enable color-management if DSPPs are not available + - drm/msm/dp: Free resources after unregistering them + - arm64: dts: mediatek: Add cpufreq nodes for MT8192 + - arm64: dts: mediatek: mt8192: Fix CPUs capacity-dmips-mhz + - drm/msm/dpu: correct MERGE_3D length + - clk: vc5: check memory returned by kasprintf() + - clk: cdce925: check return value of kasprintf() + - clk: si5341: return error if one synth clock registration fails + - clk: si5341: check return value of {devm_}kasprintf() + - clk: si5341: free unused memory on probe failure + - clk: keystone: sci-clk: check return value of kasprintf() + - clk: ti: clkctrl: check return value of kasprintf() + - drivers: meson: secure-pwrc: always enable DMA domain + - ovl: update of dentry revalidate flags after copy up + - ASoC: imx-audmix: check return value of devm_kasprintf() + - clk: Fix memory leak in devm_clk_notifier_register() + - PCI: cadence: Fix Gen2 Link Retraining process + - PCI: vmd: Reset VMD config register between soft reboots + - scsi: qedf: Fix NULL dereference in error handling + - pinctrl: bcm2835: Handle gpiochip_add_pin_range() errors + - PCI/ASPM: Disable ASPM on MFD function removal to avoid use-after-free + - scsi: 3w-xxxx: Add error handling for initialization failure in tw_probe() + - PCI: pciehp: Cancel bringup sequence if card is not present + - PCI: ftpci100: Release the clock resources + - PCI: Add pci_clear_master() stub for non-CONFIG_PCI + - perf bench: Use unbuffered output when pipe/tee'ing to a file + - perf bench: Add missing setlocale() call to allow usage of %'d style + formatting + - pinctrl: cherryview: Return correct value if pin in push-pull mode + - kcsan: Don't expect 64 bits atomic builtins from 32 bits architectures + - powerpc/interrupt: Don't read MSR from interrupt_exit_kernel_prepare() + - powerpc/signal32: Force inlining of __unsafe_save_user_regs() and + save_tm_user_regs_unsafe() + - perf script: Fix allocation of evsel->priv related to per-event dump files + - perf dwarf-aux: Fix off-by-one in die_get_varname() + - powerpc/64s: Fix VAS mm use after free + - pinctrl: microchip-sgpio: check return value of devm_kasprintf() + - pinctrl: at91-pio4: check return value of devm_kasprintf() + - powerpc/powernv/sriov: perform null check on iov before dereferencing iov + - powerpc: simplify ppc_save_regs + - powerpc: update ppc_save_regs to save current r1 in pt_regs + - riscv: uprobes: Restore thread.bad_cause + - powerpc/book3s64/mm: Fix DirectMap stats in /proc/meminfo + - powerpc/mm/dax: Fix the condition when checking if altmap vmemap can cross- + boundary + - hwrng: virtio - add an internal buffer + - hwrng: virtio - don't wait on cleanup + - hwrng: virtio - don't waste entropy + - hwrng: virtio - always add a pending request + - hwrng: virtio - Fix race on data_avail and actual data + - modpost: remove broken calculation of exception_table_entry size + - crypto: nx - fix build warnings when DEBUG_FS is not enabled + - modpost: fix section mismatch message for R_ARM_ABS32 + - modpost: fix section mismatch message for R_ARM_{PC24,CALL,JUMP24} + - crypto: marvell/cesa - Fix type mismatch warning + - modpost: fix off by one in is_executable_section() + - ARC: define ASM_NL and __ALIGN(_STR) outside #ifdef __ASSEMBLY__ guard + - crypto: qat - honor CRYPTO_TFM_REQ_MAY_SLEEP flag + - crypto: qat - replace get_current_node() with numa_node_id() + - crypto: qat - use reference to structure in dma_map_single() + - crypto: kpp - Add helper to set reqsize + - crypto: qat - Use helper to set reqsize + - crypto: qat - unmap buffer before free for DH + - crypto: qat - unmap buffers before free for RSA + - NFSv4.1: freeze the session table upon receiving NFS4ERR_BADSESSION + - SMB3: Do not send lease break acknowledgment if all file handles have been + closed + - dax: Fix dax_mapping_release() use after free + - dax: Introduce alloc_dev_dax_id() + - dax/kmem: Pass valid argument to memory_group_register_static + - hwrng: st - keep clock enabled while hwrng is registered + - kbuild: Disable GCOV for *.mod.o + - efi/libstub: Disable PCI DMA before grabbing the EFI memory map + - ksmbd: avoid field overflow warning + - ACPI: utils: Fix acpi_evaluate_dsm_typed() redefinition error + - bootmem: remove the vmemmap pages from kmemleak in free_bootmem_page + - USB: serial: option: add LARA-R6 01B PIDs + - usb: dwc3: gadget: Propagate core init errors to UDC during pullup + - phy: tegra: xusb: Clear the driver reference in usb-phy dev + - iio: adc: ad7192: Fix null ad7192_state pointer access + - iio: adc: ad7192: Fix internal/external clock selection + - iio: accel: fxls8962af: errata bug only applicable for FXLS8962AF + - iio: accel: fxls8962af: fixup buffer scan element type + - ALSA: hda/realtek: Add quirk for Clevo NPx0SNx + - ALSA: jack: Fix mutex call in snd_jack_report() + - block: fix signed int overflow in Amiga partition support + - block: add overflow checks for Amiga partition support + - block: change all __u32 annotations to __be32 in affs_hardblocks.h + - block: increment diskseq on all media change events + - SUNRPC: Fix UAF in svc_tcp_listen_data_ready() + - w1: w1_therm: fix locking behavior in convert_t + - w1: fix loop in w1_fini() + - sh: j2: Use ioremap() to translate device tree address into kernel memory + - usb: dwc2: platform: Improve error reporting for problems during .remove() + - usb: dwc2: Fix some error handling paths + - serial: 8250: omap: Fix freeing of resources on failed register + - clk: qcom: camcc-sc7180: Add parent dependency to all camera GDSCs + - clk: qcom: gcc-ipq6018: Use floor ops for sdcc clocks + - media: usb: Check az6007_read() return value + - media: videodev2.h: Fix struct v4l2_input tuner index comment + - media: usb: siano: Fix warning due to null work_func_t function pointer + - media: i2c: Correct format propagation for st-mipid02 + - clk: qcom: reset: Allow specifying custom reset delay + - clk: qcom: reset: support resetting multiple bits + - clk: qcom: ipq6018: fix networking resets + - usb: dwc3: qcom: Fix potential memory leak + - usb: gadget: u_serial: Add null pointer check in gserial_suspend + - extcon: Fix kernel doc of property fields to avoid warnings + - extcon: Fix kernel doc of property capability fields to avoid warnings + - usb: phy: phy-tahvo: fix memory leak in tahvo_usb_probe() + - usb: hide unused usbfs_notify_suspend/resume functions + - serial: 8250: lock port for stop_rx() in omap8250_irq() + - serial: 8250: lock port for UART_IER access in omap8250_irq() + - kernfs: fix missing kernfs_idr_lock to remove an ID from the IDR + - coresight: Fix loss of connection info when a module is unloaded + - mfd: rt5033: Drop rt5033-battery sub-device + - media: venus: helpers: Fix ALIGN() of non power of two + - media: atomisp: gmin_platform: fix out_len in gmin_get_config_dsm_var() + - KVM: s390: fix KVM_S390_GET_CMMA_BITS for GFNs in memslot holes + - usb: dwc3: qcom: Release the correct resources in dwc3_qcom_remove() + - usb: dwc3: qcom: Fix an error handling path in dwc3_qcom_probe() + - usb: common: usb-conn-gpio: Set last role to unknown before initial + detection + - usb: dwc3-meson-g12a: Fix an error handling path in dwc3_meson_g12a_probe() + - mfd: intel-lpss: Add missing check for platform_get_resource + - Revert "usb: common: usb-conn-gpio: Set last role to unknown before initial + detection" + - serial: 8250_omap: Use force_suspend and resume for system suspend + - test_firmware: return ENOMEM instead of ENOSPC on failed memory allocation + - nvmem: rmem: Use NVMEM_DEVID_AUTO + - mfd: stmfx: Fix error path in stmfx_chip_init + - mfd: stmfx: Nullify stmfx->vdd in case of error + - KVM: s390: vsie: fix the length of APCB bitmap + - KVM: s390/diag: fix racy access of physical cpu number in diag 9c handler + - mfd: stmpe: Only disable the regulators if they are enabled + - phy: tegra: xusb: check return value of devm_kzalloc() + - pwm: imx-tpm: force 'real_period' to be zero in suspend + - pwm: sysfs: Do not apply state to already disabled PWMs + - pwm: ab8500: Fix error code in probe() + - pwm: mtk_disp: Fix the disable flow of disp_pwm + - md/raid10: fix the condition to call bio_end_io_acct() + - rtc: st-lpc: Release some resources in st_rtc_probe() in case of error + - drm/i915/psr: Use hw.adjusted mode when calculating io/fast wake times + - media: cec: i2c: ch7322: also select REGMAP + - sctp: fix potential deadlock on &net->sctp.addr_wq_lock + - net/sched: act_ipt: add sanity checks on table name and hook locations + - Add MODULE_FIRMWARE() for FIRMWARE_TG357766. + - ibmvnic: Do not reset dql stats on NON_FATAL err + - net: dsa: vsc73xx: fix MTU configuration + - spi: bcm-qspi: return error if neither hif_mspi nor mspi is available + - mailbox: ti-msgmgr: Fill non-message tx data fields with 0x0 + - f2fs: fix error path handling in truncate_dnode() + - octeontx2-af: Fix mapping for NIX block from CGX connection + - octeontx2-af: Add validation before accessing cgx and lmac + - ntfs: Fix panic about slab-out-of-bounds caused by ntfs_listxattr() + - powerpc: allow PPC_EARLY_DEBUG_CPM only when SERIAL_CPM=y + - net: bridge: keep ports without IFF_UNICAST_FLT in BR_PROMISC mode + - tcp: annotate data races in __tcp_oow_rate_limited() + - xsk: Honor SO_BINDTODEVICE on bind + - net/sched: act_pedit: Add size check for TCA_PEDIT_PARMS_EX + - riscv: move memblock_allow_resize() after linear mapping is ready + - pptp: Fix fib lookup calls. + - net: dsa: tag_sja1105: fix MAC DA patching from meta frames + - octeontx-af: fix hardware timestamp configuration + - s390/qeth: Fix vipa deletion + - sh: dma: Fix DMA channel offset calculation + - apparmor: fix missing error check for rhashtable_insert_fast + - i2c: xiic: Defer xiic_wakeup() and __xiic_start_xfer() in xiic_process() + - i2c: xiic: Don't try to handle more interrupt events after error + - extcon: usbc-tusb320: Convert to i2c's .probe_new() + - btrfs: do not BUG_ON() on tree mod log failure at balance_level() + - i2c: qup: Add missing unwind goto in qup_i2c_probe() + - NFSD: add encoding of op_recall flag for write delegation + - io_uring: wait interruptibly for request completions on exit + - mmc: core: disable TRIM on Kingston EMMC04G-M627 + - mmc: core: disable TRIM on Micron MTFC4GACAJCN-1M + - mmc: mmci: Set PROBE_PREFER_ASYNCHRONOUS + - mmc: sdhci: fix DMA configure compatibility issue when 64bit DMA mode is + used. + - bcache: fixup btree_cache_wait list damage + - bcache: Remove unnecessary NULL point check in node allocations + - bcache: Fix __bch_btree_node_alloc to make the failure behavior consistent + - um: Use HOST_DIR for mrproper + - integrity: Fix possible multiple allocation in integrity_inode_get() + - autofs: use flexible array in ioctl structure + - shmem: use ramfs_kill_sb() for kill_sb method of ramfs-based tmpfs + - ext4: Remove ext4 locking of moved directory + - Revert "f2fs: fix potential corruption when moving a directory" + - fs: Establish locking order for unrelated directories + - fs: Lock moved directories + - ipvs: increase ip_vs_conn_tab_bits range for 64BIT + - jffs2: reduce stack usage in jffs2_build_xattr_subsystem() + - fs: avoid empty option when generating legacy mount string + - btrfs: add handling for RAID1C23/DUP to btrfs_reduce_alloc_profile + - btrfs: delete unused BGs while reclaiming BGs + - btrfs: bail out reclaim process if filesystem is read-only + - btrfs: reinsert BGs failed to reclaim + - btrfs: fix race when deleting quota root from the dirty cow roots list + - btrfs: fix extent buffer leak after tree mod log failure at split_node() + - btrfs: do not BUG_ON() on tree mod log failure at __btrfs_cow_block() + - ASoC: mediatek: mt8173: Fix irq error path + - ASoC: mediatek: mt8173: Fix snd_soc_component_initialize error path + - ARM: dts: qcom: ipq4019: fix broken NAND controller properties override + - ARM: orion5x: fix d2net gpio initialization + - leds: trigger: netdev: Recheck NETDEV_LED_MODE_LINKUP on dev rename + - fs: no need to check source + - ovl: fix null pointer dereference in ovl_get_acl_rcu() + - fanotify: disallow mount/sb marks on kernel internal pseudo fs + - netfilter: conntrack: Avoid nf_ct_helper_hash uses after free + - wireguard: queueing: use saner cpu selection wrapping + - wireguard: netlink: send staged packets when setting initial private key + - tty: serial: fsl_lpuart: add earlycon for imx8ulp platform + - block/partition: fix signedness issue for Amiga partitions + - io_uring: Use io_schedule* in cqring wait + - io_uring: add reschedule point to handle_tw_list() + - net: lan743x: Don't sleep in atomic context + - workqueue: clean up WORK_* constant types, clarify masking + - ksmbd: use ksmbd_req_buf_next() in ksmbd_smb2_check_message() + - ksmbd: validate command payload size + - ksmbd: fix out-of-bound read in smb2_write + - ksmbd: validate session id and tree id in the compound request + - drm/panel: simple: Add connector_type for innolux_at043tn24 + - drm/bridge: ti-sn65dsi86: Fix auxiliary bus lifetime + - drm/panel: simple: Add Powertip PH800480T013 drm_display_mode flags + - igc: Remove delay during TX ring configuration + - net/mlx5e: fix double free in mlx5e_destroy_flow_table + - net/mlx5e: fix memory leak in mlx5e_ptp_open + - net/mlx5e: Check for NOT_READY flag state after locking + - igc: set TP bit in 'supported' and 'advertising' fields of + ethtool_link_ksettings + - igc: Handle PPS start time programming for past time values + - scsi: qla2xxx: Fix error code in qla2x00_start_sp() + - bpf: Fix max stack depth check for async callbacks + - net: mvneta: fix txq_map in case of txq_number==1 + - gve: Set default duplex configuration to full + - ionic: remove WARN_ON to prevent panic_on_warn + - net: bgmac: postpone turning IRQs off to avoid SoC hangs + - net: prevent skb corruption on frag list segmentation + - icmp6: Fix null-ptr-deref of ip6_null_entry->rt6i_idev in icmp6_dev(). + - udp6: fix udp6_ehashfn() typo + - ntb: idt: Fix error handling in idt_pci_driver_init() + - NTB: amd: Fix error handling in amd_ntb_pci_driver_init() + - ntb: intel: Fix error handling in intel_ntb_pci_driver_init() + - NTB: ntb_transport: fix possible memory leak while device_register() fails + - NTB: ntb_tool: Add check for devm_kcalloc + - ipv6/addrconf: fix a potential refcount underflow for idev + - platform/x86: wmi: remove unnecessary argument + - platform/x86: wmi: use guid_t and guid_equal() + - platform/x86: wmi: move variables + - platform/x86: wmi: Break possible infinite loop when parsing GUID + - kernel/trace: Fix cleanup logic of enable_trace_eprobe + - igc: Fix launchtime before start of cycle + - igc: Fix inserting of empty frame for launchtime + - bpf, riscv: Support riscv jit to provide bpf_line_info + - riscv, bpf: Fix inconsistent JIT image generation + - drm/i915: Fix one wrong caching mode enum usage + - octeontx2-pf: Add additional check for MCAM rules + - erofs: avoid infinite loop in z_erofs_do_read_page() when reading beyond EOF + - erofs: decouple basic mount options from fs_context + - erofs: fix fsdax unavailability for chunk-based regular files + - wifi: airo: avoid uninitialized warning in airo_get_rate() + - bpf: cpumap: Fix memory leak in cpu_map_update_elem + - net/sched: flower: Ensure both minimum and maximum ports are specified + - riscv: mm: fix truncation warning on RV32 + - netdevsim: fix uninitialized data in nsim_dev_trap_fa_cookie_write() + - net/sched: make psched_mtu() RTNL-less safe + - nvme-pci: remove nvme_queue from nvme_iod + - nvme-pci: fix DMA direction of unmapping integrity data + - pinctrl: amd: Fix mistake in handling clearing pins at startup + - pinctrl: amd: Detect internal GPIO0 debounce handling + - pinctrl: amd: Detect and mask spurious interrupts + - pinctrl: amd: Only use special debounce behavior for GPIO 0 + - tpm: tpm_vtpm_proxy: fix a race condition in /dev/vtpmx creation + - mtd: rawnand: meson: fix unaligned DMA buffers handling + - net: bcmgenet: Ensure MDIO unregistration has clocks enabled + - mm/damon/ops-common: atomically test and clear young on ptes and pmds + - powerpc: Fail build if using recordmcount with binutils v2.37 + - misc: fastrpc: Create fastrpc scalar with correct buffer count + - powerpc/security: Fix Speculation_Store_Bypass reporting on Power10 + - arm64: errata: Add detection for TRBE overwrite in FILL mode + - erofs: fix compact 4B support for 16k block size + - MIPS: Loongson: Fix cpu_probe_loongson() again + - MIPS: KVM: Fix NULL pointer dereference + - ext4: Fix reusing stale buffer heads from last failed mounting + - ext4: fix wrong unit use in ext4_mb_clear_bb + - ext4: get block from bh in ext4_free_blocks for fast commit replay + - ext4: fix wrong unit use in ext4_mb_new_blocks + - ext4: fix to check return value of freeze_bdev() in ext4_shutdown() + - ext4: turn quotas off if mount failed after enabling quotas + - ext4: only update i_reserved_data_blocks on successful block allocation + - jfs: jfs_dmap: Validate db_l2nbperpage while mounting + - hwrng: imx-rngc - fix the timeout for init and self check + - dm integrity: reduce vmalloc space footprint on 32-bit architectures + - PCI/PM: Avoid putting EloPOS E2/S2/H2 PCIe Ports in D3cold + - PCI: Add function 1 DMA alias quirk for Marvell 88SE9235 + - PCI: qcom: Disable write access to read only registers for IP v2.3.3 + - PCI: rockchip: Assert PCI Configuration Enable bit after probe + - PCI: rockchip: Write PCI Device ID to correct register + - PCI: rockchip: Add poll and timeout to wait for PHY PLLs to be locked + - PCI: rockchip: Fix legacy IRQ generation for RK3399 PCIe endpoint core + - PCI: rockchip: Use u32 variable to access 32-bit registers + - PCI: rockchip: Set address alignment for endpoint mode + - misc: pci_endpoint_test: Free IRQs before removing the device + - misc: pci_endpoint_test: Re-init completion for every test + - mfd: pm8008: Fix module autoloading + - md/raid0: add discard support for the 'original' layout + - dm init: add dm-mod.waitfor to wait for asynchronously probed block devices + - fs: dlm: return positive pid value for F_GETLK + - drm/atomic: Allow vblank-enabled + self-refresh "disable" + - drm/rockchip: vop: Leave vblank enabled in self-refresh + - drm/amdgpu: fix clearing mappings for BOs that are always valid in VM + - drm/amd/display: Correct `DMUB_FW_VERSION` macro + - drm/amdgpu: avoid restore process run into dead loop. + - drm/ttm: Don't leak a resource on swapout move error + - serial: atmel: don't enable IRQs prematurely + - tty: serial: samsung_tty: Fix a memory leak in s3c24xx_serial_getclk() in + case of error + - tty: serial: samsung_tty: Fix a memory leak in s3c24xx_serial_getclk() when + iterating clk + - tty: serial: imx: fix rs485 rx after tx + - firmware: stratix10-svc: Fix a potential resource leak in + svc_create_memory_pool() + - libceph: harden msgr2.1 frame segment length checks + - ceph: don't let check_caps skip sending responses for revoke msgs + - xhci: Fix resume issue of some ZHAOXIN hosts + - xhci: Fix TRB prefetch issue of ZHAOXIN hosts + - xhci: Show ZHAOXIN xHCI root hub speed correctly + - meson saradc: fix clock divider mask length + - opp: Fix use-after-free in lazy_opp_tables after probe deferral + - soundwire: qcom: fix storing port config out-of-bounds + - Revert "8250: add support for ASIX devices with a FIFO bug" + - bus: ixp4xx: fix IXP4XX_EXP_T1_MASK + - s390/decompressor: fix misaligned symbol build error + - tracing/histograms: Add histograms to hist_vars if they have referenced + variables + - tracing: Fix memory leak of iter->temp when reading trace_pipe + - samples: ftrace: Save required argument registers in sample trampolines + - net: ena: fix shift-out-of-bounds in exponential backoff + - ring-buffer: Fix deadloop issue on reading trace_pipe + - ftrace: Fix possible warning on checking all pages used in + ftrace_process_locs() + - xtensa: ISS: fix call to split_if_spec + - tracing: Fix null pointer dereference in tracing_err_log_open() + - selftests: mptcp: sockopt: return error if wrong mark + - selftests: mptcp: depend on SYN_COOKIES + - tracing/probes: Fix not to count error code to total length + - tracing/probes: Fix to update dynamic data counter if fetcharg uses it + - scsi: qla2xxx: Wait for io return on terminate rport + - scsi: qla2xxx: Array index may go out of bound + - scsi: qla2xxx: Avoid fcport pointer dereference + - scsi: qla2xxx: Fix buffer overrun + - scsi: qla2xxx: Fix potential NULL pointer dereference + - scsi: qla2xxx: Check valid rport returned by fc_bsg_to_rport() + - scsi: qla2xxx: Correct the index of array + - scsi: qla2xxx: Pointer may be dereferenced + - scsi: qla2xxx: Remove unused nvme_ls_waitq wait queue + - MIPS: kvm: Fix build error with KVM_MIPS_DEBUG_COP0_COUNTERS enabled + - net/sched: sch_qfq: reintroduce lmax bound check for MTU + - drm/atomic: Fix potential use-after-free in nonblocking commits + - Linux 5.15.121 + * Jammy update: v5.15.120 upstream stable release (LP: #2032688) + - mptcp: fix possible divide by zero in recvmsg() + - mptcp: consolidate fallback and non fallback state machine + - mm, hwpoison: try to recover from copy-on write faults + - mm, hwpoison: when copy-on-write hits poison, take page offline + - drm/amdgpu: Set vmbo destroy after pt bo is created + - x86/microcode/AMD: Load late on both threads too + - x86/smp: Use dedicated cache-line for mwait_play_dead() + - can: isotp: isotp_sendmsg(): fix return error fix on TX path + - bpf: ensure main program has an extable + - HID: wacom: Use ktime_t rather than int when dealing with timestamps + - HID: logitech-hidpp: add HIDPP_QUIRK_DELAYED_INIT for the T651. + - Revert "thermal/drivers/mediatek: Use devm_of_iomap to avoid resource leak + in mtk_thermal_probe" + - perf symbols: Symbol lookup with kcore can fail if multiple segments match + stext + - scripts/tags.sh: Resolve gtags empty index generation + - drm/amdgpu: Validate VM ioctl flags. + - parisc: Delete redundant register definitions in + - nubus: Partially revert proc_create_single_data() conversion + - Linux 5.15.120 + * Jammy update: v5.15.119 upstream stable release (LP: #2032683) + - drm/amd/display: fix the system hang while disable PSR + - tracing: Add tracing_reset_all_online_cpus_unlocked() function + - tpm, tpm_tis: Claim locality in interrupt handler + - drm/amd/display: Add minimal pipe split transition state + - drm/amd/display: Use dc_update_planes_and_stream + - drm/amd/display: Add wrapper to call planes and stream update + - tick/common: Align tick period during sched_timer setup + - selftests: mptcp: lib: skip if missing symbol + - selftests: mptcp: lib: skip if not below kernel version + - selftests/mount_setattr: fix redefine struct mount_attr build error + - selftests: mptcp: pm nl: remove hardcoded default limits + - selftests: mptcp: join: use 'iptables-legacy' if available + - selftests: mptcp: join: skip check if MIB counter not supported + - nilfs2: fix buffer corruption due to concurrent device reads + - ACPI: sleep: Avoid breaking S3 wakeup due to might_sleep() + - KVM: Avoid illegal stage2 mapping on invalid memory slot + - Drivers: hv: vmbus: Call hv_synic_free() if hv_synic_alloc() fails + - Drivers: hv: vmbus: Fix vmbus_wait_for_unload() to scan present CPUs + - PCI: hv: Fix a race condition bug in hv_pci_query_relations() + - Revert "PCI: hv: Fix a timing issue which causes kdump to fail occasionally" + - PCI: hv: Remove the useless hv_pcichild_state from struct hv_pci_dev + - PCI: hv: Fix a race condition in hv_irq_unmask() that can cause panic + - PCI: hv: Add a per-bus mutex state_lock + - cgroup: Do not corrupt task iteration when rebinding subsystem + - mmc: sdhci-msm: Disable broken 64-bit DMA on MSM8916 + - mmc: meson-gx: remove redundant mmc_request_done() call from irq context + - mmc: mmci: stm32: fix max busy timeout calculation + - ip_tunnels: allow VXLAN/GENEVE to inherit TOS/TTL from VLAN + - regulator: pca9450: Fix LDO3OUT and LDO4OUT MASK + - regmap: spi-avmm: Fix regmap_bus max_raw_write + - writeback: fix dereferencing NULL mapping->host on writeback_page_template + - io_uring/net: save msghdr->msg_control for retries + - io_uring/net: clear msg_controllen on partial sendmsg retry + - io_uring/net: disable partial retries for recvmsg with cmsg + - nilfs2: prevent general protection fault in nilfs_clear_dirty_page() + - x86/mm: Avoid using set_pgd() outside of real PGD pages + - memfd: check for non-NULL file_seals in memfd_create() syscall + - mmc: meson-gx: fix deferred probing + - ieee802154: hwsim: Fix possible memory leaks + - xfrm: Treat already-verified secpath entries as optional + - xfrm: interface: rename xfrm_interface.c to xfrm_interface_core.c + - xfrm: Ensure policies always checked on XFRM-I input path + - bpf: track immediate values written to stack by BPF_ST instruction + - bpf: Fix verifier id tracking of scalars on spill + - xfrm: fix inbound ipv4/udp/esp packets to UDPv6 dualstack sockets + - selftests: net: fcnal-test: check if FIPS mode is enabled + - xfrm: Linearize the skb after offloading if needed. + - net: qca_spi: Avoid high load if QCA7000 is not available + - mmc: mtk-sd: fix deferred probing + - mmc: mvsdio: fix deferred probing + - mmc: omap: fix deferred probing + - mmc: omap_hsmmc: fix deferred probing + - mmc: owl: fix deferred probing + - mmc: sdhci-acpi: fix deferred probing + - mmc: sh_mmcif: fix deferred probing + - mmc: usdhi60rol0: fix deferred probing + - ipvs: align inner_mac_header for encapsulation + - net: dsa: mt7530: fix trapping frames on non-MT7621 SoC MT7530 switch + - net: dsa: mt7530: fix handling of BPDUs on MT7530 switch + - be2net: Extend xmit workaround to BE3 chip + - netfilter: nft_set_pipapo: .walk does not deal with generations + - netfilter: nf_tables: disallow element updates of bound anonymous sets + - netfilter: nf_tables: reject unbound anonymous set before commit phase + - netfilter: nf_tables: reject unbound chain set before commit phase + - netfilter: nf_tables: disallow updates of anonymous sets + - netfilter: nfnetlink_osf: fix module autoload + - Revert "net: phy: dp83867: perform soft reset and retain established link" + - bpf/btf: Accept function names that contain dots + - selftests: forwarding: Fix race condition in mirror installation + - sch_netem: acquire qdisc lock in netem_change() + - gpio: Allow per-parent interrupt data + - gpiolib: Fix GPIO chip IRQ initialization restriction + - gpio: sifive: add missing check for platform_get_irq + - scsi: target: iscsi: Prevent login threads from racing between each other + - HID: wacom: Add error check to wacom_parse_and_register() + - arm64: Add missing Set/Way CMO encodings + - media: cec: core: don't set last_initiator if tx in progress + - nfcsim.c: Fix error checking for debugfs_create_dir + - usb: gadget: udc: fix NULL dereference in remove() + - nvme: double KA polling frequency to avoid KATO with TBKAS on + - Input: soc_button_array - add invalid acpi_index DMI quirk handling + - s390/cio: unregister device when the only path is gone + - spi: lpspi: disable lpspi module irq in DMA mode + - ASoC: simple-card: Add missing of_node_put() in case of error + - soundwire: dmi-quirks: add new mapping for HP Spectre x360 + - ASoC: nau8824: Add quirk to active-high jack-detect + - s390/purgatory: disable branch profiling + - ARM: dts: Fix erroneous ADS touchscreen polarities + - drm/exynos: vidi: fix a wrong error return + - drm/exynos: fix race condition UAF in exynos_g2d_exec_ioctl + - drm/radeon: fix race condition UAF in radeon_gem_set_domain_ioctl + - vhost_net: revert upend_idx only on retriable error + - x86/apic: Fix kernel panic when booting with intremap=off and x2apic_phys + - i2c: imx-lpi2c: fix type char overflow issue when calculating the clock + cycle + - act_mirred: remove unneded merge conflict markers + - Linux 5.15.119 + * Jammy update: v5.15.118 upstream stable release (LP: #2030239) + - test_firmware: Use kstrtobool() instead of strtobool() + - test_firmware: prevent race conditions by a correct implementation of + locking + - test_firmware: fix a memory leak with reqs buffer + - ksmbd: fix slab-out-of-bounds read in smb2_handle_negotiate + - drm/amdgpu: fix Null pointer dereference error in amdgpu_device_recover_vram + - of: overlay: rename variables to be consistent + - of: overlay: rework overlay apply and remove kfree()s + - of: overlay: Fix missing of_node_put() in error case of + init_overlay_changeset() + - power: supply: ab8500: Fix external_power_changed race + - power: supply: sc27xx: Fix external_power_changed race + - power: supply: bq27xxx: Use mod_delayed_work() instead of cancel() + + schedule() + - ARM: dts: vexpress: add missing cache properties + - tools: gpio: fix debounce_period_us output of lsgpio + - power: supply: Ratelimit no data debug output + - platform/x86: asus-wmi: Ignore WMI events with codes 0x7B, 0xC0 + - regulator: Fix error checking for debugfs_create_dir + - irqchip/gic-v3: Disable pseudo NMIs on Mediatek devices w/ firmware issues + - power: supply: Fix logic checking if system is running from battery + - btrfs: scrub: try harder to mark RAID56 block groups read-only + - btrfs: handle memory allocation failure in btrfs_csum_one_bio + - ASoC: soc-pcm: test if a BE can be prepared + - parisc: Improve cache flushing for PCXL in arch_sync_dma_for_cpu() + - parisc: Flush gatt writes and adjust gatt mask in parisc_agp_mask_memory() + - MIPS: unhide PATA_PLATFORM + - MIPS: Alchemy: fix dbdma2 + - mips: Move initrd_start check after initrd address sanitisation. + - ASoC: dwc: move DMA init to snd_soc_dai_driver probe() + - xen/blkfront: Only check REQ_FUA for writes + - drm:amd:amdgpu: Fix missing buffer object unlock in failure path + - NVMe: Add MAXIO 1602 to bogus nid list. + - irqchip/gic: Correctly validate OF quirk descriptors + - wifi: cfg80211: fix locking in regulatory disconnect + - wifi: cfg80211: fix double lock bug in reg_wdev_chan_valid() + - epoll: ep_autoremove_wake_function should use list_del_init_careful + - ocfs2: fix use-after-free when unmounting read-only filesystem + - ocfs2: check new file size on fallocate call + - nios2: dts: Fix tse_mac "max-frame-size" property + - nilfs2: fix incomplete buffer cleanup in nilfs_btnode_abort_change_key() + - nilfs2: fix possible out-of-bounds segment allocation in resize ioctl + - kexec: support purgatories with .text.hot sections + - x86/purgatory: remove PGO flags + - powerpc/purgatory: remove PGO flags + - ALSA: usb-audio: Add quirk flag for HEM devices to enable native DSD + playback + - dm thin metadata: check fail_io before using data_sm + - nouveau: fix client work fence deletion race + - RDMA/uverbs: Restrict usage of privileged QKEYs + - net: usb: qmi_wwan: add support for Compal RXM-G1 + - drm/amdgpu: add missing radeon secondary PCI ID + - ALSA: hda/realtek: Add a quirk for Compaq N14JP6 + - Remove DECnet support from kernel + - [Config] updateconfigs for DECNET + - thunderbolt: dma_test: Use correct value for absent rings when creating + paths + - thunderbolt: Mask ring interrupt on Intel hardware as well + - USB: serial: option: add Quectel EM061KGL series + - serial: lantiq: add missing interrupt ack + - usb: dwc3: gadget: Reset num TRBs before giving back the request + - RDMA/rtrs: Fix the last iu->buf leak in err path + - RDMA/rtrs: Fix rxe_dealloc_pd warning + - RDMA/rxe: Fix packet length checks + - spi: fsl-dspi: avoid SCK glitches with continuous transfers + - netfilter: nf_tables: integrate pipapo into commit protocol + - netfilter: nfnetlink: skip error delivery on batch in case of ENOMEM + - net: enetc: correct the indexes of highest and 2nd highest TCs + - ping6: Fix send to link-local addresses with VRF. + - net/sched: simplify tcf_pedit_act + - net/sched: act_pedit: remove extra check for key type + - net/sched: act_pedit: Parse L3 Header for L4 offset + - RDMA/rxe: Remove the unused variable obj + - RDMA/rxe: Removed unused name from rxe_task struct + - RDMA/rxe: Fix the use-before-initialization error of resp_pkts + - iavf: remove mask from iavf_irq_enable_queues() + - octeontx2-af: fixed resource availability check + - octeontx2-af: fix lbk link credits on cn10k + - RDMA/mlx5: Initiate dropless RQ for RAW Ethernet functions + - RDMA/cma: Always set static rate to 0 for RoCE + - IB/uverbs: Fix to consider event queue closing also upon non-blocking mode + - IB/isert: Fix dead lock in ib_isert + - IB/isert: Fix possible list corruption in CMA handler + - IB/isert: Fix incorrect release of isert connection + - net: ethtool: correct MAX attribute value for stats + - ipvlan: fix bound dev checking for IPv6 l3s mode + - sctp: fix an error code in sctp_sf_eat_auth() + - igc: Clean the TX buffer and TX descriptor ring + - igb: fix nvm.ops.read() error handling + - drm/nouveau: don't detect DSM for non-NVIDIA device + - drm/nouveau/dp: check for NULL nv_connector->native_mode + - drm/nouveau: add nv_encoder pointer check for NULL + - cifs: fix lease break oops in xfstest generic/098 + - ext4: drop the call to ext4_error() from ext4_get_group_info() + - net/sched: cls_api: Fix lockup on flushing explicitly created chain + - net: lapbether: only support ethernet devices + - dm: don't lock fs when the map is NULL during suspend or resume + - net: tipc: resize nlattr array to correct size + - selftests/ptp: Fix timestamp printf format for PTP_SYS_OFFSET + - afs: Fix vlserver probe RTT handling + - cgroup: always put cset in cgroup_css_set_put_fork + - rcu/kvfree: Avoid freeing new kfree_rcu() memory after old grace period + - neighbour: Remove unused inline function neigh_key_eq16() + - net: Remove unused inline function dst_hold_and_use() + - net: Remove DECnet leftovers from flow.h. + - neighbour: delete neigh_lookup_nodev as not used + - of: overlay: add entry to of_overlay_action_name[] + - mmc: block: ensure error propagation for non-blk + - nilfs2: reject devices with insufficient block count + - Linux 5.15.118 + * Jammy update: v5.15.117 upstream stable release (LP: #2030107) + - ata: ahci: fix enum constants for gcc-13 + - gcc-plugins: Reorganize gimple includes for GCC 13 + - remove the sx8 block driver + - [Config] updateconfigs for BLK_DEV_SX8 + - sfc (gcc13): synchronize ef100_enqueue_skb()'s return type + - i40e: Remove string printing for i40e_status + - i40e: use int for i40e_status + - i40e: fix build warning in ice_fltr_add_mac_to_list() + - bonding (gcc13): synchronize bond_{a,t}lb_xmit() types + - f2fs: fix iostat lock protection + - blk-iocost: avoid 64-bit division in ioc_timer_fn + - platform/surface: aggregator: Allow completion work-items to be executed in + parallel + - spi: qup: Request DMA before enabling clocks + - afs: Fix setting of mtime when creating a file/dir/symlink + - wifi: mt76: mt7615: fix possible race in mt7615_mac_sta_poll + - neighbour: fix unaligned access to pneigh_entry + - net: dsa: lan9303: allow vid != 0 in port_fdb_{add|del} methods + - bpf: Fix UAF in task local storage + - net/ipv6: fix bool/int mismatch for skip_notify_on_dev_down + - net/smc: Avoid to access invalid RMBs' MRs in SMCRv1 ADD LINK CONT + - net: enetc: correct the statistics of rx bytes + - net/sched: fq_pie: ensure reasonable TCA_FQ_PIE_QUANTUM values + - drm/i915: Explain the magic numbers for AUX SYNC/precharge length + - drm/i915: Use 18 fast wake AUX sync len + - Bluetooth: Fix l2cap_disconnect_req deadlock + - Bluetooth: L2CAP: Add missing checks for invalid DCID + - qed/qede: Fix scheduling while atomic + - wifi: cfg80211: fix locking in sched scan stop work + - selftests/bpf: Verify optval=NULL case + - selftests/bpf: Fix sockopt_sk selftest + - netfilter: conntrack: fix NULL pointer dereference in nf_confirm_cthelper + - netfilter: ipset: Add schedule point in call_ad(). + - ipv6: rpl: Fix Route of Death. + - rfs: annotate lockless accesses to sk->sk_rxhash + - rfs: annotate lockless accesses to RFS sock flow table + - drm/i915/selftests: Increase timeout for live_parallel_switch + - drm/i915/selftests: Stop using kthread_stop() + - drm/i915/selftests: Add some missing error propagation + - net: sched: move rtm_tca_policy declaration to include file + - net: sched: act_police: fix sparse errors in tcf_police_dump() + - net: sched: fix possible refcount leak in tc_chain_tmplt_add() + - bpf: Add extra path pointer check to d_path helper + - lib: cpu_rmap: Fix potential use-after-free in irq_cpu_rmap_release() + - bnxt_en: Don't issue AP reset during ethtool's reset operation + - bnxt_en: Query default VLAN before VNIC setup on a VF + - bnxt_en: Implement .set_port / .unset_port UDP tunnel callbacks + - batman-adv: Broken sync while rescheduling delayed work + - Input: xpad - delete a Razer DeathAdder mouse VID/PID entry + - Input: psmouse - fix OOB access in Elantech protocol + - Input: fix open count when closing inhibited device + - ALSA: hda/realtek: Add quirk for Clevo NS50AU + - ALSA: hda/realtek: Add a quirk for HP Slim Desktop S01 + - drm/i915/gt: Use the correct error value when kernel_context() fails + - drm/amd/pm: conditionally disable pcie lane switching for some + sienna_cichlid SKUs + - drm/amdgpu: fix xclk freq on CHIP_STONEY + - drm/amd/pm: Fix power context allocation in SMU13 + - can: j1939: j1939_sk_send_loop_abort(): improved error queue handling in + J1939 Socket + - can: j1939: change j1939_netdev_lock type to mutex + - can: j1939: avoid possible use-after-free when j1939_can_rx_register fails + - ceph: fix use-after-free bug for inodes when flushing capsnaps + - s390/dasd: Use correct lock while counting channel queue length + - Bluetooth: Fix use-after-free in hci_remove_ltk/hci_remove_irk + - Bluetooth: hci_qca: fix debugfs registration + - tee: amdtee: Add return_origin to 'struct tee_cmd_load_ta' + - rbd: move RBD_OBJ_FLAG_COPYUP_ENABLED flag setting + - rbd: get snapshot context after exclusive lock is ensured to be held + - pinctrl: meson-axg: add missing GPIOA_18 gpio group + - usb: usbfs: Enforce page requirements for mmap + - usb: usbfs: Use consistent mmap functions + - ARM: dts: at91: sama7g5ek: fix debounce delay property for shdwc + - ASoC: codecs: wsa881x: do not set can_multi_write flag + - arm64: dts: qcom: sc7180-lite: Fix SDRAM freq for misidentified sc7180-lite + boards + - arm64: dts: imx8qm-mek: correct GPIOs for USDHC2 CD and WP signals + - arm64: dts: imx8-ss-dma: assign default clock rate for lpuarts + - ASoC: mediatek: mt8195-afe-pcm: Convert to platform remove callback + returning void + - ASoC: mediatek: mt8195: fix use-after-free in driver remove path + - arm64: dts: imx8mn-beacon: Fix SPI CS pinmux + - i2c: mv64xxx: Fix reading invalid status value in atomic mode + - firmware: arm_ffa: Set handle field to zero in memory descriptor + - i2c: sprd: Delete i2c adapter in .remove's error path + - eeprom: at24: also select REGMAP + - riscv: fix kprobe __user string arg print fault issue + - vduse: avoid empty string for dev name + - vhost: support PACKED when setting-getting vring_base + - vhost_vdpa: support PACKED when setting-getting vring_base + - ext4: only check dquot_initialize_needed() when debugging + - Linux 5.15.117 + * CVE-2023-4273 + - exfat: check if filename entries exceeds max filename length + * CVE-2023-4128 + - net/sched: cls_u32: No longer copy tcf_result on update to avoid use-after- + free + - net/sched: cls_fw: No longer copy tcf_result on update to avoid use-after- + free + - net/sched: cls_route: No longer copy tcf_result on update to avoid use- + after-free + * CVE-2023-3863 + - nfc: llcp: simplify llcp_sock_connect() error paths + - net: nfc: Fix use-after-free caused by nfc_llcp_find_local + + -- Tim Gardner Mon, 11 Sep 2023 10:41:28 -0600 + +linux-azure (5.15.0-1047.54) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1047.54 -proposed tracker (LP: #2034166) + + [ Ubuntu: 5.15.0-84.93 ] + + * jammy/linux: 5.15.0-84.93 -proposed tracker (LP: #2034202) + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + * CVE-2023-4569 + - netfilter: nf_tables: deactivate catchall elements in next generation + * CVE-2023-40283 + - Bluetooth: L2CAP: Fix use-after-free in l2cap_sock_ready_cb + * CVE-2023-20588 + - x86/bugs: Increase the x86 bugs vector size to two u32s + - x86/CPU/AMD: Do not leak quotient data after a division by 0 + - x86/CPU/AMD: Fix the DIV(0) initial fix attempt + * CVE-2023-4128 + - net/sched: cls_u32: No longer copy tcf_result on update to avoid use-after- + free + - net/sched: cls_fw: No longer copy tcf_result on update to avoid use-after- + free + - net/sched: cls_route: No longer copy tcf_result on update to avoid use- + after-free + + -- Tim Gardner Wed, 06 Sep 2023 09:44:53 -0600 + +linux-azure (5.15.0-1046.53) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1046.53 -proposed tracker (LP: #2030387) + + * cifs: fix mid leak during reconnection after timeout threshold + (LP: #2029138) + - SAUCE: Fix cifs: fix mid leak during reconnection after timeout threshold + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2023.08.07) + + [ Ubuntu: 5.15.0-83.92 ] + + * jammy/linux: 5.15.0-83.92 -proposed tracker (LP: #2031132) + * libgnutls report "trap invalid opcode" when trying to install packages over + https (LP: #2031093) + - [Config]: disable CONFIG_GDS_FORCE_MITIGATION + + [ Ubuntu: 5.15.0-81.90 ] + + * jammy/linux: 5.15.0-81.90 -proposed tracker (LP: #2030422) + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + - [Packaging] resync getabis + - debian/dkms-versions -- update from kernel-versions (main/2023.08.07) + * CVE-2022-40982 + - x86/mm: Initialize text poking earlier + - x86/mm: fix poking_init() for Xen PV guests + - x86/mm: Use mm_alloc() in poking_init() + - mm: Move mm_cachep initialization to mm_init() + - init: Provide arch_cpu_finalize_init() + - x86/cpu: Switch to arch_cpu_finalize_init() + - ARM: cpu: Switch to arch_cpu_finalize_init() + - sparc/cpu: Switch to arch_cpu_finalize_init() + - um/cpu: Switch to arch_cpu_finalize_init() + - init: Remove check_bugs() leftovers + - init: Invoke arch_cpu_finalize_init() earlier + - init, x86: Move mem_encrypt_init() into arch_cpu_finalize_init() + - x86/init: Initialize signal frame size late + - x86/fpu: Remove cpuinfo argument from init functions + - x86/fpu: Mark init functions __init + - x86/fpu: Move FPU initialization into arch_cpu_finalize_init() + - x86/xen: Fix secondary processors' FPU initialization + - x86/speculation: Add Gather Data Sampling mitigation + - x86/speculation: Add force option to GDS mitigation + - x86/speculation: Add Kconfig option for GDS + - KVM: Add GDS_NO support to KVM + - Documentation/x86: Fix backwards on/off logic about YMM support + - [Config]: Enable CONFIG_ARCH_HAS_CPU_FINALIZE_INIT and + CONFIG_GDS_FORCE_MITIGATION + * CVE-2023-3609 + - net/sched: cls_u32: Fix reference counter leak leading to overflow + * CVE-2023-21400 + - io_uring: ensure IOPOLL locks around deferred work + * CVE-2023-4015 + - netfilter: nf_tables: add NFT_TRANS_PREPARE_ERROR to deal with bound + set/chain + - netfilter: nf_tables: unbind non-anonymous set if rule construction fails + - netfilter: nf_tables: skip immediate deactivate in _PREPARE_ERROR + * CVE-2023-3995 + - netfilter: nf_tables: disallow rule addition to bound chain via + NFTA_RULE_CHAIN_ID + * CVE-2023-3777 + - netfilter: nf_tables: skip bound chain on rule flush + * losetup with mknod fails on jammy with kernel 5.15.0-69-generic + (LP: #2015400) + - loop: do not enforce max_loop hard limit by (new) default + * Include the MAC address pass through function on RTL8153DD-CG (LP: #2020295) + - r8152: add USB device driver for config selection + * Jammy update: v5.15.116 upstream stable release (LP: #2029401) + - RDMA/bnxt_re: Fix the page_size used during the MR creation + - RDMA/efa: Fix unsupported page sizes in device + - RDMA/hns: Fix base address table allocation + - RDMA/hns: Modify the value of long message loopback slice + - dmaengine: at_xdmac: Move the free desc to the tail of the desc list + - dmaengine: at_xdmac: fix potential Oops in at_xdmac_prep_interleaved() + - RDMA/bnxt_re: Fix a possible memory leak + - RDMA/bnxt_re: Fix return value of bnxt_re_process_raw_qp_pkt_rx + - iommu/rockchip: Fix unwind goto issue + - iommu/amd: Don't block updates to GATag if guest mode is on + - dmaengine: pl330: rename _start to prevent build error + - riscv: Fix unused variable warning when BUILTIN_DTB is set + - net/mlx5: fw_tracer, Fix event handling + - net/mlx5e: Don't attach netdev profile while handling internal error + - net: mellanox: mlxbf_gige: Fix skb_panic splat under memory pressure + - netrom: fix info-leak in nr_write_internal() + - af_packet: Fix data-races of pkt_sk(sk)->num. + - amd-xgbe: fix the false linkup in xgbe_phy_status + - mtd: rawnand: ingenic: fix empty stub helper definitions + - RDMA/irdma: Add SW mechanism to generate completions on error + - RDMA/irdma: Prevent QP use after free + - RDMA/irdma: Fix Local Invalidate fencing + - af_packet: do not use READ_ONCE() in packet_bind() + - tcp: deny tcp_disconnect() when threads are waiting + - tcp: Return user_mss for TCP_MAXSEG in CLOSE/LISTEN state if user_mss set + - net/sched: sch_ingress: Only create under TC_H_INGRESS + - net/sched: sch_clsact: Only create under TC_H_CLSACT + - net/sched: Reserve TC_H_INGRESS (TC_H_CLSACT) for ingress (clsact) Qdiscs + - net/sched: Prohibit regrafting ingress or clsact Qdiscs + - net: sched: fix NULL pointer dereference in mq_attach + - net/netlink: fix NETLINK_LIST_MEMBERSHIPS length report + - udp6: Fix race condition in udp6_sendmsg & connect + - net/mlx5e: Fix error handling in mlx5e_refresh_tirs + - net/mlx5: Read embedded cpu after init bit cleared + - net: dsa: mv88e6xxx: Increase wait after reset deactivation + - mtd: rawnand: marvell: ensure timing values are written + - mtd: rawnand: marvell: don't set the NAND frequency select + - rtnetlink: call validate_linkmsg in rtnl_create_link + - drm/amdgpu: release gpu full access after "amdgpu_device_ip_late_init" + - watchdog: menz069_wdt: fix watchdog initialisation + - ALSA: hda: Glenfly: add HD Audio PCI IDs and HDMI Codec Vendor IDs. + - drm/amdgpu: Use the default reset when loading or reloading the driver + - mailbox: mailbox-test: Fix potential double-free in + mbox_test_message_write() + - drm/ast: Fix ARM compatibility + - btrfs: abort transaction when sibling keys check fails for leaves + - ARM: 9295/1: unwind:fix unwind abort for uleb128 case + - media: rcar-vin: Select correct interrupt mode for V4L2_FIELD_ALTERNATE + - platform/x86: intel_scu_pcidrv: Add back PCI ID for Medfield + - gfs2: Don't deref jdesc in evict + - fbdev: imsttfb: Fix use after free bug in imsttfb_probe + - fbdev: modedb: Add 1920x1080 at 60 Hz video mode + - fbdev: stifb: Fix info entry in sti_struct on error path + - nbd: Fix debugfs_create_dir error checking + - block/rnbd: replace REQ_OP_FLUSH with REQ_OP_WRITE + - nvme-pci: add NVME_QUIRK_BOGUS_NID for HS-SSD-FUTURE 2048G + - nvme-pci: add quirk for missing secondary temperature thresholds + - ASoC: dwc: limit the number of overrun messages + - um: harddog: fix modular build + - xfrm: Check if_id in inbound policy/secpath match + - ASoC: dt-bindings: Adjust #sound-dai-cells on TI's single-DAI codecs + - ASoC: ssm2602: Add workaround for playback distortions + - media: dvb_demux: fix a bug for the continuity counter + - media: dvb-usb: az6027: fix three null-ptr-deref in az6027_i2c_xfer() + - media: dvb-usb-v2: ec168: fix null-ptr-deref in ec168_i2c_xfer() + - media: dvb-usb-v2: ce6230: fix null-ptr-deref in ce6230_i2c_master_xfer() + - media: dvb-usb-v2: rtl28xxu: fix null-ptr-deref in rtl28xxu_i2c_xfer + - media: dvb-usb: digitv: fix null-ptr-deref in digitv_i2c_xfer() + - media: dvb-usb: dw2102: fix uninit-value in su3000_read_mac_address + - media: netup_unidvb: fix irq init by register it at the end of probe + - media: dvb_ca_en50221: fix a size write bug + - media: ttusb-dec: fix memory leak in ttusb_dec_exit_dvb() + - media: mn88443x: fix !CONFIG_OF error by drop of_match_ptr from ID table + - media: dvb-core: Fix use-after-free due on race condition at dvb_net + - media: dvb-core: Fix use-after-free due to race at dvb_register_device() + - media: dvb-core: Fix use-after-free due to race condition at dvb_ca_en50221 + - s390/pkey: zeroize key blobs + - s390/topology: honour nr_cpu_ids when adding CPUs + - ACPI: resource: Add IRQ override quirk for LG UltraPC 17U70P + - wifi: rtl8xxxu: fix authentication timeout due to incorrect RCR value + - ARM: dts: stm32: add pin map for CAN controller on stm32f7 + - arm64/mm: mark private VM_FAULT_X defines as vm_fault_t + - arm64: vdso: Pass (void *) to virt_to_page() + - wifi: mac80211: simplify chanctx allocation + - scsi: core: Decrease scsi_device's iorequest_cnt if dispatch failed + - wifi: b43: fix incorrect __packed annotation + - netfilter: conntrack: define variables exp_nat_nla_policy and any_addr with + CONFIG_NF_NAT + - nvme-multipath: don't call blk_mark_disk_dead in nvme_mpath_remove_disk + - ALSA: oss: avoid missing-prototype warnings + - drm/msm: Be more shouty if per-process pgtables aren't working + - atm: hide unused procfs functions + - drm/amdgpu: skip disabling fence driver src_irqs when device is unplugged + - nvme-pci: Add quirk for Teamgroup MP33 SSD + - mailbox: mailbox-test: fix a locking issue in mbox_test_message_write() + - media: uvcvideo: Don't expose unsupported formats to userspace + - iio: accel: st_accel: Fix invalid mount_matrix on devices without ACPI _ONT + method + - iio: adc: mxs-lradc: fix the order of two cleanup operations + - HID: google: add jewel USB id + - HID: wacom: avoid integer overflow in wacom_intuos_inout() + - iio: imu: inv_icm42600: fix timestamp reset + - dt-bindings: iio: adc: renesas,rcar-gyroadc: Fix adi,ad7476 compatible value + - iio: light: vcnl4035: fixed chip ID check + - iio: adc: ad_sigma_delta: Fix IRQ issue by setting IRQ_DISABLE_UNLAZY flag + - iio: dac: mcp4725: Fix i2c_master_send() return value handling + - iio: adc: ad7192: Change "shorted" channels to differential + - iio: dac: build ad5758 driver when AD5758 is selected + - net: usb: qmi_wwan: Set DTR quirk for BroadMobi BM818 + - dt-bindings: usb: snps,dwc3: Fix "snps,hsphy_interface" type + - usb: gadget: f_fs: Add unbind event before functionfs_unbind + - md/raid5: fix miscalculation of 'end_sector' in raid5_read_one_chunk() + - misc: fastrpc: return -EPIPE to invocations on device removal + - misc: fastrpc: reject new invocations during device removal + - scsi: stex: Fix gcc 13 warnings + - ata: libata-scsi: Use correct device no in ata_find_dev() + - drm/amd/pm: reverse mclk and fclk clocks levels for vangogh + - drm/amd/pm: reverse mclk and fclk clocks levels for yellow carp + - drm/amd/pm: reverse mclk and fclk clocks levels for renoir + - x86/boot: Wrap literal addresses in absolute_pointer() + - ath6kl: Use struct_group() to avoid size-mismatched casting + - block/blk-iocost (gcc13): keep large values in a new enum + - mmc: vub300: fix invalid response handling + - mmc: pwrseq: sd8787: Fix WILC CHIP_EN and RESETN toggling order + - tty: serial: fsl_lpuart: use UARTCTRL_TXINV to send break instead of + UARTCTRL_SBK + - btrfs: fix csum_tree_block page iteration to avoid tripping on + -Werror=array-bounds + - powerpc/iommu: Limit number of TCEs to 512 for H_STUFF_TCE hcall + - iommu/amd: Fix domain flush size when syncing iotlb + - usb: cdns3: allocate TX FIFO size according to composite EP number + - usb: cdns3: fix NCM gadget RX speed 20x slow than expection at iMX8QM + - block: fix revalidate performance regression + - selinux: don't use make's grouped targets feature yet + - tracing/probe: trace_probe_primary_from_call(): checked list_first_entry + - selftests: mptcp: connect: skip if MPTCP is not supported + - selftests: mptcp: pm nl: skip if MPTCP is not supported + - selftests: mptcp: sockopt: skip if MPTCP is not supported + - ext4: add EA_INODE checking to ext4_iget() + - ext4: set lockdep subclass for the ea_inode in ext4_xattr_inode_cache_find() + - ext4: disallow ea_inodes with extended attributes + - ext4: add lockdep annotations for i_data_sem for ea_inode's + - fbcon: Fix null-ptr-deref in soft_cursor + - serial: 8250_tegra: Fix an error handling path in tegra_uart_probe() + - test_firmware: fix the memory leak of the allocated firmware buffer + - KVM: x86: Account fastpath-only VM-Exits in vCPU stats + - ksmbd: fix credit count leakage + - ksmbd: fix incorrect AllocationSize set in smb2_get_info + - KEYS: asymmetric: Copy sig and digest in public_key_verify_signature() + - regmap: Account for register length when chunking + - tpm, tpm_tis: Request threaded interrupt handler + - drm/rcar: stop using 'imply' for dependencies + - [Config] updateconfigs for DRM_RCAR_LVDS + - scsi: dpt_i2o: Remove broken pass-through ioctl (I2OUSERCMD) + - scsi: dpt_i2o: Do not process completions with invalid addresses + - [Config] updateconfigs for SCSI_DPT_I2O + - drm/amdgpu/gfx10: Disable gfxoff before disabling powergating. + - selftests: mptcp: diag: skip if MPTCP is not supported + - selftests: mptcp: simult flows: skip if MPTCP is not supported + - selftests: mptcp: join: skip if MPTCP is not supported + - ext4: enable the lazy init thread when remounting read/write + - ARM: defconfig: drop CONFIG_DRM_RCAR_LVDS + - RDMA/irdma: Fix drain SQ hang with no completion + - RDMA/irdma: Do not generate SW completions for NOPs + - Linux 5.15.116 + * CVE-2023-20593 + - x86/cpu/amd: Move the errata checking functionality up + - x86/cpu/amd: Add a Zenbleed fix + * CVE-2023-4004 + - netfilter: nft_set_pipapo: fix improper element removal + * CVE-2023-3611 + - net/sched: sch_qfq: refactor parsing of netlink parameters + - net/sched: sch_qfq: account for stab overhead in qfq_enqueue + * CVE-2023-3610 + - netfilter: nf_tables: fix chain binding transaction logic + * CVE-2023-2898 + - f2fs: fix to avoid NULL pointer dereference f2fs_write_end_io() + * Backport support to tolerate ZSTD compressed firmware files (LP: #2028550) + - firmware_loader: EXTRA_FIRMWARE does not support compressed files + - firmware: Add the support for ZSTD-compressed firmware files + - [Config] Enable FW_LOADER_COMPRESS_ZSTD by default + * stacked overlay file system mounts that have chroot() called against them + appear to be getting locked (by the kernel most likely?) (LP: #2016398) + - SAUCE: overlayfs: fix reference count mismatch + * kdump fails on big arm64 systems when offset is not specified (LP: #2024479) + - arm64: mm: use IS_ENABLED(CONFIG_KEXEC_CORE) instead of #ifdef + - arm64: kdump: Reimplement crashkernel=X + - docs: kdump: Update the crashkernel description for arm64 + - arm64: kdump: Do not allocate crash low memory if not needed + - arm64/mm: Define defer_reserve_crashkernel() + - arm64: kdump: Provide default size when crashkernel=Y, low is not specified + - arm64: kdump: Support crashkernel=X fall back to reserve region above DMA + zones + * usbrtl sometimes doesn't reload firmware (LP: #2026028) + - Bluetooth: btrtl: Ask ic_info to drop firmware + * cifs: fix mid leak during reconnection after timeout threshold + (LP: #2029138) + - cifs: fix mid leak during reconnection after timeout threshold + * Jammy update: v5.15.115 upstream stable release (LP: #2028799) + - power: supply: bq27xxx: expose battery data when CI=1 + - power: supply: bq27xxx: Move bq27xxx_battery_update() down + - power: supply: bq27xxx: Ensure power_supply_changed() is called on current + sign changes + - power: supply: bq27xxx: After charger plug in/out wait 0.5s for things to + stabilize + - power: supply: core: Refactor + power_supply_set_input_current_limit_from_supplier() + - power: supply: bq24190: Call power_supply_changed() after updating input + current + - bpf: fix a memory leak in the LRU and LRU_PERCPU hash maps + - net/mlx5: devcom only supports 2 ports + - net/mlx5e: Fix deadlock in tc route query code + - net/mlx5: Devcom, serialize devcom registration + - platform/x86: ISST: PUNIT device mapping with Sub-NUMA clustering + - platform/x86: ISST: Remove 8 socket limit + - net: phy: mscc: enable VSC8501/2 RGMII RX clock + - net: dsa: introduce helpers for iterating through ports using dp + - net: dsa: mt7530: rework mt753[01]_setup + - net: dsa: mt7530: split-off common parts from mt7531_setup + - net: dsa: mt7530: fix network connectivity with multiple CPU ports + - Bonding: add arp_missed_max option + - bonding: fix send_peer_notif overflow + - binder: fix UAF caused by faulty buffer cleanup + - irqchip/mips-gic: Get rid of the reliance on irq_cpu_online() + - irqchip/mips-gic: Use raw spinlock for gic_lock + - net/mlx5e: Fix SQ wake logic in ptp napi_poll context + - xdp: Allow registering memory model without rxq reference + - net: page_pool: use in_softirq() instead + - page_pool: fix inconsistency for page_pool_ring_[un]lock() + - irqchip/mips-gic: Don't touch vl_map if a local interrupt is not routable + - xdp: xdp_mem_allocator can be NULL in trace_mem_connect(). + - bluetooth: Add cmd validity checks at the start of hci_sock_ioctl() + - Revert "binder_alloc: add missing mmap_lock calls when using the VMA" + - Revert "android: binder: stop saving a pointer to the VMA" + - binder: add lockless binder_alloc_(set|get)_vma() + - binder: fix UAF of alloc->vma in race with munmap() + - ipv{4,6}/raw: fix output xfrm lookup wrt protocol + - netfilter: ctnetlink: Support offloaded conntrack entry deletion + - Linux 5.15.115 + * Jammy update: v5.15.114 upstream stable release (LP: #2028701) + - usb: gadget: Properly configure the device for remote wakeup + - usb: dwc3: fix gadget mode suspend interrupt handler issue + - dt-bindings: ata: ahci-ceva: convert to yaml + - dt-bindings: ata: ahci-ceva: Cover all 4 iommus entries + - watchdog: sp5100_tco: Immediately trigger upon starting. + - ARM: dts: stm32: fix AV96 board SAI2 pin muxing on stm32mp15 + - spi: fsl-spi: Re-organise transfer bits_per_word adaptation + - spi: fsl-cpm: Use 16 bit mode for large transfers with even size + - ocfs2: Switch to security_inode_init_security() + - arm64: Also reset KASAN tag if page is not PG_mte_tagged + - ALSA: hda/ca0132: add quirk for EVGA X299 DARK + - ALSA: hda: Fix unhandled register update during auto-suspend period + - ALSA: hda/realtek: Enable headset onLenovo M70/M90 + - mmc: sdhci-esdhc-imx: make "no-mmc-hs400" works + - ASoC: rt5682: Disable jack detection interrupt during suspend + - net: cdc_ncm: Deal with too low values of dwNtbOutMaxSize + - m68k: Move signal frame following exception on 68020/030 + - parisc: Handle kgdb breakpoints only in kernel context + - parisc: Allow to reboot machine after system halt + - gpio: mockup: Fix mode of debugfs files + - btrfs: use nofs when cleaning up aborted transactions + - dt-binding: cdns,usb3: Fix cdns,on-chip-buff-size type + - selftests/memfd: Fix unknown type name build failure + - parisc: Fix flush_dcache_page() for usage from irq context + - perf/x86/uncore: Correct the number of CHAs on SPR + - x86/topology: Fix erroneous smp_num_siblings on Intel Hybrid platforms + - debugobjects: Don't wake up kswapd from fill_pool() + - fbdev: udlfb: Fix endpoint check + - net: fix stack overflow when LRO is disabled for virtual interfaces + - udplite: Fix NULL pointer dereference in __sk_mem_raise_allocated(). + - USB: core: Add routines for endpoint checks in old drivers + - USB: sisusbvga: Add endpoint checks + - media: radio-shark: Add endpoint checks + - ASoC: lpass: Fix for KASAN use_after_free out of bounds + - net: fix skb leak in __skb_tstamp_tx() + - selftests: fib_tests: mute cleanup error message + - octeontx2-pf: Fix TSOv6 offload + - bpf: Fix mask generation for 32-bit narrow loads of 64-bit fields + - ipv6: Fix out-of-bounds access in ipv6_find_tlv() + - cifs: mapchars mount option ignored + - power: supply: leds: Fix blink to LED on transition + - power: supply: mt6360: add a check of devm_work_autocancel in + mt6360_charger_probe + - power: supply: bq27xxx: Fix bq27xxx_battery_update() race condition + - power: supply: bq27xxx: Fix I2C IRQ race on remove + - power: supply: bq27xxx: Fix poll_interval handling and races on remove + - power: supply: bq27xxx: Add cache parameter to + bq27xxx_battery_current_and_status() + - power: supply: sbs-charger: Fix INHIBITED bit for Status reg + - firmware: arm_ffa: Check if ffa_driver remove is present before executing + - firmware: arm_ffa: Fix FFA device names for logical partitions + - fs: fix undefined behavior in bit shift for SB_NOUSER + - regulator: pca9450: Fix BUCK2 enable_mask + - coresight: Fix signedness bug in tmc_etr_buf_insert_barrier_packet() + - xen/pvcalls-back: fix double frees with pvcalls_new_active_socket() + - x86/show_trace_log_lvl: Ensure stack pointer is aligned, again + - ASoC: Intel: Skylake: Fix declaration of enum skl_ch_cfg + - sctp: fix an issue that plpmtu can never go to complete state + - forcedeth: Fix an error handling path in nv_probe() + - platform/mellanox: mlxbf-pmc: fix sscanf() error checking + - net/mlx5e: do as little as possible in napi poll when budget is 0 + - net/mlx5: DR, Fix crc32 calculation to work on big-endian (BE) CPUs + - net/mlx5: DR, Check force-loopback RC QP capability independently from RoCE + - net/mlx5: Fix error message when failing to allocate device memory + - net/mlx5: Devcom, fix error flow in mlx5_devcom_register_device + - arm64: dts: imx8mn-var-som: fix PHY detection bug by adding deassert delay + - firmware: arm_ffa: Set reserved/MBZ fields to zero in the memory descriptors + - regulator: mt6359: add read check for PMIC MT6359 + - 3c589_cs: Fix an error handling path in tc589_probe() + - net: phy: mscc: add VSC8502 to MODULE_DEVICE_TABLE + - Linux 5.15.114 + * Jammy update: v5.15.113 upstream stable release (LP: #2028408) + - drm/mipi-dsi: Set the fwnode for mipi_dsi_device + - ARM: 9296/1: HP Jornada 7XX: fix kernel-doc warnings + - net: mdio: mvusb: Fix an error handling path in mvusb_mdio_probe() + - scsi: ufs: core: Fix I/O hang that occurs when BKOPS fails in W-LUN suspend + - tick/broadcast: Make broadcast device replacement work correctly + - linux/dim: Do nothing if no time delta between samples + - net: stmmac: switch to use interrupt for hw crosstimestamping + - net: stmmac: Initialize MAC_ONEUS_TIC_COUNTER register + - net: Fix load-tearing on sk->sk_stamp in sock_recv_cmsgs(). + - netfilter: nf_tables: always release netdev hooks from notifier + - netfilter: conntrack: fix possible bug_on with enable_hooks=1 + - netlink: annotate accesses to nlk->cb_running + - net: annotate sk->sk_err write from do_recvmmsg() + - net: deal with most data-races in sk_wait_event() + - net: add vlan_get_protocol_and_depth() helper + - tcp: add annotations around sk->sk_shutdown accesses + - gve: Remove the code of clearing PBA bit + - net: datagram: fix data-races in datagram_poll() + - af_unix: Fix a data race of sk->sk_receive_queue->qlen. + - af_unix: Fix data races around sk->sk_shutdown. + - drm/i915/dp: prevent potential div-by-zero + - fbdev: arcfb: Fix error handling in arcfb_probe() + - ext4: remove an unused variable warning with CONFIG_QUOTA=n + - ext4: reflect error codes from ext4_multi_mount_protect() to its callers + - ext4: fix lockdep warning when enabling MMP + - ext4: allow to find by goal if EXT4_MB_HINT_GOAL_ONLY is set + - ext4: allow ext4_get_group_info() to fail + - refscale: Move shutdown from wait_event() to wait_event_idle() + - rcu: Protect rcu_print_task_exp_stall() ->exp_tasks access + - fs: hfsplus: remove WARN_ON() from hfsplus_cat_{read,write}_inode() + - drm/displayid: add displayid_get_header() and check bounds better + - drm/amd/display: Use DC_LOG_DC in the trasform pixel function + - regmap: cache: Return error in cache sync operations for REGCACHE_NONE + - arm64: dts: qcom: msm8996: Add missing DWC3 quirks + - media: cx23885: Fix a null-ptr-deref bug in buffer_prepare() and + buffer_finish() + - media: pci: tw68: Fix null-ptr-deref bug in buf prepare and finish + - firmware: arm_sdei: Fix sleep from invalid context BUG + - ACPI: EC: Fix oops when removing custom query handlers + - remoteproc: stm32_rproc: Add mutex protection for workqueue + - drm/tegra: Avoid potential 32-bit integer overflow + - drm/msm/dp: Clean up handling of DP AUX interrupts + - ACPICA: Avoid undefined behavior: applying zero offset to null pointer + - ACPICA: ACPICA: check null return of ACPI_ALLOCATE_ZEROED in + acpi_db_display_objects + - drm/amd: Fix an out of bounds error in BIOS parser + - media: Prefer designated initializers over memset for subdev pad ops + - wifi: ath: Silence memcpy run-time false positive warning + - bpf: Annotate data races in bpf_local_storage + - wifi: brcmfmac: cfg80211: Pass the PMK in binary instead of hex + - ext2: Check block size validity during mount + - scsi: lpfc: Prevent lpfc_debugfs_lockstat_write() buffer overflow + - bnxt: avoid overflow in bnxt_get_nvram_directory() + - net: pasemi: Fix return type of pasemi_mac_start_tx() + - net: Catch invalid index in XPS mapping + - scsi: target: iscsit: Free cmds before session free + - lib: cpu_rmap: Avoid use after free on rmap->obj array entries + - scsi: message: mptlan: Fix use after free bug in mptlan_remove() due to race + condition + - gfs2: Fix inode height consistency check + - scsi: ufs: ufs-pci: Add support for Intel Lunar Lake + - ext4: set goal start correctly in ext4_mb_normalize_request + - ext4: Fix best extent lstart adjustment logic in ext4_mb_new_inode_pa() + - f2fs: fix to drop all dirty pages during umount() if cp_error is set + - f2fs: fix to check readonly condition correctly + - samples/bpf: Fix fout leak in hbm's run_bpf_prog + - bpf: Add preempt_count_{sub,add} into btf id deny list + - wifi: iwlwifi: pcie: fix possible NULL pointer dereference + - wifi: iwlwifi: pcie: Fix integer overflow in iwl_write_to_user_buf + - null_blk: Always check queue mode setting from configfs + - wifi: iwlwifi: dvm: Fix memcpy: detected field-spanning write backtrace + - wifi: ath11k: Fix SKB corruption in REO destination ring + - nbd: fix incomplete validation of ioctl arg + - ipvs: Update width of source for ip_vs_sync_conn_options + - Bluetooth: btintel: Add LE States quirk support + - Bluetooth: hci_bcm: Fall back to getting bdaddr from EFI if not set + - Bluetooth: L2CAP: fix "bad unlock balance" in l2cap_disconnect_rsp + - HID: logitech-hidpp: Don't use the USB serial for USB devices + - HID: logitech-hidpp: Reconcile USB and Unifying serials + - spi: spi-imx: fix MX51_ECSPI_* macros when cs > 3 + - HID: wacom: generic: Set battery quirk only when we see battery data + - usb: typec: tcpm: fix multiple times discover svids error + - serial: 8250: Reinit port->pm on port specific driver unbind + - mcb-pci: Reallocate memory region to avoid memory overlapping + - sched: Fix KCSAN noinstr violation + - recordmcount: Fix memory leaks in the uwrite function + - RDMA/core: Fix multiple -Warray-bounds warnings + - iommu/arm-smmu-qcom: Limit the SMR groups to 128 + - fs/ntfs3: Fix NULL pointer dereference in 'ni_write_inode' + - fs/ntfs3: Enhance the attribute size check + - fs/ntfs3: Fix NULL dereference in ni_write_inode + - fs/ntfs3: Validate MFT flags before replaying logs + - fs/ntfs3: Add length check in indx_get_root + - fs/ntfs3: Fix a possible null-pointer dereference in ni_clear() + - clk: tegra20: fix gcc-7 constant overflow warning + - iommu/arm-smmu-v3: Acknowledge pri/event queue overflow if any + - iommu/sprd: Release dma buffer to avoid memory leak + - Input: xpad - add constants for GIP interface numbers + - phy: st: miphy28lp: use _poll_timeout functions for waits + - soundwire: qcom: gracefully handle too many ports in DT + - mfd: dln2: Fix memory leak in dln2_probe() + - parisc: Replace regular spinlock with spin_trylock on panic path + - platform/x86: hp-wmi: Support touchpad on/off + - [Config] updateconfigs for X86_PLATFORM_DRIVERS_HP + - platform/x86: Move existing HP drivers to a new hp subdir + - platform/x86: hp-wmi: add micmute to hp_wmi_keymap struct + - xfrm: don't check the default policy if the policy allows the packet + - Revert "Fix XFRM-I support for nested ESP tunnels" + - drm/msm/dp: unregister audio driver during unbind + - drm/msm/dpu: Add INTF_5 interrupts + - drm/msm/dpu: Move non-MDP_TOP INTF_INTR offsets out of hwio header + - drm/msm/dpu: Remove duplicate register defines from INTF + - dt-bindings: display/msm: dsi-controller-main: Document qcom, master-dsi and + qcom, sync-dual-dsi + - ASoC: fsl_micfil: Fix error handler with pm_runtime_enable + - cpupower: Make TSC read per CPU for Mperf monitor + - af_key: Reject optional tunnel/BEET mode templates in outbound policies + - selftests: seg6: disable DAD on IPv6 router cfg for srv6_end_dt4_l3vpn_test + - selftets: seg6: disable rp_filter by default in srv6_end_dt4_l3vpn_test + - net: fec: Better handle pm_runtime_get() failing in .remove() + - net: phy: dp83867: add w/a for packet errors seen with short cables + - ALSA: firewire-digi00x: prevent potential use after free + - ALSA: hda/realtek: Apply HP B&O top speaker profile to Pavilion 15 + - vsock: avoid to close connected socket after the timeout + - tcp: fix possible sk_priority leak in tcp_v4_send_reset() + - serial: arc_uart: fix of_iomap leak in `arc_serial_probe` + - serial: 8250_bcm7271: balance clk_enable calls + - serial: 8250_bcm7271: fix leak in `brcmuart_probe` + - erspan: get the proto with the md version for collect_md + - net: hns3: fix output information incomplete for dumping tx queue info with + debugfs + - net: hns3: fix sending pfc frames after reset issue + - net: hns3: fix reset delay time to avoid configuration timeout + - media: netup_unidvb: fix use-after-free at del_timer() + - SUNRPC: double free xprt_ctxt while still in use + - tracing: Introduce helpers to safely handle dynamic-sized sockaddrs + - SUNRPC: Clean up svc_deferred_class trace events + - SUNRPC: Remove dead code in svc_tcp_release_rqst() + - SUNRPC: Remove svc_rqst::rq_xprt_hlen + - SUNRPC: always free ctxt when freeing deferred request + - SUNRPC: Fix trace_svc_register() call site + - drm/exynos: fix g2d_open/close helper function definitions + - net: nsh: Use correct mac_offset to unwind gso skb in nsh_gso_segment() + - virtio-net: Maintain reverse cleanup order + - virtio_net: Fix error unwinding of XDP initialization + - tipc: add tipc_bearer_min_mtu to calculate min mtu + - tipc: do not update mtu if msg_max is too small in mtu negotiation + - tipc: check the bearer min mtu properly when setting it by netlink + - s390/cio: include subchannels without devices also for evaluation + - net: bcmgenet: Remove phy_stop() from bcmgenet_netif_stop() + - net: bcmgenet: Restore phy_stop() depending upon suspend/close + - wifi: mac80211: fix min center freq offset tracing + - wifi: iwlwifi: mvm: fix cancel_delayed_work_sync() deadlock + - wifi: iwlwifi: mvm: don't trust firmware n_channels + - scsi: storvsc: Don't pass unused PFNs to Hyper-V host + - cassini: Fix a memory leak in the error handling path of cas_init_one() + - net: dsa: mv88e6xxx: Fix mv88e6393x EPC write command offset + - igb: fix bit_shift to be in [1..8] range + - vlan: fix a potential uninit-value in vlan_dev_hard_start_xmit() + - netfilter: nf_tables: fix nft_trans type confusion + - netfilter: nft_set_rbtree: fix null deref on element insertion + - bridge: always declare tunnel functions + - ALSA: usb-audio: Add a sample rate workaround for Line6 Pod Go + - USB: usbtmc: Fix direction for 0-length ioctl control messages + - usb-storage: fix deadlock when a scsi command timeouts more than once + - USB: UHCI: adjust zhaoxin UHCI controllers OverCurrent bit value + - usb: dwc3: debugfs: Resume dwc3 before accessing registers + - usb: gadget: u_ether: Fix host MAC address case + - usb: typec: altmodes/displayport: fix pin_assignment_show + - xhci-pci: Only run d3cold avoidance quirk for s2idle + - xhci: Fix incorrect tracking of free space on transfer rings + - ALSA: hda: Fix Oops by 9.1 surround channel names + - ALSA: hda: Add NVIDIA codec IDs a3 through a7 to patch table + - ALSA: hda/realtek: Add quirk for Clevo L140AU + - ALSA: hda/realtek: Add a quirk for HP EliteDesk 805 + - ALSA: hda/realtek: Add quirk for 2nd ASUS GU603 + - can: j1939: recvmsg(): allow MSG_CMSG_COMPAT flag + - can: isotp: recvmsg(): allow MSG_CMSG_COMPAT flag + - can: kvaser_pciefd: Set CAN_STATE_STOPPED in kvaser_pciefd_stop() + - can: kvaser_pciefd: Call request_irq() before enabling interrupts + - can: kvaser_pciefd: Empty SRB buffer in probe + - can: kvaser_pciefd: Clear listen-only bit if not explicitly requested + - can: kvaser_pciefd: Do not send EFLUSH command on TFD interrupt + - can: kvaser_pciefd: Disable interrupts in probe error path + - SMB3: Close all deferred handles of inode in case of handle lease break + - SMB3: drop reference to cfile before sending oplock break + - ksmbd: smb2: Allow messages padded to 8byte boundary + - ksmbd: allocate one more byte for implied bcc[0] + - ksmbd: fix wrong UserName check in session_user + - ksmbd: fix global-out-of-bounds in smb2_find_context_vals + - statfs: enforce statfs[64] structure initialization + - serial: Add support for Advantech PCI-1611U card + - serial: 8250_exar: Add support for USR298x PCI Modems + - serial: qcom-geni: fix enabling deactivated interrupt + - thunderbolt: Clear registers properly when auto clear isn't in use + - vc_screen: reload load of struct vc_data pointer in vcs_write() to avoid UAF + - ceph: force updating the msg pointer in non-split case + - powerpc/iommu: Incorrect DDW Table is referenced for SR-IOV device + - tpm/tpm_tis: Disable interrupts for more Lenovo devices + - powerpc/64s/radix: Fix soft dirty tracking + - nilfs2: fix use-after-free bug of nilfs_root in nilfs_evict_inode() + - s390/qdio: fix do_sqbs() inline assembly constraint + - HID: wacom: Force pen out of prox if no events have been received in a while + - HID: wacom: Add new Intuos Pro Small (PTH-460) device IDs + - HID: wacom: add three styli to wacom_intuos_get_tool_type + - Linux 5.15.113 + * Jammy update: v5.15.112 upstream stable release (LP: #2026607) + - ring-buffer: Ensure proper resetting of atomic variables in + ring_buffer_reset_online_cpus + - crypto: ccp - Clear PSP interrupt status register before calling handler + - ubifs: Fix AA deadlock when setting xattr for encrypted file + - ubifs: Fix memory leak in do_rename + - bus: mhi: Move host MHI code to "host" directory + - bus: mhi: host: Remove duplicate ee check for syserr + - bus: mhi: host: Use mhi_tryset_pm_state() for setting fw error state + - bus: mhi: host: Range check CHDBOFF and ERDBOFF + - mailbox: zynq: Switch to flexible array to simplify code + - mailbox: zynqmp: Fix counts of child nodes + - ASoC: soc-pcm: use GFP_ATOMIC for dpcm structure + - ASoC: soc-pcm: align BE 'atomicity' with that of the FE + - ASoC: soc-pcm: Fix and cleanup DPCM locking + - ASoC: soc-pcm: serialize BE triggers + - ASoC: soc-pcm: test refcount before triggering + - ASoC: soc-pcm: fix BE handling of PAUSE_RELEASE + - fs/ntfs3: Fix null-ptr-deref on inode->i_op in ntfs_lookup() + - drm/hyperv: Don't overwrite dirt_needed value set by host + - scsi: qedi: Fix use after free bug in qedi_remove() + - net/ncsi: clear Tx enable mode when handling a Config required AEN + - net/sched: cls_api: remove block_cb from driver_list before freeing + - sit: update dev->needed_headroom in ipip6_tunnel_bind_dev() + - selftests: srv6: make srv6_end_dt46_l3vpn_test more robust + - net: dsa: mv88e6xxx: add mv88e6321 rsvd2cpu + - writeback: fix call of incorrect macro + - watchdog: dw_wdt: Fix the error handling path of dw_wdt_drv_probe() + - RISC-V: mm: Enable huge page support to kernel_page_present() function + - net/sched: act_mirred: Add carrier check + - r8152: fix flow control issue of RTL8156A + - r8152: fix the poor throughput for 2.5G devices + - r8152: move setting r8153b_rx_agg_chg_indicate() + - sfc: Fix module EEPROM reporting for QSFP modules + - rxrpc: Fix hard call timeout units + - octeontx2-af: Secure APR table update with the lock + - octeontx2-af: Skip PFs if not enabled + - octeontx2-pf: Disable packet I/O for graceful exit + - octeontx2-vf: Detach LF resources on probe cleanup + - ionic: remove noise from ethtool rxnfc error msg + - ethtool: Fix uninitialized number of lanes + - ionic: catch failure from devlink_alloc + - af_packet: Don't send zero-byte data in packet_sendmsg_spkt(). + - drm/amdgpu: add a missing lock for AMDGPU_SCHED + - ALSA: caiaq: input: Add error handling for unsupported input methods in + `snd_usb_caiaq_input_init` + - net: dsa: mt7530: fix corrupt frames using trgmii on 40 MHz XTAL MT7621 + - virtio_net: split free_unused_bufs() + - virtio_net: suppress cpu stall when free_unused_bufs + - net: enetc: check the index of the SFI rather than the handle + - perf scripts intel-pt-events.py: Fix IPC output for Python 2 + - perf vendor events power9: Remove UTF-8 characters from JSON files + - perf pmu: zfree() expects a pointer to a pointer to zero it after freeing + its contents + - perf map: Delete two variable initialisations before null pointer checks in + sort__sym_from_cmp() + - crypto: sun8i-ss - Fix a test in sun8i_ss_setup_ivs() + - crypto: engine - check if BH is disabled during completion + - crypto: api - Add scaffolding to change completion function signature + - crypto: engine - Use crypto_request_complete + - crypto: engine - fix crypto_queue backlog handling + - perf symbols: Fix return incorrect build_id size in elf_read_build_id() + - perf evlist: Refactor evlist__for_each_cpu() + - perf stat: Separate bperf from bpf_profiler + - btrfs: fix btrfs_prev_leaf() to not return the same key twice + - btrfs: zoned: fix wrong use of bitops API in btrfs_ensure_empty_zones + - btrfs: fix encoded write i_size corruption with no-holes + - btrfs: don't free qgroup space unless specified + - btrfs: zero the buffer before marking it dirty in btrfs_redirty_list_add + - btrfs: print-tree: parent bytenr must be aligned to sector size + - btrfs: fix space cache inconsistency after error loading it from disk + - cifs: fix pcchunk length type in smb2_copychunk_range + - cifs: release leases for deferred close handles when freezing + - platform/x86: touchscreen_dmi: Add upside-down quirk for GDIX1002 ts on the + Juno Tablet + - platform/x86: touchscreen_dmi: Add info for the Dexp Ursus KX210i + - inotify: Avoid reporting event with invalid wd + - smb3: fix problem remounting a share after shutdown + - SMB3: force unmount was failing to close deferred close files + - sh: math-emu: fix macro redefined warning + - sh: mcount.S: fix build error when PRINTK is not enabled + - sh: init: use OF_EARLY_FLATTREE for early init + - sh: nmi_debug: fix return value of __setup handler + - remoteproc: stm32: Call of_node_put() on iteration error + - remoteproc: st: Call of_node_put() on iteration error + - remoteproc: imx_rproc: Call of_node_put() on iteration error + - ARM: dts: exynos: fix WM8960 clock name in Itop Elite + - ARM: dts: s5pv210: correct MIPI CSIS clock name + - drm/bridge: lt8912b: Fix DSI Video Mode + - drm/msm: fix NULL-deref on snapshot tear down + - drm/msm: fix NULL-deref on irq uninstall + - f2fs: fix potential corruption when moving a directory + - drm/panel: otm8009a: Set backlight parent to panel device + - drm/amd/display: fix flickering caused by S/G mode + - drm/amdgpu: fix an amdgpu_irq_put() issue in gmc_v9_0_hw_fini() + - drm/amdgpu/gfx: disable gfx9 cp_ecc_error_irq only when enabling legacy gfx + ras + - drm/amdgpu: Fix vram recover doesn't work after whole GPU reset (v2) + - drm/amdgpu: disable sdma ecc irq only when sdma RAS is enabled in suspend + - HID: wacom: Set a default resolution for older tablets + - HID: wacom: insert timestamp to packed Bluetooth (BT) events + - fs/ntfs3: Refactoring of various minor issues + - ASoC: soc-pcm: Fix DPCM lockdep warning due to nested stream locks + - ASoC: soc-compress: Inherit atomicity from DAI link for Compress FE + - ASoC: soc-pcm: Move debugfs removal out of spinlock + - ASoC: DPCM: Don't pick up BE without substream + - ASoC: soc-pcm.c: call __soc_pcm_close() in soc_pcm_close() + - drm/i915/dg2: Support 4k@30 on HDMI + - drm/i915/dg2: Add additional HDMI pixel clock frequencies + - drm/i915/dg2: Add HDMI pixel clock frequencies 267.30 and 319.89 MHz + - drm/msm: Remove struct_mutex usage + - drm/msm/adreno: fix runtime PM imbalance at gpu load + - drm/amd/display: Refine condition of cursor visibility for pipe-split + - drm/amd/display: Add NULL plane_state check for cursor disable logic + - wifi: rtw88: rtw8821c: Fix rfe_option field width + - ksmbd: set RSS capable in FSCTL_QUERY_NETWORK_INTERFACE_INFO + - ksmbd: fix multi session connection failure + - ksmbd: replace sessions list in connection with xarray + - ksmbd: add channel rwlock + - ksmbd: fix kernel oops from idr_remove() + - ksmbd: fix racy issue while destroying session on multichannel + - ksmbd: fix deadlock in ksmbd_find_crypto_ctx() + - ksmbd: not allow guest user on multichannel + - locking/rwsem: Add __always_inline annotation to __down_read_common() and + inlined callers + - ext4: fix WARNING in mb_find_extent + - ext4: avoid a potential slab-out-of-bounds in ext4_group_desc_csum + - ext4: fix data races when using cached status extents + - ext4: check iomap type only if ext4_iomap_begin() does not fail + - ext4: improve error recovery code paths in __ext4_remount() + - ext4: improve error handling from ext4_dirhash() + - ext4: fix deadlock when converting an inline directory in nojournal mode + - ext4: add bounds checking in get_max_inline_xattr_value_size() + - ext4: bail out of ext4_xattr_ibody_get() fails for any reason + - ext4: remove a BUG_ON in ext4_mb_release_group_pa() + - ext4: fix invalid free tracking in ext4_xattr_move_to_block() + - drm/msm/adreno: adreno_gpu: Use suspend() instead of idle() on load error + - serial: 8250: Fix serial8250_tx_empty() race with DMA Tx + - drbd: correctly submit flush bio on barrier + - RISC-V: Fix up a cherry-pick warning in setup_vm_final() + - drm/amd/display: Fix hang when skipping modeset + - Linux 5.15.112 + * CVE-2023-31084 // CVE-2023-31084 was assigned to this bug. + - media: dvb-core: Fix kernel WARNING for blocking operation in wait_event*() + * CVE-2023-3776 + - net/sched: cls_fw: Fix improper refcount update leads to use-after-free + + -- Tim Gardner Fri, 25 Aug 2023 13:41:00 -0600 + +linux-azure (5.15.0-1045.52) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1045.52 -proposed tracker (LP: #2030553) + + [ Ubuntu: 5.15.0-82.91 ] + + * jammy/linux: 5.15.0-82.91 -proposed tracker (LP: #2031147) + * libgnutls report "trap invalid opcode" when trying to install packages over + https (LP: #2031093) + - [Config]: disable CONFIG_GDS_FORCE_MITIGATION + + [ Ubuntu: 5.15.0-80.89 ] + + * jammy/linux: 5.15.0-80.87 -proposed tracker (LP: #2030588) + * CVE-2022-40982 + - x86/mm: Initialize text poking earlier + - x86/mm: fix poking_init() for Xen PV guests + - x86/mm: Use mm_alloc() in poking_init() + - mm: Move mm_cachep initialization to mm_init() + - init: Provide arch_cpu_finalize_init() + - x86/cpu: Switch to arch_cpu_finalize_init() + - ARM: cpu: Switch to arch_cpu_finalize_init() + - sparc/cpu: Switch to arch_cpu_finalize_init() + - um/cpu: Switch to arch_cpu_finalize_init() + - init: Remove check_bugs() leftovers + - init: Invoke arch_cpu_finalize_init() earlier + - init, x86: Move mem_encrypt_init() into arch_cpu_finalize_init() + - x86/init: Initialize signal frame size late + - x86/fpu: Remove cpuinfo argument from init functions + - x86/fpu: Mark init functions __init + - x86/fpu: Move FPU initialization into arch_cpu_finalize_init() + - x86/xen: Fix secondary processors' FPU initialization + - x86/speculation: Add Gather Data Sampling mitigation + - x86/speculation: Add force option to GDS mitigation + - x86/speculation: Add Kconfig option for GDS + - KVM: Add GDS_NO support to KVM + - Documentation/x86: Fix backwards on/off logic about YMM support + - [Config]: Enable CONFIG_ARCH_HAS_CPU_FINALIZE_INIT and + CONFIG_GDS_FORCE_MITIGATION + * CVE-2023-21400 + - io_uring: ensure IOPOLL locks around deferred work + * CVE-2023-4015 + - netfilter: nf_tables: add NFT_TRANS_PREPARE_ERROR to deal with bound + set/chain + - netfilter: nf_tables: unbind non-anonymous set if rule construction fails + - netfilter: nf_tables: skip immediate deactivate in _PREPARE_ERROR + * CVE-2023-3777 + - netfilter: nf_tables: skip bound chain on rule flush + * CVE-2023-3995 + - netfilter: nf_tables: disallow rule addition to bound chain via + NFTA_RULE_CHAIN_ID + * CVE-2023-20593 + - x86/cpu/amd: Move the errata checking functionality up + - x86/cpu/amd: Add a Zenbleed fix + * CVE-2023-3776 + - net/sched: cls_fw: Fix improper refcount update leads to use-after-free + * CVE-2023-4004 + - netfilter: nft_set_pipapo: fix improper element removal + * CVE-2023-3611 + - net/sched: sch_qfq: refactor parsing of netlink parameters + - net/sched: sch_qfq: account for stab overhead in qfq_enqueue + * CVE-2023-3610 + - netfilter: nf_tables: fix chain binding transaction logic + * CVE-2023-3609 + - net/sched: cls_u32: Fix reference counter leak leading to overflow + + -- Tim Gardner Thu, 17 Aug 2023 11:01:11 -0600 + +linux-azure (5.15.0-1044.51) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1044.51 -proposed tracker (LP: #2029291) + + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + - [Packaging] update variants + + -- Tim Gardner Tue, 01 Aug 2023 13:38:35 -0600 + +linux-azure (5.15.0-1043.50) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1043.50 -proposed tracker (LP: #2026495) + + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + - [Packaging] resync getabis + + * kdump fails on big arm64 systems when offset is not specified (LP: #2024479) + - arm64: mm: use IS_ENABLED(CONFIG_KEXEC_CORE) instead of #ifdef + - arm64: kdump: Reimplement crashkernel=X + - docs: kdump: Update the crashkernel description for arm64 + - arm64: kdump: Do not allocate crash low memory if not needed + - arm64/mm: Define defer_reserve_crashkernel() + - arm64: kdump: Provide default size when crashkernel=Y, low is not specified + - arm64: kdump: Support crashkernel=X fall back to reserve region above DMA + zones + + * Azure: MANA: Fix doorbell access for receives (LP: #2027615) + - SAUCE: net: mana: Batch ringing RX queue doorbell on receiving packets + - SAUCE: net: mana: Use the correct WQE count for ringing RQ doorbell + + * [Azure][MANA][InfinitiBand] Features Support and InfiniBand for MANA + (LP: #2024917) + - bpf: Let bpf_warn_invalid_xdp_action() report more info + - PCI: Move PCI_VENDOR_ID_MICROSOFT/PCI_DEVICE_ID_HYPERV_VIDEO definitions to + pci_ids.h + - net: mana: Assign interrupts to CPUs based on NUMA nodes + - net: mana: Add support for auxiliary device + - net: mana: Record the physical address for doorbell page region + - net: mana: Handle vport sharing between devices + - net: mana: Set the DMA device max segment size + - net: mana: Export Work Queue functions for use by RDMA driver + - net: mana: Record port number in netdev + - net: mana: Move header files to a common location + - net: mana: Define max values for SGL entries + - net: mana: Define and process GDMA response code GDMA_STATUS_MORE_ENTRIES + - net: mana: Define data structures for allocating doorbell page from GDMA + - net: mana: Define data structures for protection domain and memory + registration + - net: mana: Fix return type of mana_start_xmit() + - RDMA/mana_ib: Add a driver for Microsoft Azure Network Adapter + - RDMA/mana: Remove redefinition of basic u64 type + - RDMA/mana_ib: Prevent array underflow in mana_ib_create_qp_raw() + - net: mana: Fix accessing freed irq affinity_hint + - [Config] azure: Enable MANA_INFINIBAND + + * [Azure] Fix VM crash/hang issues due to fast VF add/remove events + (LP: #2023071) // Case [Azure] Fix VM crash/hang issues due to fast VF + add/remove events (LP: #2023594) + - PCI: hv: Fix a race condition bug in hv_pci_query_relations() + - PCI: hv: Fix a race condition in hv_irq_unmask() that can cause panic + - PCI: hv: Remove the useless hv_pcichild_state from struct hv_pci_dev + - Revert "PCI: hv: Fix a timing issue which causes kdump to fail occasionally" + - PCI: hv: Add a per-bus mutex state_lock + - PCI: hv: Use async probing to reduce boot time + + * [Azure][MANA][VLANTagging] Support for VLAN Tagging for MANA (LP: #2023695) + - net: mana: Add support for vlan tagging + + [ Ubuntu: 5.15.0-79.86 ] + + * jammy/linux: 5.15.0-79.86 -proposed tracker (LP: #2026531) + * Jammy update: v5.15.111 upstream stable release (LP: #2025095) + - ASOC: Intel: sof_sdw: add quirk for Intel 'Rooks County' NUC M15 + - ASoC: soc-pcm: fix hw->formats cleared by soc_pcm_hw_init() for dpcm + - x86/hyperv: Block root partition functionality in a Confidential VM + - iio: adc: palmas_gpadc: fix NULL dereference on rmmod + - ASoC: Intel: bytcr_rt5640: Add quirk for the Acer Iconia One 7 B1-750 + - selftests mount: Fix mount_setattr_test builds failed + - asm-generic/io.h: suppress endianness warnings for readq() and writeq() + - x86/cpu: Add model number for Intel Arrow Lake processor + - wireguard: timers: cast enum limits members to int in prints + - wifi: mt76: mt7921e: Set memory space enable in PCI_COMMAND if unset + - arm64: Always load shadow stack pointer directly from the task struct + - arm64: Stash shadow stack pointer in the task struct on interrupt + - PCI: pciehp: Fix AB-BA deadlock between reset_lock and device_lock + - PCI: qcom: Fix the incorrect register usage in v2.7.0 config + - IMA: allow/fix UML builds + - USB: dwc3: fix runtime pm imbalance on probe errors + - USB: dwc3: fix runtime pm imbalance on unbind + - hwmon: (k10temp) Check range scale when CUR_TEMP register is read-write + - hwmon: (adt7475) Use device_property APIs when configuring polarity + - posix-cpu-timers: Implement the missing timer_wait_running callback + - blk-mq: release crypto keyslot before reporting I/O complete + - blk-crypto: make blk_crypto_evict_key() return void + - blk-crypto: make blk_crypto_evict_key() more robust + - ext4: use ext4_journal_start/stop for fast commit transactions + - staging: iio: resolver: ads1210: fix config mode + - tty: Prevent writing chars during tcsetattr TCSADRAIN/FLUSH + - xhci: fix debugfs register accesses while suspended + - tick/nohz: Fix cpu_is_hotpluggable() by checking with nohz subsystem + - MIPS: fw: Allow firmware to pass a empty env + - ipmi:ssif: Add send_retries increment + - ipmi: fix SSIF not responding under certain cond. + - kheaders: Use array declaration instead of char + - wifi: mt76: add missing locking to protect against concurrent rx/status + calls + - pwm: meson: Fix axg ao mux parents + - pwm: meson: Fix g12a ao clk81 name + - soundwire: qcom: correct setting ignore bit on v1.5.1 + - pinctrl: qcom: lpass-lpi: set output value before enabling output + - ring-buffer: Sync IRQ works before buffer destruction + - crypto: api - Demote BUG_ON() in crypto_unregister_alg() to a WARN_ON() + - crypto: safexcel - Cleanup ring IRQ workqueues on load failure + - rcu: Avoid stack overflow due to __rcu_irq_enter_check_tick() being kprobe- + ed + - reiserfs: Add security prefix to xattr name in reiserfs_security_write() + - KVM: nVMX: Emulate NOPs in L2, and PAUSE if it's not intercepted + - relayfs: fix out-of-bounds access in relay_file_read + - writeback, cgroup: fix null-ptr-deref write in bdi_split_work_to_wbs + - ksmbd: call rcu_barrier() in ksmbd_server_exit() + - ksmbd: fix NULL pointer dereference in smb2_get_info_filesystem() + - ksmbd: fix memleak in session setup + - i2c: omap: Fix standard mode false ACK readings + - riscv: mm: remove redundant parameter of create_fdt_early_page_table + - tracing: Fix permissions for the buffer_percent file + - iommu/amd: Fix "Guest Virtual APIC Table Root Pointer" configuration in IRTE + - ubifs: Fix memleak when insert_old_idx() failed + - ubi: Fix return value overwrite issue in try_write_vid_and_data() + - ubifs: Free memory for tmpfile name + - xfs: don't consider future format versions valid + - sound/oss/dmasound: fix build when drivers are mixed =y/=m + - rcu: Fix missing TICK_DEP_MASK_RCU_EXP dependency check + - selftests/resctrl: Return NULL if malloc_and_init_memory() did not alloc mem + - selftests/resctrl: Extend CPU vendor detection + - selftests/resctrl: Move ->setup() call outside of test specific branches + - selftests/resctrl: Allow ->setup() to return errors + - selftests/resctrl: Check for return value after write_schemata() + - selinux: fix Makefile dependencies of flask.h + - selinux: ensure av_permissions.h is built when needed + - tpm, tpm_tis: Do not skip reset of original interrupt vector + - tpm, tpm_tis: Claim locality before writing TPM_INT_ENABLE register + - tpm, tpm_tis: Disable interrupts if tpm_tis_probe_irq() failed + - tpm, tpm_tis: Claim locality before writing interrupt registers + - tpm, tpm: Implement usage counter for locality + - tpm, tpm_tis: Claim locality when interrupts are reenabled on resume + - erofs: stop parsing non-compact HEAD index if clusterofs is invalid + - erofs: fix potential overflow calculating xattr_isize + - drm/rockchip: Drop unbalanced obj unref + - drm/vgem: add missing mutex_destroy + - drm/probe-helper: Cancel previous job before starting new one + - tools/x86/kcpuid: Fix avx512bw and avx512lvl fields in Fn00000007 + - soc: ti: pm33xx: Fix refcount leak in am33xx_pm_probe + - arm64: dts: renesas: r8a77990: Remove bogus voltages from OPP table + - arm64: dts: renesas: r8a774c0: Remove bogus voltages from OPP table + - drm/msm/disp/dpu: check for crtc enable rather than crtc active to release + shared resources + - EDAC/skx: Fix overflows on the DRAM row address mapping arrays + - regulator: core: Shorten off-on-delay-us for always-on/boot-on by time since + booted + - arm64: dts: ti: k3-j721e-main: Remove ti,strobe-sel property + - arm64: dts: broadcom: bcm4908: add DT for Netgear RAXE500 + - arm64: dts: Add DTS files for bcmbca SoC BCM63158 + - arm64: dts: Add DTS files for bcmbca SoC BCM4912 + - ARM64: dts: Add DTS files for bcmbca SoC BCM6858 + - arm64: dts: Add base DTS file for bcmbca device Asus GT-AX6000 + - arm64: dts: Move BCM4908 dts to bcmbca folder + - arm64: dts: broadcom: bcmbca: bcm4908: fix NAND interrupt name + - arm64: dts: broadcom: bcmbca: bcm4908: fix procmon nodename + - arm64: dts: qcom: msm8998: Fix stm-stimulus-base reg name + - arm64: dts: qcom: sdm845: correct dynamic power coefficients + - arm64: dts: qcom: sdm845: Fix the PCI I/O port range + - arm64: dts: qcom: msm8998: Fix the PCI I/O port range + - arm64: dts: qcom: ipq8074: Fix the PCI I/O port range + - arm64: dts: qcom: ipq6018: Fix the PCI I/O port range + - arm64: dts: qcom: msm8996: Fix the PCI I/O port range + - arm64: dts: qcom: sm8250: Fix the PCI I/O port range + - ARM: dts: qcom: ipq4019: Fix the PCI I/O port range + - ARM: dts: qcom: ipq8064: reduce pci IO size to 64K + - ARM: dts: qcom: ipq8064: Fix the PCI I/O port range + - x86/MCE/AMD: Use an u64 for bank_map + - media: bdisp: Add missing check for create_workqueue + - media: av7110: prevent underflow in write_ts_to_decoder() + - firmware: qcom_scm: Clear download bit during reboot + - drm/bridge: adv7533: Fix adv7533_mode_valid for adv7533 and adv7535 + - media: max9286: Free control handler + - drm/msm/adreno: Defer enabling runpm until hw_init() + - drm/msm/adreno: drop bogus pm_runtime_set_active() + - drm: msm: adreno: Disable preemption on Adreno 510 + - drm/amd/display/dc/dce60/Makefile: Fix previous attempt to silence known + override-init warnings + - ACPI: processor: Fix evaluating _PDC method when running as Xen dom0 + - mmc: sdhci-of-esdhc: fix quirk to ignore command inhibit for data + - drm: rcar-du: Fix a NULL vs IS_ERR() bug + - ARM: dts: gta04: fix excess dma channel usage + - firmware: arm_scmi: Fix xfers allocation on Rx channel + - ACPI: VIOT: Initialize the correct IOMMU fwspec + - drm/lima/lima_drv: Add missing unwind goto in lima_pdev_probe() + - mailbox: mpfs: switch to txdone_poll + - arm64: dts: qcom: sc7180-trogdor-lazor: correct trackpad supply + - arm64: dts: qcom: msm8994-kitakami: drop unit address from PMI8994 regulator + - arm64: dts: qcom: msm8994-msft-lumia-octagon: drop unit address from PMI8994 + regulator + - drm/ttm: optimize pool allocations a bit v2 + - drm/ttm/pool: Fix ttm_pool_alloc error path + - regulator: core: Consistently set mutex_owner when using + ww_mutex_lock_slow() + - regulator: core: Avoid lockdep reports when resolving supplies + - x86/apic: Fix atomic update of offset in reserve_eilvt_offset() + - media: rkvdec: fix use after free bug in rkvdec_remove + - media: dm1105: Fix use after free bug in dm1105_remove due to race condition + - media: saa7134: fix use after free bug in saa7134_finidev due to race + condition + - media: rcar_fdp1: Make use of the helper function + devm_platform_ioremap_resource() + - media: rcar_fdp1: Fix the correct variable assignments + - platform: Provide a remove callback that returns no value + - media: rcar_fdp1: Convert to platform remove callback returning void + - media: rcar_fdp1: Fix refcount leak in probe and remove function + - drm/amd/display: Fix potential null dereference + - media: rc: gpio-ir-recv: Fix support for wake-up + - media: venus: dec: Fix handling of the start cmd + - regulator: stm32-pwr: fix of_iomap leak + - x86/ioapic: Don't return 0 from arch_dynirq_lower_bound() + - arm64: kgdb: Set PSTATE.SS to 1 to re-enable single-step + - debugobject: Prevent init race with static objects + - drm/i915: Make intel_get_crtc_new_encoder() less oopsy + - tick/common: Align tick period with the HZ tick. + - cpufreq: use correct unit when verify cur freq + - hwmon: (pmbus/fsp-3y) Fix functionality bitmask in FSP-3Y YM-2151E + - wifi: ath6kl: minor fix for allocation size + - wifi: ath9k: hif_usb: fix memory leak of remain_skbs + - wifi: ath5k: fix an off by one check in ath5k_eeprom_read_freq_list() + - wifi: brcmfmac: support CQM RSSI notification with older firmware + - wifi: ath6kl: reduce WARN to dev_dbg() in callback + - tools: bpftool: Remove invalid \' json escape + - wifi: rtw88: mac: Return the original error from rtw_pwr_seq_parser() + - wifi: rtw88: mac: Return the original error from rtw_mac_power_switch() + - bpf: take into account liveness when propagating precision + - bpf: fix precision propagation verbose logging + - scm: fix MSG_CTRUNC setting condition for SO_PASSSEC + - selftests/bpf: Fix a fd leak in an error path in network_helpers.c + - bpf: Remove misleading spec_v1 check on var-offset stack read + - net: pcs: xpcs: remove double-read of link state when using AN + - vlan: partially enable SIOCSHWTSTAMP in container + - net/packet: annotate accesses to po->xmit + - net/packet: convert po->origdev to an atomic flag + - net/packet: convert po->auxdata to an atomic flag + - scsi: target: Fix multiple LUN_RESET handling + - scsi: target: iscsit: Fix TAS handling during conn cleanup + - scsi: megaraid: Fix mega_cmd_done() CMDID_INT_CMDS + - f2fs: handle dqget error in f2fs_transfer_project_quota() + - f2fs: enforce single zone capacity + - f2fs: apply zone capacity to all zone type + - f2fs: compress: fix to call f2fs_wait_on_page_writeback() in + f2fs_write_raw_pages() + - crypto: caam - Clear some memory in instantiate_rng + - crypto: sa2ul - Select CRYPTO_DES + - wifi: rtlwifi: fix incorrect error codes in rtl_debugfs_set_write_rfreg() + - wifi: rtlwifi: fix incorrect error codes in rtl_debugfs_set_write_reg() + - wifi: rt2x00: Fix memory leak when handling surveys + - net: qrtr: correct types of trace event parameters + - selftests: xsk: Disable IPv6 on VETH1 + - selftests/bpf: Wait for receive in cg_storage_multi test + - bpftool: Fix bug for long instructions in program CFG dumps + - crypto: drbg - make drbg_prepare_hrng() handle jent instantiation errors + - crypto: drbg - Only fail when jent is unavailable in FIPS mode + - xsk: Fix unaligned descriptor validation + - f2fs: fix to avoid use-after-free for cached IPU bio + - scsi: lpfc: Fix ioremap issues in lpfc_sli4_pci_mem_setup() + - net: ethernet: stmmac: dwmac-rk: fix optional phy regulator handling + - bpf, sockmap: fix deadlocks in the sockhash and sockmap + - nvmet: use i_size_read() to set size for file-ns + - nvmet: move the call to nvmet_ns_changed out of nvmet_ns_revalidate + - nvmet: fix error handling in nvmet_execute_identify_cns_cs_ns() + - nvmet: fix Identify Namespace handling + - nvmet: fix Identify Controller handling + - nvmet: fix Identify Active Namespace ID list handling + - nvmet: fix I/O Command Set specific Identify Controller + - nvme: handle the persistent internal error AER + - nvme: fix async event trace event + - nvme-fcloop: fix "inconsistent {IN-HARDIRQ-W} -> {HARDIRQ-ON-W} usage" + - selftests/bpf: Fix leaked bpf_link in get_stackid_cannot_attach + - bpf, sockmap: Revert buggy deadlock fix in the sockhash and sockmap + - md: drop queue limitation for RAID1 and RAID10 + - md: raid10 add nowait support + - md/raid10: factor out code from wait_barrier() to stop_waiting_barrier() + - md/raid10: fix task hung in raid10d + - md/raid10: fix leak of 'r10bio->remaining' for recovery + - md/raid10: fix memleak for 'conf->bio_split' + - md/raid10: fix memleak of md thread + - md/raid10: don't call bio_start_io_acct twice for bio which experienced read + error + - wifi: iwlwifi: yoyo: skip dump correctly on hw error + - wifi: iwlwifi: yoyo: Fix possible division by zero + - wifi: iwlwifi: mvm: initialize seq variable + - wifi: iwlwifi: fw: move memset before early return + - jdb2: Don't refuse invalidation of already invalidated buffers + - wifi: iwlwifi: make the loop for card preparation effective + - wifi: mt76: handle failure of vzalloc in mt7615_coredump_work + - wifi: mt76: add flexible polling wait-interval support + - wifi: mt76: mt7921e: fix probe timeout after reboot + - wifi: mt76: fix 6GHz high channel not be scanned + - wifi: mt76: mt7921e: improve reliability of dma reset + - wifi: iwlwifi: mvm: check firmware response size + - wifi: iwlwifi: fw: fix memory leak in debugfs + - ixgbe: Allow flow hash to be set via ethtool + - ixgbe: Enable setting RSS table to default values + - net/mlx5: E-switch, Don't destroy indirect table in split rule + - net: stmmac:fix system hang when setting up tag_8021q VLAN for DSA ports + - bpf: Don't EFAULT for getsockopt with optval=NULL + - netfilter: nf_tables: don't write table validation state without mutex + - net/sched: sch_fq: fix integer overflow of "credit" + - ipv4: Fix potential uninit variable access bug in __ip_make_skb() + - netlink: Use copy_to_user() for optval in netlink_getsockopt(). + - net: amd: Fix link leak when verifying config failed + - tcp/udp: Fix memleaks of sk and zerocopy skbs with TX timestamp. + - ipmi: ASPEED_BT_IPMI_BMC: select REGMAP_MMIO instead of depending on it + - drivers: staging: rtl8723bs: Fix locking in _rtw_join_timeout_handler() + - drivers: staging: rtl8723bs: Fix locking in rtw_scan_timeout_handler() + - pstore: Revert pmsg_lock back to a normal mutex + - usb: host: xhci-rcar: remove leftover quirk handling + - usb: dwc3: gadget: Change condition for processing suspend event + - serial: stm32: re-introduce an irq flag condition in usart_receive_chars + - serial: stm32: Re-assert RTS/DE GPIO in RS485 mode only if more data are + transmitted + - fpga: bridge: fix kernel-doc parameter description + - iio: light: max44009: add missing OF device matching + - serial: 8250_bcm7271: Fix arbitration handling + - spi: spi-imx: using pm_runtime_resume_and_get instead of pm_runtime_get_sync + - spi: imx: Don't skip cleanup in remove's error path + - usb: gadget: udc: renesas_usb3: Fix use after free bug in + renesas_usb3_remove due to race condition + - PCI: imx6: Install the fault handler only on compatible match + - ASoC: es8316: Handle optional IRQ assignment + - linux/vt_buffer.h: allow either builtin or modular for macros + - spi: qup: Don't skip cleanup in remove's error path + - spi: fsl-spi: Fix CPM/QE mode Litte Endian + - vmci_host: fix a race condition in vmci_host_poll() causing GPF + - of: Fix modalias string generation + - PCI/EDR: Clear Device Status after EDR error recovery + - ia64: mm/contig: fix section mismatch warning/error + - ia64: salinfo: placate defined-but-not-used warning + - scripts/gdb: bail early if there are no clocks + - scripts/gdb: bail early if there are no generic PD + - HID: amd_sfh: Add support for shutdown operation + - coresight: etm_pmu: Set the module field + - ASoC: fsl_mqs: move of_node_put() to the correct location + - spi: cadence-quadspi: fix suspend-resume implementations + - i2c: cadence: cdns_i2c_master_xfer(): Fix runtime PM leak on error path + - scripts/gdb: raise error with reduced debugging information + - uapi/linux/const.h: prefer ISO-friendly __typeof__ + - sh: sq: Fix incorrect element size for allocating bitmap buffer + - usb: gadget: tegra-xudc: Fix crash in vbus_draw + - usb: chipidea: fix missing goto in `ci_hdrc_probe` + - usb: mtu3: fix kernel panic at qmu transfer done irq handler + - firmware: stratix10-svc: Fix an NULL vs IS_ERR() bug in probe + - tty: serial: fsl_lpuart: adjust buffer length to the intended size + - serial: 8250: Add missing wakeup event reporting + - staging: rtl8192e: Fix W_DISABLE# does not work after stop/start + - spmi: Add a check for remove callback when removing a SPMI driver + - virtio_ring: don't update event idx on get_buf + - macintosh/windfarm_smu_sat: Add missing of_node_put() + - powerpc/mpc512x: fix resource printk format warning + - powerpc/wii: fix resource printk format warnings + - powerpc/sysdev/tsi108: fix resource printk format warnings + - macintosh: via-pmu-led: requires ATA to be set + - powerpc/rtas: use memmove for potentially overlapping buffer copy + - sched/fair: Use __schedstat_set() in set_next_entity() + - sched: Make struct sched_statistics independent of fair sched class + - sched/fair: Fix inaccurate tally of ttwu_move_affine + - perf/core: Fix hardlockup failure caused by perf throttle + - Revert "objtool: Support addition to set CFA base" + - sched/rt: Fix bad task migration for rt tasks + - clk: at91: clk-sam9x60-pll: fix return value check + - RDMA/siw: Fix potential page_array out of range access + - RDMA/rdmavt: Delete unnecessary NULL check + - workqueue: Introduce show_one_worker_pool and show_one_workqueue. + - workqueue: Fix hung time report of worker pools + - rtc: omap: include header for omap_rtc_power_off_program prototype + - RDMA/mlx4: Prevent shift wrapping in set_user_sq_size() + - rtc: meson-vrtc: Use ktime_get_real_ts64() to get the current time + - fs/ntfs3: Fix memory leak if ntfs_read_mft failed + - fs/ntfs3: Add check for kmemdup + - fs/ntfs3: Fix OOB read in indx_insert_into_buffer + - fs/ntfs3: Fix slab-out-of-bounds read in hdr_delete_de() + - power: supply: generic-adc-battery: fix unit scaling + - clk: add missing of_node_put() in "assigned-clocks" property parsing + - RDMA/siw: Remove namespace check from siw_netdev_event() + - clk: qcom: gcc-sm6115: Mark RCGs shared where applicable + - RDMA/cm: Trace icm_send_rej event before the cm state is reset + - RDMA/srpt: Add a check for valid 'mad_agent' pointer + - IB/hfi1: Fix SDMA mmu_rb_node not being evicted in LRU order + - IB/hfi1: Fix bugs with non-PAGE_SIZE-end multi-iovec user SDMA requests + - NFSv4.1: Always send a RECLAIM_COMPLETE after establishing lease + - clk: qcom: regmap: add PHY clock source implementation + - clk: qcom: gcc-sm8350: fix PCIe PIPE clocks handling + - Input: raspberrypi-ts - fix refcount leak in rpi_ts_probe + - RDMA/mlx5: Fix flow counter query via DEVX + - SUNRPC: remove the maximum number of retries in call_bind_status + - RDMA/mlx5: Use correct device num_ports when modify DC + - clocksource/drivers/davinci: Fix memory leak in davinci_timer_register when + init fails + - openrisc: Properly store r31 to pt_regs on unhandled exceptions + - timekeeping: Fix references to nonexistent ktime_get_fast_ns() + - SMB3: Add missing locks to protect deferred close file list + - SMB3: Close deferred file handles in case of handle lease break + - ext4: fix i_disksize exceeding i_size problem in paritally written case + - ext4: fix use-after-free read in ext4_find_extent for bigalloc + inline + - pinctrl: renesas: r8a779a0: Remove incorrect AVB[01] pinmux configuration + - leds: TI_LMU_COMMON: select REGMAP instead of depending on it + - dmaengine: mv_xor_v2: Fix an error code. + - leds: tca6507: Fix error handling of using fwnode_property_read_string + - pwm: mtk-disp: Disable shadow registers before setting backlight values + - pwm: mtk-disp: Configure double buffering before reading in .get_state() + - phy: tegra: xusb: Add missing tegra_xusb_port_unregister for usb2_port and + ulpi_port + - dma: gpi: remove spurious unlock in gpi_ch_init + - dmaengine: dw-edma: Fix to change for continuous transfer + - dmaengine: dw-edma: Fix to enable to issue dma request on DMA processing + - dmaengine: at_xdmac: Fix concurrency over chan's completed_cookie + - dmaengine: at_xdmac: Fix race for the tx desc callback + - dmaengine: at_xdmac: do not enable all cyclic channels + - thermal/drivers/mediatek: Use devm_of_iomap to avoid resource leak in + mtk_thermal_probe + - mfd: tqmx86: Do not access I2C_DETECT register through io_base + - mfd: tqmx86: Specify IO port register range more precisely + - mfd: tqmx86: Correct board names for TQMxE39x + - afs: Fix updating of i_size with dv jump from server + - parisc: Fix argument pointer in real64_call_asm() + - ALSA: usb-audio: Add quirk for Pioneer DDJ-800 + - nilfs2: do not write dirty data after degenerating to read-only + - nilfs2: fix infinite loop in nilfs_mdt_get_block() + - md/raid10: fix null-ptr-deref in raid10_sync_request + - mtd: core: provide unique name for nvmem device, take two + - mtd: core: fix nvmem error reporting + - mtd: core: fix error path for nvmem provider + - mailbox: zynqmp: Fix IPI isr handling + - mailbox: zynqmp: Fix typo in IPI documentation + - wifi: rtl8xxxu: RTL8192EU always needs full init + - clk: rockchip: rk3399: allow clk_cifout to force clk_cifout_src to reparent + - scripts/gdb: fix lx-timerlist for Python3 + - btrfs: scrub: reject unsupported scrub flags + - s390/dasd: fix hanging blockdevice after request requeue + - ia64: fix an addr to taddr in huge_pte_offset() + - dm verity: fix error handling for check_at_most_once on FEC + - dm clone: call kmem_cache_destroy() in dm_clone_init() error path + - dm integrity: call kmem_cache_destroy() in dm_integrity_init() error path + - dm flakey: fix a crash with invalid table line + - dm ioctl: fix nested locking in table_clear() to remove deadlock concern + - dm: don't lock fs when the map is NULL in process of resume + - perf auxtrace: Fix address filter entire kernel size + - perf intel-pt: Fix CYC timestamps after standalone CBR + - sound/oss/dmasound: fix 'dmasound_setup' defined but not used + - arm64: dts: qcom: sdm845: correct dynamic power coefficients - again + - sched: Fix DEBUG && !SCHEDSTATS warn + - Linux 5.15.111 + * Jammy update: v5.15.110 upstream stable release (LP: #2025090) + - PCI/ASPM: Remove pcie_aspm_pm_state_change() + - selftests/kselftest/runner/run_one(): allow running non-executable files + - KVM: arm64: Retry fault if vma_lookup() results become invalid + - KVM: arm64: Fix buffer overflow in kvm_arm_set_fw_reg() + - drm/fb-helper: set x/yres_virtual in drm_fb_helper_check_var + - bluetooth: Perform careful capability checks in hci_sock_ioctl() + - USB: serial: option: add UNISOC vendor and TOZED LT70C product + - driver core: Don't require dynamic_debug for initcall_debug probe timing + - selftests: mptcp: join: fix "invalid address, ADD_ADDR timeout" + - riscv: Move early dtb mapping into the fixmap region + - riscv: Do not set initial_boot_params to the linear address of the dtb + - riscv: No need to relocate the dtb as it lies in the fixmap region + - Linux 5.15.110 + * Jammy update: v5.15.109 upstream stable release (LP: #2024265) + - ARM: dts: rockchip: fix a typo error for rk3288 spdif node + - arm64: dts: qcom: ipq8074-hk01: enable QMP device, not the PHY node + - arm64: dts: meson-g12-common: specify full DMC range + - arm64: dts: imx8mm-evk: correct pmic clock source + - netfilter: br_netfilter: fix recent physdev match breakage + - regulator: fan53555: Explicitly include bits header + - regulator: fan53555: Fix wrong TCS_SLEW_MASK + - virtio_net: bugfix overflow inside xdp_linearize_page() + - sfc: Split STATE_READY in to STATE_NET_DOWN and STATE_NET_UP. + - sfc: Fix use-after-free due to selftest_work + - netfilter: nf_tables: fix ifdef to also consider nf_tables=m + - i40e: fix accessing vsi->active_filters without holding lock + - i40e: fix i40e_setup_misc_vector() error handling + - netfilter: nf_tables: validate catch-all set elements + - netfilter: nf_tables: tighten netlink attribute requirements for catch-all + elements + - bnxt_en: Do not initialize PTP on older P3/P4 chips + - mlxfw: fix null-ptr-deref in mlxfw_mfa2_tlv_next() + - bonding: Fix memory leak when changing bond type to Ethernet + - net: rpl: fix rpl header size calculation + - mlxsw: pci: Fix possible crash during initialization + - spi: spi-rockchip: Fix missing unwind goto in rockchip_sfc_probe() + - bpf: Fix incorrect verifier pruning due to missing register precision taints + - e1000e: Disable TSO on i219-LM card to increase speed + - f2fs: Fix f2fs_truncate_partial_nodes ftrace event + - Input: i8042 - add quirk for Fujitsu Lifebook A574/H + - platform/x86 (gigabyte-wmi): Add support for A320M-S2H V2 + - selftests: sigaltstack: fix -Wuninitialized + - scsi: megaraid_sas: Fix fw_crash_buffer_show() + - scsi: core: Improve scsi_vpd_inquiry() checks + - net: dsa: b53: mmap: add phy ops + - s390/ptrace: fix PTRACE_GET_LAST_BREAK error handling + - nvme-tcp: fix a possible UAF when failing to allocate an io queue + - xen/netback: use same error messages for same errors + - platform/x86: gigabyte-wmi: add support for X570S AORUS ELITE + - rtmutex: Add acquire semantics for rtmutex lock acquisition slow path + - iio: light: tsl2772: fix reading proximity-diodes from device tree + - nilfs2: initialize unused bytes in segment summary blocks + - memstick: fix memory leak if card device is never registered + - kernel/sys.c: fix and improve control flow in __sys_setres[ug]id() + - mmc: sdhci_am654: Set HIGH_SPEED_ENA for SDR12 and SDR25 + - drm/i915: Fix fast wake AUX sync len + - mm/khugepaged: check again on anon uffd-wp during isolation + - mm: page_alloc: skip regions with hugetlbfs pages when allocating 1G pages + - sched/uclamp: Fix fits_capacity() check in feec() + - sched/uclamp: Make cpu_overutilized() use util_fits_cpu() + - sched/uclamp: Cater for uclamp in find_energy_efficient_cpu()'s early exit + condition + - sched/fair: Detect capacity inversion + - sched/fair: Consider capacity inversion in util_fits_cpu() + - sched/uclamp: Fix a uninitialized variable warnings + - sched/fair: Fixes for capacity inversion detection + - MIPS: Define RUNTIME_DISCARD_EXIT in LD script + - docs: futex: Fix kernel-doc references after code split-up preparation + - purgatory: fix disabling debug info + - fuse: fix attr version comparison in fuse_read_update_size() + - fuse: always revalidate rename target dentry + - fuse: fix deadlock between atomic O_TRUNC and page invalidation + - udp: Call inet6_destroy_sock() in setsockopt(IPV6_ADDRFORM). + - tcp/udp: Call inet6_destroy_sock() in IPv6 sk->sk_destruct(). + - inet6: Remove inet6_destroy_sock() in sk->sk_prot->destroy(). + - dccp: Call inet6_destroy_sock() via sk->sk_destruct(). + - sctp: Call inet6_destroy_sock() via sk->sk_destruct(). + - pwm: meson: Explicitly set .polarity in .get_state() + - pwm: iqs620a: Explicitly set .polarity in .get_state() + - pwm: hibvt: Explicitly set .polarity in .get_state() + - counter: 104-quad-8: Fix race condition between FLAG and CNTR reads + - iio: adc: at91-sama5d2_adc: fix an error code in at91_adc_allocate_trigger() + - mm/page_alloc: fix potential deadlock on zonelist_update_seq seqlock + - ASoC: fsl_asrc_dma: fix potential null-ptr-deref + - ASN.1: Fix check for strdup() success + - soc: sifive: l2_cache: fix missing iounmap() in error path in + sifive_l2_init() + - soc: sifive: l2_cache: fix missing free_irq() in error path in + sifive_l2_init() + - soc: sifive: l2_cache: fix missing of_node_put() in sifive_l2_init() + - Linux 5.15.109 + * Disable hv-kvp-daemon if /dev/vmbus/hv_kvp is not present (LP: #2024900) + - [Packaging] disable hv-kvp-daemon if needed + * A deadlock issue in scsi rescan task while resuming from S3 (LP: #2018566) + - ata: libata-scsi: Avoid deadlock on rescan after device resume + * [SRU] Intel Sapphire Rapids HBM support needs CONFIG_NUMA_EMU (LP: #2008745) + - [Config] Intel Sapphire Rapids HBM support needs CONFIG_NUMA_EMU + * [22.04 FEAT] Enhanced Interpretation for PCI Functions on s390x - kernel + part (LP: #1853306) + - kvm: use kvfree() in kvm_arch_free_vm() + - s390/sclp: add detection of IPL-complete-control facility + - s390/pci: use phys_to_virt() for AIBVs/DIBVs + - s390/sclp: detect the zPCI load/store interpretation facility + - s390/sclp: detect the AISII facility + - s390/sclp: detect the AENI facility + - s390/sclp: detect the AISI facility + - s390/airq: pass more TPI info to airq handlers + - s390/airq: allow for airq structure that uses an input vector + - s390/pci: externalize the SIC operation controls and routine + - s390/pci: stash associated GISA designation + - s390/pci: stash dtsm and maxstbl + - vfio/pci: introduce CONFIG_VFIO_PCI_ZDEV_KVM + - KVM: s390: pci: add basic kvm_zdev structure + - KVM: s390: pci: do initial setup for AEN interpretation + - KVM: s390: pci: enable host forwarding of Adapter Event Notifications + - KVM: s390: mechanism to enable guest zPCI Interpretation + - KVM: s390: pci: provide routines for enabling/disabling interrupt forwarding + - KVM: s390: pci: add routines to start/stop interpretive execution + - vfio-pci/zdev: add open/close device hooks + - vfio-pci/zdev: add function handle to clp base capability + - vfio-pci/zdev: different maxstbl for interpreted devices + - KVM: s390: add KVM_S390_ZPCI_OP to manage guest zPCI devices + - MAINTAINERS: additional files related kvm s390 pci passthrough + - Documentation: kvm: extend KVM_S390_ZPCI_OP subheading underline + - KVM: s390: pci: Hook to access KVM lowlevel from VFIO + - KVM: s390: pci: fix plain integer as NULL pointer warnings + - KVM: s390: pci: fix GAIT physical vs virtual pointers usage + - KVM: s390: pci: register pci hooks without interpretation + - [Config] enable VFIO zPCI pass-through for s390x + * Undefined Behavior Sanitizer (UBSAN) causes failure to match symbols + (LP: #2003374) + - [Config] s390x: Re-adding UBSAN to configuration + * CVE-2023-35001 + - netfilter: nf_tables: prevent OOB access in nft_byteorder_eval + * CVE-2023-31248 + - netfilter: nf_tables: do not ignore genmask when looking up chain by id + * CVE-2023-3389 + - io_uring: hold uring mutex around poll removal + * CVE-2023-3439 + - mctp: Add refcounts to mctp_dev + - mctp: Allow MCTP on tun devices + - mctp: make __mctp_dev_get() take a refcount hold + - mctp: defer the kfree of object mdev->addrs + * CVE-2023-3390 + - netfilter: nf_tables: incorrect error path handling with NFT_MSG_NEWRULE + * CVE-2023-3141 + - memstick: r592: Fix UAF bug in r592_remove due to race condition + * CVE-2023-3090 + - ipvlan:Fix out-of-bounds caused by unclear skb->cb + * CVE-2022-48502 + - fs/ntfs3: Check fields while reading + * ftrace in ubuntu_kernel_selftests failed with "check if duplicate events are + caught" on J-5.15 P9 / J-kvm / L-kvm (LP: #1977827) + - SAUCE: selftests/ftrace: Add test dependency + * Add microphone support of the front headphone port on P3 Tower + (LP: #2023650) + - ALSA: hda/realtek: Add Lenovo P3 Tower platform + * Add audio support for ThinkPad P1 Gen 6 and Z16 Gen 2 (LP: #2023539) + - ALSA: hda/realtek: Add quirks for Lenovo Z13/Z16 Gen2 + - ALSA: hda/realtek: Add quirk for ThinkPad P1 Gen 6 + * Resolve synchronous exception on arm64 (LP: #2023311) + - arm64: efi: Recover from synchronous exceptions occurring in firmware + * Enable Tracing Configs for OSNOISE and TIMERLAT (LP: #2018591) + - [Config] Enable OSNOISE_TRACER and TIMERLAT_TRACER configs + * Severe NFS performance degradation after LP #2003053 (LP: #2022098) + - SAUCE: Make NFS file-access stale cache behaviour opt-in + * Encountering an issue with memcpy_fromio causing failed boot of SEV-enabled + guest (LP: #2020319) + - x86/sev: Unroll string mmio with CC_ATTR_GUEST_UNROLL_STRING_IO + * linux-*: please enable dm-verity kconfigs to allow MoK/db verified root + images (LP: #2019040) + - [Config] CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING=y + * CVE-2023-2124 + - xfs: verify buffer contents when we skip log replay + * CVE-2023-0597 + - x86/kasan: Map shadow for percpu pages on demand + - x86/mm: Randomize per-cpu entry area + - x86/mm: Recompute physical address for every page of per-CPU CEA mapping + - x86/mm: Populate KASAN shadow for entire per-CPU range of CPU entry area + - x86/mm: Do not shuffle CPU entry areas without KASLR + * Jammy update: v5.15.108 upstream stable release (LP: #2023328) + - Revert "pinctrl: amd: Disable and mask interrupts on resume" + - ALSA: emu10k1: fix capture interrupt handler unlinking + - ALSA: hda/sigmatel: add pin overrides for Intel DP45SG motherboard + - ALSA: i2c/cs8427: fix iec958 mixer control deactivation + - ALSA: firewire-tascam: add missing unwind goto in + snd_tscm_stream_start_duplex() + - ALSA: emu10k1: don't create old pass-through playback device on Audigy + - ALSA: hda/sigmatel: fix S/PDIF out on Intel D*45* motherboards + - Bluetooth: L2CAP: Fix use-after-free in l2cap_disconnect_{req,rsp} + - Bluetooth: Fix race condition in hidp_session_thread + - btrfs: print checksum type and implementation at mount time + - btrfs: fix fast csum implementation detection + - fbmem: Reject FB_ACTIVATE_KD_TEXT from userspace + - mtdblock: tolerate corrected bit-flips + - mtd: rawnand: meson: fix bitmask for length in command word + - mtd: rawnand: stm32_fmc2: remove unsupported EDO mode + - mtd: rawnand: stm32_fmc2: use timings.mode instead of checking tRC_min + - KVM: arm64: PMU: Restore the guest's EL0 event counting after migration + - drm/i915/dsi: fix DSS CTL register offsets for TGL+ + - clk: sprd: set max_register according to mapping range + - RDMA/irdma: Fix memory leak of PBLE objects + - RDMA/irdma: Increase iWARP CM default rexmit count + - RDMA/irdma: Add ipv4 check to irdma_find_listener() + - IB/mlx5: Add support for 400G_8X lane speed + - RDMA/cma: Allow UD qp_type to join multicast only + - bpf: tcp: Use sock_gen_put instead of sock_put in bpf_iter_tcp + - niu: Fix missing unwind goto in niu_alloc_channels() + - tcp: restrict net.ipv4.tcp_app_win + - drm/armada: Fix a potential double free in an error handling path + - qlcnic: check pci_reset_function result + - net: qrtr: Fix an uninit variable access bug in qrtr_tx_resume() + - sctp: fix a potential overflow in sctp_ifwdtsn_skip + - RDMA/core: Fix GID entry ref leak when create_ah fails + - udp6: fix potential access to stale information + - net: macb: fix a memory corruption in extended buffer descriptor mode + - skbuff: Fix a race between coalescing and releasing SKBs + - libbpf: Fix single-line struct definition output in btf_dump + - ARM: 9290/1: uaccess: Fix KASAN false-positives + - power: supply: cros_usbpd: reclassify "default case!" as debug + - wifi: mwifiex: mark OF related data as maybe unused + - i2c: imx-lpi2c: clean rx/tx buffers upon new message + - i2c: hisi: Avoid redundant interrupts + - efi: sysfb_efi: Add quirk for Lenovo Yoga Book X91F/L + - drm: panel-orientation-quirks: Add quirk for Lenovo Yoga Book X90F + - verify_pefile: relax wrapper length check + - asymmetric_keys: log on fatal failures in PE/pkcs7 + - wifi: iwlwifi: mvm: fix mvmtxq->stopped handling + - ACPI: resource: Add Medion S17413 to IRQ override quirk + - counter: stm32-lptimer-cnt: Provide defines for clock polarities + - counter: stm32-timer-cnt: Provide defines for slave mode selection + - counter: Internalize sysfs interface code + - counter: 104-quad-8: Fix Synapse action reported for Index signals + - tracing: Add trace_array_puts() to write into instance + - tracing: Have tracing_snapshot_instance_cond() write errors to the + appropriate instance + - i915/perf: Replace DRM_DEBUG with driver specific drm_dbg call + - drm/i915: fix race condition UAF in i915_perf_add_config_ioctl + - riscv: add icache flush for nommu sigreturn trampoline + - net: sfp: initialize sfp->i2c_block_size at sfp allocation + - net: phy: nxp-c45-tja11xx: add remove callback + - net: phy: nxp-c45-tja11xx: fix unsigned long multiplication overflow + - scsi: ses: Handle enclosure with just a primary component gracefully + - x86/PCI: Add quirk for AMD XHCI controller that loses MSI-X state in D3hot + - cgroup/cpuset: Wake up cpuset_attach_wq tasks in cpuset_cancel_attach() + - mptcp: use mptcp_schedule_work instead of open-coding it + - mptcp: stricter state check in mptcp_worker + - ubi: Fix failure attaching when vid_hdr offset equals to (sub)page size + - ubi: Fix deadlock caused by recursively holding work_sem + - powerpc/papr_scm: Update the NUMA distance table for the target node + - sched/fair: Move calculate of avg_load to a better location + - sched/fair: Fix imbalance overflow + - x86/rtc: Remove __init for runtime functions + - i2c: ocores: generate stop condition after timeout in polling mode + - nvme-pci: add NVME_QUIRK_BOGUS_NID for ADATA XPG GAMMIX S50 + - nvme-pci: avoid the deepest sleep state on ZHITAI TiPro7000 SSDs + - nvme-pci: Crucial P2 has bogus namespace ids + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Lexar NM610 + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Lexar NM760 + - nvme-pci: mark Lexar NM760 as IGNORE_DEV_SUBNQN + - nvme-pci: add NVME_QUIRK_BOGUS_NID for T-FORCE Z330 SSD + - kexec: turn all kexec_mutex acquisitions into trylocks + - panic, kexec: make __crash_kexec() NMI safe + - counter: fix docum. build problems after filename change + - counter: Add the necessary colons and indents to the comments of + counter_compi + - nvme-pci: avoid the deepest sleep state on ZHITAI TiPro5000 SSDs + - Linux 5.15.108 + * Jammy update: v5.15.107 upstream stable release (LP: #2023320) + - ocfs2: ocfs2_mount_volume does cleanup job before return error + - ocfs2: rewrite error handling of ocfs2_fill_super + - ocfs2: fix memory leak in ocfs2_mount_volume() + - NFSD: Fix sparse warning + - NFSD: pass range end to vfs_fsync_range() instead of count + - RDMA/irdma: Do not request 2-level PBLEs for CQ alloc + - platform/x86: int3472: Split into 2 drivers + - [Config] updateconfigs for Intel skl_int3472 driver split + - platform/x86: int3472/discrete: Ensure the clk/power enable pins are in + output mode + - iavf: return errno code instead of status code + - iavf/iavf_main: actually log ->src mask when talking about it + - serial: 8250_exar: derive nr_ports from PCI ID for Acces I/O cards + - serial: exar: Add support for Sealevel 7xxxC serial cards + - bpf: hash map, avoid deadlock with suitable hash mask + - gpio: GPIO_REGMAP: select REGMAP instead of depending on it + - Drivers: vmbus: Check for channel allocation before looking up relids + - pwm: cros-ec: Explicitly set .polarity in .get_state() + - pwm: sprd: Explicitly set .polarity in .get_state() + - KVM: s390: pv: fix external interruption loop not always detected + - wifi: mac80211: fix invalid drv_sta_pre_rcu_remove calls for non-uploaded + sta + - net: qrtr: combine nameservice into main module + - [Config] updateconfigs for ns module merger + - net: qrtr: Fix a refcount bug in qrtr_recvmsg() + - NFSD: Avoid calling OPDESC() with ops->opnum == OP_ILLEGAL + - icmp: guard against too small mtu + - net: don't let netpoll invoke NAPI if in xmit context + - net: dsa: mv88e6xxx: Reset mv88e6393x force WD event bit + - sctp: check send stream number after wait_for_sndbuf + - net: qrtr: Do not do DEL_SERVER broadcast after DEL_CLIENT + - ipv6: Fix an uninit variable access bug in __ip6_make_skb() + - platform/x86: think-lmi: Fix memory leak when showing current settings + - platform/x86: think-lmi: Fix memory leaks when parsing ThinkStation WMI + strings + - platform/x86: think-lmi: Clean up display of current_value on Thinkstation + - gpio: davinci: Add irq chip flag to skip set wake + - net: ethernet: ti: am65-cpsw: Fix mdio cleanup in probe + - net: stmmac: fix up RX flow hash indirection table when setting channels + - sunrpc: only free unix grouplist after RCU settles + - NFSD: callback request does not use correct credential for AUTH_SYS + - ice: fix wrong fallback logic for FDIR + - ice: Reset FDIR counter in FDIR init stage + - ethtool: reset #lanes when lanes is omitted + - gve: Secure enough bytes in the first TX desc for all TCP pkts + - kbuild: refactor single builds of *.ko + - usb: xhci: tegra: fix sleep in atomic call + - xhci: also avoid the XHCI_ZERO_64B_REGS quirk with a passthrough iommu + - usb: cdnsp: Fixes error: uninitialized symbol 'len' + - usb: dwc3: pci: add support for the Intel Meteor Lake-S + - USB: serial: cp210x: add Silicon Labs IFS-USB-DATACABLE IDs + - usb: typec: altmodes/displayport: Fix configure initial pin assignment + - USB: serial: option: add Telit FE990 compositions + - USB: serial: option: add Quectel RM500U-CN modem + - iio: adis16480: select CONFIG_CRC32 + - iio: adc: ti-ads7950: Set `can_sleep` flag for GPIO chip + - iio: dac: cio-dac: Fix max DAC write value check for 12-bit + - iio: light: cm32181: Unregister second I2C client if present + - tty: serial: sh-sci: Fix transmit end interrupt handler + - tty: serial: sh-sci: Fix Rx on RZ/G2L SCI + - tty: serial: fsl_lpuart: avoid checking for transfer complete when + UARTCTRL_SBK is asserted in lpuart32_tx_empty + - nilfs2: fix potential UAF of struct nilfs_sc_info in nilfs_segctor_thread() + - nilfs2: fix sysfs interface lifetime + - dt-bindings: serial: renesas,scif: Fix 4th IRQ for 4-IRQ SCIFs + - ksmbd: do not call kvmalloc() with __GFP_NORETRY | __GFP_NO_WARN + - ALSA: hda/realtek: Add quirk for Clevo X370SNW + - coresight: etm4x: Do not access TRCIDR1 for identification + - coresight-etm4: Fix for() loop drvdata->nr_addr_cmp range bug + - iio: adc: ad7791: fix IRQ flags + - scsi: qla2xxx: Fix memory leak in qla2x00_probe_one() + - scsi: iscsi_tcp: Check that sock is valid before iscsi_set_param() + - smb3: allow deferred close timeout to be configurable + - smb3: lower default deferred close timeout to address perf regression + - cifs: sanitize paths in cifs_update_super_prepath. + - perf/core: Fix the same task check in perf_event_set_output + - ftrace: Mark get_lock_parent_ip() __always_inline + - ftrace: Fix issue that 'direct->addr' not restored in modify_ftrace_direct() + - fs: drop peer group ids under namespace lock + - can: j1939: j1939_tp_tx_dat_new(): fix out-of-bounds memory access + - can: isotp: isotp_ops: fix poll() to not report false EPOLLOUT events + - tracing: Free error logs of tracing instances + - ASoC: hdac_hdmi: use set_stream() instead of set_tdm_slots() + - mm: vmalloc: avoid warn_alloc noise caused by fatal signal + - drm/panfrost: Fix the panfrost_mmu_map_fault_addr() error path + - drm/nouveau/disp: Support more modes by checking with lower bpc + - ring-buffer: Fix race while reader and writer are on the same page + - mm/swap: fix swap_info_struct race between swapoff and get_swap_pages() + - drm/bridge: lt9611: Fix PLL being unable to lock + - mm: take a page reference when removing device exclusive entries + - kbuild: fix single directory build + - ocfs2: fix freeing uninitialized resource on ocfs2_dlm_shutdown + - bpftool: Print newline before '}' for struct with padding only fields + - Linux 5.15.107 + * Jammy update: v5.15.106 upstream stable release (LP: #2023233) + - fsverity: don't drop pagecache at end of FS_IOC_ENABLE_VERITY + - usb: dwc3: gadget: move cmd_endtransfer to extra function + - usb: dwc3: gadget: Add 1ms delay after end transfer command without IOC + - kernel: kcsan: kcsan_test: build without structleak plugin + - kcsan: avoid passing -g for test + - ksmbd: don't terminate inactive sessions after a few seconds + - bus: imx-weim: fix branch condition evaluates to a garbage value + - xfrm: Zero padding when dumping algos and encap + - ASoC: codecs: tx-macro: Fix for KASAN: slab-out-of-bounds + - md: avoid signed overflow in slot_store() + - x86/PVH: obtain VGA console info in Dom0 + - net: hsr: Don't log netdev_err message on unknown prp dst node + - ALSA: asihpi: check pao in control_message() + - ALSA: hda/ca0132: fixup buffer overrun at tuning_ctl_set() + - fbdev: tgafb: Fix potential divide by zero + - sched_getaffinity: don't assume 'cpumask_size()' is fully initialized + - fbdev: nvidia: Fix potential divide by zero + - fbdev: intelfb: Fix potential divide by zero + - fbdev: lxfb: Fix potential divide by zero + - fbdev: au1200fb: Fix potential divide by zero + - tools/power turbostat: Fix /dev/cpu_dma_latency warnings + - tools/power turbostat: fix decoding of HWP_STATUS + - tracing: Fix wrong return in kprobe_event_gen_test.c + - ca8210: Fix unsigned mac_len comparison with zero in ca8210_skb_tx() + - mips: bmips: BCM6358: disable RAC flush for TP1 + - ALSA: usb-audio: Fix recursive locking at XRUN during syncing + - platform/x86: think-lmi: add missing type attribute + - platform/x86: think-lmi: use correct possible_values delimiters + - platform/x86: think-lmi: only display possible_values if available + - platform/x86: think-lmi: Add possible_values for ThinkStation + - mtd: rawnand: meson: invalidate cache on polling ECC bit + - SUNRPC: fix shutdown of NFS TCP client socket + - sfc: ef10: don't overwrite offload features at NIC reset + - scsi: megaraid_sas: Fix crash after a double completion + - scsi: mpt3sas: Don't print sense pool info twice + - ptp_qoriq: fix memory leak in probe() + - net: dsa: microchip: ksz8863_smi: fix bulk access + - r8169: fix RTL8168H and RTL8107E rx crc error + - regulator: Handle deferred clk + - net/net_failover: fix txq exceeding warning + - net: stmmac: don't reject VLANs when IFF_PROMISC is set + - drm/i915/tc: Fix the ICL PHY ownership check in TC-cold state + - platform/x86/intel/pmc: Alder Lake PCH slp_s0_residency fix + - can: bcm: bcm_tx_setup(): fix KMSAN uninit-value in vfs_write + - s390/vfio-ap: fix memory leak in vfio_ap device driver + - loop: suppress uevents while reconfiguring the device + - loop: LOOP_CONFIGURE: send uevents for partitions + - net: mvpp2: classifier flow fix fragmentation flags + - net: mvpp2: parser fix QinQ + - net: mvpp2: parser fix PPPoE + - smsc911x: avoid PHY being resumed when interface is not up + - ice: add profile conflict check for AVF FDIR + - ice: fix invalid check for empty list in ice_sched_assoc_vsi_to_agg() + - ALSA: ymfpci: Create card with device-managed snd_devm_card_new() + - ALSA: ymfpci: Fix BUG_ON in probe function + - net: ipa: compute DMA pool size properly + - i40e: fix registers dump after run ethtool adapter self test + - bnxt_en: Fix reporting of test result in ethtool selftest + - bnxt_en: Fix typo in PCI id to device description string mapping + - bnxt_en: Add missing 200G link speed reporting + - net: dsa: mv88e6xxx: Enable IGMP snooping on user ports only + - net: ethernet: mtk_eth_soc: fix flow block refcounting logic + - pinctrl: ocelot: Fix alt mode for ocelot + - iommu/vt-d: Allow zero SAGAW if second-stage not supported + - Input: alps - fix compatibility with -funsigned-char + - Input: focaltech - use explicitly signed char type + - cifs: prevent infinite recursion in CIFSGetDFSRefer() + - cifs: fix DFS traversal oops without CONFIG_CIFS_DFS_UPCALL + - Input: goodix - add Lenovo Yoga Book X90F to nine_bytes_report DMI table + - btrfs: fix race between quota disable and quota assign ioctls + - btrfs: scan device in non-exclusive mode + - zonefs: Always invalidate last cached page on append write + - can: j1939: prevent deadlock by moving j1939_sk_errqueue() + - xen/netback: don't do grant copy across page boundary + - net: phy: dp83869: fix default value for tx-/rx-internal-delay + - pinctrl: amd: Disable and mask interrupts on resume + - pinctrl: at91-pio4: fix domain name assignment + - powerpc: Don't try to copy PPR for task with NULL pt_regs + - NFSv4: Fix hangs when recovering open state after a server reboot + - ALSA: hda/conexant: Partial revert of a quirk for Lenovo + - ALSA: usb-audio: Fix regression on detection of Roland VS-100 + - ALSA: hda/realtek: Add quirks for some Clevo laptops + - ALSA: hda/realtek: Add quirk for Lenovo ZhaoYang CF4620Z + - xtensa: fix KASAN report for show_stack + - rcu: Fix rcu_torture_read ftrace event + - drm/etnaviv: fix reference leak when mmaping imported buffer + - drm/amd/display: Add DSC Support for Synaptics Cascaded MST Hub + - KVM: arm64: Disable interrupts while walking userspace PTs + - KVM: VMX: Move preemption timer <=> hrtimer dance to common x86 + - KVM: x86: Inject #GP on x2APIC WRMSR that sets reserved bits 63:32 + - KVM: x86: Purge "highest ISR" cache when updating APICv state + - zonefs: Fix error message in zonefs_file_dio_append() + - selftests/bpf: Test btf dump for struct with padding only fields + - libbpf: Fix BTF-to-C converter's padding logic + - selftests/bpf: Add few corner cases to test padding handling of btf_dump + - libbpf: Fix btf_dump's packed struct determination + - hsr: ratelimit only when errors are printed + - x86/PVH: avoid 32-bit build warning when obtaining VGA console info + - Linux 5.15.106 + * Jammy update: v5.15.105 upstream stable release (LP: #2023230) + - interconnect: qcom: osm-l3: fix icc_onecell_data allocation + - perf/core: Fix perf_output_begin parameter is incorrectly invoked in + perf_event_bpf_output + - perf: fix perf_event_context->time + - tracing/hwlat: Replace sched_setaffinity with set_cpus_allowed_ptr + - serial: fsl_lpuart: Fix comment typo + - tty: serial: fsl_lpuart: switch to new dmaengine_terminate_* API + - tty: serial: fsl_lpuart: fix race on RX DMA shutdown + - serial: 8250: SERIAL_8250_ASPEED_VUART should depend on ARCH_ASPEED + - [Config] updateconfigs for SERIAL_8250_ASPEED_VUART + - serial: 8250: ASPEED_VUART: select REGMAP instead of depending on it + - kthread: add the helper function kthread_run_on_cpu() + - trace/hwlat: make use of the helper function kthread_run_on_cpu() + - trace/hwlat: Do not start per-cpu thread if it is already running + - net: tls: fix possible race condition between do_tls_getsockopt_conf() and + do_tls_setsockopt_conf() + - power: supply: bq24190_charger: using pm_runtime_resume_and_get instead of + pm_runtime_get_sync + - power: supply: bq24190: Fix use after free bug in bq24190_remove due to race + condition + - power: supply: da9150: Fix use after free bug in da9150_charger_remove due + to race condition + - ARM: dts: imx6sll: e60k02: fix usbotg1 pinctrl + - ARM: dts: imx6sl: tolino-shine2hd: fix usbotg1 pinctrl + - arm64: dts: imx8mn: specify #sound-dai-cells for SAI nodes + - xsk: Add missing overflow check in xdp_umem_reg + - iavf: fix inverted Rx hash condition leading to disabled hash + - iavf: fix non-tunneled IPv6 UDP packet type and hashing + - intel/igbvf: free irq on the error path in igbvf_request_msix() + - igbvf: Regard vf reset nack as success + - igc: fix the validation logic for taprio's gate list + - i2c: imx-lpi2c: check only for enabled interrupt flags + - i2c: hisi: Only use the completion interrupt to finish the transfer + - scsi: scsi_dh_alua: Fix memleak for 'qdata' in alua_activate() + - net: dsa: b53: mmap: fix device tree support + - net: usb: smsc95xx: Limit packet length to skb->len + - qed/qed_sriov: guard against NULL derefs from qed_iov_get_vf_info + - net: phy: Ensure state transitions are processed from phy_stop() + - net: mdio: fix owner field for mdio buses registered using device-tree + - net: mdio: fix owner field for mdio buses registered using ACPI + - drm/i915/gt: perform uc late init after probe error injection + - net: qcom/emac: Fix use after free bug in emac_remove due to race condition + - net/ps3_gelic_net: Fix RX sk_buff length + - net/ps3_gelic_net: Use dma_mapping_error + - octeontx2-vf: Add missing free for alloc_percpu + - bootconfig: Fix testcase to increase max node + - keys: Do not cache key in task struct if key is requested from kernel thread + - iavf: fix hang on reboot with ice + - i40e: fix flow director packet filter programming + - bpf: Adjust insufficient default bpf_jit_limit + - net/mlx5e: Set uplink rep as NETNS_LOCAL + - net/mlx5: Fix steering rules cleanup + - net/mlx5: Read the TC mapping of all priorities on ETS query + - net/mlx5: E-Switch, Fix an Oops in error handling code + - net: dsa: tag_brcm: legacy: fix daisy-chained switches + - atm: idt77252: fix kmemleak when rmmod idt77252 + - erspan: do not use skb_mac_header() in ndo_start_xmit() + - net/sonic: use dma_mapping_error() for error check + - nvme-tcp: fix nvme_tcp_term_pdu to match spec + - hvc/xen: prevent concurrent accesses to the shared ring + - ksmbd: add low bound validation to FSCTL_SET_ZERO_DATA + - ksmbd: add low bound validation to FSCTL_QUERY_ALLOCATED_RANGES + - ksmbd: fix possible refcount leak in smb2_open() + - gve: Cache link_speed value from device + - net: dsa: mt7530: move enabling disabling core clock to mt7530_pll_setup() + - net: dsa: mt7530: move lowering TRGMII driving to mt7530_setup() + - net: dsa: mt7530: move setting ssc_delta to PHY_INTERFACE_MODE_TRGMII case + - net: mdio: thunder: Add missing fwnode_handle_put() + - Bluetooth: btqcomsmd: Fix command timeout after setting BD address + - Bluetooth: L2CAP: Fix responding with wrong PDU type + - platform/chrome: cros_ec_chardev: fix kernel data leak from ioctl + - thread_info: Add helpers to snapshot thread flags + - entry: Snapshot thread flags + - entry/rcu: Check TIF_RESCHED _after_ delayed RCU wake-up + - hwmon: fix potential sensor registration fail if of_node is missing + - hwmon (it87): Fix voltage scaling for chips with 10.9mV ADCs + - scsi: qla2xxx: Synchronize the IOCB count to be in order + - scsi: qla2xxx: Perform lockless command completion in abort path + - uas: Add US_FL_NO_REPORT_OPCODES for JMicron JMS583Gen 2 + - thunderbolt: Use scale field when allocating USB3 bandwidth + - thunderbolt: Call tb_check_quirks() after initializing adapters + - thunderbolt: Disable interrupt auto clear for rings + - thunderbolt: Add missing UNSET_INBOUND_SBTX for retimer access + - thunderbolt: Use const qualifier for `ring_interrupt_index` + - thunderbolt: Rename shadowed variables bit to interrupt_bit and + auto_clear_bit + - ACPI: x86: utils: Add Cezanne to the list for forcing StorageD3Enable + - riscv: Bump COMMAND_LINE_SIZE value to 1024 + - drm/cirrus: NULL-check pipe->plane.state->fb in cirrus_pipe_update() + - HID: cp2112: Fix driver not registering GPIO IRQ chip as threaded + - ca8210: fix mac_len negative array access + - HID: intel-ish-hid: ipc: Fix potential use-after-free in work function + - m68k: Only force 030 bus error if PC not in exception table + - selftests/bpf: check that modifier resolves after pointer + - scsi: target: iscsi: Fix an error message in iscsi_check_key() + - scsi: hisi_sas: Check devm_add_action() return value + - scsi: ufs: core: Add soft dependency on governor_simpleondemand + - scsi: lpfc: Check kzalloc() in lpfc_sli4_cgn_params_read() + - scsi: lpfc: Avoid usage of list iterator variable after loop + - scsi: storvsc: Handle BlockSize change in Hyper-V VHD/VHDX file + - net: usb: cdc_mbim: avoid altsetting toggling for Telit FE990 + - net: usb: qmi_wwan: add Telit 0x1080 composition + - sh: sanitize the flags on sigreturn + - net/sched: act_mirred: better wording on protection against excessive stack + growth + - act_mirred: use the backlog for nested calls to mirred ingress + - cifs: empty interface list when server doesn't support query interfaces + - cifs: print session id while listing open files + - scsi: core: Add BLIST_SKIP_VPD_PAGES for SKhynix H28U74301AMR + - usb: dwc2: fix a devres leak in hw_enable upon suspend resume + - usb: gadget: u_audio: don't let userspace block driver unbind + - efi: sysfb_efi: Fix DMI quirks not working for simpledrm + - mm/slab: Fix undefined init_cache_node_node() for NUMA and !SMP + - fscrypt: destroy keyring after security_sb_delete() + - fsverity: Remove WQ_UNBOUND from fsverity read workqueue + - lockd: set file_lock start and end when decoding nlm4 testargs + - arm64: dts: imx8mm-nitrogen-r2: fix WM8960 clock name + - igb: revert rtnl_lock() that causes deadlock + - dm thin: fix deadlock when swapping to thin device + - usb: typec: tcpm: fix warning when handle discover_identity message + - usb: cdns3: Fix issue with using incorrect PCI device function + - usb: cdnsp: Fixes issue with redundant Status Stage + - usb: cdnsp: changes PCI Device ID to fix conflict with CNDS3 driver + - usb: chipdea: core: fix return -EINVAL if request role is the same with + current role + - usb: chipidea: core: fix possible concurrent when switch role + - usb: ucsi: Fix NULL pointer deref in ucsi_connector_change() + - kfence: avoid passing -g for test + - KVM: x86: hyper-v: Avoid calling kvm_make_vcpus_request_mask() with + vcpu_mask==NULL + - ksmbd: set FILE_NAMED_STREAMS attribute in FS_ATTRIBUTE_INFORMATION + - ksmbd: return STATUS_NOT_SUPPORTED on unsupported smb2.0 dialect + - ksmbd: return unsupported error on smb1 mount + - wifi: mac80211: fix qos on mesh interfaces + - nilfs2: fix kernel-infoleak in nilfs_ioctl_wrap_copy() + - drm/bridge: lt8912b: return EPROBE_DEFER if bridge is not found + - drm/meson: fix missing component unbind on bind errors + - drm/amdgpu/nv: Apply ASPM quirk on Intel ADL + AMD Navi + - drm/i915/active: Fix missing debug object activation + - drm/i915: Preserve crtc_state->inherited during state clearing + - riscv: mm: Fix incorrect ASID argument when flushing TLB + - riscv: Handle zicsr/zifencei issues between clang and binutils + - tee: amdtee: fix race condition in amdtee_open_session + - firmware: arm_scmi: Fix device node validation for mailbox transport + - i2c: xgene-slimpro: Fix out-of-bounds bug in xgene_slimpro_i2c_xfer() + - dm stats: check for and propagate alloc_percpu failure + - dm crypt: add cond_resched() to dmcrypt_write() + - dm crypt: avoid accessing uninitialized tasklet + - sched/fair: sanitize vruntime of entity being placed + - sched/fair: Sanitize vruntime of entity being migrated + - mm: kfence: fix using kfence_metadata without initialization in + show_object() + - ocfs2: fix data corruption after failed write + - Linux 5.15.105 + * Jammy update: v5.15.104 upstream stable release (LP: #2023225) + - xfrm: Allow transport-mode states with AF_UNSPEC selector + - drm/panfrost: Don't sync rpm suspension after mmu flushing + - cifs: Move the in_send statistic to __smb_send_rqst() + - drm/meson: fix 1px pink line on GXM when scaling video overlay + - clk: HI655X: select REGMAP instead of depending on it + - docs: Correct missing "d_" prefix for dentry_operations member + d_weak_revalidate + - scsi: mpt3sas: Fix NULL pointer access in mpt3sas_transport_port_add() + - ALSA: hda: Match only Intel devices with CONTROLLER_IN_GPU() + - netfilter: nft_nat: correct length for loading protocol registers + - netfilter: nft_masq: correct length for loading protocol registers + - netfilter: nft_redir: correct length for loading protocol registers + - netfilter: nft_redir: correct value of inet type `.maxattrs` + - scsi: core: Fix a procfs host directory removal regression + - tcp: tcp_make_synack() can be called from process context + - nfc: pn533: initialize struct pn533_out_arg properly + - ipvlan: Make skb->skb_iif track skb->dev for l3s mode + - i40e: Fix kernel crash during reboot when adapter is in recovery mode + - vdpa_sim: not reset state in vdpasim_queue_ready + - vdpa_sim: set last_used_idx as last_avail_idx in vdpasim_queue_ready + - PCI: s390: Fix use-after-free of PCI resources with per-function hotplug + - drm/i915/display: Workaround cursor left overs with PSR2 selective fetch + enabled + - drm/i915/display/psr: Use drm damage helpers to calculate plane damaged area + - drm/i915/display: clean up comments + - drm/i915/psr: Use calculated io and fast wake lines + - net/smc: fix NULL sndbuf_desc in smc_cdc_tx_handler() + - qed/qed_dev: guard against a possible division by zero + - net: dsa: mt7530: remove now incorrect comment regarding port 5 + - net: dsa: mt7530: set PLL frequency and trgmii only when trgmii is used + - loop: Fix use-after-free issues + - net: tunnels: annotate lockless accesses to dev->needed_headroom + - net: phy: smsc: bail out in lan87xx_read_status if genphy_read_status fails + - nfc: st-nci: Fix use after free bug in ndlc_remove due to race condition + - net/smc: fix deadlock triggered by cancel_delayed_work_syn() + - net: usb: smsc75xx: Limit packet length to skb->len + - drm/bridge: Fix returned array size name for atomic_get_input_bus_fmts kdoc + - block: null_blk: Fix handling of fake timeout request + - nvme: fix handling single range discard request + - nvmet: avoid potential UAF in nvmet_req_complete() + - block: sunvdc: add check for mdesc_grab() returning NULL + - ice: xsk: disable txq irq before flushing hw + - net: dsa: mv88e6xxx: fix max_mtu of 1492 on 6165, 6191, 6220, 6250, 6290 + - ravb: avoid PHY being resumed when interface is not up + - sh_eth: avoid PHY being resumed when interface is not up + - ipv4: Fix incorrect table ID in IOCTL path + - net: usb: smsc75xx: Move packet length check to prevent kernel panic in + skb_pull + - net/iucv: Fix size of interrupt data + - qed/qed_mng_tlv: correctly zero out ->min instead of ->hour + - ethernet: sun: add check for the mdesc_grab() + - bonding: restore IFF_MASTER/SLAVE flags on bond enslave ether type change + - bonding: restore bond's IFF_SLAVE flag if a non-eth dev enslave fails + - hwmon: (adt7475) Display smoothing attributes in correct order + - hwmon: (adt7475) Fix masking of hysteresis registers + - hwmon: (xgene) Fix use after free bug in xgene_hwmon_remove due to race + condition + - hwmon: (ina3221) return prober error code + - hwmon: (ucd90320) Add minimum delay between bus accesses + - hwmon: tmp512: drop of_match_ptr for ID table + - kconfig: Update config changed flag before calling callback + - hwmon: (adm1266) Set `can_sleep` flag for GPIO chip + - hwmon: (ltc2992) Set `can_sleep` flag for GPIO chip + - media: m5mols: fix off-by-one loop termination error + - mmc: atmel-mci: fix race between stop command and start of next command + - jffs2: correct logic when creating a hole in jffs2_write_begin + - ext4: fail ext4_iget if special inode unallocated + - ext4: update s_journal_inum if it changes after journal replay + - ext4: fix task hung in ext4_xattr_delete_inode + - drm/amdkfd: Fix an illegal memory access + - net/9p: fix bug in client create for .L + - sh: intc: Avoid spurious sizeof-pointer-div warning + - drm/amd/display: fix shift-out-of-bounds in CalculateVMAndRowBytes + - ext4: fix possible double unlock when moving a directory + - tty: serial: fsl_lpuart: skip waiting for transmission complete when + UARTCTRL_SBK is asserted + - serial: 8250_em: Fix UART port type + - serial: 8250_fsl: fix handle_irq locking + - firmware: xilinx: don't make a sleepable memory allocation from an atomic + context + - s390/ipl: add missing intersection check to ipl_report handling + - interconnect: fix mem leak when freeing nodes + - interconnect: exynos: fix node leak in probe PM QoS error path + - tracing: Make splice_read available again + - tracing: Check field value in hist_field_name() + - tracing: Make tracepoint lockdep check actually test something + - cifs: Fix smb2_set_path_size() + - ALSA: hda: intel-dsp-config: add MTL PCI id + - ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book2 Pro + - Revert "riscv: mm: notify remote harts about mmu cache updates" + - riscv: asid: Fixup stale TLB entry cause application crash + - drm/shmem-helper: Remove another errant put in error path + - drm/sun4i: fix missing component unbind on bind errors + - drm/amd/pm: Fix sienna cichlid incorrect OD volage after resume + - mptcp: fix possible deadlock in subflow_error_report + - mptcp: add ro_after_init for tcp{,v6}_prot_override + - mptcp: avoid setting TCP_CLOSE state twice + - mptcp: fix lockdep false positive in mptcp_pm_nl_create_listen_socket() + - ftrace: Fix invalid address access in lookup_rec() when index is 0 + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Netac NV3000 + - mm/userfaultfd: propagate uffd-wp bit when PTE-mapping the huge zeropage + - mmc: sdhci_am654: lower power-on failed message severity + - fbdev: stifb: Provide valid pixelclock and add fb_check_var() checks + - trace/hwlat: Do not wipe the contents of per-cpu thread data + - net: phy: nxp-c45-tja11xx: fix MII_BASIC_CONFIG_REV bit + - cpuidle: psci: Iterate backwards over list in psci_pd_remove() + - x86/mce: Make sure logged MCEs are processed after sysfs update + - x86/mm: Fix use of uninitialized buffer in sme_enable() + - x86/resctrl: Clear staged_config[] before and after it is used + - drm/i915: Don't use stolen memory for ring buffers with LLC + - drm/i915/active: Fix misuse of non-idle barriers as fence trackers + - io_uring: avoid null-ptr-deref in io_arm_poll_handler + - PCI: Unify delay handling for reset and resume + - PCI/DPC: Await readiness of secondary bus after reset + - HID: core: Provide new max_buffer_size attribute to over-ride the default + - HID: uhid: Over-ride the default maximum data buffer value with our own + - perf: Fix check before add_event_to_groups() in perf_group_detach() + - Linux 5.15.104 + * Jammy update: v5.15.103 upstream stable release (LP: #2023224) + - fs: prevent out-of-bounds array speculation when closing a file descriptor + - btrfs: fix percent calculation for bg reclaim message + - perf inject: Fix --buildid-all not to eat up MMAP2 + - fork: allow CLONE_NEWTIME in clone3 flags + - x86/CPU/AMD: Disable XSAVES on AMD family 0x17 + - drm/amdgpu: fix error checking in amdgpu_read_mm_registers for soc15 + - drm/connector: print max_requested_bpc in state debugfs + - staging: rtl8723bs: Pass correct parameters to cfg80211_get_bss() + - ext4: fix cgroup writeback accounting with fs-layer encryption + - ext4: fix RENAME_WHITEOUT handling for inline directories + - ext4: fix another off-by-one fsmap error on 1k block filesystems + - ext4: move where set the MAY_INLINE_DATA flag is set + - ext4: fix WARNING in ext4_update_inline_data + - ext4: zero i_disksize when initializing the bootloader inode + - nfc: change order inside nfc_se_io error path + - KVM: Optimize kvm_make_vcpus_request_mask() a bit + - KVM: Pre-allocate cpumasks for kvm_make_all_cpus_request_except() + - KVM: Register /dev/kvm as the _very_ last thing during initialization + - KVM: SVM: Don't rewrite guest ICR on AVIC IPI virtualization failure + - KVM: SVM: Process ICR on AVIC IPI delivery failure due to invalid target + - fs: dlm: fix log of lowcomms vs midcomms + - fs: dlm: add midcomms init/start functions + - fs: dlm: start midcomms before scand + - udf: Fix off-by-one error when discarding preallocation + - f2fs: avoid down_write on nat_tree_lock during checkpoint + - f2fs: do not bother checkpoint by f2fs_get_node_info + - f2fs: retry to update the inode page given data corruption + - ipmi:ssif: Increase the message retry time + - ipmi:ssif: Add a timer between request retries + - irqdomain: Refactor __irq_domain_alloc_irqs() + - iommu/vt-d: Fix PASID directory pointer coherency + - block/brd: add error handling support for add_disk() + - brd: mark as nowait compatible + - arm64: efi: Make efi_rt_lock a raw_spinlock + - RISC-V: Avoid dereferening NULL regs in die() + - riscv: Avoid enabling interrupts in die() + - riscv: Add header include guards to insn.h + - scsi: core: Remove the /proc/scsi/${proc_name} directory earlier + - regulator: Flag uncontrollable regulators as always_on + - regulator: core: Fix off-on-delay-us for always-on/boot-on regulators + - regulator: core: Use ktime_get_boottime() to determine how long a regulator + was off + - ext4: Fix possible corruption when moving a directory + - drm/nouveau/kms/nv50-: remove unused functions + - drm/nouveau/kms/nv50: fix nv50_wndw_new_ prototype + - drm/msm: Fix potential invalid ptr free + - drm/msm/a5xx: fix setting of the CP_PREEMPT_ENABLE_LOCAL register + - drm/msm/a5xx: fix highest bank bit for a530 + - drm/msm/a5xx: fix the emptyness check in the preempt code + - drm/msm/a5xx: fix context faults during ring switch + - bgmac: fix *initial* chip reset to support BCM5358 + - nfc: fdp: add null check of devm_kmalloc_array in + fdp_nci_i2c_read_device_properties + - powerpc: dts: t1040rdb: fix compatible string for Rev A boards + - ila: do not generate empty messages in ila_xlat_nl_cmd_get_mapping() + - selftests: nft_nat: ensuring the listening side is up before starting the + client + - perf stat: Fix counting when initial delay configured + - net: lan78xx: fix accessing the LAN7800's internal phy specific registers + from the MAC driver + - net: caif: Fix use-after-free in cfusbl_device_notify() + - ice: copy last block omitted in ice_get_module_eeprom() + - bpf, sockmap: Fix an infinite loop error when len is 0 in + tcp_bpf_recvmsg_parser() + - drm/msm/dpu: fix len of sc7180 ctl blocks + - net: stmmac: add to set device wake up flag when stmmac init phy + - net: phylib: get rid of unnecessary locking + - bnxt_en: Avoid order-5 memory allocation for TPA data + - netfilter: tproxy: fix deadlock due to missing BH disable + - btf: fix resolving BTF_KIND_VAR after ARRAY, STRUCT, UNION, PTR + - net: phy: smsc: Cache interrupt mask + - net: phy: smsc: fix link up detection in forced irq mode + - net: ethernet: mtk_eth_soc: fix RX data corruption issue + - scsi: megaraid_sas: Update max supported LD IDs to 240 + - platform: x86: MLX_PLATFORM: select REGMAP instead of depending on it + - net/smc: fix fallback failed while sendmsg with fastopen + - octeontx2-af: Unlock contexts in the queue context cache in case of fault + detection + - SUNRPC: Fix a server shutdown leak + - net: dsa: mt7530: permit port 5 to work without port 6 on MT7621 SoC + - af_unix: Remove unnecessary brackets around CONFIG_AF_UNIX_OOB. + - af_unix: fix struct pid leaks in OOB support + - riscv: Use READ_ONCE_NOCHECK in imprecise unwinding stack mode + - s390/ftrace: remove dead code + - RISC-V: Don't check text_mutex during stop_machine + - ext4: Fix deadlock during directory rename + - irqdomain: Fix mapping-creation race + - nbd: use the correct block_device in nbd_bdev_reset + - iommu/amd: Add PCI segment support for ivrs_[ioapic/hpet/acpihid] commands + - iommu/amd: Fix ill-formed ivrs_ioapic, ivrs_hpet and ivrs_acpihid options + - iommu/amd: Add a length limitation for the ivrs_acpihid command-line + parameter + - staging: rtl8723bs: clean up comparsions to NULL + - Staging: rtl8723bs: Placing opening { braces in previous line + - staging: rtl8723bs: fix placement of braces + - staging: rtl8723bs: Fix key-store index handling + - watch_queue: fix IOC_WATCH_QUEUE_SET_SIZE alloc error paths + - tpm/eventlog: Don't abort tpm_read_log on faulty ACPI address + - xfs: use setattr_copy to set vfs inode attributes + - xfs: remove XFS_PREALLOC_SYNC + - xfs: fallocate() should call file_modified() + - xfs: set prealloc flag in xfs_alloc_file_space() + - fs: add mode_strip_sgid() helper + - fs: move S_ISGID stripping into the vfs_*() helpers + - attr: add in_group_or_capable() + - fs: move should_remove_suid() + - attr: add setattr_should_drop_sgid() + - attr: use consistent sgid stripping checks + - fs: use consistent setgid checks in is_sxid() + - MIPS: Fix a compilation issue + - powerpc/iommu: fix memory leak with using debugfs_lookup() + - powerpc/kcsan: Exclude udelay to prevent recursive instrumentation + - alpha: fix R_ALPHA_LITERAL reloc for large modules + - macintosh: windfarm: Use unsigned type for 1-bit bitfields + - PCI: Add SolidRun vendor ID + - scripts: handle BrokenPipeError for python scripts + - media: ov5640: Fix analogue gain control + - media: rc: gpio-ir-recv: add remove function + - filelocks: use mount idmapping for setlease permission check + - ext4: refactor ext4_free_blocks() to pull out ext4_mb_clear_bb() + - ext4: add ext4_sb_block_valid() refactored out of ext4_inode_block_valid() + - ext4: add strict range checks while freeing blocks + - ext4: block range must be validated before use in ext4_mb_clear_bb() + - arch: fix broken BuildID for arm64 and riscv + - powerpc/vmlinux.lds: Define RUNTIME_DISCARD_EXIT + - powerpc/vmlinux.lds: Don't discard .rela* for relocatable builds + - s390: define RUNTIME_DISCARD_EXIT to fix link error with GNU ld < 2.36 + - sh: define RUNTIME_DISCARD_EXIT + - tools build: Add feature test for init_disassemble_info API changes + - tools include: add dis-asm-compat.h to handle version differences + - tools perf: Fix compilation error with new binutils + - tools bpf_jit_disasm: Fix compilation error with new binutils + - tools bpftool: Fix compilation error with new binutils + - KVM: fix memoryleak in kvm_init() + - xfs: remove xfs_setattr_time() declaration + - UML: define RUNTIME_DISCARD_EXIT + - fs: hold writers when changing mount's idmapping + - KVM: nVMX: Don't use Enlightened MSR Bitmap for L3 + - KVM: VMX: Introduce vmx_msr_bitmap_l01_changed() helper + - KVM: VMX: Fix crash due to uninitialized current_vmcs + - Makefile: use -gdwarf-{4|5} for assembler for DEBUG_INFO_DWARF{4|5} + - Linux 5.15.103 + * Jammy update: v5.15.102 upstream stable release (LP: #2020393) + - staging: rtl8192e: Remove function ..dm_check_ac_dc_power calling a script + - staging: rtl8192e: Remove call_usermodehelper starting RadioPower.sh + - Linux 5.15.102 + * Jammy update: v5.15.101 upstream stable release (LP: #2020391) + - Linux 5.15.101 + * Jammy update: v5.15.100 upstream stable release (LP: #2020387) + - auxdisplay: hd44780: Fix potential memory leak in hd44780_remove() + - fs/jfs: fix shift exponent db_agl2size negative + - objtool: Fix memory leak in create_static_call_sections() + - pwm: sifive: Reduce time the controller lock is held + - pwm: sifive: Always let the first pwm_apply_state succeed + - pwm: stm32-lp: fix the check on arr and cmp registers update + - f2fs: use memcpy_{to,from}_page() where possible + - fs: f2fs: initialize fsdata in pagecache_write() + - f2fs: allow set compression option of files without blocks + - um: vector: Fix memory leak in vector_config + - ubi: ensure that VID header offset + VID header size <= alloc, size + - ubifs: Fix build errors as symbol undefined + - ubifs: Rectify space budget for ubifs_symlink() if symlink is encrypted + - ubifs: Rectify space budget for ubifs_xrename() + - ubifs: Fix wrong dirty space budget for dirty inode + - ubifs: do_rename: Fix wrong space budget when target inode's nlink > 1 + - ubifs: Reserve one leb for each journal head while doing budget + - ubi: Fix use-after-free when volume resizing failed + - ubi: Fix unreferenced object reported by kmemleak in ubi_resize_volume() + - ubifs: Fix memory leak in alloc_wbufs() + - ubi: Fix possible null-ptr-deref in ubi_free_volume() + - ubifs: Re-statistic cleaned znode count if commit failed + - ubifs: ubifs_writepage: Mark page dirty after writing inode failed + - ubi: fastmap: Fix missed fm_anchor PEB in wear-leveling after disabling + fastmap + - ubi: Fix UAF wear-leveling entry in eraseblk_count_seq_show() + - ubi: ubi_wl_put_peb: Fix infinite loop when wear-leveling work failed + - f2fs: fix to avoid potential memory corruption in __update_iostat_latency() + - ext4: use ext4_fc_tl_mem in fast-commit replay path + - netfilter: nf_tables: allow to fetch set elements when table has an owner + - x86: um: vdso: Add '%rcx' and '%r11' to the syscall clobber list + - um: virtio_uml: free command if adding to virtqueue failed + - um: virtio_uml: mark device as unregistered when breaking it + - um: virtio_uml: move device breaking into workqueue + - um: virt-pci: properly remove PCI device from bus + - watchdog: at91sam9_wdt: use devm_request_irq to avoid missing free_irq() in + error path + - watchdog: Fix kmemleak in watchdog_cdev_register + - watchdog: pcwd_usb: Fix attempting to access uninitialized memory + - watchdog: sbsa_wdog: Make sure the timeout programming is within the limits + - netfilter: ctnetlink: fix possible refcount leak in + ctnetlink_create_conntrack() + - netfilter: ebtables: fix table blob use-after-free + - netfilter: x_tables: fix percpu counter block leak on error path when + creating new netns + - ipv6: Add lwtunnel encap size of all siblings in nexthop calculation + - sctp: add a refcnt in sctp_stream_priorities to avoid a nested loop + - octeontx2-pf: Use correct struct reference in test condition + - net: fix __dev_kfree_skb_any() vs drop monitor + - 9p/xen: fix version parsing + - 9p/xen: fix connection sequence + - 9p/rdma: unmap receive dma buffer in rdma_request()/post_recv() + - net/mlx5e: Verify flow_source cap before using it + - net/mlx5: Geneve, Fix handling of Geneve object id as error code + - nfc: fix memory leak of se_io context in nfc_genl_se_io + - net/sched: transition act_pedit to rcu and percpu stats + - net/sched: act_pedit: fix action bind logic + - net/sched: act_mpls: fix action bind logic + - net/sched: act_sample: fix action bind logic + - ARM: dts: spear320-hmi: correct STMPE GPIO compatible + - tcp: tcp_check_req() can be called from process context + - vc_screen: modify vcs_size() handling in vcs_read() + - rtc: sun6i: Always export the internal oscillator + - genirq: Refactor accessors to use irq_data_get_affinity_mask + - genirq: Add and use an irq_data_update_affinity helper + - scsi: ipr: Work around fortify-string warning + - rtc: allow rtc_read_alarm without read_alarm callback + - loop: loop_set_status_from_info() check before assignment + - ASoC: adau7118: don't disable regulators on device unbind + - ASoC: zl38060: Remove spurious gpiolib select + - ASoC: zl38060 add gpiolib dependency + - ASoC: mediatek: mt8195: add missing initialization + - thermal: intel: quark_dts: fix error pointer dereference + - thermal: intel: BXT_PMIC: select REGMAP instead of depending on it + - tracing: Add NULL checks for buffer in ring_buffer_free_read_page() + - kernel/printk/index.c: fix memory leak with using debugfs_lookup() + - firmware/efi sysfb_efi: Add quirk for Lenovo IdeaPad Duet 3 + - bootconfig: Increase max nodes of bootconfig from 1024 to 8192 for DCC + support + - mfd: arizona: Use pm_runtime_resume_and_get() to prevent refcnt leak + - IB/hfi1: Update RMT size calculation + - iommu/amd: Fix error handling for pdev_pri_ats_enable() + - media: uvcvideo: Remove format descriptions + - media: uvcvideo: Handle cameras with invalid descriptors + - media: uvcvideo: Handle errors from calls to usb_string + - media: uvcvideo: Quirk for autosuspend in Logitech B910 and C910 + - media: uvcvideo: Silence memcpy() run-time false positive warnings + - USB: fix memory leak with using debugfs_lookup() + - staging: emxx_udc: Add checks for dma_alloc_coherent() + - tty: fix out-of-bounds access in tty_driver_lookup_tty() + - tty: serial: fsl_lpuart: disable the CTS when send break signal + - serial: sc16is7xx: setup GPIO controller later in probe + - mei: bus-fixup:upon error print return values of send and receive + - tools/iio/iio_utils:fix memory leak + - iio: accel: mma9551_core: Prevent uninitialized variable in + mma9551_read_status_word() + - iio: accel: mma9551_core: Prevent uninitialized variable in + mma9551_read_config_word() + - soundwire: bus_type: Avoid lockdep assert in sdw_drv_probe() + - PCI: loongson: Prevent LS7A MRRS increases + - USB: dwc3: fix memory leak with using debugfs_lookup() + - USB: chipidea: fix memory leak with using debugfs_lookup() + - USB: uhci: fix memory leak with using debugfs_lookup() + - USB: sl811: fix memory leak with using debugfs_lookup() + - USB: fotg210: fix memory leak with using debugfs_lookup() + - USB: isp116x: fix memory leak with using debugfs_lookup() + - USB: isp1362: fix memory leak with using debugfs_lookup() + - USB: gadget: gr_udc: fix memory leak with using debugfs_lookup() + - USB: gadget: bcm63xx_udc: fix memory leak with using debugfs_lookup() + - USB: gadget: lpc32xx_udc: fix memory leak with using debugfs_lookup() + - USB: gadget: pxa25x_udc: fix memory leak with using debugfs_lookup() + - USB: gadget: pxa27x_udc: fix memory leak with using debugfs_lookup() + - usb: host: xhci: mvebu: Iterate over array indexes instead of using pointer + math + - USB: ene_usb6250: Allocate enough memory for full object + - usb: uvc: Enumerate valid values for color matching + - usb: gadget: uvc: Make bSourceID read/write + - PCI: Align extra resources for hotplug bridges properly + - PCI: Take other bus devices into account when distributing resources + - tty: pcn_uart: fix memory leak with using debugfs_lookup() + - misc: vmw_balloon: fix memory leak with using debugfs_lookup() + - drivers: base: component: fix memory leak with using debugfs_lookup() + - drivers: base: dd: fix memory leak with using debugfs_lookup() + - kernel/fail_function: fix memory leak with using debugfs_lookup() + - PCI: loongson: Add more devices that need MRRS quirk + - PCI: Add ACS quirk for Wangxun NICs + - phy: rockchip-typec: Fix unsigned comparison with less than zero + - soundwire: cadence: Remove wasted space in response_buf + - soundwire: cadence: Drain the RX FIFO after an IO timeout + - net: tls: avoid hanging tasks on the tx_lock + - x86/resctl: fix scheduler confusion with 'current' + - drm/display/dp_mst: Fix down/up message handling after sink disconnect + - drm/display/dp_mst: Fix down message handling after a packet reception error + - Bluetooth: hci_sock: purge socket queues in the destruct() callback + - media: uvcvideo: Fix race condition with usb_kill_urb + - drm/virtio: Fix error code in virtio_gpu_object_shmem_init() + - Revert "scsi: mpt3sas: Fix return value check of dma_get_required_mask()" + - scsi: mpt3sas: Don't change DMA mask while reallocating pools + - scsi: mpt3sas: re-do lost mpt3sas DMA mask fix + - scsi: mpt3sas: Remove usage of dma_get_required_mask() API + - malidp: Fix NULL vs IS_ERR() checking + - usb: gadget: uvc: fix missing mutex_unlock() if kstrtou8() fails + - Linux 5.15.100 + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + - [Packaging] update annotations scripts + + -- Tim Gardner Tue, 18 Jul 2023 13:00:46 -0600 + +linux-azure (5.15.0-1042.49) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1042.49 -proposed tracker (LP: #2026411) + + [ Ubuntu: 5.15.0-78.85 ] + + * jammy/linux: 5.15.0-78.85 -proposed tracker (LP: #2026448) + * CVE-2023-35001 + - netfilter: nf_tables: prevent OOB access in nft_byteorder_eval + * CVE-2023-31248 + - netfilter: nf_tables: do not ignore genmask when looking up chain by id + * CVE-2023-3389 + - io_uring: hold uring mutex around poll removal + * CVE-2023-3439 + - mctp: Add refcounts to mctp_dev + - mctp: Allow MCTP on tun devices + - mctp: make __mctp_dev_get() take a refcount hold + - mctp: defer the kfree of object mdev->addrs + * CVE-2023-3390 + - netfilter: nf_tables: incorrect error path handling with NFT_MSG_NEWRULE + * CVE-2023-3090 + - ipvlan:Fix out-of-bounds caused by unclear skb->cb + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + + -- Tim Gardner Tue, 11 Jul 2023 11:11:06 -0600 + +linux-azure (5.15.0-1041.48) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1041.48 -proposed tracker (LP: #2023869) + + [ Ubuntu: 5.15.0-76.83 ] + + * jammy/linux: 5.15.0-76.83 -proposed tracker (LP: #2023905) + * cls_flower: off-by-one in fl_set_geneve_opt (LP: #2023577) + - net/sched: flower: fix possible OOB write in fl_set_geneve_opt() + * Some INVLPG implementations can leave Global translations unflushed when + PCIDs are enabled (LP: #2023220) + - x86/mm: Avoid incomplete Global INVLPG flushes + + [ Ubuntu: 5.15.0-75.82 ] + + * jammy/linux: 5.15.0-75.82 -proposed tracker (LP: #2023065) + * Jammy update: v5.15.102 upstream stable release (LP: #2020393) + - wifi: cfg80211: Partial revert "wifi: cfg80211: Fix use after free for wext" + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] resync getabis + * fix typo in config-checks invocation (LP: #2020413) + - [Packaging] fix typo when calling the old config-check + - [Packaging] fix typo in 4-checks.mk + * support python < 3.9 with annotations (LP: #2020531) + - [Packaging] kconfig/annotations.py: support older way of merging dicts + + -- Tim Gardner Tue, 20 Jun 2023 14:12:26 -0600 + +linux-azure (5.15.0-1040.47) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1040.47 -proposed tracker (LP: #2019385) + + * Use new annotations model (LP: #2019000) + - [Config] azure: migrate all configs into annotations + + * fix typo in config-checks invocation (LP: #2020413) + - [Packaging] fix typo when calling the old config-check + - [Packaging] fix typo in 4-checks.mk + + * support python < 3.9 with annotations (LP: #2020531) + - [Packaging] kconfig/annotations.py: support older way of merging dicts + + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] resync getabis + + * Azure: Limit Hyperv error messages (LP: #2019009) + - drm/hyperv: Don't overwrite dirt_needed value set by host + - drm/hyperv: Add ratelimit on error message + + * Azure: Enable MANA Jumbo Frame Support reprise (LP: #2018593) + - net: mana: Rename mana_refill_rxoob and remove some empty lines + - net: mana: Check if netdev/napi_alloc_frag returns single page + + * Miscellaneous Ubuntu changes + - [Config] azure: Ignore ABI + + [ Ubuntu: 5.15.0-74.81 ] + + * jammy/linux: 5.15.0-74.81 -proposed tracker (LP: #2019420) + * smartpqi: Update 22.04 driver to include recent bug fixes and support + current generation devices (LP: #1998643) + - scsi: smartpqi: Switch to attribute groups + - scsi: smartpqi: Fix rmmod stack trace + - scsi: smartpqi: Add PCI IDs + - scsi: smartpqi: Enable SATA NCQ priority in sysfs + - scsi: smartpqi: Eliminate drive spin down on warm boot + - scsi: smartpqi: Quickly propagate path failures to SCSI midlayer + - scsi: smartpqi: Fix a name typo and cleanup code + - scsi: smartpqi: Fix a typo in func pqi_aio_submit_io() + - scsi: smartpqi: Resolve delay issue with PQI_HZ value + - scsi: smartpqi: Avoid drive spin-down during suspend + - scsi: smartpqi: Update volume size after expansion + - scsi: smartpqi: Speed up RAID 10 sequential reads + - scsi: smartpqi: Expose SAS address for SATA drives + - scsi: smartpqi: Fix NUMA node not updated during init + - scsi: smartpqi: Fix BUILD_BUG_ON() statements + - scsi: smartpqi: Fix hibernate and suspend + - scsi: smartpqi: Fix lsscsi -t SAS addresses + - scsi: smartpqi: Update version to 2.1.14-035 + - scsi: smartpqi: Fix unused variable pqi_pm_ops for clang + - scsi: smartpqi: Stop using the SCSI pointer + - scsi: smartpqi: Fix typo in comment + - scsi: smartpqi: Shorten drive visibility after removal + - scsi: smartpqi: Add controller fw version to console log + - scsi: smartpqi: Add PCI IDs for ramaxel controllers + - scsi: smartpqi: Close write read holes + - scsi: smartpqi: Add driver support for multi-LUN devices + - scsi: smartpqi: Fix PCI control linkdown system hang + - scsi: smartpqi: Add PCI ID for Adaptec SmartHBA 2100-8i + - scsi: smartpqi: Add PCI IDs for Lenovo controllers + - scsi: smartpqi: Stop logging spurious PQI reset failures + - scsi: smartpqi: Fix RAID map race condition + - scsi: smartpqi: Add module param to disable managed ints + - scsi: smartpqi: Update deleting a LUN via sysfs + - scsi: smartpqi: Add ctrl ready timeout module parameter + - scsi: smartpqi: Update copyright to current year + - scsi: smartpqi: Update version to 2.1.18-045 + - scsi: smartpqi: Convert to host_tagset + - scsi: smartpqi: Add new controller PCI IDs + - scsi: smartpqi: Correct max LUN number + - scsi: smartpqi: Change sysfs raid_level attribute to N/A for controllers + - scsi: smartpqi: Correct device removal for multi-actuator devices + - scsi: smartpqi: Add controller cache flush during rmmod + - scsi: smartpqi: Initialize feature section info + - scsi: smartpqi: Change version to 2.1.20-035 + * CVE-2023-32233 + - netfilter: nf_tables: deactivate anonymous set from preparation phase + * CVE-2023-2612 + - SAUCE: shiftfs: prevent lock unbalance in shiftfs_create_object() + * CVE-2023-31436 + - net: sched: sch_qfq: prevent slab-out-of-bounds in qfq_activate_agg + * CVE-2023-1380 + - wifi: brcmfmac: slab-out-of-bounds read in brcmf_get_assoc_ies() + * Add PPIN support for Intel EMR cpu (LP: #2019131) + - x86/cpu: Merge Intel and AMD ppin_init() functions + - x86/cpu: Add Xeon Emerald Rapids to list of CPUs that support PPIN + * conntrack mark is not advertised via netlink (LP: #2016269) + - netfilter: ctnetlink: revert to dumping mark regardless of event type + * [SRU] Backport request for hpwdt from upstream 6.1 to Jammy (LP: #2008751) + - watchdog/hpwdt: Enable HP_WATCHDOG for ARM64 systems. + - watchdog/hpwdt: Include nmi.h only if CONFIG_HPWDT_NMI_DECODING + - [Config] Add arm64 option to CONFIG_HP_WATCHDOG + * Ubuntu 22.04 raise abnormal NIC MSI-X requests with larger CPU cores (256) + (LP: #2012335) + - ice: Allow operation with reduced device MSI-X + * Dell: Enable speaker mute hotkey LED indicator (LP: #2015972) + - platform/x86: dell-laptop: Register ctl-led for speaker-mute + * [SRU]With "Performance per Watt (DAPC)" enabled in the BIOS, Bootup time is + taking longer than expected (LP: #2008527) + - cpufreq: ACPI: Defer setting boost MSRs + * [SRU][Jammy] CONFIG_PCI_MESON is not enabled (LP: #2007745) + - [Config] arm64: Enable PCI_MESON module + * Jammy update: v5.15.99 upstream stable release (LP: #2018438) + - HID: asus: use spinlock to protect concurrent accesses + - HID: asus: use spinlock to safely schedule workers + - powerpc/mm: Rearrange if-else block to avoid clang warning + - ARM: OMAP2+: Fix memory leak in realtime_counter_init() + - arm64: dts: qcom: qcs404: use symbol names for PCIe resets + - arm64: dts: qcom: msm8996-tone: Fix USB taking 6 minutes to wake up + - arm64: dts: qcom: sm8150-kumano: Panel framebuffer is 2.5k instead of 4k + - arm64: dts: qcom: sm6125: Reorder HSUSB PHY clocks to match bindings + - arm64: dts: imx8m: Align SoC unique ID node unit address + - ARM: zynq: Fix refcount leak in zynq_early_slcr_init + - arm64: dts: mediatek: mt8183: Fix systimer 13 MHz clock description + - arm64: dts: qcom: sdm845-db845c: fix audio codec interrupt pin name + - arm64: dts: qcom: sc7180: correct SPMI bus address cells + - arm64: dts: qcom: sc7280: correct SPMI bus address cells + - arm64: dts: meson-gx: Fix Ethernet MAC address unit name + - arm64: dts: meson-g12a: Fix internal Ethernet PHY unit name + - arm64: dts: meson-gx: Fix the SCPI DVFS node name and unit address + - arm64: dts: msm8992-bullhead: add memory hole region + - arm64: dts: qcom: msm8992-bullhead: Fix cont_splash_mem size + - arm64: dts: qcom: msm8992-bullhead: Disable dfps_data_mem + - arm64: dts: qcom: ipq8074: correct USB3 QMP PHY-s clock output names + - arm64: dts: qcom: Fix IPQ8074 PCIe PHY nodes + - arm64: dts: qcom: ipq8074: fix PCIe PHY serdes size + - arm64: dts: qcom: ipq8074: fix Gen3 PCIe QMP PHY + - arm64: dts: qcom: ipq8074: correct Gen2 PCIe ranges + - arm64: dts: qcom: ipq8074: fix Gen3 PCIe node + - arm64: dts: qcom: ipq8074: correct PCIe QMP PHY output clock names + - arm64: dts: meson: remove CPU opps below 1GHz for G12A boards + - ARM: OMAP1: call platform_device_put() in error case in + omap1_dm_timer_init() + - ARM: bcm2835_defconfig: Enable the framebuffer + - ARM: s3c: fix s3c64xx_set_timer_source prototype + - arm64: dts: ti: k3-j7200: Fix wakeup pinmux range + - ARM: dts: exynos: correct wr-active property in Exynos3250 Rinato + - ARM: imx: Call ida_simple_remove() for ida_simple_get + - arm64: dts: amlogic: meson-gx: fix SCPI clock dvfs node name + - arm64: dts: amlogic: meson-axg: fix SCPI clock dvfs node name + - arm64: dts: amlogic: meson-gx: add missing SCPI sensors compatible + - arm64: dts: amlogic: meson-gxl-s905d-sml5442tw: drop invalid clock-names + property + - arm64: dts: amlogic: meson-gx: add missing unit address to rng node name + - arm64: dts: amlogic: meson-gxl: add missing unit address to eth-phy-mux node + name + - arm64: dts: amlogic: meson-gx-libretech-pc: fix update button name + - arm64: dts: amlogic: meson-sm1-bananapi-m5: fix adc keys node names + - arm64: dts: amlogic: meson-gxl-s905d-phicomm-n1: fix led node name + - arm64: dts: amlogic: meson-gxbb-kii-pro: fix led node name + - arm64: dts: amlogic: meson-sm1-odroid-hc4: fix active fan thermal trip + - locking/rwsem: Optimize down_read_trylock() under highly contended case + - locking/rwsem: Disable preemption in all down_read*() and up_read() code + paths + - arm64: dts: renesas: beacon-renesom: Fix gpio expander reference + - arm64: dts: meson: bananapi-m5: switch VDDIO_C pin to OPEN_DRAIN + - ARM: dts: sun8i: nanopi-duo2: Fix regulator GPIO reference + - ARM: dts: imx7s: correct iomuxc gpr mux controller cells + - arm64: dts: mt8192: Fix CPU map for single-cluster SoC + - arm64: dts: mediatek: mt7622: Add missing pwm-cells to pwm node + - blk-mq: avoid sleep in blk_mq_alloc_request_hctx + - blk-mq: remove stale comment for blk_mq_sched_mark_restart_hctx + - blk-mq: correct stale comment of .get_budget + - arm64: dts: qcom: msm8992-lg-bullhead: Correct memory overlaps with the SMEM + and MPSS memory regions + - s390/dasd: Fix potential memleak in dasd_eckd_init() + - sched/deadline,rt: Remove unused parameter from pick_next_[rt|dl]_entity() + - sched/rt: pick_next_rt_entity(): check list_entry + - x86/perf/zhaoxin: Add stepping check for ZXC + - KEYS: asymmetric: Fix ECDSA use via keyctl uapi + - arm64: dts: qcom: pmk8350: Specify PBS register for PON + - arm64: dts: qcom: pmk8350: Use the correct PON compatible + - block: bio-integrity: Copy flags when bio_integrity_payload is cloned + - wifi: rsi: Fix memory leak in rsi_coex_attach() + - wifi: rtlwifi: rtl8821ae: don't call kfree_skb() under spin_lock_irqsave() + - wifi: rtlwifi: rtl8188ee: don't call kfree_skb() under spin_lock_irqsave() + - wifi: rtlwifi: rtl8723be: don't call kfree_skb() under spin_lock_irqsave() + - wifi: iwlegacy: common: don't call dev_kfree_skb() under spin_lock_irqsave() + - wifi: libertas: fix memory leak in lbs_init_adapter() + - wifi: rtl8xxxu: don't call dev_kfree_skb() under spin_lock_irqsave() + - wifi: rtlwifi: Fix global-out-of-bounds bug in + _rtl8812ae_phy_set_txpower_limit() + - libbpf: Fix btf__align_of() by taking into account field offsets + - wifi: ipw2x00: don't call dev_kfree_skb() under spin_lock_irqsave() + - wifi: ipw2200: fix memory leak in ipw_wdev_init() + - wifi: wilc1000: fix potential memory leak in wilc_mac_xmit() + - wifi: brcmfmac: fix potential memory leak in brcmf_netdev_start_xmit() + - wifi: brcmfmac: unmap dma buffer in brcmf_msgbuf_alloc_pktid() + - wifi: libertas_tf: don't call kfree_skb() under spin_lock_irqsave() + - wifi: libertas: if_usb: don't call kfree_skb() under spin_lock_irqsave() + - wifi: libertas: main: don't call kfree_skb() under spin_lock_irqsave() + - wifi: libertas: cmdresp: don't call kfree_skb() under spin_lock_irqsave() + - wifi: wl3501_cs: don't call kfree_skb() under spin_lock_irqsave() + - crypto: x86/ghash - fix unaligned access in ghash_setkey() + - ACPICA: Drop port I/O validation for some regions + - genirq: Fix the return type of kstat_cpu_irqs_sum() + - rcu-tasks: Improve comments explaining tasks_rcu_exit_srcu purpose + - rcu-tasks: Remove preemption disablement around srcu_read_[un]lock() calls + - rcu-tasks: Fix synchronize_rcu_tasks() VS zap_pid_ns_processes() + - lib/mpi: Fix buffer overrun when SG is too long + - crypto: ccp - Avoid page allocation failure warning for SEV_GET_ID2 + - ACPICA: nsrepair: handle cases without a return value correctly + - thermal/drivers/tsens: Drop msm8976-specific defines + - thermal/drivers/tsens: Add compat string for the qcom,msm8960 + - thermal/drivers/tsens: Sort out msm8976 vs msm8956 data + - thermal/drivers/tsens: fix slope values for msm8939 + - thermal/drivers/tsens: limit num_sensors to 9 for msm8939 + - wifi: rtl8xxxu: Fix memory leaks with RTL8723BU, RTL8192EU + - wifi: orinoco: check return value of hermes_write_wordrec() + - wifi: ath9k: htc_hst: free skb in ath9k_htc_rx_msg() if there is no callback + function + - ath9k: hif_usb: simplify if-if to if-else + - ath9k: htc: clean up statistics macros + - wifi: ath9k: hif_usb: clean up skbs if ath9k_hif_usb_rx_stream() fails + - wifi: ath9k: Fix potential stack-out-of-bounds write in + ath9k_wmi_rsp_callback() + - wifi: ath11k: Fix memory leak in ath11k_peer_rx_frag_setup + - wifi: cfg80211: Fix extended KCK key length check in + nl80211_set_rekey_data() + - ACPI: battery: Fix missing NUL-termination with large strings + - crypto: ccp - Failure on re-initialization due to duplicate sysfs filename + - crypto: essiv - Handle EBUSY correctly + - crypto: seqiv - Handle EBUSY correctly + - powercap: fix possible name leak in powercap_register_zone() + - x86: Mark stop_this_cpu() __noreturn + - x86/microcode: Rip out the OLD_INTERFACE + - [Config] Drop MICROCODE_OLD_INTERFACE + - x86/microcode: Default-disable late loading + - x86/microcode: Print previous version of microcode after reload + - x86/microcode: Add a parameter to microcode_check() to store CPU + capabilities + - x86/microcode: Check CPU capabilities after late microcode update correctly + - x86/microcode: Adjust late loading result reporting message + - crypto: xts - Handle EBUSY correctly + - leds: led-class: Add missing put_device() to led_put() + - crypto: ccp - Refactor out sev_fw_alloc() + - crypto: ccp - Flush the SEV-ES TMR memory before giving it to firmware + - bpftool: profile online CPUs instead of possible + - mt76: mt7915: fix polling firmware-own status + - net/mlx5: Enhance debug print in page allocation failure + - irqchip: Fix refcount leak in platform_irqchip_probe + - irqchip/alpine-msi: Fix refcount leak in alpine_msix_init_domains + - irqchip/irq-mvebu-gicp: Fix refcount leak in mvebu_gicp_probe + - irqchip/ti-sci: Fix refcount leak in ti_sci_intr_irq_domain_probe + - s390/mem_detect: fix detect_memory() error handling + - s390/vmem: fix empty page tables cleanup under KASAN + - net: add sock_init_data_uid() + - tun: tun_chr_open(): correctly initialize socket uid + - tap: tap_open(): correctly initialize socket uid + - OPP: fix error checking in opp_migrate_dentry() + - Bluetooth: L2CAP: Fix potential user-after-free + - Bluetooth: hci_qca: get wakeup status from serdev device handle + - s390/ap: fix status returned by ap_aqic() + - s390/ap: fix status returned by ap_qact() + - libbpf: Fix alen calculation in libbpf_nla_dump_errormsg() + - rds: rds_rm_zerocopy_callback() correct order for list_add_tail() + - crypto: rsa-pkcs1pad - Use akcipher_request_complete + - m68k: /proc/hardware should depend on PROC_FS + - RISC-V: time: initialize hrtimer based broadcast clock event device + - wifi: iwl3945: Add missing check for create_singlethread_workqueue + - wifi: iwl4965: Add missing check for create_singlethread_workqueue() + - wifi: mwifiex: fix loop iterator in mwifiex_update_ampdu_txwinsize() + - selftests/bpf: Fix out-of-srctree build + - ACPI: resource: Add IRQ overrides for MAINGEAR Vector Pro 2 models + - ACPI: resource: Do IRQ override on all TongFang GMxRGxx + - crypto: crypto4xx - Call dma_unmap_page when done + - wifi: mac80211: make rate u32 in sta_set_rate_info_rx() + - thermal/drivers/hisi: Drop second sensor hi3660 + - can: esd_usb: Move mislocated storage of SJA1000_ECC_SEG bits in case of a + bus error + - bpf: Fix global subprog context argument resolution logic + - irqchip/irq-brcmstb-l2: Set IRQ_LEVEL for level triggered interrupts + - irqchip/irq-bcm7120-l2: Set IRQ_LEVEL for level triggered interrupts + - selftests/net: Interpret UDP_GRO cmsg data as an int value + - l2tp: Avoid possible recursive deadlock in l2tp_tunnel_register() + - net: bcmgenet: fix MoCA LED control + - sefltests: netdevsim: wait for devlink instance after netns removal + - drm: Fix potential null-ptr-deref due to drmm_mode_config_init() + - drm/fourcc: Add missing big-endian XRGB1555 and RGB565 formats + - drm/bridge: ti-sn65dsi83: Fix delay after reset deassert to match spec + - drm: mxsfb: DRM_MXSFB should depend on ARCH_MXS || ARCH_MXC + - [Config] Drop DRM_MXSFB for armhf-generic-lpae + - drm/bridge: megachips: Fix error handling in i2c_register_driver() + - drm/vkms: Fix memory leak in vkms_init() + - drm/vkms: Fix null-ptr-deref in vkms_release() + - drm/vc4: dpi: Add option for inverting pixel clock and output enable + - drm/vc4: dpi: Fix format mapping for RGB565 + - drm: tidss: Fix pixel format definition + - gpu: ipu-v3: common: Add of_node_put() for reference returned by + of_graph_get_port_by_id() + - hwmon: (ftsteutates) Fix scaling of measurements + - drm/msm/hdmi: Add missing check for alloc_ordered_workqueue + - pinctrl: qcom: pinctrl-msm8976: Correct function names for wcss pins + - pinctrl: stm32: Fix refcount leak in stm32_pctrl_get_irq_domain + - pinctrl: rockchip: Fix refcount leak in rockchip_pinctrl_parse_groups + - drm/vc4: hvs: Set AXI panic modes + - drm/vc4: hvs: Fix colour order for xRGB1555 on HVS5 + - drm/vc4: hdmi: Correct interlaced timings again + - drm/msm: clean event_thread->worker in case of an error + - scsi: qla2xxx: edif: Fix I/O timeout due to over-subscription + - scsi: qla2xxx: Fix exchange oversubscription + - scsi: qla2xxx: Fix exchange oversubscription for management commands + - ASoC: fsl_sai: Update to modern clocking terminology + - ASoC: fsl_sai: initialize is_dsp_mode flag + - drm/msm/adreno: Fix null ptr access in adreno_gpu_cleanup() + - ALSA: hda/ca0132: minor fix for allocation size + - drm/msm/gem: Add check for kmalloc + - drm/msm/dpu: Disallow unallocated resources to be returned + - drm/bridge: lt9611: fix sleep mode setup + - drm/bridge: lt9611: fix HPD reenablement + - drm/bridge: lt9611: fix polarity programming + - drm/bridge: lt9611: fix programming of video modes + - drm/bridge: lt9611: fix clock calculation + - drm/bridge: lt9611: pass a pointer to the of node + - drm/mipi-dsi: Fix byte order of 16-bit DCS set/get brightness + - drm: exynos: dsi: Fix MIPI_DSI*_NO_* mode flags + - drm/msm/dsi: Allow 2 CTRLs on v2.5.0 + - drm/msm: use strscpy instead of strncpy + - drm/msm/dpu: Add check for cstate + - drm/msm/dpu: Add check for pstates + - drm/msm/mdp5: Add check for kzalloc + - pinctrl: bcm2835: Remove of_node_put() in bcm2835_of_gpio_ranges_fallback() + - pinctrl: mediatek: fix coding style + - pinctrl: mediatek: Initialize variable pullen and pullup to zero + - pinctrl: mediatek: Initialize variable *buf to zero + - gpu: host1x: Don't skip assigning syncpoints to channels + - drm/tegra: firewall: Check for is_addr_reg existence in IMM check + - drm/msm/dpu: set pdpu->is_rt_pipe early in dpu_plane_sspp_atomic_update() + - drm/mediatek: dsi: Reduce the time of dsi from LP11 to sending cmd + - drm/mediatek: Use NULL instead of 0 for NULL pointer + - drm/mediatek: Drop unbalanced obj unref + - drm/mediatek: mtk_drm_crtc: Add checks for devm_kcalloc + - drm/mediatek: Clean dangling pointer on bind error path + - ASoC: soc-compress.c: fixup private_data on snd_soc_new_compress() + - gpio: vf610: connect GPIO label to dev name + - spi: dw_bt1: fix MUX_MMIO dependencies + - ASoC: mchp-spdifrx: fix controls which rely on rsr register + - ASoC: mchp-spdifrx: fix return value in case completion times out + - ASoC: mchp-spdifrx: fix controls that works with completion mechanism + - ASoC: mchp-spdifrx: disable all interrupts in mchp_spdifrx_dai_remove() + - ASoC: rsnd: fixup #endif position + - ASoC: mchp-spdifrx: Fix uninitialized use of mr in mchp_spdifrx_hw_params() + - ASoC: dt-bindings: meson: fix gx-card codec node regex + - hwmon: (ltc2945) Handle error case in ltc2945_value_store + - drm/amdgpu: fix enum odm_combine_mode mismatch + - scsi: mpt3sas: Fix a memory leak + - scsi: aic94xx: Add missing check for dma_map_single() + - HID: multitouch: Add quirks for flipped axes + - HID: retain initial quirks set up when creating HID devices + - ASoC: codecs: Change bulk clock voting to optional voting in digital codecs + - ASoC: codecs: rx-macro: move clk provider to managed variants + - ASoC: codecs: tx-macro: move clk provider to managed variants + - ASoC: codecs: rx-macro: move to individual clks from bulk + - ASoC: codecs: tx-macro: move to individual clks from bulk + - ASoC: codecs: lpass: fix incorrect mclk rate + - spi: bcm63xx-hsspi: Fix multi-bit mode setting + - hwmon: (mlxreg-fan) Return zero speed for broken fan + - ASoC: tlv320adcx140: fix 'ti,gpio-config' DT property init + - dm: remove flush_scheduled_work() during local_exit() + - NFSv4: keep state manager thread active if swap is enabled + - nfs4trace: fix state manager flag printing + - NFS: fix disabling of swap + - spi: synquacer: Fix timeout handling in synquacer_spi_transfer_one() + - ASoC: soc-dapm.h: fixup warning struct snd_pcm_substream not declared + - HID: bigben: use spinlock to protect concurrent accesses + - HID: bigben_worker() remove unneeded check on report_field + - HID: bigben: use spinlock to safely schedule workers + - hid: bigben_probe(): validate report count + - drm/shmem-helper: Fix locking for drm_gem_shmem_get_pages_sgt() + - nfsd: fix race to check ls_layouts + - cifs: Fix lost destroy smbd connection when MR allocate failed + - cifs: Fix warning and UAF when destroy the MR list + - gfs2: jdata writepage fix + - perf llvm: Fix inadvertent file creation + - leds: led-core: Fix refcount leak in of_led_get() + - perf inject: Use perf_data__read() for auxtrace + - perf intel-pt: Add documentation for Event Trace and TNT disable + - perf intel-pt: Add link to the perf wiki's Intel PT page + - perf intel-pt: Add support for emulated ptwrite + - perf intel-pt: Do not try to queue auxtrace data on pipe + - perf tools: Fix auto-complete on aarch64 + - sparc: allow PM configs for sparc32 COMPILE_TEST + - printf: fix errname.c list + - objtool: add UACCESS exceptions for __tsan_volatile_read/write + - mfd: cs5535: Don't build on UML + - mfd: pcf50633-adc: Fix potential memleak in pcf50633_adc_async_read() + - dmaengine: idxd: Set traffic class values in GRPCFG on DSA 2.0 + - dmaengine: HISI_DMA should depend on ARCH_HISI + - [Config] Add HISI_DMA=n for armhf + - iio: light: tsl2563: Do not hardcode interrupt trigger type + - usb: gadget: fusb300_udc: free irq on the error path in fusb300_probe() + - i2c: designware: fix i2c_dw_clk_rate() return size to be u32 + - soundwire: cadence: Don't overflow the command FIFOs + - driver core: fix potential null-ptr-deref in device_add() + - kobject: modify kobject_get_path() to take a const * + - kobject: Fix slab-out-of-bounds in fill_kobj_path() + - alpha/boot/tools/objstrip: fix the check for ELF header + - media: uvcvideo: Do not check for V4L2_CTRL_WHICH_DEF_VAL + - media: uvcvideo: Remove s_ctrl and g_ctrl + - media: uvcvideo: refactor __uvc_ctrl_add_mapping + - media: uvcvideo: Add support for V4L2_CTRL_TYPE_CTRL_CLASS + - media: uvcvideo: Use control names from framework + - media: uvcvideo: Check controls flags before accessing them + - media: uvcvideo: Check for INACTIVE in uvc_ctrl_is_accessible() + - coresight: etm4x: Fix accesses to TRCSEQRSTEVR and TRCSEQSTR + - coresight: cti: Prevent negative values of enable count + - coresight: cti: Add PM runtime call in enable_store + - ACPI: resource: Add helper function acpi_dev_get_memory_resources() + - usb: typec: intel_pmc_mux: Use the helper acpi_dev_get_memory_resources() + - usb: typec: intel_pmc_mux: Don't leak the ACPI device reference count + - PCI/IOV: Enlarge virtfn sysfs name buffer + - PCI: switchtec: Return -EFAULT for copy_to_user() errors + - tty: serial: fsl_lpuart: disable Rx/Tx DMA in lpuart32_shutdown() + - tty: serial: fsl_lpuart: clear LPUART Status Register in lpuart32_shutdown() + - serial: tegra: Add missing clk_disable_unprepare() in tegra_uart_hw_init() + - Revert "char: pcmcia: cm4000_cs: Replace mdelay with usleep_range in + set_protocol" + - eeprom: idt_89hpesx: Fix error handling in idt_init() + - applicom: Fix PCI device refcount leak in applicom_init() + - firmware: stratix10-svc: add missing gen_pool_destroy() in + stratix10_svc_drv_probe() + - VMCI: check context->notify_page after call to get_user_pages_fast() to + avoid GPF + - misc/mei/hdcp: Use correct macros to initialize uuid_le + - driver core: fix resource leak in device_add() + - drivers: base: transport_class: fix possible memory leak + - drivers: base: transport_class: fix resource leak when + transport_add_device() fails + - firmware: dmi-sysfs: Fix null-ptr-deref in dmi_sysfs_register_handle + - fotg210-udc: Add missing completion handler + - dmaengine: dw-edma: Fix missing src/dst address of interleaved xfers + - usb: early: xhci-dbc: Fix a potential out-of-bound memory access + - tty: serial: fsl_lpuart: Fix the wrong RXWATER setting for rx dma case + - RDMA/cxgb4: add null-ptr-check after ip_dev_find() + - usb: musb: mediatek: don't unregister something that wasn't registered + - usb: gadget: configfs: use to_config_usb_cfg() in os_desc_link() + - usb: gadget: configfs: use to_usb_function_instance() in cfg (un)link func + - usb: gadget: configfs: remove using list iterator after loop body as a ptr + - usb: gadget: configfs: Restrict symlink creation is UDC already binded + - iommu/vt-d: Set No Execute Enable bit in PASID table entry + - power: supply: remove faulty cooling logic + - RDMA/cxgb4: Fix potential null-ptr-deref in pass_establish() + - usb: max-3421: Fix setting of I/O pins + - RDMA/irdma: Cap MSIX used to online CPUs + 1 + - serial: fsl_lpuart: fix RS485 RTS polariy inverse issue + - tty: serial: imx: Handle RS485 DE signal active high + - tty: serial: imx: disable Ageing Timer interrupt request irq + - dmaengine: dw-edma: Fix readq_ch() return value truncation + - phy: rockchip-typec: fix tcphy_get_mode error case + - iw_cxgb4: Fix potential NULL dereference in c4iw_fill_res_cm_id_entry() + - iommu: Fix error unwind in iommu_group_alloc() + - dmaengine: sf-pdma: pdma_desc memory leak fix + - dmaengine: dw-axi-dmac: Do not dereference NULL structure + - iommu/vt-d: Fix error handling in sva enable/disable paths + - iommu/vt-d: Remove duplicate identity domain flag + - iommu/vt-d: Check FL and SL capability sanity in scalable mode + - iommu/vt-d: Use second level for GPA->HPA translation + - iommu/vt-d: Allow to use flush-queue when first level is default + - IB/hfi1: Fix math bugs in hfi1_can_pin_pages() + - IB/hfi1: Fix sdma.h tx->num_descs off-by-one errors + - remoteproc: qcom_q6v5_mss: Use a carveout to authenticate modem headers + - media: ti: cal: fix possible memory leak in cal_ctx_create() + - media: platform: ti: Add missing check for devm_regulator_get + - powerpc: Remove linker flag from KBUILD_AFLAGS + - s390/vdso: remove -nostdlib compiler flag + - s390/vdso: Drop '-shared' from KBUILD_CFLAGS_64 + - builddeb: clean generated package content + - media: max9286: Fix memleak in max9286_v4l2_register() + - media: ov2740: Fix memleak in ov2740_init_controls() + - media: ov5675: Fix memleak in ov5675_init_controls() + - media: i2c: ov772x: Fix memleak in ov772x_probe() + - media: i2c: imx219: Split common registers from mode tables + - media: i2c: imx219: Fix binning for RAW8 capture + - media: v4l2-jpeg: correct the skip count in jpeg_parse_app14_data + - media: v4l2-jpeg: ignore the unknown APP14 marker + - media: imx-jpeg: Apply clk_bulk api instead of operating specific clk + - media: i2c: ov7670: 0 instead of -EINVAL was returned + - media: usb: siano: Fix use after free bugs caused by do_submit_urb + - media: saa7134: Use video_unregister_device for radio_dev + - rpmsg: glink: Avoid infinite loop on intent for missing channel + - udf: Define EFSCORRUPTED error code + - ARM: dts: exynos: Use Exynos5420 compatible for the MIPI video phy + - blk-iocost: fix divide by 0 error in calc_lcoefs() + - trace/blktrace: fix memory leak with using debugfs_lookup() + - wifi: ath9k: Fix use-after-free in ath9k_hif_usb_disconnect() + - wifi: brcmfmac: Fix potential stack-out-of-bounds in brcmf_c_preinit_dcmds() + - rcu: Make RCU_LOCKDEP_WARN() avoid early lockdep checks + - rcu: Suppress smp_processor_id() complaint in + synchronize_rcu_expedited_wait() + - rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug + - wifi: ath11k: debugfs: fix to work with multiple PCI devices + - thermal: intel: Fix unsigned comparison with less than zero + - timers: Prevent union confusion from unexpected restart_syscall() + - x86/bugs: Reset speculation control settings on init + - wifi: brcmfmac: ensure CLM version is null-terminated to prevent stack-out- + of-bounds + - wifi: mt7601u: fix an integer underflow + - inet: fix fast path in __inet_hash_connect() + - ice: restrict PTP HW clock freq adjustments to 100, 000, 000 PPB + - ice: add missing checks for PF vsi type + - ACPI: Don't build ACPICA with '-Os' + - thermal: intel: intel_pch: Add support for Wellsburg PCH + - clocksource: Suspend the watchdog temporarily when high read latency + detected + - crypto: hisilicon: Wipe entire pool on error + - net: bcmgenet: Add a check for oversized packets + - m68k: Check syscall_trace_enter() return code + - netfilter: nf_tables: NULL pointer dereference in nf_tables_updobj() + - wifi: mt76: dma: free rx_head in mt76_dma_rx_cleanup + - ACPI: video: Fix Lenovo Ideapad Z570 DMI match + - net/mlx5: fw_tracer: Fix debug print + - coda: Avoid partial allocation of sig_inputArgs + - uaccess: Add minimum bounds check on kernel buffer size + - s390/idle: mark arch_cpu_idle() noinstr + - time/debug: Fix memory leak with using debugfs_lookup() + - PM: domains: fix memory leak with using debugfs_lookup() + - PM: EM: fix memory leak with using debugfs_lookup() + - Bluetooth: btusb: Add VID:PID 13d3:3529 for Realtek RTL8821CE + - hv_netvsc: Check status in SEND_RNDIS_PKT completion message + - scm: add user copy checks to put_cmsg() + - drm/amd/display: Revert Reduce delay when sink device not able to ACK 00340h + write + - drm/amd/display: Fix potential null-deref in dm_resume + - drm/omap: dsi: Fix excessive stack usage + - HID: Add Mapping for System Microphone Mute + - drm/tiny: ili9486: Do not assume 8-bit only SPI controllers + - drm/radeon: free iio for atombios when driver shutdown + - scsi: lpfc: Fix use-after-free KFENCE violation during sysfs firmware write + - Revert "fbcon: don't lose the console font across generic->chip driver + switch" + - drm: amd: display: Fix memory leakage + - drm/msm/dsi: Add missing check for alloc_ordered_workqueue + - docs/scripts/gdb: add necessary make scripts_gdb step + - ASoC: soc-compress: Reposition and add pcm_mutex + - ASoC: kirkwood: Iterate over array indexes instead of using pointer math + - regulator: max77802: Bounds check regulator id against opmode + - regulator: s5m8767: Bounds check id indexing into arrays + - gfs2: Improve gfs2_make_fs_rw error handling + - hwmon: (coretemp) Simplify platform device handling + - pinctrl: at91: use devm_kasprintf() to avoid potential leaks + - scsi: snic: Fix memory leak with using debugfs_lookup() + - HID: logitech-hidpp: Don't restart communication if not necessary + - drm: panel-orientation-quirks: Add quirk for Lenovo IdeaPad Duet 3 10IGL5 + - dm thin: add cond_resched() to various workqueue loops + - dm cache: add cond_resched() to various workqueue loops + - nfsd: zero out pointers after putting nfsd_files on COPY setup error + - drm/shmem-helper: Revert accidental non-GPL export + - wifi: rtl8xxxu: fixing transmisison failure for rtl8192eu + - firmware: coreboot: framebuffer: Ignore reserved pixel color bits + - block: don't allow multiple bios for IOCB_NOWAIT issue + - rtc: pm8xxx: fix set-alarm race + - ipmi:ssif: resend_msg() cannot fail + - ipmi_ssif: Rename idle state and check + - s390/extmem: return correct segment type in __segment_load() + - s390: discard .interp section + - s390/kprobes: fix irq mask clobbering on kprobe reenter from post_handler + - s390/kprobes: fix current_kprobe never cleared after kprobes reenter + - cifs: Fix uninitialized memory read in smb3_qfs_tcon() + - btrfs: hold block group refcount during async discard + - locking/rwsem: Prevent non-first waiter from spinning in down_write() + slowpath + - ksmbd: fix wrong data area length for smb2 lock request + - ksmbd: do not allow the actual frame length to be smaller than the rfc1002 + length + - ARM: dts: exynos: correct HDMI phy compatible in Exynos4 + - hfs: fix missing hfs_bnode_get() in __hfs_bnode_create + - fs: hfsplus: fix UAF issue in hfsplus_put_super + - exfat: fix reporting fs error when reading dir beyond EOF + - exfat: fix unexpected EOF while reading dir + - exfat: redefine DIR_DELETED as the bad cluster number + - exfat: fix inode->i_blocks for non-512 byte sector size device + - fs: dlm: don't set stop rx flag after node reset + - fs: dlm: move sending fin message into state change handling + - fs: dlm: send FIN ack back in right cases + - f2fs: fix information leak in f2fs_move_inline_dirents() + - f2fs: fix cgroup writeback accounting with fs-layer encryption + - ocfs2: fix defrag path triggering jbd2 ASSERT + - ocfs2: fix non-auto defrag path not working issue + - selftests/landlock: Skip overlayfs tests when not supported + - selftests/landlock: Test ptrace as much as possible with Yama + - udf: Truncate added extents on failed expansion + - udf: Do not bother merging very long extents + - udf: Do not update file length for failed writes to inline files + - udf: Preserve link count of system files + - udf: Detect system inodes linked into directory hierarchy + - udf: Fix file corruption when appending just after end of preallocated + extent + - RDMA/siw: Fix user page pinning accounting + - KVM: Destroy target device if coalesced MMIO unregistration fails + - KVM: x86: Inject #GP if WRMSR sets reserved bits in APIC Self-IPI + - KVM: SVM: Fix potential overflow in SEV's send|receive_update_data() + - KVM: SVM: hyper-v: placate modpost section mismatch error + - KVM: s390: disable migration mode when dirty tracking is disabled + - x86/virt: Force GIF=1 prior to disabling SVM (for reboot flows) + - x86/crash: Disable virt in core NMI crash handler to avoid double shootdown + - x86/reboot: Disable virtualization in an emergency if SVM is supported + - x86/reboot: Disable SVM, not just VMX, when stopping CPUs + - x86/kprobes: Fix __recover_optprobed_insn check optimizing logic + - x86/kprobes: Fix arch_check_optimized_kprobe check within optimized_kprobe + range + - x86/microcode/amd: Remove load_microcode_amd()'s bsp parameter + - x86/microcode/AMD: Add a @cpu parameter to the reloading functions + - x86/microcode/AMD: Fix mixed steppings support + - x86/speculation: Allow enabling STIBP with legacy IBRS + - Documentation/hw-vuln: Document the interaction between IBRS and STIBP + - brd: return 0/-error from brd_insert_page() + - ima: Align ima_file_mmap() parameters with mmap_file LSM hook + - irqdomain: Fix association race + - irqdomain: Fix disassociation race + - irqdomain: Look for existing mapping only once + - irqdomain: Drop bogus fwspec-mapping error handling + - irqdomain: Fix domain registration race + - crypto: qat - fix out-of-bounds read + - io_uring: handle TIF_NOTIFY_RESUME when checking for task_work + - io_uring: mark task TASK_RUNNING before handling resume/task work + - io_uring: add a conditional reschedule to the IOPOLL cancelation loop + - io_uring/rsrc: disallow multi-source reg buffers + - io_uring: remove MSG_NOSIGNAL from recvmsg + - io_uring/poll: allow some retries for poll triggering spuriously + - ALSA: ice1712: Do not left ice->gpio_mutex locked in aureon_add_controls() + - ALSA: hda/realtek: Add quirk for HP EliteDesk 800 G6 Tower PC + - jbd2: fix data missing when reusing bh which is ready to be checkpointed + - ext4: optimize ea_inode block expansion + - ext4: refuse to create ea block when umounted + - mtd: spi-nor: sfdp: Fix index value for SCCR dwords + - mtd: spi-nor: spansion: Consider reserved bits in CFR5 register + - mtd: spi-nor: Fix shift-out-of-bounds in spi_nor_set_erase_type + - dm: send just one event on resize, not two + - dm: add cond_resched() to dm_wq_work() + - wifi: rtl8xxxu: Use a longer retry limit of 48 + - wifi: ath11k: allow system suspend to survive ath11k + - wifi: cfg80211: Fix use after free for wext + - qede: fix interrupt coalescing configuration + - thermal: intel: powerclamp: Fix cur_state for multi package system + - dm flakey: fix logic when corrupting a bio + - dm flakey: don't corrupt the zero page + - dm flakey: fix a bug with 32-bit highmem systems + - ARM: dts: qcom: sdx55: Add Qcom SMMU-500 as the fallback for IOMMU node + - ARM: dts: exynos: correct TMU phandle in Exynos4210 + - ARM: dts: exynos: correct TMU phandle in Exynos4 + - ARM: dts: exynos: correct TMU phandle in Odroid XU3 family + - ARM: dts: exynos: correct TMU phandle in Exynos5250 + - ARM: dts: exynos: correct TMU phandle in Odroid XU + - ARM: dts: exynos: correct TMU phandle in Odroid HC1 + - fuse: add inode/permission checks to fileattr_get/fileattr_set + - rbd: avoid use-after-free in do_rbd_add() when rbd_dev_create() fails + - ceph: update the time stamps and try to drop the suid/sgid + - alpha: fix FEN fault handling + - dax/kmem: Fix leak of memory-hotplug resources + - mips: fix syscall_get_nr + - media: ipu3-cio2: Fix PM runtime usage_count in driver unbind + - remoteproc/mtk_scp: Move clk ops outside send_lock + - docs: gdbmacros: print newest record + - mm: memcontrol: deprecate charge moving + - mm/thp: check and bail out if page in deferred queue already + - ktest.pl: Give back console on Ctrt^C on monitor + - ktest.pl: Fix missing "end_monitor" when machine check fails + - ktest.pl: Add RUN_TIMEOUT option with default unlimited + - ring-buffer: Handle race between rb_move_tail and rb_check_pages + - tools/bootconfig: fix single & used for logical condition + - scsi: qla2xxx: Fix link failure in NPIV environment + - scsi: qla2xxx: Check if port is online before sending ELS + - scsi: qla2xxx: Fix DMA-API call trace on NVMe LS requests + - scsi: qla2xxx: Remove unintended flag clearing + - scsi: qla2xxx: Fix erroneous link down + - scsi: qla2xxx: Remove increment of interface err cnt + - scsi: ses: Don't attach if enclosure has no components + - scsi: ses: Fix slab-out-of-bounds in ses_enclosure_data_process() + - scsi: ses: Fix possible addl_desc_ptr out-of-bounds accesses + - scsi: ses: Fix possible desc_ptr out-of-bounds accesses + - scsi: ses: Fix slab-out-of-bounds in ses_intf_remove() + - RISC-V: add a spin_shadow_stack declaration + - riscv: mm: fix regression due to update_mmu_cache change + - riscv: jump_label: Fixup unaligned arch_static_branch function + - riscv, mm: Perform BPF exhandler fixup on page fault + - riscv: ftrace: Remove wasted nops for !RISCV_ISA_C + - riscv: ftrace: Reduce the detour code size to half + - MIPS: DTS: CI20: fix otg power gpio + - PCI/PM: Observe reset delay irrespective of bridge_d3 + - PCI: hotplug: Allow marking devices as disconnected during bind/unbind + - PCI: Avoid FLR for AMD FCH AHCI adapters + - iommu/vt-d: Avoid superfluous IOTLB tracking in lazy mode + - vfio/type1: prevent underflow of locked_vm via exec() + - vfio/type1: track locked_vm per dma + - vfio/type1: restore locked_vm + - drm/i915/quirks: Add inverted backlight quirk for HP 14-r206nv + - drm/radeon: Fix eDP for single-display iMac11,2 + - drm/edid: fix AVI infoframe aspect ratio handling + - perf intel-pt: pkt-decoder: Add CFE and EVD packets + - qede: avoid uninitialized entries in coal_entry array + - media: uvcvideo: Fix memory leak of object map on error exit path + - iommu/vt-d: Fix an unbalanced rcu_read_lock/rcu_read_unlock() + - arm64: dts: qcom: ipq8074: fix Gen2 PCIe QMP PHY + - wifi: ath9k: use proper statements in conditionals + - kbuild: Port silent mode detection to future gnu make. + - Linux 5.15.99 + - [Config] Stop expecting mxsfb for ppc64el + * Use new annotations model (LP: #2019000) + - [Packaging] new annotations model infrastructure + - [Config] migrate all configs into annotations + * CVE-2023-30456 + - KVM: nVMX: add missing consistency checks for CR0 and CR4 + * CVE-2023-1859 + - 9p/xen : Fix use after free bug in xen_9pfs_front_remove due to race + condition + * CVE-2023-1670 + - xirc2ps_cs: Fix use after free bug in xirc2ps_detach + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + -- Tim Gardner Thu, 01 Jun 2023 13:13:04 -0600 + +linux-azure (5.15.0-1039.46) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1039.46 -proposed tracker (LP: #2019612) + + [ Ubuntu: 5.15.0-73.80 ] + + * jammy/linux: 5.15.0-73.80 -proposed tracker (LP: #2019647) + * CVE-2023-32233 + - netfilter: nf_tables: deactivate anonymous set from preparation phase + * CVE-2023-2612 + - SAUCE: shiftfs: prevent lock unbalance in shiftfs_create_object() + * CVE-2023-31436 + - net: sched: sch_qfq: prevent slab-out-of-bounds in qfq_activate_agg + * CVE-2023-1380 + - wifi: brcmfmac: slab-out-of-bounds read in brcmf_get_assoc_ies() + * CVE-2023-30456 + - KVM: nVMX: add missing consistency checks for CR0 and CR4 + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + -- Tim Gardner Mon, 22 May 2023 08:56:33 -0600 + +linux-azure (5.15.0-1038.45) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1038.45 -proposed tracker (LP: #2016511) + + * Azure: Enable MANA Jumbo Frame Support (LP: #2016898) + - net: mana: Use napi_build_skb in RX path + - net: mana: Refactor RX buffer allocation code to prepare for various MTU + - net: mana: Enable RX path to handle various MTU sizes + - net: mana: Add support for jumbo frame + + * Azure: smb3: allow deferred close timeout to be configurable (LP: #2013349) + - smb3: allow deferred close timeout to be configurable + - smb3: lower default deferred close timeout to address perf regression + - keys: Do not cache key in task struct if key is requested from kernel thread + + [ Ubuntu: 5.15.0-72.79 ] + + * jammy/linux: 5.15.0-72.79 -proposed tracker (LP: #2016548) + * Add split lock detection for EMR (LP: #2015855) + - x86/split_lock: Enumerate architectural split lock disable bit + * selftest: fib_tests: Always cleanup before exit (LP: #2015956) + - selftest: fib_tests: Always cleanup before exit + * Add support for intel EMR cpu (LP: #2015372) + - platform/x86: intel-uncore-freq: add Emerald Rapids support + - perf/x86/intel/cstate: Add Emerald Rapids + - perf/x86/rapl: Add support for Intel Emerald Rapids + - intel_idle: add Emerald Rapids Xeon support + - tools/power/x86/intel-speed-select: Add Emerald Rapid quirk + - tools/power turbostat: Introduce support for EMR + - powercap: intel_rapl: add support for Emerald Rapids + - EDAC/i10nm: Add Intel Emerald Rapids server support + * Kernel livepatch ftrace graph fix (LP: #2013603) + - kprobes: treewide: Remove trampoline_address from + kretprobe_trampoline_handler() + - kprobes: treewide: Make it harder to refer kretprobe_trampoline directly + - kprobes: Add kretprobe_find_ret_addr() for searching return address + - s390/unwind: recover kretprobe modified return address in stacktrace + - s390/unwind: fix fgraph return address recovery + * Jammy update: v5.15.98 upstream stable release (LP: #2015600) + - Linux 5.15.98 + * Jammy update: v5.15.97 upstream stable release (LP: #2015599) + - ionic: refactor use of ionic_rx_fill() + - Fix XFRM-I support for nested ESP tunnels + - arm64: dts: rockchip: drop unused LED mode property from rk3328-roc-cc + - ARM: dts: rockchip: add power-domains property to dp node on rk3288 + - HID: elecom: add support for TrackBall 056E:011C + - ACPI: NFIT: fix a potential deadlock during NFIT teardown + - btrfs: send: limit number of clones and allocated memory size + - ASoC: rt715-sdca: fix clock stop prepare timeout issue + - IB/hfi1: Assign npages earlier + - neigh: make sure used and confirmed times are valid + - HID: core: Fix deadloop in hid_apply_multiplier. + - x86/cpu: Add Lunar Lake M + - staging: mt7621-dts: change palmbus address to lower case + - bpf: bpf_fib_lookup should not return neigh in NUD_FAILED state + - net: Remove WARN_ON_ONCE(sk->sk_forward_alloc) from sk_stream_kill_queues(). + - vc_screen: don't clobber return value in vcs_read + - scripts/tags.sh: Invoke 'realpath' via 'xargs' + - scripts/tags.sh: fix incompatibility with PCRE2 + - usb: dwc3: pci: add support for the Intel Meteor Lake-M + - USB: serial: option: add support for VW/Skoda "Carstick LTE" + - usb: gadget: u_serial: Add null pointer check in gserial_resume + - USB: core: Don't hold device lock while reading the "descriptors" sysfs file + - Linux 5.15.97 + * Jammy update: v5.15.96 upstream stable release (LP: #2015595) + - drm/etnaviv: don't truncate physical page address + - wifi: rtl8xxxu: gen2: Turn on the rate control + - drm/edid: Fix minimum bpc supported with DSC1.2 for HDMI sink + - clk: mxl: Switch from direct readl/writel based IO to regmap based IO + - clk: mxl: Remove redundant spinlocks + - clk: mxl: Add option to override gate clks + - clk: mxl: Fix a clk entry by adding relevant flags + - powerpc: dts: t208x: Mark MAC1 and MAC2 as 10G + - clk: mxl: syscon_node_to_regmap() returns error pointers + - random: always mix cycle counter in add_latent_entropy() + - KVM: x86: Fail emulation during EMULTYPE_SKIP on any exception + - KVM: SVM: Skip WRMSR fastpath on VM-Exit if next RIP isn't valid + - can: kvaser_usb: hydra: help gcc-13 to figure out cmd_len + - powerpc: dts: t208x: Disable 10G on MAC1 and MAC2 + - powerpc: use generic version of arch_is_kernel_initmem_freed() + - powerpc/vmlinux.lds: Ensure STRICT_ALIGN_SIZE is at least page aligned + - powerpc/vmlinux.lds: Add an explicit symbol for the SRWX boundary + - powerpc/64s/radix: Fix crash with unaligned relocated kernel + - powerpc/64s/radix: Fix RWX mapping with relocated kernel + - drm/i915/gvt: fix double free bug in split_2MB_gtt_entry + - uaccess: Add speculation barrier to copy_from_user() + - binder: read pre-translated fds from sender buffer + - binder: defer copies of pre-patched txn data + - binder: fix pointer cast warning + - binder: Address corner cases in deferred copy and fixup + - binder: Gracefully handle BINDER_TYPE_FDA objects with num_fds=0 + - nbd: fix possible overflow on 'first_minor' in nbd_dev_add() + - wifi: mwifiex: Add missing compatible string for SD8787 + - audit: update the mailing list in MAINTAINERS + - ext4: Fix function prototype mismatch for ext4_feat_ktype + - bpf: add missing header file include + - Linux 5.15.96 + * Debian autoreconstruct Fix restoration of execute permissions (LP: #2015498) + - [Debian] autoreconstruct - fix restoration of execute permissions + * kernel: fix __clear_user() inline assembly constraints (LP: #2013088) + - s390/uaccess: add missing earlyclobber annotations to __clear_user() + * Kernel crash during Mellanox performance testing (LP: #2015097) + - net/mlx5: fs, refactor software deletion rule + * expoline.o is packaged unconditionally for s390x (LP: #2013209) + - [Packaging] Copy expoline.o only when produced by the build + * Intel E810 NICs driver in causing hangs when booting and bonds configured + (LP: #2004262) + - ice: avoid bonding causing auxiliary plug/unplug under RTNL lock + * Jammy update: v5.15.95 upstream stable release (LP: #2013118) + - mptcp: fix locking for in-kernel listener creation + - kprobes: treewide: Cleanup the error messages for kprobes + - riscv: kprobe: Fixup misaligned load text + - ACPI / x86: Add support for LPS0 callback handler + - ASoC: Intel: sof_rt5682: always set dpcm_capture for amplifiers + - ASoC: Intel: sof_cs42l42: always set dpcm_capture for amplifiers + - selftests/bpf: Verify copy_register_state() preserves parent/live fields + - ALSA: hda: Do not unset preset when cleaning up codec + - bpf, sockmap: Don't let sock_map_{close,destroy,unhash} call itself + - ASoC: cs42l56: fix DT probe + - tools/virtio: fix the vringh test for virtio ring changes + - net/rose: Fix to not accept on connected socket + - net: stmmac: do not stop RX_CLK in Rx LPI state for qcs404 SoC + - drm/nouveau/devinit/tu102-: wait for GFW_BOOT_PROGRESS == COMPLETED + - net: sched: sch: Bounds check priority + - s390/decompressor: specify __decompress() buf len to avoid overflow + - nvme-fc: fix a missing queue put in nvmet_fc_ls_create_association + - drm/amd/display: Properly handle additional cases where DCN is not supported + - platform/x86: touchscreen_dmi: Add Chuwi Vi8 (CWI501) DMI match + - nvmem: core: add error handling for dev_set_name + - nvmem: core: fix cleanup after dev_set_name() + - nvmem: core: fix registration vs use race + - nvmem: core: fix return value + - xfs: zero inode fork buffer at allocation + - xfs: fix potential log item leak + - xfs: detect self referencing btree sibling pointers + - xfs: set XFS_FEAT_NLINK correctly + - xfs: validate v5 feature fields + - xfs: avoid unnecessary runtime sibling pointer endian conversions + - xfs: don't assert fail on perag references on teardown + - xfs: assert in xfs_btree_del_cursor should take into account error + - xfs: purge dquots after inode walk fails during quotacheck + - xfs: don't leak btree cursor when insrec fails after a split + - mptcp: do not wait for bare sockets' timeout + - aio: fix mremap after fork null-deref + - drm/amd/display: Fail atomic_check early on normalize_zpos error + - platform/x86: amd-pmc: Fix compilation when CONFIG_DEBUGFS is disabled + - platform/x86: amd-pmc: Correct usage of SMU version + - platform/x86/amd: pmc: Disable IRQ1 wakeup for RN/CZN + - netfilter: nft_tproxy: restrict to prerouting hook + - tcp: Fix listen() regression in 5.15.88. + - mmc: jz4740: Work around bug on JZ4760(B) + - mmc: sdio: fix possible resource leaks in some error paths + - mmc: mmc_spi: fix error handling in mmc_spi_probe() + - ALSA: hda/conexant: add a new hda codec SN6180 + - ALSA: hda/realtek - fixed wrong gpio assigned + - sched/psi: Fix use-after-free in ep_remove_wait_queue() + - hugetlb: check for undefined shift on 32 bit architectures + - of: reserved_mem: Have kmemleak ignore dynamically allocated reserved mem + - selftest/lkdtm: Skip stack-entropy test if lkdtm is not available + - net: Fix unwanted sign extension in netdev_stats_to_stats64() + - revert "squashfs: harden sanity check in squashfs_read_xattr_id_table" + - ixgbe: allow to increase MTU to 3K with XDP enabled + - i40e: add double of VLAN header when computing the max MTU + - net: bgmac: fix BCM5358 support by setting correct flags + - net: ethernet: ti: am65-cpsw: Add RX DMA Channel Teardown Quirk + - sctp: sctp_sock_filter(): avoid list_entry() on possibly empty list + - dccp/tcp: Avoid negative sk_forward_alloc by ipv6_pinfo.pktoptions. + - net/usb: kalmia: Don't pass act_len in usb_bulk_msg error path + - net: openvswitch: fix possible memory leak in ovs_meter_cmd_set() + - net: stmmac: fix order of dwmac5 FlexPPS parametrization sequence + - bnxt_en: Fix mqprio and XDP ring checking logic + - net: stmmac: Restrict warning on disabling DMA store and fwd mode + - ixgbe: add double of VLAN header when computing the max MTU + - ipv6: Fix datagram socket connection with DSCP. + - ipv6: Fix tcp socket connection with DSCP. + - nilfs2: fix underflow in second superblock position calculations + - mm/filemap: fix page end in filemap_get_read_batch + - drm/i915/gen11: Moving WAs to icl_gt_workarounds_init() + - drm/i915/gen11: Wa_1408615072/Wa_1407596294 should be on GT list + - flow_offload: fill flags to action structure + - net/sched: act_ctinfo: use percpu stats + - i40e: Add checking for null for nlmsg_find_attr() + - kvm: initialize all of the kvm_debugregs structure before sending it to + userspace + - alarmtimer: Prevent starvation by small intervals and SIG_IGN + - ASoC: SOF: Intel: hda-dai: fix possible stream_tag leak + - net: sched: sch: Fix off by one in htb_activate_prios() + - platform/x86/amd: pmc: add CONFIG_SERIO dependency + - Linux 5.15.95 + * CVE-2023-1075 + - net/tls: tls_is_tx_ready() checked list_entry + * devlink_port_split from ubuntu_kernel_selftests.net fails on hirsute + (KeyError: 'flavour') (LP: #1937133) + - selftests: net: devlink_port_split.py: skip test if no suitable device + available + * Connection timeout due to conntrack limits (LP: #2011616) + - netfilter: conntrack: adopt safer max chain length + * Jammy update: v5.15.94 upstream stable release (LP: #2012673) + - mm/migration: return errno when isolate_huge_page failed + - migrate: hugetlb: check for hugetlb shared PMD in node migration + - btrfs: limit device extents to the device size + - btrfs: zlib: zero-initialize zlib workspace + - ALSA: hda/realtek: Add Positivo N14KP6-TG + - ALSA: emux: Avoid potential array out-of-bound in snd_emux_xg_control() + - ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book2 Pro 360 + - ALSA: hda/realtek: Enable mute/micmute LEDs on HP Elitebook, 645 G9 + - tracing: Fix poll() and select() do not work on per_cpu trace_pipe and + trace_pipe_raw + - of/address: Return an error when no valid dma-ranges are found + - can: j1939: do not wait 250 ms if the same addr was already claimed + - xfrm: compat: change expression for switch in xfrm_xlate64 + - IB/hfi1: Restore allocated resources on failed copyout + - xfrm/compat: prevent potential spectre v1 gadget in xfrm_xlate32_attr() + - IB/IPoIB: Fix legacy IPoIB due to wrong number of queues + - RDMA/irdma: Fix potential NULL-ptr-dereference + - RDMA/usnic: use iommu_map_atomic() under spin_lock() + - xfrm: fix bug with DSCP copy to v6 from v4 tunnel + - net: phylink: move phy_device_free() to correctly release phy device + - bonding: fix error checking in bond_debug_reregister() + - net: phy: meson-gxl: use MMD access dummy stubs for GXL, internal PHY + - ionic: clean interrupt before enabling queue to avoid credit race + - uapi: add missing ip/ipv6 header dependencies for linux/stddef.h + - ice: Do not use WQ_MEM_RECLAIM flag for workqueue + - net: dsa: mt7530: don't change PVC_EG_TAG when CPU port becomes VLAN-aware + - net: mscc: ocelot: fix VCAP filters not matching on MAC with "protocol + 802.1Q" + - net/mlx5e: Move repeating clear_bit in mlx5e_rx_reporter_err_rq_cqe_recover + - net/mlx5e: Introduce the mlx5e_flush_rq function + - net/mlx5e: Update rx ring hw mtu upon each rx-fcs flag change + - net/mlx5: Bridge, fix ageing of peer FDB entries + - net/mlx5e: IPoIB, Show unknown speed instead of error + - net/mlx5: fw_tracer, Clear load bit when freeing string DBs buffers + - net/mlx5: fw_tracer, Zero consumer index when reloading the tracer + - net/mlx5: Serialize module cleanup with reload and remove + - igc: Add ndo_tx_timeout support + - rds: rds_rm_zerocopy_callback() use list_first_entry() + - selftests: forwarding: lib: quote the sysctl values + - ALSA: pci: lx6464es: fix a debug loop + - riscv: stacktrace: Fix missing the first frame + - ASoC: topology: Return -ENOMEM on memory allocation failure + - pinctrl: mediatek: Fix the drive register definition of some Pins + - pinctrl: aspeed: Fix confusing types in return value + - pinctrl: single: fix potential NULL dereference + - spi: dw: Fix wrong FIFO level setting for long xfers + - pinctrl: intel: Restore the pins that used to be in Direct IRQ mode + - cifs: Fix use-after-free in rdata->read_into_pages() + - net: USB: Fix wrong-direction WARNING in plusb.c + - mptcp: be careful on subflow status propagation on errors + - btrfs: free device in btrfs_close_devices for a single device filesystem + - usb: core: add quirk for Alcor Link AK9563 smartcard reader + - usb: typec: altmodes/displayport: Fix probe pin assign check + - clk: ingenic: jz4760: Update M/N/OD calculation algorithm + - ceph: flush cap releases when the session is flushed + - riscv: Fixup race condition on PG_dcache_clean in flush_icache_pte + - powerpc/64s/interrupt: Fix interrupt exit race with security mitigation + switch + - rtmutex: Ensure that the top waiter is always woken up + - arm64: dts: meson-gx: Make mmc host controller interrupts level-sensitive + - arm64: dts: meson-g12-common: Make mmc host controller interrupts level- + sensitive + - arm64: dts: meson-axg: Make mmc host controller interrupts level-sensitive + - Fix page corruption caused by racy check in __free_pages + - drm/amdgpu/fence: Fix oops due to non-matching drm_sched init/fini + - drm/i915: Initialize the obj flags for shmem objects + - drm/i915: Fix VBT DSI DVO port handling + - x86/speculation: Identify processors vulnerable to SMT RSB predictions + - KVM: x86: Mitigate the cross-thread return address predictions bug + - Documentation/hw-vuln: Add documentation for Cross-Thread Return Predictions + - Linux 5.15.94 + * Jammy update: v5.15.93 upstream stable release (LP: #2012665) + - firewire: fix memory leak for payload of request subaction to IEC 61883-1 + FCP region + - bus: sunxi-rsb: Fix error handling in sunxi_rsb_init() + - ASoC: Intel: boards: fix spelling in comments + - ASoC: Intel: bytcht_es8316: move comment to the right place + - ASoC: Intel: bytcht_es8316: Drop reference count of ACPI device after use + - ASoC: Intel: bytcr_rt5651: Drop reference count of ACPI device after use + - ASoC: Intel: bytcr_rt5640: Drop reference count of ACPI device after use + - ASoC: Intel: bytcr_wm5102: Drop reference count of ACPI device after use + - bpf: Fix a possible task gone issue with bpf_send_signal[_thread]() helpers + - ALSA: hda/via: Avoid potential array out-of-bound in add_secret_dac_path() + - bpf: Support <8-byte scalar spill and refill + - bpf: Fix to preserve reg parent/live fields when copying range info + - bpf, sockmap: Check for any of tcp_bpf_prots when cloning a listener + - arm64: dts: imx8mm: Fix pad control for UART1_DTE_RX + - drm/vc4: hdmi: make CEC adapter name unique + - scsi: Revert "scsi: core: map PQ=1, PDT=other values to + SCSI_SCAN_TARGET_PRESENT" + - vhost/net: Clear the pending messages when the backend is removed + - WRITE is "data source", not destination... + - READ is "data destination", not source... + - fix iov_iter_bvec() "direction" argument + - fix "direction" argument of iov_iter_kvec() + - ice: Prevent set_channel from changing queues while RDMA active + - qede: execute xdp_do_flush() before napi_complete_done() + - virtio-net: execute xdp_do_flush() before napi_complete_done() + - dpaa_eth: execute xdp_do_flush() before napi_complete_done() + - dpaa2-eth: execute xdp_do_flush() before napi_complete_done() + - sfc: correctly advertise tunneled IPv6 segmentation + - net: phy: dp83822: Fix null pointer access on DP83825/DP83826 devices + - block/bfq-iosched.c: use "false" rather than "BLK_RW_ASYNC" + - block, bfq: replace 0/1 with false/true in bic apis + - block, bfq: fix uaf for bfqq in bic_set_bfqq() + - netrom: Fix use-after-free caused by accept on already connected socket + - drm/i915/guc: Fix locking when searching for a hung request + - drm/i915/adlp: Fix typo for reference clock + - netfilter: br_netfilter: disable sabotage_in hook after first suppression + - squashfs: harden sanity check in squashfs_read_xattr_id_table + - net: phy: meson-gxl: Add generic dummy stubs for MMD register access + - ip/ip6_gre: Fix changing addr gen mode not generating IPv6 link local + address + - ip/ip6_gre: Fix non-point-to-point tunnel not generating IPv6 link local + address + - riscv: kprobe: Fixup kernel panic when probing an illegal position + - igc: return an error if the mac type is unknown in + igc_ptp_systim_to_hwtstamp() + - can: j1939: fix errant WARN_ON_ONCE in j1939_session_deactivate + - ata: libata: Fix sata_down_spd_limit() when no link speed is reported + - selftests: net: udpgso_bench_rx: Fix 'used uninitialized' compiler warning + - selftests: net: udpgso_bench_rx/tx: Stop when wrong CLI args are provided + - selftests: net: udpgso_bench_tx: Cater for pending datagrams zerocopy + benchmarking + - virtio-net: Keep stop() to follow mirror sequence of open() + - net: openvswitch: fix flow memory leak in ovs_flow_cmd_new + - efi: fix potential NULL deref in efi_mem_reserve_persistent + - i2c: designware-pci: Add new PCI IDs for AMD NAVI GPU + - i2c: mxs: suppress probe-deferral error message + - scsi: target: core: Fix warning on RT kernels + - perf/x86/intel: Add Emerald Rapids + - scsi: iscsi_tcp: Fix UAF during logout when accessing the shost ipaddress + - scsi: iscsi_tcp: Fix UAF during login when accessing the shost ipaddress + - i2c: rk3x: fix a bunch of kernel-doc warnings + - platform/x86: gigabyte-wmi: add support for B450M DS3H WIFI-CF + - net/x25: Fix to not accept on connected socket + - drm/amd/display: Fix timing not changning when freesync video is enabled + - iio: adc: stm32-dfsdm: fill module aliases + - usb: dwc3: qcom: enable vbus override when in OTG dr-mode + - usb: gadget: f_fs: Fix unbalanced spinlock in __ffs_ep0_queue_wait + - vc_screen: move load of struct vc_data pointer in vcs_read() to avoid UAF + - Input: i8042 - add Clevo PCX0DX to i8042 quirk table + - fbcon: Check font dimension limits + - net: qrtr: free memory on error path in radix_tree_insert() + - watchdog: diag288_wdt: do not use stack buffers for hardware data + - watchdog: diag288_wdt: fix __diag288() inline assembly + - ALSA: hda/realtek: Add Acer Predator PH315-54 + - efi: Accept version 2 of memory attributes table + - iio: hid: fix the retval in accel_3d_capture_sample + - iio: hid: fix the retval in gyro_3d_capture_sample + - iio: adc: berlin2-adc: Add missing of_node_put() in error path + - iio:adc:twl6030: Enable measurements of VUSB, VBAT and others + - iio: imu: fxos8700: fix ACCEL measurement range selection + - iio: imu: fxos8700: fix incomplete ACCEL and MAGN channels readback + - iio: imu: fxos8700: fix IMU data bits returned to user space + - iio: imu: fxos8700: fix map label of channel type to MAGN sensor + - iio: imu: fxos8700: fix swapped ACCEL and MAGN channels readback + - iio: imu: fxos8700: fix incorrect ODR mode readback + - iio: imu: fxos8700: fix failed initialization ODR mode assignment + - iio: imu: fxos8700: remove definition FXOS8700_CTRL_ODR_MIN + - iio: imu: fxos8700: fix MAGN sensor scale and unit + - nvmem: qcom-spmi-sdam: fix module autoloading + - parisc: Fix return code of pdc_iodc_print() + - parisc: Wire up PTRACE_GETREGS/PTRACE_SETREGS for compat case + - riscv: disable generation of unwind tables + - mm: hugetlb: proc: check for hugetlb shared PMD in /proc/PID/smaps + - usb: gadget: f_uac2: Fix incorrect increment of bNumEndpoints + - kernel/irq/irqdomain.c: fix memory leak with using debugfs_lookup() + - x86/debug: Fix stack recursion caused by wrongly ordered DR7 accesses + - fpga: stratix10-soc: Fix return value check in s10_ops_write_init() + - mm/swapfile: add cond_resched() in get_swap_pages() + - highmem: round down the address passed to kunmap_flush_on_unmap() + - Squashfs: fix handling and sanity checking of xattr_ids count + - drm/i915: Fix potential bit_17 double-free + - nvmem: core: initialise nvmem->id early + - nvmem: core: remove nvmem_config wp_gpio + - nvmem: core: fix cell removal on error + - serial: 8250_dma: Fix DMA Rx completion race + - serial: 8250_dma: Fix DMA Rx rearm race + - phy: qcom-qmp-combo: disable runtime PM on unbind + - phy: qcom-qmp-combo: fix memleak on probe deferral + - phy: qcom-qmp-usb: fix memleak on probe deferral + - phy: qcom-qmp-combo: fix broken power on + - phy: qcom-qmp-combo: fix runtime suspend + - bpf: Fix incorrect state pruning for <8B spill/fill + - bpf: Do not reject when the stack read size is different from the tracked + scalar size + - iio:adc:twl6030: Enable measurement of VAC + - powerpc/imc-pmu: Revert nest_init_lock to being a mutex + - fs/ntfs3: Validate attribute data and valid sizes + - ovl: Use "buf" flexible array for memcpy() destination + - fbdev: smscufx: fix error handling code in ufx_usb_probe + - f2fs: fix to do sanity check on i_extra_isize in is_alive() + - wifi: brcmfmac: Check the count value of channel spec to prevent out-of- + bounds reads + - gfs2: Cosmetic gfs2_dinode_{in,out} cleanup + - gfs2: Always check inode size of inline inodes + - bpf: Skip invalid kfunc call in backtrack_insn + - Linux 5.15.93 + * CVE-2023-1118 + - media: rc: Fix use-after-free bugs caused by ene_tx_irqsim() + * [SRU][Ubuntu 22.04.1]: Observed "Array Index out of bounds" Call Trace + multiple times on Ubuntu 22.04.1 OS during boot (LP: #2008157) + - scsi: megaraid_sas: Replace one-element array with flexible-array member in + MR_FW_RAID_MAP + - scsi: megaraid_sas: Replace one-element array with flexible-array member in + MR_FW_RAID_MAP_DYNAMIC + - scsi: megaraid_sas: Replace one-element array with flexible-array member in + MR_DRV_RAID_MAP + - scsi: megaraid_sas: Replace one-element array with flexible-array member in + MR_PD_CFG_SEQ_NUM_SYNC + - scsi: megaraid_sas: Use struct_size() in code related to struct + MR_FW_RAID_MAP + - scsi: megaraid_sas: Use struct_size() in code related to struct + MR_PD_CFG_SEQ_NUM_SYNC + * Revert "net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo + child qdiscs" (LP: #2011926) + - Revert "net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo + child qdiscs" + + -- Tim Gardner Mon, 24 Apr 2023 08:26:16 -0600 + +linux-azure (5.15.0-1037.44) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1037.44 -proposed tracker (LP: #2016785) + + * CVE-2023-1829 + - [Config]: Make sure CONFIG_NET_CLS_TCINDEX is not available + + [ Ubuntu: 5.15.0-71.78 ] + + * jammy/linux: 5.15.0-71.78 -proposed tracker (LP: #2016820) + * CVE-2023-1872 + - io_uring: add missing lock in io_get_file_fixed + - io_uring: ensure that io_init_req() passes in the right issue_flags + * CVE-2023-1829 + - net/sched: Retire tcindex classifier + - [Config]: Make sure CONFIG_NET_CLS_TCINDEX is not available + + -- Thadeu Lima de Souza Cascardo Thu, 20 Apr 2023 09:47:09 -0300 + +linux-azure (5.15.0-1036.43) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1036.43 -proposed tracker (LP: #2011883) + + [ Ubuntu: 5.15.0-70.77 ] + + * jammy/linux: 5.15.0-70.77 -proposed tracker (LP: #2011918) + * CVE-2023-26545 + - net: mpls: fix stale pointer if allocation fails during device rename + * CVE-2023-1281 + - net/sched: tcindex: update imperfect hash filters respecting rcu + * [SRU][Ubuntu 22.04.1] mpi3mr: Add management application interface(BSG) + support (LP: #1971151) + - scsi: mpi3mr: Add bsg device support + - scsi: mpi3mr: Add support for driver commands + - scsi: mpi3mr: Move data structures/definitions from MPI headers to uapi + header + - scsi: mpi3mr: Add support for MPT commands + - scsi: mpi3mr: Add support for PEL commands + - scsi: mpi3mr: Expose adapter state to sysfs + - scsi: mpi3mr: Add support for NVMe passthrough + - scsi: mpi3mr: Update driver version to 8.0.0.69.0 + - scsi: mpi3mr: Increase I/O timeout value to 60s + - scsi: mpi3mr: Hidden drives not removed during soft reset + - scsi: mpi3mr: Return I/Os to an unrecoverable HBA with DID_ERROR + - scsi: mpi3mr: Fix a NULL vs IS_ERR() bug in mpi3mr_bsg_init() + - scsi: mpi3mr: Return error if dma_alloc_coherent() fails + - scsi: mpi3mr: Add shost related sysfs attributes + - scsi: mpi3mr: Add target device related sysfs attributes + - scsi: mpi3mr: Rework mrioc->bsg_device model to fix warnings + - scsi: mpi3mr: Fix kernel-doc + * cpufreq: intel_pstate: Update Balance performance EPP for Sapphire Rapids + (LP: #2008519) + - cpufreq: intel_pstate: Update EPP for AlderLake mobile + - cpufreq: intel_pstate: Adjust balance_performance EPP for Sapphire Rapids + * Fail to output sound to external monitor which connects via docking station + (LP: #2009024) + - [Config] Enable CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM + * Fix mediatek wifi driver crash when loading wrong SAR table (LP: #2009118) + - wifi: mt76: mt7921: fix error code of return in mt7921_acpi_read + * Jammy update: v5.15.92 upstream stable release (LP: #2011472) + - ARM: dts: imx: Fix pca9547 i2c-mux node name + - ARM: dts: vf610: Fix pca9548 i2c-mux node names + - arm64: dts: freescale: Fix pca954x i2c-mux node names + - arm64: dts: imx8mq-thor96: fix no-mmc property for SDHCI + - firmware: arm_scmi: Clear stale xfer->hdr.status + - bpf: Skip task with pid=1 in send_signal_common() + - erofs/zmap.c: Fix incorrect offset calculation + - blk-cgroup: fix missing pd_online_fn() while activating policy + - HID: playstation: sanity check DualSense calibration data. + - dmaengine: imx-sdma: Fix a possible memory leak in sdma_transfer_init + - cifs: fix return of uninitialized rc in dfs_cache_update_tgthint() + - extcon: usbc-tusb320: fix kernel-doc warning + - Bluetooth: fix null ptr deref on hci_sync_conn_complete_evt + - tools: fix ARRAY_SIZE defines in tools and selftests hdrs + - selftests/vm: remove ARRAY_SIZE define from individual tests + - selftests: Provide local define of __cpuid_count() + - net: fix NULL pointer in skb_segment_list + - net: mctp: purge receive queues on sk destruction + - Linux 5.15.92 + * Jammy update: v5.15.91 upstream stable release (LP: #2011467) + - memory: tegra: Remove clients SID override programming + - memory: atmel-sdramc: Fix missing clk_disable_unprepare in + atmel_ramc_probe() + - memory: mvebu-devbus: Fix missing clk_disable_unprepare in + mvebu_devbus_probe() + - dmaengine: ti: k3-udma: Do conditional decrement of + UDMA_CHAN_RT_PEER_BCNT_REG + - arm64: dts: imx8mp-phycore-som: Remove invalid PMIC property + - ARM: dts: imx6ul-pico-dwarf: Use 'clock-frequency' + - ARM: dts: imx7d-pico: Use 'clock-frequency' + - ARM: dts: imx6qdl-gw560x: Remove incorrect 'uart-has-rtscts' + - arm64: dts: imx8mm-beacon: Fix ecspi2 pinmux + - ARM: imx: add missing of_node_put() + - HID: intel_ish-hid: Add check for ishtp_dma_tx_map + - arm64: dts: imx8mm-venice-gw7901: fix USB2 controller OC polarity + - soc: imx8m: Fix incorrect check for of_clk_get_by_name() + - reset: uniphier-glue: Use reset_control_bulk API + - reset: uniphier-glue: Fix possible null-ptr-deref + - EDAC/highbank: Fix memory leak in highbank_mc_probe() + - firmware: arm_scmi: Harden shared memory access in fetch_response + - firmware: arm_scmi: Harden shared memory access in fetch_notification + - tomoyo: fix broken dependency on *.conf.default + - RDMA/core: Fix ib block iterator counter overflow + - IB/hfi1: Reject a zero-length user expected buffer + - IB/hfi1: Reserve user expected TIDs + - IB/hfi1: Fix expected receive setup error exit issues + - IB/hfi1: Immediately remove invalid memory from hardware + - IB/hfi1: Remove user expected buffer invalidate race + - affs: initialize fsdata in affs_truncate() + - PM: AVS: qcom-cpr: Fix an error handling path in cpr_probe() + - arm64: dts: qcom: msm8992: Don't use sfpb mutex + - arm64: dts: qcom: msm8992-libra: Add CPU regulators + - arm64: dts: qcom: msm8992-libra: Fix the memory map + - phy: ti: fix Kconfig warning and operator precedence + - NFSD: fix use-after-free in nfsd4_ssc_setup_dul() + - ARM: dts: at91: sam9x60: fix the ddr clock for sam9x60 + - amd-xgbe: TX Flow Ctrl Registers are h/w ver dependent + - amd-xgbe: Delay AN timeout during KR training + - bpf: Fix pointer-leak due to insufficient speculative store bypass + mitigation + - phy: rockchip-inno-usb2: Fix missing clk_disable_unprepare() in + rockchip_usb2phy_power_on() + - net: nfc: Fix use-after-free in local_cleanup() + - net: wan: Add checks for NULL for utdm in undo_uhdlc_init and unmap_si_regs + - net: enetc: avoid deadlock in enetc_tx_onestep_tstamp() + - sch_htb: Avoid grafting on htb_destroy_class_offload when destroying htb + - gpio: use raw spinlock for gpio chip shadowed data + - gpio: mxc: Protect GPIO irqchip RMW with bgpio spinlock + - gpio: mxc: Always set GPIOs used as interrupt source to INPUT mode + - pinctrl/rockchip: Use temporary variable for struct device + - pinctrl/rockchip: add error handling for pull/drive register getters + - pinctrl: rockchip: fix reading pull type on rk3568 + - net: stmmac: Fix queue statistics reading + - net/sched: sch_taprio: fix possible use-after-free + - l2tp: Serialize access to sk_user_data with sk_callback_lock + - l2tp: Don't sleep and disable BH under writer-side sk_callback_lock + - l2tp: convert l2tp_tunnel_list to idr + - l2tp: close all race conditions in l2tp_tunnel_register() + - octeontx2-pf: Avoid use of GFP_KERNEL in atomic context + - net: usb: sr9700: Handle negative len + - net: mdio: validate parameter addr in mdiobus_get_phy() + - HID: check empty report_list in hid_validate_values() + - HID: check empty report_list in bigben_probe() + - net: stmmac: fix invalid call to mdiobus_get_phy() + - pinctrl: rockchip: fix mux route data for rk3568 + - HID: revert CHERRY_MOUSE_000C quirk + - usb: gadget: f_fs: Prevent race during ffs_ep0_queue_wait + - usb: gadget: f_fs: Ensure ep0req is dequeued before free_request + - Bluetooth: Fix possible deadlock in rfcomm_sk_state_change + - net: ipa: disable ipa interrupt during suspend + - net/mlx5: E-switch, Fix setting of reserved fields on + MODIFY_SCHEDULING_ELEMENT + - net: mlx5: eliminate anonymous module_init & module_exit + - drm/panfrost: fix GENERIC_ATOMIC64 dependency + - dmaengine: Fix double increment of client_count in dma_chan_get() + - net: macb: fix PTP TX timestamp failure due to packet padding + - virtio-net: correctly enable callback during start_xmit + - l2tp: prevent lockdep issue in l2tp_tunnel_register() + - HID: betop: check shape of output reports + - cifs: fix potential deadlock in cache_refresh_path() + - dmaengine: xilinx_dma: call of_node_put() when breaking out of + for_each_child_of_node() + - phy: phy-can-transceiver: Skip warning if no "max-bitrate" + - drm/amd/display: fix issues with driver unload + - nvme-pci: fix timeout request state check + - tcp: avoid the lookup process failing to get sk in ehash table + - octeontx2-pf: Fix the use of GFP_KERNEL in atomic context on rt + - ptdma: pt_core_execute_cmd() should use spinlock + - device property: fix of node refcount leak in + fwnode_graph_get_next_endpoint() + - w1: fix deadloop in __w1_remove_master_device() + - w1: fix WARNING after calling w1_process() + - driver core: Fix test_async_probe_init saves device in wrong array + - selftests/net: toeplitz: fix race on tpacket_v3 block close + - net: dsa: microchip: ksz9477: port map correction in ALU table entry + register + - thermal/core: Remove duplicate information when an error occurs + - thermal/core: Rename 'trips' to 'num_trips' + - thermal: Validate new state in cur_state_store() + - thermal/core: fix error code in __thermal_cooling_device_register() + - thermal: core: call put_device() only after device_register() fails + - net: stmmac: enable all safety features by default + - tcp: fix rate_app_limited to default to 1 + - scsi: iscsi: Fix multiple iSCSI session unbind events sent to userspace + - cpufreq: Add Tegra234 to cpufreq-dt-platdev blocklist + - kcsan: test: don't put the expect array on the stack + - cpufreq: Add SM6375 to cpufreq-dt-platdev blocklist + - ASoC: fsl_micfil: Correct the number of steps on SX controls + - net: usb: cdc_ether: add support for Thales Cinterion PLS62-W modem + - drm: Add orientation quirk for Lenovo ideapad D330-10IGL + - s390/debug: add _ASM_S390_ prefix to header guard + - s390: expicitly align _edata and _end symbols on page boundary + - perf/x86/msr: Add Emerald Rapids + - perf/x86/intel/uncore: Add Emerald Rapids + - cpufreq: armada-37xx: stop using 0 as NULL pointer + - ASoC: fsl_ssi: Rename AC'97 streams to avoid collisions with AC'97 CODEC + - ASoC: fsl-asoc-card: Fix naming of AC'97 CODEC widgets + - spi: spidev: remove debug messages that access spidev->spi without locking + - KVM: s390: interrupt: use READ_ONCE() before cmpxchg() + - scsi: hisi_sas: Set a port invalid only if there are no devices attached + when refreshing port id + - r8152: add vendor/device ID pair for Microsoft Devkit + - platform/x86: touchscreen_dmi: Add info for the CSL Panther Tab HD + - platform/x86: asus-nb-wmi: Add alternate mapping for KEY_SCREENLOCK + - lockref: stop doing cpu_relax in the cmpxchg loop + - firmware: coreboot: Check size of table entry and use flex-array + - drm/i915: Allow switching away via vga-switcheroo if uninitialized + - drm/i915: Remove unused variable + - x86: ACPI: cstate: Optimize C3 entry on AMD CPUs + - fs: reiserfs: remove useless new_opts in reiserfs_remount + - sysctl: add a new register_sysctl_init() interface + - kernel/panic: move panic sysctls to its own file + - panic: unset panic_on_warn inside panic() + - ubsan: no need to unset panic_on_warn in ubsan_epilogue() + - kasan: no need to unset panic_on_warn in end_report() + - exit: Add and use make_task_dead. + - objtool: Add a missing comma to avoid string concatenation + - hexagon: Fix function name in die() + - h8300: Fix build errors from do_exit() to make_task_dead() transition + - csky: Fix function name in csky_alignment() and die() + - ia64: make IA64_MCA_RECOVERY bool instead of tristate + - panic: Separate sysctl logic from CONFIG_SMP + - exit: Put an upper limit on how often we can oops + - exit: Expose "oops_count" to sysfs + - exit: Allow oops_limit to be disabled + - panic: Consolidate open-coded panic_on_warn checks + - panic: Introduce warn_limit + - panic: Expose "warn_count" to sysfs + - docs: Fix path paste-o for /sys/kernel/warn_count + - exit: Use READ_ONCE() for all oops/warn limit reads + - Bluetooth: hci_sync: cancel cmd_timer if hci_open failed + - drm/amdgpu: complete gfxoff allow signal during suspend without delay + - scsi: hpsa: Fix allocation size for scsi_host_alloc() + - KVM: SVM: fix tsc scaling cache logic + - module: Don't wait for GOING modules + - tracing: Make sure trace_printk() can output as soon as it can be used + - trace_events_hist: add check for return value of 'create_hist_field' + - ftrace/scripts: Update the instructions for ftrace-bisect.sh + - cifs: Fix oops due to uncleared server->smbd_conn in reconnect + - i2c: mv64xxx: Remove shutdown method from driver + - i2c: mv64xxx: Add atomic_xfer method to driver + - ksmbd: add smbd max io size parameter + - ksmbd: add max connections parameter + - ksmbd: do not sign response to session request for guest login + - ksmbd: downgrade ndr version error message to debug + - ksmbd: limit pdu length size according to connection status + - ovl: fail on invalid uid/gid mapping at copy up + - KVM: x86/vmx: Do not skip segment attributes if unusable bit is set + - KVM: arm64: GICv4.1: Fix race with doorbell on VPE activation/deactivation + - thermal: intel: int340x: Protect trip temperature from concurrent updates + - ipv6: fix reachability confirmation with proxy_ndp + - ARM: 9280/1: mm: fix warning on phys_addr_t to void pointer assignment + - EDAC/device: Respect any driver-supplied workqueue polling value + - EDAC/qcom: Do not pass llcc_driv_data as edac_device_ctl_info's pvt_info + - net: mana: Fix IRQ name - add PCI and queue number + - scsi: ufs: core: Fix devfreq deadlocks + - i2c: designware: use casting of u64 in clock multiplication to avoid + overflow + - netlink: prevent potential spectre v1 gadgets + - net: fix UaF in netns ops registration error path + - drm/i915/selftest: fix intel_selftest_modify_policy argument types + - netfilter: nft_set_rbtree: Switch to node list walk for overlap detection + - netfilter: nft_set_rbtree: skip elements in transaction from garbage + collection + - netlink: annotate data races around nlk->portid + - netlink: annotate data races around dst_portid and dst_group + - netlink: annotate data races around sk_state + - ipv4: prevent potential spectre v1 gadget in ip_metrics_convert() + - ipv4: prevent potential spectre v1 gadget in fib_metrics_match() + - netfilter: conntrack: fix vtag checks for ABORT/SHUTDOWN_COMPLETE + - netrom: Fix use-after-free of a listening socket. + - net/sched: sch_taprio: do not schedule in taprio_reset() + - sctp: fail if no bound addresses can be used for a given scope + - riscv/kprobe: Fix instruction simulation of JALR + - nvme: fix passthrough csi check + - gpio: mxc: Unlock on error path in mxc_flip_edge() + - ravb: Rename "no_ptp_cfg_active" and "ptp_cfg_active" variables + - net: ravb: Fix lack of register setting after system resumed for Gen3 + - net: ravb: Fix possible hang if RIS2_QFF1 happen + - net: mctp: mark socks as dead on unhash, prevent re-add + - thermal: intel: int340x: Add locking to int340x_thermal_get_trip_type() + - net/tg3: resolve deadlock in tg3_reset_task() during EEH + - net: mdio-mux-meson-g12a: force internal PHY off on mux switch + - treewide: fix up files incorrectly marked executable + - tools: gpio: fix -c option of gpio-event-mon + - Revert "Input: synaptics - switch touchpad on HP Laptop 15-da3001TU to RMI + mode" + - cpufreq: Move to_gov_attr_set() to cpufreq.h + - cpufreq: governor: Use kobject release() method to free dbs_data + - kbuild: Allow kernel installation packaging to override pkg-config + - block: fix and cleanup bio_check_ro + - x86/i8259: Mark legacy PIC interrupts with IRQ_LEVEL + - netfilter: conntrack: unify established states for SCTP paths + - perf/x86/amd: fix potential integer overflow on shift of a int + - Linux 5.15.91 + * Kernel livepatch support for for s390x (LP: #1639924) + - sched: Improve try_invoke_on_locked_down_task() + - sched,rcu: Rework try_invoke_on_locked_down_task() + - sched,livepatch: Use task_call_func() + - sched: Simplify wake_up_*idle*() + - sched,livepatch: Use wake_up_if_idle() + - sched: Improve wake_up_all_idle_cpus() take #2 + - s390/entry: remove unused expoline thunk + - s390: remove unused expoline to BC instructions + - s390/nospec: generate single register thunks if possible + - s390/nospec: add an option to use thunk-extern + - s390/nospec: align and size extern thunks + - bug: Use normal relative pointers in 'struct bug_entry' + - s390/nospec: build expoline.o for modules_prepare target + - [Config] Enable EXPOLINE_EXTERN on s390x + - [Config] s390x: Removing UBSAN from configuration + * Do not sort the task scan result from /proc when synthesizing perf events + (LP: #2008971) + - perf synthetic-events: Don't sort the task scan result from /proc + * linux: Staging modules should be unsigned (LP: #1642368) + - [Packaging] Move and update signature inclusion list + - SAUCE: Add selective signing of staging modules + - [Packaging] Add module-signature-check + - [Packaging] module-signature-check: Check debian./signature-inclusion + - [Packaging] Introduce debian/scripts/sign-module + - SAUCE: Switch to using debian/scripts/sign-module + * Jammy update: v5.15.90 upstream stable release (LP: #2008933) + - btrfs: fix trace event name typo for FLUSH_DELAYED_REFS + - pNFS/filelayout: Fix coalescing test for single DS + - tools/virtio: initialize spinlocks in vring_test.c + - virtio_pci: modify ENOENT to EINVAL + - vduse: Validate vq_num in vduse_validate_config() + - net/ethtool/ioctl: return -EOPNOTSUPP if we have no phy stats + - r8169: move rtl_wol_enable_rx() and rtl_prepare_power_down() + - RDMA/srp: Move large values to a new enum for gcc13 + - btrfs: always report error in run_one_delayed_ref() + - x86/asm: Fix an assembler warning with current binutils + - f2fs: let's avoid panic if extent_tree is not created + - perf/x86/rapl: Treat Tigerlake like Icelake + - fbdev: omapfb: avoid stack overflow warning + - Bluetooth: hci_qca: Fix driver shutdown on closed serdev + - wifi: brcmfmac: fix regression for Broadcom PCIe wifi devices + - wifi: mac80211: sdata can be NULL during AMPDU start + - Add exception protection processing for vd in axi_chan_handle_err function + - zonefs: Detect append writes at invalid locations + - nilfs2: fix general protection fault in nilfs_btree_insert() + - efi: fix userspace infinite retry read efivars after EFI runtime services + page fault + - ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook + - ALSA: hda/realtek: fix mute/micmute LEDs don't work for a HP platform + - drm/amdgpu: disable runtime pm on several sienna cichlid cards(v2) + - drm/amd: Delay removal of the firmware framebuffer + - hugetlb: unshare some PMDs when splitting VMAs + - io_uring: don't gate task_work run on TIF_NOTIFY_SIGNAL + - eventpoll: add EPOLL_URING_WAKE poll wakeup flag + - eventfd: provide a eventfd_signal_mask() helper + - io_uring: pass in EPOLL_URING_WAKE for eventfd signaling and wakeups + - io_uring: improve send/recv error handling + - io_uring: ensure recv and recvmsg handle MSG_WAITALL correctly + - io_uring: add flag for disabling provided buffer recycling + - io_uring: support MSG_WAITALL for IORING_OP_SEND(MSG) + - io_uring: allow re-poll if we made progress + - io_uring: fix async accept on O_NONBLOCK sockets + - io_uring: ensure that cached task references are always put on exit + - io_uring: remove duplicated calls to io_kiocb_ppos + - io_uring: update kiocb->ki_pos at execution time + - io_uring: do not recalculate ppos unnecessarily + - io_uring/rw: defer fsnotify calls to task context + - xhci-pci: set the dma max_seg_size + - usb: xhci: Check endpoint is valid before dereferencing it + - xhci: Fix null pointer dereference when host dies + - xhci: Add update_hub_device override for PCI xHCI hosts + - xhci: Add a flag to disable USB3 lpm on a xhci root port level. + - usb: acpi: add helper to check port lpm capability using acpi _DSM + - xhci: Detect lpm incapable xHC USB3 roothub ports from ACPI tables + - prlimit: do_prlimit needs to have a speculation check + - USB: serial: option: add Quectel EM05-G (GR) modem + - USB: serial: option: add Quectel EM05-G (CS) modem + - USB: serial: option: add Quectel EM05-G (RS) modem + - USB: serial: option: add Quectel EC200U modem + - USB: serial: option: add Quectel EM05CN (SG) modem + - USB: serial: option: add Quectel EM05CN modem + - staging: vchiq_arm: fix enum vchiq_status return types + - USB: misc: iowarrior: fix up header size for USB_DEVICE_ID_CODEMERCS_IOW100 + - misc: fastrpc: Don't remove map on creater_process and device_release + - misc: fastrpc: Fix use-after-free race condition for maps + - usb: core: hub: disable autosuspend for TI TUSB8041 + - comedi: adv_pci1760: Fix PWM instruction handling + - ACPI: PRM: Check whether EFI runtime is available + - mmc: sunxi-mmc: Fix clock refcount imbalance during unbind + - mmc: sdhci-esdhc-imx: correct the tuning start tap and step setting + - btrfs: do not abort transaction on failure to write log tree when syncing + log + - btrfs: fix race between quota rescan and disable leading to NULL pointer + deref + - cifs: do not include page data when checking signature + - thunderbolt: Use correct function to calculate maximum USB3 link rate + - riscv: dts: sifive: fu740: fix size of pcie 32bit memory + - bpf: restore the ebpf program ID for BPF_AUDIT_UNLOAD and + PERF_BPF_EVENT_PROG_UNLOAD + - staging: mt7621-dts: change some node hex addresses to lower case + - tty: serial: qcom-geni-serial: fix slab-out-of-bounds on RX FIFO buffer + - tty: fix possible null-ptr-defer in spk_ttyio_release + - USB: serial: cp210x: add SCALANCE LPE-9000 device id + - usb: cdns3: remove fetched trb from cache before dequeuing + - usb: host: ehci-fsl: Fix module alias + - usb: typec: tcpm: Fix altmode re-registration causes sysfs create fail + - usb: typec: altmodes/displayport: Add pin assignment helper + - usb: typec: altmodes/displayport: Fix pin assignment calculation + - usb: gadget: g_webcam: Send color matching descriptor per frame + - usb: gadget: f_ncm: fix potential NULL ptr deref in ncm_bitrate() + - usb-storage: apply IGNORE_UAS only for HIKSEMI MD202 on RTL9210 + - dt-bindings: phy: g12a-usb2-phy: fix compatible string documentation + - dt-bindings: phy: g12a-usb3-pcie-phy: fix compatible string documentation + - serial: pch_uart: Pass correct sg to dma_unmap_sg() + - dmaengine: lgm: Move DT parsing after initialization + - dmaengine: tegra210-adma: fix global intr clear + - dmaengine: idxd: Let probe fail when workqueue cannot be enabled + - serial: amba-pl011: fix high priority character transmission in rs486 mode + - serial: atmel: fix incorrect baudrate setup + - gsmi: fix null-deref in gsmi_get_variable + - mei: me: add meteor lake point M DID + - drm/i915: re-disable RC6p on Sandy Bridge + - drm/i915/display: Check source height is > 0 + - drm/amd/display: Fix set scaling doesn's work + - drm/amd/display: Calculate output_color_space after pixel encoding + adjustment + - drm/amd/display: Fix COLOR_SPACE_YCBCR2020_TYPE matrix + - drm/amdgpu: drop experimental flag on aldebaran + - fs/ntfs3: Fix attr_punch_hole() null pointer derenference + - arm64: efi: Execute runtime services from a dedicated stack + - efi: rt-wrapper: Add missing include + - x86/fpu: Use _Alignof to avoid undefined behavior in TYPE_ALIGN + - tracing: Use alignof__(struct {type b;}) instead of offsetof() + - io_uring: io_kiocb_update_pos() should not touch file for non -1 offset + - io_uring/net: fix fast_iov assignment in io_setup_async_msg() + - net/mlx5: fix missing mutex_unlock in mlx5_fw_fatal_reporter_err_work() + - block: mq-deadline: Rename deadline_is_seq_writes() + - soc: qcom: apr: Make qcom,protection-domain optional again + - mm/khugepaged: fix collapse_pte_mapped_thp() to allow anon_vma + - io_uring: Clean up a false-positive warning from GCC 9.3.0 + - io_uring: fix double poll leak on repolling + - io_uring/rw: ensure kiocb_end_write() is always called + - io_uring/rw: remove leftover debug statement + - Linux 5.15.90 + * Jammy update: v5.15.89 upstream stable release (LP: #2008929) + - ALSA: control-led: use strscpy in set_led_id() + - ALSA: hda/realtek - Turn on power early + - ALSA: hda/realtek: Enable mute/micmute LEDs on HP Spectre x360 13-aw0xxx + - KVM: arm64: Fix S1PTW handling on RO memslots + - KVM: arm64: nvhe: Fix build with profile optimization + - selftests: kvm: Fix a compile error in selftests/kvm/rseq_test.c + - efi: tpm: Avoid READ_ONCE() for accessing the event log + - docs: Fix the docs build with Sphinx 6.0 + - net: stmmac: add aux timestamps fifo clearance wait + - perf auxtrace: Fix address filter duplicate symbol selection + - s390/kexec: fix ipl report address for kdump + - ASoC: qcom: lpass-cpu: Fix fallback SD line index handling + - s390/cpum_sf: add READ_ONCE() semantics to compare and swap loops + - s390/percpu: add READ_ONCE() to arch_this_cpu_to_op_simple() + - drm/virtio: Fix GEM handle creation UAF + - drm/i915/gt: Reset twice + - net/mlx5e: Set action fwd flag when parsing tc action goto + - cifs: Fix uninitialized memory read for smb311 posix symlink create + - platform/x86: dell-privacy: Only register SW_CAMERA_LENS_COVER if present + - platform/surface: aggregator: Ignore command messages not intended for us + - platform/x86: dell-privacy: Fix SW_CAMERA_LENS_COVER reporting + - dt-bindings: msm: dsi-controller-main: Fix operating-points-v2 constraint + - drm/msm/adreno: Make adreno quirks not overwrite each other + - dt-bindings: msm: dsi-controller-main: Fix power-domain constraint + - dt-bindings: msm: dsi-controller-main: Fix description of core clock + - dt-bindings: msm: dsi-phy-28nm: Add missing qcom, dsi-phy-regulator-ldo-mode + - platform/x86: ideapad-laptop: Add Legion 5 15ARH05 DMI id to + set_fn_lock_led_list[] + - drm/msm/dp: do not complete dp_aux_cmd_fifo_tx() if irq is not for aux + transfer + - dt-bindings: msm/dsi: Don't require vdds-supply on 10nm PHY + - dt-bindings: msm/dsi: Don't require vcca-supply on 14nm PHY + - platform/x86: sony-laptop: Don't turn off 0x153 keyboard backlight during + probe + - ixgbe: fix pci device refcount leak + - ipv6: raw: Deduct extension header length in rawv6_push_pending_frames + - bus: mhi: host: Fix race between channel preparation and M0 event + - usb: ulpi: defer ulpi_register on ulpi_read_id timeout + - iommu/iova: Fix alloc iova overflows issue + - iommu/mediatek-v1: Fix an error handling path in mtk_iommu_v1_probe() + - sched/core: Fix use-after-free bug in dup_user_cpus_ptr() + - netfilter: ipset: Fix overflow before widen in the bitmap_ip_create() + function. + - powerpc/imc-pmu: Fix use of mutex in IRQs disabled section + - x86/boot: Avoid using Intel mnemonics in AT&T syntax asm + - EDAC/device: Fix period calculation in edac_device_reset_delay_period() + - x86/resctrl: Fix task CLOSID/RMID update race + - regulator: da9211: Use irq handler when ready + - scsi: mpi3mr: Refer CONFIG_SCSI_MPI3MR in Makefile + - scsi: ufs: Stop using the clock scaling lock in the error handler + - scsi: ufs: core: WLUN suspend SSU/enter hibern8 fail recovery + - ASoC: wm8904: fix wrong outputs volume after power reactivation + - ALSA: usb-audio: Make sure to stop endpoints before closing EPs + - ALSA: usb-audio: Relax hw constraints for implicit fb sync + - tipc: fix unexpected link reset due to discovery messages + - octeontx2-af: Fix LMAC config in cgx_lmac_rx_tx_enable + - hvc/xen: lock console list traversal + - nfc: pn533: Wait for out_urb's completion in pn533_usb_send_frame() + - af_unix: selftest: Fix the size of the parameter to connect() + - tools/nolibc: x86: Remove `r8`, `r9` and `r10` from the clobber list + - tools/nolibc: x86-64: Use `mov $60,%eax` instead of `mov $60,%rax` + - tools/nolibc: use pselect6 on RISCV + - tools/nolibc/std: move the standard type definitions to std.h + - tools/nolibc/types: split syscall-specific definitions into their own files + - tools/nolibc/arch: split arch-specific code into individual files + - tools/nolibc/arch: mark the _start symbol as weak + - tools/nolibc: Remove .global _start from the entry point code + - tools/nolibc: restore mips branch ordering in the _start block + - tools/nolibc: fix the O_* fcntl/open macro definitions for riscv + - net/sched: act_mpls: Fix warning during failed attribute validation + - net/mlx5: Fix ptp max frequency adjustment range + - net/mlx5e: Don't support encap rules with gbp option + - perf build: Properly guard libbpf includes + - igc: Fix PPS delta between two synchronized end-points + - platform/surface: aggregator: Add missing call to ssam_request_sync_free() + - Documentation: KVM: add API issues section + - KVM: x86: Do not return host topology information from + KVM_GET_SUPPORTED_CPUID + - io_uring: lock overflowing for IOPOLL + - arm64: atomics: format whitespace consistently + - arm64: atomics: remove LL/SC trampolines + - arm64: cmpxchg_double*: hazard against entire exchange variable + - efi: fix NULL-deref in init error path + - io_uring/io-wq: free worker if task_work creation is canceled + - io_uring/io-wq: only free worker if it was allocated for creation + - block: handle bio_split_to_limits() NULL return + - Revert "usb: ulpi: defer ulpi_register on ulpi_read_id timeout" + - pinctrl: amd: Add dynamic debugging for active GPIOs + - Linux 5.15.89 + * Jammy update: v5.15.88 upstream stable release (LP: #2008927) + - parisc: Align parisc MADV_XXX constants with all other architectures + - serial: fixup backport of "serial: Deassert Transmit Enable on probe in + driver-specific way" + - net: sched: disallow noqueue for qdisc classes + - ALSA: hda/hdmi: Add a HP device 0x8715 to force connect list + - ALSA: hda - Enable headset mic on another Dell laptop with ALC3254 + - Linux 5.15.88 + * Fix selftests/ftracetests/Meta-selftests (LP: #2006453) + - selftests/ftrace: Fix bash specific "==" operator + + [ Ubuntu: 5.15.0-69.76 ] + + * jammy/linux: 5.15.0-69.76 -proposed tracker (LP: #2012092) + * NFS deathlock with last Kernel 5.4.0-144.161 and 5.15.0-67.74 (LP: #2009325) + - NFS: Correct timing for assigning access cache timestamp + + -- Tim Gardner Wed, 29 Mar 2023 09:52:26 -0600 + +linux-azure (5.15.0-1035.42) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1035.42 -proposed tracker (LP: #2008312) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2023.02.27) + + [ Ubuntu: 5.15.0-68.75 ] + + * jammy/linux: 5.15.0-68.75 -proposed tracker (LP: #2008349) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2023.02.27) + * Ubuntu 22.04 kernel 5.15.0-46-generic leaks kernel memory in kmalloc-2k + slabs (LP: #1987430) + - SAUCE: audit: fix memory leak of audit_log_lsm() + * [EGS] Backport intel_idle support for Eagle Stream Ubuntu 22.04 release + (LP: #2003267) + - intel_idle: add SPR support + - intel_idle: add 'preferred_cstates' module argument + - intel_idle: add core C6 optimization for SPR + - cpuidle: intel_idle: Drop redundant backslash at line end + - intel_idle: Fix the 'preferred_cstates' module parameter + - intel_idle: Fix SPR C6 optimization + - intel_idle: make SPR C1 and C1E be independent + * Fix speaker mute hotkey doesn't work on Dell G16 series (LP: #2003161) + - platform/x86: dell-wmi: Add a keymap for KEY_MUTE in type 0x0010 table + * Fix the ACPI _CPC not found error from kernel dmesg on some dynamic SSDT + table loaded firmwares (LP: #2006077) + - ACPI: bus: Avoid using CPPC if not supported by firmware + - ACPI: bus: Set CPPC _OSC bits for all and when CPPC_LIB is supported + - ACPI: CPPC: Only probe for _CPC if CPPC v2 is acked + * rtcpie in timers from ubuntu_kernel_selftests randomly failing + (LP: #1814234) + - SAUCE: selftest: rtcpie: Force passing unreliable subtest + * Jammy update: v5.15.87 upstream stable release (LP: #2007441) + - usb: dwc3: qcom: Fix memory leak in dwc3_qcom_interconnect_init + - cifs: fix oops during encryption + - nvme-pci: fix doorbell buffer value endianness + - nvme-pci: fix mempool alloc size + - nvme-pci: fix page size checks + - ACPI: resource: do IRQ override on LENOVO IdeaPad + - ACPI: resource: do IRQ override on XMG Core 15 + - ACPI: resource: do IRQ override on Lenovo 14ALC7 + - block, bfq: fix uaf for bfqq in bfq_exit_icq_bfqq + - ata: ahci: Fix PCS quirk application for suspend + - nvme: fix the NVME_CMD_EFFECTS_CSE_MASK definition + - nvmet: don't defer passthrough commands with trivial effects to the + workqueue + - fs/ntfs3: Validate BOOT record_size + - fs/ntfs3: Add overflow check for attribute size + - fs/ntfs3: Validate data run offset + - fs/ntfs3: Add null pointer check to attr_load_runs_vcn + - fs/ntfs3: Fix memory leak on ntfs_fill_super() error path + - fs/ntfs3: Add null pointer check for inode operations + - fs/ntfs3: Validate attribute name offset + - fs/ntfs3: Validate buffer length while parsing index + - fs/ntfs3: Validate resident attribute name + - fs/ntfs3: Fix slab-out-of-bounds read in run_unpack + - soundwire: dmi-quirks: add quirk variant for LAPBC710 NUC15 + - fs/ntfs3: Validate index root when initialize NTFS security + - fs/ntfs3: Use __GFP_NOWARN allocation at wnd_init() + - fs/ntfs3: Use __GFP_NOWARN allocation at ntfs_fill_super() + - fs/ntfs3: Delete duplicate condition in ntfs_read_mft() + - fs/ntfs3: Fix slab-out-of-bounds in r_page + - objtool: Fix SEGFAULT + - powerpc/rtas: avoid device tree lookups in rtas_os_term() + - powerpc/rtas: avoid scheduling in rtas_os_term() + - HID: multitouch: fix Asus ExpertBook P2 P2451FA trackpoint + - HID: plantronics: Additional PIDs for double volume key presses quirk + - pstore: Properly assign mem_type property + - pstore/zone: Use GFP_ATOMIC to allocate zone buffer + - hfsplus: fix bug causing custom uid and gid being unable to be assigned with + mount + - binfmt: Fix error return code in load_elf_fdpic_binary() + - ovl: Use ovl mounter's fsuid and fsgid in ovl_link() + - ALSA: line6: correct midi status byte when receiving data from podxt + - ALSA: line6: fix stack overflow in line6_midi_transmit + - pnode: terminate at peers of source + - mfd: mt6360: Add bounds checking in Regmap read/write call-backs + - md: fix a crash in mempool_free + - mm, compaction: fix fast_isolate_around() to stay within boundaries + - f2fs: should put a page when checking the summary info + - f2fs: allow to read node block after shutdown + - mmc: vub300: fix warning - do not call blocking ops when !TASK_RUNNING + - tpm: acpi: Call acpi_put_table() to fix memory leak + - tpm: tpm_crb: Add the missed acpi_put_table() to fix memory leak + - tpm: tpm_tis: Add the missed acpi_put_table() to fix memory leak + - SUNRPC: Don't leak netobj memory when gss_read_proxy_verf() fails + - kcsan: Instrument memcpy/memset/memmove with newer Clang + - ASoC: Intel/SOF: use set_stream() instead of set_tdm_slots() for HDAudio + - ASoC/SoundWire: dai: expand 'stream' concept beyond SoundWire + - rcu-tasks: Simplify trc_read_check_handler() atomic operations + - net/af_packet: add VLAN support for AF_PACKET SOCK_RAW GSO + - net/af_packet: make sure to pull mac header + - media: stv0288: use explicitly signed char + - soc: qcom: Select REMAP_MMIO for LLCC driver + - kest.pl: Fix grub2 menu handling for rebooting + - ktest.pl minconfig: Unset configs instead of just removing them + - jbd2: use the correct print format + - perf/x86/intel/uncore: Disable I/O stacks to PMU mapping on ICX-D + - perf/x86/intel/uncore: Clear attr_update properly + - arm64: dts: qcom: sdm845-db845c: correct SPI2 pins drive strength + - mmc: sdhci-sprd: Disable CLK_AUTO when the clock is less than 400K + - btrfs: fix resolving backrefs for inline extent followed by prealloc + - ARM: ux500: do not directly dereference __iomem + - arm64: dts: qcom: sdm850-lenovo-yoga-c630: correct I2C12 pins drive strength + - selftests: Use optional USERCFLAGS and USERLDFLAGS + - PM/devfreq: governor: Add a private governor_data for governor + - cpufreq: Init completion before kobject_init_and_add() + - ALSA: patch_realtek: Fix Dell Inspiron Plus 16 + - ALSA: hda/realtek: Apply dual codec fixup for Dell Latitude laptops + - fs: dlm: fix sock release if listen fails + - fs: dlm: retry accept() until -EAGAIN or error returns + - mptcp: mark ops structures as ro_after_init + - mptcp: remove MPTCP 'ifdef' in TCP SYN cookies + - dm cache: Fix ABBA deadlock between shrink_slab and dm_cache_metadata_abort + - dm thin: Fix ABBA deadlock between shrink_slab and dm_pool_abort_metadata + - dm thin: Use last transaction's pmd->root when commit failed + - dm thin: resume even if in FAIL mode + - dm thin: Fix UAF in run_timer_softirq() + - dm integrity: Fix UAF in dm_integrity_dtr() + - dm clone: Fix UAF in clone_dtr() + - dm cache: Fix UAF in destroy() + - dm cache: set needs_check flag after aborting metadata + - tracing/hist: Fix out-of-bound write on 'action_data.var_ref_idx' + - perf/core: Call LSM hook after copying perf_event_attr + - of/kexec: Fix reading 32-bit "linux,initrd-{start,end}" values + - KVM: VMX: Resume guest immediately when injecting #GP on ECREATE + - KVM: nVMX: Inject #GP, not #UD, if "generic" VMXON CR0/CR4 check fails + - KVM: nVMX: Properly expose ENABLE_USR_WAIT_PAUSE control to L1 + - x86/microcode/intel: Do not retry microcode reloading on the APs + - ftrace/x86: Add back ftrace_expected for ftrace bug reports + - x86/kprobes: Fix kprobes instruction boudary check with CONFIG_RETHUNK + - x86/kprobes: Fix optprobe optimization check with CONFIG_RETHUNK + - tracing: Fix race where eprobes can be called before the event + - tracing: Fix complicated dependency of CONFIG_TRACER_MAX_TRACE + - tracing/hist: Fix wrong return value in parse_action_params() + - tracing/probes: Handle system names with hyphens + - tracing: Fix infinite loop in tracing_read_pipe on overflowed + print_trace_line + - staging: media: tegra-video: fix chan->mipi value on error + - staging: media: tegra-video: fix device_node use after free + - ARM: 9256/1: NWFPE: avoid compiler-generated __aeabi_uldivmod + - media: dvb-core: Fix double free in dvb_register_device() + - cifs: fix confusing debug message + - cifs: fix missing display of three mount options + - rtc: ds1347: fix value written to century register + - block: mq-deadline: Do not break sequential write streams to zoned HDDs + - md/bitmap: Fix bitmap chunk size overflow issues + - efi: Add iMac Pro 2017 to uefi skip cert quirk + - wifi: wilc1000: sdio: fix module autoloading + - ASoC: jz4740-i2s: Handle independent FIFO flush bits + - ipu3-imgu: Fix NULL pointer dereference in imgu_subdev_set_selection() + - ipmi: fix long wait in unload when IPMI disconnect + - mtd: spi-nor: Check for zero erase size in spi_nor_find_best_erase_type() + - ima: Fix a potential NULL pointer access in ima_restore_measurement_list + - ipmi: fix use after free in _ipmi_destroy_user() + - PCI: Fix pci_device_is_present() for VFs by checking PF + - PCI/sysfs: Fix double free in error path + - riscv: stacktrace: Fixup ftrace_graph_ret_addr retp argument + - riscv: mm: notify remote harts about mmu cache updates + - crypto: n2 - add missing hash statesize + - driver core: Fix bus_type.match() error handling in __driver_attach() + - phy: qcom-qmp-combo: fix sc8180x reset + - iommu/amd: Fix ivrs_acpihid cmdline parsing code + - remoteproc: core: Do pm_relax when in RPROC_OFFLINE state + - parisc: led: Fix potential null-ptr-deref in start_task() + - device_cgroup: Roll back to original exceptions after copy failure + - drm/connector: send hotplug uevent on connector cleanup + - drm/vmwgfx: Validate the box size for the snooped cursor + - drm/i915/dsi: fix VBT send packet port selection for dual link DSI + - drm/ingenic: Fix missing platform_driver_unregister() call in + ingenic_drm_init() + - ext4: silence the warning when evicting inode with dioread_nolock + - ext4: add inode table check in __ext4_get_inode_loc to aovid possible + infinite loop + - ext4: remove trailing newline from ext4_msg() message + - fs: ext4: initialize fsdata in pagecache_write() + - ext4: fix use-after-free in ext4_orphan_cleanup + - ext4: fix undefined behavior in bit shift for ext4_check_flag_values + - ext4: add EXT4_IGET_BAD flag to prevent unexpected bad inode + - ext4: add helper to check quota inums + - ext4: fix bug_on in __es_tree_search caused by bad quota inode + - ext4: fix reserved cluster accounting in __es_remove_extent() + - ext4: check and assert if marking an no_delete evicting inode dirty + - ext4: fix bug_on in __es_tree_search caused by bad boot loader inode + - ext4: fix leaking uninitialized memory in fast-commit journal + - ext4: fix uninititialized value in 'ext4_evict_inode' + - ext4: init quota for 'old.inode' in 'ext4_rename' + - ext4: fix delayed allocation bug in ext4_clu_mapped for bigalloc + inline + - ext4: fix error code return to user-space in ext4_get_branch() + - ext4: avoid BUG_ON when creating xattrs + - ext4: fix kernel BUG in 'ext4_write_inline_data_end()' + - ext4: fix inode leak in ext4_xattr_inode_create() on an error path + - ext4: initialize quota before expanding inode in setproject ioctl + - ext4: avoid unaccounted block allocation when expanding inode + - ext4: allocate extended attribute value in vmalloc area + - drm/amdgpu: handle polaris10/11 overlap asics (v2) + - block: mq-deadline: Fix dd_finish_request() for zoned devices + - tracing: Fix issue of missing one synthetic field + - ext4: remove unused enum EXT4_FC_COMMIT_FAILED + - ext4: use ext4_debug() instead of jbd_debug() + - ext4: introduce EXT4_FC_TAG_BASE_LEN helper + - ext4: factor out ext4_fc_get_tl() + - ext4: fix potential out of bound read in ext4_fc_replay_scan() + - ext4: disable fast-commit of encrypted dir operations + - ext4: don't set up encryption key during jbd2 transaction + - ext4: add missing validation of fast-commit record lengths + - ext4: fix unaligned memory access in ext4_fc_reserve_space() + - ext4: fix off-by-one errors in fast-commit block filling + - ARM: renumber bits related to _TIF_WORK_MASK + - phy: qcom-qmp-combo: fix out-of-bounds clock access + - btrfs: replace strncpy() with strscpy() + - btrfs: move missing device handling in a dedicate function + - btrfs: fix extent map use-after-free when handling missing device in + read_one_chunk + - x86/mce: Get rid of msr_ops + - x86/MCE/AMD: Clear DFR errors found in THR handler + - media: s5p-mfc: Fix to handle reference queue during finishing + - media: s5p-mfc: Clear workbit to handle error condition + - media: s5p-mfc: Fix in register read and write for H264 + - perf probe: Use dwarf_attr_integrate as generic DWARF attr accessor + - perf probe: Fix to get the DW_AT_decl_file and DW_AT_call_file as unsinged + data + - ravb: Fix "failed to switch device to config mode" message during unbind + - ext4: goto right label 'failed_mount3a' + - ext4: correct inconsistent error msg in nojournal mode + - mbcache: automatically delete entries from cache on freeing + - ext4: fix deadlock due to mbcache entry corruption + - drm/i915/migrate: don't check the scratch page + - drm/i915/migrate: fix offset calculation + - drm/i915/migrate: fix length calculation + - SUNRPC: ensure the matching upcall is in-flight upon downcall + - btrfs: fix an error handling path in btrfs_defrag_leaves() + - bpf: pull before calling skb_postpull_rcsum() + - drm/panfrost: Fix GEM handle creation ref-counting + - netfilter: nf_tables: consolidate set description + - netfilter: nf_tables: add function to create set stateful expressions + - netfilter: nf_tables: perform type checking for existing sets + - vmxnet3: correctly report csum_level for encapsulated packet + - netfilter: nf_tables: honor set timeout and garbage collection updates + - veth: Fix race with AF_XDP exposing old or uninitialized descriptors + - nfsd: shut down the NFSv4 state objects before the filecache + - net: hns3: add interrupts re-initialization while doing VF FLR + - net: hns3: refactor hns3_nic_reuse_page() + - net: hns3: extract macro to simplify ring stats update code + - net: hns3: fix miss L3E checking for rx packet + - net: hns3: fix VF promisc mode not update when mac table full + - net: sched: fix memory leak in tcindex_set_parms + - qlcnic: prevent ->dcb use-after-free on qlcnic_dcb_enable() failure + - net: dsa: mv88e6xxx: depend on PTP conditionally + - nfc: Fix potential resource leaks + - vdpa_sim: fix possible memory leak in vdpasim_net_init() and + vdpasim_blk_init() + - vhost/vsock: Fix error handling in vhost_vsock_init() + - vringh: fix range used in iotlb_translate() + - vhost: fix range used in translate_desc() + - vdpa_sim: fix vringh initialization in vdpasim_queue_ready() + - net/mlx5: E-Switch, properly handle ingress tagged packets on VST + - net/mlx5: Add forgotten cleanup calls into mlx5_init_once() error path + - net/mlx5: Avoid recovery in probe flows + - net/mlx5e: IPoIB, Don't allow CQE compression to be turned on by default + - net/mlx5e: TC, Refactor mlx5e_tc_add_flow_mod_hdr() to get flow attr + - net/mlx5e: Always clear dest encap in neigh-update-del + - net/mlx5e: Fix hw mtu initializing at XDP SQ allocation + - net: amd-xgbe: add missed tasklet_kill + - net: ena: Fix toeplitz initial hash value + - net: ena: Don't register memory info on XDP exchange + - net: ena: Account for the number of processed bytes in XDP + - net: ena: Use bitmask to indicate packet redirection + - net: ena: Fix rx_copybreak value update + - net: ena: Set default value for RX interrupt moderation + - net: ena: Update NUMA TPH hint register upon NUMA node update + - net: phy: xgmiitorgmii: Fix refcount leak in xgmiitorgmii_probe + - RDMA/mlx5: Fix mlx5_ib_get_hw_stats when used for device + - RDMA/mlx5: Fix validation of max_rd_atomic caps for DC + - drm/meson: Reduce the FIFO lines held when AFBC is not used + - filelock: new helper: vfs_inode_has_locks + - ceph: switch to vfs_inode_has_locks() to fix file lock bug + - gpio: sifive: Fix refcount leak in sifive_gpio_probe + - net: sched: atm: dont intepret cls results when asked to drop + - net: sched: cbq: dont intepret cls results when asked to drop + - net: sparx5: Fix reading of the MAC address + - netfilter: ipset: fix hash:net,port,net hang with /0 subnet + - netfilter: ipset: Rework long task execution when adding/deleting entries + - perf tools: Fix resources leak in perf_data__open_dir() + - drm/imx: ipuv3-plane: Fix overlay plane width + - fs/ntfs3: don't hold ni_lock when calling truncate_setsize() + - drivers/net/bonding/bond_3ad: return when there's no aggregator + - octeontx2-pf: Fix lmtst ID used in aura free + - usb: rndis_host: Secure rndis_query check against int overflow + - perf stat: Fix handling of --for-each-cgroup with --bpf-counters to match + non BPF mode + - drm/i915: unpin on error in intel_vgpu_shadow_mm_pin() + - caif: fix memory leak in cfctrl_linkup_request() + - udf: Fix extension of the last extent in the file + - ASoC: Intel: bytcr_rt5640: Add quirk for the Advantech MICA-071 tablet + - nvme: fix multipath crash caused by flush request when blktrace is enabled + - io_uring: check for valid register opcode earlier + - nvmet: use NVME_CMD_EFFECTS_CSUPP instead of open coding it + - nvme: also return I/O command effects from nvme_command_effects + - btrfs: check superblock to ensure the fs was not modified at thaw time + - x86/kexec: Fix double-free of elf header buffer + - nfsd: fix handling of readdir in v4root vs. mount upcall timeout + - fbdev: matroxfb: G200eW: Increase max memory from 1 MB to 16 MB + - block: don't allow splitting of a REQ_NOWAIT bio + - io_uring: fix CQ waiting timeout handling + - thermal: int340x: Add missing attribute for data rate base + - riscv: uaccess: fix type of 0 variable on error in get_user() + - riscv, kprobes: Stricter c.jr/c.jalr decoding + - drm/i915/gvt: fix gvt debugfs destroy + - drm/i915/gvt: fix vgpu debugfs clean in remove + - hfs/hfsplus: use WARN_ON for sanity check + - hfs/hfsplus: avoid WARN_ON() for sanity check, use proper error handling + - ksmbd: fix infinite loop in ksmbd_conn_handler_loop() + - ksmbd: check nt_len to be at least CIFS_ENCPWD_SIZE in + ksmbd_decode_ntlmssp_auth_blob + - Revert "ACPI: PM: Add support for upcoming AMD uPEP HID AMDI007" + - mptcp: dedicated request sock for subflow in v6 + - mptcp: use proper req destructor for IPv6 + - ext4: don't allow journal inode to have encrypt flag + - selftests: set the BUILD variable to absolute path + - btrfs: make thaw time super block check to also verify checksum + - net: hns3: fix return value check bug of rx copybreak + - mbcache: Avoid nesting of cache->c_list_lock under bit locks + - efi: random: combine bootloader provided RNG seed with RNG protocol output + - io_uring: Fix unsigned 'res' comparison with zero in io_fixup_rw_res() + - drm/mgag200: Fix PLL setup for G200_SE_A rev >=4 + - Linux 5.15.87 + * Jammy update: v5.15.87 upstream stable release (LP: #2007441) // + CVE-2022-41218 is assigned to those bugs above. + - media: dvb-core: Fix UAF due to refcount races at releasing + * RaptorLake: Fix the Screen is shaking by onboard HDMI port in mirror mode + (LP: #1993561) + - drm/i915/display: Drop check for doublescan mode in modevalid + - drm/i915/display: Prune Interlace modes for Display >=12 + * CVE-2023-0266 // CVE-2023-0266 was assigned for this issue. + - ALSA: pcm: Move rwsem lock inside snd_ctl_elem_read to prevent UAF + * CVE-2022-4382 + - USB: gadgetfs: Fix race between mounting and unmounting + * CVE-2022-2196 + - KVM: VMX: Execute IBPB on emulated VM-exit when guest has IBRS + * ubuntu_kernel_selftests: net:udpgso_bench.sh failed (LP: #1951447) + - selftests: net: udpgso_bench: Fix racing bug between the rx/tx programs + * net:fcnal-test.sh didn't return a non-zero value even with some sub-tests + failed (LP: #2006692) + - selftests: net/fcnal-test.sh: add exit code + * LXD containers using shiftfs on ZFS or TMPFS broken on 5.15.0-48.54 + (LP: #1990849) + - SAUCE: shiftfs: always rely on init_user_ns + - [SAUCE] shiftfs: fix -EOVERFLOW inside the container + * Regression in ext4 during online resize (LP: #2003816) + - ext4: fix bad checksum after online resize + - ext4: fix corruption when online resizing a 1K bigalloc fs + - SAUCE: Export ext4_superblock_csum function + - ext4: fix corrupt backup group descriptors after online resize + * Jammy update: v5.15.86 upstream stable release (LP: #2005113) + - usb: musb: remove extra check in musb_gadget_vbus_draw + - arm64: dts: qcom: ipq6018-cp01-c1: use BLSPI1 pins + - arm64: dts: qcom: sm8250-sony-xperia-edo: fix touchscreen bias-disable + - arm64: dts: qcom: msm8996: Add MSM8996 Pro support + - arm64: dts: qcom: msm8996: fix supported-hw in cpufreq OPP tables + - arm64: dts: qcom: msm8996: fix GPU OPP table + - ARM: dts: qcom: apq8064: fix coresight compatible + - arm64: dts: qcom: sdm630: fix UART1 pin bias + - arm64: dts: qcom: sdm845-cheza: fix AP suspend pin bias + - arm64: dts: qcom: msm8916: Drop MSS fallback compatible + - objtool, kcsan: Add volatile read/write instrumentation to whitelist + - ARM: dts: stm32: Drop stm32mp15xc.dtsi from Avenger96 + - ARM: dts: stm32: Fix AV96 WLAN regulator gpio property + - drivers: soc: ti: knav_qmss_queue: Mark knav_acc_firmwares as static + - arm64: dts: qcom: pm660: Use unique ADC5_VCOIN address in node name + - arm64: dts: qcom: sm8250: correct LPASS pin pull down + - soc: qcom: llcc: make irq truly optional + - arm64: dts: qcom: Correct QMP PHY child node name + - arm64: dts: qcom: sm8150: fix UFS PHY registers + - arm64: dts: qcom: sm8250: fix UFS PHY registers + - arm64: dts: qcom: sm8350: fix UFS PHY registers + - arm64: dts: qcom: sm8250: drop bogus DP PHY clock + - soc: qcom: apr: make code more reuseable + - soc: qcom: apr: Add check for idr_alloc and of_property_read_string_index + - arm64: dts: qcom: sm6125: fix SDHCI CQE reg names + - arm: dts: spear600: Fix clcd interrupt + - soc: ti: knav_qmss_queue: Use pm_runtime_resume_and_get instead of + pm_runtime_get_sync + - soc: ti: knav_qmss_queue: Fix PM disable depth imbalance in knav_queue_probe + - soc: ti: smartreflex: Fix PM disable depth imbalance in omap_sr_probe + - arm64: Treat ESR_ELx as a 64-bit register + - arm64: mm: kfence: only handle translation faults + - perf: arm_dsu: Fix hotplug callback leak in dsu_pmu_init() + - perf/arm_dmc620: Fix hotplug callback leak in dmc620_pmu_init() + - perf/smmuv3: Fix hotplug callback leak in arm_smmu_pmu_init() + - arm64: dts: ti: k3-am65-main: Drop dma-coherent in crypto node + - arm64: dts: ti: k3-j721e-main: Drop dma-coherent in crypto node + - ARM: dts: nuvoton: Remove bogus unit addresses from fixed-partition nodes + - arm64: dts: mt6779: Fix devicetree build warnings + - arm64: dts: mt2712e: Fix unit_address_vs_reg warning for oscillators + - arm64: dts: mt2712e: Fix unit address for pinctrl node + - arm64: dts: mt2712-evb: Fix vproc fixed regulators unit names + - arm64: dts: mt2712-evb: Fix usb vbus regulators unit names + - arm64: dts: mediatek: pumpkin-common: Fix devicetree warnings + - arm64: dts: mediatek: mt6797: Fix 26M oscillator unit name + - ARM: dts: dove: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-370: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-xp: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-375: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-38x: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-39x: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: turris-omnia: Add ethernet aliases + - ARM: dts: turris-omnia: Add switch port 6 node + - arm64: dts: armada-3720-turris-mox: Add missing interrupt for RTC + - seccomp: Move copy_seccomp() to no failure path. + - pstore/ram: Fix error return code in ramoops_probe() + - ARM: mmp: fix timer_read delay + - pstore: Avoid kcore oops by vmap()ing with VM_IOREMAP + - tpm/tpm_ftpm_tee: Fix error handling in ftpm_mod_init() + - tpm/tpm_crb: Fix error message in __crb_relinquish_locality() + - ovl: store lower path in ovl_inode + - ovl: use ovl_copy_{real,upper}attr() wrappers + - ovl: remove privs in ovl_copyfile() + - ovl: remove privs in ovl_fallocate() + - sched/fair: Cleanup task_util and capacity type + - sched/uclamp: Fix relationship between uclamp and migration margin + - sched/uclamp: Make task_fits_capacity() use util_fits_cpu() + - sched/uclamp: Make select_idle_capacity() use util_fits_cpu() + - sched/fair: Removed useless update of p->recent_used_cpu + - sched/core: Introduce sched_asym_cpucap_active() + - sched/uclamp: Make asym_fits_capacity() use util_fits_cpu() + - cpuidle: dt: Return the correct numbers of parsed idle states + - alpha: fix TIF_NOTIFY_SIGNAL handling + - alpha: fix syscall entry in !AUDUT_SYSCALL case + - x86/sgx: Reduce delay and interference of enclave release + - PM: hibernate: Fix mistake in kerneldoc comment + - fs: don't audit the capability check in simple_xattr_list() + - cpufreq: qcom-hw: Fix memory leak in qcom_cpufreq_hw_read_lut() + - selftests/ftrace: event_triggers: wait longer for test_event_enable + - perf: Fix possible memleak in pmu_dev_alloc() + - lib/debugobjects: fix stat count and optimize debug_objects_mem_init + - platform/x86: huawei-wmi: fix return value calculation + - timerqueue: Use rb_entry_safe() in timerqueue_getnext() + - proc: fixup uptime selftest + - lib/fonts: fix undefined behavior in bit shift for get_default_font + - ocfs2: fix memory leak in ocfs2_stack_glue_init() + - MIPS: vpe-mt: fix possible memory leak while module exiting + - MIPS: vpe-cmp: fix possible memory leak while module exiting + - selftests/efivarfs: Add checking of the test return value + - PNP: fix name memory leak in pnp_alloc_dev() + - perf/x86/intel/uncore: Fix reference count leak in sad_cfg_iio_topology() + - perf/x86/intel/uncore: Fix reference count leak in hswep_has_limit_sbox() + - perf/x86/intel/uncore: Fix reference count leak in snr_uncore_mmio_map() + - perf/x86/intel/uncore: Fix reference count leak in __uncore_imc_init_box() + - platform/chrome: cros_usbpd_notify: Fix error handling in + cros_usbpd_notify_init() + - thermal: core: fix some possible name leaks in error paths + - irqchip: gic-pm: Use pm_runtime_resume_and_get() in gic_probe() + - irqchip/wpcm450: Fix memory leak in wpcm450_aic_of_init() + - EDAC/i10nm: fix refcount leak in pci_get_dev_wrapper() + - SUNRPC: Return true/false (not 1/0) from bool functions + - NFSD: Finish converting the NFSv2 GETACL result encoder + - nfsd: don't call nfsd_file_put from client states seqfile display + - genirq/irqdesc: Don't try to remove non-existing sysfs files + - cpufreq: amd_freq_sensitivity: Add missing pci_dev_put() + - libfs: add DEFINE_SIMPLE_ATTRIBUTE_SIGNED for signed value + - lib/notifier-error-inject: fix error when writing -errno to debugfs file + - debugfs: fix error when writing negative value to atomic_t debugfs file + - rapidio: fix possible name leaks when rio_add_device() fails + - rapidio: rio: fix possible name leak in rio_register_mport() + - clocksource/drivers/sh_cmt: Access registers according to spec + - mips: ralink: mt7621: define MT7621_SYSC_BASE with __iomem + - mips: ralink: mt7621: soc queries and tests as functions + - mips: ralink: mt7621: do not use kzalloc too early + - futex: Move to kernel/futex/ + - futex: Resend potentially swallowed owner death notification + - cpu/hotplug: Make target_store() a nop when target == state + - cpu/hotplug: Do not bail-out in DYING/STARTING sections + - clocksource/drivers/timer-ti-dm: Fix missing clk_disable_unprepare in + dmtimer_systimer_init_clock() + - ACPICA: Fix use-after-free in acpi_ut_copy_ipackage_to_ipackage() + - uprobes/x86: Allow to probe a NOP instruction with 0x66 prefix + - x86/xen: Fix memory leak in xen_smp_intr_init{_pv}() + - x86/xen: Fix memory leak in xen_init_lock_cpu() + - xen/privcmd: Fix a possible warning in privcmd_ioctl_mmap_resource() + - PM: runtime: Do not call __rpm_callback() from rpm_idle() + - platform/chrome: cros_ec_typec: Cleanup switch handle return paths + - platform/chrome: cros_ec_typec: zero out stale pointers + - platform/x86: mxm-wmi: fix memleak in mxm_wmi_call_mx[ds|mx]() + - platform/x86: intel_scu_ipc: fix possible name leak in + __intel_scu_ipc_register() + - MIPS: BCM63xx: Add check for NULL for clk in clk_enable + - MIPS: OCTEON: warn only once if deprecated link status is being used + - lockd: set other missing fields when unlocking files + - fs: sysv: Fix sysv_nblocks() returns wrong value + - rapidio: fix possible UAF when kfifo_alloc() fails + - eventfd: change int to __u64 in eventfd_signal() ifndef CONFIG_EVENTFD + - relay: fix type mismatch when allocating memory in relay_create_buf() + - hfs: Fix OOB Write in hfs_asc2mac + - rapidio: devices: fix missing put_device in mport_cdev_open + - platform/mellanox: mlxbf-pmc: Fix event typo + - wifi: ath9k: hif_usb: fix memory leak of urbs in + ath9k_hif_usb_dealloc_tx_urbs() + - wifi: ath9k: hif_usb: Fix use-after-free in ath9k_hif_usb_reg_in_cb() + - wifi: rtl8xxxu: Fix reading the vendor of combo chips + - drm/bridge: adv7533: remove dynamic lane switching from adv7533 bridge + - libbpf: Fix use-after-free in btf_dump_name_dups + - libbpf: Fix null-pointer dereference in find_prog_by_sec_insn() + - ata: libata: move ata_{port,link,dev}_dbg to standard pr_XXX() macros + - ata: add/use ata_taskfile::{error|status} fields + - ata: libata: fix NCQ autosense logic + - ipmi: kcs: Poll OBF briefly to reduce OBE latency + - drm/amdgpu/powerplay/psm: Fix memory leak in power state init + - media: v4l2-ctrls: Fix off-by-one error in integer menu control check + - media: coda: jpeg: Add check for kmalloc + - media: adv748x: afe: Select input port when initializing AFE + - media: i2c: ad5820: Fix error path + - venus: pm_helpers: Fix error check in vcodec_domains_get() + - soreuseport: Fix socket selection for SO_INCOMING_CPU. + - media: exynos4-is: don't rely on the v4l2_async_subdev internals + - libbpf: Btf dedup identical struct test needs check for nested + structs/arrays + - can: kvaser_usb: do not increase tx statistics when sending error message + frames + - can: kvaser_usb: kvaser_usb_leaf: Get capabilities from device + - can: kvaser_usb: kvaser_usb_leaf: Rename {leaf,usbcan}_cmd_error_event to + {leaf,usbcan}_cmd_can_error_event + - can: kvaser_usb: kvaser_usb_leaf: Handle CMD_ERROR_EVENT + - can: kvaser_usb_leaf: Set Warning state even without bus errors + - can: kvaser_usb: make use of units.h in assignment of frequency + - can: kvaser_usb_leaf: Fix improved state not being reported + - can: kvaser_usb_leaf: Fix wrong CAN state after stopping + - can: kvaser_usb_leaf: Fix bogus restart events + - can: kvaser_usb: Add struct kvaser_usb_busparams + - can: kvaser_usb: Compare requested bittiming parameters with actual + parameters in do_set_{,data}_bittiming + - drm/rockchip: lvds: fix PM usage counter unbalance in poweron + - clk: renesas: r9a06g032: Repair grave increment error + - spi: Update reference to struct spi_controller + - drm/panel/panel-sitronix-st7701: Remove panel on DSI attach failure + - drm/msm/hdmi: drop unused GPIO support + - drm/msm/hdmi: use devres helper for runtime PM management + - bpf: Fix slot type check in check_stack_write_var_off + - media: vivid: fix compose size exceed boundary + - media: platform: exynos4-is: fix return value check in fimc_md_probe() + - bpf: propagate precision in ALU/ALU64 operations + - bpf: Check the other end of slot_type for STACK_SPILL + - bpf: propagate precision across all frames, not just the last one + - clk: qcom: gcc-sm8250: Use retention mode for USB GDSCs + - mtd: Fix device name leak when register device failed in add_mtd_device() + - Input: joystick - fix Kconfig warning for JOYSTICK_ADC + - wifi: rsi: Fix handling of 802.3 EAPOL frames sent via control port + - media: camss: Clean up received buffers on failed start of streaming + - net, proc: Provide PROC_FS=n fallback for proc_create_net_single_write() + - rxrpc: Fix ack.bufferSize to be 0 when generating an ack + - bfq: fix waker_bfqq inconsistency crash + - drm/radeon: Add the missed acpi_put_table() to fix memory leak + - drm/mediatek: Modify dpi power on/off sequence. + - ASoC: pxa: fix null-pointer dereference in filter() + - libbpf: Fix uninitialized warning in btf_dump_dump_type_data + - nvmet: only allocate a single slab for bvecs + - regulator: core: fix unbalanced of node refcount in regulator_dev_lookup() + - amdgpu/pm: prevent array underflow in vega20_odn_edit_dpm_table() + - nvme: return err on nvme_init_non_mdts_limits fail + - regulator: qcom-rpmh: Fix PMR735a S3 regulator spec + - drm/fourcc: Add packed 10bit YUV 4:2:0 format + - drm/fourcc: Fix vsub/hsub for Q410 and Q401 + - integrity: Fix memory leakage in keyring allocation error path + - ima: Fix misuse of dereference of pointer in template_desc_init_fields() + - block: clear ->slave_dir when dropping the main slave_dir reference + - wifi: ath10k: Fix return value in ath10k_pci_init() + - drm/msm/a6xx: Fix speed-bin detection vs probe-defer + - mtd: lpddr2_nvm: Fix possible null-ptr-deref + - Input: elants_i2c - properly handle the reset GPIO when power is off + - media: vidtv: Fix use-after-free in vidtv_bridge_dvb_init() + - media: solo6x10: fix possible memory leak in solo_sysfs_init() + - media: platform: exynos4-is: Fix error handling in fimc_md_init() + - media: videobuf-dma-contig: use dma_mmap_coherent + - inet: add READ_ONCE(sk->sk_bound_dev_if) in inet_csk_bind_conflict() + - mtd: spi-nor: hide jedec_id sysfs attribute if not present + - mtd: spi-nor: Fix the number of bytes for the dummy cycles + - bpf: Move skb->len == 0 checks into __bpf_redirect + - HID: hid-sensor-custom: set fixed size for custom attributes + - pinctrl: k210: call of_node_put() + - ALSA: pcm: fix undefined behavior in bit shift for SNDRV_PCM_RATE_KNOT + - ALSA: seq: fix undefined behavior in bit shift for + SNDRV_SEQ_FILTER_USE_EVENT + - regulator: core: use kfree_const() to free space conditionally + - clk: rockchip: Fix memory leak in rockchip_clk_register_pll() + - drm/amdgpu: fix pci device refcount leak + - bonding: fix link recovery in mode 2 when updelay is nonzero + - mtd: maps: pxa2xx-flash: fix memory leak in probe + - drbd: remove call to memset before free device/resource/connection + - drbd: destroy workqueue when drbd device was freed + - ASoC: qcom: Add checks for devm_kcalloc + - media: vimc: Fix wrong function called when vimc_init() fails + - media: imon: fix a race condition in send_packet() + - clk: imx8mn: rename vpu_pll to m7_alt_pll + - clk: imx: replace osc_hdmi with dummy + - clk: imx8mn: fix imx8mn_sai2_sels clocks list + - clk: imx8mn: fix imx8mn_enet_phy_sels clocks list + - pinctrl: pinconf-generic: add missing of_node_put() + - media: dvb-core: Fix ignored return value in dvb_register_frontend() + - media: dvb-usb: az6027: fix null-ptr-deref in az6027_i2c_xfer() + - media: s5p-mfc: Add variant data for MFC v7 hardware for Exynos 3250 SoC + - drm/tegra: Add missing clk_disable_unprepare() in tegra_dc_probe() + - ASoC: dt-bindings: wcd9335: fix reset line polarity in example + - ASoC: mediatek: mtk-btcvsd: Add checks for write and read of mtk_btcvsd_snd + - NFSv4.2: Clear FATTR4_WORD2_SECURITY_LABEL when done decoding + - NFSv4.2: Fix a memory stomp in decode_attr_security_label + - NFSv4.2: Fix initialisation of struct nfs4_label + - NFSv4: Fix a credential leak in _nfs4_discover_trunking() + - NFSv4: Fix a deadlock between nfs4_open_recover_helper() and delegreturn + - NFS: Fix an Oops in nfs_d_automount() + - ALSA: asihpi: fix missing pci_disable_device() + - wifi: iwlwifi: mvm: fix double free on tx path. + - ASoC: mediatek: mt8173: Fix debugfs registration for components + - ASoC: mediatek: mt8173: Enable IRQ when pdata is ready + - drm/amd/pm/smu11: BACO is supported when it's in BACO state + - drm/radeon: Fix PCI device refcount leak in radeon_atrm_get_bios() + - drm/amdgpu: Fix PCI device refcount leak in amdgpu_atrm_get_bios() + - drm/amdkfd: Fix memory leakage + - ASoC: pcm512x: Fix PM disable depth imbalance in pcm512x_probe + - netfilter: conntrack: set icmpv6 redirects as RELATED + - Input: wistron_btns - disable on UML + - bpf, sockmap: Fix repeated calls to sock_put() when msg has more_data + - bpf, sockmap: Fix missing BPF_F_INGRESS flag when using apply_bytes + - bpf, sockmap: Fix data loss caused by using apply_bytes on ingress redirect + - bonding: uninitialized variable in bond_miimon_inspect() + - spi: spidev: mask SPI_CS_HIGH in SPI_IOC_RD_MODE + - wifi: cfg80211: Fix not unregister reg_pdev when load_builtin_regdb_keys() + fails + - mt76: stop the radar detector after leaving dfs channel + - wifi: mt76: mt7921: fix reporting of TX AGGR histogram + - wifi: mt76: fix coverity overrun-call in mt76_get_txpower() + - regulator: core: fix module refcount leak in set_supply() + - clk: qcom: lpass-sc7180: Fix pm_runtime usage + - clk: qcom: clk-krait: fix wrong div2 functions + - hsr: Add a rcu-read lock to hsr_forward_skb(). + - hsr: Avoid double remove of a node. + - hsr: Disable netpoll. + - hsr: Synchronize sending frames to have always incremented outgoing seq nr. + - hsr: Synchronize sequence number updates. + - configfs: fix possible memory leak in configfs_create_dir() + - regulator: core: fix resource leak in regulator_register() + - hwmon: (jc42) Convert register access and caching to regmap/regcache + - hwmon: (jc42) Restore the min/max/critical temperatures on resume + - bpf, sockmap: fix race in sock_map_free() + - ALSA: pcm: Set missing stop_operating flag at undoing trigger start + - media: saa7164: fix missing pci_disable_device() + - ALSA: mts64: fix possible null-ptr-defer in snd_mts64_interrupt + - xprtrdma: Fix regbuf data not freed in rpcrdma_req_create() + - SUNRPC: Fix missing release socket in rpc_sockname() + - NFSv4.x: Fail client initialisation if state manager thread can't run + - riscv, bpf: Emit fixed-length instructions for BPF_PSEUDO_FUNC + - mmc: alcor: fix return value check of mmc_add_host() + - mmc: moxart: fix return value check of mmc_add_host() + - mmc: mxcmmc: fix return value check of mmc_add_host() + - mmc: pxamci: fix return value check of mmc_add_host() + - mmc: rtsx_pci: fix return value check of mmc_add_host() + - mmc: rtsx_usb_sdmmc: fix return value check of mmc_add_host() + - mmc: toshsd: fix return value check of mmc_add_host() + - mmc: vub300: fix return value check of mmc_add_host() + - mmc: wmt-sdmmc: fix return value check of mmc_add_host() + - mmc: atmel-mci: fix return value check of mmc_add_host() + - mmc: omap_hsmmc: fix return value check of mmc_add_host() + - mmc: meson-gx: fix return value check of mmc_add_host() + - mmc: via-sdmmc: fix return value check of mmc_add_host() + - mmc: wbsd: fix return value check of mmc_add_host() + - mmc: mmci: fix return value check of mmc_add_host() + - mmc: renesas_sdhi: alway populate SCC pointer + - memstick: ms_block: Add error handling support for add_disk() + - memstick/ms_block: Add check for alloc_ordered_workqueue + - mmc: core: Normalize the error handling branch in sd_read_ext_regs() + - regulator: qcom-labibb: Fix missing of_node_put() in + qcom_labibb_regulator_probe() + - media: c8sectpfe: Add of_node_put() when breaking out of loop + - media: coda: Add check for dcoda_iram_alloc + - media: coda: Add check for kmalloc + - clk: samsung: Fix memory leak in _samsung_clk_register_pll() + - spi: spi-gpio: Don't set MOSI as an input if not 3WIRE mode + - wifi: rtl8xxxu: Add __packed to struct rtl8723bu_c2h + - wifi: rtl8xxxu: Fix the channel width reporting + - wifi: brcmfmac: Fix error return code in brcmf_sdio_download_firmware() + - blktrace: Fix output non-blktrace event when blk_classic option enabled + - bpf: Do not zero-extend kfunc return values + - clk: socfpga: Fix memory leak in socfpga_gate_init() + - net: vmw_vsock: vmci: Check memcpy_from_msg() + - net: defxx: Fix missing err handling in dfx_init() + - net: stmmac: selftests: fix potential memleak in stmmac_test_arpoffload() + - net: stmmac: fix possible memory leak in stmmac_dvr_probe() + - drivers: net: qlcnic: Fix potential memory leak in qlcnic_sriov_init() + - of: overlay: fix null pointer dereferencing in find_dup_cset_node_entry() + and find_dup_cset_prop() + - ethernet: s2io: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: farsync: Fix kmemleak when rmmods farsync + - net/tunnel: wait until all sk_user_data reader finish before releasing the + sock + - net: apple: mace: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: apple: bmac: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: emaclite: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: ethernet: dnet: don't call dev_kfree_skb() under spin_lock_irqsave() + - hamradio: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: amd: lance: don't call dev_kfree_skb() under spin_lock_irqsave() + - af_unix: call proto_unregister() in the error path in af_unix_init() + - net: amd-xgbe: Fix logic around active and passive cables + - net: amd-xgbe: Check only the minimum speed for active/passive cables + - can: tcan4x5x: Remove invalid write in clear_interrupts + - can: m_can: Call the RAM init directly from m_can_chip_config + - can: tcan4x5x: Fix use of register error status mask + - net: lan9303: Fix read error execution path + - ntb_netdev: Use dev_kfree_skb_any() in interrupt context + - sctp: sysctl: make extra pointers netns aware + - Bluetooth: MGMT: Fix error report for ADD_EXT_ADV_PARAMS + - Bluetooth: btintel: Fix missing free skb in btintel_setup_combined() + - Bluetooth: btusb: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_qca: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_ll: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_h5: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_bcsp: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_core: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: RFCOMM: don't call kfree_skb() under spin_lock_irqsave() + - stmmac: fix potential division by 0 + - i40e: Fix the inability to attach XDP program on downed interface + - net: dsa: tag_8021q: avoid leaking ctx on dsa_tag_8021q_register() error + path + - apparmor: fix a memleak in multi_transaction_new() + - apparmor: fix lockdep warning when removing a namespace + - apparmor: Fix abi check to include v8 abi + - crypto: hisilicon/qm - fix missing destroy qp_idr + - crypto: sun8i-ss - use dma_addr instead u32 + - crypto: nitrox - avoid double free on error path in nitrox_sriov_init() + - scsi: core: Fix a race between scsi_done() and scsi_timeout() + - apparmor: Use pointer to struct aa_label for lbs_cred + - PCI: dwc: Fix n_fts[] array overrun + - RDMA/core: Fix order of nldev_exit call + - PCI: pci-epf-test: Register notifier if only core_init_notifier is enabled + - f2fs: Fix the race condition of resize flag between resizefs + - crypto: rockchip - do not do custom power management + - crypto: rockchip - do not store mode globally + - crypto: rockchip - add fallback for cipher + - crypto: rockchip - add fallback for ahash + - crypto: rockchip - better handle cipher key + - crypto: rockchip - remove non-aligned handling + - crypto: rockchip - rework by using crypto_engine + - apparmor: Fix memleak in alloc_ns() + - f2fs: fix to invalidate dcc->f2fs_issue_discard in error path + - f2fs: fix normal discard process + - f2fs: fix to destroy sbi->post_read_wq in error path of f2fs_fill_super() + - RDMA/irdma: Report the correct link speed + - scsi: qla2xxx: Fix set-but-not-used variable warnings + - RDMA/siw: Fix immediate work request flush to completion queue + - IB/mad: Don't call to function that might sleep while in atomic context + - RDMA/restrack: Release MR restrack when delete + - RDMA/core: Make sure "ib_port" is valid when access sysfs node + - RDMA/nldev: Return "-EAGAIN" if the cm_id isn't from expected port + - RDMA/siw: Set defined status for work completion with undefined status + - scsi: scsi_debug: Fix a warning in resp_write_scat() + - crypto: ccree - Remove debugfs when platform_driver_register failed + - crypto: cryptd - Use request context instead of stack for sub-request + - crypto: hisilicon/qm - add missing pci_dev_put() in q_num_set() + - RDMA/hns: Repacing 'dseg_len' by macros in fill_ext_sge_inl_data() + - RDMA/hns: Fix ext_sge num error when post send + - PCI: Check for alloc failure in pci_request_irq() + - RDMA/hfi: Decrease PCI device reference count in error path + - crypto: ccree - Make cc_debugfs_global_fini() available for module init + function + - RDMA/hns: fix memory leak in hns_roce_alloc_mr() + - RDMA/rxe: Fix NULL-ptr-deref in rxe_qp_do_cleanup() when socket create + failed + - dt-bindings: imx6q-pcie: Fix clock names for imx6sx and imx8mq + - dt-bindings: visconti-pcie: Fix interrupts array max constraints + - scsi: hpsa: Fix possible memory leak in hpsa_init_one() + - crypto: tcrypt - Fix multibuffer skcipher speed test mem leak + - padata: Always leave BHs disabled when running ->parallel() + - padata: Fix list iterator in padata_do_serial() + - scsi: mpt3sas: Fix possible resource leaks in mpt3sas_transport_port_add() + - scsi: hpsa: Fix error handling in hpsa_add_sas_host() + - scsi: hpsa: Fix possible memory leak in hpsa_add_sas_device() + - scsi: efct: Fix possible memleak in efct_device_init() + - scsi: scsi_debug: Fix a warning in resp_verify() + - scsi: scsi_debug: Fix a warning in resp_report_zones() + - scsi: fcoe: Fix possible name leak when device_register() fails + - scsi: scsi_debug: Fix possible name leak in sdebug_add_host_helper() + - scsi: ipr: Fix WARNING in ipr_init() + - scsi: fcoe: Fix transport not deattached when fcoe_if_init() fails + - scsi: snic: Fix possible UAF in snic_tgt_create() + - RDMA/nldev: Add checks for nla_nest_start() in fill_stat_counter_qps() + - f2fs: avoid victim selection from previous victim section + - RDMA/nldev: Fix failure to send large messages + - crypto: amlogic - Remove kcalloc without check + - crypto: omap-sham - Use pm_runtime_resume_and_get() in omap_sham_probe() + - riscv/mm: add arch hook arch_clear_hugepage_flags + - RDMA/hfi1: Fix error return code in parse_platform_config() + - RDMA/srp: Fix error return code in srp_parse_options() + - PCI: mt7621: Rename mt7621_pci_ to mt7621_pcie_ + - PCI: mt7621: Add sentinel to quirks table + - orangefs: Fix sysfs not cleanup when dev init failed + - RDMA/hns: Fix AH attr queried by query_qp + - RDMA/hns: Fix PBL page MTR find + - RDMA/hns: Fix page size cap from firmware + - RDMA/hns: Fix error code of CMD + - crypto: img-hash - Fix variable dereferenced before check 'hdev->req' + - hwrng: amd - Fix PCI device refcount leak + - hwrng: geode - Fix PCI device refcount leak + - IB/IPoIB: Fix queue count inconsistency for PKEY child interfaces + - RISC-V: Align the shadow stack + - drivers: dio: fix possible memory leak in dio_init() + - serial: tegra: Read DMA status before terminating + - serial: 8250_bcm7271: Fix error handling in brcmuart_init() + - class: fix possible memory leak in __class_register() + - vfio: platform: Do not pass return buffer to ACPI _RST method + - uio: uio_dmem_genirq: Fix missing unlock in irq configuration + - uio: uio_dmem_genirq: Fix deadlock between irq config and handling + - usb: fotg210-udc: Fix ages old endianness issues + - staging: vme_user: Fix possible UAF in tsi148_dma_list_add + - usb: typec: Check for ops->exit instead of ops->enter in altmode_exit + - usb: typec: tcpci: fix of node refcount leak in tcpci_register_port() + - usb: typec: tipd: Cleanup resources if devm_tps6598_psy_register fails + - usb: typec: tipd: Fix spurious fwnode_handle_put in error path + - extcon: usbc-tusb320: Add support for mode setting and reset + - extcon: usbc-tusb320: Add support for TUSB320L + - usb: typec: Factor out non-PD fwnode properties + - extcon: usbc-tusb320: Factor out extcon into dedicated functions + - extcon: usbc-tusb320: Add USB TYPE-C support + - extcon: usbc-tusb320: Update state on probe even if no IRQ pending + - serial: amba-pl011: avoid SBSA UART accessing DMACR register + - serial: pl011: Do not clear RX FIFO & RX interrupt in unthrottle. + - serial: stm32: move dma_request_chan() before clk_prepare_enable() + - serial: pch: Fix PCI device refcount leak in pch_request_dma() + - tty: serial: clean up stop-tx part in altera_uart_tx_chars() + - tty: serial: altera_uart_{r,t}x_chars() need only uart_port + - serial: altera_uart: fix locking in polling mode + - serial: sunsab: Fix error handling in sunsab_init() + - test_firmware: fix memory leak in test_firmware_init() + - misc: ocxl: fix possible name leak in ocxl_file_register_afu() + - ocxl: fix pci device refcount leak when calling get_function_0() + - misc: tifm: fix possible memory leak in tifm_7xx1_switch_media() + - misc: sgi-gru: fix use-after-free error in gru_set_context_option, gru_fault + and gru_handle_user_call_os + - firmware: raspberrypi: fix possible memory leak in rpi_firmware_probe() + - cxl: fix possible null-ptr-deref in cxl_guest_init_afu|adapter() + - cxl: fix possible null-ptr-deref in cxl_pci_init_afu|adapter() + - iio: temperature: ltc2983: make bulk write buffer DMA-safe + - iio: adis: handle devices that cannot unmask the drdy pin + - iio: adis: stylistic changes + - iio:imu:adis: Move exports into IIO_ADISLIB namespace + - iio: adis: add '__adis_enable_irq()' implementation + - counter: stm32-lptimer-cnt: fix the check on arr and cmp registers update + - coresight: trbe: remove cpuhp instance node before remove cpuhp state + - usb: roles: fix of node refcount leak in usb_role_switch_is_parent() + - usb: gadget: f_hid: fix f_hidg lifetime vs cdev + - usb: gadget: f_hid: fix refcount leak on error path + - drivers: mcb: fix resource leak in mcb_probe() + - mcb: mcb-parse: fix error handing in chameleon_parse_gdd() + - chardev: fix error handling in cdev_device_add() + - i2c: pxa-pci: fix missing pci_disable_device() on error in ce4100_i2c_probe + - staging: rtl8192u: Fix use after free in ieee80211_rx() + - staging: rtl8192e: Fix potential use-after-free in rtllib_rx_Monitor() + - vme: Fix error not catched in fake_init() + - gpiolib: Get rid of redundant 'else' + - gpiolib: cdev: fix NULL-pointer dereferences + - gpiolib: make struct comments into real kernel docs + - gpiolib: protect the GPIO device against being dropped while in use by user- + space + - i2c: mux: reg: check return value after calling platform_get_resource() + - i2c: ismt: Fix an out-of-bounds bug in ismt_access() + - usb: storage: Add check for kcalloc + - tracing/hist: Fix issue of losting command info in error_log + - ksmbd: Fix resource leak in ksmbd_session_rpc_open() + - samples: vfio-mdev: Fix missing pci_disable_device() in mdpy_fb_probe() + - thermal/drivers/imx8mm_thermal: Validate temperature range + - thermal/drivers/qcom/temp-alarm: Fix inaccurate warning for gen2 + - thermal/drivers/qcom/lmh: Fix irq handler return value + - fbdev: ssd1307fb: Drop optional dependency + - fbdev: pm2fb: fix missing pci_disable_device() + - fbdev: via: Fix error in via_core_init() + - fbdev: vermilion: decrease reference count in error path + - fbdev: ep93xx-fb: Add missing clk_disable_unprepare in ep93xxfb_probe() + - fbdev: geode: don't build on UML + - fbdev: uvesafb: don't build on UML + - fbdev: uvesafb: Fixes an error handling path in uvesafb_probe() + - HSI: omap_ssi_core: fix unbalanced pm_runtime_disable() + - HSI: omap_ssi_core: fix possible memory leak in ssi_probe() + - power: supply: fix residue sysfs file in error handle route of + __power_supply_register() + - perf trace: Return error if a system call doesn't exist + - perf trace: Use macro RAW_SYSCALL_ARGS_NUM to replace number + - perf trace: Handle failure when trace point folder is missed + - perf symbol: correction while adjusting symbol + - power: supply: z2_battery: Fix possible memleak in z2_batt_probe() + - HSI: omap_ssi_core: Fix error handling in ssi_init() + - power: supply: ab8500: Fix error handling in ab8500_charger_init() + - power: supply: fix null pointer dereferencing in + power_supply_get_battery_info + - perf stat: Refactor __run_perf_stat() common code + - perf stat: Do not delay the workload with --delay + - RDMA/siw: Fix pointer cast warning + - fs/ntfs3: Avoid UBSAN error on true_sectors_per_clst() + - overflow: Implement size_t saturating arithmetic helpers + - fs/ntfs3: Harden against integer overflows + - iommu/sun50i: Fix reset release + - iommu/sun50i: Consider all fault sources for reset + - iommu/sun50i: Fix R/W permission check + - iommu/sun50i: Fix flush size + - iommu/rockchip: fix permission bits in page table entries v2 + - phy: usb: s2 WoL wakeup_count not incremented for USB->Eth devices + - include/uapi/linux/swab: Fix potentially missing __always_inline + - pwm: tegra: Improve required rate calculation + - fs/ntfs3: Fix slab-out-of-bounds read in ntfs_trim_fs + - dmaengine: idxd: Fix crc_val field for completion record + - rtc: rtc-cmos: Do not check ACPI_FADT_LOW_POWER_S0 + - rtc: cmos: Fix event handler registration ordering issue + - rtc: cmos: Fix wake alarm breakage + - rtc: cmos: fix build on non-ACPI platforms + - rtc: cmos: Call cmos_wake_setup() from cmos_do_probe() + - rtc: cmos: Call rtc_wake_setup() from cmos_do_probe() + - rtc: cmos: Eliminate forward declarations of some functions + - rtc: cmos: Rename ACPI-related functions + - rtc: cmos: Disable ACPI RTC event on removal + - rtc: snvs: Allow a time difference on clock register read + - rtc: pcf85063: Fix reading alarm + - iommu/amd: Fix pci device refcount leak in ppr_notifier() + - iommu/fsl_pamu: Fix resource leak in fsl_pamu_probe() + - macintosh: fix possible memory leak in macio_add_one_device() + - macintosh/macio-adb: check the return value of ioremap() + - powerpc/52xx: Fix a resource leak in an error handling path + - cxl: Fix refcount leak in cxl_calc_capp_routing + - powerpc/xmon: Fix -Wswitch-unreachable warning in bpt_cmds + - powerpc/xive: add missing iounmap() in error path in + xive_spapr_populate_irq_data() + - powerpc/perf: callchain validate kernel stack pointer bounds + - powerpc/83xx/mpc832x_rdb: call platform_device_put() in error case in + of_fsl_spi_probe() + - powerpc/hv-gpci: Fix hv_gpci event list + - selftests/powerpc: Fix resource leaks + - iommu/sun50i: Remove IOMMU_DOMAIN_IDENTITY + - pwm: sifive: Call pwm_sifive_update_clock() while mutex is held + - pwm: mtk-disp: Fix the parameters calculated by the enabled flag of disp_pwm + - pwm: mediatek: always use bus clock for PWM on MT7622 + - remoteproc: sysmon: fix memory leak in qcom_add_sysmon_subdev() + - remoteproc: qcom: q6v5: Fix potential null-ptr-deref in + q6v5_wcss_init_mmio() + - remoteproc: qcom_q6v5_pas: disable wakeup on probe fail or remove + - remoteproc: qcom_q6v5_pas: detach power domains on remove + - remoteproc: qcom_q6v5_pas: Fix missing of_node_put() in + adsp_alloc_memory_region() + - remoteproc: qcom: q6v5: Fix missing clk_disable_unprepare() in + q6v5_wcss_qcs404_power_on() + - powerpc/eeh: Drop redundant spinlock initialization + - powerpc/pseries/eeh: use correct API for error log size + - mfd: bd957x: Fix Kconfig dependency on REGMAP_IRQ + - mfd: qcom_rpm: Fix an error handling path in qcom_rpm_probe() + - mfd: pm8008: Remove driver data structure pm8008_data + - mfd: pm8008: Fix return value check in pm8008_probe() + - netfilter: flowtable: really fix NAT IPv6 offload + - rtc: st-lpc: Add missing clk_disable_unprepare in st_rtc_probe() + - rtc: pic32: Move devm_rtc_allocate_device earlier in pic32_rtc_probe() + - rtc: pcf85063: fix pcf85063_clkout_control + - nfsd: under NFSv4.1, fix double svc_xprt_put on rpc_create failure + - net: macsec: fix net device access prior to holding a lock + - mISDN: hfcsusb: don't call dev_kfree_skb/kfree_skb() under + spin_lock_irqsave() + - mISDN: hfcpci: don't call dev_kfree_skb/kfree_skb() under + spin_lock_irqsave() + - mISDN: hfcmulti: don't call dev_kfree_skb/kfree_skb() under + spin_lock_irqsave() + - block, bfq: fix possible uaf for 'bfqq->bic' + - net: enetc: avoid buffer leaks on xdp_do_redirect() failure + - nfc: pn533: Clear nfc_target before being used + - unix: Fix race in SOCK_SEQPACKET's unix_dgram_sendmsg() + - r6040: Fix kmemleak in probe and remove + - igc: Enhance Qbv scheduling by using first flag bit + - igc: Use strict cycles for Qbv scheduling + - igc: Add checking for basetime less than zero + - igc: allow BaseTime 0 enrollment for Qbv + - igc: recalculate Qbv end_time by considering cycle time + - igc: Lift TAPRIO schedule restriction + - igc: Set Qbv start_time and end_time to end_time if not being configured in + GCL + - rtc: mxc_v2: Add missing clk_disable_unprepare() + - selftests: devlink: fix the fd redirect in dummy_reporter_test + - openvswitch: Fix flow lookup to use unmasked key + - soc: mediatek: pm-domains: Fix the power glitch issue + - arm64: dts: mt8183: Fix Mali GPU clock + - skbuff: Account for tail adjustment during pull operations + - mailbox: mpfs: read the system controller's status + - mailbox: arm_mhuv2: Fix return value check in mhuv2_probe() + - mailbox: zynq-ipi: fix error handling while device_register() fails + - net_sched: reject TCF_EM_SIMPLE case for complex ematch module + - rxrpc: Fix missing unlock in rxrpc_do_sendmsg() + - myri10ge: Fix an error handling path in myri10ge_probe() + - net: stream: purge sk_error_queue in sk_stream_kill_queues() + - HID: amd_sfh: Add missing check for dma_alloc_coherent + - rcu: Fix __this_cpu_read() lockdep warning in rcu_force_quiescent_state() + - arm64: make is_ttbrX_addr() noinstr-safe + - video: hyperv_fb: Avoid taking busy spinlock on panic path + - x86/hyperv: Remove unregister syscore call from Hyper-V cleanup + - binfmt_misc: fix shift-out-of-bounds in check_special_flags + - fs: jfs: fix shift-out-of-bounds in dbAllocAG + - udf: Avoid double brelse() in udf_rename() + - jfs: Fix fortify moan in symlink + - fs: jfs: fix shift-out-of-bounds in dbDiscardAG + - ACPICA: Fix error code path in acpi_ds_call_control_method() + - nilfs2: fix shift-out-of-bounds/overflow in nilfs_sb2_bad_offset() + - nilfs2: fix shift-out-of-bounds due to too large exponent of block size + - acct: fix potential integer overflow in encode_comp_t() + - hfs: fix OOB Read in __hfs_brec_find + - drm/etnaviv: add missing quirks for GC300 + - media: imx-jpeg: Disable useless interrupt to avoid kernel panic + - brcmfmac: return error when getting invalid max_flowrings from dongle + - wifi: ath9k: verify the expected usb_endpoints are present + - wifi: ar5523: Fix use-after-free on ar5523_cmd() timed out + - ASoC: codecs: rt298: Add quirk for KBL-R RVP platform + - ipmi: fix memleak when unload ipmi driver + - drm/amd/display: prevent memory leak + - Revert "drm/amd/display: Limit max DSC target bpp for specific monitors" + - qed (gcc13): use u16 for fid to be big enough + - bpf: make sure skb->len != 0 when redirecting to a tunneling device + - net: ethernet: ti: Fix return type of netcp_ndo_start_xmit() + - hamradio: baycom_epp: Fix return type of baycom_send_packet() + - wifi: brcmfmac: Fix potential shift-out-of-bounds in + brcmf_fw_alloc_request() + - igb: Do not free q_vector unless new one was allocated + - drm/amdgpu: Fix type of second parameter in trans_msg() callback + - drm/amdgpu: Fix type of second parameter in odn_edit_dpm_table() callback + - s390/ctcm: Fix return type of ctc{mp,}m_tx() + - s390/netiucv: Fix return type of netiucv_tx() + - s390/lcs: Fix return type of lcs_start_xmit() + - drm/msm: Use drm_mode_copy() + - drm/rockchip: Use drm_mode_copy() + - drm/sti: Use drm_mode_copy() + - drm/mediatek: Fix return type of mtk_hdmi_bridge_mode_valid() + - drivers/md/md-bitmap: check the return value of md_bitmap_get_counter() + - md/raid1: stop mdx_raid1 thread when raid1 array run failed + - drm/amd/display: fix array index out of bound error in bios parser + - net: add atomic_long_t to net_device_stats fields + - ipv6/sit: use DEV_STATS_INC() to avoid data-races + - mrp: introduce active flags to prevent UAF when applicant uninit + - ppp: associate skb with a device at tx + - bpf: Prevent decl_tag from being referenced in func_proto arg + - ethtool: avoiding integer overflow in ethtool_phys_id() + - media: dvb-frontends: fix leak of memory fw + - media: dvbdev: adopts refcnt to avoid UAF + - media: dvb-usb: fix memory leak in dvb_usb_adapter_init() + - blk-mq: fix possible memleak when register 'hctx' failed + - drm/amd/display: Use the largest vready_offset in pipe group + - libbpf: Avoid enum forward-declarations in public API in C++ mode + - regulator: core: fix use_count leakage when handling boot-on + - wifi: mt76: do not run mt76u_status_worker if the device is not running + - mmc: f-sdh30: Add quirks for broken timeout clock capability + - mmc: renesas_sdhi: better reset from HS400 mode + - media: si470x: Fix use-after-free in si470x_int_in_callback() + - clk: st: Fix memory leak in st_of_quadfs_setup() + - crypto: hisilicon/hpre - fix resource leak in remove process + - scsi: lpfc: Fix hard lockup when reading the rx_monitor from debugfs + - scsi: ufs: Reduce the START STOP UNIT timeout + - scsi: elx: libefc: Fix second parameter type in state callbacks + - hugetlbfs: fix null-ptr-deref in hugetlbfs_parse_param() + - drm/fsl-dcu: Fix return type of fsl_dcu_drm_connector_mode_valid() + - drm/sti: Fix return type of sti_{dvo,hda,hdmi}_connector_mode_valid() + - orangefs: Fix kmemleak in orangefs_prepare_debugfs_help_string() + - orangefs: Fix kmemleak in orangefs_{kernel,client}_debug_init() + - tools/include: Add _RET_IP_ and math definitions to kernel.h + - KVM: selftests: Fix build regression by using accessor function + - hwmon: (jc42) Fix missing unlock on error in jc42_write() + - ALSA/ASoC: hda: move/rename snd_hdac_ext_stop_streams to hdac_stream.c + - ALSA: hda: add snd_hdac_stop_streams() helper + - ASoC: Intel: Skylake: Fix driver hang during shutdown + - ASoC: mediatek: mt8173-rt5650-rt5514: fix refcount leak in + mt8173_rt5650_rt5514_dev_probe() + - ASoC: audio-graph-card: fix refcount leak of cpu_ep in + __graph_for_each_link() + - ASoC: rockchip: pdm: Add missing clk_disable_unprepare() in + rockchip_pdm_runtime_resume() + - ASoC: mediatek: mt8183: fix refcount leak in + mt8183_mt6358_ts3a227_max98357_dev_probe() + - ASoC: wm8994: Fix potential deadlock + - ASoC: rockchip: spdif: Add missing clk_disable_unprepare() in + rk_spdif_runtime_resume() + - ASoC: rt5670: Remove unbalanced pm_runtime_put() + - drm/i915/display: Don't disable DDI/Transcoder when setting phy test pattern + - LoadPin: Ignore the "contents" argument of the LSM hooks + - pstore: Switch pmsg_lock to an rt_mutex to avoid priority inversion + - perf debug: Set debug_peo_args and redirect_to_stderr variable to correct + values in perf_quiet_option() + - afs: Fix lost servers_outstanding count + - pstore: Make sure CONFIG_PSTORE_PMSG selects CONFIG_RT_MUTEXES + - ALSA: usb-audio: add the quirk for KT0206 device + - ALSA: hda/realtek: Add quirk for Lenovo TianYi510Pro-14IOB + - ALSA: hda/hdmi: Add HP Device 0x8711 to force connect list + - usb: cdnsp: fix lack of ZLP for ep0 + - usb: xhci-mtk: fix leakage of shared hcd when fail to set wakeup irq + - arm64: dts: qcom: sm8250: fix USB-DP PHY registers + - usb: dwc3: Fix race between dwc3_set_mode and __dwc3_set_mode + - usb: dwc3: core: defer probe on ulpi_read_id timeout + - xhci: Prevent infinite loop in transaction errors recovery for streams + - HID: wacom: Ensure bootloader PID is usable in hidraw mode + - HID: mcp2221: don't connect hidraw + - loop: Fix the max_loop commandline argument treatment when it is set to 0 + - 9p: set req refcount to zero to avoid uninitialized usage + - security: Restrict CONFIG_ZERO_CALL_USED_REGS to gcc or clang > 15.0.6 + - reiserfs: Add missing calls to reiserfs_security_free() + - iio: fix memory leak in iio_device_register_eventset() + - iio: adc: ad_sigma_delta: do not use internal iio_dev lock + - iio: adc128s052: add proper .data members in adc128_of_match table + - regulator: core: fix deadlock on regulator enable + - floppy: Fix memory leak in do_floppy_init() + - gcov: add support for checksum field + - fbdev: fbcon: release buffer when fbcon_do_set_font() failed + - ovl: fix use inode directly in rcu-walk mode + - btrfs: do not BUG_ON() on ENOMEM when dropping extent items for a range + - scsi: qla2xxx: Fix crash when I/O abort times out + - net: stmmac: fix errno when create_singlethread_workqueue() fails + - media: dvbdev: fix build warning due to comments + - media: dvbdev: fix refcnt bug + - extcon: usbc-tusb320: Call the Type-C IRQ handler only if a port is + registered + - mfd: qcom_rpm: Use devm_of_platform_populate() to simplify code + - pwm: tegra: Fix 32 bit build + - Linux 5.15.86 + * Screen freeze after resuming from suspend (nvme0: I/O timeout) + (LP: #1996048) // Jammy update: v5.15.86 upstream stable release + (LP: #2005113) + - PCI: vmd: Disable MSI remapping after suspend + * CVE-2023-23559 + - wifi: rndis_wlan: Prevent buffer overflow in rndis_query_oid + * CVE-2023-0045 + - x86/bugs: Flush IBP in ib_prctl_set() + + [ Ubuntu: 5.15.0-67.74 ] + + * jammy/linux: 5.15.0-67.74 -proposed tracker (LP: #2008074) + * [Inspiron 7590, Realtek ALC3254, Speaker, Internal] fails after a while + (LP: #2007798) + - Revert "ASoC: soc-pcm: Don't zero TDM masks in __soc_pcm_open()" + + -- Tim Gardner Tue, 28 Feb 2023 12:12:45 -0700 + +linux-azure (5.15.0-1034.41) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1034.41 -proposed tracker (LP: #2004309) + + * Jammy update: v5.15.81 upstream stable release (LP: #2003130) + - [Config] azure: Update configs after rebase + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2023.01.30) + + * Azure: mana: Fix IRQ name - add PCI and queue number (LP: #2004604) + - net: mana: Fix IRQ name - add PCI and queue number + + [ Ubuntu: 5.15.0-66.73 ] + + * jammy/linux: 5.15.0-66.73 -proposed tracker (LP: #2004636) + * CVE-2023-0461 + - SAUCE: Fix inet_csk_listen_start after CVE-2023-0461 + + [ Ubuntu: 5.15.0-65.72 ] + + * jammy/linux: 5.15.0-65.72 -proposed tracker (LP: #2004344) + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - debian/dkms-versions -- update from kernel-versions (main/2023.01.30) + * NFS: client permission error after adding user to permissible group + (LP: #2003053) + - NFS: Clear the file access cache upon login + - NFS: Judge the file access cache's timestamp in rcu path + - NFS: Fix up a sparse warning + * Fix W6400 hang after resume of S3 stress (LP: #2000299) + - drm/amd/display: Manually adjust strobe for DCN303 + * Rear Audio port sometimes has no audio output after reboot(Cirrus Logic) + (LP: #1998905) + - ALSA: hda/cirrus: Add extra 10 ms delay to allow PLL settle and lock. + * CVE-2022-20369 + - NFSD: fix use-after-free in __nfs42_ssc_open() + * CVE-2023-0461 + - net/ulp: prevent ULP without clone op from entering the LISTEN status + - net/ulp: use consistent error code when blocking ULP + * CVE-2023-0179 + - netfilter: nft_payload: incorrect arithmetics when fetching VLAN header bits + * Jammy update: v5.15.85 upstream stable release (LP: #2003139) + - udf: Discard preallocation before extending file with a hole + - udf: Fix preallocation discarding at indirect extent boundary + - udf: Do not bother looking for prealloc extents if i_lenExtents matches + i_size + - udf: Fix extending file within last block + - usb: gadget: uvc: Prevent buffer overflow in setup handler + - USB: serial: option: add Quectel EM05-G modem + - USB: serial: cp210x: add Kamstrup RF sniffer PIDs + - USB: serial: f81232: fix division by zero on line-speed change + - USB: serial: f81534: fix division by zero on line-speed change + - xhci: Apply XHCI_RESET_TO_DEFAULT quirk to ADL-N + - igb: Initialize mailbox message for VF reset + - usb: dwc3: pci: Update PCIe device ID for USB3 controller on CPU sub-system + for Raptor Lake + - HID: uclogic: Add HID_QUIRK_HIDINPUT_FORCE quirk + - selftests: net: Use "grep -E" instead of "egrep" + - net: loopback: use NET_NAME_PREDICTABLE for name_assign_type + - Linux 5.15.85 + * Jammy update: v5.15.84 upstream stable release (LP: #2003137) + - x86/vdso: Conditionally export __vdso_sgx_enter_enclave() + - vfs: fix copy_file_range() averts filesystem freeze protection + - ASoC: fsl_micfil: explicitly clear software reset bit + - ASoC: fsl_micfil: explicitly clear CHnF flags + - ASoC: ops: Check bounds for second channel in snd_soc_put_volsw_sx() + - libbpf: Use page size as max_entries when probing ring buffer map + - pinctrl: meditatek: Startup with the IRQs disabled + - can: sja1000: fix size of OCR_MODE_MASK define + - can: mcba_usb: Fix termination command argument + - net: fec: don't reset irq coalesce settings to defaults on "ip link up" + - ASoC: cs42l51: Correct PGA Volume minimum value + - perf: Fix perf_pending_task() UaF + - nvme-pci: clear the prp2 field when not used + - ASoC: ops: Correct bounds check for second channel on SX controls + - net: fec: properly guard irq coalesce setup + - Linux 5.15.84 + * Jammy update: v5.15.83 upstream stable release (LP: #2003134) + - clk: generalize devm_clk_get() a bit + - clk: Provide new devm_clk helpers for prepared and enabled clocks + - mmc: mtk-sd: Fix missing clk_disable_unprepare in msdc_of_clock_parse() + - arm64: dts: rockchip: keep I2S1 disabled for GPIO function on ROCK Pi 4 + series + - arm: dts: rockchip: fix node name for hym8563 rtc + - arm: dts: rockchip: remove clock-frequency from rtc + - ARM: dts: rockchip: fix ir-receiver node names + - arm64: dts: rockchip: fix ir-receiver node names + - ARM: dts: rockchip: rk3188: fix lcdc1-rgb24 node name + - fs: use acquire ordering in __fget_light() + - ARM: 9251/1: perf: Fix stacktraces for tracepoint events in THUMB2 kernels + - ARM: 9266/1: mm: fix no-MMU ZERO_PAGE() implementation + - ASoC: wm8962: Wait for updated value of WM8962_CLOCKING1 register + - spi: mediatek: Fix DEVAPC Violation at KO Remove + - ARM: dts: rockchip: disable arm_global_timer on rk3066 and rk3188 + - ASoC: rt711-sdca: fix the latency time of clock stop prepare state machine + transitions + - 9p/fd: Use P9_HDRSZ for header size + - regulator: slg51000: Wait after asserting CS pin + - ALSA: seq: Fix function prototype mismatch in snd_seq_expand_var_event + - selftests/net: Find nettest in current directory + - btrfs: send: avoid unaligned encoded writes when attempting to clone range + - ASoC: soc-pcm: Add NULL check in BE reparenting + - regulator: twl6030: fix get status of twl6032 regulators + - fbcon: Use kzalloc() in fbcon_prepare_logo() + - usb: dwc3: gadget: Disable GUSB2PHYCFG.SUSPHY for End Transfer + - 9p/xen: check logical size for buffer size + - net: usb: qmi_wwan: add u-blox 0x1342 composition + - mm/khugepaged: take the right locks for page table retraction + - mm/khugepaged: fix GUP-fast interaction by sending IPI + - mm/khugepaged: invoke MMU notifiers in shmem/file collapse paths + - rtc: mc146818-lib: extract mc146818_avoid_UIP + - rtc: cmos: avoid UIP when writing alarm time + - rtc: cmos: avoid UIP when reading alarm time + - cifs: fix use-after-free caused by invalid pointer `hostname` + - drm/bridge: anx7625: Fix edid_read break case in sp_tx_edid_read() + - xen/netback: do some code cleanup + - xen/netback: don't call kfree_skb() with interrupts disabled + - media: videobuf2-core: take mmap_lock in vb2_get_unmapped_area() + - soundwire: intel: Initialize clock stop timeout + - media: v4l2-dv-timings.c: fix too strict blanking sanity checks + - memcg: fix possible use-after-free in memcg_write_event_control() + - mm/gup: fix gup_pud_range() for dax + - Bluetooth: btusb: Add debug message for CSR controllers + - Bluetooth: Fix crash when replugging CSR fake controllers + - net: mana: Fix race on per-CQ variable napi work_done + - KVM: s390: vsie: Fix the initialization of the epoch extension (epdx) field + - drm/vmwgfx: Don't use screen objects when SEV is active + - drm/amdgpu/sdma_v4_0: turn off SDMA ring buffer in the s2idle suspend + - drm/shmem-helper: Remove errant put in error path + - drm/shmem-helper: Avoid vm_open error paths + - net: dsa: sja1105: avoid out of bounds access in sja1105_init_l2_policing() + - HID: usbhid: Add ALWAYS_POLL quirk for some mice + - HID: hid-lg4ff: Add check for empty lbuf + - HID: core: fix shift-out-of-bounds in hid_report_raw_event + - HID: ite: Enable QUIRK_TOUCHPAD_ON_OFF_REPORT on Acer Aspire Switch V 10 + - can: af_can: fix NULL pointer dereference in can_rcv_filter + - clk: Fix pointer casting to prevent oops in devm_clk_release() + - gpiolib: improve coding style for local variables + - gpiolib: check the 'ngpios' property in core gpiolib code + - gpiolib: fix memory leak in gpiochip_setup_dev() + - netfilter: nft_set_pipapo: Actually validate intervals in fields after the + first one + - drm/vmwgfx: Fix race issue calling pin_user_pages + - ieee802154: cc2520: Fix error return code in cc2520_hw_init() + - ca8210: Fix crash by zero initializing data + - netfilter: ctnetlink: fix compilation warning after data race fixes in ct + mark + - drm/bridge: ti-sn65dsi86: Fix output polarity setting bug + - gpio: amd8111: Fix PCI device reference count leak + - e1000e: Fix TX dispatch condition + - igb: Allocate MSI-X vector when testing + - net: broadcom: Add PTP_1588_CLOCK_OPTIONAL dependency for BCMGENET under + ARCH_BCM2835 + - drm: bridge: dw_hdmi: fix preference of RGB modes over YUV420 + - af_unix: Get user_ns from in_skb in unix_diag_get_exact(). + - vmxnet3: correctly report encapsulated LRO packet + - vmxnet3: use correct intrConf reference when using extended queues + - Bluetooth: 6LoWPAN: add missing hci_dev_put() in get_l2cap_conn() + - Bluetooth: Fix not cleanup led when bt_init fails + - net: dsa: ksz: Check return value + - net: dsa: hellcreek: Check return value + - net: dsa: sja1105: Check return value + - selftests: rtnetlink: correct xfrm policy rule in kci_test_ipsec_offload + - mac802154: fix missing INIT_LIST_HEAD in ieee802154_if_add() + - net: encx24j600: Add parentheses to fix precedence + - net: encx24j600: Fix invalid logic in reading of MISTAT register + - net: mdiobus: fwnode_mdiobus_register_phy() rework error handling + - net: mdiobus: fix double put fwnode in the error path + - octeontx2-pf: Fix potential memory leak in otx2_init_tc() + - xen-netfront: Fix NULL sring after live migration + - net: mvneta: Prevent out of bounds read in mvneta_config_rss() + - i40e: Fix not setting default xps_cpus after reset + - i40e: Fix for VF MAC address 0 + - i40e: Disallow ip4 and ip6 l4_4_bytes + - NFC: nci: Bounds check struct nfc_target arrays + - nvme initialize core quirks before calling nvme_init_subsystem + - gpio/rockchip: fix refcount leak in rockchip_gpiolib_register() + - net: stmmac: fix "snps,axi-config" node property parsing + - ip_gre: do not report erspan version on GRE interface + - net: microchip: sparx5: Fix missing destroy_workqueue of mact_queue + - net: thunderx: Fix missing destroy_workqueue of nicvf_rx_mode_wq + - net: hisilicon: Fix potential use-after-free in hisi_femac_rx() + - net: mdio: fix unbalanced fwnode reference count in mdio_device_release() + - net: hisilicon: Fix potential use-after-free in hix5hd2_rx() + - tipc: Fix potential OOB in tipc_link_proto_rcv() + - ipv4: Fix incorrect route flushing when source address is deleted + - ipv4: Fix incorrect route flushing when table ID 0 is used + - net: dsa: sja1105: fix memory leak in sja1105_setup_devlink_regions() + - tipc: call tipc_lxc_xmit without holding node_read_lock + - ethernet: aeroflex: fix potential skb leak in greth_init_rings() + - dpaa2-switch: Fix memory leak in dpaa2_switch_acl_entry_add() and + dpaa2_switch_acl_entry_remove() + - net: phy: mxl-gpy: fix version reporting + - net: plip: don't call kfree_skb/dev_kfree_skb() under spin_lock_irq() + - ipv6: avoid use-after-free in ip6_fragment() + - net: thunderbolt: fix memory leak in tbnet_open() + - net: mvneta: Fix an out of bounds check + - macsec: add missing attribute validation for offload + - s390/qeth: fix various format strings + - s390/qeth: fix use-after-free in hsci + - can: esd_usb: Allow REC and TEC to return to zero + - block: move CONFIG_BLOCK guard to top Makefile + - io_uring: move to separate directory + - io_uring: Fix a null-ptr-deref in io_tctx_exit_cb() + - Linux 5.15.83 + * 5.15.0-58.64 breaks xen bridge networking (pvh domU) (LP: #2002889) // Jammy + update: v5.15.83 upstream stable release (LP: #2003134) + - xen/netback: fix build warning + * Jammy update: v5.15.82 upstream stable release (LP: #2003132) + - arm64: mte: Avoid setting PG_mte_tagged if no tags cleared or restored + - drm/i915: Create a dummy object for gen6 ppgtt + - drm/i915/gt: Use i915_vm_put on ppgtt_create error paths + - erofs: fix order >= MAX_ORDER warning due to crafted negative i_size + - btrfs: sink iterator parameter to btrfs_ioctl_logical_to_ino + - btrfs: free btrfs_path before copying inodes to userspace + - spi: spi-imx: Fix spi_bus_clk if requested clock is higher than input clock + - btrfs: move QUOTA_ENABLED check to rescan_should_stop from + btrfs_qgroup_rescan_worker + - btrfs: qgroup: fix sleep from invalid context bug in btrfs_qgroup_inherit() + - drm/display/dp_mst: Fix drm_dp_mst_add_affected_dsc_crtcs() return code + - drm/amdgpu: update drm_display_info correctly when the edid is read + - drm/amdgpu: Partially revert "drm/amdgpu: update drm_display_info correctly + when the edid is read" + - iio: health: afe4403: Fix oob read in afe4403_read_raw + - iio: health: afe4404: Fix oob read in afe4404_[read|write]_raw + - iio: light: rpr0521: add missing Kconfig dependencies + - bpf, perf: Use subprog name when reporting subprog ksymbol + - scripts/faddr2line: Fix regression in name resolution on ppc64le + - ARM: at91: rm9200: fix usb device clock id + - libbpf: Handle size overflow for ringbuf mmap + - hwmon: (ltc2947) fix temperature scaling + - hwmon: (ina3221) Fix shunt sum critical calculation + - hwmon: (i5500_temp) fix missing pci_disable_device() + - hwmon: (ibmpex) Fix possible UAF when ibmpex_register_bmc() fails + - bpf: Do not copy spin lock field from user in bpf_selem_alloc + - nvmem: rmem: Fix return value check in rmem_read() + - of: property: decrement node refcount in of_fwnode_get_reference_args() + - ixgbevf: Fix resource leak in ixgbevf_init_module() + - i40e: Fix error handling in i40e_init_module() + - fm10k: Fix error handling in fm10k_init_module() + - iavf: remove redundant ret variable + - iavf: Fix error handling in iavf_init_module() + - e100: Fix possible use after free in e100_xmit_prepare + - net/mlx5: DR, Fix uninitialized var warning + - net/mlx5: Fix uninitialized variable bug in outlen_write() + - net/mlx5e: Fix use-after-free when reverting termination table + - can: sja1000_isa: sja1000_isa_probe(): add missing free_sja1000dev() + - can: cc770: cc770_isa_probe(): add missing free_cc770dev() + - can: etas_es58x: es58x_init_netdev(): free netdev when register_candev() + - can: m_can: pci: add missing m_can_class_free_dev() in probe/remove methods + - can: m_can: Add check for devm_clk_get + - qlcnic: fix sleep-in-atomic-context bugs caused by msleep + - aquantia: Do not purge addresses when setting the number of rings + - wifi: cfg80211: fix buffer overflow in elem comparison + - wifi: cfg80211: don't allow multi-BSSID in S1G + - wifi: mac8021: fix possible oob access in ieee80211_get_rate_duration + - net: phy: fix null-ptr-deref while probe() failed + - net: ethernet: ti: am65-cpsw: fix error handling in am65_cpsw_nuss_probe() + - net: net_netdev: Fix error handling in ntb_netdev_init_module() + - net/9p: Fix a potential socket leak in p9_socket_open + - net: ethernet: nixge: fix NULL dereference + - net: wwan: iosm: fix kernel test robot reported error + - net: wwan: iosm: fix dma_alloc_coherent incompatible pointer type + - dsa: lan9303: Correct stat name + - tipc: re-fetch skb cb after tipc_msg_validate + - net: hsr: Fix potential use-after-free + - net: mdiobus: fix unbalanced node reference count + - afs: Fix fileserver probe RTT handling + - net: tun: Fix use-after-free in tun_detach() + - packet: do not set TP_STATUS_CSUM_VALID on CHECKSUM_COMPLETE + - sctp: fix memory leak in sctp_stream_outq_migrate() + - net: ethernet: renesas: ravb: Fix promiscuous mode after system resumed + - hwmon: (coretemp) Check for null before removing sysfs attrs + - hwmon: (coretemp) fix pci device refcount leak in nv1a_ram_new() + - riscv: vdso: fix section overlapping under some conditions + - riscv: mm: Proper page permissions after initmem free + - ALSA: dice: fix regression for Lexicon I-ONIX FW810S + - error-injection: Add prompt for function error injection + - tools/vm/slabinfo-gnuplot: use "grep -E" instead of "egrep" + - nilfs2: fix NULL pointer dereference in nilfs_palloc_commit_free_entry() + - x86/bugs: Make sure MSR_SPEC_CTRL is updated properly upon resume from S3 + - pinctrl: intel: Save and restore pins in "direct IRQ" mode + - v4l2: don't fall back to follow_pfn() if pin_user_pages_fast() fails + - net: stmmac: Set MAC's flow control register to reflect current settings + - mmc: mmc_test: Fix removal of debugfs file + - mmc: core: Fix ambiguous TRIM and DISCARD arg + - mmc: sdhci-esdhc-imx: correct CQHCI exit halt state check + - mmc: sdhci-sprd: Fix no reset data and command after voltage switch + - mmc: sdhci: Fix voltage switch delay + - drm/amdgpu: temporarily disable broken Clang builds due to blown stack-frame + - drm/amdgpu: enable Vangogh VCN indirect sram mode + - drm/i915: Fix negative value passed as remaining time + - drm/i915: Never return 0 if not all requests retired + - tracing/osnoise: Fix duration type + - tracing: Fix race where histograms can be called before the event + - tracing: Free buffers when a used dynamic event is removed + - io_uring: update res mask in io_poll_check_events + - io_uring: fix tw losing poll events + - io_uring: cmpxchg for poll arm refs release + - io_uring: make poll refs more robust + - io_uring/poll: fix poll_refs race with cancelation + - KVM: x86/mmu: Fix race condition in direct_page_fault + - ASoC: ops: Fix bounds check for _sx controls + - pinctrl: single: Fix potential division by zero + - riscv: Sync efi page table's kernel mappings before switching + - riscv: fix race when vmap stack overflow + - riscv: kexec: Fixup irq controller broken in kexec crash path + - nvme: fix SRCU protection of nvme_ns_head list + - iommu/vt-d: Fix PCI device refcount leak in has_external_pci() + - iommu/vt-d: Fix PCI device refcount leak in dmar_dev_scope_init() + - mm: __isolate_lru_page_prepare() in isolate_migratepages_block() + - mm: migrate: fix THP's mapcount on isolation + - parisc: Increase FRAME_WARN to 2048 bytes on parisc + - Kconfig.debug: provide a little extra FRAME_WARN leeway when KASAN is + enabled + - selftests: net: add delete nexthop route warning test + - selftests: net: fix nexthop warning cleanup double ip typo + - ipv4: Handle attempt to delete multipath route when fib_info contains an nh + reference + - ipv4: Fix route deletion when nexthop info is not specified + - serial: stm32: Factor out GPIO RTS toggling into separate function + - serial: stm32: Use TC interrupt to deassert GPIO RTS in RS485 mode + - serial: stm32: Deassert Transmit Enable on ->rs485_config() + - i2c: npcm7xx: Fix error handling in npcm_i2c_init() + - i2c: imx: Only DMA messages with I2C_M_DMA_SAFE flag set + - ACPI: HMAT: remove unnecessary variable initialization + - ACPI: HMAT: Fix initiator registration for single-initiator systems + - Revert "clocksource/drivers/riscv: Events are stopped during CPU suspend" + - char: tpm: Protect tpm_pm_suspend with locks + - Input: raydium_ts_i2c - fix memory leak in raydium_i2c_send() + - ipc/sem: Fix dangling sem_array access in semtimedop race + - Linux 5.15.82 + * Jammy update: v5.15.81 upstream stable release (LP: #2003130) + - ASoC: fsl_sai: use local device pointer + - ASoC: fsl_asrc fsl_esai fsl_sai: allow CONFIG_PM=N + - serial: Add rs485_supported to uart_port + - serial: fsl_lpuart: Fill in rs485_supported + - tty: serial: fsl_lpuart: don't break the on-going transfer when global reset + - sctp: remove the unnecessary sinfo_stream check in sctp_prsctp_prune_unsent + - sctp: clear out_curr if all frag chunks of current msg are pruned + - cifs: introduce new helper for cifs_reconnect() + - cifs: split out dfs code from cifs_reconnect() + - cifs: support nested dfs links over reconnect + - cifs: Fix connections leak when tlink setup failed + - ata: libata-scsi: simplify __ata_scsi_queuecmd() + - ata: libata-core: do not issue non-internal commands once EH is pending + - drm/display: Don't assume dual mode adaptors support i2c sub-addressing + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Micron Nitro + - nvme-pci: disable namespace identifiers for the MAXIO MAP1001 + - nvme-pci: disable write zeroes on various Kingston SSD + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Netac NV7000 + - iio: ms5611: Simplify IO callback parameters + - iio: pressure: ms5611: fixed value compensation bug + - ceph: do not update snapshot context when there is no new snapshot + - ceph: avoid putting the realm twice when decoding snaps fails + - x86/sgx: Create utility to validate user provided offset and length + - x86/sgx: Add overflow check in sgx_validate_offset_length() + - binder: validate alloc->mm in ->mmap() handler + - ceph: Use kcalloc for allocating multiple elements + - ceph: fix NULL pointer dereference for req->r_session + - wifi: mac80211: fix memory free error when registering wiphy fail + - wifi: mac80211_hwsim: fix debugfs attribute ps with rc table support + - riscv: dts: sifive unleashed: Add PWM controlled LEDs + - audit: fix undefined behavior in bit shift for AUDIT_BIT + - wifi: airo: do not assign -1 to unsigned char + - wifi: mac80211: Fix ack frame idr leak when mesh has no route + - wifi: ath11k: Fix QCN9074 firmware boot on x86 + - spi: stm32: fix stm32_spi_prepare_mbr() that halves spi clk for every run + - selftests/bpf: Add verifier test for release_reference() + - Revert "net: macsec: report real_dev features when HW offloading is enabled" + - platform/x86: ideapad-laptop: Disable touchpad_switch + - platform/x86: touchscreen_dmi: Add info for the RCA Cambio W101 v2 2-in-1 + - platform/x86/intel/pmt: Sapphire Rapids PMT errata fix + - platform/x86/intel/hid: Add some ACPI device IDs + - scsi: ibmvfc: Avoid path failures during live migration + - scsi: scsi_debug: Make the READ CAPACITY response compliant with ZBC + - drm: panel-orientation-quirks: Add quirk for Acer Switch V 10 (SW5-017) + - block, bfq: fix null pointer dereference in bfq_bio_bfqg() + - arm64/syscall: Include asm/ptrace.h in syscall_wrapper header. + - nvmet: fix memory leak in nvmet_subsys_attr_model_store_locked + - Revert "drm/amdgpu: Revert "drm/amdgpu: getting fan speed pwm for vega10 + properly"" + - ALSA: usb-audio: add quirk to fix Hamedal C20 disconnect issue + - RISC-V: vdso: Do not add missing symbols to version section in linker script + - MIPS: pic32: treat port as signed integer + - xfrm: fix "disable_policy" on ipv4 early demux + - xfrm: replay: Fix ESN wrap around for GSO + - af_key: Fix send_acquire race with pfkey_register + - ARM: dts: am335x-pcm-953: Define fixed regulators in root node + - ASoC: hdac_hda: fix hda pcm buffer overflow issue + - ASoC: sgtl5000: Reset the CHIP_CLK_CTRL reg on remove + - ASoC: soc-pcm: Don't zero TDM masks in __soc_pcm_open() + - x86/hyperv: Restore VP assist page after cpu offlining/onlining + - scsi: storvsc: Fix handling of srb_status and capacity change events + - ASoC: max98373: Add checks for devm_kcalloc + - regulator: core: fix kobject release warning and memory leak in + regulator_register() + - spi: dw-dma: decrease reference count in dw_spi_dma_init_mfld() + - regulator: core: fix UAF in destroy_regulator() + - bus: sunxi-rsb: Remove the shutdown callback + - bus: sunxi-rsb: Support atomic transfers + - tee: optee: fix possible memory leak in optee_register_device() + - ARM: dts: at91: sam9g20ek: enable udc vbus gpio pinctrl + - selftests: mptcp: more stable simult_flows tests + - selftests: mptcp: fix mibit vs mbit mix up + - net: liquidio: simplify if expression + - rxrpc: Allow list of in-use local UDP endpoints to be viewed in /proc + - rxrpc: Use refcount_t rather than atomic_t + - rxrpc: Fix race between conn bundle lookup and bundle removal [ZDI- + CAN-15975] + - net: dsa: sja1105: disallow C45 transactions on the BASE-TX MDIO bus + - nfc/nci: fix race with opening and closing + - net: pch_gbe: fix potential memleak in pch_gbe_tx_queue() + - 9p/fd: fix issue of list_del corruption in p9_fd_cancel() + - netfilter: conntrack: Fix data-races around ct mark + - netfilter: nf_tables: do not set up extensions for end interval + - iavf: Fix a crash during reset task + - iavf: Do not restart Tx queues after reset task failure + - iavf: Fix race condition between iavf_shutdown and iavf_remove + - ARM: mxs: fix memory leak in mxs_machine_init() + - ARM: dts: imx6q-prti6q: Fix ref/tcxo-clock-frequency properties + - net: ethernet: mtk_eth_soc: fix error handling in mtk_open() + - net/mlx4: Check retval of mlx4_bitmap_init + - net: mvpp2: fix possible invalid pointer dereference + - net/qla3xxx: fix potential memleak in ql3xxx_send() + - octeontx2-af: debugsfs: fix pci device refcount leak + - net: pch_gbe: fix pci device refcount leak while module exiting + - nfp: fill splittable of devlink_port_attrs correctly + - nfp: add port from netdev validation for EEPROM access + - macsec: Fix invalid error code set + - Drivers: hv: vmbus: fix double free in the error path of + vmbus_add_channel_work() + - Drivers: hv: vmbus: fix possible memory leak in vmbus_device_register() + - netfilter: ipset: regression in ip_set_hash_ip.c + - net/mlx5: Do not query pci info while pci disabled + - net/mlx5: Fix FW tracer timestamp calculation + - net/mlx5: Fix handling of entry refcount when command is not issued to FW + - tipc: set con sock in tipc_conn_alloc + - tipc: add an extra conn_get in tipc_conn_alloc + - tipc: check skb_linearize() return value in tipc_disc_rcv() + - xfrm: Fix oops in __xfrm_state_delete() + - xfrm: Fix ignored return value in xfrm6_init() + - net: wwan: iosm: use ACPI_FREE() but not kfree() in ipc_pcie_read_bios_cfg() + - sfc: fix potential memleak in __ef100_hard_start_xmit() + - net: sparx5: fix error handling in sparx5_port_open() + - net: sched: allow act_ct to be built without NF_NAT + - NFC: nci: fix memory leak in nci_rx_data_packet() + - regulator: twl6030: re-add TWL6032_SUBCLASS + - bnx2x: fix pci device refcount leak in bnx2x_vf_is_pcie_pending() + - dma-buf: fix racing conflict of dma_heap_add() + - netfilter: ipset: restore allowing 64 clashing elements in hash:net,iface + - netfilter: flowtable_offload: add missing locking + - fs: do not update freeing inode i_io_list + - dccp/tcp: Reset saddr on failure after inet6?_hash_connect(). + - ipv4: Fix error return code in fib_table_insert() + - arcnet: fix potential memory leak in com20020_probe() + - s390/dasd: fix no record found for raw_track_access + - nfc: st-nci: fix incorrect validating logic in EVT_TRANSACTION + - nfc: st-nci: fix memory leaks in EVT_TRANSACTION + - nfc: st-nci: fix incorrect sizing calculations in EVT_TRANSACTION + - net: enetc: manage ENETC_F_QBV in priv->active_offloads only when enabled + - net: enetc: cache accesses to &priv->si->hw + - net: enetc: preserve TX ring priority across reconfiguration + - octeontx2-pf: Add check for devm_kcalloc + - octeontx2-af: Fix reference count issue in rvu_sdp_init() + - net: thunderx: Fix the ACPI memory leak + - s390/crashdump: fix TOD programmable field size + - lib/vdso: use "grep -E" instead of "egrep" + - [Config] updateconfigs for CC_HAS_ASM_GOTO_TIED_OUTPUT + - init/Kconfig: fix CC_HAS_ASM_GOTO_TIED_OUTPUT test with dash + - nios2: add FORCE for vmlinuz.gz + - mmc: sdhci-brcmstb: Re-organize flags + - mmc: sdhci-brcmstb: Enable Clock Gating to save power + - mmc: sdhci-brcmstb: Fix SDHCI_RESET_ALL for CQHCI + - KVM: arm64: pkvm: Fixup boot mode to reflect that the kernel resumes from + EL1 + - usb: dwc3: exynos: Fix remove() function + - usb: cdnsp: Fix issue with Clear Feature Halt Endpoint + - usb: cdnsp: fix issue with ZLP - added TD_SIZE = 1 + - ext4: fix use-after-free in ext4_ext_shift_extents + - arm64: dts: rockchip: lower rk3399-puma-haikou SD controller clock frequency + - iio: light: apds9960: fix wrong register for gesture gain + - iio: core: Fix entry not deleted when iio_register_sw_trigger_type() fails + - bus: ixp4xx: Don't touch bit 7 on IXP42x + - usb: dwc3: gadget: conditionally remove requests + - usb: dwc3: gadget: Return -ESHUTDOWN on ep disable + - usb: dwc3: gadget: Clear ep descriptor last + - nilfs2: fix nilfs_sufile_mark_dirty() not set segment usage as dirty + - gcov: clang: fix the buffer overflow issue + - mm: vmscan: fix extreme overreclaim and swap floods + - KVM: x86: nSVM: leave nested mode on vCPU free + - KVM: x86: forcibly leave nested mode on vCPU reset + - KVM: x86: nSVM: harden svm_free_nested against freeing vmcb02 while still in + use + - KVM: x86: add kvm_leave_nested + - KVM: x86: remove exit_int_info warning in svm_handle_exit + - x86/tsx: Add a feature bit for TSX control MSR support + - x86/pm: Add enumeration check before spec MSRs save/restore setup + - x86/ioremap: Fix page aligned size calculation in __ioremap_caller() + - Input: synaptics - switch touchpad on HP Laptop 15-da3001TU to RMI mode + - ASoC: Intel: bytcht_es8316: Add quirk for the Nanote UMPC-01 + - tools: iio: iio_generic_buffer: Fix read size + - serial: 8250: 8250_omap: Avoid RS485 RTS glitch on ->set_termios() + - Input: goodix - try resetting the controller when no config is set + - Input: soc_button_array - add use_low_level_irq module parameter + - Input: soc_button_array - add Acer Switch V 10 to dmi_use_low_level_irq[] + - Input: i8042 - apply probe defer to more ASUS ZenBook models + - ASoC: stm32: dfsdm: manage cb buffers cleanup + - xen-pciback: Allow setting PCI_MSIX_FLAGS_MASKALL too + - xen/platform-pci: add missing free_irq() in error path + - platform/x86: asus-wmi: add missing pci_dev_put() in asus_wmi_set_xusb2pr() + - platform/x86: acer-wmi: Enable SW_TABLET_MODE on Switch V 10 (SW5-017) + - drm/amdgpu: disable BACO support on more cards + - zonefs: fix zone report size in __zonefs_io_error() + - platform/x86: hp-wmi: Ignore Smart Experience App event + - platform/x86: ideapad-laptop: Fix interrupt storm on fn-lock toggle on some + Yoga laptops + - [Config] updateconfigs for INET_TABLE_PERTURB_ORDER + - tcp: configurable source port perturb table size + - net: usb: qmi_wwan: add Telit 0x103a composition + - scsi: iscsi: Fix possible memory leak when device_register() failed + - gpu: host1x: Avoid trying to use GART on Tegra20 + - dm integrity: flush the journal on suspend + - dm integrity: clear the journal on suspend + - fuse: lock inode unconditionally in fuse_fallocate() + - wifi: wilc1000: validate length of IEEE80211_P2P_ATTR_OPER_CHANNEL attribute + - wifi: wilc1000: validate length of IEEE80211_P2P_ATTR_CHANNEL_LIST attribute + - wifi: wilc1000: validate number of channels + - genirq/msi: Shutdown managed interrupts with unsatifiable affinities + - genirq: Always limit the affinity to online CPUs + - irqchip/gic-v3: Always trust the managed affinity provided by the core code + - genirq: Take the proposed affinity at face value if force==true + - btrfs: free btrfs_path before copying root refs to userspace + - btrfs: free btrfs_path before copying fspath to userspace + - btrfs: free btrfs_path before copying subvol info to userspace + - btrfs: zoned: fix missing endianness conversion in sb_write_pointer + - btrfs: use kvcalloc in btrfs_get_dev_zone_info + - btrfs: sysfs: normalize the error handling branch in btrfs_init_sysfs() + - drm/amd/dc/dce120: Fix audio register mapping, stop triggering KASAN + - drm/amd/display: No display after resume from WB/CB + - drm/amdgpu: Enable Aldebaran devices to report CU Occupancy + - drm/amdgpu: always register an MMU notifier for userptr + - cifs: fix missed refcounting of ipc tcon + - Linux 5.15.81 + * Jammy update: v5.15.80 upstream stable release (LP: #2003122) + - mm: hwpoison: refactor refcount check handling + - mm: hwpoison: handle non-anonymous THP correctly + - mm: shmem: don't truncate page if memory failure happens + - ASoC: wm5102: Revert "ASoC: wm5102: Fix PM disable depth imbalance in + wm5102_probe" + - ASoC: wm5110: Revert "ASoC: wm5110: Fix PM disable depth imbalance in + wm5110_probe" + - ASoC: wm8997: Revert "ASoC: wm8997: Fix PM disable depth imbalance in + wm8997_probe" + - ASoC: mt6660: Keep the pm_runtime enables before component stuff in + mt6660_i2c_probe + - ASoC: rt1019: Fix the TDM settings + - ASoC: wm8962: Add an event handler for TEMP_HP and TEMP_SPK + - spi: intel: Fix the offset to get the 64K erase opcode + - ASoC: codecs: jz4725b: add missed Line In power control bit + - ASoC: codecs: jz4725b: fix reported volume for Master ctl + - ASoC: codecs: jz4725b: use right control for Capture Volume + - ASoC: codecs: jz4725b: fix capture selector naming + - ASoC: Intel: sof_sdw: add quirk variant for LAPBC710 NUC15 + - selftests/futex: fix build for clang + - selftests/intel_pstate: fix build for ARCH=x86_64 + - ASoC: rt1308-sdw: add the default value of some registers + - drm/amd/display: Remove wrong pipe control lock + - ACPI: scan: Add LATT2021 to acpi_ignore_dep_ids[] + - RDMA/efa: Add EFA 0xefa2 PCI ID + - btrfs: raid56: properly handle the error when unable to find the missing + stripe + - NFSv4: Retry LOCK on OLD_STATEID during delegation return + - ACPI: x86: Add another system to quirk list for forcing StorageD3Enable + - firmware: arm_scmi: Cleanup the core driver removal callback + - i2c: tegra: Allocate DMA memory for DMA engine + - i2c: i801: add lis3lv02d's I2C address for Vostro 5568 + - drm/imx: imx-tve: Fix return type of imx_tve_connector_mode_valid + - btrfs: remove pointless and double ulist frees in error paths of qgroup + tests + - x86/cpu: Add several Intel server CPU model numbers + - ASoC: codecs: jz4725b: Fix spelling mistake "Sourc" -> "Source", "Routee" -> + "Route" + - mtd: spi-nor: intel-spi: Disable write protection only if asked + - spi: intel: Use correct mask for flash and protected regions + - KVM: x86/pmu: Do not speculatively query Intel GP PMCs that don't exist yet + - hugetlbfs: don't delete error page from pagecache + - arm64: dts: qcom: sa8155p-adp: Specify which LDO modes are allowed + - arm64: dts: qcom: sm8150-xperia-kumano: Specify which LDO modes are allowed + - arm64: dts: qcom: sm8250-xperia-edo: Specify which LDO modes are allowed + - arm64: dts: qcom: sm8350-hdk: Specify which LDO modes are allowed + - spi: stm32: Print summary 'callbacks suppressed' message + - ARM: dts: at91: sama7g5: fix signal name of pin PB2 + - ASoC: core: Fix use-after-free in snd_soc_exit() + - ASoC: tas2770: Fix set_tdm_slot in case of single slot + - ASoC: tas2764: Fix set_tdm_slot in case of single slot + - ARM: at91: pm: avoid soft resetting AC DLL + - serial: 8250: omap: Fix missing PM runtime calls for omap8250_set_mctrl() + - serial: 8250_omap: remove wait loop from Errata i202 workaround + - serial: 8250: omap: Fix unpaired pm_runtime_put_sync() in omap8250_remove() + - serial: 8250: omap: Flush PM QOS work on remove + - serial: imx: Add missing .thaw_noirq hook + - tty: n_gsm: fix sleep-in-atomic-context bug in gsm_control_send + - bpf, test_run: Fix alignment problem in bpf_prog_test_run_skb() + - ASoC: soc-utils: Remove __exit for snd_soc_util_exit() + - pinctrl: rockchip: list all pins in a possible mux route for PX30 + - scsi: scsi_transport_sas: Fix error handling in sas_phy_add() + - block: sed-opal: kmalloc the cmd/resp buffers + - bpf: Fix memory leaks in __check_func_call + - arm64: Fix bit-shifting UB in the MIDR_CPU_MODEL() macro + - siox: fix possible memory leak in siox_device_add() + - parport_pc: Avoid FIFO port location truncation + - pinctrl: devicetree: fix null pointer dereferencing in pinctrl_dt_to_map + - drm/vc4: kms: Fix IS_ERR() vs NULL check for vc4_kms + - drm/panel: simple: set bpc field for logic technologies displays + - drm/drv: Fix potential memory leak in drm_dev_init() + - drm: Fix potential null-ptr-deref in drm_vblank_destroy_worker() + - arm64: dts: imx8mm: Fix NAND controller size-cells + - arm64: dts: imx8mn: Fix NAND controller size-cells + - ata: libata-transport: fix double ata_host_put() in ata_tport_add() + - ata: libata-transport: fix error handling in ata_tport_add() + - ata: libata-transport: fix error handling in ata_tlink_add() + - ata: libata-transport: fix error handling in ata_tdev_add() + - nfp: change eeprom length to max length enumerators + - MIPS: fix duplicate definitions for exported symbols + - MIPS: Loongson64: Add WARN_ON on kexec related kmalloc failed + - bpf: Initialize same number of free nodes for each pcpu_freelist + - net: bgmac: Drop free_netdev() from bgmac_enet_remove() + - mISDN: fix possible memory leak in mISDN_dsp_element_register() + - net: hinic: Fix error handling in hinic_module_init() + - net: stmmac: ensure tx function is not running in stmmac_xdp_release() + - soc: imx8m: Enable OCOTP clock before reading the register + - net: liquidio: release resources when liquidio driver open failed + - mISDN: fix misuse of put_device() in mISDN_register_device() + - net: macvlan: Use built-in RCU list checking + - net: caif: fix double disconnect client in chnl_net_open() + - bnxt_en: Remove debugfs when pci_register_driver failed + - net: mhi: Fix memory leak in mhi_net_dellink() + - net: dsa: make dsa_master_ioctl() see through port_hwtstamp_get() shims + - xen/pcpu: fix possible memory leak in register_pcpu() + - net: ionic: Fix error handling in ionic_init_module() + - net: ena: Fix error handling in ena_init() + - net: hns3: fix setting incorrect phy link ksettings for firmware in + resetting process + - bridge: switchdev: Fix memory leaks when changing VLAN protocol + - drbd: use after free in drbd_create_device() + - platform/x86/intel: pmc: Don't unconditionally attach Intel PMC when + virtualized + - platform/surface: aggregator: Do not check for repeated unsequenced packets + - cifs: add check for returning value of SMB2_close_init + - net: ag71xx: call phylink_disconnect_phy if ag71xx_hw_enable() fail in + ag71xx_open() + - net/x25: Fix skb leak in x25_lapb_receive_frame() + - cifs: Fix wrong return value checking when GETFLAGS + - net: microchip: sparx5: Fix potential null-ptr-deref in sparx_stats_init() + and sparx5_start() + - net: thunderbolt: Fix error handling in tbnet_init() + - cifs: add check for returning value of SMB2_set_info_init + - ftrace: Fix the possible incorrect kernel message + - ftrace: Optimize the allocation for mcount entries + - ftrace: Fix null pointer dereference in ftrace_add_mod() + - ring_buffer: Do not deactivate non-existant pages + - tracing: Fix memory leak in tracing_read_pipe() + - tracing/ring-buffer: Have polling block on watermark + - tracing: Fix memory leak in test_gen_synth_cmd() and + test_empty_synth_event() + - tracing: Fix wild-memory-access in register_synth_event() + - tracing: Fix race where eprobes can be called before the event + - tracing: kprobe: Fix potential null-ptr-deref on trace_event_file in + kprobe_event_gen_test_exit() + - tracing: kprobe: Fix potential null-ptr-deref on trace_array in + kprobe_event_gen_test_exit() + - drm/amd/display: Add HUBP surface flip interrupt handler + - ALSA: usb-audio: Drop snd_BUG_ON() from snd_usbmidi_output_open() + - ALSA: hda/realtek: fix speakers for Samsung Galaxy Book Pro + - ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book Pro 360 + - Revert "usb: dwc3: disable USB core PHY management" + - slimbus: qcom-ngd: Fix build error when CONFIG_SLIM_QCOM_NGD_CTRL=y && + CONFIG_QCOM_RPROC_COMMON=m + - slimbus: stream: correct presence rate frequencies + - speakup: fix a segfault caused by switching consoles + - USB: bcma: Make GPIO explicitly optional + - USB: serial: option: add Sierra Wireless EM9191 + - USB: serial: option: remove old LARA-R6 PID + - USB: serial: option: add u-blox LARA-R6 00B modem + - USB: serial: option: add u-blox LARA-L6 modem + - USB: serial: option: add Fibocom FM160 0x0111 composition + - usb: add NO_LPM quirk for Realforce 87U Keyboard + - usb: chipidea: fix deadlock in ci_otg_del_timer + - usb: cdns3: host: fix endless superspeed hub port reset + - usb: typec: mux: Enter safe mode only when pins need to be reconfigured + - iio: adc: at91_adc: fix possible memory leak in at91_adc_allocate_trigger() + - iio: trigger: sysfs: fix possible memory leak in iio_sysfs_trig_init() + - iio: adc: mp2629: fix wrong comparison of channel + - iio: adc: mp2629: fix potential array out of bound access + - iio: pressure: ms5611: changed hardcoded SPI speed to value limited + - dm ioctl: fix misbehavior if list_versions races with module loading + - serial: 8250: Fall back to non-DMA Rx if IIR_RDI occurs + - serial: 8250: Flush DMA Rx on RLSI + - serial: 8250_lpss: Configure DMA also w/o DMA filter + - Input: iforce - invert valid length check when fetching device IDs + - maccess: Fix writing offset in case of fault in + strncpy_from_kernel_nofault() + - net: phy: marvell: add sleep time after enabling the loopback bit + - scsi: zfcp: Fix double free of FSF request when qdio send fails + - iommu/vt-d: Preset Access bit for IOVA in FL non-leaf paging entries + - iommu/vt-d: Set SRE bit only when hardware has SRS cap + - firmware: coreboot: Register bus in module init + - mmc: core: properly select voltage range without power cycle + - mmc: sdhci-pci-o2micro: fix card detect fail issue caused by CD# debounce + timeout + - mmc: sdhci-pci: Fix possible memory leak caused by missing pci_dev_put() + - docs: update mediator contact information in CoC doc + - misc/vmw_vmci: fix an infoleak in vmci_host_do_receive_datagram() + - perf/x86/intel/pt: Fix sampling using single range output + - nvme: restrict management ioctls to admin + - nvme: ensure subsystem reset is single threaded + - serial: 8250_lpss: Use 16B DMA burst with Elkhart Lake + - perf: Improve missing SIGTRAP checking + - ring-buffer: Include dropped pages in counting dirty patches + - tracing: Fix warning on variable 'struct trace_array' + - net: use struct_group to copy ip/ipv6 header addresses + - scsi: target: tcm_loop: Fix possible name leak in tcm_loop_setup_hba_bus() + - scsi: scsi_debug: Fix possible UAF in sdebug_add_host_helper() + - kprobes: Skip clearing aggrprobe's post_handler in kprobe-on-ftrace case + - Input: i8042 - fix leaking of platform device on module removal + - macvlan: enforce a consistent minimal mtu + - tcp: cdg: allow tcp_cdg_release() to be called multiple times + - kcm: avoid potential race in kcm_tx_work + - kcm: close race conditions on sk_receive_queue + - 9p: trans_fd/p9_conn_cancel: drop client lock earlier + - gfs2: Check sb_bsize_shift after reading superblock + - gfs2: Switch from strlcpy to strscpy + - 9p/trans_fd: always use O_NONBLOCK read/write + - wifi: wext: use flex array destination for memcpy() + - mm: fs: initialize fsdata passed to write_begin/write_end interface + - net/9p: use a dedicated spinlock for trans_fd + - ntfs: fix use-after-free in ntfs_attr_find() + - ntfs: fix out-of-bounds read in ntfs_attr_find() + - ntfs: check overflow when iterating ATTR_RECORDs + - Linux 5.15.80 + * CVE-2022-4139 + - drm/i915: fix TLB invalidation for Gen12 video and compute engines + * Jammy update: v5.15.79 upstream stable release (LP: #2001570) + - fuse: fix readdir cache race + - drm/amdkfd: avoid recursive lock in migrations back to RAM + - drm/amdkfd: handle CPU fault on COW mapping + - drm/amdkfd: Fix NULL pointer dereference in svm_migrate_to_ram() + - hwspinlock: qcom: correct MMIO max register for newer SoCs + - phy: stm32: fix an error code in probe + - wifi: cfg80211: silence a sparse RCU warning + - wifi: cfg80211: fix memory leak in query_regdb_file() + - soundwire: qcom: reinit broadcast completion + - soundwire: qcom: check for outanding writes before doing a read + - bpf, verifier: Fix memory leak in array reallocation for stack state + - bpf, sockmap: Fix the sk->sk_forward_alloc warning of sk_stream_kill_queues + - wifi: mac80211: Set TWT Information Frame Disabled bit as 1 + - bpftool: Fix NULL pointer dereference when pin {PROG, MAP, LINK} without + FILE + - HID: hyperv: fix possible memory leak in mousevsc_probe() + - bpf, sockmap: Fix sk->sk_forward_alloc warn_on in sk_stream_kill_queues + - bpf: Fix sockmap calling sleepable function in teardown path + - bpf, sock_map: Move cancel_work_sync() out of sock lock + - bpf: Add helper macro bpf_for_each_reg_in_vstate + - bpf: Fix wrong reg type conversion in release_reference() + - net: gso: fix panic on frag_list with mixed head alloc types + - macsec: delete new rxsc when offload fails + - macsec: fix secy->n_rx_sc accounting + - macsec: fix detection of RXSCs when toggling offloading + - macsec: clear encryption keys from the stack after setting up offload + - octeontx2-pf: Use hardware register for CQE count + - octeontx2-pf: NIX TX overwrites SQ_CTX_HW_S[SQ_INT] + - net: tun: Fix memory leaks of napi_get_frags + - bnxt_en: Fix possible crash in bnxt_hwrm_set_coal() + - bnxt_en: fix potentially incorrect return value for ndo_rx_flow_steer + - net: fman: Unregister ethernet device on removal + - capabilities: fix undefined behavior in bit shift for CAP_TO_MASK + - phy: ralink: mt7621-pci: add sentinel to quirks table + - KVM: s390: pv: don't allow userspace to set the clock under PV + - net: lapbether: fix issue of dev reference count leakage in + lapbeth_device_event() + - hamradio: fix issue of dev reference count leakage in bpq_device_event() + - net: wwan: iosm: fix memory leak in ipc_wwan_dellink + - net: wwan: mhi: fix memory leak in mhi_mbim_dellink + - drm/vc4: Fix missing platform_unregister_drivers() call in + vc4_drm_register() + - tcp: prohibit TCP_REPAIR_OPTIONS if data was already sent + - ipv6: addrlabel: fix infoleak when sending struct ifaddrlblmsg to network + - can: af_can: fix NULL pointer dereference in can_rx_register() + - net: stmmac: dwmac-meson8b: fix meson8b_devm_clk_prepare_enable() + - net: broadcom: Fix BCMGENET Kconfig + - tipc: fix the msg->req tlv len check in + tipc_nl_compat_name_table_dump_header + - dmaengine: pxa_dma: use platform_get_irq_optional + - dmaengine: mv_xor_v2: Fix a resource leak in mv_xor_v2_remove() + - dmaengine: ti: k3-udma-glue: fix memory leak when register device fail + - net: lapbether: fix issue of invalid opcode in lapbeth_open() + - drivers: net: xgene: disable napi when register irq failed in + xgene_enet_open() + - perf stat: Fix printing os->prefix in CSV metrics output + - perf tools: Add the include/perf/ directory to .gitignore + - netfilter: nfnetlink: fix potential dead lock in nfnetlink_rcv_msg() + - netfilter: Cleanup nft_net->module_list from nf_tables_exit_net() + - net: marvell: prestera: fix memory leak in prestera_rxtx_switch_init() + - net: nixge: disable napi when enable interrupts failed in nixge_open() + - net: wwan: iosm: fix memory leak in ipc_pcie_read_bios_cfg + - net/mlx5: Bridge, verify LAG state when adding bond to bridge + - net/mlx5: Allow async trigger completion execution on single CPU systems + - net/mlx5e: E-Switch, Fix comparing termination table instance + - net: cpsw: disable napi in cpsw_ndo_open() + - net: cxgb3_main: disable napi when bind qsets failed in cxgb_up() + - stmmac: intel: Enable 2.5Gbps for Intel AlderLake-S + - stmmac: intel: Update PCH PTP clock rate from 200MHz to 204.8MHz + - mctp: Fix an error handling path in mctp_init() + - cxgb4vf: shut down the adapter when t4vf_update_port_info() failed in + cxgb4vf_open() + - stmmac: dwmac-loongson: fix missing pci_disable_msi() while module exiting + - stmmac: dwmac-loongson: fix missing pci_disable_device() in + loongson_dwmac_probe() + - stmmac: dwmac-loongson: fix missing of_node_put() while module exiting + - net: phy: mscc: macsec: clear encryption keys when freeing a flow + - net: atlantic: macsec: clear encryption keys from the stack + - ethernet: s2io: disable napi when start nic failed in s2io_card_up() + - net: mv643xx_eth: disable napi when init rxq or txq failed in + mv643xx_eth_open() + - ethernet: tundra: free irq when alloc ring failed in tsi108_open() + - net: macvlan: fix memory leaks of macvlan_common_newlink + - riscv: process: fix kernel info leakage + - riscv: vdso: fix build with llvm + - riscv: fix reserved memory setup + - arm64: efi: Fix handling of misaligned runtime regions and drop warning + - MIPS: jump_label: Fix compat branch range check + - mmc: cqhci: Provide helper for resetting both SDHCI and CQHCI + - mmc: sdhci-of-arasan: Fix SDHCI_RESET_ALL for CQHCI + - mmc: sdhci_am654: Fix SDHCI_RESET_ALL for CQHCI + - mmc: sdhci-tegra: Fix SDHCI_RESET_ALL for CQHCI + - mmc: sdhci-esdhc-imx: use the correct host caps for MMC_CAP_8_BIT_DATA + - ALSA: hda/hdmi - enable runtime pm for more AMD display audio + - ALSA: hda/ca0132: add quirk for EVGA Z390 DARK + - ALSA: hda: fix potential memleak in 'add_widget_node' + - ALSA: hda/realtek: Add Positivo C6300 model quirk + - ALSA: usb-audio: Yet more regression for for the delayed card registration + - ALSA: usb-audio: Add quirk entry for M-Audio Micro + - ALSA: usb-audio: Add DSD support for Accuphase DAC-60 + - vmlinux.lds.h: Fix placement of '.data..decrypted' section + - ata: libata-scsi: fix SYNCHRONIZE CACHE (16) command failure + - nilfs2: fix deadlock in nilfs_count_free_blocks() + - nilfs2: fix use-after-free bug of ns_writer on remount + - drm/i915/dmabuf: fix sg_table handling in map_dma_buf + - drm/amdgpu: disable BACO on special BEIGE_GOBY card + - btrfs: fix match incorrectly in dev_args_match_device + - btrfs: selftests: fix wrong error check in btrfs_free_dummy_root() + - btrfs: zoned: initialize device's zone info for seeding + - mms: sdhci-esdhc-imx: Fix SDHCI_RESET_ALL for CQHCI + - udf: Fix a slab-out-of-bounds write bug in udf_find_entry() + - mm/damon/dbgfs: check if rm_contexts input is for a real context + - mm/memremap.c: map FS_DAX device memory as decrypted + - mm/shmem: use page_mapping() to detect page cache for uffd continue + - can: j1939: j1939_send_one(): fix missing CAN header initialization + - cert host tools: Stop complaining about deprecated OpenSSL functions + - dmaengine: at_hdmac: Fix at_lli struct definition + - dmaengine: at_hdmac: Don't start transactions at tx_submit level + - dmaengine: at_hdmac: Start transfer for cyclic channels in issue_pending + - dmaengine: at_hdmac: Fix premature completion of desc in issue_pending + - dmaengine: at_hdmac: Do not call the complete callback on + device_terminate_all + - dmaengine: at_hdmac: Protect atchan->status with the channel lock + - dmaengine: at_hdmac: Fix concurrency problems by removing atc_complete_all() + - dmaengine: at_hdmac: Fix concurrency over descriptor + - dmaengine: at_hdmac: Free the memset buf without holding the chan lock + - dmaengine: at_hdmac: Fix concurrency over the active list + - dmaengine: at_hdmac: Fix descriptor handling when issuing it to hardware + - dmaengine: at_hdmac: Fix completion of unissued descriptor in case of errors + - dmaengine: at_hdmac: Don't allow CPU to reorder channel enable + - dmaengine: at_hdmac: Fix impossible condition + - dmaengine: at_hdmac: Check return code of dma_async_device_register + - marvell: octeontx2: build error: unknown type name 'u64' + - drm/amdkfd: Migrate in CPU page fault use current mm + - net: tun: call napi_schedule_prep() to ensure we own a napi + - x86/cpu: Restore AMD's DE_CFG MSR after resume + - Linux 5.15.79 + * CVE-2022-47520 + - wifi: wilc1000: validate pairwise and authentication suite offsets + * CVE-2022-3545 + - nfp: fix use-after-free in area_cache_get() + + -- Tim Gardner Fri, 10 Feb 2023 12:43:03 -0700 + +linux-azure (5.15.0-1033.40) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1033.40 -proposed tracker (LP: #2003426) + + [ Ubuntu: 5.15.0-60.66 ] + + * jammy/linux: 5.15.0-60.66 -proposed tracker (LP: #2003450) + * Revoke & rotate to new signing key (LP: #2002812) + - [Packaging] Revoke and rotate to new signing key + + -- Luke Nowakowski-Krijger Mon, 23 Jan 2023 12:24:05 -0800 + +linux-azure (5.15.0-1032.39) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1032.39 -proposed tracker (LP: #2001763) + + * Jammy update: v5.15.75 upstream stable release (LP: #1996825) // Jammy + update: v5.15.76 upstream stable release (LP: #1997113) + - [Config] azure: Update after rebase + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2023.01.02) + + * Azure: Jammy fio test hangs, swiotlb buffers exhausted (LP: #1998838) + - Revert "UBUNTU: SAUCE: scsi: storvsc: Fix swiotlb bounce buffer leak in + confidential VM" + - scsi: storvsc: Fix swiotlb bounce buffer leak in confidential VM + + [ Ubuntu: 5.15.0-59.65 ] + + * jammy/linux: 5.15.0-59.65 -proposed tracker (LP: #2001801) + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + * CVE-2022-47940 + - ksmbd: validate length in smb2_write() + * Fix iosm: WWAN cannot build the connection (DW5823e) (LP: #1998115) + - net: wwan: iosm: fix driver not working with INTEL_IOMMU disabled + - [Config] CONFIG_IOSM update annotations on arm64 armhf ppc64el s390x + * support for same series backports versioning numbers (LP: #1993563) + - [Packaging] sameport -- add support for sameport versioning + * [DEP-8] Run ADT regression suite for lowlatency kernels Jammy and later + (LP: #1999528) + - [DEP-8] Fix regression suite to run on lowlatency + * Micron NVME storage failure [1344,5407] (LP: #1998883) + - nvme: add a bogus subsystem NQN quirk for Micron MTFDKBA2T0TFH + * Jammy update: v5.15.78 upstream stable release (LP: #1998843) + - scsi: lpfc: Rework MIB Rx Monitor debug info logic + - serial: ar933x: Deassert Transmit Enable on ->rs485_config() + - KVM: x86: Trace re-injected exceptions + - KVM: x86: Treat #DBs from the emulator as fault-like (code and DR7.GD=1) + - drm/amd/display: explicitly disable psr_feature_enable appropriately + - mm/hugetlb: fix races when looking up a CONT-PTE/PMD size hugetlb page + - HID: playstation: add initial DualSense Edge controller support + - KVM: x86: Protect the unused bits in MSR exiting flags + - KVM: x86: Copy filter arg outside kvm_vm_ioctl_set_msr_filter() + - KVM: x86: Add compat handler for KVM_X86_SET_MSR_FILTER + - RDMA/cma: Use output interface for net_dev check + - IB/hfi1: Correctly move list in sc_disable() + - RDMA/hns: Remove magic number + - RDMA/hns: Use hr_reg_xxx() instead of remaining roce_set_xxx() + - RDMA/hns: Disable local invalidate operation + - NFSv4: Fix a potential state reclaim deadlock + - NFSv4.1: Handle RECLAIM_COMPLETE trunking errors + - NFSv4.1: We must always send RECLAIM_COMPLETE after a reboot + - SUNRPC: Fix null-ptr-deref when xps sysfs alloc failed + - NFSv4.2: Fixup CLONE dest file size for zero-length count + - nfs4: Fix kmemleak when allocate slot failed + - net: dsa: Fix possible memory leaks in dsa_loop_init() + - RDMA/core: Fix null-ptr-deref in ib_core_cleanup() + - RDMA/qedr: clean up work queue on failure in qedr_alloc_resources() + - net: dsa: fall back to default tagger if we can't load the one from DT + - nfc: fdp: Fix potential memory leak in fdp_nci_send() + - nfc: nxp-nci: Fix potential memory leak in nxp_nci_send() + - nfc: s3fwrn5: Fix potential memory leak in s3fwrn5_nci_send() + - nfc: nfcmrvl: Fix potential memory leak in nfcmrvl_i2c_nci_send() + - net: fec: fix improper use of NETDEV_TX_BUSY + - ata: pata_legacy: fix pdc20230_set_piomode() + - net: sched: Fix use after free in red_enqueue() + - net: tun: fix bugs for oversize packet when napi frags enabled + - netfilter: nf_tables: netlink notifier might race to release objects + - netfilter: nf_tables: release flow rule object from commit path + - ipvs: use explicitly signed chars + - ipvs: fix WARNING in __ip_vs_cleanup_batch() + - ipvs: fix WARNING in ip_vs_app_net_cleanup() + - rose: Fix NULL pointer dereference in rose_send_frame() + - mISDN: fix possible memory leak in mISDN_register_device() + - isdn: mISDN: netjet: fix wrong check of device registration + - btrfs: fix inode list leak during backref walking at resolve_indirect_refs() + - btrfs: fix inode list leak during backref walking at find_parent_nodes() + - btrfs: fix ulist leaks in error paths of qgroup self tests + - netfilter: ipset: enforce documented limit to prevent allocating huge memory + - Bluetooth: virtio_bt: Use skb_put to set length + - Bluetooth: L2CAP: fix use-after-free in l2cap_conn_del() + - Bluetooth: L2CAP: Fix memory leak in vhci_write + - net: mdio: fix undefined behavior in bit shift for __mdiobus_register + - ibmvnic: Free rwi on reset success + - stmmac: dwmac-loongson: fix invalid mdio_node + - net/smc: Fix possible leaked pernet namespace in smc_init() + - net, neigh: Fix null-ptr-deref in neigh_table_clear() + - ipv6: fix WARNING in ip6_route_net_exit_late() + - vsock: fix possible infinite sleep in vsock_connectible_wait_data() + - drm/msm/hdmi: Remove spurious IRQF_ONESHOT flag + - drm/msm/hdmi: fix IRQ lifetime + - video/fbdev/stifb: Implement the stifb_fillrect() function + - fbdev: stifb: Fall back to cfb_fillrect() on 32-bit HCRX cards + - mtd: parsers: bcm47xxpart: print correct offset on read error + - mtd: parsers: bcm47xxpart: Fix halfblock reads + - s390/uaccess: add missing EX_TABLE entries to __clear_user() + - s390/cio: fix out-of-bounds access on cio_ignore free + - media: rkisp1: Don't pass the quantization to rkisp1_csm_config() + - media: rkisp1: Initialize color space on resizer sink and source pads + - media: rkisp1: Use correct macro for gradient registers + - media: rkisp1: Zero v4l2_subdev_format fields in when validating links + - media: s5p_cec: limit msg.len to CEC_MAX_MSG_SIZE + - media: cros-ec-cec: limit msg.len to CEC_MAX_MSG_SIZE + - media: dvb-frontends/drxk: initialize err to 0 + - media: meson: vdec: fix possible refcount leak in vdec_probe() + - media: v4l: subdev: Fail graciously when getting try data for NULL state + - ACPI: APEI: Fix integer overflow in ghes_estatus_pool_init() + - scsi: core: Restrict legal sdev_state transitions via sysfs + - HID: saitek: add madcatz variant of MMO7 mouse device ID + - drm/amdgpu: set vm_update_mode=0 as default for Sienna Cichlid in SRIOV case + - i2c: xiic: Add platform module alias + - efi/tpm: Pass correct address to memblock_reserve + - clk: qcom: Update the force mem core bit for GPU clocks + - ARM: dts: imx6qdl-gw59{10,13}: fix user pushbutton GPIO offset + - arm64: dts: imx8: correct clock order + - arm64: dts: lx2160a: specify clock frequencies for the MDIO controllers + - arm64: dts: ls1088a: specify clock frequencies for the MDIO controllers + - arm64: dts: ls208xa: specify clock frequencies for the MDIO controllers + - block: Fix possible memory leak for rq_wb on add_disk failure + - firmware: arm_scmi: Suppress the driver's bind attributes + - firmware: arm_scmi: Make Rx chan_setup fail on memory errors + - firmware: arm_scmi: Fix devres allocation device in virtio transport + - arm64: dts: juno: Add thermal critical trip points + - i2c: piix4: Fix adapter not be removed in piix4_remove() + - Bluetooth: L2CAP: Fix attempting to access uninitialized memory + - block, bfq: protect 'bfqd->queued' by 'bfqd->lock' + - af_unix: Fix memory leaks of the whole sk due to OOB skb. + - fscrypt: stop using keyrings subsystem for fscrypt_master_key + - fscrypt: fix keyring memory leak on mount failure + - btrfs: fix lost file sync on direct IO write with nowait and dsync iocb + - btrfs: fix tree mod log mishandling of reallocated nodes + - btrfs: fix type of parameter generation in btrfs_get_dentry + - ftrace: Fix use-after-free for dynamic ftrace_ops + - tcp/udp: Make early_demux back namespacified. + - tracing: kprobe: Fix memory leak in test_gen_kprobe/kretprobe_cmd() + - kprobe: reverse kp->flags when arm_kprobe failed + - ring-buffer: Check for NULL cpu_buffer in ring_buffer_wake_waiters() + - tools/nolibc/string: Fix memcmp() implementation + - tracing/histogram: Update document for KEYS_MAX size + - capabilities: fix potential memleak on error path from vfs_getxattr_alloc() + - fuse: add file_modified() to fallocate + - efi: random: reduce seed size to 32 bytes + - efi: random: Use 'ACPI reclaim' memory for random seed + - arm64: entry: avoid kprobe recursion + - perf/x86/intel: Fix pebs event constraints for ICL + - perf/x86/intel: Add Cooper Lake stepping to isolation_ucodes[] + - perf/x86/intel: Fix pebs event constraints for SPR + - parisc: Make 8250_gsc driver dependend on CONFIG_PARISC + - parisc: Export iosapic_serial_irq() symbol for serial port driver + - parisc: Avoid printing the hardware path twice + - ext4: fix warning in 'ext4_da_release_space' + - ext4: fix BUG_ON() when directory entry has invalid rec_len + - x86/syscall: Include asm/ptrace.h in syscall_wrapper header + - KVM: x86: Mask off reserved bits in CPUID.80000006H + - KVM: x86: Mask off reserved bits in CPUID.8000001AH + - KVM: x86: Mask off reserved bits in CPUID.80000008H + - KVM: x86: Mask off reserved bits in CPUID.80000001H + - KVM: x86: Mask off reserved bits in CPUID.8000001FH + - KVM: VMX: fully disable SGX if SECONDARY_EXEC_ENCLS_EXITING unavailable + - KVM: arm64: Fix bad dereference on MTE-enabled systems + - KVM: x86: emulator: em_sysexit should update ctxt->mode + - KVM: x86: emulator: introduce emulator_recalc_and_set_mode + - KVM: x86: emulator: update the emulation mode after rsm + - KVM: x86: emulator: update the emulation mode after CR0 write + - tee: Fix tee_shm_register() for kernel TEE drivers + - ext4,f2fs: fix readahead of verity data + - cifs: fix regression in very old smb1 mounts + - drm/rockchip: dsi: Clean up 'usage_mode' when failing to attach + - drm/rockchip: dsi: Force synchronous probe + - drm/i915/sdvo: Filter out invalid outputs more sensibly + - drm/i915/sdvo: Setup DDC fully before output init + - wifi: brcmfmac: Fix potential buffer overflow in brcmf_fweh_event_worker() + - Linux 5.15.78 + * Fix AMD-PState driver for Genoa CPU (LP: #1998106) + - Documentation: amd-pstate: add tracer tool introduction + - Documentation: amd-pstate: grammar and sentence structure updates + - Documentation: amd-pstate: Add unit test introduction + - cpufreq: amd-pstate: cpufreq: amd-pstate: reset MSR_AMD_PERF_CTL register at + init + - cpufreq: amd-pstate: change amd-pstate driver to be built-in type + - cpufreq: amd-pstate: add amd-pstate driver parameter for mode selection + - Documentation: amd-pstate: add driver working mode introduction + - Documentation: add amd-pstate kernel command line options + * Mediatek WLAN RZ616(MT7922) SAR table control (LP: #1997200) + - mt76: mt7921: add .set_sar_specs support + - mt76: add 6 GHz band support in mt76_sar_freq_ranges + - mt76: mt7921: introduce ACPI SAR support + - mt76: connac: add support for limiting to maximum regulatory Tx power + - mt76: move sar utilities to mt76-core module + - mt76: mt7921: honor mt76_connac_mcu_set_rate_txpower return value in + mt7921_config + - mt76: mt7921: introduce ACPI SAR config in tx power + - wifi: mt76: mt7921: fix use after free in mt7921_acpi_read() + * [22.04/Jammy] Replace SAUCE AMD DP tunneling patch by upstream version + (LP: #1989944) + - Revert "UBUNTU: SAUCE: thunderbolt: Add DP out resource when DP tunnel is + discovered." + - thunderbolt: Add DP OUT resource when DP tunnel is discovered + * Jammy update: v5.15.77 upstream stable release (LP: #1997981) + - NFSv4: Fix free of uninitialized nfs4_label on referral lookup. + - NFSv4: Add an fattr allocation to _nfs4_discover_trunking() + - can: j1939: transport: j1939_session_skb_drop_old(): + spin_unlock_irqrestore() before kfree_skb() + - can: kvaser_usb: Fix possible completions during init_completion + - ALSA: Use del_timer_sync() before freeing timer + - ALSA: usb-audio: Add quirks for M-Audio Fast Track C400/600 + - ALSA: au88x0: use explicitly signed char + - ALSA: rme9652: use explicitly signed char + - USB: add RESET_RESUME quirk for NVIDIA Jetson devices in RCM + - usb: gadget: uvc: fix sg handling in error case + - usb: gadget: uvc: fix sg handling during video encode + - usb: dwc3: gadget: Stop processing more requests on IMI + - usb: dwc3: gadget: Don't set IMI for no_interrupt + - usb: bdc: change state when port disconnected + - usb: xhci: add XHCI_SPURIOUS_SUCCESS to ASM1042 despite being a V0.96 + controller + - mtd: rawnand: marvell: Use correct logic for nand-keep-config + - xhci: Add quirk to reset host back to default state at shutdown + - xhci-pci: Set runtime PM as default policy on all xHC 1.2 or later devices + - xhci: Remove device endpoints from bandwidth list when freeing the device + - tools: iio: iio_utils: fix digit calculation + - iio: light: tsl2583: Fix module unloading + - iio: temperature: ltc2983: allocate iio channels once + - iio: adxl372: Fix unsafe buffer attributes + - fbdev: smscufx: Fix several use-after-free bugs + - cpufreq: intel_pstate: Read all MSRs on the target CPU + - cpufreq: intel_pstate: hybrid: Use known scaling factor for P-cores + - fs/binfmt_elf: Fix memory leak in load_elf_binary() + - exec: Copy oldsighand->action under spin-lock + - mac802154: Fix LQI recording + - scsi: qla2xxx: Use transport-defined speed mask for supported_speeds + - drm/amdgpu: disallow gfxoff until GC IP blocks complete s2idle resume + - drm/msm/dsi: fix memory corruption with too many bridges + - drm/msm/hdmi: fix memory corruption with too many bridges + - drm/msm/dp: fix IRQ lifetime + - coresight: cti: Fix hang in cti_disable_hw() + - mmc: sdhci_am654: 'select', not 'depends' REGMAP_MMIO + - mmc: core: Fix kernel panic when remove non-standard SDIO card + - mmc: sdhci-pci-core: Disable ES for ASUS BIOS on Jasper Lake + - mmc: sdhci-esdhc-imx: Propagate ESDHC_FLAG_HS400* only on 8bit bus + - counter: microchip-tcb-capture: Handle Signal1 read and Synapse + - kernfs: fix use-after-free in __kernfs_remove + - pinctrl: Ingenic: JZ4755 bug fixes + - ARC: mm: fix leakage of memory allocated for PTE + - perf auxtrace: Fix address filter symbol name match for modules + - s390/futex: add missing EX_TABLE entry to __futex_atomic_op() + - s390/pci: add missing EX_TABLE entries to + __pcistg_mio_inuser()/__pcilg_mio_inuser() + - Revert "scsi: lpfc: Resolve some cleanup issues following SLI path + refactoring" + - Revert "scsi: lpfc: Fix element offset in __lpfc_sli_release_iocbq_s4()" + - Revert "scsi: lpfc: Fix locking for lpfc_sli_iocbq_lookup()" + - Revert "scsi: lpfc: SLI path split: Refactor SCSI paths" + - Revert "scsi: lpfc: SLI path split: Refactor fast and slow paths to native + SLI4" + - Revert "scsi: lpfc: SLI path split: Refactor lpfc_iocbq" + - mmc: block: Remove error check of hw_reset on reset + - ethtool: eeprom: fix null-deref on genl_info in dump + - net: ieee802154: fix error return code in dgram_bind() + - media: v4l2: Fix v4l2_i2c_subdev_set_name function documentation + - media: atomisp: prevent integer overflow in sh_css_set_black_frame() + - drm/msm: Fix return type of mdp4_lvds_connector_mode_valid + - KVM: selftests: Fix number of pages for memory slot in + memslot_modification_stress_test + - ASoC: qcom: lpass-cpu: mark HDMI TX registers as volatile + - perf: Fix missing SIGTRAPs + - sched/core: Fix comparison in sched_group_cookie_match() + - arc: iounmap() arg is volatile + - mtd: rawnand: intel: Add missing of_node_put() in ebu_nand_probe() + - ASoC: qcom: lpass-cpu: Mark HDMI TX parity register as volatile + - ALSA: ac97: fix possible memory leak in snd_ac97_dev_register() + - perf/x86/intel/lbr: Use setup_clear_cpu_cap() instead of clear_cpu_cap() + - tipc: fix a null-ptr-deref in tipc_topsrv_accept + - net: netsec: fix error handling in netsec_register_mdio() + - net: hinic: fix incorrect assignment issue in hinic_set_interrupt_cfg() + - net: hinic: fix memory leak when reading function table + - net: hinic: fix the issue of CMDQ memory leaks + - net: hinic: fix the issue of double release MBOX callback of VF + - net: macb: Specify PHY PM management done by MAC + - nfc: virtual_ncidev: Fix memory leak in virtual_nci_send() + - x86/unwind/orc: Fix unreliable stack dump with gcov + - amd-xgbe: fix the SFP compliance codes check for DAC cables + - amd-xgbe: add the bit rate quirk for Molex cables + - drm/i915/dp: Reset frl trained flag before restarting FRL training + - atlantic: fix deadlock at aq_nic_stop + - kcm: annotate data-races around kcm->rx_psock + - kcm: annotate data-races around kcm->rx_wait + - net: fix UAF issue in nfqnl_nf_hook_drop() when ops_init() failed + - net: lantiq_etop: don't free skb when returning NETDEV_TX_BUSY + - tcp: minor optimization in tcp_add_backlog() + - tcp: fix a signed-integer-overflow bug in tcp_add_backlog() + - tcp: fix indefinite deferral of RTO with SACK reneging + - net-memcg: avoid stalls when under memory pressure + - drm/amdkfd: Fix memory leak in kfd_mem_dmamap_userptr() + - can: mscan: mpc5xxx: mpc5xxx_can_probe(): add missing put_clock() in error + path + - can: mcp251x: mcp251x_can_probe(): add missing unregister_candev() in error + path + - PM: hibernate: Allow hybrid sleep to work with s2idle + - media: vivid: s_fbuf: add more sanity checks + - media: vivid: dev->bitmap_cap wasn't freed in all cases + - media: v4l2-dv-timings: add sanity checks for blanking values + - media: videodev2.h: V4L2_DV_BT_BLANKING_HEIGHT should check 'interlaced' + - media: vivid: set num_in/outputs to 0 if not supported + - perf vendor events power10: Fix hv-24x7 metric events + - ipv6: ensure sane device mtu in tunnels + - i40e: Fix ethtool rx-flow-hash setting for X722 + - i40e: Fix VF hang when reset is triggered on another VF + - i40e: Fix flow-type by setting GL_HASH_INSET registers + - net: ksz884x: fix missing pci_disable_device() on error in pcidev_init() + - PM: domains: Fix handling of unavailable/disabled idle states + - perf vendor events arm64: Fix incorrect Hisi hip08 L3 metrics + - net: fec: limit register access on i.MX6UL + - net: ethernet: ave: Fix MAC to be in charge of PHY PM + - ALSA: aoa: i2sbus: fix possible memory leak in i2sbus_add_dev() + - ALSA: aoa: Fix I2S device accounting + - openvswitch: switch from WARN to pr_warn + - net: ehea: fix possible memory leak in ehea_register_port() + - net: bcmsysport: Indicate MAC is in charge of PHY PM + - nh: fix scope used to find saddr when adding non gw nh + - net: broadcom: bcm4908enet: remove redundant variable bytes + - net: broadcom: bcm4908_enet: update TX stats after actual transmission + - netdevsim: remove dir in nsim_dev_debugfs_init() when creating ports dir + failed + - net/mlx5e: Do not increment ESN when updating IPsec ESN state + - net/mlx5e: Extend SKB room check to include PTP-SQ + - net/mlx5: Fix possible use-after-free in async command interface + - net/mlx5: Print more info on pci error handlers + - net/mlx5: Update fw fatal reporter state on PCI handlers successful recover + - net/mlx5: Fix crash during sync firmware reset + - net: do not sense pfmemalloc status in skb_append_pagefrags() + - kcm: do not sense pfmemalloc status in kcm_sendpage() + - net: enetc: survive memory pressure without crashing + - arm64: Add AMPERE1 to the Spectre-BHB affected list + - scsi: sd: Revert "scsi: sd: Remove a local variable" + - can: rcar_canfd: fix channel specific IRQ handling for RZ/G2L + - can: rcar_canfd: rcar_canfd_handle_global_receive(): fix IRQ storm on global + FIFO receive + - serial: core: move RS485 configuration tasks from drivers into core + - serial: Deassert Transmit Enable on probe in driver-specific way + - Linux 5.15.77 + * RCU stalls (LP: #1991951) + - [Config] Harmonize RCU_CPU_STALL_TIMEOUT + * Jammy update: v5.15.76 upstream stable release (LP: #1997113) + - r8152: add PID for the Lenovo OneLink+ Dock + - arm64/mm: Consolidate TCR_EL1 fields + - usb: gadget: uvc: consistently use define for headerlen + - usb: gadget: uvc: use on returned header len in video_encode_isoc_sg + - usb: gadget: uvc: rework uvcg_queue_next_buffer to uvcg_complete_buffer + - usb: gadget: uvc: giveback vb2 buffer on req complete + - usb: gadget: uvc: improve sg exit condition + - [Config] updateconfigs for ARM64_ERRATUM_1742098 + - arm64: errata: Remove AES hwcap for COMPAT tasks + - perf/x86/intel/pt: Relax address filter validation + - btrfs: enhance unsupported compat RO flags handling + - ocfs2: clear dinode links count in case of error + - ocfs2: fix BUG when iput after ocfs2_mknod fails + - selinux: enable use of both GFP_KERNEL and GFP_ATOMIC in convert_context() + - cpufreq: qcom: fix writes in read-only memory region + - i2c: qcom-cci: Fix ordering of pm_runtime_xx and i2c_add_adapter + - x86/microcode/AMD: Apply the patch early on every logical thread + - hwmon/coretemp: Handle large core ID value + - ata: ahci-imx: Fix MODULE_ALIAS + - x86/resctrl: Fix min_cbm_bits for AMD + - cpufreq: qcom: fix memory leak in error path + - drm/amdgpu: fix sdma doorbell init ordering on APUs + - mm,hugetlb: take hugetlb_lock before decrementing h->resv_huge_pages + - kvm: Add support for arch compat vm ioctls + - KVM: arm64: vgic: Fix exit condition in scan_its_table() + - media: ipu3-imgu: Fix NULL pointer dereference in active selection access + - media: mceusb: set timeout to at least timeout provided + - media: venus: dec: Handle the case where find_format fails + - x86/topology: Fix multiple packages shown on a single-package system + - x86/topology: Fix duplicated core ID within a package + - btrfs: fix processing of delayed data refs during backref walking + - btrfs: fix processing of delayed tree block refs during backref walking + - drm/vc4: Add module dependency on hdmi-codec + - ACPI: extlog: Handle multiple records + - tipc: Fix recognition of trial period + - tipc: fix an information leak in tipc_topsrv_kern_subscr + - i40e: Fix DMA mappings leak + - HID: magicmouse: Do not set BTN_MOUSE on double report + - sfc: Change VF mac via PF as first preference if available. + - net/atm: fix proc_mpc_write incorrect return value + - net: phy: dp83867: Extend RX strap quirk for SGMII mode + - net: phylink: add mac_managed_pm in phylink_config structure + - scsi: lpfc: Fix memory leak in lpfc_create_port() + - udp: Update reuse->has_conns under reuseport_lock. + - cifs: Fix xid leak in cifs_create() + - cifs: Fix xid leak in cifs_copy_file_range() + - cifs: Fix xid leak in cifs_flock() + - cifs: Fix xid leak in cifs_ses_add_channel() + - dm: remove unnecessary assignment statement in alloc_dev() + - net: hsr: avoid possible NULL deref in skb_clone() + - ionic: catch NULL pointer issue on reconfig + - netfilter: nf_tables: relax NFTA_SET_ELEM_KEY_END set flags requirements + - nvme-hwmon: consistently ignore errors from nvme_hwmon_init + - nvme-hwmon: kmalloc the NVME SMART log buffer + - nvmet: fix workqueue MEM_RECLAIM flushing dependency + - net: sched: cake: fix null pointer access issue when cake_init() fails + - net: sched: delete duplicate cleanup of backlog and qlen + - net: sched: sfb: fix null pointer access issue when sfb_init() fails + - sfc: include vport_id in filter spec hash and equal() + - wwan_hwsim: fix possible memory leak in wwan_hwsim_dev_new() + - net: hns: fix possible memory leak in hnae_ae_register() + - net: sched: fix race condition in qdisc_graft() + - net: phy: dp83822: disable MDI crossover status change interrupt + - iommu/vt-d: Allow NVS regions in arch_rmrr_sanity_check() + - iommu/vt-d: Clean up si_domain in the init_dmars() error path + - fs: dlm: fix invalid derefence of sb_lvbptr + - arm64: mte: move register initialization to C + - ksmbd: handle smb2 query dir request for OutputBufferLength that is too + small + - ksmbd: fix incorrect handling of iterate_dir + - tracing: Simplify conditional compilation code in tracing_set_tracer() + - tracing: Do not free snapshot if tracer is on cmdline + - mmc: sdhci-tegra: Use actual clock rate for SW tuning correction + - perf: Skip and warn on unknown format 'configN' attrs + - ACPI: video: Force backlight native for more TongFang devices + - x86/Kconfig: Drop check for -mabi=ms for CONFIG_EFI_STUB + - Makefile.debug: re-enable debug info for .S files + - mmc: core: Add SD card quirk for broken discard + - mm: /proc/pid/smaps_rollup: fix no vma's null-deref + - Linux 5.15.76 + * UBSAN: array-index-out-of-bounds in + /build/linux-9H675w/linux-5.15.0/drivers/ata/libahci.c:968:41 + (LP: #1970074) // Jammy update: v5.15.76 upstream stable release + (LP: #1997113) + - ata: ahci: Match EM_MAX_SLOTS with SATA_PMP_MAX_PORTS + * Jammy update: v5.15.75 upstream stable release (LP: #1996825) + - Revert "fs: check FMODE_LSEEK to control internal pipe splicing" + - ALSA: oss: Fix potential deadlock at unregistration + - ALSA: rawmidi: Drop register_mutex in snd_rawmidi_free() + - ALSA: usb-audio: Fix potential memory leaks + - ALSA: usb-audio: Fix NULL dererence at error path + - ALSA: hda/realtek: remove ALC289_FIXUP_DUAL_SPK for Dell 5530 + - ALSA: hda/realtek: Correct pin configs for ASUS G533Z + - ALSA: hda/realtek: Add quirk for ASUS GV601R laptop + - ALSA: hda/realtek: Add Intel Reference SSID to support headset keys + - mtd: rawnand: atmel: Unmap streaming DMA mappings + - io_uring/net: don't update msg_name if not provided + - hv_netvsc: Fix race between VF offering and VF association message from host + - cifs: destage dirty pages before re-reading them for cache=none + - cifs: Fix the error length of VALIDATE_NEGOTIATE_INFO message + - iio: dac: ad5593r: Fix i2c read protocol requirements + - iio: ltc2497: Fix reading conversion results + - iio: adc: ad7923: fix channel readings for some variants + - iio: pressure: dps310: Refactor startup procedure + - iio: pressure: dps310: Reset chip after timeout + - xhci: dbc: Fix memory leak in xhci_alloc_dbc() + - usb: add quirks for Lenovo OneLink+ Dock + - can: kvaser_usb: Fix use of uninitialized completion + - can: kvaser_usb_leaf: Fix overread with an invalid command + - can: kvaser_usb_leaf: Fix TX queue out of sync after restart + - can: kvaser_usb_leaf: Fix CAN state after restart + - mmc: sdhci-sprd: Fix minimum clock limit + - i2c: designware: Fix handling of real but unexpected device interrupts + - fs: dlm: fix race between test_bit() and queue_work() + - fs: dlm: handle -EBUSY first in lock arg validation + - HID: multitouch: Add memory barriers + - quota: Check next/prev free block number after reading from quota file + - platform/chrome: cros_ec_proto: Update version on GET_NEXT_EVENT failure + - ASoC: wcd9335: fix order of Slimbus unprepare/disable + - ASoC: wcd934x: fix order of Slimbus unprepare/disable + - hwmon: (gsc-hwmon) Call of_node_get() before of_find_xxx API + - net: thunderbolt: Enable DMA paths only after rings are enabled + - regulator: qcom_rpm: Fix circular deferral regression + - arm64: topology: move store_cpu_topology() to shared code + - riscv: topology: fix default topology reporting + - RISC-V: Make port I/O string accessors actually work + - parisc: fbdev/stifb: Align graphics memory size to 4MB + - riscv: Make VM_WRITE imply VM_READ + - riscv: always honor the CONFIG_CMDLINE_FORCE when parsing dtb + - riscv: Pass -mno-relax only on lld < 15.0.0 + - UM: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK + - nvmem: core: Fix memleak in nvmem_register() + - nvme-multipath: fix possible hang in live ns resize with ANA access + - nvme-pci: set min_align_mask before calculating max_hw_sectors + - dmaengine: mxs: use platform_driver_register + - drm/virtio: Check whether transferred 2D BO is shmem + - drm/virtio: Unlock reservations on virtio_gpu_object_shmem_init() error + - drm/virtio: Use appropriate atomic state in virtio_gpu_plane_cleanup_fb() + - drm/udl: Restore display mode on resume + - [Config] updateconfigs for ARM64_ERRATUM_2441007 + - arm64: errata: Add Cortex-A55 to the repeat tlbi list + - mm/damon: validate if the pmd entry is present before accessing + - mm/mmap: undo ->mmap() when arch_validate_flags() fails + - xen/gntdev: Prevent leaking grants + - xen/gntdev: Accommodate VMA splitting + - PCI: Sanitise firmware BAR assignments behind a PCI-PCI bridge + - serial: 8250: Let drivers request full 16550A feature probing + - serial: 8250: Request full 16550A feature probing for OxSemi PCIe devices + - powercap: intel_rapl: Use standard Energy Unit for SPR Dram RAPL domain + - powerpc/boot: Explicitly disable usage of SPE instructions + - slimbus: qcom-ngd: use correct error in message of pdr_add_lookup() failure + - slimbus: qcom-ngd: cleanup in probe error path + - scsi: qedf: Populate sysfs attributes for vport + - gpio: rockchip: request GPIO mux to pinctrl when setting direction + - pinctrl: rockchip: add pinmux_ops.gpio_set_direction callback + - fbdev: smscufx: Fix use-after-free in ufx_ops_open() + - ksmbd: fix endless loop when encryption for response fails + - ksmbd: Fix wrong return value and message length check in smb2_ioctl() + - ksmbd: Fix user namespace mapping + - fs: record I_DIRTY_TIME even if inode already has I_DIRTY_INODE + - btrfs: fix race between quota enable and quota rescan ioctl + - btrfs: set generation before calling btrfs_clean_tree_block in + btrfs_init_new_buffer + - f2fs: complete checkpoints during remount + - f2fs: flush pending checkpoints when freezing super + - f2fs: increase the limit for reserve_root + - f2fs: fix to do sanity check on destination blkaddr during recovery + - f2fs: fix to do sanity check on summary info + - hardening: Avoid harmless Clang option under CONFIG_INIT_STACK_ALL_ZERO + - hardening: Remove Clang's enable flag for -ftrivial-auto-var-init=zero + - jbd2: wake up journal waiters in FIFO order, not LIFO + - jbd2: fix potential buffer head reference count leak + - jbd2: fix potential use-after-free in jbd2_fc_wait_bufs + - jbd2: add miss release buffer head in fc_do_one_pass() + - ext4: avoid crash when inline data creation follows DIO write + - ext4: fix null-ptr-deref in ext4_write_info + - ext4: make ext4_lazyinit_thread freezable + - ext4: fix check for block being out of directory size + - ext4: don't increase iversion counter for ea_inodes + - ext4: ext4_read_bh_lock() should submit IO if the buffer isn't uptodate + - ext4: place buffer head allocation before handle start + - ext4: fix dir corruption when ext4_dx_add_entry() fails + - ext4: fix miss release buffer head in ext4_fc_write_inode + - ext4: fix potential memory leak in ext4_fc_record_modified_inode() + - ext4: fix potential memory leak in ext4_fc_record_regions() + - ext4: update 'state->fc_regions_size' after successful memory allocation + - livepatch: fix race between fork and KLP transition + - ftrace: Properly unset FTRACE_HASH_FL_MOD + - ring-buffer: Allow splice to read previous partially read pages + - ring-buffer: Have the shortest_full queue be the shortest not longest + - ring-buffer: Check pending waiters when doing wake ups as well + - ring-buffer: Add ring_buffer_wake_waiters() + - ring-buffer: Fix race between reset page and reading page + - tracing: Disable interrupt or preemption before acquiring arch_spinlock_t + - tracing: Wake up ring buffer waiters on closing of the file + - tracing: Wake up waiters when tracing is disabled + - tracing: Add ioctl() to force ring buffer waiters to wake up + - tracing: Move duplicate code of trace_kprobe/eprobe.c into header + - tracing: Add "(fault)" name injection to kernel probes + - tracing: Fix reading strings from synthetic events + - thunderbolt: Explicitly enable lane adapter hotplug events at startup + - efi: libstub: drop pointless get_memory_map() call + - media: cedrus: Set the platform driver data earlier + - media: cedrus: Fix endless loop in cedrus_h265_skip_bits() + - blk-wbt: call rq_qos_add() after wb_normal is initialized + - KVM: x86/emulator: Fix handing of POP SS to correctly set interruptibility + - KVM: nVMX: Unconditionally purge queued/injected events on nested "exit" + - KVM: nVMX: Don't propagate vmcs12's PERF_GLOBAL_CTRL settings to vmcs02 + - KVM: VMX: Drop bits 31:16 when shoving exception error code into VMCS + - staging: greybus: audio_helper: remove unused and wrong debugfs usage + - drm/nouveau/kms/nv140-: Disable interlacing + - drm/nouveau: fix a use-after-free in nouveau_gem_prime_import_sg_table() + - drm/i915: Fix watermark calculations for gen12+ RC CCS modifier + - drm/i915: Fix watermark calculations for gen12+ MC CCS modifier + - drm/i915: Fix watermark calculations for gen12+ CCS+CC modifier + - drm/amd/display: Fix vblank refcount in vrr transition + - smb3: must initialize two ACL struct fields to zero + - selinux: use "grep -E" instead of "egrep" + - ima: fix blocking of security.ima xattrs of unsupported algorithms + - userfaultfd: open userfaultfds with O_RDONLY + - ntfs3: rework xattr handlers and switch to POSIX ACL VFS helpers + - thermal: cpufreq_cooling: Check the policy first in + cpufreq_cooling_register() + - sh: machvec: Use char[] for section boundaries + - MIPS: SGI-IP27: Free some unused memory + - MIPS: SGI-IP27: Fix platform-device leak in bridge_platform_create() + - ARM: 9244/1: dump: Fix wrong pg_level in walk_pmd() + - ARM: 9247/1: mm: set readonly for MT_MEMORY_RO with ARM_LPAE + - objtool: Preserve special st_shndx indexes in elf_update_symbol + - nfsd: Fix a memory leak in an error handling path + - NFSD: Fix handling of oversized NFSv4 COMPOUND requests + - wifi: rtlwifi: 8192de: correct checking of IQK reload + - wifi: ath10k: add peer map clean up for peer delete in ath10k_sta_state() + - leds: lm3601x: Don't use mutex after it was destroyed + - bpf: Fix reference state management for synchronous callbacks + - wifi: mac80211: allow bw change during channel switch in mesh + - bpftool: Fix a wrong type cast in btf_dumper_int + - spi: mt7621: Fix an error message in mt7621_spi_probe() + - x86/resctrl: Fix to restore to original value when re-enabling hardware + prefetch register + - xsk: Fix backpressure mechanism on Tx + - bpf: Disable preemption when increasing per-cpu map_locked + - bpf: Propagate error from htab_lock_bucket() to userspace + - bpf: Use this_cpu_{inc|dec|inc_return} for bpf_task_storage_busy + - Bluetooth: btusb: mediatek: fix WMT failure during runtime suspend + - wifi: rtl8xxxu: tighten bounds checking in rtl8xxxu_read_efuse() + - wifi: rtw88: add missing destroy_workqueue() on error path in + rtw_core_init() + - selftests/xsk: Avoid use-after-free on ctx + - spi: qup: add missing clk_disable_unprepare on error in spi_qup_resume() + - spi: qup: add missing clk_disable_unprepare on error in + spi_qup_pm_resume_runtime() + - wifi: rtl8xxxu: Fix skb misuse in TX queue selection + - spi: meson-spicc: do not rely on busy flag in pow2 clk ops + - bpf: btf: fix truncated last_member_type_id in btf_struct_resolve + - wifi: rtl8xxxu: gen2: Fix mistake in path B IQ calibration + - wifi: rtl8xxxu: Remove copy-paste leftover in gen2_update_rate_mask + - wifi: mt76: sdio: fix transmitting packet hangs + - wifi: mt76: mt7615: add mt7615_mutex_acquire/release in + mt7615_sta_set_decap_offload + - wifi: mt76: mt7915: do not check state before configuring implicit beamform + - Bluetooth: RFCOMM: Fix possible deadlock on socket shutdown/release + - net: fs_enet: Fix wrong check in do_pd_setup + - bpf: Ensure correct locking around vulnerable function find_vpid() + - Bluetooth: hci_{ldisc,serdev}: check percpu_init_rwsem() failure + - netfilter: conntrack: fix the gc rescheduling delay + - netfilter: conntrack: revisit the gc initial rescheduling bias + - wifi: ath11k: fix number of VHT beamformee spatial streams + - x86/microcode/AMD: Track patch allocation size explicitly + - x86/cpu: Include the header of init_ia32_feat_ctl()'s prototype + - spi: dw: Fix PM disable depth imbalance in dw_spi_bt1_probe + - spi/omap100k:Fix PM disable depth imbalance in omap1_spi100k_probe + - skmsg: Schedule psock work if the cached skb exists on the psock + - i2c: mlxbf: support lock mechanism + - Bluetooth: hci_core: Fix not handling link timeouts propertly + - xfrm: Reinject transport-mode packets through workqueue + - netfilter: nft_fib: Fix for rpath check with VRF devices + - spi: s3c64xx: Fix large transfers with DMA + - wifi: rtl8xxxu: Fix AIFS written to REG_EDCA_*_PARAM + - vhost/vsock: Use kvmalloc/kvfree for larger packets. + - eth: alx: take rtnl_lock on resume + - sctp: handle the error returned from sctp_auth_asoc_init_active_key + - tcp: fix tcp_cwnd_validate() to not forget is_cwnd_limited + - spi: Ensure that sg_table won't be used after being freed + - hwmon: (pmbus/mp2888) Fix sensors readouts for MPS Multi-phase mp2888 + controller + - net: rds: don't hold sock lock when cancelling work from + rds_tcp_reset_callbacks() + - bnx2x: fix potential memory leak in bnx2x_tpa_stop() + - net: wwan: iosm: Call mutex_init before locking it + - net/ieee802154: reject zero-sized raw_sendmsg() + - once: add DO_ONCE_SLOW() for sleepable contexts + - net: mvpp2: fix mvpp2 debugfs leak + - drm: bridge: adv7511: fix CEC power down control register offset + - drm: bridge: adv7511: unregister cec i2c device after cec adapter + - drm/bridge: Avoid uninitialized variable warning + - drm/mipi-dsi: Detach devices when removing the host + - drm/virtio: Correct drm_gem_shmem_get_sg_table() error handling + - drm/bridge: parade-ps8640: Fix regulator supply order + - drm/dp_mst: fix drm_dp_dpcd_read return value checks + - drm:pl111: Add of_node_put() when breaking out of + for_each_available_child_of_node() + - ASoC: mt6359: fix tests for platform_get_irq() failure + - platform/chrome: fix double-free in chromeos_laptop_prepare() + - platform/chrome: fix memory corruption in ioctl + - ASoC: tas2764: Allow mono streams + - ASoC: tas2764: Drop conflicting set_bias_level power setting + - ASoC: tas2764: Fix mute/unmute + - platform/x86: msi-laptop: Fix old-ec check for backlight registering + - platform/x86: msi-laptop: Fix resource cleanup + - platform/chrome: cros_ec_typec: Correct alt mode index + - drm/amdgpu: add missing pci_disable_device() in + amdgpu_pmops_runtime_resume() + - drm/bridge: megachips: Fix a null pointer dereference bug + - ASoC: rsnd: Add check for rsnd_mod_power_on + - ALSA: hda: beep: Simplify keep-power-at-enable behavior + - drm/bochs: fix blanking + - drm/omap: dss: Fix refcount leak bugs + - drm/amdgpu: Fix memory leak in hpd_rx_irq_create_workqueue() + - mmc: au1xmmc: Fix an error handling path in au1xmmc_probe() + - ASoC: eureka-tlv320: Hold reference returned from of_find_xxx API + - drm/msm/dpu: index dpu_kms->hw_vbif using vbif_idx + - drm/msm/dp: correct 1.62G link rate at dp_catalog_ctrl_config_msa() + - drm/vmwgfx: Fix memory leak in vmw_mksstat_add_ioctl() + - ASoC: codecs: tx-macro: fix kcontrol put + - ASoC: da7219: Fix an error handling path in da7219_register_dai_clks() + - ALSA: dmaengine: increment buffer pointer atomically + - mmc: wmt-sdmmc: Fix an error handling path in wmt_mci_probe() + - ASoC: wm8997: Fix PM disable depth imbalance in wm8997_probe + - ASoC: wm5110: Fix PM disable depth imbalance in wm5110_probe + - ASoC: wm5102: Fix PM disable depth imbalance in wm5102_probe + - ASoC: mt6660: Fix PM disable depth imbalance in mt6660_i2c_probe + - ALSA: hda/hdmi: Don't skip notification handling during PM operation + - memory: pl353-smc: Fix refcount leak bug in pl353_smc_probe() + - memory: of: Fix refcount leak bug in of_get_ddr_timings() + - memory: of: Fix refcount leak bug in of_lpddr3_get_ddr_timings() + - locks: fix TOCTOU race when granting write lease + - soc: qcom: smsm: Fix refcount leak bugs in qcom_smsm_probe() + - soc: qcom: smem_state: Add refcounting for the 'state->of_node' + - ARM: dts: imx6qdl-kontron-samx6i: hook up DDC i2c bus + - ARM: dts: turris-omnia: Fix mpp26 pin name and comment + - ARM: dts: kirkwood: lsxl: fix serial line + - ARM: dts: kirkwood: lsxl: remove first ethernet port + - ia64: export memory_add_physaddr_to_nid to fix cxl build error + - soc/tegra: fuse: Drop Kconfig dependency on TEGRA20_APB_DMA + - arm64: dts: ti: k3-j7200: fix main pinmux range + - ARM: dts: exynos: correct s5k6a3 reset polarity on Midas family + - ARM: Drop CMDLINE_* dependency on ATAGS + - ext4: don't run ext4lazyinit for read-only filesystems + - arm64: ftrace: fix module PLTs with mcount + - ARM: dts: exynos: fix polarity of VBUS GPIO of Origen + - iio: adc: at91-sama5d2_adc: fix AT91_SAMA5D2_MR_TRACKTIM_MAX + - iio: adc: at91-sama5d2_adc: check return status for pressure and touch + - iio: adc: at91-sama5d2_adc: lock around oversampling and sample freq + - iio: adc: at91-sama5d2_adc: disable/prepare buffer on suspend/resume + - iio: inkern: only release the device node when done with it + - iio: inkern: fix return value in devm_of_iio_channel_get_by_name() + - iio: ABI: Fix wrong format of differential capacitance channel ABI. + - iio: magnetometer: yas530: Change data type of hard_offsets to signed + - RDMA/mlx5: Don't compare mkey tags in DEVX indirect mkey + - usb: common: debug: Check non-standard control requests + - clk: meson: Hold reference returned by of_get_parent() + - clk: oxnas: Hold reference returned by of_get_parent() + - clk: qoriq: Hold reference returned by of_get_parent() + - clk: berlin: Add of_node_put() for of_get_parent() + - clk: sprd: Hold reference returned by of_get_parent() + - clk: tegra: Fix refcount leak in tegra210_clock_init + - clk: tegra: Fix refcount leak in tegra114_clock_init + - clk: tegra20: Fix refcount leak in tegra20_clock_init + - HSI: omap_ssi: Fix refcount leak in ssi_probe + - HSI: omap_ssi_port: Fix dma_map_sg error check + - media: exynos4-is: fimc-is: Add of_node_put() when breaking out of loop + - tty: xilinx_uartps: Fix the ignore_status + - media: meson: vdec: add missing clk_disable_unprepare on error in + vdec_hevc_start() + - media: uvcvideo: Fix memory leak in uvc_gpio_parse + - media: uvcvideo: Use entity get_cur in uvc_ctrl_set + - media: xilinx: vipp: Fix refcount leak in xvip_graph_dma_init + - RDMA/rxe: Fix "kernel NULL pointer dereference" error + - RDMA/rxe: Fix the error caused by qp->sk + - misc: ocxl: fix possible refcount leak in afu_ioctl() + - fpga: prevent integer overflow in dfl_feature_ioctl_set_irq() + - dmaengine: hisilicon: Disable channels when unregister hisi_dma + - dmaengine: hisilicon: Fix CQ head update + - dmaengine: hisilicon: Add multi-thread support for a DMA channel + - dyndbg: fix static_branch manipulation + - dyndbg: fix module.dyndbg handling + - dyndbg: let query-modname override actual module name + - dyndbg: drop EXPORTed dynamic_debug_exec_queries + - clk: qcom: sm6115: Select QCOM_GDSC + - mtd: devices: docg3: check the return value of devm_ioremap() in the probe + - phy: amlogic: phy-meson-axg-mipi-pcie-analog: Hold reference returned by + of_get_parent() + - phy: phy-mtk-tphy: fix the phy type setting issue + - mtd: rawnand: intel: Read the chip-select line from the correct OF node + - mtd: rawnand: intel: Remove undocumented compatible string + - mtd: rawnand: fsl_elbc: Fix none ECC mode + - RDMA/irdma: Align AE id codes to correct flush code and event + - RDMA/srp: Fix srp_abort() + - RDMA/siw: Always consume all skbuf data in sk_data_ready() upcall. + - RDMA/siw: Fix QP destroy to wait for all references dropped. + - ata: fix ata_id_sense_reporting_enabled() and ata_id_has_sense_reporting() + - ata: fix ata_id_has_devslp() + - ata: fix ata_id_has_ncq_autosense() + - ata: fix ata_id_has_dipm() + - mtd: rawnand: meson: fix bit map use in meson_nfc_ecc_correct() + - md/raid5: Ensure stripe_fill happens on non-read IO with journal + - md/raid5: Remove unnecessary bio_put() in raid5_read_one_chunk() + - RDMA/cm: Use SLID in the work completion as the DLID in responder side + - IB: Set IOVA/LENGTH on IB_MR in core/uverbs layers + - xhci: Don't show warning for reinit on known broken suspend + - usb: gadget: function: fix dangling pnp_string in f_printer.c + - drivers: serial: jsm: fix some leaks in probe + - serial: 8250: Toggle IER bits on only after irq has been set up + - tty: serial: fsl_lpuart: disable dma rx/tx use flags in lpuart_dma_shutdown + - phy: qualcomm: call clk_disable_unprepare in the error handling + - staging: vt6655: fix some erroneous memory clean-up loops + - slimbus: qcom-ngd-ctrl: allow compile testing without QCOM_RPROC_COMMON + - firmware: google: Test spinlock on panic path to avoid lockups + - serial: 8250: Fix restoring termios speed after suspend + - scsi: libsas: Fix use-after-free bug in smp_execute_task_sg() + - scsi: iscsi: Rename iscsi_conn_queue_work() + - scsi: iscsi: Add recv workqueue helpers + - scsi: iscsi: Run recv path from workqueue + - scsi: iscsi: iscsi_tcp: Fix null-ptr-deref while calling getpeername() + - clk: qcom: apss-ipq6018: mark apcs_alias0_core_clk as critical + - clk: qcom: gcc-sm6115: Override default Alpha PLL regs + - RDMA/rxe: Fix resize_finish() in rxe_queue.c + - fsi: core: Check error number after calling ida_simple_get + - mfd: intel_soc_pmic: Fix an error handling path in + intel_soc_pmic_i2c_probe() + - mfd: fsl-imx25: Fix an error handling path in mx25_tsadc_setup_irq() + - mfd: lp8788: Fix an error handling path in lp8788_probe() + - mfd: lp8788: Fix an error handling path in lp8788_irq_init() and + lp8788_irq_init() + - mfd: fsl-imx25: Fix check for platform_get_irq() errors + - mfd: sm501: Add check for platform_driver_register() + - clk: mediatek: mt8183: mfgcfg: Propagate rate changes to parent + - dmaengine: ioat: stop mod_timer from resurrecting deleted timer in + __cleanup() + - usb: mtu3: fix failed runtime suspend in host only mode + - spmi: pmic-arb: correct duplicate APID to PPID mapping logic + - clk: vc5: Fix 5P49V6901 outputs disabling when enabling FOD + - clk: baikal-t1: Fix invalid xGMAC PTP clock divider + - clk: baikal-t1: Add shared xGMAC ref/ptp clocks internal parent + - clk: baikal-t1: Add SATA internal ref clock buffer + - clk: bcm2835: fix bcm2835_clock_rate_from_divisor declaration + - clk: imx: scu: fix memleak on platform_device_add() fails + - clk: ti: dra7-atl: Fix reference leak in of_dra7_atl_clk_probe + - clk: ast2600: BCLK comes from EPLL + - mailbox: mpfs: fix handling of the reg property + - mailbox: mpfs: account for mbox offsets while sending + - mailbox: bcm-ferxrm-mailbox: Fix error check for dma_map_sg + - powerpc/configs: Properly enable PAPR_SCM in pseries_defconfig + - powerpc/math_emu/efp: Include module.h + - powerpc/sysdev/fsl_msi: Add missing of_node_put() + - powerpc/pci_dn: Add missing of_node_put() + - powerpc/powernv: add missing of_node_put() in opal_export_attrs() + - powerpc: Fix fallocate and fadvise64_64 compat parameter combination + - x86/hyperv: Fix 'struct hv_enlightened_vmcs' definition + - powerpc/64s: Fix GENERIC_CPU build flags for PPC970 / G5 + - powerpc: Fix SPE Power ISA properties for e500v1 platforms + - powerpc/kprobes: Fix null pointer reference in arch_prepare_kprobe() + - powerpc/pseries/vas: Pass hw_cpu_id to node associativity HCALL + - crypto: sahara - don't sleep when in softirq + - crypto: hisilicon/zip - fix mismatch in get/set sgl_sge_nr + - hwrng: arm-smccc-trng - fix NO_ENTROPY handling + - cgroup: Honor caller's cgroup NS when resolving path + - hwrng: imx-rngc - Moving IRQ handler registering after + imx_rngc_irq_mask_clear() + - crypto: qat - fix default value of WDT timer + - crypto: hisilicon/qm - fix missing put dfx access + - cgroup/cpuset: Enable update_tasks_cpumask() on top_cpuset + - iommu/omap: Fix buffer overflow in debugfs + - crypto: akcipher - default implementation for setting a private key + - crypto: ccp - Release dma channels before dmaengine unrgister + - crypto: inside-secure - Change swab to swab32 + - crypto: qat - fix DMA transfer direction + - cifs: return correct error in ->calc_signature() + - iommu/iova: Fix module config properly + - tracing: kprobe: Fix kprobe event gen test module on exit + - tracing: kprobe: Make gen test module work in arm and riscv + - tracing/osnoise: Fix possible recursive locking in stop_per_cpu_kthreads + - kbuild: remove the target in signal traps when interrupted + - kbuild: rpm-pkg: fix breakage when V=1 is used + - crypto: marvell/octeontx - prevent integer overflows + - crypto: cavium - prevent integer overflow loading firmware + - thermal/drivers/qcom/tsens-v0_1: Fix MSM8939 fourth sensor hw_id + - ACPI: APEI: do not add task_work to kernel thread to avoid memory leak + - f2fs: fix race condition on setting FI_NO_EXTENT flag + - f2fs: fix to account FS_CP_DATA_IO correctly + - selftest: tpm2: Add Client.__del__() to close /dev/tpm* handle + - fs: dlm: fix race in lowcomms + - rcu: Avoid triggering strict-GP irq-work when RCU is idle + - rcu: Back off upon fill_page_cache_func() allocation failure + - rcu-tasks: Convert RCU_LOCKDEP_WARN() to WARN_ONCE() + - ACPI: video: Add Toshiba Satellite/Portege Z830 quirk + - ACPI: tables: FPDT: Don't call acpi_os_map_memory() on invalid phys address + - cpufreq: intel_pstate: Add Tigerlake support in no-HWP mode + - MIPS: BCM47XX: Cast memcmp() of function to (void *) + - powercap: intel_rapl: fix UBSAN shift-out-of-bounds issue + - thermal: intel_powerclamp: Use get_cpu() instead of smp_processor_id() to + avoid crash + - ARM: decompressor: Include .data.rel.ro.local + - ACPI: x86: Add a quirk for Dell Inspiron 14 2-in-1 for StorageD3Enable + - x86/entry: Work around Clang __bdos() bug + - NFSD: Return nfserr_serverfault if splice_ok but buf->pages have data + - NFSD: fix use-after-free on source server when doing inter-server copy + - wifi: brcmfmac: fix invalid address access when enabling SCAN log level + - bpftool: Clear errno after libcap's checks + - ice: set tx_tstamps when creating new Tx rings via ethtool + - net: ethernet: ti: davinci_mdio: Add workaround for errata i2329 + - openvswitch: Fix double reporting of drops in dropwatch + - openvswitch: Fix overreporting of drops in dropwatch + - tcp: annotate data-race around tcp_md5sig_pool_populated + - x86/mce: Retrieve poison range from hardware + - wifi: ath9k: avoid uninit memory read in ath9k_htc_rx_msg() + - thunderbolt: Add back Intel Falcon Ridge end-to-end flow control workaround + - xfrm: Update ipcomp_scratches with NULL when freed + - iavf: Fix race between iavf_close and iavf_reset_task + - wifi: brcmfmac: fix use-after-free bug in brcmf_netdev_start_xmit() + - Bluetooth: btintel: Mark Intel controller to support LE_STATES quirk + - regulator: core: Prevent integer underflow + - wifi: mt76: mt7921: reset msta->airtime_ac while clearing up hw value + - Bluetooth: L2CAP: initialize delayed works at l2cap_chan_create() + - Bluetooth: hci_sysfs: Fix attempting to call device_add multiple times + - can: bcm: check the result of can_send() in bcm_can_tx() + - wifi: rt2x00: don't run Rt5592 IQ calibration on MT7620 + - wifi: rt2x00: set correct TX_SW_CFG1 MAC register for MT7620 + - wifi: rt2x00: set VGC gain for both chains of MT7620 + - wifi: rt2x00: set SoC wmac clock register + - wifi: rt2x00: correctly set BBP register 86 for MT7620 + - hwmon: (sht4x) do not overflow clamping operation on 32-bit platforms + - net: If sock is dead don't access sock's sk_wq in sk_stream_wait_memory + - Bluetooth: L2CAP: Fix user-after-free + - drm/nouveau/nouveau_bo: fix potential memory leak in nouveau_bo_alloc() + - drm: Use size_t type for len variable in drm_copy_field() + - drm: Prevent drm_copy_field() to attempt copying a NULL pointer + - drm/komeda: Fix handling of atomic commits in the atomic_commit_tail hook + - gpu: lontium-lt9611: Fix NULL pointer dereference in lt9611_connector_init() + - drm/amd/display: fix overflow on MIN_I64 definition + - udmabuf: Set ubuf->sg = NULL if the creation of sg table fails + - drm: bridge: dw_hdmi: only trigger hotplug event on link change + - ALSA: usb-audio: Register card at the last interface + - drm/vc4: vec: Fix timings for VEC modes + - drm: panel-orientation-quirks: Add quirk for Anbernic Win600 + - platform/chrome: cros_ec: Notify the PM of wake events during resume + - platform/x86: msi-laptop: Change DMI match / alias strings to fix module + autoloading + - ASoC: SOF: pci: Change DMI match info to support all Chrome platforms + - drm/amdgpu: fix initial connector audio value + - drm/meson: reorder driver deinit sequence to fix use-after-free bug + - drm/meson: explicitly remove aggregate driver at module unload time + - mmc: sdhci-msm: add compatible string check for sdm670 + - drm/dp: Don't rewrite link config when setting phy test pattern + - drm/amd/display: Remove interface for periodic interrupt 1 + - ARM: dts: imx7d-sdb: config the max pressure for tsc2046 + - ARM: dts: imx6q: add missing properties for sram + - ARM: dts: imx6dl: add missing properties for sram + - ARM: dts: imx6qp: add missing properties for sram + - ARM: dts: imx6sl: add missing properties for sram + - ARM: dts: imx6sll: add missing properties for sram + - ARM: dts: imx6sx: add missing properties for sram + - kselftest/arm64: Fix validatation termination record after EXTRA_CONTEXT + - arm64: dts: imx8mq-librem5: Add bq25895 as max17055's power supply + - btrfs: dump extra info if one free space cache has more bitmaps than it + should + - btrfs: scrub: try to fix super block errors + - btrfs: don't print information about space cache or tree every remount + - ARM: 9242/1: kasan: Only map modules if CONFIG_KASAN_VMALLOC=n + - clk: zynqmp: Fix stack-out-of-bounds in strncpy` + - media: cx88: Fix a null-ptr-deref bug in buffer_prepare() + - media: platform: fix some double free in meson-ge2d and mtk-jpeg and s5p-mfc + - clk: zynqmp: pll: rectify rate rounding in zynqmp_pll_round_rate + - usb: host: xhci-plat: suspend and resume clocks + - usb: host: xhci-plat: suspend/resume clks for brcm + - dmaengine: ti: k3-udma: Reset UDMA_CHAN_RT byte counters to prevent overflow + - scsi: 3w-9xxx: Avoid disabling device if failing to enable it + - nbd: Fix hung when signal interrupts nbd_start_device_ioctl() + - iommu/arm-smmu-v3: Make default domain type of HiSilicon PTT device to + identity + - power: supply: adp5061: fix out-of-bounds read in adp5061_get_chg_type() + - staging: vt6655: fix potential memory leak + - blk-throttle: prevent overflow while calculating wait time + - ata: libahci_platform: Sanity check the DT child nodes number + - bcache: fix set_at_max_writeback_rate() for multiple attached devices + - soundwire: cadence: Don't overwrite msg->buf during write commands + - soundwire: intel: fix error handling on dai registration issues + - HID: roccat: Fix use-after-free in roccat_read() + - eventfd: guard wake_up in eventfd fs calls as well + - md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d + - usb: host: xhci: Fix potential memory leak in xhci_alloc_stream_info() + - usb: musb: Fix musb_gadget.c rxstate overflow bug + - arm64: dts: imx8mp: Add snps,gfladj-refclk-lpm-sel quirk to USB nodes + - usb: dwc3: core: Enable GUCTL1 bit 10 for fixing termination error after + resume bug + - Revert "usb: storage: Add quirk for Samsung Fit flash" + - staging: rtl8723bs: fix potential memory leak in rtw_init_drv_sw() + - staging: rtl8723bs: fix a potential memory leak in rtw_init_cmd_priv() + - scsi: tracing: Fix compile error in trace_array calls when TRACING is + disabled + - ext2: Use kvmalloc() for group descriptor array + - nvme: copy firmware_rev on each init + - nvmet-tcp: add bounds check on Transfer Tag + - usb: idmouse: fix an uninit-value in idmouse_open + - clk: bcm2835: Make peripheral PLLC critical + - clk: bcm2835: Round UART input clock up + - perf intel-pt: Fix segfault in intel_pt_print_info() with uClibc + - io_uring: correct pinned_vm accounting + - io_uring/rw: fix short rw error handling + - io_uring/rw: fix error'ed retry return values + - io_uring/rw: fix unexpected link breakage + - mm: hugetlb: fix UAF in hugetlb_handle_userfault + - net: ieee802154: return -EINVAL for unknown addr type + - ALSA: usb-audio: Fix last interface check for registration + - blk-wbt: fix that 'rwb->wc' is always set to 1 in wbt_init() + - [Config] updateconfigs for MDIO_BITBANG + - net: ethernet: ti: davinci_mdio: fix build for mdio bitbang uses + - Revert "net/ieee802154: reject zero-sized raw_sendmsg()" + - net/ieee802154: don't warn zero-sized raw_sendmsg() + - drm/amd/display: Fix build breakage with CONFIG_DEBUG_FS=n + - Kconfig.debug: simplify the dependency of DEBUG_INFO_DWARF4/5 + - Kconfig.debug: add toolchain checks for DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT + - lib/Kconfig.debug: Add check for non-constant .{s,u}leb128 support to DWARF5 + - [Config] updateconfigs for AS_HAS_NON_CONST_LEB128 + - ext4: continue to expand file system when the target size doesn't reach + - thermal: intel_powerclamp: Use first online CPU as control_cpu + - gcov: support GCC 12.1 and newer compilers + - io-wq: Fix memory leak in worker creation + - Linux 5.15.75 + * [SRU] Ubuntu 22.04 - NVMe TCP - Host fails to reconnect to target after + link down/link up sequence (LP: #1989990) + - nvme-fabrics: parse nvme connect Linux error codes + - nvme-tcp: handle number of queue changes + - nvme-rdma: handle number of queue changes + - nvmet: expose max queues to configfs + + -- Tim Gardner Mon, 16 Jan 2023 15:00:23 -0700 + +linux-azure (5.15.0-1031.38) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1031.38 -proposed tracker (LP: #2001632) + + [ Ubuntu: 5.15.0-58.64 ] + + * jammy/linux: 5.15.0-58.64 -proposed tracker (LP: #2001670) + * CVE-2022-3643 + - xen/netback: Ensure protocol headers don't fall in the non-linear area + * CVE-2022-4378 + - proc: proc_skip_spaces() shouldn't think it is working on C strings + - proc: avoid integer type confusion in get_proc_long + * CVE-2022-45934 + - Bluetooth: L2CAP: Fix u8 overflow + * CVE-2022-42896 + - Bluetooth: L2CAP: Fix accepting connection request for invalid SPSM + - Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm + + -- Thadeu Lima de Souza Cascardo Mon, 09 Jan 2023 09:34:22 -0300 + +linux-azure (5.15.0-1030.37) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1030.37 -proposed tracker (LP: #1999425) + + * Azure: Jammy fio test causes panic (LP: #1996806) + - scsi: storvsc: Fix unsigned comparison to zero + + * Azure: Jammy fio test hangs, swiotlb buffers exhausted (LP: #1998838) + - SAUCE: scsi: storvsc: Fix swiotlb bounce buffer leak in confidential VM + + * Azure: hv_netvsc: Fix race between VF offering and VF association message + from host (LP: #1994974) + - hv_netvsc: Fix race between VF offering and VF association message from host + + * [Azure][Arm64] Unable to detect all VF nics / Failing provisioning + (LP: #1996117) + - PCI: hv: Fix the definition of vector in hv_compose_msi_msg() + + * Azure: MANA New Feature MANA XDP_Redirect Action (LP: #1998351) + - net: mana: Add support of XDP_REDIRECT action + + [ Ubuntu: 5.15.0-57.63 ] + + * jammy/linux: 5.15.0-57.63 -proposed tracker (LP: #1997737) + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - debian/dkms-versions -- update from kernel-versions (main/2022.11.14) + * Expose built-in trusted and revoked certificates (LP: #1996892) + - [Packaging] Expose built-in trusted and revoked certificates + * TEE Support for CCP driver (LP: #1991608) + - crypto: ccp: Add support for TEE for PCI ID 0x14CA + * alsa: soc: the kernel print UBSAN calltrace on the machine with cs35l41 + codec (LP: #1996121) + - ASoC: cs35l41: Add one more variable in the debug log + - ASoC: cs35l41: Fix an out-of-bounds access in otp_packed_element_t + * Fix ath11k deadlock on WCN6855 (LP: #1995041) + - wifi: ath11k: avoid deadlock during regulatory update in + ath11k_regd_update() + * [UBUNTU 20.04] boot: Add s390x secure boot trailer (LP: #1996071) + - s390/boot: add secure boot trailer + * Fix rfkill causing soft blocked wifi (LP: #1996198) + - platform/x86: hp_wmi: Fix rfkill causing soft blocked wifi + * Fix Thunderbolt device hotplug fail when connect via thunderbolt dock + (LP: #1991366) + - PCI: Fix used_buses calculation in pci_scan_child_bus_extend() + - PCI: Pass available buses even if the bridge is already configured + - PCI: Move pci_assign_unassigned_root_bus_resources() + - PCI: Distribute available resources for root buses, too + - PCI: Fix whitespace and indentation + - PCI: Fix typo in pci_scan_child_bus_extend() + * md: Replace snprintf with scnprintf (LP: #1993315) + - md: Replace snprintf with scnprintf + * input/keyboard: the keyboard on some Asus laptops can't work (LP: #1992266) + - ACPI: resource: Skip IRQ override on Asus Vivobook K3402ZA/K3502ZA + - ACPI: resource: Add ASUS model S5402ZA to quirks + * Fix Turbostat is not working for fam: 6 model: 191: stepping: 2 CPU + (LP: #1991365) + - tools/power turbostat: Add support for RPL-S + * pcieport 0000:00:1b.0: PCIe Bus Error: severity=Uncorrected (Non-Fatal), + type=Transaction Layer, (Requester ID) (LP: #1988797) + - PCI/PTM: Cache PTM Capability offset + - PCI/PTM: Add pci_upstream_ptm() helper + - PCI/PTM: Separate configuration and enable + - PCI/PTM: Add pci_suspend_ptm() and pci_resume_ptm() + - PCI/PTM: Move pci_ptm_info() body into its only caller + - PCI/PTM: Preserve RsvdP bits in PTM Control register + - PCI/PTM: Reorder functions in logical order + - PCI/PTM: Consolidate PTM interface declarations + - PCI/PM: Always disable PTM for all devices during suspend + - PCI/PM: Simplify pci_pm_suspend_noirq() + * Fix RPL-S support on powercap/intel_rapl (LP: #1990161) + - x86/cpu: Drop spurious underscore from RAPTOR_LAKE #define + - x86/cpu: Add new Alderlake and Raptorlake CPU model numbers + - x86/cpu: Add new Raptor Lake CPU model number + - powercap: intel_rapl: add support for RaptorLake + - powercap: intel_rapl: Add support for RAPTORLAKE_P + - powercap: intel_rapl: Add support for RAPTORLAKE_S + * AMD Yellow Carp system hang on HDMI plug in/out over HP hook2 docking + (LP: #1991974) + - drm/amd/display: Fix for link encoder access for MST. + - drm/amd/display: Fix MST link encoder availability check. + - drm/amd/display: FEC configuration for dpia links + - drm/amd/display: FEC configuration for dpia links in MST mode + - drm/amd/display: Add work around for tunneled MST. + * Jammy update: v5.15.74 upstream stable release (LP: #1995638) + - nilfs2: fix use-after-free bug of struct nilfs_root + - nilfs2: fix leak of nilfs_root in case of writer thread creation failure + - nilfs2: replace WARN_ONs by nilfs_error for checkpoint acquisition failure + - ceph: don't truncate file in atomic_open + - random: restore O_NONBLOCK support + - random: clamp credited irq bits to maximum mixed + - ALSA: hda: Fix position reporting on Poulsbo + - efi: Correct Macmini DMI match in uefi cert quirk + - USB: serial: qcserial: add new usb-id for Dell branded EM7455 + - Revert "powerpc/rtas: Implement reentrant rtas call" + - Revert "crypto: qat - reduce size of mapped region" + - random: avoid reading two cache lines on irq randomness + - random: use expired timer rather than wq for mixing fast pool + - Input: xpad - add supported devices as contributed on github + - Input: xpad - fix wireless 360 controller breaking after suspend + - misc: pci_endpoint_test: Aggregate params checking for xfer + - misc: pci_endpoint_test: Fix pci_endpoint_test_{copy,write,read}() panic + - Linux 5.15.74 + * Jammy update: v5.15.73 upstream stable release (LP: #1995637) + - Makefile.extrawarn: Move -Wcast-function-type-strict to W=1 + - docs: update mediator information in CoC docs + - xsk: Inherit need_wakeup flag for shared sockets + - mm: gup: fix the fast GUP race against THP collapse + - powerpc/64s/radix: don't need to broadcast IPI for radix pmd collapse flush + - firmware: arm_scmi: Improve checks in the info_get operations + - firmware: arm_scmi: Harden accesses to the sensor domains + - firmware: arm_scmi: Add SCMI PM driver remove routine + - dmaengine: xilinx_dma: Fix devm_platform_ioremap_resource error handling + - dmaengine: xilinx_dma: cleanup for fetching xlnx,num-fstores property + - dmaengine: xilinx_dma: Report error in case of dma_set_mask_and_coherent API + failure + - ARM: dts: fix Moxa SDIO 'compatible', remove 'sdhci' misnomer + - scsi: qedf: Fix a UAF bug in __qedf_probe() + - net/ieee802154: fix uninit value bug in dgram_sendmsg + - net: marvell: prestera: add support for for Aldrin2 + - ALSA: hda/hdmi: Fix the converter reuse for the silent stream + - um: Cleanup syscall_handler_t cast in syscalls_32.h + - um: Cleanup compiler warning in arch/x86/um/tls_32.c + - arch: um: Mark the stack non-executable to fix a binutils warning + - net: atlantic: fix potential memory leak in aq_ndev_close() + - drm/amd/display: Fix double cursor on non-video RGB MPO + - drm/amd/display: Assume an LTTPR is always present on fixed_vs links + - drm/amd/display: update gamut remap if plane has changed + - drm/amd/display: skip audio setup when audio stream is enabled + - mmc: core: Replace with already defined values for readability + - mmc: core: Terminate infinite loop in SD-UHS voltage switch + - perf parse-events: Identify broken modifiers + - mm/huge_memory: minor cleanup for split_huge_pages_all + - mm/huge_memory: use pfn_to_online_page() in split_huge_pages_all() + - wifi: cfg80211: fix MCS divisor value + - net/mlx5: Disable irq when locking lag_lock + - usb: mon: make mmapped memory read only + - USB: serial: ftdi_sio: fix 300 bps rate for SIO + - rpmsg: qcom: glink: replace strncpy() with strscpy_pad() + - Revert "clk: ti: Stop using legacy clkctrl names for omap4 and 5" + - Linux 5.15.73 + * Jammy update: v5.15.72 upstream stable release (LP: #1995517) + - ALSA: hda: Do disconnect jacks at codec unbind + - ALSA: hda: Fix hang at HD-audio codec unbinding due to refcount saturation + - ALSA: hda: Fix Nvidia dp infoframe + - cgroup: reduce dependency on cgroup_mutex + - cgroup: cgroup_get_from_id() must check the looked-up kn is a directory + - uas: add no-uas quirk for Hiksemi usb_disk + - usb-storage: Add Hiksemi USB3-FW to IGNORE_UAS + - uas: ignore UAS for Thinkplus chips + - usb: typec: ucsi: Remove incorrect warning + - thunderbolt: Explicitly reset plug events delay back to USB4 spec value + - net: usb: qmi_wwan: Add new usb-id for Dell branded EM7455 + - Input: snvs_pwrkey - fix SNVS_HPVIDR1 register address + - can: c_can: don't cache TX messages for C_CAN cores + - clk: ingenic-tcu: Properly enable registers before accessing timers + - x86/sgx: Do not fail on incomplete sanitization on premature stop of ksgxd + - ARM: dts: integrator: Tag PCI host with device_type + - ntfs: fix BUG_ON in ntfs_lookup_inode_by_name() + - mm/damon/dbgfs: fix memory leak when using debugfs_lookup() + - net: mt7531: only do PLL once after the reset + - Revert "firmware: arm_scmi: Add clock management to the SCMI power domain" + - drm/i915/gt: Restrict forced preemption to the active context + - drm/amdgpu: Add amdgpu suspend-resume code path under SRIOV + - vduse: prevent uninitialized memory accesses + - libata: add ATA_HORKAGE_NOLPM for Pioneer BDR-207M and BDR-205 + - mmc: moxart: fix 4-bit bus width and remove 8-bit bus width + - mmc: hsq: Fix data stomping during mmc recovery + - mm/page_alloc: fix race condition between build_all_zonelists and page + allocation + - mm: prevent page_frag_alloc() from corrupting the memory + - mm: fix dereferencing possible ERR_PTR + - mm/migrate_device.c: flush TLB while holding PTL + - mm: fix madivse_pageout mishandling on non-LRU page + - mm,hwpoison: check mm when killing accessing process + - media: dvb_vb2: fix possible out of bound access + - media: rkvdec: Disable H.264 error detection + - media: v4l2-compat-ioctl32.c: zero buffer passed to + v4l2_compat_get_array_args() + - swiotlb: max mapping size takes min align mask into account + - ARM: dts: am33xx: Fix MMCHS0 dma properties + - reset: imx7: Fix the iMX8MP PCIe PHY PERST support + - ARM: dts: am5748: keep usb4_tm disabled + - soc: sunxi: sram: Actually claim SRAM regions + - soc: sunxi: sram: Prevent the driver from being unbound + - soc: sunxi_sram: Make use of the helper function + devm_platform_ioremap_resource() + - soc: sunxi: sram: Fix probe function ordering issues + - soc: sunxi: sram: Fix debugfs info for A64 SRAM C + - ASoC: imx-card: Fix refcount issue with of_node_put + - arm64: dts: qcom: sm8350: fix UFS PHY serdes size + - ASoC: tas2770: Reinit regcache on reset + - drm/bridge: lt8912b: add vsync hsync + - drm/bridge: lt8912b: set hdmi or dvi mode + - drm/bridge: lt8912b: fix corrupted image output + - Revert "drm: bridge: analogix/dp: add panel prepare/unprepare in + suspend/resume time" + - Input: melfas_mip4 - fix return value check in mip4_probe() + - gpio: mvebu: Fix check for pwm support on non-A8K platforms + - usbnet: Fix memory leak in usbnet_disconnect() + - net: sched: act_ct: fix possible refcount leak in tcf_ct_init() + - cxgb4: fix missing unlock on ETHOFLD desc collect fail path + - net/mlxbf_gige: Fix an IS_ERR() vs NULL bug in mlxbf_gige_mdio_probe + - nvme: Fix IOC_PR_CLEAR and IOC_PR_RELEASE ioctls for nvme devices + - wifi: mac80211: fix regression with non-QoS drivers + - net: stmmac: power up/down serdes in stmmac_open/release + - net: phy: Don't WARN for PHY_UP state in mdio_bus_phy_resume() + - selftests: Fix the if conditions of in test_extra_filter() + - vdpa/ifcvf: fix the calculation of queuepair + - fs: split off setxattr_copy and do_setxattr function from setxattr + - clk: imx: imx6sx: remove the SET_RATE_PARENT flag for QSPI clocks + - clk: iproc: Do not rely on node name for correct PLL setup + - KVM: x86: Hide IA32_PLATFORM_DCA_CAP[31:0] from the guest + - x86/alternative: Fix race in try_get_desc() + - drm/i915/gem: Really move i915_gem_context.link under ref protection + - Linux 5.15.72 + * Jammy update: v5.15.71 upstream stable release (LP: #1995420) + - drm/amdgpu: Separate vf2pf work item init from virt data exchange + - drm/amdgpu: make sure to init common IP before gmc + - staging: r8188eu: Remove support for devices with 8188FU chipset (0bda:f179) + - staging: r8188eu: Add Rosewill USB-N150 Nano to device tables + - usb: dwc3: gadget: Avoid starting DWC3 gadget during UDC unbind + - usb: dwc3: Issue core soft reset before enabling run/stop + - usb: dwc3: gadget: Prevent repeat pullup() + - usb: dwc3: gadget: Refactor pullup() + - usb: dwc3: gadget: Don't modify GEVNTCOUNT in pullup() + - usb: dwc3: gadget: Avoid duplicate requests to enable Run/Stop + - usb: add quirks for Lenovo OneLink+ Dock + - usb: gadget: udc-xilinx: replace memcpy with memcpy_toio + - Revert "usb: add quirks for Lenovo OneLink+ Dock" + - Revert "usb: gadget: udc-xilinx: replace memcpy with memcpy_toio" + - drivers/base: Fix unsigned comparison to -1 in CPUMAP_FILE_MAX_BYTES + - USB: core: Fix RST error in hub.c + - USB: serial: option: add Quectel BG95 0x0203 composition + - USB: serial: option: add Quectel RM520N + - ALSA: core: Fix double-free at snd_card_new() + - ALSA: hda/tegra: set depop delay for tegra + - ALSA: hda: add Intel 5 Series / 3400 PCI DID + - ALSA: hda/realtek: Add quirk for Huawei WRT-WX9 + - ALSA: hda/realtek: Enable 4-speaker output Dell Precision 5570 laptop + - ALSA: hda/realtek: Re-arrange quirk table entries + - ALSA: hda/realtek: Add pincfg for ASUS G513 HP jack + - ALSA: hda/realtek: Add pincfg for ASUS G533Z HP jack + - ALSA: hda/realtek: Add quirk for ASUS GA503R laptop + - ALSA: hda/realtek: Enable 4-speaker output Dell Precision 5530 laptop + - iommu/vt-d: Check correct capability for sagaw determination + - btrfs: fix hang during unmount when stopping block group reclaim worker + - btrfs: fix hang during unmount when stopping a space reclaim worker + - media: flexcop-usb: fix endpoint type check + - usb: dwc3: core: leave default DMA if the controller does not support 64-bit + DMA + - efi: x86: Wipe setup_data on pure EFI boot + - efi: libstub: check Shim mode using MokSBStateRT + - wifi: mt76: fix reading current per-tid starting sequence number for + aggregation + - gpio: mockup: fix NULL pointer dereference when removing debugfs + - gpio: mockup: Fix potential resource leakage when register a chip + - gpiolib: cdev: Set lineevent_state::irq after IRQ register successfully + - riscv: fix a nasty sigreturn bug... + - kasan: call kasan_malloc() from __kmalloc_*track_caller() + - can: flexcan: flexcan_mailbox_read() fix return value for drop = true + - net: mana: Add rmb after checking owner bits + - mm/slub: fix to return errno if kmalloc() fails + - mm: slub: fix flush_cpu_slab()/__free_slab() invocations in task context. + - KVM: x86: Inject #UD on emulated XSETBV if XSAVES isn't enabled + - arm64: topology: fix possible overflow in amu_fie_setup() + - vmlinux.lds.h: CFI: Reduce alignment of jump-table to function alignment + - xfs: reorder iunlink remove operation in xfs_ifree + - xfs: fix xfs_ifree() error handling to not leak perag ref + - xfs: validate inode fork size against fork format + - firmware: arm_scmi: Harden accesses to the reset domains + - firmware: arm_scmi: Fix the asynchronous reset requests + - arm64: dts: rockchip: Pull up wlan wake# on Gru-Bob + - arm64: dts: rockchip: Fix typo in lisense text for PX30.Core + - drm/mediatek: dsi: Add atomic {destroy,duplicate}_state, reset callbacks + - arm64: dts: rockchip: Set RK3399-Gru PCLK_EDP to 24 MHz + - dmaengine: ti: k3-udma-private: Fix refcount leak bug in of_xudma_dev_get() + - arm64: dts: rockchip: Remove 'enable-active-low' from rk3399-puma + - netfilter: nf_conntrack_sip: fix ct_sip_walk_headers + - netfilter: nf_conntrack_irc: Tighten matching on DCC message + - netfilter: nfnetlink_osf: fix possible bogus match in nf_osf_find() + - ice: Don't double unplug aux on peer initiated reset + - iavf: Fix cached head and tail value for iavf_get_tx_pending + - ipvlan: Fix out-of-bound bugs caused by unset skb->mac_header + - net: core: fix flow symmetric hash + - net: phy: aquantia: wait for the suspend/resume operations to finish + - scsi: qla2xxx: Fix memory leak in __qlt_24xx_handle_abts() + - scsi: mpt3sas: Fix return value check of dma_get_required_mask() + - net: bonding: Share lacpdu_mcast_addr definition + - net: bonding: Unsync device addresses on ndo_stop + - net: team: Unsync device addresses on ndo_stop + - drm/panel: simple: Fix innolux_g121i1_l01 bus_format + - MIPS: lantiq: export clk_get_io() for lantiq_wdt.ko + - MIPS: Loongson32: Fix PHY-mode being left unspecified + - um: fix default console kernel parameter + - iavf: Fix bad page state + - mlxbf_gige: clear MDIO gateway lock after read + - i40e: Fix set max_tx_rate when it is lower than 1 Mbps + - sfc: fix TX channel offset when using legacy interrupts + - sfc: fix null pointer dereference in efx_hard_start_xmit + - drm/hisilicon/hibmc: Allow to be built if COMPILE_TEST is enabled + - drm/hisilicon: Add depends on MMU + - of: mdio: Add of_node_put() when breaking out of for_each_xx + - net: ipa: properly limit modem routing table use + - wireguard: ratelimiter: disable timings test by default + - wireguard: netlink: avoid variable-sized memcpy on sockaddr + - net: enetc: move enetc_set_psfp() out of the common enetc_set_features() + - net: enetc: deny offload of tc-based TSN features on VF interfaces + - net/sched: taprio: avoid disabling offload when it was never enabled + - net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo child + qdiscs + - netfilter: nf_tables: fix nft_counters_enabled underflow at + nf_tables_addchain() + - netfilter: nf_tables: fix percpu memory leak at nf_tables_addchain() + - netfilter: ebtables: fix memory leak when blob is malformed + - net: ravb: Fix PHY state warning splat during system resume + - net: sh_eth: Fix PHY state warning splat during system resume + - can: gs_usb: gs_can_open(): fix race dev->can.state condition + - perf stat: Fix BPF program section name + - perf jit: Include program header in ELF files + - perf kcore_copy: Do not check /proc/modules is unchanged + - perf tools: Honor namespace when synthesizing build-ids + - drm/mediatek: dsi: Move mtk_dsi_stop() call back to mtk_dsi_poweroff() + - net/smc: Stop the CLC flow if no link to map buffers on + - bonding: fix NULL deref in bond_rr_gen_slave_id + - net: sunhme: Fix packet reception for len < RX_COPY_THRESHOLD + - net: sched: fix possible refcount leak in tc_new_tfilter() + - bnxt: prevent skb UAF after handing over to PTP worker + - selftests: forwarding: add shebang for sch_red.sh + - KVM: x86/mmu: Fold rmap_recycle into rmap_add + - serial: fsl_lpuart: Reset prior to registration + - serial: Create uart_xmit_advance() + - serial: tegra: Use uart_xmit_advance(), fixes icount.tx accounting + - serial: tegra-tcu: Use uart_xmit_advance(), fixes icount.tx accounting + - s390/dasd: fix Oops in dasd_alias_get_start_dev due to missing pavgroup + - drm/amd/amdgpu: fixing read wrong pf2vf data in SRIOV + - Drivers: hv: Never allocate anything besides framebuffer from framebuffer + memory region + - drm/gma500: Fix BUG: sleeping function called from invalid context errors + - drm/amd/pm: disable BACO entry/exit completely on several sienna cichlid + cards + - drm/amdgpu: use dirty framebuffer helper + - drm/amd/display: Limit user regamma to a valid value + - drm/amd/display: Reduce number of arguments of dml31's + CalculateWatermarksAndDRAMSpeedChangeSupport() + - drm/amd/display: Reduce number of arguments of dml31's + CalculateFlipSchedule() + - drm/amd/display: Mark dml30's UseMinimumDCFCLK() as noinline for stack usage + - drm/rockchip: Fix return type of cdn_dp_connector_mode_valid + - fsdax: Fix infinite loop in dax_iomap_rw() + - workqueue: don't skip lockdep work dependency in cancel_work_sync() + - i2c: imx: If pm_runtime_get_sync() returned 1 device access is possible + - i2c: mlxbf: incorrect base address passed during io write + - i2c: mlxbf: prevent stack overflow in mlxbf_i2c_smbus_start_transaction() + - i2c: mlxbf: Fix frequency calculation + - drm/amdgpu: don't register a dirty callback for non-atomic + - NFSv4: Fixes for nfs4_inode_return_delegation() + - devdax: Fix soft-reservation memory description + - ext4: make directory inode spreading reflect flexbg size + - ext4: fix bug in extents parsing when eh_entries == 0 and eh_depth > 0 + - ext4: limit the number of retries after discarding preallocations blocks + - ext4: make mballoc try target group first even with mb_optimize_scan + - ext4: avoid unnecessary spreading of allocations among groups + - ext4: use locality group preallocation for small closed files + - Linux 5.15.71 + - Revert "drm/amdgpu: use dirty framebuffer helper" + * Jammy update: v5.15.70 upstream stable release (LP: #1995415) + - drm/tegra: vic: Fix build warning when CONFIG_PM=n + - serial: atmel: remove redundant assignment in rs485_config + - tty: serial: atmel: Preserve previous USART mode if RS485 disabled + - of: fdt: fix off-by-one error in unflatten_dt_nodes() + - pinctrl: qcom: sc8180x: Fix gpio_wakeirq_map + - pinctrl: qcom: sc8180x: Fix wrong pin numbers + - pinctrl: rockchip: Enhance support for IRQ_TYPE_EDGE_BOTH + - pinctrl: sunxi: Fix name for A100 R_PIO + - NFSv4: Turn off open-by-filehandle and NFS re-export for NFSv4.0 + - gpio: mpc8xxx: Fix support for IRQ_TYPE_LEVEL_LOW flow_type in mpc85xx + - drm/meson: Correct OSD1 global alpha value + - drm/meson: Fix OSD1 RGB to YCbCr coefficient + - block: blk_queue_enter() / __bio_queue_enter() must return -EAGAIN for + nowait + - parisc: ccio-dma: Add missing iounmap in error path in ccio_probe() + - of/device: Fix up of_dma_configure_id() stub + - cifs: revalidate mapping when doing direct writes + - cifs: don't send down the destination address to sendmsg for a SOCK_STREAM + - cifs: always initialize struct msghdr smb_msg completely + - parisc: Allow CONFIG_64BIT with ARCH=parisc + - tools/include/uapi: Fix for parisc and xtensa + - drm/amdgpu: Don't enable LTR if not supported + - drm/amdgpu: move nbio ih_doorbell_range() into ih code for vega + - drm/amdgpu: move nbio sdma_doorbell_range() into sdma code for vega + - binder: remove inaccurate mmap_assert_locked() + - arm64: dts: juno: Add missing MHU secure-irq + - ASoC: nau8824: Fix semaphore unbalance at error paths + - regulator: pfuze100: Fix the global-out-of-bounds access in + pfuze100_regulator_probe() + - scsi: lpfc: Return DID_TRANSPORT_DISRUPTED instead of DID_REQUEUE + - rxrpc: Fix local destruction being repeated + - rxrpc: Fix calc of resend age + - wifi: mac80211_hwsim: check length for virtio packets + - ALSA: hda/sigmatel: Keep power up while beep is enabled + - ALSA: hda/tegra: Align BDL entry to 4KB boundary + - net: usb: qmi_wwan: add Quectel RM520N + - afs: Return -EAGAIN, not -EREMOTEIO, when a file already locked + - MIPS: OCTEON: irq: Fix octeon_irq_force_ciu_mapping() + - drm/panfrost: devfreq: set opp to the recommended one to configure regulator + - mksysmap: Fix the mismatch of 'L0' symbols in System.map + - video: fbdev: pxa3xx-gcu: Fix integer overflow in pxa3xx_gcu_write + - net: Find dst with sk's xfrm policy not ctl_sk + - KVM: SEV: add cache flush to solve SEV cache incoherency issues + - cgroup: Add missing cpus_read_lock() to cgroup_attach_task_all() + - ALSA: hda/sigmatel: Fix unused variable warning for beep power change + - Linux 5.15.70 + * Jammy update: v5.15.69 upstream stable release (LP: #1993010) + - NFS: Fix WARN_ON due to unionization of nfs_inode.nrequests + - ACPI: resource: skip IRQ override on AMD Zen platforms + - ARM: dts: imx: align SPI NOR node name with dtschema + - ARM: dts: imx6qdl-kontron-samx6i: fix spi-flash compatible + - ARM: dts: at91: fix low limit for CPU regulator + - ARM: dts: at91: sama7g5ek: specify proper regulator output ranges + - lockdep: Fix -Wunused-parameter for _THIS_IP_ + - x86/mm: Force-inline __phys_addr_nodebug() + - task_stack, x86/cea: Force-inline stack helpers + - tracing: hold caller_addr to hardirq_{enable,disable}_ip + - tracefs: Only clobber mode/uid/gid on remount if asked + - iommu/vt-d: Fix kdump kernels boot failure with scalable mode + - Input: goodix - add support for GT1158 + - platform/surface: aggregator_registry: Add support for Surface Laptop Go 2 + - drm/msm/rd: Fix FIFO-full deadlock + - dt-bindings: iio: gyroscope: bosch,bmg160: correct number of pins + - HID: ishtp-hid-clientHID: ishtp-hid-client: Fix comment typo + - hid: intel-ish-hid: ishtp: Fix ishtp client sending disordered message + - tg3: Disable tg3 device on system reboot to avoid triggering AER + - gpio: mockup: remove gpio debugfs when remove device + - ieee802154: cc2520: add rc code in cc2520_tx() + - Input: iforce - add support for Boeder Force Feedback Wheel + - nvmet-tcp: fix unhandled tcp states in nvmet_tcp_state_change() + - drm/amd/amdgpu: skip ucode loading if ucode_size == 0 + - net: dsa: hellcreek: Print warning only once + - perf/arm_pmu_platform: fix tests for platform_get_irq() failure + - platform/x86: acer-wmi: Acer Aspire One AOD270/Packard Bell Dot keymap fixes + - usb: storage: Add ASUS <0x0b05:0x1932> to IGNORE_UAS + - mm: Fix TLB flush for not-first PFNMAP mappings in unmap_region() + - soc: fsl: select FSL_GUTS driver for DPIO + - usb: gadget: f_uac2: clean up some inconsistent indenting + - usb: gadget: f_uac2: fix superspeed transfer + - RDMA/irdma: Use s/g array in post send only when its valid + - Input: goodix - add compatible string for GT1158 + - Linux 5.15.69 + * Jammy update: v5.15.68 upstream stable release (LP: #1993003) + - net: wwan: iosm: remove pointless null check + - efi: libstub: Disable struct randomization + - efi: capsule-loader: Fix use-after-free in efi_capsule_write + - wifi: iwlegacy: 4965: corrected fix for potential off-by-one overflow in + il4965_rs_fill_link_cmd() + - fs: only do a memory barrier for the first set_buffer_uptodate() + - Revert "mm: kmemleak: take a full lowmem check in kmemleak_*_phys()" + - scsi: qla2xxx: Disable ATIO interrupt coalesce for quad port ISP27XX + - scsi: megaraid_sas: Fix double kfree() + - drm/gem: Fix GEM handle release errors + - drm/amdgpu: Move psp_xgmi_terminate call from amdgpu_xgmi_remove_device to + psp_hw_fini + - drm/amdgpu: Check num_gfx_rings for gfx v9_0 rb setup. + - drm/radeon: add a force flush to delay work when radeon + - scsi: ufs: core: Reduce the power mode change timeout + - Revert "parisc: Show error if wrong 32/64-bit compiler is being used" + - parisc: ccio-dma: Handle kmalloc failure in ccio_init_resources() + - parisc: Add runtime check to prevent PA2.0 kernels on PA1.x machines + - arm64: cacheinfo: Fix incorrect assignment of signed error value to unsigned + fw_level + - netfilter: conntrack: work around exceeded receive window + - cpufreq: check only freq_table in __resolve_freq() + - net/core/skbuff: Check the return value of skb_copy_bits() + - md: Flush workqueue md_rdev_misc_wq in md_alloc() + - fbdev: fbcon: Destroy mutex on freeing struct fb_info + - fbdev: chipsfb: Add missing pci_disable_device() in chipsfb_pci_init() + - drm/amdgpu: mmVM_L2_CNTL3 register not initialized correctly + - ALSA: pcm: oss: Fix race at SNDCTL_DSP_SYNC + - ALSA: emu10k1: Fix out of bounds access in snd_emu10k1_pcm_channel_alloc() + - ALSA: aloop: Fix random zeros in capture data when using jiffies timer + - ALSA: usb-audio: Fix an out-of-bounds bug in + __snd_usb_parse_audio_interface() + - tracing: Fix to check event_mutex is held while accessing trigger list + - btrfs: zoned: set pseudo max append zone limit in zone emulation mode + - vfio/type1: Unpin zero pages + - kprobes: Prohibit probes in gate area + - debugfs: add debugfs_lookup_and_remove() + - sched/debug: fix dentry leak in update_sched_domain_debugfs + - drm/amd/display: fix memory leak when using debugfs_lookup() + - nvmet: fix a use-after-free + - scsi: mpt3sas: Fix use-after-free warning + - scsi: lpfc: Add missing destroy_workqueue() in error path + - NFS: Further optimisations for 'ls -l' + - NFS: Save some space in the inode + - NFS: Fix another fsync() issue after a server reboot + - cgroup: Elide write-locking threadgroup_rwsem when updating csses on an + empty subtree + - cgroup: Fix threadgroup_rwsem <-> cpus_read_lock() deadlock + - ASoC: qcom: sm8250: add missing module owner + - RDMA/rtrs-clt: Use the right sg_cnt after ib_dma_map_sg + - RDMA/rtrs-srv: Pass the correct number of entries for dma mapped SGL + - ARM: dts: imx6qdl-kontron-samx6i: remove duplicated node + - soc: imx: gpcv2: Assert reset before ungating clock + - regulator: core: Clean up on enable failure + - tee: fix compiler warning in tee_shm_register() + - RDMA/cma: Fix arguments order in net device validation + - soc: brcmstb: pm-arm: Fix refcount leak and __iomem leak bugs + - RDMA/hns: Fix supported page size + - RDMA/hns: Fix wrong fixed value of qp->rq.wqe_shift + - wifi: wilc1000: fix DMA on stack objects + - ARM: at91: pm: fix self-refresh for sama7g5 + - ARM: at91: pm: fix DDR recalibration when resuming from backup and self- + refresh + - ARM: dts: at91: sama5d27_wlsom1: specify proper regulator output ranges + - ARM: dts: at91: sama5d2_icp: specify proper regulator output ranges + - ARM: dts: at91: sama5d27_wlsom1: don't keep ldo2 enabled all the time + - ARM: dts: at91: sama5d2_icp: don't keep vdd_other enabled all the time + - netfilter: br_netfilter: Drop dst references before setting. + - netfilter: nf_tables: clean up hook list when offload flags check fails + - RDMA/srp: Set scmnd->result only when scmnd is not NULL + - ALSA: usb-audio: Inform the delayed registration more properly + - ALSA: usb-audio: Register card again for iface over delayed_register option + - rxrpc: Fix ICMP/ICMP6 error handling + - rxrpc: Fix an insufficiently large sglist in rxkad_verify_packet_2() + - afs: Use the operation issue time instead of the reply time for callbacks + - Revert "net: phy: meson-gxl: improve link-up behavior" + - sch_sfb: Don't assume the skb is still around after enqueueing to child + - tipc: fix shift wrapping bug in map_get() + - net: introduce __skb_fill_page_desc_noacc + - tcp: TX zerocopy should not sense pfmemalloc status + - ice: use bitmap_free instead of devm_kfree + - i40e: Fix kernel crash during module removal + - iavf: Detach device during reset task + - xen-netback: only remove 'hotplug-status' when the vif is actually destroyed + - RDMA/siw: Pass a pointer to virt_to_page() + - ipv6: sr: fix out-of-bounds read when setting HMAC data. + - IB/core: Fix a nested dead lock as part of ODP flow + - RDMA/mlx5: Set local port to one when accessing counters + - erofs: fix pcluster use-after-free on UP platforms + - nvme-tcp: fix UAF when detecting digest errors + - nvme-tcp: fix regression that causes sporadic requests to time out + - tcp: fix early ETIMEDOUT after spurious non-SACK RTO + - nvmet: fix mar and mor off-by-one errors + - RDMA/irdma: Report the correct max cqes from query device + - RDMA/irdma: Return correct WC error for bind operation failure + - RDMA/irdma: Report RNR NAK generation in device caps + - sch_sfb: Also store skb len before calling child enqueue + - perf script: Fix Cannot print 'iregs' field for hybrid systems + - hwmon: (tps23861) fix byte order in resistance register + - ASoC: mchp-spdiftx: remove references to mchp_i2s_caps + - ASoC: mchp-spdiftx: Fix clang -Wbitfield-constant-conversion + - MIPS: loongson32: ls1c: Fix hang during startup + - kbuild: disable header exports for UML in a straightforward way + - i40e: Refactor tc mqprio checks + - i40e: Fix ADQ rate limiting for PF + - swiotlb: avoid potential left shift overflow + - iommu/amd: use full 64-bit value in build_completion_wait() + - s390/boot: fix absolute zero lowcore corruption on boot + - hwmon: (mr75203) fix VM sensor allocation when "intel,vm-map" not defined + - hwmon: (mr75203) update pvt->v_num and vm_num to the actual number of used + sensors + - hwmon: (mr75203) fix voltage equation for negative source input + - hwmon: (mr75203) fix multi-channel voltage reading + - hwmon: (mr75203) enable polling for all VM channels + - arm64/bti: Disable in kernel BTI when cross section thunks are broken + - [Config] updateconfigs for ARM64_BTI_KERNEL + - iommu/vt-d: Correctly calculate sagaw value of IOMMU + - [Config] updateconfigs for ARM64_ERRATUM_2457168 + - arm64: errata: add detection for AMEVCNTR01 incrementing incorrectly + - drm/bridge: display-connector: implement bus fmts callbacks + - perf machine: Use path__join() to compose a path instead of snprintf(dir, + '/', filename) + - ARM: at91: ddr: remove CONFIG_SOC_SAMA7 dependency + - Linux 5.15.68 + * Jammy update: v5.15.67 upstream stable release (LP: #1991841) + - Linux 5.15.67 + * Jammy update: v5.15.66 upstream stable release (LP: #1991840) + - drm/msm/dsi: fix the inconsistent indenting + - drm/msm/dp: delete DP_RECOVERED_CLOCK_OUT_EN to fix tps4 + - drm/msm/dsi: Fix number of regulators for msm8996_dsi_cfg + - drm/msm/dsi: Fix number of regulators for SDM660 + - platform/x86: pmc_atom: Fix SLP_TYPx bitfield mask + - iio: adc: mcp3911: make use of the sign bit + - skmsg: Fix wrong last sg check in sk_msg_recvmsg() + - bpf: Restrict bpf_sys_bpf to CAP_PERFMON + - bpf, cgroup: Fix kernel BUG in purge_effective_progs + - ieee802154/adf7242: defer destroy_workqueue call + - drm/i915/backlight: extract backlight code to a separate file + - drm/i915/display: avoid warnings when registering dual panel backlight + - ALSA: hda: intel-nhlt: remove use of __func__ in dev_dbg + - ALSA: hda: intel-nhlt: Correct the handling of fmt_config flexible array + - wifi: cfg80211: debugfs: fix return type in ht40allow_map_read() + - Revert "xhci: turn off port power in shutdown" + - net: sparx5: fix handling uneven length packets in manual extraction + - net: smsc911x: Stop and start PHY during suspend and resume + - openvswitch: fix memory leak at failed datapath creation + - net: dsa: xrs700x: Use irqsave variant for u64 stats update + - net: sched: tbf: don't call qdisc_put() while holding tree lock + - net/sched: fix netdevice reference leaks in attach_default_qdiscs() + - ethernet: rocker: fix sleep in atomic context bug in neigh_timer_handler + - mlxbf_gige: compute MDIO period based on i1clk + - kcm: fix strp_init() order and cleanup + - sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb + - tcp: annotate data-race around challenge_timestamp + - Revert "sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb" + - net/smc: Remove redundant refcount increase + - soundwire: qcom: fix device status array range + - serial: fsl_lpuart: RS485 RTS polariy is inverse + - staging: rtl8712: fix use after free bugs + - staging: r8188eu: add firmware dependency + - powerpc: align syscall table for ppc32 + - vt: Clear selection before changing the font + - musb: fix USB_MUSB_TUSB6010 dependency + - tty: serial: lpuart: disable flow control while waiting for the transmit + engine to complete + - Input: iforce - wake up after clearing IFORCE_XMIT_RUNNING flag + - iio: ad7292: Prevent regulator double disable + - iio: adc: mcp3911: use correct formula for AD conversion + - misc: fastrpc: fix memory corruption on probe + - misc: fastrpc: fix memory corruption on open + - USB: serial: ftdi_sio: add Omron CS1W-CIF31 device id + - mmc: core: Fix UHS-I SD 1.8V workaround branch + - mmc: core: Fix inconsistent sd3_bus_mode at UHS-I SD voltage switch failure + - binder: fix UAF of ref->proc caused by race condition + - binder: fix alloc->vma_vm_mm null-ptr dereference + - cifs: fix small mempool leak in SMB2_negotiate() + - KVM: VMX: Heed the 'msr' argument in msr_write_intercepted() + - drm/i915/reg: Fix spelling mistake "Unsupport" -> "Unsupported" + - clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops + - Revert "clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops" + - clk: core: Fix runtime PM sequence in clk_core_unprepare() + - Input: rk805-pwrkey - fix module autoloading + - clk: bcm: rpi: Fix error handling of raspberrypi_fw_get_rate + - clk: bcm: rpi: Use correct order for the parameters of devm_kcalloc() + - clk: bcm: rpi: Prevent out-of-bounds access + - clk: bcm: rpi: Add missing newline + - hwmon: (gpio-fan) Fix array out of bounds access + - gpio: pca953x: Add mutex_lock for regcache sync in PM + - KVM: x86: Mask off unsupported and unknown bits of IA32_ARCH_CAPABILITIES + - xen/grants: prevent integer overflow in gnttab_dma_alloc_pages() + - mm: pagewalk: Fix race between unmap and page walker + - xen-blkback: Advertise feature-persistent as user requested + - xen-blkfront: Advertise feature-persistent as user requested + - xen-blkfront: Cache feature_persistent value before advertisement + - thunderbolt: Use the actual buffer in tb_async_error() + - usb: dwc3: pci: Add support for Intel Raptor Lake + - media: mceusb: Use new usb_control_msg_*() routines + - xhci: Add grace period after xHC start to prevent premature runtime suspend. + - USB: serial: cp210x: add Decagon UCA device id + - USB: serial: option: add support for OPPO R11 diag port + - USB: serial: option: add Quectel EM060K modem + - USB: serial: option: add support for Cinterion MV32-WA/WB RmNet mode + - usb: typec: altmodes/displayport: correct pin assignment for UFP receptacles + - usb: typec: intel_pmc_mux: Add new ACPI ID for Meteor Lake IOM device + - usb: typec: tcpm: Return ENOTSUPP for power supply prop writes + - usb: dwc2: fix wrong order of phy_power_on and phy_init + - usb: cdns3: fix issue with rearming ISO OUT endpoint + - usb: cdns3: fix incorrect handling TRB_SMM flag for ISOC transfer + - USB: cdc-acm: Add Icom PMR F3400 support (0c26:0020) + - usb-storage: Add ignore-residue quirk for NXP PN7462AU + - s390/hugetlb: fix prepare_hugepage_range() check for 2 GB hugepages + - s390: fix nospec table alignments + - USB: core: Prevent nested device-reset calls + - usb: xhci-mtk: relax TT periodic bandwidth allocation + - usb: xhci-mtk: fix bandwidth release issue + - usb: gadget: mass_storage: Fix cdrom data transfers on MAC-OS + - driver core: Don't probe devices after bus_type.match() probe deferral + - wifi: mac80211: Don't finalize CSA in IBSS mode if state is disconnected + - wifi: mac80211: Fix UAF in ieee80211_scan_rx() + - net: Use u64_stats_fetch_begin_irq() for stats fetch. + - net: mac802154: Fix a condition in the receive path + - ALSA: hda/realtek: Add speaker AMP init for Samsung laptops with ALC298 + - ALSA: seq: oss: Fix data-race for max_midi_devs access + - ALSA: seq: Fix data-race at module auto-loading + - drm/i915/glk: ECS Liva Q2 needs GLK HDMI port timing quirk + - drm/i915: Skip wm/ddb readout for disabled pipes + - tty: n_gsm: add sanity check for gsm->receive in gsm_receive_buf() + - kbuild: Add skip_encoding_btf_enum64 option to pahole + - usb: dwc3: fix PHY disable sequence + - usb: dwc3: qcom: fix use-after-free on runtime-PM wakeup + - usb: dwc3: disable USB core PHY management + - USB: serial: ch341: fix lost character on LCR updates + - USB: serial: ch341: fix disabled rx timer on older devices + - Linux 5.15.66 + * Jammy update: v5.15.65 upstream stable release (LP: #1991831) + - mm: Force TLB flush for PFNMAP mappings before unlink_file_vma() + - drm/bridge: Add stubs for devm_drm_of_get_bridge when OF is disabled + - ACPI: thermal: drop an always true check + - drm/vc4: hdmi: Rework power up + - drm/vc4: hdmi: Depends on CONFIG_PM + - firmware: tegra: bpmp: Do only aligned access to IPC memory area + - crypto: lib - remove unneeded selection of XOR_BLOCKS + - Drivers: hv: balloon: Support status report for larger page sizes + - mm/hugetlb: avoid corrupting page->mapping in hugetlb_mcopy_atomic_pte + - [Config] updateconfigs for ARM64_ERRATUM_2441009 + - arm64: errata: Add Cortex-A510 to the repeat tlbi list + - io_uring: Remove unused function req_ref_put + - kbuild: Fix include path in scripts/Makefile.modpost + - Bluetooth: L2CAP: Fix build errors in some archs + - HID: steam: Prevent NULL pointer dereference in steam_{recv,send}_report + - udmabuf: Set the DMA mask for the udmabuf device (v2) + - media: pvrusb2: fix memory leak in pvr_probe + - HID: hidraw: fix memory leak in hidraw_release() + - net: fix refcount bug in sk_psock_get (2) + - fbdev: fb_pm2fb: Avoid potential divide by zero error + - ftrace: Fix NULL pointer dereference in is_ftrace_trampoline when ftrace is + dead + - bpf: Don't redirect packets with invalid pkt_len + - ALSA: usb-audio: Add quirk for LH Labs Geek Out HD Audio 1V5 + - HID: add Lenovo Yoga C630 battery quirk + - HID: AMD_SFH: Add a DMI quirk entry for Chromebooks + - HID: asus: ROG NKey: Ignore portion of 0x5a report + - HID: thrustmaster: Add sparco wheel and fix array length + - drm/i915/gt: Skip TLB invalidations once wedged + - mmc: mtk-sd: Clear interrupts when cqe off/disable + - mmc: sdhci-of-dwcmshc: add reset call back for rockchip Socs + - mmc: sdhci-of-dwcmshc: rename rk3568 to rk35xx + - mmc: sdhci-of-dwcmshc: Re-enable support for the BlueField-3 SoC + - btrfs: remove root argument from btrfs_unlink_inode() + - btrfs: remove no longer needed logic for replaying directory deletes + - btrfs: add and use helper for unlinking inode during log replay + - btrfs: fix warning during log replay when bumping inode link count + - fs/ntfs3: Fix work with fragmented xattr + - ASoC: sh: rz-ssi: Improve error handling in rz_ssi_probe() error path + - drm/amd/display: Avoid MPC infinite loop + - drm/amd/display: Fix HDMI VSIF V3 incorrect issue + - drm/amd/display: For stereo keep "FLIP_ANY_FRAME" + - drm/amd/display: clear optc underflow before turn off odm clock + - ksmbd: return STATUS_BAD_NETWORK_NAME error status if share is not + configured + - neigh: fix possible DoS due to net iface start/stop loop + - s390/hypfs: avoid error message under KVM + - ksmbd: don't remove dos attribute xattr on O_TRUNC open + - drm/amd/pm: add missing ->fini_microcode interface for Sienna Cichlid + - drm/amd/display: Fix pixel clock programming + - drm/amdgpu: Increase tlb flush timeout for sriov + - drm/amd/display: avoid doing vm_init multiple time + - netfilter: conntrack: NF_CONNTRACK_PROCFS should no longer default to y + - testing: selftests: nft_flowtable.sh: use random netns names + - btrfs: move lockdep class helpers to locking.c + - btrfs: fix lockdep splat with reloc root extent buffers + - btrfs: tree-checker: check for overlapping extent items + - kprobes: don't call disarm_kprobe() for disabled kprobes + - btrfs: fix space cache corruption and potential double allocations + - android: binder: fix lockdep check on clearing vma + - net/af_packet: check len when min_header_len equals to 0 + - net: neigh: don't call kfree_skb() under spin_lock_irqsave() + - Linux 5.15.65 + * CVE-2022-2663 + - netfilter: nf_conntrack_irc: Fix forged IP logic + * CVE-2022-3061 + - video: fbdev: i740fb: Error out if 'pixclock' equals zero + + [ Ubuntu: 5.15.0-56.62 ] + + * jammy/linux: 5.15.0-56.62 -proposed tracker (LP: #1997079) + * CVE-2022-3566 + - tcp: Fix data races around icsk->icsk_af_ops. + * CVE-2022-3567 + - ipv6: annotate some data-races around sk->sk_prot + - ipv6: Fix data races around sk->sk_prot. + * CVE-2022-3621 + - nilfs2: fix NULL pointer dereference at nilfs_bmap_lookup_at_level() + * CVE-2022-3564 + - Bluetooth: L2CAP: Fix use-after-free caused by l2cap_reassemble_sdu + * CVE-2022-3524 + - tcp/udp: Fix memory leak in ipv6_renew_options(). + * CVE-2022-3565 + - mISDN: fix use-after-free bugs in l1oip timer handlers + * CVE-2022-3594 + - r8152: Rate limit overflow messages + * CVE-2022-43945 + - SUNRPC: Fix svcxdr_init_decode's end-of-buffer calculation + - SUNRPC: Fix svcxdr_init_encode's buflen calculation + - NFSD: Protect against send buffer overflow in NFSv2 READDIR + - NFSD: Protect against send buffer overflow in NFSv3 READDIR + - NFSD: Protect against send buffer overflow in NFSv2 READ + - NFSD: Protect against send buffer overflow in NFSv3 READ + - NFSD: Remove "inline" directives on op_rsize_bop helpers + - NFSD: Cap rsize_bop result based on send buffer size + * CVE-2022-42703 + - mm/rmap: Fix anon_vma->degree ambiguity leading to double-reuse + * 5.15.0-53-generic no longer boots (LP: #1996740) + - drm/amd/display: Add helper for blanking all dp displays + + -- Tim Gardner Mon, 12 Dec 2022 11:50:22 -0700 + +linux-azure (5.15.0-1023.29) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1023.29 -proposed tracker (LP: #1991983) + + * Jammy update: v5.15.61 upstream stable release (LP: #1990162) + - [Config] azure: updateconfigs for CRYPTO_LIB_BLAKE2S + + * azure: CIFS Backport Updates to 5.15 Kernel (LP: #1987699) + - cifs: fix signed integer overflow when fl_end is OFFSET_MAX + - cifs: don't call cifs_dfs_query_info_nonascii_quirk() if nodfs was set + - cifs: return ENOENT for DFS lookup_cache_entry() + - cifs: print TIDs as hex + - cifs: move definition of cifs_fattr earlier in cifsglob.h + - cifs: check for smb1 in open_cached_dir() + - cifs: set the CREATE_NOT_FILE when opening the directory in use_cached_dir() + - cifs: smbd: fix typo in comment + - smb3: add trace point for lease not found issue + - cifs: return the more nuanced writeback error on close() + - smb3: add trace point for oplock not found + - Add defines for various newer FSCTLs + - Add various fsctl structs + - cifs: fix minor compile warning + - smb3: don't set rc when used and unneeded in query_info_compound + - smb3: add mount parm nosparse + - cifs: do not use tcpStatus after negotiate completes + - cifs: use new enum for ses_status + - cifs: avoid parallel session setups on same channel + - cifs: cache the dirents for entries in a cached directory + - cifs: fix ntlmssp on old servers + - smb3: remove unneeded null check in cifs_readdir + - cifs: remove repeated debug message on cifs_put_smb_ses() + - cifs: fix potential deadlock in direct reclaim + - cifs: do not build smb1ops if legacy support is disabled + - cifs: update internal module number + - cifs: skip trailing separators of prefix paths + - cifs: fix uninitialized pointer in error case in dfs_cache_get_tgt_share + - cifs: populate empty hostnames for extra channels + - smb3: add trace point for SMB2_set_eof + - cifs: when a channel is not found for server, log its connection id + - smb3: fix empty netname context on secondary channels + - smb3: use netname when available on secondary channels + - cifs: change iface_list from array to sorted linked list + - cifs: during reconnect, update interface if necessary + - cifs: periodically query network interfaces from server + - cifs: avoid deadlocks while updating iface + - cifs: update cifs_ses::ip_addr after failover + - cifs: fix race condition with delayed threads + - cifs: remove unnecessary locking of chan_lock while freeing session + - smb3: workaround negprot bug in some Samba servers + - cifs: remove redundant initialization to variable mnt_sign_enabled + - cifs: remove unnecessary type castings + - cifs: remove unnecessary (void*) conversions. + - cifs: remove some camelCase and also some static build warnings + - cifs: remove minor build warning + + * Azure: PCI: Fix synchronization (LP: #1991134) + - PCI: hv: Use vmbus_requestor to generate transaction IDs for VMbus hardening + - Drivers: hv: vmbus: Introduce vmbus_sendpacket_getid() + - Drivers: hv: vmbus: Introduce vmbus_request_addr_match() + - Drivers: hv: vmbus: Introduce {lock,unlock}_requestor() + - PCI: hv: Fix synchronization between channel callback and + hv_compose_msi_msg() + - PCI: hv: Fix synchronization between channel callback and hv_pci_bus_exit() + + * md: Replace snprintf with scnprintf (LP: #1993315) + - md: Replace snprintf with scnprintf + + [ Ubuntu: 5.15.0-53.59 ] + + * Fix blank screen on Thinkpad ADL 4K+ panel (LP: #1980621) + - drm/i915: Implement WaEdpLinkRateDataReload + * Kernel regresses openjdk on riscv64 (LP: #1992484) + - SAUCE: Revert "riscv: mmap with PROT_WRITE but no PROT_READ is invalid" + * iavf: SR-IOV VFs error with no traffic flow when MTU greater than 1500 + (LP: #1983656) + - iavf: Fix set max MTU size with port VLAN and jumbo frames + - i40e: Fix VF set max MTU size + * [Ubuntu 22.04] mpt3sas: Request to include latest bug fix patches + (LP: #1965927) + - scsi: mpt3sas: Remove scsi_dma_map() error messages + - scsi: mpt3sas: Update persistent trigger pages from sysfs interface + * ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel + systems (LP: #1990985) + - ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel + systems + * Fix resume on AMD platforms when TBT monitor is plugged (LP: #1990920) + - SAUCE: Revert "drm/amd/display: Add helper for blanking all dp displays" + - drm/amd/display: Detect dpcd_rev when hotplug mst monitor + - drm/amd/display: Release remote dc_sink under mst scenario + * LSM: Configuring Too Many LSMs Causes Kernel Panic on Boot (LP: #1987998) + - SAUCE: LSM: Change Landlock from LSMBLOB_NEEDED to LSMBLOB_NOT_NEEDED + * To support Intel Maple Ridge Thunderbolt [8086:1134] (LP: #1990240) + - thunderbolt: Add support for Intel Maple Ridge single port controller + * Intel graphic driver is not probing[8086:468b] (LP: #1990242) + - drm/i915/adl_s: Update ADL-S PCI IDs + - drm/i915: Add new ADL-S pci id + * Add HDMI codec ID for Intel Raptor Lake (LP: #1989578) + - ALSA: hda: Add PCI and HDMI IDs for Intel Raptor Lake + * Jammy update: v5.15.64 upstream stable release (LP: #1991717) + - wifi: rtlwifi: remove always-true condition pointed out by GCC 12 + - eth: sun: cassini: remove dead code + - audit: fix potential double free on error path from fsnotify_add_inode_mark + - cgroup: Fix race condition at rebind_subsystems() + - parisc: Make CONFIG_64BIT available for ARCH=parisc64 only + - parisc: Fix exception handler for fldw and fstw instructions + - kernel/sys_ni: add compat entry for fadvise64_64 + - x86/entry: Move CLD to the start of the idtentry macro + - block: add a bdev_max_zone_append_sectors helper + - block: add bdev_max_segments() helper + - btrfs: zoned: revive max_zone_append_bytes + - btrfs: replace BTRFS_MAX_EXTENT_SIZE with fs_info->max_extent_size + - btrfs: convert count_max_extents() to use fs_info->max_extent_size + - Input: i8042 - move __initconst to fix code styling warning + - Input: i8042 - merge quirk tables + - Input: i8042 - add TUXEDO devices to i8042 quirk tables + - Input: i8042 - add additional TUXEDO devices to i8042 quirk tables + - drivers/base: fix userspace break from using bin_attributes for cpumap and + cpulist + - scsi: qla2xxx: Fix response queue handler reading stale packets + - scsi: qla2xxx: edif: Fix dropped IKE message + - btrfs: put initial index value of a directory in a constant + - btrfs: pass the dentry to btrfs_log_new_name() instead of the inode + - btrfs: remove unnecessary parameter delalloc_start for writepage_delalloc() + - riscv: lib: uaccess: fold fixups into body + - riscv: lib: uaccess: fix CSR_STATUS SR_SUM bit + - xfrm: fix refcount leak in __xfrm_policy_check() + - xfrm: clone missing x->lastused in xfrm_do_migrate + - xfrm: policy: fix metadata dst->dev xmit null pointer dereference + - fs: require CAP_SYS_ADMIN in target namespace for idmapped mounts + - net: use eth_hw_addr_set() instead of ether_addr_copy() + - Revert "net: macsec: update SCI upon MAC address change." + - NFS: Don't allocate nfs_fattr on the stack in __nfs42_ssc_open() + - NFSv4.2 fix problems with __nfs42_ssc_open + - SUNRPC: RPC level errors should set task->tk_rpc_status + - mm/smaps: don't access young/dirty bit if pte unpresent + - ntfs: fix acl handling + - rose: check NULL rose_loopback_neigh->loopback + - r8152: fix the units of some registers for RTL8156A + - r8152: fix the RX FIFO settings when suspending + - nfc: pn533: Fix use-after-free bugs caused by pn532_cmd_timeout + - ice: xsk: Force rings to be sized to power of 2 + - ice: xsk: prohibit usage of non-balanced queue id + - net/mlx5e: Properly disable vlan strip on non-UL reps + - net/mlx5: Avoid false positive lockdep warning by adding lock_class_key + - net/mlx5e: Fix wrong application of the LRO state + - net/mlx5e: Fix wrong tc flag used when set hw-tc-offload off + - net: ipa: don't assume SMEM is page-aligned + - net: phy: Don't WARN for PHY_READY state in mdio_bus_phy_resume() + - net: moxa: get rid of asymmetry in DMA mapping/unmapping + - bonding: 802.3ad: fix no transmission of LACPDUs + - net: ipvtap - add __init/__exit annotations to module init/exit funcs + - netfilter: ebtables: reject blobs that don't provide all entry points + - bnxt_en: fix NQ resource accounting during vf creation on 57500 chips + - netfilter: nf_tables: disallow updates of implicit chain + - netfilter: nf_tables: make table handle allocation per-netns friendly + - netfilter: nft_payload: report ERANGE for too long offset and length + - netfilter: nft_payload: do not truncate csum_offset and csum_type + - netfilter: nf_tables: do not leave chain stats enabled on error + - netfilter: nft_osf: restrict osf to ipv4, ipv6 and inet families + - netfilter: nft_tunnel: restrict it to netdev family + - netfilter: nf_tables: consolidate rule verdict trace call + - netfilter: nft_cmp: optimize comparison for 16-bytes + - netfilter: bitwise: improve error goto labels + - netfilter: nf_tables: upfront validation of data via nft_data_init() + - netfilter: nf_tables: disallow jump to implicit chain from set element + - netfilter: nf_tables: disallow binding to already bound chain + - netfilter: flowtable: add function to invoke garbage collection immediately + - netfilter: flowtable: fix stuck flows on cleanup due to pending work + - net: Fix data-races around sysctl_[rw]mem_(max|default). + - net: Fix data-races around weight_p and dev_weight_[rt]x_bias. + - net: Fix data-races around netdev_max_backlog. + - net: Fix data-races around netdev_tstamp_prequeue. + - ratelimit: Fix data-races in ___ratelimit(). + - net: Fix data-races around sysctl_optmem_max. + - net: Fix a data-race around sysctl_tstamp_allow_data. + - net: Fix a data-race around sysctl_net_busy_poll. + - net: Fix a data-race around sysctl_net_busy_read. + - net: Fix a data-race around netdev_budget. + - tcp: expose the tcp_mark_push() and tcp_skb_entail() helpers + - mptcp: stop relying on tcp_tx_skb_cache + - net: Fix data-races around sysctl_max_skb_frags. + - net: Fix a data-race around netdev_budget_usecs. + - net: Fix data-races around sysctl_fb_tunnels_only_for_init_net. + - net: Fix data-races around sysctl_devconf_inherit_init_net. + - net: Fix a data-race around sysctl_somaxconn. + - ixgbe: stop resetting SYSTIME in ixgbe_ptp_start_cyclecounter + - i40e: Fix incorrect address type for IPv6 flow rules + - rxrpc: Fix locking in rxrpc's sendmsg + - ionic: widen queue_lock use around lif init and deinit + - ionic: clear broken state on generation change + - ionic: fix up issues with handling EAGAIN on FW cmds + - ionic: VF initial random MAC address if no assigned mac + - net: stmmac: work around sporadic tx issue on link-up + - btrfs: fix silent failure when deleting root reference + - btrfs: replace: drop assert for suspended replace + - btrfs: add info when mount fails due to stale replace target + - btrfs: check if root is readonly while setting security xattr + - btrfs: fix possible memory leak in btrfs_get_dev_args_from_path() + - perf/x86/lbr: Enable the branch type for the Arch LBR by default + - x86/unwind/orc: Unwind ftrace trampolines with correct ORC entry + - x86/bugs: Add "unknown" reporting for MMIO Stale Data + - x86/nospec: Unwreck the RSB stuffing + - loop: Check for overflow while configuring loop + - writeback: avoid use-after-free after removing device + - asm-generic: sections: refactor memory_intersects + - mm/damon/dbgfs: avoid duplicate context directory creation + - s390/mm: do not trigger write fault when vma does not allow VM_WRITE + - bootmem: remove the vmemmap pages from kmemleak in put_page_bootmem + - s390: fix double free of GS and RI CBs on fork() failure + - fbdev: fbcon: Properly revert changes when vc_resize() failed + - Revert "memcg: cleanup racy sum avoidance code" + - ACPI: processor: Remove freq Qos request for all CPUs + - nouveau: explicitly wait on the fence in nouveau_bo_move_m2mf + - smb3: missing inode locks in punch hole + - xen/privcmd: fix error exit of privcmd_ioctl_dm_op() + - riscv: traps: add missing prototype + - io_uring: fix issue with io_write() not always undoing sb_start_write() + - mm/hugetlb: fix hugetlb not supporting softdirty tracking + - md: call __md_stop_writes in md_stop + - mptcp: Fix crash due to tcp_tsorted_anchor was initialized before release + skb + - arm64: Fix match_list for erratum 1286807 on Arm Cortex-A76 + - binder_alloc: add missing mmap_lock calls when using the VMA + - x86/nospec: Fix i386 RSB stuffing + - Documentation/ABI: Mention retbleed vulnerability info file for sysfs + - blk-mq: fix io hung due to missing commit_rqs + - perf python: Fix build when PYTHON_CONFIG is user supplied + - perf/x86/intel/uncore: Fix broken read_counter() for SNB IMC PMU + - perf/x86/intel/ds: Fix precise store latency handling + - perf stat: Clear evsel->reset_group for each stat run + - scsi: ufs: core: Enable link lost interrupt + - scsi: storvsc: Remove WQ_MEM_RECLAIM from storvsc_error_wq + - bpf: Don't use tnum_range on array range checking for poke descriptors + - Linux 5.15.64 + * Jammy update: v5.15.63 upstream stable release (LP: #1990564) + - ALSA: info: Fix llseek return value when using callback + - ALSA: hda/realtek: Add quirk for Clevo NS50PU, NS70PU + - KVM: Unconditionally get a ref to /dev/kvm module when creating a VM + - x86/mm: Use proper mask when setting PUD mapping + - rds: add missing barrier to release_refill + - locking/atomic: Make test_and_*_bit() ordered on failure + - drm/nouveau: recognise GA103 + - drm/ttm: Fix dummy res NULL ptr deref bug + - drm/amd/display: Check correct bounds for stream encoder instances for + DCN303 + - ata: libata-eh: Add missing command name + - mmc: pxamci: Fix another error handling path in pxamci_probe() + - mmc: pxamci: Fix an error handling path in pxamci_probe() + - mmc: meson-gx: Fix an error handling path in meson_mmc_probe() + - btrfs: unset reloc control if transaction commit fails in + prepare_to_relocate() + - btrfs: reset RO counter on block group if we fail to relocate + - btrfs: fix lost error handling when looking up extended ref on log replay + - cifs: Fix memory leak on the deferred close + - x86/kprobes: Fix JNG/JNLE emulation + - tracing/eprobes: Do not allow eprobes to use $stack, or % for regs + - tracing/eprobes: Do not hardcode $comm as a string + - tracing/eprobes: Have event probes be consistent with kprobes and uprobes + - tracing/probes: Have kprobes and uprobes use $COMM too + - tracing: Have filter accept "common_cpu" to be consistent + - ALSA: usb-audio: More comprehensive mixer map for ASUS ROG Zenith II + - dt-bindings: usb: mtk-xhci: Allow wakeup interrupt-names to be optional + - can: ems_usb: fix clang's -Wunaligned-access warning + - apparmor: fix quiet_denied for file rules + - Revert "UBUNTU: SAUCE: apparmor: drop prefixing abs root labels with '='" + - apparmor: fix absroot causing audited secids to begin with = + - apparmor: Fix failed mount permission check error message + - apparmor: fix aa_label_asxprint return check + - apparmor: fix setting unconfined mode on a loaded profile + - apparmor: fix overlapping attachment computation + - apparmor: fix reference count leak in aa_pivotroot() + - apparmor: Fix memleak in aa_simple_write_to_buffer() + - Documentation: ACPI: EINJ: Fix obsolete example + - NFSv4.1: Don't decrease the value of seq_nr_highest_sent + - NFSv4.1: Handle NFS4ERR_DELAY replies to OP_SEQUENCE correctly + - NFSv4: Fix races in the legacy idmapper upcall + - NFSv4.1: RECLAIM_COMPLETE must handle EACCES + - NFSv4/pnfs: Fix a use-after-free bug in open + - BPF: Fix potential bad pointer dereference in bpf_sys_bpf() + - bpf: Don't reinit map value in prealloc_lru_pop + - bpf: Acquire map uref in .init_seq_private for array map iterator + - bpf: Acquire map uref in .init_seq_private for hash map iterator + - bpf: Acquire map uref in .init_seq_private for sock local storage map + iterator + - bpf: Acquire map uref in .init_seq_private for sock{map,hash} iterator + - bpf: Check the validity of max_rdwr_access for sock local storage map + iterator + - can: mcp251x: Fix race condition on receive interrupt + - can: j1939: j1939_session_destroy(): fix memory leak of skbs + - net: atlantic: fix aq_vec index out of range error + - m68k: coldfire/device.c: protect FLEXCAN blocks + - sunrpc: fix expiry of auth creds + - SUNRPC: Fix xdr_encode_bool() + - SUNRPC: Reinitialise the backchannel request buffers before reuse + - virtio_net: fix memory leak inside XPD_TX with mergeable + - devlink: Fix use-after-free after a failed reload + - net: phy: Warn about incorrect mdio_bus_phy_resume() state + - net: bcmgenet: Indicate MAC is in charge of PHY PM + - net: bgmac: Fix a BUG triggered by wrong bytes_compl + - selftests: forwarding: Fix failing tests with old libnet + - dt-bindings: arm: qcom: fix Alcatel OneTouch Idol 3 compatibles + - pinctrl: nomadik: Fix refcount leak in nmk_pinctrl_dt_subnode_to_map + - pinctrl: qcom: msm8916: Allow CAMSS GP clocks to be muxed + - pinctrl: amd: Don't save/restore interrupt status and wake status bits + - pinctrl: sunxi: Add I/O bias setting for H6 R-PIO + - pinctrl: qcom: sm8250: Fix PDC map + - Input: exc3000 - fix return value check of wait_for_completion_timeout + - octeontx2-pf: Fix NIX_AF_TL3_TL2X_LINKX_CFG register configuration + - octeontx2-af: Apply tx nibble fixup always + - octeontx2-af: suppress external profile loading warning + - octeontx2-af: Fix mcam entry resource leak + - octeontx2-af: Fix key checking for source mac + - ACPI: property: Return type of acpi_add_nondev_subnodes() should be bool + - geneve: do not use RT_TOS for IPv6 flowlabel + - mlx5: do not use RT_TOS for IPv6 flowlabel + - ipv6: do not use RT_TOS for IPv6 flowlabel + - plip: avoid rcu debug splat + - vsock: Fix memory leak in vsock_connect() + - vsock: Set socket state back to SS_UNCONNECTED in vsock_connect_timeout() + - dt-bindings: gpio: zynq: Add missing compatible strings + - dt-bindings: arm: qcom: fix Longcheer L8150 compatibles + - dt-bindings: arm: qcom: fix MSM8916 MTP compatibles + - dt-bindings: arm: qcom: fix MSM8994 boards compatibles + - dt-bindings: clock: qcom,gcc-msm8996: add more GCC clock sources + - spi: dt-bindings: cadence: add missing 'required' + - spi: dt-bindings: zynqmp-qspi: add missing 'required' + - ceph: use correct index when encoding client supported features + - tools/vm/slabinfo: use alphabetic order when two values are equal + - ceph: don't leak snap_rwsem in handle_cap_grant + - kbuild: dummy-tools: avoid tmpdir leak in dummy gcc + - tools build: Switch to new openssl API for test-libcrypto + - NTB: ntb_tool: uninitialized heap data in tool_fn_write() + - nfp: ethtool: fix the display error of `ethtool -m DEVNAME` + - xen/xenbus: fix return type in xenbus_file_read() + - atm: idt77252: fix use-after-free bugs caused by tst_timer + - geneve: fix TOS inheriting for ipv4 + - perf probe: Fix an error handling path in 'parse_perf_probe_command()' + - perf parse-events: Fix segfault when event parser gets an error + - perf tests: Fix Track with sched_switch test for hybrid case + - dpaa2-eth: trace the allocated address instead of page struct + - fs/ntfs3: Fix using uninitialized value n when calling indx_read + - fs/ntfs3: Fix NULL deref in ntfs_update_mftmirr + - fs/ntfs3: Don't clear upper bits accidentally in log_replay() + - fs/ntfs3: Fix double free on remount + - fs/ntfs3: Do not change mode if ntfs_set_ea failed + - fs/ntfs3: Fix missing i_op in ntfs_read_mft + - nios2: page fault et.al. are *not* restartable syscalls... + - nios2: don't leave NULLs in sys_call_table[] + - nios2: traced syscall does need to check the syscall number + - nios2: fix syscall restart checks + - nios2: restarts apply only to the first sigframe we build... + - nios2: add force_successful_syscall_return() + - iavf: Fix adminq error handling + - iavf: Fix reset error handling + - ASoC: SOF: debug: Fix potential buffer overflow by snprintf() + - ASoC: tas2770: Set correct FSYNC polarity + - ASoC: tas2770: Allow mono streams + - ASoC: tas2770: Drop conflicting set_bias_level power setting + - ASoC: tas2770: Fix handling of mute/unmute + - ASoC: codec: tlv320aic32x4: fix mono playback via I2S + - netfilter: nf_tables: use READ_ONCE and WRITE_ONCE for shared generation id + access + - fs/ntfs3: uninitialized variable in ntfs_set_acl_ex() + - netfilter: nf_tables: disallow NFTA_SET_ELEM_KEY_END with + NFT_SET_ELEM_INTERVAL_END flag + - netfilter: nf_tables: possible module reference underflow in error path + - netfilter: nf_tables: really skip inactive sets when allocating name + - netfilter: nf_tables: validate NFTA_SET_ELEM_OBJREF based on NFT_SET_OBJECT + flag + - netfilter: nf_tables: NFTA_SET_ELEM_KEY_END requires concat and interval + flags + - netfilter: nf_tables: disallow NFT_SET_ELEM_CATCHALL and + NFT_SET_ELEM_INTERVAL_END + - netfilter: nf_tables: check NFT_SET_CONCAT flag if field_count is specified + - powerpc/pci: Fix get_phb_number() locking + - spi: meson-spicc: add local pow2 clock ops to preserve rate between messages + - net/sunrpc: fix potential memory leaks in rpc_sysfs_xprt_state_change() + - net: dsa: mv88e6060: prevent crash on an unused port + - mlxsw: spectrum: Clear PTP configuration after unregistering the netdevice + - net: moxa: pass pdev instead of ndev to DMA functions + - net: fix potential refcount leak in ndisc_router_discovery() + - net: dsa: microchip: ksz9477: fix fdb_dump last invalid entry + - net: dsa: felix: fix ethtool 256-511 and 512-1023 TX packet counters + - net: genl: fix error path memory leak in policy dumping + - net: dsa: don't warn in dsa_port_set_state_now() when driver doesn't support + it + - net: dsa: sja1105: fix buffer overflow in sja1105_setup_devlink_regions() + - ice: Ignore EEXIST when setting promisc mode + - i2c: imx: Make sure to unregister adapter on remove() + - regulator: pca9450: Remove restrictions for regulator-name + - i40e: Fix to stop tx_timeout recovery if GLOBR fails + - fec: Fix timer capture timing in `fec_ptp_enable_pps()` + - stmmac: intel: Add a missing clk_disable_unprepare() call in + intel_eth_pci_remove() + - igb: Add lock to avoid data race + - kbuild: fix the modules order between drivers and libs + - gcc-plugins: Undefine LATENT_ENTROPY_PLUGIN when plugin disabled for a file + - tracing/eprobes: Fix reading of string fields + - drm/imx/dcss: get rid of HPD warning message + - ASoC: SOF: Intel: hda: Define rom_status_reg in sof_intel_dsp_desc + - ASoC: SOF: Intel: hda: Fix potential buffer overflow by snprintf() + - drm/meson: Fix refcount bugs in meson_vpu_has_available_connectors() + - drm/sun4i: dsi: Prevent underflow when computing packet sizes + - net: qrtr: start MHI channel after endpoit creation + - KVM: arm64: Treat PMCR_EL1.LC as RES1 on asymmetric systems + - KVM: arm64: Reject 32bit user PSTATE on asymmetric systems + - HID: multitouch: new device class fix Lenovo X12 trackpad sticky + - PCI: Add ACS quirk for Broadcom BCM5750x NICs + - platform/chrome: cros_ec_proto: don't show MKBP version if unsupported + - usb: cdns3 fix use-after-free at workaround 2 + - usb: cdns3: fix random warning message when driver load + - usb: gadget: uvc: calculate the number of request depending on framesize + - usb: gadget: uvc: call uvc uvcg_warn on completed status instead of + uvcg_info + - PCI: aardvark: Fix reporting Slot capabilities on emulated bridge + - irqchip/tegra: Fix overflow implicit truncation warnings + - drm/meson: Fix overflow implicit truncation warnings + - clk: ti: Stop using legacy clkctrl names for omap4 and 5 + - scsi: ufs: ufs-mediatek: Fix the timing of configuring device regulators + - usb: host: ohci-ppc-of: Fix refcount leak bug + - usb: renesas: Fix refcount leak bug + - usb: dwc2: gadget: remove D+ pull-up while no vbus with usb-role-switch + - vboxguest: Do not use devm for irq + - clk: qcom: ipq8074: dont disable gcc_sleep_clk_src + - uacce: Handle parent device removal or parent driver module rmmod + - zram: do not lookup algorithm in backends table + - clk: qcom: clk-alpha-pll: fix clk_trion_pll_configure description + - scsi: lpfc: Prevent buffer overflow crashes in debugfs with malformed user + input + - scsi: lpfc: Fix possible memory leak when failing to issue CMF WQE + - gadgetfs: ep_io - wait until IRQ finishes + - coresight: etm4x: avoid build failure with unrolled loops + - habanalabs/gaudi: fix shift out of bounds + - habanalabs/gaudi: mask constant value before cast + - mmc: tmio: avoid glitches when resetting + - pinctrl: intel: Check against matching data instead of ACPI companion + - cxl: Fix a memory leak in an error handling path + - PCI/ACPI: Guard ARM64-specific mcfg_quirks + - um: add "noreboot" command line option for PANIC_TIMEOUT=-1 setups + - dmaengine: dw-axi-dmac: do not print NULL LLI during error + - dmaengine: dw-axi-dmac: ignore interrupt if no descriptor + - RDMA/rxe: Limit the number of calls to each tasklet + - csky/kprobe: reclaim insn_slot on kprobe unregistration + - selftests/kprobe: Do not test for GRP/ without event failures + - dmaengine: sprd: Cleanup in .remove() after pm_runtime_get_sync() failed + - openrisc: io: Define iounmap argument as volatile + - phy: samsung: phy-exynos-pcie: sanitize init/power_on callbacks + - md: Notify sysfs sync_completed in md_reap_sync_thread() + - nvmet-tcp: fix lockdep complaint on nvmet_tcp_wq flush during queue teardown + - drivers:md:fix a potential use-after-free bug + - ext4: avoid remove directory when directory is corrupted + - ext4: avoid resizing to a partial cluster size + - lib/list_debug.c: Detect uninitialized lists + - tty: serial: Fix refcount leak bug in ucc_uart.c + - KVM: PPC: Book3S HV: Fix "rm_exit" entry in debugfs timings + - vfio: Clear the caps->buf to NULL after free + - mips: cavium-octeon: Fix missing of_node_put() in octeon2_usb_clocks_start + - iommu/io-pgtable-arm-v7s: Add a quirk to allow pgtable PA up to 35bit + - modules: Ensure natural alignment for .altinstructions and __bug_table + sections + - ASoC: rsnd: care default case on rsnd_ssiu_busif_err_irq_ctrl() + - riscv: dts: sifive: Add fu740 topology information + - riscv: dts: canaan: Add k210 topology information + - riscv: mmap with PROT_WRITE but no PROT_READ is invalid + - RISC-V: Add fast call path of crash_kexec() + - watchdog: export lockup_detector_reconfigure + - powerpc/32: Set an IBAT covering up to _einittext during init + - powerpc/32: Don't always pass -mcpu=powerpc to the compiler + - ovl: warn if trusted xattr creation fails + - powerpc/ioda/iommu/debugfs: Generate unique debugfs entries + - ALSA: core: Add async signal helpers + - ALSA: timer: Use deferred fasync helper + - ALSA: control: Use deferred fasync helper + - f2fs: fix to avoid use f2fs_bug_on() in f2fs_new_node_page() + - f2fs: fix to do sanity check on segment type in build_sit_entries() + - smb3: check xattr value length earlier + - powerpc/64: Init jump labels before parse_early_param() + - venus: pm_helpers: Fix warning in OPP during probe + - video: fbdev: i740fb: Check the argument of i740_calc_vclk() + - MIPS: tlbex: Explicitly compare _PAGE_NO_EXEC against 0 + - can: j1939: j1939_sk_queue_activate_next_locked(): replace WARN_ON_ONCE with + netdev_warn_once() + - scsi: ufs: ufs-mediatek: Fix build error and type mismatch + - xfs: flush inodegc workqueue tasks before cancel + - xfs: reserve quota for dir expansion when linking/unlinking files + - xfs: reserve quota for target dir expansion when renaming files + - xfs: remove infinite loop when reserving free block pool + - xfs: always succeed at setting the reserve pool size + - xfs: fix overfilling of reserve pool + - xfs: fix soft lockup via spinning in filestream ag selection loop + - xfs: revert "xfs: actually bump warning counts when we send warnings" + - xfs: reject crazy array sizes being fed to XFS_IOC_GETBMAP* + - Linux 5.15.63 + * Jammy update: v5.15.62 upstream stable release (LP: #1990554) + - io_uring: use original request task for inflight tracking + - tee: add overflow check in register_shm_helper() + - net_sched: cls_route: disallow handle of 0 + - ksmbd: prevent out of bound read for SMB2_WRITE + - ksmbd: fix heap-based overflow in set_ntacl_dacl() + - btrfs: only write the sectors in the vertical stripe which has data stripes + - btrfs: raid56: don't trust any cached sector in __raid56_parity_recover() + - Linux 5.15.62 + * Jammy update: v5.15.61 upstream stable release (LP: #1990162) + - Makefile: link with -z noexecstack --no-warn-rwx-segments + - x86: link vdso and boot with -z noexecstack --no-warn-rwx-segments + - Revert "pNFS: nfs3_set_ds_client should set NFS_CS_NOPING" + - scsi: Revert "scsi: qla2xxx: Fix disk failure to rediscover" + - pNFS/flexfiles: Report RDMA connection errors to the server + - NFSD: Clean up the show_nf_flags() macro + - nfsd: eliminate the NFSD_FILE_BREAK_* flags + - ALSA: usb-audio: Add quirk for Behringer UMC202HD + - ALSA: bcd2000: Fix a UAF bug on the error path of probing + - ALSA: hda/realtek: Add quirk for Clevo NV45PZ + - ALSA: hda/realtek: Add quirk for HP Spectre x360 15-eb0xxx + - wifi: mac80211_hwsim: fix race condition in pending packet + - wifi: mac80211_hwsim: add back erroneously removed cast + - wifi: mac80211_hwsim: use 32-bit skb cookie + - add barriers to buffer_uptodate and set_buffer_uptodate + - lockd: detect and reject lock arguments that overflow + - HID: hid-input: add Surface Go battery quirk + - HID: wacom: Only report rotation for art pen + - HID: wacom: Don't register pad_input for touch switch + - KVM: nVMX: Snapshot pre-VM-Enter BNDCFGS for !nested_run_pending case + - KVM: nVMX: Snapshot pre-VM-Enter DEBUGCTL for !nested_run_pending case + - KVM: SVM: Don't BUG if userspace injects an interrupt with GIF=0 + - KVM: s390: pv: don't present the ecall interrupt twice + - KVM: x86: Split kvm_is_valid_cr4() and export only the non-vendor bits + - KVM: nVMX: Let userspace set nVMX MSR to any _host_ supported value + - KVM: nVMX: Account for KVM reserved CR4 bits in consistency checks + - KVM: nVMX: Inject #UD if VMXON is attempted with incompatible CR0/CR4 + - KVM: x86: Mark TSS busy during LTR emulation _after_ all fault checks + - KVM: x86: Set error code to segment selector on LLDT/LTR non-canonical #GP + - KVM: nVMX: Always enable TSC scaling for L2 when it was enabled for L1 + - KVM: x86: Tag kvm_mmu_x86_module_init() with __init + - KVM: x86: do not report preemption if the steal time cache is stale + - KVM: x86: revalidate steal time cache if MSR value changes + - riscv: set default pm_power_off to NULL + - ALSA: hda/conexant: Add quirk for LENOVO 20149 Notebook model + - ALSA: hda/cirrus - support for iMac 12,1 model + - ALSA: hda/realtek: Add quirk for another Asus K42JZ model + - ALSA: hda/realtek: Add a quirk for HP OMEN 15 (8786) mute LED + - tty: vt: initialize unicode screen buffer + - vfs: Check the truncate maximum size in inode_newsize_ok() + - fs: Add missing umask strip in vfs_tmpfile + - thermal: sysfs: Fix cooling_device_stats_setup() error code path + - fbcon: Fix boundary checks for fbcon=vc:n1-n2 parameters + - fbcon: Fix accelerated fbdev scrolling while logo is still shown + - usbnet: Fix linkwatch use-after-free on disconnect + - fix short copy handling in copy_mc_pipe_to_iter() + - crypto: ccp - Use kzalloc for sev ioctl interfaces to prevent kernel memory + leak + - ovl: drop WARN_ON() dentry is NULL in ovl_encode_fh() + - parisc: Fix device names in /proc/iomem + - parisc: Drop pa_swapper_pg_lock spinlock + - parisc: Check the return value of ioremap() in lba_driver_probe() + - parisc: io_pgetevents_time64() needs compat syscall in 32-bit compat mode + - riscv:uprobe fix SR_SPIE set/clear handling + - dt-bindings: riscv: fix SiFive l2-cache's cache-sets + - RISC-V: kexec: Fixup use of smp_processor_id() in preemptible context + - RISC-V: Fixup get incorrect user mode PC for kernel mode regs + - RISC-V: Fixup schedule out issue in machine_crash_shutdown() + - RISC-V: Add modules to virtual kernel memory layout dump + - rtc: rx8025: fix 12/24 hour mode detection on RX-8035 + - drm/gem: Properly annotate WW context on drm_gem_lock_reservations() error + - drm/shmem-helper: Add missing vunmap on error + - drm/vc4: hdmi: Disable audio if dmas property is present but empty + - drm/hyperv-drm: Include framebuffer and EDID headers + - drm/nouveau: fix another off-by-one in nvbios_addr + - drm/nouveau: Don't pm_runtime_put_sync(), only pm_runtime_put_autosuspend() + - drm/nouveau/acpi: Don't print error when we get -EINPROGRESS from pm_runtime + - drm/nouveau/kms: Fix failure path for creating DP connectors + - drm/amdgpu: Check BO's requested pinning domains against its + preferred_domains + - bpf: Fix KASAN use-after-free Read in compute_effective_progs + - btrfs: reject log replay if there is unsupported RO compat flag + - mtd: rawnand: arasan: Fix clock rate in NV-DDR + - mtd: rawnand: arasan: Update NAND bus clock instead of system clock + - um: Remove straying parenthesis + - um: seed rng using host OS rng + - iio: fix iio_format_avail_range() printing for none IIO_VAL_INT + - iio: light: isl29028: Fix the warning in isl29028_remove() + - scsi: sg: Allow waiting for commands to complete on removed device + - scsi: qla2xxx: Fix incorrect display of max frame size + - scsi: qla2xxx: Zero undefined mailbox IN registers + - soundwire: qcom: Check device status before reading devid + - ksmbd: fix memory leak in smb2_handle_negotiate + - ksmbd: prevent out of bound read for SMB2_TREE_CONNNECT + - ksmbd: fix use-after-free bug in smb2_tree_disconect + - fuse: limit nsec + - fuse: ioctl: translate ENOSYS + - serial: mvebu-uart: uart2 error bits clearing + - md-raid10: fix KASAN warning + - mbcache: don't reclaim used entries + - mbcache: add functions to delete entry if unused + - media: [PATCH] pci: atomisp_cmd: fix three missing checks on list iterator + - ia64, processor: fix -Wincompatible-pointer-types in ia64_get_irr() + - PCI: Add defines for normal and subtractive PCI bridges + - powerpc/fsl-pci: Fix Class Code of PCIe Root Port + - powerpc/ptdump: Fix display of RW pages on FSL_BOOK3E + - powerpc/powernv: Avoid crashing if rng is NULL + - MIPS: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK + - coresight: Clear the connection field properly + - usb: typec: ucsi: Acknowledge the GET_ERROR_STATUS command completion + - USB: HCD: Fix URB giveback issue in tasklet function + - ARM: dts: uniphier: Fix USB interrupts for PXs2 SoC + - arm64: dts: uniphier: Fix USB interrupts for PXs3 SoC + - usb: dwc3: gadget: refactor dwc3_repare_one_trb + - usb: dwc3: gadget: fix high speed multiplier setting + - netfilter: nf_tables: fix null deref due to zeroed list head + - epoll: autoremove wakers even more aggressively + - x86: Handle idle=nomwait cmdline properly for x86_idle + - arch: make TRACE_IRQFLAGS_NMI_SUPPORT generic + - arm64: Do not forget syscall when starting a new thread. + - arm64: fix oops in concurrently setting insn_emulation sysctls + - ext2: Add more validity checks for inode counts + - sched/fair: Introduce SIS_UTIL to search idle CPU based on sum of util_avg + - genirq: Don't return error on missing optional irq_request_resources() + - irqchip/mips-gic: Only register IPI domain when SMP is enabled + - genirq: GENERIC_IRQ_IPI depends on SMP + - sched/core: Always flush pending blk_plug + - irqchip/mips-gic: Check the return value of ioremap() in gic_of_init() + - wait: Fix __wait_event_hrtimeout for RT/DL tasks + - ARM: dts: imx6ul: add missing properties for sram + - ARM: dts: imx6ul: change operating-points to uint32-matrix + - ARM: dts: imx6ul: fix keypad compatible + - ARM: dts: imx6ul: fix csi node compatible + - ARM: dts: imx6ul: fix lcdif node compatible + - ARM: dts: imx6ul: fix qspi node compatible + - ARM: dts: BCM5301X: Add DT for Meraki MR26 + - ARM: dts: ux500: Fix Codina accelerometer mounting matrix + - ARM: dts: ux500: Fix Gavini accelerometer mounting matrix + - spi: synquacer: Add missing clk_disable_unprepare() + - ARM: OMAP2+: display: Fix refcount leak bug + - ARM: OMAP2+: pdata-quirks: Fix refcount leak bug + - ACPI: EC: Remove duplicate ThinkPad X1 Carbon 6th entry from DMI quirks + - ACPI: EC: Drop the EC_FLAGS_IGNORE_DSDT_GPE quirk + - ACPI: PM: save NVS memory for Lenovo G40-45 + - ACPI: LPSS: Fix missing check in register_device_clock() + - ARM: dts: qcom: sdx55: Fix the IRQ trigger type for UART + - arm64: dts: qcom: ipq8074: fix NAND node name + - arm64: dts: allwinner: a64: orangepi-win: Fix LED node name + - ARM: shmobile: rcar-gen2: Increase refcount for new reference + - firmware: tegra: Fix error check return value of debugfs_create_file() + - hwmon: (dell-smm) Add Dell XPS 13 7390 to fan control whitelist + - hwmon: (sht15) Fix wrong assumptions in device remove callback + - PM: hibernate: defer device probing when resuming from hibernation + - selinux: fix memleak in security_read_state_kernel() + - selinux: Add boundary check in put_entry() + - kasan: test: Silence GCC 12 warnings + - drm/amdgpu: Remove one duplicated ef removal + - powerpc/64s: Disable stack variable initialisation for prom_init + - spi: spi-rspi: Fix PIO fallback on RZ platforms + - ARM: findbit: fix overflowing offset + - meson-mx-socinfo: Fix refcount leak in meson_mx_socinfo_init + - arm64: dts: renesas: beacon: Fix regulator node names + - spi: spi-altera-dfl: Fix an error handling path + - ARM: bcm: Fix refcount leak in bcm_kona_smc_init + - ACPI: processor/idle: Annotate more functions to live in cpuidle section + - ARM: dts: imx7d-colibri-emmc: add cpu1 supply + - soc: renesas: r8a779a0-sysc: Fix A2DP1 and A2CV[2357] PDR values + - scsi: hisi_sas: Use managed PCI functions + - dt-bindings: iio: accel: Add DT binding doc for ADXL355 + - soc: amlogic: Fix refcount leak in meson-secure-pwrc.c + - arm64: dts: renesas: Fix thermal-sensors on single-zone sensors + - x86/pmem: Fix platform-device leak in error path + - ARM: dts: ast2500-evb: fix board compatible + - ARM: dts: ast2600-evb: fix board compatible + - ARM: dts: ast2600-evb-a1: fix board compatible + - arm64: dts: mt8192: Fix idle-states nodes naming scheme + - arm64: dts: mt8192: Fix idle-states entry-method + - arm64: select TRACE_IRQFLAGS_NMI_SUPPORT + - arm64: cpufeature: Allow different PMU versions in ID_DFR0_EL1 + - locking/lockdep: Fix lockdep_init_map_*() confusion + - arm64: dts: qcom: sc7180: Remove ipa_fw_mem node on trogdor + - soc: fsl: guts: machine variable might be unset + - block: fix infinite loop for invalid zone append + - ARM: dts: qcom: mdm9615: add missing PMIC GPIO reg + - ARM: OMAP2+: Fix refcount leak in omapdss_init_of + - ARM: OMAP2+: Fix refcount leak in omap3xxx_prm_late_init + - arm64: dts: qcom: sdm630: disable GPU by default + - arm64: dts: qcom: sdm630: fix the qusb2phy ref clock + - arm64: dts: qcom: sdm630: fix gpu's interconnect path + - arm64: dts: qcom: sdm636-sony-xperia-ganges-mermaid: correct sdc2 pinconf + - cpufreq: zynq: Fix refcount leak in zynq_get_revision + - regulator: qcom_smd: Fix pm8916_pldo range + - ACPI: APEI: Fix _EINJ vs EFI_MEMORY_SP + - ARM: dts: qcom-msm8974: fix irq type on blsp2_uart1 + - soc: qcom: ocmem: Fix refcount leak in of_get_ocmem + - soc: qcom: aoss: Fix refcount leak in qmp_cooling_devices_register + - ARM: dts: qcom: pm8841: add required thermal-sensor-cells + - bus: hisi_lpc: fix missing platform_device_put() in hisi_lpc_acpi_probe() + - stack: Declare {randomize_,}kstack_offset to fix Sparse warnings + - arm64: dts: qcom: msm8916: Fix typo in pronto remoteproc node + - ACPI: APEI: explicit init of HEST and GHES in apci_init() + - drivers/iio: Remove all strcpy() uses + - ACPI: VIOT: Fix ACS setup + - arm64: dts: qcom: sm6125: Move sdc2 pinctrl from seine-pdx201 to sm6125 + - arm64: dts: qcom: sm6125: Append -state suffix to pinctrl nodes + - arm64: dts: qcom: sm8250: add missing PCIe PHY clock-cells + - arm64: dts: mt7622: fix BPI-R64 WPS button + - arm64: tegra: Fixup SYSRAM references + - arm64: tegra: Update Tegra234 BPMP channel addresses + - arm64: tegra: Mark BPMP channels as no-memory-wc + - arm64: tegra: Fix SDMMC1 CD on P2888 + - erofs: avoid consecutive detection for Highmem memory + - blk-mq: don't create hctx debugfs dir until q->debugfs_dir is created + - spi: Fix simplification of devm_spi_register_controller + - spi: tegra20-slink: fix UAF in tegra_slink_remove() + - hwmon: (drivetemp) Add module alias + - blktrace: Trace remapped requests correctly + - PM: domains: Ensure genpd_debugfs_dir exists before remove + - dm writecache: return void from functions + - dm writecache: count number of blocks read, not number of read bios + - dm writecache: count number of blocks written, not number of write bios + - dm writecache: count number of blocks discarded, not number of discard bios + - regulator: of: Fix refcount leak bug in of_get_regulation_constraints() + - soc: qcom: Make QCOM_RPMPD depend on PM + - arm64: dts: qcom: qcs404: Fix incorrect USB2 PHYs assignment + - irqdomain: Report irq number for NOMAP domains + - drivers/perf: arm_spe: Fix consistency of SYS_PMSCR_EL1.CX + - nohz/full, sched/rt: Fix missed tick-reenabling bug in dequeue_task_rt() + - x86/extable: Fix ex_handler_msr() print condition + - selftests/seccomp: Fix compile warning when CC=clang + - thermal/tools/tmon: Include pthread and time headers in tmon.h + - dm: return early from dm_pr_call() if DM device is suspended + - pwm: sifive: Simplify offset calculation for PWMCMP registers + - pwm: sifive: Ensure the clk is enabled exactly once per running PWM + - pwm: sifive: Shut down hardware only after pwmchip_remove() completed + - pwm: lpc18xx-sct: Reduce number of devm memory allocations + - pwm: lpc18xx-sct: Simplify driver by not using pwm_[gs]et_chip_data() + - pwm: lpc18xx: Fix period handling + - drm/dp: Export symbol / kerneldoc fixes for DP AUX bus + - drm/bridge: tc358767: Move (e)DP bridge endpoint parsing into dedicated + function + - ath10k: do not enforce interrupt trigger type + - drm/st7735r: Fix module autoloading for Okaya RH128128T + - drm/panel: Fix build error when CONFIG_DRM_PANEL_SAMSUNG_ATNA33XC20=y && + CONFIG_DRM_DISPLAY_HELPER=m + - wifi: rtlwifi: fix error codes in rtl_debugfs_set_write_h2c() + - ath11k: fix netdev open race + - drm/mipi-dbi: align max_chunk to 2 in spi_transfer + - ath11k: Fix incorrect debug_mask mappings + - drm/radeon: fix potential buffer overflow in ni_set_mc_special_registers() + - drm/mediatek: Modify dsi funcs to atomic operations + - drm/mediatek: Separate poweron/poweroff from enable/disable and define new + funcs + - drm/mediatek: Add pull-down MIPI operation in mtk_dsi_poweroff function + - drm/meson: encoder_hdmi: switch to bridge DRM_BRIDGE_ATTACH_NO_CONNECTOR + - drm/meson: encoder_hdmi: Fix refcount leak in meson_encoder_hdmi_init + - drm/bridge: lt9611uxc: Cancel only driver's work + - i2c: npcm: Remove own slave addresses 2:10 + - i2c: npcm: Correct slave role behavior + - i2c: mxs: Silence a clang warning + - virtio-gpu: fix a missing check to avoid NULL dereference + - drm/shmem-helper: Unexport drm_gem_shmem_create_with_handle() + - drm/shmem-helper: Export dedicated wrappers for GEM object functions + - drm/shmem-helper: Pass GEM shmem object in public interfaces + - drm/virtio: Fix NULL vs IS_ERR checking in virtio_gpu_object_shmem_init + - drm: adv7511: override i2c address of cec before accessing it + - crypto: sun8i-ss - do not allocate memory when handling hash requests + - crypto: sun8i-ss - fix error codes in allocate_flows() + - net: fix sk_wmem_schedule() and sk_rmem_schedule() errors + - can: netlink: allow configuring of fixed bit rates without need for + do_set_bittiming callback + - can: netlink: allow configuring of fixed data bit rates without need for + do_set_data_bittiming callback + - i2c: Fix a potential use after free + - crypto: sun8i-ss - fix infinite loop in sun8i_ss_setup_ivs() + - media: atmel: atmel-sama7g5-isc: fix warning in configs without OF + - media: tw686x: Register the irq at the end of probe + - media: imx-jpeg: Correct some definition according specification + - media: imx-jpeg: Leave a blank space before the configuration data + - media: imx-jpeg: Add pm-runtime support for imx-jpeg + - media: imx-jpeg: use NV12M to represent non contiguous NV12 + - media: imx-jpeg: Set V4L2_BUF_FLAG_LAST at eos + - media: imx-jpeg: Refactor function mxc_jpeg_parse + - media: imx-jpeg: Identify and handle precision correctly + - media: imx-jpeg: Handle source change in a function + - media: imx-jpeg: Support dynamic resolution change + - media: imx-jpeg: Align upwards buffer size + - media: imx-jpeg: Implement drain using v4l2-mem2mem helpers + - wifi: iwlegacy: 4965: fix potential off-by-one overflow in + il4965_rs_fill_link_cmd() + - drm/radeon: fix incorrrect SPDX-License-Identifiers + - rcutorture: Warn on individual rcu_torture_init() error conditions + - rcutorture: Don't cpuhp_remove_state() if cpuhp_setup_state() failed + - rcutorture: Fix ksoftirqd boosting timing and iteration + - test_bpf: fix incorrect netdev features + - crypto: ccp - During shutdown, check SEV data pointer before using + - drm: bridge: adv7511: Add check for mipi_dsi_driver_register + - media: imx-jpeg: Disable slot interrupt when frame done + - drm/mcde: Fix refcount leak in mcde_dsi_bind + - media: hdpvr: fix error value returns in hdpvr_read + - media: v4l2-mem2mem: prevent pollerr when last_buffer_dequeued is set + - media: driver/nxp/imx-jpeg: fix a unexpected return value problem + - media: tw686x: Fix memory leak in tw686x_video_init + - drm/vc4: plane: Remove subpixel positioning check + - drm/vc4: plane: Fix margin calculations for the right/bottom edges + - drm/bridge: Add a function to abstract away panels + - drm/vc4: dsi: Switch to devm_drm_of_get_bridge + - drm/vc4: Use of_device_get_match_data() + - drm/vc4: dsi: Release workaround buffer and DMA + - drm/vc4: dsi: Correct DSI divider calculations + - drm/vc4: dsi: Correct pixel order for DSI0 + - drm/vc4: dsi: Register dsi0 as the correct vc4 encoder type + - drm/vc4: dsi: Fix dsi0 interrupt support + - drm/vc4: dsi: Add correct stop condition to vc4_dsi_encoder_disable + iteration + - drm/vc4: hdmi: Fix HPD GPIO detection + - drm/vc4: hdmi: Avoid full hdmi audio fifo writes + - drm/vc4: hdmi: Reset HDMI MISC_CONTROL register + - drm/vc4: hdmi: Fix timings for interlaced modes + - drm/vc4: hdmi: Correct HDMI timing registers for interlaced modes + - crypto: arm64/gcm - Select AEAD for GHASH_ARM64_CE + - selftests/xsk: Destroy BPF resources only when ctx refcount drops to 0 + - drm/rockchip: vop: Don't crash for invalid duplicate_state() + - drm/rockchip: Fix an error handling path rockchip_dp_probe() + - drm/mediatek: dpi: Remove output format of YUV + - drm/mediatek: dpi: Only enable dpi after the bridge is enabled + - drm: bridge: sii8620: fix possible off-by-one + - hinic: Use the bitmap API when applicable + - net: hinic: fix bug that ethtool get wrong stats + - net: hinic: avoid kernel hung in hinic_get_stats64() + - drm/msm/mdp5: Fix global state lock backoff + - crypto: hisilicon/sec - don't sleep when in softirq + - crypto: hisilicon - Kunpeng916 crypto driver don't sleep when in softirq + - media: platform: mtk-mdp: Fix mdp_ipi_comm structure alignment + - drm/msm: Avoid dirtyfb stalls on video mode displays (v2) + - drm/msm/dpu: Fix for non-visible planes + - mt76: mt76x02u: fix possible memory leak in __mt76x02u_mcu_send_msg + - mt76: mt7615: do not update pm stats in case of error + - ieee80211: add EHT 1K aggregation definitions + - mt76: mt7921: fix aggregation subframes setting to HE max + - mt76: mt7921: enlarge maximum VHT MPDU length to 11454 + - mediatek: mt76: mac80211: Fix missing of_node_put() in mt76_led_init() + - mediatek: mt76: eeprom: fix missing of_node_put() in + mt76_find_power_limits_node() + - skmsg: Fix invalid last sg check in sk_msg_recvmsg() + - drm/exynos/exynos7_drm_decon: free resources when clk_set_parent() failed. + - tcp: make retransmitted SKB fit into the send window + - libbpf: Fix the name of a reused map + - selftests: timers: valid-adjtimex: build fix for newer toolchains + - selftests: timers: clocksource-switch: fix passing errors from child + - bpf: Fix subprog names in stack traces. + - fs: check FMODE_LSEEK to control internal pipe splicing + - media: cedrus: h265: Fix flag name + - media: hantro: postproc: Fix motion vector space size + - media: hantro: Simplify postprocessor + - media: hevc: Embedded indexes in RPS + - media: staging: media: hantro: Fix typos + - wifi: wil6210: debugfs: fix info leak in wil_write_file_wmi() + - wifi: p54: Fix an error handling path in p54spi_probe() + - wifi: p54: add missing parentheses in p54_flush() + - selftests/bpf: fix a test for snprintf() overflow + - libbpf: fix an snprintf() overflow check + - can: pch_can: do not report txerr and rxerr during bus-off + - can: rcar_can: do not report txerr and rxerr during bus-off + - can: sja1000: do not report txerr and rxerr during bus-off + - can: hi311x: do not report txerr and rxerr during bus-off + - can: sun4i_can: do not report txerr and rxerr during bus-off + - can: kvaser_usb_hydra: do not report txerr and rxerr during bus-off + - can: kvaser_usb_leaf: do not report txerr and rxerr during bus-off + - can: usb_8dev: do not report txerr and rxerr during bus-off + - can: error: specify the values of data[5..7] of CAN error frames + - can: pch_can: pch_can_error(): initialize errc before using it + - Bluetooth: hci_intel: Add check for platform_driver_register + - i2c: cadence: Support PEC for SMBus block read + - i2c: mux-gpmux: Add of_node_put() when breaking out of loop + - wifi: wil6210: debugfs: fix uninitialized variable use in + `wil_write_file_wmi()` + - wifi: iwlwifi: mvm: fix double list_add at iwl_mvm_mac_wake_tx_queue + - wifi: libertas: Fix possible refcount leak in if_usb_probe() + - media: cedrus: hevc: Add check for invalid timestamp + - net/mlx5e: Remove WARN_ON when trying to offload an unsupported TLS + cipher/version + - net/mlx5e: Fix the value of MLX5E_MAX_RQ_NUM_MTTS + - net/mlx5: Adjust log_max_qp to be 18 at most + - crypto: hisilicon/hpre - don't use GFP_KERNEL to alloc mem during softirq + - crypto: inside-secure - Add missing MODULE_DEVICE_TABLE for of + - crypto: hisilicon/sec - fix auth key size error + - inet: add READ_ONCE(sk->sk_bound_dev_if) in INET_MATCH() + - ipv6: add READ_ONCE(sk->sk_bound_dev_if) in INET6_MATCH() + - net: allow unbound socket for packets in VRF when tcp_l3mdev_accept set + - netdevsim: fib: Fix reference count leak on route deletion failure + - wifi: rtw88: check the return value of alloc_workqueue() + - iavf: Fix max_rate limiting + - iavf: Fix 'tc qdisc show' listing too many queues + - netdevsim: Avoid allocation warnings triggered from user space + - net: rose: fix netdev reference changes + - net: ionic: fix error check for vlan flags in ionic_set_nic_features() + - dccp: put dccp_qpolicy_full() and dccp_qpolicy_push() in the same lock + - net: usb: make USB_RTL8153_ECM non user configurable + - wireguard: ratelimiter: use hrtimer in selftest + - wireguard: allowedips: don't corrupt stack when detecting overflow + - HID: amd_sfh: Don't show client init failed as error when discovery fails + - clk: renesas: r9a06g032: Fix UART clkgrp bitsel + - mtd: maps: Fix refcount leak in of_flash_probe_versatile + - mtd: maps: Fix refcount leak in ap_flash_init + - mtd: rawnand: meson: Fix a potential double free issue + - of: check previous kernel's ima-kexec-buffer against memory bounds + - scsi: qla2xxx: edif: Reduce Initiator-Initiator thrashing + - scsi: qla2xxx: edif: Fix potential stuck session in sa update + - scsi: qla2xxx: edif: Reduce connection thrash + - scsi: qla2xxx: edif: Fix inconsistent check of db_flags + - scsi: qla2xxx: edif: Synchronize NPIV deletion with authentication + application + - scsi: qla2xxx: edif: Add retry for ELS passthrough + - scsi: qla2xxx: edif: Fix n2n discovery issue with secure target + - scsi: qla2xxx: edif: Fix n2n login retry for secure device + - KVM: SVM: Unwind "speculative" RIP advancement if INTn injection "fails" + - KVM: SVM: Stuff next_rip on emulated INT3 injection if NRIPS is supported + - phy: samsung: exynosautov9-ufs: correct TSRV register configurations + - PCI: microchip: Fix refcount leak in mc_pcie_init_irq_domains() + - PCI: tegra194: Fix PM error handling in tegra_pcie_config_ep() + - HID: cp2112: prevent a buffer overflow in cp2112_xfer() + - mtd: sm_ftl: Fix deadlock caused by cancel_work_sync in sm_release + - mtd: partitions: Fix refcount leak in parse_redboot_of + - mtd: parsers: ofpart: Fix refcount leak in bcm4908_partitions_fw_offset + - mtd: st_spi_fsm: Add a clk_disable_unprepare() in .probe()'s error path + - PCI: mediatek-gen3: Fix refcount leak in mtk_pcie_init_irq_domains() + - fpga: altera-pr-ip: fix unsigned comparison with less than zero + - usb: host: Fix refcount leak in ehci_hcd_ppc_of_probe + - usb: ohci-nxp: Fix refcount leak in ohci_hcd_nxp_probe + - usb: gadget: tegra-xudc: Fix error check in tegra_xudc_powerdomain_init() + - usb: xhci: tegra: Fix error check + - netfilter: xtables: Bring SPDX identifier back + - scsi: qla2xxx: edif: Send LOGO for unexpected IKE message + - scsi: qla2xxx: edif: Reduce disruption due to multiple app start + - scsi: qla2xxx: edif: Fix no login after app start + - scsi: qla2xxx: edif: Tear down session if keys have been removed + - scsi: qla2xxx: edif: Fix session thrash + - scsi: qla2xxx: edif: Fix no logout on delete for N2N + - iio: accel: bma400: Fix the scale min and max macro values + - platform/chrome: cros_ec: Always expose last resume result + - iio: accel: bma400: Reordering of header files + - clk: mediatek: reset: Fix written reset bit offset + - lib/test_hmm: avoid accessing uninitialized pages + - memremap: remove support for external pgmap refcounts + - mm/memremap: fix memunmap_pages() race with get_dev_pagemap() + - KVM: Don't set Accessed/Dirty bits for ZERO_PAGE + - mwifiex: Ignore BTCOEX events from the 88W8897 firmware + - mwifiex: fix sleep in atomic context bugs caused by dev_coredumpv + - scsi: iscsi: Allow iscsi_if_stop_conn() to be called from kernel + - scsi: iscsi: Add helper to remove a session from the kernel + - scsi: iscsi: Fix session removal on shutdown + - dmaengine: dw-edma: Fix eDMA Rd/Wr-channels and DMA-direction semantics + - mtd: dataflash: Add SPI ID table + - clk: qcom: camcc-sm8250: Fix halt on boot by reducing driver's init level + - misc: rtsx: Fix an error handling path in rtsx_pci_probe() + - driver core: fix potential deadlock in __driver_attach + - clk: qcom: clk-krait: unlock spin after mux completion + - clk: qcom: gcc-msm8939: Add missing SYSTEM_MM_NOC_BFDCD_CLK_SRC + - clk: qcom: gcc-msm8939: Fix bimc_ddr_clk_src rcgr base address + - clk: qcom: gcc-msm8939: Add missing system_mm_noc_bfdcd_clk_src + - clk: qcom: gcc-msm8939: Point MM peripherals to system_mm_noc clock + - usb: host: xhci: use snprintf() in xhci_decode_trb() + - RDMA/rxe: Fix deadlock in rxe_do_local_ops() + - clk: qcom: ipq8074: fix NSS core PLL-s + - clk: qcom: ipq8074: SW workaround for UBI32 PLL lock + - clk: qcom: ipq8074: fix NSS port frequency tables + - clk: qcom: ipq8074: set BRANCH_HALT_DELAY flag for UBI clocks + - clk: qcom: camcc-sdm845: Fix topology around titan_top power domain + - clk: qcom: camcc-sm8250: Fix topology around titan_top power domain + - clk: qcom: clk-rcg2: Fail Duty-Cycle configuration if MND divider is not + enabled. + - clk: qcom: clk-rcg2: Make sure to not write d=0 to the NMD register + - mm/mempolicy: fix get_nodes out of bound access + - PCI: dwc: Stop link on host_init errors and de-initialization + - PCI: dwc: Add unroll iATU space support to dw_pcie_disable_atu() + - PCI: dwc: Disable outbound windows only for controllers using iATU + - PCI: dwc: Set INCREASE_REGION_SIZE flag based on limit address + - PCI: dwc: Deallocate EPC memory on dw_pcie_ep_init() errors + - PCI: dwc: Always enable CDM check if "snps,enable-cdm-check" exists + - soundwire: bus_type: fix remove and shutdown support + - soundwire: revisit driver bind/unbind and callbacks + - KVM: arm64: Don't return from void function + - dmaengine: sf-pdma: Add multithread support for a DMA channel + - PCI: endpoint: Don't stop controller when unbinding endpoint function + - scsi: qla2xxx: Check correct variable in qla24xx_async_gffid() + - intel_th: Fix a resource leak in an error handling path + - intel_th: msu-sink: Potential dereference of null pointer + - intel_th: msu: Fix vmalloced buffers + - binder: fix redefinition of seq_file attributes + - staging: rtl8192u: Fix sleep in atomic context bug in + dm_fsync_timer_callback + - mmc: sdhci-of-esdhc: Fix refcount leak in esdhc_signal_voltage_switch + - mmc: mxcmmc: Silence a clang warning + - mmc: renesas_sdhi: Get the reset handle early in the probe + - memstick/ms_block: Fix some incorrect memory allocation + - memstick/ms_block: Fix a memory leak + - mmc: sdhci-of-at91: fix set_uhs_signaling rewriting of MC1R + - of: device: Fix missing of_node_put() in of_dma_set_restricted_buffer + - mmc: block: Add single read for 4k sector cards + - KVM: s390: pv: leak the topmost page table when destroy fails + - PCI: qcom: Set up rev 2.1.0 PARF_PHY before enabling clocks + - scsi: smartpqi: Fix DMA direction for RAID requests + - xtensa: iss/network: provide release() callback + - xtensa: iss: fix handling error cases in iss_net_configure() + - usb: gadget: udc: amd5536 depends on HAS_DMA + - usb: aspeed-vhub: Fix refcount leak bug in ast_vhub_init_desc() + - usb: dwc3: core: Deprecate GCTL.CORESOFTRESET + - usb: dwc3: core: Do not perform GCTL_CORE_SOFTRESET during bootup + - usb: dwc3: qcom: fix missing optional irq warnings + - eeprom: idt_89hpesx: uninitialized data in idt_dbgfs_csr_write() + - phy: stm32: fix error return in stm32_usbphyc_phy_init + - interconnect: imx: fix max_node_id + - um: random: Don't initialise hwrng struct with zero + - RDMA/irdma: Fix a window for use-after-free + - RDMA/irdma: Fix VLAN connection with wildcard address + - RDMA/irdma: Fix setting of QP context err_rq_idx_valid field + - RDMA/rtrs-srv: Fix modinfo output for stringify + - RDMA/rtrs: Fix warning when use poll mode on client side. + - RDMA/rtrs: Replace duplicate check with is_pollqueue helper + - RDMA/rtrs: Introduce destroy_cq helper + - RDMA/rtrs: Do not allow sessname to contain special symbols / and . + - RDMA/rtrs: Rename rtrs_sess to rtrs_path + - RDMA/rtrs-srv: Rename rtrs_srv_sess to rtrs_srv_path + - RDMA/rtrs-clt: Rename rtrs_clt_sess to rtrs_clt_path + - RDMA/rtrs-clt: Replace list_next_or_null_rr_rcu with an inline function + - RDMA/qedr: Fix potential memory leak in __qedr_alloc_mr() + - RDMA/hns: Fix incorrect clearing of interrupt status register + - RDMA/siw: Fix duplicated reported IW_CM_EVENT_CONNECT_REPLY event + - iio: cros: Register FIFO callback after sensor is registered + - clk: qcom: gcc-msm8939: Fix weird field spacing in ftbl_gcc_camss_cci_clk + - RDMA/hfi1: fix potential memory leak in setup_base_ctxt() + - gpio: gpiolib-of: Fix refcount bugs in of_mm_gpiochip_add_data() + - HID: mcp2221: prevent a buffer overflow in mcp_smbus_write() + - HID: amd_sfh: Add NULL check for hid device + - dmaengine: imx-dma: Cast of_device_get_match_data() with (uintptr_t) + - scripts/gdb: lx-dmesg: read records individually + - scripts/gdb: fix 'lx-dmesg' on 32 bits arch + - RDMA/rxe: Fix mw bind to allow any consumer key portion + - mmc: cavium-octeon: Add of_node_put() when breaking out of loop + - mmc: cavium-thunderx: Add of_node_put() when breaking out of loop + - HID: alps: Declare U1_UNICORN_LEGACY support + - RDMA/rxe: For invalidate compare according to set keys in mr + - PCI: tegra194: Fix Root Port interrupt handling + - PCI: tegra194: Fix link up retry sequence + - HID: amd_sfh: Handle condition of "no sensors" + - USB: serial: fix tty-port initialized comments + - usb: cdns3: change place of 'priv_ep' assignment in + cdns3_gadget_ep_dequeue(), cdns3_gadget_ep_enable() + - mtd: spi-nor: fix spi_nor_spimem_setup_op() call in + spi_nor_erase_{sector,chip}() + - KVM: nVMX: Set UMIP bit CR4_FIXED1 MSR when emulating UMIP + - platform/olpc: Fix uninitialized data in debugfs write + - RDMA/srpt: Duplicate port name members + - RDMA/srpt: Introduce a reference count in struct srpt_device + - RDMA/srpt: Fix a use-after-free + - android: binder: stop saving a pointer to the VMA + - mm/mmap.c: fix missing call to vm_unacct_memory in mmap_region + - selftests: kvm: set rax before vmcall + - of/fdt: declared return type does not match actual return type + - RDMA/mlx5: Add missing check for return value in get namespace flow + - RDMA/rxe: Add memory barriers to kernel queues + - RDMA/rxe: Remove the is_user members of struct rxe_sq/rxe_rq/rxe_srq + - RDMA/rxe: Fix error unwind in rxe_create_qp() + - block/rnbd-srv: Set keep_id to true after mutex_trylock + - null_blk: fix ida error handling in null_add_dev() + - nvme: use command_id instead of req->tag in trace_nvme_complete_rq() + - nvme: define compat_ioctl again to unbreak 32-bit userspace. + - nvme: disable namespace access for unsupported metadata + - nvme: don't return an error from nvme_configure_metadata + - nvme: catch -ENODEV from nvme_revalidate_zones again + - block/bio: remove duplicate append pages code + - block: ensure iov_iter advances for added pages + - jbd2: fix outstanding credits assert in jbd2_journal_commit_transaction() + - ext4: recover csum seed of tmp_inode after migrating to extents + - jbd2: fix assertion 'jh->b_frozen_data == NULL' failure when journal aborted + - usb: cdns3: Don't use priv_dev uninitialized in cdns3_gadget_ep_enable() + - opp: Fix error check in dev_pm_opp_attach_genpd() + - ASoC: cros_ec_codec: Fix refcount leak in cros_ec_codec_platform_probe + - ASoC: samsung: Fix error handling in aries_audio_probe + - ASoC: imx-audmux: Silence a clang warning + - ASoC: mediatek: mt8173: Fix refcount leak in mt8173_rt5650_rt5676_dev_probe + - ASoC: mt6797-mt6351: Fix refcount leak in mt6797_mt6351_dev_probe + - ASoC: codecs: da7210: add check for i2c_add_driver + - ASoC: mediatek: mt8173-rt5650: Fix refcount leak in mt8173_rt5650_dev_probe + - serial: 8250: Export ICR access helpers for internal use + - serial: 8250: dma: Allow driver operations before starting DMA transfers + - serial: 8250_dw: Store LSR into lsr_saved_flags in dw8250_tx_wait_empty() + - ASoC: codecs: msm8916-wcd-digital: move gains from SX_TLV to S8_TLV + - ASoC: codecs: wcd9335: move gains from SX_TLV to S8_TLV + - rpmsg: char: Add mutex protection for rpmsg_eptdev_open() + - rpmsg: mtk_rpmsg: Fix circular locking dependency + - remoteproc: k3-r5: Fix refcount leak in k3_r5_cluster_of_init + - selftests/livepatch: better synchronize test_klp_callbacks_busy + - profiling: fix shift too large makes kernel panic + - remoteproc: imx_rproc: Fix refcount leak in imx_rproc_addr_init + - ASoC: samsung: h1940_uda1380: include proepr GPIO consumer header + - powerpc/perf: Optimize clearing the pending PMI and remove WARN_ON for PMI + check in power_pmu_disable + - ASoC: samsung: change gpiod_speaker_power and rx1950_audio from global to + static variables + - tty: n_gsm: Delete gsmtty open SABM frame when config requester + - tty: n_gsm: fix user open not possible at responder until initiator open + - tty: n_gsm: fix tty registration before control channel open + - tty: n_gsm: fix wrong queuing behavior in gsm_dlci_data_output() + - tty: n_gsm: fix missing timer to handle stalled links + - tty: n_gsm: fix non flow control frames during mux flow off + - tty: n_gsm: fix packet re-transmission without open control channel + - tty: n_gsm: fix race condition in gsmld_write() + - tty: n_gsm: fix resource allocation order in gsm_activate_mux() + - ASoC: qcom: Fix missing of_node_put() in + asoc_qcom_lpass_cpu_platform_probe() + - ASoC: imx-card: Fix DSD/PDM mclk frequency + - remoteproc: qcom: wcnss: Fix handling of IRQs + - vfio/ccw: Do not change FSM state in subchannel event + - serial: 8250_fsl: Don't report FE, PE and OE twice + - tty: n_gsm: fix wrong T1 retry count handling + - tty: n_gsm: fix DM command + - tty: n_gsm: fix missing corner cases in gsmld_poll() + - MIPS: vdso: Utilize __pa() for gic_pfn + - swiotlb: fail map correctly with failed io_tlb_default_mem + - ASoC: mt6359: Fix refcount leak bug + - serial: 8250_bcm7271: Save/restore RTS in suspend/resume + - iommu/exynos: Handle failed IOMMU device registration properly + - 9p: fix a bunch of checkpatch warnings + - 9p: Drop kref usage + - 9p: Add client parameter to p9_req_put() + - net: 9p: fix refcount leak in p9_read_work() error handling + - MIPS: Fixed __debug_virt_addr_valid() + - rpmsg: qcom_smd: Fix refcount leak in qcom_smd_parse_edge + - kfifo: fix kfifo_to_user() return type + - lib/smp_processor_id: fix imbalanced instrumentation_end() call + - proc: fix a dentry lock race between release_task and lookup + - remoteproc: qcom: pas: Check if coredump is enabled + - remoteproc: sysmon: Wait for SSCTL service to come up + - mfd: t7l66xb: Drop platform disable callback + - mfd: max77620: Fix refcount leak in max77620_initialise_fps + - iommu/arm-smmu: qcom_iommu: Add of_node_put() when breaking out of loop + - perf tools: Fix dso_id inode generation comparison + - s390/dump: fix old lowcore virtual vs physical address confusion + - s390/maccess: fix semantics of memcpy_real() and its callers + - s390/crash: fix incorrect number of bytes to copy to user space + - s390/zcore: fix race when reading from hardware system area + - ASoC: fsl_asrc: force cast the asrc_format type + - ASoC: fsl-asoc-card: force cast the asrc_format type + - ASoC: fsl_easrc: use snd_pcm_format_t type for sample_format + - ASoC: imx-card: use snd_pcm_format_t type for asrc_format + - ASoC: qcom: q6dsp: Fix an off-by-one in q6adm_alloc_copp() + - fuse: Remove the control interface for virtio-fs + - ASoC: audio-graph-card: Add of_node_put() in fail path + - watchdog: sp5100_tco: Fix a memory leak of EFCH MMIO resource + - watchdog: armada_37xx_wdt: check the return value of devm_ioremap() in + armada_37xx_wdt_probe() + - video: fbdev: amba-clcd: Fix refcount leak bugs + - video: fbdev: sis: fix typos in SiS_GetModeID() + - ASoC: mchp-spdifrx: disable end of block interrupt on failures + - powerpc/32: Call mmu_mark_initmem_nx() regardless of data block mapping. + - powerpc/32: Do not allow selection of e5500 or e6500 CPUs on PPC32 + - powerpc/iommu: Fix iommu_table_in_use for a small default DMA window case + - powerpc/pci: Prefer PCI domain assignment via DT 'linux,pci-domain' and + alias + - tty: serial: fsl_lpuart: correct the count of break characters + - s390/dump: fix os_info virtual vs physical address confusion + - s390/smp: cleanup target CPU callback starting + - s390/smp: cleanup control register update routines + - s390/maccess: rework absolute lowcore accessors + - s390/smp: enforce lowcore protection on CPU restart + - f2fs: fix to remove F2FS_COMPR_FL and tag F2FS_NOCOMP_FL at the same time + - powerpc/spufs: Fix refcount leak in spufs_init_isolated_loader + - powerpc/xive: Fix refcount leak in xive_get_max_prio + - powerpc/cell/axon_msi: Fix refcount leak in setup_msi_msg_address + - perf symbol: Fail to read phdr workaround + - kprobes: Forbid probing on trampoline and BPF code areas + - x86/bus_lock: Don't assume the init value of DEBUGCTLMSR.BUS_LOCK_DETECT to + be zero + - powerpc/pci: Fix PHB numbering when using opal-phbid + - genelf: Use HAVE_LIBCRYPTO_SUPPORT, not the never defined HAVE_LIBCRYPTO + - scripts/faddr2line: Fix vmlinux detection on arm64 + - sched/deadline: Merge dl_task_can_attach() and dl_cpu_busy() + - sched, cpuset: Fix dl_cpu_busy() panic due to empty cs->cpus_allowed + - x86/numa: Use cpumask_available instead of hardcoded NULL check + - video: fbdev: arkfb: Fix a divide-by-zero bug in ark_set_pixclock() + - tools/thermal: Fix possible path truncations + - sched: Fix the check of nr_running at queue wakelist + - sched: Remove the limitation of WF_ON_CPU on wakelist if wakee cpu is idle + - sched/core: Do not requeue task on CPU excluded from cpus_mask + - f2fs: allow compression for mmap files in compress_mode=user + - f2fs: do not allow to decompress files have FI_COMPRESS_RELEASED + - video: fbdev: vt8623fb: Check the size of screen before memset_io() + - video: fbdev: arkfb: Check the size of screen before memset_io() + - video: fbdev: s3fb: Check the size of screen before memset_io() + - scsi: ufs: core: Correct ufshcd_shutdown() flow + - scsi: zfcp: Fix missing auto port scan and thus missing target ports + - scsi: qla2xxx: Fix imbalance vha->vref_count + - scsi: qla2xxx: Fix discovery issues in FC-AL topology + - scsi: qla2xxx: Turn off multi-queue for 8G adapters + - scsi: qla2xxx: Fix crash due to stale SRB access around I/O timeouts + - scsi: qla2xxx: Fix excessive I/O error messages by default + - scsi: qla2xxx: Fix erroneous mailbox timeout after PCI error injection + - scsi: qla2xxx: Wind down adapter after PCIe error + - scsi: qla2xxx: Fix losing FCP-2 targets on long port disable with I/Os + - scsi: qla2xxx: Fix losing target when it reappears during delete + - scsi: qla2xxx: Fix losing FCP-2 targets during port perturbation tests + - x86/bugs: Enable STIBP for IBPB mitigated RETBleed + - ftrace/x86: Add back ftrace_expected assignment + - x86/kprobes: Update kcb status flag after singlestepping + - x86/olpc: fix 'logical not is only applied to the left hand side' + - SMB3: fix lease break timeout when multiple deferred close handles for the + same file. + - Input: gscps2 - check return value of ioremap() in gscps2_probe() + - __follow_mount_rcu(): verify that mount_lock remains unchanged + - spmi: trace: fix stack-out-of-bound access in SPMI tracing functions + - drm/mediatek: Allow commands to be sent during video mode + - drm/mediatek: Keep dsi as LP00 before dcs cmds transfer + - crypto: blake2s - remove shash module + - [Config] updateconfigs for CRYPTO_LIB_BLAKE2S + - drm/vc4: drv: Adopt the dma configuration from the HVS or V3D component + - usbnet: smsc95xx: Don't clear read-only PHY interrupt + - usbnet: smsc95xx: Avoid link settings race on interrupt reception + - firmware: arm_scpi: Ensure scpi_info is not assigned if the probe fails + - scsi: lpfc: SLI path split: Refactor lpfc_iocbq + - scsi: lpfc: SLI path split: Refactor fast and slow paths to native SLI4 + - scsi: lpfc: SLI path split: Refactor SCSI paths + - scsi: lpfc: Remove extra atomic_inc on cmd_pending in queuecommand after + VMID + - intel_th: pci: Add Meteor Lake-P support + - intel_th: pci: Add Raptor Lake-S PCH support + - intel_th: pci: Add Raptor Lake-S CPU support + - KVM: set_msr_mce: Permit guests to ignore single-bit ECC errors + - KVM: x86: Signal #GP, not -EPERM, on bad WRMSR(MCi_CTL/STATUS) + - iommu/vt-d: avoid invalid memory access via node_online(NUMA_NO_NODE) + - PCI/AER: Iterate over error counters instead of error strings + - PCI: qcom: Power on PHY before IPQ8074 DBI register accesses + - serial: 8250_pci: Refactor the loop in pci_ite887x_init() + - serial: 8250_pci: Replace dev_*() by pci_*() macros + - serial: 8250: Fold EndRun device support into OxSemi Tornado code + - serial: 8250: Add proper clock handling for OxSemi PCIe devices + - tty: 8250: Add support for Brainboxes PX cards. + - dm writecache: set a default MAX_WRITEBACK_JOBS + - kexec, KEYS, s390: Make use of built-in and secondary keyring for signature + verification + - dm thin: fix use-after-free crash in dm_sm_register_threshold_callback + - net/9p: Initialize the iounit field during fid creation + - ARM: remove some dead code + - timekeeping: contribute wall clock to rng on time change + - locking/csd_lock: Change csdlock_debug from early_param to __setup + - block: remove the struct blk_queue_ctx forward declaration + - block: don't allow the same type rq_qos add more than once + - btrfs: ensure pages are unlocked on cow_file_range() failure + - btrfs: reset block group chunk force if we have to wait + - btrfs: properly flag filesystem with BTRFS_FEATURE_INCOMPAT_BIG_METADATA + - ACPI: CPPC: Do not prevent CPPC from working in the future + - powerpc/powernv/kvm: Use darn for H_RANDOM on Power9 + - KVM: x86/pmu: Introduce the ctrl_mask value for fixed counter + - KVM: VMX: Mark all PERF_GLOBAL_(OVF)_CTRL bits reserved if there's no vPMU + - KVM: x86/pmu: Ignore pmu->global_ctrl check if vPMU doesn't support + global_ctrl + - KVM: VMX: Add helper to check if the guest PMU has PERF_GLOBAL_CTRL + - KVM: nVMX: Attempt to load PERF_GLOBAL_CTRL on nVMX xfer iff it exists + - dm raid: fix address sanitizer warning in raid_status + - dm raid: fix address sanitizer warning in raid_resume + - tracing: Add '__rel_loc' using trace event macros + - tracing: Avoid -Warray-bounds warning for __rel_loc macro + - ext4: update s_overhead_clusters in the superblock during an on-line resize + - ext4: fix extent status tree race in writeback error recovery path + - ext4: add EXT4_INODE_HAS_XATTR_SPACE macro in xattr.h + - ext4: fix use-after-free in ext4_xattr_set_entry + - ext4: correct max_inline_xattr_value_size computing + - ext4: correct the misjudgment in ext4_iget_extra_inode + - ext4: fix warning in ext4_iomap_begin as race between bmap and write + - ext4: check if directory block is within i_size + - ext4: make sure ext4_append() always allocates new block + - ext4: remove EA inode entry from mbcache on inode eviction + - ext4: use kmemdup() to replace kmalloc + memcpy + - ext4: unindent codeblock in ext4_xattr_block_set() + - ext4: fix race when reusing xattr blocks + - KEYS: asymmetric: enforce SM2 signature use pkey algo + - tpm: eventlog: Fix section mismatch for DEBUG_SECTION_MISMATCH + - xen-blkback: fix persistent grants negotiation + - xen-blkback: Apply 'feature_persistent' parameter when connect + - xen-blkfront: Apply 'feature_persistent' parameter when connect + - powerpc: Fix eh field when calling lwarx on PPC32 + - tracing: Use a struct alignof to determine trace event field alignment + - mac80211: fix a memory leak where sta_info is not freed + - tcp: fix over estimation in sk_forced_mem_schedule() + - crypto: lib/blake2s - reduce stack frame usage in self test + - Revert "mwifiex: fix sleep in atomic context bugs caused by dev_coredumpv" + - Revert "s390/smp: enforce lowcore protection on CPU restart" + - drm/bridge: tc358767: Fix (e)DP bridge endpoint parsing in dedicated + function + - net: phy: smsc: Disable Energy Detect Power-Down in interrupt mode + - drm/vc4: change vc4_dma_range_matches from a global to static + - tracing/perf: Avoid -Warray-bounds warning for __rel_loc macro + - drm/msm: Fix dirtyfb refcounting + - drm/meson: Fix refcount leak in meson_encoder_hdmi_init + - io_uring: mem-account pbuf buckets + - Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm regression + - drm/bridge: Move devm_drm_of_get_bridge to bridge/panel.c + - scsi: lpfc: Fix locking for lpfc_sli_iocbq_lookup() + - scsi: lpfc: Fix element offset in __lpfc_sli_release_iocbq_s4() + - scsi: lpfc: Resolve some cleanup issues following SLI path refactoring + - Linux 5.15.61 + * CVE-2022-3028 + - af_key: Do not call xfrm_probe_algs in parallel + * CVE-2022-2978 + - fs: fix UAF/GPF bug in nilfs_mdt_destroy + * CVE-2022-40768 + - scsi: stex: Properly zero out the passthrough command structure + + -- Tim Gardner Wed, 19 Oct 2022 16:14:24 -0600 + +linux-azure (5.15.0-1022.27) jammy; urgency=medium + + [ Ubuntu: 5.15.0-52.58 ] + + * CVE-2022-2602 + - SAUCE: io_uring/af_unix: defer registered files gc to io_uring release + - SAUCE: io_uring/af_unix: fix memleak during unix GC + * CVE-2022-41674 + - mac80211: move CRC into struct ieee802_11_elems + - mac80211: mlme: find auth challenge directly + - mac80211: mesh: clean up rx_bcn_presp API + - mac80211: always allocate struct ieee802_11_elems + - mac80211: fix memory leaks with element parsing + - SAUCE: wifi: cfg80211: fix u8 overflow in + cfg80211_update_notlisted_nontrans() + - SAUCE: wifi: cfg80211/mac80211: reject bad MBSSID elements + - SAUCE: wifi: cfg80211: ensure length byte is present before access + - SAUCE: wifi: mac80211_hwsim: avoid mac80211 warning on bad rate + - SAUCE: wifi: cfg80211: update hidden BSSes to avoid WARN_ON + * CVE-2022-42722 + - SAUCE: wifi: mac80211: fix crash in beacon protection for P2P-device + * CVE-2022-42721 + - SAUCE: wifi: cfg80211: avoid nontransmitted BSS list corruption + * CVE-2022-42720 + - SAUCE: wifi: cfg80211: fix BSS refcounting bugs + * CVE-2022-42719 + - SAUCE: wifi: mac80211: fix MBSSID parsing use-after-free + + -- Kleber Sacilotto de Souza Thu, 13 Oct 2022 18:51:11 +0200 + +linux-azure (5.15.0-1021.26) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1021.26 -proposed tracker (LP: #1989754) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Azure: Enable vPCI multi-MSI interrupts (LP: #1990184) + - genirq/msi: Guard sysfs code + - genirq/msi: Remove unused domain callbacks + - genirq/msi: Fixup includes + - PCI/MSI: Make pci_msi_domain_write_msg() static + - PCI/MSI: Remove msi_desc_to_pci_sysdata() + - genirq/msi, treewide: Use a named struct for PCI/MSI attributes + - PCI: hv: Fix multi-MSI to allow more than one MSI vector + - PCI: hv: Avoid the retarget interrupt hypercall in irq_unmask() on ARM64 + - PCI: hv: Fix hv_arch_irq_unmask() for multi-MSI + - PCI: hv: Reuse existing IRTE allocation in compose_msi_msg() + - PCI: hv: Fix interrupt mapping for multi-MSI + - SAUCE: PCI: hv: Only reuse existing IRTE allocation for Multi-MSI + + * Azure: Add support for multi-MSI (LP: #1981577) // Azure: Enable vPCI multi- + MSI interrupts (LP: #1990184) + - PCI: hv: Remove unused hv_set_msi_entry_from_desc() + + * cma alloc failure in large 5.15 arm instances (LP: #1990167) + - [Config] Disable CONFIG_CMA for arm64 + + [ Ubuntu: 5.15.0-50.56 ] + + * jammy/linux: 5.15.0-50.56 -proposed tracker (LP: #1990148) + * CVE-2022-3176 + - io_uring: refactor poll update + - io_uring: move common poll bits + - io_uring: kill poll linking optimisation + - io_uring: inline io_poll_complete + - io_uring: correct fill events helpers types + - io_uring: clean cqe filling functions + - io_uring: poll rework + - io_uring: remove poll entry from list when canceling all + - io_uring: bump poll refs to full 31-bits + - io_uring: fail links when poll fails + - io_uring: fix wrong arm_poll error handling + - io_uring: fix UAF due to missing POLLFREE handling + * ip/nexthop: fix default address selection for connected nexthop + (LP: #1988809) + - selftests/net: test nexthop without gw + * ip/nexthop: fix default address selection for connected nexthop + (LP: #1988809) // icmp_redirect.sh in ubuntu_kernel_selftests failed on + Jammy 5.15.0-49.55 (LP: #1990124) + - ip: fix triggering of 'icmp redirect' + + [ Ubuntu: 5.15.0-49.55 ] + + * jammy/linux: 5.15.0-49.55 -proposed tracker (LP: #1989785) + * amdgpu module crash after 5.15 kernel update (LP: #1981883) + - drm/amdgpu: fix check in fbdev init + * scsi: hisi_sas: Increase debugfs_dump_index after dump is  completed + (LP: #1982070) + - scsi: hisi_sas: Increase debugfs_dump_index after dump is completed + * [UBUNTU 22.04] s390/qeth: cache link_info for ethtool (LP: #1984103) + - s390/qeth: cache link_info for ethtool + * WARN in trace_event_dyn_put_ref (LP: #1987232) + - tracing/perf: Fix double put of trace event when init fails + * Jammy update: v5.15.60 upstream stable release (LP: #1989221) + - x86/speculation: Make all RETbleed mitigations 64-bit only + - selftests/bpf: Extend verifier and bpf_sock tests for dst_port loads + - selftests/bpf: Check dst_port only on the client socket + - block: fix default IO priority handling again + - tools/vm/slabinfo: Handle files in debugfs + - ACPI: video: Force backlight native for some TongFang devices + - ACPI: video: Shortening quirk list by identifying Clevo by board_name only + - ACPI: APEI: Better fix to avoid spamming the console with old error logs + - crypto: arm64/poly1305 - fix a read out-of-bound + - KVM: x86: do not report a vCPU as preempted outside instruction boundaries + - KVM: x86: do not set st->preempted when going back to user space + - KVM: selftests: Make hyperv_clock selftest more stable + - tools/kvm_stat: fix display of error when multiple processes are found + - selftests: KVM: Handle compiler optimizations in ucall + - KVM: x86/svm: add __GFP_ACCOUNT to __sev_dbg_{en,de}crypt_user() + - arm64: set UXN on swapper page tables + - btrfs: zoned: prevent allocation from previous data relocation BG + - btrfs: zoned: fix critical section of relocation inode writeback + - Bluetooth: hci_bcm: Add BCM4349B1 variant + - Bluetooth: hci_bcm: Add DT compatible for CYW55572 + - dt-bindings: bluetooth: broadcom: Add BCM4349B1 DT binding + - Bluetooth: btusb: Add support of IMC Networks PID 0x3568 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x04CA:0x4007 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x04C5:0x1675 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x0CB8:0xC558 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x13D3:0x3587 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x13D3:0x3586 + - macintosh/adb: fix oob read in do_adb_query() function + - x86/speculation: Add RSB VM Exit protections + - x86/speculation: Add LFENCE to RSB fill sequence + - Linux 5.15.60 + * Jammy update: v5.15.59 upstream stable release (LP: #1989218) + - Bluetooth: L2CAP: Fix use-after-free caused by l2cap_chan_put + - Revert "ocfs2: mount shared volume without ha stack" + - ntfs: fix use-after-free in ntfs_ucsncmp() + - fs: sendfile handles O_NONBLOCK of out_fd + - secretmem: fix unhandled fault in truncate + - mm: fix page leak with multiple threads mapping the same page + - hugetlb: fix memoryleak in hugetlb_mcopy_atomic_pte + - asm-generic: remove a broken and needless ifdef conditional + - s390/archrandom: prevent CPACF trng invocations in interrupt context + - nouveau/svm: Fix to migrate all requested pages + - drm/simpledrm: Fix return type of simpledrm_simple_display_pipe_mode_valid() + - watch_queue: Fix missing rcu annotation + - watch_queue: Fix missing locking in add_watch_to_object() + - tcp: Fix data-races around sysctl_tcp_dsack. + - tcp: Fix a data-race around sysctl_tcp_app_win. + - tcp: Fix a data-race around sysctl_tcp_adv_win_scale. + - tcp: Fix a data-race around sysctl_tcp_frto. + - tcp: Fix a data-race around sysctl_tcp_nometrics_save. + - tcp: Fix data-races around sysctl_tcp_no_ssthresh_metrics_save. + - ice: check (DD | EOF) bits on Rx descriptor rather than (EOP | RS) + - ice: do not setup vlan for loopback VSI + - scsi: ufs: host: Hold reference returned by of_parse_phandle() + - Revert "tcp: change pingpong threshold to 3" + - octeontx2-pf: Fix UDP/TCP src and dst port tc filters + - tcp: Fix data-races around sysctl_tcp_moderate_rcvbuf. + - tcp: Fix a data-race around sysctl_tcp_limit_output_bytes. + - tcp: Fix a data-race around sysctl_tcp_challenge_ack_limit. + - scsi: core: Fix warning in scsi_alloc_sgtables() + - scsi: mpt3sas: Stop fw fault watchdog work item during system shutdown + - net: ping6: Fix memleak in ipv6_renew_options(). + - ipv6/addrconf: fix a null-ptr-deref bug for ip6_ptr + - net/tls: Remove the context from the list in tls_device_down + - igmp: Fix data-races around sysctl_igmp_qrv. + - net: pcs: xpcs: propagate xpcs_read error to xpcs_get_state_c37_sgmii + - net: sungem_phy: Add of_node_put() for reference returned by of_get_parent() + - tcp: Fix a data-race around sysctl_tcp_min_tso_segs. + - tcp: Fix a data-race around sysctl_tcp_min_rtt_wlen. + - tcp: Fix a data-race around sysctl_tcp_autocorking. + - tcp: Fix a data-race around sysctl_tcp_invalid_ratelimit. + - Documentation: fix sctp_wmem in ip-sysctl.rst + - macsec: fix NULL deref in macsec_add_rxsa + - macsec: fix error message in macsec_add_rxsa and _txsa + - macsec: limit replay window size with XPN + - macsec: always read MACSEC_SA_ATTR_PN as a u64 + - net: macsec: fix potential resource leak in macsec_add_rxsa() and + macsec_add_txsa() + - net: mld: fix reference count leak in mld_{query | report}_work() + - tcp: Fix data-races around sk_pacing_rate. + - net: Fix data-races around sysctl_[rw]mem(_offset)?. + - tcp: Fix a data-race around sysctl_tcp_comp_sack_delay_ns. + - tcp: Fix a data-race around sysctl_tcp_comp_sack_slack_ns. + - tcp: Fix a data-race around sysctl_tcp_comp_sack_nr. + - tcp: Fix data-races around sysctl_tcp_reflect_tos. + - ipv4: Fix data-races around sysctl_fib_notify_on_flag_change. + - i40e: Fix interface init with MSI interrupts (no MSI-X) + - sctp: fix sleep in atomic context bug in timer handlers + - octeontx2-pf: cn10k: Fix egress ratelimit configuration + - virtio-net: fix the race between refill work and close + - perf symbol: Correct address for bss symbols + - sfc: disable softirqs for ptp TX + - sctp: leave the err path free in sctp_stream_init to sctp_stream_free + - ARM: crypto: comment out gcc warning that breaks clang builds + - mm/hmm: fault non-owner device private entries + - page_alloc: fix invalid watermark check on a negative value + - ARM: 9216/1: Fix MAX_DMA_ADDRESS overflow + - EDAC/ghes: Set the DIMM label unconditionally + - docs/kernel-parameters: Update descriptions for "mitigations=" param with + retbleed + - locking/rwsem: Allow slowpath writer to ignore handoff bit if not set by + first waiter + - x86/bugs: Do not enable IBPB at firmware entry when IBPB is not available + - Linux 5.15.59 + * Jammy update: v5.15.58 upstream stable release (LP: #1988479) + - pinctrl: stm32: fix optional IRQ support to gpios + - riscv: add as-options for modules with assembly compontents + - mlxsw: spectrum_router: Fix IPv4 nexthop gateway indication + - lockdown: Fix kexec lockdown bypass with ima policy + - drm/ttm: fix locking in vmap/vunmap TTM GEM helpers + - bus: mhi: host: pci_generic: add Telit FN980 v1 hardware revision + - bus: mhi: host: pci_generic: add Telit FN990 + - Revert "selftest/vm: verify remap destination address in mremap_test" + - Revert "selftest/vm: verify mmap addr in mremap_test" + - PCI: hv: Fix multi-MSI to allow more than one MSI vector + - PCI: hv: Fix hv_arch_irq_unmask() for multi-MSI + - PCI: hv: Reuse existing IRTE allocation in compose_msi_msg() + - PCI: hv: Fix interrupt mapping for multi-MSI + - serial: mvebu-uart: correctly report configured baudrate value + - batman-adv: Use netif_rx_any_context() any. + - xfs: fix maxlevels comparisons in the btree staging code + - xfs: fold perag loop iteration logic into helper function + - xfs: rename the next_agno perag iteration variable + - xfs: terminate perag iteration reliably on agcount + - xfs: fix perag reference leak on iteration race with growfs + - xfs: prevent a WARN_ONCE() in xfs_ioc_attr_list() + - r8152: fix a WOL issue + - ip: Fix data-races around sysctl_ip_default_ttl. + - xfrm: xfrm_policy: fix a possible double xfrm_pols_put() in + xfrm_bundle_lookup() + - power/reset: arm-versatile: Fix refcount leak in versatile_reboot_probe + - RDMA/irdma: Do not advertise 1GB page size for x722 + - RDMA/irdma: Fix sleep from invalid context BUG + - pinctrl: ralink: rename MT7628(an) functions to MT76X8 + - pinctrl: ralink: rename pinctrl-rt2880 to pinctrl-ralink + - pinctrl: ralink: Check for null return of devm_kcalloc + - perf/core: Fix data race between perf_event_set_output() and + perf_mmap_close() + - ipv4/tcp: do not use per netns ctl sockets + - net: tun: split run_ebpf_filter() and pskb_trim() into different "if + statement" + - mm/pagealloc: sysctl: change watermark_scale_factor max limit to 30% + - sysctl: move some boundary constants from sysctl.c to sysctl_vals + - tcp: Fix data-races around sysctl_tcp_ecn. + - drm/amd/display: Add option to defer works of hpd_rx_irq + - drm/amd/display: Fork thread to offload work of hpd_rx_irq + - drm/amdgpu/display: add quirk handling for stutter mode + - drm/amd/display: Ignore First MST Sideband Message Return Error + - scsi: megaraid: Clear READ queue map's nr_queues + - scsi: ufs: core: Drop loglevel of WriteBoost message + - nvme: check for duplicate identifiers earlier + - nvme: fix block device naming collision + - igc: Reinstate IGC_REMOVED logic and implement it properly + - ip: Fix data-races around sysctl_ip_no_pmtu_disc. + - ip: Fix data-races around sysctl_ip_fwd_use_pmtu. + - ip: Fix data-races around sysctl_ip_fwd_update_priority. + - ip: Fix data-races around sysctl_ip_nonlocal_bind. + - ip: Fix a data-race around sysctl_ip_autobind_reuse. + - ip: Fix a data-race around sysctl_fwmark_reflect. + - tcp/dccp: Fix a data-race around sysctl_tcp_fwmark_accept. + - tcp: sk->sk_bound_dev_if once in inet_request_bound_dev_if() + - tcp: Fix data-races around sysctl_tcp_l3mdev_accept. + - tcp: Fix data-races around sysctl_tcp_mtu_probing. + - tcp: Fix data-races around sysctl_tcp_base_mss. + - tcp: Fix data-races around sysctl_tcp_min_snd_mss. + - tcp: Fix a data-race around sysctl_tcp_mtu_probe_floor. + - tcp: Fix a data-race around sysctl_tcp_probe_threshold. + - tcp: Fix a data-race around sysctl_tcp_probe_interval. + - net: stmmac: fix pm runtime issue in stmmac_dvr_remove() + - net: stmmac: fix unbalanced ptp clock issue in suspend/resume flow + - mtd: rawnand: gpmi: validate controller clock rate + - mtd: rawnand: gpmi: Set WAIT_FOR_READY timeout based on program/erase times + - net: dsa: microchip: ksz_common: Fix refcount leak bug + - net: skb: introduce kfree_skb_reason() + - net: skb: use kfree_skb_reason() in tcp_v4_rcv() + - net: skb: use kfree_skb_reason() in __udp4_lib_rcv() + - net: socket: rename SKB_DROP_REASON_SOCKET_FILTER + - net: skb_drop_reason: add document for drop reasons + - net: netfilter: use kfree_drop_reason() for NF_DROP + - net: ipv4: use kfree_skb_reason() in ip_rcv_core() + - net: ipv4: use kfree_skb_reason() in ip_rcv_finish_core() + - i2c: mlxcpld: Fix register setting for 400KHz frequency + - i2c: cadence: Change large transfer count reset logic to be unconditional + - perf tests: Fix Convert perf time to TSC test for hybrid + - net: stmmac: fix dma queue left shift overflow issue + - net/tls: Fix race in TLS device down flow + - igmp: Fix data-races around sysctl_igmp_llm_reports. + - igmp: Fix a data-race around sysctl_igmp_max_memberships. + - igmp: Fix data-races around sysctl_igmp_max_msf. + - tcp: Fix data-races around keepalive sysctl knobs. + - tcp: Fix data-races around sysctl_tcp_syn(ack)?_retries. + - tcp: Fix data-races around sysctl_tcp_syncookies. + - tcp: Fix data-races around sysctl_tcp_migrate_req. + - tcp: Fix data-races around sysctl_tcp_reordering. + - tcp: Fix data-races around some timeout sysctl knobs. + - tcp: Fix a data-race around sysctl_tcp_notsent_lowat. + - tcp: Fix a data-race around sysctl_tcp_tw_reuse. + - tcp: Fix data-races around sysctl_max_syn_backlog. + - tcp: Fix data-races around sysctl_tcp_fastopen. + - tcp: Fix data-races around sysctl_tcp_fastopen_blackhole_timeout. + - iavf: Fix handling of dummy receive descriptors + - pinctrl: armada-37xx: Use temporary variable for struct device + - pinctrl: armada-37xx: Make use of the devm_platform_ioremap_resource() + - pinctrl: armada-37xx: Convert to use dev_err_probe() + - pinctrl: armada-37xx: use raw spinlocks for regmap to avoid invalid wait + context + - i40e: Fix erroneous adapter reinitialization during recovery process + - ixgbe: Add locking to prevent panic when setting sriov_numvfs to zero + - net: stmmac: remove redunctant disable xPCS EEE call + - gpio: pca953x: only use single read/write for No AI mode + - gpio: pca953x: use the correct range when do regmap sync + - gpio: pca953x: use the correct register address when regcache sync during + init + - be2net: Fix buffer overflow in be_get_module_eeprom + - net: dsa: sja1105: silent spi_device_id warnings + - net: dsa: vitesse-vsc73xx: silent spi_device_id warnings + - drm/imx/dcss: Add missing of_node_put() in fail path + - ipv4: Fix a data-race around sysctl_fib_multipath_use_neigh. + - ipv4: Fix data-races around sysctl_fib_multipath_hash_policy. + - ipv4: Fix data-races around sysctl_fib_multipath_hash_fields. + - ip: Fix data-races around sysctl_ip_prot_sock. + - udp: Fix a data-race around sysctl_udp_l3mdev_accept. + - tcp: Fix data-races around sysctl knobs related to SYN option. + - tcp: Fix a data-race around sysctl_tcp_early_retrans. + - tcp: Fix data-races around sysctl_tcp_recovery. + - tcp: Fix a data-race around sysctl_tcp_thin_linear_timeouts. + - tcp: Fix data-races around sysctl_tcp_slow_start_after_idle. + - tcp: Fix a data-race around sysctl_tcp_retrans_collapse. + - tcp: Fix a data-race around sysctl_tcp_stdurg. + - tcp: Fix a data-race around sysctl_tcp_rfc1337. + - tcp: Fix a data-race around sysctl_tcp_abort_on_overflow. + - tcp: Fix data-races around sysctl_tcp_max_reordering. + - gpio: gpio-xilinx: Fix integer overflow + - KVM: selftests: Fix target thread to be migrated in rseq_test + - spi: bcm2835: bcm2835_spi_handle_err(): fix NULL pointer deref for non DMA + transfers + - KVM: Don't null dereference ops->destroy + - mm/mempolicy: fix uninit-value in mpol_rebind_policy() + - bpf: Make sure mac_header was set before using it + - sched/deadline: Fix BUG_ON condition for deboosted tasks + - x86/bugs: Warn when "ibrs" mitigation is selected on Enhanced IBRS parts + - dlm: fix pending remove if msg allocation fails + - x86/uaccess: Implement macros for CMPXCHG on user addresses + - bitfield.h: Fix "type of reg too small for mask" test + - x86/entry_32: Remove .fixup usage + - x86/extable: Extend extable functionality + - x86/msr: Remove .fixup usage + - x86/futex: Remove .fixup usage + - KVM: x86: Use __try_cmpxchg_user() to emulate atomic accesses + - xhci: dbc: refactor xhci_dbc_init() + - xhci: dbc: create and remove dbc structure in dbgtty driver. + - xhci: dbc: Rename xhci_dbc_init and xhci_dbc_exit + - xhci: Set HCD flag to defer primary roothub registration + - mt76: fix use-after-free by removing a non-RCU wcid pointer + - iwlwifi: fw: uefi: add missing include guards + - crypto: qat - set to zero DH parameters before free + - crypto: qat - use pre-allocated buffers in datapath + - crypto: qat - refactor submission logic + - crypto: qat - add backlog mechanism + - crypto: qat - fix memory leak in RSA + - crypto: qat - remove dma_free_coherent() for RSA + - crypto: qat - remove dma_free_coherent() for DH + - crypto: qat - add param check for RSA + - crypto: qat - add param check for DH + - crypto: qat - re-enable registration of algorithms + - exfat: fix referencing wrong parent directory information after renaming + - tracing: Have event format check not flag %p* on __get_dynamic_array() + - tracing: Place trace_pid_list logic into abstract functions + - tracing: Fix return value of trace_pid_write() + - um: virtio_uml: Allow probing from devicetree + - um: virtio_uml: Fix broken device handling in time-travel + - Bluetooth: Add bt_skb_sendmsg helper + - Bluetooth: Add bt_skb_sendmmsg helper + - Bluetooth: SCO: Replace use of memcpy_from_msg with bt_skb_sendmsg + - Bluetooth: RFCOMM: Replace use of memcpy_from_msg with bt_skb_sendmmsg + - Bluetooth: Fix passing NULL to PTR_ERR + - Bluetooth: SCO: Fix sco_send_frame returning skb->len + - Bluetooth: Fix bt_skb_sendmmsg not allocating partial chunks + - exfat: use updated exfat_chain directly during renaming + - x86/amd: Use IBPB for firmware calls + - x86/alternative: Report missing return thunk details + - watchqueue: make sure to serialize 'wqueue->defunct' properly + - tty: drivers/tty/, stop using tty_schedule_flip() + - tty: the rest, stop using tty_schedule_flip() + - tty: drop tty_schedule_flip() + - tty: extract tty_flip_buffer_commit() from tty_flip_buffer_push() + - tty: use new tty_insert_flip_string_and_push_buffer() in pty_write() + - watch-queue: remove spurious double semicolon + - drm/amd/display: invalid parameter check in dmub_hpd_callback + - x86/extable: Prefer local labels in .set directives + - KVM: x86: fix typo in __try_cmpxchg_user causing non-atomicness + - x86: drop bogus "cc" clobber from __try_cmpxchg_user_asm() + - drm/amdgpu: Off by one in dm_dmub_outbox1_low_irq() + - x86/entry_32: Fix segment exceptions + - Linux 5.15.58 + * Jammy update: v5.15.57 upstream stable release (LP: #1988353) + - x86/xen: Fix initialisation in hypercall_page after rethunk + - tools arch x86: Sync the msr-index.h copy with the kernel sources + - tools headers cpufeatures: Sync with the kernel sources + - um: Add missing apply_returns() + - x86: Use -mindirect-branch-cs-prefix for RETPOLINE builds + - Linux 5.15.57 + * Jammy update: v5.15.56 upstream stable release (LP: #1988351) + - ALSA: hda - Add fixup for Dell Latitidue E5430 + - ALSA: hda/conexant: Apply quirk for another HP ProDesk 600 G3 model + - ALSA: hda/realtek: Fix headset mic for Acer SF313-51 + - ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc671 + - ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc221 + - ALSA: hda/realtek - Enable the headset-mic on a Xiaomi's laptop + - xen/netback: avoid entering xenvif_rx_next_skb() with an empty rx queue + - fix race between exit_itimers() and /proc/pid/timers + - mm: userfaultfd: fix UFFDIO_CONTINUE on fallocated shmem pages + - mm: split huge PUD on wp_huge_pud fallback + - tracing/histograms: Fix memory leak problem + - net: sock: tracing: Fix sock_exceed_buf_limit not to dereference stale + pointer + - ip: fix dflt addr selection for connected nexthop + - ARM: 9213/1: Print message about disabled Spectre workarounds only once + - ARM: 9214/1: alignment: advance IT state after emulating Thumb instruction + - wifi: mac80211: fix queue selection for mesh/OCB interfaces + - cgroup: Use separate src/dst nodes when preloading css_sets for migration + - btrfs: return -EAGAIN for NOWAIT dio reads/writes on compressed and inline + extents + - drm/panfrost: Put mapping instead of shmem obj on + panfrost_mmu_map_fault_addr() error + - drm/panfrost: Fix shrinker list corruption by madvise IOCTL + - fs/remap: constrain dedupe of EOF blocks + - nilfs2: fix incorrect masking of permission flags for symlinks + - sh: convert nommu io{re,un}map() to static inline functions + - Revert "evm: Fix memleak in init_desc" + - xfs: only run COW extent recovery when there are no live extents + - xfs: don't include bnobt blocks when reserving free block pool + - xfs: run callbacks before waking waiters in xlog_state_shutdown_callbacks + - xfs: drop async cache flushes from CIL commits. + - reset: Fix devm bulk optional exclusive control getter + - ARM: dts: imx6qdl-ts7970: Fix ngpio typo and count + - spi: amd: Limit max transfer and message size + - ARM: 9209/1: Spectre-BHB: avoid pr_info() every time a CPU comes out of idle + - ARM: 9210/1: Mark the FDT_FIXED sections as shareable + - net/mlx5e: kTLS, Fix build time constant test in TX + - net/mlx5e: kTLS, Fix build time constant test in RX + - net/mlx5e: Fix enabling sriov while tc nic rules are offloaded + - net/mlx5e: Fix capability check for updating vnic env counters + - net/mlx5e: Ring the TX doorbell on DMA errors + - drm/i915: fix a possible refcount leak in intel_dp_add_mst_connector() + - ima: Fix a potential integer overflow in ima_appraise_measurement + - ASoC: sgtl5000: Fix noise on shutdown/remove + - ASoC: tas2764: Add post reset delays + - ASoC: tas2764: Fix and extend FSYNC polarity handling + - ASoC: tas2764: Correct playback volume range + - ASoC: tas2764: Fix amp gain register offset & default + - ASoC: Intel: Skylake: Correct the ssp rate discovery in skl_get_ssp_clks() + - ASoC: Intel: Skylake: Correct the handling of fmt_config flexible array + - net: stmmac: dwc-qos: Disable split header for Tegra194 + - net: ethernet: ti: am65-cpsw: Fix devlink port register sequence + - sysctl: Fix data races in proc_dointvec(). + - sysctl: Fix data races in proc_douintvec(). + - sysctl: Fix data races in proc_dointvec_minmax(). + - sysctl: Fix data races in proc_douintvec_minmax(). + - sysctl: Fix data races in proc_doulongvec_minmax(). + - sysctl: Fix data races in proc_dointvec_jiffies(). + - tcp: Fix a data-race around sysctl_tcp_max_orphans. + - inetpeer: Fix data-races around sysctl. + - net: Fix data-races around sysctl_mem. + - cipso: Fix data-races around sysctl. + - icmp: Fix data-races around sysctl. + - ipv4: Fix a data-race around sysctl_fib_sync_mem. + - ARM: dts: at91: sama5d2: Fix typo in i2s1 node + - ARM: dts: sunxi: Fix SPI NOR campatible on Orange Pi Zero + - arm64: dts: broadcom: bcm4908: Fix timer node for BCM4906 SoC + - arm64: dts: broadcom: bcm4908: Fix cpu node for smp boot + - netfilter: nf_log: incorrect offset to network header + - netfilter: nf_tables: replace BUG_ON by element length check + - drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() + - xen/gntdev: Ignore failure to unmap INVALID_GRANT_HANDLE + - lockd: set fl_owner when unlocking files + - lockd: fix nlm_close_files + - tracing: Fix sleeping while atomic in kdb ftdump + - drm/i915/selftests: fix a couple IS_ERR() vs NULL tests + - drm/i915/dg2: Add Wa_22011100796 + - drm/i915/gt: Serialize GRDOM access between multiple engine resets + - drm/i915/gt: Serialize TLB invalidates with GT resets + - drm/i915/uc: correctly track uc_fw init failure + - drm/i915: Require the vm mutex for i915_vma_bind() + - bnxt_en: Fix bnxt_reinit_after_abort() code path + - bnxt_en: Fix bnxt_refclk_read() + - sysctl: Fix data-races in proc_dou8vec_minmax(). + - sysctl: Fix data-races in proc_dointvec_ms_jiffies(). + - icmp: Fix data-races around sysctl_icmp_echo_enable_probe. + - icmp: Fix a data-race around sysctl_icmp_ignore_bogus_error_responses. + - icmp: Fix a data-race around sysctl_icmp_errors_use_inbound_ifaddr. + - icmp: Fix a data-race around sysctl_icmp_ratelimit. + - icmp: Fix a data-race around sysctl_icmp_ratemask. + - raw: Fix a data-race around sysctl_raw_l3mdev_accept. + - tcp: Fix a data-race around sysctl_tcp_ecn_fallback. + - ipv4: Fix data-races around sysctl_ip_dynaddr. + - nexthop: Fix data-races around nexthop_compat_mode. + - net: ftgmac100: Hold reference returned by of_get_child_by_name() + - net: stmmac: fix leaks in probe + - ima: force signature verification when CONFIG_KEXEC_SIG is configured + - ima: Fix potential memory leak in ima_init_crypto() + - drm/amd/display: Only use depth 36 bpp linebuffers on DCN display engines. + - drm/amd/pm: Prevent divide by zero + - sfc: fix use after free when disabling sriov + - ceph: switch netfs read ops to use rreq->inode instead of + rreq->mapping->host + - seg6: fix skb checksum evaluation in SRH encapsulation/insertion + - seg6: fix skb checksum in SRv6 End.B6 and End.B6.Encaps behaviors + - seg6: bpf: fix skb checksum in bpf_push_seg6_encap() + - sfc: fix kernel panic when creating VF + - KVM: x86: Fully initialize 'struct kvm_lapic_irq' in kvm_pv_kick_cpu_op() + - net/tls: Check for errors in tls_device_init + - ACPI: video: Fix acpi_video_handles_brightness_key_presses() + - mm: sysctl: fix missing numa_stat when !CONFIG_HUGETLB_PAGE + - btrfs: rename btrfs_bio to btrfs_io_context + - btrfs: zoned: fix a leaked bioc in read_zone_info + - ksmbd: use SOCK_NONBLOCK type for kernel_accept() + - powerpc/xive/spapr: correct bitmap allocation size + - vdpa/mlx5: Initialize CVQ vringh only once + - vduse: Tie vduse mgmtdev and its device + - virtio_mmio: Add missing PM calls to freeze/restore + - virtio_mmio: Restore guest page size on resume + - netfilter: br_netfilter: do not skip all hooks with 0 priority + - scsi: hisi_sas: Limit max hw sectors for v3 HW + - cpufreq: pmac32-cpufreq: Fix refcount leak bug + - firmware: sysfb: Make sysfb_create_simplefb() return a pdev pointer + - firmware: sysfb: Add sysfb_disable() helper function + - fbdev: Disable sysfb device registration when removing conflicting FBs + - net: tipc: fix possible refcount leak in tipc_sk_create() + - NFC: nxp-nci: don't print header length mismatch on i2c error + - nvme-tcp: always fail a request when sending it failed + - nvme: fix regression when disconnect a recovering ctrl + - net: sfp: fix memory leak in sfp_probe() + - ASoC: ops: Fix off by one in range control validation + - pinctrl: aspeed: Fix potential NULL dereference in aspeed_pinmux_set_mux() + - ASoC: Realtek/Maxim SoundWire codecs: disable pm_runtime on remove + - ASoC: rt711-sdca-sdw: fix calibrate mutex initialization + - ASoC: Intel: sof_sdw: handle errors on card registration + - ASoC: rt711: fix calibrate mutex initialization + - ASoC: rt7*-sdw: harden jack_detect_handler + - ASoC: codecs: rt700/rt711/rt711-sdca: initialize workqueues in probe + - ASoC: SOF: Intel: hda-loader: Clarify the cl_dsp_init() flow + - ASoC: wcd938x: Fix event generation for some controls + - ASoC: Intel: bytcr_wm5102: Fix GPIO related probe-ordering problem + - ASoC: wm5110: Fix DRE control + - ASoC: rt711-sdca: fix kernel NULL pointer dereference when IO error + - ASoC: dapm: Initialise kcontrol data for mux/demux controls + - ASoC: cs47l15: Fix event generation for low power mux control + - ASoC: madera: Fix event generation for OUT1 demux + - ASoC: madera: Fix event generation for rate controls + - irqchip: or1k-pic: Undefine mask_ack for level triggered hardware + - x86: Clear .brk area at early boot + - soc: ixp4xx/npe: Fix unused match warning + - ARM: dts: stm32: use the correct clock source for CEC on stm32mp151 + - Revert "can: xilinx_can: Limit CANFD brp to 2" + - ALSA: usb-audio: Add quirks for MacroSilicon MS2100/MS2106 devices + - ALSA: usb-audio: Add quirk for Fiero SC-01 + - ALSA: usb-audio: Add quirk for Fiero SC-01 (fw v1.0.0) + - nvme-pci: phison e16 has bogus namespace ids + - signal handling: don't use BUG_ON() for debugging + - USB: serial: ftdi_sio: add Belimo device ids + - usb: typec: add missing uevent when partner support PD + - usb: dwc3: gadget: Fix event pending check + - tty: serial: samsung_tty: set dma burst_size to 1 + - vt: fix memory overlapping when deleting chars in the buffer + - serial: 8250: fix return error code in serial8250_request_std_resource() + - serial: stm32: Clear prev values before setting RTS delays + - serial: pl011: UPSTAT_AUTORTS requires .throttle/unthrottle + - serial: 8250: Fix PM usage_count for console handover + - x86/pat: Fix x86_has_pat_wp() + - drm/aperture: Run fbdev removal before internal helpers + - Linux 5.15.56 + * Jammy update: v5.15.55 upstream stable release (LP: #1988338) + - Linux 5.15.55 + * Jammy update: v5.15.54 upstream stable release (LP: #1987451) + - mm/slub: add missing TID updates on slab deactivation + - mm/filemap: fix UAF in find_lock_entries + - Revert "selftests/bpf: Add test for bpf_timer overwriting crash" + - ALSA: usb-audio: Workarounds for Behringer UMC 204/404 HD + - ALSA: hda/realtek: Add quirk for Clevo L140PU + - ALSA: cs46xx: Fix missing snd_card_free() call at probe error + - can: bcm: use call_rcu() instead of costly synchronize_rcu() + - can: grcan: grcan_probe(): remove extra of_node_get() + - can: gs_usb: gs_usb_open/close(): fix memory leak + - can: m_can: m_can_chip_config(): actually enable internal timestamping + - can: m_can: m_can_{read_fifo,echo_tx_event}(): shift timestamp to full 32 + bits + - can: mcp251xfd: mcp251xfd_regmap_crc_read(): improve workaround handling for + mcp2517fd + - can: mcp251xfd: mcp251xfd_regmap_crc_read(): update workaround broken CRC on + TBC register + - bpf: Fix incorrect verifier simulation around jmp32's jeq/jne + - bpf: Fix insufficient bounds propagation from adjust_scalar_min_max_vals + - usbnet: fix memory leak in error case + - net: rose: fix UAF bug caused by rose_t0timer_expiry + - netfilter: nft_set_pipapo: release elements in clone from abort path + - btrfs: rename btrfs_alloc_chunk to btrfs_create_chunk + - btrfs: add additional parameters to btrfs_init_tree_ref/btrfs_init_data_ref + - btrfs: fix invalid delayed ref after subvolume creation failure + - btrfs: fix warning when freeing leaf after subvolume creation failure + - Input: cpcap-pwrbutton - handle errors from platform_get_irq() + - Input: goodix - change goodix_i2c_write() len parameter type to int + - Input: goodix - add a goodix.h header file + - Input: goodix - refactor reset handling + - Input: goodix - try not to touch the reset-pin on x86/ACPI devices + - dma-buf/poll: Get a file reference for outstanding fence callbacks + - btrfs: fix deadlock between chunk allocation and chunk btree modifications + - drm/i915: Disable bonding on gen12+ platforms + - drm/i915/gt: Register the migrate contexts with their engines + - drm/i915: Replace the unconditional clflush with drm_clflush_virt_range() + - media: ir_toy: prevent device from hanging during transmit + - memory: renesas-rpc-if: Avoid unaligned bus access for HyperFlash + - ath11k: add hw_param for wakeup_mhi + - qed: Improve the stack space of filter_config() + - platform/x86: wmi: introduce helper to convert driver to WMI driver + - platform/x86: wmi: Replace read_takes_no_args with a flags field + - platform/x86: wmi: Fix driver->notify() vs ->probe() race + - mt76: mt7921: get rid of mt7921_mac_set_beacon_filter + - mt76: mt7921: introduce mt7921_mcu_set_beacon_filter utility routine + - mt76: mt7921: fix a possible race enabling/disabling runtime-pm + - bpf: Stop caching subprog index in the bpf_pseudo_func insn + - bpf, arm64: Use emit_addr_mov_i64() for BPF_PSEUDO_FUNC + - riscv: defconfig: enable DRM_NOUVEAU + - RISC-V: defconfigs: Set CONFIG_FB=y, for FB console + - net/mlx5e: Check action fwd/drop flag exists also for nic flows + - net/mlx5e: Split actions_match_supported() into a sub function + - net/mlx5e: TC, Reject rules with drop and modify hdr action + - net/mlx5e: TC, Reject rules with forward and drop actions + - ASoC: rt5682: Avoid the unexpected IRQ event during going to suspend + - ASoC: rt5682: Re-detect the combo jack after resuming + - ASoC: rt5682: Fix deadlock on resume + - netfilter: nf_tables: convert pktinfo->tprot_set to flags field + - netfilter: nft_payload: support for inner header matching / mangling + - netfilter: nft_payload: don't allow th access for fragments + - s390/boot: allocate amode31 section in decompressor + - s390/setup: use physical pointers for memblock_reserve() + - s390/setup: preserve memory at OLDMEM_BASE and OLDMEM_SIZE + - ibmvnic: init init_done_rc earlier + - ibmvnic: clear fop when retrying probe + - ibmvnic: Allow queueing resets during probe + - virtio-blk: avoid preallocating big SGL for data + - io_uring: ensure that fsnotify is always called + - block: use bdev_get_queue() in bio.c + - block: only mark bio as tracked if it really is tracked + - block: fix rq-qos breakage from skipping rq_qos_done_bio() + - stddef: Introduce struct_group() helper macro + - media: omap3isp: Use struct_group() for memcpy() region + - media: davinci: vpif: fix use-after-free on driver unbind + - mt76: mt76_connac: fix MCU_CE_CMD_SET_ROC definition error + - mt76: mt7921: do not always disable fw runtime-pm + - cxl/port: Hold port reference until decoder release + - clk: renesas: r9a07g044: Update multiplier and divider values for PLL2/3 + - KVM: x86/mmu: Use yield-safe TDP MMU root iter in MMU notifier unmapping + - KVM: x86/mmu: Use common TDP MMU zap helper for MMU notifier unmap hook + - scsi: qla2xxx: Move heartbeat handling from DPC thread to workqueue + - scsi: qla2xxx: Fix laggy FC remote port session recovery + - scsi: qla2xxx: edif: Replace list_for_each_safe with + list_for_each_entry_safe + - scsi: qla2xxx: Fix crash during module load unload test + - gfs2: Fix gfs2_file_buffered_write endless loop workaround + - vdpa/mlx5: Avoid processing works if workqueue was destroyed + - btrfs: handle device lookup with btrfs_dev_lookup_args + - btrfs: add a btrfs_get_dev_args_from_path helper + - btrfs: use btrfs_get_dev_args_from_path in dev removal ioctls + - btrfs: remove device item and update super block in the same transaction + - drbd: add error handling support for add_disk() + - drbd: Fix double free problem in drbd_create_device + - drbd: fix an invalid memory access caused by incorrect use of list iterator + - drm/amd/display: Set min dcfclk if pipe count is 0 + - drm/amd/display: Fix by adding FPU protection for dcn30_internal_validate_bw + - NFSD: De-duplicate net_generic(nf->nf_net, nfsd_net_id) + - NFSD: COMMIT operations must not return NFS?ERR_INVAL + - riscv/mm: Add XIP_FIXUP for riscv_pfn_base + - iio: accel: mma8452: use the correct logic to get mma8452_data + - batman-adv: Use netif_rx(). + - mtd: spi-nor: Skip erase logic when SPI_NOR_NO_ERASE is set + - Compiler Attributes: add __alloc_size() for better bounds checking + - mm: vmalloc: introduce array allocation functions + - KVM: use __vcalloc for very large allocations + - btrfs: don't access possibly stale fs_info data in device_list_add + - KVM: s390x: fix SCK locking + - scsi: qla2xxx: Fix loss of NVMe namespaces after driver reload test + - powerpc/32: Don't use lmw/stmw for saving/restoring non volatile regs + - powerpc: flexible GPR range save/restore macros + - powerpc/tm: Fix more userspace r13 corruption + - serial: sc16is7xx: Clear RS485 bits in the shutdown + - bus: mhi: core: Use correctly sized arguments for bit field + - bus: mhi: Fix pm_state conversion to string + - stddef: Introduce DECLARE_FLEX_ARRAY() helper + - uapi/linux/stddef.h: Add include guards + - ASoC: rt5682: move clk related code to rt5682_i2c_probe + - ASoC: rt5682: fix an incorrect NULL check on list iterator + - drm/amd/vcn: fix an error msg on vcn 3.0 + - KVM: Don't create VM debugfs files outside of the VM directory + - tty: n_gsm: Modify CR,PF bit when config requester + - tty: n_gsm: Save dlci address open status when config requester + - tty: n_gsm: fix frame reception handling + - ALSA: usb-audio: add mapping for MSI MPG X570S Carbon Max Wifi. + - ALSA: usb-audio: add mapping for MSI MAG X570S Torpedo MAX. + - tty: n_gsm: fix missing update of modem controls after DLCI open + - btrfs: zoned: encapsulate inode locking for zoned relocation + - btrfs: zoned: use dedicated lock for data relocation + - KVM: Initialize debugfs_dentry when a VM is created to avoid NULL deref + - mm/hwpoison: mf_mutex for soft offline and unpoison + - mm/hwpoison: avoid the impact of hwpoison_filter() return value on mce + handler + - mm/memory-failure.c: fix race with changing page compound again + - mm/hwpoison: fix race between hugetlb free/demotion and + memory_failure_hugetlb() + - tty: n_gsm: fix invalid use of MSC in advanced option + - tty: n_gsm: fix sometimes uninitialized warning in gsm_dlci_modem_output() + - serial: 8250_mtk: Make sure to select the right FEATURE_SEL + - tty: n_gsm: fix invalid gsmtty_write_room() result + - drm/i915: Fix a race between vma / object destruction and unbinding + - drm/mediatek: Use mailbox rx_callback instead of cmdq_task_cb + - drm/mediatek: Remove the pointer of struct cmdq_client + - drm/mediatek: Detect CMDQ execution timeout + - drm/mediatek: Add cmdq_handle in mtk_crtc + - drm/mediatek: Add vblank register/unregister callback functions + - Bluetooth: protect le accept and resolv lists with hdev->lock + - Bluetooth: btmtksdio: fix use-after-free at btmtksdio_recv_event + - io_uring: avoid io-wq -EAGAIN looping for !IOPOLL + - irqchip/gic-v3: Ensure pseudo-NMIs have an ISB between ack and handling + - irqchip/gic-v3: Refactor ISB + EOIR at ack time + - rxrpc: Fix locking issue + - dt-bindings: soc: qcom: smd-rpm: Add compatible for MSM8953 SoC + - dt-bindings: soc: qcom: smd-rpm: Fix missing MSM8936 compatible + - module: change to print useful messages from elf_validity_check() + - module: fix [e_shstrndx].sh_size=0 OOB access + - iommu/vt-d: Fix PCI bus rescan device hot add + - fbdev: fbmem: Fix logo center image dx issue + - PM: runtime: Redefine pm_runtime_release_supplier() + - memregion: Fix memregion_free() fallback definition + - video: of_display_timing.h: include errno.h + - powerpc/powernv: delay rng platform device creation until later in boot + - net: dsa: qca8k: reset cpu port on MTU change + - can: kvaser_usb: replace run-time checks with struct kvaser_usb_driver_info + - can: kvaser_usb: kvaser_usb_leaf: fix CAN clock frequency regression + - can: kvaser_usb: kvaser_usb_leaf: fix bittiming limits + - xfs: remove incorrect ASSERT in xfs_rename + - Revert "serial: sc16is7xx: Clear RS485 bits in the shutdown" + - btrfs: fix error pointer dereference in btrfs_ioctl_rm_dev_v2() + - virtio-blk: modify the value type of num in virtio_queue_rq() + - btrfs: fix use of uninitialized variable at rm device ioctl + - tty: n_gsm: fix encoding of command/response bit + - ARM: meson: Fix refcount leak in meson_smp_prepare_cpus + - pinctrl: sunxi: a83t: Fix NAND function name for some pins + - ASoC: rt711: Add endianness flag in snd_soc_component_driver + - ASoC: rt711-sdca: Add endianness flag in snd_soc_component_driver + - ASoC: codecs: rt700/rt711/rt711-sdca: resume bus/codec in .set_jack_detect + - arm64: dts: qcom: msm8994: Fix CPU6/7 reg values + - arm64: dts: qcom: sdm845: use dispcc AHB clock for mdss node + - ARM: mxs_defconfig: Enable the framebuffer + - arm64: dts: imx8mp-evk: correct mmc pad settings + - arm64: dts: imx8mp-evk: correct the uart2 pinctl value + - arm64: dts: imx8mp-evk: correct gpio-led pad settings + - arm64: dts: imx8mp-evk: correct vbus pad settings + - arm64: dts: imx8mp-evk: correct eqos pad settings + - arm64: dts: imx8mp-evk: correct I2C1 pad settings + - arm64: dts: imx8mp-evk: correct I2C3 pad settings + - arm64: dts: imx8mp-phyboard-pollux-rdk: correct uart pad settings + - arm64: dts: imx8mp-phyboard-pollux-rdk: correct eqos pad settings + - arm64: dts: imx8mp-phyboard-pollux-rdk: correct i2c2 & mmc settings + - pinctrl: sunxi: sunxi_pconf_set: use correct offset + - arm64: dts: qcom: msm8992-*: Fix vdd_lvs1_2-supply typo + - ARM: at91: pm: use proper compatible for sama5d2's rtc + - ARM: at91: pm: use proper compatibles for sam9x60's rtc and rtt + - ARM: at91: pm: use proper compatibles for sama7g5's rtc and rtt + - ARM: dts: at91: sam9x60ek: fix eeprom compatible and size + - ARM: dts: at91: sama5d2_icp: fix eeprom compatibles + - ARM: at91: fix soc detection for SAM9X60 SiPs + - xsk: Clear page contiguity bit when unmapping pool + - i2c: piix4: Fix a memory leak in the EFCH MMIO support + - i40e: Fix dropped jumbo frames statistics + - i40e: Fix VF's MAC Address change on VM + - ARM: dts: stm32: use usbphyc ck_usbo_48m as USBH OHCI clock on stm32mp151 + - ARM: dts: stm32: add missing usbh clock and fix clk order on stm32mp15 + - ibmvnic: Properly dispose of all skbs during a failover. + - selftests: forwarding: fix flood_unicast_test when h2 supports + IFF_UNICAST_FLT + - selftests: forwarding: fix learning_test when h1 supports IFF_UNICAST_FLT + - selftests: forwarding: fix error message in learning_test + - r8169: fix accessing unset transport header + - i2c: cadence: Unregister the clk notifier in error path + - dmaengine: imx-sdma: Allow imx8m for imx7 FW revs + - misc: rtsx_usb: fix use of dma mapped buffer for usb bulk transfer + - misc: rtsx_usb: use separate command and response buffers + - misc: rtsx_usb: set return value in rsp_buf alloc err path + - Revert "mm/memory-failure.c: fix race with changing page compound again" + - Revert "serial: 8250_mtk: Make sure to select the right FEATURE_SEL" + - dt-bindings: dma: allwinner,sun50i-a64-dma: Fix min/max typo + - ida: don't use BUG_ON() for debugging + - dmaengine: pl330: Fix lockdep warning about non-static key + - dmaengine: lgm: Fix an error handling path in intel_ldma_probe() + - dmaengine: at_xdma: handle errors of at_xdmac_alloc_desc() correctly + - dmaengine: ti: Fix refcount leak in ti_dra7_xbar_route_allocate + - dmaengine: qcom: bam_dma: fix runtime PM underflow + - dmaengine: ti: Add missing put_device in ti_dra7_xbar_route_allocate + - dmaengine: idxd: force wq context cleanup on device disable path + - selftests/net: fix section name when using xdp_dummy.o + - Linux 5.15.54 + + -- Tim Gardner Thu, 22 Sep 2022 13:11:46 -0600 + +linux-azure (5.15.0-1020.25) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1020.25 -proposed tracker (LP: #1987744) + + * Jammy update: v5.15.49 upstream stable release (LP: #1983149) + - [Config] azure: updateconfigs for LIB_MEMNEQ + + * azure: Set arm64 CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=n (LP: #1988434) + - [Config] azure: arm64: CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=n + + * azure: Replace hyperv_fb with hyperv_drm (LP: #1986713) + - [Packaging] azure: Include hyperv_drm, exclude hyperv_fb from linux-modules + + [ Ubuntu: 5.15.0-48.54 ] + + * jammy/linux: 5.15.0-48.54 -proposed tracker (LP: #1987775) + * System freeze after resuming from suspend due to PCI ASPM settings + (LP: #1980829) + - SAUCE: PCI/ASPM: Save/restore L1SS Capability for suspend/resume + - SAUCE: whitelist platforms that needs save/restore ASPM L1SS for + suspend/resume + * [SRU][J/OEM-5.17][PATCH 0/1] Fix oled brightness set above frame-average + luminance (LP: #1978986) + - SAUCE: drm: New function to get luminance range based on static hdr metadata + - SAUCE: drm/amdgpu_dm: Rely on split out luminance calculation function + - SAUCE: drm/i915: Use luminance range calculated during edid parsing + * Jammy: Add OVS Internal Port HW Offload to mlx5 driver (LP: #1983498) + - net/mlx5e: Refactor rx handler of represetor device + - net/mlx5e: Use generic name for the forwarding dev pointer + - net/mlx5: E-Switch, Add ovs internal port mapping to metadata support + - net/mlx5e: Support accept action + - net/mlx5e: Accept action skbedit in the tc actions list + - net/mlx5e: Offload tc rules that redirect to ovs internal port + - net/mlx5e: Offload internal port as encap route device + - net/mlx5e: Enable TC offload for ingress MACVLAN + - net/mlx5e: Add indirect tc offload of ovs internal port + - net/mlx5e: Term table handling of internal port rules + - net/mlx5: Support internal port as decap route device + - net/mlx5: Fix some error handling paths in 'mlx5e_tc_add_fdb_flow()' + - net/mlx5e: TC, Fix memory leak with rules with internal port + - net/mlx5e: Fix skb memory leak when TC classifier action offloads are + disabled + - net/mlx5e: Fix nullptr on deleting mirroring rule + - net/mlx5e: Avoid implicit modify hdr for decap drop rule + - net/mlx5e: Fix wrong source vport matching on tunnel rule + - net/mlx5e: TC, fix decap fallback to uplink when int port not supported + * Remove unused variable from i915 psr (LP: #1986798) + - SAUCE: drm/i915/display/psr: Remove unused variable + * refactoring of overlayfs fix to properly support shiftfs (LP: #1983640) + - SAUCE: overlayfs: remove CONFIG_AUFS_FS dependency + * Jammy update: v5.15.53 upstream stable release (LP: #1986728) + - Revert "drm/amdgpu/display: set vblank_disable_immediate for DC" + - drm/amdgpu: To flush tlb for MMHUB of RAVEN series + - ksmbd: set the range of bytes to zero without extending file size in + FSCTL_ZERO_DATA + - ksmbd: check invalid FileOffset and BeyondFinalZero in FSCTL_ZERO_DATA + - ksmbd: use vfs_llseek instead of dereferencing NULL + - ipv6: take care of disable_policy when restoring routes + - net: phy: Don't trigger state machine while in suspend + - nvme-pci: add NVME_QUIRK_BOGUS_NID for ADATA XPG SX6000LNP (AKA SPECTRIX + S40G) + - nvme-pci: add NVME_QUIRK_BOGUS_NID for ADATA IM2P33F8ABR1 + - nvdimm: Fix badblocks clear off-by-one error + - powerpc/prom_init: Fix kernel config grep + - powerpc/book3e: Fix PUD allocation size in map_kernel_page() + - powerpc/bpf: Fix use of user_pt_regs in uapi + - dm raid: fix accesses beyond end of raid member array + - dm raid: fix KASAN warning in raid5_add_disks + - s390/archrandom: simplify back to earlier design and initialize earlier + - SUNRPC: Fix READ_PLUS crasher + - net: rose: fix UAF bugs caused by timer handler + - net: usb: ax88179_178a: Fix packet receiving + - virtio-net: fix race between ndo_open() and virtio_device_ready() + - selftests/net: pass ipv6_args to udpgso_bench's IPv6 TCP test + - net: dsa: bcm_sf2: force pause link settings + - net: tun: unlink NAPI from device on destruction + - net: tun: stop NAPI when detaching queues + - net: dp83822: disable false carrier interrupt + - net: dp83822: disable rx error interrupt + - RDMA/qedr: Fix reporting QP timeout attribute + - RDMA/cm: Fix memory leak in ib_cm_insert_listen + - linux/dim: Fix divide by 0 in RDMA DIM + - net: usb: asix: do not force pause frames support + - usbnet: fix memory allocation in helpers + - selftests: mptcp: more stable diag tests + - net: ipv6: unexport __init-annotated seg6_hmac_net_init() + - NFSD: restore EINVAL error translation in nfsd_commit() + - vfs: fix copy_file_range() regression in cross-fs copies + - caif_virtio: fix race between virtio_device_ready() and ndo_open() + - PM / devfreq: exynos-ppmu: Fix refcount leak in of_get_devfreq_events + - vdpa/mlx5: Update Control VQ callback information + - s390: remove unneeded 'select BUILD_BIN2C' + - netfilter: nft_dynset: restore set element counter when failing to update + - net/dsa/hirschmann: Add missing of_node_get() in hellcreek_led_setup() + - net/sched: act_api: Notify user space if any actions were flushed before + error + - net: asix: fix "can't send until first packet is send" issue + - net: bonding: fix possible NULL deref in rlb code + - net: phy: ax88772a: fix lost pause advertisement configuration + - net: bonding: fix use-after-free after 802.3ad slave unbind + - powerpc/memhotplug: Add add_pages override for PPC + - nfc: nfcmrvl: Fix irq_of_parse_and_map() return value + - NFC: nxp-nci: Don't issue a zero length i2c_master_read() + - tipc: move bc link creation back to tipc_node_create + - epic100: fix use after free on rmmod + - io_uring: ensure that send/sendmsg and recv/recvmsg check sqe->ioprio + - ACPI: video: Change how we determine if brightness key-presses are handled + - tunnels: do not assume mac header is set in skb_tunnel_check_pmtu() + - ipv6/sit: fix ipip6_tunnel_get_prl return value + - ipv6: fix lockdep splat in in6_dump_addrs() + - mlxsw: spectrum_router: Fix rollback in tunnel next hop init + - net: tun: avoid disabling NAPI twice + - MAINTAINERS: add Leah as xfs maintainer for 5.15.y + - tcp: add a missing nf_reset_ct() in 3WHS handling + - selftests/bpf: Add test_verifier support to fixup kfunc call insns + - selftests/rseq: remove ARRAY_SIZE define from individual tests + - selftests/rseq: introduce own copy of rseq uapi header + - selftests/rseq: Remove useless assignment to cpu variable + - selftests/rseq: Remove volatile from __rseq_abi + - selftests/rseq: Introduce rseq_get_abi() helper + - selftests/rseq: Introduce thread pointer getters + - selftests/rseq: Uplift rseq selftests for compatibility with glibc-2.35 + - selftests/rseq: Fix ppc32: wrong rseq_cs 32-bit field pointer on big endian + - selftests/rseq: Fix ppc32 missing instruction selection "u" and "x" for + load/store + - selftests/rseq: Fix ppc32 offsets by using long rather than off_t + - selftests/rseq: Fix warnings about #if checks of undefined tokens + - selftests/rseq: Remove arm/mips asm goto compiler work-around + - selftests/rseq: Fix: work-around asm goto compiler bugs + - selftests/rseq: x86-64: use %fs segment selector for accessing rseq thread + area + - selftests/rseq: x86-32: use %gs segment selector for accessing rseq thread + area + - selftests/rseq: Change type of rseq_offset to ptrdiff_t + - xen/blkfront: fix leaking data in shared pages + - xen/netfront: fix leaking data in shared pages + - xen/netfront: force data bouncing when backend is untrusted + - xen/blkfront: force data bouncing when backend is untrusted + - xen-netfront: restore __skb_queue_tail() positioning in + xennet_get_responses() + - xen/arm: Fix race in RB-tree based P2M accounting + - net: usb: qmi_wwan: add Telit 0x1070 composition + - clocksource/drivers/ixp4xx: remove EXPORT_SYMBOL_GPL from + ixp4xx_timer_setup() + - fsi: occ: Force sequence numbering per OCC + - net: fix IFF_TX_SKB_NO_LINEAR definition + - drm/i915/gem: add missing else + - drm/msm/gem: Fix error return on fence id alloc fail + - drivers: cpufreq: Add missing of_node_put() in qoriq-cpufreq.c + - platform/x86: panasonic-laptop: de-obfuscate button codes + - platform/x86: panasonic-laptop: sort includes alphabetically + - platform/x86: panasonic-laptop: revert "Resolve hotkey double trigger bug" + - platform/x86: panasonic-laptop: don't report duplicate brightness key- + presses + - platform/x86: panasonic-laptop: filter out duplicate volume up/down/mute + keypresses + - drm/fourcc: fix integer type usage in uapi header + - hwmon: (occ) Remove sequence numbering and checksum calculation + - hwmon: (occ) Prevent power cap command overwriting poll response + - hwmon: (ibmaem) don't call platform_device_del() if platform_device_add() + fails + - Linux 5.15.53 + * Jammy update: v5.15.52 upstream stable release (LP: #1986724) + - tick/nohz: unexport __init-annotated tick_nohz_full_setup() + - xfs: use kmem_cache_free() for kmem_cache objects + - xfs: punch out data fork delalloc blocks on COW writeback failure + - xfs: Fix the free logic of state in xfs_attr_node_hasname + - xfs: remove all COW fork extents when remounting readonly + - xfs: check sb_meta_uuid for dabuf buffer recovery + - xfs: prevent UAF in xfs_log_item_in_current_chkpt + - xfs: only bother with sync_filesystem during readonly remount + - powerpc/ftrace: Remove ftrace init tramp once kernel init is complete + - fs: add is_idmapped_mnt() helper + - fs: move mapping helpers + - fs: tweak fsuidgid_has_mapping() + - fs: account for filesystem mappings + - docs: update mapping documentation + - fs: use low-level mapping helpers + - fs: remove unused low-level mapping helpers + - fs: port higher-level mapping helpers + - fs: add i_user_ns() helper + - fs: support mapped mounts of mapped filesystems + - fs: fix acl translation + - fs: account for group membership + - rtw88: 8821c: support RFE type4 wifi NIC + - rtw88: rtw8821c: enable rfe 6 devices + - net: mscc: ocelot: allow unregistered IP multicast flooding to CPU + - io_uring: fix not locked access to fixed buf table + - Linux 5.15.52 + * Jammy update: v5.15.51 upstream stable release (LP: #1986718) + - random: schedule mix_interrupt_randomness() less often + - random: quiet urandom warning ratelimit suppression message + - ALSA: hda/via: Fix missing beep setup + - ALSA: hda/conexant: Fix missing beep setup + - ALSA: hda/realtek: Add mute LED quirk for HP Omen laptop + - ALSA: hda/realtek: Apply fixup for Lenovo Yoga Duet 7 properly + - ALSA: hda/realtek: Add quirk for Clevo PD70PNT + - ALSA: hda/realtek: Add quirk for Clevo NS50PU + - net: openvswitch: fix parsing of nw_proto for IPv6 fragments + - 9p: Fix refcounting during full path walks for fid lookups + - 9p: fix fid refcount leak in v9fs_vfs_atomic_open_dotl + - 9p: fix fid refcount leak in v9fs_vfs_get_link + - btrfs: fix hang during unmount when block group reclaim task is running + - btrfs: prevent remounting to v1 space cache for subpage mount + - btrfs: add error messages to all unrecognized mount options + - scsi: ibmvfc: Store vhost pointer during subcrq allocation + - scsi: ibmvfc: Allocate/free queue resource only during probe/remove + - mmc: sdhci-pci-o2micro: Fix card detect by dealing with debouncing + - mmc: mediatek: wait dma stop bit reset to 0 + - xen/gntdev: Avoid blocking in unmap_grant_pages() + - MAINTAINERS: Add new IOMMU development mailing list + - ata: libata: add qc->flags in ata_qc_complete_template tracepoint + - dm era: commit metadata in postsuspend after worker stops + - dm mirror log: clear log bits up to BITS_PER_LONG boundary + - tracing/kprobes: Check whether get_kretprobe() returns NULL in + kretprobe_dispatcher() + - drm/i915: Implement w/a 22010492432 for adl-s + - USB: serial: pl2303: add support for more HXN (G) types + - USB: serial: option: add Telit LE910Cx 0x1250 composition + - USB: serial: option: add Quectel EM05-G modem + - USB: serial: option: add Quectel RM500K module support + - drm/msm: Ensure mmap offset is initialized + - drm/msm: Fix double pm_runtime_disable() call + - netfilter: use get_random_u32 instead of prandom + - scsi: scsi_debug: Fix zone transition to full condition + - drm/msm: Switch ordering of runpm put vs devfreq_idle + - scsi: iscsi: Exclude zero from the endpoint ID range + - xsk: Fix generic transmit when completion queue reservation fails + - drm/msm: use for_each_sgtable_sg to iterate over scatterlist + - bpf: Fix request_sock leak in sk lookup helpers + - drm/sun4i: Fix crash during suspend after component bind failure + - bpf, x86: Fix tail call count offset calculation on bpf2bpf call + - scsi: storvsc: Correct reporting of Hyper-V I/O size limits + - phy: aquantia: Fix AN when higher speeds than 1G are not advertised + - KVM: arm64: Prevent kmemleak from accessing pKVM memory + - net: Write lock dev_base_lock without disabling bottom halves. + - net: fix data-race in dev_isalive() + - tipc: fix use-after-free Read in tipc_named_reinit + - igb: fix a use-after-free issue in igb_clean_tx_ring + - bonding: ARP monitor spams NETDEV_NOTIFY_PEERS notifiers + - ethtool: Fix get module eeprom fallback + - net/sched: sch_netem: Fix arithmetic in netem_dump() for 32-bit platforms + - drm/msm/mdp4: Fix refcount leak in mdp4_modeset_init_intf + - drm/msm/dp: check core_initialized before disable interrupts at + dp_display_unbind() + - drm/msm/dp: Drop now unused hpd_high member + - drm/msm/dp: dp_link_parse_sink_count() return immediately if aux read failed + - drm/msm/dp: do not initialize phy until plugin interrupt received + - drm/msm/dp: force link training for display resolution change + - perf arm-spe: Don't set data source if it's not a memory operation + - erspan: do not assume transport header is always set + - net/tls: fix tls_sk_proto_close executed repeatedly + - udmabuf: add back sanity check + - selftests: netfilter: correct PKTGEN_SCRIPT_PATHS in nft_concat_range.sh + - xen-blkfront: Handle NULL gendisk + - x86/xen: Remove undefined behavior in setup_features() + - MIPS: Remove repetitive increase irq_err_count + - afs: Fix dynamic root getattr + - ice: ethtool: advertise 1000M speeds properly + - regmap-irq: Fix a bug in regmap_irq_enable() for type_in_mask chips + - regmap-irq: Fix offset/index mismatch in read_sub_irq_data() + - virtio_net: fix xdp_rxq_info bug after suspend/resume + - Revert "net/tls: fix tls_sk_proto_close executed repeatedly" + - sock: redo the psock vs ULP protection check + - nvme-pci: add NO APST quirk for Kioxia device + - nvme: move the Samsung X5 quirk entry to the core quirks + - gpio: winbond: Fix error code in winbond_gpio_get() + - s390/cpumf: Handle events cycles and instructions identical + - iio: mma8452: fix probe fail when device tree compatible is used. + - iio: magnetometer: yas530: Fix memchr_inv() misuse + - iio: adc: vf610: fix conversion mode sysfs node name + - usb: typec: wcove: Drop wrong dependency to INTEL_SOC_PMIC + - xhci-pci: Allow host runtime PM as default for Intel Raptor Lake xHCI + - xhci-pci: Allow host runtime PM as default for Intel Meteor Lake xHCI + - usb: gadget: Fix non-unique driver names in raw-gadget driver + - USB: gadget: Fix double-free bug in raw_gadget driver + - usb: chipidea: udc: check request status before setting device address + - dt-bindings: usb: ohci: Increase the number of PHYs + - dt-bindings: usb: ehci: Increase the number of PHYs + - btrfs: don't set lock_owner when locking extent buffer for reading + - btrfs: fix deadlock with fsync+fiemap+transaction commit + - f2fs: attach inline_data after setting compression + - iio:humidity:hts221: rearrange iio trigger get and register + - iio:chemical:ccs811: rearrange iio trigger get and register + - iio:accel:kxcjk-1013: rearrange iio trigger get and register + - iio:accel:bma180: rearrange iio trigger get and register + - iio:accel:mxc4005: rearrange iio trigger get and register + - iio: accel: mma8452: ignore the return value of reset operation + - iio: gyro: mpu3050: Fix the error handling in mpu3050_power_up() + - iio: trigger: sysfs: fix use-after-free on remove + - iio: adc: stm32: fix maximum clock rate for stm32mp15x + - iio: imu: inv_icm42600: Fix broken icm42600 (chip id 0 value) + - iio: afe: rescale: Fix boolean logic bug + - iio: adc: stm32: Fix ADCs iteration in irq handler + - iio: adc: stm32: Fix IRQs on STM32F4 by removing custom spurious IRQs + message + - iio: adc: axp288: Override TS pin bias current for some models + - iio: adc: rzg2l_adc: add missing fwnode_handle_put() in + rzg2l_adc_parse_properties() + - iio: adc: adi-axi-adc: Fix refcount leak in adi_axi_adc_attach_client + - iio: adc: ti-ads131e08: add missing fwnode_handle_put() in + ads131e08_alloc_channels() + - xtensa: xtfpga: Fix refcount leak bug in setup + - xtensa: Fix refcount leak bug in time.c + - parisc/stifb: Fix fb_is_primary_device() only available with CONFIG_FB_STI + - parisc: Enable ARCH_HAS_STRICT_MODULE_RWX + - powerpc/microwatt: wire up rng during setup_arch() + - powerpc: Enable execve syscall exit tracepoint + - powerpc/rtas: Allow ibm,platform-dump RTAS call with null buffer address + - powerpc/powernv: wire up rng during setup_arch + - drm/msm/dp: Always clear mask bits to disable interrupts at + dp_ctrl_reset_irq_ctrl() + - ARM: dts: imx7: Move hsic_phy power domain to HSIC PHY node + - ARM: dts: imx6qdl: correct PU regulator ramp delay + - arm64: dts: ti: k3-am64-main: Remove support for HS400 speed mode + - ARM: exynos: Fix refcount leak in exynos_map_pmu + - soc: bcm: brcmstb: pm: pm-arm: Fix refcount leak in brcmstb_pm_probe + - ARM: Fix refcount leak in axxia_boot_secondary + - memory: samsung: exynos5422-dmc: Fix refcount leak in of_get_dram_timings + - ARM: cns3xxx: Fix refcount leak in cns3xxx_init + - modpost: fix section mismatch check for exported init/exit sections + - ARM: dts: bcm2711-rpi-400: Fix GPIO line names + - random: update comment from copy_to_user() -> copy_to_iter() + - perf build-id: Fix caching files with a wrong build ID + - dma-direct: use the correct size for dma_set_encrypted() + - kbuild: link vmlinux only once for CONFIG_TRIM_UNUSED_KSYMS (2nd attempt) + - powerpc/pseries: wire up rng during setup_arch() + - Linux 5.15.51 + * Jammy update: v5.15.50 upstream stable release (LP: #1986715) + - net: mana: Add handling of CQE_RX_TRUNCATED + - zonefs: fix zonefs_iomap_begin() for reads + - usb: gadget: u_ether: fix regression in setting fixed MAC address + - bpf: Fix calling global functions from BPF_PROG_TYPE_EXT programs + - selftests/bpf: Add selftest for calling global functions from freplace + - serial: core: Initialize rs485 RTS polarity already on probe + - arm64: mm: Don't invalidate FROM_DEVICE buffers at start of DMA transfer + - Linux 5.15.50 + * Jammy update: v5.15.49 upstream stable release (LP: #1983149) + - Revert "drm/amd/display: Fix DCN3 B0 DP Alt Mapping" + - nfsd: Replace use of rwsem with errseq_t + - arm64: dts: imx8mm-beacon: Enable RTS-CTS on UART3 + - arm64: dts: imx8mn-beacon: Enable RTS-CTS on UART3 + - powerpc/kasan: Silence KASAN warnings in __get_wchan() + - ASoC: nau8822: Add operation for internal PLL off and on + - drm/amd/display: Read Golden Settings Table from VBIOS + - drm/amdkfd: Use mmget_not_zero in MMU notifier + - dma-debug: make things less spammy under memory pressure + - ASoC: cs42l52: Fix TLV scales for mixer controls + - ASoC: cs35l36: Update digital volume TLV + - ASoC: cs53l30: Correct number of volume levels on SX controls + - ASoC: cs42l52: Correct TLV for Bypass Volume + - ASoC: cs42l56: Correct typo in minimum level for SX volume controls + - ASoC: cs42l51: Correct minimum value for SX volume control + - drm/amdkfd: add pinned BOs to kfd_bo_list + - ata: libata-core: fix NULL pointer deref in ata_host_alloc_pinfo() + - quota: Prevent memory allocation recursion while holding dq_lock + - ASoC: wm8962: Fix suspend while playing music + - ASoC: es8328: Fix event generation for deemphasis control + - ASoC: wm_adsp: Fix event generation for wm_adsp_fw_put() + - Input: soc_button_array - also add Lenovo Yoga Tablet2 1051F to + dmi_use_low_level_irq + - scsi: vmw_pvscsi: Expand vcpuHint to 16 bits + - scsi: lpfc: Resolve NULL ptr dereference after an ELS LOGO is aborted + - scsi: lpfc: Fix port stuck in bypassed state after LIP in PT2PT topology + - scsi: lpfc: Allow reduced polling rate for nvme_admin_async_event cmd + completion + - scsi: mpt3sas: Fix out-of-bounds compiler warning + - scsi: ipr: Fix missing/incorrect resource cleanup in error case + - scsi: pmcraid: Fix missing resource cleanup in error case + - ALSA: hda/realtek - Add HW8326 support + - virtio-mmio: fix missing put_device() when vm_cmdline_parent registration + failed + - nfc: nfcmrvl: Fix memory leak in nfcmrvl_play_deferred + - ipv6: Fix signed integer overflow in l2tp_ip6_sendmsg + - net: ethernet: mtk_eth_soc: fix misuse of mem alloc interface + netdev[napi]_alloc_frag + - gcc-12: disable '-Wdangling-pointer' warning for now + - mellanox: mlx5: avoid uninitialized variable warning with gcc-12 + - MIPS: Loongson-3: fix compile mips cpu_hwmon as module build error. + - random: credit cpu and bootloader seeds by default + - gpio: dwapb: Don't print error on -EPROBE_DEFER + - platform/x86: gigabyte-wmi: Add Z690M AORUS ELITE AX DDR4 support + - platform/x86: gigabyte-wmi: Add support for B450M DS3H-CF + - platform/x86/intel: hid: Add Surface Go to VGBS allow list + - staging: r8188eu: fix rtw_alloc_hwxmits error detection for now + - staging: r8188eu: Use zeroing allocator in wpa_set_encryption() + - staging: r8188eu: Fix warning of array overflow in ioctl_linux.c + - pNFS: Don't keep retrying if the server replied NFS4ERR_LAYOUTUNAVAILABLE + - pNFS: Avoid a live lock condition in pnfs_update_layout() + - sunrpc: set cl_max_connect when cloning an rpc_clnt + - clocksource: hyper-v: unexport __init-annotated hv_init_clocksource() + - i40e: Fix adding ADQ filter to TC0 + - i40e: Fix calculating the number of queue pairs + - i40e: Fix call trace in setup_tx_descriptors + - Drivers: hv: vmbus: Release cpu lock in error case + - tty: goldfish: Fix free_irq() on remove + - misc: atmel-ssc: Fix IRQ check in ssc_probe + - io_uring: fix races with file table unregister + - io_uring: fix races with buffer table unregister + - drm/i915/reset: Fix error_state_read ptr + offset use + - net: hns3: split function hclge_update_port_base_vlan_cfg() + - net: hns3: set port base vlan tbl_sta to false before removing old vlan + - net: hns3: don't push link state to VF if unalive + - net: hns3: fix tm port shapping of fibre port is incorrect after driver + initialization + - nvme: add device name to warning in uuid_show() + - mlxsw: spectrum_cnt: Reorder counter pools + - net: bgmac: Fix an erroneous kfree() in bgmac_remove() + - net: ax25: Fix deadlock caused by skb_recv_datagram in ax25_recvmsg + - arm64: ftrace: fix branch range checks + - arm64: ftrace: consistently handle PLTs. + - certs/blacklist_hashes.c: fix const confusion in certs blacklist + - init: Initialize noop_backing_dev_info early + - block: Fix handling of offline queues in blk_mq_alloc_request_hctx() + - faddr2line: Fix overlapping text section failures, the sequel + - i2c: npcm7xx: Add check for platform_driver_register + - irqchip/gic/realview: Fix refcount leak in realview_gic_of_init + - irqchip/gic-v3: Fix error handling in gic_populate_ppi_partitions + - irqchip/gic-v3: Fix refcount leak in gic_populate_ppi_partitions + - irqchip/realtek-rtl: Fix refcount leak in map_interrupts + - sched: Fix balance_push() vs __sched_setscheduler() + - i2c: designware: Use standard optional ref clock implementation + - mei: hbm: drop capability response on early shutdown + - mei: me: add raptor lake point S DID + - comedi: vmk80xx: fix expression for tx buffer size + - [Config] updateconfigs for LIB_MEMNEQ + - crypto: memneq - move into lib/ + - USB: serial: option: add support for Cinterion MV31 with new baseline + - USB: serial: io_ti: add Agilent E5805A support + - usb: dwc2: Fix memory leak in dwc2_hcd_init + - usb: cdnsp: Fixed setting last_trb incorrectly + - usb: gadget: lpc32xx_udc: Fix refcount leak in lpc32xx_udc_probe + - usb: gadget: f_fs: change ep->status safe in ffs_epfile_io() + - usb: gadget: f_fs: change ep->ep safe in ffs_epfile_io() + - tty: n_gsm: Debug output allocation must use GFP_ATOMIC + - serial: 8250: Store to lsr_save_flags after lsr read + - bus: fsl-mc-bus: fix KASAN use-after-free in fsl_mc_bus_remove() + - dm mirror log: round up region bitmap size to BITS_PER_LONG + - drm/amd/display: Cap OLED brightness per max frame-average luminance + - cfi: Fix __cfi_slowpath_diag RCU usage with cpuidle + - ext4: fix super block checksum incorrect after mount + - ext4: fix bug_on ext4_mb_use_inode_pa + - ext4: make variable "count" signed + - ext4: add reserved GDT blocks check + - KVM: arm64: Don't read a HW interrupt pending state in user context + - virtio-pci: Remove wrong address verification in vp_del_vqs() + - powerpc/book3e: get rid of #include + - clk: imx8mp: fix usb_root_clk parent + - Linux 5.15.49 + * Jammy update: v5.15.48 upstream stable release (LP: #1983146) + - Linux 5.15.48 + - Upstream stable to v5.15.48 + * Jammy update: v5.15.47 upstream stable release (LP: #1982968) + - pcmcia: db1xxx_ss: restrict to MIPS_DB1XXX boards + - staging: greybus: codecs: fix type confusion of list iterator variable + - iio: adc: ad7124: Remove shift from scan_type + - lkdtm/bugs: Check for the NULL pointer after calling kmalloc + - lkdtm/bugs: Don't expect thread termination without CONFIG_UBSAN_TRAP + - tty: goldfish: Use tty_port_destroy() to destroy port + - tty: serial: owl: Fix missing clk_disable_unprepare() in owl_uart_probe + - tty: n_tty: Restore EOF push handling behavior + - serial: 8250_aspeed_vuart: Fix potential NULL dereference in + aspeed_vuart_probe + - tty: serial: fsl_lpuart: fix potential bug when using both of_alias_get_id + and ida_simple_get + - remoteproc: imx_rproc: Ignore create mem entry for resource table + - usb: usbip: fix a refcount leak in stub_probe() + - usb: usbip: add missing device lock on tweak configuration cmd + - USB: storage: karma: fix rio_karma_init return + - usb: musb: Fix missing of_node_put() in omap2430_probe + - staging: fieldbus: Fix the error handling path in + anybuss_host_common_probe() + - pwm: lp3943: Fix duty calculation in case period was clamped + - pwm: raspberrypi-poe: Fix endianness in firmware struct + - rpmsg: qcom_smd: Fix irq_of_parse_and_map() return value + - usb: dwc3: gadget: Replace list_for_each_entry_safe() if using giveback + - usb: dwc3: pci: Fix pm_runtime_get_sync() error checking + - misc: fastrpc: fix an incorrect NULL check on list iterator + - firmware: stratix10-svc: fix a missing check on list iterator + - usb: typec: mux: Check dev_set_name() return value + - rpmsg: virtio: Fix possible double free in rpmsg_probe() + - rpmsg: virtio: Fix possible double free in rpmsg_virtio_add_ctrl_dev() + - rpmsg: virtio: Fix the unregistration of the device rpmsg_ctrl + - iio: adc: stmpe-adc: Fix wait_for_completion_timeout return value check + - iio: proximity: vl53l0x: Fix return value check of + wait_for_completion_timeout + - iio: adc: sc27xx: fix read big scale voltage not right + - iio: adc: sc27xx: Fine tune the scale calibration values + - rpmsg: qcom_smd: Fix returning 0 if irq_of_parse_and_map() fails + - pvpanic: Fix typos in the comments + - misc/pvpanic: Convert regular spinlock into trylock on panic path + - phy: qcom-qmp: fix pipe-clock imbalance on power-on failure + - power: supply: axp288_fuel_gauge: Drop BIOS version check from "T3 MRD" DMI + quirk + - serial: sifive: Report actual baud base rather than fixed 115200 + - export: fix string handling of namespace in EXPORT_SYMBOL_NS + - soundwire: intel: prevent pm_runtime resume prior to system suspend + - coresight: cpu-debug: Replace mutex with mutex_trylock on panic notifier + - ksmbd: fix reference count leak in smb_check_perm_dacl() + - extcon: ptn5150: Add queue work sync before driver release + - soc: rockchip: Fix refcount leak in rockchip_grf_init + - clocksource/drivers/riscv: Events are stopped during CPU suspend + - ARM: dts: aspeed: ast2600-evb: Enable RX delay for MAC0/MAC1 + - rtc: mt6397: check return value after calling platform_get_resource() + - rtc: ftrtc010: Use platform_get_irq() to get the interrupt + - rtc: ftrtc010: Fix error handling in ftrtc010_rtc_probe + - staging: r8188eu: add check for kzalloc + - tty: n_gsm: Don't ignore write return value in gsmld_output() + - tty: n_gsm: Fix packet data hex dump output + - serial: meson: acquire port->lock in startup() + - serial: 8250_fintek: Check SER_RS485_RTS_* only with RS485 + - serial: cpm_uart: Fix build error without CONFIG_SERIAL_CPM_CONSOLE + - serial: digicolor-usart: Don't allow CS5-6 + - serial: rda-uart: Don't allow CS5-6 + - serial: txx9: Don't allow CS5-6 + - serial: sh-sci: Don't allow CS5-6 + - serial: sifive: Sanitize CSIZE and c_iflag + - serial: st-asc: Sanitize CSIZE and correct PARENB for CS7 + - serial: stm32-usart: Correct CSIZE, bits, and parity + - firmware: dmi-sysfs: Fix memory leak in dmi_sysfs_register_handle + - bus: ti-sysc: Fix warnings for unbind for serial + - driver: base: fix UAF when driver_attach failed + - driver core: fix deadlock in __device_attach + - watchdog: rti-wdt: Fix pm_runtime_get_sync() error checking + - watchdog: ts4800_wdt: Fix refcount leak in ts4800_wdt_probe + - blk-mq: don't touch ->tagset in blk_mq_get_sq_hctx + - ASoC: fsl_sai: Fix FSL_SAI_xDR/xFR definition + - clocksource/drivers/oxnas-rps: Fix irq_of_parse_and_map() return value + - s390/crypto: fix scatterwalk_unmap() callers in AES-GCM + - net: sched: fixed barrier to prevent skbuff sticking in qdisc backlog + - net: ethernet: mtk_eth_soc: out of bounds read in mtk_hwlro_get_fdir_entry() + - net: ethernet: ti: am65-cpsw-nuss: Fix some refcount leaks + - net: dsa: mv88e6xxx: Fix refcount leak in mv88e6xxx_mdios_register + - modpost: fix removing numeric suffixes + - jffs2: fix memory leak in jffs2_do_fill_super + - ubi: fastmap: Fix high cpu usage of ubi_bgt by making sure wl_pool not empty + - ubi: ubi_create_volume: Fix use-after-free when volume creation failed + - selftests/bpf: fix selftest after random: Urandom_read tracepoint removal + - selftests/bpf: fix stacktrace_build_id with missing kprobe/urandom_read + - bpf: Fix probe read error in ___bpf_prog_run() + - block: take destination bvec offsets into account in bio_copy_data_iter + - riscv: read-only pages should not be writable + - net/smc: fixes for converting from "struct smc_cdc_tx_pend **" to "struct + smc_wr_tx_pend_priv *" + - tcp: add accessors to read/set tp->snd_cwnd + - nfp: only report pause frame configuration for physical device + - sfc: fix considering that all channels have TX queues + - sfc: fix wrong tx channel offset with efx_separate_tx_channels + - block: make bioset_exit() fully resilient against being called twice + - vdpa: Fix error logic in vdpa_nl_cmd_dev_get_doit + - virtio: pci: Fix an error handling path in vp_modern_probe() + - net/mlx5: Don't use already freed action pointer + - net/mlx5: CT: Fix header-rewrite re-use for tupels + - net/mlx5: correct ECE offset in query qp output + - net/mlx5e: Update netdev features after changing XDP state + - net: sched: add barrier to fix packet stuck problem for lockless qdisc + - tcp: tcp_rtx_synack() can be called from process context + - vdpa: ifcvf: set pci driver data in probe + - octeontx2-af: fix error code in is_valid_offset() + - s390/mcck: isolate SIE instruction when setting CIF_MCCK_GUEST flag + - regulator: mt6315-regulator: fix invalid allowed mode + - gpio: pca953x: use the correct register address to do regcache sync + - afs: Fix infinite loop found by xfstest generic/676 + - scsi: sd: Fix potential NULL pointer dereference + - tipc: check attribute length for bearer name + - driver core: Fix wait_for_device_probe() & deferred_probe_timeout + interaction + - perf c2c: Fix sorting in percent_rmt_hitm_cmp() + - dmaengine: idxd: set DMA_INTERRUPT cap bit + - mips: cpc: Fix refcount leak in mips_cpc_default_phys_base + - bootconfig: Make the bootconfig.o as a normal object file + - tracing: Make tp_printk work on syscall tracepoints + - tracing: Fix sleeping function called from invalid context on RT kernel + - tracing: Avoid adding tracer option before update_tracer_options + - iommu/arm-smmu: fix possible null-ptr-deref in arm_smmu_device_probe() + - iommu/arm-smmu-v3: check return value after calling platform_get_resource() + - f2fs: remove WARN_ON in f2fs_is_valid_blkaddr + - i2c: cadence: Increase timeout per message if necessary + - m68knommu: set ZERO_PAGE() to the allocated zeroed page + - m68knommu: fix undefined reference to `_init_sp' + - dmaengine: zynqmp_dma: In struct zynqmp_dma_chan fix desc_size data type + - NFSv4: Don't hold the layoutget locks across multiple RPC calls + - video: fbdev: hyperv_fb: Allow resolutions with size > 64 MB for Gen1 + - video: fbdev: pxa3xx-gcu: release the resources correctly in + pxa3xx_gcu_probe/remove() + - RISC-V: use memcpy for kexec_file mode + - m68knommu: fix undefined reference to `mach_get_rtc_pll' + - f2fs: fix to tag gcing flag on page during file defragment + - xprtrdma: treat all calls not a bcall when bc_serv is NULL + - drm/bridge: sn65dsi83: Fix an error handling path in sn65dsi83_probe() + - drm/bridge: ti-sn65dsi83: Handle dsi_lanes == 0 as invalid + - netfilter: nat: really support inet nat without l3 address + - netfilter: nf_tables: use kfree_rcu(ptr, rcu) to release hooks in clean_net + path + - netfilter: nf_tables: delete flowtable hooks via transaction list + - powerpc/kasan: Force thread size increase with KASAN + - SUNRPC: Trap RDMA segment overflows + - netfilter: nf_tables: always initialize flowtable hook list in transaction + - ata: pata_octeon_cf: Fix refcount leak in octeon_cf_probe + - netfilter: nf_tables: release new hooks on unsupported flowtable flags + - netfilter: nf_tables: memleak flow rule from commit path + - netfilter: nf_tables: bail out early if hardware offload is not supported + - xen: unexport __init-annotated xen_xlate_map_ballooned_pages() + - stmmac: intel: Fix an error handling path in intel_eth_pci_probe() + - af_unix: Fix a data-race in unix_dgram_peer_wake_me(). + - bpf, arm64: Clear prog->jited_len along prog->jited + - net: dsa: lantiq_gswip: Fix refcount leak in gswip_gphy_fw_list + - net/mlx4_en: Fix wrong return value on ioctl EEPROM query failure + - i40e: xsk: Move tmp desc array from driver to pool + - xsk: Fix handling of invalid descriptors in XSK TX batching API + - SUNRPC: Fix the calculation of xdr->end in xdr_get_next_encode_buffer() + - net: mdio: unexport __init-annotated mdio_bus_init() + - net: xfrm: unexport __init-annotated xfrm4_protocol_init() + - net: ipv6: unexport __init-annotated seg6_hmac_init() + - net/mlx5: Lag, filter non compatible devices + - net/mlx5: Fix mlx5_get_next_dev() peer device matching + - net/mlx5: Rearm the FW tracer after each tracer event + - net/mlx5: fs, fail conflicting actions + - ip_gre: test csum_start instead of transport header + - net: altera: Fix refcount leak in altera_tse_mdio_create + - net: dsa: mv88e6xxx: use BMSR_ANEGCOMPLETE bit for filling an_complete + - tcp: use alloc_large_system_hash() to allocate table_perturb + - drm: imx: fix compiler warning with gcc-12 + - nfp: flower: restructure flow-key for gre+vlan combination + - iov_iter: Fix iter_xarray_get_pages{,_alloc}() + - iio: dummy: iio_simple_dummy: check the return value of kstrdup() + - staging: rtl8712: fix a potential memory leak in r871xu_drv_init() + - iio: st_sensors: Add a local lock for protecting odr + - lkdtm/usercopy: Expand size of "out of frame" object + - drivers: staging: rtl8723bs: Fix deadlock in rtw_surveydone_event_callback() + - drivers: staging: rtl8192bs: Fix deadlock in rtw_joinbss_event_prehandle() + - tty: synclink_gt: Fix null-pointer-dereference in slgt_clean() + - tty: Fix a possible resource leak in icom_probe + - thunderbolt: Use different lane for second DisplayPort tunnel + - drivers: staging: rtl8192u: Fix deadlock in ieee80211_beacons_stop() + - drivers: staging: rtl8192e: Fix deadlock in rtllib_beacons_stop() + - USB: host: isp116x: check return value after calling platform_get_resource() + - drivers: tty: serial: Fix deadlock in sa1100_set_termios() + - drivers: usb: host: Fix deadlock in oxu_bus_suspend() + - USB: hcd-pci: Fully suspend across freeze/thaw cycle + - char: xillybus: fix a refcount leak in cleanup_dev() + - sysrq: do not omit current cpu when showing backtrace of all active CPUs + - usb: dwc2: gadget: don't reset gadget's driver->bus + - soundwire: qcom: adjust autoenumeration timeout + - misc: rtsx: set NULL intfdata when probe fails + - extcon: Fix extcon_get_extcon_dev() error handling + - extcon: Modify extcon device to be created after driver data is set + - clocksource/drivers/sp804: Avoid error on multiple instances + - staging: rtl8712: fix uninit-value in usb_read8() and friends + - staging: rtl8712: fix uninit-value in r871xu_drv_init() + - serial: msm_serial: disable interrupts in __msm_console_write() + - kernfs: Separate kernfs_pr_cont_buf and rename_lock. + - watchdog: wdat_wdt: Stop watchdog when rebooting the system + - md: protect md_unregister_thread from reentrancy + - scsi: myrb: Fix up null pointer access on myrb_cleanup() + - ceph: allow ceph.dir.rctime xattr to be updatable + - ceph: flush the mdlog for filesystem sync + - drm/amd/display: Check if modulo is 0 before dividing. + - drm/radeon: fix a possible null pointer dereference + - drm/amd/pm: Fix missing thermal throttler status + - um: line: Use separate IRQs per line + - modpost: fix undefined behavior of is_arm_mapping_symbol() + - x86/cpu: Elide KCSAN for cpu_has() and friends + - jump_label,noinstr: Avoid instrumentation for JUMP_LABEL=n builds + - nbd: call genl_unregister_family() first in nbd_cleanup() + - nbd: fix race between nbd_alloc_config() and module removal + - cifs: version operations for smb20 unneeded when legacy support disabled + - drm/amd/pm: use bitmap_{from,to}_arr32 where appropriate + - nodemask: Fix return values to be unsigned + - vringh: Fix loop descriptors check in the indirect cases + - scripts/gdb: change kernel config dumping method + - ALSA: usb-audio: Skip generic sync EP parse for secondary EP + - ALSA: usb-audio: Set up (implicit) sync for Saffire 6 + - ALSA: hda/conexant - Fix loopback issue with CX20632 + - ALSA: hda/realtek: Fix for quirk to enable speaker output on the Lenovo Yoga + DuetITL 2021 + - ALSA: hda/realtek: Add quirk for HP Dev One + - cifs: return errors during session setup during reconnects + - cifs: fix reconnect on smb3 mount types + - KEYS: trusted: tpm2: Fix migratable logic + - ata: libata-transport: fix {dma|pio|xfer}_mode sysfs files + - mmc: block: Fix CQE recovery reset success + - net: phy: dp83867: retrigger SGMII AN when link change + - writeback: Fix inode->i_io_list not be protected by inode->i_lock error + - nfc: st21nfca: fix incorrect validating logic in EVT_TRANSACTION + - nfc: st21nfca: fix memory leaks in EVT_TRANSACTION handling + - nfc: st21nfca: fix incorrect sizing calculations in EVT_TRANSACTION + - ixgbe: fix bcast packets Rx on VF after promisc removal + - ixgbe: fix unexpected VLAN Rx in promisc mode on VF + - Input: bcm5974 - set missing URB_NO_TRANSFER_DMA_MAP urb flag + - vduse: Fix NULL pointer dereference on sysfs access + - powerpc: Don't select HAVE_IRQ_EXIT_ON_IRQ_STACK + - drm/bridge: analogix_dp: Support PSR-exit to disable transition + - drm/atomic: Force bridge self-refresh-exit on CRTC switch + - drm/amdgpu: update VCN codec support for Yellow Carp + - powerpc/32: Fix overread/overwrite of thread_struct via ptrace + - powerpc/mm: Switch obsolete dssall to .long + - drm/ast: Create threshold values for AST2600 + - random: avoid checking crng_ready() twice in random_init() + - random: mark bootloader randomness code as __init + - random: account for arch randomness in bits + - md/raid0: Ignore RAID0 layout if the second zone has only one device + - net/sched: act_police: more accurate MTU policing + - PCI: qcom: Fix pipe clock imbalance + - zonefs: fix handling of explicit_open option on mount + - iov_iter: fix build issue due to possible type mis-match + - dmaengine: idxd: add missing callback function to support DMA_INTERRUPT + - tcp: fix tcp_mtup_probe_success vs wrong snd_cwnd + - xsk: Fix possible crash when multiple sockets are created + - Linux 5.15.47 + * CVE-2022-36946 + - netfilter: nf_queue: do not allow packet truncation below transport header + offset + * CVE-2021-33655 + - fbcon: Disallow setting font bigger than screen size + - fbcon: Prevent that screen size is smaller than font size + - fbmem: Check virtual screen sizes in fb_set_var() + + -- Tim Gardner Thu, 01 Sep 2022 11:54:52 -0600 + +linux-azure (5.15.0-1019.24) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1019.22 -proposed tracker (LP: #1987327) + + * azure-5.15: Remove circular dependency on linux-modules and linux-image + (LP: #1987294) + - [Packaging] azure-5.15: Remove circular package dependencies (partial + revert) + + -- Tim Gardner Tue, 23 Aug 2022 07:59:34 -0600 + +linux-azure (5.15.0-1019.22) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1019.22 -proposed tracker (LP: #1987327) + + * azure-5.15: Remove circular dependency on linux-modules and linux-image + (LP: #1987294) + - [Packaging] azure-5.15: Remove circular package dependencies + + -- Tim Gardner Mon, 22 Aug 2022 11:55:11 -0600 + +linux-azure (5.15.0-1018.21) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1018.21 -proposed tracker (LP: #1983873) + + * Jammy update: v5.15.44 upstream stable release (LP: #1981649) // Jammy + update: v5.15.46 upstream stable release (LP: #1981864) + - [Config] azure: Update configs after rebase + + * Jammy update: v5.15.46 upstream stable release (LP: #1981864) + - [Packaging] azure: Move python3-dev to build-depends + + * Azure: Add the Linux MANA PF driver (LP: #1980766) + - ethernet: use eth_hw_addr_set() instead of ether_addr_copy() + - net: mana: Use kcalloc() instead of kzalloc() + - net: mana: Allow setting the number of queues while the NIC is down + - net: mana: Fix the netdev_err()'s vPort argument in mana_init_port() + - net: mana: Report OS info to the PF driver + - net: mana: Improve the HWC error handling + - net: mana: Support hibernation and kexec + - net: mana: Fix spelling mistake "calledd" -> "called" + - net: mana: Add XDP support + - net: Add includes masked by netdevice.h including uapi/bpf.h + - net: mana: Use struct_size() helper in mana_gd_create_dma_region() + - net: mana: Add counter for packet dropped by XDP + - net: mana: Add counter for XDP_TX + - net: mana: Reuse XDP dropped page + - net: mana: Add the Linux MANA PF driver + + [ 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 + + -- Tim Gardner Mon, 15 Aug 2022 08:51:06 -0600 + +linux-azure (5.15.0-1017.20) jammy; urgency=medium + + [ 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 + + -- Thadeu Lima de Souza Cascardo Fri, 05 Aug 2022 08:33:29 -0300 + +linux-azure (5.15.0-1016.19) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1016.19 -proposed tracker (LP: #1982619) + + * Azure: multi-MSI patches break fio tests on NVMe (LP: #1982613) + - Revert "PCI: hv: Fix interrupt mapping for multi-MSI" + - Revert "PCI: hv: Reuse existing IRTE allocation in compose_msi_msg()" + - Revert "PCI: hv: Fix hv_arch_irq_unmask() for multi-MSI" + - Revert "PCI: hv: Remove unused hv_set_msi_entry_from_desc()" + - Revert "PCI: hv: Avoid the retarget interrupt hypercall in irq_unmask() on + ARM64" + - Revert "PCI: hv: Fix multi-MSI to allow more than one MSI vector" + - Revert "genirq/msi, treewide: Use a named struct for PCI/MSI attributes" + - Revert "PCI/MSI: Remove msi_desc_to_pci_sysdata()" + - Revert "PCI/MSI: Make pci_msi_domain_write_msg() static" + - Revert "genirq/msi: Fixup includes" + - Revert "genirq/msi: Remove unused domain callbacks" + - Revert "genirq/msi: Guard sysfs code" + + -- Tim Gardner Fri, 22 Jul 2022 16:40:45 -0600 + +linux-azure (5.15.0-1015.18) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1015.18 -proposed tracker (LP: #1982272) + + * Azure: Add support for multi-MSI (LP: #1981577) + - genirq/msi: Guard sysfs code + - genirq/msi: Remove unused domain callbacks + - genirq/msi: Fixup includes + - PCI/MSI: Make pci_msi_domain_write_msg() static + - PCI/MSI: Remove msi_desc_to_pci_sysdata() + - genirq/msi, treewide: Use a named struct for PCI/MSI attributes + - PCI: hv: Fix multi-MSI to allow more than one MSI vector + - PCI: hv: Avoid the retarget interrupt hypercall in irq_unmask() on ARM64 + - PCI: hv: Remove unused hv_set_msi_entry_from_desc() + - PCI: hv: Fix hv_arch_irq_unmask() for multi-MSI + - PCI: hv: Reuse existing IRTE allocation in compose_msi_msg() + - PCI: hv: Fix interrupt mapping for multi-MSI + + * AMD ACP 6.x DMIC Supports (LP: #1949245) + - [Config] azure: Disable AMD ACP 6 DMIC Support + + * Ubuntu 22.04 and 20.04 DPC Fixes for Failure Cases of DownPort Containment + events (LP: #1965241) + - [Config] azure: Enable config option CONFIG_PCIE_EDR + + * CVE-2022-29900 // CVE-2022-29901 + - [Config]: azure: Enable speculation mitigations + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.07.11) + + [ 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 + + [ 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 + + -- Tim Gardner Wed, 20 Jul 2022 10:14:32 -0600 + +linux-azure (5.15.0-1014.17) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1014.17 -proposed tracker (LP: #1979425) + + * 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 + + * SGX fixes for 5.15 Azure tuned kernel (LP: #1979541) + - 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 + + * No sound support on Linux AWS/Azure kernels (but supported on GCP) + (LP: #1970586) + - [Config] azure: CONFIG_SOUND=m + + [ 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 + + -- Tim Gardner Thu, 23 Jun 2022 12:42:08 -0600 + +linux-azure (5.15.0-1013.16) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1013.16 -proposed tracker (LP: #1978588) + + * build backport-iwlwifi-dkms as linux-modules-iwlwifi-ABI (LP: #1969434) + - [Packaging] azure: drop do_ arch specific configs + + * Support Intel IPU6 MIPI camera on Alder Lake platforms (LP: #1955383) // + IPU6 camera has no function on Andrews MLK (LP: #1964983) // disable Intel + DMA remapping by default (LP: #1971699) + - [Config] azure: Annotation and config updates after rebase + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.05.30) + + [ 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 + + -- Tim Gardner Wed, 15 Jun 2022 14:27:59 -0600 + +linux-azure (5.15.0-1012.15) 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 13:40:21 -0300 + +linux-azure (5.15.0-1010.12) 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 Wed, 01 Jun 2022 15:42:32 -0300 + +linux-azure (5.15.0-1008.9) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1008.9 -proposed tracker (LP: #1974294) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.04.18) + + * [Azure] WARNING: CPU: 0 PID: 499 at include/linux/dma-mapping.h:555 + netvsc_probe+0x3c9/0x3e0 (LP: #1975717) + - Drivers: hv: vmbus: Rework use of DMA_BIT_MASK(64) + - Drivers: hv: vmbus: Fix initialization of device object in + vmbus_device_register() + + * config CONFIG_HISI_PMU for kunpeng920 (LP: #1956086) + - [Config] azure: CONFIG_HISI_PMU=m + + * linux: CONFIG_SERIAL_8250_MID=y (LP: #1967338) + - [Config] azure: CONFIG_SERIAL_8250_MID=y + + * Support AMD P-State cpufreq control mechanism (LP: #1956509) // Enable + speakup kernel modules to allow the speakup screen reader to function + (LP: #1967702) + - [Config] azure: Update configs after rebase + + * Azure: swiotlb patch needed for CVM (LP: #1971701) // [Azure][CVM] Fix + swiotlb_max_mapping_size() for potential bounce buffer allocation failure in + storvsc (LP: #1973169) + - SAUCE: swiotlb: Max mapping size takes min align mask into account + + * Azure: swiotlb patch needed for CVM (LP: #1971701) + - SAUCE: treewide: Replace the use of mem_encrypt_active() with + cc_platform_has() + - SAUCE: swiotlb: use bitmap to track free slots + - SAUCE: swiotlb: allocate memory in a cache-friendly way + - SAUCE: swiotlb: Split up single swiotlb lock + + * jammy/linux-azure: Update cifs to 5.15 backport (LP: #1970977) + - improve error message when mount options conflict with posix + - cifs: call cifs_reconnect when a connection is marked + - cifs: call helper functions for marking channels for reconnect + - cifs: mark sessions for reconnection in helper function + - treewide: Replace zero-length arrays with flexible-array members + - smb3: fix incorrect session setup check for multiuser mounts + - cifs: truncate the inode and mapping when we simulate fcollapse + - cifs: use a different reconnect helper for non-cifsd threads + - cifs: do not skip link targets when an I/O fails + - cifs: convert the path to utf16 in smb2_query_info_compound + - cifs: change smb2_query_info_compound to use a cached fid, if available + - cifs: fix bad fids sent over wire + - cifs: fix incorrect use of list iterator after the loop + - move more common protocol header definitions to smbfs_common + - smb3: move defines for ioctl protocol header and SMB2 sizes to smbfs_common + - smb3: move defines for query info and query fsinfo to smbfs_common + - smb3: cleanup and clarify status of tree connections + - smb3: fix ksmbd bigendian bug in oplock break, and move its struct to + smbfs_common + - fs: Remove ->readpages address space operation + - cifs: fix potential race with cifsd thread + - cifs: remove check of list iterator against head past the loop body + - cifs: force new session setup and tcon for dfs + - cifs: update internal module number + - cifs: Check the IOCB_DIRECT flag, not O_DIRECT + - cifs: Split the smb3_add_credits tracepoint + - cifs: Use kzalloc instead of kmalloc/memset + - cifs: fix NULL ptr dereference in refresh_mounts() + - cifs: use correct lock type in cifs_reconnect() + - cifs: destage any unwritten data to the server before calling + copychunk_write + + * [Azure] PCI: hv: Do not set PCI_COMMAND_MEMORY to reduce VM boot time + (LP: #1972662) + - PCI: hv: Do not set PCI_COMMAND_MEMORY to reduce VM boot time + + * Jammy/linux-azure: CONFIG_BLK_DEV_FD=n (LP: #1972017) + - [Config] azure: CONFIG_BLK_DEV_FD=n + + * [Azure] hv_netvsc: Add support for XDP_REDIRECT (LP: #1972832) + - hv_netvsc: Add comment of netvsc_xdp_xmit() + - hv_netvsc: Add support for XDP_REDIRECT + + * linux-azure: Patch Set for ARM64 Images 20.04 and 18.04 (LP: #1970468) + - Drivers: hv: balloon: Support status report for larger page sizes + + [ Ubuntu: 5.15.0-35.36 ] + + * CVE-2022-21499 + - SAUCE: debug: Lock down kgdb + + [ Ubuntu: 5.15.0-34.35 ] + + * jammy/linux: 5.15.0-34.35 -proposed tracker (LP: #1974322) + * AMD APU s2idle is broken after the ASIC reset fix (LP: #1972134) + - drm/amdgpu: unify BO evicting method in amdgpu_ttm + - drm/amdgpu: explicitly check for s0ix when evicting resources + * amd_gpio AMDI0030:00: Failed to translate GPIO pin 0x0000 to IRQ, err -517 + (LP: #1971597) + - gpio: Request interrupts after IRQ is initialized + * config CONFIG_HISI_PMU for kunpeng920 (LP: #1956086) + - [Config] CONFIG_HISI_PMU=m + * Mute/mic LEDs no function on EliteBook G9 platfroms (LP: #1970552) + - ALSA: hda/realtek: Enable mute/micmute LEDs support for HP Laptops + * network-manager/1.36.4-2ubuntu1 ADT test failure with linux/5.15.0-28.29 + (LP: #1971418) + - Revert "rfkill: make new event layout opt-in" + * PCIE LnkCtl ASPM not enabled under VMD mode for Alder Lake platforms + (LP: #1942160) + - SAUCE: vmd: fixup bridge ASPM by driver name instead + * Mute/mic LEDs no function on HP EliteBook 845/865 G9 (LP: #1970178) + - ALSA: hda/realtek: Enable mute/micmute LEDs and limit mic boost on EliteBook + 845/865 G9 + * Enable headset mic on Lenovo P360 (LP: #1967069) + - ALSA: hda/realtek: Enable headset mic on Lenovo P360 + * WCN6856 BT keep in OFF state after coldboot system (LP: #1967067) + - Bluetooth: btusb: Improve stability for QCA devices + * Screen sometimes can't update [Failed to post KMS update: CRTC property + (GAMMA_LUT) not found] (LP: #1967274) + - drm/i915/xelpd: Enable Pipe color support for D13 platform + - drm/i915: Use unlocked register accesses for LUT loads + - drm/i915/xelpd: Enable Pipe Degamma + - drm/i915/xelpd: Add Pipe Color Lut caps to platform config + * Jammy update: v5.15.35 upstream stable release (LP: #1969857) + - drm/amd/display: Add pstate verification and recovery for DCN31 + - drm/amd/display: Fix p-state allow debug index on dcn31 + - hamradio: defer 6pack kfree after unregister_netdev + - hamradio: remove needs_free_netdev to avoid UAF + - cpuidle: PSCI: Move the `has_lpi` check to the beginning of the function + - ACPI: processor idle: Check for architectural support for LPI + - ACPI: processor: idle: fix lockup regression on 32-bit ThinkPad T40 + - btrfs: remove unused parameter nr_pages in add_ra_bio_pages() + - btrfs: remove no longer used counter when reading data page + - btrfs: remove unused variable in btrfs_{start,write}_dirty_block_groups() + - soc: qcom: aoss: Expose send for generic usecase + - dt-bindings: net: qcom,ipa: add optional qcom,qmp property + - net: ipa: request IPA register values be retained + - btrfs: release correct delalloc amount in direct IO write path + - ALSA: core: Add snd_card_free_on_error() helper + - ALSA: sis7019: Fix the missing error handling + - ALSA: ali5451: Fix the missing snd_card_free() call at probe error + - ALSA: als300: Fix the missing snd_card_free() call at probe error + - ALSA: als4000: Fix the missing snd_card_free() call at probe error + - ALSA: atiixp: Fix the missing snd_card_free() call at probe error + - ALSA: au88x0: Fix the missing snd_card_free() call at probe error + - ALSA: aw2: Fix the missing snd_card_free() call at probe error + - ALSA: azt3328: Fix the missing snd_card_free() call at probe error + - ALSA: bt87x: Fix the missing snd_card_free() call at probe error + - ALSA: ca0106: Fix the missing snd_card_free() call at probe error + - ALSA: cmipci: Fix the missing snd_card_free() call at probe error + - ALSA: cs4281: Fix the missing snd_card_free() call at probe error + - ALSA: cs5535audio: Fix the missing snd_card_free() call at probe error + - ALSA: echoaudio: Fix the missing snd_card_free() call at probe error + - ALSA: emu10k1x: Fix the missing snd_card_free() call at probe error + - ALSA: ens137x: Fix the missing snd_card_free() call at probe error + - ALSA: es1938: Fix the missing snd_card_free() call at probe error + - ALSA: es1968: Fix the missing snd_card_free() call at probe error + - ALSA: fm801: Fix the missing snd_card_free() call at probe error + - ALSA: galaxy: Fix the missing snd_card_free() call at probe error + - ALSA: hdsp: Fix the missing snd_card_free() call at probe error + - ALSA: hdspm: Fix the missing snd_card_free() call at probe error + - ALSA: ice1724: Fix the missing snd_card_free() call at probe error + - ALSA: intel8x0: Fix the missing snd_card_free() call at probe error + - ALSA: intel_hdmi: Fix the missing snd_card_free() call at probe error + - ALSA: korg1212: Fix the missing snd_card_free() call at probe error + - ALSA: lola: Fix the missing snd_card_free() call at probe error + - ALSA: lx6464es: Fix the missing snd_card_free() call at probe error + - ALSA: maestro3: Fix the missing snd_card_free() call at probe error + - ALSA: oxygen: Fix the missing snd_card_free() call at probe error + - ALSA: riptide: Fix the missing snd_card_free() call at probe error + - ALSA: rme32: Fix the missing snd_card_free() call at probe error + - ALSA: rme9652: Fix the missing snd_card_free() call at probe error + - ALSA: rme96: Fix the missing snd_card_free() call at probe error + - ALSA: sc6000: Fix the missing snd_card_free() call at probe error + - ALSA: sonicvibes: Fix the missing snd_card_free() call at probe error + - ALSA: via82xx: Fix the missing snd_card_free() call at probe error + - ALSA: usb-audio: Cap upper limits of buffer/period bytes for implicit fb + - ALSA: nm256: Don't call card private_free at probe error path + - drm/msm: Add missing put_task_struct() in debugfs path + - firmware: arm_scmi: Remove clear channel call on the TX channel + - memory: atmel-ebi: Fix missing of_node_put in atmel_ebi_probe + - Revert "ath11k: mesh: add support for 256 bitmap in blockack frames in 11ax" + - firmware: arm_scmi: Fix sorting of retrieved clock rates + - media: rockchip/rga: do proper error checking in probe + - SUNRPC: Fix the svc_deferred_event trace class + - net/sched: flower: fix parsing of ethertype following VLAN header + - veth: Ensure eth header is in skb's linear part + - gpiolib: acpi: use correct format characters + - cifs: release cached dentries only if mount is complete + - net: mdio: don't defer probe forever if PHY IRQ provider is missing + - mlxsw: i2c: Fix initialization error flow + - net/sched: fix initialization order when updating chain 0 head + - net: dsa: felix: suppress -EPROBE_DEFER errors + - net: ethernet: stmmac: fix altr_tse_pcs function when using a fixed-link + - net/sched: taprio: Check if socket flags are valid + - cfg80211: hold bss_lock while updating nontrans_list + - netfilter: nft_socket: make cgroup match work in input too + - drm/msm: Fix range size vs end confusion + - drm/msm/dsi: Use connector directly in msm_dsi_manager_connector_init() + - drm/msm/dp: add fail safe mode outside of event_mutex context + - net/smc: Fix NULL pointer dereference in smc_pnet_find_ib() + - scsi: pm80xx: Mask and unmask upper interrupt vectors 32-63 + - scsi: pm80xx: Enable upper inbound, outbound queues + - scsi: iscsi: Move iscsi_ep_disconnect() + - scsi: iscsi: Fix offload conn cleanup when iscsid restarts + - scsi: iscsi: Fix endpoint reuse regression + - scsi: iscsi: Fix conn cleanup and stop race during iscsid restart + - scsi: iscsi: Fix unbound endpoint error handling + - sctp: Initialize daddr on peeled off socket + - netfilter: nf_tables: nft_parse_register can return a negative value + - ALSA: ad1889: Fix the missing snd_card_free() call at probe error + - ALSA: mtpav: Don't call card private_free at probe error path + - io_uring: move io_uring_rsrc_update2 validation + - io_uring: verify that resv2 is 0 in io_uring_rsrc_update2 + - io_uring: verify pad field is 0 in io_get_ext_arg + - testing/selftests/mqueue: Fix mq_perf_tests to free the allocated cpu set + - ALSA: usb-audio: Increase max buffer size + - ALSA: usb-audio: Limit max buffer and period sizes per time + - perf tools: Fix misleading add event PMU debug message + - macvlan: Fix leaking skb in source mode with nodst option + - net: ftgmac100: access hardware register after clock ready + - nfc: nci: add flush_workqueue to prevent uaf + - cifs: potential buffer overflow in handling symlinks + - dm mpath: only use ktime_get_ns() in historical selector + - vfio/pci: Fix vf_token mechanism when device-specific VF drivers are used + - net: bcmgenet: Revert "Use stronger register read/writes to assure ordering" + - block: fix offset/size check in bio_trim() + - drm/amd: Add USBC connector ID + - btrfs: fix fallocate to use file_modified to update permissions consistently + - btrfs: do not warn for free space inode in cow_file_range + - drm/amdgpu: conduct a proper cleanup of PDB bo + - drm/amdgpu/gmc: use PCI BARs for APUs in passthrough + - drm/amd/display: fix audio format not updated after edid updated + - drm/amd/display: FEC check in timing validation + - drm/amd/display: Update VTEM Infopacket definition + - drm/amdkfd: Fix Incorrect VMIDs passed to HWS + - drm/amdgpu/vcn: improve vcn dpg stop procedure + - drm/amdkfd: Check for potential null return of kmalloc_array() + - Drivers: hv: vmbus: Deactivate sysctl_record_panic_msg by default in + isolated guests + - PCI: hv: Propagate coherence from VMbus device to PCI device + - Drivers: hv: vmbus: Prevent load re-ordering when reading ring buffer + - scsi: target: tcmu: Fix possible page UAF + - scsi: lpfc: Fix queue failures when recovering from PCI parity error + - scsi: ibmvscsis: Increase INITIAL_SRP_LIMIT to 1024 + - net: micrel: fix KS8851_MLL Kconfig + - ata: libata-core: Disable READ LOG DMA EXT for Samsung 840 EVOs + - gpu: ipu-v3: Fix dev_dbg frequency output + - regulator: wm8994: Add an off-on delay for WM8994 variant + - arm64: alternatives: mark patch_alternative() as `noinstr` + - tlb: hugetlb: Add more sizes to tlb_remove_huge_tlb_entry + - net: axienet: setup mdio unconditionally + - Drivers: hv: balloon: Disable balloon and hot-add accordingly + - net: usb: aqc111: Fix out-of-bounds accesses in RX fixup + - myri10ge: fix an incorrect free for skb in myri10ge_sw_tso + - spi: cadence-quadspi: fix protocol setup for non-1-1-X operations + - drm/amd/display: Enable power gating before init_pipes + - drm/amd/display: Revert FEC check in validation + - drm/amd/display: Fix allocate_mst_payload assert on resume + - drbd: set QUEUE_FLAG_STABLE_WRITES + - scsi: mpt3sas: Fail reset operation if config request timed out + - scsi: mvsas: Add PCI ID of RocketRaid 2640 + - scsi: megaraid_sas: Target with invalid LUN ID is deleted during scan + - drivers: net: slip: fix NPD bug in sl_tx_timeout() + - io_uring: zero tag on rsrc removal + - io_uring: use nospec annotation for more indexes + - perf/imx_ddr: Fix undefined behavior due to shift overflowing the constant + - mm/secretmem: fix panic when growing a memfd_secret + - mm, page_alloc: fix build_zonerefs_node() + - mm: fix unexpected zeroed page mapping with zram swap + - mm: kmemleak: take a full lowmem check in kmemleak_*_phys() + - KVM: x86/mmu: Resolve nx_huge_pages when kvm.ko is loaded + - SUNRPC: Fix NFSD's request deferral on RDMA transports + - memory: renesas-rpc-if: fix platform-device leak in error path + - gcc-plugins: latent_entropy: use /dev/urandom + - cifs: verify that tcon is valid before dereference in cifs_kill_sb + - ath9k: Properly clear TX status area before reporting to mac80211 + - ath9k: Fix usage of driver-private space in tx_info + - btrfs: fix root ref counts in error handling in btrfs_get_root_ref + - btrfs: mark resumed async balance as writing + - ALSA: hda/realtek: Add quirk for Clevo PD50PNT + - ALSA: hda/realtek: add quirk for Lenovo Thinkpad X12 speakers + - ALSA: pcm: Test for "silence" field in struct "pcm_format_data" + - nl80211: correctly check NL80211_ATTR_REG_ALPHA2 size + - ipv6: fix panic when forwarding a pkt with no in6 dev + - drm/amd/display: don't ignore alpha property on pre-multiplied mode + - drm/amdgpu: Enable gfxoff quirk on MacBook Pro + - x86/tsx: Use MSR_TSX_CTRL to clear CPUID bits + - x86/tsx: Disable TSX development mode at boot + - genirq/affinity: Consider that CPUs on nodes can be unbalanced + - tick/nohz: Use WARN_ON_ONCE() to prevent console saturation + - ARM: davinci: da850-evm: Avoid NULL pointer dereference + - dm integrity: fix memory corruption when tag_size is less than digest size + - i2c: dev: check return value when calling dev_set_name() + - smp: Fix offline cpu check in flush_smp_call_function_queue() + - i2c: pasemi: Wait for write xfers to finish + - dt-bindings: net: snps: remove duplicate name + - timers: Fix warning condition in __run_timers() + - dma-direct: avoid redundant memory sync for swiotlb + - drm/i915: Sunset igpu legacy mmap support based on GRAPHICS_VER_FULL + - cpu/hotplug: Remove the 'cpu' member of cpuhp_cpu_state + - soc: qcom: aoss: Fix missing put_device call in qmp_get + - net: ipa: fix a build dependency + - cpufreq: intel_pstate: ITMT support for overclocked system + - ax25: add refcount in ax25_dev to avoid UAF bugs + - ax25: fix reference count leaks of ax25_dev + - ax25: fix UAF bugs of net_device caused by rebinding operation + - ax25: Fix refcount leaks caused by ax25_cb_del() + - ax25: fix UAF bug in ax25_send_control() + - ax25: fix NPD bug in ax25_disconnect + - ax25: Fix NULL pointer dereferences in ax25 timers + - ax25: Fix UAF bugs in ax25 timers + - Linux 5.15.35 + * CONFIG_SND_COMPRESS_OFFLOAD missing in jammy/ppc64el kernel config + (LP: #1969807) + - [Config] updateconfigs for SND_COMPRESS_OFFLOAD (ppc64el) + * Micmute LED support for Zbook Fury 16 G9 (LP: #1968892) + - ALSA: hda/realtek: Add mute and micmut LED support for Zbook Fury 17 G9 + * Fix broken HDMI audio on AMD PRO VII after S3 (LP: #1968475) + - drm/amdgpu: don't set s3 and s0ix at the same time + - drm/amdgpu: Ensure HDA function is suspended before ASIC reset + * [Ubuntu 22.04] mpi3mr: Request to include latest bug fixes (LP: #1967116) + - scsi: mpi3mr: Clean up mpi3mr_print_ioc_info() + - scsi: mpi3mr: Use scnprintf() instead of snprintf() + - scsi: mpi3mr: Add debug APIs based on logging_level bits + - scsi: mpi3mr: Replace spin_lock() with spin_lock_irqsave() + - scsi: mpi3mr: Don't reset IOC if cmnds flush with reset status + - scsi: mpi3mr: Update MPI3 headers - part1 + - scsi: mpi3mr: Update MPI3 headers - part2 + - scsi: mpi3mr: Add support for PCIe Managed Switch SES device + - scsi: mpi3mr: Do access status validation before adding devices + - scsi: mpi3mr: Increase internal cmnds timeout to 60s + - scsi: mpi3mr: Handle unaligned PLL in unmap cmnds + - scsi: mpi3mr: Display IOC firmware package version + - scsi: mpi3mr: Fault IOC when internal command gets timeout + - scsi: mpi3mr: Code refactor of IOC init - part1 + - scsi: mpi3mr: Code refactor of IOC init - part2 + - scsi: mpi3mr: Handle offline FW activation in graceful manner + - scsi: mpi3mr: Add IOC reinit function + - scsi: mpi3mr: Detect async reset that occurred in firmware + - scsi: mpi3mr: Gracefully handle online FW update operation + - scsi: mpi3mr: Add Event acknowledgment logic + - scsi: mpi3mr: Support Prepare for Reset event + - scsi: mpi3mr: Print cable mngnt and temp threshold events + - scsi: mpi3mr: Add io_uring interface support in I/O-polled mode + - scsi: mpi3mr: Use TM response codes from MPI3 headers + - scsi: mpi3mr: Enhanced Task Management Support Reply handling + - scsi: mpi3mr: Bump driver version to 8.0.0.61.0 + - scsi: mpi3mr: Fix some spelling mistakes + - scsi: mpi3mr: Fix formatting problems in some kernel-doc comments + - scsi: mpi3mr: Fix deadlock while canceling the fw event + - scsi: mpi3mr: Fix printing of pending I/O count + - scsi: mpi3mr: Update MPI3 headers + - scsi: mpi3mr: Fix hibernation issue + - scsi: mpi3mr: Fix cmnd getting marked as in use forever + - scsi: mpi3mr: Update the copyright year + - scsi: mpi3mr: Bump driver version to 8.0.0.68.0 + - scsi: mpi3mr: Fix flushing !WQ_MEM_RECLAIM events warning + * Support AMD P-State cpufreq control mechanism (LP: #1956509) + - x86/cpufeatures: Add AMD Collaborative Processor Performance Control feature + flag + - x86/msr: Add AMD CPPC MSR definitions + - ACPI: CPPC: Implement support for SystemIO registers + - ACPI: CPPC: Add CPPC enable register function + - cpufreq: amd-pstate: Introduce a new AMD P-State driver to support future + processors + - cpufreq: amd-pstate: Add fast switch function for AMD P-State + - cpufreq: amd-pstate: Introduce the support for the processors with shared + memory solution + - cpufreq: amd-pstate: Add trace for AMD P-State module + - cpufreq: amd-pstate: Add boost mode support for AMD P-State + - cpufreq: amd-pstate: Add AMD P-State frequencies attributes + - cpufreq: amd-pstate: Add AMD P-State performance attributes + - Documentation: amd-pstate: Add AMD P-State driver introduction + - MAINTAINERS: Add AMD P-State driver maintainer entry + - cpufreq: amd-pstate: Fix struct amd_cpudata kernel-doc comment + - cpufreq: amd-pstate: Fix Kconfig dependencies for AMD P-State + - [Config] enable X86_AMD_PSTATE as built-in on amd64 + * Bolt doesn't work with native USB4 hosts (LP: #1962349) + - thunderbolt: Retry DROM reads for more failure scenarios + - thunderbolt: Do not resume routers if UID is not set + - thunderbolt: Do not make DROM read success compulsory + - PCI/ACPI: Allow D3 only if Root Port can signal and wake from D3 + * linux-image-5.0.0-35-generic breaks checkpointing of container + (LP: #1857257) // re-apply missing overlayfs SAUCE patch (LP: #1967924) + - SAUCE: overlayfs: fix incorrect mnt_id of files opened from map_files + * [Jammy, mlx5, ConnectX-7] add CX7 support for software steering + (LP: #1966194) + - net/mlx5: DR, Fix vport number data type to u16 + - net/mlx5: DR, Replace local WIRE_PORT macro with the existing + MLX5_VPORT_UPLINK + - net/mlx5: DR, Add missing query for vport 0 + - net/mlx5: DR, Align error messages for failure to obtain vport caps + - net/mlx5: DR, Support csum recalculation flow table on SFs + - net/mlx5: DR, Add support for SF vports + - net/mlx5: DR, Increase supported num of actions to 32 + - net/mlx5: DR, Fix typo 'offeset' to 'offset' + - net/mlx5: DR, init_next_match only if needed + - net/mlx5: DR, Add missing string for action type SAMPLER + - net/mlx5: DR, Add check for unsupported fields in match param + - net/mlx5: Introduce new uplink destination type + - net/mlx5: DR, Handle eswitch manager and uplink vports separately + - net/mlx5: DR, Fix querying eswitch manager vport for ECPF + - net/mlx5: DR, Fix check for unsupported fields in match param + - net/mlx5: DR, Fix error flow in creating matcher + - net/mlx5: DR, Fix lower case macro prefix "mlx5_" to "MLX5_" + - net/mlx5: DR, Remove unused struct member in matcher + - net/mlx5: DR, Rename list field in matcher struct to list_node + - net/mlx5: DR, Add check for flex parser ID value + - net/mlx5: DR, Add missing reserved fields to dr_match_param + - net/mlx5: DR, Add support for dumping steering info + - net/mlx5: DR, Add support for UPLINK destination type + - net/mlx5: DR, Warn on failure to destroy objects due to refcount + - net/mlx5: Add misc5 flow table match parameters + - net/mlx5: DR, Add misc5 to match_param structs + - net/mlx5: DR, Support matching on tunnel headers 0 and 1 + - net/mlx5: DR, Add support for matching on geneve_tlv_option_0_exist field + - net/mlx5: DR, Improve steering for empty or RX/TX-only matchers + - net/mlx5: DR, Ignore modify TTL if device doesn't support it + - net/mlx5: Set SMFS as a default steering mode if device supports it + - net/mlx5: DR, Fix slab-out-of-bounds in mlx5_cmd_dr_create_fte + - net/mlx5: DR, Add support for matching on Internet Header Length (IHL) + - net/mlx5: DR, Remove unneeded comments + - net/mlx5: DR, Fix handling of different actions on the same STE in STEv1 + - net/mlx5: DR, Rename action modify fields to reflect naming in HW spec + - net/mlx5: DR, Refactor ste_ctx handling for STE v0/1 + - net/mlx5: Introduce software defined steering capabilities + - net/mlx5: DR, Add support for ConnectX-7 steering + * alsa: enable the cirrus-logic side-codec to make the speaker output sound + (LP: #1965496) + - ASoC: cs35l41: CS35L41 Boosted Smart Amplifier + - ASoC: cs35l41: Fix use of an uninitialised variable + - ASoC: cs35l41: Use regmap_read_poll_timeout to wait for OTP boot + - ASoC: cs35l41: Combine adjacent register writes + - ASoC: cs35l41: Don't overwrite returned error code + - ASoC: cs35l41: Fixup the error messages + - ASoC: cs35l41: Fix a bunch of trivial code formating/style issues + - misc: cs35l41: Remove unused pdn variable + - ASoC: cs35l41: Make cs35l41_remove() return void + - ASoC: cs35l41: Change monitor widgets to siggens + - ASoC: cs35l41: DSP Support + - ASoC: cs35l41: Set the max SPI speed for the whole device + - ASoC: cs35l41: Fix link problem + - ASoC: cs35l41: Fix undefined reference to core functions + - ASoC: cs35l41: Convert tables to shared source code + - ASoC: cs35l41: Move cs35l41_otp_unpack to shared code + - ASoC: cs35l41: Move power initializations to reg_sequence + - ASoC: cs35l41: Create shared function for errata patches + - ASoC: cs35l41: Create shared function for setting channels + - ASoC: cs35l41: Create shared function for boost configuration + - ASoC: cs35l41: Add cs35l51/53 IDs + - ASoC: cs35l41: Remove incorrect comment + - ASoC: cs35l41: Correct DSP power down + - ASoC: cs35l41: Correct handling of some registers in the cache + - ALSA: hda: cs35l41: Add support for CS35L41 in HDA systems + - ASoC: cs35l41: Update handling of test key registers + - ASoC: cs35l41: Add support for hibernate memory retention mode + - ALSA: hda: cs35l41: fix double free on error in probe() + - ALSA: hda: cs35l41: Avoid overwriting register patch + - ALSA: hda: cs35l41: Add calls to newly added test key function + - ALSA: hda: cs35l41: Move cs35l41* calls to its own symbol namespace + - ALSA: hda: cs35l41: Add missing default cases + - ALSA: hda: cs35l41: Make use of the helper function dev_err_probe() + - ALSA: hda: cs35l41: Tidyup code + - ALSA: hda: cs35l41: Make cs35l41_hda_remove() return void + - ALSA: hda/realtek: Add support for Legion 7 16ACHg6 laptop + - ALSA: hda/realtek: Add CS35L41 support for Thinkpad laptops + - ALSA: hda/realtek: fix speakers and micmute on HP 855 G8 + - Revert "platform/x86: i2c-multi-instantiate: Don't create platform device + for INT3515 ACPI nodes" + - spi: Create helper API to lookup ACPI info for spi device + - spi: Support selection of the index of the ACPI Spi Resource before alloc + - spi: Add API to count spi acpi resources + - platform/x86: i2c-multi-instantiate: Rename it for a generic serial driver + name + - platform/x86: serial-multi-instantiate: Reorganize I2C functions + - platform/x86: serial-multi-instantiate: Add SPI support + - ALSA: hda/realtek: Add support for HP Laptops + - ACPI / scan: Create platform device for CS35L41 + - [Config] Add cirruslogic side codec support + * Use kernel-testing repo from launchpad for ADT tests (LP: #1968016) + - [Debian] Use kernel-testing repo from launchpad + * Fix ADL, WD22TB4,Dual monitors display resolution can't reach 4K 60hz + (LP: #1967986) + - drm/i915/display: Remove check for low voltage sku for max dp source rate + - drm/i915/intel_combo_phy: Print I/O voltage info + * Support different Cirrus audio codec configurations on Dell laptops + (LP: #1967988) + - ALSA: hda/cs8409: Fix Warlock to use mono mic configuration + - ALSA: hda/cs8409: Re-order quirk table into ascending order + - ALSA: hda/cs8409: Fix Full Scale Volume setting for all variants + - ALSA: hda/cs8409: Support new Warlock MLK Variants + - ALSA: hda/cs8409: Disable HSBIAS_SENSE_EN for Cyborg + - ALSA: hda/cs8409: Add new Dolphin HW variants + * Enable speakup kernel modules to allow the speakup screen reader to function + (LP: #1967702) + - [Config] CONFIG_SPEAKUP=m + * linux: CONFIG_SERIAL_8250_MID=y (LP: #1967338) + - [Config] amd64 CONFIG_SERIAL_8250_MID=y + * alsa/sdw: Fix the audio issue on a Dell machine without internal mic + (LP: #1966841) + - ASoC: Intel: soc-acpi: add entries in ADL match table + * Jammy update: v5.15.34 upstream stable release (LP: #1969107) + - Revert "UBUNTU: SAUCE: Revert "scsi: core: Reallocate device's budget map on + queue depth change"" + - lib/logic_iomem: correct fallback config references + - um: fix and optimize xor select template for CONFIG64 and timetravel mode + - rtc: wm8350: Handle error for wm8350_register_irq + - nbd: add error handling support for add_disk() + - nbd: Fix incorrect error handle when first_minor is illegal in nbd_dev_add + - nbd: Fix hungtask when nbd_config_put + - nbd: fix possible overflow on 'first_minor' in nbd_dev_add() + - kfence: count unexpectedly skipped allocations + - kfence: move saving stack trace of allocations into __kfence_alloc() + - kfence: limit currently covered allocations when pool nearly full + - KVM: x86/pmu: Use different raw event masks for AMD and Intel + - KVM: SVM: Fix kvm_cache_regs.h inclusions for is_guest_mode() + - KVM: x86/svm: Clear reserved bits written to PerfEvtSeln MSRs + - KVM: x86/pmu: Fix and isolate TSX-specific performance event logic + - KVM: x86/emulator: Emulate RDPID only if it is enabled in guest + - drm: Add orientation quirk for GPD Win Max + - ath5k: fix OOB in ath5k_eeprom_read_pcal_info_5111 + - drm/amd/display: Add signal type check when verify stream backends same + - drm/amd/amdgpu/amdgpu_cs: fix refcount leak of a dma_fence obj + - drm/amd/display: Fix memory leak + - drm/amd/display: Use PSR version selected during set_psr_caps + - usb: gadget: tegra-xudc: Do not program SPARAM + - usb: gadget: tegra-xudc: Fix control endpoint's definitions + - usb: cdnsp: fix cdnsp_decode_trb function to properly handle ret value + - ptp: replace snprintf with sysfs_emit + - drm/amdkfd: Don't take process mutex for svm ioctls + - powerpc: dts: t104xrdb: fix phy type for FMAN 4/5 + - ath11k: fix kernel panic during unload/load ath11k modules + - ath11k: pci: fix crash on suspend if board file is not found + - ath11k: mhi: use mhi_sync_power_up() + - net/smc: Send directly when TCP_CORK is cleared + - drm/bridge: Add missing pm_runtime_put_sync + - bpf: Make dst_port field in struct bpf_sock 16-bit wide + - scsi: mvsas: Replace snprintf() with sysfs_emit() + - scsi: bfa: Replace snprintf() with sysfs_emit() + - drm/v3d: fix missing unlock + - power: supply: axp20x_battery: properly report current when discharging + - mt76: mt7921: fix crash when startup fails. + - mt76: dma: initialize skip_unmap in mt76_dma_rx_fill + - cfg80211: don't add non transmitted BSS to 6GHz scanned channels + - libbpf: Fix build issue with llvm-readelf + - ipv6: make mc_forwarding atomic + - net: initialize init_net earlier + - powerpc: Set crashkernel offset to mid of RMA region + - drm/amdgpu: Fix recursive locking warning + - scsi: smartpqi: Fix kdump issue when controller is locked up + - PCI: aardvark: Fix support for MSI interrupts + - iommu/arm-smmu-v3: fix event handling soft lockup + - usb: ehci: add pci device support for Aspeed platforms + - PCI: endpoint: Fix alignment fault error in copy tests + - tcp: Don't acquire inet_listen_hashbucket::lock with disabled BH. + - PCI: pciehp: Add Qualcomm quirk for Command Completed erratum + - scsi: mpi3mr: Fix reporting of actual data transfer size + - scsi: mpi3mr: Fix memory leaks + - powerpc/set_memory: Avoid spinlock recursion in change_page_attr() + - power: supply: axp288-charger: Set Vhold to 4.4V + - net/mlx5e: Disable TX queues before registering the netdev + - usb: dwc3: pci: Set the swnode from inside dwc3_pci_quirks() + - iwlwifi: mvm: Correctly set fragmented EBS + - iwlwifi: mvm: move only to an enabled channel + - drm/msm/dsi: Remove spurious IRQF_ONESHOT flag + - ipv4: Invalidate neighbour for broadcast address upon address addition + - dm ioctl: prevent potential spectre v1 gadget + - dm: requeue IO if mapping table not yet available + - drm/amdkfd: make CRAT table missing message informational only + - vfio/pci: Stub vfio_pci_vga_rw when !CONFIG_VFIO_PCI_VGA + - scsi: pm8001: Fix pm80xx_pci_mem_copy() interface + - scsi: pm8001: Fix pm8001_mpi_task_abort_resp() + - scsi: pm8001: Fix task leak in pm8001_send_abort_all() + - scsi: pm8001: Fix tag leaks on error + - scsi: pm8001: Fix memory leak in pm8001_chip_fw_flash_update_req() + - mt76: mt7915: fix injected MPDU transmission to not use HW A-MSDU + - powerpc/64s/hash: Make hash faults work in NMI context + - mt76: mt7615: Fix assigning negative values to unsigned variable + - scsi: aha152x: Fix aha152x_setup() __setup handler return value + - scsi: hisi_sas: Free irq vectors in order for v3 HW + - scsi: hisi_sas: Limit users changing debugfs BIST count value + - net/smc: correct settings of RMB window update limit + - mips: ralink: fix a refcount leak in ill_acc_of_setup() + - macvtap: advertise link netns via netlink + - tuntap: add sanity checks about msg_controllen in sendmsg + - Bluetooth: Fix not checking for valid hdev on bt_dev_{info,warn,err,dbg} + - Bluetooth: use memset avoid memory leaks + - bnxt_en: Eliminate unintended link toggle during FW reset + - PCI: endpoint: Fix misused goto label + - MIPS: fix fortify panic when copying asm exception handlers + - powerpc/64e: Tie PPC_BOOK3E_64 to PPC_FSL_BOOK3E + - powerpc/secvar: fix refcount leak in format_show() + - scsi: libfc: Fix use after free in fc_exch_abts_resp() + - can: isotp: set default value for N_As to 50 micro seconds + - can: etas_es58x: es58x_fd_rx_event_msg(): initialize rx_event_msg before + calling es58x_check_msg_len() + - riscv: Fixed misaligned memory access. Fixed pointer comparison. + - net: account alternate interface name memory + - net: limit altnames to 64k total + - net/mlx5e: Remove overzealous validations in netlink EEPROM query + - net: sfp: add 2500base-X quirk for Lantech SFP module + - usb: dwc3: omap: fix "unbalanced disables for smps10_out1" on omap5evm + - mt76: fix monitor mode crash with sdio driver + - xtensa: fix DTC warning unit_address_format + - MIPS: ingenic: correct unit node address + - Bluetooth: Fix use after free in hci_send_acl + - netfilter: conntrack: revisit gc autotuning + - netlabel: fix out-of-bounds memory accesses + - ceph: fix inode reference leakage in ceph_get_snapdir() + - ceph: fix memory leak in ceph_readdir when note_last_dentry returns error + - lib/Kconfig.debug: add ARCH dependency for FUNCTION_ALIGN option + - init/main.c: return 1 from handled __setup() functions + - minix: fix bug when opening a file with O_DIRECT + - clk: si5341: fix reported clk_rate when output divider is 2 + - staging: vchiq_arm: Avoid NULL ptr deref in vchiq_dump_platform_instances + - staging: vchiq_core: handle NULL result of find_service_by_handle + - phy: amlogic: phy-meson-gxl-usb2: fix shared reset controller use + - phy: amlogic: meson8b-usb2: Use dev_err_probe() + - phy: amlogic: meson8b-usb2: fix shared reset control use + - clk: rockchip: drop CLK_SET_RATE_PARENT from dclk_vop* on rk3568 + - cpufreq: CPPC: Fix performance/frequency conversion + - opp: Expose of-node's name in debugfs + - staging: wfx: fix an error handling in wfx_init_common() + - w1: w1_therm: fixes w1_seq for ds28ea00 sensors + - NFSv4.2: fix reference count leaks in _nfs42_proc_copy_notify() + - NFSv4: Protect the state recovery thread against direct reclaim + - habanalabs: fix possible memory leak in MMU DR fini + - xen: delay xen_hvm_init_time_ops() if kdump is boot on vcpu>=32 + - clk: ti: Preserve node in ti_dt_clocks_register() + - clk: Enforce that disjoints limits are invalid + - SUNRPC/call_alloc: async tasks mustn't block waiting for memory + - SUNRPC/xprt: async tasks mustn't block waiting for memory + - SUNRPC: remove scheduling boost for "SWAPPER" tasks. + - NFS: swap IO handling is slightly different for O_DIRECT IO + - NFS: swap-out must always use STABLE writes. + - x86: Annotate call_on_stack() + - x86/Kconfig: Do not allow CONFIG_X86_X32_ABI=y with llvm-objcopy + - serial: samsung_tty: do not unlock port->lock for uart_write_wakeup() + - virtio_console: eliminate anonymous module_init & module_exit + - jfs: prevent NULL deref in diFree + - SUNRPC: Fix socket waits for write buffer space + - NFS: nfsiod should not block forever in mempool_alloc() + - NFS: Avoid writeback threads getting stuck in mempool_alloc() + - selftests: net: Add tls config dependency for tls selftests + - parisc: Fix CPU affinity for Lasi, WAX and Dino chips + - parisc: Fix patch code locking and flushing + - mm: fix race between MADV_FREE reclaim and blkdev direct IO read + - rtc: mc146818-lib: change return values of mc146818_get_time() + - rtc: Check return value from mc146818_get_time() + - rtc: mc146818-lib: fix RTC presence check + - drm/amdgpu: fix off by one in amdgpu_gfx_kiq_acquire() + - Drivers: hv: vmbus: Fix potential crash on module unload + - Revert "NFSv4: Handle the special Linux file open access mode" + - NFSv4: fix open failure with O_ACCMODE flag + - scsi: sr: Fix typo in CDROM(CLOSETRAY|EJECT) handling + - scsi: core: Fix sbitmap depth in scsi_realloc_sdev_budget_map() + - scsi: zorro7xx: Fix a resource leak in zorro7xx_remove_one() + - vdpa/mlx5: Rename control VQ workqueue to vdpa wq + - vdpa/mlx5: Propagate link status from device to vdpa driver + - vdpa: mlx5: prevent cvq work from hogging CPU + - net: sfc: add missing xdp queue reinitialization + - net/tls: fix slab-out-of-bounds bug in decrypt_internal + - vrf: fix packet sniffing for traffic originating from ip tunnels + - skbuff: fix coalescing for page_pool fragment recycling + - ice: Clear default forwarding VSI during VSI release + - mctp: Fix check for dev_hard_header() result + - net: ipv4: fix route with nexthop object delete warning + - net: stmmac: Fix unset max_speed difference between DT and non-DT platforms + - drm/imx: imx-ldb: Check for null pointer after calling kmemdup + - drm/imx: Fix memory leak in imx_pd_connector_get_modes + - drm/imx: dw_hdmi-imx: Fix bailout in error cases of probe + - regulator: rtq2134: Fix missing active_discharge_on setting + - regulator: atc260x: Fix missing active_discharge_on setting + - arch/arm64: Fix topology initialization for core scheduling + - bnxt_en: Synchronize tx when xdp redirects happen on same ring + - bnxt_en: reserve space inside receive page for skb_shared_info + - bnxt_en: Prevent XDP redirect from running when stopping TX queue + - sfc: Do not free an empty page_ring + - RDMA/mlx5: Don't remove cache MRs when a delay is needed + - RDMA/mlx5: Add a missing update of cache->last_add + - IB/cm: Cancel mad on the DREQ event when the state is MRA_REP_RCVD + - IB/rdmavt: add lock to call to rvt_error_qp to prevent a race condition + - sctp: count singleton chunks in assoc user stats + - dpaa2-ptp: Fix refcount leak in dpaa2_ptp_probe + - ice: Set txq_teid to ICE_INVAL_TEID on ring creation + - ice: Do not skip not enabled queues in ice_vc_dis_qs_msg + - ipv6: Fix stats accounting in ip6_pkt_drop + - ice: synchronize_rcu() when terminating rings + - ice: xsk: fix VSI state check in ice_xsk_wakeup() + - net: openvswitch: don't send internal clone attribute to the userspace. + - net: ethernet: mv643xx: Fix over zealous checking of_get_mac_address() + - net: openvswitch: fix leak of nested actions + - rxrpc: fix a race in rxrpc_exit_net() + - net: sfc: fix using uninitialized xdp tx_queue + - net: phy: mscc-miim: reject clause 45 register accesses + - qede: confirm skb is allocated before using + - spi: bcm-qspi: fix MSPI only access with bcm_qspi_exec_mem_op() + - bpf: Support dual-stack sockets in bpf_tcp_check_syncookie + - drbd: Fix five use after free bugs in get_initial_state + - scsi: ufs: ufshpb: Fix a NULL check on list iterator + - io_uring: nospec index for tags on files update + - io_uring: don't touch scm_fp_list after queueing skb + - SUNRPC: Handle ENOMEM in call_transmit_status() + - SUNRPC: Handle low memory situations in call_status() + - SUNRPC: svc_tcp_sendmsg() should handle errors from xdr_alloc_bvec() + - iommu/omap: Fix regression in probe for NULL pointer dereference + - perf: arm-spe: Fix perf report --mem-mode + - perf tools: Fix perf's libperf_print callback + - perf session: Remap buf if there is no space for event + - arm64: Add part number for Arm Cortex-A78AE + - scsi: mpt3sas: Fix use after free in _scsih_expander_node_remove() + - scsi: ufs: ufs-pci: Add support for Intel MTL + - Revert "mmc: sdhci-xenon: fix annoying 1.8V regulator warning" + - mmc: block: Check for errors after write on SPI + - mmc: mmci: stm32: correctly check all elements of sg list + - mmc: renesas_sdhi: don't overwrite TAP settings when HS400 tuning is + complete + - mmc: core: Fixup support for writeback-cache for eMMC and SD + - lz4: fix LZ4_decompress_safe_partial read out of bound + - highmem: fix checks in __kmap_local_sched_{in,out} + - mmmremap.c: avoid pointless invalidate_range_start/end on mremap(old_size=0) + - mm/mempolicy: fix mpol_new leak in shared_policy_replace + - io_uring: don't check req->file in io_fsync_prep() + - io_uring: defer splice/tee file validity check until command issue + - io_uring: implement compat handling for IORING_REGISTER_IOWQ_AFF + - io_uring: fix race between timeout flush and removal + - x86/pm: Save the MSR validity status at context setup + - x86/speculation: Restore speculation related MSRs during S3 resume + - perf/x86/intel: Update the FRONTEND MSR mask on Sapphire Rapids + - btrfs: fix qgroup reserve overflow the qgroup limit + - btrfs: prevent subvol with swapfile from being deleted + - spi: core: add dma_map_dev for __spi_unmap_msg() + - arm64: patch_text: Fixup last cpu should be master + - RDMA/hfi1: Fix use-after-free bug for mm struct + - gpio: Restrict usage of GPIO chip irq members before initialization + - x86/msi: Fix msi message data shadow struct + - x86/mm/tlb: Revert retpoline avoidance approach + - perf/x86/intel: Don't extend the pseudo-encoding to GP counters + - ata: sata_dwc_460ex: Fix crash due to OOB write + - perf: qcom_l2_pmu: fix an incorrect NULL check on list iterator + - perf/core: Inherit event_caps + - irqchip/gic-v3: Fix GICR_CTLR.RWP polling + - fbdev: Fix unregistering of framebuffers without device + - amd/display: set backlight only if required + - SUNRPC: Prevent immediate close+reconnect + - drm/panel: ili9341: fix optional regulator handling + - drm/amdgpu/display: change pipe policy for DCN 2.1 + - drm/amdgpu/smu10: fix SoC/fclk units in auto mode + - drm/amdgpu/vcn: Fix the register setting for vcn1 + - drm/nouveau/pmu: Add missing callbacks for Tegra devices + - drm/amdkfd: Create file descriptor after client is added to smi_clients list + - drm/amdgpu: don't use BACO for reset in S3 + - KVM: SVM: Allow AVIC support on system w/ physical APIC ID > 255 + - net/smc: send directly on setting TCP_NODELAY + - Revert "selftests: net: Add tls config dependency for tls selftests" + - bpf: Make remote_port field in struct bpf_sk_lookup 16-bit wide + - selftests/bpf: Fix u8 narrow load checks for bpf_sk_lookup remote_port + - rtc: mc146818-lib: fix signedness bug in mc146818_get_time() + - SUNRPC: Don't call connect() more than once on a TCP socket + - Revert "nbd: fix possible overflow on 'first_minor' in nbd_dev_add()" + - perf build: Don't use -ffat-lto-objects in the python feature test when + building with clang-13 + - perf python: Fix probing for some clang command line options + - tools build: Filter out options and warnings not supported by clang + - tools build: Use $(shell ) instead of `` to get embedded libperl's ccopts + - dmaengine: Revert "dmaengine: shdma: Fix runtime PM imbalance on error" + - KVM: avoid NULL pointer dereference in kvm_dirty_ring_push + - Revert "net/mlx5: Accept devlink user input after driver initialization + complete" + - ubsan: remove CONFIG_UBSAN_OBJECT_SIZE + - selftests: cgroup: Make cg_create() use 0755 for permission instead of 0644 + - selftests: cgroup: Test open-time credential usage for migration checks + - selftests: cgroup: Test open-time cgroup namespace usage for migration + checks + - mm: don't skip swap entry even if zap_details specified + - Drivers: hv: vmbus: Replace smp_store_mb() with virt_store_mb() + - x86/bug: Prevent shadowing in __WARN_FLAGS + - sched: Teach the forced-newidle balancer about CPU affinity limitation. + - x86,static_call: Fix __static_call_return0 for i386 + - irqchip/gic-v4: Wait for GICR_VPENDBASER.Dirty to clear before descheduling + - powerpc/64: Fix build failure with allyesconfig in book3s_64_entry.S + - irqchip/gic, gic-v3: Prevent GSI to SGI translations + - mm/sparsemem: fix 'mem_section' will never be NULL gcc 12 warning + - static_call: Don't make __static_call_return0 static + - powerpc: Fix virt_addr_valid() for 64-bit Book3E & 32-bit + - stacktrace: move filter_irq_stacks() to kernel/stacktrace.c + - Linux 5.15.34 + - [Config] armhf, s390x: update annotations following + DEBUG_FORCE_FUNCTION_ALIGN_64B support removal in v5.15.34 + * Jammy update: v5.15.33 upstream stable release (LP: #1969110) + - Revert "swiotlb: rework "fix info leak with DMA_FROM_DEVICE"" + - USB: serial: pl2303: add IBM device IDs + - dt-bindings: usb: hcd: correct usb-device path + - USB: serial: pl2303: fix GS type detection + - USB: serial: simple: add Nokia phone driver + - mm: kfence: fix missing objcg housekeeping for SLAB + - hv: utils: add PTP_1588_CLOCK to Kconfig to fix build + - HID: logitech-dj: add new lightspeed receiver id + - HID: Add support for open wheel and no attachment to T300 + - xfrm: fix tunnel model fragmentation behavior + - ARM: mstar: Select HAVE_ARM_ARCH_TIMER + - virtio_console: break out of buf poll on remove + - vdpa/mlx5: should verify CTRL_VQ feature exists for MQ + - tools/virtio: fix virtio_test execution + - ethernet: sun: Free the coherent when failing in probing + - gpio: Revert regression in sysfs-gpio (gpiolib.c) + - spi: Fix invalid sgs value + - net:mcf8390: Use platform_get_irq() to get the interrupt + - Revert "gpio: Revert regression in sysfs-gpio (gpiolib.c)" + - spi: Fix erroneous sgs value with min_t() + - Input: zinitix - do not report shadow fingers + - af_key: add __GFP_ZERO flag for compose_sadb_supported in function + pfkey_register + - net: dsa: microchip: add spi_device_id tables + - selftests: vm: fix clang build error multiple output files + - locking/lockdep: Avoid potential access of invalid memory in lock_class + - drm/amdgpu: move PX checking into amdgpu_device_ip_early_init + - drm/amdgpu: only check for _PR3 on dGPUs + - iommu/iova: Improve 32-bit free space estimate + - virtio-blk: Use blk_validate_block_size() to validate block size + - tpm: fix reference counting for struct tpm_chip + - usb: typec: tipd: Forward plug orientation to typec subsystem + - USB: usb-storage: Fix use of bitfields for hardware data in ene_ub6250.c + - xhci: fix garbage USBSTS being logged in some cases + - xhci: fix runtime PM imbalance in USB2 resume + - xhci: make xhci_handshake timeout for xhci_reset() adjustable + - xhci: fix uninitialized string returned by xhci_decode_ctrl_ctx() + - mei: me: disable driver on the ign firmware + - mei: me: add Alder Lake N device id. + - mei: avoid iterator usage outside of list_for_each_entry + - bus: mhi: pci_generic: Add mru_default for Quectel EM1xx series + - bus: mhi: Fix MHI DMA structure endianness + - docs: sphinx/requirements: Limit jinja2<3.1 + - coresight: Fix TRCCONFIGR.QE sysfs interface + - coresight: syscfg: Fix memleak on registration failure in + cscfg_create_device + - iio: afe: rescale: use s64 for temporary scale calculations + - iio: inkern: apply consumer scale on IIO_VAL_INT cases + - iio: inkern: apply consumer scale when no channel scale is available + - iio: inkern: make a best effort on offset calculation + - greybus: svc: fix an error handling bug in gb_svc_hello() + - clk: rockchip: re-add rational best approximation algorithm to the + fractional divider + - clk: uniphier: Fix fixed-rate initialization + - cifs: fix handlecache and multiuser + - cifs: we do not need a spinlock around the tree access during umount + - KEYS: fix length validation in keyctl_pkey_params_get_2() + - KEYS: asymmetric: enforce that sig algo matches key algo + - KEYS: asymmetric: properly validate hash_algo and encoding + - Documentation: add link to stable release candidate tree + - Documentation: update stable tree link + - firmware: stratix10-svc: add missing callback parameter on RSU + - firmware: sysfb: fix platform-device leak in error path + - HID: intel-ish-hid: Use dma_alloc_coherent for firmware update + - SUNRPC: avoid race between mod_timer() and del_timer_sync() + - NFS: NFSv2/v3 clients should never be setting NFS_CAP_XATTR + - NFSD: prevent underflow in nfssvc_decode_writeargs() + - NFSD: prevent integer overflow on 32 bit systems + - f2fs: fix to unlock page correctly in error path of is_alive() + - f2fs: quota: fix loop condition at f2fs_quota_sync() + - f2fs: fix to do sanity check on .cp_pack_total_block_count + - remoteproc: Fix count check in rproc_coredump_write() + - mm/mlock: fix two bugs in user_shm_lock() + - pinctrl: ingenic: Fix regmap on X series SoCs + - pinctrl: samsung: drop pin banks references on error paths + - net: bnxt_ptp: fix compilation error + - spi: mxic: Fix the transmit path + - mtd: rawnand: protect access to rawnand devices while in suspend + - can: ems_usb: ems_usb_start_xmit(): fix double dev_kfree_skb() in error path + - can: m_can: m_can_tx_handler(): fix use after free of skb + - can: usb_8dev: usb_8dev_start_xmit(): fix double dev_kfree_skb() in error + path + - jffs2: fix use-after-free in jffs2_clear_xattr_subsystem + - jffs2: fix memory leak in jffs2_do_mount_fs + - jffs2: fix memory leak in jffs2_scan_medium + - mm: fs: fix lru_cache_disabled race in bh_lru + - mm/pages_alloc.c: don't create ZONE_MOVABLE beyond the end of a node + - mm: invalidate hwpoison page cache page in fault path + - mempolicy: mbind_range() set_policy() after vma_merge() + - scsi: core: sd: Add silence_suspend flag to suppress some PM messages + - scsi: ufs: Fix runtime PM messages never-ending cycle + - scsi: scsi_transport_fc: Fix FPIN Link Integrity statistics counters + - scsi: libsas: Fix sas_ata_qc_issue() handling of NCQ NON DATA commands + - qed: display VF trust config + - qed: validate and restrict untrusted VFs vlan promisc mode + - riscv: dts: canaan: Fix SPI3 bus width + - riscv: Fix fill_callchain return value + - riscv: Increase stack size under KASAN + - Revert "Input: clear BTN_RIGHT/MIDDLE on buttonpads" + - cifs: prevent bad output lengths in smb2_ioctl_query_info() + - cifs: fix NULL ptr dereference in smb2_ioctl_query_info() + - ALSA: cs4236: fix an incorrect NULL check on list iterator + - ALSA: hda: Avoid unsol event during RPM suspending + - ALSA: pcm: Fix potential AB/BA lock with buffer_mutex and mmap_lock + - ALSA: hda/realtek: Fix audio regression on Mi Notebook Pro 2020 + - rtc: mc146818-lib: fix locking in mc146818_set_time + - rtc: pl031: fix rtc features null pointer dereference + - ocfs2: fix crash when mount with quota enabled + - drm/simpledrm: Add "panel orientation" property on non-upright mounted LCD + panels + - mm: madvise: skip unmapped vma holes passed to process_madvise + - mm: madvise: return correct bytes advised with process_madvise + - Revert "mm: madvise: skip unmapped vma holes passed to process_madvise" + - mm,hwpoison: unmap poisoned page before invalidation + - mm/kmemleak: reset tag when compare object pointer + - dm stats: fix too short end duration_ns when using precise_timestamps + - dm: fix use-after-free in dm_cleanup_zoned_dev() + - dm: interlock pending dm_io and dm_wait_for_bios_completion + - dm: fix double accounting of flush with data + - dm integrity: set journal entry unused when shrinking device + - tracing: Have trace event string test handle zero length strings + - drbd: fix potential silent data corruption + - powerpc/kvm: Fix kvm_use_magic_page + - PCI: fu740: Force 2.5GT/s for initial device probe + - arm64: signal: nofpsimd: Do not allocate fp/simd context when not available + - arm64: Do not defer reserve_crashkernel() for platforms with no DMA memory + zones + - arm64: dts: qcom: sm8250: Fix MSI IRQ for PCIe1 and PCIe2 + - arm64: dts: ti: k3-am65: Fix gic-v3 compatible regs + - arm64: dts: ti: k3-j721e: Fix gic-v3 compatible regs + - arm64: dts: ti: k3-j7200: Fix gic-v3 compatible regs + - arm64: dts: ti: k3-am64: Fix gic-v3 compatible regs + - ASoC: SOF: Intel: Fix NULL ptr dereference when ENOMEM + - Revert "ACPI: Pass the same capabilities to the _OSC regardless of the query + flag" + - ACPI: properties: Consistently return -ENOENT if there are no more + references + - coredump: Also dump first pages of non-executable ELF libraries + - ext4: fix ext4_fc_stats trace point + - ext4: fix fs corruption when tring to remove a non-empty directory with IO + error + - ext4: make mb_optimize_scan performance mount option work with extents + - drivers: hamradio: 6pack: fix UAF bug caused by mod_timer() + - samples/landlock: Fix path_list memory leak + - landlock: Use square brackets around "landlock-ruleset" + - mailbox: tegra-hsp: Flush whole channel + - block: limit request dispatch loop duration + - block: don't merge across cgroup boundaries if blkcg is enabled + - drm/edid: check basic audio support on CEA extension block + - fbdev: Hot-unplug firmware fb devices on forced removal + - video: fbdev: sm712fb: Fix crash in smtcfb_read() + - video: fbdev: atari: Atari 2 bpp (STe) palette bugfix + - rfkill: make new event layout opt-in + - ARM: dts: at91: sama7g5: Remove unused properties in i2c nodes + - ARM: dts: at91: sama5d2: Fix PMERRLOC resource size + - ARM: dts: exynos: fix UART3 pins configuration in Exynos5250 + - ARM: dts: exynos: add missing HDMI supplies on SMDK5250 + - ARM: dts: exynos: add missing HDMI supplies on SMDK5420 + - mgag200 fix memmapsl configuration in GCTL6 register + - carl9170: fix missing bit-wise or operator for tx_params + - pstore: Don't use semaphores in always-atomic-context code + - thermal: int340x: Increase bitmap size + - lib/raid6/test: fix multiple definition linking error + - exec: Force single empty string when argv is empty + - crypto: rsa-pkcs1pad - only allow with rsa + - crypto: rsa-pkcs1pad - correctly get hash from source scatterlist + - crypto: rsa-pkcs1pad - restore signature length check + - crypto: rsa-pkcs1pad - fix buffer overread in pkcs1pad_verify_complete() + - bcache: fixup multiple threads crash + - PM: domains: Fix sleep-in-atomic bug caused by genpd_debug_remove() + - DEC: Limit PMAX memory probing to R3k systems + - media: gpio-ir-tx: fix transmit with long spaces on Orange Pi PC + - media: venus: hfi_cmds: List HDR10 property as unsupported for v1 and v3 + - media: venus: venc: Fix h264 8x8 transform control + - media: davinci: vpif: fix unbalanced runtime PM get + - media: davinci: vpif: fix unbalanced runtime PM enable + - btrfs: zoned: mark relocation as writing + - btrfs: extend locking to all space_info members accesses + - btrfs: verify the tranisd of the to-be-written dirty extent buffer + - xtensa: define update_mmu_tlb function + - xtensa: fix stop_machine_cpuslocked call in patch_text + - xtensa: fix xtensa_wsr always writing 0 + - drm/syncobj: flatten dma_fence_chains on transfer + - drm/nouveau/backlight: Fix LVDS backlight detection on some laptops + - drm/nouveau/backlight: Just set all backlight types as RAW + - drm/fb-helper: Mark screen buffers in system memory with FBINFO_VIRTFB + - brcmfmac: firmware: Allocate space for default boardrev in nvram + - brcmfmac: pcie: Release firmwares in the brcmf_pcie_setup error path + - brcmfmac: pcie: Declare missing firmware files in pcie.c + - brcmfmac: pcie: Replace brcmf_pcie_copy_mem_todev with memcpy_toio + - brcmfmac: pcie: Fix crashes due to early IRQs + - drm/i915/opregion: check port number bounds for SWSCI display power state + - drm/i915/gem: add missing boundary check in vm_access + - PCI: imx6: Allow to probe when dw_pcie_wait_for_link() fails + - PCI: pciehp: Clear cmd_busy bit in polling mode + - PCI: xgene: Revert "PCI: xgene: Fix IB window setup" + - regulator: qcom_smd: fix for_each_child.cocci warnings + - selinux: access superblock_security_struct in LSM blob way + - selinux: check return value of sel_make_avc_files + - crypto: ccp - Ensure psp_ret is always init'd in + __sev_platform_init_locked() + - hwrng: cavium - Check health status while reading random data + - hwrng: cavium - HW_RANDOM_CAVIUM should depend on ARCH_THUNDER + - crypto: sun8i-ss - really disable hash on A80 + - crypto: authenc - Fix sleep in atomic context in decrypt_tail + - crypto: mxs-dcp - Fix scatterlist processing + - selinux: Fix selinux_sb_mnt_opts_compat() + - thermal: int340x: Check for NULL after calling kmemdup() + - crypto: octeontx2 - remove CONFIG_DM_CRYPT check + - spi: tegra114: Add missing IRQ check in tegra_spi_probe + - spi: tegra210-quad: Fix missin IRQ check in tegra_qspi_probe + - stack: Constrain and fix stack offset randomization with Clang builds + - arm64/mm: avoid fixmap race condition when create pud mapping + - blk-cgroup: set blkg iostat after percpu stat aggregation + - selftests/x86: Add validity check and allow field splitting + - selftests/sgx: Treat CC as one argument + - crypto: rockchip - ECB does not need IV + - audit: log AUDIT_TIME_* records only from rules + - EVM: fix the evm= __setup handler return value + - crypto: ccree - don't attempt 0 len DMA mappings + - crypto: hisilicon/sec - fix the aead software fallback for engine + - spi: pxa2xx-pci: Balance reference count for PCI DMA device + - hwmon: (pmbus) Add mutex to regulator ops + - hwmon: (sch56xx-common) Replace WDOG_ACTIVE with WDOG_HW_RUNNING + - nvme: cleanup __nvme_check_ids + - nvme: fix the check for duplicate unique identifiers + - block: don't delete queue kobject before its children + - PM: hibernate: fix __setup handler error handling + - PM: suspend: fix return value of __setup handler + - spi: spi-zynqmp-gqspi: Handle error for dma_set_mask + - hwrng: atmel - disable trng on failure path + - crypto: sun8i-ss - call finalize with bh disabled + - crypto: sun8i-ce - call finalize with bh disabled + - crypto: amlogic - call finalize with bh disabled + - crypto: gemini - call finalize with bh disabled + - crypto: vmx - add missing dependencies + - clocksource/drivers/timer-ti-dm: Fix regression from errata i940 fix + - clocksource/drivers/exynos_mct: Refactor resources allocation + - clocksource/drivers/exynos_mct: Handle DTS with higher number of interrupts + - clocksource/drivers/timer-microchip-pit64b: Use notrace + - clocksource/drivers/timer-of: Check return value of of_iomap in + timer_of_base_init() + - arm64: prevent instrumentation of bp hardening callbacks + - KEYS: trusted: Fix trusted key backends when building as module + - KEYS: trusted: Avoid calling null function trusted_key_exit + - ACPI: APEI: fix return value of __setup handlers + - crypto: ccp - ccp_dmaengine_unregister release dma channels + - crypto: ccree - Fix use after free in cc_cipher_exit() + - hwrng: nomadik - Change clk_disable to clk_disable_unprepare + - hwmon: (pmbus) Add Vin unit off handling + - clocksource: acpi_pm: fix return value of __setup handler + - io_uring: don't check unrelated req->open.how in accept request + - io_uring: terminate manual loop iterator loop correctly for non-vecs + - watch_queue: Fix NULL dereference in error cleanup + - watch_queue: Actually free the watch + - f2fs: fix to enable ATGC correctly via gc_idle sysfs interface + - sched/debug: Remove mpol_get/put and task_lock/unlock from sched_show_numa + - sched/core: Export pelt_thermal_tp + - sched/uclamp: Fix iowait boost escaping uclamp restriction + - rseq: Remove broken uapi field layout on 32-bit little endian + - perf/core: Fix address filter parser for multiple filters + - perf/x86/intel/pt: Fix address filter config for 32-bit kernel + - sched/fair: Improve consistency of allowed NUMA balance calculations + - f2fs: fix missing free nid in f2fs_handle_failed_inode + - nfsd: more robust allocation failure handling in nfsd_file_cache_init + - sched/cpuacct: Fix charge percpu cpuusage + - sched/rt: Plug rt_mutex_setprio() vs push_rt_task() race + - f2fs: fix to avoid potential deadlock + - btrfs: fix unexpected error path when reflinking an inline extent + - f2fs: fix compressed file start atomic write may cause data corruption + - selftests, x86: fix how check_cc.sh is being invoked + - drivers/base/memory: add memory block to memory group after registration + succeeded + - kunit: make kunit_test_timeout compatible with comment + - pinctrl: samsung: Remove EINT handler for Exynos850 ALIVE and CMGP gpios + - media: staging: media: zoran: fix usage of vb2_dma_contig_set_max_seg_size + - media: camss: csid-170: fix non-10bit formats + - media: camss: csid-170: don't enable unused irqs + - media: camss: csid-170: set the right HALT_CMD when disabled + - media: camss: vfe-170: fix "VFE halt timeout" error + - media: staging: media: imx: imx7-mipi-csis: Make subdev name unique + - media: v4l2-mem2mem: Apply DST_QUEUE_OFF_BASE on MMAP buffers across ioctls + - media: mtk-vcodec: potential dereference of null pointer + - media: imx: imx8mq-mipi-csi2: remove wrong irq config write operation + - media: imx: imx8mq-mipi_csi2: fix system resume + - media: bttv: fix WARNING regression on tunerless devices + - media: atmel: atmel-sama7g5-isc: fix ispck leftover + - ASoC: sh: rz-ssi: Drop calling rz_ssi_pio_recv() recursively + - ASoC: codecs: Check for error pointer after calling devm_regmap_init_mmio + - ASoC: xilinx: xlnx_formatter_pcm: Handle sysclk setting + - ASoC: simple-card-utils: Set sysclk on all components + - media: coda: Fix missing put_device() call in coda_get_vdoa_data + - media: meson: vdec: potential dereference of null pointer + - media: hantro: Fix overfill bottom register field name + - media: ov6650: Fix set format try processing path + - media: v4l: Avoid unaligned access warnings when printing 4cc modifiers + - media: ov5648: Don't pack controls struct + - media: aspeed: Correct value for h-total-pixels + - video: fbdev: matroxfb: set maxvram of vbG200eW to the same as vbG200 to + avoid black screen + - video: fbdev: controlfb: Fix COMPILE_TEST build + - video: fbdev: smscufx: Fix null-ptr-deref in ufx_usb_probe() + - video: fbdev: atmel_lcdfb: fix an error code in atmel_lcdfb_probe() + - video: fbdev: fbcvt.c: fix printing in fb_cvt_print_name() + - ARM: dts: Fix OpenBMC flash layout label addresses + - firmware: qcom: scm: Remove reassignment to desc following initializer + - ARM: dts: qcom: ipq4019: fix sleep clock + - soc: qcom: rpmpd: Check for null return of devm_kcalloc + - soc: qcom: ocmem: Fix missing put_device() call in of_get_ocmem + - soc: qcom: aoss: remove spurious IRQF_ONESHOT flags + - arm64: dts: qcom: sdm845: fix microphone bias properties and values + - arm64: dts: qcom: sm8250: fix PCIe bindings to follow schema + - arm64: dts: broadcom: bcm4908: use proper TWD binding + - arm64: dts: qcom: sm8150: Correct TCS configuration for apps rsc + - arm64: dts: qcom: sm8350: Correct TCS configuration for apps rsc + - firmware: ti_sci: Fix compilation failure when CONFIG_TI_SCI_PROTOCOL is not + defined + - soc: ti: wkup_m3_ipc: Fix IRQ check in wkup_m3_ipc_probe + - ARM: dts: sun8i: v3s: Move the csi1 block to follow address order + - vsprintf: Fix potential unaligned access + - ARM: dts: imx: Add missing LVDS decoder on M53Menlo + - media: mexon-ge2d: fixup frames size in registers + - media: video/hdmi: handle short reads of hdmi info frame. + - media: ti-vpe: cal: Fix a NULL pointer dereference in + cal_ctx_v4l2_init_formats() + - media: em28xx: initialize refcount before kref_get + - media: usb: go7007: s2250-board: fix leak in probe() + - media: cedrus: H265: Fix neighbour info buffer size + - media: cedrus: h264: Fix neighbour info buffer size + - ASoC: codecs: rx-macro: fix accessing compander for aux + - ASoC: codecs: rx-macro: fix accessing array out of bounds for enum type + - ASoC: codecs: va-macro: fix accessing array out of bounds for enum type + - ASoC: codecs: wc938x: fix accessing array out of bounds for enum type + - ASoC: codecs: wcd938x: fix kcontrol max values + - ASoC: codecs: wcd934x: fix kcontrol max values + - ASoC: codecs: wcd934x: fix return value of wcd934x_rx_hph_mode_put + - media: v4l2-core: Initialize h264 scaling matrix + - media: ov5640: Fix set format, v4l2_mbus_pixelcode not updated + - selftests/lkdtm: Add UBSAN config + - lib: uninline simple_strntoull() as well + - vsprintf: Fix %pK with kptr_restrict == 0 + - uaccess: fix nios2 and microblaze get_user_8() + - ASoC: rt5663: check the return value of devm_kzalloc() in rt5663_parse_dp() + - soc: mediatek: pm-domains: Add wakeup capacity support in power domain + - mmc: sdhci_am654: Fix the driver data of AM64 SoC + - ASoC: ti: davinci-i2s: Add check for clk_enable() + - ALSA: spi: Add check for clk_enable() + - arm64: dts: ns2: Fix spi-cpol and spi-cpha property + - arm64: dts: broadcom: Fix sata nodename + - printk: fix return value of printk.devkmsg __setup handler + - ASoC: mxs-saif: Handle errors for clk_enable + - ASoC: atmel_ssc_dai: Handle errors for clk_enable + - ASoC: dwc-i2s: Handle errors for clk_enable + - ASoC: soc-compress: prevent the potentially use of null pointer + - memory: emif: Add check for setup_interrupts + - memory: emif: check the pointer temp in get_device_details() + - ALSA: firewire-lib: fix uninitialized flag for AV/C deferred transaction + - arm64: dts: rockchip: Fix SDIO regulator supply properties on rk3399-firefly + - m68k: coldfire/device.c: only build for MCF_EDMA when h/w macros are defined + - media: stk1160: If start stream fails, return buffers with + VB2_BUF_STATE_QUEUED + - media: vidtv: Check for null return of vzalloc + - ASoC: atmel: Add missing of_node_put() in at91sam9g20ek_audio_probe + - ASoC: wm8350: Handle error for wm8350_register_irq + - ASoC: fsi: Add check for clk_enable + - video: fbdev: omapfb: Add missing of_node_put() in dvic_probe_of + - media: saa7134: fix incorrect use to determine if list is empty + - ivtv: fix incorrect device_caps for ivtvfb + - ASoC: atmel: Fix error handling in snd_proto_probe + - ASoC: rockchip: i2s: Fix missing clk_disable_unprepare() in + rockchip_i2s_probe + - ASoC: SOF: Add missing of_node_put() in imx8m_probe + - ASoC: mediatek: use of_device_get_match_data() + - ASoC: mediatek: mt8192-mt6359: Fix error handling in mt8192_mt6359_dev_probe + - ASoC: rk817: Fix missing clk_disable_unprepare() in rk817_platform_probe + - ASoC: dmaengine: do not use a NULL prepare_slave_config() callback + - ASoC: mxs: Fix error handling in mxs_sgtl5000_probe + - ASoC: fsl_spdif: Disable TX clock when stop + - ASoC: imx-es8328: Fix error return code in imx_es8328_probe() + - ASoC: SOF: Intel: enable DMI L1 for playback streams + - ASoC: msm8916-wcd-digital: Fix missing clk_disable_unprepare() in + msm8916_wcd_digital_probe + - mmc: davinci_mmc: Handle error for clk_enable + - ASoC: atmel: Fix error handling in sam9x5_wm8731_driver_probe + - ASoC: msm8916-wcd-analog: Fix error handling in pm8916_wcd_analog_spmi_probe + - ASoC: codecs: wcd934x: Add missing of_node_put() in wcd934x_codec_parse_data + - ASoC: amd: Fix reference to PCM buffer address + - ARM: configs: multi_v5_defconfig: re-enable CONFIG_V4L_PLATFORM_DRIVERS + - ARM: configs: multi_v5_defconfig: re-enable DRM_PANEL and FB_xxx + - drm/meson: osd_afbcd: Add an exit callback to struct meson_afbcd_ops + - drm/meson: Make use of the helper function + devm_platform_ioremap_resourcexxx() + - drm/meson: split out encoder from meson_dw_hdmi + - drm/meson: Fix error handling when afbcd.ops->init fails + - drm/bridge: Fix free wrong object in sii8620_init_rcp_input_dev + - drm/bridge: Add missing pm_runtime_disable() in __dw_mipi_dsi_probe + - drm/bridge: nwl-dsi: Fix PM disable depth imbalance in nwl_dsi_probe + - drm: bridge: adv7511: Fix ADV7535 HPD enablement + - ath10k: fix memory overwrite of the WoWLAN wakeup packet pattern + - drm/v3d/v3d_drv: Check for error num after setting mask + - drm/panfrost: Check for error num after setting mask + - libbpf: Fix possible NULL pointer dereference when destroying skeleton + - bpftool: Only set obj->skeleton on complete success + - udmabuf: validate ubuf->pagecount + - bpf: Fix UAF due to race between btf_try_get_module and load_module + - drm/selftests/test-drm_dp_mst_helper: Fix memory leak in + sideband_msg_req_encode_decode + - selftests: bpf: Fix bind on used port + - Bluetooth: btintel: Fix WBS setting for Intel legacy ROM products + - Bluetooth: hci_serdev: call init_rwsem() before p->open() + - mtd: onenand: Check for error irq + - mtd: rawnand: gpmi: fix controller timings setting + - drm/edid: Don't clear formats if using deep color + - drm/edid: Split deep color modes between RGB and YUV444 + - ionic: fix type complaint in ionic_dev_cmd_clean() + - ionic: start watchdog after all is setup + - ionic: Don't send reset commands if FW isn't running + - drm/nouveau/acr: Fix undefined behavior in nvkm_acr_hsfw_load_bl() + - drm/amd/display: Fix a NULL pointer dereference in + amdgpu_dm_connector_add_common_modes() + - drm/amd/pm: return -ENOTSUPP if there is no get_dpm_ultimate_freq function + - net: phy: at803x: move page selection fix to config_init + - selftests/bpf: Normalize XDP section names in selftests + - selftests/bpf/test_xdp_redirect_multi: use temp netns for testing + - ath9k_htc: fix uninit value bugs + - RDMA/core: Set MR type in ib_reg_user_mr + - KVM: PPC: Fix vmx/vsx mixup in mmio emulation + - selftests/net: timestamping: Fix bind_phc check + - i40e: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - i40e: respect metadata on XSK Rx to skb + - igc: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - ixgbe: pass bi->xdp to ixgbe_construct_skb_zc() directly + - ixgbe: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - ixgbe: respect metadata on XSK Rx to skb + - power: reset: gemini-poweroff: Fix IRQ check in gemini_poweroff_probe + - ray_cs: Check ioremap return value + - powerpc: dts: t1040rdb: fix ports names for Seville Ethernet switch + - KVM: PPC: Book3S HV: Check return value of kvmppc_radix_init + - powerpc/perf: Don't use perf_hw_context for trace IMC PMU + - mt76: connac: fix sta_rec_wtbl tag len + - mt76: mt7915: use proper aid value in mt7915_mcu_wtbl_generic_tlv in sta + mode + - mt76: mt7915: use proper aid value in mt7915_mcu_sta_basic_tlv + - mt76: mt7921: fix a leftover race in runtime-pm + - mt76: mt7615: fix a leftover race in runtime-pm + - mt76: mt7603: check sta_rates pointer in mt7603_sta_rate_tbl_update + - mt76: mt7615: check sta_rates pointer in mt7615_sta_rate_tbl_update + - ptp: unregister virtual clocks when unregistering physical clock. + - net: dsa: mv88e6xxx: Enable port policy support on 6097 + - mac80211: Remove a couple of obsolete TODO + - mac80211: limit bandwidth in HE capabilities + - scripts/dtc: Call pkg-config POSIXly correct + - livepatch: Fix build failure on 32 bits processors + - net: asix: add proper error handling of usb read errors + - i2c: bcm2835: Use platform_get_irq() to get the interrupt + - i2c: bcm2835: Fix the error handling in 'bcm2835_i2c_probe()' + - mtd: mchp23k256: Add SPI ID table + - mtd: mchp48l640: Add SPI ID table + - igc: avoid kernel warning when changing RX ring parameters + - igb: refactor XDP registration + - PCI: aardvark: Fix reading MSI interrupt number + - PCI: aardvark: Fix reading PCI_EXP_RTSTA_PME bit on emulated bridge + - RDMA/rxe: Check the last packet by RXE_END_MASK + - libbpf: Fix signedness bug in btf_dump_array_data() + - cxl/core: Fix cxl_probe_component_regs() error message + - cxl/regs: Fix size of CXL Capability Header Register + - net:enetc: allocate CBD ring data memory using DMA coherent methods + - libbpf: Fix compilation warning due to mismatched printf format + - drm/bridge: dw-hdmi: use safe format when first in bridge chain + - libbpf: Use dynamically allocated buffer when receiving netlink messages + - power: supply: ab8500: Fix memory leak in ab8500_fg_sysfs_init + - HID: i2c-hid: fix GET/SET_REPORT for unnumbered reports + - iommu/ipmmu-vmsa: Check for error num after setting mask + - drm/bridge: anx7625: Fix overflow issue on reading EDID + - bpftool: Fix the error when lookup in no-btf maps + - drm/amd/pm: enable pm sysfs write for one VF mode + - drm/amd/display: Add affected crtcs to atomic state for dsc mst unplug + - libbpf: Fix memleak in libbpf_netlink_recv() + - IB/cma: Allow XRC INI QPs to set their local ACK timeout + - dax: make sure inodes are flushed before destroy cache + - selftests: mptcp: add csum mib check for mptcp_connect + - iwlwifi: mvm: Don't call iwl_mvm_sta_from_mac80211() with NULL sta + - iwlwifi: mvm: don't iterate unadded vifs when handling FW SMPS req + - iwlwifi: mvm: align locking in D3 test debugfs + - iwlwifi: yoyo: remove DBGI_SRAM address reset writing + - iwlwifi: Fix -EIO error code that is never returned + - iwlwifi: mvm: Fix an error code in iwl_mvm_up() + - mtd: rawnand: pl353: Set the nand chip node as the flash node + - drm/msm/dp: populate connector of struct dp_panel + - drm/msm/dp: stop link training after link training 2 failed + - drm/msm/dp: always add fail-safe mode into connector mode list + - drm/msm/dsi: Use "ref" fw clock instead of global name for VCO parent + - drm/msm/dsi/phy: fix 7nm v4.0 settings for C-PHY mode + - drm/msm/dpu: add DSPP blocks teardown + - drm/msm/dpu: fix dp audio condition + - dm crypt: fix get_key_size compiler warning if !CONFIG_KEYS + - vfio/pci: fix memory leak during D3hot to D0 transition + - vfio/pci: wake-up devices around reset functions + - scsi: fnic: Fix a tracing statement + - scsi: pm8001: Fix command initialization in pm80XX_send_read_log() + - scsi: pm8001: Fix command initialization in pm8001_chip_ssp_tm_req() + - scsi: pm8001: Fix payload initialization in pm80xx_set_thermal_config() + - scsi: pm8001: Fix le32 values handling in + pm80xx_set_sas_protocol_timer_config() + - scsi: pm8001: Fix payload initialization in pm80xx_encrypt_update() + - scsi: pm8001: Fix le32 values handling in pm80xx_chip_ssp_io_req() + - scsi: pm8001: Fix le32 values handling in pm80xx_chip_sata_req() + - scsi: pm8001: Fix NCQ NON DATA command task initialization + - scsi: pm8001: Fix NCQ NON DATA command completion handling + - scsi: pm8001: Fix abort all task initialization + - RDMA/mlx5: Fix the flow of a miss in the allocation of a cache ODP MR + - drm/amd/display: Remove vupdate_int_entry definition + - TOMOYO: fix __setup handlers return values + - power: supply: sbs-charger: Don't cancel work that is not initialized + - ext2: correct max file size computing + - drm/tegra: Fix reference leak in tegra_dsi_ganged_probe + - power: supply: bq24190_charger: Fix bq24190_vbus_is_enabled() wrong false + return + - scsi: hisi_sas: Change permission of parameter prot_mask + - drm/bridge: cdns-dsi: Make sure to to create proper aliases for dt + - bpf, arm64: Call build_prologue() first in first JIT pass + - bpf, arm64: Feed byte-offset into bpf line info + - xsk: Fix race at socket teardown + - RDMA/irdma: Fix netdev notifications for vlan's + - RDMA/irdma: Fix Passthrough mode in VM + - RDMA/irdma: Remove incorrect masking of PD + - gpu: host1x: Fix a memory leak in 'host1x_remove()' + - libbpf: Skip forward declaration when counting duplicated type names + - powerpc/mm/numa: skip NUMA_NO_NODE onlining in parse_numa_properties() + - powerpc/Makefile: Don't pass -mcpu=powerpc64 when building 32-bit + - KVM: x86: Fix emulation in writing cr8 + - KVM: x86/emulator: Defer not-present segment check in + __load_segment_descriptor() + - hv_balloon: rate-limit "Unhandled message" warning + - i2c: xiic: Make bus names unique + - power: supply: wm8350-power: Handle error for wm8350_register_irq + - power: supply: wm8350-power: Add missing free in free_charger_irq + - IB/hfi1: Allow larger MTU without AIP + - RDMA/core: Fix ib_qp_usecnt_dec() called when error + - PCI: Reduce warnings on possible RW1C corruption + - net: axienet: fix RX ring refill allocation failure handling + - drm/msm/a6xx: Fix missing ARRAY_SIZE() check + - mips: DEC: honor CONFIG_MIPS_FP_SUPPORT=n + - MIPS: Sanitise Cavium switch cases in TLB handler synthesizers + - powerpc/sysdev: fix incorrect use to determine if list is empty + - powerpc/64s: Don't use DSISR for SLB faults + - mfd: mc13xxx: Add check for mc13xxx_irq_request + - libbpf: Unmap rings when umem deleted + - selftests/bpf: Make test_lwt_ip_encap more stable and faster + - platform/x86: huawei-wmi: check the return value of device_create_file() + - scsi: mpt3sas: Fix incorrect 4GB boundary check + - powerpc: 8xx: fix a return value error in mpc8xx_pic_init + - vxcan: enable local echo for sent CAN frames + - ath10k: Fix error handling in ath10k_setup_msa_resources + - mips: cdmm: Fix refcount leak in mips_cdmm_phys_base + - MIPS: RB532: fix return value of __setup handler + - MIPS: pgalloc: fix memory leak caused by pgd_free() + - mtd: rawnand: atmel: fix refcount issue in atmel_nand_controller_init + - power: ab8500_chargalg: Use CLOCK_MONOTONIC + - RDMA/irdma: Prevent some integer underflows + - Revert "RDMA/core: Fix ib_qp_usecnt_dec() called when error" + - RDMA/mlx5: Fix memory leak in error flow for subscribe event routine + - bpf, sockmap: Fix memleak in sk_psock_queue_msg + - bpf, sockmap: Fix memleak in tcp_bpf_sendmsg while sk msg is full + - bpf, sockmap: Fix more uncharged while msg has more_data + - bpf, sockmap: Fix double uncharge the mem of sk_msg + - samples/bpf, xdpsock: Fix race when running for fix duration of time + - USB: storage: ums-realtek: fix error code in rts51x_read_mem() + - drm/i915/display: Fix HPD short pulse handling for eDP + - netfilter: flowtable: Fix QinQ and pppoe support for inet table + - mt76: mt7921: fix mt7921_queues_acq implementation + - can: isotp: sanitize CAN ID checks in isotp_bind() + - can: isotp: return -EADDRNOTAVAIL when reading from unbound socket + - can: isotp: support MSG_TRUNC flag when reading from socket + - bareudp: use ipv6_mod_enabled to check if IPv6 enabled + - ibmvnic: fix race between xmit and reset + - af_unix: Fix some data-races around unix_sk(sk)->oob_skb. + - selftests/bpf: Fix error reporting from sock_fields programs + - Bluetooth: hci_uart: add missing NULL check in h5_enqueue + - Bluetooth: call hci_le_conn_failed with hdev lock in hci_le_conn_failed + - Bluetooth: btmtksdio: Fix kernel oops in btmtksdio_interrupt + - ipv4: Fix route lookups when handling ICMP redirects and PMTU updates + - af_netlink: Fix shift out of bounds in group mask calculation + - i2c: meson: Fix wrong speed use from probe + - netfilter: conntrack: Add and use nf_ct_set_auto_assign_helper_warned() + - i2c: mux: demux-pinctrl: do not deactivate a master that is not active + - powerpc/pseries: Fix use after free in remove_phb_dynamic() + - selftests/bpf/test_lirc_mode2.sh: Exit with proper code + - PCI: Avoid broken MSI on SB600 USB devices + - net: bcmgenet: Use stronger register read/writes to assure ordering + - tcp: ensure PMTU updates are processed during fastopen + - openvswitch: always update flow key after nat + - net: dsa: fix panic on shutdown if multi-chip tree failed to probe + - tipc: fix the timer expires after interval 100ms + - mfd: asic3: Add missing iounmap() on error asic3_mfd_probe + - ice: fix 'scheduling while atomic' on aux critical err interrupt + - ice: don't allow to run ice_send_event_to_aux() in atomic ctx + - drivers: ethernet: cpsw: fix panic when interrupt coaleceing is set via + ethtool + - kernel/resource: fix kfree() of bootmem memory again + - staging: r8188eu: convert DBG_88E_LEVEL call in hal/rtl8188e_hal_init.c + - staging: r8188eu: release_firmware is not called if allocation fails + - mxser: fix xmit_buf leak in activate when LSR == 0xff + - fsi: scom: Fix error handling + - fsi: scom: Remove retries in indirect scoms + - pwm: lpc18xx-sct: Initialize driver data and hardware before pwmchip_add() + - pps: clients: gpio: Propagate return value from pps_gpio_probe + - fsi: Aspeed: Fix a potential double free + - misc: alcor_pci: Fix an error handling path + - cpufreq: qcom-cpufreq-nvmem: fix reading of PVS Valid fuse + - soundwire: intel: fix wrong register name in intel_shim_wake + - clk: qcom: ipq8074: fix PCI-E clock oops + - dmaengine: idxd: check GENCAP config support for gencfg register + - dmaengine: idxd: change bandwidth token to read buffers + - dmaengine: idxd: restore traffic class defaults after wq reset + - iio: mma8452: Fix probe failing when an i2c_device_id is used + - serial: 8250_aspeed_vuart: add PORT_ASPEED_VUART port type + - staging:iio:adc:ad7280a: Fix handing of device address bit reversing. + - pinctrl: renesas: r8a77470: Reduce size for narrow VIN1 channel + - pinctrl: renesas: checker: Fix miscalculation of number of states + - clk: qcom: ipq8074: Use floor ops for SDCC1 clock + - phy: dphy: Correct lpx parameter and its derivatives(ta_{get,go,sure}) + - phy: phy-brcm-usb: fixup BCM4908 support + - serial: 8250_mid: Balance reference count for PCI DMA device + - serial: 8250_lpss: Balance reference count for PCI DMA device + - NFS: Use of mapping_set_error() results in spurious errors + - serial: 8250: Fix race condition in RTS-after-send handling + - iio: adc: Add check for devm_request_threaded_irq + - habanalabs: Add check for pci_enable_device + - NFS: Return valid errors from nfs2/3_decode_dirent() + - staging: r8188eu: fix endless loop in recv_func + - dma-debug: fix return value of __setup handlers + - clk: imx7d: Remove audio_mclk_root_clk + - clk: imx: off by one in imx_lpcg_parse_clks_from_dt() + - clk: at91: sama7g5: fix parents of PDMCs' GCLK + - clk: qcom: clk-rcg2: Update logic to calculate D value for RCG + - clk: qcom: clk-rcg2: Update the frac table for pixel clock + - dmaengine: hisi_dma: fix MSI allocate fail when reload hisi_dma + - remoteproc: qcom: Fix missing of_node_put in adsp_alloc_memory_region + - remoteproc: qcom_wcnss: Add missing of_node_put() in + wcnss_alloc_memory_region + - remoteproc: qcom_q6v5_mss: Fix some leaks in q6v5_alloc_memory_region + - nvdimm/region: Fix default alignment for small regions + - clk: actions: Terminate clk_div_table with sentinel element + - clk: loongson1: Terminate clk_div_table with sentinel element + - clk: hisilicon: Terminate clk_div_table with sentinel element + - clk: clps711x: Terminate clk_div_table with sentinel element + - clk: Fix clk_hw_get_clk() when dev is NULL + - clk: tegra: tegra124-emc: Fix missing put_device() call in + emc_ensure_emc_driver + - mailbox: imx: fix crash in resume on i.mx8ulp + - NFS: remove unneeded check in decode_devicenotify_args() + - staging: mt7621-dts: fix LEDs and pinctrl on GB-PC1 devicetree + - staging: mt7621-dts: fix formatting + - staging: mt7621-dts: fix pinctrl properties for ethernet + - staging: mt7621-dts: fix GB-PC2 devicetree + - pinctrl: mediatek: Fix missing of_node_put() in mtk_pctrl_init + - pinctrl: mediatek: paris: Fix PIN_CONFIG_BIAS_* readback + - pinctrl: mediatek: paris: Fix "argument" argument type for mtk_pinconf_get() + - pinctrl: mediatek: paris: Fix pingroup pin config state readback + - pinctrl: mediatek: paris: Skip custom extra pin config dump for virtual + GPIOs + - pinctrl: microchip sgpio: use reset driver + - pinctrl: microchip-sgpio: lock RMW access + - pinctrl: nomadik: Add missing of_node_put() in nmk_pinctrl_probe + - pinctrl/rockchip: Add missing of_node_put() in rockchip_pinctrl_probe + - tty: hvc: fix return value of __setup handler + - kgdboc: fix return value of __setup handler + - serial: 8250: fix XOFF/XON sending when DMA is used + - virt: acrn: obtain pa from VMA with PFNMAP flag + - virt: acrn: fix a memory leak in acrn_dev_ioctl() + - kgdbts: fix return value of __setup handler + - firmware: google: Properly state IOMEM dependency + - driver core: dd: fix return value of __setup handler + - jfs: fix divide error in dbNextAG + - netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options + - SUNRPC don't resend a task on an offlined transport + - NFSv4.1: don't retry BIND_CONN_TO_SESSION on session error + - kdb: Fix the putarea helper function + - perf stat: Fix forked applications enablement of counters + - clk: qcom: gcc-msm8994: Fix gpll4 width + - vsock/virtio: initialize vdev->priv before using VQs + - vsock/virtio: read the negotiated features before using VQs + - vsock/virtio: enable VQs early on probe + - clk: Initialize orphan req_rate + - xen: fix is_xen_pmu() + - net: enetc: report software timestamping via SO_TIMESTAMPING + - net: hns3: fix bug when PF set the duplicate MAC address for VFs + - net: hns3: fix port base vlan add fail when concurrent with reset + - net: hns3: add vlan list lock to protect vlan list + - net: hns3: format the output of the MAC address + - net: hns3: refine the process when PF set VF VLAN + - net: phy: broadcom: Fix brcm_fet_config_init() + - selftests: test_vxlan_under_vrf: Fix broken test case + - NFS: Don't loop forever in nfs_do_recoalesce() + - net: hns3: clean residual vf config after disable sriov + - net: sparx5: depends on PTP_1588_CLOCK_OPTIONAL + - qlcnic: dcb: default to returning -EOPNOTSUPP + - net/x25: Fix null-ptr-deref caused by x25_disconnect + - net: sparx5: switchdev: fix possible NULL pointer dereference + - octeontx2-af: initialize action variable + - net: prefer nf_ct_put instead of nf_conntrack_put + - net/sched: act_ct: fix ref leak when switching zones + - NFSv4/pNFS: Fix another issue with a list iterator pointing to the head + - net: dsa: bcm_sf2_cfp: fix an incorrect NULL check on list iterator + - fs: fd tables have to be multiples of BITS_PER_LONG + - lib/test: use after free in register_test_dev_kmod() + - fs: fix fd table size alignment properly + - LSM: general protection fault in legacy_parse_param + - regulator: rpi-panel: Handle I2C errors/timing to the Atmel + - crypto: hisilicon/qm - cleanup warning in qm_vf_read_qos + - gcc-plugins/stackleak: Exactly match strings instead of prefixes + - pinctrl: npcm: Fix broken references to chip->parent_device + - rcu: Mark writes to the rcu_segcblist structure's ->flags field + - block/bfq_wf2q: correct weight to ioprio + - crypto: xts - Add softdep on ecb + - crypto: hisilicon/sec - not need to enable sm4 extra mode at HW V3 + - block, bfq: don't move oom_bfqq + - selinux: use correct type for context length + - arm64: module: remove (NOLOAD) from linker script + - selinux: allow FIOCLEX and FIONCLEX with policy capability + - loop: use sysfs_emit() in the sysfs xxx show() + - Fix incorrect type in assignment of ipv6 port for audit + - irqchip/qcom-pdc: Fix broken locking + - irqchip/nvic: Release nvic_base upon failure + - fs/binfmt_elf: Fix AT_PHDR for unusual ELF files + - bfq: fix use-after-free in bfq_dispatch_request + - ACPICA: Avoid walking the ACPI Namespace if it is not there + - lib/raid6/test/Makefile: Use $(pound) instead of \# for Make 4.3 + - Revert "Revert "block, bfq: honor already-setup queue merges"" + - ACPI/APEI: Limit printable size of BERT table data + - PM: core: keep irq flags in device_pm_check_callbacks() + - parisc: Fix handling off probe non-access faults + - nvme-tcp: lockdep: annotate in-kernel sockets + - spi: tegra20: Use of_device_get_match_data() + - atomics: Fix atomic64_{read_acquire,set_release} fallbacks + - locking/lockdep: Iterate lock_classes directly when reading lockdep files + - ext4: correct cluster len and clusters changed accounting in ext4_mb_mark_bb + - ext4: fix ext4_mb_mark_bb() with flex_bg with fast_commit + - sched/tracing: Report TASK_RTLOCK_WAIT tasks as TASK_UNINTERRUPTIBLE + - ext4: don't BUG if someone dirty pages without asking ext4 first + - f2fs: fix to do sanity check on curseg->alloc_type + - NFSD: Fix nfsd_breaker_owns_lease() return values + - f2fs: don't get FREEZE lock in f2fs_evict_inode in frozen fs + - btrfs: harden identification of a stale device + - btrfs: make search_csum_tree return 0 if we get -EFBIG + - f2fs: use spin_lock to avoid hang + - f2fs: compress: fix to print raw data size in error path of lz4 + decompression + - Adjust cifssb maximum read size + - ntfs: add sanity check on allocation size + - media: staging: media: zoran: move videodev alloc + - media: staging: media: zoran: calculate the right buffer number for + zoran_reap_stat_com + - media: staging: media: zoran: fix various V4L2 compliance errors + - media: atmel: atmel-isc-base: report frame sizes as full supported range + - media: ir_toy: free before error exiting + - ASoC: sh: rz-ssi: Make the data structures available before registering the + handlers + - ASoC: SOF: Intel: match sdw version on link_slaves_found + - media: imx-jpeg: Prevent decoding NV12M jpegs into single-planar buffers + - media: iommu/mediatek-v1: Free the existed fwspec if the master dev already + has + - media: iommu/mediatek: Return ENODEV if the device is NULL + - media: iommu/mediatek: Add device_link between the consumer and the larb + devices + - video: fbdev: nvidiafb: Use strscpy() to prevent buffer overflow + - video: fbdev: w100fb: Reset global state + - video: fbdev: cirrusfb: check pixclock to avoid divide by zero + - video: fbdev: omapfb: acx565akm: replace snprintf with sysfs_emit + - ARM: dts: qcom: fix gic_irq_domain_translate warnings for msm8960 + - ARM: dts: bcm2837: Add the missing L1/L2 cache information + - ASoC: madera: Add dependencies on MFD + - media: atomisp_gmin_platform: Add DMI quirk to not turn AXP ELDO2 regulator + off on some boards + - media: atomisp: fix dummy_ptr check to avoid duplicate active_bo + - ARM: ftrace: avoid redundant loads or clobbering IP + - ARM: dts: imx7: Use audio_mclk_post_div instead audio_mclk_root_clk + - arm64: defconfig: build imx-sdma as a module + - video: fbdev: omapfb: panel-dsi-cm: Use sysfs_emit() instead of snprintf() + - video: fbdev: omapfb: panel-tpo-td043mtea1: Use sysfs_emit() instead of + snprintf() + - video: fbdev: udlfb: replace snprintf in show functions with sysfs_emit + - ARM: dts: bcm2711: Add the missing L1/L2 cache information + - ASoC: soc-core: skip zero num_dai component in searching dai name + - media: imx-jpeg: fix a bug of accessing array out of bounds + - media: cx88-mpeg: clear interrupt status register before streaming video + - uaccess: fix type mismatch warnings from access_ok() + - lib/test_lockup: fix kernel pointer check for separate address spaces + - ARM: tegra: tamonten: Fix I2C3 pad setting + - ARM: mmp: Fix failure to remove sram device + - ASoC: amd: vg: fix for pm resume callback sequence + - video: fbdev: sm712fb: Fix crash in smtcfb_write() + - media: i2c: ov5648: Fix lockdep error + - media: Revert "media: em28xx: add missing em28xx_close_extension" + - media: hdpvr: initialize dev->worker at hdpvr_register_videodev + - ASoC: Intel: sof_sdw: fix quirks for 2022 HP Spectre x360 13" + - tracing: Have TRACE_DEFINE_ENUM affect trace event types as well + - mmc: host: Return an error when ->enable_sdio_irq() ops is missing + - media: atomisp: fix bad usage at error handling logic + - ALSA: hda/realtek: Add alc256-samsung-headphone fixup + - KVM: x86: Reinitialize context if host userspace toggles EFER.LME + - KVM: x86/mmu: Move "invalid" check out of kvm_tdp_mmu_get_root() + - KVM: x86/mmu: Zap _all_ roots when unmapping gfn range in TDP MMU + - KVM: x86/mmu: Check for present SPTE when clearing dirty bit in TDP MMU + - KVM: x86: hyper-v: Drop redundant 'ex' parameter from kvm_hv_send_ipi() + - KVM: x86: hyper-v: Drop redundant 'ex' parameter from kvm_hv_flush_tlb() + - KVM: x86: hyper-v: Fix the maximum number of sparse banks for XMM fast TLB + flush hypercalls + - KVM: x86: hyper-v: HVCALL_SEND_IPI_EX is an XMM fast hypercall + - powerpc/kasan: Fix early region not updated correctly + - powerpc/lib/sstep: Fix 'sthcx' instruction + - powerpc/lib/sstep: Fix build errors with newer binutils + - powerpc: Add set_memory_{p/np}() and remove set_memory_attr() + - powerpc: Fix build errors with newer binutils + - drm/dp: Fix off-by-one in register cache size + - drm/i915: Treat SAGV block time 0 as SAGV disabled + - drm/i915: Fix PSF GV point mask when SAGV is not possible + - drm/i915: Reject unsupported TMDS rates on ICL+ + - scsi: qla2xxx: Refactor asynchronous command initialization + - scsi: qla2xxx: Implement ref count for SRB + - scsi: qla2xxx: Fix stuck session in gpdb + - scsi: qla2xxx: Fix warning message due to adisc being flushed + - scsi: qla2xxx: Fix scheduling while atomic + - scsi: qla2xxx: Fix premature hw access after PCI error + - scsi: qla2xxx: Fix wrong FDMI data for 64G adapter + - scsi: qla2xxx: Fix warning for missing error code + - scsi: qla2xxx: Fix device reconnect in loop topology + - scsi: qla2xxx: edif: Fix clang warning + - scsi: qla2xxx: Fix T10 PI tag escape and IP guard options for 28XX adapters + - scsi: qla2xxx: Add devids and conditionals for 28xx + - scsi: qla2xxx: Check for firmware dump already collected + - scsi: qla2xxx: Suppress a kernel complaint in qla_create_qpair() + - scsi: qla2xxx: Fix disk failure to rediscover + - scsi: qla2xxx: Fix incorrect reporting of task management failure + - scsi: qla2xxx: Fix hang due to session stuck + - scsi: qla2xxx: Fix missed DMA unmap for NVMe ls requests + - scsi: qla2xxx: Fix N2N inconsistent PLOGI + - scsi: qla2xxx: Fix stuck session of PRLI reject + - scsi: qla2xxx: Reduce false trigger to login + - scsi: qla2xxx: Use correct feature type field during RFF_ID processing + - platform: chrome: Split trace include file + - KVM: x86: Check lapic_in_kernel() before attempting to set a SynIC irq + - KVM: x86: Avoid theoretical NULL pointer dereference in + kvm_irq_delivery_to_apic_fast() + - KVM: x86: Forbid VMM to set SYNIC/STIMER MSRs when SynIC wasn't activated + - KVM: Prevent module exit until all VMs are freed + - KVM: x86: fix sending PV IPI + - KVM: SVM: fix panic on out-of-bounds guest IRQ + - ubifs: rename_whiteout: Fix double free for whiteout_ui->data + - ubifs: Fix deadlock in concurrent rename whiteout and inode writeback + - ubifs: Add missing iput if do_tmpfile() failed in rename whiteout + - ubifs: Rename whiteout atomically + - ubifs: Fix 'ui->dirty' race between do_tmpfile() and writeback work + - ubifs: Rectify space amount budget for mkdir/tmpfile operations + - ubifs: setflags: Make dirtied_ino_d 8 bytes aligned + - ubifs: Fix read out-of-bounds in ubifs_wbuf_write_nolock() + - ubifs: Fix to add refcount once page is set private + - ubifs: rename_whiteout: correct old_dir size computing + - nvme: allow duplicate NSIDs for private namespaces + - nvme: fix the read-only state for zoned namespaces with unsupposed features + - wireguard: queueing: use CFI-safe ptr_ring cleanup function + - wireguard: socket: free skb in send6 when ipv6 is disabled + - wireguard: socket: ignore v6 endpoints when ipv6 is disabled + - XArray: Fix xas_create_range() when multi-order entry present + - can: mcba_usb: mcba_usb_start_xmit(): fix double dev_kfree_skb in error path + - can: mcba_usb: properly check endpoint type + - can: mcp251xfd: mcp251xfd_register_get_dev_id(): fix return of error value + - XArray: Update the LRU list in xas_split() + - modpost: restore the warning message for missing symbol versions + - rtc: check if __rtc_read_time was successful + - gfs2: gfs2_setattr_size error path fix + - gfs2: Make sure FITRIM minlen is rounded up to fs block size + - net: hns3: fix the concurrency between functions reading debugfs + - net: hns3: fix software vlan talbe of vlan 0 inconsistent with hardware + - rxrpc: fix some null-ptr-deref bugs in server_key.c + - rxrpc: Fix call timer start racing with call destruction + - mailbox: imx: fix wakeup failure from freeze mode + - crypto: arm/aes-neonbs-cbc - Select generic cbc and aes + - watch_queue: Free the page array when watch_queue is dismantled + - pinctrl: pinconf-generic: Print arguments for bias-pull-* + - watchdog: rti-wdt: Add missing pm_runtime_disable() in probe function + - net: sparx5: uses, depends on BRIDGE or !BRIDGE + - pinctrl: nuvoton: npcm7xx: Rename DS() macro to DSTR() + - pinctrl: nuvoton: npcm7xx: Use %zu printk format for ARRAY_SIZE() + - ASoC: mediatek: mt6358: add missing EXPORT_SYMBOLs + - ubi: Fix race condition between ctrl_cdev_ioctl and ubi_cdev_ioctl + - ARM: iop32x: offset IRQ numbers by 1 + - block: Fix the maximum minor value is blk_alloc_ext_minor() + - io_uring: fix memory leak of uid in files registration + - riscv module: remove (NOLOAD) + - ACPI: CPPC: Avoid out of bounds access when parsing _CPC data + - vhost: handle error while adding split ranges to iotlb + - spi: Fix Tegra QSPI example + - platform/chrome: cros_ec_typec: Check for EC device + - can: isotp: restore accidentally removed MSG_PEEK feature + - proc: bootconfig: Add null pointer check + - drm/connector: Fix typo in documentation + - scsi: qla2xxx: Add qla2x00_async_done() for async routines + - staging: mt7621-dts: fix pinctrl-0 items to be size-1 items on ethernet + - arm64: mm: Drop 'const' from conditional arm64_dma_phys_limit definition + - ASoC: soc-compress: Change the check for codec_dai + - Reinstate some of "swiotlb: rework "fix info leak with DMA_FROM_DEVICE"" + - tracing: Have type enum modifications copy the strings + - net: add skb_set_end_offset() helper + - net: preserve skb_end_offset() in skb_unclone_keeptruesize() + - mm/mmap: return 1 from stack_guard_gap __setup() handler + - ARM: 9187/1: JIVE: fix return value of __setup handler + - mm/memcontrol: return 1 from cgroup.memory __setup() handler + - mm/usercopy: return 1 from hardened_usercopy __setup() handler + - af_unix: Support POLLPRI for OOB. + - bpf: Adjust BPF stack helper functions to accommodate skip > 0 + - bpf: Fix comment for helper bpf_current_task_under_cgroup() + - mmc: rtsx: Use pm_runtime_{get,put}() to handle runtime PM + - dt-bindings: mtd: nand-controller: Fix the reg property description + - dt-bindings: mtd: nand-controller: Fix a comment in the examples + - dt-bindings: spi: mxic: The interrupt property is not mandatory + - dt-bindings: memory: mtk-smi: No need mediatek,larb-id for mt8167 + - dt-bindings: pinctrl: pinctrl-microchip-sgpio: Fix example + - ubi: fastmap: Return error code if memory allocation fails in add_aeb() + - ASoC: SOF: Intel: Fix build error without SND_SOC_SOF_PCI_DEV + - ASoC: topology: Allow TLV control to be either read or write + - perf vendor events: Update metrics for SkyLake Server + - media: ov6650: Add try support to selection API operations + - media: ov6650: Fix crop rectangle affected by set format + - spi: mediatek: support tick_delay without enhance_timing + - ARM: dts: spear1340: Update serial node properties + - ARM: dts: spear13xx: Update SPI dma properties + - arm64: dts: ls1043a: Update i2c dma properties + - arm64: dts: ls1046a: Update i2c node dma properties + - um: Fix uml_mconsole stop/go + - docs: sysctl/kernel: add missing bit to panic_print + - openvswitch: Fixed nd target mask field in the flow dump. + - torture: Make torture.sh help message match reality + - n64cart: convert bi_disk to bi_bdev->bd_disk fix build + - mmc: rtsx: Let MMC core handle runtime PM + - mmc: rtsx: Fix build errors/warnings for unused variable + - KVM: x86/mmu: do compare-and-exchange of gPTE via the user address + - iommu/dma: Skip extra sync during unmap w/swiotlb + - iommu/dma: Fold _swiotlb helpers into callers + - iommu/dma: Check CONFIG_SWIOTLB more broadly + - swiotlb: Support aligned swiotlb buffers + - iommu/dma: Account for min_align_mask w/swiotlb + - coredump: Snapshot the vmas in do_coredump + - coredump: Remove the WARN_ON in dump_vma_snapshot + - coredump/elf: Pass coredump_params into fill_note_info + - coredump: Use the vma snapshot in fill_files_note + - PCI: xgene: Revert "PCI: xgene: Use inbound resources for setup" + - Linux 5.15.33 + * Jammy update: v5.15.32 upstream stable release (LP: #1969106) + - net: ipv6: fix skb_over_panic in __ip6_append_data + - tpm: Fix error handling in async work + - Bluetooth: btusb: Add another Realtek 8761BU + - llc: fix netdevice reference leaks in llc_ui_bind() + - ASoC: sti: Fix deadlock via snd_pcm_stop_xrun() call + - ALSA: oss: Fix PCM OSS buffer allocation overflow + - ALSA: usb-audio: add mapping for new Corsair Virtuoso SE + - ALSA: hda/realtek: Add quirk for Clevo NP70PNJ + - ALSA: hda/realtek: Add quirk for Clevo NP50PNJ + - ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc671 + - ALSA: hda/realtek: Add quirk for ASUS GA402 + - ALSA: pcm: Fix races among concurrent hw_params and hw_free calls + - ALSA: pcm: Fix races among concurrent read/write and buffer changes + - ALSA: pcm: Fix races among concurrent prepare and hw_params/hw_free calls + - ALSA: pcm: Fix races among concurrent prealloc proc writes + - ALSA: pcm: Add stream lock during PCM reset ioctl operations + - ALSA: usb-audio: Add mute TLV for playback volumes on RODE NT-USB + - ALSA: cmipci: Restore aux vol on suspend/resume + - ALSA: pci: fix reading of swapped values from pcmreg in AC97 codec + - drivers: net: xgene: Fix regression in CRC stripping + - ACPI / x86: Work around broken XSDT on Advantech DAC-BJ01 board + - ACPI: battery: Add device HID and quirk for Microsoft Surface Go 3 + - ACPI: video: Force backlight native for Clevo NL5xRU and NL5xNU + - crypto: qat - disable registration of algorithms + - Bluetooth: btusb: Add one more Bluetooth part for the Realtek RTL8852AE + - Revert "ath: add support for special 0x0 regulatory domain" + - drm/virtio: Ensure that objs is not NULL in virtio_gpu_array_put_free() + - rcu: Don't deboost before reporting expedited quiescent state + - uaccess: fix integer overflow on access_ok() + - mac80211: fix potential double free on mesh join + - tpm: use try_get_ops() in tpm-space.c + - wcn36xx: Differentiate wcn3660 from wcn3620 + - m68k: fix access_ok for coldfire + - nds32: fix access_ok() checks in get/put_user + - llc: only change llc->dev when bind() succeeds + - Linux 5.15.32 + * Jammy update: v5.15.31 upstream stable release (LP: #1969105) + - crypto: qcom-rng - ensure buffer for generate is completely filled + - ocfs2: fix crash when initialize filecheck kobj fails + - mm: swap: get rid of livelock in swapin readahead + - block: release rq qos structures for queue without disk + - drm/mgag200: Fix PLL setup for g200wb and g200ew + - efi: fix return value of __setup handlers + - alx: acquire mutex for alx_reinit in alx_change_mtu + - vsock: each transport cycles only on its own sockets + - esp6: fix check on ipv6_skip_exthdr's return value + - net: phy: marvell: Fix invalid comparison in the resume and suspend + functions + - net/packet: fix slab-out-of-bounds access in packet_recvmsg() + - atm: eni: Add check for dma_map_single + - iavf: Fix double free in iavf_reset_task + - hv_netvsc: Add check for kvmalloc_array + - drm/imx: parallel-display: Remove bus flags check in + imx_pd_bridge_atomic_check() + - drm/panel: simple: Fix Innolux G070Y2-L01 BPP settings + - net: handle ARPHRD_PIMREG in dev_is_mac_header_xmit() + - drm: Don't make DRM_PANEL_BRIDGE dependent on DRM_KMS_HELPERS + - net: dsa: Add missing of_node_put() in dsa_port_parse_of + - net: phy: mscc: Add MODULE_FIRMWARE macros + - bnx2x: fix built-in kernel driver load failure + - net: bcmgenet: skip invalid partial checksums + - net: mscc: ocelot: fix backwards compatibility with single-chain tc-flower + offload + - iavf: Fix hang during reboot/shutdown + - arm64: fix clang warning about TRAMP_VALIAS + - usb: gadget: rndis: prevent integer overflow in rndis_set_response() + - usb: gadget: Fix use-after-free bug by not setting udc->dev.driver + - usb: usbtmc: Fix bug in pipe direction for control transfers + - scsi: mpt3sas: Page fault in reply q processing + - Input: aiptek - properly check endpoint type + - perf symbols: Fix symbol size calculation condition + - btrfs: skip reserved bytes warning on unmount after log cleanup failure + - Linux 5.15.31 + + -- Tim Gardner Thu, 26 May 2022 09:13:53 -0600 + +linux-azure (5.15.0-1007.8) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1007.8 -proposed tracker (LP: #1973896) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Intel: enable x86 AMX (LP: #1967750) + - [Config] azure: updateconfigs after AMX patchset + + [ Ubuntu: 5.15.0-33.34 ] + + * jammy/linux: 5.15.0-33.34 -proposed tracker (LP: #1973924) + * CVE-2022-29581 + - net/sched: cls_u32: fix netns refcount changes in u32_change() + * ext4: limit length to bitmap_maxbytes (LP: #1972281) + - ext4: limit length to bitmap_maxbytes - blocksize in punch_hole + * Unprivileged users may use PTRACE_SEIZE to set PTRACE_O_SUSPEND_SECCOMP + option (LP: #1972740) + - ptrace: Check PTRACE_O_SUSPEND_SECCOMP permission on PTRACE_SEIZE + + [ Ubuntu: 5.15.0-30.31 ] + + * jammy/linux: 5.15.0-30.31 -proposed tracker (LP: #1971685) + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - debian/dkms-versions -- update from kernel-versions (main/2022.04.18) + * Intel: enable x86 AMX (LP: #1967750) + - x86/extable: Tidy up redundant handler functions + - x86/extable: Get rid of redundant macros + - x86/mce: Deduplicate exception handling + - x86/mce: Get rid of stray semicolons + - x86/extable: Rework the exception table mechanics + - x86/extable: Provide EX_TYPE_DEFAULT_MCE_SAFE and EX_TYPE_FAULT_MCE_SAFE + - x86/copy_mc: Use EX_TYPE_DEFAULT_MCE_SAFE for exception fixups + - x86/fpu: Use EX_TYPE_FAULT_MCE_SAFE for exception fixups + - x86/extable: Remove EX_TYPE_FAULT from MCE safe fixups + - x86/fpu/signal: Clarify exception handling in restore_fpregs_from_user() + - x86/fpu/signal: Move header zeroing out of xsave_to_user_sigframe() + - x86/fpu/signal: Move xstate clearing out of copy_fpregs_to_sigframe() + - x86/fpu/signal: Change return type of copy_fpstate_to_sigframe() to boolean + - x86/fpu/signal: Change return type of copy_fpregs_to_sigframe() helpers to + boolean + - x86/signal: Change return type of restore_sigcontext() to boolean + - x86/fpu/signal: Change return type of fpu__restore_sig() to boolean + - x86/fpu/signal: Change return type of __fpu_restore_sig() to boolean + - x86/fpu/signal: Change return code of check_xstate_in_sigframe() to boolean + - x86/fpu/signal: Change return code of restore_fpregs_from_user() to boolean + - x86/fpu/signal: Fix missed conversion to correct boolean retval in + save_xstate_epilog() + - x86/fpu: Remove pointless argument from switch_fpu_finish() + - x86/fpu: Update stale comments + - x86/pkru: Remove useless include + - x86/fpu: Restrict xsaves()/xrstors() to independent states + - x86/fpu: Cleanup the on_boot_cpu clutter + - x86/fpu: Remove pointless memset in fpu_clone() + - x86/process: Clone FPU in copy_thread() + - x86/fpu: Do not inherit FPU context for kernel and IO worker threads + - x86/fpu: Cleanup xstate xcomp_bv initialization + - x86/fpu/xstate: Provide and use for_each_xfeature() + - x86/fpu/xstate: Mark all init only functions __init + - x86/fpu: Move KVMs FPU swapping to FPU core + - x86/fpu: Replace KVMs home brewed FPU copy from user + - x86/fpu: Rework copy_xstate_to_uabi_buf() + - x86/fpu: Mark fpu__init_prepare_fx_sw_frame() as __init + - x86/fpu: Move context switch and exit to user inlines into sched.h + - x86/fpu: Clean up CPU feature tests + - x86/fpu: Make os_xrstor_booting() private + - x86/fpu: Move os_xsave() and os_xrstor() to core + - x86/fpu: Move legacy ASM wrappers to core + - x86/fpu: Make WARN_ON_FPU() private + - x86/fpu: Move fpregs_restore_userregs() to core + - x86/fpu: Move mxcsr related code to core + - x86/fpu: Move fpstate functions to api.h + - x86/fpu: Remove internal.h dependency from fpu/signal.h + - x86/sev: Include fpu/xcr.h + - x86/fpu: Mop up the internal.h leftovers + - x86/fpu: Replace the includes of fpu/internal.h + - x86/fpu: Provide a proper function for ex_handler_fprestore() + - x86/fpu: Replace KVMs home brewed FPU copy to user + - x86/fpu: Provide struct fpstate + - x86/fpu: Convert fpstate_init() to struct fpstate + - x86/fpu: Convert restore_fpregs_from_fpstate() to struct fpstate + - x86/fpu: Replace KVMs xstate component clearing + - x86/KVM: Convert to fpstate + - x86/fpu: Convert tracing to fpstate + - x86/fpu/regset: Convert to fpstate + - x86/fpu/signal: Convert to fpstate + - x86/fpu/core: Convert to fpstate + - x86/math-emu: Convert to fpstate + - x86/fpu: Remove fpu::state + - x86/fpu: Do not leak fpstate pointer on fork + - x86/process: Move arch_thread_struct_whitelist() out of line + - x86/fpu: Add size and mask information to fpstate + - x86/fpu: Use fpstate::size + - x86/fpu/xstate: Use fpstate for os_xsave() + - x86/fpu/xstate: Use fpstate for xsave_to_user_sigframe() + - x86/fpu: Use fpstate in fpu_copy_kvm_uabi_to_fpstate() + - x86/fpu: Use fpstate in __copy_xstate_to_uabi_buf() + - x86/fpu/xstate: Use fpstate for copy_uabi_to_xstate() + - x86/fpu/signal: Use fpstate for size and features + - x86/fpu: Provide struct fpu_config + - x86/fpu: Cleanup fpu__init_system_xstate_size_legacy() + - x86/fpu/xstate: Cleanup size calculations + - x86/fpu: Move xstate size to fpu_*_cfg + - x86/fpu: Move xstate feature masks to fpu_*_cfg + - x86/fpu: Mop up xfeatures_mask_uabi() + - x86/fpu: Rework restore_regs_from_fpstate() + - x86/fpu/xstate: Move remaining xfeature helpers to core + - x86/fpu: Prepare for sanitizing KVM FPU code + - x86/fpu: Provide infrastructure for KVM FPU cleanup + - x86/kvm: Convert FPU handling to a single swap buffer + - x86/fpu: Remove old KVM FPU interface + - signal: Add an optional check for altstack size + - x86/signal: Implement sigaltstack size validation + - x86/fpu/xstate: Provide xstate_calculate_size() + - x86/fpu: Add members to struct fpu to cache permission information + - x86/fpu: Add fpu_state_config::legacy_features + - x86/arch_prctl: Add controls for dynamic XSTATE components + - x86/fpu: Add basic helpers for dynamically enabled features + - x86/signal: Use fpu::__state_user_size for sigalt stack validation + - x86/fpu/signal: Prepare for variable sigframe length + - x86/fpu: Prepare fpu_clone() for dynamically enabled features + - x86/fpu: Reset permission and fpstate on exec() + - x86/cpufeatures: Add eXtended Feature Disabling (XFD) feature bit + - x86/msr-index: Add MSRs for XFD + - x86/fpu: Add XFD state to fpstate + - x86/fpu: Add sanity checks for XFD + - x86/fpu: Update XFD state where required + - x86/fpu/xstate: Add XFD #NM handler + - x86/fpu/xstate: Add fpstate_realloc()/free() + - x86/fpu/xstate: Prepare XSAVE feature table for gaps in state component + numbers + - x86/fpu/amx: Define AMX state components and have it used for boot-time + checks + - x86/fpu: Calculate the default sizes independently + - x86/fpu: Add XFD handling for dynamic states + - x86/fpu/amx: Enable the AMX feature in 64-bit mode + - selftests/x86/amx: Add test cases for AMX state management + - selftests/x86/amx: Add context switch test + - Documentation/x86: Add documentation for using dynamic XSTATE features + - x86/fpu/signal: Initialize sw_bytes in save_xstate_epilog() + - signal: Skip the altstack update when not needed + - x86/cpufeatures: Put the AMX macros in the word 18 block + - x86/fpu/xstate: Fix the ARCH_REQ_XCOMP_PERM implementation + - selftests/x86/amx: Update the ARCH_REQ_XCOMP_PERM test + - [Config] updateconfigs after AMX patchset + + -- Tim Gardner Wed, 18 May 2022 11:48:15 -0600 + +linux-azure (5.15.0-1005.6) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1005.6 -proposed tracker (LP: #1969580) + + * linux-azure: Harmonize arm64 config settings with amd64 (LP: #1968900) + - [Config] azure: Ignore modules changes + + -- Paolo Pisati Wed, 20 Apr 2022 10:36:55 +0200 + +linux-azure (5.15.0-1004.5) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1004.5 -proposed tracker (LP: #1969491) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * linux-azure: Harmonize arm64 config settings with amd64 (LP: #1968900) + - [Config] azure: Homgenize arm64 config settings against amd64 + - [Config] azure: Ignore modules changes + + * Enable arm64 for Hyper-V guests (LP: #1949770) + - PCI: hv: Make the code arch neutral by adding arch specific interfaces + - PCI: hv: Add arm64 Hyper-V vPCI support + - UBUNTU [Config] azure: Update arm64 policy for CONFIG_PCI_HYPERV + + * linux-azure: CONFIG_HIBERNATION=y (LP: #1967336) + - [Config] Azure: arm64 CONFIG_HIBERNATION=y + + [ Ubuntu: 5.15.0-27.28 ] + + * jammy/linux: 5.15.0-27.28 -proposed tracker (LP: #1968954) + + [ Ubuntu: 5.15.0-26.27 ] + + * jammy/linux: 5.15.0-26.27 -proposed tracker (LP: #1968850) + * CVE-2022-1016 + - netfilter: nf_tables: initialize registers in nft_do_chain() + * CVE-2022-1015 + - netfilter: nf_tables: validate registers coming from userspace. + * CVE-2022-26490 + - nfc: st21nfca: Fix potential buffer overflows in EVT_TRANSACTION + * harden indirect calls against BHI attacks (LP: #1967579) + - objtool: Classify symbols + - objtool: Explicitly avoid self modifying code in .altinstr_replacement + - objtool: Shrink struct instruction + - objtool,x86: Replace alternatives with .retpoline_sites + - x86/retpoline: Remove unused replacement symbols + - x86/asm: Fix register order + - x86/asm: Fixup odd GEN-for-each-reg.h usage + - x86/retpoline: Move the retpoline thunk declarations to nospec-branch.h + - x86/retpoline: Create a retpoline thunk array + - x86/alternative: Implement .retpoline_sites support + - x86/alternative: Handle Jcc __x86_indirect_thunk_\reg + - x86/alternative: Try inline spectre_v2=retpoline,amd + - x86/alternative: Add debug prints to apply_retpolines() + - bpf,x86: Simplify computing label offsets + - bpf,x86: Respect X86_FEATURE_RETPOLINE* + + -- Paolo Pisati Wed, 20 Apr 2022 05:49:45 +0200 + +linux-azure (5.15.0-1003.4) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1003.4 -proposed tracker (LP: #1966481) + + * Azure: not enough RAM under 4GB for CVM (LP: #1967166) + - SAUCE: azure: Swiotlb: Add swiotlb_alloc_from_low_pages switch + - SAUCE: azure: x86/hyperv: Make swiotlb bounce buffer allocation not just + from low pages + + * linux-azure: arm64 network performance improvement (LP: #1966098) + - SAUCE: azure: ACPI: scan: Export acpi_get_dma_attr() + - SAUCE: azure: dma-mapping: Add wrapper function to set dma_coherent + - SAUCE: azure: Drivers: hv: vmbus: Propagate VMbus coherence to each VMbus + device + - SAUCE: azure: PCI: hv: Propagate coherence from VMbus device to PCI device + + [ Ubuntu: 5.15.0-25.25 ] + + * jammy/linux: 5.15.0-25.25 -proposed tracker (LP: #1967146) + * Miscellaneous Ubuntu changes + - SAUCE: Revert "scsi: core: Reallocate device's budget map on queue depth + change" + + [ Ubuntu: 5.15.0-24.24 ] + + * jammy/linux: 5.15.0-24.24 -proposed tracker (LP: #1966305) + * Update OS policy capability handshake (LP: #1966089) + - thermal: int340x: Update OS policy capability handshake + * Jammy update: v5.15.30 upstream stable release (LP: #1966057) + - Revert "xfrm: state and policy should fail if XFRMA_IF_ID 0" + - arm64: dts: rockchip: fix rk3399-puma-haikou USB OTG mode + - xfrm: Check if_id in xfrm_migrate + - xfrm: Fix xfrm migrate issues when address family changes + - arm64: dts: rockchip: fix rk3399-puma eMMC HS400 signal integrity + - arm64: dts: rockchip: align pl330 node name with dtschema + - arm64: dts: rockchip: reorder rk3399 hdmi clocks + - arm64: dts: agilex: use the compatible "intel,socfpga-agilex-hsotg" + - ARM: dts: rockchip: reorder rk322x hmdi clocks + - ARM: dts: rockchip: fix a typo on rk3288 crypto-controller + - mac80211: refuse aggregations sessions before authorized + - MIPS: smp: fill in sibling and core maps earlier + - ARM: 9178/1: fix unmet dependency on BITREVERSE for HAVE_ARCH_BITREVERSE + - Bluetooth: hci_core: Fix leaking sent_cmd skb + - can: rcar_canfd: rcar_canfd_channel_probe(): register the CAN device when + fully ready + - atm: firestream: check the return value of ioremap() in fs_init() + - iwlwifi: don't advertise TWT support + - drm/vrr: Set VRR capable prop only if it is attached to connector + - nl80211: Update bss channel on channel switch for P2P_CLIENT + - tcp: make tcp_read_sock() more robust + - sfc: extend the locking on mcdi->seqno + - bnx2: Fix an error message + - kselftest/vm: fix tests build with old libc + - x86/module: Fix the paravirt vs alternative order + - ice: Fix race condition during interface enslave + - Linux 5.15.30 + * Jammy update: v5.15.29 upstream stable release (LP: #1966056) + - arm64: dts: qcom: sm8350: Describe GCC dependency clocks + - arm64: dts: qcom: sm8350: Correct UFS symbol clocks + - HID: elo: Revert USB reference counting + - HID: hid-thrustmaster: fix OOB read in thrustmaster_interrupts + - ARM: boot: dts: bcm2711: Fix HVS register range + - clk: qcom: gdsc: Add support to update GDSC transition delay + - clk: qcom: dispcc: Update the transition delay for MDSS GDSC + - HID: vivaldi: fix sysfs attributes leak + - arm64: dts: armada-3720-turris-mox: Add missing ethernet0 alias + - tipc: fix kernel panic when enabling bearer + - vdpa/mlx5: add validation for VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET command + - vduse: Fix returning wrong type in vduse_domain_alloc_iova() + - net: phy: meson-gxl: fix interrupt handling in forced mode + - mISDN: Fix memory leak in dsp_pipeline_build() + - vhost: fix hung thread due to erroneous iotlb entries + - virtio-blk: Don't use MAX_DISCARD_SEGMENTS if max_discard_seg is zero + - vdpa: fix use-after-free on vp_vdpa_remove + - isdn: hfcpci: check the return value of dma_set_mask() in setup_hw() + - net: qlogic: check the return value of dma_alloc_coherent() in + qed_vf_hw_prepare() + - esp: Fix possible buffer overflow in ESP transformation + - esp: Fix BEET mode inter address family tunneling on GSO + - qed: return status of qed_iov_get_link + - smsc95xx: Ignore -ENODEV errors when device is unplugged + - gpiolib: acpi: Convert ACPI value of debounce to microseconds + - drm/sun4i: mixer: Fix P010 and P210 format numbers + - net: dsa: mt7530: fix incorrect test in mt753x_phylink_validate() + - ARM: dts: aspeed: Fix AST2600 quad spi group + - iavf: Fix handling of vlan strip virtual channel messages + - i40e: stop disabling VFs due to PF error responses + - ice: stop disabling VFs due to PF error responses + - ice: Fix error with handling of bonding MTU + - ice: Don't use GFP_KERNEL in atomic context + - ice: Fix curr_link_speed advertised speed + - ethernet: Fix error handling in xemaclite_of_probe + - tipc: fix incorrect order of state message data sanity check + - net: ethernet: ti: cpts: Handle error for clk_enable + - net: ethernet: lpc_eth: Handle error for clk_enable + - net: marvell: prestera: Add missing of_node_put() in + prestera_switch_set_base_mac_addr + - ax25: Fix NULL pointer dereference in ax25_kill_by_device + - net/mlx5: Fix size field in bufferx_reg struct + - net/mlx5: Fix a race on command flush flow + - net/mlx5e: Lag, Only handle events from highest priority multipath entry + - NFC: port100: fix use-after-free in port100_send_complete + - selftests: pmtu.sh: Kill tcpdump processes launched by subshell. + - selftests: pmtu.sh: Kill nettest processes launched in subshell. + - gpio: ts4900: Do not set DAT and OE together + - gianfar: ethtool: Fix refcount leak in gfar_get_ts_info + - net: phy: DP83822: clear MISR2 register to disable interrupts + - sctp: fix kernel-infoleak for SCTP sockets + - net: bcmgenet: Don't claim WOL when its not available + - net: phy: meson-gxl: improve link-up behavior + - selftests/bpf: Add test for bpf_timer overwriting crash + - swiotlb: fix info leak with DMA_FROM_DEVICE + - usb: dwc3: pci: add support for the Intel Raptor Lake-S + - pinctrl: tigerlake: Revert "Add Alder Lake-M ACPI ID" + - KVM: Fix lockdep false negative during host resume + - kvm: x86: Disable KVM_HC_CLOCK_PAIRING if tsc is in always catchup mode + - spi: rockchip: Fix error in getting num-cs property + - spi: rockchip: terminate dma transmission when slave abort + - drm/vc4: hdmi: Unregister codec device on unbind + - x86/kvm: Don't use pv tlb/ipi/sched_yield if on 1 vCPU + - net-sysfs: add check for netdevice being present to speed_show + - hwmon: (pmbus) Clear pmbus fault/warning bits after read + - PCI: Mark all AMD Navi10 and Navi14 GPU ATS as broken + - gpio: Return EPROBE_DEFER if gc->to_irq is NULL + - drm/amdgpu: bypass tiling flag check in virtual display case (v2) + - Revert "xen-netback: remove 'hotplug-status' once it has served its purpose" + - Revert "xen-netback: Check for hotplug-status existence before watching" + - ipv6: prevent a possible race condition with lifetimes + - tracing: Ensure trace buffer is at least 4096 bytes large + - tracing/osnoise: Make osnoise_main to sleep for microseconds + - selftest/vm: fix map_fixed_noreplace test failure + - selftests/memfd: clean up mapping in mfd_fail_write + - ARM: Spectre-BHB: provide empty stub for non-config + - fuse: fix fileattr op failure + - fuse: fix pipe buffer lifetime for direct_io + - staging: rtl8723bs: Fix access-point mode deadlock + - staging: gdm724x: fix use after free in gdm_lte_rx() + - net: macb: Fix lost RX packet wakeup race in NAPI receive + - riscv: alternative only works on !XIP_KERNEL + - mmc: meson: Fix usage of meson_mmc_post_req() + - riscv: Fix auipc+jalr relocation range checks + - tracing/osnoise: Force quiescent states while tracing + - arm64: dts: marvell: armada-37xx: Remap IO space to bus address 0x0 + - arm64: Ensure execute-only permissions are not allowed without EPAN + - arm64: kasan: fix include error in MTE functions + - swiotlb: rework "fix info leak with DMA_FROM_DEVICE" + - KVM: x86/mmu: kvm_faultin_pfn has to return false if pfh is returned + - virtio: unexport virtio_finalize_features + - virtio: acknowledge all features before access + - net/mlx5: Fix offloading with ESWITCH_IPV4_TTL_MODIFY_ENABLE + - ARM: fix Thumb2 regression with Spectre BHB + - watch_queue: Fix filter limit check + - watch_queue, pipe: Free watchqueue state after clearing pipe ring + - watch_queue: Fix to release page in ->release() + - watch_queue: Fix to always request a pow-of-2 pipe ring size + - watch_queue: Fix the alloc bitmap size to reflect notes allocated + - watch_queue: Free the alloc bitmap when the watch_queue is torn down + - watch_queue: Fix lack of barrier/sync/lock between post and read + - watch_queue: Make comment about setting ->defunct more accurate + - x86/boot: Fix memremap of setup_indirect structures + - x86/boot: Add setup_indirect support in early_memremap_is_setup_data() + - x86/sgx: Free backing memory after faulting the enclave page + - x86/traps: Mark do_int3() NOKPROBE_SYMBOL + - drm/panel: Select DRM_DP_HELPER for DRM_PANEL_EDP + - btrfs: make send work with concurrent block group relocation + - drm/i915: Workaround broken BIOS DBUF configuration on TGL/RKL + - riscv: dts: k210: fix broken IRQs on hart1 + - block: drop unused includes in + - Revert "net: dsa: mv88e6xxx: flush switchdev FDB workqueue before removing + VLAN" + - vhost: allow batching hint without size + - Linux 5.15.29 + * Jammy update: v5.15.28 upstream stable release (LP: #1966055) + - slip: fix macro redefine warning + - ARM: fix co-processor register typo + - ARM: Do not use NOCROSSREFS directive with ld.lld + - arm64: Do not include __READ_ONCE() block in assembly files + - ARM: fix build warning in proc-v7-bugs.c + - xen/xenbus: don't let xenbus_grant_ring() remove grants in error case + - xen/grant-table: add gnttab_try_end_foreign_access() + - xen/blkfront: don't use gnttab_query_foreign_access() for mapped status + - xen/netfront: don't use gnttab_query_foreign_access() for mapped status + - xen/scsifront: don't use gnttab_query_foreign_access() for mapped status + - xen/gntalloc: don't use gnttab_query_foreign_access() + - xen: remove gnttab_query_foreign_access() + - xen/9p: use alloc/free_pages_exact() + - xen/pvcalls: use alloc/free_pages_exact() + - xen/gnttab: fix gnttab_end_foreign_access() without page specified + - xen/netfront: react properly to failing gnttab_end_foreign_access_ref() + - Revert "ACPI: PM: s2idle: Cancel wakeup before dispatching EC GPE" + - Linux 5.15.28 + * zfcpdump-kernel update to v5.15 (LP: #1965766) + - SAUCE: Audit: Fix incorrect static inline function declration. + * [22.04 FEAT] SMC-R v2 Support (LP: #1929035) + - net/smc: save stack space and allocate smc_init_info + - net/smc: prepare for SMC-Rv2 connection + - net/smc: add SMC-Rv2 connection establishment + - net/smc: add listen processing for SMC-Rv2 + - net/smc: add v2 format of CLC decline message + - net/smc: retrieve v2 gid from IB device + - net/smc: add v2 support to the work request layer + - net/smc: extend LLC layer for SMC-Rv2 + - net/smc: add netlink support for SMC-Rv2 + - net/smc: stop links when their GID is removed + - net/smc: fix kernel panic caused by race of smc_sock + - net/smc: Fix hung_task when removing SMC-R devices + * [22.04 FEAT] Transparent PCI device recovery (LP: #1959532) + - s390/pci: tolerate inconsistent handle in recover + - s390/pci: add simpler s390dbf traces for events + - s390/pci: refresh function handle in iomap + - s390/pci: implement reset_slot for hotplug slot + - PCI: Export pci_dev_lock() + - s390/pci: implement minimal PCI error recovery + * Mute/mic LEDs no function on some HP platfroms (LP: #1965080) + - ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machines + * [22.04 FEAT] smc: Add User-defined EID (Enterprise ID) Support - kernel + (LP: #1929060) + - net/smc: add support for user defined EIDs + - net/smc: keep static copy of system EID + - net/smc: add generic netlink support for system EID + * Rotate to 2021v1 signing key (LP: #1964990) + - [Packaging] Rotate to 2021v1 signing key + * [22.04 FEAT] zcrypt DD: Exploitation Support of new IBM Z Crypto Hardware + (kernel part) (LP: #1959547) + - s390/zcrypt: rework of debug feature messages + - s390/ap/zcrypt: debug feature improvements + - s390/zcrypt: CEX8S exploitation support + - s390/zcrypt: handle checkstopped cards with new state + - s390/zcrypt: Support CPRB minor version T7 + - s390/zcrypt: change reply buffer size offering + - s390/zcrypt: Provide target domain for EP11 cprbs to scheduling function + - s390/airq: use DMA memory for summary indicators + * [22.04 FEAT] [VS2103] Set KVM_CAP_S390_MEM_OP_EXTENSION capability to 211 + (LP: #1963901) + - SAUCE: Set KVM_CAP_S390_MEM_OP_EXTENSION capability to 211 + * dependency on crda obsolete according to Debian (LP: #1958918) + - [Packaging] switch dependency from crda to wireless-regdb + * Cirrus audio support [1028:0BB5] & [1028:0BB6] (LP: #1964748) + - ALSA: hda/cs8409: Add new Warlock SKUs to patch_cs8409 + * Miscellaneous Ubuntu changes + - [Packaging] mark dkms-build-configure--zfs executable + - [Packaging] Fix bashism in dkms-build script + - [Packaging] Always catch errors in dkms-build scripts + - [Config] toolchain version update + * Miscellaneous upstream changes + - Ubuntu: remove leftover reference to ubuntu/hio driver + - Reverting commits 61005756c824 and cdb0f8e66513 due to a conflict with + LP#1929035. Re-pick them afterwards, which will establish the upstream + commit content and order again. + - Revert "UBUNTU: [Packaging] Rotate to 2021v1 signing key" + + -- Paolo Pisati Thu, 31 Mar 2022 12:00:32 +0200 + +linux-azure (5.15.0-1002.3) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1002.3 -proposed tracker (LP: #1965771) + + * Packaging resync (LP: #1786013) + - [Packaging] switch dependency from crda to wireless-regdb + + * linux-azure: Update HV support to 5.17 (LP: #1961329) + - x86/sev: Expose sev_es_ghcb_hv_call() for use by HyperV + - x86/hyperv: Initialize GHCB page in Isolation VM + - x86/hyperv: Initialize shared memory boundary in the Isolation VM. + - x86/hyperv: Add new hvcall guest address host visibility support + - Drivers: hv: vmbus: Mark vmbus ring buffer visible to host in Isolation VM + - x86/hyperv: Add Write/Read MSR registers via ghcb page + - x86/hyperv: Add ghcb hvcall support for SNP VM + - Drivers: hv: vmbus: Add SNP support for VMbus channel initiate message + - Drivers: hv: vmbus: Initialize VMbus ring buffer for Isolation VM + - swiotlb: Add swiotlb bounce buffer remap function for HV IVM + - x86/hyper-v: Add hyperv Isolation VM check in the cc_platform_has() + - hyper-v: Enable swiotlb bounce buffer for Isolation VM + - scsi: storvsc: Add Isolation VM support for storvsc driver + - net: netvsc: Add Isolation VM support for netvsc driver + - swiotlb: Add CONFIG_HAS_IOMEM check around swiotlb_mem_remap() + - Drivers: hv: vmbus: Initialize request offers message for Isolation VM + - scsi: storvsc: Fix storvsc_queuecommand() memory leak + - Netvsc: Call hv_unmap_memory() in the netvsc_device_remove() + - x86/sev: Replace occurrences of sev_active() with cc_platform_has() + - x86/kvm: Don't waste memory if kvmclock is disabled + - x86/kvmclock: Fix Hyper-V Isolated VM's boot issue when vCPUs > 64 + + * linux-azure: Case VM fails to initialize CX4 VF due to mem fragmentation + (LP: #1961632) + - net/mlx5: Reduce flow counters bulk query buffer size for SFs + - net/mlx5: Fix flow counters SF bulk query len + - net/mlx5: Dynamically resize flow counters query buffer + + * linux-azure: net: mana: Add handling of CQE_RX_TRUNCATED (LP: #1960322) + - net: mana: Add handling of CQE_RX_TRUNCATED + - net: mana: Remove unnecessary check of cqe_type in mana_process_rx_cqe() + + * jammy/linux-azure: CIFS 5.15 backport (LP: #1960671) + - cifs: add mount parameter tcpnodelay + - cifs: Create a new shared file holding smb2 pdu definitions + - cifs: move NEGOTIATE_PROTOCOL definitions out into the common area + - cifs: Move more definitions into the shared area + - cifs: Move SMB2_Create definitions to the shared area + - smb3: add dynamic trace points for socket connection + - cifs: send workstation name during ntlmssp session setup + - cifs: fix print of hdr_flags in dfscache_proc_show() + - cifs: introduce new helper for cifs_reconnect() + - cifs: convert list_for_each to entry variant + - cifs: split out dfs code from cifs_reconnect() + - cifs: for compound requests, use open handle if possible + - cifs: support nested dfs links over reconnect + - smb3: remove trivial dfs compile warning + - smb3: add additional null check in SMB2_ioctl + - smb3: add additional null check in SMB2_open + - smb3: add additional null check in SMB2_tcon + - cifs: release lock earlier in dequeue_mid error case + - smb3: add additional null check in SMB311_posix_mkdir + - cifs: fix potential use-after-free bugs + - smb3: do not setup the fscache_super_cookie until fsinfo initialized + - cifs: do not negotiate session if session already exists + - cifs: connect individual channel servers to primary channel server + - cifs: do not duplicate fscache cookie for secondary channels + - cifs: move debug print out of spinlock + - cifs: protect srv_count with cifs_tcp_ses_lock + - cifs: introduce cifs_ses_mark_for_reconnect() helper + - cifs: populate server_hostname for extra channels + - smb2: clarify rc initialization in smb2_reconnect + - cifs: update internal version number + - cifs: fix missed refcounting of ipc tcon + - cifs: wait for tcon resource_id before getting fscache super + - cifs: add server conn_id to fscache client cookie + - cifs: avoid use of dstaddr as key for fscache client cookie + - cifs: fix ntlmssp auth when there is no key exchange + - cifs: ignore resource_id while getting fscache super cookie + - cifs: remove redundant assignment to pointer p + - cifs: track individual channel status using chans_need_reconnect + - cifs: use the chans_need_reconnect bitmap for reconnect status + - cifs: adjust DebugData to use chans_need_reconnect for conn status + - cifs: add WARN_ON for when chan_count goes below minimum + - cifs: reconnect only the connection and not smb session where possible + - cifs: take cifs_tcp_ses_lock for status checks + - cifs: fix hang on cifs_get_next_mid() + - cifs: maintain a state machine for tcp/smb/tcon sessions + - cifs: avoid race during socket reconnect between send and recv + - cifs: Fix smb311_update_preauth_hash() kernel-doc comment + - cifs: move superblock magic defitions to magic.h + - cifs: fix FILE_BOTH_DIRECTORY_INFO definition + - cifs: free ntlmsspblob allocated in negotiate + - cifs: clean up an inconsistent indenting + - cifs: alloc_path_with_tree_prefix: do not append sep. if the path is empty + - cifs: quirk for STATUS_OBJECT_NAME_INVALID returned for non-ASCII dfs refs + - cifs: serialize all mount attempts + - smb3: add new defines from protocol specification + - cifs: check reconnects for channels of active tcons too + - cifs: fix the connection state transitions with multichannel + - cifs: protect all accesses to chan_* with chan_lock + - cifs: remove unused variable ses_selected + - cifs: fix the cifs_reconnect path for DFS + - cifs: remove repeated state change in dfs tree connect + - cifs: make status checks in version independent callers + - cifs: update tcpStatus during negotiate and sess setup + - cifs: cifs_ses_mark_for_reconnect should also update reconnect bits + - smb3: send NTLMSSP version information + - cifs: update internal module number + - Fix a warning about a malformed kernel doc comment in cifs + - cifs: unlock chan_lock before calling cifs_put_tcp_session + - cifs: fix workstation_name for multiuser mounts + + * linux-azure: Add Azure Blob driver to Ubuntu 18.04 image (LP: #1960539) + - [Config] azure: CONFIG_HYPERV_AZURE_BLOB=m + - SAUCE: azure: Drivers: hv: add Azure Blob driver + + * Miscellaneous Ubuntu changes + - [Config] azure: Sync config with master + + [ Ubuntu: 5.15.0-23.23 ] + + * jammy/linux: 5.15.0-23.23 -proposed tracker (LP: #1964573) + * Packaging resync (LP: #1786013) + - [Packaging] resync dkms-build{,--nvidia-N} from LRMv5 + - debian/dkms-versions -- update from kernel-versions (main/master) + * [22.04 FEAT] KVM: Enable GISA support for Secure Execution guests + (LP: #1959977) + - KVM: s390: pv: make use of ultravisor AIV support + * intel_iommu breaks Intel IPU6 camera: isys port open ready failed -16 + (LP: #1958004) + - SAUCE: iommu: intel-ipu: use IOMMU passthrough mode for Intel IPUs + * CVE-2022-23960 + - ARM: report Spectre v2 status through sysfs + - ARM: early traps initialisation + - ARM: use LOADADDR() to get load address of sections + - ARM: Spectre-BHB workaround + - ARM: include unprivileged BPF status in Spectre V2 reporting + - arm64: Add Neoverse-N2, Cortex-A710 CPU part definition + - arm64: Add HWCAP for self-synchronising virtual counter + - arm64: Add Cortex-X2 CPU part definition + - arm64: add ID_AA64ISAR2_EL1 sys register + - arm64: cpufeature: add HWCAP for FEAT_AFP + - arm64: cpufeature: add HWCAP for FEAT_RPRES + - arm64: entry.S: Add ventry overflow sanity checks + - arm64: spectre: Rename spectre_v4_patch_fw_mitigation_conduit + - KVM: arm64: Allow indirect vectors to be used without SPECTRE_V3A + - arm64: entry: Make the trampoline cleanup optional + - arm64: entry: Free up another register on kpti's tramp_exit path + - arm64: entry: Move the trampoline data page before the text page + - arm64: entry: Allow tramp_alias to access symbols after the 4K boundary + - arm64: entry: Don't assume tramp_vectors is the start of the vectors + - arm64: entry: Move trampoline macros out of ifdef'd section + - arm64: entry: Make the kpti trampoline's kpti sequence optional + - arm64: entry: Allow the trampoline text to occupy multiple pages + - arm64: entry: Add non-kpti __bp_harden_el1_vectors for mitigations + - arm64: entry: Add vectors that have the bhb mitigation sequences + - arm64: entry: Add macro for reading symbol addresses from the trampoline + - arm64: Add percpu vectors for EL1 + - arm64: proton-pack: Report Spectre-BHB vulnerabilities as part of Spectre-v2 + - arm64: Mitigate spectre style branch history side channels + - KVM: arm64: Allow SMCCC_ARCH_WORKAROUND_3 to be discovered and migrated + - arm64: Use the clearbhb instruction in mitigations + - arm64: proton-pack: Include unprivileged eBPF status in Spectre v2 + mitigation reporting + - ARM: fix build error when BPF_SYSCALL is disabled + * CVE-2021-26401 + - x86/speculation: Use generic retpoline by default on AMD + - x86/speculation: Update link to AMD speculation whitepaper + - x86/speculation: Warn about Spectre v2 LFENCE mitigation + - x86/speculation: Warn about eIBRS + LFENCE + Unprivileged eBPF + SMT + * CVE-2022-0001 + - x86,bugs: Unconditionally allow spectre_v2=retpoline,amd + - x86/speculation: Rename RETPOLINE_AMD to RETPOLINE_LFENCE + - x86/speculation: Add eIBRS + Retpoline options + - Documentation/hw-vuln: Update spectre doc + - x86/speculation: Include unprivileged eBPF status in Spectre v2 mitigation + reporting + * Jammy update: v5.15.27 upstream stable release (LP: #1964361) + - mac80211_hwsim: report NOACK frames in tx_status + - mac80211_hwsim: initialize ieee80211_tx_info at hw_scan_work + - i2c: bcm2835: Avoid clock stretching timeouts + - ASoC: rt5668: do not block workqueue if card is unbound + - ASoC: rt5682: do not block workqueue if card is unbound + - regulator: core: fix false positive in regulator_late_cleanup() + - Input: clear BTN_RIGHT/MIDDLE on buttonpads + - btrfs: get rid of warning on transaction commit when using flushoncommit + - KVM: arm64: vgic: Read HW interrupt pending state from the HW + - block: loop:use kstatfs.f_bsize of backing file to set discard granularity + - tipc: fix a bit overflow in tipc_crypto_key_rcv() + - cifs: do not use uninitialized data in the owner/group sid + - cifs: fix double free race when mount fails in cifs_get_root() + - cifs: modefromsids must add an ACE for authenticated users + - selftests/seccomp: Fix seccomp failure by adding missing headers + - drm/amd/pm: correct UMD pstate clocks for Dimgrey Cavefish and Beige Goby + - dmaengine: shdma: Fix runtime PM imbalance on error + - i2c: cadence: allow COMPILE_TEST + - i2c: imx: allow COMPILE_TEST + - i2c: qup: allow COMPILE_TEST + - net: usb: cdc_mbim: avoid altsetting toggling for Telit FN990 + - block-map: add __GFP_ZERO flag for alloc_page in function bio_copy_kern + - usb: gadget: don't release an existing dev->buf + - usb: gadget: clear related members when goto fail + - exfat: reuse exfat_inode_info variable instead of calling EXFAT_I() + - exfat: fix i_blocks for files truncated over 4 GiB + - tracing: Add test for user space strings when filtering on string pointers + - arm64: Mark start_backtrace() notrace and NOKPROBE_SYMBOL + - serial: stm32: prevent TDR register overwrite when sending x_char + - ext4: drop ineligible txn start stop APIs + - ext4: simplify updating of fast commit stats + - ext4: fast commit may not fallback for ineligible commit + - ext4: fast commit may miss file actions + - sched/fair: Fix fault in reweight_entity + - ata: pata_hpt37x: fix PCI clock detection + - drm/amdgpu: check vm ready by amdgpu_vm->evicting flag + - tracing: Add ustring operation to filtering string pointers + - ipv6: fix skb drops in igmp6_event_query() and igmp6_event_report() + - NFSD: Have legacy NFSD WRITE decoders use xdr_stream_subsegment() + - NFSD: Fix zero-length NFSv3 WRITEs + - io_uring: fix no lock protection for ctx->cq_extra + - tools/resolve_btf_ids: Close ELF file on error + - mtd: spi-nor: Fix mtd size for s3an flashes + - MIPS: fix local_{add,sub}_return on MIPS64 + - signal: In get_signal test for signal_group_exit every time through the loop + - PCI: mediatek-gen3: Disable DVFSRC voltage request + - PCI: rcar: Check if device is runtime suspended instead of + __clk_is_enabled() + - PCI: dwc: Do not remap invalid res + - PCI: aardvark: Fix checking for MEM resource type + - KVM: VMX: Don't unblock vCPU w/ Posted IRQ if IRQs are disabled in guest + - KVM: s390: Ensure kvm_arch_no_poll() is read once when blocking vCPU + - KVM: VMX: Read Posted Interrupt "control" exactly once per loop iteration + - KVM: X86: Ensure that dirty PDPTRs are loaded + - KVM: x86: Handle 32-bit wrap of EIP for EMULTYPE_SKIP with flat code seg + - KVM: x86: Exit to userspace if emulation prepared a completion callback + - i3c: fix incorrect address slot lookup on 64-bit + - i3c/master/mipi-i3c-hci: Fix a potentially infinite loop in + 'hci_dat_v1_get_index()' + - tracing: Do not let synth_events block other dyn_event systems during create + - Input: ti_am335x_tsc - set ADCREFM for X configuration + - Input: ti_am335x_tsc - fix STEPCONFIG setup for Z2 + - PCI: mvebu: Check for errors from pci_bridge_emul_init() call + - PCI: mvebu: Do not modify PCI IO type bits in conf_write + - PCI: mvebu: Fix support for bus mastering and PCI_COMMAND on emulated bridge + - PCI: mvebu: Fix configuring secondary bus of PCIe Root Port via emulated + bridge + - PCI: mvebu: Setup PCIe controller to Root Complex mode + - PCI: mvebu: Fix support for PCI_BRIDGE_CTL_BUS_RESET on emulated bridge + - PCI: mvebu: Fix support for PCI_EXP_DEVCTL on emulated bridge + - PCI: mvebu: Fix support for PCI_EXP_RTSTA on emulated bridge + - PCI: mvebu: Fix support for DEVCAP2, DEVCTL2 and LNKCTL2 registers on + emulated bridge + - NFSD: Fix verifier returned in stable WRITEs + - Revert "nfsd: skip some unnecessary stats in the v4 case" + - nfsd: fix crash on COPY_NOTIFY with special stateid + - x86/hyperv: Properly deal with empty cpumasks in hyperv_flush_tlb_multi() + - drm/i915: don't call free_mmap_offset when purging + - SUNRPC: Fix sockaddr handling in the svc_xprt_create_error trace point + - SUNRPC: Fix sockaddr handling in svcsock_accept_class trace points + - drm/sun4i: dw-hdmi: Fix missing put_device() call in sun8i_hdmi_phy_get + - drm/atomic: Check new_crtc_state->active to determine if CRTC needs disable + in self refresh mode + - ntb_hw_switchtec: Fix pff ioread to read into mmio_part_cfg_all + - ntb_hw_switchtec: Fix bug with more than 32 partitions + - drm/amdkfd: Check for null pointer after calling kmemdup + - drm/amdgpu: use spin_lock_irqsave to avoid deadlock by local interrupt + - i3c: master: dw: check return of dw_i3c_master_get_free_pos() + - dma-buf: cma_heap: Fix mutex locking section + - tracing/uprobes: Check the return value of kstrdup() for tu->filename + - tracing/probes: check the return value of kstrndup() for pbuf + - mm: defer kmemleak object creation of module_alloc() + - kasan: fix quarantine conflicting with init_on_free + - selftests/vm: make charge_reserved_hugetlb.sh work with existing cgroup + setting + - hugetlbfs: fix off-by-one error in hugetlb_vmdelete_list() + - drm/amdgpu/display: Only set vblank_disable_immediate when PSR is not + enabled + - drm/amdgpu: filter out radeon PCI device IDs + - drm/amdgpu: filter out radeon secondary ids as well + - drm/amd/display: Use adjusted DCN301 watermarks + - drm/amd/display: move FPU associated DSC code to DML folder + - ethtool: Fix link extended state for big endian + - octeontx2-af: Optimize KPU1 processing for variable-length headers + - octeontx2-af: Reset PTP config in FLR handler + - octeontx2-af: cn10k: RPM hardware timestamp configuration + - octeontx2-af: cn10k: Use appropriate register for LMAC enable + - octeontx2-af: Adjust LA pointer for cpt parse header + - octeontx2-af: Add KPU changes to parse NGIO as separate layer + - net/mlx5e: IPsec: Refactor checksum code in tx data path + - net/mlx5e: IPsec: Fix crypto offload for non TCP/UDP encapsulated traffic + - bpf: Use u64_stats_t in struct bpf_prog_stats + - bpf: Fix possible race in inc_misses_counter + - drm/amd/display: Update watermark values for DCN301 + - drm: mxsfb: Set fallback bus format when the bridge doesn't provide one + - drm: mxsfb: Fix NULL pointer dereference + - riscv/mm: Add XIP_FIXUP for phys_ram_base + - drm/i915/display: split out dpt out of intel_display.c + - drm/i915/display: Move DRRS code its own file + - drm/i915: Disable DRRS on IVB/HSW port != A + - gve: Recording rx queue before sending to napi + - net: dsa: ocelot: seville: utilize of_mdiobus_register + - net: dsa: seville: register the mdiobus under devres + - ibmvnic: don't release napi in __ibmvnic_open() + - of: net: move of_net under net/ + - net: ethernet: litex: Add the dependency on HAS_IOMEM + - drm/mediatek: mtk_dsi: Reset the dsi0 hardware + - cifs: protect session channel fields with chan_lock + - cifs: fix confusing unneeded warning message on smb2.1 and earlier + - drm/amd/display: Fix stream->link_enc unassigned during stream removal + - bnxt_en: Fix occasional ethtool -t loopback test failures + - drm/amd/display: For vblank_disable_immediate, check PSR is really used + - PCI: mvebu: Fix device enumeration regression + - net: of: fix stub of_net helpers for CONFIG_NET=n + - ALSA: intel_hdmi: Fix reference to PCM buffer address + - ucounts: Fix systemd LimitNPROC with private users regression + - riscv/efi_stub: Fix get_boot_hartid_from_fdt() return value + - riscv: Fix config KASAN && SPARSEMEM && !SPARSE_VMEMMAP + - riscv: Fix config KASAN && DEBUG_VIRTUAL + - iwlwifi: mvm: check debugfs_dir ptr before use + - ASoC: ops: Shift tested values in snd_soc_put_volsw() by +min + - iommu/vt-d: Fix double list_add when enabling VMD in scalable mode + - iommu/amd: Recover from event log overflow + - drm/i915: s/JSP2/ICP2/ PCH + - drm/amd/display: Reduce dmesg error to a debug print + - xen/netfront: destroy queues before real_num_tx_queues is zeroed + - thermal: core: Fix TZ_GET_TRIP NULL pointer dereference + - mac80211: fix EAPoL rekey fail in 802.3 rx path + - blktrace: fix use after free for struct blk_trace + - ntb: intel: fix port config status offset for SPR + - mm: Consider __GFP_NOWARN flag for oversized kvmalloc() calls + - xfrm: fix MTU regression + - netfilter: fix use-after-free in __nf_register_net_hook() + - bpf, sockmap: Do not ignore orig_len parameter + - xfrm: fix the if_id check in changelink + - xfrm: enforce validity of offload input flags + - e1000e: Correct NVM checksum verification flow + - net: fix up skbs delta_truesize in UDP GRO frag_list + - netfilter: nf_queue: don't assume sk is full socket + - netfilter: nf_queue: fix possible use-after-free + - netfilter: nf_queue: handle socket prefetch + - batman-adv: Request iflink once in batadv-on-batadv check + - batman-adv: Request iflink once in batadv_get_real_netdevice + - batman-adv: Don't expect inter-netns unique iflink indices + - net: ipv6: ensure we call ipv6_mc_down() at most once + - net: dcb: flush lingering app table entries for unregistered devices + - net: ipa: add an interconnect dependency + - net/smc: fix connection leak + - net/smc: fix unexpected SMC_CLC_DECL_ERR_REGRMB error generated by client + - net/smc: fix unexpected SMC_CLC_DECL_ERR_REGRMB error cause by server + - btrfs: fix ENOSPC failure when attempting direct IO write into NOCOW range + - mac80211: fix forwarded mesh frames AC & queue selection + - net: stmmac: fix return value of __setup handler + - mac80211: treat some SAE auth steps as final + - iavf: Fix missing check for running netdev + - net: sxgbe: fix return value of __setup handler + - ibmvnic: register netdev after init of adapter + - net: arcnet: com20020: Fix null-ptr-deref in com20020pci_probe() + - ixgbe: xsk: change !netif_carrier_ok() handling in ixgbe_xmit_zc() + - iavf: Fix deadlock in iavf_reset_task + - efivars: Respect "block" flag in efivar_entry_set_safe() + - auxdisplay: lcd2s: Fix lcd2s_redefine_char() feature + - firmware: arm_scmi: Remove space in MODULE_ALIAS name + - ASoC: cs4265: Fix the duplicated control name + - auxdisplay: lcd2s: Fix memory leak in ->remove() + - auxdisplay: lcd2s: Use proper API to free the instance of charlcd object + - can: gs_usb: change active_channels's type from atomic_t to u8 + - iommu/tegra-smmu: Fix missing put_device() call in tegra_smmu_find + - arm64: dts: rockchip: Switch RK3399-Gru DP to SPDIF output + - igc: igc_read_phy_reg_gpy: drop premature return + - ARM: Fix kgdb breakpoint for Thumb2 + - mips: setup: fix setnocoherentio() boolean setting + - ARM: 9182/1: mmu: fix returns from early_param() and __setup() functions + - mptcp: Correctly set DATA_FIN timeout when number of retransmits is large + - selftests: mlxsw: tc_police_scale: Make test more robust + - pinctrl: sunxi: Use unique lockdep classes for IRQs + - igc: igc_write_phy_reg_gpy: drop premature return + - ibmvnic: free reset-work-item when flushing + - memfd: fix F_SEAL_WRITE after shmem huge page allocated + - s390/extable: fix exception table sorting + - sched: Fix yet more sched_fork() races + - arm64: dts: juno: Remove GICv2m dma-range + - iommu/amd: Fix I/O page table memory leak + - MIPS: ralink: mt7621: do memory detection on KSEG1 + - ARM: dts: switch timer config to common devkit8000 devicetree + - ARM: dts: Use 32KiHz oscillator on devkit8000 + - soc: fsl: guts: Revert commit 3c0d64e867ed + - soc: fsl: guts: Add a missing memory allocation failure check + - soc: fsl: qe: Check of ioremap return value + - netfilter: nf_tables: prefer kfree_rcu(ptr, rcu) variant + - ARM: tegra: Move panels to AUX bus + - can: etas_es58x: change opened_channel_cnt's type from atomic_t to u8 + - net: stmmac: enhance XDP ZC driver level switching performance + - net: stmmac: only enable DMA interrupts when ready + - ibmvnic: initialize rc before completing wait + - ibmvnic: define flush_reset_queue helper + - ibmvnic: complete init_done on transport events + - net: chelsio: cxgb3: check the return value of pci_find_capability() + - net: sparx5: Fix add vlan when invalid operation + - iavf: Refactor iavf state machine tracking + - iavf: Add __IAVF_INIT_FAILED state + - iavf: Combine init and watchdog state machines + - iavf: Add trace while removing device + - iavf: Rework mutexes for better synchronisation + - iavf: Add helper function to go from pci_dev to adapter + - iavf: Fix kernel BUG in free_msi_irqs + - iavf: Add waiting so the port is initialized in remove + - iavf: Fix init state closure on remove + - iavf: Fix locking for VIRTCHNL_OP_GET_OFFLOAD_VLAN_V2_CAPS + - iavf: Fix race in init state + - iavf: Fix __IAVF_RESETTING state usage + - drm/i915/guc/slpc: Correct the param count for unset param + - drm/bridge: ti-sn65dsi86: Properly undo autosuspend + - e1000e: Fix possible HW unit hang after an s0ix exit + - MIPS: ralink: mt7621: use bitwise NOT instead of logical + - nl80211: Handle nla_memdup failures in handle_nan_filter + - drm/amdgpu: fix suspend/resume hang regression + - net: dcb: disable softirqs in dcbnl_flush_dev() + - selftests: mlxsw: resource_scale: Fix return value + - net: stmmac: perserve TX and RX coalesce value during XDP setup + - iavf: do not override the adapter state in the watchdog task (again) + - iavf: missing unlocks in iavf_watchdog_task() + - MAINTAINERS: adjust file entry for of_net.c after movement + - Input: elan_i2c - move regulator_[en|dis]able() out of + elan_[en|dis]able_power() + - Input: elan_i2c - fix regulator enable count imbalance after suspend/resume + - Input: samsung-keypad - properly state IOMEM dependency + - HID: add mapping for KEY_DICTATE + - HID: add mapping for KEY_ALL_APPLICATIONS + - tracing/histogram: Fix sorting on old "cpu" value + - tracing: Fix return value of __setup handlers + - btrfs: fix lost prealloc extents beyond eof after full fsync + - btrfs: fix relocation crash due to premature return from + btrfs_commit_transaction() + - btrfs: do not WARN_ON() if we have PageError set + - btrfs: qgroup: fix deadlock between rescan worker and remove qgroup + - btrfs: add missing run of delayed items after unlink during log replay + - btrfs: do not start relocation until in progress drops are done + - Revert "xfrm: xfrm_state_mtu should return at least 1280 for ipv6" + - proc: fix documentation and description of pagemap + - KVM: x86/mmu: Passing up the error state of mmu_alloc_shadow_roots() + - hamradio: fix macro redefine warning + - Linux 5.15.27 + - [Config] updateconfigs + * devices on thunderbolt dock are not recognized on adl-p platform + (LP: #1955016) + - thunderbolt: Tear down existing tunnels when resuming from hibernate + - thunderbolt: Runtime resume USB4 port when retimers are scanned + - thunderbolt: Do not allow subtracting more NFC credits than configured + - thunderbolt: Do not program path HopIDs for USB4 routers + - thunderbolt: Add debug logging of DisplayPort resource allocation + * MT7921[14c3:7961] ASPM is disabled and it affects power consumption + (LP: #1955882) + - mt76: mt7921: enable aspm by default + * Add proper runtime PM support to Realtek PCIe cardreader (LP: #1963615) + - mmc: rtsx: Use pm_runtime_{get, put}() to handle runtime PM + - misc: rtsx: Rework runtime power management flow + - misc: rtsx: Cleanup power management ops + - misc: rtsx: Quiesce rts5249 on system suspend + - mmc: rtsx: Let MMC core handle runtime PM + - misc: rtsx: conditionally build rtsx_pm_power_saving() + - misc: rtsx: rts522a rts5228 rts5261 support Runtime PM + - mmc: rtsx: Fix build errors/warnings for unused variable + - mmc: rtsx: add 74 Clocks in power on flow + * [22.04 FEAT] In-kernel crypto: SIMD implementation of chacha20 + (LP: #1853152) + - s390/crypto: add SIMD implementation for ChaCha20 + - s390/crypto: fix compile error for ChaCha20 module + * Add ConnectX7 support and bug fixes to Jammy (LP: #1962185) + - IB/mlx5: Expose NDR speed through MAD + * INVALID or PRIVATE BUG (LP: #1959890) + - [Config] Deactivate CONFIG_QETH_OSX kernel config option + * Move virtual graphics drivers from linux-modules-extra to linux-modules + (LP: #1960633) + - [Packaging] Move VM DRM drivers into modules + * Not able to enter s2idle state on AMD platforms (LP: #1961121) + - HID: amd_sfh: Handle amd_sfh work buffer in PM ops + - HID: amd_sfh: Disable the interrupt for all command + - HID: amd_sfh: Add functionality to clear interrupts + - HID: amd_sfh: Add interrupt handler to process interrupts + * INVALID or PRIVATE BUG (LP: #1960580) + - s390/kexec_file: move kernel image size check + - s390: support command lines longer than 896 bytes + * [UBUNTU 20.04] kernel: Add support for CPU-MF counter second version 7 + (LP: #1960182) + - s390/cpumf: Support for CPU Measurement Facility CSVN 7 + - s390/cpumf: Support for CPU Measurement Sampling Facility LS bit + * [SRU]PCI: vmd: Do not disable MSI-X remapping if interrupt remapping is + enabled by IOMMU (LP: #1937295) + - PCI: vmd: Do not disable MSI-X remapping if interrupt remapping is enabled + by IOMMU + * Jammy update: v5.15.26 upstream stable release (LP: #1963891) + - mm/filemap: Fix handling of THPs in generic_file_buffered_read() + - cgroup/cpuset: Fix a race between cpuset_attach() and cpu hotplug + - cgroup-v1: Correct privileges check in release_agent writes + - x86/ptrace: Fix xfpregs_set()'s incorrect xmm clearing + - btrfs: tree-checker: check item_size for inode_item + - btrfs: tree-checker: check item_size for dev_item + - clk: jz4725b: fix mmc0 clock gating + - io_uring: don't convert to jiffies for waiting on timeouts + - io_uring: disallow modification of rsrc_data during quiesce + - selinux: fix misuse of mutex_is_locked() + - vhost/vsock: don't check owner in vhost_vsock_stop() while releasing + - parisc/unaligned: Fix fldd and fstd unaligned handlers on 32-bit kernel + - parisc/unaligned: Fix ldw() and stw() unalignment handlers + - KVM: x86/mmu: make apf token non-zero to fix bug + - drm/amd/display: Protect update_bw_bounding_box FPU code. + - drm/amd/pm: fix some OEM SKU specific stability issues + - drm/amd: Check if ASPM is enabled from PCIe subsystem + - drm/amdgpu: disable MMHUB PG for Picasso + - drm/amdgpu: do not enable asic reset for raven2 + - drm/i915: Widen the QGV point mask + - drm/i915: Correctly populate use_sagv_wm for all pipes + - drm/i915: Fix bw atomic check when switching between SAGV vs. no SAGV + - sr9700: sanity check for packet length + - USB: zaurus: support another broken Zaurus + - CDC-NCM: avoid overflow in sanity checking + - netfilter: xt_socket: fix a typo in socket_mt_destroy() + - netfilter: xt_socket: missing ifdef CONFIG_IP6_NF_IPTABLES dependency + - tee: export teedev_open() and teedev_close_context() + - optee: use driver internal tee_context for some rpc + - ping: remove pr_err from ping_lookup + - Revert "i40e: Fix reset bw limit when DCB enabled with 1 TC" + - gpu: host1x: Always return syncpoint value when waiting + - perf evlist: Fix failed to use cpu list for uncore events + - perf data: Fix double free in perf_session__delete() + - mptcp: fix race in incoming ADD_ADDR option processing + - mptcp: add mibs counter for ignored incoming options + - selftests: mptcp: fix diag instability + - selftests: mptcp: be more conservative with cookie MPJ limits + - bnx2x: fix driver load from initrd + - bnxt_en: Fix active FEC reporting to ethtool + - bnxt_en: Fix offline ethtool selftest with RDMA enabled + - bnxt_en: Fix incorrect multicast rx mask setting when not requested + - hwmon: Handle failure to register sensor with thermal zone correctly + - net/mlx5: Fix tc max supported prio for nic mode + - ice: check the return of ice_ptp_gettimex64 + - ice: initialize local variable 'tlv' + - net/mlx5: Update the list of the PCI supported devices + - bpf: Fix crash due to incorrect copy_map_value + - bpf: Do not try bpf_msg_push_data with len 0 + - selftests: bpf: Check bpf_msg_push_data return value + - bpf: Fix a bpf_timer initialization issue + - bpf: Add schedule points in batch ops + - io_uring: add a schedule point in io_add_buffers() + - net: __pskb_pull_tail() & pskb_carve_frag_list() drop_monitor friends + - nvme: also mark passthrough-only namespaces ready in nvme_update_ns_info + - tipc: Fix end of loop tests for list_for_each_entry() + - gso: do not skip outer ip header in case of ipip and net_failover + - net: mv643xx_eth: process retval from of_get_mac_address + - openvswitch: Fix setting ipv6 fields causing hw csum failure + - drm/edid: Always set RGB444 + - net/mlx5e: Fix wrong return value on ioctl EEPROM query failure + - drm/vc4: crtc: Fix runtime_pm reference counting + - drm/i915/dg2: Print PHY name properly on calibration error + - net/sched: act_ct: Fix flow table lookup after ct clear or switching zones + - net: ll_temac: check the return value of devm_kmalloc() + - net: Force inlining of checksum functions in net/checksum.h + - netfilter: nf_tables: unregister flowtable hooks on netns exit + - nfp: flower: Fix a potential leak in nfp_tunnel_add_shared_mac() + - net: mdio-ipq4019: add delay after clock enable + - netfilter: nf_tables: fix memory leak during stateful obj update + - net/smc: Use a mutex for locking "struct smc_pnettable" + - surface: surface3_power: Fix battery readings on batteries without a serial + number + - udp_tunnel: Fix end of loop test in udp_tunnel_nic_unregister() + - net/mlx5: DR, Cache STE shadow memory + - ibmvnic: schedule failover only if vioctl fails + - net/mlx5: DR, Don't allow match on IP w/o matching on full + ethertype/ip_version + - net/mlx5: Fix possible deadlock on rule deletion + - net/mlx5: Fix wrong limitation of metadata match on ecpf + - net/mlx5: DR, Fix the threshold that defines when pool sync is initiated + - net/mlx5e: MPLSoUDP decap, fix check for unsupported matches + - net/mlx5e: kTLS, Use CHECKSUM_UNNECESSARY for device-offloaded packets + - net/mlx5: Update log_max_qp value to be 17 at most + - spi: spi-zynq-qspi: Fix a NULL pointer dereference in + zynq_qspi_exec_mem_op() + - gpio: rockchip: Reset int_bothedge when changing trigger + - regmap-irq: Update interrupt clear register for proper reset + - net-timestamp: convert sk->sk_tskey to atomic_t + - RDMA/rtrs-clt: Fix possible double free in error case + - RDMA/rtrs-clt: Move free_permit from free_clt to rtrs_clt_close + - bnxt_en: Increase firmware message response DMA wait time + - configfs: fix a race in configfs_{,un}register_subsystem() + - RDMA/ib_srp: Fix a deadlock + - tracing: Dump stacktrace trigger to the corresponding instance + - tracing: Have traceon and traceoff trigger honor the instance + - iio:imu:adis16480: fix buffering for devices with no burst mode + - iio: adc: men_z188_adc: Fix a resource leak in an error handling path + - iio: adc: tsc2046: fix memory corruption by preventing array overflow + - iio: adc: ad7124: fix mask used for setting AIN_BUFP & AIN_BUFM bits + - iio: accel: fxls8962af: add padding to regmap for SPI + - iio: imu: st_lsm6dsx: wait for settling time in st_lsm6dsx_read_oneshot + - iio: Fix error handling for PM + - sc16is7xx: Fix for incorrect data being transmitted + - ata: pata_hpt37x: disable primary channel on HPT371 + - Revert "USB: serial: ch341: add new Product ID for CH341A" + - usb: gadget: rndis: add spinlock for rndis response list + - USB: gadget: validate endpoint index for xilinx udc + - tracefs: Set the group ownership in apply_options() not parse_options() + - USB: serial: option: add support for DW5829e + - USB: serial: option: add Telit LE910R1 compositions + - usb: dwc2: drd: fix soft connect when gadget is unconfigured + - usb: dwc3: pci: Add "snps,dis_u2_susphy_quirk" for Intel Bay Trail + - usb: dwc3: pci: Fix Bay Trail phy GPIO mappings + - usb: dwc3: gadget: Let the interrupt handler disable bottom halves. + - xhci: re-initialize the HC during resume if HCE was set + - xhci: Prevent futile URB re-submissions due to incorrect return value. + - nvmem: core: Fix a conflict between MTD and NVMEM on wp-gpios property + - mtd: core: Fix a conflict between MTD and NVMEM on wp-gpios property + - driver core: Free DMA range map when device is released + - btrfs: prevent copying too big compressed lzo segment + - RDMA/cma: Do not change route.addr.src_addr outside state checks + - thermal: int340x: fix memory leak in int3400_notify() + - staging: fbtft: fb_st7789v: reset display before initialization + - tps6598x: clear int mask on probe failure + - IB/qib: Fix duplicate sysfs directory name + - riscv: fix nommu_k210_sdcard_defconfig + - riscv: fix oops caused by irqsoff latency tracer + - tty: n_gsm: fix encoding of control signal octet bit DV + - tty: n_gsm: fix proper link termination after failed open + - tty: n_gsm: fix NULL pointer access due to DLCI release + - tty: n_gsm: fix wrong tty control line for flow control + - tty: n_gsm: fix wrong modem processing in convergence layer type 2 + - tty: n_gsm: fix deadlock in gsmtty_open() + - pinctrl: fix loop in k210_pinconf_get_drive() + - pinctrl: k210: Fix bias-pull-up + - gpio: tegra186: Fix chip_data type confusion + - memblock: use kfree() to release kmalloced memblock regions + - ice: Fix race conditions between virtchnl handling and VF ndo ops + - ice: fix concurrent reset and removal of VFs + - Linux 5.15.26 + * Jammy update: v5.15.25 upstream stable release (LP: #1963890) + - drm/nouveau/pmu/gm200-: use alternate falcon reset sequence + - fs/proc: task_mmu.c: don't read mapcount for migration entry + - btrfs: zoned: cache reported zone during mount + - HID:Add support for UGTABLET WP5540 + - Revert "svm: Add warning message for AVIC IPI invalid target" + - parisc: Show error if wrong 32/64-bit compiler is being used + - serial: parisc: GSC: fix build when IOSAPIC is not set + - parisc: Drop __init from map_pages declaration + - parisc: Fix data TLB miss in sba_unmap_sg + - parisc: Fix sglist access in ccio-dma.c + - mmc: block: fix read single on recovery logic + - mm: don't try to NUMA-migrate COW pages that have other uses + - HID: amd_sfh: Add illuminance mask to limit ALS max value + - HID: i2c-hid: goodix: Fix a lockdep splat + - HID: amd_sfh: Increase sensor command timeout + - HID: amd_sfh: Correct the structure field name + - PCI: hv: Fix NUMA node assignment when kernel boots with custom NUMA + topology + - parisc: Add ioread64_lo_hi() and iowrite64_lo_hi() + - btrfs: send: in case of IO error log it + - platform/x86: touchscreen_dmi: Add info for the RWC NANOTE P8 AY07J 2-in-1 + - platform/x86: ISST: Fix possible circular locking dependency detected + - kunit: tool: Import missing importlib.abc + - selftests: rtc: Increase test timeout so that all tests run + - kselftest: signal all child processes + - net: ieee802154: at86rf230: Stop leaking skb's + - selftests/zram: Skip max_comp_streams interface on newer kernel + - selftests/zram01.sh: Fix compression ratio calculation + - selftests/zram: Adapt the situation that /dev/zram0 is being used + - selftests: openat2: Print also errno in failure messages + - selftests: openat2: Add missing dependency in Makefile + - selftests: openat2: Skip testcases that fail with EOPNOTSUPP + - selftests: skip mincore.check_file_mmap when fs lacks needed support + - ax25: improve the incomplete fix to avoid UAF and NPD bugs + - pinctrl: bcm63xx: fix unmet dependency on REGMAP for GPIO_REGMAP + - vfs: make freeze_super abort when sync_filesystem returns error + - quota: make dquot_quota_sync return errors from ->sync_fs + - scsi: pm80xx: Fix double completion for SATA devices + - kselftest: Fix vdso_test_abi return status + - scsi: core: Reallocate device's budget map on queue depth change + - scsi: pm8001: Fix use-after-free for aborted TMF sas_task + - scsi: pm8001: Fix use-after-free for aborted SSP/STP sas_task + - drm/amd: Warn users about potential s0ix problems + - nvme: fix a possible use-after-free in controller reset during load + - nvme-tcp: fix possible use-after-free in transport error_recovery work + - nvme-rdma: fix possible use-after-free in transport error_recovery work + - net: sparx5: do not refer to skb after passing it on + - drm/amd: add support to check whether the system is set to s3 + - drm/amd: Only run s3 or s0ix if system is configured properly + - drm/amdgpu: fix logic inversion in check + - x86/Xen: streamline (and fix) PV CPU enumeration + - Revert "module, async: async_synchronize_full() on module init iff async is + used" + - gcc-plugins/stackleak: Use noinstr in favor of notrace + - random: wake up /dev/random writers after zap + - KVM: x86/xen: Fix runstate updates to be atomic when preempting vCPU + - KVM: x86: nSVM/nVMX: set nested_run_pending on VM entry which is a result of + RSM + - KVM: x86: SVM: don't passthrough SMAP/SMEP/PKE bits in !NPT && !gCR0.PG case + - KVM: x86: nSVM: fix potential NULL derefernce on nested migration + - KVM: x86: nSVM: mark vmcb01 as dirty when restoring SMM saved state + - iwlwifi: fix use-after-free + - drm/radeon: Fix backlight control on iMac 12,1 + - drm/atomic: Don't pollute crtc_state->mode_blob with error pointers + - drm/amd/pm: correct the sequence of sending gpu reset msg + - drm/amdgpu: skipping SDMA hw_init and hw_fini for S0ix. + - drm/i915/opregion: check port number bounds for SWSCI display power state + - drm/i915: Fix dbuf slice config lookup + - drm/i915: Fix mbus join config lookup + - vsock: remove vsock from connected table when connect is interrupted by a + signal + - drm/cma-helper: Set VM_DONTEXPAND for mmap + - drm/i915/gvt: Make DRM_I915_GVT depend on X86 + - drm/i915/ttm: tweak priority hint selection + - iwlwifi: pcie: fix locking when "HW not ready" + - iwlwifi: pcie: gen2: fix locking when "HW not ready" + - iwlwifi: mvm: don't send SAR GEO command for 3160 devices + - selftests: netfilter: fix exit value for nft_concat_range + - netfilter: nft_synproxy: unregister hooks on init error path + - selftests: netfilter: disable rp_filter on router + - ipv4: fix data races in fib_alias_hw_flags_set + - ipv6: fix data-race in fib6_info_hw_flags_set / fib6_purge_rt + - ipv6: mcast: use rcu-safe version of ipv6_get_lladdr() + - ipv6: per-netns exclusive flowlabel checks + - Revert "net: ethernet: bgmac: Use devm_platform_ioremap_resource_byname" + - mac80211: mlme: check for null after calling kmemdup + - brcmfmac: firmware: Fix crash in brcm_alt_fw_path + - cfg80211: fix race in netlink owner interface destruction + - net: dsa: lan9303: fix reset on probe + - net: dsa: mv88e6xxx: flush switchdev FDB workqueue before removing VLAN + - net: dsa: lantiq_gswip: fix use after free in gswip_remove() + - net: dsa: lan9303: handle hwaccel VLAN tags + - net: dsa: lan9303: add VLAN IDs to master device + - net: ieee802154: ca8210: Fix lifs/sifs periods + - ping: fix the dif and sdif check in ping_lookup + - bonding: force carrier update when releasing slave + - drop_monitor: fix data-race in dropmon_net_event / trace_napi_poll_hit + - net_sched: add __rcu annotation to netdev->qdisc + - bonding: fix data-races around agg_select_timer + - libsubcmd: Fix use-after-free for realloc(..., 0) + - net/smc: Avoid overwriting the copies of clcsock callback functions + - net: phy: mediatek: remove PHY mode check on MT7531 + - atl1c: fix tx timeout after link flap on Mikrotik 10/25G NIC + - tipc: fix wrong publisher node address in link publications + - dpaa2-switch: fix default return of dpaa2_switch_flower_parse_mirror_key + - dpaa2-eth: Initialize mutex used in one step timestamping path + - net: bridge: multicast: notify switchdev driver whenever MC processing gets + disabled + - perf bpf: Defer freeing string after possible strlen() on it + - selftests/exec: Add non-regular to TEST_GEN_PROGS + - arm64: Correct wrong label in macro __init_el2_gicv3 + - ALSA: usb-audio: revert to IMPLICIT_FB_FIXED_DEV for M-Audio FastTrack Ultra + - ALSA: hda/realtek: Add quirk for Legion Y9000X 2019 + - ALSA: hda/realtek: Fix deadlock by COEF mutex + - ALSA: hda: Fix regression on forced probe mask option + - ALSA: hda: Fix missing codec probe on Shenker Dock 15 + - ASoC: ops: Fix stereo change notifications in snd_soc_put_volsw() + - ASoC: ops: Fix stereo change notifications in snd_soc_put_volsw_range() + - ASoC: ops: Fix stereo change notifications in snd_soc_put_volsw_sx() + - ASoC: ops: Fix stereo change notifications in snd_soc_put_xr_sx() + - cifs: fix set of group SID via NTSD xattrs + - powerpc/603: Fix boot failure with DEBUG_PAGEALLOC and KFENCE + - powerpc/lib/sstep: fix 'ptesync' build error + - mtd: rawnand: gpmi: don't leak PM reference in error path + - smb3: fix snapshot mount option + - tipc: fix wrong notification node addresses + - scsi: ufs: Remove dead code + - scsi: ufs: Fix a deadlock in the error handler + - ASoC: tas2770: Insert post reset delay + - ASoC: qcom: Actually clear DMA interrupt register for HDMI + - block/wbt: fix negative inflight counter when remove scsi device + - NFS: Remove an incorrect revalidation in nfs4_update_changeattr_locked() + - NFS: LOOKUP_DIRECTORY is also ok with symlinks + - NFS: Do not report writeback errors in nfs_getattr() + - tty: n_tty: do not look ahead for EOL character past the end of the buffer + - block: fix surprise removal for drivers calling blk_set_queue_dying + - mtd: rawnand: qcom: Fix clock sequencing in qcom_nandc_probe() + - mtd: parsers: qcom: Fix kernel panic on skipped partition + - mtd: parsers: qcom: Fix missing free for pparts in cleanup + - mtd: phram: Prevent divide by zero bug in phram_setup() + - mtd: rawnand: brcmnand: Fixed incorrect sub-page ECC status + - HID: elo: fix memory leak in elo_probe + - mtd: rawnand: ingenic: Fix missing put_device in ingenic_ecc_get + - Drivers: hv: vmbus: Fix memory leak in vmbus_add_channel_kobj + - KVM: x86/pmu: Refactoring find_arch_event() to pmc_perf_hw_id() + - KVM: x86/pmu: Don't truncate the PerfEvtSeln MSR when creating a perf event + - KVM: x86/pmu: Use AMD64_RAW_EVENT_MASK for PERF_TYPE_RAW + - ARM: OMAP2+: hwmod: Add of_node_put() before break + - ARM: OMAP2+: adjust the location of put_device() call in omapdss_init_of + - phy: usb: Leave some clocks running during suspend + - staging: vc04_services: Fix RCU dereference check + - phy: phy-mtk-tphy: Fix duplicated argument in phy-mtk-tphy + - irqchip/sifive-plic: Add missing thead,c900-plic match string + - x86/bug: Merge annotate_reachable() into _BUG_FLAGS() asm + - netfilter: conntrack: don't refresh sctp entries in closed state + - ksmbd: fix same UniqueId for dot and dotdot entries + - ksmbd: don't align last entry offset in smb2 query directory + - arm64: dts: meson-gx: add ATF BL32 reserved-memory region + - arm64: dts: meson-g12: add ATF BL32 reserved-memory region + - arm64: dts: meson-g12: drop BL32 region from SEI510/SEI610 + - pidfd: fix test failure due to stack overflow on some arches + - selftests: fixup build warnings in pidfd / clone3 tests + - mm: io_uring: allow oom-killer from io_uring_setup + - kconfig: let 'shell' return enough output for deep path names + - ata: libata-core: Disable TRIM on M88V29 + - soc: aspeed: lpc-ctrl: Block error printing on probe defer cases + - xprtrdma: fix pointer derefs in error cases of rpcrdma_ep_create + - drm/rockchip: dw_hdmi: Do not leave clock enabled in error case + - tracing: Fix tp_printk option related with tp_printk_stop_on_boot + - display/amd: decrease message verbosity about watermarks table failure + - drm/amd/display: Cap pflip irqs per max otg number + - drm/amd/display: fix yellow carp wm clamping + - net: usb: qmi_wwan: Add support for Dell DW5829e + - net: macb: Align the dma and coherent dma masks + - kconfig: fix failing to generate auto.conf + - scsi: lpfc: Fix pt2pt NVMe PRLI reject LOGO loop + - EDAC: Fix calculation of returned address and next offset in + edac_align_ptr() + - ucounts: Handle wrapping in is_ucounts_overlimit + - ucounts: In set_cred_ucounts assume new->ucounts is non-NULL + - ucounts: Base set_cred_ucounts changes on the real user + - ucounts: Enforce RLIMIT_NPROC not RLIMIT_NPROC+1 + - lib/iov_iter: initialize "flags" in new pipe_buffer + - rlimit: Fix RLIMIT_NPROC enforcement failure caused by capability calls in + set_user + - ucounts: Move RLIMIT_NPROC handling after set_user + - net: sched: limit TC_ACT_REPEAT loops + - dmaengine: sh: rcar-dmac: Check for error num after setting mask + - dmaengine: stm32-dmamux: Fix PM disable depth imbalance in + stm32_dmamux_probe + - dmaengine: sh: rcar-dmac: Check for error num after dma_set_max_seg_size + - tests: fix idmapped mount_setattr test + - i2c: qcom-cci: don't delete an unregistered adapter + - i2c: qcom-cci: don't put a device tree node before i2c_add_adapter() + - dmaengine: ptdma: Fix the error handling path in pt_core_init() + - copy_process(): Move fd_install() out of sighand->siglock critical section + - scsi: qedi: Fix ABBA deadlock in qedi_process_tmf_resp() and + qedi_process_cmd_cleanup_resp() + - ice: enable parsing IPSEC SPI headers for RSS + - i2c: brcmstb: fix support for DSL and CM variants + - lockdep: Correct lock_classes index mapping + - Linux 5.15.25 + * Jammy update: v5.15.24 upstream stable release (LP: #1963889) + - integrity: check the return value of audit_log_start() + - ima: fix reference leak in asymmetric_verify() + - ima: Remove ima_policy file before directory + - ima: Allow template selection with ima_template[_fmt]= after ima_hash= + - ima: Do not print policy rule with inactive LSM labels + - mmc: sdhci-of-esdhc: Check for error num after setting mask + - mmc: core: Wait for command setting 'Power Off Notification' bit to complete + - can: isotp: fix potential CAN frame reception race in isotp_rcv() + - can: isotp: fix error path in isotp_sendmsg() to unlock wait queue + - net: phy: marvell: Fix RGMII Tx/Rx delays setting in 88e1121-compatible PHYs + - net: phy: marvell: Fix MDI-x polarity setting in 88e1118-compatible PHYs + - NFS: Fix initialisation of nfs_client cl_flags field + - NFSD: Fix NFSv3 SETATTR/CREATE's handling of large file sizes + - NFSD: Fix ia_size underflow + - NFSD: Clamp WRITE offsets + - NFSD: Fix offset type in I/O trace points + - NFSD: Fix the behavior of READ near OFFSET_MAX + - thermal/drivers/int340x: Improve the tcc offset saving for suspend/resume + - thermal/drivers/int340x: processor_thermal: Suppot 64 bit RFIM responses + - thermal: int340x: Limit Kconfig to 64-bit + - thermal/drivers/int340x: Fix RFIM mailbox write commands + - tracing: Propagate is_signed to expression + - NFS: change nfs_access_get_cached to only report the mask + - NFSv4 only print the label when its queried + - nfs: nfs4clinet: check the return value of kstrdup() + - NFSv4.1: Fix uninitialised variable in devicenotify + - NFSv4 remove zero number of fs_locations entries error check + - NFSv4 store server support for fs_location attribute + - NFSv4.1 query for fs_location attr on a new file system + - NFSv4 expose nfs_parse_server_name function + - NFSv4 handle port presence in fs_location server string + - SUNRPC allow for unspecified transport time in rpc_clnt_add_xprt + - net/sunrpc: fix reference count leaks in rpc_sysfs_xprt_state_change + - sunrpc: Fix potential race conditions in rpc_sysfs_xprt_state_change() + - irqchip/realtek-rtl: Service all pending interrupts + - perf/x86/rapl: fix AMD event handling + - x86/perf: Avoid warning for Arch LBR without XSAVE + - sched: Avoid double preemption in __cond_resched_*lock*() + - drm/vc4: Fix deadlock on DSI device attach error + - drm: panel-orientation-quirks: Add quirk for the 1Netbook OneXPlayer + - net: sched: Clarify error message when qdisc kind is unknown + - powerpc/fixmap: Fix VM debug warning on unmap + - scsi: target: iscsi: Make sure the np under each tpg is unique + - scsi: ufs: ufshcd-pltfrm: Check the return value of devm_kstrdup() + - scsi: qedf: Add stag_work to all the vports + - scsi: qedf: Fix refcount issue when LOGO is received during TMF + - scsi: qedf: Change context reset messages to ratelimited + - scsi: pm8001: Fix bogus FW crash for maxcpus=1 + - scsi: ufs: Use generic error code in ufshcd_set_dev_pwr_mode() + - scsi: ufs: Treat link loss as fatal error + - scsi: myrs: Fix crash in error case + - net: stmmac: reduce unnecessary wakeups from eee sw timer + - PM: hibernate: Remove register_nosave_region_late() + - drm/amd/display: Correct MPC split policy for DCN301 + - usb: dwc2: gadget: don't try to disable ep0 in dwc2_hsotg_suspend + - perf: Always wake the parent event + - nvme-pci: add the IGNORE_DEV_SUBNQN quirk for Intel P4500/P4600 SSDs + - MIPS: Fix build error due to PTR used in more places + - net: stmmac: dwmac-sun8i: use return val of readl_poll_timeout() + - KVM: eventfd: Fix false positive RCU usage warning + - KVM: nVMX: eVMCS: Filter out VM_EXIT_SAVE_VMX_PREEMPTION_TIMER + - KVM: nVMX: Also filter MSR_IA32_VMX_TRUE_PINBASED_CTLS when eVMCS + - KVM: SVM: Don't kill SEV guest if SMAP erratum triggers in usermode + - KVM: VMX: Set vmcs.PENDING_DBG.BS on #DB in STI/MOVSS blocking shadow + - KVM: x86: Report deprecated x87 features in supported CPUID + - riscv: fix build with binutils 2.38 + - riscv: cpu-hotplug: clear cpu from numa map when teardown + - riscv: eliminate unreliable __builtin_frame_address(1) + - gfs2: Fix gfs2_release for non-writers regression + - ARM: dts: imx23-evk: Remove MX23_PAD_SSP1_DETECT from hog group + - ARM: dts: Fix boot regression on Skomer + - ARM: socfpga: fix missing RESET_CONTROLLER + - nvme-tcp: fix bogus request completion when failing to send AER + - ACPI/IORT: Check node revision for PMCG resources + - PM: s2idle: ACPI: Fix wakeup interrupts handling + - drm/amdgpu/display: change pipe policy for DCN 2.0 + - drm/rockchip: vop: Correct RK3399 VOP register fields + - drm/i915: Allow !join_mbus cases for adlp+ dbuf configuration + - drm/i915: Populate pipe dbuf slices more accurately during readout + - ARM: dts: Fix timer regression for beagleboard revision c + - ARM: dts: meson: Fix the UART compatible strings + - ARM: dts: meson8: Fix the UART device-tree schema validation + - ARM: dts: meson8b: Fix the UART device-tree schema validation + - phy: broadcom: Kconfig: Fix PHY_BRCM_USB config option + - staging: fbtft: Fix error path in fbtft_driver_module_init() + - ARM: dts: imx6qdl-udoo: Properly describe the SD card detect + - phy: xilinx: zynqmp: Fix bus width setting for SGMII + - phy: stm32: fix a refcount leak in stm32_usbphyc_pll_enable() + - ARM: dts: imx7ulp: Fix 'assigned-clocks-parents' typo + - arm64: dts: imx8mq: fix mipi_csi bidirectional port numbers + - usb: f_fs: Fix use-after-free for epfile + - phy: dphy: Correct clk_pre parameter + - gpio: aggregator: Fix calling into sleeping GPIO controllers + - NFS: Don't overfill uncached readdir pages + - NFS: Don't skip directory entries when doing uncached readdir + - drm/vc4: hdmi: Allow DBLCLK modes even if horz timing is odd. + - misc: fastrpc: avoid double fput() on failed usercopy + - net: sparx5: Fix get_stat64 crash in tcpdump + - netfilter: ctnetlink: disable helper autoassign + - arm64: dts: meson-g12b-odroid-n2: fix typo 'dio2133' + - arm64: dts: meson-sm1-odroid: use correct enable-gpio pin for tf-io + regulator + - arm64: dts: meson-sm1-bananapi-m5: fix wrong GPIO domain for GPIOE_2 + - arm64: dts: meson-sm1-odroid: fix boot loop after reboot + - ixgbevf: Require large buffers for build_skb on 82599VF + - drm/panel: simple: Assign data from panel_dpi_probe() correctly + - ACPI: PM: s2idle: Cancel wakeup before dispatching EC GPE + - gpiolib: Never return internal error codes to user space + - gpio: sifive: use the correct register to read output values + - fbcon: Avoid 'cap' set but not used warning + - bonding: pair enable_port with slave_arr_updates + - net: dsa: mv88e6xxx: don't use devres for mdiobus + - net: dsa: ar9331: register the mdiobus under devres + - net: dsa: bcm_sf2: don't use devres for mdiobus + - net: dsa: felix: don't use devres for mdiobus + - net: dsa: mt7530: fix kernel bug in mdiobus_free() when unbinding + - net: dsa: lantiq_gswip: don't use devres for mdiobus + - ipmr,ip6mr: acquire RTNL before calling ip[6]mr_free_table() on failure path + - nfp: flower: fix ida_idx not being released + - net: do not keep the dst cache when uncloning an skb dst and its metadata + - net: fix a memleak when uncloning an skb dst and its metadata + - veth: fix races around rq->rx_notify_masked + - net: mdio: aspeed: Add missing MODULE_DEVICE_TABLE + - tipc: rate limit warning for received illegal binding update + - net: amd-xgbe: disable interrupts during pci removal + - drm/amd/pm: fix hwmon node of power1_label create issue + - mptcp: netlink: process IPv6 addrs in creating listening sockets + - dpaa2-eth: unregister the netdev before disconnecting from the PHY + - ice: fix an error code in ice_cfg_phy_fec() + - ice: fix IPIP and SIT TSO offload + - ice: Fix KASAN error in LAG NETDEV_UNREGISTER handler + - ice: Avoid RTNL lock when re-creating auxiliary device + - net: mscc: ocelot: fix mutex lock error during ethtool stats read + - net: dsa: mv88e6xxx: fix use-after-free in mv88e6xxx_mdios_unregister + - vt_ioctl: fix array_index_nospec in vt_setactivate + - vt_ioctl: add array_index_nospec to VT_ACTIVATE + - n_tty: wake up poll(POLLRDNORM) on receiving data + - eeprom: ee1004: limit i2c reads to I2C_SMBUS_BLOCK_MAX + - usb: dwc2: drd: fix soft connect when gadget is unconfigured + - Revert "usb: dwc2: drd: fix soft connect when gadget is unconfigured" + - net: usb: ax88179_178a: Fix out-of-bounds accesses in RX fixup + - usb: ulpi: Move of_node_put to ulpi_dev_release + - usb: ulpi: Call of_node_put correctly + - usb: dwc3: gadget: Prevent core from processing stale TRBs + - usb: gadget: udc: renesas_usb3: Fix host to USB_ROLE_NONE transition + - USB: gadget: validate interface OS descriptor requests + - usb: gadget: rndis: check size of RNDIS_MSG_SET command + - usb: gadget: f_uac2: Define specific wTerminalType + - usb: raw-gadget: fix handling of dual-direction-capable endpoints + - USB: serial: ftdi_sio: add support for Brainboxes US-159/235/320 + - USB: serial: option: add ZTE MF286D modem + - USB: serial: ch341: add support for GW Instek USB2.0-Serial devices + - USB: serial: cp210x: add NCR Retail IO box id + - USB: serial: cp210x: add CPI Bulk Coin Recycler id + - speakup-dectlk: Restore pitch setting + - phy: ti: Fix missing sentinel for clk_div_table + - iio: buffer: Fix file related error handling in IIO_BUFFER_GET_FD_IOCTL + - mm: memcg: synchronize objcg lists with a dedicated spinlock + - seccomp: Invalidate seccomp mode to catch death failures + - signal: HANDLER_EXIT should clear SIGNAL_UNKILLABLE + - s390/cio: verify the driver availability for path_event call + - bus: mhi: pci_generic: Add mru_default for Foxconn SDX55 + - bus: mhi: pci_generic: Add mru_default for Cinterion MV31-W + - hwmon: (dell-smm) Speed up setting of fan speed + - x86/sgx: Silence softlockup detection when releasing large enclaves + - Makefile.extrawarn: Move -Wunaligned-access to W=1 + - scsi: lpfc: Remove NVMe support if kernel has NVME_FC disabled + - scsi: lpfc: Reduce log messages seen after firmware download + - MIPS: octeon: Fix missed PTR->PTR_WD conversion + - arm64: dts: imx8mq: fix lcdif port node + - perf: Fix list corruption in perf_cgroup_switch() + - iommu: Fix potential use-after-free during probe + - Linux 5.15.24 + * Jammy update: v5.15.23 upstream stable release (LP: #1963888) + - moxart: fix potential use-after-free on remove path + - arm64: Add Cortex-A510 CPU part definition + - ksmbd: fix SMB 3.11 posix extension mount failure + - crypto: api - Move cryptomgr soft dependency into algapi + - Linux 5.15.23 + * [22.04 FEAT] KVM: Enable storage key checking for intercepted instruction + handled by userspace (LP: #1933179) + - KVM: s390: gaccess: Refactor gpa and length calculation + - KVM: s390: gaccess: Refactor access address range check + - KVM: s390: gaccess: Cleanup access to guest pages + - s390/uaccess: introduce bit field for OAC specifier + - s390/uaccess: fix compile error + - s390/uaccess: Add copy_from/to_user_key functions + - KVM: s390: Honor storage keys when accessing guest memory + - KVM: s390: handle_tprot: Honor storage keys + - KVM: s390: selftests: Test TEST PROTECTION emulation + - KVM: s390: Add optional storage key checking to MEMOP IOCTL + - KVM: s390: Add vm IOCTL for key checked guest absolute memory access + - KVM: s390: Rename existing vcpu memop functions + - KVM: s390: Add capability for storage key extension of MEM_OP IOCTL + - KVM: s390: Update api documentation for memop ioctl + - KVM: s390: Clarify key argument for MEM_OP in api docs + - KVM: s390: Add missing vm MEM_OP size check + * CVE-2022-25636 + - netfilter: nf_tables_offload: incorrect flow offload action array size + * ubuntu_kernel_selftests / ftrace:ftracetest do_softirq failure on Jammy + realtime (LP: #1959610) + - selftests/ftrace: Do not trace do_softirq because of PREEMPT_RT + * CVE-2022-0435 + - tipc: improve size validations for received domain records + * CVE-2022-0516 + - KVM: s390: Return error on SIDA memop on normal guest + * EDAC update for AMD Genoa support in 22.04 (LP: #1960362) + - EDAC: Add RDDR5 and LRDDR5 memory types + - EDAC/amd64: Add support for AMD Family 19h Models 10h-1Fh and A0h-AFh + * hwmon: k10temp updates for AMD Genoa in 22.04 (LP: #1960361) + - x86/amd_nb: Add AMD Family 19h Models (10h-1Fh) and (A0h-AFh) PCI IDs + - hwmon: (k10temp) Remove unused definitions + - hwmon: (k10temp) Support up to 12 CCDs on AMD Family of processors + - hwmon: (k10temp) Add support for AMD Family 19h Models 10h-1Fh and A0h-AFh + * [SRU][I/J/OEM-5.13/OEM-5.14] Add basic support of MT7922 (LP: #1958151) + - mt76: mt7921: Add mt7922 support + - mt76: mt7921: add support for PCIe ID 0x0608/0x0616 + - mt76: mt7921: introduce 160 MHz channel bandwidth support + * Use EC GPE for s2idle wakeup on AMD platforms (LP: #1960771) + - ACPI: PM: Revert "Only mark EC GPE for wakeup on Intel systems" + * Update Broadcom Emulex FC HBA lpfc driver to 14.0.0.4 for Ubuntu 22.04 + (LP: #1956982) + - scsi: lpfc: Change return code on I/Os received during link bounce + - scsi: lpfc: Fix NPIV port deletion crash + - scsi: lpfc: Adjust CMF total bytes and rxmonitor + - scsi: lpfc: Cap CMF read bytes to MBPI + - scsi: lpfc: Add additional debugfs support for CMF + - scsi: lpfc: Update lpfc version to 14.0.0.4 + * Forward-port drm/i915 commits from oem-5.14 for Alder Lake S & P + (LP: #1960298) + - drm/i915/dmc: Update to DMC v2.12 + - drm/i915/adlp/tc: Fix PHY connected check for Thunderbolt mode + - drm/i915/tc: Remove waiting for PHY complete during releasing ownership + - drm/i915/tc: Check for DP-alt, legacy sinks before taking PHY ownership + - drm/i915/tc: Add/use helpers to retrieve TypeC port properties + - drm/i915/tc: Don't keep legacy TypeC ports in connected state w/o a sink + - drm/i915/tc: Add a mode for the TypeC PHY's disconnected state + - drm/i915/tc: Refactor TC-cold block/unblock helpers + - drm/i915/tc: Avoid using legacy AUX PW in TBT mode + - drm/i915/icl/tc: Remove the ICL special casing during TC-cold blocking + - drm/i915/tc: Fix TypeC PHY connect/disconnect logic on ADL-P + - drm/i915/tc: Drop extra TC cold blocking from intel_tc_port_connected() + - drm/i915/tc: Fix system hang on ADL-P during TypeC PHY disconnect + - drm/i915/display/adlp: Disable underrun recovery + - drm/i915/adl_s: Remove require_force_probe protection + - drm/i915/adlp: Remove require_force_probe protection + * INVALID or PRIVATE BUG (LP: #1959735) + - KVM: s390: Simplify SIGP Set Arch handling + - KVM: s390: Add a routine for setting userspace CPU state + * Include the QCA WCN 6856 v2.1 support (LP: #1954938) + - SAUCE: ath11k: shrink TCSR read mask for WCN6855 hw2.1 + * Jammy update: v5.15.22 upstream stable release (LP: #1960516) + - drm/i915: Disable DSB usage for now + - selinux: fix double free of cond_list on error paths + - audit: improve audit queue handling when "audit=1" on cmdline + - ipc/sem: do not sleep with a spin lock held + - spi: stm32-qspi: Update spi registering + - ASoC: hdmi-codec: Fix OOB memory accesses + - ASoC: ops: Reject out of bounds values in snd_soc_put_volsw() + - ASoC: ops: Reject out of bounds values in snd_soc_put_volsw_sx() + - ASoC: ops: Reject out of bounds values in snd_soc_put_xr_sx() + - ALSA: usb-audio: Correct quirk for VF0770 + - ALSA: hda: Fix UAF of leds class devs at unbinding + - ALSA: hda: realtek: Fix race at concurrent COEF updates + - ALSA: hda/realtek: Add quirk for ASUS GU603 + - ALSA: hda/realtek: Add missing fixup-model entry for Gigabyte X570 ALC1220 + quirks + - ALSA: hda/realtek: Fix silent output on Gigabyte X570S Aorus Master (newer + chipset) + - ALSA: hda/realtek: Fix silent output on Gigabyte X570 Aorus Xtreme after + reboot from Windows + - btrfs: don't start transaction for scrub if the fs is mounted read-only + - btrfs: fix deadlock between quota disable and qgroup rescan worker + - btrfs: fix use-after-free after failure to create a snapshot + - Revert "fs/9p: search open fids first" + - drm/nouveau: fix off by one in BIOS boundary checking + - drm/i915/adlp: Fix TypeC PHY-ready status readout + - drm/amd/pm: correct the MGpuFanBoost support for Beige Goby + - drm/amd/display: watermark latencies is not enough on DCN31 + - drm/amd/display: Force link_rate as LINK_RATE_RBR2 for 2018 15" Apple Retina + panels + - nvme-fabrics: fix state check in nvmf_ctlr_matches_baseopts() + - mm/debug_vm_pgtable: remove pte entry from the page table + - mm/pgtable: define pte_index so that preprocessor could recognize it + - mm/kmemleak: avoid scanning potential huge holes + - block: bio-integrity: Advance seed correctly for larger interval sizes + - dma-buf: heaps: Fix potential spectre v1 gadget + - IB/hfi1: Fix AIP early init panic + - Revert "fbcon: Disable accelerated scrolling" + - fbcon: Add option to enable legacy hardware acceleration + - mptcp: fix msk traversal in mptcp_nl_cmd_set_flags() + - Revert "ASoC: mediatek: Check for error clk pointer" + - KVM: arm64: Avoid consuming a stale esr value when SError occur + - KVM: arm64: Stop handle_exit() from handling HVC twice when an SError occurs + - RDMA/cma: Use correct address when leaving multicast group + - RDMA/ucma: Protect mc during concurrent multicast leaves + - RDMA/siw: Fix refcounting leak in siw_create_qp() + - IB/rdmavt: Validate remote_addr during loopback atomic tests + - RDMA/siw: Fix broken RDMA Read Fence/Resume logic. + - RDMA/mlx4: Don't continue event handler after memory allocation failure + - ALSA: usb-audio: initialize variables that could ignore errors + - ALSA: hda: Fix signedness of sscanf() arguments + - ALSA: hda: Skip codec shutdown in case the codec is not registered + - iommu/vt-d: Fix potential memory leak in intel_setup_irq_remapping() + - iommu/amd: Fix loop timeout issue in iommu_ga_log_enable() + - spi: bcm-qspi: check for valid cs before applying chip select + - spi: mediatek: Avoid NULL pointer crash in interrupt + - spi: meson-spicc: add IRQ check in meson_spicc_probe + - spi: uniphier: fix reference count leak in uniphier_spi_probe() + - IB/hfi1: Fix tstats alloc and dealloc + - IB/cm: Release previously acquired reference counter in the cm_id_priv + - net: ieee802154: hwsim: Ensure proper channel selection at probe time + - net: ieee802154: mcr20a: Fix lifs/sifs periods + - net: ieee802154: ca8210: Stop leaking skb's + - netfilter: nft_reject_bridge: Fix for missing reply from prerouting + - net: ieee802154: Return meaningful error codes from the netlink helpers + - net/smc: Forward wakeup to smc socket waitqueue after fallback + - net: stmmac: dwmac-visconti: No change to ETHER_CLOCK_SEL for unexpected + speed request. + - net: stmmac: properly handle with runtime pm in stmmac_dvr_remove() + - net: macsec: Fix offload support for NETDEV_UNREGISTER event + - net: macsec: Verify that send_sci is on when setting Tx sci explicitly + - net: stmmac: dump gmac4 DMA registers correctly + - net: stmmac: ensure PTP time register reads are consistent + - drm/kmb: Fix for build errors with Warray-bounds + - drm/i915/overlay: Prevent divide by zero bugs in scaling + - drm/amd: avoid suspend on dGPUs w/ s2idle support when runtime PM enabled + - ASoC: fsl: Add missing error handling in pcm030_fabric_probe + - ASoC: xilinx: xlnx_formatter_pcm: Make buffer bytes multiple of period bytes + - ASoC: simple-card: fix probe failure on platform component + - ASoC: cpcap: Check for NULL pointer after calling of_get_child_by_name + - ASoC: max9759: fix underflow in speaker_gain_control_put() + - ASoC: codecs: wcd938x: fix incorrect used of portid + - ASoC: codecs: lpass-rx-macro: fix sidetone register offsets + - ASoC: codecs: wcd938x: fix return value of mixer put function + - pinctrl: sunxi: Fix H616 I2S3 pin data + - pinctrl: intel: Fix a glitch when updating IRQ flags on a preconfigured line + - pinctrl: intel: fix unexpected interrupt + - pinctrl: bcm2835: Fix a few error paths + - scsi: bnx2fc: Make bnx2fc_recv_frame() mp safe + - nfsd: nfsd4_setclientid_confirm mistakenly expires confirmed client. + - gve: fix the wrong AdminQ buffer queue index check + - bpf: Use VM_MAP instead of VM_ALLOC for ringbuf + - selftests/exec: Remove pipe from TEST_GEN_FILES + - selftests: futex: Use variable MAKE instead of make + - tools/resolve_btfids: Do not print any commands when building silently + - e1000e: Separate ADP board type from TGP + - rtc: cmos: Evaluate century appropriate + - kvm: add guest_state_{enter,exit}_irqoff() + - kvm/arm64: rework guest entry logic + - perf: Copy perf_event_attr::sig_data on modification + - perf stat: Fix display of grouped aliased events + - perf/x86/intel/pt: Fix crash with stop filters in single-range mode + - x86/perf: Default set FREEZE_ON_SMI for all + - EDAC/altera: Fix deferred probing + - EDAC/xgene: Fix deferred probing + - ext4: prevent used blocks from being allocated during fast commit replay + - ext4: modify the logic of ext4_mb_new_blocks_simple + - ext4: fix error handling in ext4_restore_inline_data() + - ext4: fix error handling in ext4_fc_record_modified_inode() + - ext4: fix incorrect type issue during replay_del_range + - net: dsa: mt7530: make NET_DSA_MT7530 select MEDIATEK_GE_PHY + - cgroup/cpuset: Fix "suspicious RCU usage" lockdep warning + - tools include UAPI: Sync sound/asound.h copy with the kernel sources + - gpio: idt3243x: Fix an ignored error return from platform_get_irq() + - gpio: mpc8xxx: Fix an ignored error return from platform_get_irq() + - selftests: nft_concat_range: add test for reload with no element add/del + - selftests: netfilter: check stateless nat udp checksum fixup + - Linux 5.15.22 + - [Config] disable FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION + * Jammy update: v5.15.21 upstream stable release (LP: #1960515) + - Revert "drm/vc4: hdmi: Make sure the device is powered with CEC" + - Revert "drm/vc4: hdmi: Make sure the device is powered with CEC" again + - Linux 5.15.21 + * Jammy update: v5.15.20 upstream stable release (LP: #1960509) + - Revert "UBUNTU: SAUCE: Revert "e1000e: Add handshake with the CSME to + support S0ix"" + - Revert "UBUNTU: SAUCE: Revert "e1000e: Add polling mechanism to indicate + CSME DPG exit"" + - Revert "UBUNTU: SAUCE: Revert "e1000e: Additional PHY power saving in S0ix"" + - PCI: pciehp: Fix infinite loop in IRQ handler upon power fault + - selftests: mptcp: fix ipv6 routing setup + - net: ipa: use a bitmap for endpoint replenish_enabled + - net: ipa: prevent concurrent replenish + - drm/vc4: hdmi: Make sure the device is powered with CEC + - cgroup-v1: Require capabilities to set release_agent + - Revert "mm/gup: small refactoring: simplify try_grab_page()" + - ovl: don't fail copy up if no fileattr support on upper + - lockd: fix server crash on reboot of client holding lock + - lockd: fix failure to cleanup client locks + - net/mlx5e: IPsec: Fix tunnel mode crypto offload for non TCP/UDP traffic + - net/mlx5: Bridge, take rtnl lock in init error handler + - net/mlx5: Bridge, ensure dev_name is null-terminated + - net/mlx5e: Fix handling of wrong devices during bond netevent + - net/mlx5: Use del_timer_sync in fw reset flow of halting poll + - net/mlx5e: Fix module EEPROM query + - net/mlx5: Fix offloading with ESWITCH_IPV4_TTL_MODIFY_ENABLE + - net/mlx5e: Don't treat small ceil values as unlimited in HTB offload + - net/mlx5: Bridge, Fix devlink deadlock on net namespace deletion + - net/mlx5: E-Switch, Fix uninitialized variable modact + - ipheth: fix EOVERFLOW in ipheth_rcvbulk_callback + - i40e: Fix reset bw limit when DCB enabled with 1 TC + - i40e: Fix reset path while removing the driver + - net: amd-xgbe: ensure to reset the tx_timer_active flag + - net: amd-xgbe: Fix skb data length underflow + - fanotify: Fix stale file descriptor in copy_event_to_user() + - net: sched: fix use-after-free in tc_new_tfilter() + - rtnetlink: make sure to refresh master_dev/m_ops in __rtnl_newlink() + - cpuset: Fix the bug that subpart_cpus updated wrongly in update_cpumask() + - e1000e: Handshake with CSME starts from ADL platforms + - af_packet: fix data-race in packet_setsockopt / packet_setsockopt + - tcp: add missing tcp_skb_can_collapse() test in tcp_shift_skb_data() + - ovl: fix NULL pointer dereference in copy up warning + - Linux 5.15.20 + * Miscellaneous Ubuntu changes + - [Packaging] use default zstd compression + - [Packaging] do not use compression for image packages + - [Packaging] use xz compression for ddebs + - [Config] upgrade debug symbols from DWARF4 to DWARF5 + - SAUCE: Makefile: Remove inclusion of lbm header files + - SAUCE: Makefile: Fix compiler warnings + - SAUCE: AUFS + - SAUCE: aufs: switch to 64-bit ino_t for s390x + - [Config] set AUFS as disabled + - SAUCE: mt76: mt7921e: fix possible probe failure after reboot + - Remove ubuntu/hio driver + - SAUCE: ima_policy: fix test for empty rule set + - SAUCE: sfc: The size of the RX recycle ring should be more flexible + - [Config] MITIGATE_SPECTRE_BRANCH_HISTORY=y && HARDEN_BRANCH_HISTORY=y + * Miscellaneous upstream changes + - kbuild: Unify options for BTF generation for vmlinux and modules + - MAINTAINERS: Add scripts/pahole-flags.sh to BPF section + - kbuild: Add CONFIG_PAHOLE_VERSION + - scripts/pahole-flags.sh: Use pahole-version.sh + - lib/Kconfig.debug: Use CONFIG_PAHOLE_VERSION + - lib/Kconfig.debug: Allow BTF + DWARF5 with pahole 1.21+ + - x86/sched: Decrease further the priorities of SMT siblings + - sched/topology: Introduce sched_group::flags + - sched/fair: Optimize checking for group_asym_packing + - sched/fair: Provide update_sg_lb_stats() with sched domain statistics + - sched/fair: Carve out logic to mark a group for asymmetric packing + - sched/fair: Consider SMT in ASYM_PACKING load balance + - Revert "UBUNTU: [Config] x86-64: SYSFB_SIMPLEFB=y" + + [ Ubuntu: 5.15.0-22.22 ] + + * jammy/linux: 5.15.0-22.22 -proposed tracker (LP: #1960290) + + -- Tim Gardner Mon, 21 Mar 2022 11:57:03 -0600 + +linux-azure (5.15.0-1001.2) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1001.2 -proposed tracker (LP: #1960267) + + * Add sunrpc module parameters for NFSv3 nconnect (LP: #1958990) + - SAUCE: Add sunrpc module parameters for NFSv3 nconnect + + * MANA updates (LP: #1959012) + - net: mana: Add RX fencing + - net: mana: Fix memory leak in mana_hwc_create_wq + + * Miscellaneous Ubuntu changes + - [Config] azure: CONFIG_FB_EFI=y for arm64 + - [Packaging] azure: Update dependency of pahole / dwarves + + [ Ubuntu: 5.15.0-21.21 ] + + * jammy/linux: 5.15.0-21.21 -proposed tracker (LP: #1960211) + * Miscellaneous Ubuntu changes + - [packaging] unhook lowlatency flavours from the build + + [ Ubuntu: 5.15.0-20.20 ] + + * jammy/linux: 5.15.0-20.20 -proposed tracker (LP: #1959881) + * Jammy update: v5.15.19 upstream stable release (LP: #1959879) + - can: m_can: m_can_fifo_{read,write}: don't read or write from/to FIFO if + length is 0 + - net: sfp: ignore disabled SFP node + - net: stmmac: configure PTP clock source prior to PTP initialization + - net: stmmac: skip only stmmac_ptp_register when resume from suspend + - ARM: 9179/1: uaccess: avoid alignment faults in + copy_[from|to]_kernel_nofault + - ARM: 9180/1: Thumb2: align ALT_UP() sections in modules sufficiently + - KVM: arm64: Use shadow SPSR_EL1 when injecting exceptions on !VHE + - s390/hypfs: include z/VM guests with access control group set + - s390/nmi: handle guarded storage validity failures for KVM guests + - s390/nmi: handle vector validity failures for KVM guests + - bpf: Guard against accessing NULL pt_regs in bpf_get_task_stack() + - powerpc32/bpf: Fix codegen for bpf-to-bpf calls + - powerpc/bpf: Update ldimm64 instructions during extra pass + - scsi: zfcp: Fix failed recovery on gone remote port with non-NPIV FCP + devices + - udf: Restore i_lenAlloc when inode expansion fails + - udf: Fix NULL ptr deref when converting from inline format + - efi: runtime: avoid EFIv2 runtime services on Apple x86 machines + - PM: wakeup: simplify the output logic of pm_show_wakelocks() + - tracing/histogram: Fix a potential memory leak for kstrdup() + - tracing: Don't inc err_log entry count if entry allocation fails + - ceph: properly put ceph_string reference after async create attempt + - ceph: set pool_ns in new inode layout for async creates + - fsnotify: fix fsnotify hooks in pseudo filesystems + - Revert "KVM: SVM: avoid infinite loop on NPF from bad address" + - psi: Fix uaf issue when psi trigger is destroyed while being polled + - powerpc/audit: Fix syscall_get_arch() + - perf/x86/intel/uncore: Fix CAS_COUNT_WRITE issue for ICX + - perf/x86/intel: Add a quirk for the calculation of the number of counters on + Alder Lake + - drm/etnaviv: relax submit size limits + - drm/atomic: Add the crtc to affected crtc only if uapi.enable = true + - drm/amd/display: Fix FP start/end for dcn30_internal_validate_bw. + - KVM: LAPIC: Also cancel preemption timer during SET_LAPIC + - KVM: SVM: Never reject emulation due to SMAP errata for !SEV guests + - KVM: SVM: Don't intercept #GP for SEV guests + - KVM: x86: nSVM: skip eax alignment check for non-SVM instructions + - KVM: x86: Forcibly leave nested virt when SMM state is toggled + - KVM: x86: Keep MSR_IA32_XSS unchanged for INIT + - KVM: x86: Update vCPU's runtime CPUID on write to MSR_IA32_XSS + - KVM: x86: Sync the states size with the XCR0/IA32_XSS at, any time + - KVM: PPC: Book3S HV Nested: Fix nested HFSCR being clobbered with multiple + vCPUs + - dm: revert partial fix for redundant bio-based IO accounting + - block: add bio_start_io_acct_time() to control start_time + - dm: properly fix redundant bio-based IO accounting + - serial: pl011: Fix incorrect rs485 RTS polarity on set_mctrl + - serial: 8250: of: Fix mapped region size when using reg-offset property + - serial: stm32: fix software flow control transfer + - tty: n_gsm: fix SW flow control encoding/handling + - tty: Partially revert the removal of the Cyclades public API + - tty: Add support for Brainboxes UC cards. + - kbuild: remove include/linux/cyclades.h from header file check + - usb-storage: Add unusual-devs entry for VL817 USB-SATA bridge + - usb: xhci-plat: fix crash when suspend if remote wake enable + - usb: common: ulpi: Fix crash in ulpi_match() + - usb: gadget: f_sourcesink: Fix isoc transfer for USB_SPEED_SUPER_PLUS + - usb: cdnsp: Fix segmentation fault in cdns_lost_power function + - usb: dwc3: xilinx: Skip resets and USB3 register settings for USB2.0 mode + - usb: dwc3: xilinx: Fix error handling when getting USB3 PHY + - USB: core: Fix hang in usb_kill_urb by adding memory barriers + - usb: typec: tcpci: don't touch CC line if it's Vconn source + - usb: typec: tcpm: Do not disconnect while receiving VBUS off + - usb: typec: tcpm: Do not disconnect when receiving VSAFE0V + - ucsi_ccg: Check DEV_INT bit only when starting CCG4 + - mm, kasan: use compare-exchange operation to set KASAN page tag + - jbd2: export jbd2_journal_[grab|put]_journal_head + - ocfs2: fix a deadlock when commit trans + - sched/membarrier: Fix membarrier-rseq fence command missing from query + bitmask + - PCI/sysfs: Find shadow ROM before static attribute initialization + - x86/MCE/AMD: Allow thresholding interface updates after init + - x86/cpu: Add Xeon Icelake-D to list of CPUs that support PPIN + - powerpc/32s: Allocate one 256k IBAT instead of two consecutives 128k IBATs + - powerpc/32s: Fix kasan_init_region() for KASAN + - powerpc/32: Fix boot failure with GCC latent entropy plugin + - i40e: Increase delay to 1 s after global EMP reset + - i40e: Fix issue when maximum queues is exceeded + - i40e: Fix queues reservation for XDP + - i40e: Fix for failed to init adminq while VF reset + - i40e: fix unsigned stat widths + - usb: roles: fix include/linux/usb/role.h compile issue + - rpmsg: char: Fix race between the release of rpmsg_ctrldev and cdev + - rpmsg: char: Fix race between the release of rpmsg_eptdev and cdev + - scsi: elx: efct: Don't use GFP_KERNEL under spin lock + - scsi: bnx2fc: Flush destroy_work queue before calling bnx2fc_interface_put() + - ipv6_tunnel: Rate limit warning messages + - ARM: 9170/1: fix panic when kasan and kprobe are enabled + - net: fix information leakage in /proc/net/ptype + - hwmon: (lm90) Mark alert as broken for MAX6646/6647/6649 + - hwmon: (lm90) Mark alert as broken for MAX6680 + - ping: fix the sk_bound_dev_if match in ping_lookup + - ipv4: avoid using shared IP generator for connected sockets + - hwmon: (lm90) Reduce maximum conversion rate for G781 + - NFSv4: Handle case where the lookup of a directory fails + - NFSv4: nfs_atomic_open() can race when looking up a non-regular file + - net-procfs: show net devices bound packet types + - drm/msm: Fix wrong size calculation + - drm/msm/dsi: Fix missing put_device() call in dsi_get_phy + - drm/msm/dsi: invalid parameter check in msm_dsi_phy_enable + - ipv6: annotate accesses to fn->fn_sernum + - NFS: Ensure the server has an up to date ctime before hardlinking + - NFS: Ensure the server has an up to date ctime before renaming + - KVM: arm64: pkvm: Use the mm_ops indirection for cache maintenance + - SUNRPC: Use BIT() macro in rpc_show_xprt_state() + - SUNRPC: Don't dereference xprt->snd_task if it's a cookie + - powerpc64/bpf: Limit 'ldbrx' to processors compliant with ISA v2.06 + - netfilter: conntrack: don't increment invalid counter on NF_REPEAT + - powerpc/64s: Mask SRR0 before checking against the masked NIP + - perf: Fix perf_event_read_local() time + - sched/pelt: Relax the sync of util_sum with util_avg + - net: phy: broadcom: hook up soft_reset for BCM54616S + - net: stmmac: dwmac-visconti: Fix bit definitions for ETHER_CLK_SEL + - net: stmmac: dwmac-visconti: Fix clock configuration for RMII mode + - phylib: fix potential use-after-free + - octeontx2-af: Do not fixup all VF action entries + - octeontx2-af: Fix LBK backpressure id count + - octeontx2-af: Retry until RVU block reset complete + - octeontx2-pf: cn10k: Ensure valid pointers are freed to aura + - octeontx2-af: verify CQ context updates + - octeontx2-af: Increase link credit restore polling timeout + - octeontx2-af: cn10k: Do not enable RPM loopback for LPC interfaces + - octeontx2-pf: Forward error codes to VF + - rxrpc: Adjust retransmission backoff + - efi/libstub: arm64: Fix image check alignment at entry + - io_uring: fix bug in slow unregistering of nodes + - Drivers: hv: balloon: account for vmbus packet header in max_pkt_size + - hwmon: (lm90) Re-enable interrupts after alert clears + - hwmon: (lm90) Mark alert as broken for MAX6654 + - hwmon: (lm90) Fix sysfs and udev notifications + - hwmon: (adt7470) Prevent divide by zero in adt7470_fan_write() + - powerpc/perf: Fix power_pmu_disable to call clear_pmi_irq_pending only if + PMI is pending + - ipv4: fix ip option filtering for locally generated fragments + - ibmvnic: Allow extra failures before disabling + - ibmvnic: init ->running_cap_crqs early + - ibmvnic: don't spin in tasklet + - net/smc: Transitional solution for clcsock race issue + - video: hyperv_fb: Fix validation of screen resolution + - can: tcan4x5x: regmap: fix max register value + - drm/msm/hdmi: Fix missing put_device() call in msm_hdmi_get_phy + - drm/msm/dpu: invalid parameter check in dpu_setup_dspp_pcc + - drm/msm/a6xx: Add missing suspend_count increment + - yam: fix a memory leak in yam_siocdevprivate() + - net: cpsw: Properly initialise struct page_pool_params + - net: hns3: handle empty unknown interrupt for VF + - sch_htb: Fail on unsupported parameters when offload is requested + - Revert "drm/ast: Support 1600x900 with 108MHz PCLK" + - KVM: selftests: Don't skip L2's VMCALL in SMM test for SVM guest + - ceph: put the requests/sessions when it fails to alloc memory + - gve: Fix GFP flags when allocing pages + - Revert "ipv6: Honor all IPv6 PIO Valid Lifetime values" + - net: bridge: vlan: fix single net device option dumping + - ipv4: raw: lock the socket in raw_bind() + - ipv4: tcp: send zero IPID in SYNACK messages + - ipv4: remove sparse error in ip_neigh_gw4() + - net: bridge: vlan: fix memory leak in __allowed_ingress + - Bluetooth: refactor malicious adv data check + - irqchip/realtek-rtl: Map control data to virq + - irqchip/realtek-rtl: Fix off-by-one in routing + - dt-bindings: can: tcan4x5x: fix mram-cfg RX FIFO config + - perf/core: Fix cgroup event list management + - psi: fix "no previous prototype" warnings when CONFIG_CGROUPS=n + - psi: fix "defined but not used" warnings when CONFIG_PROC_FS=n + - usb: dwc3: xilinx: fix uninitialized return value + - usr/include/Makefile: add linux/nfc.h to the compile-test coverage + - fsnotify: invalidate dcache before IN_DELETE event + - block: Fix wrong offset in bio_truncate() + - mtd: rawnand: mpc5121: Remove unused variable in ads5121_select_chip() + - Linux 5.15.19 + * Jammy update: v5.15.18 upstream stable release (LP: #1959878) + - drm/i915: Flush TLBs before releasing backing store + - drm/amd/display: reset dcn31 SMU mailbox on failures + - io_uring: fix not released cached task refs + - bnx2x: Utilize firmware 7.13.21.0 + - bnx2x: Invalidate fastpath HSI version for VFs + - memcg: flush stats only if updated + - memcg: unify memcg stat flushing + - memcg: better bounds on the memcg stats updates + - rcu: Tighten rcu_advance_cbs_nowake() checks + - select: Fix indefinitely sleeping task in poll_schedule_timeout() + - drm/amdgpu: Use correct VIEWPORT_DIMENSION for DCN2 + - arm64/bpf: Remove 128MB limit for BPF JIT programs + - Linux 5.15.18 + * CVE-2022-22942 + - SAUCE: drm/vmwgfx: Fix stale file descriptors on failed usercopy + * CVE-2022-24122 + - ucount: Make get_ucount a safe get_user replacement + * CVE-2022-23222 + - bpf, selftests: Add verifier test for mem_or_null register with offset. + * Miscellaneous Ubuntu changes + - [Config] toolchain version update + * Miscellaneous upstream changes + - s390/module: fix loading modules with a lot of relocations + + [ Ubuntu: 5.15.0-19.19 ] + + * jammy/linux: 5.15.0-19.19 -proposed tracker (LP: #1959418) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + * Jammy update: v5.15.17 upstream stable release (LP: #1959376) + - KVM: x86/mmu: Fix write-protection of PTs mapped by the TDP MMU + - KVM: VMX: switch blocked_vcpu_on_cpu_lock to raw spinlock + - HID: Ignore battery for Elan touchscreen on HP Envy X360 15t-dr100 + - HID: uhid: Fix worker destroying device without any protection + - HID: wacom: Reset expected and received contact counts at the same time + - HID: wacom: Ignore the confidence flag when a touch is removed + - HID: wacom: Avoid using stale array indicies to read contact count + - ALSA: core: Fix SSID quirk lookup for subvendor=0 + - f2fs: fix to do sanity check on inode type during garbage collection + - f2fs: fix to do sanity check in is_alive() + - f2fs: avoid EINVAL by SBI_NEED_FSCK when pinning a file + - nfc: llcp: fix NULL error pointer dereference on sendmsg() after failed + bind() + - mtd: rawnand: gpmi: Add ERR007117 protection for nfc_apply_timings + - mtd: rawnand: gpmi: Remove explicit default gpmi clock setting for i.MX6 + - mtd: Fixed breaking list in __mtd_del_partition. + - mtd: rawnand: davinci: Don't calculate ECC when reading page + - mtd: rawnand: davinci: Avoid duplicated page read + - mtd: rawnand: davinci: Rewrite function description + - mtd: rawnand: Export nand_read_page_hwecc_oob_first() + - mtd: rawnand: ingenic: JZ4740 needs 'oob_first' read page function + - riscv: Get rid of MAXPHYSMEM configs + - RISC-V: Use common riscv_cpuid_to_hartid_mask() for both SMP=y and SMP=n + - riscv: try to allocate crashkern region from 32bit addressible memory + - riscv: Don't use va_pa_offset on kdump + - riscv: use hart id instead of cpu id on machine_kexec + - riscv: mm: fix wrong phys_ram_base value for RV64 + - x86/gpu: Reserve stolen memory for first integrated Intel GPU + - tools/nolibc: x86-64: Fix startup code bug + - crypto: x86/aesni - don't require alignment of data + - tools/nolibc: i386: fix initial stack alignment + - tools/nolibc: fix incorrect truncation of exit code + - rtc: cmos: take rtc_lock while reading from CMOS + - net: phy: marvell: add Marvell specific PHY loopback + - ksmbd: uninitialized variable in create_socket() + - ksmbd: fix guest connection failure with nautilus + - ksmbd: add support for smb2 max credit parameter + - ksmbd: move credit charge deduction under processing request + - ksmbd: limits exceeding the maximum allowable outstanding requests + - ksmbd: add reserved room in ipc request/response + - media: cec: fix a deadlock situation + - media: ov8865: Disable only enabled regulators on error path + - media: v4l2-ioctl.c: readbuffers depends on V4L2_CAP_READWRITE + - media: flexcop-usb: fix control-message timeouts + - media: mceusb: fix control-message timeouts + - media: em28xx: fix control-message timeouts + - media: cpia2: fix control-message timeouts + - media: s2255: fix control-message timeouts + - media: dib0700: fix undefined behavior in tuner shutdown + - media: redrat3: fix control-message timeouts + - media: pvrusb2: fix control-message timeouts + - media: stk1160: fix control-message timeouts + - media: cec-pin: fix interrupt en/disable handling + - can: softing_cs: softingcs_probe(): fix memleak on registration failure + - mei: hbm: fix client dma reply status + - iio: adc: ti-adc081c: Partial revert of removal of ACPI IDs + - iio: trigger: Fix a scheduling whilst atomic issue seen on tsc2046 + - lkdtm: Fix content of section containing lkdtm_rodata_do_nothing() + - bus: mhi: pci_generic: Graceful shutdown on freeze + - bus: mhi: core: Fix reading wake_capable channel configuration + - bus: mhi: core: Fix race while handling SYS_ERR at power up + - cxl/pmem: Fix reference counting for delayed work + - arm64: errata: Fix exec handling in erratum 1418040 workaround + - ARM: dts: at91: update alternate function of signal PD20 + - iommu/io-pgtable-arm-v7s: Add error handle for page table allocation failure + - gpu: host1x: Add back arm_iommu_detach_device() + - drm/tegra: Add back arm_iommu_detach_device() + - virtio/virtio_mem: handle a possible NULL as a memcpy parameter + - dma_fence_array: Fix PENDING_ERROR leak in dma_fence_array_signaled() + - PCI: Add function 1 DMA alias quirk for Marvell 88SE9125 SATA controller + - mm_zone: add function to check if managed dma zone exists + - dma/pool: create dma atomic pool only if dma zone has managed pages + - mm/page_alloc.c: do not warn allocation failure on zone DMA if no managed + pages + - shmem: fix a race between shmem_unused_huge_shrink and shmem_evict_inode + - drm/ttm: Put BO in its memory manager's lru list + - Bluetooth: L2CAP: Fix not initializing sk_peer_pid + - drm/bridge: display-connector: fix an uninitialized pointer in probe() + - drm: fix null-ptr-deref in drm_dev_init_release() + - drm/panel: kingdisplay-kd097d04: Delete panel on attach() failure + - drm/panel: innolux-p079zca: Delete panel on attach() failure + - drm/rockchip: dsi: Fix unbalanced clock on probe error + - drm/rockchip: dsi: Hold pm-runtime across bind/unbind + - drm/rockchip: dsi: Disable PLL clock on bind error + - drm/rockchip: dsi: Reconfigure hardware on resume() + - Bluetooth: virtio_bt: fix memory leak in virtbt_rx_handle() + - Bluetooth: cmtp: fix possible panic when cmtp_init_sockets() fails + - clk: bcm-2835: Pick the closest clock rate + - clk: bcm-2835: Remove rounding up the dividers + - drm/vc4: hdmi: Set a default HSM rate + - drm/vc4: hdmi: Move the HSM clock enable to runtime_pm + - drm/vc4: hdmi: Make sure the controller is powered in detect + - drm/vc4: hdmi: Make sure the controller is powered up during bind + - drm/vc4: hdmi: Rework the pre_crtc_configure error handling + - drm/vc4: crtc: Make sure the HDMI controller is powered when disabling + - wcn36xx: ensure pairing of init_scan/finish_scan and start_scan/end_scan + - wcn36xx: Indicate beacon not connection loss on MISSED_BEACON_IND + - drm/vc4: hdmi: Enable the scrambler on reconnection + - libbpf: Free up resources used by inner map definition + - wcn36xx: Fix DMA channel enable/disable cycle + - wcn36xx: Release DMA channel descriptor allocations + - wcn36xx: Put DXE block into reset before freeing memory + - wcn36xx: populate band before determining rate on RX + - wcn36xx: fix RX BD rate mapping for 5GHz legacy rates + - ath11k: Send PPDU_STATS_CFG with proper pdev mask to firmware + - bpftool: Fix memory leak in prog_dump() + - mtd: hyperbus: rpc-if: Check return value of rpcif_sw_init() + - media: videobuf2: Fix the size printk format + - media: atomisp: add missing media_device_cleanup() in + atomisp_unregister_entities() + - media: atomisp: fix punit_ddr_dvfs_enable() argument for mrfld_power up case + - media: atomisp: fix inverted logic in buffers_needed() + - media: atomisp: do not use err var when checking port validity for ISP2400 + - media: atomisp: fix inverted error check for + ia_css_mipi_is_source_port_valid() + - media: atomisp: fix ifdefs in sh_css.c + - media: atomisp: add NULL check for asd obtained from atomisp_video_pipe + - media: atomisp: fix enum formats logic + - media: atomisp: fix uninitialized bug in gmin_get_pmic_id_and_addr() + - media: aspeed: fix mode-detect always time out at 2nd run + - media: em28xx: fix memory leak in em28xx_init_dev + - media: aspeed: Update signal status immediately to ensure sane hw state + - arm64: dts: amlogic: meson-g12: Fix GPU operating point table node name + - arm64: dts: amlogic: Fix SPI NOR flash node name for ODROID N2/N2+ + - arm64: dts: meson-gxbb-wetek: fix HDMI in early boot + - arm64: dts: meson-gxbb-wetek: fix missing GPIO binding + - fs: dlm: don't call kernel_getpeername() in error_report() + - memory: renesas-rpc-if: Return error in case devm_ioremap_resource() fails + - Bluetooth: stop proccessing malicious adv data + - ath11k: Fix ETSI regd with weather radar overlap + - ath11k: clear the keys properly via DISABLE_KEY + - ath11k: reset RSN/WPA present state for open BSS + - spi: hisi-kunpeng: Fix the debugfs directory name incorrect + - tee: fix put order in teedev_close_context() + - fs: dlm: fix build with CONFIG_IPV6 disabled + - drm/dp: Don't read back backlight mode in drm_edp_backlight_enable() + - drm/vboxvideo: fix a NULL vs IS_ERR() check + - arm64: dts: renesas: cat875: Add rx/tx delays + - media: dmxdev: fix UAF when dvb_register_device() fails + - crypto: atmel-aes - Reestablish the correct tfm context at dequeue + - crypto: qce - fix uaf on qce_aead_register_one + - crypto: qce - fix uaf on qce_ahash_register_one + - crypto: qce - fix uaf on qce_skcipher_register_one + - arm64: dts: qcom: sc7280: Fix incorrect clock name + - mtd: hyperbus: rpc-if: fix bug in rpcif_hb_remove + - cpufreq: qcom-cpufreq-hw: Update offline CPUs per-cpu thermal pressure + - cpufreq: qcom-hw: Fix probable nested interrupt handling + - ARM: dts: stm32: fix dtbs_check warning on ili9341 dts binding on stm32f429 + disco + - libbpf: Fix potential misaligned memory access in btf_ext__new() + - libbpf: Fix glob_syms memory leak in bpf_linker + - libbpf: Fix using invalidated memory in bpf_linker + - crypto: qat - remove unnecessary collision prevention step in PFVF + - crypto: qat - make pfvf send message direction agnostic + - crypto: qat - fix undetected PFVF timeout in ACK loop + - ath11k: Use host CE parameters for CE interrupts configuration + - arm64: dts: ti: k3-j721e: correct cache-sets info + - tty: serial: atmel: Check return code of dmaengine_submit() + - tty: serial: atmel: Call dma_async_issue_pending() + - mfd: atmel-flexcom: Remove #ifdef CONFIG_PM_SLEEP + - mfd: atmel-flexcom: Use .resume_noirq + - bfq: Do not let waker requests skip proper accounting + - libbpf: Silence uninitialized warning/error in btf_dump_dump_type_data + - media: i2c: imx274: fix s_frame_interval runtime resume not requested + - media: i2c: Re-order runtime pm initialisation + - media: i2c: ov8865: Fix lockdep error + - media: rcar-csi2: Correct the selection of hsfreqrange + - media: imx-pxp: Initialize the spinlock prior to using it + - media: si470x-i2c: fix possible memory leak in si470x_i2c_probe() + - media: mtk-vcodec: call v4l2_m2m_ctx_release first when file is released + - media: hantro: Hook up RK3399 JPEG encoder output + - media: coda: fix CODA960 JPEG encoder buffer overflow + - media: venus: correct low power frequency calculation for encoder + - media: venus: core: Fix a potential NULL pointer dereference in an error + handling path + - media: venus: core: Fix a resource leak in the error handling path of + 'venus_probe()' + - net: stmmac: Add platform level debug register dump feature + - thermal/drivers/imx: Implement runtime PM support + - igc: AF_XDP zero-copy metadata adjust breaks SKBs on XDP_PASS + - netfilter: bridge: add support for pppoe filtering + - powerpc: Avoid discarding flags in system_call_exception() + - arm64: dts: qcom: msm8916: fix MMC controller aliases + - drm/vmwgfx: Remove the deprecated lower mem limit + - drm/vmwgfx: Fail to initialize on broken configs + - cgroup: Trace event cgroup id fields should be u64 + - ACPI: EC: Rework flushing of EC work while suspended to idle + - thermal/drivers/imx8mm: Enable ADC when enabling monitor + - drm/amdgpu: Fix a NULL pointer dereference in + amdgpu_connector_lcd_native_mode() + - drm/radeon/radeon_kms: Fix a NULL pointer dereference in + radeon_driver_open_kms() + - libbpf: Clean gen_loader's attach kind. + - crypto: caam - save caam memory to support crypto engine retry mechanism. + - arm64: dts: ti: k3-am642: Fix the L2 cache sets + - arm64: dts: ti: k3-j7200: Fix the L2 cache sets + - arm64: dts: ti: k3-j721e: Fix the L2 cache sets + - arm64: dts: ti: k3-j7200: Correct the d-cache-sets info + - tty: serial: uartlite: allow 64 bit address + - serial: amba-pl011: do not request memory region twice + - mtd: core: provide unique name for nvmem device + - floppy: Fix hang in watchdog when disk is ejected + - staging: rtl8192e: return error code from rtllib_softmac_init() + - staging: rtl8192e: rtllib_module: fix error handle case in alloc_rtllib() + - Bluetooth: btmtksdio: fix resume failure + - bpf: Fix the test_task_vma selftest to support output shorter than 1 kB + - sched/fair: Fix detection of per-CPU kthreads waking a task + - sched/fair: Fix per-CPU kthread and wakee stacking for asym CPU capacity + - bpf: Adjust BTF log size limit. + - bpf: Disallow BPF_LOG_KERNEL log level for bpf(BPF_BTF_LOAD) + - bpf: Remove config check to enable bpf support for branch records + - arm64: clear_page() shouldn't use DC ZVA when DCZID_EL0.DZP == 1 + - arm64: mte: DC {GVA,GZVA} shouldn't be used when DCZID_EL0.DZP == 1 + - samples/bpf: Install libbpf headers when building + - samples/bpf: Clean up samples/bpf build failes + - samples: bpf: Fix xdp_sample_user.o linking with Clang + - samples: bpf: Fix 'unknown warning group' build warning on Clang + - media: dib8000: Fix a memleak in dib8000_init() + - media: saa7146: mxb: Fix a NULL pointer dereference in mxb_attach() + - media: si2157: Fix "warm" tuner state detection + - wireless: iwlwifi: Fix a double free in iwl_txq_dyn_alloc_dma + - sched/rt: Try to restart rt period timer when rt runtime exceeded + - ath10k: Fix the MTU size on QCA9377 SDIO + - Bluetooth: refactor set_exp_feature with a feature table + - Bluetooth: MGMT: Use hci_dev_test_and_{set,clear}_flag + - drm/amd/display: Fix bug in debugfs crc_win_update entry + - drm/msm/gpu: Don't allow zero fence_id + - drm/msm/dp: displayPort driver need algorithm rational + - rcu/exp: Mark current CPU as exp-QS in IPI loop second pass + - wcn36xx: Fix max channels retrieval + - drm/msm/dsi: fix initialization in the bonded DSI case + - mwifiex: Fix possible ABBA deadlock + - xfrm: fix a small bug in xfrm_sa_len() + - x86/uaccess: Move variable into switch case statement + - selftests: clone3: clone3: add case CLONE3_ARGS_NO_TEST + - selftests: harness: avoid false negatives if test has no ASSERTs + - crypto: stm32/cryp - fix CTR counter carry + - crypto: stm32/cryp - fix xts and race condition in crypto_engine requests + - crypto: stm32/cryp - check early input data + - crypto: stm32/cryp - fix double pm exit + - crypto: stm32/cryp - fix lrw chaining mode + - crypto: stm32/cryp - fix bugs and crash in tests + - crypto: stm32 - Revert broken pm_runtime_resume_and_get changes + - crypto: hisilicon/qm - fix incorrect return value of hisi_qm_resume() + - ath11k: Fix deleting uninitialized kernel timer during fragment cache flush + - spi: Fix incorrect cs_setup delay handling + - ARM: dts: gemini: NAS4220-B: fis-index-block with 128 KiB sectors + - perf/arm-cmn: Fix CPU hotplug unregistration + - media: dw2102: Fix use after free + - media: msi001: fix possible null-ptr-deref in msi001_probe() + - media: coda/imx-vdoa: Handle dma_set_coherent_mask error codes + - ath11k: Fix a NULL pointer dereference in ath11k_mac_op_hw_scan() + - net: dsa: hellcreek: Fix insertion of static FDB entries + - net: dsa: hellcreek: Add STP forwarding rule + - net: dsa: hellcreek: Allow PTP P2P measurements on blocked ports + - net: dsa: hellcreek: Add missing PTP via UDP rules + - arm64: dts: qcom: c630: Fix soundcard setup + - arm64: dts: qcom: ipq6018: Fix gpio-ranges property + - drm/msm/dpu: fix safe status debugfs file + - drm/bridge: ti-sn65dsi86: Set max register for regmap + - gpu: host1x: select CONFIG_DMA_SHARED_BUFFER + - drm/tegra: gr2d: Explicitly control module reset + - drm/tegra: vic: Fix DMA API misuse + - media: hantro: Fix probe func error path + - xfrm: interface with if_id 0 should return error + - xfrm: state and policy should fail if XFRMA_IF_ID 0 + - ARM: 9159/1: decompressor: Avoid UNPREDICTABLE NOP encoding + - usb: ftdi-elan: fix memory leak on device disconnect + - arm64: dts: marvell: cn9130: add GPIO and SPI aliases + - arm64: dts: marvell: cn9130: enable CP0 GPIO controllers + - ARM: dts: armada-38x: Add generic compatible to UART nodes + - mt76: mt7921: drop offload_flags overwritten + - wilc1000: fix double free error in probe() + - rtw88: add quirk to disable pci caps on HP 250 G7 Notebook PC + - iwlwifi: mvm: fix 32-bit build in FTM + - iwlwifi: mvm: test roc running status bits before removing the sta + - iwlwifi: mvm: perform 6GHz passive scan after suspend + - iwlwifi: mvm: set protected flag only for NDP ranging + - mmc: meson-mx-sdhc: add IRQ check + - mmc: meson-mx-sdio: add IRQ check + - block: fix error unwinding in device_add_disk + - selinux: fix potential memleak in selinux_add_opt() + - um: fix ndelay/udelay defines + - um: rename set_signals() to um_set_signals() + - um: virt-pci: Fix 32-bit compile + - lib/logic_iomem: Fix 32-bit build + - lib/logic_iomem: Fix operation on 32-bit + - um: virtio_uml: Fix time-travel external time propagation + - Bluetooth: L2CAP: Fix using wrong mode + - bpftool: Enable line buffering for stdout + - backlight: qcom-wled: Validate enabled string indices in DT + - backlight: qcom-wled: Pass number of elements to read to read_u32_array + - backlight: qcom-wled: Fix off-by-one maximum with default num_strings + - backlight: qcom-wled: Override default length with qcom,enabled-strings + - backlight: qcom-wled: Use cpu_to_le16 macro to perform conversion + - backlight: qcom-wled: Respect enabled-strings in set_brightness + - software node: fix wrong node passed to find nargs_prop + - Bluetooth: hci_qca: Stop IBS timer during BT OFF + - x86/boot/compressed: Move CLANG_FLAGS to beginning of KBUILD_CFLAGS + - crypto: octeontx2 - prevent underflow in get_cores_bmap() + - regulator: qcom-labibb: OCP interrupts are not a failure while disabled + - hwmon: (mr75203) fix wrong power-up delay value + - x86/mce/inject: Avoid out-of-bounds write when setting flags + - io_uring: remove double poll on poll update + - serial: 8250_bcm7271: Propagate error codes from brcmuart_probe() + - ACPI: scan: Create platform device for BCM4752 and LNV4752 ACPI nodes + - pcmcia: rsrc_nonstatic: Fix a NULL pointer dereference in + __nonstatic_find_io_region() + - pcmcia: rsrc_nonstatic: Fix a NULL pointer dereference in + nonstatic_find_mem_region() + - power: reset: mt6397: Check for null res pointer + - net/xfrm: IPsec tunnel mode fix inner_ipproto setting in sec_path + - net: ethernet: mtk_eth_soc: fix return values and refactor MDIO ops + - net: dsa: fix incorrect function pointer check for MRP ring roles + - netfilter: ipt_CLUSTERIP: fix refcount leak in clusterip_tg_check() + - bpf, sockmap: Fix return codes from tcp_bpf_recvmsg_parser() + - bpf, sockmap: Fix double bpf_prog_put on error case in map_link + - bpf: Don't promote bogus looking registers after null check. + - bpf: Fix verifier support for validation of async callbacks + - bpf: Fix SO_RCVBUF/SO_SNDBUF handling in _bpf_setsockopt(). + - netfilter: nft_payload: do not update layer 4 checksum when mangling + fragments + - netfilter: nft_set_pipapo: allocate pcpu scratch maps on clone + - net: fix SOF_TIMESTAMPING_BIND_PHC to work with multiple sockets + - ppp: ensure minimum packet size in ppp_write() + - rocker: fix a sleeping in atomic bug + - staging: greybus: audio: Check null pointer + - fsl/fman: Check for null pointer after calling devm_ioremap + - Bluetooth: hci_bcm: Check for error irq + - Bluetooth: hci_qca: Fix NULL vs IS_ERR_OR_NULL check in qca_serdev_probe + - net/smc: Reset conn->lgr when link group registration fails + - usb: dwc3: qcom: Fix NULL vs IS_ERR checking in dwc3_qcom_probe + - usb: dwc2: do not gate off the hardware if it does not support clock gating + - usb: dwc2: gadget: initialize max_speed from params + - usb: gadget: u_audio: Subdevice 0 for capture ctls + - HID: hid-uclogic-params: Invalid parameter check in uclogic_params_init + - HID: hid-uclogic-params: Invalid parameter check in + uclogic_params_get_str_desc + - HID: hid-uclogic-params: Invalid parameter check in + uclogic_params_huion_init + - HID: hid-uclogic-params: Invalid parameter check in + uclogic_params_frame_init_v1_buttonpad + - debugfs: lockdown: Allow reading debugfs files that are not world readable + - drivers/firmware: Add missing platform_device_put() in sysfb_create_simplefb + - serial: liteuart: fix MODULE_ALIAS + - serial: stm32: move tx dma terminate DMA to shutdown + - x86, sched: Fix undefined reference to init_freq_invariance_cppc() build + error + - net/mlx5e: Fix page DMA map/unmap attributes + - net/mlx5e: Fix wrong usage of fib_info_nh when routes with nexthop objects + are used + - net/mlx5e: Don't block routes with nexthop objects in SW + - Revert "net/mlx5e: Block offload of outer header csum for UDP tunnels" + - Revert "net/mlx5e: Block offload of outer header csum for GRE tunnel" + - net/mlx5e: Fix matching on modified inner ip_ecn bits + - net/mlx5: Fix access to sf_dev_table on allocation failure + - net/mlx5e: Sync VXLAN udp ports during uplink representor profile change + - net/mlx5: Set command entry semaphore up once got index free + - lib/mpi: Add the return value check of kcalloc() + - Bluetooth: L2CAP: uninitialized variables in l2cap_sock_setsockopt() + - mptcp: fix per socket endpoint accounting + - mptcp: fix opt size when sending DSS + MP_FAIL + - mptcp: fix a DSS option writing error + - spi: spi-meson-spifc: Add missing pm_runtime_disable() in meson_spifc_probe + - octeontx2-af: Increment ptp refcount before use + - ax25: uninitialized variable in ax25_setsockopt() + - netrom: fix api breakage in nr_setsockopt() + - regmap: Call regmap_debugfs_exit() prior to _init() + - net: mscc: ocelot: fix incorrect balancing with down LAG ports + - can: mcp251xfd: add missing newline to printed strings + - tpm: add request_locality before write TPM_INT_ENABLE + - tpm_tis: Fix an error handling path in 'tpm_tis_core_init()' + - can: softing: softing_startstop(): fix set but not used variable warning + - can: xilinx_can: xcan_probe(): check for error irq + - can: rcar_canfd: rcar_canfd_channel_probe(): make sure we free CAN network + device + - pcmcia: fix setting of kthread task states + - net/sched: flow_dissector: Fix matching on zone id for invalid conns + - net: openvswitch: Fix matching zone id for invalid conns arriving from tc + - net: openvswitch: Fix ct_state nat flags for conns arriving from tc + - iwlwifi: mvm: Use div_s64 instead of do_div in iwl_mvm_ftm_rtt_smoothing() + - bnxt_en: Refactor coredump functions + - bnxt_en: move coredump functions into dedicated file + - bnxt_en: use firmware provided max timeout for messages + - net: mcs7830: handle usb read errors properly + - ext4: avoid trim error on fs with small groups + - ASoC: Intel: sof_sdw: fix jack detection on HP Spectre x360 convertible + - ALSA: jack: Add missing rwsem around snd_ctl_remove() calls + - ALSA: PCM: Add missing rwsem around snd_ctl_remove() calls + - ALSA: hda: Add missing rwsem around snd_ctl_remove() calls + - ALSA: hda: Fix potential deadlock at codec unbinding + - RDMA/bnxt_re: Scan the whole bitmap when checking if "disabling RCFW with + pending cmd-bit" + - RDMA/hns: Validate the pkey index + - scsi: pm80xx: Update WARN_ON check in pm8001_mpi_build_cmd() + - clk: renesas: rzg2l: Check return value of pm_genpd_init() + - clk: renesas: rzg2l: propagate return value of_genpd_add_provider_simple() + - clk: imx8mn: Fix imx8mn_clko1_sels + - powerpc/prom_init: Fix improper check of prom_getprop() + - ASoC: uniphier: drop selecting non-existing SND_SOC_UNIPHIER_AIO_DMA + - ASoC: codecs: wcd938x: add SND_SOC_WCD938_SDW to codec list instead + - RDMA/rtrs-clt: Fix the initial value of min_latency + - ALSA: hda: Make proper use of timecounter + - dt-bindings: thermal: Fix definition of cooling-maps contribution property + - powerpc/perf: Fix PMU callbacks to clear pending PMI before resetting an + overflown PMC + - powerpc/modules: Don't WARN on first module allocation attempt + - powerpc/32s: Fix shift-out-of-bounds in KASAN init + - clocksource: Avoid accidental unstable marking of clocksources + - ALSA: oss: fix compile error when OSS_DEBUG is enabled + - ALSA: usb-audio: Drop superfluous '0' in Presonus Studio 1810c's ID + - misc: at25: Make driver OF independent again + - char/mwave: Adjust io port register size + - binder: fix handling of error during copy + - binder: avoid potential data leakage when copying txn + - openrisc: Add clone3 ABI wrapper + - iommu: Extend mutex lock scope in iommu_probe_device() + - iommu/io-pgtable-arm: Fix table descriptor paddr formatting + - scsi: core: Fix scsi_device_max_queue_depth() + - scsi: ufs: Fix race conditions related to driver data + - RDMA/qedr: Fix reporting max_{send/recv}_wr attrs + - PCI/MSI: Fix pci_irq_vector()/pci_irq_get_affinity() + - powerpc/powermac: Add additional missing lockdep_register_key() + - iommu/arm-smmu-qcom: Fix TTBR0 read + - RDMA/core: Let ib_find_gid() continue search even after empty entry + - RDMA/cma: Let cma_resolve_ib_dev() continue search even after empty entry + - ASoC: rt5663: Handle device_property_read_u32_array error codes + - of: unittest: fix warning on PowerPC frame size warning + - of: unittest: 64 bit dma address test requires arch support + - clk: stm32: Fix ltdc's clock turn off by clk_disable_unused() after system + enter shell + - mips: add SYS_HAS_CPU_MIPS64_R5 config for MIPS Release 5 support + - mips: fix Kconfig reference to PHYS_ADDR_T_64BIT + - dmaengine: pxa/mmp: stop referencing config->slave_id + - iommu/amd: Restore GA log/tail pointer on host resume + - iommu/amd: X2apic mode: re-enable after resume + - iommu/amd: X2apic mode: setup the INTX registers on mask/unmask + - iommu/amd: X2apic mode: mask/unmask interrupts on suspend/resume + - iommu/amd: Remove useless irq affinity notifier + - ASoC: Intel: catpt: Test dmaengine_submit() result before moving on + - iommu/iova: Fix race between FQ timeout and teardown + - ASoC: mediatek: mt8195: correct default value + - of: fdt: Aggregate the processing of "linux,usable-memory-range" + - efi: apply memblock cap after memblock_add() + - scsi: block: pm: Always set request queue runtime active in + blk_post_runtime_resume() + - phy: uniphier-usb3ss: fix unintended writing zeros to PHY register + - ASoC: mediatek: Check for error clk pointer + - powerpc/64s: Mask NIP before checking against SRR0 + - powerpc/64s: Use EMIT_WARN_ENTRY for SRR debug warnings + - phy: cadence: Sierra: Fix to get correct parent for mux clocks + - ASoC: samsung: idma: Check of ioremap return value + - misc: lattice-ecp3-config: Fix task hung when firmware load failed + - ASoC: mediatek: mt8195: correct pcmif BE dai control flow + - arm64: tegra: Remove non existent Tegra194 reset + - mips: lantiq: add support for clk_set_parent() + - mips: bcm63xx: add support for clk_set_parent() + - powerpc/xive: Add missing null check after calling kmalloc + - ASoC: fsl_mqs: fix MODULE_ALIAS + - ALSA: hda/cs8409: Increase delay during jack detection + - ALSA: hda/cs8409: Fix Jack detection after resume + - RDMA/cxgb4: Set queue pair state when being queried + - clk: qcom: gcc-sc7280: Mark gcc_cfg_noc_lpass_clk always enabled + - ASoC: imx-card: Need special setting for ak4497 on i.MX8MQ + - ASoC: imx-card: Fix mclk calculation issue for akcodec + - ASoC: imx-card: improve the sound quality for low rate + - ASoC: fsl_asrc: refine the check of available clock divider + - clk: bm1880: remove kfrees on static allocations + - of: base: Fix phandle argument length mismatch error message + - of/fdt: Don't worry about non-memory region overlap for no-map + - MIPS: boot/compressed/: add __ashldi3 to target for ZSTD compression + - MIPS: compressed: Fix build with ZSTD compression + - mailbox: fix gce_num of mt8192 driver data + - ARM: dts: omap3-n900: Fix lp5523 for multi color + - leds: lp55xx: initialise output direction from dts + - Bluetooth: Fix debugfs entry leak in hci_register_dev() + - Bluetooth: Fix memory leak of hci device + - drm/panel: Delete panel on mipi_dsi_attach() failure + - Bluetooth: Fix removing adv when processing cmd complete + - fs: dlm: filter user dlm messages for kernel locks + - drm/lima: fix warning when CONFIG_DEBUG_SG=y & CONFIG_DMA_API_DEBUG=y + - selftests/bpf: Fix memory leaks in btf_type_c_dump() helper + - selftests/bpf: Destroy XDP link correctly + - selftests/bpf: Fix bpf_object leak in skb_ctx selftest + - ar5523: Fix null-ptr-deref with unexpected WDCMSG_TARGET_START reply + - drm/bridge: dw-hdmi: handle ELD when DRM_BRIDGE_ATTACH_NO_CONNECTOR + - drm/nouveau/pmu/gm200-: avoid touching PMU outside of DEVINIT/PREOS/ACR + - media: atomisp: fix try_fmt logic + - media: atomisp: set per-device's default mode + - media: atomisp-ov2680: Fix ov2680_set_fmt() clobbering the exposure + - media: atomisp: check before deference asd variable + - ARM: shmobile: rcar-gen2: Add missing of_node_put() + - batman-adv: allow netlink usage in unprivileged containers + - media: atomisp: handle errors at sh_css_create_isp_params() + - ath11k: Fix crash caused by uninitialized TX ring + - usb: dwc3: meson-g12a: fix shared reset control use + - USB: ehci_brcm_hub_control: Improve port index sanitizing + - usb: gadget: f_fs: Use stream_open() for endpoint files + - psi: Fix PSI_MEM_FULL state when tasks are in memstall and doing reclaim + - drm: panel-orientation-quirks: Add quirk for the Lenovo Yoga Book X91F/L + - HID: magicmouse: Report battery level over USB + - HID: apple: Do not reset quirks when the Fn key is not found + - media: b2c2: Add missing check in flexcop_pci_isr: + - libbpf: Accommodate DWARF/compiler bug with duplicated structs + - ethernet: renesas: Use div64_ul instead of do_div + - EDAC/synopsys: Use the quirk for version instead of ddr version + - arm64: dts: qcom: sm8350: Shorten camera-thermal-bottom name + - soc: imx: gpcv2: Synchronously suspend MIX domains + - ARM: imx: rename DEBUG_IMX21_IMX27_UART to DEBUG_IMX27_UART + - drm/amd/display: check top_pipe_to_program pointer + - drm/amdgpu/display: set vblank_disable_immediate for DC + - soc: ti: pruss: fix referenced node in error message + - mlxsw: pci: Add shutdown method in PCI driver + - drm/amd/display: add else to avoid double destroy clk_mgr + - drm/bridge: megachips: Ensure both bridges are probed before registration + - mxser: keep only !tty test in ISR + - tty: serial: imx: disable UCR4_OREN in .stop_rx() instead of .shutdown() + - gpiolib: acpi: Do not set the IRQ type if the IRQ is already in use + - HSI: core: Fix return freed object in hsi_new_client + - crypto: jitter - consider 32 LSB for APT + - mwifiex: Fix skb_over_panic in mwifiex_usb_recv() + - rsi: Fix use-after-free in rsi_rx_done_handler() + - rsi: Fix out-of-bounds read in rsi_read_pkt() + - ath11k: Avoid NULL ptr access during mgmt tx cleanup + - media: venus: avoid calling core_clk_setrate() concurrently during + concurrent video sessions + - regulator: da9121: Prevent current limit change when enabled + - drm/vmwgfx: Release ttm memory if probe fails + - drm/vmwgfx: Introduce a new placement for MOB page tables + - ACPI / x86: Drop PWM2 device on Lenovo Yoga Book from always present table + - ACPI: Change acpi_device_always_present() into acpi_device_override_status() + - ACPI / x86: Allow specifying acpi_device_override_status() quirks by path + - ACPI / x86: Add not-present quirk for the PCI0.SDHB.BRC1 device on the GPD + win + - arm64: dts: ti: j7200-main: Fix 'dtbs_check' serdes_ln_ctrl node + - arm64: dts: ti: j721e-main: Fix 'dtbs_check' in serdes_ln_ctrl node + - usb: uhci: add aspeed ast2600 uhci support + - floppy: Add max size check for user space request + - x86/mm: Flush global TLB when switching to trampoline page-table + - drm: rcar-du: Fix CRTC timings when CMM is used + - media: uvcvideo: Increase UVC_CTRL_CONTROL_TIMEOUT to 5 seconds. + - media: rcar-vin: Update format alignment constraints + - media: saa7146: hexium_orion: Fix a NULL pointer dereference in + hexium_attach() + - media: atomisp: fix "variable dereferenced before check 'asd'" + - media: m920x: don't use stack on USB reads + - thunderbolt: Runtime PM activate both ends of the device link + - arm64: dts: renesas: Fix thermal bindings + - iwlwifi: mvm: synchronize with FW after multicast commands + - iwlwifi: mvm: avoid clearing a just saved session protection id + - rcutorture: Avoid soft lockup during cpu stall + - ath11k: avoid deadlock by change ieee80211_queue_work for regd_update_work + - ath10k: Fix tx hanging + - net-sysfs: update the queue counts in the unregistration path + - net: phy: prefer 1000baseT over 1000baseKX + - gpio: aspeed: Convert aspeed_gpio.lock to raw_spinlock + - gpio: aspeed-sgpio: Convert aspeed_sgpio.lock to raw_spinlock + - selftests/ftrace: make kprobe profile testcase description unique + - ath11k: Avoid false DEADLOCK warning reported by lockdep + - ARM: dts: qcom: sdx55: fix IPA interconnect definitions + - x86/mce: Allow instrumentation during task work queueing + - x86/mce: Mark mce_panic() noinstr + - x86/mce: Mark mce_end() noinstr + - x86/mce: Mark mce_read_aux() noinstr + - net: bonding: debug: avoid printing debug logs when bond is not notifying + peers + - kunit: Don't crash if no parameters are generated + - bpf: Do not WARN in bpf_warn_invalid_xdp_action() + - drm/amdkfd: Fix error handling in svm_range_add + - HID: quirks: Allow inverting the absolute X/Y values + - HID: i2c-hid-of: Expose the touchscreen-inverted properties + - media: igorplugusb: receiver overflow should be reported + - media: rockchip: rkisp1: use device name for debugfs subdir name + - media: saa7146: hexium_gemini: Fix a NULL pointer dereference in + hexium_attach() + - mmc: tmio: reinit card irqs in reset routine + - mmc: core: Fixup storing of OCR for MMC_QUIRK_NONSTD_SDIO + - drm/amd/amdgpu: fix psp tmr bo pin count leak in SRIOV + - drm/amd/amdgpu: fix gmc bo pin count leak in SRIOV + - audit: ensure userspace is penalized the same as the kernel when under + pressure + - arm64: dts: ls1028a-qds: move rtc node to the correct i2c bus + - arm64: tegra: Adjust length of CCPLEX cluster MMIO region + - crypto: ccp - Move SEV_INIT retry for corrupted data + - crypto: hisilicon/hpre - fix memory leak in hpre_curve25519_src_init() + - PM: runtime: Add safety net to supplier device release + - cpufreq: Fix initialization of min and max frequency QoS requests + - mt76: mt7615: fix possible deadlock while mt7615_register_ext_phy() + - mt76: do not pass the received frame with decryption error + - mt76: mt7615: improve wmm index allocation + - ath9k_htc: fix NULL pointer dereference at ath9k_htc_rxep() + - ath9k_htc: fix NULL pointer dereference at ath9k_htc_tx_get_packet() + - ath9k: Fix out-of-bound memcpy in ath9k_hif_usb_rx_stream + - rtw88: 8822c: update rx settings to prevent potential hw deadlock + - PM: AVS: qcom-cpr: Use div64_ul instead of do_div + - iwlwifi: fix leaks/bad data after failed firmware load + - iwlwifi: remove module loading failure message + - iwlwifi: mvm: Fix calculation of frame length + - iwlwifi: mvm: fix AUX ROC removal + - iwlwifi: pcie: make sure prph_info is set when treating wakeup IRQ + - mmc: sdhci-pci-gli: GL9755: Support for CD/WP inversion on OF platforms + - block: check minor range in device_add_disk() + - um: registers: Rename function names to avoid conflicts and build problems + - ath11k: Fix napi related hang + - Bluetooth: btintel: Add missing quirks and msft ext for legacy bootloader + - Bluetooth: vhci: Set HCI_QUIRK_VALID_LE_STATES + - xfrm: rate limit SA mapping change message to user space + - drm/etnaviv: consider completed fence seqno in hang check + - jffs2: GC deadlock reading a page that is used in jffs2_write_begin() + - ACPICA: actypes.h: Expand the ACPI_ACCESS_ definitions + - ACPICA: Utilities: Avoid deleting the same object twice in a row + - ACPICA: Executer: Fix the REFCLASS_REFOF case in acpi_ex_opcode_1A_0T_1R() + - ACPICA: Fix wrong interpretation of PCC address + - ACPICA: Hardware: Do not flush CPU cache when entering S4 and S5 + - mmc: mtk-sd: Use readl_poll_timeout instead of open-coded polling + - drm/amdgpu: fixup bad vram size on gmc v8 + - amdgpu/pm: Make sysfs pm attributes as read-only for VFs + - ACPI: battery: Add the ThinkPad "Not Charging" quirk + - ACPI: CPPC: Check present CPUs for determining _CPC is valid + - btrfs: remove BUG_ON() in find_parent_nodes() + - btrfs: remove BUG_ON(!eie) in find_parent_nodes + - net: mdio: Demote probed message to debug print + - mac80211: allow non-standard VHT MCS-10/11 + - dm btree: add a defensive bounds check to insert_at() + - dm space map common: add bounds check to sm_ll_lookup_bitmap() + - bpf/selftests: Fix namespace mount setup in tc_redirect + - mlxsw: pci: Avoid flow control for EMAD packets + - net: phy: marvell: configure RGMII delays for 88E1118 + - net: gemini: allow any RGMII interface mode + - regulator: qcom_smd: Align probe function with rpmh-regulator + - serial: pl010: Drop CR register reset on set_termios + - serial: pl011: Drop CR register reset on set_termios + - serial: core: Keep mctrl register state and cached copy in sync + - random: do not throw away excess input to crng_fast_load + - net/mlx5: Update log_max_qp value to FW max capability + - net/mlx5e: Unblock setting vid 0 for VF in case PF isn't eswitch manager + - parisc: Avoid calling faulthandler_disabled() twice + - can: flexcan: allow to change quirks at runtime + - can: flexcan: rename RX modes + - can: flexcan: add more quirks to describe RX path capabilities + - x86/kbuild: Enable CONFIG_KALLSYMS_ALL=y in the defconfigs + - powerpc/6xx: add missing of_node_put + - powerpc/powernv: add missing of_node_put + - powerpc/cell: add missing of_node_put + - powerpc/btext: add missing of_node_put + - powerpc/watchdog: Fix missed watchdog reset due to memory ordering race + - ASoC: imx-hdmi: add put_device() after of_find_device_by_node() + - i2c: i801: Don't silently correct invalid transfer size + - powerpc/smp: Move setup_profiling_timer() under CONFIG_PROFILING + - i2c: mpc: Correct I2C reset procedure + - clk: meson: gxbb: Fix the SDM_EN bit for MPLL0 on GXBB + - powerpc/powermac: Add missing lockdep_register_key() + - KVM: PPC: Book3S: Suppress warnings when allocating too big memory slots + - KVM: PPC: Book3S: Suppress failed alloc warning in H_COPY_TOFROM_GUEST + - w1: Misuse of get_user()/put_user() reported by sparse + - nvmem: core: set size for sysfs bin file + - dm: fix alloc_dax error handling in alloc_dev + - interconnect: qcom: rpm: Prevent integer overflow in rate + - scsi: ufs: Fix a kernel crash during shutdown + - scsi: lpfc: Fix leaked lpfc_dmabuf mbox allocations with NPIV + - scsi: lpfc: Trigger SLI4 firmware dump before doing driver cleanup + - ALSA: seq: Set upper limit of processed events + - MIPS: Loongson64: Use three arguments for slti + - powerpc/40x: Map 32Mbytes of memory at startup + - selftests/powerpc/spectre_v2: Return skip code when miss_percent is high + - powerpc: handle kdump appropriately with crash_kexec_post_notifiers option + - powerpc/fadump: Fix inaccurate CPU state info in vmcore generated with panic + - udf: Fix error handling in udf_new_inode() + - MIPS: OCTEON: add put_device() after of_find_device_by_node() + - irqchip/gic-v4: Disable redistributors' view of the VPE table at boot time + - i2c: designware-pci: Fix to change data types of hcnt and lcnt parameters + - selftests/powerpc: Add a test of sigreturning to the kernel + - MIPS: Octeon: Fix build errors using clang + - scsi: sr: Don't use GFP_DMA + - scsi: mpi3mr: Fixes around reply request queues + - ASoC: mediatek: mt8192-mt6359: fix device_node leak + - phy: phy-mtk-tphy: add support efuse setting + - ASoC: mediatek: mt8173: fix device_node leak + - ASoC: mediatek: mt8183: fix device_node leak + - habanalabs: skip read fw errors if dynamic descriptor invalid + - phy: mediatek: Fix missing check in mtk_mipi_tx_probe + - mailbox: change mailbox-mpfs compatible string + - seg6: export get_srh() for ICMP handling + - icmp: ICMPV6: Examine invoking packet for Segment Route Headers. + - udp6: Use Segment Routing Header for dest address if present + - rpmsg: core: Clean up resources on announce_create failure. + - ifcvf/vDPA: fix misuse virtio-net device config size for blk dev + - crypto: omap-aes - Fix broken pm_runtime_and_get() usage + - crypto: stm32/crc32 - Fix kernel BUG triggered in probe() + - crypto: caam - replace this_cpu_ptr with raw_cpu_ptr + - ubifs: Error path in ubifs_remount_rw() seems to wrongly free write buffers + - tpm: fix potential NULL pointer access in tpm_del_char_device + - tpm: fix NPE on probe for missing device + - mfd: tps65910: Set PWR_OFF bit during driver probe + - spi: uniphier: Fix a bug that doesn't point to private data correctly + - xen/gntdev: fix unmap notification order + - md: Move alloc/free acct bioset in to personality + - HID: magicmouse: Fix an error handling path in magicmouse_probe() + - fuse: Pass correct lend value to filemap_write_and_wait_range() + - serial: Fix incorrect rs485 polarity on uart open + - cputime, cpuacct: Include guest time in user time in cpuacct.stat + - sched/cpuacct: Fix user/system in shown cpuacct.usage* + - tracing/kprobes: 'nmissed' not showed correctly for kretprobe + - tracing: Have syscall trace events use trace_event_buffer_lock_reserve() + - remoteproc: imx_rproc: Fix a resource leak in the remove function + - iwlwifi: mvm: Increase the scan timeout guard to 30 seconds + - s390/mm: fix 2KB pgtable release race + - device property: Fix fwnode_graph_devcon_match() fwnode leak + - drm/tegra: submit: Add missing pm_runtime_mark_last_busy() + - drm/etnaviv: limit submit sizes + - drm/amd/display: Fix the uninitialized variable in enable_stream_features() + - drm/nouveau/kms/nv04: use vzalloc for nv04_display + - drm/bridge: analogix_dp: Make PSR-exit block less + - parisc: Fix lpa and lpa_user defines + - powerpc/64s/radix: Fix huge vmap false positive + - scsi: lpfc: Fix lpfc_force_rscn ndlp kref imbalance + - drm/amdgpu: don't do resets on APUs which don't support it + - drm/i915/display/ehl: Update voltage swing table + - PCI: xgene: Fix IB window setup + - PCI: pciehp: Use down_read/write_nested(reset_lock) to fix lockdep errors + - PCI: pci-bridge-emul: Make expansion ROM Base Address register read-only + - PCI: pci-bridge-emul: Properly mark reserved PCIe bits in PCI config space + - PCI: pci-bridge-emul: Fix definitions of reserved bits + - PCI: pci-bridge-emul: Correctly set PCIe capabilities + - PCI: pci-bridge-emul: Set PCI_STATUS_CAP_LIST for PCIe device + - xfrm: fix policy lookup for ipv6 gre packets + - xfrm: fix dflt policy check when there is no policy configured + - btrfs: fix deadlock between quota enable and other quota operations + - btrfs: check the root node for uptodate before returning it + - btrfs: respect the max size in the header when activating swap file + - ext4: make sure to reset inode lockdep class when quota enabling fails + - ext4: make sure quota gets properly shutdown on error + - ext4: fix a possible ABBA deadlock due to busy PA + - ext4: initialize err_blk before calling __ext4_get_inode_loc + - ext4: fix fast commit may miss tracking range for FALLOC_FL_ZERO_RANGE + - ext4: set csum seed in tmp inode while migrating to extents + - ext4: Fix BUG_ON in ext4_bread when write quota data + - ext4: use ext4_ext_remove_space() for fast commit replay delete range + - ext4: fast commit may miss tracking unwritten range during ftruncate + - ext4: destroy ext4_fc_dentry_cachep kmemcache on module removal + - ext4: fix null-ptr-deref in '__ext4_journal_ensure_credits' + - ext4: fix an use-after-free issue about data=journal writeback mode + - ext4: don't use the orphan list when migrating an inode + - tracing/osnoise: Properly unhook events if start_per_cpu_kthreads() fails + - ath11k: qmi: avoid error messages when dma allocation fails + - drm/radeon: fix error handling in radeon_driver_open_kms + - of: base: Improve argument length mismatch error + - firmware: Update Kconfig help text for Google firmware + - can: mcp251xfd: mcp251xfd_tef_obj_read(): fix typo in error message + - media: rcar-csi2: Optimize the selection PHTW register + - drm/vc4: hdmi: Make sure the device is powered with CEC + - media: correct MEDIA_TEST_SUPPORT help text + - Documentation: coresight: Fix documentation issue + - Documentation: dmaengine: Correctly describe dmatest with channel unset + - Documentation: ACPI: Fix data node reference documentation + - Documentation, arch: Remove leftovers from raw device + - Documentation, arch: Remove leftovers from CIFS_WEAK_PW_HASH + - Documentation: refer to config RANDOMIZE_BASE for kernel address-space + randomization + - Documentation: fix firewire.rst ABI file path error + - net: usb: Correct reset handling of smsc95xx + - Bluetooth: hci_sync: Fix not setting adv set duration + - scsi: core: Show SCMD_LAST in text form + - scsi: ufs: ufs-mediatek: Fix error checking in ufs_mtk_init_va09_pwr_ctrl() + - RDMA/cma: Remove open coding of overflow checking for private_data_len + - dmaengine: uniphier-xdmac: Fix type of address variables + - dmaengine: idxd: fix wq settings post wq disable + - RDMA/hns: Modify the mapping attribute of doorbell to device + - RDMA/rxe: Fix a typo in opcode name + - dmaengine: stm32-mdma: fix STM32_MDMA_CTBR_TSEL_MASK + - Revert "net/mlx5: Add retry mechanism to the command entry index allocation" + - powerpc/cell: Fix clang -Wimplicit-fallthrough warning + - powerpc/fsl/dts: Enable WA for erratum A-009885 on fman3l MDIO buses + - block: fix async_depth sysfs interface for mq-deadline + - block: Fix fsync always failed if once failed + - drm/vc4: crtc: Drop feed_txp from state + - drm/vc4: Fix non-blocking commit getting stuck forever + - drm/vc4: crtc: Copy assigned channel to the CRTC + - bpftool: Remove inclusion of utilities.mak from Makefiles + - bpftool: Fix indent in option lists in the documentation + - xdp: check prog type before updating BPF link + - bpf: Fix mount source show for bpffs + - bpf: Mark PTR_TO_FUNC register initially with zero offset + - perf evsel: Override attr->sample_period for non-libpfm4 events + - ipv4: update fib_info_cnt under spinlock protection + - ipv4: avoid quadratic behavior in netns dismantle + - mlx5: Don't accidentally set RTO_ONLINK before mlx5e_route_lookup_ipv4_get() + - net/fsl: xgmac_mdio: Add workaround for erratum A-009885 + - net/fsl: xgmac_mdio: Fix incorrect iounmap when removing module + - parisc: pdc_stable: Fix memory leak in pdcs_register_pathentries + - riscv: dts: microchip: mpfs: Drop empty chosen node + - drm/vmwgfx: Remove explicit transparent hugepages support + - drm/vmwgfx: Remove unused compile options + - f2fs: fix remove page failed in invalidate compress pages + - f2fs: fix to avoid panic in is_alive() if metadata is inconsistent + - f2fs: compress: fix potential deadlock of compress file + - f2fs: fix to reserve space for IO align feature + - f2fs: fix to check available space of CP area correctly in + update_ckpt_flags() + - crypto: octeontx2 - uninitialized variable in kvf_limits_store() + - af_unix: annote lockless accesses to unix_tot_inflight & gc_in_progress + - clk: Emit a stern warning with writable debugfs enabled + - clk: si5341: Fix clock HW provider cleanup + - pinctrl/rockchip: fix gpio device creation + - gpio: mpc8xxx: Fix IRQ check in mpc8xxx_probe + - gpio: idt3243x: Fix IRQ check in idt_gpio_probe + - net/smc: Fix hung_task when removing SMC-R devices + - net: axienet: increase reset timeout + - net: axienet: Wait for PhyRstCmplt after core reset + - net: axienet: reset core on initialization prior to MDIO access + - net: axienet: add missing memory barriers + - net: axienet: limit minimum TX ring size + - net: axienet: Fix TX ring slot available check + - net: axienet: fix number of TX ring slots for available check + - net: axienet: fix for TX busy handling + - net: axienet: increase default TX ring size to 128 + - bitops: protect find_first_{,zero}_bit properly + - um: gitignore: Add kernel/capflags.c + - HID: vivaldi: fix handling devices not using numbered reports + - rtc: pxa: fix null pointer dereference + - vdpa/mlx5: Fix wrong configuration of virtio_version_1_0 + - virtio_ring: mark ring unused on error + - taskstats: Cleanup the use of task->exit_code + - inet: frags: annotate races around fqdir->dead and fqdir->high_thresh + - netns: add schedule point in ops_exit_list() + - iwlwifi: fix Bz NMI behaviour + - xfrm: Don't accidentally set RTO_ONLINK in decode_session4() + - vdpa/mlx5: Restore cur_num_vqs in case of failure in change_num_qps() + - gre: Don't accidentally set RTO_ONLINK in gre_fill_metadata_dst() + - libcxgb: Don't accidentally set RTO_ONLINK in cxgb_find_route() + - perf script: Fix hex dump character output + - dmaengine: at_xdmac: Don't start transactions at tx_submit level + - dmaengine: at_xdmac: Start transfer for cyclic channels in issue_pending + - dmaengine: at_xdmac: Print debug message after realeasing the lock + - dmaengine: at_xdmac: Fix concurrency over xfers_list + - dmaengine: at_xdmac: Fix lld view setting + - dmaengine: at_xdmac: Fix at_xdmac_lld struct definition + - perf tools: Drop requirement for libstdc++.so for libopencsd check + - perf probe: Fix ppc64 'perf probe add events failed' case + - devlink: Remove misleading internal_flags from health reporter dump + - arm64: dts: qcom: msm8996: drop not documented adreno properties + - net: fix sock_timestamping_bind_phc() to release device + - net: bonding: fix bond_xmit_broadcast return value error bug + - net: ipa: fix atomic update in ipa_endpoint_replenish() + - net_sched: restore "mpu xxx" handling + - net: mscc: ocelot: don't let phylink re-enable TX PAUSE on the NPI port + - bcmgenet: add WOL IRQ check + - net: wwan: Fix MRU mismatch issue which may lead to data connection lost + - net: ethernet: mtk_eth_soc: fix error checking in mtk_mac_config() + - net: ocelot: Fix the call to switchdev_bridge_port_offload + - net: sfp: fix high power modules without diagnostic monitoring + - net: cpsw: avoid alignment faults by taking NET_IP_ALIGN into account + - net: phy: micrel: use kszphy_suspend()/kszphy_resume for irq aware devices + - net: mscc: ocelot: fix using match before it is set + - dt-bindings: display: meson-dw-hdmi: add missing sound-name-prefix property + - dt-bindings: display: meson-vpu: Add missing amlogic,canvas property + - dt-bindings: watchdog: Require samsung,syscon-phandle for Exynos7 + - sch_api: Don't skip qdisc attach on ingress + - scripts/dtc: dtx_diff: remove broken example from help text + - lib82596: Fix IRQ check in sni_82596_probe + - mm/hmm.c: allow VM_MIXEDMAP to work with hmm_range_fault + - bonding: Fix extraction of ports from the packet headers + - lib/test_meminit: destroy cache in kmem_cache_alloc_bulk() test + - scripts: sphinx-pre-install: add required ctex dependency + - scripts: sphinx-pre-install: Fix ctex support on Debian + - Linux 5.15.17 + * rtw88_8821ce causes freeze (LP: #1927808) // Jammy update: v5.15.17 upstream + stable release (LP: #1959376) + - rtw88: Disable PCIe ASPM while doing NAPI poll on 8821CE + * Jammy update: v5.15.16 upstream stable release (LP: #1958977) + - devtmpfs regression fix: reconfigure on each mount + - orangefs: Fix the size of a memory allocation in orangefs_bufmap_alloc() + - remoteproc: qcom: pil_info: Don't memcpy_toio more than is provided + - perf: Protect perf_guest_cbs with RCU + - KVM: x86: Register perf callbacks after calling vendor's hardware_setup() + - KVM: x86: Register Processor Trace interrupt hook iff PT enabled in guest + - KVM: x86: don't print when fail to read/write pv eoi memory + - KVM: s390: Clarify SIGP orders versus STOP/RESTART + - remoteproc: qcom: pas: Add missing power-domain "mxc" for CDSP + - 9p: only copy valid iattrs in 9P2000.L setattr implementation + - video: vga16fb: Only probe for EGA and VGA 16 color graphic cards + - media: uvcvideo: fix division by zero at stream start + - rtlwifi: rtl8192cu: Fix WARNING when calling local_irq_restore() with + interrupts enabled + - firmware: qemu_fw_cfg: fix sysfs information leak + - firmware: qemu_fw_cfg: fix NULL-pointer deref on duplicate entries + - firmware: qemu_fw_cfg: fix kobject leak in probe error path + - perf annotate: Avoid TUI crash when navigating in the annotation of + recursive functions + - KVM: x86: remove PMU FIXED_CTR3 from msrs_to_save_all + - ALSA: hda/realtek: Add speaker fixup for some Yoga 15ITL5 devices + - ALSA: hda/realtek - Fix silent output on Gigabyte X570 Aorus Master after + reboot from Windows + - ALSA: hda: ALC287: Add Lenovo IdeaPad Slim 9i 14ITL5 speaker quirk + - ALSA: hda/tegra: Fix Tegra194 HDA reset failure + - ALSA: hda/realtek: Add quirk for Legion Y9000X 2020 + - ALSA: hda/realtek: Re-order quirk entries for Lenovo + - mtd: fixup CFI on ixp4xx + - Linux 5.15.16 + * UBSAN: array-index-out-of-bounds in dcn31_resources on AMD yellow carp + platform (LP: #1958229) + - drm/amd/display: Fix out of bounds access on DNC31 stream encoder regs + * Jammy update: v5.15.15 upstream stable release (LP: #1958418) + - s390/kexec: handle R_390_PLT32DBL rela in arch_kexec_apply_relocations_add() + - workqueue: Fix unbind_workers() VS wq_worker_running() race + - staging: r8188eu: switch the led off during deinit + - bpf: Fix out of bounds access from invalid *_or_null type verification + - Bluetooth: btusb: Add protocol for MediaTek bluetooth devices(MT7922) + - Bluetooth: btusb: Add the new support ID for Realtek RTL8852A + - Bluetooth: btusb: Add support for IMC Networks Mediatek Chip(MT7921) + - Bbluetooth: btusb: Add another Bluetooth part for Realtek 8852AE + - Bluetooth: btusb: fix memory leak in btusb_mtk_submit_wmt_recv_urb() + - Bluetooth: btusb: enable Mediatek to support AOSP extension + - Bluetooth: btusb: Add one more Bluetooth part for the Realtek RTL8852AE + - fget: clarify and improve __fget_files() implementation + - Bluetooth: btusb: Add two more Bluetooth parts for WCN6855 + - Bluetooth: btusb: Add support for Foxconn MT7922A + - Bluetooth: btintel: Fix broken LED quirk for legacy ROM devices + - Bluetooth: btusb: Add support for Foxconn QCA 0xe0d0 + - Bluetooth: bfusb: fix division by zero in send path + - ARM: dts: exynos: Fix BCM4330 Bluetooth reset polarity in I9100 + - USB: core: Fix bug in resuming hub's handling of wakeup requests + - USB: Fix "slab-out-of-bounds Write" bug in usb_hcd_poll_rh_status + - ath11k: Fix buffer overflow when scanning with extraie + - mmc: sdhci-pci: Add PCI ID for Intel ADL + - Bluetooth: add quirk disabling LE Read Transmit Power + - Bluetooth: btbcm: disable read tx power for some Macs with the T2 Security + chip + - Bluetooth: btbcm: disable read tx power for MacBook Air 8,1 and 8,2 + - veth: Do not record rx queue hint in veth_xmit + - mfd: intel-lpss: Fix too early PM enablement in the ACPI ->probe() + - can: gs_usb: fix use of uninitialized variable, detach device on reception + of invalid USB data + - can: isotp: convert struct tpcon::{idx,len} to unsigned int + - can: gs_usb: gs_can_start_xmit(): zero-initialize hf->{flags,reserved} + - random: fix data race on crng_node_pool + - random: fix data race on crng init time + - random: fix crash on multiple early calls to add_bootloader_randomness() + - platform/x86/intel: hid: add quirk to support Surface Go 3 + - media: Revert "media: uvcvideo: Set unique vdev name based in type" + - staging: wlan-ng: Avoid bitwise vs logical OR warning in + hfa384x_usb_throttlefn() + - drm/i915: Avoid bitwise vs logical OR warning in snb_wm_latency_quirk() + - staging: greybus: fix stack size warning with UBSAN + - Linux 5.15.15 + * UBSAN warning on unplugging USB4 DP alt mode from AMD Yellow Carp graphics + card (LP: #1956497) + - drm/amd/display: explicitly set is_dsc_supported to false before use + * Support USB4 DP alt mode for AMD Yellow Carp graphics card (LP: #1953008) + - drm/amd/display: Enable PSR by default on newer DCN + - SAUCE: drm/amd/display: Fixup previous PSR policy commit + - drm/amd/display: Fix USB4 hot plug crash issue + - drm/amd/display: Creating a fw boot options bit for an upcoming feature + - drm/amd/display: Enable dpia in dmub only for DCN31 B0 + - drm/amd/display: MST support for DPIA + - drm/amd/display: Set phy_mux_sel bit in dmub scratch register + - drm/amd/display: Don't lock connection_mutex for DMUB HPD + - drm/amd/display: Add callbacks for DMUB HPD IRQ notifications + * Jammy update: v5.15.14 upstream stable release (LP: #1957882) + - fscache_cookie_enabled: check cookie is valid before accessing it + - selftests: x86: fix [-Wstringop-overread] warn in test_process_vm_readv() + - tracing: Fix check for trace_percpu_buffer validity in get_trace_buf() + - tracing: Tag trace_percpu_buffer as a percpu pointer + - Revert "RDMA/mlx5: Fix releasing unallocated memory in dereg MR flow" + - ieee802154: atusb: fix uninit value in atusb_set_extended_addr + - i40e: Fix to not show opcode msg on unsuccessful VF MAC change + - iavf: Fix limit of total number of queues to active queues of VF + - RDMA/core: Don't infoleak GRH fields + - Revert "net: usb: r8152: Add MAC passthrough support for more Lenovo Docks" + - netrom: fix copying in user data in nr_setsockopt + - RDMA/uverbs: Check for null return of kmalloc_array + - mac80211: initialize variable have_higher_than_11mbit + - mac80211: mesh: embedd mesh_paths and mpp_paths into ieee80211_if_mesh + - sfc: The RX page_ring is optional + - i40e: fix use-after-free in i40e_sync_filters_subtask() + - i40e: Fix for displaying message regarding NVM version + - i40e: Fix incorrect netdev's real number of RX/TX queues + - ftrace/samples: Add missing prototypes direct functions + - ipv4: Check attribute length for RTA_GATEWAY in multipath route + - ipv4: Check attribute length for RTA_FLOW in multipath route + - ipv6: Check attribute length for RTA_GATEWAY in multipath route + - ipv6: Check attribute length for RTA_GATEWAY when deleting multipath route + - lwtunnel: Validate RTA_ENCAP_TYPE attribute length + - selftests: net: udpgro_fwd.sh: explicitly checking the available ping + feature + - sctp: hold endpoint before calling cb in sctp_transport_lookup_process + - batman-adv: mcast: don't send link-local multicast to mcast routers + - sch_qfq: prevent shift-out-of-bounds in qfq_init_qdisc + - net: ena: Fix undefined state when tx request id is out of bounds + - net: ena: Fix wrong rx request id by resetting device + - net: ena: Fix error handling when calculating max IO queues number + - md/raid1: fix missing bitmap update w/o WriteMostly devices + - EDAC/i10nm: Release mdev/mbase when failing to detect HBM + - KVM: x86: Check for rmaps allocation + - cgroup: Use open-time credentials for process migraton perm checks + - cgroup: Allocate cgroup_file_ctx for kernfs_open_file->priv + - cgroup: Use open-time cgroup namespace for process migration perm checks + - Revert "i2c: core: support bus regulator controlling in adapter" + - i2c: mpc: Avoid out of bounds memory access + - power: supply: core: Break capacity loop + - power: reset: ltc2952: Fix use of floating point literals + - reset: renesas: Fix Runtime PM usage + - rndis_host: support Hytera digital radios + - gpio: gpio-aspeed-sgpio: Fix wrong hwirq base in irq handler + - net ticp:fix a kernel-infoleak in __tipc_sendmsg() + - phonet: refcount leak in pep_sock_accep + - fbdev: fbmem: add a helper to determine if an aperture is used by a fw fb + - drm/amdgpu: disable runpm if we are the primary adapter + - power: bq25890: Enable continuous conversion for ADC at charging + - ipv6: Continue processing multipath route even if gateway attribute is + invalid + - ipv6: Do cleanup if attribute validation fails in multipath route + - auxdisplay: charlcd: checking for pointer reference before dereferencing + - drm/amdgpu: fix dropped backing store handling in amdgpu_dma_buf_move_notify + - drm/amd/pm: Fix xgmi link control on aldebaran + - usb: mtu3: fix interval value for intr and isoc + - scsi: libiscsi: Fix UAF in iscsi_conn_get_param()/iscsi_conn_teardown() + - ip6_vti: initialize __ip6_tnl_parm struct in vti6_siocdevprivate + - net: udp: fix alignment problem in udp4_seq_show() + - atlantic: Fix buff_ring OOB in aq_ring_rx_clean + - drm/amd/pm: skip setting gfx cgpg in the s0ix suspend-resume + - mISDN: change function names to avoid conflicts + - drm/amd/display: fix B0 TMDS deepcolor no dislay issue + - drm/amd/display: Added power down for DCN10 + - ipv6: raw: check passed optlen before reading + - userfaultfd/selftests: fix hugetlb area allocations + - ARM: dts: gpio-ranges property is now required + - Input: zinitix - make sure the IRQ is allocated before it gets enabled + - Revert "drm/amdgpu: stop scheduler when calling hw_fini (v2)" + - drm/amd/pm: keep the BACO feature enabled for suspend + - Linux 5.15.14 + * alsa/sdw: add sdw audio machine driver for several ADL machines + (LP: #1951563) + - ASoC: Intel: sof_sdw: Add support for SKU 0AF3 product + - ASoC: Intel: soc-acpi: add SKU 0AF3 SoundWire configuration + - ASoC: Intel: sof_sdw: Add support for SKU 0B00 and 0B01 products + - ASoC: Intel: sof_sdw: Add support for SKU 0B11 product + - ASoC: Intel: sof_sdw: Add support for SKU 0B13 product + - ASoC: Intel: soc-acpi: add SKU 0B13 SoundWire configuration + - ASoC: Intel: sof_sdw: Add support for SKU 0B29 product + - ASoC: Intel: soc-acpi: add SKU 0B29 SoundWire configuration + - ASoC: Intel: sof_sdw: Add support for SKU 0B12 product + - ASoC: intel: sof_sdw: return the original error number + - ASoC: intel: sof_sdw: rename be_index/link_id to link_index + - ASoC: intel: sof_sdw: Use a fixed DAI link id for AMP + - ASoC: intel: sof_sdw: move DMIC link id overwrite to create_sdw_dailink + - ASoC: intel: sof_sdw: remove SOF_RT715_DAI_ID_FIX quirk + - ASoC: intel: sof_sdw: remove sof_sdw_mic_codec_mockup_init + - ASoC: intel: sof_sdw: remove get_next_be_id + - ASoC: intel: sof_sdw: add link adr order check + * Add basic Wifi support for Qualcomm WCN6856 (LP: #1955613) + - ath11k: change to use dynamic memory for channel list of scan + - ath11k: add string type to search board data in board-2.bin for WCN6855 + * Enable audio mute LED and mic mute LED on a new HP laptop (LP: #1956454) + - ALSA: hda/realtek: Use ALC285_FIXUP_HP_GPIO_LED on another HP laptop + * Add missing BT ID for Qualcomm WCN6856 (LP: #1956407) + - Bluetooth: btusb: Add one more Bluetooth part for WCN6855 + * Add Bluetooth support for Qualcomm WCN6856 (LP: #1955689) + - Bluetooth: btusb: Add support using different nvm for variant WCN6855 + controller + - Bluetooth: btusb: re-definition for board_id in struct qca_version + - Bluetooth: btusb: Add the new support IDs for WCN6855 + * Improve performance and idle power consumption (LP: #1941893) + - x86: ACPI: cstate: Optimize C3 entry on AMD CPUs + * [Yellow Carp] USB4 interdomain communication problems (LP: #1945361) + - thunderbolt: Enable retry logic for intra-domain control packets + * 1951111: + - scsi: lpfc: Fix mailbox command failure during driver initialization + * [Jammy] Update Broadcom Emulex FC HBA lpfc driver to 14.0.0.3 for Ubuntu + 22.04 (LP: #1951111) + - scsi: lpfc: Fix premature rpi release for unsolicited TPLS and LS_RJT + - scsi: lpfc: Fix hang on unload due to stuck fport node + - scsi: lpfc: Fix rediscovery of tape device after LIP + - scsi: lpfc: Don't remove ndlp on PRLI errors in P2P mode + - scsi: lpfc: Fix EEH support for NVMe I/O + - scsi: lpfc: Adjust bytes received vales during cmf timer interval + - scsi: lpfc: Fix I/O block after enabling managed congestion mode + - scsi: lpfc: Zero CGN stats only during initial driver load and stat reset + - scsi: lpfc: Improve PBDE checks during SGL processing + - scsi: lpfc: Update lpfc version to 14.0.0.2 + * smartpqi: Update 20.04.4 to latest kernel.org patch level (LP: #1953689) + - scsi: smartpqi: Update device removal management + - scsi: smartpqi: Capture controller reason codes + - scsi: smartpqi: Update LUN reset handler + - scsi: smartpqi: Add TEST UNIT READY check for SANITIZE operation + - scsi: smartpqi: Avoid failing I/Os for offline devices + - scsi: smartpqi: Add extended report physical LUNs + - scsi: smartpqi: Fix boot failure during LUN rebuild + - scsi: smartpqi: Fix duplicate device nodes for tape changers + - scsi: smartpqi: Add 3252-8i PCI id + - scsi: smartpqi: Update version to 2.1.12-055 + * Let VMD follow host bridge PCIe settings (LP: #1954611) + - PCI: vmd: Honor ACPI _OSC on PCIe features + * Fix spurious wakeup caused by Intel 7560 WWAN (LP: #1956443) + - net: wwan: iosm: Keep device at D0 for s2idle case + * [uacc-0623] hisi_sec2 fail to alloc uacce (LP: #1933301) + - crypto: hisilicon/qm - modify the uacce mode check + * Jammy update: v5.15.13 upstream stable release (LP: #1956926) + - Input: i8042 - add deferred probe support + - Input: i8042 - enable deferred probe quirk for ASUS UM325UA + - tomoyo: Check exceeded quota early in tomoyo_domain_quota_is_ok(). + - tomoyo: use hwight16() in tomoyo_domain_quota_is_ok() + - net/sched: Extend qdisc control block with tc control block + - parisc: Clear stale IIR value on instruction access rights trap + - platform/mellanox: mlxbf-pmc: Fix an IS_ERR() vs NULL bug in + mlxbf_pmc_map_counters + - platform/x86: apple-gmux: use resource_size() with res + - memblock: fix memblock_phys_alloc() section mismatch error + - recordmcount.pl: fix typo in s390 mcount regex + - powerpc/ptdump: Fix DEBUG_WX since generic ptdump conversion + - efi: Move efifb_setup_from_dmi() prototype from arch headers + - selinux: initialize proto variable in selinux_ip_postroute_compat() + - scsi: lpfc: Terminate string in lpfc_debugfs_nvmeio_trc_write() + - net/mlx5: DR, Fix NULL vs IS_ERR checking in dr_domain_init_resources + - net/mlx5: Fix error print in case of IRQ request failed + - net/mlx5: Fix SF health recovery flow + - net/mlx5: Fix tc max supported prio for nic mode + - net/mlx5e: Wrap the tx reporter dump callback to extract the sq + - net/mlx5e: Fix interoperability between XSK and ICOSQ recovery flow + - net/mlx5e: Fix ICOSQ recovery flow for XSK + - net/mlx5e: Use tc sample stubs instead of ifdefs in source file + - net/mlx5e: Delete forward rule for ct or sample action + - udp: using datalen to cap ipv6 udp max gso segments + - selftests: Calculate udpgso segment count without header adjustment + - sctp: use call_rcu to free endpoint + - net/smc: fix using of uninitialized completions + - net: usb: pegasus: Do not drop long Ethernet frames + - net: ag71xx: Fix a potential double free in error handling paths + - net: lantiq_xrx200: fix statistics of received bytes + - NFC: st21nfca: Fix memory leak in device probe and remove + - net/smc: don't send CDC/LLC message if link not ready + - net/smc: fix kernel panic caused by race of smc_sock + - igc: Do not enable crosstimestamping for i225-V models + - igc: Fix TX timestamp support for non-MSI-X platforms + - drm/amd/display: Send s0i2_rdy in stream_count == 0 optimization + - drm/amd/display: Set optimize_pwr_state for DCN31 + - ionic: Initialize the 'lif->dbid_inuse' bitmap + - net/mlx5e: Fix wrong features assignment in case of error + - net: bridge: mcast: add and enforce query interval minimum + - net: bridge: mcast: add and enforce startup query interval minimum + - selftests/net: udpgso_bench_tx: fix dst ip argument + - selftests: net: Fix a typo in udpgro_fwd.sh + - net: bridge: mcast: fix br_multicast_ctx_vlan_global_disabled helper + - net/ncsi: check for error return from call to nla_put_u32 + - selftests: net: using ping6 for IPv6 in udpgro_fwd.sh + - fsl/fman: Fix missing put_device() call in fman_port_probe + - i2c: validate user data in compat ioctl + - nfc: uapi: use kernel size_t to fix user-space builds + - uapi: fix linux/nfc.h userspace compilation errors + - drm/nouveau: wait for the exclusive fence after the shared ones v2 + - drm/amdgpu: When the VCN(1.0) block is suspended, powergating is explicitly + enabled + - drm/amdgpu: add support for IP discovery gc_info table v2 + - drm/amd/display: Changed pipe split policy to allow for multi-display pipe + split + - xhci: Fresco FL1100 controller should not have BROKEN_MSI quirk set. + - usb: gadget: f_fs: Clear ffs_eventfd in ffs_data_clear. + - usb: mtu3: add memory barrier before set GPD's HWO + - usb: mtu3: fix list_head check warning + - usb: mtu3: set interval of FS intr and isoc endpoint + - nitro_enclaves: Use get_user_pages_unlocked() call to handle mmap assert + - binder: fix async_free_space accounting for empty parcels + - scsi: vmw_pvscsi: Set residual data length conditionally + - Input: appletouch - initialize work before device registration + - Input: spaceball - fix parsing of movement data packets + - mm/damon/dbgfs: fix 'struct pid' leaks in 'dbgfs_target_ids_write()' + - net: fix use-after-free in tw_timer_handler + - fs/mount_setattr: always cleanup mount_kattr + - perf intel-pt: Fix parsing of VM time correlation arguments + - perf script: Fix CPU filtering of a script's switch events + - perf scripts python: intel-pt-events.py: Fix printing of switch events + - Linux 5.15.13 + * Miscellaneous Ubuntu changes + - [Packaging] getabis: Add fwinfo.builtin to the ABI + - [Packaging] Add list of built-in firmwares to the ABI + - [Config] x86-64: SYSFB_SIMPLEFB=y + - [packaging] arm64: introduce the lowlatency and lowlatency-64k flavours + - [packaging] arm64: updateconfigs + - [Config] annotations: remove duplicates when arm64-generic == + arm64-generic-64k option + - [Config] annotations: introduce arm64-lowlatency and arm64-lowlatency-64k + kconfig options checks + - [Packaging] Update dependency of pahole / dwarves + - [Config] toolchain version update + * Miscellaneous upstream changes + - scsi: lpfc: Revert LOG_TRACE_EVENT back to LOG_INIT prior to + driver_resource_setup() + - scsi: lpfc: Correct sysfs reporting of loop support after SFP status change + - scsi: lpfc: Allow PLOGI retry if previous PLOGI was aborted + - scsi: lpfc: Update lpfc version to 14.0.0.3 + - Revert "rtw88: Disable PCIe ASPM while doing NAPI poll on 8821CE" + + -- Tim Gardner Mon, 07 Feb 2022 12:45:08 -0700 + +linux-azure (5.15.0-1000.1) jammy; urgency=medium + + * jammy/linux-azure: 5.15.0-1000.1 -proposed tracker (LP: #1959703) + + * Packaging resync (LP: #1786013) + - [Packaging] update Ubuntu.md + - [Packaging] update update.conf + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous Ubuntu changes + - [Packaging] azure: Enable arm64 and signed kernels + - [Config] azure: Note CC, AS, and LD version updates + - [Config] azure: CONFIG_BPF_LSM=y + + [ Ubuntu: 5.15.0-18.18 ] + + * jammy/linux: 5.15.0-18.18 -proposed tracker (LP: #1958638) + * CVE-2021-4155 + - xfs: map unwritten blocks in XFS_IOC_{ALLOC, FREE}SP just like fallocate + * CVE-2022-0185 + - SAUCE: vfs: test that one given mount param is not larger than PAGE_SIZE + * [UBUNTU 20.04] KVM hardware diagnose data improvements for guest kernel - + kernel part (LP: #1953334) + - KVM: s390: add debug statement for diag 318 CPNC data + * OOB write on BPF_RINGBUF (LP: #1956585) + - SAUCE: bpf: prevent helper argument PTR_TO_ALLOC_MEM to have offset other + than 0 + * Miscellaneous Ubuntu changes + - [Config] re-enable shiftfs + - [SAUCE] shiftfs: support kernel 5.15 + - [Config] update toolchain versions + * Miscellaneous upstream changes + - vfs: fs_context: fix up param length parsing in legacy_parse_param + + -- Tim Gardner Tue, 01 Feb 2022 11:19:24 -0700 + +linux-azure (5.15.0-0.0) jammy; urgency=medium + + * Dummy entry + + -- Tim Gardner Fri, 28 Jan 2022 15:12:58 -0700 diff --git a/debian.azure/config/annotations b/debian.azure/config/annotations new file mode 100644 index 0000000000000..aa5a1e76beb5b --- /dev/null +++ b/debian.azure/config/annotations @@ -0,0 +1,5116 @@ +# Menu: HEADER +# FORMAT: 4 +# ARCH: amd64 arm64 +# FLAVOUR: amd64-azure arm64-azure + +include "../../debian.master/config/annotations" + +CONFIG_ACPI_CUSTOM_DSDT_FILE policy<{'amd64': '""', 'arm64': '""'}> +CONFIG_ACPI_CUSTOM_DSDT_FILE note<'might allow hardware damage'> + +CONFIG_ACPI_HOTPLUG_MEMORY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_HOTPLUG_MEMORY note<'LP:#1671203'> + +CONFIG_ACPI_NFIT policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_NFIT note<'LP:#1715755'> + +CONFIG_ARM_SDE_INTERFACE policy<{'arm64': '-'}> +CONFIG_ARM_SDE_INTERFACE note<'LP: #1990162'> + +CONFIG_ATARI_PARTITION policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ATARI_PARTITION note<'LP:1908264'> + +CONFIG_BLK_DEV_FD policy<{'amd64': 'n'}> +CONFIG_BLK_DEV_FD note<'LP: #1972017'> + +CONFIG_BLK_DEV_NVME policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_BLK_DEV_NVME note<'LP:#1908571'> + +CONFIG_BLK_DEV_PMEM policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_BLK_DEV_PMEM note<'LP:#1711230'> + +CONFIG_BT_HS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HS note<'https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00435.html'> + +CONFIG_CHROME_PLATFORMS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHROME_PLATFORMS note<'kernel reduction'> + +CONFIG_CMA policy<{'amd64': 'n', 'arm64': 'n'}> note<'LP: #1990167'> +CONFIG_CMA_SIZE_MBYTES policy<{'arm64': '-'}> +CONFIG_CMA_SIZE_MBYTES note<'LP:1823753'> + +CONFIG_CONTEXT_TRACKING_FORCE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CONTEXT_TRACKING_FORCE note<'Likely VIRT_CPU_ACCOUNTING_GEN should be disabled'> + +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE note<'for bootspeed'> + +CONFIG_DEV_DAX policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_DEV_DAX note<'LP:#1711230'> + +CONFIG_DMA_CMA policy<{'arm64': '-'}> +CONFIG_DMA_CMA note<'LP:1803206'> + +CONFIG_DRM_MGAG200 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_MGAG200 note<'LP#1693337'> + +CONFIG_DRM_NOUVEAU policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_NOUVEAU note<'LP:#1752999'> + +CONFIG_DVB_DUMMY_FE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DUMMY_FE note<'expert use only'> + +CONFIG_EDAC_DECODE_MCE policy<{'amd64': 'y'}> +CONFIG_EDAC_DECODE_MCE note<'LP:#1793386'> + +CONFIG_FUJITSU_ES policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FUJITSU_ES note<'modules reduction'> + +CONFIG_GPIO_TWL4030 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_TWL4030 note<'Unnecessary for Azure'> + +CONFIG_HIBERNATION policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_HIBERNATION note<'LP:1967336'> + +CONFIG_HYPERV policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_HYPERV note<'LP:#1690136'> + +CONFIG_HYPERV_STORAGE policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_HYPERV_STORAGE note<'LP:#1690136'> + +CONFIG_I2C_CHARDEV policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_I2C_CHARDEV note<'LP:1417032'> + +CONFIG_I2C_PIIX4 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_I2C_PIIX4 note<'LP:#1752999'> + +CONFIG_IIO_SIMPLE_DUMMY_BUFFER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_SIMPLE_DUMMY_BUFFER note<'dummy driver'> + +CONFIG_IIO_SIMPLE_DUMMY_EVENTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_SIMPLE_DUMMY_EVENTS note<'dummy driver'> + +CONFIG_INFINIBAND_IPOIB_DEBUG policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_INFINIBAND_IPOIB_DEBUG note<'LP:#1798185'> + +CONFIG_INPUT_LEDS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_LEDS note<'modules reduction'> + +CONFIG_MANA_INFINIBAND policy<{'amd64': 'm'}> note<'LP: #2024917'> +CONFIG_MICROSOFT_MANA policy<{'amd64': 'y'}> +CONFIG_MICROSOFT_MANA note<'LP:1949357'> + +CONFIG_MMC_BLOCK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_BLOCK note<'boot essential on armhf/arm64'> + +CONFIG_MMC_SDHCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_SDHCI note<'installation essential on omap/highbank'> + +CONFIG_MMC_SDHCI_PLTFM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_SDHCI_PLTFM note<'boot essential on highbank'> + +CONFIG_MTD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MTD note<'boot essential on arm'> + +CONFIG_MTD_BLOCK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_BLOCK note<'boot essential on arm'> + +CONFIG_MTD_DOCG3 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_DOCG3 note<'Unnecessary for Azure'> + +CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE note<'can be enabled at runtime'> + +CONFIG_MTD_OF_PARTS policy<{'arm64': '-'}> +CONFIG_MTD_OF_PARTS note<'boot essential on arm'> + +CONFIG_MTD_ONENAND_VERIFY_WRITE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_ONENAND_VERIFY_WRITE note<'writes here are not checked in full without'> + +CONFIG_MTD_RAW_NAND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_RAW_NAND note<'boot essential on arm'> + +CONFIG_ND_BLK policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ND_BLK note<'LP:#1715755'> + +CONFIG_NETWORK_PHY_TIMESTAMPING policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NETWORK_PHY_TIMESTAMPING note<'Unnecessary for Azure'> + +CONFIG_NOP_USB_XCEIV policy<{'amd64': 'n', 'arm64': 'm'}> +CONFIG_NOP_USB_XCEIV note<'boot essential on omap/highbank'> + +CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT note<'Selects CONFIG_DRM_LEGACY which is not wanted'> + +CONFIG_NO_HZ_FULL policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_NO_HZ_FULL note<'Azure reports 10% of performance increase on NVMe'> + +CONFIG_NO_HZ_IDLE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NO_HZ_IDLE note<'Azure reports 10% of performance increase on NVMe'> + +CONFIG_OVERLAY_FS_REDIRECT_DIR policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_OVERLAY_FS_REDIRECT_DIR note<'LP:#1711230'> + +CONFIG_PCI_HYPERV policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_PCI_HYPERV note<'LP:#1908571'> + +CONFIG_PCI_MESON policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_PCI_MESON note<'LP: #2007745'> + +CONFIG_POWERCAP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_POWERCAP note<'kernel reduction'> + +CONFIG_REGULATOR_TWL4030 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_TWL4030 note<'Unnecessary for Azure'> + +CONFIG_RTC_DRV_TWL4030 policy<{'arm64': '-'}> +CONFIG_RTC_DRV_TWL4030 note<'boot essential on OMAP3/OMAP4'> + +CONFIG_SAMPLE_TRACE_PRINTK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_TRACE_PRINTK note<'Unnecessary for Azure'> + +CONFIG_SATA_ACARD_AHCI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SATA_ACARD_AHCI note<'modules reduction'> + +CONFIG_SATA_INIC162X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SATA_INIC162X note<'modules reduction'> + +CONFIG_SATA_MV policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SATA_MV note<'modules reduction'> + +CONFIG_SATA_NV policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SATA_NV note<'modules reduction'> + +CONFIG_SATA_PROMISE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SATA_PROMISE note<'modules reduction'> + +CONFIG_SATA_QSTOR policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SATA_QSTOR note<'modules reduction'> + +CONFIG_SATA_SIL policy<{'amd64': 'n', 'arm64': 'm'}> +CONFIG_SATA_SIL note<'modules reduction'> + +CONFIG_SATA_SIL24 policy<{'amd64': 'n', 'arm64': 'm'}> +CONFIG_SATA_SIL24 note<'modules reduction'> + +CONFIG_SATA_SIS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SATA_SIS note<'modules reduction'> + +CONFIG_SATA_SVW policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SATA_SVW note<'modules reduction'> + +CONFIG_SATA_SX4 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SATA_SX4 note<'modules reduction'> + +CONFIG_SATA_ULI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SATA_ULI note<'modules reduction'> + +CONFIG_SATA_VIA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SATA_VIA note<'modules reduction'> + +CONFIG_SATA_VITESSE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SATA_VITESSE note<'modules reduction'> + +CONFIG_SATA_ZPODD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SATA_ZPODD note<'modules reduction'> + +CONFIG_SERIAL_DEV_BUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SERIAL_DEV_BUS note<'LP:1739939'> + +CONFIG_SERIAL_DEV_CTRL_TTYPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SERIAL_DEV_CTRL_TTYPORT note<'LP:1739939'> + +CONFIG_SND_HDA_POWER_SAVE_DEFAULT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_POWER_SAVE_DEFAULT note<'LP:1804265'> + +CONFIG_SND_HDA_RECONFIG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_RECONFIG note<'allows fixes to be tested live'> + +CONFIG_SND_HDA_SCODEC_CS35L41 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_SCODEC_CS35L41 note<'LP:#1965496'> + +CONFIG_SND_HDA_SCODEC_CS35L41_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_SCODEC_CS35L41_I2C note<'LP:#1965496'> + +CONFIG_SND_HDA_SCODEC_CS35L41_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_SCODEC_CS35L41_SPI note<'LP:#1965496'> + +CONFIG_SND_PCM_OSS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_PCM_OSS note<'deprecated in favour of pulseaudio emulation'> + +CONFIG_SND_SOC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SND_SOC note<'not autoloadable on omap'> + +CONFIG_SND_SOC_AMD_ACP6x policy<{'amd64': '-'}> +CONFIG_SND_SOC_AMD_ACP6x note<'LP:1949245'> + +CONFIG_SND_SOC_AMD_RENOIR policy<{'amd64': '-'}> +CONFIG_SND_SOC_AMD_RENOIR note<'Unnecessary for Azure'> + +CONFIG_SND_SOC_AMD_RENOIR_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_AMD_RENOIR_MACH note<'Unnecessary for Azure'> + +CONFIG_SND_SOC_AMD_YC_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_AMD_YC_MACH note<'LP:1949245'> + +CONFIG_SND_SOC_CS35L41 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS35L41 note<'LP:#1965496'> + +CONFIG_SND_SOC_CS35L41_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS35L41_I2C note<'LP:#1965496'> + +CONFIG_SND_SOC_CS35L41_LIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS35L41_LIB note<'LP:#1965496'> + +CONFIG_SND_SOC_CS35L41_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS35L41_SPI note<'LP:#1965496'> + +CONFIG_SND_SOC_INTEL_CFL policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_CFL note<'Not selectable for Azure'> + +CONFIG_SND_SOC_INTEL_CML_H policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_CML_H note<'Not selectable for Azure'> + +CONFIG_SND_SOC_INTEL_CML_LP policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_CML_LP note<'Not selectable for Azure'> + +CONFIG_SND_SOC_INTEL_CNL policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_CNL note<'Not selectable for Azure'> + +CONFIG_SND_SOC_INTEL_SKYLAKE policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SKYLAKE note<'Not selectable for Azure'> + +CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC note<'Not selectable for Azure'> + +CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH note<'LP:1921632'> + +CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES note<'LP:1921632'> + +CONFIG_SND_SOC_SOF_HDA_ALWAYS_ENABLE_DMI_L1 policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_HDA_ALWAYS_ENABLE_DMI_L1 note<'Unnecessary for Azure'> + +CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC note<'Unnecessary for Azure'> + +CONFIG_SND_SOC_SOF_HDA_COMMON_HDMI_CODEC policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_HDA_COMMON_HDMI_CODEC note<'Not selectable for Azure'> + +CONFIG_SND_SOC_SOF_HDA_LINK policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_HDA_LINK note<'Unnecessary for Azure'> + +CONFIG_SND_SOC_SOF_NOCODEC_SUPPORT policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_NOCODEC_SUPPORT note<'Unnecessary for Azure'> + +CONFIG_SOUND_OSS_CORE_PRECLAIM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SOUND_OSS_CORE_PRECLAIM note<'Unnecessary for Azure'> + +CONFIG_SPI_INTEL_SPI_PCI policy<{'amd64': '-'}> +CONFIG_SPI_INTEL_SPI_PCI note<'Unnecessary for Azure'> + +CONFIG_SPI_INTEL_SPI_PLATFORM policy<{'amd64': '-'}> +CONFIG_SPI_INTEL_SPI_PLATFORM note<'Unnecessary for Azure'> + +CONFIG_TCG_TIS_I2C_ATMEL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TCG_TIS_I2C_ATMEL note<'LP:1643652'> + +CONFIG_TCG_TIS_I2C_INFINEON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TCG_TIS_I2C_INFINEON note<'LP:1643652'> + +CONFIG_TCG_TIS_I2C_NUVOTON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TCG_TIS_I2C_NUVOTON note<'LP:1643652'> + +CONFIG_TEST_BLACKHOLE_DEV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_BLACKHOLE_DEV note<'Used by net selftests'> + +CONFIG_TEST_LOCKUP policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_TEST_LOCKUP note<'LP: #2052723'> + +CONFIG_TOUCHSCREEN_ELAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ELAN note<'kernel reduction'> + +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS policy<{'amd64': 'y', 'arm64': 'n'}> note<'LP: #1988434'> +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE policy<{'amd64': 'n', 'arm64': 'y'}> note<'LP: #1988434'> +CONFIG_USB_EHCI_HCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_EHCI_HCD note<'kernel reduction'> + +CONFIG_USB_EHCI_HCD_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_EHCI_HCD_PLATFORM note<'kernel reduction'> + +CONFIG_USB_HCD_BCMA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_HCD_BCMA note<'USB_{O,E}HCI_HCD_PLATFORM must be off on omap'> + +CONFIG_USB_HCD_SSB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_HCD_SSB note<'USB_{O,E}HCI_HCD_PLATFORM must be off on omap'> + +CONFIG_USB_M66592 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_M66592 note<'gadget device'> + +CONFIG_USB_MUSB_HDRC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_MUSB_HDRC note<'not autoloadable on omap'> + +CONFIG_USB_OHCI_HCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_OHCI_HCD note<'Not selectable for Azure'> + +CONFIG_USB_SERIAL_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_DEBUG note<'not actually debug'> + +CONFIG_USB_UHCI_HCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_UHCI_HCD note<'kernel reduction'> + +CONFIG_USB_XHCI_PCI policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_USB_XHCI_PCI note<'Enable xHCI for PCI passthrough'> + +CONFIG_VBOXGUEST policy<{'amd64': 'n'}> +CONFIG_VBOXGUEST note<'LP:#1796647'> + +CONFIG_XEN_512GB policy<{'amd64': '-'}> +CONFIG_XEN_512GB note<'Q: is this related to the utlemming questions on memory size?'> + +CONFIG_XEN_ACPI_PROCESSOR policy<{'amd64': '-'}> +CONFIG_XEN_ACPI_PROCESSOR note<'LP:#1671203'> + +CONFIG_XEN_BLKDEV_FRONTEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_BLKDEV_FRONTEND note<'not autoloadable -- XEN paravirt support'> + +CONFIG_XEN_NETDEV_FRONTEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_NETDEV_FRONTEND note<'not autoloadable -- XEN paravirt support'> + + +# ---- Annotations without notes ---- + +CONFIG_6PACK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_88EU_AP_MODE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AAEON_IWMI_WDT policy<{'amd64': '-'}> +CONFIG_ABP060MG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AC97_BUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ACENIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ACENIC_OMIT_TIGON_I policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ACPI_AC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_ALS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ACPI_APEI_EINJ policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_APEI_GHES policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_APEI_SEA policy<{'arm64': '-'}> +CONFIG_ACPI_BATTERY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_BGRT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_CONFIGFS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_DEBUG policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_DEBUGGER policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_DEBUGGER_USER policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_DOCK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_FAN policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_ACPI_I2C_OPREGION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ACPI_PCI_SLOT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_PLATFORM_PROFILE policy<{'amd64': 'm', 'arm64': '-'}> +CONFIG_ACPI_TABLE_UPGRADE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_TAD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_THERMAL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_TOSHIBA policy<{'amd64': '-'}> +CONFIG_AD2S1200 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD2S1210 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD2S90 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5064 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5110 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD525X_DPOT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_AD525X_DPOT_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD525X_DPOT_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5272 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5360 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5380 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5421 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5446 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5449 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5504 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5592R policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5592R_BASE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5593R policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5624R_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5686 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5686_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5696_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5755 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5758 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5761 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5764 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5766 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5770R policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5791 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD5933 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7091R5 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7124 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7150 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7192 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7266 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7280 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7291 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7292 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7298 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7303 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7476 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7606 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7606_IFACE_PARALLEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7606_IFACE_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7746 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7766 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7768_1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7780 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7791 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7793 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7816 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7887 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7923 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD7949 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD799X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD8366 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD8801 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD9467 policy<{'arm64': '-'}> +CONFIG_AD9523 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD9832 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD9834 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADAPTEC_STARFIRE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADE7854 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADE7854_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADE7854_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADF4350 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADF4371 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16080 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16130 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16136 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16201 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16203 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16209 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16240 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16260 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16400 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16460 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16475 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADIS16480 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADI_AXI_ADC policy<{'arm64': '-'}> +CONFIG_ADJD_S311 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADM8211 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADT7316 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADT7316_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADT7316_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADUX1020 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADXL372 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADXL372_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADXL372_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADXRS290 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ADXRS450 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AD_SIGMA_DELTA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AFE4403 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AFE4404 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AIRO policy<{'amd64': '-'}> +CONFIG_AIRO_CS policy<{'amd64': '-'}> +CONFIG_AK09911 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AK8974 policy<{'arm64': '-'}> +CONFIG_AK8975 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AL3010 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AL3320A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ALTERA_FREEZE_BRIDGE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ALTERA_MBOX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ALTERA_PR_IP_CORE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ALTERA_PR_IP_CORE_PLAT policy<{'arm64': '-'}> +CONFIG_ALTERA_STAPL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ALTERA_TSE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ALX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AM2315 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AMD8111_ETH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AMD_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_AMD_XGBE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AMD_XGBE_DCB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AMD_XGBE_HAVE_ECC policy<{'amd64': '-'}> +CONFIG_ANDROID_BINDER_DEVICES policy<{'amd64': '"binder,hwbinder,vndbinder"', 'arm64': '"binder,hwbinder,vndbinder"'}> +CONFIG_APDS9300 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_APDS9960 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AQUANTIA_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_AR5523 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ARCH_HIBERNATION_HEADER policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ARCH_MMAP_RND_BITS_MAX policy<{'amd64': '32', 'arm64': '33'}> +CONFIG_ARCH_MMAP_RND_BITS_MIN policy<{'amd64': '28', 'arm64': '18'}> +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN policy<{'amd64': '8', 'arm64': '11'}> +CONFIG_ARCH_WANT_HUGE_PMD_SHARE policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ARCNET_COM20020_CS policy<{'amd64': '-'}> +CONFIG_ARC_EMAC_CORE policy<{'arm64': '-'}> +CONFIG_ARM64_4K_PAGES policy<{'arm64': 'y'}> +CONFIG_ARM64_64K_PAGES policy<{'arm64': 'n'}> +CONFIG_ARM64_CONT_PMD_SHIFT policy<{'arm64': '4'}> +CONFIG_ARM64_CONT_PTE_SHIFT policy<{'arm64': '4'}> +CONFIG_ARM64_PAGE_SHIFT policy<{'arm64': '12'}> +CONFIG_ARM64_VA_BITS_39 policy<{'arm64': 'n'}> +CONFIG_AS3935 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AS73211 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ASUS_NB_WMI policy<{'amd64': '-'}> +CONFIG_ASUS_WMI policy<{'amd64': '-'}> +CONFIG_ASYNC_RAID6_TEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AT76C50X_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AT803X_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ATA_GENERIC policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ATA_OVER_ETH policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ATH10K policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH10K_AHB policy<{'arm64': '-'}> +CONFIG_ATH10K_CE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH10K_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH10K_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH10K_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH10K_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH10K_SNOC policy<{'arm64': '-'}> +CONFIG_ATH10K_SPECTRAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH10K_TRACING policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH10K_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH11K policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH11K_AHB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH11K_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH11K_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH11K_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH11K_SPECTRAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH11K_TRACING policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH5K policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH5K_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH5K_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH5K_TRACER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH6KL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH6KL_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH6KL_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH6KL_TRACING policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH6KL_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_AHB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_BTCOEX_SUPPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_CHANNEL_CONTEXT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_COMMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_COMMON_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_COMMON_SPECTRAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_DYNACK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_HTC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_HTC_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_HW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_HWRNG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_PCI_NO_EEPROM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_PCOEM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_RFKILL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_STATION_STATISTICS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH9K_WOW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH_COMMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATH_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATL1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATL1C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATL1E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATL2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATLAS_EZO_SENSOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATLAS_PH_SENSOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATMEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ATOMIC64_SELFTEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AXP20X_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AXP20X_POWER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AXP288_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_AXP288_FUEL_GAUGE policy<{'amd64': '-'}> +CONFIG_B43 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43LEGACY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43LEGACY_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43LEGACY_DMA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43LEGACY_DMA_AND_PIO_MODE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43LEGACY_DMA_MODE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43LEGACY_HWRNG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43LEGACY_LEDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43LEGACY_PCICORE_AUTOSELECT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43LEGACY_PCI_AUTOSELECT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43LEGACY_PIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43LEGACY_PIO_MODE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_BCMA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_BCMA_PIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_BUSES_BCMA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_BUSES_BCMA_AND_SSB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_BUSES_SSB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_HWRNG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_LEDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_PCICORE_AUTOSELECT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_PCI_AUTOSELECT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_PHY_G policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_PHY_HT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_PHY_LP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_PHY_N policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_PIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_B43_SSB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_88PM860X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_AAT2870 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_ADP5520 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_ADP8860 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_ADP8870 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_AS3711 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_BD6107 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_CARILLO_RANCH policy<{'amd64': '-'}> +CONFIG_BACKLIGHT_DA903X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_DA9052 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_GPIO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_KTD253 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_LM3533 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_LM3639 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_LP8788 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_LV5207LP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_MAX8925 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_PANDORA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_PCF50633 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_RAVE_SP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BACKLIGHT_SKY81452 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKLIGHT_WM831X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BACKTRACE_SELF_TEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_88PM860X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_AXP20X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_BQ27XXX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_BQ27XXX_HDQ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_BQ27XXX_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_CPCAP policy<{'arm64': '-'}> +CONFIG_BATTERY_DA9030 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_DA9052 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_DA9150 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_DS2760 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_DS2780 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_DS2781 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_DS2782 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_GAUGE_LTC2941 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_MAX17040 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_MAX17042 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_MAX1721X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_RT5033 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_RX51 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_SBS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BATTERY_SURFACE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BATTERY_TWL4030_MADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BAYCOM_PAR policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BAYCOM_SER_FDX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BAYCOM_SER_HDX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BCM87XX_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BCMA_BLOCKIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BCM_IPROC_ADC policy<{'arm64': '-'}> +CONFIG_BCM_KONA_USB2_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BCM_VK_TTY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BD957XMUF_WATCHDOG policy<{'arm64': '-'}> +CONFIG_BERLIN2_ADC policy<{'arm64': '-'}> +CONFIG_BH1750 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BH1780 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BLK_DEV_3W_XXXX_RAID policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BLK_DEV_FD_RAWCMD policy<{'amd64': '-'}> +CONFIG_BLK_DEV_NULL_BLK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BLK_DEV_PCIESSD_MTIP32XX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BLK_DEV_RSXX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BLK_DEV_SX8 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMA220 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMA400 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMA400_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMA400_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMC150_ACCEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMC150_ACCEL_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMC150_ACCEL_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMC150_MAGN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMC150_MAGN_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMC150_MAGN_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BME680 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BME680_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BME680_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMG160 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMG160_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMG160_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMI088_ACCEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMI088_ACCEL_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMI160 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMI160_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMI160_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMP280 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMP280_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BMP280_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BNA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BPQETHER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BRCMDBG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BRCMFMAC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BRCMFMAC_PCIE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BRCMFMAC_PROTO_BCDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BRCMFMAC_PROTO_MSGBUF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BRCMFMAC_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BRCMFMAC_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BRCMSMAC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BRCMUTIL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BRCM_TRACING policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BROADCOM_PHY policy<{'amd64': 'n', 'arm64': 'm'}> +CONFIG_BT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_BT_6LOWPAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_AOSPEXT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_ATH3K policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_BCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_BNEP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_BNEP_MC_FILTER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_BNEP_PROTO_FILTER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_BREDR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_CMTP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIBCM203X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIBFUSB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIBLUECARD policy<{'amd64': '-'}> +CONFIG_BT_HCIBPA10X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIBT3C policy<{'amd64': '-'}> +CONFIG_BT_HCIBTSDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIBTUSB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIBTUSB_AUTOSUSPEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIBTUSB_BCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIBTUSB_MTK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIBTUSB_RTL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIDTL1 policy<{'amd64': '-'}> +CONFIG_BT_HCIRSI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_3WIRE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_AG6XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_ATH3K policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_BCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_BCSP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_H4 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_INTEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_LL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_MRVL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_NOKIA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_QCA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_RTL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIUART_SERDEV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HCIVHCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_HIDP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_INTEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_LE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_LEDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_MRVL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_MRVL_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_MSFTEXT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_MTKSDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_MTKUART policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_QCA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_QCOMSMD policy<{'arm64': '-'}> +CONFIG_BT_RFCOMM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_RFCOMM_TTY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_RTL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_SELFTEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BT_VIRTIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_BYTCRC_PMIC_OPREGION policy<{'amd64': '-'}> +CONFIG_C2PORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_C2PORT_DURAMAR_2150 policy<{'amd64': '-'}> +CONFIG_CAIF_TTY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_8DEV_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_CC770 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_CC770_ISA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CAN_CC770_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CAN_EMS_PCMCIA policy<{'amd64': '-'}> +CONFIG_CAN_EMS_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_ESD_USB2 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_GS_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_IFI_CANFD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_ISOTP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_KVASER_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_MCBA_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_MCP251X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_MCP251XFD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_MCP251XFD_SANITY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CAN_M_CAN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_M_CAN_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CAN_M_CAN_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CAN_M_CAN_TCAN4X5X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CAN_PEAK_PCMCIA policy<{'amd64': '-'}> +CONFIG_CAN_PEAK_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_SOFTING policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAN_SOFTING_CS policy<{'amd64': '-'}> +CONFIG_CAN_UCAN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CAPI_TRACE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CARDMAN_4000 policy<{'amd64': '-'}> +CONFIG_CARDMAN_4040 policy<{'amd64': '-'}> +CONFIG_CARL9170 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CARL9170_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CARL9170_HWRNG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CARL9170_LEDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CARL9170_WPC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CARMINE_DRAM_CUSTOM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CASSINI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CAVIUM_PTP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CB710_CORE policy<{'amd64': 'n', 'arm64': 'm'}> +CONFIG_CB710_DEBUG policy<{'amd64': '-', 'arm64': 'n'}> +CONFIG_CB710_DEBUG_ASSUMPTIONS policy<{'amd64': '-', 'arm64': 'y'}> +CONFIG_CC10001_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CCS811 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CEC_CH7322 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CEC_CROS_EC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CFG80211_WEXT_EXPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_88PM860X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_AXP20X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_BQ2415X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_BQ24257 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_BQ24735 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_BQ2515X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_BQ256XX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_BQ25890 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_BQ25980 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_CPCAP policy<{'arm64': '-'}> +CONFIG_CHARGER_CROS_PCHG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_CROS_USBPD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_DA9150 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_GPIO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_LP8727 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_LP8788 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_MANAGER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_MAX14577 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_MAX77693 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_MAX8903 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_MAX8997 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_MAX8998 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_MP2629 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_PCF50633 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_QCOM_SMBB policy<{'arm64': '-'}> +CONFIG_CHARGER_RT9455 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_SBS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_SMB347 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CHARGER_SURFACE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_TPS65090 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_TWL4030 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHARGER_WILCO policy<{'amd64': '-'}> +CONFIG_CHELSIO_LIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHELSIO_T4_FCOE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHROMEOS_LAPTOP policy<{'amd64': '-'}> +CONFIG_CHROMEOS_PSTORE policy<{'amd64': '-'}> +CONFIG_CHROMEOS_TBMC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CHTCRC_PMIC_OPREGION policy<{'amd64': '-'}> +CONFIG_CHT_WC_PMIC_OPREGION policy<{'amd64': '-'}> +CONFIG_CICADA_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CIO2_BRIDGE policy<{'amd64': '-'}> +CONFIG_CIO_DAC policy<{'amd64': '-'}> +CONFIG_CLK_TWL6040 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CM32181 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CM3232 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CM3323 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CM3605 policy<{'arm64': '-'}> +CONFIG_CM36651 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CMA_ALIGNMENT policy<{'arm64': '-'}> +CONFIG_CMA_AREAS policy<{'arm64': '-'}> +CONFIG_CMA_DEBUG policy<{'arm64': '-'}> +CONFIG_CMA_DEBUGFS policy<{'arm64': '-'}> +CONFIG_CMA_SIZE_SEL_MAX policy<{'arm64': '-'}> +CONFIG_CMA_SIZE_SEL_MBYTES policy<{'arm64': '-'}> +CONFIG_CMA_SIZE_SEL_MIN policy<{'arm64': '-'}> +CONFIG_CMA_SIZE_SEL_PERCENTAGE policy<{'arm64': '-'}> +CONFIG_CMA_SYSFS policy<{'arm64': '-'}> +CONFIG_COMEDI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_COMEDI_8254 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_8255 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_8255_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_8255_SA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_1032 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_1500 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_1516 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_1564 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_16XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_2032 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_2200 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_3120 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_3501 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_APCI_3XXX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADDI_WATCHDOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADL_PCI6208 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADL_PCI7X3X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADL_PCI8164 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADL_PCI9111 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADL_PCI9118 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADQ12B policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADV_PCI1710 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADV_PCI1720 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADV_PCI1723 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADV_PCI1724 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADV_PCI1760 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ADV_PCI_DIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AIO_AIO12_8 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AIO_IIRO_16 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AMPLC_DIO200 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AMPLC_DIO200_ISA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AMPLC_DIO200_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AMPLC_PC236 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AMPLC_PC236_ISA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AMPLC_PC236_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AMPLC_PC263_ISA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AMPLC_PC263_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AMPLC_PCI224 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_AMPLC_PCI230 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_BOND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_C6XDIGIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_CB_DAS16_CS policy<{'amd64': '-'}> +CONFIG_COMEDI_CB_PCIDAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_CB_PCIDAS64 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_CB_PCIDDA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_CB_PCIMDAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_CB_PCIMDDA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_CONTEC_PCI_DIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DAC02 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DAQBOARD2000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DAS08 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DAS08_CS policy<{'amd64': '-'}> +CONFIG_COMEDI_DAS08_ISA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DAS08_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DAS16 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DAS16M1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DAS1800 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DAS6402 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DAS800 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DMM32AT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DT2801 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DT2811 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DT2814 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DT2815 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DT2817 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DT282X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DT3000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DT9812 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_DYNA_PCI10XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_FL512 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_GSC_HPDI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ICP_MULTI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_II_PCI20KC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ISADMA policy<{'amd64': '-'}> +CONFIG_COMEDI_ISA_DRIVERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_JR3_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_KCOMEDILIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_KE_COUNTER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ME4000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_ME_DAQ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_MF6X4 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_MISC_DRIVERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_MITE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_MPC624 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_MULTIQ3 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_6527 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_65XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_660X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_670X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_ATMIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_ATMIO16D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_AT_A2150 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_AT_AO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_DAQ_700_CS policy<{'amd64': '-'}> +CONFIG_COMEDI_NI_DAQ_DIO24_CS policy<{'amd64': '-'}> +CONFIG_COMEDI_NI_LABPC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_LABPC_CS policy<{'amd64': '-'}> +CONFIG_COMEDI_NI_LABPC_ISA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_LABPC_ISADMA policy<{'amd64': '-'}> +CONFIG_COMEDI_NI_LABPC_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_MIO_CS policy<{'amd64': '-'}> +CONFIG_COMEDI_NI_PCIDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_PCIMIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_ROUTING policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_TIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_TIOCMD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_NI_USB6501 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PARPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCI_DRIVERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCL711 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCL724 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCL726 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCL730 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCL812 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCL816 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCL818 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCM3724 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCMAD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCMCIA_DRIVERS policy<{'amd64': '-'}> +CONFIG_COMEDI_PCMDA12 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCMMIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_PCMUIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_QUATECH_DAQP_CS policy<{'amd64': '-'}> +CONFIG_COMEDI_RTD520 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_RTI800 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_RTI802 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_S526 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_S626 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_TEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_TESTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_TESTS_EXAMPLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_TESTS_NI_ROUTES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_USBDUX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_USBDUXFAST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_USBDUXSIGMA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_USB_DRIVERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMEDI_VMK80XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMMON_CLK_BD718XX policy<{'arm64': '-'}> +CONFIG_COMMON_CLK_CDCE706 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_COMMON_CLK_CS2000_CP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_COMMON_CLK_LOCHNAGAR policy<{'arm64': '-'}> +CONFIG_COMMON_CLK_PALMAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_COMMON_CLK_S2MPS11 policy<{'arm64': '-'}> +CONFIG_COMMON_CLK_SI5351 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_COMMON_CLK_WM831X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CONTEXT_TRACKING policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_CPCAP_ADC policy<{'arm64': '-'}> +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND policy<{'arm64': 'n'}> +CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CPU_IDLE_THERMAL policy<{'arm64': '-'}> +CONFIG_CRAMFS_MTD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC_CHARDEV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC_ISHTP policy<{'amd64': '-'}> +CONFIG_CROS_EC_LIGHTBAR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC_LPC policy<{'amd64': '-'}> +CONFIG_CROS_EC_MKBP_PROXIMITY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC_PROTO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC_RPMSG policy<{'arm64': '-'}> +CONFIG_CROS_EC_SENSORHUB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC_SYSFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC_TYPEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_EC_VBC policy<{'arm64': '-'}> +CONFIG_CROS_KBD_LED_BACKLIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_USBPD_LOGGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CROS_USBPD_NOTIFY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CRYPTO_AES_TI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CW1200 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CW1200_WLAN_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CW1200_WLAN_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CXD2880_SPI_DRV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_CYPRESS_FIRMWARE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DA280 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DA311 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DA9055_WATCHDOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DA9062_THERMAL policy<{'arm64': '-'}> +CONFIG_DA9062_WATCHDOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DA9150_GPADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DAVICOM_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DE2104X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DE2104X_DSL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DE4X5 policy<{'amd64': '-'}> +CONFIG_DEV_COREDUMP policy<{'amd64': '-', 'arm64': 'y'}> +CONFIG_DHT11 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DLHL60D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DLN2_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DM9102 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DMABUF_HEAPS_CMA policy<{'arm64': '-'}> +CONFIG_DMARD06 policy<{'arm64': '-'}> +CONFIG_DMARD09 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DMARD10 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DMA_PERNUMA_CMA policy<{'arm64': '-'}> +CONFIG_DMI_SYSFS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DP83640_PHY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DP83848_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DP83867_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DPOT_DAC policy<{'arm64': '-'}> +CONFIG_DPS310 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DRAGONRISE_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DRM_AMD_DC_SI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_ANALOGIX_ANX78XX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_ANALOGIX_DP policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_DRM_BOCHS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_CIRRUS_QEMU policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_CROS_EC_ANX7688 policy<{'arm64': '-'}> +CONFIG_DRM_DW_HDMI_AHB_AUDIO policy<{'arm64': 'n'}> +CONFIG_DRM_DW_HDMI_I2S_AUDIO policy<{'arm64': 'n'}> +CONFIG_DRM_ETNAVIV policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_ETNAVIV_THERMAL policy<{'arm64': '-'}> +CONFIG_DRM_GM12U320 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_I2C_ADV7511_AUDIO policy<{'arm64': '-'}> +CONFIG_DRM_I2C_CH7006 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_I2C_NXP_TDA998X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_I2C_SIL164 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_NOUVEAU_BACKLIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DRM_NOUVEAU_SVM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DRM_UDL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_VC4 policy<{'arm64': '-'}> +CONFIG_DRM_VC4_HDMI_CEC policy<{'arm64': '-'}> +CONFIG_DRM_VGEM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DRM_XEN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DRM_XEN_FRONTEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DS1803 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DS4424 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DTPM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DTPM_CPU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_A8293 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_AF9013 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_AF9033 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_AS102 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_AS102_FE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ASCOT2E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ATBM8830 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_AU8522 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_AU8522_DTV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_AU8522_V4L policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_AV7110 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_AV7110_IR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_AV7110_OSD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_B2C2_FLEXCOP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_B2C2_FLEXCOP_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_B2C2_FLEXCOP_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_BCM3510 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_BT8XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_BUDGET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_BUDGET_AV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_BUDGET_CI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_BUDGET_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_BUDGET_PATCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CX22700 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CX22702 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CX24110 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CX24116 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CX24117 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CX24120 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CX24123 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CXD2099 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CXD2820R policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CXD2841ER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_CXD2880 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DDBRIDGE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DDBRIDGE_MSIENABLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DEMUX_SECTION_LOSS_LOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DIB3000MB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DIB3000MC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DIB7000M policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DIB7000P policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DIB8000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DIB9000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DM1105 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DRX39XYJ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DRXD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DRXK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DS3000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_DYNAMIC_MINORS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_EC100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_FIREDTV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_FIREDTV_INPUT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_GP8PSK_FE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_HELENE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_HOPPER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_HORUS3A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ISL6405 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ISL6421 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ISL6423 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_IX2505V policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_L64781 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LG2160 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LGDT3305 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LGDT3306A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LGDT330X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LGS8GL5 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LGS8GXX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LNBH25 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LNBH29 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LNBP21 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_LNBP22 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_M88DS3103 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_M88RS2000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MANTIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MAX_ADAPTERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MB86A16 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MB86A20S policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MMAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MN88443X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MN88472 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MN88473 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MT312 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MT352 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MXL5XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_MXL692 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_NET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_NETUP_UNIDVB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_NGENE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_NXT200X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_NXT6000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_OR51132 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_OR51211 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_PLATFORM_DRIVERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_PLL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_PLUTO2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_PT1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_PT3 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_RTL2830 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_RTL2832 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_RTL2832_SDR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_S5H1409 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_S5H1411 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_S5H1420 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_S5H1432 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_S921 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_SI2165 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_SI2168 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_SI21XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_SMIPCIE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_SP2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_SP8870 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_SP887X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STB0899 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STB6000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STB6100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV0288 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV0297 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV0299 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV0367 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV0900 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV090x policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV0910 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV6110 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV6110x policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_STV6111 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TC90522 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA10021 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA10023 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA10048 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA1004X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA10071 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA10086 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA18271C2DD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA665x policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA8083 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA8261 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TDA826X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TEST_DRIVERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TS2020 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TTUSB_BUDGET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TTUSB_DEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TUA6100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TUNER_CX24113 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TUNER_DIB0070 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TUNER_DIB0090 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_TUNER_ITD1000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ULE_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_A800 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_AF9005 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_AF9005_REMOTE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_AF9015 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_AF9035 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_ANYSEE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_AU6610 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_AZ6007 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_AZ6027 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_CE6230 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_CINERGY_T2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_CXUSB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_CXUSB_ANALOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DIB0700 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DIB3000MC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DIBUSB_MB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DIBUSB_MB_FAULTY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DIBUSB_MC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DIGITV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DTT200U policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DTV5100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DVBSKY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_DW2102 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_EC168 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_GL861 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_GP8PSK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_LME2510 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_M920X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_MXL111SF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_NOVA_T_USB2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_OPERA1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_PCTV452E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_RTL28XXU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_TECHNISAT_USB2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_TTUSB2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_UMT_010 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_V2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_VP702X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_VP7045 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_USB_ZD1301 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_VES1820 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_VES1X93 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ZD1301_DEMOD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ZL10036 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ZL10039 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DVB_ZL10353 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DWMAC_DWC_QOS_ETH policy<{'arm64': '-'}> +CONFIG_DWMAC_GENERIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DWMAC_IMX8 policy<{'arm64': '-'}> +CONFIG_DWMAC_INTEL policy<{'amd64': '-'}> +CONFIG_DWMAC_INTEL_PLAT policy<{'arm64': '-'}> +CONFIG_DWMAC_IPQ806X policy<{'arm64': '-'}> +CONFIG_DWMAC_LOONGSON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_DWMAC_MEDIATEK policy<{'arm64': '-'}> +CONFIG_DWMAC_MESON policy<{'arm64': '-'}> +CONFIG_DWMAC_QCOM_ETHQOS policy<{'arm64': '-'}> +CONFIG_DWMAC_ROCKCHIP policy<{'arm64': '-'}> +CONFIG_DWMAC_SOCFPGA policy<{'arm64': '-'}> +CONFIG_DWMAC_SUN8I policy<{'arm64': '-'}> +CONFIG_DWMAC_SUNXI policy<{'arm64': '-'}> +CONFIG_DWMAC_VISCONTI policy<{'arm64': '-'}> +CONFIG_DW_DMAC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ECHO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_EDAC_ALTERA_NAND policy<{'arm64': '-'}> +CONFIG_EDAC_ALTERA_SDMMC policy<{'arm64': '-'}> +CONFIG_EDAC_ALTERA_USB policy<{'arm64': '-'}> +CONFIG_EDAC_GHES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_EEEPC_WMI policy<{'amd64': '-'}> +CONFIG_EEPROM_93XX46 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_EEPROM_AT25 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_EEPROM_IDT_89HPESX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_EEPROM_LEGACY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_EEPROM_MAX6875 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_EFI_EMBEDDED_FIRMWARE policy<{'amd64': '-'}> +CONFIG_EL3 policy<{'amd64': '-'}> +CONFIG_EMAC_ROCKCHIP policy<{'arm64': '-'}> +CONFIG_ENA_ETHERNET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ENC28J60 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ENC28J60_WRITEVERIFY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ENCX24J600 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ENVELOPE_DETECTOR policy<{'arm64': '-'}> +CONFIG_EPIC100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_EROFS_FS_ZIP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_EXTCON_ADC_JACK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_EXTCON_INTEL_CHT_WC policy<{'amd64': '-'}> +CONFIG_EXTCON_MAX77843 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_EXTCON_MAX8997 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_EXTCON_PALMAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_EXTCON_USBC_CROS_EC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_EXTCON_USBC_TUSB320 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_EZCHIP_NPS_MANAGEMENT_ENET policy<{'arm64': '-'}> +CONFIG_FB_3DFX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_3DFX_ACCEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_3DFX_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_ARK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_ASILIANT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_ATY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_ATY128 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_ATY128_BACKLIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_ATY_BACKLIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_ATY_CT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_ATY_GENERIC_LCD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_ATY_GX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_CARMINE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_CARMINE_DRAM_EVAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_CIRRUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_CYBER2000 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_CYBER2000_DDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_DDC policy<{'amd64': 'm', 'arm64': '-'}> +CONFIG_FB_I740 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_IMSTT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_KYRO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_MATROX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_MATROX_G policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_MATROX_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_MATROX_MAVEN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_MATROX_MILLENIUM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_MATROX_MYSTIQUE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_MB862XX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_MB862XX_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_MB862XX_PCI_GDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_METRONOME policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_NEOMAGIC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_NVIDIA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_NVIDIA_BACKLIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_NVIDIA_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_NVIDIA_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_OPENCORES policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_PM2 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_PM2_FIFO_DISCONNECT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_PM3 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_RADEON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_RADEON_BACKLIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_RADEON_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_RADEON_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_RIVA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_RIVA_BACKLIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_RIVA_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_RIVA_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_S1D13XXX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_S3 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_S3_DDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_SAVAGE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_SAVAGE_ACCEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_SAVAGE_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_SIS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_SIS_300 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_SIS_315 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_SM712 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_SMSCUFX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_SVGALIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FB_TRIDENT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_UDL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_UVESA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_VOODOO1 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FB_VT8623 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FCOE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FCOE_FNIC policy<{'amd64': '-'}> +CONFIG_FIND_BIT_BENCHMARK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FIREWIRE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FIREWIRE_NET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FIREWIRE_OHCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FIREWIRE_SBP2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FIREWIRE_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONTS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FONT_10x18 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONT_6x10 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONT_6x11 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONT_6x8 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONT_7x14 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONT_ACORN_8x8 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONT_MINI_4x6 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONT_PEARL_8x8 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONT_SUN12x22 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONT_SUN8x16 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FONT_TER16x32 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FORCEDETH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FORCE_MAX_ZONEORDER policy<{'arm64': '13'}> +CONFIG_FPGA_BRIDGE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FPGA_DFL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FPGA_DFL_AFU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FPGA_DFL_EMIF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FPGA_DFL_FME policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FPGA_DFL_FME_BRIDGE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FPGA_DFL_FME_MGR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FPGA_DFL_FME_REGION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FPGA_DFL_NIOS_INTEL_PAC_N3000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FPGA_DFL_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FPGA_MGR_ALTERA_CVP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FPGA_MGR_ALTERA_PS_SPI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FPGA_MGR_MACHXO2_SPI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FPGA_REGION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FSL_IFC policy<{'arm64': '-'}> +CONFIG_FTL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FUEL_GAUGE_SC27XX policy<{'arm64': '-'}> +CONFIG_FUSION_LAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FWTTY_MAX_CARD_PORTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FWTTY_MAX_TOTAL_PORTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FW_CFG_SYSFS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_FW_CFG_SYSFS_CMDLINE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FXAS21002C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FXAS21002C_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FXAS21002C_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FXLS8962AF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FXLS8962AF_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FXLS8962AF_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FXOS8700 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FXOS8700_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_FXOS8700_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GADGET_UAC1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GADGET_UAC1_LEGACY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GAMEPORT policy<{'amd64': 'n', 'arm64': 'm'}> +CONFIG_GAMEPORT_EMU10K1 policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_GAMEPORT_FM801 policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_GAMEPORT_L4 policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_GAMEPORT_NS558 policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_GENERIC_ADC_BATTERY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GENERIC_ADC_THERMAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GNSS_MTK_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GNSS_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GNSS_SIRF_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GNSS_UBX_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GP2AP002 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GP2AP020A00F policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_AAEON policy<{'amd64': '-'}> +CONFIG_GPIO_ADP5520 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_BD70528 policy<{'arm64': '-'}> +CONFIG_GPIO_BD71815 policy<{'arm64': '-'}> +CONFIG_GPIO_BD71828 policy<{'arm64': '-'}> +CONFIG_GPIO_BT8XX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_GPIO_CRYSTAL_COVE policy<{'amd64': '-'}> +CONFIG_GPIO_DA9055 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_DLN2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_KEMPLD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_LJCA policy<{'amd64': '-'}> +CONFIG_GPIO_M058SSAN policy<{'amd64': '-'}> +CONFIG_GPIO_MAX77620 policy<{'arm64': '-'}> +CONFIG_GPIO_MOCKUP policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_GPIO_PALMAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_PCA9570 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_GPIO_RC5T583 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_TC3589X policy<{'arm64': '-'}> +CONFIG_GPIO_TPS6586X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_TPS65910 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_TWL6040 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_UCB1400 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_VIPERBOARD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GPIO_WM8350 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREENASIA_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_GREYBUS_AUDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_AUDIO_APB_CODEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_BOOTROM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_BRIDGED_PHY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_ES2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_FIRMWARE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_GPIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_HID policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_LIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_LOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_LOOPBACK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_POWER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_PWM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_RAW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_UART policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GREYBUS_VIBRATOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_GS_FPGABOOT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HAPPYMEAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HBMC_AM654 policy<{'arm64': '-'}> +CONFIG_HDC100X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HDC2010 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HDMI_LPE_AUDIO policy<{'amd64': '-'}> +CONFIG_HERMES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HERMES_CACHE_FW_ON_INIT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HERMES_PRISM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HI6421V600_IRQ policy<{'arm64': '-'}> +CONFIG_HI8435 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HIBERNATE_CALLBACKS policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_HIBERNATION_SNAPSHOT_DEV policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_HID_A4TECH policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_ACCUTOUCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_ACRUX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_ACRUX_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_ALPS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_APPLE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_APPLEIR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_ASUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_AUREAL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_BATTERY_STRENGTH policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_BELKIN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_BETOP_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_BIGBEN_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_CHERRY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_CHICONY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_CMEDIA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_CORSAIR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_CP2112 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_CREATIVE_SB0540 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_CYPRESS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_DRAGONRISE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_ELAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_ELECOM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_ELO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_EMS_FF policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_EZKEY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_FT260 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_GEMBIRD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_GFRM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_GOOGLE_HAMMER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_GREENASIA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_GT683R policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_GYRATION policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_HOLTEK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_ICADE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_KENSINGTON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_KEYTOUCH policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_KYE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_LCPOWER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_LENOVO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_LOGITECH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_LOGITECH_DJ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_LOGITECH_HIDPP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_MAGICMOUSE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_MCP2221 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_MICROSOFT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_MONTEREY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_MULTITOUCH policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_NTRIG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_ORTEK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_PANTHERLORD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_PENMOUNT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_PETALYNX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_PICOLCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_PICOLCD_BACKLIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_PICOLCD_CIR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_PICOLCD_FB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_PICOLCD_LCD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_PICOLCD_LEDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_PID policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_PLANTRONICS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_PRIMAX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_PRODIKEYS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_RETRODE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_RMI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_ROCCAT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SAITEK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_SAMSUNG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_ACCEL_3D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_ALS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_CUSTOM_INTEL_HINGE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_DEVICE_ROTATION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_GYRO_3D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_HUMIDITY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_IIO_COMMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_IIO_TRIGGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_INCLINOMETER_3D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_MAGNETOMETER_3D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_PRESS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_PROX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SENSOR_TEMP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SMARTJOYPLUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_SONY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_SPEEDLINK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_STEELSERIES policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_SUNPLUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_THRUSTMASTER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_TIVO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_TOPSEED policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_TWINHAN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_U2FZERO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_UCLOGIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_VIVALDI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_WACOM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HID_WALTOP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_XINMO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_ZEROPLUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HID_ZYDACRON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HMC425 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HOLTEK_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HOSTAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HOSTAP_CS policy<{'amd64': '-'}> +CONFIG_HOSTAP_FIRMWARE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HOSTAP_FIRMWARE_NVRAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HOSTAP_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HOSTAP_PLX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HP03 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HP206C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HP_ILO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HSA_AMD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HSA_AMD_SVM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HSI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_HSI_BOARDINFO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HSI_CHAR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HTC_I2CPLD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HTS221 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HTS221_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HTS221_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HTU21 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HUAWEI_WMI policy<{'amd64': '-'}> +CONFIG_HVC_IRQ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HVC_XEN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HVC_XEN_FRONTEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HX711 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_HYPERV_AZURE_BLOB policy<{'amd64': 'm'}> +CONFIG_HYPERV_BALLOON policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_HYPERV_UTILS policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_I2C policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_I2C_AMD_MP2 policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_I2C_CHT_WC policy<{'amd64': '-'}> +CONFIG_I2C_CROS_EC_TUNNEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_I2C_DESIGNWARE_CORE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_I2C_DESIGNWARE_PLATFORM policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_I2C_DIOLAN_U2C policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_I2C_DLN2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_I2C_KEMPLD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_I2C_LJCA policy<{'amd64': '-'}> +CONFIG_I2C_MUX_GPIO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_I2C_MUX_MLXCPLD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_I2C_MUX_PCA9541 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_I2C_MUX_PCA954x policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_I2C_MUX_REG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_I2C_OMAP policy<{'arm64': 'm'}> +CONFIG_I2C_ROBOTFUZZ_OSIF policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_I2C_SI470X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_I2C_SI4713 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_I2C_SPRD policy<{'arm64': '-'}> +CONFIG_I2C_TINY_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_I2C_VIPERBOARD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_I82092 policy<{'amd64': '-'}> +CONFIG_IAQCORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ICP10100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ICPLUS_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IDLE_INJECT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IEEE802154_ADF7242 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IEEE802154_AT86RF230 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IEEE802154_AT86RF230_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IEEE802154_ATUSB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IEEE802154_CC2520 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IEEE802154_FAKELB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IEEE802154_MRF24J40 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IIO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IIO_ADIS_LIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ADIS_LIB_BUFFER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_BUFFER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_BUFFER_CB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_BUFFER_DMA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_BUFFER_DMAENGINE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_BUFFER_HW_CONSUMER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_CONFIGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_CONSUMERS_PER_TRIGGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_CROS_EC_ACCEL_LEGACY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_CROS_EC_BARO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_CROS_EC_LIGHT_PROX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_CROS_EC_SENSORS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_CROS_EC_SENSORS_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_CROS_EC_SENSORS_LID_ANGLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_HRTIMER_TRIGGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_INTERRUPT_TRIGGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_KFIFO_BUF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_MS_SENSORS_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_MUX policy<{'arm64': '-'}> +CONFIG_IIO_RESCALE policy<{'arm64': '-'}> +CONFIG_IIO_SCMI policy<{'arm64': '-'}> +CONFIG_IIO_SIMPLE_DUMMY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_SSP_SENSORHUB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_SSP_SENSORS_COMMONS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_ACCEL_3AXIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_ACCEL_I2C_3AXIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_ACCEL_SPI_3AXIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_GYRO_3AXIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_GYRO_I2C_3AXIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_GYRO_SPI_3AXIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_LSM6DSX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_LSM6DSX_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_LSM6DSX_I3C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_LSM6DSX_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_LSM9DS0 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_LSM9DS0_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_LSM9DS0_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_MAGN_3AXIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_MAGN_I2C_3AXIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_MAGN_SPI_3AXIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_PRESS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_PRESS_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_PRESS_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_SENSORS_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_SENSORS_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_ST_SENSORS_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_SW_DEVICE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_SW_TRIGGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_SYSFS_TRIGGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_TIGHTLOOP_TRIGGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_TRIGGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_TRIGGERED_BUFFER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IIO_TRIGGERED_EVENT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IMX7D_ADC policy<{'arm64': '-'}> +CONFIG_IMX_REMOTEPROC policy<{'arm64': '-'}> +CONFIG_INA2XX_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INFINIBAND_BNXT_RE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INFINIBAND_CXGB4 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INFINIBAND_IPOIB_CM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INFINIBAND_IPOIB_DEBUG_DATA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INFINIBAND_OCRDMA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INFINIBAND_QEDR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INFINIBAND_SRPT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INFINIBAND_VMWARE_PVRDMA policy<{'amd64': '-'}> +CONFIG_INFTL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_88PM80X_ONKEY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_88PM860X_ONKEY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_AD714X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_AD714X_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_AD714X_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_ADXL34X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_ADXL34X_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_ADXL34X_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_ARIZONA_HAPTICS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_ATI_REMOTE2 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_AXP20X_PEK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_BMA150 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_CM109 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_CMA3000 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_CMA3000_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_DA7280_HAPTICS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_DA9052_ONKEY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_DA9055_ONKEY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_DA9063_ONKEY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_DRV260X_HAPTICS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_DRV2665_HAPTICS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_DRV2667_HAPTICS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_E3X0_BUTTON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_GPIO_BEEPER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_GPIO_DECODER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_GPIO_ROTARY_ENCODER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_IMS_PCU policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_JOYSTICK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_KEYSPAN_REMOTE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_KXTJ9 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_MAX8925_ONKEY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_MAX8997_HAPTIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_MC13783_PWRBUTTON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_MMA8450 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_MOUSE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_PALMAS_PWRBUTTON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_PCAP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_PCF50633_PMU policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_PCF8574 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_PM8941_PWRKEY policy<{'arm64': '-'}> +CONFIG_INPUT_PM8XXX_VIBRATOR policy<{'arm64': '-'}> +CONFIG_INPUT_POWERMATE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_RAVE_SP_PWRBUTTON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_REGULATOR_HAPTIC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_RETU_PWRBUTTON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_SOC_BUTTON_ARRAY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_STPMIC1_ONKEY policy<{'arm64': '-'}> +CONFIG_INPUT_TOUCHSCREEN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_TWL4030_PWRBUTTON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_TWL4030_VIBRA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_TWL6040_VIBRA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_WM831X_ON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INPUT_XEN_KBDDEV_FRONTEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INPUT_YEALINK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INTEL_CHT_INT33FE policy<{'amd64': '-'}> +CONFIG_INTEL_MEI_VSC policy<{'amd64': 'n'}> +CONFIG_INTEL_MENLOW policy<{'amd64': '-'}> +CONFIG_INTEL_MRFLD_ADC policy<{'amd64': '-'}> +CONFIG_INTEL_PMT_CLASS policy<{'amd64': '-'}> +CONFIG_INTEL_PMT_CRASHLOG policy<{'amd64': '-'}> +CONFIG_INTEL_PMT_TELEMETRY policy<{'amd64': '-'}> +CONFIG_INTEL_RAPL policy<{'amd64': '-'}> +CONFIG_INTEL_RAPL_CORE policy<{'amd64': '-'}> +CONFIG_INTEL_SOC_PMIC policy<{'amd64': '-'}> +CONFIG_INTEL_SOC_PMIC_CHTWC policy<{'amd64': '-'}> +CONFIG_INTEL_TH policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INTEL_TH_ACPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INTEL_TH_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INTEL_TH_GTH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INTEL_TH_MSU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INTEL_TH_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INTEL_TH_PTI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INTEL_TH_STH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INTEL_VSC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INTEL_VSC_ACE policy<{'amd64': '-'}> +CONFIG_INTEL_VSC_ACE_DEBUG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INTEL_VSC_CSI policy<{'amd64': '-'}> +CONFIG_INTEL_VSC_PSE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INTEL_XWAY_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INTERVAL_TREE_TEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INV_ICM42600 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INV_ICM42600_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INV_ICM42600_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INV_MPU6050_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INV_MPU6050_IIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_INV_MPU6050_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IOMMU_DEFAULT_DMA_LAZY policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_IOMMU_DEFAULT_DMA_STRICT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IPW2100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IPW2100_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IPW2100_MONITOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IPW2200 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IPW2200_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IPW2200_MONITOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IPW2200_PROMISCUOUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IPW2200_QOS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IPW2200_RADIOTAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IPWIRELESS policy<{'amd64': '-'}> +CONFIG_IP_MROUTE_MULTIPLE_TABLES policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IQS620AT_TEMP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IQS621_ALS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IQS624_POS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IRQ_SIM policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_IR_IGORPLUGUSB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IR_IGUANA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IR_IMON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IR_IMON_RAW policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IR_MCEUSB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IR_REDRAT3 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IR_STREAMZAP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IR_TOY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_IR_TTUSBIR policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ISCSI_TARGET_CXGB4 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ISDN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ISDN_CAPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ISDN_CAPI_MIDDLEWARE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ISL29125 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ISL29501 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ITG3200 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWL3945 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWL4965 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLDVM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLEGACY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLEGACY_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLEGACY_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLMVM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLWIFI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLWIFI_BCAST_FILTERING policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLWIFI_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLWIFI_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLWIFI_DEVICE_TRACING policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLWIFI_LEDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_IWLWIFI_OPMODE_MODULAR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_CMODE_FAVOURLZO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_CMODE_NONE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_CMODE_PRIORITY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_CMODE_SIZE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_COMPRESSION_OPTIONS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_FS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_FS_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_FS_POSIX_ACL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_FS_SECURITY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_FS_WBUF_VERIFY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_FS_WRITEBUFFER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_FS_XATTR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_LZO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_RTIME policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_RUBIN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_SUMMARY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JFFS2_ZLIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_A3D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_ADI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_ANALOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_AS5011 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_COBRA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_DB9 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_FSIA6B policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_GAMECON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_GF2K policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_GRIP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_GRIP_MP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_GUILLEMOT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_IFORCE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_IFORCE_232 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_IFORCE_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_INTERACT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_JOYDUMP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_MAGELLAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_PSXPAD_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_PSXPAD_SPI_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_PXRC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_QWIIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_SIDEWINDER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_SPACEBALL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_SPACEORB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_STINGER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_TMDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_TURBOGRAFX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_TWIDJOY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_WALKERA0701 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_WARRIOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_XPAD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_XPAD_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_XPAD_LEDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JOYSTICK_ZHENHUA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_JSA1212 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KEMPLD_WDT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KEYBOARD_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KEYBOARD_ADP5520 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KEYBOARD_ADP5588 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_ADP5589 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_CROS_EC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KEYBOARD_GPIO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_LKKBD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_LM8323 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_LM8333 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_MATRIX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_MAX7359 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_MCS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_MPR121 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_MTK_PMIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KEYBOARD_NEWTON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_OPENCORES policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_QT1070 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_QT2160 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_SAMSUNG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_STOWAWAY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_SUNKBD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_TC3589X policy<{'arm64': '-'}> +CONFIG_KEYBOARD_TCA6416 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_TCA8418 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_TM2_TOUCHKEY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KEYBOARD_TWL4030 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KEYBOARD_XTKBD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_KMX61 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KPROBES_SANITY_TEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KS7010 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KS8842 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KS8851 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KS8851_MLL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KSZ884X_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KXCJK1013 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KXSD9 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KXSD9_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_KXSD9_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LCD2S policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LCD_AMS369FG06 policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_LCD_CLASS_DEVICE policy<{'amd64': 'n', 'arm64': 'm'}> +CONFIG_LCD_HX8357 policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_LCD_ILI922X policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_LCD_ILI9320 policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_LCD_L4F00242T03 policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_LCD_LMS283GF05 policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_LCD_LMS501KF03 policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_LCD_LTV350QV policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_LCD_OTM3225A policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_LCD_PLATFORM policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_LCD_TDO24M policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_LCD_VGG2432A4 policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_LEDS_88PM860X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_AAEON policy<{'amd64': '-'}> +CONFIG_LEDS_AAT1290 policy<{'arm64': '-'}> +CONFIG_LEDS_ADP5520 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_AS3645A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_BD2802 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_BLINKM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_CLASS policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_LEDS_CLASS_FLASH policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_CLASS_MULTICOLOR policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_DA903X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_DA9052 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_DAC124S085 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_KTD2692 policy<{'arm64': '-'}> +CONFIG_LEDS_LM3530 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_LM3533 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_LM355x policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_LM3601X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_LM3642 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_LP3944 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_LP3952 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_LP50XX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_LP8788 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_MAX77693 policy<{'arm64': '-'}> +CONFIG_LEDS_MAX8997 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_MC13783 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_MENF21BMC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_MT6323 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_PCA9532 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_PCA9532_GPIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_PCA955X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_PCA955X_GPIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_PCA963X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_REGULATOR policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_RT4505 policy<{'arm64': '-'}> +CONFIG_LEDS_RT8515 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_SGM3140 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_SYSCON policy<{'arm64': '-'}> +CONFIG_LEDS_TCA6507 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TLC591XX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_BACKLIGHT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_CAMERA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_CPU policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_DEFAULT_ON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_DISK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_GPIO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_HEARTBEAT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_MTD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LEDS_TRIGGER_ONESHOT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_PANIC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_TIMER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_TRIGGER_TRANSIENT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_USER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_WM831X_STATUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LEDS_WM8350 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LED_TRIGGER_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LIB80211 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIB80211_CRYPT_CCMP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIB80211_CRYPT_TKIP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIB80211_CRYPT_WEP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIB80211_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBERTAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBERTAS_CS policy<{'amd64': '-'}> +CONFIG_LIBERTAS_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBERTAS_MESH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBERTAS_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBERTAS_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBERTAS_THINFIRM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBERTAS_THINFIRM_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBERTAS_THINFIRM_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBERTAS_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBFC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LIBFCOE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBIPW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIBIPW_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIDAR_LITE_V2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIQUIDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LIQUIDIO_VF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LKDTM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LMP91000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LOCK_TORTURE_TEST policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_LOGIG940_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LOGIRUMBLEPAD2_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LOGITECH_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LOGIWHEELS_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LP8788_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LSI_ET1011C_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LTC1660 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LTC2471 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LTC2485 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LTC2496 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LTC2497 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LTC2632 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LTC2983 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LTE_GDM724X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_LTR501 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LV0104CS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_LXT_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_M62332 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAC80211_HWSIM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MACB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MACB_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MACB_USE_HWSTAMP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAG3110 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MANTIS_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MARVELL_PHY policy<{'amd64': 'n', 'arm64': 'm'}> +CONFIG_MAX1027 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX11100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX1118 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX1241 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX1363 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX30100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX30102 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX31856 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX44000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX44009 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX517 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX5432 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX5481 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX5487 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX5821 policy<{'arm64': '-'}> +CONFIG_MAX77620_THERMAL policy<{'arm64': '-'}> +CONFIG_MAX77620_WATCHDOG policy<{'arm64': '-'}> +CONFIG_MAX8925_POWER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAX9611 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MAXIM_THERMOCOUPLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MB1232 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MC3230 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MCP320X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MCP3422 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MCP3911 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MCP4018 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MCP41010 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MCP4131 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MCP4531 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MCP4725 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MCP4922 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MDIO_BITBANG policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_MDIO_CAVIUM policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_MDIO_THUNDER policy<{'amd64': 'n', 'arm64': 'm'}> +CONFIG_MEDIATEK_MT6360_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIATEK_MT6577_AUXADC policy<{'arm64': '-'}> +CONFIG_MEDIA_ALTERA_CI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_ANALOG_TV_SUPPORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MEDIA_ATTACH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_CAMERA_SUPPORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MEDIA_COMMON_OPTIONS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_CONTROLLER_DVB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_DIGITAL_TV_SUPPORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MEDIA_PCI_SUPPORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MEDIA_RADIO_SUPPORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MEDIA_SDR_SUPPORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MEDIA_TUNER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_E4000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_FC0011 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_FC0012 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_FC0013 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_FC2580 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_IT913X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_M88RS6000T policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MAX2165 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MC44S803 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MSI001 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MT2060 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MT2063 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MT20XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MT2131 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MT2266 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MXL301RF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MXL5005S policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_MXL5007T policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_QM1D1B0004 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_QM1D1C0042 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_QT1010 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_R820T policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_SI2157 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_SIMPLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TDA18212 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TDA18218 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TDA18250 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TDA18271 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TDA827X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TDA8290 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TDA9887 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TEA5761 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TEA5767 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_TUA9001 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_XC2028 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_XC4000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_TUNER_XC5000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEDIA_USB_SUPPORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MEMSTICK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MEMSTICK_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEMSTICK_JMICRON_38X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEMSTICK_R592 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEMSTICK_REALTEK_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEMSTICK_REALTEK_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEMSTICK_TIFM_MS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEMSTICK_UNSAFE_RESUME policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MEN_Z188_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MESON_EFUSE policy<{'arm64': 'm'}> +CONFIG_MESON_SARADC policy<{'arm64': '-'}> +CONFIG_MESON_SECURE_PM_DOMAINS policy<{'arm64': 'y'}> +CONFIG_MESON_SM policy<{'arm64': 'y'}> +CONFIG_MFD_88PM800 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_88PM860X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_AAEON policy<{'amd64': '-'}> +CONFIG_MFD_AAT2870_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_AS3711 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_AS3722 policy<{'arm64': '-'}> +CONFIG_MFD_CROS_EC_DEV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_DA9052_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_DA9055 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_DA9062 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_DA9063 policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_MFD_DA9150 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_DLN2 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_HI6421_SPMI policy<{'arm64': '-'}> +CONFIG_MFD_INTEL_M10_BMC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_INTEL_PMT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_KEMPLD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_LJCA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_LM3533 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_LOCHNAGAR policy<{'arm64': '-'}> +CONFIG_MFD_LP8788 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_MAX14577 policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_MFD_MAX77620 policy<{'arm64': '-'}> +CONFIG_MFD_MAX77686 policy<{'arm64': 'm'}> +CONFIG_MFD_MAX77693 policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_MFD_MAX77843 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_MAX8925 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_MAX8997 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_MAX8998 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_MT6397 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_PALMAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_RC5T583 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_ROHM_BD70528 policy<{'arm64': '-'}> +CONFIG_MFD_ROHM_BD71828 policy<{'arm64': '-'}> +CONFIG_MFD_ROHM_BD718XX policy<{'arm64': '-'}> +CONFIG_MFD_ROHM_BD957XMUF policy<{'arm64': '-'}> +CONFIG_MFD_SEC_CORE policy<{'arm64': '-'}> +CONFIG_MFD_SI476X_CORE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_SPMI_PMIC policy<{'arm64': '-'}> +CONFIG_MFD_STPMIC1 policy<{'arm64': '-'}> +CONFIG_MFD_TC3589X policy<{'arm64': '-'}> +CONFIG_MFD_TPS65090 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_TPS6586X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_TPS65910 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_TPS65912_I2C policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_MFD_TPS80031 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_TWL4030_AUDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_VIPERBOARD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_WL1273_CORE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MFD_WM831X_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_WM8350 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_WM8350_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MFD_WM8400 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MHI_BUS_PCI_GENERIC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MHI_NET policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MICREL_KS8995MA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MICREL_PHY policy<{'amd64': 'n', 'arm64': 'm'}> +CONFIG_MICROCHIP_PHY policy<{'amd64': 'n', 'arm64': 'm'}> +CONFIG_MICROSEMI_PHY policy<{'amd64': 'n', 'arm64': 'm'}> +CONFIG_MII policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_MIPI_I3C_HCI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MISC_RTSX_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MISDN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_AVMFRITZ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_DSP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_HDLC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_HFCMULTI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_HFCPCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_HFCUSB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_INFINEON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_IPAC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_ISAR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_L1OIP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_NETJET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_SPEEDFAX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MISDN_W6692 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MKISS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MLX5_VDPA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MLX5_VDPA_NET policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MLX90614 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MLX90632 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMA7455 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMA7455_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMA7455_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMA7660 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMA8452 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMA9551 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMA9551_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMA9553 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MMC35240 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_ALCOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_ARMMMCI policy<{'arm64': '-'}> +CONFIG_MMC_BCM2835 policy<{'arm64': '-'}> +CONFIG_MMC_BLOCK_MINORS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_CAVIUM_THUNDERX policy<{'arm64': '-'}> +CONFIG_MMC_CB710 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_CQHCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_CRYPTO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_DW policy<{'arm64': '-'}> +CONFIG_MMC_DW_BLUEFIELD policy<{'arm64': '-'}> +CONFIG_MMC_DW_EXYNOS policy<{'arm64': '-'}> +CONFIG_MMC_DW_HI3798CV200 policy<{'arm64': '-'}> +CONFIG_MMC_DW_K3 policy<{'arm64': '-'}> +CONFIG_MMC_DW_PCI policy<{'arm64': '-'}> +CONFIG_MMC_DW_PLTFM policy<{'arm64': '-'}> +CONFIG_MMC_DW_ROCKCHIP policy<{'arm64': '-'}> +CONFIG_MMC_HSQ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_MESON_GX policy<{'arm64': '-'}> +CONFIG_MMC_MESON_MX_SDIO policy<{'arm64': '-'}> +CONFIG_MMC_MTK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_MXC policy<{'arm64': '-'}> +CONFIG_MMC_OWL policy<{'arm64': '-'}> +CONFIG_MMC_QCOM_DML policy<{'arm64': '-'}> +CONFIG_MMC_REALTEK_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_REALTEK_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_RICOH_MMC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_SDHCI_ACPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_SDHCI_AM654 policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_BRCMSTB policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_CADENCE policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_ESDHC_IMX policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_EXTERNAL_DMA policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_F_SDH30 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_SDHCI_IO_ACCESSORS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_SDHCI_IPROC policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_MILBEAUT policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_MSM policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_OF_ARASAN policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_OF_ASPEED policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_OF_AT91 policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_OF_DWCMSHC policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_OF_ESDHC policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_OF_SPARX5 policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_OMAP policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_SDHCI_PXAV3 policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_SPRD policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_TEGRA policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_XENON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_SDHI policy<{'arm64': '-'}> +CONFIG_MMC_SDHI_INTERNAL_DMAC policy<{'arm64': '-'}> +CONFIG_MMC_SDHI_SYS_DMAC policy<{'arm64': '-'}> +CONFIG_MMC_SDRICOH_CS policy<{'amd64': '-'}> +CONFIG_MMC_SH_MMCIF policy<{'arm64': '-'}> +CONFIG_MMC_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_STM32_SDMMC policy<{'arm64': '-'}> +CONFIG_MMC_SUNXI policy<{'arm64': '-'}> +CONFIG_MMC_TEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_TIFM_SD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_TMIO_CORE policy<{'arm64': '-'}> +CONFIG_MMC_TOSHIBA_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_USDHI6ROL0 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_USHC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_VIA_SDMMC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_VUB300 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MMC_WBSD policy<{'amd64': '-'}> +CONFIG_MOST_SND policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MOST_USB_HDM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_MOUSE_APPLETOUCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_BCM5974 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_CYAPA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_ELAN_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_ELAN_I2C_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_ELAN_I2C_SMBUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_GPIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_ALPS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_BYD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_CYPRESS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_ELANTECH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_ELANTECH_SMBUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_FOCALTECH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_LIFEBOOK policy<{'amd64': '-'}> +CONFIG_MOUSE_PS2_LOGIPS2PP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_SENTELIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_SMBUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_SYNAPTICS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_TOUCHKIT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_TRACKPOINT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_PS2_VMMOUSE policy<{'amd64': '-'}> +CONFIG_MOUSE_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_SYNAPTICS_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_SYNAPTICS_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MOUSE_VSXXXAA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MP2629_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MPL115 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MPL115_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MPL115_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MPL3115 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MPU3050 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MPU3050_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MS5611 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MS5611_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MS5611_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MS5637 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MSCC_OCELOT_SWITCH_LIB policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_MSPRO_BLOCK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MS_BLOCK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT7601U policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT7603E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT7615E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT7615_COMMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT7622_WMAC policy<{'arm64': '-'}> +CONFIG_MT7663S policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT7663U policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT7663_USB_SDIO_COMMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT76_CONNAC_LIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT76_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT76_LEDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT76_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT76_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT76x02_LIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT76x02_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT76x0E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT76x0U policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT76x0_COMMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT76x2E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT76x2U policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT76x2_COMMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT7915E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MT7921E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTDRAM_ERASE_SIZE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTDRAM_TOTAL_SIZE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_ABSENT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_AFS_PARTS policy<{'arm64': '-'}> +CONFIG_MTD_AMD76XROM policy<{'amd64': '-'}> +CONFIG_MTD_AR7_PARTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_BLKDEVS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_BLOCK2MTD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_BLOCK_RO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_CFI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_CFI_ADV_OPTIONS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_CFI_AMDSTD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_CFI_I1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_CFI_I2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_CFI_INTELEXT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_CFI_STAA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_CFI_UTIL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_CK804XROM policy<{'amd64': '-'}> +CONFIG_MTD_CMDLINE_PARTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_COMPLEX_MAPPINGS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_DATAFLASH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_DATAFLASH_OTP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_DATAFLASH_WRITE_VERIFY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_ESB2ROM policy<{'amd64': '-'}> +CONFIG_MTD_GEN_PROBE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_HYPERBUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_ICHXROM policy<{'amd64': '-'}> +CONFIG_MTD_INTEL_VR_NOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_JEDECPROBE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_L440GX policy<{'amd64': '-'}> +CONFIG_MTD_LPDDR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_MAP_BANK_WIDTH_1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_MAP_BANK_WIDTH_2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_MAP_BANK_WIDTH_4 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_MCHP23K256 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_MCHP48L640 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_MTDRAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_ARASAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_BRCMNAND policy<{'arm64': '-'}> +CONFIG_MTD_NAND_CADENCE policy<{'arm64': '-'}> +CONFIG_MTD_NAND_CAFE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_DENALI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_DENALI_DT policy<{'arm64': '-'}> +CONFIG_MTD_NAND_DENALI_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_DISKONCHIP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_ECC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_ECC_SW_BCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_ECC_SW_HAMMING policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_FSL_IFC policy<{'arm64': '-'}> +CONFIG_MTD_NAND_GPIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_GPMI_NAND policy<{'arm64': '-'}> +CONFIG_MTD_NAND_HISI504 policy<{'arm64': '-'}> +CONFIG_MTD_NAND_INTEL_LGM policy<{'arm64': '-'}> +CONFIG_MTD_NAND_MARVELL policy<{'arm64': '-'}> +CONFIG_MTD_NAND_MESON policy<{'arm64': '-'}> +CONFIG_MTD_NAND_MTK policy<{'arm64': '-'}> +CONFIG_MTD_NAND_MXC policy<{'arm64': '-'}> +CONFIG_MTD_NAND_MXIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_NANDSIM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_QCOM policy<{'arm64': '-'}> +CONFIG_MTD_NAND_RICOH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_NAND_ROCKCHIP policy<{'arm64': '-'}> +CONFIG_MTD_NAND_SUNXI policy<{'arm64': '-'}> +CONFIG_MTD_NAND_TEGRA policy<{'arm64': '-'}> +CONFIG_MTD_NETtel policy<{'amd64': '-'}> +CONFIG_MTD_OF_PARTS_BCM4908 policy<{'arm64': '-'}> +CONFIG_MTD_OF_PARTS_LINKSYS_NS policy<{'arm64': '-'}> +CONFIG_MTD_ONENAND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_ONENAND_2X_PROGRAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_ONENAND_GENERIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_ONENAND_OTP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_OOPS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PARSER_TRX policy<{'arm64': '-'}> +CONFIG_MTD_PARTITIONED_MASTER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PCMCIA policy<{'amd64': '-'}> +CONFIG_MTD_PCMCIA_ANONYMOUS policy<{'amd64': '-'}> +CONFIG_MTD_PHRAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PHYSMAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PHYSMAP_COMPAT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PHYSMAP_GEMINI policy<{'arm64': '-'}> +CONFIG_MTD_PHYSMAP_GPIO_ADDR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PHYSMAP_OF policy<{'arm64': '-'}> +CONFIG_MTD_PHYSMAP_VERSATILE policy<{'arm64': '-'}> +CONFIG_MTD_PLATRAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PMC551 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PMC551_BUGFIX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PMC551_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_PSTORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_QCOMSMEM_PARTS policy<{'arm64': '-'}> +CONFIG_MTD_QINFO_PROBE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_RAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_REDBOOT_PARTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_REDBOOT_PARTS_READONLY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_ROM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_SBC_GXX policy<{'amd64': '-'}> +CONFIG_MTD_SCB2_FLASH policy<{'amd64': '-'}> +CONFIG_MTD_SLRAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_SM_COMMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_SPI_NAND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_SPI_NOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_SPI_NOR_SWP_DISABLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_SPI_NOR_SWP_DISABLE_ON_VOLATILE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_SPI_NOR_SWP_KEEP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_SPI_NOR_USE_4K_SECTORS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_SST25L policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_SWAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_TESTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_UBI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_UBI_BEB_LIMIT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_UBI_BLOCK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_UBI_FASTMAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_UBI_GLUEBI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTD_UBI_WL_THRESHOLD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MTK_SCP policy<{'arm64': '-'}> +CONFIG_MUSB_PIO_ONLY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MWIFIEX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MWIFIEX_PCIE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MWIFIEX_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MWIFIEX_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MWL8K policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MXC4005 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MXC6255 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MYRI10GE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_MYRI10GE_DCA policy<{'amd64': '-'}> +CONFIG_NATIONAL_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NATSEMI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NAU7802 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ND_BTT policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ND_PFN policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_NE2K_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NETXEN_NIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_9P_XEN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_DSA_HIRSCHMANN_HELLCREEK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_DSA_MSCC_SEVILLE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_DSA_MV88E6060 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_DSA_MV88E6XXX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_DSA_MV88E6XXX_PTP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_DSA_QCA8K policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_DSA_TAG_HELLCREEK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_FC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_IP_TUNNEL policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_NET_TEAM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_TEAM_MODE_ACTIVEBACKUP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_TEAM_MODE_BROADCAST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_TEAM_MODE_LOADBALANCE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_TEAM_MODE_RANDOM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_TEAM_MODE_ROUNDROBIN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_TULIP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_UDP_TUNNEL policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_NET_VENDOR_3COM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_8390 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NET_VENDOR_ADAPTEC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_ALTEON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_AMAZON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_AMD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_ARC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_ATHEROS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_BROCADE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_CAVIUM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_DEC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_EZCHIP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_FUJITSU policy<{'amd64': '-'}> +CONFIG_NET_VENDOR_MICREL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_MYRI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_NATSEMI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_NVIDIA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_OKI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_QLOGIC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_QUALCOMM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_RDC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_RENESAS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_ROCKER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_SAMSUNG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_SEEQ policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_SILAN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_SIS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_SMSC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_SOCIONEXT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_STMICRO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_SUN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_TEHUTI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_TI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_VIA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_WIZNET policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NET_VENDOR_XIRCOM policy<{'amd64': '-'}> +CONFIG_NFC_FDP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_FDP_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NFC_MICROREAD policy<{'amd64': 'm', 'arm64': '-'}> +CONFIG_NFC_MICROREAD_I2C policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_MRVL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NFC_MRVL_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NFC_MRVL_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NFC_MRVL_UART policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_MRVL_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_NXP_NCI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_NXP_NCI_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NFC_PN532_UART policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NFC_PN533 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NFC_PN533_I2C policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_PN533_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_PN544 policy<{'amd64': 'm', 'arm64': '-'}> +CONFIG_NFC_PN544_I2C policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_PORT100 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_S3FWRN5 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NFC_S3FWRN5_I2C policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_S3FWRN82_UART policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NFC_SIM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_ST21NFCA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NFC_ST21NFCA_I2C policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_ST95HF policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_ST_NCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NFC_ST_NCI_I2C policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_ST_NCI_SPI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFC_TRF7970A policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NFTL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NFTL_RW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NIU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NOA1305 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NODES_SHIFT policy<{'amd64': '10', 'arm64': '10'}> +CONFIG_NORTEL_HERMES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NOUVEAU_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NOUVEAU_DEBUG_DEFAULT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NOUVEAU_DEBUG_MMU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NOUVEAU_DEBUG_PUSH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NOUVEAU_PLATFORM_DRIVER policy<{'arm64': '-'}> +CONFIG_NS83820 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NTB_PERF policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NTB_PINGPONG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NTB_TOOL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NVMEM_SPMI_SDAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_NVME_CORE policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_NVME_TARGET_LOOP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NVME_TARGET_PASSTHRU policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_NVME_TARGET_RDMA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_OF_FPGA_REGION policy<{'arm64': '-'}> +CONFIG_OPT3001 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ORANGEFS_FS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ORINOCO_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_P54_COMMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_P54_LEDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_P54_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_P54_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_P54_SPI_DEFAULT_EEPROM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_P54_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PA12203001 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PALMAS_GPADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PANTHERLORD_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PARAVIRT_XXL policy<{'amd64': '-'}> +CONFIG_PARPORT_PC_PCMCIA policy<{'amd64': '-'}> +CONFIG_PATA_PCMCIA policy<{'amd64': '-'}> +CONFIG_PATA_SIS policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_PCCARD_NONSTATIC policy<{'amd64': '-'}> +CONFIG_PCIE_HISI_ERR policy<{'arm64': '-'}> +CONFIG_PCI_ATMEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PCI_HYPERV_INTERFACE policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_PCI_XEN policy<{'amd64': '-'}> +CONFIG_PCMCIA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PCMCIA_3C574 policy<{'amd64': '-'}> +CONFIG_PCMCIA_3C589 policy<{'amd64': '-'}> +CONFIG_PCMCIA_AHA152X policy<{'amd64': '-'}> +CONFIG_PCMCIA_ATMEL policy<{'amd64': '-'}> +CONFIG_PCMCIA_AXNET policy<{'amd64': '-'}> +CONFIG_PCMCIA_FDOMAIN policy<{'amd64': '-'}> +CONFIG_PCMCIA_FMVJ18X policy<{'amd64': '-'}> +CONFIG_PCMCIA_HERMES policy<{'amd64': '-'}> +CONFIG_PCMCIA_LOAD_CIS policy<{'amd64': '-'}> +CONFIG_PCMCIA_NMCLAN policy<{'amd64': '-'}> +CONFIG_PCMCIA_PCNET policy<{'amd64': '-'}> +CONFIG_PCMCIA_QLOGIC policy<{'amd64': '-'}> +CONFIG_PCMCIA_RAYCS policy<{'amd64': '-'}> +CONFIG_PCMCIA_SMC91C92 policy<{'amd64': '-'}> +CONFIG_PCMCIA_SPECTRUM policy<{'amd64': '-'}> +CONFIG_PCMCIA_SYM53C500 policy<{'amd64': '-'}> +CONFIG_PCMCIA_WL3501 policy<{'amd64': '-'}> +CONFIG_PCMCIA_XIRC2PS policy<{'amd64': '-'}> +CONFIG_PCMCIA_XIRCOM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PCNET32 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PCS_LYNX policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_PD6729 policy<{'amd64': '-'}> +CONFIG_PDA_POWER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PERCPU_TEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PGTABLE_LEVELS policy<{'amd64': '5', 'arm64': '4'}> +CONFIG_PHY_CPCAP_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PHY_PXA_28NM_HSIC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PHY_PXA_28NM_USB2 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PHY_SAMSUNG_USB2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PHY_TI_GMII_SEL policy<{'arm64': '-'}> +CONFIG_PINCTRL_AMD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PINCTRL_AS3722 policy<{'arm64': '-'}> +CONFIG_PINCTRL_DA9062 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PINCTRL_LOCHNAGAR policy<{'arm64': '-'}> +CONFIG_PINCTRL_MAX77620 policy<{'arm64': '-'}> +CONFIG_PINCTRL_MT6397 policy<{'arm64': '-'}> +CONFIG_PINCTRL_PALMAS policy<{'arm64': '-'}> +CONFIG_PINCTRL_QCOM_SPMI_PMIC policy<{'arm64': '-'}> +CONFIG_PINCTRL_SX150X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PING policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PLATFORM_SI4713 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PLAYSTATION_FF policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PLIP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PLX_HERMES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PM8916_WATCHDOG policy<{'arm64': '-'}> +CONFIG_PMBUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PMIC_ADP5520 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PMIC_DA903X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PMIC_OPREGION policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_PMS7003 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PM_STD_PARTITION policy<{'amd64': '""', 'arm64': '""'}> +CONFIG_POWER_CTRL_LOGIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_POWER_RESET_AS3722 policy<{'arm64': '-'}> +CONFIG_POWER_RESET_MT6323 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_POWER_RESET_QCOM_PON policy<{'arm64': '-'}> +CONFIG_PPS_CLIENT_GPIO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PPS_CLIENT_LDISC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PPS_CLIENT_PARPORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PRESTERA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_PRESTERA_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PRISM2_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PROC_THERMAL_MMIO_RAPL policy<{'amd64': '-'}> +CONFIG_PRU_REMOTEPROC policy<{'arm64': '-'}> +CONFIG_PTP_1588_CLOCK_INES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PTP_1588_CLOCK_OCP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PWM_CRC policy<{'amd64': '-'}> +CONFIG_PWM_CROS_EC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PWM_TWL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PWM_TWL_LED policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_PWRSEQ_EMMC policy<{'arm64': '-'}> +CONFIG_PWRSEQ_SD8787 policy<{'arm64': '-'}> +CONFIG_PWRSEQ_SIMPLE policy<{'arm64': '-'}> +CONFIG_QCA7000 policy<{'arm64': '-'}> +CONFIG_QCA7000_SPI policy<{'arm64': '-'}> +CONFIG_QCA7000_UART policy<{'arm64': '-'}> +CONFIG_QCOM_COINCELL policy<{'arm64': '-'}> +CONFIG_QCOM_EMAC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QCOM_HIDMA policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_QCOM_HIDMA_MGMT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_QCOM_IPA policy<{'arm64': '-'}> +CONFIG_QCOM_PIL_INFO policy<{'arm64': '-'}> +CONFIG_QCOM_Q6V5_ADSP policy<{'arm64': '-'}> +CONFIG_QCOM_Q6V5_COMMON policy<{'arm64': '-'}> +CONFIG_QCOM_Q6V5_MSS policy<{'arm64': '-'}> +CONFIG_QCOM_Q6V5_PAS policy<{'arm64': '-'}> +CONFIG_QCOM_Q6V5_WCSS policy<{'arm64': '-'}> +CONFIG_QCOM_QMI_HELPERS policy<{'amd64': '-', 'arm64': 'm'}> +CONFIG_QCOM_RPROC_COMMON policy<{'arm64': '-'}> +CONFIG_QCOM_SPMI_ADC5 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QCOM_SPMI_ADC_TM5 policy<{'arm64': '-'}> +CONFIG_QCOM_SPMI_IADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QCOM_SPMI_TEMP_ALARM policy<{'arm64': '-'}> +CONFIG_QCOM_SPMI_VADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QCOM_SYSMON policy<{'arm64': '-'}> +CONFIG_QCOM_VADC_COMMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QCOM_WCNSS_PIL policy<{'arm64': '-'}> +CONFIG_QED policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QEDE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QEDF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QEDI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QED_FCOE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QED_ISCSI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QED_LL2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QED_OOO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QED_RDMA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QED_SRIOV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QLA3XXX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QLCNIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QLCNIC_DCB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QLCNIC_HWMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QLCNIC_SRIOV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QSEMI_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_QTNFMAC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_QTNFMAC_PCIE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_R6040 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_R8188EU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_R8712U policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_ADAPTERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_MAXIRADIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_SAA7706H policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_SHARK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_SHARK2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_SI470X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_SI4713 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_SI476X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_TEA575X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_TEA5764 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_TEF6862 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_WL1273 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RADIO_WL128X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RAPIDIO_CPS_GEN2 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RAPIDIO_CPS_XX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RAPIDIO_RXS_GEN3 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RAPIDIO_TSI568 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RAPIDIO_TSI57X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RAVB policy<{'arm64': '-'}> +CONFIG_RAVE_SP_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RAVE_SP_EEPROM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RAVE_SP_WATCHDOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RBTREE_TEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RCU_NOCB_CPU policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_RC_ATI_REMOTE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RC_XBOX_DVD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RDMA_RXE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REALTEK_AUTOPM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REED_SOLOMON_DEC16 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REED_SOLOMON_TEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGMAP_AC97 policy<{'arm64': '-'}> +CONFIG_REGMAP_I2C policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_REGMAP_I3C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGMAP_SCCB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGMAP_SOUNDWIRE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGMAP_SOUNDWIRE_MBQ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGMAP_SPI_AVMM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGMAP_SPMI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGMAP_W1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_88PM800 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_88PM8607 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_AAT2870 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_ACT8865 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_AD5398 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_ARIZONA_LDO1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_ARIZONA_MICSUPP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_AS3711 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_AS3722 policy<{'arm64': '-'}> +CONFIG_REGULATOR_AXP20X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_BCM590XX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_BD71815 policy<{'arm64': '-'}> +CONFIG_REGULATOR_BD71828 policy<{'arm64': '-'}> +CONFIG_REGULATOR_BD718XX policy<{'arm64': '-'}> +CONFIG_REGULATOR_BD957XMUF policy<{'arm64': '-'}> +CONFIG_REGULATOR_CROS_EC policy<{'arm64': '-'}> +CONFIG_REGULATOR_DA903X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_DA9052 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_DA9055 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_DA9062 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_DA9210 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_DA9211 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_FAN53555 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_GPIO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_HI6421V600 policy<{'arm64': '-'}> +CONFIG_REGULATOR_ISL6271A policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_ISL9305 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_LOCHNAGAR policy<{'arm64': '-'}> +CONFIG_REGULATOR_LP3971 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_LP3972 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_LP872X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_LP8755 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_LP8788 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_LTC3589 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_LTC3676 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MAX14577 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MAX1586 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MAX77620 policy<{'arm64': '-'}> +CONFIG_REGULATOR_MAX77693 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MAX8649 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MAX8660 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MAX8907 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MAX8925 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_MAX8952 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MAX8997 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_MAX8998 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_MC13783 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MC13892 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MC13XXX_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_MT6311 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MT6315 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_MT6323 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_MT6358 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_MT6359 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_MT6360 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_MT6397 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_PALMAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_PCA9450 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_PCAP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_PCF50633 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_PV88060 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_PV88080 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_PV88090 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_QCOM_LABIBB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_QCOM_SPMI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_QCOM_USB_VBUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_RC5T583 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_ROHM policy<{'arm64': '-'}> +CONFIG_REGULATOR_RT4801 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_RT5033 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_RTMV20 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_S2MPA01 policy<{'arm64': '-'}> +CONFIG_REGULATOR_S2MPS11 policy<{'arm64': '-'}> +CONFIG_REGULATOR_S5M8767 policy<{'arm64': '-'}> +CONFIG_REGULATOR_SKY81452 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_STPMIC1 policy<{'arm64': '-'}> +CONFIG_REGULATOR_TPS51632 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_TPS6105X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_TPS62360 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_TPS65023 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_TPS6507X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_TPS65086 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_TPS65090 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_TPS6524X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_TPS6586X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_TPS65910 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_TPS65912 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_TPS80031 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_USERSPACE_CONSUMER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_VIRTUAL_CONSUMER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_WM831X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REGULATOR_WM8350 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_WM8400 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_REGULATOR_WM8994 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REMOTEPROC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_REMOTEPROC_CDEV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RFD77402 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RFD_FTL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_2D_SENSOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_CORE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RMI4_F03 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_F03_SERIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_F11 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_F12 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_F30 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_F34 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_F3A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_F54 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_F55 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_SMB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMI4_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RMNET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RN5T618_ADC policy<{'arm64': '-'}> +CONFIG_RN5T618_POWER policy<{'arm64': '-'}> +CONFIG_ROCKCHIP_SARADC policy<{'arm64': '-'}> +CONFIG_ROCKER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ROMFS_BACKED_BY_BOTH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ROMFS_BACKED_BY_MTD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RPMSG_MTK_SCP policy<{'arm64': '-'}> +CONFIG_RPR0521 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RSI_91X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RSI_COEX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RSI_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RSI_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RSI_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2400PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2500PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2500USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800PCI_RT3290 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800PCI_RT33XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800PCI_RT35XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800PCI_RT53XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800USB_RT33XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800USB_RT3573 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800USB_RT35XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800USB_RT53XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800USB_RT55XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800USB_UNKNOWN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800_LIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2800_LIB_MMIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2X00 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2X00_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2X00_LIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2X00_LIB_CRYPTO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2X00_LIB_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2X00_LIB_FIRMWARE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2X00_LIB_LEDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2X00_LIB_MMIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2X00_LIB_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT2X00_LIB_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT61PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RT73USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_88PM80X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_88PM860X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_ABB5ZES3 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_ABX80X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_AS3722 policy<{'arm64': '-'}> +CONFIG_RTC_DRV_BD70528 policy<{'arm64': '-'}> +CONFIG_RTC_DRV_BQ32K policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_BQ4802 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_CROS_EC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_DA9052 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DA9055 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_DA9063 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1286 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1302 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1305 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1307 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1307_CENTURY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_DS1343 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1347 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1374 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1374_WDT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_DS1390 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1511 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1553 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1672 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1685 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_DS1685_FAMILY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS1689 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_DS17285 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_DS1742 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS17485 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_DS17885 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_DS2404 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS3232 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_DS3232_HWMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_EM3027 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_FM3130 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_HID_SENSOR_TIME policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_ISL12022 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_ISL1208 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_LP8788 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_M41T80 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_M41T80_WDT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_M41T93 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_M41T94 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_M48T35 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_M48T59 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_M48T86 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_MAX6900 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_MAX6902 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_MAX6916 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_MAX8907 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_MAX8925 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_MAX8997 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_MAX8998 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_MC13XXX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_MCP795 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_MSM6242 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_MT6397 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_PALMAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_PCAP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_PCF2123 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_PCF2127 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_PCF50633 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_PCF85063 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_PCF8523 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_PCF85263 policy<{'amd64': '-'}> +CONFIG_RTC_DRV_PCF8563 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_PCF8583 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_PM8XXX policy<{'arm64': '-'}> +CONFIG_RTC_DRV_R9701 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RC5T583 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_RP5C01 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RS5C348 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RS5C372 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RV3029C2 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RV3029_HWMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_RV3032 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RV8803 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RX4581 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RX6110 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RX8010 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RX8025 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_RX8581 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_S35390A policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_S5M policy<{'arm64': '-'}> +CONFIG_RTC_DRV_STK17TA8 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_TPS6586X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_TPS65910 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_TPS80031 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_V3020 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_WILCO_EC policy<{'amd64': '-'}> +CONFIG_RTC_DRV_WM831X policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_DRV_WM8350 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTC_DRV_X1205 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RTC_I2C_AND_SPI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_RTL8180 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8187 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8187_LEDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8188EE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8192CE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8192CU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8192C_COMMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8192DE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8192E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8192EE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8192SE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8192U policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8723AE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8723BE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8723BS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8723_COMMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8821AE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8XXXU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL8XXXU_UNTESTED policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTLBTCOEXIST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTLLIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTLLIB_CRYPTO_CCMP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTLLIB_CRYPTO_TKIP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTLLIB_CRYPTO_WEP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTLWIFI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTLWIFI_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTLWIFI_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTLWIFI_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTL_CARDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88_8723D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88_8723DE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88_8821C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88_8821CE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88_8822B policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88_8822BE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88_8822C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88_8822CE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW88_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW89 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW89_8852AE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW89_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW89_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW89_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW89_DEBUGMSG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RTW89_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_RUNTIME_TESTING_MENU policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_RZG2L_ADC policy<{'arm64': '-'}> +CONFIG_SAMPLES policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SAMPLE_AUXDISPLAY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_CONFIGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_FTRACE_DIRECT policy<{'amd64': '-'}> +CONFIG_SAMPLE_HW_BREAKPOINT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_KDB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_KFIFO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_KOBJECT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_KPROBES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_LIVEPATCH policy<{'amd64': '-'}> +CONFIG_SAMPLE_QMI_CLIENT policy<{'arm64': '-'}> +CONFIG_SAMPLE_RPMSG_CLIENT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_TRACE_ARRAY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_TRACE_EVENTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_VFIO_MDEV_MBOCHS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_VFIO_MDEV_MDPY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_VFIO_MDEV_MTTY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SAMPLE_WATCHDOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SBP_TARGET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SC27XX_ADC policy<{'arm64': '-'}> +CONFIG_SC92031 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCA3000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCA3300 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCD30_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCD30_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCD30_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCR24X policy<{'amd64': '-'}> +CONFIG_SCSI_BNX2X_FCOE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCSI_BNX2_ISCSI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SCSI_CXGB3_ISCSI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SCSI_CXGB4_ISCSI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SCSI_FC_ATTRS policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SCSI_LOWLEVEL_PCMCIA policy<{'amd64': '-'}> +CONFIG_SCSI_UFSHCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SCSI_UFSHCD_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCSI_UFSHCD_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCSI_UFS_BSG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCSI_UFS_CDNS_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCSI_UFS_CRYPTO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCSI_UFS_DWC_TC_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCSI_UFS_DWC_TC_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCSI_UFS_HISI policy<{'arm64': '-'}> +CONFIG_SCSI_UFS_HPB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SCSI_UFS_MEDIATEK policy<{'arm64': '-'}> +CONFIG_SCSI_UFS_QCOM policy<{'arm64': '-'}> +CONFIG_SDIO_UART policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SDR_MAX2175 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SDR_PLATFORM_DRIVERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SD_ADC_MODULATOR policy<{'arm64': '-'}> +CONFIG_SECURITY_APPARMOR_DEBUG policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SECURITY_APPARMOR_DEBUG_ASSERTS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SECURITY_APPARMOR_DEBUG_MESSAGES policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SENSIRION_SGP30 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSIRION_SGP40 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_AAEON policy<{'amd64': '-'}> +CONFIG_SENSORS_ADM1266 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_ADM1275 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_AQUACOMPUTER_D5NEXT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_BEL_PFE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_BPA_RS600 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_CORSAIR_CPRO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SENSORS_CORSAIR_PSU policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SENSORS_DA9055 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_DPS920AB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_FSP_3Y policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_HMC5843 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_HMC5843_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_HMC5843_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_IBM_CFFPS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_IIO_HWMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_INSPUR_IPSPS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_INTEL_M10_BMC_HWMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_IR35221 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_IR36021 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_IR38064 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_IRPS5401 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_ISL29018 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_ISL29028 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_ISL68137 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_LIS3LV02D policy<{'amd64': 'm', 'arm64': '-'}> +CONFIG_SENSORS_LIS3_I2C policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SENSORS_LM25066 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_LM3533 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_LOCHNAGAR policy<{'arm64': '-'}> +CONFIG_SENSORS_LTC2978 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_LTC2978_REGULATOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_LTC2992 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SENSORS_LTC3815 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_MAX127 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SENSORS_MAX15301 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_MAX16064 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_MAX16601 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_MAX20730 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_MAX20751 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_MAX31785 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_MAX34440 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_MAX8688 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_MP2888 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_MP2975 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_MR75203 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SENSORS_NZXT_KRAKEN2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_PIM4328 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_PM6764TR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_PMBUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_PXE1610 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_Q54SJ108A2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_RM3100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_RM3100_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_RM3100_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_SBTSI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SENSORS_STPDDC60 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_TPS40422 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_TPS53679 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_TSL2563 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_UCD9000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_UCD9200 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_WM8350 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_XDPE122 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SENSORS_ZL6100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SERIAL_8250_CS policy<{'amd64': '-'}> +CONFIG_SERIAL_8250_DW policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SERIAL_BCM63XX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SERIAL_IPOCTAL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SFC_FALCON_MTD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SFC_MTD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SH_ETH policy<{'arm64': '-'}> +CONFIG_SI1133 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SI1145 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SI7005 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SI7020 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SIS190 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SIS900 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SLIM_QCOM_NGD_CTRL policy<{'arm64': '-'}> +CONFIG_SMARTJOYPLUS_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SMC91X policy<{'arm64': '-'}> +CONFIG_SMSC911X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SMSC9420 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SMSC_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SMS_SDIO_DRV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SMS_SIANO_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SMS_SIANO_MDTV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SMS_SIANO_RC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SMS_USB_DRV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SM_FTL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_AC97_CODEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_AC97_POWER_SAVE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_AC97_POWER_SAVE_DEFAULT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_AD1889 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ALI5451 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ALS300 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ALS4000 policy<{'amd64': '-'}> +CONFIG_SND_ASIHPI policy<{'amd64': '-'}> +CONFIG_SND_ATIIXP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ATIIXP_MODEM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ATMEL_SOC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_AU8810 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_AU8820 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_AU8830 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_AUDIO_GRAPH_CARD policy<{'arm64': '-'}> +CONFIG_SND_AW2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_AZT3328 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_BCD2000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_BCM2835 policy<{'arm64': 'n'}> +CONFIG_SND_BCM2835_SOC_I2S policy<{'arm64': '-'}> +CONFIG_SND_BCM63XX_I2S_WHISTLER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_BEBOB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_BT87X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_BT87X_OVERCLOCK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_CA0106 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_CMIPCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_COMPRESS_OFFLOAD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_CS4281 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_CS46XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_CS46XX_NEW_DSP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_CTL_LED policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_CTXFI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_DARLA20 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_DARLA24 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_DESIGNWARE_I2S policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_DESIGNWARE_PCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_DICE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_DMAENGINE_PCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_DYNAMIC_MINORS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SND_ECHO3G policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_EMU10K1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_EMU10K1X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_EMU10K1_SEQ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ENS1370 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ENS1371 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ES1938 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ES1968 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ES1968_INPUT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ES1968_RADIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_FIREFACE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_FIREWIRE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_FIREWIRE_DIGI00X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_FIREWIRE_LIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_FIREWIRE_MOTU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_FIREWIRE_TASCAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_FIREWORKS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_FM801 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_FM801_TEA575X_BOOL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_GINA20 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_GINA24 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_ALIGNED_MMIO policy<{'arm64': '-'}> +CONFIG_SND_HDA_CODEC_ANALOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_CA0110 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_CA0132 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_CA0132_DSP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_CIRRUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_CMEDIA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_CONEXANT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_CS8409 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_HDMI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_REALTEK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_SI3054 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_SIGMATEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CODEC_VIA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_COMPONENT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_DSP_LOADER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_EXT_CORE policy<{'amd64': '-'}> +CONFIG_SND_HDA_GENERIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_GENERIC_LEDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_HWDEP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_I915 policy<{'amd64': '-'}> +CONFIG_SND_HDA_INPUT_BEEP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_INPUT_BEEP_MODE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_INTEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_PATCH_LOADER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDA_TEGRA policy<{'arm64': 'n'}> +CONFIG_SND_HDSP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HDSPM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_HWDEP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_I2S_HI6210_I2S policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ICE1712 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ICE1724 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_IMX_SOC policy<{'arm64': '-'}> +CONFIG_SND_INDIGO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_INDIGODJ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_INDIGODJX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_INDIGOIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_INDIGOIOX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_INTEL8X0 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_INTEL8X0M policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_INTEL_BYT_PREFER_SOF policy<{'amd64': '-'}> +CONFIG_SND_INTEL_DSP_CONFIG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_INTEL_NHLT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_INTEL_SOUNDWIRE_ACPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_ISIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_JACK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_JACK_INPUT_DEV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_KIRKWOOD_SOC policy<{'arm64': '-'}> +CONFIG_SND_KIRKWOOD_SOC_ARMADA370_DB policy<{'arm64': '-'}> +CONFIG_SND_KORG1212 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_LAYLA20 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_LAYLA24 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_LOLA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_LX6464ES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_MAESTRO3 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_MAESTRO3_INPUT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_MAX_CARDS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_MESON_AIU policy<{'arm64': '-'}> +CONFIG_SND_MESON_AXG_FIFO policy<{'arm64': '-'}> +CONFIG_SND_MESON_AXG_FRDDR policy<{'arm64': '-'}> +CONFIG_SND_MESON_AXG_PDM policy<{'arm64': '-'}> +CONFIG_SND_MESON_AXG_SOUND_CARD policy<{'arm64': '-'}> +CONFIG_SND_MESON_AXG_SPDIFIN policy<{'arm64': '-'}> +CONFIG_SND_MESON_AXG_SPDIFOUT policy<{'arm64': '-'}> +CONFIG_SND_MESON_AXG_TDMIN policy<{'arm64': '-'}> +CONFIG_SND_MESON_AXG_TDMOUT policy<{'arm64': '-'}> +CONFIG_SND_MESON_AXG_TDM_FORMATTER policy<{'arm64': '-'}> +CONFIG_SND_MESON_AXG_TDM_INTERFACE policy<{'arm64': '-'}> +CONFIG_SND_MESON_AXG_TODDR policy<{'arm64': '-'}> +CONFIG_SND_MESON_CARD_UTILS policy<{'arm64': '-'}> +CONFIG_SND_MESON_CODEC_GLUE policy<{'arm64': '-'}> +CONFIG_SND_MESON_G12A_TOACODEC policy<{'arm64': '-'}> +CONFIG_SND_MESON_G12A_TOHDMITX policy<{'arm64': '-'}> +CONFIG_SND_MESON_GX_SOUND_CARD policy<{'arm64': '-'}> +CONFIG_SND_MIA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_MIXART policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_MIXER_OSS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_MONA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_MPU401 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SND_MPU401_UART policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_MTPAV policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SND_MTS64 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SND_NM256 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_OPL3_LIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_OPL3_LIB_SEQ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_OSSEMUL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SND_OXFW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_OXYGEN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_OXYGEN_LIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_PCI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SND_PCMCIA policy<{'amd64': '-'}> +CONFIG_SND_PCM_ELD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_PCM_IEC958 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_PCM_TIMER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SND_PCSP policy<{'amd64': 'n'}> +CONFIG_SND_PCXHR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_PDAUDIOCF policy<{'amd64': '-'}> +CONFIG_SND_PORTMAN2X4 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SND_PROC_FS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SND_RIPTIDE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_RME32 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_RME96 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_RME9652 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SB_COMMON policy<{'amd64': '-'}> +CONFIG_SND_SEQUENCER_OSS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SEQ_MIDI_EMUL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SERIAL_U16550 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SND_SIMPLE_CARD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SIMPLE_CARD_UTILS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AC97_BUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AC97_CODEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ACPI policy<{'amd64': '-'}> +CONFIG_SND_SOC_ACPI_INTEL_MATCH policy<{'amd64': '-'}> +CONFIG_SND_SOC_ADAU1372 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ADAU1372_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ADAU1372_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ADAU1701 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ADAU1761 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ADAU1761_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ADAU1761_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ADAU17X1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ADAU7002 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ADAU7118 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ADAU7118_HW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ADAU7118_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ADAU_UTILS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ADI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ADI_AXI_I2S policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ADI_AXI_SPDIF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AK4104 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AK4118 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AK4458 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AK4554 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AK4613 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AK4642 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AK5386 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AK5558 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ALC5623 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ALC5632 policy<{'arm64': '-'}> +CONFIG_SND_SOC_AMD_ACP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AMD_ACP3x policy<{'amd64': '-'}> +CONFIG_SND_SOC_AMD_ACP5x policy<{'amd64': '-'}> +CONFIG_SND_SOC_AMD_CZ_DA7219MX98357_MACH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AMD_CZ_RT5645_MACH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_AMD_RV_RT5682_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_APQ8016_SBC policy<{'arm64': '-'}> +CONFIG_SND_SOC_ARIZONA policy<{'amd64': '-'}> +CONFIG_SND_SOC_BD28623 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_BT_SCO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_COMPRESS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CPCAP policy<{'arm64': '-'}> +CONFIG_SND_SOC_CROS_EC_CODEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS35L32 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS35L33 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS35L34 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS35L35 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS35L36 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS4234 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS4265 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS4270 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS4271 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS4271_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS4271_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS42L42 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS42L51 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS42L51_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS42L52 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS42L56 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS42L73 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS42XX8 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS42XX8_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS43130 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS4341 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS4349 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CS53L30 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_CX2072X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_DA7213 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_DA7219 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_DAVINCI_MCASP policy<{'arm64': '-'}> +CONFIG_SND_SOC_DMIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ES7134 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ES7241 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ES8316 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ES8328 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ES8328_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ES8328_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_FSL_ASOC_CARD policy<{'arm64': '-'}> +CONFIG_SND_SOC_FSL_ASRC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_FSL_AUD2HTX policy<{'arm64': '-'}> +CONFIG_SND_SOC_FSL_AUDMIX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_FSL_EASRC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_FSL_ESAI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_FSL_MICFIL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_FSL_MQS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_FSL_RPMSG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_FSL_SAI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_FSL_SPDIF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_FSL_SSI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_FSL_XCVR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_GTM601 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_HDAC_HDA policy<{'amd64': '-'}> +CONFIG_SND_SOC_HDAC_HDMI policy<{'amd64': '-'}> +CONFIG_SND_SOC_HDMI_CODEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_I2C_AND_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ICS43432 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_IMG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_IMG_I2S_IN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_IMG_I2S_OUT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_IMG_PARALLEL_OUT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_IMG_PISTACHIO_INTERNAL_DAC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_IMG_SPDIF_IN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_IMG_SPDIF_OUT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_IMX_AUDIO_RPMSG policy<{'arm64': '-'}> +CONFIG_SND_SOC_IMX_AUDMIX policy<{'arm64': '-'}> +CONFIG_SND_SOC_IMX_AUDMUX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_IMX_CARD policy<{'arm64': '-'}> +CONFIG_SND_SOC_IMX_ES8328 policy<{'arm64': '-'}> +CONFIG_SND_SOC_IMX_HDMI policy<{'arm64': '-'}> +CONFIG_SND_SOC_IMX_PCM_DMA policy<{'arm64': '-'}> +CONFIG_SND_SOC_IMX_PCM_RPMSG policy<{'arm64': '-'}> +CONFIG_SND_SOC_IMX_RPMSG policy<{'arm64': '-'}> +CONFIG_SND_SOC_IMX_SGTL5000 policy<{'arm64': '-'}> +CONFIG_SND_SOC_IMX_SPDIF policy<{'arm64': '-'}> +CONFIG_SND_SOC_INNO_RK3036 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_INTEL_APL policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BDW_RT5650_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BROADWELL_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_COMMON policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BXT_RT298_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BYTCR_WM5102_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BYT_CHT_CX2072X_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BYT_CHT_DA7213_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BYT_CHT_ES8316_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_CATPT policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_CHT_BSW_NAU8824_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_CML_LP_DA7219_MAX98357A_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_DA7219_MAX98357A_GENERIC policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_EHL_RT5660_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_GLK policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_GLK_DA7219_MAX98357A_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_GLK_RT5682_MAX98357A_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_HASWELL_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_HDA_DSP_COMMON policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_KBL policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98357A_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98927_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_KBL_RT5663_MAX98927_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_KBL_RT5663_RT5514_MAX98927_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_KEEMBAY policy<{'arm64': '-'}> +CONFIG_SND_SOC_INTEL_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SKL policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SKL_HDA_DSP_GENERIC_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SKL_RT286_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SKYLAKE_COMMON policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SKYLAKE_FAMILY policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SKYLAKE_SSP_CLK policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SOF_CML_RT1011_RT5682_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SOF_CS42L42_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SOF_DA7219_MAX98373_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SOF_MAXIM_COMMON policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SOF_PCM512x_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SOF_RT5682_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SOF_WM8804_MACH policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SST policy<{'amd64': '-'}> +CONFIG_SND_SOC_INTEL_SST_TOPLEVEL policy<{'amd64': '-'}> +CONFIG_SND_SOC_J721E_EVM policy<{'arm64': '-'}> +CONFIG_SND_SOC_LOCHNAGAR_SC policy<{'arm64': '-'}> +CONFIG_SND_SOC_LPASS_APQ8016 policy<{'arm64': '-'}> +CONFIG_SND_SOC_LPASS_CPU policy<{'arm64': '-'}> +CONFIG_SND_SOC_LPASS_HDMI policy<{'arm64': '-'}> +CONFIG_SND_SOC_LPASS_IPQ806X policy<{'arm64': '-'}> +CONFIG_SND_SOC_LPASS_PLATFORM policy<{'arm64': '-'}> +CONFIG_SND_SOC_LPASS_RX_MACRO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_LPASS_SC7180 policy<{'arm64': '-'}> +CONFIG_SND_SOC_LPASS_TX_MACRO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_LPASS_VA_MACRO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_LPASS_WSA_MACRO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MAX9759 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MAX98088 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MAX98090 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MAX98357A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MAX98373 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MAX98373_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MAX98373_SDW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MAX98390 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MAX98504 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MAX9860 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MAX9867 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MAX98927 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MEDIATEK policy<{'arm64': '-'}> +CONFIG_SND_SOC_MESON_T9015 policy<{'arm64': '-'}> +CONFIG_SND_SOC_MIKROE_PROTO policy<{'arm64': '-'}> +CONFIG_SND_SOC_MSM8916_WCD_ANALOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MSM8916_WCD_DIGITAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MSM8996 policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT2701 policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT6351 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MT6358 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MT6359 policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT6359_ACCDET policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT6660 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_MT6797 policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT6797_MT6351 policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT8173 policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT8183 policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT8183_DA7219_MAX98357A policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT8183_MT6358_TS3A227E_MAX98357A policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT8192 policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT8192_MT6359_RT1015_RT5682 policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT8195 policy<{'arm64': '-'}> +CONFIG_SND_SOC_MT8195_MT6359_RT1019_RT5682 policy<{'arm64': '-'}> +CONFIG_SND_SOC_MTK_BTCVSD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_NAU8315 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_NAU8540 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_NAU8810 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_NAU8822 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_NAU8824 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_NAU8825 policy<{'amd64': '-'}> +CONFIG_SND_SOC_PCM1681 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM1789 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM1789_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM179X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM179X_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM179X_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM186X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM186X_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM186X_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM3060 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM3060_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM3060_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM3168A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM3168A_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM3168A_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM5102A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM512x policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM512x_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_PCM512x_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_QCOM policy<{'arm64': '-'}> +CONFIG_SND_SOC_QCOM_COMMON policy<{'arm64': '-'}> +CONFIG_SND_SOC_QDSP6 policy<{'arm64': '-'}> +CONFIG_SND_SOC_QDSP6_ADM policy<{'arm64': '-'}> +CONFIG_SND_SOC_QDSP6_AFE policy<{'arm64': '-'}> +CONFIG_SND_SOC_QDSP6_AFE_CLOCKS policy<{'arm64': '-'}> +CONFIG_SND_SOC_QDSP6_AFE_DAI policy<{'arm64': '-'}> +CONFIG_SND_SOC_QDSP6_ASM policy<{'arm64': '-'}> +CONFIG_SND_SOC_QDSP6_ASM_DAI policy<{'arm64': '-'}> +CONFIG_SND_SOC_QDSP6_COMMON policy<{'arm64': '-'}> +CONFIG_SND_SOC_QDSP6_CORE policy<{'arm64': '-'}> +CONFIG_SND_SOC_QDSP6_ROUTING policy<{'arm64': '-'}> +CONFIG_SND_SOC_RCAR policy<{'arm64': '-'}> +CONFIG_SND_SOC_RK3288_HDMI_ANALOG policy<{'arm64': '-'}> +CONFIG_SND_SOC_RK3328 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RK3399_GRU_SOUND policy<{'arm64': '-'}> +CONFIG_SND_SOC_RK817 policy<{'arm64': '-'}> +CONFIG_SND_SOC_RL6231 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RL6347A policy<{'amd64': '-'}> +CONFIG_SND_SOC_ROCKCHIP policy<{'arm64': '-'}> +CONFIG_SND_SOC_ROCKCHIP_I2S policy<{'arm64': '-'}> +CONFIG_SND_SOC_ROCKCHIP_MAX98090 policy<{'arm64': '-'}> +CONFIG_SND_SOC_ROCKCHIP_PDM policy<{'arm64': '-'}> +CONFIG_SND_SOC_ROCKCHIP_RT5645 policy<{'arm64': '-'}> +CONFIG_SND_SOC_ROCKCHIP_SPDIF policy<{'arm64': '-'}> +CONFIG_SND_SOC_RT1011 policy<{'amd64': '-'}> +CONFIG_SND_SOC_RT1015 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT1015P policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT1308 policy<{'amd64': '-'}> +CONFIG_SND_SOC_RT1308_SDW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT1316_SDW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT286 policy<{'amd64': '-'}> +CONFIG_SND_SOC_RT298 policy<{'amd64': '-'}> +CONFIG_SND_SOC_RT5514 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT5514_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT5616 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT5631 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT5640 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT5645 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT5651 policy<{'amd64': '-'}> +CONFIG_SND_SOC_RT5659 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT5660 policy<{'amd64': '-'}> +CONFIG_SND_SOC_RT5663 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT5670 policy<{'amd64': '-'}> +CONFIG_SND_SOC_RT5677 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT5677_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT5682 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT5682_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT5682_SDW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT700 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT700_SDW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT711 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT711_SDCA_SDW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT711_SDW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT715 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT715_SDCA_SDW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RT715_SDW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_RZ policy<{'arm64': '-'}> +CONFIG_SND_SOC_SC7180 policy<{'arm64': '-'}> +CONFIG_SND_SOC_SDM845 policy<{'arm64': '-'}> +CONFIG_SND_SOC_SDW_MOCKUP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SGTL5000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SH4_FSI policy<{'arm64': '-'}> +CONFIG_SND_SOC_SI476X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SIGMADSP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SIGMADSP_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SIGMADSP_REGMAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SIMPLE_AMPLIFIER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SIMPLE_MUX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SM8250 policy<{'arm64': '-'}> +CONFIG_SND_SOC_SOF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SOF_ACPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SOF_ACPI_DEV policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_ALDERLAKE policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_APOLLOLAKE policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_BAYTRAIL policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_BROADWELL policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_CANNONLAKE policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_COFFEELAKE policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_COMETLAKE policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_DEBUG_PROBES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SOF_DEVELOPER_SUPPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SOF_ELKHARTLAKE policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_GEMINILAKE policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_HDA policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_HDA_COMMON policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_HDA_LINK_BASELINE policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_ICELAKE policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_IMX8 policy<{'arm64': '-'}> +CONFIG_SND_SOC_SOF_IMX8M policy<{'arm64': '-'}> +CONFIG_SND_SOC_SOF_IMX8M_SUPPORT policy<{'arm64': '-'}> +CONFIG_SND_SOC_SOF_IMX8_SUPPORT policy<{'arm64': '-'}> +CONFIG_SND_SOC_SOF_IMX_COMMON policy<{'arm64': '-'}> +CONFIG_SND_SOC_SOF_IMX_OF policy<{'arm64': '-'}> +CONFIG_SND_SOC_SOF_IMX_TOPLEVEL policy<{'arm64': '-'}> +CONFIG_SND_SOC_SOF_INTEL_APL policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_INTEL_ATOM_HIFI_EP policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_INTEL_CNL policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_INTEL_COMMON policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_INTEL_HIFI_EP_IPC policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_INTEL_ICL policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE_LINK_BASELINE policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_INTEL_TGL policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_JASPERLAKE policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_MERRIFIELD policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_OF policy<{'arm64': '-'}> +CONFIG_SND_SOC_SOF_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SOF_PCI_DEV policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_PROBE_WORK_QUEUE policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_TIGERLAKE policy<{'amd64': '-'}> +CONFIG_SND_SOC_SOF_TOPLEVEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SOF_XTENSA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SPDIF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SPRD policy<{'arm64': '-'}> +CONFIG_SND_SOC_SPRD_MCDT policy<{'arm64': '-'}> +CONFIG_SND_SOC_SSM2305 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SSM2518 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SSM2602 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SSM2602_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SSM2602_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_SSM4567 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_STA32X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_STA350 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_STI_SAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_STORM policy<{'arm64': '-'}> +CONFIG_SND_SOC_TAS2552 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TAS2562 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TAS2764 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TAS2770 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TAS5086 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TAS571X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TAS5720 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TAS6424 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TDA7419 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TEGRA policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA186_DSPK policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA20_AC97 policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA20_DAS policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA20_I2S policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA20_SPDIF policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA210_ADMAIF policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA210_AHUB policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA210_DMIC policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA210_I2S policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA30_AHUB policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA30_I2S policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA_ALC5632 policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA_AUDIO_GRAPH_CARD policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA_MACHINE_DRV policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA_MAX98090 policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA_RT5640 policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA_RT5677 policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA_SGTL5000 policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA_TRIMSLICE policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA_WM8753 policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA_WM8903 policy<{'arm64': '-'}> +CONFIG_SND_SOC_TEGRA_WM9712 policy<{'arm64': '-'}> +CONFIG_SND_SOC_TFA9879 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TFA989X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TI_EDMA_PCM policy<{'arm64': '-'}> +CONFIG_SND_SOC_TI_SDMA_PCM policy<{'arm64': '-'}> +CONFIG_SND_SOC_TI_UDMA_PCM policy<{'arm64': '-'}> +CONFIG_SND_SOC_TLV320ADCX140 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TLV320AIC23 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TLV320AIC23_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TLV320AIC23_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TLV320AIC31XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TLV320AIC32X4 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TLV320AIC32X4_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TLV320AIC32X4_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TLV320AIC3X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TLV320AIC3X_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TLV320AIC3X_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TOPOLOGY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TPA6130A2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TS3A227E policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TSCS42XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_TSCS454 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_UDA1334 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WCD9335 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WCD934X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WCD938X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WCD938X_SDW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WCD_MBHC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM5102 policy<{'amd64': '-'}> +CONFIG_SND_SOC_WM8510 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8523 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8524 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8580 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8711 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8728 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8731 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8737 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8741 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8750 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8753 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8770 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8776 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8782 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8804 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8804_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8804_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8903 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8904 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8960 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8962 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8974 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8978 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8985 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM8994 policy<{'arm64': '-'}> +CONFIG_SND_SOC_WM9712 policy<{'arm64': '-'}> +CONFIG_SND_SOC_WM_ADSP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_WM_HUBS policy<{'arm64': '-'}> +CONFIG_SND_SOC_WSA881X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_XILINX_I2S policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_XILINX_SPDIF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_XTFPGA_I2S policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SOC_ZL38060 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SONICVIBES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_SPI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM policy<{'amd64': '-'}> +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI policy<{'amd64': '-'}> +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI policy<{'amd64': '-'}> +CONFIG_SND_SUN4I_CODEC policy<{'arm64': '-'}> +CONFIG_SND_SUN4I_I2S policy<{'arm64': '-'}> +CONFIG_SND_SUN4I_SPDIF policy<{'arm64': '-'}> +CONFIG_SND_SUN50I_CODEC_ANALOG policy<{'arm64': '-'}> +CONFIG_SND_SUN8I_ADDA_PR_REGMAP policy<{'arm64': '-'}> +CONFIG_SND_SUN8I_CODEC policy<{'arm64': '-'}> +CONFIG_SND_SUN8I_CODEC_ANALOG policy<{'arm64': '-'}> +CONFIG_SND_SUPPORT_OLD_API policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SND_SYNTH_EMUX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_TRIDENT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SND_USB_6FIRE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_AUDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_CAIAQ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_CAIAQ_INPUT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_HIFACE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_LINE6 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_POD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_PODHD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_TONEPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_UA101 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_USB_US122L policy<{'amd64': '-'}> +CONFIG_SND_USB_USX2Y policy<{'amd64': '-'}> +CONFIG_SND_USB_VARIAX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_VERBOSE_PROCFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_VIA82XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_VIA82XX_MODEM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_VIRTIO policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SND_VIRTUOSO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_VMASTER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_VX222 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_VXPOCKET policy<{'amd64': '-'}> +CONFIG_SND_VX_LIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_X86 policy<{'amd64': 'n'}> +CONFIG_SND_XEN_FRONTEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SND_YMFPCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SNI_NETSEC policy<{'arm64': '-'}> +CONFIG_SOCFPGA_FPGA_BRIDGE policy<{'arm64': '-'}> +CONFIG_SONY_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SOUNDWIRE_CADENCE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SOUNDWIRE_GENERIC_ALLOCATION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SOUNDWIRE_INTEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SOUNDWIRE_QCOM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SOUND_OSS_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPI_ALTERA_DFL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPI_DLN2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPI_HISI_SFC policy<{'arm64': '-'}> +CONFIG_SPI_LJCA policy<{'amd64': '-'}> +CONFIG_SPI_ROCKCHIP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SPMI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SPMI_HISI3670 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPMI_MSM_PMIC_ARB policy<{'arm64': '-'}> +CONFIG_SPMI_PMIC_CLKDIV policy<{'arm64': '-'}> +CONFIG_SPS30 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPS30_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SPS30_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SRF04 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SRF08 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SSB_B43_PCI_BRIDGE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SSB_BLOCKIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SSB_PCMCIAHOST policy<{'amd64': '-'}> +CONFIG_SSB_PCMCIAHOST_POSSIBLE policy<{'amd64': '-'}> +CONFIG_SSB_SDIOHOST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SSB_SDIOHOST_POSSIBLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SSFDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STANDALONE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_STE10XP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_STK3310 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STK8312 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STK8BA50 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_STMMAC_ETH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STMMAC_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STMMAC_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STMMAC_SELFTESTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STMPE_ADC policy<{'arm64': '-'}> +CONFIG_STMPE_I2C policy<{'arm64': '-'}> +CONFIG_STM_DUMMY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STM_PROTO_BASIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STM_PROTO_SYS_T policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STM_SOURCE_CONSOLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STM_SOURCE_FTRACE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STM_SOURCE_HEARTBEAT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STPMIC1_WATCHDOG policy<{'arm64': '-'}> +CONFIG_STRING_SELFTEST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_STX104 policy<{'amd64': '-'}> +CONFIG_ST_UVIS25 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ST_UVIS25_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ST_UVIS25_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SUN4I_GPADC policy<{'arm64': '-'}> +CONFIG_SUNGEM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SUNGEM_PHY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SUNRPC_DISABLE_INSECURE_ENCTYPES policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SURFACE3_WMI policy<{'amd64': '-'}> +CONFIG_SURFACE_3_BUTTON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SURFACE_3_POWER_OPREGION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SURFACE_ACPI_NOTIFY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SURFACE_AGGREGATOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SURFACE_AGGREGATOR_BUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SURFACE_AGGREGATOR_CDEV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SURFACE_AGGREGATOR_ERROR_INJECTION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SURFACE_AGGREGATOR_REGISTRY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SURFACE_DTX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SURFACE_GPE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SURFACE_HID policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SURFACE_HID_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SURFACE_HOTPLUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SURFACE_KBD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SURFACE_PLATFORMS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SURFACE_PLATFORM_PROFILE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SURFACE_PRO3_BUTTON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SWIOTLB_XEN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SX9310 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SX9500 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SXGBE_ETH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_SYNCLINK_CS policy<{'amd64': '-'}> +CONFIG_SYSFB_SIMPLEFB policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SYS_HYPERVISOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_T5403 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TABLET_SERIAL_WACOM4 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TABLET_USB_ACECAD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TABLET_USB_AIPTEK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TABLET_USB_HANWANG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TABLET_USB_KBTAB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TABLET_USB_PEGASUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TAHVO_USB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TAHVO_USB_HOST_BY_DEFAULT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TCG_ATMEL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TCG_INFINEON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TCG_TIS_SPI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TCG_TIS_SPI_CR50 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TCG_TIS_ST33ZP24 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TCG_TIS_ST33ZP24_I2C policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TCG_TIS_ST33ZP24_SPI policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TCG_VTPM_PROXY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TCG_XEN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TCM_FC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TCM_QLA2XXX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TCM_QLA2XXX_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TCS3414 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TCS3472 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEHUTI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TERANETICS_PHY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TEST_BITMAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_BITOPS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_BPF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_CLOCKSOURCE_WATCHDOG policy<{'amd64': '-'}> +CONFIG_TEST_DIV64 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_FIRMWARE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_FPU policy<{'amd64': '-'}> +CONFIG_TEST_FREE_PAGES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_HASH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_HEXDUMP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_HMM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_IDA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_KMOD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_KSTRTOX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_LIVEPATCH policy<{'amd64': '-'}> +CONFIG_TEST_LKM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_MEMCAT_P policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_MEMINIT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_MIN_HEAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_OBJAGG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_OVERFLOW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_PARMAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_POWER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TEST_PRINTF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_RHASHTABLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_SCANF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_STACKINIT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_STATIC_KEYS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_STRING_HELPERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_STRSCPY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_SYSCTL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_UDELAY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_USER_COPY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_UUID policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_VMALLOC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TEST_XARRAY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_THINKPAD_ACPI policy<{'amd64': '-'}> +CONFIG_THINKPAD_ACPI_ALSA_SUPPORT policy<{'amd64': '-'}> +CONFIG_THINKPAD_ACPI_DEBUG policy<{'amd64': '-'}> +CONFIG_THINKPAD_ACPI_DEBUGFACILITIES policy<{'amd64': '-'}> +CONFIG_THINKPAD_ACPI_HOTKEY_POLL policy<{'amd64': '-'}> +CONFIG_THINKPAD_ACPI_UNSAFE_LEDS policy<{'amd64': '-'}> +CONFIG_THINKPAD_ACPI_VIDEO policy<{'amd64': '-'}> +CONFIG_THRUSTMASTER_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_THUNDER_NIC_BGX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_THUNDER_NIC_PF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_THUNDER_NIC_RGX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_THUNDER_NIC_VF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TICK_CPU_ACCOUNTING policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TIPC_MEDIA_IB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TI_ADC081C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_ADC0832 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_ADC084S021 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_ADC108S102 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_ADC12138 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_ADC128S052 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_ADC161S626 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_ADS1015 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_ADS124S08 policy<{'arm64': '-'}> +CONFIG_TI_ADS131E08 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_ADS7950 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_ADS8344 policy<{'arm64': '-'}> +CONFIG_TI_ADS8688 policy<{'arm64': '-'}> +CONFIG_TI_AM335X_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_AM65_CPSW_TAS policy<{'arm64': '-'}> +CONFIG_TI_CPSW_PHY_SEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_DAC082S085 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_DAC5571 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_DAC7311 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_DAC7612 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_DAVINCI_MDIO policy<{'arm64': '-'}> +CONFIG_TI_K3_AM65_CPSW_NUSS policy<{'arm64': '-'}> +CONFIG_TI_K3_AM65_CPSW_SWITCHDEV policy<{'arm64': '-'}> +CONFIG_TI_K3_AM65_CPTS policy<{'arm64': '-'}> +CONFIG_TI_K3_DSP_REMOTEPROC policy<{'arm64': '-'}> +CONFIG_TI_K3_R5_REMOTEPROC policy<{'arm64': '-'}> +CONFIG_TI_SOC_THERMAL policy<{'arm64': '-'}> +CONFIG_TI_ST policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TI_TLC4541 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TI_TSC2046 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TLAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TMD_HERMES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TMP006 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TMP007 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TMP117 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TORTURE_TEST policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_TOUCHSCREEN_88PM860X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_AD7877 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_AD7879 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_AD7879_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_AD7879_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ADS7846 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_AR1021_I2C policy<{'arm64': '-'}> +CONFIG_TOUCHSCREEN_ATMEL_MXT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ATMEL_MXT_T37 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_AUO_PIXCIR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_BU21013 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_BU21029 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 policy<{'arm64': '-'}> +CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_COLIBRI_VF50 policy<{'arm64': '-'}> +CONFIG_TOUCHSCREEN_CY8CTMA140 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_CY8CTMG110 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_CYTTSP4_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_CYTTSP4_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_CYTTSP4_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_CYTTSP_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_CYTTSP_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_CYTTSP_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_DA9034 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_DA9052 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_DMI policy<{'amd64': '-'}> +CONFIG_TOUCHSCREEN_DYNAPRO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_EDT_FT5X06 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_EETI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_EGALAX policy<{'arm64': '-'}> +CONFIG_TOUCHSCREEN_EGALAX_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_EKTF2127 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ELO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_EXC3000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_FUJITSU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_GOODIX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_GUNZE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_HAMPSHIRE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_HIDEEP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_HYCON_HY46XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ILI210X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ILITEK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_IMX6UL_TSC policy<{'arm64': '-'}> +CONFIG_TOUCHSCREEN_INEXIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_IPROC policy<{'arm64': '-'}> +CONFIG_TOUCHSCREEN_IQS5XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_MAX11801 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_MC13783 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_MCS5000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_MELFAS_MIP4 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_MK712 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_MMS114 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_MSG2638 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_MTOUCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_PCAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_PENMOUNT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_PIXCIR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_RASPBERRYPI_FW policy<{'arm64': '-'}> +CONFIG_TOUCHSCREEN_RM_TS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ROHM_BU21023 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_S6SY761 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_SILEAD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_SIS_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ST1232 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_STMFTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_STMPE policy<{'arm64': '-'}> +CONFIG_TOUCHSCREEN_SUN4I policy<{'arm64': '-'}> +CONFIG_TOUCHSCREEN_SUR40 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_SURFACE3_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_SX8654 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TI_AM335X_TSC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TOUCHIT213 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TOUCHRIGHT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TOUCHWIN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TPS6507X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TSC2004 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TSC2005 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TSC2007 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TSC2007_IIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TSC200X_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_TSC_SERIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_UCB1400 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_3M policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_COMPOSITE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_DMC_TSC10 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_E2I policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_EASYTOUCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_EGALAX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_ELO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_ETT_TC45USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_ETURBO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_GOTOP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_GUNZE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_IDEALTEK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_IRTOUCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_ITM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_JASTEC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_NEXIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_PANJIT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_USB_ZYTRONIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_WACOM_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_WACOM_W8001 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_WDT87XX_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_WM831X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_WM9705 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_WM9712 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_WM9713 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_WM97XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ZET6223 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ZFORCE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TOUCHSCREEN_ZINITIX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TPL0102 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TRANS_TABLE policy<{'arm64': 'y'}> +CONFIG_TSL2583 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TSL2591 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TSL2772 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TSL4531 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TSYS01 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TSYS02D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TTPCI_EEPROM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TULIP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TULIP_MMIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TULIP_MWI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TULIP_NAPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TWL4030_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TWL4030_MADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TWL4030_WATCHDOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TWL6030_GPADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TWL6040_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_TYPEC_DP_ALTMODE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_FUSB302 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_HD3SS3220 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_MT6360 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_MUX_INTEL_PMC policy<{'amd64': '-'}> +CONFIG_TYPEC_MUX_PI3USB30532 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_NVIDIA_ALTMODE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_QCOM_PMIC policy<{'arm64': '-'}> +CONFIG_TYPEC_RT1711H policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_STUSB160X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_TCPCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_TCPCI_MAXIM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_TCPM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_TPS6598X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_UCSI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_TYPEC_WCOVE policy<{'amd64': '-'}> +CONFIG_TYPHOON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UBIFS_ATIME_SUPPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UBIFS_FS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UBIFS_FS_ADVANCED_COMPR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UBIFS_FS_AUTHENTICATION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UBIFS_FS_LZO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UBIFS_FS_SECURITY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UBIFS_FS_XATTR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UBIFS_FS_ZLIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UBIFS_FS_ZSTD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UBUNTU_ODM_DRIVERS policy<{'amd64': '-'}> +CONFIG_UCB1400_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UCSI_ACPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UCSI_CCG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_UIO_DFL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ULI526X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_US5182D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USBIP_CORE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USBIP_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USBIP_HOST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USBIP_VHCI_HCD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USBIP_VHCI_HC_PORTS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USBIP_VHCI_NR_HCS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USBIP_VUDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USBPCWATCHDOG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_ADUTUX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_AIRSPY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ALI_M5632 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_AMD5536UDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_AN2720 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ANNOUNCE_NEW_DEVICES policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_APPLEDISPLAY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_ARMLINUX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ATM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_AUDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_BDC_UDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_BELKIN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_C67X00_HCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_CATC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CDC_COMPOSITE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CDC_PHONET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CDNS3 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_CDNS3_GADGET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CDNS3_HOST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CDNS3_IMX policy<{'arm64': '-'}> +CONFIG_USB_CDNS3_PCI_WRAP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CDNS3_TI policy<{'arm64': '-'}> +CONFIG_USB_CDNSP_GADGET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CDNSP_HOST policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_CDNS_HOST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CHAOSKEY policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_CHIPIDEA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CHIPIDEA_GENERIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CHIPIDEA_HOST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CHIPIDEA_IMX policy<{'arm64': '-'}> +CONFIG_USB_CHIPIDEA_MSM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CHIPIDEA_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CHIPIDEA_TEGRA policy<{'arm64': '-'}> +CONFIG_USB_CHIPIDEA_UDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_ACM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_ECM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_ECM_SUBSET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_EEM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_FS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_HID policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_LB_SS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_MIDI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_PRINTER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_TCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_UAC1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_UAC1_LEGACY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_UAC2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_F_UVC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_MASS_STORAGE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_NCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_OBEX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_PHONET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_RNDIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONFIGFS_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CONN_GPIO policy<{'amd64': 'n', 'arm64': 'm'}> +CONFIG_USB_CXACRU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_CYPRESS_CY7C63 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_CYTHERM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_DEFAULT_PERSIST policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_DSBR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DUMMY_HCD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC2 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_DWC2_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC2_HOST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC2_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC2_TRACK_MISSED_SOFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC3 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_DWC3_DUAL_ROLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC3_GADGET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC3_HAPS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC3_HOST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC3_IMX8MP policy<{'arm64': '-'}> +CONFIG_USB_DWC3_KEYSTONE policy<{'arm64': '-'}> +CONFIG_USB_DWC3_MESON_G12A policy<{'arm64': '-'}> +CONFIG_USB_DWC3_OF_SIMPLE policy<{'arm64': '-'}> +CONFIG_USB_DWC3_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC3_QCOM policy<{'arm64': '-'}> +CONFIG_USB_DWC3_ULPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_DWC3_XILINX policy<{'arm64': '-'}> +CONFIG_USB_DYNAMIC_MINORS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_EG20T policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_EHCI_BRCMSTB policy<{'arm64': '-'}> +CONFIG_USB_EHCI_FSL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_EHCI_HCD_ORION policy<{'arm64': '-'}> +CONFIG_USB_EHCI_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_EHCI_ROOT_HUB_TT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_EHCI_TEGRA policy<{'arm64': '-'}> +CONFIG_USB_EHCI_TT_NEWSCHED policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_EHSET_TEST_FIXTURE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_EMI26 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_EMI62 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_EMXX policy<{'arm64': '-'}> +CONFIG_USB_EPSON2888 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ETH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ETH_EEM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ETH_RNDIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_EZUSB_FX2 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_FOTG210_HCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_FOTG210_UDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_FTDI_ELAN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_FUNCTIONFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_FUNCTIONFS_ETH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_FUNCTIONFS_GENERIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_FUNCTIONFS_RNDIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_ACM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_ECM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_EEM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_FS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_HID policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_MASS_STORAGE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_MIDI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_NCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_OBEX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_PHONET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_PRINTER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_RNDIS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_SS_LB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_SUBSET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_TCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_UAC1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_UAC1_LEGACY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_UAC2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_F_UVC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GADGET policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_GADGETFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GADGET_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GADGET_DEBUG_FILES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GADGET_DEBUG_FS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GADGET_TARGET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GADGET_VBUS_DRAW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GADGET_XILINX policy<{'arm64': '-'}> +CONFIG_USB_GL860 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GOKU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GPIO_VBUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_GR_UDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_BENQ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_CONEX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_CPIA1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_DTCS033 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_ETOMS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_FINEPIX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_JEILINJ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_JL2005BCD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_KINECT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_KONICA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_MARS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_MR97310A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_NW80X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_OV519 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_OV534 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_OV534_9 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_PAC207 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_PAC7302 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_PAC7311 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SE401 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SN9C2028 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SN9C20X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SONIXB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SONIXJ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SPCA1528 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SPCA500 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SPCA501 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SPCA505 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SPCA506 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SPCA508 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SPCA561 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SQ905 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SQ905C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SQ930X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_STK014 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_STK1135 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_STV0680 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_SUNPLUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_T613 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_TOPRO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_TOUPTEK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_TV8532 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_VC032X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_VICAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_XIRLINK_CIT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_GSPCA_ZC3XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_ACM_MS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_DBGP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_DBGP_PRINTK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_DBGP_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_HID policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_MULTI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_NCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_NOKIA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_PRINTER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_G_WEBCAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_HACKRF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_HID policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_HIDDEV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_HSIC_USB3503 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_HSIC_USB4604 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_HSO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_HUB_USB251XB policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_IDMOUSE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_IOWARRIOR policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_IPHETH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ISIGHTFW policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_ISP116X_HCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_ISP1301 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_ISP1760 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_ISP1760_DUAL_ROLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ISP1760_GADGET_ROLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ISP1760_HCD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ISP1760_HOST_ROLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ISP1761_UDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_KAWETH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_KBD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_KC2190 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_KEENE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_LAN78XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_LCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_LD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_LEDS_TRIGGER_USBPORT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_LED_TRIG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_LEGOTOWER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_LIBCOMPOSITE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_LINK_LAYER_TEST policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_M5602 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MA901 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MASS_STORAGE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MAX3420_UDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MAX3421_HCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_MDC800 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_MICROTEK policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_MIDI_GADGET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MON policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_MOUSE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_MR800 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MSI2500 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MTU3_DUAL_ROLE policy<{'arm64': '-'}> +CONFIG_USB_MTU3_GADGET policy<{'arm64': '-'}> +CONFIG_USB_MTU3_HOST policy<{'arm64': 'y'}> +CONFIG_USB_MUSB_DUAL_ROLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MUSB_GADGET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MUSB_HOST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MUSB_MEDIATEK policy<{'arm64': '-'}> +CONFIG_USB_MUSB_SUNXI policy<{'arm64': '-'}> +CONFIG_USB_MV_U3D policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_MV_UDC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET2272 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET2272_DMA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET2280 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_AQC111 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_AX88179_178A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_AX8817X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_CDCETHER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_CDC_EEM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_CDC_MBIM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_CDC_NCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_CDC_SUBSET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_CDC_SUBSET_ENABLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_CH9200 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_CX82310_ETH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_DM9601 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_DRIVERS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_NET_GL620A policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_HUAWEI_CDC_NCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_INT51X1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_KALMIA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_MCS7830 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_NET1080 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_PLUSB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_QMI_WWAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_RNDIS_HOST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_RNDIS_WLAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_SMSC75XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_SMSC95XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_SR9700 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_SR9800 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_NET_ZAURUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_OHCI_HCD_PCI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_OHCI_HCD_PLATFORM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_OXU210HP_HCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_PEGASUS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_PRINTER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_PWC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_PWC_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_PWC_INPUT_EVDEV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_PXA27X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_R8A66597 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_R8A66597_HCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_RAREMONO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_RAW_GADGET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_RENESAS_USB3 policy<{'arm64': '-'}> +CONFIG_USB_RENESAS_USBHS policy<{'arm64': '-'}> +CONFIG_USB_RENESAS_USBHS_HCD policy<{'arm64': '-'}> +CONFIG_USB_RENESAS_USBHS_UDC policy<{'arm64': '-'}> +CONFIG_USB_ROLE_SWITCH policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_USB_RTL8150 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_RTL8152 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_RTL8153_ECM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_S2255 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_SERIAL_AIRCABLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_ARK3116 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_BELKIN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_CH341 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_CP210X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_CYBERJACK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_CYPRESS_M8 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_DIGI_ACCELEPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_EDGEPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_EDGEPORT_TI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_EMPEG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_F81232 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_F8153X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_FTDI_SIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_GARMIN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_GENERIC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_IPAQ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_IPW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_IR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_IUU policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_KEYSPAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_KEYSPAN_PDA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_KLSI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_KOBIL_SCT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_MCT_U232 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_METRO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_MOS7715_PARPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_MOS7720 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_MOS7840 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_MXUPORT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_NAVMAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_OMNINET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_OPTICON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_OPTION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_OTI6858 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_PL2303 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_QCAUX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_QT2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_QUALCOMM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_SAFE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_SAFE_PADDED policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_SIERRAWIRELESS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_SIMPLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_SPCP8X5 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_SSU100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_SYMBOL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_TI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_UPD78F0730 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_VISOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_WHITEHEAT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_WISHBONE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_WWAN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_XR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SERIAL_XSENS_MT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SEVSEG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_SI470X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SI4713 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SIERRA_NET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SISUSBVGA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SL811_CS policy<{'amd64': '-'}> +CONFIG_USB_SL811_HCD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_SL811_HCD_ISO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SNP_CORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_SNP_UDC_PLAT policy<{'arm64': '-'}> +CONFIG_USB_SPEEDTOUCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STKWEBCAM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_STORAGE_ALAUDA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_CYPRESS_ATACB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_DATAFAB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_ENE_UB6250 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_FREECOM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_ISD200 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_JUMPSHOT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_KARMA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_ONETOUCH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_REALTEK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_SDDR09 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_SDDR55 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STORAGE_USBAT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_STV06XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_TEGRA_XUDC policy<{'arm64': '-'}> +CONFIG_USB_TEST policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_TMC policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_TRANCEVIBRATOR policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_U132_HCD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_UAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_UEAGLEATM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_USBNET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_USS720 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_U_AUDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_U_ETHER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_U_SERIAL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_VIDEO_CLASS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_VL600 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_WDM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_XHCI_PCI_RENESAS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_XUSBATM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_YUREX policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_USB_ZD1201 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ZERO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_USB_ZR364XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_U_SERIAL_CONSOLE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_V4L2_FLASH_LED_CLASS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VBOXSF_FS policy<{'amd64': '-'}> +CONFIG_VCNL3020 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VCNL4000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VCNL4035 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VDPA_SIM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VDPA_SIM_BLOCK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VDPA_SIM_NET policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VEML6030 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VEML6070 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VF610_ADC policy<{'arm64': '-'}> +CONFIG_VF610_DAC policy<{'arm64': '-'}> +CONFIG_VGASTATE policy<{'amd64': 'm', 'arm64': '-'}> +CONFIG_VIA_RHINE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIA_RHINE_MMIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIA_VELOCITY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEOBUF2_DVB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEOBUF_DMA_SG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEOBUF_GEN policy<{'amd64': 'm', 'arm64': '-'}> +CONFIG_VIDEOBUF_VMALLOC policy<{'amd64': 'm', 'arm64': '-'}> +CONFIG_VIDEOMODE_HELPERS policy<{'amd64': '-', 'arm64': 'y'}> +CONFIG_VIDEO_AD5820 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ADP1653 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_AK7375 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_APTINA_PLL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_AU0828 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_AU0828_RC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_AU0828_V4L2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_BT848 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CCS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CCS_PLL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_COBALT policy<{'amd64': '-'}> +CONFIG_VIDEO_CPIA2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX18 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX18_ALSA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX231XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX231XX_ALSA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX231XX_DVB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX231XX_RC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX2341X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX23885 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX25821 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX25821_ALSA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX88 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX88_ALSA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX88_BLACKBIRD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX88_DVB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX88_ENABLE_VP3054 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX88_MPEG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_CX88_VP3054 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_DT3155 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_DW9714 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_DW9768 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_DW9807_VCM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_EM28XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_EM28XX_ALSA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_EM28XX_DVB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_EM28XX_RC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_EM28XX_V4L2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ET8EK8 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_FB_IVTV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_FB_IVTV_FORCE_PAT policy<{'amd64': '-'}> +CONFIG_VIDEO_GO7007 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_GO7007_LOADER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_GO7007_USB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_GO7007_USB_S2250_BOARD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_HDPVR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_HEXIUM_GEMINI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_HEXIUM_ORION policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_HI556 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_HM11B1 policy<{'amd64': '-'}> +CONFIG_VIDEO_IMX208 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_IMX214 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_IMX219 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_IMX258 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_IMX274 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_IMX290 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_IMX319 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_IMX334 policy<{'arm64': '-'}> +CONFIG_VIDEO_IMX335 policy<{'arm64': '-'}> +CONFIG_VIDEO_IMX355 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_IMX412 policy<{'arm64': '-'}> +CONFIG_VIDEO_INTEL_IPU6 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_IPU3_CIO2 policy<{'amd64': '-'}> +CONFIG_VIDEO_IVTV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_IVTV_ALSA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_LM3560 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_LM3646 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_M5MOLS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MAX9271_LIB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MEYE policy<{'amd64': '-'}> +CONFIG_VIDEO_MT9M001 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MT9M032 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MT9M111 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MT9P031 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MT9T001 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MT9T112 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MT9V011 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MT9V032 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MT9V111 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_MXB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_NOON010PC30 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV01A10 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV01A1S policy<{'amd64': '-'}> +CONFIG_VIDEO_OV02A10 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV02C10 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV13858 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV2640 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV2659 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV2680 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV2685 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV2740 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV5640 policy<{'arm64': '-'}> +CONFIG_VIDEO_OV5645 policy<{'arm64': '-'}> +CONFIG_VIDEO_OV5647 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV5648 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV5670 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV5675 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV5695 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV6650 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV7251 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV7640 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV772X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV7740 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV8856 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV8865 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV9282 policy<{'arm64': '-'}> +CONFIG_VIDEO_OV9640 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV9650 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_OV9734 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_PCI_SKELETON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_PVRUSB2 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_PVRUSB2_DEBUGIFC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_PVRUSB2_DVB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_PVRUSB2_SYSFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_RCAR_DRIF policy<{'arm64': '-'}> +CONFIG_VIDEO_RDACM20 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_RDACM21 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_RJ54N1 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_S5C73M3 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_S5K4ECGX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_S5K5BAF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_S5K6A3 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_S5K6AA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA7134 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA7134_ALSA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA7134_DVB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA7134_GO7007 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA7134_RC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA7146 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA7146_VV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SAA7164 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SOLO6X10 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_SR030PC30 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_STK1160 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_STK1160_COMMON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TDA1997X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TM6000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TM6000_ALSA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TM6000_DVB policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TUNER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TVEEPROM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TW5864 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TW68 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_TW686X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_USBTV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_VS6624 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ZORAN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_VIDEO_ZORAN_AVS6EYES policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ZORAN_BUZ policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ZORAN_DC10 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ZORAN_DC30 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ZORAN_LML33 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ZORAN_LML33R10 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIDEO_ZORAN_ZR36060 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIPERBOARD_ADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VIRT_CPU_ACCOUNTING policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_VIRT_CPU_ACCOUNTING_GEN policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_VIRT_WIFI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VL53L0X_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VL6180 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VMAP_PFN policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_VME_USER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_VMXNET3 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_VORTEX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VT6656 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_VXLAN policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_VZ89X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1 policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_W1_CON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_MASTER_DS1WM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_MASTER_DS2482 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_MASTER_DS2490 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_MASTER_GPIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_MASTER_MATROX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_MASTER_MXC policy<{'arm64': '-'}> +CONFIG_W1_MASTER_SGI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2405 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2406 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2408 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2408_READBACK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2413 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2423 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2430 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2431 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2433 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2433_CRC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2438 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS250X policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2780 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2781 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS2805 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS28E04 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_DS28E17 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_SMEM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_W1_SLAVE_THERM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WANT_DEV_COREDUMP policy<{'amd64': '-', 'arm64': 'y'}> +CONFIG_WCN36XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WCN36XX_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WEXT_PRIV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WEXT_SPY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIL6210 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIL6210_DEBUGFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIL6210_ISR_COR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIL6210_TRACING policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WILC1000 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WILC1000_HW_OOB_INTR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WILC1000_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WILC1000_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WILCO_EC policy<{'amd64': '-'}> +CONFIG_WILCO_EC_DEBUGFS policy<{'amd64': '-'}> +CONFIG_WILCO_EC_EVENTS policy<{'amd64': '-'}> +CONFIG_WILCO_EC_TELEMETRY policy<{'amd64': '-'}> +CONFIG_WILINK_PLATFORM_DATA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WINBOND_840 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIRELESS_EXT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIZNET_BUS_ANY policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIZNET_BUS_DIRECT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIZNET_BUS_INDIRECT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIZNET_W5100 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIZNET_W5100_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WIZNET_W5300 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WL1251 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WL1251_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WL1251_SPI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WL12XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WL18XX policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_WLAN_VENDOR_ADMTEK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_ATH policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_ATMEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_BROADCOM policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_CISCO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_INTEL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_INTERSIL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_MARVELL policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_MEDIATEK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_MICROCHIP policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_QUANTENNA policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_RALINK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_REALTEK policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_RSI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_ST policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_TI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLAN_VENDOR_ZYDAS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLCORE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLCORE_SDIO policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WLCORE_SPI policy<{'arm64': '-'}> +CONFIG_WM831X_BACKUP policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_WM831X_POWER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_WM8350_POWER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_WM8350_WATCHDOG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_XENFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_ACPI policy<{'amd64': '-'}> +CONFIG_XEN_AUTO_XLATE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_BACKEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_BALLOON policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_BLKDEV_BACKEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_COMPAT_XENFS policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_DEBUG_FS policy<{'amd64': '-'}> +CONFIG_XEN_DEV_EVTCHN policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_DOM0 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_EFI policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_FBDEV_FRONTEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_FRONT_PGDIR_SHBUF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_GNTDEV policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_GNTDEV_DMABUF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_GRANT_DEV_ALLOC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_GRANT_DMA_ALLOC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_HAVE_PVMMU policy<{'amd64': '-'}> +CONFIG_XEN_HAVE_VPMU policy<{'amd64': '-'}> +CONFIG_XEN_MCE_LOG policy<{'amd64': '-'}> +CONFIG_XEN_MEMORY_HOTPLUG_LIMIT policy<{'amd64': '-'}> +CONFIG_XEN_NETDEV_BACKEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_PCIDEV_BACKEND policy<{'amd64': '-'}> +CONFIG_XEN_PCIDEV_FRONTEND policy<{'amd64': '-'}> +CONFIG_XEN_PRIVCMD policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_PV policy<{'amd64': '-'}> +CONFIG_XEN_PVCALLS_BACKEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_PVCALLS_FRONTEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_PVH policy<{'amd64': '-'}> +CONFIG_XEN_PVHVM policy<{'amd64': '-'}> +CONFIG_XEN_PVHVM_GUEST policy<{'amd64': '-'}> +CONFIG_XEN_PVHVM_SMP policy<{'amd64': '-'}> +CONFIG_XEN_PV_DOM0 policy<{'amd64': '-'}> +CONFIG_XEN_PV_SMP policy<{'amd64': '-'}> +CONFIG_XEN_SAVE_RESTORE policy<{'amd64': '-'}> +CONFIG_XEN_SCRUB_PAGES_DEFAULT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_SCSI_BACKEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_SCSI_FRONTEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_SYMS policy<{'amd64': '-'}> +CONFIG_XEN_SYS_HYPERVISOR policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_UNPOPULATED_ALLOC policy<{'amd64': '-'}> +CONFIG_XEN_WDT policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XEN_XENBUS_FRONTEND policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XILINX_GMII2RGMII policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_XILINX_PR_DECOUPLER policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XILINX_XADC policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_XILLYBUS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_XILLYBUS_OF policy<{'arm64': '-'}> +CONFIG_XILLYBUS_PCIE policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_YAM policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_YAMAHA_YAS530 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ZD1211RW policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ZD1211RW_DEBUG policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ZEROPLUS_FF policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ZOPT2201 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ZPA2326 policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ZPA2326_I2C policy<{'amd64': '-', 'arm64': '-'}> +CONFIG_ZPA2326_SPI policy<{'amd64': '-', 'arm64': '-'}> diff --git a/debian.azure/control.d/azure.inclusion-list b/debian.azure/control.d/azure.inclusion-list new file mode 100644 index 0000000000000..c575d14ed4ce6 --- /dev/null +++ b/debian.azure/control.d/azure.inclusion-list @@ -0,0 +1,275 @@ +arch/*/{crypto,kernel,oprofile} +arch/*/kvm/kvm.ko +arch/powerpc/kvm/kvm-hv.ko +arch/powerpc/kvm/kvm-pr.ko +arch/powerpc/kvm/vfio.ko +arch/powerpc/platforms/powernv/opal-prd.ko +arch/s390/* +arch/x86/kvm/kvm-amd.ko +arch/x86/kvm/kvm-intel.ko +block/bfq.ko +block/cfq-iosched.ko +block/deadline-iosched.ko +block/kyber-iosched.ko +block/mq-deadline.ko +crypto/* +drivers/acpi/* +drivers/ata/acard-ahci.ko +drivers/ata/ahci.ko +drivers/ata/ahci_platform.ko +drivers/ata/ata_generic.ko +drivers/ata/libahci.ko +drivers/ata/libahci_platform.ko +drivers/ata/pata_acpi.ko +drivers/block/brd.ko +drivers/block/cryptoloop.ko +drivers/block/drbd/drbd.ko +drivers/block/floppy.ko +drivers/block/loop.ko +drivers/block/nbd.ko +drivers/block/rbd.ko +drivers/block/virtio_blk.ko +drivers/block/xen-blkfront.ko +drivers/catapult/catapult.ko +drivers/char/hangcheck-timer.ko +drivers/char/hw_random/powernv-rng.ko +drivers/char/hw_random/virtio-rng.ko +drivers/char/ipmi/* +drivers/char/ipmi/ipmi_msghandler.ko +drivers/char/lp.ko +drivers/char/nvram.ko +drivers/char/ppdev.ko +drivers/char/raw.ko +drivers/char/virtio_console.ko +drivers/crypto/nx/* +drivers/crypto/vmx/vmx-crypto.ko +drivers/firmware/efi/* +drivers/firmware/iscsi_ibft.ko +drivers/fpga/* +drivers/gpu/drm/ast/ast.ko +drivers/gpu/drm/drm_kms_helper.ko +drivers/gpu/drm/drm.ko +drivers/gpu/drm/hyperv/hyperv_drm.ko +drivers/gpu/drm/ttm/ttm.ko +drivers/hid/hid-generic.ko +drivers/hid/hid-hyperv.ko +drivers/hid/hid.ko +drivers/hid/usbhid/usbhid.ko +drivers/hv/* +drivers/hwmon/ibmpowernv.ko +drivers/i2c/busses/i2c-piix4.ko +drivers/infiniband/core/ib_addr.ko +drivers/infiniband/core/ib_cm.ko +drivers/infiniband/core/ib_core.ko +drivers/infiniband/core/ib_mad.ko +drivers/infiniband/core/ib_sa.ko +drivers/infiniband/core/ib_umad.ko +drivers/infiniband/core/iw_cm.ko +drivers/infiniband/core/rdma_cm.ko +drivers/infiniband/core/rdma_ucm.ko +drivers/infiniband/hw/mlx4/* +drivers/infiniband/hw/mlx5/* +drivers/infiniband/hw/vmbus-rdma/* +drivers/infiniband/ulp/ipoib/ib_ipoib.ko +drivers/infiniband/ulp/iser/ib_iser.ko +drivers/infiniband/ulp/isert/ib_isert.ko +drivers/input/evbug.ko +drivers/input/gameport/gameport.ko +drivers/input/input-leds.ko +drivers/input/joydev.ko +drivers/input/misc/xen-kbdfront.ko +drivers/input/mouse/psmouse.ko +drivers/input/serio/hyperv-keyboard.ko +drivers/input/serio/serio_raw.ko +drivers/input/serio/serport.ko +drivers/input/touchscreen/usbtouchscreen.ko +drivers/leds/leds-powernv.ko +drivers/md/* +drivers/message/fusion* +drivers/misc/cxl/* +drivers/misc/eeprom/at24.ko +drivers/misc/vmw_balloon.ko +drivers/misc/vmw_vmci/vmw_vmci.ko +drivers/mtd/cmdlinepart.ko +drivers/mtd/devices/powernv_flash.ko +drivers/mtd/ofpart.ko +drivers/net/appletalk/ipddp.ko +drivers/net/bonding/bonding.ko +drivers/net/caif/caif_virtio.ko +drivers/net/dummy.ko +drivers/net/eql.ko +drivers/net/ethernet/8390/8390.ko +drivers/net/ethernet/8390/ne2k-pci.ko +drivers/net/ethernet/amazon/ena/ena.ko +drivers/net/ethernet/amd/pcnet32.ko +drivers/net/ethernet/broadcom/bnx2x/* +drivers/net/ethernet/broadcom/tg3.ko +drivers/net/ethernet/dec/tulip/* +drivers/net/ethernet/emulex/benet/* +drivers/net/ethernet/ibm/* +drivers/net/ethernet/intel/e1000/e1000.ko +drivers/net/ethernet/intel/e1000e/e1000e.ko +drivers/net/ethernet/intel/i40e/* +drivers/net/ethernet/intel/igb/* +drivers/net/ethernet/intel/igbvf/igbvf.ko +drivers/net/ethernet/intel/ixgbe/* +drivers/net/ethernet/intel/ixgbevf/ixgbevf.ko +drivers/net/ethernet/mellanox/* +drivers/net/ethernet/realtek/8139cp.ko +drivers/net/ethernet/realtek/8139too.ko +drivers/net/fddi/* +drivers/net/geneve.ko +drivers/net/hyperv/hv_netvsc.ko +drivers/net/ifb.ko +drivers/net/ipvlan/* +drivers/net/macvlan.ko +drivers/net/macvtap.ko +drivers/net/mii.ko +drivers/net/netconsole.ko +drivers/net/ppp/* +drivers/net/ppp/bsd_comp.ko +drivers/net/slip/* +drivers/net/veth.ko +drivers/net/virtio_net.ko +drivers/net/vmxnet3/vmxnet3.ko +drivers/net/vxlan.ko +drivers/net/wireguard/wireguard.ko +drivers/net/xen-netback/* +drivers/net/xen-netfront.ko +drivers/nvme/host/nvme.ko +drivers/nvmem/nvmem_core.ko +drivers/parport/parport.ko +drivers/parport/parport_pc.ko +drivers/pci/controller/pci-hyperv.ko +drivers/platform/x86/pvpanic.ko +drivers/pps/pps_core.ko +drivers/ptp/ptp.ko +drivers/s390/* +drivers/s390/block/xpram.ko +drivers/scsi/aacraid/* +drivers/scsi/BusLogic.ko +drivers/scsi/cxlflash/* +drivers/scsi/device_handler/scsi_dh_alua.ko +drivers/scsi/device_handler/scsi_dh_emc.ko +drivers/scsi/device_handler/scsi_dh_hp_sw.ko +drivers/scsi/device_handler/scsi_dh_rdac.ko +drivers/scsi/hv_storvsc.ko +drivers/scsi/ibmvscsi/* +drivers/scsi/ipr.ko +drivers/scsi/iscsi_boot_sysfs.ko +drivers/scsi/iscsi_tcp.ko +drivers/scsi/libiscsi.ko +drivers/scsi/libiscsi_tcp.ko +drivers/scsi/libsas/* +drivers/scsi/lpfc/* +drivers/scsi/megaraid/* +drivers/scsi/mpt3sas/* +drivers/scsi/osd/libosd.ko +drivers/scsi/osd/osd.ko +drivers/scsi/qla1280.ko +drivers/scsi/qla2xxx/* +drivers/scsi/raid_class.ko +drivers/scsi/scsi_transport_fc.ko +drivers/scsi/scsi_transport_iscsi.ko +drivers/scsi/scsi_transport_sas.ko +drivers/scsi/scsi_transport_spi.ko +drivers/scsi/sd_mod.ko +drivers/scsi/sr_mod.ko +drivers/scsi/virtio_scsi.ko +drivers/scsi/vmw_pvscsi.ko +drivers/target/loopback/tcm_loop.ko +drivers/target/target_core*.ko +drivers/tty/serial/jsm/* +drivers/uio/uio_hv_generic.ko +drivers/uio/uio.ko +drivers/uio/uio_pci_generic.ko +drivers/uio/uio_pdrv_genirq.ko +drivers/usb/host/* +drivers/usb/storage/uas.ko +drivers/usb/storage/usb-storage.ko +drivers/vfio/* +drivers/vhost/* +! find drivers/video/fbdev -name "*.ko" | grep -v hyperv_fb +drivers/video/vgastate.ko +drivers/virtio/* +drivers/watchdog/softdog.ko +drivers/xen/* +! find sound/core -name oss -prune -o -name *.ko -print +fs/9p/* +fs/aufs/aufs.ko +fs/autofs/autofs4.ko +fs/binfmt_misc.ko +fs/btrfs/* +fs/cachefiles/cachefiles.ko +fs/ceph/* +fs/cifs/* +fs/configfs/* +fs/dlm/dlm.ko +fs/ecryptfs/* +fs/efivarfs/* +fs/exofs/libore.ko +fs/ext4/* +fs/fat/* +fs/fscache/* +fs/fuse/* +fs/isofs/* +fs/lockd/* +fs/nfs/* +fs/nfs_common/* +fs/nfsd/* +fs/nls/nls_cp437.ko +fs/nls/nls_iso8859-1.ko +fs/nls/nls_utf8.ko +fs/overlayfs/* +fs/squashfs/* +fs/udf/* +fs/ufs/* +fs/xfs/* +lib/* +net/6lowpan/* +net/802/* +net/8021q/* +net/9p/* +net/appletalk/* +net/atm/* +net/ax25/* +net/bpfilter/bpfilter.ko +net/bridge/* +net/can/* +net/ceph/libceph.ko +net/core/* +net/dccp/* +net/decnet/* +net/ieee802154/* +net/ipv4/* +net/ipv6/* +net/ipx/* +net/irda/* +net/key/* +net/lapb/* +net/llc/* +net/netfilter/* +net/netlink/netlink_diag.ko +net/netrom/* +net/openvswitch/* +net/packet/af_packet_diag.ko +net/phonet/* +net/rose/* +net/rxrpc/* +net/sched/* +net/sctp/* +net/sunrpc/auth_gss/auth_rpcgss.ko +net/sunrpc/auth_gss/rpcsec_gss_krb5.ko +net/sunrpc/sunrpc.ko +net/tipc/* +net/unix/unix_diag.ko +net/vmw_vsock/* +net/x25/* +net/xfrm/* +sound/drivers/pcsp/snd-pcsp.ko +sound/pci/snd-ens1370.ko +sound/soundcore.ko +ubuntu/vbox/vboxguest/vboxguest.ko +ubuntu/vbox/vboxsf/vboxsf.ko +zfs/* +ubuntu/ubuntu-host/ubuntu-host.ko diff --git a/debian.azure/control.d/flavour-control.stub b/debian.azure/control.d/flavour-control.stub new file mode 100644 index 0000000000000..4fd108e3fb8fe --- /dev/null +++ b/debian.azure/control.d/flavour-control.stub @@ -0,0 +1,152 @@ +# Items that get replaced: +# FLAVOUR +# DESC +# ARCH +# SUPPORTED +# TARGET +# BOOTLOADER +# =PROVIDES= +# +# Items marked with =FOO= are optional +# +# This file describes the template for packages that are created for each flavour +# in debian/control.d/vars.* +# +# This file gets edited in a couple of places. See the debian/control.stub rule in +# debian/rules. PGGVER, ABINUM, and SRCPKGNAME are all converted in the +# process of creating debian/control. +# +# The flavour specific strings (ARCH, DESC, etc) are converted using values from the various +# flavour files in debian/control.d/vars.* +# +# XXX: Leave the blank line before the first package!! + +Package: linux-image=SIGN-ME-PKG=-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Provides: linux-image, fuse-module, =PROVIDES=${linux:rprovides} +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-PKGVER-ABINUM-FLAVOUR +Recommends: BOOTLOADER +Breaks: flash-kernel (<< 3.0~rc.4ubuntu64) [arm64] +Conflicts: linux-image=SIGN-PEER-PKG=-PKGVER-ABINUM-FLAVOUR +Suggests: fdutils, SRCPKGNAME-doc-PKGVER | SRCPKGNAME-source-PKGVER, SRCPKGNAME-tools, linux-headers-PKGVER-ABINUM-FLAVOUR, initramfs-tools | linux-initramfs-tool +Description: Linux kernel image for version PKGVER on DESC + This package contains the=SIGN-ME-TXT= Linux kernel image for version PKGVER on + DESC. + . + Supports SUPPORTED processors. + . + TARGET + . + You likely do not want to install this package directly. Instead, install + the linux-FLAVOUR meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-modules-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-base-sgx +Built-Using: ${linux:BuiltUsing} +Description: Linux kernel extra modules for version PKGVER on DESC + Contains the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports SUPPORTED processors. + . + TARGET + . + You likely do not want to install this package directly. Instead, install + the linux-FLAVOUR meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-modules-extra-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-PKGVER-ABINUM-FLAVOUR | linux-image-unsigned-PKGVER-ABINUM-FLAVOUR, wireless-regdb +Description: Linux kernel extra modules for version PKGVER on DESC + This package contains the Linux kernel extra modules for version PKGVER on + DESC. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports SUPPORTED processors. + . + TARGET + . + You likely do not want to install this package directly. Instead, install + the linux-FLAVOUR meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends}, SRCPKGNAME-headers-PKGVER-ABINUM, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version PKGVER on DESC + This package provides kernel header files for version PKGVER on + DESC. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-PKGVER-ABINUM/debian.README.gz for details. + +Package: linux-image=SIGN-ME-PKG=-PKGVER-ABINUM-FLAVOUR-dbgsym +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version PKGVER on DESC + This package provides the=SIGN-ME-TXT= kernel debug image for version PKGVER on + DESC. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-tools-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends}, SRCPKGNAME-tools-PKGVER-ABINUM +Description: Linux kernel version specific tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PKGVER-ABINUM on + =HUMAN=. + +Package: linux-cloud-tools-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends}, SRCPKGNAME-cloud-tools-PKGVER-ABINUM +Description: Linux kernel version specific cloud tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools for cloud for version PKGVER-ABINUM on + =HUMAN=. + +Package: linux-udebs-FLAVOUR +Build-Profiles: +XC-Package-Type: udeb +Section: debian-installer +Architecture: ARCH +Depends: ${udeb:Depends} +Description: Metapackage depending on kernel udebs + This package depends on the all udebs that the kernel build generated, + for easier version and migration tracking. + diff --git a/debian.azure/control.d/vars.azure b/debian.azure/control.d/vars.azure new file mode 100644 index 0000000000000..4a1c9159dfa36 --- /dev/null +++ b/debian.azure/control.d/vars.azure @@ -0,0 +1,6 @@ +arch="amd64 arm64" +supported="Azure" +target="Geared toward Azure systems." +desc="=HUMAN= SMP" +bootloader="grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | flash-kernel [arm64] | grub-efi-arm64 [arm64]" +provides="kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [amd64]" diff --git a/debian.azure/control.stub.in b/debian.azure/control.stub.in new file mode 100644 index 0000000000000..c1d138674cdf0 --- /dev/null +++ b/debian.azure/control.stub.in @@ -0,0 +1,92 @@ +Source: SRCPKGNAME +Section: devel +Priority: optional +Maintainer: Ubuntu Kernel Team +Standards-Version: 3.9.4.0 +Build-Depends: + debhelper-compat (= 10), + cpio, + kernel-wedge , + dctrl-tools , + kmod , + libcap-dev , + makedumpfile [amd64] , + libelf-dev , + libnewt-dev , + libiberty-dev , + rsync , + libdw-dev , + libpci-dev , + pkg-config , + python3-dev , + flex , + bison , + libunwind8-dev [amd64 arm64 armhf ppc64el] , + liblzma-dev , + openssl , + libssl-dev , + libaudit-dev , + bc , + gawk , + libudev-dev , + autoconf , + automake , + libtool , + uuid-dev , + libnuma-dev [amd64 arm64 ppc64el s390x] , + dkms , + curl , + zstd [amd64] , + pahole [amd64 arm64] | dwarves (>= 1.21) [amd64 arm64] , +Build-Depends-Indep: + xmlto , + docbook-utils , + ghostscript , + fig2dev , + bzip2 , + sharutils , + asciidoc , + python3-sphinx , + python3-sphinx-rtd-theme , + python3-docutils , +Vcs-Git: git://git.launchpad.net/~canonical-kernel/ubuntu/+source/linux-azure/+git/=SERIES= +XS-Testsuite: autopkgtest +#XS-Testsuite-Depends: gcc-4.7 binutils + +Package: SRCPKGNAME-headers-PKGVER-ABINUM +Build-Profiles: +Architecture: all +Multi-Arch: foreign +Section: devel +Priority: optional +Depends: ${misc:Depends}, coreutils +Description: Header files related to Linux kernel version PKGVER + This package provides kernel header files for version PKGVER, for sites + that want the latest kernel headers. Please read + /usr/share/doc/SRCPKGNAME-headers-PKGVER-ABINUM/debian.README.gz for details + +Package: SRCPKGNAME-tools-PKGVER-ABINUM +Build-Profiles: +Architecture: amd64 arm64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common +Description: Linux kernel version specific tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PKGVER-ABINUM on + =HUMAN=. + You probably want to install linux-tools-PKGVER-ABINUM-. + +Package: SRCPKGNAME-cloud-tools-PKGVER-ABINUM +Build-Profiles: +Architecture: amd64 arm64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-cloud-tools-common +Description: Linux kernel version specific cloud tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools for cloud tools for version PKGVER-ABINUM on + =HUMAN=. + You probably want to install linux-cloud-tools-PKGVER-ABINUM-. + diff --git a/debian.azure/copyright b/debian.azure/copyright new file mode 100644 index 0000000000000..d1d04a6d66974 --- /dev/null +++ b/debian.azure/copyright @@ -0,0 +1,29 @@ +This is the Ubuntu prepackaged version of the Linux kernel. +Linux was written by Linus Torvalds +and others. + +This package was put together by the Ubuntu Kernel Team, from +sources retrieved from upstream linux git. +The sources may be found at most Linux ftp sites, including +ftp://ftp.kernel.org/pub/linux/kernel/ + +This package is currently maintained by the +Ubuntu Kernel Team + +Linux is copyrighted by Linus Torvalds and others. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 dated June, 1991. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Ubuntu Linux systems, the complete text of the GNU General +Public License v2 can be found in `/usr/share/common-licenses/GPL-2'. diff --git a/debian.azure/d-i/firmware/README.txt b/debian.azure/d-i/firmware/README.txt new file mode 100644 index 0000000000000..27a8600bc0f88 --- /dev/null +++ b/debian.azure/d-i/firmware/README.txt @@ -0,0 +1,4 @@ +# +# Place the names of udeb modules into this directory that require +# runtime firmware. +# diff --git a/debian.azure/d-i/kernel-versions b/debian.azure/d-i/kernel-versions new file mode 100644 index 0000000000000..d4fb3e8842c60 --- /dev/null +++ b/debian.azure/d-i/kernel-versions @@ -0,0 +1,2 @@ +# arch version flavour installedname suffix bdep +amd64 - azure - - - diff --git a/debian.azure/d-i/modules/none b/debian.azure/d-i/modules/none new file mode 100644 index 0000000000000..e69de29bb2d1d diff --git a/debian.azure/d-i/package-list b/debian.azure/d-i/package-list new file mode 100644 index 0000000000000..41ebec026ad01 --- /dev/null +++ b/debian.azure/d-i/package-list @@ -0,0 +1,208 @@ +Package: kernel-image +Provides: ext3-modules, ext4-modules +Provides_amd64: efi-modules, ext3-modules, ext4-modules +Provides_i386: efi-modules, ext3-modules, ext4-modules +Provides_ppc64el: ext3-modules, ext4-modules, fat-modules +Provides_s390x: ext3-modules, ext4-modules, ppp-modules +Description: kernel image and system map + +Package: dasd-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: DASD storage support + +Package: dasd-extra-modules +Depends: dasd-modules +Priority: extra +Description: DASD storage support -- extras + +Package: fat-modules +Depends: kernel-image +Priority: standard +Description: FAT filesystem support + This includes Windows FAT and VFAT support. + +Package: fb-modules +Depends: kernel-image +Priority: standard +Description: Framebuffer modules + +Package: firewire-core-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: Firewire (IEEE-1394) Support + +Package: floppy-modules +Depends: kernel-image +Priority: standard +Description: Floppy driver support + +Package: fs-core-modules +Depends: kernel-image +Priority: standard +Provides: ext2-modules, jfs-modules, reiserfs-modules, xfs-modules +Description: Base filesystem modules + This includes jfs, reiserfs and xfs. + +Package: fs-secondary-modules +Depends: kernel-image, fat-modules +Priority: standard +Provides: btrfs-modules, ntfs-modules, hfs-modules +Description: Extra filesystem modules + This includes support for Windows NTFS and MacOS HFS/HFSPlus + +Package: input-modules +Depends: kernel-image, usb-modules +Priority: standard +Description: Support for various input methods + +Package: irda-modules +Depends: kernel-image, nic-shared-modules +Priority: standard +Description: Support for Infrared protocols + +Package: md-modules +Depends: kernel-image +Priority: standard +Provides: crypto-dm-modules +Description: Multi-device support (raid, device-mapper, lvm) + +Package: nic-modules +Depends: kernel-image, nic-shared-modules, virtio-modules +Priority: standard +Description: Network interface support + +Package: nic-pcmcia-modules +Depends: kernel-image, nic-shared-modules, nic-modules +Priority: standard +Description: PCMCIA network interface support + +Package: nic-usb-modules +Depends: kernel-image, nic-shared-modules, usb-modules +Priority: standard +Description: USB network interface support + +Package: nic-shared-modules +Depends: kernel-image, crypto-modules +Priority: standard +Description: nic shared modules + This package contains modules which support nic modules + +Package: parport-modules +Depends: kernel-image +Priority: standard +Description: Parallel port support + +Package: pata-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: PATA support modules + +Package: pcmcia-modules +Depends: kernel-image +Priority: standard +Description: PCMCIA Modules + +Package: pcmcia-storage-modules +Depends: kernel-image, scsi-modules +Priority: standard +Description: PCMCIA storage support + +Package: plip-modules +Depends: kernel-image, nic-shared-modules, parport-modules +Priority: standard +Description: PLIP (parallel port) networking support + +Package: ppp-modules +Depends: kernel-image, nic-shared-modules, serial-modules +Priority: standard +Description: PPP (serial port) networking support + +Package: sata-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: SATA storage support + +Package: scsi-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: SCSI storage support + +Package: serial-modules +Depends: kernel-image +Priority: standard +Description: Serial port support + +Package: storage-core-modules +Depends: kernel-image +Priority: standard +Provides: loop-modules +Description: Core storage support + Includes core SCSI, LibATA, USB-Storage. Also includes related block + devices for CD, Disk and Tape medium (and IDE Floppy). + +Package: usb-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: Core USB support + +Package: nfs-modules +Priority: standard +Depends: kernel-image +Description: NFS filesystem drivers + Includes the NFS client driver, and supporting modules. + +Package: block-modules +Priority: standard +Provides: nbd-modules +Depends: kernel-image, storage-core-modules, parport-modules, virtio-modules +Description: Block storage devices + This package contains the block storage devices, including DAC960 and + paraide. + +Package: message-modules +Priority: standard +Depends: kernel-image, storage-core-modules, scsi-modules +Description: Fusion and i2o storage modules + This package containes the fusion and i2o storage modules. + +Package: crypto-modules +Priority: extra +Depends: kernel-image +Description: crypto modules + This package contains crypto modules. + +Package: virtio-modules +Priority: standard +Depends: kernel-image +Description: VirtIO Modules + Includes modules for VirtIO (virtual machine, generally kvm guests) + +Package: socket-modules +Depends: kernel-image +Priority: standard +Description: Unix socket support + +Package: mouse-modules +Depends: kernel-image, input-modules, usb-modules +Priority: extra +Description: Mouse support + This package contains mouse drivers for the Linux kernel. + +Package: vlan-modules +Depends: kernel-image +Priority: extra +Description: vlan modules + This package contains vlan (8021.Q) modules. + +Package: ipmi-modules +Depends: kernel-image +Priority: standard +Description: ipmi modules + +Package: multipath-modules +Depends: kernel-image +Priority: extra +Description: DM-Multipath support + This package contains modules for device-mapper multipath support. + diff --git a/debian.azure/etc/getabis b/debian.azure/etc/getabis new file mode 100644 index 0000000000000..d71022a6e88b8 --- /dev/null +++ b/debian.azure/etc/getabis @@ -0,0 +1,19 @@ +repo_list=( + "http://ppa.launchpad.net/mhcerri/azure/ubuntu/pool/main/l/linux-azure" + "http://archive.ubuntu.com/ubuntu/pool/main/l/linux-azure" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-azure" + "http://archive.ubuntu.com/ubuntu/pool/universe/l/linux-azure" + "http://ports.ubuntu.com/ubuntu-ports/pool/universe/l/linux-azure" + "http://ppa.launchpad.net/canonical-kernel-team/ppa/ubuntu/pool/main/l/linux-azure" + "http://ppa.launchpad.net/canonical-kernel-team/ppa2/ubuntu/pool/main/l/linux-azure" + "http://ppa.launchpad.net/canonical-kernel-team/ppa/ubuntu/pool/main/l/linux-signed-azure" + "http://ppa.launchpad.net/canonical-kernel-team/unstable/ubuntu/pool/main/l/linux-azure" + "http://ppa.launchpad.net/canonical-kernel-team/bootstrap/ubuntu/pool/main/l/linux-azure" +) + +package_prefixes linux-image linux-modules linux-modules-extra + +getall amd64 azure +getall arm64 azure + +# Ports arches and flavours. diff --git a/debian.azure/etc/kernelconfig b/debian.azure/etc/kernelconfig new file mode 100644 index 0000000000000..2f07ffc6a95ce --- /dev/null +++ b/debian.azure/etc/kernelconfig @@ -0,0 +1,7 @@ +if [ "$variant" = "ports" ]; then + archs="" + family='ports' +else + archs="amd64 arm64" + family='ubuntu' +fi diff --git a/debian.azure/etc/update.conf b/debian.azure/etc/update.conf new file mode 100644 index 0000000000000..400bd4bdd422d --- /dev/null +++ b/debian.azure/etc/update.conf @@ -0,0 +1,7 @@ +# WARNING: we do not create update.conf when we are not a +# derivative. Various cranky components make use of this. +# If we start unconditionally creating update.conf we need +# to fix at least cranky close and cranky rebase. +RELEASE_REPO=git://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux/+git/jammy +SOURCE_RELEASE_BRANCH=master-next +DEBIAN_MASTER=debian.master diff --git a/debian.azure/modprobe.d/common.conf b/debian.azure/modprobe.d/common.conf new file mode 100644 index 0000000000000..734054dc30e3d --- /dev/null +++ b/debian.azure/modprobe.d/common.conf @@ -0,0 +1,7 @@ +# LP:1434842 -- disable OSS drivers by default to allow pulseaudio to emulate +blacklist snd-mixer-oss +blacklist snd-pcm-oss +# LP:1708699 -- prevent RDMA drivers from being hot plugged +install vmbus:3daf2e8ca732094bab99bd1f1c86b501 true +# LP:1712915 -- [Hyper-V] linux-azure: rdma_ucm should autoload on HPC images +softdep hv_network_direct_* post: rdma_ucm diff --git a/debian.azure/reconstruct b/debian.azure/reconstruct new file mode 100644 index 0000000000000..675d9f0622064 --- /dev/null +++ b/debian.azure/reconstruct @@ -0,0 +1,165 @@ +# Recreate any symlinks created since the orig. +chmod +x 'arch/s390/tools/gcc-thunk-extern.sh' +chmod +x 'debian.azure/scripts/helpers/copy-files' +chmod +x 'debian/cloud-tools/hv_get_dhcp_info' +chmod +x 'debian/cloud-tools/hv_get_dns_info' +chmod +x 'debian/cloud-tools/hv_set_ifconfig' +chmod +x 'debian/rules' +chmod +x 'debian/scripts/abi-check' +chmod +x 'debian/scripts/config-check' +chmod +x 'debian/scripts/control-create' +chmod +x 'debian/scripts/dkms-build' +chmod +x 'debian/scripts/dkms-build--nvidia-N' +chmod +x 'debian/scripts/dkms-build-configure--zfs' +chmod +x 'debian/scripts/file-downloader' +chmod +x 'debian/scripts/link-headers' +chmod +x 'debian/scripts/misc/annotations' +chmod +x 'debian/scripts/misc/arch-has-odm-enabled.sh' +chmod +x 'debian/scripts/misc/final-checks' +chmod +x 'debian/scripts/misc/find-missing-sauce.sh' +chmod +x 'debian/scripts/misc/fips-checks' +chmod +x 'debian/scripts/misc/fw-to-ihex.sh' +chmod +x 'debian/scripts/misc/gen-auto-reconstruct' +chmod +x 'debian/scripts/misc/getabis' +chmod +x 'debian/scripts/misc/git-ubuntu-log' +chmod +x 'debian/scripts/misc/insert-changes' +chmod +x 'debian/scripts/misc/insert-mainline-changes' +chmod +x 'debian/scripts/misc/insert-ubuntu-changes' +chmod +x 'debian/scripts/misc/kernelconfig' +chmod +x 'debian/scripts/misc/migrate-annotations' +chmod +x 'debian/scripts/misc/retag' +chmod +x 'debian/scripts/misc/splitconfig.pl' +chmod +x 'debian/scripts/misc/tristate.sh' +chmod +x 'debian/scripts/misc/update-aufs.sh' +chmod +x 'debian/scripts/module-check' +chmod +x 'debian/scripts/module-inclusion' +chmod +x 'debian/scripts/module-signature-check' +chmod +x 'debian/scripts/retpoline-check' +chmod +x 'debian/scripts/retpoline-extract' +chmod +x 'debian/scripts/retpoline-extract-one' +chmod +x 'debian/scripts/sign-module' +chmod +x 'debian/templates/extra.postinst.in' +chmod +x 'debian/templates/extra.postrm.in' +chmod +x 'debian/templates/headers.postinst.in' +chmod +x 'debian/templates/image.postinst.in' +chmod +x 'debian/templates/image.postrm.in' +chmod +x 'debian/templates/image.preinst.in' +chmod +x 'debian/templates/image.prerm.in' +chmod +x 'debian/tests-build/check-aliases' +chmod +x 'debian/tests/rebuild' +chmod +x 'debian/tests/ubuntu-regression-suite' +chmod +x 'drivers/watchdog/f71808e_wdt.c' +chmod +x 'scripts/pahole-flags.sh' +chmod +x 'scripts/pahole-version.sh' +chmod +x 'tools/testing/selftests/net/fib_nexthop_nongw.sh' +chmod +x 'tools/testing/selftests/netfilter/conntrack_vrf.sh' +chmod +x 'update-dkms-versions' +chmod +x 'update-version-dkms' +# Remove any files deleted from the orig. +rm -f 'Documentation/devicetree/bindings/ata/ahci-ceva.txt' +rm -f 'Documentation/devicetree/bindings/phy/amlogic,meson-g12a-usb2-phy.yaml' +rm -f 'Documentation/devicetree/bindings/phy/amlogic,meson-g12a-usb3-pcie-phy.yaml' +rm -f 'Documentation/networking/decnet.rst' +rm -f 'arch/alpha/include/asm/bugs.h' +rm -f 'arch/arm64/boot/dts/broadcom/bcm4908/Makefile' +rm -f 'arch/arm64/boot/dts/broadcom/bcm4908/bcm4906-netgear-r8000p.dts' +rm -f 'arch/arm64/boot/dts/broadcom/bcm4908/bcm4906-tplink-archer-c2300-v1.dts' +rm -f 'arch/arm64/boot/dts/broadcom/bcm4908/bcm4906.dtsi' +rm -f 'arch/arm64/boot/dts/broadcom/bcm4908/bcm4908-asus-gt-ac5300.dts' +rm -f 'arch/arm64/boot/dts/broadcom/bcm4908/bcm4908.dtsi' +rm -f 'arch/arm64/boot/dts/qcom/apq8016-sbc.dtsi' +rm -f 'arch/arm64/boot/dts/qcom/apq8096-db820c.dtsi' +rm -f 'arch/arm64/boot/dts/qcom/msm8916-mtp.dtsi' +rm -f 'arch/arm64/boot/dts/qcom/msm8996-mtp.dtsi' +rm -f 'arch/hexagon/include/asm/timer-regs.h' +rm -f 'arch/ia64/include/asm/bugs.h' +rm -f 'arch/m68k/include/asm/bugs.h' +rm -f 'arch/parisc/include/asm/bugs.h' +rm -f 'arch/powerpc/include/asm/bugs.h' +rm -f 'arch/powerpc/include/uapi/asm/bpf_perf_event.h' +rm -f 'arch/sh/include/asm/bugs.h' +rm -f 'arch/sparc/include/asm/bugs.h' +rm -f 'arch/um/include/asm/bugs.h' +rm -f 'arch/xtensa/include/asm/bugs.h' +rm -f 'crypto/blake2s_generic.c' +rm -f 'crypto/memneq.c' +rm -f 'drivers/acpi/fan.c' +rm -f 'drivers/block/sx8.c' +rm -f 'drivers/bus/mhi/core/Makefile' +rm -f 'drivers/bus/mhi/core/boot.c' +rm -f 'drivers/bus/mhi/core/debugfs.c' +rm -f 'drivers/bus/mhi/core/init.c' +rm -f 'drivers/bus/mhi/core/internal.h' +rm -f 'drivers/bus/mhi/core/main.c' +rm -f 'drivers/bus/mhi/core/pm.c' +rm -f 'drivers/bus/mhi/pci_generic.c' +rm -f 'drivers/counter/counter.c' +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/iio/adc/stx104.c' +rm -f 'drivers/infiniband/hw/irdma/status.h' +rm -f 'drivers/input/serio/i8042-x86ia64io.h' +rm -f 'drivers/net/ethernet/microsoft/mana/gdma.h' +rm -f 'drivers/net/ethernet/microsoft/mana/hw_channel.h' +rm -f 'drivers/net/ethernet/microsoft/mana/mana.h' +rm -f 'drivers/net/ethernet/microsoft/mana/shm_channel.h' +rm -f 'drivers/net/vxlan.c' +rm -f 'drivers/of/of_net.c' +rm -f 'drivers/pinctrl/ralink/pinctrl-rt2880.c' +rm -f 'drivers/pinctrl/ralink/pinmux.h' +rm -f 'drivers/platform/x86/hp-wmi.c' +rm -f 'drivers/platform/x86/hp_accel.c' +rm -f 'drivers/platform/x86/i2c-multi-instantiate.c' +rm -f 'drivers/platform/x86/intel/int3472/intel_skl_int3472_clk_and_regulator.c' +rm -f 'drivers/platform/x86/intel/int3472/intel_skl_int3472_common.c' +rm -f 'drivers/platform/x86/intel/int3472/intel_skl_int3472_common.h' +rm -f 'drivers/platform/x86/intel/int3472/intel_skl_int3472_discrete.c' +rm -f 'drivers/platform/x86/intel/int3472/intel_skl_int3472_tps68470.c' +rm -f 'drivers/platform/x86/tc1100-wmi.c' +rm -f 'drivers/staging/most/dim2/sysfs.c' +rm -f 'drivers/usb/typec/tcpm/tcpci.h' +rm -f 'fs/io-wq.c' +rm -f 'fs/io-wq.h' +rm -f 'fs/io_uring.c' +rm -f 'include/asm-generic/bugs.h' +rm -f 'include/linux/counter_enum.h' +rm -f 'include/net/dn.h' +rm -f 'include/net/dn_dev.h' +rm -f 'include/net/dn_fib.h' +rm -f 'include/net/dn_neigh.h' +rm -f 'include/net/dn_nsp.h' +rm -f 'include/net/dn_route.h' +rm -f 'include/trace/events/random.h' +rm -f 'include/uapi/linux/dn.h' +rm -f 'include/uapi/linux/netfilter_decnet.h' +rm -f 'kernel/futex.c' +rm -f 'net/decnet/Kconfig' +rm -f 'net/decnet/Makefile' +rm -f 'net/decnet/README' +rm -f 'net/decnet/af_decnet.c' +rm -f 'net/decnet/dn_dev.c' +rm -f 'net/decnet/dn_fib.c' +rm -f 'net/decnet/dn_neigh.c' +rm -f 'net/decnet/dn_nsp_in.c' +rm -f 'net/decnet/dn_nsp_out.c' +rm -f 'net/decnet/dn_route.c' +rm -f 'net/decnet/dn_rules.c' +rm -f 'net/decnet/dn_table.c' +rm -f 'net/decnet/dn_timer.c' +rm -f 'net/decnet/netfilter/Kconfig' +rm -f 'net/decnet/netfilter/Makefile' +rm -f 'net/decnet/netfilter/dn_rtmsg.c' +rm -f 'net/decnet/sysctl_net_decnet.c' +rm -f 'net/qrtr/qrtr.c' +rm -f 'net/sched/cls_rsvp.c' +rm -f 'net/sched/cls_rsvp.h' +rm -f 'net/sched/cls_rsvp6.c' +rm -f 'net/sched/cls_tcindex.c' +rm -f 'net/xfrm/xfrm_interface.c' +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/pmu-events/arch/powerpc/power10/floating_point.json' +rm -f 'tools/perf/util/bpf_skel/bperf.h' +exit 0 diff --git a/debian.azure/rules.d/amd64.mk b/debian.azure/rules.d/amd64.mk new file mode 100644 index 0000000000000..e551c6edba402 --- /dev/null +++ b/debian.azure/rules.d/amd64.mk @@ -0,0 +1,24 @@ +human_arch = 64 bit x86 +build_arch = x86 +header_arch = $(build_arch) +defconfig = defconfig +flavours = azure +build_image = bzImage +kernel_file = arch/$(build_arch)/boot/bzImage +install_file = vmlinuz +loader = grub +vdso = vdso_install +no_dumpfile = true +uefi_signed = true +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_bpftool = true +do_tools_x86 = true +do_tools_hyperv = true +do_extras_package = true +do_tools_common = false +do_libc_dev_package=false +disable_d_i=true +do_source_package = false +do_doc_package = false diff --git a/debian.azure/rules.d/arm64.mk b/debian.azure/rules.d/arm64.mk new file mode 100644 index 0000000000000..0340d3b7e07e8 --- /dev/null +++ b/debian.azure/rules.d/arm64.mk @@ -0,0 +1,24 @@ +human_arch = ARMv8 +build_arch = arm64 +header_arch = arm64 +defconfig = defconfig +flavours = azure +build_image = Image.gz +kernel_file = arch/$(build_arch)/boot/Image.gz +install_file = vmlinuz +loader = grub +vdso = vdso_install +no_dumpfile = true +uefi_signed = true +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_bpftool = true +do_tools_x86 = false +do_tools_hyperv = true +do_extras_package = true +do_tools_common = false +do_libc_dev_package=false +disable_d_i=true +do_source_package = false +do_doc_package = false diff --git a/debian.azure/rules.d/hooks.mk b/debian.azure/rules.d/hooks.mk new file mode 100644 index 0000000000000..94db6b78d4982 --- /dev/null +++ b/debian.azure/rules.d/hooks.mk @@ -0,0 +1 @@ +do_enforce_all = true diff --git a/debian.azure/scripts/helpers/copy-files b/debian.azure/scripts/helpers/copy-files new file mode 100755 index 0000000000000..2d1684aee5ff6 --- /dev/null +++ b/debian.azure/scripts/helpers/copy-files @@ -0,0 +1,67 @@ +#!/bin/bash -eu + +if [ -f debian/debian.env ]; then + # shellcheck disable=SC1091 + . debian/debian.env +fi + +if [ ! -d "${DEBIAN}" ]; then + echo You must run this script from the top directory of this repository. + exit 1 +fi + +CONF="${DEBIAN}"/etc/update.conf +if [ -f "${CONF}" ]; then + # shellcheck disable=SC1090 + . "${CONF}" +fi + +FOREIGN_ARCHES="" +LOCAL_CONF="${DEBIAN}/etc/local.conf" +if [ -f "${LOCAL_CONF}" ]; then + # shellcheck disable=SC1090 + . "${LOCAL_CONF}" +fi + +SKIP_RULES_D=${SKIP_RULES_D:-} + +# +# Pick up any master branch changes to udeb modules or firmware. +# +rsync -avc --delete "${DEBIAN_MASTER}/d-i/" "${DEBIAN}/d-i" + +# +# Update configs from master +# +rsync -avc --delete "${DEBIAN_MASTER}/config/" "${DEBIAN}/config" + +# +# Update package and DTB settings from master +# +if [ -z "${SKIP_RULES_D}" ] ; then + rsync -avc "${DEBIAN_MASTER}/rules.d/"*.mk "${DEBIAN}/rules.d/" +fi + +# Remove the .mk files from the arch's that are not supported +for i in ${FOREIGN_ARCHES} +do + rm -f "${DEBIAN}/rules.d/${i}.mk" + git rm -f --ignore-unmatch "${DEBIAN}/rules.d/${i}.mk" || true +done + +# +# Update modprobe.d from master +# +# Some releases (trusty) don't have this directory, and rsync would fail +# without this check. +if [ -d "${DEBIAN}/modprobe.d/" ]; then + rsync -avc --delete "${DEBIAN_MASTER}/modprobe.d/" "${DEBIAN}/modprobe.d" +fi + +cp -p "${DEBIAN_MASTER}/control.d/"*.inclusion-list "${DEBIAN}/control.d" + +cp -p "${DEBIAN_MASTER}/reconstruct" "${DEBIAN}/reconstruct" + +if [ -x "${DEBIAN}/scripts/helpers/local-mangle" ]; then + "./${DEBIAN}/scripts/helpers/local-mangle" +fi diff --git a/debian.azure/tracking-bug b/debian.azure/tracking-bug new file mode 100644 index 0000000000000..dd47f55d26350 --- /dev/null +++ b/debian.azure/tracking-bug @@ -0,0 +1 @@ +2055987 s2024.02.05-1 diff --git a/debian.azure/variants b/debian.azure/variants new file mode 100644 index 0000000000000..f95b953c42e7f --- /dev/null +++ b/debian.azure/variants @@ -0,0 +1 @@ +-lts-22.04 diff --git a/debian.master/abi/abiname b/debian.master/abi/abiname index d61f00d8cad39..29d6383b52c13 100644 --- a/debian.master/abi/abiname +++ b/debian.master/abi/abiname @@ -1 +1 @@ -90 +100 diff --git a/debian.master/abi/amd64/generic b/debian.master/abi/amd64/generic index ef3c23ea9a7a2..a65ea94bb4b49 100644 --- a/debian.master/abi/amd64/generic +++ b/debian.master/abi/amd64/generic @@ -1,6 +1,6 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x387cadda crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x40034c79 crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xa52b3b7d crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x2de99f6c crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x4e59db7b crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x8724b064 crypto_cipher_encrypt_one vmlinux CXL EXPORT_SYMBOL_GPL 0x0968707b devm_cxl_add_port drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x3a1be249 cxl_map_component_regs drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x4cb86da4 is_cxl_nvdimm drivers/cxl/core/cxl_core @@ -27,7 +27,7 @@ EXPORT_SYMBOL arch/x86/crypto/curve25519-x86_64 0xc832c670 curve25519_arch 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 0x53a808ad kvm_cpu_has_pending_timer +EXPORT_SYMBOL arch/x86/kvm/kvm 0x90bcb9db 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 @@ -45,19 +45,19 @@ EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey 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 0x4e53b4b9 crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x77e33d72 crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x84b1c716 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x883e6fdf crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0x8aa00a47 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0xb8b30744 crypto_nhpoly1305_final -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 0x828dd261 sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0x13edc0ea crypto_sm3_finup -EXPORT_SYMBOL crypto/sm3_generic 0x5f982363 crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0x9e7aeaef crypto_sm3_final +EXPORT_SYMBOL crypto/nhpoly1305 0x505b8a93 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x77727661 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x9c096494 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xda105542 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xda524266 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0xeb192c28 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/sha3_generic 0x32310361 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xbf7beac9 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0xffed0dac crypto_sha3_init +EXPORT_SYMBOL crypto/sm2_generic 0xedb8f457 sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x75f4796a crypto_sm3_final +EXPORT_SYMBOL crypto/sm3_generic 0xb2307908 crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0xc1eddae8 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 0x447848eb acpi_video_get_levels @@ -67,10 +67,10 @@ EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_p EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register EXPORT_SYMBOL drivers/acpi/video 0xc994acef acpi_video_get_edid EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type -EXPORT_SYMBOL drivers/atm/suni 0x044f2104 suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0x08200a61 uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x3b549dd8 bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0xd11198a0 bcma_core_irq +EXPORT_SYMBOL drivers/atm/suni 0x2e030456 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0xf2550781 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x1685c2de bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xc1c1babc 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 @@ -89,8 +89,8 @@ EXPORT_SYMBOL drivers/block/paride/paride 0xb5555221 pi_schedule_claimed EXPORT_SYMBOL drivers/block/paride/paride 0xbba55a82 pi_release EXPORT_SYMBOL drivers/block/paride/paride 0xc45c0d0f pi_connect EXPORT_SYMBOL drivers/block/paride/paride 0xdd52a2be pi_write_block -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xf93ebf5c btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x0a495fa9 rsi_bt_ops +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x55fa4aa8 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x74112935 rsi_bt_ops EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0xccf5785e 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 @@ -997,30 +997,30 @@ EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb0b4d6d2 drm_gem_vram_plane_hel EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbbc3abe5 drm_gem_vram_offset EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc1398a6c drm_gem_vram_vmap EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xca865fba drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x015aa5c9 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x09b83c8b drm_sched_reset_karma EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0a7b2b8f drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0ea6aa41 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x143f67b9 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0c073e4f drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0f69b894 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x11bdc3ff drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1d3a5425 drm_sched_increase_karma_ext EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2921953d drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3f28cc12 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x36b4edd3 drm_sched_reset_karma EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4352abd3 drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4a8b4387 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x602d4cbb drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x75c52392 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8134ce64 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4bfd3a6a drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4f4c59bf drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x807e5f72 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x817dc20f drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8d11450e drm_sched_resubmit_jobs EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8dced514 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x94265392 drm_sched_init EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9929ee82 drm_sched_entity_flush EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa245d2f2 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xab66dacd drm_sched_start EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb2b82a5b drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb2d3cd24 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb318175b drm_sched_dependency_optimized EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc7ce2a47 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc88443b8 drm_sched_resubmit_jobs_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc91635bf drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcb2f3070 drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd915e8ee drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe74afadf drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xca1751ab drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd9e8bfad drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf8f5896e drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfccd1c4b drm_sched_stop EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0849f5b1 ttm_tt_destroy_common EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a143979 ttm_pool_free EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0aaed85a ttm_device_swapout @@ -1299,379 +1299,379 @@ EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x4e8a1f5d ms5611_remove EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x53b017d8 st_press_get_settings EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x723acf23 st_press_common_remove EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xefc0a044 st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0d9f5cde ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x11b4046f ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1ca2e2ef ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x270ea36b ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2e23de85 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x34d6a517 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4d9e3d04 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x09561344 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1347f1cf ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x20944a3a ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2477afbd ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2b0819b8 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x35aee434 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x564b5412 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x56d1f676 ib_send_cm_rep EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x83cdc41d ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9c372d90 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa08d70d2 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa328f6ad ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb034137c ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb4564f71 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbd61a2fd ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcaa5e9ba ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00181ca8 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9e19f14e ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa1f1cf6b ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb368d0b1 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd373f812 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd8fcb450 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdeea25f9 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe373f8f1 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00779d8b ib_find_gid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01a27515 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04136657 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x078a8b3a rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x089ad662 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c3ec417 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x037e5a50 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0474d15e rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04c9a02b rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x057f248c roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x088e408d rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08a63cec rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0aa2c8e2 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c22d550 rdma_rw_ctx_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e555a0f rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f002f10 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12193cb0 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1385e847 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13970ee2 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x140f99a3 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17f577cc rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1800afc2 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x183b8284 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18d64e87 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x199110f5 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20b3c241 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x210e81d5 ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22d721a9 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d04f528 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e977efc ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f618ca2 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10494350 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x108d1921 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x116daa90 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1297530e rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14fbfbb1 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x164690b1 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16c8b4cc rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17329a27 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19ea5260 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19fa3511 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b164c5e ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b6a1c49 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c692aef rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f3d7dd1 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x207cce2e rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x217cc3d9 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x220c0f61 rdma_put_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2466445a ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x270d74f3 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x270e03ad rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2734d211 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x278dcdeb ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28b416b5 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29da77a1 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a226ba2 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a3e7cea ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a4511c0 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cb9ec5f ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ddee07b rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2eb3e93d ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ff893ef ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24a5df71 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x265096e5 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27b82975 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27bcc3a5 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x292ac57e ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2981d70d ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a91a0f6 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e3c20ee rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e78c43b rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f4d788f ib_query_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x313283fb rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34574534 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36b3af41 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x389f21fc ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39334d19 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ae76a55 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ca6907a rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d8cb68b rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x321f192c rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x333da3b8 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34f622de ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39f10774 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a3f8d45 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bb8a30b ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c0567b9 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c2e8cbc rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e1d5152 ib_device_get_by_name EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x404d1069 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x413a9558 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41f3e696 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x427cba40 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x402413e0 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x422c2640 ib_get_vf_config 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 0x452461cf rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x451f7675 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x453ce1ad ib_create_qp_kernel EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47c16115 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4822f693 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a3a56d1 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cb0910a rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d9a9eaa ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47ae4f4d ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48b99ecc ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b496ea4 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d515861 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 0x4f330d24 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fff0f44 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x504582b2 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x512f9737 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5002bcf3 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5094b772 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5102b14d rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x510d2546 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x518cd4ea ib_detach_mcast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x582800a3 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57359c10 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5790bb48 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57f25f60 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57f37f84 ib_alloc_mr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fc7e12d ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5aa2e053 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5be52e0d ibdev_alert EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61a3a56a ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613c9154 ib_set_vf_link_state EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x627cdfe7 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x647f2e3e ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6885ff27 rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a373d35 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ad96ecf ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b75ea5f ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62cf4a18 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62f66c8d rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63bf49ed ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x647a65c2 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64de1f2b ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65e2891b ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6631fd6d ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x668e5eb1 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69942318 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69bc0f2d ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a2e68e7 rdma_restrack_del EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d059b7f ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d48425e ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d882c01 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e046b3b ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e3bb8cd ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e4c569a ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e1d074b ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e6618cd rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ea20990 rdma_query_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x714f1797 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72c051bf ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70fae61c ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7324d833 rdma_query_gid_table EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73c07311 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73f758b9 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74e6a37a ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x755d8cd2 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75299bd8 ib_port_unregister_client_groups EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75e8c4d5 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77d47a79 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76f10993 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77d74006 rdma_nl_put_driver_u64 EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78ee1767 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7aeef467 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cc804b8 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x813bfb4f ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x838458c2 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84f783a0 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x794f4154 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a9e1277 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bcece21 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f0ed8b7 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8150b2ca ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x822c52ab rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82d262c8 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x843565dc rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86868fe5 ib_create_ah_from_wc EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87515108 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87893a99 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8811bc4c ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88fec2f0 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b78856e ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bf9779e ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cd352b3 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cdda7be rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dbfc517 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dc7ef0a ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e6b7dc8 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8eaecb5e ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8771c021 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89930990 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c85117a rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c9eae9d ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e6eb57e ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f082e80 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f3424c7 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fc04f52 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ff20151 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x900d0748 ib_get_vf_stats EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92437d03 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9249f151 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92778220 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97700875 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97c81788 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x983ee231 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99dc22e8 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99f6bfe7 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a6f0311 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a9de6c0 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bbb600c rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cb3df51 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cd95cf6 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ee31e4f ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1534308 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1f63660 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2a00aad ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2fb2c97 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3878525 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x918c322c rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93236302 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95c483b3 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9857c112 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9949144c rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9abe763a rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ae20893 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d6ca015 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9db80454 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9eaf2347 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f71f3d1 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0384a23 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0c53c47 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1b32b78 ib_modify_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa53484f2 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa55cfa40 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5eb1c2b rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa61107a8 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4753460 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4888ce7 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4fa2257 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9b4429f ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab268077 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab9740bc ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabae2e21 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad22478c ib_get_vf_guid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0b4aaaf rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb26120eb rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb35bf5cf rdma_nl_put_driver_string EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5ff19ad ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb66a44b9 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6c8f0b7 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb739b671 rdma_resolve_ip EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8012949 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9508a7f rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb223676 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb949c12 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbef3816 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe450b76 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0c42da5 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc581a96a ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6064d21 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc61f9ee1 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7d11b94 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8829647 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9077d54 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc967636e ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9f37523 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcad8a0fc rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce20701c ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8a93ce2 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93064d1 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb99d4b5a __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbd5abfe ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc1f523f ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc50ecff ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc5f821f rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcbfb51a ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe0b394a rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbedcaf33 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0118609 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc17272fa ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2bb93d9 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc47c4567 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4ca5529 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc98dc4eb ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca3b0028 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca8c4898 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc728a5f ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdfdad09 rdma_set_cq_moderation EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcff1d8f5 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3cd9c0e ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3f09f4f ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd557bb16 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd567d745 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd63fedf7 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd64548de ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4112633 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd46ab95c ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd508b85e _ib_alloc_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6d24baa ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd882cadf ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd93d2e6e rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd97fbe2d rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6d4e971 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd927fd95 ib_query_srq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdac6d606 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddc1e7e2 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddcdbf20 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0d6329f ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe23d4ebd rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3fa6c68 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe45bf42e ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4ba5af0 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb16b428 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd9d88d4 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf022b6f rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf9e338e ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe05ec936 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe30586c2 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5658027 rdma_resolve_ip 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 0xe5cc7caf ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe61c5585 ib_device_set_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8cce893 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8c52794 ib_port_register_client_groups EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea494845 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeae7000d ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb686065 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec488f0e ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec74c053 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed21bdbc rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee6c71f5 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeeaa1495 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefae1144 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf09a51ff ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1651fc6 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf271e403 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2ddbfa1 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3caecdc ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4eb81dc rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4f320d4 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf54db9d8 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf591fe9a ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5a92cce rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeab09cfa ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb614755 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecf75ef8 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed3b4012 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee3bfd49 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee6c1bda ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef06c6c8 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf100dcf3 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf10c4e44 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf27a5709 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf323f2df ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4762d60 __rdma_block_iter_next EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6e8ebd5 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5edb90b rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6a595d0 ib_set_device_ops EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7685ec3 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8558472 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf89b0729 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf92494d4 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf99ac57f ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x01727fc0 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x105f62d7 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf73b4bfd ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7546d1d rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7d8a147 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfab3091e ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb2d71b0 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb46c2d4 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc1ff271 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc96420c ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x16cb7a3d ib_umem_dmabuf_map_pages EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1d14b18e uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1e60e67f ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3515845b flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3b2d6aee ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3d1d8728 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x427afa1f uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4e4c0598 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x57a9e194 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5ae7ac5d uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5f8977f7 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6217016b uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x28b0a248 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x34eeafec ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x40bfc31f flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4294cf1b ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x458cdb3c ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x50b1432d uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5ab22d7d uverbs_copy_to_struct_or_zero EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x641b94f4 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6642be6c uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7d0c2947 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x884b4aa0 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8959cb78 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x90aac0ed ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9dd57ca8 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xad44ff2e ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb3f5418e uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb65f918a ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb75a9281 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6347688d ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6455c232 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6638b875 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x75b78de7 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7c916f47 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7d2b6c2c ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x842ec93f ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8f531cea ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa455c314 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xadabbee7 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xae78a7db uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb44b0d7f uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb4b81b6b _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbd145835 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbd153c50 ib_umem_activate_invalidation_notifier EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbe295428 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xceca985d _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdd47673c _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe3a145a3 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe3b85575 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeed20547 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf5f90cae ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf740e247 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf91b17dc uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfd4e027b uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfded0d97 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfdee1041 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x37d2fa98 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x774e5e52 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x84c9b76d iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x87869290 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa1c305e6 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xab713484 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xad01e621 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc9a99268 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc4a47f61 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc8c7c9ff _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcd399048 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd0156862 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd041d7b1 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xde893bf3 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdfb217d9 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe3ba120e ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe4356534 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe5c5ee41 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe7c9e760 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xed5fcbea ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfc4d3d3c uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x48412fad iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4ba2ccc2 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5dc4b62c iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6d4f757a iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xba7c0344 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd476d8f6 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe290f5da iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe8b9197c iw_destroy_cm_id EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x16626114 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x20c069e6 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x22845471 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2757a087 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2f4d7722 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2f5ecc3d rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x456e4739 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4bbfb200 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e91743d rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6ea5d56b rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6feb04fa rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x74aba03f rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7c74ba55 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7e5290b6 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x85209135 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8da4b312 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x03b2b40c rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x05a42910 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x08c7db43 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x13ecb515 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1792c300 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x18b55827 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x252d81a0 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x28e464da rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x395f2765 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3cfd347d rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x495567ce rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x572e49a2 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5f670131 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6344b8c0 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x63e7f2c0 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x64150181 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x69b7d26f rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x71316e80 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7b40bedd rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7e76addb rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8813607b rdma_lock_handler EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x91ea1607 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9237f2ba rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x92483d0d rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x98a93117 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x98e8de59 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa4a6ab78 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb639a209 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb65cd35c rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbdbdc406 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc0cae377 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc34d49cd rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd84b12df rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xda65d769 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xddf2d1dd rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe4a57d0e rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe89a9074 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfda6a534 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xffad13ab rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x02b9e94a rvt_send_complete -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0494b939 rvt_get_credit -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0d1fcebf rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x91ed5c5c rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa1b4d5e6 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa1cf42d4 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xae48811d rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb0586101 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xba113a99 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbc7dfa29 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbcff272c rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd440f276 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd492f047 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe73ea3f4 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xea51fb2d __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfee4a9c5 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x03489bc1 rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x076c4b21 rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0cebf86f rvt_qp_iter_next EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1b234ac2 rvt_restart_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1b84611b rvt_fast_reg_mr -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1cba28e8 rvt_compute_aeth -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x269d4e6d rvt_copy_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2c7b8c0b rvt_alloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3226e57f rvt_stop_rc_timers -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3d1db7fe rvt_del_timers_sync -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x52e05e55 rvt_add_rnr_timer -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x58249e18 rvt_cq_enter -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5cfbd5e0 rvt_check_ah -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6d265b0b rvt_init_port -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7048317a rvt_register_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x94447df2 rvt_add_retry_timer_ext -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x98a93894 rvt_rkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9dfe0c75 rvt_qp_iter_init -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xaa7839ce rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1b722c93 rvt_get_rwqe +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x20c20c51 rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x34bf4380 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3c21ca84 rvt_restart_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x45a15408 rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4c64d4fc rvt_get_credit +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6009b451 rvt_add_retry_timer_ext +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6031f1ad rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6bf9f91c rvt_del_timers_sync +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6d2223c3 rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6e004dbe rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7f8ee7d6 rvt_add_rnr_timer +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x91eec49c rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x985da583 rvt_rc_error +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9f2f5ae7 rvt_stop_rc_timers +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa076dad7 rvt_rkey_ok EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb7ee98b2 rvt_rc_rnr_retry -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xba0a849f rvt_error_qp -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc1dfded9 rvt_lkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc88ee753 rvt_invalidate_rkey -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xca21be2a rvt_ruc_loopback -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xce7c3bf4 rvt_mcast_find -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd30662e1 rvt_comm_est -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd5fbc067 rvt_get_rwqe -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xdbc0e89e rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb922fcc9 rvt_send_complete +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc156a64b rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc3dde7ef rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc406fdaf rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xcb5b36d0 rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd4726249 rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe48da032 rvt_compute_aeth EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xeb1508cb rvt_qp_iter_next -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xedfb2f8e rvt_rc_error -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x05d40507 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0919173c rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x27151862 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2e4e6b9d rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4ca1679a rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6ac9d1e7 rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x74ccec18 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xed94a9dd rvt_ruc_loopback +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf763475b rvt_qp_iter_init +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xfd0d71d5 rvt_copy_sge +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x65d037cc rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa5f974f8 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa75812f3 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd1d2acad rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd22efc5e rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xdbd973d8 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xef28d3b1 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x1d713dfc 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 0x423b8858 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 0x611a5326 rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x6a14c79e rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x771cfea2 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 0x9da87367 rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x0c5371f1 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x343aaf35 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x5913a65b rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8d150231 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xdeb15972 rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe0ca46f8 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xa0c856b5 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xffe4786c rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x04b406c4 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x53e87c95 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8abce414 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9ce003f0 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb4174021 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xd11f2acc rtrs_srv_get_path_name EXPORT_SYMBOL drivers/input/gameport/gameport 0x05ae71bc gameport_stop_polling EXPORT_SYMBOL drivers/input/gameport/gameport 0x1ce05927 gameport_unregister_driver EXPORT_SYMBOL drivers/input/gameport/gameport 0x2af747ce gameport_open @@ -1715,48 +1715,48 @@ 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 0xa3fd8f39 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb172b592 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd75379c7 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xdfa0f22e mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x20e72b19 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xd1424d77 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x2145023a mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9e2f8f4d mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa0d28cfb mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe51de85a mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x340f4af2 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xcd15d497 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x00168b78 mISDNDevName4ch EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1a29fc0a create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x10c1ddc9 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x12fb3ed1 get_next_dframe 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 0x2b7e8c41 recv_Bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36535e10 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x479bb8e7 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x49f3ba74 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4ec986bb recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3a5010b0 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4a3b2284 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4cb973fa recv_Bchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x57fae664 mISDN_register_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5bd20429 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5ec242c9 recv_Dchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6157d052 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6340a619 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x687d17ba mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x74138ce2 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x805fd86e dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8ee83068 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9b84f5fc mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x633d0cd2 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6effa374 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x78511341 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7f7c9f4e mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x815cd0a4 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x829b5d0b mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8abad9f9 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8da71f17 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x91177ad1 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x92b4dfa4 recv_Dchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb5800ab7 mISDN_initbchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc58284d8 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcaf7858a mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcd1d1c87 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd13a4885 mISDN_freebchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdaf44870 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe1b93ae3 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe293e45e mISDN_freebchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xec9d0c24 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xef2c178b mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf09974d5 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeb979a4d queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb29c909 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfef9dc36 get_next_bframe EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law @@ -1777,19 +1777,19 @@ EXPORT_SYMBOL drivers/md/dm-snapshot 0xeabbd364 dm_exception_store_destroy EXPORT_SYMBOL drivers/md/dm-snapshot 0xfb02393a dm_snap_cow EXPORT_SYMBOL drivers/md/raid456 0x7019923b raid5_set_cache_size EXPORT_SYMBOL drivers/md/raid456 0xd18c5f21 r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0ab66b61 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0f72804d flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x125dbced flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x34595508 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5319ad50 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x57f065f5 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5e5ba173 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5f84c6f5 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7b8ae170 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa93c6dd7 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xddf468e6 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe75e953b flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xecd93437 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0f7f6f94 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x36d6aa54 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6b5b4abc flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x78f368c5 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x80714816 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa5526372 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xad473a8e flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb8d090a8 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc64f7136 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe2afd02e flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xee62fa71 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf4da967a flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf8bc0374 flexcop_device_kmalloc EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query EXPORT_SYMBOL drivers/media/common/cx2341x 0x1d059c7b cx2341x_handler_set_busy EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu @@ -1803,7 +1803,7 @@ 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 0x2e149710 cypress_load_firmware EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xd1a0668d ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xa6bae73f ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog EXPORT_SYMBOL drivers/media/common/tveeprom 0x3d8c255d tveeprom_read EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create @@ -1814,18 +1814,17 @@ EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x676709e3 vb2_ve 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 0x0f10892e vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x1e4bb3e8 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x4917d840 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x9800833e vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x99c210fb vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xcbdfc524 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x553096ed vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa948a910 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xb52641e6 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xed36e5a4 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf4991e65 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf82ed368 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 0xb10fb9da vb2_querybuf EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0096fdf1 dvb_generic_open EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08a1ca77 dvb_net_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0a750212 dvb_ca_en50221_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x10f07395 dvb_frontend_resume EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x14e73097 dvb_generic_release @@ -1836,6 +1835,7 @@ EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32764561 dvb_register_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x558b2cd3 dvb_net_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 @@ -1861,13 +1861,11 @@ EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe02411cf dvb_unregister_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe8359391 dvb_unregister_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf1972943 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb418176 dvb_frontend_suspend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfbcfbcc8 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x3ba82527 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x8f0954bb atbm8830_attach EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1386d195 au8522_sleep EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x17042060 au8522_led_ctrl EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x364df395 au8522_release_state @@ -1877,29 +1875,13 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb51336cc au8522_i2c_g EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb5457867 au8522_writereg EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbf1d10be au8522_init EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xea820d99 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xa8de9310 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x00a92b73 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x7ba45e1b cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x94d507e6 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xdfaac9b4 cx24110_attach EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xa0a9b2d9 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xb5847850 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x49dfa9ab cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x896abe0f cx24120_attach EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x0fccc106 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x60ee59c0 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xc231fba4 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x6ec6997f cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xc3ef91b7 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x13ddb402 cxd2880_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x49b3c473 dib0070_set_rf_output EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x972bd375 dib0070_ctrl_agc_filter EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa6814969 dib0070_get_rf_output EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa83e3b8f dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf0562cde dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1094fe41 dib0090_fw_register EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x147a5270 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x178a355e dib0090_register EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1d375f88 dib0090_get_wbd_offset EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1dab9a2e dib0090_set_vga EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3c277850 dib0090_get_tune_state @@ -1912,19 +1894,14 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb8f79202 dib0090_get_curren EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xce468804 dib0090_update_tuning_table_7090 EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdfcaddb7 dib0090_set_tune_state EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe85b168c dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x346fc742 dib3000mb_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2831eb6d dib3000mc_i2c_enumeration EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7af4928b dib3000mc_pid_parse EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x8b65c6cd dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x8e023e6d dib3000mc_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xad9a4753 dib3000mc_set_config EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe7217ace dib3000mc_get_tuner_i2c_master EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x1692ed83 dib7000m_pid_filter EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5868b297 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6481ded1 dib7000m_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc5253f0a dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x2bf79e8f dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xdd01bf9d dib8000_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1ce10318 dib9000_fw_pid_filter_ctrl EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x24b50104 dib9000_get_i2c_master EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x472a6c7a dib9000_fw_pid_filter @@ -1935,7 +1912,6 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x76dd2683 dib9000_get_compon EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7891307b dib9000_firmware_post_pll_init EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x85c0e4e3 dib9000_get_slave_frontend EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8b4701b6 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb25d3cde dib9000_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb9f0f789 dib9000_set_i2c_adapter EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf80cea38 dib9000_i2c_enumeration EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x50913f47 dibx000_exit_i2c_master @@ -1943,93 +1919,22 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x760605b7 dibx000_res EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xaccafe2f dibx000_get_i2c_adapter EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc0f57100 dibx000_init_i2c_master EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc6ffa685 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x31417982 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x5565e4fd drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xebf478d9 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x6d17f799 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xda9ea65d dvb_pll_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x7b6224e2 dvb_dummy_fe_qpsk_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x86d7a172 dvb_dummy_fe_qam_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xd0ac008a dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x38d43cd3 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x805817a4 helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xa89ac303 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xbe2bd26f horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xf4feba46 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x93450da7 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x3c1b68cc isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x30e097bb itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x207b65b2 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xe930485a l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x61991ea4 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x7f149ffa lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xb503c57c lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xafb4662f lgdt330x_attach EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x310cd561 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x0a0afce5 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x6c37f3d7 lnbh25_attach EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x5f4c46a0 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x686950b9 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x839b34de lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x9ef2c3ca lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x07a7ec77 m88ds3103_attach EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xacd25b63 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x27f58f83 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xa3dbd3d7 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x424eaaed mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x88588919 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x78bda01a mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x60e70d6e nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x18741f5f nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x966bc5b8 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x0eacc3f1 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x574a2f4a s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x4b93659a s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x93168e90 s5h1420_attach EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xeffc54e8 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xc5912905 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x4f4b2c5b s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x95985a36 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x28bc4498 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xea55d1a5 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x9165b1be stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x37e005ab stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xbad90434 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xdd54fe60 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xd6c3887b stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x3ad32f51 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x49a77c34 stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xee6f9a13 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x83e36076 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x731f5d34 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x4604b138 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x16272442 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x51424e61 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x20dfba00 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xadfff8f2 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x71785ff0 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x851b89aa tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xcff21433 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x01951e76 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x64d586ca tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xca0d0cdb tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x74c4fc99 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x192ee2f5 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x375f44db tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xae13d07c ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x0a95548f ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x30b9fc32 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x4fa74940 zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xe461b8aa zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x630ff04e zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xdfbb7195 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4a643aa5 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4a727d03 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5d18b67e flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x86a3f9b1 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x918577cf flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdc617026 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf87e719f flexcop_dma_free +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x99ecabe2 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xe84a8f8d zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x036d7dcb flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x060d8ed0 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x237bb850 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x447c77bb flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5c1d5b85 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5ea5f5fc flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd99e0cf1 flexcop_dma_control_size_irq EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x1963ec75 bt878_device_control EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x1b5cb5aa bt878 EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x96ede2c0 bt878_stop @@ -2048,16 +1953,14 @@ EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5c6d2e33 write_dst EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x919fda1f read_dst EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x937ca12f dst_error_bailout EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcd72cbb3 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xefa7493a dst_attach EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf5ea29c5 dst_wait_dst_ready EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfe990bf2 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x4fd1025d dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x07a1e5b4 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2c201442 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x13d029a2 cx18_claim_stream EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2db70562 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf18e7d88 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf1a72747 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4123e728 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8bfafd67 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa3bd3f92 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc9443ff9 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 @@ -2071,44 +1974,43 @@ EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x831e6ec6 cx25821_sram_channel EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb17e51f3 cx25821_set_gpiopin_direction EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd4263b89 cx25821_dev_unregister EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x35abcfc2 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xb2f720d8 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x2f095a86 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb15c3521 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd5485b52 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe256bf56 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2ca9786e cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3400227e cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4c86a4e7 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x63ea03e4 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x690505bd cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x793910ee cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9b6184a0 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x065d295d cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0943b2db cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x11a94dd5 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2482b791 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x47c856b0 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x49252ef6 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4dc30393 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x52055f52 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x57253c65 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5a46f090 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x4d31923a vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xfea017a0 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x25d80a6b cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x44501782 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x580bf310 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x683e6971 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x05cb401e cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1b91a8ce cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1e3d4d50 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6b16d2e0 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8071e21b cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9a214f29 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xab25067f cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1548dba3 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1577dbcf cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2214aedf cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x437eebb5 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4848542e cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x572723e0 cx88_shutdown 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 0x6f0c2cc8 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x830041fa cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x88799102 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x74c6b758 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x778933c2 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x825e6790 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8c4f5a3a cx88_vdev_init 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 0x9708fec2 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa42ebd9f cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb592cbd9 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcf721586 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcffaf860 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf127f775 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf16b117a cx88_reset -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x840651d2 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9561b01c cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa6a0b593 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb322c0e2 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb500d67f cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xce649c01 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd2e703cb cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd5350735 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdeaf4ee7 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdf8918aa cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe55ad396 cx88_dsp_detect_stereo_sap EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x020dd285 ipu_configure_spc EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x0fe08bb1 ipu_fw_authenticate EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x1636417f request_cpd_fw @@ -2138,20 +2040,20 @@ EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xedce4395 ivtv_udma_unmap EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf0482ed5 ivtv_firmware_check EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf9391c0a ivtv_udma_alloc EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x07f1e17a saa7134_pgtable_free EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3b9a0bb4 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4af89ca5 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x54ab556e saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5ab1fa55 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x32c05651 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x425603a8 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6ace75f7 saa7134_pgtable_alloc EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x756cf981 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x74387c9b saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8a6180d7 saa7134_pgtable_build EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaccde8da saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcbf718a3 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd976041b saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdaadf733 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe9048145 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x92d26909 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x954f4693 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9f60249a saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa0311107 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaa127372 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xde6f8a8c saa7134_dmasound_exit EXPORT_SYMBOL drivers/media/radio/tea575x 0x0eaac3af snd_tea575x_g_tuner EXPORT_SYMBOL drivers/media/radio/tea575x 0x2595244b snd_tea575x_hw_init EXPORT_SYMBOL drivers/media/radio/tea575x 0x541029f6 snd_tea575x_init @@ -2166,57 +2068,44 @@ 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 0xf446074f ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xca905b36 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x3b8e84cb fc0012_attach EXPORT_SYMBOL drivers/media/tuners/fc0013 0x0d64c08a fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa38ad162 fc0013_attach EXPORT_SYMBOL drivers/media/tuners/fc0013 0xcf4909dc fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0xaca5b1f7 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xca21a3b9 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x95762792 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x1ab9463b mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x1183ddd4 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x20cfd30d mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x3c2918a4 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xab0d9cf9 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 0x1d8c032d xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x0848381f xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x0b816e84 xc5000_attach EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x3380d4dd cx231xx_register_extension EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x73c22930 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x17eb2c32 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x330efc65 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x652f7e0d dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8b8dcced dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9685f529 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa93636d4 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb2cba5b2 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xbfc26bf5 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xefee9355 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1bb2f99e dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x09e1068c dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1d71f0e0 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x56393300 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7dfdf610 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa9da030f dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd55a8e87 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe4146214 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xec47e6ea dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfdf13c8a dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6b03fbc9 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x89540509 dvb_usb_nec_rc_key_to_event EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa1874ad7 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xaab233f5 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xbbcdd5a9 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc49ad08a dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe7610627 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xae6b964f usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc5e6aec3 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe8e5fc6d dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfead3cc6 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 0x6e5923f3 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x73fdcb7c 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 0x0d4a2729 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3301bd27 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x450d6522 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4b16faa6 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x51d4203c dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x84a317c6 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x89d64d9e dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8f1be829 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x392fdace dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x399b9afa dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4deafd81 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x53249b9b 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 0xf285c3ec dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x5de61501 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x97c137ab dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa23652b2 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xaf9946f8 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbdde2e42 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdad7ff4f dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdba15ca4 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x5616d444 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x88d3420a dibusb_dib3000mc_frontend_attach EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x814ee9fe em28xx_unregister_extension EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xa1532306 em28xx_register_extension EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x01fe5bcd go7007_register_encoder @@ -2375,39 +2264,39 @@ EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf023e457 mpt_suspend EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf9162609 mpt_resume EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfe21ef89 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0244b787 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x07914905 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0de3bd85 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x16a83fb5 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x192e6bf9 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1936dbd5 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1bf272e1 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2479a3a4 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x00388e5e mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0341f400 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0668fc20 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x088472ee mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x09c4b97a mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0eaa4e24 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0f692b9f mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1afb1bdb mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2723e7ae mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2f8fd0f8 mptscsih_ioc_reset EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3bc12628 mptscsih_resume EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x473a2cc1 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4861359b mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5ae54fa9 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x67fab1f1 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6b558314 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x76eb0bf8 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x62ed9cf6 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6ca990f5 mptscsih_bus_reset EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7afc3686 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x93de54d8 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x94cc04cb mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xace125e5 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb33347bc mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8bf839f8 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8c524438 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x948ca40e mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x98ccc0f9 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb1b6788f mptscsih_get_scsi_lookup EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb3c4f183 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xba532639 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xba8c0550 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd793b930 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdb2a6ddf mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbde9f633 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcc3f789f mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xccfa89cd mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd21de09a mptscsih_IssueTaskMgmt EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf57a81f3 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfe45da60 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/mfd/axp20x 0x48667611 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0xe0424b78 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0xed1d9d43 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/dln2 0x0e5dedf2 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x6d9afeb4 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xc6db6bf7 dln2_register_event_cb +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfc1c95ae mptscsih_io_done +EXPORT_SYMBOL drivers/mfd/axp20x 0x416700e1 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xe41cebb3 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xe9433d88 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x28206284 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x640b3974 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xe565d262 dln2_register_event_cb EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xd32786bf pasic3_write_register EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xf6a01b1b pasic3_read_register EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x232f3260 mc13xxx_get_flags @@ -2440,18 +2329,18 @@ EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x4fa457ee ad_dpot_probe EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init EXPORT_SYMBOL drivers/misc/c2port/core 0x5b47b7d7 c2port_device_unregister EXPORT_SYMBOL drivers/misc/c2port/core 0x5f795019 c2port_device_register -EXPORT_SYMBOL drivers/misc/mei/mei 0x033cf9bd __traceiter_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x0ba64846 __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x0936c3e1 __traceiter_mei_reg_write 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 0x19f52c07 __traceiter_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x201683d5 __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x2cc4babf __tracepoint_mei_pci_cfg_read EXPORT_SYMBOL drivers/misc/mei/mei 0x3b0a488d __SCT__tp_func_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x3b201cce __SCK__tp_func_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x520dd625 __traceiter_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0x56b2daac __tracepoint_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xa0496756 __tracepoint_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0xb9f7be4c __SCK__tp_func_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0xd94923d0 __SCK__tp_func_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xfb944ac2 __traceiter_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x3f549117 __SCK__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x69aecd29 __traceiter_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xa065cb5e __SCK__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xbc11f4ed __SCK__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xc9641563 __tracepoint_mei_reg_write EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work EXPORT_SYMBOL drivers/misc/tifm_core 0x41f9cec5 tifm_register_driver EXPORT_SYMBOL drivers/misc/tifm_core 0x4cd8551c tifm_map_sg @@ -2465,11 +2354,11 @@ EXPORT_SYMBOL drivers/misc/tifm_core 0xcddc7f3b tifm_free_device EXPORT_SYMBOL drivers/misc/tifm_core 0xcf7f35c3 tifm_add_adapter EXPORT_SYMBOL drivers/misc/tifm_core 0xec30d23e tifm_eject EXPORT_SYMBOL drivers/misc/tifm_core 0xf4f9c504 tifm_has_ms_pif -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x09bbe446 cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x387587c3 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x5ad8094b cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x73b47700 cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xe53c9687 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x0949a93b cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x1095cdbf cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x12298068 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x12723750 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xec27e56d cqhci_resume EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x2633e9da mmc_spi_put_pdata EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x8a3683e1 mmc_spi_get_pdata EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2bda9512 cfi_build_cmd_addr @@ -2532,104 +2421,104 @@ EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc3a2467f rawnand_sw_bch_correct EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc7f2bcf4 rawnand_dt_parse_gpio_cs EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd0e996df rawnand_sw_hamming_cleanup EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe5831337 rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x045dfdcd arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x153cbffc arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x190e3d1a arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5beedaca arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5f6bdc1f arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x08c363b6 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x19277da4 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1ce5593f arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2e61a9d2 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x56236ac4 arcnet_unregister_proto EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7e1aa66d free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7f486e25 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8d92bb27 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb995bdd5 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdd6bd1f0 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe519dd82 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa00f3c34 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe22c8d68 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe300b50d arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xec3dd6c3 arcnet_open EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6c9e8202 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x9db7a1b2 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb2abc10a com20020_check -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x020600f0 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x053b00a0 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0b9a48bf b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x124695d3 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x12bffa3f b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x20e29af5 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x27252860 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x383a9d63 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3af871de b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3b26533c b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3c69f176 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x52617e0b b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x620e1b3b b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x63ccb370 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x74c300d4 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x771119fc b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7b2d7246 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7c0c904c b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fdd1ef7 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x807364f7 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9f293206 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa4002519 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa5f3ba5e b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa9c40497 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb40f7e86 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb69415d0 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb7398fe6 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbe38175d b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc1a3792e b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc328c831 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xca86c8e9 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xce83b394 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd274d153 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe6ea1b27 b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe986dc81 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xec8b53a2 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xed591296 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeda3e32f b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeda8f3eb b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf3d4272f b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf4542d9b b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x025da7a5 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x2e28a8c4 b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x53251a0c b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x7747962c b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x8de1b2e4 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa749f398 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x22cd31e4 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x325eff2a lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x576cd6f0 lan9303_probe +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf7353686 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfab6256f alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x38058c34 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc14e800e com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xcbe23201 com20020_found +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x033df977 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1424b6a9 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x17062884 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1775ae07 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x18e2375a b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x30e9100d b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x45b33a17 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x530ae076 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x538b37b6 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x56538c8f b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x590c582b b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x591419dd b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a492358 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6ddd18e0 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x768f60e3 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7e7e7fce b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x806ae86b b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8cc9c358 b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x91a0cede b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9da5a990 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9e0c50e3 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xab1f3c25 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xac7109d2 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaf04ea89 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb68ddecf b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbd3b0dd2 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc25a1e7c b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc6be7a7f b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcf1a345c b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd0303eae b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd043b64d b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd4d1433c b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd7551b93 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd7e4bd40 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdff5309e b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe76ce6ac b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe9167d8d b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xedb15c14 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf4e0232f b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf98980ba b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfbb63092 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x11f23de4 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x28362777 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x428d92b6 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5fac2986 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa5db1a79 b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd7e28b59 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x27f7c163 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x8edd29b4 lan9303_remove EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x5d37b898 ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x294220ad ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x1b31047c ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x893f6b5f ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x8fa817bc ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x3f27015b vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x54741ec8 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x56351284 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xe705e9c4 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x903f4ee7 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x4249776d ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x6dac30d6 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xa43525c2 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xebb245b8 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x09579e50 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x6db1f83c vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x8587d201 vsc73xx_probe EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x341dec16 xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x6ab05901 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x6faeb17c xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x6fc35bef 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 0xfa29f054 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xda55248a xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xdb052459 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xfffb7b17 xrs700x_switch_register EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x17f3e4d9 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x48fdf2b9 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x49a1a3e9 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x49d496b3 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x55c9b528 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa6e8d80b NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa86b8cfb __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd2a15f34 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd396747f ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe4d5776e ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xbe13c854 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x33fc8a17 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x45470d6c ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x54c6681f NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x664c11e2 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa0024b8f ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xab600eb0 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb46a516d ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xba8d40db ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd34d7f4e __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf4074915 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xb458a68f bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x59e8e711 cnic_register_driver EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x96951024 cnic_register_driver EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x28d85a07 cavium_ptp_put EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x9b5f577d cavium_ptp_get EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable @@ -2649,482 +2538,482 @@ EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_ge 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 0x04c4f61f cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2679bb81 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3c46bdf5 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3ed4e55f cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x40ee05d9 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x48f33696 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4bc559c0 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x53acdb15 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5aa058d4 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5fb5a2e1 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x68625176 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6cb3f934 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x854ec7f8 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xab719d13 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd1348760 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd56bad03 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0592d650 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x066e9e3b cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x06736edf cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0a5c004d cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0ed7177a cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x23798e32 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x317e7103 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3efe18f9 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x81595b48 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa93912c4 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb40305ca cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb846ef51 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc5cf9ac6 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc82195b0 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd508976c t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe4c83a0f cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe7009536 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf100f5c2 cxgb3_insert_tid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x12533601 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x19fc46e3 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1efd0fdb cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2027554d cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2263d0a4 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2748e8b4 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x30a60c7a cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32f5791c cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33736024 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c060430 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4104a974 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x42b52b08 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1542e69a cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x282ffa19 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2abc354f cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x30d4e004 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3341466b cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x469c3d32 cxgb4_create_server_filter EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5459b532 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x589cefae cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x647eef7e cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6636f8d2 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6700b6a9 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c71a131 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76892e25 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76ad32e2 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7866c788 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7c7aff9a cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e935ded cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8605cb6f cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8831760f cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9490a7f8 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9a8c3a8f cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d4ee8d0 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x524d8e25 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x52a4c36c cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x58bac701 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x59a521ef cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5dd797b8 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x62ef4628 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x68c79176 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d8a23fe cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6e934c2a cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74d14ac9 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e010ba4 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x857f7f02 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8bc0c8f4 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x900f08ac cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x917eedd1 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x97486169 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x983a9808 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x98401e8a cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9b50abc1 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9e38d7d1 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa38d3b36 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa53b1bb2 cxgb4_l2t_get EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb329fd17 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb736c57a cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbdc0da61 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc0e7c5b2 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc4276ee0 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc51fc8f9 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc523c233 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcdc7b429 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcf64d219 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb1add1eb cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb4f4bda0 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd1f6312 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbe0613f5 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc11e486e cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc4308380 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc4ca4ff1 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc58a4e8b cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc6836f59 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcdf61a89 cxgb4_create_server6 EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdc68a0d7 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe84702ec cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xec809f55 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf4054d28 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf48dad39 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf99b2d7c cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xffacef93 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe00291f0 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe6b29607 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8fd6690 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xec8a4ce7 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeff0070a cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf3e257c1 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc8283c4 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfee35155 cxgb4_sync_txq_pidx EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x237a9af2 cxgbi_ppm_release EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x39769b36 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x56b6d0c9 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9592816b cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9c971218 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xac389366 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc7310212 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4d22855b enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x894b721a vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbd2b468b vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc9e78d0c vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xdb49c81a vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe77c7b7b vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x504fcee5 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5b000112 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6217c209 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8299269a cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbedb2c55 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd3dc8092 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf24cce22 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0f2ae19c vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x457acd56 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x57bbe76f vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x776e578d vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8b92f0a7 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xcd9a45ed vnic_dev_get_res_count EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xa16b11ac be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xeac0587f be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x268b6070 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xfa2d8003 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x6141bf02 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xff0b5781 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00b94ebe mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x015e9445 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01d96a75 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17c5bb8d mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1dd6afc1 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x247f682e mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x249591f9 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2908c91c mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e34f604 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32d6f337 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33393f52 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36f85784 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e6ade93 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4690ac87 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x516160a4 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d83cc16 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6283ff1f mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67e133c7 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7142e597 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x739e99cf mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7996397c mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b0faec1 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d0ec964 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7daf421f mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xa956337f be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xb3ffd974 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x51fc7394 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xd338a4d3 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x0b7aa0f5 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xe0d81cd0 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x052dbaa1 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05ee868f mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x068d395d mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ac29eb5 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1183a743 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11f07e26 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1373ecab mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19a2ce97 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21710f0f set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2306d2bc mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bed4b42 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3759623f mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x396e2fcc mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a37b099 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bb2e97d mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b8e954a mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c14f390 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6148e819 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6642ff2c get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6af18e0d mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74503703 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7531b9a6 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78ae0388 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a0ab03c 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 0x944d3b02 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95448915 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95743b2a mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cad85a2 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dcf5362 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa78b9423 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7b976fc mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7130cc8 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7ef423c mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb8a3fea mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc159185 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc441de34 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc74c6cff mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdbd3a48 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf81ee14 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2fc7be2 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf00a7550 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6ad4db0 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb772ec5 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff52688b mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01bcb5d9 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02864853 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0752227e mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08370253 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x086e3dd0 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a33a180 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b6070ec mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e39619b mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fb723e0 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x112c26ef mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x168c7e49 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18c2baba mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19c3f342 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a5ce1f9 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c190ed3 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83f994c8 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84f48f88 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x897b1391 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cf207c8 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96a96624 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ae8898b mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9af6fb5d set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0d23c6e mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa0c5b97 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf77fe1b mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc51ad025 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc54ac85e mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc67126ee mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc226c89 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfbc56fd mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2ddcb4a mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd38b6a95 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe893f8f2 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb85ffd3 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf905ab8c mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x042cfda4 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0485ffdc mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05bafb48 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0768c4d8 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ceb1873 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d0a8f79 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e4d7866 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12ca73dd mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18c1797e mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18f8446a mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bca4708 mlx5_free_bfreg 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 0x1d10d2ea mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d1eeaaf mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e633a23 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1eda46b0 __SCK__tp_func_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22592132 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x238fb06b __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2625e19c mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26621100 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2893eb9b mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x297a6a3a mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a423f9f __SCK__tp_func_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d51de9d mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e6870f5 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3038f9a4 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34fd0cf7 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35f53d9b mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37c83292 mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x392ced9f mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39504af8 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39a55548 __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b7e6135 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bdc1be8 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c444709 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f4cdff0 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41b8e6fa mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4260f1f9 __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42f32517 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44521398 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46d78fcb mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x481f3c00 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e60c93a mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20965f68 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2180b8de mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23571d19 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x242e690c mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x254d6a01 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x272b0b30 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x288644de mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b7dece0 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2df7a642 __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f8052f0 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x306bdf51 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33386eed mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34130054 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34f2d8ff mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x364aa884 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3651fe16 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ada9853 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e89c063 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x415f9a8f mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41791efa __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43a1807b mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46131ccb mlx5_lag_is_master 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 0x4e081893 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4be0ca3d mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c18e7d0 __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c9dc27a mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e12cd5f mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f3047ad mlx5_core_query_rq 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 0x52abe05f mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53a52e84 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54ed995d mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x555b10a3 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51228697 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52051544 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53e2fb3d mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54d18140 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x551fe05f mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55b615e4 mlx5_fs_add_rx_underlay_qpn 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 0x5f88eba9 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x561e56e4 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d686986 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f0d7b08 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6091020a __tracepoint_mlx5_fs_del_rule 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 0x6454eec1 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x657df64b mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x665e325b mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6688da67 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66943c7f mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6795bcb9 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ba1e09e mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e99985e mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71e19f9b mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75114293 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x761588ee mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76d493d3 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65661bdb __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c1dba4d __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ec54cc5 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7091a0ad mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x716fce97 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7271adb3 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x749d2b67 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75f5460d mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x768dbc64 mlx5_core_roce_gid_set 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 0x7bb6ae53 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c1f6ea7 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7835c9c2 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bfbf494 mlx5_cmd_create_vport_lag 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 0x7d9f9e64 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7eee4e1b mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f350722 __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fbb56c3 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fbe1a3b mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82b4f26b mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a8899e5 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a9b07a8 __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bc96c78 __SCK__tp_func_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c775efe __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d0b88f5 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d214b2e mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e49824d __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ff0ed1e mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81ab99fa mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81ba6209 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81ce5568 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8410b250 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84e31181 __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84f9b596 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8942225a mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8982e8ab __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b823b96 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b9b77a1 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d1826c5 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f5bcfb2 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8faadf07 mlx5_core_destroy_tir 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 0x92a56d3e mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92cb2dc3 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9553aa0e mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x956132d5 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91c9849c mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x921a516d mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92933e52 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94f3337f mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9568cc60 mlx5_rl_remove_rate_raw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x990f2722 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99d36040 mlx5_eq_create_generic 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 0x9d9cd6bc mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa285d9f1 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa28d6087 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa47f06a7 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5ec80df mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ddd1c0e mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ded92ea mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2f501a1 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa322e87a mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa35643e2 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5532217 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa57deb2b mlx5_cmd_init_async_ctx 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 0xa8e6a3f3 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaaff12e6 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7ef9b17 mlx5_core_create_rq 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 0xad7536f3 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae2da141 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf81a5f5 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0682438 mlx5_eq_notifier_unregister 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 0xb1de33fa mlx5_core_create_cq 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 0xb30416ba mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3ad6920 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3b9875b __SCK__tp_func_mlx5_fs_del_fte 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 0xb5338b3b mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb705210f mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7cef173 __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba172c54 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5a53453 mlx5_eswitch_get_encap_mode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5c2f4f __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba652856 __SCK__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba7d198f mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbac507d1 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfbed266 mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc32a92e1 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc54ad3aa mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6b29ed7 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcaaab4e9 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbaecae5 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc3ad432 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc7b6626 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbed0b3f4 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfc29c5b mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0fc0406 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc25ba6ee mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5bd1842 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6e5d815 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca0b5a50 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcaa6d800 mlx5_core_modify_rq 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 0xcc01d9d3 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc231d94 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd162cd2 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd598943 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcddb1ec7 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcedd9297 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd04d00aa mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd48c113b mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd57f0028 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd621b0e1 __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd883ab16 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb9b89fb __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccf7eea6 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd87b66d mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcde280f3 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd54309bc __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd58a229e mlx5_eswitch_vport_rep 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 0xd923301e __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9a1df9d mlx5_put_uars_page 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 0xdf11e98c mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf78faf3 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf0707ec mlx5_debug_qp_add 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 0xe2106d86 mlx5_rsc_dump_next 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 0xe4381b1f mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe85e0356 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb74463a __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee1b9f6f mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeea6553b mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeecd0649 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeeea203f mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefa7b268 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf16df46d mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1781715 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf32c4fd5 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf574bc1d mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf812a0a0 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8f94041 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc4efaa0 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdaebeae mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdf7f384 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xed96fe10 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3538ffa mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3dfe192 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe50c5013 __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5a3c632 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7111e28 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7c8979c mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe86da939 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9c8c6cf mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xead7a4df mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedba48cd mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3ac6d75 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf40d767a mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4cba68e __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf75e6d5a mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7896eb7 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfabdfafb mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfae2bc19 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc9da31f __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd75e5cd mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd9babec mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff508608 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc539c942 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 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 0x186dde5f mlxsw_core_rx_listener_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 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 -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1ebc225e mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x2947c3f0 mlxsw_core_trap_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2b7aa992 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2540fedc mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2e706ebd mlxsw_core_trap_unregister 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 0x3395d918 mlxsw_afa_block_append_mirror 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 0x4316bdeb mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x565b1f35 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50dc8a21 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 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 0x613f17d7 mlxsw_core_trap_unregister 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 0x65a30cf0 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 0x65f53c75 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x685ed39f mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6ea5f902 mlxsw_afa_create 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 0x7c37c488 mlxsw_core_port_devlink_port_get 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 0x810705d8 mlxsw_afa_block_append_mirror 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 0x833c5ba9 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 0x88f28451 mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ce17396 mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x92f9de60 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 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 0xa2b47a9a mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb15b95ba mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac868ecc mlxsw_core_bus_device_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 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 0xbcd9c02c mlxsw_core_trap_state_set 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 0xc51264f3 mlxsw_core_port_devlink_port_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc52a0829 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 0xc9f2e603 mlxsw_core_skb_receive 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 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 0xd3c8fbf9 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd4874014 mlxsw_core_resources_query 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 0xd95d38c1 mlxsw_core_ptp_transmitted 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 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 0xe1aeea22 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe41be278 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 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 0x4c52097e mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xd714456f mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x09b3a203 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xea43f241 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x003e7097 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x050222c1 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06fb4487 ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b273c93 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c7e86ed ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e10f1c7 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x13acdc5c ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2383b479 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2421008b ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x651f30ce mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xa7c49ada mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x77c8dda7 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x84c33344 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00a8d66b ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x02f3644d ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x045988e1 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x060401f7 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b79b934 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0cfe3971 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d1b92ee ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e0d7db4 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f578f14 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0fb0f348 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12273cc1 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1750fc88 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x18c6e0ec ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a877a0c ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d947bfc ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x230189a2 ocelot_get_sset_count 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 0x2884bb08 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x29a35da3 ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f5198d3 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f5fc8f1 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3045cc3b ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x31b69954 ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c40a7f3 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3ffe473c ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40964c3b ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40eb43ce ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4835f0d0 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4b1721e6 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4bb37ae4 ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e573c2a ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x58894ad9 ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6137f7c2 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x620ac6d4 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68663dff ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6a950233 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6cc4e25a ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ed621aa ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73468faa ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7445af1d ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7de0d3c0 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e5cc448 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84f2c035 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x868f07eb ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89065bd4 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x379cd261 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3aa2d8eb ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3bba42ff ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c2784d5 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x403d75d7 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4166abeb ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x416d5584 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46814ea7 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50167e0e ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54db63b3 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5cf78a57 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f52aa09 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6141add6 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6873bbf6 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x703eac19 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7702e506 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x77b202c9 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7d4a150e ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f58348d ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x836e1265 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x83cc8a0b ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x87573e1c ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x87677ecc ocelot_apply_bridge_fwd_mask 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 0x8b94eb3a ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ed7e0f5 ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f2b75ed ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x96b088d4 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a6ba792 ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c0bbb67 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa62ea551 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa871b13d ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa5e9a37 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0810faa ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7a0ba9d ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba5b8645 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbb740200 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc54dd3e ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbd1b99b6 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xca92768e ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc17291b ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcf58197d ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0529140 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd358bc88 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda8a1850 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdd4b810e ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe1048519 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe4835143 ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe606f171 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf2eb0531 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf908918a ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfe6cf5d4 ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff2c254d ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xffa17c06 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8dd8f8ce ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91169857 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x939719cf ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x96316eef ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c3a4a5f ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa3d94fbe ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad3e5873 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xadbdad6b ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb423069c ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb45f5f12 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4e56b41 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb8cf8688 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbcfc2555 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc645c62c ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc7f10d10 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc87643d3 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9d6d2a5 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd71a5808 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe63e57f8 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6684b5f ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6f57614 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe73e303d ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf3a5b3aa ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7260639 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf867b830 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa613597 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfbd29b5d ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfd2c18b6 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x2ad30181 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 0x5db6e37a qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7f11bcfb qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x56b2afaa qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x627e06ea qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x8482f9f7 qed_get_rdma_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xd9b6bc55 qed_get_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xdd9a3e5f qed_get_rdma_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x3699d0e3 qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x758b53fe qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x52e00767 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x841f725b hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x850b5caf hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x867c1041 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x8f872e18 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x8c8cbcb1 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xfd30d148 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1d86548f hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3572d3cc hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x35996761 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3e2de18b hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7c04576a 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 @@ -3138,685 +3027,685 @@ EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xa90e5fcf mdiobb_write EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xe39c6587 free_mdio_bitbang EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x05afcbf3 cavium_mdiobus_read EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x746e61c4 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mii 0x036aad13 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x4fb56bd1 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x583c5ba0 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x5bda89d0 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x5e0028b8 mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x825b34e4 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x8e6dd3b6 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0xc47ad830 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0xd9212e87 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0xfde4863f mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x3a664239 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x836642bc mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xa1ec567c mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xa32cf529 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xb8eea937 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xbcc7396c mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xcce8a1e7 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xd8a678f3 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xe6b20624 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xe85595ce mii_check_link EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x306e6f37 lynx_pcs_create EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xf65df0c9 lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x3ccc7968 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x02b33c51 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x9dfc791c pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xa8f67b45 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xad318b99 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xddfd00e6 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x220ae77f pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xcf11d125 pppox_unbind_sock EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x3f950d02 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x0b371d78 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x2b0bb5c0 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x2d5a531e team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x53f94768 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x7142a078 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x78889dae team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xb49efb4b team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xf19e4937 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x07025929 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x2a6fac20 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0x60d1aa48 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1d04f678 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x28cee812 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2cb74b30 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x34664f48 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x48ecad45 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x5c079340 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7e7cacae unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xae69d0ba attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xbb473e42 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc4f31bf3 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/ppp/pppox 0xf7c626c2 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xfd3551a5 register_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x29ef06c0 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x3d1809de team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x4602f0cb team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x59113157 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x6fb758d8 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xb3f1ad23 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xc1dab470 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xd35b476e team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xeada4b5e team_options_register +EXPORT_SYMBOL drivers/net/usb/usbnet 0x3f145eee usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x47bc96de usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xa11e0ddf usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x12706724 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1ebaad5a detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x444da65d unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x58f90f4e hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x633e0ebb hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6492675d hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x72f209da attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xabacc1ac register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb5610c16 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf9dba6fa unregister_hdlc_device EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x235befe4 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x245a6430 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x26b3505a ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x309878f6 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3c4ebe0d ath_regd_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x590760e2 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5e7f5183 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x618a284d dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7c98f180 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8d81818a ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8d98aafd ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x90aa54c9 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4f806cc0 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x55f6e94c ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x730469e2 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8000480e dfs_pattern_detector_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb489cbef ath_regd_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb7f01206 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc3d0d45a ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xeb9b886a ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xef097d06 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbb6b5b37 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd48710c2 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe253268a ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf7563d76 ath_hw_keyreset EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x007cdcc5 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfdfb5501 ath_hw_cycle_counters_update EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x01a3a367 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x07e2e77d ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0f1917bb ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x10afb06f ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1461f3ce ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x15d987f9 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1c3844b1 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x223d4a44 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2ebcbf4b ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2fb01388 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x37914470 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3a2e1fd7 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x406150e5 ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x42824ae4 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x438e4a97 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4e3963c0 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x51c3232b ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x618247c7 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x62b163be ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x638a7f89 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6d141ac5 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f37aad7 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x701cda4f ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x792d9dbe ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7afa2315 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7dec5f92 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fafdc89 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87942e0a ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87a2158d ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87cff639 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9615df40 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9719a33d __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9b1f7adb ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9c2a993d ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9dced58f ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9eb76b08 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa66fc45e ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa7fa5620 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb27f7081 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbeef699b ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc1f70c12 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc62c8cc6 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc92697ba ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc96eee0b ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd8de0a70 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdda8225a ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe189c072 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe2c5f0c9 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe877f386 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed5fc63f ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xedd827bb ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeeac1042 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf2696f04 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf353af4b ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfb725ad2 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfbf8f7a4 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x067c04f1 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1b8bd545 ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1d8bee33 ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1e432f53 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x335227e9 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5283a7f7 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5adfe168 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5f11ecfa ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6cd4850f ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7424208e ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7b83d366 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8b54de99 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x91bdc7db ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x06ab7a65 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x07aad9d7 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09325e73 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x133692ec __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x17d4f9c2 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1a8312d6 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1c05b700 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1f544393 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x26df3e37 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2916e16f ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2f25ed8f ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x31280bdb ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x344aad88 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4320266e ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x45441733 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x599155c9 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5e2ddf2b ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6064bbee ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x65600e72 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x664a390e ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6c30e40a ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6cb16aa3 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x787553a5 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x788826fa ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78dba864 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7cde912a ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7dd31d18 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x840dab71 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b2ccf5b ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8df31a7b ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x92364cdd ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x93d281d3 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x952764e9 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x98405063 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ae000a6 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9d18fa0f ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9e3bf5d8 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1c98aba ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa25b5fb0 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa640f2c6 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaab56054 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb875838c ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbda4c05b ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc38b9c95 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc5bc73b3 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc89f0e0c ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd25f7d83 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd68600a7 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe6342089 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe7c97a2d ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xef54afbb __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf0cdf70d ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf35ed6b8 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf9bc16b4 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfbe27c7e ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfdb1a7d9 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfedab2bc ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0039c965 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x077b0ec4 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0b4f94a7 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0dd18e69 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x15480c4f ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x22085141 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3229c03b ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x36d36a89 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3ac8c6ac ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x591a8a11 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5b0c3bd6 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x67048010 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7f21d09e ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x80d42b59 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x91c9a540 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x98073fe8 ath11k_ce_alloc_pipes EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9d02b316 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa4f3dc76 ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaa08397a ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaaf41f20 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb1f02c90 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb9f4cffb ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe136f1fd ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe6bbcbb8 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xee6c0dff ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa42c85fc ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb66436b2 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc56433af ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd8b64263 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe1bca365 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe9f8b4bd 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 0x0567f4d6 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0d5d854b ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0ec95a76 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1199a68d ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0b7f745b ath6kl_cfg80211_resume EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x13a2ef91 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3110ffa3 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x177501fd ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3494d31b ath6kl_core_cleanup EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x39248a0e ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3df3aa46 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x56471a7e ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x683fbcd5 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x40e60bbd ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4c75e418 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5c20e444 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 0x9a2a8985 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xadef22c0 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 0xe966f128 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0426f79e ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x08be9061 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1c81c353 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1dfd64f2 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2011e723 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x31df5bba ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3229a97c ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3bd96923 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4340dbc1 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4c475c64 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x560e5893 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8814aeb2 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8a746681 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x92d91194 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa57b21d8 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa81772e5 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xada6d762 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb2061786 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbaaa41aa ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc68d014e ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe91ee9cb ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0bfd6d62 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x14c089c4 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x21a1c6d5 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x345b6f95 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x34f5c6c1 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3bb20d71 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x44bfaef7 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x59a79a94 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5e954027 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6f802470 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x787daf9d ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7c515646 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7eada7fe ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x97e899b1 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x98c98577 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9cb5e7bc ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9f014a13 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xab1b0e6d ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xabb708a6 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb2c2a208 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb37b2f48 ath9k_cmn_debug_modal_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 0xb8629416 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc5699bd2 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbf5d599b ath9k_cmn_spectral_scan_trigger EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xde46d4bf ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe3804d82 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfd974d7d ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03431edd ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04398976 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05a5179c ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06ee74d4 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07d93ad9 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x081f72c0 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x093aba76 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x097462b9 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b814676 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfcf777a4 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x002b2ea9 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00d322c9 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x014823ab ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01a14cbe ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x059ec62f ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05b29492 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05d5bc19 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07218b95 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09cb4a48 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ad2b982 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b8187cf ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d383725 ath9k_hw_beaconq_setup EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12172b34 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x122a0e1e ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x136c7326 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17511d04 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17a8246f ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b4a121b ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ca971bc ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1dfc1b71 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e5fefd3 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ef7d3bb ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x220705fd ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x252c1b85 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x267b8526 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26b57b35 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2833bd83 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29a52b97 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e0bf331 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ef5fd2f ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3600f532 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36dbaa4e ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x398a0ebe ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39fa82fa ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39fb4795 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fc9d702 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x454ce3a0 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45531606 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46655eb1 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x494c8641 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4aeaaba7 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x537949c1 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x567bd585 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6014a5dd ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6165ddad ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69f8359d ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6bf1aad5 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6deaaad7 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70e44d3a ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7493085a ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77c2159b ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79984f8c ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7aba2579 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c5de940 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x827bd012 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85ddcc39 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86258c71 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8686ba5f ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86ed69ce ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88ce5628 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8997b64e ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a319228 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8eb3eb4d ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9070ac55 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9484fe31 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9617767f ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96b1c6cf ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9995a83f ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f96c27b ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa23e886f ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3942bca ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3c3e505 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4385cb4 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5604577 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa827e28e ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa845f08a ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac798260 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae5ffa23 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf20c653 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb22eb6f1 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2a13a63 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb94d0235 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbad35c0a ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd8f19c6 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc14795ea ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc17b16dd ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3f5c1a4 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc502a577 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc55a1ae7 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb54e589 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccbbff95 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcedf463d ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf908d7b ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0e6f70f ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1370e89 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4658147 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd494c738 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5e404e1 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8d3f44b ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8faf8a4 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1299fec ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe13d1d17 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe67855f0 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea1c8140 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebe64467 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf140828a ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf65a3c67 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf974ab15 ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfceb46ff ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd237db ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x010eff48 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x38cda132 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xb2fd4707 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0bc68a79 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1043e832 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1148a0c9 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18d34518 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1dc3c56c ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1def99fb ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fc01235 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2160c9c4 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22cc88c4 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x289e30cb ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28b27165 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a2ced58 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ae4b700 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d147365 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x321641b0 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32b36ab8 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x333b4494 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33640d53 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36917a47 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x369c5f17 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36fd0333 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x373ee55b ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x396b22ca ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3abed994 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40f03910 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x417ecc59 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45a946a1 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48d9b25a ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a45ba0c ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5291949f ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5677fa30 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57603ed8 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x592fe2b0 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c423ab9 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f73790f ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6294ab06 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6951818c ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a435357 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a8f6566 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c7b9c90 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ef890c0 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78b56ef1 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x856e3be2 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88ca8118 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8db80ff5 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8dc34221 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8eb9de1b ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92c66578 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9698f899 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96a52764 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x974025c3 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9858b476 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b002f58 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c525050 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c7959d0 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa96d5c1c ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xafa41af5 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1670d1c ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8016ca0 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc1cd8e9 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbee14651 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbfbab980 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc314bc7d ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5dd4eb2 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6f71ac7 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7393a46 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8b71d10 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca2f2381 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcca4f08e ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd3107e8 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd9c1139 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd09348a4 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd13da8c7 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9329295 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb2baa4c ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc7f0ef8 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xddbd3c57 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde1c129d ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe40dc8c5 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe950741b ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9d06ece ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea485311 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea4f50cf ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb519f4c ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec3c49f8 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec7ea3e3 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1e9d8e8 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf52561b8 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf616e661 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6daf095 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7cc2a34 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9bfa829 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbbf844d ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfce670df ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfeba2326 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfef44881 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x84558276 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x9c953001 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xb45e2e1b atmel_open EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x269bd9c6 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x26f3e9ba brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x319461b7 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3899cdc2 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x547b631e brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x54dfa3e8 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x609442ca brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6d455b6c brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x701ca393 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7383a76c brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x78d261ec brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x831629a4 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x19bcc41a brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1e400c4b brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1f3f574f brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x659c6f8c brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8c8bcdb0 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8fd91848 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x98cba376 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9bb99032 brcmu_pktq_flush EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa453bbf6 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc5514028 brcmu_pktq_penq EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x0eaea930 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x8c3a2dee init_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xd2b33dfc reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0291d14e libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0802c557 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1743aca4 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1aeab8c6 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1bb7e688 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1bda69ee libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3b2a5593 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4d8a8121 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x67b8279c libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6e5b6382 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9524fc42 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x97cc1fba libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xac5efdb6 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbeeb3a4e libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcc7b2e76 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd8f3bd6f libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe79a0807 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xec3fef28 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xeccc8038 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf32bd54c alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x01f3fcc1 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02dc079c il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x03fdcd0a il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x057a9480 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x064a99f3 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07dbb116 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x093bf758 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0944412d il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b0e47b9 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0eb758f4 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f07311b il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13ddaa55 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x144f01be il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15d54b3e il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22333b7b il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23121a0e il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23f4f784 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25d04512 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe915a81c brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf19c7786 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf9c064da brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x2490d870 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xbda59f74 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xbf1f64cf stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x00055655 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0a10eb34 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0d7ee8f3 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x11b523df free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2105ad24 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2222ba25 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3b819401 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3b93bf95 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x432af573 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4ca2ceab libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x571ca035 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6468b0c0 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9ac8b374 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xad189528 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb6d11e07 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbbc495e4 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc6666b3d libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe1e7f145 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xea52709c libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xff6ac116 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0270292c il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02912195 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x03babc6c il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x049a0c11 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x054f65ac il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07e8d0fc il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x09759737 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c98bb24 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0cb09995 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0dec1ade il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11a2296a il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11d4c2a5 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19cbaf93 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b6eb3ff il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1e2fc0d6 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x214df0ea il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2493fde3 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26aed900 il_pm_ops EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x344baf30 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3597d545 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x39dcfe7c il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3aecbf44 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c7edfbb il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3dadc6ce il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ee674db il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c131fff il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x359f5336 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35aa60a3 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3772b862 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x37cdf4f9 il_add_beacon_time EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41973033 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4525d532 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45ebb707 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4647ad38 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4790ca2a il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ead5250 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f9ff928 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52c01693 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55f5b06a il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5622c6b5 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57a14aa7 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a1960c7 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5b99075b il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5bb36674 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d8e2b6b il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ea46856 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60d2f3d9 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6296da51 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x654c0885 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65e3c46f il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a268bf7 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a9a6667 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c687318 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c7616dd il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77fa5cea il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79833dde il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7cbe5526 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x836e6244 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x84f2813f il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85a14527 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85b0e1b5 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87a77f67 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a62c16f il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8bec8341 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d3d2349 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e8dd71e il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90a7fafd il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x92020858 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9661f8eb il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c79b8b5 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42283eb4 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x427672d0 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46f59526 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48a9f8bb il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51f9cae0 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x538cff43 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x542187e7 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57907da2 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57bc0c2f il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ae6e6f7 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5be3d9fe il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x607ac335 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62f58b25 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6350fe6a il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64d62946 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a7ab155 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d001afe il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ebef868 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ff6ae6f il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73253f4e il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7363e05f il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x789eb244 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78a9bb26 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a71a236 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a9c74c2 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x828e3c7d il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8602d4e9 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89d964f2 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a81f30e il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9089bddf _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91bf228b il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x968b80dc il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x97348230 il_set_rate EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d45fcb9 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ddbce38 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0b8aed5 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa251a2e1 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3015caf il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5566bad il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa92b4252 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9854e64 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaad11b92 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xabcc39c2 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xafbb469b il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaff08388 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9e97cad5 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f39fbbc il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa1e6c40e il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa646e190 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa94171f0 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9cdb39f il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaae3c66e il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab448f56 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacd7d1bf il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae1a3815 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae1e66b6 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf34ccde il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb22ca9c9 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb385c1b6 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb647bee8 il_set_rxon_ht 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 0xb88ce355 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba1a9ec1 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbabb78db il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbda47899 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2033e56 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5f306fd il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8c1b077 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd02ce4ed il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd28f808a il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4730f01 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4d62fef il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc6f7e86 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1385c13 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec3594a3 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed0465bb il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeea47ca5 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1183d41 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf273c9f0 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbbcabeca il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd27115d il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbdb85cb7 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbe22c25e il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc550ad82 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc650bd94 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7d71e05 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb2c2c4c il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbf6c7e5 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf8800d6 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd15b5cf5 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1c6bc29 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd410cc79 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd44d89bf il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd82a8877 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xddce9285 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xddda7b12 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf71f126 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdfad24b6 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3b6e3f9 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5d67275 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe81cf767 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb65886b il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0e45201 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf578832d il_alloc_txq_mem EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf7138e2a il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfbbbe5cb il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xff96cc42 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x17ae72d0 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1fda2520 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf790ef0b il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfaf7fbaf il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x37e38dce __traceiter_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 0x39765e7f __SCK__tp_func_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 0x59384a50 __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e1c45f1 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7f3f24bf __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x80220eea __SCK__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x85d89f0b __SCK__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9235b346 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3ca4e33c __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4daa8da7 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4e9b2c62 __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x69ad05e8 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93914577 __traceiter_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd81e2f28 __SCT__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf99039cb __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x05d5f4e2 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0c547c1d hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd9175058 __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xda26f19d __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0746e1e8 hostap_master_start_xmit EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x35dd2583 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3d65639f hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3fb72550 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x41bf3d13 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6a4f3d50 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x15aa6348 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1fb67a30 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2b15d928 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x34c9f2e3 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x377accd4 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3870d630 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3d83ea73 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x438c402b hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x47358966 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4b3903ba hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5df0bb03 hostap_remove_interface 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 0x84142425 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x85704306 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8e87cdc0 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x90349015 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x976a70ad hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9fc383c9 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa48bf44e hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb378d1ba hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9034c883 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x999105f3 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9c7cf4aa hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa130f866 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa6ab6850 hostap_remove_proc EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc3c29404 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc9ee85e3 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcd9ec292 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd02566e9 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdf754ff6 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdf9d0a42 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe08b4c62 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe1359ea1 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf09bc5d6 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf43a8591 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2bb5d2b5 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5df73167 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5e2c2a7b orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5fedabb0 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x70948aa9 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x72859dd7 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x888b44d3 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x97a38503 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9aad99fb orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa0e1e995 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd336bda5 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd45c0c01 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd4db8f50 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd5b7757f hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd7bdd69e hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd9ac2721 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf302d99f hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfcddc328 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1bc4d8e8 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4edecfa7 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x555e0e98 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6d826db7 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x777b20c7 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8582d88e free_orinocodev EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa8459943 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb24d279b alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdbf3734d orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe5973e0a orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xed95311e __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa78fc939 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xba3a6366 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc3ae9869 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdcc87d93 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdf06183b orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe5a486a5 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeea997cf orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf8dd92d5 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xff081ec9 orinoco_up EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x8c711d75 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x034dc24a rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0e59f7e8 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x150b2a02 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xec91e981 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x8e572e10 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x008b604d rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x00f9e73f _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0a4f0da2 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0a5ad726 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x150b0a47 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1777b461 _rtl92c_store_pwrindex_diffrate_offset 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 0x302a9c69 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x37bab09f rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3884e9f1 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d883530 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ffd8470 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47d776e1 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5137683f rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a49c6a9 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b84e93b rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ec1369c rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x65ec8ef7 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x73b5a1a1 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7aea557f _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x81811b6b _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x868a88c7 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x87d1d5bc _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e81d32f rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9e8db683 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa199b50a rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa3b677b7 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa65b5416 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa83f95e3 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa9ff4be3 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf361b09 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbe1fc778 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc4237ed6 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc58f169a rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xca3af829 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcffd81f9 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd257b146 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdbd0ce24 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xde1f7d9b rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe238164c rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe5c6dd4e rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xea488295 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb5b57c6 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb7dae1b _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xede5528e rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeecc2dc7 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x70fcea7b rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa4d58594 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xbdf12e8f rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xf8053a28 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3b42db39 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x5b50c7a5 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x61f45686 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd23118fc rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b5ad572 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x30359fea _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x308f8c11 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34dd8b97 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3c1021fd rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x438a672b rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x445a9344 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47837389 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4dafffc8 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x56af6b28 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x59174961 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6281ea15 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70abe34a rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7504563e _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7f6d50d9 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82c3a577 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x83bae2d5 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9998e13e rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9ee868ea rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa3863100 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xabddf56e rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xacb8b96d rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaefc0339 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb73702f3 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc6c3a46d rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcc5cf750 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcc9c0a12 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd58b2702 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd9a70d61 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe85a5b07 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe9ec7d45 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf1bea228 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf361a931 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf461211a _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf80df0a4 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x00f77714 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x13f0aa29 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x18a19cb0 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x862b8285 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x26b7e2b2 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4db9cba2 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x538424a7 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x5428002f rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x021599ed rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x031d8e45 rtl_dm_diginit EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b8204ed rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0c9ba8d2 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0fdfbed7 rtl_cmd_send_packet EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b9a611b rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f5c84e1 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x20e502b0 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x236f129f rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d022e5c rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a3573df rtl_rfreg_delay EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x319bd5ad rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35db8c18 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d298b55 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x41e92cd5 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x42e7dba3 rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4fd2fce9 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x32018e62 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x332231fe rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x364b0f56 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x36b76b21 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4ccc925d rtl_cam_get_free_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5bdbb3a9 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63c2e2b5 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63c57322 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6d6f0e86 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a0f2303 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a453d01 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x824a24aa rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x884af886 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x566a45d3 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6fac03aa rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7bf788eb rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ce6a381 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8270e8ee rtl_collect_scan_list EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa08910d rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb292524e rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc5ed59c2 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd5eded6 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcdc0f627 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce29fdc2 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda8dd008 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9abcd538 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6d9d2f7 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xadbb4d37 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb2aa1e1e rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc87c5ec8 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd8b1cdf efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd7cbcfbc rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc3d7897 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc6418da efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe540c79a rtl_c2hcmd_enqueue EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c73b1 efuse_shadow_read EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeed2dded rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf34fa560 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x248dd88a rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xb94daf07 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xcf6da238 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x20afc906 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x03c07105 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x04173252 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x09179001 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x09e47c31 rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0d57835e rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x12d41654 rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1f32a12d __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x255e76a5 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2571a494 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x31949b1f rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0b133db efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0d31bfe rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf62d3809 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9b0a67c rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb6bcf2f rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xbf4b5d7f rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x228b2af2 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x54ab27cd rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xbb694cf3 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x08d3b27b rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x08ee6482 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x09c9d61a rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0cd26c02 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1119ed0c rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x11872038 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x142bc259 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1bb76266 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1dfc0e2c rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x24dd662a rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2586d477 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3285747f rtw_register_hw EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33cdc532 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x360a6fa7 rtw_phy_pwrtrack_get_pwridx EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3bcbab08 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3e4d57c4 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3ea81b2b rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4125667d rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x37f5c80d rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x42102153 rtw_phy_pwrtrack_thermal_changed 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 0x4cd47516 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x507bb7c2 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x44107f44 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4b3cb351 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4ce8b04a rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4defb81c rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4f33b781 rtw_phy_parsing_cfo EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x55377c6f rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x534e6894 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 0x5b2fde70 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x65197334 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x658d50c7 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x659edab3 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x67a33f98 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x687c5d8d rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6b5ae3bd rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6e4e42f1 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7151f5c9 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x715f6c77 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x71e2c6b9 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x74cfe752 rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7a9e1e75 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7ef0da82 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fb0d0e4 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x85268d06 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x923bc621 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x93d57bcf rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x96baeee2 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x970a97bc rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9f8b5d85 rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xab60b57b rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xad397ecd rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaf465fb0 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb3ab17fd rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb61ba00b rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb726023d rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbc841cc5 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc1d17189 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc6fcdeeb rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd988aeb8 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdac96c15 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdae96352 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe34c9d87 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe57d8ff7 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf084db04 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf9b4723d rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfa51ce07 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfaf528da rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfdf14572 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x067fff69 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x83628822 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x847c4499 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xc85e675e rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0bb8406c rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0db0a9de rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x23960349 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x333dfc87 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x36c7a7b3 rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x36d01593 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x44765cf2 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x45929f30 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x493b0c05 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4f2db514 rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x52e62fce rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x94171c4a rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb6cf353b __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xba88241a rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbe6173c4 rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc5fbed97 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xce080008 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd39c1403 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdcf6113f rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5d03c18c rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x65f6f27a rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6f1179b5 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6fd4c102 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7122f728 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x74281209 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7a8a2941 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7af97f4a rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7c271462 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7cc4ccdf rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x82822629 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8921e692 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8b8f8044 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8ccf94c9 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8e2934f1 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x964a5028 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x999c0c47 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa2cdb3b8 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa690bb94 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xac794caa rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb6bc80f8 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc1a6cdb7 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc7fdf79f rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd121b837 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd773e1af rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd9591006 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdd25f64b rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdf5c0195 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe24bc516 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xea9d494c rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xebe801bc rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf035fdbc rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf1cf8c52 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf99152a2 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfacb3440 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x3caba767 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xe1f841ef rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xf1620953 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xf2995e56 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x144ad2c2 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1a1609dd __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2f649352 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x335cddc6 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4a7c00e4 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x64720548 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6a0f40f9 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7b8d02cf rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x874a581c rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8843c2db rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8a1b437c rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8cc0712b rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x95ee061b rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc192ae6b rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd42635d8 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd4b1dc20 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdc1ade58 rtw89_ser_notify EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xec3dc57d rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x4e763c14 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x95d53fe5 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x5960e3dd wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6166e1a7 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe81db650 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf1fadb4f wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xea051a22 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xec91a334 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfb6c4e3b rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xdb9687eb rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xc792034d rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x161040e1 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x363a8b76 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x44246f7f wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x990d0bf5 wlcore_tx_complete EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x80e315d5 fdp_nci_probe EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xb77c88c0 fdp_nci_remove EXPORT_SYMBOL drivers/nfc/microread/microread 0x012662cd microread_probe @@ -3824,7 +3713,7 @@ EXPORT_SYMBOL drivers/nfc/microread/microread 0x9ae934c0 microread_remove EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x368ab9ec nxp_nci_fw_recv_frame EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x6e3ebf6d nxp_nci_probe EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x760d2576 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x867a2169 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xdf0ce54e pn533_recv_frame EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x86c9c30f pn544_hci_probe EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xa4102557 pn544_hci_remove EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x1160d848 s3fwrn5_probe @@ -3834,7 +3723,6 @@ EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc737d3f2 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 0x2ccdeace st_nci_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x321082f2 ndlc_remove EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x364c9545 st_nci_se_init EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3bfb19f1 st_nci_se_io @@ -3844,23 +3732,24 @@ EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x77f022b6 ndlc_open EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x92bc1acc ndlc_send EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc4763ec7 st_nci_se_deinit EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc4d878a0 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf5275051 st_nci_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x05b6677e st21nfca_im_send_dep_req EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x16203177 st21nfca_dep_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x26d7b0a5 st21nfca_apdu_reader_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x34b9fa28 st21nfca_tm_send_dep_res EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x42a795b6 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5904116a st21nfca_hci_loopback_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x61819ce9 st21nfca_im_send_atr_req EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7d12ae1b st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x809e591a st21nfca_hci_loopback_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x81c67916 st21nfca_hci_remove EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x92c47793 st21nfca_hci_enable_se EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x97a711ed st21nfca_hci_se_io EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xad151bc9 st21nfca_connectivity_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb3cc937d st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc612b04e st21nfca_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcc70ffc3 st21nfca_hci_disable_se EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd6230854 st21nfca_se_deinit EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdf046334 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf11f71e3 st21nfca_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfd33a277 st21nfca_se_init EXPORT_SYMBOL drivers/ntb/ntb 0x1339fa44 ntb_unregister_client EXPORT_SYMBOL drivers/ntb/ntb 0x135ead22 ntb_default_peer_port_count @@ -3919,25 +3808,25 @@ EXPORT_SYMBOL drivers/parport/parport 0xf9bb1d51 parport_claim EXPORT_SYMBOL drivers/parport/parport 0xfd969eb3 parport_ieee1284_epp_write_data EXPORT_SYMBOL drivers/parport/parport_pc 0x4b02b701 parport_pc_unregister_port EXPORT_SYMBOL drivers/parport/parport_pc 0x53b29fcf parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x223f89bb pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2c6d6bfb pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x39246acb pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4f9e4303 pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5463a6e4 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5b8e58a7 pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x810d115c pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x12b2e09b pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2ad92337 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2c92bbf7 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3d9c62b9 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x721c6e58 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7e77992f pcmcia_loop_config EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x81422d30 pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x84eacd43 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x863f7cc9 pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8c232942 pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8cd63efa pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x87576345 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa42ec424 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb8598f19 pcmcia_loop_tuple EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbb312663 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc3f00955 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcb1c266a pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd5faabec pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd896491f pcmcia_request_io EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd934edcb pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdf0e6bc5 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdb7f2046 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdbb61255 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe4cedc41 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe7c809f0 pcmcia_request_window EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe9368995 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf7092da9 pcmcia_fixup_vpp EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3fa9f10b pccard_register_pcmcia EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6e4a86ea pcmcia_socket_class @@ -3953,11 +3842,11 @@ EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf657b994 pcmcia_reset_card EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x6e0f9b6d pccard_static_ops EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x768ee1e1 pccard_nonstatic_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x1a140977 cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x32349381 cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7090a572 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x793743f7 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x0e323d86 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xc0234055 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xcc53b138 cros_ec_unregister EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xfad71c1f cros_ec_resume 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 @@ -3966,223 +3855,224 @@ EXPORT_SYMBOL drivers/platform/x86/intel/intel_punit_ipc 0x3a0b563a intel_punit EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0xd857cac7 sony_pic_camera_command EXPORT_SYMBOL drivers/platform/x86/wmi 0x26f2e625 wmi_driver_unregister EXPORT_SYMBOL drivers/platform/x86/wmi 0x6cde21db __wmi_driver_register -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0c74d64e rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x093eba85 rpmsg_poll EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x21108c95 rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2913d2e5 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x41526b7c rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x428b6917 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x28996a1e unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2eff7e20 __register_rpmsg_driver EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4969ec4d rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5d332948 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5f90e659 rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa67ac98a rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbe4e700c rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc2cec5a6 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xddec4fa1 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe371c1b4 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe423e537 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xed2b00e3 rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf78741fe rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x2e83663b rpmsg_ns_register_device -EXPORT_SYMBOL drivers/scsi/53c700 0x28493e45 NCR_700_detect +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x77394d3b rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7ceb7300 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x82f07ab9 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8ae496ab rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8efd8fba rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x91ec02b1 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9cdc76e5 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa5543e32 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb9d3a6b7 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbb8519a1 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc4a9739e rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd344c6e4 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x92fa92b6 rpmsg_ns_register_device EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr -EXPORT_SYMBOL drivers/scsi/53c700 0xe7369470 NCR_700_release -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x11c94391 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/53c700 0x67995c2e NCR_700_release +EXPORT_SYMBOL drivers/scsi/53c700 0xbc4f16b2 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x3619c05d scsi_esp_register EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x6af2d539 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9819aa41 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xad343a50 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x398d9682 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3fe54daf fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x69a63bae fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x795a3d71 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7c03fc01 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7e35f128 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x89f78abe fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8bad584d fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x90cc2447 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdf7cb42d fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf180f938 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x08c85685 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x785580c5 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x82a75f8b scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xbfb0d0a5 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2f4ecb22 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5c2ccd42 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x78820f66 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x96784310 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x968fcb9a fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9befd4c5 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9c28a19d fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xab7e7676 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaf6bbab7 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbd23908c fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd5adaedb fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x040a59f5 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x07bc415f fc_eh_abort EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a19bc16 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c253844 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10d2c3c3 fc_vport_id_lookup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13eeff69 fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16b4dade fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x180f5d56 fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1944984c fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a4b5759 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d8608e0 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x196b886f fc_lport_iterate EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2188ce48 fc_fill_reply_hdr EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2663bd68 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ba3f4d4 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d211ac3 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f9b908f fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x35d5dec2 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39947bd6 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f4cea60 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x49e29577 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5286ff8d fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57ac39e5 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5a83a5a7 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x62002317 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6c488ab3 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ccac93b fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6f510e74 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76a86f19 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22d4c363 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x33a684eb fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x41503d3a fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x41d4c34b fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f1e08a0 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x52fcd283 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b6aaa2e fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5db9e81a fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d5f0d03 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d93e6ef fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6f4495d5 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7085ecb3 fc_exch_recv EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76d4e505 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a00aa3d fc_vport_setlink EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fb9fe4d fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f801c96 fc_rport_create EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8152de7b fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e98d77f fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x905196b2 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x92dd970f fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86ded090 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9290c5b3 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x94336b15 fc_rport_logoff EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97b79120 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9865d51d fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a0599b5 fc_get_host_stats EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9fd2f61a fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa16b3003 fc_linkup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa3e0d7cd fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6ad7d80 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad1db744 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7658d53 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa76d1940 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xab205e26 fc_queuecommand EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb674bd8c fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc0febdf fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb25557a0 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4cb02e4 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb6753931 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7306cc1 fc_fabric_login EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbeb9b608 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc525699a fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6b8b98e fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf3d9a7a fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc140bfc6 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc24ff3c6 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc274ab0d fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc4d20ea3 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc79ec19c fc_lport_set_local_id EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca81018f _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3deaa57 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcbde4834 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce26d4a5 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0f8d8a4 fc_fcp_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd46a734c fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb141b60 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf10f059 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdfe50450 fc_eh_host_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe26981ed fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe42bae98 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe44268d1 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe4662e11 fc_rport_recv_req EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe83bf31a fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xecd14b42 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xec046b6d fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed033fd4 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xef044ab6 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2dced15 fc_fcp_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2ef259b fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4499e0 libfc_vport_create EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfde67333 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfe1c2488 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffc52c6b fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x19042e35 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfe68433d fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffdcc9d0 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x39bc0ab6 sas_prep_resume_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x991f4ee3 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb1493bab sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x63ffee41 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc3ce2712 sas_resume_ha EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x11ec4877 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 0x15992ef0 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1ebdce2c qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2d8ad391 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4530d003 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x47f06a59 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5c875a55 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8ae69ff2 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb262b487 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe12c72f4 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe3fe5abf qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xeb441fc7 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfada8c05 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x194b24ce qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1c5413d4 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x07edf57e qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1be06cde qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1db0a4d4 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5fe9e74c qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7c57c72a qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb1c6595b qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb7e640c9 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbae45356 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd80cba74 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdbb0adec qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf058e0d1 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf2d45b26 qlt_stop_phase2 EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x27542071 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3c710265 qlogicfas408_host_reset EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x5760f33d qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x5845fd77 qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa4bad45c qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xc407aecf qlogicfas408_host_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x56f923e1 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa70a862c qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb95ccfe2 qlogicfas408_queuecommand EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe8b647cd qlogicfas408_biosparam EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup EXPORT_SYMBOL drivers/scsi/raid_class 0xac86fe70 raid_class_release EXPORT_SYMBOL drivers/scsi/raid_class 0xc058f8ce raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0c08f010 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0d52fc80 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x12f5b975 fc_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x20d77488 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x21d13fae fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x28702891 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x332eb0ad fc_host_post_vendor_event EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x41b7a749 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x37e4f94a fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3a56a6fc fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4037b40d fc_find_rport_by_wwpn EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5ed573f6 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x75347e0e fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8b1a739b fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8d2e9022 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x98e08f3b fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbc094284 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc66eedbc fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x655ad2d1 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8a75ab2c fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9f6ef1ff fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa2dea52f fc_remote_port_add EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcf028c1f fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd13a8535 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd77a7953 fc_release_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdba064e1 fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xec06d16a fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf17c622f fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf473d269 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x16bd143e sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe26d2610 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1a2a15cb sas_remove_host EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2a5b87b1 sas_expander_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3f8b7dcb scsi_is_sas_rphy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x44fb4b27 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5295980b sas_get_address EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5743bf36 sas_port_add_phy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a367b66 sas_phy_delete EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x601c2ff6 sas_phy_add EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6dae24c2 sas_phy_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ca67f3d sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7dfbb544 sas_release_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x87415d54 sas_port_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8a869ec6 sas_rphy_add EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8aa651f2 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x92889b63 sas_release_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x93f8ed61 sas_port_mark_backlink EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x954f8b3c sas_port_get_phy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x98b9ac07 sas_rphy_remove EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xadeab5d3 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaf9bd1c8 sas_get_address EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb0147a20 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb73606ea sas_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbdee91b9 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbf8f73b5 sas_remove_host EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc90ce50e sas_rphy_unlink EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xca9bc631 scsi_is_sas_port EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd870d888 sas_port_delete_phy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd8b61fdf sas_phy_free EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdd75161d sas_port_free EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0bbcdcd sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0c3a3f8 sas_read_port_mode_page EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe1be4f19 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0f0e5799 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x15695aff spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2feb8c6d spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfead8448 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1b7342dc spi_dv_device EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xef3ed6f0 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf62e41a6 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x41e80d05 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa3836f31 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc1b871ee spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc77aac09 spi_schedule_dv_device EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x0c5ed0b1 srp_rport_put EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5a71af44 srp_start_tl_fail_timers EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa45848d1 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb4d80ac1 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd2c5bd59 srp_timed_out EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe809b38e srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xc3526668 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xec6365cd tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x004ede08 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x092817e5 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x66abc4c4 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x8d5ac6ab ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xc2eec01e ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xc7e4a039 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd4ce9a2e ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xfadd769e ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x91988bad ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xf9d648e0 ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x01989da9 qmi_handle_init +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xbeeaa049 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xee85b8f1 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x086cf8c6 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x119010c8 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x384856cc ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x572ee9df ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x71d3f84f ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x7fd147f5 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x80e49ae3 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd121c934 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x0d94dc3a ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x374f0852 ufshcd_dwc_link_startup_notify EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x11503928 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x12b0893d qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x159de2d6 qmi_add_lookup EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x42007ef0 qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x454c8cd3 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x47adc571 qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4ca8f66b qmi_txn_cancel EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8032f9ad qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9838e0a2 qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa573b0ac qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xdc42427d qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfc474aee qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x73eeb729 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x77c6554f qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9b4ca1b1 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9e06a473 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa5abaca5 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa9097126 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfbd7ee72 qmi_send_request EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x057ebb45 sdw_bus_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1a867bb5 sdw_update_no_pm @@ -4223,6 +4113,7 @@ EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf2e59057 sdw_stream_add_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x056a3a21 sdw_cdns_config_stream EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0974fcf9 sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0dad2a82 cdns_set_sdw_stream EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x18dae35b sdw_cdns_init EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x217ffef9 cdns_bus_conf EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x25409a05 sdw_cdns_check_self_clearing_bits @@ -4237,7 +4128,6 @@ EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb39fe5db cdns_xfer_msg_defe EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb99b98fb sdw_cdns_exit_reset EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc6b548d9 sdw_cdns_clock_stop EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd179d436 sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf93bf297 cdns_set_sdw_stream EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x62a9c05c sdw_compute_params EXPORT_SYMBOL drivers/ssb/ssb 0x04fc3069 __ssb_driver_register EXPORT_SYMBOL drivers/ssb/ssb 0x133eb738 ssb_clockspeed @@ -4261,279 +4151,278 @@ EXPORT_SYMBOL drivers/ssb/ssb 0xeabd6449 ssb_device_is_enabled EXPORT_SYMBOL drivers/ssb/ssb 0xec57c172 ssb_pcihost_register EXPORT_SYMBOL drivers/ssb/ssb 0xee8c6e3a ssb_pmu_set_ldo_voltage EXPORT_SYMBOL drivers/ssb/ssb 0xff18193b ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x021578d2 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0c69875a fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1488a645 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x162b81e8 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x096c5813 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0ae4f0fd fbtft_write_gpio16_wr EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x175679d1 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1f3bfd32 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x306388c2 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x31576948 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3ce2b3ad fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x475508a2 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4d8f0e1e fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1d8acaeb fbtft_write_gpio8_wr EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5b567772 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x73c5c559 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7231fef2 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x80b79bbc fbtft_write_vmem8_bus8 EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x879d9baa fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8c9762e7 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb2beb815 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8805df81 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8a85894e fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8c1754c5 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9024cd08 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x91264961 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x92c88734 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa4999fb2 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xae4d85c5 fbtft_write_vmem16_bus8 EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xba2f45fa fbtft_framebuffer_release EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbfe4a2be fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc0b5ecce fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc1f4c8ae fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc6b150ac fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd1d85c9b fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe27c4857 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf8c8b858 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfdd1f3d5 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x14508bc9 gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x5f5993b8 gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xd52d2cdf gbaudio_module_update +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc4c5f30c fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xca52003e fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdb905aea fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe2cc636e fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf25d0c6f fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf4025381 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf929956c fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x2981dcae gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x63aa952e gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xf6a94fdf gbaudio_register_module EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x371fe805 adt7316_probe EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xbb93eeff ade7854_probe -EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x4e133458 sp8870_attach EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x17be17c1 videocodec_attach EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x276aad3e videocodec_unregister EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x6acd9a25 videocodec_register EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xd9c679f0 videocodec_detach -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08161ef5 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0cd28003 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x17e0194f HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e307b1d rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20aa2c82 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x21d587af rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x010fc0c0 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x016be95e rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06be5510 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1019e15f rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12602e6c rtllib_reset_queue EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x268fb74c rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b8a3fc1 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2c446c65 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3148a084 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3812853f free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3d1ce21c rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3dc1a443 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3fd6ccd9 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x43dac89e rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4886e31a rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51383380 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5260a28d rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x527b2674 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x566f0d3d rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6cabbf8c rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6e8e8953 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74716837 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7d397b5d rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e673575 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7f819ae5 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x84e04840 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x861609af rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8aee241b rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e705d45 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90ac1e98 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x923ab3c8 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9790fe54 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9d9fdf16 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa7226cb0 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaa83b4fe rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xae5ea798 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaecfcc6b dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaf24601e rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaf798320 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb4bb6fdc rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1915f1b rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd297978b rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22a2989b rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x239e963f rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f59bda7 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x33e946b1 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3818f877 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x384a18d4 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3be4507f rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3d55a326 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x41fd5607 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x453e8dcd rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4af2a215 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5da2cca6 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5f441502 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x635fd0e7 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x692104a9 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x70c51cc9 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x735cc2ce rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x79b056ac rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8d82fea7 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e6e459b rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9063876d rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97866de2 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97fcf512 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9be7b25e rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9f0ae263 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa30995f4 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa73843a9 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb40a4e27 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb6ba6095 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd4585ce rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc098e0a2 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4eca285 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc8166978 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce1d4166 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce46d442 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd43b1225 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd4608701 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdae1a110 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb16c396 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc47afcb dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdea24cb8 rtllib_wx_set_wap EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe07f6ee2 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe0987f36 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe156ef05 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe52a8c37 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe6f26f27 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf3cfcd72 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x01c0ab8a ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x05ee3171 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x079cf5ff ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0948062c ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0b3728a9 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ce378f2 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x163a3ed3 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe1ae1935 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeda14f86 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf434e789 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0243cc7d ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x026777ba ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03ad97e9 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x079a90ca ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a0a79f0 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x101c9d7b ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x14071780 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x173e9546 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1958aaba ieee80211_wx_set_mode_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1f848664 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1fcffa89 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2a62ff6a notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a253e24 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x40a02544 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4452a1ab ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46ddb69c ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47c8f7fc ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4c82130a ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4f3b0d9f ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x581d28ef ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a81eebc ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5cfc7d64 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f463178 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69a759bc ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6c75a78d ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6df1d2f7 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70709020 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74c577ab ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7b0e33dc ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7bec97b4 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ebb802f ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x83527bf6 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x85a4053b ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8798c046 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91b01028 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ae3ed50 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c5179a6 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9db90bbe ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9dd838dd ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa00edebf ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa3efedf1 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xae2dfe4f ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc30ccbc5 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2395bd10 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2511794f ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2672a743 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x27bb56d1 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e17697c ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f251fd5 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x320ceafe dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4158ee5a ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45c8e4af SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5039934d ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5529a6c5 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5551dfdb ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b9ccebb ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66d8f15e dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68946c4b ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e921256 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x708d708e ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76ff25f0 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77adaceb ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ea9bd7b ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x82fd055d ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x89da661f to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8cc9ed73 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91cdd068 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x922eed31 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x954418aa ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a86b456 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b2afca1 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa550d210 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaaaf82b2 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf011a40 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1d92503 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb4840db0 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5bad297 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbcde3664 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf204726 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf9c1dd4 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc1401355 dot11d_get_max_tx_pwr_in_dbm EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca83fd26 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd75a0a2 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd00ceacd dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb93ece2 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1a50c45 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7c45614 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe8fa0b82 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4834598 ieee80211_wx_set_rawtx_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee35f270 is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf33f2f3b ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf7fcfde6 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc47567a ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfdb4cde8 SendDisassociation_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x04ea0e6f iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b4b9e8d iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0bc919fa iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf1ac932a is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf2b3aa77 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf6be6ed2 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc50557f ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfcdbeb60 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x086d9aa0 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08c06e54 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1253e431 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x140f969c iscsit_reject_cmd EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x14861b00 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x157d4d38 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x165c6440 iscsit_queue_rsp EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19b42c7d iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1a0f8f19 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1fd94a9e iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2247a837 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2661a926 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x35f294f5 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29dcffe5 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a9339fa iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3144a34c iscsi_target_check_login_request EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x39e74e63 iscsit_stop_dataout_timer EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4290dae0 iscsit_cause_connection_reinstatement EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x48c11662 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4d0ff215 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6b510542 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6cb6debc iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d26764c iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x505633a5 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54aa51f8 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d991f05 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61faf676 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x620831bd iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a5baec8 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6aa59f71 iscsi_change_param_sprintf EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7372b42d iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x75c1c58b iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x792a502d iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7995e4c4 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7b4b5e9d iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d301194 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x833d1db6 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b332df6 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8c77014b iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7564dc8c iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x78277056 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d759295 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e72aca6 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f339ca9 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x843af76e iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86d9c143 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x91b0fc3e iscsit_process_nop_out EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98c0f693 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ffc00b5 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa544ca6f iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb517a283 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb12ef4f iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc03a995c iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc4b2c676 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc4c167ad iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc4cbd19a iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc8e6cf9f iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xced76b80 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4424248 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf1fd500f iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c95da20 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9dde9b30 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa11bd599 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa7806660 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa948d66e iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa9affe6f iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa33612a iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb39daf4c __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbf86e80e iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf285eea iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdcc49d11 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1ffca5e iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe44d001b iscsit_response_queue EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf3c890d8 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf72c0c5a iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf7e043d5 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/target_core_mod 0x013afd4b target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x06700bf1 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x06ec0b4d target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf51a367f iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff96086f iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/target_core_mod 0x02fd2cea transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0579a15e core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x0804f6bd transport_send_check_condition_and_sense EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0ae7c2bf transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x0b461b0b transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f140af0 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x12d567b7 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x09decff7 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f03b89d target_set_cmd_data_length EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1af4ecfc core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x287c1a9e target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x29433eee transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x142dab4f __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x21095dbb transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x23d10e59 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a4eb505 transport_generic_request_failure EXPORT_SYMBOL drivers/target/target_core_mod 0x361b1762 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x3876cd62 transport_generic_new_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3f5094e3 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x3ff75c02 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x419b3382 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x425ceb20 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x45ea7ed8 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x46d0380f transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x47dc8933 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x49f11b99 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x4b573c3f transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x3b74aa73 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e2896ab transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x40810313 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x42b94113 target_unregister_template EXPORT_SYMBOL drivers/target/target_core_mod 0x4c515473 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ca7737e target_put_sess_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x4ccc11bf spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x4e6d8efb target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x58d29936 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x5973b86c transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x5d4c34d8 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f188aaf target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x500af601 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x51dfaf52 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x56a5e6bb core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x5e88c141 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x5eedf113 target_put_sess_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x648fbb10 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x6aadc576 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6ac5f600 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x6d94c0dc target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x64a33006 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x66c0002c sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x66d329cc target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x70475cd2 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x717c8322 transport_backend_register EXPORT_SYMBOL drivers/target/target_core_mod 0x73e51130 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x7992942b target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x77bdae52 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x79f2bcd4 transport_generic_free_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1e30e8 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x7f0c8b63 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x808a8d8a transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x809844dd target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x878149d3 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c0f35b5 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x7cf2a901 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d31a922 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e3ed2ff target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e81eb52 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ee211ed target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x82e98190 target_cmd_parse_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0x898fccef sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x8e35e18b core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x8f7969e0 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x912fb15b target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x9237c47a target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x8cf0303c transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x91ea5355 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x932ec25e transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x934dbb93 transport_lookup_cmd_lun EXPORT_SYMBOL drivers/target/target_core_mod 0x954c545a spc_parse_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0x955a6686 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x9a929b91 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x9baded3a target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xa1e24684 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xa451ef3b target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa57f5b81 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa7fd146a transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xacc4c7e2 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xb6a78744 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xb6fd6b3d transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc4f1cc1b passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xc85904dd target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xc97d2241 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x96d5aefa transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x989e9224 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x98a1903e passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x9ac62124 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa9420d6f target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xaaae2559 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xb24e6241 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb393240a transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xb592a19d target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7651cc8 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xbb59e717 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xc540893b target_register_template EXPORT_SYMBOL drivers/target/target_core_mod 0xca3c0f78 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xcbfc2bf7 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xca6fa054 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xcceb2fd5 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd8e04ba target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd33c2271 __transport_register_session EXPORT_SYMBOL drivers/target/target_core_mod 0xd4a203be sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xd605a26b transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xdb1b4bf4 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xdf77dadc target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xe7b7bad8 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5b3b681 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xda748fbe transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xe42c9873 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xe7e63f0e core_tpg_get_initiator_node_acl EXPORT_SYMBOL drivers/target/target_core_mod 0xee5e0a2f sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xeea76cd2 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xf165cc97 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xf331ea01 target_backend_unregister EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf4385f33 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf68785ae transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf7e2ae3b target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xf8a10fc5 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xfb80f32c core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xf741a766 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xf84dd7d4 passthrough_pr_attrib_attrs EXPORT_SYMBOL drivers/target/target_core_mod 0xfd0be36e spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xff110db3 target_backend_unregister 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 0x535360f8 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x1c87d298 usb_cdc_wdm_register EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x262428d5 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xb4589d32 sl811h_driver +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x8e89e652 sl811h_driver EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x148690d9 usb_wwan_write EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1d4c55ab usb_wwan_dtr_rts EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x516d348b usb_wwan_write_room @@ -4663,10 +4552,10 @@ EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x34fe64e4 w1_ds2780_io EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x65465813 w1_ds2780_eeprom_cmd EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x1df3b376 w1_ds2781_eeprom_cmd EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xfac2f269 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x58fa2463 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x02635f0c w1_remove_master_device EXPORT_SYMBOL drivers/w1/wire 0x787d8e73 w1_unregister_family EXPORT_SYMBOL drivers/w1/wire 0xb5b254a1 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xc4872c72 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xe0583bbc 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 @@ -4713,10 +4602,10 @@ EXPORT_SYMBOL fs/fscache/fscache 0xebf8913a fscache_mark_pages_cached EXPORT_SYMBOL fs/fscache/fscache 0xec208837 __fscache_check_consistency EXPORT_SYMBOL fs/fscache/fscache 0xfd33f2ae __fscache_disable_cookie EXPORT_SYMBOL fs/fscache/fscache 0xff9a849c __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/netfs/netfs 0x2a22ae36 netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0x33d91ea2 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0x4f7188cb netfs_readpage -EXPORT_SYMBOL fs/netfs/netfs 0x886f3015 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x1a1d8c5e netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x3cb85a0c netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x9620d10d netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0xede17953 netfs_readahead EXPORT_SYMBOL fs/netfs/netfs 0xfaf710c8 netfs_stats_show EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active EXPORT_SYMBOL fs/quota/quota_tree 0x07d14ec4 qtree_read_dquot @@ -4833,548 +4722,548 @@ EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams 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 0x20744a84 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x3b458d05 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xa4940c30 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xbaa340a0 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd124c6a5 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xfb022b79 lowpan_nhc_add -EXPORT_SYMBOL net/802/p8022 0x189f5632 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0x4e61d237 register_8022_client -EXPORT_SYMBOL net/802/psnap 0x55412f36 register_snap_client -EXPORT_SYMBOL net/802/psnap 0xc43e026c unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x05c5039f p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x13c7ee9a p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x19901f9b p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x1efa7b99 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x2fbfcf90 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x3239584b p9_client_disconnect +EXPORT_SYMBOL net/6lowpan/6lowpan 0x4670602d lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x4cc894ae lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x9e30a202 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc03eb13f lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xcdfde7dd lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xfca3ef5b lowpan_unregister_netdev +EXPORT_SYMBOL net/802/p8022 0x075c8c2b unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x925c4e43 register_8022_client +EXPORT_SYMBOL net/802/psnap 0xa1d22a3f register_snap_client +EXPORT_SYMBOL net/802/psnap 0xb7cc1a98 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x03a4de5b p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x0e14e73a p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x135a9b7a p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x155191bb p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x21c4572e p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x241b6b68 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x2454e283 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x245749b0 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x27584eca p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x37f8d231 p9_client_begin_disconnect EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3f600bc7 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x40177edf p9_client_create EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x44b767de p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x46b4aba9 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x56d1cc74 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5a6fd0b1 p9_client_create_dotl EXPORT_SYMBOL net/9p/9pnet 0x5aaa7917 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x605572f5 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x60e572ea p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x611cb6e9 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x646dcb3e p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x6a2c25ba p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x6d2eea53 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x6d54a61e p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x6fc1d2bc p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x612d44cc p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x63be7b4b p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x669c41f3 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x6affb0c1 p9_is_proto_dotl EXPORT_SYMBOL net/9p/9pnet 0x75cf1640 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x773480ac p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x80df7226 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x84e4367b p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x86ae3508 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x8706e3ec p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x85bbb293 p9_client_read_once EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x9667ddb9 p9_client_getlock_dotl EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x98f42776 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x9f5955d3 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x9f4d4778 p9_client_clunk EXPORT_SYMBOL net/9p/9pnet 0x9fbd9b29 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xa80c6a5b p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xab65f3d1 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0xb552d5fb p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xa3841a43 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xa474bdf3 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xa76a029d p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xac8ef371 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xb0a6bafd p9_client_write EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xbe554f70 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xbfaa3c61 p9_show_client_options EXPORT_SYMBOL net/9p/9pnet 0xc76102a2 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xcce3f513 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xcf8a78a1 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xd10f2102 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xc8ef99fc p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xcaff956d p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xcbaba4fa p9_client_lock_dotl EXPORT_SYMBOL net/9p/9pnet 0xd14d986c v9fs_register_trans EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xdc0254e1 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xdd555f30 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xdfffed1f p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xd3f3a021 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xdaef8b9d p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xdc3a914b p9_client_disconnect EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xeb107215 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xef43e820 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0xeff7db00 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0xf158a43f p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xf6338c8a p9_req_put -EXPORT_SYMBOL net/appletalk/appletalk 0x378a533a alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x646c8aa7 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x78660da1 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xcff78074 aarp_send_ddp +EXPORT_SYMBOL net/9p/9pnet 0xed7d0853 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xed7e6b52 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xfd1eb022 p9_client_fcreate +EXPORT_SYMBOL net/appletalk/appletalk 0x1491b88b atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x15472394 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x494d4e25 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xf5667fb4 alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x03e1a7b4 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x0f3a3569 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x139d3387 atm_charge +EXPORT_SYMBOL net/atm/atm 0x26fea076 atm_dev_lookup EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x39d69aa6 atm_charge EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x53db00b3 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x5bfad5c9 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x6d4616b9 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x78377c55 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x79fa6953 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x9c3462f3 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x591d3efe atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x714226b1 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x73439144 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x9c37b13a 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 0xb89fd4e5 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0xc1365a5b atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xd1a3e5e1 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xe5a5b263 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xe8e89a4d atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xecb44cda atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xae4c00b0 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xdc7cd2de atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xddccae59 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xf297775a deregister_atm_ioctl EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xfb7bd188 atm_dev_release_vccs +EXPORT_SYMBOL net/ax25/ax25 0x0ccfcb02 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 0x4502c65a asc2ax EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x68056399 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x80f0c41e ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x8c882580 ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x9e53db6a ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0xa3f3e96a ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0xaa91e91a ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xb5e2882a ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x9d9cfbf4 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xaefabb83 ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd38df767 ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xe70e54f4 ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xf7616994 ax25_listen_release -EXPORT_SYMBOL net/bluetooth/bluetooth 0x064b9baa bt_procfs_cleanup +EXPORT_SYMBOL net/ax25/ax25 0xf6e8d027 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xfb760b35 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xfccb3e33 ax25_linkfail_release +EXPORT_SYMBOL net/bluetooth/bluetooth 0x045832d2 hci_register_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x07cb6da0 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ccf90a1 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x168950d7 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b48129f bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x19a8420a bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x19d829f7 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f5b1696 hci_alloc_dev_priv EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2534839f hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x269cb93c bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x26e90081 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3964ff8a __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x398815bc hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3afde4a7 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x41d449a8 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x42a64766 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4a37b787 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d00e776 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4dbd1ae9 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x50d9ed69 hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0x541064e2 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x57ac64de bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x64db47af hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6988a0e3 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x226dc514 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x28358bed __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2cdb56ff bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x354ee27a bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x36317e55 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3b198bb6 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x407acd92 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d43aba0 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x51d49e8d hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x58f6c311 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x59d25746 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b4663c7 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5d7fb32a l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x64594370 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x730f1299 hci_set_hw_info EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7af65d6f bt_sock_reclassify_lock EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c4cfba7 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x86370c85 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8d08796f l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7db4e56d hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8527fca4 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x89f4d0c1 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8bca44aa bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fdb03f6 hci_suspend_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9965e3d5 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9a73bad8 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f1c1014 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa1efb018 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8954963 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa9b812c8 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xab2018a4 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf4ac215 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb97098e0 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbe015564 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf9a0e75 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2b6d876 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2e59f8e hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc8fba17a bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd321c7f9 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x95092741 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x958c1c56 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9b8de406 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f451d33 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa00c3a97 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4f44e4e hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa75629b2 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa9d7bd44 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbcc552b9 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc372f3ab hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0b3de40 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6bdb63f bt_sock_register EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdb5ba6c9 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc0b7531 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdcb0b9c3 l2cap_conn_get EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xddb3d864 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe9e9121b hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xec0b1a15 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf9b7f805 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfc3aa0ef bt_accept_dequeue -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4839fbd8 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x991a6bdf ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb2dfc535 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc03aa0d1 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdc1cc6db ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf51ae08e ebt_register_table -EXPORT_SYMBOL net/caif/caif 0x1096f1e8 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe16cb9aa bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe3dfe5a7 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6d47e71 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xef7d474e bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf23d6f97 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xffbb54af bt_accept_enqueue +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3a7cf393 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc2751140 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd0cab7c0 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe54eead7 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xfc5b911a ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xfcb2c51f ebt_register_template +EXPORT_SYMBOL net/caif/caif 0x01995077 caif_disconnect_client EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2157bd99 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 0x4393d459 caif_disconnect_client EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x6aff45d5 caif_connect_client EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x925f005d caif_connect_client EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb1cbe40f caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xd1302f20 caif_enroll_dev -EXPORT_SYMBOL net/can/can 0x1f2e1b33 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x3b15c9d0 can_sock_destruct -EXPORT_SYMBOL net/can/can 0x68fe2a49 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x7427994a can_send -EXPORT_SYMBOL net/can/can 0x8dd8692e can_rx_register -EXPORT_SYMBOL net/can/can 0xb5f975f4 can_proto_register +EXPORT_SYMBOL net/caif/caif 0xc60bf8c7 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xce3a3731 get_cfcnfg +EXPORT_SYMBOL net/can/can 0x01fc181a can_send +EXPORT_SYMBOL net/can/can 0x1f326f04 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x3173dfb7 can_proto_register +EXPORT_SYMBOL net/can/can 0x39a982b7 can_sock_destruct +EXPORT_SYMBOL net/can/can 0xd04713fd can_rx_unregister +EXPORT_SYMBOL net/can/can 0xf27a5fc5 can_rx_register EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x053fa80e osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x06ee0f10 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x0765318a osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x0916c498 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x0a36ef5b ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x0b1fb1f5 ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x13310eae ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0x1350fed0 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x071e0af1 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x09147fb5 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x0b1bbb41 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x0edb8f34 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x0fa0e2c8 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x114f3e29 ceph_auth_invalidate_authorizer EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x15a2a523 osd_req_op_alloc_hint_init EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x165ce2a8 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x166c0fac ceph_con_init EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x1a0fe3f6 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x1a6bf025 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x19e06d23 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x1c69f29d ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1f6e4dbc ceph_client_gid EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x212810f3 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x21dc5cde ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x24652174 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x29dc68a6 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x218ba984 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x24d5a5aa ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x26177354 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x27836b77 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x286dcf17 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x2878471b ceph_osdc_maybe_request_map EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2bc16069 ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0x2e82a97f ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x303218b5 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x34e3844a ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x373ddb2b ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x376031aa osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x379cb283 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x38c20f96 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x2d66aa15 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x2e516501 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x343cf24e ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x356c111d ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x358dd4d8 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x35a94c3c ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x35d123fa ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x374d4323 ceph_parse_mon_ips EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3b9e34a9 ceph_monc_renew_subs EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3da6ccb7 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x3e6dda94 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x3efc7132 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x3ca039c5 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3d3fa9dd osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x3dd2b078 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x3ffb9ee8 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x4023308f ceph_osdc_unwatch EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x438c391f ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x45751297 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x42f5a778 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x43870c41 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x44669c4d ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x448a57e2 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x45f8ebcb osd_req_op_xattr_init EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4b6085ea osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x491aaac5 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x4acf6830 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x4be6d4ff ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x4eae0234 ceph_msg_data_add_pages EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x514cbb3d ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x5324702c __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x536cf84a __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x54d71d49 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x5735c0d7 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x5783f3ae osd_req_op_extent_init EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5adb3927 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x5833119b ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x589ce008 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x5a97c358 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x5aaabea3 ceph_osdc_notify_ack EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5d6ddfba ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x6164a7c1 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x6203a633 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x60215789 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x6095f443 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x6118c31c osd_req_op_cls_request_data_bvecs EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x63fdeb6d ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x63be545a ceph_copy_to_page_vector EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6bd500f4 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x6d9ea45c ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x6dc7bf6c osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x6dce9f2a ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x7112c526 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x7325817c osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x743d4f00 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x7690c3ca ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x76f09032 ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0x7bfbb69c ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x7d13a3b0 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x814fe117 ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x838b00a7 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x84ec7499 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x86858178 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6cc3cf02 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x6dfbdf87 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x720d3ee8 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x76c6988f ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x7eb6fc5c ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x839dba36 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x841c25ce ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x867e32c4 ceph_con_open EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x878012ef ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x8cbc89ff ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x91a08cb1 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x886c8935 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x8b1f12aa ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x8c155c38 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x8d9d2d68 ceph_auth_verify_authorizer_reply EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x948bee41 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x948fbcb4 ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0x986c174e osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x93c7d46b ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x9456e467 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x9800f3a2 ceph_cls_unlock EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9d6f8556 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x9e1ab510 ceph_auth_is_authenticated 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 0xa1f529a9 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xa43d79bc ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xa0a6fb3d ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0xa57e84b3 ceph_msg_data_add_pagelist EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa957f91a ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0xaa04a81b osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xab338a1b ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xad354dde ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xa89735aa ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xa8f26672 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xad62edd9 ceph_monc_validate_auth EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xaefb24c2 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xae99f2b9 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xaef8c21c ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xafa4220e ceph_osdc_alloc_request EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xafc84d38 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0xb4f2c98d ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0xb1ad3131 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xb2ba825d ceph_put_page_vector EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb893ba1c ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xb9ce99fd ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xba0350bc ceph_osdc_wait_request EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xc19c0f61 ceph_cls_set_cookie EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc8efbad9 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xca63440e ceph_osdc_notify EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xca9d6533 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xceb93e7f ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xcedfe6ea ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xcfb0c47a ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xce7f1edf ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xcf1596a3 ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd66e071e ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xd6bbb721 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xd6e8c0ef ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0xd8d9e8ad osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xd9092ddc ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0xd9ad37ce ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xdb1ec9a9 ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0xdbc64b41 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xdc5cad73 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0xdd33f7bf osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xdd824fb0 ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0xdf2351c5 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd521ea01 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xd55687b2 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xd6898765 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xd724c43f ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xdc190ce5 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xdd2e0284 ceph_osdc_flush_notifies EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xdfd6435b ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xe2949788 ceph_monc_get_version EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xec0e58a0 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xeca5e4f9 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xe9d1d5f4 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xeb92cd22 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xecfcf21c ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xee0524d5 ceph_osdc_call EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents -EXPORT_SYMBOL net/ceph/libceph 0xef062936 ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xef25e9bc osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xef8f3f47 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xef5f1f5c ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xef85c8c2 ceph_monc_init 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 0xf1eb6bf0 ceph_auth_handle_svc_reply_done EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank -EXPORT_SYMBOL net/ceph/libceph 0xf2ba094a ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0xf358d0e8 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xf6a43d8b ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0xf8a44046 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0xf9561a4f ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xf95efab2 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0xfe83474d ceph_msg_data_add_pages -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x853075ee dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xf60c23d4 dccp_syn_ack_timeout -EXPORT_SYMBOL net/hsr/hsr 0x0625b2ff hsr_get_version -EXPORT_SYMBOL net/hsr/hsr 0xe1bc7e43 is_hsr_master -EXPORT_SYMBOL net/ieee802154/ieee802154 0x11a62f15 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x488d6c68 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xb3fb8b51 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc72d9c3d wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0xf21f913e wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0xfe5d1f8a wpan_phy_register +EXPORT_SYMBOL net/ceph/libceph 0xf2b7ec43 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xf7bb2eeb ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xfa9f0a71 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xff3b869a ceph_auth_get_authorizer +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x91fa9f59 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xcd502037 dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x24cc009b hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0x94e27964 is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6de978e2 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8ee909db wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x92638bad wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xaf27f3d8 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb5054320 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe7af0ea8 wpan_phy_find EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x7cc95487 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0x923e84a4 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xc4032897 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xef0d557c __fou_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x81e2005a gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1b1edd9c ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4259b139 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc4203058 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd4729fea ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2ad40e7b arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa1a344e0 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa49ba2ca arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe1ef740f arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x00ab7707 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2fd25532 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb22def82 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc999eb83 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x5398a620 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xccd38020 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x5ee3024e udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0b744c32 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x28fa9ff3 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x29bf1f4e ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5299d19e ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7c128f29 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa4568bde ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbdcff90a ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf3147973 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf877203a ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xbbdc3937 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xc9dc4764 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xdeccdb31 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe67851b8 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0xd9440544 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xe868fd53 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x78e95637 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xb525c780 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/lapb/lapb 0x3c9105d2 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x4bfdceac lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x78db5530 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x7aa09e0b lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0xa9f23e43 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xadb642cf lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xdc1f91d7 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xe038ba5d lapb_connect_request -EXPORT_SYMBOL net/llc/llc 0x1909b13a llc_add_pack +EXPORT_SYMBOL net/ipv4/gre 0x6ed350b6 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x993b5aac ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc3b9e515 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe8fcfdc4 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xef470857 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x11fad9ff arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x140cd7b7 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x869441a7 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x894a54cb arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x38910f03 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x656c6935 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb5c4093f ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc799a2d2 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x79e8180d xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x7b2ec057 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x3600e13e udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x102a3b21 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3c73244a ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4809970f ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x75ff7786 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x88f8759c ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8c6780af ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc0eaf957 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc7a87d95 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcf2345bb ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x027d5d55 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3b1d6fa1 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6b918588 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6f20c130 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x7e24215b xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xe962bc6c xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x2ccff088 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x86aa1c8e xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x36af8fbb lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x56c8889d lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x66759d29 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x98c44eb1 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xb22bf950 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xbcae4fb7 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xbd8c641a lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xbf4af96a lapb_register +EXPORT_SYMBOL net/llc/llc 0x0358f932 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x25a67fde llc_set_station_handler EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x3e877d99 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x4b0bedec llc_sap_open EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x70d16efc llc_sap_find -EXPORT_SYMBOL net/llc/llc 0xa0788b9a llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xbb8da465 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xcb853acb llc_set_station_handler -EXPORT_SYMBOL net/mac80211/mac80211 0x04348395 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/llc/llc 0x726fc79f llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x76c21ccd llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xac5383d8 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xac833f66 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xacd87f2e llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x017343bb ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x04606c81 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x0480d07f ieee80211_send_eosp_nullfunc EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x0a720804 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x0ba4344d ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x0c38a73e ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x13e52367 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x155b6b57 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x15f29374 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x160ee465 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x16d1a686 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x06602fcf ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x0caae71f ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x1067e707 ieee80211_beacon_set_cntdwn EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x196fe438 __ieee80211_get_tx_led_name 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 0x1b32e7b6 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x1bbdc776 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x1c959b02 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x1d173a25 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x2007d7a5 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x24756e7d ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x277a34f9 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x342170e1 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x3fed41ec ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x40bf85fd ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x445fdfc8 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x449a1f71 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x44f12c5f ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x457c19f6 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x470fe22a ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x49d2b17c __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x4e4044e3 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x51810175 ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x52c70550 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x5618365a ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x5c2a5eb8 ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x61ec15dd ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x669db1ae rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x6a2f43b8 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x6a84131a ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x74225b27 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x74261232 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x76d9f2b7 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x77520c49 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x792ece6a ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x79345200 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x7a3efc5a ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x7a476f32 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x7f4e0922 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x7fe8b1d2 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x85a0d199 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x965a2a1a ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x98c63313 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x1cda0b9d ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x1f47ec8f ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x1f7fd96c ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x20be5fa6 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x20c727e1 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x226c5946 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x23a94a80 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x2a07e21c ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x2a8c069a rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x2b1fccbb ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x2bbb34ac __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x2d8437bb ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x2f4b5298 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x3084381f ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x33d84a4f ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x3990ac93 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x39c3ba5e ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x3bd9a199 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x3e91dccf ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x3eae2daa ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x42d28b89 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x440611e5 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x45a25ce4 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x48718aa6 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x4a5b75c1 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x5025ced2 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x51853333 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x521ef208 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x5471d182 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x5665e984 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x597ad898 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x5e623536 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x610c88af wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x63f3c619 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x66130602 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x663f771d ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x664e46c6 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x6a389b5f ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x6b73ffa5 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x6e23bb6c ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x712eb015 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x738666c0 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x767a9eb7 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x77a73abc ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x7cf2e689 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7e04ff52 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8398881f ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x84fcf303 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x852951c3 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x887dd54d ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x8b5beec9 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x94c2eaae ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x961f80c8 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9743a383 ieee80211_tx_rate_update EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x996c2251 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0xa091a216 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0xa1e9514e ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xa57920b1 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xaceb2fc5 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xb3ea6d99 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0xb426f003 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xb48537c4 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xb5b4479f ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xb6b99492 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xb6bf8093 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb87e86de ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xbb25dd0f ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xbeb569fd ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xbf902650 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xc510fd53 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xca0a66b0 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xccf06dcf ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xcd67a4cc ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xcd9bab67 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xcee44561 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xcf011c7d ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0xd2cee0d8 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xd3025291 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xd33591f4 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xd7cd0811 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xd818325b ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0xda8ff5ee ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0xdba6dab3 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xdc25aaca ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xdc71918f ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xe1c38080 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xe50caff1 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xe55d6f46 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x99ab7192 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x9acd01d7 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0xa44d8283 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xa544d7ad __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xab1b8f3a __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xac40252b ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xae773fbd ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xafd30e63 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xaff23283 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xb000e8f4 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xb058708e ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb312ec9e ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb679dfb6 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xb99a3a66 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xbd53aa66 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xbf0c8196 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xbfb2e4f3 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xc0b229e1 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xc3f90710 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xc61d8f86 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xcd58f845 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xd34d288b ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xd48e9f56 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xd4dab9d6 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xdae960fe ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xdc894042 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xdd3f07e1 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xde52e8e9 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xdecd019b ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xe09bd3e2 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xe0ac1d26 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xe3835b5a ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xe398ce54 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xe5682de4 __ieee80211_get_radio_led_name EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xe6724a3d ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xe6c82a8f ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0xe6cbc44d ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe71fee98 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xe8f1ed25 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xea7e8b65 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0xeaa45d2a ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xf10b5d53 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xf1738c7d ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xf2ddc958 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xf441e98b ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xf487ec5f ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf4f6abe1 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xf5237fa0 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xf76ad9e4 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xfd8edfab ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xfdff7bf9 ieee80211_probereq_get -EXPORT_SYMBOL net/mac802154/mac802154 0x024295ad ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x0269152b ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x48534dc4 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x4cfa56e9 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x77c2fb6f ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x781ad227 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xc0ef0f04 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xcc938b79 ieee802154_unregister_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x18042a3a register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x20be999a unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x33f0eaf1 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6257cc07 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x63f82271 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x66004d63 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6b90990f ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6ff85a9d ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7688c650 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x87e4a4c3 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8b65c3af register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9ea1bf3b ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9f86836e ip_vs_conn_out_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe5dae730 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xebff6a91 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xf0fdb384 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xf81c2f24 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xfbfdb257 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac802154/mac802154 0x03290e44 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x17c374d7 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x41b74bb2 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xbaace520 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xcb54bca1 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xe0eb88a2 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xe3cdfeaa ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe4b65f03 ieee802154_register_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1fde367a ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2bff362a ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3c28c5a2 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x441b67c1 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4f7ba766 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x637cbf96 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7529ed7c ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8a0799b7 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x98a920a6 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbfff6fb9 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcdcd2048 register_ip_vs_app EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd9fe6dc6 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf02eb233 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdebd0f95 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe51e77c8 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe783cb4c unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf547db1a ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x07d2071d nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x73059cfb nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x20bdd717 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x4cf623c0 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x5eb2bf43 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xddce714d nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x3d79bb3a nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x8a81af50 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xad14c8ee nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xd7c85d4f nf_nat_follow_master EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x089d45c9 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x06c90803 xt_unregister_matches EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x2239225f xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x271a23d3 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x234616dd 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 0x5dae0709 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x81f8c683 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x5bb03782 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x8c5f162e xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x95e7da21 xt_find_table EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x9c4ac0e5 xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xb01305ca xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xb854f510 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0xc5573686 xt_find_match EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd362d4c2 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xd74408ba xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd163e0d1 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd7dabab7 xt_register_matches 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 0xe2b9f3dd xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xef9b72fa xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset EXPORT_SYMBOL net/nfc/hci/hci 0x018e3cbd nfc_hci_free_device EXPORT_SYMBOL net/nfc/hci/hci 0x02f56f72 nfc_hci_register_device @@ -5399,237 +5288,237 @@ EXPORT_SYMBOL net/nfc/hci/hci 0xc64fa7a7 nfc_hci_get_param EXPORT_SYMBOL net/nfc/hci/hci 0xd328bd9e nfc_hci_send_event EXPORT_SYMBOL net/nfc/hci/hci 0xd7984597 nfc_llc_stop EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/nci/nci 0x09fb7680 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x1061ff9c nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x10af1284 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x27c0951d nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x2f236232 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x37c35e0b nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x37fe4ef5 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x516df918 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x56c10ee1 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x59324b70 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x5c4c0ad0 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x5e7328da nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x6d4121e3 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x6e35672f nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x80d5c4a6 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x8cbbb1a4 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x8d838197 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x91108a51 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x9f4cce9c nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xa5087d3b nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xa672b93d nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xb1c32047 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xb4162234 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x08509ea4 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x29210f56 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x2c5b6bdc nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x376bf5fb nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x38d71ab6 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x4521c960 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x56642405 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x6652186b nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x78ff43ad nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x8f28ffcf nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x917659b8 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x98222c98 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xa30b4704 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xa5a9db6b nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xafb0362a nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xb17e9011 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xb307ac22 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xb85c0052 nci_hci_dev_session_init EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xcfb48cb2 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xd4f38b4f nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xe515e2a4 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xeb771eb5 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xfb42d897 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xff9d892d nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nfc 0x006a6456 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x18314f7e nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x204b01d5 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x37680219 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x39d84e7b nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x3e86a760 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x4a5b5d59 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x54405f17 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x588b24a0 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x614c9b4a nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x7b5a8a09 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x8d0a4126 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x8def0d55 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x8e9d1a88 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x9a041767 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x9f4cbc38 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xa15325ce nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xa9138875 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xaa9c1d70 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xba02e2ac nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xcd3f807c nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xd11fea9f nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xe69c36ee nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xe9f5c9f2 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xee6ac41c nfc_remove_se +EXPORT_SYMBOL net/nfc/nci/nci 0xc57a2159 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xcd245623 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xd11193fb nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xd862fd0a nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xdd14602f nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xe9c8177e nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xea938893 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xef12c91e nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xf9e3059c nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xfac37f64 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xfb0d5c56 nci_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x06cffcd9 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x0d4860ea nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x1599d459 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x1cbf119e nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x25487a32 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x2f4fc26d nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x4eba239d nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x566df9ff nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x5bcf0c53 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x7785bb6e nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x7c9ded9c nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x8cbed8ca nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x8d2f54f7 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x907dd5a5 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x97a0da36 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xa59c4515 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xbe269af0 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xc12b384b nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xd7b6f8f5 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xe5cfb08c nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xf18c3bea nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xf2a7c243 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xf3c27468 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xf43d5db9 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xfdd8e81b nfc_register_device EXPORT_SYMBOL net/nfc/nfc_digital 0x3d49ba45 nfc_digital_allocate_device EXPORT_SYMBOL net/nfc/nfc_digital 0x4ade558d nfc_digital_unregister_device EXPORT_SYMBOL net/nfc/nfc_digital 0x7d332784 nfc_digital_free_device EXPORT_SYMBOL net/nfc/nfc_digital 0xe0972755 nfc_digital_register_device -EXPORT_SYMBOL net/phonet/phonet 0x395dfd35 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x890c08b0 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x9f0d74ea phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xa11c1ec8 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xaccee14c phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xb192e53e phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xce1c54cc phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xd582021c pn_sock_hash -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0a425f5e rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1ca9be2a rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/phonet/phonet 0x12c514b9 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x2fe99ce2 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x36f978f2 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x3ad1f9fa pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x80e34469 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xa7e04ded pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xd7e1ce5d phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xe310f994 phonet_proto_register +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1159122a rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x170ab5a1 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1ef15158 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x214c8dc6 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2c3e09f1 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2d67c5c2 rxrpc_kernel_recv_data EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x353f36ad rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x425682bf rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5411ff1c rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5d8a1fde rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5d8fa769 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6c633611 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8b68a25a rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9349c51c rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb8c5967d rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbd46e8ff rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc8dde46f rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0xddf2d67e rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe025fdb9 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe43bb641 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xeda74a0d rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xee9b0f03 rxrpc_get_server_data_key -EXPORT_SYMBOL net/sctp/sctp 0xae8c17c6 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x4df19859 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x83eb7bb8 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xa98cbe2a gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x1d1a9d96 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x3a63189a get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0x8dc3ad37 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbe9d1a22 svc_pool_stats_open -EXPORT_SYMBOL net/tipc/tipc 0x3b26f1cb tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0xb3302b8a tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xd94925b4 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xe80a103d tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0xe4c0a2af tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x014b7643 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x0198d57e cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x031e83b8 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x073f7468 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0e316ef9 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x115e732d regulatory_set_wiphy_regd +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3f5ace96 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x52857ffa rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x70f94ee9 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x748e796e rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x857150b5 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8d3de829 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x949602db rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9a9bac39 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa6ea2403 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xaea1fcf1 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf35e4bb8 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf59ce581 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/sctp/sctp 0x4a0d7769 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x24018a1e gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x324cc41b gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xfc4daab5 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x1b48e2d4 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x2f7a67ee xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x745e599e svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xf8d833c4 get_srcport +EXPORT_SYMBOL net/tipc/tipc 0x19342909 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x2ca82fef tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x3be38ba7 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xe2755a1e tipc_dump_start +EXPORT_SYMBOL net/tls/tls 0x1bba8138 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x00874dd2 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x00988210 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x083aab7e cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x09a99fe8 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x0fd83718 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x1130b706 wiphy_rfkill_set_hw_state_reason EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x11fee673 cfg80211_tx_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x160f475c ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x171151bf regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x17d4b46a cfg80211_register_netdevice EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1ae1c246 cfg80211_check_combinations EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1e1fd76a cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x2006b1aa cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x20ab87b5 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x21994708 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x1ec7c0a0 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x2146cf13 cfg80211_rx_assoc_resp EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x24394947 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x249933ff cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0x273bec6f wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x2737c5f8 regulatory_set_wiphy_regd_sync 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 0x2a533087 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x29a5c388 cfg80211_chandef_dfs_required EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x2bf19cac cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0x31b3b59f cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x33c68d69 cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x377c539f cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x385a27f6 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x38b3ae8e cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3c0f6e49 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x2cead017 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x34cd2f34 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x384d8369 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x3b73ef2e cfg80211_rx_unexpected_4addr_frame EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3df6d98f cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x3e15ee0d ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x3e173886 cfg80211_rx_mgmt_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x3e9e0d38 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x3f7d4e3d cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3fad2f98 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x40919198 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x4284c76b cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x404345ac cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x42f77dda __cfg80211_alloc_event_skb EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x468759ac freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x49630a64 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x4a265da1 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x4c439715 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x5a97c37c cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x5b2722bc cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0x5c774cc3 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x46513922 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x465a6908 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x49a4c25f cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x4a546d17 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x4b28989d cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x509f0946 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x50e7c136 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x5151be1f cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x52e8dfcb cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x531c83b7 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x53b6e36f cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x559dd150 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x58d0649c cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x5a6761fc ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x5be926ae cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x601d3a52 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x63a64dc8 cfg80211_rx_mgmt_khz EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x6603b126 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x68dd45b1 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x69235998 cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x696f7a1a cfg80211_tx_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6abcc6a1 wiphy_rfkill_start_polling EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6f36851d cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x74085b08 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x74db8365 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x75337fc1 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x75e59b30 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x6fca98b2 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x70430e4d cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x72f80848 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x74c709e7 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x76a50f9b cfg80211_ready_on_channel EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x7a93616c cfg80211_get_station EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x7ae9ddc4 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x7afe62ec ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x7b6c6e5b cfg80211_report_wowlan_wakeup EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7dbc73ca wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x7ea15e27 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x7eece64b cfg80211_chandef_usable EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x8380f812 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x868fa618 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x8881d457 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x8d5c6f8b cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x8e4a2115 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x8eaf75a9 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x8f7d8304 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x81c77839 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x8207af09 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x82082baa cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x82b282f8 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x8a51e3c5 cfg80211_roamed EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x903bc2b8 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x91cf7c13 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x94ab08a7 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x974485b6 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x9b9c9b94 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8fe13c0e wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x962942d8 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x991661ae cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x9b523424 wiphy_new_nm EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9d9388cf cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x9f91feb4 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xa95f2c85 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x9d858ebd cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x9dcd3df8 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9ec330fa cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xa3469282 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xa4900892 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0xa539bd80 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xaf80f533 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xb0b04710 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xb29dae05 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xb630394b __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xb72317e1 cfg80211_sta_opmode_change_notify EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xba4689bd wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xbc7a02a0 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xbe1b4f99 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0xc11049dd cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xba75c1e8 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xbe2e7de7 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xbe611253 ieee80211_data_to_8023_exthdr EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc4287354 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xc4ec8fa2 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xc50a2f12 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xc512059a cfg80211_conn_failed EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xc899c63a cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xca0bd740 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xcb885daf cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xcbe9271a cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xc78a7cc9 freq_reg_info EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcc479e39 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xcfe7160b cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xd07709e8 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xd4641043 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xccef1f6e regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xd21d10ee cfg80211_notify_new_peer_candidate EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd6648691 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xd6da9705 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xd7de02d3 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xdadd7389 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xd67a72ac cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xd694ed03 cfg80211_ch_switch_started_notify EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdd3ed846 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xe09ef05d cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xe0de9eee wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xe1b4d1db wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0xdd622dad cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xdea1a7e1 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xe113d349 cfg80211_rx_spurious_frame EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0xe4ca8855 cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xe527c54c cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0xe7ac5a23 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xe8a0c663 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xe9365b7b cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0xea678cdb cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xebf61773 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xed2b482b regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xe511d35d wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xe5c6abca cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xe605e712 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe6b74cff cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xe76499f5 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe94dab7e cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xe9edb10f wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xef1f80f0 cfg80211_inform_bss_data EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf248e148 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xf413860c cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xf4ea0d01 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xf394da32 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf48da021 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xf4ba2091 get_wiphy_regdom EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf5d76400 cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/lib80211 0x2424c6ff lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x5705052c lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x60ed9ebc lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x97e34aaf lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xb376203d lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xe41ff763 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/cfg80211 0xf740434e regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xf80dd778 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf811ab33 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf95ea278 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xfca9d8ce cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/lib80211 0x0b5fde8c lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x43fe6899 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x792ca340 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x870e61d3 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xfa0311b9 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xfa2cfdab lib80211_unregister_crypto_ops EXPORT_SYMBOL sound/ac97_bus 0x39b38bf6 ac97_bus_type EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x366b9814 snd_mixer_oss_ioctl_card EXPORT_SYMBOL sound/core/seq/snd-seq 0x0207d39a snd_seq_kernel_client_enqueue @@ -5856,32 +5745,32 @@ EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbdeb954d snd_vx_check_reg_bit EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc6f47727 snd_vx_setup_firmware EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf4e17a83 snd_vx_load_boot_image -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x13591344 amdtp_stream_pcm_prepare EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1a48caa3 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1c7bda51 amdtp_stream_pcm_abort EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x298710bd amdtp_stream_set_parameters EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2a25a5e7 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x35f87aeb amdtp_stream_add_pcm_hw_constraints EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3819be06 fw_iso_resources_init EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x39cab964 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x49f64693 amdtp_stream_get_max_payload EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4cbfda19 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x50ce098d amdtp_stream_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5b997544 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6c369822 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6026032c amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x683ed19d amdtp_stream_init EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6d57615d avc_general_get_plug_info EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6d88192d snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ee8ef66 amdtp_stream_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ef80292 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8049e55e amdtp_stream_get_max_payload EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8ed1cbb4 fw_iso_resources_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8f4c97dd fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa074e1f6 amdtp_stream_add_pcm_hw_constraints EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa183dd43 cmp_connection_establish EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa9d5bccc cmp_connection_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb2fc6a6b cmp_connection_reserve EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc5df7e8a avc_general_get_sig_fmt EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc61ca896 iso_packets_buffer_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc6591b44 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc9ccf1cb amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc9972813 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd092288a amdtp_stream_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd590021c fw_iso_resources_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd5b79bbc fcp_avc_transaction EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xde8305e5 avc_general_set_sig_fmt @@ -5988,7 +5877,7 @@ EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbebf230b snd_trident_write_voice_ EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe3877b05 snd_trident_stop_voice EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x66a93fd8 adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x0f657603 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x336922e6 wsa_macro_set_spkr_mode EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x0061c0b4 pcm3060_regmap EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xbf0b467c pcm3060_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw @@ -5999,75 +5888,75 @@ EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xa5fd43f7 aic32x4_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xd376a306 aic32x4_remove EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x2e4280fb aic3x_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xdb0c8cda aic3x_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x0f070701 wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x378b8051 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 0x71845044 wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x4156a11b 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 0x95a6720b 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 0xc0e3d9aa wcd_dt_parse_mbhc_data EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/snd-soc-core 0x63d87a55 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x045f3b33 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0e620aba sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1ae7304c sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/snd-soc-core 0x241452b0 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x05ef729d snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0bb6ba2a snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1301c0e9 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1b6e7a05 sof_mailbox_write EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1e38e807 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1dcbe488 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x20c6193f snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x22a72c1a snd_sof_ipc_set_get_comp_data EXPORT_SYMBOL sound/soc/sof/snd-sof 0x22b10ed8 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x22f74a14 sof_pcm_dai_link_fixup EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23b400ba snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x27c12cdb sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c94f455 sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2e34277d sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x33b3a50c snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x37471087 snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3a0652a1 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x43bc8df5 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x441ef446 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2ed372f0 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x39a761ed sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3a7181e9 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3fb20b5f snd_sof_ipc_init EXPORT_SYMBOL sound/soc/sof/snd-sof 0x465ccb9e snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x504bf2b0 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x52ab27f0 snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x52ff0159 snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x57df569c snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5bcdc3e0 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5c859603 snd_sof_ipc_valid EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5d55f377 snd_sof_create_page_table -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5e058050 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5e6dcef9 sof_machine_register EXPORT_SYMBOL sound/soc/sof/snd-sof 0x60d17dbb snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6e2c6dc3 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x62628ff0 snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x627c6e54 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6698fb46 sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6950c818 sof_dai_get_mclk EXPORT_SYMBOL sound/soc/sof/snd-sof 0x70cceca7 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x714f90e5 snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7657f525 snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7dd32ec2 snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7ec7c52b snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7fce368f snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x76f47773 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x77abd3e3 snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7905476c snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7c8ee4f9 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x80b163c9 snd_sof_dsp_mailbox_init EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8133ac57 snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8a36e06c snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8ab94c29 snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8e49b975 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x90b2d9fc sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9371c8f5 snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9a77bb5e sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa208c3da sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa4ba7d17 snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaa1f8200 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x814a2c0f snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x81aba6f0 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x864f791c snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x866f6cc9 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8979b0ef snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa50a1fd7 sof_machine_check EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab433c42 snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaba0fed3 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab57bd56 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab5f9394 sof_block_write EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb1150ca2 snd_sof_pcm_period_elapsed EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb16483db snd_sof_prepare EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb2372c05 snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb23a28fd snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb405b2fa snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbb7ca68f snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbe14bca3 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc3e1664f snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc4621289 snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc5f70fc8 snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc9fdbfa8 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xca8d50b3 snd_sof_load_topology EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe38d3e60 sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe4f80241 snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe76676b9 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xea040cad snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xea737863 snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd0cd8266 snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd363b848 snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd4e5dfc0 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd77df1bf sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd9719be0 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe9df3d50 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeb0cb54c snd_sof_run_firmware EXPORT_SYMBOL sound/soc/sof/snd-sof 0xed04342a snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xef095d8a snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf3d4455b sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf3e8be6f sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf598ebdb snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xed78836a sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf173de9a snd_sof_fw_unload EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer EXPORT_SYMBOL sound/soundcore 0x835c5458 register_sound_special_device EXPORT_SYMBOL sound/soundcore 0x967d189a register_sound_special @@ -6097,28 +5986,24 @@ EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xac1a9719 __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 0x0008fbe8 tcp_make_synack EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf EXPORT_SYMBOL vmlinux 0x00155fbe __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x0028c0bf vme_irq_free -EXPORT_SYMBOL vmlinux 0x002f2d3d tcp_conn_request +EXPORT_SYMBOL vmlinux 0x00185372 pneigh_enqueue EXPORT_SYMBOL vmlinux 0x0032e3e3 bio_add_page -EXPORT_SYMBOL vmlinux 0x006cd971 generic_write_checks -EXPORT_SYMBOL vmlinux 0x0076e17c security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0x0087a3ea import_iovec EXPORT_SYMBOL vmlinux 0x0091ac35 ram_aops EXPORT_SYMBOL vmlinux 0x009ba573 hdmi_infoframe_log EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode +EXPORT_SYMBOL vmlinux 0x00a550a5 ppp_unregister_channel EXPORT_SYMBOL vmlinux 0x00a8209d is_nd_pfn -EXPORT_SYMBOL vmlinux 0x00ac6ddd tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x00b1922b tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00bb427a udp_seq_stop -EXPORT_SYMBOL vmlinux 0x00d6b70a inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x00cd54e7 tcf_idr_search EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00d90498 phy_stop +EXPORT_SYMBOL vmlinux 0x00e06fc3 km_new_mapping EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x01018708 xfrm_init_replay EXPORT_SYMBOL vmlinux 0x010a8765 eisa_bus_type +EXPORT_SYMBOL vmlinux 0x01105576 freezing_slow_path EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub EXPORT_SYMBOL vmlinux 0x0145ca79 pci_release_regions @@ -6128,385 +6013,361 @@ EXPORT_SYMBOL vmlinux 0x01641931 acpi_device_set_power EXPORT_SYMBOL vmlinux 0x0167a01a agp_generic_create_gatt_table EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x017fb11d netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0x018301cd make_kgid EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x018e8642 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x019091b0 filemap_fdatawrite EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks EXPORT_SYMBOL vmlinux 0x01a8b9e6 input_grab_device EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark -EXPORT_SYMBOL vmlinux 0x01b8b3e6 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x01bbc461 tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note EXPORT_SYMBOL vmlinux 0x01e97374 fb_show_logo -EXPORT_SYMBOL vmlinux 0x01ee4bd3 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x01ed36a6 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x01fdc2f1 mmc_remove_host EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x0219aeb9 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x021f27e1 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x02202875 __lock_sock_fast EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x023800f6 ip6_err_gen_icmpv6_unreach EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu -EXPORT_SYMBOL vmlinux 0x023f9020 netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0x0240bbba devm_pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x024acf68 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x024aebc3 fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0x02725ecb vfs_readlink +EXPORT_SYMBOL vmlinux 0x025ed336 skb_ext_add EXPORT_SYMBOL vmlinux 0x0272fc45 unregister_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0280f462 tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0x028a9d8d tty_unthrottle EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02a6b001 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x02ac02be unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x02a67ad8 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x02a98cc3 ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer EXPORT_SYMBOL vmlinux 0x02bd25d7 clocksource_unregister EXPORT_SYMBOL vmlinux 0x02c1ed80 seq_puts -EXPORT_SYMBOL vmlinux 0x02c2e242 tcp_parse_options EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x02d32122 vfs_mknod +EXPORT_SYMBOL vmlinux 0x02dd783f memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0x0301efd5 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x031bcdc6 mmc_cqe_request_done EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x033b748d jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x0343f5a8 blk_rq_append_bio EXPORT_SYMBOL vmlinux 0x03558161 tty_port_init -EXPORT_SYMBOL vmlinux 0x0359265d mmc_remove_host 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 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x038ff589 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x039543cd inet_getname EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x039bbc77 key_move -EXPORT_SYMBOL vmlinux 0x03a25d9f fiemap_prep EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x03c3be6f security_task_getsecid_subj -EXPORT_SYMBOL vmlinux 0x03c5fae5 flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x03d9e65d blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x03e3623f clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x03e3ed08 sock_no_sendpage EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0421ac77 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x040a786a neigh_app_ns +EXPORT_SYMBOL vmlinux 0x04312ed8 __page_symlink +EXPORT_SYMBOL vmlinux 0x0432ec31 lookup_one_len +EXPORT_SYMBOL vmlinux 0x0438a1fa __dev_set_mtu EXPORT_SYMBOL vmlinux 0x0440b430 iov_iter_init EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x047fa4f9 __hw_addr_ref_unsync_dev EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x04961214 migrate_page_states +EXPORT_SYMBOL vmlinux 0x0496fe1b tcp_check_req +EXPORT_SYMBOL vmlinux 0x04a44da4 readahead_expand EXPORT_SYMBOL vmlinux 0x04ac84b8 param_set_ulong -EXPORT_SYMBOL vmlinux 0x04b3b9df __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x04b6833c inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x04ad8175 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x04b80f50 skb_checksum_setup EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset -EXPORT_SYMBOL vmlinux 0x04c9df08 filemap_page_mkwrite EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04ed80f3 sock_no_getname EXPORT_SYMBOL vmlinux 0x04f7ab17 devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x04f9933e udp6_csum_init +EXPORT_SYMBOL vmlinux 0x050678cc kern_path EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match EXPORT_SYMBOL vmlinux 0x050cd909 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0x051a7b73 inet_sk_set_state EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0525175e jbd2_journal_get_write_access EXPORT_SYMBOL vmlinux 0x052cda19 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0x053a1cda find_get_pages_contig EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x054ef2c1 generic_file_mmap EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x0573541d ip6_xmit -EXPORT_SYMBOL vmlinux 0x057bafa7 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x059d9f32 bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x05a875b7 skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0x05b51d79 fs_param_is_path -EXPORT_SYMBOL vmlinux 0x05c68a1e xfrm_input -EXPORT_SYMBOL vmlinux 0x05cb2e9b unregister_shrinker +EXPORT_SYMBOL vmlinux 0x05dd5c56 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x05dfd874 kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0x05e638bf deactivate_super EXPORT_SYMBOL vmlinux 0x05f3efdd cdev_set_parent +EXPORT_SYMBOL vmlinux 0x05f871b0 netpoll_send_udp EXPORT_SYMBOL vmlinux 0x06052f8d __memmove EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x06134d31 __scsi_iterate_devices EXPORT_SYMBOL vmlinux 0x061651be strcat EXPORT_SYMBOL vmlinux 0x06224b78 agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x0623bc81 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x0624fc91 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x0628a4cb tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x06252ab0 ethtool_notify EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06407792 netpoll_setup EXPORT_SYMBOL vmlinux 0x0646eac6 cdev_add -EXPORT_SYMBOL vmlinux 0x065bc227 dev_load -EXPORT_SYMBOL vmlinux 0x0660814b inet_listen +EXPORT_SYMBOL vmlinux 0x064f4d3e scsi_print_command +EXPORT_SYMBOL vmlinux 0x06544ef6 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x066168a9 __generic_file_write_iter EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul EXPORT_SYMBOL vmlinux 0x0699de2e bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x069e9944 skb_vlan_pop EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 -EXPORT_SYMBOL vmlinux 0x06bd334e skb_free_datagram +EXPORT_SYMBOL vmlinux 0x06b6cc20 phy_device_remove EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen EXPORT_SYMBOL vmlinux 0x06bf8ac5 get_agp_version EXPORT_SYMBOL vmlinux 0x06c86082 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x06cdd218 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x06d9ea6c inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x06d881d1 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x06e2f755 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x06e8d29b phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x06fc5eae flow_rule_match_mpls EXPORT_SYMBOL vmlinux 0x07038e9e seq_release_private EXPORT_SYMBOL vmlinux 0x0706edf9 vga_switcheroo_lock_ddc EXPORT_SYMBOL vmlinux 0x0713288a __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x07155df3 mptcp_subflow_reqsk_alloc EXPORT_SYMBOL vmlinux 0x071ddef8 set_pages_array_wc EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x07375bee dev_uc_sync EXPORT_SYMBOL vmlinux 0x0737dfa2 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x07418e21 generic_parse_monolithic EXPORT_SYMBOL vmlinux 0x0742f656 devm_of_iomap EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x0747e4e4 generic_ro_fops EXPORT_SYMBOL vmlinux 0x0754d567 generic_iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0x075509c3 qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0x0760cd96 fault_in_iov_iter_writeable EXPORT_SYMBOL vmlinux 0x0763a55d fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x07737c48 tcp_v4_connect EXPORT_SYMBOL vmlinux 0x07748724 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x0776447f neigh_changeaddr EXPORT_SYMBOL vmlinux 0x077dd12f input_close_device -EXPORT_SYMBOL vmlinux 0x07832628 netlink_set_err +EXPORT_SYMBOL vmlinux 0x07872d60 jbd2_journal_get_undo_access EXPORT_SYMBOL vmlinux 0x078b1e38 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x078c4abb generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x079ec602 phy_validate_pause -EXPORT_SYMBOL vmlinux 0x079edc1f inet_release +EXPORT_SYMBOL vmlinux 0x078ef9d2 __SCK__tp_func_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07b83c98 vfs_fsync +EXPORT_SYMBOL vmlinux 0x07b4d1df scsi_remove_host EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit EXPORT_SYMBOL vmlinux 0x07ce0401 configfs_register_default_group EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x07e0ba82 skb_seq_read -EXPORT_SYMBOL vmlinux 0x07e50684 skb_flow_dissect_hash EXPORT_SYMBOL vmlinux 0x07ef23ec devm_get_clk_from_child EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace EXPORT_SYMBOL vmlinux 0x07f5e2cc pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x07f71375 scsi_print_result EXPORT_SYMBOL vmlinux 0x07fbb93e __serio_register_port -EXPORT_SYMBOL vmlinux 0x07ff77a0 do_clone_file_range EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched -EXPORT_SYMBOL vmlinux 0x0804a5bd tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x0805b99b sk_send_sigurg EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key EXPORT_SYMBOL vmlinux 0x080a86cc blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x080af12b scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x080fd795 xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0x08118637 remove_proc_subtree EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x085301b8 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x0844f911 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x08514b3f ip6_frag_next EXPORT_SYMBOL vmlinux 0x086777e4 vfio_unregister_notifier -EXPORT_SYMBOL vmlinux 0x08699149 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x086a4eaf xfrm_find_acq EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x0885fd07 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x08a3576e unlock_page EXPORT_SYMBOL vmlinux 0x08a703f8 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x08b888ae inet_add_offload -EXPORT_SYMBOL vmlinux 0x08de7fa1 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x08d2239e ll_rw_block EXPORT_SYMBOL vmlinux 0x08f330dc csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x08f5cbf2 vfs_fadvise -EXPORT_SYMBOL vmlinux 0x0922ff94 alloc_fcdev EXPORT_SYMBOL vmlinux 0x092354bf ioc_lookup_icq EXPORT_SYMBOL vmlinux 0x09236407 input_register_device +EXPORT_SYMBOL vmlinux 0x0928a3d5 xp_dma_unmap EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x0930d86e netif_receive_skb EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x0952a547 i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x0953e0cf flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x0965545e mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x0965d8c3 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x09574ad9 put_devmap_managed_page EXPORT_SYMBOL vmlinux 0x096780d8 pci_ep_cfs_remove_epf_group EXPORT_SYMBOL vmlinux 0x096a4727 acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x0971cfa3 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x09735355 read_cache_page_gfp EXPORT_SYMBOL vmlinux 0x097636c7 pnp_register_driver EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies EXPORT_SYMBOL vmlinux 0x097c5c8d agp_free_memory +EXPORT_SYMBOL vmlinux 0x09821954 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x09839288 dev_trans_start EXPORT_SYMBOL vmlinux 0x09854c87 fb_is_primary_device EXPORT_SYMBOL vmlinux 0x0985b72f input_set_keycode EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack EXPORT_SYMBOL vmlinux 0x09af3976 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x09bdffdd nf_log_set EXPORT_SYMBOL vmlinux 0x09c29df1 pnp_get_resource -EXPORT_SYMBOL vmlinux 0x09c9cd9e genphy_resume EXPORT_SYMBOL vmlinux 0x09d42111 fault_in_iov_iter_readable EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a19c04a inet_add_protocol EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0x0a29d9c2 ping_prot -EXPORT_SYMBOL vmlinux 0x0a59eadf netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x0a5c32be call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x0a248d2c copy_string_kernel +EXPORT_SYMBOL vmlinux 0x0a3ca258 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x0a4d904e dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x0a508ca9 generic_ro_fops EXPORT_SYMBOL vmlinux 0x0a65d625 fscrypt_encrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0x0a68165d seq_printf EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a85147c ipv6_getsockopt EXPORT_SYMBOL vmlinux 0x0a865b32 rproc_alloc EXPORT_SYMBOL vmlinux 0x0a894f55 seq_read_iter -EXPORT_SYMBOL vmlinux 0x0a8b3dc8 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x0a8b6151 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x0a9b9762 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0x0a9ba04f srso_untrain_ret EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace EXPORT_SYMBOL vmlinux 0x0ac9894d d_instantiate EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0b0006e2 tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0x0b0af899 send_sig +EXPORT_SYMBOL vmlinux 0x0b08cee1 __SCK__tp_func_kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x0b12091e dm_table_get_size EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b1ee8ac nobh_write_begin EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc EXPORT_SYMBOL vmlinux 0x0b2766a7 simple_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x0b327dc8 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0x0b39f85e inet_put_port EXPORT_SYMBOL vmlinux 0x0b637410 cr4_update_irqsoff EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b86b0ca end_page_writeback -EXPORT_SYMBOL vmlinux 0x0b8f822a neigh_table_init +EXPORT_SYMBOL vmlinux 0x0b7b1c54 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x0b8cfe3e follow_up EXPORT_SYMBOL vmlinux 0x0b97090c ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x0b97476b netif_device_detach EXPORT_SYMBOL vmlinux 0x0b9af17a dma_resv_init -EXPORT_SYMBOL vmlinux 0x0b9b2076 qdisc_put 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 0x0bd80042 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x0be732f8 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x0bdd3748 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x0bf7444e flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c09e49d xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0x0c23a644 __break_lease +EXPORT_SYMBOL vmlinux 0x0c1114e8 kernel_sendpage_locked EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq EXPORT_SYMBOL vmlinux 0x0c2df957 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x0c350166 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x0c31a207 scsi_remove_device EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh EXPORT_SYMBOL vmlinux 0x0c49e3e7 dma_map_resource EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c6717c3 genlmsg_put EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c812a95 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x0c823c7c seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0x0c876f8d unregister_quota_format -EXPORT_SYMBOL vmlinux 0x0c9b5d8c udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x0c9dc9c9 sock_no_getname EXPORT_SYMBOL vmlinux 0x0cafbcb7 proc_create_seq_private EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0cc727d9 vfs_link +EXPORT_SYMBOL vmlinux 0x0cd526a0 register_netdev EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0cd7c158 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x0cdc3ed5 ipv6_dev_get_saddr EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0cdf0208 skb_clone -EXPORT_SYMBOL vmlinux 0x0ce58fc4 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x0ce7fe28 mdio_find_bus -EXPORT_SYMBOL vmlinux 0x0d01b955 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x0d06ac43 ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d0dffd8 can_nice -EXPORT_SYMBOL vmlinux 0x0d18e7fe proto_register -EXPORT_SYMBOL vmlinux 0x0d21f725 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x0d0d5068 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x0d172b6a __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x0d19d7a5 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x0d37d75e sock_no_ioctl EXPORT_SYMBOL vmlinux 0x0d3c560e proc_symlink +EXPORT_SYMBOL vmlinux 0x0d4cc93c ip6tun_encaps EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d7029a9 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x0d7064a0 xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0x0d891c8f scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0x0d95c675 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x0d95dbec netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x0d9d567b __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x0d67f52b end_buffer_read_sync EXPORT_SYMBOL vmlinux 0x0d9df306 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x0dde35c0 sock_create +EXPORT_SYMBOL vmlinux 0x0db00f19 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x0dc0a8fb __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x0dd230cf fib_notifier_ops_unregister EXPORT_SYMBOL vmlinux 0x0de0bd34 d_add_ci EXPORT_SYMBOL vmlinux 0x0dedf585 find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0x0df65185 open_exec +EXPORT_SYMBOL vmlinux 0x0df7fd01 dst_destroy EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x0e2d01c4 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x0e3f8cbf unix_destruct_scm EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e6baf37 devfreq_update_status EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor EXPORT_SYMBOL vmlinux 0x0e79d161 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x0e90634d may_umount_tree EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init EXPORT_SYMBOL vmlinux 0x0eafb9fd clear_bdi_congested EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0eb81e4f fifo_set_limit +EXPORT_SYMBOL vmlinux 0x0ec2c4da generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free EXPORT_SYMBOL vmlinux 0x0ee37fb2 serio_unregister_driver EXPORT_SYMBOL vmlinux 0x0eecc243 is_nd_btt -EXPORT_SYMBOL vmlinux 0x0ef02eb7 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x0eefdc66 dev_mc_del_global EXPORT_SYMBOL vmlinux 0x0f0692cc fb_set_suspend EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f14e57e release_pages EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f31bebe phy_attach_direct EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f523fb5 ip_output -EXPORT_SYMBOL vmlinux 0x0f575f07 ipv4_mtu +EXPORT_SYMBOL vmlinux 0x0f4ba84d skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0x0f6897c7 proc_mkdir -EXPORT_SYMBOL vmlinux 0x0f77aad5 __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f883e51 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x0f93d652 pskb_extract EXPORT_SYMBOL vmlinux 0x0fa32a7d pci_clear_master EXPORT_SYMBOL vmlinux 0x0fa7a301 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x0fa90dd5 lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fc9f61b tcp_close -EXPORT_SYMBOL vmlinux 0x0fcecf4b inet_del_offload +EXPORT_SYMBOL vmlinux 0x0fb4a5ad writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x0fbb0f4f udp_lib_unhash EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fe086b9 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x0fed737b end_buffer_read_sync EXPORT_SYMBOL vmlinux 0x0ff80f59 zalloc_cpumask_var EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x102a1dab security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x102a7ab6 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x1032782e filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x103ec3f1 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x1046d43d tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x104ce32f __SCK__tp_func_read_msr EXPORT_SYMBOL vmlinux 0x1057a279 bsearch EXPORT_SYMBOL vmlinux 0x1057ea70 devm_nvmem_cell_put EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync -EXPORT_SYMBOL vmlinux 0x107ca049 __hw_addr_sync_dev EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd EXPORT_SYMBOL vmlinux 0x10807511 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x1083a8ee flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0x108b31c5 xfrm_state_update EXPORT_SYMBOL vmlinux 0x10908ff5 param_get_short -EXPORT_SYMBOL vmlinux 0x10a1f2e6 dump_skip EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0x10d56d29 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x10d85d89 __block_write_full_page EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find EXPORT_SYMBOL vmlinux 0x10e4965f param_get_long -EXPORT_SYMBOL vmlinux 0x10e67fad lookup_one_unlocked EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10f79036 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x10e91ef9 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x10ee9327 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x10fc066d __skb_get_hash EXPORT_SYMBOL vmlinux 0x11056919 __frontswap_test EXPORT_SYMBOL vmlinux 0x11077475 seq_write EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x112f317a account_page_redirty +EXPORT_SYMBOL vmlinux 0x1116c197 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x111a7377 inet6_offloads EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x117fe79f inet_sendpage +EXPORT_SYMBOL vmlinux 0x119481fe vme_unregister_bridge EXPORT_SYMBOL vmlinux 0x1197bf4f param_ops_ulong EXPORT_SYMBOL vmlinux 0x11a1a156 bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0x11a95e47 sock_pfree +EXPORT_SYMBOL vmlinux 0x11ab6fc5 default_llseek EXPORT_SYMBOL vmlinux 0x11b76cfd serio_unregister_port +EXPORT_SYMBOL vmlinux 0x11ce54b3 inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0x11d172a9 agp_generic_alloc_by_type EXPORT_SYMBOL vmlinux 0x11d266be rproc_report_crash -EXPORT_SYMBOL vmlinux 0x11d2dccd tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x11dc0a0e noop_qdisc -EXPORT_SYMBOL vmlinux 0x11dfbd4b devfreq_remove_governor EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11e7d42b rtnl_set_sk_err EXPORT_SYMBOL vmlinux 0x11eb121f cdev_del +EXPORT_SYMBOL vmlinux 0x11f01ad9 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x12138fc4 ip_route_input_noref EXPORT_SYMBOL vmlinux 0x12160631 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x1225221f xp_free +EXPORT_SYMBOL vmlinux 0x121b4459 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x1228dd6c wireless_spy_update EXPORT_SYMBOL vmlinux 0x12296ade __quota_error -EXPORT_SYMBOL vmlinux 0x124171d2 path_is_under EXPORT_SYMBOL vmlinux 0x12473328 inode_newsize_ok EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x125174cb inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x126aa0b5 udplite_prot -EXPORT_SYMBOL vmlinux 0x1298b7cc kernel_sendpage -EXPORT_SYMBOL vmlinux 0x129e53ff sk_alloc +EXPORT_SYMBOL vmlinux 0x124ca10c mark_page_accessed +EXPORT_SYMBOL vmlinux 0x1250c752 security_req_classify_flow EXPORT_SYMBOL vmlinux 0x12a1b8e2 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x12a396ba i2c_clients_command -EXPORT_SYMBOL vmlinux 0x12a64036 genphy_c37_read_status EXPORT_SYMBOL vmlinux 0x12a8ff01 set_capacity +EXPORT_SYMBOL vmlinux 0x12b7df04 filemap_range_has_page EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12d38f12 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x12df7c2e skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x12e80b05 module_refcount -EXPORT_SYMBOL vmlinux 0x12ed56a4 sock_init_data_uid EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data EXPORT_SYMBOL vmlinux 0x13110126 request_resource @@ -6515,85 +6376,76 @@ EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data EXPORT_SYMBOL vmlinux 0x132cbba9 pci_write_vpd EXPORT_SYMBOL vmlinux 0x132dade6 md_write_inc EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe -EXPORT_SYMBOL vmlinux 0x13482b82 file_path EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge EXPORT_SYMBOL vmlinux 0x1350b7eb input_unregister_handler -EXPORT_SYMBOL vmlinux 0x135e9173 tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0x1361fb47 md_handle_request -EXPORT_SYMBOL vmlinux 0x136b15d9 find_vma EXPORT_SYMBOL vmlinux 0x136cc48a copy_page_from_iter_atomic EXPORT_SYMBOL vmlinux 0x1372ca61 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x137817f5 get_phy_device EXPORT_SYMBOL vmlinux 0x1379e53c simple_recursive_removal -EXPORT_SYMBOL vmlinux 0x1387a8f5 __netlink_dump_start EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13b917cb blk_get_queue -EXPORT_SYMBOL vmlinux 0x13b951a4 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x13bdeb25 vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user EXPORT_SYMBOL vmlinux 0x13cb5497 d_set_d_op -EXPORT_SYMBOL vmlinux 0x13cf38a6 xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d68bc9 vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0x13f05133 napi_build_skb +EXPORT_SYMBOL vmlinux 0x13d4a713 arp_send EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13fb08cb tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0x13ff0e0f mpage_readahead EXPORT_SYMBOL vmlinux 0x141064f7 input_free_device EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x141635ea phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x1430a0b3 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x14263da4 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x1434b0a5 xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0x1451e91c _copy_to_iter EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table EXPORT_SYMBOL vmlinux 0x14753359 param_get_invbool +EXPORT_SYMBOL vmlinux 0x147d6388 mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x1488bb50 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x149120ac __f_setown EXPORT_SYMBOL vmlinux 0x149b4fba serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x14ae571a register_shrinker -EXPORT_SYMBOL vmlinux 0x14b2e893 ata_print_version +EXPORT_SYMBOL vmlinux 0x14a2a34c unmap_mapping_range EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14cd616c scsi_print_sense_hdr EXPORT_SYMBOL vmlinux 0x14ced76e nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0x14e3f9c4 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x14e8ff10 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x14f6ab65 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x150cb41a twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x150ccdb4 __SCK__tp_func_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x1510151f netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x1506ae19 __scsi_print_sense EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x15208bf9 devfreq_monitor_resume EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x1527e570 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x152823d2 pci_choose_state EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy EXPORT_SYMBOL vmlinux 0x154e09c2 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x155dc04b mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x156384d0 phy_get_pause +EXPORT_SYMBOL vmlinux 0x155193c6 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x155eade2 __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0x1566fb82 kernel_param_lock EXPORT_SYMBOL vmlinux 0x157c85b0 nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0x159c58e9 lookup_one +EXPORT_SYMBOL vmlinux 0x157ced29 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x158bfe3a done_path_create +EXPORT_SYMBOL vmlinux 0x15970ae1 wake_up_process EXPORT_SYMBOL vmlinux 0x15a428b9 elv_rb_find EXPORT_SYMBOL vmlinux 0x15a66331 kobject_set_name +EXPORT_SYMBOL vmlinux 0x15ad09b5 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x15b47c90 genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bc71e3 unregister_filesystem EXPORT_SYMBOL vmlinux 0x15bd5079 devm_ioremap EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15c24071 redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15f6e085 kernel_listen +EXPORT_SYMBOL vmlinux 0x15d91297 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x15f4cc59 nf_ip6_checksum EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x16154490 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x161931d4 phy_print_status +EXPORT_SYMBOL vmlinux 0x161e39f4 seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu EXPORT_SYMBOL vmlinux 0x16307b61 md_flush_request -EXPORT_SYMBOL vmlinux 0x1630c424 sock_bind_add EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x163680e4 __bforget -EXPORT_SYMBOL vmlinux 0x16436e02 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x16530d84 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x164239ed delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x164d6656 dst_discard_out +EXPORT_SYMBOL vmlinux 0x164fd237 sock_no_connect +EXPORT_SYMBOL vmlinux 0x1650f382 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x1654ca53 __nlmsg_put EXPORT_SYMBOL vmlinux 0x1654eeb2 nvdimm_namespace_common_probe EXPORT_SYMBOL vmlinux 0x165d38b1 pci_bus_read_config_byte EXPORT_SYMBOL vmlinux 0x165d8778 blk_mq_tagset_wait_completed_request @@ -6602,120 +6454,143 @@ EXPORT_SYMBOL vmlinux 0x166d11bd input_get_poll_interval EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 EXPORT_SYMBOL vmlinux 0x167f7989 vmap -EXPORT_SYMBOL vmlinux 0x1683d26e sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x1692c17b unregister_netdev +EXPORT_SYMBOL vmlinux 0x16862a38 security_path_unlink EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x169edc64 __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0x169cb16f mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x16a363ed mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x16a38dd8 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x16ab2245 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x16c00b88 tcp_seq_stop EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16dc4e5c __SCK__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e86601 inet_add_offload +EXPORT_SYMBOL vmlinux 0x16facb90 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x17092f44 arp_tbl EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x172376f4 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x17142e9b setup_new_exec +EXPORT_SYMBOL vmlinux 0x1720d89c jbd2_journal_abort EXPORT_SYMBOL vmlinux 0x173086f9 param_get_bool +EXPORT_SYMBOL vmlinux 0x1755c073 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x175a38ec tcf_qevent_dump EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock EXPORT_SYMBOL vmlinux 0x177a82c3 entry_untrain_ret -EXPORT_SYMBOL vmlinux 0x17851f47 set_create_files_as +EXPORT_SYMBOL vmlinux 0x1786c213 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x17a51009 pskb_expand_head EXPORT_SYMBOL vmlinux 0x17b56044 blk_queue_dma_alignment EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event -EXPORT_SYMBOL vmlinux 0x17d0222a __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x17d6c316 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x17e835ef scsi_device_resume +EXPORT_SYMBOL vmlinux 0x17c96b94 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x17ca898b lock_page_memcg +EXPORT_SYMBOL vmlinux 0x17d6003e twl6040_get_pll EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip EXPORT_SYMBOL vmlinux 0x17f813a9 __SCT__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x1803ae5b fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x1815ced9 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x1818be42 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x181f3c6e cookie_ecn_ok EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x1847ecd2 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x1848a8b1 skb_tx_error -EXPORT_SYMBOL vmlinux 0x184b850e kern_unmount +EXPORT_SYMBOL vmlinux 0x1837fef5 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x1844fbf1 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x184fb4ea devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x18528fbf eth_header_cache_update EXPORT_SYMBOL vmlinux 0x1854465f current_time +EXPORT_SYMBOL vmlinux 0x18581024 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x185fccb4 sock_no_bind EXPORT_SYMBOL vmlinux 0x1875519f nd_integrity_init +EXPORT_SYMBOL vmlinux 0x187ac9c0 udp_seq_start EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188be66e vme_dma_list_exec EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 EXPORT_SYMBOL vmlinux 0x1895ba86 iommu_put_dma_cookie EXPORT_SYMBOL vmlinux 0x18a009f4 fscrypt_decrypt_block_inplace EXPORT_SYMBOL vmlinux 0x18a98623 rproc_del EXPORT_SYMBOL vmlinux 0x18ac8de6 param_get_byte EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18c669f1 scsi_change_queue_depth EXPORT_SYMBOL vmlinux 0x18c7ca51 remove_conflicting_pci_framebuffers EXPORT_SYMBOL vmlinux 0x18d832e2 config_item_get EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18eb88ad neigh_update -EXPORT_SYMBOL vmlinux 0x1916f1de unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x19056068 ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0x192ea14f __SCT__tp_func_dma_fence_signaled EXPORT_SYMBOL vmlinux 0x19430227 fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0x1944a87d __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL vmlinux 0x1968699f netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x196e6fe5 __genphy_config_aneg EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt EXPORT_SYMBOL vmlinux 0x198829e4 get_tree_keyed EXPORT_SYMBOL vmlinux 0x19896ed0 fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0x199ecd60 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x19937b3a jbd2_fc_release_bufs EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp EXPORT_SYMBOL vmlinux 0x19ac6353 blk_execute_rq EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c9752e kill_fasync EXPORT_SYMBOL vmlinux 0x19cd86fd iov_iter_advance -EXPORT_SYMBOL vmlinux 0x19cf7de1 write_dirty_buffer EXPORT_SYMBOL vmlinux 0x19d200ec __SCT__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x19da63a1 netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0x19de0bc7 generic_splice_sendpage EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x19e0efb6 skb_append EXPORT_SYMBOL vmlinux 0x19e42a4f vm_mmap -EXPORT_SYMBOL vmlinux 0x19e7a047 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x19e47b05 inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a387159 xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0x1a3c1502 skb_queue_tail EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a4a0064 inode_add_bytes -EXPORT_SYMBOL vmlinux 0x1a577cce cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x1a4a4efa scsi_device_resume +EXPORT_SYMBOL vmlinux 0x1a53a43f nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x1a585d76 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x1a5f14f6 sk_wait_data +EXPORT_SYMBOL vmlinux 0x1a5f3439 kernel_sendmsg EXPORT_SYMBOL vmlinux 0x1a62dc50 pm860x_reg_read EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch EXPORT_SYMBOL vmlinux 0x1a669a5c pmem_should_map_pages EXPORT_SYMBOL vmlinux 0x1a79c8e9 __x86_indirect_thunk_r13 EXPORT_SYMBOL vmlinux 0x1a80e6fb d_hash_and_lookup EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aa235a3 dev_set_mac_address EXPORT_SYMBOL vmlinux 0x1aa9fba0 vfio_dma_rw -EXPORT_SYMBOL vmlinux 0x1aabb424 netdev_pick_tx EXPORT_SYMBOL vmlinux 0x1ab69838 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x1ab80e67 scsi_vpd_lun_id EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ad4fd33 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x1ad9a2de dev_uc_flush +EXPORT_SYMBOL vmlinux 0x1adb5327 genphy_suspend EXPORT_SYMBOL vmlinux 0x1af3bada md_wakeup_thread EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist EXPORT_SYMBOL vmlinux 0x1b03fa79 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x1b1c1a2a tcp_peek_len +EXPORT_SYMBOL vmlinux 0x1b07db30 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x1b1ebed5 may_umount +EXPORT_SYMBOL vmlinux 0x1b1f07d9 keyring_search +EXPORT_SYMBOL vmlinux 0x1b2469e2 __skb_pad EXPORT_SYMBOL vmlinux 0x1b354292 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x1b380aa2 vme_new_dma_list EXPORT_SYMBOL vmlinux 0x1b3cdbae padata_alloc -EXPORT_SYMBOL vmlinux 0x1b467f5c sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x1b5015b4 vm_insert_page -EXPORT_SYMBOL vmlinux 0x1b56a6be xfrm_lookup EXPORT_SYMBOL vmlinux 0x1b575309 agp_enable EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b66acff tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0x1b712bbc generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device EXPORT_SYMBOL vmlinux 0x1b7c03af devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x1b834048 crypto_sha1_finup EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1ba58efa i2c_verify_client +EXPORT_SYMBOL vmlinux 0x1b8edff4 udp_lib_get_port EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc EXPORT_SYMBOL vmlinux 0x1bc26cda input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x1bcb7cb0 __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bdd227a __alloc_skb EXPORT_SYMBOL vmlinux 0x1bf11a70 dm_table_run_md_queue_async EXPORT_SYMBOL vmlinux 0x1bf39f7f __invalidate_device -EXPORT_SYMBOL vmlinux 0x1bfa0617 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x1c336244 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x1bf6323e mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x1c0438d5 skb_abort_seq_read EXPORT_SYMBOL vmlinux 0x1c437d8e mipi_dsi_device_unregister EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler EXPORT_SYMBOL vmlinux 0x1c5abeb7 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0x1c5c33b2 __tracepoint_kmalloc_node EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c807f3b fddi_type_trans +EXPORT_SYMBOL vmlinux 0x1c6a10a1 sync_filesystem EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node EXPORT_SYMBOL vmlinux 0x1ceb309c kill_anon_super EXPORT_SYMBOL vmlinux 0x1cfbceab vfs_get_tree -EXPORT_SYMBOL vmlinux 0x1d0562b3 mmc_gpiod_request_cd EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul EXPORT_SYMBOL vmlinux 0x1d0d02dc get_watch_queue EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask @@ -6723,650 +6598,641 @@ 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 0x1d5bd3f2 ip6_frag_next EXPORT_SYMBOL vmlinux 0x1d60b198 seq_dentry EXPORT_SYMBOL vmlinux 0x1d62bf09 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x1d70ea9f jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0x1d72ec2d dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x1d74467a find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x1d89e19f __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0x1d97a535 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x1d9fdd39 udp6_set_csum EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dd47ccc xp_dma_sync_for_device_slow EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1dd8c8cd flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x1de059e8 find_get_pages_range_tag EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x1dec8bdf sock_edemux EXPORT_SYMBOL vmlinux 0x1e094b3e pnp_possible_config EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data -EXPORT_SYMBOL vmlinux 0x1e12cdb6 inet6_getname EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 EXPORT_SYMBOL vmlinux 0x1e2e1604 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x1e3e4ff8 mmc_card_alternative_gpt_sector EXPORT_SYMBOL vmlinux 0x1e468193 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x1e4b275c vfs_getattr_nosec EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e6e92ae __inet_stream_connect EXPORT_SYMBOL vmlinux 0x1e6f1b87 dma_set_mask EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea5a567 jbd2_transaction_committed EXPORT_SYMBOL vmlinux 0x1eabf210 tty_name -EXPORT_SYMBOL vmlinux 0x1eb5a597 register_filesystem +EXPORT_SYMBOL vmlinux 0x1eb89c7e xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0x1eb8c942 cros_ec_query_all EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1ec109ec security_sock_graft +EXPORT_SYMBOL vmlinux 0x1ec5bac3 napi_complete_done EXPORT_SYMBOL vmlinux 0x1ecdeaf8 input_mt_sync_frame EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ee196d4 jbd2_journal_abort EXPORT_SYMBOL vmlinux 0x1eeeb626 backlight_force_update -EXPORT_SYMBOL vmlinux 0x1f0eb64d phy_attached_info EXPORT_SYMBOL vmlinux 0x1f199d24 copy_user_generic_string +EXPORT_SYMBOL vmlinux 0x1f21e59c __xfrm_decode_session EXPORT_SYMBOL vmlinux 0x1f26ffd7 pnp_unregister_driver EXPORT_SYMBOL vmlinux 0x1f3cf8cf init_pseudo +EXPORT_SYMBOL vmlinux 0x1f3ec2de thread_group_exited EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f7d6ea2 generic_file_llseek -EXPORT_SYMBOL vmlinux 0x1f888497 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x1faa3a36 flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x1fb8ad70 ptp_clock_register +EXPORT_SYMBOL vmlinux 0x1f5bbca9 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x1fa1401f inode_set_ctime_current +EXPORT_SYMBOL vmlinux 0x1fb48928 dev_get_flags EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio EXPORT_SYMBOL vmlinux 0x1fc0cc7c intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0x1fc12687 xfrm6_protocol_register EXPORT_SYMBOL vmlinux 0x1fc5582a fs_bio_set EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fde8f6d netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x1fd9c4d3 sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0x1ff4b66a new_inode +EXPORT_SYMBOL vmlinux 0x1ff5bd19 __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0x1ff62458 generic_listxattr EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x20020a03 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x2002ca9d ip_sock_set_pktinfo EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any EXPORT_SYMBOL vmlinux 0x201394e4 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x20268e51 filp_close -EXPORT_SYMBOL vmlinux 0x20333d9f dev_set_group -EXPORT_SYMBOL vmlinux 0x2033d8cd flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x20422abf phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x2022d3b2 qdisc_watchdog_init EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x2046c4b2 ppp_unit_number EXPORT_SYMBOL vmlinux 0x204af5b5 netlbl_audit_start EXPORT_SYMBOL vmlinux 0x204be206 tty_port_open EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c463c page_pool_release_page EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x2067eafb __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x205e6e60 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x207487f0 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x207c028c udp6_csum_init EXPORT_SYMBOL vmlinux 0x20806cc3 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x20884af5 dev_addr_init -EXPORT_SYMBOL vmlinux 0x209f447f xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20a8b250 fddi_type_trans EXPORT_SYMBOL vmlinux 0x20b7ad66 configfs_unregister_default_group EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu EXPORT_SYMBOL vmlinux 0x20bcbe4f blake2s_compress +EXPORT_SYMBOL vmlinux 0x20c35cb5 dev_set_mtu EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode EXPORT_SYMBOL vmlinux 0x20dff6b4 do_SAK EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20ed6221 __SCK__tp_func_write_msr EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context EXPORT_SYMBOL vmlinux 0x210cdac4 pci_request_regions EXPORT_SYMBOL vmlinux 0x211130c1 alloc_cpumask_var -EXPORT_SYMBOL vmlinux 0x2117795e proto_unregister +EXPORT_SYMBOL vmlinux 0x21183be9 genphy_setup_forced EXPORT_SYMBOL vmlinux 0x21271fd0 copy_user_enhanced_fast_string -EXPORT_SYMBOL vmlinux 0x2134d59a follow_down +EXPORT_SYMBOL vmlinux 0x2139af40 tcp_peek_len EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x2147ce4b jbd2_log_start_commit EXPORT_SYMBOL vmlinux 0x2147e64e blk_queue_io_min EXPORT_SYMBOL vmlinux 0x215ecfa8 pcie_bandwidth_available EXPORT_SYMBOL vmlinux 0x216caaf4 truncate_setsize EXPORT_SYMBOL vmlinux 0x216ec637 agp_generic_alloc_pages EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event +EXPORT_SYMBOL vmlinux 0x218c3e8e mmc_of_parse_clk_phase EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset EXPORT_SYMBOL vmlinux 0x21916574 input_unregister_device +EXPORT_SYMBOL vmlinux 0x21955d80 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x219e9dc7 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x21bbb248 phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21c597cc __tracepoint_kfree EXPORT_SYMBOL vmlinux 0x21d42ce9 nla_append -EXPORT_SYMBOL vmlinux 0x21de7507 eth_gro_complete EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow EXPORT_SYMBOL vmlinux 0x21ec6aac get_tree_bdev -EXPORT_SYMBOL vmlinux 0x21ee0728 genphy_update_link EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x220b8130 reuseport_select_sock EXPORT_SYMBOL vmlinux 0x220eefe5 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x22209f08 xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x2226b814 mipi_dsi_host_register EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list EXPORT_SYMBOL vmlinux 0x2237de88 dquot_acquire -EXPORT_SYMBOL vmlinux 0x22394fc6 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x223c6a66 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x224f69d5 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x2255d265 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x22579dd9 skb_vlan_pop EXPORT_SYMBOL vmlinux 0x225f03aa redraw_screen -EXPORT_SYMBOL vmlinux 0x2265f811 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x2268e8e4 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x227ff5d2 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x2285bdb2 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x2290071f put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0x229484cd netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0x229fc663 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x22aea5b0 mr_dump EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound EXPORT_SYMBOL vmlinux 0x22b923ca dquot_initialize_needed EXPORT_SYMBOL vmlinux 0x22c65798 mipi_dsi_dcs_get_pixel_format EXPORT_SYMBOL vmlinux 0x22d34eb0 dup_iter +EXPORT_SYMBOL vmlinux 0x22dc990f generic_writepages EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier -EXPORT_SYMBOL vmlinux 0x22e76269 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x22df4c9e inode_set_bytes EXPORT_SYMBOL vmlinux 0x22e834db i8042_remove_filter EXPORT_SYMBOL vmlinux 0x22ee65b9 __blk_mq_alloc_disk EXPORT_SYMBOL vmlinux 0x22ef9601 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x22f8ddb3 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x2312dad4 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x23273db4 dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0x23295fe0 __register_chrdev +EXPORT_SYMBOL vmlinux 0x232fe9c5 dump_skip_to EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x2373c340 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x23659feb scsi_target_resume EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x237fd316 xfrm_state_lookup EXPORT_SYMBOL vmlinux 0x2383fb6a acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x23874393 netif_device_attach EXPORT_SYMBOL vmlinux 0x2388ab10 register_quota_format EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short EXPORT_SYMBOL vmlinux 0x238e9048 serio_bus +EXPORT_SYMBOL vmlinux 0x23998e9a skb_split +EXPORT_SYMBOL vmlinux 0x23a4fc9a jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x23a51507 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x23a52694 devm_devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c8a2d1 tcp_seq_next EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23f6900c xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x23e09804 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x23eb1559 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x23ecb51e dev_get_port_parent_id EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node EXPORT_SYMBOL vmlinux 0x2409a078 vga_switcheroo_fini_domain_pm_ops EXPORT_SYMBOL vmlinux 0x240b23a3 component_match_add_release EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24375cae genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x2459881e dst_release_immediate +EXPORT_SYMBOL vmlinux 0x244600f2 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x2455509e dev_mc_unsync EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x2467bd57 security_sb_remount EXPORT_SYMBOL vmlinux 0x246bcb9f phy_read_paged -EXPORT_SYMBOL vmlinux 0x2475b420 __netdev_notify_peers EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x2485a85f __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x249534d0 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x24967a64 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x248c346e xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x249ec85f mdiobus_free EXPORT_SYMBOL vmlinux 0x24a8fc23 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x24cb5c2b dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x24c7de45 nf_log_bind_pf EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x2501967e nf_ct_attach +EXPORT_SYMBOL vmlinux 0x24e63eb9 ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x254ea537 dst_dev_put +EXPORT_SYMBOL vmlinux 0x25364eb6 tso_count_descs +EXPORT_SYMBOL vmlinux 0x2539c4c3 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x253b6eae ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x2552a249 scmd_printk +EXPORT_SYMBOL vmlinux 0x25689c04 tcf_action_update_stats EXPORT_SYMBOL vmlinux 0x256c78d9 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x257667e6 skb_kill_datagram EXPORT_SYMBOL vmlinux 0x25792d10 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x257b5038 __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25892abb udp_lib_rehash EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x258d4c49 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x2590d982 netdev_alert EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion EXPORT_SYMBOL vmlinux 0x25979ca2 param_ops_bint +EXPORT_SYMBOL vmlinux 0x259927a5 phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0x259e29ed set_pages_array_wb -EXPORT_SYMBOL vmlinux 0x25a4d382 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x25a6a5c1 netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x25a91396 free_buffer_head -EXPORT_SYMBOL vmlinux 0x25b0fba1 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x25ab4ebe sock_rfree EXPORT_SYMBOL vmlinux 0x25c7fb88 devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0x25d2496c sk_reset_timer +EXPORT_SYMBOL vmlinux 0x25d02a55 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x25d7969d netdev_update_features EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f5e228 submit_bh EXPORT_SYMBOL vmlinux 0x25fc1e65 devm_memunmap -EXPORT_SYMBOL vmlinux 0x260038e8 km_new_mapping EXPORT_SYMBOL vmlinux 0x2604fd39 key_invalidate EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table EXPORT_SYMBOL vmlinux 0x260aa62b is_bad_inode +EXPORT_SYMBOL vmlinux 0x2612bc65 tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0x261fbf2d inode_nohighmem EXPORT_SYMBOL vmlinux 0x2635c5e7 rproc_mem_entry_init EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x264cbdcf keyring_alloc EXPORT_SYMBOL vmlinux 0x2655ff9b nd_device_register EXPORT_SYMBOL vmlinux 0x26569a9f phy_read_mmd -EXPORT_SYMBOL vmlinux 0x2672e796 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x26604cc2 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x26636414 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x266f851d filemap_fdatawait_range_keep_errors EXPORT_SYMBOL vmlinux 0x2682ba95 md_reap_sync_thread EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x268c6a60 skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0x269890f9 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x26cc2205 user_path_at_empty EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit +EXPORT_SYMBOL vmlinux 0x26d3d5c6 consume_skb EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26f0bcc7 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x26f1e654 phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0x26f677d6 __filemap_set_wb_err EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x26f91a8d prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x26fb6dc6 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x26fcec23 __sk_receive_skb EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl EXPORT_SYMBOL vmlinux 0x2712f88d dquot_disable -EXPORT_SYMBOL vmlinux 0x27178b75 register_netdevice EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x273ba993 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x273f4697 nf_register_net_hook EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x27479ee6 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x274c8e50 fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x27567b67 napi_gro_frags EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check EXPORT_SYMBOL vmlinux 0x2766675e md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x27736709 qdisc_put 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 0x2790aa2c dev_alloc_name -EXPORT_SYMBOL vmlinux 0x2792cfeb vme_master_mmap -EXPORT_SYMBOL vmlinux 0x2796834c i2c_transfer EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c468da ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x27bff66b __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x27c0d586 tcf_qevent_validate_change EXPORT_SYMBOL vmlinux 0x27c6fa2f generic_shutdown_super EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource EXPORT_SYMBOL vmlinux 0x27d266a9 uart_get_divisor EXPORT_SYMBOL vmlinux 0x27d456f3 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x27d98f24 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x27d5ec16 dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28225ffe filemap_check_errors -EXPORT_SYMBOL vmlinux 0x28251225 skb_push -EXPORT_SYMBOL vmlinux 0x2840a524 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x281de084 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x283320b7 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x28363f8c __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x28404355 dev_queue_xmit_accel EXPORT_SYMBOL vmlinux 0x28487e18 pci_ep_cfs_add_epf_group EXPORT_SYMBOL vmlinux 0x28488fdb blk_mq_unique_tag EXPORT_SYMBOL vmlinux 0x284a7ba0 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x284c8f49 dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0x284faa6b __x86_indirect_thunk_r11 EXPORT_SYMBOL vmlinux 0x286c1d6f set_posix_acl +EXPORT_SYMBOL vmlinux 0x28745d6f inet6_protos EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x28ac26c7 phy_detach EXPORT_SYMBOL vmlinux 0x28aef183 simple_lookup EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available -EXPORT_SYMBOL vmlinux 0x28efc210 dev_addr_add EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable EXPORT_SYMBOL vmlinux 0x28fed8bd truncate_inode_pages_final EXPORT_SYMBOL vmlinux 0x2905cb8c dma_get_sgtable_attrs EXPORT_SYMBOL vmlinux 0x290c9ef8 inc_nlink -EXPORT_SYMBOL vmlinux 0x291997b7 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x291d12d6 tcp_read_sock EXPORT_SYMBOL vmlinux 0x291e3cee agp_generic_free_by_type EXPORT_SYMBOL vmlinux 0x291ee747 csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x2928e6b4 phy_driver_unregister EXPORT_SYMBOL vmlinux 0x29332499 __x86_indirect_thunk_rsi -EXPORT_SYMBOL vmlinux 0x29437c7d ip6_mtu +EXPORT_SYMBOL vmlinux 0x29356c72 page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x29461c29 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x2946238b migrate_vma_finalize EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x2968c830 block_commit_write +EXPORT_SYMBOL vmlinux 0x297a9ee2 module_refcount EXPORT_SYMBOL vmlinux 0x29803bad tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x298e14e3 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x2993270d vfs_rename EXPORT_SYMBOL vmlinux 0x2999eb62 seq_file_path EXPORT_SYMBOL vmlinux 0x299b6025 sync_file_create +EXPORT_SYMBOL vmlinux 0x29a5d7c3 ip6_output EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type EXPORT_SYMBOL vmlinux 0x29c09fc3 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x29cc570e skb_queue_head EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29e53682 napi_disable -EXPORT_SYMBOL vmlinux 0x29ed2e43 tcf_em_register +EXPORT_SYMBOL vmlinux 0x29fb269f ip_setsockopt EXPORT_SYMBOL vmlinux 0x2a03faa7 mipi_dsi_picture_parameter_set EXPORT_SYMBOL vmlinux 0x2a107f88 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x2a12d6b7 ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a41dd77 zap_page_range EXPORT_SYMBOL vmlinux 0x2a53376d mipi_dsi_dcs_get_display_brightness_large -EXPORT_SYMBOL vmlinux 0x2a56939f ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x2a69ac2b __skb_free_datagram_locked EXPORT_SYMBOL vmlinux 0x2a6fa0d0 __SCT__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x2a7c4bc5 wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0x2a71a0a7 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x2a779152 ip_getsockopt EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free -EXPORT_SYMBOL vmlinux 0x2a940f4c security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get -EXPORT_SYMBOL vmlinux 0x2a9cfafa phy_ethtool_ksettings_set EXPORT_SYMBOL vmlinux 0x2aa00e26 intel_scu_ipc_dev_update EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2aaf179a __bforget EXPORT_SYMBOL vmlinux 0x2ab34daa devm_extcon_register_notifier_all EXPORT_SYMBOL vmlinux 0x2aca1b6d register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x2acb70b5 skb_pull EXPORT_SYMBOL vmlinux 0x2ad4ca5d scsi_scan_target -EXPORT_SYMBOL vmlinux 0x2ad6d579 sock_i_ino -EXPORT_SYMBOL vmlinux 0x2b089d04 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x2adac196 dev_add_pack +EXPORT_SYMBOL vmlinux 0x2aefce24 xfrm_user_policy EXPORT_SYMBOL vmlinux 0x2b19c8be sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0x2b336a5d reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0x2b4140b4 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x2b4fa739 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x2b262928 genl_register_family +EXPORT_SYMBOL vmlinux 0x2b58262e tso_start EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2b6025cf netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b6a7d06 __dev_kfree_skb_irq EXPORT_SYMBOL vmlinux 0x2b6f0962 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x2b710436 scsi_change_queue_depth EXPORT_SYMBOL vmlinux 0x2b740a1d md_wait_for_blocked_rdev EXPORT_SYMBOL vmlinux 0x2b80fa3c cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x2b8b6ef8 tcf_block_put +EXPORT_SYMBOL vmlinux 0x2b8bd993 vme_irq_free +EXPORT_SYMBOL vmlinux 0x2b95037f nf_ip_checksum EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock EXPORT_SYMBOL vmlinux 0x2ba57acd bio_put EXPORT_SYMBOL vmlinux 0x2ba6bbb9 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x2ba7cedd phy_drivers_register -EXPORT_SYMBOL vmlinux 0x2bb38b3f __tracepoint_read_msr EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock EXPORT_SYMBOL vmlinux 0x2bba33f0 pci_bus_alloc_resource EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset EXPORT_SYMBOL vmlinux 0x2be6e510 input_set_capability -EXPORT_SYMBOL vmlinux 0x2bf13503 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x2bee1e92 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x2beeebf3 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x2bfc3862 __SetPageMovable EXPORT_SYMBOL vmlinux 0x2c03ab81 mpage_readpage -EXPORT_SYMBOL vmlinux 0x2c1437d2 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x2c147462 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x2c0a754a sk_ns_capable +EXPORT_SYMBOL vmlinux 0x2c1df505 vfs_mkdir EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c257b7f devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x2c319631 filp_close EXPORT_SYMBOL vmlinux 0x2c527b4d page_pool_put_page +EXPORT_SYMBOL vmlinux 0x2c537f79 ___pskb_trim EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c710478 vfs_iter_write EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool -EXPORT_SYMBOL vmlinux 0x2c7e88bc ip_check_defrag +EXPORT_SYMBOL vmlinux 0x2c7f33a6 __find_get_block EXPORT_SYMBOL vmlinux 0x2c95e9fc nvdimm_bus_unlock EXPORT_SYMBOL vmlinux 0x2c994234 blk_queue_split EXPORT_SYMBOL vmlinux 0x2ca2c90b iget_locked -EXPORT_SYMBOL vmlinux 0x2caec477 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x2ca8b27e vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die EXPORT_SYMBOL vmlinux 0x2caf6f31 dma_sync_single_for_device EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cdc5d42 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x2cdf860c qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax EXPORT_SYMBOL vmlinux 0x2cf0f2cc config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x2cff4f59 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x2d075e33 sock_kmalloc EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x2d1aa406 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x2d22c951 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x2d196d18 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x2d2eb97e vfs_symlink EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d312497 i2c_smbus_read_byte EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font EXPORT_SYMBOL vmlinux 0x2d58200a input_get_keycode -EXPORT_SYMBOL vmlinux 0x2d5a81e4 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x2d654b9b __block_write_full_page -EXPORT_SYMBOL vmlinux 0x2d6be8f4 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x2d6882a5 netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0x2d71d65a vga_switcheroo_unlock_ddc -EXPORT_SYMBOL vmlinux 0x2d741972 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x2d7320ad default_qdisc_ops EXPORT_SYMBOL vmlinux 0x2d79bc0b jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x2d7ae141 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x2d7bcc19 phy_init_hw EXPORT_SYMBOL vmlinux 0x2d8445b1 agp_backend_acquire -EXPORT_SYMBOL vmlinux 0x2d85aa1a udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x2d9100d8 module_put EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d9287c6 dev_mc_init EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2d9f542b dev_addr_flush EXPORT_SYMBOL vmlinux 0x2db17907 bio_init -EXPORT_SYMBOL vmlinux 0x2dc5cd03 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x2dc661a1 dcb_ieee_getapp_default_prio_mask EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu EXPORT_SYMBOL vmlinux 0x2ddc7abb free_xenballooned_pages EXPORT_SYMBOL vmlinux 0x2ddd591b get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x2dddacd8 __pskb_pull_tail EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2de1d6aa send_sig_mceerr EXPORT_SYMBOL vmlinux 0x2de492f0 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x2de49f64 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x2de60ad0 add_to_page_cache_locked EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write EXPORT_SYMBOL vmlinux 0x2df2e560 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x2dfb03eb buffer_check_dirty_writeback EXPORT_SYMBOL vmlinux 0x2dfbd46d fscrypt_encrypt_block_inplace EXPORT_SYMBOL vmlinux 0x2e02e0a4 dqput EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status EXPORT_SYMBOL vmlinux 0x2e176c3a input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2606bf posix_lock_file EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk EXPORT_SYMBOL vmlinux 0x2e4e2134 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x2e5197a8 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x2e520f3e netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x2e5887a9 scsi_block_requests EXPORT_SYMBOL vmlinux 0x2e5e6ab0 md_done_sync EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e65f1b2 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x2e6f8a62 inet_frag_destroy EXPORT_SYMBOL vmlinux 0x2e7a64b3 tty_vhangup -EXPORT_SYMBOL vmlinux 0x2e7a76ce skb_unlink +EXPORT_SYMBOL vmlinux 0x2e7bef2c kern_path_create EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x2eaf7cf1 dev_uc_flush EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set EXPORT_SYMBOL vmlinux 0x2eca59e4 uart_get_baud_rate EXPORT_SYMBOL vmlinux 0x2ed9e468 debugfs_create_automount EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2ee7819e mmc_run_bkops EXPORT_SYMBOL vmlinux 0x2eea912c get_random_bytes_arch EXPORT_SYMBOL vmlinux 0x2efa19e9 key_payload_reserve EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f0dfcef skb_store_bits +EXPORT_SYMBOL vmlinux 0x2f0f7de4 unregister_shrinker EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f463363 phy_start -EXPORT_SYMBOL vmlinux 0x2f622816 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x2f727f97 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x2f48c39d xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x2f501c1a _dev_notice +EXPORT_SYMBOL vmlinux 0x2f519a2e alloc_fddidev +EXPORT_SYMBOL vmlinux 0x2f64b328 phy_start_cable_test EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f9cc28e xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x2fa00440 mmc_sw_reset -EXPORT_SYMBOL vmlinux 0x2fb6a8f4 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x2fc2bc5e kernel_sendpage_locked EXPORT_SYMBOL vmlinux 0x2fda22b8 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x2fda34c4 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x2fde4a93 blk_get_request EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x30006a1a i2c_clients_command EXPORT_SYMBOL vmlinux 0x30027d34 setattr_copy +EXPORT_SYMBOL vmlinux 0x30039e81 napi_consume_skb EXPORT_SYMBOL vmlinux 0x301304c2 __get_user_nocheck_8 EXPORT_SYMBOL vmlinux 0x301bc87c mount_bdev +EXPORT_SYMBOL vmlinux 0x3021df7d tcf_get_next_proto EXPORT_SYMBOL vmlinux 0x302469f9 pci_find_bus +EXPORT_SYMBOL vmlinux 0x30391e5b sk_free EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp EXPORT_SYMBOL vmlinux 0x305a916c __x86_indirect_thunk_rdi EXPORT_SYMBOL vmlinux 0x30959537 tty_unregister_device EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x309cb17e scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x30a4ef91 __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user EXPORT_SYMBOL vmlinux 0x30a97d7a __seq_open_private EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30bc1bd2 mmc_request_done EXPORT_SYMBOL vmlinux 0x30c532dd thermal_cdev_update EXPORT_SYMBOL vmlinux 0x30c77ed7 proc_create_single_data -EXPORT_SYMBOL vmlinux 0x30e18f8e mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0x30e44a78 submit_bh +EXPORT_SYMBOL vmlinux 0x30db1ce9 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x30dc321c account_page_redirty EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30ff7695 module_layout EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310503e2 mnt_drop_write_file EXPORT_SYMBOL vmlinux 0x31199c46 clk_add_alias EXPORT_SYMBOL vmlinux 0x31213766 insert_inode_locked4 EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x31327bc2 block_write_full_page +EXPORT_SYMBOL vmlinux 0x3139d98e __neigh_create EXPORT_SYMBOL vmlinux 0x31549b2a __x86_indirect_thunk_r10 -EXPORT_SYMBOL vmlinux 0x3159afd3 unregister_fib_notifier EXPORT_SYMBOL vmlinux 0x315eb2f0 __remove_inode_hash EXPORT_SYMBOL vmlinux 0x3163516e param_set_uint -EXPORT_SYMBOL vmlinux 0x316408a6 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x31665ae4 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x3169726a i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x316dc68a sock_kfree_s EXPORT_SYMBOL vmlinux 0x318984d7 pci_fixup_cardbus EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring -EXPORT_SYMBOL vmlinux 0x31b546f6 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x31e0b8ce __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x31ea7438 poll_initwait +EXPORT_SYMBOL vmlinux 0x31c25e11 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x31c8b7ad sock_alloc_send_pskb EXPORT_SYMBOL vmlinux 0x31eb7f9c key_alloc -EXPORT_SYMBOL vmlinux 0x31fed652 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x31f04d3b sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x31fd8bdc __tracepoint_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x32104b77 amd_iommu_domain_clear_gcr3 EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock -EXPORT_SYMBOL vmlinux 0x32255aba genphy_suspend +EXPORT_SYMBOL vmlinux 0x321ce8f2 nosteal_pipe_buf_ops EXPORT_SYMBOL vmlinux 0x322b233a bdevname -EXPORT_SYMBOL vmlinux 0x323a5164 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x323ee839 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x323fe4ff sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x323271c2 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x323c33a6 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x32472824 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x325d4f47 phy_disconnect EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x32844b3c linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x32b1396c __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x328afc55 pipe_unlock +EXPORT_SYMBOL vmlinux 0x32a47b11 skb_unlink EXPORT_SYMBOL vmlinux 0x32b43ae5 input_alloc_absinfo EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d205f0 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x32de3234 __SCK__tp_func_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x32f171d7 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x331965a0 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x32fc3e6c cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x331ca610 __skb_recv_datagram EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down EXPORT_SYMBOL vmlinux 0x3338f60b param_ops_ushort -EXPORT_SYMBOL vmlinux 0x3353d992 arp_send -EXPORT_SYMBOL vmlinux 0x3368f9b6 clk_hw_get_clk -EXPORT_SYMBOL vmlinux 0x336c1fe8 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x3343a94c phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x33595356 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x33629df6 pneigh_lookup EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x337fa068 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x33845b92 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x33955c5f crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x337c1f75 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x339042a5 netdev_emerg EXPORT_SYMBOL vmlinux 0x339b729d bioset_exit +EXPORT_SYMBOL vmlinux 0x339c5685 skb_copy EXPORT_SYMBOL vmlinux 0x33a21a09 pv_ops +EXPORT_SYMBOL vmlinux 0x33a66628 blk_rq_init EXPORT_SYMBOL vmlinux 0x33b3320b dm_kcopyd_zero EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c3ccaf netdev_name_node_alt_destroy EXPORT_SYMBOL vmlinux 0x33c7f451 xen_free_unpopulated_pages -EXPORT_SYMBOL vmlinux 0x33d91ba7 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x33d92ab2 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x33dba9b3 generic_fadvise EXPORT_SYMBOL vmlinux 0x33eaf424 bio_free_pages 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 0x34094dc5 put_disk -EXPORT_SYMBOL vmlinux 0x340e2e6b security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x341eba6f ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0x34211dfb seq_open_private EXPORT_SYMBOL vmlinux 0x342223e9 fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x342b9805 blk_mq_alloc_tag_set EXPORT_SYMBOL vmlinux 0x343bf451 is_acpi_device_node EXPORT_SYMBOL vmlinux 0x3441445f msrs_free -EXPORT_SYMBOL vmlinux 0x34737668 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x3488ea90 _dev_notice +EXPORT_SYMBOL vmlinux 0x346c8cdb __breadahead_gfp EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x34906fb2 inet_select_addr -EXPORT_SYMBOL vmlinux 0x34948ff4 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x34929517 nf_register_sockopt EXPORT_SYMBOL vmlinux 0x349cba85 strchr EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34ac310f ping_prot +EXPORT_SYMBOL vmlinux 0x34bcf281 netdev_class_remove_file_ns EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev EXPORT_SYMBOL vmlinux 0x34d95e51 md_finish_reshape EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x34e42dc9 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x34ee608a __breadahead_gfp EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger +EXPORT_SYMBOL vmlinux 0x34f9f633 tc_setup_cb_add EXPORT_SYMBOL vmlinux 0x34fbfec8 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x34fe18ca try_to_release_page +EXPORT_SYMBOL vmlinux 0x350a2142 ipv6_select_ident EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x3516e9c6 flow_rule_match_ipv4_addrs EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x35175a0d tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x35286e82 key_link -EXPORT_SYMBOL vmlinux 0x352d4697 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x35356f2a pskb_expand_head +EXPORT_SYMBOL vmlinux 0x35190b4e phy_detach +EXPORT_SYMBOL vmlinux 0x3537faa2 crypto_sha512_finup EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x3546d282 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x35495f50 __pskb_copy_fclone EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace +EXPORT_SYMBOL vmlinux 0x354dedce xfrm_input_resume EXPORT_SYMBOL vmlinux 0x3550bc1d tty_devnum +EXPORT_SYMBOL vmlinux 0x35555767 twl6040_get_vibralr_status EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x356aa83b file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x357e1021 poll_initwait EXPORT_SYMBOL vmlinux 0x35851b1f md_cluster_ops -EXPORT_SYMBOL vmlinux 0x358e8138 trace_event_printf -EXPORT_SYMBOL vmlinux 0x3597c1b9 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x359efb38 xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35bcb477 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x35ab7781 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x35ad1f52 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x35c5cdef vme_lm_request +EXPORT_SYMBOL vmlinux 0x35cc6753 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x35da7648 ip_do_fragment EXPORT_SYMBOL vmlinux 0x35ea0209 pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0x35f6e7c6 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x35f10aec skb_vlan_push EXPORT_SYMBOL vmlinux 0x360538f0 param_ops_string EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x3617fdbe sock_no_accept -EXPORT_SYMBOL vmlinux 0x36184352 phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0x361ffa30 discard_new_inode +EXPORT_SYMBOL vmlinux 0x3627dab8 vfs_fadvise EXPORT_SYMBOL vmlinux 0x36391038 clear_inode -EXPORT_SYMBOL vmlinux 0x36457c21 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x363db82d generic_file_llseek_size EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x36522c5c reuseport_attach_prog EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const EXPORT_SYMBOL vmlinux 0x367e68a1 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x368ecfdc sock_sendmsg -EXPORT_SYMBOL vmlinux 0x36948cac softnet_data -EXPORT_SYMBOL vmlinux 0x3696efc1 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x36aa5b62 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x36870989 __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x36b5e5d4 nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36bca937 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x36cd18ef eth_type_trans -EXPORT_SYMBOL vmlinux 0x36ce56a4 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x36c37cae i2c_register_driver EXPORT_SYMBOL vmlinux 0x36de9fad dm_table_get_md +EXPORT_SYMBOL vmlinux 0x36f51131 dump_emit EXPORT_SYMBOL vmlinux 0x36f99856 always_delete_dentry EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x3718ce12 mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0x3724d7d0 agp_generic_alloc_page EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn EXPORT_SYMBOL vmlinux 0x37528133 scsi_bios_ptable EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x376adbf4 migrate_page_states +EXPORT_SYMBOL vmlinux 0x376d1cd8 tc_setup_flow_action EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0x3777431b flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0x3777bb12 __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x37a0f46d __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x378aeac0 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x3790390f genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x3795a51d finish_swait EXPORT_SYMBOL vmlinux 0x37a4b298 get_tz_trend +EXPORT_SYMBOL vmlinux 0x37b221a6 jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37b91f8b tcp_filter -EXPORT_SYMBOL vmlinux 0x37b95fcf jbd2_journal_clear_features EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37cf8926 genl_register_family EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date EXPORT_SYMBOL vmlinux 0x37e6ce8b param_ops_byte +EXPORT_SYMBOL vmlinux 0x3805cd73 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x380c43b6 netdev_warn EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x3871fd94 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x3885eb58 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x38598f4f security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x3866e475 filemap_fdatawait_range 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 0x3893fbdd netif_set_real_num_rx_queues EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue EXPORT_SYMBOL vmlinux 0x3898f958 nd_dax_probe EXPORT_SYMBOL vmlinux 0x389b610b mipi_dsi_dcs_get_display_brightness EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b398ca scsi_remove_host -EXPORT_SYMBOL vmlinux 0x38c6d977 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x38c9b55f sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x38cf24ce i2c_add_adapter EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38eba2a7 mdiobus_write_nested EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x3900787d console_stop EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x39200d3c __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x391639d5 write_dirty_buffer EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x39379ada vfs_create EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x39528cdf mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x3955fbe0 tcp_sock_set_quickack EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r EXPORT_SYMBOL vmlinux 0x396ff248 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x39707c0e netdev_info EXPORT_SYMBOL vmlinux 0x39890bd9 edac_mc_find EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x399d606f __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x39b4dc8f scsi_ioctl EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39b55303 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x39b5dd1b trace_raw_output_prep EXPORT_SYMBOL vmlinux 0x39dfdfaf dcache_dir_open EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr +EXPORT_SYMBOL vmlinux 0x39e3ca3d ipv4_mtu EXPORT_SYMBOL vmlinux 0x39eb4fd3 give_up_console -EXPORT_SYMBOL vmlinux 0x3a006ab7 set_page_dirty_lock EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify EXPORT_SYMBOL vmlinux 0x3a099605 __get_user_nocheck_4 +EXPORT_SYMBOL vmlinux 0x3a0f31ca netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc EXPORT_SYMBOL vmlinux 0x3a29c23d dma_resv_reserve_shared 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 0x3a349f33 ptp_schedule_worker EXPORT_SYMBOL vmlinux 0x3a42d72d pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x3a4d03c5 mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0x3a4ee8ec put_fs_context -EXPORT_SYMBOL vmlinux 0x3a4f60af __netlink_kernel_create EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized EXPORT_SYMBOL vmlinux 0x3a519e36 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x3a5515ca km_policy_expired EXPORT_SYMBOL vmlinux 0x3a583d51 eisa_driver_register +EXPORT_SYMBOL vmlinux 0x3a6d18b3 __tracepoint_spi_transfer_start EXPORT_SYMBOL vmlinux 0x3a928b65 rdmacg_try_charge EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer EXPORT_SYMBOL vmlinux 0x3abb0b07 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x3abc3179 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x3abc5369 sock_kfree_s EXPORT_SYMBOL vmlinux 0x3abc6a1d pci_claim_resource EXPORT_SYMBOL vmlinux 0x3ac078f0 inode_insert5 EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x3ad5f333 skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region -EXPORT_SYMBOL vmlinux 0x3aec244f i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x3af226bd __brelse EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x3b052fa8 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x3b099ed8 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x3b162fb7 phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x3b1ffdd0 __scsi_add_device EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x3b2da282 module_put EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode EXPORT_SYMBOL vmlinux 0x3b51fea2 cdrom_check_events EXPORT_SYMBOL vmlinux 0x3b550e3f put_watch_queue @@ -7377,1138 +7243,1114 @@ EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources EXPORT_SYMBOL vmlinux 0x3b9dc107 iov_iter_revert EXPORT_SYMBOL vmlinux 0x3ba9f074 mpage_writepage -EXPORT_SYMBOL vmlinux 0x3bab86b5 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x3bae7341 sk_dst_check EXPORT_SYMBOL vmlinux 0x3bcbd653 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x3be0d12c block_truncate_page EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3bf0d65b tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x3bea5393 vfs_readlink EXPORT_SYMBOL vmlinux 0x3bfe6bfb dev_pm_opp_unregister_notifier EXPORT_SYMBOL vmlinux 0x3c0bb789 tty_port_lower_dtr_rts EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c3af9f6 lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0x3c3f6306 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x3c2bc5a4 xp_free +EXPORT_SYMBOL vmlinux 0x3c32f0fa ppp_input EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map EXPORT_SYMBOL vmlinux 0x3c481154 d_move -EXPORT_SYMBOL vmlinux 0x3c58bfb8 nf_getsockopt EXPORT_SYMBOL vmlinux 0x3c5a8563 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x3c5db951 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x3c600448 xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0x3c6de49e inode_set_flags -EXPORT_SYMBOL vmlinux 0x3c7cd8af mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x3c7f7981 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x3c827a7f vfs_mknod EXPORT_SYMBOL vmlinux 0x3c91db0a mdio_device_register -EXPORT_SYMBOL vmlinux 0x3c978810 phy_init_hw -EXPORT_SYMBOL vmlinux 0x3cbf0b8b sock_from_file +EXPORT_SYMBOL vmlinux 0x3ca8add7 __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0x3cc65d33 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x3cccb0a1 posix_test_lock EXPORT_SYMBOL vmlinux 0x3cd3624a mipi_dsi_dcs_set_display_brightness_large EXPORT_SYMBOL vmlinux 0x3ce17d39 agp_generic_remove_memory EXPORT_SYMBOL vmlinux 0x3ce2310c fs_param_is_u32 EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce64591 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x3cf9dd9a i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x3cf2d24f __SCK__tp_func_dma_fence_emit EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked EXPORT_SYMBOL vmlinux 0x3d0695be iterate_supers_type -EXPORT_SYMBOL vmlinux 0x3d18fb83 __alloc_skb EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align EXPORT_SYMBOL vmlinux 0x3d258838 pci_disable_device -EXPORT_SYMBOL vmlinux 0x3d2a476f jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x3d37116f wake_up_process +EXPORT_SYMBOL vmlinux 0x3d303b0c sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x3d32d48c scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x3d3e8c02 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x3d4f3c3d inetdev_by_index +EXPORT_SYMBOL vmlinux 0x3d519628 _dev_err EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d5d9ef4 km_state_notify +EXPORT_SYMBOL vmlinux 0x3d604d1f __break_lease 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 0x3dc619d3 swake_up_locked EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dcdc3b1 phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid -EXPORT_SYMBOL vmlinux 0x3df144f9 add_to_pipe +EXPORT_SYMBOL vmlinux 0x3de59967 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x3df865a5 skb_put EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3dfc9b3d kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x3dfcaaf6 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0x3e11788d unix_get_socket -EXPORT_SYMBOL vmlinux 0x3e12a06c kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x3e1e0969 __scsi_execute +EXPORT_SYMBOL vmlinux 0x3e38bbc1 vfs_clone_file_range EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule EXPORT_SYMBOL vmlinux 0x3e60e94a setattr_should_drop_suidgid -EXPORT_SYMBOL vmlinux 0x3e75a732 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x3e7ce358 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x3e730d46 ip6_frag_init EXPORT_SYMBOL vmlinux 0x3e802744 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x3e8e5cb0 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x3eac423f mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x3ec7e3e0 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x3ed3f5a2 kill_fasync +EXPORT_SYMBOL vmlinux 0x3e9c1746 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x3e9d3fa8 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x3ecf8a1c flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x3ee60b7b jbd2_journal_invalidatepage EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up EXPORT_SYMBOL vmlinux 0x3eecb6c3 pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0x3ef73b4d pcie_capability_clear_and_set_word EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f01b853 neigh_parms_release EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f2c06ab mdiobus_write -EXPORT_SYMBOL vmlinux 0x3f4146cb ip6_frag_init +EXPORT_SYMBOL vmlinux 0x3f2e2bf1 netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f46035c filemap_fdatawait_keep_errors EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f58360c vfs_mkobj EXPORT_SYMBOL vmlinux 0x3f59d1b7 agp_put_bridge EXPORT_SYMBOL vmlinux 0x3f5ef3f7 seq_escape -EXPORT_SYMBOL vmlinux 0x3f5fcdb7 __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x3f624d6d scsi_host_busy +EXPORT_SYMBOL vmlinux 0x3f752aed jbd2_trans_will_send_data_barrier EXPORT_SYMBOL vmlinux 0x3f7907eb ps2_drain -EXPORT_SYMBOL vmlinux 0x3f8691c9 __dev_set_mtu EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f9bd756 rt6_lookup -EXPORT_SYMBOL vmlinux 0x3fbd057f inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x3f957128 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x3fa3dc69 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x3fb960bd skb_orphan_partial EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fca0414 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x3fcd7ac6 generic_file_write_iter EXPORT_SYMBOL vmlinux 0x3fcdb9f6 noop_fsync -EXPORT_SYMBOL vmlinux 0x3fd62eb7 mmc_get_card EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fe4bc61 mmc_wait_for_cmd EXPORT_SYMBOL vmlinux 0x3fe8173f config_group_init_type_name EXPORT_SYMBOL vmlinux 0x3feb2ed9 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x3ff4d359 __scm_destroy -EXPORT_SYMBOL vmlinux 0x3ff61e76 free_netdev EXPORT_SYMBOL vmlinux 0x3ffe96df dma_async_device_unregister EXPORT_SYMBOL vmlinux 0x4011b7a5 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x4038d10e tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x403ab714 vfs_symlink +EXPORT_SYMBOL vmlinux 0x4018d994 page_readlink +EXPORT_SYMBOL vmlinux 0x402137ef write_inode_now +EXPORT_SYMBOL vmlinux 0x40446c37 inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler EXPORT_SYMBOL vmlinux 0x4071f59e set_blocksize EXPORT_SYMBOL vmlinux 0x407ccd34 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x408393fe mnt_drop_write_file EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a11a1b inet6_ioctl EXPORT_SYMBOL vmlinux 0x40a1d616 __cleancache_init_shared_fs EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40acba29 gnet_stats_copy_rate_est EXPORT_SYMBOL vmlinux 0x40b34725 da903x_query_status -EXPORT_SYMBOL vmlinux 0x40b767a4 scsi_host_put -EXPORT_SYMBOL vmlinux 0x40c25c3f setup_arg_pages EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d0aa3e __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x40d47de2 phy_set_asym_pause EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler EXPORT_SYMBOL vmlinux 0x40d62393 dquot_set_dqinfo EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams EXPORT_SYMBOL vmlinux 0x40ebfb03 param_ops_ullong EXPORT_SYMBOL vmlinux 0x40f37b03 nla_reserve EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x410a7137 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x40ff5c73 proto_register +EXPORT_SYMBOL vmlinux 0x410aae1b jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0x4119c93a notify_change +EXPORT_SYMBOL vmlinux 0x411ffe59 __dev_direct_xmit EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin EXPORT_SYMBOL vmlinux 0x4135804c dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x413f8ad4 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x413e1612 jbd2_journal_forget EXPORT_SYMBOL vmlinux 0x413f8ec8 param_set_charp EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41503590 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x4152b25a security_inode_getsecctx EXPORT_SYMBOL vmlinux 0x417754d3 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x41780aa5 vfs_mkdir EXPORT_SYMBOL vmlinux 0x417fc8ac watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0x418511fe bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x41868973 netdev_adjacent_change_commit EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x41914cbe __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x41ab8f87 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x418ac528 brioctl_set EXPORT_SYMBOL vmlinux 0x41ad1f4e input_mt_assign_slots EXPORT_SYMBOL vmlinux 0x41b26484 cdrom_ioctl EXPORT_SYMBOL vmlinux 0x41d7b6d2 load_nls_default EXPORT_SYMBOL vmlinux 0x41df6dea dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x41eaca82 tcf_exts_dump EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot EXPORT_SYMBOL vmlinux 0x41f9b6b0 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x42010dfd xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x42029475 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x4213188d pagecache_get_page EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue EXPORT_SYMBOL vmlinux 0x421f92e3 mipi_dsi_generic_read EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x423a3f2d udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x42429663 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x42448167 nf_setsockopt EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x425e60e6 register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x425ef673 truncate_pagecache_range EXPORT_SYMBOL vmlinux 0x42689e2d seq_putc -EXPORT_SYMBOL vmlinux 0x4279de67 mmc_retune_release -EXPORT_SYMBOL vmlinux 0x428794df mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x428dfb61 ip_frag_init -EXPORT_SYMBOL vmlinux 0x4290a6b4 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x4293f832 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x4296c26b __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x426a2ac6 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x42930402 __scsi_add_device EXPORT_SYMBOL vmlinux 0x42b796e4 dquot_reclaim_space_nodirty EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42bf8250 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x42c7947f ndo_dflt_fdb_dump EXPORT_SYMBOL vmlinux 0x42dc216a tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x42ddeb87 page_symlink +EXPORT_SYMBOL vmlinux 0x42e5eea0 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x42f125e9 __sk_mem_schedule EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x42fc8ac8 mmc_cqe_recovery EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate EXPORT_SYMBOL vmlinux 0x432d75b6 md_register_thread -EXPORT_SYMBOL vmlinux 0x432f3d33 __inet_hash -EXPORT_SYMBOL vmlinux 0x43304df9 tcf_block_put EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer EXPORT_SYMBOL vmlinux 0x433f0b06 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x4341d2e5 ethtool_notify +EXPORT_SYMBOL vmlinux 0x43475e4a __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0x434fa6f9 dma_async_device_register EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x43635345 __xfrm_init_state EXPORT_SYMBOL vmlinux 0x4369cef2 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x43714d70 nobh_truncate_page EXPORT_SYMBOL vmlinux 0x4371c42a bd_abort_claiming EXPORT_SYMBOL vmlinux 0x4376c555 component_match_add_typed EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438126fe skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x4381b7b0 dev_deactivate EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security EXPORT_SYMBOL vmlinux 0x438abc08 tty_kref_put -EXPORT_SYMBOL vmlinux 0x438fe494 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x43a2575c xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x43a4b0f3 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x43a8736c generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x43b8e310 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x43bb847b end_buffer_write_sync EXPORT_SYMBOL vmlinux 0x43bbc87d max8998_write_reg +EXPORT_SYMBOL vmlinux 0x43bd040d udp_sendmsg EXPORT_SYMBOL vmlinux 0x43c4cf9d pci_reenable_device EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43e0f6ba xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x43da86e2 __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0x43f931fc __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x443bf47a xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x448f846d mdiobus_scan +EXPORT_SYMBOL vmlinux 0x4483b4cc lock_sock_nested +EXPORT_SYMBOL vmlinux 0x448db964 netpoll_poll_disable EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event +EXPORT_SYMBOL vmlinux 0x44979cb3 km_state_expired EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44a7bd44 file_open_root EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz EXPORT_SYMBOL vmlinux 0x44b2c19d fb_blank EXPORT_SYMBOL vmlinux 0x44b630c7 cdrom_open -EXPORT_SYMBOL vmlinux 0x44dfe0a3 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x44c11742 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x44cb4007 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x44d5b195 tcf_action_dump_1 EXPORT_SYMBOL vmlinux 0x44e9909d serio_open EXPORT_SYMBOL vmlinux 0x44e9a829 match_token EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x4500acb3 ptp_find_pin EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x45216942 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x450fc829 sock_set_mark EXPORT_SYMBOL vmlinux 0x4523d78b pm8606_osc_disable EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x4535792f sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x454d43bd __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x4551c5e2 pskb_extract EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update EXPORT_SYMBOL vmlinux 0x4569de6e pmem_sector_size EXPORT_SYMBOL vmlinux 0x456f0b3c PDE_DATA EXPORT_SYMBOL vmlinux 0x45700b06 ps2_command -EXPORT_SYMBOL vmlinux 0x457283c8 neigh_xmit EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457b816e vm_insert_pages EXPORT_SYMBOL vmlinux 0x45835732 __do_once_slow_done +EXPORT_SYMBOL vmlinux 0x45863b65 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x459178c8 dev_change_proto_down_generic EXPORT_SYMBOL vmlinux 0x45a2728c pci_irq_vector EXPORT_SYMBOL vmlinux 0x45a7cdeb pci_read_config_byte EXPORT_SYMBOL vmlinux 0x45aea603 blkdev_put EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x45d43896 xsk_tx_release -EXPORT_SYMBOL vmlinux 0x45df641a secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 -EXPORT_SYMBOL vmlinux 0x45eace36 ppp_input -EXPORT_SYMBOL vmlinux 0x45eadf33 unregister_filesystem EXPORT_SYMBOL vmlinux 0x45fc19d2 retbleed_untrain_ret -EXPORT_SYMBOL vmlinux 0x45fd71ae consume_skb EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents EXPORT_SYMBOL vmlinux 0x461f3cc3 dma_map_page_attrs EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count -EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x46296b89 alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0x4633c267 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x4648c355 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x4651fdc7 napi_gro_flush EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size EXPORT_SYMBOL vmlinux 0x466682af phy_set_max_speed EXPORT_SYMBOL vmlinux 0x466c14a7 __delay EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x46803190 neigh_carrier_down EXPORT_SYMBOL vmlinux 0x468eb5d2 drop_nlink EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option EXPORT_SYMBOL vmlinux 0x469de114 param_ops_short EXPORT_SYMBOL vmlinux 0x469fd558 vfio_register_notifier -EXPORT_SYMBOL vmlinux 0x46a98288 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x46b60e6b inet_shutdown +EXPORT_SYMBOL vmlinux 0x46b1a53c __skb_checksum EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance EXPORT_SYMBOL vmlinux 0x46c67e37 show_init_ipc_ns EXPORT_SYMBOL vmlinux 0x46ccaa1d single_open_size EXPORT_SYMBOL vmlinux 0x46cf10eb cachemode2protval -EXPORT_SYMBOL vmlinux 0x46d31093 km_report -EXPORT_SYMBOL vmlinux 0x46e137cb filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x46f35871 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x46e15147 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x46e5fe20 netlink_ack EXPORT_SYMBOL vmlinux 0x46fb40f8 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x46fe1dff inet6_register_protosw EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x4720f55d register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x47246d43 __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x4735ce5c dst_release_immediate EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x475b1f2e get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0x47612647 acpi_get_hp_hw_control_from_firmware EXPORT_SYMBOL vmlinux 0x4763ea00 mdio_device_free EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x4783d5fe tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x478cc537 sock_create_lite +EXPORT_SYMBOL vmlinux 0x47951829 devfreq_update_interval EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x47a57427 devfreq_recommended_opp 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 0x47dc0a16 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x47fef0a0 phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x48113e6a jbd2_journal_set_features EXPORT_SYMBOL vmlinux 0x481550fe pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x4817806d __skb_vlan_pop EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x4822cc11 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x482f425c skb_find_text EXPORT_SYMBOL vmlinux 0x483246cc rproc_remove_subdev EXPORT_SYMBOL vmlinux 0x48384f8c pci_dev_driver EXPORT_SYMBOL vmlinux 0x4841bdee strnchr EXPORT_SYMBOL vmlinux 0x48476bcb intel_gtt_insert_page +EXPORT_SYMBOL vmlinux 0x484d1d38 ipv6_dev_find EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485fc88f trace_event_printf EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc EXPORT_SYMBOL vmlinux 0x4862983c set_nlink EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x487557dd devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x487f690e udp_disconnect EXPORT_SYMBOL vmlinux 0x4884eb01 param_get_hexint -EXPORT_SYMBOL vmlinux 0x48904e2d __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x4890066a put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x4899aea3 fqdir_exit EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim EXPORT_SYMBOL vmlinux 0x48a81d7e vfio_group_pin_pages EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48b02213 skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x48c279a6 fc_mount EXPORT_SYMBOL vmlinux 0x48c5dd72 config_group_find_item +EXPORT_SYMBOL vmlinux 0x48ccaef2 napi_get_frags +EXPORT_SYMBOL vmlinux 0x48cf3207 scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier EXPORT_SYMBOL vmlinux 0x48dfd21a agp_backend_release +EXPORT_SYMBOL vmlinux 0x48e5bd2a skb_clone_sk EXPORT_SYMBOL vmlinux 0x48f80945 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x4903511e mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x49014667 netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x491964bb __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x490bd82e setup_arg_pages +EXPORT_SYMBOL vmlinux 0x4918c9b2 xfrm_lookup EXPORT_SYMBOL vmlinux 0x494d6fb9 devm_pci_remap_cfg_resource EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x4959e1cb security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume EXPORT_SYMBOL vmlinux 0x496b1a97 cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x497171d9 vme_register_driver -EXPORT_SYMBOL vmlinux 0x497f25e7 phy_do_ioctl -EXPORT_SYMBOL vmlinux 0x498c3706 scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize +EXPORT_SYMBOL vmlinux 0x49994bfe sock_set_sndtimeo EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum EXPORT_SYMBOL vmlinux 0x49ad0ff6 input_open_device EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49c3a06a in6_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x49c59b87 iget5_locked -EXPORT_SYMBOL vmlinux 0x49c8e888 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x49d4973a security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x49d5f552 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x49e42a99 vfs_get_link -EXPORT_SYMBOL vmlinux 0x49e75e4d phy_init_eee -EXPORT_SYMBOL vmlinux 0x49f683c5 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x49c9c2d9 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x49d500d2 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x49ded5b3 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x49e31f81 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x49ee85aa dev_get_stats +EXPORT_SYMBOL vmlinux 0x49f4e1a0 scsi_print_sense EXPORT_SYMBOL vmlinux 0x4a165127 kobject_put +EXPORT_SYMBOL vmlinux 0x4a2e4122 skb_expand_head EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 -EXPORT_SYMBOL vmlinux 0x4a61af82 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x4a735f2c skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x4a920d83 kernel_connect EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4aa52dcd neigh_destroy -EXPORT_SYMBOL vmlinux 0x4aa920ad scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x4aaf71b7 rt_dst_clone EXPORT_SYMBOL vmlinux 0x4abb7d10 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x4abbbe03 ipv6_dev_get_saddr EXPORT_SYMBOL vmlinux 0x4abd71fd mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x4ac625fa netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x4abf5168 _dev_emerg EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue -EXPORT_SYMBOL vmlinux 0x4affa3f1 ppp_unregister_compressor EXPORT_SYMBOL vmlinux 0x4b0221e7 d_lookup EXPORT_SYMBOL vmlinux 0x4b0817f5 fs_param_is_blockdev EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure EXPORT_SYMBOL vmlinux 0x4b0ca0c6 rproc_put -EXPORT_SYMBOL vmlinux 0x4b1183b1 __SCK__tp_func_kmalloc_node EXPORT_SYMBOL vmlinux 0x4b15e0f9 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x4b41562a netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0x4b4ce6ce dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0x4b5e3a47 __get_user_nocheck_1 EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback EXPORT_SYMBOL vmlinux 0x4b61b82a drop_super -EXPORT_SYMBOL vmlinux 0x4b66ab3c i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg EXPORT_SYMBOL vmlinux 0x4b852b77 task_work_add -EXPORT_SYMBOL vmlinux 0x4b898c8c follow_up -EXPORT_SYMBOL vmlinux 0x4b8aa833 unlock_buffer +EXPORT_SYMBOL vmlinux 0x4b8a2901 dev_mc_sync EXPORT_SYMBOL vmlinux 0x4b8fcc60 fb_pan_display -EXPORT_SYMBOL vmlinux 0x4ba34a05 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x4ba16211 twl6040_reg_write EXPORT_SYMBOL vmlinux 0x4baf1cf1 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0x4bb15aa9 tcf_register_action +EXPORT_SYMBOL vmlinux 0x4bb75ff3 key_unlink EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bcf4132 skb_expand_head +EXPORT_SYMBOL vmlinux 0x4bd2dfd5 tcp_read_sock EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf6a5c7 security_sb_remount EXPORT_SYMBOL vmlinux 0x4c01f64d seq_release EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c158887 jbd2_journal_get_write_access EXPORT_SYMBOL vmlinux 0x4c236f6f __x86_indirect_thunk_r15 -EXPORT_SYMBOL vmlinux 0x4c254bd6 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x4c2eb07e devm_mfd_add_devices EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded EXPORT_SYMBOL vmlinux 0x4c3de624 take_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c43552f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0x4c62be69 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x4c627cf4 __check_sticky EXPORT_SYMBOL vmlinux 0x4c6dd7f9 agp_bridge EXPORT_SYMBOL vmlinux 0x4c75b7c6 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x4c8bc45e security_inode_invalidate_secctx EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base -EXPORT_SYMBOL vmlinux 0x4ca43d11 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x4ca214fa __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x4ca86563 inode_permission EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cbdb0c6 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x4cc3f2c4 can_nice +EXPORT_SYMBOL vmlinux 0x4cc42921 sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0x4cd028ca acpi_pm_device_sleep_state EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs -EXPORT_SYMBOL vmlinux 0x4cde616a jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x4cd94a18 sock_wfree +EXPORT_SYMBOL vmlinux 0x4ce031da tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x4ce22dea fs_context_for_submount EXPORT_SYMBOL vmlinux 0x4ceae601 get_cpu_entry_area -EXPORT_SYMBOL vmlinux 0x4d185b39 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x4d0598d9 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x4d1a602f vlan_for_each EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d3b2fe6 inet6_offloads +EXPORT_SYMBOL vmlinux 0x4d3b9d8b jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0x4d47769b dquot_load_quota_sb EXPORT_SYMBOL vmlinux 0x4d4f4e86 fb_class +EXPORT_SYMBOL vmlinux 0x4d6190c7 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x4d71220f dst_dev_put +EXPORT_SYMBOL vmlinux 0x4d714738 filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0x4d723738 blk_queue_logical_block_size EXPORT_SYMBOL vmlinux 0x4d737d46 igrab +EXPORT_SYMBOL vmlinux 0x4d756883 napi_enable +EXPORT_SYMBOL vmlinux 0x4d88325f tcp_sendmsg EXPORT_SYMBOL vmlinux 0x4d924f20 memremap EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4daf9ac3 build_skb +EXPORT_SYMBOL vmlinux 0x4dc7e2df __ClearPageMovable EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x4dce85b7 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x4de2d088 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x4de55b02 blk_put_request EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be -EXPORT_SYMBOL vmlinux 0x4df08dc6 __traceiter_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock -EXPORT_SYMBOL vmlinux 0x4e02cbbb grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x4e115b57 neigh_lookup EXPORT_SYMBOL vmlinux 0x4e15523f pci_request_irq EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x4e30da92 security_old_inode_init_security EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e36b8eb ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e3b5e88 phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0x4e422669 jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x4e4c3dad phy_connect +EXPORT_SYMBOL vmlinux 0x4e45f0fe mnt_set_expiry EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno EXPORT_SYMBOL vmlinux 0x4e517eb9 cdev_alloc +EXPORT_SYMBOL vmlinux 0x4e54638c xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e548661 keyring_clear EXPORT_SYMBOL vmlinux 0x4e620977 d_rehash +EXPORT_SYMBOL vmlinux 0x4e64b615 mmc_can_gpio_cd EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e0df3 nf_log_trace EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e82e2b1 netdev_state_change -EXPORT_SYMBOL vmlinux 0x4e9030bb devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x4e6f9ef8 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x4e84bd6a kernel_sendpage EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eaf6eb4 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x4eb075bd inet_csk_prepare_forced_close EXPORT_SYMBOL vmlinux 0x4ebb19ac __destroy_inode EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ee0beee tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x4ef8283d inet_bind +EXPORT_SYMBOL vmlinux 0x4effb300 netdev_err EXPORT_SYMBOL vmlinux 0x4f00afd3 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x4f12e052 nf_log_packet EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f2447d0 netdev_printk +EXPORT_SYMBOL vmlinux 0x4f5060c3 dev_set_promiscuity EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f5f5218 fasync_helper -EXPORT_SYMBOL vmlinux 0x4f5ff5ac ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x4f5ec765 jbd2_journal_flush EXPORT_SYMBOL vmlinux 0x4f6cadc2 phy_write_mmd EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder EXPORT_SYMBOL vmlinux 0x4f711f84 intel_scu_ipc_dev_iowrite8 -EXPORT_SYMBOL vmlinux 0x4f724d2e tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0x4f74eb01 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x4f7d9dcf blk_rq_init -EXPORT_SYMBOL vmlinux 0x4f7eefcb filp_open -EXPORT_SYMBOL vmlinux 0x4f9fe0ba neigh_seq_start -EXPORT_SYMBOL vmlinux 0x4fa2b749 vme_dma_request +EXPORT_SYMBOL vmlinux 0x4f95c799 fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0x4fa9c45b padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x4fa9ef81 xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0x4fd574ce tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x4fad9a71 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x4fb8ef95 poll_freewait +EXPORT_SYMBOL vmlinux 0x4fd55a34 kfree_skb_partial EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command EXPORT_SYMBOL vmlinux 0x4fe3c4fb key_revoke -EXPORT_SYMBOL vmlinux 0x4fe80131 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x4feefdd2 d_genocide +EXPORT_SYMBOL vmlinux 0x4ffc1cf8 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x5003c5f1 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x5006d9f8 console_stop EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x500c1792 set_create_files_as EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x50293096 devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0x503496d9 pci_map_biosrom -EXPORT_SYMBOL vmlinux 0x504383da sk_send_sigurg EXPORT_SYMBOL vmlinux 0x505353d1 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0x505adc38 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x505b5219 scsi_device_get EXPORT_SYMBOL vmlinux 0x50624917 sha1_init EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x507d9660 eth_validate_addr EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x508ec8aa sock_create +EXPORT_SYMBOL vmlinux 0x50926b0d skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x50926c26 dev_disable_lro EXPORT_SYMBOL vmlinux 0x50932ac7 __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu -EXPORT_SYMBOL vmlinux 0x50946052 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x5098368c dst_discard_out EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50a5c5e4 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x50ac030f thread_group_exited +EXPORT_SYMBOL vmlinux 0x50b58dec __ip_select_ident EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50c2f7c8 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x50c9951f phy_ethtool_get_strings EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x50fb3edb iptun_encaps EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq EXPORT_SYMBOL vmlinux 0x5107701c __do_once_done -EXPORT_SYMBOL vmlinux 0x51144cb1 __netif_schedule -EXPORT_SYMBOL vmlinux 0x511682ac twl6040_reg_write EXPORT_SYMBOL vmlinux 0x511ab1ae dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x5135ae5d jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x514ff9bf phy_suspend +EXPORT_SYMBOL vmlinux 0x514ab36b km_policy_expired EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x515d7c5b page_readlink EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x51689424 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x51664959 release_sock +EXPORT_SYMBOL vmlinux 0x5175fbed open_exec EXPORT_SYMBOL vmlinux 0x5180ef47 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x518f90c2 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x519a5194 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x51a07ae9 submit_bio_noacct EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x51b57179 __mdiobus_write -EXPORT_SYMBOL vmlinux 0x51be7a13 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x51b17a51 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x51b69769 mmput_async +EXPORT_SYMBOL vmlinux 0x51c30089 gro_cells_receive EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51ddae48 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x51e1bf84 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x51ec45dd flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x51ee7425 flow_rule_match_control EXPORT_SYMBOL vmlinux 0x51f298e0 intel_scu_ipc_dev_ioread8 EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x51fd03e4 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x520e9ccd nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x52041970 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x520beaeb flow_rule_match_meta EXPORT_SYMBOL vmlinux 0x521cf15c rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x52215cf6 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x522cb251 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x52321d8e gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x5243c2c0 netdev_change_features +EXPORT_SYMBOL vmlinux 0x52684863 ptp_find_pin_unlocked EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x527fd572 kernel_accept -EXPORT_SYMBOL vmlinux 0x528972cd sock_no_linger +EXPORT_SYMBOL vmlinux 0x5297669e inet_confirm_addr EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52c56b4f __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x52afb366 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x52c12b90 sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52d7374d skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x52dc6d53 jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc EXPORT_SYMBOL vmlinux 0x52e03651 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x52e0fc8c jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0x52e4069e forget_cached_acl EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x52ed647a kern_unmount_array -EXPORT_SYMBOL vmlinux 0x52fe9403 phy_attach +EXPORT_SYMBOL vmlinux 0x52f781e8 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x52f94541 reuseport_has_conns_set EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x531603ae gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0x531948ba fscrypt_put_encryption_info EXPORT_SYMBOL vmlinux 0x5319e1d4 fb_validate_mode EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x53234bdf kernel_connect +EXPORT_SYMBOL vmlinux 0x5325a94b neigh_seq_stop EXPORT_SYMBOL vmlinux 0x533206b5 sort_r EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x5338e017 scsi_scan_host EXPORT_SYMBOL vmlinux 0x534c1992 bio_endio EXPORT_SYMBOL vmlinux 0x5352e7b8 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x5355460e fiemap_prep EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off EXPORT_SYMBOL vmlinux 0x535d2f61 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x536ca3c4 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x53780ac7 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x5395981b vme_bus_num +EXPORT_SYMBOL vmlinux 0x53a7b275 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x53a8cf2b mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x53aba1fd mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x53b1766e ipv4_dst_check EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53d868c0 set_user_nice +EXPORT_SYMBOL vmlinux 0x53e28772 tcp_mss_to_mtu EXPORT_SYMBOL vmlinux 0x53e50ffa first_ec -EXPORT_SYMBOL vmlinux 0x53eef04c phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x53f2fbb8 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x53f55f2d amd_iommu_flush_page EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x54175484 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x54050f12 sock_sendmsg EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register -EXPORT_SYMBOL vmlinux 0x541cd3b1 block_page_mkwrite EXPORT_SYMBOL vmlinux 0x5429d69c rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x543c384c vfs_rmdir EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x545da764 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x545f7920 phy_device_remove EXPORT_SYMBOL vmlinux 0x5478022f __fs_parse EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable +EXPORT_SYMBOL vmlinux 0x549da117 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x54a2a200 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x54a85d08 __skb_free_datagram_locked EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value EXPORT_SYMBOL vmlinux 0x54b22bb1 __SCT__tp_func_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x54b60ac2 inet6_release +EXPORT_SYMBOL vmlinux 0x54b44be5 cpufreq_generic_suspend EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 EXPORT_SYMBOL vmlinux 0x54de75d2 pci_select_bars EXPORT_SYMBOL vmlinux 0x54e2277e kmem_cache_free EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags EXPORT_SYMBOL vmlinux 0x54f8baf0 generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0x54fa12b7 jbd2_journal_init_inode EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5520eb01 ata_std_end_eh EXPORT_SYMBOL vmlinux 0x55385e2e __x86_indirect_thunk_r14 +EXPORT_SYMBOL vmlinux 0x553f871d vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x554c4030 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x555100c8 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x555e525c kernel_getsockname EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache +EXPORT_SYMBOL vmlinux 0x556add07 would_dump EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine EXPORT_SYMBOL vmlinux 0x557d5431 init_special_inode -EXPORT_SYMBOL vmlinux 0x5588ab43 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x5581c8eb vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x558e237e vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x558f308a dev_change_proto_down_reason EXPORT_SYMBOL vmlinux 0x559bf800 pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x559c33a0 mmc_start_request -EXPORT_SYMBOL vmlinux 0x55b6bb59 finish_swait -EXPORT_SYMBOL vmlinux 0x55c25570 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x55caf17f tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x55caf71b inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x55a16617 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x55a88dac security_socket_socketpair EXPORT_SYMBOL vmlinux 0x55cec583 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x55d1f20e init_net EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55f31e68 vlan_vid_add EXPORT_SYMBOL vmlinux 0x55f7c4d8 backlight_device_unregister EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot EXPORT_SYMBOL vmlinux 0x56033d54 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x56045321 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x560b2ebf inet_pton_with_scope EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x5657ddb3 block_truncate_page EXPORT_SYMBOL vmlinux 0x5658242b dquot_quota_on -EXPORT_SYMBOL vmlinux 0x566ec53a scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x5680e51f __sock_create +EXPORT_SYMBOL vmlinux 0x5684088b phy_attach_direct EXPORT_SYMBOL vmlinux 0x569edfc9 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x56c1c54a xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56de8f87 skb_ext_add -EXPORT_SYMBOL vmlinux 0x56eb8718 __kfree_skb EXPORT_SYMBOL vmlinux 0x56f20aab set_pages_wb -EXPORT_SYMBOL vmlinux 0x56f97219 ata_scsi_cmd_error_handler EXPORT_SYMBOL vmlinux 0x56faee58 pci_bus_type -EXPORT_SYMBOL vmlinux 0x571b64c5 lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0x5736c763 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x5711623a skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x57416d03 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x5748533d neigh_sysctl_register EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x576835c9 block_write_begin EXPORT_SYMBOL vmlinux 0x5774148f dm_table_event -EXPORT_SYMBOL vmlinux 0x577ca33c skb_clone_sk EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc EXPORT_SYMBOL vmlinux 0x5790b5be input_reset_device EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57b7d117 devm_devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write -EXPORT_SYMBOL vmlinux 0x57be16f6 arp_tbl -EXPORT_SYMBOL vmlinux 0x57cf018b sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x57d83fe9 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x57df07d6 write_cache_pages +EXPORT_SYMBOL vmlinux 0x57d30307 netdev_printk +EXPORT_SYMBOL vmlinux 0x57e64c72 tcp_poll EXPORT_SYMBOL vmlinux 0x57ee7780 pnp_disable_dev EXPORT_SYMBOL vmlinux 0x57f3056c pin_user_pages_unlocked EXPORT_SYMBOL vmlinux 0x57f98b4a dec_node_page_state EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x583205b8 vfs_fsync_range EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x583e7fb4 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x5854d1ea neigh_lookup -EXPORT_SYMBOL vmlinux 0x585e331a vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x5856a077 phy_drivers_register EXPORT_SYMBOL vmlinux 0x5861ee09 uart_write_wakeup EXPORT_SYMBOL vmlinux 0x586e0542 cpu_info EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x58a0993a __lock_page +EXPORT_SYMBOL vmlinux 0x588e5f0b inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0x58a18938 sg_alloc_append_table_from_pages EXPORT_SYMBOL vmlinux 0x58a78df9 pci_enable_device EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58b80eee nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x58c030fd __lock_page EXPORT_SYMBOL vmlinux 0x58c59ae8 __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58e7de03 inet6_bind -EXPORT_SYMBOL vmlinux 0x58ef8ac2 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x58fed34d may_umount_tree -EXPORT_SYMBOL vmlinux 0x59039928 inet_offloads -EXPORT_SYMBOL vmlinux 0x590a9842 ppp_channel_index -EXPORT_SYMBOL vmlinux 0x5932a5b4 nf_log_trace +EXPORT_SYMBOL vmlinux 0x58f72548 mdiobus_read EXPORT_SYMBOL vmlinux 0x593edc4b cpu_tlbstate_shared EXPORT_SYMBOL vmlinux 0x593f4f1e pci_add_new_bus EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map EXPORT_SYMBOL vmlinux 0x594c2500 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x594fb3f4 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x59592ad0 devfreq_recommended_opp EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x59661b74 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x59729693 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x597aa447 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x59816c5f locks_delete_block EXPORT_SYMBOL vmlinux 0x5985dd9b dquot_commit -EXPORT_SYMBOL vmlinux 0x599e71e9 blk_put_queue +EXPORT_SYMBOL vmlinux 0x598c9a51 __lock_buffer EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node EXPORT_SYMBOL vmlinux 0x59a2f0ee packing EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59b74d1e dev_uc_del -EXPORT_SYMBOL vmlinux 0x59c69db1 set_bh_page -EXPORT_SYMBOL vmlinux 0x59e0268d filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0x59fb2566 dev_remove_offload EXPORT_SYMBOL vmlinux 0x5a05dc32 pin_user_pages +EXPORT_SYMBOL vmlinux 0x5a076ec1 gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 EXPORT_SYMBOL vmlinux 0x5a1c45e3 mipi_dsi_dcs_get_power_mode EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a29c223 mmc_cqe_start_req EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x5a6a9871 flow_rule_alloc EXPORT_SYMBOL vmlinux 0x5a7cfaec touch_atime EXPORT_SYMBOL vmlinux 0x5a82d8df pci_bus_read_config_word EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a943e95 iw_handler_set_thrspy EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5aa8c6ee xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x5ab14eb2 misc_register -EXPORT_SYMBOL vmlinux 0x5ac430f0 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x5ab263a3 inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5ae18386 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x5af5338d jbd2_journal_load EXPORT_SYMBOL vmlinux 0x5afa5eb8 devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x5b064bc0 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x5b247059 ethtool_get_phc_vclocks EXPORT_SYMBOL vmlinux 0x5b2ca8c7 remap_vmalloc_range EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax +EXPORT_SYMBOL vmlinux 0x5b3d48ad __dev_get_by_index EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store EXPORT_SYMBOL vmlinux 0x5b41291d fbcon_update_vcs EXPORT_SYMBOL vmlinux 0x5b43ef2e jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0x5b4d70b8 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x5b523b11 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x5b50322e ip_generic_getfrag EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b593c64 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x5b5c857b vme_unregister_bridge EXPORT_SYMBOL vmlinux 0x5b641283 arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0x5b77d38e __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x5b7cccf2 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x5b7a4bd5 netdev_notify_peers EXPORT_SYMBOL vmlinux 0x5b8239ca __x86_return_thunk +EXPORT_SYMBOL vmlinux 0x5b9269bb find_vma EXPORT_SYMBOL vmlinux 0x5bad96b7 iommu_get_msi_cookie -EXPORT_SYMBOL vmlinux 0x5bb18e99 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x5bbcba09 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x5bc5f45e prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x5bca5edc mr_dump +EXPORT_SYMBOL vmlinux 0x5bc8df3a udp_prot +EXPORT_SYMBOL vmlinux 0x5bd0a5e4 flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0x5bd29f0c set_trace_device EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5bd9d198 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x5bdaf634 jbd2_journal_extend EXPORT_SYMBOL vmlinux 0x5be158a5 pci_alloc_irq_vectors_affinity EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5c188171 security_path_mknod +EXPORT_SYMBOL vmlinux 0x5c104a74 phy_resume +EXPORT_SYMBOL vmlinux 0x5c24202a register_netdevice EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c333c27 netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0x5c3542a2 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x5c2bd2dc inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x5c34912f netdev_info +EXPORT_SYMBOL vmlinux 0x5c3ac0d7 touch_buffer EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c4a65ea alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0x5c4c8d4b d_obtain_root EXPORT_SYMBOL vmlinux 0x5c52af54 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x5c62a1c4 eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0x5c637d83 devm_release_resource -EXPORT_SYMBOL vmlinux 0x5c7d3e48 disk_start_io_acct +EXPORT_SYMBOL vmlinux 0x5c734f70 _dev_printk EXPORT_SYMBOL vmlinux 0x5c845583 param_set_bint +EXPORT_SYMBOL vmlinux 0x5c85a0aa kernel_accept EXPORT_SYMBOL vmlinux 0x5c8781db pcim_enable_device -EXPORT_SYMBOL vmlinux 0x5c88c129 tcf_generic_walker EXPORT_SYMBOL vmlinux 0x5c8d73a0 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x5c9f7ce6 udp_poll -EXPORT_SYMBOL vmlinux 0x5ca37d14 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x5ca47286 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x5c9a51d4 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x5c9af055 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x5ca4f90a xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x5cb0df70 neigh_xmit EXPORT_SYMBOL vmlinux 0x5cb12805 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x5cb89f89 tcp_poll -EXPORT_SYMBOL vmlinux 0x5cbb831d tcf_idr_create EXPORT_SYMBOL vmlinux 0x5cc91959 fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x5cd57a83 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x5cd87316 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x5cf2fbd5 wait_on_page_bit_killable EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5cfb95ce thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x5d04495f vlan_vid_del EXPORT_SYMBOL vmlinux 0x5d2dc740 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x5d337e4f inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0x5d3bae9c textsearch_prepare EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry EXPORT_SYMBOL vmlinux 0x5d51cb3c kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x5d5574dd _dev_printk -EXPORT_SYMBOL vmlinux 0x5d602bfd dev_queue_xmit EXPORT_SYMBOL vmlinux 0x5d6328e3 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0x5d6f8011 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x5d82e741 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x5d8ff894 vfs_mkobj -EXPORT_SYMBOL vmlinux 0x5da8d703 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x5df53bb0 jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0x5df741dd seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x5d7050f7 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x5d7f60f5 gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0x5e0b6695 jbd2_complete_transaction EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e12d591 inode_get_bytes EXPORT_SYMBOL vmlinux 0x5e15e965 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x5e258f35 gnet_stats_copy_basic_hw EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e6cd5c2 mptcp_subflow_reqsk_alloc EXPORT_SYMBOL vmlinux 0x5e72b26e simple_transaction_set EXPORT_SYMBOL vmlinux 0x5e7c765d dquot_get_state +EXPORT_SYMBOL vmlinux 0x5e82f956 mr_fill_mroute EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align EXPORT_SYMBOL vmlinux 0x5e91a476 pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask EXPORT_SYMBOL vmlinux 0x5eab4b60 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x5eaec48e __SCK__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5eccf71d alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed5ba86 file_path EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5ee82a7e netif_device_detach EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5ef951de netdev_set_num_tc EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5eff01db invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f0ad39a xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x5f138c2c generic_update_time EXPORT_SYMBOL vmlinux 0x5f18d9cd vfio_pin_pages EXPORT_SYMBOL vmlinux 0x5f1ba32a pci_find_capability -EXPORT_SYMBOL vmlinux 0x5f205c0f jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x5f246e29 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x5f30a6ea icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x5f1d13ef sock_recvmsg EXPORT_SYMBOL vmlinux 0x5f4011c4 ilookup5 EXPORT_SYMBOL vmlinux 0x5f45e9ca pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x5f49a407 __genphy_config_aneg EXPORT_SYMBOL vmlinux 0x5f51306f jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x5f524973 __neigh_event_send EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x5f5b2e33 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x5f5f400d neigh_seq_next +EXPORT_SYMBOL vmlinux 0x5f58890f ata_scsi_cmd_error_handler EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f859234 mmc_release_host +EXPORT_SYMBOL vmlinux 0x5f87b0e0 dev_alloc_name EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo -EXPORT_SYMBOL vmlinux 0x5fa8bc4d __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x5f9f0519 vme_slot_num +EXPORT_SYMBOL vmlinux 0x5fa6bc95 dev_set_alias +EXPORT_SYMBOL vmlinux 0x5fb39cb2 phy_find_first EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact EXPORT_SYMBOL vmlinux 0x5fc8d0b1 mipi_dsi_dcs_exit_sleep_mode EXPORT_SYMBOL vmlinux 0x5fe13529 __SCT__tp_func_spi_transfer_start EXPORT_SYMBOL vmlinux 0x5fefa30c pps_event -EXPORT_SYMBOL vmlinux 0x5ff1bdee seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x5ff3fd4b __zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen EXPORT_SYMBOL vmlinux 0x60106d86 blk_mq_delay_run_hw_queue EXPORT_SYMBOL vmlinux 0x60140d4f proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x601548ad genl_notify -EXPORT_SYMBOL vmlinux 0x601df4a3 sock_release EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x6020656f jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier EXPORT_SYMBOL vmlinux 0x60423cc2 kill_block_super EXPORT_SYMBOL vmlinux 0x60518834 __frontswap_store EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent EXPORT_SYMBOL vmlinux 0x6059e75c page_pool_destroy -EXPORT_SYMBOL vmlinux 0x605de0d8 __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x60615dcc rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x606f1b35 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x60776655 crypto_sha1_update EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609bd38f ppp_register_net_channel EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a26819 scm_fp_dup EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x60b4628f i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x60c1a808 generic_perform_write +EXPORT_SYMBOL vmlinux 0x60b5cda5 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x60bd478a try_module_get EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60fe4e6b reuseport_alloc +EXPORT_SYMBOL vmlinux 0x60f282f7 ip_check_defrag EXPORT_SYMBOL vmlinux 0x6105cf84 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x6106e145 _dev_emerg EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0x61122760 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x611bf4a2 km_report +EXPORT_SYMBOL vmlinux 0x61205c10 dev_addr_init EXPORT_SYMBOL vmlinux 0x612802cf __dquot_free_space EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61294eeb __scm_send EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x6136fab3 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x613d0d57 ppp_channel_index EXPORT_SYMBOL vmlinux 0x614faf15 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x6152b210 blk_sync_queue EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x6163dd69 sock_cmsg_send EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x618407ce dev_mc_flush EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x61950a16 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x6195e3e4 tso_build_hdr EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer EXPORT_SYMBOL vmlinux 0x619dfcdc intel_scu_ipc_dev_readv EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61ba1738 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x61bc54b0 netdev_warn +EXPORT_SYMBOL vmlinux 0x61b981c6 cont_write_begin +EXPORT_SYMBOL vmlinux 0x61bad1f3 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x61e20cda inet_protos EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61e71c0e lease_get_mtime EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61ecd283 inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x621f3a69 ps2_init EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single EXPORT_SYMBOL vmlinux 0x624b211b pcie_set_mps -EXPORT_SYMBOL vmlinux 0x626a364d dcb_ieee_getapp_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister EXPORT_SYMBOL vmlinux 0x62742760 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x62794ba2 i2c_del_driver EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x628676bd build_skb_around EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource EXPORT_SYMBOL vmlinux 0x62af7dc8 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x62b4f259 fget_raw -EXPORT_SYMBOL vmlinux 0x62bc8494 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x62bea44e fib_default_rule_add EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable -EXPORT_SYMBOL vmlinux 0x62f8d4fb __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0x62fcdeee input_mt_init_slots EXPORT_SYMBOL vmlinux 0x6310cd7a amd_iommu_domain_enable_v2 EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put EXPORT_SYMBOL vmlinux 0x631d6bbe address_space_init_once EXPORT_SYMBOL vmlinux 0x633bae4a bio_uninit -EXPORT_SYMBOL vmlinux 0x6348984c skb_checksum +EXPORT_SYMBOL vmlinux 0x633e6185 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x634c6124 write_cache_pages EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps +EXPORT_SYMBOL vmlinux 0x63674f10 netpoll_cleanup EXPORT_SYMBOL vmlinux 0x6383b27c __x86_indirect_thunk_rdx EXPORT_SYMBOL vmlinux 0x63a0c405 shrink_dcache_sb EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region EXPORT_SYMBOL vmlinux 0x63ae3337 dm_unregister_target EXPORT_SYMBOL vmlinux 0x63af5516 cdev_device_add -EXPORT_SYMBOL vmlinux 0x63b06222 __SCK__tp_func_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x63b675d1 registered_fb EXPORT_SYMBOL vmlinux 0x63b6c01d pci_set_mwi EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63dc742f clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x63de3809 kernel_sock_shutdown EXPORT_SYMBOL vmlinux 0x63e14849 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x63e70b05 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x63e8bf86 ip_route_me_harder EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f4b272 in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x63f835ba on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0x64059c4a free_task +EXPORT_SYMBOL vmlinux 0x6407d6f6 xfrm_find_acq EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x642e96c3 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x64194146 migrate_page_copy EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x643b4b15 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x643c80a1 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x644ad670 vfs_fileattr_set EXPORT_SYMBOL vmlinux 0x647ec8a3 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x648179d6 __wait_on_buffer EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x648561f1 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x6486efc9 generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0x648b1a6b pcie_ptm_enabled EXPORT_SYMBOL vmlinux 0x648d9e84 pci_read_config_word EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list EXPORT_SYMBOL vmlinux 0x6495042d jbd2_submit_inode_data EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649a75cb __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64c1cf1d dev_mc_add -EXPORT_SYMBOL vmlinux 0x64c3cf72 ipv6_chk_addr EXPORT_SYMBOL vmlinux 0x64d1e6e8 tty_port_close -EXPORT_SYMBOL vmlinux 0x64dc095f follow_down_one +EXPORT_SYMBOL vmlinux 0x64db0837 xfrm_state_delete EXPORT_SYMBOL vmlinux 0x64ece443 alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x65061183 phy_resume -EXPORT_SYMBOL vmlinux 0x65089c23 __icmp_send -EXPORT_SYMBOL vmlinux 0x650b86d7 block_commit_write +EXPORT_SYMBOL vmlinux 0x65042e3c security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x65131e4a ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6513dc05 netdev_features_change EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src EXPORT_SYMBOL vmlinux 0x6519bf66 pci_get_subsys EXPORT_SYMBOL vmlinux 0x651a4139 test_taint EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x6523edd4 xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x6537a041 rt_dst_alloc EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x65437286 starget_for_each_device EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop EXPORT_SYMBOL vmlinux 0x65487097 __x86_indirect_thunk_rax +EXPORT_SYMBOL vmlinux 0x655a9691 dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x657cce64 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x65864b94 inet6_release EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x658ff81f xattr_supported_namespace EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a11b2a netif_napi_add EXPORT_SYMBOL vmlinux 0x65a6c06f agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x65b87b33 devfreq_remove_device EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry -EXPORT_SYMBOL vmlinux 0x65be5d08 skb_store_bits -EXPORT_SYMBOL vmlinux 0x65c8bad1 path_get +EXPORT_SYMBOL vmlinux 0x65bdf66e flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d324d0 devm_register_netdev EXPORT_SYMBOL vmlinux 0x65d399fd md_bitmap_cond_end_sync 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 0x65e30fc1 f_setown -EXPORT_SYMBOL vmlinux 0x65fb1156 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x65ffc947 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x65e6bced udp_ioctl EXPORT_SYMBOL vmlinux 0x66155ec9 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x6619f04b finalize_exec EXPORT_SYMBOL vmlinux 0x661e99d5 iommu_dma_get_resv_regions -EXPORT_SYMBOL vmlinux 0x662241f1 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x66222f36 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x66244b09 vif_device_init EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x6626cc7a sock_common_setsockopt EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x6639905c finish_open EXPORT_SYMBOL vmlinux 0x664016f2 pcim_pin_device -EXPORT_SYMBOL vmlinux 0x664c2a5e user_path_at_empty -EXPORT_SYMBOL vmlinux 0x664eead0 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x664de1bf sock_i_uid +EXPORT_SYMBOL vmlinux 0x664f21fb dst_release EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x666635ad __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x6667f331 put_fs_context EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x667464fd tcp_time_wait +EXPORT_SYMBOL vmlinux 0x6673fd81 skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x668c545d mmc_free_host -EXPORT_SYMBOL vmlinux 0x66ae05b0 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x66949401 flow_block_cb_setup_simple EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b17072 __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66c895a2 i2c_verify_adapter EXPORT_SYMBOL vmlinux 0x66cca4f9 __x86_indirect_thunk_rcx -EXPORT_SYMBOL vmlinux 0x66d976c8 udp_lib_rehash EXPORT_SYMBOL vmlinux 0x66de6ad6 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0x66eb1ea2 user_path_create -EXPORT_SYMBOL vmlinux 0x66f1af3b mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x66e31b70 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x66eaea54 i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0x670ecece __x86_indirect_thunk_rbx EXPORT_SYMBOL vmlinux 0x671810f3 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x6718b834 dev_get_phys_port_id EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6746589f xfrm_stateonly_find EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x67518017 napi_consume_skb -EXPORT_SYMBOL vmlinux 0x675acfed __SCK__tp_func_kmem_cache_free EXPORT_SYMBOL vmlinux 0x676635cf pci_release_region EXPORT_SYMBOL vmlinux 0x67696735 complete_request_key +EXPORT_SYMBOL vmlinux 0x6782483a sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0x6785457c md_check_no_bitmap EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x679c8d09 block_page_mkwrite EXPORT_SYMBOL vmlinux 0x67a0e428 pci_disable_link_state EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67c5491e netlink_unicast EXPORT_SYMBOL vmlinux 0x67cb3dc3 input_release_device EXPORT_SYMBOL vmlinux 0x67e368a6 __nla_reserve -EXPORT_SYMBOL vmlinux 0x6807bacd filemap_range_has_page EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x6837e6ba phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0x68411db1 fb_firmware_edid EXPORT_SYMBOL vmlinux 0x684f9ce2 kernel_param_unlock EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x68727bd6 tcp_req_err EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x68a1e6da __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x68a35557 bh_submit_read -EXPORT_SYMBOL vmlinux 0x68a50e57 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x68a7e614 get_task_cred -EXPORT_SYMBOL vmlinux 0x68a9fef8 console_start +EXPORT_SYMBOL vmlinux 0x68a2c45a xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0x68c4b824 cpumask_any_but EXPORT_SYMBOL vmlinux 0x68d4dd4f devm_clk_put -EXPORT_SYMBOL vmlinux 0x68ef1070 lru_cache_add -EXPORT_SYMBOL vmlinux 0x68f2d4e7 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x68f97b93 unlock_page +EXPORT_SYMBOL vmlinux 0x68e586a6 alloc_pages_vma EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x68fb7d07 netdev_name_node_alt_create EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot EXPORT_SYMBOL vmlinux 0x6914a9a6 copy_page_to_iter EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x691ac5b5 unix_attach_fds -EXPORT_SYMBOL vmlinux 0x69384d91 jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0x694938ec mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x6941e045 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x6942351b dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x694badbb __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0x69585523 __ksize -EXPORT_SYMBOL vmlinux 0x696018d1 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x6963272f netdev_get_xmit_slave EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days EXPORT_SYMBOL vmlinux 0x697731ae pcie_get_mps -EXPORT_SYMBOL vmlinux 0x697e1976 netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x69835f29 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x69808e95 devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x699a80f8 fixed_size_llseek EXPORT_SYMBOL vmlinux 0x699d22b2 d_add +EXPORT_SYMBOL vmlinux 0x69a34b04 ip6_mtu EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69bf4ae1 filemap_page_mkwrite EXPORT_SYMBOL vmlinux 0x69d43c45 posix_acl_chmod EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le -EXPORT_SYMBOL vmlinux 0x69de0c44 netpoll_print_options EXPORT_SYMBOL vmlinux 0x69de1b71 mipi_dsi_dcs_set_page_address EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e33311 netdev_notice EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree EXPORT_SYMBOL vmlinux 0x6a0a7536 bio_copy_data EXPORT_SYMBOL vmlinux 0x6a261b78 irq_stat -EXPORT_SYMBOL vmlinux 0x6a422059 scsi_print_command +EXPORT_SYMBOL vmlinux 0x6a3e060d mount_subtree EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a5bd1bc netdev_pick_tx EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a6fcd42 flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x6a79393e sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x6a736e66 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x6a7ea70b security_path_mkdir EXPORT_SYMBOL vmlinux 0x6a878de1 bio_advance EXPORT_SYMBOL vmlinux 0x6a8a7a19 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x6a9a0fe6 __SCK__tp_func_kfree EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order EXPORT_SYMBOL vmlinux 0x6aa8cddf config_item_set_name EXPORT_SYMBOL vmlinux 0x6ab2811f bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x6abe4223 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x6ac3fc7a filemap_fault -EXPORT_SYMBOL vmlinux 0x6ad73dbb dev_get_flags -EXPORT_SYMBOL vmlinux 0x6ad771c3 module_layout EXPORT_SYMBOL vmlinux 0x6ad7ca00 ps2_cmd_aborted EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device EXPORT_SYMBOL vmlinux 0x6aeb9efc ps2_handle_ack EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset EXPORT_SYMBOL vmlinux 0x6afdac73 devm_ioremap_np -EXPORT_SYMBOL vmlinux 0x6b0f8339 tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user +EXPORT_SYMBOL vmlinux 0x6b1ac46c dev_change_flags EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2cf26a inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b311363 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x6b4c197e tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x6b3f4801 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x6b45ce78 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x6b4eb127 xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b813ff9 dump_skip_to +EXPORT_SYMBOL vmlinux 0x6b5ef96e tcp_splice_read +EXPORT_SYMBOL vmlinux 0x6b6efd45 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x6b7650bf tcp_fastopen_defer_connect 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 0x6ba08750 dns_query -EXPORT_SYMBOL vmlinux 0x6ba694ec dev_change_carrier -EXPORT_SYMBOL vmlinux 0x6bace071 netdev_notice -EXPORT_SYMBOL vmlinux 0x6bb1c81e reuseport_stop_listen_sock EXPORT_SYMBOL vmlinux 0x6bbd1533 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x6bc19830 ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bcb82f0 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x6bc8dc9c netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible -EXPORT_SYMBOL vmlinux 0x6bd5f3f0 udp_gro_complete EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6be62718 finish_no_open EXPORT_SYMBOL vmlinux 0x6bfcd491 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x6c094ed5 vfs_get_link EXPORT_SYMBOL vmlinux 0x6c1f8022 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x6c21cd67 skb_clone 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 0x6c3c1b9b simple_pin_fs -EXPORT_SYMBOL vmlinux 0x6c3f9608 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x6c4f9f04 devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6c5498a9 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x6c404748 dentry_open EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c5dc83f mntput +EXPORT_SYMBOL vmlinux 0x6c603730 generic_block_bmap EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c6380ab sk_free -EXPORT_SYMBOL vmlinux 0x6c6ccd69 tcf_em_tree_destroy EXPORT_SYMBOL vmlinux 0x6c735461 fs_param_is_u64 EXPORT_SYMBOL vmlinux 0x6c76d8bb dget_parent EXPORT_SYMBOL vmlinux 0x6c838730 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x6c91173b tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x6c942023 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x6c884285 ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0x6caadade md_error +EXPORT_SYMBOL vmlinux 0x6caba82c mr_vif_seq_next EXPORT_SYMBOL vmlinux 0x6cb2f5a1 cpumask_next_and EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cb67eac flow_rule_match_enc_keyid EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep +EXPORT_SYMBOL vmlinux 0x6cc7b711 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x6cd5da0e ppp_dev_name EXPORT_SYMBOL vmlinux 0x6cf5a469 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x6cf6cbcd rtnl_unicast +EXPORT_SYMBOL vmlinux 0x6d1597a6 inet_select_addr EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x6d174dad sock_i_uid EXPORT_SYMBOL vmlinux 0x6d1b58a7 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x6d231cf0 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x6d27382c xfrm_policy_walk 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 0x6d3f9fda dma_supported EXPORT_SYMBOL vmlinux 0x6d544437 iput -EXPORT_SYMBOL vmlinux 0x6d555726 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x6d549091 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0x6d57f941 ip_mc_leave_group EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0x6d5ea6cd __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x6d59b3cc xfrm_state_update EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x6d6a3ab9 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x6d78d5dc __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d7d8ee4 tcp_rcv_established EXPORT_SYMBOL vmlinux 0x6d9eb03b sync_blockdev -EXPORT_SYMBOL vmlinux 0x6dab6b7f get_fs_type +EXPORT_SYMBOL vmlinux 0x6da69d5f ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x6dcd92a3 ndisc_mc_map EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6dd04a1d gro_cells_init EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6ddfa6f8 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x6de1447d eth_header_cache +EXPORT_SYMBOL vmlinux 0x6de694d5 _dev_crit EXPORT_SYMBOL vmlinux 0x6dec1a94 con_is_visible -EXPORT_SYMBOL vmlinux 0x6decc76e blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x6ded35b9 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x6deda812 PageMovable EXPORT_SYMBOL vmlinux 0x6dee0768 tty_port_hangup EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df67a9a prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x6df7f87e unlock_rename -EXPORT_SYMBOL vmlinux 0x6e0189b2 tcp_shutdown -EXPORT_SYMBOL vmlinux 0x6e136e44 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x6e129a6e sock_wake_async +EXPORT_SYMBOL vmlinux 0x6e33ea14 netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0x6e38ea2e pnp_device_attach -EXPORT_SYMBOL vmlinux 0x6e3d3201 sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x6e43d13d rproc_free +EXPORT_SYMBOL vmlinux 0x6e4fb1e8 prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0x6e58b387 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x6e5b6b68 vmf_insert_pfn_prot EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e5d18c0 skb_queue_purge EXPORT_SYMBOL vmlinux 0x6e6476e7 pcie_relaxed_ordering_enabled EXPORT_SYMBOL vmlinux 0x6e6b9a82 pci_bus_find_capability EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock @@ -8516,112 +8358,115 @@ EXPORT_SYMBOL vmlinux 0x6e7ba8a1 page_mapping EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eca88ab vlan_for_each +EXPORT_SYMBOL vmlinux 0x6eafc049 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x6eb12a98 inet_csk_reset_keepalive_timer EXPORT_SYMBOL vmlinux 0x6ee4c535 amd_iommu_domain_set_gcr3 EXPORT_SYMBOL vmlinux 0x6eec4dac dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x6efd3736 block_read_full_page +EXPORT_SYMBOL vmlinux 0x6eecb022 vfs_link EXPORT_SYMBOL vmlinux 0x6efdcc8b generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x6f169f70 genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x6f2e2407 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x6f20a060 tcp_child_process +EXPORT_SYMBOL vmlinux 0x6f37c8eb qdisc_hash_add EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f41bf7d scsi_host_alloc EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f678c6c lock_page_memcg -EXPORT_SYMBOL vmlinux 0x6f6c7097 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x6f67ebb3 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x6f690788 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x6f6d1129 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x6f88eab5 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x6f8af927 km_query +EXPORT_SYMBOL vmlinux 0x6f8f0d8c unregister_fib_notifier EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6fc28292 unregister_binfmt EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fde5299 ptp_find_pin -EXPORT_SYMBOL vmlinux 0x6ffa088f nlmsg_notify +EXPORT_SYMBOL vmlinux 0x6fd89929 inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0x6ffb26aa tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x6ffcb3b5 vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x7006d24e xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0x7008bd27 bio_alloc_bioset EXPORT_SYMBOL vmlinux 0x700d86a1 pci_request_selected_regions EXPORT_SYMBOL vmlinux 0x701ba7bb pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0x701f84a9 pid_task EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x7038376c __get_hash_from_flowi6 EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock +EXPORT_SYMBOL vmlinux 0x704adbeb security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0x705023b4 pnp_release_card_device EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x7067497f __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x70765454 noop_llseek +EXPORT_SYMBOL vmlinux 0x706ea08b mmc_alloc_host EXPORT_SYMBOL vmlinux 0x707cc1eb rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x70813e14 neigh_table_clear EXPORT_SYMBOL vmlinux 0x7081bc31 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x70aa6c73 filp_open EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70c00d81 close_fd_get_file EXPORT_SYMBOL vmlinux 0x70d8a270 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x70d9d1d4 tcp_check_req -EXPORT_SYMBOL vmlinux 0x70ef1685 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0x710b7a06 register_qdisc -EXPORT_SYMBOL vmlinux 0x7113cbd3 phy_device_register +EXPORT_SYMBOL vmlinux 0x70e2900c alloc_pages +EXPORT_SYMBOL vmlinux 0x70ecd381 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x710a31f5 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x710ee77c mr_table_dump EXPORT_SYMBOL vmlinux 0x711b7fe5 configfs_depend_item_unlocked EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712afed3 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x71339fe6 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x7158d168 xfrm_register_km EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk EXPORT_SYMBOL vmlinux 0x7164bb3a kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x716e3338 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x718912b6 __traceiter_module_get EXPORT_SYMBOL vmlinux 0x718a4693 __SCT__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x718a4e12 phy_driver_register -EXPORT_SYMBOL vmlinux 0x718a6080 kernel_sock_shutdown EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71bdfa12 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x71a72b73 __pagevec_release +EXPORT_SYMBOL vmlinux 0x71a7de3e sock_i_ino EXPORT_SYMBOL vmlinux 0x71c7acd1 param_set_hexint +EXPORT_SYMBOL vmlinux 0x71d6b21d skb_copy_expand EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources EXPORT_SYMBOL vmlinux 0x71e18ff1 register_cdrom EXPORT_SYMBOL vmlinux 0x71f69a8e md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x71fa11be ipv4_specific -EXPORT_SYMBOL vmlinux 0x72017ce7 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x72073f03 vfs_tmpfile EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x720cd8e5 block_write_full_page EXPORT_SYMBOL vmlinux 0x72160101 input_enable_softrepeat EXPORT_SYMBOL vmlinux 0x721ed444 page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0x722671c4 generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x7234973a phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x72226ba7 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x7226094d lock_rename EXPORT_SYMBOL vmlinux 0x7238959c padata_do_serial EXPORT_SYMBOL vmlinux 0x7239071d stop_tty -EXPORT_SYMBOL vmlinux 0x7240d621 secpath_set EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x727f17a5 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x7272bd12 locks_free_lock +EXPORT_SYMBOL vmlinux 0x727f7095 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x729a1d18 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x72ac3308 ether_setup EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b884be may_umount EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72ca9689 tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0x72cf33ce tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x72d42dfa __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x72bc5a98 sock_gettstamp EXPORT_SYMBOL vmlinux 0x72d79d83 pgdir_shift EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72ee3e1f i2c_smbus_read_block_data EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x72fe9512 posix_lock_file -EXPORT_SYMBOL vmlinux 0x730e5f37 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x73058f06 vme_irq_generate EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x7315eccc netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0x7319063c tty_port_destroy +EXPORT_SYMBOL vmlinux 0x73198353 skb_realloc_headroom EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal -EXPORT_SYMBOL vmlinux 0x732b3ed1 netif_skb_features EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x7334a8c8 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x733968a0 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x733ec20a unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x7352d044 ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x7359b289 rc5t583_ext_power_req_config EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x7360f172 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0x7372f32b __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x7377a1f1 sync_filesystem +EXPORT_SYMBOL vmlinux 0x736f5b91 nonseekable_open EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x73905cdf __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x73986f9f mr_table_dump -EXPORT_SYMBOL vmlinux 0x739aa255 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x738afef6 phy_attached_info +EXPORT_SYMBOL vmlinux 0x738bb439 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x73a4822e scsi_set_medium_removal EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range EXPORT_SYMBOL vmlinux 0x73bc5522 kobject_add EXPORT_SYMBOL vmlinux 0x73c36f9e bioset_init -EXPORT_SYMBOL vmlinux 0x73db6d05 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x73c909c5 secpath_set EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable EXPORT_SYMBOL vmlinux 0x73e1701c from_kprojid +EXPORT_SYMBOL vmlinux 0x73e933ed security_sctp_bind_connect EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi EXPORT_SYMBOL vmlinux 0x740a75ac pcibios_resource_to_bus EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace @@ -8629,578 +8474,598 @@ EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x743097e3 fget_raw +EXPORT_SYMBOL vmlinux 0x743cb6c6 __scm_destroy EXPORT_SYMBOL vmlinux 0x74400ffb update_region EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x745583a1 __traceiter_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x7456b792 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x7457710b mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x7472dfe8 arp_xmit EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x747daf31 i2c_transfer EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x74921567 phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0x7495ed04 blk_mq_start_hw_queues EXPORT_SYMBOL vmlinux 0x7496d6cf rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x74a4d386 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x74a48ef9 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x74ae1e8a ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x74b47c7d flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0x74b8b317 iunique EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss -EXPORT_SYMBOL vmlinux 0x74bea6d2 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x74bd8d6d scsi_free_host_dev EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74e59e0b flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x74c815b9 vme_register_bridge EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x75003bba vfs_parse_fs_param EXPORT_SYMBOL vmlinux 0x75066bab inode_update_time EXPORT_SYMBOL vmlinux 0x7508132f blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x7520b13e __hw_addr_sync_dev EXPORT_SYMBOL vmlinux 0x7530bb0c __SCT__tp_func_write_msr EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x75390acf jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x753fa8b3 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x75489e41 kernel_bind +EXPORT_SYMBOL vmlinux 0x754c3052 sock_no_mmap EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x75551955 vfs_getattr EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x757314b4 block_write_begin +EXPORT_SYMBOL vmlinux 0x7580d0ae phy_advertise_supported EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock +EXPORT_SYMBOL vmlinux 0x75af713e unregister_binfmt +EXPORT_SYMBOL vmlinux 0x75bda1ae pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75c2180a netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0x75c43fb9 devm_ioport_map EXPORT_SYMBOL vmlinux 0x75c6cc5b pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x75cad260 rtnl_set_sk_err EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75eb6fa7 jbd2_complete_transaction EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760d07b6 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x76130e69 begin_new_exec EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7619864b xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x7636e7f1 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x76375b82 console_start EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq EXPORT_SYMBOL vmlinux 0x764cadad dma_map_sg_attrs EXPORT_SYMBOL vmlinux 0x7652fb0f nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x765a05af vfs_copy_file_range EXPORT_SYMBOL vmlinux 0x765c7d34 to_nd_btt +EXPORT_SYMBOL vmlinux 0x765fcf37 __tracepoint_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x7660caf1 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x76690913 qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x766fb24b capable_wrt_inode_uidgid EXPORT_SYMBOL vmlinux 0x766ff299 pci_set_power_state EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc EXPORT_SYMBOL vmlinux 0x767ea4ed pci_ep_cfs_add_epc_group EXPORT_SYMBOL vmlinux 0x76817a9f devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0x768d5be5 skb_put -EXPORT_SYMBOL vmlinux 0x768f0d1c __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x7688598b ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x768876b5 twl6040_set_bits EXPORT_SYMBOL vmlinux 0x769a9144 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0x769d6675 blk_put_queue EXPORT_SYMBOL vmlinux 0x769eb774 blk_mq_start_hw_queue EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76af6350 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x76b07831 skb_copy_header EXPORT_SYMBOL vmlinux 0x76b39cc0 uart_remove_one_port EXPORT_SYMBOL vmlinux 0x76c30af9 unregister_nls EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d5bec8 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x76e41408 mmc_put_card -EXPORT_SYMBOL vmlinux 0x76ef60e0 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x76e326e5 proto_unregister +EXPORT_SYMBOL vmlinux 0x76eeead2 flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0x76f2ddfe blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x76f4c7aa __vfs_setxattr EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier -EXPORT_SYMBOL vmlinux 0x7700ede2 xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0x77076f9c __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x7709331f ip6mr_rule_default EXPORT_SYMBOL vmlinux 0x770adc93 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x771aa380 inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x77207463 fsync_bdev -EXPORT_SYMBOL vmlinux 0x772bfbb8 security_inode_invalidate_secctx EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource EXPORT_SYMBOL vmlinux 0x773cf491 __dec_zone_page_state EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x775d1c66 inet_unregister_protosw EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 EXPORT_SYMBOL vmlinux 0x777a47ff override_creds EXPORT_SYMBOL vmlinux 0x777d53f7 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x778c6317 udp_gro_receive EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x779e63a1 __SCK__tp_func_module_get EXPORT_SYMBOL vmlinux 0x77bc13a0 strim EXPORT_SYMBOL vmlinux 0x77be46b2 config_item_put -EXPORT_SYMBOL vmlinux 0x77c776ba tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0x77c863a8 tty_unlock EXPORT_SYMBOL vmlinux 0x77d36751 input_match_device_id +EXPORT_SYMBOL vmlinux 0x77d4735d cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x77db1401 skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77efb611 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x77f6be3e fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0x780763ae pm860x_bulk_read EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt -EXPORT_SYMBOL vmlinux 0x7818e628 dump_emit EXPORT_SYMBOL vmlinux 0x781c07c4 rproc_detach EXPORT_SYMBOL vmlinux 0x7834defd vfio_group_unpin_pages EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r EXPORT_SYMBOL vmlinux 0x785d964e bdev_read_only EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788718e8 tcp_req_err EXPORT_SYMBOL vmlinux 0x7889868f devm_mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0x7889b9c6 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x7893f50e sk_mc_loop -EXPORT_SYMBOL vmlinux 0x7897d69b inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x789a9b04 fqdir_init EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x789cf3dd vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x789b509a sockfd_lookup EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a5e508 phy_suspend EXPORT_SYMBOL vmlinux 0x78b1543b pci_bus_write_config_byte EXPORT_SYMBOL vmlinux 0x78b79ff7 truncate_inode_pages_range EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78cf4951 acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0x78dac52b tcp_sendpage +EXPORT_SYMBOL vmlinux 0x78c10f86 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x78d5f3a0 ptp_cancel_worker_sync EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78f37a2b flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x78f45035 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x78e9d88a dcb_getapp EXPORT_SYMBOL vmlinux 0x79068ebc register_md_personality EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x79118915 __SCK__tp_func_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x7917e8d3 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x792c0b70 logfc -EXPORT_SYMBOL vmlinux 0x793efe14 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x793c40e7 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x7945050e __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x79466ed3 qdisc_hash_del EXPORT_SYMBOL vmlinux 0x795a5bdb kthread_bind +EXPORT_SYMBOL vmlinux 0x796170ed netdev_crit +EXPORT_SYMBOL vmlinux 0x7970619a devfreq_update_status EXPORT_SYMBOL vmlinux 0x79709fca d_instantiate_new EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin EXPORT_SYMBOL vmlinux 0x797d8d3f frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x7983c65d pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x797dafb0 kernel_write +EXPORT_SYMBOL vmlinux 0x798119f4 netdev_reset_tc EXPORT_SYMBOL vmlinux 0x7984eefc key_update EXPORT_SYMBOL vmlinux 0x798f46a0 vga_switcheroo_get_client_state EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79bcccc4 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x79d69dc5 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x79db4953 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x79a50a42 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x79c529f3 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x79cc22ad qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a0dc2ef vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x7a121efe scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x7a114f70 __tracepoint_write_msr EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a2aa95a security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a3c5715 __scm_send +EXPORT_SYMBOL vmlinux 0x7a35a105 tcp_rtx_synack EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a556b18 dev_graft_qdisc EXPORT_SYMBOL vmlinux 0x7a710f29 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x7a7b8d7d xfrm_user_policy EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write -EXPORT_SYMBOL vmlinux 0x7a8b29c7 put_devmap_managed_page EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9922de inet_frags_init +EXPORT_SYMBOL vmlinux 0x7a9aa9d4 skb_queue_tail EXPORT_SYMBOL vmlinux 0x7a9b5ca5 of_find_mipi_dsi_device_by_node EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aaf7b5c pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x7aa4632b __page_cache_alloc EXPORT_SYMBOL vmlinux 0x7ab45d25 dma_fence_array_create EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7acdf4ec dev_get_by_name EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae8e4b6 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x7afbac7f page_cache_next_miss EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x7b077315 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x7b046d4b fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0x7b0aeebd tty_insert_flip_string_fixed_flag EXPORT_SYMBOL vmlinux 0x7b17f378 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x7b208ddb send_sig_info -EXPORT_SYMBOL vmlinux 0x7b2c3f66 dev_graft_qdisc EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b393a49 gnet_stats_finish_copy EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem -EXPORT_SYMBOL vmlinux 0x7b52340a netif_carrier_on EXPORT_SYMBOL vmlinux 0x7b524afd key_validate +EXPORT_SYMBOL vmlinux 0x7b579841 sk_net_capable EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update EXPORT_SYMBOL vmlinux 0x7b5d29b5 pci_match_id -EXPORT_SYMBOL vmlinux 0x7b69bc38 __check_sticky -EXPORT_SYMBOL vmlinux 0x7b6c7060 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x7b6f4d1c dentry_path_raw +EXPORT_SYMBOL vmlinux 0x7b720385 finish_open EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b853b7c flush_signals EXPORT_SYMBOL vmlinux 0x7b8bfdd1 cdrom_release -EXPORT_SYMBOL vmlinux 0x7b9cc8d4 tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0x7b9de409 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x7b9a1572 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x7ba8b825 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x7baa9ae1 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x7bb14643 vlan_vids_del_by_dev EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write -EXPORT_SYMBOL vmlinux 0x7bbb830f __skb_checksum EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bccf796 vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0x7bd86fa3 I_BDEV -EXPORT_SYMBOL vmlinux 0x7becde64 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x7bf6bbdf phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0x7bfd804b generic_block_bmap +EXPORT_SYMBOL vmlinux 0x7bdfd4e0 migrate_page +EXPORT_SYMBOL vmlinux 0x7c0055ea mmc_erase_group_aligned EXPORT_SYMBOL vmlinux 0x7c1093d1 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x7c15fa9e vme_irq_handler EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c25ae25 tso_build_data +EXPORT_SYMBOL vmlinux 0x7c21674a xfrm6_rcv EXPORT_SYMBOL vmlinux 0x7c25e621 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x7c2947f7 ip_options_compile EXPORT_SYMBOL vmlinux 0x7c2eb688 fscrypt_fname_disk_to_usr EXPORT_SYMBOL vmlinux 0x7c2f1c86 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x7c3d0eb1 add_to_pipe +EXPORT_SYMBOL vmlinux 0x7c44dcba tcf_idr_cleanup EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get EXPORT_SYMBOL vmlinux 0x7c478289 vga_switcheroo_client_probe_defer EXPORT_SYMBOL vmlinux 0x7c4e7cdc fs_lookup_param -EXPORT_SYMBOL vmlinux 0x7c522749 __tracepoint_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x7c862bb9 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x7c8520de phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0x7c8674c6 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x7c89d57e path_put EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7c9dd825 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x7cac8abf dev_change_flags +EXPORT_SYMBOL vmlinux 0x7cad1b92 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet EXPORT_SYMBOL vmlinux 0x7cb3605b blk_queue_io_opt EXPORT_SYMBOL vmlinux 0x7cb6f976 agp_alloc_bridge EXPORT_SYMBOL vmlinux 0x7cc58402 phy_modify_paged_changed EXPORT_SYMBOL vmlinux 0x7ccf617c serio_unregister_child_port EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base +EXPORT_SYMBOL vmlinux 0x7cdd3af9 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x7ce14608 blk_queue_flag_set EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7ce770b9 locks_init_lock EXPORT_SYMBOL vmlinux 0x7ced78e4 d_instantiate_anon EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free EXPORT_SYMBOL vmlinux 0x7cf64a64 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x7cf6c25d udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0x7cfa337b is_nd_dax EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d022788 netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0x7d0529d2 blk_mq_start_stopped_hw_queues 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 0x7d1bc36b dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x7d24b737 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0x7d3055d1 mount_single -EXPORT_SYMBOL vmlinux 0x7d3e1bf7 filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0x7d446e88 __block_write_begin +EXPORT_SYMBOL vmlinux 0x7d347267 tc_cleanup_flow_action EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit EXPORT_SYMBOL vmlinux 0x7d51328d del_gendisk -EXPORT_SYMBOL vmlinux 0x7d525dc0 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x7d525dd9 genphy_loopback +EXPORT_SYMBOL vmlinux 0x7d52aa92 mmc_erase EXPORT_SYMBOL vmlinux 0x7d54e4af uart_resume_port EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio EXPORT_SYMBOL vmlinux 0x7d6fcdfd thaw_bdev EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d7e946f nf_reinject -EXPORT_SYMBOL vmlinux 0x7d870e3d inet6_ioctl -EXPORT_SYMBOL vmlinux 0x7d8d873d netdev_change_features +EXPORT_SYMBOL vmlinux 0x7da92608 genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x7dad6917 alloc_file_pseudo EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dc4c6d1 dev_add_offload EXPORT_SYMBOL vmlinux 0x7dca5f20 cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe -EXPORT_SYMBOL vmlinux 0x7ddfaf08 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x7dd7b4bc __module_get +EXPORT_SYMBOL vmlinux 0x7de562df __sock_create EXPORT_SYMBOL vmlinux 0x7ded888b blk_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args EXPORT_SYMBOL vmlinux 0x7df44163 textsearch_find_continuous EXPORT_SYMBOL vmlinux 0x7df951b4 input_register_handle +EXPORT_SYMBOL vmlinux 0x7e098af2 lookup_one +EXPORT_SYMBOL vmlinux 0x7e18e330 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x7e2a2a66 twl6040_set_pll EXPORT_SYMBOL vmlinux 0x7e2cf3b6 tty_register_driver EXPORT_SYMBOL vmlinux 0x7e2d7092 to_nd_dax EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e3d078e block_is_partially_uptodate EXPORT_SYMBOL vmlinux 0x7e457276 sg_miter_next EXPORT_SYMBOL vmlinux 0x7e491e4c pm860x_set_bits EXPORT_SYMBOL vmlinux 0x7e4d00fc devm_request_resource +EXPORT_SYMBOL vmlinux 0x7e5b783c mmc_put_card EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu EXPORT_SYMBOL vmlinux 0x7e8145df input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x7e858364 flow_rule_alloc EXPORT_SYMBOL vmlinux 0x7e8c70ae kthread_create_worker EXPORT_SYMBOL vmlinux 0x7e92606b blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x7ea199c5 nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0x7ea32741 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x7eb0fdd0 tso_start -EXPORT_SYMBOL vmlinux 0x7eb8bc4d nf_log_register EXPORT_SYMBOL vmlinux 0x7ee9a495 devm_clk_get EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f06efea ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0x7f07418b __SCT__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x7f0f8205 ipv6_push_frag_opts EXPORT_SYMBOL vmlinux 0x7f14ac73 config_group_init -EXPORT_SYMBOL vmlinux 0x7f1ba910 vme_dma_list_exec EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f256ac2 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x7f2f7169 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x7f51ab86 mmc_request_done +EXPORT_SYMBOL vmlinux 0x7f4f54a2 mmc_gpio_set_cd_wake EXPORT_SYMBOL vmlinux 0x7f52071a net_dim EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table EXPORT_SYMBOL vmlinux 0x7f668135 dquot_release +EXPORT_SYMBOL vmlinux 0x7f7802e3 mdiobus_get_phy EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7fb22d84 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x7fb42d15 passthru_features_check EXPORT_SYMBOL vmlinux 0x7fbe602c nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x7fd06c9d devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x7fde38c7 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x7fdf0dbc dev_remove_pack EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe66a2b phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x7fe9de68 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x7ffd4068 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x7ff923a2 skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0x800af0c9 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x801e67ee __pagevec_release +EXPORT_SYMBOL vmlinux 0x800d81f2 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x8012210c kern_unmount_array +EXPORT_SYMBOL vmlinux 0x801bf50f skb_eth_pop EXPORT_SYMBOL vmlinux 0x801e8735 single_open -EXPORT_SYMBOL vmlinux 0x80263e8e __skb_recv_datagram EXPORT_SYMBOL vmlinux 0x80370177 __dec_node_page_state EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x80403dd7 register_netdev +EXPORT_SYMBOL vmlinux 0x803e03ec mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x8046019d sock_wmalloc +EXPORT_SYMBOL vmlinux 0x804a6eeb eth_gro_receive EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x804c3bba sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x805a2135 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x804cee5e __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0x806dbf5d pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x808131e7 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0x808b13b5 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x808a4190 scsi_host_put EXPORT_SYMBOL vmlinux 0x808fc611 simple_open EXPORT_SYMBOL vmlinux 0x80935c82 tty_lock EXPORT_SYMBOL vmlinux 0x8094586c md_bitmap_sync_with_cluster EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack EXPORT_SYMBOL vmlinux 0x8097d969 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x80a6db48 __mmc_claim_host EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare EXPORT_SYMBOL vmlinux 0x80a7c730 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x80a9fec9 sock_set_mark -EXPORT_SYMBOL vmlinux 0x80ac0823 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x80afcc8e __brelse EXPORT_SYMBOL vmlinux 0x80bd8420 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x80c69546 tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0x80c98300 pcim_iomap_table EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd EXPORT_SYMBOL vmlinux 0x80cd2469 scsi_rescan_device EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80da29bb tcf_qevent_validate_change EXPORT_SYMBOL vmlinux 0x80e0e6e9 rproc_vq_interrupt EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer EXPORT_SYMBOL vmlinux 0x80ead88b pci_bus_set_ops EXPORT_SYMBOL vmlinux 0x80ed2b83 iov_iter_kvec EXPORT_SYMBOL vmlinux 0x80efa901 fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x80fa8cec eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x80f8cf05 blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x8115abcf xfrm_state_add EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x8119be15 gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0x8128041d __devm_release_region EXPORT_SYMBOL vmlinux 0x81363124 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x813763d3 nf_log_unset EXPORT_SYMBOL vmlinux 0x814705ab blk_mq_rq_cpu EXPORT_SYMBOL vmlinux 0x814b55f3 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x814f72ea i2c_smbus_write_byte_data 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 0x816ba2bd security_skb_classify_flow EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information EXPORT_SYMBOL vmlinux 0x8185baa8 __alloc_pages EXPORT_SYMBOL vmlinux 0x81979bbc unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x81a5c64b jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x81b1c5f9 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x81b318a7 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x81c97b7b xfrm_state_add EXPORT_SYMBOL vmlinux 0x81ce9941 intel_scu_ipc_dev_writev +EXPORT_SYMBOL vmlinux 0x81cf8aa8 vfs_create_mount EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e45c4c posix_test_lock EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81e823e6 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x81eb35be splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x81f2240f sock_create_kern EXPORT_SYMBOL vmlinux 0x8200e119 vm_map_ram -EXPORT_SYMBOL vmlinux 0x8215e89c devm_register_netdev -EXPORT_SYMBOL vmlinux 0x821b8814 __tracepoint_write_msr -EXPORT_SYMBOL vmlinux 0x8220be5a fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x8222b15f mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x820c4aa9 sock_register +EXPORT_SYMBOL vmlinux 0x821c1d87 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x822f2742 xp_alloc EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked -EXPORT_SYMBOL vmlinux 0x82616e1c dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x823d4ae3 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x824d4c0d inet_addr_type_table EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec EXPORT_SYMBOL vmlinux 0x8272851f thaw_super EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x8284d404 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x828951f4 lock_rename +EXPORT_SYMBOL vmlinux 0x82816aa2 neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0x82a2408f cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x82b2fbae dev_set_alias +EXPORT_SYMBOL vmlinux 0x82aa50e3 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x82b8a27f pipe_lock EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82cc0400 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x82d29d86 pagecache_write_end EXPORT_SYMBOL vmlinux 0x82e7b9d1 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x82e8cddf skb_pull EXPORT_SYMBOL vmlinux 0x82e9f82f serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x8319a4a9 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync +EXPORT_SYMBOL vmlinux 0x830b8ebf __SCK__tp_func_spi_transfer_start EXPORT_SYMBOL vmlinux 0x83253110 param_ops_bool -EXPORT_SYMBOL vmlinux 0x8338023a generic_file_mmap +EXPORT_SYMBOL vmlinux 0x832fbb0d xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0x83525a3b iov_iter_single_seg_count EXPORT_SYMBOL vmlinux 0x8352d95f jbd2__journal_restart EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle EXPORT_SYMBOL vmlinux 0x83599202 seq_read -EXPORT_SYMBOL vmlinux 0x836035d8 reuseport_add_sock -EXPORT_SYMBOL vmlinux 0x83681665 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x835f20dd sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x8363e96f mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x8379599d tcf_get_next_chain EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x8387e96e nf_log_unset EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x838dbd3e neigh_parms_release +EXPORT_SYMBOL vmlinux 0x838dd702 __tracepoint_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x839670ab dm_put_device -EXPORT_SYMBOL vmlinux 0x83c78224 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x83ca2e34 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x83b8a976 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x83c6110e rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x83cfd274 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x83d7d0e4 security_old_inode_init_security EXPORT_SYMBOL vmlinux 0x83f574c1 vga_switcheroo_register_handler EXPORT_SYMBOL vmlinux 0x83fe8d5a dma_resv_fini EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x8413b028 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x840c298d tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq EXPORT_SYMBOL vmlinux 0x84280f61 tty_do_resize EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 +EXPORT_SYMBOL vmlinux 0x8435fd41 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x8453dc2d kill_pgrp EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x84771a63 dst_init +EXPORT_SYMBOL vmlinux 0x84627c3b __tracepoint_kmem_cache_free EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 -EXPORT_SYMBOL vmlinux 0x84a30cdd tcf_block_get +EXPORT_SYMBOL vmlinux 0x84be4c3e _dev_warn EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x84c49cc0 init_task -EXPORT_SYMBOL vmlinux 0x84c7557c sock_no_listen EXPORT_SYMBOL vmlinux 0x84c889c4 set_anon_super EXPORT_SYMBOL vmlinux 0x84d8db29 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x84fb916b ip6_dst_check -EXPORT_SYMBOL vmlinux 0x851375ea phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x84dc0f25 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x84f7253c security_inet_conn_established EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh EXPORT_SYMBOL vmlinux 0x8522d6bc strncpy_from_user -EXPORT_SYMBOL vmlinux 0x85291e60 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x853bbdb4 shmem_aops +EXPORT_SYMBOL vmlinux 0x85311936 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x853be07f jbd2_journal_check_available_features EXPORT_SYMBOL vmlinux 0x854979ea insert_inode_locked -EXPORT_SYMBOL vmlinux 0x85532e66 security_path_mkdir EXPORT_SYMBOL vmlinux 0x855d8f30 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x85600b06 tcp_md5_do_add EXPORT_SYMBOL vmlinux 0x8565084c blk_queue_bounce_limit EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked EXPORT_SYMBOL vmlinux 0x856a1cff register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x856a355a inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0x856ca32b get_cached_acl_rcu EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x859223a1 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x85a11b9b write_inode_now EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states EXPORT_SYMBOL vmlinux 0x85bb1084 unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0x85bb9eef __sk_mem_reduce_allocated EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region EXPORT_SYMBOL vmlinux 0x85c18439 pcix_set_mmrbc EXPORT_SYMBOL vmlinux 0x85d7e4d5 backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0x85dd3f82 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x85dbd746 genphy_soft_reset EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e149cf security_tun_dev_attach EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn EXPORT_SYMBOL vmlinux 0x860287a1 seq_path EXPORT_SYMBOL vmlinux 0x8618b7d5 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x86388923 fget +EXPORT_SYMBOL vmlinux 0x86286f45 ppp_unregister_compressor EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x864bd858 __tracepoint_kfree EXPORT_SYMBOL vmlinux 0x864da8a1 max8998_update_reg -EXPORT_SYMBOL vmlinux 0x865c87a6 skb_find_text -EXPORT_SYMBOL vmlinux 0x867adec5 phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0x868acba5 get_options EXPORT_SYMBOL vmlinux 0x869a9798 vc_cons EXPORT_SYMBOL vmlinux 0x86bd5fe5 dcache_readdir EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x86ce0421 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x86d139d9 tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x86f6c936 inode_io_list_del EXPORT_SYMBOL vmlinux 0x86fb4536 cpumask_any_and_distribute EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user EXPORT_SYMBOL vmlinux 0x8714563b csum_and_copy_from_user -EXPORT_SYMBOL vmlinux 0x873db1d4 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x8740f825 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x8716ab25 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x8731310b sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x8738a431 genphy_read_status EXPORT_SYMBOL vmlinux 0x874158a5 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x8757eff3 kill_pid +EXPORT_SYMBOL vmlinux 0x8754e194 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x87572576 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x875cbc8c skb_checksum_help EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed EXPORT_SYMBOL vmlinux 0x8768a39a pnpacpi_protocol EXPORT_SYMBOL vmlinux 0x87706d4e __put_user_nocheck_8 EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x877fb92f fb_set_var EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x8785007b xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x87874ab4 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x8790daac __traceiter_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x8792f605 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x879ca765 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds EXPORT_SYMBOL vmlinux 0x87b300f2 dquot_quota_on_mount EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87bcdaee ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0x87d70881 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0x87d7a501 __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0x87db19e3 get_thermal_instance EXPORT_SYMBOL vmlinux 0x87e6671b vga_client_register -EXPORT_SYMBOL vmlinux 0x87ea720f skb_dequeue_tail EXPORT_SYMBOL vmlinux 0x87f198c0 register_md_cluster_operations EXPORT_SYMBOL vmlinux 0x87f22c0a pci_remove_bus -EXPORT_SYMBOL vmlinux 0x880919d8 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x87f716be tcp_stream_memory_free EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x881cd042 devfreq_update_interval EXPORT_SYMBOL vmlinux 0x882c5395 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x885bb07b __breadahead +EXPORT_SYMBOL vmlinux 0x88682553 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x88743630 sk_stream_error EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8885dbbb register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x888d92b0 flow_block_cb_incref EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x88a18300 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x88a5bfa7 file_ns_capable EXPORT_SYMBOL vmlinux 0x88aa82f8 pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88bff43a rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x88b4a4cb tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x88b59076 xfrm_parse_spi EXPORT_SYMBOL vmlinux 0x88cff69f md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x88d303b0 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x88d133d1 get_task_cred EXPORT_SYMBOL vmlinux 0x88d4f818 dqget EXPORT_SYMBOL vmlinux 0x88d5ae68 agp_generic_enable EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free EXPORT_SYMBOL vmlinux 0x88e77584 d_delete +EXPORT_SYMBOL vmlinux 0x88ef6280 skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0x891d6ddf nd_region_release_lane EXPORT_SYMBOL vmlinux 0x891e1751 simple_nosetlease EXPORT_SYMBOL vmlinux 0x89243b5b input_unregister_handle EXPORT_SYMBOL vmlinux 0x89283204 pps_register_source +EXPORT_SYMBOL vmlinux 0x8937c688 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x893d4dbb __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x893ec609 padata_do_parallel EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear EXPORT_SYMBOL vmlinux 0x8944949a cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x8946aece phy_attached_info_irq EXPORT_SYMBOL vmlinux 0x894e4304 clk_bulk_get -EXPORT_SYMBOL vmlinux 0x8955dc0e __neigh_create EXPORT_SYMBOL vmlinux 0x8962c793 pcie_capability_write_word EXPORT_SYMBOL vmlinux 0x89638baf fs_param_is_enum -EXPORT_SYMBOL vmlinux 0x897a490b sock_no_ioctl EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0x89a23081 is_acpi_data_node EXPORT_SYMBOL vmlinux 0x89a24e4d pci_restore_state -EXPORT_SYMBOL vmlinux 0x89b4e276 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x89b657d6 netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0x89d007f0 amd_iommu_complete_ppr -EXPORT_SYMBOL vmlinux 0x89d80187 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x89e21a27 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x89f3818d scsi_target_resume -EXPORT_SYMBOL vmlinux 0x8a0dabf3 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x89d25272 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x89e9fe25 skb_set_owner_w EXPORT_SYMBOL vmlinux 0x8a0faa67 iov_iter_npages -EXPORT_SYMBOL vmlinux 0x8a194168 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x8a1f90bb netdev_upper_get_next_dev_rcu EXPORT_SYMBOL vmlinux 0x8a23e3a5 kthread_stop EXPORT_SYMBOL vmlinux 0x8a25315a t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x8a2979e7 fget EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask +EXPORT_SYMBOL vmlinux 0x8a43cea8 tcp_syn_ack_timeout EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4a2dd8 phy_loopback EXPORT_SYMBOL vmlinux 0x8a528285 pci_pme_active -EXPORT_SYMBOL vmlinux 0x8a61b6da scsi_eh_restore_cmnd EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a78e25d phy_attached_info_irq EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a8b8ddf security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x8a96a300 nobh_write_end -EXPORT_SYMBOL vmlinux 0x8a9836c5 dump_page +EXPORT_SYMBOL vmlinux 0x8a88478f tcp_v4_mtu_reduced EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa766d7 key_type_keyring +EXPORT_SYMBOL vmlinux 0x8abcbb25 ipv4_specific +EXPORT_SYMBOL vmlinux 0x8abe0b39 seg6_push_hmac EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8aca4465 jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x8acb6b15 param_set_int -EXPORT_SYMBOL vmlinux 0x8add1de5 try_module_get EXPORT_SYMBOL vmlinux 0x8ae8aa3d adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x8aeb54f4 nexthop_set_hw_flags EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b0365e4 __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0x8b097e81 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x8b174d9c __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x8b1e6888 inet_del_offload EXPORT_SYMBOL vmlinux 0x8b24f627 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x8b2c0db0 scsi_print_result -EXPORT_SYMBOL vmlinux 0x8b4a2d74 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x8b2fc98c unregister_console +EXPORT_SYMBOL vmlinux 0x8b4a4f5c vmf_insert_pfn EXPORT_SYMBOL vmlinux 0x8b55273d fs_param_is_bool EXPORT_SYMBOL vmlinux 0x8b5bc5b3 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x8b5bf994 neigh_resolve_output EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b7ad25a netif_rx_ni +EXPORT_SYMBOL vmlinux 0x8b646123 udplite_prot +EXPORT_SYMBOL vmlinux 0x8b67f08f crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x8b751146 dcb_ieee_setapp EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b81418f i2c_smbus_write_byte_data EXPORT_SYMBOL vmlinux 0x8b83c5d2 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x8b85d4c6 send_sig_info EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample EXPORT_SYMBOL vmlinux 0x8b966b63 sn_rtc_cycles_per_second EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9b040e neigh_for_each EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8ba5d508 read_cache_page +EXPORT_SYMBOL vmlinux 0x8bc139ee mmc_start_request +EXPORT_SYMBOL vmlinux 0x8bca7031 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x8bcc0d44 sdev_enable_disk_events EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x8be03013 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x8be7e850 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x8be39b05 dev_get_phys_port_name EXPORT_SYMBOL vmlinux 0x8bf2ab15 dquot_transfer -EXPORT_SYMBOL vmlinux 0x8bf67d99 netif_rx -EXPORT_SYMBOL vmlinux 0x8c024574 xfrm4_udp_encap_rcv +EXPORT_SYMBOL vmlinux 0x8c076e73 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x8c0fb6e6 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x8c1b98c3 inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event EXPORT_SYMBOL vmlinux 0x8c2b27fe devm_free_irq -EXPORT_SYMBOL vmlinux 0x8c3224ef phy_register_fixup EXPORT_SYMBOL vmlinux 0x8c326402 vma_set_file -EXPORT_SYMBOL vmlinux 0x8c3c650d genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x8c591a0d jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x8c681473 flow_block_cb_free EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x8c70e8c2 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x8c6e84eb devm_devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x8c735474 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x8c7960db __netlink_ns_capable EXPORT_SYMBOL vmlinux 0x8c7c4427 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0x8c7f908d inet_frags_init +EXPORT_SYMBOL vmlinux 0x8c806d91 filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c909632 tcf_register_action EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8c9fb75b pipe_unlock EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cb127bc dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0x8cb738c8 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x8cbca2a8 skb_copy_bits EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep EXPORT_SYMBOL vmlinux 0x8cda4ab8 bio_kmalloc EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8ce3d6c5 unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x8ceb92dc devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x8cef5d6a __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0x8d00375e elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x8d19aef4 file_open_root -EXPORT_SYMBOL vmlinux 0x8d27e3e5 sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0x8d46e95a sock_register -EXPORT_SYMBOL vmlinux 0x8d4e2af6 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x8d0f9409 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x8d376db2 skb_flow_dissect_hash EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq EXPORT_SYMBOL vmlinux 0x8d57b12e unpin_user_page EXPORT_SYMBOL vmlinux 0x8d60652c __SCT__tp_func_mmap_lock_released @@ -9208,513 +9073,510 @@ EXPORT_SYMBOL vmlinux 0x8d67600e serial8250_register_8250_port EXPORT_SYMBOL vmlinux 0x8d6aff89 __put_user_nocheck_4 EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper EXPORT_SYMBOL vmlinux 0x8d7b078e mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x8d864379 seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x8db15ae5 nf_log_bind_pf EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x8dd3c6ba flow_rule_match_mpls EXPORT_SYMBOL vmlinux 0x8dd3f604 devm_of_find_backlight EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x8df57b21 disk_end_io_acct EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df97f1b netdev_upper_get_next_dev_rcu EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8dface79 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x8e0ed917 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x8e127b65 phy_ethtool_get_wol EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e198dba devfreq_suspend_device EXPORT_SYMBOL vmlinux 0x8e19ce45 input_register_handler +EXPORT_SYMBOL vmlinux 0x8e1cd0d2 vme_dma_request EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x8e2c86b6 vif_device_init -EXPORT_SYMBOL vmlinux 0x8e32dcb5 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x8e26b893 netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0x8e388bb9 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x8e3ce6ce scsi_block_when_processing_errors EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable EXPORT_SYMBOL vmlinux 0x8e3e5524 single_release -EXPORT_SYMBOL vmlinux 0x8e4d7641 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x8e435dea bh_submit_read EXPORT_SYMBOL vmlinux 0x8e663d0f zalloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x8e6baf2e phy_connect EXPORT_SYMBOL vmlinux 0x8e7e4b0c file_remove_privs -EXPORT_SYMBOL vmlinux 0x8e8b1398 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x8e9185d0 jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x8e92169b qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x8e934d6c flow_rule_match_icmp EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e9e1fbe sock_wake_async -EXPORT_SYMBOL vmlinux 0x8e9eb8be ppp_unit_number EXPORT_SYMBOL vmlinux 0x8e9ee22e dma_find_channel EXPORT_SYMBOL vmlinux 0x8ea605ce blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x8ea667b9 tcf_em_tree_validate EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler -EXPORT_SYMBOL vmlinux 0x8ed8c9d5 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x8ee0bfc5 __ip_dev_find EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f20bbfb tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x8f1773e6 inet_shutdown EXPORT_SYMBOL vmlinux 0x8f25a0e3 dmaenginem_async_device_register EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus EXPORT_SYMBOL vmlinux 0x8f2b9fc3 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x8f49fde1 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x8f549727 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x8f6b47da ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x8f38d469 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x8f5f336f flow_rule_match_enc_opts EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0x8f91ac07 inet_csk_accept EXPORT_SYMBOL vmlinux 0x8f9650d8 scsi_is_target_device EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa06a79 flow_rule_match_enc_ports EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fda795b xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x8fb7bcce __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x8fd14d63 phy_attach +EXPORT_SYMBOL vmlinux 0x8fd5b99f inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds -EXPORT_SYMBOL vmlinux 0x8fecf3ea phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x8fdcec47 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x9012bccf scsi_print_sense_hdr EXPORT_SYMBOL vmlinux 0x901410d8 simple_link EXPORT_SYMBOL vmlinux 0x9018e07d rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x902821b0 i2c_smbus_read_i2c_block_data_or_emulated EXPORT_SYMBOL vmlinux 0x9028469b alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x902ca158 iterate_dir EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x90364066 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x9036bccc __ip_dev_find EXPORT_SYMBOL vmlinux 0x9039ccb7 blk_mq_alloc_request EXPORT_SYMBOL vmlinux 0x904354ef pci_iounmap -EXPORT_SYMBOL vmlinux 0x90489ca5 seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0x90492404 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x9049e720 try_to_release_page +EXPORT_SYMBOL vmlinux 0x905512bd phy_stop EXPORT_SYMBOL vmlinux 0x90553eb9 blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x9061fd41 inet_csk_reset_keepalive_timer EXPORT_SYMBOL vmlinux 0x906218c2 dquot_free_inode EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override -EXPORT_SYMBOL vmlinux 0x9080077a pipe_lock EXPORT_SYMBOL vmlinux 0x909001d0 rfkill_alloc -EXPORT_SYMBOL vmlinux 0x9097f118 mdiobus_write_nested EXPORT_SYMBOL vmlinux 0x909aeee1 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x90a7061d nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x90b630c0 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x90be0ee6 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x90beb727 __kfree_skb EXPORT_SYMBOL vmlinux 0x90bf7965 request_key_rcu -EXPORT_SYMBOL vmlinux 0x90c337fc inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x90cc85b1 migrate_page +EXPORT_SYMBOL vmlinux 0x90c50c4e __tracepoint_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x90d75e3e pci_enable_atomic_ops_to_root EXPORT_SYMBOL vmlinux 0x90dc1eb1 inode_owner_or_capable EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp +EXPORT_SYMBOL vmlinux 0x90ee8ec5 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x90f7476b security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0x910be6ce mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x9111afc2 kern_unmount +EXPORT_SYMBOL vmlinux 0x91135c99 xfrm_state_lookup_byaddr EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x9124d506 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x912d3743 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x91524573 mount_subtree -EXPORT_SYMBOL vmlinux 0x91585005 lookup_one_len +EXPORT_SYMBOL vmlinux 0x9136a7ac mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x91518aaf mmc_sw_reset EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb EXPORT_SYMBOL vmlinux 0x9166fada strncpy EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler EXPORT_SYMBOL vmlinux 0x91963dc0 pldmfw_op_pci_match_record EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x919e1e96 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x919fc40f sock_no_bind EXPORT_SYMBOL vmlinux 0x91a10c61 intel_scu_ipc_dev_simple_command EXPORT_SYMBOL vmlinux 0x91a47d92 acpi_dev_get_next_match_dev EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove EXPORT_SYMBOL vmlinux 0x91a9310c blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x91b28166 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x91bc70f2 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x91bb2438 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz EXPORT_SYMBOL vmlinux 0x91c0bf02 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x91c4abb1 wait_on_page_private_2_killable -EXPORT_SYMBOL vmlinux 0x91c4cbbf key_unlink -EXPORT_SYMBOL vmlinux 0x91cba144 sk_net_capable +EXPORT_SYMBOL vmlinux 0x91cd2ef3 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x91e6ac7f xp_dma_map EXPORT_SYMBOL vmlinux 0x91ea71d9 pci_enable_wake EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync EXPORT_SYMBOL vmlinux 0x920901c4 current_in_userns -EXPORT_SYMBOL vmlinux 0x9216f134 jbd2_trans_will_send_data_barrier EXPORT_SYMBOL vmlinux 0x921e5dac dm_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x92316c9c skb_dump +EXPORT_SYMBOL vmlinux 0x92314472 fd_install EXPORT_SYMBOL vmlinux 0x9237e9a0 watchdog_register_governor EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x92450190 tso_count_descs EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x925b7127 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x927675da vme_master_request +EXPORT_SYMBOL vmlinux 0x9270df5b vm_map_pages EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x927a3439 gnet_stats_copy_basic_hw EXPORT_SYMBOL vmlinux 0x92897e3d default_idle EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user EXPORT_SYMBOL vmlinux 0x92948c69 param_set_copystring EXPORT_SYMBOL vmlinux 0x9294e458 rproc_add_carveout EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x92a0f159 udp_ioctl +EXPORT_SYMBOL vmlinux 0x92a2402a neigh_resolve_output EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw -EXPORT_SYMBOL vmlinux 0x92a627a0 __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0x92a8cd40 md_reload_sb EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92c73661 __f_setown -EXPORT_SYMBOL vmlinux 0x92d1a73c xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x92d54eee set_binfmt EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq -EXPORT_SYMBOL vmlinux 0x92e1dd1e xp_dma_map EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout -EXPORT_SYMBOL vmlinux 0x92e71a0f udp_seq_start EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92edd2f2 page_symlink EXPORT_SYMBOL vmlinux 0x92f068f7 param_set_ullong -EXPORT_SYMBOL vmlinux 0x92f466ba security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0x92f8d634 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x92f8eba0 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x92f23554 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x92f6f08f skb_seq_read EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fe78e7 do_splice_direct +EXPORT_SYMBOL vmlinux 0x9300fe73 skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x930a677d tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x93195b88 sock_rfree +EXPORT_SYMBOL vmlinux 0x931f8155 tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0x9322f5d7 i8042_install_filter EXPORT_SYMBOL vmlinux 0x934b6f80 blk_queue_physical_block_size EXPORT_SYMBOL vmlinux 0x93518bbe setattr_prepare EXPORT_SYMBOL vmlinux 0x93553e85 freeze_bdev -EXPORT_SYMBOL vmlinux 0x935d84cf mmc_detect_change -EXPORT_SYMBOL vmlinux 0x935db005 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x9373d791 vmf_insert_pfn EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid EXPORT_SYMBOL vmlinux 0x937dbcda is_subdir EXPORT_SYMBOL vmlinux 0x93832e1f pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x93a1c10e put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x93a55077 vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule EXPORT_SYMBOL vmlinux 0x93a8b92d nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x93b041a9 tcp_prot EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93ba01c5 free_netdev +EXPORT_SYMBOL vmlinux 0x93cced19 security_inode_copy_up EXPORT_SYMBOL vmlinux 0x93d1ac76 pci_map_rom EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93e08ea4 passthru_features_check -EXPORT_SYMBOL vmlinux 0x93eb8c11 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x93f04c71 scsi_track_queue_full EXPORT_SYMBOL vmlinux 0x93f0da31 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x9402548d security_unix_may_send +EXPORT_SYMBOL vmlinux 0x93fa48e0 inet_accept EXPORT_SYMBOL vmlinux 0x94049537 bmap EXPORT_SYMBOL vmlinux 0x941b7fa7 agp_collect_device_status EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x9444ebb1 ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x947a6d86 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x944b5a82 unix_get_socket +EXPORT_SYMBOL vmlinux 0x944babb5 dump_skip EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable EXPORT_SYMBOL vmlinux 0x9493fc86 node_states EXPORT_SYMBOL vmlinux 0x94961283 vunmap EXPORT_SYMBOL vmlinux 0x94b9ccf9 padata_free EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94c25a10 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x94e32d83 flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x9512d4a4 __dev_remove_pack EXPORT_SYMBOL vmlinux 0x952e02b7 iov_iter_pipe -EXPORT_SYMBOL vmlinux 0x95385939 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x95449918 dev_addr_del +EXPORT_SYMBOL vmlinux 0x9547185f unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc -EXPORT_SYMBOL vmlinux 0x954e6f01 xfrm6_protocol_register EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x955954a8 __skb_ext_del -EXPORT_SYMBOL vmlinux 0x957a003d xp_alloc +EXPORT_SYMBOL vmlinux 0x955d3fd3 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x9562a9dd mmc_free_host +EXPORT_SYMBOL vmlinux 0x95760d53 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x957978f9 phy_driver_register +EXPORT_SYMBOL vmlinux 0x957dff2a phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x958bfb47 vm_iomap_memory EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table EXPORT_SYMBOL vmlinux 0x95b070f2 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x95fb7535 scsi_add_device +EXPORT_SYMBOL vmlinux 0x95b80ed6 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x95d5626d dev_activate EXPORT_SYMBOL vmlinux 0x96050dc8 __next_node_in +EXPORT_SYMBOL vmlinux 0x9606736d netif_napi_add EXPORT_SYMBOL vmlinux 0x9614efd4 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x96155092 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x961f6a8e phy_attached_print EXPORT_SYMBOL vmlinux 0x961fcf61 bio_chain -EXPORT_SYMBOL vmlinux 0x96201a21 device_get_mac_address EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block -EXPORT_SYMBOL vmlinux 0x962ab307 km_policy_notify +EXPORT_SYMBOL vmlinux 0x9627ea38 dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add -EXPORT_SYMBOL vmlinux 0x9631116f phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x9635ace5 udp_sendmsg EXPORT_SYMBOL vmlinux 0x96381336 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x96432d0c ip_options_compile +EXPORT_SYMBOL vmlinux 0x96396230 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x964cebff scsi_add_device EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg -EXPORT_SYMBOL vmlinux 0x9676a9e1 _dev_crit +EXPORT_SYMBOL vmlinux 0x96731c1b flow_rule_match_basic EXPORT_SYMBOL vmlinux 0x967b17d2 bio_add_pc_page EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x9690fcf8 __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x969956fd udp_gro_receive +EXPORT_SYMBOL vmlinux 0x969c581e tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0x969e3eb4 elv_rb_del EXPORT_SYMBOL vmlinux 0x96a169b0 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x96a41fc9 generic_file_readonly_mmap EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96c9b259 sk_error_report EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96cdf8e7 key_type_keyring EXPORT_SYMBOL vmlinux 0x96d596cb fb_set_cmap -EXPORT_SYMBOL vmlinux 0x96e1ae00 mmput_async +EXPORT_SYMBOL vmlinux 0x96d88d43 tcf_idrinfo_destroy 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 0x970c00fc vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x97104f63 netlink_broadcast EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict +EXPORT_SYMBOL vmlinux 0x9748f295 dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0x97546e49 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x976026fd __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0x976047c0 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x9762bfed fifo_create_dflt EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base EXPORT_SYMBOL vmlinux 0x9770fb43 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x977580f0 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x97975da9 secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update EXPORT_SYMBOL vmlinux 0x97a841aa textsearch_unregister EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97dd7c3f dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x97e1228d ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds -EXPORT_SYMBOL vmlinux 0x97ea20a6 tcp_enter_quickack_mode EXPORT_SYMBOL vmlinux 0x97fe0be3 tty_port_free_xmit_buf EXPORT_SYMBOL vmlinux 0x9805bcca blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x981305fb skb_dequeue EXPORT_SYMBOL vmlinux 0x981959bd cdrom_get_media_event EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x98349cba __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x9844ad57 copy_string_kernel -EXPORT_SYMBOL vmlinux 0x98493f07 kfree_skb_reason EXPORT_SYMBOL vmlinux 0x985371e8 fb_find_mode -EXPORT_SYMBOL vmlinux 0x987d1ffa bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x985494e7 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x988475c2 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x9886cf94 netdev_port_same_parent_id EXPORT_SYMBOL vmlinux 0x989fa09a scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x98a07b16 __sock_i_ino +EXPORT_SYMBOL vmlinux 0x98bac5bc fwnode_irq_get EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x98c6ac58 __SCK__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0x98c18c3b mmc_gpio_get_cd EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98c915ac mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0x98d25ba2 pci_msi_vec_count EXPORT_SYMBOL vmlinux 0x98d612ed tty_port_put +EXPORT_SYMBOL vmlinux 0x98d90439 netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98ef8c60 mfd_add_devices EXPORT_SYMBOL vmlinux 0x98fddb59 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x990197e5 qdisc_watchdog_init EXPORT_SYMBOL vmlinux 0x99073b5a irq_set_chip EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x992ea095 dcb_getapp +EXPORT_SYMBOL vmlinux 0x9929893a phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x994083bf eth_get_headlen +EXPORT_SYMBOL vmlinux 0x993d21c4 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x993de442 tcp_sendpage EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x996540d8 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x99547795 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x995d89a3 update_devfreq EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x9980ca4e mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0x9984716b scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x9986c390 mdiobus_get_phy EXPORT_SYMBOL vmlinux 0x998fb77e __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x9998c542 mmc_gpiod_request_cd_irq EXPORT_SYMBOL vmlinux 0x999bf472 request_partial_firmware_into_buf EXPORT_SYMBOL vmlinux 0x999e8297 vfree EXPORT_SYMBOL vmlinux 0x99b0cc2c input_set_max_poll_interval EXPORT_SYMBOL vmlinux 0x99b5ff39 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x99bcb5bc neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x99b786b6 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x99d126a1 genphy_restart_aneg EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99dcf9ca netlink_rcv_skb EXPORT_SYMBOL vmlinux 0x99e0269a to_nd_pfn EXPORT_SYMBOL vmlinux 0x99e2d178 cdrom_get_last_written EXPORT_SYMBOL vmlinux 0x99e43ef0 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x99ede207 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x99f06498 dev_uc_sync 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 0x99ff2e34 dev_get_phys_port_id EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a0f02d3 eth_type_trans EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9a2eeee0 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x9a32f984 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x9a4082eb path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x9a418fa0 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x9a26e97d dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x9a509afc devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk EXPORT_SYMBOL vmlinux 0x9a6d511d ps2_handle_response -EXPORT_SYMBOL vmlinux 0x9a737ade ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0x9a737f98 mdio_bus_type EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a8f86d6 phy_trigger_machine -EXPORT_SYMBOL vmlinux 0x9a9c4016 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x9aa33a12 __udp_disconnect -EXPORT_SYMBOL vmlinux 0x9aa95fd4 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x9a87b70f lru_cache_add +EXPORT_SYMBOL vmlinux 0x9aaa559c skb_eth_push EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9aceb45a flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired EXPORT_SYMBOL vmlinux 0x9adc7b4b blk_mq_run_hw_queue EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9af2e31b napi_gro_frags +EXPORT_SYMBOL vmlinux 0x9afd54b9 sk_capable +EXPORT_SYMBOL vmlinux 0x9b07db02 xfrm_unregister_type EXPORT_SYMBOL vmlinux 0x9b0bd170 pci_get_class -EXPORT_SYMBOL vmlinux 0x9b19d43a flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x9b1abe8e vfs_setpos EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b2aae92 lease_modify +EXPORT_SYMBOL vmlinux 0x9b273d9a tcf_exts_destroy EXPORT_SYMBOL vmlinux 0x9b2ec52f backlight_device_register EXPORT_SYMBOL vmlinux 0x9b3254f5 bio_integrity_prep EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b37b411 __napi_schedule +EXPORT_SYMBOL vmlinux 0x9b41a314 gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x9b446bd5 netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b4aee14 __lock_buffer +EXPORT_SYMBOL vmlinux 0x9b4c6ac2 netif_rx +EXPORT_SYMBOL vmlinux 0x9b5e6d29 iterate_dir EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table EXPORT_SYMBOL vmlinux 0x9b74865f blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x9b83da81 sock_no_listen +EXPORT_SYMBOL vmlinux 0x9b871f54 ipmi_platform_add EXPORT_SYMBOL vmlinux 0x9b9eb858 unload_nls -EXPORT_SYMBOL vmlinux 0x9ba9575e reuseport_attach_prog EXPORT_SYMBOL vmlinux 0x9ba9eda7 pnp_device_detach EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be EXPORT_SYMBOL vmlinux 0x9bcffbc0 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x9bd42370 mmc_detect_card_removed EXPORT_SYMBOL vmlinux 0x9bd79a2c pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x9bdd67ca dev_change_carrier EXPORT_SYMBOL vmlinux 0x9be87b1d d_obtain_alias EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c1907a2 inet_dev_addr_type EXPORT_SYMBOL vmlinux 0x9c458a6a acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0x9c5f2dec tcp_seq_start EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck EXPORT_SYMBOL vmlinux 0x9c7489fd mark_info_dirty -EXPORT_SYMBOL vmlinux 0x9c76681d inode_permission EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags EXPORT_SYMBOL vmlinux 0x9c8e5dd9 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x9c90fbdc tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x9c984c22 genphy_write_mmd_unsupported EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base +EXPORT_SYMBOL vmlinux 0x9cbe01d4 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x9ccd8db7 phy_print_status EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd5713a dev_activate EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net EXPORT_SYMBOL vmlinux 0x9ced41ad __SCT__tp_func_read_msr EXPORT_SYMBOL vmlinux 0x9ceeea6c make_kprojid -EXPORT_SYMBOL vmlinux 0x9cfb4ec1 inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d215893 sock_init_data -EXPORT_SYMBOL vmlinux 0x9d218f00 phy_error -EXPORT_SYMBOL vmlinux 0x9d26a77b __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x9d109ec4 path_is_under EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d34ec27 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x9d32dee5 skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0x9d432cbc d_find_any_alias -EXPORT_SYMBOL vmlinux 0x9d57f244 dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0x9d5f547a mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0x9d6027e8 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x9d618d62 flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d63eefd __neigh_for_each_release EXPORT_SYMBOL vmlinux 0x9d6b2769 mipi_dsi_generic_write EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl -EXPORT_SYMBOL vmlinux 0x9d87471b sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x9d851ff8 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x9d8bee03 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x9d8e557c dev_loopback_xmit EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9dae487e devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x9d98acd9 __SCK__tp_func_kmalloc_node EXPORT_SYMBOL vmlinux 0x9dbca380 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x9dc15aa7 dev_close -EXPORT_SYMBOL vmlinux 0x9dd5caf9 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x9dcf3213 ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x9de4b222 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x9debb3a7 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x9e09bf8d inet_del_protocol +EXPORT_SYMBOL vmlinux 0x9e06b475 tcf_qevent_destroy EXPORT_SYMBOL vmlinux 0x9e0b67c1 seq_put_decimal_ull EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e11fb45 neigh_update EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e1f2ac6 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler EXPORT_SYMBOL vmlinux 0x9e2a9924 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x9e35df25 __tracepoint_module_get EXPORT_SYMBOL vmlinux 0x9e387bd9 mdio_device_remove EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e61953e netlink_broadcast +EXPORT_SYMBOL vmlinux 0x9e543f41 tso_build_data EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e6508a2 i2c_smbus_read_word_data EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e7eb8b4 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x9e862f57 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x9e9d53ce mdiobus_scan EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9eacc838 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x9ea82ac5 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x9ea97b3b udp6_set_csum EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9eaef304 udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec50286 neigh_ifdown EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ed7133a nf_setsockopt EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set EXPORT_SYMBOL vmlinux 0x9ee35485 pin_user_pages_locked +EXPORT_SYMBOL vmlinux 0x9eec6930 i2c_verify_client EXPORT_SYMBOL vmlinux 0x9eef790e get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x9ef00a51 xfrm_state_lookup_byaddr EXPORT_SYMBOL vmlinux 0x9ef0eee7 __SCT__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x9f3dce19 dev_trans_start +EXPORT_SYMBOL vmlinux 0x9f11f9f8 eth_header EXPORT_SYMBOL vmlinux 0x9f42680c get_user_pages_locked EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f620836 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x9f7b2b45 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x9f89f09b filemap_map_pages +EXPORT_SYMBOL vmlinux 0x9f721615 __SCK__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0x9f769c47 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x9f815d7f sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x9f976718 __SCK__tp_func_write_msr EXPORT_SYMBOL vmlinux 0x9f984513 strrchr EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fb8f094 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x9fba044b balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x9fd57ec4 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x9fb37ea7 xattr_full_name EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe99c3a dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x9feac89a __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x9fee6d58 qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa003e963 mdiobus_read_nested EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup EXPORT_SYMBOL vmlinux 0xa025ec62 pci_wake_from_d3 EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xa02e3ee7 generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0xa032cdde rproc_add_subdev -EXPORT_SYMBOL vmlinux 0xa033b5d3 __pskb_pull_tail EXPORT_SYMBOL vmlinux 0xa033d747 next_arg EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute EXPORT_SYMBOL vmlinux 0xa0665b67 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xa068568e generic_copy_file_range EXPORT_SYMBOL vmlinux 0xa06875fb __acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0xa06d7a10 xfrm_unregister_km EXPORT_SYMBOL vmlinux 0xa07399db param_get_ulong 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 0xa08d878f vga_switcheroo_init_domain_pm_ops -EXPORT_SYMBOL vmlinux 0xa0935558 no_seek_end_llseek EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa09b45dd alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xa0aa297f set_page_dirty +EXPORT_SYMBOL vmlinux 0xa0a5795a unix_detach_fds EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 EXPORT_SYMBOL vmlinux 0xa0ba5b59 fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0xa0c932f8 xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e9ec34 __netlink_ns_capable 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 0xa0f4e5f6 jbd2_journal_stop EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit EXPORT_SYMBOL vmlinux 0xa104adb4 iov_iter_xarray EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa11513bd generic_listxattr -EXPORT_SYMBOL vmlinux 0xa118bb05 sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0xa1282839 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xa1319016 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xa136cbdc tcf_exts_terse_dump EXPORT_SYMBOL vmlinux 0xa13e780a gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xa14e5a3e udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xa166e908 netdev_lower_state_changed EXPORT_SYMBOL vmlinux 0xa18145c3 get_tree_single -EXPORT_SYMBOL vmlinux 0xa18737dc mmc_erase_group_aligned EXPORT_SYMBOL vmlinux 0xa19cd332 pci_pme_capable -EXPORT_SYMBOL vmlinux 0xa1b8f8c1 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xa1a82edc ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters EXPORT_SYMBOL vmlinux 0xa1c63a3f nd_pfn_validate -EXPORT_SYMBOL vmlinux 0xa1cd8bab netdev_reset_tc -EXPORT_SYMBOL vmlinux 0xa1e91580 vfs_unlink +EXPORT_SYMBOL vmlinux 0xa1ddac6c get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa209df86 tcp_getsockopt EXPORT_SYMBOL vmlinux 0xa22a96f7 current_task EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa2456d49 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xa241c2f5 load_nls +EXPORT_SYMBOL vmlinux 0xa241ebd9 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xa249029c create_empty_buffers EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa263cc5a __sk_receive_skb EXPORT_SYMBOL vmlinux 0xa2655940 pcix_get_max_mmrbc EXPORT_SYMBOL vmlinux 0xa26b0264 pci_biosrom_size -EXPORT_SYMBOL vmlinux 0xa26f32bd clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0xa273fdc4 inet_accept -EXPORT_SYMBOL vmlinux 0xa27b284e submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xa26d95e5 f_setown +EXPORT_SYMBOL vmlinux 0xa27f875a tcp_select_initial_window EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active EXPORT_SYMBOL vmlinux 0xa29414aa iget_failed -EXPORT_SYMBOL vmlinux 0xa2b68ae8 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0xa2a1aa8f phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xa2b746da generic_fillattr EXPORT_SYMBOL vmlinux 0xa2bb5278 blk_mq_queue_stopped EXPORT_SYMBOL vmlinux 0xa2c2102e tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xa2c29f07 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xa2de2eab tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xa317a6a8 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0xa31bb4d4 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xa2ce9d22 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xa2fa22bd __icmp_send +EXPORT_SYMBOL vmlinux 0xa2fdabe5 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xa30e0d40 inet_getname EXPORT_SYMBOL vmlinux 0xa32ac869 iov_iter_discard EXPORT_SYMBOL vmlinux 0xa3345efb configfs_register_group EXPORT_SYMBOL vmlinux 0xa341a9c2 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xa35ca642 phy_init_eee +EXPORT_SYMBOL vmlinux 0xa378bc01 phy_validate_pause EXPORT_SYMBOL vmlinux 0xa37d50d8 bdi_alloc +EXPORT_SYMBOL vmlinux 0xa38476de tcf_exts_change +EXPORT_SYMBOL vmlinux 0xa388c84b generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga -EXPORT_SYMBOL vmlinux 0xa3ae13ae eth_header_cache +EXPORT_SYMBOL vmlinux 0xa3964e98 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xa3b5163f __xfrm_state_delete EXPORT_SYMBOL vmlinux 0xa3b6c0d8 kobject_del EXPORT_SYMBOL vmlinux 0xa3b71840 tty_write_room -EXPORT_SYMBOL vmlinux 0xa3bc6c65 eth_mac_addr EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3c0a932 genphy_config_eee_advert EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3d50d0e neigh_destroy EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger -EXPORT_SYMBOL vmlinux 0xa3e5b8d9 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0xa3e73b25 vfs_fileattr_set EXPORT_SYMBOL vmlinux 0xa3e9ec4b nla_reserve_64bit EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits EXPORT_SYMBOL vmlinux 0xa3fdc6c8 n_tty_ioctl_helper @@ -9722,107 +9584,125 @@ EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final EXPORT_SYMBOL vmlinux 0xa4035c75 uart_suspend_port EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io +EXPORT_SYMBOL vmlinux 0xa42810ad pid_task +EXPORT_SYMBOL vmlinux 0xa4393112 mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0xa45ef93a jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xa45f3ce7 tcf_exts_validate EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction EXPORT_SYMBOL vmlinux 0xa4818e0a blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xa481b095 dev_get_by_index -EXPORT_SYMBOL vmlinux 0xa486f0b6 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xa487aac5 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xa487e724 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xa48db875 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xa4922f94 netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep EXPORT_SYMBOL vmlinux 0xa4c6afdf kset_unregister -EXPORT_SYMBOL vmlinux 0xa4ce2358 eth_gro_receive EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4f8d906 inet_frag_find EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe 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 0xa5133710 unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0xa515e5f3 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xa519c828 peernet2id EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply EXPORT_SYMBOL vmlinux 0xa5457562 seq_lseek EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa56aae86 path_put -EXPORT_SYMBOL vmlinux 0xa57ab239 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xa57ec48b dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xa5688161 devfreq_update_target +EXPORT_SYMBOL vmlinux 0xa57a9cd6 dev_load EXPORT_SYMBOL vmlinux 0xa5844aba param_get_int +EXPORT_SYMBOL vmlinux 0xa5882d38 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xa5887462 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0xa5967282 sock_from_file EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa59a02c8 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xa5aaaabc netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xa5a7da6f generic_permission +EXPORT_SYMBOL vmlinux 0xa5ab6e2f ip_ct_attach EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound +EXPORT_SYMBOL vmlinux 0xa5bb0b19 vfs_unlink +EXPORT_SYMBOL vmlinux 0xa5c0f57b genphy_handle_interrupt_no_ack EXPORT_SYMBOL vmlinux 0xa5d25c36 pci_get_device +EXPORT_SYMBOL vmlinux 0xa5d62633 skb_push EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0xa5e7a9be tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xa5efa651 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xa61219e9 dcb_setapp EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab EXPORT_SYMBOL vmlinux 0xa625559a __blkdev_issue_discard EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa62b6795 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xa63381c7 generic_file_open EXPORT_SYMBOL vmlinux 0xa636a624 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xa64825a6 __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds -EXPORT_SYMBOL vmlinux 0xa6490b0d i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xa6579c88 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xa64c60b4 unlock_page_memcg EXPORT_SYMBOL vmlinux 0xa65a29a4 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xa65ff5e4 xfrm_register_type_offload EXPORT_SYMBOL vmlinux 0xa6634a9e dec_zone_page_state EXPORT_SYMBOL vmlinux 0xa66b0cee jbd2_journal_start EXPORT_SYMBOL vmlinux 0xa67dddc5 ps2_sendbyte EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa682bd15 netdev_emerg -EXPORT_SYMBOL vmlinux 0xa69b02bf vme_bus_type -EXPORT_SYMBOL vmlinux 0xa69d5933 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xa695c31b skb_append +EXPORT_SYMBOL vmlinux 0xa697f18b skb_tx_error EXPORT_SYMBOL vmlinux 0xa6a2a0c4 iommu_get_dma_cookie -EXPORT_SYMBOL vmlinux 0xa6a85921 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0xa6b242d5 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xa6ef8f5b xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xa6ff1d13 would_dump +EXPORT_SYMBOL vmlinux 0xa6e75e96 phy_device_create +EXPORT_SYMBOL vmlinux 0xa6e8deb9 rawv6_mh_filter_register 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 0xa724f23f i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xa723093c dev_set_threaded EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt -EXPORT_SYMBOL vmlinux 0xa7496a4e register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xa731a45f netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0xa7399e0c dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xa73b5913 skb_flow_dissect_meta EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock EXPORT_SYMBOL vmlinux 0xa751b1a4 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xa755ef55 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xa756d1c2 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xa75d4dde netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0xa7654ec0 __frontswap_load -EXPORT_SYMBOL vmlinux 0xa77a5a79 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xa76acc96 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xa76dcaaf ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xa76e034e sync_dirty_buffer EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa77c1f1e try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xa7853bb2 nf_log_register EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 -EXPORT_SYMBOL vmlinux 0xa78ca937 security_path_rename EXPORT_SYMBOL vmlinux 0xa796679d __SCT__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xa7a5484f tcp_splice_read +EXPORT_SYMBOL vmlinux 0xa7a00ae8 mmc_is_req_done EXPORT_SYMBOL vmlinux 0xa7c99478 fscrypt_decrypt_bio EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy EXPORT_SYMBOL vmlinux 0xa7dd2c71 get_acl -EXPORT_SYMBOL vmlinux 0xa7e49949 filemap_flush +EXPORT_SYMBOL vmlinux 0xa7e6564a __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa7e7f743 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xa7ee5053 phy_start_aneg EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7f6dbd5 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xa8058251 call_fib_notifiers EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock -EXPORT_SYMBOL vmlinux 0xa807f1ca ppp_register_channel +EXPORT_SYMBOL vmlinux 0xa80ae4ee jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xa816aae5 page_symlink_inode_operations EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec EXPORT_SYMBOL vmlinux 0xa81d3524 remove_proc_entry -EXPORT_SYMBOL vmlinux 0xa82e46ab dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0xa82f1c4c inet_register_protosw -EXPORT_SYMBOL vmlinux 0xa8305a50 dev_mc_sync_multiple EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs -EXPORT_SYMBOL vmlinux 0xa83f8817 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xa8378143 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xa8409d94 __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags 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 0xa85b5559 fc_mount +EXPORT_SYMBOL vmlinux 0xa85c3d5c twl6040_get_sysclk EXPORT_SYMBOL vmlinux 0xa85d40ba pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xa86192d2 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xa862df6c xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa87aea64 brioctl_set +EXPORT_SYMBOL vmlinux 0xa87fd7c0 vmf_insert_mixed_mkwrite EXPORT_SYMBOL vmlinux 0xa88cff32 generic_key_instantiate EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free EXPORT_SYMBOL vmlinux 0xa89a19ab acpi_device_hid EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr EXPORT_SYMBOL vmlinux 0xa8a215fe request_key_tag +EXPORT_SYMBOL vmlinux 0xa8a251c6 page_zero_new_buffers EXPORT_SYMBOL vmlinux 0xa8a25e44 pagecache_isize_extended EXPORT_SYMBOL vmlinux 0xa8a99947 dm_get_device +EXPORT_SYMBOL vmlinux 0xa8c3d442 arp_create EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8cd21fa dev_get_iflink +EXPORT_SYMBOL vmlinux 0xa8cff559 xfrm4_rcv EXPORT_SYMBOL vmlinux 0xa8da4e21 dcache_dir_lseek EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table @@ -9830,293 +9710,316 @@ EXPORT_SYMBOL vmlinux 0xa9053035 unregister_key_type EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work EXPORT_SYMBOL vmlinux 0xa916b694 strnlen EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xa92813db generic_file_readonly_mmap EXPORT_SYMBOL vmlinux 0xa931af8a asm_load_gs_index EXPORT_SYMBOL vmlinux 0xa93f4c4c __blk_mq_end_request EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa94e8b5b mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xa958cb52 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xa95c7766 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xa9619245 iptun_encaps EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value EXPORT_SYMBOL vmlinux 0xa97591ae loop_register_transfer EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map -EXPORT_SYMBOL vmlinux 0xa997ced3 open_with_fake_path +EXPORT_SYMBOL vmlinux 0xa99b2231 generic_perform_write EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa99e5ec7 generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0xa9a77324 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xa9b56be3 __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0xa9f3ccd3 phy_get_c45_ids EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction -EXPORT_SYMBOL vmlinux 0xaa0bdd65 udp_pre_connect +EXPORT_SYMBOL vmlinux 0xaa03bd0d mmc_hw_reset EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa0e3721 inet_sk_set_state EXPORT_SYMBOL vmlinux 0xaa1752fe pci_free_host_bridge EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa205891 kern_path_create -EXPORT_SYMBOL vmlinux 0xaa2088f4 fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0xaa23c850 inet_protos EXPORT_SYMBOL vmlinux 0xaa248552 bio_clone_fast -EXPORT_SYMBOL vmlinux 0xaa2495cd tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0xaa2fcee9 rtc_add_group EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa3d3a1c rtnl_configure_link EXPORT_SYMBOL vmlinux 0xaa44a707 cpumask_next -EXPORT_SYMBOL vmlinux 0xaa458428 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xaa464f89 kernel_read +EXPORT_SYMBOL vmlinux 0xaa4ffd2b mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0xaa5345e1 pci_save_state EXPORT_SYMBOL vmlinux 0xaa5aa463 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xaa5f1ca0 flow_rule_match_vlan EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa764dd9 vlan_vid_add EXPORT_SYMBOL vmlinux 0xaa76c927 pcie_get_readrq EXPORT_SYMBOL vmlinux 0xaa791d78 inode_init_always EXPORT_SYMBOL vmlinux 0xaa9ca28e agp_find_bridge EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic -EXPORT_SYMBOL vmlinux 0xaab23ae0 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xaab3f4fb twl6040_power -EXPORT_SYMBOL vmlinux 0xaacaf004 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0xaad02eb6 neigh_for_each +EXPORT_SYMBOL vmlinux 0xaab546b3 tcf_block_get +EXPORT_SYMBOL vmlinux 0xaab91512 noop_qdisc 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 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab2506a0 mmc_add_host +EXPORT_SYMBOL vmlinux 0xab01a772 do_clone_file_range EXPORT_SYMBOL vmlinux 0xab2b2d90 rproc_boot -EXPORT_SYMBOL vmlinux 0xab35cec8 phy_get_internal_delay EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab380dee build_skb EXPORT_SYMBOL vmlinux 0xab39deeb phy_write_paged EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab3dff6d migrate_vma_setup +EXPORT_SYMBOL vmlinux 0xab40847f __bread_gfp EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab61ae39 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xab6200a7 sock_alloc_file EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab7096f9 set_bh_page EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab90d47b disk_end_io_acct -EXPORT_SYMBOL vmlinux 0xaba01986 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0xabb851d7 readahead_expand -EXPORT_SYMBOL vmlinux 0xabe3cb17 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xab7acad1 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xabb9627e phy_start +EXPORT_SYMBOL vmlinux 0xabc8b017 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xabcde98d iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xabd5a27d scsi_alloc_sgtables EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xabedd9c0 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xabebfe69 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xabecd235 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xabf164da blk_get_queue EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s EXPORT_SYMBOL vmlinux 0xabf4cd22 page_pool_create -EXPORT_SYMBOL vmlinux 0xabfcfbbd mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0xabfcfbda tcf_exts_change EXPORT_SYMBOL vmlinux 0xac0d2850 blk_queue_max_write_same_sectors EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier EXPORT_SYMBOL vmlinux 0xac1c26b1 start_tty +EXPORT_SYMBOL vmlinux 0xac1c4313 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xac25d91e build_skb_around EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac33bbfa tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0xac34ea22 rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0xac422275 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xac3b5257 skb_trim EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac544c59 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xac5ce0b1 __splice_from_pipe EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton EXPORT_SYMBOL vmlinux 0xac717bdb clk_get -EXPORT_SYMBOL vmlinux 0xac725350 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xac7ab837 _dev_err -EXPORT_SYMBOL vmlinux 0xac837860 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xac8b3077 xfrm_lookup_route EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu EXPORT_SYMBOL vmlinux 0xacab97b6 simple_empty +EXPORT_SYMBOL vmlinux 0xacb958d2 __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xacc6bfb8 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xacce876c unregister_netdev EXPORT_SYMBOL vmlinux 0xacd6c87b param_get_ullong EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index EXPORT_SYMBOL vmlinux 0xacdea0ac pnp_is_active EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print -EXPORT_SYMBOL vmlinux 0xacef3f80 dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info EXPORT_SYMBOL vmlinux 0xad0196bd kthread_destroy_worker EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad04f6c0 nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0xad0b276a pnp_start_dev -EXPORT_SYMBOL vmlinux 0xad0cc539 udp_lib_getsockopt EXPORT_SYMBOL vmlinux 0xad0ec080 pci_dev_put EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode -EXPORT_SYMBOL vmlinux 0xad104b04 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xad1540fd genl_notify +EXPORT_SYMBOL vmlinux 0xad18aec7 block_read_full_page +EXPORT_SYMBOL vmlinux 0xad1e50a8 __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0xad33e4ec jbd2_journal_inode_ranged_wait EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad36d682 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xad37cef7 netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0xad4f2193 pci_scan_bridge EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid EXPORT_SYMBOL vmlinux 0xad5f06f5 agp_bind_memory EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function EXPORT_SYMBOL vmlinux 0xad76b073 pps_unregister_source -EXPORT_SYMBOL vmlinux 0xad7c5b99 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xad86ac46 stream_open -EXPORT_SYMBOL vmlinux 0xad93ed3a security_inode_init_security -EXPORT_SYMBOL vmlinux 0xad97bac2 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xad78534b tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0xad7b2e29 dev_driver_string +EXPORT_SYMBOL vmlinux 0xad86bb84 inet_sendmsg EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xada6f9a3 genphy_c37_config_aneg EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final EXPORT_SYMBOL vmlinux 0xadb1396c from_kprojid_munged EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadbf97f5 jbd2_journal_revoke EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL vmlinux 0xadc3beaa dev_remove_offload +EXPORT_SYMBOL vmlinux 0xadc59a8e set_page_dirty_lock EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed EXPORT_SYMBOL vmlinux 0xaddb6a59 import_single_range EXPORT_SYMBOL vmlinux 0xade0841d pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xadf556ac __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0xadf02de1 vme_bus_type +EXPORT_SYMBOL vmlinux 0xadf74852 netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xadfee9a1 sock_efree EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae21afeb ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xae0e5a14 sock_no_sendmsg EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert EXPORT_SYMBOL vmlinux 0xae36c97f clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0xae3a328e __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae5d51ac has_capability -EXPORT_SYMBOL vmlinux 0xae95c923 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xae78eb49 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xae850bf9 sk_alloc EXPORT_SYMBOL vmlinux 0xae9fe27c blk_post_runtime_resume EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xaeb7914b crypto_sha512_update EXPORT_SYMBOL vmlinux 0xaeb913c9 uart_update_timeout EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaed5fe44 alloc_pages -EXPORT_SYMBOL vmlinux 0xaed6191b sock_alloc -EXPORT_SYMBOL vmlinux 0xaeda2add genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xaed3de78 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xaef39a6b netdev_alert EXPORT_SYMBOL vmlinux 0xaf0d4cea __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xaf1b664d tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xaf14f6b9 ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0xaf354bbe cpu_tss_rw EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf53cb37 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0xaf60049f xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xaf478d4c ip_local_deliver +EXPORT_SYMBOL vmlinux 0xaf708deb netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xaf720154 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xaf99db2c dev_addr_add EXPORT_SYMBOL vmlinux 0xafa0d05f key_task_permission EXPORT_SYMBOL vmlinux 0xafa32685 acpi_register_debugger -EXPORT_SYMBOL vmlinux 0xafa44fed mdiobus_read EXPORT_SYMBOL vmlinux 0xafad531e tty_port_alloc_xmit_buf EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xafb8fa09 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xafbbb5ea tcp_mtup_init EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc27d49 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xafc757ce open_with_fake_path +EXPORT_SYMBOL vmlinux 0xafce2027 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xafd14f0c mmc_can_erase EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported EXPORT_SYMBOL vmlinux 0xafd744c6 __x86_indirect_thunk_rbp +EXPORT_SYMBOL vmlinux 0xafe35877 tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0xb00978c9 param_ops_hexint -EXPORT_SYMBOL vmlinux 0xb01824d7 eth_header_parse EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq EXPORT_SYMBOL vmlinux 0xb02df2d6 __traceiter_rdpmc EXPORT_SYMBOL vmlinux 0xb0498d90 tty_port_block_til_ready EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb04dd2e6 inet_sock_destruct EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats +EXPORT_SYMBOL vmlinux 0xb0590bc4 mmc_of_parse EXPORT_SYMBOL vmlinux 0xb05ab3da regset_get +EXPORT_SYMBOL vmlinux 0xb05b30ea generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xb05dd661 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb06a469c dev_driver_string +EXPORT_SYMBOL vmlinux 0xb0926996 netpoll_poll_enable EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation EXPORT_SYMBOL vmlinux 0xb0ad64ff md_write_end +EXPORT_SYMBOL vmlinux 0xb0ade826 tcf_action_exec EXPORT_SYMBOL vmlinux 0xb0b96b0a simple_setattr -EXPORT_SYMBOL vmlinux 0xb0bfd980 mdiobus_unregister EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0d0d3df rps_may_expire_flow EXPORT_SYMBOL vmlinux 0xb0e10781 get_option EXPORT_SYMBOL vmlinux 0xb0e1cd01 agp_generic_destroy_page EXPORT_SYMBOL vmlinux 0xb0e602eb memmove EXPORT_SYMBOL vmlinux 0xb0e70ffa get_user_pages_remote EXPORT_SYMBOL vmlinux 0xb0eb0167 pci_scan_single_device EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize +EXPORT_SYMBOL vmlinux 0xb0f56331 scsi_target_quiesce EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare EXPORT_SYMBOL vmlinux 0xb119abb7 tty_hangup +EXPORT_SYMBOL vmlinux 0xb11b3a09 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xb137678d generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xb138ebb5 scsi_host_lookup EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14d207c netlink_broadcast_filtered EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work +EXPORT_SYMBOL vmlinux 0xb1698ef7 ptp_clock_register EXPORT_SYMBOL vmlinux 0xb1883ab4 sg_miter_start -EXPORT_SYMBOL vmlinux 0xb1924457 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xb18996c8 xsk_tx_release EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0xb1ab4f70 __dynamic_ibdev_dbg EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug +EXPORT_SYMBOL vmlinux 0xb1d4c565 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xb1d876fa __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1ef8f97 vme_dma_list_add EXPORT_SYMBOL vmlinux 0xb1f6f7eb pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xb1fcd6b9 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xb2070d96 netif_skb_features EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb2200ae5 km_policy_notify EXPORT_SYMBOL vmlinux 0xb220af6d pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xb2236abe jbd2_journal_stop 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 0xb236b086 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xb23b36fd __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xb23cd540 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xb24170cb vfs_statfs EXPORT_SYMBOL vmlinux 0xb24af53b pci_set_master -EXPORT_SYMBOL vmlinux 0xb24e58ff jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0xb25440df seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xb2514316 logfc +EXPORT_SYMBOL vmlinux 0xb25e7acd init_task EXPORT_SYMBOL vmlinux 0xb2601486 __SCT__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xb26ad48f generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xb288a740 dev_get_stats +EXPORT_SYMBOL vmlinux 0xb28337ec fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0xb289c901 jbd2_journal_init_dev EXPORT_SYMBOL vmlinux 0xb29e3a30 mipi_dsi_dcs_set_tear_off EXPORT_SYMBOL vmlinux 0xb2a925f5 padata_alloc_shell EXPORT_SYMBOL vmlinux 0xb2bb875e input_inject_event EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count EXPORT_SYMBOL vmlinux 0xb2c96edc convert_art_ns_to_tsc EXPORT_SYMBOL vmlinux 0xb2d447e7 mdio_device_reset +EXPORT_SYMBOL vmlinux 0xb2da830f vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0xb2da8d7e blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xb2dc7cc5 ip6_xmit EXPORT_SYMBOL vmlinux 0xb2dfdf3c kset_register -EXPORT_SYMBOL vmlinux 0xb2e7fe8c cpufreq_get_policy EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove EXPORT_SYMBOL vmlinux 0xb2fabf63 efi +EXPORT_SYMBOL vmlinux 0xb2fbfc9c kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb31087cb dev_printk_emit 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 0xb3581afb __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock EXPORT_SYMBOL vmlinux 0xb374ae9d inode_init_once +EXPORT_SYMBOL vmlinux 0xb382f75a netlink_set_err EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask -EXPORT_SYMBOL vmlinux 0xb3940739 rtnl_notify EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic -EXPORT_SYMBOL vmlinux 0xb3a69eed compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xb3adfb2f __neigh_event_send +EXPORT_SYMBOL vmlinux 0xb3af1564 iter_file_splice_write EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0xb3cf1919 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xb3d1411d vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0xb3cce7c9 tag_pages_for_writeback EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3e090cc tcp_get_md5sig_pool EXPORT_SYMBOL vmlinux 0xb3e886fe get_user_pages EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f4e6bb skb_dump EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3fbfbcc locks_copy_conflock EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb41d01b3 __page_symlink +EXPORT_SYMBOL vmlinux 0xb4081b65 jbd2_journal_revoke EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked EXPORT_SYMBOL vmlinux 0xb4343171 d_alloc +EXPORT_SYMBOL vmlinux 0xb43be641 ipv6_mc_check_mld EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb463ae60 jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0xb468bceb nd_btt_probe -EXPORT_SYMBOL vmlinux 0xb46f7b0f jbd2_journal_errno EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic EXPORT_SYMBOL vmlinux 0xb4809d55 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0xb4845be6 vme_init_bridge +EXPORT_SYMBOL vmlinux 0xb487432e tcp_shutdown EXPORT_SYMBOL vmlinux 0xb487fb43 agp_generic_alloc_user EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts EXPORT_SYMBOL vmlinux 0xb4a705ff __ps2_command -EXPORT_SYMBOL vmlinux 0xb4c2c383 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xb4d5bba3 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0xb4d72c58 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xb4b0de82 dcb_ieee_getapp_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0xb4e4d6a9 proc_create -EXPORT_SYMBOL vmlinux 0xb4ecfd2f tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4f97190 udp_read_sock +EXPORT_SYMBOL vmlinux 0xb50d95db skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xb51087fc finish_no_open EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb5388b44 kernel_getpeername EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb54a1182 dst_alloc EXPORT_SYMBOL vmlinux 0xb54a3053 seq_bprintf -EXPORT_SYMBOL vmlinux 0xb56ab092 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xb57306a2 ether_setup +EXPORT_SYMBOL vmlinux 0xb55fd3f2 xp_can_alloc EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb5752dee vfs_setpos +EXPORT_SYMBOL vmlinux 0xb5879e11 devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat EXPORT_SYMBOL vmlinux 0xb596e30b __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xb5a3b430 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0xb599b157 __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined -EXPORT_SYMBOL vmlinux 0xb5aba25f xfrm_state_alloc EXPORT_SYMBOL vmlinux 0xb5adcb40 simple_getattr EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5b9d000 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0xb5bd306e generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xb5c548db blackhole_netdev +EXPORT_SYMBOL vmlinux 0xb5e48a2c mmc_register_driver EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5fc1791 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0xb605fc20 skb_vlan_untag EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible -EXPORT_SYMBOL vmlinux 0xb629db87 security_socket_socketpair EXPORT_SYMBOL vmlinux 0xb62ddfe0 super_setup_bdi_name EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port @@ -10127,606 +10030,603 @@ EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse EXPORT_SYMBOL vmlinux 0xb680888e pm860x_reg_write EXPORT_SYMBOL vmlinux 0xb69116d1 make_kuid EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69c2351 security_inode_setsecctx EXPORT_SYMBOL vmlinux 0xb6ab2f08 pci_write_config_byte EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach EXPORT_SYMBOL vmlinux 0xb6af3808 blk_pre_runtime_suspend EXPORT_SYMBOL vmlinux 0xb6b09666 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xb6c003e6 generic_write_checks EXPORT_SYMBOL vmlinux 0xb6cd5c4c kobject_init +EXPORT_SYMBOL vmlinux 0xb6d12547 mdio_find_bus +EXPORT_SYMBOL vmlinux 0xb6d4a444 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xb6e1cec5 vlan_uses_dev EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute EXPORT_SYMBOL vmlinux 0xb6e65c02 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0xb6ef152c vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xb6f2461a devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync EXPORT_SYMBOL vmlinux 0xb722fe3a pci_msix_vec_count EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb73c09b0 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xb741139b softnet_data EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier EXPORT_SYMBOL vmlinux 0xb75cbcb3 xen_alloc_unpopulated_pages -EXPORT_SYMBOL vmlinux 0xb76ac3f4 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xb768f137 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xb7787a60 audit_log_start EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict EXPORT_SYMBOL vmlinux 0xb79230bd set_anon_super_fc -EXPORT_SYMBOL vmlinux 0xb7ab3b80 __find_get_block +EXPORT_SYMBOL vmlinux 0xb7afd0a4 __register_binfmt EXPORT_SYMBOL vmlinux 0xb7bfc6d6 dquot_destroy EXPORT_SYMBOL vmlinux 0xb7c0f443 sort -EXPORT_SYMBOL vmlinux 0xb7c16c3a __dev_direct_xmit EXPORT_SYMBOL vmlinux 0xb7c69f48 rproc_shutdown EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7e38b3c audit_log_start EXPORT_SYMBOL vmlinux 0xb7efbf6f tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xb7fa67bd xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xb813490b arp_create -EXPORT_SYMBOL vmlinux 0xb81a3365 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xb80b60f3 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xb811129b generic_setlease +EXPORT_SYMBOL vmlinux 0xb817d7dc mmc_unregister_driver EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xb8590627 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xb8400810 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xb858912e dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0xb85fa109 regset_get_alloc EXPORT_SYMBOL vmlinux 0xb8600aa7 pci_enable_device_io EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb86c67f4 scsi_remove_device EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var EXPORT_SYMBOL vmlinux 0xb87c4e6b generic_read_dir -EXPORT_SYMBOL vmlinux 0xb87f71b5 netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0xb88e0f95 simple_get_link EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups +EXPORT_SYMBOL vmlinux 0xb8919ed8 phy_do_ioctl EXPORT_SYMBOL vmlinux 0xb8948902 __alloc_disk_node +EXPORT_SYMBOL vmlinux 0xb89b6409 udp_seq_next EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8a355b5 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xb8adb9b9 twl6040_get_vibralr_status EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace EXPORT_SYMBOL vmlinux 0xb8c85cbe of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xb8ca5725 cad_pid EXPORT_SYMBOL vmlinux 0xb8d06e8a md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0xb8d0d860 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xb8dc9700 vme_unregister_driver EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb93b02d6 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xb9367f3a pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xb9433940 security_unix_may_send EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only EXPORT_SYMBOL vmlinux 0xb94dc32f simple_fill_super EXPORT_SYMBOL vmlinux 0xb94e25bc dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xb9711e16 __tracepoint_rdpmc EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb97971bf phy_get_eee_err EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler EXPORT_SYMBOL vmlinux 0xb9864172 param_set_byte -EXPORT_SYMBOL vmlinux 0xb98d3ca6 qdisc_reset -EXPORT_SYMBOL vmlinux 0xb995514d pagecache_get_page EXPORT_SYMBOL vmlinux 0xb996b87f bio_split EXPORT_SYMBOL vmlinux 0xb99a7c5c dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xb99b4849 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xb9a33b3d netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9b94c11 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xb9d1e94c skb_dequeue_tail EXPORT_SYMBOL vmlinux 0xb9e276cf wrmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0xb9e3cc1e netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0xb9e7429c memcpy_toio +EXPORT_SYMBOL vmlinux 0xb9e787e1 genphy_c37_read_status EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9f9e2b9 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xb9f9cbf9 xfrm_state_insert EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba16b2dc phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xba25045a unlock_buffer EXPORT_SYMBOL vmlinux 0xba260445 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0xba28cc1c __SCK__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0xba270472 nlmsg_notify EXPORT_SYMBOL vmlinux 0xba3891d6 max8925_reg_write -EXPORT_SYMBOL vmlinux 0xba4027a8 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xba3b280a kmem_cache_destroy EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4e3400 vfs_parse_fs_param_source EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba648634 jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0xba740b89 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xba5a2c1e xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xba5af6f7 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xba85315f qdisc_put_unlocked EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xbaa03023 devfreq_add_device -EXPORT_SYMBOL vmlinux 0xbaa265e6 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xba8fdbd2 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xba95bbe7 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xba9c7172 mdiobus_write EXPORT_SYMBOL vmlinux 0xbaa704fb dquot_alloc -EXPORT_SYMBOL vmlinux 0xbac8e68c skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xbab6b198 unix_attach_fds +EXPORT_SYMBOL vmlinux 0xbac2bc59 release_pages +EXPORT_SYMBOL vmlinux 0xbadd42e6 free_buffer_head EXPORT_SYMBOL vmlinux 0xbaf3d4ff key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xbaf46ea3 phy_find_first EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset EXPORT_SYMBOL vmlinux 0xbb06748d mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xbb08d684 __neigh_for_each_release 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 0xbb299a1d tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xbb32d58b mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer EXPORT_SYMBOL vmlinux 0xbb5b7394 d_drop -EXPORT_SYMBOL vmlinux 0xbb61ebb3 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xbb6ddaa3 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xbb710330 __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0xbb83df00 input_mt_drop_unused EXPORT_SYMBOL vmlinux 0xbb841e70 dquot_set_dqblk EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags -EXPORT_SYMBOL vmlinux 0xbb9a6e88 mmc_card_is_blockaddr EXPORT_SYMBOL vmlinux 0xbb9e3075 agp_generic_mask_memory EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbba8fa32 __napi_schedule -EXPORT_SYMBOL vmlinux 0xbbc0bf3a xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0xbbc9ef37 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xbba1bcd4 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xbbb36078 sock_no_socketpair EXPORT_SYMBOL vmlinux 0xbbcb81b4 seq_open EXPORT_SYMBOL vmlinux 0xbbcdb883 vga_con +EXPORT_SYMBOL vmlinux 0xbbd2354b phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0xbbdb1216 __nd_driver_register EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order EXPORT_SYMBOL vmlinux 0xbbf9b306 acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0xbc08b0a4 locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0xbc0b22e9 param_array_ops +EXPORT_SYMBOL vmlinux 0xbc0b507a xfrm_policy_insert EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit EXPORT_SYMBOL vmlinux 0xbc25cf7a kthread_create_worker_on_cpu EXPORT_SYMBOL vmlinux 0xbc286864 dma_pool_create -EXPORT_SYMBOL vmlinux 0xbc3e364f phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0xbc62e3d9 page_cache_next_miss -EXPORT_SYMBOL vmlinux 0xbc663ba4 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xbc2c7b3f ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xbc54a895 __skb_checksum_complete EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcac2215 udp_push_pending_frames EXPORT_SYMBOL vmlinux 0xbcadb667 d_alloc_anon EXPORT_SYMBOL vmlinux 0xbcd6f671 vga_get -EXPORT_SYMBOL vmlinux 0xbd0d39d5 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xbce45d1e tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xbcf67430 ip_output EXPORT_SYMBOL vmlinux 0xbd11a891 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xbd1900e3 flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0xbd1c4e56 bioset_init_from_src -EXPORT_SYMBOL vmlinux 0xbd245ff2 vfs_create_mount -EXPORT_SYMBOL vmlinux 0xbd25d62c tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xbd2816da skb_queue_purge +EXPORT_SYMBOL vmlinux 0xbd365b67 ipv6_setsockopt EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi -EXPORT_SYMBOL vmlinux 0xbd41e73d i2c_register_driver EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd4f0877 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0xbd4fbd56 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xbd53b896 jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0xbd5556e0 md_check_recovery EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd6dd58e mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xbd7a19f3 lease_get_mtime EXPORT_SYMBOL vmlinux 0xbd7f682b unregister_cdrom -EXPORT_SYMBOL vmlinux 0xbdb6223d peernet2id -EXPORT_SYMBOL vmlinux 0xbdb80da1 mmc_can_discard -EXPORT_SYMBOL vmlinux 0xbdf097d3 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xbda2ef8f eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xbddd2cce mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0xbde38d56 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xbdf242ab netdev_state_change EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe1620ec eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0xbe253d60 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xbe326ad0 key_link +EXPORT_SYMBOL vmlinux 0xbe428dc7 sock_init_data_uid +EXPORT_SYMBOL vmlinux 0xbe44e89e flow_rule_match_ip EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port -EXPORT_SYMBOL vmlinux 0xbe4e8260 register_fib_notifier EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe5e6bee read_cache_pages EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit -EXPORT_SYMBOL vmlinux 0xbe6eeb3c wireless_send_event EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table EXPORT_SYMBOL vmlinux 0xbe9f7dd0 pci_iomap_range -EXPORT_SYMBOL vmlinux 0xbea0884b ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xbea7258f i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xbeba9b6b sock_recvmsg -EXPORT_SYMBOL vmlinux 0xbebd4057 inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0xbec97084 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0xbecab007 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xbed1b1b4 crypto_sha256_finup EXPORT_SYMBOL vmlinux 0xbed66b99 nd_device_notify EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbef43e2f kernel_write EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner EXPORT_SYMBOL vmlinux 0xbf064e91 dm_io -EXPORT_SYMBOL vmlinux 0xbf107d96 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0xbf309aba mfd_cell_disable EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic EXPORT_SYMBOL vmlinux 0xbf512dcb proc_set_size EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf64dcbe netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xbf5c4681 twl6040_power EXPORT_SYMBOL vmlinux 0xbf67801e md_update_sb EXPORT_SYMBOL vmlinux 0xbf6999fe fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0xbf6f6d11 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xbf858d20 follow_down EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbf9dbfb3 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xbfa645bf unlock_page_memcg +EXPORT_SYMBOL vmlinux 0xbf9cfb0a sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xbfa27db8 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xbfa3eafe set_page_dirty EXPORT_SYMBOL vmlinux 0xbfbc8931 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xbfbe348a skb_free_datagram EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep EXPORT_SYMBOL vmlinux 0xbfcd6331 pci_dev_get +EXPORT_SYMBOL vmlinux 0xbfdb9a72 mmc_set_blocklen EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer EXPORT_SYMBOL vmlinux 0xbfff19e5 seq_vprintf EXPORT_SYMBOL vmlinux 0xc00eb145 freeze_super -EXPORT_SYMBOL vmlinux 0xc011ffcf ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0xc01cd90c param_set_bool +EXPORT_SYMBOL vmlinux 0xc02847a7 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xc02dbccd km_state_notify EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable EXPORT_SYMBOL vmlinux 0xc03ba958 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xc0417dc5 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xc0473f17 devfreq_update_target -EXPORT_SYMBOL vmlinux 0xc0505ff7 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xc05648c7 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xc06b487e vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0xc0740496 rt6_lookup +EXPORT_SYMBOL vmlinux 0xc075ad5c udp_set_csum EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc0884c14 follow_down_one +EXPORT_SYMBOL vmlinux 0xc09e7577 register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 EXPORT_SYMBOL vmlinux 0xc0b2bc48 pci_unregister_driver EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0c7bd8d kernel_read -EXPORT_SYMBOL vmlinux 0xc0d8cb83 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xc0e8e788 scsi_track_queue_full EXPORT_SYMBOL vmlinux 0xc0f92b84 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0xc0fc2992 ip6_output +EXPORT_SYMBOL vmlinux 0xc0fe8ce5 mmc_can_trim EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor EXPORT_SYMBOL vmlinux 0xc111ae64 intel_gtt_get -EXPORT_SYMBOL vmlinux 0xc1319024 fqdir_init +EXPORT_SYMBOL vmlinux 0xc11c390c dev_uc_init +EXPORT_SYMBOL vmlinux 0xc121e771 phy_drivers_unregister EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes -EXPORT_SYMBOL vmlinux 0xc13a45af migrate_vma_pages -EXPORT_SYMBOL vmlinux 0xc146505c napi_enable +EXPORT_SYMBOL vmlinux 0xc13b8014 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xc14c8c52 xfrm_state_walk EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc17519b6 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xc1754b39 generic_write_end +EXPORT_SYMBOL vmlinux 0xc17e7d17 __scsi_execute EXPORT_SYMBOL vmlinux 0xc18cf1b3 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xc19a8120 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xc18f8398 mdiobus_unregister EXPORT_SYMBOL vmlinux 0xc1af0d84 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xc1c4a493 register_console EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed -EXPORT_SYMBOL vmlinux 0xc1d746eb __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0xc1d76ca9 _copy_from_iter EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1dc755e __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xc1f29ffc pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0xc1f851b8 param_ops_charp -EXPORT_SYMBOL vmlinux 0xc2227e23 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xc2242bf2 tcf_qevent_destroy EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup EXPORT_SYMBOL vmlinux 0xc24ab696 zero_fill_bio -EXPORT_SYMBOL vmlinux 0xc2504c12 flow_block_cb_free EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc2733ffb block_invalidatepage EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xc288686c dev_add_pack +EXPORT_SYMBOL vmlinux 0xc281eddd devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0xc29bf967 strspn EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc2a434fb put_cmsg -EXPORT_SYMBOL vmlinux 0xc2a591cf cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xc2b5f031 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xc2bb710a tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0xc2c4a60c phy_modify_paged +EXPORT_SYMBOL vmlinux 0xc2d2ad9f tcp_connect +EXPORT_SYMBOL vmlinux 0xc2e1564b nf_register_queue_handler EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2e67936 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xc2f137f9 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xc2f4b09e nobh_writepage EXPORT_SYMBOL vmlinux 0xc2fa4f58 param_get_charp -EXPORT_SYMBOL vmlinux 0xc301968a file_ns_capable EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc30b524a file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xc30d12ea vfs_fsync EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc314cbee genphy_loopback -EXPORT_SYMBOL vmlinux 0xc31534c0 vme_bus_num EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xc335f715 __bio_clone_fast EXPORT_SYMBOL vmlinux 0xc33b19cf bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xc33e9012 tcf_idr_create EXPORT_SYMBOL vmlinux 0xc356ee41 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xc35db1b8 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xc36396dc ip_sock_set_freebind EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc -EXPORT_SYMBOL vmlinux 0xc37f7dc6 ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc380e14e blk_queue_flag_set EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc3aa3177 dump_align +EXPORT_SYMBOL vmlinux 0xc395dc9b qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xc39e8ad1 dev_close EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 -EXPORT_SYMBOL vmlinux 0xc3b7c425 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0xc3abafc4 jbd2_journal_unlock_updates EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3c02469 ip_getsockopt EXPORT_SYMBOL vmlinux 0xc3c08436 param_set_long -EXPORT_SYMBOL vmlinux 0xc3da0a58 sk_stream_error -EXPORT_SYMBOL vmlinux 0xc3da9ada napi_get_frags -EXPORT_SYMBOL vmlinux 0xc3f650c4 scsi_device_put EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc409ed71 wait_on_page_bit EXPORT_SYMBOL vmlinux 0xc4128ab8 mod_node_page_state EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42362fe nf_log_packet +EXPORT_SYMBOL vmlinux 0xc42dc033 mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost EXPORT_SYMBOL vmlinux 0xc460f02c file_modified -EXPORT_SYMBOL vmlinux 0xc469dfa1 ip_defrag +EXPORT_SYMBOL vmlinux 0xc46957f5 unlock_rename EXPORT_SYMBOL vmlinux 0xc46ba346 input_set_abs_params EXPORT_SYMBOL vmlinux 0xc476ccd9 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xc476d7e0 kmem_cache_create EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc478cc41 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xc48acbfb inet_dgram_ops EXPORT_SYMBOL vmlinux 0xc48bf8c2 __d_drop +EXPORT_SYMBOL vmlinux 0xc494912c inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0xc49b43f5 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xc4a0e098 vme_irq_request EXPORT_SYMBOL vmlinux 0xc4a64df0 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xc4a872f4 ip_frag_init EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xc4b76f1f dev_lstats_read EXPORT_SYMBOL vmlinux 0xc4cdc804 from_kuid -EXPORT_SYMBOL vmlinux 0xc4dd0cdd xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xc4df56b4 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xc4e935f9 inet_frag_find EXPORT_SYMBOL vmlinux 0xc4e95bef pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0xc50b1625 release_sock -EXPORT_SYMBOL vmlinux 0xc51f1ba8 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xc5278bcb vfs_rename +EXPORT_SYMBOL vmlinux 0xc4f2f439 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xc4f420b7 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xc4f97772 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xc4ffe528 sock_pfree +EXPORT_SYMBOL vmlinux 0xc507b30c register_filesystem EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc54f0efa __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xc53763cf close_fd_get_file EXPORT_SYMBOL vmlinux 0xc558530d profile_pc -EXPORT_SYMBOL vmlinux 0xc55d4868 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xc56242ae kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user EXPORT_SYMBOL vmlinux 0xc58fd1af eisa_driver_unregister EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a5f213 nonseekable_open -EXPORT_SYMBOL vmlinux 0xc5a8cf7c reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xc59e9fa2 mmc_wait_for_req EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5d38ffe keyring_clear EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e68f94 xfrm4_udp_encap_rcv EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5ee54af ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xc5eab568 ip_defrag EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last EXPORT_SYMBOL vmlinux 0xc609ec4d mipi_dsi_dcs_set_display_brightness EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0xc6232020 km_query EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc6497fea inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0xc64c0e76 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xc6569dd1 scsi_host_get EXPORT_SYMBOL vmlinux 0xc65a9197 blk_mq_delay_run_hw_queues EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc66d9030 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xc67c7911 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xc68c51ea inet_sendpage EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc +EXPORT_SYMBOL vmlinux 0xc6a1d7d3 iw_handler_get_spy EXPORT_SYMBOL vmlinux 0xc6a8a688 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xc6bbcee9 unix_detach_fds +EXPORT_SYMBOL vmlinux 0xc6aa5dd2 ata_print_version +EXPORT_SYMBOL vmlinux 0xc6b71448 ip6_dst_check EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cba27b mntput EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6cd26c3 __wait_on_buffer EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6ec31c9 xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0xc6ed6dbc __d_lookup_done -EXPORT_SYMBOL vmlinux 0xc6ed971d unregister_console EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key EXPORT_SYMBOL vmlinux 0xc6f8aaec mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xc70382cd gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc713b215 dcb_setapp +EXPORT_SYMBOL vmlinux 0xc71994b6 ndo_dflt_fdb_dump EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc7373a20 inet6_add_offload -EXPORT_SYMBOL vmlinux 0xc73c5b02 write_one_page -EXPORT_SYMBOL vmlinux 0xc77983e4 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xc7713b3e get_fs_type +EXPORT_SYMBOL vmlinux 0xc77517ae inet6_bind +EXPORT_SYMBOL vmlinux 0xc77b247a dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain EXPORT_SYMBOL vmlinux 0xc78931a4 max8925_bulk_write EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock EXPORT_SYMBOL vmlinux 0xc7acea9a mount_nodev EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7cde01b fqdir_exit +EXPORT_SYMBOL vmlinux 0xc7c3b0e3 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xc7c65002 tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7e1a6b2 vm_map_pages -EXPORT_SYMBOL vmlinux 0xc7e9e845 tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0xc7f37350 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xc7dbcc8f jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xc7f083d3 devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0xc7fd6bfe truncate_pagecache +EXPORT_SYMBOL vmlinux 0xc80759d9 netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc8139186 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xc8229b21 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xc8235661 ip_queue_xmit EXPORT_SYMBOL vmlinux 0xc82c6e84 vmalloc_to_page EXPORT_SYMBOL vmlinux 0xc82fc563 empty_aops -EXPORT_SYMBOL vmlinux 0xc83ce912 dev_set_promiscuity EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc851ae2e tcp_disconnect -EXPORT_SYMBOL vmlinux 0xc868dcb5 xfrm_unregister_type EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes EXPORT_SYMBOL vmlinux 0xc879a1ab con_set_default_unimap EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8922650 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xc894a7cd dev_set_group EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread EXPORT_SYMBOL vmlinux 0xc8b2d2d1 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xc8b5c8c2 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xc8db6c9b pfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8e299b1 generic_fadvise EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc93459c6 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc94d0e89 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xc953cc42 tcp_md5_do_del EXPORT_SYMBOL vmlinux 0xc9560775 fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0xc957b454 iter_file_splice_write EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc974f57c dev_get_by_index EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc99853f4 vfs_get_fsid EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9ad22fa mmc_retune_release EXPORT_SYMBOL vmlinux 0xc9b33111 cpumask_any_distribute EXPORT_SYMBOL vmlinux 0xc9b34292 mpage_writepages EXPORT_SYMBOL vmlinux 0xc9bfdad6 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xc9d1ae79 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xc9d44ee8 sk_common_release EXPORT_SYMBOL vmlinux 0xc9df0003 rproc_resource_cleanup EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9eede03 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xc9e2ed80 inet_addr_type +EXPORT_SYMBOL vmlinux 0xc9e3824f mmc_release_host EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock -EXPORT_SYMBOL vmlinux 0xca048ee9 dev_get_phys_port_name EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function EXPORT_SYMBOL vmlinux 0xca48b7fd tty_check_change -EXPORT_SYMBOL vmlinux 0xca6a7eea netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xca644527 bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca97a62a devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xcac0b1ad generic_file_open +EXPORT_SYMBOL vmlinux 0xcabbac84 sock_edemux +EXPORT_SYMBOL vmlinux 0xcac66f2a nf_ct_get_tuple_skb EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcad49fc0 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0xcad4d5ec scsi_host_get EXPORT_SYMBOL vmlinux 0xcadba0e4 get_vm_area +EXPORT_SYMBOL vmlinux 0xcaeb9761 inet_listen +EXPORT_SYMBOL vmlinux 0xcaeca43a sock_efree +EXPORT_SYMBOL vmlinux 0xcaf07395 __traceiter_spi_transfer_start EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaff2142 vme_irq_request EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu EXPORT_SYMBOL vmlinux 0xcb2f2b52 boot_cpu_data +EXPORT_SYMBOL vmlinux 0xcb350c93 inet_offloads EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb4b89be scsi_ioctl -EXPORT_SYMBOL vmlinux 0xcb60f594 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xcb492564 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xcb6a9189 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xcb6f02ff vfs_fileattr_get EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power EXPORT_SYMBOL vmlinux 0xcb94348a inc_node_page_state -EXPORT_SYMBOL vmlinux 0xcb9e4bae jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xcbae560b tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0xcbba0910 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0xcbc81968 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xcb959351 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xcba6fac7 __put_page EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame +EXPORT_SYMBOL vmlinux 0xcbc8b8bc vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbdcab9f dentry_open EXPORT_SYMBOL vmlinux 0xcbe53c46 convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0xcbf25da8 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xcbf8810b __phy_resume EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc197946 qdisc_warn_nonwc 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 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc3ca54f tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next EXPORT_SYMBOL vmlinux 0xcc4ab866 __blockdev_direct_IO EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc50746c seg6_hmac_info_add EXPORT_SYMBOL vmlinux 0xcc57205b mode_strip_sgid EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc62e2a0 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xcc672b21 migrate_vma_setup EXPORT_SYMBOL vmlinux 0xcc757a68 md_write_start -EXPORT_SYMBOL vmlinux 0xcc7c40c1 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0xcc9974b5 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xcc7b1f25 phy_loopback EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xccb0e318 vm_insert_page EXPORT_SYMBOL vmlinux 0xccc77dad blk_pm_runtime_init EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccde5774 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xcce2d601 tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize EXPORT_SYMBOL vmlinux 0xccfb7972 ilookup 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 0xcd046226 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xcd074915 generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd38f5cb scsi_report_opcode -EXPORT_SYMBOL vmlinux 0xcd3c90a8 mmc_command_done -EXPORT_SYMBOL vmlinux 0xcd52dc98 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xcd5e142a bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xcd749836 inet_add_protocol -EXPORT_SYMBOL vmlinux 0xcd815ae5 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xcd320683 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xcd6c69d4 sock_alloc EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd9bb9e5 touch_buffer -EXPORT_SYMBOL vmlinux 0xcd9fdd79 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0xcdb46a30 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0xcdbd8518 sock_set_keepalive EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel EXPORT_SYMBOL vmlinux 0xcdcb8e48 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0xcdd31143 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xcde47d2f neigh_parms_alloc EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdef7c94 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xcdf5e993 dev_mc_del -EXPORT_SYMBOL vmlinux 0xcdf6d268 register_console -EXPORT_SYMBOL vmlinux 0xcdfc7076 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xcdef4a75 finalize_exec +EXPORT_SYMBOL vmlinux 0xcdf42b27 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xcdf7ee3b linkwatch_fire_event EXPORT_SYMBOL vmlinux 0xcdfd00a4 param_get_string EXPORT_SYMBOL vmlinux 0xce12bcbf pci_scan_bus -EXPORT_SYMBOL vmlinux 0xce17e526 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xce200b20 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xce26484b phy_device_free +EXPORT_SYMBOL vmlinux 0xce1a28c9 icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce3251b1 inet_frags_fini EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce52cb38 mfd_cell_enable EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce6ce41d flow_rule_match_ip EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table EXPORT_SYMBOL vmlinux 0xce7e7d36 pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xce8cc4f9 skb_vlan_push EXPORT_SYMBOL vmlinux 0xce90a610 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xcea19df1 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xcea069ab __inet_hash EXPORT_SYMBOL vmlinux 0xcea381dd x86_match_cpu EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul EXPORT_SYMBOL vmlinux 0xceae3b3c mipi_dsi_dcs_set_display_off EXPORT_SYMBOL vmlinux 0xceb547cc blk_mq_free_tag_set EXPORT_SYMBOL vmlinux 0xceb7f4b1 seq_pad -EXPORT_SYMBOL vmlinux 0xcebf165c xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xcebabf80 phy_sfp_probe EXPORT_SYMBOL vmlinux 0xceca04af mipi_dsi_dcs_set_tear_scanline EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xcee21aad prepare_kernel_cred EXPORT_SYMBOL vmlinux 0xcee62ab6 pldmfw_flash_image EXPORT_SYMBOL vmlinux 0xcee8524c ilookup5_nowait EXPORT_SYMBOL vmlinux 0xceeb9e8e dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xceebc656 inet_frag_pull_head EXPORT_SYMBOL vmlinux 0xceefc51f devm_memremap EXPORT_SYMBOL vmlinux 0xcef428ec free_cgroup_ns EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcefcf368 sk_stream_wait_close EXPORT_SYMBOL vmlinux 0xcf1341e0 agp_create_memory EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf34b38e skb_copy_bits -EXPORT_SYMBOL vmlinux 0xcf3c49fa phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xcf2aeb9e _dev_info EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf501338 tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0xcf68a8e5 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xcf708a75 mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0xcf7295b0 fb_get_mode -EXPORT_SYMBOL vmlinux 0xcf7a8fa1 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xcf94729a send_sig EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcf9cf538 xp_raw_get_data EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid EXPORT_SYMBOL vmlinux 0xcfbf6153 __serio_register_driver EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0xcfccc6dd ihold -EXPORT_SYMBOL vmlinux 0xcfcf55d2 mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0xcfd80990 mdio_driver_register EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xcfe326fc netpoll_setup -EXPORT_SYMBOL vmlinux 0xd00fba2c security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xd0197bd3 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0xd02641e4 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xd010babf i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0xd02a0377 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0xd02e2a0a nosteal_pipe_buf_ops EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd0617c76 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xd05298d0 vme_register_driver +EXPORT_SYMBOL vmlinux 0xd052cb74 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0xd0637027 __mdiobus_write EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd0672618 __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0xd06bea7b find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xd0742cd5 skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump EXPORT_SYMBOL vmlinux 0xd0951117 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0xd098489d kmem_cache_size EXPORT_SYMBOL vmlinux 0xd09a2dad kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xd0abcd15 blk_get_request -EXPORT_SYMBOL vmlinux 0xd0ad7061 security_sctp_bind_connect EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock EXPORT_SYMBOL vmlinux 0xd0b4d0a5 simple_transaction_release EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface EXPORT_SYMBOL vmlinux 0xd0babf34 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0xd0bc2dd7 inet6_add_protocol EXPORT_SYMBOL vmlinux 0xd0c0b771 from_kgid +EXPORT_SYMBOL vmlinux 0xd0c20cab inet_ioctl +EXPORT_SYMBOL vmlinux 0xd0c5d607 vme_register_error_handler EXPORT_SYMBOL vmlinux 0xd0da656b __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xd0dfa0f9 __dynamic_ibdev_dbg EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key EXPORT_SYMBOL vmlinux 0xd10a0a5f kthread_create_on_node EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize EXPORT_SYMBOL vmlinux 0xd14ae1b1 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xd14b5888 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xd15429c6 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0xd1584d73 io_uring_get_socket EXPORT_SYMBOL vmlinux 0xd164ec9c devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xd175db6a scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xd17375e5 jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0xd1769161 kobject_get -EXPORT_SYMBOL vmlinux 0xd17bc93b dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0xd17c53d0 dev_get_port_parent_id EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd1868cf2 vme_dma_list_add EXPORT_SYMBOL vmlinux 0xd1883305 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0xd189718e scsi_set_medium_removal EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd19b6ed3 udp_set_csum +EXPORT_SYMBOL vmlinux 0xd1973492 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xd19b6671 inode_add_bytes EXPORT_SYMBOL vmlinux 0xd19ffe01 d_tmpfile EXPORT_SYMBOL vmlinux 0xd1a1a74b pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0xd1b9f3fd lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0xd1c7f5b8 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xd1c71851 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xd1d090c6 netpoll_send_skb EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string EXPORT_SYMBOL vmlinux 0xd1d944f0 dquot_get_next_id EXPORT_SYMBOL vmlinux 0xd1e66f5a dev_pm_opp_register_notifier EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings EXPORT_SYMBOL vmlinux 0xd1fa2e52 set_pages_uc -EXPORT_SYMBOL vmlinux 0xd217a7a1 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xd20dc225 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0xd2136620 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xd21609b6 reuseport_detach_prog EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item EXPORT_SYMBOL vmlinux 0xd22ae529 bio_devname -EXPORT_SYMBOL vmlinux 0xd237d8e2 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xd232d7e0 scsi_host_busy EXPORT_SYMBOL vmlinux 0xd24163e3 backlight_device_get_by_name EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd26f28ba xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd289a358 flush_signals EXPORT_SYMBOL vmlinux 0xd29359a8 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xd29e93c1 free_task EXPORT_SYMBOL vmlinux 0xd2adc816 simple_rename EXPORT_SYMBOL vmlinux 0xd2bc5c46 __get_user_nocheck_2 EXPORT_SYMBOL vmlinux 0xd2c848f9 uart_register_driver EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller -EXPORT_SYMBOL vmlinux 0xd2d61aca block_write_end EXPORT_SYMBOL vmlinux 0xd2d7a581 __register_nls -EXPORT_SYMBOL vmlinux 0xd2d9be97 sk_wait_data +EXPORT_SYMBOL vmlinux 0xd2d9c369 phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0xd2efd21e devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xd2f40521 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0xd305e9b7 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0xd325b059 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xd3364898 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xd336fe1b create_empty_buffers +EXPORT_SYMBOL vmlinux 0xd307dd83 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xd333c604 filemap_fdatawrite_wbc EXPORT_SYMBOL vmlinux 0xd338cee0 mipi_dsi_driver_unregister EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xd353803f kill_pgrp +EXPORT_SYMBOL vmlinux 0xd350d2b6 scsi_get_host_dev EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc EXPORT_SYMBOL vmlinux 0xd35b40ec iov_iter_gap_alignment @@ -10734,1042 +10634,1034 @@ EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore EXPORT_SYMBOL vmlinux 0xd3630e8d __phy_read_mmd EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd3755d52 mmc_can_erase -EXPORT_SYMBOL vmlinux 0xd381d240 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xd3811b8e path_is_mountpoint EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask -EXPORT_SYMBOL vmlinux 0xd391c25b __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xd3966f43 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xd3a42559 jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0xd3b04763 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xd3d51421 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xd3dbf6ea __module_get -EXPORT_SYMBOL vmlinux 0xd3e2cac0 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0xd3e767b2 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0xd3e8e1f5 splice_direct_to_actor EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd402573c xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0xd3f09ba6 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xd3f9b263 skb_copy_header EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal EXPORT_SYMBOL vmlinux 0xd443e5e6 __nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0xd44a906b dquot_quota_off EXPORT_SYMBOL vmlinux 0xd44e6059 add_watch_to_object EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd46da336 get_unmapped_area -EXPORT_SYMBOL vmlinux 0xd47277a7 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xd48264d3 sock_queue_err_skb EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system EXPORT_SYMBOL vmlinux 0xd488bcd4 vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0xd48b1639 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0xd4972446 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xd48f1101 dst_init +EXPORT_SYMBOL vmlinux 0xd499e464 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xd49cab2e dev_get_by_name EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c8eb5e dev_uc_del +EXPORT_SYMBOL vmlinux 0xd4cb9985 sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4d8c540 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0xd4f5ef37 inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0xd4fa2b69 textsearch_destroy EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd4fda3b0 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0xd5045767 xfrm6_input_addr EXPORT_SYMBOL vmlinux 0xd5115676 get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0xd511b25f vga_switcheroo_client_fb_set EXPORT_SYMBOL vmlinux 0xd518287e bdi_register EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources EXPORT_SYMBOL vmlinux 0xd5357a52 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xd538ff00 remove_arg_zero -EXPORT_SYMBOL vmlinux 0xd54077cd tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0xd5522e05 xp_can_alloc +EXPORT_SYMBOL vmlinux 0xd53be01a tcp_conn_request EXPORT_SYMBOL vmlinux 0xd56f417d request_firmware EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd5940e5a scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xd5a4a698 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xd58fd49d jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xd5a2a192 phy_device_free EXPORT_SYMBOL vmlinux 0xd5ad8bdd pcim_iomap EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5c42b98 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xd5cb890d i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xd5bc29cc dev_get_by_napi_id EXPORT_SYMBOL vmlinux 0xd5cc538a rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xd5d606a5 skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0xd5d73c71 simple_rmdir +EXPORT_SYMBOL vmlinux 0xd5da15d9 stream_open +EXPORT_SYMBOL vmlinux 0xd5f89c75 buffer_check_dirty_writeback EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd5fdc8c6 netdev_lower_dev_get_private EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k EXPORT_SYMBOL vmlinux 0xd610eaeb pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xd6286b21 __getblk_gfp +EXPORT_SYMBOL vmlinux 0xd622fd60 sk_dst_check EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table EXPORT_SYMBOL vmlinux 0xd631a2cc rdmacg_uncharge EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd652bf64 skb_dequeue +EXPORT_SYMBOL vmlinux 0xd64b1792 xfrm_input +EXPORT_SYMBOL vmlinux 0xd6589e02 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xd65aa205 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xd6652b30 tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness -EXPORT_SYMBOL vmlinux 0xd67c699f udp_seq_next EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68bf08f end_page_private_2 +EXPORT_SYMBOL vmlinux 0xd6892f06 nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table EXPORT_SYMBOL vmlinux 0xd6928da2 pci_iomap -EXPORT_SYMBOL vmlinux 0xd69a0a5d __sock_i_ino -EXPORT_SYMBOL vmlinux 0xd69e5a4f kmalloc_caches -EXPORT_SYMBOL vmlinux 0xd6a5febc tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xd697543d security_path_mknod EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6aa93e7 ptp_schedule_worker EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6b9eee4 phy_config_aneg -EXPORT_SYMBOL vmlinux 0xd6bac472 generic_permission -EXPORT_SYMBOL vmlinux 0xd6d46f34 __skb_pad -EXPORT_SYMBOL vmlinux 0xd6e8a219 skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc EXPORT_SYMBOL vmlinux 0xd6f35a05 hash_and_copy_to_iter EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd7014ec0 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xd6ffb2ad __skb_flow_dissect EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd71cc882 eth_gro_complete EXPORT_SYMBOL vmlinux 0xd7206ac6 rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd73aaf22 __inet_stream_connect EXPORT_SYMBOL vmlinux 0xd73e921a param_set_short -EXPORT_SYMBOL vmlinux 0xd73ebe3f fifo_set_limit EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd7608732 udp_read_sock +EXPORT_SYMBOL vmlinux 0xd75b8c6f netif_rx_ni +EXPORT_SYMBOL vmlinux 0xd76f372d ipv6_find_hdr EXPORT_SYMBOL vmlinux 0xd7750280 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0xd77fdd5c vfs_getattr -EXPORT_SYMBOL vmlinux 0xd7819b97 pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0xd789e7ad device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xd77d0a4c inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xd780f101 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xd7972092 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xd7b83d0f locks_remove_posix +EXPORT_SYMBOL vmlinux 0xd7c3e724 flow_block_cb_decref EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7d49c83 do_splice_direct EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi -EXPORT_SYMBOL vmlinux 0xd7e39d44 locks_copy_lock EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f83541 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0xd806738d vfs_create +EXPORT_SYMBOL vmlinux 0xd7f71100 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xd821a9a3 genphy_aneg_done EXPORT_SYMBOL vmlinux 0xd842301c bdi_put EXPORT_SYMBOL vmlinux 0xd844f8a4 scsi_get_device_flags_keyed EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register EXPORT_SYMBOL vmlinux 0xd84ad932 mdio_device_create -EXPORT_SYMBOL vmlinux 0xd8549c86 dev_addr_del -EXPORT_SYMBOL vmlinux 0xd8599f31 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xd8611af0 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xd869bb31 cad_pid EXPORT_SYMBOL vmlinux 0xd878e153 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xd8849c61 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xd8868c76 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xd886ba6c sock_gettstamp EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a67050 udp_poll EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8afae3a jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8c3db87 tcp_getsockopt EXPORT_SYMBOL vmlinux 0xd8c4fe75 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xd8c8b01a netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xd8c7c4ef unregister_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0xd8c97eae pci_assign_resource EXPORT_SYMBOL vmlinux 0xd8cef6e1 clear_user +EXPORT_SYMBOL vmlinux 0xd8d1b604 dump_align EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8e1e688 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0xd8e61a90 eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0xd8fa1b92 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xd8fbbc54 prepare_to_swait_event EXPORT_SYMBOL vmlinux 0xd90cd7e6 cdev_init +EXPORT_SYMBOL vmlinux 0xd91052fe key_move EXPORT_SYMBOL vmlinux 0xd91571cd __blk_alloc_disk EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd920332c tcp_ioctl +EXPORT_SYMBOL vmlinux 0xd922c9ca __mdiobus_read EXPORT_SYMBOL vmlinux 0xd92d380e dma_unmap_resource EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd92fe120 tcp_gro_complete EXPORT_SYMBOL vmlinux 0xd933f209 __SCT__tp_func_rdpmc EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd94be0eb __scsi_device_lookup EXPORT_SYMBOL vmlinux 0xd951cc7f serio_interrupt -EXPORT_SYMBOL vmlinux 0xd96fcfcb mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xd957c44d vfs_llseek +EXPORT_SYMBOL vmlinux 0xd96b5b9a xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd977842f xfrm_state_delete_tunnel EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9a0fe89 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xd98fef50 tc_setup_cb_destroy EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head EXPORT_SYMBOL vmlinux 0xd9b6b262 unregister_md_personality EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get EXPORT_SYMBOL vmlinux 0xd9ba75c0 input_mt_report_pointer_emulation EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9dfe744 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xd9ec4b02 dev_uc_add EXPORT_SYMBOL vmlinux 0xd9f1a44f __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xda0c8a7a tcp_setsockopt EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake EXPORT_SYMBOL vmlinux 0xda26b8ea __irq_regs +EXPORT_SYMBOL vmlinux 0xda321323 lease_modify EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open EXPORT_SYMBOL vmlinux 0xda3d842c processors -EXPORT_SYMBOL vmlinux 0xda3f7eae ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xda4a0fdc dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0xda56c4b5 skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0xda57f1b5 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xda6316c1 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xda64cc6b __get_hash_from_flowi6 EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType +EXPORT_SYMBOL vmlinux 0xda7c649c zap_page_range EXPORT_SYMBOL vmlinux 0xda803d6f dquot_scan_active EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xdaa299e9 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xda8f1683 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xda942992 read_cache_page EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad00f2c scsi_device_set_state EXPORT_SYMBOL vmlinux 0xdad13544 ptrs_per_p4d -EXPORT_SYMBOL vmlinux 0xdadf4701 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xdae7b40f phy_device_create -EXPORT_SYMBOL vmlinux 0xdaf02c7e ppp_input_error -EXPORT_SYMBOL vmlinux 0xdaf94b29 wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0xdafc34fe ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xdafcce47 scsi_device_get -EXPORT_SYMBOL vmlinux 0xdb0846f2 sk_error_report -EXPORT_SYMBOL vmlinux 0xdb09a74e __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xdb16276b reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xdaf5fc38 noop_llseek +EXPORT_SYMBOL vmlinux 0xdb06c363 dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb21022e __traceiter_spi_transfer_stop EXPORT_SYMBOL vmlinux 0xdb2f0a9f devm_rproc_add -EXPORT_SYMBOL vmlinux 0xdb48f0cd scm_detach_fds EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy EXPORT_SYMBOL vmlinux 0xdb6cdf26 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xdb70277d fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb89b6b3 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0xdb7e8fea xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xdb8acb90 remap_pfn_range EXPORT_SYMBOL vmlinux 0xdb95e185 intel_scu_ipc_dev_command_with_size -EXPORT_SYMBOL vmlinux 0xdb9aa53f ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0xdbbb8d09 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0xdbbd9769 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0xdbbe1460 vme_slave_request +EXPORT_SYMBOL vmlinux 0xdbade793 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xdbb642ea tcp_close EXPORT_SYMBOL vmlinux 0xdbc1ea6a rproc_elf_load_segments EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0xdbd7ba2d security_sk_clone EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbedffe2 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xdbf69082 ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0xdbfa3743 ps2_begin_command -EXPORT_SYMBOL vmlinux 0xdbfc3f69 alloc_pages_vma +EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc1679e6 fs_context_for_mount -EXPORT_SYMBOL vmlinux 0xdc231737 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xdc18dc18 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xdc308fb4 tcp_mmap EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv EXPORT_SYMBOL vmlinux 0xdc4be329 dcache_dir_close EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc52d235 nobh_writepage EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0xdc777d34 skb_copy +EXPORT_SYMBOL vmlinux 0xdc5cb37a ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xdc5f839d ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xdc8f65b5 submit_bio EXPORT_SYMBOL vmlinux 0xdc972d1c d_alloc_name +EXPORT_SYMBOL vmlinux 0xdc989905 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xdcb592ea __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xdcb9303f devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xdcd497ce sock_bindtoindex +EXPORT_SYMBOL vmlinux 0xdcd11db2 skb_page_frag_refill EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress EXPORT_SYMBOL vmlinux 0xdce310c0 set_pages_array_uc EXPORT_SYMBOL vmlinux 0xdce53443 simple_unlink -EXPORT_SYMBOL vmlinux 0xdcfe249b netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xdcef5730 netpoll_parse_options EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xdd0d153d netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xdd0fac76 vm_insert_pages +EXPORT_SYMBOL vmlinux 0xdd0d1552 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xdd105246 sock_no_accept EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd190eba sk_page_frag_refill EXPORT_SYMBOL vmlinux 0xdd1f1a1b __cleancache_get_page EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create EXPORT_SYMBOL vmlinux 0xdd3bb095 node_data EXPORT_SYMBOL vmlinux 0xdd3efe2a key_put -EXPORT_SYMBOL vmlinux 0xdd44bf23 inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0xdd47b8cc blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xdd5ca4dd udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xdd5db6b7 phy_config_aneg EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd6c65be icmp6_send -EXPORT_SYMBOL vmlinux 0xdd6e427e vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xdd716db5 inet_dgram_connect EXPORT_SYMBOL vmlinux 0xdd75e200 device_add_disk EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd93ada7 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xdd9b57f1 bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0xdd9eb7b7 pcim_iomap_regions EXPORT_SYMBOL vmlinux 0xdda12a8a scsi_register_interface EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddaf17cb nf_getsockopt EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat EXPORT_SYMBOL vmlinux 0xddb1f385 simple_statfs -EXPORT_SYMBOL vmlinux 0xddc2e8dc sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit -EXPORT_SYMBOL vmlinux 0xddef5acd d_path EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done EXPORT_SYMBOL vmlinux 0xddf9503d param_set_ushort EXPORT_SYMBOL vmlinux 0xddfa0b50 __mod_node_page_state -EXPORT_SYMBOL vmlinux 0xde008be0 __dev_get_by_name EXPORT_SYMBOL vmlinux 0xde0fdeff proc_set_user +EXPORT_SYMBOL vmlinux 0xde15d062 genphy_update_link EXPORT_SYMBOL vmlinux 0xde1ebc42 sget -EXPORT_SYMBOL vmlinux 0xde1f63cc nf_hook_slow EXPORT_SYMBOL vmlinux 0xde233c8d param_ops_long -EXPORT_SYMBOL vmlinux 0xde2383a2 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xde25f7ed jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive EXPORT_SYMBOL vmlinux 0xde303b43 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xde4d881a netlink_unicast +EXPORT_SYMBOL vmlinux 0xde39d1ea block_invalidatepage +EXPORT_SYMBOL vmlinux 0xde4155ab vme_bus_error_handler EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0xde640321 xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0xde6c3024 __generic_file_fsync EXPORT_SYMBOL vmlinux 0xde6fcb1d agp3_generic_tlbflush EXPORT_SYMBOL vmlinux 0xde7b0009 setattr_should_drop_sgid EXPORT_SYMBOL vmlinux 0xde80cd09 ioremap -EXPORT_SYMBOL vmlinux 0xde89e0e4 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xde907241 __skb_vlan_pop EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xdea44281 netdev_set_num_tc EXPORT_SYMBOL vmlinux 0xdeb84357 blk_set_queue_depth EXPORT_SYMBOL vmlinux 0xdebac924 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xdec772fc phy_connect_direct +EXPORT_SYMBOL vmlinux 0xdeced31a kernel_listen EXPORT_SYMBOL vmlinux 0xdecffe22 fb_prepare_logo EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xded68a42 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xdee72273 __bread_gfp +EXPORT_SYMBOL vmlinux 0xded8b0a4 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xdee80b3c ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0xdef227a6 pci_request_selected_regions_exclusive EXPORT_SYMBOL vmlinux 0xdef25e0a remove_watch_from_object -EXPORT_SYMBOL vmlinux 0xdef7c07f devm_devfreq_remove_device EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode EXPORT_SYMBOL vmlinux 0xdef8d0ae __SCT__tp_func_kfree -EXPORT_SYMBOL vmlinux 0xdefcc01c tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xdf0ce593 phy_device_register +EXPORT_SYMBOL vmlinux 0xdf186040 tcf_exts_num_actions EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xdf32d4a7 nf_reinject EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf527609 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0xdf4f0569 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies EXPORT_SYMBOL vmlinux 0xdf713313 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xdf76034e phy_disconnect +EXPORT_SYMBOL vmlinux 0xdf76004d tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0xdf81c592 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xdf84d03d nobh_write_end EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay EXPORT_SYMBOL vmlinux 0xdf8d781f acpi_update_all_gpes -EXPORT_SYMBOL vmlinux 0xdf901d1d skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf929ab4 __cancel_dirty_page EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies EXPORT_SYMBOL vmlinux 0xdf981166 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xdf9cd800 qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0xdf9db712 d_set_fallthru -EXPORT_SYMBOL vmlinux 0xdfa5b551 __phy_resume +EXPORT_SYMBOL vmlinux 0xdfb4405c netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0xdfb6e7fd d_find_alias -EXPORT_SYMBOL vmlinux 0xdfca1c71 load_nls EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfce0592 dst_release EXPORT_SYMBOL vmlinux 0xdfd261f5 __post_watch_notification +EXPORT_SYMBOL vmlinux 0xdfd89dd9 mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdfeb80ac __getblk_gfp EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe00f98af vme_slot_num EXPORT_SYMBOL vmlinux 0xe0112fc4 __x86_indirect_thunk_r9 -EXPORT_SYMBOL vmlinux 0xe025dea6 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xe02716d2 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xe012d3a6 vme_init_bridge +EXPORT_SYMBOL vmlinux 0xe01ca091 tcf_idr_release +EXPORT_SYMBOL vmlinux 0xe0282b12 skb_checksum EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase -EXPORT_SYMBOL vmlinux 0xe02dc40a __i2c_transfer EXPORT_SYMBOL vmlinux 0xe033cb29 native_queued_spin_lock_slowpath EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops EXPORT_SYMBOL vmlinux 0xe03de04c scsi_partsize EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe04afa6f netdev_adjacent_change_abort EXPORT_SYMBOL vmlinux 0xe04b28c0 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xe054f62e mfd_cell_disable -EXPORT_SYMBOL vmlinux 0xe057e271 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xe067d3c5 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xe064ee20 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xe0784f4b flow_rule_match_ipv4_addrs 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 0xe0830dc8 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xe08fed22 nf_log_set +EXPORT_SYMBOL vmlinux 0xe083d86a jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0xe091c977 list_sort EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start -EXPORT_SYMBOL vmlinux 0xe0aa225e udp_push_pending_frames EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b7da82 netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco EXPORT_SYMBOL vmlinux 0xe0cc04df dquot_operations EXPORT_SYMBOL vmlinux 0xe0d46b09 intel_gmch_probe -EXPORT_SYMBOL vmlinux 0xe0d49de6 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xe0e9629e pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xe0e06a9c gro_cells_init +EXPORT_SYMBOL vmlinux 0xe0fa8925 mmc_add_host +EXPORT_SYMBOL vmlinux 0xe104d7a0 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xe10c244d register_qdisc EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial EXPORT_SYMBOL vmlinux 0xe113da28 fscrypt_free_bounce_page 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 0xe12e84cf d_path +EXPORT_SYMBOL vmlinux 0xe136ced8 devfreq_add_device EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe1654074 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xe170e18b flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xe1944b86 eth_get_headlen EXPORT_SYMBOL vmlinux 0xe1a3a513 __phy_write_mmd EXPORT_SYMBOL vmlinux 0xe1bee700 __traceiter_read_msr -EXPORT_SYMBOL vmlinux 0xe1c04655 iterate_fd -EXPORT_SYMBOL vmlinux 0xe1c3f4ef devm_devfreq_add_device EXPORT_SYMBOL vmlinux 0xe1cee9e7 elv_rb_latter_request EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format EXPORT_SYMBOL vmlinux 0xe1dd7a47 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xe1e2c416 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xe1e8d790 sock_wfree -EXPORT_SYMBOL vmlinux 0xe2029ec7 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xe1dedc84 netlink_capable +EXPORT_SYMBOL vmlinux 0xe1e67869 ip_fraglist_init EXPORT_SYMBOL vmlinux 0xe2076255 cfb_fillrect EXPORT_SYMBOL vmlinux 0xe213ecc0 param_get_uint +EXPORT_SYMBOL vmlinux 0xe219d8cd mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xe21ee2b9 iterate_fd EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe21fe288 file_check_and_advance_wb_err EXPORT_SYMBOL vmlinux 0xe22c67c5 pnp_unregister_card_driver EXPORT_SYMBOL vmlinux 0xe240f6e9 proc_create_data -EXPORT_SYMBOL vmlinux 0xe24228a5 flow_rule_match_icmp EXPORT_SYMBOL vmlinux 0xe24fcf3d legacy_pic -EXPORT_SYMBOL vmlinux 0xe250ab95 keyring_search -EXPORT_SYMBOL vmlinux 0xe25b6921 netif_rx_any_context -EXPORT_SYMBOL vmlinux 0xe25c1345 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xe264d15c init_net +EXPORT_SYMBOL vmlinux 0xe250f50c __block_write_begin EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe274c070 mmc_can_trim -EXPORT_SYMBOL vmlinux 0xe2752fdd tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xe2765df8 setup_new_exec EXPORT_SYMBOL vmlinux 0xe27b3742 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0xe2983d58 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xe27fc631 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0xe2847af1 filemap_flush +EXPORT_SYMBOL vmlinux 0xe2a4d109 inet_frag_kill EXPORT_SYMBOL vmlinux 0xe2a6da2a simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xe2a98727 tcf_idr_search -EXPORT_SYMBOL vmlinux 0xe2b28f7d phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0xe2b4df15 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xe2bc9a43 locks_init_lock +EXPORT_SYMBOL vmlinux 0xe2b0a91f user_path_create EXPORT_SYMBOL vmlinux 0xe2c20445 tty_insert_flip_string_flags EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp EXPORT_SYMBOL vmlinux 0xe2e28fc0 __traceiter_write_msr -EXPORT_SYMBOL vmlinux 0xe2e41bfc vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xe2f225eb sk_common_release +EXPORT_SYMBOL vmlinux 0xe2e2eb72 scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0xe2fbddf0 tty_port_carrier_raised EXPORT_SYMBOL vmlinux 0xe2fbdf3e fs_param_is_string -EXPORT_SYMBOL vmlinux 0xe2fbf2aa ip_local_deliver EXPORT_SYMBOL vmlinux 0xe2fe8f25 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xe3143ab5 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xe31e4d40 inet_addr_type +EXPORT_SYMBOL vmlinux 0xe300d310 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xe31941ff tcp_release_cb +EXPORT_SYMBOL vmlinux 0xe327818a kernel_getsockname EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe331df56 skb_queue_head -EXPORT_SYMBOL vmlinux 0xe33c7d0d xp_set_rxq_info EXPORT_SYMBOL vmlinux 0xe352278d pcim_iounmap -EXPORT_SYMBOL vmlinux 0xe3557044 vfs_parse_fs_param_source EXPORT_SYMBOL vmlinux 0xe391d545 nd_btt_version EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3b04f49 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xe39e1f52 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xe3a13596 tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0xe3b58463 dma_resv_add_excl_fence EXPORT_SYMBOL vmlinux 0xe3c04c5e set_cached_acl EXPORT_SYMBOL vmlinux 0xe3c792e6 dquot_resume +EXPORT_SYMBOL vmlinux 0xe3c8e09f nexthop_set_hw_flags EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe3da9bbb sk_capable -EXPORT_SYMBOL vmlinux 0xe3e3982c __sk_dst_check EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3f36faf netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xe3f7edef inet_register_protosw 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 0xe412e3af invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xe410de66 fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be -EXPORT_SYMBOL vmlinux 0xe4318902 ipv4_dst_check -EXPORT_SYMBOL vmlinux 0xe43d1686 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0xe43ffcdf tcf_idr_release -EXPORT_SYMBOL vmlinux 0xe44d3405 inet6_protos +EXPORT_SYMBOL vmlinux 0xe431a9c5 dev_mc_del +EXPORT_SYMBOL vmlinux 0xe44cb2e2 neigh_seq_next EXPORT_SYMBOL vmlinux 0xe454b358 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xe45a7971 mmc_get_card EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe46874a7 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0xe47e4ab9 phy_get_pause EXPORT_SYMBOL vmlinux 0xe4837998 elevator_alloc -EXPORT_SYMBOL vmlinux 0xe4b6633c __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0xe4b68154 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xe483cd6d sock_release +EXPORT_SYMBOL vmlinux 0xe48404b1 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xe4909497 sock_set_priority EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4d26ed0 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xe4d7decb dev_add_offload EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable +EXPORT_SYMBOL vmlinux 0xe4dafbbf begin_new_exec +EXPORT_SYMBOL vmlinux 0xe4fe6f93 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xe50be011 audit_log EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe526b336 xfrm_register_type EXPORT_SYMBOL vmlinux 0xe5271ae4 register_framebuffer +EXPORT_SYMBOL vmlinux 0xe527d7d6 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xe52b6749 set_user_nice +EXPORT_SYMBOL vmlinux 0xe52be3e6 has_capability EXPORT_SYMBOL vmlinux 0xe52c693b ps2_sliced_command EXPORT_SYMBOL vmlinux 0xe5368fc1 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe5370a1c ip_frag_next +EXPORT_SYMBOL vmlinux 0xe5498a7c sk_reset_timer +EXPORT_SYMBOL vmlinux 0xe563e67d mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe5814d55 xsk_tx_completed EXPORT_SYMBOL vmlinux 0xe581c0ed path_has_submounts -EXPORT_SYMBOL vmlinux 0xe582b3d3 netdev_crit +EXPORT_SYMBOL vmlinux 0xe5902c88 sock_common_recvmsg EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end EXPORT_SYMBOL vmlinux 0xe593ce0f fscrypt_decrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0xe59e13c0 cfb_imageblit -EXPORT_SYMBOL vmlinux 0xe5c402d6 arp_xmit EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen EXPORT_SYMBOL vmlinux 0xe5d76162 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0xe5dcc877 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xe5e34968 submit_bio EXPORT_SYMBOL vmlinux 0xe5f0e907 touchscreen_report_pos EXPORT_SYMBOL vmlinux 0xe5fa7584 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xe5ff0f94 __SetPageMovable -EXPORT_SYMBOL vmlinux 0xe6018be7 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xe60466d7 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xe5fe9f6b tcp_make_synack +EXPORT_SYMBOL vmlinux 0xe6036eeb dump_page EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any EXPORT_SYMBOL vmlinux 0xe6173f69 configfs_remove_default_groups EXPORT_SYMBOL vmlinux 0xe61a29cf zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xe643ef4a filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xe651e782 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0xe66713e9 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xe66ca1f0 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xe68467f4 xfrm_state_free +EXPORT_SYMBOL vmlinux 0xe6890d76 ptp_clock_unregister EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin EXPORT_SYMBOL vmlinux 0xe692d894 pci_disable_ptm -EXPORT_SYMBOL vmlinux 0xe697d7c7 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xe697f9bd sync_inode_metadata EXPORT_SYMBOL vmlinux 0xe699b4e5 inode_needs_sync -EXPORT_SYMBOL vmlinux 0xe6aa3fda fs_context_for_submount -EXPORT_SYMBOL vmlinux 0xe6b164ce generic_writepages +EXPORT_SYMBOL vmlinux 0xe6ade81f __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0xe6bf29f9 seq_escape_mem -EXPORT_SYMBOL vmlinux 0xe6c7833e _dev_alert -EXPORT_SYMBOL vmlinux 0xe6d0b7e6 inet_ioctl EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6e4b1a1 mmc_erase +EXPORT_SYMBOL vmlinux 0xe6ddec98 sock_bind_add +EXPORT_SYMBOL vmlinux 0xe6f86fdd reuseport_alloc EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock EXPORT_SYMBOL vmlinux 0xe6fbc6e8 agp_generic_type_to_mask_type EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0xe7183c2d devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xe71e27db netpoll_send_skb EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe740fbad _dev_info +EXPORT_SYMBOL vmlinux 0xe73ae99f xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xe7461dfb _dev_alert EXPORT_SYMBOL vmlinux 0xe747c7fb __devm_request_region -EXPORT_SYMBOL vmlinux 0xe759dd70 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0xe75b5d9d sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xe74dea9d __skb_ext_del EXPORT_SYMBOL vmlinux 0xe7669197 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xe76ce178 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xe77b5be6 reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0xe77e134a param_set_invbool EXPORT_SYMBOL vmlinux 0xe785bcea disk_stack_limits EXPORT_SYMBOL vmlinux 0xe7861d37 mdio_driver_unregister EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xe78b0996 mdiobus_register_device EXPORT_SYMBOL vmlinux 0xe78e4261 __dquot_transfer EXPORT_SYMBOL vmlinux 0xe79272a1 pci_try_set_mwi EXPORT_SYMBOL vmlinux 0xe795d845 validate_slab_cache EXPORT_SYMBOL vmlinux 0xe7998642 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xe79e1b4f netif_receive_skb_core EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range EXPORT_SYMBOL vmlinux 0xe7a48bd9 vc_resize EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xe7bbafb9 security_path_unlink +EXPORT_SYMBOL vmlinux 0xe7b6649d block_write_end EXPORT_SYMBOL vmlinux 0xe7c0e14e dma_async_tx_descriptor_init EXPORT_SYMBOL vmlinux 0xe7c1a648 d_exact_alias +EXPORT_SYMBOL vmlinux 0xe7d2c169 __mmap_lock_do_trace_released EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next EXPORT_SYMBOL vmlinux 0xe7e51ca1 find_inode_rcu +EXPORT_SYMBOL vmlinux 0xe7ed7fa9 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xe7f37631 tcf_classify EXPORT_SYMBOL vmlinux 0xe7fc0137 cleancache_register_ops EXPORT_SYMBOL vmlinux 0xe805dce3 pci_get_slot +EXPORT_SYMBOL vmlinux 0xe806177a skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xe8068ffd wireless_send_event +EXPORT_SYMBOL vmlinux 0xe808b6e4 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xe80cee86 fixed_size_llseek EXPORT_SYMBOL vmlinux 0xe80d0e12 devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0xe8199f57 genlmsg_put +EXPORT_SYMBOL vmlinux 0xe80fad4d __inode_add_bytes EXPORT_SYMBOL vmlinux 0xe819b479 blk_integrity_register -EXPORT_SYMBOL vmlinux 0xe82b1813 mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xe8455489 dev_get_by_napi_id EXPORT_SYMBOL vmlinux 0xe8568e92 d_make_root +EXPORT_SYMBOL vmlinux 0xe85a634c napi_disable EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table EXPORT_SYMBOL vmlinux 0xe874ff93 input_flush_device -EXPORT_SYMBOL vmlinux 0xe884ea08 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0xe88d6f59 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xe8851690 flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0xe88e3bcd pcie_port_service_unregister EXPORT_SYMBOL vmlinux 0xe891bbd6 clear_nlink -EXPORT_SYMBOL vmlinux 0xe8962409 netdev_err +EXPORT_SYMBOL vmlinux 0xe89f4b6c icmp_ndo_send EXPORT_SYMBOL vmlinux 0xe8a0ebc1 dquot_drop EXPORT_SYMBOL vmlinux 0xe8b63c18 sb_min_blocksize EXPORT_SYMBOL vmlinux 0xe8b98295 put_ipc_ns -EXPORT_SYMBOL vmlinux 0xe8d2b3ae inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xe8d4f9e9 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xe8bce2c7 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0xe8c843ce xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xe8d77bd5 dcb_ieee_delapp EXPORT_SYMBOL vmlinux 0xe8e882ec __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0xe8eacc7c tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0xe8ea0459 __SCK__tp_func_kmalloc EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks EXPORT_SYMBOL vmlinux 0xe8fc400a agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xe8ffc500 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9150999 dev_mc_add EXPORT_SYMBOL vmlinux 0xe94b1635 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xe94bd2e1 kill_pid EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino EXPORT_SYMBOL vmlinux 0xe9571427 con_is_bound -EXPORT_SYMBOL vmlinux 0xe96e2439 sock_setsockopt EXPORT_SYMBOL vmlinux 0xe9757d2b vfio_unpin_pages -EXPORT_SYMBOL vmlinux 0xe9783b57 tcf_action_exec EXPORT_SYMBOL vmlinux 0xe98029b7 pm_vt_switch_required EXPORT_SYMBOL vmlinux 0xe985c837 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xe988c46e eth_header_parse EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res EXPORT_SYMBOL vmlinux 0xe9aaf799 vm_event_states +EXPORT_SYMBOL vmlinux 0xe9ad80dc kfree_skb_reason EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark EXPORT_SYMBOL vmlinux 0xe9b9a6b8 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0xe9b9cd41 jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0xe9d8e8fb vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xe9c4ffc3 dev_mc_sync_multiple EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size EXPORT_SYMBOL vmlinux 0xe9f31626 padata_free_shell EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xea31e386 __ip_mc_dec_group EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea493a9d security_sock_graft EXPORT_SYMBOL vmlinux 0xea53fb0f con_copy_unimap EXPORT_SYMBOL vmlinux 0xea61eef9 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xea6b71a9 register_shrinker EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea733272 skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea8370f7 skb_split -EXPORT_SYMBOL vmlinux 0xea88e884 mntget -EXPORT_SYMBOL vmlinux 0xea8d0fe6 generic_write_end -EXPORT_SYMBOL vmlinux 0xea944f22 kern_path -EXPORT_SYMBOL vmlinux 0xeaa628ea netdev_features_change EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeabc5b9e tcf_classify -EXPORT_SYMBOL vmlinux 0xeabfd588 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0xeacd6668 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xead6f766 done_path_create EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaf23c01 vme_slave_request EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod EXPORT_SYMBOL vmlinux 0xeaff61ac framebuffer_release +EXPORT_SYMBOL vmlinux 0xeb04956f no_seek_end_llseek_size EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xeb0990e5 tcp_md5_hash_skb_data EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc EXPORT_SYMBOL vmlinux 0xeb2391c9 gen_new_estimator EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point -EXPORT_SYMBOL vmlinux 0xeb34cc85 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xeb36961d sock_set_priority EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb409483 scmd_printk +EXPORT_SYMBOL vmlinux 0xeb37c03d phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xeb38d7f6 scm_detach_fds EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb481bcb jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0xeb66b69a fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xeb5681bf inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0xeb6788fd dmam_alloc_attrs EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices EXPORT_SYMBOL vmlinux 0xeb93013f file_update_time EXPORT_SYMBOL vmlinux 0xeb97998c rproc_coredump_add_segment EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xebab65ac __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xeba7b885 rt_dst_alloc EXPORT_SYMBOL vmlinux 0xebb6883e blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0xebbb5688 inode_init_owner -EXPORT_SYMBOL vmlinux 0xebc0b75f qdisc_hash_add -EXPORT_SYMBOL vmlinux 0xebcc4a99 locks_free_lock +EXPORT_SYMBOL vmlinux 0xebbb60ba tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xebd35ef0 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xebdd8707 __ip_mc_dec_group EXPORT_SYMBOL vmlinux 0xebe2b446 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0xebe474c9 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xebe88a84 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0xebeb20ea __nla_put -EXPORT_SYMBOL vmlinux 0xebec9343 phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0xebf1c6e8 devm_iounmap +EXPORT_SYMBOL vmlinux 0xec10186b reuseport_add_sock EXPORT_SYMBOL vmlinux 0xec1a0b08 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0xec230bbf security_inode_copy_up EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace EXPORT_SYMBOL vmlinux 0xec2c9f35 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xec2d9bd4 icmp6_send EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xec492c12 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0xec4d0ce6 tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec7456ba scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xec76ba91 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xec54fd43 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0xec583f30 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xec5a29f0 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xec5b8a4a security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xec67ef8e jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xec6d576b xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xec741700 shmem_aops +EXPORT_SYMBOL vmlinux 0xec779365 mmc_of_parse_voltage EXPORT_SYMBOL vmlinux 0xec7e94cb page_mapped -EXPORT_SYMBOL vmlinux 0xeca7387b vme_lm_request +EXPORT_SYMBOL vmlinux 0xec9300ba ppp_register_channel EXPORT_SYMBOL vmlinux 0xeca7be0a input_set_timestamp EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy EXPORT_SYMBOL vmlinux 0xecb7c35b devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xecc41596 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xecc26ea2 inet_bind EXPORT_SYMBOL vmlinux 0xecd27eb3 __put_user_ns -EXPORT_SYMBOL vmlinux 0xecd77f86 mr_table_alloc +EXPORT_SYMBOL vmlinux 0xecd3a5f6 phy_request_interrupt EXPORT_SYMBOL vmlinux 0xecdcabd2 copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0xece2ee7c tcf_em_unregister EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xeceda4b3 phy_support_sym_pause EXPORT_SYMBOL vmlinux 0xecfb1e40 page_pool_put_page_bulk EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed198f15 tcp_enter_cwr EXPORT_SYMBOL vmlinux 0xed1eeb25 tty_port_close_end EXPORT_SYMBOL vmlinux 0xed238617 __put_cred EXPORT_SYMBOL vmlinux 0xed262522 may_setattr -EXPORT_SYMBOL vmlinux 0xed273dab vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0xed2dc0da __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xed31cb03 call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set +EXPORT_SYMBOL vmlinux 0xed361192 tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address EXPORT_SYMBOL vmlinux 0xed5d64c4 nla_put_64bit EXPORT_SYMBOL vmlinux 0xed62c8d4 pci_release_resource +EXPORT_SYMBOL vmlinux 0xed654120 xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable EXPORT_SYMBOL vmlinux 0xed668258 user_revoke EXPORT_SYMBOL vmlinux 0xed6e1230 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0xed83e4f4 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0xed75560a inet_put_port +EXPORT_SYMBOL vmlinux 0xed92c06d mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0xed96cffb scsi_device_put EXPORT_SYMBOL vmlinux 0xed9bd49c unpin_user_pages -EXPORT_SYMBOL vmlinux 0xeda7a2b1 migrate_page_copy EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbde7d5 phy_ethtool_get_sset_count EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc96323 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0xedd3e1a4 dput EXPORT_SYMBOL vmlinux 0xede11ad7 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0xede924d6 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0xedef6dcc xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xedf58494 generic_fillattr EXPORT_SYMBOL vmlinux 0xee0206b2 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xee141cf4 inet_sendmsg -EXPORT_SYMBOL vmlinux 0xee1d4c2f udp_prot -EXPORT_SYMBOL vmlinux 0xee22fab1 __register_binfmt +EXPORT_SYMBOL vmlinux 0xee024f6f __sk_mem_reduce_allocated EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee3279ff sock_no_connect +EXPORT_SYMBOL vmlinux 0xee359f05 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xee40331e end_page_writeback +EXPORT_SYMBOL vmlinux 0xee40a625 security_inode_init_security EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee72db95 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xee65c9cb qdisc_reset EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee867e52 dev_mc_unsync EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee94ba9d tcp_sync_mss EXPORT_SYMBOL vmlinux 0xee9749e4 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xee98ea2b security_task_getsecid_subj EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeac2bf3 inet6_csk_route_req EXPORT_SYMBOL vmlinux 0xeec9a1b4 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0xeecc2b29 xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0xeed72f2d amd_iommu_flush_tlb -EXPORT_SYMBOL vmlinux 0xef0fa58f tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xeedefafb xsk_set_tx_need_wakeup EXPORT_SYMBOL vmlinux 0xef209413 textsearch_register EXPORT_SYMBOL vmlinux 0xef213a1d invalidate_bdev EXPORT_SYMBOL vmlinux 0xef2ab3ae rproc_set_firmware -EXPORT_SYMBOL vmlinux 0xef42dc57 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0xef58c985 neigh_table_init +EXPORT_SYMBOL vmlinux 0xef5e4447 inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0xef697d16 misc_deregister -EXPORT_SYMBOL vmlinux 0xef9535d4 dev_set_threaded -EXPORT_SYMBOL vmlinux 0xef966046 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xef9a41fa __filemap_set_wb_err EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefa18257 skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0xefa34e00 md_integrity_register EXPORT_SYMBOL vmlinux 0xefa9ff54 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0xefaae121 netpoll_poll_dev EXPORT_SYMBOL vmlinux 0xefaeca87 proc_remove EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefb33d65 ip6_fraglist_init EXPORT_SYMBOL vmlinux 0xefb80ad6 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xefce670c PageMovable EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefe0dbe2 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xefe74c96 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xefebe809 __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full EXPORT_SYMBOL vmlinux 0xeffff9ad pci_resize_resource EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf014d948 tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf036341f _dev_warn +EXPORT_SYMBOL vmlinux 0xf02fc021 alloc_fcdev EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus EXPORT_SYMBOL vmlinux 0xf05f6492 blk_rq_map_user EXPORT_SYMBOL vmlinux 0xf06bdf8a set_disk_ro -EXPORT_SYMBOL vmlinux 0xf0836b90 dev_uc_add -EXPORT_SYMBOL vmlinux 0xf086ef68 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0xf09ac475 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xf06e6bf0 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xf076eab5 dev_open +EXPORT_SYMBOL vmlinux 0xf07a0648 path_get +EXPORT_SYMBOL vmlinux 0xf09226d5 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xf0932f28 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf09e2f01 netdev_port_same_parent_id EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds -EXPORT_SYMBOL vmlinux 0xf0ae962c generic_file_splice_read EXPORT_SYMBOL vmlinux 0xf0b60d44 pci_write_config_word -EXPORT_SYMBOL vmlinux 0xf0b709af phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0xf0c2b935 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xf0caad23 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xf0d7873e twl6040_reg_read EXPORT_SYMBOL vmlinux 0xf0db9dcd register_key_type EXPORT_SYMBOL vmlinux 0xf0e5623a t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xf11ad2ba netlink_ack -EXPORT_SYMBOL vmlinux 0xf11da1f9 no_llseek +EXPORT_SYMBOL vmlinux 0xf0fb8091 jbd2_journal_ack_err EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf12f82d6 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xf12aacd0 __netif_schedule EXPORT_SYMBOL vmlinux 0xf130e7ce tty_port_close_start -EXPORT_SYMBOL vmlinux 0xf148ee01 tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0xf1551088 input_get_timestamp -EXPORT_SYMBOL vmlinux 0xf159f70c tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0xf16798ef kernel_bind -EXPORT_SYMBOL vmlinux 0xf16b16ba inode_io_list_del +EXPORT_SYMBOL vmlinux 0xf157a324 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xf178e94f i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xf17eb0ce netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0xf1803dc0 fuse_dequeue_forget EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler -EXPORT_SYMBOL vmlinux 0xf1869aba __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xf1913f92 __vfs_getxattr EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf197e554 netdev_update_features EXPORT_SYMBOL vmlinux 0xf1992b35 serio_rescan -EXPORT_SYMBOL vmlinux 0xf19c406c page_get_link -EXPORT_SYMBOL vmlinux 0xf1a4a3a6 security_inet_conn_request EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf1bc6f63 wait_on_page_private_2_killable EXPORT_SYMBOL vmlinux 0xf1c4d86d pci_find_resource -EXPORT_SYMBOL vmlinux 0xf1c578c2 flow_rule_match_ct EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy EXPORT_SYMBOL vmlinux 0xf1e046cc panic EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf2073f66 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xf1ec8811 netif_rx_any_context +EXPORT_SYMBOL vmlinux 0xf1feb707 __ip_options_compile +EXPORT_SYMBOL vmlinux 0xf20f084d nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0xf210d707 rio_query_mport EXPORT_SYMBOL vmlinux 0xf22f9489 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xf2384073 udp_seq_stop EXPORT_SYMBOL vmlinux 0xf23dc4ab arch_debugfs_dir EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf23ff2b1 sock_create_lite EXPORT_SYMBOL vmlinux 0xf24b3da8 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xf2564528 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xf25bd3ab __tracepoint_rdpmc -EXPORT_SYMBOL vmlinux 0xf25cbfa8 kernel_getpeername 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 0xf290097c mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xf2924341 keyring_alloc EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xf2a35c0d devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xf2a41749 genphy_read_abilities -EXPORT_SYMBOL vmlinux 0xf2a5f5f1 skb_eth_push -EXPORT_SYMBOL vmlinux 0xf2ac6a67 locks_delete_block +EXPORT_SYMBOL vmlinux 0xf2aa9d36 end_page_private_2 EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate EXPORT_SYMBOL vmlinux 0xf2ca80b2 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xf2d2d41f set_binfmt EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free EXPORT_SYMBOL vmlinux 0xf2f7f504 uart_match_port EXPORT_SYMBOL vmlinux 0xf2fc12e4 __free_pages EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf32ca88c generic_setlease -EXPORT_SYMBOL vmlinux 0xf32e2cb0 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xf31a8f48 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xf341ee35 tcp_hashinfo EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf349411c fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35a07e0 disk_start_io_acct +EXPORT_SYMBOL vmlinux 0xf35a4561 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xf366700a tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused -EXPORT_SYMBOL vmlinux 0xf3a10d8f vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0xf3a11ef3 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xf3942264 __sock_cmsg_send EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3adaef6 dev_open EXPORT_SYMBOL vmlinux 0xf3af5225 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xf3b22df8 scsi_report_bus_reset EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3cac259 phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0xf3d17784 udp_seq_ops +EXPORT_SYMBOL vmlinux 0xf3bf5cd1 __tracepoint_module_get EXPORT_SYMBOL vmlinux 0xf3d4c651 kthread_blkcg EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3f21869 poll_freewait +EXPORT_SYMBOL vmlinux 0xf3f61fd1 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0xf3f62adf vme_master_request EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf4040ade jbd2_journal_errno EXPORT_SYMBOL vmlinux 0xf4102303 nla_put_nohdr EXPORT_SYMBOL vmlinux 0xf4136d7a drop_super_exclusive EXPORT_SYMBOL vmlinux 0xf41483fb rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0xf4376f77 follow_pfn +EXPORT_SYMBOL vmlinux 0xf417f929 unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf43e5036 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xf448ca12 page_get_link EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf4636e1b sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xf472ad53 __breadahead -EXPORT_SYMBOL vmlinux 0xf47481a8 tcf_action_update_stats EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf48b5b8b __skb_gso_segment EXPORT_SYMBOL vmlinux 0xf48eddfa simple_write_begin EXPORT_SYMBOL vmlinux 0xf495fec7 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0xf499bc2e inet6_getname +EXPORT_SYMBOL vmlinux 0xf49f1691 jbd2_journal_clear_features EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf4b5ac0f vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4c1c881 blk_put_request +EXPORT_SYMBOL vmlinux 0xf4be12d8 inet_recvmsg EXPORT_SYMBOL vmlinux 0xf4d0d727 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xf4d36594 nobh_write_begin EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4dea089 xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock EXPORT_SYMBOL vmlinux 0xf51ba369 acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0xf51ced52 tcp_prot +EXPORT_SYMBOL vmlinux 0xf52eafb8 ppp_input_error EXPORT_SYMBOL vmlinux 0xf530ac80 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xf53a531f xp_set_rxq_info EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf54b32f1 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xf55fa1d9 devm_mfd_add_devices EXPORT_SYMBOL vmlinux 0xf56a6a72 configfs_depend_item -EXPORT_SYMBOL vmlinux 0xf574d012 genphy_read_status +EXPORT_SYMBOL vmlinux 0xf56d1765 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xf57be72d tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0xf5889be4 mntget EXPORT_SYMBOL vmlinux 0xf599b3e8 make_bad_inode EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid -EXPORT_SYMBOL vmlinux 0xf5b2f7b5 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xf5c9f706 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xf5cd501c __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xf5d6772b skb_checksum_help -EXPORT_SYMBOL vmlinux 0xf5e25ea2 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xf5b18cc7 mmc_command_done +EXPORT_SYMBOL vmlinux 0xf5c7eecd dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5f95e37 blackhole_netdev +EXPORT_SYMBOL vmlinux 0xf6002086 __vfs_getxattr EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0xf60cc80c skb_recv_datagram EXPORT_SYMBOL vmlinux 0xf6153eb6 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xf6189be0 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0xf6191ee9 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xf61543df xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xf617990c register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0xf61c4d3e serio_close +EXPORT_SYMBOL vmlinux 0xf61ca883 pagecache_write_end EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf65e8c99 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0xf655faf6 write_one_page EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf6704577 __tracepoint_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0xf67bb33c tty_register_device EXPORT_SYMBOL vmlinux 0xf67ee54e simple_transaction_read -EXPORT_SYMBOL vmlinux 0xf6811209 udp6_seq_ops EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier EXPORT_SYMBOL vmlinux 0xf69c0ad0 fs_param_is_fd -EXPORT_SYMBOL vmlinux 0xf69e18cf ___pskb_trim EXPORT_SYMBOL vmlinux 0xf69e1a85 agp_copy_info -EXPORT_SYMBOL vmlinux 0xf6a8ca89 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0xf6b2d621 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xf6c245f8 gro_find_complete_by_type EXPORT_SYMBOL vmlinux 0xf6d2a13f pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xf6d33a69 scsi_mode_sense EXPORT_SYMBOL vmlinux 0xf6d3db5e dquot_initialize +EXPORT_SYMBOL vmlinux 0xf6d9c057 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xf6e5330f tcp_filter EXPORT_SYMBOL vmlinux 0xf6e9ecea dm_register_target EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit EXPORT_SYMBOL vmlinux 0xf6f6421b acpi_processor_notify_smm EXPORT_SYMBOL vmlinux 0xf6f7dd6c rproc_add +EXPORT_SYMBOL vmlinux 0xf6f915bb scsi_vpd_tpg_id EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf7026327 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xf702b2cd xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xf7173d12 i2c_transfer_buffer_flags EXPORT_SYMBOL vmlinux 0xf71fabb5 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xf7215b4e __netif_napi_del EXPORT_SYMBOL vmlinux 0xf721ba28 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xf7371972 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0xf7296430 put_cmsg EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf753d118 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xf7429c5f qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xf75142e8 xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0xf757d730 param_ops_uint -EXPORT_SYMBOL vmlinux 0xf76adeb8 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xf76587d6 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xf76ab832 sock_no_shutdown EXPORT_SYMBOL vmlinux 0xf7721833 serio_reconnect EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf7913157 mdiobus_free +EXPORT_SYMBOL vmlinux 0xf780dff2 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xf78580f0 vmf_insert_mixed EXPORT_SYMBOL vmlinux 0xf796e2ad sget_fc -EXPORT_SYMBOL vmlinux 0xf79ae4cc tcp_connect EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table -EXPORT_SYMBOL vmlinux 0xf7db898f i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xf7db0247 tcf_em_register EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release -EXPORT_SYMBOL vmlinux 0xf7f301f1 eth_header -EXPORT_SYMBOL vmlinux 0xf80b4a99 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xf7f8c781 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xf7fed731 skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0xf80be44e rdmsr_safe_on_cpu EXPORT_SYMBOL vmlinux 0xf810417f kill_litter_super EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q EXPORT_SYMBOL vmlinux 0xf812cff6 memscan EXPORT_SYMBOL vmlinux 0xf81636f5 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xf8177ac0 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xf81dc2e4 block_is_partially_uptodate EXPORT_SYMBOL vmlinux 0xf81e3535 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xf8249a4a tcp_mmap -EXPORT_SYMBOL vmlinux 0xf828205e skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82b9603 mdio_bus_type EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf83d97b4 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0xf83f3956 xfrm_state_delete EXPORT_SYMBOL vmlinux 0xf848bfa2 wait_for_key_construction EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf859896f scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xf84d089b bprm_change_interp EXPORT_SYMBOL vmlinux 0xf85d7d6d mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xf86ad156 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0xf875bbd0 tcp_child_process +EXPORT_SYMBOL vmlinux 0xf85dffb6 inet_release +EXPORT_SYMBOL vmlinux 0xf87a0206 devfreq_add_governor EXPORT_SYMBOL vmlinux 0xf87ebe91 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xf885679d icmp_ndo_send EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf8a6dfe5 update_devfreq +EXPORT_SYMBOL vmlinux 0xf88adc01 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xf8a49517 ip_frag_next EXPORT_SYMBOL vmlinux 0xf8b40dd3 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xf8b6e5c0 phy_trigger_machine EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xf8c51cb0 tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0xf8ceccc6 nd_region_to_nstype EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8dddb6f netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xf8ebe292 inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf901a1ae filemap_fault EXPORT_SYMBOL vmlinux 0xf90a1e85 __x86_indirect_thunk_r8 EXPORT_SYMBOL vmlinux 0xf90d9d6b vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0xf92367e4 tcp_disconnect EXPORT_SYMBOL vmlinux 0xf9298db7 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0xf92fb9e7 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xf9382cca dev_uc_init EXPORT_SYMBOL vmlinux 0xf93ce196 max8998_bulk_write EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf9400d72 tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0xf9418c06 param_ops_int -EXPORT_SYMBOL vmlinux 0xf959f198 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0xf9435632 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xf94a54fe i2c_smbus_write_block_data EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf9818c63 __put_page EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9b5a82b __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xf9bc18ab __vfs_removexattr EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9fc165d napi_complete_done +EXPORT_SYMBOL vmlinux 0xf9dbe28a generic_file_llseek +EXPORT_SYMBOL vmlinux 0xf9e12148 vfs_get_fsid EXPORT_SYMBOL vmlinux 0xf9fd2771 dma_free_attrs -EXPORT_SYMBOL vmlinux 0xfa047042 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xfa0512b7 neigh_changeaddr EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end EXPORT_SYMBOL vmlinux 0xfa1b8941 pm860x_page_reg_write EXPORT_SYMBOL vmlinux 0xfa1cc3ac cdev_device_del EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node -EXPORT_SYMBOL vmlinux 0xfa2a8e13 dst_destroy EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec EXPORT_SYMBOL vmlinux 0xfa35312b d_invalidate -EXPORT_SYMBOL vmlinux 0xfa388846 km_state_expired +EXPORT_SYMBOL vmlinux 0xfa4e9984 napi_build_skb +EXPORT_SYMBOL vmlinux 0xfa52b56e vfs_ioctl EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa754047 phy_attached_print +EXPORT_SYMBOL vmlinux 0xfa7bb25f vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xfa7dc728 xfrm_state_alloc EXPORT_SYMBOL vmlinux 0xfa80c4d8 ps2_end_command EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa888b7b crypto_sha512_update EXPORT_SYMBOL vmlinux 0xfa8c0160 d_splice_alias EXPORT_SYMBOL vmlinux 0xfa8fdc6d timestamp_truncate EXPORT_SYMBOL vmlinux 0xfa99ff47 amd_iommu_device_info EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfaab2c56 xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0xfab06f89 elv_rb_add -EXPORT_SYMBOL vmlinux 0xfabc3fb3 ip_fraglist_init EXPORT_SYMBOL vmlinux 0xfabda731 d_alloc_parallel EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user +EXPORT_SYMBOL vmlinux 0xfac1fa16 mr_mfc_find_any EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max EXPORT_SYMBOL vmlinux 0xfacd8c28 nla_put -EXPORT_SYMBOL vmlinux 0xfad07128 netlink_capable EXPORT_SYMBOL vmlinux 0xfadf32d0 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xfaf2966c dst_alloc -EXPORT_SYMBOL vmlinux 0xfaf4d371 vfs_statfs +EXPORT_SYMBOL vmlinux 0xfaf312d1 vme_master_mmap EXPORT_SYMBOL vmlinux 0xfaf55fc3 param_get_ushort -EXPORT_SYMBOL vmlinux 0xfaf58df5 refresh_frequency_limits EXPORT_SYMBOL vmlinux 0xfaf7f8f2 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xfaf9f90d xfrm_register_km -EXPORT_SYMBOL vmlinux 0xfb016757 sync_mapping_buffers EXPORT_SYMBOL vmlinux 0xfb1b5b8f nd_device_unregister EXPORT_SYMBOL vmlinux 0xfb203847 pci_free_irq EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb3c25d8 udp_gro_complete EXPORT_SYMBOL vmlinux 0xfb4ce158 mipi_dsi_dcs_set_tear_on EXPORT_SYMBOL vmlinux 0xfb578fc5 memset -EXPORT_SYMBOL vmlinux 0xfb5a5200 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xfb6202a3 jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb7a21d5 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xfb963387 datagram_poll -EXPORT_SYMBOL vmlinux 0xfb9a54ab skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xfb96cca0 dev_queue_xmit 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 0xfbb71e91 default_llseek EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbbb4946 tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbd59392 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xfbe0ca47 tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0xfbe1e554 skb_trim EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfc02e034 sock_init_data +EXPORT_SYMBOL vmlinux 0xfc0a1bfd wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0xfc0a3cac xfrm_state_free +EXPORT_SYMBOL vmlinux 0xfc11187a phy_error EXPORT_SYMBOL vmlinux 0xfc268268 bio_reset -EXPORT_SYMBOL vmlinux 0xfc3266e5 migrate_page_move_mapping EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3b6d75 inode_set_bytes EXPORT_SYMBOL vmlinux 0xfc3d53cb __put_user_nocheck_1 -EXPORT_SYMBOL vmlinux 0xfc3e2e42 dev_disable_lro EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read EXPORT_SYMBOL vmlinux 0xfc446e5a forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0xfca7fc0d ll_rw_block +EXPORT_SYMBOL vmlinux 0xfc681e98 fasync_helper +EXPORT_SYMBOL vmlinux 0xfc810174 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0xfc8dbb4d scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xfcad596c i2c_verify_adapter EXPORT_SYMBOL vmlinux 0xfcb49325 fput +EXPORT_SYMBOL vmlinux 0xfcc3b9c1 nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check EXPORT_SYMBOL vmlinux 0xfcd35fa2 iov_iter_get_pages EXPORT_SYMBOL vmlinux 0xfce31937 simple_release_fs -EXPORT_SYMBOL vmlinux 0xfce45a74 sockfd_lookup EXPORT_SYMBOL vmlinux 0xfce5aee2 pci_request_region -EXPORT_SYMBOL vmlinux 0xfce7d278 get_phy_device EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfced7aba scsi_done +EXPORT_SYMBOL vmlinux 0xfcf348c3 flow_block_cb_priv EXPORT_SYMBOL vmlinux 0xfcfa048c vfs_get_super +EXPORT_SYMBOL vmlinux 0xfcff6fbf read_cache_pages +EXPORT_SYMBOL vmlinux 0xfd04d5e2 flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0xfd08adeb dquot_file_open -EXPORT_SYMBOL vmlinux 0xfd25717e udp_disconnect +EXPORT_SYMBOL vmlinux 0xfd1a29eb buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xfd33beca xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0xfd4ba06c to_ndd EXPORT_SYMBOL vmlinux 0xfd5185f2 input_allocate_device -EXPORT_SYMBOL vmlinux 0xfd594551 cont_write_begin -EXPORT_SYMBOL vmlinux 0xfd616db9 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xfd671127 security_sk_clone EXPORT_SYMBOL vmlinux 0xfd73a8e7 zpool_register_driver -EXPORT_SYMBOL vmlinux 0xfd7defc3 tcp_init_sock -EXPORT_SYMBOL vmlinux 0xfd85b999 netif_device_attach EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc -EXPORT_SYMBOL vmlinux 0xfd9d36e0 tcp_rcv_established EXPORT_SYMBOL vmlinux 0xfda5d9a3 vga_switcheroo_register_client EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdb3c99b no_llseek EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id +EXPORT_SYMBOL vmlinux 0xfdc34da4 ptp_clock_index +EXPORT_SYMBOL vmlinux 0xfdc36c3c mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0xfdc5317a dma_ops +EXPORT_SYMBOL vmlinux 0xfdc910a1 jbd2_fc_wait_bufs EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource -EXPORT_SYMBOL vmlinux 0xfdf87158 sock_create_kern +EXPORT_SYMBOL vmlinux 0xfddae8e6 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xfdec077d __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xfdecb7fb netpoll_print_options EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported -EXPORT_SYMBOL vmlinux 0xfdffd13e fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0xfe01097a serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xfe01e6fc vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe04cbfe mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xfe04d8a1 sock_no_linger EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi -EXPORT_SYMBOL vmlinux 0xfe05ca6b genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0xfe13bf16 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xfe16b607 __xfrm_route_forward EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe1f2597 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xfe27bf53 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xfe37310d tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xfe3fce3d flow_block_cb_incref EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe4e9474 dev_deactivate EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe62d6ca dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xfe683d69 nf_hook_slow_list EXPORT_SYMBOL vmlinux 0xfe69957c agp_allocate_memory EXPORT_SYMBOL vmlinux 0xfe6b1621 get_cached_acl -EXPORT_SYMBOL vmlinux 0xfe6e3229 sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0xfe6e7176 fd_install EXPORT_SYMBOL vmlinux 0xfe8c0218 uart_unregister_driver EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock -EXPORT_SYMBOL vmlinux 0xfe8e159c vfs_llseek EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 EXPORT_SYMBOL vmlinux 0xfe9fcba1 pci_write_config_dword EXPORT_SYMBOL vmlinux 0xfea0019c simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xfeb25c91 __starget_for_each_device EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfebd5340 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xfec64734 rtnl_notify EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee23e76 inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0xfeea58f2 srso_alias_untrain_ret EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r EXPORT_SYMBOL vmlinux 0xfef216eb _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0xfef79b0e tcp_release_cb +EXPORT_SYMBOL vmlinux 0xfef60cc6 tcp_seq_start EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff205294 xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff44f53d skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0xff4a4c8b dev_mc_init EXPORT_SYMBOL vmlinux 0xff52848a __SCT__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xff5445b0 follow_pfn EXPORT_SYMBOL vmlinux 0xff592b41 md_bitmap_free -EXPORT_SYMBOL vmlinux 0xff5a809e security_inet_conn_established EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7273e7 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xff6d0fec mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff8b4a9a ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xff92550d scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xffa24ab3 audit_log +EXPORT_SYMBOL vmlinux 0xff96c65a thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0xff9c8460 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xffa56b2a __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xffabf174 datagram_poll EXPORT_SYMBOL vmlinux 0xffae3f55 set_bdi_congested EXPORT_SYMBOL vmlinux 0xffaeb22e _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xffb486a3 scsi_report_opcode EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffbbba28 genphy_resume EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xffc55ea3 security_path_rename EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffcd7e90 rtnl_unicast EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire -EXPORT_SYMBOL vmlinux 0xffcf602f genphy_read_status_fixed EXPORT_SYMBOL vmlinux 0xffd7e915 vga_put -EXPORT_SYMBOL vmlinux 0xffdc8c3f xattr_full_name EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn EXPORT_SYMBOL vmlinux 0xfff5b680 input_event -EXPORT_SYMBOL vmlinux 0xfffea5b9 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0xfff5e2c4 dns_query 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 @@ -11782,402 +11674,402 @@ EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0xff09bd65 camellia_dec_blk EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x194b2841 serpent_ecb_enc_8way_avx EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x38800636 serpent_cbc_dec_8way_avx EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x4140192a serpent_ecb_dec_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x3857c4ee sm4_avx_cfb_decrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x39e923b5 sm4_cbc_encrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x6d46b48f sm4_avx_cbc_decrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xb231ae78 sm4_avx_ecb_encrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xc45b3199 sm4_cfb_encrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xcd09adc6 sm4_avx_ecb_decrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xf95435d4 sm4_avx_ctr_crypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x2330cba5 sm4_avx_cbc_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x2c139a7f sm4_avx_ctr_crypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x36850413 sm4_avx_ecb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x383b7e40 sm4_avx_cfb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x63448ff7 sm4_avx_ecb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x6f5cb044 sm4_cfb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xc7b4b762 sm4_cbc_encrypt EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x1f491d36 twofish_dec_blk EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x7c7bf6e0 twofish_enc_blk EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x92a51c43 twofish_dec_blk_cbc_3way EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xb4e98a46 twofish_dec_blk_3way EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xe4ae7508 __twofish_enc_blk_3way -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00914cf4 kvm_queue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x015c5c3c kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01b1fe35 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0230ee33 kvm_mtrr_get_guest_memory_type -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x03c90f80 kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x041b89a9 kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0088f3c6 kvm_service_local_tlb_flush_requests +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00d90149 __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0376b204 kvm_post_set_cr0 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0648db72 reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05add8a3 kvm_fast_pio EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x074fb22b __tracepoint_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07eebb5b __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06e52779 __tracepoint_kvm_ple_window_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0814dd11 __SCT__kvm_x86_tlb_flush_current -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x090b1ccc kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a5a3c5e __SCK__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a72dac3 kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b052d4f kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x087ad5ad __kvm_request_immediate_exit 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 0x0c614222 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c299603 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c77775a __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c807e19 __SCK__kvm_x86_tlb_flush_current EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ca8df68 __traceiter_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cf55b80 __tracepoint_kvm_nested_vmrun EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cff45f4 __SCT__tp_func_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d79214d __SCK__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d4330a9 kvm_apic_set_eoi_accelerated EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d8f4740 kvm_mce_cap_supported -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e159d73 kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e51e014 kvm_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f7133ee mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10802e04 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11216a64 __SCK__tp_func_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0dec5dac kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e8b88de kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e8f1171 kvm_handle_invpcid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0fe94c21 __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1028a901 kvm_inject_realmode_interrupt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1199640a __SCK__tp_func_kvm_fast_mmio EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1235000a kvm_tsc_scaling_ratio_frac_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x127ef399 handle_fastpath_set_msr_irqoff EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x130fd155 supported_xss -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13d5ee37 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13180b20 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x133461e2 kvm_init EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1412f042 __traceiter_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x143ec8e7 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15305045 kvm_cpu_has_injectable_intr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159b8d5e host_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15b07bdf kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15ce6f84 kvm_x86_ops -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15fc4655 kvm_set_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16e7c50e __tracepoint_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x177a8127 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16a39f66 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16edfd42 kvm_emulate_as_nop +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1744d4ac kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1794116a gfn_to_memslot EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18ca2bea kvm_vcpu_map -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a4fbdf4 __tracepoint_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1aa0902d gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1be5d506 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c7e1556 kvm_get_running_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cb25789 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19558110 __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x197977e0 kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a44d3b2 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b269cfc kvm_handle_invalid_op +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1bad54ae mark_page_dirty_in_slot 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 0x1de8c08d kvm_mmu_gva_to_gpa_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1fa37c1f kvm_set_msi_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20c5eb3e kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e1f2278 kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ee9b4a5 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f6b56b1 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x201e4070 kvm_emulate_invd EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23263c0a __traceiter_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2336d161 kvm_inject_realmode_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x236f4ff2 kvm_inject_pending_timer_irqs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x248c8a11 kvm_map_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24408cdd kvm_sev_es_string_io EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2510fc6d __SCT__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x251c7545 __SCK__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x259020a8 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25a5dac4 gfn_to_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25c07225 __traceiter_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26b1daed kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26bcdf01 kvm_handle_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27928837 kvm_read_guest_page_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2831d5d8 kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x283a7e9c kvm_fast_pio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x277ef4d1 __SCK__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28336e7b kvm_lmsw EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28411ed7 kvm_max_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28650817 __SCK__tp_func_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2876247d kvm_task_switch -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28a439b4 __SCK__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28de66b0 kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29390226 __tracepoint_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2940e6b6 kvm_write_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2976b749 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29a8f696 __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29f286dd kvm_inject_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a7f0c5f __SCK__tp_func_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a8679f2 __tracepoint_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2aeb8808 kvm_arch_end_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bf55133 kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2cc98fad kvm_sev_es_string_io -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d697001 __SCK__tp_func_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d776e6d __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x298758cf kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a83a132 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2be2474e __SCK__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c57e016 __SCK__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c7d7863 kvm_read_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e2d73e9 kvm_inject_emulated_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e577350 kvm_fixup_and_inject_pf_error -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ee6758e kvm_cpu_has_injectable_intr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x316d9f8f __SCK__tp_func_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31c4a094 __SCK__tp_func_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31d64b07 kvm_post_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3369d8c4 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3562577f kvm_lmsw -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35b656ff kvm_scale_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x37cc8923 kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x382f012c __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e288b23 __kvm_is_valid_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e71f4e2 kvm_mmu_gva_to_gpa_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3062a698 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3119d0fe kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31848ef2 __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32c85550 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x332fa987 handle_fastpath_set_msr_irqoff +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x355bd178 kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3800e0f9 kvm_update_dr7 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x381f9377 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38679877 kvm_get_msr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e0e10 __SCT__tp_func_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x390b12e4 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38c7386a kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x396b39f9 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39a007f1 kvm_mmu_invlpg EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a8299ab kvm_x86_ops EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3af9aca8 kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b23b331 kvm_mmu_gva_to_gpa_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b6409dc kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b87efd6 hv_remote_flush_tlb EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ba6c794 gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c00791c kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c07aa46 kvm_require_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d0d73ee kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e002d7f __SCK__tp_func_kvm_inj_virq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f510ff5 kvm_has_noapic_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3fcbf3f2 kvm_get_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x420ba467 kvm_load_host_xsave_state -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4251055c kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4315f4f7 __SCK__tp_func_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x432a2775 kvm_emulate_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x453a863c vcpu_put -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x455e146e __SCK__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40819e58 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40a5a0e8 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40c7764f __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40f97717 __tracepoint_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x445bb30c vcpu_put EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4706b5e7 kvm_apic_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4811e5ed kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47100d80 kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485398a5 kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48576fbf kvm_request_apicv_update 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 0x489de264 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49338fd4 kvm_valid_efer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4942be67 __SCT__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49a2013a __SCK__tp_func_kvm_pi_irte_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4cf143dc kvm_requeue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d60e11b kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4dd192c1 kvm_write_guest_virt_system -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e287664 kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ad71c4f kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c8348e4 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d9bfcd7 kvm_unmap_gfn EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e965bf6 kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f45b07b __tracepoint_kvm_apicv_update_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f615ca2 kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f778bab __traceiter_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5067b18c kvm_arch_no_poll -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52c858fa __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51094dd4 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x514dbea0 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51513142 __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52d76fb1 kvm_emulate_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x532a76bf kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x533ad780 kvm_inject_nmi EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53f2034a __SCK__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x545d26b9 handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5466f5d1 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5487a9fb kvm_lapic_hv_timer_in_use EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54cd466b __traceiter_kvm_apicv_update_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55ae49a6 reprogram_fixed_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55c4b852 kvm_find_cpuid_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5603347c kvm_apic_send_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5651e60c kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x576fada6 __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55a38ecc kvm_apic_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x567e0ff8 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56a675e3 current_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56be1d87 kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x589abb90 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58cded23 kvm_apic_write_nodecode EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x598d0896 kvm_get_msr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a5f3d42 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59ece6a3 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a831f07 kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5beda9b8 kvm_get_cr8 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 0x5c4cdbce __SCK__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c250ebe kvm_handle_memory_failure +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c86d00c kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d3ee78b mark_page_dirty EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d996b31 kvm_set_cpu_caps -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f9e5e0e gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5e460057 kvm_inject_emulated_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616d8120 kvm_mmu_free_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x60c73d0f kvm_get_kvm EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6213762c kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x620a35fd kvm_get_apic_base EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62d35bce kvm_request_apicv_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6303c089 kvm_calc_nested_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6311fe6d __tracepoint_kvm_avic_ga_log EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63270977 kvm_default_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64243949 kvm_is_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x642616ca kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x646d1730 kvm_hv_assist_page_enabled -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66619d15 kvm_mmu_free_guest_mode_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66adf2ce kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x643ad257 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x651a74a6 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x659d20fd kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65d2c6dd kvm_release_page_dirty EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6756347e __traceiter_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x683d6b7d kvm_handle_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67bf4093 __SCK__tp_func_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6864c456 __tracepoint_kvm_pml_full EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x694d89a7 kvm_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x697488c4 kvm_load_guest_xsave_state -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69e07469 hv_remote_flush_tlb +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6975d493 reprogram_fixed_counter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b3b65f5 kvm_get_apic_mode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bc2e57c kvm_lapic_set_eoi EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6becaded __SCT__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c33233a kvm_apic_send_ipi EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e1f95a8 kvm_apic_clear_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e5c0c5e kvm_init_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e6a781c __kvm_request_immediate_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ef76132 kvm_get_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f2be482 kvm_handle_invpcid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ff498ce kvm_init_shadow_npt_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7020f2b6 __kvm_is_valid_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6cdd01d7 kvm_mmu_free_guest_mode_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6efca8ae __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6fcb279a __SCK__tp_func_kvm_vmgexit_msr_protocol_enter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70288943 __SCT__tp_func_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x706d2f09 kvm_emulate_monitor EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x722f8168 kvm_set_cr4 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7263ae77 __traceiter_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72b4c5da kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x751432e9 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72e1dda0 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x744432ef kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74900eb2 gfn_to_hva EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75abe190 kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75fd179d kvm_emulate_invd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7673b93e kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x775376ad kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778328de __SCK__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75441ccc __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75da6f78 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7625b40b kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x770395ad __tracepoint_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x770f4f99 kvm_arch_register_noncoherent_dma EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7986d43e kvm_apic_match_dest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79d0c484 kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a72d1c9 kvm_emulate_mwait +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7793af7a kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79c33625 __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a2bdf2f __x86_set_memory_region EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b91a9c6 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b5e9b92 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c487794 __tracepoint_kvm_nested_intercepts EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ccbab4e __tracepoint_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d288b96 kvm_read_l1_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d63dd7a kvm_handle_invalid_op +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7cbbf5c7 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d3e6344 kvm_lapic_reg_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d73296c kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d858081 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7dc5cef9 x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7dc625f1 __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e1346bf kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e720b86 __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e7b6cb7 reprogram_counter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fe19488 kvm_add_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fe3225b __SCK__tp_func_kvm_avic_ga_log EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff2a104 __SCT__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ffd76f1 current_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81a37390 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8347a136 kvm_sev_es_mmio_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x84e04c9a kvm_emulate_ap_reset_hold -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85471172 kvm_put_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8676694d mark_page_dirty_in_slot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88a57398 __SCK__tp_func_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8933ff79 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x824c11f9 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x881b7927 kvm_hv_assist_page_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x889cf884 kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88f2d383 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x891b11f3 __SCK__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x899b3bb2 kvm_lapic_expired_hv_timer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a7fe54a __SCT__tp_func_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ae8462a kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b51d012 kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b1c1869 kvm_vcpu_read_guest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b618aa6 __SCT__tp_func_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b85b8d0 kvm_emulate_as_nop -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cb246cd kvm_get_cr8 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cc07ada gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8dadd73c kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ed78694 gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8eed1a68 kvm_apicv_activated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8fc62316 kvm_post_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8fce0e82 kvm_mmu_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9075a68c kvm_can_use_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cd042ae kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d49f81b kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8dd5e7be kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e2bede7 kvm_emulate_xsetbv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x907f6530 kvm_vcpu_gfn_to_pfn_atomic EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91c11abd kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91e1c45f kvm_read_guest_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92108d61 __traceiter_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9216a07b kvm_vcpu_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91c28a3a kvm_read_guest_cached EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93a3e40e __SCT__tp_func_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93cce7eb kvm_arch_start_assignment EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x944882ed kvm_has_bus_lock_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94d22e5a kvm_lapic_switch_to_sw_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94d45f6f __SCK__tp_func_kvm_apicv_update_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95116011 kvm_init_shadow_ept_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9563cc57 kvm_wait_lapic_expire -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95d50ee5 kvm_emulate_wrmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95d80855 kvm_slot_page_track_remove_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x971c12eb kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9764e004 x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96d5423d kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x976dd813 kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9807497e __tracepoint_kvm_nested_vmrun EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98b40401 gfn_to_pfn_memslot_atomic EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98f9ad3b __SCT__tp_func_kvm_apicv_update_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99385a66 __SCK__tp_func_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9958479e kvm_set_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99fc042e kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c0c27b0 kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x994c1599 kvm_vcpu_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99c60874 __tracepoint_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99fe4f29 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c4a326c __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cb71dcf kvm_gfn_to_hva_cache_init EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d7a7a51 kvm_debugfs_dir EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f37d395 kvm_debugfs_dir EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0e4ba64 gfn_to_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1014d6f __tracepoint_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa10ce291 __tracepoint_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa167f9d2 kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa130720f kvm_map_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa197f2de kvm_slot_page_track_add_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa289dd22 hv_remote_flush_tlb_with_range -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2e9f34b kvm_lapic_hv_timer_in_use -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa368d263 __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa410b6b5 kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4b35ffe kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1d38671 __SCK__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa372f21c __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5664d27 __SCK__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa57b89ad __tracepoint_kvm_nested_vmexit 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 0xa74b740c kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7d5a836 kvm_vcpu_read_guest_atomic EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa80595a6 __traceiter_kvm_inj_virq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa84a2e73 __SCT__tp_func_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa89cbef1 __tracepoint_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa288dcb kvm_get_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac112824 __SCK__tp_func_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac12c7ca __tracepoint_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf1ea260 __tracepoint_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0227345 kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb05170b9 __kvm_request_apicv_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1a643f8 __tracepoint_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb21cae75 __SCK__tp_func_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2617a84 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2eca609 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4f53868 kvm_clear_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb656b1b5 kvm_apic_update_ppr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb70dcfee reprogram_gp_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8ee6869 file_is_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8e2f186 __SCK__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa7bc076 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa7c4773 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac2b3849 __SCK__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac55b254 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac8b25fa kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaca4a6f4 hv_remote_flush_tlb_with_range +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacd2fd4a kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf9a1b8 kvm_vcpu_deliver_sipi_vector +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xadb6b966 kvm_skip_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae39b4db __kvm_request_apicv_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb058834a kvm_vcpu_reset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0fba659 __traceiter_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1d5dbfd kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2863c50 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2d0e553 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb30c1bb0 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb3fc02a0 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb41fcb77 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4b0b36a __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb55c5585 kvm_lapic_switch_to_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5ae73be kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb662721f kvm_apic_clear_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6aa721e __tracepoint_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8874ea1 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8ab58ed kvm_wait_lapic_expire EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9758464 kvm_emulate_monitor -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba87b5e0 kvm_service_local_tlb_flush_requests -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba91b503 kvm_set_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb0da703 __SCK__tp_func_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbeb62cef __tracepoint_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc03fba51 __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9964b6a kvm_update_cpuid_runtime +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbba0936f kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc42d80c kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe431c27 kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfa30e3e kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0167c0d kvm_lapic_switch_to_sw_timer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0df9577 kvm_lapic_switch_to_hv_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc357257d __tracepoint_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4750129 kvm_unmap_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4816424 kvm_queue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4d76951 __SCK__kvm_x86_tlb_flush_current -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4fcd4c4 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc08f6a10 kvm_can_use_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1720932 kvm_emulate_mwait +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1e78f91 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2cae771 file_is_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2d5d519 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2d78bb4 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc30a2078 __SCK__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3533cc5 __SCK__tp_func_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4298360 __SCK__tp_func_kvm_apicv_update_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc52e3605 __SCK__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc55f04ee kvm_mmu_free_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc57c92bd kvm_slot_page_track_remove_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7916eef kvm_sev_es_mmio_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc858960d __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc678ab71 kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7ee0b93 kvm_apic_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc86f39d9 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8c0826d kvm_put_kvm EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc916d018 kvm_cpu_caps -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc95232f1 kvm_io_bus_get_dev EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc96d35f4 report_ignored_msrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca28e7dd __SCK__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xccb481c7 kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd568fe5 __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd793bb9 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca1384d7 kvm_get_apic_mode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca6e7597 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca7e03da kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb6f07b1 kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb6f43a5 __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb81fae6 __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd1ddc5e kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd8c92cc kvm_vcpu_yield_to EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf42535f kvm_arch_register_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcfc8697f gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd01b751c kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcfccd05e kvm_set_msi_irq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd075cea7 kvm_mmu_gva_to_gpa_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd08c69af kvm_vcpu_block EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd09da48b __SCT__tp_func_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd12254b2 kvm_emulate_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd206dfef kvm_update_cpuid_runtime -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd231ee1c __tracepoint_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd325cc8a kvm_slot_page_track_add_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd365f8de __tracepoint_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd60ce5b6 kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd67e752e handle_ud -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6a79047 kvm_vcpu_unmap -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6ebb893 kvm_inject_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd711f3bd kvm_update_dr7 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7e1be78 kvm_emulate_instruction_from_buffer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd91c3594 __SCK__tp_func_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdac5cd18 kvm_vcpu_deliver_sipi_vector +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd161d825 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1fe518e kvm_emulate_ap_reset_hold +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5603ac6 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5c44371 __SCK__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7edc457 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd98b6a2f __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9cc5b87 kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9d01388 __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9fb2e91 kvm_init_shadow_npt_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc3e60c1 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc43275e kvm_mmu_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc97ac7d kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd1ae446 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde503dd8 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xded3a1c7 kvm_get_rflags EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf026a18 __traceiter_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf06b802 kvm_mtrr_valid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf7c7f06 kvm_lapic_find_highest_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfcea20a kvm_lapic_reg_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0644e59 __SCK__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe06ca12e kvm_emulate_hypercall EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe10b6858 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe235827b kvm_lapic_reg_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2e33576 vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe38fda6a kvm_vcpu_reset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe3f18753 __tracepoint_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4d50295 kvm_vcpu_destroy -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7ff0156 __SCK__tp_func_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe88550be kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe111c3dc kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1619e22 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe43f760a kvm_fixup_and_inject_pf_error +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe46b22a5 kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe79a66ed kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe84e886a kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8ebfda8 kvm_vcpu_update_apicv EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe93dfc8c __SCT__tp_func_kvm_nested_vmenter_failed EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9674a16 supported_xcr0 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5cda33 __SCT__tp_func_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea816c98 __SCK__tp_func_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecdc07bc kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed435b91 kvm_lapic_reg_write EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef207bad kvm_apic_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef6b7aa4 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef76003d __SCK__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf02873b7 kvm_write_guest_cached EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2061379 kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf25d346a kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0add681 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1420121 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf20778fc kvm_sev_es_mmio_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2562a17 kvm_vcpu_write_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2df48f3 __SCT__tp_func_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3030439 __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf32affac 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 0xf3d4955f kvm_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf437c293 kvm_emulate_wbinvd EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4668dfb __traceiter_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4c246c8 kvm_load_guest_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf53884e4 __tracepoint_kvm_avic_ga_log EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf56884fb kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5e5dd31 kvm_emulate_xsetbv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6f20503 kvm_emulate_rdmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7eb30ac kvm_deliver_exception_payload -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf90214c2 __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf905ab98 kvm_handle_memory_failure -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9c37fb8 kvm_skip_emulated_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb3a247d kvm_emulate_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd687919 kvm_intr_is_single_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfeef42ec kvm_page_track_unregister_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfeff2e19 kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffeaa4a4 __tracepoint_kvm_nested_vmexit -EXPORT_SYMBOL_GPL crypto/af_alg 0x1214b420 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x17808c06 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0x1ab17a8b af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x48a96328 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x5a35385c af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x72f3e850 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x75eb1052 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x7602b271 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x774df8a6 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x94e666de af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xa0051d7a af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xa1f5d42c af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xc28f5f8f af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xcd8d3b57 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0xd87dce90 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xe3b8ff51 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xecf4eca7 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0xf727d7c6 af_alg_sendmsg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5733bc6 __traceiter_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf993b7dc __SCK__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdd61f5a kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe7cbf0e kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff22dea9 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffa633ad load_pdptrs +EXPORT_SYMBOL_GPL crypto/af_alg 0x0b2db718 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x0df531f5 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x1714b990 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x19cec8ff af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x1a9a8f3a af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x232bc35b af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x271468c6 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x36fc6eb3 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x3db5500f af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x4770c14e af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x4dca8aef af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x73ee2a09 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x804ac80b af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xa6d73f53 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xa99fa4cc af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xb1994843 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xb19dd0a4 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xf9c1b1ce af_alg_make_sg EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x9a7242c7 asym_tpm_subtype EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x61d12e71 async_memcpy @@ -12206,41 +12098,41 @@ 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 0x3987b483 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x69863bf3 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x6e4bf9c5 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x99e18d0e cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x9a8679fa cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xa6589505 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xb013c40d cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xbaaa5cb8 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xc8cbfb32 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xd1d2982d cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xd6f2df33 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xe6564b17 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xf16b28df cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x011eacef crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0165879d crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x08e70aef crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2f31877c crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x30e60fee crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x75b29a4d crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8001554f crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x88452b0c crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa97e3d8a crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa9f4c29f crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb7863e4e crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcefe8d5b crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf3c3e837 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x3f1e318f simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/cryptd 0x0b2a5029 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x100f5b24 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x2afab328 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x370ebdf0 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x3e9b6506 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x42f7dfa5 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb6699f67 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xbc459cb1 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xc323113a cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xc58022ad cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xc6d9c2f8 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xd5f9dc61 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xff63bfa5 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0c7e63b3 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1faebec8 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x21c3477f crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4100bf22 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x53fb5a60 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6713692d crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7255fee4 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x90250069 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa8c4c475 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xad341528 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcc82ac03 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcd1c0a59 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdfb7884e crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x142d46e8 simd_unregister_skciphers EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x561b206c simd_unregister_aeads EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x81340cd5 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 0x99bb5524 simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x9eb2ec8e simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xb308ac9a simd_register_aeads_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xcc47fada 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 @@ -12297,46 +12189,46 @@ EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback 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 0x04e8e69c ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x05bcb370 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x19517859 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1b0ef080 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x23562563 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2dabd9ae ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x34b3d552 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3af73dc1 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3d3e0b40 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3d8f0b33 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4ac21713 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x64811fab ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6ae93f31 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x04d509d5 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2613012d ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2b6818fe ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4298563a ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5760fac1 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6276b0ea ahci_error_handler EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6df0f9be ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6fd1c3ca ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7287c159 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x788721fa ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7b37f718 ahci_host_activate EXPORT_SYMBOL_GPL drivers/ata/libahci 0x838b468a ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x93b2ea53 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9df03457 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa1e4974f ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbc06401d ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc49f004b ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdee6b5fc ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe5d2d9f6 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x953f3b07 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xadfb4516 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb4e66e3d ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb6195db5 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbdaaca93 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc02ffcac ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc4e0423e ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xca22a371 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd7be805d ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe668e35b ahci_init_controller EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xefd41928 ahci_do_hardreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf3ea3161 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf3f6a527 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfb2ac7af ahci_save_initial_config EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x162b37a6 ahci_platform_disable_resources EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x21ed6cee ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2e7a151e ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x29c6d466 ahci_platform_shutdown EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x30d41433 ahci_platform_ops EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x36f777d5 ahci_platform_enable_phys EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5981443b ahci_platform_disable_phys EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x778b5273 ahci_platform_suspend EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x97775c07 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb34c0562 ahci_platform_init_host EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbd7eb564 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbd9a768d ahci_platform_init_host EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd1487add ahci_platform_enable_resources EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe6fda717 ahci_platform_enable_regulators EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xeeb4bd68 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xefcb1265 ahci_platform_shutdown EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf4204ef2 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf4de2fe6 ahci_platform_get_resources EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf8016fe9 ahci_platform_enable_clks EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x314b16f0 __pata_platform_probe EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited @@ -12389,81 +12281,81 @@ EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x972f55f2 __devm_regmap_init EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xc6a61499 __regmap_init_spmi_ext EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xdd8fdcfb __devm_regmap_init_w1 EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xeb490d06 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x05e968fa __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x06c3bd9e bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0aa9dc6e bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1062e557 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x156f6206 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3176c0e6 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3a438d9a bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5823bc06 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5ca409f1 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5d699c19 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x79523bc4 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8c3a9482 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8e71b16a bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x981fc0e7 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x99de8a60 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa3ebb041 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa556e58a bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb276c1d1 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb7c3d9d0 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbc70772f bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcc4ae87d bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd293ee14 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe4944d5d bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf11ab169 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x001fec09 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6239de54 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6d4447af btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8e66fc87 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb0fb1af9 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb21eacfd btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc26827f2 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf0d207b1 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x068afd93 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3349eab3 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6114d4fc btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x75d618e1 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x77b7a977 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9d4ef2c9 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa0d45fed btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa2012c4b btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xad14d774 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc082a8ae btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdae93977 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdfb795d6 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe2728b2f btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf251c065 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf9992be4 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfb846595 btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x01e9577a btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x234e36f8 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3face13c btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x495641a0 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x52c87a1d btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x91db52b5 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x973f9c68 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb2922ad3 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbc68de04 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf94ba78f btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfddaf615 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x25879f1f qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4d3d356a qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xa63f3fc8 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xaad4b7a1 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc75f61bf qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x123861c8 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1d538e22 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6daf8f48 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9fe34e2b btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xad0d6092 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x09a1dd82 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1e7a0208 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x26c2ba9b bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x40c05ebe bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4514acef bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x52ce4c28 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x58d807da bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5ec8dd6d bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x68d14d19 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x691746d4 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6cd398f0 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x73a4ee95 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x763a8098 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x93c1e94c bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x96ecc598 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9d05d3b3 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa51e74d5 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa7649555 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb2fb6505 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb3f2fe66 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb75c016d bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xde933461 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe7d6499b bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe7f7d625 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x47eb7856 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x65f4d169 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6dd35c8f btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x881a37a0 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x91128da5 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xca0b664f btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe2d3224c btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe4247780 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x04b68fac btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0c25f9e5 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1e5d1ea5 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x61ee61b5 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8a00778d btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8fc99096 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa5268e47 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa8f3caa4 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb4f93001 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd109b926 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd43832e5 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd7f48a35 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd98bc551 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe523f47b btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe9f0736d btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf3c1328d btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2cef7915 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5397f9d3 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x54ee8deb btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8c892b5f btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8ff03a3b btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa6516a78 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa66daa90 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbadff5dc btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbe0e2300 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcbfa4390 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe59d4fa3 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x017b6b7d qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x69f34971 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7bb70046 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x9b92d3e3 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb1b54ae7 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0589ef2f btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x325f48d6 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x48bd4716 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x4939f257 btrtl_download_firmware EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xfb123723 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x1d97ddb7 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x2a54679e hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x6b87a4a5 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xa3353ddb hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xcbca528d btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xe876f985 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x12efb3f6 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x631c805d hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xac88e464 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xaf0308a1 h4_recv_buf EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1109125c mhi_force_rddm_mode EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x188f749a mhi_pm_resume EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x270b5f0d mhi_get_free_desc_count @@ -12741,36 +12633,36 @@ EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x65cd6a93 idma32_dma_probe EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x901aaa35 dw_dma_filter EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe6844fcc dw_dma_acpi_controller_register EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe7f53f04 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x67d922e9 hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xae0412c6 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x8f410080 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x92dac36e 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 0x0e14f679 alt_pr_register EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1592a8fa dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x279e2933 dfl_fpga_port_ops_get EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2bf9265b dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2c39ebe7 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2e1ade7f dfl_fpga_check_port_id EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2ed1509e dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x34d0abab __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x33f7a7ff dfl_fpga_port_ops_get EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x363555b5 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3cae1e46 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4078f37e dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3f59f1d9 dfl_fpga_dev_feature_uinit EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4597e5ea dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4a801a38 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4ab19cba dfl_feature_ioctl_set_irq EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x50376481 dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x57fc7dc9 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x57a8636f __dfl_fpga_cdev_find_port EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x767907c8 dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x80045a45 dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x82f93886 dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x96ce46da dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x98f6c8e3 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb29105a5 dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd7eccacf dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x872552b8 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8eeda875 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9a40c500 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc8e2f70c dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd52cc26d dfl_fpga_port_ops_add EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xda347a8b dfl_fpga_enum_info_add_dfl EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdf16c419 dfl_fpga_feature_devs_enumerate EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf4ebb550 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf75473d0 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfebb568e dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf6eb7bb9 dfl_fpga_set_irq_triggers EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x00a0c7e6 of_fpga_bridge_get_to_list EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put @@ -12878,9 +12770,9 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xea68af13 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 0x4a6328f1 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 0xc987950d intel_gvt_register_hypervisor EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x035f11be greybus_data_rcvd EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0b2c11a9 gb_operation_sync_timeout @@ -12890,10 +12782,12 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1662b3d4 __tracepoint_gb_hd_in EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x18f1c8e8 __traceiter_gb_hd_del EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1e0cd781 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x21715c8e greybus_register_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x26b869d4 gb_connection_enable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2908ce98 gb_operation_request_send_sync_timeout EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2db324de gb_connection_enable_tx EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2fc841d7 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x308a776a greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x34f29c03 __tracepoint_gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x36dfe65f __traceiter_gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3783d76a gb_connection_create @@ -12906,10 +12800,8 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4da688f7 gb_operation_unidirectiona EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x50090cdf gb_connection_create_offloaded EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x53d89b03 gb_operation_create_flags EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5725e8ae gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5b9ed165 greybus_register_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5f84a8b8 __tracepoint_gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6158e534 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x62303ec8 greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6dd90b4f gb_connection_latency_tag_enable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x71f00f41 __SCK__tp_func_gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x773875c2 gb_hd_output @@ -12944,84 +12836,84 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfa96c7a7 gb_operation_request_send EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfc066e22 gb_connection_destroy EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfd8a61a2 gb_hd_put EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xff9c57ef gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/hid/hid 0x02c9b5cf hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x00161cf1 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x037e7896 hidinput_calc_abs_res EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05d996aa hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x066bc0bd hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0dab998f hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0def29c1 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x11ed0be7 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x08ac6d86 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0e11e5e3 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1065d824 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x164d0f6b hid_hw_start EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x23a8c938 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x24efb70a hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3287f912 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x439f38a0 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x46b040e3 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6547a9ae hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6ca49643 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x72a79256 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x74739168 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x74fe02da hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2653a6f1 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x29f66aee hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x35da8b6a hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x447ec740 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x44b568b4 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x459be082 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4a7cdcca hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x501a7d79 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x513349c0 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x560f5ef4 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x61b4168d hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6a008918 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6baeed3b hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d048bdb hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d7c526f __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7081c8bc hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x764fae58 hid_dump_input EXPORT_SYMBOL_GPL drivers/hid/hid 0x76ac780d hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7a99f4a7 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x81720ffa hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x81ebc40e hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x86b3c2e6 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x882a59cf hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x88a24b13 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x87df59ca hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8a049c07 hid_add_device EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9483f7fc hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa2de587c hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4b9c665 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa53972fb hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa6f81100 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa75d9c9e hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xaf8c4f78 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb029471b hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb1f7cfcb hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb554f13f hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb713fe88 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc221053b hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5b341a3 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb109d9c hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb7b77c3 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcc0a9d71 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd55349c5 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe0ed4a5e hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf6a9c783 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b559cc7 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8dfea64a hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x95d9db58 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9e6d5e1a hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9fd650cd hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa27bed15 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa890801f hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbdb6537d hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc351eab7 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc7f2603b hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc82093db hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2a74ded hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe33befd6 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xed3249b4 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeef507b9 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf9fc2abe hidinput_find_field EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfaab13c2 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd73627f hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc99c8e0 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xff5d5d6e hidraw_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 0x7eaa1e18 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x41c0cb90 roccat_connect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1d7bbf3c roccat_common2_send EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x22afdadf roccat_common2_receive EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x862d5875 roccat_common2_sysfs_read EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8c3c546e roccat_common2_sysfs_write EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa31c6ec5 roccat_common2_device_init_struct EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb4b10fc8 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x06472ba4 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0e4a9893 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1861e7ea sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x46af95d5 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x619c75df sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7c398318 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x896c2781 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd5ac2ea0 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xef7d7514 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1a4a2e27 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2913bb60 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3f31f557 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x60eb6821 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa74e9451 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb160f15a sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdfd3bcc9 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe3a00dfd sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf38688b8 sensor_hub_device_close EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x27d3a935 i2c_hid_core_probe EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x53005bda i2c_hid_core_shutdown EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xc19ae9d0 i2c_hid_core_pm EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xd0a27c34 i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xd5973acf i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xe7263d73 i2c_hid_ll_driver EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0x697e3f7c ishtp_wait_resume -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x6508ccfb surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x48e9fbec surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x7e6a9983 surface_hid_device_add EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xa647a98c surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xd1433b17 surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/uhid 0x83c7f423 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x1e151106 usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x7e55e970 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x626e75a0 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x63c127b1 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xc8192b89 usb_hid_driver EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x18339a7b hsi_unregister_port_event EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x237de6c3 hsi_remove_client EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x285ada5b hsi_new_client @@ -13201,18 +13093,18 @@ EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x5102ecd8 d EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x0156985c devm_iio_kfifo_buffer_setup_ext EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0xe44237a6 bme680_core_probe EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x111f8ee4 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x135675db cros_ec_sensors_core_read EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x13f32b92 cros_ec_sensors_read_cmd EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2be10c0e cros_ec_sensors_read_lpc EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2fdaa267 cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x3b3b8077 cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x3f8134cd cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5953162c cros_ec_motion_send_host_cmd EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6774f071 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7c58b64a cros_ec_sensors_core_write 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 0x9e9152cb cros_ec_sensors_push_data EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xb34aca50 cros_ec_sensors_ext_info EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xb60c191b cros_ec_sensors_core_register -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc1382388 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf5a22319 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc1a67546 cros_ec_sensors_core_init EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xad26bb5a ad5592r_probe EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xc87d9a14 ad5592r_remove EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x11f6f78d ad5686_probe @@ -13247,15 +13139,18 @@ EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x311695ba iio_read_channel_scale EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3cb10082 iio_device_id EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ec76517 iio_device_claim_direct_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ba462ca iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4daf61aa iio_device_release_buffer_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x50559479 devm_iio_channel_get_all EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x634b7afd iio_read_channel_ext_info EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x68baecdb iio_convert_raw_to_processed EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x69e3c705 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6e088cd1 iio_device_claim_buffer_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x72be6a02 iio_get_channel_ext_info_count EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x733b9575 iio_push_to_buffers EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x738cfa11 devm_of_iio_channel_get_by_name EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7c8784ea iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7d6b60f8 iio_device_get_current_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9523970d iio_read_avail_channel_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x992b0bb2 iio_read_channel_average_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9db1b736 iio_buffer_put @@ -13279,6 +13174,7 @@ EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd84ca894 iio_read_avail_channel_at EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdab99c5a iio_enum_available_read EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe5a567ca iio_channel_release EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xecf24e40 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xee2c63c5 iio_buffer_enabled EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf486218b devm_iio_trigger_alloc EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x22e3512f rm3100_common_probe @@ -13292,18 +13188,18 @@ EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x90ab061e zpa2326_pm_ops EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x9d5bb034 zpa2326_isreg_writeable EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xa92d0e8f zpa2326_isreg_precious EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x234eaacf rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x42339730 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4cbfaec1 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6677eb35 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6691b211 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9363d8d8 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa09febba rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb2905f1a rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdc32ec13 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdd810ee1 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xec28c5ea rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf52f5c76 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x130123de rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1430baae rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x16640540 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2060cc90 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x539a8077 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x57b25f23 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5e73ba1c rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x76228936 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x93a0dee6 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb1c4ebda rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbdd191ac rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd4d8f967 rtrs_stop_hb EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x3a3b2299 input_ff_create_memless EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xe3cb7433 matrix_keypad_parse_properties EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove @@ -13334,18 +13230,18 @@ EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x50e54e97 tsc200x_rem EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x5f36ba32 tsc200x_pm_ops EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa71e4baf tsc200x_regmap_config EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb59ae34d tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0456c80f wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0cac04dc wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x10d56178 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x19e8d555 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3f1ecef4 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x84a6cb2a wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x88b62bcc wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8ea6f2f9 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb7389f46 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbc2cbf50 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd542d5cb wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf154ee86 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x181b19ac wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x23f2e79a wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x548d44fd wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x62475401 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6397f448 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7ff9495b wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x94345648 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa0b5997c wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaeed549f wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xafbf1ab9 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe77516d8 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe9029c07 wm97xx_set_suspend_mode EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x16c7133b ipack_device_init EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb16d8942 ipack_bus_unregister EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb84faba4 ipack_get_device @@ -13372,130 +13268,130 @@ EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_s 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 0x00349c0b __SCK__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x01601d1b __SCK__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x04e2dd6f __traceiter_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06abb11e __SCK__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0b38d38c __SCK__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f6e16e8 __SCK__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16b910eb __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x02356fec __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bf0c81a __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f510441 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f82f08f __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0fd7483f __tracepoint_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1a9dbc99 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17fd1a14 __SCK__tp_func_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1d3203b4 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x210decde __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1ccf4a81 __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1d8572e9 __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1eec962b __tracepoint_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21b87a42 __SCT__tp_func_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25cacb14 __SCT__tp_func_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2664d9c1 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x27585f17 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25f21ae3 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x264c2d2e __SCK__tp_func_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x27d7f338 __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x287090dc __SCT__tp_func_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x289137cb __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x28f71c27 __tracepoint_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x297e0da3 __SCT__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2dcfecfe __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2fc0db96 __tracepoint_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x300c8ff4 __SCT__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x31684ef2 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3189198a __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3363afb4 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x33eff296 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x32378986 __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x32ea49b4 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x34a3ff48 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x35273299 __tracepoint_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36f317a4 __SCT__tp_func_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3afb3fe2 __SCK__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3da95642 __traceiter_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ece7bc1 __SCK__tp_func_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x428326ce __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x43a7144f __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x445056a0 __traceiter_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x45324ef5 __traceiter_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x453f9506 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x38f89523 __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x39aee4a1 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x39dfabac __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a1257ac __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3e2905b9 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3f28fcdb __traceiter_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4543b49b __SCT__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x47322a11 __SCK__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x49b052de __SCK__tp_func_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ad15232 __traceiter_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4b9b048e __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4edb40ab __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x542f8485 __traceiter_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ace39e8 __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b9b32a4 __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4bf1a669 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4c87b032 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4e762460 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x50672c0f __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x54368dec __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x574256bb __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5a4c85ec __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5c64b2df __tracepoint_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dd80bd5 __SCT__tp_func_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ee91e97 __SCK__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x611bbe4c __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f4380b4 __traceiter_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x629c9180 __SCT__tp_func_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64b3b7d7 __traceiter_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6677ebf0 __SCT__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b2470cc __traceiter_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6bf92ce9 __SCK__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71f5550b __traceiter_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x729ddc93 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68fa0281 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68fa241d __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6bdddfc5 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e11ceb1 __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e3c3775 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x70bf08d4 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x738be92f __SCK__tp_func_bcache_writeback_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x752f7fa4 __SCT__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x75874898 __SCK__tp_func_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x787810b2 __SCT__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x793b8df6 __SCK__tp_func_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7ba48155 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7e710dbb __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f1031ac __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f1cdc04 __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f252e00 __SCT__tp_func_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x817ad796 __SCT__tp_func_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x822db771 __SCT__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x83bba352 __traceiter_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8b31185c __traceiter_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8c7aaba5 __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902497c5 __SCK__tp_func_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92749f85 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x84f1193d __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x86352202 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93c95788 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x950bd962 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x95ab6dc4 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9615bd65 __tracepoint_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x972aa384 __SCT__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a0b3cfc __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x97e0f1e9 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x98bc1999 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9abf29e3 __SCK__tp_func_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d28d153 __SCT__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ff9b52e __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa15bd7c4 __SCT__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1ca0eea __SCK__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa2c36d32 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa3be4a30 __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4f566e6 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa75fe85a __tracepoint_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa784e073 __SCT__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaab09cf5 __tracepoint_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xafe616f0 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb046bfa2 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb13c794c __SCK__tp_func_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb53094dc __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf7a3670 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb2c57703 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3bd7bc6 __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5baa3d1 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb63493e7 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb62f5d32 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb641b3db __SCK__tp_func_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7e5379d __SCT__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbb1acadf __SCK__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbb334097 __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbdca18ca __SCK__tp_func_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc37d9e67 __SCK__tp_func_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc529f0a7 __traceiter_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc615fa94 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbb5309d6 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbeefc0b4 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0d644dc __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc40150f7 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc567907e __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc72ca4d3 __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc73e0c99 __SCT__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc786e457 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8979662 __tracepoint_bcache_writeback_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce451ad8 __SCT__tp_func_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcfd05d62 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcefa89b5 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd25fdecb __SCK__tp_func_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd30206ff __SCT__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd3e4032f __SCK__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4fded28 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd65b1d38 __SCK__tp_func_bcache_btree_cache_cannibalize 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 0xde9857cb __SCK__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe138f2bb __SCK__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe250c29d __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe29ed821 __SCK__tp_func_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe61ae228 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe792beba __SCK__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe82f7c41 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb27db9a __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdd919602 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe1d5c91e __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe5740545 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe5d76908 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe636fa15 __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe7d33a33 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe8106ee8 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe89d8988 __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe90afdc5 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeb7c2848 __SCK__tp_func_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 0xece8acde __SCK__tp_func_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedf90bb3 __SCT__tp_func_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeffd16e8 __SCK__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf4aec9c4 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef1a6890 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf00dbd93 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf0b3fa50 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf17c0743 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf1e32bd6 __SCK__tp_func_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf57f81ae __SCT__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6c9bd86 __traceiter_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7322283 __tracepoint_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7a5edc7 __SCT__tp_func_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfa61dc95 __SCK__tp_func_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb767f16 __SCT__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc1e5b03 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc73333c __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfce76b1e __SCT__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfec58099 __traceiter_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x12c10808 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 0x199a8aee dm_cell_visit_release @@ -13745,47 +13641,47 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_te 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 0x11a50a03 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x091d385a __traceiter_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1488b799 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1ad420aa __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x252f9a46 __SCK__tp_func_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2a2a8312 vb2_core_streamoff 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 0x2ed2986c __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x42b766f5 __SCK__tp_func_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x484b7a67 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x49026356 __traceiter_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4ed3fb1b __SCT__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4f16b8cf __SCK__tp_func_vb2_buf_queue EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x59838d59 vb2_discard_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5988a66d vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5a500aa7 __traceiter_vb2_buf_queue EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5eb94610 vb2_core_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5f77eac9 vb2_core_expbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x70d367af vb2_core_prepare_buf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x74e79861 vb2_core_streamon EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7afc3462 vb2_read EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7f1decaa vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8722f5c6 __traceiter_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x882127a5 vb2_core_queue_release EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8c829f45 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9224b394 __tracepoint_vb2_buf_queue EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x93ea6d52 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9691792c __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9a2e220d __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa094da98 __traceiter_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa69829d8 vb2_request_object_is_buffer EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa7dcf9a1 vb2_core_querybuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xab759176 vb2_core_reqbufs EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xaf908398 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb2ba73c3 __SCK__tp_func_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb59a7e27 vb2_core_create_bufs EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb8ad5ad2 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc0ea4a86 __traceiter_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc54c863e __SCT__tp_func_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7920841 __SCT__tp_func_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc9b6580a vb2_core_queue_init EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xca4d0cb8 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xce8dd4a2 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcad13055 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcdc53834 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd61b40b4 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdb1ed7ea __traceiter_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdb6c3cc0 vb2_thread_stop EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdb95c22c vb2_request_buffer_cnt EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe0845863 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xea6502ca __SCK__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xeecfbd30 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfa0315fa __traceiter_vb2_buf_queue EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x472cfafa vb2_dma_contig_memops EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xac77902d vb2_dma_contig_set_max_seg_size EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x8b76e529 vb2_dma_sg_memops @@ -13829,12 +13725,107 @@ EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x5e90f050 dvb_module_release EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xbf0719b3 dvb_create_media_graph EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xd9ecf61f dvb_module_probe EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xddd35c21 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0x3ba82527 ascot2e_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0x8f0954bb atbm8830_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0xa8de9310 au8522_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0x00a92b73 bcm3510_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0x7ba45e1b cx22700_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0x94d507e6 cx22702_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0xdfaac9b4 cx24110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0xb5847850 cx24113_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0x49dfa9ab cx24116_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x34da4db3 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0x896abe0f cx24120_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0x60ee59c0 cx24123_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0xc231fba4 cxd2820r_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x6ec6997f cxd2841er_attach_t_c +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0xc3ef91b7 cxd2841er_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0x13ddb402 cxd2880_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0xf0562cde dib0070_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x1094fe41 dib0090_fw_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x178a355e dib0090_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0x346fc742 dib3000mb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0x8e023e6d dib3000mc_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0x6481ded1 dib7000m_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0x2bf79e8f dib7000p_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0xdd01bf9d dib8000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0xb25d3cde dib9000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x31417982 drx39xxj_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0x5565e4fd drxd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0xebf478d9 drxk_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0x6d17f799 ds3000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0xda9ea65d dvb_pll_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0x38d43cd3 ec100_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x432264b9 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x805817a4 helene_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0xa89ac303 helene_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0xbe2bd26f horus3a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0xf4feba46 isl6405_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0x93450da7 isl6421_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0x3c1b68cc isl6423_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0x30e097bb itd1000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0x207b65b2 ix2505v_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0xe930485a l64781_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0x61991ea4 lg2160_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0x7f149ffa lgdt3305_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0xb503c57c lgdt3306a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0xafb4662f lgdt330x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0x0a0afce5 lgs8gxx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0x6c37f3d7 lnbh25_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x686950b9 lnbh24_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x839b34de lnbp21_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0x9ef2c3ca lnbp22_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0x07a7ec77 m88ds3103_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0x27f58f83 m88rs2000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0xa3dbd3d7 mb86a16_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0x424eaaed mb86a20s_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0x88588919 mt312_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0x78bda01a mt352_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x0a5fc7a9 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0x60e70d6e nxt200x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0x18741f5f nxt6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0x966bc5b8 or51132_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0x0eacc3f1 or51211_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0x574a2f4a s5h1409_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0x4b93659a s5h1411_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0x93168e90 s5h1420_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0xc5912905 s5h1432_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0x4f4b2c5b s921_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0x95985a36 si21xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0x28bc4498 sp887x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0xea55d1a5 stb0899_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0x9165b1be stb6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0x37e005ab stb6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0xbad90434 stv0288_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0xdd54fe60 stv0297_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0xd6c3887b stv0299_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x3ad32f51 stv0367cab_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x49a77c34 stv0367ddb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xee6f9a13 stv0367ter_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0x83e36076 stv0900_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0x731f5d34 stv090x_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x0759405c stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0x4604b138 stv6110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0x16272442 stv6110x_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x50a52771 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0x51424e61 tda10021_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0x20dfba00 tda10023_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0xadfff8f2 tda10048_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x71785ff0 tda10046_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x851b89aa tda10045_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0xcff21433 tda10086_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xdc0a88b2 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0x01951e76 tda665x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0x64d586ca tda8083_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0xca0d0cdb tda8261_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0x74c4fc99 tda826x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0x192ee2f5 ts2020_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0x375f44db tua6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0xae13d07c ves1820_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0x0a95548f ves1x93_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0xe461b8aa zl10036_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0x630ff04e zl10039_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0xdfbb7195 zl10353_attach EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x29018ecf aptina_pll_calculate EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x69abac46 ccs_pll_calculate EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0847d81f max9271_wake_up @@ -13899,7 +13890,10 @@ EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf766842b media_get_pad_index EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfbe04129 media_request_object_unbind EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfeb4f655 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xc70f16ae cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0xefa7493a dst_attach +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0x4fd1025d dst_ca_attach +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x24a8f636 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x840651d2 ddbridge_dummy_fe_qam_attach EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x0cc97596 ipu_buttress_tsc_read EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x1485dea9 ipu_buttress_remove_psys_constraint EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x169f9100 ipu_trace_restore @@ -13926,52 +13920,52 @@ EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xe8a751f3 ipu_cpd_va EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xed9ec43f ipu_trace_uninit 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 0x0d7de379 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0e5787a8 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x16e5d452 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x17ccebe5 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x225b39ee mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2b44adcf mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x33389d8a mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3c9437d4 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x49dabe69 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x51ec67d3 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x864d7ab4 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xaf93a55c mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb20def86 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc30ddf61 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc66cded7 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd60a504a mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd8917f71 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe0559061 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf7850a7a mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x08701b2c saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2249401c saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x29c0d90d saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x393a9251 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x589e2e79 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5a57591c saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5b4f2b11 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x70d8e65e saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7b640a9f saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x86da0b31 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8eac6370 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x91377b70 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa0716ed1 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa8739713 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc622b3f7 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdd375643 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdeaf55b8 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdeba6423 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf3d8cdfe saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1611192f ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2b8f88ae ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2ff5be4b ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4115e16d ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4203f8e5 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x04459d9e mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x198ee557 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1d2d23c7 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x21414025 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3fa61b9c mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x46d5db80 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4f243dfb mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x594ff3af mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x66e031a4 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x682aea83 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6daf05a0 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb23e4204 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xda70c50b mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe329db99 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe91cf3b1 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeaf3ceb6 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xef010521 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf8fbfd50 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfcdfe401 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0f85d3cb saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x35b8946b saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x439afcd0 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x478e546a saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4951e4ca saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4b86c3b8 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5e19b185 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x618adc68 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6a5fff40 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x78175b0f saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa09c5f2b saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb4fccd34 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbd8b13cc saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe5121ea1 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe5c49010 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe880d16b saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xecd73520 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfe076fe4 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xff481a44 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x44b2d520 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4710a586 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4db4c398 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x71693762 ttpci_budget_deinit EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7d8c0d7c ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa57b6cd2 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x885d2356 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa1203471 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xeaa5f457 ttpci_budget_debiread EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x6134b342 mccic_resume EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xb859fa05 mccic_register EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xb8994e66 mccic_irq @@ -14005,10 +13999,21 @@ EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdc50275c lirc_scancode_event EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf1df5774 rc_allocate_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf9ad8b49 devm_rc_register_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0xca905b36 fc0011_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0x3b8e84cb fc0012_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0xa38ad162 fc0013_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0xaca5b1f7 max2165_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0xca21a3b9 mc44s803_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0x95762792 mt2060_attach EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x63116a6a mt2063_attach EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xb5da772f microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0x1ab9463b mt2131_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0x1183ddd4 mt2266_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0x20cfd30d mxl5005s_attach EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x663f416d mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0x3c2918a4 qt1010_attach EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x683b9d3d r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0xab0d9cf9 tda18218_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x62d4bab1 tda18271_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xf0db43ae tda827x_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x65ddac7c tda829x_probe @@ -14019,6 +14024,8 @@ EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xae9be269 tea5761_autodetection EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x137a75cb tea5767_autodetection EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xf1520a94 tea5767_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x5e93ee54 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0x0848381f xc4000_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0x0b816e84 xc5000_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0f435a2e cx231xx_get_i2c_adap EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x116990f7 cx231xx_demod_reset @@ -14040,8 +14047,8 @@ EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xce94021f cx231xx_capture_ EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd4efe27b cx231xx_dev_init EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe40b7c91 cx231xx_enable_i2c_port_3 EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfb411fad cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x039d1134 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xa2177fda mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xc2c6423b mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x0afcb2ed mxl111sf_tuner_attach EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x02bed6ba em28xx_write_reg EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x34b62b10 em28xx_read_reg EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3c9fe40c em28xx_set_mode @@ -14190,55 +14197,53 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07231766 v4l2_device_put EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0a4c7085 v4l2_event_pending EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0ac37c85 v4l2_fh_exit EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c6cc34f v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d0cf9b2 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0dfda042 __traceiter_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0fa25b7c v4l2_fh_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0fe95102 v4l2_pipeline_pm_get EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x12825e7b v4l2_fh_add EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x13a14a58 v4l2_g_parm_cap EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1642a4d4 v4l2_device_register_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x17f0ddc1 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x22ae65b7 __traceiter_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25735ed3 v4l2_fh_release EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x27608c10 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2b9adebb __SCK__tp_func_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f319651 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31d47374 __SCK__tp_func_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x34ac76ca v4l_vb2q_enable_media_source EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x41a977bb v4l2_src_change_event_subscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x44c6efca __v4l2_device_register_subdev_nodes EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x499b570b v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4aec966a __tracepoint_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x510b99ec v4l2_subdev_notify_event EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x57cbff6e v4l2_event_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x59b84e9f v4l2_s_parm_cap EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5cb990fa v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x62120c0e __SCK__tp_func_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x62dc2074 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x636c0ccd __tracepoint_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x663f04cc v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67792784 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x675e67be __tracepoint_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ca9e163 v4l2_i2c_subdev_set_name 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 0x71ea21d7 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x72d94301 __SCK__tp_func_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7841a374 v4l2_ctrl_request_hdl_find EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x788e8eb7 v4l2_event_wake_all EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78a157f3 v4l2_event_subdev_unsubscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x813c8beb v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81425e54 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x843dfc00 __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81d2f2dc __tracepoint_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x852770ad v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8861d286 __tracepoint_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e6e88bd v4l2_compat_ioctl32 EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9166ca06 v4l2_subdev_alloc_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x92c742c5 __traceiter_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x97c7597a v4l2_subdev_get_fwnode_pad_1_to_1 EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a92d940 v4l2_fh_del EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d533974 v4l2_fh_is_singular EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa17ba5aa __SCK__tp_func_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1893d14 __SCT__tp_func_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa96d34eb v4l2_spi_new_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb0b56d4c v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb0e16124 __traceiter_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb422db69 __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb4e530f8 __traceiter_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb59559f0 v4l2_ctrl_request_hdl_ctrl_find EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbac479bb v4l2_event_dequeue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbad395e2 v4l2_create_fwnode_links @@ -14248,7 +14253,6 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8dd867f __SCT__tp_func_vb EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xca082843 v4l2_subdev_link_validate EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1468abd v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd25d0bb8 __tracepoint_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd32b24fb v4l2_i2c_subdev_addr EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3938ab1 v4l2_event_unsubscribe_all EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd4254459 v4l2_device_unregister @@ -14256,10 +14260,13 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd541e31a __SCT__tp_func_vb EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5a68d4f v4l2_spi_subdev_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xea6d04a8 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xebdcbcc4 __tracepoint_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf09eb064 v4l2_i2c_new_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf508bab2 v4l2_event_unsubscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf789cf53 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfec15f40 __traceiter_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xffdea120 v4l2_create_fwnode_links_to_pad EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfffba602 v4l2_device_set_name EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x224b971d pm80x_pm_ops @@ -14290,8 +14297,8 @@ EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd31994d0 arizona_clk32k_enable EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xec85c448 arizona_dev_init EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf514b69b arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x55d2b32a atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xe8fdae50 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x749a6ae1 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x76a11330 atc260x_match_device EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1f969a59 da9150_reg_read EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2d78175a da9150_write_qif EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x59115514 da9150_bulk_read @@ -14316,10 +14323,10 @@ EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd2755499 kempld_write32 EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd2970ec0 kempld_write16 EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe2a2b031 kempld_read32 EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf12aa1e1 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/ljca 0x1a3f1265 ljca_register_event_cb -EXPORT_SYMBOL_GPL drivers/mfd/ljca 0x635d4b03 ljca_transfer_noack -EXPORT_SYMBOL_GPL drivers/mfd/ljca 0xa283f03b ljca_unregister_event_cb -EXPORT_SYMBOL_GPL drivers/mfd/ljca 0xee1af234 ljca_transfer +EXPORT_SYMBOL_GPL drivers/mfd/ljca 0x3573017f ljca_register_event_cb +EXPORT_SYMBOL_GPL drivers/mfd/ljca 0x5bc6674b ljca_transfer +EXPORT_SYMBOL_GPL drivers/mfd/ljca 0xae5f9caf ljca_transfer_noack +EXPORT_SYMBOL_GPL drivers/mfd/ljca 0xfde79caf ljca_unregister_event_cb EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x325c95b6 lm3533_read EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x7d6626a7 lm3533_write EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x849cbedc lm3533_update @@ -14369,71 +14376,71 @@ EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x485c7373 mc13xxx_common_exit EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6137b759 mc13xxx_variant_mc13783 EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x66321033 mc13xxx_common_init EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x73384231 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x025beff8 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0c047cf7 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3879f9fd pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3a1ae5c0 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5424c30d pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7d0f6d82 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9d7fbfa5 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd56e7206 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd9ae37eb pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe34d2457 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfee748fa pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x6a7fdff2 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x81066715 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6299e055 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x68d1b910 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9042363b pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xaf726c9f pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xdedd550b pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x01e594c4 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1745444a pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x24dd17b8 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3581535c pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x40688ea3 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x559cc311 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x68c31407 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6de0a756 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7eddaa9a pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8b060e70 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb877e3da pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x15212a89 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x9dd315bf pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x193d7924 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3277ec4e pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5738d36c pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa10d4909 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe4c21201 pcf50633_gpio_get EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x337dbf27 devm_rave_sp_register_event_notifier EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x01ae1eff si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x06387b09 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0cc2c1c3 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d2d7912 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1259df83 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x16e4d76c devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1ca6bb9d si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x23a9af05 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x25e69620 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c6faa36 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2eed47ad si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x34fb9c39 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x567fbfe3 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x620c74ac si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x65cca62f si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x65f33ab0 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f376934 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f4641f8 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8d1c3917 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x98177d2b si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x98dcef23 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9bbbd009 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9f6254e7 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb5cdeeeb si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb85017c2 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb8b6240d si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbddad4e2 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbdf13938 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbe1fb1c0 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcdf4ad8f si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xceb80062 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd9cdf9ec si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xebda0ddd si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf2262a05 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0582c9f4 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0b350067 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0f880888 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x16514b5d si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1e885259 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x25f9b5a6 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2a510832 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2d9743dd si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3ede26a3 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3f259b3b si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x609499e9 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x69966f64 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6ed44ef8 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x727602cd si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7eeb375f si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x860e8b03 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8babfe99 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8eeb5bcb si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9470e6f3 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x965cfaed si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x97350f01 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x99ca0f4a si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9eaa382e si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa385f95b si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa4b60b06 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa7736e24 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xac5c4f9f si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd498726b si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdde28aaa si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe9a84646 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xee794049 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xef36e75f si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf2382fe1 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf61789e9 si476x_core_i2c_xfer EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x39dcb56d sm501_unit_power EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x5351ecf7 sm501_set_clock EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6de47be9 sm501_misc_control EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8e75698d sm501_find_clock EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd21b6883 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x09bc6a53 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x14497ecb am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xdff3bc29 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe6bc8bc3 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x0daa7691 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x34e5417b am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa48c095b am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xdbe5a0eb am335x_tsc_se_clr EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x615e59f0 ucb1400_adc_read EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0263b05a alcor_write8 EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6159b9b7 alcor_write32 @@ -14442,30 +14449,30 @@ EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x88a97236 alcor_write16 EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xceb15e28 alcor_read32be EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd1e16557 alcor_read8 EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xdfdc2e87 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x033ab90f rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0837d54d rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x131a9814 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x17800cd7 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1897eea7 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x19f2a722 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x19fda5e3 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x49477178 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4eacdd9a rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x575b5c9f rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x59f93a7c rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x62a20566 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6bab427c rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x851b36b0 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x98810d3e rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9f5e89d3 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa29e0fc6 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb8253dd3 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc87014d4 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd8023d8e rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xda201de1 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdcb71c53 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xde42d417 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfa418145 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1edef5c7 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x22add74b rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x23c79c0f rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2b2efc8d rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2cd07e7f rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2e927a03 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2ead38a7 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3465268a rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x39a08cae rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3a557284 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x43c7fef9 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x481cd35e rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5cf06546 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x62a948d4 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6d7bef83 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x83754f7b rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x998e242c rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa3c5ade0 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb5168c96 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd5347e82 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe009f931 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe512a6bf rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf7b79c49 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfa12b31d rtsx_pci_complete_unfinished_transfer EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0409ce4b rtsx_usb_ep0_read_register EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x09d06913 rtsx_usb_get_rsp EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0b097ea9 rtsx_usb_add_cmd @@ -14479,10 +14486,10 @@ EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xcae7dd85 rtsx_usb_send_cmd EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xeced88db rtsx_usb_write_ppbuf EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfa52ccdc rtsx_usb_read_register EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfccfe7a3 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1201c983 cb710_set_irq_handler EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x473297ee cb710_sg_dwiter_write_next_block EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9a0474fd cb710_sg_dwiter_read_next_block EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa3b97d6e cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc8019c7f 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 @@ -14510,14 +14517,14 @@ EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x5763033e vsc_acquire_camera_sen 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 0x0389c418 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x13aef2d6 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x926e4c64 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9a3df0e8 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa04209a5 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xba4b0ed0 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbf775d6d lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc7e916d6 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0323da46 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x22c287ab lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2763dc53 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2e2765b5 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x492c47e9 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x76744024 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xce807cb9 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcffd0f7d lis3_dev EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x05a88e4b mei_cldev_ver EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1246f268 mei_hbm_pg EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x358b69aa mei_register @@ -14572,8 +14579,8 @@ EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xe68acd6c xpc_interface EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xead4f7fe xp_max_npartitions EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xed1d3813 xp_socket_pa EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xf3b47f67 xp_partition_id -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xb7499403 st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xf594e8f7 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x88c857f5 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x932c4373 st_register EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x0201daf2 uacce_register EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xb3f15aea uacce_remove EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xec4532a4 uacce_alloc @@ -14605,55 +14612,55 @@ EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscr 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 0x0975a7fe sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x09adbf0a sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0da0beaa sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x119ff4e8 __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x138d9b42 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x28f92400 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2d208dbe sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x33522ae1 sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x36402abf sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4a4d6d43 sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4c8e6795 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x606fdeb8 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x61a9ef5b sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x667ca68a sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6e2ea3b6 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6f468673 sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6f4d5e32 sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x75872553 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7592d341 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7c45be30 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x810e2433 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x82f1193f sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8814b6c1 sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8fbac791 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x91fdc593 sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x93587a48 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x97c0140a sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9cd6e634 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa5d954bc __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb0c52505 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc1711629 sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc6d8576b sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xca729e77 sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdba9e0ca sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe7bb14cb sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xebd18f54 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf13ba667 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf4ce9241 sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfb24a647 sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfbc8d49b sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfdb2c5f0 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x043c28a8 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0bd9c411 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x13173b55 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x207a2c66 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x20d2b965 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x273f353a sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x28c4f2d0 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2b7bfcc5 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x35e50a88 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3950e62a sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x42b0c4e7 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x463cb280 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x467e8c1d sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6d7bcf18 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x77213ce7 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7b1dc77f sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x82c8edba sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x84a3f2dd sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9303955e sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x93485636 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x94b42d6e sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x989c541f sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9d7bbfc1 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9d9afde5 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa16ce5e8 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa97788af sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xae56132a sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaef3bab2 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb44ae081 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb762e79b sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbc1d06bb sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc01c7506 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc8c57e28 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd957d64d sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdbcb314b sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdd999417 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdfdf393a sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe5a3bbc8 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe687b6c3 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe75f438c sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf948f2cc sdhci_cqe_enable EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0b8090cc sdhci_pltfm_suspend EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2c69e447 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2e5e3f11 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3bfdf1a0 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3d2c72b2 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4f1cbc9d sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x83d20b93 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe693a64b sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x540feea9 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5857dcff sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7debb2a5 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x990dc3f5 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9ad79de5 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe91f8082 sdhci_pltfm_clk_get_max_clock EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xfc23dcc1 sdhci_pltfm_pmops EXPORT_SYMBOL_GPL drivers/most/most_core 0x025d15a5 most_stop_enqueue EXPORT_SYMBOL_GPL drivers/most/most_core 0x11812c72 most_resume_enqueue @@ -14829,347 +14836,347 @@ EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9b3272e7 mux_chip_unregister EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa11fd0b5 mux_control_states EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xabb22d3b devm_mux_chip_register EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xaed12e60 mux_chip_register -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x115f80c8 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xb535e5ec arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/bareudp 0x9b19df67 bareudp_dev_create -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1797723b register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2eb0a46c c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x44cfd89f alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5e36e2d2 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd87954d0 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd8a0be36 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2c9d3114 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5137ff04 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x87ae1ee5 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd29006d3 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x03c22645 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0d7e534f safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0dcec184 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x918b27e4 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xa66b8347 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/bareudp 0xbd40313b bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x14b37183 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8405f2b6 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x89f41b7a unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd6f72e49 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe0c1d691 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfff11fda free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x26163148 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x9b7967e4 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xb2e76bd8 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xcf05be6d unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x02394d1b open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x07bc1046 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0cbc36f3 register_candev EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x23fed850 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x24f74588 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x38734ea9 can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x45c6645e can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4c14bc37 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4e04ffa7 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x53066a6b alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5da359a3 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1d965a88 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1f9df25c alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x249b646a can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2fb8de6f can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2fe6421d can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3148780a can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x37998dbe can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3b410622 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x47d81ac3 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4843e52b can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5194d1fa can_rx_offload_irq_offload_timestamp EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x74712028 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8072bde8 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8077145e register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x838446f9 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x880fde2c alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x88d97933 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x89f081f2 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8ea389c2 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x93124021 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x933c770e can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x99cef5aa can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa1e6f8ed can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb184d51c can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc6c9c5a8 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd52fb5e1 can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdf30a9be can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe91e25de can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xeaa9306d can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x69667467 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7cdf651d free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9287fe7a unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x93954639 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x943009a6 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9d0dee95 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9f5d98f8 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbd27fe2a alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc6894064 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc8082bb1 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd614f08b alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd791758b can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdaa482f3 can_rx_offload_add_fifo EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x2acf92f7 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x601a12dc m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6cfa1af7 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x90e4769d m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa4233bc5 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc6a00937 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc8f933e7 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xccf233e8 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf72522b7 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xffabbf33 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x45677007 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x464e42d7 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x80eb1dab m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb90b1ba4 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb993b451 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcdbb6939 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe5bf2cc8 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf7d98c4b m_can_class_free_dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc2285120 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc830cbe7 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe8084dae alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfe2e4bab unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x65bd743d lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0e0d140d ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x17abda82 ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1f999400 ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x39c413c7 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x47045710 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x57055be9 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5896ac34 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5abd1f3a ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x60d92666 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x68abc6f4 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7058240e ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa5971cf0 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xac5db92b ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe48320a7 ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x13a6ef41 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2805a0b2 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x60c10f96 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8e5b7241 rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8f1a54ea rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xad03e75b rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb239bbc0 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbb42291a rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbe438e30 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc405d04b rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdba2f6cf realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe2e49dd4 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe3591ff5 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xeed2d890 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf98ca33f rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xc8d9e7b2 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xf33a4a34 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x0f8050da ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x50cb43e3 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x51132410 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x650eaf36 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xeacaf0e1 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02328407 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0588471f mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05a0c7dc mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08c6ef58 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a3e6953 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11874d1f mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12dbe1c0 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18747bfb mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b25c7db mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1eb7f183 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f808c9a mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25f25c45 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x274ec6d7 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ae3baba mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c132edb mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f158add mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x332fe9d4 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x348192e8 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3805499f mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d48cc86 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e6437b9 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e9cfe2d mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ed37734 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ede0813 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x408091a5 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41845ef6 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42c3dcd2 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43134ad0 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x437fe77f __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43cd8b8c mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45fdc796 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47161ff9 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4baa9ae7 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cefc2f4 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x543086d6 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54e2dc3d mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5663f236 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56981388 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57027d22 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58c92f56 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59b4be75 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a73f05f mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fbf1d71 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60484e0b mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6317881a mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x669141b4 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66f14dbf mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67d92671 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6af91192 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c4d253b mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ed2f41c mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f896569 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7113c1a3 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73458c51 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73563d0c __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x749cccf4 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76326fe2 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7811b210 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78a49bf8 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78c62c19 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cc07a3e mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x843340f7 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84597844 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x845d507b mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8875fe9a mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8aead4b1 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c31a8e1 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90d4d51c mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9176af9e mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x931c998a mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9363f5eb mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x936908a8 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94bad2df mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x958369d4 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x960f975d mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98123e2f mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98940e2c mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9eeb1e0b mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f2c3c6d mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ffefb6f mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2818ff9 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa61a6f35 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6802226 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6b306cb mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7e33355 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8eb7419 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa926fa10 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9541659 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa97c90ac mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae30731f mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaeef43f7 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf479805 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb35d67d8 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb66de9ce mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9310cfa mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcaeb3e4 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe02cc0c mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf098add mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf227fee mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0127a73 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc029796e mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7b369cb mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc887dfbb mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca1f1aaf mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca4fb15c mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc87889b mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcca1f755 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0fb272a mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd571977e mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9120763 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3878910 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4e92139 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe68394e5 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8dc9fdc mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9d3ea9a mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed9a6b1b mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeee426b8 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf16e5a84 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1e13f6b mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf779aa10 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe47583d __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02103383 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x587013eb alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x86968614 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x93d89b1a free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe99d8750 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xe9f0b872 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0e0eff12 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3c84ea74 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x635b522c ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x67ab642f ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6c6c2d2f ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6d3e4fdb ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7698f65c ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x922c0532 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb10932ca ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb924c349 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc31824a7 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xce248cae ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd402c5dd ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe0c23a7b ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1b5bb8df rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3e3a9069 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3ec4281b rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x484dfa67 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7b0196da realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x87a77bef rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x894e52ac rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x98d964b1 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9c7daa62 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb196d814 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc34a3063 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc61c0ca4 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd1eba5af rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe0319fe8 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf0e5e8d4 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x9d883b15 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xf568472c i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x0a56a3a4 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x16d40e68 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x6ec4ffb8 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x98c4fc80 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xebd38550 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00d1ef20 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x024025a4 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05c29e13 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x061bad67 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0717f246 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09f416bc mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ba2a459 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c55a3c2 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d6e6782 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12510cac mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1350f4a5 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x189a09e7 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19203a45 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a749c22 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bcfbdf0 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d47bde3 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x209575f9 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x212abe04 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24451587 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25264ee0 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2605abee mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x274ecda9 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28dad249 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a96ba10 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2acb346b mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cef7016 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fe9055a mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30117a90 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30bc0799 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33064f7e mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x363ac6e1 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x363cf9a1 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38f1aed8 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a9e15fd mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3aea56ef mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c6b278b mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c979f9d mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d48ea36 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d67d422 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41001ffd mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4111064a __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4153008b mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46835715 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cbb29d8 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d3d3272 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4dc72765 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51b9223d mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56b31128 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x582c4dba mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5de385de mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dfcbaa2 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6064893a mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62048d31 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62ccb070 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63d602da mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66551472 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x678d3813 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b360ede mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c5b497f mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e201a52 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e2c6dd8 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72411d45 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73186c7d mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x738135dc mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73d2f2fe mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7901bbc0 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e1f00b2 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81726d41 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x834a2117 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x845678bc mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8545b316 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x897db61a mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8aaca531 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8af5fb7a mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bbe8f91 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f8a335a mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x952c2f17 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97b78065 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b946443 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fb8f82b mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa33a9ec9 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa678c057 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae0c864c mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaea223a5 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb008fc30 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb26ac884 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb36614e2 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5d2dde6 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5d6bdfe mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb861fd2b mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcca9cbf mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe843fa8 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf867a15 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc14f7004 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc35b0251 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc65ce72e mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8c3d374 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9596b49 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc07c262 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccf9c7e2 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdcfea98 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3a7a227 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd55fbbcb mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd7b0c94 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde729c6b mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2baa49c mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4ea0b81 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe55724bb mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe64f640b mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7dba3e6 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9ecc69b mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea29b9ac mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee670b6c mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1c2d0a4 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5c3e56d mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf703c859 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf79b39d2 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb6e8901 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbccef02 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdd2b64a mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe8143e2 mlx4_SYNC_TPT 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 0x08d54d22 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ba3fe6a mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f49e070 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11beed87 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1df2b374 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e4608d9 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20113e75 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x208c6cba mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x213f8d94 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e16b079 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e4fc91b mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x328708d2 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35e02834 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d548194 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46f49168 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a6d140b mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b9dd4dd mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x532f476b mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5422e2a5 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56931f27 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ab4e468 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bbc252c mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d912940 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5df1bea6 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64c9b550 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6734a7b0 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73c53720 mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7437e119 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b2710ef mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b749313 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ea552fe mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f79937b mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8102ebd7 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07394e53 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c12ede5 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e34ff03 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x176e392d mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17db1ed0 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1820a5a9 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21839966 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29105309 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cdb7063 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3768aca8 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37c74421 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38573343 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d90b349 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41719d3c mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41a180ba mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4331f454 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45c9c8b9 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e5a5970 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x502f7cea mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x506f076b mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5505ca7a mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56c2e115 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x596078a1 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d1daaf9 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ec15ae8 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x644dede6 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69f4c3f9 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b67d79d mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b8d18f9 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bd9be6b mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x721e1e5c mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x776a2157 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a6b801a mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a7ff86b mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e6263ad mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fde9fe0 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x804ed83b mlx5_nic_vport_query_local_lb 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 0x85cbcac0 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d049b9e mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x906b9a44 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9100ac59 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93f4a533 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99857fa3 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f12514f mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fae9684 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ff051d0 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa11dd647 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2e8caf4 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3b60ab3 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa56d9992 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83c3b541 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86c6ad34 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88468c0c mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b2b0862 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x910b6cf6 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x925aec36 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a9f4336 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9affb499 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1a733fc mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2d5b3db mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7206223 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa74b746d mlx5_query_port_max_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 0xad5cd919 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb86aa931 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb97ae74f mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbac6c6af mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc48a410 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcf1c37a mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe91c5fb mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5ce24d4 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6bad32c mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf8ba895 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd061d66c mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd073fe01 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7f6f99a mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc91e59c mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3a6e37d mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe58c9f38 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeab5d0b5 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec31afd3 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec831a2e mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed43b829 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed6b6603 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf44ba467 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4d44be7 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd24f0a6 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x7ce7ec11 ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x91634c9d ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xac93a02e ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xe4367671 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x2bb1d859 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8851497 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa985c9f mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaab54f94 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab7bcfda mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafde4658 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb992f494 mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba7ef20e mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe4afc76 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc537683b mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc747780c mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc798ea0b mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9f69b58 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0a933b3 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd20be28e mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5a808b8 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb54b3b5 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0a7061c mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2973b6b mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf45eed88 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfea7523a mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfec36dec mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffd39ec4 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x1871abf3 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x2025ed4b ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x9efd6540 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xe95aaa3e ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x24b54495 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 0x09224b1c ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12b5d08d ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f9041cf ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a0ff208 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x666d5cc6 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x66abbab6 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x77f354f5 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89c1554e ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9bc15f4e ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb5ac9007 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbcac95c1 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda532cab __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9c21ed2 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0004f7d1 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x35a13952 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x5f26bd88 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x170a0912 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x31a85416 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39d4c154 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x730e962a __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b6f3898 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90b884be ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4c3fa81 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3f6f3a9 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc04899c9 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9be5be1 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd02264d4 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7dc1a70 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf942cdbc ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0a126fd3 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7884ba24 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 0x949a4b96 stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa63c6eed stmmac_bus_clks_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa6e4a3b6 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x96eadeea stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xcedad606 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-platform 0x3a413cd7 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x44c87e70 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xcb267e7c stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd145688c stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe0117f53 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x341785d7 w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x630252ca w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xc05ddd2b w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf6e5d63c w5100_probe -EXPORT_SYMBOL_GPL drivers/net/geneve 0x7c22f910 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x17d29d53 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3260cc61 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3f22e12e ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x94907b94 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xda517ecc ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macsec 0x3ed71084 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7e7caef0 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7f181904 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x96b46fa8 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd9d7ada0 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xde1a69be stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xdfd12c25 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x439b0ba8 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x68382db3 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xddcac125 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe06373f5 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xfb233a06 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x61ca1f90 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xc6bf8dff w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xd3ef3b9f w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xdfeee2ac w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0x4205ef99 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x61e8c966 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7de737f1 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xcb977170 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe971fb9d ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xefa3ef23 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/macsec 0x33560e1c macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x174ae502 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xaf8ba02e macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xcb094f19 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf521d4ce macvlan_link_register EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x088c3754 mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x3714b6a8 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x772c76b7 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x05056d07 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x22723eee net_failover_create EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x1a5b7a68 xpcs_do_config EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x26749e2a xpcs_create EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x2c8c9bf7 xpcs_get_an_mode @@ -15177,864 +15184,864 @@ EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3ef8570b xpcs_validate EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xceed34d0 xpcs_config_eee EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xd0b9f2cf xpcs_destroy EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x066f8fa5 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0d816c61 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x106b6772 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1c03df94 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1d452ac0 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2196b09c bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x21dc4025 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x222d770a bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x249f9da9 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x32117c3b bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3f4f512e bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4814958f bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5a1ed569 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5a80b559 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5bb902ce bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5e1dfead bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x70d963ae bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x72cdd67c __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8374dfe2 __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x84f65172 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x86fcd17d bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x92f2b9a5 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x969d6921 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9b5ee8b2 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xae3a2496 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xae955c11 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaee4c7cf bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd7be4acb bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdc9f2e9e bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe0911488 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe6bb3b95 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe953c48f bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf44c2d8b bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xff4f5bf0 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x04b2c383 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x15b309a2 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x183184af bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x291d55c6 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2b3be455 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2ba6db30 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x386deafc bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ed220e6 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4179c040 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x42d75bd8 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4a83c2b2 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4ab7d799 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x50b8a60e __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5ea1ac0c __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6d9fb322 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7b40b438 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x821200a1 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x839c1e9e bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x89dec245 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8df922a6 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8ec44b78 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8f7bf16e bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x92eb84f4 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x95c9bb9c bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa3c7559d bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa9ea1297 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa9f38823 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xba660cab bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbea7281c bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc98004c9 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd220c6b9 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd23545f4 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xde0a68d6 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf675fdef bcm_phy_handle_interrupt EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0b974e24 phylink_create 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 0x15c73498 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x238186e9 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3b4a5cdd phylink_mii_c22_pcs_config -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3f816586 phylink_mii_c22_pcs_set_advertisement -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x47ea2af0 phylink_connect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4ccf4b29 phylink_create EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x58ca9a3b phylink_connect_phy 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 0x61c6e90a phylink_fwnode_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 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x86cc95d7 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 0x9905cf16 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xae81bf92 phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9fa821d2 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 0xc5fd9a7d phylink_mii_c22_pcs_set_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd30c353c phylink_mii_c22_pcs_an_restart 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 0xdf6cfb21 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 0xeed324c7 phylink_mii_c22_pcs_an_restart EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3f62d9d phylink_of_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/tap 0x1ad671cb tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x26682dff tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x33887d7a tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x517b3dea tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x63aec7b0 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x89c0fb0f tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x94e9f419 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0xb8dc043d tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xd7c59803 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1b44c12c usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5189a3b5 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5fb95b7e usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9f4bb808 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb958af19 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xdc90b4f0 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0fbdc427 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x15666ac2 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x19f92654 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1d1489e9 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x215036ce cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x288c7fb6 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x47806174 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4f21d37d cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x773b8a79 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x81a160df cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb0642910 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xad08487e rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x05d01906 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x42ed3402 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x43bf9083 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6af40708 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x88a2f7c2 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xff7fc6c8 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0192daf4 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x03218c5c usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1195cb51 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x13760579 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b6d01db usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1ba45f7d usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x20d4d3cd usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x229d200b usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x265b1ccc usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x270d2158 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x29b67a6b usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2d2149c8 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x34dbd875 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x35edeab6 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3a9ea0b3 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3eb766d7 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x47ad4d4a usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4aaf9cf3 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x58b9d272 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5bea694f usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5dbc40ff usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5f902e3a usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6bf67a9c usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x721fa971 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x80d148c6 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x86fb031c usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8ee978db usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8f47be62 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa415e7a2 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa5c0c90c usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xacba77d9 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xadb4b067 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcde8dfc9 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe6598c63 usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x061f090d vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x083adcce vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xb014822e vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xba1097fe vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xa45b4b0d libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x009b2dbb il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25191b8e _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78f7df48 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a009df7 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a75e030 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0006b0c8 iwl_acpi_get_dsm_u32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x021fe2a9 iwl_sar_geo_support -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x073d9e43 iwl_pnvm_load -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0747a9ca iwl_write_prph_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x08b1a902 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0b8e82ce iwl_sar_get_wgds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1264a34e iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x12d33423 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/tap 0x25e99163 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x364db905 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x37281461 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x3b2f4749 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x5f22a5d0 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x776e76ea tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xc826c6fd tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xcc86926f tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xf98a923b tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1536d218 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4438c606 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6a8cf87b usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa207695b usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xcb9b751b usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xcdfe654f usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x115e437d cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2092b108 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x318424a3 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x32e096f8 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x36acb879 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x38db62bc cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5a913be4 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa5bfbd57 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbcc8600a cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf67de2d7 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfcd30a25 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x677efa92 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x241bedb7 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbc1c4ae0 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbc24ea23 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc83df939 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe403634a rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe9b2af22 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0a2b7939 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0c8b54c7 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x11df2ff1 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1ed37e86 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2b005019 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2d9198f8 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2fbfc087 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3c0e323b usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3c72baac usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x410e8e71 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x44729280 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x49dc95a9 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4ccf1220 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5d6fb425 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5fd1747e usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x69700292 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x733fac3a usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7494ff1d usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x83eb5e75 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x91eb6263 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x94e77396 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xac2b73c9 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb1634f2a usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbae1203f usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbfed72d2 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc0e57b2c usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc5ef131f usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc94ef2e1 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcd781556 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd1634931 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdb35c84f usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe867ad91 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeaacbac8 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xffdbef37 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x857f41bf vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xc31aab6c vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xde79fe20 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xeed69cc4 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xf92eee1d libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac6c69b0 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad4f3fdc il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1a48855 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd96aadca il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8a12879 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x01b584cf iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0c3e3af8 iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0cd5c5a3 iwl_sar_select_profile +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x131b4b74 iwl_write_prph_delay EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x16d3e23d iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x170f3ff7 iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1d8c3c78 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1f4ba567 iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1f86ebef iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x216a9d63 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x13c1e6d5 iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ecadd04 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x26ce96a7 iwl_write32 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2d695234 iwl_acpi_get_object -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x30cea3b7 _iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x325d6edf iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x328f3ff2 iwl_acpi_get_lari_config_bitmap -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3437303d iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2aad39b8 iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2cc06fdc iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2d2ebb7e iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x304a639c 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 0x3e645c17 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3edb87eb iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3f090905 iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x408d3aa6 iwl_acpi_get_dsm_u8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5279cbfb iwl_sar_select_profile -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x559419c0 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3bde934d iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4011680a iwl_sar_get_wgds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x40745e3a iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x43f6ac9e iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x492133f5 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4a942fb2 iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4d7e1517 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4df9d320 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5332fb8a iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5336ded3 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x55df5c0f iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x58461151 iwl_opmode_register 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 0x5bd0be44 __iwl_dbg EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x626104a0 iwl_acpi_get_wifi_pkg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x68b7b24f iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x693b5c94 iwl_sar_geo_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6af089aa iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6c564e3d iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x711d37e3 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x730a2c6d iwl_sar_get_ewrd_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x733f99fc iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5cdf3924 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x60f989e5 iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x63fda077 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x64473b86 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x69224e46 iwl_acpi_get_tas +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x69a2d0ed iwl_acpi_get_eckv +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6c0c5d2d iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x70e462b4 iwl_acpi_get_lari_config_bitmap +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x71848afc __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7526d152 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x76305cbe iwl_configure_rxq +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x775eec13 iwl_parse_nvm_mcc_info EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7eb98a9a iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7ed7e17e iwl_fwrt_dump_error_logs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x82368de0 iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x890c0f9e iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x77be53bc iwl_acpi_get_mcc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7d05fd57 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7f2751df iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8414840c iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x87a587c4 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x88d0e0ae iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ba65d0f iwl_fw_dbg_collect_trig EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cd2f16c iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8f800104 iwl_cmd_groups_verify_sorted EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9038811a iwl_rfi_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9626187d iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9731e23f iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9dc8407f iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa065442d iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa2d501f7 iwl_configure_rxq -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa54a0c19 iwl_acpi_get_eckv -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa56bc042 iwl_fw_runtime_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa6158d49 iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9317499 iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x90f61511 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x975019bd iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa00bca2a iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa2e2c648 iwl_acpi_get_object +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa66bd1dd iwl_acpi_get_pwr_limit EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xabf3a468 iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xad5febcf __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xafc80bb0 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xae2d90e7 iwl_force_nmi EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1338340 iwl_fw_lookup_cmd_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb7cc9237 iwl_sar_get_wrds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb5772fb1 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb8348b79 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb925af17 iwl_sar_get_ewrd_table EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbafc8994 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbe222141 iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc08ef746 iwl_acpi_get_pwr_limit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc186760b iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc2a02376 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc61053e4 iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xca795d0e iwl_acpi_get_dsm_u8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcd000ecd 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 0xcfcb0bfa iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd431b04c __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd6cb4957 iwl_acpi_get_tas -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd773b6a1 iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdad29161 iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdba0e0fc iwl_acpi_get_mcc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xde318626 iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdfefbc9e iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcf782a64 iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd0306b8c _iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd5975724 iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd920d285 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdc6987fe iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdd3e5c54 iwl_acpi_get_wifi_pkg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe03b0175 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 0xe75b7e77 iwl_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe79361fe iwl_sar_get_wrds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe7dc4328 iwl_pnvm_load EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xed815a3a iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf20315c4 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf2940c7d __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf332d548 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea7b1ca5 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xebd11ccc iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeea3c2c0 iwl_sar_geo_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf3dc384e iwl_fw_runtime_init EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc1e6f41 iwl_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfe1d8f64 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xff0f5404 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x03e8370b p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2a540598 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2c207b6c p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3cef88f4 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4982452c p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x59a00d55 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x913892fd p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc007310c p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc5c5bb17 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0154c960 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x03a68b1b lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1b47d029 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3626a89b lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4c0545ec __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfd2df954 iwl_acpi_get_dsm_u32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfd6207d9 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xffa11977 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x00fff640 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x245b97a2 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2c5c538e p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x47154108 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6f22dbd0 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x897e2dcd p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb2689bb9 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xbadaddd7 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe8c2716c p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1f24cf30 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2313922b lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2973feef lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x31ab046c lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3a436970 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x489f5880 lbs_add_card EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x636f0748 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x84dbdd55 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x87f9e0dd lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xad83ec28 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbf53b9cf lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc470036c lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc626afc8 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd15ac779 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd3a6b3ee lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe420a589 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xebc67909 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7e136eae __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7ee96a93 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8417d283 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9fe03ea8 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa9bbf8df lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb6416575 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc1b4f360 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc764d3ce lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xca036932 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd25a7a2a lbs_remove_card EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0efa2d6e lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x38c42439 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x404872f5 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x860fda89 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9512446b lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xaaa1a481 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xbfcaf491 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x022c283d lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x185c7492 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x311f7124 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8bb8f268 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa79cde50 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xbc01b276 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc494c538 __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 0xf93738c5 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x13dea685 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x16cdb6c3 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1caeb064 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2088d630 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2f2279f7 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3d041432 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4eeeb3aa mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4f2f669e mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5b5eaf1d mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5c59923c mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5eff47d7 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x66b4293d mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6f12dec0 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8e0ef7f1 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x90aa1b74 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x92c71b13 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb24dca87 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbb299b7a mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc2589ae1 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc283ee2f mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf0c0f5dd lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1618f4be mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x174e8dc5 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1b24b4cb mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x23c61511 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x29c59aa4 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5138d0f3 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x529fadb7 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5a1dcc4d mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x637c205c mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x667768e4 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa39f04b4 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb8ea65e3 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb9b5fda4 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc501602a mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc9a32e05 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd49871cf _mwifiex_dbg EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdc7dd456 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xeab9fdec mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf40a27f6 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf7da054f mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x01619869 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x09496512 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x09890a2a mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0b4351c6 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0b7af487 mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0bc2305e mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0d435c8f mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0d856cc4 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0d953fea mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ed35dc8 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x136b8f8a mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe06277e6 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe7c6e760 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe7e4ea00 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xeec08dd0 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfa2e26ab mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfa45981e mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfe4a47b6 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xff209c50 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02c77c65 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a87ed60 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ec3314a mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1686c948 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17024193 mt76_dma_cleanup EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1aa22141 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c1d8099 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c3e7f2c mt76_unregister_device EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1faff640 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x20359a82 mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x23322e7d mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28f6e5b4 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a15872f mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2b1531ac mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2cdd8f6c __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2e081f5f mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3266c14c mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3357c953 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39475678 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3dacbf02 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41b0a546 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41e89ff9 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x44160a0a mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x48f1e061 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a478c21 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4aabb3ec mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4ab75733 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x50476d0a mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x51491d10 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x53a8840d mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x625c59d4 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x62a6a87c __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x63e8fe44 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x65df6954 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6fe471c1 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x75c8968d mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x767e3976 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x78819ef1 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8153f58f mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x879f2538 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x899617c9 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8aaa2856 ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d6ea5ee mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8dbbf38c mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f78adbb mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x92416326 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x97d0a781 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x98cd7976 mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x992690ac mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x20cd8a83 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x257a4186 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x27f77509 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28a85aae mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f62a9d0 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30c40471 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x367c03b0 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3a15015f mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x42fa5863 mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x45e339ea mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x49c1f374 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d878590 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e7df9cf mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x53e32aea mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54ba8afa mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x57a220f2 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5f9348a0 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x647e1ccf mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x667da9a1 mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x67f35ede mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f3ddbed mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7492d182 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x78f38e3f mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7af65a58 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8010e248 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x83794243 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x86da69f4 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x86ea36e2 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88239289 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x89487875 mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8a3f8919 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8a770ad4 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8aee757a mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8af6bc96 __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8fa3ba43 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x90b9f3ae mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9347a7d7 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x94c21d66 mt76_token_consume EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a5471af mt76_sar_capa -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9adf4680 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9e2ea9a1 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab1fdaf4 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab5c51dc mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1d6d30c mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb291047b __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d1a67e5 ____mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa15f091e mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa90c18e3 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaace4705 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab3d516b mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xae41236c mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb005ac02 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb068ce65 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb115e0fd mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb2a93597 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb2e7569e mt76_eeprom_init EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb31a266 __SCT__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc34c8fa7 __SCK__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc636976e mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbf2e3082 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbf3d29e1 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc3b19a4f __SCK__tp_func_dev_irq EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6f1d524 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc755acbd mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc90c7f07 __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcfaeeb45 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd15931f8 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd259d5e7 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd3941578 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd4a6ad2a mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd5460264 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd79de478 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd91c7cd5 mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd9b18acd __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe3dc0992 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc705618f mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce7b10bd __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd01258d3 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd2cd277e mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda2abbb1 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdaf340e9 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdbd2ac50 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe077672d mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe212e0d2 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe241de2c mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe2a91f4d mt76_txq_schedule_all 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 0xe5d8a508 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xee182e8b mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf50d7596 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf9ce55d1 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfd67186b mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x00413d94 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x134c09b3 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x23510d37 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x24e89e83 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2849a40f mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x28a9b83b mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2c0bd3cc mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2f78f385 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x37b70f1f mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x47d8e642 mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4bd0daaf mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4dae2290 mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4fbe6156 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x53af28f5 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6e934b6b mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7043853d mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x74300808 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x78b7fb16 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7c4d1ceb mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x834757bc mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeb1cb1c8 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xec51fa67 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xec81e10a mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xed08c02d mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef797b49 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf4610643 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf55d7de6 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf5801318 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf64bf310 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf843fdce mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfb950707 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfcc3d4c1 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfd0e04b9 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x011b4182 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x07c24b22 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0a8b97dd mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x101d1a46 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x112ed5d8 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1408cd82 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x16cb4607 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1c09950e mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x300b68ce mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x31c7cd19 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x34f429f7 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3e806284 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x45094dea mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x48ea2eba mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4b0d4a18 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5463a1d0 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5f64b619 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x61ec04e7 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x63cd7321 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6b33930a mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6ecdbf53 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x867aa974 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8a5ee349 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8f0e10b3 mt76_connac_mcu_cancel_hw_scan 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 0x91cdc7cf mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x984fd648 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9cf29649 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9d1027b6 mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa99a8ddc mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaee63567 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb7ae0c85 mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbb9285e5 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc26e9723 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc75a00bf mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcdcbbdfc mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcff27427 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd9dd726a mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xde12fd2f mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xde5754c9 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe512e507 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe7b770a4 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf153a2f1 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf1faec7a mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf2992b72 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfafbde78 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc2b2ece mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc52a56d mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9ba6bc87 mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xce64bf20 mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xde934ee9 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x231d8f9d mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x327e7194 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3e7d1613 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x54e0e469 mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5d38eefe mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x782fde9a mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9cd75e61 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9d9e043f mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb939d1e1 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x049704a2 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x17e5b45d mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2aedc871 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3b83870a mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4dd8ac8a mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4e23628f mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x585fdcc6 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5c54b80f mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5d6f77c3 mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x69eee5da mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6e15117c mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x75e83a6f mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x83574a0d mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8645786e mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x866ae601 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8a0e7fd5 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9cdccaa1 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9e476c92 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa48eadcc mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xae4f5ca2 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb00b8aad mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xba366005 mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc2e5717d mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc3985831 mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc3d2c5d1 mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xca1fb8be mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xce90c966 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe268a79a mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf9700cec mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xc8f0fb6c mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x90f95ca6 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa201a7ff mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa566c6bb mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa6f6271e mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb32ce6da mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb604599a mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbf6fee2d mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc3606cf0 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc53149dd mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd348acc5 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd3b67070 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd415499d mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdc317b71 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xde794f2c mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe40924ce mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe5a36835 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe6cb2fc4 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe87706a9 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf16101ef mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x179cf0c5 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xaf83ce9b mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xeb952a1c mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x20ee468b mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3cbac20a mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3d34e425 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x696935e4 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9f757b20 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc7e05d31 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe59ed361 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe9ab5e6f mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf72fe435 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x04a0ae17 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x04d329f0 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x11efe199 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1b4016d1 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x31a81f58 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x37bc9e37 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3f39be53 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5dc2facd mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x63a77dfe mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6d8c3720 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6e003592 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x84224ca5 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8847744d mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x902c93b7 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9684a17a mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9a83d49f mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9c46a253 mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa286d0fe __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa39b3ff3 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb7c68b13 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc35acc7d mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc6d0b9c1 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc8cc785d mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc90f11df mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd0bae279 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd72eb162 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe115978e mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe3c92d58 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf4b98e9b mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xf83bf827 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x04641359 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x06ea8a15 mt7663_usb_sdio_tx_status_data EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x577a0263 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xa5c4a972 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xb7811beb mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xfb71fd9c mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x3e486b90 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x77041cc9 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7d4a22e8 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xb2b213dd mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc4cdf0a0 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xfd64df3f mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x42621cd3 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x48730a85 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0aa72492 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x58104013 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5c605c9c mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9c794ee4 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xbcd7bee0 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf5686054 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00a467b5 mt76x02_phy_set_txpower 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 0x048df4e7 mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0b04258c mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x077be02b mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0be247f2 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 0x0eaac4a2 mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0fc97735 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x121b8918 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1ba9b7e9 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1eb5973a mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2789ece5 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2cbd7590 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x175c023d mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x19ec6010 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1ead61ac mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x200528ec mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2049f9e7 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x22c3a5f5 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x29e27f27 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2a98ce31 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2aac3714 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2c0ec686 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x33324142 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x350061b1 mt76x02_phy_dfs_adjust_agc 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 0x3a988a53 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4122ca0b mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x433d3c5c mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x46b7b3d4 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5571a9d8 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x365c388b mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x381e3f74 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3867d453 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3a39de9d mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3cb006ba mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3ddac605 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x40b173a7 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x41307145 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x458346c3 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x48270777 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4b7089f6 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4bada518 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x515cadf9 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5284e04e mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x553b6e89 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5866f980 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bc5f1f0 mt76x02_ampdu_action EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63979dd9 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x65187a64 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6a7e84ce mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d77250f mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x77bd6f83 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x77f53ad1 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7c435e64 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80204139 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8085f11f mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x828a9e32 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x85acb2e7 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8693fd8c mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a5ea7b9 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8fbc9893 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x617ef6f1 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x67d09f62 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6b8da84f mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7bc73c0b mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x801083b2 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8d108b9f mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f998bb6 mt76x02_init_agc_gain EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x942fea67 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x96fbf5bb mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9979bb7a mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99a48ee3 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9ce5a5ae mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa0612595 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa18a52fb mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa1d48e32 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa8bbaafe mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa65dd12 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xacdea03d mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaed1ecfa mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaf1bb0de mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xafe72e6f mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb448bc23 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb44add0c mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb4d5234e mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb75afe91 mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb814f8a2 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb9290d3b mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xba866667 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc056c740 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc463b72e mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc5689614 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcac9048f mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcb78a236 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd0da4bd7 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd0fda390 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd5743f55 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd9d4f85e mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe025752a mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe139679e mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe52c5e0e mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xec777f59 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf5eae55c mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfb0403d8 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfc08917d mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfcf2b912 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x38b444f5 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4653e84c mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x743d1c26 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7c047ef6 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x985118a1 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa38479ee mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa9c28b72 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xeb83e7d1 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x061f6743 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1440c4c5 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1eb682fd mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3b952bc1 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4f5af583 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x50bfd0e2 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x731cd865 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x81c40fcc mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x83f6dbc2 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x86142eb6 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x87fb114e mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9359c9d1 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9646cefb mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbe66bf1c mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd1196451 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdc2b6b13 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdc3c8dd6 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe0e7861e mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf4d33865 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0d2a39b2 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2322bc86 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4d9deabb chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x6252b8b3 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7b4832c3 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xcb85ed7f host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe62273c7 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x018bcaf0 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2622bd86 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2b7cb08f qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99b78839 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9f2ad235 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa164a849 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa70398ad mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa72ed54d mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa78d6a4a mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa7b21f96 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa2043c7 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb1edf647 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb4ebe759 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb6c9ba6c mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbfb90e9b mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc000c8cd mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc2ad6551 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc39e6574 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc3d992b4 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc6a11be1 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd8956df3 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdd1eddfb mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe76458b6 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe99e1881 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeefeddf2 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf4d5f5bf mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf5202a8d mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfd42d360 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xff9bf1f2 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfff2f582 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x08bec70d mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x20add255 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3dda4aee mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4397557e mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x8cb7afb8 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa1479607 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe086ba60 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xeaa17b56 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0a7f46d7 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x18a2d184 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3a0636e4 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4ef48850 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x52da9637 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x599f7aff mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6feacc93 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7312a2ce mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x82d1fe74 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9d57beff mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9e1d7bd9 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9f54d142 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb973e642 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbbc00656 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbe26fe17 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcfdd526b mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe7dd0522 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf4d72b8d mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfcf245fe mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x15123485 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x484e0806 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x5179b12b wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x75de22a5 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x9373fe49 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb5fc0674 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xd01f45cf chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0ad9c8b7 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 0x6059897f qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xaeb1c725 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe2212e1d qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x02653b64 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x026f911f rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x05ad9ed8 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x115b0ec3 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x18546415 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1ed002d2 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x216dab4f rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x219a654a rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x24774efb rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x24fa1d80 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x26862d39 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3565f251 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3fa4d5bc rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x41ed97ef rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4db7ffe6 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4fb525f5 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x556cc093 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x606f1b7c rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x62835cd3 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x62ebe949 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x64174316 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x690273ca rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6adff756 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6d710db5 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x796557d5 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x798c3a4c rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8994766e rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e91d58f rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9c33b30a rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9c70ae08 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa276ed07 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa4faf48c rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xac54b6a5 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb812447b rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb9cce9b2 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc31f48fc rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc62d1b9e rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcbd0a606 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcf5bcc1a rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd8e8ce26 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xea800395 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xec1f6699 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xec6b708f rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf86b6227 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x018facc2 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x081d7b4a rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x306b548c rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x3643ba8e qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x8daeb600 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xcd6b7225 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd9b88cc5 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe9f40a88 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x017685ae rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x028da98a rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x03ec224d rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x099c770e rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1307cda1 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x24ee61dc rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2bb197dc rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x30adfe3b rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x327a2bec rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x332a2bca rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3800c986 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x41a0fb14 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5210fdb4 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5452d1c4 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x57f7d093 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x620f5db8 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x689f10d0 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6cf37ddd rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x76468060 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7a37f276 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x845ee484 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b8db65c rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x91dd39f5 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x99062eef rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x997ab6b4 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9fa06baa rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa94ae97f rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaaa92d4e rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb9465add rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbe605f13 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbfce6c19 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc20c6f3d rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xca77a3cf rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcd61095e rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xda01ebed rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdb26a336 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xde027d69 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe139a234 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe7e74c73 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xea92f54e rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xebfe3d8d rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xef492a43 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf6985b45 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf7d3c2ea rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2653b480 rt2800mmio_init_queues EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x379d9aa3 rt2800mmio_get_txwi EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x42f4a5c8 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4342ee50 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4cd6047d rt2800mmio_get_dma_done EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x856ed524 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x88cc853a rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8d2eb45a rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x60e011b6 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x65736056 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6da1df93 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7a84c735 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7c961bd8 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8cc9e9e2 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x911efcf6 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x91227ead 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 0x99aa95be rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f23e9f1 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9ac6115d rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9dda400f rt2800mmio_stop_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa83a1fd0 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbdc5b20b rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc388e16e rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe1e6fe96 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf4d8eeb7 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x09e1dea0 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x10ab42c1 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x113db7b4 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x12b50d50 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1afa5283 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1db462a4 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1f37a3d3 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x216385a9 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2ca66c50 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2ce776b5 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3b665259 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3c1d653c rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3fb2de71 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x47c0a609 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x54f6aa9c rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x56d9d8e3 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5a77051c rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5a7d6321 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5c0b29fc rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x63d7ac90 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x652a6b68 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6b1d4497 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6c310c95 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7a1203b4 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7aa4ce19 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x83f1133b rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8b2e5788 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x940d6af5 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x941ddf60 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9467fd70 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x993109b4 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9dde3da6 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa061df79 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa5d5d7e5 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa83a5945 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb97e5adf rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbba29d7c rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc95081b5 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcc90d1b4 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd9233b01 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdb6b3c0a rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe424f316 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe5dbdd2c rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xea630a65 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeebd6d6e rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfca998ab rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xff9ea14c rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x02d076d4 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x72b6e04e rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa327914b rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc6485f30 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xeaee5e3d rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x35b96e06 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x6c29232f rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xd26031ca rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1362753f rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1d709e42 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x307f04f5 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x374d9190 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6a8c0fdf rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x717be8fb rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8eea100c rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x99ba8c8b rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa268812a rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb6f03d6c rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc5e17f00 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc9c11692 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xcbcc16b9 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd9d1f397 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe2d4a63a rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf99b6e42 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1245c269 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x84a16a12 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x93e77d6f dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9b8e51b7 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x096bb20c rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x23a598be rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x35647dfb rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f9208ee rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa20d8ca3 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd115db51 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xddc34bc3 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0ea07489 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1039e278 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x11ba13eb rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1b5a11b1 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1ff4c464 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2db4ba0f rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2e8b90a9 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x32b88a0c rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x363c892e rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x37b0cd14 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3def4524 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4add4f20 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4de05e2e rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4f106aea rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x53864332 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5588be9d rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x562b3db8 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x61bba327 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x62b051af rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x65d8dcee rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x80708975 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x832dcfd5 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x84f2536f rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x857e6f85 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x87e1c59c rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x896da840 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8a00673a rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9602d6e5 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9e0cfbf3 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa4b92864 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa64131d7 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaadbc1f7 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xab0a1ba3 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xae502da1 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaf6270bc rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb0a1ec8f rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc578f3f9 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcadd2b57 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcbf8ec98 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcc71b597 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd1509e10 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe1bb37a9 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe5950c58 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xec8febbe rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeca668f6 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeceb83ad rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf56fd665 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x068b3b01 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x76631487 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x8631096a rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xefe1e40a rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf43b5c61 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x1b75b2ed rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x9d6bb7ad rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xdd077d0b rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x00c86dd1 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x12359591 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x13d7016d rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x47074923 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4867f7f0 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x52bf6356 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5df9bb16 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5f07375d rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x89332b38 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9940eb9b rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa525b8ca rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xee7ab8fa rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf28cb9c0 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfa043630 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfa521a53 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfe3a7027 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9c6c59b5 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa26a44b6 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcd4ca675 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe8bf7392 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x02ade4d4 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x074a0f0e rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0d4fa1fe rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2186e364 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x250d70cd rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x26ad22a7 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2fbf30e6 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x35dea462 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3e6bb7c3 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3e90f5d4 rtl8723ae_firmware_selfreset EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x57055490 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x59e43ec0 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x73b78920 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x759c5448 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7aec0f12 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x47742b33 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x47b25d4f rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x56e2cde2 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x696d9fd0 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6e3de6e8 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x873588a4 rtl8723_cmd_send_packet 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 0x8dfe52b9 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9d93ac89 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9dd4c3c8 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa52c7019 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb888bc19 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbbe99b43 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc0b2cd41 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc78e3350 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcc1ff025 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcce95587 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcfbc2537 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe192f424 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe280252c rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe394101a rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeb544d28 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfbba7a7c rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfe687bf7 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0a357e26 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0c8fc61a rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10082398 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x187eb816 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c768241 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8fea3a89 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb0122192 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb62040a8 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc24f3a0a rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xce0e0571 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd4ac3256 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd4d9331f rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd8be5943 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf4740499 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x03b8df2b rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x078d724d rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x084a9f55 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10d4cec4 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x183e8646 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24cdd00e rtl_ips_nic_on EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d1cd49d rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x40d305b5 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4600d905 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30ebd5ec rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4cabe5db 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 0x5320c7f2 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x582d1292 rtl_tx_report_handler EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6fca8643 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80504413 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8419a68f rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c4b6ba1 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x91d68896 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7999b436 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x85f4f004 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90e88c62 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x91eb1442 rtl_init_core EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa292fd58 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8746caf rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6ddca14 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc2521ff rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc545d747 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc60678d9 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf8f4065 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd2782fd7 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xedee8f89 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfdcd3db1 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f20a623 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa570f2e2 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb673bfb9 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf3f4c94 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc08fcff9 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc4b84a63 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc50c3271 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcbb7cc6f rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd79aed19 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda1afec1 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdccc581c rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xde84ee6b rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xedb96b5c rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0cfa9327 rsi_91x_deinit EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3a738afe rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xba23fdb3 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xbcb936bc rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xca7dde06 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x20aa9dfc rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x2c07faae rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xab7a4d55 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb7c3cfbf rsi_91x_init EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xded502f1 rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x07eae8fd cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x37f9df25 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x933346ce cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xb46e32e1 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x2237239c wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x603054d1 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x68672fa7 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x036a24ad wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x04e8ccff wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06976647 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x23e12c77 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x30ccc321 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x63453d2e cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xb50a27a9 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xc3fbbefb wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xc9fc81e7 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd7c06418 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0088fef9 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x05652f1b wlcore_boot_upload_firmware EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0afe78ee wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1484b903 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1d95e4ff wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x155359ce wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x18b93a5f wlcore_free_hw EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x29f17c26 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f734c3e wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3070ede5 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f0c390d wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4682e33e wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x48c2d179 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4b5484f8 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5801efa0 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ab3a7b9 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5eb47251 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x649aba02 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x697cc9a5 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x779aef7a wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77d80af8 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7b74ba15 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x82ce1f6d wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x28f0dc1a wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d4a26b3 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x300eed12 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x41fd0322 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x45cffa82 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4c24cd15 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x52ceb1f0 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x54b9263e wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x55e6f89d wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5c230a50 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x605e98d9 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x679ff5aa wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6eccf2bf wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x732a3bbd wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x735626da wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7382a113 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77808a85 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7ae7a3c9 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7e4e8aaf wlcore_set_scan_chan_params EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x87702c42 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9489d6eb wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xacc10697 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaccf3971 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaeb01df1 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb3cdfe1a wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb3f6bb74 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb40b4b4a wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb7b2028e wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf0d6c78 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcd5dfbc5 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd03cf16b wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd3a4a28b wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd55c6f2f wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd9845d0e wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdbaa703f wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe01b6713 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeee0263a wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf8bcdc73 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfb3b9d0c wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe5bb98c wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d0dea14 wwan_unregister_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86bc6b9a wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8887beec wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8a2efedd wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d6b04a1 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9665fbd8 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaa243cf4 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xac9d75f8 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb76ca6b7 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbc77eb8d wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc4e5ed38 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc6d45784 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd19c0d5c wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd449d901 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdcabd970 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xde7e57c8 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xde9df1c9 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe0b08e76 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf0533529 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf5433234 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xff23ee4c wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x07303946 wwan_port_rx +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x331ac3c0 wwan_create_port EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d9bbf75 wwan_port_txon EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4f4df4a0 wwan_register_ops EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x91d50cf7 wwan_port_rx -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x97a7c0ac wwan_create_port EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xc031decd wwan_register_ops +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xf7208dcd wwan_unregister_ops EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x074b2933 nfc_mei_phy_free EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x677ccdc9 mei_phy_ops EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x7190e168 nfc_mei_phy_alloc @@ -16042,14 +16049,14 @@ EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2f8845fd nfcmrvl_parse_dt EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x377cc07a nfcmrvl_nci_recv_frame EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb947a65c nfcmrvl_nci_unregister_dev EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe1d20715 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3e6b22b5 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3facacf9 pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x55da4593 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8d34cc23 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xa25dd481 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x12e937f1 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x59ace700 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5c292f92 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6a98d226 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x878da8fd pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8f063e9f pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xaf13204e pn533_rx_frame_is_cmd_response EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xebbef4b3 pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf5138141 pn533_finalize_setup EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x09324375 st_nci_discover_se EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x31367a53 st_nci_remove EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x659fa225 st_nci_probe @@ -16078,56 +16085,56 @@ EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_c EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x17466ad4 async_pmem_flush EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x5075a0f8 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x000c6815 nvme_cleanup_cmd EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02fc8d7f __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x03ab0da4 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x07acba5f __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x09aaddb2 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0abe7a96 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0f9990ee nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x10968cd1 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x113113c5 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x198fe5b2 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1d39da77 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x23ec99b9 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2422a4ea nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0ec648ab nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x10e13515 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1466ce50 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x14e7de44 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x157d8c18 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1dffb3d2 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x25287285 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x34ea7710 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x396dd4cb nvme_disable_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bf2393a __SCT__tp_func_nvme_sq EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4352b8d5 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46acc0b0 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x485485c4 nvme_try_sched_reset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x597970a6 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5cee86ed nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5d182b9a nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6086bbac nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4f1d4824 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54212794 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54cb32fa nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5825908d nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x602c1b26 nvme_get_features EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x65070f05 nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x669f58cf nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x66e3c784 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x79f491bf nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6e30149b nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x74f38b9c nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7a060d02 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7e4ab697 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7ff29671 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x811e186f nvme_cancel_request EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x816c124a nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x836cc5bd nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x85959802 nvme_stop_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9687bdf9 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9fcec572 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa1b6dc92 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa24b11dd nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaa9e8f00 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xacb1b260 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaf7eaaa0 nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaf80f20d nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb562f566 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbeddc8bc nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc662dcef nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc96e8411 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x91883753 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x977051b5 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa3b6627a nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xab29ce24 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xad32a9f0 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xadfd76f3 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb67c8197 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbf85e6b8 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc190f16c nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc2cf0e69 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc689cf31 nvme_host_path_error EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc991c03f __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcbdacecd nvme_sync_io_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 0xd603c7d4 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd9073250 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xec420e1c nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf3be8e0f nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf4276cb6 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe1765360 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe2530004 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe970b29a nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf17a01a2 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf39539c9 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf7aaecd1 nvme_start_freeze EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x01beb846 nvmf_should_reconnect EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x32535cd2 nvmf_connect_io_queue EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3bedecbf nvmf_connect_admin_queue @@ -16140,24 +16147,24 @@ EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa21d1b7e nvmf_reg_read64 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe362484b nvmf_reg_write32 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xeb61ab06 nvmf_unregister_transport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x2d7a3769 nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x17bfbf54 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 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1e9c559b nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x00fac930 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x13dcd9bf nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2835907a nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2cdab7b4 nvmet_req_alloc_sgls EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5deb95eb nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x85343c48 nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9177156c nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9a0b8db2 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xaa2b68f2 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xab465d76 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc57184fe nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcb3419ea nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf11491c1 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xff35d269 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x539639d4 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6b6f6c75 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x89a1939b nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9e989e5d nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb2b06998 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb3600e89 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcb447b51 nvmet_sq_destroy 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 @@ -16172,25 +16179,26 @@ EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x09b5ae14 switchtec_class EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x8232b4dc mcp23s08_probe_one EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x9aca4280 mcp23x08_regmap EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xaab1e66f mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x25e37ac4 cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x3f732f48 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x222c41df cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x2d057152 cros_ec_sensorhub_register_push_data EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x112134ec wilco_ec_set_property EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x24eef51f wilco_ec_get_byte_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x6fb4b809 wilco_ec_mailbox EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x75bf4d33 wilco_ec_get_property EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x8b8ae425 wilco_ec_set_byte_property -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x8f76c163 wilco_ec_mailbox -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x003f031a ssam_client_bind EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x031e194b ssam_device_add EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x08ff49a6 ssam_request_sync_submit EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x26f135ef ssh_packet_get EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2ff2deb6 ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x36308079 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3d107ea0 ssam_get_controller EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x45db0e69 ssam_device_type EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x525d4ced ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x56292fa9 ssam_client_link EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5db828d2 ssam_request_sync_alloc EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5e37063c ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x67ac327a ssam_client_bind EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6b88569c ssam_device_alloc EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7b773a0a ssam_controller_event_disable EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7f913ba9 ssam_controller_event_enable @@ -16209,15 +16217,14 @@ EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbd5d EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd8d4ab03 ssam_controller_get EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd9b3f84f ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe71d5b90 ssam_get_controller EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf4de7282 ssam_request_sync_free EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfcd97503 ssam_request_sync_init EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x2bb352c6 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 0x0e2f3ba1 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x21e7b4e9 asus_wmi_register_driver EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x57c46ceb asus_wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xdcb7977a asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x9c05a360 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 0x199c0db9 dell_smbios_register_device @@ -16238,8 +16245,8 @@ EXPORT_SYMBOL_GPL drivers/platform/x86/firmware_attributes_class 0x4f63c5af fw_ 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 0x464fc8ef intel_pmt_dev_destroy -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x859fd31e intel_pmt_dev_create EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x9a8db8d6 intel_pmt_is_early_client_hw +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0xee549939 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 0x58a8261f isst_if_mbox_cmd_invalid EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x861369f8 isst_resume_common @@ -16281,95 +16288,95 @@ EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handle EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x0a0ed4ae bq27xxx_battery_teardown EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x26ba3013 bq27xxx_battery_update EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xaa1f668e bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xb86b9e93 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xec3a30a2 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xf666bba2 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x3d2e5ee3 rapl_add_package -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x5742402f rapl_find_package_domain -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xbf19a2bc rapl_remove_package +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xe5cf60d6 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xf4d7ae52 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xfdfa7b82 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x92d65bbd rapl_remove_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xefe39eab rapl_find_package_domain +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xf1dc409f rapl_add_package EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x38854b00 mc13xxx_fixed_regulator_ops EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9955a7aa mc13xxx_regulator_ops EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc8148cb2 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x25488c84 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2e990889 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7a99be52 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x945b8e70 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd797348a wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe6fb84cd wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0b0321f8 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x62bfef6b wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x853da403 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x927947c5 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc26dc23c wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc36e079c wm8350_isink_set_flash EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x43f415f2 wm8400_register_regulator EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x017c2de4 qcom_glink_native_probe EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove 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/rtc/rtc-ds1685 0x10c853f8 ds1685_rtc_poweroff -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x01e298ac cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0285f97d cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x077dc7ac cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x085fec99 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c84c000 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e0b7ce4 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1686a318 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1b2b0512 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x22c7372f cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x298d4bb6 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x335f60eb cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f523cc2 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x413ba72c cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42ffc08c cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4412beec cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4cf8be6b cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4dd32074 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x502325ae cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55b4e654 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5a1ec61e cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7812b569 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e22779c cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x41803b01 ds1685_rtc_poweroff +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00cf4129 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x07b4bc1e cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x109ca6b9 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1b45995f cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1df760c9 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1df888ba cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2b7adf03 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2cfdb6d4 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a530ddf cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x46ecaab6 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x586de7c1 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5d303803 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x62986629 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ad78563 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7268ec9b cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x799a47bc cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7b352364 cxgbi_device_find_by_netdev EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x83b54db2 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x890a85d8 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0d79e77 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa753eb90 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8be577d cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa90390b8 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xadf1765f cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb2f1254d cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbdb8b155 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbf1c5f15 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x863ee2d8 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x88883cb1 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8e31faa2 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x92ac4845 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9513f831 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9f006709 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa01386d4 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa3bb9648 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xae8deb88 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb13b5984 cxgbi_sock_established EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc3294af1 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc80bb5fc cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xca2c3e0d cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd6fb9efa cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd956f3dc cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdad83207 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb1a80bb cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xddcaea91 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe075af49 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5263625 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc0a58475 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc11b7509 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc62d9dec cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2fc3df2 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4d228bb cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe05564d4 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeb390cc7 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xebbeed2d cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xee6b4975 cxgbi_ep_poll EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf6311a22 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfae829cb cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x06975a8e fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x19d7d65a fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1a6d6f13 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1e80426b fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x283b98a1 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2b18cb69 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5359f1f8 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x781e8f23 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x861cd51a fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x92e13567 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef924dbb cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xefb96794 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf185c51c cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7dbc385 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf9a0026c cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfa036f18 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfb23f4fc cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfe6e94b1 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0bef00e7 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x120ad6a4 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x192734a1 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1b646a65 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1bb92bee fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x226e6997 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x31b253f6 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x46175673 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5594819f fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5b945e14 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x72b963dc fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x77bf5a96 __fcoe_get_lesb EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc0b247c8 fcoe_fcf_device_add EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc87c1a2b fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdd713314 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xeb085461 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf070fe56 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd1942e47 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd7e9f5dc fcoe_ctlr_device_add EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf5e622c4 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfb748cba fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x2e55defa fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x3d9c3aaa fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfb09f209 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x184545b8 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xf4d21b8f fdomain_destroy 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 @@ -16378,215 +16385,215 @@ EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa0772fdb iscsi_boot_create_ac 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 0x905b0a32 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0173334a __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x025b19ae iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0570f716 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06878428 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b55193b iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01d32770 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x04cbf67c iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0692e884 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b362000 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b7f54d6 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1132428d __iscsi_get_task EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1ff3ac8d iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1fff5c01 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28d93b29 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c234457 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x30264f99 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x352fda1b iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x35edb8f0 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23a3da73 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2970c4b6 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29e69685 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33676f0f iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x35d6a579 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3a1a3b27 iscsi_itt_to_task EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e08eb50 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f2c738c iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x419450a0 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x475d86c8 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x47efdd29 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4e656550 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4ef8f84a iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x56d674fa iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5db1c455 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5efc4068 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6760fc86 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6877cbab iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69ab1227 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d5e4249 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70c77ec7 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x837404e9 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x83bc9f88 iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8732bfc4 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d85453f iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f27a983 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x426c6eec iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b27f28c iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54044b64 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x560acf15 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ac20032 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5e609aa7 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x71cd6d6d iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7264001f iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ee271cb iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7f9accf4 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8193032a __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x83be48c2 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x85c50da3 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x85f0f51e iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x894e2a95 iscsi_itt_to_ctask EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d6ef5e0 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e9fd8e9 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8fb2e97f iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa59d886a iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa93e8bee iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab35b907 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb266d318 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb362156e iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb4647a26 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc78a70a9 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc8c8a64 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd0c7afbe iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd56972cf iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdce3597d iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8fa2c07c iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x97a1e8ab iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a4ec029 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa18badbb iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc218ff18 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7836301 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf132a0e iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd727afff iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9ffb0dc iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xea54dc35 iscsi_suspend_queue EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xecbc8ec4 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xecbd69b5 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeebce3d9 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xefbe4105 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x25fd6bc7 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x35d721f4 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3680bb47 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3ca875be iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x47f8b899 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5fd7e351 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x71f7fef9 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x750cae29 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fb5cb71 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc6c369e5 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdcbefd21 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdf5a6bf3 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe933425c iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xedadbcce iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf36b8a33 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf54ed48c iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xff2ffae8 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x02c6ec16 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x03d8ebb4 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb5055c7 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xecd73598 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xef43c9e9 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf280b298 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2cf781a iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf40e5f13 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf70eec25 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf8ea27c8 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfbbd9140 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x06e3742d iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x26bd1c3d iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x28305848 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x36d4f03a iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x37f9b8cf iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x53cf4108 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5b78b773 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5f503bcf iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6baacd2f iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x890bdf76 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8fc301ce iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x90782247 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa36bc951 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaf657a51 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbfc33b25 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc798c750 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf88ee08c iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x03661504 sas_eh_target_reset_handler EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x04a4830c sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1394bfd9 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x18bbcffa sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1ffb5fdc sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2694d094 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x290b1096 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4229713e sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4cc8f39b sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x547b3b0b sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x57791233 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0edcee41 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2d223b9c sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2eb9a78a sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3eb5e7f8 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x402ed1c9 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x427ad402 sas_get_local_phy EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5a6af832 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x61eacd82 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6aa2d8d1 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6aada16b sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x705e3fc9 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x766b1bf7 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8d2ea144 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8f2214f5 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9058bda5 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaac4a38b sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae27774e sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbe6d20fb sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe4fb00b6 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeb47867b sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfaac855c sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x711da2e9 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x007204f2 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x01edf9e2 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x023a8477 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a6975c5 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b3ec3a7 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b7348b9 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5cdec6f6 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6437c362 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6b8f6cf7 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x74574191 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b13cf88 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7c7ac594 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x894b261e sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8b5a42b4 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x919d48dd sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbdf2e461 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbdf3722f sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc2c07fd2 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcc0f66da sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe0bb2203 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xefcca5a8 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf05a0f74 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf778f75f sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfdcd3701 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xf6dcf67e fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0374d11c __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0700927c iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b766bf8 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d76ed8f iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14720266 iscsi_put_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15dc8bab __SCT__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1db3d490 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22f6a708 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x27d3965a iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32291a57 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32d0d687 __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3c3b110e __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x43dc25e4 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x46ce82f2 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x499ae8c6 iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4da2bf74 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x519a5dd2 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1665fb2a __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e259b1b iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1fe92db4 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23db77ee iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23e4ca6a iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x262c2425 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x266d6f20 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31800610 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x33355323 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c3321f9 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ce6d099 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5065a070 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x520bf05c __tracepoint_iscsi_dbg_sw_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52575134 __SCT__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52d5af9a iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57dde83b iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f693641 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61df1641 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6229d672 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x659f73f5 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x678eba76 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52c78380 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x555c5e21 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5607eb31 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5c96a09a iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x62422c2d iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x63fb7315 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x646e065d __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x66780d52 iscsi_force_destroy_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e2f659c iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e98309e iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7a041bdf __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ae3a61e iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x843d7d23 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6c8ae127 __SCK__tp_func_iscsi_dbg_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d79ef48 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e9bbe9d iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x92562441 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x96833469 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x976a256a iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x99cddf28 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b884f77 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1318654 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2291b15 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa6093600 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85e810fd iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c9553ec __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e7296df iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x948cdcf2 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x951317d3 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x952a5dbc iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9530e271 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3256594 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa39bbe40 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3c386a0 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa40561fe iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa6d33c0a iscsi_remove_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c4b5e1 __SCT__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xabf1643c iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac2d124c __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb20ac06d iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb2981df4 __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb2e18f4e iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb66e6a28 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb94dca1d iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa02c8fd iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac5ee814 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaef771d2 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xafb25dcc iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xafd12b72 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3d8c491 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb80227b3 iscsi_destroy_all_flashnode EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbeac4605 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc641fa04 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc721425b iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcce3b901 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcdba4e3a iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6734b79 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdecade3e iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbeb958b1 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5c23f01 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce0ac88e iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1fdcb61 iscsi_find_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf515c49 __SCT__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeab0c13f iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xefa045c7 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf0529a04 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf303e22c iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8621acf iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee7e7856 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf0b3ab83 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf238d421 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_iscsi 0xf8d973ea __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9d5983ba sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd45cb233 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd5a71bd3 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe921bd26 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfa3d49fb iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb0a30f9 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfef9a5a6 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xffcac565 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0485f142 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x38cc3390 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5393f5ba sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa338f645 sas_enable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x6ea53f3e spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x82a129a3 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 0x069ab287 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x05332f79 srp_release_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x25113c26 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x37aebddd srp_rport_add EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4a61d8d0 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x533e17a6 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x865d0bf5 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xdedd848a srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x156e600f ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x161000cf ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1fa594b9 ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x254651ae ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3bd8d30d ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x77a6fb2a srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xed08926c srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0590cb77 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x16a549d1 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1760e6a0 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x183b930a ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x20c18e22 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2680e9e7 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2c2264ca ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2fad04e2 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x36e9b618 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3bfa648e ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4bbeaa46 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5bf7437f ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x63db37ec ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6866ed58 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x690063e0 ufshcd_make_hba_operational EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x79198365 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x79e47164 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa242db76 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xacf21034 ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xaee74c9c ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb83e11e8 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc1107c51 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc31eb31d ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd7a3e19b ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd9b45dc1 ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe3cfd771 ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe40ba425 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf0a8939a ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf5afa5c3 ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfe0ee9e4 ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x4b7454c0 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x755f155f ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x98c0c581 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb1877813 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe25c3879 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe4490f8a ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2cc452a2 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 0xcddc1655 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xfb6a8e21 ufshcd_pltfrm_init EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x14b0d91d siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7f99edd8 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa3242637 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xe007b042 __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xee7146e6 siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf86f1f27 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2d5cb65c siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2e79903f __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x54466a91 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x63808dd7 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc0d91ee5 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc707e524 siox_device_connected EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x10bccbd1 slim_xfer_msg EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x129ee352 slim_device_report_present EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x16335ba0 __slim_driver_register @@ -16637,24 +16644,24 @@ EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf9528b60 dw_spi_dma_setup_mfld EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x2bb058bd spi_test_run_tests EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x77e6888c spi_test_execute_msg EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xad0ab9ce spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x21c11df4 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x272feb89 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x31a379bd spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3571c74a spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x40dff72a spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5471ff58 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x76e601a7 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7d705894 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x87165b8f spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa8e8f1bd spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbac79db8 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbdecd143 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd7598248 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd947bd23 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xde7d51fe spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdedd34f6 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe4b9cebd spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfe8a0b81 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x048ff2be spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x48672138 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6072d178 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6201006a spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x630c0107 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x670b7494 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fbd0200 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x88955421 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x90571309 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x90a6017d spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x927a3124 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xab4d352d spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb6ff7c66 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbb3a0c0f spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbce69b49 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc2661887 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdcbf50d4 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe53c0964 spmi_command_reset EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x12887b7a ssb_pmu_spuravoid_pllupdate EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x20c72c05 fieldbus_dev_unregister EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x34e00b33 fieldbus_dev_area_updated @@ -16710,10 +16717,11 @@ EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xac8 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 0xc35727d7 atomisp_gmin_register_vcm_control EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xc74cff56 gmin_camera_platform_data -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x3a1dd9cd target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x421e6173 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xb9ad0656 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xdf31d418 target_queue_submission +EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0x4e133458 sp8870_attach +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x4b20ff11 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x4e143c81 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x775ab66b target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd4dc4108 target_submit_prep EXPORT_SYMBOL_GPL drivers/tee/tee 0x04457a78 tee_device_unregister EXPORT_SYMBOL_GPL drivers/tee/tee 0x0ca09f38 tee_shm_put EXPORT_SYMBOL_GPL drivers/tee/tee 0x1608d76c tee_bus_type @@ -16802,21 +16810,22 @@ EXPORT_SYMBOL_GPL drivers/uio/uio 0x1da6ee15 __uio_register_device EXPORT_SYMBOL_GPL drivers/uio/uio 0x5bb5d75a uio_unregister_device EXPORT_SYMBOL_GPL drivers/uio/uio 0xbc8b7645 __devm_uio_register_device EXPORT_SYMBOL_GPL drivers/uio/uio 0xc084aa7d uio_event_notify -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x1570a705 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x509b977f usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x25a5ea67 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x278bee77 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x4e3324d7 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xb0b9005a usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x29d5f555 cdns_init EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2cd1677e cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x36281143 cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x3acef890 cdns_init EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x623c3904 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x62b5d9fa cdns_remove EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x72f5b33d cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x75002461 cdns_suspend EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9ac94193 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xc3de8964 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe85f73e4 cdns_set_active EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf95725f5 cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x03d5d2e4 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x0760576e ci_hdrc_remove_device EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x321f2695 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x955c4f2c ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x9ab8f0d7 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb8e3b023 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xe7991575 ci_hdrc_add_device EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x264e53d9 ulpi_unregister_driver EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4fe1ed9d ulpi_unregister_interface EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6f7d6008 ulpi_write @@ -16833,23 +16842,23 @@ EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xddd7c04a u_audio_start_ EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe087358f g_audio_cleanup EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe1ad206c u_audio_set_mute EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe8df31eb u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0bf83781 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0f75f5f7 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x186cee9b gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2354d741 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4753611a gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4e3f819c gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x567c9682 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x59a405a3 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x049a3e90 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1529ecd8 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3f681d4b gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x56d7eeea gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5c358701 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6b797530 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x79ca615c gether_set_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8e7fbda3 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x98e606d7 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9fd5b092 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa3c3199a gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb7adced8 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xed562169 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf396e3af gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfb29f122 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9649c7f2 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9dc37053 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xac0a984c gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xacf5680d gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb6b874be gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbb7044be gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd8070f32 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe69c0d4a gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xeda9399d gether_get_host_addr_cdc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x1813f456 gserial_resume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x1d52ed58 gserial_suspend EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line @@ -16902,21 +16911,21 @@ EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd26efa47 fsg_store_cdrom EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdf388fdc fsg_store_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 0x07ec95c7 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x091bba9a rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x104d6154 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x19b0aaed rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2d3d65b8 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x36ac2990 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x655ed9dd rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x813e4cb0 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x917425a9 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xac4ccef3 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb26ea136 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc08a20a4 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc123a326 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdd36159a rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf84f00ee rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0978ea44 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1905c972 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2376445f rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x31e94c10 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4672bb37 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6c8b937c rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8b200280 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8bfbede5 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8fbd0103 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb9f76f83 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc8fd2813 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd2ea0d80 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe4d1a6ae rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe9a5475f rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfbeebfd1 rndis_free_response 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 0x1014f5af usb_add_config_only @@ -17012,15 +17021,15 @@ EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfbc0b820 usb_gadget_deactiv EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xd2887209 renesas_xhci_check_request_fw EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x6601c78d ezusb_fx1_set_reset EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xf6176907 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2f9731e9 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x39975545 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4c3610b2 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4ec1acaf usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5004cfdc usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x65dd26dc usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6d5ee4a1 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x96e80037 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xaf9dcb8b ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0b75a1fb usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1f916e02 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x57c1bc0b usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x70e96c36 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa57f81ff usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xaaacec3c usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb06b33e6 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb91a65f9 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfd481785 usb_ftdi_elan_edset_setup 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 0x1bf29b2b musb_interrupt @@ -17037,9 +17046,9 @@ EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc0da522a 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 0x31d309c4 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x3c3a55c6 usb_phy_generic_unregister EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x53c47530 usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x66ac1cce usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xea6e678f usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xed88c9d4 usb_phy_generic_unregister EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xf14aa6f3 usb_phy_gen_create_phy EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x6cb26105 isp1301_get_client EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x1194d63c usb_wwan_port_probe @@ -17108,7 +17117,6 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x659391c5 typec_partner_set_identity EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x68371ad4 typec_partner_set_pd_revision EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6a227f4c typec_set_data_role EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8153a505 typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x81693ad4 typec_altmode_attention EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x81f724f5 typec_set_vconn_role EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9358da72 typec_register_cable @@ -17137,6 +17145,7 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2240cea typec_mux_get_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd3b396c6 typec_unregister_cable EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd6a902aa typec_cable_put EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd7d95e38 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe26a2966 typec_altmode_attention EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe73488b9 typec_register_partner EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe73810b6 typec_unlink_port EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe7d07b6b typec_mux_unregister @@ -17154,31 +17163,31 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x4f8ea181 ucsi_register EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x5da0fde3 ucsi_connector_change EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x877aa525 ucsi_send_command EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf714a905 ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x215dc3ad usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x03c8a8ba usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2ff266cc usbip_recv_iso EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5498d4b0 usbip_start_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6d1faaf4 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x733ffa32 usbip_dump_urb EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x815ccc2e usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x95d9d8a0 usbip_recv_iso EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9d89e149 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbaf9e712 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc5d08c62 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc904c8b4 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb5e1ef30 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc05f0489 usbip_pad_iso EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcee545d2 usbip_event_add EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe2403d01 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xff604f1b usbip_recv -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x19e0f707 vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1a60537a __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2fb1d090 _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6193a22e vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x82e004ad vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa135edc7 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb0d5a6c9 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc4dab9e1 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc6c06053 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xec6d5a5d usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf15c7094 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf2119127 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf341e0d2 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0e78e174 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x36063abb _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x38d9fb6c vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3e8a3a0b _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9f0294e7 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa17c5e22 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xad6cf6e8 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd20ceabe __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xff85942d vdpa_unregister_device EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xab9398fb vdpasim_create EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x15cf81e7 mdev_bus_type EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x08fe4386 vhost_dev_set_owner @@ -17295,348 +17304,348 @@ EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xd3dbc479 dlm_posix_get EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe0cad73e dlm_posix_lock EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x03064f0f nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x19642bd5 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x291fb8d3 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2f92aee5 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x42c10217 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x136009c1 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x21c481e3 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3c57eb8c lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x40f08378 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6e1dbe9b lockd_down EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x85c00d33 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbf965ace nlmclnt_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0074cadd nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0151aaab nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02251379 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x919e460b nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb79bdc29 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x004a932a nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0158db38 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01f7afe5 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01fe9361 nfs_getattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03b87280 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03c9f5bb __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05452059 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x067a8705 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07108685 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08178451 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09651f66 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09fe7e80 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a90a5bd nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b51e87b nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0caff3da nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d403ef7 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f2a2fa3 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10937f05 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06a4306d nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06cd0401 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b638766 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c1e43df nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c8922b0 nfs_request_add_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12149788 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12bc39a0 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14548796 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15d1bfd1 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16a4b231 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18b5105b nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b2483f7 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1eabeac3 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20caa224 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20cc1310 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21568a67 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x224f0bec nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11dce2e2 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x122fe268 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12500159 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x129e6a9f nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13ab1b9d nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14d97374 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18dd07b9 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f38377c put_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23b0edfa nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x248d812f nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25349ab9 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26620343 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x266746d6 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23f52788 __SCK__tp_func_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x270bbd44 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2921b092 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e772a32 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ef2bf87 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e316e6 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33ca3e00 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x368116cf nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36acc2d8 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x299ce06d nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c305dd1 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c841084 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f09a6cc nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fac3970 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x302d3f7a nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x311d2042 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35bca372 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x364f04f2 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x367b8265 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36d926b0 nfs_free_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37239e6d __SCT__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37e78fba nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x399c04d3 nfs_may_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c3e876d nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c940e66 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3eaee056 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f0a2d04 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c89cc9a nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ccefc95 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e0b604f nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3eab237a __SCK__tp_func_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3febe0cb nfs_request_add_commit_list_locked EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41c65232 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x411558de nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x414802fc nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41bbc0fb nfs_sb_active EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44811cbe nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x469e908a nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46e64021 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x473d6998 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4aa8fe24 __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c87b882 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4314772a nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46b68e4a nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x480b6137 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a2a1fd7 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c1a1c43 nfs_pgheader_init EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fdc84cd nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50b1c39d nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ef7437f __tracepoint_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x534c2324 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54856ae9 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x567c800e nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x543c1e2f nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54809872 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55c7eeef nfs_server_remove_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d7ded7d nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d982374 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e67fbca nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e6d7f94 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6013b3d0 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6316f522 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6378e7ef nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x651e7940 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x669a5c0d nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x683c0145 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7076b628 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7444298a nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77063943 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cd25ddc nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6026d8f0 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x609c1ede nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61f43b41 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6424c93f nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64f90fbd get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68f7daa3 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b48541b nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bd91ae4 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dcf9f47 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e61d988 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ec3dced nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70fed324 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7202d238 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x728b1cc3 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72da0e42 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73806823 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75016b2f nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75235e0e nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x764e71ad nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76b83018 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77d4d0a8 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x787b546f nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79e794ce nfs_client_init_is_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ddeefa6 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ed5b9b3 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82cffdcf nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e7cf1e2 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f0c96e0 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f931f15 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8000278a nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82177a9e alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82b90f03 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8328d4e9 nfs_wb_all EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x835458a1 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86dad6a5 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8833f431 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x895ddb3a nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fa12203 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x906a787b nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b7a3716 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c825bf5 __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d8b5fb2 nfs_setsecurity EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9388ab58 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93f72f72 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96271007 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92f40594 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96c30439 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x982a5fa2 nfs_symlink EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c1b5974 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98fb9224 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9aa27e46 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b1b4550 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cc607a0 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d4073fa nfs_pgio_current_mirror EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0145549 nfs_access_zap_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa294fe5f nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2a2ef4d nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4631801 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa74ba567 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8d61b23 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa20caee8 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa708a739 nfs_file_mmap EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8f80ad3 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa90621cc nfs_create_rpc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad4529e2 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafbe9a01 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb043039d nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb109a6de __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb65dadf7 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb80f806b nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba15a195 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba2f20a9 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba801dbd nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb825ec2 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe5e626f nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0a31010 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc13c5e65 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad33a793 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae37a66a nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf6e3160 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb128dbf9 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1c3dd94 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3b3df7a nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4c9a7bc nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5650145 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb568ab08 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5e578cc nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8ed1c5f nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdedf879 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbedd3cc0 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf162847 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0f45f48 nfs_writeback_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc15ed992 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc191421f nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc237f61f nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc326531c nfs_fscache_open_file EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4c8f5c0 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5154e8d __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc57499e1 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc67dfed3 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7a47053 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc87222f7 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8ca0c37 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf19fcf6 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcffbbd06 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd04322b3 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd22fff17 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd40c8f22 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd858420d nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8a3b38e nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd93c67b2 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda25c425 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda76fe3d nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3d1ea3a nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc92ba0b nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd8f449e nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd206fc5f nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2962a81 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3917f20 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4f9a539 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd58bbda6 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd78fd84d __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd80dba15 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8f1a08f nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9c437db nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9f6a204 nfs_alloc_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdba43418 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde778ffa nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf53744a nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1e0cebe nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe235b1f8 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe28bcea9 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe383a87e nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe959de81 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe972b87d nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea58814e nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec85c29f nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed0de76b nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed64c018 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1cc2aee nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4b54479 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4ec688e nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6b10c4e nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7009eb4 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa2976c1 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb15cdf2 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd0feee5 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdeafa58a nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2600632 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe54a0fb4 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe791843f __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe870c554 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92fddcc nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9b5fbf2 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec84b849 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed184c3a nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeebc666c nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefb9e1a5 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf35e5e09 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf470d182 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf605644d nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8327c0d __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf865a99e nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa3c9c35 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfacf80cd __tracepoint_nfs_fsync_exit 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 0x54b26bae nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x024f8c65 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02c7c733 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02c7e00c pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x035c54d7 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04682748 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04b8876b pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054ab1dd nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x5b1d4aa2 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x003c8cbc pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01cda2e9 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x027355cb __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0287b76f __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02e776d7 nfs4_pnfs_ds_add EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05776a59 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x079dcbaf pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07bd4931 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0961c3d3 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e30acdd nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fef005e __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1315a7a0 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x140f5462 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14c870cf pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x078e5cbe __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0877dc93 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0973a593 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d473373 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11f278fe nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x174b3342 nfs4_mark_deviceid_available EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f287fb8 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22d58394 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x230b2485 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23428f2f pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23b9e2d0 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23efbf69 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ac3aabf nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18f59947 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c3171c3 __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c364930 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c428df1 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ed09dca __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x217c3a74 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2343a8ce pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27285fc3 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28d6dfad __traceiter_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2cf6584e __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ea53754 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f36315f __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2fc19048 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35498d38 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x365d38e7 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x390761e0 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c2d2a59 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e501974 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x42779a7a __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43e79893 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d5ddf70 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d6bc65e pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d70d923 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e073e6a __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x508300ca nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x52d42b5f __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x536e501e nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b364e54 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e0245a0 __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5eddf1ba pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c51f0d6 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e8d85e5 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f4fa1dc nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35c2895b pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x381d1aa5 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39c2afed __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c66a78a pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ea1040b nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4452de88 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x47210a8e nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x47b2fc91 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x482d72d3 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x486d40b0 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f5bdf31 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f6c16af nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51b4ff20 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56e5a765 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5733f0a1 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x577aa314 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57d0182e pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5937e282 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b89efc8 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c0c64a6 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c389d8f __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5daa4db2 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e1e005b __tracepoint_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x60904af1 pnfs_generic_prepare_to_resend_writes EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63826d35 __SCT__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x658d2598 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67e5a318 __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6981568c __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69ce9840 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6616a94b __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x697ef845 __SCK__tp_func_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69e77cdb pnfs_generic_pg_readpages 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 0x6a9a5a44 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70a79eb8 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71219493 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7495f705 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75bf8ded nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x795503b4 __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a2b6d60 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6cdae77f nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d2f824f pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f035d41 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7016771d pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x701be9bc __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x711c114e pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7161e03b pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75c960c5 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x791d3fa2 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c9646f9 __SCK__tp_func_pnfs_mds_fallback_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e42bd3f __SCT__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e809aed nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fcbfaab nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80a2e167 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8125f255 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x858eff64 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8de5f58e nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e292ccd __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92955664 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92d4aac3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8182da79 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82527607 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d3ffad9 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8dfb0704 __tracepoint_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930a94fd __SCT__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94ed1e4f nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9641e4eb pnfs_layoutcommit_inode EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96c4643f __SCT__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9cff67b0 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f59efc6 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f883580 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa047d2fe pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2d33a54 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa34a0043 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3cc9542 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4907e54 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa73cd63c nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7d96c4b pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9767bb1d __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x986c41cb nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99f4b5ef pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9fe171f1 __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa07e4fe6 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2cf9345 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6a28655 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaae0eec5 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xacbb8bd0 __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad70bd03 nfs4_test_session_trunk EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadeca730 __SCT__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1162b5d __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4b418da pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4e7249c nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6872a22 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb68c8be4 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7d05d11 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9640440 __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbabab97e __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc083893e pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc112bfcc __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc19876af __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7071759 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9824ce4 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb985fb40 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba710d16 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbce06ee9 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc147ac8b nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc17548d9 __tracepoint_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc38ef818 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4160f2c pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc47992d4 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8e69da2 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4c8eaf8 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcbce19de nfs4_schedule_lease_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd393d767 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4ac3b20 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda0f7a39 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb782a04 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcff26220 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0c3d543 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5082e27 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd626253d pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd951d3e6 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc8bb94f __SCK__tp_func_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3f0bbb4 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3f62662 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe814c55d pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9758416 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea181b0e nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed12f23c __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe053f33e pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1e1e3af __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3accaec pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5b3ef0b pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7bf06ef __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe91a641e __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe948626e nfs42_proc_layouterror EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1bd262a nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed1bfff8 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed85554e nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef62f35a pnfs_read_resend_pnfs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32fa2b7 __SCT__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf58e94d5 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf56da6ad __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5cd74f5 pnfs_put_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7892836 nfs_remove_bad_delegation EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe7f5984 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff710294 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf99dda2c pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe238d2c __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xffa48be7 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1d31a050 opens_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x2842d508 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc7bccfbf opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xefcbbb00 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x2cbca4f9 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x737542cc locks_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x24ea16a6 nfsacl_encode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x2bd8b66c nfs_stream_encode_acl EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd2c749a7 nfs_stream_decode_acl EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xea81fce0 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x21d79435 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x0586a221 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x13d2b852 o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1e4e4f86 o2nm_get_node_by_num EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8050c170 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6eb3ad9c o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x730de46a o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7723dabc o2nm_get_node_by_num EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x82013b18 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8ba86096 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8bff3957 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9d363ac2 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9e0ed85c o2hb_setup_callback 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 0xd2b917d3 o2nm_node_put EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xda6fe0e3 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 0xf95fabb3 o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x14c9b2ec dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x53be9e98 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x54d4c694 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x70ca0939 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2607e023 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x386746c7 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5c264776 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6f4c0dc7 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 0x977f13d7 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xca9bf70d dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x8d293696 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 0xd995582c dlmunlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic @@ -17695,1065 +17704,1065 @@ EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x63adbf92 encode_rs8 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 0xe15b9c0e lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xfde75311 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x07c4f913 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x106b1df3 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x21c969ae garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x915e6488 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x9b750541 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xd8d1bb81 garp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x08029d2c mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x1c03d2c7 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x52896b51 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x5c32765c mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x6f9acffc mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xa5e24133 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/stp 0xbdc46b57 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xd3eb512f stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x0784e15a p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0x17f7212e p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x1ed35ba8 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x88811076 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x1dd23e66 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x2e0e0778 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x62077aa4 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x9c33b354 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xb5140111 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xcb6b8b1f garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x27dcd3de mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x298bae92 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x3cf72891 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x489bde70 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xea5f1222 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xf139a46e mrp_register_application +EXPORT_SYMBOL_GPL net/802/stp 0xd37051d3 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xf557ba73 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x55d713d3 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xc0ec2aaa 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 0x0d94dde6 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 0xb5fcb906 ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0638517e l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x35f3bb8c l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x64bb71fe l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6e0a4e2c l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x792c0319 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x86aaebe4 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x99ab13a4 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9e27b90b l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe9294a0c bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x1448fe17 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0aea1b2a br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1d4c7bd8 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x23845b39 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2d48c02c br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x423de56a br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x45653edf br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4aa96ed2 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4c465c21 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4fdc0111 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x50f68ae3 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x51c9485a nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x616833ee br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x68693eaa br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x79595fd2 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7d89e104 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xad926648 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb6e7b484 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbeb9ab40 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbeec1a17 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe4977adf br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf146cba7 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf8a53792 br_forward_finish -EXPORT_SYMBOL_GPL net/core/failover 0x7a877d91 failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0x7b1b821f failover_register -EXPORT_SYMBOL_GPL net/core/failover 0xa591f369 failover_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0781beff dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0d402f2b dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x11aabd2c dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x12584b3a dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x15cba7ab dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1643c6c7 dccp_insert_option +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x28e883be l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5eefe4f6 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6df7f013 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x77549f99 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7a6762f4 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x80ba2c7e l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x861139ef l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x98abb434 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf1839051 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x0265e028 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x00885bb1 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0aeb65e0 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x199f1cb8 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4e8c0541 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x502a26a5 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x54e913b8 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5593b243 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x61591ff7 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x77e3c2a5 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x85dc40ae br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8631bc80 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8caa5888 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8f2c6e51 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x98942bff br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x98ef5f25 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9a0c5267 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9b0e52bb br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb8546a0c br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xba9fe1f6 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xce56a11d br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xec027be7 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf7d0e138 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/core/failover 0x334ed312 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x814a57fa failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xc7ff6406 failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x069a2124 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e4fac9e dccp_hashinfo EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1c555709 dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2271fa27 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x24a9f2a6 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x339eb715 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x34f3a350 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x38e700f2 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x41512fba dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x48755287 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4b1a87f9 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1fa9703c dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23598c35 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d977260 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2e0bc3bf dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x30ae7df4 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x33852b58 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3607f8a8 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x41f059a4 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x462ee734 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ac089fa dccp_insert_option EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x54467c76 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x52a9a832 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x537aedb9 dccp_create_openreq_child EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5a850a71 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f26d66c dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x636f24b1 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x78bbcca0 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e46e64d dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e83e1e9 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7aed1e3f dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c165049 inet_dccp_listen EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x850ff4c2 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86065381 dccp_destruct_common 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 0x92d3ee66 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8f471dea dccp_sendmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f53e03b dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1467d4b dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbb01de7f dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbebc67f9 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf9aff1e inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x95e8390e dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x99d0bff8 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9a98d24e dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xac1b4336 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbc48336b dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc07c15e7 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3787096 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd2154895 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd72767e1 dccp_poll EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdde6f446 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe450522d dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe7b57c3c dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe9e07c7f dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf4c423d3 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0360346c dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0b489aa7 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x34b3a7af dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5b689baf dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x76bad399 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8c178861 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x03f258bc dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x05238c2a dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0abdc859 dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0ecb0dbe dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x191fc37e dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1efbde06 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1f7a7410 dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x23a91cd0 dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2843e3e5 dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2b5a4b2a dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2d0e3359 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x39f145d0 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdb779ee3 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf95bf730 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf9e0f4d8 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf9fd635a dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfdcb0cc8 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x18d1b0bc dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2d8b43e6 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8cf42762 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x98cd6ce0 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb93c95dc dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd0121f22 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x038d6b71 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x04786798 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0499a2df dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x12063d89 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1e71c688 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x25216ae3 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2d645ab5 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3eddcc58 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3f21cfb6 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x40ecdda5 dsa_register_switch EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4ac9a4e3 dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x507ad523 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x57fcfbef dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4a7a2acd dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4ee7cc8b dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5456555c dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x56358cec dsa_8021q_rx_vid EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5cbd5b3a dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5df43192 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x65f0d281 dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7b12ebfa dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x95a67cc3 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5ac11370 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6c82d4de dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x93f5cd3e dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x98781c58 dsa_devlink_params_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa0fea806 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa2102332 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa41d18cf dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa931b85b dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xab3496a0 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb5f001f5 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa12bcdf5 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa96d9ae1 dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbc897964 dsa_tag_8021q_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc1b3e3f0 dsa_port_get_phy_strings EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd03d853d dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd24580a1 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdc2474be dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe28b4f6e dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe2d02187 dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe671661b dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc55d2aa6 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc617fc96 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc8aab4cf dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcee568d4 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd138495f dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd5bfb291 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd8fca8a6 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdc1f8eac dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe3a85ae4 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe8a35858 dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xec3be929 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeee341c4 dsa_devlink_params_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf684545a dsa_dev_to_net_device EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf85ed72e dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4ce7c022 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7e41cdc5 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x805a073f ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6f6ea95e ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x830e336d ieee802154_hdr_peek EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xe6f24528 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x98dd7fc3 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xe1584af4 ieee802154_hdr_push EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode -EXPORT_SYMBOL_GPL net/ife/ife 0x9999f96c ife_decode -EXPORT_SYMBOL_GPL net/ife/ife 0xc9ea5f1d ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0x7980385c ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0x8ac2cf52 ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x14a88261 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x4789f482 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xafbeb8ec esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/gre 0x7ff093ae gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x9ef28268 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3d16afea inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x53168367 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5c5280d2 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7efa123a inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x81d42e58 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9a939800 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xae5e43f2 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbc6da625 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe7159a9e inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xcecf753a gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1326e674 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1dd6412c ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x221e1c2a ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x256a0728 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2848b1db ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x794a90eb __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7ce827ae ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9532523c ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9597a6f6 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaf325e45 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xafe842f5 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xca1443bb ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdc0aa171 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe3b5e849 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe6203c62 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfeefc133 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xff81648c ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x41aba80c arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x467b5272 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x22a5dda1 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x5e0c0cfa nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xbadfc809 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1d27ad07 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2555a9cc nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4dfb3c8b nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5ae7c053 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x891e2059 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc0d3e3ab nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc897bedf nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xc60ebb12 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x051f2a35 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x3493e90f nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xb9c4f52d nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x27de8552 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xae534ec0 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x04992bec tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3d592885 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6d1268eb tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9bc3b52d tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd46e11cf tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x29e65cd0 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2abd3857 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x30bd5b83 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x61c98d4d udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7d21f177 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x83b6985d udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb5ac40cf setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe88e1cc5 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x40a6ebfc esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x694f0bce esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xe2b3108e esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x493a4ab5 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8164fc88 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe38bbe7d ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x019a33e2 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x687efee9 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x5bfe5f6a ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6a3ea6d8 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa99f9aa6 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xde1305fa nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x4ebf529e nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x06842f25 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2b2fd41e nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3409f0e3 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x72ae5490 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf189cb3e nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf55c4a72 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf97c3c9b nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x41691a7b nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x1819ee26 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x83538bd1 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xe5378cb9 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x1052ac9a nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x23597a2b nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0cb6067c l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1354ab70 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x26f14bc1 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2780662f l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x29b5f8a7 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2cb14d42 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3b9c216c l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x41813243 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x607d947f l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x77c45bf5 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x83ce92ab l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9a6f36ff l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9cc92574 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa318725d l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb367797b l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca357738 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe17e29ca l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe36b53a5 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe9cf91a6 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xed0df30c l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfb23570b l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xad80ce79 l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x6a4823ba esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x9a222167 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xd51a083a esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0x6bc099ff gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x7d66a5e0 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6a093a99 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8cefc961 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa0d827a0 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbf999610 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc482caf0 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdae6516f inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe41b8385 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf0b74dd5 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf665c57e inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x7cb8d7c6 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1f21f69e ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x22b537dd ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3449179c ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4d865bef __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x58464a67 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x90c494d4 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9d825587 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9f502f5d ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa12f75a3 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaedff0ec ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb14b93ae ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb2d2f8ff ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbe58cf63 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd10ae6a4 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd6c76d5d ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe54f2a85 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xeb158513 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x23959cdd arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x03ab2a34 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xbc44d885 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xc2c24524 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xa01be1a0 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x12b97088 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1e5ca988 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6a7df8a2 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x969aee87 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9fc5a095 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd331e354 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf8e24381 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x39118177 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x199b3e78 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x6aed76c7 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x7cf8470e nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x26290178 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x4575670c nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5dc06242 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x68e34a25 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd2d80b17 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe7913b37 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfffaff62 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x296c6ff0 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x768098f2 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7835be6a udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x88a4cd1e setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbc8f7018 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc40eb206 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd255d362 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xed04acb9 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x17c0e3d4 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc1ab1063 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xeb401471 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0ff407ef ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa90ce830 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xdc90694b ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x69a087be udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x9dca700d udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xe15da143 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x71406b5e nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xb42c9847 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xdd67728c nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x00278579 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1f911e91 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8ed34c69 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9b5a1fa8 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xaf1e828f nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xaf5f8cc9 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb260c16f nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb593a925 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xbe76201e nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x430ea45c nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xe85fd8d1 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xf15e3b16 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x1b40a126 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xc12accbf nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x003f72af l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0f96f9aa l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1e0ecc9d l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x24f9c4b4 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x26fc24a6 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4a1c4391 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x57b2fdcc l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x80150512 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x83139a8e l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x96aaab9b l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa196d26f l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa2a057c4 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xabd10cfe l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xad957d7b l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbbf29ced l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbc85a9d7 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd0ef09de l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd1c08620 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd93e93ad l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdcf3a129 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xed2fc0a4 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x82245eb8 l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xec96d8e4 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0d63806e ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x13bdab6f ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1e88aea2 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x257e7e8d ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2a61f26b ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x31ffb6f3 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4c7af449 ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4e150e7e ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xf45c35c6 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0fc8bf0a ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x14dc2619 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1895ba39 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x282192bc wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2db8ed9d ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x39d1d64f ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4469110b ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4f8696d9 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x511164de 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 0x6a49ea91 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6af17de6 ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6dfa7865 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x83436600 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x97fdeb82 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9998456b ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5f631be4 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ebaab70 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8b16decf ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8fe04fbe ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa0025311 ieee80211_remain_on_channel_expired EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa457f439 ieee80211_ready_on_channel EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb2be5813 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb52f682c ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc05f3281 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc55b9fd0 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb1fb9358 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb74bfa87 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbcabeee1 ieee80211_gtk_rekey_notify EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdca4cc2e ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf5efb194 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x23a3711c mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x46b392d8 nla_put_labels +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea9b216a ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xee255d6d ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5791786d mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6947ee0d nla_put_labels EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x79245de9 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7c0ced0b mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7e533ce2 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x21e7bb1e ip_set_type_unregister +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7ebbb2fe mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc50caeec mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdf62b869 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x07345316 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0858fd5b 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 0x3059b691 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3815ceb8 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x256df5f6 ip_set_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x42054103 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x45a1e372 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4d0e408d ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5983e7e8 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5f776bc7 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6284fed6 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x686d420d ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6ff535b0 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x73ff70da ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x412defae ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x46d01f2c ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x49c5f1da ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4baff635 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6aeebd0f 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 0x94a77086 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9dfb2aa7 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8569a698 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9ac87a73 ip_set_elem_len EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xad4925fb ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc7b17ecf ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcd4fcc59 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdb37ec61 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xab085586 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb061ff38 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe226ad85 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe2702099 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeaa4df40 ip_set_get_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf42b2139 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1e482f91 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x44ebf37e register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6718af63 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xcd49fe5e unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf60e61a2 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf76d3469 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf7928b1f ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfe138e6e ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6d1d3448 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xbfd20818 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xda802cf5 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xee15f5e4 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x01b124c0 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1a8e4487 nf_conncount_gc_list EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x623ba9bf nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x69a9576e nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x50e512e6 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x78733036 nf_conncount_count EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xc3447e19 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe172e01c nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xea32fef9 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0144df4e nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06084ce7 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0786bd04 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b6bdbab nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe17bca66 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01dc6fe3 nf_ct_delete EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ced6b40 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0dcda090 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x104b5ad9 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12760be6 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14fd86c6 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b7340c0 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f0ba66f nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25bac0e1 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d9be001 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10952e00 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13f6f86f nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15c90e5e nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15d9dcaf nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18bd4297 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21f28c2e nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25bd1709 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26a4af6f nf_conntrack_in 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 0x2d19a2ca nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37836c5b nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a3fd9a7 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cd75839 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41b2e6f1 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41cbce8f nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43092533 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48eed3fa nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b029caf __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c11fa8d nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4cd0824d __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x51c0899a nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x562e7e60 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x576990f2 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59789c7f nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x597bc74e __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5de1bd05 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66b0244a nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a79e2e9 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2af6f257 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3aac8047 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b285cb8 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cbf0ee8 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cdee5f8 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f1d40b7 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x404d9b45 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41318153 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x428fba81 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x429ef7b2 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43ab3c43 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43d75d79 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54ba2de1 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5560e8ce __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ac414e5 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b48ea75 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62ddcdb8 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64e2ea21 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66425da7 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x679a36b2 nf_ct_extend_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c7d9439 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d3ee360 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x727d751f nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73e2ec8f nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79abe11f nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ae95d55 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c2a458d nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80335e37 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80cbd039 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82419b60 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82c3a9ca nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x871ab5bf nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88c4d509 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x892abd95 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x735031d0 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73b35aa6 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74f50325 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x762e0b96 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7924812c nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8831c5b0 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a6852c4 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ceeecd1 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f8f2f5e 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 0x913271ed __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92ba5298 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95dfc7d1 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90194b05 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x941e0339 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96213bb6 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x993ae67c nf_ct_helper_expectfn_find_by_symbol EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b330bd8 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9eb43024 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f47c552 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ffe5793 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa02a30c0 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa02b859d nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8a2541e nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0715d9a nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa20f57fa nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4c1c63b nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5313507 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa689e0a7 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa693dd30 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa7e20f7 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab137781 nf_ct_seq_offset 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 0xaff8c221 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb17041ac nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5c454c2 nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb94b711f nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc5a1627 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe27b397 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc04ff429 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0803a0f nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1234ace nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc182a2a9 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb046d2dc nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0a43727 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2787c1e nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb51ac5db nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5e95414 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb752d272 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe6ada6b __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbebee5af nf_ct_expect_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1e7be52 nf_connlabels_replace EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc64378fc __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9f581e9 nf_ct_set_auto_assign_helper_warned -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb2f0ec5 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2264cd4 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc889cfa6 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcaf269c3 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcef9783f nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3f0b359 nf_ct_netns_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd74ffd67 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd998314c nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7d7f0e7 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda3ac4fb nf_connlabels_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcce10e5 nf_ct_seqadj_set EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea193366 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1561426 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4f7835c nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6cd23db nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7c554bb nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8d188aa nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe9a4d9d7 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea5928bb nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb45e4bf nf_nat_helper_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeccb1b1c nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf28b4e4d nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeec19dc5 nf_ct_helper_ext_add EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4c441bd nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6e6f597 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf724034b nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7332939 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf76d1733 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7de7f80 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf82146e8 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf943647c nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8fc8371 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf989d815 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfbc07e6b nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfcad4ef3 nf_ct_untimeout EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x26d3e2a1 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x9aadd9b6 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xabb36d5f nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x47c98f82 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x48d81408 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x62686949 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x770f5fc3 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa3869a01 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb482e5e2 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbe6329f8 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc86e973a nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd0b01e0d nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe391e8cb set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xf2249bce nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x583a6963 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x5ca63511 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xda6db940 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xde09fd70 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x32462544 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x38a9151a ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x84b736a6 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa49b3d99 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xae144c2e ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf32169fb ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfbe730cc ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x19477308 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x7538096e nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x45e9e08d nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xbe282353 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xd670e610 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0c076707 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0c5d5407 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x14d1b633 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3d25154d flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4f2f62aa nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x531d22b7 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5f42fcc1 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x64a69e16 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x67c10aed nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6a8d1c3e nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6e1fbdf6 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa1b40040 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb082da97 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb49ac004 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcb29f41f flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe33fdd37 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf91b8170 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x21e806cd nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2f57826c nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xcc889b5b nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x0f8cdcb7 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x3c0c62e8 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1e6469d5 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3b66acd7 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4745d220 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x616d65c9 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6be9ff94 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x71856303 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7dd5e1bd set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x83c6a417 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbcac1b91 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd7f87b36 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xd2361b47 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0a6fa118 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4bf17801 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x8fbabcfd nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf4d61cce nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x05c0a4a7 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1bf1538a ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3900c304 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3a708c08 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8280c771 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdc25c909 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xec8fede5 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xb58d3d61 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x5c6a74a8 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x1fc844ec nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x5ce1fd1a nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x708c035d nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0373ffb0 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x24b1a49c nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3c97f0c9 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3c98f174 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x40d0e734 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5562f3b6 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x90978258 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa09fa99f flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa407e989 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa7d44ea1 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb1ccd6c8 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb3d2415d nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb9860c6c nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbc66486d nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc5a92734 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xce85f7aa flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeacfa1d9 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0af051c7 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x22c0300b nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2acf8d75 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x30ae53b3 nf_nat_icmpv6_reply_translation EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3d2f2352 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x42126b35 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x56f2b7e3 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x611113bd nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x64082ce0 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x647847b3 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x759a241e nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8611b2f5 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x86174b90 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9347d749 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa2fffb09 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcff890ec nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd99bc56b nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3e2bcc02 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x47fed7ea nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x99af409a nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9d4a7a10 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa2a36a51 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb9bb4be4 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcb79ddc7 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcd86f32e nf_nat_icmp_reply_translation EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe7ff3dab nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1bd33520 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdc1edb50 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe4847547 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xeee0261b nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf4650abd nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x17b1aa7a ipv6_synproxy_hook EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x22196340 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3bbe328d nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4aeb3d46 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4c488199 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x722ca3af synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x778b1b53 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x979d1204 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4c080741 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6c51fbd5 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x78abfc9e nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8ed38675 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9a29813e nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa7c5d8d6 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xafda8704 synproxy_parse_options EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdba83bda nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe2e3613c synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf937e8a6 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcb72fdff synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdd04ece2 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xeec4c934 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x049890db nft_meta_set_init EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x073ea133 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a56b61f nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0aa3241e nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0f143cff nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x17d35760 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1d7e248e nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x20f8a877 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x07716e96 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0b004e7d nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0c1e512c nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1076e420 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x14858f42 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15e3f456 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x16ad806a nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1cdd2eb0 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x24720476 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x307f7831 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x315aee52 nft_meta_set_eval EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3a2df332 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4138de1b nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x338504de nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3572da66 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x35a8665c nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x38c14124 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3ca2a265 nf_tables_destroy_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e978d3c nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x50e838a1 nft_set_do_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5972a37c nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6186b02d nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6313cb44 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6838a661 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x711af481 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x777f29ab nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78433974 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7ce897f8 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x832f6cb5 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x891e3140 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x457c089e nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e95ec86 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x50c72a78 nft_set_do_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x62028054 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d3cd363 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78107ef3 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7a349baa nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c0f37fd nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7e8d8c04 nft_set_lookup_global EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b5ae838 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f890dc5 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x90329b8a nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9482e8f4 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x97900a1c nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9ec08328 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8edd351b nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x915eb69c nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9696c735 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb091990b nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3289005 nft_set_elem_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3bd62b8 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe506540 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf790caf nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0820142 nft_meta_set_eval EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc23cd9bb nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcb2a9428 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcd35e229 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd00bf76c nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdac50a69 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcabdd813 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd2a00ebe nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd2cf1309 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdc1373b6 nft_register_obj EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe0c1e01a nft_unregister_obj EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe3814618 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf7dba7c9 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x152f86a4 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x36027a7b nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3adad0d6 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x490a7e75 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe4b9676c nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x12a063bc nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x133fac7f nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x179b19bd nfnetlink_unicast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x661df3a1 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb28abe88 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbf82dd32 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb78692f1 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc3173039 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc7a2344b nfnetlink_broadcast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x86fa6f36 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb50e0540 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xeef2df5c nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa5ccbd19 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa8defbea nfnl_acct_update EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xc0be873a nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd3f708c9 nfnl_acct_find_get EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x88e0c933 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xebd61718 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2c0336b1 nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7b158371 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf71499ea nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xfe51d061 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x9b0872d1 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xa0e9b58f nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2f02ee18 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x44fd4d9b nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x5de649ab nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xba90fc88 nft_fib_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x4de02b00 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5be15004 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5ca0b472 nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xb1b97ede nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc20338cf nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc31119f2 nft_reject_dump EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04914cb4 xt_compat_target_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0f854c6a xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x130503a3 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1df0be0d xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x201c3f40 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2880d7aa xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x54d1a828 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5be51cf8 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6c856b80 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1aa7f148 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1ad4b7a1 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x203f9f09 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x25c829b8 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x25e67feb xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2d2059e0 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4b4e5366 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5643703a xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x572d44fd xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x67461005 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x69eb7f3c xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6d1fb3ed xt_compat_match_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8be8a3b8 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8cc8440e xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8feb7ec4 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x928aabaf xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x93960eb8 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x88099fbb xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9268374a xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x94586e8f xt_proto_fini EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa0bc0723 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa3e6e181 xt_compat_target_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa8fc55df xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb42d9e4d xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb558240f xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbc2c5574 xt_proto_init EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc58ab27a xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc504506e xt_unregister_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcf96a2f7 xt_check_target EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd6e5b737 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd7cdf29e xt_compat_match_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdc4af970 xt_unregister_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe9f94953 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec8c28e1 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf673fa64 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xcd5b48bd xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xf7962946 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe8cc977a xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xedf431b2 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xc22623be xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xec868347 xt_rateest_lookup EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1e4244ba nci_spi_allocate_spi EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xd3747695 nci_spi_read EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xea7afe2a nci_spi_send EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x32165090 nci_uart_unregister EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x493c83ff nci_uart_set_config EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xb6ec0ac0 nci_uart_register -EXPORT_SYMBOL_GPL net/nsh/nsh 0x817c0065 nsh_pop -EXPORT_SYMBOL_GPL net/nsh/nsh 0x9c43897c nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1efaaf71 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x22a4297a __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3cf96f45 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x61b2db48 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x70f3625a ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd234a51e ovs_vport_alloc -EXPORT_SYMBOL_GPL net/psample/psample 0x3de6a453 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xc9676ac8 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xf1b78841 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xfa0636e7 psample_group_get +EXPORT_SYMBOL_GPL net/nsh/nsh 0x0007a233 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0x65ae2cbe nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x768470f7 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7b05ad17 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7e6b12cb ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x88d8dbc8 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xae567611 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe96bcf69 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/psample/psample 0x14ec3a1a psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x5cefef8b psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x66e65c0a psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xef7406d2 psample_group_put +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x5f5f5955 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x6a74ffcf qrtr_endpoint_post EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xb69c3026 qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xb795fd2b qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xf04edb64 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xe0b7215d qrtr_endpoint_register EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x01e04a82 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x150d9c36 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x0b45dda3 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x1262856b rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x16310c8f rds_send_ping EXPORT_SYMBOL_GPL net/rds/rds 0x20c5e653 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x2a5bd470 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x2aaa1b0b rds_message_put EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2bfcbd9f rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x3076a390 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x320c4aba rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x327e4c56 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x33b9d192 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x35923b76 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x3241bbe9 rds_message_addref EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3cdcb1c5 rds_trans_unregister EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x4f5926bf rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x5191d655 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x55f93550 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 0x6989d5b7 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x6d5262df rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x78d4eedb rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x5a438f70 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x6d4cc315 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x774251a3 rds_conn_drop EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x7d8adf65 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x800075b5 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x80cf753e rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x8424823c rds_for_each_conn_info EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x8c999554 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x921807c9 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xa881a4bb rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xb34f4da5 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xb446b348 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xb478bd56 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xc0c351e5 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x8abe2f42 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x8cb7bdea rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x8f00f95e rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x8f92032e rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x910e3a8c rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xad2ced51 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xafa14d1d rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xb0469d54 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xc1fb8dac rds_atomic_send_complete EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xd42853b4 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0xdc48c451 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xf301c733 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xf775f477 rds_send_path_reset -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x4d7d1850 pie_process_dequeue -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x625dcabe pie_drop_early +EXPORT_SYMBOL_GPL net/rds/rds 0xcf6213bd rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xe304b315 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xe522943b rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xe684461f rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xe97a4d38 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xf39ff1f4 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xfa0a868a rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xfd2b4ffc rds_connect_complete +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x3dce5859 pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x87d84d4b 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 0x3dbe33e3 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0xaa0fa33e sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xe19e8cf7 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0xf74e56d9 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/smc/smc 0x5d470105 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x92f0ec2f smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x9d048c24 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xa46f869d smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xaa81da04 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xafe8e682 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0xc96a9acf smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xcfe4df34 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0xdd4dc452 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xf47fec72 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x14462fc2 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sctp/sctp 0x41ae91bf sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x63acc6bc sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x6fc80009 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xa92310c3 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/smc/smc 0x088013b1 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x0e2a9784 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x398b51ea smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x7cb39d48 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x8692b7c1 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x8d8f00ad smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xc9e5f175 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xed5b1b87 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xf53d0e70 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xf9e51d4b smcd_handle_irq +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x243cfe9e gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2bc290d8 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 0x5ae5bf95 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xcebebc6c gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x9b7fd6db svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc65c241c 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 0xeedbc6cc svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0080f9d0 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0193d052 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02af3f25 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x038c6d1d auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0420c6ce rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05d6a0b9 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01ca6c6e rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x049dd790 rpc_free 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 0x077b366b svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x080e2176 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x089d111c xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d6bf8ad xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ee1d8b2 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x107a0cfd xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10ceae79 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12064f42 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1223726b xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x125b7684 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x190f91e6 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a482fc3 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ab0983c svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1aeeda9a rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b390c39 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b49b973 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d828ce0 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e04da75 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0893c6f5 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x095f9f81 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x099e6deb rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cb26a0f xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d8b1e49 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f5a0331 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fb88c22 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x108398e7 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15edfc6e rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x166b3d4b write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x181b1a52 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1897216e xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18cb5156 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x193b4436 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19a51853 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d08d694 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d3131f7 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d390518 rpc_clnt_show_stats EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e9800d6 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e211958 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1edc99f5 svc_unreg_xprt_class EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20780e3b rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21ec670b xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21f136ea xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2525e99a xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x258e0620 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x260e3961 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f48f54f rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fda6bea rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2007b18d xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20a1af5f rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21200ec1 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2351155b cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x243a170a svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x256bf957 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2723bc1c xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27eeaad6 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2856c9c6 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28c237e0 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28e2c1b4 sunrpc_cache_unhash EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b2ee590 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2be6337d rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bec0143 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bf8dca1 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c3994cc svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c555c53 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cd4e78f cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ec540fe svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fa6dcbd rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fd84fa2 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30b1f83c sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3119161f rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31889e95 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x294b1d88 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2976f691 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29e517fd svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29f13c15 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a364ea5 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a4d2738 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c174871 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c375533 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cb1fdd0 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cb697aa xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2db128dc svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f2e555a svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8e9d0a svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x301b6db2 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x303450e1 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x303f7008 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30f479d4 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x317faff9 svc_exit_thread EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32d10b84 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32e42294 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x332f546b svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33fab67d xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x345b62d0 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33882df6 rpc_mkpipe_data EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x350a808c xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3712c7c5 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36ae3679 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x372e189f xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x375076e6 rpc_call_sync EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39072144 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aeb5c08 xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bd0516b svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3da093d1 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e9e5175 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38fa4b37 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b067e86 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d5f889b svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f967505 svc_wake_up EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4174683a rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42b819c1 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fd2e563 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40d83d8f rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41dcd2bf rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42a419b6 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x435eb2d9 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43a422ed xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4468b752 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44c96b3a xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44f78107 rpc_sleep_on_priority EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x455e5b89 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x459293f9 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45d64ec5 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47da7da3 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48c9a506 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a0840b5 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a6e70b3 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x462ec729 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4649632a svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46ed4eb7 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48115b95 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x481f8c0b xprt_alloc EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b811c28 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c31f6ae read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ceaf5d3 xprt_update_rtt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4de8f0bf svc_seq_show EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f6b977c rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5076d0ef rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x512b11ad sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51c4eb82 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x501a5702 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x526daf8c xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x530f6695 svc_find_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54747a30 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5532566d rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55aabbb2 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x560fdbea rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5692c001 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x584dc0e2 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5891d36d gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58d2d9c4 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a21dfcd svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57f56f04 cache_purge EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a7eeb24 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b229bbf cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bc0e318 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bc81581 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd044fa rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bfac4fe xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c032a71 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5de8a305 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e2213f4 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5efa76f9 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f64f3e5 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ff69162 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x601b4932 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6212b07b rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6343471b cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x648dabcf rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64a2d512 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65f8f6a9 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66a1de94 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66d1365a auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b3661d2 svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b69242c xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bc31e93 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cbe1831 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cd70709 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d0bc348 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d32dde2 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d7e6821 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f8b42a4 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ffc92cf rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60e7569c svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62daa599 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x643ac149 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x658dc5fc sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66aa6e48 rpc_count_iostats_metrics EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68125b13 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6823d1b8 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6870bf7d cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6abe44fb rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ae1ee19 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b247f37 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d7506f9 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e4f70c5 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70f926fd xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6778590e rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68755c86 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68d28980 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69915ef5 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ab3ad36 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b84aa5b rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c2a0924 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dbce3d1 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ed1cb80 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x704947f9 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70f0b242 rpc_put_task_async 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 0x724ca84c svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72c98c66 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73407411 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74ac05b2 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74d44d5f rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7679bd5b xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x777630dc unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79f29e90 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b1f2a05 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b2ef230 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bde76e8 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ddfd85c _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72c9898d svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x733d00ad rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7414331a xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x780055f9 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78cfc3f1 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x798a26f6 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7995c5bd xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79d5709c gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d4cd8cb xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d86ab8b svc_generic_init_request EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e0b2d4a svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ea8dc0b svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8241a6ca xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82ba1f67 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8612ad2f __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8794030a svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87af19c3 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88f428e6 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x890f1edc xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8946434a rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89d496bb svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d597e5b svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d8d39b7 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9178b154 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9179e346 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x927e0824 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92a56a42 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92c81b56 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9589ae6e rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f840c94 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80946660 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80f77520 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81c079ed put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84d9d22e svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86423262 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86a50e07 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x874f165d svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87baa28e xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88b588af rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89b12f8d svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b7a560e xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c631cab sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dab4f70 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8df096ff svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8febcffc xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fedde79 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90b88d2d xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90cddcb1 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x911191cc svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93d5efde rpc_restart_call_prepare EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96e0e5fc rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96e8ec4e xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98289eed xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x985f1718 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99835360 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x999e0372 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x978defd8 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98c8137d cache_seq_next_rcu EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bd52f5d svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d37c942 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dd39256 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa09199d6 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1222311 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d9865f6 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dbdd9ca xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e19ce4c rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e382e58 svc_set_num_threads EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1ee03c3 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4049eac svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa59abdcc rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa78b68bf xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7a7e499 xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa80ffffb xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8cba497 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8dfa83c rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac2f4069 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacbacdf7 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xace7a067 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad3ad206 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaee7d232 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf14d0c9 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa18e09f2 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa29febb1 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3da0398 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa410292f cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa43d261a auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5d83cac rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6e92506 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6ebc649 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa734904c svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7dcfece rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa87a5e87 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac5150fb xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaceccfea xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacee69f3 rpcauth_stringify_acceptor EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafa4c844 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0d860aa cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2110df5 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaff0d147 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb24fd2ef xdr_reserve_space_vec EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb41ea552 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb44dcab3 sunrpc_cache_pipe_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb53506b3 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8293584 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb85a6e87 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaa22441 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb1a73d2 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcbc63ce rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd319987 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd784c86 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe552123 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf6b12fb xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6f46b8a svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8b98d47 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc00d0e6 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcecff48 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd101850 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe1e4bfa xprt_release_rqst_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfc4e597 svc_exit_thread EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1e700f6 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2ac2e29 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4582b8c rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4cdd558 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4f15ec0 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc611559e xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc66ba57d xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6eceb07 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7414936 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2201cd4 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc29002a3 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2caa71f rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc422dab0 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4481d3c xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4e10257 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5e6a9af sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6425cce cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6d348c1 svc_sock_update_bufs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc94534f4 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca1eadc6 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca5fc474 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb5b822f rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9531108 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9c1aa96 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbb1c0ef rpc_num_bc_slots EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf31ce67 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf678043 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0a0aa6b svc_rqst_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd26b10da rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6697726 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd74834c5 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd772c744 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd83c5934 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8c70d1c xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd924357e rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9e5b473 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbd5a56d svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2b2d9de xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd42ab907 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd430a26e xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8bfa6f8 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda63dfaf rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdaefd80a xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb26b112 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc2a5ecd sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc48da7c xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc6e1209 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd386e35 _copy_from_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddaa853f write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde0e3cb1 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf799330 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3994ad2 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3ae50c7 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde1d72e3 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde713acf rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde8afa15 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf369137 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf55098c rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe063a63e xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1770aa7 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1e44cd3 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2dc6eb4 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe320b0d5 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe34282bb xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3c87a9b rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe422ac04 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4328626 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4e6ab8b xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5435441 xdr_reserve_space EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe62699ef xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe75ca93b rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7ef4217 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe89d839f auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe955f84e svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6276b97 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe67b2476 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe68d9e43 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7b17779 xdr_write_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe986c78d xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea3cf62b xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebcb6765 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec26761d rpc_exit EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedf304d1 rpc_pipe_generic_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef31821f svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef079dbc rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0840cbd svc_xprt_init EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf115d7da rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3f6a209 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf406ffeb rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4221c8a xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf59bebfc rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf678fe74 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6f20d5a csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8a0a9a9 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8f4e46b xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9bf2eb9 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa47299d xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfba69f87 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcbd5f4f svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcc14977 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcf2e7c0 rpc_call_start -EXPORT_SYMBOL_GPL net/tls/tls 0x61490217 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0x77f33960 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xcc236b72 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xdb49e01c tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2138090 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf513e293 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf551fdfc rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf613124c rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6167e15 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf84ff470 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8d311eb xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8f7ad08 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf919632b sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf952aeaa cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa7e427d rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb96aba9 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc762ebe unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdfe5318 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/tls/tls 0x136b8bde tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x15abbb4c tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x56ce976c tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xcd62f6d4 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x027470d7 virtio_transport_notify_recv_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 0x1259d0f3 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1b608dc8 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2d5914e3 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x35d97d7c virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x41a4210c virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4bc2c50d virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x50241a78 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x50e761f5 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x55c3411a virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5d2c2eea virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x613eb34e virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x634f558a virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6c6c7b1e virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x72b89dc7 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x79cf51f2 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7ee726f6 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x80c3707b virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8446e943 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x85a722de virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8a4d992f virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8c8037ff virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x94cbe4e2 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x94cbe5d7 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9658df21 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa4fc6d75 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb73ad79a virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x12a20cfa virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x16690aee virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1b0faa79 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1b109ef9 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2ce76a15 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2e9c8294 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2f7c52b8 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x32d46787 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3da77dbb virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x41225403 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x484ff0e8 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x512310cb virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x76b5c551 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x797490b3 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7f1bbedf virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7f320c17 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x83d39bef virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x85f75150 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9117d0a3 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa3a19d7a virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaa54d9a3 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xabfc61c4 virtio_transport_stream_rcvhiwat 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 0xc61bc9ff virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc7873993 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd05e075d virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd531035f virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb846c6c virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe003c2ed virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe8268e4c virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfa9a80a3 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x01adb5cd vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0d51f28b vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc334692f virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd4bc6c76 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd6acfb67 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd8ada32a virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdc0b36cb virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdc71e3e9 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe6600e57 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe8c9732e virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe99d6df5 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf0d338b5 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfd02be64 virtio_transport_do_socket_init EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1bcb05c1 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x247b35aa vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x25a8771f vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x10ed5475 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1cae2fc8 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x23f8670f vsock_add_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x331cbd0c vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x38e776fe vsock_remove_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x436c6da1 vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x45d56d9e vsock_core_get_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4cec13af vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x55622ba1 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59ba8d27 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5fd8962c vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6be94e69 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7194cb3f vsock_stream_has_space EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8aabafdc vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x871f88f3 vsock_core_register EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x999b9171 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9a853acf vsock_find_bound_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xac86e049 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9d361e64 vsock_stream_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb3927a2d vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb5e377f8 vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbe644c61 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc1eb2aaa vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb2ee8ef7 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb7631de3 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc7c4eda8 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc8b978ee vsock_remove_bound EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd2fa090f vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd57c4b56 vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd878d821 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xca1a7ef7 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcf95f081 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcfdf95ff vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd9078e6f vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe3f27028 vsock_core_unregister EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x13b71ce9 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1545453d cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5396827d cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6b24895c cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6e2ec14b cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x92f5fa50 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9bc2e087 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9f0862a8 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa2ee4b3f cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa40d58f0 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbc447eea cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc6e14f93 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc7b72802 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe947f549 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf5fcd393 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf9ef6a70 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x00dd90e9 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0ba05ff6 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0ddfc5e5 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x22249978 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x657a8af9 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7565d2fc cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb7e15225 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb960903b cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcd40b7a3 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd25c542d cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xda87fb22 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdf01c1d2 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdfa49569 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe8c4b760 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf998e659 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfd6a88be cfg80211_wext_siwfrag EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported @@ -18766,10 +18775,10 @@ EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname 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 0x303660f1 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x70503e74 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xbfdcf765 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf0dba0f1 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x63dd820f ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6e355c72 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7c232274 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe5e27cef 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/ac97_bus 0x8886235b snd_ac97_reset @@ -18835,17 +18844,17 @@ EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x18621b0c __snd_seq_driver_registe EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xaa1ed4a8 snd_seq_driver_unregister EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x21da759d amdtp_am824_midi_trigger EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x329d31fe amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3396b77f amdtp_domain_start EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x371b41a8 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5dc2b88c amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x467ae8f4 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5e818613 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x63d696e8 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6c65f021 amdtp_domain_stream_pcm_ack EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x723ab459 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8936583a amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8ed08cf2 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x93ae06aa amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x983a9a6c amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x81af9a96 amdtp_domain_start EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa16014dc amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc3c37800 amdtp_domain_add_stream EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd5a45e5d amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfc6c7c4d amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xde28c899 amdtp_domain_stop EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x03f8dac3 snd_hdac_ext_bus_device_init EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0502977c snd_hdac_ext_bus_link_put EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0df514be snd_hdac_ext_bus_ppcap_enable @@ -18993,7 +19002,6 @@ EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfc7a073d snd_ak4113_external_rat EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01dbe6e6 snd_hda_get_num_devices EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05992e2d 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 0x0725ec3c snd_hda_codec_load_dsp_trigger EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07bfb89c snd_hda_enable_beep_device EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fba80b4 snd_hda_multi_out_dig_close EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fcd7f04 snd_hda_codec_get_pin_target @@ -19001,14 +19009,13 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x107b492b __snd_hda_apply_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x148567fe snd_hda_codec_set_power_to_all EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16bf9564 snd_hda_mixer_amp_switch_put EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16ed704c snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16f4a914 azx_get_position EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17ee2264 snd_hda_jack_set_button_state EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18edc69c snd_hda_mixer_amp_volume_get EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f428f18 snd_hda_multi_out_analog_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22b63b07 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2403de80 azx_stop_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27a8a99d snd_hda_mixer_amp_volume_put EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2844725a _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x291ce2ad azx_free_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29fafa65 snd_hda_mixer_amp_switch_get EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a689d21 snd_hda_jack_add_kctls EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a836b9a snd_hda_codec_pcm_put @@ -19023,37 +19030,38 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x359abb7e snd_hda_detach_beep_de EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a34f7a5 snd_hda_get_default_vref EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a37934e snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d97c42a azx_get_position EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e5c46f7 snd_hda_codec_cleanup_for_unbind EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ec1370d snd_hda_multi_out_dig_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x440044e4 snd_hda_jack_detect_enable EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x450a9a81 snd_hda_input_mux_put EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x450fa93f snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x457c7d56 azx_get_pos_posbuf EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ada7d66 snd_hda_create_dig_out_ctls EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b88bef5 snd_hda_find_mixer_ctl EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cf54bee snd_hda_codec_amp_update EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e6eeac7 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f0103f8 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x511bfd37 azx_stop_all_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52929bc4 snd_hda_get_connections EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x550b4e16 snd_hda_shutup_pins EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56b6a63b snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x590af381 azx_get_pos_posbuf EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x596fa8d5 snd_hda_parse_pin_defcfg EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b8d3aa7 snd_hda_add_nid EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bbb6afa snd_hda_get_bool_hint EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5da22ade snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f18798b snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62440b5c azx_get_pos_lpib EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63264abd snd_hda_jack_detect_state_mst EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6558637c snd_hda_sequence_write EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6754d182 snd_hda_spdif_out_of_nid EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x686fb2ee snd_hda_get_hint EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x690abdee snd_hda_jack_set_gating_jack EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x692c0a51 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a3ae2a3 azx_probe_codecs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c3d72cf snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6df76ea2 snd_hda_codec_load_dsp_trigger EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ec0ba6a snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ee4c16a snd_hda_codec_load_dsp_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71c940ea snd_hda_apply_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72b7410d snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x749dcb30 azx_probe_codecs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x755147fe snd_hda_apply_pincfgs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x759d8ab7 snd_hda_jack_report_sync EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x761dee86 snd_hda_codec_configure @@ -19063,11 +19071,13 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ad78232 snd_hda_override_conn_ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d2e1f22 snd_hda_codec_eapd_power_filter EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8467c71a snd_hda_check_amp_caps EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x850ddd32 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86c800c6 azx_stop_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a698b5c snd_hda_create_spdif_share_sw EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9383d5b0 snd_hda_check_amp_list_power EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x946f5332 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97aa3921 azx_get_pos_lpib EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9946ba17 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99a2dd01 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c9e3b81 azx_stop_all_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d2d4e4f snd_hda_jack_unsol_event EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d567290 snd_hda_codec_new EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9edcbb4d snd_hda_apply_verbs @@ -19076,36 +19086,36 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5174fab snd_hda_codec_device_n EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa69541c8 snd_hda_codec_pcm_new EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7b92596 snd_hda_load_patch EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa91d028a snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9da61e9 azx_free_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa230f95 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa28f4de azx_bus_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaba05909 hda_get_autocfg_input_label EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac951a2a __hda_codec_driver_register EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacb5ddb5 snd_hda_jack_tbl_get_from_tag EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafc89be3 snd_hda_mixer_amp_switch_info EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaff35e8f snd_hda_override_amp_caps EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaffbbb37 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaffe01c9 azx_bus_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb14641fa snd_hda_set_dev_select EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb352f925 snd_hda_codec_get_pincfg EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb42e2774 hda_codec_driver_unregister EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4d59fc9 snd_hda_codec_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7889f00 snd_hda_mixer_amp_switch_put_beep EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8bc6cdf snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb95c77f2 azx_init_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfb6b56a snd_hda_get_conn_list EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfecca9a snd_hda_lock_devices EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbff3cf66 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc16b9924 azx_codec_configure EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc68b3651 snd_hda_jack_set_dirty_all EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca5b77aa snd_hda_enum_helper_info EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd7f028d snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd898999 azx_init_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd048a4f2 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd259c6a0 snd_hda_codec_load_dsp_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9828244 snd_hda_add_imux_item EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdcf1bb35 snd_hda_mixer_amp_switch_get_beep EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd377ca3 __snd_hda_codec_cleanup_stream EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde4d725c snd_hda_codec_set_name EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5d54f2a snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe95606ee azx_init_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed19e883 snd_hda_codec_amp_init_stereo EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef7f905d snd_hda_jack_poll_all @@ -19113,7 +19123,6 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1632d2d snd_hda_jack_add_kctl_ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1b1bfc5 snd_hda_codec_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf54b1afb snd_hda_set_power_save EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7a6807b snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf85a7e95 azx_init_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8cee1d7 snd_hda_get_conn_index EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf92d68b0 snd_hda_spdif_ctls_assign @@ -19147,78 +19156,78 @@ EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_ EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x8e388ca6 adau1372_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x8a250005 adau1761_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xbc42ae38 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x105aecdb adau17x1_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1d40b549 adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3c5ec8a5 adau17x1_set_micbias_voltage EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x49ab9d2a adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4eeebebb adau17x1_add_widgets EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4f7895f0 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x60c61bed adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x58571ec3 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6f266d0c adau17x1_add_routes EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7b67b139 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7e241a3d adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa9c11cbf adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb364dd11 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x93df110b adau17x1_resume EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc8ebb2fd adau17x1_readable_register EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x7ba52bd6 adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x001b54b7 arizona_asrc_rate1 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x07c2144d arizona_of_get_audio_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0c512a73 arizona_init_dvfs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0d6c41c1 arizona_simple_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0f306fd7 arizona_in_hpf_cut_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x180ebacc arizona_lhpf3_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1a599701 arizona_out_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1e260c4b arizona_set_output_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x20f911e6 arizona_init_common -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x235609d2 arizona_anc_ng_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x27618df0 arizona_init_mono -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x32b7a43f arizona_hp_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x33dec113 arizona_input_analog -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x34ce8d5d arizona_out_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3751e1f5 arizona_set_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x39d7f7cb arizona_init_gpio -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3a1d0857 arizona_ng_hold -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3c05ce37 arizona_output_anc_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x43f6230e arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1d047d7b arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1f6d66e3 arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1fdbedd8 arizona_of_get_audio_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x238fa686 arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2a736209 arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x35c1c334 arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3b9a48fd arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3fdbb0ff arizona_set_fll_refclk EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x48f70aca arizona_clk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x500fdf42 arizona_isrc_fsh -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5f369f0f arizona_in_dmic_osr -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6487d5a9 arizona_set_fll_refclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x683299a4 arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4b529f9c arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4ba403c9 arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5651f094 arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5d036dc0 arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5d261c0f arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5e702a42 arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5ee2bdf4 arizona_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6897b833 arizona_adsp2_rate_controls EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6db567b7 arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6bafb4aa arizona_init_mono +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6f480eac arizona_init_spk EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x701385b7 arizona_lhpf_coeff_put EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7b8ef6c1 arizona_out_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7e79b022 arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x72ab9d1a arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x74be3c56 arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x75fdfa9d arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7cddd1ec arizona_init_fll 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 0x8dcb8e06 arizona_init_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8f91abe5 arizona_lhpf1_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x99cd6752 arizona_in_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa83c940e arizona_jack_codec_dev_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x84b98eed arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8502b623 arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8615b7a5 arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8c74d292 arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8e311d7d arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x94565930 arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9939430f arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9ded4349 arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa3640beb arizona_free_spk_irqs EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb4f1aba2 arizona_anc_input_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb62b887b arizona_init_dai -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb7ae01f2 arizona_anc_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbe79b178 arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xababb758 arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xac0559d4 arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xad36558c arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb52fd861 arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xba599563 arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc48e2c9b arizona_jack_codec_dev_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc5e16854 arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc8d052c3 arizona_out_ev EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcb8c15c4 arizona_jack_set_jack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcb9e9d54 arizona_isrc_fsl EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xceeb6918 arizona_eq_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd32b0caf arizona_init_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd6f44b25 arizona_dvfs_up -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdda98442 arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd7f3c226 arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdb8ef4a3 arizona_in_vi_ramp EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdf4ac3d1 arizona_voice_trigger_switch EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe16fe7d0 arizona_in_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe9194666 arizona_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe948164e arizona_dvfs_sysclk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xee5c9bf8 arizona_free_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xeebb300a arizona_init_spk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf81a0692 arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe1423c54 arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xec17e82d arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf255fee6 arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfbad4780 arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfe3d7673 arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xff36d11e arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x2702eb2f cs35l41_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x587bdccb cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x7d33b17b cs35l41_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xd644c217 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x8f951463 cs35l41_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x2f7bd9d3 cs35l41_regmap_spi EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x3c79014c cs35l41_otp_unpack EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x5bf0e92a cs35l41_test_key_unlock @@ -19240,26 +19249,26 @@ EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x32875c6b cs42xx8_pm EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xa9628f0a cs42xx8_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x16ed08fa da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x25c60a2d da7219_aad_jack_det EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x46b30a97 da7219_aad_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xd87e2931 da7219_aad_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xee49ca5e da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x7355ff35 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xf96ce51c da7219_aad_init EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x11db94da es8328_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xd52bda10 es8328_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0xd1be40b8 snd_soc_hdac_hda_get_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x1166def0 hdac_hdmi_jack_port_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0xd9734b9b hdac_hdmi_jack_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xc5f2ec34 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x27023c13 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x99791b15 hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0xa2566ea9 hdac_hdmi_jack_port_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x459f6066 max98090_mic_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x6baa2ec9 max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xcf633819 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xa3fd9d0f soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xb3382c0e soc_codec_dev_max98373 EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xff4257ad max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x348932b1 mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x8ba5cff1 mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xac260c9c mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xddc82fb9 mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x72da232d nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0xa10cb459 nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x96d05ffe mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xb30e9ad1 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xb68456a3 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xbf62cad9 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x9883a206 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x65574ed7 nau8825_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x0e7a7b26 pcm1789_common_exit EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x3c9d00f0 pcm1789_common_init EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xad3e2a66 pcm1789_regmap_config @@ -19281,122 +19290,122 @@ 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 0x3e922b16 rt286_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0xdb378a39 rt298_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0x82008096 rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0xfee58c75 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 0x03aaa457 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x518a752f rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x523c5261 rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x80aab334 rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xab0bf905 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc958e58e rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x0c27489a rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x0cade2b0 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xe651a35c rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x0eb4b424 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x02771a53 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x2c0d9feb rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x4c0353e5 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x4feea11e rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf0035ad1 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xfd2bf2dc rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x07b9313b rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x398f328d rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x5abe7b45 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x41546eff rt5663_sel_asrc_clk_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2f5ee4db rt5670_components -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x761c3776 rt5670_jack_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xb77cd165 rt5670_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xdf1ee204 rt5670_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xed3624a6 rt5670_jack_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x34aeb5b5 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xa121bdd6 rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xc2557198 rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xd5fcbad9 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xfef4381c rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x0d1ea366 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 0x041e696f rt5682_aif1_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x10fc9dfb rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1a1309fc rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x230949aa rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x27e1be4e rt5682_reset EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3d7ad332 rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x524857f2 rt5682_register_dai_clks EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5da30aca rt5682_aif1_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6a1a225d rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7937b529 rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x81ca18f4 rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb7148683 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x753dd604 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x82506ff1 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb694b1c9 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 0xdee26b4c rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe4059bd2 rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xef29d26c rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x31ac57c4 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7e4b09fb sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9768b9e4 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x995bca1b sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa5554203 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc8dd2e0e rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfec04fe1 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4871abf4 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x6659b046 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7560028f sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd1c616de sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe5192afd devm_sigmadsp_init EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xe98bb44e devm_sigmadsp_init_i2c EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x9d4ece6b devm_sigmadsp_init_regmap EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x2f6dc1a1 ssm2602_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x800f80c8 ssm2602_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xf524ba5b aic32x4_register_clocks EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xb9eec4b0 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x7fb55207 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x7f81ed7f 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 0x2ea3ffd0 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x78bbe6d2 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x5ac64c60 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x6895a1b8 wcd938x_sdw_free EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x857356c3 wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x8fb9fc92 wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xe4b538be wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x022b8c33 wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0e4bd0e9 wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x12518b0f wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x217aa597 wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x254b7ef8 wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x423a8cf3 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xab409a09 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x00457bd3 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x072d7421 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0bd8b8f8 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0ed0f9d6 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x16023525 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x282be37b wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3cf677b9 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 0x5e44a183 wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x628f030b wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x649cce2e wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x694946e1 wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7577adba wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x80d82eb5 wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8315d56f wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9280a36d wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x979ae6d5 wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x97f6cf38 wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9f7179ef wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa8acc3c6 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbba139dd wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x62949901 wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x662e9f3d wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x73d52d2a wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7587ffd6 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x82d2dd88 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8385ec3f wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x88d05edf wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa92cd7a4 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb9a0082b wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbb2c30aa wm_adsp2_component_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc163f258 wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd0ab89d4 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc4a41fec wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd41d885f wm_adsp_compr_free EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd68056da wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xda4b4c04 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 0xddc06c87 wm_adsp_fw_enum EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe56b30d5 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 0xf2889457 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf9e5882a wm_adsp_compr_set_params EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xc90c5768 wm8804_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xddc11c3d wm8804_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xed888589 wm8804_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf52ba845 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x5b89dbda wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x8768ff33 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x06416835 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xd839cb00 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x2cef0b0f wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x1e34aa42 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 0x1b9e0631 asoc_simple_parse_pin_switches EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1eb426b0 asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x272f720a asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x220c866c asoc_graph_card_probe EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2925127d asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x332e1cd7 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3e5f6597 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4137452f asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4e6e4f23 asoc_simple_be_hw_params_fixup EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5805a5ac asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5f63b6c7 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x59a7926d asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x74c73d50 asoc_simple_remove EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8636b6c8 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x865127f9 asoc_graph_card_probe EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x86fd8876 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8758c2dc asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x958f6b44 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcf949946 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb3a55e84 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb88b848f asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc2d913b6 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc3680bb7 asoc_simple_parse_pin_switches EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdc287d94 asoc_simple_parse_convert EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe5057ddb asoc_simple_hw_params EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe621c4aa asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xef0e4fc9 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe62709e2 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xea13c8d8 asoc_simple_init_priv 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 0xf85ebc70 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xff1fd8c4 asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x8bd6d6a4 sst_unregister_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0xc0fc3c2f sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf902c831 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x1eb87823 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0xbbeb6e3d sst_register_dsp EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x022c468a sst_context_cleanup EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x363be8f6 sst_alloc_drv_context EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x3a7fb5b9 intel_sst_pm @@ -19404,46 +19413,46 @@ EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x709cd25f reloca EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x8a382ff7 sst_configure_runtime_pm EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xf09bdc8a sst_context_init 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 0x0eca1b97 snd_soc_acpi_intel_kbl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x1c859a9f snd_soc_acpi_intel_cnl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x22f0c3aa snd_soc_acpi_intel_skl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x03f964f2 snd_soc_acpi_intel_ehl_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 0x36b70966 snd_soc_acpi_intel_icl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x41d007c0 snd_soc_acpi_intel_cnl_sdw_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 0x4ff887c1 snd_soc_acpi_intel_cnl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x4a6b6624 snd_soc_acpi_intel_hda_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 0x6be29439 snd_soc_acpi_intel_icl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x749e1ac1 snd_soc_acpi_intel_icl_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 0x9a54fe75 snd_soc_acpi_intel_skl_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 0xbb5d592d snd_soc_acpi_intel_ehl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xb66e2648 snd_soc_acpi_intel_kbl_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 0xcc3a271e 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 0xef3f8fcc snd_soc_acpi_intel_cml_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xf2cf5bfb snd_soc_acpi_intel_hda_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x001bbe7c sst_dsp_outbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0072ea69 sst_dsp_shim_update_bits_forced -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x07c4675a sst_dsp_shim_read_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x14dd4e64 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xf75cba1e snd_soc_acpi_intel_cnl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x16e86983 sst_shim32_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1c2d53a4 sst_dsp_shim_update_bits_forced_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x461930dd sst_dsp_register_poll -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4f1fd65f sst_dsp_shim_update_bits -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5cb1cbcc sst_dsp_inbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x72d25cb2 sst_dsp_inbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x870b3952 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1a01222e sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2d2c5ea3 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7b9e5b41 sst_dsp_shim_update_bits EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x87cdf7d2 sst_shim32_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8f4a413b sst_dsp_shim_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x932a2d61 sst_dsp_mailbox_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xaff8a94e sst_dsp_shim_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb9ef454b sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa1f1d0d0 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb6bfdfa7 sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbfc64429 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc544249f sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcfa6dc76 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd6eed844 sst_dsp_outbox_write EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd72a34c2 sst_shim32_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdc65af36 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe2495752 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 0xec64ff2e sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf2b2696d sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf46f182b sst_dsp_register_poll EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x011e0866 sst_ipc_tx_msg_reply_complete EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x1235ee75 sst_ipc_fini EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x1af3dda0 sst_ipc_reply_find_msg @@ -19451,259 +19460,260 @@ EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x955d8329 sst_ipc_tx_ EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xa0ca1353 sst_ipc_tx_message_nowait EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xab82d3bd sst_ipc_tx_message_nopm EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xb19bdbe3 sst_ipc_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x04044d66 cnl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x08896fcf skl_dsp_set_dma_control -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x099eda57 bxt_sst_init_fw EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x139ec340 skl_ipc_init_instance -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x152288a7 cnl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x13af789d skl_sst_dsp_cleanup EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x19f73aca skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x28b39632 skl_put_pvt_id EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2e847dfc skl_ipc_set_pipeline_state EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2f79befe is_skl_dsp_running -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2f96f872 skl_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x30c4f2fb cnl_sst_dsp_cleanup EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x31e2d4e6 skl_ipc_unload_modules -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x331a610e skl_sst_dsp_cleanup EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x37b81169 skl_dsp_wake EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3834d9df skl_ipc_load_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3d128a7b bxt_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x41a11b75 skl_sst_init_fw EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x41a147e7 skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x41ffbc0e cnl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4b0fad8d cnl_sst_init_fw EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4f78a6f8 skl_dsp_sleep EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x50c5a0fc skl_ipc_bind_unbind EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x53539126 skl_ipc_set_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5d3b25dd skl_get_pvt_instance_id_map +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x62fa13bf bxt_sst_init_fw EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x630a3e8e skl_ipc_restore_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x63ac24f1 skl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x654612c1 skl_get_pvt_id EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6bd45f32 cnl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8428aebe bxt_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x85eba379 bxt_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x823adef7 skl_sst_dsp_init EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8e9bb2f1 skl_sst_ipc_load_library EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa3c06721 skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa6bc8f83 cnl_sst_dsp_init EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xaf0268b6 skl_ipc_save_pipeline EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xbc9ba18e skl_ipc_set_dx EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xbdf261a2 skl_ipc_get_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd8e3f047 skl_put_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc3639cb7 skl_dsp_set_dma_control +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xdae2887c skl_get_pvt_instance_id_map EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe712c3ac skl_dsp_put_core EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe8f3076d skl_clear_module_cnt EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf2105912 skl_ipc_set_d0ix +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf85ccc34 skl_get_pvt_id EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xfab4685b skl_dsp_get_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xff64d2aa bxt_sst_dsp_cleanup 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 0x010482cc snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0204d068 snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x040d8757 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x048f7c58 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04df1b19 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04f13297 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08067e21 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x093d501f snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09839ca3 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09eb08d6 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c0b62fe snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00669fcb snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x025ef89f snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x032f3488 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03b75677 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x055577c7 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06702058 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08ed7a58 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09169af8 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09f49b08 snd_soc_add_component_controls EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c1a75a4 snd_soc_component_compr_get_params EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c96406f snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ef7c9b5 snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1180caf2 snd_soc_cnew EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12692f94 snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x127c63a1 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12ae880d snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12a85b1a snd_soc_pm_ops EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12b1c57d snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13233944 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1335b7cc snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13794d5c snd_soc_dai_compr_trigger EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1469b217 snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1563410f snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1acee64a snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ccbc994 snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cf9ec90 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f66fc3c snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21fe7c76 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2314a9d7 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2324ac1b snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2468fbbe snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15712888 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17973a80 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18a0206f snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c2aa115 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c9e9f3e snd_soc_jack_get_type EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25995ba7 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2692611f snd_soc_dpcm_can_be_prepared -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27e8c78c snd_soc_dai_link_set_capabilities EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x281f50ef snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2977e4f0 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b607b35 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ba8595a snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bf8c885 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d2135e8 snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d8ebf67 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d8f628b snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ec1c785 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f0ca44a dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f36f2e3 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29fa169e devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d553b81 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e3ff5cf snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30ae4a9c snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3127dd0c snd_soc_unregister_component_by_driver EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x320f8380 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33ea2412 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x355cea9b snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38a648fc snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x332da2fc snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x374822e7 snd_soc_add_dai_controls EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x395772e8 snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b952e3e snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e472065 snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ff8c7c2 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40d37d59 snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40e1b0fb snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b77edfa snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c0a3efb snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d01c3f8 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e34e7ab snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e42a0f6 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f8df247 snd_soc_dai_set_pll EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4116c8ca snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4230ebb7 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42d6fe5a snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43485513 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45122eaf snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45130d91 snd_soc_dai_compr_set_metadata EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4560d5be snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46174cfd snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4641c3b2 snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x487eb81e snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46ad43c8 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46c5f5f2 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47c9267b snd_soc_component_nc_pin_unlocked EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48a9c2d2 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4aed2d75 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4921c4d9 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b1dea72 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b58f385 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b72e3a2 snd_soc_add_card_controls EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c0f55be snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d28182c snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d6475b7 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dbc42e4 snd_soc_dapm_free EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dff558b snd_soc_dapm_get_pin_switch EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e49d8ba snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e958143 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fec3dd2 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5037a117 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e573947 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4eb29f1f snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f2c5c7a snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x502edb2a snd_soc_register_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5242623f snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52abb70a snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53dd11a0 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53de983e snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54866efb snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54c3f430 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54f26c1d snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x559c4b0c snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bee1539 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c1c1ffa snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52428940 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53fedf96 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56b3c22b snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x573e1f8c snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57695d0b snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59de9eeb snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a63783e snd_soc_dai_set_channel_map EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5db9abfc snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e136c37 dapm_clock_event EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ed94285 snd_soc_put_volsw EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f9153c3 snd_soc_put_volsw_sx EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60fa1a32 snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x610aefae snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6115bfae snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62918ad2 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63a10003 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65472b29 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x666ddf71 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x668c0e42 snd_soc_dapm_force_enable_pin_unlocked EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x679cf9c2 snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68e754ee snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bcc84fd snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67cfa359 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x684c54ef snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68d6c567 snd_soc_component_read_field EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c3ad7b4 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d94527a snd_soc_dai_set_clkdiv EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e67dea8 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fdb7759 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fdec204 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ff6d49b snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x702fbe36 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e961c05 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70e07d22 snd_soc_component_read EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71a44505 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72f9d636 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73029328 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x736aaa2e snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x759f03a8 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77b91935 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x785cdab6 snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78e0f461 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74f48d8e snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x766da48f snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77522de9 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x796e4273 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x799c2514 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79e4965c snd_soc_dpcm_can_be_prepared EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a052a57 snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b01d4fd snd_soc_tplg_component_remove EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b98cb4e snd_soc_put_strobe EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7bc3afa7 snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7dfbb448 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7bca4c7a snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c875e6d snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d8b7fd0 snd_soc_get_dai_name EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f1f0b54 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f58cfa3 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f95b40e snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f4b0aec snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f6dd437 snd_soc_daifmt_parse_format EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fd4fafc snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8008639c snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x810ee40b snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81431b4b snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x838be4ea dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86054932 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86ea36ba snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87af2061 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88e134cf snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89b2beba snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a133468 snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c354a22 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d947bbe snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e3b04f5 devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f6e44d0 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fb51205 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9090a127 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90c31105 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84204521 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8491a693 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x858dbca9 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87bb7a22 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x882f1420 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88771af8 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bcbdedd snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c81e2d1 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cd6968f snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d088579 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x906b6fd8 snd_soc_dapm_kcontrol_widget EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9108987a snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x924f4971 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92686151 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9216572b snd_soc_card_jack_new EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94717bd4 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x951a9633 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9507cedf null_dailink_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9544defa snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x958cd50d snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97547122 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b868944 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9641c240 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98b69b60 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x992108ee snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a9d12fd snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b630a81 snd_soc_component_init_regmap EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d0b2a9f snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e6a0583 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f926d5e snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa10e3310 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa13cddfd snd_soc_resume EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1812887 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1a8c624 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1cb19dd snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2a802c3 snd_soc_tplg_component_remove EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa32bb98b snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa430752f snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa455b00b snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4c33fd1 snd_soc_jack_add_gpiods EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4e3c9be snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5e0f162 snd_soc_card_get_kcontrol EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa69f70c9 snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8477c11 snd_soc_dai_compr_set_params EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa88d06c1 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa94bec09 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa02ff16 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab2e5486 snd_soc_of_get_slot_mask EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac2dd0ab snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacaee7cf snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xada289fd null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadafa793 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadb52621 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac466e3c snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaeac9dcd snd_soc_dai_set_tdm_slot EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf4d39d2 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafc7ead0 snd_soc_find_dai_with_mutex EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0e8ffa2 snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb44a27d2 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb676da10 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7d5d1f7 snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb894d6dc snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9fca121 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3af0255 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4cf99b4 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5eeb721 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb850632b snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8e7a48e snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9d43e30 snd_soc_dapm_new_controls EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb98826f soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd44e590 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf024f13 snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf585e26 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc11bbc59 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1e8020b snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2a65938 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4b88c3c snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc100043 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd08a6f2 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd33f3cc snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd50ff87 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc195da2c snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1cf37e1 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2fd2bbe snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3559fd6 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc36de09f snd_soc_dai_compr_shutdown EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc55e044b snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5cf3334 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6365fc0 snd_soc_jack_report EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6bf29e2 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7b4acde snd_soc_of_parse_node_prefix EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8fc528c snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc90dbba4 snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc96e18a4 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbb88093 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc938744e snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd3d4fc2 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd7ed3b8 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce6b38d4 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd122fa45 snd_soc_dpcm_be_can_update EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1fee3f0 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd26f6520 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd25108ff snd_soc_dpcm_runtime_update EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd357e96e snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd45077d1 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd36fbc0e snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd485c1da snd_soc_dai_compr_get_params EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4f65a1e snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd53f8258 dapm_pinctrl_event EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd64514a1 snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7446939 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd840dc41 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8b902cc snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd93fd573 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd64cebc0 snd_soc_dapm_sync EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb434f12 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0c23a7a snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbe5da1f snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf778d4e snd_soc_dapm_ignore_suspend EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3a9ef46 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3c89a57 snd_soc_resume EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3de5993 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5ca8522 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4a11425 snd_soc_dapm_add_routes EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe604f3bd snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe811ca84 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7c4a756 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 0xef5f4bb2 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec4b16ab snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec7b5fe4 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed4fff6b snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeee78c4c snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef09a1bc snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef2fea96 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef9fc4b9 devm_snd_dmaengine_pcm_register EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeff14988 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1035ad1 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf25b081c snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2a0f7c4 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf32cb04d snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5c5c90c snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeff7610b dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf101fcaa snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1fb1717 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf406f6e3 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4c48093 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf58a3579 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf765f02c snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8bd0a94 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8d591f2 snd_soc_dai_is_dummy EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfca93bbd snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff454602 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x619546de snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x964497c7 snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xab0768a9 snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xc0d590fc snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xcadf40ee snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff7252ab snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x0835cd7c snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x563f4b5f snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x6a26d50c snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x7e4e9811 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xabf0c683 snd_sof_dbg_init EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x01ad530c line6_pcm_acquire EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x032ece43 line6_resume EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0391cd06 line6_init_pcm @@ -19721,236 +19731,244 @@ EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe15d5060 line6_alloc_sysex_bu EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe88ddccf line6_send_raw_message_async EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xee359f27 line6_pcm_release EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf33ecc78 line6_probe +EXPORT_SYMBOL_GPL vmlinux 0x0007db93 task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable +EXPORT_SYMBOL_GPL vmlinux 0x002cadcd __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x0036d81c clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x00395ecc __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x0039db6f mmc_send_tuning EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority EXPORT_SYMBOL_GPL vmlinux 0x0060dc22 umd_load_blob EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0088438a l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x0094e184 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x008b250d devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0x009cc706 agp_remove_bridge EXPORT_SYMBOL_GPL vmlinux 0x00a5a16c blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x00a67b27 wm8350_device_init EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator EXPORT_SYMBOL_GPL vmlinux 0x00e61599 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x00f62b1e icc_enable -EXPORT_SYMBOL_GPL vmlinux 0x010a5ab7 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x011da754 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x0100e685 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x0112b17c __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x0112d341 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x0112ed1e dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0x01262814 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x0129afab event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x012b627a i2c_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop EXPORT_SYMBOL_GPL vmlinux 0x012eba87 __efivar_entry_iter EXPORT_SYMBOL_GPL vmlinux 0x01328f2b usb_hcd_unmap_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x0137598c blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x01439068 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x0138e070 msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0x014b5ce3 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x014c32df synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x014f629c sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x0166ef72 __traceiter_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x016a6c4a xen_xenbus_fops 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 0x018f1b11 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x0191465c skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x0194bec7 device_link_del EXPORT_SYMBOL_GPL vmlinux 0x0196c879 regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01af38ea icc_provider_add EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x01dabc39 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0x01dbaf35 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x01d58dd4 get_pid_task EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x01ea4762 dev_pm_genpd_set_next_wakeup EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x02040dbf devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire EXPORT_SYMBOL_GPL vmlinux 0x020d9a9f __blk_req_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0x02216f72 ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x0223ddb5 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x022c4a05 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x022ab3c7 ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x022e5bf1 vfio_device_put -EXPORT_SYMBOL_GPL vmlinux 0x0230d2a3 devlink_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0x02317a85 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x02375aa6 phy_led_trigger_change_speed EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x024109b8 __SCK__tp_func_unmap EXPORT_SYMBOL_GPL vmlinux 0x024b3283 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0x024bd8ea devlink_region_snapshot_id_put EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region EXPORT_SYMBOL_GPL vmlinux 0x024d54bc bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0x02550259 xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x0255a737 devm_acpi_dev_add_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0x02571f45 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x027735f0 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0273ecd7 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x02858d2c raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0x028cd97e pci_enable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x02abf3ee pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0x02c23151 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x02f7518f pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0x030127d8 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x03020e27 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0308c654 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x030c4941 l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0317e99e ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x032d644c firmware_kobj EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03501cdf spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x0356136f devlink_port_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x03839192 __SCK__tp_func_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe EXPORT_SYMBOL_GPL vmlinux 0x03992fd8 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x039bc356 ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0x03a64a40 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x03b3cd23 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x03bd69d8 gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x03c1c035 acrn_remove_intr_handler EXPORT_SYMBOL_GPL vmlinux 0x03c7e820 disk_update_readahead EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03ce7b85 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x03de7a47 __tracepoint_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x03e1ff5c gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x03ef3d05 netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x03f179c7 acpi_dev_get_resources EXPORT_SYMBOL_GPL vmlinux 0x03f20708 nvdimm_has_cache EXPORT_SYMBOL_GPL vmlinux 0x03f88527 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x03fabee0 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x03fafefc bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040f4e25 find_get_pid EXPORT_SYMBOL_GPL vmlinux 0x042522f2 sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0x042666f0 dax_layout_busy_page_range EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x04420408 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x04497df4 sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x044a0f90 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x044e666e __SCK__tp_func_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x0455326d fs_dax_get_by_bdev EXPORT_SYMBOL_GPL vmlinux 0x04599779 kset_create_and_add EXPORT_SYMBOL_GPL vmlinux 0x0460c1a2 pm_generic_resume_noirq EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0471530d gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0x0478bbed dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0x047a4c4c regulator_list_hardware_vsel EXPORT_SYMBOL_GPL vmlinux 0x0487dddb tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x048b14d6 strp_done EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk EXPORT_SYMBOL_GPL vmlinux 0x04961a6a acpiphp_unregister_attention EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c5fdc4 tcp_abort EXPORT_SYMBOL_GPL vmlinux 0x04c606c5 fuse_dev_operations EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04de4cd3 devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe EXPORT_SYMBOL_GPL vmlinux 0x04eaeeb4 dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0x050f30aa vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x04f8c64d spi_res_release EXPORT_SYMBOL_GPL vmlinux 0x050f9335 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x050fdd16 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x05196b49 __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x052484ac dma_mmap_pages EXPORT_SYMBOL_GPL vmlinux 0x0529af5b pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x052c39dc crypto_unregister_ahash EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x0546dfa5 xdp_return_frame EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05544d9c fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0x05550b18 acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x05568ad0 __tracepoint_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x0581f034 evict_inodes EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x058a6e3d device_del -EXPORT_SYMBOL_GPL vmlinux 0x058d3a0d clk_hw_is_prepared EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x05a3436e put_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x05aa7e48 class_unregister EXPORT_SYMBOL_GPL vmlinux 0x05ba549b store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0x05d15411 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x05d3e8bc security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x05be8305 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x05c9ad38 crypto_rng_reset EXPORT_SYMBOL_GPL vmlinux 0x05ebcba3 fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x05f5b3f5 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x05fa1911 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x06068c11 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x05ff2877 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0603303e devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0x0607f25e debugfs_create_file_size EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x06372f94 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x06467838 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x063d56e8 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x063f858b devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x064140e7 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x064b28fb gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0660bd3d devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0668bb05 ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0x066d28d4 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x066d6a76 dax_finish_sync_fault EXPORT_SYMBOL_GPL vmlinux 0x0671f98d dax_copy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x067b38c8 mmc_regulator_set_vqmmc EXPORT_SYMBOL_GPL vmlinux 0x06848964 blk_mq_unfreeze_queue EXPORT_SYMBOL_GPL vmlinux 0x069b3752 dma_wait_for_async_tx EXPORT_SYMBOL_GPL vmlinux 0x069ce6c3 srcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x06aa72e7 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x06b1df3b gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x06baf66a dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x06bbd362 skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0x06bcfad0 pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off EXPORT_SYMBOL_GPL vmlinux 0x06d2fb14 usb_hcd_amd_remote_wakeup_quirk EXPORT_SYMBOL_GPL vmlinux 0x06d3eb49 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x06d647ec devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0x06f96d2e crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0x070304e6 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x0706c612 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x070ceaeb regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax EXPORT_SYMBOL_GPL vmlinux 0x072ca599 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0x073fcc38 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x07455ae1 __tracepoint_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x07494385 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x074e1b0a ping_err EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy EXPORT_SYMBOL_GPL vmlinux 0x0775db00 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x07803ab2 platform_device_register EXPORT_SYMBOL_GPL vmlinux 0x078bbf66 devres_remove EXPORT_SYMBOL_GPL vmlinux 0x078ecf9a dma_resv_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x07902515 ptdump_walk_pgd_level_debugfs EXPORT_SYMBOL_GPL vmlinux 0x0795007f pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x079b0873 trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x07a85b4b crypto_unregister_aead 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 0x07d0a72d usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x07d97a37 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x07f9e518 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x07e8de38 sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0x07fc3d34 virtqueue_get_buf EXPORT_SYMBOL_GPL vmlinux 0x080b90a3 devm_gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x080c0f1f __fscrypt_prepare_lookup EXPORT_SYMBOL_GPL vmlinux 0x080fa9e3 devfreq_event_disable_edev EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x08162b45 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0x081828ae tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x0827cbf6 devlink_unregister EXPORT_SYMBOL_GPL vmlinux 0x082e3c63 devm_hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0x082f0b24 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x08435bb2 skb_morph EXPORT_SYMBOL_GPL vmlinux 0x08467490 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x08521630 platform_device_add EXPORT_SYMBOL_GPL vmlinux 0x0859ab91 md_run -EXPORT_SYMBOL_GPL vmlinux 0x086223a5 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x086f0be4 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x0873909a check_move_unevictable_pages EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match EXPORT_SYMBOL_GPL vmlinux 0x08986acf dma_buf_dynamic_attach EXPORT_SYMBOL_GPL vmlinux 0x089ba799 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x08a4b330 __tracepoint_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x08b0fc51 power_supply_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08c9fc29 switchdev_handle_fdb_del_to_device EXPORT_SYMBOL_GPL vmlinux 0x08d799ea max8997_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x08db8b84 acpi_gpiochip_request_interrupts EXPORT_SYMBOL_GPL vmlinux 0x08e9412d xhci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x08edc243 bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x090772c8 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x0901a50c do_splice_to EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x09095291 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x09174a52 br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x092305bc platform_get_resource EXPORT_SYMBOL_GPL vmlinux 0x0925493f clear_page_orig EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x09486cc6 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x094a9298 pid_vnr EXPORT_SYMBOL_GPL vmlinux 0x09547430 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x095f18b4 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x095dfe9c regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x095e40f7 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x095fbdd7 cpufreq_register_driver EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base +EXPORT_SYMBOL_GPL vmlinux 0x096cfffa regulator_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x09761130 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x09914d20 __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x09b40990 pwm_request EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09bbabaf skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node EXPORT_SYMBOL_GPL vmlinux 0x09e41897 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x09e51931 sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0x09e6960d pwm_capture EXPORT_SYMBOL_GPL vmlinux 0x0a00af04 register_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x0a02101a cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x0a0bc907 tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0x0a0c1ea6 pci_epc_map_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0x0a144c9a cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x0a1a3694 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x0a33dad6 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x0a1351d9 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x0a15d9b1 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0a351fbc __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x0a3877b9 ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a5a0f80 perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0x0a6375d6 vmf_insert_pfn_pud_prot EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send EXPORT_SYMBOL_GPL vmlinux 0x0a86bb51 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x0a9da63d lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0x0ab6200a regulator_get_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message EXPORT_SYMBOL_GPL vmlinux 0x0abd5230 pci_epf_type_add_cfs @@ -19958,273 +19976,291 @@ EXPORT_SYMBOL_GPL vmlinux 0x0abdf793 tty_kopen_shared EXPORT_SYMBOL_GPL vmlinux 0x0ad0cefd dm_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address EXPORT_SYMBOL_GPL vmlinux 0x0ad3c67a fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x0aeda011 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x0aff18f8 devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x0b02cb37 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x0afe29ff __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x0b03e2c1 sdio_enable_func EXPORT_SYMBOL_GPL vmlinux 0x0b0438d8 em_pd_get EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b09cde0 gpiod_set_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x0b110583 xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0x0b229e61 perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b3152a7 devlink_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0x0b3f0559 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0b424546 dev_pm_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x0b4ed3f7 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x0b50dc3f ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b79064f regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x0b80abb1 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x0b8a19e3 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x0b7aaa24 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x0b904be8 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x0bade112 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x0bb0aed1 devlink_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory EXPORT_SYMBOL_GPL vmlinux 0x0bbeaeba uv_bios_enum_ports -EXPORT_SYMBOL_GPL vmlinux 0x0bc8e850 regulator_register EXPORT_SYMBOL_GPL vmlinux 0x0bd02d3d vfio_pci_core_uninit_device EXPORT_SYMBOL_GPL vmlinux 0x0bd95ade tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0x0bf85ab9 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0be40b0c init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit EXPORT_SYMBOL_GPL vmlinux 0x0bfccddb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x0c192311 ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x0c1b08e0 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x0bff388a sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x0c217bf2 page_cache_ra_unbounded EXPORT_SYMBOL_GPL vmlinux 0x0c23a4a8 power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c331c72 tracing_snapshot_cond EXPORT_SYMBOL_GPL vmlinux 0x0c33bfc5 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x0c359b8f sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x0c3762fd dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0x0c3ef026 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x0c441454 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x0c7f972c __tracepoint_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string EXPORT_SYMBOL_GPL vmlinux 0x0c8fda69 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x0c9595cc dax_writeback_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x0ca93f29 tpm_default_chip EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ccc0619 tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x0ccf6164 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x0cd96488 devlink_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0x0ce044d6 rio_del_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0x0cee9f11 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x0cf0838e sdio_enable_func EXPORT_SYMBOL_GPL vmlinux 0x0cfe59cb hyperv_fill_flush_guest_mapping_list -EXPORT_SYMBOL_GPL vmlinux 0x0d013003 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0d088dd8 device_get_child_node_count EXPORT_SYMBOL_GPL vmlinux 0x0d0c5b01 fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0x0d0fe5f9 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x0d0ec707 thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x0d33a4c2 iommu_unmap_fast EXPORT_SYMBOL_GPL vmlinux 0x0d3c5910 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x0d3cc33e sched_trace_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0x0d40de1f __vring_new_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x0d41c45a tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x0d4385c3 crypto_register_aead EXPORT_SYMBOL_GPL vmlinux 0x0d4540e4 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d47bee0 skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc EXPORT_SYMBOL_GPL vmlinux 0x0d568d81 devm_spi_mem_dirmap_create EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d6403c8 regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x0d64394c rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x0d6b0950 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x0d8ebc1a inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0x0d9b22ce md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x0d9b2e44 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x0da818a3 vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0x0daea810 key_type_asymmetric EXPORT_SYMBOL_GPL vmlinux 0x0dbd33a8 tty_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x0dd1b95e wbt_enable_default EXPORT_SYMBOL_GPL vmlinux 0x0ddadea2 __SCT__tp_func_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order EXPORT_SYMBOL_GPL vmlinux 0x0de1ecb6 __clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0x0de7b70b irq_chip_mask_ack_parent EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e0ee1a9 security_path_rmdir EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e1a0827 crypto_alloc_acomp_node EXPORT_SYMBOL_GPL vmlinux 0x0e1b528b __hvc_resize EXPORT_SYMBOL_GPL vmlinux 0x0e1fc8ef __SCT__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x0e378bbd __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x0e35184b thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x0e3c97ad xenbus_register_driver_common EXPORT_SYMBOL_GPL vmlinux 0x0e4813f3 spi_mem_adjust_op_size EXPORT_SYMBOL_GPL vmlinux 0x0e511159 rio_dma_prep_xfer EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e63ae60 platform_get_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x0e6b51bd pci_set_host_bridge_release EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e6dfe57 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x0e79fc2c skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0x0e8bd204 blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0x0e90c38d ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x0e8c69a3 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x0e9543a9 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x0e96716f devm_hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0x0ea14049 extcon_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x0ea57aa3 fuse_mount_remove EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0eb7d777 of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter EXPORT_SYMBOL_GPL vmlinux 0x0ec2f50d dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x0ec85d17 kill_device EXPORT_SYMBOL_GPL vmlinux 0x0eeae3e8 key_type_encrypted EXPORT_SYMBOL_GPL vmlinux 0x0ef07070 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x0ef45a49 cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x0ef9e9ca usb_reset_configuration EXPORT_SYMBOL_GPL vmlinux 0x0efb4391 fuse_conn_get EXPORT_SYMBOL_GPL vmlinux 0x0efdfbff sysfs_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0x0f055fb4 of_pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused -EXPORT_SYMBOL_GPL vmlinux 0x0f0dd38c nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x0f102f15 __SCK__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x0f11fd26 devm_irq_setup_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x0f147b2e bus_for_each_drv EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f2073ef dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0x0f2c37f7 acpi_cppc_processor_probe EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f2f4d3f fwnode_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0x0f3e0a67 ata_sff_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x0f40a49d irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0x0f52a015 md_bitmap_copy_from_slot EXPORT_SYMBOL_GPL vmlinux 0x0f53c1f1 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x0f6efe26 sdio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x0f7714ed events_hybrid_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name EXPORT_SYMBOL_GPL vmlinux 0x0f83204b tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x0f885a62 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x0f9fc04e uv_get_archtype +EXPORT_SYMBOL_GPL vmlinux 0x0fb2f768 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x0fb92001 fwnode_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x0fbafe4f __fscrypt_prepare_readdir EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0ff29b0f gpiochip_relres_irq EXPORT_SYMBOL_GPL vmlinux 0x0ffca4e9 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x10080a51 fwnode_get_next_available_child_node EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1020fa76 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x101df81e wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x101f2219 __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x1025ee94 governor_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x10294983 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x102da7ba strp_process EXPORT_SYMBOL_GPL vmlinux 0x10350366 xenbus_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x1035bb5d dm_internal_resume EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names +EXPORT_SYMBOL_GPL vmlinux 0x10440428 __tracepoint_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x1046b40d phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x104ac3a9 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x1061a6f0 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1067a889 __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x1072b64f crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x107ad6bf scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x10526ef9 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x1078940b netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0x108026ec __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0x10829740 sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x10851263 wbc_detach_inode EXPORT_SYMBOL_GPL vmlinux 0x1088ea76 ftrace_set_notrace EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf EXPORT_SYMBOL_GPL vmlinux 0x108a6b55 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x10943795 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x10d95836 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x10c12929 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x10c3907c __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x10d3f97f perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x10d90598 ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10fb7442 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x10f45357 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x10f71116 evm_verifyxattr EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer EXPORT_SYMBOL_GPL vmlinux 0x1110863b platform_bus EXPORT_SYMBOL_GPL vmlinux 0x111801fc class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x112ef5d6 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x111b22dd gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x11375e94 perf_get_aux EXPORT_SYMBOL_GPL vmlinux 0x116180b5 hv_current_partition_id EXPORT_SYMBOL_GPL vmlinux 0x11740a6f pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x1174b99e __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x1183991b phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0x119da02a devm_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len EXPORT_SYMBOL_GPL vmlinux 0x11b6d47b nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0x11bbf41e bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0x11bd6135 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11bfeab5 fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0x11c21445 __mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x11c51b5b __pm_runtime_set_status EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11df9490 rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex EXPORT_SYMBOL_GPL vmlinux 0x11e494c7 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x12000006 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x12016cc5 of_pwm_xlate_with_flags EXPORT_SYMBOL_GPL vmlinux 0x12067905 iomap_writepages EXPORT_SYMBOL_GPL vmlinux 0x120c4bb3 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x121192b3 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x120ca62e ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0x12189359 __SCT__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x121cbe54 scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12202c23 inet6_cleanup_sock EXPORT_SYMBOL_GPL vmlinux 0x122374de bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12283fcd __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x1228503c scsi_check_sense EXPORT_SYMBOL_GPL vmlinux 0x1229cc09 sis_info133_for_sata EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header EXPORT_SYMBOL_GPL vmlinux 0x124ce3c7 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x125030fd ip6_input EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x126d9ccf device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x126f5400 crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0x127c109b __SCT__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x127c3650 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x1296d6ab bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x12964a86 fwnode_property_get_reference_args EXPORT_SYMBOL_GPL vmlinux 0x1298b786 phy_set_mode_ext EXPORT_SYMBOL_GPL vmlinux 0x12995163 wm831x_reg_read EXPORT_SYMBOL_GPL vmlinux 0x129b3097 led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x12b1456d ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x12b3c5f1 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x12bfefe9 nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x12cf16bc tpm_put_ops EXPORT_SYMBOL_GPL vmlinux 0x12db3a8b kvm_clock EXPORT_SYMBOL_GPL vmlinux 0x12e285ec is_uv_system EXPORT_SYMBOL_GPL vmlinux 0x12e2a80e efivar_entry_find EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister EXPORT_SYMBOL_GPL vmlinux 0x12f450f7 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x12f72c04 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x12fb401c crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x12fb5eb0 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x12fd4695 bio_start_io_acct_time EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x13217ce7 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x132541fd wm8350_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0x13297cf8 devm_of_led_get EXPORT_SYMBOL_GPL vmlinux 0x132b5a4d adp5520_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x133c1455 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x133bd7a9 security_path_link EXPORT_SYMBOL_GPL vmlinux 0x1340b23c irq_set_chip_and_handler_name EXPORT_SYMBOL_GPL vmlinux 0x135839a0 tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x136a40f3 bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0x136fdf9e crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x137812dd ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0x13852044 blk_queue_max_discard_segments EXPORT_SYMBOL_GPL vmlinux 0x1387eef5 clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x13891d38 cpufreq_generic_attr EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled EXPORT_SYMBOL_GPL vmlinux 0x138fba88 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x13bc9548 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x1399c39b __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x13b0f83d __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x13c428ec regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x13c5aabb regulator_set_voltage_time EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13cfd815 proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0x13e1f26f led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x13e43d72 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x13e9cbf0 device_rename EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13fa0e9e __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x13fd1709 securityfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x14058414 __SCK__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x141085e4 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x1407faf9 __traceiter_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x141d328f regulator_map_voltage_ascend EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x1429d42e crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x14284ec9 scsi_internal_device_unblock_nowait EXPORT_SYMBOL_GPL vmlinux 0x1446922c pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x14537cd2 get_device +EXPORT_SYMBOL_GPL vmlinux 0x144ea6b9 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0x1464368f regulator_set_active_discharge_regmap EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x146dc897 get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x149e12df __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x14820e75 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x1493c566 get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0x14ad7d72 serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0x14b415b3 genphy_c45_read_mdix EXPORT_SYMBOL_GPL vmlinux 0x14b91db0 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x14bb4767 __traceiter_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x14c178a3 debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14ded944 security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0x14dfec14 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x14e8eb0f crypto_shash_tfm_digest EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x14f23464 seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x150d465f gpiochip_line_is_open_drain EXPORT_SYMBOL_GPL vmlinux 0x151bb55d fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x15348654 bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x154d8675 devlink_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put EXPORT_SYMBOL_GPL vmlinux 0x155d133c wp_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x15659e9d device_destroy EXPORT_SYMBOL_GPL vmlinux 0x156e8afe __SCT__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x157001bf ping_close EXPORT_SYMBOL_GPL vmlinux 0x1571d174 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x158619cc sock_map_close EXPORT_SYMBOL_GPL vmlinux 0x158c482c pci_d3cold_disable EXPORT_SYMBOL_GPL vmlinux 0x15956ff1 trace_seq_path EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks -EXPORT_SYMBOL_GPL vmlinux 0x15af7ef1 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x15ba3b59 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x15c52bdd wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x15c5dc43 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x15c8abe6 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x15bf44f1 bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0x15cc30f1 cc_platform_has EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15eb9646 udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0x15f7002b led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0x15fe0300 pinctrl_pm_select_sleep_state EXPORT_SYMBOL_GPL vmlinux 0x1603a6b4 vfio_pci_core_match -EXPORT_SYMBOL_GPL vmlinux 0x16058eee inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0x162cdf1e power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x1634edcc spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x163d77c6 rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x167bb6fd ata_scsi_slave_config EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device EXPORT_SYMBOL_GPL vmlinux 0x1685f68c pm_schedule_suspend EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size @@ -20232,146 +20268,155 @@ EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x169f745c blk_queue_zone_write_granularity EXPORT_SYMBOL_GPL vmlinux 0x16a4e9a8 devm_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x16bb2c25 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x16c3bfee lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x16c2c1ee mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x16d3fb17 gpiochip_irq_domain_activate EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness EXPORT_SYMBOL_GPL vmlinux 0x16e66b43 crypto_aes_set_key EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x16f83f77 mmput EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x1713bf24 dax_layout_busy_page EXPORT_SYMBOL_GPL vmlinux 0x1718ecd3 pin_user_pages_fast_only EXPORT_SYMBOL_GPL vmlinux 0x17219c06 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x17292653 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x172962dc of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x172c41f9 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x173134a4 __trace_array_puts EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts EXPORT_SYMBOL_GPL vmlinux 0x1742383a led_stop_software_blink EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x1753cbe2 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x175fcaf4 crypto_ahash_setkey EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put EXPORT_SYMBOL_GPL vmlinux 0x17606542 usb_match_id EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub EXPORT_SYMBOL_GPL vmlinux 0x1765f521 generic_handle_domain_irq EXPORT_SYMBOL_GPL vmlinux 0x176adf76 xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x17731c7f set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version EXPORT_SYMBOL_GPL vmlinux 0x178af421 usb_disable_ltm EXPORT_SYMBOL_GPL vmlinux 0x179cd7b9 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x17a121ec proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page EXPORT_SYMBOL_GPL vmlinux 0x17b2db1e pci_load_and_free_saved_state EXPORT_SYMBOL_GPL vmlinux 0x17c3b050 clockevents_unbind_device EXPORT_SYMBOL_GPL vmlinux 0x17cc4a69 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x17d09512 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x17d9b462 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x17d65709 __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x17da5546 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17e06058 sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x17e4f4fa devm_pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0x17ea7f22 pci_epc_add_epf EXPORT_SYMBOL_GPL vmlinux 0x17eb5eef pci_get_dsn EXPORT_SYMBOL_GPL vmlinux 0x17fa3b19 sysfs_rename_link_ns EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x1800e95f sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x181c9a92 skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x1832817b vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x18353cda ptp_parse_header EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x1844be10 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x1857724c i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt -EXPORT_SYMBOL_GPL vmlinux 0x185d73c6 ata_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes EXPORT_SYMBOL_GPL vmlinux 0x1867d0e4 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x18682be8 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x18736d68 regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0x187bd6a1 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x1883630c fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0x1888a1af of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x18911f54 __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x189d1de2 regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x18ac3618 blk_mq_sched_try_insert_merge EXPORT_SYMBOL_GPL vmlinux 0x18b2790f uv_bios_obj_count EXPORT_SYMBOL_GPL vmlinux 0x18b29080 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x18bd511b crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x18b9f75b sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0x18bde336 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x18c935f9 fwnode_device_is_available EXPORT_SYMBOL_GPL vmlinux 0x18cf3a2d vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x18de1d08 tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg EXPORT_SYMBOL_GPL vmlinux 0x18e62bff irq_domain_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x18ec90ef da9052_request_irq EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x190adb13 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x190f1742 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x1910d5db pwm_apply_state EXPORT_SYMBOL_GPL vmlinux 0x1924b3d7 spi_controller_dma_unmap_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0x192b8f39 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x192f16b5 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x1933ff1c __traceiter_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x193a9f2f usb_phy_get_charger_current EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state EXPORT_SYMBOL_GPL vmlinux 0x194af60d tty_buffer_lock_exclusive EXPORT_SYMBOL_GPL vmlinux 0x1953ba17 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x196475a3 devlink_remote_reload_actions_performed EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore EXPORT_SYMBOL_GPL vmlinux 0x1975fa50 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x1988df2a tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19a44130 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x19a60ded aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x19a77131 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x19bdd5a7 perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x19c24087 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x19d48798 crypto_stats_ahash_update EXPORT_SYMBOL_GPL vmlinux 0x19dbd163 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x19dbdf77 sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x19e0ae50 __SCT__tp_func_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x19e0ff2a input_ff_event EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19ec6af8 crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x19f64fee __tracepoint_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x19fdb898 sbitmap_bitmap_show EXPORT_SYMBOL_GPL vmlinux 0x1a07b6f2 pci_try_reset_function EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a215787 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x1a21cb70 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x1a1d7701 platform_device_put EXPORT_SYMBOL_GPL vmlinux 0x1a30a523 ehci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x1a3dd06e acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x1a3f2df5 devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x1a44c096 fsnotify_destroy_mark EXPORT_SYMBOL_GPL vmlinux 0x1a479931 virtqueue_add_sgs EXPORT_SYMBOL_GPL vmlinux 0x1a4d7003 compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1a4ff168 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1a507ded regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a77ed11 device_initialize EXPORT_SYMBOL_GPL vmlinux 0x1a7988a4 to_nvdimm EXPORT_SYMBOL_GPL vmlinux 0x1a7ecd83 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x1a84ebd9 ata_pio_need_iordy EXPORT_SYMBOL_GPL vmlinux 0x1a891a1d regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x1a8d9cef devlink_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0x1a9754cf sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x1aa49a3b wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x1aaef840 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x1a9791ee devm_thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x1ab2ea7c max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x1ab6fa36 security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0x1abf3b4b phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x1ab32238 crypto_shash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x1ad58467 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x1ad5f70a devm_regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x1ae541cb verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x1aecd9b6 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x1af1bba7 sock_map_destroy EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1af5c521 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x1af77c58 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x1afdbb54 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain EXPORT_SYMBOL_GPL vmlinux 0x1b09a0e5 scsi_target_block EXPORT_SYMBOL_GPL vmlinux 0x1b1349bd acpi_gpiochip_free_interrupts EXPORT_SYMBOL_GPL vmlinux 0x1b3833c3 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x1b4d3700 regmap_raw_write EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b55fc62 devm_spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0x1b5885e7 devfreq_event_set_event EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b792942 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x1b762bce dev_pm_qos_expose_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b941fd7 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x1b94b2f9 spi_bus_lock EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid +EXPORT_SYMBOL_GPL vmlinux 0x1ba68340 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x1bbdac5d platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x1bbdd99f vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bd2386e sata_link_debounce EXPORT_SYMBOL_GPL vmlinux 0x1bd996b4 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x1be1e7eb mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x1bde2071 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x1be0aac2 bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x1be1345d wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1be379d8 ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0x1beb0c26 od_register_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained EXPORT_SYMBOL_GPL vmlinux 0x1bfe8690 devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x1bfea581 tty_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x1c0e50e5 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1c123079 crypto_stats_rng_generate EXPORT_SYMBOL_GPL vmlinux 0x1c17c9b8 usb_lock_device_for_reset EXPORT_SYMBOL_GPL vmlinux 0x1c186d6a fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x1c1b99b4 crypto_unregister_aeads EXPORT_SYMBOL_GPL vmlinux 0x1c367a31 dw_pcie_ep_init_complete EXPORT_SYMBOL_GPL vmlinux 0x1c39632f serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x1c3db626 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x1c3e76d3 l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0x1c420810 tpm1_do_selftest EXPORT_SYMBOL_GPL vmlinux 0x1c472c82 pci_set_pcie_reset_state EXPORT_SYMBOL_GPL vmlinux 0x1c475f13 __devm_alloc_percpu @@ -20384,10 +20429,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x1c764526 __SCT__tp_func_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 EXPORT_SYMBOL_GPL vmlinux 0x1c83865b devres_open_group EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c92e80b strp_process -EXPORT_SYMBOL_GPL vmlinux 0x1c959fc3 device_set_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x1c96355e watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x1c978ed5 __tracepoint_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward EXPORT_SYMBOL_GPL vmlinux 0x1cb095fc devm_hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value @@ -20395,81 +20437,82 @@ EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off EXPORT_SYMBOL_GPL vmlinux 0x1cc31135 devm_fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x1cd6d5ed usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x1ce58a02 thermal_zone_device_disable EXPORT_SYMBOL_GPL vmlinux 0x1cf13724 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x1cfdec2a rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create EXPORT_SYMBOL_GPL vmlinux 0x1d060e5c acpi_cppc_processor_exit EXPORT_SYMBOL_GPL vmlinux 0x1d0852fd phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x1d090aff rtc_initialize_alarm EXPORT_SYMBOL_GPL vmlinux 0x1d0e899c phy_create EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d2b6f8f __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x1d375522 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x1d401dad fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x1d31f20c sdio_writew EXPORT_SYMBOL_GPL vmlinux 0x1d4a79e7 misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0x1d4b9cb9 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x1d4dc290 sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x1d62d5b7 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x1d6b32b4 __tracepoint_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x1d6bf384 __xenmem_reservation_va_mapping_update EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7841dd bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0x1d7e6f69 cpu_device_create EXPORT_SYMBOL_GPL vmlinux 0x1d81fa2e md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x1d886a7c sdio_writesb EXPORT_SYMBOL_GPL vmlinux 0x1d8fae9e dev_pm_opp_set_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle EXPORT_SYMBOL_GPL vmlinux 0x1d9bbf42 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x1da32a5b spi_replace_transfers EXPORT_SYMBOL_GPL vmlinux 0x1dba2bfd wm831x_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x1dcad402 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1dda756f __page_file_mapping EXPORT_SYMBOL_GPL vmlinux 0x1ddd29fc __SCK__tp_func_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x1de13587 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x1df676f8 __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm EXPORT_SYMBOL_GPL vmlinux 0x1dfee357 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x1dff020f ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x1dff7508 pci_epc_mem_init EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release EXPORT_SYMBOL_GPL vmlinux 0x1e085205 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x1e0e0c43 ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x1e0e5423 trace_output_call EXPORT_SYMBOL_GPL vmlinux 0x1e1c1a2f nvdimm_region_notify EXPORT_SYMBOL_GPL vmlinux 0x1e201b69 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x1e3449dd pskb_put EXPORT_SYMBOL_GPL vmlinux 0x1e3e3afa dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x1e3e7311 kern_mount EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e433699 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1e476c01 devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0x1e486b42 xhci_get_ep_ctx EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x1e69ad75 __SCK__tp_func_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0x1e72fa5e vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x1e7848a2 __tracepoint_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e8580a4 bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x1e8d317f ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x1e8affca netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush EXPORT_SYMBOL_GPL vmlinux 0x1e912415 uv_bios_get_heapsize +EXPORT_SYMBOL_GPL vmlinux 0x1e92721f icc_link_create 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 0x1e9cde4d sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x1e9ecf9d __tracepoint_map EXPORT_SYMBOL_GPL vmlinux 0x1eac9f09 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x1ead079e ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x1eb6f709 fixed_phy_register_with_gpiod EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebcd1e2 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x1ebad1f5 skb_zerocopy_iter_dgram EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecc2b30 event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1ed91e9d perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x1edc9ba9 device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0x1edff725 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x1eebd552 dev_pm_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x1eeec8ba tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1ef63220 l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0x1f07a2dc clk_hw_register_composite EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare EXPORT_SYMBOL_GPL vmlinux 0x1f0f27d6 key_type_user EXPORT_SYMBOL_GPL vmlinux 0x1f15d50c xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x1f38a0c4 __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f49f2b2 mmput +EXPORT_SYMBOL_GPL vmlinux 0x1f53c577 __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f58b9be register_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x1f5ece97 cond_wakeup_cpu0 -EXPORT_SYMBOL_GPL vmlinux 0x1f63723d devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x1f6aa7e1 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x1f6bcd6c icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x1f6fba95 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x1f761e3a sdio_memcpy_fromio EXPORT_SYMBOL_GPL vmlinux 0x1f7acea8 blk_queue_rq_timeout EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout EXPORT_SYMBOL_GPL vmlinux 0x1f8550b8 anon_transport_class_register @@ -20482,48 +20525,41 @@ EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref EXPORT_SYMBOL_GPL vmlinux 0x1fbdcc53 devm_power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0x1fd38ccf register_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1ff128c0 inet_hash EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x200f98c3 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x201668a7 ehci_adjust_port_wakeup_flags EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write EXPORT_SYMBOL_GPL vmlinux 0x20391b67 nvmem_cell_read_u32 EXPORT_SYMBOL_GPL vmlinux 0x204ef741 pcc_mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x2052d2ca gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0x205ff5af nvdimm_badblocks_populate EXPORT_SYMBOL_GPL vmlinux 0x20619177 fpu_alloc_guest_fpstate EXPORT_SYMBOL_GPL vmlinux 0x206e9488 relay_close EXPORT_SYMBOL_GPL vmlinux 0x206f0e92 class_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0x206f0ea0 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x20711cea nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0x207ccf59 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x207f1d51 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x207f75f6 dax_layout_busy_page_range EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr -EXPORT_SYMBOL_GPL vmlinux 0x208b96f8 thermal_zone_bind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x208d1fff xenbus_dev_error EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find EXPORT_SYMBOL_GPL vmlinux 0x2098d2cc dm_get_md EXPORT_SYMBOL_GPL vmlinux 0x20a79cb3 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x20d290b9 pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0x20d91263 ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0x20dda3af __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x20f33332 devm_namespace_enable -EXPORT_SYMBOL_GPL vmlinux 0x20f35853 __tracepoint_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x20f35c79 rio_add_device EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource EXPORT_SYMBOL_GPL vmlinux 0x210127d6 dma_buf_map_attachment EXPORT_SYMBOL_GPL vmlinux 0x211b231d badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0x212a6713 devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x2140d91a __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x2124142b clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x212c5a50 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x21478f36 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x214d22c3 perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x216c3a88 exportfs_decode_fh_raw EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x216df391 init_dummy_netdev EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg EXPORT_SYMBOL_GPL vmlinux 0x217f43fd vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0x21a46c06 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x219c3b7c nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21a6c9c8 xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0x21a8e509 component_master_add_with_match EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id EXPORT_SYMBOL_GPL vmlinux 0x21acdd4b cpufreq_dbs_governor_init @@ -20531,176 +20567,176 @@ EXPORT_SYMBOL_GPL vmlinux 0x21bd97a4 pci_msi_mask_irq 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 0x21f7307c i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x220fa7f6 crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str EXPORT_SYMBOL_GPL vmlinux 0x2213bc5d dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x2219db69 events_hybrid_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x223e5c21 devm_clk_unregister EXPORT_SYMBOL_GPL vmlinux 0x22429577 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0x2242edab crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x224affdf vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x225c0fac blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x2251562a netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2274195e dev_pm_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x227b5c3d __xenbus_register_backend EXPORT_SYMBOL_GPL vmlinux 0x227e0294 tpm1_getcap EXPORT_SYMBOL_GPL vmlinux 0x22803a42 component_unbind_all EXPORT_SYMBOL_GPL vmlinux 0x229dbf06 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x22a29327 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x22a88486 mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0x22aedd3d sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x22b11dd3 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x22bdf5b7 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x22b09378 rtnl_af_unregister EXPORT_SYMBOL_GPL vmlinux 0x22bf8b82 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x22ca6da5 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x22d5a64b kern_mount EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22e3ba20 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x22e6c2db devlink_net EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x22fe4edd pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x2333e633 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x2338810f skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x231d8ac2 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x232f0af3 ata_host_register EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime EXPORT_SYMBOL_GPL vmlinux 0x23432fcc n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x234bd1a9 icc_set_tag EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x2352c322 bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0x235d17be ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2369e8f5 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x23617720 devlink_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node EXPORT_SYMBOL_GPL vmlinux 0x2386c0ea __SCT__tp_func_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0x23921c77 debugfs_create_x64 EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23991813 cpufreq_cpu_get_raw EXPORT_SYMBOL_GPL vmlinux 0x23aa267e pci_device_is_present EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep -EXPORT_SYMBOL_GPL vmlinux 0x23d444d0 bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x23b7780a device_phy_find_device EXPORT_SYMBOL_GPL vmlinux 0x23e39763 vfio_group_get_external_user EXPORT_SYMBOL_GPL vmlinux 0x23ec4f82 dax_region_put EXPORT_SYMBOL_GPL vmlinux 0x23f1a32f rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x23fb231c i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0x23fc92b0 __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x23fd272d tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2408da04 phy_driver_is_genphy EXPORT_SYMBOL_GPL vmlinux 0x2409caa0 vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x240b3fe9 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x240aed46 __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x2410c338 x86_virt_spec_ctrl EXPORT_SYMBOL_GPL vmlinux 0x24187f96 irq_get_default_host EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const EXPORT_SYMBOL_GPL vmlinux 0x242edbbf component_master_del EXPORT_SYMBOL_GPL vmlinux 0x2438367f posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x245166d5 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x244201bb __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x245c7251 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x245d9214 spi_write_then_read EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size EXPORT_SYMBOL_GPL vmlinux 0x2470518e dev_pm_set_dedicated_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2473ea41 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x248397aa xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf EXPORT_SYMBOL_GPL vmlinux 0x2488825d debugfs_create_file_unsafe EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x24a6bace pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x24b04254 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x24bddde0 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x24c70883 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x24c797ee ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x24c92bc8 cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24dcd792 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x24e3a94f crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list EXPORT_SYMBOL_GPL vmlinux 0x24ed2826 tps6586x_writes 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 0x24ff6e1b icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x2503f1fc of_devfreq_cooling_register_power EXPORT_SYMBOL_GPL vmlinux 0x2509133c ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x25255de4 fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem -EXPORT_SYMBOL_GPL vmlinux 0x253748c0 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x25319b39 sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x254db115 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x253a458f devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0x255668bf __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x25647ede __traceiter_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x256f7f83 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x257ef324 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x25720c2b spi_res_add EXPORT_SYMBOL_GPL vmlinux 0x2582ae8f devm_clk_get_prepared EXPORT_SYMBOL_GPL vmlinux 0x25876639 devm_hwrng_register EXPORT_SYMBOL_GPL vmlinux 0x258a1c4d devm_spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0x258a53fe fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0x258db8dc dev_pm_qos_hide_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk EXPORT_SYMBOL_GPL vmlinux 0x2599464f dw_pcie_find_capability EXPORT_SYMBOL_GPL vmlinux 0x25a01f06 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x25a0fa5a regmap_read EXPORT_SYMBOL_GPL vmlinux 0x25b1b56a virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data EXPORT_SYMBOL_GPL vmlinux 0x25be5a64 dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x25c20c99 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x25e1a657 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0x25e7cc4b xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x25e45257 __tracepoint_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25f11ece wm8350_reg_read EXPORT_SYMBOL_GPL vmlinux 0x25fa99fd tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x260282ad regulator_set_mode EXPORT_SYMBOL_GPL vmlinux 0x2605ded5 pci_epc_stop EXPORT_SYMBOL_GPL vmlinux 0x2622828a scsi_register_device_handler EXPORT_SYMBOL_GPL vmlinux 0x2626d564 pci_disable_ats EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0x2631649b sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem EXPORT_SYMBOL_GPL vmlinux 0x2642d6d7 firmware_request_nowarn EXPORT_SYMBOL_GPL vmlinux 0x26478675 hsu_dma_remove EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26578d51 sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0x265b6e29 hyperv_flush_guest_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x265f0fd7 nf_checksum EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock EXPORT_SYMBOL_GPL vmlinux 0x267538db xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x2675b653 tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu EXPORT_SYMBOL_GPL vmlinux 0x2691d4b5 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x2698157a tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x269e89cf crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0x26a0b349 gov_attr_set_init EXPORT_SYMBOL_GPL vmlinux 0x26a673b3 blkdev_report_zones EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26b58843 device_create_file EXPORT_SYMBOL_GPL vmlinux 0x26b95c7a pinctrl_pm_select_default_state EXPORT_SYMBOL_GPL vmlinux 0x26c46d65 wm831x_auxadc_read EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any EXPORT_SYMBOL_GPL vmlinux 0x26d5c202 vfio_uninit_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x26da66e4 spi_async_locked EXPORT_SYMBOL_GPL vmlinux 0x26e201f8 iommu_set_pgtable_quirks EXPORT_SYMBOL_GPL vmlinux 0x26e9fe67 pci_restore_msi_state EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26f11ba2 __tracepoint_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x26f65eaa blk_ksm_is_superset EXPORT_SYMBOL_GPL vmlinux 0x26fd13e7 smca_banks -EXPORT_SYMBOL_GPL vmlinux 0x272a6d7d find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x270714e1 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x2717e679 xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0x2734033a xenbus_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x2735c145 irq_domain_create_legacy EXPORT_SYMBOL_GPL vmlinux 0x273aab74 xen_have_vector_callback EXPORT_SYMBOL_GPL vmlinux 0x273aff5c __SCT__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x273c208d trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x27494e4d devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x273b6e21 __mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained EXPORT_SYMBOL_GPL vmlinux 0x2758bea9 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x2767b4f8 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x275be19d devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x27817885 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x27922227 xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x27a41884 balloon_page_list_enqueue EXPORT_SYMBOL_GPL vmlinux 0x27a68e0e fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x27b11b91 blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0x27b37f43 of_icc_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x27b3f277 blk_mq_virtio_map_queues EXPORT_SYMBOL_GPL vmlinux 0x27bde901 i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0x27c05082 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x27c0a894 regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0x27c50a86 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x27ccce3d device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x27c88293 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x27cb7fe1 locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0x27d03c15 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x27ea3d6c regulator_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0x27ee9ed7 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x27f2c549 put_pid EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x27fad420 devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x28076caf pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0x280d8cb5 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x280f10b2 devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x2816fdf1 gpiod_direction_output_raw EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf EXPORT_SYMBOL_GPL vmlinux 0x282500eb dma_run_dependencies EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x282eda66 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x283ee85d spi_bus_lock EXPORT_SYMBOL_GPL vmlinux 0x284bc984 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x284fedb9 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x284ffcf6 xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0x28523437 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x285753ee device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x285da649 ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached EXPORT_SYMBOL_GPL vmlinux 0x2864d1e9 pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0x286545d0 PageHuge @@ -20709,366 +20745,359 @@ EXPORT_SYMBOL_GPL vmlinux 0x28737250 transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0x2873a475 blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister EXPORT_SYMBOL_GPL vmlinux 0x28a2a49c pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x28a56c2a devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0x28a5a8d2 __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28ab13e0 dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x28b64a7b iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x28b87e92 regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x28be0cef misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0x28becbb2 do_xdp_generic EXPORT_SYMBOL_GPL vmlinux 0x28c8d944 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x28e4c342 cpufreq_unregister_governor EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0x28f05516 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x28f61f8e __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x28f91665 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x28fc8a36 crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0x28fd1db2 cpufreq_dbs_governor_start EXPORT_SYMBOL_GPL vmlinux 0x290a7c16 devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x290fdf4b inet6_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x29169978 usb_anchor_urb EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine EXPORT_SYMBOL_GPL vmlinux 0x29366b61 register_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0x29422a73 i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0x2946aaff __blk_req_zone_write_unlock EXPORT_SYMBOL_GPL vmlinux 0x294f73c6 fuse_request_end EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x2956eb61 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x295711e0 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x295a6525 skb_gso_validate_network_len EXPORT_SYMBOL_GPL vmlinux 0x295ddbee tps6586x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x2964964f gnttab_page_cache_init EXPORT_SYMBOL_GPL vmlinux 0x296ab2f4 iommu_map_atomic -EXPORT_SYMBOL_GPL vmlinux 0x2976d9e9 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x29701b97 inet6_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x298caa81 pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x29b4cddf switchdev_handle_fdb_add_to_device -EXPORT_SYMBOL_GPL vmlinux 0x29b8abe1 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x29a06439 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x29c093c2 cpuidle_register EXPORT_SYMBOL_GPL vmlinux 0x29d21609 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x29d3521e console_drivers EXPORT_SYMBOL_GPL vmlinux 0x29d6a295 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x29dd1d96 dev_pm_qos_hide_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fb4886 __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0x29fd50b1 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x2a0040de xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x29fdf32b intel_pinctrl_get_soc_data EXPORT_SYMBOL_GPL vmlinux 0x2a0f9ab3 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x2a20bb3f platform_device_add_data EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2a40d945 l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2a4ded9a bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0x2a543b3e ata_bmdma_dumb_qc_prep 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 0x2a728d68 l3mdev_ifindex_lookup_by_table_id EXPORT_SYMBOL_GPL vmlinux 0x2a85206d __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x2a8706e8 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x2a89d58e device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x2a89dc4f devm_clk_unregister EXPORT_SYMBOL_GPL vmlinux 0x2a8af55a acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x2a94c9ab sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0x2aa173d5 dev_pm_qos_expose_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x2aa9f1c9 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x2aaae0ef hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2ab48b53 platform_irq_count EXPORT_SYMBOL_GPL vmlinux 0x2ac70f5f ohci_hub_status_data EXPORT_SYMBOL_GPL vmlinux 0x2ace9097 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x2ae028c9 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x2ad872f1 fib6_new_table EXPORT_SYMBOL_GPL vmlinux 0x2ae13459 usb_store_new_id EXPORT_SYMBOL_GPL vmlinux 0x2ae72b30 shake_page -EXPORT_SYMBOL_GPL vmlinux 0x2af479c3 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x2afc78f7 device_unregister EXPORT_SYMBOL_GPL vmlinux 0x2aff68f9 perf_guest_get_msrs EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2b0de0d9 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x2b0e2283 rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b115785 __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x2b16e62a mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0x2b1850e3 xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x2b1acaaf cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x2b1e3ce3 platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x2b2a531d iommu_setup_dma_ops EXPORT_SYMBOL_GPL vmlinux 0x2b3acc3b __SCT__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x2b3e5a24 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x2b421a3c devlink_param_register EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update EXPORT_SYMBOL_GPL vmlinux 0x2b53c5fd acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0x2b545989 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x2b5632ee sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0x2b575c61 create_signature EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear -EXPORT_SYMBOL_GPL vmlinux 0x2b6ca1e7 sdio_readl EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init EXPORT_SYMBOL_GPL vmlinux 0x2b7a4bf4 tty_port_link_device EXPORT_SYMBOL_GPL vmlinux 0x2b8b930a genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x2b8f7b50 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x2b9015bf fsverity_cleanup_inode EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2b9abd24 __ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x2b9c7c56 dma_get_merge_boundary EXPORT_SYMBOL_GPL vmlinux 0x2bbddabe pci_epc_get_msi EXPORT_SYMBOL_GPL vmlinux 0x2bbfb31a dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x2bc0b937 regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0x2bc1000c led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x2bc53f74 __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x2bd4a21d page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x2bd624e6 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x2bc38fca rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x2bfa52ad pcie_bus_configure_settings EXPORT_SYMBOL_GPL vmlinux 0x2bfc33e3 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x2c09e797 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x2c178ccf __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied EXPORT_SYMBOL_GPL vmlinux 0x2c220f41 hsu_dma_probe +EXPORT_SYMBOL_GPL vmlinux 0x2c2405ce ata_scsi_queuecmd EXPORT_SYMBOL_GPL vmlinux 0x2c261910 tty_port_register_device EXPORT_SYMBOL_GPL vmlinux 0x2c270fb2 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x2c2d8d8e dev_pm_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family +EXPORT_SYMBOL_GPL vmlinux 0x2c2fc724 gpiod_get_array_value EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x2c3471a9 __nvdimm_create EXPORT_SYMBOL_GPL vmlinux 0x2c4139cf devm_usb_get_phy_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x2c430ed1 iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0x2c52b38d gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x2c51f7cf trace_event_ignore_this_pid EXPORT_SYMBOL_GPL vmlinux 0x2c599f70 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x2c5aeed3 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x2c5fad4f udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0x2c61bb09 uv_bios_get_pci_topology -EXPORT_SYMBOL_GPL vmlinux 0x2c629a45 crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c665bc7 css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put EXPORT_SYMBOL_GPL vmlinux 0x2c7c79ce srcu_torture_stats_print EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping EXPORT_SYMBOL_GPL vmlinux 0x2c80a2eb iomap_fiemap EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types EXPORT_SYMBOL_GPL vmlinux 0x2c96b8b1 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x2c9ba62d gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0x2c9ecbe5 dm_accept_partial_bio EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get +EXPORT_SYMBOL_GPL vmlinux 0x2ca93b3c devlink_param_unregister EXPORT_SYMBOL_GPL vmlinux 0x2caaa46b param_set_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x2cc0da05 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x2cc4d7c9 devlink_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x2ce6b9af __serdev_device_driver_register EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram EXPORT_SYMBOL_GPL vmlinux 0x2ced330f usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x2cf60878 ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0x2cf85365 ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x2d056cef ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d2c0c80 bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0x2d2c402b dev_pm_set_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current EXPORT_SYMBOL_GPL vmlinux 0x2d393f48 intel_soc_pmic_exec_mipi_pmic_seq_element EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts EXPORT_SYMBOL_GPL vmlinux 0x2d44be3b __SCT__tp_func_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x2d4d443f __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x2d4ff1d4 __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x2d7a3a88 crypto_unregister_kpp EXPORT_SYMBOL_GPL vmlinux 0x2d7f9007 usb_wakeup_enabled_descendants EXPORT_SYMBOL_GPL vmlinux 0x2d89b1ad __SCT__tp_func_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x2d8b407b fuse_fill_super_common EXPORT_SYMBOL_GPL vmlinux 0x2daaa07e thermal_zone_get_offset EXPORT_SYMBOL_GPL vmlinux 0x2db55340 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x2dba4ff5 security_path_rmdir EXPORT_SYMBOL_GPL vmlinux 0x2dc176c4 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x2dc1c0a4 icc_provider_add EXPORT_SYMBOL_GPL vmlinux 0x2dce80c8 phy_check_downshift -EXPORT_SYMBOL_GPL vmlinux 0x2de83746 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x2dda19ae clk_gate_restore_context EXPORT_SYMBOL_GPL vmlinux 0x2deb97c6 led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x2df57eb4 devfreq_get_devfreq_by_node EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e0b1b49 skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0x2e1497a0 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x2e1aefdd regulator_unregister EXPORT_SYMBOL_GPL vmlinux 0x2e1c59e6 iomap_page_mkwrite EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace EXPORT_SYMBOL_GPL vmlinux 0x2e241ce2 usb_amd_pt_check_port EXPORT_SYMBOL_GPL vmlinux 0x2e27c15f set_selection_kernel EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap -EXPORT_SYMBOL_GPL vmlinux 0x2e3ace1e ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x2e3c201d tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x2e44dbaf ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0x2e49cf7c devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x2e4ecbf1 clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0x2e56ba41 __irq_set_handler EXPORT_SYMBOL_GPL vmlinux 0x2e5d7709 balloon_page_list_dequeue EXPORT_SYMBOL_GPL vmlinux 0x2e670427 sbitmap_queue_wake_all EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict EXPORT_SYMBOL_GPL vmlinux 0x2e7145ac pci_hp_add_bridge EXPORT_SYMBOL_GPL vmlinux 0x2e7a17d4 vmap_pfn -EXPORT_SYMBOL_GPL vmlinux 0x2e82a242 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x2e88f948 addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0x2e9e1890 kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x2ea6d2d1 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x2eba0a5b vfs_kern_mount EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2eccd61c security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x2ed52764 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ec8538c devfreq_get_devfreq_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x2eda4807 is_uv_hubbed -EXPORT_SYMBOL_GPL vmlinux 0x2edccf61 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x2ee43441 xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor EXPORT_SYMBOL_GPL vmlinux 0x2ee7c5d0 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x2eefc835 inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0x2ef04e7b blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x2efb27c9 netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x2f0a85ac fat_get_dotdot_entry EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f1040d1 icc_node_add EXPORT_SYMBOL_GPL vmlinux 0x2f1fc11d fat_time_unix2fat EXPORT_SYMBOL_GPL vmlinux 0x2f2069e8 devm_power_supply_register EXPORT_SYMBOL_GPL vmlinux 0x2f2892e7 __blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f320e89 gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x2f3b6685 fb_deferred_io_fsync EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec EXPORT_SYMBOL_GPL vmlinux 0x2f4eda0b driver_find -EXPORT_SYMBOL_GPL vmlinux 0x2f5a1262 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x2f578c94 xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x2f5fa799 usb_enable_ltm EXPORT_SYMBOL_GPL vmlinux 0x2f5fe6f3 nvdimm_clear_poison EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier EXPORT_SYMBOL_GPL vmlinux 0x2f6ce941 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x2f723ac1 acpi_spi_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x2f7a7fcf pci_acpi_set_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0x2f8bd145 __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x2f8d5f6f switchdev_handle_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc EXPORT_SYMBOL_GPL vmlinux 0x2f93f8f4 iopf_queue_add_device EXPORT_SYMBOL_GPL vmlinux 0x2f947e8a dma_buf_mmap EXPORT_SYMBOL_GPL vmlinux 0x2f9677d3 pci_epc_mem_alloc_addr EXPORT_SYMBOL_GPL vmlinux 0x2fb2ff77 devm_acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x2fbffa15 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x2fbd552d lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj EXPORT_SYMBOL_GPL vmlinux 0x2fcfe31f em_dev_register_perf_domain EXPORT_SYMBOL_GPL vmlinux 0x2fe2b385 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x2fe2ebe5 acpi_create_platform_device EXPORT_SYMBOL_GPL vmlinux 0x2fedfa16 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x2ff1f7ba crypto_register_aeads EXPORT_SYMBOL_GPL vmlinux 0x2ff6f114 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x2ffa0641 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x3000966f blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x2ffe0f0c __raw_v4_lookup EXPORT_SYMBOL_GPL vmlinux 0x3022c387 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x303a8dc2 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x303fc2e2 __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x30486cf9 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x3048c558 devlink_region_create EXPORT_SYMBOL_GPL vmlinux 0x3050aa8d vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0x305a7cab __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3055adad bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0x305ffa13 pinctrl_lookup_state EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x306b3af5 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x3068a930 crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0x306f9729 bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x3071d5ca ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x3076bbcc devlink_free EXPORT_SYMBOL_GPL vmlinux 0x3078f812 get_dev_pagemap EXPORT_SYMBOL_GPL vmlinux 0x307f513e phy_put -EXPORT_SYMBOL_GPL vmlinux 0x309725a1 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x30867997 ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0x309e3351 iomap_migrate_page EXPORT_SYMBOL_GPL vmlinux 0x30a5e42f pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x30af62b3 skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0x30b69cb1 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x30be9d8f inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x30a75d89 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x30b17ebc gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x30bc1aba sdio_readw EXPORT_SYMBOL_GPL vmlinux 0x30bee2ba fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x30c1b64f perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0x30ca5900 usb_for_each_port -EXPORT_SYMBOL_GPL vmlinux 0x30cb20b0 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x30cc8094 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x30ce629b gpiod_set_raw_value EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address EXPORT_SYMBOL_GPL vmlinux 0x30e3b569 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x30eacbc9 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x30f9d913 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x31001f7f icc_enable EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x31119a60 ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x31190d51 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x311b2849 wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave EXPORT_SYMBOL_GPL vmlinux 0x313f4b1f irq_remove_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x3152986b firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x315ea7d4 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x31622985 device_move EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine EXPORT_SYMBOL_GPL vmlinux 0x31706316 __SCT__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x317c6cf0 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x318323e5 sfp_bus_add_upstream EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0x318871b3 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x318c36d5 __SCK__tp_func_mc_event EXPORT_SYMBOL_GPL vmlinux 0x31926c8b cros_ec_get_sensor_count EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook EXPORT_SYMBOL_GPL vmlinux 0x3198bd55 __SCT__tp_func_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x31a0e6bb extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0x31a4886e device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x31a4390a dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0x31a83b85 iomap_readpage EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu EXPORT_SYMBOL_GPL vmlinux 0x31b2f469 phy_pm_runtime_put_sync EXPORT_SYMBOL_GPL vmlinux 0x31b4d9ab blkdev_zone_mgmt EXPORT_SYMBOL_GPL vmlinux 0x31c65185 tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d61590 regulator_get_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x31d9000e da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x31da9575 perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference EXPORT_SYMBOL_GPL vmlinux 0x31e1c846 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x31e5f52c xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x31f83e88 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x320ebde8 user_describe EXPORT_SYMBOL_GPL vmlinux 0x321217cf iommu_device_link EXPORT_SYMBOL_GPL vmlinux 0x321ba5b3 public_key_subtype EXPORT_SYMBOL_GPL vmlinux 0x321c52ab blk_mq_sched_mark_restart_hctx EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x323a0fe5 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x324cf725 skb_segment EXPORT_SYMBOL_GPL vmlinux 0x324fe426 iommu_attach_group EXPORT_SYMBOL_GPL vmlinux 0x326bfb47 pinctrl_force_default EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor EXPORT_SYMBOL_GPL vmlinux 0x326d3697 acpi_dev_get_first_consumer_dev EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x3281c63c ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0x32889637 rt_mutex_lock EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache EXPORT_SYMBOL_GPL vmlinux 0x3294d948 dev_pm_opp_put EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x32bba985 pci_stop_and_remove_bus_device_locked EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32bd8000 bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0x32c2bb04 list_lru_walk_node EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32cb9b37 crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0x32ddf22b mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x32dfda9a ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x32e0aef5 regulator_set_current_limit EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask EXPORT_SYMBOL_GPL vmlinux 0x32e4d1e0 sgx_virt_ecreate EXPORT_SYMBOL_GPL vmlinux 0x32eb0a87 kthread_use_mm EXPORT_SYMBOL_GPL vmlinux 0x32ecbac3 kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0x32ed377f do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x32fdca34 platform_device_register EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3300f64c ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x3311b3b3 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x33037afb switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x3325b85b smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x334f955d regulator_get EXPORT_SYMBOL_GPL vmlinux 0x3350e55d vchan_init EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size -EXPORT_SYMBOL_GPL vmlinux 0x3363d4c9 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x336d49a7 regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0x3370d750 nvmem_cell_read_u64 EXPORT_SYMBOL_GPL vmlinux 0x337b276f bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x33814d51 devm_platform_get_irqs_affinity EXPORT_SYMBOL_GPL vmlinux 0x3385dac4 fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0x339cbb8f __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x339f6b1d ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x33b30850 crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0x33bf1785 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x33a43efa ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x33b32df9 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x33dd8a40 pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0x33e1b54d sysfs_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0x33e8ba98 reset_control_get_count EXPORT_SYMBOL_GPL vmlinux 0x33f016b0 fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0x33f44889 ata_std_error_handler EXPORT_SYMBOL_GPL vmlinux 0x340fa246 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x340ffe8b metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x3423c37c fwnode_usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0x342e33a6 devm_init_badblocks EXPORT_SYMBOL_GPL vmlinux 0x342e4a6c serial8250_read_char EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x34348d8b tcp_unregister_congestion_control 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 0x34439271 pstore_unregister EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x3457ec15 ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0x345a2e2e dm_disk EXPORT_SYMBOL_GPL vmlinux 0x34642fc0 syscon_regmap_lookup_by_phandle_args EXPORT_SYMBOL_GPL vmlinux 0x3466ce63 x86_msi_msg_get_destid -EXPORT_SYMBOL_GPL vmlinux 0x34784217 pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0x347d1eee acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x34b6f2a3 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x3490be74 gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0x34bd2ed2 dw_pcie_write_dbi EXPORT_SYMBOL_GPL vmlinux 0x34cf530d gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x34e05628 xfrm_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler EXPORT_SYMBOL_GPL vmlinux 0x34fa5286 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x35072d64 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x34fc6185 is_swiotlb_active EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait EXPORT_SYMBOL_GPL vmlinux 0x35158301 is_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x3517015f dev_pm_opp_set_supported_hw EXPORT_SYMBOL_GPL vmlinux 0x351d447e pstore_register EXPORT_SYMBOL_GPL vmlinux 0x3521dc49 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x352acaaf tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current EXPORT_SYMBOL_GPL vmlinux 0x352c0f3a rio_mport_get_physefb EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x353c34e7 devlink_param_register EXPORT_SYMBOL_GPL vmlinux 0x353e486e regcache_drop_region EXPORT_SYMBOL_GPL vmlinux 0x35445e0f sysfs_update_groups EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x355f1440 platform_get_irq_byname_optional EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id EXPORT_SYMBOL_GPL vmlinux 0x356d09a1 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x35704b38 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0x358b167c regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x35790903 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x35801bcf perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35a7677a regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x35aa3c45 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x359e7058 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x35a8c956 seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0x35b3fa28 devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x35b5b1f3 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x35cfe11d devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x35d33d39 synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35e6027e blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0x35f1a650 pci_epc_put EXPORT_SYMBOL_GPL vmlinux 0x35f43770 __clk_hw_register_gate EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier @@ -21076,34 +21105,26 @@ EXPORT_SYMBOL_GPL vmlinux 0x360a6f21 rdev_clear_badblocks EXPORT_SYMBOL_GPL vmlinux 0x36173c1d phys_to_target_node EXPORT_SYMBOL_GPL vmlinux 0x36194204 __percpu_init_rwsem EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x3633a382 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x36479003 switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0x364832b3 vfio_register_iommu_driver EXPORT_SYMBOL_GPL vmlinux 0x364f8dc2 device_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0x3655dc4e klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0x36655c45 mmc_crypto_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x36734a56 devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x367a8231 sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0x368a89b1 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x368ab719 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x368b04b3 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x3695e3d6 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x36888a13 skb_complete_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a8464f nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled EXPORT_SYMBOL_GPL vmlinux 0x36b5c972 tps6586x_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0x36b9b15b serial8250_em485_start_tx EXPORT_SYMBOL_GPL vmlinux 0x36c64a46 regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0x36cdc092 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x36ce46a4 int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x36d06dbf fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x36c679b2 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x36d0bbe7 metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0x36d26c46 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x36d34e9f skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x36d402f9 cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x37244b8a fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0x3725bbbc ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x372e61c7 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x372f359d ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x3742b6be uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x3749d103 rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read EXPORT_SYMBOL_GPL vmlinux 0x375e99a7 serial8250_do_shutdown @@ -21111,25 +21132,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x3760ea3f bsg_job_done EXPORT_SYMBOL_GPL vmlinux 0x3763f509 kobject_rename EXPORT_SYMBOL_GPL vmlinux 0x376e47a6 sysfs_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x377e0b7a devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0x3781dd09 usb_hcd_map_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x379751e6 icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0x379bb1c6 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x37a3b7c7 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x37b971ab regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x3794ca00 ata_sas_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit EXPORT_SYMBOL_GPL vmlinux 0x37c684b0 fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x37d40d75 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x37c981bd device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x37c98300 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x37d4fc81 device_initialize EXPORT_SYMBOL_GPL vmlinux 0x37d8591d acpi_subsys_complete EXPORT_SYMBOL_GPL vmlinux 0x37dd1b6d power_supply_get_property EXPORT_SYMBOL_GPL vmlinux 0x37dd9a5c vfio_device_get_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x37eb98d9 set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0x37f292c4 pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x37f4d904 pwm_get_chip_data EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x3816bcb2 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x38119201 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x381fb259 wm8350_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0x38357b76 da9052_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x3836a8cc dmaengine_desc_get_metadata_ptr EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x385090d6 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x3852b1eb __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0x385a3426 unregister_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x385db020 acpi_dev_suspend EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write @@ -21138,52 +21164,65 @@ EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init EXPORT_SYMBOL_GPL vmlinux 0x38719aab ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end EXPORT_SYMBOL_GPL vmlinux 0x388264ea amd_clear_divider +EXPORT_SYMBOL_GPL vmlinux 0x38974194 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3897c800 wm8350_block_write EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38a003e2 regulator_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38b3bc3d __tracepoint_extlog_mem_event EXPORT_SYMBOL_GPL vmlinux 0x38b6a890 __SCT__tp_func_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x38c34dea transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38c68148 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x38cd9b21 regulator_set_voltage_time_sel EXPORT_SYMBOL_GPL vmlinux 0x38d324db srcu_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0x38d9941f ata_sff_postreset EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range EXPORT_SYMBOL_GPL vmlinux 0x38f2c331 genphy_c45_an_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x38f369cd iommu_uapi_sva_bind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x38fac29f sched_trace_cfs_rq_avg EXPORT_SYMBOL_GPL vmlinux 0x3901f397 mmu_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x390773af efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3916a8e7 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x390cef47 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x39107a9a xfrm_audit_state_replay_overflow EXPORT_SYMBOL_GPL vmlinux 0x391e3652 pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x39367439 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x39453154 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x3938d4fe wb_writeout_inc EXPORT_SYMBOL_GPL vmlinux 0x395e556d extcon_register_notifier_all EXPORT_SYMBOL_GPL vmlinux 0x39621361 genphy_c45_loopback EXPORT_SYMBOL_GPL vmlinux 0x397b8267 extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0x397e79d2 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x399b2f45 __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x399da8cc irq_gc_mask_clr_bit EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x39a2d8f7 dev_pm_opp_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39c216ce __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x39c4bec9 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x39c70837 crypto_alloc_shash EXPORT_SYMBOL_GPL vmlinux 0x39ce6955 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x39d53c2f __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x39ded14f __SCT__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x39f23206 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x39f32a65 __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x39f3f01b regulator_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x3a0190bb pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0x3a040d44 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x3a049078 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x3a06146a aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0x3a1da6dc devm_request_free_mem_region EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect EXPORT_SYMBOL_GPL vmlinux 0x3a262691 led_trigger_unregister_simple EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a3cbc23 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x3a2c4e78 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x3a2d7487 __tracepoint_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x3a4200a0 acpi_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x3a451c09 handle_fasteoi_nmi 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 0x3a5c4a41 crypto_stats_kpp_compute_shared_secret EXPORT_SYMBOL_GPL vmlinux 0x3a65209b pci_ioremap_wc_bar EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a89d631 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x3a82250d devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies EXPORT_SYMBOL_GPL vmlinux 0x3a8f4f89 pm_generic_thaw_early EXPORT_SYMBOL_GPL vmlinux 0x3a920556 usb_phy_roothub_suspend @@ -21192,153 +21231,155 @@ EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init EXPORT_SYMBOL_GPL vmlinux 0x3ac70d7d platform_msi_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0x3accd56a relay_switch_subbuf EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3acf3b59 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x3ae25f79 regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0x3ae9836b devm_phy_create EXPORT_SYMBOL_GPL vmlinux 0x3af3de20 tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic EXPORT_SYMBOL_GPL vmlinux 0x3af61ae0 dma_can_mmap EXPORT_SYMBOL_GPL vmlinux 0x3af84590 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x3b10ed80 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x3b14b29a css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x3b088cf0 ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0x3b1f3f34 pci_iov_virtfn_devfn EXPORT_SYMBOL_GPL vmlinux 0x3b3afb3f rio_release_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b57e83a __SCK__tp_func_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x3b674e05 ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0x3b6cf6a9 inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x3b727534 clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0x3b75d721 icc_link_destroy EXPORT_SYMBOL_GPL vmlinux 0x3b7a7163 __static_call_return0 -EXPORT_SYMBOL_GPL vmlinux 0x3b864d24 i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref EXPORT_SYMBOL_GPL vmlinux 0x3b90b64c cpuidle_register_driver EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free EXPORT_SYMBOL_GPL vmlinux 0x3b9f7160 mctrl_gpio_init_noauto EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3ba87fb9 cpufreq_register_driver EXPORT_SYMBOL_GPL vmlinux 0x3bb0ee81 efivar_entry_set_get_size EXPORT_SYMBOL_GPL vmlinux 0x3bb15401 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3bb8f107 __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x3bcdf5fc ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x3bbf9412 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x3bd403e3 task_cls_state EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3bdc0c8e cpuidle_register EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bffb4b1 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x3bf2867e device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg EXPORT_SYMBOL_GPL vmlinux 0x3c1aa952 xhci_add_endpoint EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c1f02a8 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x3c1e659d gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x3c2109a0 crypto_alloc_sync_skcipher EXPORT_SYMBOL_GPL vmlinux 0x3c217c01 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x3c2bc20f wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c34f614 device_match_of_node EXPORT_SYMBOL_GPL vmlinux 0x3c3658bc edac_mc_free EXPORT_SYMBOL_GPL vmlinux 0x3c3801c6 irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x3c4aecf4 irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0x3c56d5e6 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x3c59c213 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x3c3a83e6 __tracepoint_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable EXPORT_SYMBOL_GPL vmlinux 0x3c69f326 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x3c7685cb __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x3c9f219f shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x3c894c3b i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x3c9208ef crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x3ca7fa0f led_sysfs_disable EXPORT_SYMBOL_GPL vmlinux 0x3cc07be9 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x3cc39083 __raw_v6_lookup EXPORT_SYMBOL_GPL vmlinux 0x3cc4b494 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x3ccd516c wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x3ccdf674 trace_event_ignore_this_pid EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cd2d2cb scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0x3cd5c929 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3cdd062b gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3ce6fdd8 pwm_put EXPORT_SYMBOL_GPL vmlinux 0x3ce7b6df iommu_map_sg EXPORT_SYMBOL_GPL vmlinux 0x3cfb1c75 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x3d099b2a kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x3cfd1815 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x3d0c025e ata_sas_port_init EXPORT_SYMBOL_GPL vmlinux 0x3d1c61ff dev_pm_genpd_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x3d222e1d fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0x3d238f99 device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0x3d26b1bb __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x3d2dd576 gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d3b84fd task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x3d48b315 crypto_register_scomps EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check EXPORT_SYMBOL_GPL vmlinux 0x3d5145a7 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x3d5b159d udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x3d63756c hsu_dma_do_irq +EXPORT_SYMBOL_GPL vmlinux 0x3d811c39 device_store_int EXPORT_SYMBOL_GPL vmlinux 0x3d81ecd4 __unwind_start EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d8cc102 devlink_port_params_register EXPORT_SYMBOL_GPL vmlinux 0x3d8f29cc srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x3d9cd2a5 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x3da310ab fs_kobj EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0x3dbc5ed7 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3dc4c917 security_kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0x3dca2967 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x3dd646fd sock_prot_inuse_add EXPORT_SYMBOL_GPL vmlinux 0x3dd8a157 usb_get_dr_mode EXPORT_SYMBOL_GPL vmlinux 0x3ddcce0d rt_mutex_lock_interruptible EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final EXPORT_SYMBOL_GPL vmlinux 0x3df3c564 dax_supported EXPORT_SYMBOL_GPL vmlinux 0x3df82d00 mce_log -EXPORT_SYMBOL_GPL vmlinux 0x3dfdd54f crypto_stats_akcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x3dfe3e40 usb_get_hcd EXPORT_SYMBOL_GPL vmlinux 0x3e18a8d4 agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x3e22de09 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x3e1d9fa5 intel_pinctrl_probe_by_uid EXPORT_SYMBOL_GPL vmlinux 0x3e2f23fe devfreq_event_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x3e32ef81 mctrl_gpio_init EXPORT_SYMBOL_GPL vmlinux 0x3e40ef77 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x3e4c2f45 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3e43d488 rtc_update_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x3e4c6a86 devfreq_event_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x3e4db2f6 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3e52107b phy_package_join EXPORT_SYMBOL_GPL vmlinux 0x3e5a6fd1 iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0x3e604393 device_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e839117 perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0x3e85ba86 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x3e894c65 __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x3e8ca1ca rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x3e928db0 addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ea52e2e cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3eac622e i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x3ea9eb19 nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0x3eaf8d16 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3eb83463 regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0x3ec1df04 inode_dax EXPORT_SYMBOL_GPL vmlinux 0x3ec93255 hv_get_isolation_type EXPORT_SYMBOL_GPL vmlinux 0x3ecbce4e find_iova +EXPORT_SYMBOL_GPL vmlinux 0x3ece5db8 xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0x3edb1ccb cpufreq_table_index_unsorted EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc EXPORT_SYMBOL_GPL vmlinux 0x3ef0c17e fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0x3ef22d73 ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0x3ef39f70 devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f031670 crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x3f0bf483 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x3f18f6d0 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3f1400f7 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x3f2550b7 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x3f2b0f96 bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0x3f38affd __devm_intel_scu_ipc_register EXPORT_SYMBOL_GPL vmlinux 0x3f4647b3 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x3f470878 sdio_set_host_pm_flags EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset EXPORT_SYMBOL_GPL vmlinux 0x3f5a0390 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x3f5bf8ed dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0x3f64e874 devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0x3f805f35 __SCK__tp_func_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put EXPORT_SYMBOL_GPL vmlinux 0x3f953dd9 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x3f959156 skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fbcaa55 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3fbcbd6a dequeue_signal EXPORT_SYMBOL_GPL vmlinux 0x3fbff199 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x3fc11bc1 crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0x3fc7073a led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x3fd24359 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x3fd5d69d spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x3fceb4e7 __mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x3fdd9b09 irq_set_default_host 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 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x40006845 __SCK__tp_func_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x400c4611 ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x40402796 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x4040cbb3 devlink_reload_enable EXPORT_SYMBOL_GPL vmlinux 0x404234da kernfs_find_and_get_ns EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x40459a12 spi_split_transfers_maxsize EXPORT_SYMBOL_GPL vmlinux 0x4065317b serial8250_em485_destroy EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources EXPORT_SYMBOL_GPL vmlinux 0x406a89f2 pci_epc_unmap_addr EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4073dff9 __SCK__tp_func_extlog_mem_event EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout EXPORT_SYMBOL_GPL vmlinux 0x407d2497 usb_phy_set_charger_current EXPORT_SYMBOL_GPL vmlinux 0x407f20a8 vfio_pci_core_enable @@ -21347,10 +21388,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x4098b3da subsys_virtual_register EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free EXPORT_SYMBOL_GPL vmlinux 0x40a0aafc __flush_tlb_all EXPORT_SYMBOL_GPL vmlinux 0x40a6f298 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x40b73411 cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0x40c2dad8 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x40c4c1d9 ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x40cda0c1 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x40d1d277 lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0x40d349b6 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0x40e925e8 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x40e67aa8 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x40ee771e switchdev_handle_fdb_add_to_device 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 @@ -21360,109 +21405,109 @@ EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask EXPORT_SYMBOL_GPL vmlinux 0x412a9919 devm_mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu EXPORT_SYMBOL_GPL vmlinux 0x412f9094 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x4130cb47 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x413b9183 devlink_trap_policers_register EXPORT_SYMBOL_GPL vmlinux 0x413ba27e virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x4143f92c mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings EXPORT_SYMBOL_GPL vmlinux 0x415a8e67 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x41620db0 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x417397d8 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x417d20f7 platform_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer EXPORT_SYMBOL_GPL vmlinux 0x418c57ff power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x419e1219 xfrm_unregister_translator EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop EXPORT_SYMBOL_GPL vmlinux 0x41a08114 pinctrl_remove_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x41ae7d05 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x41b03d05 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x41b184bf bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x41b0387c dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0x41b28df9 cros_ec_check_features EXPORT_SYMBOL_GPL vmlinux 0x41b7e8e2 register_kretprobe EXPORT_SYMBOL_GPL vmlinux 0x41b951b3 device_driver_attach EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x41ba3652 dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0x41bb04b7 __rio_local_read_config_16 EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier EXPORT_SYMBOL_GPL vmlinux 0x41cb0004 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x41d9c7ce ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x41d15cc0 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x41d2e32d dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x41d321a6 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x41e5adc2 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x41e73d7d device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x41ec6903 exportfs_decode_fh EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41f3d728 ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x41f4f638 fb_bl_default_curve EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x421774ea pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0x421affc3 devm_kasprintf EXPORT_SYMBOL_GPL vmlinux 0x422e578a __SCT__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x4238d55d gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x4241cdd7 cpufreq_register_governor EXPORT_SYMBOL_GPL vmlinux 0x424b8021 tty_buffer_space_avail EXPORT_SYMBOL_GPL vmlinux 0x424beb74 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x424d4099 xfrm_put_translator +EXPORT_SYMBOL_GPL vmlinux 0x424da5de proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x424e3c8b gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x424f69db sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0x42549c83 alloc_page_buffers EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags EXPORT_SYMBOL_GPL vmlinux 0x4263ca33 iommu_uapi_cache_invalidate EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn -EXPORT_SYMBOL_GPL vmlinux 0x42724b74 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x4279cced bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4290e4cb crypto_comp_decompress EXPORT_SYMBOL_GPL vmlinux 0x429897a1 debugfs_create_x16 EXPORT_SYMBOL_GPL vmlinux 0x42a30b71 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x42a75a2a sdev_evt_send_simple EXPORT_SYMBOL_GPL vmlinux 0x42ad3194 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x42b41505 icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0x42b799a8 vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0x42cb1744 devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x42ce0a64 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x42d2446c lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x42bdc467 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x42c621a9 inet_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x42d72fe7 pm_clk_add EXPORT_SYMBOL_GPL vmlinux 0x42de5b6b srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x42e09b8e dev_pm_qos_expose_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x42e445f6 clk_mux_val_to_index EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x42ed7c0c sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event EXPORT_SYMBOL_GPL vmlinux 0x4325134f vfio_virqfd_disable -EXPORT_SYMBOL_GPL vmlinux 0x432ef3a9 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x43390a79 ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x433a7de8 of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x4357074b fpstate_clear_xstate_component EXPORT_SYMBOL_GPL vmlinux 0x4369f9f1 of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0x436b2eec ata_scsi_unlock_native_capacity EXPORT_SYMBOL_GPL vmlinux 0x436cb36f securityfs_create_file EXPORT_SYMBOL_GPL vmlinux 0x436ce9ae pinctrl_utils_add_map_mux EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x436e83a2 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x4371186c __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled EXPORT_SYMBOL_GPL vmlinux 0x4382d414 __regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0x4385693b dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x438acd29 vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x438ed8ea akcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43b1cace crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x43cee779 __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x43d0f9e5 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x43acf54d device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x43aed5b0 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x43c038db inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x43da1bea sdio_readsb EXPORT_SYMBOL_GPL vmlinux 0x43dfd11a fat_add_entries 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 0x43f941d5 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x43fafb68 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x43fb76f1 validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs EXPORT_SYMBOL_GPL vmlinux 0x440574c1 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x44065ea1 device_register +EXPORT_SYMBOL_GPL vmlinux 0x442864f9 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4430b67c regulator_disable EXPORT_SYMBOL_GPL vmlinux 0x4434f7ef pm_generic_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x44437843 uprobe_register_refctr EXPORT_SYMBOL_GPL vmlinux 0x44477018 fscrypt_ioctl_get_key_status EXPORT_SYMBOL_GPL vmlinux 0x4452c9e3 wm831x_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x445d1f7e ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x4460555f ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0x44699ecc vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x44715354 fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x447d0661 crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0x447ef89b dev_pm_opp_get_level EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448a4ee9 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x449443fa fixed_phy_change_carrier EXPORT_SYMBOL_GPL vmlinux 0x44a7815b dw_pcie_own_conf_map_bus EXPORT_SYMBOL_GPL vmlinux 0x44b0d0a0 __fscrypt_prepare_rename EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44bdeffa crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x44c08a89 spi_take_timestamp_post EXPORT_SYMBOL_GPL vmlinux 0x44c0bfa5 usb_pipe_type_check EXPORT_SYMBOL_GPL vmlinux 0x44c2121e devm_add_action EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str @@ -21470,29 +21515,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x44db54d1 xen_remap_vma_range EXPORT_SYMBOL_GPL vmlinux 0x44dfd842 __auxiliary_device_add EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats EXPORT_SYMBOL_GPL vmlinux 0x44eb97fd dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x44ebb4c0 regulator_get EXPORT_SYMBOL_GPL vmlinux 0x44ef0555 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x44ef331c crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events EXPORT_SYMBOL_GPL vmlinux 0x450425a9 ata_bmdma_error_handler EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen EXPORT_SYMBOL_GPL vmlinux 0x450842e9 __devm_of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0x450c4241 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x45290f15 regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x4531cd76 __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state -EXPORT_SYMBOL_GPL vmlinux 0x4547916b __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x45488365 wbc_detach_inode EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x4565568e dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x458a25b6 udp4_hwcsum EXPORT_SYMBOL_GPL vmlinux 0x458f49d8 usb_deregister EXPORT_SYMBOL_GPL vmlinux 0x4591cfda virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x459d4847 ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x45a5f2e3 dev_pm_qos_hide_flags EXPORT_SYMBOL_GPL vmlinux 0x45ad18ab amd_iommu_is_attach_deferred +EXPORT_SYMBOL_GPL vmlinux 0x45befe6e ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page EXPORT_SYMBOL_GPL vmlinux 0x45e2ab72 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x45e5f0c3 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x45ea3268 ata_pci_device_do_suspend EXPORT_SYMBOL_GPL vmlinux 0x45eb0605 usb_add_phy EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining @@ -21500,201 +21546,205 @@ EXPORT_SYMBOL_GPL vmlinux 0x46074133 pci_disable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x4610665d to_nd_blk_region EXPORT_SYMBOL_GPL vmlinux 0x4618d7d5 pci_epf_bind EXPORT_SYMBOL_GPL vmlinux 0x4622bd16 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x4622d228 fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x463d8290 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x46448621 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x465c4370 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x465f4975 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x464e2923 __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x465548a5 crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0x46614b68 regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x46710b02 sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x46738cce sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x466254d8 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x466e074c clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x4674d60d scsi_dh_attach EXPORT_SYMBOL_GPL vmlinux 0x46787406 acpi_device_uevent_modalias EXPORT_SYMBOL_GPL vmlinux 0x467b419c usb_autopm_put_interface_async EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46892ff6 __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x46a09a99 __traceiter_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel EXPORT_SYMBOL_GPL vmlinux 0x46a6c9ef hv_get_tsc_page -EXPORT_SYMBOL_GPL vmlinux 0x46b0b6b6 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x46a8a3a5 i2c_handle_smbus_host_notify EXPORT_SYMBOL_GPL vmlinux 0x46b0e3a1 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x46b742a8 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x46c44062 fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x46d004ea crypto_stats_kpp_set_secret EXPORT_SYMBOL_GPL vmlinux 0x46dbdc35 iommu_domain_free EXPORT_SYMBOL_GPL vmlinux 0x46e69ebe edac_pci_create_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x46f523c0 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x46fd59ad pwm_request EXPORT_SYMBOL_GPL vmlinux 0x46fe3f50 usb_hub_claim_port EXPORT_SYMBOL_GPL vmlinux 0x4715b76b rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x471cdd8e icc_disable EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47293bd6 devlink_port_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x4736404a phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0x473ef2a0 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x475da5af __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x475e25e7 sdio_signal_irq EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x476f5b81 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x47799e0c devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x47722f97 ip6_local_out 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 0x4791cb91 apei_mce_report_mem_error EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x479ff7f2 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x47a2d219 crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0x47a8264c acpi_get_pci_dev EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b2c651 ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x47b5dbf1 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x47b8a515 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x47b937b7 ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x47c095a1 pci_enable_pasid EXPORT_SYMBOL_GPL vmlinux 0x47c3a242 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x47d04406 locks_release_private EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47d2ed8c crypto_shoot_alg EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux EXPORT_SYMBOL_GPL vmlinux 0x47e75598 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x47e9b01b ata_sas_port_suspend EXPORT_SYMBOL_GPL vmlinux 0x47efcdb8 adp5520_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x47f4e6f2 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x47f59221 device_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x47fb9c86 debugfs_real_fops EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x480e05d9 fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0x480f9f35 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x48159dcc devlink_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm -EXPORT_SYMBOL_GPL vmlinux 0x482815b9 fwnode_get_next_available_child_node EXPORT_SYMBOL_GPL vmlinux 0x482875ce dev_pm_opp_get_opp_count EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x484ce175 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x484f3444 bpf_prog_free EXPORT_SYMBOL_GPL vmlinux 0x485714c9 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x485f040c __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x4859c66a regmap_get_val_endian EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier EXPORT_SYMBOL_GPL vmlinux 0x486f2624 usb_check_bulk_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x48727f9d follow_pte EXPORT_SYMBOL_GPL vmlinux 0x487a6fe2 edac_pci_add_device EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get EXPORT_SYMBOL_GPL vmlinux 0x48a41caa nvdimm_has_flush EXPORT_SYMBOL_GPL vmlinux 0x48b2f7ba pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x48b4017f dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0x48c91fe5 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x48cb6470 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x48d5a4c0 platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0x48d693ab hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x48dd7517 gpiochip_add_pingroup_range EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0x4902c458 tcp_done EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x492fd5b4 __traceiter_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x493134bf dm_path_uevent EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x49391a0f tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x49484bfd gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x4939faa3 gpiochip_remove_pin_ranges EXPORT_SYMBOL_GPL vmlinux 0x495a4221 __SCT__tp_func_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x495dc77b auxiliary_find_device EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x497c9836 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x4982dc47 __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x49744983 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x4976e9e4 platform_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue EXPORT_SYMBOL_GPL vmlinux 0x49951708 sev_enable_key EXPORT_SYMBOL_GPL vmlinux 0x499cf59a user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x49a6c121 unregister_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x49b58240 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x49b67305 __SCK__tp_func_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x49bab3c9 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x49bd454e spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d11e62 nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x49d83780 ata_bmdma_port_intr EXPORT_SYMBOL_GPL vmlinux 0x49db5233 __fsnotify_parent EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x49f10e03 pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0x49fe2e8d ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0x4a073cbd devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4a120095 skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0x4a12bfb6 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x4a16ce62 __tracepoint_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a2d7f17 devlink_region_snapshot_id_put EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data EXPORT_SYMBOL_GPL vmlinux 0x4a4334d6 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0x4a51d2e5 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4a6d8687 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x4a67ac5a blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x4a6fad39 sched_trace_rq_avg_rt EXPORT_SYMBOL_GPL vmlinux 0x4a7b63fc dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x4a80e3d4 dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x4a9cefd9 mddev_init EXPORT_SYMBOL_GPL vmlinux 0x4ab1e870 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4ac2318d gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x4ad306e0 fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0x4af6a15e devm_get_free_pages EXPORT_SYMBOL_GPL vmlinux 0x4aff6b27 virtqueue_enable_cb EXPORT_SYMBOL_GPL vmlinux 0x4b023077 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x4b11e562 __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0x4b120445 cpufreq_freq_attr_scaling_available_freqs EXPORT_SYMBOL_GPL vmlinux 0x4b1b1eb4 xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x4b1c45e9 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x4b244ad3 ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0x4b3961c6 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x4b3ec3ab aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0x4b41839e pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x4b420b79 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x4b4a5bdf sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x4b52d5e3 crypto_stats_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase EXPORT_SYMBOL_GPL vmlinux 0x4b579e53 pci_epc_get_msix EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init EXPORT_SYMBOL_GPL vmlinux 0x4b61fcee bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x4b6db48e iptunnel_metadata_reply EXPORT_SYMBOL_GPL vmlinux 0x4b6f828c percpu_free_rwsem EXPORT_SYMBOL_GPL vmlinux 0x4b757ee8 power_supply_changed EXPORT_SYMBOL_GPL vmlinux 0x4b75f456 regulator_set_ramp_delay_regmap EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread -EXPORT_SYMBOL_GPL vmlinux 0x4b7c34e8 rdev_get_dev EXPORT_SYMBOL_GPL vmlinux 0x4b843181 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x4b92d5d2 gpiod_direction_output EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features EXPORT_SYMBOL_GPL vmlinux 0x4b9a5b22 xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x4ba19347 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x4ba4b3a3 get_kernel_pages EXPORT_SYMBOL_GPL vmlinux 0x4bb3a316 fsnotify_add_mark EXPORT_SYMBOL_GPL vmlinux 0x4bbcb3d6 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x4bc5621f devlink_reload_enable EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bcb6eaf __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x4bce2d15 crypto_register_alg EXPORT_SYMBOL_GPL vmlinux 0x4bd0a214 subsys_find_device_by_id EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4bddba2d ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4be31ba6 __traceiter_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x4be912dc pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x4bf2cede file_ra_state_init EXPORT_SYMBOL_GPL vmlinux 0x4bfdb913 vfio_group_iommu_domain +EXPORT_SYMBOL_GPL vmlinux 0x4bff7e9d desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0x4c0febd8 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x4c1196cf bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0x4c30ab71 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c405c29 ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0x4c452ec8 do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0x4c56003a nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x4c5cbad3 devlink_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0x4c6510e5 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x4c6bb355 devm_mipi_dsi_attach EXPORT_SYMBOL_GPL vmlinux 0x4c6faff6 tty_buffer_unlock_exclusive EXPORT_SYMBOL_GPL vmlinux 0x4c71621e irq_chip_unmask_parent EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping EXPORT_SYMBOL_GPL vmlinux 0x4c7c3d0f power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x4c821628 skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0x4c82f745 serial8250_do_startup EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c8bb9e0 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x4c9318ac unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x4c9e6e73 fscrypt_d_revalidate EXPORT_SYMBOL_GPL vmlinux 0x4ca38862 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x4cacf201 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x4caf2860 devlink_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb849ed __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x4cd9a39b skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x4ce736be fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x4cd3d108 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x4cf07842 blk_trace_setup EXPORT_SYMBOL_GPL vmlinux 0x4cf699b8 vfio_pci_core_set_params EXPORT_SYMBOL_GPL vmlinux 0x4cff818f irq_domain_associate EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable EXPORT_SYMBOL_GPL vmlinux 0x4d0b752f alloc_iova EXPORT_SYMBOL_GPL vmlinux 0x4d202a74 tty_find_polling_driver EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4d3111c7 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x4d240284 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x4d299ba1 synth_event_create EXPORT_SYMBOL_GPL vmlinux 0x4d313f1e i2c_acpi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x4d32b0e3 devlink_rate_nodes_destroy EXPORT_SYMBOL_GPL vmlinux 0x4d3547c6 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d435e4e fib_nh_common_init EXPORT_SYMBOL_GPL vmlinux 0x4d468f2b devm_pm_opp_attach_genpd EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d6566dd devlink_port_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d6f00eb kgdb_register_io_module EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable EXPORT_SYMBOL_GPL vmlinux 0x4d7315e2 find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x4d8098d7 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x4d8069e9 get_governor_parent_kobj EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark EXPORT_SYMBOL_GPL vmlinux 0x4d8f1de4 ehci_hub_control EXPORT_SYMBOL_GPL vmlinux 0x4d9155e0 irq_chip_request_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x4da1f4a7 list_lru_del EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4dccc599 l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string EXPORT_SYMBOL_GPL vmlinux 0x4de1a401 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x4e0d2f40 __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x4e10a881 mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x4e113edd i2c_dw_configure_master EXPORT_SYMBOL_GPL vmlinux 0x4e144a54 __SCT__tp_func_block_bio_complete @@ -21703,31 +21753,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x4e1b831b blk_mq_complete_request_remote EXPORT_SYMBOL_GPL vmlinux 0x4e1bf9bf devm_irq_alloc_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x4e24cbf7 dev_attr_link_power_management_policy EXPORT_SYMBOL_GPL vmlinux 0x4e25e2fa mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x4e2780e6 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x4e342b6f tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x4e3bf034 bsg_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4e4dae54 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x4e509f61 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x4e574bff __SCK__tp_func_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x4e61c874 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x4e6e6a70 spi_take_timestamp_post EXPORT_SYMBOL_GPL vmlinux 0x4e70a5e5 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x4e81838a __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x4e87c106 fw_devlink_purge_absent_suppliers EXPORT_SYMBOL_GPL vmlinux 0x4e8fbc9d do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x4e9be73b rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0x4ea30931 sysfs_create_group EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4ebe8ec1 fwnode_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x4ec21ab6 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4ec8a004 fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0x4ed07420 vfio_pci_core_close_device -EXPORT_SYMBOL_GPL vmlinux 0x4ee3f399 ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0x4ef36301 gpiod_export EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize EXPORT_SYMBOL_GPL vmlinux 0x4efdfa7a pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x4f00b6a6 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x4f15d617 devm_device_remove_group EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line EXPORT_SYMBOL_GPL vmlinux 0x4f4cb026 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x4f54e3f2 bpf_trace_run10 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 @@ -21735,30 +21784,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x4f7562d6 dev_pm_opp_register_set_opp_helper EXPORT_SYMBOL_GPL vmlinux 0x4f76bbe5 gov_attr_set_put EXPORT_SYMBOL_GPL vmlinux 0x4f8546af cpuidle_poll_state_init EXPORT_SYMBOL_GPL vmlinux 0x4f877654 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x4f88d496 inet6_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x4f8cc92b isa_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x4f9e08b8 crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0x4fa17839 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x4fa16a78 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x4fa3765a crypto_stats_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x4fa93f12 unregister_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x4faed1fa devm_pm_opp_register_set_opp_helper EXPORT_SYMBOL_GPL vmlinux 0x4fb47580 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x4fb57050 ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0x4fb987bf acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x4fbd26f8 vfs_submount EXPORT_SYMBOL_GPL vmlinux 0x4fc3bcce attribute_container_register EXPORT_SYMBOL_GPL vmlinux 0x4fcd0c77 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x4fce06d7 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x4fd51b96 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe89129 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4fe9fcdb cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x4ffa533a bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0x4ffad35c input_ff_erase EXPORT_SYMBOL_GPL vmlinux 0x4ffcedf8 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x50091bd5 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x4ffe1c35 spi_controller_suspend EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x5011c185 crypto_alloc_acomp_node EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x502fa63a xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0x5038ee05 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x5039e1e2 sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x50411929 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x5045c379 fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x50491f82 blk_ksm_destroy EXPORT_SYMBOL_GPL vmlinux 0x504a7f08 efivar_entry_set EXPORT_SYMBOL_GPL vmlinux 0x505eb119 pci_find_host_bridge @@ -21766,451 +21815,463 @@ EXPORT_SYMBOL_GPL vmlinux 0x506482ed devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x50655294 fsnotify_alloc_user_group EXPORT_SYMBOL_GPL vmlinux 0x50759163 kobject_init_and_add EXPORT_SYMBOL_GPL vmlinux 0x5084bbf4 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x5090feca __mmdrop EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start EXPORT_SYMBOL_GPL vmlinux 0x50928f8a pm_runtime_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x509ebd40 __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation EXPORT_SYMBOL_GPL vmlinux 0x50b42ba1 entry_ibpb EXPORT_SYMBOL_GPL vmlinux 0x50bd007e pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x50c38cee scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0x50cbbf6d irq_create_mapping_affinity EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0x50d2ee9c vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert EXPORT_SYMBOL_GPL vmlinux 0x50e3d2d8 gnttab_pages_clear_private EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f84f79 crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x51032308 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x511bbee9 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x512319fb bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x51274b0d nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5127ac1b generic_access_phys EXPORT_SYMBOL_GPL vmlinux 0x51290d2b acpi_kobj EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x513ca04b lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0x513db16e to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x513e3b16 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x513fe82c dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x514674a8 bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0x514f5b02 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5157ed4c __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x515d0eac gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x515f1a32 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x51601094 vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0x51675e30 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x51676291 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x517368c7 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x51740eb2 crypto_unregister_ahashes EXPORT_SYMBOL_GPL vmlinux 0x51823b7f phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0x51853196 __devm_regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq EXPORT_SYMBOL_GPL vmlinux 0x518c51da usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x51975923 rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51b40dba perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x51c70084 fwnode_property_present EXPORT_SYMBOL_GPL vmlinux 0x51c7111d blk_execute_rq_nowait EXPORT_SYMBOL_GPL vmlinux 0x51d05c47 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0x51d0ec12 devm_device_remove_group EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler EXPORT_SYMBOL_GPL vmlinux 0x51e4b432 __intel_scu_ipc_register -EXPORT_SYMBOL_GPL vmlinux 0x51f7162c sock_map_destroy EXPORT_SYMBOL_GPL vmlinux 0x5205f5bb debugfs_create_bool EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x522af5ba crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x522ceab4 skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x522eda5b usb_match_one_id EXPORT_SYMBOL_GPL vmlinux 0x523ba8cc usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x523cbf37 pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x524f8365 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x5253547d ehci_reset EXPORT_SYMBOL_GPL vmlinux 0x52568e5d clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf EXPORT_SYMBOL_GPL vmlinux 0x526c0cad __rt_mutex_init EXPORT_SYMBOL_GPL vmlinux 0x526caab7 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x526efe50 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x527ffd2f trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x52917576 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x52995283 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x529d08c8 __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52b7d852 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x52be6780 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x52c14638 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x52b5c917 perf_aux_output_flag EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52cb7dc9 sock_diag_unregister_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put EXPORT_SYMBOL_GPL vmlinux 0x52e15313 __irq_alloc_domain_generic_chips EXPORT_SYMBOL_GPL vmlinux 0x52e578ad usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x52e61b0d ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0x52ea150d __class_create -EXPORT_SYMBOL_GPL vmlinux 0x5301d09b devlink_port_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x530493e1 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x53085015 clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0x530f39ae devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x5317d2a8 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x531aac5e device_show_int EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x5323e080 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x532415cd rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x5330ce1b __tracepoint_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x5355bfb4 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x53305d87 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x53458587 __tracepoint_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0x5359d964 encrypt_blob EXPORT_SYMBOL_GPL vmlinux 0x535ce83c vp_modern_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x536a41c2 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x536e408a page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0x536fa291 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x53705984 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x538ac6ea clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x53867b23 of_icc_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x538bdb82 kthread_park EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref EXPORT_SYMBOL_GPL vmlinux 0x5395d83c __pm_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x539a8be0 xenbus_read_otherend_details EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late -EXPORT_SYMBOL_GPL vmlinux 0x53bbf4dc devm_clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x53be3444 __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x53a9d269 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x53b3884d crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x53b48d64 ata_port_wait_eh EXPORT_SYMBOL_GPL vmlinux 0x53bff47c transport_configure_device EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53d8d5a9 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x53e06839 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x53eaa15a blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x53ec295e pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0x53f27909 usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0x53fc2027 efivar_entry_get EXPORT_SYMBOL_GPL vmlinux 0x541117d0 genphy_c45_pma_setup_forced EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x542d198e security_path_chmod EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0x54389679 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x543f2b3b vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x54448952 __SCK__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x5449a303 pci_epc_multi_mem_init EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table EXPORT_SYMBOL_GPL vmlinux 0x545a0aaa tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x545ec0f6 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x5460f79f work_on_cpu_safe_key EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next EXPORT_SYMBOL_GPL vmlinux 0x5472e30d dax_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x5483aca3 devm_clk_get_optional_enabled EXPORT_SYMBOL_GPL vmlinux 0x548d72a0 power_supply_register EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x5495fc89 gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x549cb923 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x54a3d129 ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x54b4fb7a usb_free_streams EXPORT_SYMBOL_GPL vmlinux 0x54b51214 generic_online_page EXPORT_SYMBOL_GPL vmlinux 0x54bbdefa serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x54c3c9a6 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x54c3fe8b get_device EXPORT_SYMBOL_GPL vmlinux 0x54cc2187 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x54d3423b skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x54d266f2 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x54de1e35 fwnode_handle_put EXPORT_SYMBOL_GPL vmlinux 0x54e02aaf fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x54fd6b2a iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x550752d0 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string EXPORT_SYMBOL_GPL vmlinux 0x550f5c4f __kthread_should_park EXPORT_SYMBOL_GPL vmlinux 0x55175fa3 dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x552d2c5b nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x55327bb5 nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput EXPORT_SYMBOL_GPL vmlinux 0x5535001a dev_pm_opp_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5548fe04 mmc_sanitize -EXPORT_SYMBOL_GPL vmlinux 0x55540af8 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x5559900c ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x55694ab2 perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55728b66 sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0x5576ed89 cdrom_read_tocentry EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0x557fd285 acpi_dev_clear_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x5589e3c6 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x55b16c42 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x55b5590b espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x55b95c49 sdio_claim_host EXPORT_SYMBOL_GPL vmlinux 0x55bbc71f watchdog_set_restart_priority EXPORT_SYMBOL_GPL vmlinux 0x55c18419 pm_runtime_enable EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55d74c7e crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x55e13d92 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x55e650e2 security_inode_permission EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f229fb tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0x55f58c76 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x55fc238f sdio_readb EXPORT_SYMBOL_GPL vmlinux 0x55ff1038 fscrypt_symlink_getattr EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x561ba540 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x5620c9a4 crypto_stats_kpp_generate_public_key EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff EXPORT_SYMBOL_GPL vmlinux 0x5628bdd6 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x5629b515 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x562cfd44 __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x5630ba7f vfio_pci_core_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status EXPORT_SYMBOL_GPL vmlinux 0x563941e7 usb_hcd_unmap_urb_setup_for_dma EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x563b7292 ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x5644fea6 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x564de905 nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x56504bc7 vfio_init_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x5651b660 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x56594c6e l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0x56618a3c usb_hcd_is_primary_hcd EXPORT_SYMBOL_GPL vmlinux 0x566a252c get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x56753493 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x56796fb0 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x568049fe devlink_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current -EXPORT_SYMBOL_GPL vmlinux 0x569f058a xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x56a7ef28 crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0x56ea34ee nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0x56f688de __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers EXPORT_SYMBOL_GPL vmlinux 0x56ff960a serdev_controller_alloc EXPORT_SYMBOL_GPL vmlinux 0x57368559 invalidate_inode_pages2 EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x57525432 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x575d0130 free_fib_info EXPORT_SYMBOL_GPL vmlinux 0x576817ce dm_get_queue_limits EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge EXPORT_SYMBOL_GPL vmlinux 0x57844b89 virtqueue_enable_cb_delayed EXPORT_SYMBOL_GPL vmlinux 0x57861a5c gds_ucode_mitigated -EXPORT_SYMBOL_GPL vmlinux 0x578b3591 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x578c3a56 regulator_count_voltages EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove EXPORT_SYMBOL_GPL vmlinux 0x579191dc rio_mport_get_feature EXPORT_SYMBOL_GPL vmlinux 0x5793aa27 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x579bba21 xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all EXPORT_SYMBOL_GPL vmlinux 0x57a10d29 tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x57b0e419 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x57a5e2d4 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x57af96b7 ata_host_put EXPORT_SYMBOL_GPL vmlinux 0x57baf26f dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x57c5d519 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x57c9a542 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x57cabed7 ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0x57cbecc5 usb_debug_root EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57e10381 rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x57e49d48 devm_gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x57e987aa pci_enable_sriov EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57f5baa9 devlink_param_unpublish EXPORT_SYMBOL_GPL vmlinux 0x58097e0d devm_create_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x580ed4b6 mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x580feb84 request_firmware_direct EXPORT_SYMBOL_GPL vmlinux 0x581042a1 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x5811f866 switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x581477c5 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x581c4a08 devlink_dpipe_headers_register EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0x5831827d add_page_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x583916de xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x583cc9df fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0x583d61f9 usb_disable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x58424445 acpi_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0x584275eb tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x5855d5f7 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x585e2dab bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0x586169c6 iopf_queue_flush_dev EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x58857161 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x587c545f __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x587ff3ce event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x588932c5 xfrm_get_translator EXPORT_SYMBOL_GPL vmlinux 0x58950fe6 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x58bb8f3e ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x58bc2f1e vfs_submount EXPORT_SYMBOL_GPL vmlinux 0x58bd08f6 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x58bfdb88 ata_pci_device_do_suspend EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58ef2dde __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x58f49406 crypto_grab_akcipher EXPORT_SYMBOL_GPL vmlinux 0x58f81933 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x590f47ba __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x590f5e9a pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x59120b82 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x5914a12d ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x593c4b72 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x596603a8 setfl +EXPORT_SYMBOL_GPL vmlinux 0x5946ca57 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x59694bec regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5971682b sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x59829e25 ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x59916180 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x599a1551 filemap_read EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59bbc17c spi_sync_locked EXPORT_SYMBOL_GPL vmlinux 0x59c36f60 rio_bus_type EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x59c6aff4 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x59c747e9 crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0x59c93a83 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x59c9d76d security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0x59cd2600 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x59e0e182 ping_rcv EXPORT_SYMBOL_GPL vmlinux 0x59e0f053 fpu_free_guest_fpstate -EXPORT_SYMBOL_GPL vmlinux 0x59e81c3a ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x59ed3e55 usb_acpi_set_power_state EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x5a114152 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x59f7a676 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x5a13303b gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0x5a1a7299 usb_phy_set_charger_state EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a23ce13 ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x5a27f387 extcon_get_property_capability EXPORT_SYMBOL_GPL vmlinux 0x5a283230 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x5a297627 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x5a3b0796 device_property_present EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del EXPORT_SYMBOL_GPL vmlinux 0x5a5114ca dm_device_name EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a6d2bec phy_led_trigger_change_speed EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify EXPORT_SYMBOL_GPL vmlinux 0x5a8199b5 alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0x5a94ec06 __clk_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x5a9bfdad irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x5a9fdbc6 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5aa19c90 ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ab145a4 sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0x5ab96fe2 tpm_send EXPORT_SYMBOL_GPL vmlinux 0x5abeb764 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x5ac28bb3 page_endio EXPORT_SYMBOL_GPL vmlinux 0x5ac2ad7d usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x5ae26179 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x5af002c4 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x5af373c0 x86_vector_domain -EXPORT_SYMBOL_GPL vmlinux 0x5af4debf regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x5b0d6de5 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x5adbae91 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x5b0b7509 sdio_release_irq EXPORT_SYMBOL_GPL vmlinux 0x5b0ea691 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x5b11d409 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x5b1542f4 regmap_test_bits EXPORT_SYMBOL_GPL vmlinux 0x5b1c9e3f driver_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL vmlinux 0x5b3c0fce scsi_host_busy_iter EXPORT_SYMBOL_GPL vmlinux 0x5b3e243b driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5b41901c get_kernel_pages EXPORT_SYMBOL_GPL vmlinux 0x5b49fa6d pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x5b587977 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0x5b5d41f3 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0x5b6442b7 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x5b655483 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x5b68d67f __SCK__tp_func_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b711f60 devm_platform_ioremap_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x5b8b78d4 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5b80ba5c shmem_truncate_range EXPORT_SYMBOL_GPL vmlinux 0x5ba459c5 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5bae9487 crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bc51ce8 hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be30bc5 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x5bf1da43 nvdimm_kobj EXPORT_SYMBOL_GPL vmlinux 0x5bfc9610 pm_generic_resume EXPORT_SYMBOL_GPL vmlinux 0x5c0c165e __SCT__tp_func_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x5c19bad1 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x5c104b03 gpiod_direction_output_raw EXPORT_SYMBOL_GPL vmlinux 0x5c26f444 xhci_check_bandwidth EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec +EXPORT_SYMBOL_GPL vmlinux 0x5c391af2 trace_output_call EXPORT_SYMBOL_GPL vmlinux 0x5c3b6f04 dma_async_device_channel_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5c4f2865 crypto_stats_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x5c62a871 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x5c6ac7b9 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5c7d3ee3 ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0x5c888142 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x5c8ffc2b clk_hw_is_prepared EXPORT_SYMBOL_GPL vmlinux 0x5c941858 usb_hcd_end_port_resume EXPORT_SYMBOL_GPL vmlinux 0x5c94ce48 tpm_chip_stop EXPORT_SYMBOL_GPL vmlinux 0x5ca922bb bus_find_device EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cb489ec gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0x5cbb5e09 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x5ccb81bf crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x5cdab867 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x5cde8611 synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0x5cebd369 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x5cec6a59 __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x5cef2d5b pci_destroy_slot EXPORT_SYMBOL_GPL vmlinux 0x5cfdfa13 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5cfe3038 gpiochip_line_is_open_drain EXPORT_SYMBOL_GPL vmlinux 0x5d0113e0 x86_pred_cmd -EXPORT_SYMBOL_GPL vmlinux 0x5d1698b9 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x5d167578 thermal_zone_device_enable EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d2c9007 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x5d2ca1e2 ata_sas_tport_add EXPORT_SYMBOL_GPL vmlinux 0x5d3d3726 vfio_register_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x5d4b6598 __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x5d4dc318 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x5d61f0e6 dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0x5d6de845 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x5d729086 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x5d821f00 regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d8b992b ip6_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq -EXPORT_SYMBOL_GPL vmlinux 0x5da1804a mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0x5da5a1b8 led_set_brightness_nosleep EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dafa2d5 posix_clock_register EXPORT_SYMBOL_GPL vmlinux 0x5db0a89a pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x5dbc9a77 crypto_stats_akcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dcdc2a2 devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x5dcee218 edac_get_sysfs_subsys EXPORT_SYMBOL_GPL vmlinux 0x5de1b643 gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0x5dee8d9b tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0x5e07cb31 __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x5e080c14 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x5de96944 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x5e09022f devlink_reload_disable EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x5e1917ea devm_clk_get_optional_prepared EXPORT_SYMBOL_GPL vmlinux 0x5e207c04 genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0x5e3cae8b gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5e2d715d gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x5e3f95ea rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0x5e4e74a4 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x5e4b49e7 task_user_regset_view EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e59a0bb sched_set_normal EXPORT_SYMBOL_GPL vmlinux 0x5e700973 power_supply_set_property EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e7a7ded shmem_read_mapping_page_gfp EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e88d556 gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x5e8efd2f i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x5e8a94fa __SCK__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x5e9532da vfio_iommu_group_put EXPORT_SYMBOL_GPL vmlinux 0x5e97ee82 usb_alloc_dev EXPORT_SYMBOL_GPL vmlinux 0x5e9bc256 sata_pmp_port_ops EXPORT_SYMBOL_GPL vmlinux 0x5ea04ad5 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x5ea60622 __SCK__tp_func_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared EXPORT_SYMBOL_GPL vmlinux 0x5eb6f079 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0x5ebf310e spi_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x5ebfa676 dev_pm_opp_detach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x5ece7eec security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x5ed4a479 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x5ec6b4fb fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x5ed5e348 blkdev_nr_zones EXPORT_SYMBOL_GPL vmlinux 0x5ed6ba68 sysfs_merge_group EXPORT_SYMBOL_GPL vmlinux 0x5eda53eb fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x5ee911d4 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x5ef51bf1 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5f2384e0 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x5f161269 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x5f229420 fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource EXPORT_SYMBOL_GPL vmlinux 0x5f287835 iommu_sva_free_pasid -EXPORT_SYMBOL_GPL vmlinux 0x5f2a44ba spi_sync EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc EXPORT_SYMBOL_GPL vmlinux 0x5f318390 hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x5f3973e9 sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x5f3adbac peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0x5f56d347 invalidate_inode_pages2_range EXPORT_SYMBOL_GPL vmlinux 0x5f5a510d lp8788_write_byte EXPORT_SYMBOL_GPL vmlinux 0x5f5d8097 dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0x5f6b6b77 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x5f69c7fb mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f778531 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x5f7f2687 fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x5f81bfac ata_sff_freeze EXPORT_SYMBOL_GPL vmlinux 0x5f903869 vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0x5f96517f clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x5f9bbcf2 icc_get EXPORT_SYMBOL_GPL vmlinux 0x5f9efd90 serdev_device_write_room EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point EXPORT_SYMBOL_GPL vmlinux 0x5faeec62 pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0x5fb4fd12 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x5faf5880 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x5fb5ee8a handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0x5fcc13a0 component_add +EXPORT_SYMBOL_GPL vmlinux 0x5fd45731 gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt -EXPORT_SYMBOL_GPL vmlinux 0x5fe28f93 netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0x5fe36e70 subsys_system_register EXPORT_SYMBOL_GPL vmlinux 0x5fe96df1 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5fe9885c crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x5ff715fe scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x6014d9fc bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x601c6ed9 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x6026d502 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x6031a314 ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x605f1239 serial8250_rpm_put EXPORT_SYMBOL_GPL vmlinux 0x6079a567 __fat_fs_error EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x607eb567 sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x608075b1 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x608fc5dd wm8350_clear_bits EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6098879a __SCK__tp_func_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x6098da83 usb_hub_clear_tt_buffer EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add EXPORT_SYMBOL_GPL vmlinux 0x60b79455 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x60bdcbaf ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0x60c86e2e pcie_port_bus_type EXPORT_SYMBOL_GPL vmlinux 0x60ccf536 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x60cd479d is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0x60d7af07 __SCK__tp_func_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x60df4189 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x60e908a6 __traceiter_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x60e90cff sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x60ea9b0c ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60ef4cfc bpf_prog_inc EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x611a665b dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x610e4df9 crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x612a5046 switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x612f4d4f ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x6136c92e device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0x61466b91 serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x614751ac proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x614f0c8d crypto_register_aead EXPORT_SYMBOL_GPL vmlinux 0x615a0928 uhci_check_and_reset_hc EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path EXPORT_SYMBOL_GPL vmlinux 0x61645cf3 __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x616aaa60 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x616b0e83 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x617a7557 sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register EXPORT_SYMBOL_GPL vmlinux 0x617ebf8d to_nvdimm_bus_dev EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x619bc4a7 of_css EXPORT_SYMBOL_GPL vmlinux 0x619d2eca acpi_gpio_get_irq_resource -EXPORT_SYMBOL_GPL vmlinux 0x61ad2e9c regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x61a06c7d unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause EXPORT_SYMBOL_GPL vmlinux 0x61b443f8 x86_spec_ctrl_current EXPORT_SYMBOL_GPL vmlinux 0x61c1662f bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0x61d1eeb8 clk_hw_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x61d40644 fat_scan EXPORT_SYMBOL_GPL vmlinux 0x61e613d0 vfio_pci_core_sriov_configure EXPORT_SYMBOL_GPL vmlinux 0x61efe262 led_blink_set_oneshot EXPORT_SYMBOL_GPL vmlinux 0x61f3476f component_del EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61f76db7 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x61fb0449 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x61ff1dad raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x61fcc2d4 netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x620541cb d_walk -EXPORT_SYMBOL_GPL vmlinux 0x6210199a device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x6214457b xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0x62166f97 bus_sort_breadthfirst EXPORT_SYMBOL_GPL vmlinux 0x621d3900 bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier @@ -22219,57 +22280,55 @@ EXPORT_SYMBOL_GPL vmlinux 0x623c7d37 xenbus_alloc_evtchn EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x625fafc7 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x62637054 fib_info_nh_uses_dev EXPORT_SYMBOL_GPL vmlinux 0x626abb6b devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x62799a8d bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x626f8e98 bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0x629b5c92 device_add_software_node EXPORT_SYMBOL_GPL vmlinux 0x62a40873 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x62a72888 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x62ace3eb __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x62afb2c1 __dax_driver_register EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62c52650 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x62d65da8 serdev_device_set_tiocm EXPORT_SYMBOL_GPL vmlinux 0x62e3f11c extcon_set_property_sync EXPORT_SYMBOL_GPL vmlinux 0x62eb461a fscrypt_ioctl_get_policy_ex EXPORT_SYMBOL_GPL vmlinux 0x62ee88cc usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x62f319de __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0x62fec003 edac_device_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x63026490 unregister_kprobe EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x6316997b device_change_owner EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x631a32b7 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x6323df8b crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x632ad5e6 dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0x6334b38b gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x633d1524 __SCK__tp_func_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model EXPORT_SYMBOL_GPL vmlinux 0x634efd99 dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x635ed7ad acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0x635f824d pci_epc_set_msi EXPORT_SYMBOL_GPL vmlinux 0x6389c0c8 gnttab_page_cache_get EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x63900cc4 skcipher_walk_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x63a72244 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x63b2bbf3 ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x63b3fffb bsg_register_queue EXPORT_SYMBOL_GPL vmlinux 0x63b5e4ea mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x63b7268c devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x63baec1c ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x63bb5987 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x63bec973 rtnl_get_net_ns_capable EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare EXPORT_SYMBOL_GPL vmlinux 0x63c8cfe5 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x63de54b5 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x63d3b6c7 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x63e75aa8 fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str EXPORT_SYMBOL_GPL vmlinux 0x63f89423 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x63f89449 mmc_send_abort_tuning EXPORT_SYMBOL_GPL vmlinux 0x6409bf3b clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x6412e018 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x641c18ee gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x64301193 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x6434c8d6 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x643aae7c tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0x6449b363 devm_gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x64582711 scsi_dh_set_params EXPORT_SYMBOL_GPL vmlinux 0x645daf78 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x645ecac5 ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0x6461864b gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x646c87b2 msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x6478c01d cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x648c0e25 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x6473ac92 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x6483d74f inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0x648e01b8 ata_bmdma_port_ops EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x6493a5cc class_compat_create_link @@ -22278,42 +22337,49 @@ EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter EXPORT_SYMBOL_GPL vmlinux 0x64a9080a usb_disable_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0x64ae9f30 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x64b27a18 __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0x64b71173 reserve_iova EXPORT_SYMBOL_GPL vmlinux 0x64c2503c devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x64c984e8 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x64ca1b15 regulator_count_voltages EXPORT_SYMBOL_GPL vmlinux 0x64cca3e3 vfio_iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load +EXPORT_SYMBOL_GPL vmlinux 0x64d70ef9 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0x64dff651 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x64e1a367 __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0x64e1f4bd acpi_processor_get_performance_info EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete EXPORT_SYMBOL_GPL vmlinux 0x64e37042 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x64e554b3 clk_hw_get_name EXPORT_SYMBOL_GPL vmlinux 0x64f23c19 pci_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush EXPORT_SYMBOL_GPL vmlinux 0x64f99525 phy_pm_runtime_put EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x6504c48f ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x6514bc56 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x65069a11 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x6509334b skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x651341eb __lock_page_killable EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x6529c453 ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x65461a93 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x65468483 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6531e5a6 __SCK__tp_func_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x654813ea nvdimm_blk_region_create EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x65837555 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x6575e23f skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0x6586a46b iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x658dea9d of_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x6598e898 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x659ddf7c sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x65a67bb7 gpiod_direction_input EXPORT_SYMBOL_GPL vmlinux 0x65b91f63 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x65c0ad87 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x65cb7885 filemap_range_needs_writeback EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers EXPORT_SYMBOL_GPL vmlinux 0x65da622a fat_alloc_new_dir EXPORT_SYMBOL_GPL vmlinux 0x65db40cf to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x65f024c4 fwnode_graph_get_remote_port_parent EXPORT_SYMBOL_GPL vmlinux 0x65fab729 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x65ffe097 skcipher_walk_complete EXPORT_SYMBOL_GPL vmlinux 0x6606abad serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0x660ca08a xenbus_switch_state EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol EXPORT_SYMBOL_GPL vmlinux 0x661f2956 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x662af451 aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0x662b589e spi_controller_dma_map_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end @@ -22321,124 +22387,125 @@ EXPORT_SYMBOL_GPL vmlinux 0x664aff29 iomap_swapfile_activate EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle EXPORT_SYMBOL_GPL vmlinux 0x6674b294 edac_device_handle_ce_count EXPORT_SYMBOL_GPL vmlinux 0x66755e51 intel_pmic_install_opregion_handler +EXPORT_SYMBOL_GPL vmlinux 0x66817a4f sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng EXPORT_SYMBOL_GPL vmlinux 0x6685354f dev_pm_opp_unregister_set_opp_helper EXPORT_SYMBOL_GPL vmlinux 0x66867fee tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0x669f2651 __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x668f7dac nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x669a050c nl_table +EXPORT_SYMBOL_GPL vmlinux 0x66abac04 set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider EXPORT_SYMBOL_GPL vmlinux 0x66b72407 dev_attr_ncq_prio_enable EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up EXPORT_SYMBOL_GPL vmlinux 0x66c117d5 mmu_interval_notifier_remove EXPORT_SYMBOL_GPL vmlinux 0x66cb5b0e tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x66d0912f sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x66d22dd8 events_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr EXPORT_SYMBOL_GPL vmlinux 0x66ee2f48 acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x671db283 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x6724bca8 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x67264343 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x66f2d8bd intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL vmlinux 0x670e9b3e __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0x67289a73 regcache_cache_bypass EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x673ccbee perf_aux_output_end EXPORT_SYMBOL_GPL vmlinux 0x673f4046 iomap_dio_iopoll EXPORT_SYMBOL_GPL vmlinux 0x674444e1 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x6757dde1 regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0x6759bd00 __SCT__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x675d1ccf nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x6767992e skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x675b2028 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x675f5218 bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0x676d8e29 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x677f5fc7 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x678b448f device_find_child EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error EXPORT_SYMBOL_GPL vmlinux 0x67911304 mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits EXPORT_SYMBOL_GPL vmlinux 0x679587cb usb_ifnum_to_if EXPORT_SYMBOL_GPL vmlinux 0x67af4f62 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x67b8c318 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x67d81e2b fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x67e20b9e perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x67e25de7 __hwspin_lock_timeout EXPORT_SYMBOL_GPL vmlinux 0x67eadc84 uart_insert_char EXPORT_SYMBOL_GPL vmlinux 0x67ef2c63 gpiod_unexport EXPORT_SYMBOL_GPL vmlinux 0x67f09744 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x67f5cebc blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0x67f687bb ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0x67f7f192 dev_pm_opp_set_prop_name EXPORT_SYMBOL_GPL vmlinux 0x67fe1aee extcon_get_extcon_dev EXPORT_SYMBOL_GPL vmlinux 0x68097de7 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x680da640 ata_sas_port_resume EXPORT_SYMBOL_GPL vmlinux 0x680ff68b serdev_device_write_wakeup EXPORT_SYMBOL_GPL vmlinux 0x6821874f rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x6825340f bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x682f7261 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x68384d7a devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x683eb09b gpiod_set_debounce EXPORT_SYMBOL_GPL vmlinux 0x684342bf devm_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x6845357b gnttab_unmap_refs_async EXPORT_SYMBOL_GPL vmlinux 0x685c572d vp_modern_get_features EXPORT_SYMBOL_GPL vmlinux 0x685db132 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x685f3aae __SCK__tp_func_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0x6871cfde usb_alloc_streams EXPORT_SYMBOL_GPL vmlinux 0x68777eea dev_pm_opp_find_level_ceil -EXPORT_SYMBOL_GPL vmlinux 0x687caf3c sdio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x68853b79 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x68882387 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x688d07ff clk_register EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch EXPORT_SYMBOL_GPL vmlinux 0x689ae9a0 genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0x689d9ad6 regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0x68ae8464 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x68e1bcf4 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x68a4c5a3 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x68aac6a3 cpufreq_cpu_get_raw EXPORT_SYMBOL_GPL vmlinux 0x68fa43f0 tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x68fd96bf regulator_suspend_disable EXPORT_SYMBOL_GPL vmlinux 0x690077bd of_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array EXPORT_SYMBOL_GPL vmlinux 0x69106177 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x69136a3a regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0x69185735 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x692668b2 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x69332501 devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x694a4307 led_classdev_notify_brightness_hw_changed EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x6979a2c4 unregister_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697e1b44 crypto_unregister_ahash EXPORT_SYMBOL_GPL vmlinux 0x69b4e2a9 ata_sff_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr EXPORT_SYMBOL_GPL vmlinux 0x69d3f5f1 led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0x69d90a90 __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen EXPORT_SYMBOL_GPL vmlinux 0x69e83605 mc146818_get_time EXPORT_SYMBOL_GPL vmlinux 0x69eaa971 virtqueue_enable_cb_prepare EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x69fa182b crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0x6a051906 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x6a02f2fe clk_hw_get_num_parents EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode EXPORT_SYMBOL_GPL vmlinux 0x6a0b451c usb_hcd_pci_probe EXPORT_SYMBOL_GPL vmlinux 0x6a12161a nvdimm_setup_pfn EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a3b49c8 __tracepoint_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0x6a3d898b tty_wakeup 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 0x6a61f792 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x6a6440f7 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x6a745bc5 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0x6a767498 irq_domain_free_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start EXPORT_SYMBOL_GPL vmlinux 0x6a84cc15 pci_epf_unbind EXPORT_SYMBOL_GPL vmlinux 0x6a92b703 __devm_reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x6a92f6b8 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x6a992331 __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x6a9e05a8 nvdimm_bus_add_badrange EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf EXPORT_SYMBOL_GPL vmlinux 0x6aa6917c elv_unregister EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6ac5c62b seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x6ac7852f device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x6adc228b phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0x6af0bf43 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x6b09b6a1 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x6afa416d regulator_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors EXPORT_SYMBOL_GPL vmlinux 0x6b233a75 tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x6b29ed16 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x6b29d277 synth_event_trace EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable EXPORT_SYMBOL_GPL vmlinux 0x6b35a16b intel_scu_ipc_dev_get EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b52b6fe regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x6b5af554 scsi_mode_select EXPORT_SYMBOL_GPL vmlinux 0x6b68ba59 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x6b716f02 ata_sas_sync_probe EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup EXPORT_SYMBOL_GPL vmlinux 0x6b7ce72d fsl_mc_device_group EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier @@ -22446,37 +22513,43 @@ EXPORT_SYMBOL_GPL vmlinux 0x6b8b914d debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0x6b97f110 regcache_sync_region EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value EXPORT_SYMBOL_GPL vmlinux 0x6bb63c58 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x6bb6c589 devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6bbc9820 skb_partial_csum_set EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save EXPORT_SYMBOL_GPL vmlinux 0x6bd5122d class_compat_remove_link EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x6be93cb2 devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x6bf18970 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x6bfaf1f2 scsi_host_complete_all_commands EXPORT_SYMBOL_GPL vmlinux 0x6bffc8ec dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x6c11a237 __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x6c1e498b nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x6c02b691 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x6c03a457 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x6c1654b0 __netpoll_cleanup EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print EXPORT_SYMBOL_GPL vmlinux 0x6c29dc86 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6c376f5f xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c3f91ad put_pid +EXPORT_SYMBOL_GPL vmlinux 0x6c4b0853 nf_checksum EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c4e0223 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x6c56f69a __SCK__tp_func_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier EXPORT_SYMBOL_GPL vmlinux 0x6c70a5e7 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x6c72b789 wm8350_set_bits EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work EXPORT_SYMBOL_GPL vmlinux 0x6c81ecb9 init_user_ns EXPORT_SYMBOL_GPL vmlinux 0x6c86c19c platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x6c99a318 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x6c93a3a9 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x6ca325b9 devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain EXPORT_SYMBOL_GPL vmlinux 0x6cad139e fuse_get_unique EXPORT_SYMBOL_GPL vmlinux 0x6caf7b20 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0x6cb915dc __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0x6cc7031f pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x6ceeb927 ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0x6cf55cbe dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x6cec4210 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x6cfb0d61 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x6cfba8f3 bpf_prog_add 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 @@ -22486,196 +22559,193 @@ EXPORT_SYMBOL_GPL vmlinux 0x6d2b6244 pci_epc_start EXPORT_SYMBOL_GPL vmlinux 0x6d2e899d mce_usable_address EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list EXPORT_SYMBOL_GPL vmlinux 0x6d34e352 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x6d37715c __tracepoint_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x6d3e0a0a fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x6d440db8 devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0x6d481cf8 dev_fwnode EXPORT_SYMBOL_GPL vmlinux 0x6d56c902 mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0x6d5fe05a of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x6d67cdaf inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any EXPORT_SYMBOL_GPL vmlinux 0x6d74a03b pci_pri_supported EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d88b132 l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0x6dac7169 devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x6db00390 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x6d871e4a skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x6da4e721 __SCK__tp_func_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 EXPORT_SYMBOL_GPL vmlinux 0x6dc5ee87 vfio_pci_core_write +EXPORT_SYMBOL_GPL vmlinux 0x6dc962d7 spi_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6dddf85e perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0x6df967aa devm_memremap_pages EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x6e104b5d __SCK__tp_func_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x6e2904a9 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x6e2b2a23 sched_set_normal EXPORT_SYMBOL_GPL vmlinux 0x6e2b81fa pci_generic_config_write32 EXPORT_SYMBOL_GPL vmlinux 0x6e32fde0 inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free EXPORT_SYMBOL_GPL vmlinux 0x6e4fc618 irq_gc_ack_set_bit EXPORT_SYMBOL_GPL vmlinux 0x6e554c6f unwind_get_return_address -EXPORT_SYMBOL_GPL vmlinux 0x6e663a87 ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id EXPORT_SYMBOL_GPL vmlinux 0x6e83d93a query_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6ea4b1f9 lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0x6eb824a9 iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6eca1a6c intel_pinctrl_probe_by_hid -EXPORT_SYMBOL_GPL vmlinux 0x6ecab1a1 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x6ee264a2 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x6ebf0a2e rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x6ed36d90 aead_register_instance EXPORT_SYMBOL_GPL vmlinux 0x6ee89db0 acpi_bus_trim EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x6eefdc9d init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ef91d39 gpiochip_unlock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x6f0caa6c pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x6f11457e gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f147a3f skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x6f200abb devm_device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x6f21bdf5 spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0x6f25df55 msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0x6f27e4ba smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x6f25a855 regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0x6f39bbf4 devm_gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x6f44a122 tpm_pcr_read EXPORT_SYMBOL_GPL vmlinux 0x6f5089c4 gnttab_foreach_grant_in_range EXPORT_SYMBOL_GPL vmlinux 0x6f547864 acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x6f5d6e5c crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x6f68cc06 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x6f701ecf gpiod_is_active_low EXPORT_SYMBOL_GPL vmlinux 0x6f773edb xenbus_watch_pathfmt EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f8675f7 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x6f915cd7 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x6f83f9e6 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x6f9336a1 peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0x6f935e35 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6f951e4e regulator_suspend_disable EXPORT_SYMBOL_GPL vmlinux 0x6f95bb84 sbitmap_queue_init_node EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fa1a7c2 __tracepoint_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x6fabae87 kobject_create_and_add EXPORT_SYMBOL_GPL vmlinux 0x6faf64d0 syscon_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0x6fcb2838 __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fcf1ff7 perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0x6fd6472c cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x6fe3c38a xfrm_register_translator EXPORT_SYMBOL_GPL vmlinux 0x6feb8e6b xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x6ff34a34 fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng EXPORT_SYMBOL_GPL vmlinux 0x6ffce680 x86_cpu_has_min_microcode_rev -EXPORT_SYMBOL_GPL vmlinux 0x6fff80d3 __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0x70039f0c trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x7000d437 __SCK__tp_func_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x700e468c __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x7010722d sysfs_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x701cbd76 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x70220879 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x701e4f4c rdev_get_name EXPORT_SYMBOL_GPL vmlinux 0x703e4b4e blk_ksm_init_passthrough EXPORT_SYMBOL_GPL vmlinux 0x7055c56e __sbitmap_queue_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x705647f0 xhci_update_hub_device EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe -EXPORT_SYMBOL_GPL vmlinux 0x7062750c lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x70798ccf inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x708113f7 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x70b04116 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x707a2519 ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x70c0762b crypto_grab_skcipher EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70c589d1 security_path_link EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d7ba92 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x70d7cba7 devlink_resource_register EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message EXPORT_SYMBOL_GPL vmlinux 0x70eb0c20 pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0x70eb7a97 device_create -EXPORT_SYMBOL_GPL vmlinux 0x710818bc dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71269a7a __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x713358d0 splice_to_pipe EXPORT_SYMBOL_GPL vmlinux 0x7134ef3c irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0x71504438 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7155b57f crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized EXPORT_SYMBOL_GPL vmlinux 0x7164e2e1 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x716d2f11 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x717b18f1 __spi_register_driver EXPORT_SYMBOL_GPL vmlinux 0x717ee33a pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0x7181f7c7 fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0x71872e9f __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x7185d132 setfl +EXPORT_SYMBOL_GPL vmlinux 0x71875215 pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x71876055 tty_save_termios EXPORT_SYMBOL_GPL vmlinux 0x719b5cf1 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x719c1325 hrtimer_init_sleeper EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x719eb9d2 __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x71a34e34 devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x71a6dc6d pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x71a71e59 fwnode_get_named_gpiod EXPORT_SYMBOL_GPL vmlinux 0x71ac56b2 get_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0x71b0a905 acpi_set_modalias EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0x71b2c835 regulator_set_voltage_time_sel EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71b8fdaf bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map EXPORT_SYMBOL_GPL vmlinux 0x71ca1b0f acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x71ccd1b4 __SCK__tp_func_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x71d27694 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0x71e904a2 tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0x71eada2d efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0x71eb54bf of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x71f1f024 xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0x71f44952 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x71f75219 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x71f7d9eb fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x7208683a dma_buf_unpin +EXPORT_SYMBOL_GPL vmlinux 0x722ca616 ata_link_next EXPORT_SYMBOL_GPL vmlinux 0x7234e0c2 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x723aa12d lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x725033ee pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x7253f69e extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0x725d7f33 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum EXPORT_SYMBOL_GPL vmlinux 0x72674025 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x726c8d81 regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0x727341f2 dw_pcie_host_init EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7279421a __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x7282c6ad crypto_stats_init EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x72899244 msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x729854dd generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x72aadcfa devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0x72ae8631 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x72af8ea0 sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0x72afeaef thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x72b947ce regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x72bc6d90 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x72b694fd unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x72becc94 nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0x72c79dde ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x72ce7adc crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72d2f8b2 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x72d5f148 sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0x72dceacd ata_sff_data_xfer32 EXPORT_SYMBOL_GPL vmlinux 0x72e1243c percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x72e7eb3b regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x72f0c743 device_link_add EXPORT_SYMBOL_GPL vmlinux 0x72f79352 iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x731391b8 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x7316f118 inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x7332bd2a ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0x7339dbd7 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x733d193f __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0x733ec33e __SCT__tp_func_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x73423a3c elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0x734e54ce phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x7355ed5f of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x7356b741 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x7379a1a3 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x737bf899 spi_get_next_queued_message EXPORT_SYMBOL_GPL vmlinux 0x7380bbd6 blk_mq_freeze_queue_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x73869298 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x73880339 __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket EXPORT_SYMBOL_GPL vmlinux 0x7390c607 palmas_ext_control_req_config EXPORT_SYMBOL_GPL vmlinux 0x739bda57 hwspin_lock_unregister EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73a5780d ping_err EXPORT_SYMBOL_GPL vmlinux 0x73c1f749 vring_create_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c47c28 inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73cd1da5 __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x73d97615 shash_ahash_update EXPORT_SYMBOL_GPL vmlinux 0x73dc96bd usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x73e35660 wakeup_source_destroy EXPORT_SYMBOL_GPL vmlinux 0x73ea3a6a ata_acpi_gtm_xfermask EXPORT_SYMBOL_GPL vmlinux 0x73ec118d fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x73f52a9c rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7400914f bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0x7419e976 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x74260a26 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x742b61a3 clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0x742ca79d debugfs_create_size_t EXPORT_SYMBOL_GPL vmlinux 0x74346c8a regcache_cache_only EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x74452ed0 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x74452ba0 sched_trace_rq_cpu_capacity EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x7446bde3 security_path_chown EXPORT_SYMBOL_GPL vmlinux 0x744f8c61 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x7450069c sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0x74513223 bus_create_file EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7454bb12 spi_setup EXPORT_SYMBOL_GPL vmlinux 0x7470adf5 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x747715e0 ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x748ce28b nd_blk_region_to_dimm EXPORT_SYMBOL_GPL vmlinux 0x74af0f04 fat_flush_inodes EXPORT_SYMBOL_GPL vmlinux 0x74af4dcf pci_msi_prepare @@ -22683,28 +22753,25 @@ 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 0x74d0cdf6 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x74d647eb crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x74d0d1b0 __mnt_is_readonly EXPORT_SYMBOL_GPL vmlinux 0x74d862ca securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x74dff6f5 devm_i2c_add_adapter EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden EXPORT_SYMBOL_GPL vmlinux 0x74ed6880 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x74f449ef fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x74f4bdeb gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x74ff0554 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x75056b04 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x75094871 __devm_spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status EXPORT_SYMBOL_GPL vmlinux 0x7528f6d0 blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0x7528fe23 fat_truncate_time EXPORT_SYMBOL_GPL vmlinux 0x754adddd uart_console_device -EXPORT_SYMBOL_GPL vmlinux 0x754c83d7 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x75678166 i2c_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x756b80e2 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x757835ba call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x75a13536 scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0x75af7b8b class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x75baba86 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x75b48e6c sdio_retune_release EXPORT_SYMBOL_GPL vmlinux 0x75be46aa handle_irq_desc -EXPORT_SYMBOL_GPL vmlinux 0x75c102c4 mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0x75c111aa power_supply_set_battery_charged EXPORT_SYMBOL_GPL vmlinux 0x75cbf375 debugfs_create_u64 EXPORT_SYMBOL_GPL vmlinux 0x75d0e317 balloon_page_dequeue @@ -22714,96 +22781,96 @@ EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled EXPORT_SYMBOL_GPL vmlinux 0x75ea7be5 dbs_update EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store EXPORT_SYMBOL_GPL vmlinux 0x75f17b3b simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x75fc79f3 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x75feb9ba path_noexec EXPORT_SYMBOL_GPL vmlinux 0x76183a60 securityfs_remove EXPORT_SYMBOL_GPL vmlinux 0x761b4cdd pci_cfg_access_unlock EXPORT_SYMBOL_GPL vmlinux 0x762640ab __SCT__tp_func_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x7631c869 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x7646e008 fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x764c8048 usb_check_int_endpoints EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x76595c51 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0x765d0ff6 ata_sff_data_xfer EXPORT_SYMBOL_GPL vmlinux 0x765f8830 __SCT__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x766312d7 __tracepoint_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x7668a3f1 i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0x766e3ac4 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x767ec75c i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x7675b011 ata_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0x7680ff31 usb_autopm_put_interface EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier EXPORT_SYMBOL_GPL vmlinux 0x768f05e6 pinctrl_utils_free_map EXPORT_SYMBOL_GPL vmlinux 0x7694a0df __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x769646df ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic EXPORT_SYMBOL_GPL vmlinux 0x76a211cd vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL vmlinux 0x76b72dbf __SCK__tp_func_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x76bbb39c input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x76c2adbc thermal_zone_get_zone_by_name EXPORT_SYMBOL_GPL vmlinux 0x76c9e263 pci_bus_add_device EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76db5854 gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x76dc031e asm_exc_nmi_noist EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76ef73c8 perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0x7700f871 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x77047da7 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x7707f841 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x77097931 crypto_unregister_shashes EXPORT_SYMBOL_GPL vmlinux 0x770ce11d pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x770e0c3d lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x77172690 fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0x7720ef9f register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x7719763c crypto_stats_akcipher_encrypt 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 0x773f009a gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux EXPORT_SYMBOL_GPL vmlinux 0x77495213 ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0x774a65e5 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7755e623 gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister EXPORT_SYMBOL_GPL vmlinux 0x775ecf42 irq_chip_disable_parent EXPORT_SYMBOL_GPL vmlinux 0x7769bbaa ima_file_check EXPORT_SYMBOL_GPL vmlinux 0x776a2dc5 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x776ba123 spi_res_alloc EXPORT_SYMBOL_GPL vmlinux 0x777d4f19 usb_ep0_reinit EXPORT_SYMBOL_GPL vmlinux 0x778bad05 regulator_set_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x77999533 __tracepoint_block_split EXPORT_SYMBOL_GPL vmlinux 0x779b37e2 dev_pm_genpd_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x77a4820c inet6_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b4ede7 inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0x77b9969b sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x77de4913 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x77b750bd posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77e28033 pskb_put EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77fd8244 __SCK__tp_func_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x77ff9a3e led_put EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x78164148 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x781a5a2d __sock_recv_ts_and_drops EXPORT_SYMBOL_GPL vmlinux 0x781be5aa acpi_pm_wakeup_event EXPORT_SYMBOL_GPL vmlinux 0x7821d9e2 acpi_device_modalias EXPORT_SYMBOL_GPL vmlinux 0x78275bec scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x783046e5 xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0x78452bc0 __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x7847f665 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x785253a9 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x78426b58 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x784e5bcf sdio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available EXPORT_SYMBOL_GPL vmlinux 0x785d210f usb_get_urb EXPORT_SYMBOL_GPL vmlinux 0x785d2820 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x786cc698 fl6_update_dst EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788072ce bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x788ccdaa metadata_dst_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x788f1931 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x788fde31 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x7890858a crypto_register_akcipher EXPORT_SYMBOL_GPL vmlinux 0x78917d23 devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x789367f3 sock_diag_unregister_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot EXPORT_SYMBOL_GPL vmlinux 0x78b36b60 blk_poll EXPORT_SYMBOL_GPL vmlinux 0x78bab66b irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0x78c9ffa1 cpufreq_driver_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match EXPORT_SYMBOL_GPL vmlinux 0x78e3401a usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x78e582a8 ata_port_abort EXPORT_SYMBOL_GPL vmlinux 0x78ecdc7f iopf_queue_remove_device EXPORT_SYMBOL_GPL vmlinux 0x78ee8c5a dev_pm_genpd_suspend EXPORT_SYMBOL_GPL vmlinux 0x78f0c296 devm_free_pages EXPORT_SYMBOL_GPL vmlinux 0x78fa64e2 fpu_copy_guest_fpstate_to_uabi -EXPORT_SYMBOL_GPL vmlinux 0x790777da devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x7906364e wm8350_set_bits EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr EXPORT_SYMBOL_GPL vmlinux 0x7915cee5 do_machine_check EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode @@ -22811,59 +22878,55 @@ EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure EXPORT_SYMBOL_GPL vmlinux 0x793dcb8f devm_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac -EXPORT_SYMBOL_GPL vmlinux 0x7949f001 regulator_set_load EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x795003cb tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x795c4fc2 __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x796794fb devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x7969761d __tracepoint_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x796c14b9 regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x79880bda devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x796c505d cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x797b2fc5 __spi_register_driver EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x7991df31 device_find_child EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss EXPORT_SYMBOL_GPL vmlinux 0x799c2ad4 ata_bmdma_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x79a2eece proc_get_parent_data EXPORT_SYMBOL_GPL vmlinux 0x79a8ddac vfio_external_group_match_file EXPORT_SYMBOL_GPL vmlinux 0x79ace80b acpi_get_first_physical_node -EXPORT_SYMBOL_GPL vmlinux 0x79af5d2d xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79befab0 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0x79c29df0 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x79d587b1 device_create_with_groups EXPORT_SYMBOL_GPL vmlinux 0x79daf4de __SCT__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x79db5f52 blk_trace_setup EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park EXPORT_SYMBOL_GPL vmlinux 0x79e50219 led_set_brightness EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped EXPORT_SYMBOL_GPL vmlinux 0x79ef667e edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x79f0732f dax_iomap_rw EXPORT_SYMBOL_GPL vmlinux 0x79f57320 iommu_present EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress EXPORT_SYMBOL_GPL vmlinux 0x79fa9d56 ata_bmdma_post_internal_cmd EXPORT_SYMBOL_GPL vmlinux 0x7a0b893c pci_epf_create EXPORT_SYMBOL_GPL vmlinux 0x7a1eb4b8 acct_bioset_init EXPORT_SYMBOL_GPL vmlinux 0x7a1ebbab dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x7a1f6b59 strp_init -EXPORT_SYMBOL_GPL vmlinux 0x7a2f3e6e device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x7a210860 crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0x7a318954 __bio_try_merge_page EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x7a383f68 housekeeping_affine EXPORT_SYMBOL_GPL vmlinux 0x7a3d50c4 rio_release_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0x7a462e46 pm_clk_suspend EXPORT_SYMBOL_GPL vmlinux 0x7a517255 nvmem_device_find EXPORT_SYMBOL_GPL vmlinux 0x7a54e67f usb_hcd_giveback_urb EXPORT_SYMBOL_GPL vmlinux 0x7a5dd93c tty_port_tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0x7a655f68 acpi_processor_claim_cst_control -EXPORT_SYMBOL_GPL vmlinux 0x7a6ddbea fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x7a6b9271 rdev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values EXPORT_SYMBOL_GPL vmlinux 0x7a75413f __regmap_init_i2c EXPORT_SYMBOL_GPL vmlinux 0x7a779b87 devm_of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a8b25b7 devlink_port_register EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9d3449 tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7aa4b5fb devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7aadd223 trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0x7ab391eb scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7ab3bcaa regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0x7ab916d4 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x7abbc558 fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register EXPORT_SYMBOL_GPL vmlinux 0x7ac1af4f ata_sff_prereset EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array @@ -22871,10 +22934,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings EXPORT_SYMBOL_GPL vmlinux 0x7ae01b13 usb_get_current_frame_number EXPORT_SYMBOL_GPL vmlinux 0x7ae31efe tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x7ae74b5f raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x7b1116e7 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x7b148042 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x7b0eb1a8 ping_get_port EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0x7b1dac88 iommu_group_add_device EXPORT_SYMBOL_GPL vmlinux 0x7b2effa4 kthread_cancel_delayed_work_sync @@ -22884,83 +22945,79 @@ EXPORT_SYMBOL_GPL vmlinux 0x7b55a018 pinctrl_add_gpio_ranges EXPORT_SYMBOL_GPL vmlinux 0x7b56e4b6 dev_pm_opp_xlate_required_opp EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x7b5af826 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x7b68f0dc ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0x7b6af7c7 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x7b643c26 rtc_class_open EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler EXPORT_SYMBOL_GPL vmlinux 0x7b71c527 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x7b75a960 __mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b92d007 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0x7b976693 xenbus_dev_is_online EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b9d6659 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x7baaea8c lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0x7bae1a22 tpm_chip_register EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bbf8567 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x7bbfb9f0 bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x7bcb1abc fscrypt_prepare_new_inode EXPORT_SYMBOL_GPL vmlinux 0x7be499cf pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x7c024a7a devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0x7bf8f036 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x7c01eca2 strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x7c032473 cpci_hp_unregister_bus EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c3fefb3 unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0x7c41e27d regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x7c4c0920 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x7c53d0d5 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator -EXPORT_SYMBOL_GPL vmlinux 0x7c613af6 fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0x7c626556 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7c6a2da9 __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x7c6e3611 sched_trace_rq_cpu_capacity EXPORT_SYMBOL_GPL vmlinux 0x7c70ad51 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7c7195a5 mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x7c72014b fsverity_ioctl_enable EXPORT_SYMBOL_GPL vmlinux 0x7c74333f vfio_pci_core_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7c80679d device_change_owner EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence EXPORT_SYMBOL_GPL vmlinux 0x7ca85256 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x7ca870f3 nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x7cb33664 user_update EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7cc72c61 perf_get_aux EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats EXPORT_SYMBOL_GPL vmlinux 0x7ccfadc5 efivar_entry_add EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver EXPORT_SYMBOL_GPL vmlinux 0x7cdca0ee syscon_regmap_lookup_by_phandle_optional EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf0af6f wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x7d1448f7 crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn EXPORT_SYMBOL_GPL vmlinux 0x7d216558 subsys_interface_register EXPORT_SYMBOL_GPL vmlinux 0x7d241719 rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0x7d2b99ce rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7d2bdde1 regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x7d2c494f dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d3f78dc device_show_ulong EXPORT_SYMBOL_GPL vmlinux 0x7d491683 free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x7d56618b sata_link_scr_lpm EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq EXPORT_SYMBOL_GPL vmlinux 0x7d5ffdf7 fuse_abort_conn EXPORT_SYMBOL_GPL vmlinux 0x7d6408f3 dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x7d6f642f sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x7d7eb847 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x7d81f898 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x7d8503a9 __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x7d940fdc icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x7d9a0ee3 hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0x7d9c4dea lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x7daf0a9c alloc_page_buffers EXPORT_SYMBOL_GPL vmlinux 0x7db47a37 dw_pcie_ep_linkup EXPORT_SYMBOL_GPL vmlinux 0x7db605e8 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x7dc5e879 device_get_child_node_count EXPORT_SYMBOL_GPL vmlinux 0x7dc965b6 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7dcf7356 devm_of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x7dd1cbde regulator_bulk_force_disable 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 0x7ded4496 platform_msi_domain_free_irqs EXPORT_SYMBOL_GPL vmlinux 0x7df3c059 pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x7e0f725d fwnode_graph_get_next_endpoint EXPORT_SYMBOL_GPL vmlinux 0x7e116769 devm_clk_get_enabled EXPORT_SYMBOL_GPL vmlinux 0x7e2ed08f xenbus_dev_probe EXPORT_SYMBOL_GPL vmlinux 0x7e33becf vp_modern_set_features EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e47a05b bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x7e4a480c fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0x7e4e66e4 __phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0x7e4ebf40 dev_attr_ncq_prio_supported EXPORT_SYMBOL_GPL vmlinux 0x7e5bb2b8 pci_epf_free_space @@ -22968,202 +23025,208 @@ EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e8484c1 device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0x7e9043b8 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x7e9fae76 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x7e9bc863 splice_to_pipe EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7eb89caf regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x7ecbcd9f gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7ecfbf1b skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x7edb9013 rtc_read_time EXPORT_SYMBOL_GPL vmlinux 0x7ee75dba umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0x7ee97df8 call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async EXPORT_SYMBOL_GPL vmlinux 0x7efbed2d sata_sff_hardreset EXPORT_SYMBOL_GPL vmlinux 0x7efd2a02 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7f0c18b0 strp_done -EXPORT_SYMBOL_GPL vmlinux 0x7f11df6f devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0x7f257204 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x7f0143fd devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x7f0db57f sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0x7f2f8a21 iommu_device_sysfs_add -EXPORT_SYMBOL_GPL vmlinux 0x7f356faa __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x7f37893d regmap_noinc_read EXPORT_SYMBOL_GPL vmlinux 0x7f46b691 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x7f4b8e04 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x7f4d8461 crypto_shash_finup EXPORT_SYMBOL_GPL vmlinux 0x7f58d15d dma_buf_begin_cpu_access EXPORT_SYMBOL_GPL vmlinux 0x7f59d128 extcon_set_state_sync EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f6f68fc __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7f797cc0 ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata EXPORT_SYMBOL_GPL vmlinux 0x7f919b7a vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x7f9abd34 cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x7fa51fe8 driver_deferred_probe_check_state -EXPORT_SYMBOL_GPL vmlinux 0x7fa7066a __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fae74ca __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x7faebf9d devlink_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops EXPORT_SYMBOL_GPL vmlinux 0x7fb3316a blk_ksm_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x7fc1b746 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x7fc3188c device_set_node EXPORT_SYMBOL_GPL vmlinux 0x7fe1e3b4 input_ff_create EXPORT_SYMBOL_GPL vmlinux 0x7fed4729 usb_wakeup_notification EXPORT_SYMBOL_GPL vmlinux 0x80077fe5 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x802d783a __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8026f7ed mmc_regulator_get_supply EXPORT_SYMBOL_GPL vmlinux 0x802fc14c sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x80317934 device_rename EXPORT_SYMBOL_GPL vmlinux 0x8036154a _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x8051efeb __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x8056090b devm_device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put EXPORT_SYMBOL_GPL vmlinux 0x8065e333 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x806611cc device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8073e540 __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x807fe1fa devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0x80800cd9 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0x808236d3 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x808a34e2 __tracepoint_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x808a8088 handle_guest_split_lock EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80a50c46 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x80aa3609 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x809cbf7c sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0x80b5e55e __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x80c06e26 usb_find_interface EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80ee375f perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x81063589 __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0x81158392 bus_register EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num -EXPORT_SYMBOL_GPL vmlinux 0x81295137 trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0x8130deb6 fuse_dev_release EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x814c6b76 phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x814dffa2 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x81542e81 __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x813d07a7 __tracepoint_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable EXPORT_SYMBOL_GPL vmlinux 0x815eac9f tty_ldisc_ref EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8167f4d6 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x8168833b crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x8180b195 bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence EXPORT_SYMBOL_GPL vmlinux 0x819211e3 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x8199ab83 sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0x819bb50b irq_generic_chip_ops EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a70bcc dev_pm_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81a885f5 sata_link_hardreset EXPORT_SYMBOL_GPL vmlinux 0x81aba0ea phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0x81ad420b inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81bcbad5 security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x81bc0d0d devm_regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0x81c018da devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x81c3df52 regulator_sync_voltage EXPORT_SYMBOL_GPL vmlinux 0x81c56bc5 nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x81cf2642 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x81e705f6 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x81caba9f netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x81fb7876 spi_write_then_read EXPORT_SYMBOL_GPL vmlinux 0x8202defb devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x8204cea9 spi_finalize_current_transfer EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x82178879 put_device EXPORT_SYMBOL_GPL vmlinux 0x821ec7f1 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x821f7593 crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings EXPORT_SYMBOL_GPL vmlinux 0x8225a4d9 clk_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x82274a78 iommu_uapi_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x8232297a gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0x823b55dd mbox_chan_txdone EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x8244e2cc class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x824ad30e __traceiter_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x824ef716 rio_get_comptag EXPORT_SYMBOL_GPL vmlinux 0x8253159b driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x8255a407 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x8264a119 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x8273ccdd shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x827f0657 dev_set_name EXPORT_SYMBOL_GPL vmlinux 0x827fe8fb pci_disable_sriov EXPORT_SYMBOL_GPL vmlinux 0x82843440 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x8286d911 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x82875ed1 sata_scr_write EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward EXPORT_SYMBOL_GPL vmlinux 0x828e3d8c usb_control_msg_send EXPORT_SYMBOL_GPL vmlinux 0x8297ae27 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x82b66556 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x82b80f38 vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0x82bb95d5 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x82bbe4d3 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x82befec2 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x82c6b2bd device_match_fwnode EXPORT_SYMBOL_GPL vmlinux 0x82c83728 rio_lock_device EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure EXPORT_SYMBOL_GPL vmlinux 0x82dd0ac1 lookup_address_in_mm +EXPORT_SYMBOL_GPL vmlinux 0x82e82476 nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0x82fae411 devm_regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x8301ffc6 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x8306569b ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x8319b1d4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x831c5b20 acomp_request_free EXPORT_SYMBOL_GPL vmlinux 0x83202334 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x83213094 gpiochip_enable_irq EXPORT_SYMBOL_GPL vmlinux 0x8325a5b8 devm_intel_scu_ipc_dev_get EXPORT_SYMBOL_GPL vmlinux 0x8328673f uv_bios_get_master_nasid +EXPORT_SYMBOL_GPL vmlinux 0x832ce941 sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0x832ea420 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x832febea dax_iomap_fault EXPORT_SYMBOL_GPL vmlinux 0x8335ca43 __SCT__tp_func_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x83469c30 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x833f19cb spi_busnum_to_master EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x834ebfcc i2c_client_type EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x835ca13e i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x83604425 devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x8393eb3d crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x83a21a0a __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x83a6c694 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x83a830d2 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x835d5e4f rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x836744f5 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x8372e5e0 skcipher_walk_done EXPORT_SYMBOL_GPL vmlinux 0x83b108d4 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x83b15ef4 __tracepoint_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x83b90cc6 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x83ba8eec bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x83bc9ec2 lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0x83c6040d unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x83ca354f crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x83d31e7d __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x83d3944f pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x83cb91d6 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x83d98301 ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0x83dad8ec rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x83f4df2a device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x83e9e324 ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0x840143a7 bus_remove_file EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv EXPORT_SYMBOL_GPL vmlinux 0x8426299c thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8437987f phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x844d0b7b sdio_f0_writeb EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x8451926e device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x845be580 device_property_present EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x845e7151 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x8461999b validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type EXPORT_SYMBOL_GPL vmlinux 0x84678725 __SCK__tp_func_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x846dba2d crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x846e82b1 sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0x8474e3bf rio_unmap_outb_region EXPORT_SYMBOL_GPL vmlinux 0x847582a0 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x848793d8 __vfs_removexattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x848925c0 pm_generic_resume_early EXPORT_SYMBOL_GPL vmlinux 0x848ced53 phy_restore_page EXPORT_SYMBOL_GPL vmlinux 0x84b1463b ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id EXPORT_SYMBOL_GPL vmlinux 0x84cae31e dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x84ed582d preempt_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x84f26a01 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x85015b6b skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x84fca964 __SCK__tp_func_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x85076315 nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x8507a4f2 crypto_inst_setname EXPORT_SYMBOL_GPL vmlinux 0x850b54af iomap_file_buffered_write EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy EXPORT_SYMBOL_GPL vmlinux 0x850e3077 dma_free_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x85197486 usb_unlocked_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate EXPORT_SYMBOL_GPL vmlinux 0x852384af regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x852d3397 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x8523ff65 regulator_set_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x853721d1 blk_ksm_register EXPORT_SYMBOL_GPL vmlinux 0x853b40f3 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x85468668 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x854c259c register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x854ec618 trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x85596d69 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x856125a5 of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x85644b0f ata_pci_sff_activate_host EXPORT_SYMBOL_GPL vmlinux 0x85734b4a irq_setup_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x857731f1 serial8250_init_port EXPORT_SYMBOL_GPL vmlinux 0x857b0897 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x85812f9f rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x857b676e trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0x85847c6c pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x8584e081 devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find EXPORT_SYMBOL_GPL vmlinux 0x858eba0f pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags EXPORT_SYMBOL_GPL vmlinux 0x859a02ad regulator_set_pull_down_regmap EXPORT_SYMBOL_GPL vmlinux 0x85ab9d73 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x85ad18aa device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x85ad9004 fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0x85b15444 arch_set_max_freq_ratio +EXPORT_SYMBOL_GPL vmlinux 0x85b4c080 inet6_destroy_sock EXPORT_SYMBOL_GPL vmlinux 0x85b82183 dev_pm_opp_set_regulators EXPORT_SYMBOL_GPL vmlinux 0x85bfc5f9 __SCT__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices -EXPORT_SYMBOL_GPL vmlinux 0x85d05e83 __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial EXPORT_SYMBOL_GPL vmlinux 0x85feb5e6 handle_fasteoi_irq @@ -23172,141 +23235,141 @@ EXPORT_SYMBOL_GPL vmlinux 0x860c9c2b sysfs_remove_files EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x86450a6b device_register EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x86600a38 gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x86697c16 devm_i2c_add_adapter 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 0x867c23ec cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x8689f544 ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x86befaa9 ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0x86c39518 acpi_subsys_suspend EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86d37179 crypto_stats_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x86fd2a2e fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x86fde1b4 modify_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x8704d4a3 blk_ksm_intersect_modes -EXPORT_SYMBOL_GPL vmlinux 0x8709f2a4 __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared EXPORT_SYMBOL_GPL vmlinux 0x8728eae0 pci_user_read_config_byte EXPORT_SYMBOL_GPL vmlinux 0x872d4f7c __SCT__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x87325283 wm8400_reset_codec_reg_cache EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x873bdb68 __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x874391d5 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0x87451b7c rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x873ce1ed regmap_multi_reg_write_bypassed EXPORT_SYMBOL_GPL vmlinux 0x87468573 pci_probe_reset_bus EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x875a8ea0 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x8759226f inet_csk_get_port EXPORT_SYMBOL_GPL vmlinux 0x87641fa7 scsi_dh_attached_handler_name EXPORT_SYMBOL_GPL vmlinux 0x876a5593 genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0x8774ab86 loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0x878ccd2e __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x87995122 __root_device_register EXPORT_SYMBOL_GPL vmlinux 0x87a01a32 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x87a5d104 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x87b5de85 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x87b36d6a trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x87bebb18 gpiod_set_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x87bee82e pci_platform_power_transition EXPORT_SYMBOL_GPL vmlinux 0x87c94e44 powercap_unregister_control_type EXPORT_SYMBOL_GPL vmlinux 0x87ce0be2 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x87cffed0 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x87dfd3ab thermal_zone_bind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature EXPORT_SYMBOL_GPL vmlinux 0x87f34e99 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x87f95b10 cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0x87fd32fc nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0x880164fa crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x8820ce82 kill_device +EXPORT_SYMBOL_GPL vmlinux 0x882dc8de __SCK__tp_func_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x88382a8e hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0x883e4d34 usb_sg_wait EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x885efaed cpufreq_cpu_put EXPORT_SYMBOL_GPL vmlinux 0x88642ba8 rio_unlock_device EXPORT_SYMBOL_GPL vmlinux 0x8864f617 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x8868f1c7 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x88897c91 __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer EXPORT_SYMBOL_GPL vmlinux 0x888ee854 clean_record_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x88a28201 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x88940128 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x889b3aa9 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x88a74dc0 ata_sas_port_alloc EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88afbe13 ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x88bce085 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x88e455a2 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x88ed0085 dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0x88f4aca8 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x88f9e248 rtc_update_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x8902cbc3 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x89084cc2 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x890dcb2d i2c_add_numbered_adapter 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 0x891fa379 crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x8924618b pci_enable_ats EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state EXPORT_SYMBOL_GPL vmlinux 0x892f9f04 __SCT__tp_func_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put EXPORT_SYMBOL_GPL vmlinux 0x8947a1c7 efivars_register EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x894d08d7 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x89590765 fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0x89687020 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x89725bf1 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x89787e12 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x8980c8ea ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0x8986168d pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x899a1545 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x89ab4a18 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x8990d127 __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key EXPORT_SYMBOL_GPL vmlinux 0x89ba4e40 dev_pm_opp_remove_table EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify EXPORT_SYMBOL_GPL vmlinux 0x89c4ac5c make_device_exclusive_range -EXPORT_SYMBOL_GPL vmlinux 0x89c4b42e spi_controller_suspend EXPORT_SYMBOL_GPL vmlinux 0x89d64e6c pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x89d7aa1d regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0x89e27b14 rio_release_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89f296b7 i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0x89fae1f9 ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0x89fb0e04 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x8a033b65 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0x8a159253 dev_pm_opp_put_clkname EXPORT_SYMBOL_GPL vmlinux 0x8a168d11 usb_reset_endpoint EXPORT_SYMBOL_GPL vmlinux 0x8a1b5908 unwind_next_frame EXPORT_SYMBOL_GPL vmlinux 0x8a1d160c mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next EXPORT_SYMBOL_GPL vmlinux 0x8a2475a5 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x8a30a6b6 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x8a3ba2c3 crypto_register_rngs EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP EXPORT_SYMBOL_GPL vmlinux 0x8a48c38b tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x8a48c7d9 cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x8a4b9c3b dev_pm_opp_get_required_pstate -EXPORT_SYMBOL_GPL vmlinux 0x8a5fa492 trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a6aecca ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x8a7c1ee3 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x8a7ad6df crypto_register_template EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control EXPORT_SYMBOL_GPL vmlinux 0x8a83062a restore_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0x8a838ef6 intel_scu_ipc_dev_put EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a8444d7 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x8a9f50dd __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x8aa3698f __SCK__tp_func_block_split EXPORT_SYMBOL_GPL vmlinux 0x8aa77b62 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x8aadc0f4 crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files EXPORT_SYMBOL_GPL vmlinux 0x8abf3fb9 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x8acbdffd register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x8ad2ac6d synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list EXPORT_SYMBOL_GPL vmlinux 0x8ae2da43 alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0x8aed451b bpf_offload_dev_match EXPORT_SYMBOL_GPL vmlinux 0x8b04b249 __rio_local_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0x8b0dc49e dev_attr_sw_activity EXPORT_SYMBOL_GPL vmlinux 0x8b146ea0 usb_deregister_dev EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b1ccdaf xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0x8b27e240 ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0x8b47ea1d __SCT__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x8b4e3e7b inet6_compat_ioctl EXPORT_SYMBOL_GPL vmlinux 0x8b5786cd set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x8b5ac8c4 crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0x8b6ebb04 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x8b72cd96 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x8b6fc479 synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0x8b7dd881 blk_freeze_queue_start EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x8ba58afb bind_interdomain_evtchn_to_irqhandler_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x8bad9eec iomap_dio_rw EXPORT_SYMBOL_GPL vmlinux 0x8bbfbd4a devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x8bc0dd6c trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0x8bc6ed07 __class_register EXPORT_SYMBOL_GPL vmlinux 0x8bcaccfd blk_revalidate_disk_zones EXPORT_SYMBOL_GPL vmlinux 0x8bd712b2 irq_domain_xlate_onetwocell @@ -23314,139 +23377,134 @@ EXPORT_SYMBOL_GPL vmlinux 0x8be85dbe debugfs_create_atomic_t EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c109789 crypto_unregister_skcipher EXPORT_SYMBOL_GPL vmlinux 0x8c10cd7b debugfs_lookup_and_remove -EXPORT_SYMBOL_GPL vmlinux 0x8c15e99b crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0x8c1c7353 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x8c24eab9 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x8c2aa135 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x8c2cbb84 crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs +EXPORT_SYMBOL_GPL vmlinux 0x8c3a7e01 bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference EXPORT_SYMBOL_GPL vmlinux 0x8c4fded2 sgx_virt_einit EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c7bb287 icc_put EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c92b137 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x8ccaa294 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x8cb8b240 bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0x8cdc7ba6 clockevent_delta2ns EXPORT_SYMBOL_GPL vmlinux 0x8cdfe114 power_supply_get_by_name EXPORT_SYMBOL_GPL vmlinux 0x8cea1298 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x8cfbe8f9 devm_platform_ioremap_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x8d003bcf balloon_aops EXPORT_SYMBOL_GPL vmlinux 0x8d0ca1fd find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x8d21e9d9 xfrm_register_translator EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d23fa49 __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x8d2a245c kthread_func EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x8d38a47b dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x8d4084d2 rtc_initialize_alarm EXPORT_SYMBOL_GPL vmlinux 0x8d46b7e6 fscrypt_set_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x8d55d835 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x8d5b2742 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x8d6e05a5 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x8d61c04b regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x8d685235 phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major EXPORT_SYMBOL_GPL vmlinux 0x8d88ee64 sbitmap_queue_wake_up EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0x8dbbaa75 device_init_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8de47f9e __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x8de84949 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0x8df28c00 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x8dfcdcc3 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x8dfd012c crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x8e017733 sdio_get_host_pm_caps EXPORT_SYMBOL_GPL vmlinux 0x8e02ce4b dm_report_zones EXPORT_SYMBOL_GPL vmlinux 0x8e032b94 bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0x8e27b231 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x8e1b68e0 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x8e1d0098 trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0x8e27f4e7 edac_device_del_device EXPORT_SYMBOL_GPL vmlinux 0x8e3d911b arch_phys_wc_index EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e67ba4c phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x8e4f64b7 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x8e5819b0 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x8e5b4743 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e6acd9c gpiochip_line_is_irq EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e7b9b34 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x8e92afc4 blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8e94fe09 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0x8e9ac544 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x8e94387b devlink_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x8ea749c4 usb_acpi_power_manageable EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8eb13e8a icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x8ed7e8a1 usb_hcd_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0x8edefbab __xenmem_reservation_va_mapping_reset +EXPORT_SYMBOL_GPL vmlinux 0x8ee3cf38 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x8ee7e81a devlink_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0x8eed0fa2 sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x8eed8497 nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x8eeea5f8 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8ef72f1d devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0x8ef8a59a gnttab_page_cache_put EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0db088 device_move -EXPORT_SYMBOL_GPL vmlinux 0x8f0e0580 devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0x8f188874 dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0x8f1dfa5c cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x8f2a2279 __tracepoint_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints EXPORT_SYMBOL_GPL vmlinux 0x8f3011a2 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0x8f3b1ba4 sdio_memcpy_fromio EXPORT_SYMBOL_GPL vmlinux 0x8f3ef401 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x8f4089fb synth_event_add_next_val EXPORT_SYMBOL_GPL vmlinux 0x8f432e07 devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x8f4eb51b ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x8f556f8e rtnl_af_register EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x8f6f6e1a fb_deferred_io_init EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool EXPORT_SYMBOL_GPL vmlinux 0x8f8455db irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0x8f8a6e2f xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0x8f8fe1eb syscon_regmap_lookup_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x8f98079c __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x8fa88553 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x8f9bfa94 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x8f9f4d1e rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x8fa31cd4 skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0x8fa9d9e8 __SCT__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid EXPORT_SYMBOL_GPL vmlinux 0x8fb0a314 list_lru_count_one EXPORT_SYMBOL_GPL vmlinux 0x8fb2d4ea watchdog_set_last_hw_keepalive EXPORT_SYMBOL_GPL vmlinux 0x8fb82c75 fsverity_verify_bio EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fcb7551 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x8fd29908 platform_get_mem_or_io EXPORT_SYMBOL_GPL vmlinux 0x8fd78c2f vma_kernel_pagesize EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points EXPORT_SYMBOL_GPL vmlinux 0x8ff99a85 __devm_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x8ffb1df7 acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0x9000d374 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x900a0ee5 phy_package_leave EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear EXPORT_SYMBOL_GPL vmlinux 0x902f6b51 relay_late_setup_files EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put EXPORT_SYMBOL_GPL vmlinux 0x90717a88 kernfs_put EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms -EXPORT_SYMBOL_GPL vmlinux 0x9088bbed vfs_removexattr EXPORT_SYMBOL_GPL vmlinux 0x908af386 dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x908cb10b get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0x9091eb9c dm_bio_from_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x909417e2 dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x90998f70 synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0x9099e2c7 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x90a4df70 ata_host_init EXPORT_SYMBOL_GPL vmlinux 0x90a9172a hypervisor_kobj EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes EXPORT_SYMBOL_GPL vmlinux 0x90b5b000 regulator_get_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90ceb660 __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x90d3fbd8 virtio_break_device EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify EXPORT_SYMBOL_GPL vmlinux 0x90de72a9 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x90ec494c scsi_build_sense EXPORT_SYMBOL_GPL vmlinux 0x90ee8c36 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x90f438b6 crypto_register_acomp EXPORT_SYMBOL_GPL vmlinux 0x9107d224 __SCT__tp_func_arm_event EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf EXPORT_SYMBOL_GPL vmlinux 0x91112b71 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x9128bd98 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x9126cba8 pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0x912b8076 bd_prepare_to_claim EXPORT_SYMBOL_GPL vmlinux 0x912f60c6 iommu_unregister_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x9135310f md_allow_write EXPORT_SYMBOL_GPL vmlinux 0x913e3fee acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0x9146e3ad clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x914a0540 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x9148e815 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x916cf56b apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x916e9db2 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x91738958 regulator_suspend_enable EXPORT_SYMBOL_GPL vmlinux 0x917a1297 rio_dev_get EXPORT_SYMBOL_GPL vmlinux 0x917d953b __SCT__tp_func_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0x9180be83 devm_gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x91883cbb nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x91917098 devlink_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x919be0aa uprobe_register @@ -23455,67 +23513,63 @@ EXPORT_SYMBOL_GPL vmlinux 0x91ae391d md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0x91b1fb44 rio_mport_get_efb EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval EXPORT_SYMBOL_GPL vmlinux 0x91b9a4ba e820__mapped_any -EXPORT_SYMBOL_GPL vmlinux 0x91bc4472 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x91bdfbd4 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x91c6dab4 metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource EXPORT_SYMBOL_GPL vmlinux 0x91d41dfc vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0x91e20eda evm_verifyxattr EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91edb638 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x91f34318 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x91f78eb8 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x91fc5e33 ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x91fdbd43 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x92043f48 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x91fe95a1 gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x920a8382 rio_mport_initialize EXPORT_SYMBOL_GPL vmlinux 0x920c8338 debugfs_create_regset32 EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x921222ba sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake EXPORT_SYMBOL_GPL vmlinux 0x921d8b4d acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x92226c24 spi_statistics_add_transfer_stats EXPORT_SYMBOL_GPL vmlinux 0x92236063 xen_find_device_domain_owner EXPORT_SYMBOL_GPL vmlinux 0x92274fe6 acpi_unregister_lps0_dev EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x9238e91f gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x922a3e42 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x922e8fff ata_scsi_unlock_native_capacity EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable EXPORT_SYMBOL_GPL vmlinux 0x923edbe0 dax_copy_to_iter EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9253af7f ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x9258c8a8 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x92802f63 device_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x9285ab8a devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9293026a fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x92a09ed4 edac_device_add_device EXPORT_SYMBOL_GPL vmlinux 0x92a92767 devm_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x92ad4305 regulator_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg -EXPORT_SYMBOL_GPL vmlinux 0x92ba293a replace_page_cache_page EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work EXPORT_SYMBOL_GPL vmlinux 0x9319ef5e __fscrypt_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x9336e501 platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x9337c588 tty_buffer_set_limit EXPORT_SYMBOL_GPL vmlinux 0x933bf4a6 iommu_dev_disable_feature EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x93466549 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x934bf59c kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0x935596a3 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x935e1d1e device_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0x9365cfaf dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x936e185c mmc_get_ext_csd EXPORT_SYMBOL_GPL vmlinux 0x939c0d24 gnttab_dma_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0x93ad1f08 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x93af5aaa strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93c7ff5d bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x93e67aab vfs_write EXPORT_SYMBOL_GPL vmlinux 0x93e702b2 spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0x93ea8fe7 pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x9410e220 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x9404ad1c spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x9413b59b msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb EXPORT_SYMBOL_GPL vmlinux 0x941a3d4f clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x941cabd7 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x941cb8b8 blkcg_print_blkgs EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable @@ -23523,132 +23577,130 @@ EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name EXPORT_SYMBOL_GPL vmlinux 0x942b90b7 da903x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x942de888 blk_queue_required_elevator_features EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x943169c8 wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x943a5a45 unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0x943d7ba7 nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x9455f885 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x944efa07 ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0x946398bb iomap_invalidatepage EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x946f5147 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x946fc75f devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x94750fc6 call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0x9477e8ea virtio_add_status EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible -EXPORT_SYMBOL_GPL vmlinux 0x947c9ee0 ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x94808f57 i2c_acpi_find_adapter_by_handle EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x949e8bfb perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x949dbaab devlink_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94b7db32 find_extend_vma EXPORT_SYMBOL_GPL vmlinux 0x94c0dafa regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x94c27219 usb_enable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x94ca8e00 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x94cae9cf regulator_set_suspend_voltage EXPORT_SYMBOL_GPL vmlinux 0x94da8d2b tty_port_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread EXPORT_SYMBOL_GPL vmlinux 0x95181e1d pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x95274647 devm_hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0x952bbc53 kernfs_notify EXPORT_SYMBOL_GPL vmlinux 0x952e567a phy_validate -EXPORT_SYMBOL_GPL vmlinux 0x95330d5d tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x9532f94d __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds EXPORT_SYMBOL_GPL vmlinux 0x9541fdc4 ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0x9545e334 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x954e7d89 root_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955e3bc8 shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0x95605d62 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x956409fb devlink_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0x9567e1c6 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x9569c686 regmap_fields_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x957689e4 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x957b5d54 ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958ac3a7 regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x958aed0b acpi_subsys_restore_early EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free EXPORT_SYMBOL_GPL vmlinux 0x9591720e rio_request_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0x95930a99 bd_link_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x959a3829 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x95a179a1 ata_sas_port_suspend EXPORT_SYMBOL_GPL vmlinux 0x95a1af2f ata_scsi_dma_need_drain EXPORT_SYMBOL_GPL vmlinux 0x95a26918 led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0x95a3a430 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x95b04238 get_net_ns EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free EXPORT_SYMBOL_GPL vmlinux 0x95d95a56 __srcu_read_lock EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95fdd603 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x96050a6d __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x960b9630 devm_platform_get_irqs_affinity EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x9615b005 hv_map_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x9615c936 __SCK__tp_func_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0x9620390e decrypt_blob EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative EXPORT_SYMBOL_GPL vmlinux 0x962523b1 kobj_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x962f0494 synth_event_trace EXPORT_SYMBOL_GPL vmlinux 0x96334273 __reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x964f8ba1 devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x96537159 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x96493bd1 register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x96633d25 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x965b0bb4 crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0x9671fe06 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9682ffa1 __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0x9688b217 gnttab_batch_copy EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x9695a455 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x968fd3a7 ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0x9699d9fa debugfs_rename EXPORT_SYMBOL_GPL vmlinux 0x969b4980 xen_remap_pfn -EXPORT_SYMBOL_GPL vmlinux 0x96a000d9 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x96addc18 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x96a47562 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x96a88961 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x96ad8168 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x96bc9770 regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0x96c8fcf7 devres_release EXPORT_SYMBOL_GPL vmlinux 0x96ca2b20 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x96dfd02f bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x96e5335b __SCK__tp_func_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x96e9fae2 paste_selection EXPORT_SYMBOL_GPL vmlinux 0x97004e47 devfreq_event_get_event EXPORT_SYMBOL_GPL vmlinux 0x970f882b devm_kmalloc EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x9715e3f5 vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0x9719bcfd pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x971ba430 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x972cb3d5 sdio_writeb_readb EXPORT_SYMBOL_GPL vmlinux 0x97313c67 da903x_read EXPORT_SYMBOL_GPL vmlinux 0x97316c41 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x974828e7 register_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x975e6d91 skcipher_walk_async EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x976606c0 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x976d5e6c filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x976b0233 i2c_match_id EXPORT_SYMBOL_GPL vmlinux 0x9773612c devm_remove_action EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node EXPORT_SYMBOL_GPL vmlinux 0x977f2c41 pci_hp_remove_module_link EXPORT_SYMBOL_GPL vmlinux 0x97998659 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x97bd13f0 devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x97bfd368 vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x97c099f5 espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0x97c35dcc devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x97c58338 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x97998eed device_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0x97ca220c virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x97d9c9c4 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x97cb372c crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e9dccc strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x97f7ed30 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x97faae67 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x97e11a93 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x97e77e5d vfs_setlease EXPORT_SYMBOL_GPL vmlinux 0x98015af7 bus_set_iommu EXPORT_SYMBOL_GPL vmlinux 0x98198769 iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0x9821552c __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x982eded8 iommu_group_remove_device EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98346759 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x983a051b ip_local_out EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x984c51b3 device_dma_supported EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x985471f7 __SCK__tp_func_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0x985889e5 set_capacity_and_notify EXPORT_SYMBOL_GPL vmlinux 0x9860acb0 regulator_get_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x987e53f5 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0x9881f51c icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0x98880005 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x988148a0 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x9884ff4e devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x988a1595 led_trigger_set_default EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x98ac20bf regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x98adeafe mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98b6391b of_css EXPORT_SYMBOL_GPL vmlinux 0x98bba89f vring_del_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x98bfd0ad thermal_remove_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x98c1081d extcon_dev_register @@ -23656,11 +23708,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x98da988c mddev_init_writes_pending EXPORT_SYMBOL_GPL vmlinux 0x98ea4acd pci_user_read_config_word EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping +EXPORT_SYMBOL_GPL vmlinux 0x98f99ecd device_remove_properties EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x990c2611 vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0x9911e134 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x990abed3 __tracepoint_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x99136eb4 of_devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x9918be98 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x9927bba2 vfs_setxattr EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id EXPORT_SYMBOL_GPL vmlinux 0x995cbd77 devm_gpiod_get_array_optional @@ -23668,50 +23721,46 @@ EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg EXPORT_SYMBOL_GPL vmlinux 0x996b39d0 irq_gc_mask_set_bit EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x99a408d3 fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0x99ac4970 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x99bcc7ab net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x99bdb947 wm8350_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0x99c93969 fat_time_fat2unix EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99ea9862 devlink_sb_register EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99ff00b5 xfer_to_guest_mode_handle_work EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a13b291 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x9a1c24fb synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0x9a1e6210 attribute_container_find_class_device EXPORT_SYMBOL_GPL vmlinux 0x9a1ecf31 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x9a1fe63e crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining EXPORT_SYMBOL_GPL vmlinux 0x9a273287 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x9a39325c __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x9a3bf287 __tracepoint_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x9a3ea1e6 pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x9a464621 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x9a47d21f cpufreq_driver_resolve_freq EXPORT_SYMBOL_GPL vmlinux 0x9a4981d4 virtio_config_changed EXPORT_SYMBOL_GPL vmlinux 0x9a4ff82d debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a5e03ce ptp_classify_raw EXPORT_SYMBOL_GPL vmlinux 0x9a5ecf0f genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x9a62b17f __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x9a7bdf9d icc_provider_del EXPORT_SYMBOL_GPL vmlinux 0x9a7cbd3e sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x9a7fae3f rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x9a8357c1 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x9a8548b4 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x9a9ce86a spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x9aa4241d cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store -EXPORT_SYMBOL_GPL vmlinux 0x9aa94d57 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x9aae55b7 crypto_stats_akcipher_verify EXPORT_SYMBOL_GPL vmlinux 0x9aaf5a14 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x9ac04bdd __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac5f8c5 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x9ac71ffb platform_add_devices EXPORT_SYMBOL_GPL vmlinux 0x9ae2f10e apei_get_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x9ae7bc95 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x9aea2ca6 inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw EXPORT_SYMBOL_GPL vmlinux 0x9b0012ab pci_find_next_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x9b04367a pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x9b07347f sata_link_debounce EXPORT_SYMBOL_GPL vmlinux 0x9b0737f2 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x9b2049c6 device_set_wakeup_capable EXPORT_SYMBOL_GPL vmlinux 0x9b2d6d5c is_nvdimm_sync EXPORT_SYMBOL_GPL vmlinux 0x9b38a3a7 phy_exit EXPORT_SYMBOL_GPL vmlinux 0x9b537a1a balloon_page_enqueue @@ -23719,225 +23768,235 @@ EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size EXPORT_SYMBOL_GPL vmlinux 0x9b6f516a devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x9b820d6c devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b90eea8 apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config EXPORT_SYMBOL_GPL vmlinux 0x9b931a11 fat_search_long EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus -EXPORT_SYMBOL_GPL vmlinux 0x9ba0b4cf devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg EXPORT_SYMBOL_GPL vmlinux 0x9bb11b9d input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9bbeee00 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x9bca74dc crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x9bb2c2d1 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x9bc8679d ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9bd1f0f1 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x9bd5f50e gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9bd948be regulator_put EXPORT_SYMBOL_GPL vmlinux 0x9bdca049 tps6586x_write EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9befafec device_create +EXPORT_SYMBOL_GPL vmlinux 0x9c26d193 vfs_kern_mount EXPORT_SYMBOL_GPL vmlinux 0x9c306bbb component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0x9c4958c9 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x9c4fde03 mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0x9c56a43d serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x9c67e52f cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c78af70 regulator_force_disable EXPORT_SYMBOL_GPL vmlinux 0x9c79ada7 ata_acpi_gtm EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c9d16f8 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x9c833f12 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x9c88695f __SCK__tp_func_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x9cb0b1de blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x9cb9f956 crypto_unregister_skciphers EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier EXPORT_SYMBOL_GPL vmlinux 0x9cc84180 free_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop EXPORT_SYMBOL_GPL vmlinux 0x9cdd854e wm831x_device_shutdown EXPORT_SYMBOL_GPL vmlinux 0x9cde87e3 pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0x9cdeca56 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x9cf17168 devlink_port_type_eth_set EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy EXPORT_SYMBOL_GPL vmlinux 0x9cfbe814 pci_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x9d03beac klp_enable_patch EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data EXPORT_SYMBOL_GPL vmlinux 0x9d12a2af i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x9d13d353 cpufreq_enable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x9d14205c cr4_read_shadow +EXPORT_SYMBOL_GPL vmlinux 0x9d1b1eae __tracepoint_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x9d20d1c7 usb_intf_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0x9d236200 irq_set_chained_handler_and_data EXPORT_SYMBOL_GPL vmlinux 0x9d324ace devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x9d36a447 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x9d3c5707 blk_trace_remove EXPORT_SYMBOL_GPL vmlinux 0x9d42436e uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x9d4733f3 tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0x9d4894c8 x2apic_mode EXPORT_SYMBOL_GPL vmlinux 0x9d59b0eb irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x9d5c7034 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x9d5f79d3 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x9d69a542 __SCK__tp_func_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x9d6bfb14 dma_vmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x9d6c1f3a iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x9d7531a6 devm_mipi_dsi_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x9db18015 pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x9db7005e nf_queue EXPORT_SYMBOL_GPL vmlinux 0x9dbad4da power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x9dc10c9e regulator_get_current_limit EXPORT_SYMBOL_GPL vmlinux 0x9dc84db9 pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9dd6e1a8 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x9de88af6 scsi_build_sense EXPORT_SYMBOL_GPL vmlinux 0x9df8bfed usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x9dfdea36 clk_hw_set_rate_range EXPORT_SYMBOL_GPL vmlinux 0x9dfffded fb_deferred_io_open EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps EXPORT_SYMBOL_GPL vmlinux 0x9e03848f kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x9e19ead3 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x9e2ef4af regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x9e10881e mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x9e1de1b9 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x9e40146c netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e520b19 synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0x9e523753 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x9e5cf1be __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x9e61d847 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x9e7b260f scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x9e5511a9 blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0x9e80d790 iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x9e8236c3 gpiod_set_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x9e93b890 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0x9eac68c3 clk_hw_set_parent EXPORT_SYMBOL_GPL vmlinux 0x9eb307bb node_to_amd_nb EXPORT_SYMBOL_GPL vmlinux 0x9ebb224a tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x9ecd6f28 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x9ecd74e8 crypto_shash_update EXPORT_SYMBOL_GPL vmlinux 0x9ecd961a uart_xchar_out EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier EXPORT_SYMBOL_GPL vmlinux 0x9ed6ec1d serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x9ee43b8f __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x9ee80c05 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x9ed97fd1 __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new EXPORT_SYMBOL_GPL vmlinux 0x9ef0975c dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x9ef2f80f devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0x9f0bd0f1 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x9f1416f7 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x9f14f8a2 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x9f15fb3f ata_host_alloc EXPORT_SYMBOL_GPL vmlinux 0x9f16814c firmware_request_cache EXPORT_SYMBOL_GPL vmlinux 0x9f200b07 spi_mem_dtr_supports_op EXPORT_SYMBOL_GPL vmlinux 0x9f223fe4 __tracepoint_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x9f2fa60c acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9f300342 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x9f354a07 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x9f35a212 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x9f35c010 __SCK__tp_func_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x9f48b52a linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x9f4920dc skcipher_walk_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns EXPORT_SYMBOL_GPL vmlinux 0x9f4cebf5 fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0x9f57bc8d fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x9f5861ef rtc_class_open EXPORT_SYMBOL_GPL vmlinux 0x9f5a878f usb_driver_claim_interface EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check EXPORT_SYMBOL_GPL vmlinux 0x9f6a1e1a debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x9f97c42a gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x9f983765 wm8350_reg_write EXPORT_SYMBOL_GPL vmlinux 0x9fa2b13c phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown EXPORT_SYMBOL_GPL vmlinux 0x9fa458a9 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x9fa8b160 __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0x9fb671b3 devm_pm_opp_set_supported_hw EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fcf7040 alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0x9fd44ab9 fscrypt_set_context EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ffbaf75 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x9ff797e2 nf_route EXPORT_SYMBOL_GPL vmlinux 0x9fff1133 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x9fffe0c9 tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0xa002dcdb ata_pci_sff_init_host EXPORT_SYMBOL_GPL vmlinux 0xa00624b5 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa0110d51 fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0xa0188400 usb_asmedia_modifyflowcontrol EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa01de609 mmc_regulator_enable_vqmmc EXPORT_SYMBOL_GPL vmlinux 0xa0235ef1 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0xa02f0d86 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xa031d40c xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0xa03820d4 tty_init_termios EXPORT_SYMBOL_GPL vmlinux 0xa038d364 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xa0442fc7 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xa049d09f __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xa03958b7 regmap_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa06e7f4a crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xa071b201 xfrm_put_translator EXPORT_SYMBOL_GPL vmlinux 0xa07f4b22 battery_hook_unregister EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa0813054 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa0868864 gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0xa090478a arch_has_restricted_virtio_memory_access +EXPORT_SYMBOL_GPL vmlinux 0xa09cca1a sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0xa09fefb2 usb_block_urb EXPORT_SYMBOL_GPL vmlinux 0xa0b422b4 edac_pci_release_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0xa0b80491 noop_backing_dev_info EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xa0c3554c vp_modern_map_vq_notify EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0d646d5 ping_hash EXPORT_SYMBOL_GPL vmlinux 0xa0d81b76 __SCT__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xa0d965ad __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa0e547d7 __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xa0f20570 crypto_spawn_tfm2 EXPORT_SYMBOL_GPL vmlinux 0xa0f27235 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xa0f2fa5c set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xa0f6f28b regulator_list_hardware_vsel EXPORT_SYMBOL_GPL vmlinux 0xa102e7db blkcg_deactivate_policy EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa14cdaf3 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xa120a5f6 __mmdrop EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15aee92 wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0xa15f90a1 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xa1648776 ata_sas_port_stop EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked EXPORT_SYMBOL_GPL vmlinux 0xa16b02e2 acpi_storage_d3 EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xa16e71fc i2c_client_type EXPORT_SYMBOL_GPL vmlinux 0xa1745f8b vchan_find_desc EXPORT_SYMBOL_GPL vmlinux 0xa17b3a46 regmap_mmio_detach_clk EXPORT_SYMBOL_GPL vmlinux 0xa17c44aa blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xa17ca583 gpiod_set_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xa1836884 init_uts_ns EXPORT_SYMBOL_GPL vmlinux 0xa19eed34 serial8250_modem_status EXPORT_SYMBOL_GPL vmlinux 0xa1a0599c virtio_max_dma_size EXPORT_SYMBOL_GPL vmlinux 0xa1a8367c disk_uevent EXPORT_SYMBOL_GPL vmlinux 0xa1a97623 start_poll_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1eb17a5 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xa1ff0256 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xa1e753fd cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xa1e84048 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xa1f95aa0 skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0xa201fc46 serial8250_release_dma EXPORT_SYMBOL_GPL vmlinux 0xa20438ed serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0xa205fd91 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xa20913ed crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa20bbb71 phy_package_leave EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa217c7b5 bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0xa21908ff serdev_device_write_buf EXPORT_SYMBOL_GPL vmlinux 0xa21ad514 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xa21b4f27 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xa21f6492 pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0xa22909b3 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa229c58c scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0xa24bef33 usb_register_device_driver EXPORT_SYMBOL_GPL vmlinux 0xa251318f rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xa25c3608 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xa268fa0c sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested EXPORT_SYMBOL_GPL vmlinux 0xa284514d iommu_aux_detach_device EXPORT_SYMBOL_GPL vmlinux 0xa29e75eb da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xa2a659e7 crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xa2af6055 crypto_unregister_aeads EXPORT_SYMBOL_GPL vmlinux 0xa2b64e1a __fput_sync EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xa2bf3871 root_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xa2d0b59d mmio_stale_data_clear EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers EXPORT_SYMBOL_GPL vmlinux 0xa2e973e7 dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0xa2f4555d pci_generic_config_read32 EXPORT_SYMBOL_GPL vmlinux 0xa2f49b87 md_find_rdev_rcu EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa3063c3e fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa2fc61f7 sock_gen_put EXPORT_SYMBOL_GPL vmlinux 0xa30d7888 tpm_get_timeouts EXPORT_SYMBOL_GPL vmlinux 0xa3112a30 ata_pci_bmdma_init_one EXPORT_SYMBOL_GPL vmlinux 0xa3114558 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xa3139321 __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xa323595c __cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0xa3244beb irq_chip_get_parent_state EXPORT_SYMBOL_GPL vmlinux 0xa325ed14 acpi_dev_get_dma_resources EXPORT_SYMBOL_GPL vmlinux 0xa328d388 rio_release_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0xa33f3b52 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0xa3442380 xfrm_output_resume EXPORT_SYMBOL_GPL vmlinux 0xa3442ff0 edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0xa34f90bb shmem_zero_setup EXPORT_SYMBOL_GPL vmlinux 0xa353aff9 usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xa3573050 br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0xa36c40a1 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0xa36ec7a7 pwm_free EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa37be4fb ip_valid_fib_dump_req EXPORT_SYMBOL_GPL vmlinux 0xa37d25d2 devm_acpi_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue EXPORT_SYMBOL_GPL vmlinux 0xa387e048 pci_vpd_alloc EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa3914c67 intel_pinctrl_probe_by_uid +EXPORT_SYMBOL_GPL vmlinux 0xa38b327d sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0xa3930a0a devm_ioremap_uc EXPORT_SYMBOL_GPL vmlinux 0xa3967b56 pci_device_group EXPORT_SYMBOL_GPL vmlinux 0xa3971816 rio_inb_pwrite_handler EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 EXPORT_SYMBOL_GPL vmlinux 0xa3a276a1 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0xa3a478b5 tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0xa3a698c6 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xa3a796a1 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xa3aff49f irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0xa3b0b3f0 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa3b8aa1e devfreq_get_devfreq_by_node EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3c2b783 __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xa3c54606 ata_std_bios_param EXPORT_SYMBOL_GPL vmlinux 0xa3d590f4 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xa3df99ac regmap_field_read EXPORT_SYMBOL_GPL vmlinux 0xa3e17bd3 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xa3ead297 ata_ehi_clear_desc EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor EXPORT_SYMBOL_GPL vmlinux 0xa3f61f6f dm_internal_suspend_noflush @@ -23946,378 +24005,394 @@ EXPORT_SYMBOL_GPL vmlinux 0xa400e65e pci_slots_kset EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port EXPORT_SYMBOL_GPL vmlinux 0xa40e005b devm_pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa43403c6 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0xa42c97ce regulator_allow_bypass EXPORT_SYMBOL_GPL vmlinux 0xa4379224 devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0xa43a23ba inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first EXPORT_SYMBOL_GPL vmlinux 0xa44bc971 class_for_each_device 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 0xa46937e2 skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0xa46d5a4f usb_set_interface EXPORT_SYMBOL_GPL vmlinux 0xa47552c0 ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0xa4765d90 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xa47adf2a __SCK__tp_func_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa485f685 __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0xa48fe0f3 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xa4922ebc tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xa498fe4d powercap_register_zone EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0xa4c973d9 fwnode_graph_get_remote_port_parent EXPORT_SYMBOL_GPL vmlinux 0xa4cccc58 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xa4cd455d skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xa4dcda79 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xa4d49b1c security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xa4d67a7f crypto_create_tfm_node EXPORT_SYMBOL_GPL vmlinux 0xa4e2311d acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xa4e47d82 synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0xa5149062 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xa50769ca sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xa50ca2cb bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xa528122e l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context EXPORT_SYMBOL_GPL vmlinux 0xa53d3d52 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xa53fae99 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xa54d6dc9 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xa5480f5f thermal_zone_unbind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0xa54ec73d pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xa553916a spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0xa557c016 serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0xa55d903f regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xa56e5367 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xa56f32c1 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xa573b85d of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xa583d242 ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0xa5902a2a device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0xa592c56d spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0xa596350f crypto_alloc_acomp EXPORT_SYMBOL_GPL vmlinux 0xa59819cc dev_coredumpm EXPORT_SYMBOL_GPL vmlinux 0xa5a1793e unregister_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0xa5a2a9b8 fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0xa5a3ee09 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xa5b466a1 spi_alloc_device EXPORT_SYMBOL_GPL vmlinux 0xa5b81119 kstrdup_quotable_cmdline EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported EXPORT_SYMBOL_GPL vmlinux 0xa5cfdfb0 __hwspin_unlock EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5dcc82b __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xa5e5de87 mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xa5e84d17 nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa60d8307 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xa5f7df18 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xa609355b perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xa61f645b ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0xa620d377 regulator_desc_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0xa623fae4 fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0xa63120d5 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xa638ea16 mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0xa63c2aa6 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0xa6402a30 espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0xa66fc117 skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0xa65d339d add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa668fb5f mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0xa66d8cde crypto_ahash_setkey EXPORT_SYMBOL_GPL vmlinux 0xa68bdef9 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa6922e77 clk_hw_get_flags EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name EXPORT_SYMBOL_GPL vmlinux 0xa6a6c613 blk_bio_list_merge EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6b43df9 ata_scsi_queuecmd EXPORT_SYMBOL_GPL vmlinux 0xa6b4ed9a dma_vunmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xa6b85a02 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xa6bfa39a nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0xa6d0130d platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa6ce0e06 cpufreq_cpu_get EXPORT_SYMBOL_GPL vmlinux 0xa6d5845e pci_cfg_access_lock EXPORT_SYMBOL_GPL vmlinux 0xa6dcb16d pci_find_vsec_capability EXPORT_SYMBOL_GPL vmlinux 0xa6dcb723 rio_mport_send_doorbell EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6e3af75 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xa6eaa946 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xa6f04905 bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0xa6f09f89 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xa6f85291 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0xa6f8fb67 regmap_can_raw_write EXPORT_SYMBOL_GPL vmlinux 0xa6fc8708 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xa706bc8f devm_of_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain EXPORT_SYMBOL_GPL vmlinux 0xa7218eba irq_set_affinity EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa745cc4e ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xa7434d25 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa7633434 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa7672e3c crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0xa76870ac badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0xa76e31b5 ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0xa77c4eae pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xa77fda9f nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xa7835493 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xa78ab50f dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xa782199f __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xa7929979 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0xa7983f4c trace_define_field EXPORT_SYMBOL_GPL vmlinux 0xa79b04b7 devm_of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0xa7a5270e ata_ncq_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xa7a8dfb8 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0xa7b30b66 __pm_runtime_idle EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu EXPORT_SYMBOL_GPL vmlinux 0xa7cda966 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0xa7dc4c17 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0xa7de2643 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xa7dcccb7 clk_mux_determine_rate_flags EXPORT_SYMBOL_GPL vmlinux 0xa7e26fd5 acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xa7f9f958 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xa7e37458 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xa7e52347 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa800a7fd __regmap_init EXPORT_SYMBOL_GPL vmlinux 0xa80c91c7 dev_pm_opp_attach_genpd EXPORT_SYMBOL_GPL vmlinux 0xa80f81d3 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xa80fb9fc ping_rcv EXPORT_SYMBOL_GPL vmlinux 0xa81506ee iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0xa81dd649 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xa819d94d nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0xa8301e4d tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xa83121c2 shash_register_instance EXPORT_SYMBOL_GPL vmlinux 0xa84cc415 cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0xa84e1df6 crypto_register_scomps EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8603e18 __tracepoint_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0xa863759c pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xa8672aa3 devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0xa86c928d sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xa876552a fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0xa87c2f00 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xa8869e4b cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0xa88ab93c class_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0xa88c312f pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xa8a45d0c l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0xa8bfd8d9 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xa8bd7c4c tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xa8c11339 raw_abort EXPORT_SYMBOL_GPL vmlinux 0xa8c6ca65 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xa8e8b5c7 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0xa8f072e6 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xa8d713c4 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xa8f9aa47 crypto_unregister_aead EXPORT_SYMBOL_GPL vmlinux 0xa8fb2ab1 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL vmlinux 0xa90d6718 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit EXPORT_SYMBOL_GPL vmlinux 0xa9316e86 account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa94270b7 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xa943d935 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa955166a blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0xa959ddc2 dev_pm_opp_get_suspend_opp_freq EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa9706d26 inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0xa971e873 iommu_aux_attach_device EXPORT_SYMBOL_GPL vmlinux 0xa978c48e devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xa982fc7f crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xa9810929 lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0xa9854364 umc_normaddr_to_sysaddr EXPORT_SYMBOL_GPL vmlinux 0xa99aa9c3 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xa99e1a4e ehci_handshake EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9a329e0 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9a633be fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xa9a09f72 __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0xa9b8f5d9 fsverity_verify_page EXPORT_SYMBOL_GPL vmlinux 0xa9b9df3f led_set_brightness_nopm EXPORT_SYMBOL_GPL vmlinux 0xa9bec716 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xa9c909ac regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xa9d3cf40 __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xa9d6e8c6 acpi_dev_get_property EXPORT_SYMBOL_GPL vmlinux 0xa9db5e15 fscrypt_ioctl_get_nonce EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9f3b914 synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0xa9f8b947 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xa9f96444 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xaa0c2451 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0xa9ecdcdd ata_sas_port_start EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa2dc388 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xaa374659 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0xaa3e739c crypto_shash_setkey EXPORT_SYMBOL_GPL vmlinux 0xaa45772d input_class EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush EXPORT_SYMBOL_GPL vmlinux 0xaa7697ab fsnotify_get_group EXPORT_SYMBOL_GPL vmlinux 0xaa86c6f9 devm_kmemdup EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades -EXPORT_SYMBOL_GPL vmlinux 0xaa99f7bb __SCK__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xaa8da49d __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xaaa4fb86 vfs_removexattr EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaab5d758 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xaabae77d crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xaaadd0e5 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xaacd758e crypto_aead_setkey EXPORT_SYMBOL_GPL vmlinux 0xaad20c60 i2c_acpi_client_count EXPORT_SYMBOL_GPL vmlinux 0xaad3e6f7 regulator_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0xaae2fa88 serdev_device_write_flush EXPORT_SYMBOL_GPL vmlinux 0xaaebe644 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xaaf49947 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0xab080084 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xab0d989c __traceiter_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0xab146b82 generic_fsdax_supported +EXPORT_SYMBOL_GPL vmlinux 0xab179b17 i2c_new_scanned_device EXPORT_SYMBOL_GPL vmlinux 0xab1a4467 blk_mq_freeze_queue_wait EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab326115 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xab1f3cdf sdio_release_host EXPORT_SYMBOL_GPL vmlinux 0xab488b28 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xab5cc9ee regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xab9310ad tcp_get_info EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks EXPORT_SYMBOL_GPL vmlinux 0xaba29958 iommu_sva_alloc_pasid EXPORT_SYMBOL_GPL vmlinux 0xaba7e3c8 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xaba8a73e hwmon_notify_event EXPORT_SYMBOL_GPL vmlinux 0xabb7c7c2 get_cached_msi_msg EXPORT_SYMBOL_GPL vmlinux 0xabb90f54 xhci_gen_setup EXPORT_SYMBOL_GPL vmlinux 0xabc1661d fpu_swap_kvm_fpstate EXPORT_SYMBOL_GPL vmlinux 0xabc298d0 intel_scu_ipc_unregister EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabdee3a1 devlink_dpipe_table_resource_set EXPORT_SYMBOL_GPL vmlinux 0xabf03fc3 __SCT__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xabfadd82 fwnode_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0xac2d6847 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xac4c2510 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xac35c117 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xac387e35 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xac393828 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xac465c8b __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xac47d901 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xac5b8b62 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0xac61f605 dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0xac6b39df security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xac848257 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xac84d300 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xac72f9a0 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xac769d32 crypto_stats_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xac8b9b3d acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0xaca8afc8 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0xac934d1f tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put EXPORT_SYMBOL_GPL vmlinux 0xacc35951 acpi_pm_set_device_wakeup EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xacca68ba regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xacdd537f task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0xacddc670 nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0xace1cba7 dev_pm_opp_remove_all_dynamic EXPORT_SYMBOL_GPL vmlinux 0xace9b983 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xad026f09 netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0xad02e8bb blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xad0459ba dev_pm_qos_hide_flags EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xad12a302 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0xad1c2b1d __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xad1ff1f2 __SCK__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0xad2180f4 dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0xad35b732 pci_user_write_config_word EXPORT_SYMBOL_GPL vmlinux 0xad387e46 attribute_container_classdev_to_container EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad488fd6 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xad495444 shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad538639 udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad6ca48a inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0xad7086ef devm_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0xad7343a3 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xad78ded4 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xad7a5aa1 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xad814c23 crypto_stats_compress EXPORT_SYMBOL_GPL vmlinux 0xad861bdc pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0xad87e802 crypto_unregister_shashes EXPORT_SYMBOL_GPL vmlinux 0xad914f13 devm_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0xad9f3c14 usb_autopm_put_interface_no_suspend EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy EXPORT_SYMBOL_GPL vmlinux 0xada41582 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xadaf4bc7 device_add_properties EXPORT_SYMBOL_GPL vmlinux 0xadb73533 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xadd335cf __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xadb8bb70 regulator_list_voltage EXPORT_SYMBOL_GPL vmlinux 0xadd4c886 disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0xadf17c58 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xaddf1ad0 regmap_get_raw_read_max EXPORT_SYMBOL_GPL vmlinux 0xadf247a4 phy_configure EXPORT_SYMBOL_GPL vmlinux 0xadfcb059 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xae0dbb13 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xae0b8311 skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init EXPORT_SYMBOL_GPL vmlinux 0xae4054f3 ata_pci_sff_prepare_host EXPORT_SYMBOL_GPL vmlinux 0xae409dae fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xae63dff4 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xae55cc5f __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae75360c regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xae76d290 tcp_ca_get_key_by_name EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae97927f spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xae9cb598 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xae7eed2a udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xaea83791 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xaeaf48b0 trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0xaebd1530 devres_get EXPORT_SYMBOL_GPL vmlinux 0xaebf0cef acpi_dma_configure_id EXPORT_SYMBOL_GPL vmlinux 0xaecc0295 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0xaed41b70 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xaed98b23 nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0xaee344b4 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xaefb7940 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xaee76b2e gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xaf031699 ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0xaf05b2b9 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0xaf068fdc iptunnel_metadata_reply EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf0dd87b regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xaf1df7f0 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0xaf2070e8 crypto_stats_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0xaf2b385b pci_enable_rom EXPORT_SYMBOL_GPL vmlinux 0xaf363f75 relay_file_operations EXPORT_SYMBOL_GPL vmlinux 0xaf3a6000 set_pages_array_wt EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check EXPORT_SYMBOL_GPL vmlinux 0xaf45a1a6 extcon_dev_unregister EXPORT_SYMBOL_GPL vmlinux 0xaf479317 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xaf4de184 udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0xaf504ab3 platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0xaf61d3bd cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xaf660d02 clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf7ab870 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0xaf7c16c9 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xaf7b8a6d crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xafa5b693 xfrm_get_translator -EXPORT_SYMBOL_GPL vmlinux 0xafb78340 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0xaf9b8464 security_path_truncate EXPORT_SYMBOL_GPL vmlinux 0xafc3bc3d md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xafcdb29c dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0xafce2f1d free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xafce9c28 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xafcf3b88 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xafdbf4f0 kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xaff2889b __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xafe13f78 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xafe5a673 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xafee81c6 crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0xb009039e serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xb00e7477 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xb00e933d regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xb01d09da wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0xb01f35b6 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb021ed00 devlink_net EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb0432d20 crypto_unregister_kpp EXPORT_SYMBOL_GPL vmlinux 0xb0485891 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0xb04e56b6 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xb05652af device_add +EXPORT_SYMBOL_GPL vmlinux 0xb05d4358 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xb0645ad1 devlink_sb_register EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress EXPORT_SYMBOL_GPL vmlinux 0xb0751f02 bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07980ed fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0xb091a705 rio_add_net EXPORT_SYMBOL_GPL vmlinux 0xb0a1b0c0 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xb0a9176b l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0d2b0dd dequeue_signal EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0f2731f platform_get_irq EXPORT_SYMBOL_GPL vmlinux 0xb0fbb722 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xb1017af0 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xb0fd8e21 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0xb106e44b _copy_from_iter_flushcache EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0xb10f005f __static_call_update +EXPORT_SYMBOL_GPL vmlinux 0xb1109925 __tracepoint_sched_util_est_se_tp 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 0xb122f5a7 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0xb12be8a4 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0xb1366231 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb137bd71 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xb13e2779 __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0xb15cdbd9 dev_pm_opp_put_supported_hw EXPORT_SYMBOL_GPL vmlinux 0xb15d8180 blk_ksm_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xb15fedab blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0xb16238a3 dev_pm_opp_put_opp_table EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put EXPORT_SYMBOL_GPL vmlinux 0xb165b805 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xb1662932 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0xb175633f security_path_chown EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb18e182a bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xb184a3d4 icc_disable EXPORT_SYMBOL_GPL vmlinux 0xb1969d02 __phy_modify EXPORT_SYMBOL_GPL vmlinux 0xb19de1e6 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0xb1a04e8c regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xb1a94c44 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xb1ac9daa icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb1b12e64 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xb1bc729e ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start EXPORT_SYMBOL_GPL vmlinux 0xb1d886b1 rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0xb1dab2b8 policy_has_boost_freq EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e5af72 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xb1f54d62 mmc_regulator_disable_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xb1f97cf3 devlink_port_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xb2048bc7 nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0xb20683c7 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xb20783ec wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0xb2086137 tty_get_icount EXPORT_SYMBOL_GPL vmlinux 0xb21fec11 edac_mc_alloc EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22e16cb bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0xb230eb09 sysfs_remove_link EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq EXPORT_SYMBOL_GPL vmlinux 0xb24e4e1c md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xb25a197d platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xb25cb174 __tracepoint_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xb25fc45e lp8788_read_byte EXPORT_SYMBOL_GPL vmlinux 0xb26066fe ibft_phys_addr EXPORT_SYMBOL_GPL vmlinux 0xb2643cce phy_init -EXPORT_SYMBOL_GPL vmlinux 0xb268eedf devlink_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb277eb2b spi_res_alloc EXPORT_SYMBOL_GPL vmlinux 0xb284aa51 blkcg_activate_policy EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall +EXPORT_SYMBOL_GPL vmlinux 0xb28cd98e __trace_note_message EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc EXPORT_SYMBOL_GPL vmlinux 0xb29fa923 dw_pcie_host_deinit EXPORT_SYMBOL_GPL vmlinux 0xb2a9faf5 dev_pm_opp_free_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2ce5760 xdp_rxq_info_reg EXPORT_SYMBOL_GPL vmlinux 0xb2de4cf2 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2e53b3e find_vpid EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem EXPORT_SYMBOL_GPL vmlinux 0xb2f18ccb blk_mark_disk_dead EXPORT_SYMBOL_GPL vmlinux 0xb2f3abe5 dm_post_suspending EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb316af10 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xb3182bbf __put_net EXPORT_SYMBOL_GPL vmlinux 0xb3202cdb gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xb3217469 tcp_twsk_unique EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb337c16d fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0xb3696be0 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xb327b36c trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xb32a64bb sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xb333228a perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0xb3383ec9 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xb33af39e crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xb352d8bb sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xb37aa8d9 ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0xb398ff68 md_start EXPORT_SYMBOL_GPL vmlinux 0xb39b095f devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0xb3bc9d03 devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0xb3db4971 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0xb39c0d0f wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0xb3adb128 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb3b660cd regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb3bc19eb mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0xb3d5ca19 mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0xb3dd7a00 pinctrl_utils_reserve_map EXPORT_SYMBOL_GPL vmlinux 0xb3e6e60a __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xb3ec2303 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0xb3ec7571 br_fdb_test_addr_hook EXPORT_SYMBOL_GPL vmlinux 0xb3f52270 devm_gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0xb4201ef8 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xb424e2ba bpf_offload_dev_match EXPORT_SYMBOL_GPL vmlinux 0xb4270ace debugfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0xb4293ec6 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb436f0f3 ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb44c94b4 cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0xb44d219c serial8250_do_get_mctrl EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb45e3268 zap_vma_ptes EXPORT_SYMBOL_GPL vmlinux 0xb4636e63 bdi_dev_name EXPORT_SYMBOL_GPL vmlinux 0xb46734e3 virtqueue_disable_cb EXPORT_SYMBOL_GPL vmlinux 0xb46ff805 dw_pcie_setup_rc EXPORT_SYMBOL_GPL vmlinux 0xb4840414 debugfs_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xb498b02a __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xb49dc5c1 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xb4a004ab __get_task_comm EXPORT_SYMBOL_GPL vmlinux 0xb4adee0b devfreq_event_enable_edev EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xb4da7af9 pci_load_saved_state @@ -24326,150 +24401,135 @@ EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4ecd821 debugfs_remove EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length EXPORT_SYMBOL_GPL vmlinux 0xb4f3330c fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xb4f4823b tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xb4fda34b __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xb4f61dee smp_ops EXPORT_SYMBOL_GPL vmlinux 0xb50032fe dm_suspended EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc EXPORT_SYMBOL_GPL vmlinux 0xb50c7a22 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xb50e291f spi_replace_transfers EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xb519a83b perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0xb51d6028 rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state EXPORT_SYMBOL_GPL vmlinux 0xb5201d87 __usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge EXPORT_SYMBOL_GPL vmlinux 0xb53926fe handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xb54ec0d8 fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0xb55aa29d pci_check_and_unmask_intx EXPORT_SYMBOL_GPL vmlinux 0xb5768ae9 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xb58226e5 task_cgroup_path EXPORT_SYMBOL_GPL vmlinux 0xb58b9f75 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0xb59ec6d8 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb58c183f rdev_get_id EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq EXPORT_SYMBOL_GPL vmlinux 0xb5aa5915 devres_close_group EXPORT_SYMBOL_GPL vmlinux 0xb5aedb8a pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0xb5af4b2c thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0xb5d2a112 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xb5cc8003 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb5e75eda devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0xb5eebc71 virtqueue_detach_unused_buf EXPORT_SYMBOL_GPL vmlinux 0xb5fe9363 fscrypt_set_bio_crypt_ctx_bh EXPORT_SYMBOL_GPL vmlinux 0xb6067083 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xb61f8239 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xb61b5ad8 __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb626bb21 clk_hw_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xb62ef1b3 rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0xb6319831 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb631914f gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device EXPORT_SYMBOL_GPL vmlinux 0xb63d8bed irq_domain_set_hwirq_and_chip EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb666dc7e regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xb66f6f5d scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0xb67475a1 screen_pos EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket EXPORT_SYMBOL_GPL vmlinux 0xb68322e2 pci_vfs_assigned EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb6a5f4dd __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xb6a8b430 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xb6af20fb __tracepoint_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xb6b8dc52 hvc_instantiate EXPORT_SYMBOL_GPL vmlinux 0xb6ba719d bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xb6c27d11 proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0xb6c5e614 acpi_processor_evaluate_cst EXPORT_SYMBOL_GPL vmlinux 0xb6c60be2 edac_pci_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0xb6dd0b34 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xb6defddf regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable EXPORT_SYMBOL_GPL vmlinux 0xb6eabe37 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xb72e2ca1 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0xb6f5ccf5 perf_event_create_kernel_counter EXPORT_SYMBOL_GPL vmlinux 0xb72e969e usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xb730e54c devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase EXPORT_SYMBOL_GPL vmlinux 0xb733eabe inverse_translate EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb73be65e __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init -EXPORT_SYMBOL_GPL vmlinux 0xb7566469 perf_aux_output_skip EXPORT_SYMBOL_GPL vmlinux 0xb761318b sev_active -EXPORT_SYMBOL_GPL vmlinux 0xb76b2e75 ata_platform_remove_one EXPORT_SYMBOL_GPL vmlinux 0xb7722589 __iomap_dio_rw EXPORT_SYMBOL_GPL vmlinux 0xb77276a7 fuse_file_poll EXPORT_SYMBOL_GPL vmlinux 0xb774c824 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0xb77b7526 switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xb77e4f91 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0xb793ac8a blk_update_request EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time -EXPORT_SYMBOL_GPL vmlinux 0xb7e44ee4 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0xb7e593a6 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xb7ecec5b devm_i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0xb80d6526 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xb810d1e5 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xb812dc09 clk_hw_get_parent_by_index EXPORT_SYMBOL_GPL vmlinux 0xb8137967 devm_namespace_disable -EXPORT_SYMBOL_GPL vmlinux 0xb81c0416 gpiochip_add_pin_range EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xb82aa1be regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0xb82e53b1 sdio_readw EXPORT_SYMBOL_GPL vmlinux 0xb83120ca blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0xb83d8d6e crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xb836184b ata_ehi_clear_desc EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xb8525004 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0xb8571bf5 wm8350_block_write EXPORT_SYMBOL_GPL vmlinux 0xb8572691 xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xb857efe1 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xb8726114 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xb859463e fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xb87ac36c ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable -EXPORT_SYMBOL_GPL vmlinux 0xb880fab5 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xb8868eac ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8a1ca26 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xb8b2353e gpiod_get_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d638c7 thermal_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable EXPORT_SYMBOL_GPL vmlinux 0xb9218de3 vfio_pci_core_request +EXPORT_SYMBOL_GPL vmlinux 0xb9358797 sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0xb938e67a pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0xb9409e12 serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb94926a4 devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb96245a1 vfs_write EXPORT_SYMBOL_GPL vmlinux 0xb962769b sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb96cf173 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0xb9722e47 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xb973465e crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0xb979e7f9 bsg_remove_queue EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0xb996968d udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xb99767cb devm_regulator_register EXPORT_SYMBOL_GPL vmlinux 0xb9983012 usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0xb9a7de9c __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xb9b5154d regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9bed615 sata_lpm_ignore_phy_events 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 0xb9d0e46b irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0xb9dc2e6c __vfs_setxattr_noperm EXPORT_SYMBOL_GPL vmlinux 0xb9dd52f6 badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xb9f93760 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xb9f1d025 fwnode_get_next_parent EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xba0eb5fe skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get EXPORT_SYMBOL_GPL vmlinux 0xba33cd1d vp_modern_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0xba356263 nd_region_provider_data EXPORT_SYMBOL_GPL vmlinux 0xba4115e0 acpi_subsys_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0xba43ca6d rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xba555f6f regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0xba66abeb pm_generic_thaw_noirq EXPORT_SYMBOL_GPL vmlinux 0xba6a82ed mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xba73dec4 ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0xba77b0a6 lp8788_update_bits EXPORT_SYMBOL_GPL vmlinux 0xba82f246 uv_bios_install_heap EXPORT_SYMBOL_GPL vmlinux 0xba89eaf3 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xba94cd5d device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0xbaa1b000 list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0xbab4c100 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xbab7ed4f __tracepoint_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0xbab8c874 usb_alloc_coherent EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac8eda2 bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0xbac9f479 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0xbad008a9 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xbaeea081 fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed EXPORT_SYMBOL_GPL vmlinux 0xbaf8c66c dev_pm_opp_disable @@ -24478,52 +24538,45 @@ EXPORT_SYMBOL_GPL vmlinux 0xbafd937f ata_pci_bmdma_init EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch EXPORT_SYMBOL_GPL vmlinux 0xbb0c105f serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xbb0db96d raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0xbb15452a transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xbb17328c blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xbb1b6ed0 ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0xbb1e922d hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xbb26b02c icc_link_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbb2f642a wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0xbb49167d blk_mq_flush_busy_ctxs EXPORT_SYMBOL_GPL vmlinux 0xbb4a17bd rio_map_outb_region EXPORT_SYMBOL_GPL vmlinux 0xbb4b619f ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0xbb5447db devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0xbb5598ce get_llc_id +EXPORT_SYMBOL_GPL vmlinux 0xbb63a53c __tracepoint_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback -EXPORT_SYMBOL_GPL vmlinux 0xbb65846d devm_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6b5024 sdio_disable_func EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb8ddb7b aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xbb8e29f7 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xbb8ef097 xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc EXPORT_SYMBOL_GPL vmlinux 0xbb9eedf4 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0xbbb6d500 __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xbba26d10 tcp_twsk_destructor EXPORT_SYMBOL_GPL vmlinux 0xbbb78049 iomap_writepage EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbcb0b68 scsi_internal_device_unblock_nowait EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbbe7f0f0 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features EXPORT_SYMBOL_GPL vmlinux 0xbc07a8f5 usb_control_msg_recv EXPORT_SYMBOL_GPL vmlinux 0xbc166d1e da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc22cb6b vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xbc3778cb regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xbc3928a7 sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0xbc3eb5be usb_urb_ep_type_check EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time EXPORT_SYMBOL_GPL vmlinux 0xbc4e24bb copy_mc_to_kernel EXPORT_SYMBOL_GPL vmlinux 0xbc52a41f usb_get_intf EXPORT_SYMBOL_GPL vmlinux 0xbc543ef7 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xbc587f66 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xbc582485 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xbc5f88ca __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0xbc6fb3a7 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0xbc7b448e trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xbc7d37d1 __tracepoint_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0xbc8181a8 xenbus_probe_devices EXPORT_SYMBOL_GPL vmlinux 0xbc8cfaf0 percpu_down_write EXPORT_SYMBOL_GPL vmlinux 0xbc8ea581 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xbc986b87 sdio_retune_crc_enable EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbc9c2c44 clk_register EXPORT_SYMBOL_GPL vmlinux 0xbca3395d vfio_virqfd_enable EXPORT_SYMBOL_GPL vmlinux 0xbca8e0ff pci_pr3_present EXPORT_SYMBOL_GPL vmlinux 0xbcb39a41 dma_buf_unmap_attachment @@ -24535,81 +24588,79 @@ EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name EXPORT_SYMBOL_GPL vmlinux 0xbce5e93a dw_pcie_read_dbi EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool EXPORT_SYMBOL_GPL vmlinux 0xbd060e5d usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xbd2237d2 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xbd2b861b device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xbd1653b8 __SCK__tp_func_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xbd2ebd73 badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0xbd33b1a2 crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd4bb508 fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0xbd4e2a50 thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0xbd57ad06 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xbd645d04 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xbd67227f shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0xbd70750d usb_submit_urb EXPORT_SYMBOL_GPL vmlinux 0xbd728961 xhci_reset_bandwidth EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xbda351bb register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xbdabdffb rtc_read_alarm EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa -EXPORT_SYMBOL_GPL vmlinux 0xbdc7c568 devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xbdcc113d __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xbdbbbc95 register_trace_event EXPORT_SYMBOL_GPL vmlinux 0xbded134c devm_request_pci_bus_resources EXPORT_SYMBOL_GPL vmlinux 0xbded8ccb irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xbdfc74da clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0xbe13f86b trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0xbe194459 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xbe00f212 crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0xbe1c83e0 vfio_pci_core_mmap EXPORT_SYMBOL_GPL vmlinux 0xbe2f6a18 dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0xbe3da4ad crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xbe3830b5 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xbe46a175 fwnode_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe5eee3c fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0xbe61867a nd_region_dev EXPORT_SYMBOL_GPL vmlinux 0xbe65e182 max_cswd_read_retries EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe69c698 raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0xbe6d43d7 ioasid_put EXPORT_SYMBOL_GPL vmlinux 0xbe744257 efi_get_embedded_fw EXPORT_SYMBOL_GPL vmlinux 0xbe7a3abc irq_domain_free_irqs_common EXPORT_SYMBOL_GPL vmlinux 0xbe7f987e led_sysfs_enable EXPORT_SYMBOL_GPL vmlinux 0xbe94e3d4 dev_attr_em_message_type EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbe9f6a15 dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0xbea5c9e8 spi_mem_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeb3df17 __raw_v6_lookup EXPORT_SYMBOL_GPL vmlinux 0xbebba34d md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xbebd6c55 nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0xbec52f99 virtio_device_restore EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbef43fd5 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xbef66efd spi_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier EXPORT_SYMBOL_GPL vmlinux 0xbf165dec __SCT__tp_func_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0xbf268ac0 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xbf28caa6 metadata_dst_free_percpu EXPORT_SYMBOL_GPL vmlinux 0xbf2c5a54 tty_get_pgrp EXPORT_SYMBOL_GPL vmlinux 0xbf30d49d kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xbf375c79 platform_device_put EXPORT_SYMBOL_GPL vmlinux 0xbf415695 devm_pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0xbf56ec5d _copy_mc_to_iter EXPORT_SYMBOL_GPL vmlinux 0xbf5959eb devm_kstrdup EXPORT_SYMBOL_GPL vmlinux 0xbf5b0700 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xbf7219a9 gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0xbf8f1739 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xbfa1567b dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xbf7b210c xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xbf88998d __traceiter_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xbfa4ba00 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0xbfa4c662 ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0xbfa794b0 irq_chip_set_type_parent EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports EXPORT_SYMBOL_GPL vmlinux 0xbfbc7575 sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xbfceede6 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xbfc2f4c7 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xbfcd5c8b preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbfdbdf42 i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0xbfdc8ae1 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xbfddf734 cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfec59e3 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xbfecf094 do_splice_from EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbff3eda1 udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0xbffe4309 crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xc017b8f7 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xbff8331e blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xc00a2ea2 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xc028d138 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0xc0293e90 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0xc034657c __kernel_write EXPORT_SYMBOL_GPL vmlinux 0xc040d3da dev_pm_opp_put_prop_name -EXPORT_SYMBOL_GPL vmlinux 0xc085f7b8 device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xc08d3ef6 int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc09a04e7 hwmon_notify_event EXPORT_SYMBOL_GPL vmlinux 0xc09ecc73 usb_mon_register EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited EXPORT_SYMBOL_GPL vmlinux 0xc0ac5a7f genphy_c45_read_lpa @@ -24620,8 +24671,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc0ce3346 acpi_is_pnp_device EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name EXPORT_SYMBOL_GPL vmlinux 0xc0e7cf45 iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f99cea crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc0ff94e6 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0xc1019be5 tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t EXPORT_SYMBOL_GPL vmlinux 0xc1173e68 sysfs_add_file_to_group @@ -24630,28 +24680,26 @@ EXPORT_SYMBOL_GPL vmlinux 0xc15ecaf8 led_trigger_event EXPORT_SYMBOL_GPL vmlinux 0xc16263be driver_find_device EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc177823e crypto_larval_kill EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xc181562e sched_trace_cfs_rq_path EXPORT_SYMBOL_GPL vmlinux 0xc18cdf36 amd_df_indirect_read EXPORT_SYMBOL_GPL vmlinux 0xc1997a3a open_related_ns EXPORT_SYMBOL_GPL vmlinux 0xc1a40177 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0xc1a7089c pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xc1cdd5eb icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0xc1d7073a __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xc1c38879 crypto_stats_rng_seed EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL vmlinux 0xc1dc0c2d devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0xc1dcc0d6 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xc1dfc34f spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0xc201a5bc __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xc2005240 device_property_read_string EXPORT_SYMBOL_GPL vmlinux 0xc2033d9f amd_get_highest_perf -EXPORT_SYMBOL_GPL vmlinux 0xc21675d6 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc21651ad ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xc2185ec0 icc_get EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases EXPORT_SYMBOL_GPL vmlinux 0xc23601c1 __SCT__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xc23e151a pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xc2515266 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc249612f gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler EXPORT_SYMBOL_GPL vmlinux 0xc261e6fe usb_get_status EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc269bf60 __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0xc2713998 dev_pm_domain_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0xc27cbf7f noop_invalidatepage EXPORT_SYMBOL_GPL vmlinux 0xc2856226 ata_common_sdev_attrs @@ -24659,18 +24707,14 @@ 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 0xc2a03546 iomap_truncate_page EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata -EXPORT_SYMBOL_GPL vmlinux 0xc2a58186 sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xc2b78dff ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0xc2bf9c5e mdiobus_modify EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc2ca1f7f efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0xc2ca59f4 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0xc2d4f1d9 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xc2ce66c8 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xc2d55962 work_on_cpu_key EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2eaa3fe tcp_abort EXPORT_SYMBOL_GPL vmlinux 0xc2ec5437 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0xc2f173ad ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0xc2f3490f fat_fill_super EXPORT_SYMBOL_GPL vmlinux 0xc2fb483f __SCT__tp_func_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xc3180ae0 da903x_reads @@ -24678,33 +24722,25 @@ EXPORT_SYMBOL_GPL vmlinux 0xc32ab7ab attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0xc3329c64 apic EXPORT_SYMBOL_GPL vmlinux 0xc337353f iomap_file_unshare EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3456ad5 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xc3548efe __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xc35c4b49 gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0xc35d358f ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xc36d430a __traceiter_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xc374de49 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xc375f718 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc378d36c regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xc37bdc28 yield_to EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc38b71d0 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0xc3a02ec9 gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0xc3a5e060 regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc3b8794a wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xc3bf4dce __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xc3ad1797 __SCK__tp_func_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3d06e1e net_selftest EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu EXPORT_SYMBOL_GPL vmlinux 0xc3e631cd i2c_dw_probe_master EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough EXPORT_SYMBOL_GPL vmlinux 0xc3ed3126 hvc_poll EXPORT_SYMBOL_GPL vmlinux 0xc3ef4cea input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xc405499f device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xc40ab6ee strp_stop -EXPORT_SYMBOL_GPL vmlinux 0xc4188470 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc41c9051 crypto_register_templates 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 0xc43ff3d1 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0xc448e3ce task_user_regset_view EXPORT_SYMBOL_GPL vmlinux 0xc44cefc2 split_page EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type EXPORT_SYMBOL_GPL vmlinux 0xc45d0d13 injectm @@ -24718,218 +24754,215 @@ EXPORT_SYMBOL_GPL vmlinux 0xc47d0baf edac_pci_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0xc488dab2 __fscrypt_encrypt_symlink EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL vmlinux 0xc4a0506e xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc4979b39 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xc497b022 mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send EXPORT_SYMBOL_GPL vmlinux 0xc4b61be3 xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0xc4c97d30 dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0xc4cbe9df virtqueue_add_outbuf EXPORT_SYMBOL_GPL vmlinux 0xc4d022cb __SCT__tp_func_napi_poll EXPORT_SYMBOL_GPL vmlinux 0xc4db8469 to_software_node -EXPORT_SYMBOL_GPL vmlinux 0xc4e5539a tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xc4eb291b regulator_set_load EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f4821f tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xc504e0d2 shmem_file_setup EXPORT_SYMBOL_GPL vmlinux 0xc50dca33 __SCT__tp_func_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask EXPORT_SYMBOL_GPL vmlinux 0xc515322e serial8250_do_set_mctrl EXPORT_SYMBOL_GPL vmlinux 0xc51fa363 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xc5217a74 trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0xc5234b12 devm_kstrdup_const EXPORT_SYMBOL_GPL vmlinux 0xc525d817 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xc528c66c regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0xc5391254 blkg_conf_finish EXPORT_SYMBOL_GPL vmlinux 0xc5395717 usb_get_descriptor EXPORT_SYMBOL_GPL vmlinux 0xc53b51b6 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xc546d09d msg_zerocopy_alloc EXPORT_SYMBOL_GPL vmlinux 0xc557192e tpm_chip_start EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc5638d6b unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name EXPORT_SYMBOL_GPL vmlinux 0xc56d3acc intel_pinctrl_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0xc570af8b __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xc575ac1e ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array EXPORT_SYMBOL_GPL vmlinux 0xc57d7e42 debugfs_print_regs32 EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc58deaaf seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0xc5969b13 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc59c01e4 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xc5a59ba3 spi_bus_unlock EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5a8c61c __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xc5c4c9a7 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0xc5b689f3 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5c54a9d bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0xc5cc8303 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xc5d7b415 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xc5ddc521 xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0xc5e20adf ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xc5e4f739 __inode_attach_wb EXPORT_SYMBOL_GPL vmlinux 0xc5f4f00a debugfs_create_u32 EXPORT_SYMBOL_GPL vmlinux 0xc604ab28 __SCT__tp_func_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0xc616c759 pcie_aspm_capable EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc6199a99 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xc62597be mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc65ee4c0 regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc6686d66 sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66c8921 inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable EXPORT_SYMBOL_GPL vmlinux 0xc6835fb1 battery_hook_register EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted +EXPORT_SYMBOL_GPL vmlinux 0xc68c9c94 ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc69bcdfa sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0xc6a361f7 tps6586x_update EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xc6b13eb3 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xc6b77bd0 pwm_get EXPORT_SYMBOL_GPL vmlinux 0xc6c611c9 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xc6cb87d4 crypto_unregister_instance EXPORT_SYMBOL_GPL vmlinux 0xc6ce6138 nvdimm_flush EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6e69af7 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xc6ea670b blk_rq_prep_clone EXPORT_SYMBOL_GPL vmlinux 0xc6eec8f5 clk_divider_ops EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc7134738 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc718457b regulator_list_voltage EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field EXPORT_SYMBOL_GPL vmlinux 0xc731fd0e wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc7330d0f __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0xc73934d9 dev_pm_domain_attach_by_name EXPORT_SYMBOL_GPL vmlinux 0xc769ff48 tracepoint_probe_unregister EXPORT_SYMBOL_GPL vmlinux 0xc76f8048 __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0xc76f85ef mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xc78309ea ata_host_start EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key EXPORT_SYMBOL_GPL vmlinux 0xc795d367 da9052_disable_irq_nosync EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7b0c2ed pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0xc7b1e0f3 devlink_params_unpublish EXPORT_SYMBOL_GPL vmlinux 0xc7b2ddc7 phy_power_off EXPORT_SYMBOL_GPL vmlinux 0xc7c17a75 devfreq_event_get_edev_count EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7cbd968 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xc7ca4b04 __tracepoint_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0xc7de27ee devm_regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xc7dfcf94 vmf_insert_pfn_pmd_prot EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer EXPORT_SYMBOL_GPL vmlinux 0xc7ecea4f reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xc7f48091 nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0xc7f88488 pm_runtime_suspended_time EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop EXPORT_SYMBOL_GPL vmlinux 0xc7fc5855 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xc8001c3e sdio_retune_crc_enable EXPORT_SYMBOL_GPL vmlinux 0xc800bb4c spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xc803c00e regulator_get_voltage EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove EXPORT_SYMBOL_GPL vmlinux 0xc8333961 pci_epc_remove_epf EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc83f1267 inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0xc84cb79b kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xc8507eed register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc858cf8b devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc85ac280 device_destroy EXPORT_SYMBOL_GPL vmlinux 0xc85b8e3e regulator_is_enabled_regmap EXPORT_SYMBOL_GPL vmlinux 0xc86a3c02 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xc86db7d8 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc86aa79a crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0xc874d710 hv_unmap_ioapic_interrupt EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event EXPORT_SYMBOL_GPL vmlinux 0xc87efeea da9052_disable_irq EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark EXPORT_SYMBOL_GPL vmlinux 0xc895acba pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xc89ecc68 __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xc8a9b48f power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xc8b60972 regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0xc8ba4b7d debugfs_file_get EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8e0ead8 dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0xc8e812ab path_noexec -EXPORT_SYMBOL_GPL vmlinux 0xc8f89b88 gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0xc90c7d49 blk_queue_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0xc913d5df mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0xc91ee1b5 __SCT__tp_func_mc_event EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc929fffd bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xc92a5d02 nf_queue EXPORT_SYMBOL_GPL vmlinux 0xc930835f md_account_bio EXPORT_SYMBOL_GPL vmlinux 0xc93430b7 usb_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init EXPORT_SYMBOL_GPL vmlinux 0xc940afbd genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xc94aeb54 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0xc950d088 acpi_find_child_device EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc964bcd2 pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0xc96564bb nvdimm_pmem_region_create EXPORT_SYMBOL_GPL vmlinux 0xc9754ca4 phy_pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0xc979f1ea input_ff_flush EXPORT_SYMBOL_GPL vmlinux 0xc981c8b3 edac_mc_find_csrow_by_page EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base EXPORT_SYMBOL_GPL vmlinux 0xc990cf87 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xc991e308 tcp_ca_openreq_child EXPORT_SYMBOL_GPL vmlinux 0xc99d4a36 serdev_device_set_parity EXPORT_SYMBOL_GPL vmlinux 0xc9a4b416 copy_to_user_nofault EXPORT_SYMBOL_GPL vmlinux 0xc9ac62c5 dev_pm_opp_enable EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler EXPORT_SYMBOL_GPL vmlinux 0xc9c51f39 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xc9d36394 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xc9daab8d platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0xc9ddc545 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xc9e4f833 spi_sync EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f67b09 icc_sync_state EXPORT_SYMBOL_GPL vmlinux 0xc9f8b8a2 devm_usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put EXPORT_SYMBOL_GPL vmlinux 0xca05ddb0 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xca0e308e wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0xca12cf8a __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xca33202b __tracepoint_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0xca37661d devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xca377a82 devlink_param_publish EXPORT_SYMBOL_GPL vmlinux 0xca3fbe45 pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xca56bd77 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xca5bb2db phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xca5ddf7a __tracepoint_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0xca5fce7a dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xca60ce05 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0xca63958f gpiod_set_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xca666cb7 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xca739209 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0xca79ae7d crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xca678ffa get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xca7ad2a0 __SCK__tp_func_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca888219 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xca921ba4 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xca927389 __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures EXPORT_SYMBOL_GPL vmlinux 0xcaaeaa33 __pci_hp_initialize EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock EXPORT_SYMBOL_GPL vmlinux 0xcace06e8 memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xcae02084 rdev_get_id EXPORT_SYMBOL_GPL vmlinux 0xcae7d321 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xcaee202e driver_set_override EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get EXPORT_SYMBOL_GPL vmlinux 0xcaf679f3 pci_hp_deregister EXPORT_SYMBOL_GPL vmlinux 0xcaf6db8f __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xcafa6327 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xcb004195 __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0xcb0f931d skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xcb15722a ping_close EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data EXPORT_SYMBOL_GPL vmlinux 0xcb15f4a4 anon_inode_getfile EXPORT_SYMBOL_GPL vmlinux 0xcb1d59af usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0xcb279c6b sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0xcb2bac29 crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xcb36d7ff iommu_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj EXPORT_SYMBOL_GPL vmlinux 0xcb6f3c91 __blkg_prfill_u64 EXPORT_SYMBOL_GPL vmlinux 0xcb83064b scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0xcb8570a3 i2c_add_numbered_adapter EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xcb8f399d crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xcb91bbb7 phy_led_triggers_unregister EXPORT_SYMBOL_GPL vmlinux 0xcb96507f pm_generic_freeze_noirq EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xcbb1f7e6 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xcbb1bcde strp_init EXPORT_SYMBOL_GPL vmlinux 0xcbb330de pci_stop_root_bus EXPORT_SYMBOL_GPL vmlinux 0xcbb46ca0 misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0xcbd81555 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xcbe133a1 scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages EXPORT_SYMBOL_GPL vmlinux 0xcbed20d7 dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0xcbf80e06 gpiochip_remove_pin_ranges EXPORT_SYMBOL_GPL vmlinux 0xcbfca4b0 xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xcc04d4d3 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xcc164aba blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0xcc1891ac xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xcc159c3b phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0xcc1b957e xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0xcc244636 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xcc2ca409 mnt_want_write_file EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc2f5663 ata_msleep EXPORT_SYMBOL_GPL vmlinux 0xcc312197 clk_mux_ops EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc3a06e1 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xcc3ea93b crypto_unregister_rngs EXPORT_SYMBOL_GPL vmlinux 0xcc42c261 irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xcc4eec0c fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0xcc51f058 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xcc588c23 __udp_gso_segment EXPORT_SYMBOL_GPL vmlinux 0xcc77a1a3 mbox_request_channel_byname EXPORT_SYMBOL_GPL vmlinux 0xcc7ef1da usb_control_msg EXPORT_SYMBOL_GPL vmlinux 0xcc827030 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc89a7cd hwmon_device_register EXPORT_SYMBOL_GPL vmlinux 0xcc8ba992 dev_pm_opp_get_max_transition_latency EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc @@ -24937,20 +24970,24 @@ EXPORT_SYMBOL_GPL vmlinux 0xcca50c6c hwpoison_filter EXPORT_SYMBOL_GPL vmlinux 0xccbc50a5 __pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccdeba78 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xcce0e073 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xccd9441e ata_scsi_port_error_handler 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 0xccff89fc sdio_release_host EXPORT_SYMBOL_GPL vmlinux 0xcd0469e3 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xcd04fcea spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xcd23645e ata_sas_queuecmd EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd2ec145 sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0xcd344a8a bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory -EXPORT_SYMBOL_GPL vmlinux 0xcd4c380e devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xcd44c892 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xcd53b68b fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xcd5a7e05 spi_bus_type EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd7f54ad tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return -EXPORT_SYMBOL_GPL vmlinux 0xcd8a02b8 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xcd84adfd tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xcd8e8f82 uv_bios_enum_objs EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs @@ -24960,29 +24997,30 @@ EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs EXPORT_SYMBOL_GPL vmlinux 0xcdcece5d driver_register EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xce01ae59 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xcdef7407 trace_event_buffer_reserve EXPORT_SYMBOL_GPL vmlinux 0xce01baed cpufreq_frequency_table_get_index EXPORT_SYMBOL_GPL vmlinux 0xce04cef5 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xce064c17 gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory EXPORT_SYMBOL_GPL vmlinux 0xce0dc0cc usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xce0e70f9 clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0xce197c7c mddev_resume EXPORT_SYMBOL_GPL vmlinux 0xce1da0e1 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xce2756ca crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0xce44c76f regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xce2977a8 blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0xce467d70 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xce5574dc gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xce55cea2 __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xce5b03e9 inet6_compat_ioctl EXPORT_SYMBOL_GPL vmlinux 0xce6d380e driver_attach EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce80b7e6 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xce7cea5b ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0xce82db03 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xce86afad regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xce832d75 __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xce8461a0 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xce8da223 sched_trace_rq_avg_irq EXPORT_SYMBOL_GPL vmlinux 0xce90dd95 devres_destroy EXPORT_SYMBOL_GPL vmlinux 0xce940da7 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xce945996 inet_hashinfo2_init_mod EXPORT_SYMBOL_GPL vmlinux 0xce985658 kset_find_obj EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb1fa6c __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xceb61c50 fwnode_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu EXPORT_SYMBOL_GPL vmlinux 0xcebc2d7f devfreq_cooling_em_register EXPORT_SYMBOL_GPL vmlinux 0xced73b78 pin_get_name @@ -24990,47 +25028,51 @@ EXPORT_SYMBOL_GPL vmlinux 0xcedbea64 intel_pinctrl_resume_noirq EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console EXPORT_SYMBOL_GPL vmlinux 0xcee1a2f1 irqchip_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0xcee25e0f devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0xcee85876 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xceff6707 inet_hash EXPORT_SYMBOL_GPL vmlinux 0xcf02ab71 __SCT__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xcf14fc5b fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xcf0a38e5 gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0xcf21270d ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0xcf2a82bb xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0xcf32f71e cpufreq_dbs_governor_exit EXPORT_SYMBOL_GPL vmlinux 0xcf353e35 usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xcf40b339 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xcf4639cd bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xcf3d6983 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xcf46b466 crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0xcf52bb33 phy_calibrate EXPORT_SYMBOL_GPL vmlinux 0xcf540422 ftrace_set_filter EXPORT_SYMBOL_GPL vmlinux 0xcf5df21c genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xcf62d628 i2c_generic_scl_recovery EXPORT_SYMBOL_GPL vmlinux 0xcf6848b1 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0xcf77cc2e regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xcfa4de53 yield_to -EXPORT_SYMBOL_GPL vmlinux 0xcfaa2da7 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xcf9053fc pwm_capture EXPORT_SYMBOL_GPL vmlinux 0xcfaa986b xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xcfb26b39 device_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0xcfc04469 mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfc6b46a msg_zerocopy_alloc EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfc8c483 ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory EXPORT_SYMBOL_GPL vmlinux 0xcfd63fc6 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xcfdcbb6d wm8350_gpio_config EXPORT_SYMBOL_GPL vmlinux 0xcfe2d221 mmu_notifier_get_locked EXPORT_SYMBOL_GPL vmlinux 0xcfeba669 dma_buf_move_notify EXPORT_SYMBOL_GPL vmlinux 0xcff5227d elv_rqhash_del EXPORT_SYMBOL_GPL vmlinux 0xcffc9fa0 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xcffdd918 __SCK__tp_func_arm_event EXPORT_SYMBOL_GPL vmlinux 0xcffe0d44 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0xd0021cda crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xd006e16a __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xd0175da0 dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0xd0177a65 acrn_setup_intr_handler EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd0411748 crypto_skcipher_setkey EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd0491639 __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xd04e89ca netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0xd051d489 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xd0650fc3 l3mdev_ifindex_lookup_by_table_id EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd0654033 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xd0658ee9 regmap_attach_dev EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0xd06f7131 acpi_dev_resume EXPORT_SYMBOL_GPL vmlinux 0xd08d69a7 __pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0xd0951edc pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xd095e0f2 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type EXPORT_SYMBOL_GPL vmlinux 0xd09fb4a2 pinctrl_force_sleep EXPORT_SYMBOL_GPL vmlinux 0xd0a17f55 simple_attr_read @@ -25039,27 +25081,27 @@ EXPORT_SYMBOL_GPL vmlinux 0xd0a8d155 platform_find_device_by_driver EXPORT_SYMBOL_GPL vmlinux 0xd0b4a6d8 adp5520_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xd0b862a2 pci_find_next_ht_capability EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c6629e sata_std_hardreset EXPORT_SYMBOL_GPL vmlinux 0xd0c97e5d devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xd0caae0c ata_wait_register 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 0xd0e942a5 bpf_trace_run3 EXPORT_SYMBOL_GPL vmlinux 0xd0fd3b39 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xd1010d8b addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xd10dd88e rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0xd13190d0 pm_genpd_remove_device EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse EXPORT_SYMBOL_GPL vmlinux 0xd13a94d1 __SCT__tp_func_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xd1406166 __pci_hp_register EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd148fcc2 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd16137eb __SCK__tp_func_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0xd166d494 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xd16ddd4d bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0xd16e7159 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xd1784c35 regulator_disable EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features EXPORT_SYMBOL_GPL vmlinux 0xd1870b26 pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0xd195dc61 devlink_param_unregister EXPORT_SYMBOL_GPL vmlinux 0xd1c7e6aa pci_d3cold_enable EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on @@ -25068,97 +25110,84 @@ EXPORT_SYMBOL_GPL vmlinux 0xd1def20c usb_unpoison_urb EXPORT_SYMBOL_GPL vmlinux 0xd1e37d02 iomap_ioend_try_merge EXPORT_SYMBOL_GPL vmlinux 0xd1e9b2ad __SCT__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f74093 __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0xd20c66ab __SCT__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xd20db966 switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0xd214bd56 pm_clk_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21a33d1 regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain -EXPORT_SYMBOL_GPL vmlinux 0xd22d4de8 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xd21c76b3 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0xd24c5855 __tracepoint_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init EXPORT_SYMBOL_GPL vmlinux 0xd25ba116 pinctrl_utils_add_config EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd26e2946 xfrm_audit_state_replay_overflow EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd2852d32 rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0xd289b76c memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0xd2a6576d acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd2a65a24 pm_relax EXPORT_SYMBOL_GPL vmlinux 0xd2aad484 pm_generic_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2cfc7ba sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xd2dad393 page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0xd2eef730 devm_hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0xd2fe2ce4 generic_fh_to_dentry EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xd31b7a6f __tracepoint_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar EXPORT_SYMBOL_GPL vmlinux 0xd338f3d7 xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xd3561782 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xd340c837 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xd34ab94d tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xd35afd56 crypto_ahash_final EXPORT_SYMBOL_GPL vmlinux 0xd3666fc3 xenbus_dev_remove EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3683449 __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd379fe91 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xd38d42ce usb_deregister_device_driver EXPORT_SYMBOL_GPL vmlinux 0xd38ff3c3 fat_free_clusters EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 EXPORT_SYMBOL_GPL vmlinux 0xd39eb8ae ata_sff_thaw EXPORT_SYMBOL_GPL vmlinux 0xd3b83842 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xd3bc0872 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xd3e5e293 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xd3e9469a i2c_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd3fd1d9f sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xd3fa79fc mmc_send_abort_tuning EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd40dc47a dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xd404c0e8 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xd40e31d7 udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0xd42183a4 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xd4258a97 __SCK__tp_func_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd43b1976 do_splice_from EXPORT_SYMBOL_GPL vmlinux 0xd4404350 __SCT__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xd440f2d6 nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0xd4414bf7 phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console EXPORT_SYMBOL_GPL vmlinux 0xd44cb24b tpm_try_get_ops EXPORT_SYMBOL_GPL vmlinux 0xd45e7325 bpfilter_umh_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xd464e0b9 mmc_switch EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd46cb84b ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0xd47c833d devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd4941195 hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0xd49545e3 thermal_zone_get_zone_by_name EXPORT_SYMBOL_GPL vmlinux 0xd4997274 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0xd499c2ae scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0xd4a22cbe vfio_pci_core_disable EXPORT_SYMBOL_GPL vmlinux 0xd4b1c98a kthread_data EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done -EXPORT_SYMBOL_GPL vmlinux 0xd4b67746 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0xd4b7ea61 switchdev_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xd4b9ba5d devm_hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq EXPORT_SYMBOL_GPL vmlinux 0xd4c9bf0f sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xd4d12f69 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0xd4d69657 phy_driver_is_genphy_10g EXPORT_SYMBOL_GPL vmlinux 0xd4d90bc4 __reset_control_get EXPORT_SYMBOL_GPL vmlinux 0xd4dc6bc3 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xd4e2201f dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value EXPORT_SYMBOL_GPL vmlinux 0xd4e9df3c balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd4f8af03 clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd512d203 blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd532bf6e __tracepoint_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata EXPORT_SYMBOL_GPL vmlinux 0xd55ce4c1 phy_pm_runtime_get EXPORT_SYMBOL_GPL vmlinux 0xd5632f68 tps65912_device_init EXPORT_SYMBOL_GPL vmlinux 0xd56886a9 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0xd56a7406 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xd572fa96 __tracepoint_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd593b28c ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd5a3368e fib_nh_common_init EXPORT_SYMBOL_GPL vmlinux 0xd5ab5b23 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xd5d0e95f pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xd5c70757 skcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0xd5dd9be2 __acpi_node_get_property_reference EXPORT_SYMBOL_GPL vmlinux 0xd5eb0d4e acpi_register_lps0_dev EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted @@ -25167,19 +25196,24 @@ EXPORT_SYMBOL_GPL vmlinux 0xd5f5368d serial8250_tx_chars EXPORT_SYMBOL_GPL vmlinux 0xd60262c4 acpi_bind_one EXPORT_SYMBOL_GPL vmlinux 0xd605d2a0 vp_modern_get_status EXPORT_SYMBOL_GPL vmlinux 0xd60b16b2 iommu_device_sysfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xd6296c39 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0xd6456bbc crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xd60def1b __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xd60fb54a put_device +EXPORT_SYMBOL_GPL vmlinux 0xd61125bf ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xd642f543 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xd648da19 crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p EXPORT_SYMBOL_GPL vmlinux 0xd6502267 dev_pm_opp_find_freq_ceil EXPORT_SYMBOL_GPL vmlinux 0xd65568cd clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xd6635ba9 vfs_inode_has_locks EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd69ea5d3 gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0xd6a400e6 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xd6a8d07f ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xd687848e unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd6a89524 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0xd6ab03c1 ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0xd6be2110 clk_register_mux_table EXPORT_SYMBOL_GPL vmlinux 0xd6c76a2a pci_remove_root_bus EXPORT_SYMBOL_GPL vmlinux 0xd6dbde73 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xd6e3c136 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xd6f205ae regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd6f2abe5 device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries EXPORT_SYMBOL_GPL vmlinux 0xd7070470 key_type_logon EXPORT_SYMBOL_GPL vmlinux 0xd71f3998 dm_bio_get_target_bio_nr @@ -25191,45 +25225,48 @@ EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state EXPORT_SYMBOL_GPL vmlinux 0xd738ec75 bio_release_pages EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end EXPORT_SYMBOL_GPL vmlinux 0xd73d76a7 led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0xd73e843e skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xd7408228 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0xd74d6c18 fwnode_get_phy_node EXPORT_SYMBOL_GPL vmlinux 0xd752f884 iommu_dev_enable_feature EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd75ef01e fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xd7661a26 fwnode_graph_get_next_endpoint EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd776315d scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0xd77d4fdd efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0xd781792e ping_unhash EXPORT_SYMBOL_GPL vmlinux 0xd78f3a8f __kthread_init_worker EXPORT_SYMBOL_GPL vmlinux 0xd78ffc77 devm_regulator_get EXPORT_SYMBOL_GPL vmlinux 0xd7919856 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xd7a0a55b i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xd79dc578 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd7b5597f bpf_map_put 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 0xd7d7f2a7 devlink_port_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd7de1516 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd7df2693 ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0xd7e0efb5 pm_runtime_barrier EXPORT_SYMBOL_GPL vmlinux 0xd814febb dev_pm_domain_set EXPORT_SYMBOL_GPL vmlinux 0xd81f7e27 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xd842a716 udp_abort EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd855f99d xdp_convert_zc_to_xdp_frame EXPORT_SYMBOL_GPL vmlinux 0xd869fe59 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xd875ed6f ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk EXPORT_SYMBOL_GPL vmlinux 0xd88a4ca7 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xd88c972d icc_node_del EXPORT_SYMBOL_GPL vmlinux 0xd895900f blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xd895e315 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xd89f3403 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xd8b30019 devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0xd8c0bafc __percpu_down_read EXPORT_SYMBOL_GPL vmlinux 0xd8c5caa4 pci_disable_rom EXPORT_SYMBOL_GPL vmlinux 0xd8d065dd hv_stimer_alloc EXPORT_SYMBOL_GPL vmlinux 0xd8d11815 blk_req_needs_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd8ff5f62 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0xd9066e46 usb_hcd_check_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0xd90a4e3d nvdimm_security_setup_events EXPORT_SYMBOL_GPL vmlinux 0xd91331f6 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xd9138bcf regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xd918b647 raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk EXPORT_SYMBOL_GPL vmlinux 0xd91f87c4 blkg_conf_prep @@ -25238,98 +25275,81 @@ EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable EXPORT_SYMBOL_GPL vmlinux 0xd941024a devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xd9495f8d set_primary_fwnode EXPORT_SYMBOL_GPL vmlinux 0xd95dadf1 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xd9643173 do_truncate EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd976819c device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xd9773de2 __SCK__tp_func_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd991d010 gpiod_get EXPORT_SYMBOL_GPL vmlinux 0xd9992eb4 uv_bios_get_geoinfo -EXPORT_SYMBOL_GPL vmlinux 0xd9c3af9e acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0xd9cdd74b devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd9cfa64c __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xd9acc774 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xd9c75811 dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0xd9d1600f dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xd9d4bb74 __SCK__tp_func_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xd9db2ef4 spi_mem_exec_op EXPORT_SYMBOL_GPL vmlinux 0xd9e1c5dd usb_add_hcd EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda105750 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xda18b92b crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0xda1dc141 dma_release_channel EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start EXPORT_SYMBOL_GPL vmlinux 0xda32513f pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xda33281b sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xda3724b9 inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xda376bac devm_regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xda3ccdaa usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0xda40c3fe regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0xda563f01 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xda5eacd3 devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xda629e4d gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0xda6c1310 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xda707f93 devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0xda8369a7 __traceiter_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0xda8bb817 gpiod_get_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp EXPORT_SYMBOL_GPL vmlinux 0xdaa5645d pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xdaab9dcb i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert EXPORT_SYMBOL_GPL vmlinux 0xdab6ae06 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xdab782ad device_match_devt EXPORT_SYMBOL_GPL vmlinux 0xdad1e6bb blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xdade6aec crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xdae0a4de fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0xdae276e5 i2c_dw_acpi_configure -EXPORT_SYMBOL_GPL vmlinux 0xdaeaf727 scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf7c80d l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xdaff22af ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0xdb04f2ed devm_bitmap_alloc EXPORT_SYMBOL_GPL vmlinux 0xdb0a772d iomap_zero_range EXPORT_SYMBOL_GPL vmlinux 0xdb182fad user_read -EXPORT_SYMBOL_GPL vmlinux 0xdb1f9c65 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0xdb27b611 ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0xdb323b21 fuse_init_fs_context_submount EXPORT_SYMBOL_GPL vmlinux 0xdb3498ab kobject_move EXPORT_SYMBOL_GPL vmlinux 0xdb395029 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xdb3c4f8b regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xdb3c8f05 dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0xdb534ac1 vfio_unregister_group_dev -EXPORT_SYMBOL_GPL vmlinux 0xdb577c69 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xdb5efe9c ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xdb62acaa ata_port_wait_eh EXPORT_SYMBOL_GPL vmlinux 0xdb62dc67 __SCT__tp_func_map EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb6684a9 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xdb6bb4e5 switchdev_handle_fdb_del_to_device -EXPORT_SYMBOL_GPL vmlinux 0xdb6e59cd i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xdb7db255 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xdb7f3ccb switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock EXPORT_SYMBOL_GPL vmlinux 0xdb91d212 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0xdb9d1a75 regulator_get_current_limit EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll EXPORT_SYMBOL_GPL vmlinux 0xdba22746 iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0xdbb13d06 sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0xdbbb3aef ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0xdbbcf378 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xdbbdb6bc tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0xdbc93628 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xdbc8fc4f regmap_write EXPORT_SYMBOL_GPL vmlinux 0xdbcea095 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xdbd13008 devm_regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe06702 gpiochip_add_pin_range EXPORT_SYMBOL_GPL vmlinux 0xdbf27afe relay_open EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available -EXPORT_SYMBOL_GPL vmlinux 0xdc0b3f6d spi_bus_type EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc1d745a cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0xdc23eb79 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xdc25c1b1 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xdc20a4c9 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xdc242d70 ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xdc401c27 dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0xdc420013 sched_trace_cfs_rq_path EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc603e4c task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xdc5b5afb regmap_field_read EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc6e6818 wbt_enable_default EXPORT_SYMBOL_GPL vmlinux 0xdc719bcd ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0xdc756258 crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0xdc7b35ae iommu_sva_get_pasid EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable @@ -25337,392 +25357,399 @@ EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xdcaf0240 debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xdcca084f get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xdcbbabc1 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdccd5fb9 mptcp_get_reset_option EXPORT_SYMBOL_GPL vmlinux 0xdcd8e59c nvmem_cell_read_u16 EXPORT_SYMBOL_GPL vmlinux 0xdcf8860b bio_alloc_kiocb EXPORT_SYMBOL_GPL vmlinux 0xdcfd1785 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0xdd06a950 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xdd023ffd regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd10d898 ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0xdd15c2b2 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xdd17e205 cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0xdd191ad2 iommu_fwspec_free EXPORT_SYMBOL_GPL vmlinux 0xdd1b62d3 xenbus_unmap_ring_vfree EXPORT_SYMBOL_GPL vmlinux 0xdd1dec82 usb_find_alt_setting EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister EXPORT_SYMBOL_GPL vmlinux 0xdd3984d5 devm_nvdimm_memremap EXPORT_SYMBOL_GPL vmlinux 0xdd4253c7 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xdd45d7b4 __tracepoint_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xdd5d8bce __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xdd48163c scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xdd484d49 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xdd5bbe04 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xdd6210fe __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xdd70813a irq_domain_disconnect_hierarchy EXPORT_SYMBOL_GPL vmlinux 0xdd9dd80d xen_pvh -EXPORT_SYMBOL_GPL vmlinux 0xdd9ea689 net_selftest EXPORT_SYMBOL_GPL vmlinux 0xdda844c9 regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xdda8fc3b thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc260af ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0xddda39c2 acpi_subsys_prepare EXPORT_SYMBOL_GPL vmlinux 0xdddfae52 transport_add_device EXPORT_SYMBOL_GPL vmlinux 0xdde4c005 simple_attr_release EXPORT_SYMBOL_GPL vmlinux 0xddeb109c pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0xddf69f16 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xddf0ec16 lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0xde07d11c subsys_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find EXPORT_SYMBOL_GPL vmlinux 0xde1446ef extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xde15d037 skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0xde19ea8a relay_flush EXPORT_SYMBOL_GPL vmlinux 0xde1c0a22 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xde206c86 gpiochip_add_pingroup_range EXPORT_SYMBOL_GPL vmlinux 0xde25cc7c sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xde2ed2df nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0xde2f16cc irq_chip_set_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0xde3bd9af power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xde567c97 devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0xde5a03b0 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xde5b3f9d crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0xde5e1e01 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xde67443d of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xde6b3925 ata_sas_sync_probe EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 EXPORT_SYMBOL_GPL vmlinux 0xde795751 pci_find_ht_capability EXPORT_SYMBOL_GPL vmlinux 0xde7ad61f phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xde85940e gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0xde95d921 wm831x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xdec76955 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xdeb0b870 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xdec1cdc5 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xded1edc2 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0xdede15a6 pm_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0xdee19068 rio_add_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0xdee58d9e serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0xdee613e1 skb_gso_validate_mac_len EXPORT_SYMBOL_GPL vmlinux 0xdef09d37 regcache_mark_dirty EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf1af7d2 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xdf20b3ab dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf39f8be devm_device_add_group EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf4fdf77 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xdf5001c1 bind_interdomain_evtchn_to_irqhandler_lateeoi EXPORT_SYMBOL_GPL vmlinux 0xdf590c13 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xdf5aafa2 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xdf615046 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0xdf7e826a inode_congested EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free -EXPORT_SYMBOL_GPL vmlinux 0xdf8707b2 iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0xdfa23e46 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0xdfb7acac perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xdf9ed038 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xdfbb193e crypto_grab_akcipher EXPORT_SYMBOL_GPL vmlinux 0xdfcaaa08 pm_generic_poweroff_noirq EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfd06e99 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0xdfff4ac2 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0xe01215a5 xfrm_unregister_translator +EXPORT_SYMBOL_GPL vmlinux 0xdfd3478f add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xdfe6bd4f replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xdffcae47 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xe001ab4d vfs_getxattr_alloc EXPORT_SYMBOL_GPL vmlinux 0xe01db2c0 kernfs_path_from_node EXPORT_SYMBOL_GPL vmlinux 0xe01e7139 gnttab_dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xe023191e device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0xe02c389e __SCK__tp_func_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow EXPORT_SYMBOL_GPL vmlinux 0xe034150c usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xe04a7908 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xe036bcfa inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0xe04c78db __SCT__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xe058449f device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xe058d962 skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe064be98 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xe081b245 __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe093335a __SCK__tp_func_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c09d68 ata_cable_80wire EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq EXPORT_SYMBOL_GPL vmlinux 0xe0d39f1c sgx_set_attribute -EXPORT_SYMBOL_GPL vmlinux 0xe0fd65d8 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xe0eb3a1d switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0xe104cc5e vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0xe1080ccc ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin EXPORT_SYMBOL_GPL vmlinux 0xe10de227 hsu_dma_get_status EXPORT_SYMBOL_GPL vmlinux 0xe115e740 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0xe119c2fe raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xe1286614 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0xe15a8c71 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xe15c6f35 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe1286541 devm_regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0xe15df065 usb_driver_release_interface EXPORT_SYMBOL_GPL vmlinux 0xe1601662 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0xe1706336 crypto_enqueue_request EXPORT_SYMBOL_GPL vmlinux 0xe1714157 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xe172b67e gpiochip_request_own_desc EXPORT_SYMBOL_GPL vmlinux 0xe174c645 iommu_unmap EXPORT_SYMBOL_GPL vmlinux 0xe1753969 acct_bioset_exit EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe1895df6 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xe17f5435 fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb EXPORT_SYMBOL_GPL vmlinux 0xe1abaea1 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe1b19cd5 regulator_get_mode EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx EXPORT_SYMBOL_GPL vmlinux 0xe1c99fbc acpi_subsys_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0xe1d2cfb3 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xe1e1fa5f crypto_grab_shash EXPORT_SYMBOL_GPL vmlinux 0xe206544a usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xe21400d4 proc_create_net_single EXPORT_SYMBOL_GPL vmlinux 0xe2270f3f pm_runtime_autosuspend_expiration EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe23bf92d ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xe24c1b4a acpi_spi_count_resources EXPORT_SYMBOL_GPL vmlinux 0xe2523d3b pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0xe25912e5 shash_register_instance 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 0xe278fc15 xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0xe2798ac1 acpi_get_and_request_gpiod EXPORT_SYMBOL_GPL vmlinux 0xe2802a03 da903x_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled EXPORT_SYMBOL_GPL vmlinux 0xe29a9c59 iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe2a0c8c3 sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0xe2b25d50 generic_device_group EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2b75643 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0xe2bfa8d1 gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0xe2cc24a8 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xe2cd7880 fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2de9581 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xe2ecaa77 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xe2d99d08 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xe2e990a7 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xe3127b9a device_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0xe32ef440 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xe3377168 cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0xe349567b virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xe377e232 device_dma_supported EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe38eed56 clk_hw_get_rate EXPORT_SYMBOL_GPL vmlinux 0xe3910df5 anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0xe397a016 do_truncate EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe39fbf14 wm8350_block_read EXPORT_SYMBOL_GPL vmlinux 0xe3af0085 uart_handle_cts_change EXPORT_SYMBOL_GPL vmlinux 0xe3b083ef iommu_set_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xe3c52af5 devlink_dpipe_table_unregister EXPORT_SYMBOL_GPL vmlinux 0xe3c8f082 devm_memunmap_pages EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init EXPORT_SYMBOL_GPL vmlinux 0xe3d04eb0 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xe3df5f06 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xe3da6f85 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xe3de3c1d __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xe3e1a7b2 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xe3e777a1 __tracepoint_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0xe3e88acb __get_current_cr3_fast +EXPORT_SYMBOL_GPL vmlinux 0xe3f28184 __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0xe40221cc tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xe409fec2 regulator_get_hardware_vsel_register EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0xe42a57e4 crypto_get_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0xe4306f85 of_hwspin_lock_get_id_byname EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe46f2a23 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xe47fb9cb wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xe4505550 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xe4720687 sdio_retune_hold_now EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global EXPORT_SYMBOL_GPL vmlinux 0xe490f6f5 iomap_finish_ioends EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49dbc59 device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b35a28 mmc_sanitize EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xe4bdbff9 device_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm EXPORT_SYMBOL_GPL vmlinux 0xe4cb4e8b pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4ce4635 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0xe4ce6a1f security_path_truncate EXPORT_SYMBOL_GPL vmlinux 0xe4cf2315 usb_hcd_link_urb_to_ep EXPORT_SYMBOL_GPL vmlinux 0xe4cfc21f iommu_group_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xe4d77714 unregister_acpi_bus_type EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4fb4669 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xe4eb9db3 tcp_reno_cong_avoid EXPORT_SYMBOL_GPL vmlinux 0xe5097fa9 pci_epc_mem_exit EXPORT_SYMBOL_GPL vmlinux 0xe50a5067 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xe50a97e8 crypto_stats_get EXPORT_SYMBOL_GPL vmlinux 0xe51e7e6e dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xe52b56ef fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe53305e6 sfp_bus_find_fwnode EXPORT_SYMBOL_GPL vmlinux 0xe53511ad irq_domain_associate_many EXPORT_SYMBOL_GPL vmlinux 0xe575e307 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0xe58549f3 icc_node_add EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe59903d8 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xe59a2e60 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xe58dbaa0 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xe59de8ce add_to_page_cache_lru EXPORT_SYMBOL_GPL vmlinux 0xe5a9cd27 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0xe5ad5589 wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0xe5ad994f vfio_pci_core_init_device -EXPORT_SYMBOL_GPL vmlinux 0xe5b31948 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe5bd9175 regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0xe5bf5ed9 vfio_assign_device_set EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0xe5e3b5dd crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xe5d8f355 regmap_raw_write_async EXPORT_SYMBOL_GPL vmlinux 0xe5fbc85a kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xe60431d2 rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work EXPORT_SYMBOL_GPL vmlinux 0xe609caf6 elv_register EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe61b717d rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0xe622b662 bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0xe62450b2 rio_mport_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array EXPORT_SYMBOL_GPL vmlinux 0xe63662d0 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0xe63ec5fa device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xe6415c39 tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe66108a7 nl_table -EXPORT_SYMBOL_GPL vmlinux 0xe66eff41 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe6515427 thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0xe6754edf devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xe67f73e9 __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xe68d895e filemap_range_needs_writeback EXPORT_SYMBOL_GPL vmlinux 0xe69bda93 vfio_pci_core_read -EXPORT_SYMBOL_GPL vmlinux 0xe69d81eb fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xe69da1f1 __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xe6a5ae32 receive_fd -EXPORT_SYMBOL_GPL vmlinux 0xe6b050d0 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xe6b7599d crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0xe6c3ec91 virtio_check_driver_offered_feature EXPORT_SYMBOL_GPL vmlinux 0xe6c781fa irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xe6d02aaa is_current_mnt_ns EXPORT_SYMBOL_GPL vmlinux 0xe6d6d364 dev_pm_opp_find_level_exact EXPORT_SYMBOL_GPL vmlinux 0xe6d90cea em_dev_unregister_perf_domain EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6e497c3 dax_finish_sync_fault 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 0xe6f8a3ce phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe701176d receive_fd +EXPORT_SYMBOL_GPL vmlinux 0xe70a7d82 crypto_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0xe70afe59 extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0xe71f172c dax_layout_busy_page EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe72784e4 devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0xe729e726 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xe72f7cf3 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xe73729c7 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe7405c91 i2c_adapter_depth EXPORT_SYMBOL_GPL vmlinux 0xe740b58a hv_vp_assist_page -EXPORT_SYMBOL_GPL vmlinux 0xe7454c1d access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xe741d156 strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe75a0dcf mmc_app_cmd EXPORT_SYMBOL_GPL vmlinux 0xe766ea03 mm_kobj EXPORT_SYMBOL_GPL vmlinux 0xe767607a clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xe76889fd sdio_align_size EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe769e6d6 ata_scsi_slave_destroy EXPORT_SYMBOL_GPL vmlinux 0xe76ba485 kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0xe772acf2 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xe773ef22 fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe79347d9 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get -EXPORT_SYMBOL_GPL vmlinux 0xe79d83ba rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xe7c34b34 __SCK__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xe7c620d8 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xe7a3630a platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xe7aa4bdf acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0xe7cc25ee pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xe7d2bbab sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0xe7d4c0c0 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe7d5c804 __tracepoint_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds EXPORT_SYMBOL_GPL vmlinux 0xe7d84e3a edac_pci_del_device EXPORT_SYMBOL_GPL vmlinux 0xe7dcb0ef led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe7e5198a cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xe7e265f8 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7e82788 crypto_stats_ahash_update EXPORT_SYMBOL_GPL vmlinux 0xe7eb643d fbcon_modechange_possible -EXPORT_SYMBOL_GPL vmlinux 0xe80aa430 devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe8186529 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xe7edae26 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xe80e8036 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xe8153422 cpufreq_freq_transition_begin EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt EXPORT_SYMBOL_GPL vmlinux 0xe8199ff8 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xe821aa4a tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0xe83570dc ehci_resume EXPORT_SYMBOL_GPL vmlinux 0xe83b8147 serdev_device_set_baudrate EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation -EXPORT_SYMBOL_GPL vmlinux 0xe84c7931 regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe8574c99 gpiod_set_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start EXPORT_SYMBOL_GPL vmlinux 0xe86aee21 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xe86fbd40 sdio_writel EXPORT_SYMBOL_GPL vmlinux 0xe872bcbe xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe87b5c83 lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0xe87fa43e sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xe885e06a __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue EXPORT_SYMBOL_GPL vmlinux 0xe88e27c1 devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe8a87d31 __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8c28c81 gpiod_direction_output EXPORT_SYMBOL_GPL vmlinux 0xe8cb09b2 pwm_lpss_probe -EXPORT_SYMBOL_GPL vmlinux 0xe8d62bcf fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xe8cb21fb devlink_region_create EXPORT_SYMBOL_GPL vmlinux 0xe8d83ffb pci_probe_reset_slot EXPORT_SYMBOL_GPL vmlinux 0xe8e235c8 arch_static_call_transform -EXPORT_SYMBOL_GPL vmlinux 0xe8ee5554 lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0xe8f3020f blk_crypto_evict_key EXPORT_SYMBOL_GPL vmlinux 0xe8f5b29a serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0xe90c2e77 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xe9111fe2 wbc_attach_and_unlock_inode EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe9145162 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe918f428 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0xe92ee673 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xe931e842 __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0xe9397b9d devfreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free EXPORT_SYMBOL_GPL vmlinux 0xe9498602 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xe982b0ff skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0xe994f913 regmap_mmio_attach_clk EXPORT_SYMBOL_GPL vmlinux 0xe9a025e2 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xe9b5504d gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xe9b03f2b blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0xe9bffb88 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0xe9c53026 __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0xe9cc1f66 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xe9cbd9b1 tcp_sendpage_locked EXPORT_SYMBOL_GPL vmlinux 0xe9ccd81f iommu_sva_find EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9f0a6f7 wait_for_stable_page EXPORT_SYMBOL_GPL vmlinux 0xe9fadf16 __SCT__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xe9fc0939 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xe9ff6356 devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea17fea6 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xea187c37 regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0xea2291c1 clk_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0xea311d32 iommu_sva_unbind_gpasid EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free EXPORT_SYMBOL_GPL vmlinux 0xea3fc421 thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0xea413e3e dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xea48bd8d wait_on_page_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0xea4fd3e3 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xea40a9dc acpi_spi_count_resources EXPORT_SYMBOL_GPL vmlinux 0xea50063d regulator_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0xea545d52 uart_console_write EXPORT_SYMBOL_GPL vmlinux 0xea5aa60d pci_reset_function EXPORT_SYMBOL_GPL vmlinux 0xea602575 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xea755369 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0xea9da341 add_swap_extent EXPORT_SYMBOL_GPL vmlinux 0xeaa4e71c sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xeabd61f7 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xeaa643e8 gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0xeabdb578 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xeabec597 mmc_send_tuning 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 0xeadc5d7f bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeaf06989 platform_device_del EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xeb096cde regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xeb0acd8a dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xeb1eefb4 devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xeb283792 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xeb378e1b i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0xeb3cab49 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xeb46b0fd __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xeb401cc3 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xeb75eb67 netdev_is_rx_handler_busy EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices EXPORT_SYMBOL_GPL vmlinux 0xeb94536f x86_platform -EXPORT_SYMBOL_GPL vmlinux 0xeba6c717 dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xebb3e5ca pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0xebb76908 md_stop EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0xebcd1bbe __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xebcb5bd7 gpiochip_relres_irq EXPORT_SYMBOL_GPL vmlinux 0xebd386cb pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebdb2453 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0xebe2d2bb ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xebe3621d ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0xebe3fa5e clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xec071646 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xebeacf2b udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xebec7525 icc_nodes_remove EXPORT_SYMBOL_GPL vmlinux 0xec0f451a xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xec32372d ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xec32f55e ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xec34b04a udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0xec355ea1 param_ops_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec5eff29 scsi_flush_work EXPORT_SYMBOL_GPL vmlinux 0xec64f3af virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xec6b77ff fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0xec6e23b9 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0xec7221c7 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xec774071 inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify EXPORT_SYMBOL_GPL vmlinux 0xec7826e0 auxiliary_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state EXPORT_SYMBOL_GPL vmlinux 0xec9bbf65 xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0xec9db7de trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0xec9f4377 bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0xeca88fbb serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xecaffc94 spi_slave_abort EXPORT_SYMBOL_GPL vmlinux 0xecb2defd noop_direct_IO EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map EXPORT_SYMBOL_GPL vmlinux 0xeccc3bdf ata_pci_sff_init_one EXPORT_SYMBOL_GPL vmlinux 0xecd00eca pci_set_cacheline_size EXPORT_SYMBOL_GPL vmlinux 0xecd53573 simple_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xece12d82 crypto_create_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xecf54114 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xecfaac1e __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xecdda16c regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xecea9572 pm_wakeup_ws_event EXPORT_SYMBOL_GPL vmlinux 0xecfcd610 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xecfe8359 platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0xed060206 devm_phy_destroy EXPORT_SYMBOL_GPL vmlinux 0xed1c032e is_software_node -EXPORT_SYMBOL_GPL vmlinux 0xed2226fa devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xed3691bd xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xed2f3c57 ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID EXPORT_SYMBOL_GPL vmlinux 0xed39de97 tty_ldisc_ref_wait EXPORT_SYMBOL_GPL vmlinux 0xed3b0bf2 devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xed42ff68 i2c_new_scanned_device EXPORT_SYMBOL_GPL vmlinux 0xed5821f3 fsverity_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0xed68fdfe dev_pm_genpd_resume EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xed7cd928 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0xed8929c4 ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0xed90b922 gnttab_unmap_refs EXPORT_SYMBOL_GPL vmlinux 0xeda1916c blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0xedad7588 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xedb3d22d usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xeda46891 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xedb39aef iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0xedb98159 __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xedc3ce33 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xedcc6037 devlink_params_publish EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier EXPORT_SYMBOL_GPL vmlinux 0xedd7e98f dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0xede241b3 ata_pio_need_iordy EXPORT_SYMBOL_GPL vmlinux 0xede98ec5 intel_pt_validate_hw_cap EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup EXPORT_SYMBOL_GPL vmlinux 0xedf20567 fuse_dax_cancel_work @@ -25730,238 +25757,228 @@ EXPORT_SYMBOL_GPL vmlinux 0xedf37ba4 ata_sff_qc_fill_rtf EXPORT_SYMBOL_GPL vmlinux 0xedf4a318 usb_enable_intel_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0xedf6898c pci_epf_destroy EXPORT_SYMBOL_GPL vmlinux 0xedff3df8 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xee0cf6e3 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xee0fb721 inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 -EXPORT_SYMBOL_GPL vmlinux 0xee1f47e0 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xee2837a5 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee29cfde regulator_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0xee3762e8 __blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0xee3bb556 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xee3d9d38 crypto_unregister_scomp EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer EXPORT_SYMBOL_GPL vmlinux 0xee601f9d blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0xee6a6773 fib4_rule_default 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 0xee87f71f __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0xee82e4c4 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xee84df89 __tracepoint_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0xee887495 __fscrypt_prepare_link EXPORT_SYMBOL_GPL vmlinux 0xee8907d5 irq_find_matching_fwspec EXPORT_SYMBOL_GPL vmlinux 0xee8bef69 usb_acpi_port_lpm_incapable EXPORT_SYMBOL_GPL vmlinux 0xee8c3010 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0xee9f7eb8 inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0xeea26ba6 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xeea69e82 __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0xeeab8650 smca_get_long_name EXPORT_SYMBOL_GPL vmlinux 0xeeacf31d nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xeec1006f desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0xeec1096b usb_interrupt_msg EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xeed52dc8 unregister_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xeed61bac mbox_chan_received_data EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent -EXPORT_SYMBOL_GPL vmlinux 0xeee9fc3f sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xeef2fdfb tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xeefa19e1 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0xef09613c security_inode_create EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request EXPORT_SYMBOL_GPL vmlinux 0xef28ca27 handle_untracked_irq EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef33ef8f sfp_register_socket EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xef3cb0f0 ata_link_next EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata EXPORT_SYMBOL_GPL vmlinux 0xef5e044e irq_gc_set_wake -EXPORT_SYMBOL_GPL vmlinux 0xef60ec46 devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef6fbe8c edac_mc_add_mc_with_groups EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance EXPORT_SYMBOL_GPL vmlinux 0xef744bb5 sbitmap_queue_clear EXPORT_SYMBOL_GPL vmlinux 0xef8fc95f kvm_async_pf_task_wait_schedule -EXPORT_SYMBOL_GPL vmlinux 0xef92b877 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa38a2b dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xefc20b29 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xefc62a5b gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xefd69c84 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xefdf8dc7 rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xf0143850 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0xf0146bb7 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf01b0b4f wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xeffa09ba find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xf006f88b register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xf0320e79 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xf0369b32 crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf04bcd85 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xf0551241 regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf067a134 fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf06ede78 spi_add_device EXPORT_SYMBOL_GPL vmlinux 0xf070b427 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf073e7c0 ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0xf0850cc0 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xf0869c9d device_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf099b378 __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xf0a0c69d init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xf0a20a74 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf0a2464b platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0xf0a41aa8 icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0xf0b49563 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xf0c4abfb crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0xf0cb3eb7 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xf0ba7534 thermal_cooling_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xf0cc3c22 __bio_crypt_clone EXPORT_SYMBOL_GPL vmlinux 0xf0ce5fed sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xf0d3d31e __pm_relax EXPORT_SYMBOL_GPL vmlinux 0xf0d478c7 list_lru_add EXPORT_SYMBOL_GPL vmlinux 0xf0d74316 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0xf0e47f8e apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xf0fc0f4f __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xf0d8ec76 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xf11b36fa crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0xf11bce9f led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xf1369964 gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0xf13995cc simple_attr_open EXPORT_SYMBOL_GPL vmlinux 0xf13cf905 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xf147789f regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf1549118 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf166eee4 fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0xf16b7894 vfio_group_get_external_user_from_dev EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xf194a605 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0xf1985365 device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0xf1985d8b alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0xf1a1c0e0 __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xf19904d6 devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0xf1ca3983 regulator_bulk_set_supply_names EXPORT_SYMBOL_GPL vmlinux 0xf1cd8929 kvm_read_and_reset_apf_flags EXPORT_SYMBOL_GPL vmlinux 0xf1ce3207 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1daee7d fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0xf1e1630f usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xf1effff1 gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xf1f1eb72 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf2121dce gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xf2133d3c device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf21067fc security_path_symlink EXPORT_SYMBOL_GPL vmlinux 0xf214de51 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xf2168a9e platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xf21b4e12 rdev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf2217237 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0xf22ad56f fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xf237124a dax_iomap_fault EXPORT_SYMBOL_GPL vmlinux 0xf24b1b25 __regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0xf2543939 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xf257f7a9 fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0xf25b055f unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xf25a173f sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0xf26786cc ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf281e661 i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on EXPORT_SYMBOL_GPL vmlinux 0xf2985455 devm_serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2c24e74 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf2b9054b tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0xf2c53d53 pci_write_msi_msg EXPORT_SYMBOL_GPL vmlinux 0xf2c8eb56 rio_request_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0xf2c93717 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xf2cd2fa8 pwm_adjust_config EXPORT_SYMBOL_GPL vmlinux 0xf2e017a4 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0xf2e2863f sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xf2e72bac xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf2e7f15f device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xf2ee0450 gpiochip_irq_map EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf304075f xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0xf304f7f1 tpm2_flush_context EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30ec8af __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read EXPORT_SYMBOL_GPL vmlinux 0xf317f21f pinctrl_unregister EXPORT_SYMBOL_GPL vmlinux 0xf3189f7e __uv_cpu_info EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf31b4ed6 iptunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0xf32a7fa7 wm831x_reg_write EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 EXPORT_SYMBOL_GPL vmlinux 0xf342f13c acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xf34ea0f0 sched_trace_rq_nr_running -EXPORT_SYMBOL_GPL vmlinux 0xf34f684e ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xf34bcac2 devlink_params_unpublish EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xf35b31f7 serial8250_update_uartclk EXPORT_SYMBOL_GPL vmlinux 0xf36a71cf register_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf395b82c kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xf386d987 __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0xf39aee75 perf_msr_probe -EXPORT_SYMBOL_GPL vmlinux 0xf3a9de1a inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xf3a5d0e4 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xf3ab5b81 regulator_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove EXPORT_SYMBOL_GPL vmlinux 0xf3bc3aeb anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xf3c302e3 wm8350_reg_lock EXPORT_SYMBOL_GPL vmlinux 0xf3df776d tpm_is_tpm2 EXPORT_SYMBOL_GPL vmlinux 0xf3e1b115 acpi_dev_get_memory_resources +EXPORT_SYMBOL_GPL vmlinux 0xf3e6f825 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xf3e8fbce crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xf404ce3e __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xf410aa56 crypto_stats_ahash_final EXPORT_SYMBOL_GPL vmlinux 0xf412c23a __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xf42e66ad intel_pinctrl_get_soc_data -EXPORT_SYMBOL_GPL vmlinux 0xf4390241 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xf439757c devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0xf43d5bd0 __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0xf4426317 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0xf447e69a spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0xf4433b67 xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xf45296e7 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0xf459743c devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xf45963f3 device_del EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf469900e __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xf46de2f4 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xf4707cf4 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf4744a3a bio_start_io_acct EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf496cdd4 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xf49af4b2 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xf4a0e90c x86_vector_domain EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4c1ff62 scsi_mode_select EXPORT_SYMBOL_GPL vmlinux 0xf4cb50a3 debugfs_read_file_bool EXPORT_SYMBOL_GPL vmlinux 0xf4cd8f03 led_trigger_set EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release EXPORT_SYMBOL_GPL vmlinux 0xf4d28262 bsg_job_put EXPORT_SYMBOL_GPL vmlinux 0xf4dd89bf uv_get_hubless_system EXPORT_SYMBOL_GPL vmlinux 0xf4e35e28 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0xf4f4662e device_add EXPORT_SYMBOL_GPL vmlinux 0xf4f69d1f clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0xf4fd1179 phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0xf5178669 crypto_stats_init EXPORT_SYMBOL_GPL vmlinux 0xf520fcba rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xf5225e91 spi_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0xf52ad4f4 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xf5364292 __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0xf5366bc9 devm_usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0xf538e187 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xf539e414 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xf5455086 wakeup_source_remove EXPORT_SYMBOL_GPL vmlinux 0xf548988d put_iova_domain EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf54fa1cf crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf5555f7f ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0xf55c1d60 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xf56b4406 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xf5812363 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xf56e6242 gpiochip_irq_unmap EXPORT_SYMBOL_GPL vmlinux 0xf5966658 pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0xf5a31df6 device_attach EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5aa6a9e blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xf5e4722e bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0xf5e68147 skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0xf5f0b625 ata_sff_port_ops EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf60de21d __SCK__tp_func_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0xf61d1979 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0xf62500f0 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0xf634da2a perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0xf63dde74 crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf68f4f0d __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xf666fa48 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf6875c6f sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xf68df107 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xf6907580 platform_get_irq EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6a41471 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xf6acafb6 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xf6be4f91 ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0xf6c189fc page_mkclean EXPORT_SYMBOL_GPL vmlinux 0xf6c58867 spi_mem_get_name EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c7bab1 crypto_stats_kpp_compute_shared_secret EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable EXPORT_SYMBOL_GPL vmlinux 0xf6d022d0 irq_setup_alt_chip EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e7f5a0 __tracepoint_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge EXPORT_SYMBOL_GPL vmlinux 0xf7079ceb rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0xf70d589c sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xf7122fe6 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xf71409f4 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xf70e3b61 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xf7148169 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0xf716a5d6 regmap_write_async EXPORT_SYMBOL_GPL vmlinux 0xf7280ad1 serial8250_clear_and_reinit_fifos EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf73c640a ata_dummy_port_ops EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user EXPORT_SYMBOL_GPL vmlinux 0xf7496f69 __devm_regmap_init_i2c EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0xf74a3399 thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xf7540d46 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xf759e970 dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0xf75afeea __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xf75d3ff8 lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data EXPORT_SYMBOL_GPL vmlinux 0xf76fff26 ata_sff_check_status 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 0xf78f271c __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7b2e176 perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0xf7b349f1 devm_regulator_put EXPORT_SYMBOL_GPL vmlinux 0xf7bc739d fuse_send_init EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start @@ -25970,50 +25987,52 @@ EXPORT_SYMBOL_GPL vmlinux 0xf7bf03c7 fuse_conn_init EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xf7ce5362 tty_perform_flush EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xf7db0366 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xf7fe3969 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xf7e537df ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xf7e5e181 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf7e82e3a sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf7fe347d ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xf8014e43 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xf815c7db gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xf819c6dd da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu EXPORT_SYMBOL_GPL vmlinux 0xf82f42a3 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xf83b313d crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0xf839fffd gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0xf83bc770 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0xf8483e0a mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0xf852a526 iommu_get_domain_for_dev EXPORT_SYMBOL_GPL vmlinux 0xf85d3f7b devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xf8608e9e crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0xf8663753 regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xf86861bd of_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xf870f53f show_class_attr_string EXPORT_SYMBOL_GPL vmlinux 0xf873d4dc fpu_copy_uabi_to_guest_fpstate -EXPORT_SYMBOL_GPL vmlinux 0xf87d9cd9 __raw_v4_lookup EXPORT_SYMBOL_GPL vmlinux 0xf87f413e led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0xf87fe496 serial8250_do_set_divisor EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt -EXPORT_SYMBOL_GPL vmlinux 0xf885fbc4 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xf883b08e skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xf89be6c6 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf8a11224 devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xf8b8e418 thermal_zone_device_update EXPORT_SYMBOL_GPL vmlinux 0xf8d45f21 sysfs_remove_groups EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8f46986 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xf8f7ff5f __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xf8fb793e ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr -EXPORT_SYMBOL_GPL vmlinux 0xf911bd56 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xf9054821 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xf90be91d sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0xf939f121 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xf93e53d4 ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0xf9416a26 vfio_pci_core_err_handlers EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf9645b50 shmem_file_setup EXPORT_SYMBOL_GPL vmlinux 0xf968d4ce mddev_unlock EXPORT_SYMBOL_GPL vmlinux 0xf9721188 blkcg_root_css EXPORT_SYMBOL_GPL vmlinux 0xf9732064 led_init_default_state_get EXPORT_SYMBOL_GPL vmlinux 0xf97a7195 rio_attach_device EXPORT_SYMBOL_GPL vmlinux 0xf985e65e dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0xf990169f get_net_ns EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b001c2 devm_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free EXPORT_SYMBOL_GPL vmlinux 0xf9b35d06 gnttab_free_pages EXPORT_SYMBOL_GPL vmlinux 0xf9c29e9a mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0xf9c73ee7 __tracepoint_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xf9c874dd dma_buf_vunmap EXPORT_SYMBOL_GPL vmlinux 0xf9e52898 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0xf9e69d68 crypto_register_shashes EXPORT_SYMBOL_GPL vmlinux 0xfa01f6cd watchdog_notify_pretimeout EXPORT_SYMBOL_GPL vmlinux 0xfa0926d2 dma_buf_pin EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops @@ -26022,147 +26041,145 @@ EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched EXPORT_SYMBOL_GPL vmlinux 0xfa3bbccd dma_buf_get EXPORT_SYMBOL_GPL vmlinux 0xfa3e1b20 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xfa3ff89d ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0xfa4c4f23 nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0xfa50e1d2 gnttab_pages_set_private EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa6bd11d net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0xfa760101 usb_reset_device EXPORT_SYMBOL_GPL vmlinux 0xfa7f90e0 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xfa8569a0 udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0xfa953250 __auxiliary_driver_register EXPORT_SYMBOL_GPL vmlinux 0xfaa5cec7 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfaa91fc5 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xfaaafaae devm_clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab38889 crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfad7d9ad tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax EXPORT_SYMBOL_GPL vmlinux 0xfada8d2c edac_device_handle_ue_count EXPORT_SYMBOL_GPL vmlinux 0xfaf13bf6 irq_domain_pop_irq EXPORT_SYMBOL_GPL vmlinux 0xfaff25e4 blk_mq_freeze_queue EXPORT_SYMBOL_GPL vmlinux 0xfb0d0246 devres_for_each_res EXPORT_SYMBOL_GPL vmlinux 0xfb0d7dad pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xfb18e6aa events_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xfb1e3aca platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync EXPORT_SYMBOL_GPL vmlinux 0xfb4477fc ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xfb45bd89 clk_mux_determine_rate_flags EXPORT_SYMBOL_GPL vmlinux 0xfb622ced ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0xfb63815f tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0xfb6c0923 skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name EXPORT_SYMBOL_GPL vmlinux 0xfb7196d2 badblocks_exit EXPORT_SYMBOL_GPL vmlinux 0xfb7e6899 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xfb846278 device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action EXPORT_SYMBOL_GPL vmlinux 0xfbc4c004 extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xfbc781b5 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xfbdaa6f1 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xfbda2c9a ata_sas_port_destroy EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xfbf389bb xdp_do_redirect 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 0xfc084a85 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xfc0a6ba1 of_icc_get EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t 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 0xfc307e69 security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power EXPORT_SYMBOL_GPL vmlinux 0xfc6ead11 auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0xfc6ff826 devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xfc84262d devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0xfc84bbe4 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xfc9e70bc sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xfca77eeb regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfc73623d platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xfc82d5de wakeup_source_create EXPORT_SYMBOL_GPL vmlinux 0xfcabbe53 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xfcb30b11 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xfcb78b6a __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcc2c30b __tracepoint_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xfcca5424 register_kprobe EXPORT_SYMBOL_GPL vmlinux 0xfccf8ed4 rio_map_inb_region EXPORT_SYMBOL_GPL vmlinux 0xfcf29c45 dma_resv_test_signaled EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd000a78 gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0xfd06c907 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xfd0df254 ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0xfd16e34a tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0xfd2a0133 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0xfd3e3b71 fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0xfd45feeb pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0xfd585622 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xfd46eb0b __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xfd528b49 __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable EXPORT_SYMBOL_GPL vmlinux 0xfd7ba1a2 __rio_local_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0xfd85cce2 phy_get +EXPORT_SYMBOL_GPL vmlinux 0xfd94cca3 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xfdaf9fb4 __tracepoint_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0xfdafa886 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xfdb1a813 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xfdb34841 __ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdc1ff04 sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0xfdc4e7aa vfio_pci_core_ioctl EXPORT_SYMBOL_GPL vmlinux 0xfdc5fc27 nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0xfdd515de __tracepoint_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0xfde4a450 tty_kopen_exclusive EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfdef5d4c page_endio EXPORT_SYMBOL_GPL vmlinux 0xfe07af5b i2c_acpi_find_bus_speed EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe1a418b ata_host_put EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release EXPORT_SYMBOL_GPL vmlinux 0xfe29267b vp_modern_set_queue_size EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfe3cf0c1 regmap_write EXPORT_SYMBOL_GPL vmlinux 0xfe3e7ed7 rio_route_add_entry EXPORT_SYMBOL_GPL vmlinux 0xfe446b42 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xfe45db19 spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns EXPORT_SYMBOL_GPL vmlinux 0xfe591cc1 pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0xfe5aad0c divider_ro_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xfe67563c pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfe6867c5 switchdev_handle_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine EXPORT_SYMBOL_GPL vmlinux 0xfe73555b blockdev_superblock EXPORT_SYMBOL_GPL vmlinux 0xfe7ed0ad sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xfe856df4 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xfe8355bf ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfe9f842f __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xfe9eb075 devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0xfea99de1 acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xfeb4f17a cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0xfeb8b528 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xfec00acf fib6_check_nexthop EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup EXPORT_SYMBOL_GPL vmlinux 0xfec97189 ehci_suspend EXPORT_SYMBOL_GPL vmlinux 0xfeca2e5e devm_regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister EXPORT_SYMBOL_GPL vmlinux 0xfed561ff divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfeda1a57 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xfee9e0c6 xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xfef6254c fwnode_property_get_reference_args EXPORT_SYMBOL_GPL vmlinux 0xfefc7df9 vchan_dma_desc_free_list EXPORT_SYMBOL_GPL vmlinux 0xfefec6ff tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xff03dd2e crypto_ahash_final EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt EXPORT_SYMBOL_GPL vmlinux 0xff099ca4 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xff0aebc0 crypto_alloc_skcipher EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert -EXPORT_SYMBOL_GPL vmlinux 0xff190a61 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xff1b0835 unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0xff235bb8 __tracepoint_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff31bf2f alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0xff35699e acpi_initialize_hp_context EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff603980 icc_nodes_remove EXPORT_SYMBOL_GPL vmlinux 0xff646078 pci_user_write_config_dword EXPORT_SYMBOL_GPL vmlinux 0xff69815f power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0xff71ed32 fwnode_get_name 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 0xff95282d cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xff972342 regmap_fields_read EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies EXPORT_SYMBOL_GPL vmlinux 0xffaf68d8 dm_set_target_max_io_len EXPORT_SYMBOL_GPL vmlinux 0xffb7f368 pm_generic_suspend EXPORT_SYMBOL_GPL vmlinux 0xffd8a255 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xffe5c1a1 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xfff1ed83 device_wakeup_disable EXPORT_SYMBOL_GPL vmlinux 0xfff3914e pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0xfffecd0b __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xfff3a66c cpufreq_freq_transition_end FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -IDXD EXPORT_SYMBOL_GPL 0x339f4a38 idxd_user_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0x368ed66c idxd_driver_unregister drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0x60f99717 dsa_bus_type drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0x80265b53 __idxd_driver_register drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0x9d66e6e5 idxd_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0xa1970286 idxd_dmaengine_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x04847865 idxd_user_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x0a4d9cc0 dsa_bus_type drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x8530957b idxd_dmaengine_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x869d35a8 idxd_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xe473402a idxd_driver_unregister drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xfcca650b __idxd_driver_register drivers/dma/idxd/idxd_bus IIO_ADISLIB EXPORT_SYMBOL 0x29cd03ea __adis_enable_irq drivers/iio/imu/adis_lib IIO_ADISLIB EXPORT_SYMBOL 0xb8ea344b adis_debugfs_reg_access drivers/iio/imu/adis_lib IIO_ADISLIB EXPORT_SYMBOL_GPL 0x31f08dd4 __adis_read_reg drivers/iio/imu/adis_lib @@ -26176,47 +26193,47 @@ IIO_ADISLIB EXPORT_SYMBOL_GPL 0xdf97f270 adis_update_scan_mode drivers/iio/imu/a IIO_ADISLIB EXPORT_SYMBOL_GPL 0xfc2a24db adis_single_conversion drivers/iio/imu/adis_lib IIO_ADISLIB EXPORT_SYMBOL_GPL 0xfef864b3 adis_init drivers/iio/imu/adis_lib IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0xd8dc96fa __adis_reset drivers/iio/imu/adis_lib -IIO_HID EXPORT_SYMBOL 0x01fe32f8 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x16ed1f99 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x221e042a hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x40620e0b hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x5771baaf hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x613719ea hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x0e9fd71e hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x19327652 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x1df11776 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x341c2ac1 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x35f5c827 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x6297b112 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x761c9c71 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 0x7ff4d09a hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x9c386f16 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xc1ca81b8 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9ade3f1d hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common IIO_HID EXPORT_SYMBOL 0xc3c80187 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xcba91e3a hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xd88e4859 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x03ddf2ce hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x161eb255 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xe728eab8 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf9d58307 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe0d35ff2 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe560488b hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xfe8e6a02 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x2cd52024 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x4683fd6e hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xa525cd7a hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xfeec4b37 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common INT340X_THERMAL EXPORT_SYMBOL_GPL 0x00077cfc processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox INT340X_THERMAL EXPORT_SYMBOL_GPL 0x6e357391 processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox LTC2497 EXPORT_SYMBOL 0x31242547 ltc2497core_probe drivers/iio/adc/ltc2497-core LTC2497 EXPORT_SYMBOL 0x68cf09b8 ltc2497core_remove drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x057580c0 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x1f623dba mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x26936c19 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x3e9b7473 mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x42fd78f0 mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x4dbd19b4 mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x68dd5b46 chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x7b0ef882 mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x911c3df6 mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9ad7318b mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xa33b9c51 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xb584ccbe mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd35ac5e2 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2fb54e13 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x368c0add mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x38ec6438 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x495af4cf chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4b43a214 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4ca071d3 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7854d99f __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9a0d6794 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9ae9df9c mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9fcd6c81 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb91e951e mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xcf3842ec mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd5887125 mcb_bus_add_devices drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xf9c5cf74 mcb_alloc_bus drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x4eeff318 nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x53e4cc43 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x582dc82d nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xce074d2e nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xe30057c9 nvme_ctrl_from_file drivers/nvme/host/nvme-core +MCB EXPORT_SYMBOL_GPL 0xf42c448e mcb_bus_put drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x833bdd39 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc4659fa6 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xe968260c nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xf2aadc27 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xf6e9e957 nvme_put_ns drivers/nvme/host/nvme-core PMBUS EXPORT_SYMBOL_GPL 0x0326bc38 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core PMBUS EXPORT_SYMBOL_GPL 0x06916404 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core PMBUS EXPORT_SYMBOL_GPL 0x2342c807 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core @@ -26239,87 +26256,87 @@ PMBUS EXPORT_SYMBOL_GPL 0xde05831d pmbus_read_word_data drivers/hwmon/pmbus/pmbu SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x46df7573 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x5f277d4e cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi -SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0x67c25111 hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x042b72aa max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x2c6d4429 max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x4217da40 max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0xfb74cb87 hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x00736fe1 max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x55d73de1 max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x575beae4 max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x9dfeac73 max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xa1babcff max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xb16aa74f max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xb4ff73ad max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xdd57aa94 max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x11b2ad50 sof_acpi_probe sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x3eea2ea3 sof_acpi_remove sound/soc/sof/snd-sof-acpi +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xc46baff0 max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xd66f483e max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x1e63eb14 sof_acpi_remove sound/soc/sof/snd-sof-acpi SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x914a990a sof_acpi_pm sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x3d93b73f hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x8b988c57 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0xfffd97e0 hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x0bc1fa53 hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0xa558d153 hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0xb93908c5 hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x0b9dac68 atom_set_mach_params sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x31a6bec0 atom_run sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x99521bee sof_acpi_probe sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x0830a3d6 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x56b2fd51 hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0xcb90763d hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x2a4df1a8 hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x90a69744 hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0xc2037528 hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x1ff11a91 atom_get_mailbox_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x2005ad55 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 0x3b392b23 atom_dai sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x71986525 atom_get_mailbox_offset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x84ea895a atom_dump sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xd34e5746 atom_reset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xd73336cf atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xe5d80c71 atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xee330fa7 atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x40e2efb2 atom_run sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x48e6cb4b atom_dai sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x49fa2e87 atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x4baf5963 atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x9ac85cb5 atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xb84b4acf atom_reset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xdc040ac5 atom_set_mach_params sound/soc/sof/intel/snd-sof-intel-atom SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xefa4a41a atom_irq_handler sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x096b8c16 jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x0c312199 ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x3a2db1f1 sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x4fe9511f sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x5416b5f2 cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x15dc628a tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x3e1620e4 cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x44646024 sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x579560cd sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x636b1900 jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x63d22f67 adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x6631b48f ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x8ffe50b4 hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x976c9aa3 adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xc10d0f17 icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xca3accf9 sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xd0fc29b6 tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xd9cbcc10 sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xe162d74e tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xfb99db35 apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x1af26f1a intel_ipc_msg_data sound/soc/sof/intel/snd-sof-intel-ipc -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x5cacebe2 intel_ipc_pcm_params sound/soc/sof/intel/snd-sof-intel-ipc -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x5db5e315 intel_pcm_open sound/soc/sof/intel/snd-sof-intel-ipc -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0xf87be4fb intel_pcm_close sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x91994e23 apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xab0d9a01 icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xb4731d2c sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xbafcbca0 tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xc1b7fdc2 sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x23712465 intel_pcm_close sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x8b527692 intel_ipc_msg_data sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0xa9c6e536 intel_pcm_open sound/soc/sof/intel/snd-sof-intel-ipc +SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0xca014547 intel_ipc_pcm_params sound/soc/sof/intel/snd-sof-intel-ipc SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x323d326e sof_pci_probe sound/soc/sof/snd-sof-pci SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x6e246642 sof_pci_shutdown sound/soc/sof/snd-sof-pci SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x9c967850 sof_pci_pm sound/soc/sof/snd-sof-pci SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xf1dd9640 sof_pci_remove sound/soc/sof/snd-sof-pci -SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xae640b47 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x0f044ce4 sdw_intel_probe drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x4eaba1de sdw_intel_startup drivers/soundwire/soundwire-intel +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xb8a4e94f sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x159840e1 sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x55916227 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 0x65001dde sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x80fd8746 sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5c10ef1b sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x799bd006 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread 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 0x0a469c46 usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x0c316cf8 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0e70e1f8 usb_stor_CB_reset drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x0ef7ce3c usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x137cc852 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x13a708be 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 0x2543b7a4 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2758511f usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1dc81ee2 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x29adee25 usb_stor_host_template_init drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x4c1fa363 usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5c03a9f4 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5d63dfe0 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5715ab2f usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x66ce3638 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x673001cd usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7a92e396 usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x830265fa usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7c087dfc usb_stor_control_msg drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x844a4f3f usb_stor_pre_reset drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x87a1d409 usb_stor_resume drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x8867dcaf usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9c1e05cb usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa105fbe8 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa322c0cf usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xab4cd5d1 usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb01b1f72 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb34c03b7 usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdf5e3ffa usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xfaf3a581 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xfb2b3c1e usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8b220bfe usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8cbf18db usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9a580179 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa475ff3b usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc3d98e6e usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xda777aef usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdc219dc4 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdfca701c usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xed58f67d usb_stor_ctrl_transfer drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0xff6f5d56 usb_stor_suspend drivers/usb/storage/usb-storage diff --git a/debian.master/abi/amd64/generic.modules b/debian.master/abi/amd64/generic.modules index 6ab992c3fc6b2..2b3334dc1ffcb 100644 --- a/debian.master/abi/amd64/generic.modules +++ b/debian.master/abi/amd64/generic.modules @@ -1379,6 +1379,7 @@ f75375s f81232 f81534 f81601 +f81604 failover fakelb fam15h_power @@ -1604,6 +1605,7 @@ gpio-kempld gpio-ljca gpio-lp3943 gpio-lp873x +gpio-m058ssan gpio-madera gpio-max3191x gpio-max7300 @@ -4169,6 +4171,7 @@ rtc-pcf2127 rtc-pcf50633 rtc-pcf85063 rtc-pcf8523 +rtc-pcf85263 rtc-pcf85363 rtc-pcf8563 rtc-pcf8583 diff --git a/debian.master/abi/arm64/generic b/debian.master/abi/arm64/generic index 0fb234b17b385..d124bc101e7e9 100644 --- a/debian.master/abi/arm64/generic +++ b/debian.master/abi/arm64/generic @@ -1,6 +1,6 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x1343d6a4 crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xbac4c4a4 crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xe312b547 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x2fb60b95 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x7cff124d crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x9e9d1dd2 crypto_cipher_encrypt_one vmlinux CXL EXPORT_SYMBOL_GPL 0x141e6ba9 cxl_map_device_regs drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x205ec2ee cxl_driver_unregister drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x21a0d686 to_cxl_nvdimm drivers/cxl/core/cxl_core @@ -51,30 +51,30 @@ EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey 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 0x0ca8de5f crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x1727ed11 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0x5365cc0c crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0x7dc3cf7b crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x7f2b6d0b crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0xf5861bd4 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/sha3_generic 0x4d3a8744 crypto_sha3_update -EXPORT_SYMBOL crypto/sha3_generic 0x82bae8ae crypto_sha3_init -EXPORT_SYMBOL crypto/sha3_generic 0xb58909fe crypto_sha3_final -EXPORT_SYMBOL crypto/sm2_generic 0x75dc117f sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0x3ba5151c crypto_sm3_final -EXPORT_SYMBOL crypto/sm3_generic 0x90305849 crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0xa5d7de11 crypto_sm3_finup +EXPORT_SYMBOL crypto/nhpoly1305 0x4c82f57d crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x4f859f3a crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x6b1687e3 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x9dc84d35 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xfaa7ff87 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xffabe075 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/sha3_generic 0x5c7c1de2 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x61873b24 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xaad3b896 crypto_sha3_init +EXPORT_SYMBOL crypto/sm2_generic 0x1806394a sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x04010f64 crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0x2e4ac29c crypto_sm3_final +EXPORT_SYMBOL crypto/sm3_generic 0xe6cb26af 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 0x414b20d4 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x54065e86 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0x6455d4e7 bcma_core_dma_translation +EXPORT_SYMBOL drivers/atm/suni 0xf2e669eb suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x11ae5e83 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x57eb5fc3 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 0x3fe5eb22 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x5fa172a7 rsi_bt_ops +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x22b44532 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x96210963 rsi_bt_ops EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0xd22612b5 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 @@ -125,19 +125,19 @@ 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 0xf283e995 atmel_i2c_init_random_cmd EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/crypto/caam/caam 0x0711afcc caam_drv_ctx_init EXPORT_SYMBOL drivers/crypto/caam/caam 0x17572340 caam_congested -EXPORT_SYMBOL drivers/crypto/caam/caam 0x2c07ea5b caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam 0x337005ae caam_qi_enqueue EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 +EXPORT_SYMBOL drivers/crypto/caam/caam 0x429cef1b caam_drv_ctx_rel EXPORT_SYMBOL drivers/crypto/caam/caam 0x44ae4bc4 qi_cache_free -EXPORT_SYMBOL drivers/crypto/caam/caam 0xb1932cf8 caam_drv_ctx_init -EXPORT_SYMBOL drivers/crypto/caam/caam 0xbc68b932 caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0x6bcaa7e5 caam_drv_ctx_update EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam 0xf47cbf36 caam_drv_ctx_rel -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x11f8ef07 gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x2b823508 split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x555a4177 caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x8ec6b6e4 caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa256032e caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x1b8b9891 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x41058dc9 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x5439c9ce caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xb680766b caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xbd20290f 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,9 +156,9 @@ EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfd807e48 cnstr_shdsc_rfc4106_d 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 0xc2a5a4d4 dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0x569ee795 dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/error 0x16a9369c caam_strstatus EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz -EXPORT_SYMBOL drivers/crypto/caam/error 0x9e24125e 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 @@ -1033,30 +1033,30 @@ EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcb41d792 drm_gem_vram_fill_crea EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd964fd36 drm_gem_vram_vunmap EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf773110d drm_gem_vram_offset EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x8a690499 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0c2e9779 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2055206e drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2b651305 drm_sched_resubmit_jobs EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2c497980 drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3851ae22 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3c7a86ca drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3e84925a drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x43d2189f drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x301281e9 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x31349371 drm_sched_fault EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x479715b8 to_drm_sched_fence EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4a474d77 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4ad61fc1 drm_sched_dependency_optimized EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4c1c216e drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x50336c77 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x523be339 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x577fa5ed drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5cb67fdc drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7515e5fa drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4c890e0e drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x50bfdf19 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x56a01c48 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x69699c05 drm_sched_resubmit_jobs_ext EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7cb51408 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x92998586 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x88b6bdb5 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9633de70 drm_sched_reset_karma EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9673c1bf drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9e4327d0 drm_sched_reset_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa1cbc000 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa773a94a drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbbbfbc34 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb5dddd2b drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbb809ac8 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbc4ee173 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc882ed16 drm_sched_pick_best EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf3808f13 drm_sched_entity_destroy EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf4e8cec4 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfb76e076 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfbcf610f drm_sched_resubmit_jobs_ext EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x46012524 sun4i_frontend_init EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x60eb8692 sun4i_frontend_update_formats EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x8a4a344d sun4i_frontend_update_coord @@ -1169,13 +1169,13 @@ EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc7ed0eb6 __host1x_client_register EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc8d8b3ea host1x_client_resume EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xce79a73d host1x_syncpt_put EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcf5ef0df host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe18eeda5 host1x_get_dma_mask EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe30c66ec host1x_job_unpin EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe4968595 host1x_syncpt_incr EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe4f14474 tegra_mipi_request EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xeae41bcf host1x_job_put EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xec5204fd host1x_syncpt_read_max EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xee896d37 host1x_job_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf13388d0 host1x_get_dma_mask EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf309ee60 host1x_client_suspend EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf5fa9697 host1x_syncpt_id EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable @@ -1351,347 +1351,347 @@ EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xc4a2e00b ms5611_probe EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x140d09cf st_press_get_settings EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x21f3cacd st_press_common_remove EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xcb98e4de st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x10eb5fdd ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x13c1b3f1 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1742d387 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x188cf52e ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x28582310 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3a57a843 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5ae5b802 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0ce78f41 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2c954abc ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2e9dd617 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3d83d16b ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3f9b7fe6 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5129d8d8 ib_send_cm_mra EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6a149c90 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x763f7d47 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x799b279c ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x82856540 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x88e74de0 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaa55a7f2 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbf87ffdf ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc0f8baaa ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x008cc449 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00a8a652 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6efe4610 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x74987835 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8f6013b1 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xafa82986 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb1a1d23d ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb5000c7e ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xce249d55 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd65b7379 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xedf3a7db ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x002c83f7 ib_query_srq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0103be27 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01883177 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01d2cce3 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x037a4611 rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x040c131b rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04f3e1e5 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x054c6634 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08d42c9d ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09e2dad9 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a13efa3 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b3c04b3 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b9474c5 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c04cd43 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0187ece7 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0267f5b6 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0496f50a ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06df0788 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0710dd03 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x072f1664 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07d4defd rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09bca68b ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b3c1c1f rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b64c9a9 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bdfc94c rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c5ba128 ib_create_wq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e00134b ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1148e255 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12078f99 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1340f904 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1345ccbf rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x136119e4 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1403b71b ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15cfeb78 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x171d44b4 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1770a81a rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1880501a ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ddc7201 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e6dc005 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e81d661 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d9e1cd1 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e1ed4be rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f0c3c68 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11995d62 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11f2b66c rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12529151 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15f98abe rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16b80899 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18c85db8 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a502250 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b250c3f ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ba8ed81 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d1f38d8 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d7b4e0f rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e230055 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f268225 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20308fa8 rdma_destroy_ah_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28cf4eba ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a787916 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2af15dc6 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bc93fbe ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ce4ee6e ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dce4791 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e3a8aba rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23c38a81 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2471b36c ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24c1c579 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24f429c2 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2554e19f rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2636d233 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x279e01c8 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27b280df ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a8b7c5d ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b077f22 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c1e4dc2 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d178e57 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x300c075b ib_modify_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3076a197 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30ff7508 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31039832 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3187c0b6 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31c5c5b7 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3284f41b rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38d652e3 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39576558 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39f0546f rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b949bd6 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d266d12 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d75eecd rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34036088 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34d05cc3 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x369725f0 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3707cbff ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x378102ff ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37d5810e ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x383b9426 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a59db4b ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ab60f0c rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b68526e ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3df3e29d rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f477c3c ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fb38143 rdma_translate_ip EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4020373c ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x406b6a9e ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40cb0b88 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42998e77 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434a9423 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40f40d17 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4281e7d0 rdma_nl_stat_hwcounter_entry EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x436ab15f ib_free_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44cad4e9 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45a50f67 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45e5c51f ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45f05771 ibnl_put_msg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47224e38 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4884e79d __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x491d14a5 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d723825 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47de53dd ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a5fa922 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b21df90 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4df9344a ib_alloc_xrcd_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e2577cf rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e376f92 rdma_query_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5062c38d rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51d2522c ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52800b11 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52ab5714 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x537bf5de rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f04e062 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x510d2546 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5145f67c ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x517eb5a1 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51a88edb ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52dcd29d rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52f63a93 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54305b09 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55980e9c ib_create_srq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5673fbeb rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x577d4e41 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57b1d1f9 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x587cb54c ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58862358 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58cbcc84 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x561acd5e ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56e90199 ib_create_qp_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bd5931c rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x604b5e53 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60d4d161 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x598f3276 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59d408ec ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e419b78 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e9bf0d4 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f54373e ib_attach_mcast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61b0b909 ib_drain_rq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x627570c8 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6315b416 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x641a6792 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x647c5fb4 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x672e1df8 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x677d9486 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6801b744 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6994dd2d ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62a5c63e ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62fca838 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6376a8a8 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6416d047 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65d634c0 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x660c7b8d ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x670650e9 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x673ed6ad rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6abb74ae ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b94d18c rdma_link_unregister EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c60773e ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e402629 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e4e4d34 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c183b70 rdma_user_mmap_entry_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71d041c9 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7267735d ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6feddf11 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70fbe3ac rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71207796 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7264b901 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72d4251b rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72df3184 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x735b4f54 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x736aae8a ib_drain_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73c75d54 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73d23eb9 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x759a4920 ib_get_rmpp_segment EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x766e5f17 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x785adc59 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76564660 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77d30a13 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x783c5935 __ib_alloc_pd EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79e4af18 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c8f98b9 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e66fc17 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x803de23f rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x808707e4 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x823f9f89 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x829e8045 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x831887a3 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85734144 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85e57174 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x799b0773 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c0841a8 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fbbb7d3 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82cbb68c ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8494f148 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85d75570 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x861e6bab rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8664c5d9 rdma_read_gid_attr_ndev_rcu EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87f27871 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89536602 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89c4df3d ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a532ec2 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a7da64d ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ff16228 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90374e00 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8854fe9b ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88eb01f6 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89e6d985 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a3ee082 ib_unregister_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92f83ec7 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x934252bc rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x949bd75f ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95966846 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95f273ec rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96f4f6ab rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x970f806e ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b1bf6bf ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d0a65b5 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d991bbc ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ef8f192 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fc7e552 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa178e8d4 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa399e116 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3cea3ae ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3f062a6 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91efc882 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92f688dc rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93c73e23 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95724be2 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x967c8a99 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x980e7df2 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b64d14b rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bf005bf ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c086809 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1e536e4 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1f06c3b rdma_umap_priv_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5cd2905 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5dc4d91 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa79d994d rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa953223c ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9e4a7e4 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabe2d8e1 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabf31d4b ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad4e88f5 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae460d56 ibdev_printk EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaee43079 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaef83a98 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2338801 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb273478d ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3180f8b ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb32beca3 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaee0e8d3 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf5b56ef ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0445b11 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0d5fcc4 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2fa0aaa ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb357556f rdma_nl_register EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4624472 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4b5491c rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb58eaab1 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5e86337 rdma_rw_ctx_post EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7f42f6d ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93c69a2 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0842e5b rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc203e938 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc23bc1fb ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc42383c6 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc473a95b ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc477f701 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc537dd77 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5d3dcf4 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5da3bef ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc60acd3d ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc63ddf0b ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc693a074 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6ddccc6 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6ea32ba rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7912edf rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9239310 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcca46ebf ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd71d409 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdec1f45 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbda7081b rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbeb4b2a6 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc72f2596 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc87a9d74 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8f2fdce ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcad6ab6c ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb7455f7 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc00a856 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcce4d2c7 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccfd9584 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce1e9d30 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf734217 rdma_rw_ctx_wrs EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2acd275 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd363889f rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd36569e8 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd546c552 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5f71ab9 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd38495bb ib_create_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8a33989 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6d73de4 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd71decb0 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd76d67ad ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7ffade5 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9c2a169 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda096ef9 ib_find_cached_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdafcddb0 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdda56a48 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde5ff838 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe07e2314 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe205cf8d ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe20a6c97 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3c73d4b rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5142ffb rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdae0f70c __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbac0d8c rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc384034 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde238f70 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde7580f2 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe127b411 __ib_create_cq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a2c273 ib_mr_pool_destroy EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8f562bc ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe947e605 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9cbf03b ib_create_ah_from_wc EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec36fb76 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedd23b35 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee047b5d rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee4541de ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf072f4b2 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0fb352a ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1379c55 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2964e9b ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2af2102 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5d4186a ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea5b9781 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb67083b __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0977417 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0f3b134 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf193ea6c rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf45ea72f ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4762d60 __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5b80ef2 ib_check_mr_status 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 0xf8245599 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf834b3c2 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf93fcb57 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9b193fd ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9f790f1 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa2ae857 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff956a91 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02c91dba uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0462efd4 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0b01ac90 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9b30c02 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb378b14 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb84715d ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc84c8a6 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdff659d ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe73a487 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfec52250 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x01f15bf3 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x068b8882 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0de6d8d7 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x15200b0b _uverbs_get_const_unsigned EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2a752ccb flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2bd038cc ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2e265044 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x37660672 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x398fef00 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4e5fb4c1 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x513f8cb2 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x51a27587 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x555590da ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x580a65cd uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x61d064a5 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x62fb0276 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1e334468 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x243b231c ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2489545e uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3260f6fc ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x359be012 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3fc96861 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x46092f89 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x528629d2 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5ac382e6 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5e800bc2 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x610cebaa ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x619b1c60 ib_umem_get_peer EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6d0e7c61 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x88720ab5 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8d0bc09b ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa225c6d0 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaa575f4a ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xac2ee01a uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb95c4b7d ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbb71237b uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x713b9835 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x760dbe06 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x78a994ae ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fd0db54 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8f9d7632 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x991d3707 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9e8f732a _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa523f0df uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa55e4bd8 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xab47b37f uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaeafbb09 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbcb2f074 ib_umem_odp_unmap_dma_pages EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc02987c5 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc032734e _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc1df203e ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xca853cda ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcc85c54b flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcd3ecd78 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xceeb1fad ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd14a4c8d uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd50d0d2e _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdcabf347 ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe255484f ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xefa9740e ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf8cd7a1b uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x006a8352 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0663b570 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x21a52f96 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x35d0be55 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3a754d21 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x535d8506 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9227e969 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb8fcd46b iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbe14aca1 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcbfd5ce1 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xddd9b814 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdf26a167 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdf5d0e27 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe0d001d7 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf06ae8ae uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf25ede85 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0e27ca05 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2693f02f iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x50291056 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7bb7ee23 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8902c5ea iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9b3007d2 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xce0b58ea iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe3e4ec00 iw_cm_reject EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x06fdf87d rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x10aaef9c __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x12bd4397 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x26415dec rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2c3e2521 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x353fcb7a rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3dde837d rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x55045de8 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x587e3762 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x65ce4c8c rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x67e2cb6e rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6bb5dea6 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f01a844 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x76f15066 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7a382021 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x837e69e6 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x839c3322 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ec30035 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8eee090b rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ff66197 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x07668689 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0995fdcf rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0db76fa4 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0fcd27ce rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x11f33e90 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x122465f3 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f861015 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x246802ad rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2e3c29c2 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x52d1603f rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5a02c1c0 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x62a7d280 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6558111a rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x77907f43 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7b714e21 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7c932503 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x833e8d2d rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8bad0997 rdma_read_gids EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x92752bc5 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa10295c8 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb7bbd4f9 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb825217f rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbaef7910 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbd1c1c04 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc7d89ef3 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xca813996 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd1fcd381 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe1c6a3a4 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe25aa80e rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf3d49101 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfb6fef1f rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfc6a3e10 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0cebb365 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3e8903d0 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4f3cb1a8 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5c83a581 rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8525cc1f rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xbb8d4eb3 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xe35d5727 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x0cb282a3 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9d73e232 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa1ce7288 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa4f96cba rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xabcbd5e1 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xae37709a rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc2c810d7 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc78b376f rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcabea623 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcd9ed000 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd027d8fe rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd85a8e66 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe8fef0d0 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf7779fff rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf95df955 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfc023ac2 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfcbf7f45 rdma_notify +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x21296d75 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x28f850e5 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3d0273ef rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa77a3df7 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb6c9e768 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xe11b6345 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xe408471f rtrs_clt_request EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x45137cb9 rtrs_ib_dev_put EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b01e41d sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x681353f4 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x805ace77 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 0x90d33343 rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe4d50144 rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x0f999e36 rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x474bded6 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb2142398 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc357baf8 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe475577a rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xfeb244c0 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x9c3d9326 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xdd39fb11 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x122f0a6c rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x748e134b rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9eb012d4 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xd20d8686 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xd9b97f29 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xed565646 rtrs_srv_get_path_name EXPORT_SYMBOL drivers/input/gameport/gameport 0x474a5da3 gameport_set_phys EXPORT_SYMBOL drivers/input/gameport/gameport 0x7cd1326a gameport_start_polling EXPORT_SYMBOL drivers/input/gameport/gameport 0x852ba92f gameport_close @@ -1720,8 +1720,8 @@ EXPORT_SYMBOL drivers/input/sparse-keymap 0xd557626e sparse_keymap_entry_from_k EXPORT_SYMBOL drivers/input/sparse-keymap 0xf30be3ef sparse_keymap_entry_from_scancode EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x4dccbc94 ad7879_pm_ops EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x864476e1 ad7879_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x04a06881 qnoc_remove -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x29af10bb qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x5ee13adf qnoc_remove +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xc9b9e629 qnoc_probe EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x11af0538 capi_ctr_ready EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5007483b detach_capi_ctr EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb8390827 capi_ctr_handle_message @@ -1731,48 +1731,48 @@ 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 0x882c6655 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb0120e0d mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd6372bda mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe9efc2ba mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xa295f633 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xdb1822c9 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x3a5b8523 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8f1673bc mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9ab06dde mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd60cb193 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x62f955af mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xa2ca2d6b mISDNisar_irq EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1abf8072 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x20823888 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0dd86597 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x16b2b155 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1a4ab7a9 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 0x3c5f547c mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x405dd386 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5054cc0c mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3712eba6 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3997626a get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4b1acccc mISDN_freedchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50e01a4f queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x55e22b03 mISDN_register_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x59e1c2f3 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5c6e161b mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x603851b0 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5d067933 mISDN_initdchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6e2e7395 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a56aff0 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x965c2ff4 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x760d120a queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8ace6f13 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x99cab372 recv_Dchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa42353d4 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa8ecbe1c bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaa5d4a43 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb6f0a9ac mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb70f3db4 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa96e9dc9 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb1f5184f recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb9f03c27 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbf017a4d mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbf12e69e mISDN_register_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc781e06e mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc8c26ad8 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcd7b15fb mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xce431827 mISDN_ctrl_bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd6f51b73 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd96e4e7b bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdb38e61c recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd83f4538 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdec047fc mISDN_freebchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe9573c01 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xee897dc2 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf27afb14 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf4b615d3 recv_Bchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law @@ -1797,19 +1797,19 @@ EXPORT_SYMBOL drivers/md/dm-snapshot 0x6d3e56f7 dm_snap_origin EXPORT_SYMBOL drivers/md/dm-snapshot 0xa738c48e dm_snap_cow EXPORT_SYMBOL drivers/md/raid456 0x2c780737 raid5_set_cache_size EXPORT_SYMBOL drivers/md/raid456 0x71e68ced r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1a8cc89e flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x36b89df6 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x44f148b3 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x55ce643f flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x63894c2b flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8cf66e62 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa5412b13 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xaaca17e1 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xad35e3bb flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc3cb7288 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe673bb98 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf283336a flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfa7f07f7 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2b37636e flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2c8820d0 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3a721bca flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6b332873 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6f435d76 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x77cb1dc6 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8c91aefb flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x91810465 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa97d290c flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xaaf83283 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc2ee0384 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcc07746f flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdb6238d6 flexcop_pid_feed_control EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu EXPORT_SYMBOL drivers/media/common/cx2341x 0x4d2f1fd1 cx2341x_handler_set_busy @@ -1822,7 +1822,7 @@ 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 0xfbfdfda5 cx2341x_handler_set_50hz EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xa6424d89 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x56b030b8 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x101daaa6 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog EXPORT_SYMBOL drivers/media/common/tveeprom 0x917e6df8 tveeprom_read @@ -1834,12 +1834,12 @@ EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x858abee3 vb2_bu 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 0x07d40e4b vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x2c08ca6a vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5ce2adda vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xb86c822c vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xc6ea94cb vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xd7a41f91 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x05a2f0f7 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x2e9c0645 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x39b1a73d vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x88858ef0 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xb930eff6 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xe5a3dffd 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 0x9792e89d vb2_querybuf @@ -1850,11 +1850,9 @@ EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0aa1f01a dvb_generic_ioctl EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x102d09a6 dvb_unregister_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18ed5b67 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2b315255 dvb_net_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x37bc2c4f dvb_frontend_suspend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x48ae5dfe dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4ebdfc3d dvb_ca_en50221_camchange_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x501c885a dvb_ca_en50221_frda_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init @@ -1864,8 +1862,10 @@ EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x624b8914 dvb_register_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7605d0ba dvb_device_get EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x79d04aa8 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f67a279 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fc44030 dvb_ca_en50221_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82c5daa8 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8354c760 dvb_net_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x850f9154 dvb_generic_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x881cfa41 dvb_frontend_resume EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter @@ -1886,8 +1886,6 @@ EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfa1d1c88 dvb_register_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x7e31fdba ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x243d24f4 atbm8830_attach EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x03073afd au8522_release_state EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x222e1429 au8522_init EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x229c3b2e au8522_i2c_gate_ctrl @@ -1897,23 +1895,9 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7dca98d6 au8522_sleep EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9b53acf7 au8522_analog_i2c_gate_ctrl EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xebd4ed25 au8522_readreg EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xecf0debf au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x8139f393 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x2cd98e1d bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x45e1f985 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xc1bd5682 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x5ef1b3ea cx24110_attach EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x3b51e996 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x81ecec8d cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x3b2262da cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xe2f903a6 cx24120_attach EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x6362f73e cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xa6a95b4b cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xfb9d08d4 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x9af2493d cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xff056e06 cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0xc5a5ad99 cxd2880_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x15d8d424 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6d9d2b2e dib0070_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7adc96be dib0070_set_rf_output EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x930c06cd dib0070_wbd_offset EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9d33908e dib0070_ctrl_agc_filter @@ -1921,7 +1905,6 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x078a79a4 dib0090_pwm_gain_r EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x08e67890 dib0090_set_tune_state EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x12e5fbe1 dib0090_get_wbd_target EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x14776c98 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x294795b9 dib0090_fw_register EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x312e2c86 dib0090_get_tune_state EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x46610786 dib0090_get_current_gain EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5fe2dbf1 dib0090_update_rframp_7090 @@ -1930,21 +1913,15 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8bf3c764 dib0090_update_tun EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa2552f24 dib0090_set_dc_servo EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc6411d11 dib0090_gain_control EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd350b501 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xee9db983 dib0090_register EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf00630f0 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x440afdca dib3000mb_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x10691c07 dib3000mc_get_tuner_i2c_master EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1f5c63b0 dib3000mc_i2c_enumeration EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4fb6d4ac dib3000mc_pid_control EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x819d1c53 dib3000mc_set_config EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9b672b0c dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xbac8450c dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x59c813da dib7000m_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa78e2a6a dib7000m_pid_filter EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd4938380 dib7000m_get_i2c_master EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe3b48807 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xc53c9bc3 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x814fa85e dib8000_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0cf8e55a dib9000_get_i2c_master EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1313cfaf dib9000_get_slave_frontend EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1e12654e dib9000_fw_set_component_bus_speed @@ -1953,7 +1930,6 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x51aabf6b dib9000_set_gpio EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5cecb217 dib9000_get_component_bus_interface EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7151e2a2 dib9000_set_slave_frontend EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9193aa99 dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa459325d dib9000_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb0de7262 dib9000_fw_pid_filter_ctrl EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc7527bf1 dib9000_fw_pid_filter EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc862300c dib9000_set_i2c_adapter @@ -1963,93 +1939,22 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2a77a105 dibx000_ini EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x5b5ae5a0 dibx000_get_i2c_adapter EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x856460c2 dibx000_exit_i2c_master EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xa4cdef0c dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x47c5a27a drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x260b7f52 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x85000ec8 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xa00b62ac ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xde293a29 dvb_pll_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x74120b2c dvb_dummy_fe_qpsk_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xdfdc2f44 dvb_dummy_fe_ofdm_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xf6015b3b dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x4433a168 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x06669786 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x889d55b2 helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xc1a397b1 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x8017e4e8 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x69e975c5 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x584a3cd6 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x95fbbfdf itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x202e0baa ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xcb245847 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x4014932c lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x943bf45f lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xdaa5466a lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x0fd48772 lgdt330x_attach EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x1c19e509 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x7ff2c3a1 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x073909ac lnbh25_attach EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x8102a76c lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x15e38b84 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xacbb362a lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xc6d6bc8b lnbp22_attach EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x4a44c01e m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xbe72afb0 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x91b7633a m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x10341f4a mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xa2382923 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xb39ce260 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x93d1663e mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x50a75315 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x7dbb2c0e nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xb21423c9 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xd3c662b4 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x8f2929bb s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xfb3167d5 s5h1411_attach EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x835262d0 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xf0f38e1f s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xf5804a09 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x0ed335b3 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xcf569a08 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xd78e0d42 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xdadf0e8b stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x75daddd6 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xa55e41ab stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x358e96d8 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x69172c75 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x04a06ddd stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x345a3736 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x8598d361 stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xb568cd5b stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xa2b07fca stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x23efc84a stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xec0fad96 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x8ff9c3a9 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x21efdca3 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x017bd750 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xf7d8b31b tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x9fd0bd77 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xa45da203 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xdd773d9b tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x88eb66d5 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x2ae00dc3 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xa315daaa tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x81b148c3 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x079b8f5a ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xe716ed32 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xfabebb6a ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xb7871264 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x80d571a4 zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xb91faa90 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x35334c11 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xc2ab6ed9 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x56c628d1 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x16bbc211 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5ee61388 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6cf38478 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x91378f15 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdd33af0b flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf2c6038b flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf41baecd flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x8d2963d5 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xdeadb85b zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x179bcade flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1cf9006d flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3b45ae05 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7a629317 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x96516e34 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbea5734b flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xeee26553 flexcop_dma_allocate EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x21dae8c1 bt878_stop EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x23b81518 bt878_start EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6b50b2d2 bt878 @@ -2070,14 +1975,12 @@ EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbb91b17a rdc_reset_state EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc0e82641 dst_error_bailout EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc1a6c23f dst_wait_dst_ready EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcfaa3b91 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe9e31049 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x5b8d1146 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0e2c6442 cx18_ext_init EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5d237b2d cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7b4abb56 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xbf9f71c3 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd1be2114 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xda608a18 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x92b5f771 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb403c6ed cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xea7180cc cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf611ae90 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 @@ -2091,44 +1994,43 @@ EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8bd01ff3 cx25821_riscmem_allo EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc0b92ca2 cx25821_sram_channel_dump_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd6ded4b6 cx25821_risc_databuffer_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x0a316ed4 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xfd9f7130 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x18a8dc12 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1bb597d3 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7a455fa5 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xfa5275c7 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x138e2645 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1e42499c cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4ceae9f7 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5407c488 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8f6983c0 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa13576c3 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd073fb5f cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x07532552 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x19eb227e cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x262a7c56 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2919922c cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2e0bea64 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2e3c5a98 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2e5ae12a cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x34178f8c cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x42aebc61 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x51335f7b cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5196469a cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x55982123 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x6a6364ec vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x75deacdd cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd4c52507 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd6154df4 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xdadc60f6 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x11428d17 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x33a9e5f6 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbb2ce221 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xcd55457b cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdebae7fa cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf4bce977 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfdaaddc0 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1c93ee76 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2156ba3a cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2dfbc9f9 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x308daad4 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4006e32b cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x44723972 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x45d4f15c cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x50110d84 cx88_ir_stop 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 0x61fe3e86 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x64813cd6 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6f6f9694 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x87be951c cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7248de8b cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7c8145ea cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8a1f20dc cx88_ir_start EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d8ea368 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8f0e2bb2 cx88_set_tvnorm EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xafa896a9 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc198ea94 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc1b36978 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc3c07297 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf9ba6031 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x9e05ad5d ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x95e270f4 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xade4d924 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xae5fb793 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc2b8673d cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd09982fe cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf06802d0 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf5e68591 cx88_set_tvaudio EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x20878296 ivtv_ext_init EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x260dd550 ivtv_udma_setup @@ -2148,20 +2050,20 @@ EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb4f84594 ivtv_vapi_result EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbd23f453 ivtv_set_irq_mask EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xff161c25 ivtv_udma_prepare EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0feebdae saa7134_dmasound_exit EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x28d80130 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x29c1ab63 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x485067c0 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1660db8c saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x257698e2 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5c68c911 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6fd19f48 saa7134_pgtable_free EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x84ca789c saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x87f50003 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8d29c92e saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7553dcc9 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7da5fa44 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8637fd2e saa_dsp_writel EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9745d931 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb8cbce1b saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcb6a1984 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd6c28f8e saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe7a84f4d saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x954904c6 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbe0e27ac saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd2c7c97a saa7134_pgtable_build EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name EXPORT_SYMBOL drivers/media/radio/tea575x 0x04db44d9 snd_tea575x_exit EXPORT_SYMBOL drivers/media/radio/tea575x 0x0bfe328a snd_tea575x_s_hw_freq_seek @@ -2177,57 +2079,44 @@ 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 0xf446074f ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xd5cb2246 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0xd8833eaa fc0012_attach EXPORT_SYMBOL drivers/media/tuners/fc0013 0x2746e3b0 fc0013_rc_cal_add EXPORT_SYMBOL drivers/media/tuners/fc0013 0x5af21d7b fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x67d9db0c fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/max2165 0x1b75e427 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x5955107e mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xc06f63d4 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0xddf3f1dc mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x89b9b32e mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xbb37f789 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x24afe02a qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xa92462e4 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 0xd25ed179 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x7117de3e xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0xa5adabd8 xc5000_attach EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x09ca96e2 cx231xx_unregister_extension EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x3068a968 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x09a6a810 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x363c5c37 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3b2af10f dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x43313875 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5ab85b06 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6651ac4a dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x968d898d dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc5fd488b dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcc649ec9 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x02f2f68e dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x034dcd32 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x247512e6 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x64d4d709 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x20b16a73 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x397f247f dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x53596ae2 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x54a13842 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5ff2cef8 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x90ee1093 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9856e9e7 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa3880023 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcf613556 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1c70f0c8 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x37908d75 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3c10ad15 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x42c4d0d6 dvb_usb_device_exit EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x91e81eed dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb5dd402b dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x212ea03e af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa207b7d4 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe36c0ec4 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 0xa38ae36f 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 0x3069637c dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x418c2944 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6a3c9ca2 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7c78ede7 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8b3fe9f7 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x397f373b dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3f4f7a93 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7efecdb1 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93230a64 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 0xbb1ae15f dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc4ce551a dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdbb74758 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf63a3025 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x0e66f473 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xb863c5da dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa14ab00b dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xacaa20c1 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd6f7a6f5 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe494166a dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe65c0954 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x78407cd5 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xe51d00a0 dibusb_dib3000mc_tuner_attach EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x68fd329b em28xx_unregister_extension EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xc992b63d em28xx_register_extension EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1b4f89ce go7007_boot_encoder @@ -2391,39 +2280,39 @@ EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf83d8ee mpt_put_msg_frame_hi_pr EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf5433c66 mptbase_sas_persist_operation EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfd432a74 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x04452561 mptscsih_get_scsi_lookup EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x05b58af2 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x06fedd3d mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x06fed31b mptscsih_change_queue_depth EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0b52ed8a mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0c0f502b mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x138cdc5e mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1645f12f mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2d00f6f3 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x336ded0b mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x37fd03b8 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3c70d8f3 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x402c3131 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x45f75314 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4b583ded mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x56b1c236 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5f7a981c mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8bd55a20 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x99a31502 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9e800974 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa687be82 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc5f28552 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcbcc0a80 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd46381d0 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe1df4afe mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2aaece82 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x36fd9452 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3e359377 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x41dffcfe mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x43bed20d mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x549ae6d9 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5a480f46 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x678922d9 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x76cc4fa4 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x771e3ab4 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8d3bf9fd mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x915ae69f mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9c8dcb26 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xad612543 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb18ae654 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb8fe3a83 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbd21d6ff mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc48d0b7d mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdc5aaed4 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdda0c232 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf0f8a27 mptscsih_event_process EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf6e455ce mptscsih_host_attrs EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfb002645 mptscsih_shutdown EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfbc849df mptscsih_suspend -EXPORT_SYMBOL drivers/mfd/axp20x 0x1a9f03fa axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0x6ecfe2e5 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0xa28fb256 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/dln2 0x52c11e1a dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x709b8e26 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x87b4da30 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/axp20x 0x139e750a axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x67ce9415 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xab8ec4a6 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x56e60150 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x717fa78f dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x8e251df0 dln2_unregister_event_cb EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x34164740 pasic3_read_register EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x852366c0 pasic3_write_register EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x23b60559 mc13xxx_irq_mask @@ -2470,14 +2359,14 @@ EXPORT_SYMBOL drivers/misc/tifm_core 0xbb7c15f1 tifm_alloc_adapter EXPORT_SYMBOL drivers/misc/tifm_core 0xbca4f779 tifm_unmap_sg EXPORT_SYMBOL drivers/misc/tifm_core 0xc0819f71 tifm_eject EXPORT_SYMBOL drivers/misc/tifm_core 0xc0dfa7ed tifm_remove_adapter -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x185434e4 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x4b80d2ea cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xaeaa9181 cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xb2513179 cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xeb936a62 cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x97d3e854 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x26af61d3 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x8aa7f9d5 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xac27fe22 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xc8435e5f cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xdf720d81 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x2e029325 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xa280df56 dw_mci_remove EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xc08dc93c dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xe22ec587 dw_mci_probe EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xe597750e dw_mci_runtime_suspend EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x50957942 mmc_spi_get_pdata EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xf642f832 mmc_spi_put_pdata @@ -2550,104 +2439,104 @@ EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xcfb2f8ae rawnand_sw_bch_init EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xdded0294 nand_monolithic_read_page_raw EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xeaf5680a rawnand_dt_parse_gpio_cs EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf217c2fb nand_read_page_raw -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x011652dc free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1097f790 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2bdd85d8 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x02b5db20 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1c232eac arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x212e80fc arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x29bced3a arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3183b7b8 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x62501fc7 arcnet_timeout EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6ab5173b arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa057da93 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xae6f6a72 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb2166187 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdfdef6a6 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe9e5dab0 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xec2fa267 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb2125470 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc79f3742 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe3cd59bc arcnet_unregister_proto EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xefe0dcc8 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x4cce12b9 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd428f21e com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xdacc2791 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x19f6a58f b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x257e5eb2 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x291e20e6 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3156f757 b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x372ce511 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4405423b b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4a85f8f3 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4c3411a1 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x54c1ce40 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x54d6e8c1 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x58906e18 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5985d821 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a5da33b b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5d232429 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x61ac7931 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6d76a2bc b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7278ad17 b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x72af5ac6 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x762f6a1b b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fd64b3e b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8bb0eb83 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa4389580 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa4595bc1 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xab91cfe7 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaf97a374 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb4750ae6 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb71aa92e b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xba6142c3 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbc312a12 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbe52a343 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc2268375 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc526fb25 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcf840f7e b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcf913d0b b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd6b57605 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdc635084 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe6b006d4 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xef6f049d b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf1107161 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf56ce66d b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xff2c18c1 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x0ff1d7a0 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x44f9b172 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5e8af3ce b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x69057a1e b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x742c5f22 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x87fe3160 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x3b66c7c9 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x4a12c9b9 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x99fda6e8 lan9303_shutdown +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfbdea2d1 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xffbe7943 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x75ea27d6 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb13b9421 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xffba0273 com20020_check +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x00bee9b6 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x022a667b b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x07aef207 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x12379b7e b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x18fd3063 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1bb0f9f2 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2df1742b b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x331990dd b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3525e3d2 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3b4c571c b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a4295be b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5bf6315d b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x671f3cd2 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6de40de1 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x82da13fe b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8ae2fa92 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x912d14c9 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x93759e9d b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9395220c b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x93ef6113 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9800c663 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9bbdf4bd b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9bed41db b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9fa4e0e4 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa0528b37 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa76705da b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb21b4564 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb70b0ecb b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbb5d48a8 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcdf39aa8 b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd213a6e0 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd3cc330d b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd76ca395 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdd116269 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xddae964e b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xddb02e85 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe53d4596 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe6035829 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xecc2ccf7 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf06c9442 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf3494b7c b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x0266cc8f b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1716144d b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x3494b592 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x83b6bd15 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x90e0ad25 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb6a1bdf0 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x424b2c69 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x695284f0 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xa89b7eea lan9303_shutdown EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x8aeb6bd9 ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x121718c5 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x437d7a70 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x599b0168 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x83cd5499 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x0edd3537 vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x5aa66279 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x4f83e67f ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x9ecb0a4e ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x5c38a571 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x6cac1e73 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xcf0c0a86 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x5b702822 vsc73xx_probe EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xae39c1a5 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x08077485 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x1d9cca9a xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x54ff3517 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xc5fb00a5 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xcd1e093f vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x2e0e1313 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x82d126a4 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 0x98d71e67 xrs700x_switch_shutdown 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 0xd880c162 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe12ed822 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0db270b6 ei_poll EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x32d943be ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4f5020f7 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x50a83377 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x80e11202 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x91ad49e1 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9bbe7a7c ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9c5fa86d __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9e461881 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb21c84d2 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf9db862f ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xfa3c76ca bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1d5efa09 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x355ec995 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x58673a9e ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7b9e638f ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7ce428d3 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa3783177 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa403bd9f ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd579de55 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf737ec43 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x1a1912b7 bnxt_ulp_probe EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xe948a650 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x95590ae7 cnic_register_driver EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x1aadb87f cavium_ptp_get EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xe482e49a cavium_ptp_put EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable @@ -2667,362 +2556,366 @@ EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_ge 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 0x0bf47749 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1695dc47 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1f620ecc cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1f753127 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x212bfc1a cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4cedd1a3 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x529a42f5 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x567c0ea2 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6fbf2237 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8d2f1a6e cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9d474039 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaf6f1688 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb4290402 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc7c055c4 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf64ec072 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfb2a532b cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x024c057c cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x02e53aba cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x054a4880 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b7ac9ed cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x06cc219b cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0adf58fa cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3f4cb33e cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4e5b33f0 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x536d7eaa t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x61c3abe3 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x61db0839 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x631d0286 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x67417158 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7d0b556a cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x962d1cb7 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9744269f cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9bdbb83a t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa0785125 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbaa9bcf7 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd9780f07 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x05136340 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x09addff0 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c93d5c0 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d48725b cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e673dcb cxgb4_remove_tid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1860a35a cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x19c7f44e cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1d4e49e7 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x253ce305 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31ef7f5d cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x324a511e cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3dccf79d cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4a597473 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ec4fc54 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1bb34409 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1d5d1f48 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2262703b cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x278f054c cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2ba0cc8f cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x30080457 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b81797a cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x41395220 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x43299e31 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x43a79d9a cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x457a80be cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x471b6c27 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x48999464 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b8a0029 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4f1b1a1c cxgb4_remove_server_filter EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x55b980ad cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x55d2fb20 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x601d82fc cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6aeba154 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d7f85c7 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6e6e90b7 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6e810ad2 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7053a83a cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x72c67b3e cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x770fa868 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x89df1e1f cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8d39805d cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x93c25652 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9cdcdb37 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ffe6d9f cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa544c929 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5534c6be cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x58e0cee4 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x591d433a cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x62e67199 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6e1dfceb cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74c6286d cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74e0e010 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x763feaf9 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76d61a19 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7c2f16c4 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7cf2fe34 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8acdf137 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x91207081 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9aa37fdb cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d562b71 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa788a49d cxgb4_reclaim_completed_tx EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa94be451 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa9dc694 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xae1e5d4c cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xae6d61de cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb9e0aaaf cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbcd95cf2 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcba5cf7f cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd061c394 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd2d93a27 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd6040b08 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb359efd3 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc55c670d cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc8ba847f cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc9287cdb cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xca49733b cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xce118890 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd503a71c t4_cleanup_clip_tbl EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7680411 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda8185ef cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe273693d cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef4253bf cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf0c20295 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfa398261 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe9eb79c cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdcf470b0 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xefe90281 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf9123c7a cxgb4_create_server6 EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x21bcdd0f cxgbi_ppm_ppods_reserve EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4abcf7dc cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x57d9b71e cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6db9b461 cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9ec768da cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xad941012 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xddc2e084 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x24264836 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2527aef3 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3c58cbf6 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x621052e4 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x98a3f0dc vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xcb136f79 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x149b0751 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x43e794b7 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x67292277 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6e3ce94c cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x82cef7eb cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xaa04ecf5 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xacfa006f cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb32e8194 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc8dad554 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1bee5807 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x44238453 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6ca0df8d vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9381656e vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xacde7c4d vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe18a72a9 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x3549aac7 be_roce_unregister_driver EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x11c68c28 dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x5fff7a48 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 0xccc1df4d enetc_ierb_register_pf -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x02309f55 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x55cde070 hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7c305ab7 hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x87750454 hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xaffc9714 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x5b58f45f dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x4bd419e2 enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x3b351e1e hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x609a2fb8 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x6937b4dd hnae_ae_unregister EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0xa37f9ae9 hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x209218ee hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x2f9100b2 hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x350e2644 hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x40ac833a hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x4c5f9536 hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x65804362 hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x87ed06ec hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xeb208b34 hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x2ca38735 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x62753e4d iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x103c0445 otx2_reply_invalid_msg -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x13b989b4 otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x289eb55a otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xf82f4348 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xff6f655c hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0xc513e403 hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x0ccffb13 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x2b7a9b8f hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x32b9906b hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x38235ec4 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x3a7f02b2 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x81df9936 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x84763ed1 hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x89190bef hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x682d2bec iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x7e722734 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x01f9408b otx2_mbox_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x161d7206 otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x32fff80a otx2_reply_invalid_msg 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 0x3a06d9fc __traceiter_otx2_msg_interrupt 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 0x4cae6f2d __traceiter_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 0x5fece4d1 otx2_mbox_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x5f28276e otx2_mbox_check_rsp_msgs 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 0x6cccda3a __traceiter_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6e89f79b otx2_mbox_regions_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x7e7d5b87 __traceiter_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x67d35cca __traceiter_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6af77465 otx2_mbox_regions_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x7d6adca0 otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8e185bd4 otx2_mbox_destroy EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa3c71cff otx2_mbox_alloc_msg_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xab4640a4 __otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x930a8640 otx2_mbox_wait_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xaece6d42 otx2_mbox_nonempty 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 0xbb9d7f87 otx2_mbox_busy_poll_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc77abbc9 __otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc97c6922 otx2_mbox_get_rsp 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 0xd27566b1 otx2_mbox_destroy -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xda0273fa __traceiter_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xda8a36dc otx2_mbox_wait_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xdc70a707 otx2_mbox_busy_poll_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xe03c2051 otx2_mbox_check_rsp_msgs -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xe4380c58 otx2_mbox_get_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xea48d41f otx2_mbox_msg_send -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x092de776 cn10k_lmtst_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x119ee73c otx2_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1c71705f otx2_mbox_up_handler_cgx_link_event -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2b40eb95 otx2_tc_alloc_ent_bitmap -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3e4882c2 otx2_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x41c0c442 mbox_handler_nix_txsch_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x587fbbd8 otx2_get_mac_from_af -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5cde8613 mbox_handler_msix_offset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8060ee08 otx2_attach_npa_nix -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8ad27fdc otx2vf_set_ethtool_ops -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x92040d39 mbox_handler_nix_bp_enable -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x92479f84 otx2_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x99c746c5 otx2_open -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9bb3cbc5 otx2vf_mcam_flow_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa822f3c4 otx2_stop -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa89d4081 mbox_handler_npa_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xafb17a34 otx2_alloc_mcam_entries -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc039548a otx2_detach_resources -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcb8d09d9 otx2_set_mac_address -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdfdcb9d4 otx2_set_real_num_queues -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe0ba55d0 otx2_mcam_flow_del -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xea78771f otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xeb8e183a otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x17c9abb9 otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1a105074 otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x21f9ca8e otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3cedc238 otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x41914dfc mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x47fdbd1f mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4c72b195 otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x53d8821b mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6036ea0c otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x65099e78 otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7abf601f otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x86ef5712 otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x900456e8 otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa05a6ff3 otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa7d82a9d otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xaa563764 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb8ba08a2 mbox_handler_nix_txsch_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcb4be0cc cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd08b9cc0 otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe954350d otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe999ea52 otx2vf_mcam_flow_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 0xf01011e9 mbox_handler_nix_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x7f4fab0b prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xbb9ec078 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0126706f set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01850bb1 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e27474d mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11947fc6 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x147ba253 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18873b3a mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e9c5b0c mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x262b5fa3 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30e19e96 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32796f07 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34666485 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3726966b mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3747302e mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x375db322 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3785f5a5 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38d912cb set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ac52da9 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4300f12f mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47c9db71 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fb74c7b mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fd20c60 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50c9420f mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59c9e8ec mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64e7a74d mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f25e50e mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b5d06cd mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf1af7ef3 otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf8326e61 mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x30177d2d prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x57d1c067 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00b04467 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01a62c38 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fab9eab mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fc0293e mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22d1c432 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23b95643 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39ee830f mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x418ca665 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51d13a51 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x531ef5fe mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53e5f29c get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5424903d mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e1e9654 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67c9e615 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x682e1e44 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b1fa9e2 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x726d7a83 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75eff073 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ccdc90b mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d250fcf mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e03cba7 mlx4_tunnel_steer_add 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 0x920167fd mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9952ae3d mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c3800a2 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c5ce462 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9daee40c mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa130f184 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2e4d7d6 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3a41514 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7e9bcc0 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac2c8f16 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdebb76f mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1cedb6f mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8c1f62d mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc964e21c mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd257d808 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9655ea0 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdca9a11b mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaa0cbd4 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x016611df mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0781103d mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0979e139 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c802146 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ef07537 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x126b8fd9 mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1479a239 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14d4aa3b mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1840406a mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18c68bde mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18cf3a88 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bf8027c mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bff4610 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8488c32c mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87c8a2eb mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89ae35e5 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bcb64a6 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90d32a47 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c69dd42 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d0bccae mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa637b2fc set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6f8170f mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc5b3462 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc174aede mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6877ddd mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcca4cd2b mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1720b68 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd283d53c mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5058d79 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd984774c mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd054796 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0a4ac30 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebc90542 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf187adb8 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf532724f mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff1e4c2b set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01954e2f mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x038b52a1 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x069c04e2 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0704da1b mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c52da66 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c7a0178 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d691cc0 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10016892 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1457899b mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b9002bd mlx5_core_attach_mcg 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 0x1f28fd71 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fc52a74 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20f9c18b mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2211d070 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22aefc3d mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fd44332 mlx5_mpfs_add_mac 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 0x24bfc8a1 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x250d93ed mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x269116b4 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c4f2495 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e58ce17 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ee903db mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f47f90c mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2684d01d mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c0abc7d mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cc15e6f mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30bfbfc3 mlx5_debugfs_root 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 0x336bdf57 mlx5_eq_create_generic 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 0x38d80b24 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e4ef752 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ef4da97 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f4ec58c mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x409d2018 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40dc7f63 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x412b7e0a mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42265f7c mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34eded81 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3610e47f mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36840ef8 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36d2a75e mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x370adf2b mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3794b846 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37e4b3f4 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b51010b mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f0d884c mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f0e9ee9 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f63415e mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x419edeb3 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43ef6f91 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x441f8aea mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4422b086 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x444902be mlx5_comp_vectors_count 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 0x49626960 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49c5fd06 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b08ede3 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cafc20a 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 0x4ee02a2b mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5013d7e6 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 0x51daadb6 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52a02caa mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53bb24b7 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53c78948 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5410a2fb mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5470d44b mlx5_rl_is_in_range 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 0x56a6c579 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56ce7549 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56e8e0c0 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57f36b77 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d6e80e8 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d8d5e91 mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5df177d3 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ee8db20 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5eed142c mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6085f0ee mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5729464f mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59321bab mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59edb09b mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b61a71e mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d64aa0a mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5de97938 mlx5_notifier_register 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 0x61452b80 mlx5_eswitch_get_proto_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x665adf7b mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66bdfe02 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67018434 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a2307b0 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b1be1a9 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ba11e7e mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70fc9624 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x722ac171 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61832445 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61f95900 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6227ef35 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x624bc886 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c7db4e6 mlx5_core_create_rq 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 0x74032eb2 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7692f601 mlx5_eswitch_unregister_vport_reps 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 0x77465683 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x794e1423 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x799f255e mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7acd2524 __traceiter_mlx5_fs_del_fte 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 0x7b4afaf4 mlx5_core_destroy_cq 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 0x7cc216fb mlx5_eswitch_get_core_dev 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 0x84114ca6 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86982c01 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80bc4873 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81699ea3 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81c00e37 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x864ff584 mlx5_core_dealloc_pd 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 0x8752830d mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87873373 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88711726 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x893a7e59 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8af5a821 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d8e05cf __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fef250a mlx5_core_create_cq 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 0x964488af mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96ea64ef mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95761cfa mlx5_cmd_alloc_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 0x9c6ca605 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9855321d mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9aea410e mlx5_get_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 0x9e978de7 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0f67b52 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0fa1279 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1368ee0 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa14c90d4 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6b7abcc mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ee8eda5 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f461fa3 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0f79fd8 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa11b0c54 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa266fbb0 mlx5_core_modify_cq 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 0xa97039e6 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab1a5863 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab63fb9f mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa88f1011 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa912db2a mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9e10bfb mlx5_core_modify_sq 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 0xb05f6803 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb18090ca mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb203e73e __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb253551f mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaeac7cf5 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaecfcc89 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb192a7b1 mlx5_modify_header_dealloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb28dbbe8 mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3e77878 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2bcf8f6 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3ac7772 __traceiter_mlx5_fs_set_fte 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 0xb5fa6585 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb70abf1b mlx5_fpga_sbu_conn_create 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 0xb8b3c6ec mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb80cf808 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8d81d36 mlx5_fc_create 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 0xba5eb676 mlx5_eswitch_unregister_vport_reps 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 0xc2f41a22 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc52ecd26 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc559350a mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5bbc579 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6f10024 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8bf23ca mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb879f5d mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce82ec3f mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0ccd09c mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0d2e846 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd138fa0f mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3841ae8 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4d1cf77 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbabc757 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcdc1b54 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdd0ddde mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca170ad1 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca32a28b mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca52bfdc mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccf8030f mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xceff3b4f mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1ab36c8 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4688da5 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4ae9ab6 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6b34ffb mlx5_eswitch_vport_match_metadata_enabled 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 0xd775c73b mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7d756f9 mlx5_eswitch_vport_match_metadata_enabled 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 0xd9a0da4d mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb558fdb mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc48c0cc mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc56c8c7 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdde43736 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde056e24 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdedea67a mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1d2e93f mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2dc8a52 mlx5_cmd_exec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe62d4ff9 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6904f58 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7c1df11 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8203f38 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8e6d957 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea8714a2 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb5be54c mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb90a828 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe55e9f5d mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6a2d096 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8674680 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9247174 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb4a3273 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 0xeed98d9d mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefb522b6 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1c24e36 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3521b97 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf60f1be1 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec47570c mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeecae43d mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf10fd970 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf16f4737 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf29557ab mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4325bfa mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf83d4c35 mlx5_core_destroy_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc11f964 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8d85d27 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfba22396 mlx5_core_create_tir EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfceb65f2 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x8dbf43cc mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe816042 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe912927 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x089ab848 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x00f4eff2 mlxsw_core_rx_listener_unregister 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 0x096206c2 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x096f5fc6 mlxsw_env_get_module_eeprom 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 0x12eea828 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq @@ -3034,16 +2927,17 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_c 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 0x35c6fce5 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 0x39fd653e mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3bfc96c2 mlxsw_core_bus_device_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 0x44fc2a01 mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x4b2092af mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x509f16c5 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50897cfa mlxsw_afa_block_append_mirror 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 @@ -3051,14 +2945,14 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_a 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 0x66d0f351 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x66cfec77 mlxsw_core_port_devlink_port_get 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 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 0x7dfecd4d mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7876c77f mlxsw_core_ptp_transmitted 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 @@ -3066,34 +2960,30 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_a 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 0x8b06cfbb 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 0x8f6bbaed mlxsw_afa_create 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 0x9ab3382e mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa2ad5a4a 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 0xaa4ec21e mlxsw_core_ptp_transmitted 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 0xb9b9930a mlxsw_core_port_eth_set 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 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbd69cb88 mlxsw_core_driver_unregister 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 0xc0f35980 mlxsw_core_driver_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 0xca257489 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb2140c7 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcec13a9f mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd06d777c mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd12799f8 mlxsw_core_skb_transmit 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 @@ -3104,102 +2994,101 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_a 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 0xde63faf0 mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe02e2bf2 mlxsw_core_trap_register 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 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 0xfd73a250 mlxsw_core_port_devlink_port_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdf8607c mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf9583677 mlxsw_core_trap_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 0x06ce0315 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x4a11633f mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x97f46f95 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xe77405b3 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x02123173 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a6b4ace ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b9779bd ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0fdbe8a3 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1467a4ff ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ff9fc43 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x20b8da2f ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x482ab815 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x64082b32 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x38efe1d8 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x550107b9 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x01f43207 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x01f43a90 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04b5b1a5 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0aa68e3c ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b51a8b3 ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c00648d ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e508f58 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1654339e ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16bb2dc2 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1bec9b31 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d7ea3c2 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x222bd174 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2535f67b ocelot_init 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 0x32317192 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3aedcdf0 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3e7b3adc ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f6a91f2 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x438a5ef8 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x43c3a151 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x44380fd1 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x44b69614 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49c3bd70 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a31062b ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4fe9a225 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54ff1d41 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x564e48d2 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a69a95c ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x602fd61c ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68a13f2e ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68dab6d9 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6cc67e57 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6dd3b840 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x706fb60e ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x70a6c5f7 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x778bcfce ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x78bb37e9 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b60f0c4 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x85cd2bb2 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x86e088e9 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x877056e7 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b9b14a9 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x319b5978 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x364b3b6e ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3e6adf7f ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4138e02e ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4702cfd6 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x48f4bb5d ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4f5bb88d ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5297f2ef ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x531c644d ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b0f1fd6 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5eb1f46b ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f751094 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6515a2b7 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x656eb20e ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65bc6df9 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6bcae23e ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c05c16d ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6cf843c0 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72a27682 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72a4de05 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7344ad3c ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73be8055 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a6c0b5b ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7d2904cd ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f6cf16c ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x83aec6fb ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x847b0269 ocelot_can_inject 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 0x8bcb4de2 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8cc7f5fd ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90182718 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x929f2565 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9372c16d ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x961ff524 ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x985f000e ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e762aa0 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa342a5c1 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa38c1cfe ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8c1abf9 ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xacc9e477 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad5786ab ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf33cc51 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb108d7f1 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1e89749 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb2b38a0d ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb35517d3 ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3d6b81b ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbcc07ce4 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbe94b937 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd27bead ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd2977f6d ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd2abbc04 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd2b1ea2e ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf5e8691 ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0468b83 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5e5b45d ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7cbb731 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec1740e2 ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef8b915c ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff2996d6 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff53af38 ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x1f082a8a qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91b1208f ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9418a1fd ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x96073b98 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9b1b3ccf ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e64df91 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa2dd20d5 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5f7b4a3 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb04c5d0d ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb77ca8c1 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9bb5042 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcb7780d9 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcdc9c5a4 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcfc6aef9 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd126da2f ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd3958421 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd452f7f0 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd741ed06 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd7e7ecdd ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0b883fe ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe475bb88 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6eb7133 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf1793a52 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf6017202 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf6d9eff2 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfabeae2e ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfd67be60 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4845e908 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 0x948b3c88 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x74fb54c3 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 0xdcc66fbd qed_get_rdma_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xea94edf8 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x2b739332 qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x65d1c7f4 qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0d5d069f hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x35841582 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7a47b370 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x83331550 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xccdd8db7 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xb2a1abc4 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xbcb539c8 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xc9c21a30 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xe26d4c59 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x08a70cf1 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1a479644 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x28d920a9 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x8eec1b98 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb31a72c1 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 @@ -3209,674 +3098,674 @@ EXPORT_SYMBOL drivers/net/mdio 0xcdbdeca7 mdio45_ethtool_gset_npage EXPORT_SYMBOL drivers/net/mdio 0xdaceb7a6 mdio_mii_ioctl EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x7f68faa4 cavium_mdiobus_write EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xa3dbede5 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x23fd1710 xgene_mdio_wr_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x2ec63547 xgene_mdio_rd_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x771fa282 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xa5f47738 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xd1a6848f xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x3e1505c3 xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x4542c5f7 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x4cae1379 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x98009cd3 xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xba634e2b xgene_mdio_rgmii_write EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x74ba5512 lynx_pcs_destroy EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xde33a5e0 lynx_pcs_create -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x722ac3ad bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x5028dabc register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x7b61e46b pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x8a384723 pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xbf55006b pppox_ioctl +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x4d347683 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x3f9aa5bc pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xb58a6a6b pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xc09b4b3a pppox_unbind_sock EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xa41ea439 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x86ab6119 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xa6867f48 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xbed4d9a6 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xc125f322 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xc43bbf04 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xcd7984b9 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xef3fb283 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xf2a8a3db team_mode_unregister -EXPORT_SYMBOL drivers/net/usb/usbnet 0x07beee78 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xb4e95f77 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xc091152c usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x281d1927 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x3e79267a hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4b8e474f unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x919a0c5e alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc4f54c10 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xce0433c5 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd14a7d90 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xdce8acbf unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xdd66c4ce register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xed13cb5e hdlc_close -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x056e129d ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/ppp/pppox 0xf64d29b4 register_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xc32bdc33 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x22aa17e8 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x3a4ff3d6 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x578952cc team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x6da7da3d team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x7375343f team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xb1716677 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xc8cf996d team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xef0f1b93 team_options_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x13655d38 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xb43fe360 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xb50b9a98 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0340f6f8 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0e05e62b alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x39c6ff53 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3cace5f6 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x40f8adab hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xaff962e5 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb38043d6 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc56de471 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xce4327f0 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd0b2ee45 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0d8941ad dfs_pattern_detector_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2d685729 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2d6f619f ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x34ac9420 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x114c8eb7 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1d681d9a ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2bc8599e ath_regd_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x65a94ebf ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x82306e30 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9dfd68cd ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x52f25b78 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5756a7b8 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x773a4db9 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9760e0cb ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9aa09df3 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9d22c809 ath_hw_setbssidmask EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa2a40db5 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xab9702b1 dfs_pattern_detector_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbf535dd2 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd0d74dc1 ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf96f8afd ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf97381d9 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd16b916a ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe9517cb6 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf90b0b46 ath_printk EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x08c0d317 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09395774 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c123640 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0f7c7667 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0f872996 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1296f443 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1bfd4c31 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a887209 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2d0ba3ff ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2e8fceab ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2e9586f0 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x33e0d062 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x34564017 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x396f6ddb ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b1b01f6 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x42990745 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4442d92d ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x45143eb4 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4b27b7fc ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4eca221f ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x520be2d7 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x61769424 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x65e641fc __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x66b1eef6 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6c67351a ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x72a0a8c8 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x778be13a ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x784e06f2 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7abca09d ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7ce7c1f1 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e5d83fc ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7f175c15 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8577fda4 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x86e90c45 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x86f87670 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8a4720b9 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8d70b00f ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x936b26b0 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x05d50257 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1360c12a ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x15118efb ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x16816981 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18c95621 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x210f9344 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2dc9ca14 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2e7107d6 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x304e8a36 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x314bc360 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3175127e ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x317669c3 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3a5514b4 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4154529d ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x446a8baa ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47e54f1e ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x495eea3a ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4ef770af ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4fc012c5 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x522a85b2 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x540d3dc7 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x54893668 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x556379d4 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x55e35b8c ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5b104c48 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x60fbe596 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x614e2b1f ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x61aeadb7 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x662bc0d3 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x663b0783 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x67905220 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x67c1ef51 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6c2ca3a2 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6d2d6849 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6e8a6cf0 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x710956df ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78b57978 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x86eaf14f ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b04a485 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x93c49812 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ae887a4 __ath10k_ce_rx_num_free_bufs EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa29ca74c ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaabc0df7 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb2dff3e0 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb83f545d ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd5e41ca ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf804cb0 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc6320beb ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xccc15bc8 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd055afb7 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2313a7e ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd53ad90a ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd7794aed ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe173fdc0 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe38e70ac ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe7f5a03c ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed34429b ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf6915b60 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfea0a87f ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1f9f2176 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x22da2b5d ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x261837e2 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2b90057a ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x370eb062 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x373c59c7 ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3ca423e3 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4388eb3c ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7c01c95b ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8791e432 ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x87fe5bf1 ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x982e0c2e ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa778497f ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa862f84f ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb2be4064 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb38b7176 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf9b81ea ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc24bd1f ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2120630 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd4ce39ef ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdb07cf5a ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe6b8fc56 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe6e4529a ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xebbc3574 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xedf9a5e6 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xee32e75e ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfd4cde81 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1045d3c8 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x11c581a9 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1a584317 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2014fcb7 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4392211f ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x706d3fa6 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x73b372e3 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x74ba0bfd ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x77690965 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x78a4606b ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x79cc3786 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8cec32dc ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x95b4a989 ath11k_dp_service_srng EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb22407d3 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc75550eb ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcadb0ee8 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcc07a2fc ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcc7b5493 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcf281004 ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd6ddb2a1 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe469c9d8 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe53e117f ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa69723d7 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xac958f33 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd00c7ef9 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd30bfe0e ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd4442884 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xda2c8c0e ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe6480ecb ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe979cfc3 ath11k_info EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf8b857c3 ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x10306132 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf9ba6051 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x043f83cb ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x07978c46 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0799433e ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x094870c3 ath6kl_stop_txrx EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x27a3c551 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 0x55114047 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x59434bb1 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6c6c2f97 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7bc4c9af ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x47dd2af4 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4da26478 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x73ee9e1a 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 0x971c7cbc ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb2e7cd9b ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x97b23551 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xaf3adc96 ath6kl_core_destroy 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 0xd57f89e6 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xed969edc ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf1d6b833 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x02dec307 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x154ca059 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x26a24604 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x34dee96e ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x547cecfc ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5bc2cf16 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x60e0b649 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x63e2b353 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x760d8cae ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x76fe1bc1 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7aa37da0 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x85dbfb9f ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x90ca1f5a ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x918b1081 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x93d8a7e0 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa9087006 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb5e64923 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd6dd5647 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf95bdc16 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x015adde7 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x035473d7 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x19f17386 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a4d5c3e ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4d2c4005 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5452a42c ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x56b17ff9 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6a9902f3 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x702385d7 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x75bcfed1 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7971862f ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7f7ac03e ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x87b9b8ae ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8cdd263f ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9886cb93 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xabef89e4 ath9k_cmn_update_txpow EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbe80d5ac ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbfa494a8 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc2528fbb ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbcd4baba ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc35a5d6d ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc63fc335 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd1af2abf 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 0xe741f28a ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf22515f3 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfc5725a4 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02c5d483 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04d63485 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d4075af ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe46ad2c6 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe7477f6f ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf81a979c ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02af1de7 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x095bd95a ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b32a060 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ca3c922 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f564cd9 ath9k_hw_set_txpowerlimit EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10f87887 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14014de8 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x143effec ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1458a077 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15245f44 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15e80f3c ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b98414a ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f44d3e2 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22bd73f7 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22f766f8 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23c04f15 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x240d912c ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25e95c81 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x292ec938 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x324653c1 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38811612 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3911bd7d ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c0e34a9 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e06cc12 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f33d6da ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f3adb93 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40519afa ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x438874a5 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45c8a80e ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a74a2d9 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c304ee8 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54ff38f1 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5564be07 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58ff85bd ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a21d1d0 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bc69026 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d28337d ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e23a689 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e7bee9a ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6153bc20 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65f9fd0a ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x667034ca ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66e68679 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68a649e1 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6921f604 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x708f7c1f ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70bac61a ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x751b982d ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b729284 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ea7df74 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fdef248 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ffe2f22 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x832835c6 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8950a48b ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8950d28f ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a6c603f ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e26fb23 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f183405 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90827783 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93cd4977 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93ffb43b ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x941fe7a4 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96838b8e ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96de9553 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fdc547c ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0ad1dcc ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa50ac265 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb040a33c ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5f9195f ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6fdc788 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7eddf87 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb85e204a ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8ba288b ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbe5373a ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd99fccd ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbda95eca ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbefc24a0 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf4fff31 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc551ddd6 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5a35844 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7300d29 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8072b6a ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc91c47f3 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcbfbceb4 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc875cb3 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf5307ef ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0eef62e ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1b0edfc ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1be75ec ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd55f2b81 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd58d352b ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd875924e ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda4b1318 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbb59ebe ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd16363e ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe16fe61b ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe301ae92 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe569bb2c ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe679cea4 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe744cfb1 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9cf6cae ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeafe55b7 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebef688c ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefd2ab96 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3fca6b4 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5357cbe ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf76a2d05 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9ec112f ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdae3ce4 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x12c84c8e stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x57f76eef init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x78f5f4bb atmel_open -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x086af5ac brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x088fdeaa brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1037d650 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x165ae2c5 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1685920c ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17caa8ad ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x219c92fc ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27f1d7d8 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b11deea ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b1919ae ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b27b221 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2cc37719 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ccdd390 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d4bab86 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2efa54b3 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38c409ad ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39cc20e5 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a6918c0 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d6cc9ca ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4197d65a ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x436a5984 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x448a97d7 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45160186 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46286fff ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x489ec77a ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a9d1a78 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bfed537 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d5be4ad ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fb89731 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51546a67 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51d10bb8 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57680751 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58554374 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5aeee45a ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61197f26 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x616860e5 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65393165 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x663f0ebb ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x683b7342 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a7f0a0d ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6dd8d4b9 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e0a644e ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f87e2cc ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x714a7402 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x737f1b04 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74037ce7 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74a4d8a2 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77e4f660 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x782ad91d ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81b0481a ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81ca2789 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82e7c7a7 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x843694a4 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8759daf1 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x885b09a1 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c2e62fe ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fe53732 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93e324d9 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9656158f ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x982af7c7 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9850a5c2 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a35fe32 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9bea4aec ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9bee04cb ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa702e77b ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8144500 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa81aac1d ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8b1ddb1 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa91955e2 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa94e6724 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa99b9d10 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9c48653 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa1e497f ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaabd956d ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac38acee ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb026a01b ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2fe7b31 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3bd2616 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc12d1093 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc304899f ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc64fe89c ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7341975 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca4d8d37 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcbcebcff ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcbf3ceff ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc981686 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf482e77 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd047bb4a ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2dee0e7 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4340025 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd75863ff ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde172c01 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0ff17bb ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe203c0fa ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe961875c ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec288d3d ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xece229ad ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee86d922 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf14d892f ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5b5c73c ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf87029c5 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa569338 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfca613f5 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe88d0bc ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x1f44b72e stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xa50a63bd atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xdcc4c54c init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x05411007 brcmu_pktq_penq_head EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x57e97ca7 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6a7c9344 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7f29a73a brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x917b97a4 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2f7e276a brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x310f1b19 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x568a6e59 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6a5c61e2 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6b7225df brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8fd048b5 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 0xaff272de brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc4046731 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xceb98dd9 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd4783bba brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xac8ae99f brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xaefcb322 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd1369224 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 0xe9c989cc brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf0b886f5 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xff053b28 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x06ff29c0 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0b8e7e59 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x14f024aa libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x363c6741 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3a8f867b libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5cac1641 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x648b89bd libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x71c1a5ad libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7658e602 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x80fdd19e libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8d6242ec libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9a321f26 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9d088cff free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa2f28297 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa6fb7dd3 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbee1df6a libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc5a7f199 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcef17df6 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd68f043e libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdc6ea270 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x012aa345 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c700aea il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d2d9282 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0dea2c58 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x102337e4 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1455c426 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1531094f il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1532798b il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15e70078 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b5bc99a il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d27c59e _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f3e3834 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24496eec il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2647ab1b il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe422d9c4 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xeeb6f101 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfc5b5de7 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x05b658eb libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0be1697e libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x282488d6 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x639c77a3 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x645b4afe libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x677cbf68 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x687f87d3 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6e54659b libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x81a2664b libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8c533f6c libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9b075f29 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa304db9a libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa7e33d55 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb4fd9a99 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd246cecc libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdbc59b6a libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xecbd6c8a libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf1053531 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfaec4f44 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfe190a2f libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x034b41f2 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0577f24e il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x075923f0 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x080b11fb il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x09ce92b0 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b1cdf2c il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0da4e67d il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15d5fe5e il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1681484d il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x169451a4 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x16f0c0a0 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19f2670c il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b87fa81 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26d6a1ba il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b816344 il_get_single_channel_number EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ca988b0 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e7af122 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x321e48ef il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32ac5f2f il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3385141c il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3872660d il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c0a7094 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d276ae1 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d8cdf79 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f7e6ac7 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30c1bcc1 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3193b3e8 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x356f1e53 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36c9020d il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x388f87b0 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a1a4ae8 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416490b0 il_eeprom_query_addr EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x465faec0 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48a1342a il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4b7c49ea il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4cfe38cb il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53bd9b7e il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x576a58f5 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5b365405 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d8c8f94 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x605b3b12 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62820fea il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65a3bb5b il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68179b0d il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6bd8da41 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d76a195 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e247bd1 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x703181ef il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x731a5965 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x742a63cd il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x743fdfb0 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x768131c9 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77fded0d il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b842165 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c3c5998 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d887cd2 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7dae9f63 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8193eed3 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82eaa03d il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87e25b6c il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89431390 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8992dd88 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b0b05d1 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e3741d1 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x921757e4 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96d330f5 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x982bfb42 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x98fd3495 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x992d2417 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a37e26b il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b5c4de6 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49d1d60d il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4d02d68f il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4e31e589 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5154345e il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51b54c22 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5305bab3 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x54b9c230 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x566b35bf il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5aab6f8d il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5e96ca49 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60bed2c3 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6215298e il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63871758 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x66597626 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6be1a2b2 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d5c0943 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f223b98 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6fd6fdcd il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7325b1ba il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x779dae04 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x791093e2 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7be45ad6 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7cf38634 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d6ef15e il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d7d81e2 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f73fe2d il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x821e6458 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85f5a770 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90e17fb2 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x912ddfa4 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9719245d il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a9341dc il_clear_bit EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9e221aaa il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f1f2422 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f687e4f il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa44251e0 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa909f1f6 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab62264f il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad8a892e il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0da9e3e il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4e7ac2f il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb597a451 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb63f0058 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa1132176 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2aaa0c7 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa388fefa il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacf7f240 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0fad488 il_mac_bss_info_changed 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 0xb8bd4c62 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb921b7f4 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2faa301 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7a05e9a il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc82f361b il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd555c55c il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd66472cd il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6f1851e il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd76d1423 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdeb142a4 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe0e6c609 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe50e3cc6 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5a5b121 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5adff79 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeeb80ef3 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf13ccb3d il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf57408e3 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf67747ec _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb804c8a2 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb93619bc il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba84bcc2 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc9dd2f0 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbceded58 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbeab9b91 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbfbb0e07 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0dedace il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc29f16e5 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4843690 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7c30833 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9ee460b il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc5caddc il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf452dcd il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd0ffc187 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3572452 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd61e3e25 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6c3a172 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda9129ab il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdca2246e il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde50255f il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe74b7434 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7551dd2 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe81634f9 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8347ac7 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe858cbd3 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8d38e4f il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed30a059 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee0643c5 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0bb989a il_free_channel_map EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf734ac1c il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf737b6bf il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf78d9d2a il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8525aa8 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb4a5da4 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb584b2d il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc48710f il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfdca270a il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf89f7087 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa33dc1e il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfbb2ec60 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfbb72f81 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc9b5f71 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfdf6071a il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xffd85510 il_txq_update_write_ptr 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 0x66300476 __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x687d9bc5 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5f180533 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8f095b2f __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 0xafc0788d __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 0x0836f9c7 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x118332ce hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13a1d89b hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdbe122cb __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0d65f851 hostap_init_ap_proc EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x16ca38c3 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1f18be3c hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x29b8b838 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x39874551 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4ee74ead hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5ce54aec hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x62b4a3c8 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x21340b85 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2f5e6616 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3f1ee632 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x472514d8 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x529a62f0 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6269ccdd hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x683722c2 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6ec1ba1b hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7115341d hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x737e7043 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x73e00e68 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7425031e hostap_set_antsel EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7656f2f6 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7872e1b2 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7e1e1a93 hostap_info_process EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8181d1ca hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x83ca4217 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8ed1326e hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9ffa264c hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xaa11f3fd hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xabc427f8 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9399f787 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9e66c9dd hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9f2ab565 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa054d101 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa60fa9bb hostap_set_word EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc4de05e1 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe11dbca8 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe38fbcd0 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe5bc6bfe hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf33e4cfc hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf674118a hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0c10b874 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3dc51388 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x40b5ffea alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x514f2881 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x51f910ef orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6573572f orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x70195b2b orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x806beeb0 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x917dbafb __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa38424fc __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbdb0ffd1 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd4075f02 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xda1fb50c hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe074dc22 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe0b35ad2 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xef07fccf hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf67eceb3 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x06b6bc29 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1f168078 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2aaf7fb7 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x344d8696 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x73cd8ce5 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7c14b26b orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7dd82795 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9202efa3 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9575d7b2 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x990108e6 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9a4a6f94 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9e17a076 orinoco_tx_timeout EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbacd63d1 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd3954aeb orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe339f19e free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe7af59a6 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf1190bda orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbb292b00 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcb53944c orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeb1d3404 __orinoco_ev_rx EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xad3d83c4 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xb36ca9c0 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x08bf345e _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0fe3e1c3 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x10d5f375 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b5eb6f1 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x20b5e268 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x2e68bfb0 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xb1b77047 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x027b8cf4 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0413a485 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x05344f0a rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15adbbc0 rtl92c_phy_set_io 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 0x2a3d65f4 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f7480b2 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x332b0206 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33bc82e2 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x344601f4 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34aba0c0 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39858f15 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ee21c16 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x46fe13cb rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4bf835d8 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4bfc0ce9 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e2acc80 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b0d4fb0 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b5a8098 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60dabbad rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6e714c67 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x708f1b77 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x71388807 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72da61eb rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7edd7f8e _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x87cb00f4 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8c5d2036 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8eb9d596 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x904f3e4c rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x91882df8 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9abf6587 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9e7dbf70 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa7fb479e rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0f93654 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc15686c rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc6869ed4 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdc5d16e1 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf18dbe6 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe361d2d1 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe9c77c24 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf7c424c7 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x1da50b59 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x240a09b8 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2f299724 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb5ce5671 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x348452b6 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3acd8038 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xbc1388a8 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc26c575d rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x041dd046 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0541bccb rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x30944d42 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x399c15f1 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4083ba72 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41a9538b rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d0ce47b rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x52305ff1 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x59d1208b rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5f6f96f7 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5fb53ad6 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6129f41b rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x684826d5 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x689f5625 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6bf620b8 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d62422d _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7576f3f2 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e173f2c rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8099e9f6 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x826def5e rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x868c22be _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x90344716 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99ae2b0a rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9bde2992 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2c4b7c3 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa3c736de _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xafb54c65 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xafddc4da rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb28ae78b _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3053534 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb47b96a6 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb4e56c7f rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc4dbc19 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbfd3c67b rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc093c4b0 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xce6d8783 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd1fa8a1f rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe041de0f rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb17d762 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x004135f7 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6349f484 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9386052a rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xf48b1ec9 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x9cfd7670 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa906f88c rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc429f0d1 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xfdaf8935 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0508bc67 rtl_rx_ampdu_apply EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0fa22eb1 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x13777d31 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x154ddd1f rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1897c817 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d5c4ca3 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ee00cdb rtl_send_smps_action EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f0a1ca6 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2359a3ec rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24e19261 rtl_bb_delay EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x32cd383a rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x360bd4ae rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x36318962 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x391eaf2e rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b5b573c efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53b300d2 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x377aef19 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x394bf8aa rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x39eba514 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48186847 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e4ba164 rtl_signal_scale_mapping EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x558f8e0a rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e725fa4 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65ae697b rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x73ea7aee efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x749d4fc5 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74df3bb7 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8012df9a rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80820d9f rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8182842d efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x861f3a40 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x88158d9e rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5493bd7c rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x66953ea9 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a7fc6db rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6ba9e5e7 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e8bad7c rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75cda666 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75fa3bdc rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8007901e rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8a072a57 rtl_collect_scan_list EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x940920b9 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x96461dc5 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7e3d884 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8fb13a4 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x910fb210 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa39e7541 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6752240 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd4d9190 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe1461ac rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf7b7727 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdcadaa5b rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdcc75508 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe3f35acd rtl_mrate_idx_to_arfr_id 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 0xf8d58bdc rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xb4bdfc18 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x297d8b95 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x5f5d86aa rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xb09fed94 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0b51ab40 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0c404797 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x110f874e rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x18ccbce4 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1a393d1f rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1ce89a3b rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1e51f3cc rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1fa4ec7d rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1fdeae5d rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3075ab95 rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x31fcd676 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee07cf5a rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeecfac96 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3355430 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x89fbf933 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x143b8ebe rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x621b8381 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x8dd9e8bf rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0398dbdf rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x03c30da6 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x07072f7c rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x07d48961 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0ec86b34 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x11115bdc rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x15392f52 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1581c015 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x172a6eee rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1b65eb1c rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2d4b5bbc rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2dbe2ea3 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2ea8dc9e rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2fde860f rtw_phy_pwrtrack_thermal_changed EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3540df33 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x344d041b rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x35f5a72f rtw_phy_load_tables EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x37511a94 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3b582a54 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3b6adc28 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3d1676f1 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3f3d65b2 rtw_core_init EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4b801cb9 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4fdcb7c7 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x50ecdcbf rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x47ade8da rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4dc55bf1 check_hw_ready EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x52dcba2c rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5334553d rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x561d89e8 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 0x593476bd rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5e24ec47 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5e81b20a rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x64d8a02b rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x68c123c8 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6aeae399 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6f6e3f24 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6f7acf6e rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x83068d92 rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x876cd983 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x91209323 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa2503dd7 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa69100ae rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xafa13edd rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb6583010 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb81907a2 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbda618c8 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbf6a9d6f rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc33da365 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc3f2de19 rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc71c4f87 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc80e4784 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd12d8966 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd14f6b6c rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd1c1d192 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd8de1178 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xda4e4d20 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdaf9cebd rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdde27bb6 rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xde18283b rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe639d3cb rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe7110999 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeb33e46b rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xec0c9210 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xef239faf rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfbddd0bc rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfc006233 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfc8428cd rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x0ba7e859 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x28d25a80 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x42e41c73 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x9bfa0ce8 rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x04edfdd0 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x082edb7e rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0bc60340 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1338cdd9 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x19ffa67b __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x292562e8 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2a077144 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x32d93cc8 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3b0df9aa rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4286bf44 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x55a3beb6 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x65fce8e7 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7250e2fb rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7d980cbf rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7e35efb5 rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x85127fce rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9e20630e rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa0935760 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa3b47674 rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc9cd5453 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x596fdc39 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5cea239b rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x614be037 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x64640d44 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x651e2cff rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x66c62268 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6e1ba010 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x73e1b9b0 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x79401d05 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7c4d258a rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x822876dd rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8848ef27 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8e5c7c61 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9f8d9560 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa771b2b8 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xac4ca729 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xacd1344e rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xae17163f rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xae4918e4 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb405c208 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb7ab80a6 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xba54a753 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbb432752 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbe5ce2bd rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbf7acd91 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc209fc8d rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc7da8779 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd24f48bb rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd3d6c0dd rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd5d867e7 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd5ddcd2b rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe9de799b rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf52e99bc rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfbd4af68 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfe97dfb4 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x57a35357 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x595e576f rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x9f154f6d rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xcf8dbd11 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0db4fe7e rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0f1eda91 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x11450cb6 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1a59ea4e rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1ce79009 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2637bfd6 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2fd6a0a7 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x46e7bd9e rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6438c582 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7013ef6d rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8c6a3aec rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x91dcf52e __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x95b30e65 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9ca3bce5 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa7c5394c rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xad82c6dd rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbfc089fe rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd0df8f42 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd61e66d8 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_pci 0x2689de5e rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x9ea37423 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x5d3d4a5e wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x86990613 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x89a7cfa6 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xaa496026 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeedb2842 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xaef29a0a rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x3e6a82b5 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2a87bbfd wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x313fcba2 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x63bf43b5 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc63dbe2e wl1271_free_tx_id EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x595f8792 fdp_nci_probe EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xce730385 fdp_nci_remove EXPORT_SYMBOL drivers/nfc/microread/microread 0x4ab90c59 microread_remove @@ -3884,7 +3773,7 @@ EXPORT_SYMBOL drivers/nfc/microread/microread 0xfb1bb588 microread_probe EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x775ebba6 nxp_nci_remove EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x78de3be7 nxp_nci_probe EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf872b69b nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x92ce1d20 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xe2233f0c pn533_recv_frame EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x24ab89ef pn544_hci_probe EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xb1f84788 pn544_hci_remove EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x0cfd1f92 s3fwrn5_probe @@ -3895,6 +3784,7 @@ EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc0c5154b 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 0x13d8ea2f ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x17e861c4 st_nci_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x18d70492 st_nci_se_io EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x37fd2833 ndlc_remove EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x453b7d8c ndlc_close @@ -3902,19 +3792,18 @@ EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x640099b7 ndlc_open EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x663c7e8e ndlc_probe EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7623e3ba st_nci_se_init EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8e001e4f ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa2678ddc st_nci_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf9a1c305 st_nci_se_deinit EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x05a5cfd3 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x14e1590c st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x292c6d13 st21nfca_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x419c362d st21nfca_apdu_reader_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4817c4cb st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x52da9434 st21nfca_hci_loopback_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x56088f23 st21nfca_im_send_atr_req EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5bd1608a st21nfca_connectivity_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x66beac17 st21nfca_dep_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7ff17366 st21nfca_hci_remove EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa97df98d st21nfca_dep_init EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xabca99cc st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xae33b8cf st21nfca_hci_loopback_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbf5dc396 st21nfca_hci_se_io EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc8408548 st21nfca_hci_discover_se EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe0cd1af9 st21nfca_hci_disable_se @@ -3993,172 +3882,171 @@ EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd2464ede pcmcia_parse_uevents EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xf202693b pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x47665348 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x56691dcc cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7cd26bcc cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x0b8ae397 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x2063bebe cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x2cef8a60 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x82b1fc55 cros_ec_resume EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xfcfd4379 cros_ec_register EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xfe37c7bc rohm_regulator_set_dvs_levels EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xaf1c9ecf qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0a662273 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x19e597da unregister_rpmsg_driver EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x288747c4 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x28a48cce rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2d02acf4 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x31a5fcc9 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3818b0d9 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3978176b rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3a32f69e rpmsg_trysendto EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x43c295aa rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6ac64a80 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x847c26ca rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x87d72b2f rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9b533f1e __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9f82130d rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa1fd7bf8 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb1b6af98 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb26a589d rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xba37ebdb rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc4ffae41 rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd03e8bfe rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe0062d67 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x8f913e27 rpmsg_ns_register_device -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x19e8c284 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x45ffb2a5 scsi_esp_register +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x65771efd rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6d75a0eb rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7cf741ca rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7d2a132e rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x84e9218b rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xde4d0fd9 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe9122950 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xed5314fd rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfc790ed8 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xcc277c1f rpmsg_ns_register_device +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x161090ee scsi_esp_register EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5e462f58 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa5b25844 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1a05da2e fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x38fc04a6 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x47e7c759 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6395661f fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x68372471 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7887d957 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x90a4a5f8 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa7d2081b fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaf979a8c fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd80b37a7 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf8cfcf8b fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a45a033 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0caefc3f fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d7d54bc fc_eh_abort +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x70864b5d scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x934c4784 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x99b780d5 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x525da920 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x71300904 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x76130fea fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x957a229c fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa77e8703 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb0795979 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb22be66b fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xea8bb628 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf42f1c10 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf56d3ff2 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf918d68a fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x039cd986 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d4fbb23 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f749488 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12ab537e fc_fc4_register_provider EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13bf3bc3 fc_rport_terminate_io EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13eeff69 fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1462eb5e fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x17ddc078 fc_exch_mgr_free EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2188ce48 fc_fill_reply_hdr EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a3c4686 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d588d58 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3099f268 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30d1dea4 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x313915c3 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a949bad fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b9109cd fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3fe66af4 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x416fc238 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4386a8f0 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x466e88d5 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55932f3c fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x58268ff6 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26aef211 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a85b2be fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b30c160 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2dc18ac3 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2fda787b fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x304cbb74 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30baacf9 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31179b71 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3e26b102 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x404863b6 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ca44421 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5214960d fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5317152e fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x532aea17 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x561d3dfb fc_rport_login EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5a8fb463 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e1229fc fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x72008217 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x71d5f253 libfc_vport_create EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76d4e505 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a625588 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x784619e2 fc_vport_setlink 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 0x82dea551 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83a55044 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x84a2eb8a fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ed9ab1a fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f897205 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x953c74ec fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97937cc3 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87b8f577 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x880d996e fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8905effc fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a7d4aae fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b097f45 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b488bee fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d4852e4 fc_exch_mgr_alloc EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97b79120 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98a5e8ed fc_get_host_speed EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e3c162b fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e9b92b6 fc_get_host_stats EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9fd2f61a fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0a0f651 fc_vport_setlink EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa931a00e fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xab99dbe2 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad80974e fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae0da1ad fc_lport_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb5ac512 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbdfc73e9 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0c92403 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2b1ef5f fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc647b067 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc7c08c62 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3bf34ca fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb5422ab4 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc495ced1 fc_exch_seq_send EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca81018f _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcaeb08e7 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdcfde822 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xddc954e5 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf4c7d20 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb96fe2c fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce168112 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0ff2b5c fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3981985 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8565633 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd95296dc fc_fcp_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe07e8965 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe0910fcf fc_linkdown EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe26981ed fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe41a44ad fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3d8357c fc_lport_recv EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe6e9e841 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0ff2ff9 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1bbff2a fc_exch_mgr_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2ef259b fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf32a6f2f fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf47a7c2c fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf7e9f9b3 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf47c11ff fc_exch_mgr_add EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xff9ee77a fc_disc_config EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa26ea134 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa7ce2a24 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf1dd67d6 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe7ac1740 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe8813a72 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xea49f918 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 0xe5291ae3 mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x202ad199 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x24b15068 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x35e97949 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7f1d64c5 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7f52c0f9 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x811da58d qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa87b7182 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xabc6ee49 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb4cd6589 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc8a5a369 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcfd3751d qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf7cc944f qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1436fa4a qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1fc2e5ae qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x20b6bd39 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x244dbbc9 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5da5ef3e qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8aef8711 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8b738aeb qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9e092697 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa537c8ff qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xaffc17ac qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd6df4958 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdf215741 qlt_stop_phase2 EXPORT_SYMBOL drivers/scsi/raid_class 0x63715648 raid_class_attach EXPORT_SYMBOL drivers/scsi/raid_class 0xd77b4490 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0dcb8ad9 fc_host_fpin_rcv EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0de7d32e fc_remote_port_rolechg EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x15a8d1fd fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1a654eb2 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x24acfeee fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1ffadeb6 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x20ac09f3 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2a2aa79b fc_host_post_vendor_event EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x373e979a fc_block_rport EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3a80a800 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x47027235 fc_vport_create EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x57810a25 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x68fff6ba fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7904dcc1 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7b7ee6ee fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8cf4ecc5 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaea32d13 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb8bdbd0e fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbd498603 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xca0bf861 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd090f9f2 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5b3d1d39 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x615b6668 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6530cb2c fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7c8b6d9c fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc2fa4b41 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xca8d76c2 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xce71cbec fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xee56cced fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfebf19cd fc_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x051772e7 sas_phy_add EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x170c04f0 sas_port_add EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1f3fbb95 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x220d0031 sas_get_address EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x22233f22 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2b991e34 sas_remove_host EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2f318cc6 sas_rphy_add EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3af1acf5 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3cfb23df sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x41983ef2 sas_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x47a27743 sas_rphy_unlink EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4f94a0a6 sas_rphy_free EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x514b363a sas_port_free EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x59125729 sas_port_alloc_num EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x663daa4a sas_port_delete_phy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69ffce33 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x729cbdb6 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x79a70d06 sas_remove_host EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a3406b2 sas_port_delete EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7f7398fb sas_expander_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x87d1529a sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x90c6cd03 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9a929618 sas_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa12eb19a sas_phy_delete EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa6e14af6 sas_end_device_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xad89a84f sas_port_alloc @@ -4166,32 +4054,34 @@ EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc1251fd5 sas_rphy_delete EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc43c5f54 sas_rphy_remove EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6c8a006 sas_port_mark_backlink EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcc87d178 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd5e1ae5a sas_get_address EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdc87ba95 scsi_is_sas_phy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf41b7569 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf6b42d85 sas_release_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x62bdbff1 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x62fe220d spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7e0f77ae spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa664314a spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd9f0f98a spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x254a280a srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3ede2bb0 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x976787e6 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9b919f12 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd4a535a3 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xea1f5fe0 spi_release_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2b71889a srp_reconnect_rport EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x36e4fb72 srp_start_tl_fail_timers EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x68dabafb srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x99591f6e srp_timed_out EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xba56f924 srp_rport_put -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x87a7e276 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xfe8b4fb5 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x14f9ae7f ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x213c64d7 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x2a4f7589 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x3ed4703f ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x710bb1e6 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x999f8ff0 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xb20c7fdd ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd3c62d3b ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x1a7d5b31 ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x7416300b ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x336edbc4 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xf732cada tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x50e14b96 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x573629da ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x7348ecfa ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x75189e9c ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x8966ea01 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x8ab100df ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xaccd2399 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xdc0df06e ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x8fdd3de2 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xf5fbe4e8 ufshcd_dwc_link_startup_notify 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 @@ -4245,25 +4135,25 @@ EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xfc88a300 geni_se_tx_dma_prep 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 0xc6df3248 qmp_get -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x04bc0d72 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0885bd51 qmi_add_lookup EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x163fba0b qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x178e23ad qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x1ed3a47d qmi_add_server EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4ef49ba0 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x35d185ca qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x45208b9e qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4e6bc57a qmi_handle_init EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7871d88d qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8ea5b8ef qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xcd87696d qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xdf9cbbb4 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe24d3c23 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe26cf621 qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xec9cd08e qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xff45d135 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc7457a13 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc83e5e7a qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd95d9218 qmi_send_indication EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x3abef80b qcom_rpm_smd_write EXPORT_SYMBOL drivers/soc/qcom/smem 0x34b57571 qcom_smem_alloc EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space EXPORT_SYMBOL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys EXPORT_SYMBOL drivers/soc/qcom/smem 0xeeffa750 qcom_smem_get -EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0xe3e9f9df qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0xec537416 qcom_wcnss_open_channel EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x135479b4 sdw_read EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1c394b60 sdw_bus_prep_clk_stop @@ -4315,7 +4205,7 @@ EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x69af1d66 cdns_xfer_msg_defe EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x74c84bdd sdw_cdns_pdi_init EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9053fad6 sdw_cdns_check_self_clearing_bits EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb028f329 sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd07129cd cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb3e1bf77 cdns_set_sdw_stream EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe0a4512d cdns_reset_page_addr EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe4ef1a0c sdw_cdns_init EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe8ca9161 sdw_cdns_probe @@ -4342,150 +4232,149 @@ EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size EXPORT_SYMBOL drivers/ssb/ssb 0xedb6f6cd ssb_pcicore_dev_irqvecs_enable EXPORT_SYMBOL drivers/ssb/ssb 0xf6c58fc8 ssb_bus_powerup EXPORT_SYMBOL drivers/ssb/ssb 0xff16461a ssb_bus_suspend -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x11e81e03 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x13d3fc15 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x077d5e4b fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0fec75e6 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1b53dfec fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1c2460db fbtft_write_gpio8_wr EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1f12e92c fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x24a802c2 fbtft_framebuffer_alloc EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x29bbe2db fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4afa3b72 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x548afd8c fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7140fd8c fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x783becbb fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x95817413 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4c37875f fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4e937eba fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5dafbf27 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x619185c0 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6f7c7985 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7c0ae693 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x915c1688 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x976e0561 fbtft_framebuffer_alloc EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9ac2b5f1 fbtft_register_framebuffer EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9b9fa66e fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9f2e2d60 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xac35f424 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc0fde862 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc760e8d3 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcf503ae9 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd3b9d1cc fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd706a817 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe235199e fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3593694 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9c505b5f fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa243584f fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb866011b fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc55ed3b6 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc82067b9 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcd2e96c7 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdf8a6aba fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xed719b16 fbtft_write_vmem16_bus9 EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xed9c1d46 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf5945008 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf7bd637a fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf973ebc3 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x102b290a gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x26bb1236 gbaudio_module_update -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x5d0469f3 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x0709fe03 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x12e4c5b8 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x595b4799 gbaudio_unregister_module EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xac34e2bc adt7316_probe EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x8ee20f1b ade7854_probe -EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x0fb50681 sp8870_attach EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x2aef6043 videocodec_detach EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x39fc6da7 videocodec_register EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x3c98752e videocodec_unregister EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xb7356381 videocodec_attach EXPORT_SYMBOL drivers/staging/nvec/nvec 0xab3153ff nvec_write_sync EXPORT_SYMBOL drivers/staging/nvec/nvec 0xc8765f7d nvec_write_async -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x054b4334 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x07199bf1 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01686648 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x04f906c4 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c85ae05 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x14b51c0e rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ac81e0d rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1af16595 rtllib_ps_tx_ack EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x27932e8e rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x29d7d271 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e3795b8 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e7a946c rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32e6a98e rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3418a945 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a14036b HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3d5648b9 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x43653eac rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x45b0a92e rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x49790cd7 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4b36b8c5 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d531fee rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51225cac rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a673023 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b502c2f alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73c4e560 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x742ba8b3 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x78285c33 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x788375b8 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b7baaf3 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8580e477 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8660bf27 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8779b2d5 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9106522c rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a8b2d41 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9da48ad8 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8968d6c rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb084de9f rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3665001 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3bf6dee rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd3402bbd rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd36181b8 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd87931ab notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd8f8e81e rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc420858 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x253423da rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f088c06 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a1b7254 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x42e15f33 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x43400c40 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x481f06d9 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4a62a570 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x545f0751 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x585a5faf HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5bc75819 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x62f6619a rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6744b819 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x68090f44 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6abed75d rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6e67f953 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7663410a rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x76de585c dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x785835e1 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8141c90c rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x878a089f rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x889cb202 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8978b9e2 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9152f6af notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x934bec5e rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa1b131c4 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xad186815 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb334af6b dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb59fd72a rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5d72cea rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb767b075 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc118f8f5 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc478de9e rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc5b83dcd rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd37e7bbd rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd7201c62 rtllib_wx_set_rawtx EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe0871be3 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe32c938e rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xedaa8265 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xedcc1431 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeef9a712 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xefc7c4ed rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xefe3e3dd rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf032a47f RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf6a4b5f1 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf874fada rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf9b363d8 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x076a69f6 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07c9ad82 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07f5410a ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1036f73b is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x14aacf36 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1bd31362 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe1fc0489 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3727667 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe575cd65 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe755f1ac RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed6493bc rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef8aa3bb rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf48ad140 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb1f832b rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x022e532b ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08ffdbf3 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x147d35a0 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b509e8c ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c047418 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d18837b ieee80211_reset_queue_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x25530a67 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e423741 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b8c08c2 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3ca413d7 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3dd1776b ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4bc73780 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4c78900b HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e2484eb notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4f20d8a2 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x52624255 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53d256ba ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x54beb59a ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5588510f ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57309a2c ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6cd11a4e ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72a0754b ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x75c49f4d ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7632af41 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7800168b dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a6c57a3 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x80acb933 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8129a92b ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8b125d60 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93713c2d ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x948079e4 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x96ce1f08 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9e56969f ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa255f819 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa70804d7 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa890bc4f ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaaf3a047 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0f3dd02 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb14a4f86 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0d0566a ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x263297bc ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x270a6fab ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2ae8d7f8 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x43408de6 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x48560328 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d82e074 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4f86dae6 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x51c64873 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x52ce096e ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x54dd04be notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5705a87c ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x58b0cb93 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a0ba431 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5adc6e70 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e63b7d2 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x62a1f380 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x64164a11 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7c2b7fa1 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7d411b66 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7e6e2212 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x83ca882a ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x84b41443 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x84d0a5fa ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x866bb073 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8678a6ed ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87b17a88 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x98ff8064 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9e901399 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa7449c04 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xac82fced ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xacc16e39 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xadc9b5ad ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaec7a15e ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xafbf61eb dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xafcc78b2 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb089e563 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb08d4815 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0fcebc0 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb20870cc ieee80211_wx_set_rate_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4ab29ce ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd6197326 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8f05e8f ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xddc2e875 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdeebb974 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1f56455 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe311deed ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc4048437 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd860063 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2731195 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd60f9cbc ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdde88e45 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdeca5532 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe8950d84 ieee80211_disassociate_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed55b0ea ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xef75ef42 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf5536946 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf60fb0fb ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc3eeadd ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfe8db7e4 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf1b788df dot11d_scan_complete 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 0x327c3232 vchiq_msg_hold @@ -4502,133 +4391,133 @@ EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc407cff0 vchiq_msg_queue_pu EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc5e8778d vchiq_initialise EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xcdcafaf9 vchiq_shutdown EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe95e0941 vchiq_close_service -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x04305360 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0af30cfe iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x111b06d9 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0638bd21 iscsit_logout_post_handler EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x11443974 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x136e7845 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19392423 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1aa3873e iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1a0ba10d iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c4559df iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22fd72bb iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ed4428a iscsit_build_r2ts_for_cmd EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ff7282b iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x337d3bb5 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4898b34e iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4cce7e7e iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5081d19a iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d2531a0 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5fdc001e iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6530e229 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3ed55c7d iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42e4e3ba iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4aba5fc5 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x56af2075 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a92943b iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5eaf8442 iscsit_setup_nop_out EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6975500a iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7157899a iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x76b632a0 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8a93b63b iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ace8d67 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b1cf016 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8da3d75b iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d8164cb iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x750601dd iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79bc0ae6 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x846fa277 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8eb5d68b iscsit_build_reject EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ebf562e iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9058f5b2 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x910f2ba0 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96668cfb iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x991b6dae iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x998ff697 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9a0b9585 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ecd48ef iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x95a65989 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x991a8536 iscsit_reject_cmd EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9f44fb99 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa09b0340 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa23ac1f8 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb605d4eb iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6328baa iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa74122c4 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae073250 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf17afd3 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb16e1ba4 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb34212c1 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb7b3087d iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8ab010d iscsit_find_cmd_from_itt_or_dump EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbad91d31 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc18bd15b iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc269eb56 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc771f836 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcba7f7d2 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb9fbff6 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe7c8d11c iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc7cb8f3a iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc89b65cd iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcba28147 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd1144a6 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd73c095 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3a67ef1 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd7888ba0 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd9987865 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe11c2347 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe688cb02 iscsit_find_cmd_from_itt EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xecc87a5d iscsit_increment_maxcmdsn EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf8d6b5e6 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/target_core_mod 0x05f4d992 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x07c73012 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf35fa5ff iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf781075c iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/target_core_mod 0x020af86e target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x04f02a3c target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x056b0617 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x06cfd6d3 transport_generic_new_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0ae0b155 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x0be9476d target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x0c6a958b target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x0def631a passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x10947c51 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x124615ab target_wait_for_sess_cmds EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x25788831 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x27725714 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x28209092 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x2c6a747e transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x2cfa2da6 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x3040c73e core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x14d03c5d passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x1966b080 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1eeca265 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x224a8ed0 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x26af0091 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x26fba19a transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b25f24c target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x2cf5d4f6 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x34d0f535 transport_init_session EXPORT_SYMBOL drivers/target/target_core_mod 0x361b1762 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x37b8eaf4 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x388b5209 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x399a8bfc transport_generic_request_failure EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3bc6382b target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x3e4dfbf4 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x41f5fd01 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x41f7f028 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x44066120 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x458466c5 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a90ae3f __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3df8bdb9 target_show_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x45e6f52c sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x491e8131 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e0c83bf core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ecf619c passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ee39981 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5890b6f5 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x58ad1dda core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x6287a892 target_show_dynamic_sessions EXPORT_SYMBOL drivers/target/target_core_mod 0x6287c345 sbc_get_write_same_sectors EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x63c27af0 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x6506a4a6 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6613d35d transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x6971a899 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x69ba7e26 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x69f9ad1e target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a6e14e6 target_nacl_find_deve EXPORT_SYMBOL drivers/target/target_core_mod 0x6acb4aad spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x6c77d68b target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x6d8b2795 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x7436f10d sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x74a90e12 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x75e0a327 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d72fc0c transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6fbd472a target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x76bd2e69 transport_kunmap_data_sg EXPORT_SYMBOL drivers/target/target_core_mod 0x77df8433 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x791b40c1 target_setup_session EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7e3a3e47 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x88635cae transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x89ce075f target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8c64e884 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b44bc05 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c1843cf __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d7eda22 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x858d535e core_tpg_set_initiator_node_tag EXPORT_SYMBOL drivers/target/target_core_mod 0x8d7adef6 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x8debb884 transport_wait_for_tasks EXPORT_SYMBOL drivers/target/target_core_mod 0x8e5b998f spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x9051485f target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x983cd433 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x9a334a05 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b9e9fbd transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x9ba3ec22 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x9d2d23f1 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x9d46365a target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xa0218335 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa0854313 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xa4ed78dd target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xa67b8d03 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x919a8100 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x94909224 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x988839b8 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a5c2dcd transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x9dd87468 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e112206 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xa084d413 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3930dac transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3c5ecd6 core_tpg_get_initiator_node_acl EXPORT_SYMBOL drivers/target/target_core_mod 0xab70b691 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xacd59f20 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xb6c61109 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9c99701 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbb2ec05d transport_lookup_cmd_lun EXPORT_SYMBOL drivers/target/target_core_mod 0xbb49d2ae spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc21a5bb target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xbe990734 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc728b9bc transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd517c71 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xd0708b77 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xd0f2eaa6 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xdbb3ad6a target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xde0f6ffb transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xdff4869f __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe1e7d5c1 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xe2072e83 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xe3f84e31 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xbc76e3ec target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xbdfc9c89 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xc355bfd0 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xcac818d1 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4bfbd1a transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xdc4a1a63 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe15e9492 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3421e4a transport_backend_register EXPORT_SYMBOL drivers/target/target_core_mod 0xe534d6d5 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xe8246ec9 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xee8d3ea0 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8631ee4 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xee8da65c core_allocate_nexus_loss_ua EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf446bb72 target_put_nacl EXPORT_SYMBOL drivers/target/target_core_mod 0xf7949731 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xf7dc65ab target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf7f23ce1 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xfe84bb4e transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xfea07df1 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x147f172e usb_cdc_wdm_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa46ea3c target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xda335736 usb_cdc_wdm_register EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x4d8d6239 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x3b76a5b8 sl811h_driver +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x0a77a61b sl811h_driver EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0125dd2b usb_wwan_close EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x05787f3f usb_wwan_tiocmset EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2270b732 usb_wwan_chars_in_buffer @@ -4758,8 +4647,8 @@ EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x9df80c96 w1_ds2780_io EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xc6942846 w1_ds2780_eeprom_cmd EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xb2630b33 w1_ds2781_eeprom_cmd EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xdb6d1547 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x0c61b8f1 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x36c18885 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x2fdc3c29 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x34f008ca w1_remove_master_device EXPORT_SYMBOL drivers/w1/wire 0x7dd62da6 w1_unregister_family EXPORT_SYMBOL drivers/w1/wire 0xf89238a5 w1_register_family EXPORT_SYMBOL fs/fscache/fscache 0x01ff2fde fscache_operation_init @@ -4804,11 +4693,11 @@ EXPORT_SYMBOL fs/fscache/fscache 0xe224b62d __fscache_relinquish_cookie EXPORT_SYMBOL fs/fscache/fscache 0xed0dcc74 fscache_add_cache EXPORT_SYMBOL fs/fscache/fscache 0xeff8fe3d fscache_withdraw_cache EXPORT_SYMBOL fs/fscache/fscache 0xfae8661c __fscache_uncache_page -EXPORT_SYMBOL fs/netfs/netfs 0x21787343 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0x5138a831 netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0x74f36cc9 netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0x0bef550b netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0xa57d7b4a netfs_readahead EXPORT_SYMBOL fs/netfs/netfs 0xc3a6c39b netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0xf72bbf0a netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xc4b7c3dc netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0xe61817f1 netfs_subreq_terminated EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active EXPORT_SYMBOL fs/quota/quota_tree 0x0a117327 qtree_entry_unused EXPORT_SYMBOL fs/quota/quota_tree 0x20e96aa4 qtree_write_dquot @@ -4921,548 +4810,548 @@ EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams 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 0x10296575 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x398090ae lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x909554b9 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xbc78cfb6 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xe3c39e81 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xf91f6325 lowpan_nhc_del -EXPORT_SYMBOL net/802/p8022 0xbcc3ff58 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xd9bed9bd register_8022_client -EXPORT_SYMBOL net/802/psnap 0x15f3b724 register_snap_client -EXPORT_SYMBOL net/802/psnap 0xd8367fb1 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x00e51791 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x12cf2275 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x1604837f p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x1c86f4b1 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x261f7115 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x2b24f5bd p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x34c30a4b p9_client_remove +EXPORT_SYMBOL net/6lowpan/6lowpan 0x0a580d80 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x2c865b5d lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x3bcf2802 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x9262bf22 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xab5d8ed3 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd8b9ff39 lowpan_unregister_netdevice +EXPORT_SYMBOL net/802/p8022 0x66bf6a73 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xbba088c3 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x3289fb7c register_snap_client +EXPORT_SYMBOL net/802/psnap 0x51e8723e unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x1323a86b p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x152d8585 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x16e7cb69 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x172b7b69 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x18e846a6 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x20a82716 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x23cacb9d p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x33668b1f p9_client_link EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x40ac511c p9_client_getlock_dotl EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x4427668f p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x4c4ef38e p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x59958254 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x618f7779 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x65ac3fbd p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x665f22cf p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x69dd61dd p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x72cc78c5 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0x8764dd32 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x87e99ec3 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x8e056911 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x925f5f4c p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x45115db7 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x505be611 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x561e93c8 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x57833f9d p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x5b59191e p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x5d7d11a3 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x60bf6a0e p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x6d5cf96f p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x76a85b13 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7c879e9a p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x83c10e62 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x89f3d4f4 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x911870c2 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x938b56cd p9_client_create_dotl EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0xa5d9d0b4 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xa67128d8 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xac1fa99d p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xa97e8add p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xb4d99ae9 p9_client_open EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xbb89082b p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xbb9ba188 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xb8f7acd1 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xbb4d6f5b p9_client_fsync EXPORT_SYMBOL net/9p/9pnet 0xc04ab781 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xc222dfb0 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xc4ba1551 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xc71449af p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xc668234d p9_client_symlink EXPORT_SYMBOL net/9p/9pnet 0xc77d61dc v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xc8555db3 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xd0c08ad5 p9_req_put EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd6cf0e16 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xdaa478db p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xe1daeed3 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xddd7ae1b p9_client_create EXPORT_SYMBOL net/9p/9pnet 0xe2520c19 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xe2caad18 p9_client_destroy EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe830a68a p9_client_disconnect EXPORT_SYMBOL net/9p/9pnet 0xecdc37a1 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xf0d4184b p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xf3d13a33 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xf0a066e8 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xf2a75b42 p9_client_clunk EXPORT_SYMBOL net/9p/9pnet 0xf46b099e v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xf81681be p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0xfb21c64a p9_client_create_dotl -EXPORT_SYMBOL net/appletalk/appletalk 0x8a27ac76 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xaf473f68 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xbfdaadea aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xe056c4e7 alloc_ltalkdev -EXPORT_SYMBOL net/atm/atm 0x14d09b5e atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x1d402cb5 atm_alloc_charge +EXPORT_SYMBOL net/9p/9pnet 0xf5f39dd6 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xf5fb8a09 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xf7f17f39 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xfc34107a p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xff1008cf p9_client_write +EXPORT_SYMBOL net/appletalk/appletalk 0x4caf736e alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xeb5777ae atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xeee00f87 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xf65e8369 aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x0553b62d atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x16ff43be vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x189e27ad vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x1c7ff323 atm_charge +EXPORT_SYMBOL net/atm/atm 0x1d98b57f deregister_atm_ioctl EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x303ffbf9 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x361ab2c3 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x3bf22deb atm_dev_deregister EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x4a6f73bd vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x4b2caf00 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x4c80f5d3 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x4e280da1 atm_charge -EXPORT_SYMBOL net/atm/atm 0x7aaf78c9 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x802a5341 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x87863c3a atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x6eed91d7 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x76dbf916 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x9e6fefd8 vcc_insert_socket EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa83b5765 register_atm_ioctl EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb2fb2784 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0xd3690690 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xe07a818a register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xeea0ffef atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xef0f88db atm_dev_register EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x0475f24b ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x0ca30bbf ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x0eba4959 ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x2173192c ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x17503509 ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x250d5e14 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x2cfaf1de ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x3a56841a ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x386dfc99 ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x4c5ce55b ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x4931142b ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x4bdc8e4b ax25_listen_register EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x5ad6e120 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x8957e7c1 ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x9f643c4f ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xcb382952 ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bluetooth/bluetooth 0x00b5ead8 bt_sock_unlink EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b61ca7e bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0e7ecb0f hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x12d8354a bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x180a2966 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x07da1a1f bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x08163122 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b663049 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ca0f713 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0cc86f41 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f9dc795 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x10bede4c bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x14b88a79 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x15455a93 hci_set_fw_info EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2aca46aa bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x331074cf bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x33a2ed77 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3a11f515 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c2de2c5 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3da369aa hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x424151c8 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x433fd77b __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5031701a hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x607386e8 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x64d97232 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x65390d81 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x65bd7918 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x65f3a167 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x67d06fef __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x69dab0d5 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6beca6ec hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c7f1ff6 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6dc6d402 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x73ad782f hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2421252a bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x288d4623 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x300b0b52 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ea8eaa0 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x411dcd2e __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x44d74c38 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4555fbb9 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x45a20d7c hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47154c2f hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x690ace10 l2cap_register_user 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 0x85c4bf9e hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7cb1126c __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7d1d6b99 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7f80e191 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x88b2a8b5 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e33a709 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e5bc42d hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e8f5880 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8f0f78f3 hci_mgmt_chan_unregister EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x944a4f0e hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x950d303c hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x97eda396 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x982c95cd __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e42bcf3 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa284b14e hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa2efeff6 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa39f9246 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6d14439 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xacdf8568 hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb23ebf4c hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbbeb96c8 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc20bd434 hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc20d63b4 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc22c58a l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xccf6de2a bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf78391e bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9810aec1 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9b261756 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9bdee4a7 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4a2aac9 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa7fe2014 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8744755 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa96f63e0 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb621b1a0 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xba48a73a hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbb6dbbce bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbe6e9dbb l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc1d4aabc bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2c751f8 l2cap_chan_close EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd79fd53b bt_sock_reclassify_lock EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe2bdaf58 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfb4f09f7 hci_resume_dev -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x06726418 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9ec8f474 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xbf9a33c6 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc603ebb7 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd61234ad ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdb12f805 ebt_do_table +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe137c092 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7b86e05 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf18957be bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf996ffbe hci_recv_diag +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0ad8a829 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x40d6d73b ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x555cb4e2 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x91edd8e4 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa809376b ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc0ff4641 ebt_unregister_table EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x1d3b3270 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 0x4a8b46d6 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x5c726bb4 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x7a022889 caif_disconnect_client EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x918883aa caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xa3306f2d caif_connect_client EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xcfb883b6 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0xdba01b3f caif_enroll_dev -EXPORT_SYMBOL net/can/can 0x0f1975ca can_rx_register -EXPORT_SYMBOL net/can/can 0x3d075dbc can_rx_unregister -EXPORT_SYMBOL net/can/can 0x43819a66 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x4a94d162 can_sock_destruct -EXPORT_SYMBOL net/can/can 0x62cae2b4 can_proto_register -EXPORT_SYMBOL net/can/can 0xb5048298 can_send -EXPORT_SYMBOL net/ceph/libceph 0x03161494 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x03b4969e osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x03e8f48c ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x0424a989 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x043e926c ceph_osdc_list_watchers +EXPORT_SYMBOL net/caif/caif 0xc7eae9c7 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xf14cd876 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x09fd4333 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x24a4a4a5 can_proto_register +EXPORT_SYMBOL net/can/can 0x5f794a90 can_sock_destruct +EXPORT_SYMBOL net/can/can 0x78dae498 can_rx_register +EXPORT_SYMBOL net/can/can 0x9dfecedb can_rx_unregister +EXPORT_SYMBOL net/can/can 0xb0b928eb can_send +EXPORT_SYMBOL net/ceph/libceph 0x02ee8b94 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x0344931d ceph_create_client EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x070a340c ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x0ade7491 ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0x0ffa84b4 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x109c4664 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x123d4543 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x062bd80d ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x076cbe96 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x096765c8 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x0b9add33 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x0c788106 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x0ccd2330 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x0e0544c5 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x103f88a2 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x10852ac0 __ceph_open_session EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x13b5ac42 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x149635e1 ceph_osdc_abort_requests 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 0x1837c3da ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x193f59ac osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x182e13d4 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x185d538c ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x18bef69a ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x1f6f84d2 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x1f8950aa ceph_auth_handle_bad_authorizer EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x227f931a ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x242e7dcf ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x24acbd3c osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x260da68c ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x27c29534 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x2139a95c ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x216eefd8 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x23e13bf1 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x2415f1af ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x2753d833 ceph_monc_get_version_async EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2c1d6182 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x2c978065 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x2d8cb140 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x2da607e8 ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x32e22370 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x35022735 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x35a8540f ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x2c3b7696 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x2c63d7c2 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x316c1296 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x370cd3ae ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x39e9f409 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x3a0d2f2e ceph_cls_set_cookie EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3dda87aa ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0x3e8a6025 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x3ef7753f ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x3f431306 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x3fa3018c osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x40697d13 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x3c9acb9f ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x3e37e9e6 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x3ecf3b1c osd_req_op_extent_dup_last EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x43f40dbc ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x43ffadea ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x45ff4141 osd_req_op_extent_osd_data_bvecs EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x48113429 ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x495bb68f ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x4c0f5be4 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x4d17c4f6 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x4e3c1e19 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x490366dc osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x4c52015a ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x4e8c85f7 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x4fdffcfa osd_req_op_xattr_init EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x53c0dd77 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x55de9471 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x561bff1e ceph_osdc_get_request EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5ae5f4e3 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x57f148c9 osd_req_op_extent_osd_data_bio EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5c45d522 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5c57a1dd ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x5dbc0a70 ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x601eb524 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x61ae3dca ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x5decf608 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x616c341b ceph_copy_from_page_vector EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x678ca0d7 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x6930287b ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x671c2701 ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6b8c67b6 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x6bf70c5d ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x6e8f785e osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x6f0ffac6 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x70c4326c ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x7e58bc78 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x7efbfac7 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0x8246c89b ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x832fd1a0 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x83e03707 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x86ba1dd0 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x86e030b6 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x6aee165a ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x6b32065e __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x6b7a4fae ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x6f3e0d65 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x70af70fd ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x71fc6534 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x736fb448 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7631ad4e osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x78033932 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x7a022e03 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x818b7a54 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x825c1bb4 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x82919bdc osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x85294d03 osd_req_op_init EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x87573f1c ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x8bdd4987 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x8d9c1713 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x9253820f osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x8ced0902 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8d3a34d9 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x8e45933a ceph_cls_assert_locked EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x96c1eb2c ceph_client_addr EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x9bb30b0a ceph_osdc_notify_ack 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 0x9e937097 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x9cbda087 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x9e50b848 ceph_con_open 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 0xa37c27b5 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0xa37ecf91 ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0xa4c2c7b6 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xa55bddb3 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xa0f9a01b ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xa30d91e1 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0xa6234c99 ceph_osdc_notify EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa76c86b0 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xa8ec4408 ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0xac7cc830 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xace54424 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xa72b6f88 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xa8988ac5 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xa91d707f ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xabfbb0e2 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xad178384 ceph_cls_unlock EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xaea06374 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xaf397042 ceph_con_keepalive EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb8926b6f ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xb88f75f6 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xb89e803f osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xb9c53467 ceph_copy_user_to_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 0xc03f6afa ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xc3117022 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xbe7c3624 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xbe994526 ceph_osdc_wait_request EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc3d5a012 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xc6e8bfb6 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0xc783a3c8 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xc7eaeb09 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc47414cd ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xc71208e5 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xca560bb5 ceph_osdc_watch EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcc9ecfd8 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd01626fa ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xd3d0fe9d ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xd3deaae3 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xcc3b87ee ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xcf8414fe ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xd0066c55 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0xd0df4a39 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xd138acc0 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd4c3171d ceph_osdc_put_request EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd992c9d4 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0xdba71be4 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0xdc5c0e18 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xd944fdd2 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xde07e7ee ceph_destroy_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 0xe1340bb1 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0xe1b04f37 ceph_release_page_vector EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe6d9d164 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xe72bec47 ceph_msg_data_add_bio EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xe7bc11d4 ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0xe97b0e81 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xeafc67eb osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xed5dcc10 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xe973d9dd ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xec4b704c ceph_cls_lock EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string -EXPORT_SYMBOL net/ceph/libceph 0xeedb2613 ceph_client_addr EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xef9871fc ceph_osdc_abort_requests 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 0xf0465914 ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank -EXPORT_SYMBOL net/ceph/libceph 0xf846cbef ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0xfe5bc0d4 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xffa94970 ceph_osdc_alloc_request -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x126d1f03 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x5c4f5015 dccp_syn_ack_timeout -EXPORT_SYMBOL net/hsr/hsr 0x9e1107b9 is_hsr_master -EXPORT_SYMBOL net/hsr/hsr 0xfb99d1cc hsr_get_version -EXPORT_SYMBOL net/ieee802154/ieee802154 0x52d2dc31 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x7882579b wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa329202c wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa98d0657 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xabcb94b4 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0xafcd14f9 wpan_phy_new -EXPORT_SYMBOL net/ipv4/fou 0x06061f9d __gue_build_header +EXPORT_SYMBOL net/ceph/libceph 0xf2748cc5 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xf2fe6a31 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xf5747c40 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xf707a44e osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xf7b87c1f ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xf7cef06b ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xfa689f60 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xfc5a8d2b ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xfcea94e5 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xc2cda685 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xccc70664 dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x225bb2d5 hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0x6177e936 is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x31198f84 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x84a62ee6 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe2be6e56 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xefeac2c4 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf8b03a97 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xfb6e1d01 wpan_phy_for_each EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xa579a6e6 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xbc273410 __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xfc1bef2e __fou_build_header -EXPORT_SYMBOL net/ipv4/gre 0xdafe686d gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1ee82c3c ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x239bf4d4 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6b1b9481 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf68652ab ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2ecbf718 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8ed311a5 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xca15691f arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xefcd43f3 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x73cf601b ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x76d477b0 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xaf31328e ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb861f8e1 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x02d4be51 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xaca075ef xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xcd39dc7c udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1faced4d ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2098dd0a ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2d36f122 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9616b880 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9aec130f ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa5842c98 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xae20fc29 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xba5c1e66 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdb898dac ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x00fb0fbc ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1d147a34 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7151bf2a ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x86abd7a6 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x0babe250 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xb753456c xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x571589af xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xa6f01dff xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/lapb/lapb 0x0f0fc35d lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x1530d099 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x240ff9f3 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x5a5f932d lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xb00325e8 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xbc1e3b01 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xcf11c05c lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xe6a023dc lapb_unregister -EXPORT_SYMBOL net/llc/llc 0x044cfa2c llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x2ede056f llc_sap_find +EXPORT_SYMBOL net/ipv4/gre 0xdb440aa0 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x01eabd96 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0caa7041 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7d247511 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xdecb76f9 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x04cae89a arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6b91dc78 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9dbacdee arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc2b30cfe arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x1d656bac ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2a9ab289 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8c9e287b ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa701b229 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0x6a97f837 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x93b56a0f xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xd7c7bcd9 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x039f6201 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x053221a7 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x20896b62 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x63403a6f ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x835bab0e ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9d782a7e ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xba08992f ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbeffb6ac ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfe6659d3 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4f5e6771 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7300325f ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xac3b37bd ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb7759457 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x651d8f78 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xce078cf5 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x62559cbf xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x676bd98b xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x1757f796 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x1bc3770c lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x592b8e37 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x6ab330e0 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x817a3b0f lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x9b5c4db9 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xaa9202d4 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xc3c51368 lapb_setparms +EXPORT_SYMBOL net/llc/llc 0x075a5a7c llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x20cc2cfe llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x2d3433f5 llc_mac_hdr_init EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x4b8c02ad llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x4e093ce9 llc_sap_close EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x60991718 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x6839ba92 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x85f612e4 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x8b176ced llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xd98f6edb llc_set_station_handler -EXPORT_SYMBOL net/mac80211/mac80211 0x01267357 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x019a0bd7 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x0408551f ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x05f21278 ieee80211_proberesp_get +EXPORT_SYMBOL net/llc/llc 0x60730d8a llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x8bec787e llc_sap_find +EXPORT_SYMBOL net/mac80211/mac80211 0x03fbf153 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x04311833 ieee80211_enable_rssi_reports EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x0702b44a ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x08349bfe ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x08a5f796 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x092d6d83 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x09692ded ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x0a177450 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x0ae121f7 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x0bcb5976 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x11c77a9a ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x13abd181 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x124a04ca ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1255f4d9 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x128189c7 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x15d7d0b8 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x167fc97a ieee80211_beacon_cntdwn_is_complete EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x1964334e ieee80211_get_tx_rates 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 0x1a8f69b4 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x1dc905b6 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x1e090cb1 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x29dbce8e ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x29e197a9 ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0x2b134817 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x2fb736da ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x31943194 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x33d984ce ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x357badbd ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x3b1584bf ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x3d6a6931 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x3d7a2409 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x48144fcb ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x4c183f56 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x4d483b61 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x4ffa3d06 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x515266da ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x570bc4d3 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x57592a99 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x58a7e6a6 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x5d7300e5 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x667893ce ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x6889ae5b ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x6abe16b8 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x6b4ab1ed ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x6eb7314c ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x70154b17 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x7cb7fa3f ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x7f9ca77b ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x8008c5c7 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x83bb19ce ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x86f07545 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0x883f595a ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x89e97ed8 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x8ab5ab3a ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x8dc83303 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x8ebff152 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x91ddcb7c ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x97680af6 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x98582095 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x1bada02d ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x1d8bd57e ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x23ac7f73 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x251a65fc ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2c16e8a0 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x2df5d065 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x2e190707 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x310c13d4 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x340da32c ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x362521ca ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x37095f08 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x375a2c08 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x3965e0e6 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x3b84ffcd ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x3c5b8062 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x3ca0a779 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3e9ce660 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x400e1d48 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x408f6ade ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x45638cfc ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x4769d94b ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x4bcc5d00 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x4cbf9af5 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4e254371 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x50a55453 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x532ddb59 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x5365068c ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x599b00c5 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x5ce60d9c ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x600e3e6c ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x6160f22d ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x62a4f217 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x64c3d7f9 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x659ce343 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x66cd5e60 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x6ac9c0ee ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x6ad20614 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x6c9a01aa ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x7347a8e8 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x743bf294 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x7b44e830 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x7d2446ba ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x7f199baf ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x8018d501 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x81eff775 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x8a20ebf4 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x947713ad ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x94e869a1 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x955bd463 rate_control_set_rates EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9a9ecfc9 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0xa13178da ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xa517a0c8 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xa57030c3 ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xaa25ec6c ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xae1fba9c ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0xae7b9370 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xb0432b35 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xb2676e12 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xb6d197b9 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xb71a046c ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xbbd2f3a7 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xbcca509b ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xc0f6a5fd ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0xc33f60c3 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xc40d2007 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xc761a900 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xc78b31c8 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0xc7b4079e ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xca159839 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcaaf8c49 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xcb0c271f ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0xce757330 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xd08c1890 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xd5973237 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd763271a ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xd9103d8d ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xdc6a92f6 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x993749b6 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x9e61cb78 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xa22786d8 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xa7a6e0a2 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xa8dff79c ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xab34abd1 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xac17ef8a ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xad08dcde ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xad0bf1c9 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xaf51e70e ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xb12436af ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb1672829 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xb322bba0 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xb4d2bffc ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0xb5d3c5f2 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xb803c96e ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb92e3d13 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xb9abfe24 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xbf5c8f1d ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xc141db0d __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc57b9fdd ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xc8011970 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xc9db0f45 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xcc81a580 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xcd805fc0 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xcfb859d9 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xd6c113fa ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xd9878f28 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xde80a84e __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xdfb9989f ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xdfc05326 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xe1046cc1 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xe4bc9ff5 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe4f3d0f9 ieee80211_wake_queue EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xe6232353 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xe6ca8690 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xe84badb7 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xea837df2 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0xeb8adbf9 ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xec1c11c6 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xf040f7cc ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xf0870b76 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xf197fc8f ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xfb818780 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xfc725acd ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xfc7d268b ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xfd426812 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xfe1e11f6 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xfeff78df ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac802154/mac802154 0x218d6e8f ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x3ad9c814 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x3f1b6d06 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x85b9e17b ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x8a67d99e ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x948a67b9 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xbad70a35 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xf343647b ieee802154_free_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0c9c015e ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x14e9e751 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1b1251fb register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x20e020b8 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x262376b1 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3fb4ca5b ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x64c9e248 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x94b63dba ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb9748f67 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc06785c1 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcc055969 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd1a9c847 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/mac80211/mac80211 0xe845d0d4 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xec7e9d40 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xedbc9154 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xef1179c3 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xef1a8b4e ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xf1f35974 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0xf70d6fb7 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xf91d814f ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xfcff98f2 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x0bd9beb9 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x37dfb5d3 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x4691143c ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x6196c2f7 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x6d53b862 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xc4daf47b ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xd13be022 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe8d8f373 ieee802154_xmit_complete +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3753d5fc register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x390c8006 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4b221b73 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x50d85836 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x51af6d36 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5f496142 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x637caa3e register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8521aa16 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8bfe9ef5 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x91d9a282 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x993999ca ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9e5d40e7 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc67abd96 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcbd899bb ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcd87c5d1 unregister_ip_vs_scheduler EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe4c386fd ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf748eed6 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfc1f4ac5 register_ip_vs_scheduler EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xad6bcc62 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x8dbb53d2 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x1b322c88 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x2004cf14 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x8a43f000 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xba068ad2 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x3438298d nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x38c32862 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x3cf3a269 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xa0a63daf 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 0x0ebad342 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x15bf99cd xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x1787e5e7 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x1cc5b98f xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x30366916 xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x5cde9fd3 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x7419e275 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x7571b17a xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x92e6b698 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x92f73531 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x95d51834 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x6b9b45c1 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x6ea11ee4 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x83707cf6 xt_unregister_target EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xab7e3e18 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xa5837b02 xt_register_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 0xded5e079 xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xe5a50939 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xf06c5bc1 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xf9dd4e8f xt_find_match EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset EXPORT_SYMBOL net/nfc/hci/hci 0x0c00abc0 nfc_hci_set_clientdata EXPORT_SYMBOL net/nfc/hci/hci 0x0e2893fe nfc_hci_unregister_device @@ -5487,238 +5376,238 @@ EXPORT_SYMBOL net/nfc/hci/hci 0xbf0c97fb nfc_hci_target_discovered EXPORT_SYMBOL net/nfc/hci/hci 0xcc18fc7a nfc_hci_free_device EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol EXPORT_SYMBOL net/nfc/hci/hci 0xf9421549 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/nci/nci 0x054704b0 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x0634d49e nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x198c7a47 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x21a3e770 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x2b512ca1 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x2da720e3 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x303d7cc6 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0x37753de0 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x40e063b9 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x447862b3 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x4f12d298 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x532d969e nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x534c0f3c nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x55ecc88a nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x61be5f4d nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x6830c1bd nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x69dbaa6a nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x6ed5fb1b nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x785c8fc1 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x7fae91f8 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x9911e4f6 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x9ec4b08a nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xa3102d15 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xaac623a0 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xacf7fa4a nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x01edd1f4 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x0a517471 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x12f7c3c9 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x17e2865a nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x1b3adc37 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x29e84b97 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x2e3961d4 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x3316f661 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x3c448856 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x555ec9fd nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x56c1e6c0 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x56d66365 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x575cb0e5 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x68ce5a5f nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x709c17d0 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x719f536d nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x7a53007e nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x7b721eaf nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x7b759a35 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x80e40fd3 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xaceebe74 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xb25fa3a9 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xb4dff705 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xb73fdbd2 nci_hci_send_cmd EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xd3cc621b nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xd4e6813c nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xe15ed669 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xf607b7da nci_send_cmd -EXPORT_SYMBOL net/nfc/nfc 0x07d99475 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x10a9f88a nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x11f65f9f nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x176c4fff nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x2b571b08 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x3e68cfe3 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x5549ba04 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x721a004b nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x77b12591 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x82dcf88c nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x8c143034 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x90ebc093 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x9ed47859 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xa29d20b6 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xbcbf044d nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0xd048a213 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xddbabcc3 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xddcdf6a3 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xe024aafa __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xe7ffd257 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xeae27ef1 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xec01d98b nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xef0dd4ec nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xfae76f22 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xfb1df096 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nci/nci 0xc5b31084 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xcba45a1d nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xe3e9a63b nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xe89039c5 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xed2c1bba nci_req_complete +EXPORT_SYMBOL net/nfc/nfc 0x009eed51 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x13bde3d7 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x2039a93a nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x2087544e nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x3c3d7b70 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x46aaa6ba nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x49ca9978 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x58801571 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x5a3b67b3 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x602800f0 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x6bd5c0b8 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x7baea676 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x993bfa4d nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xa024a8ef nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xa45bb21c nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xaceabba5 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xb9693832 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xc88d4979 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xd26068a2 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xde3b3c12 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xeb506ffb nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xee404f63 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xf575b525 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xfb18fb34 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xfc41166d nfc_remove_se EXPORT_SYMBOL net/nfc/nfc_digital 0x4895ddd4 nfc_digital_allocate_device EXPORT_SYMBOL net/nfc/nfc_digital 0x975f15e1 nfc_digital_free_device EXPORT_SYMBOL net/nfc/nfc_digital 0x97d83a88 nfc_digital_unregister_device EXPORT_SYMBOL net/nfc/nfc_digital 0xf6b11ecf nfc_digital_register_device -EXPORT_SYMBOL net/phonet/phonet 0x31f3f0da pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x5b1869d8 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x5bb665cb phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x63d4ca1e pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xb7ff4cb0 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xca68877b pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0xcae07f0b phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xd1ce0a38 phonet_header_ops -EXPORT_SYMBOL net/rxrpc/rxrpc 0x05c8d1b9 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x10afcef3 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x11b818f4 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x17ea5c9d rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1b49731a rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x26c800d6 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/phonet/phonet 0x07b4f654 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x231c6d6a pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x4ff3f7bf pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x60818a75 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x7308812d phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x8dfd3347 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xb280d3ff phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xfa04eff2 phonet_header_ops +EXPORT_SYMBOL net/rxrpc/rxrpc 0x02921070 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1660e711 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1b7b9fb1 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2284f3a8 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2b31626d rxrpc_get_null_key EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x35f90713 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3d32e503 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4737b05d rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x48ce9a36 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5289f6b6 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5c9c9e69 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x73dee96e rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x99f5fa07 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb7b710a1 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc10d1da4 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc508074b rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xeb72d998 key_type_rxrpc -EXPORT_SYMBOL net/sctp/sctp 0xaecc9b79 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x0cf14e08 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x74c874f9 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf590ce97 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x09ea7cc6 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x0f4ee6ab get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0x8a3ff11c xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xf66ae0ca svc_pool_stats_open -EXPORT_SYMBOL net/tipc/tipc 0x472634ef tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x8e562cfc tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xd4068ee2 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0xe9e9b3f7 tipc_nl_sk_walk -EXPORT_SYMBOL net/tls/tls 0x7757d39e tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x01347dc9 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x03bfab10 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x04040414 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x04743843 wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0x04a78bca cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x0806366d cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x090242ce regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0x09c1e2b6 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x0d147777 wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0x106b43e6 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/rxrpc/rxrpc 0x32fcc18e key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3a5281cc rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4a21ac02 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4c591d00 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x65087914 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x677f925e rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x74a5919d rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x851838f5 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8bfdace8 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x99348898 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x99d62fe0 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9c49bc1d rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9efe64b9 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/sctp/sctp 0x643581eb sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3dac0bc4 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6839e9d0 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7602f891 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x5274e7b3 get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0x550c0e4c xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x844a7431 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xdbce14dd svc_pool_stats_open +EXPORT_SYMBOL net/tipc/tipc 0x4a09dd56 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x8325a654 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x89128817 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xce6ac8ba tipc_dump_start +EXPORT_SYMBOL net/tls/tls 0x8008d78b tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x00831df1 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x06175c93 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x0d53567d cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x0d6c53fa cfg80211_disconnected EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x13d1ab31 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x1576e3e0 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x11c4112c cfg80211_nan_match EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x15a79c3c cfg80211_ft_event EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x197a16e5 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0x1c5e166e cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x1c91c31e cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x197eb574 cfg80211_port_authorized EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1fa0e748 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x20b4d543 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x225e883b cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x1e209226 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x1f497d5f cfg80211_unlink_bss EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x23121cc8 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x26344e72 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x264c0448 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x238927f4 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x258540e3 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x262c127b wiphy_read_of_freq_limits 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 0x29210710 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x28ed4931 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x2a407a45 cfg80211_classify8021d EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x321ab84d cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x34116497 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x362d68aa cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x37b4ca35 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x38cf486a get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0x39b5f93a cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0x3c0b5390 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x3c499e13 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x2b4dc507 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2c5a7d50 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x3144d210 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x374b117d cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3bd9c075 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x3bf27595 cfg80211_send_layer2_update EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x407d9e9d cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x42a45f5e wiphy_new_nm EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x49754f5d cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x4e9daeee cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x4fa430a9 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x4fb63da9 cfg80211_rx_mgmt_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x51c9bdc9 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x55480630 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x57b7c5ab cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0x57d4aca4 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x589f0a29 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x5a7558de cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x5cbc86a6 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x5d4414f4 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x638d85fe cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x64b5d8b0 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x4990fa2a cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x4e4de60c cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x4e940cf0 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x4fbd6d38 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x51b4bf93 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x522dcacc cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x525ac9dd cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x5d6013a7 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x62409d7c wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x6261ca97 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x628d48a1 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x64b9d242 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x6508bc5f cfg80211_tdls_oper_request EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x65321bc8 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x679c9f2b __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x68f92fe7 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x69339dff cfg80211_get_drvinfo EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a2ad931 cfg80211_cqm_pktloss_notify EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6c002a78 cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x717e4abf cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x726ed6bc cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x734d7479 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x6d2cc590 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x713aa70d cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x72cc9471 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x762f5323 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x77b8b6ea cfg80211_unregister_wdev 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 0x7b48bd87 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x7b0dd3f5 get_wiphy_regdom EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x7d0b5071 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x7e57b7e2 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x7e30f215 wiphy_rfkill_set_hw_state_reason EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7f17869f cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x804aa33e cfg80211_tx_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x8ab503ad cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x832a5052 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x832d5997 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x879773e1 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x87c73063 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x8ec9ebea cfg80211_check_station_change EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x9407de69 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x980418b4 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9b84fd60 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x9bcc132d cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x9c8da349 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x91a83fea __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x924fab1b ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x92d4d73b cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x94f4b8ae cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x953d4f74 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x96205c2a cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x98635fbe cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x9a53cb0c cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x9b8b4d73 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x9c38a3c4 cfg80211_rx_spurious_frame EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9f36d247 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa034827e wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xa29918a5 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xa3f24ca4 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xa41accf3 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xa702876d wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xa7cb22da ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0xa85b8c76 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0xa8f1a23b ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xad613658 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xaf4ca916 cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0xaf944618 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xb62115fe __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xa246b6a7 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xa41902d1 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xa46a5573 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xa52b3ab7 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xa56df8ea cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xa5919d56 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xac58860b regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xacc4ee17 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xb032183f cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0xb1302804 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xb3c41679 cfg80211_cqm_txe_notify EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xbbd38f47 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xbddc930d cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xbf44efb1 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xc0b43edb cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xbb24c763 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xbc12ad8a cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xc0441f50 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xc10ad712 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xc124c9ff cfg80211_auth_timeout EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc4586520 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xc5be6ac6 cfg80211_rx_spurious_frame EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xc975787e cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0xc9c3e56d cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0xcb271338 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xc8d28083 cfg80211_get_station EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xd4df72e0 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xcd0b65ca cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xd1f8020f cfg80211_control_port_tx_status EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd56f803b cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xd9c0c84a regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xdac29f70 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xdad9da42 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xd5c680ea cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd6c89920 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd7232272 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xd808d995 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xdb3b737f cfg80211_report_wowlan_wakeup EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdc6f00b8 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xdd6f1544 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xde75e1ec ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xe0e139a3 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xdce4e00d cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xdd3eb95e cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xdf5ee8f0 cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xe04d02ac cfg80211_sched_scan_stopped_locked EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0xe88b6e6d cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0xeceed50c ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xe3a263be wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xe54ef042 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xe553b45f cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xe955cba3 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xeb17af9f cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xeb4544e8 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xec8d8883 cfg80211_scan_done EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf5cd9f5d ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xf8305901 cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xf8accf02 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xfb8cec74 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/lib80211 0x2624ca08 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x442a2ac5 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x67e0f655 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x935ce5d6 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x9a1e25aa lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xcffb3dd3 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/cfg80211 0xfa812f4c cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfd4500ea cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xff047c7f cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/lib80211 0x2f8cb51e lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x441c1e23 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x48a0aeff lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x4c243b30 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x4e8e6a18 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xaffcec38 lib80211_crypt_info_free EXPORT_SYMBOL sound/ac97_bus 0x0c3c04ea ac97_bus_type EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xf0c21e62 snd_mixer_oss_ioctl_card EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl @@ -5942,10 +5831,9 @@ EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf3d4c24f snd_vx_load_boot_image EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfcd93b8a snd_vx_create EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x010e13c6 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x09a4c779 amdtp_stream_add_pcm_hw_constraints EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x14231d5a avc_general_set_sig_fmt EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2ae420bb amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x31650078 amdtp_stream_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x36de8f35 iso_packets_buffer_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x45e6fb6c fw_iso_resources_allocate EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x511a3a13 snd_fw_transaction @@ -5953,25 +5841,26 @@ EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5914d464 cmp_connection_reserve EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x595941fc fw_iso_resources_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6272edf8 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6415a083 amdtp_stream_add_pcm_hw_constraints EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x697eed9f cmp_connection_establish EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x775654ba cmp_connection_release EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7ebb8dd4 fw_iso_resources_free EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8bfba939 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8db19d5f amdtp_stream_set_parameters EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x93444929 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x985ba7da amdtp_stream_pcm_prepare EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9d7de260 fcp_avc_transaction EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa5edfa65 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa69b2454 amdtp_stream_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb177908a cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb583095c amdtp_stream_pcm_abort EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbc0358a5 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc00499e2 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbe5fc32c amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc0becd5f amdtp_stream_set_parameters EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc9cff59a iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd18ba336 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd4670b91 amdtp_stream_pcm_prepare EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd626e407 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd9287cd2 amdtp_stream_init EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xed6dc7ac fw_iso_resources_init EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeff81c74 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfbc321dd amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf113002c amdtp_stream_update EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x6ea5b89d snd_ak4113_suspend EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xc4468baf snd_ak4113_resume EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0322709e snd_ak4114_create @@ -6056,7 +5945,7 @@ EXPORT_SYMBOL sound/pci/trident/snd-trident 0xa62b0a6f snd_trident_stop_voice EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbcf5f24b snd_trident_write_voice_regs EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x18b73936 adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x41dbed32 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xd84d43fe wsa_macro_set_spkr_mode EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x4a8e5d6b pcm3060_regmap EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x7f18d031 pcm3060_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw @@ -6068,83 +5957,83 @@ EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xcf2fafeb aic32x4_regmap_ EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x3a982f31 aic3x_remove EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xf6985db4 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 0x5781e926 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 0x86028b45 wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x98943396 wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x9b8ea069 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 0xa6403dfb wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xcb3baff4 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 0x446eb243 mt8192_afe_gpio_request EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xb3ab2a31 mt8192_afe_gpio_init EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x517ac191 q6afe_unvote_lpass_core_hw EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x9dfe00c5 q6afe_vote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0xafbc9231 qcom_snd_parse_of -EXPORT_SYMBOL sound/soc/snd-soc-core 0x22986644 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xa1c3dced imx8_dump -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0x499fce84 sof_imx8x_ops -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0xb41c0595 sof_imx8_ops -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8m 0xf5f58125 sof_imx8m_ops -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0682aed6 sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0abf2187 snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0ba6e21f snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0ede713e snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1b4245ba snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1c9c4906 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0xa30d76bc qcom_snd_parse_of +EXPORT_SYMBOL sound/soc/snd-soc-core 0x88de42df snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xbd88787c imx8_dump +EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0x4e5ca737 sof_imx8_ops +EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0x71bd4ce2 sof_imx8x_ops +EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8m 0xe70918d8 sof_imx8m_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x033f8934 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x08423ff3 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x08b8c529 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x153ed494 snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1696dc38 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x183c3405 snd_sof_handle_fw_exception EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d7bcd74 snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1e30908a snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23002425 snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2702def6 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368b1165 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d998eb7 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x21749441 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2670329a snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2a6c0db4 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c1ac2d1 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3027308e snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3060d909 snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x30d69637 snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x31f430a0 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x338dbaca snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3669b52f snd_sof_load_firmware_raw EXPORT_SYMBOL sound/soc/sof/snd-sof 0x377560a7 snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x40dd6625 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x45e2a387 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x51a141f4 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3f22de5b sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3f94284b sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4008cdbd sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x420b1b6c snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4924dc69 sof_fw_ready EXPORT_SYMBOL sound/soc/sof/snd-sof 0x542c22a9 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x560cd491 snd_sof_get_status EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5a70e4d8 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5bd683cb snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x601dcea8 snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x60b1165c snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6e4d833b sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x757b7d53 snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7833ba34 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7c6362a9 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x84de3822 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8a4d7a02 sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9555aa71 snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9a3a172a snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9b0f56eb snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa3c24d08 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5c702cd6 snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5da877f7 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6c3886f5 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6f0f5875 snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x761e324d snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8002c650 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x85507b66 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x86c16909 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8e23ac61 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x94a68fb3 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9e4e563e sof_machine_unregister EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa3e7dbb1 snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa56ddbad sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaa930468 snd_sof_dsp_update_bits_forced EXPORT_SYMBOL sound/soc/sof/snd-sof 0xafb6a4f8 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb1899baa sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbecd2b90 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb53d4d63 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb6e97953 sof_dai_get_mclk EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbff7faf9 snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc0374bd1 sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc6276737 sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc6de5943 snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc1d68f5e snd_sof_ipc_init EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc802bb29 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xce6daa4f snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xca237b73 snd_sof_ipc_free EXPORT_SYMBOL sound/soc/sof/snd-sof 0xced8309a snd_sof_runtime_suspend EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd24fcb7e snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd27d47be snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd29d3d8b sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd3482af2 snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd5087d45 snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd43d2e86 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd48fbe88 snd_sof_load_firmware_memcpy EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdc642e19 snd_sof_create_page_table -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe2ee5e65 sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe491f005 snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe7531be7 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe9a66ec3 snd_sof_dsp_update_bits64_unlocked EXPORT_SYMBOL sound/soc/sof/snd-sof 0xea92b6b7 snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xed6c9543 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xed5d4387 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xee3cd7ed snd_sof_dsp_mailbox_init EXPORT_SYMBOL sound/soc/sof/snd-sof 0xee9a5ee5 snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeebd6a90 snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf26fddcb sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfe259c79 snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xffa0a9e8 snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf092b4f9 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf6a72e26 snd_sof_load_topology EXPORT_SYMBOL sound/soundcore 0x02dd9c11 register_sound_special EXPORT_SYMBOL sound/soundcore 0x20c0a797 register_sound_special_device EXPORT_SYMBOL sound/soundcore 0x5772a89c sound_class @@ -6174,284 +6063,295 @@ EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x939c9a14 __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 0x00043b95 inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf EXPORT_SYMBOL vmlinux 0x0017f9b0 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0x001e43ea neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x001fbf46 __sk_mem_reduce_allocated EXPORT_SYMBOL vmlinux 0x00262542 load_nls_default -EXPORT_SYMBOL vmlinux 0x004a0059 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x006eeaf1 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x0071b3ff netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x007b77cd create_empty_buffers +EXPORT_SYMBOL vmlinux 0x0038ea2d shmem_aops +EXPORT_SYMBOL vmlinux 0x0046705c phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x006f6b9a tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x00775ab8 iterate_fd EXPORT_SYMBOL vmlinux 0x00823e0d proc_mkdir_mode EXPORT_SYMBOL vmlinux 0x008a7dfe blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x0096bcc4 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x009b34fd security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x00a81596 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x00b2f668 mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode EXPORT_SYMBOL vmlinux 0x00c5ec8d nd_btt_version -EXPORT_SYMBOL vmlinux 0x00c7011f __xfrm_policy_check EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00e70865 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x00db1882 sync_filesystem +EXPORT_SYMBOL vmlinux 0x00dde0e0 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x00ddf6b4 qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0x00ecc86b acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x00ed8998 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x01085673 devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x0113b7ee of_iomap -EXPORT_SYMBOL vmlinux 0x01179fd7 tcf_idr_release EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds +EXPORT_SYMBOL vmlinux 0x01224197 netlink_set_err EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x012d4a62 tcp_md5_hash_skb_data EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read +EXPORT_SYMBOL vmlinux 0x0133b18a tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc -EXPORT_SYMBOL vmlinux 0x01562c2e __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x0155baba skb_page_frag_refill EXPORT_SYMBOL vmlinux 0x015af7f4 system_state EXPORT_SYMBOL vmlinux 0x016fe48b pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x017397f3 ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x0179752e of_get_mac_address EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x018643a3 _dev_crit EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks EXPORT_SYMBOL vmlinux 0x019b0e85 jbd2_journal_restart EXPORT_SYMBOL vmlinux 0x01a6f223 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x01b4119e mmc_unregister_driver EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark EXPORT_SYMBOL vmlinux 0x01b6faaf vga_put -EXPORT_SYMBOL vmlinux 0x01bda690 vfs_readlink +EXPORT_SYMBOL vmlinux 0x01bbba63 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01c8e3fe ip6_frag_init EXPORT_SYMBOL vmlinux 0x01e1ce72 tty_kref_put -EXPORT_SYMBOL vmlinux 0x01e4edb8 vlan_vid_del EXPORT_SYMBOL vmlinux 0x02011901 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x02017793 keyring_clear EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x020c8973 tcp_select_initial_window EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x021a9e75 locks_copy_conflock EXPORT_SYMBOL vmlinux 0x021f8c3e fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x0223c924 __lock_buffer EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops EXPORT_SYMBOL vmlinux 0x022cd454 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x023399c8 mmc_sw_reset EXPORT_SYMBOL vmlinux 0x02377325 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x02466757 skb_copy +EXPORT_SYMBOL vmlinux 0x023da05b sk_send_sigurg EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user EXPORT_SYMBOL vmlinux 0x02502048 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x0268cf4c security_inode_copy_up EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0286b6a1 xfrm_state_add EXPORT_SYMBOL vmlinux 0x028eb68d twl6030_mmc_card_detect EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate EXPORT_SYMBOL vmlinux 0x02972401 param_set_copystring -EXPORT_SYMBOL vmlinux 0x029c52fd end_buffer_async_write EXPORT_SYMBOL vmlinux 0x02af018f blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x02b0d531 dev_activate EXPORT_SYMBOL vmlinux 0x02b5fe2c cdrom_open EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02c829e9 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0x02db8c25 jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0x02e94c24 default_llseek -EXPORT_SYMBOL vmlinux 0x02ea363b no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x02fc5ef0 file_path +EXPORT_SYMBOL vmlinux 0x02d6dd8a mmc_remove_host +EXPORT_SYMBOL vmlinux 0x02f5215b send_sig_info +EXPORT_SYMBOL vmlinux 0x030f85c4 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x031bc9d0 i2c_smbus_read_word_data EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x03545f6a filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x034d2003 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x034d6217 eth_header_parse EXPORT_SYMBOL vmlinux 0x0357f53b fman_set_mac_max_frame EXPORT_SYMBOL vmlinux 0x0359d7e7 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x0360820d flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x035c26a6 __ip_options_compile EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x03921c82 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x0390283f gro_cells_receive EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03ac293d kfree_skb_partial EXPORT_SYMBOL vmlinux 0x03b408e6 of_graph_get_endpoint_count EXPORT_SYMBOL vmlinux 0x03baa260 nvdimm_bus_unlock EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x03d58dd8 update_devfreq -EXPORT_SYMBOL vmlinux 0x03d7bd53 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x03f2c340 inet_put_port +EXPORT_SYMBOL vmlinux 0x03c2fa30 __phy_resume +EXPORT_SYMBOL vmlinux 0x03d71ee1 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x03e192e1 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x03fb51ba unregister_binfmt EXPORT_SYMBOL vmlinux 0x03fca8c1 of_graph_get_next_endpoint EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram EXPORT_SYMBOL vmlinux 0x0405a2d1 ps2_init -EXPORT_SYMBOL vmlinux 0x0417a068 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x040bd843 seg6_hmac_info_add EXPORT_SYMBOL vmlinux 0x04310c39 ihold +EXPORT_SYMBOL vmlinux 0x04449bb5 udp_poll EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev +EXPORT_SYMBOL vmlinux 0x046975ea register_fib_notifier EXPORT_SYMBOL vmlinux 0x046c709f param_set_byte EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x0478486f dev_mc_add_global EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu EXPORT_SYMBOL vmlinux 0x047ab0e2 configfs_depend_item -EXPORT_SYMBOL vmlinux 0x04836b7b skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x0494fb34 fib_default_rule_add EXPORT_SYMBOL vmlinux 0x04a91fe6 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0x04b5ed01 __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0x04d6e5bd mmc_retune_release EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x04db95c8 vfs_ioctl EXPORT_SYMBOL vmlinux 0x04dd2389 PDE_DATA -EXPORT_SYMBOL vmlinux 0x04e76996 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x04e896b3 jbd2_transaction_committed EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04fa9c8d netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0x04fc0e7b sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x04eb5f42 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x04eea9f8 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x04f5695d i2c_clients_command +EXPORT_SYMBOL vmlinux 0x04f57611 xfrm_init_state EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x051c530b vme_register_bridge +EXPORT_SYMBOL vmlinux 0x05103502 flow_rule_match_control EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x051f8707 eth_type_trans +EXPORT_SYMBOL vmlinux 0x051d651c tcf_exts_terse_dump EXPORT_SYMBOL vmlinux 0x05202b77 mod_zone_page_state EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x05363ab7 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x05395897 vm_map_pages +EXPORT_SYMBOL vmlinux 0x05273a94 kill_pid EXPORT_SYMBOL vmlinux 0x053cd04d pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x053cd5e0 xfrm_register_type EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x054646a6 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x05467ca5 devfreq_update_status EXPORT_SYMBOL vmlinux 0x054ce717 tty_hangup -EXPORT_SYMBOL vmlinux 0x05569dca tcp_sync_mss EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x056badb4 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x0592d2ab netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x0561522f __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x0591f421 devm_devfreq_remove_device EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit EXPORT_SYMBOL vmlinux 0x05b2bb4b blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x05b6f3f0 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x06056727 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x060afe3c _dev_alert EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner EXPORT_SYMBOL vmlinux 0x06109c59 pci_get_device EXPORT_SYMBOL vmlinux 0x06112568 fb_find_mode EXPORT_SYMBOL vmlinux 0x061651be strcat EXPORT_SYMBOL vmlinux 0x0616ad4e input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x0618fb42 ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0x0630bc27 devm_pci_remap_cfg_resource EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x06397e1c flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x063c3dc1 generic_writepages +EXPORT_SYMBOL vmlinux 0x0653f4d1 dev_addr_del EXPORT_SYMBOL vmlinux 0x0655fa14 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x065d2ec8 sock_alloc_file EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x06696468 __splice_from_pipe EXPORT_SYMBOL vmlinux 0x0675d67a __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x0676fc4c unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x06994711 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen EXPORT_SYMBOL vmlinux 0x06e3c35e tty_vhangup -EXPORT_SYMBOL vmlinux 0x06f0548c vfs_getattr +EXPORT_SYMBOL vmlinux 0x06e7acdf __dev_remove_pack EXPORT_SYMBOL vmlinux 0x06fc0f13 pci_back_from_sleep EXPORT_SYMBOL vmlinux 0x06fc2454 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x06fd16d9 sock_no_getname -EXPORT_SYMBOL vmlinux 0x06ffc3e5 sock_wmalloc EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm EXPORT_SYMBOL vmlinux 0x072809bc bio_copy_data -EXPORT_SYMBOL vmlinux 0x072d422f skb_eth_pop EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0732e578 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x073d6201 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x074cdf91 generic_file_llseek EXPORT_SYMBOL vmlinux 0x074fb040 acpi_processor_notify_smm EXPORT_SYMBOL vmlinux 0x0750eddc current_time -EXPORT_SYMBOL vmlinux 0x07668eb6 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x075917ee jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0x076f038d uart_remove_one_port EXPORT_SYMBOL vmlinux 0x077347c3 rio_query_mport EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl EXPORT_SYMBOL vmlinux 0x07828489 free_cgroup_ns EXPORT_SYMBOL vmlinux 0x0797ef71 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x07a0fcf0 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x07a34592 netdev_crit EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07baa7a0 thread_group_exited EXPORT_SYMBOL vmlinux 0x07bfaa58 pci_dev_put -EXPORT_SYMBOL vmlinux 0x07ca4380 sk_stream_wait_close EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ccf3c9 buffer_check_dirty_writeback EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list EXPORT_SYMBOL vmlinux 0x07d127d7 page_mapping EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq EXPORT_SYMBOL vmlinux 0x07e1055a pci_try_set_mwi EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07f95182 sock_i_ino +EXPORT_SYMBOL vmlinux 0x07fde825 xfrm_trans_queue EXPORT_SYMBOL vmlinux 0x07ff9d41 dm_register_target EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x081aa36d dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x082b694b tcf_exts_terse_dump 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 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x084ad6a0 devfreq_add_governor EXPORT_SYMBOL vmlinux 0x085708c7 cdev_alloc +EXPORT_SYMBOL vmlinux 0x0859b296 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x085af14f inet6_release +EXPORT_SYMBOL vmlinux 0x08660123 pipe_lock EXPORT_SYMBOL vmlinux 0x08718c48 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x087ce37b tcf_action_dump_1 EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x088af889 dm_table_event EXPORT_SYMBOL vmlinux 0x08a241e6 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x08b677fa tcf_register_action +EXPORT_SYMBOL vmlinux 0x08ab2660 locks_init_lock EXPORT_SYMBOL vmlinux 0x08bfa5d3 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x08d612cb lru_cache_add -EXPORT_SYMBOL vmlinux 0x08dec834 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x08d65a5d jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08fceb18 cpufreq_get_policy EXPORT_SYMBOL vmlinux 0x09128091 blk_queue_physical_block_size EXPORT_SYMBOL vmlinux 0x0925b1bd dma_resv_init EXPORT_SYMBOL vmlinux 0x092cddff dm_kobject_release EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x0931fb7f __xfrm_init_state EXPORT_SYMBOL vmlinux 0x0935d59c pci_unregister_driver EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects EXPORT_SYMBOL vmlinux 0x0940ad6c md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x094e3190 eth_get_headlen -EXPORT_SYMBOL vmlinux 0x0960833e inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x0963621c tcp_prot +EXPORT_SYMBOL vmlinux 0x09518e48 skb_vlan_push EXPORT_SYMBOL vmlinux 0x096d213e page_pool_create EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x09775620 vfs_mknod EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098bbc19 xfrm4_udp_encap_rcv EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack EXPORT_SYMBOL vmlinux 0x09c35239 dquot_initialize -EXPORT_SYMBOL vmlinux 0x09cf49c6 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x09c4931d twl6040_clear_bits EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark EXPORT_SYMBOL vmlinux 0x09dd1b21 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x09e14e8f fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0x09f02092 of_translate_address EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put +EXPORT_SYMBOL vmlinux 0x09fcba57 ip_getsockopt EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a120f58 finish_no_open EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0x0a625b08 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x0a6ae38a inode_sub_bytes EXPORT_SYMBOL vmlinux 0x0a73bd41 nvdimm_namespace_common_probe EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a78bbfb delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x0a77ab46 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x0a800214 fifo_set_limit EXPORT_SYMBOL vmlinux 0x0a9dd59c blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x0a9f8746 netdev_name_in_use EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0abd91db dump_page EXPORT_SYMBOL vmlinux 0x0acc1540 invalidate_bdev EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0adf5972 tcf_exts_destroy EXPORT_SYMBOL vmlinux 0x0af22554 iov_iter_init EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user EXPORT_SYMBOL vmlinux 0x0b1d80fa rdmacg_uncharge EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x0b2cfbb5 dev_mc_init -EXPORT_SYMBOL vmlinux 0x0b522b33 tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x0b7181bc security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x0b3c0745 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x0b3c99dc vme_register_bridge +EXPORT_SYMBOL vmlinux 0x0b4f948e icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x0b66a49a km_query EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b999e1d inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x0b844343 dump_emit EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba79471 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x0bb560a7 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x0bab2b61 genphy_read_abilities EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc7444e __inet_hash -EXPORT_SYMBOL vmlinux 0x0bc9b67e inode_permission -EXPORT_SYMBOL vmlinux 0x0bce4b70 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x0bcec139 mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x0be5fd07 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x0bf07845 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x0bdaa290 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x0be508c9 mdiobus_get_phy EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x0bfa803f inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x0bf41e93 inet6_bind EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c015e7b xfrm6_protocol_register EXPORT_SYMBOL vmlinux 0x0c09c831 key_validate EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame EXPORT_SYMBOL vmlinux 0x0c154821 is_subdir EXPORT_SYMBOL vmlinux 0x0c1cd4cd nd_dev_to_uuid EXPORT_SYMBOL vmlinux 0x0c24c3bb d_lookup EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c573828 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x0c401340 tcp_connect +EXPORT_SYMBOL vmlinux 0x0c4d660e devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x0c5138c2 xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c659e4c migrate_page_move_mapping EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read EXPORT_SYMBOL vmlinux 0x0c6c2c57 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x0c832fdc nf_register_net_hooks EXPORT_SYMBOL vmlinux 0x0c92d28b pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x0c969914 nonseekable_open -EXPORT_SYMBOL vmlinux 0x0ca03605 rtnl_notify EXPORT_SYMBOL vmlinux 0x0caa1f11 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x0cacf6ab i2c_verify_client EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0cb86627 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x0cb7ce04 sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false EXPORT_SYMBOL vmlinux 0x0cc4eda8 param_ops_charp EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive @@ -6459,80 +6359,71 @@ EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason EXPORT_SYMBOL vmlinux 0x0cfc5aea generic_update_time EXPORT_SYMBOL vmlinux 0x0d02c7c5 pm860x_set_bits EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d0fbb09 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x0d1fb360 xfrm4_protocol_register EXPORT_SYMBOL vmlinux 0x0d1fccb0 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x0d25c6dc file_open_root EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock EXPORT_SYMBOL vmlinux 0x0d2f66a4 cdrom_check_events EXPORT_SYMBOL vmlinux 0x0d3758ba blk_mq_run_hw_queues EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm -EXPORT_SYMBOL vmlinux 0x0d4c5a7f tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x0d4fc843 netif_device_detach EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d57bb5f _dev_info EXPORT_SYMBOL vmlinux 0x0d5add2b kobject_put EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d6ed4e2 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x0d723b93 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x0d6c91f2 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x0d81631b __set_page_dirty_no_writeback EXPORT_SYMBOL vmlinux 0x0d874ab9 rproc_put +EXPORT_SYMBOL vmlinux 0x0d87c770 vif_device_init +EXPORT_SYMBOL vmlinux 0x0d9078ed tcp_get_md5sig_pool EXPORT_SYMBOL vmlinux 0x0da760b1 d_delete -EXPORT_SYMBOL vmlinux 0x0db54b21 shmem_aops EXPORT_SYMBOL vmlinux 0x0dbfa08a seq_read_iter -EXPORT_SYMBOL vmlinux 0x0dc2843a vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x0e0e377c module_refcount +EXPORT_SYMBOL vmlinux 0x0e0ac4a7 write_one_page EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e23fcf7 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x0e29d538 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x0e3d766e tcp_parse_options +EXPORT_SYMBOL vmlinux 0x0e23ce69 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x0e28e4da nf_register_net_hooks EXPORT_SYMBOL vmlinux 0x0e424ba8 pm860x_reg_read EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned EXPORT_SYMBOL vmlinux 0x0e5563da pci_map_rom -EXPORT_SYMBOL vmlinux 0x0e576d35 skb_copy_header -EXPORT_SYMBOL vmlinux 0x0e64ff34 security_path_mknod -EXPORT_SYMBOL vmlinux 0x0e68167f in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor -EXPORT_SYMBOL vmlinux 0x0e8feaf5 __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0x0e9bea01 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x0e95e99c iptun_encaps +EXPORT_SYMBOL vmlinux 0x0ea2b763 page_symlink EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0x0eb082e2 scsi_device_get EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ecf2371 dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x0ed19e92 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x0ec85f8c sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x0ec8d405 _dev_emerg +EXPORT_SYMBOL vmlinux 0x0ed3ba86 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x0edac0d6 ip_mc_check_igmp EXPORT_SYMBOL vmlinux 0x0edba05a textsearch_destroy EXPORT_SYMBOL vmlinux 0x0ee06c3e kill_anon_super -EXPORT_SYMBOL vmlinux 0x0ee4e9c8 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x0ee5b9c8 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x0eeae87c security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x0ee64442 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x0ef46ce6 netpoll_send_skb EXPORT_SYMBOL vmlinux 0x0f011758 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x0f09bf58 dcb_ieee_getapp_default_prio_mask EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable EXPORT_SYMBOL vmlinux 0x0f0f4a6d param_set_charp +EXPORT_SYMBOL vmlinux 0x0f19e20d vfs_rename EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu EXPORT_SYMBOL vmlinux 0x0f2c993a pci_get_class -EXPORT_SYMBOL vmlinux 0x0f31ce1c icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f3f2675 generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x0f4ff5e5 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x0f7bb5f7 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x0f742344 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x0f7c2417 unlock_buffer EXPORT_SYMBOL vmlinux 0x0f80fcbe acpi_get_hp_hw_control_from_firmware EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f878414 xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x0f8df5dd d_add_ci -EXPORT_SYMBOL vmlinux 0x0fa0c9f4 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x0fa19c2d tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x0f9e5376 mmc_is_req_done EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fc28a3f read_cache_page +EXPORT_SYMBOL vmlinux 0x0fb49514 block_truncate_page +EXPORT_SYMBOL vmlinux 0x0fca156d inet_csk_prepare_forced_close EXPORT_SYMBOL vmlinux 0x0fcd2c62 jbd2_journal_free_reserved EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create EXPORT_SYMBOL vmlinux 0x0fdae346 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x0fef52f3 of_platform_device_create EXPORT_SYMBOL vmlinux 0x0ff17d39 kmem_cache_alloc_node_trace EXPORT_SYMBOL vmlinux 0x0ff6e17c pci_msix_vec_count EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x100495c0 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x1013817a module_put EXPORT_SYMBOL vmlinux 0x101742be dquot_release +EXPORT_SYMBOL vmlinux 0x101b073b ptp_clock_register EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source EXPORT_SYMBOL vmlinux 0x102a5759 of_find_backlight_by_node @@ -6540,69 +6431,72 @@ EXPORT_SYMBOL vmlinux 0x1031824f pci_enable_device EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region EXPORT_SYMBOL vmlinux 0x1057a279 bsearch EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x1068bfec tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x10707e60 xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10a811fb __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x10b92895 inet_select_addr EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0x10caa1da md_check_recovery +EXPORT_SYMBOL vmlinux 0x10cc4e40 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x10d33b9a tcf_em_unregister EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10f025d8 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x10f47896 sock_set_priority EXPORT_SYMBOL vmlinux 0x1107c085 request_firmware EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype EXPORT_SYMBOL vmlinux 0x110cad7f seq_escape_mem +EXPORT_SYMBOL vmlinux 0x1110bb64 xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x111aa878 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x1122c8ff neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x11357f58 __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x115977ef dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x1154b754 update_devfreq +EXPORT_SYMBOL vmlinux 0x115bea5c neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x116623cc __scm_destroy EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1177267a disk_end_io_acct EXPORT_SYMBOL vmlinux 0x117ffbf1 rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0x118e42a5 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x119f7e8d phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x11ad9154 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x11b0cf3a filp_close -EXPORT_SYMBOL vmlinux 0x11bb34e7 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x11bf72da tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x119808e6 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x11c671bf i2c_get_adapter EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x11da3bf0 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x11d7ed4e jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx -EXPORT_SYMBOL vmlinux 0x1204d030 __register_binfmt EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented EXPORT_SYMBOL vmlinux 0x120ff8e1 xudma_get_rflow_ring_offset EXPORT_SYMBOL vmlinux 0x12117567 get_tz_trend -EXPORT_SYMBOL vmlinux 0x12177515 dev_open -EXPORT_SYMBOL vmlinux 0x121ac78d __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x121b4bbc migrate_page_copy -EXPORT_SYMBOL vmlinux 0x123b8256 alloc_pages +EXPORT_SYMBOL vmlinux 0x121f387a vme_lm_request +EXPORT_SYMBOL vmlinux 0x1245bc75 sock_no_accept EXPORT_SYMBOL vmlinux 0x12494982 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x1249e8b3 blk_queue_flag_set EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x1252d354 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x1267969d tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x1250c752 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x1254f82c sock_no_mmap +EXPORT_SYMBOL vmlinux 0x126b2862 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x126fc53a dev_get_by_name EXPORT_SYMBOL vmlinux 0x128ceccf mipi_dsi_dcs_set_column_address EXPORT_SYMBOL vmlinux 0x129b4fff inode_set_flags +EXPORT_SYMBOL vmlinux 0x12a308cb ip_route_input_noref EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user -EXPORT_SYMBOL vmlinux 0x12c3c91a dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x12b91ee4 scsi_target_resume EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12d295e8 skb_put +EXPORT_SYMBOL vmlinux 0x12d7e6a4 vfs_readlink EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var EXPORT_SYMBOL vmlinux 0x1301c38e input_mt_init_slots EXPORT_SYMBOL vmlinux 0x1307ce54 pm_vt_switch_unregister EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data EXPORT_SYMBOL vmlinux 0x130b65a9 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x1310112e dev_mc_init EXPORT_SYMBOL vmlinux 0x13110126 request_resource EXPORT_SYMBOL vmlinux 0x1314c9ff mipi_dsi_host_unregister EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x134510f0 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x133613a8 inet_ioctl +EXPORT_SYMBOL vmlinux 0x1349f74a jbd2_journal_invalidatepage EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge EXPORT_SYMBOL vmlinux 0x1353c693 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x136cbec9 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x1370b64c jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0x137373a0 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x135d8c70 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x1367b146 arp_create +EXPORT_SYMBOL vmlinux 0x1377f1f0 invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0x137d193e request_partial_firmware_into_buf EXPORT_SYMBOL vmlinux 0x138bdd96 cpumask_next EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc @@ -6610,377 +6504,359 @@ EXPORT_SYMBOL vmlinux 0x13b6a821 get_vm_area EXPORT_SYMBOL vmlinux 0x13bad7bf ilookup5 EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d735b5 pagevec_lookup_range EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x13daab1a genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x13eac6e2 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x1400e4d0 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x13de4577 sock_create_kern +EXPORT_SYMBOL vmlinux 0x13ec58f2 phy_detach +EXPORT_SYMBOL vmlinux 0x14082a87 xsk_tx_completed EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x141fe24f devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0x142d8d9b tcp_close EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x144973a3 sk_wait_data +EXPORT_SYMBOL vmlinux 0x14403638 netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x147ac5b2 __dev_get_by_index EXPORT_SYMBOL vmlinux 0x147b1637 ilookup -EXPORT_SYMBOL vmlinux 0x1480a205 posix_test_lock -EXPORT_SYMBOL vmlinux 0x148129e5 ip_ct_attach EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x148d8493 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x149bb035 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x14a56b17 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x14a8d340 inet_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x14ad962e blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0x14afc5e6 jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready EXPORT_SYMBOL vmlinux 0x14c1eaec fs_param_is_blockdev EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled EXPORT_SYMBOL vmlinux 0x14ced76e nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x14d8aaea mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x14e77b6b phy_aneg_done EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool +EXPORT_SYMBOL vmlinux 0x14fe224e tcp_read_sock +EXPORT_SYMBOL vmlinux 0x14fe2ff5 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x1511ff21 neigh_destroy EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x15296ac2 jbd2_journal_load EXPORT_SYMBOL vmlinux 0x1529e655 devm_rproc_add EXPORT_SYMBOL vmlinux 0x153ccc6f drop_super_exclusive EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy EXPORT_SYMBOL vmlinux 0x154d2024 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x155533a1 sock_bindtoindex EXPORT_SYMBOL vmlinux 0x15558db4 generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0x1562ecd8 scsi_scan_host EXPORT_SYMBOL vmlinux 0x15740d49 input_mt_sync_frame EXPORT_SYMBOL vmlinux 0x15864902 nd_pfn_validate -EXPORT_SYMBOL vmlinux 0x15ace28c migrate_page_states +EXPORT_SYMBOL vmlinux 0x15a6e347 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x15b4ea30 __put_page EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies +EXPORT_SYMBOL vmlinux 0x15bae3f7 udp_set_csum 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 0x15eed94b tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x15d8fd5d netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x15ddd5a7 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x15e77053 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x15e8ceb9 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x15ef174f dev_uc_unsync EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init EXPORT_SYMBOL vmlinux 0x15fdbf24 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x15fe470d flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x16114d46 netif_device_attach -EXPORT_SYMBOL vmlinux 0x161670c0 netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string EXPORT_SYMBOL vmlinux 0x162d75f9 d_find_alias EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const EXPORT_SYMBOL vmlinux 0x163832ff pnp_stop_dev EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off -EXPORT_SYMBOL vmlinux 0x16516d18 ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x16575705 iterate_fd EXPORT_SYMBOL vmlinux 0x165839f7 mpage_writepages EXPORT_SYMBOL vmlinux 0x16584d4e kobject_get -EXPORT_SYMBOL vmlinux 0x16781c19 arp_tbl +EXPORT_SYMBOL vmlinux 0x1676ccfe pfifo_fast_ops EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x168daba7 vfs_create -EXPORT_SYMBOL vmlinux 0x1698117a inet_frags_fini +EXPORT_SYMBOL vmlinux 0x168d45c2 phy_device_free EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16af643f vme_master_request +EXPORT_SYMBOL vmlinux 0x16ab309a netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16d1e64b get_phy_device EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x170aaec9 scsi_host_put EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x17116efb tcf_exts_dump EXPORT_SYMBOL vmlinux 0x1717ceb8 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x1718a953 kernel_connect EXPORT_SYMBOL vmlinux 0x171e3732 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x171e65c3 xfrm_trans_queue EXPORT_SYMBOL vmlinux 0x173ed3ea of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x17454787 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x174f6be7 of_find_device_by_node EXPORT_SYMBOL vmlinux 0x175f3db2 rproc_boot -EXPORT_SYMBOL vmlinux 0x17653874 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x176001b5 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x1761094d mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get +EXPORT_SYMBOL vmlinux 0x178aceb8 pagevec_lookup_range EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware EXPORT_SYMBOL vmlinux 0x1796c7da blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x17ac9bd9 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x17984fca vme_irq_handler +EXPORT_SYMBOL vmlinux 0x17a5ddf1 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x17b10005 vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0x17bffefa clk_bulk_get EXPORT_SYMBOL vmlinux 0x17c93e1e of_get_cpu_state_node EXPORT_SYMBOL vmlinux 0x17d8e05b pci_msi_vec_count EXPORT_SYMBOL vmlinux 0x17dce158 __mod_zone_page_state EXPORT_SYMBOL vmlinux 0x17df24c2 rpmh_invalidate -EXPORT_SYMBOL vmlinux 0x17df94c9 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x17ff7680 ptp_clock_index EXPORT_SYMBOL vmlinux 0x18019e86 pci_enable_wake -EXPORT_SYMBOL vmlinux 0x181064dc __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x18278e4a qdisc_reset +EXPORT_SYMBOL vmlinux 0x1804e07c ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x1806bffb generic_write_end +EXPORT_SYMBOL vmlinux 0x182ba0c0 fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x183d763f __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0x18548bd1 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x18586b52 __dev_get_by_index EXPORT_SYMBOL vmlinux 0x186bd6f1 devm_memremap -EXPORT_SYMBOL vmlinux 0x1877acd1 vme_unregister_driver EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free EXPORT_SYMBOL vmlinux 0x187c6a40 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x18803bfe generic_file_direct_write EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write EXPORT_SYMBOL vmlinux 0x188c0bc4 fuse_mount_destroy EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x18b24510 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x18982f0b acpi_notifier_call_chain EXPORT_SYMBOL vmlinux 0x18b30275 __cleancache_init_shared_fs EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io EXPORT_SYMBOL vmlinux 0x18b58a15 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0x18bd2ae6 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x18c189ce pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x18e0d7e3 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x18e1bb0b __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x18c4258d fwnode_mdio_find_device EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start EXPORT_SYMBOL vmlinux 0x190a48a9 efi -EXPORT_SYMBOL vmlinux 0x1912bd4d poll_freewait -EXPORT_SYMBOL vmlinux 0x1913630c write_dirty_buffer EXPORT_SYMBOL vmlinux 0x1917fc70 drop_nlink EXPORT_SYMBOL vmlinux 0x192e7b9e rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0x19376609 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x193e214d seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x1944a87d __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x1944b234 xfrm_state_update EXPORT_SYMBOL vmlinux 0x194c5b66 input_register_handle EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create -EXPORT_SYMBOL vmlinux 0x195953d1 dev_uc_flush EXPORT_SYMBOL vmlinux 0x195f1a28 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x1960c340 nf_log_register EXPORT_SYMBOL vmlinux 0x1964b0c3 dput -EXPORT_SYMBOL vmlinux 0x196bf895 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x197134c8 of_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x19764b5f input_get_timestamp +EXPORT_SYMBOL vmlinux 0x1977b68d flow_block_cb_free EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt +EXPORT_SYMBOL vmlinux 0x1989f991 ptp_cancel_worker_sync EXPORT_SYMBOL vmlinux 0x1990a904 d_move -EXPORT_SYMBOL vmlinux 0x199cbcd1 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp EXPORT_SYMBOL vmlinux 0x19a1003b ps2_drain +EXPORT_SYMBOL vmlinux 0x19afa684 netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec EXPORT_SYMBOL vmlinux 0x19ca1c5e iov_iter_advance -EXPORT_SYMBOL vmlinux 0x19d4c10c security_old_inode_init_security EXPORT_SYMBOL vmlinux 0x19d5f632 pin_user_pages_locked -EXPORT_SYMBOL vmlinux 0x19dc706e jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x19e57713 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x19d7d08d netdev_state_change +EXPORT_SYMBOL vmlinux 0x19e8d132 ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x19ed2764 misc_deregister +EXPORT_SYMBOL vmlinux 0x19f711fe netlink_kernel_release EXPORT_SYMBOL vmlinux 0x1a0e0522 inode_init_always +EXPORT_SYMBOL vmlinux 0x1a1a683e udp_sendmsg EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a1da21e eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x1a1fbe7b sock_edemux -EXPORT_SYMBOL vmlinux 0x1a319be4 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x1a3341fc kernel_listen +EXPORT_SYMBOL vmlinux 0x1a26b904 ppp_input_error +EXPORT_SYMBOL vmlinux 0x1a2b52c6 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x1a39eff0 ip_queue_xmit EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a508139 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x1a66173d crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x1a76de88 inet_del_offload EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aa6708b bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x1a9ac35f ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x1aa68cee inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0x1aa8c618 simple_rename +EXPORT_SYMBOL vmlinux 0x1aadc826 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x1abcb50e ptp_clock_event EXPORT_SYMBOL vmlinux 0x1abcfaa6 clocksource_change_rating EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1acac860 qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0x1ad90331 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x1ad93a9c tcp_prot +EXPORT_SYMBOL vmlinux 0x1add0b03 xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x1ae22fcb blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x1ae41dd7 pid_task EXPORT_SYMBOL vmlinux 0x1aea54f1 proc_create +EXPORT_SYMBOL vmlinux 0x1aeebeea kmem_cache_destroy EXPORT_SYMBOL vmlinux 0x1afc2c6a md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x1afd5d7a nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0x1afe2f1f md_integrity_add_rdev EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b0243c4 xp_free -EXPORT_SYMBOL vmlinux 0x1b120b10 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x1b162732 tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0x1b27a1b4 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x1b373e61 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x1b28543a eth_validate_addr EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put EXPORT_SYMBOL vmlinux 0x1b54414d invalidate_mapping_pages EXPORT_SYMBOL vmlinux 0x1b55a241 of_platform_bus_probe EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b71d359 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x1b754f87 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x1b76f213 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x1b69a6c2 _dev_printk EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b8547fc jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0x1b8c58b8 insert_inode_locked4 EXPORT_SYMBOL vmlinux 0x1b9a66d4 dquot_load_quota_sb EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info EXPORT_SYMBOL vmlinux 0x1bd42687 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x1bd574c1 add_to_page_cache_locked EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent EXPORT_SYMBOL vmlinux 0x1bd6e1c7 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x1befdf2e __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x1bf3af61 jbd2_journal_ack_err EXPORT_SYMBOL vmlinux 0x1bf9f5e6 pci_release_regions EXPORT_SYMBOL vmlinux 0x1bf9f74c pcim_iomap -EXPORT_SYMBOL vmlinux 0x1c1f0928 unregister_console -EXPORT_SYMBOL vmlinux 0x1c2b8bd4 sock_i_uid -EXPORT_SYMBOL vmlinux 0x1c3125a3 page_get_link +EXPORT_SYMBOL vmlinux 0x1c213208 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x1c2f69c9 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x1c3555a3 xp_dma_unmap EXPORT_SYMBOL vmlinux 0x1c379af8 devm_ioremap EXPORT_SYMBOL vmlinux 0x1c3c03b3 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x1c3fb9f2 jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0x1c469a1a cdrom_release -EXPORT_SYMBOL vmlinux 0x1c5059d3 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x1c5708bb __netdev_notify_peers EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c66256f tcp_getsockopt EXPORT_SYMBOL vmlinux 0x1c6ea23b put_watch_queue -EXPORT_SYMBOL vmlinux 0x1c88f843 sk_common_release -EXPORT_SYMBOL vmlinux 0x1ca38746 set_page_dirty_lock EXPORT_SYMBOL vmlinux 0x1ca65819 __devm_release_region EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree EXPORT_SYMBOL vmlinux 0x1cb23f52 tegra_ivc_reset EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cd2ad74 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x1ccedfde mount_subtree EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node -EXPORT_SYMBOL vmlinux 0x1cda8d81 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x1cdd0ea0 locks_copy_conflock EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl -EXPORT_SYMBOL vmlinux 0x1ce719ae flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0x1ced54c5 param_ops_uint +EXPORT_SYMBOL vmlinux 0x1cf48e88 pneigh_lookup EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul EXPORT_SYMBOL vmlinux 0x1d13b830 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x1d141d55 ip_fraglist_init EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x1d23e7cd mii_link_ok EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d2cb723 vfs_link EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d30a1d7 genphy_config_eee_advert EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each EXPORT_SYMBOL vmlinux 0x1d56c294 simple_dentry_operations EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1d64e78a scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0x1d66d3e6 simple_empty -EXPORT_SYMBOL vmlinux 0x1d6e4885 begin_new_exec -EXPORT_SYMBOL vmlinux 0x1d8ae512 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x1d80f0fd dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x1d8a1490 phy_device_remove EXPORT_SYMBOL vmlinux 0x1d975790 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x1da7e926 filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0x1dc19c94 tegra_ivc_write_advance EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key EXPORT_SYMBOL vmlinux 0x1dd4099b blk_queue_io_opt EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1ddaaa6c inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x1dd7a1a4 xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x1de05c55 tegra_dfll_runtime_resume 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 0x1defa736 __block_write_begin -EXPORT_SYMBOL vmlinux 0x1df2c879 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x1dfeadb9 i2c_smbus_write_block_data EXPORT_SYMBOL vmlinux 0x1dff5e8b devm_ioremap_wc 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 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e221b9d netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0x1e38b7be is_nd_btt -EXPORT_SYMBOL vmlinux 0x1e440abb xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x1e5262f4 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x1e661b20 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x1e6671e4 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x1e3fbaac xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x1e6766a9 fddi_type_trans EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr EXPORT_SYMBOL vmlinux 0x1e76de92 md_finish_reshape EXPORT_SYMBOL vmlinux 0x1e7de3fb mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x1e98decd fifo_create_dflt EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu EXPORT_SYMBOL vmlinux 0x1ea233d5 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x1ebd22cc ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0x1ed00305 xfrm_input EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ee49f4e inet_register_protosw -EXPORT_SYMBOL vmlinux 0x1ef161d4 dev_addr_init -EXPORT_SYMBOL vmlinux 0x1ef6e21a inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x1f01d848 blk_sync_queue EXPORT_SYMBOL vmlinux 0x1f074878 blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0x1f0d9b8e watchdog_unregister_governor EXPORT_SYMBOL vmlinux 0x1f105ed3 clkdev_add -EXPORT_SYMBOL vmlinux 0x1f3d4777 lease_modify EXPORT_SYMBOL vmlinux 0x1f3e3823 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x1f44c656 napi_consume_skb EXPORT_SYMBOL vmlinux 0x1f52b127 rproc_coredump_set_elf_info EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr EXPORT_SYMBOL vmlinux 0x1f5c5203 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x1f6743b7 phy_suspend EXPORT_SYMBOL vmlinux 0x1f67ec6d of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x1f6e74b9 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x1f7cec5c skb_checksum EXPORT_SYMBOL vmlinux 0x1f8dcf65 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x1fb3e3d1 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x1fba2d57 inet_sendpage EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio EXPORT_SYMBOL vmlinux 0x1fbeb8b8 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x1fc651e5 sock_no_getname EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1ff6826f dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x1ffee335 mdiobus_write_nested EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201161f6 page_cache_next_miss EXPORT_SYMBOL vmlinux 0x2014e97d get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x201fed9c vfs_symlink EXPORT_SYMBOL vmlinux 0x2029a6a4 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x20301b1a mmc_register_driver +EXPORT_SYMBOL vmlinux 0x203adb8e genphy_loopback 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 0x20665ab5 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x2053d8e2 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x206d0712 request_key_tag +EXPORT_SYMBOL vmlinux 0x207c5397 scsi_report_bus_reset EXPORT_SYMBOL vmlinux 0x208c4813 is_bad_inode +EXPORT_SYMBOL vmlinux 0x20916a49 inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20af5898 tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0x20b5183a thaw_bdev EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20df212c vmf_insert_mixed EXPORT_SYMBOL vmlinux 0x20e298f6 kthread_create_on_node EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20edd7b4 ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x2116f255 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x21178eba jbd2_journal_inode_ranged_write EXPORT_SYMBOL vmlinux 0x212de92e md_unregister_thread EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id EXPORT_SYMBOL vmlinux 0x21505a9c blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x21664632 mmc_command_done -EXPORT_SYMBOL vmlinux 0x217b0037 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x2176511d mmc_alloc_host EXPORT_SYMBOL vmlinux 0x217f11ac of_find_property -EXPORT_SYMBOL vmlinux 0x21844573 blk_queue_flag_clear EXPORT_SYMBOL vmlinux 0x218d2fab configfs_depend_item_unlocked EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x219560e9 xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check EXPORT_SYMBOL vmlinux 0x21c83b1f input_setup_polling EXPORT_SYMBOL vmlinux 0x21d42ce9 nla_append EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x21f8d737 sock_no_linger +EXPORT_SYMBOL vmlinux 0x220155f1 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x2201c1bb skb_orphan_partial EXPORT_SYMBOL vmlinux 0x220c7021 tegra_io_pad_power_disable -EXPORT_SYMBOL vmlinux 0x2215923a devfreq_update_target -EXPORT_SYMBOL vmlinux 0x221c47ec gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x221c48ed jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x2215a2d0 xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x22246535 alloc_xenballooned_pages EXPORT_SYMBOL vmlinux 0x222908d7 amba_device_unregister +EXPORT_SYMBOL vmlinux 0x222df39f __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq EXPORT_SYMBOL vmlinux 0x22326d36 remap_vmalloc_range EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x223bdb2a do_splice_direct -EXPORT_SYMBOL vmlinux 0x2240ed0c sk_free +EXPORT_SYMBOL vmlinux 0x223f7f3d ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x224612d2 devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0x22470381 __bio_clone_fast EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x225ac615 mmc_start_request -EXPORT_SYMBOL vmlinux 0x226989be of_find_device_by_node -EXPORT_SYMBOL vmlinux 0x228a34ef __page_symlink +EXPORT_SYMBOL vmlinux 0x226bf59a generic_file_llseek EXPORT_SYMBOL vmlinux 0x229484cd netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0x22aee259 twl6040_power EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22e8d029 of_phy_find_device EXPORT_SYMBOL vmlinux 0x22ebe2b3 mode_strip_sgid EXPORT_SYMBOL vmlinux 0x22ebfd70 kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0x22edaf04 ata_scsi_cmd_error_handler EXPORT_SYMBOL vmlinux 0x22f2ef39 pnp_register_card_driver EXPORT_SYMBOL vmlinux 0x22f409fc of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x22fdab3d vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0x230b14ff blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x230cfb36 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x23264876 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x232cb18d genphy_read_lpa -EXPORT_SYMBOL vmlinux 0x2330640d jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x233b543d pneigh_lookup +EXPORT_SYMBOL vmlinux 0x2328ba33 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x23394848 wait_on_page_private_2 EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq EXPORT_SYMBOL vmlinux 0x2359715c input_alloc_absinfo EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x236b7228 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x236a4f1b finish_open +EXPORT_SYMBOL vmlinux 0x2375c8db ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled EXPORT_SYMBOL vmlinux 0x237ef00f import_iovec EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short EXPORT_SYMBOL vmlinux 0x238d342f pci_bus_claim_resources EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat +EXPORT_SYMBOL vmlinux 0x23a822d0 dev_set_mtu EXPORT_SYMBOL vmlinux 0x23b83707 pci_select_bars +EXPORT_SYMBOL vmlinux 0x23b92ab1 kernel_getpeername EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths EXPORT_SYMBOL vmlinux 0x23cfb956 __cleancache_invalidate_fs EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23e09804 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x23e28635 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x23e90ce6 vlan_for_each EXPORT_SYMBOL vmlinux 0x23e9dde2 make_kprojid -EXPORT_SYMBOL vmlinux 0x23fc8003 xfrm_replay_seqhi EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x240aae71 fd_install -EXPORT_SYMBOL vmlinux 0x240e0355 inet6_add_offload EXPORT_SYMBOL vmlinux 0x2413dceb dquot_set_dqblk EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24218e3a security_binder_transfer_file EXPORT_SYMBOL vmlinux 0x243545e2 of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0x243554d0 ndo_dflt_fdb_dump EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user EXPORT_SYMBOL vmlinux 0x24595d3a pci_setup_cardbus EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline @@ -6989,24 +6865,26 @@ EXPORT_SYMBOL vmlinux 0x246c3757 tegra_ivc_init EXPORT_SYMBOL vmlinux 0x246e99db devm_pci_remap_iospace EXPORT_SYMBOL vmlinux 0x24846dd8 __cleancache_put_page EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x24979432 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x24adbe68 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x24c6b5b2 vfs_fsync +EXPORT_SYMBOL vmlinux 0x24a7b56f jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x24b2320a no_llseek +EXPORT_SYMBOL vmlinux 0x24b408cf phy_get_internal_delay EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24fa93d8 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x24dc1ecc sock_wfree +EXPORT_SYMBOL vmlinux 0x24ef33e1 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x24f66aaf security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0x24fe9102 dquot_commit_info EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x250647dc ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released EXPORT_SYMBOL vmlinux 0x252dabf1 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x25345f4f rtnl_unicast -EXPORT_SYMBOL vmlinux 0x25444882 vmf_insert_pfn EXPORT_SYMBOL vmlinux 0x2546b3ce fman_set_port_params -EXPORT_SYMBOL vmlinux 0x255235a0 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x2551b908 vlan_vid_add EXPORT_SYMBOL vmlinux 0x255e3fe0 pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0x25601e47 napi_enable +EXPORT_SYMBOL vmlinux 0x25648d2f dev_get_flags +EXPORT_SYMBOL vmlinux 0x2564a4b3 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x2564f1be __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x256e50ca __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x257bd89a netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x25874fe7 sk_ns_capable EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation EXPORT_SYMBOL vmlinux 0x25917b32 md_reload_sb @@ -7019,163 +6897,158 @@ EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free EXPORT_SYMBOL vmlinux 0x25f968ed __do_once_slow_done EXPORT_SYMBOL vmlinux 0x25fad2c5 current_in_userns +EXPORT_SYMBOL vmlinux 0x2603e9e3 napi_get_frags EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x26110426 register_console EXPORT_SYMBOL vmlinux 0x2617e6a8 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x2619d03a __skb_pad -EXPORT_SYMBOL vmlinux 0x261b9342 blk_get_queue -EXPORT_SYMBOL vmlinux 0x2632f6d3 dev_set_alias -EXPORT_SYMBOL vmlinux 0x263a3256 dev_addr_del +EXPORT_SYMBOL vmlinux 0x26323b6a __f_setown EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod -EXPORT_SYMBOL vmlinux 0x2647c3f3 fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x266b1f8e mmc_detect_change +EXPORT_SYMBOL vmlinux 0x264bac61 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x267d04fa neigh_seq_start EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x2695dbaa flush_signals EXPORT_SYMBOL vmlinux 0x269c8e23 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x269e3828 km_policy_notify +EXPORT_SYMBOL vmlinux 0x26a287b0 km_report EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit -EXPORT_SYMBOL vmlinux 0x26e01296 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x26ccf126 secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26ec8db4 security_old_inode_init_security EXPORT_SYMBOL vmlinux 0x26f4cf7e mdio_device_reset EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x270d7b3c vme_irq_generate EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x2734bbda unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0x27479adc kobject_get_unless_zero EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x27504a0b submit_bio -EXPORT_SYMBOL vmlinux 0x2756eadd fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x27555a56 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x27596c0d tcf_block_get_ext EXPORT_SYMBOL vmlinux 0x275cabdb seq_pad EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x2764e891 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x2772de15 __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string EXPORT_SYMBOL vmlinux 0x277b47b2 bioset_exit EXPORT_SYMBOL vmlinux 0x277ca081 dquot_scan_active EXPORT_SYMBOL vmlinux 0x27810361 acpi_os_wait_events_complete +EXPORT_SYMBOL vmlinux 0x278176f4 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x2781fead sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x2782089b block_commit_write EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x279ea3f4 nf_reinject EXPORT_SYMBOL vmlinux 0x27a6a485 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x27b78982 mmc_sw_reset EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid EXPORT_SYMBOL vmlinux 0x27cc4361 acpi_match_device_ids EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27f2c18d inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x27fb70d0 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x27fda5d5 do_clone_file_range -EXPORT_SYMBOL vmlinux 0x28054fcd sock_kfree_s +EXPORT_SYMBOL vmlinux 0x27e36431 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x27fc95c5 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x2808d4c2 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x2809146b tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x2820a05f km_report -EXPORT_SYMBOL vmlinux 0x285018b9 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x28305828 mroute6_is_socket EXPORT_SYMBOL vmlinux 0x2864d9bf devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x287346c6 phy_disconnect EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x2890a417 file_write_and_wait_range EXPORT_SYMBOL vmlinux 0x28991959 set_blocksize -EXPORT_SYMBOL vmlinux 0x28ac493a inet_accept +EXPORT_SYMBOL vmlinux 0x28acf622 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x28b8bcbe mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x28bc63a4 fget +EXPORT_SYMBOL vmlinux 0x28bdb41b vfs_tmpfile EXPORT_SYMBOL vmlinux 0x28be5f8b __d_lookup_done +EXPORT_SYMBOL vmlinux 0x28c002b2 flow_rule_match_basic EXPORT_SYMBOL vmlinux 0x28c15262 freeze_super -EXPORT_SYMBOL vmlinux 0x28c586ff ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0x28cc8233 iproc_msi_exit -EXPORT_SYMBOL vmlinux 0x28cd5c34 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x28d613c1 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x28eb14f7 sock_register -EXPORT_SYMBOL vmlinux 0x28f5e64d netlink_broadcast +EXPORT_SYMBOL vmlinux 0x28ecc2af page_get_link EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x28fe8a3f try_to_release_page +EXPORT_SYMBOL vmlinux 0x2902a89b fasync_helper EXPORT_SYMBOL vmlinux 0x29178bbb cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x29276b66 __vfs_setxattr EXPORT_SYMBOL vmlinux 0x29287a1d get_tree_keyed EXPORT_SYMBOL vmlinux 0x29372c51 set_capacity -EXPORT_SYMBOL vmlinux 0x2941c63f write_inode_now +EXPORT_SYMBOL vmlinux 0x29389c81 netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x29631bf4 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x296cff63 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x2970cf00 config_item_get -EXPORT_SYMBOL vmlinux 0x2979bc32 flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0x297ff7c4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x298dede4 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x299c083c wait_on_page_bit EXPORT_SYMBOL vmlinux 0x29a171e0 __serio_register_driver EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29f59da2 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x29ed64cc security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x2a0f33ac __find_get_block EXPORT_SYMBOL vmlinux 0x2a13bb9e pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x2a2322aa unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x2a2c9acf skb_ensure_writable EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a35e27a __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x2a3c0ad1 dev_mc_add_excl EXPORT_SYMBOL vmlinux 0x2a4383d3 pci_request_regions -EXPORT_SYMBOL vmlinux 0x2a574f63 skb_dequeue -EXPORT_SYMBOL vmlinux 0x2a64aa21 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x2a7cc39a kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0x2a8592c2 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0x2a86a1a8 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x2a921fa5 xfrm_stateonly_find EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize -EXPORT_SYMBOL vmlinux 0x2aa9688e vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id EXPORT_SYMBOL vmlinux 0x2ab92247 unload_nls +EXPORT_SYMBOL vmlinux 0x2abeced7 dev_mc_sync_multiple EXPORT_SYMBOL vmlinux 0x2aca8614 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x2ad64576 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x2ad89d39 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x2ae69a31 sdev_disable_disk_events EXPORT_SYMBOL vmlinux 0x2aeabd7b page_pool_destroy -EXPORT_SYMBOL vmlinux 0x2afb79c2 tcf_exts_change EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 -EXPORT_SYMBOL vmlinux 0x2b2c932c has_capability EXPORT_SYMBOL vmlinux 0x2b351898 fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0x2b36debe end_page_writeback +EXPORT_SYMBOL vmlinux 0x2b3e161a jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x2b414ce9 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x2b43a9bf sched_autogroup_detach EXPORT_SYMBOL vmlinux 0x2b458efb dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x2b468f85 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x2b47bc02 tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0x2b4de011 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x2b4edc63 nf_hook_slow_list EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2b6656be sk_stop_timer -EXPORT_SYMBOL vmlinux 0x2b6704f7 kern_unmount_array -EXPORT_SYMBOL vmlinux 0x2b6793f8 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b6ef574 inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0x2b78a805 tty_port_put +EXPORT_SYMBOL vmlinux 0x2b7d86f8 register_shrinker EXPORT_SYMBOL vmlinux 0x2b7f1428 param_ops_string +EXPORT_SYMBOL vmlinux 0x2b886f5b flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x2b8e2cf5 skb_queue_tail EXPORT_SYMBOL vmlinux 0x2b915b68 pcie_capability_read_word EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba3059f inet6_ioctl EXPORT_SYMBOL vmlinux 0x2ba43929 _copy_to_iter -EXPORT_SYMBOL vmlinux 0x2bab94b1 vm_insert_page EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock EXPORT_SYMBOL vmlinux 0x2bb795cf pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x2bc89a98 kern_unmount +EXPORT_SYMBOL vmlinux 0x2bbd7b48 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x2bcd605b fs_context_for_mount EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bf7f5b4 filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove -EXPORT_SYMBOL vmlinux 0x2c068a87 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x2c074d19 i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0x2c092fb4 phy_write_paged EXPORT_SYMBOL vmlinux 0x2c0d8916 sget_fc EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c258041 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x2c2708ee phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0x2c270afc input_set_timestamp +EXPORT_SYMBOL vmlinux 0x2c2f277e xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c3ac5af mntget EXPORT_SYMBOL vmlinux 0x2c3b0451 pci_pme_active EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c6ef5eb phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x2c5b7b67 rps_may_expire_flow EXPORT_SYMBOL vmlinux 0x2c70ee4c iov_iter_single_seg_count EXPORT_SYMBOL vmlinux 0x2c7141a6 fb_pan_display EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool -EXPORT_SYMBOL vmlinux 0x2c7c5743 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x2c86cce5 security_inode_invalidate_secctx EXPORT_SYMBOL vmlinux 0x2c8be74e tty_port_tty_set EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot EXPORT_SYMBOL vmlinux 0x2c923178 __put_user_ns -EXPORT_SYMBOL vmlinux 0x2cba33f4 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0x2cc2f66d sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax EXPORT_SYMBOL vmlinux 0x2ce1bf13 pcim_pin_device -EXPORT_SYMBOL vmlinux 0x2cfd753a jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0x2d0cc27c ptp_clock_index +EXPORT_SYMBOL vmlinux 0x2cef8572 tcf_em_register +EXPORT_SYMBOL vmlinux 0x2d0a8a7a __mdiobus_read +EXPORT_SYMBOL vmlinux 0x2d0dbd95 skb_seq_read EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer EXPORT_SYMBOL vmlinux 0x2d1c29ca dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x2d2abdd7 mfd_cell_disable EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup @@ -7184,569 +7057,602 @@ EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font EXPORT_SYMBOL vmlinux 0x2d4fc30f get_watch_queue EXPORT_SYMBOL vmlinux 0x2d55ce1d mipi_dsi_dcs_get_display_brightness EXPORT_SYMBOL vmlinux 0x2d588362 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x2d663e4e dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x2d5d8e5c gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0x2d75d6d3 regset_get -EXPORT_SYMBOL vmlinux 0x2d78c5db key_type_keyring +EXPORT_SYMBOL vmlinux 0x2d8ee065 __pskb_copy_fclone EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d93e213 crypto_sha256_finup EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2db1abaa mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x2db6d1a6 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x2dcc293d tcp_seq_stop EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs -EXPORT_SYMBOL vmlinux 0x2ddb119f ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x2dcfa405 __skb_checksum_complete EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2de44d0b devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x2de8dae4 qdisc_create_dflt EXPORT_SYMBOL vmlinux 0x2def7629 give_up_console EXPORT_SYMBOL vmlinux 0x2e05922a tegra_ivc_read_get_next_frame -EXPORT_SYMBOL vmlinux 0x2e06fd91 ppp_unregister_compressor EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e1b8bee ipmr_rule_default EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw +EXPORT_SYMBOL vmlinux 0x2e2e41ee thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x2e3d167b skb_mac_gso_segment EXPORT_SYMBOL vmlinux 0x2e42dad3 param_ops_ushort EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e793b58 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x2e7ef809 security_dentry_init_security EXPORT_SYMBOL vmlinux 0x2e820567 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x2e8ccac2 scsi_mode_sense EXPORT_SYMBOL vmlinux 0x2e998a2a par_io_of_config +EXPORT_SYMBOL vmlinux 0x2e9d621f qdisc_reset +EXPORT_SYMBOL vmlinux 0x2ea0fdac mdiobus_read EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x2ea6a191 dev_set_promiscuity EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ed9a7f1 lease_get_mtime EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2ee6a580 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x2ee7be06 genphy_c37_read_status EXPORT_SYMBOL vmlinux 0x2eea912c get_random_bytes_arch EXPORT_SYMBOL vmlinux 0x2efedeb0 is_acpi_device_node -EXPORT_SYMBOL vmlinux 0x2effd1f8 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f0558ca netlink_ns_capable EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_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 0x2f3c9147 md_bitmap_end_sync EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f82abac ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0x2f8d2787 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x2f882378 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x2f8d3f93 netdev_warn +EXPORT_SYMBOL vmlinux 0x2f9c9897 kern_unmount_array EXPORT_SYMBOL vmlinux 0x2fb0be22 dquot_free_inode EXPORT_SYMBOL vmlinux 0x2fb3e88d tty_register_driver EXPORT_SYMBOL vmlinux 0x2fc99dce blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x2fd42935 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x2fc9a6e6 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x2fd523a6 of_device_unregister +EXPORT_SYMBOL vmlinux 0x2fdda6f5 neigh_table_init EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem -EXPORT_SYMBOL vmlinux 0x2fe630da skb_expand_head -EXPORT_SYMBOL vmlinux 0x300dd2b3 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x30163e0a get_unmapped_area -EXPORT_SYMBOL vmlinux 0x30464588 sock_i_ino +EXPORT_SYMBOL vmlinux 0x30323ec7 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x3037a917 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x30463d1d xfrm_find_acq EXPORT_SYMBOL vmlinux 0x304df3e7 md_bitmap_start_sync EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0x30564883 tcp_poll EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a26723 migrate_page EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30ad25d5 wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0x30b610b2 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x30b16e77 gro_find_complete_by_type EXPORT_SYMBOL vmlinux 0x30b89e9f dm_kcopyd_zero EXPORT_SYMBOL vmlinux 0x30c3005b __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0x30cac76c clk_hw_register_clkdev EXPORT_SYMBOL vmlinux 0x30d70594 of_node_put EXPORT_SYMBOL vmlinux 0x30da3bc2 __quota_error -EXPORT_SYMBOL vmlinux 0x30e364ea rtnl_set_sk_err EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw EXPORT_SYMBOL vmlinux 0x30f10003 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x31005120 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x30fa2a0b inode_set_ctime_current EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x31090f0c flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x310cf127 path_get +EXPORT_SYMBOL vmlinux 0x3121f812 scsi_change_queue_depth EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x3128beb4 unix_attach_fds EXPORT_SYMBOL vmlinux 0x3137a929 __do_once_done -EXPORT_SYMBOL vmlinux 0x31386d28 __module_get EXPORT_SYMBOL vmlinux 0x31408d8c pnp_device_detach -EXPORT_SYMBOL vmlinux 0x31531c87 genphy_update_link -EXPORT_SYMBOL vmlinux 0x31745632 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x317584fa netdev_info +EXPORT_SYMBOL vmlinux 0x3149d0cf kernel_write +EXPORT_SYMBOL vmlinux 0x314da761 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x3151f717 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x31592563 netlink_unicast EXPORT_SYMBOL vmlinux 0x3179732c tty_unlock -EXPORT_SYMBOL vmlinux 0x317a82c8 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x3188b4f4 ether_setup +EXPORT_SYMBOL vmlinux 0x3192705d tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available EXPORT_SYMBOL vmlinux 0x31aac2a8 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x31cbe028 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x31df189b i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x31e32e97 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x31b610a9 netdev_bind_sb_channel_queue EXPORT_SYMBOL vmlinux 0x31e66c61 param_set_ushort EXPORT_SYMBOL vmlinux 0x3201ec73 dquot_alloc EXPORT_SYMBOL vmlinux 0x32027f6d pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x320e2db2 scsi_eh_prep_cmnd EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x3219dc70 udp6_seq_ops EXPORT_SYMBOL vmlinux 0x321e266b pci_enable_device_io EXPORT_SYMBOL vmlinux 0x32334bdb iov_iter_kvec EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x3240674a add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x324cafa8 datagram_poll +EXPORT_SYMBOL vmlinux 0x324cb9b8 netdev_pick_tx EXPORT_SYMBOL vmlinux 0x324d55cf __ps2_command -EXPORT_SYMBOL vmlinux 0x326dffaf flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x3276a3a8 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x3276bdf9 dst_discard_out EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x32872ab7 udp_gro_receive EXPORT_SYMBOL vmlinux 0x32ab838b amba_driver_register +EXPORT_SYMBOL vmlinux 0x32b9ba91 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x32c1e30a locks_copy_lock EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d2ac1c seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0x32dcdbe9 kill_block_super EXPORT_SYMBOL vmlinux 0x32df5c93 of_io_request_and_map EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x33018fc2 udp6_csum_init EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl -EXPORT_SYMBOL vmlinux 0x3305a2cd inet_frag_find EXPORT_SYMBOL vmlinux 0x331d5b4b param_set_short -EXPORT_SYMBOL vmlinux 0x3329d24b netdev_printk -EXPORT_SYMBOL vmlinux 0x3332fb0a skb_queue_head EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down -EXPORT_SYMBOL vmlinux 0x334220da __mdiobus_register -EXPORT_SYMBOL vmlinux 0x33569cac dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x3350a4d0 inet6_add_protocol EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x33bccc1f fqdir_exit -EXPORT_SYMBOL vmlinux 0x33c566b3 put_fs_context +EXPORT_SYMBOL vmlinux 0x337b376a xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x33a33d4f get_unmapped_area +EXPORT_SYMBOL vmlinux 0x33a42009 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x33a45539 vfs_unlink +EXPORT_SYMBOL vmlinux 0x33d0f006 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x33e727c2 kill_fasync EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f17536 inetdev_by_index EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x34192bf3 set_user_nice +EXPORT_SYMBOL vmlinux 0x341a65c6 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x342f056c find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x3431173e devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x34362c8b jbd2_journal_set_features EXPORT_SYMBOL vmlinux 0x344c54bd blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x344e9d5e finalize_exec -EXPORT_SYMBOL vmlinux 0x34607d8f __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x345702ba migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x3462d694 netdev_notify_peers EXPORT_SYMBOL vmlinux 0x3470844d ilookup5_nowait EXPORT_SYMBOL vmlinux 0x34735536 seq_open -EXPORT_SYMBOL vmlinux 0x3474856f genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0x34822d88 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x3489b2b8 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x349ac476 qdisc_put +EXPORT_SYMBOL vmlinux 0x349659df inet_csk_accept EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x349d931a tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x349e1fb6 get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd EXPORT_SYMBOL vmlinux 0x34b16334 __next_node_in +EXPORT_SYMBOL vmlinux 0x34b3c1d3 netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0x34bf9f14 __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0x34c2c5d2 seq_printf EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev EXPORT_SYMBOL vmlinux 0x34d12479 dma_map_resource -EXPORT_SYMBOL vmlinux 0x34d4ebfc file_ns_capable -EXPORT_SYMBOL vmlinux 0x34d86fbb xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x34e6a16b reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x34e30157 sock_queue_err_skb EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34fec7a7 file_open_root EXPORT_SYMBOL vmlinux 0x3503cac2 tty_devnum EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier EXPORT_SYMBOL vmlinux 0x351cceb8 serio_close EXPORT_SYMBOL vmlinux 0x352e4c62 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x3531cc9d blk_put_queue -EXPORT_SYMBOL vmlinux 0x3537242c nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x3533270b flow_rule_match_mpls EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy EXPORT_SYMBOL vmlinux 0x3539f4aa _copy_from_iter_nocache EXPORT_SYMBOL vmlinux 0x353ab853 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x354c28f0 write_dirty_buffer EXPORT_SYMBOL vmlinux 0x354d4df7 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x354de771 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x355b82bf genphy_aneg_done EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x357d966f flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x3575db4b vm_iomap_memory EXPORT_SYMBOL vmlinux 0x3599bf78 param_ops_long +EXPORT_SYMBOL vmlinux 0x35a55f70 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x35a5d41e tcp_mss_to_mtu EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 EXPORT_SYMBOL vmlinux 0x35c3a7a3 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x35c4eb01 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x35d8fd2a fqdir_init +EXPORT_SYMBOL vmlinux 0x35e85014 audit_log +EXPORT_SYMBOL vmlinux 0x3600f4da fwnode_irq_get EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x362aa4b9 pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0x362e0791 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x363124e2 phy_resume EXPORT_SYMBOL vmlinux 0x3635328d of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x363730f0 kill_fasync EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x364ffe5a nf_ip_checksum EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const EXPORT_SYMBOL vmlinux 0x366635a5 mpage_readahead +EXPORT_SYMBOL vmlinux 0x36679910 devfreq_resume_device EXPORT_SYMBOL vmlinux 0x3673d1d1 blkdev_issue_write_same EXPORT_SYMBOL vmlinux 0x369fdccf lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x36b4851a skb_ext_add +EXPORT_SYMBOL vmlinux 0x36a8b544 ipv6_find_hdr EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable EXPORT_SYMBOL vmlinux 0x36be7c1f seq_release EXPORT_SYMBOL vmlinux 0x36c228cd blk_cleanup_disk -EXPORT_SYMBOL vmlinux 0x36c3bdd1 generic_file_readonly_mmap EXPORT_SYMBOL vmlinux 0x36c55845 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x36c8b22b vfs_symlink -EXPORT_SYMBOL vmlinux 0x36e3b245 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x36ed0fab blk_rq_init EXPORT_SYMBOL vmlinux 0x36f9438a seq_release_private EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x371bec17 twl6040_set_pll EXPORT_SYMBOL vmlinux 0x372becef dquot_quota_off -EXPORT_SYMBOL vmlinux 0x37364104 netif_set_xps_queue EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x37415023 twl6040_power EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x376b700c inet_add_offload +EXPORT_SYMBOL vmlinux 0x3763c6f3 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x37669efc napi_enable EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream EXPORT_SYMBOL vmlinux 0x3777db5a fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x377a4f40 ata_scsi_cmd_error_handler EXPORT_SYMBOL vmlinux 0x377b8a76 pci_bus_write_config_byte EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x378d5352 ip_route_me_harder EXPORT_SYMBOL vmlinux 0x37969c04 tty_register_device EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c0919c mr_table_alloc +EXPORT_SYMBOL vmlinux 0x37c8e880 mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0x37d17599 clear_nlink EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date EXPORT_SYMBOL vmlinux 0x37e3ec9b vm_event_states -EXPORT_SYMBOL vmlinux 0x37e4b0ad tso_start +EXPORT_SYMBOL vmlinux 0x37f7d1e8 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x37fd52da skb_put +EXPORT_SYMBOL vmlinux 0x38024dd8 fman_set_mac_active_pause +EXPORT_SYMBOL vmlinux 0x38079196 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x3819efd7 netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x382ab9f3 flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0x382ef019 pci_read_vpd EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll EXPORT_SYMBOL vmlinux 0x385681d3 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x38710cca dev_uc_init EXPORT_SYMBOL vmlinux 0x3876523c dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x38806855 xp_raw_get_dma EXPORT_SYMBOL vmlinux 0x38869d88 kstat EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x388e20e7 netdev_get_xmit_slave EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x3896ac3e sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x389c2fcc input_unregister_device +EXPORT_SYMBOL vmlinux 0x389fa69a file_write_and_wait_range EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38abfd25 build_skb_around EXPORT_SYMBOL vmlinux 0x38ac6a04 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x38ad45cb vfs_link -EXPORT_SYMBOL vmlinux 0x38b4015d send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x38bb24c2 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x38bca11d inet_frags_fini +EXPORT_SYMBOL vmlinux 0x38be19b4 mmc_can_erase EXPORT_SYMBOL vmlinux 0x38c4e161 devm_clk_hw_register_clkdev EXPORT_SYMBOL vmlinux 0x38df2011 get_user_pages EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x390a04a2 dev_driver_string +EXPORT_SYMBOL vmlinux 0x3915b81b i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0x391cf532 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x39271fc0 eth_gro_receive EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3947ae25 security_unix_stream_connect EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x395080dc nvmem_get_mac_address EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r EXPORT_SYMBOL vmlinux 0x395b5386 bdev_dax_pgoff EXPORT_SYMBOL vmlinux 0x39619a53 get_cached_acl -EXPORT_SYMBOL vmlinux 0x39724f9f ip_local_deliver EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r EXPORT_SYMBOL vmlinux 0x39a2dbfa fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x39af5d73 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x39b0bfa9 jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39b67dad ppp_register_channel EXPORT_SYMBOL vmlinux 0x39b8d49c cpu_rmap_update EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue -EXPORT_SYMBOL vmlinux 0x39c37a9b security_path_unlink EXPORT_SYMBOL vmlinux 0x39c8ce14 blk_pm_runtime_init EXPORT_SYMBOL vmlinux 0x39cb8db9 seq_write -EXPORT_SYMBOL vmlinux 0x39db0b6c vfs_fadvise EXPORT_SYMBOL vmlinux 0x39f09967 pnpacpi_protocol EXPORT_SYMBOL vmlinux 0x39fda2b2 get_tree_nodev EXPORT_SYMBOL vmlinux 0x3a056012 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x3a0fcea6 devm_devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a25b73e of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x3a26c837 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x3a2f2e0c mark_buffer_async_write EXPORT_SYMBOL vmlinux 0x3a2f3f37 dma_sync_single_for_device EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a416e5d sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x3a40bae8 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x3a496a72 security_path_mknod EXPORT_SYMBOL vmlinux 0x3a4df67d simple_transaction_release -EXPORT_SYMBOL vmlinux 0x3a4e1b9d qdisc_watchdog_init EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a650008 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x3a71e4d5 get_fs_type +EXPORT_SYMBOL vmlinux 0x3a61546c vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0x3a7fb5fc simple_link +EXPORT_SYMBOL vmlinux 0x3a8448d9 netpoll_cleanup EXPORT_SYMBOL vmlinux 0x3a8bb320 devm_clk_get -EXPORT_SYMBOL vmlinux 0x3a93391f i2c_transfer EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer EXPORT_SYMBOL vmlinux 0x3ab9dad6 blk_mq_rq_cpu EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x3ad8d3c4 clean_bdev_aliases EXPORT_SYMBOL vmlinux 0x3ad94092 dmam_alloc_attrs EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region -EXPORT_SYMBOL vmlinux 0x3adbdb6b xfrm_unregister_type EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x3b03aa34 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x3b0928d5 dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma -EXPORT_SYMBOL vmlinux 0x3b167f9a flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0x3b1cf5e3 address_space_init_once EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b22ca2b flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x3b27e1a8 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x3b31259b tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b3675f5 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x3b348323 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x3b486a09 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x3b4a7b3a follow_pfn EXPORT_SYMBOL vmlinux 0x3b5ec521 register_key_type EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6b3728 inet_frags_init EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b7fa185 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x3b90fa64 try_lookup_one_len EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3bafb627 mr_dump EXPORT_SYMBOL vmlinux 0x3bc2a27d of_chosen -EXPORT_SYMBOL vmlinux 0x3bc8fe61 follow_up EXPORT_SYMBOL vmlinux 0x3bc9ae79 blk_integrity_register EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3c0cefcd vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0x3c0df04d configfs_remove_default_groups EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link EXPORT_SYMBOL vmlinux 0x3c1a29ef d_exact_alias -EXPORT_SYMBOL vmlinux 0x3c289dcf security_inet_conn_request EXPORT_SYMBOL vmlinux 0x3c29a948 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x3c2aeb43 nf_log_unset EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr -EXPORT_SYMBOL vmlinux 0x3c3392cc sock_from_file EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf EXPORT_SYMBOL vmlinux 0x3c4b6c8b rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0x3c504aa9 pps_event -EXPORT_SYMBOL vmlinux 0x3c55dc8c mmc_add_host -EXPORT_SYMBOL vmlinux 0x3c637489 kfree_skb_reason -EXPORT_SYMBOL vmlinux 0x3c65a0bc vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x3c873e19 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x3c97f226 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x3c59f70d page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x3c631da5 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x3c7fdbb0 __of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x3c839dd5 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x3c86da96 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x3c8ddf65 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x3c9a66b0 disk_start_io_acct EXPORT_SYMBOL vmlinux 0x3ca4d432 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x3cca5240 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x3caf2084 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x3cb54535 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x3cc22e95 __i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x3ccbab1b pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x3cd015f9 __starget_for_each_device EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw EXPORT_SYMBOL vmlinux 0x3cda3e03 serial8250_register_8250_port EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cebeafd jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x3cf3d916 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x3cf3f077 __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x3d0fcead genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x3d0f6708 inet_csk_reset_keepalive_timer EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align EXPORT_SYMBOL vmlinux 0x3d56db19 param_get_ushort EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d772d11 neigh_update +EXPORT_SYMBOL vmlinux 0x3d72da42 locks_delete_block +EXPORT_SYMBOL vmlinux 0x3d85e7fa skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check EXPORT_SYMBOL vmlinux 0x3d9afe7f rproc_add_subdev EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3da8106f dev_get_port_parent_id EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled EXPORT_SYMBOL vmlinux 0x3daca738 xudma_get_device +EXPORT_SYMBOL vmlinux 0x3dad9814 __neigh_for_each_release EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x3daff18c __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x3db0645b udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x3db26005 skb_split EXPORT_SYMBOL vmlinux 0x3dbed966 component_match_add_release -EXPORT_SYMBOL vmlinux 0x3dc2cb1f register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x3dc487b0 vga_get EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dce64e2 passthru_features_check +EXPORT_SYMBOL vmlinux 0x3dd289d4 genl_notify EXPORT_SYMBOL vmlinux 0x3dd3f054 xudma_rchan_get_id EXPORT_SYMBOL vmlinux 0x3dd5d2ff of_graph_get_port_parent EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3dda1128 reuseport_detach_sock EXPORT_SYMBOL vmlinux 0x3df6c06e blk_queue_alignment_offset EXPORT_SYMBOL vmlinux 0x3dfae1c5 sb_set_blocksize EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e2873b2 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x3e0887e1 ppp_input +EXPORT_SYMBOL vmlinux 0x3e263043 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x3e2fce3b security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e3f7102 mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x3e4fab39 inet_protos +EXPORT_SYMBOL vmlinux 0x3e3c2d09 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x3e474899 sock_no_listen EXPORT_SYMBOL vmlinux 0x3e5c8a1a pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x3e6cb14d mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0x3e79b421 __breadahead_gfp EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc -EXPORT_SYMBOL vmlinux 0x3e82a72d ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x3ea29846 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x3e8fef6e jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x3eb06429 inet6_ioctl EXPORT_SYMBOL vmlinux 0x3ecd9e93 __of_get_address EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up -EXPORT_SYMBOL vmlinux 0x3eeb7cfe device_get_mac_address EXPORT_SYMBOL vmlinux 0x3eee8cca input_allocate_device EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f0c4b32 wake_up_process EXPORT_SYMBOL vmlinux 0x3f0dbf22 disk_stack_limits EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f2456b8 phy_resume +EXPORT_SYMBOL vmlinux 0x3f417a1c mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x3f41b265 security_path_mkdir EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f49aa1f end_page_private_2 EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f4fc095 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x3f52fdbc inet_recvmsg +EXPORT_SYMBOL vmlinux 0x3f4c5c59 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x3f4e1f00 gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0x3f545cad cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0x3f5b2502 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x3f666b75 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x3f67080c phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x3f566e89 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x3f61f824 vme_unregister_bridge EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f8a578b phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x3f8fcc8a xfrm_parse_spi EXPORT_SYMBOL vmlinux 0x3f9cd94a rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0x3fb00fda unlock_page EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region EXPORT_SYMBOL vmlinux 0x3fdeb671 iproc_msi_init EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight EXPORT_SYMBOL vmlinux 0x3fe47399 md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x4004052f inet_frags_init -EXPORT_SYMBOL vmlinux 0x4027d1d6 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x4032007d of_phy_connect -EXPORT_SYMBOL vmlinux 0x4048c598 dev_addr_add -EXPORT_SYMBOL vmlinux 0x4057ac5c reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x3feab5ee xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x4000058f inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x4010dff2 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x401b6801 crypto_sha512_finup EXPORT_SYMBOL vmlinux 0x405a8d30 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x405bcf97 vfs_setpos -EXPORT_SYMBOL vmlinux 0x408084ef sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x4085151c file_fdatawait_range EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409decac dev_alloc_name +EXPORT_SYMBOL vmlinux 0x409dfa29 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x409e5555 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x40a19d51 sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40a9ead3 kern_path EXPORT_SYMBOL vmlinux 0x40b7a1f8 proc_set_size 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 0x40e1851f alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x40f068e4 reuseport_select_sock EXPORT_SYMBOL vmlinux 0x40f37b03 nla_reserve +EXPORT_SYMBOL vmlinux 0x40f3c3fe tcp_setsockopt EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x40fdaa19 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0x410210b9 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x4109e2ea dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x411386fd skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x41166b2e arp_tbl +EXPORT_SYMBOL vmlinux 0x412ed05d crypto_sha512_update EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin EXPORT_SYMBOL vmlinux 0x41304036 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x41432ad3 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue EXPORT_SYMBOL vmlinux 0x41521039 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x4157c4e1 copy_string_kernel -EXPORT_SYMBOL vmlinux 0x416a7442 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x4171a8d6 of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0x41751bac lock_page_memcg -EXPORT_SYMBOL vmlinux 0x4185139d __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x416bb98a vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x416c9c8b security_d_instantiate EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time EXPORT_SYMBOL vmlinux 0x418f66b0 input_event +EXPORT_SYMBOL vmlinux 0x41935e21 of_device_register EXPORT_SYMBOL vmlinux 0x4196eb61 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x41a27d81 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x41a39c8d pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x41aea25d mmc_of_parse_clk_phase EXPORT_SYMBOL vmlinux 0x41c2651f pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x41da4e25 scsi_print_command -EXPORT_SYMBOL vmlinux 0x41dec0fa sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x41d40797 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x41df71ed tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot EXPORT_SYMBOL vmlinux 0x41f28365 tty_port_lower_dtr_rts EXPORT_SYMBOL vmlinux 0x41f43e05 fb_show_logo EXPORT_SYMBOL vmlinux 0x41f70587 clk_get -EXPORT_SYMBOL vmlinux 0x41fb1f74 msm_pinctrl_probe EXPORT_SYMBOL vmlinux 0x42050507 deactivate_super EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x420e1e3d __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x42119052 inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x421d4231 sk_alloc -EXPORT_SYMBOL vmlinux 0x42232871 sk_mc_loop EXPORT_SYMBOL vmlinux 0x42302679 blk_queue_update_dma_pad EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x4234d944 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x4235b25f vme_irq_free EXPORT_SYMBOL vmlinux 0x4239afb4 simple_statfs -EXPORT_SYMBOL vmlinux 0x4243c0f7 vlan_vids_del_by_dev EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4254e99e __find_get_block EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x4285e940 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x428c2bcf udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x425a2fab dev_mc_add +EXPORT_SYMBOL vmlinux 0x42875453 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x4299dd84 generic_writepages +EXPORT_SYMBOL vmlinux 0x42a08f3b mmc_command_done EXPORT_SYMBOL vmlinux 0x42a0c470 iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0x42b2a052 mmc_gpiod_request_cd_irq EXPORT_SYMBOL vmlinux 0x42b8f6b8 param_set_int -EXPORT_SYMBOL vmlinux 0x42b9dcb7 vme_master_mmap EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42ccb423 dst_init -EXPORT_SYMBOL vmlinux 0x42cde135 __pagevec_release +EXPORT_SYMBOL vmlinux 0x42d35c22 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x42dd7d8f inode_set_bytes EXPORT_SYMBOL vmlinux 0x42defd9f cdev_del EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate -EXPORT_SYMBOL vmlinux 0x43216157 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x43234072 mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid EXPORT_SYMBOL vmlinux 0x43555beb pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x43663850 dev_set_threaded -EXPORT_SYMBOL vmlinux 0x436c458f __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x4364cd4d sk_capable EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438789bf skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0x43a457d6 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x43aa9a31 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x43b14642 sock_gettstamp EXPORT_SYMBOL vmlinux 0x43b614e6 pcix_set_mmrbc EXPORT_SYMBOL vmlinux 0x43ba1031 amba_find_device EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43d45377 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x43dad9a4 security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x43db1768 to_nd_btt -EXPORT_SYMBOL vmlinux 0x43dfea7a dst_alloc EXPORT_SYMBOL vmlinux 0x43f53314 dquot_get_next_dqblk EXPORT_SYMBOL vmlinux 0x43f71637 tty_hung_up_p EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x443b91a2 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x4407958e inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x44146a1f jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x441d019b follow_down_one +EXPORT_SYMBOL vmlinux 0x442c81d4 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x443a6b6d console_stop EXPORT_SYMBOL vmlinux 0x443f13d0 fman_get_revision +EXPORT_SYMBOL vmlinux 0x44422b6d skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x4446607e __sk_mem_raise_allocated EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x444cccd0 jbd2_journal_get_create_access EXPORT_SYMBOL vmlinux 0x445da409 bio_endio +EXPORT_SYMBOL vmlinux 0x445eb013 skb_dequeue EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq EXPORT_SYMBOL vmlinux 0x44662dab configfs_register_group -EXPORT_SYMBOL vmlinux 0x446e3254 skb_flow_dissect_meta EXPORT_SYMBOL vmlinux 0x44823b0b fb_validate_mode EXPORT_SYMBOL vmlinux 0x4485c974 d_rehash EXPORT_SYMBOL vmlinux 0x448ad021 fman_get_bmi_max_fifo_size -EXPORT_SYMBOL vmlinux 0x4490c655 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x4491670c ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0x4497d76e blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x4498948d scsi_remove_host EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x449dd832 security_d_instantiate EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add EXPORT_SYMBOL vmlinux 0x44aaba14 pci_free_irq +EXPORT_SYMBOL vmlinux 0x44b28da1 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x44c08eec security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x44c442da tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x44c5fd4c sock_release EXPORT_SYMBOL vmlinux 0x44c6a98f pcim_iomap_regions EXPORT_SYMBOL vmlinux 0x44d685a6 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x44dd2fcd phy_mac_interrupt EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44f286a5 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x44f2c8fc xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x44fa87be skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x4503009b ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450b49e3 __dev_set_mtu EXPORT_SYMBOL vmlinux 0x450d941e vfs_get_super EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x4521259c scsi_free_host_dev EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range +EXPORT_SYMBOL vmlinux 0x452493fc __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x4533bd63 __dynamic_ibdev_dbg EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454f0324 jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x455bce88 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x4569372c skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x4570dabc vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x456cc71d ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user EXPORT_SYMBOL vmlinux 0x4584fff1 param_get_uint EXPORT_SYMBOL vmlinux 0x458fe6c4 phys_mem_access_prot EXPORT_SYMBOL vmlinux 0x459c163a backlight_force_update -EXPORT_SYMBOL vmlinux 0x459c59b7 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x45b708a9 phy_print_status -EXPORT_SYMBOL vmlinux 0x45f84b08 dev_deactivate -EXPORT_SYMBOL vmlinux 0x45f86f81 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x45c4f253 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x45d2ff51 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x45d8d8e8 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x45ee28da __skb_pad EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys EXPORT_SYMBOL vmlinux 0x46193800 configfs_register_default_group EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x4644786d mmc_detect_change EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x46625e0d kernel_sendpage_locked EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x46738084 dev_get_by_napi_id EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x469f27ed call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0x46a8b404 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x46a9113a ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x46b6592e unmap_mapping_range EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46f62196 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x46f765b3 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x46d1b386 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x46f25353 scm_detach_fds 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 0x470c5a25 fscrypt_encrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x4720ac7a key_link EXPORT_SYMBOL vmlinux 0x472bd57e of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x4742a8a8 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x474ad14b arp_send -EXPORT_SYMBOL vmlinux 0x474ddaf4 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x472eb13a kernel_sendpage EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom -EXPORT_SYMBOL vmlinux 0x476924e0 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x476da642 __block_write_begin EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x478faa5a filemap_check_errors EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x47b7bd9c register_shrinker +EXPORT_SYMBOL vmlinux 0x47b65434 ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47c7f83f __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x47c77ca7 generic_file_write_iter EXPORT_SYMBOL vmlinux 0x47cd8396 _copy_from_iter EXPORT_SYMBOL vmlinux 0x47cf786f blk_mq_queue_stopped EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x47d48131 tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x47ded362 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x47fbfd89 scsi_vpd_tpg_id EXPORT_SYMBOL vmlinux 0x47fcb9de input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x47fdddd0 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x4803fe02 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x48116e75 eth_header_cache_update EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open EXPORT_SYMBOL vmlinux 0x4829a47e memcpy EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x482e1c2a __lock_page EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb EXPORT_SYMBOL vmlinux 0x483ebdb8 stop_tty EXPORT_SYMBOL vmlinux 0x4841bdee strnchr @@ -7755,177 +7661,184 @@ 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 0x48608f24 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x48695272 udp_gro_complete +EXPORT_SYMBOL vmlinux 0x4872d6b3 twl6040_get_vibralr_status EXPORT_SYMBOL vmlinux 0x488b5e84 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x48912daa msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x4894fe7f fixed_size_llseek EXPORT_SYMBOL vmlinux 0x489eda10 memset32 EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size EXPORT_SYMBOL vmlinux 0x48ad5369 devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x48b54967 lookup_one_len -EXPORT_SYMBOL vmlinux 0x48b6567a ipv6_chk_custom_prefix EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bf4b51 console_start EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x48c124b5 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x48c9622a mnt_set_expiry EXPORT_SYMBOL vmlinux 0x48cfe128 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x48d9cea3 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x48e210b2 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x48dd0925 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x48e5b45c of_phy_get_and_connect EXPORT_SYMBOL vmlinux 0x48eb8dae dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x48f00886 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x48f931f4 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x48fb12b0 devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49181fcc vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x491b7ba6 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x491f09a2 phy_loopback EXPORT_SYMBOL vmlinux 0x4933ad77 seq_vprintf -EXPORT_SYMBOL vmlinux 0x4943a2b2 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x4948d0e5 mmc_can_discard EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 EXPORT_SYMBOL vmlinux 0x496527a5 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x4966bdf2 fiemap_prep EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x497ea640 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x4983162b __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x4989e365 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x498e2723 pipe_unlock EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x498fa981 generic_fillattr +EXPORT_SYMBOL vmlinux 0x498e9ef4 netdev_port_same_parent_id EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum EXPORT_SYMBOL vmlinux 0x49a03ea4 acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0x49a1e277 get_task_cred -EXPORT_SYMBOL vmlinux 0x49a7dc7d tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0x49aadaa8 netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan EXPORT_SYMBOL vmlinux 0x49b8f753 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x49cb3fba filp_open EXPORT_SYMBOL vmlinux 0x49cc200f vc_resize EXPORT_SYMBOL vmlinux 0x49d83428 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x49e49c8e jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x4a07d91c mdio_bus_type -EXPORT_SYMBOL vmlinux 0x4a0d5d23 tcf_em_register +EXPORT_SYMBOL vmlinux 0x49e1b20a sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x4a027d6f eth_gro_complete EXPORT_SYMBOL vmlinux 0x4a1e0546 blk_rq_map_user_iov EXPORT_SYMBOL vmlinux 0x4a2d1ec6 hmm_range_fault -EXPORT_SYMBOL vmlinux 0x4a31517b scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x4a3929ae generic_file_readonly_mmap EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout EXPORT_SYMBOL vmlinux 0x4a3b40a6 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x4a4baacf arp_send +EXPORT_SYMBOL vmlinux 0x4a662dc2 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x4a692167 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x4a6d5298 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x4a774ade ipv6_getsockopt EXPORT_SYMBOL vmlinux 0x4a7fefdd pps_lookup_dev EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free +EXPORT_SYMBOL vmlinux 0x4a9465a9 netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4aa32082 lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0x4aae16da param_get_hexint +EXPORT_SYMBOL vmlinux 0x4ab3e110 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x4abc6733 can_nice EXPORT_SYMBOL vmlinux 0x4ae156ec mfd_remove_devices EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4b06ea1c vfs_rmdir EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities +EXPORT_SYMBOL vmlinux 0x4b0a68f8 set_binfmt +EXPORT_SYMBOL vmlinux 0x4b0edd8d netif_rx_any_context EXPORT_SYMBOL vmlinux 0x4b14dd49 simple_rmdir -EXPORT_SYMBOL vmlinux 0x4b1ca4af flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x4b55709e vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x4b5ab401 mii_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback EXPORT_SYMBOL vmlinux 0x4b60d003 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x4b62ac39 cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg +EXPORT_SYMBOL vmlinux 0x4b70b228 genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0x4b7172a2 set_cached_acl -EXPORT_SYMBOL vmlinux 0x4ba0de50 of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0x4bb60dc4 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x4b7a57c5 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x4b846e98 kern_unmount EXPORT_SYMBOL vmlinux 0x4bb98796 rproc_alloc +EXPORT_SYMBOL vmlinux 0x4bbcc67e mfd_cell_enable EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bd3173c devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x4bd7b84a dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0x4beaf707 pci_add_new_bus EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid EXPORT_SYMBOL vmlinux 0x4bf6b4fe pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x4c01f7ea scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x4c01b4a3 arp_xmit +EXPORT_SYMBOL vmlinux 0x4c076c84 netlink_ns_capable EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c0874d6 __break_lease +EXPORT_SYMBOL vmlinux 0x4c1569b1 skb_find_text EXPORT_SYMBOL vmlinux 0x4c2164d9 __register_nls EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c3aa049 kernel_bind EXPORT_SYMBOL vmlinux 0x4c3e5f76 dma_sync_wait EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c85fc10 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x4c8c626e tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x4c9cdebb devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x4c615e7d mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x4c65ab26 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x4ca70ea9 __scsi_print_sense EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event EXPORT_SYMBOL vmlinux 0x4cbab3f2 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x4cbc35c3 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x4cc35b6c devm_devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0x4cc905d3 dma_pool_create -EXPORT_SYMBOL vmlinux 0x4cd4f2d5 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x4ce2d63a mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x4cf2f4c9 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x4cd9aaf6 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x4cf3a389 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x4cf98bdf phy_init_hw +EXPORT_SYMBOL vmlinux 0x4cfb46ac sock_set_reuseport EXPORT_SYMBOL vmlinux 0x4d08036a serial8250_do_set_termios EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d14811f __lock_page -EXPORT_SYMBOL vmlinux 0x4d14991c page_symlink EXPORT_SYMBOL vmlinux 0x4d27745d pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x4d29fea8 _dev_notice EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info EXPORT_SYMBOL vmlinux 0x4d307667 pci_match_id -EXPORT_SYMBOL vmlinux 0x4d378664 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x4d3ed3db netif_carrier_on EXPORT_SYMBOL vmlinux 0x4d40eac4 of_match_node EXPORT_SYMBOL vmlinux 0x4d45875b fs_param_is_enum -EXPORT_SYMBOL vmlinux 0x4d59382d scsi_block_requests -EXPORT_SYMBOL vmlinux 0x4d6165c3 nf_getsockopt EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d810888 __lock_sock_fast EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d93cd1f find_get_pages_range_tag EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9c1bc6 mmc_of_parse -EXPORT_SYMBOL vmlinux 0x4da23e68 alloc_pages_vma -EXPORT_SYMBOL vmlinux 0x4da42d83 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x4d9e12ab i2c_del_driver EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq +EXPORT_SYMBOL vmlinux 0x4db59a31 ip_sock_set_tos EXPORT_SYMBOL vmlinux 0x4dc30cac seq_file_path EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read EXPORT_SYMBOL vmlinux 0x4df446c3 param_ops_int -EXPORT_SYMBOL vmlinux 0x4df5c351 setup_arg_pages EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock EXPORT_SYMBOL vmlinux 0x4dfdba3f backlight_device_unregister EXPORT_SYMBOL vmlinux 0x4e0af244 pci_request_regions_exclusive EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x4e214f82 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x4e2827dd sock_rfree +EXPORT_SYMBOL vmlinux 0x4e2dc1b1 inet_sk_rebuild_header 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 0x4e4f0f16 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x4e53749f sync_filesystem EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller EXPORT_SYMBOL vmlinux 0x4e54bf0d tty_port_init -EXPORT_SYMBOL vmlinux 0x4e5a6bfe of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x4e60c141 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x4e67648e sock_wmalloc EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e6f8cd8 compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x4e9685d5 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x4e7acf4d dump_skip +EXPORT_SYMBOL vmlinux 0x4e877eb2 netpoll_send_udp EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset EXPORT_SYMBOL vmlinux 0x4ea4e9de key_payload_reserve EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ecc867e __icmp_send EXPORT_SYMBOL vmlinux 0x4ece6342 free_mdio_bitbang -EXPORT_SYMBOL vmlinux 0x4ee40e3d xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x4eefce5a tcp_mmap +EXPORT_SYMBOL vmlinux 0x4ef27a9c netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0x4ef8b2e2 tty_do_resize EXPORT_SYMBOL vmlinux 0x4f027bfe __acpi_mdiobus_register -EXPORT_SYMBOL vmlinux 0x4f0a9d82 filemap_fdatawait_range_keep_errors EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f1ff2bc datagram_poll EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f276581 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x4f2fcb7b mii_ethtool_gset EXPORT_SYMBOL vmlinux 0x4f30e161 inode_init_owner -EXPORT_SYMBOL vmlinux 0x4f31fb91 inet_listen EXPORT_SYMBOL vmlinux 0x4f3b5d9b handle_edge_irq EXPORT_SYMBOL vmlinux 0x4f497b78 input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f61a342 jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x4f661485 i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder EXPORT_SYMBOL vmlinux 0x4f732bc9 fs_param_is_bool EXPORT_SYMBOL vmlinux 0x4f7dd294 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x4f814dcf __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x4fc8ecde __netif_schedule -EXPORT_SYMBOL vmlinux 0x4fd89a5c security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x4f88b549 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x4fd1f272 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x4fd69d33 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0x4fdb40c9 dma_supported EXPORT_SYMBOL vmlinux 0x4ffb26b6 fb_set_cmap EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree EXPORT_SYMBOL vmlinux 0x5003f73d config_group_init +EXPORT_SYMBOL vmlinux 0x5004b2b6 generic_fadvise EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x500ac02f redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x5018b11c filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x5023199e phy_driver_register EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x50308312 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x5036470c jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x50458491 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x502f38cc rtnl_notify +EXPORT_SYMBOL vmlinux 0x503d504b mii_check_link +EXPORT_SYMBOL vmlinux 0x503fa27c mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0x505616fc debugfs_create_automount EXPORT_SYMBOL vmlinux 0x50624917 sha1_init EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free @@ -7934,62 +7847,64 @@ EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu EXPORT_SYMBOL vmlinux 0x5094f67d d_genocide EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50a79f9b sock_wfree EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50c2711c __traceiter_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x50c64bb3 rpmh_write EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf EXPORT_SYMBOL vmlinux 0x50d25d33 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x50d2720d vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0x50dc9f94 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x50d31ed8 netdev_err EXPORT_SYMBOL vmlinux 0x50eb6ae5 zero_fill_bio EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr EXPORT_SYMBOL vmlinux 0x50fbbd83 blkdev_issue_flush EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x510ceaa6 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x512a1646 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x511a3b77 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x511d7219 redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0x512bd44d vm_map_ram +EXPORT_SYMBOL vmlinux 0x51311826 sk_stream_error +EXPORT_SYMBOL vmlinux 0x5149b42b security_task_getsecid_subj EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x515214ef dev_add_offload -EXPORT_SYMBOL vmlinux 0x515a5a9c udp_seq_start EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod -EXPORT_SYMBOL vmlinux 0x5162ebb7 inet_addr_type +EXPORT_SYMBOL vmlinux 0x51602563 reuseport_stop_listen_sock EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x5167b01d mark_page_accessed +EXPORT_SYMBOL vmlinux 0x5170026c flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x517f420d __zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x5189c580 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x519016cf xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x51b0a458 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x51c17f2e security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x51970fb5 devfreq_update_interval EXPORT_SYMBOL vmlinux 0x51c7e9d4 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x51cbc5a3 dev_loopback_xmit EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x51fc1182 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x5202951e scsi_vpd_lun_id EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x52122087 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x520d08fb poll_freewait +EXPORT_SYMBOL vmlinux 0x5221c1d6 peernet2id +EXPORT_SYMBOL vmlinux 0x522ca0bd netif_rx +EXPORT_SYMBOL vmlinux 0x5232ab74 dst_destroy EXPORT_SYMBOL vmlinux 0x523b0b84 param_set_long +EXPORT_SYMBOL vmlinux 0x5259675f xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x5266e52e dev_mc_flush EXPORT_SYMBOL vmlinux 0x5267d234 simple_transaction_set EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack EXPORT_SYMBOL vmlinux 0x527a4d02 sunxi_sram_release EXPORT_SYMBOL vmlinux 0x528dd0ac textsearch_register EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x529baa2b filemap_fdatawait_keep_errors EXPORT_SYMBOL vmlinux 0x529ec618 __register_chrdev +EXPORT_SYMBOL vmlinux 0x52b2122e reuseport_add_sock EXPORT_SYMBOL vmlinux 0x52b8b64c dcache_dir_open -EXPORT_SYMBOL vmlinux 0x52c06055 eth_header EXPORT_SYMBOL vmlinux 0x52c1bc12 pci_enable_device_mem EXPORT_SYMBOL vmlinux 0x52c300aa sg_miter_skip -EXPORT_SYMBOL vmlinux 0x52d1d2e3 tcf_classify -EXPORT_SYMBOL vmlinux 0x52d5047d ppp_channel_index +EXPORT_SYMBOL vmlinux 0x52cb16dc flow_block_cb_priv EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52d8bad3 of_clk_get EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x52f7599e phy_trigger_machine EXPORT_SYMBOL vmlinux 0x52fbaf99 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x52fbd78c dev_mc_sync +EXPORT_SYMBOL vmlinux 0x52fbe40a inode_permission EXPORT_SYMBOL vmlinux 0x52fc40ee key_instantiate_and_link EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum @@ -7997,115 +7912,115 @@ EXPORT_SYMBOL vmlinux 0x5328ff78 pcie_get_width_cap EXPORT_SYMBOL vmlinux 0x53291645 pci_ep_cfs_add_epc_group EXPORT_SYMBOL vmlinux 0x533206b5 sort_r EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x53477eda mmc_erase +EXPORT_SYMBOL vmlinux 0x53444cd2 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x5350ff89 nf_log_trace EXPORT_SYMBOL vmlinux 0x535d2f61 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x535d3d1c sock_no_recvmsg EXPORT_SYMBOL vmlinux 0x536c3284 fsl_ifc_ctrl_dev EXPORT_SYMBOL vmlinux 0x538581f2 blkdev_put -EXPORT_SYMBOL vmlinux 0x5385ddce mr_table_dump EXPORT_SYMBOL vmlinux 0x538d6c8a fman_get_qman_channel_id EXPORT_SYMBOL vmlinux 0x539b3524 seq_lseek EXPORT_SYMBOL vmlinux 0x53b954a2 up_read EXPORT_SYMBOL vmlinux 0x53bfa4a4 t10_pi_type3_ip EXPORT_SYMBOL vmlinux 0x53c64393 tty_name -EXPORT_SYMBOL vmlinux 0x53d3bd93 of_device_register -EXPORT_SYMBOL vmlinux 0x53da6aa8 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x53e1b345 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x53e30d82 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x53ce4126 release_sock +EXPORT_SYMBOL vmlinux 0x53df9d9a register_filesystem EXPORT_SYMBOL vmlinux 0x53e50ffa first_ec +EXPORT_SYMBOL vmlinux 0x53eb2589 grab_cache_page_write_begin EXPORT_SYMBOL vmlinux 0x53eef508 dquot_claim_space_nodirty EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x53fdea60 netdev_notify_peers EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair -EXPORT_SYMBOL vmlinux 0x540c38dd scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x54144628 ata_print_version -EXPORT_SYMBOL vmlinux 0x541959f4 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x54246c77 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x5437b50a tcp_seq_next +EXPORT_SYMBOL vmlinux 0x541638e0 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x541c1bdc km_policy_expired EXPORT_SYMBOL vmlinux 0x5439d628 devm_nvmem_cell_put EXPORT_SYMBOL vmlinux 0x543b2e70 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x543dcd34 tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5445c8c8 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0x544a7728 sock_set_priority +EXPORT_SYMBOL vmlinux 0x5462ddc9 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x546797dd path_put +EXPORT_SYMBOL vmlinux 0x547e2023 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x5491484b security_sb_mnt_opts_compat EXPORT_SYMBOL vmlinux 0x54933ab9 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x5495378c mmc_cqe_request_done EXPORT_SYMBOL vmlinux 0x54a17075 cdev_init EXPORT_SYMBOL vmlinux 0x54a5141b pcie_set_mps -EXPORT_SYMBOL vmlinux 0x54a59dc7 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x54afb067 phy_drivers_unregister EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value EXPORT_SYMBOL vmlinux 0x54b64cb7 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x54c6c5be ipv6_setsockopt EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x54d37b59 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x54e07871 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0x54e6baa2 dma_resv_reserve_shared EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags +EXPORT_SYMBOL vmlinux 0x54ed13ab i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x54f49b49 tcp_recvmsg EXPORT_SYMBOL vmlinux 0x54f4eeb0 from_kprojid -EXPORT_SYMBOL vmlinux 0x5500e624 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x54fb0ad0 vfs_fsync_range EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire -EXPORT_SYMBOL vmlinux 0x5515946d netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x550a4fe1 tcp_release_cb EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x5550b4bf mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0x555198b4 __generic_file_fsync EXPORT_SYMBOL vmlinux 0x556090d3 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x5564cac0 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x5571b8b5 gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0x55819417 misc_register EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey EXPORT_SYMBOL vmlinux 0x5596cc94 ram_aops -EXPORT_SYMBOL vmlinux 0x5597c4a7 set_binfmt -EXPORT_SYMBOL vmlinux 0x55ae7d12 sock_alloc +EXPORT_SYMBOL vmlinux 0x55aa2599 generic_setlease +EXPORT_SYMBOL vmlinux 0x55ae8326 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x55c002b0 register_netdev +EXPORT_SYMBOL vmlinux 0x55d51648 rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0x55df6acc seq_escape EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 EXPORT_SYMBOL vmlinux 0x55f7c9c4 set_nlink +EXPORT_SYMBOL vmlinux 0x560996da devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0x560ac890 iter_file_splice_write EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh -EXPORT_SYMBOL vmlinux 0x561847dd udp_ioctl -EXPORT_SYMBOL vmlinux 0x561a7b51 sock_no_listen -EXPORT_SYMBOL vmlinux 0x5625f252 vfs_unlink +EXPORT_SYMBOL vmlinux 0x5619fed7 vfs_setpos +EXPORT_SYMBOL vmlinux 0x56264afb eth_platform_get_mac_address EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5636ae4e tcp_fastopen_defer_connect EXPORT_SYMBOL vmlinux 0x564384c3 config_item_set_name EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk EXPORT_SYMBOL vmlinux 0x5647cd7f mpage_readpage +EXPORT_SYMBOL vmlinux 0x564a3b07 __scsi_iterate_devices EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register EXPORT_SYMBOL vmlinux 0x564f8e88 elevator_alloc -EXPORT_SYMBOL vmlinux 0x5653e4ec __bread_gfp +EXPORT_SYMBOL vmlinux 0x564fcc3f migrate_vma_pages EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x569903d0 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x56b6362b xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x56b819c8 msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0x56beafa5 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x5691e42b ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x5693d322 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x569fbcd7 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x56ae77d1 mmc_put_card EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56cec027 locks_free_lock EXPORT_SYMBOL vmlinux 0x56d2d065 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x56e9a0c7 rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0x56ed8b21 is_nd_pfn -EXPORT_SYMBOL vmlinux 0x56f5bf2c km_query -EXPORT_SYMBOL vmlinux 0x5731740c skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x57109d35 udp_disconnect +EXPORT_SYMBOL vmlinux 0x5738ff82 register_console +EXPORT_SYMBOL vmlinux 0x57392534 devm_devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x576440df devfreq_add_governor EXPORT_SYMBOL vmlinux 0x57656f54 pci_find_bus EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5767be8c stream_open EXPORT_SYMBOL vmlinux 0x576dbe3f kthread_stop EXPORT_SYMBOL vmlinux 0x5776bb5a proc_set_user EXPORT_SYMBOL vmlinux 0x577a5c05 pci_find_resource EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0x5792f3cf neigh_for_each EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy EXPORT_SYMBOL vmlinux 0x57a03ee3 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0x57a2d3ec generic_file_mmap -EXPORT_SYMBOL vmlinux 0x57b69b58 udp_read_sock EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write EXPORT_SYMBOL vmlinux 0x57c0308f blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0x57c4bd5f dquot_destroy +EXPORT_SYMBOL vmlinux 0x57cf9a99 find_get_pages_contig EXPORT_SYMBOL vmlinux 0x57d2c195 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x57dc080d xsk_set_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x57e1b69a md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x57e8c333 jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info EXPORT_SYMBOL vmlinux 0x57fd7a10 clkdev_drop EXPORT_SYMBOL vmlinux 0x580f4ced cdev_device_add @@ -8116,36 +8031,35 @@ EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm EXPORT_SYMBOL vmlinux 0x583bd162 dm_unregister_target -EXPORT_SYMBOL vmlinux 0x58428b50 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x584bfb00 mmput_async EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic EXPORT_SYMBOL vmlinux 0x585bf303 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x586fbbfd _dev_alert -EXPORT_SYMBOL vmlinux 0x587875be tcf_get_next_proto EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc EXPORT_SYMBOL vmlinux 0x587d172d input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x587e27db consume_skb EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key EXPORT_SYMBOL vmlinux 0x588704a9 sg_miter_start -EXPORT_SYMBOL vmlinux 0x588c375f of_phy_register_fixed_link EXPORT_SYMBOL vmlinux 0x589aa1c4 fman_port_get_device -EXPORT_SYMBOL vmlinux 0x58a07a0c vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58b038c4 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x58b3b88c inet_frag_find EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bc81e1 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x58d58023 phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0x58d6645d __serio_register_port -EXPORT_SYMBOL vmlinux 0x58de665d udp_seq_next +EXPORT_SYMBOL vmlinux 0x58d87b2a netdev_name_node_alt_create EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58fdaa94 inet_accept +EXPORT_SYMBOL vmlinux 0x58fe30a3 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x5913a3c7 filemap_fdatawrite EXPORT_SYMBOL vmlinux 0x591bad26 vga_remove_vgacon EXPORT_SYMBOL vmlinux 0x5932bd09 input_mt_get_slot_by_key EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq EXPORT_SYMBOL vmlinux 0x59378f16 param_set_invbool -EXPORT_SYMBOL vmlinux 0x5949cf73 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x59515b96 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x5952d09d security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x595a7e25 submit_bh +EXPORT_SYMBOL vmlinux 0x59496f2f dev_activate EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x595d855e try_module_get +EXPORT_SYMBOL vmlinux 0x59963daf xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node EXPORT_SYMBOL vmlinux 0x59a2f0ee packing @@ -8157,571 +8071,594 @@ EXPORT_SYMBOL vmlinux 0x59f19901 devm_rproc_alloc EXPORT_SYMBOL vmlinux 0x59fa3ee4 max8998_read_reg EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a31ae66 block_invalidatepage EXPORT_SYMBOL vmlinux 0x5a38c58d serial8250_set_isa_configurator EXPORT_SYMBOL vmlinux 0x5a39487d blk_mq_run_hw_queue EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5a4abf15 xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 +EXPORT_SYMBOL vmlinux 0x5a787259 scsi_block_requests EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x5a9016b0 scsi_get_host_dev EXPORT_SYMBOL vmlinux 0x5a921311 strncmp EXPORT_SYMBOL vmlinux 0x5a9706bc simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x5a981ba8 __cgroup_bpf_run_filter_sk EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5aa9f463 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x5ac35c7b kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x5abab49c __sk_mem_schedule EXPORT_SYMBOL vmlinux 0x5ac37f1a get_cached_acl_rcu EXPORT_SYMBOL vmlinux 0x5ad015e0 con_is_bound -EXPORT_SYMBOL vmlinux 0x5ad18f12 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x5ae0999b vme_dma_list_add EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5aed57cf mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x5afb5237 vfs_mknod +EXPORT_SYMBOL vmlinux 0x5b052c04 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x5b0b1b31 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x5b161dfd vfs_mkobj EXPORT_SYMBOL vmlinux 0x5b16aa76 input_match_device_id -EXPORT_SYMBOL vmlinux 0x5b1d7a83 qdisc_hash_add EXPORT_SYMBOL vmlinux 0x5b2a1046 devm_of_find_backlight EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr -EXPORT_SYMBOL vmlinux 0x5b30cbf0 neigh_direct_output EXPORT_SYMBOL vmlinux 0x5b31a51d fscrypt_ioctl_set_policy EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b40c4c6 jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0x5b4c8a66 generic_iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0x5b4d1a64 mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b6991d0 tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0x5b9cd72e security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x5b790899 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x5b8742b4 sock_set_sndtimeo EXPORT_SYMBOL vmlinux 0x5ba077f5 simple_get_link +EXPORT_SYMBOL vmlinux 0x5ba2b569 tcf_action_dump_1 EXPORT_SYMBOL vmlinux 0x5ba31f96 fscrypt_setup_filename EXPORT_SYMBOL vmlinux 0x5ba87b99 iov_iter_get_pages EXPORT_SYMBOL vmlinux 0x5ba99ee5 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x5bb0ec17 sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5be04ab1 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x5bdff322 netif_device_detach EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub EXPORT_SYMBOL vmlinux 0x5be8d2c0 d_obtain_root EXPORT_SYMBOL vmlinux 0x5bee9dd2 acpi_bus_register_driver EXPORT_SYMBOL vmlinux 0x5bfb4c79 rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x5c1f97b7 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x5c23342f security_path_mkdir +EXPORT_SYMBOL vmlinux 0x5c1180d1 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x5c13da41 netdev_notice EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c2c9efc ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x5c2cf52d security_sctp_bind_connect EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c3d726b twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x5c4a4f46 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x5c5bbc6a tcf_idr_search EXPORT_SYMBOL vmlinux 0x5c7f4cbd devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x5c7f504c call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x5c8f74b4 reuseport_attach_prog EXPORT_SYMBOL vmlinux 0x5c910dff mount_bdev -EXPORT_SYMBOL vmlinux 0x5c967ceb mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x5ca91e6c vfs_getattr_nosec EXPORT_SYMBOL vmlinux 0x5cae9486 iov_iter_discard -EXPORT_SYMBOL vmlinux 0x5cb0ba60 netdev_lower_state_changed EXPORT_SYMBOL vmlinux 0x5ccc4ca6 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x5ceb6290 phy_queue_state_machine EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio +EXPORT_SYMBOL vmlinux 0x5d25bdaa dentry_open +EXPORT_SYMBOL vmlinux 0x5d275601 __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0x5d2846d1 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x5d47f278 __traceiter_module_get EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d5adf52 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x5d59d2dc netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0x5d5d47a9 dcache_dir_close EXPORT_SYMBOL vmlinux 0x5d6c910f __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x5d7125c9 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x5d7a5ea0 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x5d7d68a7 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x5d82bf7d i2c_smbus_read_byte EXPORT_SYMBOL vmlinux 0x5d91d7db param_ops_ullong -EXPORT_SYMBOL vmlinux 0x5d9a85b9 jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x5da1fb94 super_setup_bdi EXPORT_SYMBOL vmlinux 0x5da5b919 tty_wait_until_sent EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh -EXPORT_SYMBOL vmlinux 0x5dacd9c5 vfs_get_link -EXPORT_SYMBOL vmlinux 0x5db4d3eb scsi_block_when_processing_errors EXPORT_SYMBOL vmlinux 0x5dc28eaf dm_get_device -EXPORT_SYMBOL vmlinux 0x5ddaac1d xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x5dc8305a phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x5dc865f9 neigh_for_each +EXPORT_SYMBOL vmlinux 0x5ddf6a0f filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x5de8164e tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x5df745f8 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x5df93bca xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict EXPORT_SYMBOL vmlinux 0x5e010519 register_cdrom -EXPORT_SYMBOL vmlinux 0x5e030d79 tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0x5e0ae004 qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e0f4880 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x5e1af870 softnet_data EXPORT_SYMBOL vmlinux 0x5e211a32 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x5e23cb1e mmc_of_parse EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe EXPORT_SYMBOL vmlinux 0x5e445fc8 iput EXPORT_SYMBOL vmlinux 0x5e578327 input_register_device EXPORT_SYMBOL vmlinux 0x5e5f3951 __frontswap_test +EXPORT_SYMBOL vmlinux 0x5e66b040 __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0x5e670812 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x5e6ec757 dcb_getapp EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping EXPORT_SYMBOL vmlinux 0x5e704d7f igrab -EXPORT_SYMBOL vmlinux 0x5e7d5ef5 xp_dma_map EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e857bce sock_cmsg_send EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9c563e __sock_create EXPORT_SYMBOL vmlinux 0x5ea76212 blk_integrity_unregister EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb4c17b inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5ec75eab gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0x5ecf2229 fs_param_is_s32 EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed09c54 rtnl_create_link EXPORT_SYMBOL vmlinux 0x5ed8dabf dm_table_get_mode EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun EXPORT_SYMBOL vmlinux 0x5eec8f49 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x5ef137eb __skb_get_hash -EXPORT_SYMBOL vmlinux 0x5ef184f4 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5efd970c block_write_begin EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f225640 netdev_emerg EXPORT_SYMBOL vmlinux 0x5f24043b pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x5f3f72e6 fqdir_init -EXPORT_SYMBOL vmlinux 0x5f487160 register_filesystem +EXPORT_SYMBOL vmlinux 0x5f48c93d mmc_detect_card_removed EXPORT_SYMBOL vmlinux 0x5f49f7ed mdio_device_free EXPORT_SYMBOL vmlinux 0x5f4a08cf dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x5f51484f xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f5bce6a __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x5f5ecd2b vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f72cb1e netdev_alert +EXPORT_SYMBOL vmlinux 0x5f8acb47 __sock_i_ino EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fc77e17 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x5fc87e16 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x5fc88f74 path_is_under EXPORT_SYMBOL vmlinux 0x5fd01784 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x5fe8072c skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x5feaef49 udp6_csum_init EXPORT_SYMBOL vmlinux 0x5fed178c meson_sm_call EXPORT_SYMBOL vmlinux 0x5ff890db tty_port_close_end EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x60023184 unix_attach_fds EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600b2de3 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x601b1370 xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0x601dd9b9 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x601ee4c2 xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x60208ac4 inet_shutdown +EXPORT_SYMBOL vmlinux 0x60345212 mmc_unregister_driver EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent EXPORT_SYMBOL vmlinux 0x605a8556 inode_init_once -EXPORT_SYMBOL vmlinux 0x6060b016 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x606d9c5a lookup_one -EXPORT_SYMBOL vmlinux 0x607f308e ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x607fc50d audit_log_start +EXPORT_SYMBOL vmlinux 0x605ae274 rt6_lookup +EXPORT_SYMBOL vmlinux 0x606da613 xfrm_user_policy EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x60906aa7 arp_create EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton -EXPORT_SYMBOL vmlinux 0x609cef6a inet_sk_set_state EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a3b76a skb_queue_head EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add -EXPORT_SYMBOL vmlinux 0x60adb914 netdev_bind_sb_channel_queue EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec EXPORT_SYMBOL vmlinux 0x60b69822 mipi_dsi_dcs_set_tear_off EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get EXPORT_SYMBOL vmlinux 0x60e39bde get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x60e3eb46 set_user_nice +EXPORT_SYMBOL vmlinux 0x61021680 netlink_broadcast_filtered EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address EXPORT_SYMBOL vmlinux 0x6111059d d_invalidate EXPORT_SYMBOL vmlinux 0x6119447c rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x611eaac2 dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x61483a6b __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x6150238d qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x6157a76b scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge EXPORT_SYMBOL vmlinux 0x616c30a2 con_copy_unimap -EXPORT_SYMBOL vmlinux 0x616d28a7 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x616df435 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x61771fbb request_key_with_auxdata EXPORT_SYMBOL vmlinux 0x61777683 clear_bdi_congested EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x61888654 dst_destroy EXPORT_SYMBOL vmlinux 0x618911fc numa_node EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61a3fc2d scsi_device_get EXPORT_SYMBOL vmlinux 0x61aa729c pci_disable_msix EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull EXPORT_SYMBOL vmlinux 0x61c8c0bd sg_miter_stop EXPORT_SYMBOL vmlinux 0x61cc1b61 pnp_is_active -EXPORT_SYMBOL vmlinux 0x61d3f153 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x61d76964 skb_pull +EXPORT_SYMBOL vmlinux 0x61da80dd netdev_change_features EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61edd28d sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x621302cd mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x61ef7847 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x61f614f0 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x61ffb2f7 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x6212031b mmc_retune_release EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6215c540 page_readlink EXPORT_SYMBOL vmlinux 0x62186fb1 rtc_add_group -EXPORT_SYMBOL vmlinux 0x621e1301 xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single EXPORT_SYMBOL vmlinux 0x623b968a rproc_detach -EXPORT_SYMBOL vmlinux 0x623cd2b3 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0x6248c153 vfs_mkobj -EXPORT_SYMBOL vmlinux 0x625fe4b1 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x624095c7 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x625131e1 vfs_path_lookup EXPORT_SYMBOL vmlinux 0x62659141 vc_cons +EXPORT_SYMBOL vmlinux 0x626aabcd open_exec +EXPORT_SYMBOL vmlinux 0x6270bbf0 i2c_put_adapter EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627da983 vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x6289d8ee jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x628a1d46 follow_down +EXPORT_SYMBOL vmlinux 0x628f3aba ppp_register_channel EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x62b5d2e8 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x6295c9a6 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x62a5bb9c file_path EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62d48971 __starget_for_each_device EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal -EXPORT_SYMBOL vmlinux 0x62e6a204 udp6_seq_ops EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable EXPORT_SYMBOL vmlinux 0x63026ebe is_acpi_data_node EXPORT_SYMBOL vmlinux 0x6304b6c8 kobject_set_name -EXPORT_SYMBOL vmlinux 0x630bfd4c __block_write_full_page -EXPORT_SYMBOL vmlinux 0x63134be6 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x63144ee4 vm_map_pages EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x632652e1 alloc_pages_vma EXPORT_SYMBOL vmlinux 0x63292a08 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x632bbc17 dev_printk_emit EXPORT_SYMBOL vmlinux 0x63391577 pci_bus_read_dev_vendor_id EXPORT_SYMBOL vmlinux 0x63456603 unpin_user_page -EXPORT_SYMBOL vmlinux 0x634dbb6b __nlmsg_put -EXPORT_SYMBOL vmlinux 0x635313b3 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x636ee75d scsi_ioctl -EXPORT_SYMBOL vmlinux 0x637d27ce xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x63705baf free_task +EXPORT_SYMBOL vmlinux 0x63763787 security_inode_getsecctx EXPORT_SYMBOL vmlinux 0x6382fc3f blkdev_get_by_path EXPORT_SYMBOL vmlinux 0x638a455d of_xudma_dev_get EXPORT_SYMBOL vmlinux 0x639580ec pci_save_state EXPORT_SYMBOL vmlinux 0x639928e0 fput EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63c49e37 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x63af0c2a ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x63be3ab7 __traceiter_spi_transfer_start EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight EXPORT_SYMBOL vmlinux 0x63da2fb1 blk_queue_split EXPORT_SYMBOL vmlinux 0x63e71c05 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x63e84a7a ip6_frag_init EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f30021 vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0x63fcd235 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x6405c20a ip_setsockopt EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6419ea3e dev_get_by_index EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x643eaa51 __napi_schedule EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x64477794 mmc_can_discard EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus -EXPORT_SYMBOL vmlinux 0x646f4cfd netdev_state_change +EXPORT_SYMBOL vmlinux 0x64785aa8 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64914226 icmp6_send EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x649e05ad ppp_register_net_channel EXPORT_SYMBOL vmlinux 0x64a79144 md_done_sync EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64bc2159 mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x64cd2d1f flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x64d3be43 inet_pton_with_scope EXPORT_SYMBOL vmlinux 0x64d402b2 pci_iomap +EXPORT_SYMBOL vmlinux 0x64d7fa8c release_pages EXPORT_SYMBOL vmlinux 0x64f3dd5c pci_write_config_byte EXPORT_SYMBOL vmlinux 0x64f4957d bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x6509658f scsi_dma_map +EXPORT_SYMBOL vmlinux 0x64f5dd31 inet_csk_init_xmit_timers 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 0x652729dd i2c_smbus_write_byte_data EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x654004af filemap_map_pages EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob EXPORT_SYMBOL vmlinux 0x654449c3 memset16 +EXPORT_SYMBOL vmlinux 0x6556fdd3 netif_receive_skb EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf EXPORT_SYMBOL vmlinux 0x658220e3 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x65831cdc sock_recv_errqueue EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65c3bd60 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x65c9f80d mntput +EXPORT_SYMBOL vmlinux 0x65b242a1 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x65c6f153 jbd2_journal_get_write_access 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 0x65e4a64c prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x65f097c4 dev_load -EXPORT_SYMBOL vmlinux 0x65f17d16 km_state_notify +EXPORT_SYMBOL vmlinux 0x65eee3f1 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x65f73f6d flow_indr_dev_unregister EXPORT_SYMBOL vmlinux 0x660338a9 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x661764a7 neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x663a92f6 __ip_queue_xmit EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr EXPORT_SYMBOL vmlinux 0x664d588e put_disk -EXPORT_SYMBOL vmlinux 0x6658fbfc phy_attached_info_irq EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x667f333d udp_set_csum -EXPORT_SYMBOL vmlinux 0x6681d678 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x667ecac7 vme_irq_request EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc EXPORT_SYMBOL vmlinux 0x668477b1 tty_register_ldisc EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x669799e9 skb_flow_dissect_meta EXPORT_SYMBOL vmlinux 0x669fb2e6 uart_add_one_port EXPORT_SYMBOL vmlinux 0x66a8329d bio_kmalloc -EXPORT_SYMBOL vmlinux 0x66ae9c43 __sock_i_ino EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock EXPORT_SYMBOL vmlinux 0x66b3a697 nd_device_unregister EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup EXPORT_SYMBOL vmlinux 0x66c570c8 of_node_name_prefix -EXPORT_SYMBOL vmlinux 0x66c7cda0 vme_slot_num -EXPORT_SYMBOL vmlinux 0x66e83a72 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x66f97c8a flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x66dcb878 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x66f04813 dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0x67065485 unregister_key_type +EXPORT_SYMBOL vmlinux 0x670c5af6 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x6715c4ac sock_alloc EXPORT_SYMBOL vmlinux 0x6716ce23 mpage_writepage EXPORT_SYMBOL vmlinux 0x671f3c7d input_set_keycode EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x672d820e block_write_full_page -EXPORT_SYMBOL vmlinux 0x67369ef1 netdev_name_node_alt_create EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x674fefde ip_do_fragment -EXPORT_SYMBOL vmlinux 0x675bff7c __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x6758b5e1 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x675e2355 xfrm_state_insert EXPORT_SYMBOL vmlinux 0x67620ad2 file_remove_privs +EXPORT_SYMBOL vmlinux 0x67654ea3 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x676c8896 skb_expand_head EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x67973c30 phy_attach +EXPORT_SYMBOL vmlinux 0x679c9429 mii_ethtool_sset EXPORT_SYMBOL vmlinux 0x679dc308 mipi_dsi_dcs_set_display_off EXPORT_SYMBOL vmlinux 0x67a0cbe4 touch_atime EXPORT_SYMBOL vmlinux 0x67aafc9f simple_setattr EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b6a228 inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67b876e3 seg6_push_hmac EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read EXPORT_SYMBOL vmlinux 0x67d52b17 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x67d91cb7 netif_rx -EXPORT_SYMBOL vmlinux 0x67dc9011 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x67db803c __skb_flow_dissect EXPORT_SYMBOL vmlinux 0x67e368a6 __nla_reserve -EXPORT_SYMBOL vmlinux 0x681a2a9a tso_count_descs EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x682a25a4 netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0x682bb74c page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x683701fa dev_graft_qdisc EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x68425d9d sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x6855e1d4 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x6861b648 tegra_dfll_register -EXPORT_SYMBOL vmlinux 0x6879a9bf skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x687357aa jbd2_journal_init_dev EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x687bdf24 no_seek_end_llseek_size EXPORT_SYMBOL vmlinux 0x6886ccaa remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0x6892a377 complete_request_key +EXPORT_SYMBOL vmlinux 0x689c2c81 vmf_insert_pfn_prot EXPORT_SYMBOL vmlinux 0x689fb2e5 param_ops_bool EXPORT_SYMBOL vmlinux 0x68af3e19 page_mapped EXPORT_SYMBOL vmlinux 0x68ca0a54 iommu_get_msi_cookie -EXPORT_SYMBOL vmlinux 0x68cdba01 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x68ca78e5 splice_direct_to_actor EXPORT_SYMBOL vmlinux 0x68d55556 padata_do_serial -EXPORT_SYMBOL vmlinux 0x68dea3d7 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x68e6c539 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x68ea163c balance_dirty_pages_ratelimited EXPORT_SYMBOL vmlinux 0x68f08da2 pm_vt_switch_required EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x68fb9e37 grab_cache_page_write_begin EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x69122deb no_seek_end_llseek EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x691e9e62 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x6924ed5a register_netdev +EXPORT_SYMBOL vmlinux 0x691b7b33 vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0x69267367 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x69314657 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x693c80e0 dev_close EXPORT_SYMBOL vmlinux 0x6951d307 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x6952a92f fman_get_pause_cfg EXPORT_SYMBOL vmlinux 0x69585523 __ksize EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x6970b38e scsi_remove_device EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days EXPORT_SYMBOL vmlinux 0x69715dc5 bdev_read_only EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x69a16a3e dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x69a2b25e __netlink_dump_start EXPORT_SYMBOL vmlinux 0x69a7cf24 md_write_end -EXPORT_SYMBOL vmlinux 0x69aea2b2 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x69c2f06c tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x69af9ad9 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x69b28c30 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x69b47551 end_page_private_2 EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le -EXPORT_SYMBOL vmlinux 0x69de7921 dev_uc_sync EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window EXPORT_SYMBOL vmlinux 0x69ece8d9 key_revoke EXPORT_SYMBOL vmlinux 0x69f38847 cpu_hwcap_keys +EXPORT_SYMBOL vmlinux 0x69f54460 proto_unregister +EXPORT_SYMBOL vmlinux 0x69ff15dc xfrm_parse_spi EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a1247fb security_sk_clone EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table -EXPORT_SYMBOL vmlinux 0x6a520450 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x6a5c5c47 posix_lock_file +EXPORT_SYMBOL vmlinux 0x6a4beb2c xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x6a5571f8 xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a8ca5c9 tcp_get_md5sig_pool EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq -EXPORT_SYMBOL vmlinux 0x6a933e73 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x6a992c0b alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x6aa0080a udp_lib_unhash EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6aa1c188 ip_frag_init -EXPORT_SYMBOL vmlinux 0x6ab14cfd ping_prot -EXPORT_SYMBOL vmlinux 0x6aba313b eth_mac_addr -EXPORT_SYMBOL vmlinux 0x6ac2cab9 inet_release -EXPORT_SYMBOL vmlinux 0x6acc812b inode_set_bytes +EXPORT_SYMBOL vmlinux 0x6ab058b8 sk_dst_check +EXPORT_SYMBOL vmlinux 0x6abaa95f of_mdio_find_bus EXPORT_SYMBOL vmlinux 0x6ad5206b fbcon_update_vcs EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device EXPORT_SYMBOL vmlinux 0x6ae17b53 mipi_dsi_shutdown_peripheral EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset EXPORT_SYMBOL vmlinux 0x6aeefd38 pci_write_config_word -EXPORT_SYMBOL vmlinux 0x6b0ad582 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x6b1b3b6b netif_tx_wake_queue EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup EXPORT_SYMBOL vmlinux 0x6b281cac dma_get_sgtable_attrs EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b429377 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x6b334bed dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x6b426c96 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x6b4559c2 sock_common_getsockopt EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap -EXPORT_SYMBOL vmlinux 0x6b4bbf0e nf_log_packet +EXPORT_SYMBOL vmlinux 0x6b4b2dfb mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x6b51f79b scsi_dma_unmap EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b6529b3 eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0x6b704f56 get_user_pages_locked EXPORT_SYMBOL vmlinux 0x6b762f03 truncate_pagecache_range EXPORT_SYMBOL vmlinux 0x6b7c0646 cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0x6b7e1dae xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x6b7fdc13 __of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x6b81137d keyring_search EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b8b3d39 mii_nway_restart EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6b8d9aa7 udp6_set_csum EXPORT_SYMBOL vmlinux 0x6b8dfe2e set_anon_super -EXPORT_SYMBOL vmlinux 0x6b96c9d8 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x6b9727da inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow EXPORT_SYMBOL vmlinux 0x6b9fec26 fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x6ba08750 dns_query EXPORT_SYMBOL vmlinux 0x6bad221d d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x6baf745e phy_find_first EXPORT_SYMBOL vmlinux 0x6bb41176 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x6bb87c8d vfs_get_link +EXPORT_SYMBOL vmlinux 0x6bb9ac8e dentry_path_raw +EXPORT_SYMBOL vmlinux 0x6bc26689 __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc6b7d3 devfreq_monitor_start EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6bd88276 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x6bdd2234 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x6bdf264d phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6be66183 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x6be2c82c inet_frag_kill +EXPORT_SYMBOL vmlinux 0x6be4eb8f mdiobus_scan EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free EXPORT_SYMBOL vmlinux 0x6c01fb2d dmaengine_get_unmap_data EXPORT_SYMBOL vmlinux 0x6c115425 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x6c17b9b6 user_path_create EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c2dfd14 jbd2_journal_get_create_access EXPORT_SYMBOL vmlinux 0x6c2f44b1 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x6c4a554b scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x6c4e5308 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x6c309830 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x6c465f68 tcp_make_synack EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c5e3227 dev_uc_del EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c64857c ip_defrag EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x6c85a462 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x6cb051ea netdev_err +EXPORT_SYMBOL vmlinux 0x6c834c63 nf_log_register EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cb6802f ip_frag_init EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user -EXPORT_SYMBOL vmlinux 0x6cbc2aec jbd2_transaction_committed EXPORT_SYMBOL vmlinux 0x6cbcf11c get_tree_single EXPORT_SYMBOL vmlinux 0x6cbee2af put_ipc_ns -EXPORT_SYMBOL vmlinux 0x6cca454e skb_trim -EXPORT_SYMBOL vmlinux 0x6cdafc4c mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x6cccf35d xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x6cd0914f fs_context_for_submount EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6cf5d75d add_to_pipe -EXPORT_SYMBOL vmlinux 0x6d02bb33 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x6cff4842 scm_fp_dup EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable EXPORT_SYMBOL vmlinux 0x6d1a2449 backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0x6d249e10 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x6d251501 xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d3227a9 jbd2_journal_abort EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d394860 i2c_verify_adapter EXPORT_SYMBOL vmlinux 0x6d44b003 pin_user_pages EXPORT_SYMBOL vmlinux 0x6d52ca32 serio_reconnect -EXPORT_SYMBOL vmlinux 0x6d5de0e0 of_device_unregister EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged EXPORT_SYMBOL vmlinux 0x6d626cb1 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x6d6eb88d f_setown EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d8c8cfd ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x6d82eab8 pskb_extract +EXPORT_SYMBOL vmlinux 0x6d8f503f __splice_from_pipe EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory -EXPORT_SYMBOL vmlinux 0x6da4937a inode_add_bytes -EXPORT_SYMBOL vmlinux 0x6da738ce tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0x6db06e40 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x6db9af1c genphy_read_status +EXPORT_SYMBOL vmlinux 0x6dc30e78 __neigh_event_send 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 0x6dd36c0f pci_scan_slot +EXPORT_SYMBOL vmlinux 0x6dd67b25 sock_recv_errqueue EXPORT_SYMBOL vmlinux 0x6dd6b2b7 seq_path +EXPORT_SYMBOL vmlinux 0x6dd8cf42 skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction EXPORT_SYMBOL vmlinux 0x6dfdc52b input_get_keycode -EXPORT_SYMBOL vmlinux 0x6e09911d flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0x6e108349 tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0x6e1361da set_disk_ro -EXPORT_SYMBOL vmlinux 0x6e1ed40f scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x6e3835c0 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x6e29b7a0 ata_print_version +EXPORT_SYMBOL vmlinux 0x6e306c90 xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0x6e44d2fa blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x6e4937c8 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x6e4c3b3b neigh_app_ns EXPORT_SYMBOL vmlinux 0x6e4cc48e rdmacg_try_charge EXPORT_SYMBOL vmlinux 0x6e4fc56e copy_page_from_iter_atomic EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e6e1334 mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock EXPORT_SYMBOL vmlinux 0x6e82ef9d bio_add_page EXPORT_SYMBOL vmlinux 0x6e97a3e9 of_graph_get_remote_port_parent EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig EXPORT_SYMBOL vmlinux 0x6ed2bd81 pps_register_source -EXPORT_SYMBOL vmlinux 0x6eda181a dst_discard_out +EXPORT_SYMBOL vmlinux 0x6ed5477e ip6_frag_next +EXPORT_SYMBOL vmlinux 0x6ee363c3 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x6ee71de9 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x6ef0e6b6 mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0x6ef9b575 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x6efe7bca write_one_page +EXPORT_SYMBOL vmlinux 0x6efa1e0a __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x6efbe89d scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x6f03544f dev_queue_xmit EXPORT_SYMBOL vmlinux 0x6f0e2971 dquot_commit -EXPORT_SYMBOL vmlinux 0x6f15b80c _dev_emerg +EXPORT_SYMBOL vmlinux 0x6f26ed92 neigh_connected_output EXPORT_SYMBOL vmlinux 0x6f2af0b2 single_release EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f430ce1 neigh_update +EXPORT_SYMBOL vmlinux 0x6f43d99d iterate_dir +EXPORT_SYMBOL vmlinux 0x6f57b693 write_inode_now EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f6b8d10 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x6f70d492 secpath_set -EXPORT_SYMBOL vmlinux 0x6f744ac0 netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0x6f7c289c jbd2_submit_inode_data -EXPORT_SYMBOL vmlinux 0x6f88a419 xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6f9b1275 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x6faff551 inet6_del_offload EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fc70e06 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x6fc8c749 i2c_transfer EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog EXPORT_SYMBOL vmlinux 0x6fefaa7f config_item_init_type_name EXPORT_SYMBOL vmlinux 0x6ff270cf fscrypt_free_inode EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7007152e jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x70030cdf vlan_dev_vlan_id EXPORT_SYMBOL vmlinux 0x700e7ebf find_inode_rcu +EXPORT_SYMBOL vmlinux 0x701a651b jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x7038376c __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0x70574143 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x70335f14 block_read_full_page +EXPORT_SYMBOL vmlinux 0x7044eb5c scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0x705f79ab tegra_ivc_read_advance EXPORT_SYMBOL vmlinux 0x70682fb4 iget_locked -EXPORT_SYMBOL vmlinux 0x707f2fb7 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x706901cd skb_free_datagram +EXPORT_SYMBOL vmlinux 0x706c36b8 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x707987e1 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x709393de netif_schedule_queue EXPORT_SYMBOL vmlinux 0x70975df0 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x7099f6f8 readahead_expand -EXPORT_SYMBOL vmlinux 0x70a87ab0 neigh_seq_stop EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup EXPORT_SYMBOL vmlinux 0x70af709c pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0x70bba023 dma_find_channel EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool -EXPORT_SYMBOL vmlinux 0x70dc8765 mdiobus_write -EXPORT_SYMBOL vmlinux 0x7100341b scm_detach_fds -EXPORT_SYMBOL vmlinux 0x710311c8 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x70e4580d qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0x71034a7b cfb_copyarea +EXPORT_SYMBOL vmlinux 0x710a8d9e skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc EXPORT_SYMBOL vmlinux 0x71379ef9 param_array_ops EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb EXPORT_SYMBOL vmlinux 0x7142ce63 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x714c9b1c dcb_ieee_getapp_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x715cf902 skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0x715fb066 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x7164eedd dev_set_allmulti EXPORT_SYMBOL vmlinux 0x7165cae6 devm_of_iomap -EXPORT_SYMBOL vmlinux 0x716e7551 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x716a3279 __ip_select_ident EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7179ebcd nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x7196513f free_netdev +EXPORT_SYMBOL vmlinux 0x719a5711 seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0x719c0402 bdevname EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71aa798a vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x71acfc96 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x71b0bbd5 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x71cbf893 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x71c548c9 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x71d5a507 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x71d6d1bc scsi_vpd_lun_id EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x71f55f99 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x71fc6dbc neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x72036172 zap_page_range EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x721d2828 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x72335b1c security_inode_listsecurity EXPORT_SYMBOL vmlinux 0x7233eeeb pci_read_config_word -EXPORT_SYMBOL vmlinux 0x7243fb54 xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x724ed143 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x724e41ad nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0x724ef0c7 mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0x7252ac88 get_fs_type EXPORT_SYMBOL vmlinux 0x725fcde3 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x72674bbd tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x72695278 napi_build_skb EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x72745067 devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0x72923a34 __mmc_claim_host EXPORT_SYMBOL vmlinux 0x72959e39 tegra_ivc_write_get_next_frame -EXPORT_SYMBOL vmlinux 0x729c8539 blk_rq_init +EXPORT_SYMBOL vmlinux 0x729843da __i2c_transfer +EXPORT_SYMBOL vmlinux 0x729fbc16 vfs_statfs +EXPORT_SYMBOL vmlinux 0x72a37473 gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable -EXPORT_SYMBOL vmlinux 0x72ad731e ip6_output EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72ba52f9 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x72be13a9 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x72be9406 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x72c26697 vfs_parse_fs_param_source EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72edc274 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x72eb48eb napi_gro_flush EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal @@ -8729,942 +8666,927 @@ EXPORT_SYMBOL vmlinux 0x731dba7a xen_domain_type EXPORT_SYMBOL vmlinux 0x732b723e max8925_bulk_read EXPORT_SYMBOL vmlinux 0x732dd326 groups_free EXPORT_SYMBOL vmlinux 0x7336a141 bio_reset -EXPORT_SYMBOL vmlinux 0x7343c1d3 netlink_unicast +EXPORT_SYMBOL vmlinux 0x733d2ac4 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x7347bd8f netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x7357a78b fd_install EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer EXPORT_SYMBOL vmlinux 0x7367488d sunxi_sram_claim EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x7389ab28 phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0x738cb4f9 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x739582db skb_copy_datagram_iter 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 0x73b5b68a __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x73be2812 __set_page_dirty_no_writeback -EXPORT_SYMBOL vmlinux 0x73cb0001 dump_align +EXPORT_SYMBOL vmlinux 0x73b9d685 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x73be8d20 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x73d0ec32 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x73d621b2 netpoll_setup +EXPORT_SYMBOL vmlinux 0x73d90a35 vm_insert_pages +EXPORT_SYMBOL vmlinux 0x73de1f82 proto_register +EXPORT_SYMBOL vmlinux 0x73ee4526 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x73fb28e7 ppp_dev_name EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive -EXPORT_SYMBOL vmlinux 0x7414f4f4 __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7425f348 flow_rule_alloc EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x74363171 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x742f1324 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x743d814f sock_create_lite EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init EXPORT_SYMBOL vmlinux 0x7449cd4b tegra_ivc_cleanup EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx EXPORT_SYMBOL vmlinux 0x7456f913 pci_resize_resource EXPORT_SYMBOL vmlinux 0x74605b88 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x7462e653 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x746a5645 fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0x7473e36e fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x74ac24b2 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x74b3014a mmc_add_host EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c3ce9b sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0x74c4b27c devm_extcon_unregister_notifier EXPORT_SYMBOL vmlinux 0x74d925d1 dquot_quotactl_sysfile_ops EXPORT_SYMBOL vmlinux 0x74de2be5 elv_rb_find EXPORT_SYMBOL vmlinux 0x74e06166 of_parse_phandle_with_fixed_args EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable EXPORT_SYMBOL vmlinux 0x74f4139c of_n_size_cells +EXPORT_SYMBOL vmlinux 0x74f4b7c4 vmf_insert_mixed EXPORT_SYMBOL vmlinux 0x751856aa pps_unregister_source -EXPORT_SYMBOL vmlinux 0x7518ead1 vif_device_init +EXPORT_SYMBOL vmlinux 0x751a490c scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x75233756 netpoll_poll_dev EXPORT_SYMBOL vmlinux 0x7527da50 del_gendisk EXPORT_SYMBOL vmlinux 0x7536e8bb mipi_dsi_generic_write EXPORT_SYMBOL vmlinux 0x7547fcf2 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x75579446 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x754ad332 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x75550b07 gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0x755b78c6 meson_sm_call_write EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic EXPORT_SYMBOL vmlinux 0x7566c1e9 dup_iter -EXPORT_SYMBOL vmlinux 0x7571fd5a generic_perform_write -EXPORT_SYMBOL vmlinux 0x75742e49 security_task_getsecid_subj EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object EXPORT_SYMBOL vmlinux 0x758feb24 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x7597e2e3 phy_set_asym_pause EXPORT_SYMBOL vmlinux 0x75a01bc1 md_bitmap_free EXPORT_SYMBOL vmlinux 0x75b68c78 pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75c06a08 generic_mii_ioctl -EXPORT_SYMBOL vmlinux 0x75cae2af vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x75c29edc mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x75c9b762 mmc_retune_pause EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d15568 __skb_checksum EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75d84ee2 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x76086795 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x75f2cc2a inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x7602c448 mmc_free_host EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760d08e7 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x760abc0b __getblk_gfp EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x765542aa dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0x765a8c10 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x765ced23 mfd_add_devices EXPORT_SYMBOL vmlinux 0x765ddaeb devm_get_clk_from_child EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x76711fe4 nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0x76769472 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x768bb6c7 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x7689b582 kern_path_create +EXPORT_SYMBOL vmlinux 0x768fca1a mmc_gpio_set_cd_wake EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a49284 xfrm_state_walk EXPORT_SYMBOL vmlinux 0x76bfb2c4 unregister_nls EXPORT_SYMBOL vmlinux 0x76c6f808 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x76cac4fa ___pskb_trim EXPORT_SYMBOL vmlinux 0x76d005b6 md_register_thread EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x771074b4 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x76e75c1e ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x76e81cf7 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x76f29c93 skb_tx_error EXPORT_SYMBOL vmlinux 0x771185fb tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x771bc3ee ip_mc_join_group EXPORT_SYMBOL vmlinux 0x772f178f sg_miter_next EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x77385648 mmc_alloc_host EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir EXPORT_SYMBOL vmlinux 0x7748b31f pci_remove_bus EXPORT_SYMBOL vmlinux 0x7752a2b5 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x7763ae64 sock_no_connect +EXPORT_SYMBOL vmlinux 0x77662a37 __mdiobus_write EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 +EXPORT_SYMBOL vmlinux 0x7778cb7e vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0x777a47ff override_creds +EXPORT_SYMBOL vmlinux 0x778005f9 kill_pgrp EXPORT_SYMBOL vmlinux 0x7785bb1e simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x7789f8fc flow_rule_match_ports EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div EXPORT_SYMBOL vmlinux 0x77ace87d ps2_begin_command EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77e1d6ec kill_pid -EXPORT_SYMBOL vmlinux 0x77e77f3c __ip_options_compile -EXPORT_SYMBOL vmlinux 0x77e8ae2e kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x77c0dacc jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x77cf998e phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x77d4ace3 alloc_skb_with_frags EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt EXPORT_SYMBOL vmlinux 0x77f90ad3 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x78025883 of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0x780529eb xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x77fc0f12 PageMovable EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x78195546 tcf_block_get -EXPORT_SYMBOL vmlinux 0x781dc554 inet6_protos -EXPORT_SYMBOL vmlinux 0x782f2d04 __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x782fac1d thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x783fc153 may_umount EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x785bc6f8 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x785c9f2f vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x7864c248 dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0x7870cf8b sync_blockdev -EXPORT_SYMBOL vmlinux 0x7876c3a3 i2c_smbus_read_word_data EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788e2f41 phy_advertise_supported EXPORT_SYMBOL vmlinux 0x78938438 set_posix_acl +EXPORT_SYMBOL vmlinux 0x78990af6 _dev_info EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets EXPORT_SYMBOL vmlinux 0x789ea6c8 dquot_operations EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt EXPORT_SYMBOL vmlinux 0x78a42836 input_register_handler +EXPORT_SYMBOL vmlinux 0x78aa8a0f tcp_req_err EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf EXPORT_SYMBOL vmlinux 0x78bf5d42 bioset_init EXPORT_SYMBOL vmlinux 0x78c54b6b d_alloc_anon -EXPORT_SYMBOL vmlinux 0x78c90942 security_path_rename -EXPORT_SYMBOL vmlinux 0x78d91301 vme_lm_request -EXPORT_SYMBOL vmlinux 0x78dc8812 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x78d478db kern_path +EXPORT_SYMBOL vmlinux 0x78d7367c __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x78d9057d sock_no_sendmsg_locked EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78ea4ccb finish_no_open -EXPORT_SYMBOL vmlinux 0x7905f32a mark_page_accessed +EXPORT_SYMBOL vmlinux 0x78e50462 phy_attach_direct EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits EXPORT_SYMBOL vmlinux 0x79108771 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x7915dd8e filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x791c58d3 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x7927b97e phy_config_aneg EXPORT_SYMBOL vmlinux 0x7932dd7d input_handler_for_each_handle EXPORT_SYMBOL vmlinux 0x7957390a update_region -EXPORT_SYMBOL vmlinux 0x7960cd9d reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin +EXPORT_SYMBOL vmlinux 0x797b7ed4 km_new_mapping EXPORT_SYMBOL vmlinux 0x7982f8fd seq_open_private EXPORT_SYMBOL vmlinux 0x798410b5 proc_symlink EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x7985e16e keyring_clear -EXPORT_SYMBOL vmlinux 0x7992008e dev_uc_del +EXPORT_SYMBOL vmlinux 0x799896a7 mdio_find_bus +EXPORT_SYMBOL vmlinux 0x799f5850 gnet_stats_copy_basic_hw EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size EXPORT_SYMBOL vmlinux 0x79aea15b dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x79d3faa4 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x79c0dee0 tcp_close EXPORT_SYMBOL vmlinux 0x79e8f568 mdio_driver_unregister EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a0f3e99 vm_insert_pages EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a271a76 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x7a288902 eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number EXPORT_SYMBOL vmlinux 0x7a4d0b60 blk_mq_init_queue EXPORT_SYMBOL vmlinux 0x7a4df959 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x7a52544b i2c_del_driver EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a75298a ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0x7a8b821d pmem_sector_size EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx EXPORT_SYMBOL vmlinux 0x7aa13086 of_find_mipi_dsi_host_by_node EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa30abd splice_direct_to_actor EXPORT_SYMBOL vmlinux 0x7aa7124b unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x7aacad81 tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0x7ab45d25 dma_fence_array_create EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ac2ed77 inet_bind EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7adc4d10 blk_get_request EXPORT_SYMBOL vmlinux 0x7ade498c dma_set_mask +EXPORT_SYMBOL vmlinux 0x7ae1a2f2 security_unix_may_send EXPORT_SYMBOL vmlinux 0x7ae4083d clear_inode EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7af0c9bd ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x7ae9fbbb do_clone_file_range +EXPORT_SYMBOL vmlinux 0x7af22319 softnet_data EXPORT_SYMBOL vmlinux 0x7b0d1dfc rproc_da_to_va -EXPORT_SYMBOL vmlinux 0x7b166506 ppp_input_error -EXPORT_SYMBOL vmlinux 0x7b216b76 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7b234817 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x7b28d695 begin_new_exec EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit EXPORT_SYMBOL vmlinux 0x7b3da1c6 dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem EXPORT_SYMBOL vmlinux 0x7b4e9c4a ps2_command +EXPORT_SYMBOL vmlinux 0x7b4f5ed6 ppp_unregister_compressor EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b717e26 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x7b6ccb06 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0x7b7caccd nvdimm_namespace_locked EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b8308f0 fc_mount +EXPORT_SYMBOL vmlinux 0x7b9a168f inet6_offloads +EXPORT_SYMBOL vmlinux 0x7b9b99ac scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x7ba006a0 generic_perform_write EXPORT_SYMBOL vmlinux 0x7ba47df5 fs_param_is_u32 EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off EXPORT_SYMBOL vmlinux 0x7ba78c8d vm_mmap EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write -EXPORT_SYMBOL vmlinux 0x7bb59814 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x7bb92577 trace_event_printf EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bbebdca tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x7bc013b3 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x7bc0b896 page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x7bc30e82 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x7bc9d72d tcp_read_sock -EXPORT_SYMBOL vmlinux 0x7bd7e927 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0x7bdcf200 xp_can_alloc +EXPORT_SYMBOL vmlinux 0x7bd04830 vme_unregister_driver EXPORT_SYMBOL vmlinux 0x7c001d3f of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x7c042d76 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x7c0d2eea security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement EXPORT_SYMBOL vmlinux 0x7c1ef14e proc_create_data -EXPORT_SYMBOL vmlinux 0x7c2c812e phy_loopback -EXPORT_SYMBOL vmlinux 0x7c37a810 mdiobus_read -EXPORT_SYMBOL vmlinux 0x7c3e0838 sdev_enable_disk_events EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c46fb2b sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x7c4f4410 read_cache_page EXPORT_SYMBOL vmlinux 0x7c4ff0c3 inc_nlink EXPORT_SYMBOL vmlinux 0x7c53a7ff d_tmpfile EXPORT_SYMBOL vmlinux 0x7c5a90b6 fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0x7c5ba2a2 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x7c5dd3f5 genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0x7c5f4d99 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x7c745228 dev_mc_add +EXPORT_SYMBOL vmlinux 0x7c6c62fd __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x7c8285e1 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x7c8fcf21 set_page_dirty EXPORT_SYMBOL vmlinux 0x7c928ba9 pci_claim_resource EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7ca1c805 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x7ca735b1 vlan_ioctl_set EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce3ba64 tso_build_data +EXPORT_SYMBOL vmlinux 0x7ce53494 kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7ce8eab9 scsi_eh_prep_cmnd EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d0e7e6f unix_detach_fds EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d1b8e34 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x7d2cdd7d lru_cache_add EXPORT_SYMBOL vmlinux 0x7d341fab inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x7d45a038 mdiobus_free EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit EXPORT_SYMBOL vmlinux 0x7d4e954c single_open_size EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d60d858 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x7d622fb2 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x7d6305eb udp_prot EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user EXPORT_SYMBOL vmlinux 0x7d9a5efa new_inode EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dbe379c nf_hook_slow EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert -EXPORT_SYMBOL vmlinux 0x7dd1156b cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x7ddc38a1 phy_driver_register -EXPORT_SYMBOL vmlinux 0x7de789a9 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x7de8ba7f km_state_notify EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df36670 ether_setup EXPORT_SYMBOL vmlinux 0x7df7412b md_handle_request +EXPORT_SYMBOL vmlinux 0x7e05a8ed io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x7e068602 skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0x7e206ee1 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x7e2f0e10 sock_create EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e53888d can_nice -EXPORT_SYMBOL vmlinux 0x7e55d9c4 scm_fp_dup EXPORT_SYMBOL vmlinux 0x7e6170aa pci_restore_state EXPORT_SYMBOL vmlinux 0x7e7bae40 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x7e7f51b4 phy_connect EXPORT_SYMBOL vmlinux 0x7e83f237 backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0x7e92b4bf __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x7e9573cd i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x7e975aec __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x7e9df65c dev_remove_pack +EXPORT_SYMBOL vmlinux 0x7e9b14c1 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x7ea053b2 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x7ea273f1 security_tun_dev_attach EXPORT_SYMBOL vmlinux 0x7eb07498 __post_watch_notification -EXPORT_SYMBOL vmlinux 0x7ed61435 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x7ebe6b32 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x7ec0508d tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x7ec7bcb2 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x7edc2bf2 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x7ee3b970 unregister_qdisc EXPORT_SYMBOL vmlinux 0x7ee608c9 pcibios_bus_to_resource EXPORT_SYMBOL vmlinux 0x7ee61f82 simple_release_fs EXPORT_SYMBOL vmlinux 0x7efc743a devm_free_irq -EXPORT_SYMBOL vmlinux 0x7f012b37 xfrm_state_lookup EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f0c1af2 dump_page +EXPORT_SYMBOL vmlinux 0x7f042ad2 kernel_sendmsg EXPORT_SYMBOL vmlinux 0x7f16569e scsi_is_host_device EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs EXPORT_SYMBOL vmlinux 0x7f52071a net_dim EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f64bd40 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x7f6d927f jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x7f6f9ff4 dev_set_group +EXPORT_SYMBOL vmlinux 0x7f6dbcc9 mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0x7f7871cc cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x7f7be8b4 filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f97a170 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x7f8746af inode_add_bytes +EXPORT_SYMBOL vmlinux 0x7f9361ab jbd2_journal_forget EXPORT_SYMBOL vmlinux 0x7f97e272 cdev_set_parent -EXPORT_SYMBOL vmlinux 0x7f9ff582 neigh_parms_release EXPORT_SYMBOL vmlinux 0x7fad3ae4 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x7fc44c58 seg6_hmac_info_add EXPORT_SYMBOL vmlinux 0x7fcbe311 uart_register_driver EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size +EXPORT_SYMBOL vmlinux 0x7fdbbaa6 xp_can_alloc EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node EXPORT_SYMBOL vmlinux 0x7fe40ce1 d_make_root -EXPORT_SYMBOL vmlinux 0x7fe9981b ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x7ff7f56b gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x7ff933cf unix_destruct_scm EXPORT_SYMBOL vmlinux 0x80010304 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x80192dd5 dump_skip_to +EXPORT_SYMBOL vmlinux 0x801e36c6 udplite_prot +EXPORT_SYMBOL vmlinux 0x8024b9d8 __block_write_full_page +EXPORT_SYMBOL vmlinux 0x8031cf8e __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x803507b4 free_buffer_head EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create EXPORT_SYMBOL vmlinux 0x8052ee92 nvdimm_namespace_disk_name EXPORT_SYMBOL vmlinux 0x80556a9a kobject_del -EXPORT_SYMBOL vmlinux 0x80928e8b vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x80799cbf scsi_command_normalize_sense EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack EXPORT_SYMBOL vmlinux 0x80a001d8 proc_create_seq_private EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare EXPORT_SYMBOL vmlinux 0x80adcbaf simple_transaction_get EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80cd5331 phy_remove_link_mode EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80dd6db7 __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x80e19bde uart_get_divisor EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq +EXPORT_SYMBOL vmlinux 0x80f98698 __netif_schedule +EXPORT_SYMBOL vmlinux 0x80fb7133 xp_dma_map +EXPORT_SYMBOL vmlinux 0x810b02e0 module_refcount EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer EXPORT_SYMBOL vmlinux 0x81188c30 match_string EXPORT_SYMBOL vmlinux 0x8126aaaf iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x813d0d92 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x81755565 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x817009e8 mdiobus_write EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc EXPORT_SYMBOL vmlinux 0x8190c231 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x819c5d16 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x81a63b85 scmd_printk +EXPORT_SYMBOL vmlinux 0x81a5bfc2 genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand -EXPORT_SYMBOL vmlinux 0x81d4d3d6 memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81f44eb4 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x81f4cf80 xfrm6_rcv_tnl EXPORT_SYMBOL vmlinux 0x81f6a8b9 page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0x821b2cde skb_eth_push +EXPORT_SYMBOL vmlinux 0x8227e8f1 unix_detach_fds EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x82435b0a jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0x824a0f4a d_prune_aliases -EXPORT_SYMBOL vmlinux 0x824a90ff dump_emit EXPORT_SYMBOL vmlinux 0x824e7393 dma_resv_add_excl_fence EXPORT_SYMBOL vmlinux 0x824f8adc fb_blank EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec -EXPORT_SYMBOL vmlinux 0x8268cd30 genlmsg_put -EXPORT_SYMBOL vmlinux 0x827fb958 pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82ad31f7 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0x82b209d6 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x82a8af35 set_page_dirty_lock EXPORT_SYMBOL vmlinux 0x82c1eff1 of_device_is_big_endian EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82ea3fd5 kernel_accept -EXPORT_SYMBOL vmlinux 0x82feb776 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync EXPORT_SYMBOL vmlinux 0x83039b42 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x832ffd0d locks_init_lock -EXPORT_SYMBOL vmlinux 0x833a2bae unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0x834b9fb6 d_instantiate_new -EXPORT_SYMBOL vmlinux 0x834bd13e nf_hook_slow EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x8360154b tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x835e42c7 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x835e6a36 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x8372baf8 try_to_writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x838caa46 netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x838e55c7 finish_swait -EXPORT_SYMBOL vmlinux 0x839232cf blackhole_netdev +EXPORT_SYMBOL vmlinux 0x83a1c8d0 gro_cells_init EXPORT_SYMBOL vmlinux 0x83b92be7 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x83c51724 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x83d161dd ip_options_compile -EXPORT_SYMBOL vmlinux 0x83ea3c7a vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x83fafcdc buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x83c3363c rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x83e60448 alloc_fcdev EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x840ed633 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x84210a5f __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x843550ec xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x8435a478 genphy_resume -EXPORT_SYMBOL vmlinux 0x843bbe0a filemap_fault +EXPORT_SYMBOL vmlinux 0x840ebe78 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x8415adb2 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x8417393b ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x84286743 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x842b4cb4 pfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x846ff5bd ata_std_end_eh EXPORT_SYMBOL vmlinux 0x847403b8 serio_unregister_child_port EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x8485305e write_cache_pages -EXPORT_SYMBOL vmlinux 0x8486a662 __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x84a1a9b3 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x84b890f5 genphy_suspend -EXPORT_SYMBOL vmlinux 0x84be10d3 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x84c08903 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x84952bc0 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x849b810b security_sock_graft +EXPORT_SYMBOL vmlinux 0x849ed955 dst_dev_put EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr EXPORT_SYMBOL vmlinux 0x84da3ce4 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x84e8f09f tcp_conn_request -EXPORT_SYMBOL vmlinux 0x85123736 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x8503c32b sock_no_sendpage_locked EXPORT_SYMBOL vmlinux 0x85173771 ps2_end_command EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base -EXPORT_SYMBOL vmlinux 0x851faaa2 ppp_unit_number -EXPORT_SYMBOL vmlinux 0x8526f765 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x8527a885 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x852ca423 vfs_get_fsid EXPORT_SYMBOL vmlinux 0x853cc60d page_pool_put_page -EXPORT_SYMBOL vmlinux 0x854eac5a inet6_release EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856bcc5d tcp_parse_options EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity EXPORT_SYMBOL vmlinux 0x859a2423 fman_get_mem_region -EXPORT_SYMBOL vmlinux 0x859c668f ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x85a6cad3 vlan_for_each +EXPORT_SYMBOL vmlinux 0x85ad343a inet_dgram_ops EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85c01faa filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x85d367d0 skb_push +EXPORT_SYMBOL vmlinux 0x85c68df2 inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0x85d8a5c8 pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e0dc19 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x85e4602d qdisc_warn_nonwc EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x8629cdb3 of_clk_get -EXPORT_SYMBOL vmlinux 0x86323cf1 scsi_device_put +EXPORT_SYMBOL vmlinux 0x85f10b8e nf_ct_attach +EXPORT_SYMBOL vmlinux 0x861e2b31 xp_alloc +EXPORT_SYMBOL vmlinux 0x8634a49a vme_register_driver +EXPORT_SYMBOL vmlinux 0x8634ab7f jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863fed3c open_with_fake_path EXPORT_SYMBOL vmlinux 0x8648c324 discard_new_inode EXPORT_SYMBOL vmlinux 0x864e8648 cdrom_number_of_slots EXPORT_SYMBOL vmlinux 0x86756a14 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x8678d3e5 fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x869cc60f vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0x86a2af5d of_node_get EXPORT_SYMBOL vmlinux 0x86a374d4 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x86aa8798 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x86a87dc6 dev_remove_offload EXPORT_SYMBOL vmlinux 0x86b3eb2e unregister_quota_format +EXPORT_SYMBOL vmlinux 0x86b4a2cd ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x86c162c2 netpoll_print_options EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user EXPORT_SYMBOL vmlinux 0x8700acd5 path_has_submounts EXPORT_SYMBOL vmlinux 0x8703b164 set_bdi_congested -EXPORT_SYMBOL vmlinux 0x870b46cb request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x8710f435 generic_fadvise -EXPORT_SYMBOL vmlinux 0x8712cd45 xfrm_state_flush EXPORT_SYMBOL vmlinux 0x87196013 md_integrity_register -EXPORT_SYMBOL vmlinux 0x872a3704 vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x873274ec netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x872d91b6 crypto_sha1_update EXPORT_SYMBOL vmlinux 0x8737b1bb __mod_node_page_state -EXPORT_SYMBOL vmlinux 0x87456e1e nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x873eaa61 tcf_qevent_handle EXPORT_SYMBOL vmlinux 0x874868b1 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x874d7d3f mmc_erase_group_aligned EXPORT_SYMBOL vmlinux 0x8759925c bdev_check_media_change EXPORT_SYMBOL vmlinux 0x875e7ac5 component_match_add_typed EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x877100eb bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x8775fbe1 mmc_gpio_get_cd EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x87839a7c generic_write_checks EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream EXPORT_SYMBOL vmlinux 0x8789b464 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x87976602 tcp_child_process EXPORT_SYMBOL vmlinux 0x879a1614 page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0x879d4f40 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x87a1b113 ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87c0044b sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0x87d436e1 set_create_files_as -EXPORT_SYMBOL vmlinux 0x87e368ca tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0x88049254 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x87cb8975 ip_options_compile +EXPORT_SYMBOL vmlinux 0x87dbb23e module_layout +EXPORT_SYMBOL vmlinux 0x87e58371 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x87eee129 tcp_filter +EXPORT_SYMBOL vmlinux 0x87eef1d4 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0x88038280 flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x88229647 keyring_alloc EXPORT_SYMBOL vmlinux 0x88233752 ps2_handle_response EXPORT_SYMBOL vmlinux 0x88339807 devm_memunmap -EXPORT_SYMBOL vmlinux 0x8840f316 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x8839c671 skb_copy_expand EXPORT_SYMBOL vmlinux 0x884e7fc4 dquot_acquire -EXPORT_SYMBOL vmlinux 0x8871c063 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x887d2b6e xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x885f4b00 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x886f5af0 vm_insert_page EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0x88829361 generic_error_remove_page EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 EXPORT_SYMBOL vmlinux 0x888f30b0 pci_scan_root_bus_bridge EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x88a2e0fb tcp_seq_start EXPORT_SYMBOL vmlinux 0x88a4459a serio_rescan EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock EXPORT_SYMBOL vmlinux 0x88afff65 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x88c25729 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x88c3c766 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x88d91512 unlock_rename EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size EXPORT_SYMBOL vmlinux 0x88e0a9a5 tty_port_open EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88f7f19e mdiobus_free +EXPORT_SYMBOL vmlinux 0x88ef56f8 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x88f4a05f netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0x88fe117e of_parse_phandle -EXPORT_SYMBOL vmlinux 0x89230387 dst_dev_put -EXPORT_SYMBOL vmlinux 0x892d852a flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy +EXPORT_SYMBOL vmlinux 0x8965811d xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x89760d91 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x8988a2fd brioctl_set +EXPORT_SYMBOL vmlinux 0x898bb826 genphy_setup_forced EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x899e2890 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x89a10aee clean_bdev_aliases EXPORT_SYMBOL vmlinux 0x89b1d954 kmem_cache_alloc_trace EXPORT_SYMBOL vmlinux 0x89b492bf framebuffer_release -EXPORT_SYMBOL vmlinux 0x89d5edf5 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x89e8f072 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x89f5d686 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x89f7eaf0 ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0x8a005f0a tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x8a0a1153 flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x8a104766 wireless_send_event +EXPORT_SYMBOL vmlinux 0x89b6e4b3 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x89d1a696 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x89f077c9 tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0x8a124238 __destroy_inode -EXPORT_SYMBOL vmlinux 0x8a21a1da mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x8a2e3289 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x8a18aa84 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x8a216a86 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x8a33f9c1 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x8a4377ba zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4ace20 xsk_tx_release -EXPORT_SYMBOL vmlinux 0x8a4c3ef4 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x8a4e8864 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x8a56955d jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x8a6985d3 of_get_parent EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags -EXPORT_SYMBOL vmlinux 0x8a7c41e0 udp_skb_destructor EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a7f2310 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x8a83b66d bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0x8a84237e config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0x8a90a207 sk_stream_error EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8a9d39c4 inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0x8aa087b7 make_kuid -EXPORT_SYMBOL vmlinux 0x8aa2fbd1 netdev_set_num_tc EXPORT_SYMBOL vmlinux 0x8abd542b unregister_md_personality -EXPORT_SYMBOL vmlinux 0x8abfe86b __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ac4738d inet_dgram_connect EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x8acf1fac writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x8ad8e9b9 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x8ae7d218 load_nls -EXPORT_SYMBOL vmlinux 0x8aed726c __skb_checksum +EXPORT_SYMBOL vmlinux 0x8ad90523 netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b064e94 jbd2_journal_errno EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy EXPORT_SYMBOL vmlinux 0x8b0de186 pnp_request_card_device EXPORT_SYMBOL vmlinux 0x8b11783a pci_request_irq +EXPORT_SYMBOL vmlinux 0x8b146c64 xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0x8b15ac25 pci_free_irq_vectors EXPORT_SYMBOL vmlinux 0x8b18d39d tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x8b1b0b5a inet6_getname EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x8b514669 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x8b59ef98 neigh_parms_alloc EXPORT_SYMBOL vmlinux 0x8b5fb2fd input_free_device EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b7223fb flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x8b743cc4 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x8b7018a1 inet_shutdown EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b838e7a netpoll_setup EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b95d4cd xp_free EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx EXPORT_SYMBOL vmlinux 0x8ba15d04 param_ops_short -EXPORT_SYMBOL vmlinux 0x8bd752c9 netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x8bd8e954 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x8bc94771 vfs_ioctl EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x8beb1d6e iterate_dir -EXPORT_SYMBOL vmlinux 0x8befdf54 xfrm4_udp_encap_rcv +EXPORT_SYMBOL vmlinux 0x8beaf0bf tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0x8bf1489c ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x8c0164ef __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x8c03ec8f mmc_request_done -EXPORT_SYMBOL vmlinux 0x8c12f0fe phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x8c15a5a2 netdev_set_num_tc EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c2ff2d3 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x8c26dd3c mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x8c2789ef dev_get_stats EXPORT_SYMBOL vmlinux 0x8c311419 pci_irq_vector -EXPORT_SYMBOL vmlinux 0x8c39a617 tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0x8c3bb6f4 sk_capable -EXPORT_SYMBOL vmlinux 0x8c3ccfb7 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x8c4bf03d scsi_target_resume +EXPORT_SYMBOL vmlinux 0x8c453367 neigh_lookup EXPORT_SYMBOL vmlinux 0x8c4ca0c0 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x8c561521 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x8c57814a sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x8c63739d mntput EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x8c6c5bbb devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x8c77f5cd skb_vlan_untag EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8ca90c97 sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid EXPORT_SYMBOL vmlinux 0x8cb533a2 blk_execute_rq EXPORT_SYMBOL vmlinux 0x8cb60943 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x8cc3d44b generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x8cbcac4b readahead_expand EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin -EXPORT_SYMBOL vmlinux 0x8ccf30fe sk_dst_check -EXPORT_SYMBOL vmlinux 0x8cd19c3d tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x8cd878c6 tcp_sendmsg EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cdcbd74 wait_for_key_construction EXPORT_SYMBOL vmlinux 0x8ce92cf9 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x8cf962c0 release_pages -EXPORT_SYMBOL vmlinux 0x8cf9a7ec dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x8cfd61af inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x8d0de059 netif_skb_features +EXPORT_SYMBOL vmlinux 0x8d1d9f84 phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var +EXPORT_SYMBOL vmlinux 0x8d471bb5 netif_napi_add EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d66447a neigh_xmit +EXPORT_SYMBOL vmlinux 0x8d709691 blk_put_queue EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper EXPORT_SYMBOL vmlinux 0x8d8c0764 cdev_device_del -EXPORT_SYMBOL vmlinux 0x8d95f19d ptp_clock_register EXPORT_SYMBOL vmlinux 0x8d9bdefb input_unregister_handle EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling EXPORT_SYMBOL vmlinux 0x8da6585d __stack_chk_fail -EXPORT_SYMBOL vmlinux 0x8da70c35 blk_cleanup_queue EXPORT_SYMBOL vmlinux 0x8daedb79 cpumask_any_but -EXPORT_SYMBOL vmlinux 0x8dbe9b38 __sock_create +EXPORT_SYMBOL vmlinux 0x8db52bcc __dynamic_ibdev_dbg EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8dee4e8b dev_get_stats EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e1e538f jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x8e2fd42b scsi_print_result +EXPORT_SYMBOL vmlinux 0x8e31283f kernel_listen +EXPORT_SYMBOL vmlinux 0x8e3babe7 xattr_full_name EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e3e4f1d blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0x8e40cdc5 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x8e41a36f __netlink_ns_capable EXPORT_SYMBOL vmlinux 0x8e447316 __frontswap_store EXPORT_SYMBOL vmlinux 0x8e46115c generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x8e48f49c mmc_register_driver EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma EXPORT_SYMBOL vmlinux 0x8e6db7aa dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x8e8a951d fget_raw -EXPORT_SYMBOL vmlinux 0x8e8b1f10 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x8e8d363b __brelse -EXPORT_SYMBOL vmlinux 0x8e8f362a __phy_resume +EXPORT_SYMBOL vmlinux 0x8e702b6e __udp_disconnect +EXPORT_SYMBOL vmlinux 0x8e7d2fac fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x8e8355ea scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x8e858e3c skb_queue_purge EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e99b626 netdev_crit EXPORT_SYMBOL vmlinux 0x8ea4d359 forget_all_cached_acls EXPORT_SYMBOL vmlinux 0x8eae7781 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x8ed0646b pipe_unlock -EXPORT_SYMBOL vmlinux 0x8eeb210b __icmp_send -EXPORT_SYMBOL vmlinux 0x8ef53db6 km_state_expired +EXPORT_SYMBOL vmlinux 0x8ec927d4 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x8ef4fcbc phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x8ef78670 tcf_unregister_action EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f0b51fc key_unlink +EXPORT_SYMBOL vmlinux 0x8f153e97 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x8f199fc4 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x8f25f7fd xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0x8f277299 get_acl +EXPORT_SYMBOL vmlinux 0x8f362af2 __sk_mem_reduce_allocated EXPORT_SYMBOL vmlinux 0x8f3abfee pci_release_resource EXPORT_SYMBOL vmlinux 0x8f50e0ee __remove_inode_hash EXPORT_SYMBOL vmlinux 0x8f559aa7 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x8f5cb591 netdev_printk EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8facdbab xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x8fc68181 block_truncate_page EXPORT_SYMBOL vmlinux 0x8fc9ab84 kthread_bind EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds +EXPORT_SYMBOL vmlinux 0x8fe4828f sock_i_uid EXPORT_SYMBOL vmlinux 0x8fe93fdc t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x8fec9449 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x8ff4f93c __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x8fedcf65 ip6_xmit EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x90097166 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x9012b1f1 vme_bus_num -EXPORT_SYMBOL vmlinux 0x9028626f vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x901679da phy_device_register +EXPORT_SYMBOL vmlinux 0x902b8fe7 qdisc_put EXPORT_SYMBOL vmlinux 0x902c726a serio_open EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get EXPORT_SYMBOL vmlinux 0x902f5199 cpumask_next_wrap EXPORT_SYMBOL vmlinux 0x903290dd tty_port_close_start EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x904d1d46 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x90547649 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x9039adf2 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x9045ff4d __netlink_kernel_create EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x9064f382 jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0x907aa342 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x90735938 vme_master_request EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override +EXPORT_SYMBOL vmlinux 0x908797c2 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x908a9634 netdev_alert EXPORT_SYMBOL vmlinux 0x908e5601 cpu_hwcaps -EXPORT_SYMBOL vmlinux 0x9098dc33 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x90a153a0 ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0x90b630c0 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x90b875df netlink_ack -EXPORT_SYMBOL vmlinux 0x90bcd860 gro_cells_receive -EXPORT_SYMBOL vmlinux 0x90bec994 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x909ba7e6 __alloc_skb +EXPORT_SYMBOL vmlinux 0x90b7e5ef phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x90c0add9 skb_eth_pop EXPORT_SYMBOL vmlinux 0x90c66ecd input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x90d2b422 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0x90d5dddc nd_device_notify EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp -EXPORT_SYMBOL vmlinux 0x90e4a539 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x90e50b2f unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x90efea89 follow_pfn -EXPORT_SYMBOL vmlinux 0x90f001ad alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x910e8d3c put_cmsg -EXPORT_SYMBOL vmlinux 0x9110a499 genphy_c37_read_status EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x912b2752 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x914b02e6 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x914d6d62 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x9150ee77 udp_poll +EXPORT_SYMBOL vmlinux 0x9115f08a ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x912dfc99 init_task +EXPORT_SYMBOL vmlinux 0x914a0403 build_skb EXPORT_SYMBOL vmlinux 0x91567d15 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x915e27f1 phy_do_ioctl EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9171953e udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0x91724cd7 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x9184ef0e sk_stop_timer +EXPORT_SYMBOL vmlinux 0x91906c01 dev_change_flags EXPORT_SYMBOL vmlinux 0x919671df rt_mutex_base_init EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91adbaee nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0x91bdda6e nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0x91befcba mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91cbb024 submit_bio_noacct EXPORT_SYMBOL vmlinux 0x91cede12 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x91d9c38c lookup_one_len EXPORT_SYMBOL vmlinux 0x91e1958f param_set_bint EXPORT_SYMBOL vmlinux 0x91e268a1 phy_modify_paged_changed EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x91f93afe disk_start_io_acct -EXPORT_SYMBOL vmlinux 0x9206eb13 generic_write_end +EXPORT_SYMBOL vmlinux 0x92057226 dev_set_group +EXPORT_SYMBOL vmlinux 0x9206509c inet6_del_protocol EXPORT_SYMBOL vmlinux 0x92243740 blk_queue_max_hw_sectors EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear EXPORT_SYMBOL vmlinux 0x9236637c con_is_visible EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get EXPORT_SYMBOL vmlinux 0x92442ba1 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x9247925b skb_clone +EXPORT_SYMBOL vmlinux 0x9245327e __skb_get_hash +EXPORT_SYMBOL vmlinux 0x924a9159 inet_sock_destruct EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x9264a967 _dev_warn +EXPORT_SYMBOL vmlinux 0x926f1c42 neigh_carrier_down EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool EXPORT_SYMBOL vmlinux 0x92807a14 input_set_abs_params EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x9295bf7e vme_register_driver EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x92a256e9 __ip_dev_find EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92c2796d mmc_get_card EXPORT_SYMBOL vmlinux 0x92cd9287 input_release_device EXPORT_SYMBOL vmlinux 0x92cf3c62 rproc_add EXPORT_SYMBOL vmlinux 0x92cff3bf mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x92d4a1bc call_fib_notifiers EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq EXPORT_SYMBOL vmlinux 0x92e4df4d sg_alloc_append_table_from_pages EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout -EXPORT_SYMBOL vmlinux 0x92ebb373 mmc_gpiod_request_cd EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x92fa8c6f unix_get_socket -EXPORT_SYMBOL vmlinux 0x92fd6016 vfs_parse_fs_param EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get EXPORT_SYMBOL vmlinux 0x931157de dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x933cba6a kernel_getpeername -EXPORT_SYMBOL vmlinux 0x93618473 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x93225d63 ipv6_chk_addr EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937e87b1 key_link -EXPORT_SYMBOL vmlinux 0x93a22dd0 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x9387f584 pneigh_enqueue EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule EXPORT_SYMBOL vmlinux 0x93aa455e bio_init EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x93b4adf6 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x93b84017 tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93ec85b5 sock_init_data -EXPORT_SYMBOL vmlinux 0x940dfaeb __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x940e6320 ip_frag_next +EXPORT_SYMBOL vmlinux 0x93dcf8ee buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x93de9e2c xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x93e69e18 mmc_get_card +EXPORT_SYMBOL vmlinux 0x94005d48 ip_do_fragment EXPORT_SYMBOL vmlinux 0x9411c355 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x942117bd lookup_one_len_unlocked EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x942ffeed mmc_put_card +EXPORT_SYMBOL vmlinux 0x942dd879 __vfs_removexattr EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x944e05d4 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x94577bbb sock_setsockopt EXPORT_SYMBOL vmlinux 0x945c339a proc_remove -EXPORT_SYMBOL vmlinux 0x947071ee xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x94697bbf __bforget EXPORT_SYMBOL vmlinux 0x947eb305 pcie_set_readrq EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable +EXPORT_SYMBOL vmlinux 0x94894cee tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x948a655c inet_sk_set_state EXPORT_SYMBOL vmlinux 0x94961283 vunmap EXPORT_SYMBOL vmlinux 0x94a9218c free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x94ac12d0 crypto_sha512_update EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94c69ad2 mmc_can_gpio_ro EXPORT_SYMBOL vmlinux 0x94db0715 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x94dbba80 vfs_fadvise EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94e7344e block_commit_write EXPORT_SYMBOL vmlinux 0x94f366e9 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x94fbfb91 genl_register_family EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many EXPORT_SYMBOL vmlinux 0x95043411 uart_match_port +EXPORT_SYMBOL vmlinux 0x95066edd __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x95098730 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x95123d8c ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x952aff3c tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x9537dc35 ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f010c __insert_inode_hash EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x9564f124 udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0x956891d4 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x95729751 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x9575c146 noop_qdisc EXPORT_SYMBOL vmlinux 0x9576de7f super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0x958198c3 tcp_make_synack EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95ada784 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x95bc5012 free_task -EXPORT_SYMBOL vmlinux 0x95c3a478 stream_open -EXPORT_SYMBOL vmlinux 0x95c9af68 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x95b51043 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x95c6dfbf security_inet_conn_request EXPORT_SYMBOL vmlinux 0x95cd8174 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x96100390 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x95cf4293 fqdir_exit +EXPORT_SYMBOL vmlinux 0x95d7b6e8 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x95ec9989 inet_release +EXPORT_SYMBOL vmlinux 0x960cb2c8 netdev_adjacent_change_abort EXPORT_SYMBOL vmlinux 0x96162bb8 dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0x9627df1e unregister_shrinker +EXPORT_SYMBOL vmlinux 0x962c74ac __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0x963f6f47 page_pool_release_page EXPORT_SYMBOL vmlinux 0x9641d92e blkdev_compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0x964fd457 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x965a6eb3 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x9655d627 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x9659628d mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x965b658a tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg +EXPORT_SYMBOL vmlinux 0x966b5e1e dev_load +EXPORT_SYMBOL vmlinux 0x96795062 xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x96874009 mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr -EXPORT_SYMBOL vmlinux 0x96b0341c vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x968ef514 ip6_output +EXPORT_SYMBOL vmlinux 0x969b575b devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x96b09804 kernel_sock_shutdown EXPORT_SYMBOL vmlinux 0x96b0b8b3 dma_free_attrs EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96c25fc7 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x96c4e6ab inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x96c520f8 ip_queue_xmit EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96d2d8a5 tcf_get_next_chain EXPORT_SYMBOL vmlinux 0x96d3eecb dma_unmap_resource EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo EXPORT_SYMBOL vmlinux 0x96e7f935 input_open_device EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x96fbbffa i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x97335b22 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x97370a92 kmem_cache_shrink EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x97579c8a __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x9764046c km_new_mapping +EXPORT_SYMBOL vmlinux 0x97576eac tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0x977c8cd1 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x978eebd9 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x979305d1 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x9781dc3d ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x9783054b of_get_mac_address +EXPORT_SYMBOL vmlinux 0x978c9a97 mmc_of_parse_voltage EXPORT_SYMBOL vmlinux 0x979635da kthread_blkcg EXPORT_SYMBOL vmlinux 0x979a7152 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x979c5210 tcf_action_update_stats EXPORT_SYMBOL vmlinux 0x979e3987 rproc_shutdown -EXPORT_SYMBOL vmlinux 0x979efaef lookup_one_len_unlocked EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b0d6d9 sock_pfree -EXPORT_SYMBOL vmlinux 0x97b6c425 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x97b6a934 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x97bcd049 __neigh_create EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97bf726e phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x97cf5cc4 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x97c4ee4c finalize_exec EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds EXPORT_SYMBOL vmlinux 0x97eb7470 nd_namespace_blk_validate EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start EXPORT_SYMBOL vmlinux 0x97eff96b pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x97f27fb5 generic_splice_sendpage EXPORT_SYMBOL vmlinux 0x97f8c4ed of_get_next_child -EXPORT_SYMBOL vmlinux 0x97fdc065 phy_do_ioctl -EXPORT_SYMBOL vmlinux 0x980afe44 eth_header_cache +EXPORT_SYMBOL vmlinux 0x9813fdbc default_llseek EXPORT_SYMBOL vmlinux 0x981ac15f __devm_request_region EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x986b29b3 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x986c4e7d tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x982d9ef3 sock_from_file +EXPORT_SYMBOL vmlinux 0x982fad89 account_page_redirty +EXPORT_SYMBOL vmlinux 0x985f47fe tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x9863e0c9 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x9875a7e8 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x9882b722 ptp_schedule_worker EXPORT_SYMBOL vmlinux 0x988c2ebb blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x988e442f netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x989dd154 locks_remove_posix EXPORT_SYMBOL vmlinux 0x98a0f5e5 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x98b00ebd skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0x98b2eeb6 to_nd_dax -EXPORT_SYMBOL vmlinux 0x98b609ab __ip_queue_xmit EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98de2858 filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning EXPORT_SYMBOL vmlinux 0x98ec1a12 rproc_elf_get_boot_addr EXPORT_SYMBOL vmlinux 0x98f30521 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x98f5412b inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x990b46be __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x991b4a44 blk_cleanup_queue EXPORT_SYMBOL vmlinux 0x992624cf devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x992c6f61 mii_check_media EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available +EXPORT_SYMBOL vmlinux 0x993593c2 tc_cleanup_flow_action EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x996495c8 bdi_set_max_ratio EXPORT_SYMBOL vmlinux 0x996e6699 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0x997119f2 jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x998e16d8 get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0x999ca12c scsi_register_interface EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a26397 tcp_ioctl EXPORT_SYMBOL vmlinux 0x99a5733f mipi_dsi_dcs_set_page_address EXPORT_SYMBOL vmlinux 0x99abb158 tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0x99b28e95 udp_lib_getsockopt EXPORT_SYMBOL vmlinux 0x99bf6f82 d_set_d_op -EXPORT_SYMBOL vmlinux 0x99c742e6 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x99d1862a ptp_clock_event +EXPORT_SYMBOL vmlinux 0x99cd02b4 phy_attached_print EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99e7ddb3 set_page_dirty EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x9a06196b seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a0edb6b __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0x9a126f13 copy_page_to_iter EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9a35520b mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x9a30a106 sock_register EXPORT_SYMBOL vmlinux 0x9a38b65e make_kgid +EXPORT_SYMBOL vmlinux 0x9a43e370 generic_file_open EXPORT_SYMBOL vmlinux 0x9a4b8dbb __devm_of_mdiobus_register EXPORT_SYMBOL vmlinux 0x9a4ee9c9 d_alloc_name EXPORT_SYMBOL vmlinux 0x9a56a5b0 dma_async_tx_descriptor_init EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a82d000 generic_file_open +EXPORT_SYMBOL vmlinux 0x9a7a72ad security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x9a89ffd8 netlink_ack EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ac67fed ipv6_mc_check_mld EXPORT_SYMBOL vmlinux 0x9ac6f056 iget5_locked EXPORT_SYMBOL vmlinux 0x9ad8deeb bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x9ae0bd5b touch_buffer EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9b052aeb sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x9b045d49 dev_change_proto_down EXPORT_SYMBOL vmlinux 0x9b08d3e8 remove_proc_entry EXPORT_SYMBOL vmlinux 0x9b0a9240 bio_uninit EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state -EXPORT_SYMBOL vmlinux 0x9b166126 passthru_features_check +EXPORT_SYMBOL vmlinux 0x9b15e4a9 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b40fe6a __set_page_dirty_buffers EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b65c4c2 napi_complete_done +EXPORT_SYMBOL vmlinux 0x9b66c55f pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table EXPORT_SYMBOL vmlinux 0x9b9d738a fs_param_is_string -EXPORT_SYMBOL vmlinux 0x9bc25553 tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0x9beef6aa md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x9bfdf1ec security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x9c0eb61b sock_set_reuseport EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c18d887 clk_hw_get_clk EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x9c2090a1 inode_io_list_del EXPORT_SYMBOL vmlinux 0x9c209ba6 devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x9c26951a mmc_request_done +EXPORT_SYMBOL vmlinux 0x9c3b4a3b dev_driver_string EXPORT_SYMBOL vmlinux 0x9c4335be bio_devname EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 -EXPORT_SYMBOL vmlinux 0x9c6360aa rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x9c6b93bd generic_block_bmap +EXPORT_SYMBOL vmlinux 0x9c6a8ba6 mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0x9c7d02ac fb_get_buffer_offset EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c924d3a put_fs_context EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb27b72 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x9cbbfeb0 d_find_any_alias EXPORT_SYMBOL vmlinux 0x9cc4b4b9 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x9ccec3a5 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x9ccc7902 generic_file_llseek_size EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9ccf8f90 neigh_xmit EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net EXPORT_SYMBOL vmlinux 0x9ce09b47 pm860x_bulk_read EXPORT_SYMBOL vmlinux 0x9ce6b724 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x9ce9ae1a page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x9cfd8d34 xfrm_state_free EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy +EXPORT_SYMBOL vmlinux 0x9d1f2c88 xfrm_unregister_type EXPORT_SYMBOL vmlinux 0x9d26ba72 from_kgid_munged EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x9d2de661 phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d303eb1 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x9d457c1e devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x9d525e67 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x9d3af566 inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d916880 PageMovable +EXPORT_SYMBOL vmlinux 0x9d649180 fiemap_prep +EXPORT_SYMBOL vmlinux 0x9d71e061 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x9d7a7b85 ip_fraglist_init EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context EXPORT_SYMBOL vmlinux 0x9dafe097 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x9db0b4f5 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x9dbdeffb __lock_buffer -EXPORT_SYMBOL vmlinux 0x9dcf6bad ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x9ddec27f sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0x9ddf6f97 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x9de6bde5 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x9dec9e32 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x9ded5986 set_create_files_as EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel -EXPORT_SYMBOL vmlinux 0x9df221a4 tcf_qevent_destroy 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 0x9e281d68 dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0x9e447793 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x9e4d396b scsi_device_set_state EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e53798d dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x9e586776 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x9e59f643 phy_mii_ioctl EXPORT_SYMBOL vmlinux 0x9e5d9f9b from_kuid_munged EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x9e5fa725 wait_on_page_private_2 EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e6f4c51 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x9e75aca3 migrate_page EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e861882 scsi_device_resume EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup @@ -9672,888 +9594,872 @@ EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq EXPORT_SYMBOL vmlinux 0x9eb9ed81 nd_pfn_probe EXPORT_SYMBOL vmlinux 0x9ebaab50 mipi_dsi_driver_unregister EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec20b30 read_cache_pages EXPORT_SYMBOL vmlinux 0x9ec256b5 pnp_unregister_card_driver EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ed6f3df scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x9ec8a905 sock_init_data +EXPORT_SYMBOL vmlinux 0x9ed2cf0e mr_table_dump EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ee801d9 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x9ef02415 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x9ef1ba03 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0x9f052861 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x9f2132dd unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x9f0c6fe1 __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0x9f21c4d8 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x9f2242b8 sock_wake_async -EXPORT_SYMBOL vmlinux 0x9f41d7f7 skb_seq_read -EXPORT_SYMBOL vmlinux 0x9f448c47 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x9f279c82 phy_stop EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f5bfdec vfs_rename -EXPORT_SYMBOL vmlinux 0x9f5f3509 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x9f7b8dcc xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw +EXPORT_SYMBOL vmlinux 0x9f81044d jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x9f8bd765 iw_handler_set_thrspy EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fa4993b netif_carrier_off EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fdbd4d8 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x9fae72d4 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x9fc2dd12 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x9fd40e60 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x9fda97b9 ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many EXPORT_SYMBOL vmlinux 0x9fe4b3d8 pci_bus_type -EXPORT_SYMBOL vmlinux 0x9fe5acb2 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x9feaec76 ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ff2c9f8 logfc +EXPORT_SYMBOL vmlinux 0x9ff7e9d3 inet6_csk_route_req EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa0002d81 phy_init_hw +EXPORT_SYMBOL vmlinux 0xa0010951 dev_open +EXPORT_SYMBOL vmlinux 0xa001405d find_vma EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa0169d3a lock_rename EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xa026354e dev_remove_pack EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa03426b6 __register_binfmt +EXPORT_SYMBOL vmlinux 0xa036841f ip_output EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04bd644 sock_create +EXPORT_SYMBOL vmlinux 0xa04c51e6 of_mdiobus_child_is_phy EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh -EXPORT_SYMBOL vmlinux 0xa056bd65 free_netdev EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute EXPORT_SYMBOL vmlinux 0xa063ab41 acpi_pm_device_sleep_state EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07b047e kernel_read EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa07ea306 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xa07ebb8a icmp_ndo_send EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa086cdea fddi_type_trans EXPORT_SYMBOL vmlinux 0xa092e7b7 dm_table_get_md EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa0a88a76 vfs_llseek EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0bb3ad6 __inode_sub_bytes EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0dcff85 kern_path_create 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 0xa0f07276 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xa0f8af66 inet6_bind EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa101578d jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xa104cc40 genphy_update_link EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max EXPORT_SYMBOL vmlinux 0xa10a91e1 regset_get_alloc EXPORT_SYMBOL vmlinux 0xa11cfa2c edac_mc_find -EXPORT_SYMBOL vmlinux 0xa12ea645 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0xa13e780a gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xa154586f cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xa15cda27 open_exec -EXPORT_SYMBOL vmlinux 0xa167770c unregister_filesystem -EXPORT_SYMBOL vmlinux 0xa1687881 skb_tx_error +EXPORT_SYMBOL vmlinux 0xa15b044f vme_slave_request +EXPORT_SYMBOL vmlinux 0xa15cc365 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xa160bea1 file_ns_capable +EXPORT_SYMBOL vmlinux 0xa1618e69 __page_symlink +EXPORT_SYMBOL vmlinux 0xa168df8c sock_no_sendmsg EXPORT_SYMBOL vmlinux 0xa17857d7 from_kgid -EXPORT_SYMBOL vmlinux 0xa1ac45fa dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xa1b963a7 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xa1c1c0dc napi_gro_receive +EXPORT_SYMBOL vmlinux 0xa1d70be9 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xa1e35d65 phy_get_pause +EXPORT_SYMBOL vmlinux 0xa1e60335 xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0xa2035ac6 qcom_scm_set_warm_boot_addr EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa212b156 register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xa2218a3b netif_napi_add -EXPORT_SYMBOL vmlinux 0xa22d3fab xp_alloc EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa2484e11 __bforget EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa257020e dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xa250e7f3 tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa263f188 seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled EXPORT_SYMBOL vmlinux 0xa26b6879 iov_iter_zero -EXPORT_SYMBOL vmlinux 0xa26cf289 __scm_destroy +EXPORT_SYMBOL vmlinux 0xa26fe154 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xa27241b6 dev_set_threaded +EXPORT_SYMBOL vmlinux 0xa2737241 dst_init EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active EXPORT_SYMBOL vmlinux 0xa29848bf acpi_dev_get_first_match_dev EXPORT_SYMBOL vmlinux 0xa29c2d8e init_special_inode EXPORT_SYMBOL vmlinux 0xa2a11ce4 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0xa2b0cb9e sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xa2cab700 reuseport_add_sock EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free EXPORT_SYMBOL vmlinux 0xa2d7efd7 pci_write_vpd -EXPORT_SYMBOL vmlinux 0xa2ded804 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xa2ef4ef5 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xa2f950d0 xfrm_state_update -EXPORT_SYMBOL vmlinux 0xa3071027 block_write_end +EXPORT_SYMBOL vmlinux 0xa30185b7 default_qdisc_ops EXPORT_SYMBOL vmlinux 0xa3291cdb blk_post_runtime_resume EXPORT_SYMBOL vmlinux 0xa3357521 posix_acl_chmod EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask EXPORT_SYMBOL vmlinux 0xa3431018 cfb_imageblit EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np +EXPORT_SYMBOL vmlinux 0xa35790b9 ll_rw_block EXPORT_SYMBOL vmlinux 0xa35e6137 dquot_transfer -EXPORT_SYMBOL vmlinux 0xa37e4131 genphy_read_status +EXPORT_SYMBOL vmlinux 0xa39164bb __fib6_flush_trees EXPORT_SYMBOL vmlinux 0xa3a3f229 cpumask_next_and EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3bf4a33 dev_lstats_read EXPORT_SYMBOL vmlinux 0xa3c261e9 mipi_dsi_dcs_set_display_brightness EXPORT_SYMBOL vmlinux 0xa3c2e498 vfs_get_tree -EXPORT_SYMBOL vmlinux 0xa3c54e0e nobh_write_end EXPORT_SYMBOL vmlinux 0xa3c85eb9 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xa3cc8b26 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xa3cdc33d sk_common_release EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update EXPORT_SYMBOL vmlinux 0xa3d5697f init_pseudo +EXPORT_SYMBOL vmlinux 0xa3e6223e tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0xa3e9ec4b nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xa3eb5806 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xa3ebb5ff flow_block_cb_incref EXPORT_SYMBOL vmlinux 0xa3fa48ee pci_assign_resource EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits -EXPORT_SYMBOL vmlinux 0xa3fdb2b7 sock_no_bind +EXPORT_SYMBOL vmlinux 0xa3fc107f sk_alloc EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final EXPORT_SYMBOL vmlinux 0xa3ff79db pnp_register_driver EXPORT_SYMBOL vmlinux 0xa40d583d devm_release_resource EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa41c358e mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0xa429667c iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xa419337f __scsi_execute +EXPORT_SYMBOL vmlinux 0xa41a796f tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xa41f7594 skb_split +EXPORT_SYMBOL vmlinux 0xa4264f4c mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0xa434a290 km_state_expired EXPORT_SYMBOL vmlinux 0xa4370296 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xa43e02a2 rtnl_unicast EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key EXPORT_SYMBOL vmlinux 0xa46500c5 param_get_ullong +EXPORT_SYMBOL vmlinux 0xa4709b47 fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction -EXPORT_SYMBOL vmlinux 0xa482d4c1 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xa48410c2 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xa4818916 tso_build_hdr EXPORT_SYMBOL vmlinux 0xa48571ee mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0xa48c55fd i2c_transfer_buffer_flags EXPORT_SYMBOL vmlinux 0xa493cfe2 pci_clear_master +EXPORT_SYMBOL vmlinux 0xa4bb0d87 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0xa4c16928 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xa4e5f0c9 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xa4e71601 tcp_seq_start EXPORT_SYMBOL vmlinux 0xa4f7bba1 pci_alloc_dev EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock +EXPORT_SYMBOL vmlinux 0xa500f0f6 ip_sock_set_freebind EXPORT_SYMBOL vmlinux 0xa5064be7 devm_gen_pool_create EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit -EXPORT_SYMBOL vmlinux 0xa50a708e sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xa510138f mmc_erase EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa53f3386 inet_getname -EXPORT_SYMBOL vmlinux 0xa54b8dd0 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xa52deecd device_match_acpi_dev EXPORT_SYMBOL vmlinux 0xa54e0a7a mdiobb_write EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color EXPORT_SYMBOL vmlinux 0xa564f8fb thaw_super EXPORT_SYMBOL vmlinux 0xa5736c8c param_set_hexint -EXPORT_SYMBOL vmlinux 0xa57ae58a flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xa586d6ab __brelse EXPORT_SYMBOL vmlinux 0xa595f6bc kobject_init EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa599773d acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xa5a605a3 ip6mr_rule_default EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5af7fb4 __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xa5c31e83 kernel_connect EXPORT_SYMBOL vmlinux 0xa5d06b2d backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0xa5d43158 tcp_time_wait EXPORT_SYMBOL vmlinux 0xa5d4a57c sb_min_blocksize EXPORT_SYMBOL vmlinux 0xa5dc8a73 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xa5ead64a nf_register_sockopt EXPORT_SYMBOL vmlinux 0xa5ed4abf dget_parent EXPORT_SYMBOL vmlinux 0xa5f4c56e param_get_ulong EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xa6012f6a devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0xa609c265 security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0xa60c51e8 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xa60d723d ethtool_get_phc_vclocks EXPORT_SYMBOL vmlinux 0xa60f25c1 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0xa61b998c __breadahead_gfp EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa61f950b jbd2_journal_blocks_per_page EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa62757bf dev_disable_lro EXPORT_SYMBOL vmlinux 0xa63bdb91 bio_split +EXPORT_SYMBOL vmlinux 0xa642abc3 security_socket_socketpair EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds -EXPORT_SYMBOL vmlinux 0xa65ff5cd inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xa6576cf2 devfreq_remove_device EXPORT_SYMBOL vmlinux 0xa66daad4 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xa67f6a57 rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid EXPORT_SYMBOL vmlinux 0xa6904e45 unregister_cdrom -EXPORT_SYMBOL vmlinux 0xa69f8f27 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xa6939f7e jbd2_fc_release_bufs EXPORT_SYMBOL vmlinux 0xa6b338e9 blk_mq_start_request EXPORT_SYMBOL vmlinux 0xa6ba9fa7 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xa6d9186d ip6tun_encaps -EXPORT_SYMBOL vmlinux 0xa6da4770 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xa6e6e93e napi_disable +EXPORT_SYMBOL vmlinux 0xa6c243e6 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xa6c321e2 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xa6d54e2a udp_ioctl +EXPORT_SYMBOL vmlinux 0xa6d9359a udp_seq_next +EXPORT_SYMBOL vmlinux 0xa6de11ae tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xa6e27ac7 nf_setsockopt EXPORT_SYMBOL vmlinux 0xa6ebfa20 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0xa6f0494e netif_skb_features +EXPORT_SYMBOL vmlinux 0xa6f78713 udp_lib_rehash EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xa71996cc mmc_retune_pause EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order -EXPORT_SYMBOL vmlinux 0xa730613c reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0xa73caee4 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0xa7452a4f skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xa729a990 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xa7316aec iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xa734ec32 mr_table_alloc +EXPORT_SYMBOL vmlinux 0xa738e4ce init_net EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock EXPORT_SYMBOL vmlinux 0xa75541c3 seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0xa75c0fa1 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xa7667407 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xa76822f3 phy_error EXPORT_SYMBOL vmlinux 0xa7708016 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xa77a6f85 filemap_fault EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier EXPORT_SYMBOL vmlinux 0xa7aa35d2 bdi_register +EXPORT_SYMBOL vmlinux 0xa7ab1a3b filemap_map_pages EXPORT_SYMBOL vmlinux 0xa7c60c63 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xa7c8e783 phy_error -EXPORT_SYMBOL vmlinux 0xa7cb5bbd tcp_filter EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7dbc5b9 inet_add_offload +EXPORT_SYMBOL vmlinux 0xa7ea54b3 __xfrm_state_delete EXPORT_SYMBOL vmlinux 0xa7ebc9d3 mipi_dsi_dcs_set_display_on EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper EXPORT_SYMBOL vmlinux 0xa7f10a62 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0xa804e5d0 netdev_notice +EXPORT_SYMBOL vmlinux 0xa7f5f33f phy_aneg_done EXPORT_SYMBOL vmlinux 0xa8060478 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xa811722f security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0xa8151126 tegra_dfll_runtime_suspend EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec -EXPORT_SYMBOL vmlinux 0xa8229f41 may_umount -EXPORT_SYMBOL vmlinux 0xa83d5908 bh_submit_read EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8454180 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xa84c3300 sk_page_frag_refill EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox EXPORT_SYMBOL vmlinux 0xa853396b xa_extract EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa87116b5 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xa87cca46 tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8af6ced mptcp_subflow_reqsk_alloc EXPORT_SYMBOL vmlinux 0xa8c04280 fman_bind EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8caee4a in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xa8cdac46 ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0xa8d1eabc of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xa8d6c666 inet_protos EXPORT_SYMBOL vmlinux 0xa8dd340e of_find_node_with_property EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present EXPORT_SYMBOL vmlinux 0xa8e85dcc pci_scan_bridge EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa8fdbd91 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xa90448da ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0xa90787e2 mr_dump EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work EXPORT_SYMBOL vmlinux 0xa916b694 strnlen EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa9256982 __ClearPageMovable EXPORT_SYMBOL vmlinux 0xa9274dbe pci_bus_read_config_word EXPORT_SYMBOL vmlinux 0xa92e098c __free_pages -EXPORT_SYMBOL vmlinux 0xa93925ef unregister_qdisc EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa984b691 netlink_capable EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes EXPORT_SYMBOL vmlinux 0xa9a9b2bb fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0xa9b1612b neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xa9b30706 phy_device_free -EXPORT_SYMBOL vmlinux 0xa9bc7041 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0xa9c6e7e7 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xa9d2e0c1 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xa9da76d1 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xa9e24f89 vfs_iter_write EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa19bf70 follow_up EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa20c377 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xaa316984 key_unlink EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa429fca security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0xaa4fda58 __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa70ffc3 nf_register_queue_handler EXPORT_SYMBOL vmlinux 0xaa73cf0f truncate_setsize EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL vmlinux 0xaa87ffff __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0xaa9183c0 of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0xaa96bb2b init_task EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change -EXPORT_SYMBOL vmlinux 0xaabc2568 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xaaaf820e i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xaab5f5db jbd2_journal_check_used_features EXPORT_SYMBOL vmlinux 0xaac4370c rfkill_alloc +EXPORT_SYMBOL vmlinux 0xaaca99f3 unlock_page_memcg EXPORT_SYMBOL vmlinux 0xaacaab2e alloc_file_pseudo 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 0xaade273c iw_handler_set_thrspy EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab0769a1 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xab06c7f9 netlink_broadcast EXPORT_SYMBOL vmlinux 0xab1593b2 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xab1b5a34 kfree_skb_reason EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute EXPORT_SYMBOL vmlinux 0xab3bae72 __pci_register_driver -EXPORT_SYMBOL vmlinux 0xab3d9d33 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0xab51030d register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0xab524077 phy_ethtool_get_sset_count EXPORT_SYMBOL vmlinux 0xab58ab77 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xab58c4ee inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init -EXPORT_SYMBOL vmlinux 0xab6a4a37 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xab6a84ac jbd2_journal_flush EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin EXPORT_SYMBOL vmlinux 0xab76126a pci_get_slot EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab87333e qdisc_hash_del -EXPORT_SYMBOL vmlinux 0xab93216c neigh_lookup -EXPORT_SYMBOL vmlinux 0xab9d1ca1 filemap_check_errors -EXPORT_SYMBOL vmlinux 0xabb9dcb8 genl_notify -EXPORT_SYMBOL vmlinux 0xabc0f575 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0xab849b18 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xab902f95 fc_mount +EXPORT_SYMBOL vmlinux 0xabb2004c __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xabba1b36 skb_ext_add +EXPORT_SYMBOL vmlinux 0xabe89b47 mdiobus_unregister EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xac158911 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xabf7331f udp_seq_stop +EXPORT_SYMBOL vmlinux 0xabfc01e5 ip6_fraglist_init EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier EXPORT_SYMBOL vmlinux 0xac267c5d inode_nohighmem -EXPORT_SYMBOL vmlinux 0xac26814b tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xac2945a8 blk_put_request EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac36501f get_phy_device EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac6074d3 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xac631008 set_bh_page EXPORT_SYMBOL vmlinux 0xac6eb818 padata_free_shell EXPORT_SYMBOL vmlinux 0xac709142 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xac8aab1a xfrm_state_add -EXPORT_SYMBOL vmlinux 0xaca01e01 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xaca3e3d9 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xac84c76e vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xac902129 phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0xaca6be46 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xaca774ac sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacc1f162 inet_offloads -EXPORT_SYMBOL vmlinux 0xacd6de90 ethtool_op_get_link EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xacefe917 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xace8accf register_qdisc EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xacfab2df noop_llseek EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0e881f mmc_cqe_recovery EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0xad2b6c98 pcim_iounmap_regions EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node EXPORT_SYMBOL vmlinux 0xad3dd279 input_set_poll_interval EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove -EXPORT_SYMBOL vmlinux 0xad4c7885 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xad548608 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xad5596fe jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0xad654e0f blk_mq_end_request EXPORT_SYMBOL vmlinux 0xad66d143 simple_fill_super -EXPORT_SYMBOL vmlinux 0xad66fa50 mroute6_is_socket EXPORT_SYMBOL vmlinux 0xad682b8f xudma_rchanrt_write EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad6ef3e8 devm_mfd_add_devices EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function EXPORT_SYMBOL vmlinux 0xad735411 param_ops_hexint EXPORT_SYMBOL vmlinux 0xad756431 generic_delete_inode -EXPORT_SYMBOL vmlinux 0xad806356 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xad93dbaa __inet6_lookup_established EXPORT_SYMBOL vmlinux 0xad9409cf param_get_charp EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue -EXPORT_SYMBOL vmlinux 0xad9c997f prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0xad9b446d scmd_printk +EXPORT_SYMBOL vmlinux 0xada0d630 __page_cache_alloc EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align EXPORT_SYMBOL vmlinux 0xada6e7c1 key_reject_and_link EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final 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 0xade44bf1 register_netdevice -EXPORT_SYMBOL vmlinux 0xade88ad0 tcp_disconnect -EXPORT_SYMBOL vmlinux 0xade95c68 kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0xadf30993 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xadf94da6 mdiobus_register_device EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xadfe743e __kfree_skb EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae076d8f ipv4_specific EXPORT_SYMBOL vmlinux 0xae09819d nd_dax_probe +EXPORT_SYMBOL vmlinux 0xae0ad0e8 sock_efree +EXPORT_SYMBOL vmlinux 0xae0ca8d5 phy_driver_unregister EXPORT_SYMBOL vmlinux 0xae128393 kset_register -EXPORT_SYMBOL vmlinux 0xae1d954c of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0xae25a2a1 vfs_mkdir -EXPORT_SYMBOL vmlinux 0xae2e570f rt_dst_alloc EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair -EXPORT_SYMBOL vmlinux 0xae3466d8 ip_output -EXPORT_SYMBOL vmlinux 0xae44c432 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0xae53e450 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xae54e2b1 scsi_print_sense_hdr EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae605bbe xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0xae72b23c vme_irq_handler EXPORT_SYMBOL vmlinux 0xae73471b bio_advance +EXPORT_SYMBOL vmlinux 0xae8607b7 submit_bh EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaebbfcee xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xaebc8b9a register_fib_notifier EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaec9a15d dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xaed5c1fd sock_pfree EXPORT_SYMBOL vmlinux 0xaee17315 padata_do_parallel -EXPORT_SYMBOL vmlinux 0xaeecb6e3 skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0xaef34ffa amba_release_regions EXPORT_SYMBOL vmlinux 0xaf06c066 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xaf10f7f4 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xaf135ca8 migrate_page_states EXPORT_SYMBOL vmlinux 0xaf15ec52 of_count_phandle_with_args EXPORT_SYMBOL vmlinux 0xaf26dd93 pci_get_subsys EXPORT_SYMBOL vmlinux 0xaf309092 fman_port_bind -EXPORT_SYMBOL vmlinux 0xaf3a2eee twl6040_reg_read EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level EXPORT_SYMBOL vmlinux 0xaf410869 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xaf418af0 blk_get_request -EXPORT_SYMBOL vmlinux 0xaf4722d4 sock_efree +EXPORT_SYMBOL vmlinux 0xaf517499 xfrm_input EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings +EXPORT_SYMBOL vmlinux 0xaf5fadf4 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xaf61a873 generic_permission EXPORT_SYMBOL vmlinux 0xaf699577 truncate_pagecache EXPORT_SYMBOL vmlinux 0xaf717238 sync_file_create EXPORT_SYMBOL vmlinux 0xaf7248bc tty_unregister_device EXPORT_SYMBOL vmlinux 0xaf7a161c pnp_device_attach -EXPORT_SYMBOL vmlinux 0xaf8d5767 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xaf9fb5d2 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xafab2025 jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0xafb09774 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0xafb3cebb vfs_clone_file_range EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xafb9e5b8 generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name EXPORT_SYMBOL vmlinux 0xafc55be4 ps2_sliced_command -EXPORT_SYMBOL vmlinux 0xafd1c569 _dev_printk EXPORT_SYMBOL vmlinux 0xafd97ebd iov_iter_xarray -EXPORT_SYMBOL vmlinux 0xafe1ba65 register_qdisc +EXPORT_SYMBOL vmlinux 0xb003f79d __skb_ext_del +EXPORT_SYMBOL vmlinux 0xb00783e8 _dev_err EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb0504f76 jbd2_journal_stop EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats +EXPORT_SYMBOL vmlinux 0xb05dd661 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb0856b80 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xb06df2d4 blk_put_request EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0c4b10e ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return -EXPORT_SYMBOL vmlinux 0xb0dd2198 _dev_err +EXPORT_SYMBOL vmlinux 0xb0db0122 tc_setup_cb_call EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0ef40a2 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xb0f1320c ip6_xmit EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize EXPORT_SYMBOL vmlinux 0xb0fccd26 tegra_ahb_enable_smmu -EXPORT_SYMBOL vmlinux 0xb106fe0e devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xb10a49ea xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare EXPORT_SYMBOL vmlinux 0xb113e012 bdi_alloc +EXPORT_SYMBOL vmlinux 0xb1190281 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xb11f3743 inet_unregister_protosw EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb125d618 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb13637ed vme_bus_type EXPORT_SYMBOL vmlinux 0xb142d703 seq_hex_dump EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work +EXPORT_SYMBOL vmlinux 0xb1692201 blk_sync_queue EXPORT_SYMBOL vmlinux 0xb17eb7e1 file_modified -EXPORT_SYMBOL vmlinux 0xb1a0de03 ip_defrag +EXPORT_SYMBOL vmlinux 0xb17fd0c7 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xb1827547 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xb1c07321 kfree_skb_partial EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug EXPORT_SYMBOL vmlinux 0xb1d51f3a fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xb1d6115f skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xb1da02f2 vfs_statfs EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e454f0 xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0xb20a71e2 audit_log -EXPORT_SYMBOL vmlinux 0xb20ffa9f inet_select_addr EXPORT_SYMBOL vmlinux 0xb2145ce3 bio_put +EXPORT_SYMBOL vmlinux 0xb2248c3d tcf_idr_release +EXPORT_SYMBOL vmlinux 0xb22c3787 flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user EXPORT_SYMBOL vmlinux 0xb26888db setattr_should_drop_sgid EXPORT_SYMBOL vmlinux 0xb26bd569 inc_node_page_state -EXPORT_SYMBOL vmlinux 0xb2934cfd vme_init_bridge -EXPORT_SYMBOL vmlinux 0xb2aa5dd6 phy_sfp_probe -EXPORT_SYMBOL vmlinux 0xb2aec562 find_vma -EXPORT_SYMBOL vmlinux 0xb2b439a5 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xb2b5a5ae dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xb271903f setup_arg_pages +EXPORT_SYMBOL vmlinux 0xb2974924 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xb29a94ef ___pskb_trim +EXPORT_SYMBOL vmlinux 0xb2a322f4 ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count EXPORT_SYMBOL vmlinux 0xb2c3b743 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xb2c517d0 kernel_bind -EXPORT_SYMBOL vmlinux 0xb2c95d0f __mmc_claim_host EXPORT_SYMBOL vmlinux 0xb2ca299f dm_table_get_size +EXPORT_SYMBOL vmlinux 0xb2cf005f phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xb2e57e43 ip_generic_getfrag EXPORT_SYMBOL vmlinux 0xb2e5eca4 d_splice_alias EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr EXPORT_SYMBOL vmlinux 0xb2eaf46a empty_aops EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xb2fd8652 xfrm6_input_addr EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set 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 0xb3401315 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xb3492aeb phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xb33afabe phy_ethtool_get_strings EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg -EXPORT_SYMBOL vmlinux 0xb359ddd7 neigh_seq_start -EXPORT_SYMBOL vmlinux 0xb362cdb6 thread_group_exited +EXPORT_SYMBOL vmlinux 0xb34e38ae phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xb36445d0 tcp_sock_set_keepintvl EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb372d8ec scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xb37b62e3 __check_sticky -EXPORT_SYMBOL vmlinux 0xb3855028 tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0xb3a00a05 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xb36be6ad flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xb37ea322 skb_dump +EXPORT_SYMBOL vmlinux 0xb394a350 tcp_seq_next +EXPORT_SYMBOL vmlinux 0xb3953146 qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc -EXPORT_SYMBOL vmlinux 0xb3abed02 phy_drivers_register EXPORT_SYMBOL vmlinux 0xb3b0c900 of_find_node_opts_by_path EXPORT_SYMBOL vmlinux 0xb3bb92a4 tty_insert_flip_string_fixed_flag EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3da6187 console_start -EXPORT_SYMBOL vmlinux 0xb3eaaa4a phy_attach EXPORT_SYMBOL vmlinux 0xb3ec546a devm_ioremap_np EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3fc6904 mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0xb3ff04cb init_net -EXPORT_SYMBOL vmlinux 0xb403302d touch_buffer +EXPORT_SYMBOL vmlinux 0xb3fd7d53 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb41c18f1 dst_release +EXPORT_SYMBOL vmlinux 0xb41390f2 filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb434c0ff gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0xb43e2ee0 task_work_add -EXPORT_SYMBOL vmlinux 0xb45149f5 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0xb4463af7 ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb47c8155 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xb469dcfd inet_del_protocol +EXPORT_SYMBOL vmlinux 0xb482c620 xfrm_replay_seqhi EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts EXPORT_SYMBOL vmlinux 0xb48e49fe cros_ec_query_all +EXPORT_SYMBOL vmlinux 0xb491aa90 key_move EXPORT_SYMBOL vmlinux 0xb49a1765 dmam_pool_create -EXPORT_SYMBOL vmlinux 0xb49ad210 security_sk_clone +EXPORT_SYMBOL vmlinux 0xb4a9e6fd mmc_card_is_blockaddr EXPORT_SYMBOL vmlinux 0xb4bf7d5c dm_io -EXPORT_SYMBOL vmlinux 0xb4d13f2d flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xb4e80ca7 dev_add_pack EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb5017094 xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0xb5064177 d_path -EXPORT_SYMBOL vmlinux 0xb511d491 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xb4f16c2f dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xb50ff778 __filemap_set_wb_err EXPORT_SYMBOL vmlinux 0xb51f03ef tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0xb52cb183 irq_domain_set_info EXPORT_SYMBOL vmlinux 0xb5379734 __invalidate_device EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated EXPORT_SYMBOL vmlinux 0xb5406d5a take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xb553e511 vme_irq_free EXPORT_SYMBOL vmlinux 0xb55ee36e blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xb56b8c53 udp_pre_connect EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink EXPORT_SYMBOL vmlinux 0xb57d9693 kernel_param_lock EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable -EXPORT_SYMBOL vmlinux 0xb5854e88 sk_send_sigurg EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb58d39aa vfs_get_fsid EXPORT_SYMBOL vmlinux 0xb596e30b __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xb599a2c8 nf_getsockopt EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5ab2a5a fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0xb5b610b8 __breadahead +EXPORT_SYMBOL vmlinux 0xb5b3a68d neigh_parms_release EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5c04c5f build_skb -EXPORT_SYMBOL vmlinux 0xb5ca4dc6 flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5ee8300 netdev_update_features EXPORT_SYMBOL vmlinux 0xb5f1935a md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xb5faa5b7 dev_get_by_index -EXPORT_SYMBOL vmlinux 0xb6105132 __getblk_gfp -EXPORT_SYMBOL vmlinux 0xb618eea8 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xb613039e __inet_hash EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb623dcb7 skb_vlan_pop EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable EXPORT_SYMBOL vmlinux 0xb63cf670 setattr_prepare -EXPORT_SYMBOL vmlinux 0xb64d23ab try_to_free_buffers EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb663b04d skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0xb66b9023 sock_sendmsg -EXPORT_SYMBOL vmlinux 0xb66badfe nf_log_bind_pf EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse EXPORT_SYMBOL vmlinux 0xb685d8f8 to_nd_pfn EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb696c256 setup_new_exec -EXPORT_SYMBOL vmlinux 0xb6a458af napi_get_frags +EXPORT_SYMBOL vmlinux 0xb6a5ae91 __pagevec_release EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach EXPORT_SYMBOL vmlinux 0xb6b02c3f registered_fb EXPORT_SYMBOL vmlinux 0xb6b2d81c register_framebuffer -EXPORT_SYMBOL vmlinux 0xb6c48563 __traceiter_module_get EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute EXPORT_SYMBOL vmlinux 0xb6e6a911 scsi_partsize +EXPORT_SYMBOL vmlinux 0xb6e7da31 copy_string_kernel EXPORT_SYMBOL vmlinux 0xb6f8e681 bio_integrity_trim EXPORT_SYMBOL vmlinux 0xb6fb0a04 kmem_cache_free EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd EXPORT_SYMBOL vmlinux 0xb7050011 of_get_compatible_child EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71ac793 tcf_block_put EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync EXPORT_SYMBOL vmlinux 0xb71fecf5 kmem_cache_free_bulk EXPORT_SYMBOL vmlinux 0xb72c9ade proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xb733c02c inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xb736c499 gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb75b1d5d dentry_path_raw -EXPORT_SYMBOL vmlinux 0xb7604d17 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xb73ba51d mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xb7418dc1 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xb74cb677 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xb75081c4 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0xb7508ebd tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0xb762bdef genl_unregister_family EXPORT_SYMBOL vmlinux 0xb76759da mipi_dsi_dcs_write EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb772c8fd unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0xb778fdd8 qman_start_using_portal EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict EXPORT_SYMBOL vmlinux 0xb79679e8 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xb7a7c83d __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xb7b20115 rt6_lookup -EXPORT_SYMBOL vmlinux 0xb7b5c480 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xb7a41bc1 tcp_syn_ack_timeout EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states EXPORT_SYMBOL vmlinux 0xb7c0f443 sort -EXPORT_SYMBOL vmlinux 0xb7c39519 ppp_dev_name -EXPORT_SYMBOL vmlinux 0xb7c4ecf0 phy_device_register EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7eacf13 security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0xb7f020bf from_kuid EXPORT_SYMBOL vmlinux 0xb7f437f7 irq_set_chip EXPORT_SYMBOL vmlinux 0xb810713a md_update_sb EXPORT_SYMBOL vmlinux 0xb81e424f phy_modify_paged +EXPORT_SYMBOL vmlinux 0xb825606f bh_submit_read EXPORT_SYMBOL vmlinux 0xb828997e blk_rq_map_integrity_sg EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue EXPORT_SYMBOL vmlinux 0xb837787b node_data +EXPORT_SYMBOL vmlinux 0xb83fa665 xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb8449c04 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0xb8435f3a dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add +EXPORT_SYMBOL vmlinux 0xb86485fd __sk_receive_skb EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb8690efc genphy_setup_forced EXPORT_SYMBOL vmlinux 0xb86f32a6 simple_dir_operations EXPORT_SYMBOL vmlinux 0xb86fd917 param_get_short -EXPORT_SYMBOL vmlinux 0xb876d85c find_get_pages_contig EXPORT_SYMBOL vmlinux 0xb88110f2 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xb8831af9 __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0xb888159d mount_single EXPORT_SYMBOL vmlinux 0xb888a9ec mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xb88d0d6f neigh_table_init EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups EXPORT_SYMBOL vmlinux 0xb88ff4e6 serio_interrupt -EXPORT_SYMBOL vmlinux 0xb89523f7 generic_write_checks EXPORT_SYMBOL vmlinux 0xb8979eb7 processors EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8a2c1db __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xb8abe38b tcp_splice_read EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b627b1 tcp_sync_mss EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace EXPORT_SYMBOL vmlinux 0xb8c0f1e2 user_revoke EXPORT_SYMBOL vmlinux 0xb8c8bd9b forget_cached_acl -EXPORT_SYMBOL vmlinux 0xb8ec249f ipv4_specific +EXPORT_SYMBOL vmlinux 0xb8e0c1eb request_key_rcu +EXPORT_SYMBOL vmlinux 0xb8e7ce3a phy_request_interrupt EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb9144f00 keyring_search +EXPORT_SYMBOL vmlinux 0xb93180b7 flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0xb9346b5e pci_enable_ptm EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb9588ec2 dev_set_alias EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb976f3a8 neigh_destroy EXPORT_SYMBOL vmlinux 0xb99cf394 phy_read_mmd EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9c02bed path_put +EXPORT_SYMBOL vmlinux 0xb9c32900 tcf_qevent_init EXPORT_SYMBOL vmlinux 0xb9c83504 tty_port_close -EXPORT_SYMBOL vmlinux 0xb9d17cbf kernel_recvmsg EXPORT_SYMBOL vmlinux 0xb9d729a6 mipi_dsi_picture_parameter_set EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters EXPORT_SYMBOL vmlinux 0xb9e9cfae rproc_del -EXPORT_SYMBOL vmlinux 0xb9ec7965 phy_device_remove EXPORT_SYMBOL vmlinux 0xb9ed608f serio_unregister_port EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xba01531a scsi_add_device EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat -EXPORT_SYMBOL vmlinux 0xba0b7a96 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xba0cc97b __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba22cbf3 sk_wait_data +EXPORT_SYMBOL vmlinux 0xba2d6029 _dev_warn EXPORT_SYMBOL vmlinux 0xba30faf1 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0xba324bb6 vme_irq_request +EXPORT_SYMBOL vmlinux 0xba3bd9a4 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xba42f3b1 user_path_create EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len EXPORT_SYMBOL vmlinux 0xba632a4d param_set_ullong EXPORT_SYMBOL vmlinux 0xba6999b8 fman_register_intr EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk EXPORT_SYMBOL vmlinux 0xba735dc0 pci_disable_device -EXPORT_SYMBOL vmlinux 0xba86739d tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xba9fb520 pid_task +EXPORT_SYMBOL vmlinux 0xba943c85 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xba9d07a5 has_capability EXPORT_SYMBOL vmlinux 0xbaa9416e of_get_i2c_adapter_by_node EXPORT_SYMBOL vmlinux 0xbabd9cfe tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xbaef6082 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xbaf11e12 of_phy_connect EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb11ab81 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xbb1331e0 mmc_cqe_start_req EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address -EXPORT_SYMBOL vmlinux 0xbb21a51e jbd2_journal_inode_ranged_write EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb273fab netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0xbb30ca21 put_cmsg_scm_timestamping EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb435f44 security_inode_getsecctx EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer EXPORT_SYMBOL vmlinux 0xbb50981f acpi_device_hid -EXPORT_SYMBOL vmlinux 0xbb5fd8d5 keyring_alloc -EXPORT_SYMBOL vmlinux 0xbb62e817 __neigh_event_send -EXPORT_SYMBOL vmlinux 0xbb66e088 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xbb62a9b6 nf_log_set EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool -EXPORT_SYMBOL vmlinux 0xbb894d4a vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xbb73c452 skb_checksum_help EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbba283f7 vme_bus_error_handler EXPORT_SYMBOL vmlinux 0xbbb08b20 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0xbbb13ffc of_find_net_device_by_node EXPORT_SYMBOL vmlinux 0xbbb87adb __d_drop -EXPORT_SYMBOL vmlinux 0xbbb90bb1 xattr_full_name EXPORT_SYMBOL vmlinux 0xbbe65461 __dquot_alloc_space EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbc040fb7 tcf_action_exec -EXPORT_SYMBOL vmlinux 0xbc0ea257 _dev_crit -EXPORT_SYMBOL vmlinux 0xbc18e640 tcf_exts_num_actions EXPORT_SYMBOL vmlinux 0xbc1939f8 validate_slab_cache EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc21a77d devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0xbc37cae4 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xbc81cb39 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xbc3c123a msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0xbc3d947d secpath_set +EXPORT_SYMBOL vmlinux 0xbc748be9 sock_common_setsockopt EXPORT_SYMBOL vmlinux 0xbc82bc31 fman_reset_mac -EXPORT_SYMBOL vmlinux 0xbca3cf33 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xbc9a865d skb_append +EXPORT_SYMBOL vmlinux 0xbc9ba97c skb_trim EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcacdcb7 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xbcacf7ff mmc_start_request EXPORT_SYMBOL vmlinux 0xbcaec319 param_get_byte -EXPORT_SYMBOL vmlinux 0xbced64d9 vme_dma_request +EXPORT_SYMBOL vmlinux 0xbcc99356 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xbccbaaf4 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xbce5fc12 udp6_set_csum EXPORT_SYMBOL vmlinux 0xbcf41562 phy_write_mmd EXPORT_SYMBOL vmlinux 0xbcf61adb blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0xbd1de876 fget +EXPORT_SYMBOL vmlinux 0xbd1ade1c ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xbd219fbf scsi_alloc_sgtables EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd49ac10 try_module_get +EXPORT_SYMBOL vmlinux 0xbd58c7ef scsi_scan_host EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd747e38 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xbd849350 devfreq_update_target EXPORT_SYMBOL vmlinux 0xbd87d7da dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xbd969ea5 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xbd97de04 phy_stop -EXPORT_SYMBOL vmlinux 0xbd9e3807 dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0xbda01c9c dquot_file_open EXPORT_SYMBOL vmlinux 0xbdbd2e13 mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0xbdcae18f inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xbdd07d14 eth_gro_complete -EXPORT_SYMBOL vmlinux 0xbddc7f30 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xbdebbeb1 security_sock_graft -EXPORT_SYMBOL vmlinux 0xbe02cd36 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xbdd5f8fd udp_pre_connect +EXPORT_SYMBOL vmlinux 0xbdeb5b53 compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe17155b __scm_send -EXPORT_SYMBOL vmlinux 0xbe1e4948 napi_gro_frags EXPORT_SYMBOL vmlinux 0xbe2062d8 fscrypt_encrypt_block_inplace EXPORT_SYMBOL vmlinux 0xbe38b143 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0xbe3d73de sock_cmsg_send EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port -EXPORT_SYMBOL vmlinux 0xbe49b6e8 put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0xbe4a4424 end_page_writeback +EXPORT_SYMBOL vmlinux 0xbe4cba21 xfrm4_protocol_register EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state EXPORT_SYMBOL vmlinux 0xbe5d27c8 mipi_dsi_dcs_soft_reset EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit -EXPORT_SYMBOL vmlinux 0xbe6c0c56 block_write_begin EXPORT_SYMBOL vmlinux 0xbe7d206e hash_and_copy_to_iter EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xbe8d7035 sock_no_mmap EXPORT_SYMBOL vmlinux 0xbe9599f9 amba_device_register EXPORT_SYMBOL vmlinux 0xbe9907e7 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xbea543a4 netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0xbeb86445 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0xbebc4abb icmp6_send -EXPORT_SYMBOL vmlinux 0xbec0517d __scsi_add_device -EXPORT_SYMBOL vmlinux 0xbeca61ed phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0xbed4c2a5 tcp_sock_set_keepidle EXPORT_SYMBOL vmlinux 0xbed9335b padata_alloc +EXPORT_SYMBOL vmlinux 0xbedcf97c jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xbee35c7f phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xbef15a41 tcf_classify EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner EXPORT_SYMBOL vmlinux 0xbf01d35f pci_iounmap -EXPORT_SYMBOL vmlinux 0xbf34a9ee udp_disconnect -EXPORT_SYMBOL vmlinux 0xbf3bd0bc inode_io_list_del EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf5bad4c devm_register_netdev EXPORT_SYMBOL vmlinux 0xbf5e6255 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0xbf62e7dc scsi_host_busy EXPORT_SYMBOL vmlinux 0xbf6d4787 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xbf6ede5d jbd2_trans_will_send_data_barrier EXPORT_SYMBOL vmlinux 0xbf726abb rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xbf8c455a register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbf9d0443 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xbfa7e2ec jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0xbfb2fe08 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xbfc15665 blk_get_queue EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block EXPORT_SYMBOL vmlinux 0xbfd47cc4 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0xbfd6b04c blackhole_netdev +EXPORT_SYMBOL vmlinux 0xbfe3c883 page_zero_new_buffers EXPORT_SYMBOL vmlinux 0xbfebba44 alloc_anon_inode EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff0e8a5 __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0xbff13fb0 blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0xbff34025 scsi_is_sdev_device EXPORT_SYMBOL vmlinux 0xc004eabd serio_bus EXPORT_SYMBOL vmlinux 0xc011006f single_open +EXPORT_SYMBOL vmlinux 0xc017a283 unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0xc018f808 __alloc_disk_node EXPORT_SYMBOL vmlinux 0xc01d90ee nd_device_register +EXPORT_SYMBOL vmlinux 0xc02aa1fa genphy_read_lpa EXPORT_SYMBOL vmlinux 0xc02f6f75 kthread_create_on_cpu EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable -EXPORT_SYMBOL vmlinux 0xc04149d1 request_key_rcu -EXPORT_SYMBOL vmlinux 0xc049d51d skb_copy_expand -EXPORT_SYMBOL vmlinux 0xc0537cc1 vme_slave_request +EXPORT_SYMBOL vmlinux 0xc04b3e70 capable_wrt_inode_uidgid EXPORT_SYMBOL vmlinux 0xc05f7415 remove_watch_from_object EXPORT_SYMBOL vmlinux 0xc065a6c8 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xc06cd297 __sock_cmsg_send EXPORT_SYMBOL vmlinux 0xc06ee654 iommu_get_dma_cookie EXPORT_SYMBOL vmlinux 0xc06f785c elv_bio_merge_ok EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc07dbbf5 __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xc080a175 phy_free_interrupt -EXPORT_SYMBOL vmlinux 0xc081f823 fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0xc0874e08 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0xc0a2a71d locks_copy_lock +EXPORT_SYMBOL vmlinux 0xc08b81e0 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xc09d759b __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xc09f6950 wireless_send_event EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL vmlinux 0xc0bb5224 sock_init_data_uid EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0d28549 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0xc0da5d6e pci_reenable_device +EXPORT_SYMBOL vmlinux 0xc0ddbe2d rt_dst_clone EXPORT_SYMBOL vmlinux 0xc0debdc3 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xc0f45a49 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0xc0f5a026 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0xc0f1749a __mark_inode_dirty EXPORT_SYMBOL vmlinux 0xc0f9b329 devm_request_resource EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff1aa5 scsi_host_lookup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc115a75c dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0xc1144fb2 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xc11d416f skb_push +EXPORT_SYMBOL vmlinux 0xc1250f46 sock_bind_add EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable -EXPORT_SYMBOL vmlinux 0xc15f4971 xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc16e1618 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xc1791510 sock_init_data_uid -EXPORT_SYMBOL vmlinux 0xc17ca81c mmc_cqe_request_done EXPORT_SYMBOL vmlinux 0xc1845f74 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xc191db02 vme_bus_num EXPORT_SYMBOL vmlinux 0xc193118d fs_param_is_path -EXPORT_SYMBOL vmlinux 0xc1a93fe1 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xc1ca4634 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xc1a0289d vmf_insert_mixed_prot EXPORT_SYMBOL vmlinux 0xc1cb3174 seq_putc -EXPORT_SYMBOL vmlinux 0xc1cf0ca4 security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0xc1d57fab netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xc1cb667d wake_up_process EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed -EXPORT_SYMBOL vmlinux 0xc1d746eb __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget EXPORT_SYMBOL vmlinux 0xc1db6f79 max8998_bulk_write EXPORT_SYMBOL vmlinux 0xc1dd0ee8 blk_mq_start_hw_queues EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xc1f2da16 eth_header +EXPORT_SYMBOL vmlinux 0xc1fb1a07 key_type_keyring +EXPORT_SYMBOL vmlinux 0xc1fd12b5 dev_uc_add +EXPORT_SYMBOL vmlinux 0xc1ff9ebe skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp EXPORT_SYMBOL vmlinux 0xc2219ed7 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xc22cea98 skb_clone EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl EXPORT_SYMBOL vmlinux 0xc23454cc of_match_device -EXPORT_SYMBOL vmlinux 0xc2401cc5 tcp_peek_len -EXPORT_SYMBOL vmlinux 0xc24544f8 rt_dst_clone -EXPORT_SYMBOL vmlinux 0xc2672dab follow_down_one +EXPORT_SYMBOL vmlinux 0xc243c5ba __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xc2599a1b nobh_write_end EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc27b6d23 alloc_fcdev EXPORT_SYMBOL vmlinux 0xc2887fbc vma_set_file -EXPORT_SYMBOL vmlinux 0xc28f26cd inet_del_offload -EXPORT_SYMBOL vmlinux 0xc291ad0c xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0xc2994709 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xc28bacdc phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc29f9aab ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xc29d2bd3 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xc29d3cf0 jbd2_journal_extend EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc2a42843 __SetPageMovable +EXPORT_SYMBOL vmlinux 0xc2e03c28 dev_get_mac_address EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou +EXPORT_SYMBOL vmlinux 0xc2e17bbe path_is_mountpoint EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2e9c403 jbd2_log_start_commit EXPORT_SYMBOL vmlinux 0xc2ed933a rproc_free EXPORT_SYMBOL vmlinux 0xc2f11eac meson_sm_call_read -EXPORT_SYMBOL vmlinux 0xc2f2b1e2 security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 +EXPORT_SYMBOL vmlinux 0xc2f66c5b __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0xc2f84108 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xc2fe5abf submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xc2fb7aba xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0xc2feaacb dquot_mark_dquot_dirty EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc30ea9f8 cpufreq_generic_suspend EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc316a562 generic_listxattr +EXPORT_SYMBOL vmlinux 0xc318aab6 sk_error_report EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc32992f3 disk_end_io_acct EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc33505df sock_create_kern -EXPORT_SYMBOL vmlinux 0xc33cecf2 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xc3408ed3 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xc32ed649 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xc3417ab8 lock_sock_nested EXPORT_SYMBOL vmlinux 0xc345a9a9 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0xc3556139 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xc35bf300 neigh_changeaddr EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc EXPORT_SYMBOL vmlinux 0xc379bd4d get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xc37a3238 unregister_console EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38ae407 block_write_full_page EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc38d6446 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xc3957b2d i2c_register_driver EXPORT_SYMBOL vmlinux 0xc39b1a59 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0xc3af0f83 dcb_getapp -EXPORT_SYMBOL vmlinux 0xc3b15ac0 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xc3b8f15b inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xc3a93c07 security_path_unlink EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc3cd7ee9 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0xc3dbeccb nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0xc3cdeeef __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xc3f27b78 finish_swait EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc40e16b0 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xc414e6d5 netif_set_real_num_rx_queues EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost EXPORT_SYMBOL vmlinux 0xc438a94a param_get_int -EXPORT_SYMBOL vmlinux 0xc461949f netlink_capable +EXPORT_SYMBOL vmlinux 0xc45b01f2 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xc4625646 nf_reinject EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc496aa76 sk_net_capable +EXPORT_SYMBOL vmlinux 0xc49d0e6a ptp_find_pin EXPORT_SYMBOL vmlinux 0xc49f2b47 param_set_ulong +EXPORT_SYMBOL vmlinux 0xc4afcb52 sk_free EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal EXPORT_SYMBOL vmlinux 0xc4c11fac config_group_init_type_name +EXPORT_SYMBOL vmlinux 0xc4e28889 end_buffer_write_sync EXPORT_SYMBOL vmlinux 0xc4e559b8 dquot_resume EXPORT_SYMBOL vmlinux 0xc504eb49 kobject_add -EXPORT_SYMBOL vmlinux 0xc50eae56 bprm_change_interp -EXPORT_SYMBOL vmlinux 0xc527b60e dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xc50cdedb inet_frag_pull_head EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual +EXPORT_SYMBOL vmlinux 0xc57988d9 mmc_hw_reset EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next -EXPORT_SYMBOL vmlinux 0xc58a386d twl6040_get_vibralr_status EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete EXPORT_SYMBOL vmlinux 0xc5a09988 add_watch_to_object EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xc5b5f592 genphy_write_mmd_unsupported EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5c9e061 inet_addr_type_table EXPORT_SYMBOL vmlinux 0xc5cf205b nd_integrity_init EXPORT_SYMBOL vmlinux 0xc5d63699 tty_flip_buffer_push EXPORT_SYMBOL vmlinux 0xc5d71822 mount_nodev -EXPORT_SYMBOL vmlinux 0xc5de41c0 unregister_netdev -EXPORT_SYMBOL vmlinux 0xc5e3389f dev_add_pack EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last EXPORT_SYMBOL vmlinux 0xc6050f97 kmem_cache_alloc_bulk @@ -10563,191 +10469,161 @@ EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup EXPORT_SYMBOL vmlinux 0xc64ef1f7 freeze_bdev EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc6635403 fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc667443a netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0xc669f9e5 __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add EXPORT_SYMBOL vmlinux 0xc66cb7a5 copy_highpage -EXPORT_SYMBOL vmlinux 0xc6831606 netdev_change_features -EXPORT_SYMBOL vmlinux 0xc68b43dc kernel_write +EXPORT_SYMBOL vmlinux 0xc671ceb8 send_sig_mceerr EXPORT_SYMBOL vmlinux 0xc69a4ce7 proc_create_single_data EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle +EXPORT_SYMBOL vmlinux 0xc6a50666 create_empty_buffers EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cb6839 genl_unregister_family EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6d6ad50 dump_skip_to +EXPORT_SYMBOL vmlinux 0xc6dd69e7 dev_trans_start +EXPORT_SYMBOL vmlinux 0xc6e4d010 __netif_napi_del EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6fffcc4 __mmap_lock_do_trace_released EXPORT_SYMBOL vmlinux 0xc7035af9 rpmh_write_async EXPORT_SYMBOL vmlinux 0xc703c03a devm_clk_put EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port EXPORT_SYMBOL vmlinux 0xc721e2a1 param_get_bool -EXPORT_SYMBOL vmlinux 0xc722600e path_get -EXPORT_SYMBOL vmlinux 0xc73001ac tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xc747ec4a __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0xc76ec612 of_device_alloc -EXPORT_SYMBOL vmlinux 0xc775cfd0 dev_trans_start EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc78e09cd ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xc78a0bfb vfs_create EXPORT_SYMBOL vmlinux 0xc7975a7f pci_request_region +EXPORT_SYMBOL vmlinux 0xc79b789c inet6_getname +EXPORT_SYMBOL vmlinux 0xc79c3c2e security_path_rename +EXPORT_SYMBOL vmlinux 0xc7a43787 security_inode_init_security EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock EXPORT_SYMBOL vmlinux 0xc7adc5f8 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xc7b1ccae wait_for_key_construction EXPORT_SYMBOL vmlinux 0xc7b28bde simple_open -EXPORT_SYMBOL vmlinux 0xc7b838ea of_phy_find_device EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe EXPORT_SYMBOL vmlinux 0xc7ce9bc3 unlock_new_inode EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7d9e1a7 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xc7fbef9a netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xc801e59d genphy_loopback +EXPORT_SYMBOL vmlinux 0xc7e3f23f phy_get_eee_err EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc81a377e poll_initwait -EXPORT_SYMBOL vmlinux 0xc81d619e dev_get_by_name EXPORT_SYMBOL vmlinux 0xc8244dc7 of_device_is_available EXPORT_SYMBOL vmlinux 0xc82da0a6 inode_insert5 -EXPORT_SYMBOL vmlinux 0xc8365a6e locks_delete_block EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 EXPORT_SYMBOL vmlinux 0xc83b076b rproc_get_by_child +EXPORT_SYMBOL vmlinux 0xc83ee223 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xc84397b3 close_fd_get_file EXPORT_SYMBOL vmlinux 0xc8483af8 kset_unregister EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc85d6f8a inet_frag_kill -EXPORT_SYMBOL vmlinux 0xc85ec7da skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals EXPORT_SYMBOL vmlinux 0xc88393ae md_bitmap_update_sb EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read -EXPORT_SYMBOL vmlinux 0xc8a62d80 pagecache_get_page EXPORT_SYMBOL vmlinux 0xc8a6d9c9 unpin_user_pages EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8aad015 neigh_seq_next -EXPORT_SYMBOL vmlinux 0xc8bdcd3e netif_rx_any_context -EXPORT_SYMBOL vmlinux 0xc8cce91c fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0xc8d2c706 udplite_prot +EXPORT_SYMBOL vmlinux 0xc8c79fa4 scsi_done EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8e45316 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xc8e098a7 unlock_page EXPORT_SYMBOL vmlinux 0xc8ee99b1 always_delete_dentry -EXPORT_SYMBOL vmlinux 0xc907c956 follow_down EXPORT_SYMBOL vmlinux 0xc916ab3e max8925_reg_read EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc91dd135 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xc924c64a __dev_kfree_skb_irq EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc939b7a9 arp_xmit EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources EXPORT_SYMBOL vmlinux 0xc94d03f0 of_get_property -EXPORT_SYMBOL vmlinux 0xc9527621 skb_store_bits -EXPORT_SYMBOL vmlinux 0xc959d5e9 km_policy_expired +EXPORT_SYMBOL vmlinux 0xc9550d2f netpoll_poll_disable EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9656b15 __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc983e853 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0xc9879bf0 skb_unlink -EXPORT_SYMBOL vmlinux 0xc98cf6de scsi_host_put EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9a23249 generic_ro_fops -EXPORT_SYMBOL vmlinux 0xc9b7dd93 netdev_update_features -EXPORT_SYMBOL vmlinux 0xc9bba802 udp_lib_get_port EXPORT_SYMBOL vmlinux 0xc9bf2375 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xc9c8093f kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xc9c598dc skb_checksum_setup EXPORT_SYMBOL vmlinux 0xc9d1340c pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xc9dbb48e done_path_create EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned EXPORT_SYMBOL vmlinux 0xca03ebc7 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xca05255d jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0xca090838 vfs_parse_fs_param_source EXPORT_SYMBOL vmlinux 0xca0b9ecf devm_ioport_map +EXPORT_SYMBOL vmlinux 0xca14b3c8 inet_recvmsg EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xca184f91 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xca18775a xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca33f808 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0xca39fcee nf_log_unset EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca5a2b6a netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xca4d6bcc vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xca564485 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xca574882 alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0xca5acd18 __blockdev_direct_IO EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp +EXPORT_SYMBOL vmlinux 0xca675ea4 rtnl_link_get_net EXPORT_SYMBOL vmlinux 0xca69fa79 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xca79948b mntget -EXPORT_SYMBOL vmlinux 0xca839cb1 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0xca869c16 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xca875b43 netdev_features_change EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next EXPORT_SYMBOL vmlinux 0xca9422b8 iunique -EXPORT_SYMBOL vmlinux 0xca99080c twl6040_reg_write EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xcab1ca02 done_path_create EXPORT_SYMBOL vmlinux 0xcaced69a setattr_should_drop_suidgid EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcad76e07 inet_ioctl -EXPORT_SYMBOL vmlinux 0xcaee34b9 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xcad32312 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xcadcd2a2 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xcadfa6f2 scsi_print_command EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaf3b9b5 tso_build_data -EXPORT_SYMBOL vmlinux 0xcaf3dcf9 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xcb001451 skb_copy_bits EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb03fca4 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xcb14d97f skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0xcb271e7a dm_table_run_md_queue_async EXPORT_SYMBOL vmlinux 0xcb2926e5 input_reset_device EXPORT_SYMBOL vmlinux 0xcb313cff d_instantiate -EXPORT_SYMBOL vmlinux 0xcb3804ff jbd2_journal_get_write_access EXPORT_SYMBOL vmlinux 0xcb3a6ca5 of_get_next_parent EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb5e8592 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xcb424706 __breadahead +EXPORT_SYMBOL vmlinux 0xcb42fd3d nf_log_unregister EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power EXPORT_SYMBOL vmlinux 0xcb7f4680 simple_write_begin -EXPORT_SYMBOL vmlinux 0xcb92175f sock_gettstamp EXPORT_SYMBOL vmlinux 0xcbae9d32 cdev_add EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame EXPORT_SYMBOL vmlinux 0xcbc9f4d3 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0xcbd1cb5e netdev_upper_get_next_dev_rcu EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbeea30e prepare_to_swait_event EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev EXPORT_SYMBOL vmlinux 0xcc0cadd8 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0xcc118b3f nf_log_packet EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul EXPORT_SYMBOL vmlinux 0xcc1c1b41 vga_set_legacy_decoding EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc3ac84e dev_vprintk_emit EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc4cddbb __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xcc4e7d44 scsi_device_put EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc55b5a2 xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc5e7555 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xcc5fcc82 sock_no_accept -EXPORT_SYMBOL vmlinux 0xcc7c76d6 phy_trigger_machine -EXPORT_SYMBOL vmlinux 0xcc8e1a34 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xcc90d94b xfrm_init_state +EXPORT_SYMBOL vmlinux 0xcc607f90 napi_build_skb +EXPORT_SYMBOL vmlinux 0xcc9a67bd devfreq_add_device EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xccab6295 sock_no_linger -EXPORT_SYMBOL vmlinux 0xccc71139 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xccc8ba83 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xcca5e5f0 flush_signals +EXPORT_SYMBOL vmlinux 0xccb91751 lease_modify +EXPORT_SYMBOL vmlinux 0xcccd2a94 block_page_mkwrite EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccd90db9 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xccedff25 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize EXPORT_SYMBOL vmlinux 0xccf9aa45 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xccfa2157 nf_register_net_hook EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xccffd323 security_sb_remount EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xcd076f2a skb_copy_bits EXPORT_SYMBOL vmlinux 0xcd10b5da alloc_mdio_bitbang -EXPORT_SYMBOL vmlinux 0xcd12dd6f skb_checksum +EXPORT_SYMBOL vmlinux 0xcd232ae1 mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2aaa95 phy_print_status +EXPORT_SYMBOL vmlinux 0xcd37ada9 nf_ip6_checksum EXPORT_SYMBOL vmlinux 0xcd3adffa dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xcd66e1d8 skb_dump EXPORT_SYMBOL vmlinux 0xcd704d5e of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0xcd7cdcf8 netpoll_poll_enable EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd960f96 tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0xcda332ee __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xcda71f3a nobh_writepage -EXPORT_SYMBOL vmlinux 0xcdabeae9 i2c_smbus_write_block_data EXPORT_SYMBOL vmlinux 0xcdb01f65 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xcdc284a8 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xcdc326d9 dev_disable_lro EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel EXPORT_SYMBOL vmlinux 0xcddf27c6 seq_bprintf EXPORT_SYMBOL vmlinux 0xcde3416f pci_ep_cfs_remove_epc_group @@ -10755,331 +10631,334 @@ EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev EXPORT_SYMBOL vmlinux 0xce036f24 sg_split EXPORT_SYMBOL vmlinux 0xce092d96 I_BDEV EXPORT_SYMBOL vmlinux 0xce098476 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xce0bc4ec scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0xce153529 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0xce0ab243 dump_align +EXPORT_SYMBOL vmlinux 0xce0f9eec neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xce117d97 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xce22d803 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xce23e810 phy_attached_info_irq EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce298cdb xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0xce2d1f57 param_ops_bint -EXPORT_SYMBOL vmlinux 0xce425bf8 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0xce461c15 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xce2f8f4a skb_realloc_headroom EXPORT_SYMBOL vmlinux 0xce4a33ef key_invalidate EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r EXPORT_SYMBOL vmlinux 0xce5118f7 md_write_start EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize EXPORT_SYMBOL vmlinux 0xce669559 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0xce715404 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xce6a375d inet_stream_connect +EXPORT_SYMBOL vmlinux 0xce6b5071 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xce6fc19e security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0xce71c9d8 lookup_one_positive_unlocked EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0xce736399 account_page_redirty EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce909e31 add_to_pipe EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcecac862 ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0xcecdbf15 pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xced00b02 nf_register_sockopt EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xced2e635 sock_rfree -EXPORT_SYMBOL vmlinux 0xcedee944 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xcee8cd87 skb_pull -EXPORT_SYMBOL vmlinux 0xcef2a936 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xced938b2 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xcee45b92 __ip_mc_dec_group EXPORT_SYMBOL vmlinux 0xcef7c342 md_flush_request EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf104b9d qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xcf17d1d3 __scm_send +EXPORT_SYMBOL vmlinux 0xcf215d20 sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0xcf28ed5e blk_queue_segment_boundary EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf2dfc84 mfd_add_devices EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock EXPORT_SYMBOL vmlinux 0xcf56dfdd max8925_bulk_write -EXPORT_SYMBOL vmlinux 0xcf598d58 __ip_select_ident -EXPORT_SYMBOL vmlinux 0xcf660a0f netdev_class_remove_file_ns EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xcfb20e9e __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0xcfc5afb7 lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0xcfcc3a67 pci_fixup_cardbus EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance EXPORT_SYMBOL vmlinux 0xcff33e00 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xd00c7606 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xd00ea477 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xd01336d9 reuseport_alloc +EXPORT_SYMBOL vmlinux 0xd01ebb90 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xd02ee8b1 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xd030a268 bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0xd0338fbc simple_unlink +EXPORT_SYMBOL vmlinux 0xd048f6ae genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xd04a2fdd ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd0519fa4 unlock_rename -EXPORT_SYMBOL vmlinux 0xd05c39e7 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xd05fc5ae device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0xd064991c __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xd059aa3e ip_local_deliver EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd06b17b2 devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd07bb4bb sock_set_mark +EXPORT_SYMBOL vmlinux 0xd087c967 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xd08832ad vme_slot_num EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump EXPORT_SYMBOL vmlinux 0xd0ab4c83 vmap -EXPORT_SYMBOL vmlinux 0xd0ad5150 phy_get_c45_ids EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock -EXPORT_SYMBOL vmlinux 0xd0b67976 phy_attached_print +EXPORT_SYMBOL vmlinux 0xd0b69ff3 devfreq_suspend_device EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface EXPORT_SYMBOL vmlinux 0xd0c0cb17 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xd0d65b3f eth_gro_receive -EXPORT_SYMBOL vmlinux 0xd0df8655 sock_setsockopt -EXPORT_SYMBOL vmlinux 0xd0f3efcd xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0xd0e6b70e xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xd0eb2724 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xd0fe61fd generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer EXPORT_SYMBOL vmlinux 0xd101eb92 device_add_disk +EXPORT_SYMBOL vmlinux 0xd12625d1 _dev_notice EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize EXPORT_SYMBOL vmlinux 0xd1395de8 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0xd163c72c ppp_input +EXPORT_SYMBOL vmlinux 0xd161f290 inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0xd16830b5 dquot_get_state -EXPORT_SYMBOL vmlinux 0xd16e1edf vfs_copy_file_range EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd18fbd32 security_sb_remount +EXPORT_SYMBOL vmlinux 0xd18eeda1 __genphy_config_aneg EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd1964d2a dev_queue_xmit_accel EXPORT_SYMBOL vmlinux 0xd19f26ce pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0xd1a4ab8e flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0xd1bd1ecd key_move -EXPORT_SYMBOL vmlinux 0xd1cefa75 dev_mc_del EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1daf45f inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0xd1ea5594 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xd1eae6e6 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xd1dbaee0 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xd1e0a73a i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0xd1e52e6f netlink_net_capable +EXPORT_SYMBOL vmlinux 0xd1eb29c3 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xd1ff2e27 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xd202ee60 inet6_add_offload EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down EXPORT_SYMBOL vmlinux 0xd20f8779 of_root +EXPORT_SYMBOL vmlinux 0xd219fef0 put_devmap_managed_page EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd2260981 open_with_fake_path EXPORT_SYMBOL vmlinux 0xd2571564 find_inode_nowait 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 0xd2690718 __kfree_skb EXPORT_SYMBOL vmlinux 0xd27637ab pci_dev_get EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd27d6f76 tcf_block_put EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd2abcb7d tcf_block_put_ext EXPORT_SYMBOL vmlinux 0xd2ace417 register_md_personality -EXPORT_SYMBOL vmlinux 0xd2b73f1b fib_default_rule_add EXPORT_SYMBOL vmlinux 0xd2b8093f generic_read_dir -EXPORT_SYMBOL vmlinux 0xd2bcbed8 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0xd2bf96c5 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xd2c12b2b submit_bio EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xd2d7b93f scsi_host_get EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep EXPORT_SYMBOL vmlinux 0xd2f6252a md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0xd309aeb0 tcp_mtup_init EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd31d47f5 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xd337d877 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xd32f57ad complete_request_key EXPORT_SYMBOL vmlinux 0xd342175e insert_inode_locked +EXPORT_SYMBOL vmlinux 0xd34afdd5 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xd34b5adb inet_dev_addr_type EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset -EXPORT_SYMBOL vmlinux 0xd358b4c5 eth_header_parse EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd3658229 inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd36f3014 __mdiobus_read EXPORT_SYMBOL vmlinux 0xd375d3c0 devm_backlight_device_unregister EXPORT_SYMBOL vmlinux 0xd389fbfc generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xd391c25b __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xd3bc658c tcf_exts_dump -EXPORT_SYMBOL vmlinux 0xd3c4bda6 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xd3e2e156 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xd3e38d54 dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear EXPORT_SYMBOL vmlinux 0xd3ed99e1 max8998_update_reg EXPORT_SYMBOL vmlinux 0xd3f31c25 cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0xd3fba534 qcom_scm_set_cold_boot_addr EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal EXPORT_SYMBOL vmlinux 0xd407eb1c pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xd4129912 mii_check_link +EXPORT_SYMBOL vmlinux 0xd414484f __pskb_pull_tail EXPORT_SYMBOL vmlinux 0xd4267d47 pci_find_capability -EXPORT_SYMBOL vmlinux 0xd428a8d3 dev_uc_add +EXPORT_SYMBOL vmlinux 0xd42c758f genphy_resume EXPORT_SYMBOL vmlinux 0xd4339de8 qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0xd441d0f6 napi_gro_frags EXPORT_SYMBOL vmlinux 0xd443e5e6 __nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex EXPORT_SYMBOL vmlinux 0xd472405b d_alloc EXPORT_SYMBOL vmlinux 0xd4735017 copy_page_from_iter EXPORT_SYMBOL vmlinux 0xd47fa97e bio_free_pages EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd494e62c ip_getsockopt -EXPORT_SYMBOL vmlinux 0xd4a4971f generic_permission EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam EXPORT_SYMBOL vmlinux 0xd4b6aa4a do_SAK EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4cf83bc skb_recv_datagram EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4d6cdc6 iw_handler_set_spy EXPORT_SYMBOL vmlinux 0xd4e4fbf6 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0xd4f4d92c tcp_select_initial_window EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare EXPORT_SYMBOL vmlinux 0xd502af2d __blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd532022b netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd5353325 flow_rule_match_ct EXPORT_SYMBOL vmlinux 0xd5416955 noop_fsync EXPORT_SYMBOL vmlinux 0xd547e880 dquot_drop EXPORT_SYMBOL vmlinux 0xd54b6166 mdio_device_remove -EXPORT_SYMBOL vmlinux 0xd55be8b3 phy_config_aneg +EXPORT_SYMBOL vmlinux 0xd5569ff3 __inode_add_bytes EXPORT_SYMBOL vmlinux 0xd55f08b7 dqget +EXPORT_SYMBOL vmlinux 0xd5618c9e memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0xd563bca3 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xd57c4be4 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0xd582396b devfreq_add_device -EXPORT_SYMBOL vmlinux 0xd58d92a6 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xd57a723b __vfs_setxattr EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise EXPORT_SYMBOL vmlinux 0xd595bf9b bd_abort_claiming -EXPORT_SYMBOL vmlinux 0xd5a99163 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xd5a2803b dev_addr_add EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5b584c3 phy_init_eee -EXPORT_SYMBOL vmlinux 0xd5b9326f udp_seq_ops -EXPORT_SYMBOL vmlinux 0xd5bea3a4 __netif_napi_del -EXPORT_SYMBOL vmlinux 0xd5dec264 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xd5c4547d xsk_set_tx_need_wakeup EXPORT_SYMBOL vmlinux 0xd5ea43d0 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0xd5fb95ac end_buffer_read_sync EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k EXPORT_SYMBOL vmlinux 0xd60c573d of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xd619474c qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xd611b202 udp_seq_start EXPORT_SYMBOL vmlinux 0xd61cd37a mipi_dsi_dcs_set_pixel_format EXPORT_SYMBOL vmlinux 0xd6202676 tegra_dfll_suspend -EXPORT_SYMBOL vmlinux 0xd6255f18 neigh_connected_output EXPORT_SYMBOL vmlinux 0xd626b75a mdio_device_create EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table EXPORT_SYMBOL vmlinux 0xd636c6da tty_check_change +EXPORT_SYMBOL vmlinux 0xd638c653 filemap_flush EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd64f2383 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xd653e230 dev_get_flags EXPORT_SYMBOL vmlinux 0xd6691db9 max8998_write_reg -EXPORT_SYMBOL vmlinux 0xd66b559a tcf_unregister_action EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd6a25a4b netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0xd6a91bdb pci_set_power_state EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6b6744a netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0xd6cd5779 md_cluster_ops -EXPORT_SYMBOL vmlinux 0xd6e16b5d tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f56277 tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0xd6fd0a06 vfs_getattr_nosec 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 0xd72b6a6c request_key_tag EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc +EXPORT_SYMBOL vmlinux 0xd7563a80 dev_addr_init EXPORT_SYMBOL vmlinux 0xd7587f38 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xd77edaf0 phy_get_pause -EXPORT_SYMBOL vmlinux 0xd7a3e145 may_umount_tree +EXPORT_SYMBOL vmlinux 0xd763f725 phy_init_eee +EXPORT_SYMBOL vmlinux 0xd7658990 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xd784a3f2 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xd786a65a f_setown +EXPORT_SYMBOL vmlinux 0xd7b1de36 phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0xd7b991fa pnp_start_dev -EXPORT_SYMBOL vmlinux 0xd7d01cd3 phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e6d245 devfreq_remove_governor EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f2003a phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xd7f78056 tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 +EXPORT_SYMBOL vmlinux 0xd80a8599 generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range -EXPORT_SYMBOL vmlinux 0xd8145add mmc_can_erase -EXPORT_SYMBOL vmlinux 0xd824f8f1 napi_complete_done +EXPORT_SYMBOL vmlinux 0xd828603c scsi_print_result EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write -EXPORT_SYMBOL vmlinux 0xd87a63a6 phy_attached_info +EXPORT_SYMBOL vmlinux 0xd82af6d6 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xd851c312 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xd8627d88 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xd86a6ee8 udp_seq_ops EXPORT_SYMBOL vmlinux 0xd88660ea rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0xd8994c56 skb_recv_datagram EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8cefa0d fget_raw EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8f77647 skb_clone_sk EXPORT_SYMBOL vmlinux 0xd90833ec config_item_put +EXPORT_SYMBOL vmlinux 0xd91561e7 mnt_set_expiry EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd9206538 close_fd_get_file -EXPORT_SYMBOL vmlinux 0xd9259325 __traceiter_spi_transfer_stop EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd933da4a sdev_disable_disk_events EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd96991a2 nonseekable_open EXPORT_SYMBOL vmlinux 0xd96f63c8 devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0xd9731f3b gro_cells_init +EXPORT_SYMBOL vmlinux 0xd96f6bdf sock_kzfree_s EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9994dff eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0xd999f684 brioctl_set +EXPORT_SYMBOL vmlinux 0xd986071a tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xd98c4a0d of_platform_device_create +EXPORT_SYMBOL vmlinux 0xd9a0c30d read_cache_page_gfp EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled EXPORT_SYMBOL vmlinux 0xd9bc949a dec_node_page_state +EXPORT_SYMBOL vmlinux 0xd9c90bae sock_no_socketpair EXPORT_SYMBOL vmlinux 0xd9d85f5a elv_rb_add EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox EXPORT_SYMBOL vmlinux 0xd9e55159 input_grab_device +EXPORT_SYMBOL vmlinux 0xd9e7d530 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xd9f0ab93 dev_set_mac_address EXPORT_SYMBOL vmlinux 0xd9f9683d simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xda09de57 inet_csk_accept -EXPORT_SYMBOL vmlinux 0xda0f4552 phy_detach +EXPORT_SYMBOL vmlinux 0xd9fc7e21 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xda07e8da dst_alloc EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id -EXPORT_SYMBOL vmlinux 0xda1f96e6 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xda293c37 register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0xda31e009 pci_ep_cfs_remove_epf_group EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda4c901f phy_start +EXPORT_SYMBOL vmlinux 0xda4d7b0b vlan_vids_del_by_dev EXPORT_SYMBOL vmlinux 0xda5cf3b1 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xda64cc6b __get_hash_from_flowi6 EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda77ad27 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0xda7c2ac0 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xda7f5b85 vme_bus_type -EXPORT_SYMBOL vmlinux 0xda856f5f gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xda7588ba clear_page_dirty_for_io EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve EXPORT_SYMBOL vmlinux 0xda941900 seq_puts -EXPORT_SYMBOL vmlinux 0xdac0c418 peernet2id EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region EXPORT_SYMBOL vmlinux 0xdac65032 clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0xdac74b41 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xdad8231d __SetPageMovable +EXPORT_SYMBOL vmlinux 0xdae96357 dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0xdaead393 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xdafc9f76 sync_mapping_buffers EXPORT_SYMBOL vmlinux 0xdb082657 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xdb40211e alloc_fddidev -EXPORT_SYMBOL vmlinux 0xdb548b11 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xdb56d796 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xdb191e04 vfs_fsync EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb76e821 inet_addr_type +EXPORT_SYMBOL vmlinux 0xdb8d4d0e posix_lock_file +EXPORT_SYMBOL vmlinux 0xdb924129 scsi_host_busy +EXPORT_SYMBOL vmlinux 0xdb99add8 __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0xdb9f93c9 input_inject_event -EXPORT_SYMBOL vmlinux 0xdbb69c57 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xdbbb2642 __put_page -EXPORT_SYMBOL vmlinux 0xdbc74500 inet6_offloads +EXPORT_SYMBOL vmlinux 0xdbb50697 genphy_suspend +EXPORT_SYMBOL vmlinux 0xdbbf0283 skb_unlink EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler EXPORT_SYMBOL vmlinux 0xdbda9b37 from_kprojid_munged EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource EXPORT_SYMBOL vmlinux 0xdbed350f jbd2_wait_inode_data EXPORT_SYMBOL vmlinux 0xdbf0071a fb_get_mode -EXPORT_SYMBOL vmlinux 0xdbf112a9 free_buffer_head +EXPORT_SYMBOL vmlinux 0xdbf2796c unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xdc08d11d inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems EXPORT_SYMBOL vmlinux 0xdc1589a4 pci_write_config_dword EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init -EXPORT_SYMBOL vmlinux 0xdc385cb5 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xdc3dd72f xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xdc37121a vm_map_pages_zero EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc4b5a69 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xdc4c995b mii_check_media +EXPORT_SYMBOL vmlinux 0xdc4ccdfb tcp_mmap EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier EXPORT_SYMBOL vmlinux 0xdc5c4d7e param_ops_byte -EXPORT_SYMBOL vmlinux 0xdc614598 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xdc69fbe8 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xdc6c1e55 jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0xdc7d5ad3 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0xdc8d2c98 km_policy_notify -EXPORT_SYMBOL vmlinux 0xdc928c52 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xdc892760 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xdc8d7830 kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0xdca5b44f padata_free +EXPORT_SYMBOL vmlinux 0xdca7e1aa kmem_cache_create_usercopy EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb EXPORT_SYMBOL vmlinux 0xdcab035f param_ops_ulong -EXPORT_SYMBOL vmlinux 0xdcaf097d pipe_lock +EXPORT_SYMBOL vmlinux 0xdcacefde fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xdcb21fef tcf_get_next_chain EXPORT_SYMBOL vmlinux 0xdcb764ad memset EXPORT_SYMBOL vmlinux 0xdcbf167d of_find_node_by_type -EXPORT_SYMBOL vmlinux 0xdccab6d9 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0xdcd97b36 __break_lease +EXPORT_SYMBOL vmlinux 0xdcc71ba3 xfrm_state_lookup_byaddr EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdcf020b2 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0xdcf25765 starget_for_each_device EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd133ee7 vfs_llseek EXPORT_SYMBOL vmlinux 0xdd1746d5 pm860x_page_reg_write EXPORT_SYMBOL vmlinux 0xdd17cd73 fault_in_iov_iter_writeable EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm EXPORT_SYMBOL vmlinux 0xdd277f69 start_tty -EXPORT_SYMBOL vmlinux 0xdd2b307f mii_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd2e7fbe generic_copy_file_range EXPORT_SYMBOL vmlinux 0xdd385746 nd_btt_probe -EXPORT_SYMBOL vmlinux 0xdd46b454 ethtool_notify +EXPORT_SYMBOL vmlinux 0xdd487e84 tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0xdd5bd736 input_close_device -EXPORT_SYMBOL vmlinux 0xdd5ec576 vfs_iter_read EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd8ca22b locks_free_lock EXPORT_SYMBOL vmlinux 0xdda58236 __alloc_pages EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat @@ -11087,51 +10966,51 @@ EXPORT_SYMBOL vmlinux 0xddc0a3f9 bmap EXPORT_SYMBOL vmlinux 0xddc11bfb inc_zone_page_state EXPORT_SYMBOL vmlinux 0xddc1e9e0 pci_release_region EXPORT_SYMBOL vmlinux 0xddc40581 bio_clone_fast -EXPORT_SYMBOL vmlinux 0xdddbb95b mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xdddc7ede phy_device_create EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done -EXPORT_SYMBOL vmlinux 0xde0b357e netdev_pick_tx -EXPORT_SYMBOL vmlinux 0xde217927 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xde164f7a skb_dequeue_tail EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde37ccfd mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0xde572353 __module_get EXPORT_SYMBOL vmlinux 0xde5c6177 acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0xde9e8b08 mmc_release_host -EXPORT_SYMBOL vmlinux 0xdeb2a3ce ipv6_dev_find +EXPORT_SYMBOL vmlinux 0xde720611 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xde7b66dd sock_kmalloc +EXPORT_SYMBOL vmlinux 0xde88b871 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xde9cb7a5 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xdeac6edc ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0xdebb401b submit_bio_wait -EXPORT_SYMBOL vmlinux 0xdec26d75 dev_mc_add_global EXPORT_SYMBOL vmlinux 0xdecdada2 mipi_dsi_driver_register_full EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdee06208 set_bh_page -EXPORT_SYMBOL vmlinux 0xdef13aff mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xded62811 netif_device_attach +EXPORT_SYMBOL vmlinux 0xded873df rawv6_mh_filter_register EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdef7db29 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xdef87977 tcp_child_process EXPORT_SYMBOL vmlinux 0xdf094883 tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0xdf16f90c unix_get_socket EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf30ca5b fwnode_irq_get EXPORT_SYMBOL vmlinux 0xdf362955 tty_unregister_driver EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf4df73e wait_on_page_private_2_killable -EXPORT_SYMBOL vmlinux 0xdf52d74d kmem_cache_shrink EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf56e0d9 __pskb_copy_fclone EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xdf8ad5da vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xdf7f109d tcp_disconnect EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf9e41c0 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0xdfa14f4b flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xdf9cbb19 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xdfb3c11e __scsi_device_lookup EXPORT_SYMBOL vmlinux 0xdfbcfafe tty_port_hangup EXPORT_SYMBOL vmlinux 0xdfc155f8 __frontswap_load -EXPORT_SYMBOL vmlinux 0xdfc62263 inet_sendpage -EXPORT_SYMBOL vmlinux 0xdfcbc826 tcp_connect EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfd8c7a0 mmc_retune_unpause EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi EXPORT_SYMBOL vmlinux 0xdfe660e1 input_set_capability EXPORT_SYMBOL vmlinux 0xdfe7823b __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xdfe799e4 vfs_getattr +EXPORT_SYMBOL vmlinux 0xdff42af3 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xdff58ce3 security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe0054706 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xe00becd0 try_lookup_one_len EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops @@ -11139,284 +11018,284 @@ EXPORT_SYMBOL vmlinux 0xe03d337c config_group_find_item EXPORT_SYMBOL vmlinux 0xe03ef532 pci_irq_get_affinity EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 EXPORT_SYMBOL vmlinux 0xe04804cf key_task_permission -EXPORT_SYMBOL vmlinux 0xe04b549d send_sig_info -EXPORT_SYMBOL vmlinux 0xe04b7e7a eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0xe060aeb4 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xe0547c62 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xe05b6991 inet_listen +EXPORT_SYMBOL vmlinux 0xe060f2b2 sock_set_mark EXPORT_SYMBOL vmlinux 0xe065c1c1 pci_set_master -EXPORT_SYMBOL vmlinux 0xe06e0b38 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xe0782398 sock_set_keepalive 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 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0a7755a pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xe0af7560 generic_listxattr EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b48f01 xp_raw_get_dma EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco EXPORT_SYMBOL vmlinux 0xe0e2a898 __blk_mq_end_request EXPORT_SYMBOL vmlinux 0xe0e8d621 bioset_init_from_src -EXPORT_SYMBOL vmlinux 0xe105ab02 fman_set_mac_active_pause +EXPORT_SYMBOL vmlinux 0xe0f7b2b7 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xe1127955 phy_connect EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe1174729 dev_alloc_name 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 0xe138fb8c percpu_counter_add_batch EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe14a833d skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0xe16b726f devfreq_update_status -EXPORT_SYMBOL vmlinux 0xe16c060c ip_setsockopt +EXPORT_SYMBOL vmlinux 0xe14103f6 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xe142fa0d ip_check_defrag +EXPORT_SYMBOL vmlinux 0xe15f6028 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xe16067fd writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xe1691998 kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0xe18585ea d_obtain_alias -EXPORT_SYMBOL vmlinux 0xe1881c33 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xe1a6b694 tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0xe1a75823 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xe1cc7a46 consume_skb +EXPORT_SYMBOL vmlinux 0xe198d392 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xe1b8fc1c ethtool_notify +EXPORT_SYMBOL vmlinux 0xe1ca8b53 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0xe1db5788 netif_tx_wake_queue EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1e10dd5 reuseport_has_conns_set EXPORT_SYMBOL vmlinux 0xe1eab1d1 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xe21c48c7 vme_init_bridge EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe2407cf4 scsi_add_device -EXPORT_SYMBOL vmlinux 0xe247e036 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0xe25212dc flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0xe258ad25 ip6_frag_next -EXPORT_SYMBOL vmlinux 0xe25c7f27 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xe24a7898 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0xe255c877 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xe2660f82 tcf_register_action EXPORT_SYMBOL vmlinux 0xe271128b cpumask_any_distribute EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe284f6e7 poll_initwait EXPORT_SYMBOL vmlinux 0xe286a918 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xe289568b xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0xe2a6471f ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xe2ac32a0 path_is_under +EXPORT_SYMBOL vmlinux 0xe2ab0f95 nf_log_bind_pf EXPORT_SYMBOL vmlinux 0xe2b1749d pci_release_selected_regions EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe3126939 ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0xe3286b5d dev_remove_offload +EXPORT_SYMBOL vmlinux 0xe2de1940 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xe305c7c2 xfrm_state_lookup EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe3344dcb dev_change_flags -EXPORT_SYMBOL vmlinux 0xe342232c nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xe356a7d6 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xe35f15a4 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xe35a7890 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xe361964b netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0xe36f7d19 phy_read_paged -EXPORT_SYMBOL vmlinux 0xe3786885 __scsi_execute +EXPORT_SYMBOL vmlinux 0xe376547b d_path +EXPORT_SYMBOL vmlinux 0xe37ab9c4 jbd2_journal_init_inode EXPORT_SYMBOL vmlinux 0xe37be9a7 qman_get_qm_portal_config -EXPORT_SYMBOL vmlinux 0xe381d7ec udp_seq_stop EXPORT_SYMBOL vmlinux 0xe3899248 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xe389aad5 __netlink_kernel_create EXPORT_SYMBOL vmlinux 0xe38ad9e0 d_add -EXPORT_SYMBOL vmlinux 0xe399e437 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xe38dbdad setup_new_exec EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3b35ccb udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xe3c9a946 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xe3b05165 load_nls EXPORT_SYMBOL vmlinux 0xe3cac6ef param_set_bool +EXPORT_SYMBOL vmlinux 0xe3cfa06d scsi_eh_restore_cmnd EXPORT_SYMBOL vmlinux 0xe3d53f3c setattr_copy +EXPORT_SYMBOL vmlinux 0xe3dae3e5 iw_handler_get_spy EXPORT_SYMBOL vmlinux 0xe3e56afc nvdimm_bus_lock EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock +EXPORT_SYMBOL vmlinux 0xe418aa03 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0xe420d91a unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xe423c0bd filemap_flush +EXPORT_SYMBOL vmlinux 0xe43106c9 sock_alloc_send_skb EXPORT_SYMBOL vmlinux 0xe431fe70 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xe43fe2cc remap_pfn_range -EXPORT_SYMBOL vmlinux 0xe443605a dev_close -EXPORT_SYMBOL vmlinux 0xe46bb5e8 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xe43be419 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xe45285c2 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xe458bcf3 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xe45e5dd4 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xe46015e4 nosteal_pipe_buf_ops EXPORT_SYMBOL vmlinux 0xe490a65a mark_info_dirty EXPORT_SYMBOL vmlinux 0xe49405a6 __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xe49ace4a mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0xe4a6b752 i2c_verify_client -EXPORT_SYMBOL vmlinux 0xe4b035c9 tcp_req_err EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset +EXPORT_SYMBOL vmlinux 0xe4bbd181 sock_common_recvmsg EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4ca3b88 filp_open -EXPORT_SYMBOL vmlinux 0xe4cb162d netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0xe4d84d48 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xe4c6661a vme_dma_request +EXPORT_SYMBOL vmlinux 0xe4d2de1c udp_gro_receive EXPORT_SYMBOL vmlinux 0xe4da6d1c mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xe4db5f2a qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0xe4dd0326 reuseport_alloc -EXPORT_SYMBOL vmlinux 0xe4fb520e xp_dma_unmap -EXPORT_SYMBOL vmlinux 0xe50c9183 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xe4e4785f sock_recvmsg +EXPORT_SYMBOL vmlinux 0xe4f91950 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xe50a7f16 xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0xe522c81f md_set_array_sectors EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq EXPORT_SYMBOL vmlinux 0xe52923d0 kill_litter_super -EXPORT_SYMBOL vmlinux 0xe52c33f3 vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0xe5368fc1 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe55803e4 fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0xe55ed3f8 vga_client_register +EXPORT_SYMBOL vmlinux 0xe568ec93 kernel_getsockname EXPORT_SYMBOL vmlinux 0xe570ce8f blk_post_runtime_suspend EXPORT_SYMBOL vmlinux 0xe571f48a of_graph_get_remote_node -EXPORT_SYMBOL vmlinux 0xe57ded05 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xe57885c3 i2c_smbus_write_i2c_block_data EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet EXPORT_SYMBOL vmlinux 0xe58a2c48 md_bitmap_startwrite EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5913706 dump_skip -EXPORT_SYMBOL vmlinux 0xe59331ee inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xe5ad9d30 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0xe594e066 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0xe5ac5749 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xe5b38eb2 scsi_target_quiesce EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5d121dc phy_disconnect +EXPORT_SYMBOL vmlinux 0xe5d48af0 dev_deactivate +EXPORT_SYMBOL vmlinux 0xe5dde0a8 user_path_at_empty EXPORT_SYMBOL vmlinux 0xe5f64a7c pnp_possible_config -EXPORT_SYMBOL vmlinux 0xe603eb1b sock_bind_add EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe63c26d3 __alloc_skb +EXPORT_SYMBOL vmlinux 0xe616f52d dst_release +EXPORT_SYMBOL vmlinux 0xe6358798 tso_start EXPORT_SYMBOL vmlinux 0xe64c255d pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xe64cf641 trace_raw_output_prep EXPORT_SYMBOL vmlinux 0xe660ddac pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xe67c5fbd sock_no_bind +EXPORT_SYMBOL vmlinux 0xe686fab6 lock_page_memcg +EXPORT_SYMBOL vmlinux 0xe687daf1 netdev_info EXPORT_SYMBOL vmlinux 0xe68b3804 uart_unregister_driver EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe696deba udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xe6967432 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xe6a79276 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xe6ad5730 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0xe6b33df6 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xe6c09610 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xe6c3287b phy_attached_info EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6d4956f xfrm_register_km +EXPORT_SYMBOL vmlinux 0xe6ec2000 netdev_has_upper_dev_all_rcu EXPORT_SYMBOL vmlinux 0xe6ec2344 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xe6f6e124 sock_wake_async EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock -EXPORT_SYMBOL vmlinux 0xe6fe9060 skb_queue_purge -EXPORT_SYMBOL vmlinux 0xe71004bb nobh_write_begin +EXPORT_SYMBOL vmlinux 0xe6fdd66e scsi_remove_device +EXPORT_SYMBOL vmlinux 0xe70ca63a eth_get_headlen EXPORT_SYMBOL vmlinux 0xe71719b6 param_get_invbool EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe75553c7 mmput_async +EXPORT_SYMBOL vmlinux 0xe7532409 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xe75b1abe mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0xe75c1cbf fb_set_suspend EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache EXPORT_SYMBOL vmlinux 0xe76bb40a tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xe77938ad dst_release_immediate +EXPORT_SYMBOL vmlinux 0xe774e912 vme_dma_list_free EXPORT_SYMBOL vmlinux 0xe77fdf61 pci_choose_state -EXPORT_SYMBOL vmlinux 0xe7848f6a generic_setlease EXPORT_SYMBOL vmlinux 0xe78d6290 devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0xe79180f7 mdio_find_bus EXPORT_SYMBOL vmlinux 0xe798d586 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xe79ec9c5 ip_frag_next EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe7c44713 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xe7bbe2c3 phy_drivers_register EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7f6dbad dcb_setapp -EXPORT_SYMBOL vmlinux 0xe80766f2 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xe80e6e62 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xe81c4e63 proto_register +EXPORT_SYMBOL vmlinux 0xe7f5d1a4 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xe805cf8f ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xe809088e filemap_range_has_page EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xe84c3bf1 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0xe84964da of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xe850228d __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xe8540623 phy_suspend EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table EXPORT_SYMBOL vmlinux 0xe8855322 padata_alloc_shell -EXPORT_SYMBOL vmlinux 0xe88739e5 wireless_spy_update -EXPORT_SYMBOL vmlinux 0xe88e930c mii_check_gmii_support -EXPORT_SYMBOL vmlinux 0xe898dea3 tcf_idr_search -EXPORT_SYMBOL vmlinux 0xe8a53bdb skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0xe890cbc7 page_readlink +EXPORT_SYMBOL vmlinux 0xe8a2c9a7 dcb_setapp EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8bfbdf0 would_dump EXPORT_SYMBOL vmlinux 0xe8c05b0a d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xe8c2a99c udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xe8d4269c phy_device_create +EXPORT_SYMBOL vmlinux 0xe8fa7ed4 scsi_track_queue_full 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 0xe914540d netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xe90c21d7 block_write_end EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe92ab4f0 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0xe94c3347 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0xe91845b9 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xe91d803b ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xe9486d63 nobh_writepage EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe9636495 kernel_read +EXPORT_SYMBOL vmlinux 0xe98133c7 scsi_block_when_processing_errors EXPORT_SYMBOL vmlinux 0xe98ca4bd iget_failed EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9b079b5 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0xe9b40b72 tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0xe9c29f14 ip_mc_join_group EXPORT_SYMBOL vmlinux 0xe9d0d6bf cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0xe9de2829 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xe9d6917d sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9f9d314 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xe9fe7cf0 tcp_check_req EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock EXPORT_SYMBOL vmlinux 0xea02eaa2 __seq_open_private -EXPORT_SYMBOL vmlinux 0xea077cb4 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0xea19ef16 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xea1b1bae audit_log_start EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc EXPORT_SYMBOL vmlinux 0xea27225d inode_update_time -EXPORT_SYMBOL vmlinux 0xea3c7dfe phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xea2c7e43 phy_register_fixup EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea6bace5 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xea3e1d5b eth_type_trans +EXPORT_SYMBOL vmlinux 0xea417ce2 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xea45edae xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0xea493d84 tso_count_descs +EXPORT_SYMBOL vmlinux 0xea6b0c6d prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea770fee scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea88540b ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xea8df4f8 flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0xea956a57 mmc_free_host -EXPORT_SYMBOL vmlinux 0xea9cd29c filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xea80b090 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xea8902cf unix_destruct_scm EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeab84e41 __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0xeacedb29 blk_mq_tag_to_rq EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid -EXPORT_SYMBOL vmlinux 0xeae2041b dev_uc_init EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeaf16364 sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0xeaf8659f dm_put_device EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc EXPORT_SYMBOL vmlinux 0xeb2391c9 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xeb2a3ac0 tcp_md5_do_add EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact EXPORT_SYMBOL vmlinux 0xeb44392c sget EXPORT_SYMBOL vmlinux 0xeb46d6dc to_ndd EXPORT_SYMBOL vmlinux 0xeb4e554f mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xeb508075 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xeb748017 skb_ensure_writable EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xeba5e6c5 tso_build_hdr -EXPORT_SYMBOL vmlinux 0xebaabad2 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0xeba3a959 vfs_iter_read EXPORT_SYMBOL vmlinux 0xebba0972 sg_alloc_table_from_pages_segment EXPORT_SYMBOL vmlinux 0xebced6ea dma_unmap_sg_attrs EXPORT_SYMBOL vmlinux 0xebd1cf53 simple_lookup EXPORT_SYMBOL vmlinux 0xebd77966 bdi_put -EXPORT_SYMBOL vmlinux 0xebe9499a generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xebdcc486 alloc_buffer_head EXPORT_SYMBOL vmlinux 0xebeb20ea __nla_put EXPORT_SYMBOL vmlinux 0xebed02eb blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xebee2065 i2c_smbus_read_block_data EXPORT_SYMBOL vmlinux 0xec0c4f4e amba_request_regions -EXPORT_SYMBOL vmlinux 0xec0f6329 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xec1ccff6 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0xec1c08be dev_add_offload EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace EXPORT_SYMBOL vmlinux 0xec2d1623 pci_bus_read_config_byte EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec3c8306 skb_eth_push EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range -EXPORT_SYMBOL vmlinux 0xec433dbd neigh_event_ns EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys EXPORT_SYMBOL vmlinux 0xec6dfa4c redraw_screen -EXPORT_SYMBOL vmlinux 0xecaa6715 scsi_host_get -EXPORT_SYMBOL vmlinux 0xecb59326 sk_reset_timer -EXPORT_SYMBOL vmlinux 0xecb81916 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0xecb9c5cb release_sock -EXPORT_SYMBOL vmlinux 0xecd10519 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xec742236 kernel_accept +EXPORT_SYMBOL vmlinux 0xec8305aa sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xec9be2d9 wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0xeca71a33 ping_prot EXPORT_SYMBOL vmlinux 0xecd95f3d fscrypt_decrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf99986 lookup_one_positive_unlocked EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed06fd9a of_get_ethdev_address EXPORT_SYMBOL vmlinux 0xed11811e posix_acl_update_mode EXPORT_SYMBOL vmlinux 0xed238617 __put_cred -EXPORT_SYMBOL vmlinux 0xed3ae1eb bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xed3d7150 put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address EXPORT_SYMBOL vmlinux 0xed56852c dev_pm_opp_unregister_notifier EXPORT_SYMBOL vmlinux 0xed5d64c4 nla_put_64bit -EXPORT_SYMBOL vmlinux 0xed63e181 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xed64df74 __inet6_lookup_established EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable EXPORT_SYMBOL vmlinux 0xed6b43b0 blk_queue_update_dma_alignment EXPORT_SYMBOL vmlinux 0xed836411 mdiobb_read +EXPORT_SYMBOL vmlinux 0xed87fee5 tcp_mtup_init EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 -EXPORT_SYMBOL vmlinux 0xed8f691b inetdev_by_index EXPORT_SYMBOL vmlinux 0xed966b59 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xed9aba7f try_to_release_page EXPORT_SYMBOL vmlinux 0xeda4a9d2 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xedaabec8 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xedaadf17 filemap_fdatawrite_wbc EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc40c20 mnt_drop_write_file EXPORT_SYMBOL vmlinux 0xedf3230b tty_chars_in_buffer EXPORT_SYMBOL vmlinux 0xedfd7465 uart_resume_port +EXPORT_SYMBOL vmlinux 0xee0c3640 get_task_cred EXPORT_SYMBOL vmlinux 0xee11d993 scsi_scan_target EXPORT_SYMBOL vmlinux 0xee15d3c9 __cleancache_init_fs EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable EXPORT_SYMBOL vmlinux 0xee31425f key_put -EXPORT_SYMBOL vmlinux 0xee42b70b genl_register_family -EXPORT_SYMBOL vmlinux 0xee45ebbe netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xee3e5cce qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xee579b0a vfs_mkdir EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee7126c8 netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices EXPORT_SYMBOL vmlinux 0xee82682c of_graph_get_remote_endpoint @@ -11425,404 +11304,417 @@ EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xeea5c2da twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xeea33b45 mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeb803f9 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0xeec2faed __dquot_transfer -EXPORT_SYMBOL vmlinux 0xeed20e9a clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0xeed4b152 qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0xeedaa440 flush_dcache_page EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init EXPORT_SYMBOL vmlinux 0xeeeb15a6 dquot_disable -EXPORT_SYMBOL vmlinux 0xeeefbdc4 devfreq_update_interval -EXPORT_SYMBOL vmlinux 0xeef61e43 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xeefa0f1a tcp_check_req +EXPORT_SYMBOL vmlinux 0xef050d9f dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xef158b4d phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xef2e7d3a posix_test_lock EXPORT_SYMBOL vmlinux 0xef2fd5d0 pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0xef30bbf2 param_set_uint -EXPORT_SYMBOL vmlinux 0xef3e8233 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xef51fd1f inet_stream_ops EXPORT_SYMBOL vmlinux 0xef525d6f unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0xef5fee36 sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0xef777991 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xef638d11 dev_mc_unsync EXPORT_SYMBOL vmlinux 0xef7bbbda mipi_dsi_dcs_get_power_mode EXPORT_SYMBOL vmlinux 0xef7dad89 md_write_inc EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg EXPORT_SYMBOL vmlinux 0xef941ec6 pci_enable_msi EXPORT_SYMBOL vmlinux 0xef9bab4b fb_set_var -EXPORT_SYMBOL vmlinux 0xef9c35c6 block_read_full_page -EXPORT_SYMBOL vmlinux 0xef9eede6 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xef9fb949 of_mdio_find_device EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefc592e5 phy_find_first +EXPORT_SYMBOL vmlinux 0xefbd25db __napi_alloc_skb EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefd01f65 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0xefd4d4e3 xp_dma_sync_for_device_slow EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xeff90f39 dev_mc_del EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0171ea9 phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf02e4b4d prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0xf03dbef0 dev_loopback_xmit EXPORT_SYMBOL vmlinux 0xf04d65ea configfs_unregister_subsystem EXPORT_SYMBOL vmlinux 0xf05f28f9 __fs_parse EXPORT_SYMBOL vmlinux 0xf06036ba param_get_string -EXPORT_SYMBOL vmlinux 0xf07d3002 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xf08513fe tcp_poll +EXPORT_SYMBOL vmlinux 0xf061eb0b phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xf0733b8c unregister_netdev EXPORT_SYMBOL vmlinux 0xf08fb113 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0xf0932f28 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds -EXPORT_SYMBOL vmlinux 0xf0b06850 invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xf0b4b996 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0xf0c87d0f cont_write_begin +EXPORT_SYMBOL vmlinux 0xf0be1bda dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xf0d2906c noop_qdisc EXPORT_SYMBOL vmlinux 0xf0e22bff fs_bio_set -EXPORT_SYMBOL vmlinux 0xf0f1a2de crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xf0e76982 pagecache_write_end EXPORT_SYMBOL vmlinux 0xf10190b9 tty_lock EXPORT_SYMBOL vmlinux 0xf1036a28 get_tree_bdev +EXPORT_SYMBOL vmlinux 0xf1164b35 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xf118b94c genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0xf11a3943 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xf11b39ca ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early EXPORT_SYMBOL vmlinux 0xf12439f5 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xf12a430f mii_link_ok EXPORT_SYMBOL vmlinux 0xf1424f92 input_flush_device EXPORT_SYMBOL vmlinux 0xf16bd643 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0xf17a2675 send_sig +EXPORT_SYMBOL vmlinux 0xf175cb67 skb_store_bits +EXPORT_SYMBOL vmlinux 0xf17b783b mii_nway_restart EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb +EXPORT_SYMBOL vmlinux 0xf18c9bbe inet_register_protosw EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf196233e mdio_device_register EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf196b900 generic_mii_ioctl EXPORT_SYMBOL vmlinux 0xf1b09875 proc_mkdir -EXPORT_SYMBOL vmlinux 0xf1b312de xfrm_state_free EXPORT_SYMBOL vmlinux 0xf1b448e0 backlight_device_register +EXPORT_SYMBOL vmlinux 0xf1c96bd5 nobh_truncate_page EXPORT_SYMBOL vmlinux 0xf1cb356b rtc_add_groups +EXPORT_SYMBOL vmlinux 0xf1cff8a7 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xf1d24237 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xf1d25664 phy_register_fixup_for_uid EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy EXPORT_SYMBOL vmlinux 0xf1e046cc panic EXPORT_SYMBOL vmlinux 0xf1e71d24 make_bad_inode EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf20218ff mount_subtree -EXPORT_SYMBOL vmlinux 0xf20b0c43 netdev_warn EXPORT_SYMBOL vmlinux 0xf2148006 may_setattr -EXPORT_SYMBOL vmlinux 0xf215e514 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xf21ed9ab sock_no_connect EXPORT_SYMBOL vmlinux 0xf2224adc __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xf2336577 dcb_ieee_setapp EXPORT_SYMBOL vmlinux 0xf23bacf5 of_get_child_by_name EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf248afac netpoll_print_options +EXPORT_SYMBOL vmlinux 0xf2455e97 kfree_skb_list EXPORT_SYMBOL vmlinux 0xf24ff13e pci_scan_bus -EXPORT_SYMBOL vmlinux 0xf2576314 gnet_stats_copy_basic_hw EXPORT_SYMBOL vmlinux 0xf2641a18 mdio_driver_register EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier -EXPORT_SYMBOL vmlinux 0xf26ece1c module_layout -EXPORT_SYMBOL vmlinux 0xf26f8284 logfc -EXPORT_SYMBOL vmlinux 0xf27bebe1 skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf288ffa5 phy_attach_direct EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0xf29594cd unlock_buffer +EXPORT_SYMBOL vmlinux 0xf29ed199 tcf_exts_validate EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xf2bc16a0 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xf2b48f03 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xf2ba92c3 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xf2bc48a6 wireless_spy_update EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate EXPORT_SYMBOL vmlinux 0xf2d142f6 da903x_query_status -EXPORT_SYMBOL vmlinux 0xf2e2370f zap_page_range EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts EXPORT_SYMBOL vmlinux 0xf2e5d8e8 framebuffer_alloc EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf2f7ff2d cont_write_begin +EXPORT_SYMBOL vmlinux 0xf2f97b5e __nlmsg_put +EXPORT_SYMBOL vmlinux 0xf3050ed2 dev_mc_del_global EXPORT_SYMBOL vmlinux 0xf30e725f dqput -EXPORT_SYMBOL vmlinux 0xf310496e jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf312f11f sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xf3187b11 xsk_tx_release EXPORT_SYMBOL vmlinux 0xf32004dd __nd_driver_register -EXPORT_SYMBOL vmlinux 0xf331b29a security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0xf3262fb8 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xf3278fdc generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xf341ee35 tcp_hashinfo EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head EXPORT_SYMBOL vmlinux 0xf3531cb9 devm_ioport_unmap EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf362631b xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xf36253b0 phy_set_sym_pause EXPORT_SYMBOL vmlinux 0xf36b546b pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xf36ea24d scsi_print_sense EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress EXPORT_SYMBOL vmlinux 0xf37b1bf0 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xf388edba dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused EXPORT_SYMBOL vmlinux 0xf393da58 __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0xf3956238 mr_fill_mroute EXPORT_SYMBOL vmlinux 0xf39801ae n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xf398f37b security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xf39d1478 sock_edemux EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0xf3aa6721 seq_read +EXPORT_SYMBOL vmlinux 0xf3b30637 xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3c0babf linkwatch_fire_event EXPORT_SYMBOL vmlinux 0xf3c718b1 seq_dentry -EXPORT_SYMBOL vmlinux 0xf3ddfe8c fasync_helper EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3efc20a of_get_ethdev_address EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf400d203 inet6_protos EXPORT_SYMBOL vmlinux 0xf405b31b param_ops_invbool -EXPORT_SYMBOL vmlinux 0xf406e083 iptun_encaps EXPORT_SYMBOL vmlinux 0xf40950ab tty_port_alloc_xmit_buf EXPORT_SYMBOL vmlinux 0xf4102303 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xf4163204 tcf_generic_walker -EXPORT_SYMBOL vmlinux 0xf416c3c9 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xf4122267 twl6040_set_bits EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf4508af1 inet_getname +EXPORT_SYMBOL vmlinux 0xf4541763 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xf4649974 flow_rule_match_enc_keyid EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf49c6751 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xf4941cea do_splice_direct EXPORT_SYMBOL vmlinux 0xf4b61190 pcie_capability_clear_and_set_word EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area EXPORT_SYMBOL vmlinux 0xf4c7f345 mod_node_page_state -EXPORT_SYMBOL vmlinux 0xf4cb52e9 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xf4c8777e __check_sticky EXPORT_SYMBOL vmlinux 0xf4cdd446 blk_queue_max_write_same_sectors EXPORT_SYMBOL vmlinux 0xf4d22a7f iov_iter_alignment EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4df3531 trace_event_printf -EXPORT_SYMBOL vmlinux 0xf4e60a03 inet_csk_reset_keepalive_timer EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f49985 pskb_extract -EXPORT_SYMBOL vmlinux 0xf50b0850 no_llseek -EXPORT_SYMBOL vmlinux 0xf51fd0ee mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xf52e3d00 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0xf5304d21 flow_rule_match_control -EXPORT_SYMBOL vmlinux 0xf5315277 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xf520c9ee netdev_features_change +EXPORT_SYMBOL vmlinux 0xf5272263 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xf52aa252 dev_uc_flush EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy EXPORT_SYMBOL vmlinux 0xf55108c1 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xf564c695 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0xf58203fd inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0xf59b6b25 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xf55f3f6a of_phy_is_fixed_link EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5a4002a tcf_em_tree_destroy EXPORT_SYMBOL vmlinux 0xf5a60d1f simple_getattr +EXPORT_SYMBOL vmlinux 0xf5a71e9a gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xf5aa5426 skb_copy_header EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid -EXPORT_SYMBOL vmlinux 0xf5bec6de tcf_idr_create +EXPORT_SYMBOL vmlinux 0xf5bc74c0 lock_rename +EXPORT_SYMBOL vmlinux 0xf5c62f35 wait_on_page_private_2_killable EXPORT_SYMBOL vmlinux 0xf5d74d61 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xf5d88670 genphy_check_and_restart_aneg EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5fc9ac2 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xf5f07538 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xf5f10670 put_cmsg +EXPORT_SYMBOL vmlinux 0xf5f43538 genlmsg_put +EXPORT_SYMBOL vmlinux 0xf5f931c2 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xf6073366 __mmap_lock_do_trace_start_locking EXPORT_SYMBOL vmlinux 0xf6082e64 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0xf61e5541 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xf614a0c4 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xf6224ea2 __dev_kfree_skb_irq EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx EXPORT_SYMBOL vmlinux 0xf631a0dc ucc_of_parse_tdm -EXPORT_SYMBOL vmlinux 0xf63890d1 eth_validate_addr EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf65fbd39 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module EXPORT_SYMBOL vmlinux 0xf6691ee5 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0xf66c9c4d noop_llseek +EXPORT_SYMBOL vmlinux 0xf67f97ce udp_prot EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf688ae45 dev_set_mtu EXPORT_SYMBOL vmlinux 0xf6be91ee pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xf6d27093 __bread_gfp EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf7044c76 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xf705ab04 cad_pid -EXPORT_SYMBOL vmlinux 0xf7233b4d sock_release -EXPORT_SYMBOL vmlinux 0xf7295611 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xf7076794 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xf712a7f2 xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf73a6c22 ip_generic_getfrag EXPORT_SYMBOL vmlinux 0xf73b165f fsync_bdev -EXPORT_SYMBOL vmlinux 0xf74bfb1c i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0xf7569289 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0xf752d549 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xf753b8f4 generic_pipe_buf_get EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf76c1979 phy_start +EXPORT_SYMBOL vmlinux 0xf7727473 write_cache_pages EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check EXPORT_SYMBOL vmlinux 0xf773f73a pci_iomap_range EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio -EXPORT_SYMBOL vmlinux 0xf7757ac5 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xf7a7ce85 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xf7b7cf02 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xf775c049 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0xf780c4f5 netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0xf7881b1b cad_pid +EXPORT_SYMBOL vmlinux 0xf78aa9d1 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0xf7baf34c eth_mac_addr EXPORT_SYMBOL vmlinux 0xf7bd9859 devm_request_any_context_irq EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xf7cb2cc9 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0xf7d275be module_put +EXPORT_SYMBOL vmlinux 0xf7d16970 nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7d37757 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xf7d505eb tcf_qevent_dump EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table -EXPORT_SYMBOL vmlinux 0xf7e13701 skb_find_text -EXPORT_SYMBOL vmlinux 0xf7e2210b inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0xf7e5bfc6 nf_log_trace EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash +EXPORT_SYMBOL vmlinux 0xf7f8c781 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xf80261f1 filp_close +EXPORT_SYMBOL vmlinux 0xf80d2adf eth_header_cache 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 0xf839810e proto_unregister -EXPORT_SYMBOL vmlinux 0xf8452f4f mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xf837a1b7 tcp_rtx_synack EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf858e89d netdev_reset_tc -EXPORT_SYMBOL vmlinux 0xf862284f vfs_fileattr_get EXPORT_SYMBOL vmlinux 0xf8627d4c of_node_name_eq EXPORT_SYMBOL vmlinux 0xf866b00c tegra_io_pad_power_enable -EXPORT_SYMBOL vmlinux 0xf8798db6 __f_setown EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table EXPORT_SYMBOL vmlinux 0xf889559e md_error +EXPORT_SYMBOL vmlinux 0xf88e5144 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xf88feb63 napi_disable EXPORT_SYMBOL vmlinux 0xf890f4e4 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xf894d386 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xf897f3a9 twl6040_reg_read EXPORT_SYMBOL vmlinux 0xf89f5bdc __tty_insert_flip_char EXPORT_SYMBOL vmlinux 0xf8ad52c6 rproc_report_crash -EXPORT_SYMBOL vmlinux 0xf8b7c882 __inode_add_bytes EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound +EXPORT_SYMBOL vmlinux 0xf8c52d20 lookup_one +EXPORT_SYMBOL vmlinux 0xf8cd5183 __traceiter_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8d51885 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0xf8e78dfa flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xf8e7cee9 gnet_stats_copy_rate_est EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf91482ec xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xf9012ace skb_flow_dissect_hash EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct +EXPORT_SYMBOL vmlinux 0xf9310ffd rt_dst_alloc EXPORT_SYMBOL vmlinux 0xf9336f41 pcibus_to_node EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0xf93e41a0 skb_add_rx_frag EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf94b409b jbd2_journal_set_features EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance EXPORT_SYMBOL vmlinux 0xf969b0ab mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xf97013db __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf9781ec6 kill_pgrp -EXPORT_SYMBOL vmlinux 0xf986f1fa netif_receive_skb +EXPORT_SYMBOL vmlinux 0xf978ff83 vlan_vid_del EXPORT_SYMBOL vmlinux 0xf98ba65b dcache_readdir EXPORT_SYMBOL vmlinux 0xf98e608b mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xf99a088d twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xf9a30a0d alloc_fddidev EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9bdb9ca sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xf9a8c657 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xf9ba86ef inet_put_port EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat EXPORT_SYMBOL vmlinux 0xf9c6133c param_get_long +EXPORT_SYMBOL vmlinux 0xf9c73355 pagecache_get_page EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9cd7b33 __neigh_create -EXPORT_SYMBOL vmlinux 0xf9d7d1c6 netpoll_cleanup EXPORT_SYMBOL vmlinux 0xf9de3234 inode_dio_wait EXPORT_SYMBOL vmlinux 0xf9ef281a mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0xf9f65417 vlan_uses_dev EXPORT_SYMBOL vmlinux 0xf9fd46de notify_change EXPORT_SYMBOL vmlinux 0xfa007921 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xfa060169 tc_setup_cb_add EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end EXPORT_SYMBOL vmlinux 0xfa0dd0b7 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0xfa1d1514 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xfa1eaf66 ll_rw_block EXPORT_SYMBOL vmlinux 0xfa217573 bio_chain EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec EXPORT_SYMBOL vmlinux 0xfa36532b file_update_time -EXPORT_SYMBOL vmlinux 0xfa3c54c3 blk_queue_flag_set EXPORT_SYMBOL vmlinux 0xfa4d53eb iommu_dma_get_resv_regions EXPORT_SYMBOL vmlinux 0xfa559d9d devm_request_threaded_irq EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5eac5f __skb_ext_del +EXPORT_SYMBOL vmlinux 0xfa671ef2 register_netdevice EXPORT_SYMBOL vmlinux 0xfa6e50bd iommu_put_dma_cookie +EXPORT_SYMBOL vmlinux 0xfa7b0c23 mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed EXPORT_SYMBOL vmlinux 0xfa8b3964 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xfa8eda82 build_skb_around EXPORT_SYMBOL vmlinux 0xfa8f13f7 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xfaa1e22b mmc_release_host EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfac0ae4f netlink_set_err +EXPORT_SYMBOL vmlinux 0xfaae82f6 may_umount_tree EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max EXPORT_SYMBOL vmlinux 0xfacd8c28 nla_put -EXPORT_SYMBOL vmlinux 0xface0502 ptp_find_pin +EXPORT_SYMBOL vmlinux 0xfad46d28 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xfad899e7 mmc_gpio_get_cd EXPORT_SYMBOL vmlinux 0xfafdc661 unregister_mii_timestamper EXPORT_SYMBOL vmlinux 0xfafeeb05 scsi_register_driver -EXPORT_SYMBOL vmlinux 0xfb115fb9 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xfb1bcc74 finish_open -EXPORT_SYMBOL vmlinux 0xfb287c3e phy_validate_pause +EXPORT_SYMBOL vmlinux 0xfb2ddb42 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xfb327abe flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb575e19 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xfb4b30d3 sync_inodes_sb EXPORT_SYMBOL vmlinux 0xfb60d9a2 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xfb693784 qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb700682 inet_offloads EXPORT_SYMBOL vmlinux 0xfb79d6cc get_thermal_instance -EXPORT_SYMBOL vmlinux 0xfb7a2791 xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0xfb7bbb72 sk_error_report -EXPORT_SYMBOL vmlinux 0xfb919d01 mmc_card_alternative_gpt_sector EXPORT_SYMBOL vmlinux 0xfb928c92 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xfba47753 __napi_schedule EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xfbb4ad81 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xfbb348d2 security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad EXPORT_SYMBOL vmlinux 0xfbbb6c72 of_graph_is_present EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbcede10 of_device_alloc EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfbff4c27 console_stop -EXPORT_SYMBOL vmlinux 0xfc2af14f mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xfbf012d8 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xfc11ac04 udp_read_sock +EXPORT_SYMBOL vmlinux 0xfc174afe flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xfc1c7c8e tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xfc2a1f61 tcf_block_get EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc3e50fd reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xfc4104ba skb_copy EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read -EXPORT_SYMBOL vmlinux 0xfc4471b8 dentry_open EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available EXPORT_SYMBOL vmlinux 0xfca43292 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xfca5f172 lookup_one_unlocked EXPORT_SYMBOL vmlinux 0xfcaed3e9 pm8606_osc_disable EXPORT_SYMBOL vmlinux 0xfcb942ff is_nd_dax +EXPORT_SYMBOL vmlinux 0xfcbd1b7b scsi_mode_sense EXPORT_SYMBOL vmlinux 0xfcbfe23a acpi_dev_get_next_match_dev EXPORT_SYMBOL vmlinux 0xfcc308ff mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0xfccc0c6f sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable EXPORT_SYMBOL vmlinux 0xfcd104a4 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xfcd177b6 skb_queue_tail EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcdd1e82 sk_net_capable -EXPORT_SYMBOL vmlinux 0xfce6c0a4 fman_get_pause_cfg EXPORT_SYMBOL vmlinux 0xfce91917 fb_class EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq EXPORT_SYMBOL vmlinux 0xfcf0b089 imx_scu_enable_general_irq_channel EXPORT_SYMBOL vmlinux 0xfd2deb0d devm_iounmap -EXPORT_SYMBOL vmlinux 0xfd35b852 netdev_emerg EXPORT_SYMBOL vmlinux 0xfd3ffd98 fman_unregister_intr -EXPORT_SYMBOL vmlinux 0xfd552cf1 jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0xfd676b6a tty_write_room EXPORT_SYMBOL vmlinux 0xfd687a00 d_drop -EXPORT_SYMBOL vmlinux 0xfd7f46c2 fs_context_for_mount -EXPORT_SYMBOL vmlinux 0xfd9e294e nf_log_set EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdb528df napi_schedule_prep EXPORT_SYMBOL vmlinux 0xfdb9b34d key_alloc EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd170bb mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0xfdda4ee3 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xfdecc132 inet_bind EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe22b08e netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xfe27e341 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0xfe35ed38 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0xfe47f5bf nf_setsockopt +EXPORT_SYMBOL vmlinux 0xfe385fed send_sig EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe607bb3 sock_kmalloc -EXPORT_SYMBOL vmlinux 0xfe6d782b flow_block_cb_free -EXPORT_SYMBOL vmlinux 0xfe71edb1 skb_append +EXPORT_SYMBOL vmlinux 0xfe888661 __hw_addr_sync_dev EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfea88e47 zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0xfeabad90 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0xfead4db0 generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee4b09b phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef51381 netdev_lower_dev_get_private EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff111c8b i2c_clients_command -EXPORT_SYMBOL vmlinux 0xff11dea7 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xff123d5b mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xff120340 netdev_lower_get_next EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff280dbf remap_pfn_range EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff29aea2 tcp_shutdown EXPORT_SYMBOL vmlinux 0xff31dca0 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xff3366a0 sock_create_lite -EXPORT_SYMBOL vmlinux 0xff4ae6c3 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xff339fe7 read_cache_pages EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap EXPORT_SYMBOL vmlinux 0xff6e04ca cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xff7c89aa alloc_pages EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff8d4f97 would_dump +EXPORT_SYMBOL vmlinux 0xff9ac68e inet_add_protocol EXPORT_SYMBOL vmlinux 0xff9b722f drop_super -EXPORT_SYMBOL vmlinux 0xffb4f741 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xffab0453 xfrm_unregister_km EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffd5b006 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xffdf41bd generic_fillattr EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfff0d443 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xffeee389 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xfff5e2c4 dns_query +EXPORT_SYMBOL vmlinux 0xfff9ae08 seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0xfffd8007 rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL_GPL crypto/af_alg 0x047e735f af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x0cb3746f af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x11035c70 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x28106948 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x2efeb674 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x30a2b9c7 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x32e00c78 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x40afd190 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x4631ab6e af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x4916adf8 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x650f6a41 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x917ec7cc af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x9905f586 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0xb85c0ae3 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xc41ea4a6 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0xd299acb8 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0xdc461bfa af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xf9d51515 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x030ec901 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x07b4d4cb af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x0b07c084 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x2a94c5fa af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x2e210d41 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x3bebe571 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x55ff408c af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x5a9876a3 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x745360c8 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x80206da7 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x8d342cd5 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x9e58d42f af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xd1c1a9d8 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xd3c4a401 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xe1ff0b79 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xe6436438 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xe99e88f9 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xf6f3bc97 af_alg_sendmsg EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xbc97396f asym_tpm_subtype EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x7bf38912 async_memcpy @@ -11851,42 +11743,42 @@ 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 0x0e4668cf cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x191d0d33 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x3ae59e92 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x3aeb2981 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x4fed1c27 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x533485c4 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x7414d83f cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x9f25c7b2 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x9f9af2ad cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xa0e2909f cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xba96a56f cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xbf556d57 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xdb7e905e cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0c78a438 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x212c66a7 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x29cb92a1 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x50da2152 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5eaf5ef2 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7e9cde8e crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8495ac4b crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8c2e94b4 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8dda01fb crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x95bde3be crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb0780ef9 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcff6cab0 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xedb0b913 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x24449a50 simd_register_aeads_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x4cf28b2b simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/cryptd 0x064605d6 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x1928a8d3 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x1cd62e71 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x5825a551 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x64cc5cef cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x8f877ca8 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xa02177ed cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xa2c58e0c cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xa4ada1bc cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xa6f5705f cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xbd2a5791 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xc5a2c27c cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xe41ac237 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x08f0fd07 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x30c6e676 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x40f0e505 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4940ad30 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4e9bec96 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5c653a3b crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x62d28ec2 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xaa6fc338 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc55a6e58 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xca6aa9d3 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xce3873bb crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd10d2142 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd40f1985 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x02edbad8 simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x238ea4fc simd_register_aeads_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x65334d98 simd_register_skciphers_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 0xbfd26f15 simd_aead_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xee9add52 simd_unregister_skciphers EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xf37256ef simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xfac9fa2d 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 @@ -11980,81 +11872,81 @@ EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8e3755cf __regmap_init_spmi EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x968fcb6e __devm_regmap_init_spmi_ext EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x8a36e399 __regmap_init_w1 EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x9b322fba __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0144bef2 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2715f12f bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x353f3ad9 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3864836a bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4108e138 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x47093dd9 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x472585db bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5fd61d62 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x717f955f __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x72d9776d bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x760f9ff3 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7db7453b bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9f16812a bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa6ced636 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa6e62765 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xab8adcb0 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb143edfe bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcc13a996 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd00077cc bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe91e2fcf bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xed020c25 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfccf8cb6 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfed2d697 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xff67352b bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1acdaf34 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7acd32d0 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8f3d6e20 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa10908b6 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa5938727 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbab84b1d btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe618aff6 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf5fea791 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0cb7efd5 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0ff3afda btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x15815682 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1720301f btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1b8eadef btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1e016ba7 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x21287653 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x282c56c8 btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4da847fd btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4f39b992 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5222a28d btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x72775881 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x99d9a7a6 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9e88be93 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd148798a btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf27561f7 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x046d0420 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0e33484f btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x476fe673 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x54e4cfc6 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5cb2d0d4 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6c2feb2c btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7ad29aa7 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7e09b9b4 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa54ff3d4 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc15d6818 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd41849ee btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x61d7221a qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x635e4150 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x721d0231 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x8d818496 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xbfb35a7c qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x04640c24 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x5db13f83 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6879c4df btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1c1f9ef5 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x20a90d6c bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x256b26f5 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x30fc4e12 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x34e7f745 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3bdbedc2 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x41bdda37 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x47eefe65 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4eb7ba5f bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5ce9db35 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x62e90c1f bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6d27eb63 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7014264b bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x71d87deb bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x77c04465 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9c4d6525 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9e4ee5da bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa3c495bd bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb5f41d22 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbded9d3a bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc2aa602e bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcb6cf256 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf0fc83d4 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf439d586 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2ed36499 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x47d9d711 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4e2ea2ae btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x63afe01e btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa8f647f0 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd0666d49 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xea54aa12 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xecd2d7a3 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x131994ce btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x18f69239 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x28faeb3e btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2a30d1a6 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x34ada1a2 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x420bdd6b btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x50dd6435 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x533572ad btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x55de1323 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5e385abe btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7277a2c5 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x73fced1c btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8029e25d btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8d7e6be8 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x98fe7fcf btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x996e0282 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x02ad5e7b btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0adede18 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x23e75872 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2a25ea4f btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3e74c9ee btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5e0730a8 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5ef533bb btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x64982bcd btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x82b272bd btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x82b4029f btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcde3308c btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x259147d2 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x49e2fd67 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x8222ccc2 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x99770c34 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe945889f qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0478b6b0 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x2051e185 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x2cb90e7a btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x730cd8bc btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7984a89a btrtl_set_quirks EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb084df18 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xdda48c75 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xfbcefe88 btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x422a27fa hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x49a9f197 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7ef69040 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xce00ee01 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xdec7e676 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x1a46a788 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x45b44023 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x8731a54a hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x9fc01874 h4_recv_buf EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x064e9275 mhi_unprepare_after_power_down EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x12060cdf mhi_register_controller EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x16f35788 mhi_pm_suspend @@ -12101,21 +11993,22 @@ 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 0x1314a7de qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x15125d00 qcom_cc_probe 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 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 0x22ab62ce qcom_cc_probe_by_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x24a7abf5 clk_zonda_pll_configure 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 0x2ee30903 qcom_cc_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 0x3bfe915e qcom_cc_really_probe 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 @@ -12142,7 +12035,6 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7dc2da81 devm_clk_register_regmap 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 0x8b55eac4 clk_dyn_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8e03a304 qcom_cc_really_probe 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 @@ -12152,13 +12044,13 @@ 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 0xadc2751b clk_alpha_pll_postdiv_fabia_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb257890e qcom_find_cfg_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb8df2025 qcom_cc_map 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 0xc2e59ced qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc5bdfa11 clk_byte2_ops 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 0xd063c0c8 qcom_cc_probe_by_index 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 @@ -12175,11 +12067,11 @@ EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x4cad4f51 sprd_div_helper_round_ra 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 EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x6b8639b9 sprd_div_helper_set_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x888866be sprd_clk_regmap_init EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x911aa4a0 sprd_mux_ops 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 0xfaa2d0ed sprd_clk_regmap_init EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x014ba464 comedi_is_subdevice_running EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0e4c1d3c comedi_driver_register @@ -12389,24 +12281,24 @@ EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x8aed1ece dpdmai_close EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xb8ec7a81 dpdmai_open EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xf0d36908 dpdmai_get_tx_queue EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xf39d8a16 dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x06959acd fsl_edma_disable_request EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0923bdf1 fsl_edma_cleanup_vchan EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x12425ebb fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x16ff31d5 fsl_edma_setup_regs EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x18832ebf fsl_edma_terminate_all EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x29c29ed4 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x36153053 fsl_edma_xfer_desc EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3a30c35f fsl_edma_slave_config EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3daa9f30 fsl_edma_free_chan_resources EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x443e5020 fsl_edma_pause EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4cbb8284 fsl_edma_issue_pending EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x58b9d1ec fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6d9c5bd5 fsl_edma_disable_request EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x771b1779 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7c9ab5e1 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x994efa19 fsl_edma_chan_mux EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xaafc1e86 fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc5e44b12 fsl_edma_chan_mux EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd52f70a7 fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x6edfb2b2 hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x9d2954a3 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe6c48ec1 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x12b4bbf7 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x6925dc44 hidma_mgmt_init_sys EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x4e814057 ffa_device_unregister EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x732146b0 ffa_dev_ops_get @@ -12422,29 +12314,29 @@ EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x595b630e stratix10_svc_free_ EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x684a67dd 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 0x2b3d0b53 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0a7374a6 __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2331946a dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0c3cd78c dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1fd6218d dfl_fpga_set_irq_triggers EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3e1ced98 dfl_fpga_cdev_release_port EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x45d78695 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4e76efe3 dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6818baf9 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x46f2a6d2 dfl_feature_ioctl_set_irq EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7223afef dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x72499f00 dfl_fpga_dev_feature_init EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x78c20b97 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x79f3c00c dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x79ddfeea dfl_fpga_port_ops_add EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7c4cc799 dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7f4167dc dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fddfc88 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8701593f dfl_fpga_check_port_id EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x88a560f4 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8da16e5d __dfl_fpga_cdev_find_port EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x965954e2 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x988631ce dfl_fpga_dev_feature_uinit EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9c9184a9 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa04172f8 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa3b1c008 dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcac0154d dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9db06a5e dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9def2446 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa6d6e4f7 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc231cc33 dfl_feature_ioctl_get_num_irqs EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd0f9d027 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd4903f9d dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdf6cfa97 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe4bc9eaa dfl_fpga_dev_feature_uinit EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xef0a6ede dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfe7fcf54 dfl_fpga_port_ops_put EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0aec8174 devm_fpga_bridge_create EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put @@ -12481,21 +12373,21 @@ EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x746f75a4 fpga_region_free EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x76e6a22e fpga_region_unregister EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xb078a03e fpga_region_class_find EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xbe2e9df5 devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0ebaa656 fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x11e128e8 fsi_cdev_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x32623ecb fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x01ec0106 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x243a0907 fsi_device_write EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x456efa99 fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x553a2e16 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3ac05ae1 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x484cc009 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x50df8457 fsi_bus_type EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x6f3a078a fsi_master_unregister EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa162474d fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xcc43fc1e fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x861e100e fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8e00a81a fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xcaeeefab fsi_driver_unregister EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe7b1d23f fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf21b97bf fsi_master_rescan -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xfff4bad0 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf92150f1 fsi_master_register EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xb22c1a0a fsi_occ_submit EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x1d517e2c sbefifo_parse_status EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x1ec66300 sbefifo_submit @@ -12526,17 +12418,17 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xed5b6cca analog EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xfa9a1e55 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 0x0d8a11fa 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 0x31469f73 dw_hdmi_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7c03a740 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 0x8936ba9b dw_hdmi_bind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8c56146d dw_hdmi_set_high_tmds_clock_ratio EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8c5a901f dw_hdmi_set_plugged_cb EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate @@ -12548,9 +12440,9 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_ph 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 0x099adebd dw_mipi_dsi_bind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x0d667204 dw_mipi_dsi_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x23db69f2 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 0x5437e107 dw_mipi_dsi_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x025c4374 drm_hdcp_check_ksvs_revoked EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0c99bca1 drm_of_find_panel_or_bridge EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x100c1286 drm_gem_cma_get_sg_table @@ -12617,10 +12509,10 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xd258117e meson_vclk_vic_sup EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x801c2a12 s6e63m0_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x9ea3a02f s6e63m0_remove EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x5a949b9e pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x3826946a rcar_cmm_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x39e6e92a rcar_cmm_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x5d2644ba rcar_cmm_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x65d2e8ec rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x4ae599d1 rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x9f32f36c rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xd34e5fc9 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xd62743ce rcar_cmm_setup EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x00c801c8 rcar_lvds_dual_link EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x3a81d6c5 rcar_lvds_clk_enable EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x6141e13a rcar_lvds_clk_disable @@ -12631,7 +12523,6 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x047ec41f gb_connection_create_flags EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x05c83cec gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x05e02ae7 greybus_register_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x05f99e0b gb_interface_request_mode_switch EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x075025e3 gb_operation_sync_timeout EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0a773051 gb_operation_unidirectional_timeout @@ -12647,6 +12538,7 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x404b10c9 greybus_message_sent EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x442a5f74 gb_operation_get EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x44fa43f5 gb_operation_put EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x45703b5c gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4ed72b62 greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x51954985 __traceiter_gb_message_submit EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x555f1291 gb_connection_enable_tx EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x57d069aa __traceiter_gb_hd_add @@ -12664,7 +12556,6 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_creat EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x96214b37 gb_hd_output EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xab316062 greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb2d213d0 gb_hd_cport_reserve EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb8153fc8 gb_connection_latency_tag_enable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbb11f16b gb_hd_put @@ -12674,6 +12565,7 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc0ce8b52 gb_connection_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc29248d4 gb_operation_request_send EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcd54dcbe gb_operation_result EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdd12692e greybus_register_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdda7be57 gb_operation_response_alloc EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe59df7d3 gb_connection_enable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del @@ -12686,81 +12578,81 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfac9ee9c gb_connection_destroy EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfe389e7f gb_hd_create EXPORT_SYMBOL_GPL drivers/hid/hid 0x01900553 hid_resolv_usage EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x06dd4464 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0819c02d hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x09e83fea hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x11444d68 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x15cd9505 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x09a5f634 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x09f8199f hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0b3864ca hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x11c6060f hid_allocate_device EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1ce58e4c hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1f64325b hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x285cc10d hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x29e7c8af __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b88ae88 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x33334481 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3530312e hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x363db309 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x37137b71 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5550a34c hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5ad1cb2c hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5ca50a0f hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5fb99037 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x617b8564 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x657715b4 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x70b7f33a hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x74530f8e hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x751a987a hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x882ea033 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8a74dbf9 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8ae8cadd hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x221e4c50 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2308d5c7 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x27da6804 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2bd0eda3 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c811ab9 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x39fb97c9 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b508cd4 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c42aa24 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x47452bd9 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x49c92026 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4c022229 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x56650a18 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5b9c8467 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5bf27e03 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6676dd5b hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x71a8ef7a hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x72e0b604 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7549cbce hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7616e971 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x799c5da1 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x87819fd6 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8a4e4ee4 hidinput_connect EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8cdd4bdc hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x95b156b1 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa1e6d28f hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4fe2429 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7479d8f hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa75a9028 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbcd1f96c hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0e519f7 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc963f641 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xca74a9ef hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf7f07a0 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd40ecca hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0xeb4ceabb __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xef97c735 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf1367da0 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf8426484 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b47d982 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x93819ca1 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x97b15c25 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9d6d51b8 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9ea4a7dd hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2d92071 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xba179770 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc7e5b686 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xce495d09 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd9e5680b hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdbeb0ab1 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdc7977a8 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf6b5a33 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe1874688 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeb29058b __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xebad3429 hid_open_report EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb74f2c9 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfaef6266 hid_dump_device EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x9b6fd082 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x4c5b3253 roccat_connect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0d4c4168 roccat_common2_send_with_status EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5c0ef3f1 roccat_common2_device_init_struct EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6178f8ce roccat_common2_send EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6b6644c4 roccat_common2_sysfs_read EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6f367b4e roccat_common2_receive EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb8dc91f6 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x169e442c sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1dbbd24e sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x52482a8b sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6378bbfb sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x79d9392d hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9889cdc6 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xda556aea sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdab86a3c sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xec29904b sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x19158cee sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2061720d hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2f80d36f sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x31e1739f sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x33141316 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4c3744ab sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x83fcb761 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa23f1112 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe6e0dcbf sensor_hub_register_callback EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x3f387024 i2c_hid_core_probe EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x44c8de16 i2c_hid_core_pm EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x4bec6a31 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x8559971e i2c_hid_ll_driver EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x9fa56364 i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xdad490a8 i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x0700aafc surface_hid_device_destroy EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x0edcd1e5 surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xb67c7edf surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/uhid 0x09d6ea5f uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x81f274bb hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xebf8c85d usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x884d9075 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xaebc169c surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/uhid 0xd07acc0c uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x25ad1e3c usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x4546d45d hiddev_hid_event EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x09d912b0 hsi_port_unregister_clients EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x14c4126e hsi_remove_client EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1f97ec99 hsi_alloc_controller @@ -12937,18 +12829,18 @@ EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x1d4d0c72 d EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x98da97a5 devm_iio_kfifo_buffer_setup_ext EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x0cdf2805 bme680_core_probe EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0xa161e316 sps30_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x13a259ba cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x3494c443 cros_ec_sensors_core_init EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x50eeb81f cros_ec_sensors_core_read_avail EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x54169f7e cros_ec_sensors_read_lpc EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x60ceb5a7 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x66b0c5e8 cros_ec_sensors_core_read EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x84d4d5f3 cros_ec_sensors_read_cmd EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8aa76f93 cros_ec_sensors_core_register EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x93603411 cros_ec_sensors_ext_info EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xad780536 cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xaf0dd260 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc4e3ca20 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe5676e85 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xb4c252d7 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xb53bd9ee cros_ec_sensors_core_write EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x02e7f9b5 ad5592r_probe EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x0935f5d9 ad5592r_remove EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x60ccbea6 ad5686_remove @@ -12975,6 +12867,7 @@ EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0cee94b7 iio_dealloc_pollfunc EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0f6dd6a0 iio_push_to_buffers EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1111f563 iio_map_array_unregister EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x180986d3 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x185c4dfb iio_device_get_current_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1acf1b29 iio_channel_get EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b1d336d iio_show_mount_matrix EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2534c758 __devm_iio_device_register @@ -12994,12 +12887,15 @@ EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5d45d83d devm_iio_trigger_alloc EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5e35587d iio_alloc_pollfunc EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x61af8ee9 of_iio_channel_get_by_name EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6a5e714f iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7a4702b9 iio_device_release_buffer_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fe7a140 devm_iio_channel_get_all EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8b39ff5f devm_of_iio_channel_get_by_name EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8de1fbac iio_get_channel_ext_info_count EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x917645b1 iio_read_channel_processed_scale EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x941d82d8 iio_read_channel_scale EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9da3b3ec iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3ba60e9 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb01add08 iio_device_claim_buffer_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb5beb3fb iio_read_avail_channel_attribute EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb703ff01 iio_write_channel_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb7d49169 iio_channel_release_all @@ -13029,18 +12925,18 @@ EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xd388ddcd zpa2326_probe EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xd72d56c7 zpa2326_isreg_precious EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xdfca36b6 zpa2326_isreg_writeable EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x129e4a49 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x24e20908 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x67f4c197 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9f046117 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb08c48d2 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc376f0eb rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc37eeedb rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc7c9574e rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd8feea5e rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdf49c23d rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdf7a7205 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe5e91b29 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1b445c28 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1d07d82d rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x41de2233 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5656cdbf rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5a7b1efd rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x753883a8 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7819ce9d rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xabe71310 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc5c76908 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xded5ebe5 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdf6e7e13 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf27906a8 rtrs_iu_free EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x9f6a7011 input_ff_create_memless EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xe06c2d73 matrix_keypad_parse_properties EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x1724d0d7 adxl34x_probe @@ -13071,30 +12967,30 @@ EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0d5a8a3b tsc200x_reg EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x18a9daec tsc200x_pm_ops EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4f8f00e6 tsc200x_remove EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc7ba2f0e tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3d35de54 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3ee79a92 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x42bbd724 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5c6707a6 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5f05ca7e wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x93afcae0 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x954c7ce9 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa7ee36b6 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd47f1efa wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe5c1f0c9 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xeda61fd3 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfe646ef4 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x37bfbe0f imx_icc_unregister -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xe69ca158 imx_icc_register +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x15506391 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x29ec752e wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4f7518d1 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7134c9ae wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7b585ceb wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x814ed7c9 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8c3b49e5 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa020d46a wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbd9ec930 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe1fea095 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe8300f57 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfcd33ab5 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x52b9d98e imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x5bf9537c 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 0x4e4bb66f of_bcm_voter_get EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x0ee59bea qcom_icc_aggregate EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x2728eac2 qcom_icc_set -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x4b98f9ca qcom_icc_rpmh_probe EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x7ebd4266 qcom_icc_xlate_extended -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x93290562 qcom_icc_rpmh_remove EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x97852a05 qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x9941d463 qcom_icc_rpmh_probe EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x99942676 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xc79eb7cb qcom_icc_rpmh_remove 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 0x1b02c3d8 ipack_bus_register @@ -13133,6 +13029,7 @@ EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_s 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 0x02ad4d69 __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 0x0826e917 __tracepoint_bcache_read @@ -13143,84 +13040,83 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeb EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x191717af __tracepoint_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1934a9a9 __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1a157af1 __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c71a406 __tracepoint_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x204eb2ba __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 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 0x29a86d0a __traceiter_bcache_read_retry 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 0x2df917af __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b84e3ec __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x454c9a3d __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a048230 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3aff9ad6 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3dbc8dc4 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3dca1280 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fe26bdd __traceiter_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46bfabee __tracepoint_bcache_writeback_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5150d5ec __traceiter_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x52e1a6e7 __traceiter_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x53b5e5e3 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x59dd86ef __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x54e3965e __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5519e923 __traceiter_bcache_alloc_fail 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 0x5dd08cff __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5fd7c423 __SCK__tp_func_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6026e276 __SCK__tp_func_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x6ad2225a __traceiter_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e32deeb __traceiter_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79e5567e __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7911fecc __traceiter_bcache_journal_full 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 0x82e2bfb8 __traceiter_bcache_btree_node_alloc 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 0x886df10f __traceiter_bcache_journal_write 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 0x91beb3bc __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9225ecb0 __traceiter_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92a54184 __traceiter_bcache_btree_node_alloc_fail 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 0xa64c9073 __traceiter_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa852ffca __traceiter_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaa27035e __traceiter_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xac1d5100 __traceiter_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xafec5c10 __traceiter_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb11289b4 __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7d15a6f __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb912ae0b __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba36e1ec __traceiter_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbf86a42 __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc268695 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbd14bc84 __traceiter_bcache_btree_node_compact 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 0xce48d6f4 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcf2710cc __traceiter_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd2502336 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd49059f6 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd827e119 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9cf3a35 __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb7ad5b6 __traceiter_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe15a1e7b __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe0876d06 __traceiter_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe202b8e6 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe21320b1 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe6675029 __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 0xee55d047 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeeb927e7 __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 @@ -13477,7 +13373,6 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_te 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 0x00755b07 __traceiter_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x040e27e4 vb2_core_expbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x052f3941 vb2_plane_cookie EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue @@ -13488,17 +13383,16 @@ EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x24451812 __ EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2593782f __tracepoint_vb2_buf_queue EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2faece24 vb2_thread_stop EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3b650b7c vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x46615c81 __traceiter_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x46630477 vb2_read EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5481732d vb2_core_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x562d6bfd vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5c84cb19 __traceiter_vb2_buf_queue EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x63e902a9 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6c396f85 __traceiter_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x79c81a2a vb2_core_streamoff EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7d86ef11 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x887753e9 __traceiter_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8d76faee vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9845709e __traceiter_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xaede5f9e vb2_thread_start 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 @@ -13507,10 +13401,12 @@ EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc3b10f55 vb EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc3fb44d5 vb2_buffer_done 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 0xcef9f208 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd24f7837 __traceiter_vb2_buf_queue EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd91a47c1 vb2_wait_for_all_buffers EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd9d0b5ce vb2_core_create_bufs EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdbbdbca1 vb2_mmap EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe0196261 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe0fe56c8 __traceiter_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe751bd5f vb2_core_querybuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf794a032 vb2_core_reqbufs @@ -13557,12 +13453,107 @@ EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x7b4eb171 dvb_create_media_g EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x897656d1 dvb_module_release EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xfb20fabd dvb_module_probe EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xb9e40d67 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0x7e31fdba ascot2e_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0x243d24f4 atbm8830_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0x8139f393 au8522_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0x2cd98e1d bcm3510_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0x45e1f985 cx22700_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0xc1bd5682 cx22702_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0x5ef1b3ea cx24110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0x81ecec8d cx24113_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0x3b2262da cx24116_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x90d3d3b3 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0xe2f903a6 cx24120_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0xa6a95b4b cx24123_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0xfb9d08d4 cxd2820r_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x9af2493d cxd2841er_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0xff056e06 cxd2841er_attach_t_c +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0xc5a5ad99 cxd2880_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0x6d9d2b2e dib0070_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x294795b9 dib0090_fw_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0xee9db983 dib0090_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0x440afdca dib3000mb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0xbac8450c dib3000mc_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0x59c813da dib7000m_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0xc53c9bc3 dib7000p_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0x814fa85e dib8000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0xa459325d dib9000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x47c5a27a drx39xxj_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0x260b7f52 drxd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0x85000ec8 drxk_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0xa00b62ac ds3000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0xde293a29 dvb_pll_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0x4433a168 ec100_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xd7d1257c gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x06669786 helene_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x889d55b2 helene_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0xc1a397b1 horus3a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0x8017e4e8 isl6405_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0x69e975c5 isl6421_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0x584a3cd6 isl6423_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0x95fbbfdf itd1000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0x202e0baa ix2505v_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0xcb245847 l64781_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0x4014932c lg2160_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0x943bf45f lgdt3305_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0xdaa5466a lgdt3306a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0x0fd48772 lgdt330x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0x7ff2c3a1 lgs8gxx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0x073909ac lnbh25_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x15e38b84 lnbp21_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0xacbb362a lnbh24_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0xc6d6bc8b lnbp22_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0xbe72afb0 m88ds3103_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0x91b7633a m88rs2000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0x10341f4a mb86a16_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0xa2382923 mb86a20s_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0xb39ce260 mt312_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0x93d1663e mt352_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xf9a738dd mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0x50a75315 nxt200x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0x7dbb2c0e nxt6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0xb21423c9 or51132_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0xd3c662b4 or51211_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0x8f2929bb s5h1409_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0xfb3167d5 s5h1411_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0xf0f38e1f s5h1420_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0xf5804a09 s5h1432_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0x0ed335b3 s921_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0xcf569a08 si21xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0xd78e0d42 sp887x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0xdadf0e8b stb0899_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0x75daddd6 stb6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0xa55e41ab stb6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0x358e96d8 stv0288_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0x69172c75 stv0297_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0x04a06ddd stv0299_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x345a3736 stv0367cab_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x8598d361 stv0367ddb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xb568cd5b stv0367ter_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0xa2b07fca stv0900_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0x23efc84a stv090x_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x6b843548 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0xec0fad96 stv6110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0x8ff9c3a9 stv6110x_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x0462c56f stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0x21efdca3 tda10021_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0x017bd750 tda10023_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0xf7d8b31b tda10048_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x9fd0bd77 tda10045_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0xa45da203 tda10046_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0xdd773d9b tda10086_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x726d004a tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0x88eb66d5 tda665x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0x2ae00dc3 tda8083_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0xa315daaa tda8261_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0x81b148c3 tda826x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0x079b8f5a ts2020_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0xe716ed32 tua6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0xfabebb6a ves1820_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0xb7871264 ves1x93_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0x35334c11 zl10036_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0xc2ab6ed9 zl10039_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0x56c628d1 zl10353_attach EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x3bed7049 aptina_pll_calculate EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xb0e87ee6 ccs_pll_calculate EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x04f79b43 max9271_disable_gpios @@ -13626,53 +13617,56 @@ EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xefcfcf9e __media_entity_remove_links EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf17cca5f media_remove_intf_links EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfff624db media_device_delete -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x7f6881c3 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0cd7d83a mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1855402b mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x229ca02b mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x32792db2 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x49e211d2 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x55f9cc48 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x85d5d5d5 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x88329e08 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8897f7d5 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x89d98af8 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9773959d mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9aacf2fc mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9abb8867 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9f462b4c mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc475069b mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc59e126b mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc6d87423 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcdb4f2fc mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe6b201ee mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x10d7acf3 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1ad956bd saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1cbd5bcf saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x277ae2b3 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x35b79086 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5deaf163 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x606700a0 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6f39aa20 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x70606c44 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x715bad7a saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7455e783 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9aa414da saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb3c1d0a7 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb9ec46e9 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc2227ae9 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd0960552 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdd6512b8 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe79b551d saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf2bc3f7f saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x019cedce ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6668dc5d ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0xe9e31049 dst_attach +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0x5b8d1146 dst_ca_attach +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x9113bb83 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x9e05ad5d ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x02a0d9ee mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0e99a2e1 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x128e0ce5 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1b3716d1 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2fec3c87 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x31a7aaab mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x381eb09f mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4d41457e mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x56ab5edc mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5eab181a mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7911b7c8 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x977c12e7 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb18f1bb9 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb8bea581 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbda2b7d6 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd28a0b7c mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdb331148 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe48aaefa mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfd23e57f mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x009e6476 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0b7389fc saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1be79c07 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2d6a400a saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3bbd19d2 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x40dab94b saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x593098f8 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x67d3796e saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x76d99da9 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9aeb3fbc saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9ec6d841 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xae392399 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdb2c04bf saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xed034d21 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xefe1b469 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf42694e3 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf4599f68 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf8e657fd saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf8e7c836 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x23654e7d ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x34671f29 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x674570f8 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6a1544a2 ttpci_budget_set_video_port EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9762f761 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9d412eea ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa1178607 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa5dcc280 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xece0f4f4 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x87fb60a7 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9e7fd699 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe640a436 ttpci_budget_deinit EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x0a7999a8 nal_hevc_tier_from_v4l2 EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x0d979233 nal_h264_write_sps EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x11c457df nal_hevc_write_pps @@ -13695,14 +13689,14 @@ EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x2d59d7da mcci EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x6cc09595 mccic_irq EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x8c288805 mccic_suspend EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xc660f856 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x37072861 vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x8d0522b3 vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x8d9c877e vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xae1acbf5 vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xc0f5b1e4 vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xcf160ac1 vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xd6014f27 vpu_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xe5e06904 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x17a87c79 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x4d0afd49 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x914115a9 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x999fa406 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xb81156e5 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xd78d14ef vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xe00885ee vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xe12b1a95 vpu_wdt_reg_handler EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x04ca06c6 venus_helper_get_bufreq EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0b1177f1 venus_helper_vb2_buf_init EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0c078030 venus_helper_vb2_buf_queue @@ -13812,10 +13806,21 @@ EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf9752be7 devm_rc_register_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfe265dc1 rc_keyup EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xff3e7a26 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0xd5cb2246 fc0011_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0xd8833eaa fc0012_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0x67d9db0c fc0013_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0x1b75e427 max2165_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0x5955107e mc44s803_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0xc06f63d4 mt2060_attach EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x079bc64f mt2063_attach EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x0f6cfbbe microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0xddf3f1dc mt2131_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0x89b9b32e mt2266_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0xbb37f789 mxl5005s_attach EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x742d3bdd mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0x24afe02a qt1010_attach EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x9c2d4949 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0xa92462e4 tda18218_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xfab3cca1 tda18271_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xd8ca7349 tda827x_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xb977d778 tda829x_attach @@ -13826,6 +13831,8 @@ EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x90f7e7f3 tea5761_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xc63670bf tea5767_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xfff922c8 tea5767_autodetection EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x508b4806 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0x7117de3e xc4000_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0xa5adabd8 xc5000_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x02823080 cx231xx_get_i2c_adap EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1153c398 cx231xx_dev_init @@ -13847,8 +13854,8 @@ EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdb2f122d cx231xx_uninit_b EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf0071a33 is_fw_load EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf2ab8f55 cx231xx_uninit_isoc EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf3d21f23 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xb3f1ab13 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xfdc10327 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xe52103a3 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x3e03e718 mxl111sf_tuner_attach EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1a1b0cf2 em28xx_stop_urbs EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1ce5389c em28xx_read_reg EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2624c0d9 em28xx_toggle_reg_bits @@ -14015,6 +14022,7 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ca36760 v4l2_event_subscr EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f2f9ae5 v4l2_create_fwnode_links_to_pad EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3192e5ca v4l2_subdev_link_validate EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x341490b6 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3887bb41 __traceiter_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x38d9fa2d v4l_vb2q_enable_media_source EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x39bc3627 v4l2_create_fwnode_links EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x39ed4f84 v4l2_subdev_alloc_state @@ -14025,7 +14033,7 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x452f53b1 __tracepoint_vb2_ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46ac032f __tracepoint_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47c43a29 v4l2_ctrl_request_hdl_ctrl_find EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x551b53fb v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55c46513 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5e1a7b6d __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 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp @@ -14042,21 +14050,19 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8da0ada0 v4l2_event_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fe0f688 v4l2_device_set_name EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x904d8fe3 v4l2_fh_release EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9832584f v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b6f7045 __traceiter_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9dd0d7a9 v4l2_compat_ioctl32 EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fd2016c v4l2_fh_del EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa3970b34 v4l2_spi_new_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa77bb206 __v4l2_device_register_subdev_nodes EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa816e779 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9e1cf3d __traceiter_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae3a989a v4l2_i2c_subdev_addr EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb060fe12 v4l2_get_link_freq EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb5a123ba __traceiter_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb8fadb00 v4l2_subdev_notify_event EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbefa6c37 v4l2_mc_create_media_graph EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc0fc1d88 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc62ecd9d __traceiter_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc68975ef v4l2_event_dequeue 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 @@ -14066,6 +14072,7 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe1bbe354 v4l2_i2c_new_subd 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 0xe7903272 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xea33efb0 __traceiter_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf34dbf3b v4l2_src_change_event_subscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3f36201 v4l2_ctrl_request_hdl_find @@ -14104,8 +14111,8 @@ EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe5bff629 arizona_set_irq_wake EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xedf85d3d wm5110_patch EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf70ccece arizona_request_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf725b096 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x1365ec22 atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x275980bd atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x30164c38 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xbb3e440c atc260x_device_probe EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0750f4d5 da9150_write_qif EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0933ce44 da9150_reg_write EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x33affe91 da9150_reg_read @@ -14174,62 +14181,62 @@ EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa9f268bb mc13xxx_variant_mc13783 EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xbbfd9dd3 mc13xxx_variant_mc34708 EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe948239b mc13xxx_variant_mc13892 EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x07867e3d pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0dc1ee4e pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1875fc03 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x32cd34b7 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3dba3f42 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3fe6a026 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4f3f0bcf pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9e8a09b8 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb3068715 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf01404af pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfd0fba45 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x0dfda1cd pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x4de32d8f pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3f4de3f5 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x87ee8c83 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc8ab47ff pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xecdf16a5 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf202ea8c pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0c8f889d pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0cadf89a pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x11e79416 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x36fecd79 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3de9759e pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x72f0ce25 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x77d01bed pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x888dfbb0 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x98b6baa1 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc2c87494 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe6f0b0c3 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x3451daf2 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xd20f06e4 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x63d1f666 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7f4fe4e7 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x965c3c7c pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa7ae37ca pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfdf5b736 pcf50633_gpio_set EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x0a0eaf62 devm_rave_sp_register_event_notifier EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x083735e3 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d30df9c si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0fde7856 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x19e7e9cc si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x203b9a79 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26d378a8 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3439e6eb si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x49885ce0 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4de02132 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x535e6932 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5ad05644 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x65a58d2b si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6c468910 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x71f8cfd8 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7300d366 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7695a8dd si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7bde295f si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8103ad1f si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x89a2a314 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8b8b7cd8 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8ba120f0 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c1cc61d si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8cbaac77 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x99a101dc si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9e015e47 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9e742a27 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa2bea797 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa31f9884 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbb792b05 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbeeddfad devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb8f6c2e si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd7bcb850 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe6b87b3b si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe83a14eb si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x11bceba2 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c289d50 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24665bb5 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x29f9afa4 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2b201a8c si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2b4cc3d2 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2d55390f si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x30dcaa6e si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x32f80623 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3957459d si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x402ee4d4 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4d03801a si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x62b2f6bb si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6a6c0c82 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x73899384 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x77d0f6ca si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7cc952cf si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f2af0b5 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x822a9800 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x876d81a3 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8ea81a91 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x90446755 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x92cdff14 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x97ba69e3 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa4c8709a si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa7810049 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaca80696 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc2a419f0 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xde2d85a2 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe1cc9495 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xea77b50e si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xead9a662 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xebfa8f9c si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfcf5af7b si476x_core_start EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x5365a6c5 sm501_unit_power EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x5aa17c27 sm501_misc_control EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x61454432 sm501_modify_reg @@ -14238,10 +14245,10 @@ EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe895986b sm501_set_clock EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0x549899f5 sprd_pmic_detect_charger_type EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x45691c51 stmfx_function_enable EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xfdadfa5d stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x5f017961 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc0e626c7 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd1cc1ae8 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd3953f4b am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x01ccf5f3 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x0395d050 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x12bfec7f am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xefc40ef1 am335x_tsc_se_adc_done EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x67762b43 tps65217_clear_bits EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x74d40569 tps65217_reg_write EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xa61682c7 tps65217_reg_read @@ -14257,30 +14264,30 @@ EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x89cc90f2 alcor_write8 EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8fc044c2 alcor_write16 EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa65453c7 alcor_write32be EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xb866a413 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0add5648 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1ad6fe21 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1d30d886 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2d13e135 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x316adaf1 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x37d510d7 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3a4db6a2 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3e9b5828 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4776eda0 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x57031c5d rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6fbeabd5 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x74e7d257 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x85ba43f0 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x894359a6 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9b826d00 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa4c23c6b rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xac224724 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xad6d2aa1 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xaf0ad549 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbb62eb49 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xceecd6de rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdb6145f6 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe5f0bc8e rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xeeccf44b rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0a3aa859 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1ce9921b rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x294423a6 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x30a7592e rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x368eb2f1 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x37417f89 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4fb7a0ff rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5658be7b rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x56e75a3b rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5d5ea549 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6ae16c08 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7b663ff6 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x803299e1 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8b0b6cbf rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x933f4a81 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x945aa7e1 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9772358c rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb68b422d rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbed1d61d rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbeea3158 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc95ed787 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe37b5776 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf8479061 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf8f83018 rtsx_pci_send_cmd_no_wait EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0b8e20b8 rtsx_usb_get_card_status EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0ea33d26 rtsx_usb_send_cmd EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1ed8f751 rtsx_usb_get_rsp @@ -14296,8 +14303,8 @@ EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc3b8e2e3 rtsx_usb_switch_c EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd94d711e rtsx_usb_ep0_read_register EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x17c5d270 cb710_pci_update_config_reg EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x69603346 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8f032244 cb710_set_irq_handler EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb867358b cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc42aa795 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 @@ -14319,17 +14326,17 @@ EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3e791e94 enclosure_remove_device EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x659c4f17 enclosure_unregister EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7f4e147a enclosure_component_register EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe3e0df6e enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x19bd1e46 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x73a145a8 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xabf45486 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xade9c2d2 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc848071f lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc9b706bc lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf0f2f847 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xffdafb06 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x680aa4b5 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8574c740 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8a55b6b6 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8cf885de lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xaf95e64b lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb0faa727 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc0328dea lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd411aa52 lis3_dev EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xe51cb612 devm_pvpanic_probe -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xb7499403 st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xf594e8f7 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x9778b3b2 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x9a3e360f st_unregister EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x9d857c00 uacce_alloc EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xa8debd3c uacce_remove EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xfa3c7957 uacce_register @@ -14361,74 +14368,74 @@ EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscr 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 0x32098756 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x2bdf6f63 dw_mci_pltfm_register EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x6265ec06 dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xcf6bc83c dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x028c1a20 mmc_hsq_finalize_request -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x9b00cb33 mmc_hsq_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xa0a267f6 mmc_hsq_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xf6cda52c mmc_hsq_init -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x98c48f30 renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xc5962f05 renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0731709e sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x17b3ad42 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x276faac5 sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2ddcac5e sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2efb68f4 sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x306fb5ff sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x359cc243 sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x44cd91e3 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x452705e3 sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4aa520ab sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4b296c2f sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x549c3944 sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5f4e4ebf sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6468d4a7 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x70c4ecff sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7126b8c1 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7807c2a0 sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7ec42a36 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x882390ff sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x88a43b43 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x93681a12 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x99a0932f __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9c972f6b __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9f2ddc18 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa1931f5d sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa273972a sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa3e9b8bd sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb01a4ab3 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb8329c77 sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbb3558ee sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbbc7adeb sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbea6607f sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc6dabb13 sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xce3cf331 sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd7b4834f sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd9067784 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdab5d7a6 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xee300c6c sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xefb85368 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf0a0da95 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf51146a5 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x12dc0522 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9ce5d4cf sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa81ee877 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xb424b544 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x45d9d00e mmc_hsq_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xaab54412 mmc_hsq_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xc9d8a7bc mmc_hsq_finalize_request +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xef9ee7fc mmc_hsq_init +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x39a49e93 renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x55cec000 renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x09ff52f3 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0f3e7ae7 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x15f4cc6b sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x242e7229 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x29d786ef sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x38af747c sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4cea4591 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4d0d4484 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5409a46b sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x54793adb sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5f8cef91 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6c774b19 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x702f8006 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x74908c06 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7872cf31 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x91f4a5f6 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x95acb413 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9707be60 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x97292288 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9aa9445c sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9ad45040 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9c976e37 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa51b03e5 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa7ef73fe sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa9abe223 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xada8497c sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc12ca567 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc185227c sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc5505ef8 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc674da37 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc9e9b2f5 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcc1e187d sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xccad010e sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd0e32a10 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd1570812 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd59d9777 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd8a5ef9e __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xed0fe4b6 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xef0137b7 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf54ea58d sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xff73bfb6 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0103ede4 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8e86b002 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x95cf726d sdhci_get_property EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb8c2fa8d sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc64030b7 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc0f55973 sdhci_pltfm_unregister EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd0693df9 sdhci_pltfm_resume EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd1ef72cc sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe124aca6 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf55fd90d sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x2b277d1d tmio_mmc_host_free -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x2e8ef578 tmio_mmc_do_data_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x32770628 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdb50509e sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xeeab6ddb sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x0673b9d7 tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x07cb1897 tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1df5911b tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x2702a1f3 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 0x3cefd18f tmio_mmc_host_alloc -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x46a24f1e tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x549db1e7 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x76aa426b tmio_mmc_disable_mmc_irqs EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x9248aa88 tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xcef16a5d tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xede12527 tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xa9c67481 tmio_mmc_host_free EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xfcd1d779 tmio_mmc_host_runtime_resume EXPORT_SYMBOL_GPL drivers/most/most_core 0x07619a15 most_deregister_component EXPORT_SYMBOL_GPL drivers/most/most_core 0x359b47fd most_stop_channel @@ -14539,8 +14546,8 @@ EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf946f280 nanddev_isbad EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfda5ebb3 nand_ecc_tweak_req EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x1e91f608 onenand_scan EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x86c273e8 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x40a72444 brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xee00fd61 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x68831d35 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xdfa4f14f brcmnand_probe EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xf077c16a brcmnand_pm_ops EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x4e20a986 denali_chip_init EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x016ab7f4 nand_read_oob_op @@ -14607,366 +14614,366 @@ EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xbf983498 mux_control_try_select EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xceaa3f93 mux_chip_register EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe4ea734b mux_control_states EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf4eda36d mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x06ba84d0 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x1e8bc31d arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/bareudp 0x96d84dad bareudp_dev_create -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x287bb3f7 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4c4568c7 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5fac899a unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x63347e77 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7e1a2520 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xde2bd974 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x04f4074f unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x818d0c57 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xac94dd4a alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd4fefc4e free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x39dd2b0b arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xe1344d67 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/bareudp 0xe69184aa bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x74b73300 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x892297e4 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xae67e446 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe4ddee08 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xea87bf67 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xee2d7fc3 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x28087fbf alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2c92c07d register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x788b047a unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xad4b9d75 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x00c768f0 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x08499b7e register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0a74cec8 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0bbed5e1 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 0x1496e2ca can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x206ad07d can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x280cd666 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x36d6b493 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3b4f94f7 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x43f161b5 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4745c5b2 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x498c832f register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5c93ad08 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5d50c895 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5e5a28fd can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5f4479b8 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5ff3e634 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1e5e5ab3 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x25983a76 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x28394b51 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2cef77e3 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x318ab8ba can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x346dfe1f can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x40be6e54 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x44771ad2 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x515d6b22 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5bfdb1d1 of_can_transceiver EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6c5d02b1 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x73eeb7b7 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x756fea80 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8c4f4e81 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x91c974a1 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9d120a9e can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xab2a2368 can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb69ddcfe alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc70c8904 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xce5d4e6f can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd3d1482f can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdfeb46d8 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe6ae8063 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe918c36a of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xed3839c0 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x65ad8e31 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6bf5550a alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6f0e7be2 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7e4faa5f can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x910322f2 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x91af0359 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa27018bd alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbcb82e8a can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc164c6d6 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcfe6244b can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd515a552 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xde2a3c0f safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe322602e can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe7c421b0 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xeaa26bf6 close_candev EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf2e50982 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf5b4ddc9 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0871f34a m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6f579ce4 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x88ec2c82 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x95180496 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb8175229 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcfb9967e m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdf26c540 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xfd7b283c m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf16309aa alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x2fe1dbe4 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x3b7e1e5d m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4ea2022e m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6a5d094b m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x8b872e72 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa58de5ce m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa6f40df6 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xbea77411 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x017fd561 register_sja1000dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x8c9346fe register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x995a8256 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xaa2e4889 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc3fa55b8 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x72072b62 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x060b8195 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0d787771 ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x17976d84 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x345a545d ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x50b54f68 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x52137b93 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x65fa2519 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x84d0f9a7 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x91ef25f5 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc2ae059a ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe81bd7ad ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xea4f9ef3 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xedd751ca ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf7ed4e0b ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x07c1ec1c rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x08cd8a17 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x143d4698 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4c4a80c2 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x51d0f89c rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5473641f rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x55852f78 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7a34ff18 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x88910329 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8fea90d2 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x918c9319 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb58344cb rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb6909a92 rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc5d25560 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd304a003 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x1ca53063 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x9378b199 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x2e70d1c6 enetc_mdio_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x73fd0eb1 enetc_hw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xb0344a5f enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x92e90618 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd2371116 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xdc7cf3f9 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x32d6d65c lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x09471d31 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x36645f94 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x42df0ffb ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4b05ee0b ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5986847a ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6c802304 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7acc7996 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa2915f92 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc0729b7b ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc60a2bb3 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd7f856ae ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xdd7f6803 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe5b9d2a8 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf4e72c10 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2f5bd417 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x32a919e9 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x39a45aae rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4d61dc43 realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7016ea3a rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9282ade6 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x944364ef rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9a656c8b rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbd613e42 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc1188dbb rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xce4cc40b rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd5b12a56 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdbbb89f2 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdd98d2f9 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xeace0de5 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x69711f83 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xe09e0d62 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x370bf16e enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xa04039b0 enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xbc442420 enetc_mdio_read EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd9d61d6f enetc_mdio_lock EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x9bdf29f9 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xfbfa298e i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x29a3d831 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x5429a9a9 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x77a0b799 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xa9706256 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf97d1b34 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00681cd2 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00e2d4ee mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0146482c mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0314690e mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x049dacaf mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07438f81 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x090d8250 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a687ac4 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bf12ea9 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c45edb7 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e62811e mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0eb39806 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fe43bfd mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ff2fc5b mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x105d6541 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x129717f8 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14f984b6 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1752bb18 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17a09ed7 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18fe2519 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19c17e8c mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19dd4d72 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b4795fc mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c906dee mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cc8da5d mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d0a4f41 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d8529ae mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ffad723 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x204e9f3d mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2100bc51 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x212f3ad3 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2401a370 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2528a70d mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x257d5043 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26086b07 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2777b19e mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27d79b8e mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28f85fe4 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2db246a0 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2de3bf20 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ff45291 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36603d8e mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36d1bde7 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c9cee45 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d0e70a0 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d797102 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x406fe9b0 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x425cd2cd mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x458ba6b3 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46f25883 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4910bec5 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bf414ff mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c100913 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d41b383 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e9b8707 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ea9f0ab mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5245a755 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bc136b1 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dbf21f8 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60097ac1 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64a74b08 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x698e7967 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b32575b mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bf1aaed mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c62ef38 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e61e50c mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73f14695 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75ee84b1 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fd3282f mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81185539 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83125d2e mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84e540d9 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8539346b mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x857bca62 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87853af1 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8932e929 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89ac1218 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d70f119 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x926eadf6 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x946172c1 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x997bd09a mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99ba4651 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d4ab2cc mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1221588 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa20ee850 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa216ef52 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3f2ee5d mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6a5d3a2 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad062e06 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf88acc3 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb095e22d mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb38f68ea mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7f1c9b4 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb947281a mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbaedca68 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdf84b9b mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe63a056 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfaf3c12 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3cb82c1 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5670ed2 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc57de97a mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8920634 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca2a41b9 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcabc022b mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb340553 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce83b239 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd32c66d9 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd36f981f mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd401dae6 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd83e666e mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd956c638 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda362e1b mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdae44268 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbe6a6b0 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe198453c mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe36239d4 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe40a3eab mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe61a81c5 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0788573 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf96f8fcb mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb423c09 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0147cfc6 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x52b7af2e i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xeebb1b99 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2b45127f ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4ba0f874 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7b18177c ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb2a21882 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xd5bb8706 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00fc8e66 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x032f015c mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03ac0820 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0655d827 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0753ed0f mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09414ba0 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a4d47c2 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15d03a67 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17154af7 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17906642 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18620007 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19552e24 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e84f6de mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f63ea1a mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2242d528 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x254dc9d8 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x273141f6 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28f640fe mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f710708 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37742379 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3830d4a8 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38b464d6 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3add5584 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f1cf3d5 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x443e7407 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44ff7246 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4590c21b mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x476f953b mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4aff6f3a mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4da25baa mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51776a7f mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5262252f mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53642a68 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54e6d94f mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x560214f4 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58a04af1 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5952793c mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5952d2bf mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c54c1c5 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60707d7d __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64b2b9da mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6779939c mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6781f99a mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x689209f9 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6beb0a60 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d4f890d mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dd388a6 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e683436 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ec80588 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7023a241 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71f34bbb mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74e88957 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77d64dff mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79a48c1f mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x811744c3 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8271c7a4 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85199266 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8804e23f mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88b0f2f8 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8de5136b mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e7428c6 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f8f2087 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x904b3ccb mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f6feb91 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa419a364 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa453e5f2 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4b8097b mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6269de1 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa63b3dd1 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa63d44c7 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa70c3d44 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7a6fb2e mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa925d3e6 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9b06b23 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xada03988 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafa586ae mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb00b778f mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb18e3c2c mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb22c5d1f mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb42e3fad mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4fe4af9 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6c11f8c mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7720f00 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7eee02a mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc013f33 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbeac07f3 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc026b76f mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0a58c4a mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc118c022 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc19c8cec mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2c66022 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc30e3338 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5bc1308 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc61c027c mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6283a3c mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb41cfc5 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccddc089 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce54ce96 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf0fa247 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfe466b3 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd17462f9 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd408c0df mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd44c53c2 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9425136 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9c8e7f4 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcf1614f mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde0dac68 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe237d57b mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe40bbe08 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed34ba90 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee977755 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef60b5a3 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4417075 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5734e30 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf57f03b7 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8cc79bc mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa422cd1 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfab7e9dc mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc560fe5 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd5d34a1 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd5edd62 mlx4_srq_query 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 0x08a1109c mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0de71d8a mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ff2c99b mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1568d20a mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x168a6011 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1759635c mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ca66a13 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20a0972c mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x252f66c0 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x256b51e7 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27b5c203 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28715e58 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a9f007b mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37945c89 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x399d40a6 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39f8866c mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c2b5d33 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x480c563b mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4828840b mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49a4dc0f mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49de5c60 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5fd9e5 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e1a411c mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fd35e45 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b6b8985 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d39a7c6 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d4d6d57 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6190a086 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x681684c3 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75f55c21 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7872f7a5 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a9e0e63 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ae070ab mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80ba4a8e mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09a85140 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c192b3e mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d6784ef mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1142e13b mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1614a327 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1736577f mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x194386e2 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cfe080b mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ef30a80 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f066767 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20e95f6a mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24021481 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2947dd10 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3765e810 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39db65f0 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39f614d6 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x479a0e99 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4851eb87 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4877e620 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48a9ede9 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48f989b4 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bdab366 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52366612 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x535f9085 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x582b81fb mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5adb2bf9 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60179407 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61adff22 mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6247b642 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63a1e204 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a8187ea mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c50725a mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74f1783c mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x769cf23e mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d5abce3 mlx5_query_port_ptys EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8686178a mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87e0f242 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95c77e40 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9827a1a7 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x989b4e91 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99330a73 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99678428 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6ee5cd mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa246062b mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa26da48c mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa37f9f62 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3dd5d5c mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa426e916 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa44dcce6 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4892361 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82907078 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a2efb7a mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ac56aa7 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90fff6ad mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95cd66b4 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95d1e1b0 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96dcad82 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x981d08e0 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f0a8998 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4aa4779 mlx5_core_query_sq_state 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 0xa8ce144e mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabefd6a3 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad80bb73 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafbc00f0 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb460685b mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8a72693 mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcde4e7e3 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd65c620e mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd681366b mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda29060f mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3c80fba mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4fc5aa3 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe52a0e1a mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee9c52e4 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1c9e929 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3ad7bdf mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf49279bb mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6f81729 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf750aa27 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf91bf961 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbb52a83 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x027c4701 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x11bf6271 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x5ed797b2 ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x6645930c ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xb6b17943 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab6f7511 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb01d72d1 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb39b012c mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3b1784b mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb40a8d4f mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb60fa997 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb65ab546 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba36339b mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc14d2031 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1c826a7 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc73eb5a3 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce967b86 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf45086d mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1a3da8c mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6a5f61c mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7e56dc3 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe27ea63e mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb62c9cf mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0263a45 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf18ac240 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5dd9797 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf694d1f6 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa8a7cce mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd2e76d0 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfeab9c4f mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff005e75 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x4aae47e8 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x551aa4a3 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xa37a418e ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xc9f3a13f ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x8db132ca 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 0x0181782d ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21617378 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x291dbdc6 ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4bd37ae9 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5c7a3950 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x610904ec __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbe0acc27 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbfdfe81b ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc37c666a ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5b948a5 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe4f63752 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecea0d1f ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfffef0fa ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a99bd20 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x27c4aded ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ece0902 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x576da307 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x581641fa ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7153db5b __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a1c7b96 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b6ae32e __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x97f2a9a0 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c43f7f4 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8457d35 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd22466f6 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf4edddf1 ocelot_port_readl EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0360a8c6 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3e53ee7c stmmac_bus_clks_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x400a5c15 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x55981b52 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x75d04405 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x188cc4d8 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x43c7bac2 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7c4fc782 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 0xad4736ad stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x97264629 stmmac_dvr_probe EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x283f41d2 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4b051054 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5d5aabcc stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8d8c6fdd stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbbf0e6a5 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x23d6e6b5 am65_cpts_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd45b1709 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xeb6fe276 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x0161fdc5 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x02a8d21e stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x529c5a2e stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc25e8063 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd51550c6 stmmac_probe_config_dt EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x405b51c2 am65_cpts_ns_gettime -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x607d4dc6 am65_cpts_prep_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x795fa24e am65_cpts_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x7cbad307 am65_cpts_prep_tx_timestamp EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x91fd3558 am65_cpts_rx_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xa9278e37 am65_cpts_create EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xb60b988a am65_cpts_estf_disable EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xbfc83e4d am65_cpts_estf_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xc78c9451 am65_cpts_create EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfca9b9d9 am65_cpts_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x35ed40d3 w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x44526eaf w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x9723899f w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x99fd6d7c w5100_probe -EXPORT_SYMBOL_GPL drivers/net/geneve 0x78f48afe geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x01301413 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x435b6eba ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5276892e ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8652a704 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xde32b599 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/macsec 0x1637bbf1 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x18a389ea macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x394f2094 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x725a9d60 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x81085d05 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x495fb53a w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7066aad0 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7835c0b1 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xb7ce8490 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0x9e028ae7 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x048d63cb ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2498dd10 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2d3eaa95 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x9159a3a2 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xcd002d3e ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/macsec 0x737ae005 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2dcf04f0 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x86405daa macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x970c14e9 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xfccccec3 macvlan_common_newlink EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xec483933 mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xa762c33e net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xa78a68b8 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xb787ea40 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xebfa3ae9 net_failover_destroy EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x46cb5afd xpcs_destroy EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x6088a72b xpcs_validate EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x69b11fc1 xpcs_do_config @@ -14974,874 +14981,874 @@ EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x6bf6c0c1 xpcs_config_eee EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xd46eb785 xpcs_get_an_mode EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf6523939 xpcs_create -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x014b6509 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1ae55128 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x27b5e9fb bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x294b39b4 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2d1da9a5 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x340670fd bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3f68e4d0 bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3fd87afa bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x402e7206 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4891ff28 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x49a911ff bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4d77df00 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5024c921 bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x67dc31ac bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x68825ab9 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6a181e92 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6ee807a4 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x77965912 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x896dc698 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x91d7e873 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x980e3056 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa50d6112 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa83f9736 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa94c98a4 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xae65bd6c bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb09c1caf bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbc11e615 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbc39d575 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbf78366f bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc2e0470f __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd01e8b7e bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe6d77cd6 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf22d3697 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf329ccf5 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x16f284ae bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x19a183a5 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2171bcb1 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x29f804c5 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2d055b49 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x43b7ee54 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x48452fdc bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x511484e3 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x56a0c36c bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x57c268c6 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5c59cc32 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x641184ee __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x65c694ab __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x68dcac7f bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6956e934 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6afc9cd5 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6c1219d6 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x729cc2ef bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x72e8106b bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x76333a10 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x86f026eb bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9c9564ef __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb2b3de5a bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb364ce1f bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc0fb7b8a bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc56a0cf0 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd5ec4c21 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda4573a6 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdafc8468 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe445e9ee bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xec620e7e bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xed8770e4 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf7e7f22d bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf86c91c5 bcm_phy_read_rdb EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0eba7b2a phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0edf5bda phylink_of_phy_connect 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 0x1427b765 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x1c100ebd phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2982dfed phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2ddb6392 phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x43c04408 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x49bcb3b9 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 0x5d0c4dcc phylink_speed_up EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6420929c phylink_of_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6a46265f phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x69c77e93 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6a66c6b2 phylink_create EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x75b37114 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x894a0fe9 phylink_mii_c22_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 0xa0bff29c phylink_mii_c22_pcs_set_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xbf9226f5 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 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 0xe98cfebd phylink_connect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf0633fd2 phylink_mii_c45_pcs_get_state 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 0x28914f68 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x70bf040f tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x710c3f45 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x7632cdab tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x870853ff tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0xab2b280b tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xab72428c tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0xcf9bb967 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xd32d4340 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x295966fb usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x71a5c981 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x73c9553d usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa85de424 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xef24f748 usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf9e03b31 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x13f06bc9 cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2055d0b6 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3a61de8a cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x68fc4095 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7da6662d cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9f349564 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcccdb9cd cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdc1d89e6 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe6d6f1f9 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xecb377fb cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf440edcd cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xdbdb51a1 rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0e142c9d rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x16aa4913 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4a0c58ca rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5cd634bc rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x85b44248 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe8972169 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x028aa374 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0de0a8d4 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x122836f5 usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x185de61a usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x19406108 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1db7cbe3 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2465e5d2 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x279da9a7 usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2af0661a usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2b8dafd3 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2eb6e81a usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3e48d44b usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x42e2bda2 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4eaeeb4f usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5579c5d6 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x55efe26e usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7e9c0195 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8a3f6eac usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa35c8971 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xab79449f usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb70850aa usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbe4ac1ec usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc761630c usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcb01f3b0 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcd418109 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcea414bc usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd638f5ac usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xda2d9d21 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xda782d51 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdc0f29fc usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdf69a9c6 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdfc509a8 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe6ed3284 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf016c144 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x3c247ab6 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x52e7c798 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x979f9ed2 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x9ffaf089 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xa1f1108e libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3acd7e53 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3dcdd949 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75a39839 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9bd48b22 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee5cda16 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x018baa82 _iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/tap 0x027ea594 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x664a208a tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x88b87303 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xa8ff104d tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xafb47c04 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xca05906f tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xea31f50c tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xebfcf7c8 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xf125b862 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4f56a3ec usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x69b4a0ac usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8473e4ed usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc635644e usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xdc0b6b79 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe776336c usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x045ffb15 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1765eb32 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x23074b42 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2b543409 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2e67a4ca cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3b044806 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x53da3444 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9be3af85 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa82b5007 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb045c180 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd3efe142 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xc7e9a42f rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0de6cd8d rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3f554680 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xab49dfa5 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd8ed727f rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf90f9810 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfad779ee rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1163ce93 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x16300f16 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1e2e0a6c usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x25f38dbe usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2a916631 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2b943b00 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3185b91e usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x415405b8 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4b4bafc3 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5080748e usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x55bebafc usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x568bf63d usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x570ed570 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a78dce3 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x69715351 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6da4f9f5 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7aff7a7c usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x85e81f36 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x870ca9b5 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x87d40421 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8b74329e usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9647ab16 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb82846de usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xba10ea47 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbdfe28f8 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc6e689cc usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd31318fe usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd457855f usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd5bbb9a8 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd967f47f usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xda937fdd usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe2045923 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe9eca27f usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf4f62cb0 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x6eae683e vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xab451349 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xc011283f vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xfb5dadde vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xddfa2bc2 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3057671b il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e1963b8 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95b36edc il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc51f07b7 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed529f80 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x00be85c6 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x07355077 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0a2d9b46 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0c1ecf81 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0f998432 iwl_read_prph EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x19e5893a iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1a981470 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1dc7ec77 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1432d17f iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x146e7cd5 iwl_acpi_get_dsm_u8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x18d2217e _iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x19a50d1b iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1b894f93 iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ee0b3d2 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2273603a iwl_sar_geo_support EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x28673b10 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2b30823c iwl_acpi_get_dsm_u32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3156e800 iwl_acpi_get_dsm_u8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x326d49e8 iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3367e26b iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x279315ae iwl_acpi_get_dsm_u32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2ad60111 iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2e04f2ca iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2e738f10 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3072a348 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3344b1f1 iwl_acpi_get_lari_config_bitmap +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x34e82c24 iwl_read_eeprom EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x352dc47c iwl_acpi_get_pwr_limit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x39303b29 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x394afe33 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d778bc5 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4078766a iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x408a379f iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x43c81b29 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x45341044 iwl_acpi_get_tas -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x46b507c4 iwl_acpi_get_wifi_pkg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x48524d9f iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4aa1bb72 iwl_acpi_get_lari_config_bitmap -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x50fee3ff iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x55460779 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x58d68be5 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x365ffdc9 iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38e90375 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3be73e0b iwl_acpi_get_tas +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d42771b iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d4643d2 iwl_sar_get_ewrd_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x484e2301 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x48fbf044 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4a631b3d iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4d18efc8 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4d2f11e3 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x528a277c iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x52b73909 iwl_sar_select_profile +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x55233585 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5714fb0e iwl_free_fw_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 0x5988395c iwl_notification_wait_init EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5f20d399 iwl_sar_get_ewrd_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5f3cafb7 iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6ca13cf9 iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e418e7b iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x70d0db80 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x759638d5 iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x638b4553 iwl_configure_rxq +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x63c1e52f iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x65d3621f iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6be36159 iwl_acpi_get_eckv +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7620ad8d iwl_fw_dbg_error_collect EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x78e561ce iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x841b8130 iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x84b225be iwl_sar_geo_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x877ee32e iwl_acpi_get_eckv -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8b0f5d81 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x78020287 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x80971ec0 iwl_write_prph_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x82594551 iwl_sar_get_wrds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8902ec94 iwl_sar_get_wgds_table EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cd2f16c iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8d225048 iwl_get_cmd_string EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9038811a iwl_rfi_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x92bfc5c5 iwl_configure_rxq -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x931a7d6b iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x97569c59 iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9cf214b5 iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa03888d8 iwl_acpi_get_object -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa3090de4 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa5f05dd0 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa7efa2ee iwl_acpi_get_mcc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9a4fe5da iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9b5beb87 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9e86c456 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9f2ed738 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9f93a0ec iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa00980b7 iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa0b08702 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa3403c64 iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa7e7ad35 iwl_fw_dbg_collect_trig EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaa5879fa iwl_sar_get_wrds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaacd9311 iwl_sar_select_profile -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xafaae6c6 iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xacef9172 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xafcb43a2 iwl_acpi_get_wifi_pkg EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1338340 iwl_fw_lookup_cmd_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb28874e1 iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb421823a iwl_pnvm_load -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb8704074 iwl_sar_get_wgds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb3ff6f40 iwl_acpi_get_object +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb64bb0f1 iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb66a767c iwl_sar_geo_init EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbafc8994 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbd77211a iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbeb21c5c iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbfbfa11d iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc4378b85 iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc7c630c6 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcb3b5509 iwl_fw_dbg_stop_sync -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcc633b53 iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbe19c4e3 iwl_acpi_get_pwr_limit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc62e7301 iwl_acpi_get_mcc EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd124a52f __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd44fa2ca iwl_write_prph_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd5addd42 iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd5f1d0bb iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdf910d5e iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd4db60e9 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd5c73a5d iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdaf611ab iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdda106ff iwl_pnvm_load 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 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xed76072f iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf05af617 iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf0bb9cb0 iwl_fwrt_dump_error_logs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf2161d5e iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf455383d iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf5f3f3b1 iwl_dbg_tlv_del_timers -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf6ea578f iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf706d439 iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xed826fbc iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf1a6d33e __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf670052f iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf68a6e1e iwl_set_soc_latency EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfba41705 iwl_sar_geo_support EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc1e6f41 iwl_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x01b5bae9 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0e0fa578 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x19a55d88 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x23fbb59c p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x43751c84 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x46a38bc1 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x68fe0597 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x8e7eeb56 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe51e9271 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x08bf53a3 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x163e7f48 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x35f78421 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3b5bd244 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x590f1dd7 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfdf3d2e4 iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xff0092c8 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xff2acfef iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xff4ac12f iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1c06094a p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2ced28ff p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x63de5ceb p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x8a5facc5 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x8f53c802 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb90f1cf5 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xdc200d0c p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xef686f58 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf85c6511 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1113dd3b lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x381a05d4 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3b4bfdfe lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3f734b50 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3fd15c67 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x405dd58e lbs_cmd_copyback EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x63be66ee lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x692fb4ed lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x938c2027 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x94829114 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb5e54915 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb806a0ca lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc0d855ba __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdb057f26 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe06113cf lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf5fdd214 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x82a51335 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x892eacd4 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x962cd85d lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa2e43514 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xad0c8fbd lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc9f20406 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd01f6b85 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdd0abde6 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdf5bf214 lbs_suspend EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xff44ae48 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x3d1a7cb1 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x73605d44 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x74e2cadb __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x757fee5f lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x95af9a52 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa989c21f lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xff65eefa lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0b05f036 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x16db57ea lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x23472b70 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x23ad2ffb lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa504dbcf lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc0d29d67 lbtf_cmd_copyback EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xee0d98a1 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf056a410 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x00addb78 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3225c29e mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x387f8b00 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3a55e000 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3f340077 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x43355179 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x615ddd21 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x645b9e45 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x802f47f5 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xac57ae8d mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb3fd308d mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb7fc4116 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc0da75ae mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc1dc34b3 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc3349f57 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc634ee61 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcc65f14b mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf17159c4 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf486bb37 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0f0d904d mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x115a7631 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1dd1b151 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2efa232c mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x36363ad2 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x389c1139 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3cef3171 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4a77f4e2 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5a93bd1b mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5fca45d4 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x62767fdf mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x789daa86 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7ebe8531 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8513ff57 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa9b03b2b mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaeae5b19 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb2a0fe83 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb3fbb674 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc67439df mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xca5f7fac mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xca8345cb mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xce9ee38c mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd3ac48ba mwifiex_init_shutdown_fw EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdcfa0c35 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xde404576 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe0caefa6 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe4a7f4eb mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe7f3e1ef mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf89c6a68 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfff90a5d mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0227336d mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0317690e mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x064efdfb mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08b3db3a mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0987f54c mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0afea52f mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0e729d14 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0eef203b mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f5a7bea mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x116ad7c2 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15fc7c8b __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdc9905bf _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x04314c39 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x093a3278 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ba44481 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f949400 mt76_unregister_phy EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1878ce4a mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a888b67 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1e3c30ea mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1acfd1a3 mt76_rx 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 0x2bd86e1f mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3379e24b mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3770d49c mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b2f9ebd mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3da5011f mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3ec8d11b mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x412310be mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x44f8fbeb mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a8da277 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x549ee977 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5564d83d mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x583a16fb mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x589d32ce mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x593dd650 mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a52dd83 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5bc6c808 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2251626e mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2ef273c6 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3198ad12 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x326f1ff6 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3597cde0 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x361b4f63 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x404f737a mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43f8b7d8 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4522c9af mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x452b876d mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x46f1bda1 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x47a0aec1 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4cc4f67e mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d756093 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4dec7f98 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x57f70a76 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a1f6802 mt76_tx_status_unlock EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x621b1267 mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x69d57b4c mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d192c33 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7020e530 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x708c804f mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x73fa8384 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7ab71ef8 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b3db2f1 mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b7abf42 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b85a501 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7ece47c8 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fb3edb0 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8054e145 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805863c9 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6192e8aa mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x672e1a6a mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x701213b8 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x707520dd mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7240238a mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x73ed0832 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7c086a67 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7c663dc4 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7cc8b10f mt76_rx_aggr_start EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x814543f0 mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x87d6be24 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x986e6551 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x98e33f46 mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9952c9de mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x82dc6adb mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x83b56b05 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x87c182f1 ____mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b77b396 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8e53f527 mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f0080bc mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8fe071a7 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9556870a mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x97807ac3 mt76_sw_scan_complete EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a5471af mt76_sar_capa -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9fbbce79 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa3809d22 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa950ffbb __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaac86da0 mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaf4f7db1 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xafb4f415 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1caf693 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb34364ae ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb4278bdf mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb7ded1c4 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb2d9939 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc0ba9828 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc15db080 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5f7d58b mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b10c96d mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9bafc885 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa053e54b mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa21d3448 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa56f6ded mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa7650c07 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaab74b0d mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaab91ee0 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaeb6f43e mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0f58ea9 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb43c0122 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb5ed5063 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb853156d mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9c32bf5 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbd48f476 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbe2e492f mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbf5cd505 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc081624d mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc23195c0 mt76_update_survey_active_time 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 0xc6ebaacf mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcaeb03e1 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcd59e496 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd6710915 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdcd7f0d1 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe18dbf76 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe2fd1f69 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6e2166f mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc8eeab75 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc9267040 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcde2a140 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8940710 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe0730007 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 0xe53a27fe mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe76c7ae1 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe8d8f326 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xed288ca8 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xee806654 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf2b2678e mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfdb8b6c6 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x02da126d mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x04ceff24 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0b57ff14 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x180e90bb mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1fb7ff85 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x20d1b8bb mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x237562f7 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2ac7a28f mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x300fc1d5 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x32c73ec0 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x384961c3 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x38ac40a6 mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3c737d95 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x43aeaf33 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4881cc2e mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4b05d121 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4ecd1316 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5ddebdfc mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x68c1b6af mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6926d28c mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6f21c704 mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x74becc4f mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x74e1e4d2 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x78c911d3 mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7e80d58c mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8009fd07 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x88082cc7 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x89fddd41 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeb150f43 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeb2b1507 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xed583bab mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xee944c1b mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeed6371c mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf54817e2 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf614e887 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf80c34d1 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa76766e mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfab26234 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfce295d0 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfeebc1d6 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0260fba5 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x069da659 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x07778382 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0f3a2ecd mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x172581ad mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1b19045f mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2222cdec mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2384066a mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2767d258 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x28574a28 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4028c903 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4d222678 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x50cd1b9f mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5c6f6d2a mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x60702d4f mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x624ce0cf mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x633bc7ef mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x63bcec8e mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x651a3134 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x65d568dd mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6ac2b73f mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6c14d7cb mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x73c1ca31 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x78d6a9f3 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7a46aa7b mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x82a024bf mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9087459d mt76_connac_mcu_set_channel_domain 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 0x9994539c mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa2f7fda6 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa3369617 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa4724b3b mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa890f40f mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaac4df9b mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaf850952 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb6c5616a mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xba40aa8b mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc5f0e668 mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd2e2fb21 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdf985c43 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe4ce019b mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf6610a53 mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc63dc11 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x39072131 mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x518ea835 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf34b7f98 mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3a269990 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4d4b667e mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x73022871 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x95a1f4cd mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa4c7efc6 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa955984b mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa9bdebf7 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xbec95dcf mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xfc4a3387 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0f41c388 mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0fe77562 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1217eaf7 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x164bf165 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x311dd697 mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3e097f1c mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x40c5d785 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4580f661 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x48769f28 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4b7568ea mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x53b35f11 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x57a03116 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x57fc0b8d mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5b9a2e2c mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5c35478e mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x68cef1dd mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7b52110f mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7c04c3d2 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7e314e58 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x80ce4c9e mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x82cb0fa8 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9fb9b564 mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xba84a4a4 mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc1e37e2b mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc594d937 mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcffc3372 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd7ce7b78 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xde076b07 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe5c5c594 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xa34fb84e mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x978395fe mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9b533bac mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9c2d94f7 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9ecac520 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa5e51bd4 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xabac710b mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb29861c5 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbd1df299 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbd8f0ea9 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc6cde8ef mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd2f0444e mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdc1f87bc mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdc84ddcb mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeab3df55 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeeec4679 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf17dec06 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2af8bc92 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x50c7effa mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xaa226091 mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x37746b43 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x490afb8e mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x67eefc60 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6afdaebe mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6f485e29 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x91c96d9e mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa81941b1 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd1a9cef4 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf2e1510b mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0310a15a mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1ba05911 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2a306d67 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2bb9d9c8 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2d494453 mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2f04af74 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x35e9d67e mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3b06b0cb mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3ee93bc8 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4098feb6 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4405fcc7 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4b426095 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x567b73b6 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6d61f7d0 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7e54da77 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x89a6edd3 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8e6e1b0e mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x931358b8 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x97ae4882 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x989e1ebb mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9e775b5d mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa8094479 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcdf1f5fc mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd5d73ce8 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd86e08c4 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe2cea360 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf215ae0f mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf24d9c25 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfdc59ff4 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x7a13c41f 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 0x3e9d0fa3 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xaa9c726d mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xb3ecf62e mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xcb4414e5 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x27955e41 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x43947120 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6f647586 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9872e532 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9eb42f2b mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xaf6d4203 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x2aa56ce5 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x3819b97d mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x435b5702 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x78492001 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x217cf47f mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x21e36977 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x452bc458 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x46da6808 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4ccac27c mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe8ca1c9d mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0305ffe7 mt76x02_phy_set_bw 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 0x05551d2a mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0751efd9 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d25819a mt76x02_tx_status_data 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 0x1324e054 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x16a8448c mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1f91bcdc mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x20ded284 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2818d4dc mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2894d482 mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2cab86e8 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2f49e3bd mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x30bf69ae mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x312ecaf0 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x33ac7dba mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x345bfcec mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0f15dc1d mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1507ffd9 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x26e87c6d mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x30fbad29 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x321c8b19 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x335ba628 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3453d1dd mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x354ca31b mt76x02_remove_interface 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 0x37907595 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x38a60b49 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x431a018a mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4443fd76 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x44c2b6ae mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4df08069 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4f5cbf07 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x52c3b3fe mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x59e6632f mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3a103574 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3cbb3114 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3d4d02b8 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x41c9b2da mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x472a0e6f mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x47893f20 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x49ab8c21 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4eb96e5e mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x537b79c7 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5a499309 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5acdb667 mt76x02_mac_setaddr EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5cbf4ca4 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5f714635 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x64e152d2 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x691bd49a mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x718fa188 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7c0401bf mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a0b9792 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8e07d7ea mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5c87d399 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5ee72b22 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62d9a8b3 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x65b43789 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x67569243 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x680775b7 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7004c774 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x764c9006 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79ff6199 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80d876c2 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x84558cea mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8751483e mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8e3b3906 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f5692bd mt76x02_enqueue_buffered_bc EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x944ad2a9 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x98c30e79 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9a7a25f3 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b652f66 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9d4eac24 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa69e4947 mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa7a9f3af mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xab7b08e8 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb1c4fcb1 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb3478ffa mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb6b72761 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb7e24b96 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbb6a7eb0 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbd2789c6 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc2d479de mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc50423d6 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc51441b1 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcf02c474 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcfce1ebf mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd0394a42 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd057501c mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xda05f054 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb142f64 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb38c57b mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0c5e54e mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0d0ae1b mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe87d46b1 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeb304386 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xecdde5cf mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xef261939 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xef832de8 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf7eaa902 mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfb9ad072 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfd594360 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4502b0e1 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x726d2dc7 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x85055df9 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x8d40ad6c mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x90bbba9a mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc5fb7668 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc7127fbd mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc84d16ca mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x05cac866 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0efdb2b1 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x114ba336 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x27250f93 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x578aeeda mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5b78053f mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x61e1909a mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6749c438 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x68c18e4f mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6b36c32c mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x783980df mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x81ea4646 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x93d00c33 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa0612d42 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb0cc71b2 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd4c46bd4 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd5702773 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd9bd2223 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf87e6a31 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x122e7fe2 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x156c41a7 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3d79c16c host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8e06e3f0 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x9d1fff9b wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe6efc2b5 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xedeed134 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0ace6786 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x948c52ed mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99d75469 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xadf4d8f2 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb0ca473d mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb74e3c2c mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbbd24b1c mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc0090fca mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc167381d mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1e0d188 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc55a6203 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc8e55a9f mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcdc022b2 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd47911f1 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd57ac687 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd6902528 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd7e2306b mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb0d5bb2 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdd73d96b mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde6a5a82 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdfd81b2f mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe179bfb9 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe17dfb5a mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe649884f mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe7de36fa mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe856dc03 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xea380b76 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xec4536f3 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xed22a6f2 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xed3ac323 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf1bb66e8 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf6679cf2 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xffa2ba37 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x37c8359c mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4d5d9502 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x53973f35 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x73cd7e5d mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc599ae1e mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xcb5e12a6 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd5abc825 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf64679e4 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x030f4fe7 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x159299b0 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1a5d1c13 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1e01eee6 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x27b81ef0 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2f0bb241 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x460837e2 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5323cf94 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x60da6d59 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x680f4a19 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x73c8cd5e mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9548eeeb mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb47c9a19 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbf186bd5 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc5228941 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe6d92353 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf28fb75c mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf7885010 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf914ac65 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x18542fe2 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2ae2e176 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2b3e7402 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xaaf09ac5 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xac9dc408 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xcaa975c1 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xfc631a0b chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x12250cda qtnf_trans_handle_rx_ctl_packet EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x4e1b676d qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x56a1b810 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6f4fa4c5 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xbffd81c6 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe84169f5 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x107dbe1f rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x11a75aca rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x14871b57 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x173d4c8c rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f472520 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f7abfc8 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2175fd0d rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2af4bc7e rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x30da207b rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x36d159d1 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x374afe54 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3df96fd9 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x43a122fa rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x44666e06 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x491a2ab3 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4b2fa3f2 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4bac30f0 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x51e6b819 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x548bcce5 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x577eb07e rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5db111a6 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x61e08d82 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x69e5929e rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6a3661b6 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6be45537 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7365394d rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x74ec4c79 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7b043c6d rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7d65d8d3 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x81b51f92 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x83aed7e4 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x83bbfcc0 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8aab061c rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8ddb0397 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9de615b4 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa6a33d03 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa91ba058 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaa39352a rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbf947717 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xce17efef rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd0f34066 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdc417229 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xedbf8086 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfe0488bc rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x034fe25d rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x34bcec3b qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xac6c61ea qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xad7fc451 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xda8ec199 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe1ce7a17 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x07a9e22d rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1b1a6ca2 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x25813e3c rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2796d5ab rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x31483f8f rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x34554571 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3577c7c3 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3e5c2789 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3f3935f5 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x43f1c8a0 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4cc59bd8 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4f4f24c7 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4f5f701c rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x533959ed rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x53535b43 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x56c1692e rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x59e9d31d rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5a458730 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x64b16631 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x653890e4 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6ac69427 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6d36f94e rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7007fc24 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7146764d rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x79111a15 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7ab0b362 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7b181ffc rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7c07b664 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x807629dd rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e81180a rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb4d1d0ae rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbacff140 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbe8754db rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc253b7ed rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd01e4622 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd5046fea rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd9ec2001 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdbf6107f rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdde2231f rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe386a814 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe94dc339 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xedfc21bd rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xefe8a6ae rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf68c775d rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x03e699ea rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x12d9d90c rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1931cf37 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2bfe9c9d 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 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x408cec2b rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4c2c8094 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x40f12145 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4a6d21c0 rt2800mmio_probe_hw EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6098bf5c rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x79e1a7da rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7b8bba37 rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x939fb8a9 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x95120072 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x600547a9 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6e107d21 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7d054ace rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7e0b1850 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x82cc6616 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x916204db rt2800mmio_write_tx_desc EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9bddcae1 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9de07188 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9dcdd28d rt2800mmio_flush_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa465c7aa rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xacc0e10a rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbbc1518b rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc285d786 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe99bd567 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfc6d9c06 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0987f7bd rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0a537f9f rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1120c9d7 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x181cd6d3 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x18878326 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1f48d9c1 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x24a77e84 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x25d2935b rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2abd407b rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x36348e1e rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3739e502 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x37b60a94 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3f3d2fb2 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3fc5421f rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x48c099bc rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x519298ee rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x52e33288 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5c4620db rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x705c1376 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x75f46cc3 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x762beb27 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x88495b0d rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8dab34e5 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x923bbc72 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9993a085 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9bba7bea rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9ed385e0 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9fc08665 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb2576494 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb4cb699e rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc02a0481 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc981d8da rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xca2c1afd rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcc2e65ee rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xce682eb0 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd6da625f rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd7bb746e rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe67dce23 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe6ffffae rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xefcfcfab rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf0f34680 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf2a49b3a rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf3dcd045 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf4c5ddc6 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfc117787 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfdaa4def rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfee5dcbd rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x35b33193 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x3cddebb8 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x88378ecd rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x92e7a6fe rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x98f18eea rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x5ce29945 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xf43e3d09 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xf63fe0ee rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0c39362d rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x155f449f rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x31ba9a7b rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x471e8ac3 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7653095e rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9b3a22d1 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9e231200 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9ed5f497 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa14ec018 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb4a5e951 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc9148faf rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd4566891 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe7b4b7e7 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xea007f3d rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf4cfdcdd rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf99cf6d9 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34722a93 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4dcafb9a dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a5c8ae3 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9e738223 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x095adb7a rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0cb45507 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0df96cdf rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x107189df rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1347906b rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa33c6c19 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa43790c7 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf694593f rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x173d5ba7 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1a983eb7 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1de27133 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1eba79d0 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1f7b120f rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x246f9678 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x28e22145 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2ae8f465 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x35d64560 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x376e24ae rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3dddd060 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x44f64e7b rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4854333a rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x58287cd3 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5d5ccdd7 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x63ac9de9 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x68c844d8 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6cc42839 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x71e6d8c4 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x74e65f92 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x76478c63 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7d7839e3 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7e3ed8b3 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7f3400c1 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8468c534 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x87a1f18c rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8d476dc8 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8ddf5d8c rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8feccfa0 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x92925df6 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x96ff85eb rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9b80d9b5 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xabefe4a2 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb0100e5d rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb3f76e9f rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb40915a4 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbb0b6722 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbf1fbff7 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc2668ce3 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc7b3ec38 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc7bb0e47 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcc7bbc7c rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcfafa38c rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd6d3a02c rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdb3f520b rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe060d9c1 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xea8b1dde rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x1afef466 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x3568f026 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x38c8807d rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7ad5b1c3 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe17ad094 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x40b68f83 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xabcd9a08 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xcf9c6962 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x000431a0 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1633a3b8 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x22e4beeb rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2ee8c6b8 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x31c499bd rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x44f16499 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x46796c8a rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x495789d7 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x61c3548b rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x66f11336 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x78756d9a rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x793f86b6 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x873a9040 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc15536ae rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe5070a01 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfb7f8d4d rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8fd2433d rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9dfdc4d9 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc03f5d95 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4d7e81f dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1a5a0b8c rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x25347f80 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x275f7cc0 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2a5eacd3 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x35da6b6e 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 0x4d51b140 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x611dd3f6 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x654f572c rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x665b0d0f rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x69615379 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6a6b473f rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x722a05de rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x795aa015 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7be2004b rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x82d01539 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x41e1296d rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x43151b57 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4e33f90e rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5c399ceb rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x629a543f rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x66a8cf08 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6848a202 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7b2de897 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x81ad3060 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x858e080a 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 0xa77f1162 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb9d3c3dd rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc01fc00d rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc25cfda9 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdf94059c rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdf9c615c rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5de4c78 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeb6194fe rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf33abded rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xffa33199 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x026d9ec9 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x028140a2 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05a4c20c rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x09da83b7 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11ac05d5 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1299243a rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1637ddca rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x194dd40c rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x26b0c8da read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x987db95a rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbb7c8f22 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc5b54908 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcc5d9969 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd361b133 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7705f71 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe1a9d106 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe22fa7c8 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xec9320fc rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf91613ae rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x041af89a rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a0322d3 read_efuse_byte 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 0x2dc7b87a rtl_lps_enter EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a1f121c rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a203ae1 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x323bb4ae rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x356e7c05 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37de215c rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x38c801ab rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3bc0354a rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d10c759 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4d319969 rtl_tx_ackqueue EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x590b63d9 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5958dc4b rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e20e49c rtl_get_hwinfo EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x89f5f3e9 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x735c884b rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b69eef4 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90ec8460 rtl_tx_mgmt_proc EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa5feca59 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa9d5a5a8 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab3843fd rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb8419950 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc45b3f87 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xddd038e8 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xecd43d55 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8e7e8b5 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9b97fb9 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb1ec5b9 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfeae6fb1 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7dacad1 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8a3db08 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaaef95ec rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc25776bc rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcdcb9af2 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf85d9b2 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd58b3314 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb7046a7 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe766c13a rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf15c4497 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9776779 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 0x142acf0e rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x320d240a rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3aa088c3 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3b8552c8 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x29141a9b rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3bfae0f0 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7d0a5667 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x959e22c2 rsi_91x_deinit EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf42452d1 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x553844da cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x621fb020 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7b2ea723 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xea4c6b09 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x04c6b55e wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x1b6adb92 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x620a5068 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x01332d2c wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x049a9f70 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd26bc7e7 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x441dd4c1 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x6c7d8654 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9f031cf7 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc4b199c6 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x20787e35 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa94e8759 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb892d79b wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x02dbddba wlcore_scan_sched_scan_results EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ab102fa wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0cab5009 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0df080ee wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0741bc9d wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x08489313 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2002e545 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 0x21c41269 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x261db8bb wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x27c46f22 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2b229b48 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3b2b4306 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x42bca4d2 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x43319c56 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x44897923 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x45925291 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4935c56b wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4bd9f891 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4c1a9a40 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d8bbaba wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61375d29 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61cfe4a6 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6409596f wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x73feca2d wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76608089 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x767439c0 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x79769e7e wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7c87c723 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20b2be42 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21477891 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x22fcccaf wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2c1fa8de wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x358417a7 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f9875c6 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3fd1e742 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4c7ebb22 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e94fdb6 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x511466bf wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x54d3884a wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x59e69e18 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5c1b7132 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5cf1e708 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76520e22 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x777d339d wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x788e2d4a wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7e4fb5e2 wlcore_disable_interrupts EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88cd22ad wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8aee8d20 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8b3d1dc7 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x947d8536 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4ca611e wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb6cb45e9 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbb18fecf wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc0266d50 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc068beb3 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc73d2381 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd6d29718 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdb911eab wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9bd1f69 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf095e5ac wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf2aac5b4 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf81401ee wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfb6ff115 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x0434bf28 wwan_create_port +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86fb7da9 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x925007f2 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x92cf30c1 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9a0763a7 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9b4a17b6 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa191cb69 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae7e4e73 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb04e8bad wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb11ee6e8 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb777039c wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc0b73559 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc82f3aa0 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd0c3e08b wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd3b9256c wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd7054227 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd83a7d4c wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdb986262 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe072ea74 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe95a0d37 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf2efb23f wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf82f3b0b wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x0edef919 wwan_create_port +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x1ab0d215 wwan_register_ops +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x1aceb0e5 wwan_port_rx EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x411ae3b3 wwan_unregister_ops EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4dff61e5 wwan_port_txoff EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x5874e5c6 wwan_register_ops -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x8fa631c6 wwan_port_rx EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xc5d73a4b wwan_unregister_ops EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x5d5eba21 nfcmrvl_parse_dt EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x6bcce762 nfcmrvl_nci_unregister_dev EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc16f11f4 nfcmrvl_nci_recv_frame EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe35a47ae nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6fd223e1 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xaea69efe pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc093b746 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xcbb7887f pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd088938c pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd2e13380 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7e0bbd5c pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7e2c3795 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xddef6ac5 pn533_finalize_setup EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xebbb75d1 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf1481e0e pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf19737fa pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xfb17461e pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xfe9510bc pn53x_common_init EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x31e14132 st_nci_hci_load_session EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x339a036b st_nci_remove EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x37821bc1 st_nci_discover_se @@ -15870,85 +15877,85 @@ EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_c EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xcad83222 virtio_pmem_host_ack EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xf6062c08 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x026ff0da nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x055f3ad1 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0642a49b nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x077a926d nvme_stop_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1bad9a1c nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x25a637b8 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x260ac993 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ae7479d nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2c353f12 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x32ba12f3 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x336769e1 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x33dc5f05 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x33ec89a8 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x34c68414 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x36f9eaa4 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3f9cc512 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3fe1db3c nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x42f8c2da nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x43d5af04 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1536aeaf nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x155e163c nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x17303208 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x194e96af nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x19a3ea91 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x25da3a07 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41785974 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4419bbcd nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x470d204a nvme_remove_namespaces EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4bddc4b9 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x50224514 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x51af12ac nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5cc40218 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x57069b12 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5a107258 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6057e008 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x62989897 nvme_setup_cmd EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x67066930 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d2a9933 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6f8637db nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x767c0a3b nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x773f2ca6 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7f7c1d77 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d4653a2 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7388e907 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x78d68ec6 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7bac5786 nvme_cancel_admin_tagset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8472d17c nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x85734272 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8604f3f9 nvme_cleanup_cmd 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 0xa4578d9f nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa5a1ab2d nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbd6e4e52 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbe69d885 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc1251152 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd19ff321 nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd1ec531c nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd2e81591 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9c49a61d nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa0f721ea nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa1e191e6 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa25fbdc4 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa3caa8fb nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa43a92aa nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa507d149 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaf6c0822 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbeadc3b1 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd06f3ceb nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd1ce3710 nvme_kill_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 0xda265886 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdaf613e1 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdfc83f71 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe0644ba1 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe26dd131 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe35834f4 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe51ef044 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf1bbf2ff __nvme_check_ready EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf3512ef9 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf8b8c04c nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf9189a0c __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf996ba78 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0525da0e nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0da3bfcd nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x129cfed5 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2b084e01 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfb2e7fa8 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x078b110f nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1033a765 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3205c2db nvmf_register_transport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5719144b nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5dbf58cc nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x957c2066 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc84bbd0d nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe602609c nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf93e077b nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5276edb1 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x532c35fa nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8343f0c7 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa3a95030 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb78a37ee nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd8f26f17 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe1a394fc nvmf_get_address EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x1b08b649 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 0x3a766ba5 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2aeb4c41 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x05dd25b9 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x188a613e nvmet_req_alloc_sgls EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4a28e9ac nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x600b11b8 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7ba5d88b nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8d736a8d nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x90442272 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb1592fb4 nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbff655c9 nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd67dd139 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe87483a2 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf63977b3 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x43c65318 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4d38c2a1 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5830c8d5 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6b2d4b3b nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6eb08147 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8e472901 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xce1a0c67 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xec71f367 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xffc9aaa7 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 0x306fb7f9 nvmet_fc_register_targetport @@ -15957,23 +15964,23 @@ EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abor EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0x481ac674 iproc_pcie_shutdown EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xe67c9dbc switchtec_class -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x14b4a892 hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x0152ffb1 hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x0190e3b0 hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x0f39fa3e hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x1cbde4ef hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x38a3d9c2 hisi_uncore_pmu_enable EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ec4fc27 hisi_uncore_pmu_online_cpu -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3f839cdf hisi_uncore_pmu_set_event_period -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x42711dc0 hisi_uncore_pmu_add -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x4b9f7152 hisi_uncore_pmu_identifier_attr_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x5bf8e0ef hisi_uncore_pmu_get_event_idx -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x5c5ada2e hisi_uncore_pmu_disable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x67178846 hisi_format_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x700e6e4c hisi_uncore_pmu_read -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x79f52277 hisi_uncore_pmu_del -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x833d66a0 hisi_cpumask_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x8df058b6 hisi_uncore_pmu_event_update -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb0301d13 hisi_uncore_pmu_start -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xc9a53571 hisi_uncore_pmu_event_init -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xca6e16a2 hisi_event_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe604fae3 hisi_uncore_pmu_init_irq -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xead771d9 hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3f7ab283 hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x55b6989d hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6054d7fe hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x61979487 hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6a873b9f hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x8a766520 hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x8cd97408 hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x9e10fe20 hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xc54444e0 hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xd867c6f6 hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe33bcfc4 hisi_uncore_pmu_start EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0x083cd8a3 sun4i_usb_phy_set_squelch_detect EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x2067a81a tegra_xusb_padctl_hsic_set_idle @@ -15997,25 +16004,26 @@ EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_compara EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x5502c949 mcp23x08_regmap EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x65796da6 mcp23x17_regmap EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x7f56d927 mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x18faabdb cros_ec_sensorhub_register_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x27ad1e24 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x2855c1d6 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x56136fd2 cros_ec_sensorhub_unregister_push_data EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x01fe2d5d ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x11a4eab2 ssam_client_bind EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x265f5091 ssam_request_sync_free -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2785dfa0 ssam_client_link EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2963ad03 ssam_device_get_match EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2b08d438 ssam_device_remove EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2eea0459 ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3c57b6ba ssam_client_link EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x46d95df4 ssam_controller_stateunlock EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4b56ebb2 ssam_device_type EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5356f5c7 ssam_notifier_register EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x53bb1e4b ssam_request_sync EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x53c4d73f ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x65222c8f ssam_get_controller EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x666b41b3 ssam_device_alloc EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7139d5bd ssam_controller_event_disable EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x73a55817 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x74fc7290 ssam_get_controller EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8bd45309 ssam_controller_device EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8f2feebb ssam_request_sync_init EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x92b93912 ssam_request_sync_with_buffer @@ -16023,7 +16031,6 @@ EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x99fd EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9b87c675 ssh_packet_put EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa584e631 __ssam_device_driver_register EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa5acfc5e ssh_packet_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb26198b2 ssam_client_bind EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb30ef835 ssam_controller_event_enable EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb6d03a82 ssam_request_sync_submit EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match @@ -16042,9 +16049,9 @@ EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xb4b1c561 devm_reboot_mode_r EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x1172c19d bq27xxx_battery_setup EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x378f5977 bq27xxx_battery_update EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xd9f6b193 bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x1419e511 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xb5d77af2 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xff582ace pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x29e1c8c8 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x78a2dbce pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xa44fbf47 pcf50633_mbc_get_status EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2e8d29c1 ptp_qoriq_settime EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x4f65b8f2 ptp_qoriq_free @@ -16055,22 +16062,22 @@ EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x848bd193 extts_clean_up EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x9b83232b ptp_qoriq_adjfine EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xca587195 ptp_qoriq_enable EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2b048361 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4dbe4991 mc13xxx_get_num_regulators_dt EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5e0d1fc0 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x80259888 mc13xxx_parse_regulators_dt EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x97cb09bd mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb38561b3 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0f8dafcc wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2ce1641d wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3725c44a wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3e704fca wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x91c6159b wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe1544a95 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xad3d3c38 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x70cfa0e3 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x808360b6 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x851b412e wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xcc2c0ff6 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd4737d21 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf12a0afc wm8350_ldo_set_slot EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x08880d96 wm8400_register_regulator EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x092f3ea2 scp_mapping_dm_addr EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x2720e1bc scp_get_rproc EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x65227332 scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x92df8243 scp_get EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xa35c0e7e scp_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xa642ef0d scp_get EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xb361b1a5 scp_put EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xd98e5dfd scp_get_device EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned @@ -16091,7 +16098,7 @@ EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xe04879b4 qcom_remove_ssr_sub EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xf80adf83 qcom_register_dump_segments EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x29d5d741 qcom_q6v5_wait_for_start -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x437ef1e2 qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x47a4cd46 qcom_q6v5_init EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x4c75cb10 qcom_q6v5_unprepare EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x78397038 qcom_q6v5_request_stop EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb40d71fd qcom_q6v5_prepare @@ -16099,113 +16106,113 @@ EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xe6dbb05d qcom_q6v5_panic EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x8f8763e7 qcom_add_sysmon_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x64b71621 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 0x9e94d7d7 mtk_rpmsg_create_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xdab395aa 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 0x3399fe40 qcom_glink_smem_register EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister -EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x5d68313e ds1685_rtc_poweroff -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x019b1d0f cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c4f47a3 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c62c523 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c877b75 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d48a71e cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1660637f cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1d10d86b cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x217dce50 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2571b17e cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a326644 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a5dc941 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2b89ca0f cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30edf248 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x419f4395 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44ac26be cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x47d9ce26 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4dd21855 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e3c87a0 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ee57482 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5af67fcd cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7bc71274 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x50eae513 ds1685_rtc_poweroff +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0efc3f5e cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1716e3e2 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1b2c982e cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e7641af cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x31f9ff06 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x339dda47 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x37d056d4 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x451502ac cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x50f929ff cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6df16b0d cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x72ee45f3 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74115ee1 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7414767d cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x79c785fe cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e5b9d83 cxgbi_ep_connect EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x80ea3e81 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x88bab28d cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8d15afc3 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8f6f8c94 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x935bd9e3 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9464e9af cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95b956d4 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9f72c0e7 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa099614f cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8c076bd cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa94f489d cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xae6164e2 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb7877447 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbef9debe cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8759271a cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x88d3e0ee cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8d27dc45 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95830a26 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97425810 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x995e7838 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9cd65a92 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5d1c1d2 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa7410c5 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab6aa959 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaf6f14e4 cxgbi_sock_rcv_abort_rpl EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc1c45887 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1a248a9 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4e138de cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd75481ad cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdfb26d4c cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe378dc27 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe7b7c006 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe7e01597 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea5b71e9 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xccab6fbe cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4e822da cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4f5f8ee cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5d95b49 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd6e125e0 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd80a23e0 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf2db5a6 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe06239c8 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe8e7e13e cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeb795344 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed964047 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xee79da43 cxgbi_conn_alloc_pdu EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x06e593d5 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1006145c fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x14b5a5b1 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x221e9c07 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x333c81b6 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x47586919 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4c94b231 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4f4d866c fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x637e78c3 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6a03cc24 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x73c0b599 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x90e800db fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x958ecb61 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa2d83694 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb2b806cf fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf12609f5 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf199162e cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf3b3e005 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfa6e9a48 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc30d53b cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd8758d2 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0e2cffb0 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x19487ab4 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x19d55780 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x36bd3413 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5f7fc8e8 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x671cd09f fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6e8f6345 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x74271782 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8102512e fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8989efbf fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8a161eb1 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9b7d10f2 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaea8797d fcoe_get_lesb EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc2ad425f fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc13f7b89 fcoe_libfc_config EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe130a98f fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xea2fd1e0 fcoe_ctlr_device_delete EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x14250e01 fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x93f9be01 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0f46922c to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xf381c90e fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xf7094c43 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0839008e hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x14fb9a84 hisi_sas_get_fw_info EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1560a81e hisi_sas_debugfs_dir -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x202001e9 hisi_sas_phy_oob_ready -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3a3b7661 hisi_sas_probe -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3cc9e15e hisi_sas_scan_start -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x469fc5c4 hisi_sas_phy_down -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x47a8f1af hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1ccc1807 hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1dc6511c hisi_sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x293820a4 hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x34db7027 to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x39803d9b hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x46a3c1ee hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4832b36c hisi_sas_init_mem EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x550542ef hisi_sas_release_tasks -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x55252b80 hisi_sas_init_mem -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x56d640dc hisi_sas_sync_irqs -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x57d0320e hisi_sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x605a8b55 hisi_sas_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6ed842be hisi_sas_host_reset -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x78951602 hisi_sas_controller_reset_prepare -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7b7925be hisi_sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x851f1170 hisi_sas_get_fw_info -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8a2adc3b hisi_sas_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x923c54cc hisi_sas_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5edcad27 hisi_sas_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x74f0e104 hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x806fe005 hisi_sas_scan_finished 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 0x9e97dab7 hisi_sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xaa9bcc67 hisi_sas_probe EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb03aa9c5 hisi_sas_rst_work_handler -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb1e50a47 hisi_sas_sata_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb5ab5971 hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb16f1973 hisi_sas_release_tasks +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb2b77846 hisi_sas_controller_reset_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb3bb4d91 hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc2f17b98 hisi_sas_phy_enable 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 0xc4083c55 hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xcbf13cb3 hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xda04e171 hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xdc5a0516 hisi_sas_sync_irqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe30b534a hisi_sas_host_reset 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 0xe39d863d hisi_sas_stop_phys 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 0xec12617a hisi_sas_controller_reset_done EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0d882c36 iscsi_boot_create_host_kset EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1809f07b iscsi_boot_create_target EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1e566cf1 iscsi_boot_destroy_kset @@ -16214,210 +16221,210 @@ EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x563c29b8 iscsi_boot_create_ac EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc8e01dda iscsi_boot_create_ethernet EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd3353fdf iscsi_boot_create_initiator EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x905b0a32 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x00ffa985 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x02f9d717 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x09c4ace2 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10565b7d iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x108e2f13 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0274fbb0 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x02e240b9 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x03bf9182 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x047b3391 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x04d0ae3e iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x058eb2b2 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0fdff4f6 iscsi_conn_unbind EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x147e5160 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21bb6a10 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x25c99f25 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a2ee665 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2f381927 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x353ee0a5 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x359c13ee iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x186e3302 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2310e9c5 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29699d36 iscsi_prep_data_out_pdu EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40b7a508 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4889f69d iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a208ca7 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a6f538e iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x56eea3c8 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ab594cc iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f194917 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x68ebd7c4 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a730176 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40ed1aa9 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46085d63 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x47c37407 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49dcd704 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57d3faac __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a02b872 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b079ae1 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d62908a iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ab8704a iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7be21a02 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c0fa516 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x838347ce iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x890a4235 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x899d7acb iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8a336ee6 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8be4a03f iscsi_host_alloc EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e6b9be2 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8ea05a96 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x99463b23 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa10691aa iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa90d4eff iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa9760774 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa9db7288 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xabfb8048 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb8773757 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbeb0ea69 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4248710 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc68babeb iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7993293 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb0a4d08 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce79c4c2 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd2fb175d iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd69be19b iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf15d20c iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe3280081 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe3bb9579 iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe8c217ca iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f030210 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f560c3a iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91a3289d iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9227a729 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93323f51 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93fb3c11 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a41c586 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c145af8 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa07c2740 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xafbf106b iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb29cf52d __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5b6e60a iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc65e7df8 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd0a879c3 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd644819f iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8fcada4 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde9c0e4a iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe52c445f iscsi_session_remove EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb3461a0 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xecd6f31c iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf0d85dc5 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4d50ce9 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4e57e6e __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf6f3c950 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x29cae673 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2caafa09 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x33be29e4 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x33c32d40 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4d0ddd7c iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x54c5f2a4 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x57394460 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x59960ad3 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9c1e761b iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa004f99c iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa35cc988 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc4e82e3b iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc5a4f150 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcd8befbe iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd587e9c7 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe40326c8 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xffc393f1 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x065bfb63 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0c1c261f sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x10b7bd4a sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x26e8cce1 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a8a8135 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeec95079 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf6cd3355 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf6e06fdc __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa030ccc iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x17834cb1 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x19ceec49 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1def113f iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x25b437a3 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3abb8780 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5874f59f iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6f392402 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x83a9649e iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9a3bdd93 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9fdd8015 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa57d2228 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb478e8f8 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xca86fb1c iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd14d1cbb iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdc8f0085 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe323a69b iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe84ceb57 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x072cb851 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x23561c51 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x23eb8559 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x31ec0a07 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x37733276 sas_ata_schedule_reset EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3be54b96 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x484dcc67 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52f186a8 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x581eb376 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x62bf7b82 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6ffe111e sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x78328aac sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x883627fa sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8e9cdaf0 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x94146a3d sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x96df4507 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa0b83075 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa7b3058e sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaafe50ca sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xac3daf41 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc79af406 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x46a06b4d sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x476c76b2 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x592b5f94 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x66d77629 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x72adb017 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x793cca59 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7ea71b89 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8077d6ed sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x82951b29 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8ee4c54d sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9d8770af sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa4bf50b9 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa5259039 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xab90e5cf sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb0fd2604 sas_domain_attach_transport EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xca2e7a26 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcc5779b8 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe55c0ce2 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeebdceac sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf583866f sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf6f4e93d sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x0ca1f48c fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x01fcd7e0 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0691262a iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcc4ced89 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdbe55784 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xee81ee7d sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf7a12cd8 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfcff8a3f sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x7c16d417 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03ae4646 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0550944b iscsi_create_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14d6cd8a iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f184d18 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f884f58 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20b48f48 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2101d295 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2633252f iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2928d863 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x295582e4 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e39f435 __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3155dd65 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31e4b9dd iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ed7e408 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1181d97c iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x131c58dc iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1d3f4994 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x215d0cc2 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x25c99a86 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x265294e2 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d7d730b iscsi_get_port_state_name EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x399f4278 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d1fd190 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fa035a3 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d9bace4 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x51630f9c iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x519204a5 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5620a47e iscsi_put_endpoint EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58febab9 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x59fcf137 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x59fc5f93 iscsi_destroy_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ce0bba5 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x607272a7 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x62b32a65 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x65f36727 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6089ea1b iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64b222ec iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x667813d5 iscsi_alloc_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ffdf457 iscsi_offload_mesg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x77c08f53 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84236bd1 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75e813d2 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x77893d2d iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c5af74d __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fb256e3 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 0x85c9f6c3 __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8689d764 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86c54904 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86269f14 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86c21e0c iscsi_put_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a132fbc iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f3baf1e iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x93bc3931 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94e67735 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c4aac90 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa37e9dd8 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8985e577 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91ba60a7 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9304a992 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa77af179 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7f61bc6 iscsi_block_scsi_eh 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 0xb8258c56 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0064fa7 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb0c7e16 iscsi_offload_mesg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd363edda iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4cce99a iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc616349 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc17152df __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6676150 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc9cddc4a iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca592c2b iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca7520da iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc7a9380 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcee4010d iscsi_free_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd8f4c441 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdb9b0ac5 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xddffe4e2 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdfe66faf iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda6bc931 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe1519ba4 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3e0df00 iscsi_get_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe58d5684 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xebcf8450 iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xedaf8040 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee98f690 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef1aebaf iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf66b5a08 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfaa63cdc iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x18d1aeaa sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x82635a94 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x90ab6fb5 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc76d80fa sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed053789 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed6203aa iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf66f8fec iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb121270 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc60d8f6 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff4da6ed iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1a9e8780 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5bfe0d21 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7a5ef386 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xad94de27 sas_disable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x94c0a0a5 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x4894653c 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 0x2e79f916 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x29136820 srp_attach_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x729bd2fe srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x8fd2fbd2 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x97abbb0a srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa7d6a8b2 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xcebb7f36 srp_release_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe06d4cde srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2294e904 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x417184ba ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5450a1a0 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x59476fc9 ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6b056f85 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xecb40852 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf4926fab srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1c68c5a6 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x39c22fd0 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3b0757eb ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x49bb722c ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4cb6b782 ufshcd_resume_complete EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x74970911 ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x756a9306 ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x83164069 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x86d60db2 ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x94c46479 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x955a9b2d ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x97fe5540 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa065f3b2 ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xbf5fc0d8 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd2343078 ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe2b692c3 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf0fc06d1 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf3e393bd ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf731aa0f ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfcb872c7 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x0dc7ad5e ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7cd0730c ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8243aaac ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x85bd389d ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x87d4a339 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9aa83890 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9e8a6aef ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xaa474c5f ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xae03dcb6 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb419b69c ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb5733025 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc34c9838 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd011a398 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xee1c90ca ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf80e0c51 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfd564df4 ufshcd_dme_set_attr EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc723b1cf ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x83537d27 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x84da7cad ufshcd_pltfrm_init EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x33b50b46 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x6db232b0 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x9dec73e0 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xae3217ba __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf6395ade siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xffae0a75 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1257620b siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5f9d58f6 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x890c85b7 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x9a9bc7cd siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xcf6cf8f9 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf8f628ac siox_master_alloc EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x061c0e97 slim_report_absent EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1ba2a288 slim_msg_response EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1d5cd568 slim_ctrl_clk_pause @@ -16481,8 +16488,8 @@ EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xec17d011 sdw_bus_type EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0xcbe2be46 sdw_cdns_debugfs_init EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x74b2b6f4 altera_spi_init_master EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x31ee0015 bcm_qspi_remove -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x7e09b897 bcm_qspi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x283f5a73 bcm_qspi_remove +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x7559fe91 bcm_qspi_probe EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x7e6e1b79 bcm_qspi_pm_ops EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x309752e5 spi_bitbang_cleanup EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7f3d0552 spi_bitbang_setup @@ -16502,24 +16509,24 @@ EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc8c2cbe9 dw_spi_set_cs EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x29c7a63c spi_test_run_test EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xa72698c8 spi_test_execute_msg EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xefce905e spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0bf4fce5 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2474f364 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2c92575e spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4473450e spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5f2d7cee spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x604d1165 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6dc94321 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x822e95c7 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9419846b __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x943f1097 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa53297c6 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa7507dcd spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb4d66355 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc46f1e68 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc6635375 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcac5b6ff spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcf919a31 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfdd83a79 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x09327381 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x17508478 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x198a340f spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x33fd73ea spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x36fb2ee7 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x397c2fc7 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x45fda47d spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x55d69bb4 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5f757469 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x710413db spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x72040f06 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa98a4d14 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb82818ae spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb860581a spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc0f9d9e9 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc7fdf062 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcd708a2f spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd89f0110 spmi_register_read EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x4c634750 ssb_pmu_spuravoid_pllupdate EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x229d4219 anybuss_set_power EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x568a9506 anybuss_host_common_probe @@ -16577,6 +16584,7 @@ EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xa5a7f41d gb_gbphy_deregist EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x29396954 gb_spilib_master_exit EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xaf3ddc75 gb_spilib_master_init EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xc4485524 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0x0fb50681 sp8870_attach EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x19216c29 imx_media_capture_device_error EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x19fc50c2 imx_media_find_subdev_by_fwnode EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1e5d8936 imx_media_free_dma_buf @@ -16653,10 +16661,10 @@ EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0 EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xcbcef14e vchiq_mmal_port_parameter_set EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xe040adbc vchiq_mmal_port_parameter_get EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xffc68500 mmal_vchi_buffer_init -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x02c279b1 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x487fa226 target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5ce00e44 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5dd3063f target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x10ecb246 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2817ba03 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x3a14bcea target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe22da504 target_queue_submission EXPORT_SYMBOL_GPL drivers/tee/tee 0x132961b3 tee_shm_put EXPORT_SYMBOL_GPL drivers/tee/tee 0x16d61339 tee_shm_alloc EXPORT_SYMBOL_GPL drivers/tee/tee 0x227fcb5c tee_client_close_context @@ -16726,21 +16734,22 @@ EXPORT_SYMBOL_GPL drivers/uio/uio 0x419d9a32 __uio_register_device EXPORT_SYMBOL_GPL drivers/uio/uio 0x53ce060b uio_unregister_device EXPORT_SYMBOL_GPL drivers/uio/uio 0x6adab871 uio_event_notify EXPORT_SYMBOL_GPL drivers/uio/uio 0x97b14f6f __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x302f9cdc usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x93acf978 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x02964106 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xd5febbea usbatm_usb_disconnect EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0a4cba79 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x16fad9f8 cdns_resume EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x19f22d89 cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x21ca5a7f cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x586c9c3c cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x61b49245 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5a2f538d cdns_set_active +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5b314b32 cdns_init EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x82b047bc cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x87883b8d cdns_remove EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x973d992a cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb74c254f cdns_suspend EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xc15f4ac2 cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xc1b6ebda cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x0d186a30 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x24a83138 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x22a0f495 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x26f1e41e ci_hdrc_add_device EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2dbcaa97 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xae7d3a83 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xabdebbd7 ci_hdrc_remove_device EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x18efe80e imx_usbmisc_hsic_set_clk EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x3ea9be0b imx_usbmisc_init EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xbe3e0389 imx_usbmisc_hsic_set_connect @@ -16763,23 +16772,23 @@ EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc02c8819 u_audio_set_vo EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc39c345d u_audio_start_capture EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc493a550 u_audio_set_mute EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xfa8edaad u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1548e84b gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1a024e16 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2c8540eb gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x396800bd gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4e7ce711 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x65d5fe8e gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x66a180fd gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6a1c8192 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7ad8c63f gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x855439a2 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x86274332 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x05cb810f gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0aca3ab0 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x113e853f gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x183119f3 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2ef9e5dd gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3fa037d4 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x48fae31f gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5d67e92e gether_get_host_addr_u8 EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8b910583 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9756695e gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa69b0c61 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdbcb1b38 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf522b611 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x95cfed82 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa1a3e989 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa77c885b gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb0e1064c gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb1db0706 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb6173c47 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbab184ef gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe0f13253 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 0x45ca272e gserial_resume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req @@ -16832,21 +16841,21 @@ EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf34d619e fsg 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 0xf58d9a42 fsg_store_removable EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfc80c10a fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0b69e7dd rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0d73bfbd rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0dec24c6 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x13c58adc rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x245d5dfc rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4815bc87 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5a0bcbb8 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8abc7897 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa1ed4f26 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa8c03ca2 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb96cbd89 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc2a3a21f rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd875ef3c rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdf8b3f47 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe088449f rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0d012b2c rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x195fc2a9 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x212377b0 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5a293926 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7b33c457 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7eb0336d rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x872cd320 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x942b2c34 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb3964052 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb7f81caa rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc4d800b1 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcb708d44 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd5efda19 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdb592e3a rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xec31e629 rndis_msg_parser EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x03872539 usb_add_config_only EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cb7e477 usb_ep_autoconfig_release @@ -16942,15 +16951,15 @@ EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfdf2259a usb_gadget_map_req EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x0e5f124f renesas_xhci_check_request_fw EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x8bfab7fd ezusb_fx1_set_reset EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xa69b9732 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1391e85f usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x16fdbd76 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x49fca28c usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7e640657 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8ac15bf2 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb39f8f09 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe8adb964 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xea5747bd usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xffea5991 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x02ab2380 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1ccd9816 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x32a94162 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x36a6d968 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x58e038f2 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbf43edac usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd04a195d usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd3d8eabf usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdcd83e08 usb_ftdi_elan_edset_flush 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 0x19e81025 musb_set_host @@ -16967,9 +16976,9 @@ 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 0x034136e9 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x17878adb usb_phy_generic_unregister EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x29b33c81 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x2bb5f53e usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x3e310a82 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x8f6bddbe usb_phy_generic_register EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x9ac9fbac usb_gen_phy_init EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xc0150b22 isp1301_get_client EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x3a652c23 tegra_usb_phy_preresume @@ -17064,7 +17073,7 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaebaca1e typec_altmode_get_partner EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb251fd9f typec_set_data_role EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbc45224f typec_switch_register EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc05b448c __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc36271eb typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd67e29cf typec_altmode_attention EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd7fa535d typec_switch_unregister EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdafd6310 typec_switch_get_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xde3f401b typec_altmode2port @@ -17088,31 +17097,31 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xaadc5883 ucsi_unregister EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xaf4d697b ucsi_resume EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd0c9510f ucsi_get_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xdb02437f ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1246d523 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1f2aa34d usbip_recv_xbuff EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2cc0caa4 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x383e1afe usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3fbf49b3 usbip_dump_urb EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4890822a usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4bcfa7c6 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5daae420 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x644ba798 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x512ceb6c usbip_pad_iso EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8373f495 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8939664d usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x91d49d37 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8ee15338 usbip_alloc_iso_desc_pdu EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa243ecd1 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa274120f usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xaf4d4ea4 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbf7420f6 usbip_pack_pdu EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdd95085f dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd5273941 dev_attr_usbip_debug EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe79b9d6d usbip_event_add -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0182af10 vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x02a71053 vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0714b97e vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x09acc1a0 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x18a8f51d _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x62047f55 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xcbdd3dad vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd066c37f vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe5aa2288 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x23f19086 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3012f1dc vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x36c5c92f __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x426660fd __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x43ec3528 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x769394b9 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7ab50c62 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x83a9e61c vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x992f08e1 _vdpa_unregister_device EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x3545e367 vdpasim_create EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xe3d35a54 mdev_bus_type EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x04d9b34a vfio_pci_core_init_device @@ -17250,331 +17259,331 @@ EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7dde4374 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 0x004936d1 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x04ff4c38 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3caaf0eb nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x646c78cb lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7755b76c nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3e3c0b6d lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4abc4b64 nlmclnt_proc EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbaf58d42 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd47a7f39 nlmclnt_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0250254f nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0271da76 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x86bec82e nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa58fc97a lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc628a5b0 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xeb603105 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf20eee60 nlmsvc_ops EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02a9696a nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x050ed904 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0698415c nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07af8dd2 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c443262 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10936d0c nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02a5843f nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x039cddd4 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04698aa4 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x050c379f nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x088febf4 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08c29f84 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e626fdb __traceiter_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10fbb78e nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1234b9a2 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17a4cf19 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f6d4c64 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fdc87ae nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2015fe22 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10f726f1 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x124df0e8 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16741813 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x169fad8c nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x176ba8d0 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a7442e9 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c50865e nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x207b37e8 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21a02541 nfs_symlink EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25456531 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26187ec3 put_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b27f814 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d47c165 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30229567 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26b3ef14 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x276b1798 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27e9a6da nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ad93a08 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cdd2d31 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fb0e2f4 nfs_pageio_resend EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30d10e3d nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33696645 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39870e57 nfs_scan_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a8a6f74 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3be508bc nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d4044d2 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b6b94c0 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d0f94a5 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e2bddc1 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f097293 nfs4_label_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x405880cc nfs_generic_pgio EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42b43521 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41b5fe2e nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x421b1e12 nfs_inode_attach_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44a2e4b7 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44bf7a55 nfs_add_or_obtain EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44e51694 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49617ff2 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x461404b5 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49b6392a nfs_pgio_current_mirror EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dc97381 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5002a070 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dfa9b91 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ea23d42 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fc01a3a nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50c8cbc2 nfs_file_release EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5344ea34 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53dfcaf4 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54e2fab3 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x558fcab8 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56b37ec1 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57e72c55 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x533ee132 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57be5853 nfs_setsecurity EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59426951 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5947e22c nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x598d5392 nfs_file_read EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a388377 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ad278c2 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b12ae6c nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5be7de61 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c0ef263 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c95a250 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60610865 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61c0d4d6 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x632d0034 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x686b5d3b nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d251e48 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59c5dac1 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59e683c1 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a6cf20e nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f1fde2a nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x626c57cc nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62c978e5 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6301ddd5 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6394e72d unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63f824a8 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x655f8f2b nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65ca07c4 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6655c687 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x676c5953 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6859d438 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a605a08 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6abf6c0a nfs_file_mmap EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x712100cc nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72064425 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x724302e4 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70cade95 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72024b66 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72c9debf nfs_pgheader_init EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x745e599d nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x759c9bc2 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78cd9555 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7946e365 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74873f4c nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76e36e80 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7763c4f3 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77d361dd nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x781eab8b nfs_set_verifier EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dbcd8ef nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7df4fd58 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8070e5a0 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80874e5b nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8162bc31 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x821317b2 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x825d148b nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8328b023 nfs_permission EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83a67746 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83f63c0a nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88263db0 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x882c528a nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89739ff9 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b14b025 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8be5eb84 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x833559a8 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83cab71e nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85ae79b9 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86808a1c nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x877e26fd nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x897d786b nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ac9f432 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8db2a765 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8dea5ca2 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e19f36c nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ee190f7 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fc55a15 nfs_request_add_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9396d4d9 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9321ccdd nfs_setattr_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x952dec71 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x963efb09 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x979ad3ef nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95331200 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9622a32f nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96a61068 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x971ed1dc nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x989a5a14 nfs_put_lock_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9aced946 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e9ecac0 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f76ebce nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a5612f5 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cbac6c6 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cfb0de8 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9da8e259 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ed59315 nfs_path EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4d44839 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0ff0b09 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3b7b528 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3fe8d24 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6136217 get_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9e371ef nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa96c4e0 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaab88740 nfs_setattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae3ab831 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafa8f235 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafd254e9 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0c82582 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0ca85a6 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb34a5b62 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb524d55c nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6886a87 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7cd34ed nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8886303 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb89222fb unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb99640f7 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe391e25 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe61f8e0 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbea80a6a nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0139b3c nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf761d8a nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0cfe32f nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0f2e3d2 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb30bb93a nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4ab71ba nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5bcb1c5 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5d0456d nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5ede5c5 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb82e8963 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb851e2ad nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba315cdd nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba99ade8 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbecc5583 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf11f5b4 alloc_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc15ed992 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3644fde nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1a75ed8 nfs_drop_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ec6c38 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc579e04d nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ddd47f nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6e9b4b5 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc77ddbfe nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc78c4282 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7d90e45 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc81c6893 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9446102 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdf1ed2c nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce7bf2bb nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf70d023 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1b3ff91 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd25f49b7 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd601a601 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7f95df4 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda3968b4 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3d82189 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5f08b2d nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5f2d55c nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7fec62b nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcebf884d nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf820db2 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8ba8b09 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8bec366 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9605cb0 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd992157a nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9c302ec nfs_show_path EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd1fac47 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe07a4ee0 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe09d4409 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2576792 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe56c7ad8 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddb86ea7 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfabf956 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0198102 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2e11519 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe47724b0 nfs_fscache_open_file EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe925a005 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecdff984 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee6eb977 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee71ea30 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee7889b3 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf12e7bfd nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf47d3de6 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf523bbb4 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf693558f nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf797d81f nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf848bda8 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefbfaf6a nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2679edc nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf537f538 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf66acb80 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf85ee045 nfs_init_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9907623 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbef5c0c nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc16c741 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc5f37b5 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa92f1ac nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb910a89 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc4bf2ad nfs_show_options EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x09699f3d nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01650f7d pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd981ac4 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeff0c83 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x159b57dd nfs3_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07af318f pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07bca49b __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 0x0a1d35b3 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08c63640 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a049d19 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a0cc6d2 nfs4_sequence_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0dd288dc nfs4_pnfs_ds_add EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f4ff39c pnfs_generic_pg_check_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x109ffed9 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13bad79f pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13e827fd __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16393673 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17ed7046 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18065adf pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a5cf1c3 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e8639c9 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1fe3d62f __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20c6fecd pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20d48f5d pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x212be87b nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2269e8e3 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2306bdb5 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26d111ca nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13b9fb03 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x153dfd87 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1722f649 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1aaa474d nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b02067b nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b372492 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e1b2a4f nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24d06b33 pnfs_generic_layout_insert_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2cdd93f7 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ecf5915 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29b0cdcf nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b9d727b pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ee76cc9 __traceiter_pnfs_mds_fallback_pg_init_write 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 0x38f534a2 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x395c4dbc nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39d5c4a3 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3beb8aae pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c0108a2 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f8e54f9 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x409b37db __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x476cdff8 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a81c5ba nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4aebc995 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4bff46ce nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fe9c645 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50c4cd42 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51c63952 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36574f54 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36691904 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39e84d15 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c0fca6f __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c1e9a30 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f1df811 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f8b3c87 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x450e5002 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x487ea914 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ccb16f9 nfs4_schedule_lease_moved_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e76d9e4 pnfs_generic_prepare_to_resend_writes EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62c63116 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61ef70be pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65c5780c pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6732a61a pnfs_generic_clear_request_commit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a6eb467 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6bd2207e __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f5c0e5e nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7428d580 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7763d17a pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c93cb7b nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f12a0b0 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f741451 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x763ff343 pnfs_generic_ds_cinfo_release_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ab7bcc6 __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b10ef3d pnfs_report_layoutstat EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80ba84cf pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e69fc87 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fd5397e pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80644282 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x810d4a22 pnfs_generic_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c04e4b5 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c4ccee8 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8fdff551 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9196264b __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92c5250c pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9399425d pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83583186 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ca43e7 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x863ce8fd pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88527552 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a0ed2b6 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92ce5267 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x970d910d pnfs_generic_sync EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x987516ff nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a6b9c pnfs_layoutcommit_inode EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a92aebd pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d31524f nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9efca013 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02a93af nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa13036cf pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6045713 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab102e19 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabaeffc8 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1171b08 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb454b854 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6db3de6 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9cbfde9e nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d45f9e3 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d60b6fa pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9db90da9 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ecf4c44 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa13d3f84 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa752d84d nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab3da491 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabd197cd pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaca67afd pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb646aac3 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb670c618 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6734a30 __traceiter_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc233fcda pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc2c04f15 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3012f65 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbcc2cdf3 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd1ce3a8 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd29ecf9 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4ce68a9 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc75a1c51 pnfs_free_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb34df51 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8cbec71 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca7024b6 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xced17ed0 pnfs_generic_pg_readpages 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 0xd123b88a pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd242247e pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1b3c67f pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd45b4833 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4d3e8d0 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd55b8bdd __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8cf2c64 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd941a8ee nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb526b6 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 0xe127f03e nfs4_mark_deviceid_unavailable EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea698158 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe49db6ed __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5d36760 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8dd31c5 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe999542c pnfs_generic_pg_cleanup EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec3b56b3 pnfs_generic_pg_check_range EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xedc13b3d pnfs_update_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede41327 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee8275d0 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf33ae92a nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf672cf6b nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6d0f0c8 __traceiter_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7d7bb4e nfs4_test_deviceid_unavailable EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa307d86 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb11c816 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfacca837 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfcfd4e04 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1d31a050 opens_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x2842d508 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc7bccfbf opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xefcbbb00 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x2cbca4f9 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x737542cc locks_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x27442163 nfs_stream_decode_acl EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x33c51010 nfs_stream_encode_acl EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x503d5c7e nfsacl_encode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x79b75b41 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x515bb9a9 nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0c901677 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xb8e01754 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 0x2217f2d8 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3369a644 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x42be1dad o2nm_get_node_by_num EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6d970030 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x72b5d1c5 o2nm_node_put EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81eb7d8b o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8ad75dc0 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8d4861cc o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xab9dc0c3 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xac3090f4 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae87c67e o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb07f890b o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xeb67b08f o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x08132a76 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1e54c5c4 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5e3ffe36 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x499d4970 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4f017d37 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6a77288e dlmunlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x88444f72 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x88653d43 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xac105ffe dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc35efa4c 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 0xdc339b7a dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf522ea4a dlmlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x013d0a96 ocfs2_kset EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node @@ -17633,1064 +17642,1064 @@ EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x63adbf92 encode_rs8 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 0x9a72c74e lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xdc776d25 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x158c8a22 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x1d617dec garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x699418be garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x8be00534 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0xc76c230d garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xd5f40687 garp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x1906cd7d mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x5c2166cb mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x69c79f42 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x94630b38 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0xd2b68739 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xf16e53e8 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/stp 0x30e90ea0 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0x6081fa7e stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x446143ce p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0xef942e9d p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x944026c2 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xff5507db lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x1efaf78f garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x3698e64c garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x5be4d793 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x69ef743c garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x79f8efd4 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xf1e5ab91 garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x02b15acf mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x2d2958a4 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x5aeb6035 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x7e42b1b0 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xaac5e31f mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xe1eeee3e mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0xe0a1cccc stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xecf14f21 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x74ec0834 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xc4cb5883 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 0x30cff75d ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0x5d10496e 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 0x075ca469 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2b21f6a0 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2f6280b7 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x56873264 l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6c8d4a55 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x821f7a42 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x93747989 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc1139933 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcfbec3f4 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x8822e31a hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0357bfab br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x067cd754 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1f0c6e09 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x266926b0 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x35bd97d4 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3ca2559c br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x445f5742 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x504ca4ba br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x57cf1544 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x61457cf9 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x65c35f06 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6896cd85 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6ed78df6 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x720a489a br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8429f944 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x89972b59 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa7b702c0 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xae26b6a6 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd049f878 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xddbf2fb6 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe300f002 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf3c7dcb2 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/core/failover 0x3d5a92b4 failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0x8b2bc4c1 failover_register -EXPORT_SYMBOL_GPL net/core/failover 0x9692ed17 failover_slave_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x00d6beab dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1125d295 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x14c12ffb dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x17fe348a dccp_reqsk_init +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x04fb0e43 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0ce7b8c3 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x18eb58dc l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x37815e34 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x46c8b631 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x598ec7c5 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc27274fa l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc405700a l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf06edfa6 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x4a46c6f2 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x00db1eec br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0dfc33a6 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0e3cb2ff br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1444383d br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1dce4a2d br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x20dd1b5d br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x23e3f8e4 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x28a02afa br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x30c4e67a nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4ad197c3 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4fb334ca br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x54b69da0 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5a09c17b br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5b0526ae br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x616282a4 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x855ac162 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x903d880b br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9e9983e1 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa5064b17 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcd3f6e9e br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd77a679b br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdaf5a0de br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/core/failover 0x4e4cb609 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x63623257 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x9239b54e failover_slave_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x05a48f3d dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0cf164d4 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e4fac9e dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x10b8ad57 dccp_check_req EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1dc0e554 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x233762e4 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x32b72b6a dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3692a4f7 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4b670ba7 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4c99ff26 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182fca30 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1a94ceb4 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f61705c inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x29cef197 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x37e1ad6f dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3c1ad1fe dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x41779ce7 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x497850ed dccp_ioctl EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x534c2492 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x58f9c2a3 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4d14a1e0 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x53401bba dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5348a3ce dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x551c23cc dccp_child_process EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5c61cf77 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5fbc9e4c dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x62cd247a dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6694f6f3 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e8bcd92 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f1d6007 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x73a2cd62 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x752266c2 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x766d4bb7 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7a9c83b4 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7e197db9 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5a9f5eb8 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f9cd962 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6965b41a dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x696814a8 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b8c4c36 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7aed1e3f dccp_death_row EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86b5ea4d dccp_done 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 0x89a3b040 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8c6d3d2f dccp_getsockopt EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0xacc46479 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc59d88ad dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x96cebd8c dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa6b37a39 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa81ec4ba dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb90fbf30 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc2bde556 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc6b910b0 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc6e058d6 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc9f76f08 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd6cdd183 dccp_parse_options EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdaa609e4 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe126dd33 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe78ec600 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xee096839 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x008c324f dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0f7e3e70 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3c141d8e dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc4aa5f37 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd2db38b1 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd79c7929 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0fd62fcf dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x10ce8b36 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x121e5262 dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x167f0a55 dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1857f500 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x19536bf8 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x199238eb dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1e42d02f dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1ecdaec9 dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x256739a5 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x36d021b5 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe1bf5673 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe6283511 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfe748d28 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0dbae966 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8900a66f dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9fb72e4c dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa408cf03 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbebf9f63 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xeac14aea dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0ab41592 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0fc9e61f dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x24c4e6f3 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2e61e945 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3027d941 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x31e95077 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x370d12de dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x40668dcd dsa_8021q_xmit EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x61dd08f0 dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x67578122 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x70c5afd2 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x833973d7 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x84537b4a dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x84f412f1 dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x88bbc8ed dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x919abd1a dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x93d64319 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x99094488 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6503f56f dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6a303567 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6bcc783a dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x71f8ddfe dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7ed5e073 dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x81e9cf49 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x85ddbc81 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x89d2dedf dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x972b120a dsa_tag_drivers_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa523e065 dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa638dc69 dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaa04475e dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaa2d25b1 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaff95eba dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb2fad381 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb27e639c dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb59ec5f6 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb687f742 dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb8becb98 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbad0deaf dsa_devlink_resource_occ_get_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc1e6e3ea dsa_devlink_param_set EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xce343329 dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xddd2ca6c dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe9497665 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeac48d2b dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xec22d037 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd75cc362 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe8a2d255 dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeae58be6 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xee4011d8 dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf0ce23c7 dsa_port_get_phy_strings EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf2ff881f dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6a68fe4 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf30d4070 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf38b2b43 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf69298fc dsa_devlink_region_create EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0e1cffb4 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x49162c9d ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6d32b705 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfc94e452 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfec0980b dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xff8b3c6b dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5efd28c9 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7ffd8171 ieee802154_hdr_peek_addrs EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd992ad84 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ife/ife 0x34af9a61 ife_encode +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xba0afc90 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc9456286 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ife/ife 0x0cc5e6d4 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0x1c8f441b ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode -EXPORT_SYMBOL_GPL net/ife/ife 0xb8a7ef82 ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x12b8ef49 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xb288936c esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xce04b0b0 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0xdbacb096 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xf2739923 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x040e6293 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x50fa71b3 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5a395fbc inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x758b7f59 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x94b38936 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9657a9cf inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x98b747bf inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa01d664b inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe2251e8d inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x93514fa7 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1bbff9d6 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x216ec68a ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x34a8b34e ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3b92620d ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4f9f5129 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5585ffb8 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x818ef28f ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8554f99b ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9aa779be ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa5e2ee05 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaa3366f5 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xae67f2d7 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb9c95c91 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdbc098e6 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf063fe34 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf270b96e ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfbcecbce ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x5727595a arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x60a47f5a ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x55fa3ba6 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xcc8c9a4e nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xba72da12 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4b39bcb5 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x73aa1630 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7b40cca9 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa866174b nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc47da8c0 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd713f16c nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe49f5d67 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x2173e6fc nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x122fa6dc nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x13209eb7 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x9fa410c2 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x10f52fc4 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xbdb84667 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x48eb943f tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x73a0a4f3 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7a7a2d3a tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x859c663c tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8732420a tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x36fde6d9 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4836ae0e setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5ad3075c udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8ca2432f udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb25eb82a udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbadcbb26 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc0aadb3e udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf01f9464 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x91770973 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xf2958770 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xf5aa528a esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0ebaede9 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x10bd487b ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xbaca128d ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x47b08514 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x8603e607 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xb530165a ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x0b9c35e0 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x1dbc4f88 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x37800585 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xb22a16ed nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x655052ac nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x691130e2 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8f5b28b4 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x93e7e278 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xae52d247 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc0f15dcc nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe95db8a0 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xa6144795 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x0dda3e1f nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x32601f04 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xbd3d2cc1 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x221a8a7b nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xb999b837 nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x02725ae5 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x047cf974 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x07a8ba3e l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x14ae1d74 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1821873e l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2dab42df l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x44b253d9 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5a1286ea l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6517b7b9 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x705cbcbc l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x813b3f51 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x818fa1f1 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x88083899 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9cbc4ed1 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa3cb0636 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb2c3f7c3 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc2b915ed l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc59d289c l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd6d5f4ad l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf81bc95d l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf959ad98 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x6c659328 l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x2ce6b1e1 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x4e716766 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xd105a10b esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0xb4ba4d54 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xc9858621 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x031db028 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0e1b6a84 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x37914a5d inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3b5c0452 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4ad3fdf3 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa2c657a8 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc34c31ae inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd5b7a4bb inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfa14c13e inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xe0febd0a gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0ca226bb ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x10dc2db0 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x202740ef ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x244ed2d3 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x27b634cc ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x359095e2 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6144b46c ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6603cf59 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x70bdadae ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7a584f32 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8128a695 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb6b8c635 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc6a035fd ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd13195ef ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd414b488 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe229bcbf ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf9b6cb04 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x7120d256 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x40f10185 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x9b33f948 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xd9db6875 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x5c882112 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x68efbae9 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x69fba3c4 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7871fece nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7eb14f35 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x909a3b22 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xad7c75db nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xee5beda7 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x7211053b nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x0d58c791 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x8685207b nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xfb8d3396 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x63f3ccf2 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x8c382195 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2fe6c163 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7f25a567 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x84919d14 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcbddac5f tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe5ef215f tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x084598f2 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4c1e7bba udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x97d5dec2 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa1453f25 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb465e9b9 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xee6b0b52 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf04bdd1d setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfabb4905 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x6cd3570e esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x8719c18d esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xa670db66 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x08437d03 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2e8a2856 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5d89d0bf ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x7b9971e0 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x91f40cae udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x4dd73ad4 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x899c8218 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x99381a3b nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf8a0ac1b nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x89d89823 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x04efaf3d nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x18a7a713 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5786c4e4 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5b8f541d nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x71c32adb nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8b9a3c1c nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa33041fd nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xf576a452 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x6fc7d2c5 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x83bbdd94 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xa8eef417 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x81def1e9 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xa9f38d1d nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x167f904d l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1b2922f3 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x26bcc039 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2e0f9a1e l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3568ce2a l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x431af0b6 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x546a1209 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x556adb55 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5683e4e5 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x595ea02f l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x597b7227 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x71aff63d l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x781b7d2c l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x78abd6f4 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x860d9c2f l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8cbc9386 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa6245f17 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbdc7a98e l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc10c1885 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc3601e39 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeffba821 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x09c72193 l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x804e8a2e l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x090945b9 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x213aebd3 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2198db3f ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x21fe740d ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x29f78369 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2af43b1a ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x377d4ee0 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4506c302 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x8cf1d1c8 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0c23b6ea ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1b08b334 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x20b6d5a1 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x39c1410f ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3a49ba13 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3aef832f ieeee80211_obss_color_collision_notify EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x538b9134 ieee80211_calc_tx_airtime EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5a84403f ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5e3e7c95 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x712eee91 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x797a33f8 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8ca10049 ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8ef910cb ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9d6d3f14 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5a35a0bc ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x63d64d1c ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x73e61422 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x75897334 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x84768546 ieee80211_find_sta_by_ifaddr 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 0xa73f4ad1 ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad963b5e ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc32a909e ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xce34dfe9 ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd1cdb4b7 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc31b54d0 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcc363a7f ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd453a254 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd64d72cf ieee80211_color_change_finish EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x383a3189 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x66497993 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe3d3a264 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xed4aa1de ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf660bed8 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfc4a378e ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4f1d8a30 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5ad3fc23 mpls_pkt_too_big EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xad413480 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xccea1e87 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf1d3e4f3 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0a863a9a ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0ca253c3 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd0c19013 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xdd471ffc nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf8634491 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0c93c028 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x17700fca ip_set_put_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x27ca0c59 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3739bba2 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2eb61126 ip_set_match_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x464aa49a ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x48549266 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5430211f ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x626fba3e ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x659a3748 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x72d67752 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4f6bc825 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x59ee4f46 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5f38dddf ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x648e7fac ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6fb17d4c ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x72f48a40 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x73a9ab6d 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 0x79b4cb13 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fc4a8be ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81cdffdc ip_set_get_ip4_port EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x964eaff4 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x994ca00c ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9c7f3d6b ip_set_del EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2be2d54 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb49b4933 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbd6a78b1 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc039ae4 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd1237a61 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdfb87ba8 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbd0ea7dc ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xca5b437a ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd645e5d5 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdf4e2d3a ip_set_nfnl_get_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfa01bc17 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfba2bb96 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x03709276 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x12f0e799 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4355dcdb ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x525017de register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x18cdb3a0 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x088d1f8f unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x133d4e4e ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7f134ee9 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xfb438b99 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x17e2d210 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3f59e7c1 nf_conncount_count EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x4e4302ef nf_conncount_init EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb635d3f2 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb781e6af nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xede094cc nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05304835 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07d18530 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x098b570f nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b4a1234 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa951ddee nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xef1bf044 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf08f39e3 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x040de15e nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x044c52e3 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06469f15 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08718b05 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08d1b132 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 0x0cba399e nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0dc6204b nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11aec7d1 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x150c4715 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18192db7 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19b07c2d nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ac5f3b2 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24441910 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11b79595 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13e5c6a2 nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ef1786b nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fddbe6a nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22bb2191 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x252b182f nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2767ca15 nf_conntrack_register_notifier 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 0x29255f07 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d0821fa nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2da485a7 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2eee9eed nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fd6fe70 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3280951b nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3801f3c0 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3868d586 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c3796c6 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d1c93b1 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4033f022 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4dec2230 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e0c45f8 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e83a8d6 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x598ee970 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x599ff2f9 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fcee198 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68ab903a nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68e58e89 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a1dbd05 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ba7a499 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30f3df3e nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f7c15d3 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41a3d3f1 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44ea247b nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47aa9206 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49795e1c nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a362417 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a498092 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b51a69e nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x564c7f46 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5703995d nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ae23670 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5bbb44a1 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d1aa2ab nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d8db07f nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5de53ae7 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e7b9370 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61512a62 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x617c6c2f nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66873ae9 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x677e559f nf_ct_expect_init EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x69638d03 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a1eb2bc nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c6c226e nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d5026f5 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x740e1b0e nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b59d1f0 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b83005b nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cf3c04d nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d27426c nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e07d297 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e7ef174 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82ec79de nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85b75d66 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x883e6714 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b4bce62 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e0504e7 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a2329ae nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b092f04 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e985070 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71fcd977 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74bb1a5f nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75abe992 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77e341a8 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82df293f nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x881eed7b nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8aa795bb nf_ct_helper_expectfn_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x923c7344 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93a6d43e nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98903c18 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9977ef77 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x911e82ef __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91d673f1 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92001831 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9269fd08 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9293e9bb nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95c8e6a9 nf_ct_expect_iterate_net EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa076e341 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7ab6cac nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab44bbe2 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9dc247ed nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ebe169c nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f52e42b nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa11e652e nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4749e33 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7356468 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa78df76b nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8ccb3ac nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaaf62ec9 nf_ct_netns_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf8d9edd nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf79b8f1 nf_ct_gre_keymap_add EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb154c2d4 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb19872c8 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb24d5db3 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4a38f7f nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb510a842 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb85f76ee nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7332f80 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd5a4ed1 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0bff653 nf_ct_expect_find_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1c1cae2 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc20aa041 nf_conntrack_in EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4c064c8 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc876231c nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc914fc6f nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce058e49 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd47b87bc nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8b11261 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc0e0e0c nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd06e4720 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd234669e nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4531821 nf_ct_helper_expectfn_find_by_symbol EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8d92e10 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd93a3d07 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb6e3b4e nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd564832c nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8a784f3 nf_ct_port_tuple_to_nlattr EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd1f31cd __nf_ct_refresh_acct EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfde4739 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0a0cdb4 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe47817f5 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5ffa631 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe653ffd0 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0dc59f1 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe618529e nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe9a83164 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb4d5bb6 nf_ct_bridge_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xefa3dbfa nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf09dac86 nf_ct_set_auto_assign_helper_warned -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf15045a0 nf_ct_expect_iterate_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9627406 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfac5bbff nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfcc00523 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf426df5c nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf525aa44 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5803d56 nf_ct_kill_acct EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfeb2aa9f nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xf3219f01 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x7804702e nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x1a2c79f1 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x16588135 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6064522f set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x86fc7ed3 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x873f3d61 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb5dec82c set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb7a17fde get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbf54f738 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc66c2815 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xca3b9994 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf4265bb8 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x4d14216a nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1d25c1c3 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x579205ce nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xaf523cc8 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd21f7549 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x054453dc nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4227f3be ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x48e20039 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4fef26ae ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8334c3af ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xae11caf5 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe01f4959 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x29be814c nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xd7dd7766 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x3051c63e nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe8a04b62 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xea6fad58 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0ba096cc flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x183f3c8a nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x20a012a7 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x24cfdcf8 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x346b423d nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x378d78b2 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x538f6b71 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7b5d96a8 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x82019ccf nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9d686f9c nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9ded4a30 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xad9934a1 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb36a9a91 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc44a3940 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xce5e5e4f flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcf1e994b flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdda48927 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x041e6583 nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0ab3655f nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0de638df nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x17f14f5f nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1fcc0c9e nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x26adc91c nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x29e5b814 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x342f9644 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x57543c8d nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xc8399581 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xbc8e6503 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x01215e18 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0a8ad7cc set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2ffea736 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x38edbe1a set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3d6abb5b set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x54089c7d nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5708c64b nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x59509b96 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x971a8e97 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa770be8c nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xd0576847 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1d28fe40 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x225a73d9 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa25fc500 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe238645d nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0430d4e5 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x047e9f01 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x451d65d3 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa1adb88e ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa4117009 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb4dd38f2 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb64582de nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xe1119791 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x31bfbb9f nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x776a6785 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7772d805 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xeca494ec nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x036c8a42 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x06987f18 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x21f0e9e3 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x31b8b346 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3cd4d56d nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x49b3fe66 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x64282fd4 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6b905abe flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7ec9292f nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x95f12383 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa07c68ee nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xad2da911 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb1c6ae82 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc09c118f nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc6394c05 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc846da75 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf8410b5f nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x013cef5e nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x14dfbea6 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x221faeb1 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2d9dc245 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x30e2224c nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3a4d0744 nf_nat_ipv4_unregister_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x84ed93a2 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa205bdbe nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xae039ea5 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb6cda975 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc41d24c2 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9648c47 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4a9c23b0 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5a351a51 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5e598440 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa32b6c18 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb409a8d9 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb65be4ec nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb73991b5 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbbbd6724 nf_nat_inet_register_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xee7b51c7 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf9aa9447 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0b3fd1cb synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xde6cbfa5 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xff41c697 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x032fbe0e synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1780718b nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1ee8e640 nf_synproxy_ipv4_init EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2534e5d2 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x69ec397e synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8860643f nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x94bc5675 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc34fe18f ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x496e22f2 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x723af011 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8e9dec86 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9a85b135 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xadf0b7b1 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb08ebc87 ipv6_synproxy_hook EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xecfb9ac1 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf027a88b nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf61c073a synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf7064778 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf853e930 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0073cbe2 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe5f344b3 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xec9bd378 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x03a0e432 nft_unregister_chain_type EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x18e84fb7 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2412815c nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x24e00440 nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a18fcc8 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2b78852b nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x07bd2df4 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x18bab40c nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1b5c159c nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1f614054 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x23d41dd6 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x24a2232c nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x28fcf37e 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 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4557c278 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x48674068 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x505e113b nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x695f2dcc nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x69752ae8 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6c844b8f nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7b6f7069 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x86d69f37 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x87c187c4 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x88ea75e2 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4c882621 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x56b5267a nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5994fd19 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6810ded8 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x75cf48a4 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x769e9cd0 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x80610508 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x80af9fa5 nft_data_init EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b5ae838 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8c7c8d93 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9515f865 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x97ceb3fa nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa14f722b nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xafdbf84d nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb2ab6c6e nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8daba79c nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8eb227cf nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x96767bbb nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9a71a93e nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9fca64ca nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa6eeb49e nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae179011 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xafa9658f nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb13be2d2 nft_dump_register EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3bd62b8 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb5025333 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb74a6877 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbfb07501 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb64d7a65 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbc8c44c5 nft_register_expr EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc23cd9bb nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc84467c1 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd0da1850 nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd335bb75 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd444fe86 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd4c86f46 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdc0ebf98 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdc30da81 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdde590c2 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc36e119c nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc74bb4b3 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd4858efb nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd7d694fd nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd9018929 nft_meta_get_dump 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 0xef286100 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf43ac225 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1b5bc8e4 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4ee7b6b9 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe71761ba nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe98a2659 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf85d83b7 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5459d7c9 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5b26b696 nfnetlink_broadcast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6bad55e9 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6ce9325a nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x73290fb9 nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x819846ae nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc0d188e3 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x99e0a99e nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc20071c7 nfnetlink_unicast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x47a175c8 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x47ea322c nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x765939bc nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe444b98e nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe7273b08 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xefbd4f6b nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x0a26b5da nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x59349fc5 nfnl_acct_find_get EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf645e458 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x19acfb6d nf_osf_find EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x6fb04f52 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xf2f515e1 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x403b8a2d nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x991c69f3 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xa4b84659 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xc5a8ebaa nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x199ff9a2 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x792ecf9d nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x60f85d74 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x9f57ef95 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xc3f35a7b nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe403dd0b nft_fib_store_result EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x39f94eb3 nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xdf7e70a2 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7a5030b4 nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x00783c8f xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x01a43d57 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xea0c7bae nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xee8653ad nft_reject_dump EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0603ce88 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0d886aa9 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1b0cd832 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2dc8e171 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2fb00aac xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x39a5cbc1 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x423db78f xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5068b49c xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x508ef2ee xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5a887775 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5d6b5878 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5ecb581f xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0905646b xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1720625f xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2e2356ef xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2e855e14 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3228143f xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3b0d7857 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x41597ddf xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x42b51467 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x599b043b xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x64e4b791 xt_register_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7c8c9f68 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7ff03b4f xt_compat_match_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x80f4c066 xt_compat_match_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x851837b0 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x93f99188 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x98395fa8 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c42d2c2 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x87759ae2 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x94076daf xt_compat_target_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7b3a788 xt_check_target EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbf5e1527 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb7a3b930 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbc49d842 xt_unregister_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc614e35d xt_request_find_target EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcd87a9c2 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xce026cda xt_compat_match_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd6b5734c xt_request_find_table_lock 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 0xffde7455 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x696f64db xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xe5efad74 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdfb72468 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xefd84797 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf5eb9412 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf8342b99 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x9429b6ac xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xdb00f17a xt_rateest_put EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1b3c280f nci_spi_allocate_spi EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x99c90956 nci_spi_read EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf7886007 nci_spi_send EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x2479fe16 nci_uart_register EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xa6ff2602 nci_uart_set_config EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xfc87d557 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nsh/nsh 0xa57a413b nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0xd9311fa0 nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1796e36b ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5481e086 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x67b04c50 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x884f5113 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc3286f3f ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xce090986 ovs_netdev_link -EXPORT_SYMBOL_GPL net/psample/psample 0x6f7a8331 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xc94a5e4f psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xd157ee70 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xef341414 psample_group_get -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x344ad2b1 qrtr_endpoint_register -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x3e345860 qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x68ea830b qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/nsh/nsh 0x0e5c4b38 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0x818df4fc nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2815fd89 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9ade29d3 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbcf06ed9 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbf426e60 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc61d962a ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe6222a46 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/psample/psample 0x0417a0a7 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x2ccc4fb6 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x5649db68 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x7072405a psample_group_put +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x1815139e qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x4c17cfe2 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x50901533 qrtr_endpoint_post EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x07f82cc9 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x1d4e1fb2 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x1f1a3f9e rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x01a8a397 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x0354d8f9 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x0a275ab2 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x0c4007c6 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x13255753 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x1c8edbfa rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x1fed105e rds_send_xmit EXPORT_SYMBOL_GPL net/rds/rds 0x20c5e653 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x23cb1a83 rds_inc_init EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2c62a3a7 rds_message_unmapped EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3a6dca0e rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x3cce41f4 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x436c5fa6 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x42a00fb5 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x43107896 rds_message_addref EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x49383630 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x4d18e318 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x54459323 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x4a290449 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x4c49036f rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x4d78d2ff rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x54873ef3 rds_message_put EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x65517042 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x77a3c690 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x59f008d9 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x6524e93e rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x67178620 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x7467614c rds_trans_register EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x7dc4a787 rds_connect_complete EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x8dd1be79 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x97c2a73a rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x9a1ef0a1 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x9d5b2ec6 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xa2a2cfd0 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xab9842ee rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xaf373ab2 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0xbe3234b0 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xaba64f0c rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xb797296d rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xbbe263b2 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xc1ddb74f rds_rdma_send_complete EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc45e0766 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xcfb20c70 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xd23b7c7b rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xd86f8ee9 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xdd922330 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xe2f05777 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xf0c75020 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xd3e46755 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xda5f7574 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xdd7dbf66 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xec68ff0c rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xefa0731a rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xf45f256a rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x22d509b9 pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xac440803 pie_process_dequeue -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xee7762ac pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xb53497dd 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 0x4427b8d2 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x612883f8 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xc0ff50cb sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0xce655231 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/smc/smc 0x21c1124b smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x35036b1e smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x430604fc smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x43bd8050 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x51c8bce7 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x9e251a1e smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xbc3c8a30 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xc2ec304e smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xd39176b4 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xe47008b4 smcd_handle_event -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2e61b21e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sctp/sctp 0x658fb447 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xc3d89aa1 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xf6d97d6b sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xfd842a6d sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x2d3b724c smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x3bc98efe smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x3e6b26ed smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x71ecf492 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x9dcfa95f smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xae29084e smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xb0ce5bbd smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xbd466758 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xe526d1f8 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xeb84640e smc_proto6 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 0x7068b33a gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x92b219bb gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb3c08073 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x643b9cfc svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x75b4652c svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbf409d1d gss_mech_unregister EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x024a5d5c svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x026c009f rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03ca4243 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04adb391 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04c1f37d sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04f886e2 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe95fff80 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x000434e8 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00fc697e rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x029f1d6e xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02fb1ba8 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03d1b7a8 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04db374d cache_destroy_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07077f41 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x070b1791 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x084e18be auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x086284d1 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0871be60 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x097fbaa5 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a1b16c1 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b08462c xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c6a2384 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d41d0cc rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d6c2943 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0efb0db9 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f11cd12 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ffdf75b rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x112f695f rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11604052 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1166cb33 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11cf4b1e svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12e59af3 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x145d739f rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14902bc8 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1503ebde rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x151ee52b rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1549073b write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x155fadd4 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18772254 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x190c0641 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19a0109c rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x084287bd csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b351758 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c12a823 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cfa81ea rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d1e5d38 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d3c8e45 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0effe4c9 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1414af50 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15dabbcd rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17d834e0 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18c2bfba rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19152ecd rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19cc21bc cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1afd39b4 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cea5fcd xprt_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e4764e8 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e9dd8cf auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e6beccb rpc_unlink EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2150b7ee rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21c3a9b6 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2243455b __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22436f2c rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23042bfa rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23836b20 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27a31042 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27b02489 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f43d18c auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21382871 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23cf49c4 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2618997d rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x282b9c58 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28876d3b xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28885c5f xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28e35fd2 xprt_get EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ac2944e rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2be473cf svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30c69015 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x319e4698 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29287e55 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x299fe288 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29af7d5f xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ae13799 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ce477e7 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eb089ff rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f17e682 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f54222c xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8528d8 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a4c31c svc_rqst_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32e9c0c2 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33c0d7f1 rpcauth_lookup_credcache EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34ee43e6 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3557e68c rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35b76c2e svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37072b31 xdr_process_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x390e4da7 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39104dc4 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39421635 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a0170c3 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ab935c7 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aee91f2 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b13e2f8 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d538609 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d702ef7 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39d872aa rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39d9fedf svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39dc8605 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a6486d1 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3acbdfc4 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d237cd4 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f585b30 svc_xprt_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x408ed06f rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4102b4e6 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41cbe6cf xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42fc55ad svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x442d63a4 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4484485e svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x402a3358 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4080e976 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41210d9b auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4164b152 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41864e26 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43113aba cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4329148f svc_alien_sock EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x454669c4 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x454c0713 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x458adc56 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45efba21 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4953f865 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49ef069c xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a91209e xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x461d073f sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4826dd8d xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48927dcb xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48ddb75d svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x490708c4 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x497e09d1 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49d86c93 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49da618e rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a3eac1d sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aeb6395 xdr_reserve_space EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c7dcf10 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d47d8dc rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4da42424 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b32cd2b svc_rpcb_setup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e325310 read_bytes_from_xdr_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x502876bc rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5061011d xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x517f03c3 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51c1cd62 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x527a7d59 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5011b5b0 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5092bcdb xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5197fbd0 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51d85f57 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52af6187 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52cd9c2e xdr_stream_decode_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53bbc761 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54b957be svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5674028d rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56849fef rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5751bf94 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58ea90a2 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x596f7c94 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59742b3e sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53f48bbd xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x547f83e2 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x552254fd xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5532c327 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58bdba03 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58f2354e rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59533b52 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59a27b50 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59c07536 svc_xprt_init EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5abfe2c9 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bb94e45 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dac9aa4 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e0658c3 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e2f36dd xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fd53734 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61aeb679 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x632334de _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x658dba45 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b214e8f auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bae2a31 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d3f26a4 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dd788b4 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x615d3a7f svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65013759 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65679215 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65d3beba cache_check EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6822b17b rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68d9ebb8 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68e83f4d xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x691a847d cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b68faa2 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c8b602a cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d278aa2 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ea60cf0 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f5180d3 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fad3c64 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fb102fb xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70f72a0c rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x717b4ba1 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x717cbb6c svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6797775b rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67f1397a unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68d11b42 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68e90988 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b9396ed xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bb09ddd rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c43a09c sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c72e469 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c87934d rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70668f66 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70fb681f rpc_d_lookup_sb EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71cf9280 rpc_add_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x723c27a9 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73238b78 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7386b1bf xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73f211ad cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x740b6e97 svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7672c933 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76ecdedb xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x785a0f61 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78c02b6a xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x792a4b14 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7952ccdb rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79f3532c xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72403bb4 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x724bb41c bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73e071f8 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77e144ed rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77f7e5aa svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78d901f5 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79649816 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79a9b119 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79c4549b svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a61c101 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c3da3d1 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d2ccbf5 rpcauth_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f557b31 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f576a65 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f7be091 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8296a0a0 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8361c16d xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8413e6c1 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8430d124 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x848605b6 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84cca8ca rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x856f0f11 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85adef85 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8868ba91 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a9978e8 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ca03338 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f77c0ff svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9042974a xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91f07a7a xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9248366b sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92526b32 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92ac473c svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9440e357 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x955e7e5a xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x962ffbda svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x800bea71 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83e6ae99 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x847ac1d7 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85165160 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8621ff92 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86b841ec xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87131c04 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87347489 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8998c33a rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89d48e12 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89d846ae xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dc316fc svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f99f279 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fb4e655 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ff75c41 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91c39265 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9412fa85 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x956d1593 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95d4276a rpcauth_unregister EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x969dd977 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96efb311 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x972a6e38 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99a04973 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x968bb55f svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x982971a1 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98df1838 rpc_task_release_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99af6648 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a0fa797 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9af4b496 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b780787 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bea9867 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c59b72d xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cf1e6c2 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d569ed5 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e105d72 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ed3af97 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f1836b6 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa01821c4 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a9d7bb6 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9da7e83b xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dc432a3 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0e807b6 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0eb5bb8 svc_max_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1da268d rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1ec3c03 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa27ecedc rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4b1c1ea sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4d7b573 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa89a2b1f xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaae60d8a rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab757a91 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab93a5c7 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadabe27e rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae918211 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf020227 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa14d0505 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa18b38cf svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa294b240 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4f3a0dd svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa76a7f39 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa08e091 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab48bf42 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab8a7f7e xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabe2570d rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac5eaa65 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacaaef76 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad1e7817 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae2271aa sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae69849f xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaec023d2 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf197fe0 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf4638b0 rpc_restart_call EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0d0c83f xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb15b06a0 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2ac5587 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb08a42a2 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb17e49c1 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2cd67e5 rpc_force_rebind EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb427b5a7 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb488502d xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4fc94f7 rpc_prepare_reply_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb63c7f6d xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb90b30f0 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb95a6b8c svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb59e8d30 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7e6f5c2 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8ef3100 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba89ecc3 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaa192a7 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb3701f3 svc_set_num_threads_sync EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc096f89b rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0a85602 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0f943d4 xprt_wake_pending_tasks EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2378876 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2879607 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc326b2c9 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3662852 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc531b21d rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5d870f1 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7629ddb cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc84018f3 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1688bee svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc282b6bb rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc366db6b rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3a1eab3 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc527e714 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6ddacdc write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7790440 svc_close_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9405f62 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca4465e0 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcac506d1 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb4f0601 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb7a29e4 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc2b7f98 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc668919 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc840739 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca11f761 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca2631ed cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcac9b6a5 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcae6d4b2 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbad1686 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccb3d165 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd9dd20e rpc_put_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfa578b4 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcff5a4de xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcffb8d28 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd073837d rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf3e5b7b xdr_stream_pos EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd12c449b rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2c6c9b4 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd32d729e xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd50ec5a6 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6f7eb79 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda32ef33 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda534431 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda9bd86d svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcc3ec63 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd03ae55 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1127935 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1e706eb xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd26a996e rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd42831f1 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6f8c216 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd72aad2a svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd90c97b8 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd95f8aca rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda4f8c0e svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda745e8e rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda91d3a3 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdac756ae svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdad0a426 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb7cb709 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb7ff731 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbde6477 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc8c5fd0 rpc_find_or_alloc_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1b3f2a2 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4924e9c csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd9af412 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde0cc99d rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde9e0179 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfb8a15a xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1922708 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3fe4821 _copy_from_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6046319 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe71b0d1e rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe925764c rpc_delay EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb561b51 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebebdbee sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xece8af6d rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed513cec svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9894e26 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9d61ded xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb07853d svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb168264 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecc2b4ff svc_shutdown_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefd41135 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf031c73f rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf044d03d rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf08b0e17 xprt_wake_pending_tasks EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4995154 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf49c8272 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6b220c9 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8808a3d svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa28b20c svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb58e982 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe9dabce svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfeb8259b xprt_put -EXPORT_SYMBOL_GPL net/tls/tls 0x4a759656 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xa8a511a6 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xb34d12f4 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xc9baba9b tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0d296af sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0f3277a rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3d7b237 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4f39fe0 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf590383c xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7d4a285 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf91cd234 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa82b1e9 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaf62a67 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb6c9712 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc3102a4 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd5385c7 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/tls/tls 0x25bf6391 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xac475cb2 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xb2029798 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xe96f6f71 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 0x07c3b4ae virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x095d74cb virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x131f7422 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x18f7b8af virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x25015966 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3dc2ca63 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x41b07ccc virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4b20306d virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4e700650 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62096fff virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62dc860b virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6a348939 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6b4415fe virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6cc37967 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x704f81b5 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8cdfa71e virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8f365978 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa90f1e00 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xab4432d9 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xabae50f9 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xad52e004 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb2b8de41 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb2fd0bef virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb68484f1 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x05afd3de virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0cc4ccda virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0d1f93e0 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0da75643 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0f71dd6b virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0fad1e44 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1092bb15 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x19387a92 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x26afd8f1 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2f363974 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x43b9b612 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5da9ea91 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5dcf157a virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5f4a62b6 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x61a35adb virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6861e686 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6b98c7f3 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x70554620 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x78962094 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7c473e2d virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7dc1f153 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8592ebe6 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8be117fc virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x91704773 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9804739b virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa5aaf403 virtio_transport_notify_buffer_size 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 0xbbbb4e03 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbcdf4f54 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc8a8e4f0 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcc6292e7 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd0a90180 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdfec5617 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe69fc354 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe9207388 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf468185d virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xffe41e98 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x00a2f299 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc1188f24 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc226a1a8 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd43377b3 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe06b2589 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe5acffc0 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf46ce995 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf5761cd1 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfc1a3090 virtio_transport_free_pkt EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x10dda4d0 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x23ed2a80 vsock_stream_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2eb99696 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x32e68024 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2db23f75 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x396c04e3 vsock_core_unregister EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d985361 vsock_remove_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x534979bc vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x646a7e6f vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x71ab9aa0 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x76655793 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x61e5e3e2 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x68a49619 vsock_add_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7efeab84 vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x862cdc11 vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x867f9c90 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7d4a9c9a vsock_find_bound_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x914d620b vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x928dab8e vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x97860e23 vsock_insert_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa43aa616 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa45c67a3 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa8e0b036 vsock_core_get_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb269d6e8 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbc0d1f60 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb25b8237 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb7067859 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb950da45 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc362ec4b vsock_deliver_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd93a4d64 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdfa4e419 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcb4fff43 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcb887918 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xea56566b vsock_enqueue_accept EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf4b88128 vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf5e5fdb3 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf766cbba vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfc50caf5 vsock_add_pending -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x080f04e2 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x115ee399 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x371d1e64 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3c1b9cc5 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x481859d5 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x63bc9ea6 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x861a0a2f cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x99b83d8d cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaa73f86d cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc76292f3 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd7a43a8a cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd8ba8815 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe4894b5a cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe5faa2aa cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe610c389 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf588dc05 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xff97e3c0 vsock_core_register +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0fa634b0 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x13ca7a8f cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x267c9818 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x50b28547 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x54efb535 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6276571f cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x686e5ff2 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x72c22e34 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x85a57da8 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8f2c0072 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa3bb6854 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xea4d5da8 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xeb050ea1 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xee6e864d cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf4ce0b55 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfc09e34a cfg80211_wext_siwrts 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 @@ -18703,10 +18712,10 @@ EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname 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 0x339b9ff7 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5053201a ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x74ddc0b2 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfcd413cc ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0fd4843c ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5aea7c27 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5f1580f9 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8b71127c 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 0xb3fc5445 snd_ac97_reset @@ -18769,19 +18778,19 @@ EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xcaf94313 snd_dmaengine_pcm_poi EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xcf24dd55 snd_dmaengine_pcm_refine_runtime_hwparams EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x3d195efb snd_seq_driver_unregister EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xf4e9c0ac __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x071460a6 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x12b4f496 amdtp_domain_destroy EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1526d620 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1591ec9d amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2cd17f05 amdtp_domain_start EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x44ec7a87 amdtp_am824_set_parameters EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6b35f644 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x871ba448 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9190f1c6 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6e250441 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x91857f9f amdtp_domain_init EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xad0bd099 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbbb28e8f amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb2405d7f amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb31ee14a amdtp_domain_stop EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd9682b1c amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdf93a87e amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe1620ade amdtp_domain_init EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe5d3af4e amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe951f162 amdtp_domain_start EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02a8cf19 snd_hdac_stream_timecounter_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x068a1279 snd_hdac_bus_send_cmd @@ -18892,31 +18901,28 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00c8a334 snd_hda_create_spdif_s EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0309c72b snd_hda_get_pin_label 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 0x0742091e snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09e58721 azx_free_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a59ca31 snd_hda_mixer_amp_volume_get EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a71c81f snd_hda_mixer_amp_volume_info EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c88f18c snd_hda_get_num_devices EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fc2748f snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x106e7d4a azx_get_pos_lpib EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x110606f2 snd_hda_find_mixer_ctl EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13e6ef9e __hda_codec_driver_register EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14ee8dc4 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15342cb6 snd_hda_codec_load_dsp_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1753f471 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b28c14e azx_free_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ce97b66 snd_hda_get_connections EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d0afbee snd_hda_sync_vmaster_hook EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e8923a4 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2111c7b9 azx_get_position EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2126ecbd snd_hda_get_hint EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21535957 snd_hda_jack_set_dirty_all EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22b57ebf snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b17fcb9 azx_init_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b5aa46a snd_hda_set_power_save EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d6cf7c5 hda_get_autocfg_input_label EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e030df0 snd_hda_codec_eapd_power_filter EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f08040b snd_hda_jack_add_kctl_mst EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fdfed61 snd_hda_codec_setup_stream EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3177e748 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x337c08c9 azx_get_position EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33f0d4ef snd_hda_jack_pin_sense EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36a7e898 snd_hda_apply_pincfgs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x377c0e41 snd_hda_jack_tbl_get_from_tag @@ -18925,20 +18931,20 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a30aeea snd_hda_enable_beep_de EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3fb29520 snd_hda_codec_amp_update EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4370f51c snd_hda_override_conn_list EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x441f48c8 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47cbf585 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49b29509 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47c2558e azx_init_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a813550 snd_hda_parse_pin_defcfg EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b67bd3b snd_hda_jack_set_gating_jack EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c368845 snd_hda_codec_parse_pcms EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fc2eb33 snd_hda_codec_set_name EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5124e495 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x552a0101 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x575d5c0c azx_get_pos_lpib EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59110bc3 snd_hda_codec_device_new EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a60890b snd_hda_codec_cleanup_for_unbind EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b8d30e4 snd_hda_input_mux_put EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ba4719e snd_hda_codec_amp_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61df2c67 snd_hda_jack_detect_enable EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63ac1ca8 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63b84c6c azx_codec_configure EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67ac57fd snd_hda_enum_helper_info EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bc79849 snd_hda_pick_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d754209 snd_hda_jack_detect_enable_callback_mst @@ -18950,19 +18956,23 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70ea2b1b snd_hda_mixer_amp_swit EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7283dc2e snd_hda_get_dev_select EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72d44c87 snd_hda_multi_out_analog_open EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73025fc4 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x787ba11e snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x785b5e9b azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c508fc0 snd_hda_codec_load_dsp_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fcef434 snd_hda_add_vmaster_hook EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x816c7adb snd_hda_jack_unsol_event EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8210c3f3 snd_hda_get_conn_list EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x821626db snd_hda_jack_set_button_state EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x827ea31f snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87029add azx_probe_codecs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8999c3d0 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b917375 azx_stop_all_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d67bea3 snd_hda_codec_pcm_put EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ed90e77 snd_hda_correct_pin_ctl EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90138267 snd_hda_codec_set_pincfg EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x942cf530 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x949cc96c azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x965b11ad snd_hda_codec_load_dsp_trigger EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9728b246 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99859840 azx_init_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ea124d7 snd_hda_multi_out_dig_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa09dd0b9 snd_hda_codec_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa12dcd3b snd_hda_codec_new @@ -18972,7 +18982,6 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3a29243 snd_hda_apply_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6644c4c snd_hda_get_bool_hint EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6680287 snd_hda_mixer_amp_tlv EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7638aed snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa778080c azx_bus_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa80068d6 __snd_hda_apply_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8b72004 snd_hda_spdif_out_of_nid EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9a7bf75 snd_hda_spdif_ctls_unassign @@ -18998,24 +19007,24 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb6eea69 snd_hda_sequence_write EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb979983 snd_hda_mixer_amp_volume_put EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1d2abd3 snd_hda_codec_amp_stereo EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2b9ede2 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd38ffe3d azx_init_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd437b8ff snd_hda_codec_build_controls EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd736fe48 snd_hda_pick_pin_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda2759e7 snd_hda_unlock_devices EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdacd26ab snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xddb15b3b azx_stop_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdef8428f hda_codec_driver_unregister EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe35542c5 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe555ae9a azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4c4f00c azx_get_pos_posbuf EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5579698 snd_hda_spdif_ctls_assign EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5fe85b2 snd_hda_add_new_ctls EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe847db21 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb9ca180 snd_hda_codec_load_dsp_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed451487 snd_hda_apply_verbs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefece6f1 snd_hda_codec_amp_init_stereo EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0714aac __snd_hda_add_vmaster EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3949041 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf73183f1 snd_hda_codec_load_dsp_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf88622b7 snd_hda_load_patch EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0ab31a51 snd_hda_get_path_idx @@ -19041,25 +19050,25 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xec093e5f snd_hda_get_pa EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xef70be7e snd_hda_gen_spec_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf3bb88cd snd_hda_gen_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf3c59384 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x70266c87 mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x3be1dbcb 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 0x2a4b1655 adau1372_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x79aef44b adau1761_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xffe8aeac adau1761_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x220c239f adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2b44c5dc adau17x1_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3d2abd55 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x569f9617 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x581bc35b adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x58ddf28a adau17x1_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7b8c7e40 adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8bcdc2b1 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7df8b689 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8f46ac5b adau17x1_add_widgets EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa387dce6 adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb5ddce9d adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb1f0d71d adau17x1_add_routes EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xdf5b9e8f adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe9ebaf6a adau17x1_set_micbias_voltage EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x082dedf7 adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x5c1a2948 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xe46ccead cs35l41_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xf3a53937 cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xfaa5745c cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xfdd1d12a cs35l41_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x00a1dc5e cs35l41_regmap_i2c EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x22e11c53 cs35l41_set_channels EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x239b8840 cs35l41_boost_config @@ -19082,26 +19091,26 @@ EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x81f5e2d2 cs42xx8_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xdc14ce5a cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x699429fe da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x853a5e2f da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x3c1d0472 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x6c7c2cd0 da7219_aad_exit EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x8b3185eb da7219_aad_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xb8006b48 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xfd4ea859 da7219_aad_jack_det EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x0c6c442b es8328_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x8c6b9b82 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xbbc3d30f max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x3fa25ca9 soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x48107978 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x92fe83c2 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x2b150a4a soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x55b529ae soc_codec_dev_max98373_sdw EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x66986152 max98373_slot_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xa7eaf24f max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x3f9b6fca mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x518ef5aa mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xb6a14f9e mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xbbd8ddf2 mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x3c429e43 mt6359_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xb8012c7b mt6359_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xca3f6206 mt6359_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xed6fecf3 mt6359_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xb53b2245 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x5ab52d6b mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x7bb2b792 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x8e2e805b mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xac3458ed mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x75c80e34 mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x804986d4 mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x83497bb2 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x8d93b0f3 mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x30610bac nau8824_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x0f60b400 pcm1789_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x17889827 pcm1789_common_init EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xc5509209 pcm1789_common_exit @@ -19123,182 +19132,182 @@ 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 0x03858135 rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x1402a231 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x2353c9e9 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x72ed8605 rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xe01860d8 rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xed2543d0 rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x3b8abc23 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xa2c067ef rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x624ccd5c rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x5a13ea2b rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x3fe93633 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xa1eb38f4 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xa2d295b9 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xdf638b94 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xe26cdb9b rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xec067a70 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xfd931673 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x062875e0 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x18f00031 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xe41c589b rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x931f2410 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xfbbf8ab1 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 0x02d66cb2 rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x135f4344 rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x21a57a80 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0a73f313 rt5682_register_dai_clks EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x21ac7645 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2712b441 rt5682_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 0x34488835 rt5682_register_dai_clks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x37270e49 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 0x8941ed49 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7a79c8bf rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8cf5e705 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x914e73bc rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9b26c7d2 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9c31ae3b rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xadea295a rt5682_reset EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb8e4137d rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc62caeab rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xca92c183 rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfb34f52d rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x054d9158 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0a44f6f3 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x6ea8b00e sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x956c7f0f devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa01eeea4 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc50dfc26 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x80e6326a sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xcfc09251 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe95a7d63 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xec46e27d devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf285b890 sigmadsp_restrict_params EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x3d38ba8c devm_sigmadsp_init_i2c EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x317695c8 devm_sigmadsp_init_regmap EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x1cc7f4f9 ssm2602_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x8d335fc7 ssm2602_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x43267339 aic32x4_register_clocks EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x116961c3 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x1a0f5631 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x7dbcb021 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 0x03f7cfdd wcd938x_sdw_hw_params EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x2f1ee93e wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x66d73e59 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x43640fa3 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x4eb3e12a wcd938x_sdw_set_sdw_stream EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x8c0aeb28 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xba983b9d wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0214cb95 wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x02f9b109 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xa8b09b84 wcd938x_sdw_free EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0aae4762 wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x12a2a6fe wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x158a1b01 wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x29605fd8 wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x327f2ae7 wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3a5a9b27 wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3e990034 wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4c19c198 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0e2c238e wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x15977a0a wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2278897b wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x22a23c0f wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x25aad073 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3a4f4451 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x45b96bbb wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x508db7f1 wm_adsp1_event EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5dfb276b wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x62697ee1 wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x629d9275 wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x694e98f8 wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6ef02a2e wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x764c1c7b wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x97c46c25 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9bec97de wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa99b216d wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xac4d5906 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb5bb970a wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6d88b521 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x70509b04 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8afc1a63 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8c6371b2 wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8d012b54 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x92f2bd8b wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa2127b95 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb11d8ee3 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb9f6e68e wm_adsp_early_event EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbe38957a wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd8e4ef4a wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcf49bd3f wm_adsp2_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe3d799b4 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe590149f wm_adsp_compr_trigger EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe96df573 wm_adsp2_preloader_put 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 0xee8587a7 wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x20935549 wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x35a8bd2b wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf506b198 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2341cfa2 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x3bdddd56 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x41e324ad 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 0x8ed062cd wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x8e6c7b5a wm_hubs_update_class_w EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x961dfe73 wm_hubs_hpl_mux EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xafc19d98 wm_hubs_hpr_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xb4a06d62 wm_hubs_add_analogue_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xe7e9030a wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf20eb459 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc50310da wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xdce998df wm_hubs_set_bias_level EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x45356965 wm8804_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x68d8b547 wm8804_pm EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x6de30686 wm8804_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd4bb8799 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xe2243f13 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x16c7a855 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x7f09a2fa wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x95fd5d37 wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0xd4648419 imx_pcm_dma_init -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x807bb3de fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x29d2a562 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x9da0e6e7 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x4493d65d wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x4f5de01a wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0xfa21686f imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x5a37a7ea 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 0xb1318aff audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x103bfa7d asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0x89f70e4d audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x09d31a46 asoc_simple_be_hw_params_fixup EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x15ee80b9 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x22f4349b asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x28bc10b7 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1cba2aba asoc_simple_clean_reference EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x28cf9b50 asoc_simple_startup EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x35c1642e asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x46514582 asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4abee135 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4ad9f71d asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5eded597 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x49d32638 asoc_simple_set_dailink_name EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x68c4d4bb asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6d7f20f6 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7e4ee120 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x88ceae7d asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x69329c12 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8a5b43d4 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8e289424 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb0d99643 asoc_simple_init_priv EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb4644d37 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbbc62c6b asoc_simple_set_dailink_name EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc03ccb22 asoc_simple_parse_clk EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcb33a3b3 asoc_simple_hw_params EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd25b9604 asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe2368256 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd627eee5 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xde85c8e6 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdeec51d0 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdfa11657 asoc_simple_parse_pin_switches EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0570f931 mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x11e7ece8 mtk_memif_set_addr -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1253e468 mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x12d2c42a mtk_afe_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x17ca2d5e mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf9165694 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x000eecb0 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0870aa2a mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0a967b39 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x15e5637c mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x16a4ec40 mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x230b8422 mtk_afe_resume EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x266f9fbd mtk_memif_set_rate_substream -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2e9380c9 mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x30063a74 mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x353d380e mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4346d62d mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5b3cff90 mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6890bebd mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x76358fd1 mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x807a84a8 mtk_memif_set_disable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8fa52892 mtk_memif_set_pbuf_size -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb9280f62 mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc5ed7b26 mtk_afe_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcc713dcf mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xccaa5b6b mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcfedb341 mtk_afe_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd6e01bc2 mtk_memif_set_format -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdbca1d3c mtk_memif_set_rate -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe484f490 mtk_memif_set_channel -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe5973060 mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x36e78954 mt8195_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x6be13edf mt8195_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x0ee26d39 axg_fifo_pcm_open -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x3c6d06b3 axg_fifo_pcm_close -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x553ddebe axg_fifo_pcm_trigger -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x6911daaa axg_fifo_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x6b49ff81 axg_fifo_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb0992d13 axg_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xbd1c6c0a axg_fifo_pcm_hw_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd203f7e2 g12a_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xf1106f6a axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x1a82c770 axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x40093c79 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4822353d mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5492bef7 mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x59b370b9 mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5ed549d8 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x619fe515 mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x77b14c46 mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x834a2dd9 mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9e1e77ef mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa0e46f45 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xac6f5bf5 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb23d99e4 mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb304831e mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcf84e0c7 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe31c6083 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe8e36112 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xeac52f6f mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x1ba2c4bd mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x452cec7c mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x22792059 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x24a66318 axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x3137f983 axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x4c486ca3 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x4c51a39f axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xce63075c axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd41f96af axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd53b4370 axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe74785e1 axg_fifo_pcm_close 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 0x5e9ee84d axg_tdm_formatter_event EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x64e0ca85 axg_tdm_stream_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x6edb11eb axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xe12863de 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 0x7ded946a axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x2356b3b5 meson_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x37e730b3 meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0xa673d602 axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x23d99a7f meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x29b7a2d0 meson_card_set_be_link EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x508442d2 meson_card_parse_daifmt EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x5c44224c meson_card_i2s_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x744eb3f4 meson_card_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x92f1e732 meson_card_set_fe_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xbe29c08b meson_card_parse_dai -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xeda251a1 meson_card_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x1e7daefa meson_codec_glue_output_startup -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x20f55344 meson_codec_glue_input_set_fmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x51f9f00b meson_codec_glue_input_dai_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x6f2766d2 meson_codec_glue_input_get_data -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x7f606871 meson_codec_glue_input_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xf701dc21 meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x809434ef meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x8e2643dc meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x997ab6be meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xf946c6ba meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x0df49926 meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x809e59c5 meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x87909ddd meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xcb2e31af meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xd89caacd meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xe227481b 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 0x834a4e7e q6adm_close EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xb59df403 q6adm_matrix_map @@ -19342,230 +19351,231 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_inf 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 0x4f124b66 asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x785d70e8 asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x7bdbb5e1 asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xa5955c98 asoc_qcom_lpass_cpu_platform_shutdown -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xa7d0c091 lpass_cpu_pcm_new -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xe4933790 asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xeb3e128f asoc_qcom_lpass_hdmi_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x4f7e2642 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x086de740 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x31d6480e asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x5152bcce asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x82424968 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xc4e3869d asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xff69c8d0 lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x0c4b6f8a asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x941a1c66 asoc_qcom_lpass_platform_register EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0x299b311b rockchip_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01c6b550 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04a9c2b8 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x014fe56d snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04fa1264 snd_soc_daifmt_parse_clock_provider_raw EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0563033e snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x074c543f snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a632a80 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b27a9fa snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b821f95 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e1c7074 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x078b25d1 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x090f8423 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x097a300d snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cdf839f snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ce545c3 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0de08804 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dfdffbe snd_soc_daifmt_parse_format EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e31f205 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e359f93 snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e3e471f snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ecb7291 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ef81641 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fd48546 snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x108e3166 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x126d2c81 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12a784f5 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14837881 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x153f558e snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12f602f9 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1498c13c snd_soc_set_ac97_ops_of_reset EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15ac6469 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16c54fd5 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19f14397 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15b95f58 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16ae2d10 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1726b1fa snd_soc_dai_is_dummy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17b51fa3 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17df58c2 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1838344e snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18b253b0 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18d19480 snd_soc_jack_add_zones EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1afe88b0 snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b36bf4c snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bb7fad4 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d513a76 snd_soc_dapm_nc_pin EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d64fa87 snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d8cf4b2 snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2011f8b6 snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21545a92 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1df8af7b snd_soc_dapm_force_enable_pin EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2310109b snd_soc_component_compr_open EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24dbd5a4 snd_soc_get_strobe EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27444f34 snd_soc_dpcm_fe_can_update EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27cb7633 snd_soc_set_runtime_hwparams EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2928c782 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a191d5e snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c7d3436 snd_soc_jack_add_gpios EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cc4ae71 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2da5fcba snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2db43f12 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e8cb54a snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fc10dc4 snd_soc_dpcm_can_be_prepared +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d20a6e3 snd_soc_component_update_bits_async EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x303e5288 snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31a938f7 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x346b3746 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37e421de snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cc9b72c snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d4592bb snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d63cf59 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d9551ee snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31659dd8 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3669f0e7 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36edb7c7 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x370cf605 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37a6253b snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a76c446 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b42f92d snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c469bea snd_soc_suspend EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e30dfdc snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3fd5806f dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f9f569e snd_soc_dapm_get_pin_status EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41048f0e snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43c88bc6 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4470545c snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48020c5f snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42e5bebe snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45346d2b snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x455d18a1 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x482c0f24 snd_soc_dapm_init EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x490f28c7 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x493ef231 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a5af7ba snd_soc_of_parse_node_prefix EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a6d552c soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4db7b361 snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e3ec535 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e536559 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ba6e157 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dd67f9a devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f96303b snd_soc_card_remove_dai_link EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f998845 snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50121220 snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x523f3413 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52b94acf snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5348bcb2 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x522590c8 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x528d9cd7 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53b7bf57 snd_soc_dai_compr_pointer EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x549e60df snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x555dba24 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55d90114 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56bb6eab snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54ef79c7 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x562365ca snd_soc_component_set_pll EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cbea1c3 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d0b7df3 snd_soc_of_parse_audio_routing EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d304940 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d717a3a snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61a096a6 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x620cff8c snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65e8e593 snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x663620bc snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6145fea9 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x645e5282 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65a6d46c snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65e45714 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x662610cf snd_soc_set_dmi_name EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66fd494f snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x682b4257 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ac81e4c snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6708ccb2 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6754ddf6 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69d80c2b snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a4606cd snd_soc_unregister_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b9ef8a0 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bc73e73 snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6edea3a7 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d0ff0df dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d39553d snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e368400 dapm_regulator_event EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ef931be snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f56dfb5 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f6c5cac snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x722ae1f5 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7423377b snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7583234b snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x758759de snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x758f8508 snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76888ef1 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76adad2f snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x723fa7a4 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72f17cb8 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72f339c5 snd_soc_dai_set_pll EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76ccb99a snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7753ea10 snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x788b3ea7 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7bcd3656 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7de30531 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7833ece4 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a2fec0d snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d33c166 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d98607a snd_soc_dpcm_be_can_update EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7eb97ba5 snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x810af3dc snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x815d9a6f snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81de6f88 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82344f1d snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x828052e3 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82c97a34 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82e2ae9c snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fdd43a3 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81186372 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x834fef96 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8367c57a snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x836a39c8 snd_soc_component_set_jack EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8483a61a snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x848b205f snd_soc_component_init_regmap EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84c5f99d snd_soc_put_enum_double EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8500a8b1 snd_dmaengine_pcm_prepare_slave_config EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x854b111e snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85b830de snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x884a4524 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88ab4b0c snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86a91226 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86b45999 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89521b16 snd_soc_dai_set_sysclk EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89df5d4e snd_soc_link_compr_startup EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89fd19cf snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ad52ecd snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c568984 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e53ceef snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ec28a0a snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f1ba506 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ff562b3 snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x904f67fe dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x914b9c4c dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a24c922 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e776797 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f5f9f3e snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f7d8759 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fd9a2d3 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90dd71c7 snd_soc_of_parse_tdm_slot EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92831123 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92c2f76e snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95537343 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95a7f7cb snd_soc_add_dai_controls EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95e31a46 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96937253 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96c2aa24 snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99c56c73 snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b01f198 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfd8bc4 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x966ae738 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96b06240 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x975cc99e snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97d9d487 snd_soc_dpcm_can_be_prepared EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c126714 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e31fe99 snd_soc_dapm_kcontrol_widget EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e6997a9 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1fcd8c9 snd_soc_component_test_bits EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa22b2cd2 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4f0e1ba snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa29cb702 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa360dc04 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa507a71e snd_soc_close_delayed_work EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7286bbd snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9565380 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9a82176 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7df4b1c snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaac99248 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaae43424 snd_soc_dapm_add_routes EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab5d64f8 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabf3fac0 snd_dmaengine_pcm_register EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabf5c50c snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae79d903 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae9f465d snd_soc_dai_compr_get_params EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb02aad21 snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb084293a snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb19b892a snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2943bab snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3cc30a4 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5a3db2c snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5bb4784 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5e9ed1a snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0d1c7a0 snd_soc_add_card_controls EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb732490b snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8658ad3 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7928fc0 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8f2c4c8 snd_soc_of_get_slot_mask EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb96f371a snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba4f52aa snd_soc_daifmt_parse_format EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbaf25c22 snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd082963 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbef739b0 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfa1e04b snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfaf679b snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc065bc4b snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1529dcb snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2a19a83 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2b328de snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3173de3 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc38df323 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3c497fe snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb06647e devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb57990b snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb6ee47f snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbd1fd88 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbf729d6 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcb9a44b snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc09fd735 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2dbb335 snd_soc_register_card EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc48d6083 snd_soc_info_xr_sx EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4912f7a snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6cfb31b snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc78a4082 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7d823a6 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc80b2cfa snd_soc_dai_compr_set_params EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8afc863 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc970eb77 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca3b4d19 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8349350 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc88aba32 snd_soc_runtime_calc_hw EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca5cd3cf snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc483b54 snd_soc_dapm_new_controls EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccfe746e snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd20cb17 snd_soc_dai_compr_startup EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd29a150 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1765508 snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd391a83a snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd2d772c snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdb0987d devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf82c1fa snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd27767da snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd33d3faf snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd40cada7 snd_soc_dapm_force_bias_level EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4800468 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6d10f6b snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4ed9fe2 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd71c7d87 snd_soc_remove_pcm_runtime EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8910fdb snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8a62108 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaa3d2c0 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8ee9d8f snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9134641 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd94750e7 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9e44f94 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb1c5c1b snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd07a9fc snd_soc_dai_set_channel_map EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd8641a4 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf066444 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe03bd055 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe06021c6 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde5c4c7f dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe138e7b6 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe14bd628 snd_soc_dai_digital_mute EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1605b9e snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4a972aa snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe26b3464 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2a7375f snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2e60f91 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3c81274 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4206827 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4abe07b snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5fa34b6 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe680143e snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7230478 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9148a71 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea09824e snd_soc_rtdcom_lookup EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec68b07a snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed7ed573 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeeff907b null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec6eeef9 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeeb0c106 snd_soc_component_nc_pin EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef2fd117 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf09d75e9 snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf23e55e8 snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5672ee5 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf592632d snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf69ab4c9 devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8b556d6 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef78551f snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0346e29 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0cf0d5a snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf13c420f null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf29de015 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2b796e8 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2b7db26 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4ca6749 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf67f2ce7 snd_soc_dai_set_tdm_slot EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb50334c snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd538daf snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd93c830 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe794057 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffa14acd snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffb4ed85 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x127e44a6 snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x4fc6b874 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x51039a11 snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x5f7e9e90 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xbf7c8187 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaa551be devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff06c044 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff0a8c03 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x056d390a snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x095c09e3 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x3d59728d snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x9ae84ba9 snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd6fbaa3b snd_sof_debugfs_buf_item EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x2c64d423 sprd_mcdt_request_chan EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x5061832c sprd_mcdt_chan_int_disable EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x609193c3 sprd_mcdt_chan_write @@ -19575,16 +19585,16 @@ EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0xa5fdddd3 sprd_mcdt_chan_read 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 0x0fc650d7 tegra_asoc_machine_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x26fc551f tegra_asoc_machine_probe -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x004fac7e tegra_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x07092c3e tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x427a44f1 tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x9a2e134f tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x0776a86f tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x1377b114 tegra_pcm_hw_params EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x608b6329 tegra_pcm_platform_unregister -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x97fbe473 tegra_pcm_open -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xb5a4b0d5 tegra_pcm_platform_register_with_chan_names -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xbed465d9 tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x6368c366 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x84595b0e tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xa0bb6783 tegra_pcm_pointer EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xd3d44611 tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xf61c3787 tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xf74bc570 tegra_pcm_open 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 @@ -19621,83 +19631,92 @@ EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdb88252f line6_init_midi EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe5cc82f6 line6_pcm_release EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf2f92c55 line6_disconnect EXPORT_SYMBOL_GPL vmlinux 0x00062d18 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x0007bc0c cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x000b80c9 aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0x000c3024 xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x001238ff wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x0012c64a devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x0046d9d0 devm_phy_package_join EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem EXPORT_SYMBOL_GPL vmlinux 0x005d2f83 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x005d655b i2c_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority EXPORT_SYMBOL_GPL vmlinux 0x00610175 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x00639879 vcpu_put EXPORT_SYMBOL_GPL vmlinux 0x0063d2eb srcu_batches_completed EXPORT_SYMBOL_GPL vmlinux 0x0067283c ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x00698599 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x007a85a3 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x008c50d1 trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0x008e1455 soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x00ab3650 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x00c02dea gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0x00cb3fac of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0x00cc36cf preempt_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator EXPORT_SYMBOL_GPL vmlinux 0x00f6d997 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x00fa801f kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0x00ff6d2b bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0x0108976c verify_signature EXPORT_SYMBOL_GPL vmlinux 0x010f9bec iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x011f757f shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x0129abba mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x012b921b ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x0139b666 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x0144317b wm8350_gpio_config EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale EXPORT_SYMBOL_GPL vmlinux 0x0162725c __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x016613a0 inet_hash EXPORT_SYMBOL_GPL vmlinux 0x016a9a9a acpi_cppc_processor_exit EXPORT_SYMBOL_GPL vmlinux 0x0170154f mtk_pinconf_adv_pull_set -EXPORT_SYMBOL_GPL vmlinux 0x01727358 crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0x017cd79c clk_regmap_gate_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x017cfae8 blkcg_root_css EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0189cd7a regmap_get_device EXPORT_SYMBOL_GPL vmlinux 0x018a0b25 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x018f29fc __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x0197e4aa ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01b50118 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x01b44e83 dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0x01b89705 wm831x_device_shutdown EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01d467d4 get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x01d58352 of_devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x01f897ad iommu_enable_nesting EXPORT_SYMBOL_GPL vmlinux 0x01f9abc1 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x01ff3596 trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0x02004968 regulator_is_enabled_regmap EXPORT_SYMBOL_GPL vmlinux 0x0207a018 devm_gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire EXPORT_SYMBOL_GPL vmlinux 0x020facb6 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x02157153 tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0x02159c7e invalidate_inode_pages2_range EXPORT_SYMBOL_GPL vmlinux 0x0219963f pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0x022c5515 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x02303c8d device_create_file EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x024cd3eb vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x02543698 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x0264c7f6 kvm_put_kvm EXPORT_SYMBOL_GPL vmlinux 0x02671296 fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0x0277073b gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0x028b6e3a driver_find_device EXPORT_SYMBOL_GPL vmlinux 0x028ebe4a devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x02993a71 event_triggers_call EXPORT_SYMBOL_GPL vmlinux 0x029dd9d5 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x02aa174f ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x02b77ca8 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x02b88e4a dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x02ba9762 kvm_vcpu_mark_page_dirty EXPORT_SYMBOL_GPL vmlinux 0x02bbac14 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x02be9f79 bio_start_io_acct EXPORT_SYMBOL_GPL vmlinux 0x02c34344 fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x02d34f17 vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0x02d7774d blk_next_bio EXPORT_SYMBOL_GPL vmlinux 0x02d866c6 edac_device_handle_ue_count EXPORT_SYMBOL_GPL vmlinux 0x02d9d308 mtk_eint_find_irq EXPORT_SYMBOL_GPL vmlinux 0x02dc4ada fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02e14b4d scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x02e2f6a7 device_destroy EXPORT_SYMBOL_GPL vmlinux 0x02ed1b9a blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x02fd6b14 devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x031960ea spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x031c2411 __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x031d7de5 fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x0334153f gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk EXPORT_SYMBOL_GPL vmlinux 0x033add0f usb_phy_set_event EXPORT_SYMBOL_GPL vmlinux 0x033f18a3 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x03411d79 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x03406c06 tcp_done EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x036e2afd devm_free_percpu @@ -19706,83 +19725,70 @@ EXPORT_SYMBOL_GPL vmlinux 0x03775e54 clk_gate_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x0382700c wm831x_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x038675a6 bpfilter_ops EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x0398cb06 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x03a400ee nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0x03a4a5aa adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x03a71c5f seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0x03aed5e8 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x03be2e6a regmap_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03c33701 sdio_memcpy_fromio EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03d0c4ad call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x03e77330 ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x03ede088 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x03d675c7 devlink_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x03f7ace3 dev_pm_opp_of_add_table EXPORT_SYMBOL_GPL vmlinux 0x03fae19b __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x03fdbc64 cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x0411d0e8 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0x04142176 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x0409d8b9 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x041fe10f devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0429d509 regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x042b1a57 ohci_hub_control EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x04308e5b pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x0433cc44 pinctrl_generic_get_group_name -EXPORT_SYMBOL_GPL vmlinux 0x0435b7be dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x04457b9c gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x04386f81 clk_hw_get_parent_by_index EXPORT_SYMBOL_GPL vmlinux 0x0446251f tty_buffer_lock_exclusive EXPORT_SYMBOL_GPL vmlinux 0x044fea1b dummy_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges EXPORT_SYMBOL_GPL vmlinux 0x04674bce acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x046a7852 __mmdrop EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe EXPORT_SYMBOL_GPL vmlinux 0x04748430 meson_clk_dualdiv_ops EXPORT_SYMBOL_GPL vmlinux 0x0475796a rio_mport_class EXPORT_SYMBOL_GPL vmlinux 0x0480328e tegra_bpmp_mrq_return -EXPORT_SYMBOL_GPL vmlinux 0x048480b2 synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x04a3767a gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0x04b7b851 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x04b96be1 tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04c64f45 __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04da2f29 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x04dcf786 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x04cee5df regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x04d28fb8 blk_rq_prep_clone EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe EXPORT_SYMBOL_GPL vmlinux 0x04e6cf98 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x04e93e26 regulator_set_mode EXPORT_SYMBOL_GPL vmlinux 0x04fa1a35 iommu_dev_disable_feature EXPORT_SYMBOL_GPL vmlinux 0x04fece57 vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0x05196b49 __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x051d6a1a acpi_subsys_suspend EXPORT_SYMBOL_GPL vmlinux 0x052553a3 register_virtio_device 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 0x053f6ea2 dpbp_enable EXPORT_SYMBOL_GPL vmlinux 0x0541c58f pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x05428eed rdev_get_dev EXPORT_SYMBOL_GPL vmlinux 0x054c28ab __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0x054c84ac da903x_write EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt EXPORT_SYMBOL_GPL vmlinux 0x0557a44d pinconf_generic_dt_subnode_to_map EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x056371d2 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x05618f10 tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll +EXPORT_SYMBOL_GPL vmlinux 0x056c065e devlink_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0x056d3ea3 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x05740797 perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x058261dc key_set_timeout 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 0x0593695e crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x059b0765 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x059d3d3f nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x05bacaa4 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x05c75c18 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x05cc14e1 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x05cc81e2 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05bb83e1 ping_close EXPORT_SYMBOL_GPL vmlinux 0x05cda2b8 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x05cedeb8 regulator_get_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x05e582b5 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x05f406e6 bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0x05f591cc spi_controller_dma_map_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting @@ -19793,53 +19799,55 @@ EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry EXPORT_SYMBOL_GPL vmlinux 0x064f00c7 usb_phy_set_charger_current EXPORT_SYMBOL_GPL vmlinux 0x06505844 ata_pci_bmdma_init EXPORT_SYMBOL_GPL vmlinux 0x06557d55 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x065ea506 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x0659f6cd fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x065e0144 __devm_spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x067c1aa7 genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x06873046 k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0x0682dfd2 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x0692ff9b phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x06969fcf scsi_host_unblock EXPORT_SYMBOL_GPL vmlinux 0x069767cc debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x06c4bc98 bgmac_alloc +EXPORT_SYMBOL_GPL vmlinux 0x06bb041d spi_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x06c5de26 devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off EXPORT_SYMBOL_GPL vmlinux 0x06d23ff0 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x06d639ae ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x06d85694 vfs_inode_has_locks EXPORT_SYMBOL_GPL vmlinux 0x06dfafb5 umd_load_blob EXPORT_SYMBOL_GPL vmlinux 0x06dfe818 of_nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode EXPORT_SYMBOL_GPL vmlinux 0x06e7aab9 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x06ed77c8 sfp_register_socket EXPORT_SYMBOL_GPL vmlinux 0x071363b3 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x07172642 dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax EXPORT_SYMBOL_GPL vmlinux 0x0729887a led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x072ccbda sdio_readl EXPORT_SYMBOL_GPL vmlinux 0x07331b4d copy_user_highpage EXPORT_SYMBOL_GPL vmlinux 0x0733d72f serial8250_em485_start_tx EXPORT_SYMBOL_GPL vmlinux 0x073ddad5 devm_gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x0745f809 iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0x0746a0d4 mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x07607394 gpiochip_relres_irq EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x076a7833 ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0x077f5c0a anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x07928c3f kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0x079f63af page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0x07a4d8f3 anon_transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0x07a9fe99 tpm_default_chip EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister EXPORT_SYMBOL_GPL vmlinux 0x07bb2967 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x07bd7821 rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue EXPORT_SYMBOL_GPL vmlinux 0x07c66a76 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x07cdabdb devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x07d04d52 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x07cc0bb7 regmap_write EXPORT_SYMBOL_GPL vmlinux 0x07ddea6f tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07f4c401 kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0x07fa5480 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x080880b0 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x07f3d2ab regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x07f71dd2 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x0807d1b8 spi_busnum_to_master EXPORT_SYMBOL_GPL vmlinux 0x080fbd94 mtk_pinconf_bias_set_combo EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x08269d7e regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0x0826f120 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x082caebd ping_unhash EXPORT_SYMBOL_GPL vmlinux 0x0843fa03 balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x0854366f rdev_get_name EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes EXPORT_SYMBOL_GPL vmlinux 0x085bdf2b iommu_unregister_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x086272e5 dprc_remove_devices @@ -19847,130 +19855,131 @@ EXPORT_SYMBOL_GPL vmlinux 0x0863d20c pin_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0x086b7434 iommu_fwspec_add_ids EXPORT_SYMBOL_GPL vmlinux 0x0879dfb9 devm_request_pci_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x08805e29 gpiochip_remove_pin_ranges EXPORT_SYMBOL_GPL vmlinux 0x088bac9e debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x088c0a0c __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x088c77c5 tps6586x_write EXPORT_SYMBOL_GPL vmlinux 0x0895b2fd __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x08a19548 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08a8eaa1 regulator_list_hardware_vsel EXPORT_SYMBOL_GPL vmlinux 0x08aafe88 devm_nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0x08ab7356 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x08acde67 cpufreq_enable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x08b0e55e generic_device_group EXPORT_SYMBOL_GPL vmlinux 0x08beb04c __rio_local_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08f00bfa inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x08e770cd pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x0907d64a skcipher_walk_async EXPORT_SYMBOL_GPL vmlinux 0x0918f68a is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x091bb3dd msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x09508364 sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0x096ab04f __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x097b14c5 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x09841245 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x09862b23 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x0990adc4 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x099b1db7 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x09a9a940 perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09b88745 devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0x09d55188 trace_define_field EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x09e4f0e4 __traceiter_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x09ebadc2 usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x0a0fbea7 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0x0a335f89 devlink_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x0a36048c devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x0a3b0305 inet6_compat_ioctl EXPORT_SYMBOL_GPL vmlinux 0x0a3bb099 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x0a42080c devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap EXPORT_SYMBOL_GPL vmlinux 0x0a53c87f pinctrl_remove_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send EXPORT_SYMBOL_GPL vmlinux 0x0a6c6454 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x0a79109e ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x0a74e083 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0a793b03 ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x0a7d36e1 __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0x0a843ebb pinctrl_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x0a851234 cpci_hp_register_controller EXPORT_SYMBOL_GPL vmlinux 0x0a9d4625 serdev_device_close EXPORT_SYMBOL_GPL vmlinux 0x0aa3204c pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0aa53b4c phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0x0aa8a26a sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x0ab2a698 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x0ab11c1d wm8350_set_bits EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message EXPORT_SYMBOL_GPL vmlinux 0x0abd54d9 acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x0ad018fe spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x0ad7d79a udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x0ac25f53 fwnode_get_named_gpiod EXPORT_SYMBOL_GPL vmlinux 0x0adf4fb5 mtk_pinconf_bias_disable_get -EXPORT_SYMBOL_GPL vmlinux 0x0ae701f1 ata_host_init EXPORT_SYMBOL_GPL vmlinux 0x0aec2cbe of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0x0aefc5e9 put_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x0b061be8 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x0afaf3fa inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1262d0 synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0x0b183b70 fsl_mc_populate_irq_pool -EXPORT_SYMBOL_GPL vmlinux 0x0b19359b sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0x0b1a84ab pci_generic_ecam_ops EXPORT_SYMBOL_GPL vmlinux 0x0b2aee1a pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x0b2d9067 eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b39b99e ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x0b3436b3 skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b4ba785 i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x0b50c29a fscrypt_ioctl_get_nonce EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id EXPORT_SYMBOL_GPL vmlinux 0x0b6a5141 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x0b6c5826 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x0b6fe9e9 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x0b7411b8 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x0b743998 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x0b751eed wakeup_source_unregister EXPORT_SYMBOL_GPL vmlinux 0x0b784ab4 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x0b823a16 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x0b7f40bd regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0ba4d9e0 ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x0bb35aad fsl_mc_bus_dpsw_type +EXPORT_SYMBOL_GPL vmlinux 0x0bb4aeed __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0x0bb8e5a4 mtk_pinconf_bias_get_combo EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0be8475e __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x0bf5f97f kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x0bf95278 gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c1e6a5d icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x0c1bd376 crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0x0c1f5a0c irq_domain_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x0c4a200c devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x0c5e59f8 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0c4f9a41 imx_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0x0c600741 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x0c715c3b __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0x0c73ab0e rio_bus_type EXPORT_SYMBOL_GPL vmlinux 0x0c7dceb7 sata_pmp_port_ops EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string EXPORT_SYMBOL_GPL vmlinux 0x0c90a0d6 blk_queue_max_discard_segments EXPORT_SYMBOL_GPL vmlinux 0x0c914737 clk_mux_ops EXPORT_SYMBOL_GPL vmlinux 0x0c9e333f imx_pinconf_get_scu -EXPORT_SYMBOL_GPL vmlinux 0x0ca8e69e kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x0c9ff267 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x0ca3825d sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cc9c879 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x0cce0b4f regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed EXPORT_SYMBOL_GPL vmlinux 0x0ce6def5 meson8_pmx_ops EXPORT_SYMBOL_GPL vmlinux 0x0cee26f1 iopf_queue_flush_dev -EXPORT_SYMBOL_GPL vmlinux 0x0d0aa92e fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x0d07d2d1 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x0d0beec2 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x0d140469 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x0d178423 regulator_list_voltage EXPORT_SYMBOL_GPL vmlinux 0x0d1dbca1 device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x0d217dc9 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0d367d59 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d1e9cec regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d5a7ad8 crypto_aead_setkey EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data EXPORT_SYMBOL_GPL vmlinux 0x0d6609d5 linear_hugepage_index EXPORT_SYMBOL_GPL vmlinux 0x0d6ac95b irq_domain_create_legacy EXPORT_SYMBOL_GPL vmlinux 0x0d72f413 blk_queue_set_zoned EXPORT_SYMBOL_GPL vmlinux 0x0d759517 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d782639 crypto_unregister_skciphers EXPORT_SYMBOL_GPL vmlinux 0x0d7ad02a spi_mem_dirmap_create EXPORT_SYMBOL_GPL vmlinux 0x0d828ab2 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x0d8e44b3 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x0d93cd50 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0d861aed switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0x0d9b80c3 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x0d9df8d3 crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0x0da936e5 __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x0dd1ae66 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x0da9cb6d devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0db0c8fe gpiochip_remove_pin_ranges EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0decc6f0 netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x0df0fb29 driver_remove_file EXPORT_SYMBOL_GPL vmlinux 0x0df64300 led_classdev_notify_brightness_hw_changed EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels @@ -19979,177 +19988,180 @@ EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release EXPORT_SYMBOL_GPL vmlinux 0x0e169b11 serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0x0e19d394 k3_udma_glue_tx_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0x0e1d1b4c cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x0e1e9364 l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0x0e21d8aa ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x0e206aee hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0e2ac392 register_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x0e2fd0ea fsl_mc_allocate_irqs -EXPORT_SYMBOL_GPL vmlinux 0x0e3674d0 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0x0e3897bc __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0e419bea icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x0e39f4f1 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x0e4d7148 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0e599c64 mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e8569cb kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x0e937d46 crypto_unregister_ahashes EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0ea62ee6 device_link_add EXPORT_SYMBOL_GPL vmlinux 0x0ea9466b __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x0eb3e4f2 is_current_mnt_ns EXPORT_SYMBOL_GPL vmlinux 0x0ebfd750 usb_hcd_poll_rh_status EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ececf82 kvm_vcpu_is_visible_gfn EXPORT_SYMBOL_GPL vmlinux 0x0ecf8102 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x0ecfa969 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x0ed62fcf do_truncate EXPORT_SYMBOL_GPL vmlinux 0x0ee5191a devm_regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x0ee7ac50 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x0ef5e77a regmap_multi_reg_write_bypassed EXPORT_SYMBOL_GPL vmlinux 0x0ef828df anon_transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x0eff0ca1 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x0f048b43 crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x0f0e98b4 security_file_permission EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page EXPORT_SYMBOL_GPL vmlinux 0x0f236c73 debugfs_real_fops EXPORT_SYMBOL_GPL vmlinux 0x0f2d248b fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x0f2f77e0 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x0f2fbc78 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x0f38d1bd clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x0f3f32ee devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x0f44c068 __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x0f53d354 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x0f30c657 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x0f376f0c __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x0f5c3d92 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x0f63391a gpiochip_enable_irq EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name EXPORT_SYMBOL_GPL vmlinux 0x0f8bce10 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x0f8e0777 gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x0f9f4554 rockchip_clk_register_plls EXPORT_SYMBOL_GPL vmlinux 0x0fa157f6 auxiliary_find_device EXPORT_SYMBOL_GPL vmlinux 0x0faa6478 xen_unmap_domain_gfn_range EXPORT_SYMBOL_GPL vmlinux 0x0faf7520 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x0fb32736 iterate_mounts EXPORT_SYMBOL_GPL vmlinux 0x0fb8dad2 devm_irq_setup_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align -EXPORT_SYMBOL_GPL vmlinux 0x0fd1ec0e ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x0fd4175e gpiochip_populate_parent_fwspec_twocell EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fd753d7 skcipher_walk_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x0fdb56c9 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x0fddab63 blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0x0fe2943f scsi_autopm_get_device EXPORT_SYMBOL_GPL vmlinux 0x0fe80419 elv_rqhash_del EXPORT_SYMBOL_GPL vmlinux 0x0feb3b11 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1003d8a1 xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0x10042ca1 clk_regmap_divider_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x100e5a4c tty_port_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x101d0c1c inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x102bec10 of_i2c_setup_smbus_alert EXPORT_SYMBOL_GPL vmlinux 0x10325eec get_user_pages_fast_only EXPORT_SYMBOL_GPL vmlinux 0x103c23c8 devm_hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0x103ed65f register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x105285d8 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x1054b282 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x1063715e ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x10690b9f inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x1078d9d2 phy_pm_runtime_put_sync EXPORT_SYMBOL_GPL vmlinux 0x107a911e acpi_irq_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf EXPORT_SYMBOL_GPL vmlinux 0x108e001f mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x109ed73e cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x10abd2d8 add_page_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x10b9d0c6 usb_remove_hcd EXPORT_SYMBOL_GPL vmlinux 0x10c7040c memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x10cf4895 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x10def774 fwnode_create_software_node EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer EXPORT_SYMBOL_GPL vmlinux 0x1118d1e8 i2c_dw_acpi_configure EXPORT_SYMBOL_GPL vmlinux 0x112c5cab tegra210_clk_emc_attach -EXPORT_SYMBOL_GPL vmlinux 0x112ee195 fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0x113d3937 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x1174b99e __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x117b74ce of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x118b2384 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x1182cfd2 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x11860565 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x118e4fc5 ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0x11a21261 dmaengine_desc_get_metadata_ptr EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11a3c22c crypto_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x11a71aec badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x11b899e9 ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0x11c1cd7d serdev_device_remove EXPORT_SYMBOL_GPL vmlinux 0x11d3330f pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x11d68f62 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x11d7452d trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0x11d9a0d4 blk_mq_freeze_queue 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 0x11e62095 pci_d3cold_enable EXPORT_SYMBOL_GPL vmlinux 0x11f956bc ahci_platform_enable_phys -EXPORT_SYMBOL_GPL vmlinux 0x1202455b security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0x120d3432 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x12160c54 dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x122c9f85 inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x123c625f ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x1241e552 pinctrl_find_gpio_range_from_pin EXPORT_SYMBOL_GPL vmlinux 0x1243800d fat_alloc_new_dir EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x12675945 of_clk_hw_onecell_get EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126b4ed6 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x12752cd4 skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0x1284808f kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0x1285b288 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x12925cc5 kvm_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x129f4654 ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x12a35650 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x12aebf56 ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0x12c17bbf led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x12c24c48 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x12cf78ac trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x12d1276a is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x12ca648e cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0x12df6f4c bio_trim EXPORT_SYMBOL_GPL vmlinux 0x12e1974d devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x12e1a7e6 gpiod_direction_output EXPORT_SYMBOL_GPL vmlinux 0x12e1db1d pm_genpd_add_subdomain EXPORT_SYMBOL_GPL vmlinux 0x12e38fb7 dev_attr_link_power_management_policy EXPORT_SYMBOL_GPL vmlinux 0x12e56c5f handle_fasteoi_nmi EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x130436ea wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0x13133896 tpm_pm_resume EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq EXPORT_SYMBOL_GPL vmlinux 0x131eb7e8 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x13359b25 scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk EXPORT_SYMBOL_GPL vmlinux 0x133cd30e fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x13416194 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x133dbf44 regulator_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x1345e975 dprc_get_obj EXPORT_SYMBOL_GPL vmlinux 0x134ce291 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0x135b8eaf i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x135eb713 devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x1361b9aa ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x135128b8 icc_nodes_remove EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1363ffa7 clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x136aec9f perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x1367d451 tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0x137987de ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x1379d198 of_clk_hw_simple_get EXPORT_SYMBOL_GPL vmlinux 0x138320e3 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x1385a33d strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled EXPORT_SYMBOL_GPL vmlinux 0x1396489d dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0x13a30bb0 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x13a4ccff validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x13afe9be ahci_save_initial_config EXPORT_SYMBOL_GPL vmlinux 0x13c38f3e reset_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x13c70438 pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x13ca662b wbc_detach_inode EXPORT_SYMBOL_GPL vmlinux 0x13caa386 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x13cd54c8 crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr -EXPORT_SYMBOL_GPL vmlinux 0x13db4b0d sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0x13e764ac blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x13ebbee7 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f3a87e ahci_do_softreset EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x140180ec posix_clock_register EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x14187ccf dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x141e2a5f phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x140655b2 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x141c4805 gpiochip_line_is_open_drain EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x142214ef fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0x142b16f7 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x143be876 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x143d9b3c alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x144bf616 __sync_filesystem EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free -EXPORT_SYMBOL_GPL vmlinux 0x145915f7 regulator_unregister EXPORT_SYMBOL_GPL vmlinux 0x145a6d41 regmap_mmio_attach_clk EXPORT_SYMBOL_GPL vmlinux 0x145bd646 pm_clk_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x14646596 efivar_entry_size EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1475abf0 device_find_child EXPORT_SYMBOL_GPL vmlinux 0x1478a092 uhci_reset_hc EXPORT_SYMBOL_GPL vmlinux 0x147a7eba dw_pcie_host_init EXPORT_SYMBOL_GPL vmlinux 0x147cea7f clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x147f679b sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x14874b8b stmpe_set_altfunc EXPORT_SYMBOL_GPL vmlinux 0x14894d0b of_remove_property -EXPORT_SYMBOL_GPL vmlinux 0x148a562f scsi_mode_select EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x1490058e register_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x149aa5ad ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x149cc349 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x149f855c spi_res_release EXPORT_SYMBOL_GPL vmlinux 0x14b4d647 serial8250_em485_destroy EXPORT_SYMBOL_GPL vmlinux 0x14b520b2 fbcon_modechange_possible EXPORT_SYMBOL_GPL vmlinux 0x14c61ee8 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x14cc4e5a fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val EXPORT_SYMBOL_GPL vmlinux 0x14d3afc0 vring_new_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x14d81cf7 da903x_unregister_notifier @@ -20158,241 +20170,263 @@ EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node EXPORT_SYMBOL_GPL vmlinux 0x150a8ef6 pinctrl_parse_index_with_args EXPORT_SYMBOL_GPL vmlinux 0x150e3027 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x150fe7d1 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x151408de regulator_allow_bypass EXPORT_SYMBOL_GPL vmlinux 0x152dbdb9 tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x1535d27c of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x153624ec devm_hwspin_lock_unregister EXPORT_SYMBOL_GPL vmlinux 0x1539067a mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del EXPORT_SYMBOL_GPL vmlinux 0x154690dd usb_free_coherent EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put EXPORT_SYMBOL_GPL vmlinux 0x15628f94 k3_udma_glue_rx_flow_init -EXPORT_SYMBOL_GPL vmlinux 0x1564e11e ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x156874be rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x159cf936 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x156d728c device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x1572dfe3 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x1580b177 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x1588191f device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x158ab7ce netdev_rx_handler_unregister EXPORT_SYMBOL_GPL vmlinux 0x15a02226 iomap_invalidatepage EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks EXPORT_SYMBOL_GPL vmlinux 0x15b04b11 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x15b1f3f0 bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0x15bfde78 iommu_iova_to_phys EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x15c82cb5 page_mkclean EXPORT_SYMBOL_GPL vmlinux 0x15d6818e ti_sci_inta_msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x15e0b684 inet6_cleanup_sock EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15ed2c3f dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x15f3a173 ata_ehi_clear_desc EXPORT_SYMBOL_GPL vmlinux 0x160e6a84 devm_create_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x16107eaa devres_release -EXPORT_SYMBOL_GPL vmlinux 0x1610b8cf fwnode_property_present EXPORT_SYMBOL_GPL vmlinux 0x161f4b82 d_walk -EXPORT_SYMBOL_GPL vmlinux 0x1622b381 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x1623faca perf_get_aux EXPORT_SYMBOL_GPL vmlinux 0x162c1e88 extcon_get_state EXPORT_SYMBOL_GPL vmlinux 0x163f56a5 pci_ioremap_wc_bar EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x164244f4 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x164f5727 ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x16529c9b regulator_set_voltage_time EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size EXPORT_SYMBOL_GPL vmlinux 0x168b37d6 xen_xlate_remap_gfn_array EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x169482bf gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x16a66700 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x16af8378 sdio_disable_func EXPORT_SYMBOL_GPL vmlinux 0x16b72183 devm_gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0x16c24e9d __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x16d497a8 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x16d7ceb8 fwnode_get_named_gpiod EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x16e4ef1b dax_writeback_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x16e546be rio_request_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq EXPORT_SYMBOL_GPL vmlinux 0x16f5e123 ata_sff_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x171735d8 vchan_dma_desc_free_list EXPORT_SYMBOL_GPL vmlinux 0x17176dc4 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x172b98b5 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x17267819 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x172a8bfd lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0x1735fc88 acpi_dev_pm_attach EXPORT_SYMBOL_GPL vmlinux 0x173cdaa3 __efivar_entry_iter EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate EXPORT_SYMBOL_GPL vmlinux 0x17484cf7 hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x17512572 trace_event_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x17535dd6 tty_standard_install EXPORT_SYMBOL_GPL vmlinux 0x17547ef0 xhci_run EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs +EXPORT_SYMBOL_GPL vmlinux 0x175c0682 proc_create_net_data EXPORT_SYMBOL_GPL vmlinux 0x175d7c05 led_get_default_pattern EXPORT_SYMBOL_GPL vmlinux 0x175e6dd0 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x175f490d pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x176919dd crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x176204fa __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x17690e59 crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0x177523f6 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x177bbb4b cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version EXPORT_SYMBOL_GPL vmlinux 0x1781e5a8 clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0x178ffeea synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0x17a29bbc crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x178ecb5d page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0x17a9418b fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x17ae76f0 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x17af28f2 gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x17b3562b scsi_dh_set_params EXPORT_SYMBOL_GPL vmlinux 0x17b5ada8 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x17b821e9 platform_irqchip_probe EXPORT_SYMBOL_GPL vmlinux 0x17cb5475 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x17d20370 xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17eb70c1 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x17ece0f6 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x17f78453 ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize EXPORT_SYMBOL_GPL vmlinux 0x1802910e clk_regmap_mux_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x18037d56 usb_hub_release_port EXPORT_SYMBOL_GPL vmlinux 0x18088ad1 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x1809d813 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x18151a3b __vfs_removexattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x1817346f phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0x1817b294 pinctrl_utils_reserve_map EXPORT_SYMBOL_GPL vmlinux 0x181a1c8d serial8250_read_char EXPORT_SYMBOL_GPL vmlinux 0x1822b272 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x182d813b thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1829e0d5 gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x1856ff3f inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x186580a3 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x186586cc sdio_signal_irq EXPORT_SYMBOL_GPL vmlinux 0x1867493b pci_bridge_secondary_bus_reset EXPORT_SYMBOL_GPL vmlinux 0x1869cc19 blk_ksm_destroy EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x18919f4c crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x1883d1c1 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x188d42f9 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x188ea595 filemap_read EXPORT_SYMBOL_GPL vmlinux 0x18977540 led_init_default_state_get EXPORT_SYMBOL_GPL vmlinux 0x189cb6d5 usb_lock_device_for_reset EXPORT_SYMBOL_GPL vmlinux 0x18a0b2d2 __clocksource_register_scale EXPORT_SYMBOL_GPL vmlinux 0x18bdf6c6 acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x18ca71df ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x18c30c64 crypto_unregister_shashes EXPORT_SYMBOL_GPL vmlinux 0x18ca86a5 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x18d3049c crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x18cbe478 trace_event_raw_init EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale EXPORT_SYMBOL_GPL vmlinux 0x18eaf831 rt_mutex_lock EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x18fe5c18 __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x19067e27 sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0x19080529 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x191bca0c fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x190bbfdb kvm_release_page_dirty EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert -EXPORT_SYMBOL_GPL vmlinux 0x1938052f tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0x19400af9 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x1943f7b3 tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0x19445d5c pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x194e32d4 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x1954c590 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x195c3dff acpi_create_platform_device EXPORT_SYMBOL_GPL vmlinux 0x195d95cc pm_generic_resume EXPORT_SYMBOL_GPL vmlinux 0x19612d5b devm_ti_sci_get_resource EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x198a1233 sched_trace_rq_avg_dl EXPORT_SYMBOL_GPL vmlinux 0x19977c57 pci_dev_lock EXPORT_SYMBOL_GPL vmlinux 0x19984586 bdi_dev_name EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled EXPORT_SYMBOL_GPL vmlinux 0x19a39db6 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x19b3fc40 crypto_register_aeads EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x19cfb248 balloon_page_dequeue EXPORT_SYMBOL_GPL vmlinux 0x19d23158 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x19dbd771 crypto_inst_setname EXPORT_SYMBOL_GPL vmlinux 0x19df78cd __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x19dfe2e4 ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x1a0f0cfe skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a29c393 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x1a19bb6a sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x1a24bfd0 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x1a2b541f security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x1a2e7839 irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0x1a41ca28 housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x1a4ea5b5 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x1a59873a phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1a629734 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x1a6a3861 gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie EXPORT_SYMBOL_GPL vmlinux 0x1a761c08 regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list -EXPORT_SYMBOL_GPL vmlinux 0x1a8572d4 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x1a837d6b device_move EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x1a8d42ef md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1a8d4d40 nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x1a959482 wp_shared_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x1a9754cf sbitmap_queue_min_shallow_depth EXPORT_SYMBOL_GPL vmlinux 0x1aa27a10 acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0x1aab1795 ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0x1abbfd9c irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x1ac6735e gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x1acb5511 crypto_ahash_setkey EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad98d5e gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x1aef9b6a dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1afd6b25 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x1b04110f kvm_get_running_vcpu EXPORT_SYMBOL_GPL vmlinux 0x1b0679f2 phy_init EXPORT_SYMBOL_GPL vmlinux 0x1b1d301c mtk_pinconf_drive_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0x1b1e946e fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x1b340111 crypto_stats_akcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x1b3ad94c class_destroy EXPORT_SYMBOL_GPL vmlinux 0x1b4129fe dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x1b41dfec sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x1b4cc111 __traceiter_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask EXPORT_SYMBOL_GPL vmlinux 0x1b52470b extcon_sync EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc EXPORT_SYMBOL_GPL vmlinux 0x1b6007e3 mbox_chan_txdone EXPORT_SYMBOL_GPL vmlinux 0x1b63c767 __devm_clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0x1b640e3d acpi_storage_d3 -EXPORT_SYMBOL_GPL vmlinux 0x1b68e936 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1b6a0781 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1b79ff8b gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x1b72f2e5 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x1b77e982 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x1b78f8b7 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x1b7f1062 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x1b80e097 crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b99119a lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1b999a34 device_wakeup_disable EXPORT_SYMBOL_GPL vmlinux 0x1baa2d87 to_software_node -EXPORT_SYMBOL_GPL vmlinux 0x1bc4a98e switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x1bb504ba trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc63b7e mmc_app_cmd EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity EXPORT_SYMBOL_GPL vmlinux 0x1bd7ef09 dev_attr_em_message EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1c07f732 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x1c0af6d1 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x1c0d6e10 __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x1c163829 pci_ecam_create -EXPORT_SYMBOL_GPL vmlinux 0x1c1ffc60 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c19411e devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x1c33b2dc mtk_eint_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x1c394ec1 __traceiter_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0x1c497498 serial8250_do_get_mctrl EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5a7f3e __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c650c66 sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0x1c67cf41 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x1c6f8c21 devlink_param_unregister EXPORT_SYMBOL_GPL vmlinux 0x1c726cd6 key_type_user EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c884f63 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x1c89f1ba pci_host_common_probe EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent -EXPORT_SYMBOL_GPL vmlinux 0x1c8a4c6a tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0x1c99f1bc init_user_ns EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any EXPORT_SYMBOL_GPL vmlinux 0x1cace77e dev_pm_genpd_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1cb6a044 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x1cb6e669 __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather EXPORT_SYMBOL_GPL vmlinux 0x1cbb1cfc pci_iomap_wc_range EXPORT_SYMBOL_GPL vmlinux 0x1cbbab44 serial8250_rpm_get_tx EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off EXPORT_SYMBOL_GPL vmlinux 0x1cca2766 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x1ce8500e device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x1ccc1097 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x1cd61ba9 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x1cde422b crypto_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x1cee9343 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x1cfa9f97 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x1d0af102 wm8350_reg_read EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d311769 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0x1d443cd2 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1d3f6a6b crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x1d5acf5b kvm_vcpu_yield_to EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d79e60d udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1d801c3c __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0x1d7b2b44 ahci_reset_controller EXPORT_SYMBOL_GPL vmlinux 0x1d83bcf3 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x1d8eb929 console_drivers EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1dad7326 kvm_write_guest EXPORT_SYMBOL_GPL vmlinux 0x1dcefc84 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x1de5d541 spi_take_timestamp_pre -EXPORT_SYMBOL_GPL vmlinux 0x1df6471d skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1dfcb747 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x1e036c2d sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e1d9494 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x1e1a682c icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x1e1d56c1 crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x1e2d94c3 devm_acpi_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0x1e361d1a devm_gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e47f075 regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type EXPORT_SYMBOL_GPL vmlinux 0x1e50407f devm_clk_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1e50ec79 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x1e574904 __traceiter_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x1e5b7831 edac_mc_del_mc EXPORT_SYMBOL_GPL vmlinux 0x1e73632e ata_pci_bmdma_clear_simplex EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart EXPORT_SYMBOL_GPL vmlinux 0x1e8034a4 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x1e812d43 devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1e832426 ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op EXPORT_SYMBOL_GPL vmlinux 0x1e899dc8 fuse_dev_free EXPORT_SYMBOL_GPL vmlinux 0x1e8d893a virtio_check_driver_offered_feature @@ -20401,18 +20435,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x1e9872f6 sbitmap_finish_wait EXPORT_SYMBOL_GPL vmlinux 0x1e98d455 usb_autopm_put_interface_async EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1ea8bbef dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x1eabbaa6 __clk_mux_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ed04e4c regmap_raw_write EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm EXPORT_SYMBOL_GPL vmlinux 0x1ee8b9e1 tc3589x_block_read EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x1f006010 vfs_inode_has_locks EXPORT_SYMBOL_GPL vmlinux 0x1f083784 to_nd_desc EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare EXPORT_SYMBOL_GPL vmlinux 0x1f0fe4a5 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x1f1960d4 trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0x1f19cd49 dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid EXPORT_SYMBOL_GPL vmlinux 0x1f248f3a dev_pm_opp_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x1f386f23 da9052_regmap_config @@ -20420,261 +20452,288 @@ EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms EXPORT_SYMBOL_GPL vmlinux 0x1f4684dd input_ff_upload EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f80cf77 __mnt_is_readonly EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout EXPORT_SYMBOL_GPL vmlinux 0x1f96b9ad devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x1f970c85 gpiod_toggle_active_low EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable -EXPORT_SYMBOL_GPL vmlinux 0x1f9d5cad fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0x1fa000fe kset_find_obj EXPORT_SYMBOL_GPL vmlinux 0x1fa14634 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x1fa14f05 dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fb12911 device_match_any EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x1fca5cbc ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x1fcdab8f posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0x1fcdfe02 blkcg_activate_policy EXPORT_SYMBOL_GPL vmlinux 0x1fdb2501 poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x1fdbaecc skb_complete_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fea77b3 devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0x1ffb2d55 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x1ffe7be0 gfn_to_page_many_atomic EXPORT_SYMBOL_GPL vmlinux 0x2004af4f amba_ahb_device_add_res EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2014be7a driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x201a6c0f sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x202cecee i2c_new_scanned_device EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x203218fe device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0x2035c682 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x2037cbb4 sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0x2046bcc5 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x2046eca0 ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x204ed956 blkg_lookup_slowpath EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x20625796 devm_i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0x206ccda0 dma_buf_put EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame EXPORT_SYMBOL_GPL vmlinux 0x208ec125 ata_timing_compute EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find EXPORT_SYMBOL_GPL vmlinux 0x209c5e41 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x20a162d3 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20ae6e4c ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x20ba996c pm_genpd_opp_to_performance_state EXPORT_SYMBOL_GPL vmlinux 0x20bb5707 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x20be6729 sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0x20c302bf cpuidle_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x20c645d8 xenbus_match EXPORT_SYMBOL_GPL vmlinux 0x20cb9d46 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x20df3677 gpiod_get_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x20e279b9 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x20f0de0a ethnl_cable_test_finished EXPORT_SYMBOL_GPL vmlinux 0x20f53181 i2c_of_match_device EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource +EXPORT_SYMBOL_GPL vmlinux 0x20fff96c __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x2102726e devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x21090c90 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x2117e390 device_rename EXPORT_SYMBOL_GPL vmlinux 0x211e31d7 rockchip_register_softrst -EXPORT_SYMBOL_GPL vmlinux 0x212e865d ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x2121509a devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0x2138bd83 power_supply_external_power_changed EXPORT_SYMBOL_GPL vmlinux 0x213b910a regcache_sync EXPORT_SYMBOL_GPL vmlinux 0x214e18f4 dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0x216beeca kvm_vcpu_map 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 0x21882f55 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x218b757f ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x218ca607 __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x2191715a mtk_mmsys_ddp_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x21942034 crypto_stats_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x2194598f anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x219fd0ec mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id 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 0x21edc4f0 inode_congested EXPORT_SYMBOL_GPL vmlinux 0x21fa6bc2 xenbus_grant_ring EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x2200a930 device_remove_properties EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available EXPORT_SYMBOL_GPL vmlinux 0x220d7a38 usb_hc_died EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str EXPORT_SYMBOL_GPL vmlinux 0x221ded7d pci_epc_set_msi EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x2222dda1 wm8400_reset_codec_reg_cache EXPORT_SYMBOL_GPL vmlinux 0x22250fa6 open_related_ns EXPORT_SYMBOL_GPL vmlinux 0x222a6d62 __iomap_dio_rw EXPORT_SYMBOL_GPL vmlinux 0x2245b831 acpi_subsys_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x22579888 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x22b53fed fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x22bf1b70 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x2274885d msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x22b03e14 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x22b30c27 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x22d4d6ae devfreq_get_devfreq_by_node EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22e88472 spi_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x22f26050 fsl_mc_bus_type EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x230b2826 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x2303da5f xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x2315e47c file_is_kvm EXPORT_SYMBOL_GPL vmlinux 0x231bf7e5 bio_alloc_kiocb +EXPORT_SYMBOL_GPL vmlinux 0x23241882 __traceiter_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x23245d75 bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x2324d565 tcp_done EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x234a1305 fib6_new_table EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put EXPORT_SYMBOL_GPL vmlinux 0x234dbbf2 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x23717337 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x237a736d i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x237fe22b kvm_unmap_gfn EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x238a9547 acpi_spi_count_resources EXPORT_SYMBOL_GPL vmlinux 0x238ddf9a simple_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0x239480fe fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x23949660 __mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23983f2e metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x239c3e7c to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x23a17c6a metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0x23baf8dc ahci_platform_ops -EXPORT_SYMBOL_GPL vmlinux 0x23bfa632 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x23c5e342 __traceiter_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x23edea6e pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x23fd3652 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x23f0b3c0 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x240c0ee7 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x24137123 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x2416d77c bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0x2417245b attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x24183df6 set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0x2419caa2 tps6586x_update EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x242ade8c perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0x243b2fed crypto_stats_init EXPORT_SYMBOL_GPL vmlinux 0x2441be68 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x24445893 scsi_flush_work EXPORT_SYMBOL_GPL vmlinux 0x2456e352 watchdog_set_restart_priority EXPORT_SYMBOL_GPL vmlinux 0x24575d77 pinctrl_lookup_state EXPORT_SYMBOL_GPL vmlinux 0x245d545a usb_root_hub_lost_power EXPORT_SYMBOL_GPL vmlinux 0x2460461f scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x246209f6 switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem EXPORT_SYMBOL_GPL vmlinux 0x24729f9d pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x247458a2 skb_partial_csum_set EXPORT_SYMBOL_GPL vmlinux 0x24796c73 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x247ccbb1 vfs_setxattr EXPORT_SYMBOL_GPL vmlinux 0x247d0db1 mtk_pinconf_adv_drive_get_raw EXPORT_SYMBOL_GPL vmlinux 0x24849efd pci_epc_mem_exit EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x2486be13 sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x2497e4d2 lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x249ce1d4 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x24a29e2b devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x24a9a317 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x249f469e skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x24a2603c sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x24ac5d06 wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24b5145b crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0x24b89f60 k3_udma_glue_request_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x24c232d8 dev_pm_qos_hide_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x24d1e546 acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0x24d83246 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x24d5f91b __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x24d8a81c kvm_vcpu_read_guest_atomic EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended EXPORT_SYMBOL_GPL vmlinux 0x24e14f33 ata_pci_sff_init_host EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24ee58b2 kvm_vcpu_read_guest EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x24f8c905 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x24faf946 dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24ffdcdf devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0x25009000 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x251ddc37 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x2500e0e9 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x251099b3 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2515d6d9 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x2526faf3 thermal_zone_get_zone_by_name EXPORT_SYMBOL_GPL vmlinux 0x2527c8fd devm_led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x252b6369 phy_configure EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x25358bee __regmap_init EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate EXPORT_SYMBOL_GPL vmlinux 0x253ae8b9 pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x25543d8f dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x25586c96 l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0x25593610 pinctrl_dev_get_name EXPORT_SYMBOL_GPL vmlinux 0x2572109b xenbus_dev_probe EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs -EXPORT_SYMBOL_GPL vmlinux 0x258092d7 clk_hw_get_rate EXPORT_SYMBOL_GPL vmlinux 0x2589b5b5 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x2590edeb bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25b00a2d fwnode_property_present EXPORT_SYMBOL_GPL vmlinux 0x25b88c88 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x25bbf9b1 regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25bd9af0 int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0x25c68a08 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x25d93733 devlink_unregister EXPORT_SYMBOL_GPL vmlinux 0x25db442e phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0x25de2e8f sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0x25dff181 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x25e345f7 crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0x25e73e0e tty_get_icount EXPORT_SYMBOL_GPL vmlinux 0x2600118a init_uts_ns EXPORT_SYMBOL_GPL vmlinux 0x2602f40e debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0x2606ec8d crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x2615f496 perf_aux_output_flag EXPORT_SYMBOL_GPL vmlinux 0x261b35b8 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x26386649 l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x264dbfb0 of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x265f75df wakeup_source_destroy EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2675ed07 devlink_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0x267b5e03 usb_hcd_pci_shutdown EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu EXPORT_SYMBOL_GPL vmlinux 0x26913d3f balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0x2693ce93 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x26a784c8 sprd_pinctrl_remove EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26b0e79a ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x26b58953 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x26b6512a tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0x26b6cf54 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x26bd95e8 regulator_count_voltages EXPORT_SYMBOL_GPL vmlinux 0x26c5d6e7 virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26cba9e1 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x26e06e03 ahci_check_ready EXPORT_SYMBOL_GPL vmlinux 0x26e85ce4 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x26e88d2a crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x26ece223 inet6_sock_destruct EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier EXPORT_SYMBOL_GPL vmlinux 0x2701953f mtk_mutex_add_comp EXPORT_SYMBOL_GPL vmlinux 0x27040b1b usb_find_interface EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x271157c1 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x2713ab82 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x271eb3b4 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x27229109 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2723bb14 ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x272417b0 iomap_writepages EXPORT_SYMBOL_GPL vmlinux 0x272b46cf phy_power_off EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x2738e034 gpiochip_lock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x2754ac0b xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x275d1273 wait_for_stable_page EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x27770042 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x2775fb30 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x277bf5f2 icc_provider_del EXPORT_SYMBOL_GPL vmlinux 0x2783d2c8 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x27a41ad4 mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x27a922e3 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x27bc94a0 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x279ba27d security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x27a573ab devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x27b8c2e0 devm_device_remove_group EXPORT_SYMBOL_GPL vmlinux 0x27cfd0cf pci_assign_unassigned_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x27d5f728 pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x27dd7e24 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x27e38b58 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x27e24682 msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0x27ee0059 rio_mport_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x27f67994 usb_urb_ep_type_check EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages EXPORT_SYMBOL_GPL vmlinux 0x27fbb384 pci_generic_config_read EXPORT_SYMBOL_GPL vmlinux 0x27fd4f87 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0x280b276a bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x28124a46 ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf EXPORT_SYMBOL_GPL vmlinux 0x28196dfd tty_put_char EXPORT_SYMBOL_GPL vmlinux 0x28246b7e meson_axg_pmx_ops EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x2833936b fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x28418beb rtc_class_open EXPORT_SYMBOL_GPL vmlinux 0x284ea375 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x28526564 crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0x28540ab6 ata_sff_exec_command EXPORT_SYMBOL_GPL vmlinux 0x285cc19c irq_domain_free_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x28720f90 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x287aa991 fwnode_get_next_parent EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister EXPORT_SYMBOL_GPL vmlinux 0x288404cf kthread_flush_worker EXPORT_SYMBOL_GPL vmlinux 0x2884aa23 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x2892b927 cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0x289614e8 fat_build_inode 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 0x28b1bbd3 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x28c28266 tcp_ca_get_key_by_name EXPORT_SYMBOL_GPL vmlinux 0x28d736cf dmaengine_unmap_put EXPORT_SYMBOL_GPL vmlinux 0x28f26684 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0x28f6eac6 hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x28f8d1bc ahci_stop_engine EXPORT_SYMBOL_GPL vmlinux 0x290d6ee5 to_nvdimm_bus_dev EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x291a5077 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x2923c080 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x293b867d spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x293dbdcf fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x293ae52d wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x29454d86 device_add EXPORT_SYMBOL_GPL vmlinux 0x2953cc82 serial8250_em485_stop_tx EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x2995aabf pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x295d9259 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x296213b1 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x297e97e2 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x29b13186 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x29b57dfe i2c_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x29c2284e blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x29c283c1 inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29fb9006 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x29fd528b ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x2a0bdb65 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x2a0c9c75 tcp_get_info EXPORT_SYMBOL_GPL vmlinux 0x2a14b2dc mtk_mmsys_ddp_connect -EXPORT_SYMBOL_GPL vmlinux 0x2a2bc0a7 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x2a16bcb8 fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll -EXPORT_SYMBOL_GPL vmlinux 0x2a3dd957 gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0x2a45f585 ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0x2a558d6d meson_clk_cpu_dyndiv_ops EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy @@ -20686,108 +20745,103 @@ EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x2a7387a5 __serdev_device_driver_register EXPORT_SYMBOL_GPL vmlinux 0x2a7a19a5 __fscrypt_encrypt_symlink EXPORT_SYMBOL_GPL vmlinux 0x2a8af55a acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x2a9a0f93 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2a9a1a6d ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x2aa1802a __devm_rtc_register_device EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update EXPORT_SYMBOL_GPL vmlinux 0x2ab14b82 list_lru_count_one EXPORT_SYMBOL_GPL vmlinux 0x2ab56add pcie_flr EXPORT_SYMBOL_GPL vmlinux 0x2abeadeb clk_hw_unregister_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x2acbffc4 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x2ae13f01 regulator_get_current_limit EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider +EXPORT_SYMBOL_GPL vmlinux 0x2aedcabd devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b17e2a7 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x2b1600dd trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x2b196698 kvm_put_kvm_no_destroy EXPORT_SYMBOL_GPL vmlinux 0x2b1e6502 md_kick_rdev_from_array EXPORT_SYMBOL_GPL vmlinux 0x2b26db01 k3_udma_glue_rx_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x2b2899ae fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x2b312bd6 kvm_vcpu_is_visible_gfn EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b46663b iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x2b4cba16 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x2b5262cf dev_pm_qos_hide_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b6ff189 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x2b6de7da skb_zerocopy_iter_dgram EXPORT_SYMBOL_GPL vmlinux 0x2b7301e2 dma_buf_vmap EXPORT_SYMBOL_GPL vmlinux 0x2b918d8e xhci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x2b960f9d sdio_disable_func EXPORT_SYMBOL_GPL vmlinux 0x2b96d712 pinctrl_select_default_state EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x2ba50c5a evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x2ba79247 crypto_shoot_alg EXPORT_SYMBOL_GPL vmlinux 0x2bad1090 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x2bafd89b device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x2bbe38f3 ata_pci_device_do_suspend EXPORT_SYMBOL_GPL vmlinux 0x2bbf1454 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x2bc967e9 device_match_any EXPORT_SYMBOL_GPL vmlinux 0x2bcd2376 acpi_find_child_device EXPORT_SYMBOL_GPL vmlinux 0x2bd2bea2 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x2be98fb3 __nf_ip6_route EXPORT_SYMBOL_GPL vmlinux 0x2bf3ade2 pci_msi_mask_irq EXPORT_SYMBOL_GPL vmlinux 0x2bf92a89 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0x2c0a5615 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x2c1c4279 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x2bfb027d __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2c138581 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x2c1d6cc0 kvm_release_page_clean EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied EXPORT_SYMBOL_GPL vmlinux 0x2c28ea9d pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x2c2adca1 ata_host_put EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x2c3d1da3 synth_event_create EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put EXPORT_SYMBOL_GPL vmlinux 0x2c6b8413 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x2c7354e2 device_destroy EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x2c7ca303 irq_domain_free_fwnode EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping EXPORT_SYMBOL_GPL vmlinux 0x2c7e9fc3 pci_ats_supported EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll +EXPORT_SYMBOL_GPL vmlinux 0x2c87f462 tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types EXPORT_SYMBOL_GPL vmlinux 0x2c921b80 iommu_sva_unbind_device EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c98184b put_pid EXPORT_SYMBOL_GPL vmlinux 0x2c9bd93f fuse_file_poll EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get +EXPORT_SYMBOL_GPL vmlinux 0x2caeb593 scsi_host_busy_iter EXPORT_SYMBOL_GPL vmlinux 0x2caf28c0 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2cc435e7 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x2cbffafb meson_aoclkc_probe EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list +EXPORT_SYMBOL_GPL vmlinux 0x2cced9e2 pskb_put EXPORT_SYMBOL_GPL vmlinux 0x2cd25831 usb_create_shared_hcd EXPORT_SYMBOL_GPL vmlinux 0x2cdd33d8 handle_untracked_irq EXPORT_SYMBOL_GPL vmlinux 0x2cdecc65 blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x2ce02edc device_create_with_groups 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 0x2cf0c6d0 sched_trace_rq_avg_rt EXPORT_SYMBOL_GPL vmlinux 0x2cfe275e dev_pm_opp_find_freq_ceil_by_volt EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init EXPORT_SYMBOL_GPL vmlinux 0x2d0e5639 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x2d0f4575 sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d1f7e33 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2d229c4f wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current EXPORT_SYMBOL_GPL vmlinux 0x2d391d90 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x2d3bfe51 devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts EXPORT_SYMBOL_GPL vmlinux 0x2d4306c6 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x2d5f5d2e rdev_get_dev EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict -EXPORT_SYMBOL_GPL vmlinux 0x2d64e099 sched_trace_rq_cpu_capacity EXPORT_SYMBOL_GPL vmlinux 0x2d698e74 of_genpd_remove_last EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x2d6eb648 vcpu_put EXPORT_SYMBOL_GPL vmlinux 0x2d6f3d75 kstrdup_quotable_cmdline EXPORT_SYMBOL_GPL vmlinux 0x2d787f1c find_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x2d79b675 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2d7c88ca wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2d9ac5b1 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x2daa1b1f perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg EXPORT_SYMBOL_GPL vmlinux 0x2db701d7 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x2dc49d34 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x2dd4efa4 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x2ded67ea fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x2dc68277 pm_wakeup_ws_event EXPORT_SYMBOL_GPL vmlinux 0x2df3794c usb_hcd_check_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x2e0fa099 spi_bus_unlock EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e349573 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0x2e41c05f irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x2e446e53 thermal_zone_unbind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x2e59db90 genphy_c45_read_mdix EXPORT_SYMBOL_GPL vmlinux 0x2e5fdedd fb_deferred_io_fsync EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp @@ -20805,45 +20859,43 @@ EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable EXPORT_SYMBOL_GPL vmlinux 0x2ec295ec store_sampling_rate EXPORT_SYMBOL_GPL vmlinux 0x2edf463a usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x2ee3d11d nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor EXPORT_SYMBOL_GPL vmlinux 0x2f08c5d8 of_reserved_mem_device_init_by_name EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string EXPORT_SYMBOL_GPL vmlinux 0x2f112036 gpiod_export_link EXPORT_SYMBOL_GPL vmlinux 0x2f12819a sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x2f1b4e31 netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0x2f1bd56f efivar_entry_iter EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work EXPORT_SYMBOL_GPL vmlinux 0x2f318d42 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x2f3b6947 lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0x2f3bb3f4 dma_get_merge_boundary EXPORT_SYMBOL_GPL vmlinux 0x2f43b66b acpi_data_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec EXPORT_SYMBOL_GPL vmlinux 0x2f4957ae i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x2f5b9b8f security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x2f5efb64 mpc8xxx_spi_tx_buf_u32 EXPORT_SYMBOL_GPL vmlinux 0x2f61c244 serial8250_init_port EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f7f37e9 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x2f83aeb7 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2f84af40 sock_map_close EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc EXPORT_SYMBOL_GPL vmlinux 0x2f974dea vc_scrolldelta_helper EXPORT_SYMBOL_GPL vmlinux 0x2fa9ec5b rio_mport_get_feature EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair +EXPORT_SYMBOL_GPL vmlinux 0x2fb33e6d dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x2fb79a47 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x2fbdedbe mmput EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fc30004 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x2fd61d9f ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2fe35760 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x2fec9f8c kvm_write_guest_page EXPORT_SYMBOL_GPL vmlinux 0x2fedcd19 pinctrl_generic_get_group_count EXPORT_SYMBOL_GPL vmlinux 0x2feff4ea devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x2ff0012d xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0x2ff56eda of_gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0x2ff9a093 dm_internal_resume_fast EXPORT_SYMBOL_GPL vmlinux 0x30118311 nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x3016fb1e regulator_suspend_enable EXPORT_SYMBOL_GPL vmlinux 0x301a5f6e acpi_dev_get_first_consumer_dev EXPORT_SYMBOL_GPL vmlinux 0x3025ed47 relay_reset EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting -EXPORT_SYMBOL_GPL vmlinux 0x302cde76 device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x302e1d4e dm_path_uevent EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id EXPORT_SYMBOL_GPL vmlinux 0x30441434 blkcg_policy_unregister @@ -20852,67 +20904,71 @@ EXPORT_SYMBOL_GPL vmlinux 0x3055d531 watchdog_init_timeout EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu EXPORT_SYMBOL_GPL vmlinux 0x306a4ff0 blkg_conf_prep EXPORT_SYMBOL_GPL vmlinux 0x3084f2f8 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x30904608 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x3085018f raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x3099387f scsi_internal_device_unblock_nowait EXPORT_SYMBOL_GPL vmlinux 0x30a7b80c rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x30a93704 regulator_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0x30aa2223 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x30b228d7 device_match_devt EXPORT_SYMBOL_GPL vmlinux 0x30b29020 dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0x30b8088b __nvdimm_create EXPORT_SYMBOL_GPL vmlinux 0x30cd5b85 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x30cf78f7 blk_update_request EXPORT_SYMBOL_GPL vmlinux 0x30d5747b srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x30d9d718 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x30d6694c devm_device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30fdfa6d of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x30ff79d8 fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler EXPORT_SYMBOL_GPL vmlinux 0x311a2ad3 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x311b76d6 thermal_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave EXPORT_SYMBOL_GPL vmlinux 0x3134724b tpm_chip_start EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single +EXPORT_SYMBOL_GPL vmlinux 0x3145ce93 perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x31526e4d usb_alloc_urb EXPORT_SYMBOL_GPL vmlinux 0x3157a4f4 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0x3158e0b0 __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x3166af85 iommu_map_atomic EXPORT_SYMBOL_GPL vmlinux 0x317600c5 irq_domain_translate_twocell EXPORT_SYMBOL_GPL vmlinux 0x3181b364 efivar_entry_find EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes EXPORT_SYMBOL_GPL vmlinux 0x3184db08 nd_blk_region_provider_data EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x31921112 ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook EXPORT_SYMBOL_GPL vmlinux 0x31991a06 usb_hcd_is_primary_hcd EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31ad066b ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x31c0266e icc_nodes_remove EXPORT_SYMBOL_GPL vmlinux 0x31c1427e cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x31c257bf alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0x31c2e037 nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x31c4725a __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31cf5bce xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x31ccd8ab sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference EXPORT_SYMBOL_GPL vmlinux 0x31df4410 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x31e1f82b mmc_regulator_get_supply EXPORT_SYMBOL_GPL vmlinux 0x31e58b0c pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode -EXPORT_SYMBOL_GPL vmlinux 0x31f007e5 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x3201ebaa regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x3203eaf3 perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0x320f6e93 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x321296b5 bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0x3212a6c0 ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0x321a9c55 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x3221239d __spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl EXPORT_SYMBOL_GPL vmlinux 0x32250f57 debugfs_create_x64 EXPORT_SYMBOL_GPL vmlinux 0x32290420 blk_ksm_init EXPORT_SYMBOL_GPL vmlinux 0x32369dc0 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x3246b416 gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x325b274b of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x325fffcd gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x3260da31 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x326c17d1 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor EXPORT_SYMBOL_GPL vmlinux 0x326f3ed0 pci_set_cacheline_size EXPORT_SYMBOL_GPL vmlinux 0x326f7754 dmaengine_desc_set_metadata_len EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x328de3d4 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x32996296 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x329a5e99 do_splice_from EXPORT_SYMBOL_GPL vmlinux 0x329cc7f8 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x329f01a1 regulator_bulk_force_disable EXPORT_SYMBOL_GPL vmlinux 0x32a06c91 fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0x32a32354 desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0x32a8f4e7 generic_fsdax_supported EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x32ac86ce usb_hub_find_child @@ -20922,58 +20978,66 @@ EXPORT_SYMBOL_GPL vmlinux 0x32c2bb04 list_lru_walk_node EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register EXPORT_SYMBOL_GPL vmlinux 0x32c5387f dev_pm_opp_get_max_transition_latency EXPORT_SYMBOL_GPL vmlinux 0x32e3d3b9 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x32e74573 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x32f4c296 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x32f1cb8c nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x32f78683 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x32fef146 tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x3300cd3f rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0x3327d859 trace_array_put EXPORT_SYMBOL_GPL vmlinux 0x3337d6b2 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x3355d5ce skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x334b2669 __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x33660e52 i2c_recover_bus EXPORT_SYMBOL_GPL vmlinux 0x3368048e phy_create +EXPORT_SYMBOL_GPL vmlinux 0x3370df1c gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0x33742e2d extcon_get_edev_name EXPORT_SYMBOL_GPL vmlinux 0x337ca8e1 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x33875731 device_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0x338d8b12 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x338d90c2 security_inode_create EXPORT_SYMBOL_GPL vmlinux 0x339ac156 fsl_mc_bus_dpcon_type -EXPORT_SYMBOL_GPL vmlinux 0x33a45d47 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x339b88bd cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0x33aa6652 to_nd_region EXPORT_SYMBOL_GPL vmlinux 0x33daad8f auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x33f5576b platform_irqchip_probe -EXPORT_SYMBOL_GPL vmlinux 0x33fffbc1 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x33df3cf3 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x33f7262b device_remove_file EXPORT_SYMBOL_GPL vmlinux 0x341269f9 bus_get_device_klist EXPORT_SYMBOL_GPL vmlinux 0x342e81d6 iommu_set_pgtable_quirks EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x343784f1 wm8350_device_init 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 0x344b795a filemap_range_needs_writeback EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui EXPORT_SYMBOL_GPL vmlinux 0x345cbb4b __blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0x3464a5db blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x3467947a page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0x346c91f4 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x346e80dd dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x34745741 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x3478275f spi_take_timestamp_post EXPORT_SYMBOL_GPL vmlinux 0x3498bf5a genphy_c45_pma_setup_forced EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34ae7773 platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0x34b96835 mtk_pinconf_drive_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x34cf774e devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x34d25fcb regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x34d0ced3 preempt_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34ed6eaa ahci_start_fis_rx EXPORT_SYMBOL_GPL vmlinux 0x34ef9844 dm_get_queue_limits EXPORT_SYMBOL_GPL vmlinux 0x34f2284f of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x34f5b5a7 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x34f5d22f ahci_check_ready EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x35085936 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x350dc58b scsi_mode_select EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait EXPORT_SYMBOL_GPL vmlinux 0x350ff4ce genphy_c45_read_pma EXPORT_SYMBOL_GPL vmlinux 0x35103684 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x35110d62 gpiod_set_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x35244891 devm_mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x35280bcf power_supply_register EXPORT_SYMBOL_GPL vmlinux 0x35286683 devm_clk_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352c9f33 __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy EXPORT_SYMBOL_GPL vmlinux 0x35381001 vring_del_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x35430533 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x3543837a kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x35554951 __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x35569cf8 devm_acpi_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0x355b2ef2 ti_sci_put_handle EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next @@ -20983,30 +21047,37 @@ EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config EXPORT_SYMBOL_GPL vmlinux 0x35813701 efivars_unregister EXPORT_SYMBOL_GPL vmlinux 0x35871256 get_cpu_device EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a03652 platform_device_register EXPORT_SYMBOL_GPL vmlinux 0x35a1c768 tty_ldisc_receive_buf EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider -EXPORT_SYMBOL_GPL vmlinux 0x35b8bf99 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x35ba57aa i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x35c5cd59 imx_pinctrl_pm_ops EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35e1551b bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0x35eb7a2a dbs_update EXPORT_SYMBOL_GPL vmlinux 0x35ede458 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x35f739ed regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x35fc3043 crypto_register_template EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x36147ec0 virtqueue_enable_cb_prepare EXPORT_SYMBOL_GPL vmlinux 0x3615062e pci_epc_get_msi EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x3638e672 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x3626ba3e icc_put +EXPORT_SYMBOL_GPL vmlinux 0x3630e4de regmap_get_val_endian EXPORT_SYMBOL_GPL vmlinux 0x36420e24 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x364769bb fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x3659969c crypto_enqueue_request EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x36761a70 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x366ea693 device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x3686862e mddev_suspend EXPORT_SYMBOL_GPL vmlinux 0x3688c50b transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x3691f631 fwnode_get_next_available_child_node EXPORT_SYMBOL_GPL vmlinux 0x36925221 mbox_flush EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a88142 of_clk_add_provider EXPORT_SYMBOL_GPL vmlinux 0x36c0482a usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x36cffe42 hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0x36d56ff3 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x36e1705c bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0x36ef99a2 srcu_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x36f954eb clk_regmap_mux_ops EXPORT_SYMBOL_GPL vmlinux 0x36ff77dc ehci_resume @@ -21014,11 +21085,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x3702ef7e dm_copy_name_and_uuid EXPORT_SYMBOL_GPL vmlinux 0x370f2448 iomap_seek_data EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x37181376 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x3729ef0a gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x371f2d5c sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access EXPORT_SYMBOL_GPL vmlinux 0x37322aba usb_role_switch_find_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0x37382528 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x373e0aa0 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x3740936f ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x3742d59c fwnode_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x3747a53c clkdev_hw_create EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript EXPORT_SYMBOL_GPL vmlinux 0x374d9295 sysfs_update_group @@ -21027,25 +21099,27 @@ EXPORT_SYMBOL_GPL vmlinux 0x3775c25b k3_udma_glue_tx_cppi5_to_dma_addr EXPORT_SYMBOL_GPL vmlinux 0x3778109a phy_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x377af36c usb_hcd_pci_remove EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x378486ee synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset +EXPORT_SYMBOL_GPL vmlinux 0x378fc741 icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x37991d99 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x37a91aa7 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x37ae0d22 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x37af0990 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x37b39c92 regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0x37b62faf dev_pm_genpd_resume EXPORT_SYMBOL_GPL vmlinux 0x37bb8e4e usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x37bd4986 locks_release_private EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit EXPORT_SYMBOL_GPL vmlinux 0x37c308ed fat_flush_inodes EXPORT_SYMBOL_GPL vmlinux 0x37c88197 vchan_find_desc EXPORT_SYMBOL_GPL vmlinux 0x37d516bc dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x37d5be25 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x37da25bd mmc_send_tuning EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup EXPORT_SYMBOL_GPL vmlinux 0x37f19b43 __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x37fc0f02 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x37fd56fb ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0x37ffc9a1 sysfs_create_files EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3802c7eb __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x38045af5 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x38065cc0 mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0x38298cd0 ata_sff_thaw EXPORT_SYMBOL_GPL vmlinux 0x382c6c2b dw_pcie_wait_for_link @@ -21053,255 +21127,255 @@ EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection EXPORT_SYMBOL_GPL vmlinux 0x38396eb3 of_cpufreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x3839d57f pm_runtime_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x38400f86 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x38425b2c register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x384b5b46 __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x385494e8 iommu_map EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x387930e9 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x3897e75a __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count EXPORT_SYMBOL_GPL vmlinux 0x389d7b27 pcc_mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38b18f6e gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0x38c39a33 pinconf_generic_dump_config EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x38cb3e3a watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x38d254fb __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38ee1bb7 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x38f82cb7 page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0x39132bb8 device_add_software_node EXPORT_SYMBOL_GPL vmlinux 0x3913d968 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x39153ad1 __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x3915817d strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x392a27b6 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x39369d99 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x393d92f0 ata_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0x3948ad28 blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x39595412 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x39504b5b gpiochip_irq_unmap EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3984716c ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x39a0bf27 crypto_larval_kill EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39c0ae0c dev_set_name EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x39e23ef4 ata_sff_tf_read EXPORT_SYMBOL_GPL vmlinux 0x39e88273 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x39e9b8d6 icc_set_tag EXPORT_SYMBOL_GPL vmlinux 0x39f30727 vp_modern_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x3a01b38b __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x3a059531 pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0x3a1d9624 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x3a1276a3 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x3a1c45a8 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x3a1d6f67 gpiod_set_debounce EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a2cc06f clk_hw_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x3a41e49e transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x3a49ddf1 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3a49452f clk_hw_set_parent 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 0x3a5ba6d1 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x3a602e73 clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0x3a699f19 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x3a6cee8f crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x3a7bdc0a netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x3a7f5362 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x3a8bcbce i2c_adapter_depth EXPORT_SYMBOL_GPL vmlinux 0x3a90ef95 debugfs_create_size_t EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial EXPORT_SYMBOL_GPL vmlinux 0x3aa36a85 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x3aa50129 sprd_pinctrl_remove -EXPORT_SYMBOL_GPL vmlinux 0x3aaea6c8 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x3ab5e9ca ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x3ab80ca9 proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x3abfcebc mmc_pwrseq_unregister EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3acfc0a5 inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0x3ae07e62 divider_recalc_rate EXPORT_SYMBOL_GPL vmlinux 0x3ae72c1b phy_exit EXPORT_SYMBOL_GPL vmlinux 0x3afa52bc tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x3aff8e3d ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0x3b006cb1 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x3b05bece bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0x3b08cf20 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x3b1fc0ba gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x3b1a2935 sdio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x3b24c48a iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x3b39f839 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x3b2b4710 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x3b2f4f67 bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0x3b42f745 power_supply_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x3b46b19f mpc8xxx_spi_rx_buf_u16 EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b57312a meson_aoclkc_probe EXPORT_SYMBOL_GPL vmlinux 0x3b5dcf08 pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b6e904b device_link_add EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x3b8de7df ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0x3b994dfc debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x3b9d539c crypto_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset EXPORT_SYMBOL_GPL vmlinux 0x3ba1c70f dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x3ba3d321 platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x3baf9017 qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x3bbd8f1c lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0x3bc37128 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x3bc5cc97 kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3bcd5f0e netdev_rx_handler_unregister EXPORT_SYMBOL_GPL vmlinux 0x3bce65ad dev_pm_opp_get_required_pstate EXPORT_SYMBOL_GPL vmlinux 0x3bd66ea7 dmi_kobj EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x3be36a6f account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x3bef3a49 unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bfdd6fa spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0x3c045b89 dev_pm_opp_get_suspend_opp_freq EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c284768 find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c3a5c4d ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c430075 device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x3c55f491 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x3c5bc2ca get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x3c5bf2b3 hrtimer_init_sleeper EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns EXPORT_SYMBOL_GPL vmlinux 0x3c655c2a iomap_ioend_try_merge EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable EXPORT_SYMBOL_GPL vmlinux 0x3c6831e6 __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x3c764645 cpufreq_generic_init EXPORT_SYMBOL_GPL vmlinux 0x3c7b1b9c devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x3cbf9e01 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x3cbebd44 devm_regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0x3cc008be of_get_fb_videomode EXPORT_SYMBOL_GPL vmlinux 0x3cc25bcd devm_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x3ccd8b46 zynqmp_pm_clock_getparent EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk EXPORT_SYMBOL_GPL vmlinux 0x3cd39d50 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x3cddf063 perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0x3cde21c8 dprc_setup EXPORT_SYMBOL_GPL vmlinux 0x3ce48246 dev_attr_sw_activity EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3cec5b27 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x3cf05ff3 crypto_stats_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x3cfa67e5 rio_release_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0x3d0cb369 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x3d0efb06 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x3d1e77d3 splice_to_pipe EXPORT_SYMBOL_GPL vmlinux 0x3d21d5a6 meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0x3d258d9d tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x3d371114 sock_prot_inuse_add EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d4bb6d7 devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0x3d4f9195 pinctrl_generic_add_group EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check EXPORT_SYMBOL_GPL vmlinux 0x3d54914e gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x3d54cf3f sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0x3d563271 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x3d57f42e cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x3d5a5e2f bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x3d70e06b __fsnotify_inode_delete EXPORT_SYMBOL_GPL vmlinux 0x3d770be2 power_supply_unregister EXPORT_SYMBOL_GPL vmlinux 0x3d7cceb8 iommu_group_add_device EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x3d8723a8 __clk_hw_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d95d9cb sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x3d968b11 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x3d91de78 blk_rq_err_bytes EXPORT_SYMBOL_GPL vmlinux 0x3d96c926 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x3da9b89b validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0x3db6879f xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x3db7ffe4 dev_pm_qos_hide_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x3dbd9a1e devm_release_action EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x3e02feff netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x3dfa6e39 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x3dfbdd55 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x3e02a727 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x3e05bf58 pinctrl_utils_add_map_configs EXPORT_SYMBOL_GPL vmlinux 0x3e08e479 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x3e0eb8c6 mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x3e2e310e sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0x3e329a16 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x3e496b37 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x3e4dc723 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x3e1a3c92 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x3e1d1fdf meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x3e40bec2 vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer EXPORT_SYMBOL_GPL vmlinux 0x3e7f8f38 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3e8ecc15 vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x3e9fbc5e regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x3ea2303f crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x3e985391 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3ea124b3 regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup EXPORT_SYMBOL_GPL vmlinux 0x3ea71073 transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x3eaab4ec tty_port_register_device_attr_serdev EXPORT_SYMBOL_GPL vmlinux 0x3eb1ebe5 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x3eb2826c icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x3eb2cb85 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3ebb83aa housekeeping_affine EXPORT_SYMBOL_GPL vmlinux 0x3ec893af of_detach_node EXPORT_SYMBOL_GPL vmlinux 0x3ecbce4e find_iova +EXPORT_SYMBOL_GPL vmlinux 0x3ed9c8aa devlink_reload_enable EXPORT_SYMBOL_GPL vmlinux 0x3edacb46 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x3eee5713 is_current_mnt_ns EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3ef9b432 devlink_params_publish EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3eff4bcb inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x3f0eafe7 register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x3f1aab69 pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x3f1d8e46 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3f29c3ae regmap_exit EXPORT_SYMBOL_GPL vmlinux 0x3f2a3dbb fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f4eaffd __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0x3f5282af fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x3f68fbbc task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x3f693d23 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x3f6e0a9f sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x3f6feb39 scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x3f78bec7 vga_default_device EXPORT_SYMBOL_GPL vmlinux 0x3f81d08e of_get_required_opp_performance_state EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive EXPORT_SYMBOL_GPL vmlinux 0x3f868d5c n_tty_inherit_ops EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3f8d3e46 inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x3f957a8d pci_bus_max_busnr EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fb168c2 ahci_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x3fb821d9 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x3fbb977b bgmac_phy_connect_direct +EXPORT_SYMBOL_GPL vmlinux 0x3fd4da7e xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x4000c451 sfp_register_socket EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4016be79 ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x40171147 dev_pm_opp_set_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0x401b10e4 rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups EXPORT_SYMBOL_GPL vmlinux 0x4027cfb8 fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0x4029006d bsg_remove_queue EXPORT_SYMBOL_GPL vmlinux 0x402e834f thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x40383e0c wb_writeout_inc EXPORT_SYMBOL_GPL vmlinux 0x4038d905 regulator_disable_regmap EXPORT_SYMBOL_GPL vmlinux 0x403b2d5f devm_phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x40632651 acpi_create_platform_device EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x406e1a32 crypto_stats_decompress 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 0x40887089 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x4090171e cpufreq_cpu_get_raw EXPORT_SYMBOL_GPL vmlinux 0x409678cb blkcg_policy_register EXPORT_SYMBOL_GPL vmlinux 0x409730f8 pci_disable_sriov EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x409fd893 regulator_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0x40b64001 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x40c6b804 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x40cbf3b7 xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x40d349b6 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x40d6a3e2 sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0x40e0ba52 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x40e668ba devfreq_get_devfreq_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x40e956af driver_find EXPORT_SYMBOL_GPL vmlinux 0x40e98c15 fsl_mc_bus_dpci_type EXPORT_SYMBOL_GPL vmlinux 0x40f027dc dev_pm_opp_of_get_sharing_cpus 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 0x40faeae3 sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0x40fd053f pci_assign_unassigned_bridge_resources EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle EXPORT_SYMBOL_GPL vmlinux 0x41160b6a clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x411ba58b skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu EXPORT_SYMBOL_GPL vmlinux 0x41392fc1 __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0x41424c0d ehci_hub_control EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x415bf2bc crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x415c1c74 i2c_new_scanned_device EXPORT_SYMBOL_GPL vmlinux 0x416e0892 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x4174f1c1 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval EXPORT_SYMBOL_GPL vmlinux 0x4183ad92 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x41841dbd evm_verifyxattr EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x41894af1 skb_scrub_packet EXPORT_SYMBOL_GPL vmlinux 0x419a265b vp_modern_set_features EXPORT_SYMBOL_GPL vmlinux 0x419c1b44 unregister_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config +EXPORT_SYMBOL_GPL vmlinux 0x419e322b i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop EXPORT_SYMBOL_GPL vmlinux 0x41b40c35 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x41b61542 bgmac_adjust_link EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41c5f616 device_show_bool EXPORT_SYMBOL_GPL vmlinux 0x41cbd2dc nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x41d7258d devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x41df06e9 __ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x41eda330 usb_block_urb EXPORT_SYMBOL_GPL vmlinux 0x41faf6b4 nvmem_cell_read_variable_le_u32 @@ -21310,48 +21384,48 @@ EXPORT_SYMBOL_GPL vmlinux 0x4207ecb9 pci_ioremap_bar EXPORT_SYMBOL_GPL vmlinux 0x4208061c gnttab_map_refs EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x42133a54 dev_pm_opp_of_add_table_noclk -EXPORT_SYMBOL_GPL vmlinux 0x421faeaf ata_ehi_clear_desc EXPORT_SYMBOL_GPL vmlinux 0x42211e31 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x422eeff9 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x4256b1b8 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x4224444d devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x42534ba6 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x4259e1e2 nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x425b14d5 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x425d16cb ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4262eb46 devm_clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn EXPORT_SYMBOL_GPL vmlinux 0x42675314 acct_bioset_exit EXPORT_SYMBOL_GPL vmlinux 0x426aa373 rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0x426e4ea6 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x42810793 sched_trace_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active EXPORT_SYMBOL_GPL vmlinux 0x428bfa03 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x429524a7 kick_process EXPORT_SYMBOL_GPL vmlinux 0x42a4c8d5 to_nvdimm_bus EXPORT_SYMBOL_GPL vmlinux 0x42a9ed6f device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0x42afd741 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x42b47174 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x42ba6b0e device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x42dee29f phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit EXPORT_SYMBOL_GPL vmlinux 0x42ecc958 devm_otg_ulpi_create EXPORT_SYMBOL_GPL vmlinux 0x42f26941 xen_dbgp_external_startup EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42fdce31 crypto_stats_compress EXPORT_SYMBOL_GPL vmlinux 0x42fed5fa dev_pm_set_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x4303597a bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0x43093b1c inet_csk_get_port EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x43184c18 pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0x431c46e1 serial8250_update_uartclk EXPORT_SYMBOL_GPL vmlinux 0x43206baa cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x4327bff6 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x432be3d0 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x4324af1c dev_pm_qos_flags EXPORT_SYMBOL_GPL vmlinux 0x4332a8eb devm_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x43456d76 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x433f4406 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x434a2811 of_pwm_xlate_with_flags EXPORT_SYMBOL_GPL vmlinux 0x434a5387 sysfs_create_link EXPORT_SYMBOL_GPL vmlinux 0x434dd4f3 blk_req_zone_write_trylock EXPORT_SYMBOL_GPL vmlinux 0x434f7ad7 rockchip_clk_of_add_provider EXPORT_SYMBOL_GPL vmlinux 0x435850ca devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x435877b4 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0x436043a9 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x436a6c17 __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x4371bbee cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0x437a113e pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x437e2e93 __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x437e32a4 devm_pm_opp_set_regulators EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled EXPORT_SYMBOL_GPL vmlinux 0x438641cf dm_accept_partial_bio @@ -21359,242 +21433,238 @@ EXPORT_SYMBOL_GPL vmlinux 0x438c61fc amba_apb_device_add_res EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get EXPORT_SYMBOL_GPL vmlinux 0x439c995a devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x43a2be2b iommu_device_sysfs_add -EXPORT_SYMBOL_GPL vmlinux 0x43a6a666 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43af477b fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43d88930 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x43d90cd8 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0x43dddedb iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x43e301f9 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x43ec30e6 bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f7837a nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x43f7e9df pcie_aspm_enabled EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43fab84e of_clk_src_onecell_get EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x4403474b gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x4428d120 gpiochip_find EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x44343008 bus_find_device EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x44456441 devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x4447d0d1 gpio_to_desc EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4451b867 crypto_stats_rng_seed EXPORT_SYMBOL_GPL vmlinux 0x44540dc5 fat_scan EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x445ee07f gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x4475ab67 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x447d539c rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x4484133a ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448a7077 device_change_owner EXPORT_SYMBOL_GPL vmlinux 0x449209a5 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x44986c8f evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x44a0007b ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op EXPORT_SYMBOL_GPL vmlinux 0x44adbce6 of_mm_gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x44b325ad __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x44b5d38e __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44cc4533 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats EXPORT_SYMBOL_GPL vmlinux 0x44e96d07 dev_pm_opp_find_level_ceil -EXPORT_SYMBOL_GPL vmlinux 0x44f9cd59 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x44edc06b mmc_regulator_disable_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x44f287fa mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x44f8be8d vfs_setlease EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x4508defb tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x450cc77b dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x4524bb7b bgmac_enet_probe EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault EXPORT_SYMBOL_GPL vmlinux 0x4535516a xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x4537a849 crypto_alloc_ahash EXPORT_SYMBOL_GPL vmlinux 0x4539a184 dprc_close EXPORT_SYMBOL_GPL vmlinux 0x45481c2a pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x45495cc6 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4548a033 metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x455a75cc thermal_zone_bind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister EXPORT_SYMBOL_GPL vmlinux 0x4566a5de dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x456b75ed gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x456d12fc devm_clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list EXPORT_SYMBOL_GPL vmlinux 0x4576e2de param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x45779246 kvm_vcpu_gfn_to_pfn EXPORT_SYMBOL_GPL vmlinux 0x4591d637 regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4594f43c i2c_new_smbus_alert_device EXPORT_SYMBOL_GPL vmlinux 0x459b19e5 pci_generic_config_write EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x45b324fa __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x45d045e1 crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x45e544a7 sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0x45ed7a32 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x45b06589 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x45bc54ca cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0x45f4483c pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x45ffb82a xdp_convert_zc_to_xdp_frame EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x461958b6 get_pid_task EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x46326e48 acpi_get_and_request_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x463621fc ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x4646c64a virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x464e35e3 platform_device_del EXPORT_SYMBOL_GPL vmlinux 0x4658b8af regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x465aba5e tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x466254d8 fl6_update_dst EXPORT_SYMBOL_GPL vmlinux 0x467f6a05 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x467f8f32 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x46861b2d sdio_writesb EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x468d787a rtc_update_irq EXPORT_SYMBOL_GPL vmlinux 0x468ee509 md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0x469c2623 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x46a1aba7 skb_scrub_packet EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x46aa8673 kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0x46b775eb device_property_present EXPORT_SYMBOL_GPL vmlinux 0x46b8a9c8 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x46bb3b27 icc_link_destroy EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops EXPORT_SYMBOL_GPL vmlinux 0x46c7f7bd acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x46f32518 page_cache_ra_unbounded EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x46f56924 crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0x46f7458d ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x46fd07b4 locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0x470491b9 mtk_pinconf_adv_drive_get EXPORT_SYMBOL_GPL vmlinux 0x471524b5 pci_hp_remove_module_link EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x473595e9 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x4724c1d9 crypto_grab_ahash EXPORT_SYMBOL_GPL vmlinux 0x47390d73 hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0x473dacd6 iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0x4743e041 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x474fb836 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x475631e8 skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0x475aecc0 dax_supported EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47673fee crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x476cf9d4 xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0x477f1259 iommu_page_response 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 0x479f7d4b clk_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b074dc clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x47ba20c9 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x47c2a1bf ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0x47ccb95b pci_find_vsec_capability EXPORT_SYMBOL_GPL vmlinux 0x47ce1d1c kthread_cancel_delayed_work_sync EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e3c04f __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x47f03bb7 gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0x47f3d0ca edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x4800399e metadata_dst_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x48043e6a xdp_convert_zc_to_xdp_frame EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x4816bca2 fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x4822a2d3 espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x48325b94 pwm_put EXPORT_SYMBOL_GPL vmlinux 0x48380f11 vp_modern_set_queue_size EXPORT_SYMBOL_GPL vmlinux 0x483ce36b i2c_slave_register EXPORT_SYMBOL_GPL vmlinux 0x4843a6b4 to_nvdimm EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x48489086 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0x48559f21 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x484efc90 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x485c88c3 i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4880da2d devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0x488e1e6f usb_hcd_pci_probe EXPORT_SYMBOL_GPL vmlinux 0x48912112 devres_find EXPORT_SYMBOL_GPL vmlinux 0x48998bb6 gpiod_get_from_of_node EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48b1c458 ata_sas_tport_add EXPORT_SYMBOL_GPL vmlinux 0x48b27e29 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x48be3d1d perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x48c124d8 put_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x48c48df2 devm_regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x48d5eca2 clk_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0x48df41df of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x48ea7bf1 __put_net EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse EXPORT_SYMBOL_GPL vmlinux 0x48faed79 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x490c5a51 scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0x490cde1a dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x49126b34 inet_hash EXPORT_SYMBOL_GPL vmlinux 0x491761cc dm_hold EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4926e238 gpiochip_lock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x49477fb4 __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x494a1ac0 usb_check_bulk_endpoints EXPORT_SYMBOL_GPL vmlinux 0x49580fdb extcon_find_edev_by_node EXPORT_SYMBOL_GPL vmlinux 0x495933e7 usb_put_intf EXPORT_SYMBOL_GPL vmlinux 0x49594e72 pinmux_generic_get_function_name EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable EXPORT_SYMBOL_GPL vmlinux 0x4961d8b3 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x49707e6e sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x4988d1e7 regulator_set_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49cc1e3f cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue EXPORT_SYMBOL_GPL vmlinux 0x49cefada ahci_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x49e32aee crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x49e6ce84 acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x49d6adb7 crypto_shoot_alg EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x49e97007 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x49ea9ee6 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x49ec132b ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0x49eeadbe thermal_zone_of_sensor_unregister EXPORT_SYMBOL_GPL vmlinux 0x49ef971f tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0x4a0f6436 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x4a011cd3 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x4a0f7645 gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x4a13af99 pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x4a17379d espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask EXPORT_SYMBOL_GPL vmlinux 0x4a2fec77 efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x4a39665a spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4a3a0936 clk_hw_set_rate_range EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a550ff1 switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0x4a78afb0 dma_alloc_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x4a9fd155 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x4aa24da5 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x4aa4e08b __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x4aa74955 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x4aae0de6 devm_clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x4aafc174 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0x4ac26d06 ata_port_abort EXPORT_SYMBOL_GPL vmlinux 0x4ad0847e dev_coredumpsg EXPORT_SYMBOL_GPL vmlinux 0x4addaf72 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x4b0f0722 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x4af7cbb6 gpiod_set_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x4b1ec174 clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x4b33fc93 bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0x4b46d023 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x4b4f0740 crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0x4b4fa63d tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x4b51c725 ata_cable_80wire EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask EXPORT_SYMBOL_GPL vmlinux 0x4b586933 pstore_register EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init EXPORT_SYMBOL_GPL vmlinux 0x4b6206a1 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x4b6dfc46 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x4b6b7a54 regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x4b70d849 bus_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x4b77aaa9 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x4b7d69c0 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x4b7c4720 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x4b8a3628 hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x4b8da715 usb_hcd_amd_remote_wakeup_quirk EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features EXPORT_SYMBOL_GPL vmlinux 0x4b9dbc55 debugfs_create_file_size EXPORT_SYMBOL_GPL vmlinux 0x4b9fba1f regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4bb78960 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x4bbd4ba5 kvm_write_guest_offset_cached EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init EXPORT_SYMBOL_GPL vmlinux 0x4bd3904e spi_mem_dtr_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x4bd4b0a0 i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4bf94701 gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0x4bfa5d9b dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x4bfafab0 posix_clock_register EXPORT_SYMBOL_GPL vmlinux 0x4bfcafbb serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x4c0c16b2 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x4bfed7a9 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x4c00a5ad of_mpc8xxx_spi_probe EXPORT_SYMBOL_GPL vmlinux 0x4c0d6ab2 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x4c168db3 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x4c1fb1f2 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x4c2007a1 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4c224869 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x4c22c91f ata_std_qc_defer EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted EXPORT_SYMBOL_GPL vmlinux 0x4c346cfd debugfs_create_u32 EXPORT_SYMBOL_GPL vmlinux 0x4c395c29 fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0x4c3cec2f sched_trace_rq_nr_running -EXPORT_SYMBOL_GPL vmlinux 0x4c4d35f4 gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0x4c55ad31 iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0x4c625d25 rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0x4c6e9ec4 thermal_remove_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x4c734ce9 dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0x4c797f03 mtk_pinconf_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x4c89c11a wm8350_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition EXPORT_SYMBOL_GPL vmlinux 0x4c90455e serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x4c9cd4fa crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0x4cb14e04 nvdimm_bus_unregister EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cb9d80a ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x4cd2ec2c ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x4cfd3df9 sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d04aea9 perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x4d0b752f alloc_iova EXPORT_SYMBOL_GPL vmlinux 0x4d0cec86 rio_route_clr_table EXPORT_SYMBOL_GPL vmlinux 0x4d10e764 mdio_mux_init -EXPORT_SYMBOL_GPL vmlinux 0x4d149daa cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x4d1540d9 skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4d394fe2 usb_hcd_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d622307 sdio_writesb EXPORT_SYMBOL_GPL vmlinux 0x4d6695d9 regulator_get_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable @@ -21610,234 +21680,231 @@ EXPORT_SYMBOL_GPL vmlinux 0x4d8d8bd2 pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache EXPORT_SYMBOL_GPL vmlinux 0x4d9834a6 blkdev_nr_zones EXPORT_SYMBOL_GPL vmlinux 0x4d9a4b4f of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x4da1c1f3 get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0x4da1f4a7 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x4da295f7 devm_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4dbce4f5 kvm_release_page_dirty EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4dec1881 crypto_register_acomp EXPORT_SYMBOL_GPL vmlinux 0x4deec03c __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x4df204ac tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0x4dfad3f0 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x4e1400b3 __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x4e210170 pm_generic_poweroff_noirq EXPORT_SYMBOL_GPL vmlinux 0x4e276b06 irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x4e2fe816 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x4e31ee68 devlink_port_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0x4e35b55e serial8250_do_set_divisor EXPORT_SYMBOL_GPL vmlinux 0x4e3bb206 tegra_bpmp_put EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e48af39 dax_writeback_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x4e55d92f pci_host_probe EXPORT_SYMBOL_GPL vmlinux 0x4e56a0a8 dma_buf_unpin EXPORT_SYMBOL_GPL vmlinux 0x4e61ba86 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x4e646ce2 trace_event_ignore_this_pid EXPORT_SYMBOL_GPL vmlinux 0x4e676c40 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x4e6f169e ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x4e6f42a7 devm_of_icc_get EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4e7bc702 __traceiter_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x4e8875bf class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e8935d2 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x4e89fa20 mdiobus_modify EXPORT_SYMBOL_GPL vmlinux 0x4e8ee473 ahci_platform_disable_phys EXPORT_SYMBOL_GPL vmlinux 0x4ea70e52 clockevent_delta2ns EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x4eba6230 crypto_unregister_skciphers EXPORT_SYMBOL_GPL vmlinux 0x4ecb612e __devm_of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ed01e34 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x4edd0f0e l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x4ee1551c wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0x4eead633 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x4eedcde9 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x4ef4d37e device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4ef5c212 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4ef61aa6 ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize EXPORT_SYMBOL_GPL vmlinux 0x4efe92be lochnagar_update_config EXPORT_SYMBOL_GPL vmlinux 0x4f0f6930 of_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f42faf3 mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0x4f49dc10 spi_replace_transfers -EXPORT_SYMBOL_GPL vmlinux 0x4f57c4db wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x4f470b87 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x4f4ea8ab devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x4f559622 sdio_claim_irq EXPORT_SYMBOL_GPL vmlinux 0x4f59a0b3 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x4f64e9d5 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x4f5c007a __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x4f66048d device_set_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads EXPORT_SYMBOL_GPL vmlinux 0x4f6ddfe1 gov_attr_set_init EXPORT_SYMBOL_GPL vmlinux 0x4f722eb0 acpi_ec_remove_query_handler EXPORT_SYMBOL_GPL vmlinux 0x4f725155 regulator_map_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options EXPORT_SYMBOL_GPL vmlinux 0x4f7f3379 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x4f82ab9f i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4f829c2d crypto_stats_init EXPORT_SYMBOL_GPL vmlinux 0x4f8baca8 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f8cbbed skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x4f8d81cf __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0x4f8f72a6 serial8250_set_defaults EXPORT_SYMBOL_GPL vmlinux 0x4f939a22 da903x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x4f9ba6aa rockchip_pcie_cfg_configuration_accesses EXPORT_SYMBOL_GPL vmlinux 0x4faa80b4 xhci_get_ep_ctx EXPORT_SYMBOL_GPL vmlinux 0x4fbc4b48 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x4fc2d2cc gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0x4fcf639a powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x4fd6510e phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0x4fdc3245 __of_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal EXPORT_SYMBOL_GPL vmlinux 0x4fe0f33e devm_kmalloc EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ffa03e1 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x4ff92a07 of_css +EXPORT_SYMBOL_GPL vmlinux 0x5000acb4 mmc_crypto_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x500c86a1 ata_cable_80wire EXPORT_SYMBOL_GPL vmlinux 0x5018a91e regulator_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x50224905 dma_need_sync EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x5031e285 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x503fd5af trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0x504df5ec acpi_set_modalias EXPORT_SYMBOL_GPL vmlinux 0x506285e1 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x5069e36e icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0x506bb057 blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0x50758702 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x50859ce8 device_link_remove EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x5092711b preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x50b06756 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x509845dd pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x50a9d49a ata_dev_next EXPORT_SYMBOL_GPL vmlinux 0x50b2e78a iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0x50b34643 device_set_node EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property EXPORT_SYMBOL_GPL vmlinux 0x50d1a2fd irq_create_fwspec_mapping EXPORT_SYMBOL_GPL vmlinux 0x50dca9be disk_force_media_change EXPORT_SYMBOL_GPL vmlinux 0x50dcfd80 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x50ddbce0 dax_iomap_rw EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f5e44d ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x50eb8373 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x50f77a15 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x50f7b470 gpiod_is_active_low EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50ff87e6 crypto_stats_ahash_update EXPORT_SYMBOL_GPL vmlinux 0x5101a618 ata_sff_hsm_move EXPORT_SYMBOL_GPL vmlinux 0x510bb6e9 bus_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x510cd9b7 blk_mq_sched_try_merge EXPORT_SYMBOL_GPL vmlinux 0x51110c19 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x5112976b phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x5117ccc1 ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0x51252235 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x5126779e devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51286c92 fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x51341951 xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x514531d3 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x514c42a3 blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0x514c557f usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x51585c71 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x51566590 crypto_unregister_rngs EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x51659452 platform_device_put EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn EXPORT_SYMBOL_GPL vmlinux 0x517014ce alloc_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn EXPORT_SYMBOL_GPL vmlinux 0x518b33b7 blk_queue_required_elevator_features EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51a7b258 phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0x51a9d540 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x51ab03a0 device_register EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x51b7b14d spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x51c87eac spi_setup EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x51e2aaf5 ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0x51e65a8d gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x51d6618d gpiochip_find EXPORT_SYMBOL_GPL vmlinux 0x51faed3c mctrl_gpio_init EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x51fd8cf1 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x51fe6c29 of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x5208ae82 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x521197bd mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0x52159475 ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x52268527 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x522999a3 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x5239469a thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0x5242431b edac_device_del_device EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x52552fd8 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x52549046 perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf EXPORT_SYMBOL_GPL vmlinux 0x525d817b i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0x5262a817 imx_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0x5265392a pci_find_ht_capability EXPORT_SYMBOL_GPL vmlinux 0x5267eae9 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x526b2960 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x527c3380 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x528e4f43 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x5270f900 k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0x527f03c7 ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x52920305 pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0x52aa0cdb crypto_stats_compress EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags EXPORT_SYMBOL_GPL vmlinux 0x52b74a58 debugfs_read_file_bool EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0x52c5b8d3 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x52c7cfe4 sdio_readb EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x52d139ff synth_event_trace EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52d9db46 bgmac_phy_connect_direct +EXPORT_SYMBOL_GPL vmlinux 0x52e47a61 strp_done EXPORT_SYMBOL_GPL vmlinux 0x52fd3ad9 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x53005819 mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x5309b601 devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get EXPORT_SYMBOL_GPL vmlinux 0x53261cd5 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x5326f25d crypto_stats_kpp_set_secret EXPORT_SYMBOL_GPL vmlinux 0x532a7b3c badblocks_init EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init EXPORT_SYMBOL_GPL vmlinux 0x5331208e devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x5342f8c4 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x53472e9e regulator_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x53494c6d meson8_aobus_parse_dt_extra EXPORT_SYMBOL_GPL vmlinux 0x5351b1c4 mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0x53574b72 rio_mport_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x535a86e8 device_add_properties EXPORT_SYMBOL_GPL vmlinux 0x535f5f6d dev_pm_opp_of_register_em EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x53690f96 __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x5373288f event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x53774c6e sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x53792f0a init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x53817519 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x53aa3632 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x53acb654 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0x53bc93a6 fork_usermode_driver EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0x53e73ac1 fsverity_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x5402a4d4 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x54138c59 thermal_zone_get_zone_by_name EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 EXPORT_SYMBOL_GPL vmlinux 0x542bcf57 firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x542d23ec kill_device EXPORT_SYMBOL_GPL vmlinux 0x542e0073 irq_domain_associate EXPORT_SYMBOL_GPL vmlinux 0x54330071 fuse_do_open EXPORT_SYMBOL_GPL vmlinux 0x5436804c fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0x543b5453 firmware_request_cache EXPORT_SYMBOL_GPL vmlinux 0x5441e92d led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x54462a8a regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x544ea51b spi_take_timestamp_pre EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table EXPORT_SYMBOL_GPL vmlinux 0x5456dd32 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x5460f79f work_on_cpu_safe_key EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x5467df8e __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x546c6392 devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0x5488e2ee fsl_mc_bus_dprc_type EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq EXPORT_SYMBOL_GPL vmlinux 0x549688e1 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x549abbc0 switchdev_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54a42320 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x54b9f0dd vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0x54be80fa clk_hw_unregister_divider EXPORT_SYMBOL_GPL vmlinux 0x54c200d9 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x54ca0713 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x54cd7176 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x54e2a6df crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x54f8f804 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x54fc8527 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x550b846d wm8400_reset_codec_reg_cache EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x551327f9 gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0x551e8d5c tegra_bpmp_request_mrq -EXPORT_SYMBOL_GPL vmlinux 0x552542fb __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0x552b1e5e devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5528821a regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput EXPORT_SYMBOL_GPL vmlinux 0x55387233 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x5539f43f fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier EXPORT_SYMBOL_GPL vmlinux 0x5547e01c devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x55640b66 scsi_host_complete_all_commands EXPORT_SYMBOL_GPL vmlinux 0x556e3018 acpi_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x556f356a kvm_vcpu_wake_up EXPORT_SYMBOL_GPL vmlinux 0x556f717b tps6586x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x557b0cfd __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x5589038c ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x5579d8fb clk_hw_get_flags EXPORT_SYMBOL_GPL vmlinux 0x5592e159 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x55aa4551 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x55b12ee8 crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0x55c37514 usb_of_has_combined_node EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node +EXPORT_SYMBOL_GPL vmlinux 0x55e17422 fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x55e6ff5e rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x55e87945 platform_get_resource EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout EXPORT_SYMBOL_GPL vmlinux 0x55f2aa50 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x5602001c gpiod_toggle_active_low EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab EXPORT_SYMBOL_GPL vmlinux 0x560e3ff5 mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits @@ -21846,151 +21913,145 @@ EXPORT_SYMBOL_GPL vmlinux 0x56309b57 usb_intf_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x5649dcff rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x5654b44d fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0x56576bac clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x5657e28d xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0x565964f6 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x5661d887 crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x566a5c9a bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0x5672e0a6 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x56815ecc of_css EXPORT_SYMBOL_GPL vmlinux 0x56932e1c handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x56935b94 sdio_writeb EXPORT_SYMBOL_GPL vmlinux 0x56a29a39 iommu_map_sg EXPORT_SYMBOL_GPL vmlinux 0x56a95fc4 serial8250_do_shutdown EXPORT_SYMBOL_GPL vmlinux 0x56b0dd36 tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0x56b21494 of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x56c11512 acpi_dev_remove_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0x56c1f541 ti_sci_inta_msi_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0x56d2de5a irq_of_parse_and_map EXPORT_SYMBOL_GPL vmlinux 0x56da37f9 debugfs_create_file EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56ea697b replace_page_cache_page EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x5702484c fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x570dbbd7 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0x5713b9e2 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x571618d4 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x5718de09 scsi_build_sense EXPORT_SYMBOL_GPL vmlinux 0x571a3bac i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x571d1e41 gfn_to_page EXPORT_SYMBOL_GPL vmlinux 0x571f20c6 iommu_sva_alloc_pasid EXPORT_SYMBOL_GPL vmlinux 0x5727baa5 attribute_container_find_class_device EXPORT_SYMBOL_GPL vmlinux 0x572d0ae7 fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0x57333e85 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x5734858e rtnl_get_net_ns_capable EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x57454ac4 bgmac_enet_remove +EXPORT_SYMBOL_GPL vmlinux 0x573dabf9 mmc_switch EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value EXPORT_SYMBOL_GPL vmlinux 0x574f74f8 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x5754b0a5 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x57570fb6 regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach -EXPORT_SYMBOL_GPL vmlinux 0x577fe5d4 raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0x5785746e dev_pm_genpd_suspend EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove EXPORT_SYMBOL_GPL vmlinux 0x579d7cab md_account_bio EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all EXPORT_SYMBOL_GPL vmlinux 0x579fe676 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x57b0f32d regmap_write_async EXPORT_SYMBOL_GPL vmlinux 0x57b55b93 i2c_acpi_find_adapter_by_handle EXPORT_SYMBOL_GPL vmlinux 0x57c10584 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0x57ccb82c gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x57ccc424 __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index EXPORT_SYMBOL_GPL vmlinux 0x57dec00c devm_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x57e2a0ad debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x57e319ac vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x57e9d426 of_find_spi_device_by_node EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point EXPORT_SYMBOL_GPL vmlinux 0x57f9035d msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x58051b25 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5804d684 trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0x58093631 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x58121a2d __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0x58192834 acpi_driver_match_device EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x5839719f ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x5840e499 __list_lru_init EXPORT_SYMBOL_GPL vmlinux 0x584540c9 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x58572742 ip6_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x5865e1c8 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x5868ed35 icc_put EXPORT_SYMBOL_GPL vmlinux 0x586a5ec6 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x586b5945 dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x5876c64c ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587d78b2 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x5881584d regmap_read EXPORT_SYMBOL_GPL vmlinux 0x588c8239 acpi_dev_get_memory_resources EXPORT_SYMBOL_GPL vmlinux 0x588ed45a phy_power_on EXPORT_SYMBOL_GPL vmlinux 0x589528e6 clk_hw_register_composite EXPORT_SYMBOL_GPL vmlinux 0x589585eb of_reserved_mem_lookup EXPORT_SYMBOL_GPL vmlinux 0x58b1947f usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x58b8ffa7 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x58b963eb bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x58ce83ec wbt_enable_default EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op -EXPORT_SYMBOL_GPL vmlinux 0x591ae390 __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x5924bd5e crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0x592c7ab8 sysfs_update_groups EXPORT_SYMBOL_GPL vmlinux 0x593072a3 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x5939d9d0 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5949dcc2 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x593ab862 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x594310c9 inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0x594c2224 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0x59576ffe devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0x5966fc9d fsl_mc_bus_dpdbg_type -EXPORT_SYMBOL_GPL vmlinux 0x596cc001 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x596eef3b spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5970ef5a devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0x5972093a dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x5975936c sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x597d1cb0 rio_free_net EXPORT_SYMBOL_GPL vmlinux 0x59843d8b psil_set_new_ep_config EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x598afe96 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x598df151 pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user EXPORT_SYMBOL_GPL vmlinux 0x59babab0 pci_ignore_hotplug EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59c8e31b crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x59c6cef1 devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x59c91b46 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x59cea715 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x59d160b6 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x59cfebfd sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x59d52461 regulator_force_disable EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL vmlinux 0x59e93d02 rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0x59eddae5 md_stop EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm EXPORT_SYMBOL_GPL vmlinux 0x59fb1d65 irq_set_default_host EXPORT_SYMBOL_GPL vmlinux 0x59fed14f fsverity_verify_bio EXPORT_SYMBOL_GPL vmlinux 0x59fefded devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x5a047612 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x5a12683a regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x5a12d6c8 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5a0b11f4 fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x5a16355d devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0x5a165d81 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x5a12eb6f kill_device EXPORT_SYMBOL_GPL vmlinux 0x5a18c9c8 ima_file_check EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle EXPORT_SYMBOL_GPL vmlinux 0x5a1ebff0 __bio_crypt_clone EXPORT_SYMBOL_GPL vmlinux 0x5a22ff48 uart_console_device -EXPORT_SYMBOL_GPL vmlinux 0x5a32b2ef devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x5a37b224 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x5a3f21d1 crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0x5a468444 pci_stop_root_bus EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a63890b ata_sas_sync_probe EXPORT_SYMBOL_GPL vmlinux 0x5a640799 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5a665904 cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt EXPORT_SYMBOL_GPL vmlinux 0x5a736b63 pci_cfg_access_lock EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify EXPORT_SYMBOL_GPL vmlinux 0x5aa01b01 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x5aa40f72 strp_init EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5aad067a udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5abb0f54 devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x5ac171bb nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x5acb1bda gov_update_cpu_data EXPORT_SYMBOL_GPL vmlinux 0x5acc9ab7 noop_backing_dev_info EXPORT_SYMBOL_GPL vmlinux 0x5ad23ee9 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x5ad2d4e8 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x5adeb8a1 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x5aecaeee skb_gso_validate_network_len EXPORT_SYMBOL_GPL vmlinux 0x5af1e553 tegra_mc_probe_device EXPORT_SYMBOL_GPL vmlinux 0x5af299cd em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x5afee0e0 ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0x5b094e06 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x5b0d03ae __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x5b1c9c1e pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x5b21604f crypto_shash_tfm_digest EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek EXPORT_SYMBOL_GPL vmlinux 0x5b23747b efivar_entry_remove EXPORT_SYMBOL_GPL vmlinux 0x5b27e15c ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x5b3e9dd0 switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x5b58d238 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x5b5aa0cc crypto_stats_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b78120f usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5b6eaab0 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x5b919843 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5ba79649 gpiochip_line_is_irq EXPORT_SYMBOL_GPL vmlinux 0x5ba927df __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x5bbbfef0 __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel EXPORT_SYMBOL_GPL vmlinux 0x5bc99c83 dma_mmap_pages @@ -21999,103 +22060,97 @@ EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bdc613e devlink_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0x5be78871 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5be97072 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0x5bfd4abb meson_sm_get EXPORT_SYMBOL_GPL vmlinux 0x5c02aae9 devm_of_platform_depopulate EXPORT_SYMBOL_GPL vmlinux 0x5c04a90c power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x5c08bf22 scsi_check_sense EXPORT_SYMBOL_GPL vmlinux 0x5c0b9ba9 pm_generic_thaw_noirq EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw +EXPORT_SYMBOL_GPL vmlinux 0x5c19e415 fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x5c1fa7c4 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x5c238efd gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0x5c2a3343 dev_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0x5c2b7893 dev_pm_clear_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x5c2ccab7 debugfs_create_u32_array EXPORT_SYMBOL_GPL vmlinux 0x5c389c41 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x5c39ad13 tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event EXPORT_SYMBOL_GPL vmlinux 0x5c4e1965 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x5c55e1cd fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0x5c594f3f get_dev_pagemap EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features EXPORT_SYMBOL_GPL vmlinux 0x5c66cf70 devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x5c6eae78 ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0x5c6fbf65 devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x5c7274ce ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x5c742b46 call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5c8eb1fc filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0x5c8a5d5a ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple EXPORT_SYMBOL_GPL vmlinux 0x5cb52b0b usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0x5ccb1240 genphy_c45_read_link EXPORT_SYMBOL_GPL vmlinux 0x5ccc1ac2 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x5cd5f848 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x5cdc7937 __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x5cdfddc6 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x5cd38bfb kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0x5cdc2725 get_governor_parent_kobj EXPORT_SYMBOL_GPL vmlinux 0x5ce87fbe virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0x5cebe8e4 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5cec6a59 __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x5cfa212f ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x5cfb35f8 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x5cfe0ef8 devm_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x5cfe8b85 nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x5cffb9d0 mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0x5d023b47 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5d035087 thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0x5d03c5c9 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x5d051958 device_show_ulong EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d218930 regulator_disable EXPORT_SYMBOL_GPL vmlinux 0x5d2664c2 dev_pm_opp_put_regulators EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d3ec7c2 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x5d3effbd sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x5d4088b0 crypto_alloc_shash EXPORT_SYMBOL_GPL vmlinux 0x5d486d16 rio_mport_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0x5d624182 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x5d7defb6 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x5d7e2cc3 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x5d797def bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d8948df devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0x5d8f7cbf md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x5d9ab874 lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0x5da60a14 relay_buf_full EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db434e6 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x5dd35272 switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0x5dac1189 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x5dacd0a0 dev_pm_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x5dd7aa7d dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x5ddd2cca security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x5ddb1311 crypto_register_rngs EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push -EXPORT_SYMBOL_GPL vmlinux 0x5df1aa48 spi_statistics_add_transfer_stats EXPORT_SYMBOL_GPL vmlinux 0x5df62936 rockchip_pcie_init_port EXPORT_SYMBOL_GPL vmlinux 0x5df9d145 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x5dfb607e dev_pm_qos_hide_flags EXPORT_SYMBOL_GPL vmlinux 0x5e053f4a dma_vunmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x5e06a2a2 usb_autopm_get_interface_no_resume EXPORT_SYMBOL_GPL vmlinux 0x5e0ca0ec fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x5e0e5a83 task_user_regset_view EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e1f524d tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x5e1fc279 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x5e24f327 ip_local_out EXPORT_SYMBOL_GPL vmlinux 0x5e2667e0 clk_hw_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0x5e269b17 vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x5e2a65e3 cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0x5e2da713 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x5e27865d ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0x5e2e7a2f usb_disable_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0x5e40de0c tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x5e426e0e strp_process EXPORT_SYMBOL_GPL vmlinux 0x5e4d8755 fuse_free_conn EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e59d20f ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x5e6680ae devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x5e6a0eb2 pwm_capture EXPORT_SYMBOL_GPL vmlinux 0x5e73080c ata_bmdma32_port_ops EXPORT_SYMBOL_GPL vmlinux 0x5e73d42f __fscrypt_prepare_lookup EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e95fdff kvm_vcpu_yield_to EXPORT_SYMBOL_GPL vmlinux 0x5ea980a5 bsg_job_get 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 0x5eba902f dm_put EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource -EXPORT_SYMBOL_GPL vmlinux 0x5ee328cd dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0x5efe69ea elv_unregister EXPORT_SYMBOL_GPL vmlinux 0x5f0391ed pinctrl_dev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x5f0e20f4 driver_unregister @@ -22103,29 +22158,34 @@ EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource EXPORT_SYMBOL_GPL vmlinux 0x5f2eef49 usb_reset_endpoint EXPORT_SYMBOL_GPL vmlinux 0x5f304e19 xenbus_free_evtchn EXPORT_SYMBOL_GPL vmlinux 0x5f331498 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x5f3870bf regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x5f44e98b __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x5f49f930 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x5f5d68ac bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x5f64fcf3 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0x5f6b842d devm_clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private EXPORT_SYMBOL_GPL vmlinux 0x5f7b7af0 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0x5f869e70 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5f8a35d0 regulator_get_error_flags EXPORT_SYMBOL_GPL vmlinux 0x5f8d004a rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x5fa2cd7a ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x5fa5a79c kvm_write_guest_offset_cached EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point EXPORT_SYMBOL_GPL vmlinux 0x5fac452e dev_pm_opp_set_opp EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL vmlinux 0x5fc1bd15 crypto_get_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x5fcc51e7 devm_spi_mem_dirmap_create EXPORT_SYMBOL_GPL vmlinux 0x5fd102dd usb_unpoison_urb EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x5fea755a regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x5ff22ad0 dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0x5ffd807c usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x601879e4 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x603648a4 crypto_aead_setkey EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem EXPORT_SYMBOL_GPL vmlinux 0x603eed0c usb_autopm_get_interface_async EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6057b6cf mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x604dfcc3 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x6053c7c1 xfrm_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size EXPORT_SYMBOL_GPL vmlinux 0x60634878 dma_buf_end_cpu_access EXPORT_SYMBOL_GPL vmlinux 0x6066ac06 iommu_device_unregister @@ -22133,6 +22193,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x6069ea77 regcache_sync_region EXPORT_SYMBOL_GPL vmlinux 0x606fb405 ti_sci_inta_msi_domain_free_irqs EXPORT_SYMBOL_GPL vmlinux 0x607afeea pfn_to_online_page EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x60839863 sata_scr_write EXPORT_SYMBOL_GPL vmlinux 0x608bfcd6 sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x60969a70 fsl_mc_resource_allocate @@ -22140,27 +22201,27 @@ EXPORT_SYMBOL_GPL vmlinux 0x60991469 balloon_page_list_enqueue EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off EXPORT_SYMBOL_GPL vmlinux 0x60a5790a dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x60aa5809 fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x60c8be24 led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x60dcb495 fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0x60e0024c clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f7ea7d file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x60f081c5 ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf EXPORT_SYMBOL_GPL vmlinux 0x60fb4b32 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x6100b522 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x610351b2 kvm_map_gfn +EXPORT_SYMBOL_GPL vmlinux 0x61057f6d ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x610e24f3 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x611c316b clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail EXPORT_SYMBOL_GPL vmlinux 0x611eec1a dm_disk EXPORT_SYMBOL_GPL vmlinux 0x611fe3b2 pci_aer_clear_nonfatal_status EXPORT_SYMBOL_GPL vmlinux 0x61287b42 dprc_scan_container EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x612eb72e ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x612eab77 udp_abort EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all EXPORT_SYMBOL_GPL vmlinux 0x61577d36 pci_find_host_bridge EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path EXPORT_SYMBOL_GPL vmlinux 0x615d556f led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0x616f5c76 bpf_map_put EXPORT_SYMBOL_GPL vmlinux 0x6172dd20 fb_deferred_io_cleanup EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add @@ -22169,25 +22230,24 @@ EXPORT_SYMBOL_GPL vmlinux 0x6183b938 pci_d3cold_disable 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 0x61a92f7c alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause EXPORT_SYMBOL_GPL vmlinux 0x61b88575 xhci_add_endpoint EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x61c86dba xhci_gen_setup EXPORT_SYMBOL_GPL vmlinux 0x61d24c8c find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x61d81e81 fwnode_get_phy_node EXPORT_SYMBOL_GPL vmlinux 0x61e30b70 init_srcu_struct EXPORT_SYMBOL_GPL vmlinux 0x61e89cd7 badblocks_check EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0x61f97112 mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x6213e726 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x6218ad21 ata_sas_port_suspend EXPORT_SYMBOL_GPL vmlinux 0x6219e1dd usb_phy_roothub_alloc EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x622de72c iptunnel_metadata_reply EXPORT_SYMBOL_GPL vmlinux 0x622ec6dc devm_clk_get_optional_enabled EXPORT_SYMBOL_GPL vmlinux 0x622f41a6 mtk_eint_do_suspend EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x6246373c ata_host_alloc EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x624b4ea1 __sock_recv_ts_and_drops EXPORT_SYMBOL_GPL vmlinux 0x6252affc driver_create_file EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context @@ -22195,59 +22255,55 @@ EXPORT_SYMBOL_GPL vmlinux 0x626be465 dma_get_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x626d76d0 devm_thermal_zone_of_sensor_unregister EXPORT_SYMBOL_GPL vmlinux 0x6276e54e irq_gc_mask_clr_bit EXPORT_SYMBOL_GPL vmlinux 0x627a90c7 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x62866f7e sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x62929074 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x6295c93c rtc_update_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x629ff972 iommu_fwspec_init EXPORT_SYMBOL_GPL vmlinux 0x62af452d regulator_map_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62cd635d kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x62e1918e clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x62fb2ecc cpufreq_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x63085f29 md_bitmap_copy_from_slot EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x631785c9 phy_driver_is_genphy EXPORT_SYMBOL_GPL vmlinux 0x6318757f mdio_mux_uninit EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake EXPORT_SYMBOL_GPL vmlinux 0x6332d8e9 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x633a198c regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x63416612 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x63452839 spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0x6347c040 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x6345b5b2 thermal_zone_device_enable EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x634d7d75 cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x635bef96 clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x6368013b regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x636f4f92 scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0x638926b0 i2c_acpi_client_count EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x639ec490 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x639e8810 sdio_writeb EXPORT_SYMBOL_GPL vmlinux 0x63a5deb2 virtqueue_is_broken EXPORT_SYMBOL_GPL vmlinux 0x63ab6362 irq_chip_unmask_parent EXPORT_SYMBOL_GPL vmlinux 0x63b31078 usb_driver_release_interface EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c61ddf clk_hw_round_rate EXPORT_SYMBOL_GPL vmlinux 0x63c8c1f2 tc3589x_reg_write EXPORT_SYMBOL_GPL vmlinux 0x63d497a8 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x63e330c3 crypto_stats_kpp_generate_public_key EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63faf8fe set_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x63ffec29 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x64041d21 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x64053d2f cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0x640d0e0c power_supply_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x6411d6ec fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0x6418167c crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0x641ebaa9 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x64265f18 device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable -EXPORT_SYMBOL_GPL vmlinux 0x64302467 scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x64362011 inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate EXPORT_SYMBOL_GPL vmlinux 0x643efd35 devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x643f3009 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x64492a16 cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x6450a2cd skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x64583725 mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x64590e40 dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0x645b7acc i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x645bb1d3 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x646037f2 fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x6469e712 clk_hw_get_parent_by_index EXPORT_SYMBOL_GPL vmlinux 0x647043cd pci_disable_pasid EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x6488f5db __class_create +EXPORT_SYMBOL_GPL vmlinux 0x648c56b1 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x648e5b39 device_create_with_groups EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x64963512 gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64a5f0e1 of_clk_src_simple_get EXPORT_SYMBOL_GPL vmlinux 0x64aaf1be tpm_transmit_cmd EXPORT_SYMBOL_GPL vmlinux 0x64b71173 reserve_iova EXPORT_SYMBOL_GPL vmlinux 0x64bf6779 devm_power_supply_register_no_ws @@ -22261,232 +22317,227 @@ EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf EXPORT_SYMBOL_GPL vmlinux 0x650861e6 kobject_get_path EXPORT_SYMBOL_GPL vmlinux 0x650ee535 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x650fbf25 gpiod_direction_input EXPORT_SYMBOL_GPL vmlinux 0x652313fd pci_cfg_access_trylock EXPORT_SYMBOL_GPL vmlinux 0x652d75b7 blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x6532e16a devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x65333901 shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0x65393922 irq_domain_add_legacy EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x654a5599 pci_acpi_set_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0x65516958 generic_handle_domain_irq EXPORT_SYMBOL_GPL vmlinux 0x655e4879 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x65724f74 wm8350_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0x65814c6b debugfs_lookup_and_remove -EXPORT_SYMBOL_GPL vmlinux 0x6587d386 ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x659d4513 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x65ae16cc kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x65a0ec9d unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0x65b23c8a devm_remove_action EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers EXPORT_SYMBOL_GPL vmlinux 0x65d4d400 iommu_dev_enable_feature EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache EXPORT_SYMBOL_GPL vmlinux 0x65e336eb rio_mport_chk_dev_access EXPORT_SYMBOL_GPL vmlinux 0x65edf3f9 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x65f7c01f ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x65ee1609 cpufreq_register_driver EXPORT_SYMBOL_GPL vmlinux 0x65fb9a28 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x66024188 ahci_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x660575bc pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x660a40de sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x660f0c82 cpufreq_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x661073cd devm_devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol EXPORT_SYMBOL_GPL vmlinux 0x6619f232 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x662bd340 wm8350_block_read EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6639525c sched_show_task EXPORT_SYMBOL_GPL vmlinux 0x6639c5d4 pm_clk_add EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x663bf8c8 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x663d8a6f mmc_crypto_prepare_req EXPORT_SYMBOL_GPL vmlinux 0x6645a35c i2c_slave_unregister EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma EXPORT_SYMBOL_GPL vmlinux 0x664f0cef bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x66526e22 skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0x66546ede acpiphp_register_attention EXPORT_SYMBOL_GPL vmlinux 0x6655e7c2 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x665e87fd device_create EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle EXPORT_SYMBOL_GPL vmlinux 0x6669381d of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0x666fad33 devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x66705c33 __get_task_comm EXPORT_SYMBOL_GPL vmlinux 0x66746547 tegra_bpmp_free_mrq EXPORT_SYMBOL_GPL vmlinux 0x667a2bb9 devm_pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0x667c11db pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x6681b671 __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x6682eb30 crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x668d9957 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x6691f8a6 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x6698f864 spi_sync EXPORT_SYMBOL_GPL vmlinux 0x669bc783 extcon_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x66a78983 regcache_cache_bypass EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66c05275 __clk_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x66cfedde pinmux_generic_remove_function EXPORT_SYMBOL_GPL vmlinux 0x66d49fe8 mddev_resume EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66dd69e3 devlink_params_unpublish EXPORT_SYMBOL_GPL vmlinux 0x66df8abc power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x66ee3dee dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x670465c9 pinctrl_force_sleep EXPORT_SYMBOL_GPL vmlinux 0x6705a1da ima_inode_hash EXPORT_SYMBOL_GPL vmlinux 0x670e55a4 mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0x6714e431 dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x671524c9 generic_fh_to_parent EXPORT_SYMBOL_GPL vmlinux 0x6717f431 serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x671dfb71 devlink_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x672b53d1 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x6731d051 fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x67693070 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x675e68a8 sdio_get_host_pm_caps EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free -EXPORT_SYMBOL_GPL vmlinux 0x6774ac76 __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0x6777a092 debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x678cd238 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x67940009 devlink_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits EXPORT_SYMBOL_GPL vmlinux 0x67a0169a pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x67c6d4da mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x67b6e858 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x67d53d5e crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0x67d91336 fwnode_usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67daacf1 kvm_vcpu_block -EXPORT_SYMBOL_GPL vmlinux 0x67f88d2a crypto_get_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x67fa8d47 xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x67fccde2 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x680c0795 fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0x680f3fd5 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x681301bf aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x6814b5fc gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x681898f1 setfl +EXPORT_SYMBOL_GPL vmlinux 0x6820073c synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x68224bed inet6_hash EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x683185cf crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x683700f2 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x683a495b icc_node_add EXPORT_SYMBOL_GPL vmlinux 0x683d05a4 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x683fdcba skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode EXPORT_SYMBOL_GPL vmlinux 0x6859677b cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x6859a0a5 ahci_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x6861b3c0 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x68672dd1 cpufreq_cpu_put EXPORT_SYMBOL_GPL vmlinux 0x68721a4c pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x68733cde mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0x687df496 lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch EXPORT_SYMBOL_GPL vmlinux 0x68a62034 rio_alloc_net EXPORT_SYMBOL_GPL vmlinux 0x68af8adc genphy_c45_check_and_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x68b773e4 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x68ba0423 sdio_align_size EXPORT_SYMBOL_GPL vmlinux 0x68c90424 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x68d01efe hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0x68d7cc10 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x68dd1d96 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x68de01d0 add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0x68e12f67 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x68e8020f find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x68f1f8dc call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0x68fe0efd usb_check_int_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x69000b01 bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array EXPORT_SYMBOL_GPL vmlinux 0x691e406e nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x693c6eeb fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x6943a93c mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x6921b967 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x6935039b regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x694b4d96 uart_handle_dcd_change EXPORT_SYMBOL_GPL vmlinux 0x6954310a acpi_bind_one EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x696befa0 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x69648bd1 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x696cf755 dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init EXPORT_SYMBOL_GPL vmlinux 0x69744eef ata_sff_data_xfer EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697ce264 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x697dd4a0 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x698c477f devm_device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x698f3513 component_del -EXPORT_SYMBOL_GPL vmlinux 0x698f4a1a kvm_vcpu_unmap EXPORT_SYMBOL_GPL vmlinux 0x69a1c97d fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x69a97e48 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0x69ac9484 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x69b8f7dd dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x69b063b9 fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high EXPORT_SYMBOL_GPL vmlinux 0x69f2820f of_irq_parse_one EXPORT_SYMBOL_GPL vmlinux 0x69f4e9fe fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x69fcaef8 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x6a000812 ip_valid_fib_dump_req EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode EXPORT_SYMBOL_GPL vmlinux 0x6a0bcc4b ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x6a102066 regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0x6a172cd6 da9052_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x6a19455c da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x6a200210 access_process_vm EXPORT_SYMBOL_GPL vmlinux 0x6a22640e pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x6a36f781 crypto_stats_akcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x6a3b723f edac_device_add_device EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a478c12 init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a506744 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x6a7cf0d1 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6a7fc81f __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6a63ca4c iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x6a719943 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x6a753b5c fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0x6a83e3df acpi_dev_clear_dependencies EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function -EXPORT_SYMBOL_GPL vmlinux 0x6a9b7fb2 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x6a9d237c skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aa9118f rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6ac40c14 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0x6ac900aa regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x6ab7fce8 device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0x6acd3e47 set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x6acd6381 devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0x6ace061d bus_for_each_drv EXPORT_SYMBOL_GPL vmlinux 0x6ad0415c devm_extcon_dev_unregister EXPORT_SYMBOL_GPL vmlinux 0x6ad36e70 dma_mmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x6ada82a6 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x6ada91f2 rq_flush_dcache_pages EXPORT_SYMBOL_GPL vmlinux 0x6af5dcd4 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x6b0186b1 devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b0f375f phy_package_leave EXPORT_SYMBOL_GPL vmlinux 0x6b15eaf8 genphy_c45_an_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable EXPORT_SYMBOL_GPL vmlinux 0x6b2fe6df imx_unregister_hw_clocks EXPORT_SYMBOL_GPL vmlinux 0x6b34eb41 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x6b399df5 scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6b5223fe device_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0x6b594d57 fsnotify EXPORT_SYMBOL_GPL vmlinux 0x6b5c4c87 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x6b6b17f7 xfrm_dev_offload_ok 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 0x6b861678 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6b8e3a9f crypto_stats_rng_seed EXPORT_SYMBOL_GPL vmlinux 0x6b8eb273 dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0x6b9d9163 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x6ba1c6fd ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x6b8ebb2a netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value EXPORT_SYMBOL_GPL vmlinux 0x6ba7282e devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x6bb03055 nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x6bb1c244 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x6bbc39d0 device_match_name EXPORT_SYMBOL_GPL vmlinux 0x6bc751ed reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0x6bc7aa0e stmpe811_adc_common_init EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init -EXPORT_SYMBOL_GPL vmlinux 0x6bd0fc96 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x6bce6fb3 ping_err EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save EXPORT_SYMBOL_GPL vmlinux 0x6bd32469 regulator_list_voltage_pickable_linear_range EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake EXPORT_SYMBOL_GPL vmlinux 0x6bdf2425 vchan_tx_submit EXPORT_SYMBOL_GPL vmlinux 0x6be06ae8 mtk_pctrl_show_one_pin -EXPORT_SYMBOL_GPL vmlinux 0x6be0842d __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x6bf20c1b vcpu_load EXPORT_SYMBOL_GPL vmlinux 0x6bf66066 iomap_readpage EXPORT_SYMBOL_GPL vmlinux 0x6bf938aa pinmux_generic_get_function EXPORT_SYMBOL_GPL vmlinux 0x6c05eed7 pci_probe_reset_slot EXPORT_SYMBOL_GPL vmlinux 0x6c070469 vmf_insert_pfn_pmd_prot EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x6c34f49f crypto_rng_reset EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3af4b5 net_ns_type_operations EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen EXPORT_SYMBOL_GPL vmlinux 0x6c42fcc9 ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c524b35 mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register EXPORT_SYMBOL_GPL vmlinux 0x6c5b8e01 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x6c5da96e regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x6c64a882 ata_port_wait_eh EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier EXPORT_SYMBOL_GPL vmlinux 0x6c6a2937 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6c6b1b6d platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x6c6f83b3 stmpe_enable EXPORT_SYMBOL_GPL vmlinux 0x6c821a37 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0x6c82a7c4 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x6c88c195 kvm_vcpu_block EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x6cb365be __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x6cbd4374 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x6ccec563 __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x6ccee08a gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x6cb7c6c4 msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6cd40af6 wm8350_clear_bits EXPORT_SYMBOL_GPL vmlinux 0x6cd9f559 iommu_sva_unbind_gpasid EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies EXPORT_SYMBOL_GPL vmlinux 0x6ce9cbc2 pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x6cff4e4b xfrm_output_resume EXPORT_SYMBOL_GPL vmlinux 0x6d024515 rio_lock_device EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user @@ -22496,38 +22547,46 @@ EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list EXPORT_SYMBOL_GPL vmlinux 0x6d3ad3a5 blk_queue_zone_write_granularity EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit EXPORT_SYMBOL_GPL vmlinux 0x6d4ad5a8 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x6d510795 kvm_is_visible_gfn EXPORT_SYMBOL_GPL vmlinux 0x6d5c09bc amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x6d6d7168 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d982720 bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x6d9d7a86 fwnode_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x6db0bac7 ehci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dbc98fb device_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6ddbf622 devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x6dee0446 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x6df79cbc stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x6dffdca2 spi_sync_locked EXPORT_SYMBOL_GPL vmlinux 0x6e021e4b amba_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x6e08e831 fscrypt_ioctl_add_key EXPORT_SYMBOL_GPL vmlinux 0x6e0985af hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map EXPORT_SYMBOL_GPL vmlinux 0x6e17f45a pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x6e19f8bd devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e1a426e skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0x6e21350c class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x6e36398f devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x6e337c59 root_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index EXPORT_SYMBOL_GPL vmlinux 0x6e466bb6 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x6e47ad90 wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free EXPORT_SYMBOL_GPL vmlinux 0x6e53a1cb tty_ldisc_deref EXPORT_SYMBOL_GPL vmlinux 0x6e5930b2 pci_vfs_assigned EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e76dd94 ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0x6e782e95 mddev_init EXPORT_SYMBOL_GPL vmlinux 0x6e791080 dpbp_close +EXPORT_SYMBOL_GPL vmlinux 0x6e791929 pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id EXPORT_SYMBOL_GPL vmlinux 0x6e7953b9 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x6e823a7f spi_alloc_device EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base EXPORT_SYMBOL_GPL vmlinux 0x6e94f9f4 usb_disable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x6e9f203b dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x6ea268ec __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6ec58993 mpc8xxx_spi_tx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0x6ec6b840 sysfs_create_group @@ -22536,166 +22595,154 @@ EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom EXPORT_SYMBOL_GPL vmlinux 0x6ef0855c ftrace_set_filter_ip EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6efc0d65 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x6f0f8d49 call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee3f5 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x6f127668 crypto_register_templates EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity EXPORT_SYMBOL_GPL vmlinux 0x6f394a44 altr_sysmgr_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6f3e49a5 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x6f4a6d1d crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x6f587296 wm8350_block_write EXPORT_SYMBOL_GPL vmlinux 0x6f5e1ce1 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x6f65aeab udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0x6f67dd01 vp_modern_get_status EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f894af7 __kernel_write EXPORT_SYMBOL_GPL vmlinux 0x6f89f58d hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x6f8e8f46 rtc_class_close 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 0x6fa67ada debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x6fb49480 regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x6fb58f85 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x6fb986c4 nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fecc1c9 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x6fe2f1e2 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x6ff072cc ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x6ff518dc cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffb5467 ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0x7002a96c power_supply_put_battery_info EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x70189a36 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x700926c6 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x700fcc54 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x701b77a7 lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0x702d792e usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x70446ca4 stmpe_block_read EXPORT_SYMBOL_GPL vmlinux 0x7055c56e __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x705e75c5 pm_relax EXPORT_SYMBOL_GPL vmlinux 0x705f6c76 acpi_unbind_one EXPORT_SYMBOL_GPL vmlinux 0x70652ed3 genphy_c45_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x706ae49e rockchip_clk_add_lookup EXPORT_SYMBOL_GPL vmlinux 0x706cf673 dma_run_dependencies EXPORT_SYMBOL_GPL vmlinux 0x706d3c13 ata_sff_postreset EXPORT_SYMBOL_GPL vmlinux 0x706d8c93 irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x70708f1f of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x70728a44 ata_sas_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array EXPORT_SYMBOL_GPL vmlinux 0x70774638 fat_fill_super EXPORT_SYMBOL_GPL vmlinux 0x707e5d55 vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x709af8f6 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x7085da1e mmc_regulator_set_vqmmc EXPORT_SYMBOL_GPL vmlinux 0x709e2f4c dpbp_reset EXPORT_SYMBOL_GPL vmlinux 0x709ef340 amba_device_put EXPORT_SYMBOL_GPL vmlinux 0x70a969c2 iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0x70b1659d raw_abort EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer EXPORT_SYMBOL_GPL vmlinux 0x70bc74f2 devm_free_pages EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x70c4de93 icc_link_destroy EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c82d91 devlink_net EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d9c58c find_extend_vma EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x70e431d2 spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0x70f4d5be sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x70fc1483 security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0x70fce3b6 devm_qcom_smem_state_get EXPORT_SYMBOL_GPL vmlinux 0x70fd869b devm_regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x71056acf uart_get_rs485_mode EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x711b76b2 __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x711bb530 udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0x711f9459 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7121c0ea ahci_print_info EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x713a98bf crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x7140c6c3 fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized EXPORT_SYMBOL_GPL vmlinux 0x71737e3d pinctrl_select_state EXPORT_SYMBOL_GPL vmlinux 0x717ac20a irq_domain_disconnect_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x717fb060 iommu_sva_bind_device EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7198eea7 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x7199f1e9 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x719a4ba7 perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71a45764 udp_destruct_common -EXPORT_SYMBOL_GPL vmlinux 0x71a946e9 clk_hw_is_prepared EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire -EXPORT_SYMBOL_GPL vmlinux 0x71af4a39 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x71b0922b crypto_alloc_skcipher 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 0x71c2fb12 find_get_pid EXPORT_SYMBOL_GPL vmlinux 0x71c7a7c3 user_update -EXPORT_SYMBOL_GPL vmlinux 0x71c89154 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x71c84f7d ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x71c86c7f aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x71e1bb8a bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0x71e33e31 irq_gc_set_wake -EXPORT_SYMBOL_GPL vmlinux 0x71e80755 ehci_reset EXPORT_SYMBOL_GPL vmlinux 0x71ed10f0 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x71efba12 crypto_unregister_skcipher EXPORT_SYMBOL_GPL vmlinux 0x71f051bf devm_clk_bulk_get_all EXPORT_SYMBOL_GPL vmlinux 0x720247aa sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x72038d23 shmem_truncate_range EXPORT_SYMBOL_GPL vmlinux 0x721c0f1b of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0x72216f5d path_noexec EXPORT_SYMBOL_GPL vmlinux 0x7235f73e pinconf_generic_dt_free_map EXPORT_SYMBOL_GPL vmlinux 0x723ec1de __devm_irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0x724a058d fsl_mc_object_allocate EXPORT_SYMBOL_GPL vmlinux 0x724fa06a xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7250c226 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x72501797 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x726261df sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x72671993 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x7269f6d6 xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0x726e4c78 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x72727bcd device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x727fcc3a __spi_register_driver EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu EXPORT_SYMBOL_GPL vmlinux 0x7288eb94 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x728ba748 gfn_to_pfn_prot EXPORT_SYMBOL_GPL vmlinux 0x7297eab6 irq_set_chip_and_handler_name EXPORT_SYMBOL_GPL vmlinux 0x729eb956 vp_modern_generation EXPORT_SYMBOL_GPL vmlinux 0x72a75ef1 rio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x72b7941e pm_runtime_barrier EXPORT_SYMBOL_GPL vmlinux 0x72bce764 hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x72bdcaa8 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups EXPORT_SYMBOL_GPL vmlinux 0x72d736c8 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x72daba1b gpiod_set_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x72ebf1b6 regulator_set_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x72f8b70b sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x73003bb8 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x72ffb498 inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x730519d4 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x730985eb eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x7306ef84 ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0x730e41ea irq_chip_release_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x731da4d7 dev_pm_opp_adjust_voltage EXPORT_SYMBOL_GPL vmlinux 0x731dc48b irq_setup_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x732036e9 fsl_mc_portal_allocate EXPORT_SYMBOL_GPL vmlinux 0x73242dcd cpu_set_feature EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x734a5bc7 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x73502752 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x735c267f clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x735eb8e4 crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0x73621075 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x73316752 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0x73319bf8 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x734f44c6 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x7361a264 nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0x7366f2c8 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x736e111b strp_process EXPORT_SYMBOL_GPL vmlinux 0x736e2730 __page_mapcount EXPORT_SYMBOL_GPL vmlinux 0x737a212c irq_setup_alt_chip EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x73812f29 perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0x7387aaf8 imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x7389f2df crypto_unregister_aeads EXPORT_SYMBOL_GPL vmlinux 0x738b7eb9 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x7394bc2c l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x73996b1d gpiochip_line_is_persistent EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73a8ffb6 devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x73b40cdc blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x73b97fb3 ata_host_register EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy EXPORT_SYMBOL_GPL vmlinux 0x73cae8b4 pci_platform_power_transition EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d072f5 kvm_get_kvm EXPORT_SYMBOL_GPL vmlinux 0x73d89f19 irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x73d8f161 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x73e7ff9f sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x7431878e sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x7422375a ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x74269348 dax_finish_sync_fault EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask EXPORT_SYMBOL_GPL vmlinux 0x743b99d8 xenmem_reservation_increase -EXPORT_SYMBOL_GPL vmlinux 0x743bf372 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x743e39a2 __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x744f605b security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x7465000d blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x7459256a xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x747710f9 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x747d2aa7 regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0x748b4f40 pcie_aspm_capable EXPORT_SYMBOL_GPL vmlinux 0x748ffca9 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x7492a26a blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x749d82c4 platform_device_register EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x74a6efa5 synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0x74acb2c3 usb_get_hcd EXPORT_SYMBOL_GPL vmlinux 0x74b05b3b of_k3_ringacc_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero @@ -22703,73 +22750,67 @@ EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden EXPORT_SYMBOL_GPL vmlinux 0x74fc2ea2 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x7500e78a crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x74ffd6fc __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x7501fef0 __regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0x750590bf rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0x75098445 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x750acc6b add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 EXPORT_SYMBOL_GPL vmlinux 0x75191389 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x751be828 cpuidle_register EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7553efa9 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x754c05d0 regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0x7581760b __clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0x7582aadb extcon_set_property_capability EXPORT_SYMBOL_GPL vmlinux 0x7586a84a pinctrl_utils_add_config EXPORT_SYMBOL_GPL vmlinux 0x7587986b synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x758a43fe k3_ringacc_get_ring_irq_num -EXPORT_SYMBOL_GPL vmlinux 0x758bf609 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x758aca3e bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy EXPORT_SYMBOL_GPL vmlinux 0x75a8bf38 fsl_mc_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x75adc3ea gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x75a98713 spi_replace_transfers EXPORT_SYMBOL_GPL vmlinux 0x75b2df77 noop_direct_IO EXPORT_SYMBOL_GPL vmlinux 0x75b43c50 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x75ba5329 of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x75bf0bbd dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x75c6263a devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x75c89b50 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x75c9d4b0 ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0x75cb1705 __pm_runtime_disable EXPORT_SYMBOL_GPL vmlinux 0x75cf6835 led_blink_set EXPORT_SYMBOL_GPL vmlinux 0x75d968ee cleanup_srcu_struct EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x75e5c767 kvm_vcpu_gfn_to_hva EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75ede3b9 tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store EXPORT_SYMBOL_GPL vmlinux 0x75f765cc irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0x75fa2cb3 mc_send_command EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter EXPORT_SYMBOL_GPL vmlinux 0x75ff916c thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0x76299b1b xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x762accbe regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x76059aa4 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7623ec4b perf_aux_output_skip EXPORT_SYMBOL_GPL vmlinux 0x764de14d __fput_sync EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x76506ced raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x7656fe89 tcp_twsk_destructor EXPORT_SYMBOL_GPL vmlinux 0x76581bca pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x76654fd1 crypto_register_aead EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x767af057 wakeup_source_create EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76860896 crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0x76891094 __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x768b54df device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x768c6bc6 __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x768d717b regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x7698905b inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0x7699e060 syscon_regmap_lookup_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic EXPORT_SYMBOL_GPL vmlinux 0x769dec6a srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x76a008f0 phy_driver_is_genphy_10g EXPORT_SYMBOL_GPL vmlinux 0x76a3b365 key_type_trusted EXPORT_SYMBOL_GPL vmlinux 0x76b08df4 devm_regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x76b8186c regcache_mark_dirty EXPORT_SYMBOL_GPL vmlinux 0x76c0c759 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x76c7f02b bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x76d63f45 tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76e36508 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x76e6c57a ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x76e7cefb receive_fd EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x76eae4b2 __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7707afcd hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0x770907a3 phy_set_media EXPORT_SYMBOL_GPL vmlinux 0x7712536d acpi_device_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler @@ -22777,50 +22818,51 @@ EXPORT_SYMBOL_GPL vmlinux 0x771462d1 mmu_interval_notifier_remove 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 0x773f5cef sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x77467c7f add_to_page_cache_lru EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x7753b4e0 net_selftest EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775dfc30 ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0x775fac9c __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x7779b4a1 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x7766f5b9 __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0x778494a3 dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x77850fa0 platform_irq_count EXPORT_SYMBOL_GPL vmlinux 0x77877d68 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x778787fe inet_csk_get_port EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read EXPORT_SYMBOL_GPL vmlinux 0x779f7806 irq_domain_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b22588 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x77b64d23 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x77c7d1e4 crypto_stats_akcipher_verify EXPORT_SYMBOL_GPL vmlinux 0x77d57f9b usb_sg_wait EXPORT_SYMBOL_GPL vmlinux 0x77d84a67 mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x77e35e19 regulator_get_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77f3e241 rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0x7806862a serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x780de0db tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0x781487f8 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x78255bc3 wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0x782af790 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x782d2f69 dma_buf_map_attachment EXPORT_SYMBOL_GPL vmlinux 0x783ee20e fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x78461782 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7858ce14 platform_irq_count EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available EXPORT_SYMBOL_GPL vmlinux 0x7860d8fe __blk_req_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0x78630bc8 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x786cc698 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x78669b31 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x786ac9ed bio_start_io_acct_time EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress EXPORT_SYMBOL_GPL vmlinux 0x78822b47 mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty EXPORT_SYMBOL_GPL vmlinux 0x78928389 cdrom_read_tocentry EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x789ecd11 nf_checksum EXPORT_SYMBOL_GPL vmlinux 0x78a797d1 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x78a9679b tegra_xusb_padctl_legacy_remove EXPORT_SYMBOL_GPL vmlinux 0x78bd03ca tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x78c4517f spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x78bd61b7 vfs_write +EXPORT_SYMBOL_GPL vmlinux 0x78c3dbb4 sdio_enable_func EXPORT_SYMBOL_GPL vmlinux 0x78d561b4 genphy_c45_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match EXPORT_SYMBOL_GPL vmlinux 0x78f13765 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x790875f0 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x7909a24d regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x79138928 blk_rq_err_bytes EXPORT_SYMBOL_GPL vmlinux 0x79152b50 usb_of_get_device_node EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure EXPORT_SYMBOL_GPL vmlinux 0x7919ced9 acct_bioset_init @@ -22833,148 +22875,146 @@ 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 0x7951d6f1 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x7958c08e ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x796eb434 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x7953456c ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x79729891 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x79794c34 crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0x7986cbfc kill_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev EXPORT_SYMBOL_GPL vmlinux 0x798ba56a dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x798d6e71 sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0x7999cde3 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x79a77e46 __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79d6ece9 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x79bf863f inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x79bfac9c xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x79d57116 vfs_read EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park EXPORT_SYMBOL_GPL vmlinux 0x79eea92c extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x79f49502 regmap_fields_read EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x7a195f0a __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x7a2a2b67 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x7a2f5580 of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x7a31c301 pci_bus_add_device EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x7a34e275 thermal_zone_device_disable EXPORT_SYMBOL_GPL vmlinux 0x7a3d6def exportfs_decode_fh_raw EXPORT_SYMBOL_GPL vmlinux 0x7a3dff23 bsg_job_done EXPORT_SYMBOL_GPL vmlinux 0x7a3fa62d __hwspin_lock_timeout EXPORT_SYMBOL_GPL vmlinux 0x7a54a55e irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0x7a553bd5 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x7a5aff02 l3mdev_table_lookup_unregister EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a7a55ab devlink_port_register EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie EXPORT_SYMBOL_GPL vmlinux 0x7a83fd61 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x7a8c8d08 mmc_get_ext_csd 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 0x7aa269e8 devlink_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0x7aa5170e of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x7aae8e9e skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x7ab085ac ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0x7ab5ea82 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x7abe8c24 raw_hash_sk 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 0x7ad2c64c k3_udma_glue_release_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x7adb0cc3 nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0x7add2d1a hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow EXPORT_SYMBOL_GPL vmlinux 0x7b080289 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x7b0c16c4 perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0x7b1e6196 ata_sff_port_ops EXPORT_SYMBOL_GPL vmlinux 0x7b2163bd HYPERVISOR_tmem_op -EXPORT_SYMBOL_GPL vmlinux 0x7b25652c __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x7b2c4ada sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0x7b31a83b screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x7b356820 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x7b41a792 regulator_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x7b478025 __irq_resolve_mapping EXPORT_SYMBOL_GPL vmlinux 0x7b498594 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x7b498aa1 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x7b4beff1 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x7b4dd924 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x7b4fed7c netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi EXPORT_SYMBOL_GPL vmlinux 0x7b59926a tty_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b691872 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x7b66efa8 crypto_stats_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x7b6c7fff nvdimm_clear_poison EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler EXPORT_SYMBOL_GPL vmlinux 0x7b70c6dc component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x7b756b00 ata_scsi_slave_destroy EXPORT_SYMBOL_GPL vmlinux 0x7b779f34 class_find_device EXPORT_SYMBOL_GPL vmlinux 0x7b8b938e of_prop_next_u32 EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b929db5 nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x7b96a59b bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x7b92f6ec strp_stop EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7b97c613 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x7b9b502d netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x7b9c677b security_path_rmdir EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bb93945 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x7bc3337d sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x7bb5ee6e __traceiter_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x7bc42e4b serial8250_rx_dma_flush EXPORT_SYMBOL_GPL vmlinux 0x7bcaec9d genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x7bcd379c kvm_vcpu_gfn_to_hva EXPORT_SYMBOL_GPL vmlinux 0x7bdad243 dw8250_setup_port EXPORT_SYMBOL_GPL vmlinux 0x7be3433c pciserial_init_ports EXPORT_SYMBOL_GPL vmlinux 0x7bfee153 of_phy_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x7c099c4d balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x7c1e336b device_link_del EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0x7c2da2f8 rio_request_dma EXPORT_SYMBOL_GPL vmlinux 0x7c318736 edac_mc_add_mc_with_groups EXPORT_SYMBOL_GPL vmlinux 0x7c39dcf8 xenbus_read_otherend_details EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put EXPORT_SYMBOL_GPL vmlinux 0x7c4ad0ab of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x7c4d76e7 scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0x7c59b6fe tegra_bpmp_mrq_is_supported EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator EXPORT_SYMBOL_GPL vmlinux 0x7c626556 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7c6853a2 spi_add_device EXPORT_SYMBOL_GPL vmlinux 0x7c80e4d9 of_icc_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x7c911529 xenbus_dev_is_online EXPORT_SYMBOL_GPL vmlinux 0x7c916167 fat_add_entries EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0x7c9668bc dax_iomap_fault EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9efe2e crypto_stats_akcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence EXPORT_SYMBOL_GPL vmlinux 0x7ca85256 ms_hyperv EXPORT_SYMBOL_GPL vmlinux 0x7ca9097a component_master_add_with_match EXPORT_SYMBOL_GPL vmlinux 0x7caf388f sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7cb40a04 of_clk_get_parent_count EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7cc352ef rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x7ccde7a2 of_clk_del_provider EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats EXPORT_SYMBOL_GPL vmlinux 0x7cd50609 tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ce6cfd5 devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x7ce6ee59 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x7ce7812e spi_split_transfers_maxsize EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf009ca crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7cfb3615 gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize EXPORT_SYMBOL_GPL vmlinux 0x7d154fda do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0x7d1af3cf usb_hcd_resume_root_hub EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn EXPORT_SYMBOL_GPL vmlinux 0x7d2045e4 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x7d29e46a devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0x7d3f6991 rio_local_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release EXPORT_SYMBOL_GPL vmlinux 0x7d491683 free_iova_fast EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d68943d mmput -EXPORT_SYMBOL_GPL vmlinux 0x7d7b0b7e regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x7d828857 crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0x7d893e96 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x7db34e95 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d900cf0 regulator_set_current_limit EXPORT_SYMBOL_GPL vmlinux 0x7dbf114a extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x7dbfbdc0 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0x7dc1ba2b ahci_set_em_messages EXPORT_SYMBOL_GPL vmlinux 0x7dc7ddb3 percpu_up_write EXPORT_SYMBOL_GPL vmlinux 0x7dcacd81 usb_register_dev EXPORT_SYMBOL_GPL vmlinux 0x7dd06222 of_phy_put 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 0x7df46f62 raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0x7e055596 fsl_mc_bus_dpbp_type EXPORT_SYMBOL_GPL vmlinux 0x7e063b06 blk_ksm_register -EXPORT_SYMBOL_GPL vmlinux 0x7e178022 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x7e14edaa unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7e1e899b cpufreq_driver_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x7e2251a0 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x7e3679b7 ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e45f06e ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0x7e4ef0ed dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x7e548db4 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x7e567aa4 __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time EXPORT_SYMBOL_GPL vmlinux 0x7e6435f0 __hwspin_unlock @@ -22984,155 +23024,155 @@ EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0x7e7b0bec __dax_driver_register EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu EXPORT_SYMBOL_GPL vmlinux 0x7e838b37 tegra_bpmp_transfer_atomic -EXPORT_SYMBOL_GPL vmlinux 0x7e862195 sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7e91e4fa sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x7e9e1e2c ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x7e9e2f21 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x7e92d2c7 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7ea42859 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x7ea6c6d1 sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x7eaf4386 device_match_name EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x7eb1ef21 fat_search_long EXPORT_SYMBOL_GPL vmlinux 0x7eb62f55 phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x7ed5757b register_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7f02a8fb crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x7f02e849 device_release_driver EXPORT_SYMBOL_GPL vmlinux 0x7f0a7654 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x7f1834ec crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0x7f19091e devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x7f1ebfd1 __root_device_register EXPORT_SYMBOL_GPL vmlinux 0x7f2a4690 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x7f2e5f74 sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x7f3e662a device_create -EXPORT_SYMBOL_GPL vmlinux 0x7f44e22b pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x7f439f78 fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7f6d24f4 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7f73b21f gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x7f7ca73d cpufreq_register_driver EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f8da1f7 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x7fa42e64 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x7f88d0cb devlink_region_snapshot_id_put EXPORT_SYMBOL_GPL vmlinux 0x7fa74fd7 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fa833d7 sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fcce5b1 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x7fda3205 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x7fefcb6c __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement +EXPORT_SYMBOL_GPL vmlinux 0x7ffea490 gpiod_to_irq EXPORT_SYMBOL_GPL vmlinux 0x800b3ec8 of_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail -EXPORT_SYMBOL_GPL vmlinux 0x801d00a2 inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x802458ba rio_request_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0x802f4b1c tpm_chip_stop EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical EXPORT_SYMBOL_GPL vmlinux 0x80419918 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x8046bc66 devlink_resource_register EXPORT_SYMBOL_GPL vmlinux 0x8051e2af qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x805389f1 ata_sas_port_stop EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put +EXPORT_SYMBOL_GPL vmlinux 0x8058e755 crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0x806327ea imx_clk_hw_cpu EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x808e3f43 devlink_register EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested EXPORT_SYMBOL_GPL vmlinux 0x80b26a5d tty_port_tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0x80b37047 pm_genpd_remove EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d532a8 ata_wait_register EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80d78bb0 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x80d7ecfd nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0x80dd0bbb pm_generic_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0x80ddcc8c of_pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0x80eaba7d of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x80ed4a8b devlink_port_register EXPORT_SYMBOL_GPL vmlinux 0x80f8fc85 dw_pcie_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x80fce500 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x81143694 stmpe_set_altfunc EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify EXPORT_SYMBOL_GPL vmlinux 0x8120a30f devm_power_supply_register EXPORT_SYMBOL_GPL vmlinux 0x81274479 dpcon_enable -EXPORT_SYMBOL_GPL vmlinux 0x812950ce regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x81313754 spi_new_device EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova EXPORT_SYMBOL_GPL vmlinux 0x8149cc90 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0x814f457a skb_segment EXPORT_SYMBOL_GPL vmlinux 0x8150dd24 debugfs_print_regs32 EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x816cda48 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x817e5340 wm8350_device_init EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence EXPORT_SYMBOL_GPL vmlinux 0x81818994 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x81892902 ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0x81932899 pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x819dea4c xdp_rxq_info_reg EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init EXPORT_SYMBOL_GPL vmlinux 0x81a84885 devm_usb_get_phy_by_node EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81ba9f8b icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x81ccbf98 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x81d260ed switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x81cf5129 ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x81da5f67 regulator_map_voltage_iterate EXPORT_SYMBOL_GPL vmlinux 0x81e5c2af ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0x81ef78d0 of_get_named_gpio_flags -EXPORT_SYMBOL_GPL vmlinux 0x81f03c67 cpuidle_register EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget EXPORT_SYMBOL_GPL vmlinux 0x8219f736 phy_get EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x8229970f thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x823a22d8 blk_queue_can_use_dma_map_merging EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8242c6d7 nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x8246ef80 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x8249f3b3 skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0x8254bc3b phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x8258bf9c fwnode_handle_put EXPORT_SYMBOL_GPL vmlinux 0x825dfc12 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x825fa233 ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0x8264e94b scsi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x826cca2a acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x8271f85f fib6_check_nexthop EXPORT_SYMBOL_GPL vmlinux 0x827bb02e virtio_break_device EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog EXPORT_SYMBOL_GPL vmlinux 0x82833a8f hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x8287e34a icc_enable EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward EXPORT_SYMBOL_GPL vmlinux 0x8297f69e acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x829bceb4 device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0x829eb047 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x82a495e9 __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x82a4d9e1 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x829fc73c eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x82a94a95 irq_alloc_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x82aff762 input_ff_create EXPORT_SYMBOL_GPL vmlinux 0x82b35bea edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x82b9f3dd eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0x82badb89 pci_epf_free_space EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x82c8a282 alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0x82c96094 tegra_mc_write_emem_configuration EXPORT_SYMBOL_GPL vmlinux 0x82c999f4 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x82d439f5 ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0x82d545ae devm_tegra_core_dev_init_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x82d5daa5 ata_wait_register EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82fe4473 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x831ae7de __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x82f6b008 strp_init EXPORT_SYMBOL_GPL vmlinux 0x83202334 alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x83226240 crypto_alloc_acomp_node EXPORT_SYMBOL_GPL vmlinux 0x8328e685 clockevents_config_and_register EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8348fc4e dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x8349c6e1 fwnode_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x834bb25b rockchip_pcie_deinit_phys -EXPORT_SYMBOL_GPL vmlinux 0x834e7efe regulator_set_current_limit EXPORT_SYMBOL_GPL vmlinux 0x834ff60e start_poll_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x8362990d device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x837c46d7 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x8385b463 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x836a3491 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x837f9c91 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8385474c sched_trace_rq_avg_dl EXPORT_SYMBOL_GPL vmlinux 0x838f7ebf __devm_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x838f9177 mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x8393de4f preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x83979fd8 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x83992296 gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0x83a021ee devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x83b3ac38 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x83a2a8ec scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x83c8ad42 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x83cabe30 nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0x83d0b44b imx_pinctrl_parse_pin_scu -EXPORT_SYMBOL_GPL vmlinux 0x83e541da platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0x83e9966f pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0x83f1405b irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x84053096 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x83f26ab0 regulator_sync_voltage EXPORT_SYMBOL_GPL vmlinux 0x840a6ba6 usb_interrupt_msg EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv EXPORT_SYMBOL_GPL vmlinux 0x8410a6da xenbus_probe_node EXPORT_SYMBOL_GPL vmlinux 0x84110bf1 pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x8422633c thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype EXPORT_SYMBOL_GPL vmlinux 0x842b4efe spi_mem_dirmap_read EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs @@ -23143,57 +23183,56 @@ EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy EXPORT_SYMBOL_GPL vmlinux 0x84627fed ata_bmdma_stop EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x84683349 sdio_release_irq EXPORT_SYMBOL_GPL vmlinux 0x846e7783 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x847635cd blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0x847d277f pci_ecam_map_bus -EXPORT_SYMBOL_GPL vmlinux 0x847d6c8f get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0x848926c7 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8495526e sdio_readw EXPORT_SYMBOL_GPL vmlinux 0x849bfc01 tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0x84a47f84 dpbp_get_attributes EXPORT_SYMBOL_GPL vmlinux 0x84a7df42 iomap_seek_hole EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert EXPORT_SYMBOL_GPL vmlinux 0x84ac6200 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x84b4524c blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0x84d2e34b sbitmap_bitmap_show EXPORT_SYMBOL_GPL vmlinux 0x84d34d1f meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x84d97624 zap_vma_ptes EXPORT_SYMBOL_GPL vmlinux 0x84e9b01d virtio_config_changed EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x84f2065b ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x8506d143 show_class_attr_string EXPORT_SYMBOL_GPL vmlinux 0x8507b175 md_allow_write EXPORT_SYMBOL_GPL vmlinux 0x8509fe7f devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x850b3d68 get_device EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy EXPORT_SYMBOL_GPL vmlinux 0x850fdae2 mtk_pinconf_drive_set -EXPORT_SYMBOL_GPL vmlinux 0x850fe411 tcp_sendpage_locked EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8522f282 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x85436276 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x85356378 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x85506d16 clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put EXPORT_SYMBOL_GPL vmlinux 0x85545357 iommu_detach_group EXPORT_SYMBOL_GPL vmlinux 0x855601c8 serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x85586b22 ehci_handshake EXPORT_SYMBOL_GPL vmlinux 0x8563403c genphy_c45_aneg_done EXPORT_SYMBOL_GPL vmlinux 0x856467a8 ata_bmdma_post_internal_cmd EXPORT_SYMBOL_GPL vmlinux 0x8578a975 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x857d5003 fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x85b50c6f devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0x85bdb23f __class_register EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0x85d3400d ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0x85de5bad balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0x85e8b923 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x85e96767 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x85ec36ae shmem_file_setup EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x85f03a20 rtc_initialize_alarm EXPORT_SYMBOL_GPL vmlinux 0x85fa3fab fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0x85fcc32a sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0x86078120 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0x860f84d4 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x85fa51a2 kvm_vcpu_wake_up EXPORT_SYMBOL_GPL vmlinux 0x86216a09 tps65912_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array EXPORT_SYMBOL_GPL vmlinux 0x862f12be devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x863b6006 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x8632bd4d __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0x863d4aea of_hwspin_lock_get_id_byname EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start EXPORT_SYMBOL_GPL vmlinux 0x865c3a5e tpm1_getcap @@ -23205,52 +23244,52 @@ EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid EXPORT_SYMBOL_GPL vmlinux 0x86708ced mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0x86766103 fsl_mc_bus_dpdcei_type EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x86804fd2 ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868a22ff platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x868c6ac7 ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0x8694e0c3 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x869a0d11 devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x869f3424 extcon_set_state EXPORT_SYMBOL_GPL vmlinux 0x86a126b5 blk_ksm_init_passthrough EXPORT_SYMBOL_GPL vmlinux 0x86a5a114 scsi_dh_activate EXPORT_SYMBOL_GPL vmlinux 0x86a868e9 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x86ac3fb7 i2c_recover_bus EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0x86c478c3 platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x86cc1cef md_start EXPORT_SYMBOL_GPL vmlinux 0x86d5594f nvdimm_in_overwrite EXPORT_SYMBOL_GPL vmlinux 0x86d7882b blk_ksm_intersect_modes EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x86ebbcde icc_sync_state EXPORT_SYMBOL_GPL vmlinux 0x86f0bc25 cros_ec_get_sensor_count EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue EXPORT_SYMBOL_GPL vmlinux 0x86fe57f8 dev_pm_domain_attach EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x87347f6c ahci_platform_init_host EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table EXPORT_SYMBOL_GPL vmlinux 0x8787f068 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x879d7b13 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x87a981a0 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x87b7258e platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x87bcdde9 wm8350_reg_write EXPORT_SYMBOL_GPL vmlinux 0x87bede99 component_add +EXPORT_SYMBOL_GPL vmlinux 0x87cd76e8 __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0x87ce0be2 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x87d9ef17 register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x8802cb1e led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x88040bb8 vfs_submount EXPORT_SYMBOL_GPL vmlinux 0x8810e36e pci_bridge_emul_conf_read EXPORT_SYMBOL_GPL vmlinux 0x8811f87c acpi_get_first_physical_node EXPORT_SYMBOL_GPL vmlinux 0x881bceb8 acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x881ea116 kvm_io_bus_write EXPORT_SYMBOL_GPL vmlinux 0x8821d228 cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0x882affe4 kvm_map_gfn +EXPORT_SYMBOL_GPL vmlinux 0x882500a0 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x88278192 ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x8834a77a divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x884a3f05 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x884c8c5d clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit EXPORT_SYMBOL_GPL vmlinux 0x885733cc regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8857e415 mmc_get_ext_csd EXPORT_SYMBOL_GPL vmlinux 0x885f916c gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x886012de regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x8860baaa gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x8874300a device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x887cc740 __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x887cfad9 devm_of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer EXPORT_SYMBOL_GPL vmlinux 0x88a7e263 fsl_mc_device_add @@ -23258,95 +23297,97 @@ EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x88b77782 usb_add_phy_dev EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ +EXPORT_SYMBOL_GPL vmlinux 0x88eb4cea inet6_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x88f37636 input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0x88f7781e inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x890853c0 path_noexec 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 0x891c91a5 devlink_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89294f68 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x892a5ec4 perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x89372532 ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x893c996c regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x893cc155 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x893e1b28 mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0x89441a6b pci_pasid_features EXPORT_SYMBOL_GPL vmlinux 0x89460ff6 of_thermal_is_trip_valid 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 0x895a9b9e dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0x8965a522 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x896e09f0 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x8963cebf dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x8974f0b6 pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0x897e81cc debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x89815bc0 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x897f64a8 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x898b6cf5 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x8990d127 __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0x899bde25 component_bind_all EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall EXPORT_SYMBOL_GPL vmlinux 0x89a4dcb2 pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0x89ad9b75 __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key EXPORT_SYMBOL_GPL vmlinux 0x89b30dc9 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x89b800d7 crypto_shash_setkey EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event EXPORT_SYMBOL_GPL vmlinux 0x89ceeac8 public_key_subtype EXPORT_SYMBOL_GPL vmlinux 0x89e17512 of_device_request_module EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89e378d4 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x89e458e0 icc_enable EXPORT_SYMBOL_GPL vmlinux 0x89f2d2c0 bind_interdomain_evtchn_to_irq_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x89f9ba9a of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x8a02b0f2 ata_scsi_unlock_native_capacity EXPORT_SYMBOL_GPL vmlinux 0x8a06a927 mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x8a08ac8b user_read EXPORT_SYMBOL_GPL vmlinux 0x8a09c347 pci_epc_set_msix EXPORT_SYMBOL_GPL vmlinux 0x8a177373 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x8a1de465 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8a23bc9a net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x8a35e6f9 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x8a3894f5 devlink_dpipe_table_resource_set EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low EXPORT_SYMBOL_GPL vmlinux 0x8a42a98a dev_pm_opp_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler EXPORT_SYMBOL_GPL vmlinux 0x8a4aa167 of_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0x8a553038 fuse_request_end EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a5b9be1 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x8a5c29de vfs_getxattr_alloc EXPORT_SYMBOL_GPL vmlinux 0x8a608f9c blk_mq_start_stopped_hw_queue EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a6588a9 tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0x8a72cb1d sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x8a7d26e2 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x8a7a5f65 __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0x8a7d82af blkdev_report_zones EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a9304ab pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x8a96cec7 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x8aaa73d8 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x8aab8b1b ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0x8aac22a7 bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x8ab7b353 ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x8abaa710 dev_pm_opp_detach_genpd EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abd253c vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x8acb821e kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x8aeb5d7b lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x8af8e246 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x8ae4e078 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x8aeec1a5 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x8af882df ahci_pmp_retry_srst_ops EXPORT_SYMBOL_GPL vmlinux 0x8af9f83a scsi_autopm_put_device EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match EXPORT_SYMBOL_GPL vmlinux 0x8b18d5cb unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x8b1a5954 ata_sas_port_destroy EXPORT_SYMBOL_GPL vmlinux 0x8b20f92a tty_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x8b2854b2 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x8b2fcda8 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x8b2d4288 of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x8b30313c xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x8b3f018e regulator_set_voltage EXPORT_SYMBOL_GPL vmlinux 0x8b50510f extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x8b5797ef raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release +EXPORT_SYMBOL_GPL vmlinux 0x8b71ddea ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x8b789bb9 devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x8b7cc255 crypto_alloc_shash EXPORT_SYMBOL_GPL vmlinux 0x8b8445b8 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0x8b97f547 spi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x8b9cef07 pm_runtime_autosuspend_expiration EXPORT_SYMBOL_GPL vmlinux 0x8b9f3121 ata_sff_qc_fill_rtf EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op EXPORT_SYMBOL_GPL vmlinux 0x8ba9adab of_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x8baaa120 iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0x8bb0778e device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8baef7ad perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0x8bc05bf0 usb_put_dev EXPORT_SYMBOL_GPL vmlinux 0x8bc333ae led_put -EXPORT_SYMBOL_GPL vmlinux 0x8bd5aaf4 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x8bd5b882 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x8bc83b5a sdio_writeb_readb EXPORT_SYMBOL_GPL vmlinux 0x8be514c4 dm_table_set_type EXPORT_SYMBOL_GPL vmlinux 0x8bef716f meson_clk_dualdiv_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn @@ -23355,11 +23396,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x8c03c3b6 efivar_entry_set EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue EXPORT_SYMBOL_GPL vmlinux 0x8c09ab6a rockchip_register_restart_notifier EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c2767ac regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x8c479bc1 devm_hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c49c136 devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0x8c564694 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x8c49c94f regulator_suspend_enable EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status EXPORT_SYMBOL_GPL vmlinux 0x8c77a5cf md_find_rdev_rcu EXPORT_SYMBOL_GPL vmlinux 0x8c867a14 pci_status_get_and_clear_errors @@ -23367,59 +23405,57 @@ EXPORT_SYMBOL_GPL vmlinux 0x8c88643c acpi_subsys_freeze EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable EXPORT_SYMBOL_GPL vmlinux 0x8ccde5d1 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x8cd36c1d kvm_vcpu_unmap EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8ce5759e task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x8cec38d7 devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x8d01270b edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d01a5ab xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x8d183e5a scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x8d1d8224 platform_get_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d2e48de dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x8d31c1dd is_swiotlb_active EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d4346e5 scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0x8d47385e perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x8d3e5989 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8d3f14d5 crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0x8d4ad3fa __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x8d5fb277 __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x8d64f24b devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x8d6b6ad9 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x8d74bbe6 of_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major EXPORT_SYMBOL_GPL vmlinux 0x8d7ff177 sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x8d83951c spi_busnum_to_master EXPORT_SYMBOL_GPL vmlinux 0x8d850e6e pci_sriov_configure_simple EXPORT_SYMBOL_GPL vmlinux 0x8d88b3fa devm_init_badblocks EXPORT_SYMBOL_GPL vmlinux 0x8d88ee64 sbitmap_queue_wake_up EXPORT_SYMBOL_GPL vmlinux 0x8d8de28e dw_pcie_own_conf_map_bus EXPORT_SYMBOL_GPL vmlinux 0x8da0e8a7 xenbus_dev_remove EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8dba7368 scsi_flush_work EXPORT_SYMBOL_GPL vmlinux 0x8dba9b97 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x8dbb2716 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call -EXPORT_SYMBOL_GPL vmlinux 0x8dc20be9 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x8dd11679 sprd_pinctrl_shutdown EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0x8ddac327 dm_internal_suspend_fast EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x8e07b61b platform_device_add_resources EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local EXPORT_SYMBOL_GPL vmlinux 0x8e1b0c05 rockchip_pcie_get_phys EXPORT_SYMBOL_GPL vmlinux 0x8e1c691e of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x8e1cc408 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x8e3ebd7c bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x8e2a717f regulator_get_mode EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep EXPORT_SYMBOL_GPL vmlinux 0x8e4bf17a fsnotify_get_group EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e4f64b7 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x8e5523c1 tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0x8e619e90 tps80031_ext_power_req_config EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars EXPORT_SYMBOL_GPL vmlinux 0x8e748f92 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x8e7b55c7 bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc EXPORT_SYMBOL_GPL vmlinux 0x8e99c0a1 led_blink_set_oneshot EXPORT_SYMBOL_GPL vmlinux 0x8ea31007 pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0x8ead17f4 scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8eae218a ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x8eafc324 extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0x8ec3567a find_vpid EXPORT_SYMBOL_GPL vmlinux 0x8ed216cf dev_pm_enable_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x8ed36d57 devm_regulator_get EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp @@ -23428,112 +23464,106 @@ EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features EXPORT_SYMBOL_GPL vmlinux 0x8f056936 fsl_mc_bus_dpmac_type EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0f25ba devlink_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0x8f14599b dev_coredumpm EXPORT_SYMBOL_GPL vmlinux 0x8f1b95b9 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x8f241746 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x8f2822e7 __page_file_mapping 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 0x8f489ef0 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0x8f5887e8 security_path_symlink EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x8f728689 tpm_send EXPORT_SYMBOL_GPL vmlinux 0x8f745287 pci_ecam_free EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool EXPORT_SYMBOL_GPL vmlinux 0x8f7f3879 acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x8f82e7f9 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x8f83425f fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0x8f960a46 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x8f9c70e3 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x8fa64b4f stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x8fa92d87 devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid EXPORT_SYMBOL_GPL vmlinux 0x8fb6aab9 of_pci_get_devfn EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fc91ecb ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x8fcb1696 nvdimm_bus_add_badrange EXPORT_SYMBOL_GPL vmlinux 0x8fdd255d usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x8fe2656b wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x8fee6afd bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0x8ff3c68e dpbp_disable EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x90061803 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x901dc90b ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0x90300dbd usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x9032a0cc mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x9039db06 fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903dd0bd device_remove_file EXPORT_SYMBOL_GPL vmlinux 0x903e4e20 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x903fdeca devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9040ede5 scsi_build_sense EXPORT_SYMBOL_GPL vmlinux 0x9043fcef pcie_port_bus_type EXPORT_SYMBOL_GPL vmlinux 0x9045e5e2 fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0x90614d83 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x9054eca9 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x9063657d fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x90759cb8 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x9078923e security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x90846a80 perf_aux_output_end EXPORT_SYMBOL_GPL vmlinux 0x908e61e7 xhci_ext_cap_init EXPORT_SYMBOL_GPL vmlinux 0x908f1f30 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x9095068c regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90aca80b crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes EXPORT_SYMBOL_GPL vmlinux 0x90ae41d2 acpi_processor_get_performance_info EXPORT_SYMBOL_GPL vmlinux 0x90b12ea0 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x90b317d9 devlink_port_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io -EXPORT_SYMBOL_GPL vmlinux 0x90bec90e kvm_irq_has_notifier EXPORT_SYMBOL_GPL vmlinux 0x90c1a592 vp_modern_queue_address EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90d32012 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x90d7c69e page_cache_ra_unbounded EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x90de79a5 get_pid_task EXPORT_SYMBOL_GPL vmlinux 0x90e64609 devfreq_event_get_edev_count EXPORT_SYMBOL_GPL vmlinux 0x90e6608c cpufreq_dbs_governor_limits EXPORT_SYMBOL_GPL vmlinux 0x90e8cd4f blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x90f1d30e gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x9102de43 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x90f968e7 xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf EXPORT_SYMBOL_GPL vmlinux 0x91103ae5 virtio_max_dma_size EXPORT_SYMBOL_GPL vmlinux 0x9116dae7 mtk_is_virt_gpio EXPORT_SYMBOL_GPL vmlinux 0x911837a7 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x911e0071 scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0x9122bc1d usb_bulk_msg EXPORT_SYMBOL_GPL vmlinux 0x912570ac sysfs_remove_file_from_group EXPORT_SYMBOL_GPL vmlinux 0x91279cc9 tpm_chip_register EXPORT_SYMBOL_GPL vmlinux 0x912fd191 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x913abccf kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x91486f76 netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0x914a0f3e fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x914b8ac1 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x91535fa8 ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x915475df iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x91724f98 kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0x9175a3f3 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x917f4298 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x917c2895 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x919a35e2 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x91a9d6bf cpufreq_freq_transition_begin EXPORT_SYMBOL_GPL vmlinux 0x91b6d9ea umd_cleanup_helper EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist -EXPORT_SYMBOL_GPL vmlinux 0x91e35e02 phy_led_triggers_unregister EXPORT_SYMBOL_GPL vmlinux 0x91e67cd2 kvm_arch_ptp_get_crosststamp EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean EXPORT_SYMBOL_GPL vmlinux 0x91efdc8e devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9202a8a4 fwnode_graph_get_next_endpoint EXPORT_SYMBOL_GPL vmlinux 0x9203d3bc of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x92099d3d devlink_region_snapshot_id_put EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl EXPORT_SYMBOL_GPL vmlinux 0x921333ac kthread_flush_work EXPORT_SYMBOL_GPL vmlinux 0x921aa535 tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x921cfd42 device_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x9222c2f4 usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0x9227b4b1 ata_bmdma_port_intr EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x924e6fe0 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x9260137a ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x925c5009 xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs EXPORT_SYMBOL_GPL vmlinux 0x927bad28 set_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0x928ebcd4 register_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0x92923feb pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9293a6f7 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x9299b4bc netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x929cf5a8 put_device +EXPORT_SYMBOL_GPL vmlinux 0x92a1dba0 trace_output_call EXPORT_SYMBOL_GPL vmlinux 0x92adbdc0 spi_mem_dirmap_write EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg EXPORT_SYMBOL_GPL vmlinux 0x92c21285 serial8250_rx_chars @@ -23541,10 +23571,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read EXPORT_SYMBOL_GPL vmlinux 0x92df28a5 loop_backing_file EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92f0ada2 skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0x92f866d1 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x930aa08d skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring +EXPORT_SYMBOL_GPL vmlinux 0x9310bd0a set_primary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x931940aa posix_acl_access_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0x931a7a92 of_genpd_add_subdomain EXPORT_SYMBOL_GPL vmlinux 0x931af40b __percpu_down_read @@ -23556,105 +23585,105 @@ EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x934d3d74 do_unregister_con_driver EXPORT_SYMBOL_GPL vmlinux 0x93554f76 pcc_mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x935eef76 split_page +EXPORT_SYMBOL_GPL vmlinux 0x93787dea clk_mux_determine_rate_flags EXPORT_SYMBOL_GPL vmlinux 0x93828091 clean_record_shared_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x938f5ff8 dpbp_open -EXPORT_SYMBOL_GPL vmlinux 0x9398c537 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x93b53f9f fwnode_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x93b6ec10 devm_gpiod_get_from_of_node EXPORT_SYMBOL_GPL vmlinux 0x93b9c413 devm_namespace_enable EXPORT_SYMBOL_GPL vmlinux 0x93be1095 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x93c36cb8 __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93d28d2e bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0x93d48495 cpufreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x9406d423 ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x940b1a08 pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x941b810a vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb EXPORT_SYMBOL_GPL vmlinux 0x941d9db3 rio_release_dma EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x942f95b6 device_phy_find_device EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x943e2f21 fwnode_device_is_available EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event EXPORT_SYMBOL_GPL vmlinux 0x94555109 rio_map_inb_region EXPORT_SYMBOL_GPL vmlinux 0x9458258f nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x945ca4f6 regulator_suspend_disable EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock -EXPORT_SYMBOL_GPL vmlinux 0x946a8f90 nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x948f46ae fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x9490a16f vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x947a160f crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0x9498e7bd generic_online_page -EXPORT_SYMBOL_GPL vmlinux 0x949b0521 kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a47367 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x94a1632c apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0x94abe615 blkg_rwstat_recursive_sum EXPORT_SYMBOL_GPL vmlinux 0x94c40280 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x94c87e95 crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0x94caf7f5 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x94cf87b2 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x94d1f21b icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0x94dd71af __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x94e3b5be ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x94e5fd36 nf_route EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi +EXPORT_SYMBOL_GPL vmlinux 0x94e79211 spi_alloc_device EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x94f4522e bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0x9501fef0 bus_create_file EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread EXPORT_SYMBOL_GPL vmlinux 0x95118315 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x9512de49 icc_get +EXPORT_SYMBOL_GPL vmlinux 0x95152b9a __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x9515dbae pci_load_saved_state EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg EXPORT_SYMBOL_GPL vmlinux 0x951c0a40 register_acpi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x9524fbe7 usb_driver_claim_interface EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952df297 __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0x952e962a devm_rpi_firmware_get EXPORT_SYMBOL_GPL vmlinux 0x95329516 tpm2_get_cc_attrs_tbl EXPORT_SYMBOL_GPL vmlinux 0x953ad101 spi_mem_adjust_op_size EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds EXPORT_SYMBOL_GPL vmlinux 0x953e7fed hisi_clk_register_phase EXPORT_SYMBOL_GPL vmlinux 0x9559031d pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0x9559b9b9 gpiochip_irq_unmap EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x9573b223 devlink_port_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x958ee900 do_tcp_sendpages EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x9598befe devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0x959f3696 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x95a0e469 perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0x95b880ba xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x9594c14e shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x959aa110 acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x95b2acb9 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x95b47d0e crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free EXPORT_SYMBOL_GPL vmlinux 0x95bcb49d extcon_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x95be431a class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x95bf39bd regmap_get_device EXPORT_SYMBOL_GPL vmlinux 0x95bf3c94 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x95cbf0e7 gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0x95d37a63 dm_table_device_name EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95f82ddb __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x9603ee22 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x96107f46 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x9610dbcf proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x961ccb8b wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x9624ab69 crypto_unregister_aead EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x9647d3d3 sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0x9649f17f exportfs_encode_inode_fh EXPORT_SYMBOL_GPL vmlinux 0x96541330 fuse_get_unique EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x966d2e65 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x966fba26 fixed_phy_change_carrier EXPORT_SYMBOL_GPL vmlinux 0x967e084a devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x96858bbf fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x9689fa38 ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x9695a09e pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x96a82294 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x96a6c2cd ata_sas_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0x96a8ac5a of_property_read_u64_index EXPORT_SYMBOL_GPL vmlinux 0x96ad2021 subsys_system_register EXPORT_SYMBOL_GPL vmlinux 0x96aff49e efivar_entry_get EXPORT_SYMBOL_GPL vmlinux 0x96c16da7 irq_gc_ack_set_bit EXPORT_SYMBOL_GPL vmlinux 0x96cca6c9 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x96e49f8a rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x96d9d7a3 bgmac_enet_remove EXPORT_SYMBOL_GPL vmlinux 0x96e8641f acpi_device_uevent_modalias EXPORT_SYMBOL_GPL vmlinux 0x96f7e50c fsl_mc_bus_dpaiop_type EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp @@ -23665,125 +23694,121 @@ EXPORT_SYMBOL_GPL vmlinux 0x97131f7b pci_load_and_free_saved_state EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw EXPORT_SYMBOL_GPL vmlinux 0x971be75a pci_bus_resource_n EXPORT_SYMBOL_GPL vmlinux 0x9724a543 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x9733352d ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0x97440e99 phy_pm_runtime_put EXPORT_SYMBOL_GPL vmlinux 0x97459ce6 pci_hp_deregister EXPORT_SYMBOL_GPL vmlinux 0x974a1092 regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x974dca2a relay_late_setup_files EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x975dcc0a crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x977eea9f fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x978dbe6f pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x9793aff7 fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0x97971f83 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x979a6c15 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0x97b5a3ae msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x97b257de crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0x97beb82c led_trigger_blink_oneshot EXPORT_SYMBOL_GPL vmlinux 0x97c81efc device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x97d539ff nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x97d2b205 devm_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e3c6d1 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x97e687f5 dev_pm_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x97f84208 pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0x980f01a2 trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0x98219850 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x97fb79ee gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x984f8499 bpf_prog_inc EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x985bc7fa raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9879b632 devlink_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0x987bf25c acpi_initialize_hp_context EXPORT_SYMBOL_GPL vmlinux 0x987cd548 pcie_update_link_speed EXPORT_SYMBOL_GPL vmlinux 0x9883469b iommu_domain_alloc EXPORT_SYMBOL_GPL vmlinux 0x988f26bf nvmem_cell_read_variable_le_u64 EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x98a74353 ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0x98ab521c led_trigger_set EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs EXPORT_SYMBOL_GPL vmlinux 0x98bf0e40 vchan_tx_desc_free -EXPORT_SYMBOL_GPL vmlinux 0x98c38433 fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x98d63cef fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0x98ed9eb9 devm_krealloc EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x98ee78e0 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x98f00b57 regulator_set_voltage_time EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x99028646 kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0x990653b5 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x9900f68a platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x99092d93 fwnode_device_is_available EXPORT_SYMBOL_GPL vmlinux 0x990b659a acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x990f452f regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x9910fe55 security_path_truncate EXPORT_SYMBOL_GPL vmlinux 0x99255d61 policy_has_boost_freq EXPORT_SYMBOL_GPL vmlinux 0x9934ce1e blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x99466733 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9936e984 security_path_chown EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x995eabbc init_dummy_netdev EXPORT_SYMBOL_GPL vmlinux 0x996114ab usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x99666408 devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time EXPORT_SYMBOL_GPL vmlinux 0x9996cb4d dprc_open -EXPORT_SYMBOL_GPL vmlinux 0x99c0a952 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x99c6825b tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x99cc402a iommu_aux_get_pasid 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 0x99f76728 wakeup_source_remove EXPORT_SYMBOL_GPL vmlinux 0x9a01972a pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9a01e127 nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0x9a02c89e dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0x9a02f230 gpiod_direction_output_raw EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a137a28 kvm_irq_has_notifier EXPORT_SYMBOL_GPL vmlinux 0x9a161f98 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x9a182f46 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x9a229aee ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x9a1a153f fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x9a22f45c edac_pci_release_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x9a28dbff xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x9a4c7892 device_property_present EXPORT_SYMBOL_GPL vmlinux 0x9a55436c scsi_dh_attached_handler_name EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a63cc7f seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0x9a6cdfbe devm_pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0x9a6da8d2 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x9a850745 __vfs_removexattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x9a973216 pm_generic_restore_noirq EXPORT_SYMBOL_GPL vmlinux 0x9aa5c75a of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0x9aa64294 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x9aa685b3 perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0x9ab55b0d nd_cmd_out_size EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac69c31 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x9ad31ba5 devlink_param_register EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af43afb xfrm_output EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw EXPORT_SYMBOL_GPL vmlinux 0x9b019f1c acpi_dev_gpio_irq_get_by -EXPORT_SYMBOL_GPL vmlinux 0x9b02acf5 ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start EXPORT_SYMBOL_GPL vmlinux 0x9b109617 blk_mark_disk_dead EXPORT_SYMBOL_GPL vmlinux 0x9b16e818 fsl_mc_bus_dpmcp_type -EXPORT_SYMBOL_GPL vmlinux 0x9b1e76a9 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0x9b300148 of_mm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0x9b3f72fa ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0x9b51c4e8 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x9b4b9e84 devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x9b7dce71 regmap_get_val_endian EXPORT_SYMBOL_GPL vmlinux 0x9b833b37 cdrom_multisession EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill EXPORT_SYMBOL_GPL vmlinux 0x9b8c03ba led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x9b8eb743 tty_buffer_request_room EXPORT_SYMBOL_GPL vmlinux 0x9b8f4856 ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9b91694f ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b93093f __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x9ba0b336 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bbcb094 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9bcbc926 clk_hw_get_parent EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled EXPORT_SYMBOL_GPL vmlinux 0x9bd0b510 pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9bd9a4d5 security_path_chown EXPORT_SYMBOL_GPL vmlinux 0x9bd9ef58 devm_namespace_disable EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf60cbe __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x9c016d34 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x9c098f9f platform_get_mem_or_io EXPORT_SYMBOL_GPL vmlinux 0x9c149893 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x9c39d758 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x9c2ae3dc rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0x9c3e4632 xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9c42753b devm_platform_ioremap_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq EXPORT_SYMBOL_GPL vmlinux 0x9c51b078 srcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x9c60c744 tty_port_register_device @@ -23791,254 +23816,254 @@ EXPORT_SYMBOL_GPL vmlinux 0x9c6987e4 input_ff_flush EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on EXPORT_SYMBOL_GPL vmlinux 0x9c80c4ea ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x9c863573 crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0x9c8aebd2 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x9c973695 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x9c8bdb0a nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0x9c9b1238 exportfs_encode_fh EXPORT_SYMBOL_GPL vmlinux 0x9ca9fb74 arm64_mm_context_put EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x9cbb48ce devm_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x9cbc8b7b edac_mc_find_csrow_by_page EXPORT_SYMBOL_GPL vmlinux 0x9cbd7747 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x9cc1fcab mptcp_get_reset_option EXPORT_SYMBOL_GPL vmlinux 0x9cc259ff pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0x9cc4b881 rio_mport_get_physefb EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc5f23f l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0x9ccecc35 pci_scan_child_bus EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop EXPORT_SYMBOL_GPL vmlinux 0x9cd8ed53 devm_rtc_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x9cebf62b serdev_device_set_parity EXPORT_SYMBOL_GPL vmlinux 0x9cf1dc07 vp_modern_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cf57e12 fs_kobj EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data EXPORT_SYMBOL_GPL vmlinux 0x9d29ecd0 key_type_encrypted EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x9d3ab31d sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x9d5cc54f __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x9d63c47d dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x9d686cea xfrm_audit_state_replay EXPORT_SYMBOL_GPL vmlinux 0x9d6a42c5 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x9d74f6ee int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0x9d81c65d class_compat_remove_link EXPORT_SYMBOL_GPL vmlinux 0x9d91d893 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x9d931a6d phy_driver_is_genphy EXPORT_SYMBOL_GPL vmlinux 0x9d98409f __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x9dafb48b devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x9dabb9da platform_get_irq EXPORT_SYMBOL_GPL vmlinux 0x9dc15364 __devm_clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0x9dc8f27c rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x9df30c71 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9de60fad phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x9de813c8 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x9deb19e2 crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0x9df60fed pci_epc_mem_alloc_addr EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps EXPORT_SYMBOL_GPL vmlinux 0x9e047ec0 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x9e10053b crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0x9e1a4030 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x9e226904 xdp_return_frame EXPORT_SYMBOL_GPL vmlinux 0x9e251e4e dev_pm_opp_init_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0x9e315dc5 iomap_bmap EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field EXPORT_SYMBOL_GPL vmlinux 0x9e76d5f8 dpcon_disable EXPORT_SYMBOL_GPL vmlinux 0x9e78159f pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x9e7fedd9 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x9e92011b regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x9e93406e sdio_writew EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x9eabb41c tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0x9ec2c85d sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x9e9c69f7 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x9eb87ea8 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x9ebe00ee fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0x9ec37da6 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x9ec46451 ping_rcv EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9edebadc skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x9ed83c81 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x9ee0f051 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x9ee739f4 devlink_region_create EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new EXPORT_SYMBOL_GPL vmlinux 0x9ef53c71 pci_stop_and_remove_bus_device_locked EXPORT_SYMBOL_GPL vmlinux 0x9ef60341 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x9ef68869 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x9ef7efa7 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x9f044502 spi_statistics_add_transfer_stats EXPORT_SYMBOL_GPL vmlinux 0x9f07476b pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0x9f2aa021 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x9f2e2bab spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x9f366d99 spi_slave_abort EXPORT_SYMBOL_GPL vmlinux 0x9f3a4297 shake_page -EXPORT_SYMBOL_GPL vmlinux 0x9f47f1db gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x9f3a946b find_get_pid EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns EXPORT_SYMBOL_GPL vmlinux 0x9f4e8af4 dma_release_channel EXPORT_SYMBOL_GPL vmlinux 0x9f5155a6 dev_pm_opp_xlate_required_opp EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9fb7d61c scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x9fbaabce device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x9f6cdd63 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x9f83a315 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x9f86fd76 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x9f98a8c0 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9fab04f8 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x9fbcb16a __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write EXPORT_SYMBOL_GPL vmlinux 0x9fc8c4c6 dev_pm_opp_add EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fdc9f67 inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ffa6d99 device_unregister EXPORT_SYMBOL_GPL vmlinux 0xa0077d4f cpci_hp_unregister_bus EXPORT_SYMBOL_GPL vmlinux 0xa008e773 usb_reset_configuration EXPORT_SYMBOL_GPL vmlinux 0xa0179991 pci_epc_remove_epf EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc EXPORT_SYMBOL_GPL vmlinux 0xa01b6bc0 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa03311b0 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xa04b412c crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xa03e8be0 xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa050807a validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0xa053ab91 uart_xchar_out -EXPORT_SYMBOL_GPL vmlinux 0xa059ae46 ahci_save_initial_config EXPORT_SYMBOL_GPL vmlinux 0xa05c98b8 pinctrl_generic_get_group EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable EXPORT_SYMBOL_GPL vmlinux 0xa07d80e7 of_phandle_iterator_next EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa09c8bf3 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0xa09331c8 bgmac_enet_resume EXPORT_SYMBOL_GPL vmlinux 0xa0a07dcd __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xa0d22279 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xa0b3948d devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0xa0c12489 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xa0cb644d ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages EXPORT_SYMBOL_GPL vmlinux 0xa0d8e7ad attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0xa0da9de9 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xa0defdb4 regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0xa0df472a crypto_create_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xa0e37bd5 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xa0f73b53 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xa0ebbdcc devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0xa10651cd tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xa10974b3 bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa11592b0 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xa11ea58e pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xa116a84e devlink_params_publish EXPORT_SYMBOL_GPL vmlinux 0xa121e06b phy_put -EXPORT_SYMBOL_GPL vmlinux 0xa1267733 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0xa1334324 access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0xa1358274 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0xa150046d file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0xa12ee689 xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end EXPORT_SYMBOL_GPL vmlinux 0xa15bb5da dev_pm_opp_find_level_exact EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xa16e9549 skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xa1749ce3 ehci_suspend EXPORT_SYMBOL_GPL vmlinux 0xa175c996 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xa17d172d lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xa185bc9c perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0xa18a92eb shash_ahash_update EXPORT_SYMBOL_GPL vmlinux 0xa19d37a8 __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xa1a5cbe5 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xa1a08970 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1b97cd2 gpiochip_irq_domain_activate EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa1d618fa rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xa1c72f2a bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xa1d35a79 devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1e75f05 nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0xa1e7e9ea iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0xa209e6e9 unmap_mapping_pages EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk EXPORT_SYMBOL_GPL vmlinux 0xa211f4c2 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xa2150faf gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0xa2174513 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa24a8952 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xa218ef64 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0xa23148ed inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xa24f1ba4 __spi_register_driver EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa252fa71 stmpe_set_bits EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2736455 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0xa279338f __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0xa27acba1 debugfs_create_u64 EXPORT_SYMBOL_GPL vmlinux 0xa27e71d0 tegra_bpmp_transfer EXPORT_SYMBOL_GPL vmlinux 0xa27f50fc tc3589x_reg_read EXPORT_SYMBOL_GPL vmlinux 0xa285a945 dev_pm_opp_attach_genpd EXPORT_SYMBOL_GPL vmlinux 0xa292b907 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xa2a4139c i2c_adapter_depth 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 0xa2d47827 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xa2dd7153 trace_event_ignore_this_pid EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2e2c431 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xa2e51c2a fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0xa2e5c219 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xa2e71d74 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xa2eaa931 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xa2f16396 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0xa2f64a0d dev_pm_opp_put_prop_name EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported EXPORT_SYMBOL_GPL vmlinux 0xa2f8e2dd dev_pm_domain_start EXPORT_SYMBOL_GPL vmlinux 0xa2f99f20 virtqueue_add_outbuf EXPORT_SYMBOL_GPL vmlinux 0xa3057208 mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0xa321ae92 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xa31ce754 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa31faeb7 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa32bdff8 netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0xa34f0f85 of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0xa362c972 shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted EXPORT_SYMBOL_GPL vmlinux 0xa374cc34 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xa376fb57 sock_diag_register 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 0xa3956f87 posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3ad52c2 xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector EXPORT_SYMBOL_GPL vmlinux 0xa3baa377 genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0xa3cb1642 kvm_write_guest EXPORT_SYMBOL_GPL vmlinux 0xa3d16ff3 acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xa3d7c79c device_register EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load -EXPORT_SYMBOL_GPL vmlinux 0xa3e83891 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa3e0b37f __traceiter_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xa3ed810d divider_ro_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xa3efcb95 usb_get_dev EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor EXPORT_SYMBOL_GPL vmlinux 0xa3f22bb0 of_dma_router_register EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa4077d93 devm_of_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa4120631 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa421bc9f set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0xa42518a0 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0xa4276258 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xa42a30c9 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa4326122 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xa439d002 netdev_is_rx_handler_busy EXPORT_SYMBOL_GPL vmlinux 0xa4472920 of_dma_request_slave_channel EXPORT_SYMBOL_GPL vmlinux 0xa448ac7a pci_epc_set_bar EXPORT_SYMBOL_GPL vmlinux 0xa448d8d9 of_fdt_unflatten_tree EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa4588a6c mmc_crypto_setup_queue EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xa462de34 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0xa472ffdf device_get_child_node_count EXPORT_SYMBOL_GPL vmlinux 0xa47fcef1 devm_phy_put EXPORT_SYMBOL_GPL vmlinux 0xa4818901 bus_rescan_devices EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4891fab clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0xa490a5b7 dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0xa499df01 fuse_fill_super_common EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xa4af8600 fib_info_nh_uses_dev EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xa4b2da84 crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0xa4c7bd50 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xa4db6e02 ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0xa4df75ee tty_port_link_device EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get EXPORT_SYMBOL_GPL vmlinux 0xa4f90834 blk_ksm_is_superset -EXPORT_SYMBOL_GPL vmlinux 0xa4f97e92 blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0xa50ecef6 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xa512c0eb pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0xa5150f38 usb_control_msg_send EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa51e98b9 sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0xa521b2ec task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xa52b8a51 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xa520a067 phy_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa54a0672 xfrm_audit_state_replay_overflow EXPORT_SYMBOL_GPL vmlinux 0xa55c3694 dma_free_pages EXPORT_SYMBOL_GPL vmlinux 0xa568344b virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0xa5877aa2 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xa56ed7b8 __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xa587920c blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xa59aeb30 meson_eeclkc_probe EXPORT_SYMBOL_GPL vmlinux 0xa59f5438 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0xa5a7af26 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xa5a1074c skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0xa5b50f79 fsnotify_alloc_user_group EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5c2d9ca regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0xa5cae5db devres_remove EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5ec6a45 vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa60dcd7a ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xa6138d38 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xa5fdef19 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xa6069b2c devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xa61159bf crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xa6129094 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xa61b8d11 ahci_init_controller EXPORT_SYMBOL_GPL vmlinux 0xa627d4af nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0xa63294c7 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0xa633b669 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xa63ce9d9 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0xa633c7cf sdio_f0_writeb EXPORT_SYMBOL_GPL vmlinux 0xa63e2867 meson_vid_pll_div_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xa6521e6f mtk_pinconf_adv_drive_set_raw EXPORT_SYMBOL_GPL vmlinux 0xa656f26a reset_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0xa65a4de4 pci_epc_write_header EXPORT_SYMBOL_GPL vmlinux 0xa65ee0fb rt_mutex_unlock EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa65facb0 inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0xa660857c of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0xa660fe7f fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xa665dafa crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xa6682a0f blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0xa66e2337 dpcon_set_notification -EXPORT_SYMBOL_GPL vmlinux 0xa67afe65 gpiochip_request_own_desc EXPORT_SYMBOL_GPL vmlinux 0xa67cbd1b pci_find_next_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xa67d5372 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0xa68055a2 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xa68f0b29 lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name EXPORT_SYMBOL_GPL vmlinux 0xa6a3243a __auxiliary_driver_register EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap @@ -24046,145 +24071,145 @@ EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end EXPORT_SYMBOL_GPL vmlinux 0xa6b39b7f pm_generic_suspend_late EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xa6b910d7 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xa6c50451 ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0xa6cc1837 devm_thermal_zone_of_sensor_register EXPORT_SYMBOL_GPL vmlinux 0xa6cf884f __fscrypt_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code -EXPORT_SYMBOL_GPL vmlinux 0xa6de6327 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0xa6e058bf __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xa6dcd99b synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0xa6e11ec0 fsl_mc_portal_free EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync EXPORT_SYMBOL_GPL vmlinux 0xa6eae616 xenbus_dev_error EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa706d84b __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa71f943c spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0xa70ac37b fwnode_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0xa72e7b2b devm_regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa740df14 skcipher_walk_done EXPORT_SYMBOL_GPL vmlinux 0xa76fccc1 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0xa772c1e6 __ata_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0xa7856098 cpu_topology EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xa78b3d41 udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xa78e38de nvmem_cell_read_u16 EXPORT_SYMBOL_GPL vmlinux 0xa78eb79a pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0xa796b9f9 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa7af7e9f addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0xa7b4a1fa skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xa7aa939f devlink_reload_disable EXPORT_SYMBOL_GPL vmlinux 0xa7c0ca8f sb800_prefetch EXPORT_SYMBOL_GPL vmlinux 0xa7c7e8db phy_save_page EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa7cc305d put_pid +EXPORT_SYMBOL_GPL vmlinux 0xa7d4f250 __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0xa7d7f3cf strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0xa7e2a2af rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xa7e80952 sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0xa7e825fe usb_autopm_get_interface EXPORT_SYMBOL_GPL vmlinux 0xa7ea253e ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xa7ef4083 ahci_reset_em EXPORT_SYMBOL_GPL vmlinux 0xa7f3cc2a __pm_runtime_use_autosuspend EXPORT_SYMBOL_GPL vmlinux 0xa7f58232 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xa80694c1 __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xa8096922 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa80b9886 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xa80eb4af xfrm_output_resume EXPORT_SYMBOL_GPL vmlinux 0xa81aec33 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xa83480f2 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xa81f433e ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xa834f54c __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0xa835120a meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0xa8355d11 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0xa841cf59 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0xa8504701 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xa8363525 kvm_vcpu_gfn_to_page EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xa86359ca irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0xa8662ff2 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xa86d41f9 devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0xa88210a5 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xa88c1a87 modify_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xa8a53324 phy_modify EXPORT_SYMBOL_GPL vmlinux 0xa8b26d81 handle_fasteoi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xa8b2ab91 devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa8cc7788 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xa8cd574a regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0xa8cdc4bf gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0xa8d058d6 devm_spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0xa8d974cc hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0xa8e0d418 trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0xa8e227ee skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xa8f931b6 regulator_unregister EXPORT_SYMBOL_GPL vmlinux 0xa919fe36 pci_epc_unmap_addr EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds EXPORT_SYMBOL_GPL vmlinux 0xa9379c23 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0xa94e5c16 skb_zerocopy_iter_dgram EXPORT_SYMBOL_GPL vmlinux 0xa94e72ac devm_ti_sci_get_of_resource -EXPORT_SYMBOL_GPL vmlinux 0xa9524dc5 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xa95cb2ed ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0xa9649937 dev_pm_domain_detach EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa98a9638 ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0xa98ee2bd blk_queue_max_zone_append_sectors EXPORT_SYMBOL_GPL vmlinux 0xa98f8558 usb_set_interface EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put EXPORT_SYMBOL_GPL vmlinux 0xa9d05cbe edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xa9d7d2df sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9de10a0 trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister EXPORT_SYMBOL_GPL vmlinux 0xaa03e253 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xaa0c9e73 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xaa0f46e9 ata_host_register EXPORT_SYMBOL_GPL vmlinux 0xaa14e2cb class_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0xaa15161a clk_hw_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0xaa210fe9 tty_buffer_unlock_exclusive EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks EXPORT_SYMBOL_GPL vmlinux 0xaa261500 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0xaa3709d5 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xaa44431f shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaa56cd6a net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush EXPORT_SYMBOL_GPL vmlinux 0xaa767148 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xaa7ce16b lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0xaa921235 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xaa9d6b11 __traceiter_napi_poll EXPORT_SYMBOL_GPL vmlinux 0xaaa4318a pci_remove_root_bus EXPORT_SYMBOL_GPL vmlinux 0xaaa748bf meson_clk_pcie_pll_ops EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab8f49f sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xaacdbf9e __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xaad5c5c5 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xaad6cde7 tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0xaaddb0ac __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xaaf3f29a inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xaae3d150 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xaaeca419 ata_sas_port_init EXPORT_SYMBOL_GPL vmlinux 0xab028c90 create_signature EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab44ffed skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0xab5686b7 usb_match_one_id EXPORT_SYMBOL_GPL vmlinux 0xab5caf53 alloc_empty_file +EXPORT_SYMBOL_GPL vmlinux 0xab68874a cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xab716fe6 crypto_grab_skcipher EXPORT_SYMBOL_GPL vmlinux 0xab7ef18a __percpu_init_rwsem EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare -EXPORT_SYMBOL_GPL vmlinux 0xab8f9bfe sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xab938385 usb_enable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xabab0523 gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate EXPORT_SYMBOL_GPL vmlinux 0xabcbd297 dma_buf_fd EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xabe8c523 ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0xabeaaba6 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xabf061a8 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xabec92be __mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0xabf06e66 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xac242287 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xac2b4a04 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xabfc5b81 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0xac431bfe adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0xac4a4398 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xac4c021f sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0xac601a4e tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xac77001f udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xac73583a gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xac7b6dec imx_pinctrl_sc_ipc_init EXPORT_SYMBOL_GPL vmlinux 0xac90b60c pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xaca5518d sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0xacb13ec0 pci_pri_supported EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xacdbc26f wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xace4eb5b sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xace51dde regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xace6bba6 lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0xacf01f5c devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xacf27175 proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0xad01d566 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xad0c6a95 regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xad18765b __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xad174f4c bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xad19120e ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0xad1b85b1 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xad21e706 pci_host_common_remove EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xad2b3046 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xad278414 pwm_get_chip_data EXPORT_SYMBOL_GPL vmlinux 0xad363d9d devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xad38c8c5 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xad380510 do_xdp_generic EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages 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 0xad5e7512 gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0xad627885 xen_xlate_unmap_gfn_range EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad745c32 devlink_reload_disable EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad826610 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0xad796a25 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad8a3e5c fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0xad8aa50a thermal_zone_of_get_sensor_id EXPORT_SYMBOL_GPL vmlinux 0xad9cc4b5 vp_modern_set_queue_enable EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy @@ -24192,340 +24217,350 @@ EXPORT_SYMBOL_GPL vmlinux 0xadb9f503 nvdimm_region_notify EXPORT_SYMBOL_GPL vmlinux 0xadc14233 irq_chip_mask_parent EXPORT_SYMBOL_GPL vmlinux 0xadcc268d dpcon_get_attributes EXPORT_SYMBOL_GPL vmlinux 0xadcfb5b6 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0xadd3547f i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xade5d95b rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xade991a3 pwm_get EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0xae0f495b regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae29fb01 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0xae3669d2 devm_nvdimm_memremap EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae47cebd switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xae54705e crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0xae55a9db pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0xae56644a mmc_cmdq_disable 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 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae76f54c devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0xae78402e sysfs_remove_files EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae9153b3 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xae98f811 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xae9e3f39 unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0xaeaa6a9f __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xaeade160 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xaeb8b191 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xaec2afa3 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xaeca98a0 timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0xaee7bbbf synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0xaeef68f5 desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0xaf03f874 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xaf049e97 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init EXPORT_SYMBOL_GPL vmlinux 0xaf19bb40 devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0xaf229d57 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0xaf2bf248 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xaf1a03d3 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xaf2987ae cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf3e4dcc crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf40aa9a platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0xaf51c888 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xaf4707f2 device_del +EXPORT_SYMBOL_GPL vmlinux 0xaf5341c8 devlink_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0xaf57e2e2 acpi_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xaf62f227 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xaf58e47e meson_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0xaf645a16 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xaf6c5ee9 nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0xaf6e53d7 of_add_property EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf81ffa5 device_add_groups EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device EXPORT_SYMBOL_GPL vmlinux 0xaf990bb0 syscon_regmap_lookup_by_phandle_optional -EXPORT_SYMBOL_GPL vmlinux 0xaf99c451 tegra_xusb_padctl_legacy_probe EXPORT_SYMBOL_GPL vmlinux 0xafa2560a disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0xafa79b7a ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn EXPORT_SYMBOL_GPL vmlinux 0xafc6bb32 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xafd09b45 ata_qc_complete EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafe5c28c i2c_client_type EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0xaffa6ff7 bpfilter_umh_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xb0088ad3 scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xb0142620 inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0xb0172626 dev_pm_opp_get_of_node EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier EXPORT_SYMBOL_GPL vmlinux 0xb03575f8 kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xb0456264 devlink_region_create 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 0xb0718574 fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb0792969 msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus EXPORT_SYMBOL_GPL vmlinux 0xb08da303 i2c_acpi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xb09947df vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0xb0b19136 fuse_dev_alloc_install EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0d0545c spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0xb0b8b250 dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed EXPORT_SYMBOL_GPL vmlinux 0xb0ede4ab nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0xb0f7ec67 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xb0ffcce2 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xb104da82 wm8350_reg_read EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0xb114b0eb cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xb116c93d crypto_grab_akcipher EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number EXPORT_SYMBOL_GPL vmlinux 0xb11d9c9b cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xb1203d3c bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0xb1212463 regulator_set_load EXPORT_SYMBOL_GPL vmlinux 0xb12f1195 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0xb1311776 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xb148447c gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xb15297a5 __traceiter_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0xb159aa74 lp8788_write_byte EXPORT_SYMBOL_GPL vmlinux 0xb15e43b8 get_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb1667d0e devlink_params_register EXPORT_SYMBOL_GPL vmlinux 0xb16f92db __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0xb182fada crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xb17b202d l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb17bf971 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0xb17c3800 inet_unhash EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb187513b spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0xb18ff4a8 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xb199d386 i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0xb19e1317 usb_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0xb1a5f5f4 ack_all_badblocks EXPORT_SYMBOL_GPL vmlinux 0xb1a827a9 tpmm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0xb1bcc5d9 dma_buf_pin EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start EXPORT_SYMBOL_GPL vmlinux 0xb1d4bf6b devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb1d9f1a7 __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0xb1df2228 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xb1df3d72 inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1ea5a6c stmpe_block_read EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb2016887 br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb20f2225 __raw_v4_lookup EXPORT_SYMBOL_GPL vmlinux 0xb21b4e11 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xb21fc97e ata_sas_queuecmd EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb22176cb regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xb230abb5 crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0xb23c1c75 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xb23f472f kvm_clear_guest EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb24bced4 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0xb24dbf02 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xb2667115 regulator_set_load EXPORT_SYMBOL_GPL vmlinux 0xb26735e4 dprc_get_obj_count EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26d8591 kvm_vcpu_kick EXPORT_SYMBOL_GPL vmlinux 0xb27b8bea iopf_queue_add_device EXPORT_SYMBOL_GPL vmlinux 0xb2841ad2 inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0xb292df2c power_supply_get_property EXPORT_SYMBOL_GPL vmlinux 0xb294600c serdev_device_set_baudrate EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2d9c1a2 trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0xb2dadabb serial8250_tx_chars EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2ec300d fwnode_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0xb2f03c8e usb_hcd_map_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0xb2f9a5e7 fsl_mc_bus_dpio_type +EXPORT_SYMBOL_GPL vmlinux 0xb303c66c device_set_wakeup_capable EXPORT_SYMBOL_GPL vmlinux 0xb30520dd fsnotify_alloc_group EXPORT_SYMBOL_GPL vmlinux 0xb3079e4e devm_pm_opp_set_clkname EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb313d0f7 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xb318fe93 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xb336d6ae __kvm_set_memory_region EXPORT_SYMBOL_GPL vmlinux 0xb3380bbb irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xb343ab84 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb35516b7 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xb35d7902 rtnl_af_register EXPORT_SYMBOL_GPL vmlinux 0xb36a98ff dev_pm_set_dedicated_wake_irq_reverse EXPORT_SYMBOL_GPL vmlinux 0xb36fc1d4 usb_free_streams EXPORT_SYMBOL_GPL vmlinux 0xb3761bea virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xb379efbf __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xb37bec65 switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0xb3788a7d rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xb37cc0c8 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xb38d90b8 crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0xb38f3496 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xb38f6cbf cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xb3b151e4 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xb3a8cecd ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xb3b04c80 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xb3b3c5ae crypto_comp_decompress EXPORT_SYMBOL_GPL vmlinux 0xb3be1a51 securityfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0xb3d1355a ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xb3dec0b1 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xb3e498eb ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0xb3e60242 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb3f695d3 ata_sas_port_alloc EXPORT_SYMBOL_GPL vmlinux 0xb3feae9c clkdev_create EXPORT_SYMBOL_GPL vmlinux 0xb4094856 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xb40d1269 sock_diag_unregister_inet_compat EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request -EXPORT_SYMBOL_GPL vmlinux 0xb41a95e5 sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0xb41edc01 usb_control_msg EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get EXPORT_SYMBOL_GPL vmlinux 0xb4403386 led_classdev_suspend EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb452c08a devlink_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0xb454826e kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xb45a64e7 i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0xb45fc477 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0xb4637792 regulator_force_disable EXPORT_SYMBOL_GPL vmlinux 0xb4638a6b subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xb465491b inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xb4659a87 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb46d1ecd __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xb482415e gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xb482d697 ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0xb48b847e serial8250_do_set_mctrl EXPORT_SYMBOL_GPL vmlinux 0xb48e71c4 devm_usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register EXPORT_SYMBOL_GPL vmlinux 0xb497f7fd led_trigger_unregister EXPORT_SYMBOL_GPL vmlinux 0xb4a40a21 pci_generic_config_read32 EXPORT_SYMBOL_GPL vmlinux 0xb4b19455 imx8m_clk_hw_composite_flags +EXPORT_SYMBOL_GPL vmlinux 0xb4b386c1 gpiod_direction_output_raw EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bcfdef tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0xb4c9142b nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xb4cb1adf dev_fwnode EXPORT_SYMBOL_GPL vmlinux 0xb4d453c3 pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0xb4df7841 regmap_multi_reg_write_bypassed EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4ef6bd5 init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xb4f3ca6a xenbus_unmap_ring_vfree EXPORT_SYMBOL_GPL vmlinux 0xb4fb63ac tty_port_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xb4fba1e3 pinctrl_dev_get_devname EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb50be42a cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xb5134261 clk_hw_get_flags EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge EXPORT_SYMBOL_GPL vmlinux 0xb5258006 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0xb52c2509 gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0xb531cbd1 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xb532bf17 sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0xb53e9f54 of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xb543d31b sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0xb546a4ae clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xb54e7da3 follow_pte EXPORT_SYMBOL_GPL vmlinux 0xb5561e12 arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0xb55d2f3e ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op EXPORT_SYMBOL_GPL vmlinux 0xb5621bd2 fb_deferred_io_init EXPORT_SYMBOL_GPL vmlinux 0xb571f02b __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xb576393a regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xb57c8b1f __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0xb5865574 vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0xb588b178 pm_generic_freeze EXPORT_SYMBOL_GPL vmlinux 0xb59e3f83 dev_pm_opp_set_supported_hw EXPORT_SYMBOL_GPL vmlinux 0xb5a5527c dt_init_idle_driver EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5b5ef5c fwnode_get_next_parent EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg -EXPORT_SYMBOL_GPL vmlinux 0xb5ba8fe5 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xb5bd960b vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xb5be9835 ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0xb5c0a919 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xb5d1b52d __traceiter_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0xb5dab3fb divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xb5df3952 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xb5f0db92 spi_async_locked EXPORT_SYMBOL_GPL vmlinux 0xb5fedc32 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0xb6178f38 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xb61e0e96 gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb62bef12 sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xb63df927 mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0xb63f0430 msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm EXPORT_SYMBOL_GPL vmlinux 0xb645419c virtqueue_get_vring EXPORT_SYMBOL_GPL vmlinux 0xb6459281 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb64925f8 kvm_read_guest_cached EXPORT_SYMBOL_GPL vmlinux 0xb64ff89a soc_device_register EXPORT_SYMBOL_GPL vmlinux 0xb6541afd ksm_madvise EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb6604714 devlink_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0xb66edd83 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0xb67379ce skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xb67400d3 devlink_trap_policers_register EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb68617d6 cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0xb68d595f tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0xb69ca5ab crypto_aead_setauthsize EXPORT_SYMBOL_GPL vmlinux 0xb69cf117 da903x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xb69ddb7b smpboot_unregister_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0xb6a32db2 otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0xb6a6ced3 mmc_pwrseq_register EXPORT_SYMBOL_GPL vmlinux 0xb6a750f9 usb_alloc_coherent EXPORT_SYMBOL_GPL vmlinux 0xb6a83e75 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xb6aa3efd ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0xb6aae5bc platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb6b2a0a8 icc_node_add EXPORT_SYMBOL_GPL vmlinux 0xb6bd0cc4 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xb6ca8039 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xb6cfeb0e sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0xb6d4da31 usb_store_new_id EXPORT_SYMBOL_GPL vmlinux 0xb6df7535 regulator_desc_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0xb6e4adc0 usb_set_configuration EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6eb5935 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xb6f127f0 vfs_submount EXPORT_SYMBOL_GPL vmlinux 0xb7031cdc of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0xb7095e10 crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0xb71130ac tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xb724eebd regulator_get_current_limit EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb735c3ab __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xb734a4fd crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0xb736a7d5 irq_chip_get_parent_state EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups EXPORT_SYMBOL_GPL vmlinux 0xb758040a rio_map_outb_region EXPORT_SYMBOL_GPL vmlinux 0xb75eba01 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0xb76631ab fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0xb76ca1b4 spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0xb7715178 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xb7792d35 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0xb7797c88 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xb77bafbb acpi_spi_count_resources EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 EXPORT_SYMBOL_GPL vmlinux 0xb785ea52 pci_epc_stop EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xb78724e8 l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb7944741 gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xb79acbb8 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xb78886a6 vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0xb79b6e49 scmi_protocol_register EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7c0fd0f gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xb7e33eb5 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0xb7ccd851 dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xb7ecc5cc usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xb7f28c94 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xb7f3d9b6 rtc_read_alarm EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb7fffebe bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0xb80c4a48 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0xb811121b check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xb80e9f51 regmap_exit EXPORT_SYMBOL_GPL vmlinux 0xb812ea49 mtk_mutex_get EXPORT_SYMBOL_GPL vmlinux 0xb813072f fuse_dax_cancel_work EXPORT_SYMBOL_GPL vmlinux 0xb81afa34 set_selection_kernel EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync EXPORT_SYMBOL_GPL vmlinux 0xb82af4db fat_getattr EXPORT_SYMBOL_GPL vmlinux 0xb82bdecb pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0xb82f23df ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xb839e86e icc_get +EXPORT_SYMBOL_GPL vmlinux 0xb843d309 kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0xb8470be6 uart_insert_char EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xb84c35a7 raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0xb84f2545 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0xb85a9da3 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0xb86b8f3b blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xb86bd62b crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0xb86c5baa serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xb86d25b2 shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable EXPORT_SYMBOL_GPL vmlinux 0xb880451e scmi_protocol_unregister EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0xb88cbfaa devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8928bdc pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xb89b5223 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0xb89b527f __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8a3dfab ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource -EXPORT_SYMBOL_GPL vmlinux 0xb8c507d6 __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put EXPORT_SYMBOL_GPL vmlinux 0xb8de6f20 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xb8df89f1 devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb8ef1c5e device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb8e76590 gfn_to_page EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb8f33dad regmap_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xb901eb7a pm_runtime_enable EXPORT_SYMBOL_GPL vmlinux 0xb9072147 rockchip_clk_init EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address EXPORT_SYMBOL_GPL vmlinux 0xb926e182 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xb92cc690 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xb94304c9 ahci_reset_em EXPORT_SYMBOL_GPL vmlinux 0xb94e6323 rio_release_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0xb9607ae6 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xb960d353 cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush EXPORT_SYMBOL_GPL vmlinux 0xb97041a3 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xb97714a2 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xb9787ff3 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xb978cece xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xb97903d2 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xb97d0b67 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xb9813f06 kvm_read_guest EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb9854c39 sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0xb985bda6 usb_asmedia_modifyflowcontrol EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0xb991f1ce security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xb994eda8 icc_link_create EXPORT_SYMBOL_GPL vmlinux 0xb99f9c9f gov_attr_set_get EXPORT_SYMBOL_GPL vmlinux 0xb9ac8947 tpm_put_ops EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d48893 of_clk_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0xb9df8ea0 iterate_mounts EXPORT_SYMBOL_GPL vmlinux 0xb9e1a272 of_pci_range_parser_init EXPORT_SYMBOL_GPL vmlinux 0xb9e69cfa acpi_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0xb9ea6b37 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xb9f7e710 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xb9fa2431 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xb9fc522e mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0xba00b1ef dax_layout_busy_page_range EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xba0f06da ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xba139f51 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xba097c26 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xba0bf814 skcipher_walk_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0xba15151b of_platform_populate EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba436b3b vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xba6998ef icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0xba3600a9 bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0xba77be49 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0xba86e591 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xba8a598b skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xba8c8168 __synth_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0xbab4104f simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents EXPORT_SYMBOL_GPL vmlinux 0xbaca5554 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xbace6301 validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0xbacef541 input_ff_erase EXPORT_SYMBOL_GPL vmlinux 0xbae9a83f usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xbaecbb8f gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks @@ -24533,8 +24568,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch EXPORT_SYMBOL_GPL vmlinux 0xbb0e2776 securityfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0xbb2674c2 dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0xbb5755f8 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0xbb63c110 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb327f67 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xbb3dd4c5 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xbb5bbc65 crypto_stats_get EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback EXPORT_SYMBOL_GPL vmlinux 0xbb66e9e8 of_pm_clk_add_clks EXPORT_SYMBOL_GPL vmlinux 0xbb6a12e8 ata_sff_drain_fifo @@ -24542,68 +24578,69 @@ EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn EXPORT_SYMBOL_GPL vmlinux 0xbb788cb6 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xbb8195c5 devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xbb859175 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xbb8b8660 device_del EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbba5abc3 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xbb9e9a2f ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xbba59370 lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0xbbaadefd mtk_pinconf_drive_set_raw EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put EXPORT_SYMBOL_GPL vmlinux 0xbbba4bf4 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xbbd161ef ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0xbbdb3f60 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xbbc6c5da akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xbbc7af19 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xbbd2d506 of_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xbbe27bde tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0xbbe3d8e3 skcipher_walk_done EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID EXPORT_SYMBOL_GPL vmlinux 0xbbec104c irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0xbbf03644 bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features EXPORT_SYMBOL_GPL vmlinux 0xbbf7891b dma_buf_export EXPORT_SYMBOL_GPL vmlinux 0xbbf79124 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xbc1d08a7 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xbc0fd16f pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0xbc1efa68 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xbc22eb51 __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0xbc25991f fscrypt_set_bio_crypt_ctx_bh EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc435e39 regulator_allow_bypass EXPORT_SYMBOL_GPL vmlinux 0xbc4db218 usb_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0xbc64feca kernfs_put EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc8d03e3 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xbc715c2b clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xbc9850d1 crypto_shash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbca5371a spi_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0xbca9ab42 usb_unlocked_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0xbcb5f9ad hvc_alloc EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset EXPORT_SYMBOL_GPL vmlinux 0xbcc6cdba pci_find_next_ht_capability EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdb61fd ata_sas_port_resume EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name EXPORT_SYMBOL_GPL vmlinux 0xbce3287f pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xbce84100 kvm_gfn_to_hva_cache_init EXPORT_SYMBOL_GPL vmlinux 0xbce89518 nvmem_cell_read_u64 EXPORT_SYMBOL_GPL vmlinux 0xbcef7391 ata_bmdma_port_start32 EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf26676 bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0xbcf52dfa class_dev_iter_init EXPORT_SYMBOL_GPL vmlinux 0xbcf85fdb blk_mq_free_request EXPORT_SYMBOL_GPL vmlinux 0xbcf9908f usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0xbd27f8f0 crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xbd28b191 ping_close EXPORT_SYMBOL_GPL vmlinux 0xbd2d148d platform_find_device_by_driver EXPORT_SYMBOL_GPL vmlinux 0xbd2fc10c devm_irq_alloc_generic_chip EXPORT_SYMBOL_GPL vmlinux 0xbd3d1a25 __devm_reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq EXPORT_SYMBOL_GPL vmlinux 0xbd4ca3a7 gnttab_dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xbd4d051b inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xbd507680 gpiod_set_debounce EXPORT_SYMBOL_GPL vmlinux 0xbd538e6d iomap_zero_range EXPORT_SYMBOL_GPL vmlinux 0xbd53fbf8 software_node_fwnode EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0xbd670bd1 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xbd6b8223 blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0xbd7491a6 platform_msi_domain_free_irqs EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd8b53c1 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xbd8d3f88 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xbd9b717e fixed_phy_register_with_gpiod EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xbdbe7d2e dw_pcie_ep_init EXPORT_SYMBOL_GPL vmlinux 0xbdd9dd07 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xbdeaa85b switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xbdfc9825 nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0xbe17f598 clk_mux_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xbe24fe31 clk_hw_register_gate2 EXPORT_SYMBOL_GPL vmlinux 0xbe271af3 pci_create_root_bus @@ -24612,78 +24649,74 @@ 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 0xbe6ce1ca fsverity_ioctl_enable EXPORT_SYMBOL_GPL vmlinux 0xbe6d43d7 ioasid_put -EXPORT_SYMBOL_GPL vmlinux 0xbe6e7cbd ata_pci_device_suspend EXPORT_SYMBOL_GPL vmlinux 0xbe7ed160 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xbe88c6a1 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xbe813975 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xbe90f0f1 udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0xbe930d63 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0xbe95dcb4 irq_get_domain_generic_chip EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9cee7d ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xbea11fc6 dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeada988 wm8350_gpio_config EXPORT_SYMBOL_GPL vmlinux 0xbeb6a1d4 usb_get_maximum_speed EXPORT_SYMBOL_GPL vmlinux 0xbeb6a913 devm_tegra_memory_controller_get EXPORT_SYMBOL_GPL vmlinux 0xbeba35f5 ehci_setup EXPORT_SYMBOL_GPL vmlinux 0xbebb6625 clk_register_hisi_phase -EXPORT_SYMBOL_GPL vmlinux 0xbebd2757 rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xbebd2ede regcache_drop_region EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run EXPORT_SYMBOL_GPL vmlinux 0xbed1377f wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xbed8bdb9 kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xbedaccbe l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0xbeddf2b1 nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xbee72ee5 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0xbee8ac76 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xbee60a0a bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0xbee91858 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0xbeebc64f wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0xbef887ef debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0xbef8ad0a of_devfreq_cooling_register_power EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier EXPORT_SYMBOL_GPL vmlinux 0xbf060b3f dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xbf0697ac ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0xbf07ad4e tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xbf195613 bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0xbf1a8d83 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0xbf288622 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0xbf37e192 nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0xbf3badb4 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xbf4a9733 timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0xbf3b9e2c espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xbf5da26e crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xbf6e66aa sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0xbf7bfc71 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xbf8fb52a device_store_bool EXPORT_SYMBOL_GPL vmlinux 0xbf97e93f iommu_sva_free_pasid EXPORT_SYMBOL_GPL vmlinux 0xbf9ae1a1 irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0xbfa2df62 i2c_detect_slave_mode EXPORT_SYMBOL_GPL vmlinux 0xbfa34fba handle_fasteoi_ack_irq -EXPORT_SYMBOL_GPL vmlinux 0xbfa47f8c devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbfaa08bf icc_node_create EXPORT_SYMBOL_GPL vmlinux 0xbfac4aac dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0xbfad751c crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xbfb34baa of_clk_hw_simple_get EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfbde5c8 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xbfc7421d inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0xbfc9b3df meson_clk_pll_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xbfddec1f pci_sriov_get_totalvfs EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control EXPORT_SYMBOL_GPL vmlinux 0xbfed0b5b user_describe EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xbfef029c ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xbff74775 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xbff98df2 strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0xbffa29be srcu_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xc0001fd6 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xc009ff1f dax_layout_busy_page EXPORT_SYMBOL_GPL vmlinux 0xc010d268 dprc_get_obj_region +EXPORT_SYMBOL_GPL vmlinux 0xc012e252 mmc_send_abort_tuning EXPORT_SYMBOL_GPL vmlinux 0xc0165fc6 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xc02efbe7 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0xc030fcae task_cgroup_path EXPORT_SYMBOL_GPL vmlinux 0xc03bbf61 pci_find_next_capability EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq EXPORT_SYMBOL_GPL vmlinux 0xc0618d84 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xc066afb0 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xc066d422 bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0xc069a95d edac_mc_free EXPORT_SYMBOL_GPL vmlinux 0xc06db2cf devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xc07e27da fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xc0815d32 shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc093d021 ptp_classify_raw EXPORT_SYMBOL_GPL vmlinux 0xc0a3d155 k3_udma_glue_rx_get_flow_id_base EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited EXPORT_SYMBOL_GPL vmlinux 0xc0aa8762 rockchip_clk_register_armclk EXPORT_SYMBOL_GPL vmlinux 0xc0ae7757 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xc0b34a9a tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0xc0b8880f fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xc0bf4643 __inode_attach_wb EXPORT_SYMBOL_GPL vmlinux 0xc0ce84cc pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name EXPORT_SYMBOL_GPL vmlinux 0xc0e45a7f devres_get @@ -24691,28 +24724,20 @@ EXPORT_SYMBOL_GPL vmlinux 0xc0e48e85 irq_chip_set_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc1267ee3 of_find_spi_device_by_node EXPORT_SYMBOL_GPL vmlinux 0xc12e8b10 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xc12fa393 gpiod_get_array_value EXPORT_SYMBOL_GPL vmlinux 0xc12fd58b pm_runtime_force_resume EXPORT_SYMBOL_GPL vmlinux 0xc1320cfe mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xc13248a5 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0xc1397952 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0xc13d53cd sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xc14d5519 bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0xc1516045 dma_buf_dynamic_attach EXPORT_SYMBOL_GPL vmlinux 0xc165d4b3 bd_prepare_to_claim EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded EXPORT_SYMBOL_GPL vmlinux 0xc17db215 md_bitmap_load EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xc180edd3 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0xc189efab usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xc18d5c1f zap_vma_ptes EXPORT_SYMBOL_GPL vmlinux 0xc1968c3a clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0xc199f00a ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0xc19e6588 ping_bind EXPORT_SYMBOL_GPL vmlinux 0xc1a48b8d rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0xc1b27bfb regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xc1b7058e meson_a1_parse_dt_extra EXPORT_SYMBOL_GPL vmlinux 0xc1d293fb bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xc1d8c440 rio_request_inb_dbell @@ -24720,27 +24745,29 @@ EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn EXPORT_SYMBOL_GPL vmlinux 0xc1e36d13 acpi_pci_find_root EXPORT_SYMBOL_GPL vmlinux 0xc1e573a8 usb_phy_roothub_resume EXPORT_SYMBOL_GPL vmlinux 0xc1ed7f31 dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0xc1f6d700 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc2114432 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xc2117788 nf_checksum EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases EXPORT_SYMBOL_GPL vmlinux 0xc2367bdb usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0xc236bdd5 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xc23b76ee ahci_start_engine EXPORT_SYMBOL_GPL vmlinux 0xc23ddff5 bio_release_pages -EXPORT_SYMBOL_GPL vmlinux 0xc24348a8 crypto_ahash_setkey EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting EXPORT_SYMBOL_GPL vmlinux 0xc24bc595 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xc2589b82 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xc259031c dev_pm_qos_expose_latency_limit EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2601bd9 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xc26387bf bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc269dfd4 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xc26a51c3 cpufreq_generic_init EXPORT_SYMBOL_GPL vmlinux 0xc2771758 bus_remove_file EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc29d5d5c crypto_register_templates EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2b57a43 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc2ab2b97 spi_controller_suspend 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 0xc2cf6b0b get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xc2d55962 work_on_cpu_key EXPORT_SYMBOL_GPL vmlinux 0xc2d58750 acpi_pci_check_ejectable EXPORT_SYMBOL_GPL vmlinux 0xc2d5f0cd devm_hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0xc2d69ca6 gfn_to_pfn_memslot @@ -24748,59 +24775,59 @@ EXPORT_SYMBOL_GPL vmlinux 0xc2dcdaa8 irq_create_mapping_affinity EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable EXPORT_SYMBOL_GPL vmlinux 0xc2e90e2a da9052_request_irq EXPORT_SYMBOL_GPL vmlinux 0xc2e9e9aa bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0xc2ed42d9 device_unregister EXPORT_SYMBOL_GPL vmlinux 0xc2f870dc meson_clk_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0xc2fd45ed devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xc2f8b696 regulator_set_suspend_voltage EXPORT_SYMBOL_GPL vmlinux 0xc2fde2b9 nd_region_provider_data EXPORT_SYMBOL_GPL vmlinux 0xc2ff8612 extcon_get_property_capability EXPORT_SYMBOL_GPL vmlinux 0xc3008d85 acpi_bus_trim EXPORT_SYMBOL_GPL vmlinux 0xc306c264 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0xc3129382 security_path_truncate EXPORT_SYMBOL_GPL vmlinux 0xc3144a95 usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0xc318ac49 icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0xc323525b dev_pm_opp_put_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xc324771a xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0xc326988f ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0xc3389b9b phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0xc33aadb1 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xc33d285e sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object EXPORT_SYMBOL_GPL vmlinux 0xc3470086 devres_add EXPORT_SYMBOL_GPL vmlinux 0xc34d26b5 spi_controller_dma_unmap_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0xc3551279 rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0xc36c9ec0 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xc36dcda9 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xc36ea849 devlink_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc377dff2 crypto_shash_finup EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype EXPORT_SYMBOL_GPL vmlinux 0xc385d744 pci_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0xc387bf7f rio_request_mport_dma EXPORT_SYMBOL_GPL vmlinux 0xc390240a fsnotify_init_mark EXPORT_SYMBOL_GPL vmlinux 0xc395fc3f pinconf_generic_parse_dt_config EXPORT_SYMBOL_GPL vmlinux 0xc39caf1e bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xc3b3e6b7 blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0xc3bd4504 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xc3c1677e ata_host_init EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3cbcfe5 i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0xc3d249f8 ohci_suspend EXPORT_SYMBOL_GPL vmlinux 0xc3d30964 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xc3d439cf root_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xc3d61c7a alloc_dax EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e125db device_show_ulong EXPORT_SYMBOL_GPL vmlinux 0xc3e5272f pci_max_pasids EXPORT_SYMBOL_GPL vmlinux 0xc3e69a35 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0xc3e9ecb4 crypto_register_scomps EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc40dfe0c sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xc3eebb6b bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xc404060d i2c_add_numbered_adapter EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc439954f skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xc43daee7 task_cls_state EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xc4411cf5 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xc453ec85 tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0xc464a05d fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource EXPORT_SYMBOL_GPL vmlinux 0xc47478ff rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0xc47a5174 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xc47729cb ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0xc4811499 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xc4871d72 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xc485cb47 kvm_set_memory_region EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string EXPORT_SYMBOL_GPL vmlinux 0xc493b387 regmap_irq_get_domain EXPORT_SYMBOL_GPL vmlinux 0xc49c6133 pinctrl_pm_select_default_state @@ -24808,54 +24835,56 @@ EXPORT_SYMBOL_GPL vmlinux 0xc49ef4ae ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send EXPORT_SYMBOL_GPL vmlinux 0xc4ae4328 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xc4b15beb __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xc4b5a900 synchronize_srcu_expedited EXPORT_SYMBOL_GPL vmlinux 0xc4bc30c0 mtk_pinconf_bias_get EXPORT_SYMBOL_GPL vmlinux 0xc4c9d94d regulator_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0xc4ccff9a imx_pinconf_set_scu +EXPORT_SYMBOL_GPL vmlinux 0xc4ea9336 cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0xc4ee60b7 devres_close_group EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4fced52 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xc4feceba __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xc500d0d1 spi_res_alloc EXPORT_SYMBOL_GPL vmlinux 0xc50c5d78 of_thermal_get_ntrips EXPORT_SYMBOL_GPL vmlinux 0xc50d7687 subsys_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0xc50fc92b dma_free_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock EXPORT_SYMBOL_GPL vmlinux 0xc518f289 regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xc5310d36 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc5261178 gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0xc5381434 iomap_dio_iopoll EXPORT_SYMBOL_GPL vmlinux 0xc548df40 blk_mq_queue_inflight EXPORT_SYMBOL_GPL vmlinux 0xc557fb99 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xc55f85c3 regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc56100d7 devlink_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name EXPORT_SYMBOL_GPL vmlinux 0xc5715f89 fsl_mc_object_free EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc57ec1a5 sdio_retune_release EXPORT_SYMBOL_GPL vmlinux 0xc58439f2 blk_mq_freeze_queue_wait EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc58ffbf3 bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0xc5a4edf2 dma_buf_unmap_attachment EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5aa7ebb device_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xc5b0e2d6 da903x_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xc5ba8659 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xc5ca9ea8 devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xc5d98d0c shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xc5dc73bb bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0xc5e1898d scmi_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xc5e1d1de power_supply_get_battery_info EXPORT_SYMBOL_GPL vmlinux 0xc5ea6a5d compat_only_sysfs_link_entry_to_kobj EXPORT_SYMBOL_GPL vmlinux 0xc5ee87d6 __devm_pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0xc5fd55d1 bind_interdomain_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xc6076149 crypto_stats_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0xc60dd9e2 devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xc612ef73 fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier EXPORT_SYMBOL_GPL vmlinux 0xc61e80c9 sysfs_create_link_nowarn EXPORT_SYMBOL_GPL vmlinux 0xc621bb43 sched_trace_rd_span EXPORT_SYMBOL_GPL vmlinux 0xc62cb78d dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xc631adeb devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0xc6324e70 gpiod_get EXPORT_SYMBOL_GPL vmlinux 0xc632b7df of_dma_configure_id EXPORT_SYMBOL_GPL vmlinux 0xc64b862d usb_hcd_link_urb_to_ep EXPORT_SYMBOL_GPL vmlinux 0xc64e5e33 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xc6555aac bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned EXPORT_SYMBOL_GPL vmlinux 0xc6580647 devm_of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister @@ -24863,18 +24892,18 @@ EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xc66589eb max8997_update_reg EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata EXPORT_SYMBOL_GPL vmlinux 0xc66c7404 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xc670d406 console_drivers EXPORT_SYMBOL_GPL vmlinux 0xc6727f9c pci_epf_add_vepf EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xc67479cc fib_info_nh_uses_dev EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable EXPORT_SYMBOL_GPL vmlinux 0xc69256bf dma_map_sgtable EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69dd953 __vfs_setxattr_noperm EXPORT_SYMBOL_GPL vmlinux 0xc6a07b89 __fsl_mc_driver_register EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xc6b433ee mpc8xxx_spi_rx_buf_u32 EXPORT_SYMBOL_GPL vmlinux 0xc6d55aa1 xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xc6d7993c put_device EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references EXPORT_SYMBOL_GPL vmlinux 0xc6e2735b em_pd_get EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within @@ -24885,7 +24914,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put EXPORT_SYMBOL_GPL vmlinux 0xc71166dc mtk_pinconf_bias_disable_set EXPORT_SYMBOL_GPL vmlinux 0xc718e42e rio_pw_enable EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc71f6461 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xc729c0bf sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xc736f642 bgmac_enet_suspend EXPORT_SYMBOL_GPL vmlinux 0xc7381d92 edac_device_handle_ce_count EXPORT_SYMBOL_GPL vmlinux 0xc741ceaf iommu_sva_get_pasid EXPORT_SYMBOL_GPL vmlinux 0xc7515c11 dma_resv_wait_timeout @@ -24893,230 +24923,239 @@ EXPORT_SYMBOL_GPL vmlinux 0xc755d055 usb_of_get_companion_dev EXPORT_SYMBOL_GPL vmlinux 0xc766e385 __clk_hw_register_gate EXPORT_SYMBOL_GPL vmlinux 0xc76f8048 __sbitmap_queue_get EXPORT_SYMBOL_GPL vmlinux 0xc7735cf0 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xc782c0a9 ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xc79540aa shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc78c4221 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0xc7964fb9 kthread_data EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a4f775 ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0xc7b85ad8 acpi_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0xc7bddd11 ata_dev_pair EXPORT_SYMBOL_GPL vmlinux 0xc7be4f8e fsl_mc_cleanup_irq_pool EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7c6c1c7 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0xc7cff125 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xc7d89171 gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0xc7e64881 tty_init_termios EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7ef2fe1 of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0xc7f63b9e device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xc7f938f3 device_phy_find_device EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc8030635 devlink_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0xc805c9da tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xc80d060c __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xc80e844d spi_split_transfers_maxsize EXPORT_SYMBOL_GPL vmlinux 0xc80eff2b spi_mem_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xc8121593 dpcon_close EXPORT_SYMBOL_GPL vmlinux 0xc827dbd9 fsl_mc_bus_dprtc_type EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc830418d fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0xc8395e18 of_alias_get_id EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc83c1481 device_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0xc842b976 of_genpd_parse_idle_states EXPORT_SYMBOL_GPL vmlinux 0xc8463b7f dev_pm_opp_set_rate EXPORT_SYMBOL_GPL vmlinux 0xc84f1c9a devm_pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0xc855cca9 kthread_use_mm EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc85979f3 __cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0xc85b44b3 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xc8630917 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xc864ded2 rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0xc8764ed4 fat_attach EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xc8a1dd30 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xc8881a9b crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xc89cfcb5 gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0xc8a5038f dma_vmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xc8c6902d auxiliary_device_init EXPORT_SYMBOL_GPL vmlinux 0xc8ccd49a debugfs_create_bool EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable EXPORT_SYMBOL_GPL vmlinux 0xc8ecf3d5 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xc8f85a0d tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc8fa3caa skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0xc8ff2c8d rockchip_pcie_enable_clocks EXPORT_SYMBOL_GPL vmlinux 0xc90b5453 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xc91ac7fd sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc92a93e2 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xc9332c58 hwmon_device_register EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xc938f7ec crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xc93637c1 l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc9440f23 xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0xc9475509 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xc94daa7b wbc_attach_and_unlock_inode EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc95772a6 tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0xc961256e vp_modern_queue_vector EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc9666efc do_truncate -EXPORT_SYMBOL_GPL vmlinux 0xc9690921 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xc96a7982 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xc96c126e gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xc9703b71 ahci_stop_engine EXPORT_SYMBOL_GPL vmlinux 0xc970ddc8 ahci_shost_attrs EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base EXPORT_SYMBOL_GPL vmlinux 0xc99753bd invalidate_inode_pages2 EXPORT_SYMBOL_GPL vmlinux 0xc9b74358 devm_extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0xc9ba763b platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xc9bbc8ce blk_trace_setup EXPORT_SYMBOL_GPL vmlinux 0xc9d99108 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xc9e5954f wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xc9e49a3a check_move_unevictable_pages EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca0190d3 crypto_stats_get EXPORT_SYMBOL_GPL vmlinux 0xca01b614 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xca0e4cf5 ata_dev_next EXPORT_SYMBOL_GPL vmlinux 0xca215c64 pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xca224686 gpiochip_generic_free EXPORT_SYMBOL_GPL vmlinux 0xca240e2d dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xca243e09 hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0xca245956 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xca3d3a97 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xca3dbcff sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xca3f2b3f xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xca4513a0 sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca50e929 usb_init_urb EXPORT_SYMBOL_GPL vmlinux 0xca69b428 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xca6de1fc wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xca701149 ahci_do_hardreset EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca9237a4 ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0xca9783d1 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xca95a457 xfer_to_guest_mode_handle_work EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xca9a9700 dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0xcab55aab espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0xcab99d83 gen10g_config_aneg EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac255cc ip_valid_fib_dump_req EXPORT_SYMBOL_GPL vmlinux 0xcacaab95 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcacb4758 get_kernel_pages EXPORT_SYMBOL_GPL vmlinux 0xcacd8dce usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xcace6ae4 stmpe_reg_write EXPORT_SYMBOL_GPL vmlinux 0xcad3217f dprc_set_obj_irq EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xcae816fd kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xcaea89f8 switchdev_handle_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get EXPORT_SYMBOL_GPL vmlinux 0xcaf24ea1 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xcaf46b5b device_match_of_node EXPORT_SYMBOL_GPL vmlinux 0xcaf54fa2 usb_string -EXPORT_SYMBOL_GPL vmlinux 0xcafbb5f0 i2c_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xcafeb46b fsl_mc_bus_dpdmai_type EXPORT_SYMBOL_GPL vmlinux 0xcb017703 regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0xcb060aba sdio_set_host_pm_flags EXPORT_SYMBOL_GPL vmlinux 0xcb0738bc blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xcb083e4b crypto_unregister_instance EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb257fd5 kvm_vcpu_kick EXPORT_SYMBOL_GPL vmlinux 0xcb281677 rockchip_pcie_parse_dt EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb3b88ef lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xcb3eba74 ehci_adjust_port_wakeup_flags EXPORT_SYMBOL_GPL vmlinux 0xcb506712 simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb677255 device_move +EXPORT_SYMBOL_GPL vmlinux 0xcb6e7535 get_net_ns EXPORT_SYMBOL_GPL vmlinux 0xcb70446d dm_bio_from_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0xcb71d45a iommu_sva_find EXPORT_SYMBOL_GPL vmlinux 0xcb7571ef led_stop_software_blink EXPORT_SYMBOL_GPL vmlinux 0xcb7594dd kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xcb7aaeb9 bgmac_adjust_link EXPORT_SYMBOL_GPL vmlinux 0xcb8967e1 rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0xcb89d499 fwnode_graph_get_next_endpoint EXPORT_SYMBOL_GPL vmlinux 0xcb9c61ff pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xcba1bbfb unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0xcbb726fe devm_bitmap_zalloc EXPORT_SYMBOL_GPL vmlinux 0xcbcadc98 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xcbcdd520 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xcbdfb3c0 device_property_read_string EXPORT_SYMBOL_GPL vmlinux 0xcbe3a99a of_property_read_variable_u64_array EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages EXPORT_SYMBOL_GPL vmlinux 0xcbe9056d devm_pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0xcbea7abe regulator_list_voltage_table EXPORT_SYMBOL_GPL vmlinux 0xcc044a9f serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0xcc054be5 devm_device_add_group EXPORT_SYMBOL_GPL vmlinux 0xcc06d90c of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0xcc09549b rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head -EXPORT_SYMBOL_GPL vmlinux 0xcc1cc965 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xcc109468 regulator_put EXPORT_SYMBOL_GPL vmlinux 0xcc239d89 iommu_report_device_fault EXPORT_SYMBOL_GPL vmlinux 0xcc2b126d blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xcc2daea3 crypto_grab_skcipher EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc655803 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xcc6dc54b do_splice_to EXPORT_SYMBOL_GPL vmlinux 0xcc744576 mtk_pinconf_bias_disable_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0xcc86f6a9 extcon_register_notifier_all EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc EXPORT_SYMBOL_GPL vmlinux 0xcc93f237 fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0xcc955fe7 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0xcc9df849 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0xccac93b9 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xcca6e81a ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xccace085 gpiod_direction_output EXPORT_SYMBOL_GPL vmlinux 0xccaf3b70 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xccb5fe42 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xccbb3811 bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0xccc6791e gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xcccb0c6c raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string EXPORT_SYMBOL_GPL vmlinux 0xcce66bbc mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xccefc20c device_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start EXPORT_SYMBOL_GPL vmlinux 0xcd045f29 usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcd0bc3ae xfer_to_guest_mode_handle_work EXPORT_SYMBOL_GPL vmlinux 0xcd0f1ddf blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0xcd24098c __traceiter_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size EXPORT_SYMBOL_GPL vmlinux 0xcd3babb3 tty_perform_flush EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory -EXPORT_SYMBOL_GPL vmlinux 0xcd50b16f pm_wakeup_ws_event EXPORT_SYMBOL_GPL vmlinux 0xcd526e16 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xcd5f12f3 br_fdb_test_addr_hook EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd706cbe regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xcd6f63bd rtc_read_time EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset +EXPORT_SYMBOL_GPL vmlinux 0xcd7f2766 fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0xcd8eb0b0 cpufreq_dbs_governor_init 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 0xcd9cd2ff wakeme_after_rcu EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr +EXPORT_SYMBOL_GPL vmlinux 0xcdabb60e ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0xcdabc405 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0xcdafb091 sched_trace_cfs_rq_path EXPORT_SYMBOL_GPL vmlinux 0xcdb4aa4f serdev_controller_remove EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs EXPORT_SYMBOL_GPL vmlinux 0xcdd91e09 iommu_setup_dma_ops EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcde78e3e i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0xcde8df82 platform_msi_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0xcdf42518 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xcdf70e12 ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory EXPORT_SYMBOL_GPL vmlinux 0xce0cd2d7 tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0xce13ea23 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xce1d1aaa lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0xce2960c3 pci_sriov_set_totalvfs EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay -EXPORT_SYMBOL_GPL vmlinux 0xce4ce3b9 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xce4be422 spi_controller_resume EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe EXPORT_SYMBOL_GPL vmlinux 0xce629e7a of_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0xce6a0c39 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xce6a31ec device_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce767fbe do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xce72a049 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xce792b89 regulator_get EXPORT_SYMBOL_GPL vmlinux 0xce7b2a80 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xce7e01cc sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0xce90a5f7 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xce945996 inet_hashinfo2_init_mod EXPORT_SYMBOL_GPL vmlinux 0xce948e89 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xce9948f8 devlink_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xcecc06b8 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xceced402 gpiod_get_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xced5acd8 dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xced811aa switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0xcedd65fa serdev_device_write_room EXPORT_SYMBOL_GPL vmlinux 0xcee03c68 power_supply_get_by_name EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply -EXPORT_SYMBOL_GPL vmlinux 0xceebb3d1 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xceecdf01 gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xcf028fd5 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0xcf0bdf1a __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xcf1f0f84 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0xcf426c16 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0xcf20a778 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xcf3b0d50 __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xcf5159cb of_irq_find_parent EXPORT_SYMBOL_GPL vmlinux 0xcf53a7ed misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0xcf633bad unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0xcf7f66f9 imx_dev_clk_hw_pll14xx -EXPORT_SYMBOL_GPL vmlinux 0xcf8bc99c fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xcf883557 phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0xcfab4160 regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xcfb903ba fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xcfbf5b97 ahci_do_hardreset EXPORT_SYMBOL_GPL vmlinux 0xcfc22533 is_dock_device EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfc745a4 bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfd9d01a clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xcfe249c2 cpufreq_freq_transition_begin EXPORT_SYMBOL_GPL vmlinux 0xcff111ec clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xcffbadb0 pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic EXPORT_SYMBOL_GPL vmlinux 0xd00cfdea dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0xd024bc73 mmc_pwrseq_unregister EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op +EXPORT_SYMBOL_GPL vmlinux 0xd0295ee4 hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event @@ -25126,15 +25165,15 @@ EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd065d18c dev_attr_unload_heads EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0xd0741d77 devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd07c0c16 crypto_skcipher_setkey EXPORT_SYMBOL_GPL vmlinux 0xd07e9ebe blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xd08bfa61 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xd0947e61 regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd0a22cb0 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd0a98381 devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0xd0abfd54 nd_region_dev EXPORT_SYMBOL_GPL vmlinux 0xd0b3eff5 irq_domain_xlate_onetwocell EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart EXPORT_SYMBOL_GPL vmlinux 0xd0c1843d irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xd0cc52d2 skcipher_alloc_instance_simple EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail EXPORT_SYMBOL_GPL vmlinux 0xd0dadf03 free_vm_area @@ -25142,199 +25181,194 @@ EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax EXPORT_SYMBOL_GPL vmlinux 0xd0ddb1e2 usb_clear_halt EXPORT_SYMBOL_GPL vmlinux 0xd0e6e0bd devm_memremap_pages EXPORT_SYMBOL_GPL vmlinux 0xd0f1a708 i2c_dw_adjust_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0xd0f3384d mtk_paris_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xd0f78a36 dax_layout_busy_page_range EXPORT_SYMBOL_GPL vmlinux 0xd0ff648b pinmux_generic_add_function -EXPORT_SYMBOL_GPL vmlinux 0xd10dd40a __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xd111745d of_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xd1145e0d regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xd1248f70 crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0xd12542dd rio_unlock_device EXPORT_SYMBOL_GPL vmlinux 0xd12743c2 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xd12cd0b2 phy_led_trigger_change_speed EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xd138fa24 regulator_bulk_force_disable EXPORT_SYMBOL_GPL vmlinux 0xd13ed8b8 attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0xd13f60a0 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xd14120c1 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xd1481d81 __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd1493716 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xd151daa9 addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xd159bc12 da9052_enable_irq EXPORT_SYMBOL_GPL vmlinux 0xd166de63 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xd1676b4b gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0xd1866fcf ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0xd1879870 xhci_update_hub_device EXPORT_SYMBOL_GPL vmlinux 0xd189ce19 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0xd1987bd5 devm_regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0xd1994174 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xd1a0f211 inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1b95fa4 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd1afa494 regulator_enable EXPORT_SYMBOL_GPL vmlinux 0xd1b9ee49 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xd1be29e6 ata_port_abort EXPORT_SYMBOL_GPL vmlinux 0xd1c1cbdb phy_set_mode_ext EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on EXPORT_SYMBOL_GPL vmlinux 0xd1d369bd iomap_migrate_page EXPORT_SYMBOL_GPL vmlinux 0xd1df2c1e acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xd1e1faf9 __iptunnel_pull_header EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get EXPORT_SYMBOL_GPL vmlinux 0xd1f8bf0c battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0xd20e9cea gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xd20ef631 __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21d8b27 crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xd2240587 thermal_zone_device_update EXPORT_SYMBOL_GPL vmlinux 0xd228a4e6 fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0xd230f7e2 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xd23add1d ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0xd23d1607 __efivar_entry_get EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init -EXPORT_SYMBOL_GPL vmlinux 0xd2547f8e crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write EXPORT_SYMBOL_GPL vmlinux 0xd26b4391 ata_sff_lost_interrupt EXPORT_SYMBOL_GPL vmlinux 0xd270e977 pci_bridge_emul_conf_write EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd2795d3e devm_i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references EXPORT_SYMBOL_GPL vmlinux 0xd2855fe9 ata_sff_port_intr EXPORT_SYMBOL_GPL vmlinux 0xd287ad5f regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd2967700 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xd29d19c4 dax_layout_busy_page EXPORT_SYMBOL_GPL vmlinux 0xd2aabe83 dm_bio_get_target_bio_nr EXPORT_SYMBOL_GPL vmlinux 0xd2af8e4c pci_epc_get EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode EXPORT_SYMBOL_GPL vmlinux 0xd2c71439 posix_acl_create EXPORT_SYMBOL_GPL vmlinux 0xd2caa6fe iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xd2e0b6cf set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd2ecb0de rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0xd2f3dbd3 mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd30020f9 switchdev_handle_fdb_add_to_device 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 0xd32379ef gpiod_count EXPORT_SYMBOL_GPL vmlinux 0xd3259cfe ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0xd3349eb3 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xd32b1512 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd3364423 tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed EXPORT_SYMBOL_GPL vmlinux 0xd341b594 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0xd3449436 ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0xd3451f93 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xd34dd2ec pwm_adjust_config EXPORT_SYMBOL_GPL vmlinux 0xd3509648 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd3668ee8 setfl +EXPORT_SYMBOL_GPL vmlinux 0xd35cf00d perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd36845a7 ata_std_error_handler EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xd396fdca iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xd3970a73 sched_trace_cfs_rq_avg EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3a11844 kvm_set_memory_region EXPORT_SYMBOL_GPL vmlinux 0xd3ae6595 fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0xd3ba7007 ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0xd3c1557c blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xd3c7ad63 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xd3c3ae2d trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xd3c6a193 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xd3d215d9 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xd3d2a5db event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage EXPORT_SYMBOL_GPL vmlinux 0xd3fef175 tpm_get_random EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq EXPORT_SYMBOL_GPL vmlinux 0xd40d2368 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xd41be66a thermal_zone_device_disable EXPORT_SYMBOL_GPL vmlinux 0xd425c57a mddev_init_writes_pending EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0xd431adfa devm_spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console EXPORT_SYMBOL_GPL vmlinux 0xd456d16f irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xd45dedd8 inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs EXPORT_SYMBOL_GPL vmlinux 0xd46c1b72 dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0xd46dbe3a ata_link_online EXPORT_SYMBOL_GPL vmlinux 0xd46e813d dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xd479208e rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0xd48fc513 mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd4989c5a nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0xd4a294bb bus_get_kset EXPORT_SYMBOL_GPL vmlinux 0xd4a6e388 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0xd4acd37c inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0xd4aedb3f devm_acpi_dev_add_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0xd4b26930 tty_buffer_set_limit EXPORT_SYMBOL_GPL vmlinux 0xd4b54464 dma_resv_get_fences 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 0xd4c6ca4c __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xd4c5f532 sdio_claim_host EXPORT_SYMBOL_GPL vmlinux 0xd4c8b679 tps65912_device_exit EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xd4d3447c tty_find_polling_driver EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value EXPORT_SYMBOL_GPL vmlinux 0xd4f00dd1 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xd4f3b59b tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xd4f4154c tpm_get_timeouts EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd514111a kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xd51b399a devlink_free EXPORT_SYMBOL_GPL vmlinux 0xd51bcb08 mpc8xxx_spi_tx_buf_u16 EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value EXPORT_SYMBOL_GPL vmlinux 0xd531da54 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0xd5388875 sched_trace_rq_avg_rt EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table EXPORT_SYMBOL_GPL vmlinux 0xd5429d29 devm_extcon_dev_allocate EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role EXPORT_SYMBOL_GPL vmlinux 0xd5494d28 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xd551ceb4 __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd562f812 platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xd56be403 devres_for_each_res EXPORT_SYMBOL_GPL vmlinux 0xd571ae81 paste_selection EXPORT_SYMBOL_GPL vmlinux 0xd575dae9 pinctrl_pm_select_idle_state EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop -EXPORT_SYMBOL_GPL vmlinux 0xd582efdc bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0xd5915dd6 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd58c0237 crypto_alloc_acomp EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5a0dfe6 __traceiter_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0xd5a22148 pci_epf_bind EXPORT_SYMBOL_GPL vmlinux 0xd5a6d7c1 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xd5a9a80e bgmac_enet_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd5aea276 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0xd5b2e117 nd_blk_memremap_flags EXPORT_SYMBOL_GPL vmlinux 0xd5c0356d is_software_node -EXPORT_SYMBOL_GPL vmlinux 0xd5c7a9e0 kvm_vcpu_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd5cf47b1 trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0xd5d03984 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0xd5e4a021 __trace_note_message EXPORT_SYMBOL_GPL vmlinux 0xd5e95a8a irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xd5f0886a spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xd5f785c4 battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd60b621f kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0xd60bfe5f sched_trace_cfs_rq_avg EXPORT_SYMBOL_GPL vmlinux 0xd610ec97 gnttab_page_cache_put EXPORT_SYMBOL_GPL vmlinux 0xd612e931 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xd61c7cba crypto_register_akcipher EXPORT_SYMBOL_GPL vmlinux 0xd628911b led_set_brightness_nosleep EXPORT_SYMBOL_GPL vmlinux 0xd63073c6 acpi_subsys_complete EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd6554162 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0xd655f32c skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xd66a0074 blkdev_ioctl EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd676dbf5 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd6791219 fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0xd6828fa1 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xd683a883 sock_gen_put EXPORT_SYMBOL_GPL vmlinux 0xd684fe73 sysfs_add_file_to_group EXPORT_SYMBOL_GPL vmlinux 0xd685343a usb_hcd_end_port_resume EXPORT_SYMBOL_GPL vmlinux 0xd685e8ce of_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0xd688b96c to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xd68c2ddb of_clk_get_parent_count EXPORT_SYMBOL_GPL vmlinux 0xd692847e cpufreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0xd69fca52 blk_poll EXPORT_SYMBOL_GPL vmlinux 0xd6a0bb31 clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0xd6c48783 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xd6c532fe of_i2c_setup_smbus_alert EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xd6e37386 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xd6daaf90 fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0xd6f52a5f dpcon_reset EXPORT_SYMBOL_GPL vmlinux 0xd6f5b393 serial8250_get_port EXPORT_SYMBOL_GPL vmlinux 0xd6fef692 gnttab_unmap_refs_sync EXPORT_SYMBOL_GPL vmlinux 0xd704793b key_type_logon EXPORT_SYMBOL_GPL vmlinux 0xd7060677 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xd7089e56 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xd717e523 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd71f0568 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xd7087b02 devlink_dpipe_entry_ctx_prepare 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 0xd738fcc9 devm_phy_get EXPORT_SYMBOL_GPL vmlinux 0xd739431c da903x_update EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd73b9af8 phy_package_join EXPORT_SYMBOL_GPL vmlinux 0xd757b8c2 of_pci_find_child_device EXPORT_SYMBOL_GPL vmlinux 0xd7592dd6 handle_level_irq EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key EXPORT_SYMBOL_GPL vmlinux 0xd767d1d9 usb_get_intf EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd76a3821 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xd7728c46 devm_of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd7767057 inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0xd781b717 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0xd7920ff4 kvm_write_guest_page EXPORT_SYMBOL_GPL vmlinux 0xd79449e8 iomap_writepage EXPORT_SYMBOL_GPL vmlinux 0xd7a19088 pm_generic_thaw_early EXPORT_SYMBOL_GPL vmlinux 0xd7a832d3 relay_file_operations @@ -25343,120 +25377,123 @@ EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split EXPORT_SYMBOL_GPL vmlinux 0xd7b7fb80 pkcs7_validate_trust EXPORT_SYMBOL_GPL vmlinux 0xd7bd307f dw_pcie_host_deinit EXPORT_SYMBOL_GPL vmlinux 0xd7bd40b8 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd7c74569 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7d4aee4 regulator_put 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 0xd80d3e9c device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xd7f06d72 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0xd7f3ccc8 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xd7fcade6 crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0xd820216d debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0xd82fdbf1 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xd833af83 wakeup_sources_walk_next EXPORT_SYMBOL_GPL vmlinux 0xd848930e wm831x_reg_lock EXPORT_SYMBOL_GPL vmlinux 0xd84b080e irq_set_chained_handler_and_data EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd8578293 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xd8676455 modify_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk EXPORT_SYMBOL_GPL vmlinux 0xd8901e2c debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xd891642f udp4_hwcsum EXPORT_SYMBOL_GPL vmlinux 0xd89615d3 badblocks_set EXPORT_SYMBOL_GPL vmlinux 0xd8a4c606 devfreq_cooling_em_register EXPORT_SYMBOL_GPL vmlinux 0xd8bd311e devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xd8c77f07 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xd8c85fa8 crypto_enqueue_request_head EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type EXPORT_SYMBOL_GPL vmlinux 0xd8da53bb pinctrl_enable EXPORT_SYMBOL_GPL vmlinux 0xd8da8478 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xd8ed5ff4 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xd8f9a7db crypto_stats_ahash_final 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 0xd91dbd1f xdp_alloc_skb_bulk EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xd93168e0 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0xd936a8ca power_supply_get_property_from_supplier EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable EXPORT_SYMBOL_GPL vmlinux 0xd93eae1b class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xd9476f27 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd948e70f ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0xd94f0a9f d_exchange EXPORT_SYMBOL_GPL vmlinux 0xd955bb3e virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xd967288d sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next EXPORT_SYMBOL_GPL vmlinux 0xd96fa6fb of_usb_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xd9730057 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xd976719b devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0xd977abf2 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xd977c6f7 device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0xd978b117 xen_dbgp_reset_prep EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd994760d ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xd9951734 regmap_get_raw_read_max EXPORT_SYMBOL_GPL vmlinux 0xd99b8060 thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0xd9c0ad1a mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0xd9cfdb00 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xd9ad5d0f sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0xd9c21cc6 trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek EXPORT_SYMBOL_GPL vmlinux 0xd9e343de devm_gpiod_unhinge EXPORT_SYMBOL_GPL vmlinux 0xd9f478f8 phy_reset EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0xd9fab53d scsi_host_unblock EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister EXPORT_SYMBOL_GPL vmlinux 0xda0dd603 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xda1cc25f of_clk_hw_onecell_get EXPORT_SYMBOL_GPL vmlinux 0xda2e7948 usb_choose_configuration EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda36ad47 dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0xda3743c9 imx_pinctrl_sc_ipc_init -EXPORT_SYMBOL_GPL vmlinux 0xda4824c6 gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0xda489ee4 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xda55d21d dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0xda65086e elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0xda6dbb85 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0xda77e3e9 crypto_unregister_skcipher EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0xda7a2933 ata_scsi_dma_need_drain EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name EXPORT_SYMBOL_GPL vmlinux 0xda98ef46 serdev_device_write_wakeup EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp EXPORT_SYMBOL_GPL vmlinux 0xdaa81e47 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xdaaec97e devlink_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert EXPORT_SYMBOL_GPL vmlinux 0xdab6586e ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0xdab7d908 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0xdac2300d rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0xdae47f23 extcon_set_property_sync EXPORT_SYMBOL_GPL vmlinux 0xdae9a09a __usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option EXPORT_SYMBOL_GPL vmlinux 0xdaf5e751 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xdaf78a12 scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0xdafcd0be dma_wait_for_async_tx EXPORT_SYMBOL_GPL vmlinux 0xdb047d8a usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xdb37700e ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xdb09cd60 devlink_port_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0xdb4d103d usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xdb580fde unregister_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table EXPORT_SYMBOL_GPL vmlinux 0xdb732f83 __rio_local_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0xdb73340d ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xdb73d3df crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xdb7a9a21 wait_on_page_writeback_killable EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0xdb863738 device_initialize EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock EXPORT_SYMBOL_GPL vmlinux 0xdb8e958d class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb8fffa4 security_inode_permission EXPORT_SYMBOL_GPL vmlinux 0xdb98d4d0 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0xdb9b09d6 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xdba2ccd1 mnt_want_write_file EXPORT_SYMBOL_GPL vmlinux 0xdbacdc43 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xdbce6124 regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe2f886 __kernel_write EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xdbec065f usb_ifnum_to_if EXPORT_SYMBOL_GPL vmlinux 0xdbec99c4 fsl_mc_bus_dpni_type EXPORT_SYMBOL_GPL vmlinux 0xdbee2711 md_new_event EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdbf429ab tcp_reno_cong_avoid EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available EXPORT_SYMBOL_GPL vmlinux 0xdc097866 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xdc0c23ce sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0xdc126988 __ata_ehi_push_desc 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 0xdc1e9a6d fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0xdc276189 skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0xdc379f35 sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0xdc3f724f devm_request_free_mem_region EXPORT_SYMBOL_GPL vmlinux 0xdc41e781 blk_mq_freeze_queue_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work EXPORT_SYMBOL_GPL vmlinux 0xdc56d781 devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0xdc628d76 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xdc58f2e6 crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc695645 __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xdc6ab086 pci_msi_unmask_irq EXPORT_SYMBOL_GPL vmlinux 0xdc6ba80b debugfs_create_x32 EXPORT_SYMBOL_GPL vmlinux 0xdc7bbd06 pci_hp_del @@ -25464,468 +25501,448 @@ 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 0xdc886593 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0xdc8942a2 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0xdc8ed22c xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcac304c crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xdcb27a32 xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xdcc0e122 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xdca518f3 sprd_pinctrl_shutdown EXPORT_SYMBOL_GPL vmlinux 0xdcc9ec43 usb_hcd_pci_pm_ops EXPORT_SYMBOL_GPL vmlinux 0xdccc9278 imx_obtain_fixed_clk_hw EXPORT_SYMBOL_GPL vmlinux 0xdcdf9292 of_map_id -EXPORT_SYMBOL_GPL vmlinux 0xdce05365 mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0xdce1135c iommu_uapi_sva_bind_gpasid EXPORT_SYMBOL_GPL vmlinux 0xdcea11b9 sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xdcead8ee __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xdcf9d4dc nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0xdcfd0e03 pci_epf_create EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc EXPORT_SYMBOL_GPL vmlinux 0xdd0b2d85 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0xdd24d60d ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xdd0cc5fb unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0xdd26f200 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xdd291e56 gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xdd2c248e pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0xdd37d968 of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0xdd383cc6 ahci_ops EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister EXPORT_SYMBOL_GPL vmlinux 0xdd46ebd3 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xdd4cab1c devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdd56ee3a proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xdd7093eb xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0xdd78d2f2 of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0xdd7e4454 crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd863e8d xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0xdd963fe1 phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0xdda0ca0b aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xddb2a55f xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0xddb31f21 gpiod_export EXPORT_SYMBOL_GPL vmlinux 0xddb4c067 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0xddb98fae gpiochip_relres_irq EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove EXPORT_SYMBOL_GPL vmlinux 0xddcc2bcf meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0xdddae4bf nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xddde0993 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xdddfa321 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xddf0885c wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0xddf71fef dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0xde04ad12 devm_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xde09a3d1 irq_chip_ack_parent EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find EXPORT_SYMBOL_GPL vmlinux 0xde0c31a4 edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0xde166d38 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xde1d4159 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xde248c96 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xde2de006 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xde306f85 genphy_c45_pma_read_abilities EXPORT_SYMBOL_GPL vmlinux 0xde36bf96 percpu_down_write EXPORT_SYMBOL_GPL vmlinux 0xde3b8762 power_supply_set_property EXPORT_SYMBOL_GPL vmlinux 0xde4d7b90 usb_role_switch_register EXPORT_SYMBOL_GPL vmlinux 0xde523278 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xde5237d9 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xde6189d0 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xde68e289 dev_pm_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0xde69ae6e powercap_unregister_zone EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 EXPORT_SYMBOL_GPL vmlinux 0xde84bccf spi_mem_default_supports_op EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm EXPORT_SYMBOL_GPL vmlinux 0xdea0f31b genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0xdea10a3a hisi_reset_init EXPORT_SYMBOL_GPL vmlinux 0xdea7b109 virtqueue_detach_unused_buf EXPORT_SYMBOL_GPL vmlinux 0xdec40453 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0xdec50ff4 sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0xdec6de19 iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0xdecd2909 iomap_dio_rw EXPORT_SYMBOL_GPL vmlinux 0xdee1623f devm_power_supply_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xdee9557d fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xdeeb6733 bpf_trace_run3 EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf0bd4ba skb_complete_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1268d9 sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0xdf15ab91 devm_acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xdf1a59c2 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xdf2014e9 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xdf213529 kvm_vcpu_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xdf2ab0bc mddev_unlock EXPORT_SYMBOL_GPL vmlinux 0xdf2d1c43 dev_pm_domain_set EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xdf47e544 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xdf49e9a5 vfs_removexattr EXPORT_SYMBOL_GPL vmlinux 0xdf590504 elv_register -EXPORT_SYMBOL_GPL vmlinux 0xdf6ceb19 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xdf5be8c6 gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0xdf7a5b79 gnttab_pages_clear_private EXPORT_SYMBOL_GPL vmlinux 0xdf7f9773 fsnotify_add_mark EXPORT_SYMBOL_GPL vmlinux 0xdf8343ed scmi_driver_register EXPORT_SYMBOL_GPL vmlinux 0xdf943999 register_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0xdf968915 ata_acpi_gtm EXPORT_SYMBOL_GPL vmlinux 0xdf9787d5 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xdf984572 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xdfac16f4 sprd_pinctrl_core_probe +EXPORT_SYMBOL_GPL vmlinux 0xdfb39cb4 kvm_vcpu_map EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfccff8e spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0xdfd6865d k3_udma_glue_request_tx_chn EXPORT_SYMBOL_GPL vmlinux 0xdfda80bc blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0xdff5b1d1 __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xdff84540 ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0xdffa9ba3 of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0xdffc9f9d of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xdfff629b ahci_kick_engine EXPORT_SYMBOL_GPL vmlinux 0xe00aaae4 syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0xe01e11e7 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xe01160c8 i2c_handle_smbus_host_notify EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0xe026dfa1 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xe0259131 ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xe0365c7d device_set_wakeup_capable EXPORT_SYMBOL_GPL vmlinux 0xe0410e71 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xe04c6076 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe0505bf4 __mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe0657bff netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0xe088307a clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xe06cc591 crypto_unregister_shash EXPORT_SYMBOL_GPL vmlinux 0xe08c06a8 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xe08c354a pm_relax EXPORT_SYMBOL_GPL vmlinux 0xe08d95ca nvdimm_name EXPORT_SYMBOL_GPL vmlinux 0xe08ea904 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0xe0b0e1b6 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xe0a71617 security_path_chmod EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate EXPORT_SYMBOL_GPL vmlinux 0xe0ba3794 devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0xe0c10687 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0xe0d687b6 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xe0db33e4 apply_to_existing_page_range EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op -EXPORT_SYMBOL_GPL vmlinux 0xe0ee0d58 regmap_write_async EXPORT_SYMBOL_GPL vmlinux 0xe10746fe lp8788_update_bits EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe115a4ab gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0xe12d87be regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xe13d77de mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xe141b775 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xe118c18a gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0xe14346f9 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0xe14bab5b tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0xe15dd8f5 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0xe166411c bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe17761f8 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xe1816b4c devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xe189d7aa vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0xe19d9f3e phy_remove_lookup EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem EXPORT_SYMBOL_GPL vmlinux 0xe1a95431 io_cgrp_subsys EXPORT_SYMBOL_GPL vmlinux 0xe1aae5b2 xenbus_dev_cancel EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c18736 regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1d73157 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0xe1e05936 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xe1e50d58 devlink_sb_register EXPORT_SYMBOL_GPL vmlinux 0xe1eb9eea sata_sff_hardreset EXPORT_SYMBOL_GPL vmlinux 0xe1ec2034 devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xe1ec281a fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0xe1ecb7ce kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe22b6dd5 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0xe22bf10b regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xe20713e5 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xe2180c8e __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user EXPORT_SYMBOL_GPL vmlinux 0xe235abad vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0xe236abfa devm_regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0xe238a152 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0xe25c9e7f icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xe244b660 sdio_retune_crc_enable EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0xe2663e18 cpuidle_register_driver EXPORT_SYMBOL_GPL vmlinux 0xe28b0ac8 xhci_drop_endpoint EXPORT_SYMBOL_GPL vmlinux 0xe299306d edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0xe29a938a sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0xe29f20bf is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xe2a57003 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xe2b17903 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xe2a4cd3b iptunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier EXPORT_SYMBOL_GPL vmlinux 0xe2be7134 iommu_unmap EXPORT_SYMBOL_GPL vmlinux 0xe2c19756 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xe2c9cc08 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xe2c2fdcb tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe2c88f4d inet6_compat_ioctl EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2cfa5ad rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0xe2d14dc8 meson_pmx_get_groups EXPORT_SYMBOL_GPL vmlinux 0xe2e88759 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0xe2f5c5b4 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xe2eec83d security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0xe3008da5 usb_hub_claim_port EXPORT_SYMBOL_GPL vmlinux 0xe3067403 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xe3076193 kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0xe30f57d5 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0xe31021c7 tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec EXPORT_SYMBOL_GPL vmlinux 0xe3133e56 led_trigger_blink EXPORT_SYMBOL_GPL vmlinux 0xe3295b35 devm_usb_get_phy_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xe3296083 phy_check_downshift EXPORT_SYMBOL_GPL vmlinux 0xe32fbe37 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xe33446c6 lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod EXPORT_SYMBOL_GPL vmlinux 0xe33db8d1 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0xe341ade1 spi_async EXPORT_SYMBOL_GPL vmlinux 0xe354c63d tpm_is_tpm2 EXPORT_SYMBOL_GPL vmlinux 0xe369b1b6 of_led_get -EXPORT_SYMBOL_GPL vmlinux 0xe37543b0 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xe37faaf8 spi_setup EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe38aeeac devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0xe393244b tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xe3964f99 regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe3a74db1 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xe3a9b6fb crypto_register_scomps EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3be7916 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xe3c6d361 rtc_read_alarm EXPORT_SYMBOL_GPL vmlinux 0xe3ca4942 fuse_conn_put EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3ea9c7a bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xe3f32662 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3dfb837 devm_spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0xe4024f29 sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0xe4057e34 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xe40b440a __traceiter_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv EXPORT_SYMBOL_GPL vmlinux 0xe4183d4e pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xe4185a39 switchdev_handle_fdb_del_to_device EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print EXPORT_SYMBOL_GPL vmlinux 0xe42b9299 bsg_job_put EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4433651 ata_dummy_port_ops EXPORT_SYMBOL_GPL vmlinux 0xe443da5e pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xe4683210 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xe46ea807 sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0xe479f07c ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xe485a282 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xe4471ece ata_sas_queuecmd EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49d66ee skcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0xe4a0d61c proc_mkdir_data EXPORT_SYMBOL_GPL vmlinux 0xe4a2002a fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xe4ad8e58 thermal_zone_bind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b46afa alloc_page_buffers 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 0xe4c4faec kvm_vcpu_read_guest_page EXPORT_SYMBOL_GPL vmlinux 0xe4c8c674 report_iommu_fault EXPORT_SYMBOL_GPL vmlinux 0xe4c98e42 usb_enable_intel_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0xe4cb672d tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0xe4d71f0d regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xe4d9b4e0 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xe4e133d2 aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state EXPORT_SYMBOL_GPL vmlinux 0xe4f26918 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0xe4f88dae crypto_unregister_scomp EXPORT_SYMBOL_GPL vmlinux 0xe50229ef unregister_acpi_bus_type EXPORT_SYMBOL_GPL vmlinux 0xe516fb98 serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0xe52272b3 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xe53bce52 __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0xe546e5fb xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0xe549f033 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xe549107f css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xe550c2ce ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5585e21 sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe55d055d kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xe55d8e7c regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0xe571b65b tcp_twsk_destructor EXPORT_SYMBOL_GPL vmlinux 0xe57cf3ff regmap_mmio_detach_clk EXPORT_SYMBOL_GPL vmlinux 0xe57e8131 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xe57fa0d0 crypto_enqueue_request EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe59a34e2 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0xe5a17385 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe5a7a5ca crypto_stats_kpp_set_secret EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize +EXPORT_SYMBOL_GPL vmlinux 0xe5aa69cf pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xe5b08643 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xe5b54c8b sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0xe5be8664 mtk_pinconf_adv_drive_set EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0xe5c0bb94 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xe5c542b9 sdio_retune_crc_disable EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider EXPORT_SYMBOL_GPL vmlinux 0xe5cc293f is_transparent_hugepage EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter EXPORT_SYMBOL_GPL vmlinux 0xe5d0164f acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0xe5d04c83 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xe5d4fc35 platform_device_add EXPORT_SYMBOL_GPL vmlinux 0xe5dde7b7 ti_sci_inta_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xe5ed4950 kern_mount EXPORT_SYMBOL_GPL vmlinux 0xe5ee6750 devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xe5fb7b2e regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xe5ff30eb crypto_register_algs EXPORT_SYMBOL_GPL vmlinux 0xe6054251 __of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe610ac9e inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0xe620fd95 devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0xe6221eb1 tty_mode_ioctl EXPORT_SYMBOL_GPL vmlinux 0xe623e458 tty_save_termios EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe6319030 ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0xe63892c0 usb_disable_ltm EXPORT_SYMBOL_GPL vmlinux 0xe639fe8d devm_of_platform_populate EXPORT_SYMBOL_GPL vmlinux 0xe64fed01 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xe65dfd24 lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0xe6649225 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xe654239f platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xe6655314 spi_write_then_read EXPORT_SYMBOL_GPL vmlinux 0xe667a612 uprobe_register_refctr EXPORT_SYMBOL_GPL vmlinux 0xe6740eee pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xe6815c28 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0xe674b05f inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xe687ca6d dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0xe690abeb fsl_mc_get_endpoint EXPORT_SYMBOL_GPL vmlinux 0xe691eaad usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0xe69c410f crypto_grab_shash EXPORT_SYMBOL_GPL vmlinux 0xe6a1ed06 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xe6b852ca sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xe6beafb0 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0xe6c07330 dst_blackhole_redirect EXPORT_SYMBOL_GPL vmlinux 0xe6d9ad76 iommu_uapi_sva_unbind_gpasid EXPORT_SYMBOL_GPL vmlinux 0xe6dfc836 ti_sci_get_handle EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head EXPORT_SYMBOL_GPL vmlinux 0xe6f5e6f5 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0xe6f69aba ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe6fa352e task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xe6fb88fe devfreq_event_enable_edev EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert EXPORT_SYMBOL_GPL vmlinux 0xe7043b0e misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0xe73eda44 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xe710fe30 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe7192814 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xe72e22b2 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xe7400e9a tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0xe752a43b devm_fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe75672e9 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xe75ab11e devlink_port_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0xe75b7170 of_thermal_get_trip_points EXPORT_SYMBOL_GPL vmlinux 0xe75dede7 noop_invalidatepage EXPORT_SYMBOL_GPL vmlinux 0xe762c3d1 ahci_platform_disable_resources EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe7746750 scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit EXPORT_SYMBOL_GPL vmlinux 0xe78f1363 pci_walk_bus EXPORT_SYMBOL_GPL vmlinux 0xe79149e3 disk_uevent EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate -EXPORT_SYMBOL_GPL vmlinux 0xe7948b9c __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0xe7a23f1a regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xe7a718b2 __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xe7b3172e tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0xe7b517f4 sprd_pinctrl_core_probe +EXPORT_SYMBOL_GPL vmlinux 0xe7c2ec12 of_icc_get_by_index EXPORT_SYMBOL_GPL vmlinux 0xe7d6a9a6 ata_acpi_gtm_xfermask EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7e1fabe crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0xe7e5ecf7 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xe7e8126b meson_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xe810b2ad inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt EXPORT_SYMBOL_GPL vmlinux 0xe818dc7c gnttab_foreach_grant_in_range EXPORT_SYMBOL_GPL vmlinux 0xe8199ff8 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xe81a6964 device_property_match_string EXPORT_SYMBOL_GPL vmlinux 0xe820aea1 dev_pm_opp_remove_table EXPORT_SYMBOL_GPL vmlinux 0xe824c6b1 gnttab_pages_set_private EXPORT_SYMBOL_GPL vmlinux 0xe82e4cac usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xe83172e2 tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0xe8362401 devm_pm_opp_attach_genpd EXPORT_SYMBOL_GPL vmlinux 0xe8441568 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xe84bca37 vcpu_load EXPORT_SYMBOL_GPL vmlinux 0xe84ed34a unregister_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit EXPORT_SYMBOL_GPL vmlinux 0xe85da29a dev_pm_genpd_set_performance_state EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start EXPORT_SYMBOL_GPL vmlinux 0xe86b22de power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0xe881be4a crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xe88a88d9 get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0xe8980db1 em_dev_register_perf_domain EXPORT_SYMBOL_GPL vmlinux 0xe8999d60 usb_unlocked_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0xe8a01a92 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xe8a15322 ahci_platform_init_host EXPORT_SYMBOL_GPL vmlinux 0xe8a64a10 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xe8a80d04 bpf_prog_inc EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8c33ec3 device_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0xe8c41547 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe8cb49ab devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0xe8e0aea4 sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0xe8eb9d76 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xe8f2372f wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0xe8f2aea2 mtk_pinconf_bias_disable_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xe8f9bb69 __netpoll_cleanup EXPORT_SYMBOL_GPL vmlinux 0xe90c7659 k3_udma_glue_rx_dma_to_cppi5_addr EXPORT_SYMBOL_GPL vmlinux 0xe911c6db cpufreq_dbs_governor_start EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe9213216 cpufreq_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xe92523bb irq_chip_retrigger_hierarchy EXPORT_SYMBOL_GPL vmlinux 0xe937a183 adp5520_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe94fb4e8 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0xe950a191 bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0xe952a8b3 __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xe9566476 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xe9481e12 add_swap_extent EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xe963a745 devfreq_event_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xe975256a devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xe97b0c2c icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0xe981762b inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe991a732 xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0xe9a0c71c fsverity_file_open EXPORT_SYMBOL_GPL vmlinux 0xe9a1647b evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xe9b2aa17 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xe9c3abdb ata_link_next EXPORT_SYMBOL_GPL vmlinux 0xe9c3c46a regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe9cefcd5 sata_link_debounce EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap EXPORT_SYMBOL_GPL vmlinux 0xe9d1e212 pcie_reset_flr EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn EXPORT_SYMBOL_GPL vmlinux 0xe9e51739 cpufreq_table_index_unsorted EXPORT_SYMBOL_GPL vmlinux 0xe9e86959 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xe9efeb96 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0xe9f26e5c regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0xe9f9c7cc pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xe9f78fce hwmon_device_register EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea0796dc sdev_evt_send_simple EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1c9b5f device_add +EXPORT_SYMBOL_GPL vmlinux 0xea2324b9 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xea308625 devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xea310320 nfnl_ct_hook EXPORT_SYMBOL_GPL vmlinux 0xea33f6a1 cpci_hp_register_bus EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free EXPORT_SYMBOL_GPL vmlinux 0xea3cf74f nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0xea437fde spi_controller_resume EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss EXPORT_SYMBOL_GPL vmlinux 0xea532279 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xea60319b device_match_of_node EXPORT_SYMBOL_GPL vmlinux 0xea81fc30 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0xea83120c __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0xea87f9d6 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0xeaa0958c i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xeaa6b1b5 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xeaa8d1e4 ata_pci_device_resume EXPORT_SYMBOL_GPL vmlinux 0xeab6c73d of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xeabd5523 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xeac1c306 kvm_unmap_gfn EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeade1b59 bgmac_alloc EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae591e6 mmc_pwrseq_register EXPORT_SYMBOL_GPL vmlinux 0xeae87538 pm_generic_freeze_noirq EXPORT_SYMBOL_GPL vmlinux 0xeaeb2980 ata_ncq_sdev_attrs EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 +EXPORT_SYMBOL_GPL vmlinux 0xeafdd86b crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0xeb0deb41 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xeb0f6488 device_show_bool EXPORT_SYMBOL_GPL vmlinux 0xeb23f8b4 usb_deregister_dev EXPORT_SYMBOL_GPL vmlinux 0xeb2ffa84 uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0xeb3f2b84 nfnl_ct_hook EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock EXPORT_SYMBOL_GPL vmlinux 0xeb47e4c7 mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0xeb56ea0e kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0xeb61f18e sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xeb62cb89 fwnode_get_next_available_child_node EXPORT_SYMBOL_GPL vmlinux 0xeb763b2e clk_regmap_divider_ops EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xeb7b671a ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xeb88eb19 rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0xeb97b990 clk_regmap_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xeb97cbad mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0xeb9b8eb9 pm_clk_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0xebb684bb extcon_set_state_sync EXPORT_SYMBOL_GPL vmlinux 0xebbc5b63 dm_send_uevents EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebdb67c2 msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0xebe32721 tpm_tis_resume EXPORT_SYMBOL_GPL vmlinux 0xebeb33cf usb_enable_ltm EXPORT_SYMBOL_GPL vmlinux 0xebf2f277 max8997_bulk_read EXPORT_SYMBOL_GPL vmlinux 0xebf36e40 led_init_core EXPORT_SYMBOL_GPL vmlinux 0xec076033 pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0xec0e6d4c dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xec1983a7 inode_congested EXPORT_SYMBOL_GPL vmlinux 0xec2ca4dd cpci_hp_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0xec319ee4 usb_driver_set_configuration EXPORT_SYMBOL_GPL vmlinux 0xec32c9e0 iopf_queue_remove_device EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec612fb2 ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0xec64df92 ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify EXPORT_SYMBOL_GPL vmlinux 0xec7aa2d7 iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xec9fc568 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xec859da6 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xec9fa55f regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xec9fc922 pm_wakeup_dev_event EXPORT_SYMBOL_GPL vmlinux 0xecb07107 mctrl_gpio_init_noauto EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xeccccb6c perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xecd2b542 devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xed01740a regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xed070fa9 wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0xeceec1a8 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xed1c27bf ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xed32bdd3 fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0xed387d96 devres_destroy EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed3b2d41 synth_event_add_next_val EXPORT_SYMBOL_GPL vmlinux 0xed5e8f6a rio_route_get_entry EXPORT_SYMBOL_GPL vmlinux 0xed74a54d pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xed796caf ip_fib_metrics_init EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xed7dcbde platform_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xed87e731 pci_restore_msi_state EXPORT_SYMBOL_GPL vmlinux 0xed8be743 wm831x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xed920ea5 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xed970d1d __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xeda79472 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0xedb27ab0 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xed98eda3 bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0xedb6ff14 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xedccc88b spi_bus_unlock EXPORT_SYMBOL_GPL vmlinux 0xedcedae5 virtqueue_get_buf_ctx EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xede6d21e thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xede150b2 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xede29763 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xede92d52 kvm_read_guest_offset_cached EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xede9edfa cpufreq_unregister_governor EXPORT_SYMBOL_GPL vmlinux 0xedeb542a syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xee1dd1cd crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee28c27d set_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0xee2b0fa8 usb_get_status EXPORT_SYMBOL_GPL vmlinux 0xee316218 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xee36dc78 crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee3b8b0b crypto_stats_kpp_generate_public_key EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee5e4fa2 is_skb_forwardable 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 0xee73cf1a __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xee7af1c2 dev_pm_opp_enable EXPORT_SYMBOL_GPL vmlinux 0xee7de75f irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xee84213f perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0xee9d5b6f sdio_get_host_pm_caps EXPORT_SYMBOL_GPL vmlinux 0xee9e829b ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xeea4e165 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xeeb0302c devlink_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeeb2c08d ata_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0xeeb2d12b iomap_fiemap EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd EXPORT_SYMBOL_GPL vmlinux 0xeed1d207 fsl_mc_device_group @@ -25934,113 +25951,117 @@ EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0xeeddf56b k3_ringacc_ring_cfg EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run EXPORT_SYMBOL_GPL vmlinux 0xeefdf695 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xef009cb4 __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0xef13f920 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xef1843ac ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xef19a350 fw_devlink_purge_absent_suppliers EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef290bff blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xef3bc7df platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xef458ec4 rdev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef5b0929 spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef6073b9 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xef694c7c fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6f616b fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xef70a32d tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef711bbe switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xef744bb5 sbitmap_queue_clear EXPORT_SYMBOL_GPL vmlinux 0xef75da3b edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xef7ff39d regmap_attach_dev EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last EXPORT_SYMBOL_GPL vmlinux 0xef9b1042 ohci_hub_status_data EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier EXPORT_SYMBOL_GPL vmlinux 0xefa92dd5 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0xefc50184 tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xefc5a862 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xefd91be2 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xefd92e3c register_trace_event EXPORT_SYMBOL_GPL vmlinux 0xefe6fdd5 ohci_setup EXPORT_SYMBOL_GPL vmlinux 0xefea749e acpi_dev_get_dma_resources EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xeff0e2c3 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xeff4dfde scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0xeff767e2 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xeffa1c47 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xeffbf843 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0xf00cae0e l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0xf013741d ata_sff_data_xfer32 EXPORT_SYMBOL_GPL vmlinux 0xf018b5f5 rio_mport_initialize EXPORT_SYMBOL_GPL vmlinux 0xf0196662 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xf02054e7 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0xf027d4f4 regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xf02857f8 bsg_register_queue EXPORT_SYMBOL_GPL vmlinux 0xf0301734 thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0xf03b0410 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xf041233a gpiod_direction_input EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05b2367 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf05e0276 bgmac_enet_probe EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf061aca9 kvm_io_bus_get_dev EXPORT_SYMBOL_GPL vmlinux 0xf068a4d7 blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable EXPORT_SYMBOL_GPL vmlinux 0xf06d4e07 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf0729623 device_store_ulong EXPORT_SYMBOL_GPL vmlinux 0xf073faf7 devm_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf09c343e apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0xf09fc3f2 devlink_dpipe_headers_register EXPORT_SYMBOL_GPL vmlinux 0xf0a0c69d init_iova_domain EXPORT_SYMBOL_GPL vmlinux 0xf0baf827 xenbus_probe_devices EXPORT_SYMBOL_GPL vmlinux 0xf0c77e27 free_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0xf0ca13dd extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xf0ca470e crypto_unregister_kpp EXPORT_SYMBOL_GPL vmlinux 0xf0d478c7 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xf0d66970 device_match_fwnode EXPORT_SYMBOL_GPL vmlinux 0xf0d820a4 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf0d8f709 i2c_match_id EXPORT_SYMBOL_GPL vmlinux 0xf0d97b11 md_run EXPORT_SYMBOL_GPL vmlinux 0xf0df8691 tc3589x_block_write EXPORT_SYMBOL_GPL vmlinux 0xf0e5e488 of_platform_depopulate EXPORT_SYMBOL_GPL vmlinux 0xf0ea1d5e __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0xf0fe79d6 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xf10a2e6a fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0xf10b247e addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xf0ee57e1 devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf101d3c5 nf_queue EXPORT_SYMBOL_GPL vmlinux 0xf10e47f8 fscrypt_ioctl_get_key_status EXPORT_SYMBOL_GPL vmlinux 0xf1174a49 rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0xf11cc289 raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll -EXPORT_SYMBOL_GPL vmlinux 0xf12d5431 unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0xf13090aa iommu_set_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xf1362ced xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0xf156b2ff __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xf15dbf7c kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0xf1600be5 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xf14d073d skcipher_walk_complete EXPORT_SYMBOL_GPL vmlinux 0xf160e226 nvdimm_pmem_region_create EXPORT_SYMBOL_GPL vmlinux 0xf16c16b4 fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0xf1739921 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xf16dd02a perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xf171c258 skb_morph EXPORT_SYMBOL_GPL vmlinux 0xf17bdf21 mmu_notifier_get_locked EXPORT_SYMBOL_GPL vmlinux 0xf17bf584 powercap_register_control_type EXPORT_SYMBOL_GPL vmlinux 0xf17c756c phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf17d22e3 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0xf1806354 skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit EXPORT_SYMBOL_GPL vmlinux 0xf18ddf4d pci_epf_destroy EXPORT_SYMBOL_GPL vmlinux 0xf1a13507 of_irq_parse_raw EXPORT_SYMBOL_GPL vmlinux 0xf1bad1cb usb_wakeup_notification EXPORT_SYMBOL_GPL vmlinux 0xf1bc5b53 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf1c4768c gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0xf1cd4637 xenbus_watch_pathfmt EXPORT_SYMBOL_GPL vmlinux 0xf1cd92db fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0xf1e1a4bd fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xf1e06c23 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xf1ec371f ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xf1ef2abc perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0xf1ffcaa8 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xf20bfa00 clk_hw_get_name EXPORT_SYMBOL_GPL vmlinux 0xf21b2d19 virtio_device_freeze EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2202cdb ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0xf2264a62 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xf23eb25b fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0xf2418972 pm_clk_destroy EXPORT_SYMBOL_GPL vmlinux 0xf241e46f topology_set_thermal_pressure -EXPORT_SYMBOL_GPL vmlinux 0xf2545f23 regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xf25f75e5 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xf264dbf2 hwmon_notify_event EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xf28822c1 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on EXPORT_SYMBOL_GPL vmlinux 0xf299dc5f subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xf2a4794c i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xf2a5b565 sdio_writel EXPORT_SYMBOL_GPL vmlinux 0xf2a92529 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xf2a9cad3 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xf2ae9b88 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0xf2afc181 i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2b45179 bio_start_io_acct_time -EXPORT_SYMBOL_GPL vmlinux 0xf2b99b15 inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0xf2bc183b clk_divider_ops EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf3067a8f crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support EXPORT_SYMBOL_GPL vmlinux 0xf30d706d rdev_clear_badblocks EXPORT_SYMBOL_GPL vmlinux 0xf30dfc77 devm_thermal_add_hwmon_sysfs @@ -26049,357 +26070,353 @@ 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 0xf31cc6c0 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xf3262ae1 devlink_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0xf32ab87e screen_glyph_unicode EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 EXPORT_SYMBOL_GPL vmlinux 0xf341e569 dma_buf_move_notify EXPORT_SYMBOL_GPL vmlinux 0xf346c498 pci_num_vf EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf362612e fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xf369c765 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0xf36d1a31 lp8788_read_byte EXPORT_SYMBOL_GPL vmlinux 0xf37052a0 efivars_kobject EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf382d4ef sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0xf385f431 of_device_modalias EXPORT_SYMBOL_GPL vmlinux 0xf386ba28 pci_epc_map_msi_irq EXPORT_SYMBOL_GPL vmlinux 0xf386bbb4 housekeeping_cpumask EXPORT_SYMBOL_GPL vmlinux 0xf3992b87 irq_find_matching_fwspec EXPORT_SYMBOL_GPL vmlinux 0xf3a61cc0 fsl_mc_bus_dpdmux_type EXPORT_SYMBOL_GPL vmlinux 0xf3a76b4f pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xf3b43d2f ata_link_next EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove EXPORT_SYMBOL_GPL vmlinux 0xf3b9ca97 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xf3bfe277 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xf3c5e357 ata_scsi_queuecmd EXPORT_SYMBOL_GPL vmlinux 0xf3d330ba pinctrl_force_default EXPORT_SYMBOL_GPL vmlinux 0xf3d37678 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xf3d684c5 fs_kobj EXPORT_SYMBOL_GPL vmlinux 0xf3daed5a dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xf3dd7558 devm_regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0xf3eb8728 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xf3eba226 __page_file_mapping EXPORT_SYMBOL_GPL vmlinux 0xf3f0dd56 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xf3f5e6ff tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xf3fa0d39 inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0xf3fb3150 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xf3fb9151 fw_devlink_purge_absent_suppliers EXPORT_SYMBOL_GPL vmlinux 0xf403e9d6 watchdog_notify_pretimeout EXPORT_SYMBOL_GPL vmlinux 0xf406a9b5 usb_remove_phy EXPORT_SYMBOL_GPL vmlinux 0xf4135a87 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xf41771d5 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xf4450bf2 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0xf4213c84 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xf44f0dc0 icc_disable EXPORT_SYMBOL_GPL vmlinux 0xf45c4102 pinctrl_pm_select_sleep_state EXPORT_SYMBOL_GPL vmlinux 0xf45e45d5 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0xf4651583 xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf46a34ff gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xf4707cf4 inet_ehash_locks_alloc EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf47a286f rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf486316a stmpe_block_write EXPORT_SYMBOL_GPL vmlinux 0xf48a2ef5 led_sysfs_disable EXPORT_SYMBOL_GPL vmlinux 0xf48ed800 fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0xf49a3116 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf49c4563 sdio_release_host EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0xf4ae49e4 blk_mq_flush_busy_ctxs EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal EXPORT_SYMBOL_GPL vmlinux 0xf4b1ac6e dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf4c06b0d blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4ce27f8 page_endio +EXPORT_SYMBOL_GPL vmlinux 0xf4d2d644 sata_link_debounce EXPORT_SYMBOL_GPL vmlinux 0xf4d81e99 tty_kclose EXPORT_SYMBOL_GPL vmlinux 0xf4e14b65 fuse_mount_remove EXPORT_SYMBOL_GPL vmlinux 0xf4e35e28 sbitmap_prepare_to_wait EXPORT_SYMBOL_GPL vmlinux 0xf4e43d0a spi_mem_get_name EXPORT_SYMBOL_GPL vmlinux 0xf4e58f13 irq_domain_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0xf4e6bc01 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0xf4ecbfaa devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xf4fcecab crypto_register_rngs EXPORT_SYMBOL_GPL vmlinux 0xf5001266 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf50732e8 crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0xf50774df da9052_free_irq EXPORT_SYMBOL_GPL vmlinux 0xf50776c6 led_trigger_write EXPORT_SYMBOL_GPL vmlinux 0xf5125446 dprc_cleanup EXPORT_SYMBOL_GPL vmlinux 0xf51cc1bd dev_pm_opp_remove EXPORT_SYMBOL_GPL vmlinux 0xf51d70fd pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xf51db8ad platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0xf51ebf37 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0xf532b7a9 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xf5219532 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xf521df67 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xf53bb4c1 synth_event_create EXPORT_SYMBOL_GPL vmlinux 0xf548988d put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xf54a23cc wait_for_stable_page EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock EXPORT_SYMBOL_GPL vmlinux 0xf557ba76 gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0xf569e865 page_endio -EXPORT_SYMBOL_GPL vmlinux 0xf56a804c kvm_make_all_cpus_request -EXPORT_SYMBOL_GPL vmlinux 0xf5721d81 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xf5854fc3 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xf57fd81c proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0xf5855a0e nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0xf5998c78 gfn_to_hva EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus EXPORT_SYMBOL_GPL vmlinux 0xf5a91a1e debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xf5b0e43e kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0xf5b26071 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xf5bc2ac7 hisi_reset_init EXPORT_SYMBOL_GPL vmlinux 0xf5c239a6 mtk_pinconf_bias_set -EXPORT_SYMBOL_GPL vmlinux 0xf5c76a2f ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0xf5c99d6f pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0xf5d3de00 kthread_unpark EXPORT_SYMBOL_GPL vmlinux 0xf5e0d00e ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xf5e516c8 sched_trace_cfs_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node EXPORT_SYMBOL_GPL vmlinux 0xf6049776 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xf60ba2f0 bgmac_enet_resume +EXPORT_SYMBOL_GPL vmlinux 0xf60b3265 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xf60c6530 regmap_noinc_read EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall EXPORT_SYMBOL_GPL vmlinux 0xf62d7912 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xf63757f7 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xf63ee585 xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0xf644b983 rio_unmap_inb_region EXPORT_SYMBOL_GPL vmlinux 0xf645ed3c phy_set_speed EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf6526a6f devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf65e2795 rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync EXPORT_SYMBOL_GPL vmlinux 0xf6718b9f fsl_mc_bus_dpseci_type -EXPORT_SYMBOL_GPL vmlinux 0xf6873ab9 devm_device_remove_group EXPORT_SYMBOL_GPL vmlinux 0xf68742fe devm_led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0xf6876425 ata_pci_bmdma_init_one EXPORT_SYMBOL_GPL vmlinux 0xf68a2ebd genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0xf68bbf10 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0xf6924b4f sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0xf6969ba3 ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0xf6a12b6b perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c4d5fe fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d914eb bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xf6ca297f __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xf6d373fd regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xf6d985b5 __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xf6dbee1c __phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0xf6e281da tty_prepare_flip_string EXPORT_SYMBOL_GPL vmlinux 0xf6e561f1 dm_internal_resume EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge EXPORT_SYMBOL_GPL vmlinux 0xf6f326a8 gnttab_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xf70b7505 gpiod_set_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xf71805c0 acpi_get_pci_dev EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size EXPORT_SYMBOL_GPL vmlinux 0xf72c0579 powercap_register_zone EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf7374b6d kvm_vcpu_write_guest EXPORT_SYMBOL_GPL vmlinux 0xf73d652f extcon_set_property EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user EXPORT_SYMBOL_GPL vmlinux 0xf745b6fd acpi_dma_request_slave_chan_by_index 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 0xf75385b9 mmc_regulator_enable_vqmmc EXPORT_SYMBOL_GPL vmlinux 0xf75bfc84 mtk_pinconf_bias_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xf773b4a7 regulator_get EXPORT_SYMBOL_GPL vmlinux 0xf7804ef1 usb_autopm_put_interface_no_suspend EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync EXPORT_SYMBOL_GPL vmlinux 0xf78456c5 usb_wakeup_enabled_descendants EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xf79a0a12 crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0xf79ef967 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xf79f16ac l3mdev_update_flow EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xf7c25125 devm_pm_opp_set_supported_hw EXPORT_SYMBOL_GPL vmlinux 0xf7c3e7a4 fat_update_time EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7d0d027 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xf7cc68c0 ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0xf7d90825 handle_irq_desc EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite EXPORT_SYMBOL_GPL vmlinux 0xf7ea75d1 usb_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0xf7ec8162 of_get_videomode EXPORT_SYMBOL_GPL vmlinux 0xf7eeb9d1 platform_bus EXPORT_SYMBOL_GPL vmlinux 0xf7f5812d dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0xf7f7b42a gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0xf80042ed dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0xf80470a0 inet6_destroy_sock EXPORT_SYMBOL_GPL vmlinux 0xf8057b2e usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xf814cae4 platform_add_devices EXPORT_SYMBOL_GPL vmlinux 0xf8179678 mtk_pinconf_drive_get -EXPORT_SYMBOL_GPL vmlinux 0xf817f82f __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xf81db44e inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xf82103b9 bpf_map_inc EXPORT_SYMBOL_GPL vmlinux 0xf8280d02 __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0xf82befe8 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf848af79 device_store_ulong EXPORT_SYMBOL_GPL vmlinux 0xf84fd302 palmas_ext_control_req_config EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xf85bc7e2 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0xf85e6764 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8612b54 sched_trace_rq_avg_irq EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk +EXPORT_SYMBOL_GPL vmlinux 0xf8675653 devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xf86e29d0 irq_chip_set_parent_state EXPORT_SYMBOL_GPL vmlinux 0xf87a4f11 iomap_truncate_page EXPORT_SYMBOL_GPL vmlinux 0xf89496c9 iommu_uapi_cache_invalidate -EXPORT_SYMBOL_GPL vmlinux 0xf8a740e2 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf89dbdd5 devm_hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0xf8b11e06 debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xf8cf7a41 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0xf8dc5eb6 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xf8dd16c6 crypto_unregister_rngs EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fdefaf regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xf8ffaa87 devlink_dpipe_table_unregister EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable EXPORT_SYMBOL_GPL vmlinux 0xf9066a03 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xf906a9e3 __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xf914f6d0 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xf91a573c perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0xf91bbaaf efivar_entry_set_get_size EXPORT_SYMBOL_GPL vmlinux 0xf922c378 dax_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xf9270b14 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xf92999b2 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xf93c8371 devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0xf944fd59 serial8250_rpm_put_tx EXPORT_SYMBOL_GPL vmlinux 0xf94d6077 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xf94f463d regmap_fields_read EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf955975b usb_control_msg_recv EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf96500ba ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xf9616844 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xf9621267 acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version -EXPORT_SYMBOL_GPL vmlinux 0xf9683990 tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0xf987e04e input_class EXPORT_SYMBOL_GPL vmlinux 0xf9988806 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xf99894de devm_mipi_dsi_device_register_full EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi -EXPORT_SYMBOL_GPL vmlinux 0xf9a97f55 fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free +EXPORT_SYMBOL_GPL vmlinux 0xf9d5f43e crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0xf9e72c4e cpu_device_create EXPORT_SYMBOL_GPL vmlinux 0xf9ebe553 pci_bridge_emul_init -EXPORT_SYMBOL_GPL vmlinux 0xfa17b249 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xf9f2f5e7 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xfa07b745 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0xfa0a1d9a platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xfa0c0a3f sata_link_hardreset EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa209377 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xfa21c50f of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xfa28f1f7 bpf_map_put EXPORT_SYMBOL_GPL vmlinux 0xfa342a0d pl08x_filter_id EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa370f13 device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0xfa4042e1 pci_dev_run_wake EXPORT_SYMBOL_GPL vmlinux 0xfa40bd7d edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0xfa658442 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xfa5ae8cf ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa86b9cc phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xfa848e9e crypto_req_done EXPORT_SYMBOL_GPL vmlinux 0xfa905258 serdev_device_write_flush EXPORT_SYMBOL_GPL vmlinux 0xfa9aa2d1 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xfaa31073 __traceiter_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0xfaa7e382 crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0xfaabce9f adp5520_clr_bits EXPORT_SYMBOL_GPL vmlinux 0xfaadfcb4 blk_mq_alloc_sq_tag_set EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit EXPORT_SYMBOL_GPL vmlinux 0xfab3f543 pm_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfac5f59e yield_to EXPORT_SYMBOL_GPL vmlinux 0xfac8ee82 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0xfacac5cc ahci_qc_issue EXPORT_SYMBOL_GPL vmlinux 0xface318a dev_pm_opp_find_freq_ceil EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfada3489 tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0xfae8e6f7 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0xfaeb1560 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xfaecef86 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xfaef2fbb crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xfaefa386 stmpe_reg_read EXPORT_SYMBOL_GPL vmlinux 0xfaf41148 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0xfb30ab5e netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync EXPORT_SYMBOL_GPL vmlinux 0xfb36cf2d clk_fixed_factor_ops EXPORT_SYMBOL_GPL vmlinux 0xfb41b4f4 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xfb4cf5fc device_remove_properties EXPORT_SYMBOL_GPL vmlinux 0xfb5aaaec spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0xfb6b73dc fscrypt_set_context EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb6f95db security_kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0xfb76cb4a devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0xfb7851a9 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xfb79d99f pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0xfbbc711e fscrypt_fname_siphash EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action EXPORT_SYMBOL_GPL vmlinux 0xfbbf995f usb_acpi_set_power_state EXPORT_SYMBOL_GPL vmlinux 0xfbc15574 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xfbc23c15 trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0xfbcfa0e0 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xfbe3f38e switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xfbe9923f vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xfbdfd917 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0xfbf6a126 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0xfbf8b0f5 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xfbfbeeff stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xfbfd5578 ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xfc0085ed dev_pm_opp_get_level EXPORT_SYMBOL_GPL vmlinux 0xfc03a4ca proc_dou8vec_minmax EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc08095e devlink_port_params_register EXPORT_SYMBOL_GPL vmlinux 0xfc08deb4 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0xfc0a45d9 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0xfc1324a3 sched_set_normal EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc21754c synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc4e434d gpiochip_irq_domain_activate EXPORT_SYMBOL_GPL vmlinux 0xfc50de97 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xfc53e32b __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0xfc5b83ee amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0xfc6bfe1d crypto_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0xfc746b3c gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0xfc77b91a __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xfc833e74 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xfc82609a vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0xfc8ff679 usb_reset_device EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data EXPORT_SYMBOL_GPL vmlinux 0xfc96b979 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xfc99169a ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0xfca43c1f devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xfca81443 perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed -EXPORT_SYMBOL_GPL vmlinux 0xfcc0fc18 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xfcc16675 ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcdce222 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0xfcdf809e shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0xfce45255 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xfccb8e79 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xfcead894 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xfcef38ff gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xfcf42f93 vfs_kern_mount EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd05a815 peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes EXPORT_SYMBOL_GPL vmlinux 0xfd081631 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xfd12d3ce blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn EXPORT_SYMBOL_GPL vmlinux 0xfd2224c4 pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0xfd241b06 sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0xfd2da355 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xfd2fb957 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xfd3347ec sfp_bus_find_fwnode EXPORT_SYMBOL_GPL vmlinux 0xfd34a2d7 usb_acpi_port_lpm_incapable EXPORT_SYMBOL_GPL vmlinux 0xfd354761 bsg_setup_queue EXPORT_SYMBOL_GPL vmlinux 0xfd36c3ac rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0xfd3972c2 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xfd3c732f device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xfd3e2b28 devlink_remote_reload_actions_performed EXPORT_SYMBOL_GPL vmlinux 0xfd5081d7 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xfd6ab73b raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xfd5362c9 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xfd6a2beb devlink_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable EXPORT_SYMBOL_GPL vmlinux 0xfd77fb50 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xfd7a9d70 clk_hw_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xfd7d2ae0 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xfd905e2e mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xfd992485 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0xfd9b753c mtk_build_eint EXPORT_SYMBOL_GPL vmlinux 0xfd9c19f0 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xfda1075a sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xfda489e1 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xfdb4f610 devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xfdbc06d5 fib_nh_common_init EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdd6512b crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xfde8d955 __pm_relax EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel EXPORT_SYMBOL_GPL vmlinux 0xfdf4f410 iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0xfe01593c ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xfdfa5eb8 mtk_build_eint EXPORT_SYMBOL_GPL vmlinux 0xfe06aad8 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xfe0bd6a0 acomp_request_free EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe0ed509 fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release -EXPORT_SYMBOL_GPL vmlinux 0xfe222024 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xfe295d81 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xfe2e7303 thermal_zone_unbind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0xfe431612 usb_for_each_port EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns EXPORT_SYMBOL_GPL vmlinux 0xfe4ae9aa thermal_zone_of_sensor_register EXPORT_SYMBOL_GPL vmlinux 0xfe4bf576 acpi_dev_add_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0xfe68c032 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xfe6dc279 skb_segment EXPORT_SYMBOL_GPL vmlinux 0xfe6f5209 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xfe8a0e2e icc_provider_add -EXPORT_SYMBOL_GPL vmlinux 0xfe8b265a kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xfe7598ef __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xfe77152c crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfe87237b skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe97e126 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xfe94b9af ahci_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister EXPORT_SYMBOL_GPL vmlinux 0xfed5c69e devm_bitmap_alloc EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xfedf4341 nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff15206d l3mdev_update_flow EXPORT_SYMBOL_GPL vmlinux 0xff1618ce ata_sff_prereset EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff2767e8 device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2a8814 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xff3d1c1c vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff4ea07e sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xff4a590f __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xff56162a rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xff69e633 ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xff8169de phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xff82a7d8 trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0xff8f05c6 irq_chip_eoi_parent EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffa6d07b regulator_enable EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies EXPORT_SYMBOL_GPL vmlinux 0xffaf90fd param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xffcee19d crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0xffebba22 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xfff0c870 get_device -EXPORT_SYMBOL_GPL vmlinux 0xfffdde43 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xffc822f9 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xfff92267 __fib_lookup FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux IIO_ADISLIB EXPORT_SYMBOL 0x001c64b1 __adis_enable_irq drivers/iio/imu/adis_lib IIO_ADISLIB EXPORT_SYMBOL 0xfa75309a adis_debugfs_reg_access drivers/iio/imu/adis_lib @@ -26414,45 +26431,45 @@ IIO_ADISLIB EXPORT_SYMBOL_GPL 0x9e6d0f29 __adis_initial_startup drivers/iio/imu/ IIO_ADISLIB EXPORT_SYMBOL_GPL 0xb5620b8c __adis_write_reg drivers/iio/imu/adis_lib IIO_ADISLIB EXPORT_SYMBOL_GPL 0xd6dabaf3 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x1e3f6a69 __adis_reset drivers/iio/imu/adis_lib -IIO_HID EXPORT_SYMBOL 0x0b33fa94 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x1e466cb6 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x26d60aa6 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x3aa024d0 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x704a6c36 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x7580d347 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x241dfc4e hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x27c05d78 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x36158f28 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x412bc88c hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x4cfe2183 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x5c182dd4 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common IIO_HID EXPORT_SYMBOL 0x8d1083f4 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x9fcf1719 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xc07845ba hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xc33a9e38 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xc6dd449f hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xf8274e41 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xa82c1d30 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xb5247a67 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xbb879dba hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xc3a6ebbf hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x994389cb hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9a5cfb3c hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xadf54893 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe465037d hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xf86400ae hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x11c1c408 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x40872c2a hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x7e630194 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf479dab9 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common LTC2497 EXPORT_SYMBOL 0x1b94cba9 ltc2497core_remove drivers/iio/adc/ltc2497-core LTC2497 EXPORT_SYMBOL 0xb7862361 ltc2497core_probe drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x030b043b mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x0541314e mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x46fee28e mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x649b8e05 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x7472e0a0 mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x8eafc69d __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9a69a03f mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9e0ac736 mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xaaf9eb22 mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xad1dd370 mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xbaaf7cce chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xbe29de82 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xe4e36b84 mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xe7c57585 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x18c7b0a5 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3306607f mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x47f81193 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x68129243 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x69b258d8 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6a91a460 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x730d45e4 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7a96fdf5 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x98c29be8 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc94456f0 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd3fe05c4 chameleon_parse_cells drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x028025ab nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x05ee021b nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x2df44e7c nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x39a2eaac nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x873519b3 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +MCB EXPORT_SYMBOL_GPL 0xedf65b41 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xf045d0b6 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xf23843ef mcb_get_irq drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x03ef504c nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x241ecef7 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x46fc375a nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x6c0b2457 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xbec4e851 nvme_execute_passthru_rq drivers/nvme/host/nvme-core PMBUS EXPORT_SYMBOL_GPL 0x0958d6a6 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core PMBUS EXPORT_SYMBOL_GPL 0x2f322bf5 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core PMBUS EXPORT_SYMBOL_GPL 0x48dff6a2 pmbus_set_page drivers/hwmon/pmbus/pmbus_core @@ -26475,35 +26492,35 @@ PMBUS EXPORT_SYMBOL_GPL 0xf5f4534d pmbus_write_byte_data drivers/hwmon/pmbus/pmb SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xaf85a041 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xf51eb26d 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 0xf77c6f2e sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x3f035272 sdw_intel_probe drivers/soundwire/soundwire-intel +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x3af29601 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x22abb433 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 0x9048cb09 sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x930389e7 sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x9ca7c2f5 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 0xae4cd011 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xcdaf972c sdw_intel_startup drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xef228ce6 sdw_intel_exit drivers/soundwire/soundwire-intel -USB_STORAGE EXPORT_SYMBOL_GPL 0x069d00e5 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0bd8d63d usb_stor_access_xfer_buf drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x0dfd34c9 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x175594fa usb_stor_set_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 0x2668959a usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x34d8bd9e usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x360ce84e usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1c415eeb usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x29527af5 usb_stor_bulk_srb drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x3d7f3cfa usb_stor_reset_resume drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x3e991bcf usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x3eb87090 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6021b5fe usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x49efbc0f usb_stor_CB_transport drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x60c5f237 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x71749bf8 usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x750d7e1c usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6ee8fc80 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x72f7d967 usb_stor_CB_reset drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x79590574 usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7e48c10b usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7f4082cd usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8399d3b6 usb_stor_Bulk_reset drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x8a475b0b usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa64798a8 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb52a935f usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9401ee27 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9e94e65c usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xaacb2f1e usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb5feee25 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb7dd7dae usb_stor_probe2 drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0xb85cf35a usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb88ecda9 usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc0217c99 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc451af10 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc750fd4e usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe9bd0a6d usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb86c9dc0 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xbe2e9efb usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf0fdab2a usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf3a8c1a6 usb_stor_host_template_init drivers/usb/storage/usb-storage diff --git a/debian.master/abi/arm64/generic-64k b/debian.master/abi/arm64/generic-64k index 77959f0460e67..17c96cef3a343 100644 --- a/debian.master/abi/arm64/generic-64k +++ b/debian.master/abi/arm64/generic-64k @@ -1,6 +1,6 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x1343d6a4 crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xbac4c4a4 crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xe312b547 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x2fb60b95 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x7cff124d crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x9e9d1dd2 crypto_cipher_encrypt_one vmlinux CXL EXPORT_SYMBOL_GPL 0x11846b47 devm_cxl_add_memdev drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x2d1bfdf7 cxl_map_component_regs drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x526e1da8 to_cxl_decoder drivers/cxl/core/cxl_core @@ -51,30 +51,30 @@ EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey 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 0x0ca8de5f crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x1727ed11 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0x5365cc0c crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0x7dc3cf7b crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x7f2b6d0b crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0xf5861bd4 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/sha3_generic 0x4d3a8744 crypto_sha3_update -EXPORT_SYMBOL crypto/sha3_generic 0x82bae8ae crypto_sha3_init -EXPORT_SYMBOL crypto/sha3_generic 0xb58909fe crypto_sha3_final -EXPORT_SYMBOL crypto/sm2_generic 0x2f3bd7f3 sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0x2fbbfe86 crypto_sm3_final -EXPORT_SYMBOL crypto/sm3_generic 0xf860d4dc crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0xfcff7632 crypto_sm3_finup +EXPORT_SYMBOL crypto/nhpoly1305 0x4c82f57d crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x4f859f3a crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x6b1687e3 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x9dc84d35 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xfaa7ff87 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xffabe075 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/sha3_generic 0x5c7c1de2 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x61873b24 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xaad3b896 crypto_sha3_init +EXPORT_SYMBOL crypto/sm2_generic 0x2d272f24 sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x1844d3a6 crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0x9f57790c crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0xa4444d7e crypto_sm3_final EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid -EXPORT_SYMBOL drivers/atm/suni 0x9ab5f995 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x118d6405 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0xd6e8c4e4 bcma_core_dma_translation +EXPORT_SYMBOL drivers/atm/suni 0x7c743a29 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x2e12e6c3 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x985d06d6 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 0x922ddc69 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x9dbe6117 rsi_bt_ops +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xb326ed1f btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xff9cec66 rsi_bt_ops EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x2fc72031 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 @@ -125,19 +125,19 @@ EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xecf7a47d 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/crypto/caam/caam 0x03f026a4 caam_drv_ctx_rel EXPORT_SYMBOL drivers/crypto/caam/caam 0x17572340 caam_congested -EXPORT_SYMBOL drivers/crypto/caam/caam 0x209247c5 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 0x891b981c caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0x45323c15 caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0x4d3e2c6c caam_drv_ctx_init EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam 0xcf0792bd caam_drv_ctx_init -EXPORT_SYMBOL drivers/crypto/caam/caam 0xe0695dac caam_drv_ctx_update -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x622e1d73 caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x63a0152a split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x6e1354b5 caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x8a1ce613 caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xdbc06bf6 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam 0xc9361071 caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x2315caf7 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x59637930 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x614da9ae gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x8e5bce6c caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xddd764fa split_key_done EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x2e152bb7 cnstr_shdsc_xts_skcipher_encap EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x3b54a9ad cnstr_shdsc_aead_decap EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x76a68e3e cnstr_shdsc_chachapoly @@ -156,12 +156,12 @@ EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfd807e48 cnstr_shdsc_rfc4106_d 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 0x61f3e575 dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0x9f69694e dpaa2_caam_enqueue EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz -EXPORT_SYMBOL drivers/crypto/caam/error 0x78d53f37 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/crypto/caam/error 0xfd07d6e9 caam_strstatus EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x71a9807f xilinx_vdma_channel_set_config EXPORT_SYMBOL drivers/firewire/firewire-core 0x04e94c49 fw_card_initialize EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor @@ -1033,30 +1033,30 @@ EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb70ec7b0 drm_gem_vram_pin EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc8795f10 drm_gem_vram_plane_helper_cleanup_fb EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcde3f2e7 drm_gem_vram_simple_display_pipe_prepare_fb EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0xda046a90 rockchip_drm_wait_vact_end -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x098b0a04 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x147e3bc7 drm_sched_reset_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1c9dee63 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2afb8e86 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x16a743ac drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x18d95e75 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1def2925 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x25ed9173 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2944cadb drm_sched_resume_timeout EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2c497980 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x363d7660 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3dee26af drm_sched_init EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x479715b8 to_drm_sched_fence EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4a474d77 drm_sched_entity_set_priority EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4c1c216e drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4c834523 drm_sched_increase_karma_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4d910000 drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x674a7ee3 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x598c67d7 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x59fd8c5a drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6955bb47 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x733ac5c5 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x77cccc9c drm_sched_resubmit_jobs_ext EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7cb51408 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x83354aa6 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x88c6be9b drm_sched_job_init EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9673c1bf drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xac66c09f drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbc86d2ab drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd7db9458 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdba240f0 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb31c7a0d drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbbd04e38 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xce6a519d drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xea86c8f0 drm_sched_suspend_timeout EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf3808f13 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf44538a9 drm_sched_resume_timeout EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf4e8cec4 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf69eb421 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfa635c19 drm_sched_resubmit_jobs_ext EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x23e71c5e sun4i_frontend_enable EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x3751a314 sun4i_frontend_update_formats EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x444cac7b sun4i_frontend_update_coord @@ -1154,7 +1154,6 @@ EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x60c5644c host1x_job_get EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x61ec7f59 host1x_device_exit EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x63108f83 host1x_job_add_wait EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x65ba3c8c host1x_syncpt_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6b8cac2c host1x_get_dma_mask EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6d94eb76 host1x_driver_unregister EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x70b78090 host1x_job_unpin EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration @@ -1168,6 +1167,7 @@ EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x947e2639 host1x_syncpt_get_by_id_noref EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9752a263 host1x_syncpt_incr_max EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaee04d0a host1x_get_dma_mask EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb035f2a5 host1x_syncpt_put EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb508dcc8 host1x_channel_request EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration @@ -1351,347 +1351,347 @@ EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x5379bc4e ms5611_probe EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x2238c215 st_press_common_probe EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x2ba59705 st_press_get_settings EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xdf424339 st_press_common_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x02e41019 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x06482114 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0fb3f0f0 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3b9cf0c1 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4178a2c2 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x447f090f ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x492e9ea9 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x57fdaccb ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x06a8c722 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1c54f149 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1de68f48 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x26f4cd0c ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x312e879f ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x43b15d5a ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x628beaa1 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x673333e9 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x68a54b16 ib_cm_init_qp_attr EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6b573aa9 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7325eec8 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x91ae4d34 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa87f0876 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbb5cca08 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbe411a74 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc86512f2 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0039ec62 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x804fbb4a ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8cdf9995 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x92606381 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xca326e1c ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcb7e55a6 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd1ebbf0f ib_destroy_cm_id EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00e8a6f7 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00fcdb34 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01e6dc7e ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01f4b5a2 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03276ee4 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a6ab1ab ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b1defc0 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01348800 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03dc650e ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05f78447 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07a2b2d3 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07d12dcc rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08b12bdf rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09b1b667 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a1ad870 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ab5d31e ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b21733b ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bcb93e3 ib_register_client EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d4678e4 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d678798 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0eb92764 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11601d32 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13b6c58e ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14ffcfda ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17ec2147 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18fd0b0f ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19f9b39b rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fe10d64 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x209082ad ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0cb413c1 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d279165 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d7a5234 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x113d0d5f ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13f22665 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1510c41d rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x159ab5a4 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15f934e4 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1733376c rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18304974 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b8f0942 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c9d0170 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d0dc034 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d2dd451 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x216055a4 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21f3a986 rdma_nl_unicast_wait EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2444509e ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24b1eac3 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24fab199 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25292263 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28fc0437 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c689986 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c981d6d ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ef095c0 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23294283 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23596dd1 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25119952 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26ccba04 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27b80c0a ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x292e324d rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a197a97 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c5f86c7 ib_map_mr_sg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x316abd2f ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31758f8b rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34acf419 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x367f1a6d rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39c727c4 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ad29cff ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ec2ffb8 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f806283 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fa35859 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3230d9e5 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34eb389c rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36e0c958 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37379ce3 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3908f9f2 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3af510ba ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bd9421e rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c8d5095 ib_register_mad_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41f8c137 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4183bf81 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41bac123 rdma_create_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43928e23 ib_sg_to_pages EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45721780 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x457c0429 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x459592f6 ibdev_err EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47f6f131 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x481a68a1 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x489c0950 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x489e2e15 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48ac0dd8 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49377afd rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x496a67d8 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bd3d567 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c5f3e43 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46e44a6a ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4965b34d ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49841a3a rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b129f8f ib_get_cached_port_state EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e2fcdcb rdma_restrack_parent_name EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f4ba7c8 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x502ef051 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51570caa ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x519fdc78 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x521fd846 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52f67333 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5490783b ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5502e073 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x510d2546 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53011a84 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53779a4c rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53ac9cf8 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5415b940 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54528e7e ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54e1d7fb rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x555b3d4e ib_cq_pool_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56941f2c ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56c6ff25 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5741f2d1 ib_unregister_mad_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a6d065e __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c4eb6ef ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c85afba ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f6f32d2 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fd2c34d rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60015ae7 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60774c45 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60d0f2ab rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59738bf0 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a224c19 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a389d96 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b2a62d8 rdma_port_get_link_layer EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61b93d0b ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6199d955 ib_device_get_by_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x622a3a96 ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x627a16cb ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63441f04 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x634981d8 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63d8779c rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65739e18 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x665e493a rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67cba2a2 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6851d500 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a26f6b1 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x621afa7c rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x637b2aac ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63a89300 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x644fe440 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6463984a ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x657ecae7 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65ce7324 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66017f0b rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6654734a rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6992fc6a rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a516c62 rdma_rw_ctx_wrs EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ee9ada8 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6eefd4c7 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c0dc066 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6de35a0e ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e499c18 ib_query_srq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x717b8620 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f60794a rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72d34fc7 rdma_get_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7469e472 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x755ef0d2 ib_unregister_device_queued EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x762a601c ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76e62eff rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x781fa048 rdma_link_register EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a26b003 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a934ccc ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b12f3ae __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dbbc4ad ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8445d89e rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x846cc2f0 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85e37992 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x864cbffe rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x864f1f04 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86b73450 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cc0a91 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78d85134 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x792c77eb rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a41c4f8 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a8d3044 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b4d12ae ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bc6824f ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c3485e4 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c538f89 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ccbfc46 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dd79f46 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7de6bf39 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e5fb2b4 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7eb746c1 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f17b88f ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f469220 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x800966ad ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81ae646c ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8385e0ad ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83bf43ce ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85ac1a5b rdma_resolve_ip EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8737f4ff ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87393baa rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88fadd69 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c2c24ac ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ca453e2 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f2d1a6d ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86f74716 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88bd3710 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89139ed6 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d1fce8b rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d22516c ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e23027f ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fe7ee56 ib_get_vf_stats EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9114206e rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x915f84dd rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x919156b7 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x953fa080 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95448628 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x975d24b1 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f09cb2a ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa14402c8 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1dccf68 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa262f30c ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2c41ac2 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3c48f9d rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa41d0f39 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x915268d8 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92272d0a rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x938d1ac8 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95077d9b ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96c28b34 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96f5e045 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x979cbd64 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98a6c359 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a07c818 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a1efe90 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ba0a93d ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c095795 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9de073fc ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa15dfbb9 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa403b456 ib_init_ah_attr_from_wc EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa54877c9 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7ab626f ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8db0f28 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa909e3b5 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9623473 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac0917fa rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad9946dc rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad9d02ae ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa59655b8 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5bc4868 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa80c30c6 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8501606 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa61276b ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac0af3e3 rdma_restrack_add EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb03f48d2 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2a9ab37 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb26e55eb ib_rdmacg_uncharge EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb40cc820 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4a41966 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6189be9 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb44021e3 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb46dfeb9 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4de1151 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6c298ea roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6dc7ea1 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7288888 ib_unregister_event_handler EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7cb42c1 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb805915f ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8c93255 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc18efea ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc367a9c rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc93f0c6 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1bc6bd8 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc22114fb rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc267d79a ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc46c949b ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc55aaa2c rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6061038 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7e8bbe3 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc89a222a ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8b02207 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8ea3bae ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc990a252 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca4958c7 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcadab2a8 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcaf5fee2 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc3d22c6 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdf3ed71 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdf89ad8 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce172e1a ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8a2b971 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9025600 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb907a249 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb95ccc9b ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbb57820 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcd2d8f2 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc05ea8ad ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0a5f59d rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0aaa211 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1069f30 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc30eae12 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4a0801d ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4bd56a8 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc56b8028 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6613b72 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7cae936 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc860def1 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb073b69 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbf73517 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf83725b ib_query_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1e87de2 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd42974a1 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd42cf7bc rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0301bb0 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1242a88 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1d627b4 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd28d5f76 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2da7e54 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3b61fc0 rdma_umap_priv_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6948b60 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd73284ee rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9567554 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd677fff2 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6cd2507 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6d4d16a rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6e4feea rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7b5b2ef ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd936ff46 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9bfcc3d ib_qp_usecnt_dec EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda942c00 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdce96496 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe04c1903 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe106e504 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3880ff9 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4a69647 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5128490 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe56ec2d5 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc486cc9 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddbc20f3 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0155f08 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe37e1e06 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4a6b885 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe52263ca __ib_alloc_cq_any 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 0xe6f493f6 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe734a557 ibnl_put_msg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe94b0172 rdma_nl_put_driver_u64_hex EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb18c020 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb55decf ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebbe1068 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebfedd9c ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee2492bb ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0113533 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf510f0c8 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf573cf1b ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeac3e803 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb6ec831 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedd297eb ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee88362d rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1850525 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1aaf175 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4762d60 __rdma_block_iter_next EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf62b9fc8 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf69d6d3e rdma_query_gid_table EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7532024 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7ccabb7 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9e23a89 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa16558a ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcb932b2 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd610248 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02f91521 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07ce6b6f ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1abf4bca uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf72f54f3 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9edd1d6 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa4e3dc7 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd01fd96 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd45b8f5 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd58b35e ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x010929d9 ib_register_peer_memory_client EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1c6a9e99 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x28e48a79 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2c9a1b51 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2fe95075 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36acfb6d uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3b2b01db ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x556037fa uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5750ab81 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5e7707f2 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x21e33466 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x265fb363 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x309c5a22 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x30dae7db uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x380163ce ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3bd5e202 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3cbf4e4d ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3f52a430 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x42012d72 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x51c8fad9 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53be9182 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5635144a ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5895a6e3 ib_copy_ah_attr_to_user EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6b4f42f8 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6c02bdf2 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x76005f17 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x76670e7b ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8af8e96a ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x94f6add6 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x98fbb63f ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9a0c4958 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9d289e0d uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa1adca5c ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa4e69b58 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa9300bca ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb5ad2881 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb722604b ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xba94e6bb uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbd009828 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x67ed1678 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x68762620 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6c2cf1f4 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6da69b70 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6f96170b _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6fad81cb uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x74b051c8 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x77a6336b _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x93fe2aac ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x97bfc0c8 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x986e31ae ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x999c23bc uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa30aa4df uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb167feb1 uverbs_copy_to_struct_or_zero EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc7f9adeb ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd1c549af uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd42ba6f5 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd44f30df ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xed8083d1 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf098a416 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf0c8d2c7 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3227a4a ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2eab5c62 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x34c8a139 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x37d0a725 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4d521b89 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x753eb4d3 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc5134a64 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd5003b4e iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe407a9ba iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbead6b08 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc4ceac84 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd16ef22b ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe5bb7ae4 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf1e91900 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf501bca4 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf5188638 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf9d554c0 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x232205d7 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x277a3007 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x41f397c7 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7594c517 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x77227c2b iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa86026c9 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc06cad33 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdc8b7546 iw_cm_init_qp_attr EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x082a48b1 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0cd2611c rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x10d1f965 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x16d4616a rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x24af13bb rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x25501c3b rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3703836b rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3988cf6f rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4fccf79f __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x569cdd0d rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x56f88e65 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f96e7a1 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x70c03782 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7151c1bc rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x73ab85c7 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88e56d81 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x02f84de6 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x083ae178 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x097a659d rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0a087d5e rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0d24debe rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x176d0cdc rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x17a9ae2e rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x26ae1dc5 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5cd5e7e3 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x63945aca rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6cfdc2f7 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x73cc9feb rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x83afe871 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8c737dc4 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8f7455ab rdma_disconnect EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x92454f46 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x948e3fe5 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x98a74631 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x994f8138 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9fc1d1dd rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa9439435 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf8cb4bd rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf9adfe8 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb4b9db54 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb8124986 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc309ed92 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc74d9ae3 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf16465b9 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf5f29d9b rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf679a31b rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf9664b35 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfcfb8dd6 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfee61d28 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x13ed205c rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1914652f rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2d1125c3 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x454d3f54 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8aa1a22c rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9efa6960 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd8e2b103 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9ae10823 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa0f2af6f rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa15c7def rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa3667bf7 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf30d064 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb007dc0c rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb38bff1e rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb3dcce09 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb6172df0 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb921257b rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xca32c189 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcaf41577 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcde88de6 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd2486459 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd2f47c85 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe11baffa rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeb806463 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf2b9a1ff rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf5911d74 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6bf18249 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x73bb98fd rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x804cc1a1 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xbd7595d3 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd50fde7b rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xe62ecd25 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xfd74c8e6 rtrs_clt_open EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x59f48246 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x421dab02 rtrs_rdma_dev_pd_init EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b01e41d sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x87669529 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7cd8ab30 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 0x9c3120b8 rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xa22946d7 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x2e14f861 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x316ce111 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x329a9449 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8af279c5 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x91993f59 rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc3a278c4 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x9f06ae5a rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xf15ccdad rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x1e316830 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x352e89be rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x604aa0a7 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x69cb57b3 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x6c335293 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9b4cae6d rtrs_srv_get_path_name EXPORT_SYMBOL drivers/input/gameport/gameport 0x474a5da3 gameport_set_phys EXPORT_SYMBOL drivers/input/gameport/gameport 0x7cd1326a gameport_start_polling EXPORT_SYMBOL drivers/input/gameport/gameport 0x852ba92f gameport_close @@ -1720,8 +1720,8 @@ EXPORT_SYMBOL drivers/input/sparse-keymap 0xd557626e sparse_keymap_entry_from_k EXPORT_SYMBOL drivers/input/sparse-keymap 0xf30be3ef sparse_keymap_entry_from_scancode EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x4dccbc94 ad7879_pm_ops EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x864476e1 ad7879_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x04a06881 qnoc_remove -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x29af10bb qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x5ee13adf qnoc_remove +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xc9b9e629 qnoc_probe EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7d086d6e detach_capi_ctr EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7f6011cf capi_ctr_ready EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa713cd81 capi_ctr_down @@ -1731,48 +1731,48 @@ 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 0x567427e2 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xc0dc6f67 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xcdc4936a mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xfefce576 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x6749a65f mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x971bf949 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x99007d29 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9931c6d3 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa5a6e608 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf7a6fc3e mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xd78e3459 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe4f45698 mISDNisar_irq EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0a4de113 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x11d96d0f recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x12733e01 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x19ef3cfd mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06b2455e mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1f18b01f mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x22a990be create_l1 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2496c9e0 mISDN_unregister_Bprotocol 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 0x4938800d queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x494b0a0f recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4de7b6a1 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4e36841c mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x37fcdc0f get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ef422fe mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ff98d10 mISDN_unregister_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x51b7779c mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x52d39e2b create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x53f9837a get_next_dframe EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5c01c82a mISDNDevName4ch EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x66f154c9 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a453841 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x827f5575 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x980b48c7 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6057f8f5 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x62d34441 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x672618f5 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6db8b3c6 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x86b31f66 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x902784cb bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9254f813 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9a8237d4 recv_Dchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa0bd96a1 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb01802c0 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb1d385e5 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbaa06d40 get_next_bframe EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd240655f recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc95823b0 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcc61b976 mISDN_freebchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd9e87967 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdc1aea18 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe60adf68 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5344c78 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe16e6ee4 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe515993b mISDNDevName4ch EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeb4a0a02 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeabfa344 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 @@ -1797,19 +1797,19 @@ EXPORT_SYMBOL drivers/md/dm-snapshot 0x947777df dm_exception_store_destroy EXPORT_SYMBOL drivers/md/dm-snapshot 0xa050be7b dm_snap_origin EXPORT_SYMBOL drivers/md/raid456 0x62871f69 raid5_set_cache_size EXPORT_SYMBOL drivers/md/raid456 0xec6489a3 r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1dfd6a17 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x40abc81b flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5ddd52b5 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x67532cce flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7e766c46 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8094cfed flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8aa7fb40 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x95579180 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa0f9c9d5 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc68f1d5f flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcfd820d6 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xeb7c7c0f flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf2715b67 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x03909b75 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x04fcde7e flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x35f37ab9 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x47af3d5d flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4aa77f98 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x71089d0b flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x997ef213 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x99f8ef3c flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xad4e3f3f flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xae69b720 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb93582f7 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc32a6e85 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe79fab99 flexcop_i2c_request EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu EXPORT_SYMBOL drivers/media/common/cx2341x 0x4561d909 cx2341x_handler_init @@ -1822,8 +1822,8 @@ 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 0xa6424d89 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x15f9525b ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xc305f8b4 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog EXPORT_SYMBOL drivers/media/common/tveeprom 0x3f501930 tveeprom_read EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create @@ -1834,12 +1834,12 @@ EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xaa9df014 vb2_bu 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 0x1b782f69 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x268c6da1 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x4321f068 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x69a69482 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf4ecaaf6 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xfabb1a8a vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x271e2196 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x37bd1c7b vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x39fc5a0d vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa91b3974 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xd341bd9a vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xdc91e3e3 vb2_dvb_dealloc_frontends 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 0x2d5a7911 vb2_querybuf @@ -1856,6 +1856,7 @@ EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_unt EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x41b077e2 dvb_unregister_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4ebdfc3d dvb_ca_en50221_camchange_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x501c885a dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x50ffd21e dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5ce9f460 dvb_dmxdev_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 @@ -1864,12 +1865,12 @@ EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_s EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x79d04aa8 dvb_ca_en50221_camready_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fc44030 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x817c38da dvb_net_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9263a063 dvb_dmx_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa5481828 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xae3eb6d8 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc5be4027 dvb_frontend_resume @@ -1880,14 +1881,11 @@ EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe34f0140 dvb_register_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeab43eb3 dvb_generic_open EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeadb4004 dvb_frontend_detach EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf2f5a6b5 dvb_net_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf4df04c1 dvb_generic_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc849097 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xcb8583d9 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x477e434c atbm8830_attach EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x147d4e94 au8522_init EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x17cb4b8f au8522_analog_i2c_gate_ctrl EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x258f60fa au8522_writereg @@ -1897,60 +1895,38 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5d6926c8 au8522_get_s EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x744518c6 au8522_release_state EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7b286e1a au8522_i2c_gate_ctrl EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbd04d051 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x928cf154 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xc62dc12d bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x9cfa5133 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x4d9e6aad cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x87ea1b5c cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x0fc951a1 cx24113_attach EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x15664ba8 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xdc049e61 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x9c5a8dcb cx24120_attach EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x56288860 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xd2a36bcc cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x47ef11d5 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x1c1951b3 cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xc4587a71 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x06d33226 cxd2880_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0633d8fd dib0070_wbd_offset EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3f57d4b4 dib0070_ctrl_agc_filter EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x66656889 dib0070_set_rf_output EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6b3742e6 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7756ed89 dib0070_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x02989663 dib0090_set_dc_servo EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1fb80f9a dib0090_pwm_gain_reset EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x331f344e dib0090_get_current_gain EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3e1819ea dib0090_update_rframp_7090 EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4dc514dc dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4f82eb73 dib0090_register EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5b523bfd dib0090_set_vga EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x605bcfda dib0090_dcc_freq EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6de884d7 dib0090_update_tuning_table_7090 EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x83a496b5 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9906d4eb dib0090_fw_register EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc21e21ee dib0090_get_tune_state EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdeff4b4a dib0090_get_wbd_target EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf0bce033 dib0090_get_wbd_offset EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf2acafc8 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xafe55010 dib3000mb_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x09e1ee65 dib3000mc_pid_control EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1517637d dib3000mc_set_config EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4c417982 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x830edf2a dib3000mc_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb29f6234 dib3000mc_i2c_enumeration EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xea199d28 dib3000mc_pid_parse EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7b5c9748 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7e57be64 dib7000m_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x93965140 dib7000m_pid_filter_ctrl EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xff8c5824 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x1c1498df dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xec5f0a10 dib8000_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x08bf9531 dib9000_fw_set_component_bus_speed EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x15f058dd dib9000_fw_pid_filter_ctrl EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2c413f49 dib9000_fw_pid_filter EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x495df240 dib9000_get_tuner_interface EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4bb474c6 dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x61300d23 dib9000_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7fc4579a dib9000_set_slave_frontend EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa54909ef dib9000_firmware_post_pll_init EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa779d3e0 dib9000_get_i2c_master @@ -1963,93 +1939,22 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x54e65f9c dibx000_get EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe8d11959 dibx000_reset_i2c_master EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xefbd8b56 dibx000_i2c_set_speed EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf94f2d71 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x4dc06473 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x20adbae7 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x00852d4b drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x49910830 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xcc28f1b7 dvb_pll_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x2567edf9 dvb_dummy_fe_ofdm_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x42fe8525 dvb_dummy_fe_qam_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x8ea9c991 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x5a841fea ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x9a864ab6 helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xef024d6c helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x7417e9d2 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xd9940455 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x7e4cca4d isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xc6e216a4 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x65bb6381 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xd0a19339 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xee4822b2 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x50ad996d lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x62208ac9 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xd44f713f lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xce08414e lgdt330x_attach EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xc5024dbf lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x97c29b56 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x312e246c lnbh25_attach EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x956591c6 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x95659918 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x9c669c56 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x0e4de0b4 lnbp22_attach EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x2b029d01 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xb49653d7 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x2a5f3806 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xdfb0a569 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xc452cc3f mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x858bcfa0 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xee08190a mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xa4854b4b nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xc700b9d9 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x46363b97 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xcfa42ab6 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xd27af821 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xa12a2d38 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x2a1c7c85 s5h1420_attach EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xb6181d8e s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xaf9b00e4 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x24149a8c s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x4375a627 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x6b733c76 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xcfe9b127 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x45921009 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xd5f12427 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xd692a96d stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x9fba2363 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xafa2e09d stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x4a1c6942 stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x7aec7778 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xfbde8d15 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x3652bb16 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xba06d269 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xf826e043 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x94e14663 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x1c9c146a tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xba938c6c tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x45118c64 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x168643e6 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x2d0b5c92 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x2df8a508 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x9f9208b4 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xf3fba575 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xd0bdc619 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x09975f11 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x821eacd9 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xd75e20ed tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x363c0b49 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xd1edf778 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xd405a3cd zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xf2d0cb45 zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x4c6a018c zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x3f995836 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x5851fed2 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x02708333 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x84fe63e0 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8f0267fd flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9e938667 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb254ce66 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc4a50c49 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf95e37c0 flexcop_dma_free +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x39692cc5 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x4f82f505 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1942d842 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4c5111a5 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7b90d7a6 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb437c474 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc104d880 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf466c650 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf4f359ed flexcop_dma_allocate EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x15f96902 bt878_device_control EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x2181ea98 bt878 EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9eff6cb6 bt878_start @@ -2065,19 +1970,17 @@ EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1a3ae4d3 read_dst EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x47a4aaa4 dst_error_recovery EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x52122259 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5b1ad4c0 dst_attach EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x602ba4ed dst_wait_dst_ready EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7131a3cb dst_error_bailout EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd298bf11 write_dst EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd42ed45a dst_comm_init EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xda5e8d71 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x9bb429cc dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1bc40c48 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x283bacfb cx18_release_stream EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x45b3d859 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7ac03d30 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8177e902 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe060a55f cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x82f506ad cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb24d4dd7 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xbbf0b022 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe404442a cx18_stop_v4l2_encode_stream EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x1ab311dc altera_ci_init EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release @@ -2091,44 +1994,43 @@ EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9572c508 cx25821_dev_unregist EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xac5f8502 cx25821_set_gpiopin_direction EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd258c191 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 0x236342c7 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x6065af90 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x0cfb3082 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x25e9a398 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x9c42840a cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xdf9be023 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1c7a9f11 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x70d9010d cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9955dd5a cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9e4294d0 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa2c2bde5 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb87250b0 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xccd71a62 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x01377e64 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x09414202 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0b6a7533 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2c0ff113 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4142d099 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5380f9f9 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5b38567b cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x684a30e1 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x6b72d673 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x70cffdd9 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x998fbadf cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xcc653155 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xdea707bf cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x164aa87d cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x577fb30c cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x63aeb6fa cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x68c346a2 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9089f729 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa72b1b71 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xab29e9a8 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x03f9aeec cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1a6d5eff cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1aa2ab72 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x26492b49 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2bd0056a cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2d8e39f6 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3a3affbf cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x430deae0 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x51de7fe5 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5c971ec2 cx88_set_tvaudio EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x60c759cb cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5f3fe2ec cx88_sram_channel_dump EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x63a05f0b cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7767a854 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x72bd206a 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 0x91d63374 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x941488e7 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa2845527 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa2a6b3e1 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa3585504 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa883da70 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc5700126 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xda41ccce cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe8be1feb cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfbfe5f3c cx88_core_get -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xb96f1545 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9258d668 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x93b907b6 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9dcf7b83 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaab1fab3 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb8d66c62 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbe88d3dd cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd4a8d099 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf17ef329 cx88_risc_databuffer EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x05e04ef4 ivtv_udma_alloc EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0e2d2a54 ivtv_release_stream EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0e7568c3 ivtv_udma_prepare @@ -2148,20 +2050,20 @@ EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd262abe3 ivtv_vapi EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xee350b6c ivtv_udma_unmap EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xee374ec8 ivtv_claim_stream EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0a5bc64b saa7134_set_dmabits EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x34f2d313 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3a826cb7 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x48100fc4 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6884bdf9 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6ff26f70 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x36776a7e saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3a9293c8 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x42754e9c saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5bd47283 saa_dsp_writel EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x769d23de saa7134_pgtable_alloc EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x92506fad saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc474c07d saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd5e9830e saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd70d0d51 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf0e5ec81 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfd4c077f saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x913a60c1 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9f908b8a saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb1b34a97 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb6ff3d40 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfee5ca16 saa7134_pgtable_free EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name EXPORT_SYMBOL drivers/media/radio/tea575x 0x228ecb4c snd_tea575x_init EXPORT_SYMBOL drivers/media/radio/tea575x 0x392a44e9 snd_tea575x_exit @@ -2177,57 +2079,44 @@ EXPORT_SYMBOL drivers/media/rc/rc-core 0x986f493d 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 0xf446074f ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x374e2b9a fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x62c9b938 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x508dc7a2 fc0013_attach EXPORT_SYMBOL drivers/media/tuners/fc0013 0x5a2497cc fc0013_rc_cal_reset EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc6e949db fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/max2165 0x77ab32fd max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x4d3226d4 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xf2392a8a mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0xefa5b882 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x1951718d mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x3eb2d40a mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xb4472289 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xbd0d2f31 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 0x4119d0eb xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x2b0c94d3 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x7f425942 xc5000_attach EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xaa3228ef cx231xx_register_extension EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xb5c6a92b cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0038c980 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x00ccd0a2 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1e711fe7 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4e1b7826 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x87f4e566 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb22b0cb3 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb7a2fb7c dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb83b4a1c dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf541ecc7 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x220d1e8b dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x82c0ec70 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0fcf7eea dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x50845e4b dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6c7d02a7 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x72ba44c2 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8ab770bb dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x930b26cf dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x98e42741 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xad9c029d dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd4c2e5a4 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x071a8375 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0a4ad268 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1e57cf3f dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3773a64e 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 0x9cb72ef6 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x9edb110c dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd193765d dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xee7fa27d dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xab28a7d9 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xce8188c6 usb_cypress_load_firmware EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x45f99c88 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x7896e61b 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 0x25cff973 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3bd14df2 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x445c714a dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x50936cf4 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5664cdfc dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x59c8ee7b dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5d822323 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x75d839a4 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x819152a1 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x041e2de1 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x29babbea dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x30bb1dc5 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x53a698c8 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6ffe49c7 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x85b80898 dibusb_pid_filter EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x2b47cad6 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x4bf75130 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9aa85113 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xeded7589 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf1702c0c dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xc261ff00 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xe747ba32 dibusb_dib3000mc_tuner_attach EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x27348afc em28xx_unregister_extension EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xef576cf1 em28xx_register_extension EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x183d8f2a go7007_boot_encoder @@ -2391,39 +2280,39 @@ EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe910cde9 mpt_put_msg_frame EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeb7c525c mpt_alloc_fw_memory EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf787fc12 mpt_attach EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfd98d6cf mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x03822ca7 mptscsih_is_phys_disk EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x07774a1d mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x109b6524 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x15fd346e mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0e6f544c mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x12c80f77 mptscsih_slave_configure EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1edc1570 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1ee7c32e mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x25d641de mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x34c4c71f mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x34ed3af8 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x36eed579 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x39c3498e mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x43b14349 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5f425b07 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7ed408d9 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x26d97e5f mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5104d8ba mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5c2655ed mptscsih_scandv_complete EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8109b2cb mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x99348768 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9e650cc5 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa5cf1452 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb4ee7bdc mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc331d041 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd93df9a3 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdde739f2 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xde683d50 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe07885cc mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe590cb4f mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8266685d mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x82ed0a1a mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x992fb948 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9b59a3bf mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa8caf839 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xae4c3581 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc4c603d3 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc6af2813 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc7c383e4 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd1edaba3 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd6802288 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd8c20412 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdb84338f mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe3072f93 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe49654ad mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe4d2b257 mptscsih_flush_running_cmds EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf1194e9d mptscsih_host_attrs EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfb13b564 mptscsih_resume -EXPORT_SYMBOL drivers/mfd/axp20x 0x74274c6d axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0xb8774e0c axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0xf4eea6f6 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/dln2 0x333093ce dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x8b46f651 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xa857ae86 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfcc8b54f mptscsih_info +EXPORT_SYMBOL drivers/mfd/axp20x 0x7d263a9d axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xb17638fc axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xfdefd006 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0x154d1cb8 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xa1c66946 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xa8f84fc4 dln2_register_event_cb EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x34164740 pasic3_read_register EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x852366c0 pasic3_write_register EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x23b60559 mc13xxx_irq_mask @@ -2470,15 +2359,15 @@ EXPORT_SYMBOL drivers/misc/tifm_core 0x7e0425c5 tifm_alloc_adapter EXPORT_SYMBOL drivers/misc/tifm_core 0x7ff76a08 tifm_remove_adapter EXPORT_SYMBOL drivers/misc/tifm_core 0xbb0fd414 tifm_has_ms_pif EXPORT_SYMBOL drivers/misc/tifm_core 0xf1732f4e tifm_free_device -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x8e980fb9 cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xa1f28623 cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xab64570d cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xaeecae82 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xc0e4cf0e cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x00eafca9 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x06605148 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x6f09e42b cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x9f322476 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xd20f0978 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x558ea966 dw_mci_probe EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x61542da1 dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x671646fe dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x74e3cbb7 dw_mci_remove EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xcaedabbe dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xd78c7865 dw_mci_remove EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x5713fce5 mmc_spi_put_pdata EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xd91e6f17 mmc_spi_get_pdata EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x17d4774a cfi_fixup @@ -2550,104 +2439,104 @@ EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd1f713dd nand_monolithic_read_page_ra EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xdf2c949f rawnand_sw_hamming_cleanup EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe10e5317 nand_scan_with_ids EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf835a666 rawnand_sw_bch_init -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x00b3241b arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4befb76d arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4fd5f949 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x531ec8e5 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5e22a9e7 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x090c5992 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x092d0969 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2bf3bb1f arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3b6d7351 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4ebc6141 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4f0142f1 arc_raw_proto EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6eac6f9e alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6ee60a82 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7c7bf555 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8aab43c9 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc67b8dd5 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcc36c052 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x82b5c534 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xaee1604e arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb0ed8f75 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc2a7ed44 arc_proto_default EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x06af7dd8 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb621ffc3 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xe51e4249 com20020_found -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x00b226ec b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0178ff3b b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0253dbc4 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x02fa256e b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0826d3f0 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0f8192fe b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0fb39205 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1263ac6f b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x14d9b465 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x16d46573 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x26862ba7 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x39a2a928 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x409914a6 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4124a929 b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x444258e4 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x489c49b3 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4f56c4a5 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x57a8b30b b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x58e3ce29 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5ed2d73c b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7dc22921 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fcb1c27 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x86261229 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8a75fc4a b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8a8c1032 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9380f2ec b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa5e72dbd b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa95474da b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb1e20352 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb2846314 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb49b56dc b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc395dcc6 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xccdaac63 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcce5d8a2 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd1f07103 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe6be93be b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe8a1aef9 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf265d1b2 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf741ad6e b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfddaddf8 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xff70364a b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x3220ed1b b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x746dbdf6 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x74b69572 b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x8b5dc1fe b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xe2d0f554 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xfb0e3dc5 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x4a7ece4f lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x77e9bb51 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x98396d17 lan9303_probe +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xee7281f5 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x43b4ad76 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x5fbd02e9 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc5f4c0c7 com20020_found +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x00c6e567 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x02c9cf4c b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0a7e5513 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0b1db3b3 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0eff47f2 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1515df8c b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x23c7f748 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x24317a66 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2b3ea7f2 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2fa54c63 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3051b4e2 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3bb16ec2 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3ec3b855 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x428bf699 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x434b307e b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x43b08b8b b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x478c6fe1 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4a39e68b b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4bff3578 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4cc9a3d1 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4f86b068 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x507751ab b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x71662e73 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7e0b9ebb b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8a85fd34 b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x94e35023 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9599a223 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9a9eb7a3 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9e95fa1b b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9ff73856 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xad9d3c4b b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb79cac90 b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbb15396e b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd02cbb41 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd1f1bf77 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd69f7560 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd876349f b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd9ebc1af b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xddd6d734 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf17ed354 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfa3fe949 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x0f2f34e2 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x19d70aa6 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x66b84c99 b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9277c83e b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x985ab117 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xe44418e1 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x05211158 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x4f21fe47 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x66b5a0ed lan9303_shutdown EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xf508eceb ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xa04e3686 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x437f3acf ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x4b79edc4 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xff8f5b1f ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x04262b7a vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x89ed2d03 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x0f512464 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xdef587f7 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x5b0bd01d ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x77630d68 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x85486995 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x5507caf6 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x918f761c vsc73xx_probe EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xfeed1335 vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x17573adf xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xbc126914 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x79861cd9 xrs700x_switch_shutdown EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x9329128e xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x9766ff9f xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8b8dfcc2 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x9283a765 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 0xe05e25c8 xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0bf5ea84 NS8390_init +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xfcc3a1c7 xrs700x_switch_alloc EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x699c0825 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7f1efea6 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x81507a7f ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8cd9fc96 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x99bd2ce2 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbebe35a6 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe68fbc9c ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xeebc9f62 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfc622770 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x3ec8ad24 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x28d3061a ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3f3250fe ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4c1e3d66 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6bad18a2 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa72b8124 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xac2ff2bd ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb57b1299 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd8628e45 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfacb786d ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xff54f994 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x8f2b17db bnxt_ulp_probe EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xa5fb21e2 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xb2544437 cnic_register_driver EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x5b27d2fb cavium_ptp_get EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x7c8ccd43 cavium_ptp_put EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable @@ -2667,393 +2556,393 @@ EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_ge 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 0x0c4b2857 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0d6ae051 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x17d23a05 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x450f53b4 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x53c0c909 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5acec33b cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x618a15b7 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x773181a0 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xacb34bf1 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xad7e7b04 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbae5e441 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbb6b0acf t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe4b1be44 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xee2976f3 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf232a746 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xff5bb60a cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x036d63fc cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x06d6f5ea cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0e0fc892 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x24d7a203 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3aa1163b cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4d04da80 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5a221178 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5db5945b cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x60acdd18 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x69b64641 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6efb5932 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7491f8b9 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x79998a1d cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa4cff675 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd961b838 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe4bc4d56 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfb023d48 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x03efbec3 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x059caf03 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0db22b76 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e3017aa cxgb4_alloc_atid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1071d3b1 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x12b6f7ae cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x13ecd9d5 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1564b172 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f0fc25b cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2423abba cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x25528963 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32dd71b1 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35749549 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x447b5ea3 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5020934b cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ca945d cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x146fc7e3 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x147b62b8 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x20a41021 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x20d00e94 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x23f7eae8 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x29acdfbe cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3760f543 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x38a952c2 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3999bff4 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x402ee444 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4e73a9f8 cxgb4_l2t_release EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x58a5eb68 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x619a035e t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6eee4d44 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x705fce9c cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x70879ef1 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x710d9a18 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7aa7b0a8 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e7d2435 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7f709cea cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x801da1d5 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x81a97948 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8581ff51 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e149fa4 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90e29d0b cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x947952b3 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9add00ea cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f5326c3 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa1b9a1f5 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa32c5402 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4212f90 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa881a03e cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x530b36bc cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5325fa0b cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5888adb4 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6fb65e2c cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x72183dce cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74f9f298 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75d13c74 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7ab7a2ec cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8237d2d3 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x833eecbb cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8b93f143 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8fc103cf cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x91d277f9 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x964dee0d cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d55cf6d cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa016fe3b cxgb4_remove_tid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xac14b079 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xadc54798 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xae351edc cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xba444f45 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbdc1b050 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc9bcbe21 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xce320a19 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8ee833c cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb7172a0f cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb828f773 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc1cc16f1 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc45a941b cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc6aa41a7 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7330426 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc914e24d cxgb4_map_skb EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe14d5d6d cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe624ce01 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedf53955 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf0614717 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf8aa2764 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0376b508 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x09dd29ab cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0b9202d2 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd80456ee cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xec8f078f cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef086772 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf15c412a cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb1324dd t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfed8f337 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff0e01c7 cxgb4_get_srq_entry 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 0x47b7dbe5 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x69806780 cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7eb510ea cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xdae5eee8 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1ca5a65a vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x28945066 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa1e20e5e vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb6c06022 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe6b45779 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe85b6544 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x46af5e4d be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x45bf21be cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5845ddfb cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x66fdc820 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x96b55668 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbb0bfaad cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe718ee67 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf50635b6 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1272f110 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3f7e28ee vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x69c5dcc7 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc3804c6d vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc9e136a7 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xfb14e80f 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 0xdf794116 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x5697f87e be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xa0553aa1 be_roce_register_driver EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x4412391e dpaa2_phc_index -EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x62d7d992 dpaa2_ptp -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xf522e7a9 enetc_ierb_register_pf -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x002de0b4 hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x3cd5b657 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x3ef3e154 hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xa354d1fa hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x4c91884b dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x942c6a5e enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x01dfe9f8 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x6a3ca103 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x9efab8c7 hnae_ae_unregister EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb919bf34 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1c169c8 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xc304a755 hnae_put_handle EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x755f4bab hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x33daddcb hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x375c1458 hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x452c1035 hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x530a9780 hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x6f954887 hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x76610e36 hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x831b27dd hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe74da405 hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x879f9117 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xc4690996 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x1310adde otx2_mbox_check_rsp_msgs -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x16d7b883 otx2_mbox_msg_send -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x1c417d23 otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x2ba33838 otx2_mbox_alloc_msg_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x2fb6669d otx2_reply_invalid_msg +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x67bcf2d6 hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x00a81546 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x026c9295 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x16c53c60 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x3eeabc0a hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x44d5b4b8 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x507c1a4d hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7eabce52 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xc7c3e540 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x6b8a790a iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xacb56c5d iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x09743a69 __traceiter_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x11064cd2 __otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x351e2323 otx2_mbox_msg_send 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 0x376f78ba otx2_mbox_regions_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x37ded493 otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x41b04964 __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 0x57b41618 __traceiter_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4dabbe1b otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x5bd7ad52 otx2_mbox_busy_poll_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x5c50b2f1 otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6026bbae otx2_mbox_check_rsp_msgs 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 0x6ea80fce __traceiter_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x80408e0d otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6bee3b44 __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x82074245 otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x83759287 otx2_mbox_wait_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8a9c416a otx2_mbox_destroy EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9834635a otx2_mbox_nonempty -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xabd1c1f7 otx2_mbox_busy_poll_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xadfb016d __traceiter_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb12842cc otx2_mbox_destroy +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x94b2f6be otx2_mbox_init EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb150b38c __tracepoint_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcaf02c10 __otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcd7e2227 otx2_mbox_wait_for_rsp 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 0xe5640f68 otx2_mbox_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x136f60fb otx2_detach_resources -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x197c03c7 otx2_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x215b4ea3 otx2_attach_npa_nix -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x26454e55 otx2_alloc_mcam_entries -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x27f47706 otx2_sq_append_skb -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2df20e5d cn10k_lmtst_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x330041aa mbox_handler_msix_offset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x39eb9412 otx2vf_set_ethtool_ops -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x445bebba otx2_get_mac_from_af -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4e71c42a otx2_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6a078f3c otx2vf_mcam_flow_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x85c74cd8 otx2_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8a435343 otx2_stop -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x970a9b1a mbox_handler_npa_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xae9e5ed6 mbox_handler_nix_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbad546b0 otx2_mbox_up_handler_cgx_link_event -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbe60798a otx2_tc_alloc_ent_bitmap -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc46e173f otx2_open -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc7a354f4 otx2_set_real_num_queues -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd9289961 mbox_handler_nix_txsch_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe2842752 otx2_mcam_flow_del -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xecb9b0b0 otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xecd16352 otx2_mbox_regions_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xf052e03e otx2_reply_invalid_msg +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x273f0a1b otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x467f0772 otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4caccb94 cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4e4c070a otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x50307ab8 otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6b10ad38 mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6e3f1483 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x72569302 otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x759cdaee mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7c311f5f otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x838fac0e otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x95d5018c otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9720308d otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9a7ca0d4 mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb9aa0496 otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc2eba2fe otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc5c8e80c otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd1446c13 otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe035dae4 otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe0eb7661 otx2_get_max_mtu EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeffd130b otx2_get_maxflows -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf2d19608 mbox_handler_nix_bp_enable -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x213c077e prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xaf71f8ab prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x024f6de8 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x146b5cda mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15caed3e mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x226093e3 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2318a001 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c8123f4 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34ef65c9 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c604c59 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4020dc83 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41e47465 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44cdc66e mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c702147 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5542f86e mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58bf6acc mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ae91364 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x648828b8 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67cce79c mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f57c3ab mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f5dea67 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfa8c1591 mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfbf88ca0 mbox_handler_nix_txsch_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfefd8d75 otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x55cd52c8 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xb8a6b2db prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x028f3216 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0efbfe00 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fb2ab90 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d06d84c mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ea2627a mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2103ac14 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2885b50a mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x292784cf set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29c0dbc3 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2eaf64f9 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30df50ad mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30f9b281 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a5d8fdf mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a89a69f mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e7ef107 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55991166 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55cdd521 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x575e218b mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57cd72e4 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ac617f2 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bfc3aad mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x614a857b mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62751c1a mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x679f5ca2 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x686a968e mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e1cdcb4 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a5bfaf0 mlx4_gen_slaves_port_mgt_ev 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 0x8474875e mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x894ceaed mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e8c493e mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x995cc95a mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa626b8f9 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa95992f2 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2bca834 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9e5c6b4 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbde818a8 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0eb78e5 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca84fdde mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd0ac7ae mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd7ed993 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd31c8191 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4f2dd7e mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8dd9e7b mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd4883ae mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8c5b40d mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefbf6e71 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeff7f277 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0c90a6c mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf77928a5 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfae23c58 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc623351 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe86e059 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00bd3e0e mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01a422b3 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0492ea9e mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04c6800f mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x057bf8cf mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bb88f7f mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e0d89c1 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10a305c6 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11de2a69 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17912917 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1abb4d09 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b9b14ce mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c51ce31 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85590630 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8590e90d mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9028883c mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93b1ef9a mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x943c7794 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x983d4768 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d1967f3 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaeb7e45f mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaeba2ec6 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb28adf14 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5d0b56d mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9e6d392 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd88da59e mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9f71fa0 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7f3d8b3 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea650158 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4e7d984 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04bf8ead mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0666a632 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07ddf330 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09bdbd48 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a327521 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bafc85b mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c6d2149 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10ef9277 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x154c62be mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x157e4c24 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1720709e mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17370a4b mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18f5bc6e mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a7ce157 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b4ec052 mlx5_fs_remove_rx_underlay_qpn 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 0x1df4ecc1 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c8147a6 mlx5_lag_is_sriov 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 0x2028c0a6 mlx5_comp_vectors_count 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 0x23255715 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x240be527 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x247b0809 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28cf3f26 mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ae9a876 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f33f42f mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32b6700a mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2557fe74 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x257a65f4 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x273972b7 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x286fab6d mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2aca97ac mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2de577d2 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2df807bc mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3021880e mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x302f462a __traceiter_mlx5_fs_set_fte 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 0x338f644e mlx5_notifier_unregister 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 0x34a7cd4b mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3aad4b09 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x417ab65e mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4185a94e mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x429bb4ec mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x466b2e4e mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f5900e7 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4247c496 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42825d07 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47716f43 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47b11703 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4947a30d mlx5_core_query_mkey 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 0x4ae9e50d mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c4e8a84 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49c7256b mlx5_eswitch_get_proto_dev 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 0x4d88d8e9 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e6b6839 mlx5_eswitch_get_core_dev 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 0x50967f04 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51a3c486 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x520a8144 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x518306e5 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55755c51 mlx5_core_query_rq 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 0x55e0e438 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x575371ca mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x576ffa88 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58361750 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5945c0c0 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5df681a0 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x565eeaea mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58e5ed15 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59dcbb7e mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a739e3d mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bfc6791 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d88f399 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e5d4a34 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x603bc9a5 mlx5_cmd_free_uar 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 0x60e6258d mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x612a571d mlx5_eswitch_vport_rep 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 0x633ddcc8 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6421c991 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6458d126 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6630ea41 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x681c4ce5 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68e26552 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d36b433 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ff8f7f8 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x625cd4db mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x629569d9 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64d2fe47 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x653b1c5e mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b49d6e7 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b89144f mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c281a7c mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d0a1d1f mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e775dfc mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x703b2c6c mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7047725c mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x713f94bf mlx5_fpga_sbu_conn_sendmsg 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 0x75648480 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75a43077 mlx5_core_modify_cq_moderation 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 0x7765567e mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x782acb45 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78aa3a05 mlx5_get_flow_namespace 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 0x7c2e07ba mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bdca21e mlx5_debug_qp_add 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 0x7de38d7b mlx5_core_destroy_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd709fe __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ffcdb2d mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80a6d8a2 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8298cef9 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8381c037 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8554c74b mlx5_comp_irq_get_affinity_mask 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 0x8d23617f mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ee5167c mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a838155 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ee2a496 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fb784e5 mlx5_core_create_psv 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 0x93242574 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95f361b0 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x918d0901 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93eb6751 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9466987e mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9473070b mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9658e9b3 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96b463fc mlx5_buf_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 0x98e51d06 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x999817f2 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bb0a28b mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c65de08 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98a8c1fd mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99944fbf mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c976656 mlx5_eq_get_eqe 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 0x9e2f116a mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa55e7554 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5c7cd97 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6fa8de1 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d8248fd mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa14f2a2f mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa23bd2d1 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6f6eee5 mlx5_core_modify_cq 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 0xa82a610a mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacaaad96 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa866da8f mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8b018cd mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabff4466 mlx5_rl_add_rate_raw 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 0xaf307e6c mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb109b1bc __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb14da593 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaeb223a6 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafca26c9 mlx5_fc_destroy 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 0xb43ac605 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2b16036 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3b119b3 mlx5_core_destroy_mkey 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 0xb54db0e2 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb69b13eb mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6e94dcd mlx5_core_detach_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 0xb9fb98b4 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb86a1b08 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9754b7c mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5892a0 mlx5_eq_notifier_unregister 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 0xba9552e5 mlx5_lag_is_shared_fdb EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb475e47 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf45c486 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfad190e mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbffa7d17 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc049e3d2 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0855511 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc109fad4 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2b17045 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2cc4e1f mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc40ced92 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4e81d33 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcad18c4a mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc53ffc9 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdb884ab mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce6605cb mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf0662b1 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0485f83 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd439cc80 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd47c3aae mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4c6af46 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd55735b9 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd594507f mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc08a0b48 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1345db1 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc41f35c1 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc74c70c1 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc86349f2 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9c479fa __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd376f54 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce75fc1e mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xceeeff36 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcef7d691 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1c66540 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd21507b2 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd43283c9 mlx5_lag_get_roce_netdev 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 0xd70076f5 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd89116bd mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd78cc4fe mlx5_eswitch_vport_match_metadata_enabled 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 0xd9d17c85 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda087680 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda415c00 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde9eff3d mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1fb1bbe mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe254fed4 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe273052e mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4dde170 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcb1b74c mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe285a87b mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4282848 mlx5_fs_add_rx_underlay_qpn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4f34809 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5d48f22 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe54b7b23 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7343a26 mlx5_get_fdb_sub_ns EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebe0a918 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeca4d2f0 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed16992b mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeffd8ae4 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2bea3d8 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf57123d1 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf755e9b7 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf75a6be5 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2841403 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf307becb mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf329d10d __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5fbbe86 mlx5_core_create_rqt EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcd2127a mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd77ac8e mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xce05c931 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xd8524f3d 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 0x08a16e9b 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 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 0x12e57e7b mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18c0a58e mlxsw_core_trap_state_set 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 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1dd72c7d mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x2a21f47d mlxsw_core_rx_listener_unregister 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 0x3104dc30 mlxsw_core_trap_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 0x3caefe62 mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x42cf6bcc mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4594e4ae mlxsw_core_skb_transmit 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 0x4d2c393b mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4d4ec6c6 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4e45773d mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4ec31ed1 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 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 0x657ccaea mlxsw_core_port_eth_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 0x692ac04e mlxsw_afk_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear @@ -3061,40 +2950,39 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_a 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 0x7b39e533 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7cfdbf89 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 0x80e09975 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x82b46189 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86641023 mlxsw_core_ptp_transmitted 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 0x8ba5fa7e mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ef2852e mlxsw_core_rx_listener_register 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 0x98586338 mlxsw_core_port_devlink_port_get 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 0x9df0814d 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 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb4170961 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5db9e63 mlxsw_core_rx_listener_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 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 0xbb353aec mlxsw_core_driver_unregister 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 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 0xc37af303 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 0xccd23f5e 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 @@ -3104,102 +2992,103 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd84eb6b0 mlxsw_a 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 0xdc7eacfd mlxsw_afa_create 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 0xe62c1a28 mlxsw_env_get_module_eeprom -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe773ea39 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe32f8a7f mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xf565c458 mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x0c8cef40 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x78e5d32b mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x81849517 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xd99c2c1d mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08bf60ce ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a7de72b ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x157cfeb2 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x174395b6 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x17661009 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19048606 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1b1fc5c3 ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1dce7293 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2130834b ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x1586aead mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xe1166653 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x0bfb43c9 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x3f7bb11e mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x038db58d ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05f043ff ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05f8eda3 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07a482b5 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12c1f7d8 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1468c80b ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x14e2a69d ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16279110 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x162db018 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x173e991e ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x17c098c1 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x17ce57d1 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x196ca995 ocelot_port_bridge_leave 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 0x27d3c69c ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x284689f6 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2fab9cab ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2fb523ac ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x32714df5 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34d5fa5f ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a1e2b73 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x41c2eadd ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46857b51 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4b3ba3bc ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ca49202 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4f861a2c ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x507503d4 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51ba7d96 ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e91cafa ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x64432fd4 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c0da45a ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7567d464 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x76077b57 ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x79aac5ef ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a2627e7 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c9a4c36 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80f399df ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x829ee237 ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84921754 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x87d195c0 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x891818df ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89b9f9a4 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3206b0af ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x35f5a3a1 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3682edec ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c504363 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f510924 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x460215a3 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49414118 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c52a872 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x537a31f5 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5951363e ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f06f55d ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6043b914 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60e734e8 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6234a78d ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x655027a4 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x674c9aa1 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c890ccb ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6dfc612a ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74870616 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7938511d ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e674df3 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x821f3c68 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82b5c5de ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8360fec7 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84f12acb ocelot_ptp_adjfine 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 0x8dd454aa ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f1daab2 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93ae1755 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94b51eea ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9577465f ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a5d9b7a ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e33e680 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5a8bda8 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb33bf41a ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb49cc867 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4da9225 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb59d5448 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb68d74ef ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb9a09916 ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba199025 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbd4467d7 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf472986 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc050dae2 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc1b3cff7 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd0b0fea ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xce492d88 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd397df6c ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd64e03ec ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd85c1123 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb347e38 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe54a41a7 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xee13cf76 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf8e2afc0 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff304a51 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xffc5f0e9 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x403f24ff qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e4a538c ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8fc0ad05 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x964523f9 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9be01c29 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa979f873 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae67a7ba ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb29fed47 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3a0c204 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7401868 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba3132fa ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbe32a3f3 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbe4ed99e ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbe5c464d ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc0f47282 ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xca639eb1 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd21bfc1f ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd2ceb95c ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd48eae24 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd688c082 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdac87bf2 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc441d69 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdd106c7c ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdd275ff3 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6e77f6e ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xedb2aa21 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7246122 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9e47b40 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc089c1b ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfcc6dd63 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x00f22e96 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x1689178c qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x39af2386 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 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 0xabe19acd qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xc7d0b6db qed_get_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xc8c64b6f qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x1d139911 qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xd0f6a426 qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7e716c48 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x935700c4 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb147a480 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xcacd1644 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd7d9937c hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xbbe42a4f qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x9b52e26b qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x9f3f8668 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x48f0a18e hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4adeb66a hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7f8993b0 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa4ec12d8 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xba3bb81c 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 @@ -3209,674 +3098,674 @@ EXPORT_SYMBOL drivers/net/mdio 0xcdbdeca7 mdio45_ethtool_gset_npage EXPORT_SYMBOL drivers/net/mdio 0xdaceb7a6 mdio_mii_ioctl EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x1e2b1813 cavium_mdiobus_read EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x3ac4fcdd cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x18bc6c15 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x209605d0 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x42ddfa11 xgene_mdio_wr_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x7dc4dc2d xgene_mdio_rd_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xda92e8c7 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x10fc5197 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x1728f361 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x261c5beb xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x81a250d0 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xd63e7557 xgene_mdio_wr_mac EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x3c41747e lynx_pcs_create EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x55769d9d lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x087ba99b bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x6786bd54 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xb539dc69 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xde351c2e pppox_ioctl +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xea1c305e bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x31448500 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x31759e46 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x3e38cdbb register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x746a6fe3 pppox_compat_ioctl EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xf3d3a0b2 pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/sungem_phy 0x89373daf sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x2957af6d team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x3ee059e7 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x538e97de team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x9a20cf36 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xcaf293f4 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xcb79b5a4 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xcc2850ea team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xd3472838 team_options_unregister -EXPORT_SYMBOL drivers/net/usb/usbnet 0x609b5443 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x7d2426cb usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xcc425795 usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x379471a9 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x40358493 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x523379f7 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x58c81103 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x81e650fb attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x9d2ffe32 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xae156c68 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd2dc8b77 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe1e3ce63 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf7cc4f3d unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0256e45d ath_key_config +EXPORT_SYMBOL drivers/net/sungem_phy 0xf3c98081 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x0aa764f7 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x0b28084e team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x167b60b8 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x25955e35 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x3ad70020 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x97847319 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xc55a338f team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xf5e577ae team_options_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x047268f6 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x6981cd33 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x90ad4382 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0c2c2a5d unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2a2159de register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x55382ec7 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x75c5ed09 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8f466d1e hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x993d06fa unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbd0ead57 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc3b33976 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xce131d47 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe95d6a7d hdlc_ioctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0c76c2a7 ath_hw_get_listen_time EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x29a17d08 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2b8ccbb1 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1c1a6293 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1c52381a ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x293ae874 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2ccc286e ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3d04757c ath_hw_cycle_counters_update EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6ec60907 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x849f933b ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x98626d50 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x991a6ea7 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9ea58d0d ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x46666bdc ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e1a07fe ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x53778c1f ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa01797a8 ath_regd_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa2fdd4f7 ath_reg_notifier_apply EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6b76b94 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd0341595 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd5d3d7cf ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdba6064d ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdf93dc8c dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6e4a40f dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc25d3ae3 ath_key_config EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x00a0151a ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x00e9b55e ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015be313 ath10k_ce_alloc_pipe EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x05dd77e0 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0aebe9bc ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0b20cdff ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1025f6a3 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x147624a2 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x14838fc8 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1a199bea ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x211dc5d8 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x238135a0 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x27dbff85 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x29efdcdd ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x32e01819 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x39d3d6d7 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3d453270 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x421a1d5a ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4f6f2f2e ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4f9eacaf __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x55bad05a ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5c459ed7 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5c91687d ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5e1774bc ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5f35d8ce ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5fec1860 ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x65f3c4d7 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6af279b7 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6bb579eb ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x761bc1bf ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x80f54fc5 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x886d34cf ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x89a19699 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8cb64603 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x990520e3 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ec14b77 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa0c06960 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x08f77f84 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0908fb87 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1158fb48 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x11707e18 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1698be08 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x19dfe130 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x20ad1e47 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a49c572 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x36d234d8 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3848cd79 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3aee2777 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4e12ba1f ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x52fab633 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5690e35c ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x57a66e42 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x57ca4f0b ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x57f40bdc ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5f8f2e33 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x64818695 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x678cf81a ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6c47ee95 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x75ecc0d0 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a129e0a ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7b0a44c4 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x822800dd ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x827a8220 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x89d9835c ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8f321dab __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x907630f9 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x92ab297a ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x93488b82 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x98df63fe ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x991406aa ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9b6ba770 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9e57c2b0 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa187eb7d ath10k_ce_completed_send_next_nolock EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xad9cde72 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb57d60dd ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb7e5222f ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc3ab794 ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbcb3798d ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4659db1 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc83459ab ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca1c6c13 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xce7fd815 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd3956cdb ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdd930404 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe1dcba90 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe23cdbd9 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe52aa997 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe556cebb __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe6d319d8 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xea66471f ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xee74c962 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf299ace6 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf9d44c76 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0e33a483 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x13ee7b75 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x22d4e166 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x245c7883 ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3984dde0 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3e7c115c ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x44bf2510 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4781866d ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x656e7544 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8981d5a2 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa5410f2c ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaf80f924 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbbd8d537 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc07c9346 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4a4b943 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc5e47aeb ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca65ddb1 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca8fb7df ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcb8254f4 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd53c89d ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xce5e2ca9 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd1aa3f20 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe3d8ba8a ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeb49d08b ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xedd40315 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf0fb069c ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf59086e6 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf5ada9f1 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfa693ed3 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0ad97935 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2475343f ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x25dcd0bc ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x26b050ea ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3c6dccbc ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x405adea9 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x617f712c ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x621950f9 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x67e5f0cb ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x78abc34f ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x78e80126 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x859d0b9c ath11k_core_deinit EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9e420a4a ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa1979d98 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa3a4c5d3 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xad68f755 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaf28d66e ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb2aa2b68 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbb0ea8b4 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc824b708 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd848f93a ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe9f7c8f8 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa702f815 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa9082fe0 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb29b9a7a ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc0d9833e ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc83a43d0 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd64ed437 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe76b8f18 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe83c49b8 ath11k_ce_free_pipes EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf41ebcea ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfc1d82e4 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf08913fe ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf96211f5 ath11k_debugfs_soc_destroy EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1ee31f22 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x20cf1cb4 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x22aa7509 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x13d0779c ath6kl_core_cleanup EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4f09c439 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x70215aa8 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x78926fa8 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8609530e ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x45e17c4a ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x524c9333 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6485381f ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80369c1d ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8fe15df6 ath6kl_core_rx_complete EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb3ba8c88 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb3d69950 ath6kl_hif_intr_bh_handler EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbf63a985 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc8eb9f2d ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe2f8cb7a ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xecd23bc8 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0050feb7 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0f46629b ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1f70de3f ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3db5d709 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x43d22163 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5c072159 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5c2df3ed ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x61003247 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x61e6fc69 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x66a508eb ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6e8ee04a ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7df4e460 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x869dbabc ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa983141c ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcbc8b298 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf5530f42 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf7901c9b ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0afb0ce6 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x26fafe58 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x30410b6f ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x36ebbeda ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x38697541 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x514cbcca ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5798660a ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5a6d73c8 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x603f1279 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x638af70a ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6c474c58 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7af7e282 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8fae405e ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x97181ca4 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb32e1b8a 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 0xbbaba3a9 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc3a1f80e ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb8a0db7e ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb98dc33e ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc5db1e64 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcbc2c7e9 ath9k_cmn_update_txpow EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdb864b59 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe68d5fbf ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe81147ce ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf3957af8 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf84a3847 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf895baea ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xffc84c5e ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x016d0d4c ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02fca422 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09f9250d ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b435f7b ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d29c7a5 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd42e0088 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd4aed806 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe5dae668 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfa24463b ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01081837 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02522477 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x048b26b1 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05fad6e5 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b969a51 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e2066e2 ath9k_hw_set_tsfadjust EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0fbbd566 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17debc54 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x197158e1 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ae23cd7 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1db96be1 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x208c993a ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20fa0143 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25d76230 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26566750 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x269f4ba4 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27ebc01c ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28e4f4cf ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2aa08cf9 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f8c8980 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x316242a6 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31664810 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x319f80e9 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x344bc1b1 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36784d9e ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3775558a ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39075dad ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cb6f338 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d5751be ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x409a5f73 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x411f1894 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x426f28c1 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43ce5fff ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45c6da59 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x526d111a ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x527f523d ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5866b000 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x586878d2 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c01862f ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63322696 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x649b95eb ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f08a2cc ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x716cb4e1 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x725b3479 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x737fd7f4 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76e31762 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a78a016 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f753639 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fb92207 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x837e060c ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85282d11 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87b83810 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8931c33e ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e6aba85 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f87ae8f ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f9190a8 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f9dd8e6 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x941c5714 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94f6544b ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95949c07 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f6c219a ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2d8e021 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3b906df ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa504e84a ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5aa6bed ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5c40581 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6c195e7 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa72f2837 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa98d3bca ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabf95aac ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad8d59fb ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb121576c ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb45c7f9e ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb896f8c0 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9565599 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd247b1a ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe71dc2d ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf42d6e5 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc38269a1 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb566c1d ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd03fae36 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd20018c5 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2c3125f ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd340875b ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3489ba6 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd49abca7 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd65f710d ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6ed97eb ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd77c3517 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd88a8d3f ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd973558d ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb683e48 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbd8dacd ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde854c19 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe06201f8 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1ebf8e0 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe225424b ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe539104e ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe98bbcbf ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec8fdafc ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xecb707b4 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xecd5de78 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef12e2d6 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef6d9f71 ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0dee030 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf462d239 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf73837fc ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc9e0f00 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x32927d7e atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x440dc893 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xdcfaf0f1 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10883249 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ac6edc2 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e746367 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21830671 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21998212 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2328f201 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27df1587 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x281fdf4c ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x291a645d ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b1d1dc8 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b46ab4c ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f742858 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32164186 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x357ac2dd ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x366a329e ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d0ef4c7 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e168590 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40539b61 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42fed41c ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44a6c9d6 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a3079df ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ca65bc5 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51f13808 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5303107c ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53361182 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53f3061b ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x579e914e ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a6c341f ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5dbda0a8 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5eec93b2 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f891e5e ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60168c0e ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65b74b7b ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66afbc99 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cbc2e6b ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f48152e ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7513be50 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78d9197f ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x798411f6 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a40d719 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ad6f45f ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7cb51bc3 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e103555 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ee3e887 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80c0761f ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89552cb2 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a047fed ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c170922 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c87eccd ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ca812be ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e97b72b ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f97ffa4 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x952e4dac ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95f97a8e ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96868ae4 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97f1bf40 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9856cb8d ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9aa73c38 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dc43f15 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f18d180 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1bc63da ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3e2c689 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4bafdc3 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac11bc0e ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xadc79cc2 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae2b268d ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae6d65b0 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaffa9dac ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb145a1be ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2e68d81 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb32134a8 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4110d9d ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb69dfd4d ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd513e56 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc10d94ff ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5aeeb3e ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6affae7 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8d3fa0c ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcaa7faed ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcea16b10 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd23b7009 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd49fbdef ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4a4fb62 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb8463d2 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde519f34 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1214a72 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2e524aa ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2ea3d5a ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3800225 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe91aa150 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea1cf59a ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee22913f ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeedbec32 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1835591 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1c881f9 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5b27583 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf657eb86 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8c6260d ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf96e2618 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfca49ab0 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffddb36d ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x5a6ca090 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x7385bec1 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x9472ba8d atmel_open +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x062919e1 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x06670a6e brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0d90cd7c brcmu_pktq_pdeq EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1f36f214 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x260e230a brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x33b0bb35 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x36664a2c brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x59c0fd39 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5c230a82 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6142509a brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6458928b brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7f157b11 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x83e9c902 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3eaa7c82 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x663d505f brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6d248d30 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x83bf843c brcmu_pkt_buf_free_skb EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd09c97ed brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd42d83cd brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa2c805f1 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb2419bc5 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb90eebc3 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd5fb229f brcmu_pktq_mdeq EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xda5232b0 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x006d4846 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x18e965a9 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2dceb3be libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3653aef2 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5b740d20 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7439b966 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x78041ae4 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7b21a09d libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x88f23fcb libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x91e25d72 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x961afb1e libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb45b1452 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc42e088d libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc813b101 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd4f48740 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd59f99ca libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdedfd1bb libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdff5c181 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe6085323 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xee655630 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x019135dc il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02794180 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05cddf76 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07a62ee1 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0dd32997 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e5b0a0e il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e7c0b2a il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10c5b283 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x111a0832 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1e52babc il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2733e404 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x27f92430 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28d270ad il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2af08a06 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b1ede20 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf2a625b3 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf836069a brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x10b47669 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x10b76a6a libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x20d2591c libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x24c06001 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3375f1df libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x388a429c libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3b798701 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x40ae88ef libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4adb0bdf libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4f17917b libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5d0536c2 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x616f4aca libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x63974ac1 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x70164cc7 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x73bcee28 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x77fdda77 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7852656d libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x85e0bedc libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa3a05272 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdd08ae39 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x046a5a49 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05e66001 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0a202695 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c3bcf47 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0cbbf362 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x139e988e il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a83556e il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ad8062b il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f581e80 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f935ac7 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22b7f766 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b294518 il_rx_queue_alloc EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2eae941b _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32312f30 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a88e3c6 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3afbede2 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e7819da il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f61ca55 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3fdf787f il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e1cf72d il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f2ef4d3 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31166b04 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31eb60ba il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3479293e il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3627c105 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x365effb5 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x379e5500 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f9b9764 il_get_passive_dwell_time EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x425ac9f0 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4342f7a4 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46b86396 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c1941a4 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4dfcc263 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5248b3c7 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5460722a il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x54af1048 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55a72e7d il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5784b3dc il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57c45a7d il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58dc5dc3 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c42a490 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5cabb9bb il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f46063a il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6217b599 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62761f9c il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63d32b90 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64c9c5b5 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x653c6dd4 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x684da311 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x689bf32c il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c10ddca il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6eb345d3 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x723c7095 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75f54d18 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7707f014 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78c4a459 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79d88aa1 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d2465ec il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7db5e670 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x802f97a3 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85294916 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a5dfbff il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8bddc069 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d6ebd7e il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e3b40ec il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x947d8e25 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95e2ff77 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41f8bd50 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42732e6e il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48845347 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49098587 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4eb507b2 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55114e34 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55f4e5a1 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x56bcea3b il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5917f155 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c228c79 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f148fe3 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f59c41d il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5fa628a6 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61e4f163 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6374c6c1 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6499c450 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x658116fb il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65b82226 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65e745d6 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ca99f62 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e1b7ca7 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f0ee682 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7324687b il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75c99433 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b7ffd53 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ccf277a il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d87ccae il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f313c0e il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x80a4492a il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8159cd66 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x830ff1f4 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86c30927 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x879241d6 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8816d451 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8917bab0 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89a62c33 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a50a18f il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c955fa0 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91c8bbd3 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x989a7eee il_tx_cmd_complete EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f23c139 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0fdad97 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa381b843 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5fe93ad il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa62c2e6c il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8a825fd il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb065b497 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1553238 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2de2dea il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3672abf il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3b54155 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa29aaac0 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa33b6f76 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5a18a84 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa83f8636 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad5c0f45 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb263e8ce il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2777606 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4a0b0bb il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb5c1e0c0 il_mac_change_interface 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 0xb85dd72a il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9d1ccd5 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbe1cea4e il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc30e1362 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc43890db il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb85b05f il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbec9957 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc2b6940 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7bdad3a il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd9d4ab8b il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf9eff38 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe0293a2f il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe12d1493 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1912aa9 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe22dea2f il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe674451c il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe794768c il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeceeec16 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed36bb1b il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef96ee3a il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0515c2c il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf133b78e il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf53976b1 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb89c4bb9 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbef96e70 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0521262 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1ce3687 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2951a0d il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5179f61 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc63cc063 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc92ac2c4 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd63eac8b il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd707e381 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xddadc393 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe07d330e il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4e16f15 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5488971 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6a33ae8 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe74a3f88 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7c5bd90 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe824b4cf il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe94426e5 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeaf25906 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeed27bf2 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2e63982 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf48ae3b0 il_mac_bss_info_changed EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf938cf8a il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9c4281b il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd1a37a7 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x31cad72d __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf91b7de8 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc822a1d il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc90e83b il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe44bd67 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xffa83131 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1309ad80 __traceiter_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36a862e9 __tracepoint_iwlwifi_dev_ucode_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d23c104 __tracepoint_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ea80850 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x57dcb1c0 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x63bb73ed __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 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe72fecbb __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0db072a9 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1165e1fd hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0a4b02b6 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0c3c9cc6 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13aa675c hostap_80211_rx EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1f13a8a9 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x22ac3674 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x30ce651c hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3b1aa258 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5d0701d4 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5ea10fed hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x60bed494 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6258d4e0 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x69f230fb hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x714c9697 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x218c0ea1 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2193f294 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x27a3189b hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x30b5e0fd hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3ae21c8d hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3deb7f3e hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4049cf8f prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x520750e0 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5858b379 hostap_setup_dev EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x76ef3089 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x790b84a0 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7ad67c49 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7b56382a hostap_get_porttype EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x92943644 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x96e86538 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa4650952 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xac92b32e hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xacb53e06 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8c1a27a4 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa7769648 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2e15a52 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 0xb605a86d hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc3bb0ad6 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc931176b hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcae58714 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xddfdb7c4 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe874f123 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf03355a0 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x105abad7 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x32146486 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x45cece83 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x46209077 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4d634fb5 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x64bf988c __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x68879aa5 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6986611b orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x87ec9172 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8a841642 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8b3c6e55 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x94b84074 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9c0d7de8 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc9843d6d hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd56fe65c hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd8bb708c hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe3e463a6 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf0258dd5 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf76f0970 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfdea233c hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0b4be7b5 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0d59ffbf orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x39f99be4 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3e511af2 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3f2456e3 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x42ce8566 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x45a653bd free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x46143b0f __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x48add422 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5499800a orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x596ad9d2 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x70134d75 orinoco_tx_timeout EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcad82b56 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdebfecfb __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbb576d77 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe3821972 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xff136067 orinoco_change_mtu EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x37ba45f5 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x24a97828 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x00593e09 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x03d5220c _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x12fa4d7b rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15738668 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x16559a24 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1a92334e rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1cc6dce0 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x22ade671 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x0f51170c rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x077ab8d0 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0995621a rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1026c3bd _rtl92c_phy_init_bb_rf_register_definition EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2649fd0e rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x27ab4861 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x292cafac rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29853024 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b2cf602 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f4c3290 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3f32dea2 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x46084b87 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x59d8309b rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a545b7e rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x608f3fa4 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60e90340 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6831c8e1 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7d474ae5 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8299ef9c rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8827aa35 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8a217e94 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x90d5496c _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99fd4416 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa70248b3 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa8179088 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb01686b3 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb27c8c23 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb27cac64 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc1b541ef _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc68b9cb4 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc7314a97 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd172c000 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd4dec4c9 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd936b19c rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb711e88 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xebd843d7 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xecf25ff8 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf16ee393 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x0345829f rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4c01c54c rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7d2f3121 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x87d7aff0 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3736aa31 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6a706760 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6adf7442 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xfbcd4408 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0a3b0094 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2769d0c1 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2811ccc5 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4063a6a5 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4264594e rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x45b063ae rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4ba9c44c _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x553e1c18 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x59df8667 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5aced3c5 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c234a89 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5dcb3a3a rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5f7d241e _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x617b2afe _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d53ae70 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x750a9fb3 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7caad3e8 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x84112cbb rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x89fd6e5b rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8a07d144 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x943b3b3a rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9adf4f02 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9e850826 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9eb0aff9 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa26ece74 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa43eb245 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab53dcd0 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb145e86d rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc1875903 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc3a2d642 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcc40d6fa rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd0900f5b rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd148bdd6 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdbda335a rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xed05fc33 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xed5d9b5f _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeddd90f0 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xef593a9f rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xff74797f _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa8ef1660 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd6145ccf rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xda9c5fcf rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xe59eccc5 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2445b573 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2f435585 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x45463de3 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x99f30d57 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07ffc141 rtl_bb_delay EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x177932b2 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x142e073c rtl_mrate_idx_to_arfr_id EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c751c0f rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24973383 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x25431880 rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a1dbddd rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a227074 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1bed9aff rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c2d1d8d efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x20a21a63 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x22427be7 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30892a0a rtl_get_tcb_desc EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x340bf702 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ed9ad87 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x43ee38c0 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4d0fb4de rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54779b07 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35889c0f efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37169081 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x395806c1 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x432d63a1 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4dc469fc rtl_signal_scale_mapping EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58f6a822 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5bb8f5a6 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x61329908 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e1c8e1b rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7c9dd54a efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6251f0b6 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x626f8dae rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6d1f884c rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e0c6ee3 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e66ed63 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x76855241 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b54104b rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x88bf5979 rtl_efuse_shadow_map_update EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa396d81d rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa97bfb82 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa588344 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5e6fde2 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc5768168 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd68b6cd rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf88af14 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebda9528 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x95311c2b rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f17efe4 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f4bad45 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7a1907c rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb06b7321 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb28c6b1d rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc35b6c4a rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd71614f0 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdfb4b82b rtl_phy_scan_operation_backup 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 0xeee128a5 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf42d0364 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd47abb1 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd980f12 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfdf501b8 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xcd615187 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x50a1260a rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x26812b35 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xc943400b rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x010be198 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x01d79d0e rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0b353627 rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0b6edf4a rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0c80d2dc rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1c6ca490 rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1d101edb rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1fa044c9 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x231416ed rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2d4c2562 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee8c5103 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x468b89d6 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xdb4bfe5b rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xad6bf364 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x42a9985a rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0cb14811 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0e71348d rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x123f1a05 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x131de22c rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x15935df4 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x15f7f350 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x23a835cf rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2691e963 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x27d1796e rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x281e72bc rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x298d9122 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x32f6f8f9 rtw_fw_c2h_cmd_rx_irqsafe EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x341e472c rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33c9e71c rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33d528a7 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x34f22193 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x363eadef rtw_phy_pwrtrack_avg EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36dc0f20 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3e61c111 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x40f9b9f8 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x39111558 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3ad4d20c rtw_phy_write_rf_reg_mix EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x45359db3 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x494c85ab __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4d36e5c1 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x49618834 rtw_phy_pwrtrack_get_pwridx EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x55491be2 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x56bd9d4d rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x53e3c294 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x545faa98 rtw_restore_reg EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58b8c174 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5af76353 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6064261d rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x64df9677 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x64e9701d check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6693411e rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x70c3e92d rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x714ceb8b rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x78509250 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7c876e92 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x864ee683 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x944cfe9f rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9998ca30 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9f926cbd rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xad37f116 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb130402f rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb49179d9 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb7044689 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbb9abdd2 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc23c2bdf rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc273ca59 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc444b829 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc8b02c40 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc98a7b7e rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc9ddb0ff rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcb590a61 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcced04c5 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xce92084a rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcf82474c rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd3addb84 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd593da81 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdcd205ad rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe62d6c0c rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe81d1ee4 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe97ea9c9 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf87ee5e7 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfa04f8d9 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfde75c4b rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x1030646c rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x36dba320 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x9666620c rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xeb877d7e rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0a1bd78b rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x19f76449 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1cd4324f rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1efc1be3 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4c18bcc7 rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x50cda06b rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x553a574c rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x67912537 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e5d05aa rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x708ad94a rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x76b9c358 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7ce218ad rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8d4e3d63 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x90c1a9eb rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa4a26ceb rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xac1045f2 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb662f171 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd6ce74fe rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5b09d4b5 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5b5ccd11 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x643b9055 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6933d0bf rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6d7fdbf2 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6ebb3c3f rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7030f8c9 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7d58894a rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8112b950 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x89827e55 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8c624c1d rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x95acc97c rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9d5c82f0 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa0a72d99 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa49fe29a rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xabd24f82 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb2a24b8e rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb75f5387 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb765c461 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbbcedc26 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc342bbf7 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcbfeb5c4 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd6bad929 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd9be7d78 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdb1ed0da rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdd1c540e rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdf467af3 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe797e3ba check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe7bf566c rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe96a9ffd rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf3848130 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf620a09e rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf8bb0b11 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfa95c17f rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfd8b4d46 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xffd98d53 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x344a56d0 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x608ac30a rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xbfdd7f2e rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xf8d67eb0 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x07374811 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x14b69e4c rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x15f1fb6e rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x21c47c25 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x21f94aff rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3fdbb441 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x41693e92 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5a59aa75 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x653b9e40 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x68c2ab51 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6b1de5e9 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7e996cfa rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x91db47bc rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x94dc77c4 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9eedfbc6 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa58e46f1 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbe190ab2 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbeb32683 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd6150519 rtw89_core_napi_deinit EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xedc81140 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf69aab77 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x2690c215 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x2a5cbb4f rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x18b53b54 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x3fcab258 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb1079d3d wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc530a028 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xff12adbf rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x411a6b61 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x3c006c5f rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc1e24cfb wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc4d7e181 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd3b7d31f wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd9a1078f wlcore_tx_complete EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x0fd99167 fdp_nci_probe EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd525977f fdp_nci_remove EXPORT_SYMBOL drivers/nfc/microread/microread 0x4448036b microread_remove @@ -3884,7 +3773,7 @@ EXPORT_SYMBOL drivers/nfc/microread/microread 0x7bba3303 microread_probe EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x898a9026 nxp_nci_fw_recv_frame EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xa78b5af4 nxp_nci_probe EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xc900a427 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x9a103a5c pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x46ad91cf pn533_recv_frame EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x4b6a9a5e pn544_hci_remove EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x906522c1 pn544_hci_probe EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x4e7c33af s3fwrn5_remove @@ -3895,7 +3784,7 @@ EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xa2f85733 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 0x07db5181 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x32cc6564 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x23b1a4f9 st_nci_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3e132b37 st_nci_se_io EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4b6c5801 ndlc_recv EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6812d175 ndlc_open @@ -3905,12 +3794,12 @@ EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb1a38dc7 ndlc_remove EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcf128239 ndlc_close EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdaf9ff5f st_nci_se_init EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x01d88f78 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0d104fd6 st21nfca_hci_loopback_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1069da7b st21nfca_apdu_reader_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1373ac27 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2c7047c2 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x13a6c6cd st21nfca_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x315a8fc7 st21nfca_tm_send_dep_res EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x338e780b st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4bb2d921 st21nfca_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5097bea4 st21nfca_im_send_dep_req EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x576d4b72 st21nfca_im_send_atr_req EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x58a86c3a st21nfca_se_deinit @@ -3993,152 +3882,153 @@ EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfba648eb pcmcia_parse_uevents EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x31638a28 pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x3842f65a cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x59322b4d cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xa803ff88 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf258456c cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x269676ef cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x8c131c0b cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xaacb2e12 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xe757a652 cros_ec_register EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x759f8fad rohm_regulator_set_dvs_levels EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xaf1c9ecf qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0a662273 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x19e597da unregister_rpmsg_driver EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x288747c4 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x28a48cce rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2d02acf4 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x31a5fcc9 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3818b0d9 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3978176b rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3a32f69e rpmsg_trysendto EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x43c295aa rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6ac64a80 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x847c26ca rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x87d72b2f rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9b533f1e __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9f82130d rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa1fd7bf8 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb1b6af98 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb26a589d rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xba37ebdb rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc4ffae41 rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd03e8bfe rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe0062d67 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x8f913e27 rpmsg_ns_register_device -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x36885415 scsi_esp_register +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x65771efd rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6d75a0eb rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7cf741ca rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7d2a132e rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x84e9218b rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xde4d0fd9 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe9122950 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xed5314fd rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfc790ed8 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xcc277c1f rpmsg_ns_register_device +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x25f1c1af scsi_esp_cmd EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x85599066 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9f8f1836 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf4bf1829 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0b1b93ed fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0c68a00b fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0e60d2ec fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x11a1bb9c fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x676a2e36 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7d6b0606 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8e3e3201 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xabeb4397 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd42bcbc4 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe1b230a2 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xed229a34 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0364a2e9 fc_seq_send +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xace61864 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd4fadde3 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf2ac3d6f scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3ba9b2c5 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3d4c49eb fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x40589207 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x525c4772 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x664cdec7 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x676e6593 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6dad6acd fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x84128f7c fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8bb98020 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa2ef2c11 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf053768c fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06cfe0bb fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x073512fe fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0863c20d fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a6eac70 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d112152 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ed91aa0 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x109e805e fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11a05a90 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11dcaa98 fc_exch_mgr_add EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13eeff69 fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1464f75f fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f6950a2 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2088d0ad fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2121aa3a fc_get_host_stats EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2188ce48 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2250f416 fc_exch_mgr_list_clone EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x249ed565 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f60ed31 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30b27000 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f72d12 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d579898 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30d679ca fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3bf4d28b fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3caab706 fc_fc4_register_provider EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3e310fb2 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x431a8327 fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4343a459 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x499d9c18 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5116fb79 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x534c1138 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x547c7ead fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5a4c160d fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64feac84 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6546729b fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a434b5f fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ab84a04 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6c6c9aaf fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x728743b8 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c4c30ba libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x547e5fd7 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b60d6dc fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x626c915c fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64f6c1e6 fc_eh_abort EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x73953a1e fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7622fd10 fc_get_host_speed EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76d4e505 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77c464f0 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7c34075d fc_slave_alloc EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x802e09aa fc_fcp_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x841371a2 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9406718c fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x81ec643e fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x84c0324b fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x862d66ac fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x93a9e0a4 fc_fcp_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97b79120 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d470c74 fc_get_host_port_state EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d6982d6 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9dbaadf7 fc_exch_seq_send EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9fd2f61a fc_lport_logo_resp EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa618dcf8 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7495de3 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa8d4c290 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xab9e10d8 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xabd54dfe fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6032ede fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa611e6d1 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xafbf860e fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0b77190 fc_exch_update_stats EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb126a764 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3e19447 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc10fb8c1 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc300fd0e fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3b0c956 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc83afab6 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2846b77 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3876ebf fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb859fad1 fc_fabric_login EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca81018f _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcdbcee14 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd6221d01 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8e61849 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb480363 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xddc59983 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xde1e7d4b fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb94bf55 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc1ef17e fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd41c4fb8 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd4365504 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd6e6b79 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe19e721f fc_lport_set_local_id EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe26981ed fc_fill_hdr EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe864ebb5 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xecee3180 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf21e555b fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xec2e6005 fc_seq_assign EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2ef259b fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf4c9251b fc_disc_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf60e46f7 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf997339d fc_disc_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfe8b603f fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfafb97c9 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfe55d4be fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffb2ebdf fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x054ce76a sas_resume_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7615249f sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd20beb89 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf767a77b sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5ad116ce sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xcc708210 sas_suspend_ha EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2eca5881 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 0x01cc74b3 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x05228b59 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0c0e503a qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1ce0fb0f qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x32098156 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x32b40dcb qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9f3b1bc2 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xafa8ed67 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb21e5ba6 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc1d06d45 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd279f506 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfce3b412 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1ae3ed96 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1de39a76 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x46994cf6 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5a1f1db5 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x65b973d6 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x69d3d0e0 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8c7661d1 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x99d952da qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa51d7ba3 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xadbc5923 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc81a9d98 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe2cef626 qlt_lport_deregister EXPORT_SYMBOL drivers/scsi/raid_class 0x54c0e9da raid_class_release EXPORT_SYMBOL drivers/scsi/raid_class 0xb69f914d raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x35040db0 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0b5dcd4b fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1bf95110 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x29bd0583 fc_host_post_vendor_event EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x37b5a425 fc_release_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3e68cab6 fc_remote_port_delete EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4465cbe5 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x61f701f7 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7a8e75e5 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9029d7da fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x93e1ff9d fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x723fef3b fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x77eee521 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7e9c5bc5 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8abd5fe6 fc_vport_create EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9e02fd7c fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa6458ef6 fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaab703ae fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd766e150 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb9da8096 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd0bf70ca fc_remove_host EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdcf0764d fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdf9512e8 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe0350990 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf33eaa85 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf4f01a05 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe19898d4 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf5692707 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfb323ff2 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfd751401 fc_host_post_fc_event EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1c26512c sas_port_delete_phy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1f97ab2d scsi_is_sas_rphy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2467927d sas_phy_free @@ -4146,12 +4036,12 @@ EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2ddb40d4 sas_phy_delete EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3cb19b51 sas_port_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x406a2b06 sas_end_device_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4ad251de sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4b65d4b7 sas_release_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4bf9ef83 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4d21b564 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5003607e sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x53ba1f3a sas_get_address EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x574ce738 scsi_is_sas_port EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x585465ee sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x756e5ebf sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x77d3c734 sas_get_address EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x79f6917a sas_port_mark_backlink EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ba43c7e sas_phy_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x84d91918 sas_rphy_free @@ -4159,39 +4049,39 @@ EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8548f87d scsi_is_sas_phy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x87624e87 sas_remove_children EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x91dff3fb sas_port_free EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9adad374 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa1fafad6 sas_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa65c98a4 sas_rphy_remove EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa785cca0 sas_port_get_phy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb4ef20ec sas_rphy_add EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb5f11d92 sas_port_alloc_num EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb8dbefab sas_phy_add EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc9346381 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc94f47d4 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd18d0f25 sas_remove_host EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd2adc5e0 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0b4f83b3 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd3a02a1d sas_read_port_mode_page EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb5dc36c3 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe160440d spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xed439fa8 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfbeac966 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa3848037 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa7e76535 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xaacdaf8e spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcd4bd17a spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfee66afb spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x122c8ef7 srp_timed_out EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2d1dcd04 srp_reconnect_rport EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7e8f1aac srp_rport_put EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xbedaf9aa srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xdd4c046e srp_timed_out EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xdf7d90e0 srp_rport_get -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x7ba87e71 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xc05ff23d tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x38bf9163 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x4f8e9961 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x52f1c67d ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x54ebb949 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x5c3ac236 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x6a92a464 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xe238d3c7 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xe64b566b ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xe9eed648 ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xeedeea73 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x48d36bbc tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xa34f63b4 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x09334087 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x3ae8e670 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x5bd4edd6 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x9731cb8a ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xbae41bbb ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xcd567398 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd7482e0b ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xde0cfc78 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x4df257df ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xe8e5ce31 ufshcd_dwc_link_startup_notify 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 @@ -4245,25 +4135,25 @@ EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf3c1f7f2 geni_se_clk_freq_match 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 0xc6df3248 qmp_get -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x05c48e6b qmi_handle_release 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 0x30a1166e qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3a571233 qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x42662ab5 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4e4b5793 qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5c25ed8e qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5c9082de qmi_handle_init EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6d4e8b2d qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb73e7ca9 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc0be1175 qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf746deb9 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x90727f05 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa8514aea qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xafdae4aa qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb289d561 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc55c0148 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xcb479d3f qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd4dade27 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe1779353 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf2bc6c80 qmi_send_response 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 0xe3e9f9df qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0xec537416 qcom_wcnss_open_channel EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x057110d5 sdw_read EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x12ee0886 sdw_extract_slave_id EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x168c9f50 sdw_write_no_pm @@ -4313,8 +4203,8 @@ EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9e22f3fb sdw_cdns_exit_rese EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb1a41af6 cdns_xfer_msg_defer EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb22e3775 sdw_cdns_clock_stop EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb783ad1d sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xbaadf731 cdns_set_sdw_stream EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc4869bc8 sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc7c2eb60 cdns_set_sdw_stream EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdebd3779 cdns_xfer_msg EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe2f3b1f4 sdw_cdns_check_self_clearing_bits EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xedeb4bb4 cdns_reset_page_addr @@ -4342,150 +4232,149 @@ EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size EXPORT_SYMBOL drivers/ssb/ssb 0xe8106265 ssb_pcihost_register EXPORT_SYMBOL drivers/ssb/ssb 0xf04aa40c ssb_device_is_enabled EXPORT_SYMBOL drivers/ssb/ssb 0xf187dff0 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1427b14a fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x223c4c37 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0ec82e5a fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x15d2b4b0 fbtft_write_gpio16_wr_latched EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x252ceab5 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x30bced1f fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3d819804 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4545bd40 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x47626696 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4f608255 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x521d5ba3 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x538e02a9 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5774ca59 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5b2bd7bf fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3d4a840c fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4aa36e43 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5ad3edf5 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5c2a3365 fbtft_register_backlight EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x66104a0c fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7931f055 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7bf3cc86 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x685fd419 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6b7cfb86 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7638e1c4 fbtft_write_buf_dc EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x82152ab5 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9008652d fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbd09a59c fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x847ba2f8 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x89f2867b fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc7763621 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcc930e72 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdb026702 fbtft_write_vmem16_bus16 EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdc9dbf91 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeb0886ba fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeec85527 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdf219591 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe31ce054 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe8cdffc4 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeef4877a fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf07baf32 fbtft_framebuffer_alloc EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf0d59cb4 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf181e3db fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf322299d fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfabdf505 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x5ce5320e gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x6dd1c936 gbaudio_module_update -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xa9af24bb gbaudio_register_module +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfee22bb5 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x8957a479 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xf23f6a5a gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xf2743e17 gbaudio_register_module EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x0b24a311 adt7316_probe EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x8ee20f1b ade7854_probe -EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0xb34837b5 sp8870_attach EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x2aef6043 videocodec_detach EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x39fc6da7 videocodec_register EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x3c98752e videocodec_unregister EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xb7356381 videocodec_attach EXPORT_SYMBOL drivers/staging/nvec/nvec 0xab3153ff nvec_write_sync EXPORT_SYMBOL drivers/staging/nvec/nvec 0xc8765f7d nvec_write_async -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x019af2d1 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x121cc713 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1250311c rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b19b70d rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x02258f9b rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x050516f3 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0580e4b6 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x13db83df rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x147b0fe9 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2147f9d5 rtllib_wx_set_mlme EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x240fe1dd rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x26cd8e7d notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2bc65e66 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f073f45 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f3128da rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32166c2f rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3800b7b1 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x412df0c2 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x42f91f4d rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x49152cc9 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56089e50 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x57a689bb rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58b01080 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5aa34ea2 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e2dbccf rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x60863d16 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x64f49b9f rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x690bdab6 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74a1adb0 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b48c10e rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x87b60edf rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94a43dac rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e98c9b0 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9f3c54da rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa0a9c94d rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa44edf51 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa7db6739 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa829b349 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xacadc3c0 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb1cdac4a alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb6f49bdb rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb94a905e rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc30e721e rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3d2cec9 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc41fa952 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc65855e1 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd43a62a1 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd671fa86 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x224378ed rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x250024a4 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x27157d30 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f44f7e9 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32b136b0 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ccfedc9 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3cf48651 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3cff7837 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x474058a0 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4f284f15 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53829aab rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5647e03a rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b96d550 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6e2ff6c8 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x726ca79d rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73b72341 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x743e4462 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7884b18e rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7cf12348 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e2fee69 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x81fc8cc9 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8394ddac rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c368cd1 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e8ecf8d rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9032cf57 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x972a47e9 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa2cef5bd free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa5d2a066 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa65078ca rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb466c843 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb7f1530c rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf2b9448 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce1f050d rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce8094f2 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcee94676 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd01c45d2 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd7d61f5b rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdae22e5f rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdbc3adc0 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc1bc6a1 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde71e3c5 dot11d_channel_map EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe706a9ee rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe82b9cbb rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf24ff0fe RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf5a42df6 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf824b1be rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf8621715 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfa01ae16 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04dfd0b4 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x05948a40 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x05d9e655 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07fc3a6c ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0973887f ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ed4ed3a ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x133f296a ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1475561a ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x18391402 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c4f8344 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d393fd7 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe7484e4a HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf0c586e5 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x02bd9a4a ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08a5a958 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0eae278e ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x19a151b5 ieee80211_wake_queue_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1dfaff67 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x241f7b4c ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x35cf10d6 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38f7d4b8 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3ae50d85 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47887bee ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4945e4fc ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x52021c9d ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x58076a81 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5989ee3d ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a21609a ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e0291cd ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5fd2f358 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x630f19a1 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6588b22a ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x67de05e6 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72d990ca is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77624c3a ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x776d1571 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f59cafc HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fbdde9a to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86e8a49a ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8b798f72 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e974098 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9148a204 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97f3f458 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a4e9f6c ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b776c20 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb89286eb ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xba63dcdc ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbefd6dce ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e811201 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x230c9417 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x23722bd5 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2ac419b4 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d666299 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31b6c065 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x34fc392d ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3f7a4be4 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4076d1cd ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x426d5a3e ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4ab33012 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x545bb58d ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57c1a2bd ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b59f3f5 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e0104a4 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x67388d50 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x67c98351 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68e29f4d ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6c86ede8 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a1b3063 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7b2436e6 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8445cb0f ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8932c65b ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x894a1471 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x89c56203 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8f060e59 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x943f87c4 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94bf2a5d SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x969d30a5 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97d33eff dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b3bcca9 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa07d8e08 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2d9bd7d ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xabfbfcc1 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbd21bc53 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0e30c09 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc106c148 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc3057fa0 ieee80211_wx_get_rts_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc51c738a ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6175fb0 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcdfbdcbe ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5107f71 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda70e1ef ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdef14afa ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdef388f9 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1a21966 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec3d35e6 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8e83e43 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd3b6f93e ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd92619d1 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdf19c416 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe950d467 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xea05c918 ieee80211_wx_set_mlme_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd0ac949 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd66cb5c ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee7f5ab0 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xef5fc844 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3812804 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa742771 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd781c1b ieee80211_wx_get_power_rsl EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x0052a53e vchiq_shutdown EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x02f8c431 vchiq_queue_kernel_message EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x0acf8217 vchiq_initialise @@ -4502,133 +4391,133 @@ EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc407cff0 vchiq_msg_queue_pu EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xd535272c vchiq_connect EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe88faa9f vchiq_open_service EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe95e0941 vchiq_close_service -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0065fb73 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x038fb5f1 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0acc6b71 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08575269 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d90a745 iscsit_handle_logout_cmd EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0db29bb7 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1dc89533 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f8a88a8 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x257ccbb3 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x16345f73 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1840e468 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c941a27 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x21537816 iscsit_build_logout_rsp EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x28576fe9 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ab51193 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2c9866c9 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x32b877af iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3c6f4a66 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3e75c825 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x291ade28 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x31d3a2ec __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4284f7f6 iscsit_build_rsp_pdu EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x43968adf iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x464cbd02 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x570914f4 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6da3656b iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x921fd166 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9229ba10 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x95a2535a iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9a01f981 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9a75a03a iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9fa6914d iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x43990328 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4860d1ee iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4f3a0f8f iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4f905933 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54ec8af8 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61bcb431 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61d135e7 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6c65e338 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7b27676d iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8056ebaf iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e09a579 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98204ee0 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9b65bf55 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ba522f4 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa38ee738 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5a69a0f iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa7eb8779 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa8affc9d iscsit_setup_nop_out EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xadc5174a iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xadf71b62 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbcea1479 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbf2c0ab0 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2b5b0e4 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc7598e75 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc78362f7 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd695a5b iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaeb5354f iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbd06a85d iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc7a25ea8 iscsit_add_cmd_to_immediate_queue EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf9559c8 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd093e1e6 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd23a8db4 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2687ae4 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2a9761e iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3dc7b73 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdf2241ee iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe3b0ff22 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd6a1c92b iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd6d9a9e4 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdcba515f iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe6f6c13a iscsit_build_nopin_rsp EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe74ee123 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeaf0e251 iscsit_setup_nop_out EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec5ec4c1 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf1323a33 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf2cff6e3 iscsi_target_check_login_request EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf8bde53e iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfff95600 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf6982aa7 iscsit_check_dataout_hdr EXPORT_SYMBOL drivers/target/target_core_mod 0x02a015f2 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x03e07dc7 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x05daf603 target_remove_session EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a34f72e transport_alloc_session EXPORT_SYMBOL drivers/target/target_core_mod 0x0c9e7fda sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x104919d0 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e258448 passthrough_parse_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1519223c transport_generic_handle_tmr EXPORT_SYMBOL drivers/target/target_core_mod 0x177cc3c9 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x1b8ab6f9 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x1d182063 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x1da50276 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x1f38924f target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x217960fc transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x21e0685d __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x2535aaf4 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x2cb6d6ba target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e798299 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x2571223e target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x2819acbc passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x294cefc4 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x29c71eb3 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a09c226 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x2d2c16f7 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x2de9f84e target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ed4789e core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ff87f59 core_tpg_set_initiator_node_tag EXPORT_SYMBOL drivers/target/target_core_mod 0x349bbdfa sbc_parse_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0x361b1762 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x367b7bc9 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x379b0f6b target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x384baa1e core_tpg_set_initiator_node_queue_depth EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type EXPORT_SYMBOL drivers/target/target_core_mod 0x3a6bb26f spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x41b2ccb7 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x433b07b6 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x490a2f7a core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a51e10f target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x4b6a22f3 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e9d7fad core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x44936b09 core_tpg_check_initiator_node_acl EXPORT_SYMBOL drivers/target/target_core_mod 0x4cd553cf spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x5196e32b core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x5453e0c1 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x578fce70 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x5b9c4dc2 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x62db7a28 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x52739e36 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x54f5b71a target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x56b43ff5 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5baad296 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5eea517d passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x63700238 transport_kmap_data_sg EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x653c3c8b transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x665b438f transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x6cd3495a sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x6d684470 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x71705329 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x7189e3e4 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x74b5f9d5 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x777c0be9 transport_init_session EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x80ada6f2 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x83d9608e core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b3fe516 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7bb06c1e transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d69e184 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f617494 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x80cde218 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x817dd401 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x83d59730 transport_free_session EXPORT_SYMBOL drivers/target/target_core_mod 0x85fecf8f spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x88f80172 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b4d005e target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a96325a transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8c2b36a4 target_depend_item EXPORT_SYMBOL drivers/target/target_core_mod 0x8cb992fd sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x94594865 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x95203b25 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x9955f5b1 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xa33dc2ca core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xa54f4a21 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa5e54958 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xaa93c86b __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8db94678 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e8c1576 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8fa0f8db target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x90bdebdc target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x9149c61d transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x9cb6c900 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e6ca1cb target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f0b64c2 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1215e4d transport_handle_cdb_direct EXPORT_SYMBOL drivers/target/target_core_mod 0xab70b691 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xb68b666e target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb964279e target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xbacd6beb transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbd0ce37b target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xc80089bd target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xca4c33e2 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xcc272aaa target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xcdfd49a3 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xd01be890 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xd264526c transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xd3dd0930 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc11b0c3 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc2e9274 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xddd82cbd target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xe647e40c target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xe8feb879 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xef1ef713 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xacf6c8e0 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6216ee2 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbff44a63 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xc3073727 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xc45a0971 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xc9f9981e target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc387326 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xceb492cf target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd365a0ae target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5ab10de target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5ac5272 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xd6776970 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xd6d66666 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf192a73 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe05529f5 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xe19fe308 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xef059760 target_wait_for_sess_cmds EXPORT_SYMBOL drivers/target/target_core_mod 0xefb53598 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xf01bc190 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1db1e0d core_allocate_nexus_loss_ua EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf5a45df5 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xf782dd41 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xf8b30bde target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xfb79488f core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xbf10fb8c usb_cdc_wdm_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xf8f8e74f transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd7fdd86 target_setup_session +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xd98b2726 usb_cdc_wdm_register EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xb6b8dd8d usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x3b76a5b8 sl811h_driver +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x0a77a61b sl811h_driver EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1e169135 usb_wwan_tiocmget EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x24eabac8 usb_wwan_dtr_rts EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x428af1dd usb_wwan_suspend @@ -4758,9 +4647,9 @@ EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x9df80c96 w1_ds2780_io EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xc6942846 w1_ds2780_eeprom_cmd EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xb2630b33 w1_ds2781_eeprom_cmd EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xdb6d1547 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x2ac6d18a w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x125d392e w1_add_master_device EXPORT_SYMBOL drivers/w1/wire 0x7dd62da6 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x9e0793f6 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xacadd991 w1_remove_master_device EXPORT_SYMBOL drivers/w1/wire 0xf89238a5 w1_register_family EXPORT_SYMBOL fs/fscache/fscache 0x02e37e97 fscache_object_mark_killed EXPORT_SYMBOL fs/fscache/fscache 0x030de735 fscache_withdraw_cache @@ -4804,11 +4693,11 @@ EXPORT_SYMBOL fs/fscache/fscache 0xe98d0904 __fscache_disable_cookie EXPORT_SYMBOL fs/fscache/fscache 0xf5fe3852 __fscache_read_or_alloc_pages EXPORT_SYMBOL fs/fscache/fscache 0xfbd0af39 __fscache_register_netfs EXPORT_SYMBOL fs/fscache/fscache 0xfdd0ea30 __fscache_write_page -EXPORT_SYMBOL fs/netfs/netfs 0x43670759 netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0x504d6268 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0x58b20095 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x002f6ab0 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x3e2d2556 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x75460ff6 netfs_readpage EXPORT_SYMBOL fs/netfs/netfs 0xa74d4a40 netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0xf982d88a netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0xf8dbcb05 netfs_write_begin EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active EXPORT_SYMBOL fs/quota/quota_tree 0x0a117327 qtree_entry_unused EXPORT_SYMBOL fs/quota/quota_tree 0x20e96aa4 qtree_write_dquot @@ -4921,548 +4810,548 @@ EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams 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 0x50e2d979 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x56c87f6f lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x58f3fb69 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x9f649e52 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xa9c1ae8a lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xe96d6564 lowpan_unregister_netdev -EXPORT_SYMBOL net/802/p8022 0xe543ee8e unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xf958bf86 register_8022_client -EXPORT_SYMBOL net/802/psnap 0x24ee564b register_snap_client -EXPORT_SYMBOL net/802/psnap 0x30f6f29a unregister_snap_client +EXPORT_SYMBOL net/6lowpan/6lowpan 0x25fa0f6c lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x2eb6cb1f lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x799c5c46 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xce4d9794 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xdafcf441 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xffb7f547 lowpan_unregister_netdev +EXPORT_SYMBOL net/802/p8022 0x6fba5df0 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xd0cfffff register_8022_client +EXPORT_SYMBOL net/802/psnap 0x1f48c207 register_snap_client +EXPORT_SYMBOL net/802/psnap 0x2c9966ed unregister_snap_client EXPORT_SYMBOL net/9p/9pnet 0x03fc1e9d p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x1012388f p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x10ad0d5c p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x14fd63ba p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x2208b539 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x2704bf40 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x27888575 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x297d5b21 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x34818e89 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x086dbe8a p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x0d1a95cb p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x19ea7fd0 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x20fdbbc8 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x261c8b59 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x2a14db97 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x2bbc1cc9 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x391c74d0 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x3a7b276e p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x3ccff2ca p9_client_mkdir_dotl EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3f2488d1 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x415e4d60 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x404a6b74 p9_req_put EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x4c7ab8ea p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x4ec30664 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0x585b12eb p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x5981897a p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x5b2add65 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x5dc91a1e p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x60cc0be8 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x67440ad7 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x6951e288 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x78c2a363 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x7f0a1788 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8adeb0d4 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x91b740ba p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x45b7e3fb p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x536da5e7 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x5e7b74ea p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x6a970e67 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x6f0a92e4 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x86621fea p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x8a2893f0 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x8a9b610f p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x8d137bdb p9_client_cb EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x97baceb6 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9656bade p9_client_lock_dotl EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0xa61833f7 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0xb37c0d60 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xb5bd9339 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xa0104bdf p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xa970e176 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xaddf16be p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xaf4b788f p9_client_attach EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xbf9bb3de p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xbb9f5480 p9_client_read_once EXPORT_SYMBOL net/9p/9pnet 0xc04ab781 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xc5e14f19 p9_tag_lookup EXPORT_SYMBOL net/9p/9pnet 0xc77d61dc v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xd0d9e0ec p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xd21bab2d p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xcf1cff5e p9_client_symlink EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd3e43af8 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xd8b0fc24 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xde895315 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0xdf8e08b2 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xe4fab33d p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xd6f4ac40 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe21c727a p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xe21d6c9b p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xe261bce3 p9_client_renameat EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xeba8109d p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xec86c2ad p9_client_begin_disconnect EXPORT_SYMBOL net/9p/9pnet 0xecdc37a1 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xf2912325 p9_req_put EXPORT_SYMBOL net/9p/9pnet 0xf46b099e v9fs_get_default_trans -EXPORT_SYMBOL net/appletalk/appletalk 0x2476d8f8 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x55278835 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0xad320d27 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xfeb46ffd aarp_send_ddp +EXPORT_SYMBOL net/9p/9pnet 0xfc6961fa p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xfc69f36c p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xfddff983 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xfe3c855d p9_client_stat +EXPORT_SYMBOL net/appletalk/appletalk 0x65c50aaa alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x85a07da1 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x9890bf2b aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xa156a096 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x179c6ece atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x1c8b986d vcc_insert_socket EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x32ed2f2c vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x435e3166 atm_dev_lookup EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x461ca0e0 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x58447f65 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x5d6a7af1 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x6c1a9b58 atm_charge -EXPORT_SYMBOL net/atm/atm 0x7e0c95d4 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x92bfb4d7 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x9cb4445a atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x485aaef6 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x535bd0f2 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x544b6998 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x7b585c2f atm_charge +EXPORT_SYMBOL net/atm/atm 0x8db61948 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x948a2a0e register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x98e1f0cc deregister_atm_ioctl EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa12de972 atm_dev_signal_change EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xbf06c958 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xc149c446 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xc0797197 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xcdfbd66a atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xd99f2914 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xf3c415b2 vcc_release_async EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xfcc2a79a vcc_insert_socket -EXPORT_SYMBOL net/ax25/ax25 0x0107cf07 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x11a9c714 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x0b16435d ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x172509ea ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x26e68220 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x264ea439 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x331493eb ax25_listen_register EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x767a4e3c ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x5731a92b ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xb420f147 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x8ffa5001 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xa1fb0d93 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xb630ec84 ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xd4fa5830 ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xef00374a ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xfd9e166b ax25_listen_release EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a1b923f hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d2a9e28 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0df8d5bc bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e3d1307 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b34487d bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x17f65dd5 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1cd37bea __hci_cmd_sync_ev EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x21950dc5 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b9046c9 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x369770ed l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x388bb4f2 hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3a58163d hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3cf773a3 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e5023e8 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3fa130d8 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4846b22b hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4a228586 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c95ad12 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e0310ed hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4fceb096 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x51fac0ff l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x53ee0b9b bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x560cb3b7 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x573315a4 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x622f8a24 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x795b82dc bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2247e394 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x27f4c1c0 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x29497285 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e14e224 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ed7f744 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x303b5d21 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c51b8a0 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x42830397 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x48e284c9 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x553d3232 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x56aedbe3 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x59eaedde hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x671878e5 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6bafbc96 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x75004c28 bt_sock_ioctl 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 0x7cce9b1e __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8634f804 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x88ffb059 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x89c7ffb6 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x89d43c2c hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c3877d5 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7d40c9e7 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8722c116 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x87fda3ba l2cap_unregister_user EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x902a2c40 hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x90710042 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c267d55 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa53e541b bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa5b3f403 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8a11c79 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaadc695b l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf641d91 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf6ea1bc hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5f41ae1 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb7ef9136 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc6fa724e bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd5dc9c6f bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91e65c21 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x93bf1c0e bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa23fdeee bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb35b4a10 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbfb39c6f hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc06e3d0d hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc28a23a2 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc4033f61 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc99e11e l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd2178561 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd2bd148c hci_mgmt_chan_unregister EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xeea9909d __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf816d681 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf81f4057 hci_unregister_dev -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x232bb1db ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x26958f22 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x34936741 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x68bbbaf4 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x96380b6b ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa149538d ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0c63aef bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe252ec80 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe4a47813 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe51dc5f5 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6b9dd4d hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe9a6547a hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe9e4fb7b hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeadcdabc hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeb50a20b l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeef1ee58 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf0877b39 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf1b0eaf1 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfe30bbe2 hci_conn_switch_role +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x17e998d1 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3271e0c0 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x71b48727 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x82d94643 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9992bee3 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xae8aa313 ebt_unregister_table EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2337fc31 caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x348c29f5 get_cfcnfg 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 0x620d1fe1 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x68646023 cfcnfg_add_phy_layer EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x948154df caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0x9f3a519f cfcnfg_add_phy_layer EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xca9aa563 get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0xdbdbd826 caif_disconnect_client -EXPORT_SYMBOL net/can/can 0x1d3bfe8f can_proto_unregister -EXPORT_SYMBOL net/can/can 0x70d33112 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x7de72386 can_rx_register -EXPORT_SYMBOL net/can/can 0x8861204b can_send -EXPORT_SYMBOL net/can/can 0xa783b63b can_proto_register -EXPORT_SYMBOL net/can/can 0xd109f1e7 can_sock_destruct -EXPORT_SYMBOL net/ceph/libceph 0x00dc2e81 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x0259c9ad osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x02edcde6 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x03b408f9 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x04b0fb6f ceph_client_gid +EXPORT_SYMBOL net/caif/caif 0xbbc46a3f caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xbd5dec31 caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x4b202166 can_send +EXPORT_SYMBOL net/can/can 0x96a303c1 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xd081afab can_rx_register +EXPORT_SYMBOL net/can/can 0xe22921e0 can_sock_destruct +EXPORT_SYMBOL net/can/can 0xe94c9ef9 can_proto_register +EXPORT_SYMBOL net/can/can 0xeab08163 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x020a9c11 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x02b3e6fa osd_req_op_extent_osd_data_bvecs EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x06d13362 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x0754d31e ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x0759c06e ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x0782853b osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x0893b5ec ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x0af6c63f ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x0c64b760 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x0fbe5506 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x1133c57c ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x127cc2d2 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x09efcfb8 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x0f9fb6b0 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x11ed4fa6 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x12f56500 __ceph_open_session EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x1500170a ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x15c5f233 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x14cf6a07 ceph_copy_user_to_page_vector 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 0x18030d49 ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0x19796a28 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x1e011f2d ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x17df9160 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x19e8ea94 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x1a281dd7 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x1be1b41a ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x1d778a32 ceph_osdc_notify_ack EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x25bb930d ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x297a3c4b ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x24b0a6de ceph_auth_handle_bad_authorizer EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2acc0ae7 ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x2b35aa22 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x2b52d9e8 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x2f432b2e ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0x348dbb49 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x3538ff34 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x3675a0ee osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x2ed08ba4 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x2fc688eb ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x3393e34c ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x339f4b15 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x33e3652a ceph_msg_new EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3acbbf1e ceph_destroy_client EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3dfba04f ceph_zero_page_vector_range EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x42787a25 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x41b06465 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x44c9ffa1 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x45562fbd ceph_osdc_flush_notifies EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x47768c69 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x4afde502 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x4b86bd5d ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x4f6a0998 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x484bcbc6 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x498e5d5a osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x4b19f6f1 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x4d505102 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x4f5d5362 ceph_osdc_copy_from EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x50d7e2b4 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x52c25796 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x579ade1c ceph_auth_add_authorizer_challenge EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x57ee3868 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x5861500e ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x58bc1fe1 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x581eeb50 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x58a5b877 ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5b31bc2a osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x5ed9f631 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x60364d7f ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x5b717d28 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x5d2a4e84 ceph_osdc_update_epoch_barrier EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x667ca966 ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x673bce3a ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x67e8fe58 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x696ef7f3 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x6919ad11 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x69749017 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x69d35451 ceph_auth_is_authenticated EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x7125d6c3 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x76e40b79 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x77882fcb ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x7797eb69 ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0x79a09c22 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x7ba29382 ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0x7ca3beb4 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x7ec91cc5 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x7fe496d2 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x836952e7 __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x84e8db47 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x7024dee2 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x702534a7 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x730ef0b4 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x7e31dc4c osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x80fb70b9 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x84aa8580 ceph_put_page_vector EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x8b592685 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x8eb74d27 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x8f6e5b78 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x9012a61b osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x91f7a315 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x870712eb ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x893e556a osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x89621609 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x8b210938 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x8b4374c0 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x8e008321 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x8eaeb8a2 ceph_wait_for_latest_osdmap EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x94eed6dc ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0x9778e44b ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x984151d1 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x93647cdd ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x954601c1 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x95baeb2f ceph_con_init EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x9a11cde6 ceph_print_client_options EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9d88838d ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x9e3fb3ab ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x9e6f6554 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x9edccb1c ceph_monc_stop 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 0xa03f9e72 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xa09c8129 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0xa1e26a31 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xa27106cd ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0xa3c24ebc ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0xa3fafe24 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xa2777f5a ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xa37e94ab ceph_cls_unlock EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa7bcc334 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0xaa5dcbd7 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xaaea630d ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0xab844083 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xacfeab10 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xa9a24a2c ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xaa28fa51 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xace20da2 ceph_cls_lock EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb04955b3 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xb1806b22 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xb12c8e96 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xb400a880 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xb4539dc6 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xb48c9b84 ceph_osdc_call EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb757f6c6 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xb8360307 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xb9b41829 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0xb7881be1 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xb9822805 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0xba5fe072 ceph_osdc_maybe_request_map EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe04859b osd_req_op_extent_init EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbe539c09 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xc0b6df36 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xbf041f59 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0xc111d11a ceph_copy_from_page_vector EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc56f8ce3 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc3efc0ac osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xc6e37a70 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc8f87ea6 ceph_monc_get_version_async EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xce67bd6b ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xd03f6499 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xcc1c322b ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xcdd9020c ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xd0b5997a ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xd147790f ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xd21d3616 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xd21eba1a ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xd255708f ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xd4859f61 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xd4c86364 ceph_auth_verify_authorizer_reply EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd65b7f57 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xd80ef275 ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xdb0c8162 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xd90c65e7 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xdb273a3b osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xdbd0f94a ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xdef0bfe9 ceph_osdc_start_request EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe4f88ab0 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0xe5d5d396 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xe43290e3 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xe58669e1 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe6039e89 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xe6c23222 ceph_osdc_list_watchers EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xebda0ebc osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xed17bc1e ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xea907d57 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xeca07ec8 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xed65b981 ceph_monc_open_session EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xef3c3625 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xef9f7c55 ceph_osdc_abort_requests EXPORT_SYMBOL net/ceph/libceph 0xefce3c3b ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xefce6451 osd_req_op_cls_request_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0xefce991c ceph_pagelist_append EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xf1525dfb ceph_cls_break_lock EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank -EXPORT_SYMBOL net/ceph/libceph 0xfcb9e671 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0xfd2f5d79 ceph_osdc_watch -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x2ab7e804 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xa415bc39 dccp_syn_ack_timeout -EXPORT_SYMBOL net/hsr/hsr 0x499acbc1 is_hsr_master -EXPORT_SYMBOL net/hsr/hsr 0xdb89afb6 hsr_get_version -EXPORT_SYMBOL net/ieee802154/ieee802154 0x59fcdd99 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x634a4b08 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x65994ca1 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa5b8c4a8 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xe4b1d00f wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xef2ce42c wpan_phy_for_each +EXPORT_SYMBOL net/ceph/libceph 0xf2d3976b osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xf559a604 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xf71da40a ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xfbc6aba8 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xfdb9b24e ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xff252274 ceph_msg_data_add_pages +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x54cb41b2 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x8a0ba50b dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x5e657209 is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0xf53ca2d4 hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x005c41ae wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0509980c wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5914ea04 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5eacd98f wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8a8bbe04 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xfe928cf0 wpan_phy_for_each +EXPORT_SYMBOL net/ipv4/fou 0x11d78993 __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x5fc0629e __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0x62bf27ee __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xbcbc52d0 __fou_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x59aeb3fa gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4b156d94 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7198bcd7 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xbefb802a ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc7d2c254 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1f4a78e9 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x77120e47 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xbf6d1804 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc8f5d461 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x40701e71 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x65ce41bd ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8d969066 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc994adbc ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x3c01ba90 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xf1df9718 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x5321cdbb udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x20c6408a ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2e66f90e ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3803f467 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x57c7cac8 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x66ab14ad ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8f342159 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa3fe0934 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb9762c3c ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd5b9bf89 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x00d40239 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x61645eb4 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x90fd017d ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb348f356 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x0fa02936 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x63354d70 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x5018b7e2 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x8a2f9409 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/lapb/lapb 0x1d9f0b4d lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x4bc60ddb lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x70153521 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x8465128b lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x8d28965b lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x9a82795e lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xe710857e lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xf3f85fcc lapb_data_received -EXPORT_SYMBOL net/llc/llc 0x099d0ac8 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x0af70406 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x2f62d540 llc_mac_hdr_init +EXPORT_SYMBOL net/ipv4/gre 0x9eea5821 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5afd46cf ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa1f66543 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xeed5b255 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf96f01f5 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1a509d10 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x36a5a642 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5654be8e arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb45d39bd arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x397c8d78 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3f01b6fb ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd1052a96 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfac0fab7 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x188729ce xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x89eec209 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x74976fe8 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0b38f074 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x304534e9 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x31a8432b ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4b0b56e2 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8fe21ac2 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x90fd9c00 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x92583d02 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa8f88371 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb4273f90 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x381d21ae ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5043608f ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xc2997c98 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xcf9fa584 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0xd076e067 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xd4e41205 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x153fcf1f xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x4d2ada12 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x0bb178d9 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x10d69a4b lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x20d75744 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x4a1e8419 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x640def24 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x81af6364 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xe991c861 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xf57bfa59 lapb_connect_request +EXPORT_SYMBOL net/llc/llc 0x1aa57391 llc_sap_open EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x500b5f74 llc_sap_close EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x56c50fb7 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x6c75ea13 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x88bd0bbe llc_add_pack -EXPORT_SYMBOL net/llc/llc 0xd5d2f73d llc_sap_close -EXPORT_SYMBOL net/mac80211/mac80211 0x05c386e7 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/llc/llc 0x5e06d08b llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x66da13ee llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x8f764f19 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xa157a313 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xebc5a584 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/mac80211/mac80211 0x003af0ee ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x01f014dd ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x0465b015 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x054c1c0f ieee80211_sta_ps_transition EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x08a38601 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x0b84008a ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x130df2e6 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x1333d4a3 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x15cb83b9 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x0cd44b43 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x0f3e59f8 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x1098045f ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x13b739de ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x17c10fee ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x182d9f02 __ieee80211_get_rx_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 0x1ebfd515 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x2366eecf ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x262e1e7c ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x2e4e170d ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x30fb1091 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x316562b2 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x3201d507 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x32754f70 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x36cfe100 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x3b5655eb ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x3c7ab9c8 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x3cd0c292 ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x3e0c1edb ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x3e2d7fdd ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x40dba334 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x431d8ae6 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x44d0c8b9 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x46b7611e __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x4e217df7 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x4ec586f5 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x5ac955cb ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x5b3584cf rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x5d157f76 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x5d26f4ba ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x5d9431b9 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x5eead81c ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x5f48b608 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x6527945f ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x684a905b ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x6e761403 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x70278ea8 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x7198539d ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x74407571 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x745c78bb ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x75ca62c2 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x7682e199 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x78224378 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x789968f5 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x79d6e702 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x80165551 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x8020ac6c ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x81a5d431 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x8282fe77 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x8809776c ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x8973df16 ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x8a28b3c8 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x8a4fe1be ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x953ac7d3 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x962eeb4a ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x97bd3c24 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x1ccec348 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x1e3d126a ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x1fdd327a ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x20d535b3 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x20f503b7 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x23d7a77e ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x25e0fbb2 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x285de7cd ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x295ac671 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x29c02077 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x2b620283 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x300c03ff ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x3116b4ea ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x328a6dfb ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x363ed1fb ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x36e35b83 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x373f368e ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x38452317 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x3951d83d ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x3aab7467 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x3ac5ac3f ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x3b6190de ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x3fc9316d ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x4288c9f6 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x42d636ab ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x42dfe937 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x441f623a ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x457fe4a6 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x45fc4c47 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x4f0cfecd ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x57d98121 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x580a31d8 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x5853b318 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x5bec61a7 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x62264c16 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x6357ef7e ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x6b647a18 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x6c8932a5 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x6ca06a15 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x6ca49084 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x6cce6d64 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x734e2ffd ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x74bab70a ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x79e845c0 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7dbd5101 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x7de9cb55 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x80b68190 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x8a476919 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x92b8a65d ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x96296313 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x97a917b6 ieee80211_probereq_get EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9a8eeb6b wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x9bc12b0f ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x9c2a5bc7 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xa2fe32fd ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xa333f6a5 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xaa8a50dc ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xabae8bdd ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0xaddeff7a ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xae03bfd9 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xae7249c9 ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0xb05b03af ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xb0617611 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xb3fbcdda ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xb9c05945 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xc4ebf615 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xc714a9cb ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xc892b1b6 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xc9244a40 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xca1619e1 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xca52a593 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd0a72e12 ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xd1bfc6c0 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xd2925710 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xdb390cac ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0xdfaf2f8d ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xe29492b7 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xe546c47c ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x9923cd9b ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xa0d2fe94 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xa0e112ab ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xa51336ad ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xac697181 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xaf84cb8b ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xb1b2293c ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xb1f94571 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0xb2ebe920 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb32ba5cc ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xb648c008 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xb6b5f18a ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xba49ba5d ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xbedc26af ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0xbfb64014 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xc408e755 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc5ea0c7c ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xca283bc8 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xcd27e0ec ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xd19e6315 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xd24aa0fa ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd5d85f8a ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xd6ebb509 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xd7ae7328 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xd81bfc3a ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xda1ecc7e ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xdae74bc3 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xdcb5fd9a ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xdff8ddff ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xe4ae85af rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xe4cc585e ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xe4cf2fcd ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xe529d8bc ieee80211_csa_finish EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xe5dd8ce5 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0xe6cb82c6 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xe83d2d69 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0xece9bc2a ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xef7b66c9 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xf0b2cc79 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xf22b722d ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xf2c82073 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0xf395fab0 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf573c6c2 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xf8ccece8 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xfb3a490e ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0xfb8abd9c ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xfc89a698 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xfe46b2b4 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xfea4fe5c ieee80211_find_sta -EXPORT_SYMBOL net/mac802154/mac802154 0x11bebb11 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x12645b47 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x6a4ec129 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x6ea2eb5d ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x8f2c6b95 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xe22cde85 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xea91fd0a ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xfed5ee87 ieee802154_stop_queue -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0b8ed82f ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3849e67c ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4e965980 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5e21f1a9 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x66b5d05f ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6a57be83 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7eb874da unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x89ab87ce unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8de78756 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x90c2c518 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaf5c92cb ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbf7f0a58 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc9d93e78 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/mac80211/mac80211 0xe78d0965 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xe8294648 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xf26f9db8 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf68e5111 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0xfba30aa3 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac802154/mac802154 0x049f965a ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x27439997 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x40a01429 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x6ec58e29 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x746a6668 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x805fd24d ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x90515a9f ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x9ff9c15c ieee802154_free_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x15215d2c register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1b6f7dab unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x217db749 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x32bc4bee ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4ef24c3d ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4f55a449 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6a155f9b register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x78807297 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x836efcb1 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9212e601 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa5716582 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa95831a5 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaa4573cd ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc09e3f49 ip_vs_conn_put EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdb14357f ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xffe61bcc ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdc6d4f11 register_ip_vs_scheduler EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x7d7a5ccb nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x44011773 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x16d61836 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x32b27d58 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x584068c7 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xed0cc25f nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x2d1fff1f nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x5b524075 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x846a1731 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xe3900ca9 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 0x258949e2 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x3029063d xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x3a371aff xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x198bc3c4 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x1c2b29af xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x1e135585 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x32300cf0 xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x44ebeb0d xt_find_table EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x49393fbe xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x56f76419 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x7be3fce6 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x965ee3d3 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x5f9d7e2f xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x6ac65120 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x879a02f9 xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x9fe814da xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xb59b9298 xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xce3247bd 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 0xe2499634 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xf2fde0fc xt_unregister_matches EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset EXPORT_SYMBOL net/nfc/hci/hci 0x0e7ea535 nfc_hci_disconnect_gate EXPORT_SYMBOL net/nfc/hci/hci 0x1073d39e nfc_hci_send_cmd_async @@ -5487,238 +5376,238 @@ EXPORT_SYMBOL net/nfc/hci/hci 0xdabdc04d nfc_hci_send_cmd EXPORT_SYMBOL net/nfc/hci/hci 0xdcd6faa0 nfc_hci_allocate_device EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol EXPORT_SYMBOL net/nfc/hci/hci 0xf7e147e9 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x025d5ac6 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x035f1e27 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0x09cd73f1 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x0ed75260 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x0f42bd4a nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x149f9faf nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x159bdf3c nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x1f19d5a0 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x25bd248f nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x291b8d3e nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x5a45e843 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x5fd2bffa nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x64e82122 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x81effff9 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x8d297c62 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x8dd4e9f7 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x911a0139 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x9239ed97 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x989a0d05 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x9bf94992 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xa0d40d55 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xa47012f5 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xa5953e0e nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xa6b9b8cf nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xb3a8f147 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x00c161e7 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x00d9485b nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x028f8e1f nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x1137600a nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x16476bd3 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x21c53cb4 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x25a73819 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x325faa21 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x349fa25b nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x37439c3d nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x43d77c79 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x4b72cce7 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x54b7d4eb nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x64e289c6 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x677ca887 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x6aff8d9f nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x822a120c nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x8414963e nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x857e6864 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xa0157019 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xa230030a nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xab0ee76b nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xb77795ef nci_hci_get_param EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc37eb6af nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xc4c4e2e5 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xc57a065e nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xe2df96e7 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nfc 0x0091298a nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x06e575bf nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x077151e0 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x1677e1c4 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x1cc7fb03 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x295fa9eb nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x2c78aecf nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x38b35fcf nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x391fba48 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x3a33658f nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x5069ca96 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x532fd4de nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x577b940e nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x5e2bf7da nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x6022996f nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x605a837a nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x9a56f7b6 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xaa3cede1 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xaa783456 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xc2102577 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xe7dc8da7 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xf78d74be nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xfaf50bb0 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xfb847a21 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xfed819c7 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nci/nci 0xc4ff4e3d nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xed927d1e nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xf318e26d nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xf92ad305 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xfd0bc0dd nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xff1263ca nci_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x059367ca nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x157eb743 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x26fe726c nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x355aaab3 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x3a8c8d23 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x5be0565b nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x63f7c7b4 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x65598635 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x7ceaf3d7 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x7d3fdd1c nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x8aea0183 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x963a9909 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xa38d2850 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xb1b64e20 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xb2963bfb nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xb3e70c24 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xb6fd8675 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xd9c534c7 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xe08151f2 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xe554d827 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xe622ca88 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xe8d1d9f9 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xf126e103 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xfcc2f949 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xfea9b763 nfc_alloc_recv_skb EXPORT_SYMBOL net/nfc/nfc_digital 0x035e3721 nfc_digital_allocate_device EXPORT_SYMBOL net/nfc/nfc_digital 0x7f63aa9b nfc_digital_free_device EXPORT_SYMBOL net/nfc/nfc_digital 0x817ab723 nfc_digital_register_device EXPORT_SYMBOL net/nfc/nfc_digital 0xa1aa91e3 nfc_digital_unregister_device -EXPORT_SYMBOL net/phonet/phonet 0x063142ad pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x09353a92 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x2cccddc2 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xad174927 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xc0676a95 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xca84ec57 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xcff18ba7 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xfd8cc314 phonet_stream_ops -EXPORT_SYMBOL net/rxrpc/rxrpc 0x001292c6 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x03c17509 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1222ac4e rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x249aefb0 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/phonet/phonet 0x07dbcef6 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x0bf7d7bd pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x331d6e38 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x3b5461cf phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x6c006937 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x79c97a44 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xa6fe6aeb pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xd4402a20 phonet_proto_register +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0dbae989 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x11a8cbb3 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x129f8021 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x23e082fc rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2606a376 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3028c066 rxrpc_kernel_check_life EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3837d686 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4bfb05b6 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5bb8d9ab rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6f71b8b3 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7839b80d rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x909fd880 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x99d222c6 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa8d93675 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xaa8d8fc6 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe4e9df52 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf361dae4 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf5afa5fe rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf5bdbbb6 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xfa152293 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/sctp/sctp 0xadff2c44 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x90edb430 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdd28cf6c gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe8b9ae4b gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x01733231 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x7f62cb15 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xc363bc9a get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0xfbe36f5a xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x22001b72 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0x2dd10688 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x9ebf3639 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xda949086 tipc_nl_sk_walk -EXPORT_SYMBOL net/tls/tls 0x84b4f11c tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x030bde54 cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x03bbb57d cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x0400f370 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x066a0916 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x06d051eb cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x08fe9481 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x0ab13ceb cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x0add58d5 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x0bcad4f7 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x0d223963 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x0d48db8f cfg80211_stop_iface +EXPORT_SYMBOL net/rxrpc/rxrpc 0x36776c35 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x39402e74 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5a4ce030 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x75be953d rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9859ee65 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb59bb62e rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb66d29df rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xba5a9e2d rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcff70115 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf0d9ef8c key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf3517943 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfdef0ce6 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/sctp/sctp 0xdea3712f sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x45f7987e gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x694a36e7 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb6998e01 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7c4ddcd0 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x995be4c7 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x9e3e1b1a get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd419861f xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0xa24cac78 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xd77fbf5f tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xf26bc853 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xf828f479 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tls/tls 0xbd4ed476 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x09300198 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x0d60c5f0 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x0f6184c6 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x1118602d cfg80211_ready_on_channel EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x14ce1c22 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x11cde395 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x132557ea cfg80211_report_wowlan_wakeup EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x1912d820 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x196fbe55 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x18892101 cfg80211_nan_func_terminated EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1e133e65 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x1e4cca0b cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x228b8a08 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x22b8718e cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x22ed4126 cfg80211_report_obss_beacon_khz EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x247551dc cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x24bae295 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x24deabc9 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2500d041 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x26cb5b86 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x244a2c70 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x26e78387 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x274bfbb5 cfg80211_cqm_rssi_notify EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x275a00fc wiphy_rfkill_set_hw_state_reason EXPORT_SYMBOL net/wireless/cfg80211 0x27efff25 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x2a3b5ce2 cfg80211_sta_opmode_change_notify EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x2c7c679e cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x2e3c6a0f cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x303e4f2e __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x38241976 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x393f0514 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x3a881ffe cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3aee5600 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x3b9a97b7 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x2aa6b27f cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x2f1af6fd cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x34c84c7d ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x3669d71b wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x36ac506d cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x3bad6bfc cfg80211_cqm_txe_notify EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x400e699e cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x422949b4 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x42d8312a cfg80211_new_sta EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x43d6f065 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x45d1073a cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x46f72b58 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x4bbbe7ab cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x4ddc93d8 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x51eaabd2 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x52de0022 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x577e5de7 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x57b09f41 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x5a8dcc51 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x5c09b978 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0x5d67d2fa cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x602ab820 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x636ba30d cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x648803ec cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x488f679b cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x48b4eddf cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4b84bb15 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x4e557e9d regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x52619317 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5269f19b cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x52872c8a cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x56462869 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x5830f66d cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x5891a030 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x5ec369e6 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x5f86cb4d cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x6147ae56 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x61eb6220 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x62be4c32 cfg80211_connect_done EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x66ec3b20 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x670cb757 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x6938084b cfg80211_rx_unprot_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6cc0280b cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x6e61d90c cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x6ec1905f cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0x74ff5e5c regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x78222356 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x79811b72 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x6f33bf75 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x70ffe5e1 cfg80211_any_usable_channels 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 0x7bb40e7a cfg80211_ref_bss EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x80780c4c ieee80211_get_hdrlen_from_skb EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x8300fec4 cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x8428098d cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x846b4b50 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x87201542 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x8d77f933 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x83c86621 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x846a6d72 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x8b7104ff cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x8da973a9 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x8dc33a1e cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x8f867d1f wiphy_rfkill_start_polling EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x92a4a3c6 cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x95027283 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x9cd84bc0 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x901111d6 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x92b8361b cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x98b2b2dd cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x9990ea93 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x9a1c5022 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9d54c40b cfg80211_reg_can_beacon_relax EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9f66535c cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xa330c29f wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0xa395cd28 cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0xa505a816 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xa74c5e21 cfg80211_rx_mgmt_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xa907d8a2 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0xac067a1f cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xad1dc4c9 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xaf1eb0d9 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xb1801a4f cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xb6dd4432 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x9e3efb1f ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x9ea06f25 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xa09de7e1 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xa0a7147a cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xa0b5b6ef wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xa44d75f2 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xa5c363c0 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xa6b4b350 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa73c5a1a wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xa9173731 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0xabc288c4 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xaec4729a cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xb12cab0e cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb2bb3e77 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb423e589 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xb4282133 cfg80211_tx_mgmt_expired EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xbbd96a6c cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xbca32dd9 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0xbd87d996 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0xc061fefc cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xc0c8ffc5 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xbca93544 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xbda2cef9 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xc06c2fed cfg80211_cqm_beacon_loss_notify EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc3e057ac get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0xc4427b04 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xc3d3b095 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc5c9fdc3 wiphy_new_nm EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xcafcd9f2 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xcbed3e5c cfg80211_mgmt_tx_status EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xccb8f6aa wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xce44a640 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xced1f9f1 ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xd4540c27 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xcf3fc82e cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xcfde112c wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0xd1486585 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd1791cfc cfg80211_crit_proto_stopped EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xda1750b2 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xda57335d wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xda86865e cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xdb1ec871 get_wiphy_regdom EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdc9f9866 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xdc9df9ec cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xdfd9f44d __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe0fc7686 cfg80211_iftype_allowed EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0xe49ade99 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xe6863796 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xe6c5d357 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0xe73f6022 cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xeb687082 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xebe9b9a9 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xeeb0a8a7 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xe34dc06d cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xe58a6686 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0xe733874f cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xecb120e7 cfg80211_notify_new_peer_candidate EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xef4e84e5 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0xf2b05534 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xf172b94f regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xf534ce79 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xf54dbc59 cfg80211_conn_failed EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf73a2aa3 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xf73b61e3 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xfc0b3807 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xfdb302b6 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xfe156dae freq_reg_info -EXPORT_SYMBOL net/wireless/lib80211 0x26158d3b lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x2b4788c6 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x51b7dd26 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x64cece00 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x6a041c66 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x7b5692b8 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/cfg80211 0xf77f2150 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xf94d0514 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/lib80211 0x63a89e6b lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x71934617 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x79a005ed lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x981e9990 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xc220c314 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xf03e8a77 lib80211_crypt_info_free EXPORT_SYMBOL sound/ac97_bus 0x5850b678 ac97_bus_type EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xf0c21e62 snd_mixer_oss_ioctl_card EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl @@ -5942,36 +5831,36 @@ EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb852adcd snd_vx_create EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xeeb42d0a snd_vx_resume EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x04bf87ea cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x071aeb27 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x064d4f3a amdtp_stream_get_max_payload EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0817eec4 cmp_connection_check_used EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x199c7616 cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1a21a168 amdtp_stream_pcm_abort EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x33a9173d fw_iso_resources_allocate EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x363e4716 cmp_connection_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x428019b9 cmp_connection_release EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x50f14030 cmp_connection_break EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6039d873 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5681b5ae amdtp_stream_init EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x62ec6e2f cmp_connection_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6a9b1666 avc_general_set_sig_fmt EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6b683553 cmp_connection_establish EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x70997cd6 avc_general_get_sig_fmt EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x748ffe2b fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x81c96191 amdtp_stream_pcm_prepare EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x82989d20 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x87382106 amdtp_stream_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x92000c5e fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x93c2cecd amdtp_stream_set_parameters EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x951ae0d5 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9be85917 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x957a770e amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x97e1655c amdtp_stream_pcm_abort EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa30b5487 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa600e999 amdtp_stream_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbb5662cd iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc2b02a64 amdtp_stream_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc8e2988b fcp_bus_reset EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd77023bb snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe91bdbdc amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe98518a4 amdtp_stream_add_pcm_hw_constraints EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeb1dd949 avc_general_get_plug_info EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf1e7d1f0 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfe055efc amdtp_stream_destroy EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x47f9ec38 snd_ak4113_suspend EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xb61f0ac4 snd_ak4113_resume EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0823b139 snd_ak4114_check_rate_and_errors @@ -6056,7 +5945,7 @@ EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2e128515 snd_trident_free_voice EXPORT_SYMBOL sound/pci/trident/snd-trident 0xa7883d87 snd_trident_write_voice_regs EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x52d513fb adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x5d87a450 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xeab55f6a wsa_macro_set_spkr_mode EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x6951e5ee pcm3060_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xb3ff4052 pcm3060_regmap EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw @@ -6067,84 +5956,84 @@ EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x2ca05eee aic32x4_remove EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x5e6e68ea aic32x4_regmap_config EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x21ae8062 aic3x_remove EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x4f6a2e4f aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x20b52aa8 wcd_mbhc_init -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3023cbe9 wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x06ba16ac 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 0x4fe829c8 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 0x80387d9d 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 0xb2df9ae8 wcd_mbhc_start EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x44302105 mt8192_afe_gpio_request EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x653e9bbd mt8192_afe_gpio_init EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x3d8046bc q6afe_vote_lpass_core_hw EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x7c820730 q6afe_unvote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x162368bd qcom_snd_parse_of -EXPORT_SYMBOL sound/soc/snd-soc-core 0xc7c86a8b snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x94b7541c imx8_dump -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0x58a5deca sof_imx8_ops -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0xb2a73b3a sof_imx8x_ops -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8m 0x1f122390 sof_imx8m_ops -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x00e17aaa sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0xea41e4f0 qcom_snd_parse_of +EXPORT_SYMBOL sound/soc/snd-soc-core 0xd43ada48 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x5da73263 imx8_dump +EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0x362db126 sof_imx8x_ops +EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0x6c6e1cd9 sof_imx8_ops +EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8m 0x70a0d187 sof_imx8m_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x02674d28 snd_sof_trace_notify_for_error EXPORT_SYMBOL sound/soc/sof/snd-sof 0x057ff629 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0d6251fe snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x10f607cf sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x13687abc snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x143ca1ba sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0a31ec43 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x168f1ea3 snd_sof_dsp_update_bits_unlocked EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1752a1bb snd_sof_runtime_idle EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1eb5114f sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x210e6365 snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x24f8a883 snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1dca0d0f snd_sof_dsp_mailbox_init EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2e4bff2d snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x31000817 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x31f7122f snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x322d5563 snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x36d6cce0 snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x40f8c9e1 sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x427c6122 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2fdf2672 snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x31687c7d snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3572c86f snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3663887f snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x37beec5a snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3c37f9b9 snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3c4f62cb snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4825bdda snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x48a28dd6 sof_machine_check EXPORT_SYMBOL sound/soc/sof/snd-sof 0x498815f1 snd_sof_create_page_table +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4bd51d08 sof_fw_ready EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4f59340d snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x52921d33 snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x53a7054d snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x55247607 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5d152b96 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x592e594d sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5aac89ec snd_sof_dsp_only_d0i3_compatible_stream_active EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5d3ff09a snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x68bee68e snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6cd706d1 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6e84c662 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x677f53ff snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6960e763 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6fa58123 sof_io_read64 EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6fc91fb1 snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x78178a9f snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7a1bb4ab sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x83e64de8 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x72c89603 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7a68084d snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7cb218e7 snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x827eaac9 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x87fc3207 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x88d69fab sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8929c3d6 snd_sof_dsp_update_bits64 EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8c6c305b snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x91be2da1 snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x96ef273a snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x96efa944 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x90a95ae4 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x92418977 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x94857fae sof_io_write64 EXPORT_SYMBOL sound/soc/sof/snd-sof 0x973ee74d snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x97aa9428 snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa2bf7f13 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa39fdc1a snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa498525e sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa5cfe79e snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xae2eb301 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaf0f3fca snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x995639c9 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa1ae4770 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa4575fb1 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xadb1a1e5 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaee69735 snd_sof_free_trace EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaf248d28 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb0b4f5c3 sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb722d27f sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc301416f sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc5719504 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb2229bf5 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbb25ae05 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbf4fb171 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc07f8fb7 snd_sof_dsp_update_bits EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc78b9db0 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcdbb40d2 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xce20a9ec sof_block_read EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd50c7043 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd21d3337 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd9829246 snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe2768033 snd_sof_ipc_set_get_comp_data EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe8170735 snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeb6880ee sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf207e69c snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf2dd55f1 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf8ac6a03 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfaf0fa02 snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfe32f738 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xef4a3d3d sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf531f6cc snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfad52d60 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfbee544b snd_sof_dsp_update_bits_forced EXPORT_SYMBOL sound/soundcore 0x02dd9c11 register_sound_special EXPORT_SYMBOL sound/soundcore 0x20c0a797 register_sound_special_device EXPORT_SYMBOL sound/soundcore 0x5772a89c sound_class @@ -6174,29 +6063,33 @@ EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x939c9a14 __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 0x000d18b6 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x00036fa7 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x001380cd register_netdev EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf EXPORT_SYMBOL vmlinux 0x0017f9b0 cros_ec_check_result EXPORT_SYMBOL vmlinux 0x0018fb27 drop_super_exclusive EXPORT_SYMBOL vmlinux 0x00262542 load_nls_default +EXPORT_SYMBOL vmlinux 0x002bf3ef netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0x002d18b4 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x002d8f3a jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x00305dee register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x0042ce03 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x0048309a netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0x00679eb0 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x007eff6c twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x008c15d5 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x007367f1 inet_del_offload EXPORT_SYMBOL vmlinux 0x008d5ec8 blkdev_issue_flush EXPORT_SYMBOL vmlinux 0x00928200 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x00979b15 bprm_change_interp EXPORT_SYMBOL vmlinux 0x00aa3f08 pci_bus_alloc_resource EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode EXPORT_SYMBOL vmlinux 0x00b5a3f7 blk_mq_rq_cpu EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e7fabb sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0x01000e51 schedule EXPORT_SYMBOL vmlinux 0x01076947 blk_queue_chunk_sectors EXPORT_SYMBOL vmlinux 0x010fd01f get_watch_queue EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read -EXPORT_SYMBOL vmlinux 0x01363270 security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub EXPORT_SYMBOL vmlinux 0x0140fbb8 pcim_iomap_regions EXPORT_SYMBOL vmlinux 0x014686f6 tty_unthrottle @@ -6210,380 +6103,369 @@ EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete EXPORT_SYMBOL vmlinux 0x018618ee bdi_alloc EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x018e5f12 nf_log_bind_pf EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x01a7bdf5 sock_no_mmap EXPORT_SYMBOL vmlinux 0x01a7c193 dquot_get_state EXPORT_SYMBOL vmlinux 0x01a8cc89 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x01b04b91 sdev_prefix_printk EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark -EXPORT_SYMBOL vmlinux 0x01bd964a mdio_find_bus EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01d4ab2c inet_sendpage -EXPORT_SYMBOL vmlinux 0x01eb505e mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x01ca362d migrate_page_states +EXPORT_SYMBOL vmlinux 0x01d8b1e0 dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0x01fda1c9 rdmacg_uncharge EXPORT_SYMBOL vmlinux 0x02011901 devm_extcon_register_notifier_all EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x020b8f46 fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02103f9a call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops EXPORT_SYMBOL vmlinux 0x02377325 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x023d890a jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x023b5118 unregister_binfmt EXPORT_SYMBOL vmlinux 0x023ecf8a kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x02468e43 kernel_sendmsg EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user EXPORT_SYMBOL vmlinux 0x024b6908 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x02543d03 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x025a9cee xfrm_policy_walk EXPORT_SYMBOL vmlinux 0x026316f7 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x0267de84 get_fs_type -EXPORT_SYMBOL vmlinux 0x026ef4b9 lock_page_memcg +EXPORT_SYMBOL vmlinux 0x0266fb63 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x026d0ad3 path_is_mountpoint EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x02788b53 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x02876c0d prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x02887e23 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x028a818c skb_pull -EXPORT_SYMBOL vmlinux 0x028f7923 tcp_sock_set_keepidle EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x029c07bb twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x02ab946c genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x02b52329 sock_create_kern +EXPORT_SYMBOL vmlinux 0x02adcb28 set_binfmt EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x02bbba80 dentry_open EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02c46037 phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0x02ca4782 wait_on_page_private_2 -EXPORT_SYMBOL vmlinux 0x02df9875 tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0x0305ca9e flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x0310a804 lru_cache_add +EXPORT_SYMBOL vmlinux 0x02ebbc18 inet_offloads EXPORT_SYMBOL vmlinux 0x031bebf1 tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x0327c3ab vfs_fileattr_set EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl EXPORT_SYMBOL vmlinux 0x034cc0ba uart_unregister_driver EXPORT_SYMBOL vmlinux 0x0357f53b fman_set_mac_max_frame EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036e5338 set_user_nice -EXPORT_SYMBOL vmlinux 0x03794d9d sockfd_lookup +EXPORT_SYMBOL vmlinux 0x036a2406 __xfrm_init_state EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x03948025 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x03826583 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x038414c9 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x03897a0a block_truncate_page EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x039ccdb6 netif_rx -EXPORT_SYMBOL vmlinux 0x039d8d3b user_path_at_empty EXPORT_SYMBOL vmlinux 0x03aa066a seq_putc EXPORT_SYMBOL vmlinux 0x03b408e6 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x03bbdbf9 inet_frag_destroy EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x03c7f9c6 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x03cffc23 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x03e2710b flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x03e5609e migrate_vma_finalize EXPORT_SYMBOL vmlinux 0x03e6e370 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x03f5da7d __kfree_skb EXPORT_SYMBOL vmlinux 0x03fca8c1 of_graph_get_next_endpoint EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x03fd5d6e __skb_checksum +EXPORT_SYMBOL vmlinux 0x0403b6ca udp_ioctl EXPORT_SYMBOL vmlinux 0x0405a2d1 ps2_init -EXPORT_SYMBOL vmlinux 0x041cb7f0 pid_task EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0448667c fd_install EXPORT_SYMBOL vmlinux 0x044d0306 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x04570573 vme_master_mmap EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu -EXPORT_SYMBOL vmlinux 0x04821b81 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x0481f18e xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x0483785c sk_ns_capable EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x04a5a4b2 phy_detach EXPORT_SYMBOL vmlinux 0x04c190eb setattr_should_drop_sgid -EXPORT_SYMBOL vmlinux 0x04c83416 xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits EXPORT_SYMBOL vmlinux 0x04e4712d remove_proc_subtree EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04fbc274 skb_checksum_help EXPORT_SYMBOL vmlinux 0x05061b52 fscrypt_decrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match EXPORT_SYMBOL vmlinux 0x0511f998 dm_table_get_md EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05231cf0 phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052d0c7a flow_indr_dev_register EXPORT_SYMBOL vmlinux 0x05433439 dquot_transfer EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x0556cfa0 of_phy_deregister_fixed_link EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 EXPORT_SYMBOL vmlinux 0x05608e26 param_ops_short -EXPORT_SYMBOL vmlinux 0x056888ab mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x057f7183 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x05979444 xfrm4_udp_encap_rcv EXPORT_SYMBOL vmlinux 0x05994a3b backlight_device_set_brightness EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05b431f1 ip_setsockopt EXPORT_SYMBOL vmlinux 0x05b63d92 pin_user_pages_locked EXPORT_SYMBOL vmlinux 0x05d33927 pci_fixup_device EXPORT_SYMBOL vmlinux 0x05ef9bcf inode_nohighmem +EXPORT_SYMBOL vmlinux 0x05f50fd7 complete_request_key EXPORT_SYMBOL vmlinux 0x05f66e07 path_has_submounts EXPORT_SYMBOL vmlinux 0x0603bd54 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x06054f60 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x0608f098 flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x060ff6d3 end_buffer_write_sync EXPORT_SYMBOL vmlinux 0x0612c19a forget_cached_acl EXPORT_SYMBOL vmlinux 0x061651be strcat EXPORT_SYMBOL vmlinux 0x0616ad4e input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x061da41e mdiobus_write_nested EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x06371ce3 user_path_create -EXPORT_SYMBOL vmlinux 0x0637ec4d flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x064d8731 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x06557145 put_cmsg +EXPORT_SYMBOL vmlinux 0x0657439c inet_listen EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x06777f8a genphy_restart_aneg EXPORT_SYMBOL vmlinux 0x067cc930 param_get_invbool +EXPORT_SYMBOL vmlinux 0x06890311 netif_device_detach +EXPORT_SYMBOL vmlinux 0x06afdf8f vfs_mknod +EXPORT_SYMBOL vmlinux 0x06b2cbe8 clk_hw_get_clk EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06c951e5 scsi_ioctl EXPORT_SYMBOL vmlinux 0x06cd2f87 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x06de00a6 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x06e146c1 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x06e1a6d5 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x06e23549 tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0x06fa9a49 find_inode_nowait EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm -EXPORT_SYMBOL vmlinux 0x072b51b2 inet_accept +EXPORT_SYMBOL vmlinux 0x07185a82 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x07267f36 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x07349dbf tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x074acdc7 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x075e8478 path_put EXPORT_SYMBOL vmlinux 0x076dc17c blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x077e3b54 skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl EXPORT_SYMBOL vmlinux 0x0797ef71 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x079a4d01 phy_drivers_register -EXPORT_SYMBOL vmlinux 0x07a05157 pagecache_write_end -EXPORT_SYMBOL vmlinux 0x07a242e3 phy_attached_print +EXPORT_SYMBOL vmlinux 0x07a751ec sock_alloc_send_skb EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap EXPORT_SYMBOL vmlinux 0x07b49e55 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x07beb481 write_dirty_buffer EXPORT_SYMBOL vmlinux 0x07ca9654 blk_rq_append_bio EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x07d12207 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x07d3c629 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x07d7e13c __i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq +EXPORT_SYMBOL vmlinux 0x07e35197 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x07e810d3 __ip_mc_dec_group EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x07fa2ecc netdev_adjacent_change_commit EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x08078bbe ata_scsi_cmd_error_handler EXPORT_SYMBOL vmlinux 0x0809f0d4 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x08157d50 dev_addr_add EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x081e88fc tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x081c0d74 jbd2_journal_stop EXPORT_SYMBOL vmlinux 0x0821b937 devm_memremap EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point 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 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0840133c writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x084a21b7 freezing_slow_path EXPORT_SYMBOL vmlinux 0x084f418a thaw_bdev -EXPORT_SYMBOL vmlinux 0x086541c2 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x08530101 register_filesystem +EXPORT_SYMBOL vmlinux 0x085ada84 file_ns_capable EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x08a69244 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x089e351c unregister_console +EXPORT_SYMBOL vmlinux 0x08ba550a dev_open EXPORT_SYMBOL vmlinux 0x08c42ac9 d_tmpfile -EXPORT_SYMBOL vmlinux 0x08c82131 vfs_ioctl EXPORT_SYMBOL vmlinux 0x08ce6349 seq_dentry -EXPORT_SYMBOL vmlinux 0x08d51549 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x08e178fd gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x08e2b6dd inet_dgram_ops EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08ec0885 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0x08f10848 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x08f12508 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x0911a1d3 block_write_full_page -EXPORT_SYMBOL vmlinux 0x0912888c request_key_tag -EXPORT_SYMBOL vmlinux 0x0918b864 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x08e6108b bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x08ebc81d ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x08ec3e3a inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x08ed3de6 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x09092215 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x092d3295 twl6040_clear_bits EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x094e1a53 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x095761f6 amba_driver_register EXPORT_SYMBOL vmlinux 0x095caa25 blk_queue_io_min EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x097d133d gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x097e290f nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x0989c73b __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x098a7e80 xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap EXPORT_SYMBOL vmlinux 0x0996138f truncate_pagecache_range EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x09a63e7b gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x09abd0d4 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x09b6bf6d __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x09abccbd skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x0a104017 dev_uc_add_excl EXPORT_SYMBOL vmlinux 0x0a1cb0e5 dquot_scan_active EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0x0a5279d4 end_page_writeback -EXPORT_SYMBOL vmlinux 0x0a5fab80 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x0a23241a netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x0a266933 phy_suspend +EXPORT_SYMBOL vmlinux 0x0a630e74 tcp_mmap +EXPORT_SYMBOL vmlinux 0x0a64a514 sk_free EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq EXPORT_SYMBOL vmlinux 0x0aabf8cf copy_page_to_iter EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0abdc077 phy_device_remove EXPORT_SYMBOL vmlinux 0x0accf27e t10_pi_type1_ip EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ae88684 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x0b080acc neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x0b0b59c2 phy_print_status EXPORT_SYMBOL vmlinux 0x0b0ca60c d_find_alias -EXPORT_SYMBOL vmlinux 0x0b1a7a22 dev_queue_xmit_accel EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user EXPORT_SYMBOL vmlinux 0x0b224452 pm860x_reg_read EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x0b490e6a migrate_vma_setup -EXPORT_SYMBOL vmlinux 0x0b5c00d2 phy_device_create +EXPORT_SYMBOL vmlinux 0x0b3cf111 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x0b498464 blk_get_request +EXPORT_SYMBOL vmlinux 0x0b56cede tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0x0b7094ad touch_atime EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b7b4370 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x0b8f4f1f create_empty_buffers EXPORT_SYMBOL vmlinux 0x0b904add of_get_i2c_adapter_by_node EXPORT_SYMBOL vmlinux 0x0b923345 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x0b9243a9 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x0b93159f inode_sub_bytes EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0ba51070 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x0bbea236 __netif_napi_del EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0bf6b1c1 tcf_exts_destroy EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0bfd3077 scsi_target_resume EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame EXPORT_SYMBOL vmlinux 0x0c1fcf25 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x0c234c9e i2c_verify_client EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c29c62a mii_ethtool_sset EXPORT_SYMBOL vmlinux 0x0c2bc3b7 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x0c394370 security_socket_socketpair EXPORT_SYMBOL vmlinux 0x0c53be25 get_tree_single_reconf EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write EXPORT_SYMBOL vmlinux 0x0c575b5c __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x0c620be5 genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c733a6a write_one_page +EXPORT_SYMBOL vmlinux 0x0c732e6d skb_tx_error +EXPORT_SYMBOL vmlinux 0x0c7adb22 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x0c81475d sock_from_file EXPORT_SYMBOL vmlinux 0x0c888a0f get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x0c8e3e70 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x0ca57720 fib_notifier_ops_unregister EXPORT_SYMBOL vmlinux 0x0ca5a27f loop_register_transfer EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cbb4083 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x0cbfdd05 inet_release EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0cd0bb48 build_skb_around EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason EXPORT_SYMBOL vmlinux 0x0cf58dd8 param_get_byte EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d195adf sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0x0d264133 mpage_writepage -EXPORT_SYMBOL vmlinux 0x0d2afdc8 netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm -EXPORT_SYMBOL vmlinux 0x0d51b3d3 jbd2_journal_unlock_updates EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type EXPORT_SYMBOL vmlinux 0x0d5add2b kobject_put -EXPORT_SYMBOL vmlinux 0x0d5d9fac tcf_action_update_stats EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset EXPORT_SYMBOL vmlinux 0x0d654e71 devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0x0d6c60cf ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x0d7de7ba netdev_info -EXPORT_SYMBOL vmlinux 0x0da5886d __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x0d72b1d8 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x0d972ce7 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x0daa47fc wait_on_page_private_2 EXPORT_SYMBOL vmlinux 0x0dadcc06 dquot_release -EXPORT_SYMBOL vmlinux 0x0db2581b jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x0db70b46 phy_find_first +EXPORT_SYMBOL vmlinux 0x0db6fe40 eth_platform_get_mac_address EXPORT_SYMBOL vmlinux 0x0dd5ebd0 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x0ddbbd57 finish_open EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 EXPORT_SYMBOL vmlinux 0x0e301885 hmm_range_fault -EXPORT_SYMBOL vmlinux 0x0e318a97 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x0e371424 generic_copy_file_range EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e5f04f9 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x0e6af2cf mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x0e694073 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x0e703151 page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor EXPORT_SYMBOL vmlinux 0x0e82708e csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x0e89bbc8 kill_pgrp +EXPORT_SYMBOL vmlinux 0x0e9dfa0a dev_change_flags EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill -EXPORT_SYMBOL vmlinux 0x0ea41dd7 scm_fp_dup EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0ebfbf82 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x0ec53530 xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ecee53d setup_new_exec -EXPORT_SYMBOL vmlinux 0x0ed1bb3a write_inode_now +EXPORT_SYMBOL vmlinux 0x0ed2b54e tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x0ed97cba skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x0edba05a textsearch_destroy -EXPORT_SYMBOL vmlinux 0x0ee4d597 done_path_create +EXPORT_SYMBOL vmlinux 0x0edd00f2 filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0x0ee8fde2 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x0ef202c7 skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0x0f011758 cros_ec_get_next_event EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f174e58 of_phy_is_fixed_link EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f3508dc vme_register_driver +EXPORT_SYMBOL vmlinux 0x0f1ea8a1 sock_bind_add +EXPORT_SYMBOL vmlinux 0x0f33ab25 scsi_host_lookup EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f38a22b vfs_fileattr_set EXPORT_SYMBOL vmlinux 0x0f4269be phy_write_paged EXPORT_SYMBOL vmlinux 0x0f4dee93 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x0f5b8ac3 nobh_writepage EXPORT_SYMBOL vmlinux 0x0f72e845 get_tree_nodev EXPORT_SYMBOL vmlinux 0x0f7955ad bio_alloc_bioset EXPORT_SYMBOL vmlinux 0x0f8458b3 mipi_dsi_generic_write EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn EXPORT_SYMBOL vmlinux 0x0f9b3445 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x0f9efbce generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x0fa4674d mii_check_link +EXPORT_SYMBOL vmlinux 0x0fa53a5c tcp_shutdown EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fbeebe4 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x0fc7ca24 __vfs_getxattr EXPORT_SYMBOL vmlinux 0x0fca31e3 simple_fill_super EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0febf4dc kern_path -EXPORT_SYMBOL vmlinux 0x0ffeb76e mmc_alloc_host EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm EXPORT_SYMBOL vmlinux 0x100c2540 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x100c5257 netdev_err -EXPORT_SYMBOL vmlinux 0x10162bb0 may_umount +EXPORT_SYMBOL vmlinux 0x101ee7a0 tcf_qevent_handle EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source -EXPORT_SYMBOL vmlinux 0x10359a34 nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region EXPORT_SYMBOL vmlinux 0x103920c1 mipi_dsi_dcs_get_display_brightness_large EXPORT_SYMBOL vmlinux 0x103a50d1 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x1042add4 mdiobus_unregister EXPORT_SYMBOL vmlinux 0x105671e5 cdev_device_add EXPORT_SYMBOL vmlinux 0x1057a279 bsearch EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x10697ade jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10876be0 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x108c87c7 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x108e75c8 dev_get_port_parent_id EXPORT_SYMBOL vmlinux 0x10af21cb d_invalidate +EXPORT_SYMBOL vmlinux 0x10bcec4a page_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0x10c76931 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x10cb3d37 fqdir_exit EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10dea8ac __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x10dec540 of_get_mac_address EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10f911b5 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x10ef8c39 xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype EXPORT_SYMBOL vmlinux 0x111eb269 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x112ab45b dentry_path_raw -EXPORT_SYMBOL vmlinux 0x112e0af3 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x11317ad3 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x112b775c would_dump +EXPORT_SYMBOL vmlinux 0x112d9b5f xsk_tx_release EXPORT_SYMBOL vmlinux 0x113fb34e of_translate_dma_address EXPORT_SYMBOL vmlinux 0x1141834f configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x114233cd __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0x11508be9 param_get_uint -EXPORT_SYMBOL vmlinux 0x11516a16 skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0x11516af3 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x11645807 inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117bbba7 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x1185a303 security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0x11af4bc8 d_alloc_name EXPORT_SYMBOL vmlinux 0x11b04420 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x11b18b34 sock_from_file EXPORT_SYMBOL vmlinux 0x11b4c204 kill_block_super -EXPORT_SYMBOL vmlinux 0x11b8d0e2 devm_mfd_add_devices EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x11dcd7ce sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x11d2f327 rtnl_unicast EXPORT_SYMBOL vmlinux 0x11e0e520 __nd_driver_register EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11fcb48a netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx EXPORT_SYMBOL vmlinux 0x1205d3a1 _copy_from_iter EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120c693b lookup_one_positive_unlocked EXPORT_SYMBOL vmlinux 0x120cdd7d rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0x120e622d qdisc_hash_add EXPORT_SYMBOL vmlinux 0x120ff8e1 xudma_get_rflow_ring_offset EXPORT_SYMBOL vmlinux 0x12117567 get_tz_trend EXPORT_SYMBOL vmlinux 0x1220098e nvdimm_namespace_disk_name EXPORT_SYMBOL vmlinux 0x122f8646 amba_device_register EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool EXPORT_SYMBOL vmlinux 0x124eec23 blkdev_put -EXPORT_SYMBOL vmlinux 0x1255dda0 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x12847d9c follow_down +EXPORT_SYMBOL vmlinux 0x1250c752 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x12684a58 ip6_fraglist_init EXPORT_SYMBOL vmlinux 0x128b452f __acpi_mdiobus_register EXPORT_SYMBOL vmlinux 0x128c5b65 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x128edf93 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x12982eda generic_file_llseek +EXPORT_SYMBOL vmlinux 0x129c9aa4 netdev_lower_dev_get_private EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user EXPORT_SYMBOL vmlinux 0x12af4b53 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x12c1d139 neigh_xmit EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12cb89c7 dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0x12e09660 register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x12e3d715 inet_frags_init EXPORT_SYMBOL vmlinux 0x12eb1612 bio_advance EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var EXPORT_SYMBOL vmlinux 0x1301c38e input_mt_init_slots @@ -6594,912 +6476,914 @@ EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge EXPORT_SYMBOL vmlinux 0x1351a726 pcim_iomap_table EXPORT_SYMBOL vmlinux 0x1353c693 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x13626fbb dev_driver_string -EXPORT_SYMBOL vmlinux 0x136fdf94 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x135feb51 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x1373c57a end_page_writeback +EXPORT_SYMBOL vmlinux 0x137a9c62 devfreq_add_governor EXPORT_SYMBOL vmlinux 0x137b19ad blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x13863291 dev_load EXPORT_SYMBOL vmlinux 0x138bdd96 cpumask_next EXPORT_SYMBOL vmlinux 0x138f0748 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x139ad228 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x139d2f2b ip6_output EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13a6c241 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x13ad5c59 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x13b04598 get_fs_type EXPORT_SYMBOL vmlinux 0x13b0a447 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x13bd561f tcp_splice_read +EXPORT_SYMBOL vmlinux 0x13c9d4b7 scsi_eh_prep_cmnd EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x13d0098e __scsi_iterate_devices EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d0f1b1 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x13d61eeb netlink_unicast EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x13d98559 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x13dd11b5 kfree_skb_reason -EXPORT_SYMBOL vmlinux 0x140a16e6 mmc_start_request EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x142e2138 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x14323ed9 ptp_clock_index EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x145796bc xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x1459cb7e vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x145dd04d __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x143604ec skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x14472453 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x145edda2 dev_remove_pack EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x148032d4 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x14794588 __skb_checksum_complete EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub EXPORT_SYMBOL vmlinux 0x14959320 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x14aa1379 neigh_seq_next EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready EXPORT_SYMBOL vmlinux 0x14b9a97e request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x14ba6cab skb_split -EXPORT_SYMBOL vmlinux 0x14c5c5ed udp_lib_unhash EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14ce9251 xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0x14ced76e nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x14db785f jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool -EXPORT_SYMBOL vmlinux 0x15013188 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x15103b34 mdiobus_scan EXPORT_SYMBOL vmlinux 0x1511c639 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x1518fae9 dev_trans_start EXPORT_SYMBOL vmlinux 0x151d2a92 d_alloc_parallel EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1524157f netif_set_xps_queue EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x153d6c0f security_path_rename EXPORT_SYMBOL vmlinux 0x153ef9aa pci_resize_resource -EXPORT_SYMBOL vmlinux 0x15452b67 security_inode_invalidate_secctx EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy EXPORT_SYMBOL vmlinux 0x155b7134 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x156aad79 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x156eec67 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x1570bc98 thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0x15740d49 input_mt_sync_frame EXPORT_SYMBOL vmlinux 0x15796783 iget5_locked -EXPORT_SYMBOL vmlinux 0x15a07abf flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x159a8d16 flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial EXPORT_SYMBOL vmlinux 0x15c3df6b bio_free_pages EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15f20ce0 sock_no_sendpage EXPORT_SYMBOL vmlinux 0x15f20e43 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x15f848c5 mnt_drop_write_file EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init EXPORT_SYMBOL vmlinux 0x15fdbf24 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x1606dd19 skb_checksum_setup EXPORT_SYMBOL vmlinux 0x1608fe3e pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x160ac22d filemap_flush +EXPORT_SYMBOL vmlinux 0x160a913e mmc_cqe_start_req EXPORT_SYMBOL vmlinux 0x160c96f0 bdi_put EXPORT_SYMBOL vmlinux 0x160f2ec3 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x16100bd5 _dev_err EXPORT_SYMBOL vmlinux 0x161a39ce md_register_thread EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x162e5abc fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x162e231e __block_write_full_page EXPORT_SYMBOL vmlinux 0x16315aa7 proc_create EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const EXPORT_SYMBOL vmlinux 0x163832ff pnp_stop_dev EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off -EXPORT_SYMBOL vmlinux 0x1656b243 __mdiobus_read EXPORT_SYMBOL vmlinux 0x16584d4e kobject_get EXPORT_SYMBOL vmlinux 0x165ad395 trace_print_symbols_seq EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x168b3efe sockfd_lookup EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16a35a75 filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0x16a92aa9 __devm_release_region -EXPORT_SYMBOL vmlinux 0x16b82011 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x16b4559b write_one_page EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16dec74f tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x16d35511 ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x16ef20b1 may_umount +EXPORT_SYMBOL vmlinux 0x1700a4c8 netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x174b42b5 sock_register -EXPORT_SYMBOL vmlinux 0x17548642 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x170f5362 ip_output +EXPORT_SYMBOL vmlinux 0x1720ecf7 vfs_get_link EXPORT_SYMBOL vmlinux 0x175f1191 dquot_file_open -EXPORT_SYMBOL vmlinux 0x177869b4 mdiobus_free +EXPORT_SYMBOL vmlinux 0x1770c0eb vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x177e107f ptp_clock_event EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get EXPORT_SYMBOL vmlinux 0x17865e47 iov_iter_kvec EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware EXPORT_SYMBOL vmlinux 0x179adc94 iov_iter_get_pages_alloc EXPORT_SYMBOL vmlinux 0x17a36978 param_ops_bool -EXPORT_SYMBOL vmlinux 0x17a4b478 genphy_aneg_done EXPORT_SYMBOL vmlinux 0x17af23e8 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x17b75dee tcp_gro_complete EXPORT_SYMBOL vmlinux 0x17bd3425 pci_dev_driver EXPORT_SYMBOL vmlinux 0x17bffefa clk_bulk_get -EXPORT_SYMBOL vmlinux 0x17c52e86 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x17c2850e scsi_remove_device EXPORT_SYMBOL vmlinux 0x17c93e1e of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x17d0579d __napi_alloc_skb EXPORT_SYMBOL vmlinux 0x17df24c2 rpmh_invalidate -EXPORT_SYMBOL vmlinux 0x17eb6786 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x180682f9 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x17e2b414 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x180cf9d5 generic_parse_monolithic EXPORT_SYMBOL vmlinux 0x181e78fd pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x182be706 twl6040_set_bits EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x1834db35 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x1834f464 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x185a75b3 bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0x1871ca0a pci_read_config_word EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x18883dac mmc_hw_reset EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189058b4 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x18b1e85d blk_get_queue EXPORT_SYMBOL vmlinux 0x18b3bec9 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x18b3f1be sk_dst_check EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io EXPORT_SYMBOL vmlinux 0x18bf8968 get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x18c4815e rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0x18ce2f15 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x18d8dce6 file_fdatawait_range EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start EXPORT_SYMBOL vmlinux 0x18e96a14 PDE_DATA +EXPORT_SYMBOL vmlinux 0x18edc319 security_old_inode_init_security EXPORT_SYMBOL vmlinux 0x18f8a586 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x18fb5b44 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x18fdc1fa kernel_sendpage EXPORT_SYMBOL vmlinux 0x190a48a9 efi +EXPORT_SYMBOL vmlinux 0x190aebe5 sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0x1915823d posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x1944a87d __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x1918b082 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x19331169 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x193942ed __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x19471a96 blackhole_netdev EXPORT_SYMBOL vmlinux 0x19486a87 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x194a5f2a i2c_verify_client EXPORT_SYMBOL vmlinux 0x194c5b66 input_register_handle EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x1971e57a sock_no_bind EXPORT_SYMBOL vmlinux 0x19764b5f input_get_timestamp -EXPORT_SYMBOL vmlinux 0x197925b5 block_write_begin +EXPORT_SYMBOL vmlinux 0x19801b33 i2c_smbus_write_block_data EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x19890dd2 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x198d76e2 __block_write_begin EXPORT_SYMBOL vmlinux 0x198df11b pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x198e64c1 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x19954c19 kmem_cache_shrink EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp EXPORT_SYMBOL vmlinux 0x19a1003b ps2_drain EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c13c3a phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0x19c5f8ca tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x19cbff95 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x19d7151b inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x19e9429f nf_hook_slow +EXPORT_SYMBOL vmlinux 0x19d807e5 __genphy_config_aneg EXPORT_SYMBOL vmlinux 0x19ed2764 misc_deregister -EXPORT_SYMBOL vmlinux 0x19f5af25 tc_cleanup_flow_action EXPORT_SYMBOL vmlinux 0x19f7be37 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x1a09a7a5 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x1a0c87c2 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x1a12d82f xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a1ef213 phy_aneg_done EXPORT_SYMBOL vmlinux 0x1a1f1d45 dcache_dir_close EXPORT_SYMBOL vmlinux 0x1a2d4e73 nd_btt_version -EXPORT_SYMBOL vmlinux 0x1a44a0aa xfrm_state_walk EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a85de86 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x1a543f35 set_page_dirty +EXPORT_SYMBOL vmlinux 0x1a70d809 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x1a818e98 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x1a85353f km_new_mapping EXPORT_SYMBOL vmlinux 0x1a87538b put_disk -EXPORT_SYMBOL vmlinux 0x1a96c2fd file_open_root EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aa061fe devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x1a9b296b nf_hook_slow EXPORT_SYMBOL vmlinux 0x1abcfaa6 clocksource_change_rating EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn EXPORT_SYMBOL vmlinux 0x1ace53fd md_wakeup_thread EXPORT_SYMBOL vmlinux 0x1ad4eb9b blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0x1af601ae mmc_can_gpio_ro EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist EXPORT_SYMBOL vmlinux 0x1b22608f param_ops_int +EXPORT_SYMBOL vmlinux 0x1b339bf2 netdev_has_upper_dev_all_rcu EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all -EXPORT_SYMBOL vmlinux 0x1b5f86fc jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x1b6027e8 dev_uc_del +EXPORT_SYMBOL vmlinux 0x1b5baa3d netif_napi_add EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device EXPORT_SYMBOL vmlinux 0x1b837e14 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0x1ba54339 phy_trigger_machine EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node EXPORT_SYMBOL vmlinux 0x1bad0cdf xudma_get_device -EXPORT_SYMBOL vmlinux 0x1baf1e81 ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info +EXPORT_SYMBOL vmlinux 0x1bc18fca xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent EXPORT_SYMBOL vmlinux 0x1be0677a jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x1c166e2d create_empty_buffers -EXPORT_SYMBOL vmlinux 0x1c29a1e3 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x1c1628d2 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x1c53b6f5 eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0x1c5473df md_write_start EXPORT_SYMBOL vmlinux 0x1c582ae4 uart_match_port EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c70cbe2 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x1c7b9990 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x1ca682de skb_copy EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree EXPORT_SYMBOL vmlinux 0x1cb42c5b elv_rb_find -EXPORT_SYMBOL vmlinux 0x1cb7dec1 tcp_mss_to_mtu EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1cc50882 key_move EXPORT_SYMBOL vmlinux 0x1cc88e19 vma_set_file +EXPORT_SYMBOL vmlinux 0x1cd69573 alloc_pages_vma EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cdbaddc _dev_alert EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl -EXPORT_SYMBOL vmlinux 0x1cddf020 eth_header_parse EXPORT_SYMBOL vmlinux 0x1ce1979b blk_pre_runtime_resume EXPORT_SYMBOL vmlinux 0x1ceb4489 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x1cf078f1 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x1cf00bb3 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x1cf02a6d dump_skip_to EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id +EXPORT_SYMBOL vmlinux 0x1cf9a165 security_d_instantiate EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d1806ba ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x1d128c60 tcf_exts_change EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x1d1cb55e datagram_poll +EXPORT_SYMBOL vmlinux 0x1d1b7b0a __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x1d215081 mmc_gpio_set_cd_isr EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d28ee0d inet_csk_accept EXPORT_SYMBOL vmlinux 0x1d2cf2b5 key_instantiate_and_link EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d3a127b filp_open +EXPORT_SYMBOL vmlinux 0x1d3d58e8 vlan_uses_dev EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d430cdb sk_net_capable +EXPORT_SYMBOL vmlinux 0x1d584775 mmc_can_gpio_ro EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x1d80fd69 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x1d6aa161 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x1d6ad7f9 kmem_cache_destroy EXPORT_SYMBOL vmlinux 0x1d964a55 set_cached_acl -EXPORT_SYMBOL vmlinux 0x1dad6319 security_binder_transfer_file EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dce8cc6 sock_set_priority -EXPORT_SYMBOL vmlinux 0x1dcec3e7 phy_loopback EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1ddc810f vfs_create_mount 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 0x1e00e276 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x1df47d8e no_llseek 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 0x1e1e140e ns_to_timespec64 EXPORT_SYMBOL vmlinux 0x1e3538a6 simple_recursive_removal EXPORT_SYMBOL vmlinux 0x1e5c0e68 param_get_hexint -EXPORT_SYMBOL vmlinux 0x1e5cbf53 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x1e63d25d inode_sub_bytes EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea4ca03 tso_count_descs +EXPORT_SYMBOL vmlinux 0x1ec7e6d7 tcf_qevent_dump EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ee4e313 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x1edfba40 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x1ee901ef dentry_open EXPORT_SYMBOL vmlinux 0x1efb0f51 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x1f01b3f2 ppp_output_wakeup EXPORT_SYMBOL vmlinux 0x1f0d9b8e watchdog_unregister_governor EXPORT_SYMBOL vmlinux 0x1f105ed3 clkdev_add -EXPORT_SYMBOL vmlinux 0x1f17b9db sock_alloc_file -EXPORT_SYMBOL vmlinux 0x1f28683e ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x1f145653 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x1f33f14a vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0x1f3d4385 discard_new_inode -EXPORT_SYMBOL vmlinux 0x1f4fadb2 __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x1f4fd485 rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f5b05e9 skb_copy +EXPORT_SYMBOL vmlinux 0x1f5963a0 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x1f657e3b sock_alloc_send_pskb EXPORT_SYMBOL vmlinux 0x1f67ec6d of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0x1f6e8e95 tcp_prot EXPORT_SYMBOL vmlinux 0x1f875e3c del_gendisk +EXPORT_SYMBOL vmlinux 0x1f8f9b28 eth_type_trans EXPORT_SYMBOL vmlinux 0x1fa702ec of_platform_bus_probe EXPORT_SYMBOL vmlinux 0x1fae855e inc_nlink EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fbf6572 __napi_schedule EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fda9d44 phy_error +EXPORT_SYMBOL vmlinux 0x1fe5e1ff eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x1fe79c3a remove_arg_zero EXPORT_SYMBOL vmlinux 0x1ff434e6 kthread_destroy_worker EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200145f4 xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201f9294 ping_prot +EXPORT_SYMBOL vmlinux 0x2042e8b3 xattr_full_name 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 0x205fd1ad unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x20756d75 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x206e554a kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x207646f2 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x20772d16 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x207d2e09 block_commit_write EXPORT_SYMBOL vmlinux 0x208c4813 is_bad_inode EXPORT_SYMBOL vmlinux 0x20a187e8 fscrypt_zeroout_range EXPORT_SYMBOL vmlinux 0x20a4fac9 dquot_quotactl_sysfile_ops EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data EXPORT_SYMBOL vmlinux 0x20ac8337 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x20b0990c eth_header_cache_update EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init EXPORT_SYMBOL vmlinux 0x20cdcc59 pcie_capability_clear_and_set_word EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum EXPORT_SYMBOL vmlinux 0x20fb28ab tty_lock -EXPORT_SYMBOL vmlinux 0x20fcb070 eth_header_cache_update EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x210a270e dev_mc_add EXPORT_SYMBOL vmlinux 0x2115fd34 freeze_bdev -EXPORT_SYMBOL vmlinux 0x21225fd9 __find_get_block -EXPORT_SYMBOL vmlinux 0x2123adb8 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x212b11f8 follow_pfn +EXPORT_SYMBOL vmlinux 0x2116135f skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x2135ac37 sock_no_sendmsg EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x214dd5a4 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x2153d3a5 set_user_nice +EXPORT_SYMBOL vmlinux 0x2179c373 devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0x217f11ac of_find_property EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21901e49 of_find_net_device_by_node EXPORT_SYMBOL vmlinux 0x21a82eec blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x21b53ce5 dst_release_immediate -EXPORT_SYMBOL vmlinux 0x21b882c4 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x21aab150 __neigh_event_send EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21c7360e key_move EXPORT_SYMBOL vmlinux 0x21c83b1f input_setup_polling EXPORT_SYMBOL vmlinux 0x21d42ce9 nla_append -EXPORT_SYMBOL vmlinux 0x21d5a169 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21eb0c4b ppp_register_channel EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion EXPORT_SYMBOL vmlinux 0x21f02a26 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x22072183 iterate_dir +EXPORT_SYMBOL vmlinux 0x2200d56e devfreq_add_device EXPORT_SYMBOL vmlinux 0x220c7021 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x221d8f43 flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x22303fd7 kill_pgrp EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list EXPORT_SYMBOL vmlinux 0x223bf2ba bio_uninit -EXPORT_SYMBOL vmlinux 0x22457c6f __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range EXPORT_SYMBOL vmlinux 0x224da51d mdiobb_read +EXPORT_SYMBOL vmlinux 0x227d6fe8 tcf_unregister_action EXPORT_SYMBOL vmlinux 0x229484cd netdev_stats_to_stats64 EXPORT_SYMBOL vmlinux 0x22977eb1 d_lookup -EXPORT_SYMBOL vmlinux 0x22a61f22 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x22a36e5c of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x22ad8ff4 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x22aff0cb jbd2_journal_start_commit EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22bc8cb2 km_state_expired +EXPORT_SYMBOL vmlinux 0x22cb24a1 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x22d8c7d5 nonseekable_open +EXPORT_SYMBOL vmlinux 0x22da0b79 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x22de26f7 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x22e7a5d9 qdisc_hash_del EXPORT_SYMBOL vmlinux 0x22f409fc of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x2322f765 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x233800e5 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x233e08d1 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x22f7e6d1 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x231be4e0 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x23378cea sock_kmalloc +EXPORT_SYMBOL vmlinux 0x2338b4f7 peernet2id +EXPORT_SYMBOL vmlinux 0x2341f889 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x23449ec6 devm_devfreq_remove_device EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq EXPORT_SYMBOL vmlinux 0x2359715c input_alloc_absinfo EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init EXPORT_SYMBOL vmlinux 0x236ee6f3 bio_split -EXPORT_SYMBOL vmlinux 0x23794827 tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x237c4167 napi_gro_frags EXPORT_SYMBOL vmlinux 0x237d416d pcim_pin_device EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x238e21f3 inet_shutdown EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat -EXPORT_SYMBOL vmlinux 0x239d53d3 tcp_filter +EXPORT_SYMBOL vmlinux 0x2393db34 __sock_cmsg_send EXPORT_SYMBOL vmlinux 0x23a5758e tegra_ivc_notified EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path EXPORT_SYMBOL vmlinux 0x23bd3ed7 pnpacpi_protocol EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23df8bc4 scsi_print_command +EXPORT_SYMBOL vmlinux 0x23e09804 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0x23e9dde2 make_kprojid +EXPORT_SYMBOL vmlinux 0x23f058dd end_buffer_write_sync EXPORT_SYMBOL vmlinux 0x23f906eb timestamp_truncate EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24101a03 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x24179911 security_unix_may_send EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page EXPORT_SYMBOL vmlinux 0x2430513e bio_reset EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline EXPORT_SYMBOL vmlinux 0x24652574 clk_add_alias -EXPORT_SYMBOL vmlinux 0x24775dfd __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x24810579 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x24652c89 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x2465930f mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x2483111f phy_support_sym_pause EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x248a12b3 mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x248f9cf0 ppp_input -EXPORT_SYMBOL vmlinux 0x24959a63 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x249c3a54 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x2485a0b9 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x24a0edcd __page_symlink EXPORT_SYMBOL vmlinux 0x24a3ff4b pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x24d0f556 dcb_ieee_setapp EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24de40b1 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x24ff234a tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x24d2df92 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x24faac50 vfs_get_fsid EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user EXPORT_SYMBOL vmlinux 0x2518bce1 seq_pad -EXPORT_SYMBOL vmlinux 0x251eddd8 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x251a2f7f sk_mc_loop EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released EXPORT_SYMBOL vmlinux 0x25252c36 dcache_readdir -EXPORT_SYMBOL vmlinux 0x252a0af0 phy_start +EXPORT_SYMBOL vmlinux 0x252976e4 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x252d2f0d mark_page_accessed EXPORT_SYMBOL vmlinux 0x252f8d43 proc_set_size -EXPORT_SYMBOL vmlinux 0x25444c22 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x2544e394 tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0x2546b3ce fman_set_port_params -EXPORT_SYMBOL vmlinux 0x25582edd dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x2547a20a inode_get_bytes EXPORT_SYMBOL vmlinux 0x255a2949 dma_resv_fini -EXPORT_SYMBOL vmlinux 0x256d2c0a block_commit_write -EXPORT_SYMBOL vmlinux 0x256fad88 mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x257a4734 pci_request_region EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x25861592 bfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock EXPORT_SYMBOL vmlinux 0x258afce8 __alloc_pages EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion EXPORT_SYMBOL vmlinux 0x25b03e48 rpmh_write_batch +EXPORT_SYMBOL vmlinux 0x25c90c3b tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free EXPORT_SYMBOL vmlinux 0x25f968ed __do_once_slow_done EXPORT_SYMBOL vmlinux 0x25fad2c5 current_in_userns -EXPORT_SYMBOL vmlinux 0x25fb67da scsi_print_command +EXPORT_SYMBOL vmlinux 0x26001e54 ip_frag_init EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table EXPORT_SYMBOL vmlinux 0x2617e6a8 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x262adea0 udp_read_sock -EXPORT_SYMBOL vmlinux 0x263b2605 of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x2619e0f9 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x263126af mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x2631b9e9 iptun_encaps EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263de61d no_seek_end_llseek_size EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod -EXPORT_SYMBOL vmlinux 0x2653b97e napi_disable +EXPORT_SYMBOL vmlinux 0x263fc41c vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x26455c30 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x265879b7 vfs_iter_read EXPORT_SYMBOL vmlinux 0x265aa225 inode_init_once -EXPORT_SYMBOL vmlinux 0x266e8f44 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x266107b6 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x2662b01e security_sk_clone EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x268d8b75 skb_copy_expand EXPORT_SYMBOL vmlinux 0x268f04ec give_up_console -EXPORT_SYMBOL vmlinux 0x2690a225 generic_fillattr -EXPORT_SYMBOL vmlinux 0x269ebf4f phy_stop -EXPORT_SYMBOL vmlinux 0x269eddf4 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x268f4144 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x2693343e __ip_options_compile +EXPORT_SYMBOL vmlinux 0x26a821d5 vmf_insert_mixed_prot EXPORT_SYMBOL vmlinux 0x26b72ccb phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x26c68f92 __skb_gso_segment EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit -EXPORT_SYMBOL vmlinux 0x26dcd14f tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x26ce0940 tegra_dfll_unregister EXPORT_SYMBOL vmlinux 0x26dd8ad5 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x26e1624a napi_gro_flush +EXPORT_SYMBOL vmlinux 0x26e27fa1 of_mdio_find_device EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e8e35c __netif_schedule EXPORT_SYMBOL vmlinux 0x26e98aa1 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x26f0ca98 keyring_search +EXPORT_SYMBOL vmlinux 0x26ef4341 dev_addr_init EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x271109a6 sock_no_mmap EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x272e6e79 tc_setup_flow_action EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed EXPORT_SYMBOL vmlinux 0x27397317 dec_node_page_state -EXPORT_SYMBOL vmlinux 0x273d33cb mdiobus_read -EXPORT_SYMBOL vmlinux 0x273d757a devfreq_add_device EXPORT_SYMBOL vmlinux 0x27479adc kobject_get_unless_zero 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 0x27660bf9 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x27659ced unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string EXPORT_SYMBOL vmlinux 0x27778d87 blk_mq_delay_run_hw_queues EXPORT_SYMBOL vmlinux 0x2779900e md_bitmap_start_sync 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 0x278cbaa8 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x27b4aa79 vfs_getattr +EXPORT_SYMBOL vmlinux 0x27b51122 xfrm_state_insert EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync EXPORT_SYMBOL vmlinux 0x27bd5a47 trace_print_array_seq EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid +EXPORT_SYMBOL vmlinux 0x27c4584b netpoll_cleanup EXPORT_SYMBOL vmlinux 0x27c53656 nd_namespace_blk_validate EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27da82f9 phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek EXPORT_SYMBOL vmlinux 0x281f8d49 pci_bus_assign_resources EXPORT_SYMBOL vmlinux 0x28206e12 dquot_operations -EXPORT_SYMBOL vmlinux 0x28465980 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x282f1aaa devfreq_suspend_device EXPORT_SYMBOL vmlinux 0x28638bfa dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x286ab8f5 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x2871f8d8 qdisc_reset EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x287e1102 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x287fa2fd __bread_gfp +EXPORT_SYMBOL vmlinux 0x28806545 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x289d4380 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x28a48c18 eth_header_parse +EXPORT_SYMBOL vmlinux 0x28abdecb tcp_fastopen_defer_connect EXPORT_SYMBOL vmlinux 0x28b1c684 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x28c085e2 tcp_v4_connect EXPORT_SYMBOL vmlinux 0x28c3d646 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x28cd224a locks_copy_lock -EXPORT_SYMBOL vmlinux 0x28cd53ff skb_push -EXPORT_SYMBOL vmlinux 0x28cf84a7 km_state_notify -EXPORT_SYMBOL vmlinux 0x28d2feab tcp_child_process -EXPORT_SYMBOL vmlinux 0x28dc8b0e inode_set_bytes +EXPORT_SYMBOL vmlinux 0x28d18892 sock_no_getname EXPORT_SYMBOL vmlinux 0x28dfdc30 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x28e6f219 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x28f0fc33 xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x29169872 finish_swait EXPORT_SYMBOL vmlinux 0x29178bbb cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x292ec15d file_fdatawait_range -EXPORT_SYMBOL vmlinux 0x293ce733 i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0x293e18bc d_set_fallthru +EXPORT_SYMBOL vmlinux 0x295931d5 ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop EXPORT_SYMBOL vmlinux 0x2970cf00 config_item_get -EXPORT_SYMBOL vmlinux 0x297c2735 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x2993fdcf __i2c_transfer +EXPORT_SYMBOL vmlinux 0x2970fef2 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x297583cb generic_permission +EXPORT_SYMBOL vmlinux 0x299a381b filemap_fdatawrite EXPORT_SYMBOL vmlinux 0x29a171e0 __serio_register_driver EXPORT_SYMBOL vmlinux 0x29b5ef72 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x29d1c4db nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x29b88cfc tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x29c4fdce flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x29c9c190 netlink_broadcast EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29f0175d inet_stream_ops -EXPORT_SYMBOL vmlinux 0x29f6695b ppp_unit_number EXPORT_SYMBOL vmlinux 0x29ff74c6 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x2a1df569 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x2a01d844 block_write_end +EXPORT_SYMBOL vmlinux 0x2a0dce5e xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x2a1aaa8a inet_dgram_connect EXPORT_SYMBOL vmlinux 0x2a2902cc mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0x2a2cbf5b tcp_disconnect EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a4e168c gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x2a4fb5e3 xattr_full_name EXPORT_SYMBOL vmlinux 0x2a5a1120 clear_nlink +EXPORT_SYMBOL vmlinux 0x2a5f81d0 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x2a74bd18 pskb_extract +EXPORT_SYMBOL vmlinux 0x2a7ae095 audit_log_start EXPORT_SYMBOL vmlinux 0x2a8592c2 msm_pinctrl_dev_pm_ops EXPORT_SYMBOL vmlinux 0x2a8a0b96 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2a8d725c security_inode_init_security EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize EXPORT_SYMBOL vmlinux 0x2aa670b3 dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0x2aa9c74e dev_get_stats EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array -EXPORT_SYMBOL vmlinux 0x2aaec070 sk_reset_timer EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id EXPORT_SYMBOL vmlinux 0x2ab92247 unload_nls EXPORT_SYMBOL vmlinux 0x2aca8614 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x2ae88987 block_write_end +EXPORT_SYMBOL vmlinux 0x2acb1b51 __neigh_create +EXPORT_SYMBOL vmlinux 0x2ace138f kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x2aeb8acd __generic_file_write_iter EXPORT_SYMBOL vmlinux 0x2b124c1c ilookup5_nowait EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 -EXPORT_SYMBOL vmlinux 0x2b209c7a lock_rename -EXPORT_SYMBOL vmlinux 0x2b211d24 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x2b259c56 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x2b33386e neigh_carrier_down EXPORT_SYMBOL vmlinux 0x2b3f31b0 blkdev_get_by_path EXPORT_SYMBOL vmlinux 0x2b408b5e dma_supported -EXPORT_SYMBOL vmlinux 0x2b58c911 mmc_cqe_start_req EXPORT_SYMBOL vmlinux 0x2b58f2a4 generic_key_instantiate EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner EXPORT_SYMBOL vmlinux 0x2b60428f iproc_msi_init -EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b6e8c37 of_phy_connect -EXPORT_SYMBOL vmlinux 0x2b789814 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x2b6f28b1 i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0x2b78a805 tty_port_put -EXPORT_SYMBOL vmlinux 0x2b823a23 tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2b9fa985 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x2ba3cffe __nlmsg_put EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock -EXPORT_SYMBOL vmlinux 0x2bb8e9dc vfs_symlink -EXPORT_SYMBOL vmlinux 0x2bb9e48e napi_complete_done +EXPORT_SYMBOL vmlinux 0x2bbc575f buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x2bbf4aaf device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x2bbf5ce3 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x2bc2ceb2 vm_insert_pages EXPORT_SYMBOL vmlinux 0x2bce4f92 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x2bce6122 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x2bd2ea17 fqdir_exit EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2bf07930 flow_rule_match_icmp EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove EXPORT_SYMBOL vmlinux 0x2bff554b md_done_sync +EXPORT_SYMBOL vmlinux 0x2bffebac follow_pfn +EXPORT_SYMBOL vmlinux 0x2c061567 nf_log_register EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar EXPORT_SYMBOL vmlinux 0x2c270afc input_set_timestamp -EXPORT_SYMBOL vmlinux 0x2c28d3d7 scsi_remove_device EXPORT_SYMBOL vmlinux 0x2c31a1c3 pci_read_config_dword EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up -EXPORT_SYMBOL vmlinux 0x2c4df43a ptp_clock_register +EXPORT_SYMBOL vmlinux 0x2c39bab3 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x2c4d8266 skb_set_owner_w EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk EXPORT_SYMBOL vmlinux 0x2c6b8cf4 __blk_mq_alloc_disk EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool -EXPORT_SYMBOL vmlinux 0x2c81c34d noop_llseek +EXPORT_SYMBOL vmlinux 0x2c796c47 __sock_i_ino +EXPORT_SYMBOL vmlinux 0x2c806245 phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x2c8be74e tty_port_tty_set EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot EXPORT_SYMBOL vmlinux 0x2c923178 __put_user_ns +EXPORT_SYMBOL vmlinux 0x2cae3cee sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x2cb6371d __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x2cbfb74c ___pskb_trim EXPORT_SYMBOL vmlinux 0x2cc4c10b register_cdrom EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cce40c6 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x2cd685b4 inet_add_offload -EXPORT_SYMBOL vmlinux 0x2cd9c793 dev_addr_del EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2d115b10 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x2d13cc65 mmc_card_alternative_gpt_sector EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock EXPORT_SYMBOL vmlinux 0x2d17cf65 pm860x_reg_write EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d24325c tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x2d3015eb dst_cow_metrics_generic EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d425c0b softnet_data EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font EXPORT_SYMBOL vmlinux 0x2d4e3abc page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0x2d4ff944 find_get_pages_contig EXPORT_SYMBOL vmlinux 0x2d56d6fc md_error -EXPORT_SYMBOL vmlinux 0x2d620db5 try_to_release_page -EXPORT_SYMBOL vmlinux 0x2d628806 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x2d67b6a1 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x2d6f1627 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x2d6ceddd ppp_unit_number EXPORT_SYMBOL vmlinux 0x2d75d6d3 regset_get -EXPORT_SYMBOL vmlinux 0x2d7a2070 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x2d7dc8af rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x2d7f6d48 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x2d8a2e4d inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x2d83b168 mmc_alloc_host EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2dae4e34 tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs -EXPORT_SYMBOL vmlinux 0x2dd7b613 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x2dfcdc93 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x2dff69d7 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x2de3474c scsi_vpd_tpg_id EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e0dedad scsi_device_resume EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put EXPORT_SYMBOL vmlinux 0x2e251661 pm_vt_switch_required EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw +EXPORT_SYMBOL vmlinux 0x2e2f8b05 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x2e320078 inet_del_protocol EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e4b7466 jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e630e51 dcb_setapp +EXPORT_SYMBOL vmlinux 0x2e6052da __dev_direct_xmit EXPORT_SYMBOL vmlinux 0x2e6313a5 pci_iounmap -EXPORT_SYMBOL vmlinux 0x2e7900a1 sock_create_lite EXPORT_SYMBOL vmlinux 0x2e7d5798 iov_iter_zero EXPORT_SYMBOL vmlinux 0x2e820567 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x2e962b42 seg6_push_hmac EXPORT_SYMBOL vmlinux 0x2e998a2a par_io_of_config EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x2ebb5078 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x2eb69bb0 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x2ebbdee5 locks_copy_conflock EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ec81370 neigh_resolve_output EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2ee5f6ac tcp_sock_set_quickack EXPORT_SYMBOL vmlinux 0x2eea912c get_random_bytes_arch EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f07b3e2 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x2f0a7b53 scsi_target_quiesce EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init EXPORT_SYMBOL vmlinux 0x2f1b8ee0 pci_disable_ptm EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security EXPORT_SYMBOL vmlinux 0x2f32d4dc is_nd_pfn EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f66d88b inet6_add_offload +EXPORT_SYMBOL vmlinux 0x2f40920f generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x2f6febd9 dst_dev_put EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f7c4617 consume_skb +EXPORT_SYMBOL vmlinux 0x2f8478ea skb_abort_seq_read EXPORT_SYMBOL vmlinux 0x2f86dff0 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x2f8f8a7e scm_detach_fds +EXPORT_SYMBOL vmlinux 0x2f8e3cce generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0x2fcb81f9 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x2fd1a016 security_sock_graft -EXPORT_SYMBOL vmlinux 0x2fda9624 __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x2fdcf1f0 gnet_stats_copy_basic_hw EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem -EXPORT_SYMBOL vmlinux 0x2ff83860 netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0x2ffbc8eb netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x2fee63e0 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x3001c4be lookup_one EXPORT_SYMBOL vmlinux 0x300d482a iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x30259d83 __neigh_create -EXPORT_SYMBOL vmlinux 0x3030a186 crypto_sha512_finup EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp EXPORT_SYMBOL vmlinux 0x30533b3c of_match_device EXPORT_SYMBOL vmlinux 0x306874a3 scsi_partsize -EXPORT_SYMBOL vmlinux 0x306ded9e phy_init_eee EXPORT_SYMBOL vmlinux 0x30887ef8 of_xudma_dev_get -EXPORT_SYMBOL vmlinux 0x3095e342 xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309a9d29 jbd2_fc_end_commit EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 EXPORT_SYMBOL vmlinux 0x30af7100 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x30b157ba __set_page_dirty_no_writeback EXPORT_SYMBOL vmlinux 0x30cac76c clk_hw_register_clkdev EXPORT_SYMBOL vmlinux 0x30d69746 free_mdio_bitbang -EXPORT_SYMBOL vmlinux 0x30d6c2f3 mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0x30d70594 of_node_put -EXPORT_SYMBOL vmlinux 0x30da38d6 dev_get_by_name EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30efb38e skb_checksum_help EXPORT_SYMBOL vmlinux 0x30efc4c7 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x30f05b66 phy_get_pause -EXPORT_SYMBOL vmlinux 0x30febc8c xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages EXPORT_SYMBOL vmlinux 0x31064dbc dma_unmap_resource -EXPORT_SYMBOL vmlinux 0x31181196 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x3114ad36 ppp_register_channel EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x3136fda4 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x3135a86c vlan_vid_add EXPORT_SYMBOL vmlinux 0x3137a929 __do_once_done EXPORT_SYMBOL vmlinux 0x31408d8c pnp_device_detach +EXPORT_SYMBOL vmlinux 0x314d3b60 scsi_report_bus_reset EXPORT_SYMBOL vmlinux 0x3154591e pci_irq_vector -EXPORT_SYMBOL vmlinux 0x318e679c __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x31701638 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x319b1827 netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31a85990 ppp_register_compressor EXPORT_SYMBOL vmlinux 0x31a990b0 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x31ae46fc __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x31b0c4ff ip_defrag EXPORT_SYMBOL vmlinux 0x31bd8c16 unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x31beab7e vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x31c80a36 of_mdio_find_bus EXPORT_SYMBOL vmlinux 0x31d253f5 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x31f81d0f tcp_v4_mtu_reduced EXPORT_SYMBOL vmlinux 0x31ff9553 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x32019429 devfreq_resume_device EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock EXPORT_SYMBOL vmlinux 0x32186802 pci_get_subsys EXPORT_SYMBOL vmlinux 0x322106c5 blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x324944d8 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x324ca404 __scsi_print_sense EXPORT_SYMBOL vmlinux 0x324d55cf __ps2_command EXPORT_SYMBOL vmlinux 0x32580397 of_device_get_match_data EXPORT_SYMBOL vmlinux 0x327237e2 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x32761e15 cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state EXPORT_SYMBOL vmlinux 0x328ae0d6 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x328d3c2f dev_uc_del +EXPORT_SYMBOL vmlinux 0x32a490a4 nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0x32ccba1b dma_resv_add_excl_fence EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string EXPORT_SYMBOL vmlinux 0x32e8317a cdev_alloc -EXPORT_SYMBOL vmlinux 0x32ef7121 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x33026450 __bforget EXPORT_SYMBOL vmlinux 0x330375ee dcache_dir_lseek EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl +EXPORT_SYMBOL vmlinux 0x3312a7f4 genphy_write_mmd_unsupported EXPORT_SYMBOL vmlinux 0x331f1728 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x33298dfe pagevec_lookup_range EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down -EXPORT_SYMBOL vmlinux 0x3355f375 open_exec +EXPORT_SYMBOL vmlinux 0x333f82d0 dev_uc_init +EXPORT_SYMBOL vmlinux 0x3348a14f __vfs_setxattr EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x337437ee linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x3376f311 __alloc_skb -EXPORT_SYMBOL vmlinux 0x337f409e tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x338c8810 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x338ddc78 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x337e13c8 finish_no_open +EXPORT_SYMBOL vmlinux 0x3389d1ba seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x338eef89 filemap_flush +EXPORT_SYMBOL vmlinux 0x33954080 grab_cache_page_write_begin EXPORT_SYMBOL vmlinux 0x33961557 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x339a7d10 lock_sock_nested EXPORT_SYMBOL vmlinux 0x339f4567 tty_vhangup +EXPORT_SYMBOL vmlinux 0x33a653ca pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0x33a91f6f fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x33b9d8e7 i2c_put_adapter EXPORT_SYMBOL vmlinux 0x33c594c9 get_tree_single EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f60a62 setup_new_exec +EXPORT_SYMBOL vmlinux 0x33fbdb97 genphy_config_eee_advert EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x340c73ac reuseport_has_conns_set EXPORT_SYMBOL vmlinux 0x341a1f11 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x34219f51 dev_change_proto_down EXPORT_SYMBOL vmlinux 0x342441dc simple_dentry_operations EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x34301536 devm_rproc_add +EXPORT_SYMBOL vmlinux 0x3434d9af wait_on_page_private_2_killable EXPORT_SYMBOL vmlinux 0x3435e484 of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0x343d9ecd vfs_mknod EXPORT_SYMBOL vmlinux 0x343ebf8f acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0x34445272 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x344af75c genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x345b86ea reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x345fc90a twl6040_get_sysclk EXPORT_SYMBOL vmlinux 0x34701cf8 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x3478a558 security_inet_conn_established -EXPORT_SYMBOL vmlinux 0x3488557c tcp_seq_next EXPORT_SYMBOL vmlinux 0x348ead01 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x34925c01 xfrm_register_km EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x349f6e0a inet_stream_connect EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd EXPORT_SYMBOL vmlinux 0x34a76cf1 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x34a9e467 proto_unregister -EXPORT_SYMBOL vmlinux 0x34b009a7 phy_ethtool_ksettings_set EXPORT_SYMBOL vmlinux 0x34b16334 __next_node_in -EXPORT_SYMBOL vmlinux 0x34b26a22 begin_new_exec -EXPORT_SYMBOL vmlinux 0x34b8d477 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x34c4a9ae tcp_stream_memory_free EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34cd679c qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x34d8ba4d __sk_receive_skb EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f5bd1b xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0x34fbf713 __brelse EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x350f1fea tcf_generic_walker EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x35184c7a flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0x351cceb8 serio_close EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353eafd4 jbd2_journal_errno EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x356810ea vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x3569aa20 flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0x357454cc page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x357cc670 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x358c93b2 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x359b8c11 generic_fadvise EXPORT_SYMBOL vmlinux 0x35a1fe6a param_get_int -EXPORT_SYMBOL vmlinux 0x35a756f8 xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35b35e19 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x35b63a6f __ip_mc_dec_group EXPORT_SYMBOL vmlinux 0x35c63feb kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x35ca2d70 mnt_drop_write_file EXPORT_SYMBOL vmlinux 0x35d4ec68 __dec_node_page_state EXPORT_SYMBOL vmlinux 0x35f29eb1 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x35fc8b55 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x35f6668c i2c_add_adapter EXPORT_SYMBOL vmlinux 0x3602008b dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0x36057667 sock_no_recvmsg EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x3610e1f3 migrate_page_states -EXPORT_SYMBOL vmlinux 0x36234763 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x362bb7dc secpath_set EXPORT_SYMBOL vmlinux 0x362be6e9 fbcon_update_vcs EXPORT_SYMBOL vmlinux 0x3635328d of_get_next_available_child 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 0x367e49f5 of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0x36920958 vme_init_bridge -EXPORT_SYMBOL vmlinux 0x369bfdaa pneigh_lookup +EXPORT_SYMBOL vmlinux 0x367b9392 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x36a43375 read_cache_page EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36cf09e4 devm_of_clk_del_provider -EXPORT_SYMBOL vmlinux 0x36d39179 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x36eea3b7 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x36f28f98 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x3703c146 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x370f918c xfrm6_rcv_tnl EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x372da5b6 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x372f6e52 free_netdev +EXPORT_SYMBOL vmlinux 0x372ee029 kill_fasync EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound +EXPORT_SYMBOL vmlinux 0x373f958c sock_pfree +EXPORT_SYMBOL vmlinux 0x3742d645 ndisc_mc_map EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn EXPORT_SYMBOL vmlinux 0x37477047 seq_write +EXPORT_SYMBOL vmlinux 0x374ec43e jbd2_complete_transaction EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x375769d1 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x375f165b inet_bind EXPORT_SYMBOL vmlinux 0x375fbaea pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x376ae6db sk_free EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x37adbdfa xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x37862e05 kmem_cache_size EXPORT_SYMBOL vmlinux 0x37b0bdb2 simple_pin_fs EXPORT_SYMBOL vmlinux 0x37b550c0 rproc_free EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37d623cb alloc_pages_vma EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37dbcb0d jbd2_journal_inode_ranged_wait EXPORT_SYMBOL vmlinux 0x37e0042f blk_queue_physical_block_size EXPORT_SYMBOL vmlinux 0x37e3ec9b vm_event_states -EXPORT_SYMBOL vmlinux 0x37ef3324 xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0x37fb1931 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x37fbd468 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x37fdcc3a ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x37fcefb9 ethtool_notify EXPORT_SYMBOL vmlinux 0x38034557 truncate_setsize EXPORT_SYMBOL vmlinux 0x38105f2d devm_request_resource EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x382a053d tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x384af1b4 skb_dequeue +EXPORT_SYMBOL vmlinux 0x3833551e __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x383aece1 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x383b42e4 tcp_close EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x38566f4f tcp_splice_read -EXPORT_SYMBOL vmlinux 0x38582271 icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0x386e39b2 dquot_commit 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 0x389c2fcc input_unregister_device +EXPORT_SYMBOL vmlinux 0x389ecf85 mmc_gpiod_request_cd_irq EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback EXPORT_SYMBOL vmlinux 0x38c3d60c param_get_charp EXPORT_SYMBOL vmlinux 0x38c4e161 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x38d0fbc6 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x38d2ce5c __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0x38df201f mipi_dsi_attach EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38f23bfb sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x38edbddc unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x391206cd genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0x392478b4 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x3926d6b1 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x39010b18 reuseport_select_sock EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x392e0920 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x3934c396 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x39354fd7 udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393e5ce6 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x39425080 nf_log_set EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x3955d0dc tcp_req_err +EXPORT_SYMBOL vmlinux 0x3953a448 security_path_mknod EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x3968c45f vfs_copy_file_range EXPORT_SYMBOL vmlinux 0x396de039 tty_unlock 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 0x39b8b13d alloc_fddidev EXPORT_SYMBOL vmlinux 0x39b8d49c cpu_rmap_update EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue -EXPORT_SYMBOL vmlinux 0x39bfdbce alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x39e89519 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x39d22b64 skb_store_bits +EXPORT_SYMBOL vmlinux 0x39f28cb2 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x39f3385d tcf_em_register EXPORT_SYMBOL vmlinux 0x39f840ef blk_mq_tagset_wait_completed_request EXPORT_SYMBOL vmlinux 0x39f94028 md_integrity_add_rdev EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a1c64ef reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x3a282419 devfreq_add_governor EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table EXPORT_SYMBOL vmlinux 0x3a3ce1a4 seq_read EXPORT_SYMBOL vmlinux 0x3a3f14f7 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x3a423040 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x3a4397ef flow_rule_match_basic EXPORT_SYMBOL vmlinux 0x3a48fc02 seq_escape EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a5090fa locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x3a56478e mmc_release_host +EXPORT_SYMBOL vmlinux 0x3a50f8ff migrate_page_copy EXPORT_SYMBOL vmlinux 0x3a5fa732 fsync_bdev EXPORT_SYMBOL vmlinux 0x3a8666c2 configfs_unregister_group EXPORT_SYMBOL vmlinux 0x3a8bb320 devm_clk_get +EXPORT_SYMBOL vmlinux 0x3aa3ca0b __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x3ab1963f __icmp_send EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ac4e5ac flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x3ac9b7b2 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x3acb2691 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x3ad49339 sk_capable EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region -EXPORT_SYMBOL vmlinux 0x3aed7aae xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x3ade8b17 dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x3aef0faa register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x3af519c8 netdev_lower_state_changed EXPORT_SYMBOL vmlinux 0x3af5d9c2 devm_of_iomap EXPORT_SYMBOL vmlinux 0x3af789f3 pci_map_rom -EXPORT_SYMBOL vmlinux 0x3afca333 xfrm_register_km EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed EXPORT_SYMBOL vmlinux 0x3b05dffa d_drop EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma -EXPORT_SYMBOL vmlinux 0x3b133294 ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b2123a1 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x3b22c661 xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b38806a mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x3b371f94 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x3b3b1cbb ip_options_compile EXPORT_SYMBOL vmlinux 0x3b4bc1af super_setup_bdi -EXPORT_SYMBOL vmlinux 0x3b5b8a40 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x3b5cff43 scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint EXPORT_SYMBOL vmlinux 0x3b7070bf vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x3b9105f5 inet6_ioctl EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources EXPORT_SYMBOL vmlinux 0x3b914ada proc_set_user -EXPORT_SYMBOL vmlinux 0x3bb00427 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x3bb4c1c1 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x3bb58157 rproc_add +EXPORT_SYMBOL vmlinux 0x3bb753b7 ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0x3bc2a27d of_chosen EXPORT_SYMBOL vmlinux 0x3bc55efc param_get_string -EXPORT_SYMBOL vmlinux 0x3bcd1756 __block_write_begin -EXPORT_SYMBOL vmlinux 0x3bd0bf16 PageMovable -EXPORT_SYMBOL vmlinux 0x3bdcf92e wireless_spy_update EXPORT_SYMBOL vmlinux 0x3bddc937 d_rehash EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3c17ca5c scsi_remove_host +EXPORT_SYMBOL vmlinux 0x3be7b887 vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c1a0f6c mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0x3c1f5a9d configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0x3c20a478 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x3c238e63 mmc_of_parse_clk_phase EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c3af76b sock_setsockopt EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf EXPORT_SYMBOL vmlinux 0x3c41e3d0 page_pool_update_nid EXPORT_SYMBOL vmlinux 0x3c504aa9 pps_event -EXPORT_SYMBOL vmlinux 0x3c847cb8 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0x3c961077 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x3c9e6f43 sock_efree -EXPORT_SYMBOL vmlinux 0x3cb27816 wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0x3cb8fc10 ip6_output +EXPORT_SYMBOL vmlinux 0x3c5757ca skb_ext_add +EXPORT_SYMBOL vmlinux 0x3c8b35af netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x3cbafc58 inode_set_bytes EXPORT_SYMBOL vmlinux 0x3ccbab1b pnp_unregister_driver EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw -EXPORT_SYMBOL vmlinux 0x3ce230e6 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x3cda9893 tcp_seq_start EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3d015543 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x3cfd12d8 devfreq_monitor_stop EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d072519 devfreq_remove_governor EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align EXPORT_SYMBOL vmlinux 0x3d385328 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x3d3aca40 flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x3d3bebac copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0x3d552f76 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x3d3dd35b blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x3d4a0910 __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d6d9f58 sock_recv_errqueue EXPORT_SYMBOL vmlinux 0x3d767a42 add_watch_to_object -EXPORT_SYMBOL vmlinux 0x3d934c53 jbd2_journal_abort EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check EXPORT_SYMBOL vmlinux 0x3d9afd03 clear_bdi_congested EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page -EXPORT_SYMBOL vmlinux 0x3dab4fed __scm_send +EXPORT_SYMBOL vmlinux 0x3da5465b phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x3da8f6c2 blk_rq_init 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 0x3db739ba scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x3db82736 crypto_sha512_update EXPORT_SYMBOL vmlinux 0x3dbed966 component_match_add_release EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data @@ -7507,398 +7391,393 @@ EXPORT_SYMBOL vmlinux 0x3dd3f054 xudma_rchan_get_id EXPORT_SYMBOL vmlinux 0x3dd5d2ff of_graph_get_port_parent EXPORT_SYMBOL vmlinux 0x3dd6693e mipi_dsi_dcs_get_display_brightness EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x3ddfd16c tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x3de020e3 mmc_of_parse EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e2b33da sock_gettstamp +EXPORT_SYMBOL vmlinux 0x3e14b0bb xfrm_init_replay EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule EXPORT_SYMBOL vmlinux 0x3e42e4fc blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x3e4e33f4 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x3e62392c has_capability +EXPORT_SYMBOL vmlinux 0x3e4e7fdb rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x3e5e0b39 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc +EXPORT_SYMBOL vmlinux 0x3e7d8b9d devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x3e96e170 ip_getsockopt EXPORT_SYMBOL vmlinux 0x3e97cea9 pci_ep_cfs_remove_epf_group EXPORT_SYMBOL vmlinux 0x3ea5316e pin_user_pages +EXPORT_SYMBOL vmlinux 0x3ea56e68 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x3ea81b43 filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0x3eac7936 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x3ed5b510 mr_vif_seq_next EXPORT_SYMBOL vmlinux 0x3ed6f75e alloc_mdio_bitbang -EXPORT_SYMBOL vmlinux 0x3ee30de9 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x3ee51798 unmap_mapping_range EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up EXPORT_SYMBOL vmlinux 0x3eee8cca input_allocate_device +EXPORT_SYMBOL vmlinux 0x3efa8097 xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f0f5807 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x3f17bf0b ip_local_deliver +EXPORT_SYMBOL vmlinux 0x3f23a830 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x3f249b3f phy_attached_print EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align EXPORT_SYMBOL vmlinux 0x3f545cad cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0x3f8451ae __register_binfmt +EXPORT_SYMBOL vmlinux 0x3f886111 scsi_host_busy EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f907001 sock_create -EXPORT_SYMBOL vmlinux 0x3f9a46c6 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x3f8c077f nf_log_trace +EXPORT_SYMBOL vmlinux 0x3f9d7b43 ip_route_input_noref EXPORT_SYMBOL vmlinux 0x3fae1614 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x3fbecd48 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fbf7427 ip6_frag_next -EXPORT_SYMBOL vmlinux 0x3fc4c3ef ip_frag_next +EXPORT_SYMBOL vmlinux 0x3fcb85ed jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x3fd6601b of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x3fd6d698 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x3fd6df63 xattr_supported_namespace EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fe20178 netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fe7a818 inet_accept +EXPORT_SYMBOL vmlinux 0x3fedd3d9 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x400f3905 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x401669df vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0x401f985b blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x40580393 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x403a21f8 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x4047f9e6 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x404b9b5a jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x40558289 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x4059e888 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x406dfbc7 kernel_read +EXPORT_SYMBOL vmlinux 0x407af869 skb_dump EXPORT_SYMBOL vmlinux 0x4089ba72 pcie_capability_write_word EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x4098943a neigh_parms_release EXPORT_SYMBOL vmlinux 0x40993d5f mipi_dsi_device_register_full EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40a9d7f7 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x40ae9277 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x40b55f8c phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c9e547 mmc_cqe_request_done EXPORT_SYMBOL vmlinux 0x40cfffa8 scsi_is_host_device EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d3a074 pipe_lock EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x40f02ddc buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x40f0d97c nobh_write_begin -EXPORT_SYMBOL vmlinux 0x40f2b3fd try_to_writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x40f37b03 nla_reserve EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x4107bde7 eth_header_cache -EXPORT_SYMBOL vmlinux 0x41153bab vm_insert_pages -EXPORT_SYMBOL vmlinux 0x411f863a phy_connect_direct +EXPORT_SYMBOL vmlinux 0x41273608 tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x4147e3f6 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue EXPORT_SYMBOL vmlinux 0x41521039 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x41868320 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x4183d2fd scsi_scan_host +EXPORT_SYMBOL vmlinux 0x4183ecc3 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x41841a27 xfrm_lookup EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418bd9a4 vm_insert_page EXPORT_SYMBOL vmlinux 0x418f66b0 input_event -EXPORT_SYMBOL vmlinux 0x4194e46f account_page_redirty -EXPORT_SYMBOL vmlinux 0x41d41ccd kernel_connect -EXPORT_SYMBOL vmlinux 0x41d59925 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x41ade952 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x41d6d154 zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x41de5733 dma_free_attrs -EXPORT_SYMBOL vmlinux 0x41e0e291 phy_device_remove +EXPORT_SYMBOL vmlinux 0x41e1f7af __skb_free_datagram_locked EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes -EXPORT_SYMBOL vmlinux 0x41ee3a8a tcp_gro_complete EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot EXPORT_SYMBOL vmlinux 0x41f28365 tty_port_lower_dtr_rts EXPORT_SYMBOL vmlinux 0x41f70587 clk_get -EXPORT_SYMBOL vmlinux 0x41fb1f74 msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0x4202e6a3 ptp_find_pin EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x4216ad6d vlan_for_each -EXPORT_SYMBOL vmlinux 0x42230842 iterate_fd +EXPORT_SYMBOL vmlinux 0x421a80f8 __set_page_dirty_nobuffers EXPORT_SYMBOL vmlinux 0x42246692 acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x42249f43 xfrm_unregister_type EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len EXPORT_SYMBOL vmlinux 0x423ec8cb pcie_get_mps EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x42493c25 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x4248ed23 close_fd_get_file EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x42846fac pipe_unlock -EXPORT_SYMBOL vmlinux 0x42ad39a7 lookup_one_len +EXPORT_SYMBOL vmlinux 0x4257b1e6 tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42bf4d21 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x42c8a7d9 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x42ceb44e scsi_device_put EXPORT_SYMBOL vmlinux 0x42d61605 jbd2_submit_inode_data -EXPORT_SYMBOL vmlinux 0x42df1ce2 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x42e984c0 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x42d9b415 sock_no_recvmsg EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430545cc crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x430bb653 inet_put_port +EXPORT_SYMBOL vmlinux 0x431d7383 noop_llseek EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate -EXPORT_SYMBOL vmlinux 0x43212d9d netif_skb_features +EXPORT_SYMBOL vmlinux 0x43216efd sock_set_sndtimeo EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid EXPORT_SYMBOL vmlinux 0x435b236b mdio_driver_register -EXPORT_SYMBOL vmlinux 0x4369fb12 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x4372c6e2 __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x4381a8db jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0x43845cf0 tegra_ivc_reset EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x4391b194 __SetPageMovable -EXPORT_SYMBOL vmlinux 0x43995224 inet_release -EXPORT_SYMBOL vmlinux 0x43b9fb58 blk_put_request +EXPORT_SYMBOL vmlinux 0x438c5042 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x439da330 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x43ae961f skb_find_text EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc EXPORT_SYMBOL vmlinux 0x43d4459b pci_request_regions -EXPORT_SYMBOL vmlinux 0x43ebd947 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0x43e98823 tcf_block_get EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x43fa2c88 tcf_em_tree_destroy EXPORT_SYMBOL vmlinux 0x43fdd2b6 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x4400c703 copy_string_kernel -EXPORT_SYMBOL vmlinux 0x44010e6f pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x440216b2 phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x44043d14 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x440ad88e may_umount_tree EXPORT_SYMBOL vmlinux 0x443f13d0 fman_get_revision EXPORT_SYMBOL vmlinux 0x444128c5 pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table EXPORT_SYMBOL vmlinux 0x444bb10e __dquot_alloc_space EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x44749d40 dcb_getapp EXPORT_SYMBOL vmlinux 0x448ad021 fman_get_bmi_max_fifo_size EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44d1b4a8 dcb_ieee_delapp EXPORT_SYMBOL vmlinux 0x44d28a2c rproc_report_crash -EXPORT_SYMBOL vmlinux 0x44d403ce tcp_md5_do_del EXPORT_SYMBOL vmlinux 0x44e9a829 match_token EXPORT_SYMBOL vmlinux 0x45006cee default_red EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id EXPORT_SYMBOL vmlinux 0x4514f9b7 pci_enable_device +EXPORT_SYMBOL vmlinux 0x4521dc43 inet_ioctl EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled EXPORT_SYMBOL vmlinux 0x453df1fd sync_blockdev -EXPORT_SYMBOL vmlinux 0x45426135 __cancel_dirty_page EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x4554ef97 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x457498b0 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user EXPORT_SYMBOL vmlinux 0x458a682d generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0x45ad81c0 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x45cc36d9 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x45dc5034 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x45df019d set_page_dirty +EXPORT_SYMBOL vmlinux 0x4594c9da __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x459edebd __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0x45e01450 tegra_ivc_init EXPORT_SYMBOL vmlinux 0x45e18f06 simple_write_begin +EXPORT_SYMBOL vmlinux 0x45f5b461 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x45f8eea9 eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys EXPORT_SYMBOL vmlinux 0x4611cc4c pci_bus_write_config_dword EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x4635b126 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x46400983 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x46300fc3 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x4632bc84 phy_device_register EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x4660adf3 skb_recv_datagram EXPORT_SYMBOL vmlinux 0x466c14a7 __delay EXPORT_SYMBOL vmlinux 0x466c965e rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0x4671bad7 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x46765ec6 try_to_writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x469b2b3b lock_sock_nested EXPORT_SYMBOL vmlinux 0x46a183d7 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x46a4c4c4 xfrm_stateonly_find EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46dae2d5 mmc_is_req_done EXPORT_SYMBOL vmlinux 0x46de1338 bioset_init_from_src -EXPORT_SYMBOL vmlinux 0x46fe5c3b locks_remove_posix EXPORT_SYMBOL vmlinux 0x46ff7d12 qcom_scm_iommu_secure_ptbl_size EXPORT_SYMBOL vmlinux 0x47050ae5 of_find_i2c_device_by_node EXPORT_SYMBOL vmlinux 0x470612dc fman_port_get_qman_channel_id EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset EXPORT_SYMBOL vmlinux 0x470c3ee7 blk_post_runtime_suspend EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x4717d605 xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0x471dfd13 set_bdi_congested -EXPORT_SYMBOL vmlinux 0x47237a94 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x4728505c jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x473b1b48 km_query -EXPORT_SYMBOL vmlinux 0x473b457b inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x47438e44 netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0x4744dbc9 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x471ea6d6 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x473b2119 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x475541c3 __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom +EXPORT_SYMBOL vmlinux 0x4760357b mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x47615840 dev_addr_del EXPORT_SYMBOL vmlinux 0x47680031 amba_find_device EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x4775dbcb mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x4777efc7 mmc_can_gpio_cd EXPORT_SYMBOL vmlinux 0x47838da5 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x478f3b04 inet_addr_type EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x479ab66b file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x479d0fa7 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x47ab1268 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x47bd9291 netdev_emerg 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 0x47ee101f sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x47fab0e0 __inet_hash EXPORT_SYMBOL vmlinux 0x47fcb9de input_mt_report_finger_count EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481c5825 inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0x4829a47e memcpy EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x482f4d1e udplite_prot EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4846745e dump_skip EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 EXPORT_SYMBOL vmlinux 0x4851a645 amba_release_regions -EXPORT_SYMBOL vmlinux 0x4857d966 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x4856050d security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days EXPORT_SYMBOL vmlinux 0x485a113c blk_queue_update_dma_alignment EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc EXPORT_SYMBOL vmlinux 0x486bd683 md_finish_reshape -EXPORT_SYMBOL vmlinux 0x4879fbd5 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x4874d6bd __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x48912daa msm_pinctrl_remove EXPORT_SYMBOL vmlinux 0x489eda10 memset32 EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x48e0fa12 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x48e3a193 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x48dc4076 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x48f3c358 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x490e8c3d phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0x491e353d is_acpi_data_node -EXPORT_SYMBOL vmlinux 0x49240c79 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x492716ca skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x492c277e neigh_lookup -EXPORT_SYMBOL vmlinux 0x492e2eae devm_devfreq_add_device EXPORT_SYMBOL vmlinux 0x494517d8 blkdev_get_by_dev EXPORT_SYMBOL vmlinux 0x49509c19 key_alloc EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x4956b2da disk_end_io_acct -EXPORT_SYMBOL vmlinux 0x495ab395 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x4957f090 ip6_err_gen_icmpv6_unreach EXPORT_SYMBOL vmlinux 0x495ec077 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x495f673e blk_put_request EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x496a08cb register_console -EXPORT_SYMBOL vmlinux 0x496ed770 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x498dbfa6 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x4972d1d6 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x4972d4d6 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x49758c1d sock_kfree_s +EXPORT_SYMBOL vmlinux 0x4977c6b9 i2c_transfer EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum EXPORT_SYMBOL vmlinux 0x49a37aba configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x49af2e27 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49c5a46e xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0x49d83428 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x49f95708 mntget -EXPORT_SYMBOL vmlinux 0x49fe3689 put_fs_context -EXPORT_SYMBOL vmlinux 0x4a035595 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x49e7cb23 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x4a028280 genphy_read_status_fixed EXPORT_SYMBOL vmlinux 0x4a0f7461 set_nlink EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a4158a5 generic_setlease +EXPORT_SYMBOL vmlinux 0x4a492cde jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x4a538f8d rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0x4a606d86 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x4a7169d8 security_unix_may_send -EXPORT_SYMBOL vmlinux 0x4a7d72aa netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x4a61d408 of_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x4a7fefdd pps_lookup_dev EXPORT_SYMBOL vmlinux 0x4a84a476 pci_write_config_byte EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free +EXPORT_SYMBOL vmlinux 0x4a952803 iter_file_splice_write EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4a979d5c i2c_add_adapter EXPORT_SYMBOL vmlinux 0x4a99f328 pm860x_set_bits EXPORT_SYMBOL vmlinux 0x4aa564e5 param_ops_long -EXPORT_SYMBOL vmlinux 0x4aa851e7 mark_buffer_write_io_error EXPORT_SYMBOL vmlinux 0x4ad3ec20 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x4adcf4de inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0x4ae01070 of_find_backlight_by_node EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue EXPORT_SYMBOL vmlinux 0x4afc4f64 to_nd_btt -EXPORT_SYMBOL vmlinux 0x4aff649f vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x4b012a66 cpufreq_get_policy EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities -EXPORT_SYMBOL vmlinux 0x4b0b4e57 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x4b0d773f devfreq_update_status -EXPORT_SYMBOL vmlinux 0x4b209c6b nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x4b28094a unlock_page_memcg -EXPORT_SYMBOL vmlinux 0x4b2a5778 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x4b2f3c06 skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0x4b41890e amba_device_unregister -EXPORT_SYMBOL vmlinux 0x4b4dce3c sock_rfree -EXPORT_SYMBOL vmlinux 0x4b5fc518 vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback EXPORT_SYMBOL vmlinux 0x4b673363 get_user_pages_unlocked EXPORT_SYMBOL vmlinux 0x4b6c9913 debugfs_create_automount EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg EXPORT_SYMBOL vmlinux 0x4b8eaaf8 __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0x4ba56608 iput -EXPORT_SYMBOL vmlinux 0x4baaee20 tcp_connect -EXPORT_SYMBOL vmlinux 0x4bae8469 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x4bbdd9dc napi_enable +EXPORT_SYMBOL vmlinux 0x4bc75256 xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bee36a9 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x4bd08b96 phy_stop EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid -EXPORT_SYMBOL vmlinux 0x4bf7f07d ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c119004 udp6_set_csum EXPORT_SYMBOL vmlinux 0x4c2164d9 __register_nls +EXPORT_SYMBOL vmlinux 0x4c26ab49 napi_schedule_prep EXPORT_SYMBOL vmlinux 0x4c286ed9 dm_table_get_mode EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c3aa20b tcp_seq_stop EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c4570ba __neigh_event_send -EXPORT_SYMBOL vmlinux 0x4c45e907 netlink_capable +EXPORT_SYMBOL vmlinux 0x4c506098 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x4c538ddc netdev_crit EXPORT_SYMBOL vmlinux 0x4c6abbde __d_drop EXPORT_SYMBOL vmlinux 0x4c6df894 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x4c75e4eb register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x4c7702e6 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x4c9555af genphy_loopback -EXPORT_SYMBOL vmlinux 0x4c9dae08 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x4c9db375 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x4c900f19 phy_do_ioctl EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cd67210 kernel_accept +EXPORT_SYMBOL vmlinux 0x4cdd7488 tcp_rcv_established EXPORT_SYMBOL vmlinux 0x4cedd601 dm_table_event -EXPORT_SYMBOL vmlinux 0x4cf71713 lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0x4d0bd703 fman_set_mac_active_pause +EXPORT_SYMBOL vmlinux 0x4d05f4c6 udp6_csum_init EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d28d49d ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x4d199c10 tso_build_data EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info EXPORT_SYMBOL vmlinux 0x4d3a7cef pci_write_config_word EXPORT_SYMBOL vmlinux 0x4d40eac4 of_match_node -EXPORT_SYMBOL vmlinux 0x4d55626b netlink_kernel_release EXPORT_SYMBOL vmlinux 0x4d55ea76 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x4d5fd2ba scsi_report_opcode EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic EXPORT_SYMBOL vmlinux 0x4d924f20 memremap EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da110bc neigh_sysctl_register EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq -EXPORT_SYMBOL vmlinux 0x4dacd88f xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x4db46a62 pci_get_domain_bus_and_slot EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x4dd7e0a2 sock_set_mark EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0x4ded3abb inet_del_offload EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock +EXPORT_SYMBOL vmlinux 0x4e03dab1 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x4e1bbf18 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x4e1eb8f0 kernel_getpeername EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set EXPORT_SYMBOL vmlinux 0x4e2d1f6c elv_rb_add EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl +EXPORT_SYMBOL vmlinux 0x4e2fd654 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x4e326222 release_pages EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e35ceb5 i2c_smbus_write_i2c_block_data EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller EXPORT_SYMBOL vmlinux 0x4e54bf0d tty_port_init -EXPORT_SYMBOL vmlinux 0x4e579dbe brioctl_set -EXPORT_SYMBOL vmlinux 0x4e5d6784 inet6_del_offload EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e3aa5 rproc_boot EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e6f53b4 vme_bus_error_handler EXPORT_SYMBOL vmlinux 0x4e70f530 param_set_byte -EXPORT_SYMBOL vmlinux 0x4e811281 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x4e9e2a4d udp_seq_ops +EXPORT_SYMBOL vmlinux 0x4e74ec30 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x4e772514 security_sctp_bind_connect EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ea3e6d3 vme_slot_num EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4ebe022f neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x4ec32dbd skb_recv_datagram EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 EXPORT_SYMBOL vmlinux 0x4ecc499f cdrom_open +EXPORT_SYMBOL vmlinux 0x4ece6f07 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x4ede52b3 netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0x4edfbf1d in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x4ee91bc2 security_sock_graft +EXPORT_SYMBOL vmlinux 0x4f0caf39 page_symlink EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f205bf4 xp_raw_get_dma EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f2a055d poll_initwait -EXPORT_SYMBOL vmlinux 0x4f2f2fb3 arp_create EXPORT_SYMBOL vmlinux 0x4f3b5d9b handle_edge_irq EXPORT_SYMBOL vmlinux 0x4f497b78 input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0x4f50e0f4 pci_irq_get_affinity EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder EXPORT_SYMBOL vmlinux 0x4f7dd294 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x4f8654f8 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x4f95ec50 arp_send +EXPORT_SYMBOL vmlinux 0x4fa2e073 ip_fraglist_init EXPORT_SYMBOL vmlinux 0x4fb24ffd vc_cons EXPORT_SYMBOL vmlinux 0x4fbef1ff page_mapped -EXPORT_SYMBOL vmlinux 0x4fc4746b sock_no_accept -EXPORT_SYMBOL vmlinux 0x4fdc71ca dump_align -EXPORT_SYMBOL vmlinux 0x4ff7af5b ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x4fd25f7d filp_open +EXPORT_SYMBOL vmlinux 0x4fdfbc7b vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x4fecb39b skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree EXPORT_SYMBOL vmlinux 0x5003f73d config_group_init EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x50160d7e __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x50196410 netdev_features_change EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x5050267f migrate_page -EXPORT_SYMBOL vmlinux 0x50533940 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x5030d81a clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x50350924 vme_bus_num +EXPORT_SYMBOL vmlinux 0x503ae106 mntget EXPORT_SYMBOL vmlinux 0x505a0198 edac_mc_find EXPORT_SYMBOL vmlinux 0x50624917 sha1_init -EXPORT_SYMBOL vmlinux 0x50651c70 genl_register_family +EXPORT_SYMBOL vmlinux 0x5062f0b4 end_buffer_async_write EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x50773ced release_sock EXPORT_SYMBOL vmlinux 0x50790237 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x507ebbf2 mount_subtree -EXPORT_SYMBOL vmlinux 0x5082bee5 tcp_sock_set_keepintvl EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x509c2825 udp_prot EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist EXPORT_SYMBOL vmlinux 0x50b73101 da903x_query_status EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type @@ -7909,85 +7788,77 @@ EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf EXPORT_SYMBOL vmlinux 0x50d25d33 textsearch_find_continuous EXPORT_SYMBOL vmlinux 0x50db7fda simple_transaction_get -EXPORT_SYMBOL vmlinux 0x50f51242 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x50f37f4e tcp_md5_hash_skb_data EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x51307a7b __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x513693af skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x510414f7 has_capability +EXPORT_SYMBOL vmlinux 0x511b8904 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x51209ac5 mdio_find_bus EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x5168a281 key_link +EXPORT_SYMBOL vmlinux 0x517b942d phy_support_asym_pause EXPORT_SYMBOL vmlinux 0x5189c580 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x5199b582 sock_no_connect +EXPORT_SYMBOL vmlinux 0x51ace1f9 sock_set_keepalive EXPORT_SYMBOL vmlinux 0x51b40718 trace_seq_hex_dump EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d47268 vfs_mkobj -EXPORT_SYMBOL vmlinux 0x51ec0b1c skb_ensure_writable EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x52009e22 tcf_block_get_ext EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x520f615b __lock_buffer -EXPORT_SYMBOL vmlinux 0x521b5595 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x5207c133 put_devmap_managed_page EXPORT_SYMBOL vmlinux 0x521dd673 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x523006d8 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x52575019 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x5245b3a3 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x52476f34 kernel_sock_shutdown EXPORT_SYMBOL vmlinux 0x526ad07d param_ops_ulong EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack EXPORT_SYMBOL vmlinux 0x527a4d02 sunxi_sram_release EXPORT_SYMBOL vmlinux 0x528dd0ac textsearch_register -EXPORT_SYMBOL vmlinux 0x528e154b jbd2_journal_invalidatepage EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52a377f6 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x52aeb64b tcp_init_sock EXPORT_SYMBOL vmlinux 0x52c20029 page_pool_put_page_bulk EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init EXPORT_SYMBOL vmlinux 0x52d752b9 validate_slab_cache EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x52e02b77 skb_dump +EXPORT_SYMBOL vmlinux 0x52dedabb sock_edemux EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start EXPORT_SYMBOL vmlinux 0x52f34f03 pm860x_page_bulk_read EXPORT_SYMBOL vmlinux 0x52f4aea3 is_acpi_device_node -EXPORT_SYMBOL vmlinux 0x53093375 netdev_lower_dev_get_private EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x5330aa59 free_buffer_head EXPORT_SYMBOL vmlinux 0x533206b5 sort_r EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x533a5aef netlink_ack -EXPORT_SYMBOL vmlinux 0x535bd247 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x535beaaa register_shrinker +EXPORT_SYMBOL vmlinux 0x533cef14 dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0x535d2f61 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x53695c3a generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0x536c3284 fsl_ifc_ctrl_dev EXPORT_SYMBOL vmlinux 0x538d6c8a fman_get_qman_channel_id EXPORT_SYMBOL vmlinux 0x53921462 pci_free_irq_vectors EXPORT_SYMBOL vmlinux 0x5399ef91 uart_register_driver +EXPORT_SYMBOL vmlinux 0x53a3d5b7 tcf_get_next_proto EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53c6e741 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x53d0e733 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x53c0b758 scsi_host_put EXPORT_SYMBOL vmlinux 0x53dae230 iov_iter_gap_alignment EXPORT_SYMBOL vmlinux 0x53e50ffa first_ec EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align -EXPORT_SYMBOL vmlinux 0x53f29334 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x53f2bb09 scsi_track_queue_full EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x53fb2313 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x540107a1 tcp_mmap EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair +EXPORT_SYMBOL vmlinux 0x5407b909 generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0x540c4a26 tty_register_device -EXPORT_SYMBOL vmlinux 0x5418ba11 proto_register +EXPORT_SYMBOL vmlinux 0x542b51f0 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x542fd8c7 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x54386aad tcf_exts_terse_dump EXPORT_SYMBOL vmlinux 0x5439d628 devm_nvmem_cell_put EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54489d45 gro_cells_receive -EXPORT_SYMBOL vmlinux 0x5449382f module_layout -EXPORT_SYMBOL vmlinux 0x544d77ed ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x54534c2a neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x547e72be ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x548408af __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x54887ddf tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x54a21bbd scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x546bb6b0 nobh_write_end +EXPORT_SYMBOL vmlinux 0x54702ddf jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x548c8fb5 xfrm_state_free EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value -EXPORT_SYMBOL vmlinux 0x54b50931 skb_eth_pop EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x54d1c2c2 sock_alloc +EXPORT_SYMBOL vmlinux 0x54d65a6c scm_fp_dup EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp EXPORT_SYMBOL vmlinux 0x54e8de45 inode_init_owner EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags @@ -7995,151 +7866,150 @@ EXPORT_SYMBOL vmlinux 0x54f3e62c param_set_bool EXPORT_SYMBOL vmlinux 0x54f4eeb0 from_kprojid EXPORT_SYMBOL vmlinux 0x54fb86e0 ilookup EXPORT_SYMBOL vmlinux 0x5505606d is_nd_btt +EXPORT_SYMBOL vmlinux 0x5505d0dc xfrm_unregister_type EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire EXPORT_SYMBOL vmlinux 0x550f7588 __pci_register_driver EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x55220697 jbd2_journal_lock_updates EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested -EXPORT_SYMBOL vmlinux 0x552e67da netlink_set_err -EXPORT_SYMBOL vmlinux 0x5548127d mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x552dc360 skb_put EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x55587887 audit_log_start EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x556f0991 __pskb_pull_tail EXPORT_SYMBOL vmlinux 0x557a4eeb n_tty_ioctl_helper EXPORT_SYMBOL vmlinux 0x55819417 misc_register EXPORT_SYMBOL vmlinux 0x55837773 mipi_dsi_dcs_write_buffer EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x559805ed skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0x55bebd03 param_set_short -EXPORT_SYMBOL vmlinux 0x55d37905 inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 EXPORT_SYMBOL vmlinux 0x55e5eed4 imx_scu_enable_general_irq_channel EXPORT_SYMBOL vmlinux 0x55e91bf9 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x55f3b027 of_mdiobus_child_is_phy EXPORT_SYMBOL vmlinux 0x560ce937 param_set_copystring EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh -EXPORT_SYMBOL vmlinux 0x561707f5 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x561db533 genphy_update_link -EXPORT_SYMBOL vmlinux 0x5629ac31 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x56357e06 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x56263e86 mdiobus_write EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563e2e47 xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0x564384c3 config_item_set_name EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register -EXPORT_SYMBOL vmlinux 0x565800a3 mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x565c77bd phy_driver_register +EXPORT_SYMBOL vmlinux 0x565c761e phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x56665245 mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0x5671db6c uart_write_wakeup EXPORT_SYMBOL vmlinux 0x56732f3d pci_get_slot EXPORT_SYMBOL vmlinux 0x5677ebc0 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x567a00cc netif_receive_skb EXPORT_SYMBOL vmlinux 0x567d8e79 mipi_dsi_dcs_set_pixel_format EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x569d898f netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x56ae81cc skb_append -EXPORT_SYMBOL vmlinux 0x56b819c8 msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0x56bb15a9 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x56bb4a01 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x56a2db18 i2c_verify_adapter EXPORT_SYMBOL vmlinux 0x56c2f39f acpi_processor_notify_smm EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x56c4f4a6 mmc_free_host -EXPORT_SYMBOL vmlinux 0x56c6d32a __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56e337f8 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x56e375c4 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x5722863a security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x57245b14 xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x57251f35 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x57376105 register_netdev +EXPORT_SYMBOL vmlinux 0x573103b0 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x573a4f63 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x573d0de1 neigh_xmit EXPORT_SYMBOL vmlinux 0x57430ca3 set_disk_ro EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x5751e9b1 devfreq_remove_device EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575e74fe flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 EXPORT_SYMBOL vmlinux 0x57787e11 find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0x577a2d05 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x577930cb unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx +EXPORT_SYMBOL vmlinux 0x578ee35d fddi_type_trans +EXPORT_SYMBOL vmlinux 0x578faf86 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x578ff573 tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy EXPORT_SYMBOL vmlinux 0x57957d47 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x57ab24ee vme_master_request EXPORT_SYMBOL vmlinux 0x57baacc8 blk_mq_run_hw_queues EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write EXPORT_SYMBOL vmlinux 0x57d221bc generic_read_dir +EXPORT_SYMBOL vmlinux 0x57d9bb85 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x57dfe26f kill_pid +EXPORT_SYMBOL vmlinux 0x57f2f112 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x57f300bd wait_for_key_construction EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info EXPORT_SYMBOL vmlinux 0x57fd7a10 clkdev_drop +EXPORT_SYMBOL vmlinux 0x5802f000 seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put +EXPORT_SYMBOL vmlinux 0x58275c3a gnet_stats_finish_copy EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb EXPORT_SYMBOL vmlinux 0x582d1da0 nd_device_notify EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583fcb27 stream_open +EXPORT_SYMBOL vmlinux 0x5842d869 ppp_input_error +EXPORT_SYMBOL vmlinux 0x58597b6c qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic -EXPORT_SYMBOL vmlinux 0x58614d91 locks_free_lock +EXPORT_SYMBOL vmlinux 0x5860dba9 __register_binfmt +EXPORT_SYMBOL vmlinux 0x586501aa netdev_err +EXPORT_SYMBOL vmlinux 0x586895d6 dev_add_offload EXPORT_SYMBOL vmlinux 0x586f4b2f tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc EXPORT_SYMBOL vmlinux 0x587d172d input_set_min_poll_interval EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x58829aeb dev_queue_xmit_accel EXPORT_SYMBOL vmlinux 0x58992fbc vfs_get_super EXPORT_SYMBOL vmlinux 0x589aa1c4 fman_port_get_device EXPORT_SYMBOL vmlinux 0x58a78a4c dcache_dir_open EXPORT_SYMBOL vmlinux 0x58aa0dd0 pci_release_regions EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58af3b6f dev_get_phys_port_id EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b473ed fc_mount +EXPORT_SYMBOL vmlinux 0x58b6587d mmc_retune_unpause EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58d3f3e0 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x58c34024 mdiobus_read +EXPORT_SYMBOL vmlinux 0x58cb95ab mmc_cqe_request_done EXPORT_SYMBOL vmlinux 0x58d6645d __serio_register_port EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58f1f323 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x58f722ce neigh_destroy -EXPORT_SYMBOL vmlinux 0x58fb5fa0 scsi_device_quiesce EXPORT_SYMBOL vmlinux 0x590136c0 bio_devname +EXPORT_SYMBOL vmlinux 0x5909fab6 __page_cache_alloc EXPORT_SYMBOL vmlinux 0x590f75fd kernel_param_lock -EXPORT_SYMBOL vmlinux 0x5912c387 phy_attach -EXPORT_SYMBOL vmlinux 0x5916bd8e qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x59175932 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x59227a8a blk_cleanup_queue EXPORT_SYMBOL vmlinux 0x5932bd09 input_mt_get_slot_by_key EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq EXPORT_SYMBOL vmlinux 0x59524f15 __frontswap_test EXPORT_SYMBOL vmlinux 0x595bbd35 pcie_set_mps EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack EXPORT_SYMBOL vmlinux 0x5980f647 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x59840531 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x5984d001 security_inode_copy_up EXPORT_SYMBOL vmlinux 0x5988942e md_bitmap_unplug EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node EXPORT_SYMBOL vmlinux 0x59a2f0ee packing EXPORT_SYMBOL vmlinux 0x59adf78e bio_integrity_add_page EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59bb1997 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x59c9e79b console_start -EXPORT_SYMBOL vmlinux 0x59ca4621 rtnl_notify EXPORT_SYMBOL vmlinux 0x59efa07a set_blocksize +EXPORT_SYMBOL vmlinux 0x5a0339cd put_cmsg_scm_timestamping EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 EXPORT_SYMBOL vmlinux 0x5a1a6471 simple_setattr -EXPORT_SYMBOL vmlinux 0x5a20364f udp_prot -EXPORT_SYMBOL vmlinux 0x5a28cb9f mntput +EXPORT_SYMBOL vmlinux 0x5a22957d inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a339f42 fifo_create_dflt EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 -EXPORT_SYMBOL vmlinux 0x5a7dbbeb vme_irq_generate -EXPORT_SYMBOL vmlinux 0x5a8262f9 i2c_transfer EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a921f3a phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0x5a956b5b empty_zero_page EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5aa13240 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x5aac19af __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x5ab27913 skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0x5ad1b355 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x5aa516bb mdiobus_scan +EXPORT_SYMBOL vmlinux 0x5ab8fc19 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x5ac94173 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x5acac1cf xp_dma_unmap EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5aea5a18 netif_rx_any_context -EXPORT_SYMBOL vmlinux 0x5affd692 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x5ae91457 get_phy_device +EXPORT_SYMBOL vmlinux 0x5af8adcc fget_raw EXPORT_SYMBOL vmlinux 0x5b069842 vga_put +EXPORT_SYMBOL vmlinux 0x5b12ec64 d_path EXPORT_SYMBOL vmlinux 0x5b16aa76 input_match_device_id -EXPORT_SYMBOL vmlinux 0x5b16c569 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x5b27726e tcp_setsockopt EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store @@ -8147,33 +8017,32 @@ EXPORT_SYMBOL vmlinux 0x5b425531 simple_release_fs EXPORT_SYMBOL vmlinux 0x5b493289 simple_dir_operations EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b6592e8 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x5b7d6a6b skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x5b921cf9 fib_notifier_ops_register EXPORT_SYMBOL vmlinux 0x5ba07e69 disk_stack_limits EXPORT_SYMBOL vmlinux 0x5ba99ee5 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x5bafcadd netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0x5bb37e5c tty_name EXPORT_SYMBOL vmlinux 0x5bc7171e simple_unlink EXPORT_SYMBOL vmlinux 0x5bcdafde file_remove_privs EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5bd5cc45 sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0x5bd6a6fa sg_miter_skip +EXPORT_SYMBOL vmlinux 0x5be08dff genphy_suspend +EXPORT_SYMBOL vmlinux 0x5be5eaa4 sock_wmalloc EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5c0da4c1 mmc_of_parse_voltage EXPORT_SYMBOL vmlinux 0x5c15aeb0 tty_write_room EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c2a226c page_symlink -EXPORT_SYMBOL vmlinux 0x5c2a701d unlock_rename EXPORT_SYMBOL vmlinux 0x5c37020d pci_unregister_driver EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull EXPORT_SYMBOL vmlinux 0x5c55cc02 pci_ep_cfs_add_epf_group EXPORT_SYMBOL vmlinux 0x5c681b6a blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0x5c758cbb xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x5c7634a8 path_put +EXPORT_SYMBOL vmlinux 0x5c6949ae vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x5c6ce1e9 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x5c7514e1 done_path_create +EXPORT_SYMBOL vmlinux 0x5c757f8a flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0x5c7f4cbd devm_kvasprintf EXPORT_SYMBOL vmlinux 0x5cb7350f __register_chrdev -EXPORT_SYMBOL vmlinux 0x5cd3cb08 init_task EXPORT_SYMBOL vmlinux 0x5ce60880 bdevname +EXPORT_SYMBOL vmlinux 0x5ceeb312 scsi_host_get +EXPORT_SYMBOL vmlinux 0x5cef0f33 tcf_em_unregister EXPORT_SYMBOL vmlinux 0x5cf3e6dc devm_ioremap_resource EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state @@ -8181,95 +8050,90 @@ EXPORT_SYMBOL vmlinux 0x5d00f1b5 mdio_device_register EXPORT_SYMBOL vmlinux 0x5d0da80a mipi_dsi_driver_register_full EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio EXPORT_SYMBOL vmlinux 0x5d141b3b pci_find_capability +EXPORT_SYMBOL vmlinux 0x5d1ba6e0 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x5d261406 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x5d3b0c81 inet_frags_init EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d561382 dst_discard_out -EXPORT_SYMBOL vmlinux 0x5d7876f3 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x5d7ae70d __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x5d7cd33d crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x5da78a79 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x5d7d6b77 security_inode_init_security EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh -EXPORT_SYMBOL vmlinux 0x5db5234d neigh_seq_next -EXPORT_SYMBOL vmlinux 0x5db84320 fqdir_init +EXPORT_SYMBOL vmlinux 0x5db904ea register_console +EXPORT_SYMBOL vmlinux 0x5dbac215 mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0x5dc4c0f0 pci_iomap -EXPORT_SYMBOL vmlinux 0x5dedc558 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x5dc5c04a _dev_notice +EXPORT_SYMBOL vmlinux 0x5dda1df0 lookup_one_len +EXPORT_SYMBOL vmlinux 0x5deb9d18 __lock_page +EXPORT_SYMBOL vmlinux 0x5defe686 mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0x5df04481 single_open -EXPORT_SYMBOL vmlinux 0x5dffabde phy_register_fixup +EXPORT_SYMBOL vmlinux 0x5df2c038 km_report +EXPORT_SYMBOL vmlinux 0x5dfe4369 i2c_transfer_buffer_flags EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0x5e093fe6 tcp_enter_cwr EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e0db225 gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0x5e107998 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x5e2a81c4 flow_rule_match_enc_opts EXPORT_SYMBOL vmlinux 0x5e2d49d1 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x5e2da096 sock_no_linger -EXPORT_SYMBOL vmlinux 0x5e300e61 udp_gro_receive EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e3dde2a vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x5e3ebfd5 gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0x5e578327 input_register_device EXPORT_SYMBOL vmlinux 0x5e670812 of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0x5e6eb8db d_path EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping EXPORT_SYMBOL vmlinux 0x5e7d984c jbd2_wait_inode_data EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x5e85873a shmem_aops EXPORT_SYMBOL vmlinux 0x5e8bd047 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x5e8c464e add_to_page_cache_locked EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask EXPORT_SYMBOL vmlinux 0x5e95c45d rproc_coredump_using_sections EXPORT_SYMBOL vmlinux 0x5e9902be blk_mq_start_hw_queues EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5eb677de rtnl_create_link EXPORT_SYMBOL vmlinux 0x5ec08734 devm_ioport_map -EXPORT_SYMBOL vmlinux 0x5ec32513 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x5ec3536e tso_start EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr EXPORT_SYMBOL vmlinux 0x5ecd83da iov_iter_advance EXPORT_SYMBOL vmlinux 0x5ecdb7d3 key_validate EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5edfd5b7 xfrm_unregister_km EXPORT_SYMBOL vmlinux 0x5ef01eab dquot_set_dqinfo EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x5ef7d484 _dev_crit +EXPORT_SYMBOL vmlinux 0x5efae786 xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax EXPORT_SYMBOL vmlinux 0x5f05e7d9 __fs_parse EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0da79d dev_trans_start +EXPORT_SYMBOL vmlinux 0x5f25d180 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x5f4ea8af softnet_data EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f55f1a0 fiemap_prep EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f6bc3ba jbd2_journal_set_features EXPORT_SYMBOL vmlinux 0x5f6e72e7 pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x5f78f334 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x5f7bed60 inet6_bind +EXPORT_SYMBOL vmlinux 0x5f7f5ea1 ip_frag_next EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f942634 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0x5f9aa8f7 udp_seq_stop -EXPORT_SYMBOL vmlinux 0x5fa05afa skb_flow_dissect_meta EXPORT_SYMBOL vmlinux 0x5faeb48a __mod_zone_page_state EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact EXPORT_SYMBOL vmlinux 0x5fd01784 of_find_node_by_name EXPORT_SYMBOL vmlinux 0x5fd1672f do_SAK -EXPORT_SYMBOL vmlinux 0x5fe02374 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x5ff4c215 put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x5ff51c5c filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x5fd687b6 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x5fe7edae tcp_parse_options EXPORT_SYMBOL vmlinux 0x5ff890db tty_port_close_end EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x5ffda680 tcp_v4_connect EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x60122ca7 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x600cdd6b vme_dma_request +EXPORT_SYMBOL vmlinux 0x600f9314 ip6_frag_init EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create EXPORT_SYMBOL vmlinux 0x602042df mdiobb_write -EXPORT_SYMBOL vmlinux 0x602e5b15 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x60233b0c path_is_under EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x604458e9 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x603e2888 mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0x604caf9c blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x6052aa6b fget_raw EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent EXPORT_SYMBOL vmlinux 0x605d0d8c param_set_uint -EXPORT_SYMBOL vmlinux 0x6063f15e __pagevec_release -EXPORT_SYMBOL vmlinux 0x6074d61f nf_log_set -EXPORT_SYMBOL vmlinux 0x6085f66a generic_write_checks +EXPORT_SYMBOL vmlinux 0x607fca3f phy_print_status EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton @@ -8277,223 +8141,204 @@ EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add EXPORT_SYMBOL vmlinux 0x60abf92e mipi_dsi_set_maximum_return_packet_size EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x60b47719 tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0x60b9d68b vfs_iter_write -EXPORT_SYMBOL vmlinux 0x60d007e0 neigh_table_init +EXPORT_SYMBOL vmlinux 0x60ca9343 neigh_update EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60e14a78 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x60dec227 module_refcount EXPORT_SYMBOL vmlinux 0x60e79cfa bioset_init -EXPORT_SYMBOL vmlinux 0x60ea64a3 phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0x60fafa49 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x60fe6b62 inode_add_bytes EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit EXPORT_SYMBOL vmlinux 0x6130a493 __blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x614b057a devfreq_monitor_start EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x615ab299 genphy_setup_forced EXPORT_SYMBOL vmlinux 0x615ace3c blk_set_queue_depth EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x61690a93 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x61765fff sock_common_getsockopt EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0x61835284 bdi_set_max_ratio EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0x618911fc numa_node EXPORT_SYMBOL vmlinux 0x618ecf4c pnp_get_resource EXPORT_SYMBOL vmlinux 0x61954fd2 dma_unmap_sg_attrs EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61a4b933 vme_dma_request -EXPORT_SYMBOL vmlinux 0x61a9b96f qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x61ac4d47 tcf_register_action -EXPORT_SYMBOL vmlinux 0x61b5e5b7 no_llseek EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61bd4866 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x61c1257c xfrm_replay_seqhi EXPORT_SYMBOL vmlinux 0x61cc1b61 pnp_is_active EXPORT_SYMBOL vmlinux 0x61e06163 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x61e2159a secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61ee5de3 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x61ead194 jbd2_journal_invalidatepage EXPORT_SYMBOL vmlinux 0x62056f29 mpage_readpage EXPORT_SYMBOL vmlinux 0x6207e187 seq_read_iter -EXPORT_SYMBOL vmlinux 0x62086ef8 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x620e3ea3 scsi_device_quiesce EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x6214d329 md_bitmap_end_sync EXPORT_SYMBOL vmlinux 0x62186fb1 rtc_add_group +EXPORT_SYMBOL vmlinux 0x6224dc73 __netlink_ns_capable EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62348ec1 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x62483f17 xp_alloc +EXPORT_SYMBOL vmlinux 0x62451af2 dev_queue_xmit EXPORT_SYMBOL vmlinux 0x624aa681 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x625379d2 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x625c9f0f skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x624b0cc8 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x625ba5d2 skb_push EXPORT_SYMBOL vmlinux 0x6271a949 cdrom_check_events EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x6281c11e netif_device_attach +EXPORT_SYMBOL vmlinux 0x6276ab2c reuseport_attach_prog EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name EXPORT_SYMBOL vmlinux 0x628a8980 put_watch_queue EXPORT_SYMBOL vmlinux 0x628e058c inode_owner_or_capable EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x62ba7c27 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x62bb0335 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x62993d09 dev_pick_tx_cpu_id EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin EXPORT_SYMBOL vmlinux 0x62c7a4f6 devm_release_resource -EXPORT_SYMBOL vmlinux 0x62c91d67 ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0x62cae9d0 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x62ce3772 blk_sync_queue EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal +EXPORT_SYMBOL vmlinux 0x62dbb924 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x62e61a5e inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0x62e7233c _copy_to_iter EXPORT_SYMBOL vmlinux 0x62e72a1e tty_register_driver EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable EXPORT_SYMBOL vmlinux 0x6304b6c8 kobject_set_name +EXPORT_SYMBOL vmlinux 0x630a0778 jbd2_journal_inode_ranged_write EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put EXPORT_SYMBOL vmlinux 0x63221857 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x634ef668 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x632ce9db migrate_page +EXPORT_SYMBOL vmlinux 0x6342f0e3 tcp_seq_next EXPORT_SYMBOL vmlinux 0x6359d138 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x635b52e5 unregister_console +EXPORT_SYMBOL vmlinux 0x6360f5e0 sock_common_setsockopt EXPORT_SYMBOL vmlinux 0x63630dcc d_prune_aliases -EXPORT_SYMBOL vmlinux 0x637a7aac xp_free EXPORT_SYMBOL vmlinux 0x638d9b89 pci_select_bars EXPORT_SYMBOL vmlinux 0x638dacc9 pci_disable_msi EXPORT_SYMBOL vmlinux 0x6390a3b0 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x63a10543 try_module_get EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight EXPORT_SYMBOL vmlinux 0x63d18f58 param_ops_uint EXPORT_SYMBOL vmlinux 0x63d76825 md_flush_request -EXPORT_SYMBOL vmlinux 0x63e48c53 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x63e2dbcb mmc_run_bkops EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f11e89 vfs_parse_fs_param_source EXPORT_SYMBOL vmlinux 0x63f92c2c fb_class +EXPORT_SYMBOL vmlinux 0x63fc999a xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6420eb97 sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0x642b4a6e pm8606_osc_disable EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x6449a047 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus -EXPORT_SYMBOL vmlinux 0x6450fcfd __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x6473d2a0 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x645cecfe mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x6463ac83 tcf_idr_search EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x648a3389 __hw_addr_sync_dev EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x64991dcc reuseport_alloc EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait EXPORT_SYMBOL vmlinux 0x649f5403 cdrom_release EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu EXPORT_SYMBOL vmlinux 0x64b43e71 cfb_copyarea -EXPORT_SYMBOL vmlinux 0x64b898bb phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x64b929c9 filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64e565a8 eth_type_trans +EXPORT_SYMBOL vmlinux 0x64d26c4c mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0x64ecc9dc dev_pm_opp_unregister_notifier 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 0x65297e26 napi_schedule_prep EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x652dc05c phy_ethtool_get_sset_count EXPORT_SYMBOL vmlinux 0x653babff pci_add_new_bus EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65418d0b jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0x654449c3 memset16 -EXPORT_SYMBOL vmlinux 0x654f26bc mr_table_dump +EXPORT_SYMBOL vmlinux 0x65595421 qdisc_warn_nonwc EXPORT_SYMBOL vmlinux 0x65654b12 pnp_request_card_device EXPORT_SYMBOL vmlinux 0x656b36a4 blk_mq_tag_to_rq EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x657b4334 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x657cfc22 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0x658220e3 of_find_matching_node_and_match EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x658e6522 wireless_send_event +EXPORT_SYMBOL vmlinux 0x659ccfe9 unlock_page EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65ae80e3 vlan_vid_del -EXPORT_SYMBOL vmlinux 0x65ba588f find_get_pages_range_tag 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 0x65e74381 __invalidate_device -EXPORT_SYMBOL vmlinux 0x661b94de jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x65fb99d8 rt_dst_alloc EXPORT_SYMBOL vmlinux 0x6626afca down EXPORT_SYMBOL vmlinux 0x662a2233 get_vm_area EXPORT_SYMBOL vmlinux 0x663a325e d_add_ci -EXPORT_SYMBOL vmlinux 0x663b4b92 page_cache_next_miss EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr +EXPORT_SYMBOL vmlinux 0x66565af6 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x6658e48a mmc_add_host EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin -EXPORT_SYMBOL vmlinux 0x6669256e _dev_warn +EXPORT_SYMBOL vmlinux 0x6673684c mnt_set_expiry EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc EXPORT_SYMBOL vmlinux 0x668b19a1 down_read EXPORT_SYMBOL vmlinux 0x669050a6 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x669561b7 rt6_lookup -EXPORT_SYMBOL vmlinux 0x66aa84f0 ll_rw_block EXPORT_SYMBOL vmlinux 0x66ae2f1e phy_read_paged EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x66b434eb tcp_recvmsg EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup EXPORT_SYMBOL vmlinux 0x66c570c8 of_node_name_prefix -EXPORT_SYMBOL vmlinux 0x6709d27b netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x671da079 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x671f175c jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x66c6783e tcp_filter +EXPORT_SYMBOL vmlinux 0x66f3574d flush_signals EXPORT_SYMBOL vmlinux 0x671f3c7d input_set_keycode EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x6732b9b8 genphy_handle_interrupt_no_ack EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x67418ade i2c_smbus_read_i2c_block_data_or_emulated EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x6765f3d8 scsi_dma_map EXPORT_SYMBOL vmlinux 0x676aa9bc tty_hangup -EXPORT_SYMBOL vmlinux 0x676e10b3 skb_find_text EXPORT_SYMBOL vmlinux 0x677f6f9d d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x678893f0 open_exec EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x67935325 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x67900120 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x679c4396 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x67a4d763 submit_bh EXPORT_SYMBOL vmlinux 0x67ab78e3 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x67af370c nf_log_unregister EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios EXPORT_SYMBOL vmlinux 0x67b665c8 seq_bprintf EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67e11b8d vfs_statfs +EXPORT_SYMBOL vmlinux 0x67d568ee napi_build_skb +EXPORT_SYMBOL vmlinux 0x67dcb0f5 of_device_register EXPORT_SYMBOL vmlinux 0x67e368a6 __nla_reserve EXPORT_SYMBOL vmlinux 0x67feb82c seq_hex_dump -EXPORT_SYMBOL vmlinux 0x6800a7ed nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x67ff7bb6 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x6816b6e4 security_path_mkdir EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x682ef409 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x68283edb scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x68286584 pneigh_lookup EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x6859785a clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x6865e79c tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0x68660baf security_inode_copy_up EXPORT_SYMBOL vmlinux 0x6877b763 param_set_int EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x68959563 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x68a80344 release_pages -EXPORT_SYMBOL vmlinux 0x68c72483 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x68d36949 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x68b55dfd generic_write_end EXPORT_SYMBOL vmlinux 0x68d55556 padata_do_serial +EXPORT_SYMBOL vmlinux 0x68dfb492 netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0x68e294d5 dup_iter -EXPORT_SYMBOL vmlinux 0x68eb04d0 flow_rule_match_vlan EXPORT_SYMBOL vmlinux 0x68f4b6de blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x68f8d769 udp_pre_connect EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x68fe8d77 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x68fefbdb submit_bio_noacct EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot EXPORT_SYMBOL vmlinux 0x69126aab fs_param_is_path -EXPORT_SYMBOL vmlinux 0x6912927f xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x691a54df jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x692f5c16 dev_get_phys_port_name EXPORT_SYMBOL vmlinux 0x69338c62 sget_fc -EXPORT_SYMBOL vmlinux 0x6948cb80 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x6950586a xfrm_input_resume EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x695891ff skb_seq_read +EXPORT_SYMBOL vmlinux 0x695c50db locks_copy_lock EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x69679608 xp_free EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x697b9115 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x6971b001 mmc_put_card EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad EXPORT_SYMBOL vmlinux 0x6985bad6 __post_watch_notification -EXPORT_SYMBOL vmlinux 0x698c8b1f unregister_filesystem EXPORT_SYMBOL vmlinux 0x6999403a pci_iomap_range -EXPORT_SYMBOL vmlinux 0x69a11d23 __block_write_full_page EXPORT_SYMBOL vmlinux 0x69b2c227 pci_restore_state -EXPORT_SYMBOL vmlinux 0x69cdbbfa inet6_release +EXPORT_SYMBOL vmlinux 0x69b49353 netdev_notice +EXPORT_SYMBOL vmlinux 0x69d199cc ipv6_dev_find EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window @@ -8501,134 +8346,149 @@ EXPORT_SYMBOL vmlinux 0x69ed8af1 bio_copy_data_iter EXPORT_SYMBOL vmlinux 0x69f38847 cpu_hwcap_keys EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a24444f compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x6a0c0990 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x6a17f8c1 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x6a1e87e7 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x6a2b9e56 devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a60e27e tc_setup_cb_add EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a76c98f phy_disconnect +EXPORT_SYMBOL vmlinux 0x6a81e590 inet_stream_ops EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq -EXPORT_SYMBOL vmlinux 0x6a95accc tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0x6a9c6ef0 __devm_request_region EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aa7503b netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x6ac29cff i2c_clients_command +EXPORT_SYMBOL vmlinux 0x6ac87353 dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae78848 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x6ae8fd8f wait_on_page_bit EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset EXPORT_SYMBOL vmlinux 0x6aff8e35 mipi_dsi_dcs_set_tear_on EXPORT_SYMBOL vmlinux 0x6b015f90 qman_start_using_portal -EXPORT_SYMBOL vmlinux 0x6b039d74 blk_queue_flag_clear EXPORT_SYMBOL vmlinux 0x6b066627 d_instantiate -EXPORT_SYMBOL vmlinux 0x6b1fdecd tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x6b201d2d netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2a55da mmc_can_erase EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b3b86aa end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x6b443db1 migrate_page_move_mapping EXPORT_SYMBOL vmlinux 0x6b45cacc blk_mq_delay_run_hw_queue EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap +EXPORT_SYMBOL vmlinux 0x6b533df0 xp_dma_map EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b5b3d36 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x6b5f0c62 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x6b5837ff register_shrinker EXPORT_SYMBOL vmlinux 0x6b7c0646 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x6b7d3aa7 genphy_aneg_done EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b85f47d register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list EXPORT_SYMBOL vmlinux 0x6b8d92fc mod_node_page_state +EXPORT_SYMBOL vmlinux 0x6b8e7c37 neigh_for_each EXPORT_SYMBOL vmlinux 0x6b93b82a unregister_key_type -EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x6ba08750 dns_query +EXPORT_SYMBOL vmlinux 0x6ba3846e dev_add_pack +EXPORT_SYMBOL vmlinux 0x6bae9273 netif_rx_any_context +EXPORT_SYMBOL vmlinux 0x6baf4d3a mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x6bb9f76f inet6_offloads +EXPORT_SYMBOL vmlinux 0x6bc2ad59 udp_seq_next EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev EXPORT_SYMBOL vmlinux 0x6bc4d28f fs_param_is_blob -EXPORT_SYMBOL vmlinux 0x6bc91334 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x6bcd194c scsi_device_lookup EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method EXPORT_SYMBOL vmlinux 0x6be7c7c5 param_get_bool EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x6bf3dee1 finish_swait EXPORT_SYMBOL vmlinux 0x6c115425 textsearch_unregister EXPORT_SYMBOL vmlinux 0x6c126256 to_nd_dax EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change EXPORT_SYMBOL vmlinux 0x6c2a21f4 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x6c2dc84b tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0x6c30c8af shrink_dcache_parent EXPORT_SYMBOL vmlinux 0x6c4922de user_revoke +EXPORT_SYMBOL vmlinux 0x6c5866f3 __check_sticky EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb EXPORT_SYMBOL vmlinux 0x6c6c2c6c rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x6c6f2f7d udp_seq_next +EXPORT_SYMBOL vmlinux 0x6c7514ac sk_common_release EXPORT_SYMBOL vmlinux 0x6c7676c8 inode_insert5 +EXPORT_SYMBOL vmlinux 0x6c777ae5 xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6c807d22 inet_protos EXPORT_SYMBOL vmlinux 0x6c866688 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x6c891765 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x6c9a0bf7 tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user EXPORT_SYMBOL vmlinux 0x6cbee2af put_ipc_ns -EXPORT_SYMBOL vmlinux 0x6cc605dc disk_start_io_acct -EXPORT_SYMBOL vmlinux 0x6ccf7988 tcf_exts_dump EXPORT_SYMBOL vmlinux 0x6ce1d854 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x6cea0e37 netdev_warn EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums EXPORT_SYMBOL vmlinux 0x6cf4b33b __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x6d09d6b2 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x6d0909cd mii_link_ok EXPORT_SYMBOL vmlinux 0x6d0d0005 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x6d12fd84 skb_try_coalesce EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable EXPORT_SYMBOL vmlinux 0x6d1ee5ae blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate EXPORT_SYMBOL vmlinux 0x6d4d1f01 vmap EXPORT_SYMBOL vmlinux 0x6d52ca32 serio_reconnect +EXPORT_SYMBOL vmlinux 0x6d5ed75e request_key_rcu EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x6d68c625 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x6d6009df kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x6d68c294 mdiobus_register_device EXPORT_SYMBOL vmlinux 0x6d6dcfd0 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x6d7392d7 inet6_offloads EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d7ff26c gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x6d884ae2 dump_emit EXPORT_SYMBOL vmlinux 0x6d91f949 vga_set_legacy_decoding EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory +EXPORT_SYMBOL vmlinux 0x6dad568e filemap_check_errors EXPORT_SYMBOL vmlinux 0x6dadf871 set_posix_acl -EXPORT_SYMBOL vmlinux 0x6db89e8c mii_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x6dc28158 sk_alloc +EXPORT_SYMBOL vmlinux 0x6db16ac3 xfrm_policy_destroy 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 0x6de43ab2 start_tty -EXPORT_SYMBOL vmlinux 0x6dea431c inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x6df00819 security_path_rename EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction EXPORT_SYMBOL vmlinux 0x6dfdc52b input_get_keycode -EXPORT_SYMBOL vmlinux 0x6e007650 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x6e0b5af9 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x6e10ada4 locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0x6e14571a __d_lookup_done -EXPORT_SYMBOL vmlinux 0x6e22ef09 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x6e38fb15 kernel_write EXPORT_SYMBOL vmlinux 0x6e42e27f __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x6e592743 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x6e586966 register_fib_notifier EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e5c6293 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x6e5f6712 ip_sock_set_pktinfo EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7a5ccb kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0x6e7dd7ae inet_add_protocol -EXPORT_SYMBOL vmlinux 0x6e82a6a9 __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0x6e863ea2 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x6e893ae1 page_zero_new_buffers EXPORT_SYMBOL vmlinux 0x6e97a3e9 of_graph_get_remote_port_parent EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eaa6961 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x6eb3aa0e dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x6ebe0f8a tcp_sendmsg EXPORT_SYMBOL vmlinux 0x6ed2bd81 pps_register_source EXPORT_SYMBOL vmlinux 0x6ed8461a inode_init_always -EXPORT_SYMBOL vmlinux 0x6f06c29f set_bh_page -EXPORT_SYMBOL vmlinux 0x6f2d876d kmalloc_caches -EXPORT_SYMBOL vmlinux 0x6f37a252 vfs_setpos +EXPORT_SYMBOL vmlinux 0x6ee9cda5 dump_align +EXPORT_SYMBOL vmlinux 0x6effa9e8 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x6f0105d5 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x6f1503a5 mmc_retune_release EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f4dd791 genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f653078 reuseport_select_sock EXPORT_SYMBOL vmlinux 0x6f82c783 update_region +EXPORT_SYMBOL vmlinux 0x6f84d08a dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x6f868390 dev_get_stats EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6f9f0173 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x6fabec03 ppp_output_wakeup EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work EXPORT_SYMBOL vmlinux 0x6fb4ae08 generic_file_fsync EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fc2f28b keyring_alloc +EXPORT_SYMBOL vmlinux 0x6fc57f7a fixed_size_llseek EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fe5c87d dev_mc_add_global EXPORT_SYMBOL vmlinux 0x6fefaa7f config_item_init_type_name EXPORT_SYMBOL vmlinux 0x6ff58e6c rproc_resource_cleanup EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user @@ -8636,505 +8496,512 @@ EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 EXPORT_SYMBOL vmlinux 0x700ca11e t10_pi_type3_ip EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x703203f8 skb_queue_tail EXPORT_SYMBOL vmlinux 0x703602cc iov_iter_xarray -EXPORT_SYMBOL vmlinux 0x7038376c __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x70371025 sk_error_report EXPORT_SYMBOL vmlinux 0x7042471e fb_validate_mode EXPORT_SYMBOL vmlinux 0x70496c25 rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0x70609cf5 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x705b5d7a block_write_full_page EXPORT_SYMBOL vmlinux 0x70776f52 freeze_super -EXPORT_SYMBOL vmlinux 0x7085642e security_d_instantiate -EXPORT_SYMBOL vmlinux 0x70963d23 mr_table_alloc -EXPORT_SYMBOL vmlinux 0x70ac2118 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x70ac9f36 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x707be60e inet_frag_kill +EXPORT_SYMBOL vmlinux 0x708624b8 generic_perform_write EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70affd3e tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0x70b69e4e con_is_visible -EXPORT_SYMBOL vmlinux 0x70bf465a security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x70b7adaf arp_create EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool -EXPORT_SYMBOL vmlinux 0x70e84e16 __module_get -EXPORT_SYMBOL vmlinux 0x7109b5d5 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x710fa419 __bforget +EXPORT_SYMBOL vmlinux 0x70f5c713 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x7120a80b ata_std_end_eh EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712ed6e6 ip_ct_attach EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb -EXPORT_SYMBOL vmlinux 0x7146b2a7 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x71530ce0 kern_unmount EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk EXPORT_SYMBOL vmlinux 0x715fb066 ps2_handle_ack EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71757c7e mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71df46af dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x71aaff44 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x71bb5bcc xp_alloc +EXPORT_SYMBOL vmlinux 0x71cfbf9b xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x71ecefbf tcp_parse_options -EXPORT_SYMBOL vmlinux 0x71ed19b1 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x71e4677d of_device_unregister EXPORT_SYMBOL vmlinux 0x71fe3255 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x7206aa90 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x71fee7da kern_path EXPORT_SYMBOL vmlinux 0x72081688 dquot_quota_sync EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x722769d4 tcp_read_sock EXPORT_SYMBOL vmlinux 0x72293c2a kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x72406abb locks_delete_block -EXPORT_SYMBOL vmlinux 0x724b444d sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x722f5cb6 unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x725b0eaa ip_sock_set_tos EXPORT_SYMBOL vmlinux 0x725fcde3 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x72663f73 of_phy_find_device -EXPORT_SYMBOL vmlinux 0x7269b754 mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x726cd9a5 prepare_kernel_cred EXPORT_SYMBOL vmlinux 0x727693e8 get_acl +EXPORT_SYMBOL vmlinux 0x727cb651 no_seek_end_llseek EXPORT_SYMBOL vmlinux 0x727de424 mem_section -EXPORT_SYMBOL vmlinux 0x72a0bd5c of_get_mac_address EXPORT_SYMBOL vmlinux 0x72a19b1a node_data EXPORT_SYMBOL vmlinux 0x72a35acf mipi_dsi_dcs_get_pixel_format EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bb2e12 dev_get_iflink EXPORT_SYMBOL vmlinux 0x72bef1ac blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x72c12930 filp_close -EXPORT_SYMBOL vmlinux 0x72c8e639 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x72c9c43b netpoll_send_skb -EXPORT_SYMBOL vmlinux 0x72d37661 module_put +EXPORT_SYMBOL vmlinux 0x72c758f1 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x72d134fc ip_do_fragment +EXPORT_SYMBOL vmlinux 0x72d5387d kernel_connect EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72eaf468 __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0x72ec8caf iov_iter_revert EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x72f7350f generic_mii_ioctl EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal EXPORT_SYMBOL vmlinux 0x731dba7a xen_domain_type EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x7333d7e7 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x733ecfbc skb_trim -EXPORT_SYMBOL vmlinux 0x7352da57 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x735977cb buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x732eff9e migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x73450e5f tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x735b588c xfrm_input EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer EXPORT_SYMBOL vmlinux 0x736310d4 register_md_personality EXPORT_SYMBOL vmlinux 0x7367488d sunxi_sram_claim -EXPORT_SYMBOL vmlinux 0x736c0d44 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x736d8e32 nf_log_packet -EXPORT_SYMBOL vmlinux 0x7371a44f __sk_dst_check +EXPORT_SYMBOL vmlinux 0x7378babc tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0x737a8a4f _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x737c8953 __breadahead +EXPORT_SYMBOL vmlinux 0x737d804e flow_rule_match_enc_keyid EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x739537e2 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x73844fd8 bpf_prog_get_type_path 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 0x73c29112 sock_no_listen -EXPORT_SYMBOL vmlinux 0x73cec083 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x73c7dbe0 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x73d021b7 phy_set_sym_pause EXPORT_SYMBOL vmlinux 0x73d81725 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x73d91fdb phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x73db8b71 ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x73de5e9d iov_iter_init -EXPORT_SYMBOL vmlinux 0x74008b9a mmc_put_card +EXPORT_SYMBOL vmlinux 0x74085946 phy_attach EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x7431a58f generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x742f3835 __zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init +EXPORT_SYMBOL vmlinux 0x74482124 alloc_pages EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx EXPORT_SYMBOL vmlinux 0x74631eba simple_transaction_release -EXPORT_SYMBOL vmlinux 0x746de9a2 devfreq_update_target EXPORT_SYMBOL vmlinux 0x74709b00 configfs_remove_default_groups EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x7478dc77 devfreq_recommended_opp EXPORT_SYMBOL vmlinux 0x747e58b1 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x747efa45 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x7483714d arp_send EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x748603d2 dev_change_flags -EXPORT_SYMBOL vmlinux 0x74a2f025 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x74a58ebf unregister_qdisc +EXPORT_SYMBOL vmlinux 0x74a1588a xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x74a66bc9 tag_pages_for_writeback EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss EXPORT_SYMBOL vmlinux 0x74ba9406 kthread_stop EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 EXPORT_SYMBOL vmlinux 0x74c4b27c devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x74df4a82 dev_set_promiscuity EXPORT_SYMBOL vmlinux 0x74e06166 of_parse_phandle_with_fixed_args EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable EXPORT_SYMBOL vmlinux 0x74f4139c of_n_size_cells +EXPORT_SYMBOL vmlinux 0x74f9e74b genphy_c37_config_aneg EXPORT_SYMBOL vmlinux 0x750a0421 mpage_writepages EXPORT_SYMBOL vmlinux 0x751856aa pps_unregister_source EXPORT_SYMBOL vmlinux 0x751860f2 blk_mq_end_request EXPORT_SYMBOL vmlinux 0x7522344c fb_show_logo EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x756ff4ce mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x75848199 follow_down_one +EXPORT_SYMBOL vmlinux 0x7562f08d fman_get_pause_cfg EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x758a9a46 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x7596bce6 dev_uc_sync 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 0x75e0fa18 __scsi_add_device -EXPORT_SYMBOL vmlinux 0x75e1f8ef udp_set_csum +EXPORT_SYMBOL vmlinux 0x7607075d sock_no_listen EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760d90e6 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x761323de genl_unregister_family +EXPORT_SYMBOL vmlinux 0x76153ca0 wake_up_process EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x761a3949 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x761ebd18 iw_handler_set_spy EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x7638e1ce iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x762c6834 genl_notify EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x7658c5f9 netdev_lower_state_changed EXPORT_SYMBOL vmlinux 0x765a8c10 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x765aa41d jbd2_fc_release_bufs EXPORT_SYMBOL vmlinux 0x765ddaeb devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x765f0087 devfreq_recommended_opp EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x7663564f __check_sticky -EXPORT_SYMBOL vmlinux 0x766587ed security_sb_remount EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages EXPORT_SYMBOL vmlinux 0x767c42ff jbd2_journal_start_reserved EXPORT_SYMBOL vmlinux 0x768726a2 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x76939151 of_find_device_by_node EXPORT_SYMBOL vmlinux 0x76987793 sg_alloc_table_from_pages_segment EXPORT_SYMBOL vmlinux 0x769bbf36 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x769e7c77 sock_no_shutdown EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a399f8 lookup_one_len_unlocked EXPORT_SYMBOL vmlinux 0x76bbb5aa page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0x76bfb2c4 unregister_nls +EXPORT_SYMBOL vmlinux 0x76c24710 flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode EXPORT_SYMBOL vmlinux 0x76e44fd6 d_exact_alias -EXPORT_SYMBOL vmlinux 0x76f4ed7e security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x76f53de9 mii_nway_restart +EXPORT_SYMBOL vmlinux 0x76ed3a42 scsi_dma_unmap EXPORT_SYMBOL vmlinux 0x771185fb tty_port_block_til_ready EXPORT_SYMBOL vmlinux 0x7719395b __seq_open_private -EXPORT_SYMBOL vmlinux 0x7720d45e kern_unmount_array +EXPORT_SYMBOL vmlinux 0x77292232 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x772e222d sched_autogroup_detach EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0x77330241 tegra_dfll_resume EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x77443a70 sk_wait_data EXPORT_SYMBOL vmlinux 0x774443aa tegra_dfll_runtime_suspend EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x77525673 dev_graft_qdisc EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 EXPORT_SYMBOL vmlinux 0x777a47ff override_creds EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x779760a7 dump_skip EXPORT_SYMBOL vmlinux 0x77aa760a scsi_bios_ptable EXPORT_SYMBOL vmlinux 0x77ace87d ps2_begin_command EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77be643f sk_capable -EXPORT_SYMBOL vmlinux 0x77d55764 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x77dc31f8 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x77e01120 add_to_pipe +EXPORT_SYMBOL vmlinux 0x77e37594 __put_page EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x78157f67 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x781609de rt_dst_clone +EXPORT_SYMBOL vmlinux 0x782e9d54 tcf_em_tree_validate EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x784f4171 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x78605e41 xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0x786244aa scsi_register_driver -EXPORT_SYMBOL vmlinux 0x78710ed3 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x7875c5a4 unregister_binfmt EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x7888bbef trace_event_printf +EXPORT_SYMBOL vmlinux 0x7884518a __udp_disconnect EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets EXPORT_SYMBOL vmlinux 0x789cadb4 always_delete_dentry -EXPORT_SYMBOL vmlinux 0x789cd538 mdiobus_register_device EXPORT_SYMBOL vmlinux 0x789dd426 param_ops_hexint EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt EXPORT_SYMBOL vmlinux 0x78a42836 input_register_handler EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78ba632f dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x78c07389 complete_request_key +EXPORT_SYMBOL vmlinux 0x78c2d967 sock_cmsg_send EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78f9ac99 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x78fb0696 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x78dfcd2f inode_io_list_del EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x791d11da scsi_host_get -EXPORT_SYMBOL vmlinux 0x791dc5ea stream_open EXPORT_SYMBOL vmlinux 0x7932dd7d input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x793a5db0 __skb_ext_del EXPORT_SYMBOL vmlinux 0x7942978d blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x79627641 vme_bus_type +EXPORT_SYMBOL vmlinux 0x794cf312 tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0x796d8e92 rproc_add_carveout EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -EXPORT_SYMBOL vmlinux 0x7983dcd8 __vfs_setxattr EXPORT_SYMBOL vmlinux 0x7984eefc key_update EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size EXPORT_SYMBOL vmlinux 0x79a68956 pci_get_device -EXPORT_SYMBOL vmlinux 0x79a6f2ff nf_log_trace EXPORT_SYMBOL vmlinux 0x79a74e48 inode_set_flags +EXPORT_SYMBOL vmlinux 0x79bb9875 netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0x79c596f4 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x79d9e607 locks_init_lock EXPORT_SYMBOL vmlinux 0x79e41e35 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x79e8bd56 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x79e45f88 xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug EXPORT_SYMBOL vmlinux 0x79f9063a acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0x7a0832e8 xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a1a1cff netdev_emerg +EXPORT_SYMBOL vmlinux 0x7a191b70 reuseport_detach_prog EXPORT_SYMBOL vmlinux 0x7a1ae562 seq_escape_mem EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a1d30d4 netdev_port_same_parent_id EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a35a32c dst_release +EXPORT_SYMBOL vmlinux 0x7a3abff5 vfs_path_lookup EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a6bb21c mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x7a6bbd21 vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0x7a79aed5 pci_bus_write_config_byte EXPORT_SYMBOL vmlinux 0x7a86bae0 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x7a90f26e __dev_set_mtu EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree EXPORT_SYMBOL vmlinux 0x7ab45d25 dma_fence_array_create EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ace9a8f __breadahead_gfp EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7adecf98 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x7ae4d377 vfs_llseek EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum EXPORT_SYMBOL vmlinux 0x7b04d2c8 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x7b22686b vlan_vids_del_by_dev EXPORT_SYMBOL vmlinux 0x7b32916b single_open_size EXPORT_SYMBOL vmlinux 0x7b350ea0 md_handle_request EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b3ba0fa tcp_mtup_init EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem EXPORT_SYMBOL vmlinux 0x7b4e9c4a ps2_command -EXPORT_SYMBOL vmlinux 0x7b509da8 __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b61fa67 prepare_kernel_cred EXPORT_SYMBOL vmlinux 0x7b798827 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x7b79d8cd xfrm_register_type_offload EXPORT_SYMBOL vmlinux 0x7b7c4471 fscrypt_encrypt_block_inplace EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b992921 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x7b93f776 scsi_print_result +EXPORT_SYMBOL vmlinux 0x7b95dbc9 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x7ba368ee scsi_block_requests EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7ba5ba3d ethtool_op_get_link EXPORT_SYMBOL vmlinux 0x7ba7cfbf iget_locked -EXPORT_SYMBOL vmlinux 0x7baf0b61 __skb_pad EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bdad875 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x7bbe25cb wait_on_page_bit_killable EXPORT_SYMBOL vmlinux 0x7be0297c pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x7be20d75 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x7bed0f1e sock_release +EXPORT_SYMBOL vmlinux 0x7beeb0e4 trace_event_printf EXPORT_SYMBOL vmlinux 0x7bfef705 unregister_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x7bff44b8 current_time EXPORT_SYMBOL vmlinux 0x7c001d3f of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x7c0302ae mmput_async +EXPORT_SYMBOL vmlinux 0x7c0ad5d2 audit_log EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c3c9226 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x7c1c21f6 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x7c25d01c skb_pull EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c53a7ba skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x7c4e4552 mmc_can_gpio_cd EXPORT_SYMBOL vmlinux 0x7c55c16d fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x7c809e49 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x7c819f8f phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x7c82f83d dev_set_alias EXPORT_SYMBOL vmlinux 0x7c8e9996 elevator_alloc +EXPORT_SYMBOL vmlinux 0x7c92112e sock_release +EXPORT_SYMBOL vmlinux 0x7c995308 vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7ca7d2dd phy_drivers_unregister EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cd136bc phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x7cb418ed write_cache_pages +EXPORT_SYMBOL vmlinux 0x7cb81d94 ptp_clock_register +EXPORT_SYMBOL vmlinux 0x7cbafd7b __traceiter_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7ce7e37c qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cf99e4b tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x7cfbe1b5 get_task_cred EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d04dfe9 flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d12d026 dev_uc_add EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent EXPORT_SYMBOL vmlinux 0x7d1897da cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x7d23cbca nf_ip_checksum EXPORT_SYMBOL vmlinux 0x7d28c0dc kill_anon_super -EXPORT_SYMBOL vmlinux 0x7d2c3c98 arp_tbl -EXPORT_SYMBOL vmlinux 0x7d3443f8 netdev_warn EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d78b860 block_invalidatepage -EXPORT_SYMBOL vmlinux 0x7d84d337 of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x7d810236 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x7d89f0f7 security_sb_mnt_opts_compat EXPORT_SYMBOL vmlinux 0x7d97e320 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x7d9c582d ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x7d9b6811 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x7da02e26 iw_handler_get_spy EXPORT_SYMBOL vmlinux 0x7da0c312 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x7dab8300 jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dbc0097 ip6_xmit -EXPORT_SYMBOL vmlinux 0x7dbcaa8a iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x7dbffeba send_sig_info +EXPORT_SYMBOL vmlinux 0x7dc651c6 tcp_prot EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert -EXPORT_SYMBOL vmlinux 0x7de5199a mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x7dd08bc0 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x7ddbfc45 genphy_soft_reset EXPORT_SYMBOL vmlinux 0x7de79e7b iommu_get_msi_cookie EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args EXPORT_SYMBOL vmlinux 0x7dfd647a devm_ioremap -EXPORT_SYMBOL vmlinux 0x7dfe5184 scsi_add_device EXPORT_SYMBOL vmlinux 0x7e057ef0 proc_create_data +EXPORT_SYMBOL vmlinux 0x7e191bef tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x7e206ee1 input_mt_report_pointer_emulation EXPORT_SYMBOL vmlinux 0x7e230edc sg_miter_start -EXPORT_SYMBOL vmlinux 0x7e2d12f2 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x7e2fcef4 generic_fillattr EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e3b1b5d inet_offloads +EXPORT_SYMBOL vmlinux 0x7e3c5cee sock_rfree EXPORT_SYMBOL vmlinux 0x7e53c0c3 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x7e6c0859 user_path_create EXPORT_SYMBOL vmlinux 0x7e7bae40 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x7e9ea654 vme_bus_num EXPORT_SYMBOL vmlinux 0x7eac760a param_set_hexint -EXPORT_SYMBOL vmlinux 0x7eb5d2da find_vma -EXPORT_SYMBOL vmlinux 0x7ed6372e send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x7ee57e5f udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x7edc3469 km_query +EXPORT_SYMBOL vmlinux 0x7ee90bfa mmc_command_done EXPORT_SYMBOL vmlinux 0x7ef6d70c is_nd_dax EXPORT_SYMBOL vmlinux 0x7efc743a devm_free_irq EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f0c5905 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x7f1172e7 dev_set_group EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f371b8d do_clone_file_range -EXPORT_SYMBOL vmlinux 0x7f380054 tso_build_data -EXPORT_SYMBOL vmlinux 0x7f48a138 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x7f35f721 phy_drivers_register EXPORT_SYMBOL vmlinux 0x7f52071a net_dim EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f7db7df udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x7f7c6f77 netif_rx EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f9007d7 netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x7f9b760d scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x7fb8eca3 bh_submit_read +EXPORT_SYMBOL vmlinux 0x7fbbd96e dev_mc_init +EXPORT_SYMBOL vmlinux 0x7fc64cdb sock_i_uid EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size -EXPORT_SYMBOL vmlinux 0x7fd99d11 phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0x7fdec08c phy_device_free EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff023e8 vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0x80036d48 setattr_prepare -EXPORT_SYMBOL vmlinux 0x800fe2eb scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x8012f33d generic_file_open EXPORT_SYMBOL vmlinux 0x801c4e72 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x80304bea __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x804c1e90 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x804c4ede ppp_register_net_channel EXPORT_SYMBOL vmlinux 0x80501fda md_unregister_thread EXPORT_SYMBOL vmlinux 0x80556a9a kobject_del EXPORT_SYMBOL vmlinux 0x806c82b4 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x8086344c mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x80750174 phy_loopback +EXPORT_SYMBOL vmlinux 0x80795b02 scm_detach_fds EXPORT_SYMBOL vmlinux 0x8089d69d acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x80939a47 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x8095df56 devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x809e3ce1 nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0x809ec780 register_quota_format EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare EXPORT_SYMBOL vmlinux 0x80a9b869 pci_release_resource -EXPORT_SYMBOL vmlinux 0x80b3d577 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x80b62c8d vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0x80bce75d configfs_register_subsystem EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80e2e046 netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80e87ba8 xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq -EXPORT_SYMBOL vmlinux 0x80f0818c of_platform_device_create -EXPORT_SYMBOL vmlinux 0x80fee2ce mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x81308eda vfs_mkdir +EXPORT_SYMBOL vmlinux 0x812baaa4 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x8138be74 nlmsg_notify EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815c7da8 fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0x816d7877 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x816fbc85 phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc -EXPORT_SYMBOL vmlinux 0x8195e7b4 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0x81a351af inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0x81a38d0f pci_reenable_device EXPORT_SYMBOL vmlinux 0x81a4ff73 unpin_user_pages EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x81d0cd66 netdev_name_in_use EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset EXPORT_SYMBOL vmlinux 0x81df2172 con_copy_unimap EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info EXPORT_SYMBOL vmlinux 0x81f108c3 configfs_unregister_default_group EXPORT_SYMBOL vmlinux 0x81f26642 page_pool_create +EXPORT_SYMBOL vmlinux 0x81fec5eb _dev_info EXPORT_SYMBOL vmlinux 0x82053e8a param_ops_charp +EXPORT_SYMBOL vmlinux 0x821acd03 inet_frags_fini EXPORT_SYMBOL vmlinux 0x821f8e5a dquot_resume +EXPORT_SYMBOL vmlinux 0x8230427d _dev_crit EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock EXPORT_SYMBOL vmlinux 0x82475ce4 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x8254213f passthru_features_check +EXPORT_SYMBOL vmlinux 0x82544d71 generic_copy_file_range EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x827931d4 __skb_vlan_pop EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init EXPORT_SYMBOL vmlinux 0x82918cb7 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x82920db3 ppp_channel_index EXPORT_SYMBOL vmlinux 0x8295ab06 pin_user_pages_remote EXPORT_SYMBOL vmlinux 0x82a254f5 pldmfw_op_pci_match_record EXPORT_SYMBOL vmlinux 0x82b73959 seq_release EXPORT_SYMBOL vmlinux 0x82bc1c56 seq_file_path EXPORT_SYMBOL vmlinux 0x82c1eff1 of_device_is_big_endian EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82e069ed xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x82ced7d6 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x82cfdaca mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync +EXPORT_SYMBOL vmlinux 0x82f31edd scsi_done EXPORT_SYMBOL vmlinux 0x82f6579b pci_enable_device_io EXPORT_SYMBOL vmlinux 0x82f7da76 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x830b5444 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x831827a7 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x832240b9 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x82fe1aba scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x8302efdb qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x830e67a2 vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0x832e2a90 iov_iter_discard -EXPORT_SYMBOL vmlinux 0x834fc316 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x835769aa skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x833e4c97 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0x83407e88 security_dentry_init_security EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x835f00f4 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x83617777 skb_checksum EXPORT_SYMBOL vmlinux 0x8368929f jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x8372fcc3 init_task EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x83826bd6 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x838766c8 scsi_vpd_lun_id EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x83955cb0 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x83a3a771 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x83a30581 skb_clone +EXPORT_SYMBOL vmlinux 0x83a7e1de tcp_connect EXPORT_SYMBOL vmlinux 0x83a9495d kill_litter_super EXPORT_SYMBOL vmlinux 0x83bf722f iov_iter_bvec EXPORT_SYMBOL vmlinux 0x83c0513d of_iomap +EXPORT_SYMBOL vmlinux 0x83c5e18a dump_page EXPORT_SYMBOL vmlinux 0x83c717ca dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0x83cb8981 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x83cdb326 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x83cc8a8b vme_irq_request +EXPORT_SYMBOL vmlinux 0x83df343e netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x83ea1365 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x83f50bcf mmc_free_host EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x84425cf9 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x842ab1e4 inet_select_addr +EXPORT_SYMBOL vmlinux 0x8436cc01 blk_get_queue EXPORT_SYMBOL vmlinux 0x844e53e4 redraw_screen +EXPORT_SYMBOL vmlinux 0x8450e738 security_inode_getsecctx EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x84573c73 kernel_recvmsg EXPORT_SYMBOL vmlinux 0x8461b025 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x8464a1f5 xfrm_trans_queue EXPORT_SYMBOL vmlinux 0x846783b6 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x846ab4b3 jbd2_journal_unlock_updates EXPORT_SYMBOL vmlinux 0x847403b8 serio_unregister_child_port EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x84b4b5a7 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x848c2a90 vfs_rename +EXPORT_SYMBOL vmlinux 0x8493c660 ip6tun_encaps EXPORT_SYMBOL vmlinux 0x84b58c4c rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x84bc215c qdisc_create_dflt EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x84d8b806 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x84dfef0f alloc_fddidev EXPORT_SYMBOL vmlinux 0x84f2e9d0 backlight_device_unregister EXPORT_SYMBOL vmlinux 0x85173771 ps2_end_command -EXPORT_SYMBOL vmlinux 0x85175227 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x8519ab77 lru_cache_add EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base EXPORT_SYMBOL vmlinux 0x851bce43 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x85420bc6 iterate_dir EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8567d040 kernel_sendpage_locked EXPORT_SYMBOL vmlinux 0x8568cb94 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x856e009b phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x856f47e9 blk_put_queue EXPORT_SYMBOL vmlinux 0x8586658a simple_link -EXPORT_SYMBOL vmlinux 0x8590e620 inet_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85966b47 inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0x859a2423 fman_get_mem_region EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85c8acf0 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x85d377bc jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x85bf3f60 migrate_vma_pages EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e014a9 sock_no_sendpage_locked EXPORT_SYMBOL vmlinux 0x85eb9638 uart_update_timeout EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x860519f4 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x86083bc0 i2c_smbus_read_word_data EXPORT_SYMBOL vmlinux 0x8624ff13 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x8627fad0 xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x86402279 xsk_tx_completed EXPORT_SYMBOL vmlinux 0x8640bfb3 pci_release_region -EXPORT_SYMBOL vmlinux 0x864499d0 netif_napi_add -EXPORT_SYMBOL vmlinux 0x8646ba50 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x865f87e6 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x866ed865 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x865ae0ef dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x868144e3 mmc_gpiod_request_cd EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x869479ed mdiobus_read_nested EXPORT_SYMBOL vmlinux 0x86966731 seq_printf EXPORT_SYMBOL vmlinux 0x86a2af5d of_node_get -EXPORT_SYMBOL vmlinux 0x86a32e8a xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0x86a374d4 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x86c5931a skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x86b14ad4 ppp_dev_name EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant EXPORT_SYMBOL vmlinux 0x86de6470 proc_remove -EXPORT_SYMBOL vmlinux 0x86e730a6 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x86f65b95 phy_suspend -EXPORT_SYMBOL vmlinux 0x86fa9d9b mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x871edb47 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x8720a988 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x87225e5c mmc_can_discard EXPORT_SYMBOL vmlinux 0x874f37b1 copy_highpage EXPORT_SYMBOL vmlinux 0x875e7ac5 component_match_add_typed EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x877ff25a tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream +EXPORT_SYMBOL vmlinux 0x878db623 try_to_release_page EXPORT_SYMBOL vmlinux 0x8798654a blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x8799f364 udp_lib_rehash EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87b516ef dev_loopback_xmit EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87bea945 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x87dc0df7 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x87d3300a tcp_peek_len +EXPORT_SYMBOL vmlinux 0x87d3346b __netdev_notify_peers EXPORT_SYMBOL vmlinux 0x87dc7fe8 tegra_dfll_suspend EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x8815c8a3 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x8817547e ipv6_chk_addr EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit EXPORT_SYMBOL vmlinux 0x88233752 ps2_handle_response EXPORT_SYMBOL vmlinux 0x88311ae2 vfs_get_tree -EXPORT_SYMBOL vmlinux 0x88370ca5 inet_ioctl -EXPORT_SYMBOL vmlinux 0x883c5c22 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x885449eb inet_listen -EXPORT_SYMBOL vmlinux 0x885d9f11 rt_dst_clone -EXPORT_SYMBOL vmlinux 0x88712364 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x8832fe66 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x88449cd0 netlink_capable +EXPORT_SYMBOL vmlinux 0x884eab42 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x88711801 vmf_insert_pfn_prot EXPORT_SYMBOL vmlinux 0x887f57ec param_ops_ullong EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x88879c51 __scsi_execute EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 EXPORT_SYMBOL vmlinux 0x889132a2 amba_request_regions EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock @@ -9142,345 +9009,363 @@ EXPORT_SYMBOL vmlinux 0x88a02210 generic_error_remove_page EXPORT_SYMBOL vmlinux 0x88a4459a serio_rescan EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock EXPORT_SYMBOL vmlinux 0x88b16868 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x88bc1d7a kmem_cache_create EXPORT_SYMBOL vmlinux 0x88bdbd6d inode_dio_wait -EXPORT_SYMBOL vmlinux 0x88c0b3c7 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x88c69596 gro_cells_receive EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size EXPORT_SYMBOL vmlinux 0x88dda2c9 vga_get EXPORT_SYMBOL vmlinux 0x88e0a9a5 tty_port_open EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88f3ef60 inet_recvmsg EXPORT_SYMBOL vmlinux 0x88fe117e of_parse_phandle -EXPORT_SYMBOL vmlinux 0x89275be0 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x8929f7b1 devfreq_monitor_resume EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear EXPORT_SYMBOL vmlinux 0x8943c134 fb_get_mode EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy EXPORT_SYMBOL vmlinux 0x894ac1d4 dma_sync_sg_for_cpu EXPORT_SYMBOL vmlinux 0x896c4542 acpi_device_hid -EXPORT_SYMBOL vmlinux 0x896ee8ba skb_ext_add -EXPORT_SYMBOL vmlinux 0x89811c07 inet_select_addr +EXPORT_SYMBOL vmlinux 0x896ddff2 io_uring_get_socket EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x89a5e122 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x89da2070 scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0x89db4b02 genphy_c37_config_aneg EXPORT_SYMBOL vmlinux 0x89dd2a5f simple_nosetlease -EXPORT_SYMBOL vmlinux 0x89e21861 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x89e276ff vfs_setpos +EXPORT_SYMBOL vmlinux 0x89ef9312 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x89f093a5 __scm_send EXPORT_SYMBOL vmlinux 0x89f71bd7 get_tree_keyed EXPORT_SYMBOL vmlinux 0x89fbe0b7 get_cached_acl +EXPORT_SYMBOL vmlinux 0x89fe6f28 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x8a07c7b4 ip_queue_xmit EXPORT_SYMBOL vmlinux 0x8a099ff5 pci_disable_device -EXPORT_SYMBOL vmlinux 0x8a1ce896 thread_group_exited -EXPORT_SYMBOL vmlinux 0x8a221c1a devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x8a2d3ceb sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x8a3c687f tcp_conn_request -EXPORT_SYMBOL vmlinux 0x8a3f5936 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x8a2c8db8 dev_uc_unsync EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a49e407 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x8a5b9438 xfrm4_udp_encap_rcv EXPORT_SYMBOL vmlinux 0x8a6985d3 of_get_parent EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a77a4c4 module_layout +EXPORT_SYMBOL vmlinux 0x8a7c7bd0 gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a7e60c2 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x8a7fc93a jbd2_journal_lock_updates EXPORT_SYMBOL vmlinux 0x8a84237e config_item_get_unless_zero EXPORT_SYMBOL vmlinux 0x8a88cff7 __of_get_address -EXPORT_SYMBOL vmlinux 0x8a8b2797 tcp_rtx_synack EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab EXPORT_SYMBOL vmlinux 0x8a9e63cf msi_desc_to_pci_dev EXPORT_SYMBOL vmlinux 0x8aa087b7 make_kuid -EXPORT_SYMBOL vmlinux 0x8aa1ac97 ip_frag_init +EXPORT_SYMBOL vmlinux 0x8ab2d6a3 scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer EXPORT_SYMBOL vmlinux 0x8ac98c8c unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0x8ad2a5de mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x8ad33a2d flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x8ad9d98a __sock_create -EXPORT_SYMBOL vmlinux 0x8ae2c892 skb_clone -EXPORT_SYMBOL vmlinux 0x8ae7d218 load_nls +EXPORT_SYMBOL vmlinux 0x8adb72ef __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x8af8cf18 sock_no_shutdown EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b00b88d dev_mc_flush EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy EXPORT_SYMBOL vmlinux 0x8b18d39d tty_port_raise_dtr_rts EXPORT_SYMBOL vmlinux 0x8b2b3e43 sb_set_blocksize EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x8b3126d8 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x8b3e34b5 mmc_gpio_set_cd_wake EXPORT_SYMBOL vmlinux 0x8b5fb2fd input_free_device +EXPORT_SYMBOL vmlinux 0x8b60cd77 set_create_files_as EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b8b1faf flow_indr_dev_unregister EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx EXPORT_SYMBOL vmlinux 0x8ba38b61 dquot_initialize EXPORT_SYMBOL vmlinux 0x8ba6f263 blk_rq_map_user_iov EXPORT_SYMBOL vmlinux 0x8bbf1d79 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x8bcda1ec dev_get_by_name EXPORT_SYMBOL vmlinux 0x8bd0624f inc_zone_page_state EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable EXPORT_SYMBOL vmlinux 0x8bf1489c ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x8c06c7e0 tcf_classify +EXPORT_SYMBOL vmlinux 0x8c0e0caf __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x8c0fdf6c fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0x8c1c5fd4 blk_pm_runtime_init EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c35b684 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x8c45aeb3 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x8c2c4061 of_clk_get +EXPORT_SYMBOL vmlinux 0x8c3df836 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x8c41e6bf netpoll_print_options EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x8c72027c ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x8c6f388e netpoll_setup +EXPORT_SYMBOL vmlinux 0x8c7c107b i2c_smbus_read_i2c_block_data EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c8a592b ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x8c876b7e security_sk_classify_flow EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8ca2dc02 mmc_command_done +EXPORT_SYMBOL vmlinux 0x8c9e427e __starget_for_each_device EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cbf1c5d inode_add_bytes EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x8cce105d xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x8cceca3f sock_i_ino EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cdf8d9c __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0x8ce30d9e dma_async_device_unregister EXPORT_SYMBOL vmlinux 0x8ce57abf dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x8d0c0dc1 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x8ce63318 filemap_fdatawait_range_keep_errors EXPORT_SYMBOL vmlinux 0x8d0f2174 pci_bus_type -EXPORT_SYMBOL vmlinux 0x8d21a84a vfs_create -EXPORT_SYMBOL vmlinux 0x8d2359f4 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x8d181de4 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x8d1b0abc phy_mac_interrupt EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var EXPORT_SYMBOL vmlinux 0x8d44a1ad dma_sync_single_for_device EXPORT_SYMBOL vmlinux 0x8d49ce70 elv_rb_del +EXPORT_SYMBOL vmlinux 0x8d4ac6c9 __i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x8d4ce488 nvdimm_namespace_capacity EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d563ff4 flow_rule_match_icmp EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d8611b2 twl6040_get_pll EXPORT_SYMBOL vmlinux 0x8d9bdefb input_unregister_handle EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8da0471d netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0x8da36c53 pci_dev_put EXPORT_SYMBOL vmlinux 0x8da6585d __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x8dae33d8 security_inet_conn_established EXPORT_SYMBOL vmlinux 0x8daedb79 cpumask_any_but EXPORT_SYMBOL vmlinux 0x8daef562 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0x8db1a6df jbd2_journal_extend EXPORT_SYMBOL vmlinux 0x8db234d9 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x8db84ab9 ip6_route_me_harder EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de134bc xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0x8df0d6c3 md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8dfb1a69 wait_on_page_bit EXPORT_SYMBOL vmlinux 0x8e0145dd simple_open +EXPORT_SYMBOL vmlinux 0x8e088e0e rtnl_link_get_net EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x8e333875 tcf_action_exec EXPORT_SYMBOL vmlinux 0x8e356bb4 pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable EXPORT_SYMBOL vmlinux 0x8e40cdc5 input_unregister_handler EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e63984e sock_i_uid +EXPORT_SYMBOL vmlinux 0x8e7a31f0 xfrm_register_type_offload EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e94a04b page_get_link +EXPORT_SYMBOL vmlinux 0x8eaa7c84 mmc_release_host +EXPORT_SYMBOL vmlinux 0x8eb6fd84 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x8ebf5a5a mmc_detect_change EXPORT_SYMBOL vmlinux 0x8ef11955 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x8ef7a116 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x8efcc311 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x8f004f50 disk_start_io_acct EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f230892 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x8f27af11 phy_get_c45_ids EXPORT_SYMBOL vmlinux 0x8f3519c2 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x8f39ad41 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x8f4f0e4c netdev_alert EXPORT_SYMBOL vmlinux 0x8f559aa7 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x8f9057a6 mmc_erase +EXPORT_SYMBOL vmlinux 0x8f6f02f9 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x8f7aedaf vlan_vid_del +EXPORT_SYMBOL vmlinux 0x8f8a03f1 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x8f8b155c default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x8f8e9755 add_to_page_cache_locked EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode EXPORT_SYMBOL vmlinux 0x8f9a86ec proc_mkdir EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fa714bd dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0x8fa718c6 eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0x8faadff5 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x8fb68c8f iptun_encaps EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content -EXPORT_SYMBOL vmlinux 0x8fcf5ff5 __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds -EXPORT_SYMBOL vmlinux 0x8fe01f47 dev_mc_unsync EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8ff9d65e jbd2_journal_set_features EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush EXPORT_SYMBOL vmlinux 0x9020ab85 file_update_time EXPORT_SYMBOL vmlinux 0x902c726a serio_open EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get EXPORT_SYMBOL vmlinux 0x902f5199 cpumask_next_wrap EXPORT_SYMBOL vmlinux 0x903290dd tty_port_close_start +EXPORT_SYMBOL vmlinux 0x9033c40a tcf_qevent_destroy EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x904faf98 __dev_remove_pack EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user EXPORT_SYMBOL vmlinux 0x90660ad9 param_get_short -EXPORT_SYMBOL vmlinux 0x9079f3ca __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x9067e799 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x90749bf8 sk_stop_timer EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override +EXPORT_SYMBOL vmlinux 0x907f9abc scsi_unblock_requests EXPORT_SYMBOL vmlinux 0x908e5601 cpu_hwcaps -EXPORT_SYMBOL vmlinux 0x908e95af mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0x90913da9 iommu_put_dma_cookie EXPORT_SYMBOL vmlinux 0x90913e1b rproc_put -EXPORT_SYMBOL vmlinux 0x9096b34d cad_pid -EXPORT_SYMBOL vmlinux 0x90a44de1 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x90b630c0 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x909fc782 ll_rw_block +EXPORT_SYMBOL vmlinux 0x90afce34 dst_release +EXPORT_SYMBOL vmlinux 0x90bf9709 reuseport_add_sock EXPORT_SYMBOL vmlinux 0x90c66ecd input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x90d1720c ata_print_version +EXPORT_SYMBOL vmlinux 0x90d39c79 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x90e12234 xfrm_state_delete EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp +EXPORT_SYMBOL vmlinux 0x90e72dc0 dev_driver_string EXPORT_SYMBOL vmlinux 0x90ea1147 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x90f4e3bc seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0x910aad11 md_bitmap_update_sb EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x91168e06 flow_rule_match_meta EXPORT_SYMBOL vmlinux 0x912dbf90 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x913cd1f6 __lock_sock_fast EXPORT_SYMBOL vmlinux 0x913d62a7 dm_table_run_md_queue_async EXPORT_SYMBOL vmlinux 0x91445035 igrab -EXPORT_SYMBOL vmlinux 0x9158b829 __sock_i_ino EXPORT_SYMBOL vmlinux 0x915f1fb8 pmem_should_map_pages EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x9180b490 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x9185cc39 napi_enable +EXPORT_SYMBOL vmlinux 0x91726382 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x91787671 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x9184df5b dst_discard_out EXPORT_SYMBOL vmlinux 0x918a4f34 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x9192f28b __cancel_dirty_page EXPORT_SYMBOL vmlinux 0x919671df rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0x9197093f fiemap_prep EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91b2a6bb i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x91b6eff7 skb_unlink EXPORT_SYMBOL vmlinux 0x91b7c10d cfb_fillrect EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91c667de inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x91c7ec58 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x91c81fad unlock_page +EXPORT_SYMBOL vmlinux 0x91c46e32 mmc_set_data_timeout EXPORT_SYMBOL vmlinux 0x91e34c70 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x91eecf74 arp_xmit EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f4ae52 crypto_sha1_update EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x91fed07e netlink_unicast -EXPORT_SYMBOL vmlinux 0x92162575 keyring_alloc -EXPORT_SYMBOL vmlinux 0x921a9610 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x921eed41 blk_rq_init -EXPORT_SYMBOL vmlinux 0x92216488 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x9217fa64 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x921f06d0 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x92257c70 fqdir_init EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923eafa5 xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x92442ba1 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x92478bcd lease_modify EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9255178c jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x925fde50 new_inode -EXPORT_SYMBOL vmlinux 0x926588e0 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x926d4c1e __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x926d5ec5 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x92705e32 mmc_can_trim EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool EXPORT_SYMBOL vmlinux 0x92807a14 input_set_abs_params EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x929556c1 pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x92a1f9f4 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x92a39f2f tcp_make_synack -EXPORT_SYMBOL vmlinux 0x92b925c3 vif_device_init +EXPORT_SYMBOL vmlinux 0x92a1e5c1 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x92ab34b0 rtnl_create_link EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name EXPORT_SYMBOL vmlinux 0x92cd9287 input_release_device -EXPORT_SYMBOL vmlinux 0x92cee462 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x92d0bae7 tcp_add_backlog EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92ddfe21 km_state_notify EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach EXPORT_SYMBOL vmlinux 0x92fa6317 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x92fcf708 tcp_sock_set_syncnt EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x933874aa netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x935d8ef7 would_dump EXPORT_SYMBOL vmlinux 0x9362aeb9 fwnode_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x936c9b1a key_reject_and_link EXPORT_SYMBOL vmlinux 0x936e5c84 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x936e6cc0 keyring_search +EXPORT_SYMBOL vmlinux 0x936e985f phy_advertise_supported EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937b1d42 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x9389187c jbd2_journal_blocks_per_page EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule EXPORT_SYMBOL vmlinux 0x93a80060 to_nd_pfn EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93c6f9f3 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x93cb9542 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x93bbaabd netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x93d1957f flow_block_cb_decref EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93e6672f generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x93e0f02f rt6_lookup EXPORT_SYMBOL vmlinux 0x93efdd45 bio_chain -EXPORT_SYMBOL vmlinux 0x93ff7149 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x94070f54 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x93f13ea4 jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x9429fdef netpoll_setup +EXPORT_SYMBOL vmlinux 0x9440ab2d filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x94421a16 unregister_filesystem EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked EXPORT_SYMBOL vmlinux 0x944d5e7f fscrypt_ioctl_set_policy EXPORT_SYMBOL vmlinux 0x9457c8f1 md_bitmap_close_sync EXPORT_SYMBOL vmlinux 0x945991ee nd_device_register -EXPORT_SYMBOL vmlinux 0x94604ab7 mfd_add_devices -EXPORT_SYMBOL vmlinux 0x9460deb5 __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0x946bad3d fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0x946e4e12 pci_disable_link_state EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable +EXPORT_SYMBOL vmlinux 0x948d8997 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x9490e148 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x94930967 xfrm_state_lookup EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94b1240f filemap_page_mkwrite EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94cf1385 dev_get_port_parent_id EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94e583ea xfrm_init_state EXPORT_SYMBOL vmlinux 0x94f152d3 seq_lseek EXPORT_SYMBOL vmlinux 0x94f894be acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x94fc1a9d __SetPageMovable EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x94fd9ce5 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x94fdfdc9 generic_mii_ioctl EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user EXPORT_SYMBOL vmlinux 0x951c8f1b bioset_integrity_create EXPORT_SYMBOL vmlinux 0x9525f153 d_delete EXPORT_SYMBOL vmlinux 0x952aff3c tty_port_free_xmit_buf EXPORT_SYMBOL vmlinux 0x9546889d mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x954b5aef filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x954c13c5 inet_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x95657f82 flow_rule_match_ct EXPORT_SYMBOL vmlinux 0x95665043 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x959cf551 inet6_getname +EXPORT_SYMBOL vmlinux 0x957df73e tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x9581d8cc phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x95903fbc iterate_fd +EXPORT_SYMBOL vmlinux 0x959469db mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95d06556 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x95d4d1c9 __page_symlink +EXPORT_SYMBOL vmlinux 0x95bb3288 call_fib_notifiers EXPORT_SYMBOL vmlinux 0x95db879b kernel_param_unlock EXPORT_SYMBOL vmlinux 0x95f4e5c2 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x95fa6b4a ata_print_version +EXPORT_SYMBOL vmlinux 0x9613eba9 __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0x961c7e65 blk_mq_init_queue EXPORT_SYMBOL vmlinux 0x9622f580 d_obtain_root -EXPORT_SYMBOL vmlinux 0x9647f17a skb_copy_header +EXPORT_SYMBOL vmlinux 0x9647546d ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0x964fd457 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x9666d079 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x9650195d request_key_tag EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg -EXPORT_SYMBOL vmlinux 0x966e2f87 inet_csk_accept EXPORT_SYMBOL vmlinux 0x96757f69 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x9683bbda gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x9683f90a tcp_mtup_init EXPORT_SYMBOL vmlinux 0x96848186 scnprintf EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr -EXPORT_SYMBOL vmlinux 0x968f16cc __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x969ba18b generic_delete_inode +EXPORT_SYMBOL vmlinux 0x96ad4d6d sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96c04471 flow_rule_match_ipv4_addrs EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96cb5900 inet_addr_type_table EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96cfa116 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x96d17ffe tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0x96d5b3f7 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x96db4141 zap_page_range EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo EXPORT_SYMBOL vmlinux 0x96e7f935 input_open_device +EXPORT_SYMBOL vmlinux 0x96f353cb scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x96f8b314 icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x97293c79 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x97344b91 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x973d3b88 sync_inodes_sb EXPORT_SYMBOL vmlinux 0x973d74ef mipi_dsi_dcs_nop EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x9754b617 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x976c68f6 file_path +EXPORT_SYMBOL vmlinux 0x9752fff1 tcp_sock_set_keepintvl EXPORT_SYMBOL vmlinux 0x9776c03d __frontswap_store -EXPORT_SYMBOL vmlinux 0x9778c18f scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x977c0087 mount_subtree EXPORT_SYMBOL vmlinux 0x977c8cd1 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x9793c378 vme_irq_handler EXPORT_SYMBOL vmlinux 0x97940e5d d_obtain_alias EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s EXPORT_SYMBOL vmlinux 0x97b8741f page_pool_destroy EXPORT_SYMBOL vmlinux 0x97bc44a8 tty_hung_up_p EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97d8d44c jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x97e0878c dma_set_mask EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds +EXPORT_SYMBOL vmlinux 0x97e88bc9 __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x97f3fda1 vfs_readlink -EXPORT_SYMBOL vmlinux 0x97f80b69 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x97f09227 __of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x97f1ff72 tc_setup_cb_destroy EXPORT_SYMBOL vmlinux 0x97f8c4ed of_get_next_child -EXPORT_SYMBOL vmlinux 0x980e500e i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x97fde929 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x9820e7a9 mii_ethtool_sset EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x98370912 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x983b60a4 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x9862dd5c __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x986b6a70 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x9851cada genphy_loopback +EXPORT_SYMBOL vmlinux 0x9867c36b tcf_get_next_chain EXPORT_SYMBOL vmlinux 0x986dd558 fs_bio_set EXPORT_SYMBOL vmlinux 0x9872d502 fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x98b33f9b udp_disconnect +EXPORT_SYMBOL vmlinux 0x98a53938 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x98b0efd9 mmc_set_blocklen EXPORT_SYMBOL vmlinux 0x98b605a7 dquot_load_quota_sb EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc @@ -9491,180 +9376,185 @@ EXPORT_SYMBOL vmlinux 0x99070a73 pci_enable_ptm EXPORT_SYMBOL vmlinux 0x9907a7bb rdmacg_try_charge EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available EXPORT_SYMBOL vmlinux 0x9914ac33 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x9922aafd f_setown EXPORT_SYMBOL vmlinux 0x992624cf devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x992996e5 security_sk_clone EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x994cc276 dst_alloc EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9957c8a8 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x9972a92f unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x99589540 mfd_cell_disable EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle EXPORT_SYMBOL vmlinux 0x998deda4 iunique EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99b041f7 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0x99b1d8cc scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x999fe437 posix_lock_file +EXPORT_SYMBOL vmlinux 0x99c3ba86 dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x9a0a70db genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x99fe3f45 ata_scsi_cmd_error_handler EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a16a224 vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0x9a1cbf0e configfs_depend_item EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a2d4072 tc_cleanup_flow_action EXPORT_SYMBOL vmlinux 0x9a2fb882 clear_inode -EXPORT_SYMBOL vmlinux 0x9a37ea69 mdiobus_write EXPORT_SYMBOL vmlinux 0x9a38b65e make_kgid +EXPORT_SYMBOL vmlinux 0x9a48445e sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x9a56efa4 datagram_poll +EXPORT_SYMBOL vmlinux 0x9a57334b __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a593dd5 f_setown +EXPORT_SYMBOL vmlinux 0x9a607acf icmp_ndo_send EXPORT_SYMBOL vmlinux 0x9a6148aa sg_miter_stop EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a8f3a6e xfrm_state_update -EXPORT_SYMBOL vmlinux 0x9a9478b9 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x9a75e2f4 __break_lease +EXPORT_SYMBOL vmlinux 0x9aad2920 vme_irq_free EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ae2fa89 init_net EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9aefa688 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x9af41d2d sock_i_ino +EXPORT_SYMBOL vmlinux 0x9af0c1e9 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9af10b25 inet_recvmsg EXPORT_SYMBOL vmlinux 0x9af5d7b9 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x9afd3b69 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x9b0654f1 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x9b035b71 scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x9b2143f9 genl_unregister_family EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b30613f xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x9b280cf2 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x9b282038 scsi_add_device EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc EXPORT_SYMBOL vmlinux 0x9b4e64f0 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x9b52bcae kill_pid +EXPORT_SYMBOL vmlinux 0x9b5bdda8 __netlink_kernel_create EXPORT_SYMBOL vmlinux 0x9b69bdeb thaw_super EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b8948fd ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x9b91ebfd ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x9b989cb3 migrate_vma_pages -EXPORT_SYMBOL vmlinux 0x9bca9161 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x9b909016 vme_slave_request +EXPORT_SYMBOL vmlinux 0x9ba61c43 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x9bb18a2f cpufreq_generic_suspend EXPORT_SYMBOL vmlinux 0x9bd46605 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x9bd52f4e __skb_get_hash -EXPORT_SYMBOL vmlinux 0x9bd883d0 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x9bd92a2d xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x9bdb13c4 mmput_async EXPORT_SYMBOL vmlinux 0x9be4d931 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x9be4dc0b dentry_path_raw EXPORT_SYMBOL vmlinux 0x9beff75c __cleancache_invalidate_fs EXPORT_SYMBOL vmlinux 0x9c0f7146 d_set_d_op EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node EXPORT_SYMBOL vmlinux 0x9c1c5103 md_integrity_register -EXPORT_SYMBOL vmlinux 0x9c1d9987 read_cache_page EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath EXPORT_SYMBOL vmlinux 0x9c209ba6 devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0x9c26d441 tcf_block_put -EXPORT_SYMBOL vmlinux 0x9c2f8ab0 pipe_lock -EXPORT_SYMBOL vmlinux 0x9c3b1b51 __of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x9c307886 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x9c384108 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x9c410f53 inet_dev_addr_type EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 -EXPORT_SYMBOL vmlinux 0x9c744f28 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x9c7d775c ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x9c611e4e tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x9c6da59e vmf_insert_mixed EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c8844ad ptp_clock_event EXPORT_SYMBOL vmlinux 0x9c93aba4 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x9ca4f51b scsi_block_when_processing_errors EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cc68436 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x9cac538d generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x9cb4b87e __phy_resume EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl EXPORT_SYMBOL vmlinux 0x9cdae029 pci_choose_state +EXPORT_SYMBOL vmlinux 0x9cdd5c33 unlock_page_memcg EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9cf18275 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x9cf52ed3 mmc_set_data_timeout EXPORT_SYMBOL vmlinux 0x9d000e58 fs_param_is_u32 EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d0dfbb2 pid_task EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy EXPORT_SYMBOL vmlinux 0x9d26ba72 from_kgid_munged EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x9d2c62fe __f_setown EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d4caa1e xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x9d3704e9 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x9d40974c console_start EXPORT_SYMBOL vmlinux 0x9d5cb1a7 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x9d5d0e59 readahead_expand +EXPORT_SYMBOL vmlinux 0x9d5ffefa vm_insert_page +EXPORT_SYMBOL vmlinux 0x9d611e7b prepare_to_swait_event EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d700ef9 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x9d64542e phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x9d73b7e0 vme_init_bridge EXPORT_SYMBOL vmlinux 0x9d73f7f6 rproc_of_resm_mem_entry_init EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9da5d618 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x9da5e915 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x9db54e33 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x9dd325ea qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x9dd80fea vfs_iter_write EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel -EXPORT_SYMBOL vmlinux 0x9df66b71 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x9dfb0b4a blackhole_netdev -EXPORT_SYMBOL vmlinux 0x9e01f341 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x9e06a674 phy_ethtool_get_stats 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 0x9e2d5873 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x9e2a62c9 zap_page_range +EXPORT_SYMBOL vmlinux 0x9e2ad322 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x9e327b68 security_binder_transfer_file EXPORT_SYMBOL vmlinux 0x9e346be2 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x9e378560 devm_devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5837ce qdisc_put +EXPORT_SYMBOL vmlinux 0x9e5562c8 phy_init_eee EXPORT_SYMBOL vmlinux 0x9e5d9f9b from_kuid_munged EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e63c837 page_readlink +EXPORT_SYMBOL vmlinux 0x9e6be333 sock_recv_errqueue EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e7e4c45 xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x9e878286 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x9e98091e __ip_queue_xmit EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea0d7ad scsi_mode_sense EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq EXPORT_SYMBOL vmlinux 0x9ebe7051 devm_of_find_backlight EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ecc9993 alloc_pages EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ef989ba __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x9eee0b06 ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0x9efaba31 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x9f026a90 security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0x9f052861 of_find_all_nodes EXPORT_SYMBOL vmlinux 0x9f064a93 md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0x9f0e0131 noop_fsync -EXPORT_SYMBOL vmlinux 0x9f1e1b23 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x9f2e1387 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x9f1974ce __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x9f40d36e eth_header EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f4e96a3 __skb_recv_udp EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f624181 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x9f6072ec skb_add_rx_frag EXPORT_SYMBOL vmlinux 0x9f79a741 rproc_elf_load_segments EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw -EXPORT_SYMBOL vmlinux 0x9f80a584 file_ns_capable EXPORT_SYMBOL vmlinux 0x9f94f09b fs_param_is_string EXPORT_SYMBOL vmlinux 0x9f984513 strrchr EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fa98ba4 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x9fcc3630 inet_protos +EXPORT_SYMBOL vmlinux 0x9fa9946a build_skb_around EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe07961 __netlink_dump_start EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ff8f74c flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x9ff7faf9 keyring_clear EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00478e5 tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa012d11e inet6_add_protocol EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa02b5df2 __xfrm_state_delete EXPORT_SYMBOL vmlinux 0xa033d747 next_arg EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04763b0 kmem_cache_size EXPORT_SYMBOL vmlinux 0xa0491841 device_add_disk 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 0xa0737b42 neigh_destroy EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup -EXPORT_SYMBOL vmlinux 0xa082452f genphy_write_mmd_unsupported EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08d4124 km_policy_notify EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa09bb242 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xa09a25db sock_bindtoindex +EXPORT_SYMBOL vmlinux 0xa09aea7b __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xa0a344ee __traceiter_module_get +EXPORT_SYMBOL vmlinux 0xa0a6aa5d tcp_setsockopt EXPORT_SYMBOL vmlinux 0xa0a76013 param_get_ushort EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 @@ -9672,47 +9562,52 @@ EXPORT_SYMBOL vmlinux 0xa0c02634 dquot_get_next_id EXPORT_SYMBOL vmlinux 0xa0cf607d pci_free_irq EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e2dcdd nobh_write_end 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 0xa0ee6cd4 get_user_pages_remote -EXPORT_SYMBOL vmlinux 0xa0f02cd6 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xa0f1b87a phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xa0f12bfc filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit EXPORT_SYMBOL vmlinux 0xa0fe05cc forget_all_cached_acls EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max EXPORT_SYMBOL vmlinux 0xa10a91e1 regset_get_alloc +EXPORT_SYMBOL vmlinux 0xa1117d4e of_mdio_find_bus EXPORT_SYMBOL vmlinux 0xa11e45fb md_reload_sb -EXPORT_SYMBOL vmlinux 0xa1343e78 nf_log_register +EXPORT_SYMBOL vmlinux 0xa12a9bdd mr_dump EXPORT_SYMBOL vmlinux 0xa13573a3 pci_find_bus EXPORT_SYMBOL vmlinux 0xa13e780a gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xa148e0e4 mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0xa1643f8b security_path_unlink +EXPORT_SYMBOL vmlinux 0xa145043a __skb_get_hash +EXPORT_SYMBOL vmlinux 0xa1533e4e security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xa16407b6 xfrm_state_lookup_byaddr EXPORT_SYMBOL vmlinux 0xa1750e60 pci_set_mwi EXPORT_SYMBOL vmlinux 0xa17857d7 from_kgid -EXPORT_SYMBOL vmlinux 0xa1791bf3 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xa187b15f phy_get_pause +EXPORT_SYMBOL vmlinux 0xa18835d8 thread_group_exited EXPORT_SYMBOL vmlinux 0xa1a6fce7 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xa1b698e8 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xa1c5ab72 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xa1b0539a __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0xa1c72636 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0xa1dfca9d kernel_read EXPORT_SYMBOL vmlinux 0xa1e2b41d mark_info_dirty EXPORT_SYMBOL vmlinux 0xa2035ac6 qcom_scm_set_warm_boot_addr EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa20d8b11 ip6_frag_init -EXPORT_SYMBOL vmlinux 0xa20e66a0 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xa207863a mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xa209411d __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xa20acb89 dst_alloc +EXPORT_SYMBOL vmlinux 0xa20eec92 netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0xa21d0a5e __skb_flow_dissect EXPORT_SYMBOL vmlinux 0xa22f2fca dma_resv_copy_fences EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa234938c invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24d2a24 security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa2501ae8 devm_devfreq_register_notifier EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa2621821 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xa25da301 mr_table_dump EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa273393c nf_log_packet EXPORT_SYMBOL vmlinux 0xa28a3266 simple_rename EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa28e95c1 generic_file_open EXPORT_SYMBOL vmlinux 0xa2a11ce4 touchscreen_report_pos EXPORT_SYMBOL vmlinux 0xa2a5ef70 rproc_da_to_va EXPORT_SYMBOL vmlinux 0xa2bb9d3e pci_write_config_dword @@ -9721,173 +9616,181 @@ EXPORT_SYMBOL vmlinux 0xa2ca3820 empty_aops EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid EXPORT_SYMBOL vmlinux 0xa2cfd43d set_anon_super EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2dc88f2 nobh_writepage -EXPORT_SYMBOL vmlinux 0xa2f56cf4 alloc_fcdev -EXPORT_SYMBOL vmlinux 0xa314eafa neigh_for_each +EXPORT_SYMBOL vmlinux 0xa2de6ce3 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xa2ea5700 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xa31a5b9b ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xa3246734 splice_direct_to_actor EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xa348ff9a default_llseek +EXPORT_SYMBOL vmlinux 0xa34eef5e ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np -EXPORT_SYMBOL vmlinux 0xa35548f4 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xa35bfa5e skb_unlink EXPORT_SYMBOL vmlinux 0xa35c388f of_translate_address EXPORT_SYMBOL vmlinux 0xa36096e3 param_ops_byte -EXPORT_SYMBOL vmlinux 0xa3724bf6 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xa3755402 mdiobus_free +EXPORT_SYMBOL vmlinux 0xa3758486 clear_page_dirty_for_io EXPORT_SYMBOL vmlinux 0xa37d2782 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xa3888c31 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xa3a09855 ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0xa3a3f229 cpumask_next_and -EXPORT_SYMBOL vmlinux 0xa3af7faa tcf_exts_destroy EXPORT_SYMBOL vmlinux 0xa3b4c47d dm_unregister_target EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3c4b423 netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update -EXPORT_SYMBOL vmlinux 0xa3e0da8b __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0xa3e9ec4b nla_reserve_64bit EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final EXPORT_SYMBOL vmlinux 0xa3ff79db pnp_register_driver +EXPORT_SYMBOL vmlinux 0xa404a4ee file_path EXPORT_SYMBOL vmlinux 0xa40775b5 md_bitmap_startwrite EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa41f0a75 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xa434a22a sock_efree EXPORT_SYMBOL vmlinux 0xa43a8027 nd_pfn_probe EXPORT_SYMBOL vmlinux 0xa43c26cc registered_fb EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key EXPORT_SYMBOL vmlinux 0xa44a0469 remove_conflicting_pci_framebuffers EXPORT_SYMBOL vmlinux 0xa4530f56 import_single_range +EXPORT_SYMBOL vmlinux 0xa453e601 fib_default_rule_add EXPORT_SYMBOL vmlinux 0xa46ab4dd mdio_device_reset EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction EXPORT_SYMBOL vmlinux 0xa47ed64b t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xa4965078 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xa4965d2b try_to_free_buffers EXPORT_SYMBOL vmlinux 0xa4978a16 dma_pool_create +EXPORT_SYMBOL vmlinux 0xa4a636c2 gro_find_complete_by_type EXPORT_SYMBOL vmlinux 0xa4abab40 ihold +EXPORT_SYMBOL vmlinux 0xa4ac660f __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xa4d2007e vfs_tmpfile +EXPORT_SYMBOL vmlinux 0xa4e6ffb0 generic_splice_sendpage EXPORT_SYMBOL vmlinux 0xa4e7bfa8 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xa4e9b1a7 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xa4f30536 __scsi_iterate_devices EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock EXPORT_SYMBOL vmlinux 0xa5064be7 devm_gen_pool_create EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit EXPORT_SYMBOL vmlinux 0xa51912aa fb_find_mode +EXPORT_SYMBOL vmlinux 0xa5233dcb security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xa52b6993 write_dirty_buffer EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa5511dcf security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xa5342b58 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xa5455297 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xa547a40e xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xa54b7fb4 posix_test_lock +EXPORT_SYMBOL vmlinux 0xa54e56ee inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55c6f77 netdev_change_features +EXPORT_SYMBOL vmlinux 0xa570c9cf netdev_info +EXPORT_SYMBOL vmlinux 0xa576bdb6 skb_page_frag_refill EXPORT_SYMBOL vmlinux 0xa582d1f0 bio_kmalloc -EXPORT_SYMBOL vmlinux 0xa590acd8 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xa5879b59 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xa58c6737 iw_handler_get_thrspy EXPORT_SYMBOL vmlinux 0xa595f6bc kobject_init EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock EXPORT_SYMBOL vmlinux 0xa59918f3 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xa5a18545 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xa59bf1c2 udp_pre_connect EXPORT_SYMBOL vmlinux 0xa5a33aa8 is_subdir EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound EXPORT_SYMBOL vmlinux 0xa5b914fe cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0xa5eaddb6 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xa5dcda46 qdisc_put +EXPORT_SYMBOL vmlinux 0xa5e37e70 sock_gettstamp EXPORT_SYMBOL vmlinux 0xa5ecfa1a mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xa5f4dfcd i2c_get_adapter EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xa5f8bf21 ipv6_dev_get_saddr EXPORT_SYMBOL vmlinux 0xa60c8743 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xa60d38c6 phy_start_aneg EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa63a26f0 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xa63bd6ab gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds -EXPORT_SYMBOL vmlinux 0xa65871a3 genlmsg_put +EXPORT_SYMBOL vmlinux 0xa6606ab0 dst_init +EXPORT_SYMBOL vmlinux 0xa668c5bd user_path_at_empty EXPORT_SYMBOL vmlinux 0xa66a51df __cleancache_init_fs EXPORT_SYMBOL vmlinux 0xa66daad4 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0xa676e893 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0xa67c445c submit_bio_noacct -EXPORT_SYMBOL vmlinux 0xa67f9ade gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xa66f63fd crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xa66f8238 netlink_kernel_release EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa68a32dc jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xa68993c4 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xa68b0f30 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0xa68e576f block_invalidatepage EXPORT_SYMBOL vmlinux 0xa68ea346 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xa6939a9f tso_count_descs EXPORT_SYMBOL vmlinux 0xa6a98584 key_put -EXPORT_SYMBOL vmlinux 0xa6b14a37 posix_lock_file +EXPORT_SYMBOL vmlinux 0xa6b000c7 dev_get_by_napi_id EXPORT_SYMBOL vmlinux 0xa6b256f9 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xa6d8aa4b sock_pfree +EXPORT_SYMBOL vmlinux 0xa6d5aaba _dev_emerg EXPORT_SYMBOL vmlinux 0xa702fdae set_capacity EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa710cd39 __kfree_skb EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config -EXPORT_SYMBOL vmlinux 0xa71c0ef2 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order EXPORT_SYMBOL vmlinux 0xa72bcda6 pci_remove_bus EXPORT_SYMBOL vmlinux 0xa738ffc7 mdiobus_setup_mdiodev_from_board_info EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock EXPORT_SYMBOL vmlinux 0xa74cf6b8 register_framebuffer EXPORT_SYMBOL vmlinux 0xa752bb63 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0xa75f2efc follow_up +EXPORT_SYMBOL vmlinux 0xa7540571 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0xa76577b2 vm_map_pages_zero EXPORT_SYMBOL vmlinux 0xa7708016 get_ipc_ns_exported EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa78471d5 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0xa79c4a2c tcf_idr_release EXPORT_SYMBOL vmlinux 0xa79c7f57 pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0xa7c12fc8 dst_init EXPORT_SYMBOL vmlinux 0xa7d0c366 pci_wake_from_d3 EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy -EXPORT_SYMBOL vmlinux 0xa7deb654 tcf_idr_search EXPORT_SYMBOL vmlinux 0xa7ec0098 param_set_ushort EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper EXPORT_SYMBOL vmlinux 0xa7f00391 fb_pan_display EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec EXPORT_SYMBOL vmlinux 0xa81d2964 dquot_quota_off -EXPORT_SYMBOL vmlinux 0xa82919ee __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xa83bd5f2 __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox EXPORT_SYMBOL vmlinux 0xa853396b xa_extract EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa86c3ea7 unregister_netdev -EXPORT_SYMBOL vmlinux 0xa87971d6 write_cache_pages -EXPORT_SYMBOL vmlinux 0xa87b4cd3 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xa88b91e5 sock_kzfree_s EXPORT_SYMBOL vmlinux 0xa8927d24 simple_get_link EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xa89db888 napi_get_frags +EXPORT_SYMBOL vmlinux 0xa89b5b95 inet_sendpage EXPORT_SYMBOL vmlinux 0xa89ddbec fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0xa8a4291c in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xa8a7fb20 skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8af9c41 devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0xa8c04280 fman_bind -EXPORT_SYMBOL vmlinux 0xa8c541a8 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xa8c9c145 devm_mfd_add_devices EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all EXPORT_SYMBOL vmlinux 0xa8d1eabc of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0xa8d492d0 dev_uc_flush -EXPORT_SYMBOL vmlinux 0xa8d6679b udp_gro_complete EXPORT_SYMBOL vmlinux 0xa8dd340e of_find_node_with_property -EXPORT_SYMBOL vmlinux 0xa8e0797a inet6_bind EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8eafd78 phy_mii_ioctl EXPORT_SYMBOL vmlinux 0xa8ece4e3 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xa8f2527a sk_mc_loop -EXPORT_SYMBOL vmlinux 0xa8f29341 __traceiter_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa9006191 vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0xa909d72d generic_permission EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -EXPORT_SYMBOL vmlinux 0xa90ff871 sock_wake_async EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa91a7f10 scsi_scan_host -EXPORT_SYMBOL vmlinux 0xa91de286 dev_mc_del EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xa926e7d3 dcb_getapp -EXPORT_SYMBOL vmlinux 0xa927777f __netif_schedule +EXPORT_SYMBOL vmlinux 0xa92aee44 fget +EXPORT_SYMBOL vmlinux 0xa92b044c set_bh_page +EXPORT_SYMBOL vmlinux 0xa9311b3d do_clone_file_range +EXPORT_SYMBOL vmlinux 0xa9371828 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xa93800e0 phy_find_first EXPORT_SYMBOL vmlinux 0xa954563c phy_write_mmd EXPORT_SYMBOL vmlinux 0xa9565294 devm_ioremap_wc EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa9703e97 starget_for_each_device EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap EXPORT_SYMBOL vmlinux 0xa98ce930 max8998_bulk_write EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9a2942b __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0xa9afeb12 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xa9ea40f2 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xa99b65d1 security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xa9ed9a24 begin_new_exec EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf -EXPORT_SYMBOL vmlinux 0xaa0c41f7 mii_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xaa0cf028 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0xaa13e2e3 phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa2e2754 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xaa332743 neigh_table_clear EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa5203a9 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xaa39acef flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0xaa3f65c9 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xaa4acc3b compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0xaa64ad8b may_setattr EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa774dfc kern_unmount -EXPORT_SYMBOL vmlinux 0xaa7ad1d5 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0xaa7b04ba tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL vmlinux 0xaa8e83df dump_skip_to +EXPORT_SYMBOL vmlinux 0xaa868f19 dev_set_threaded EXPORT_SYMBOL vmlinux 0xaa9183c0 of_cpu_node_to_id EXPORT_SYMBOL vmlinux 0xaaa26f1a param_set_bint EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic @@ -9895,164 +9798,152 @@ EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change EXPORT_SYMBOL vmlinux 0xaaadd009 __blockdev_direct_IO EXPORT_SYMBOL vmlinux 0xaab47b4b notify_change EXPORT_SYMBOL vmlinux 0xaac4370c rfkill_alloc -EXPORT_SYMBOL vmlinux 0xaacf3020 blk_get_request +EXPORT_SYMBOL vmlinux 0xaac8ecbf key_link 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 0xaadfe9f8 path_get -EXPORT_SYMBOL vmlinux 0xaae81d99 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xaae71c8d devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaee3da0 sock_no_bind EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab0e0405 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0xab27285e filemap_check_errors +EXPORT_SYMBOL vmlinux 0xab2ba8ac neigh_app_ns EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab4161d5 phy_validate_pause EXPORT_SYMBOL vmlinux 0xab5f55b5 unregister_quota_format EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab6584fb mr_mfc_find_parent EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab6a9dba pagecache_write_begin EXPORT_SYMBOL vmlinux 0xab6b3325 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xab6c8d31 nf_hook_slow_list EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab9420df of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0xab9a530e phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0xab9d0afc end_page_private_2 -EXPORT_SYMBOL vmlinux 0xaba51c93 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xab9a09dd mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xaba5acec dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0xabbbd3f2 __frontswap_load EXPORT_SYMBOL vmlinux 0xabc65255 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0xabd2d9d7 block_truncate_page -EXPORT_SYMBOL vmlinux 0xabe075b7 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xabc73a9d security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init EXPORT_SYMBOL vmlinux 0xabf17bbe pci_pme_active EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s EXPORT_SYMBOL vmlinux 0xac06c223 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0xac0c32ee xfrm4_protocol_register EXPORT_SYMBOL vmlinux 0xac126892 to_ndd -EXPORT_SYMBOL vmlinux 0xac166495 tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac223399 key_unlink EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac459ae0 __skb_gso_segment EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac648b81 _dev_alert -EXPORT_SYMBOL vmlinux 0xac64cfaa inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0xac6eb818 padata_free_shell EXPORT_SYMBOL vmlinux 0xac753ffe __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xac76cf79 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0xac9333e3 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0xac9f0114 sock_kmalloc EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacad845a scsi_report_device_reset EXPORT_SYMBOL vmlinux 0xacb2f01c acpi_device_set_power -EXPORT_SYMBOL vmlinux 0xacb696a8 __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0xacb78ae6 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0xacbbf556 phy_sfp_probe EXPORT_SYMBOL vmlinux 0xacce9326 max8998_update_reg EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xacebe68f ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0xacef5bce dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xacf002cb may_umount_tree +EXPORT_SYMBOL vmlinux 0xaced4ce6 passthru_features_check +EXPORT_SYMBOL vmlinux 0xacf0c9b8 __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xad14614e genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0xad17785a __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xad2a7fd5 locks_init_lock -EXPORT_SYMBOL vmlinux 0xad30f6d4 phy_support_asym_pause EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node EXPORT_SYMBOL vmlinux 0xad39a44f iommu_dma_get_resv_regions EXPORT_SYMBOL vmlinux 0xad3dd279 input_set_poll_interval EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove -EXPORT_SYMBOL vmlinux 0xad4019d9 __scsi_device_lookup EXPORT_SYMBOL vmlinux 0xad4139a4 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0xad43a864 pagecache_get_page EXPORT_SYMBOL vmlinux 0xad4cf394 mipi_dsi_dcs_soft_reset EXPORT_SYMBOL vmlinux 0xad5a7694 pci_pme_capable 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 0xad7377a8 _dev_printk EXPORT_SYMBOL vmlinux 0xad7a8f5d dm_kcopyd_copy EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue -EXPORT_SYMBOL vmlinux 0xad9ac954 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xad9ec738 seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xada68ea3 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xadaa545e __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadb06e8b tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0xadb62fda read_cache_pages -EXPORT_SYMBOL vmlinux 0xadb7484f inet_frag_pull_head EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long EXPORT_SYMBOL vmlinux 0xadc4afde scsi_rescan_device EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadd3951b filemap_fault +EXPORT_SYMBOL vmlinux 0xade9cedc xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0xadf00183 dmam_pool_create -EXPORT_SYMBOL vmlinux 0xadf0b163 submit_bio -EXPORT_SYMBOL vmlinux 0xadf56016 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xadf8375b xsk_tx_release +EXPORT_SYMBOL vmlinux 0xadf69331 phy_resume EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae02afe2 security_sctp_bind_connect EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc EXPORT_SYMBOL vmlinux 0xae0d54a3 dquot_initialize_needed EXPORT_SYMBOL vmlinux 0xae128393 kset_register +EXPORT_SYMBOL vmlinux 0xae1f5493 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xae2c0e78 __skb_pad +EXPORT_SYMBOL vmlinux 0xae306d0d phy_attached_info EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair -EXPORT_SYMBOL vmlinux 0xae3a377d i2c_clients_command +EXPORT_SYMBOL vmlinux 0xae3956b3 ptp_cancel_worker_sync EXPORT_SYMBOL vmlinux 0xae4a7981 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0xae530100 nvmem_get_mac_address EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae66e015 page_get_link EXPORT_SYMBOL vmlinux 0xae6b23d6 address_space_init_once -EXPORT_SYMBOL vmlinux 0xae71c315 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xae76f47e sk_error_report +EXPORT_SYMBOL vmlinux 0xae7bf433 ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0xae8be2a4 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xae911b73 jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0xae9a626f rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0xae9d98af register_filesystem +EXPORT_SYMBOL vmlinux 0xaea63326 read_cache_page_gfp EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeb44b4d i2c_smbus_read_byte EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaed0d224 phy_register_fixup EXPORT_SYMBOL vmlinux 0xaed2b0ad __dquot_free_space -EXPORT_SYMBOL vmlinux 0xaed6f32b sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xaeda5313 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xaedaa11c unregister_shrinker +EXPORT_SYMBOL vmlinux 0xaedcf708 vfs_getattr_nosec EXPORT_SYMBOL vmlinux 0xaee17315 padata_do_parallel -EXPORT_SYMBOL vmlinux 0xaf0d0c20 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xaeecd87e nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xaeed3cfa __mdiobus_register +EXPORT_SYMBOL vmlinux 0xaefa9d13 netdev_features_change +EXPORT_SYMBOL vmlinux 0xaf05b8a2 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0xaf122cbd rtnl_notify EXPORT_SYMBOL vmlinux 0xaf15ec52 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0xaf2c5659 phy_queue_state_machine EXPORT_SYMBOL vmlinux 0xaf309092 fman_port_bind +EXPORT_SYMBOL vmlinux 0xaf32ab2b nf_ip6_checksum EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf4c7403 dev_change_carrier -EXPORT_SYMBOL vmlinux 0xaf4f658b ppp_dev_name EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings -EXPORT_SYMBOL vmlinux 0xaf66b4a6 scsi_host_put EXPORT_SYMBOL vmlinux 0xaf717238 sync_file_create +EXPORT_SYMBOL vmlinux 0xaf752e07 ip_mc_join_group EXPORT_SYMBOL vmlinux 0xaf7a161c pnp_device_attach -EXPORT_SYMBOL vmlinux 0xaf8c3e35 skb_vlan_push -EXPORT_SYMBOL vmlinux 0xaf9ccf38 unregister_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name EXPORT_SYMBOL vmlinux 0xafc55be4 ps2_sliced_command EXPORT_SYMBOL vmlinux 0xafc79926 pm860x_bulk_write EXPORT_SYMBOL vmlinux 0xafc8670e rproc_coredump_add_segment EXPORT_SYMBOL vmlinux 0xafd43cc2 uart_resume_port +EXPORT_SYMBOL vmlinux 0xafd8ed38 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xaff28cd8 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xb0051550 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xb00a40ce __test_set_page_writeback EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb02dcb0f ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xb0339626 vme_irq_free +EXPORT_SYMBOL vmlinux 0xb031a28c nexthop_set_hw_flags EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic EXPORT_SYMBOL vmlinux 0xb04c25d6 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0xb04dd141 dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats +EXPORT_SYMBOL vmlinux 0xb05dd661 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb06bb541 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xb05fd31b phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xb0713b14 mii_ethtool_gset EXPORT_SYMBOL vmlinux 0xb079a104 framebuffer_release -EXPORT_SYMBOL vmlinux 0xb084aaa7 capable_wrt_inode_uidgid EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a776aa find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xb0aa8a7c fasync_helper +EXPORT_SYMBOL vmlinux 0xb0bb75cf tcp_disconnect EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0c95829 skb_queue_head +EXPORT_SYMBOL vmlinux 0xb0d42a09 vfs_ioctl EXPORT_SYMBOL vmlinux 0xb0d47adb acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0xb0dbf5ac set_page_dirty_lock EXPORT_SYMBOL vmlinux 0xb0e10781 get_option EXPORT_SYMBOL vmlinux 0xb0e3bde6 max8925_reg_read -EXPORT_SYMBOL vmlinux 0xb0f1c0c2 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xb0f0bbe3 tcp_release_cb EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize EXPORT_SYMBOL vmlinux 0xb0fc1b41 rproc_shutdown EXPORT_SYMBOL vmlinux 0xb0fc6b83 bio_put @@ -10060,533 +9951,542 @@ EXPORT_SYMBOL vmlinux 0xb0fccd26 tegra_ahb_enable_smmu EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare EXPORT_SYMBOL vmlinux 0xb110e3e6 mdio_device_free EXPORT_SYMBOL vmlinux 0xb111c4ca param_ops_bint -EXPORT_SYMBOL vmlinux 0xb1125112 tcp_md5_do_add EXPORT_SYMBOL vmlinux 0xb1153b79 bdev_read_only EXPORT_SYMBOL vmlinux 0xb11f78a2 setattr_should_drop_suidgid EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on EXPORT_SYMBOL vmlinux 0xb1258eb5 page_pool_alloc_frag EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb13fbb2d __skb_ext_del EXPORT_SYMBOL vmlinux 0xb1430e91 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xb147e141 inet_frag_find EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb15efa97 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0xb1682c76 close_fd_get_file -EXPORT_SYMBOL vmlinux 0xb19991d3 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work +EXPORT_SYMBOL vmlinux 0xb193a945 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xb19a9358 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xb1a69104 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xb1ac3d02 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xb1ada9a5 ipv6_mc_check_mld EXPORT_SYMBOL vmlinux 0xb1ae5507 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xb1b33fa2 xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0xb1b660e9 pmem_sector_size -EXPORT_SYMBOL vmlinux 0xb1b8babe jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1d08f8d inet_pton_with_scope EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find -EXPORT_SYMBOL vmlinux 0xb1dd706d netdev_change_features EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb209c00d __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xb1e774a9 sk_page_frag_refill EXPORT_SYMBOL vmlinux 0xb2153c73 d_add EXPORT_SYMBOL vmlinux 0xb217dea9 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xb2212e86 skb_checksum +EXPORT_SYMBOL vmlinux 0xb2181b94 __f_setown +EXPORT_SYMBOL vmlinux 0xb2211ed8 __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb23496d8 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xb24290e0 set_binfmt -EXPORT_SYMBOL vmlinux 0xb24a34c5 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0xb24cf1da filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0xb282532d iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xb288bffa security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0xb25423b7 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xb268c077 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xb2a21822 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xb2a74e6a kern_path_create +EXPORT_SYMBOL vmlinux 0xb2b41053 __wait_on_buffer EXPORT_SYMBOL vmlinux 0xb2ba8006 mod_zone_page_state EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count EXPORT_SYMBOL vmlinux 0xb2ccf10a simple_statfs -EXPORT_SYMBOL vmlinux 0xb2d05277 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xb2ea90cd xp_can_alloc EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr +EXPORT_SYMBOL vmlinux 0xb2eee83e read_cache_pages EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 -EXPORT_SYMBOL vmlinux 0xb2fb3da0 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xb2f930a3 netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken EXPORT_SYMBOL vmlinux 0xb3097807 blk_rq_count_integrity_sg EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb30d3d6e key_type_keyring -EXPORT_SYMBOL vmlinux 0xb3164cf0 tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0xb31cb4f2 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xb30e27b6 __breadahead +EXPORT_SYMBOL vmlinux 0xb317fd43 dev_activate 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 0xb33e67f1 tcp_getsockopt EXPORT_SYMBOL vmlinux 0xb348bf29 pci_set_power_state EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg -EXPORT_SYMBOL vmlinux 0xb35b0f80 netdev_alert +EXPORT_SYMBOL vmlinux 0xb366528c __scsi_print_sense EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock EXPORT_SYMBOL vmlinux 0xb37b602e backlight_force_update EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc +EXPORT_SYMBOL vmlinux 0xb3ace698 nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0xb3b0c900 of_find_node_opts_by_path EXPORT_SYMBOL vmlinux 0xb3b973b9 blk_queue_update_dma_pad EXPORT_SYMBOL vmlinux 0xb3bb92a4 tty_insert_flip_string_fixed_flag EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string EXPORT_SYMBOL vmlinux 0xb3e55822 backlight_device_register -EXPORT_SYMBOL vmlinux 0xb3f3bd60 locks_copy_conflock EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb4022e65 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xb3fe0c25 mmc_erase EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method EXPORT_SYMBOL vmlinux 0xb40750dc __dquot_transfer EXPORT_SYMBOL vmlinux 0xb41a5b65 mipi_dsi_dcs_set_display_brightness_large -EXPORT_SYMBOL vmlinux 0xb41baade skb_queue_purge EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4296833 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xb4366131 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xb43bde14 jbd2_journal_revoke EXPORT_SYMBOL vmlinux 0xb44dc68d amba_driver_unregister EXPORT_SYMBOL vmlinux 0xb44f9804 uart_remove_one_port EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb4618ce9 gro_cells_init -EXPORT_SYMBOL vmlinux 0xb4633c0c mmc_retune_release EXPORT_SYMBOL vmlinux 0xb473f69b mipi_dsi_picture_parameter_set EXPORT_SYMBOL vmlinux 0xb47d42fd pm_vt_switch_unregister EXPORT_SYMBOL vmlinux 0xb48403ca bdi_register EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts EXPORT_SYMBOL vmlinux 0xb48e49fe cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xb492bf1a freezing_slow_path +EXPORT_SYMBOL vmlinux 0xb4919c93 netdev_state_change EXPORT_SYMBOL vmlinux 0xb4bddd32 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xb4c8b2be inet_add_protocol EXPORT_SYMBOL vmlinux 0xb4d66522 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0xb4d9b8c4 skb_queue_head EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb5007a5d clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0xb504cc55 end_page_private_2 +EXPORT_SYMBOL vmlinux 0xb50a1627 send_sig EXPORT_SYMBOL vmlinux 0xb510c63e blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xb5126500 genphy_resume EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb542909a register_qdisc -EXPORT_SYMBOL vmlinux 0xb54a34d5 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xb56fe632 tcf_idr_release +EXPORT_SYMBOL vmlinux 0xb56e5e8a fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink EXPORT_SYMBOL vmlinux 0xb576ec02 md_write_end -EXPORT_SYMBOL vmlinux 0xb57ec2a2 sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb5912d29 vfs_parse_fs_param EXPORT_SYMBOL vmlinux 0xb596e30b __nla_reserve_64bit EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a636f8 locks_remove_posix EXPORT_SYMBOL vmlinux 0xb5aa5d95 iommu_get_dma_cookie EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ab7225 phy_detach EXPORT_SYMBOL vmlinux 0xb5b5383c mipi_dsi_dcs_set_display_off EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5e175d9 phy_start EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5f6d876 ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0xb5f7965d security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xb608482a jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xb6000275 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xb6007ccb pipe_unlock +EXPORT_SYMBOL vmlinux 0xb603f324 unregister_netdev EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible -EXPORT_SYMBOL vmlinux 0xb625aee1 neigh_connected_output EXPORT_SYMBOL vmlinux 0xb629895e jbd2__journal_start EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb63e003e seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0xb63e5158 security_path_mkdir -EXPORT_SYMBOL vmlinux 0xb643eac4 i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0xb6454056 phy_read_mmd EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb65685b4 phy_init_hw EXPORT_SYMBOL vmlinux 0xb65e85cc dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xb672ebd8 poll_freewait +EXPORT_SYMBOL vmlinux 0xb6734ed7 skb_realloc_headroom EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt EXPORT_SYMBOL vmlinux 0xb678c111 pcim_iomap EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb680ddcf tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0xb68ad311 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0xb691d0d2 dev_addr_init +EXPORT_SYMBOL vmlinux 0xb6818b3d flow_rule_alloc EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute EXPORT_SYMBOL vmlinux 0xb6e68b26 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xb6e9906d devfreq_suspend_device EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd EXPORT_SYMBOL vmlinux 0xb7050011 of_get_compatible_child EXPORT_SYMBOL vmlinux 0xb7079e07 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xb70a8518 dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb720f663 free_task -EXPORT_SYMBOL vmlinux 0xb72ba755 i2c_del_driver EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb7616529 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xb74adcce nf_getsockopt +EXPORT_SYMBOL vmlinux 0xb754d8a5 netif_rx_ni EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb78e664d dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0xb797cab0 dquot_drop EXPORT_SYMBOL vmlinux 0xb79c2613 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xb7a14461 kfree_skb_list EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states -EXPORT_SYMBOL vmlinux 0xb7ba045a scsi_change_queue_depth EXPORT_SYMBOL vmlinux 0xb7c0f443 sort EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7cb3176 open_with_fake_path +EXPORT_SYMBOL vmlinux 0xb7c92d21 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0xb7e34475 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xb7e4e3d2 register_netdevice EXPORT_SYMBOL vmlinux 0xb7f020bf from_kuid EXPORT_SYMBOL vmlinux 0xb7f437f7 irq_set_chip -EXPORT_SYMBOL vmlinux 0xb7f5e095 __lock_page -EXPORT_SYMBOL vmlinux 0xb7f85073 do_splice_direct -EXPORT_SYMBOL vmlinux 0xb808c65b lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0xb8183afd ip_route_me_harder EXPORT_SYMBOL vmlinux 0xb81865a3 insert_inode_locked -EXPORT_SYMBOL vmlinux 0xb81dd77d scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xb8254909 skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb84576ea tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xb85632cc phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xb85f8b4f rps_may_expire_flow EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add +EXPORT_SYMBOL vmlinux 0xb8679ea9 tcf_idr_cleanup EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key EXPORT_SYMBOL vmlinux 0xb86b5184 fs_param_is_s32 EXPORT_SYMBOL vmlinux 0xb8711d53 file_modified -EXPORT_SYMBOL vmlinux 0xb87c91b5 dev_add_pack EXPORT_SYMBOL vmlinux 0xb87d7779 pci_assign_resource -EXPORT_SYMBOL vmlinux 0xb8889df7 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xb88d4af7 __brelse EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups EXPORT_SYMBOL vmlinux 0xb88ff4e6 serio_interrupt -EXPORT_SYMBOL vmlinux 0xb8947112 fasync_helper +EXPORT_SYMBOL vmlinux 0xb896809f shmem_aops EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8a33090 eth_header +EXPORT_SYMBOL vmlinux 0xb8ad3253 generic_writepages EXPORT_SYMBOL vmlinux 0xb8ad6860 generic_update_time -EXPORT_SYMBOL vmlinux 0xb8af2735 wake_up_process EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b1743a dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace EXPORT_SYMBOL vmlinux 0xb8cc994a dget_parent +EXPORT_SYMBOL vmlinux 0xb8d39431 __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0xb8dc2809 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xb8e16f30 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xb8f7c552 generic_file_llseek -EXPORT_SYMBOL vmlinux 0xb8f8442b read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xb904e1bf inet_bind +EXPORT_SYMBOL vmlinux 0xb8fe2bf0 devfreq_update_interval EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb9114b51 phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb92e4ef8 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0xb92fcbed flush_signals +EXPORT_SYMBOL vmlinux 0xb918ed6f acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xb92d5b48 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0xb93fd5da single_release EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb946e9c1 vm_map_pages EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb94fe8f1 tcf_em_register -EXPORT_SYMBOL vmlinux 0xb970a487 ata_std_end_eh EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb9a727d4 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0xb9acece7 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xb9ad1819 generic_perform_write -EXPORT_SYMBOL vmlinux 0xb9ae3fc9 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xb982576e lock_rename +EXPORT_SYMBOL vmlinux 0xb991445a mntput +EXPORT_SYMBOL vmlinux 0xb99162a3 devfreq_update_status +EXPORT_SYMBOL vmlinux 0xb9916ce9 tcp_poll +EXPORT_SYMBOL vmlinux 0xb995da99 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xb99bdb1d inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xb99bee29 sock_no_linger +EXPORT_SYMBOL vmlinux 0xb99f18c5 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xb9a47be5 generic_listxattr EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark EXPORT_SYMBOL vmlinux 0xb9bcb9b0 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xb9c3bc57 ether_setup EXPORT_SYMBOL vmlinux 0xb9c83504 tty_port_close -EXPORT_SYMBOL vmlinux 0xb9d8d833 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0xb9db5a91 of_get_ethdev_address -EXPORT_SYMBOL vmlinux 0xb9e87e9b vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters EXPORT_SYMBOL vmlinux 0xb9ed608f serio_unregister_port EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba244583 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xba19ce3d __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xba3add9f netpoll_poll_disable EXPORT_SYMBOL vmlinux 0xba47c502 iov_iter_single_seg_count EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4b704f ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xba4dfb9e get_task_cred EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba5c2c10 xp_can_alloc -EXPORT_SYMBOL vmlinux 0xba5cb506 skb_free_datagram EXPORT_SYMBOL vmlinux 0xba6999b8 fman_register_intr EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk EXPORT_SYMBOL vmlinux 0xba744716 stop_tty -EXPORT_SYMBOL vmlinux 0xba89746c balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xba93897c tcp_peek_len -EXPORT_SYMBOL vmlinux 0xba94b4be jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xba971334 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xba9b2020 km_policy_expired -EXPORT_SYMBOL vmlinux 0xbaa21fb3 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xbaa9166c inode_permission -EXPORT_SYMBOL vmlinux 0xbabdc2ec sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xbadab4ab vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xba77fea9 dev_addr_add +EXPORT_SYMBOL vmlinux 0xba7ee54a inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xbaa7b56e inet_frag_find EXPORT_SYMBOL vmlinux 0xbaea297c fault_in_iov_iter_readable -EXPORT_SYMBOL vmlinux 0xbaf7b46a inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xbaf13f9b mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0xbafabe9f pci_request_irq -EXPORT_SYMBOL vmlinux 0xbafb2f98 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xbb009883 dev_activate EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0961a4 of_clk_get -EXPORT_SYMBOL vmlinux 0xbb1fb20c ip_getsockopt EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb371363 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xbb375305 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xbb4e3b31 xfrm_policy_flush EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer EXPORT_SYMBOL vmlinux 0xbb5a9841 devm_iounmap EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool -EXPORT_SYMBOL vmlinux 0xbb86a875 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xbb892ce9 skb_copy_header EXPORT_SYMBOL vmlinux 0xbb919661 pcie_get_speed_cap EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbba5deb4 flow_rule_match_ip EXPORT_SYMBOL vmlinux 0xbbac7995 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xbbc92093 xfrm_policy_byid EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbbfc5df6 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0xbc09b2f2 ptp_clock_index -EXPORT_SYMBOL vmlinux 0xbc198a6a tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xbbf68655 __xfrm_route_forward EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc231084 kernel_sendpage_locked EXPORT_SYMBOL vmlinux 0xbc26b9d1 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xbc63feb9 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xbc31518e phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xbc3c123a msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0xbc441a19 sk_stream_error +EXPORT_SYMBOL vmlinux 0xbc675357 dev_change_carrier +EXPORT_SYMBOL vmlinux 0xbc7e9dc4 mmc_unregister_driver EXPORT_SYMBOL vmlinux 0xbc82bc31 fman_reset_mac -EXPORT_SYMBOL vmlinux 0xbc8c4ae4 netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0xbc8e61f7 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xbc8d5c03 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xbc95b45f vme_register_bridge EXPORT_SYMBOL vmlinux 0xbca2da3b pci_bus_add_devices EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf EXPORT_SYMBOL vmlinux 0xbcaffc35 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0xbcda57cc phy_device_register -EXPORT_SYMBOL vmlinux 0xbcdbf7ac mii_check_link -EXPORT_SYMBOL vmlinux 0xbd0200df register_netdevice +EXPORT_SYMBOL vmlinux 0xbcc58a60 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xbcc95ac9 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xbcd673c3 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xbce91bc4 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xbceaca48 arp_tbl +EXPORT_SYMBOL vmlinux 0xbd3f7b4c __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xbd410fed proto_register +EXPORT_SYMBOL vmlinux 0xbd43e376 sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd463e99 vme_lm_request EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0xbd64a6c8 bdev_check_media_change EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 EXPORT_SYMBOL vmlinux 0xbd699081 pci_find_resource -EXPORT_SYMBOL vmlinux 0xbd71efcc ppp_input_error EXPORT_SYMBOL vmlinux 0xbd74ab85 proc_symlink -EXPORT_SYMBOL vmlinux 0xbd9a0c6e qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0xbdb390b9 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xbdb4216a netlink_broadcast -EXPORT_SYMBOL vmlinux 0xbddb60a5 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xbe0c24e9 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0xbd7e91e9 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xbdbfd923 open_with_fake_path +EXPORT_SYMBOL vmlinux 0xbdcc2464 kernel_listen +EXPORT_SYMBOL vmlinux 0xbdd34e34 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xbdd90515 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xbde40248 scsi_device_get +EXPORT_SYMBOL vmlinux 0xbde4f807 brioctl_set +EXPORT_SYMBOL vmlinux 0xbe0e5d07 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xbe0e6a46 sk_dst_check EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock EXPORT_SYMBOL vmlinux 0xbe26af03 truncate_inode_pages_final EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe557b96 udp6_csum_init EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state EXPORT_SYMBOL vmlinux 0xbe66fe02 processors EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit -EXPORT_SYMBOL vmlinux 0xbe75eef8 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xbe6e6b1c vfs_readlink EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xbe8a7636 skb_put +EXPORT_SYMBOL vmlinux 0xbe879f85 jbd2_journal_get_write_access EXPORT_SYMBOL vmlinux 0xbe8ebc25 unregister_cdrom -EXPORT_SYMBOL vmlinux 0xbe91f712 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xbea10b5e scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0xbeab8c9d param_get_long -EXPORT_SYMBOL vmlinux 0xbebba385 __mmap_lock_do_trace_start_locking EXPORT_SYMBOL vmlinux 0xbec5b577 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xbec724f1 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xbeccedb7 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0xbed27b07 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xbed3280f sync_inode_metadata EXPORT_SYMBOL vmlinux 0xbed487ae page_mapping EXPORT_SYMBOL vmlinux 0xbed9335b padata_alloc -EXPORT_SYMBOL vmlinux 0xbedaa5bb tegra_dfll_unregister -EXPORT_SYMBOL vmlinux 0xbedc4db3 netdev_update_features +EXPORT_SYMBOL vmlinux 0xbedd1bfc lease_get_mtime +EXPORT_SYMBOL vmlinux 0xbee4843c nf_ip_checksum EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbf1aeb99 sk_net_capable +EXPORT_SYMBOL vmlinux 0xbf09b86c __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xbf18941f gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0xbf29f1de devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xbf2eb131 jbd2_journal_flush EXPORT_SYMBOL vmlinux 0xbf3903dc dquot_claim_space_nodirty EXPORT_SYMBOL vmlinux 0xbf410319 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xbf4dca2a netlink_set_err EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init EXPORT_SYMBOL vmlinux 0xbf6490cc md_check_recovery -EXPORT_SYMBOL vmlinux 0xbf65868a tcp_close +EXPORT_SYMBOL vmlinux 0xbf68da56 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xbf69cfc1 __bread_gfp +EXPORT_SYMBOL vmlinux 0xbf7da96e sock_init_data_uid +EXPORT_SYMBOL vmlinux 0xbf809c7c register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0xbf831c99 param_set_ullong -EXPORT_SYMBOL vmlinux 0xbf908290 skb_copy_bits -EXPORT_SYMBOL vmlinux 0xbf982386 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xbf845baa mmc_wait_for_cmd EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfb7a8d3 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xbfc78a2d _dev_err +EXPORT_SYMBOL vmlinux 0xbfacb3bb ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfcc0828 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0xbfd042fb __find_get_block EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbffa9300 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0xbff2147d netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xbffebcd3 phy_request_interrupt EXPORT_SYMBOL vmlinux 0xc004eabd serio_bus -EXPORT_SYMBOL vmlinux 0xc00b1047 xfrm_trans_queue EXPORT_SYMBOL vmlinux 0xc01c8d19 register_key_type EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable EXPORT_SYMBOL vmlinux 0xc03d0491 setattr_copy +EXPORT_SYMBOL vmlinux 0xc04addfd tcf_idrinfo_destroy EXPORT_SYMBOL vmlinux 0xc053835b unpin_user_page -EXPORT_SYMBOL vmlinux 0xc05c4989 logfc -EXPORT_SYMBOL vmlinux 0xc0658c85 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xc053e651 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xc0623de6 skb_free_datagram EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0772456 unlock_buffer EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc0886ce5 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xc092880e sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xc0a5613f ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xc0a949b6 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xc07d4941 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xc08b2c21 path_get +EXPORT_SYMBOL vmlinux 0xc0ad8437 gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0b36555 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xc0ba26f8 inet_sk_set_state EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0e75146 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xc0fd015e km_policy_notify +EXPORT_SYMBOL vmlinux 0xc0e1846f devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xc0f1a6f2 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xc0f51434 genphy_read_status EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc1078adb scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xc112a065 peernet2id EXPORT_SYMBOL vmlinux 0xc11eee3c bmap +EXPORT_SYMBOL vmlinux 0xc127a716 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0xc132eabf scsi_get_host_dev EXPORT_SYMBOL vmlinux 0xc13f19cf take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xc1409d93 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xc14374c8 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0xc146f79b netlink_ack EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable +EXPORT_SYMBOL vmlinux 0xc16002fe inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem EXPORT_SYMBOL vmlinux 0xc17a4a57 sg_alloc_append_table_from_pages EXPORT_SYMBOL vmlinux 0xc17f0986 alloc_xenballooned_pages EXPORT_SYMBOL vmlinux 0xc1845f74 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xc18c91bb dev_get_flags EXPORT_SYMBOL vmlinux 0xc18d15b0 param_set_long EXPORT_SYMBOL vmlinux 0xc18dc225 dma_sync_single_for_cpu EXPORT_SYMBOL vmlinux 0xc199cb11 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xc1a18bf9 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xc1a3bf02 bh_submit_read -EXPORT_SYMBOL vmlinux 0xc1a640b5 vme_slot_num -EXPORT_SYMBOL vmlinux 0xc1af245f skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0xc1a2c4cc nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xc1a5a6c1 security_path_unlink +EXPORT_SYMBOL vmlinux 0xc1b5c442 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xc1c2af5b vfs_parse_fs_param_source EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed -EXPORT_SYMBOL vmlinux 0xc1d746eb __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on -EXPORT_SYMBOL vmlinux 0xc1f066e5 neigh_update +EXPORT_SYMBOL vmlinux 0xc1e90da2 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xc1ee2557 dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp EXPORT_SYMBOL vmlinux 0xc219390d free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xc21a2ba3 napi_complete_done EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl EXPORT_SYMBOL vmlinux 0xc24a6301 blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xc2587b02 of_device_alloc +EXPORT_SYMBOL vmlinux 0xc2575b58 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xc25cadd6 jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate EXPORT_SYMBOL vmlinux 0xc26fae76 I_BDEV EXPORT_SYMBOL vmlinux 0xc288914b fb_set_suspend -EXPORT_SYMBOL vmlinux 0xc288a3e7 phy_error EXPORT_SYMBOL vmlinux 0xc29bf967 strspn EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc2a237ce flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xc2b8c018 __inode_sub_bytes EXPORT_SYMBOL vmlinux 0xc2cd4239 dquot_destroy EXPORT_SYMBOL vmlinux 0xc2e08894 md_cluster_ops EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2ebda0b dev_deactivate +EXPORT_SYMBOL vmlinux 0xc2eef1e4 mmc_detect_card_removed EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 EXPORT_SYMBOL vmlinux 0xc2fa8e1b cdev_init -EXPORT_SYMBOL vmlinux 0xc2fd93f3 mark_page_accessed EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state EXPORT_SYMBOL vmlinux 0xc3090e1b register_mii_timestamper EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc3161157 follow_up EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc356fd26 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xc32fb759 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0xc33691ba vfs_getattr +EXPORT_SYMBOL vmlinux 0xc3569c20 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0xc363631e dev_get_flags EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer EXPORT_SYMBOL vmlinux 0xc392f778 pci_stop_and_remove_bus_device EXPORT_SYMBOL vmlinux 0xc3a5322b md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xc3b8cba9 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xc3b47da9 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xc3b8abc1 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xc3c475b8 of_device_alloc EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc3e9058c tcf_get_next_proto EXPORT_SYMBOL vmlinux 0xc3ea8cf5 vga_remove_vgacon EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock EXPORT_SYMBOL vmlinux 0xc4084da0 __inc_node_page_state EXPORT_SYMBOL vmlinux 0xc40a5c18 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xc411c44a vme_register_bridge +EXPORT_SYMBOL vmlinux 0xc40da68b PageMovable EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc42d08d8 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xc42d4b6d __break_lease EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc431ff25 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xc44f28bb jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xc44f2bff phy_device_create EXPORT_SYMBOL vmlinux 0xc458112f inode_update_time -EXPORT_SYMBOL vmlinux 0xc469a67c vfs_rename +EXPORT_SYMBOL vmlinux 0xc4634592 dev_remove_offload EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc484d2d2 fman_get_pause_cfg +EXPORT_SYMBOL vmlinux 0xc47a1a19 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0xc4ad7492 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xc4b12325 alloc_buffer_head EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal +EXPORT_SYMBOL vmlinux 0xc4b7b257 jbd2_journal_get_create_access EXPORT_SYMBOL vmlinux 0xc4c11fac config_group_init_type_name -EXPORT_SYMBOL vmlinux 0xc4c2b3a7 icmp_ndo_send EXPORT_SYMBOL vmlinux 0xc4c3e4a2 cdev_del +EXPORT_SYMBOL vmlinux 0xc4c67ba1 qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0xc4cbbcbb __mod_node_page_state -EXPORT_SYMBOL vmlinux 0xc4d532cf readahead_expand -EXPORT_SYMBOL vmlinux 0xc4f95ead netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xc50285d4 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xc501df9b __dev_get_by_name EXPORT_SYMBOL vmlinux 0xc504eb49 kobject_add -EXPORT_SYMBOL vmlinux 0xc5075eca tcp_getsockopt EXPORT_SYMBOL vmlinux 0xc51fc3cd blk_mq_run_hw_queue EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath EXPORT_SYMBOL vmlinux 0xc5302071 fs_param_is_fd EXPORT_SYMBOL vmlinux 0xc53a1d3d vc_resize +EXPORT_SYMBOL vmlinux 0xc53b1a9a xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xc54e3c1e i2c_del_driver +EXPORT_SYMBOL vmlinux 0xc5554503 dcb_setapp +EXPORT_SYMBOL vmlinux 0xc55e2bda inet_register_protosw EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual -EXPORT_SYMBOL vmlinux 0xc57abc50 put_devmap_managed_page EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xc591950b __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0xc59255f6 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xc58da396 sock_create 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 0xc5b78ccf xp_dma_map +EXPORT_SYMBOL vmlinux 0xc5c2a6ce tcp_md5_do_add EXPORT_SYMBOL vmlinux 0xc5d63699 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xc5e34efe sock_no_ioctl EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource EXPORT_SYMBOL vmlinux 0xc5f75c1b pci_bus_read_config_byte EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc600242f xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus EXPORT_SYMBOL vmlinux 0xc613c5cc key_revoke -EXPORT_SYMBOL vmlinux 0xc621c20b inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xc61a6c31 mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc638e574 __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xc63c83c0 pci_scan_bus -EXPORT_SYMBOL vmlinux 0xc63cf9d4 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0xc659745a sock_init_data_uid +EXPORT_SYMBOL vmlinux 0xc63e64d5 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xc6551d2a tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number EXPORT_SYMBOL vmlinux 0xc65f73e3 blk_pre_runtime_suspend EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc66b58b4 kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0xc66c3c05 page_pool_release_page -EXPORT_SYMBOL vmlinux 0xc67ae2d3 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xc66ff13e flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xc6706f6a of_phy_connect +EXPORT_SYMBOL vmlinux 0xc68459c3 unregister_fib_notifier EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle EXPORT_SYMBOL vmlinux 0xc6abc9bc irq_domain_set_info -EXPORT_SYMBOL vmlinux 0xc6b23fab __set_page_dirty_no_writeback -EXPORT_SYMBOL vmlinux 0xc6bcfeb6 __skb_vlan_pop EXPORT_SYMBOL vmlinux 0xc6c22d7d __destroy_inode +EXPORT_SYMBOL vmlinux 0xc6c75458 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xc6c8aa45 __alloc_skb EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware EXPORT_SYMBOL vmlinux 0xc6d4eef9 pci_set_master -EXPORT_SYMBOL vmlinux 0xc6e3e175 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0xc6ebe8ef kmem_cache_create +EXPORT_SYMBOL vmlinux 0xc6d65076 devfreq_update_target +EXPORT_SYMBOL vmlinux 0xc6e38700 lookup_one_len_unlocked EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6f6f99a security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xc6fd00aa skb_flow_dissect_hash EXPORT_SYMBOL vmlinux 0xc700a74a blk_cleanup_disk EXPORT_SYMBOL vmlinux 0xc7035af9 rpmh_write_async +EXPORT_SYMBOL vmlinux 0xc70373b9 alloc_fcdev EXPORT_SYMBOL vmlinux 0xc703c03a devm_clk_put EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc728a707 __traceiter_module_get -EXPORT_SYMBOL vmlinux 0xc72aa27a dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0xc732989a kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xc740bad4 fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0xc74ee364 generic_setlease +EXPORT_SYMBOL vmlinux 0xc72754ca nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xc7352601 __splice_from_pipe EXPORT_SYMBOL vmlinux 0xc76c03b9 acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0xc772f072 devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc78e46c3 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xc7922b55 generic_fadvise EXPORT_SYMBOL vmlinux 0xc7941d93 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xc79b2d73 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xc79ebe6b ping_prot EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group EXPORT_SYMBOL vmlinux 0xc7e88224 dput -EXPORT_SYMBOL vmlinux 0xc7ff9d43 km_new_mapping -EXPORT_SYMBOL vmlinux 0xc80709b8 rawv6_mh_filter_register EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one EXPORT_SYMBOL vmlinux 0xc8244dc7 of_device_is_available -EXPORT_SYMBOL vmlinux 0xc828a6e9 register_fib_notifier EXPORT_SYMBOL vmlinux 0xc829a7a5 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0xc82c66a3 phy_mac_interrupt EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 +EXPORT_SYMBOL vmlinux 0xc8423622 blk_queue_flag_set EXPORT_SYMBOL vmlinux 0xc845416c find_inode_rcu EXPORT_SYMBOL vmlinux 0xc8483af8 kset_unregister EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu EXPORT_SYMBOL vmlinux 0xc8562dac dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0xc85e825b i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xc8585368 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xc86cd6ae of_phy_register_fixed_link EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc874b692 vfs_create EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc88969f3 console_stop EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd EXPORT_SYMBOL vmlinux 0xc8947505 pci_enable_atomic_ops_to_root EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read -EXPORT_SYMBOL vmlinux 0xc89aada8 scsi_device_get EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8ab5f99 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xc8b0fff4 rtnl_set_sk_err EXPORT_SYMBOL vmlinux 0xc8b5bc5d mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0xc8cf8577 ip_local_deliver -EXPORT_SYMBOL vmlinux 0xc8dab115 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0xc8ba2a9b sock_wfree +EXPORT_SYMBOL vmlinux 0xc8c9238b __sk_dst_check EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc EXPORT_SYMBOL vmlinux 0xc8dcf10f dm_put_device +EXPORT_SYMBOL vmlinux 0xc8dd4f5a phy_get_eee_err EXPORT_SYMBOL vmlinux 0xc904df1f __alloc_disk_node EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down @@ -10595,181 +10495,194 @@ EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources EXPORT_SYMBOL vmlinux 0xc94780b5 sg_miter_next EXPORT_SYMBOL vmlinux 0xc94d03f0 of_get_property EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc971f9e5 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc983f8e9 scsi_print_sense EXPORT_SYMBOL vmlinux 0xc984cc76 param_get_ullong EXPORT_SYMBOL vmlinux 0xc98a47a0 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xc990d4a5 find_vma EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9b13cfc sk_stream_error +EXPORT_SYMBOL vmlinux 0xc9aa229b jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xc9be1b08 eth_mac_addr EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e7a231 genl_register_family EXPORT_SYMBOL vmlinux 0xc9e7b0ee rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0xc9e83365 inet6_protos EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned EXPORT_SYMBOL vmlinux 0xca01e555 simple_symlink_inode_operations EXPORT_SYMBOL vmlinux 0xca0aa076 mount_nodev EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca2cd24a xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xca2282f6 jbd2_log_start_commit EXPORT_SYMBOL vmlinux 0xca3eaf72 param_get_ulong EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function EXPORT_SYMBOL vmlinux 0xca46b3a9 devm_ioport_unmap EXPORT_SYMBOL vmlinux 0xca46ca16 simple_getattr -EXPORT_SYMBOL vmlinux 0xca5f2565 tcf_block_get EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp -EXPORT_SYMBOL vmlinux 0xca6355a9 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xca637783 vfs_unlink EXPORT_SYMBOL vmlinux 0xca69fa79 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xca8361e9 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xca7982ad jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0xca7dfdca neigh_event_ns +EXPORT_SYMBOL vmlinux 0xca7f781b proto_unregister +EXPORT_SYMBOL vmlinux 0xca83bb3f cont_write_begin +EXPORT_SYMBOL vmlinux 0xca85316d sock_init_data +EXPORT_SYMBOL vmlinux 0xca881573 netlink_broadcast_filtered EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next EXPORT_SYMBOL vmlinux 0xca981bcc dma_find_channel EXPORT_SYMBOL vmlinux 0xca993bbc fscrypt_ioctl_get_policy EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xca9c62d0 ipmi_platform_add EXPORT_SYMBOL vmlinux 0xca9ccf34 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xcac971b0 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xca9f73b0 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xcaa7b973 twl6040_power +EXPORT_SYMBOL vmlinux 0xcabe39c0 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xcace58df i2c_register_driver EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception EXPORT_SYMBOL vmlinux 0xcad1b740 ram_aops EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaf8b5b2 vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0xcafc5ad0 kern_path_create +EXPORT_SYMBOL vmlinux 0xcb0086d4 inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb069951 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xcb2441ec ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xcb09bb23 gro_cells_init +EXPORT_SYMBOL vmlinux 0xcb121c42 jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0xcb2926e5 input_reset_device +EXPORT_SYMBOL vmlinux 0xcb39baa9 tcf_idr_create EXPORT_SYMBOL vmlinux 0xcb3a6ca5 of_get_next_parent EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb48ef0e dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0xcb543f5b mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0xcb67a24e phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xcb63234b mdio_bus_type EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power EXPORT_SYMBOL vmlinux 0xcb76d6e1 remove_proc_entry -EXPORT_SYMBOL vmlinux 0xcbb352c3 sock_edemux -EXPORT_SYMBOL vmlinux 0xcbbe3368 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xcba2a13f udp_read_sock +EXPORT_SYMBOL vmlinux 0xcbb5f46c __sk_receive_skb EXPORT_SYMBOL vmlinux 0xcbc66ceb vm_mmap EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbdf3a13 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xcbf98b43 lease_modify EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcc15bb38 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xcc0e071f __sock_create EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul -EXPORT_SYMBOL vmlinux 0xcc1dfb9b dst_cow_metrics_generic EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc3d4447 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xcc35dc93 seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc648ec2 blk_sync_queue +EXPORT_SYMBOL vmlinux 0xcc64b9cd mmc_request_done +EXPORT_SYMBOL vmlinux 0xcc6f0a49 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xcc7000f3 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xcc7100d3 generic_write_checks EXPORT_SYMBOL vmlinux 0xcc94df85 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xcc98918f sock_wmalloc +EXPORT_SYMBOL vmlinux 0xcc94f5c9 fman_set_mac_active_pause +EXPORT_SYMBOL vmlinux 0xcca09b18 vlan_for_each EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xccabd2cb mmc_of_parse_voltage EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xcceaf341 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xcce7c893 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0xccf4d3ad ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0xccf97540 pagecache_isize_extended 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 0xcd0be274 lookup_one +EXPORT_SYMBOL vmlinux 0xcd07da85 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xcd105aaf vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xcd138646 genlmsg_put +EXPORT_SYMBOL vmlinux 0xcd19dee2 sync_filesystem EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed EXPORT_SYMBOL vmlinux 0xcd279169 nla_find EXPORT_SYMBOL vmlinux 0xcd28c70f nd_dax_probe EXPORT_SYMBOL vmlinux 0xcd29dce3 submit_bio_wait EXPORT_SYMBOL vmlinux 0xcd704d5e of_parse_phandle_with_args_map EXPORT_SYMBOL vmlinux 0xcd7c4f2c seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xcd808133 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xcd88bd20 phy_start_cable_test EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception EXPORT_SYMBOL vmlinux 0xcd916b35 fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0xcdbae1ae reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0xcdbe1b9a jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xcdbf2139 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xcdc03083 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xcd9f9c1b __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xcdb359ae udp_push_pending_frames EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel EXPORT_SYMBOL vmlinux 0xcdc73ec1 bdev_dax_pgoff EXPORT_SYMBOL vmlinux 0xcdcb282d fs_lookup_param +EXPORT_SYMBOL vmlinux 0xcdd43d1a skb_orphan_partial EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdeb673f __skb_checksum EXPORT_SYMBOL vmlinux 0xce022400 cdev_device_del EXPORT_SYMBOL vmlinux 0xce036f24 sg_split +EXPORT_SYMBOL vmlinux 0xce0f289e write_inode_now +EXPORT_SYMBOL vmlinux 0xce151969 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xce22dc6d inode_permission EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2c5fc1 inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce6ac1af netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xce6e4793 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xce70e50f blk_put_queue +EXPORT_SYMBOL vmlinux 0xce6ae98e mmc_get_card EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xce83f809 tcp_ioctl -EXPORT_SYMBOL vmlinux 0xce8aca3d kernel_bind +EXPORT_SYMBOL vmlinux 0xce89a958 twl6040_reg_write EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceb3d3f8 jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0xcecd92e8 mount_bdev EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xcef59c5b scsi_report_opcode EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port EXPORT_SYMBOL vmlinux 0xcf2912d9 pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf310107 netdev_printk -EXPORT_SYMBOL vmlinux 0xcf4fc694 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xcf34cdc2 mr_mfc_find_any EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf57e132 nf_log_unset -EXPORT_SYMBOL vmlinux 0xcf6f1548 dev_mc_add +EXPORT_SYMBOL vmlinux 0xcf5b6822 filp_close +EXPORT_SYMBOL vmlinux 0xcf5be421 __sk_mem_reduce_allocated EXPORT_SYMBOL vmlinux 0xcf71b3b5 fb_set_cmap +EXPORT_SYMBOL vmlinux 0xcf78bc32 fwnode_irq_get EXPORT_SYMBOL vmlinux 0xcf79ca33 dquot_disable +EXPORT_SYMBOL vmlinux 0xcf9b0b87 tcp_req_err EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xcfc52a34 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xcfaa26c7 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xcfb63bed tcf_block_put EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfcaa5d1 ip_output -EXPORT_SYMBOL vmlinux 0xcfd1598e dev_add_offload +EXPORT_SYMBOL vmlinux 0xcfcbc9b8 skb_dequeue EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance EXPORT_SYMBOL vmlinux 0xcfefce05 pci_claim_resource -EXPORT_SYMBOL vmlinux 0xcff23a55 tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0xd0056c38 __module_put_and_exit EXPORT_SYMBOL vmlinux 0xd00df965 task_work_add EXPORT_SYMBOL vmlinux 0xd02601dc simple_lookup -EXPORT_SYMBOL vmlinux 0xd038a759 vfs_create_mount -EXPORT_SYMBOL vmlinux 0xd03ceaf2 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xd0284431 netdev_adjacent_change_commit EXPORT_SYMBOL vmlinux 0xd03e87ff __inc_zone_page_state EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net EXPORT_SYMBOL vmlinux 0xd054bcd1 nd_btt_probe -EXPORT_SYMBOL vmlinux 0xd0643188 sock_wfree +EXPORT_SYMBOL vmlinux 0xd05ed0bd dst_destroy EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd0716e60 kernel_write EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd0833283 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0xd09d756c xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xd0a33090 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xd09b2afb file_write_and_wait_range EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface EXPORT_SYMBOL vmlinux 0xd0c0cb17 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xd0eb3fbb rt_dst_alloc -EXPORT_SYMBOL vmlinux 0xd0efb163 skb_eth_push -EXPORT_SYMBOL vmlinux 0xd0f0d0be inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0xd0f8668f of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0xd0f9487b sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xd0d618b1 ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xd127215d fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xd11e2713 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xd11fd360 follow_down EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd1433d73 dst_dev_put -EXPORT_SYMBOL vmlinux 0xd147cc6f nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xd139f7a9 napi_disable +EXPORT_SYMBOL vmlinux 0xd13e059c sk_alloc EXPORT_SYMBOL vmlinux 0xd169cc9e dqput +EXPORT_SYMBOL vmlinux 0xd172cdde blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xd175d61d tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0xd176f86a nf_reinject EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd1b45cde nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xd1adfe5c file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xd1b1262b phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0xd1c2e829 configfs_register_group +EXPORT_SYMBOL vmlinux 0xd1c368bd netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string EXPORT_SYMBOL vmlinux 0xd1e27293 dquot_acquire -EXPORT_SYMBOL vmlinux 0xd1eb70dd inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xd1f31d61 flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down EXPORT_SYMBOL vmlinux 0xd20f8779 of_root -EXPORT_SYMBOL vmlinux 0xd210db0a vfs_unlink EXPORT_SYMBOL vmlinux 0xd218f931 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xd2217706 netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd227b69b tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0xd237e4f7 tty_do_resize EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xd25bc5d4 csum_tcpudp_nofold @@ -10778,236 +10691,209 @@ EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged EXPORT_SYMBOL vmlinux 0xd27de325 backlight_device_get_by_type EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd297d631 fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0xd2b1017f netpoll_print_options -EXPORT_SYMBOL vmlinux 0xd2b8ac2d _dev_emerg +EXPORT_SYMBOL vmlinux 0xd2b6c4cb sock_no_sendmsg_locked EXPORT_SYMBOL vmlinux 0xd2ba906b fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0xd2c6a831 udp_push_pending_frames EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller EXPORT_SYMBOL vmlinux 0xd2cb9ef2 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xd2d2a25e ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0xd2d95875 set_anon_super_fc EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0xd3028070 init_net -EXPORT_SYMBOL vmlinux 0xd30c5c84 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0xd30d8e8d qdisc_reset +EXPORT_SYMBOL vmlinux 0xd2f2eba1 xfrm_init_state EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd331a4a8 seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0xd340c517 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xd3301e09 can_nice +EXPORT_SYMBOL vmlinux 0xd33fca1d icmp6_send +EXPORT_SYMBOL vmlinux 0xd34d5936 __scsi_add_device EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd35b8743 of_device_unregister -EXPORT_SYMBOL vmlinux 0xd35fbbfe tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state EXPORT_SYMBOL vmlinux 0xd37f6635 d_move -EXPORT_SYMBOL vmlinux 0xd38ac165 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xd38bfa2e cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0xd391c25b __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xd3a8f822 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xd3af53a5 security_path_mknod +EXPORT_SYMBOL vmlinux 0xd3a02933 netif_device_attach +EXPORT_SYMBOL vmlinux 0xd3a8f27c scsi_device_set_state EXPORT_SYMBOL vmlinux 0xd3b31998 mpage_readahead +EXPORT_SYMBOL vmlinux 0xd3bea511 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xd3d0a0d8 phy_connect EXPORT_SYMBOL vmlinux 0xd3d2a4d2 phy_set_max_speed EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd3fb9b42 netlink_rcv_skb EXPORT_SYMBOL vmlinux 0xd3fba534 qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0xd3ff4bd3 send_sig_info EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd406d61b ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0xd4339de8 qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0xd438795a mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xd43e49e5 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xd43461b0 __scsi_execute EXPORT_SYMBOL vmlinux 0xd443e5e6 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xd448d291 dcb_ieee_getapp_default_prio_mask EXPORT_SYMBOL vmlinux 0xd44aa5c1 truncate_pagecache -EXPORT_SYMBOL vmlinux 0xd451dcfb genphy_read_status EXPORT_SYMBOL vmlinux 0xd454b0d9 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xd45befa1 mii_ethtool_gset EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex EXPORT_SYMBOL vmlinux 0xd481420d dmam_alloc_attrs EXPORT_SYMBOL vmlinux 0xd4815dc8 mount_single EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd487fe54 xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0xd48de0e2 max8925_set_bits -EXPORT_SYMBOL vmlinux 0xd4972a41 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xd49f2d12 dev_disable_lro EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam +EXPORT_SYMBOL vmlinux 0xd4b811d2 sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4c2e212 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xd4c91450 key_unlink EXPORT_SYMBOL vmlinux 0xd4ccb4b3 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xd4cefccc i2c_smbus_read_i2c_block_data_or_emulated EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4d3f087 secpath_set -EXPORT_SYMBOL vmlinux 0xd4e53e2b devfreq_update_interval EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd4fc1604 scsi_target_resume -EXPORT_SYMBOL vmlinux 0xd5066aa7 mmc_request_done EXPORT_SYMBOL vmlinux 0xd514169b pci_alloc_irq_vectors_affinity EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd52ee129 mmc_remove_host EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd54f07c5 kill_fasync EXPORT_SYMBOL vmlinux 0xd563bca3 of_graph_get_remote_port EXPORT_SYMBOL vmlinux 0xd58273c9 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xd58551b7 security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise EXPORT_SYMBOL vmlinux 0xd5a89c2e generic_shutdown_super EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5b8f7cb kernel_accept EXPORT_SYMBOL vmlinux 0xd5ba2191 rproc_add_subdev -EXPORT_SYMBOL vmlinux 0xd5bab1f0 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0xd5fa1ee7 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xd5d01869 security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0xd5e1ddf5 locks_free_lock +EXPORT_SYMBOL vmlinux 0xd5fd1058 __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k EXPORT_SYMBOL vmlinux 0xd60c573d of_get_cpu_node EXPORT_SYMBOL vmlinux 0xd60f123e __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xd61eb5e9 scsi_print_result EXPORT_SYMBOL vmlinux 0xd62b1e45 trace_print_flags_seq EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd633fd1f genphy_read_lpa EXPORT_SYMBOL vmlinux 0xd636c6da tty_check_change +EXPORT_SYMBOL vmlinux 0xd638d2c7 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd64a231d __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xd653e59e skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xd669906e netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xd665e9a9 ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness -EXPORT_SYMBOL vmlinux 0xd6760a63 xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0xd67945f0 touch_buffer -EXPORT_SYMBOL vmlinux 0xd682600c netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xd6751ad2 fs_context_for_submount EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xd6a213b2 __netif_napi_del EXPORT_SYMBOL vmlinux 0xd6a3cec7 rproc_del -EXPORT_SYMBOL vmlinux 0xd6a5164d vfs_get_link EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read EXPORT_SYMBOL vmlinux 0xd6adc2c0 rio_query_mport -EXPORT_SYMBOL vmlinux 0xd6b58431 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xd6cc532a vlan_vid_add +EXPORT_SYMBOL vmlinux 0xd6af352d inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0xd6e5d2df inc_node_page_state EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f0bdaa xfrm_lookup_route EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd70b24af tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute -EXPORT_SYMBOL vmlinux 0xd7189819 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0xd718b656 netdev_state_change +EXPORT_SYMBOL vmlinux 0xd7357b47 block_page_mkwrite EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd73dc6d1 phy_support_sym_pause EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd760b34d netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xd764302f udp_ioctl -EXPORT_SYMBOL vmlinux 0xd768067c wait_on_page_private_2_killable -EXPORT_SYMBOL vmlinux 0xd77078e7 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xd77bf05e jbd2_journal_abort EXPORT_SYMBOL vmlinux 0xd7801786 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0xd78bebf5 skb_expand_head +EXPORT_SYMBOL vmlinux 0xd7b23988 filemap_map_pages EXPORT_SYMBOL vmlinux 0xd7b991fa pnp_start_dev EXPORT_SYMBOL vmlinux 0xd7be5063 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xd7c216c9 lock_page_memcg +EXPORT_SYMBOL vmlinux 0xd7c2f919 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xd7c57029 mmc_register_driver EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7e342ca jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7ed10b8 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0xd7eb83dc flow_indr_dev_unregister EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 -EXPORT_SYMBOL vmlinux 0xd800695e dev_get_iflink -EXPORT_SYMBOL vmlinux 0xd802074d nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xd805215a inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xd800b504 inet_addr_type EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write EXPORT_SYMBOL vmlinux 0xd82d11e0 bio_add_page -EXPORT_SYMBOL vmlinux 0xd82e9502 i2c_smbus_read_i2c_block_data EXPORT_SYMBOL vmlinux 0xd8327fb0 proc_create_single_data -EXPORT_SYMBOL vmlinux 0xd83d4e4c phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0xd85e5677 genl_notify -EXPORT_SYMBOL vmlinux 0xd87910b9 scmd_printk -EXPORT_SYMBOL vmlinux 0xd88ad17d nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xd874c26e netif_carrier_on +EXPORT_SYMBOL vmlinux 0xd876b74a nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xd89b49f8 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xd89d660f ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone EXPORT_SYMBOL vmlinux 0xd89fd137 pci_msi_vec_count EXPORT_SYMBOL vmlinux 0xd8a309bd rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0xd8a3d4c8 bprm_change_interp -EXPORT_SYMBOL vmlinux 0xd8a79a80 napi_gro_frags EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8aa4d4b nf_log_unregister EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8d9b28b udplite_prot +EXPORT_SYMBOL vmlinux 0xd8bd4566 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xd8c31872 kernel_bind EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8e6aebd genphy_resume -EXPORT_SYMBOL vmlinux 0xd8fc1aaa xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0xd9018fb6 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xd8e9ec76 poll_initwait +EXPORT_SYMBOL vmlinux 0xd8fa1bbd disk_end_io_acct +EXPORT_SYMBOL vmlinux 0xd90316aa kfree_skb_list EXPORT_SYMBOL vmlinux 0xd90833ec config_item_put EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd92822a5 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd93843a9 end_buffer_async_write EXPORT_SYMBOL vmlinux 0xd93e45ee fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xd9409f96 tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy EXPORT_SYMBOL vmlinux 0xd9636ae7 pm860x_page_reg_write EXPORT_SYMBOL vmlinux 0xd96f63c8 devm_extcon_register_notifier EXPORT_SYMBOL vmlinux 0xd978d079 tegra_ivc_read_advance -EXPORT_SYMBOL vmlinux 0xd981429d pagecache_get_page EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages EXPORT_SYMBOL vmlinux 0xd988eac1 seq_vprintf EXPORT_SYMBOL vmlinux 0xd99b1863 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xd9a0436b mptcp_subflow_reqsk_alloc EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9ad8659 ipv4_specific EXPORT_SYMBOL vmlinux 0xd9b185e4 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xd9b55904 napi_consume_skb EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9b972a7 fget +EXPORT_SYMBOL vmlinux 0xd9bb8262 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xd9c0b4d7 ipmr_rule_default EXPORT_SYMBOL vmlinux 0xd9c69d28 __devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xd9ca37ac tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xd9c8a333 jbd2_journal_blocks_per_page EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9e22a4b ip_do_fragment EXPORT_SYMBOL vmlinux 0xd9e2f155 devm_memunmap EXPORT_SYMBOL vmlinux 0xd9e55159 input_grab_device EXPORT_SYMBOL vmlinux 0xd9e6bfa3 __cleancache_init_shared_fs EXPORT_SYMBOL vmlinux 0xd9f88cb9 drop_nlink +EXPORT_SYMBOL vmlinux 0xd9fe4a48 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xda0058c7 dump_emit EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id -EXPORT_SYMBOL vmlinux 0xda14cd08 request_key_rcu -EXPORT_SYMBOL vmlinux 0xda217cbc devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xda15947b tcf_classify EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda4d5f0b xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0xda5056af sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xda57a632 phy_config_aneg +EXPORT_SYMBOL vmlinux 0xda64cc6b __get_hash_from_flowi6 EXPORT_SYMBOL vmlinux 0xda69c1df mdio_device_create EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda7a77b4 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xda72d4d2 qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0xda8196dd scsi_remove_target -EXPORT_SYMBOL vmlinux 0xda86d55c netif_device_detach EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xdabc1e46 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0xdabc5ca9 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xda8f5255 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xdab28376 ptp_find_pin_unlocked EXPORT_SYMBOL vmlinux 0xdabda3ca __phy_write_mmd EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region EXPORT_SYMBOL vmlinux 0xdac65032 clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0xdaed1448 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xdaeeeef0 km_report +EXPORT_SYMBOL vmlinux 0xdad74b27 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xdaf16603 netif_skb_features +EXPORT_SYMBOL vmlinux 0xdb038e56 mmc_start_request EXPORT_SYMBOL vmlinux 0xdb0c2ea4 seq_path EXPORT_SYMBOL vmlinux 0xdb257507 sget -EXPORT_SYMBOL vmlinux 0xdb4eef96 scsi_ioctl -EXPORT_SYMBOL vmlinux 0xdb67b9be inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xdb47c244 scmd_printk +EXPORT_SYMBOL vmlinux 0xdb61aec2 km_state_expired EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy EXPORT_SYMBOL vmlinux 0xdb6ea209 md_write_inc EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb792644 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xdb84fcd0 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0xdb8a3e9c __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0xdb907f6b ipv6_select_ident EXPORT_SYMBOL vmlinux 0xdb92b0d8 phys_mem_access_prot EXPORT_SYMBOL vmlinux 0xdb9f93c9 input_inject_event +EXPORT_SYMBOL vmlinux 0xdba8eab6 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xdbb987f7 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xdbc9efa1 inet6_release EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler EXPORT_SYMBOL vmlinux 0xdbda9b37 from_kprojid_munged EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbe516b0 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0xdc102b83 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete +EXPORT_SYMBOL vmlinux 0xdc1313d5 inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc206a94 get_phy_device -EXPORT_SYMBOL vmlinux 0xdc239630 sock_bind_add EXPORT_SYMBOL vmlinux 0xdc258fd4 kmem_cache_alloc_node_trace EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc47c515 inet_add_offload EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc4e0b14 ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc73e13a logfc EXPORT_SYMBOL vmlinux 0xdc7d5ad3 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0xdc818da1 fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0xdc863a3a __free_pages EXPORT_SYMBOL vmlinux 0xdca5b44f padata_free EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb @@ -11016,82 +10902,97 @@ EXPORT_SYMBOL vmlinux 0xdcbe4b09 dm_table_get_size EXPORT_SYMBOL vmlinux 0xdcbf167d of_find_node_by_type EXPORT_SYMBOL vmlinux 0xdcd9bb4d pci_free_host_bridge EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdcde5d86 __getblk_gfp -EXPORT_SYMBOL vmlinux 0xdce72b17 ppp_channel_index -EXPORT_SYMBOL vmlinux 0xdce76bf7 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xdce76712 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xdcf480d6 block_read_full_page EXPORT_SYMBOL vmlinux 0xdcfe3b07 zpool_register_driver EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 EXPORT_SYMBOL vmlinux 0xdd048bd7 fb_set_var +EXPORT_SYMBOL vmlinux 0xdd110eb0 vme_unregister_driver EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd40bd31 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xdd4df9ed nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0xdd5bd736 input_close_device -EXPORT_SYMBOL vmlinux 0xdd5e538e reuseport_stop_listen_sock EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy EXPORT_SYMBOL vmlinux 0xdd6610ef blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xdd704849 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xdd79f412 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xdd7d4415 udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd9e5d90 lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0xdda94459 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xdd927dd0 sock_kzfree_s EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat -EXPORT_SYMBOL vmlinux 0xddb0c991 dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0xddbc994b acpi_dev_get_first_match_dev EXPORT_SYMBOL vmlinux 0xddc21f4c unlock_new_inode -EXPORT_SYMBOL vmlinux 0xddd5cf74 block_read_full_page -EXPORT_SYMBOL vmlinux 0xddddeb9a migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0xdde66ed1 dev_set_group -EXPORT_SYMBOL vmlinux 0xddf28321 sync_filesystem +EXPORT_SYMBOL vmlinux 0xddc5f3a9 default_llseek +EXPORT_SYMBOL vmlinux 0xddca8477 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xddd75e8d phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xdde031dd filemap_fault +EXPORT_SYMBOL vmlinux 0xddeb61d7 __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done -EXPORT_SYMBOL vmlinux 0xde0ed9d6 generic_write_end +EXPORT_SYMBOL vmlinux 0xde136fd3 tcp_make_synack EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde30acdc vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xde33e592 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xde3be92a sk_stream_wait_close EXPORT_SYMBOL vmlinux 0xde469f97 kthread_bind -EXPORT_SYMBOL vmlinux 0xde50224c inet_sock_destruct EXPORT_SYMBOL vmlinux 0xde55d6da bioset_exit -EXPORT_SYMBOL vmlinux 0xde6ad7d5 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xde580afb mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xde5b6d23 sk_wait_data +EXPORT_SYMBOL vmlinux 0xde6b2a1a fd_install +EXPORT_SYMBOL vmlinux 0xde72d9b0 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0xde95f2cf xfrm_register_type +EXPORT_SYMBOL vmlinux 0xde997c7f page_readlink +EXPORT_SYMBOL vmlinux 0xdea30d06 __lock_buffer +EXPORT_SYMBOL vmlinux 0xdea3cc91 i2c_smbus_write_byte_data EXPORT_SYMBOL vmlinux 0xdeb0f1bf ilookup5 +EXPORT_SYMBOL vmlinux 0xdebef46a qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xdec1a822 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xded29292 jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xded5078d console_stop +EXPORT_SYMBOL vmlinux 0xded6dcff finish_open +EXPORT_SYMBOL vmlinux 0xdef16f64 follow_down_one EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdf07fced free_buffer_head +EXPORT_SYMBOL vmlinux 0xdefee8b6 sock_wake_async EXPORT_SYMBOL vmlinux 0xdf172f30 simple_rmdir -EXPORT_SYMBOL vmlinux 0xdf17ec52 release_sock EXPORT_SYMBOL vmlinux 0xdf1d6236 pci_save_state -EXPORT_SYMBOL vmlinux 0xdf213825 kernel_sendmsg EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2c90a9 key_type_keyring +EXPORT_SYMBOL vmlinux 0xdf2f402d ipmi_platform_add EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf480b09 twl6040_power +EXPORT_SYMBOL vmlinux 0xdf3a3d19 sock_set_reuseport EXPORT_SYMBOL vmlinux 0xdf4e5e8b cdrom_mode_select EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xdf7cf988 fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf8f6cf2 tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf9b48b7 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xdfa05513 devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0xdfb5edc6 tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0xdfbcfafe tty_port_hangup EXPORT_SYMBOL vmlinux 0xdfcb1494 bio_copy_data EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfdbf698 skb_append EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi EXPORT_SYMBOL vmlinux 0xdfe660e1 input_set_capability EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe00873d6 icmp6_send -EXPORT_SYMBOL vmlinux 0xe01c70ad rtnl_unicast EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase -EXPORT_SYMBOL vmlinux 0xe030f676 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xe0326cb8 inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops EXPORT_SYMBOL vmlinux 0xe03d337c config_group_find_item EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe05345a6 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xe046e216 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xe0555898 jbd2_journal_check_used_features EXPORT_SYMBOL vmlinux 0xe05ac241 dquot_alloc +EXPORT_SYMBOL vmlinux 0xe05f2d29 block_write_begin EXPORT_SYMBOL vmlinux 0xe061ef4f mode_strip_sgid +EXPORT_SYMBOL vmlinux 0xe0757215 submit_bio +EXPORT_SYMBOL vmlinux 0xe0772d6d mii_nway_restart EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe082dc1e phy_start_cable_test_tdr EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range EXPORT_SYMBOL vmlinux 0xe08e7a3f cleancache_register_ops EXPORT_SYMBOL vmlinux 0xe091c977 list_sort @@ -11099,289 +11000,280 @@ EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold EXPORT_SYMBOL vmlinux 0xe09c04d1 tegra_dfll_runtime_resume EXPORT_SYMBOL vmlinux 0xe09ebcf2 pcim_set_mwi EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start -EXPORT_SYMBOL vmlinux 0xe0adabbd udp_seq_start +EXPORT_SYMBOL vmlinux 0xe0a70d49 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xe0b131fb generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b1eb06 add_to_pipe -EXPORT_SYMBOL vmlinux 0xe0b2550d tag_pages_for_writeback EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0c737d6 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xe0e9d789 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xe0ebfc31 fwnode_mdio_find_device EXPORT_SYMBOL vmlinux 0xe0f1b438 con_is_bound -EXPORT_SYMBOL vmlinux 0xe10cc1cf send_sig -EXPORT_SYMBOL vmlinux 0xe10e81d9 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xe1116c49 mii_link_ok +EXPORT_SYMBOL vmlinux 0xe0f6607f __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xe0fcd181 put_fs_context EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe1160be1 vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0xe11e5c34 __inet_hash +EXPORT_SYMBOL vmlinux 0xe120508d alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe128e476 netpoll_send_skb EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute EXPORT_SYMBOL vmlinux 0xe133d03c pci_match_id -EXPORT_SYMBOL vmlinux 0xe135585e mmc_can_trim EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe14c46cd sk_stop_timer +EXPORT_SYMBOL vmlinux 0xe146a8d4 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xe14a9caa __dev_get_by_index EXPORT_SYMBOL vmlinux 0xe15197d0 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xe153673a tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xe17c48c5 dev_uc_add EXPORT_SYMBOL vmlinux 0xe1808f13 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0xe1862a03 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0xe18c5cce generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xe198ed3f netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xe1999227 generic_file_mmap -EXPORT_SYMBOL vmlinux 0xe1ac72b7 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xe1c35068 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xe1a53936 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xe1aa7996 ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xe1cbced6 rproc_alloc -EXPORT_SYMBOL vmlinux 0xe1d8f3b4 kernel_listen EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1e08748 reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0xe20a125d submit_bh -EXPORT_SYMBOL vmlinux 0xe2154d6b of_device_register +EXPORT_SYMBOL vmlinux 0xe1ee2500 free_netdev +EXPORT_SYMBOL vmlinux 0xe20ef20d udp_gro_receive EXPORT_SYMBOL vmlinux 0xe21d3f58 pcim_iomap_regions_request_all EXPORT_SYMBOL vmlinux 0xe21e0006 dm_io EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek EXPORT_SYMBOL vmlinux 0xe2287517 cdev_add -EXPORT_SYMBOL vmlinux 0xe24112e0 phy_init_hw EXPORT_SYMBOL vmlinux 0xe241dfb8 fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0xe26b1a22 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xe26c3bed skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xe24c99cd arp_xmit EXPORT_SYMBOL vmlinux 0xe271128b cpumask_any_distribute EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe282d390 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xe283f3aa tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xe290d51b vfs_link +EXPORT_SYMBOL vmlinux 0xe29c7e5d phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xe29f1315 neigh_parms_alloc EXPORT_SYMBOL vmlinux 0xe2a216a9 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xe2ab44d5 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0xe2b69d77 skb_tx_error +EXPORT_SYMBOL vmlinux 0xe2a2f605 ether_setup +EXPORT_SYMBOL vmlinux 0xe2a87c44 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xe2c594f9 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xe2c85ff0 mmc_cqe_recovery EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2ed8485 phy_do_ioctl -EXPORT_SYMBOL vmlinux 0xe2f8064d mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xe2e5bdea tcf_action_exec +EXPORT_SYMBOL vmlinux 0xe2ec4fae generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xe32063d9 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe3392fb7 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0xe364ce3b mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xe334d296 vfs_mkobj +EXPORT_SYMBOL vmlinux 0xe33f3c17 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xe359ca42 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xe35ca959 dev_addr_flush EXPORT_SYMBOL vmlinux 0xe38d3240 __cleancache_invalidate_page EXPORT_SYMBOL vmlinux 0xe3915d2b tty_kref_put +EXPORT_SYMBOL vmlinux 0xe394fcec ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 EXPORT_SYMBOL vmlinux 0xe3a17ac8 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xe3a31512 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xe3a5a48b tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0xe3a5f313 init_pseudo EXPORT_SYMBOL vmlinux 0xe3adca2a iproc_msi_exit +EXPORT_SYMBOL vmlinux 0xe3b05165 load_nls EXPORT_SYMBOL vmlinux 0xe3b5993e init_special_inode -EXPORT_SYMBOL vmlinux 0xe3b62e3c xfrm_input -EXPORT_SYMBOL vmlinux 0xe3b6b841 jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0xe3bc74a8 fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0xe3cc0ca6 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xe3dc3c1c inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xe3e22a54 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xe3be405f ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xe3ce6c85 ip6_xmit EXPORT_SYMBOL vmlinux 0xe3e753ac mipi_dsi_dcs_enter_sleep_mode EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3ef9e30 napi_build_skb EXPORT_SYMBOL vmlinux 0xe3f5c8f2 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0xe3fd25f0 ip_mc_leave_group 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 0xe40efc47 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0xe4157ec8 dev_open EXPORT_SYMBOL vmlinux 0xe41eea4f __quota_error -EXPORT_SYMBOL vmlinux 0xe42846a3 __dynamic_ibdev_dbg EXPORT_SYMBOL vmlinux 0xe42dcb6f simple_empty -EXPORT_SYMBOL vmlinux 0xe434c77d xfrm6_input_addr EXPORT_SYMBOL vmlinux 0xe4359e37 qman_get_qm_portal_config -EXPORT_SYMBOL vmlinux 0xe44be82f tcp_poll +EXPORT_SYMBOL vmlinux 0xe451ccb9 build_skb +EXPORT_SYMBOL vmlinux 0xe453b423 unlock_rename EXPORT_SYMBOL vmlinux 0xe465ae6e pnp_register_card_driver EXPORT_SYMBOL vmlinux 0xe4721935 mdio_device_remove -EXPORT_SYMBOL vmlinux 0xe4785682 genphy_check_and_restart_aneg EXPORT_SYMBOL vmlinux 0xe47a01b2 scsicam_bios_param EXPORT_SYMBOL vmlinux 0xe4833ea2 devm_rproc_alloc EXPORT_SYMBOL vmlinux 0xe4963898 pci_disable_msix -EXPORT_SYMBOL vmlinux 0xe497740c thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0xe4ab10ef security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0xe4b90033 tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4c27016 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xe4cff648 genphy_update_link +EXPORT_SYMBOL vmlinux 0xe4f63b0e udp_lib_getsockopt EXPORT_SYMBOL vmlinux 0xe4f98352 dqget EXPORT_SYMBOL vmlinux 0xe506b1c2 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xe50f285c __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0xe51f275f vmf_insert_mixed EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq EXPORT_SYMBOL vmlinux 0xe5368fc1 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe539453f inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xe5593bf6 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xe55bdcf0 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xe53974c2 vmf_insert_pfn EXPORT_SYMBOL vmlinux 0xe571f48a of_graph_get_remote_node EXPORT_SYMBOL vmlinux 0xe5769e44 pci_enable_msi EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe5811473 mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5b618bc filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0xe5b75b00 max8998_read_reg EXPORT_SYMBOL vmlinux 0xe5c4fc7d fs_param_is_enum EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5c98087 vfs_llseek -EXPORT_SYMBOL vmlinux 0xe5ca5682 mmc_get_card EXPORT_SYMBOL vmlinux 0xe5d118b4 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xe5e558cd inet_put_port +EXPORT_SYMBOL vmlinux 0xe5fa2be4 skb_eth_push +EXPORT_SYMBOL vmlinux 0xe5fdcb49 vme_new_dma_list EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe61f09f9 flow_rule_match_control EXPORT_SYMBOL vmlinux 0xe6215aab fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xe62dbbeb tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0xe63995fa blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xe63b4f64 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xe6451d1e refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0xe645456e ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xe64c5f1a jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xe66b198c neigh_table_clear -EXPORT_SYMBOL vmlinux 0xe675e53a scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xe6788d8b xfrm_state_add +EXPORT_SYMBOL vmlinux 0xe641268f setup_arg_pages +EXPORT_SYMBOL vmlinux 0xe64a9701 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xe6642f14 ethtool_get_phc_vclocks EXPORT_SYMBOL vmlinux 0xe6794777 rproc_detach +EXPORT_SYMBOL vmlinux 0xe682228b tcp_check_req EXPORT_SYMBOL vmlinux 0xe68fd145 seq_puts EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe6abc89a dev_set_mtu -EXPORT_SYMBOL vmlinux 0xe6b410a9 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xe6c4bb6b xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xe699c0ba bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xe69e8315 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0xe6b8a4f8 inet_pton_with_scope EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6e3eacd devm_devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0xe6ecad83 backlight_device_get_by_name EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock EXPORT_SYMBOL vmlinux 0xe71b8a4e nd_pfn_validate +EXPORT_SYMBOL vmlinux 0xe71cbdc3 mr_table_alloc EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe726b80f skb_eth_pop EXPORT_SYMBOL vmlinux 0xe72dd141 blk_mq_delay_kick_requeue_list EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe75ba036 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xe76493f1 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xe73284b7 vme_register_driver +EXPORT_SYMBOL vmlinux 0xe732e23e fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xe74ad4be i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xe763e61e km_policy_expired EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache EXPORT_SYMBOL vmlinux 0xe76bb40a tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xe76eb58f __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xe78764ad nonseekable_open +EXPORT_SYMBOL vmlinux 0xe77ce81f netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xe77f14a6 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xe78a9e65 jbd2_journal_load EXPORT_SYMBOL vmlinux 0xe78d6290 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xe78fb4cd netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xe790d42d buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xe79ffbd7 xfrm_policy_delete EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7a1c349 jbd2_journal_flush EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask EXPORT_SYMBOL vmlinux 0xe7d1ac27 dm_register_target EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7d9e2df __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xe7eceb73 mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0xe7f250ef fs_param_is_bool -EXPORT_SYMBOL vmlinux 0xe7fa0b74 generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0xe7fe3b02 nd_device_unregister -EXPORT_SYMBOL vmlinux 0xe80b4a31 build_skb +EXPORT_SYMBOL vmlinux 0xe80ac064 account_page_redirty EXPORT_SYMBOL vmlinux 0xe80ba77e proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xe80f1342 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xe825170c __udp_disconnect -EXPORT_SYMBOL vmlinux 0xe825fba6 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xe82fcf94 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xe831503f dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xe8153751 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xe82e880f __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xe82f8cf2 phy_sfp_probe EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xe8398f4c netdev_adjacent_change_abort EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe86c2b58 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xe86e165b fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xe874a06c udp_disconnect EXPORT_SYMBOL vmlinux 0xe87d6d25 pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0xe8817feb __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0xe8855322 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xe89d1753 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xe8a10d12 netdev_printk EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xe8cc0098 mmc_retune_pause -EXPORT_SYMBOL vmlinux 0xe8d8c844 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0xe8ef17da ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xe8b8b0c5 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xe8edeecf skb_trim +EXPORT_SYMBOL vmlinux 0xe8eeca60 eth_get_headlen 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 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe9204f3f wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xe916204b generic_block_bmap EXPORT_SYMBOL vmlinux 0xe926d2b8 bio_integrity_trim EXPORT_SYMBOL vmlinux 0xe9279df1 d_make_root EXPORT_SYMBOL vmlinux 0xe92cc9ae free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xe92e59da generic_ro_fops +EXPORT_SYMBOL vmlinux 0xe9495d21 xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino EXPORT_SYMBOL vmlinux 0xe957542b pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0xe97310c6 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0xe9794bcf update_devfreq +EXPORT_SYMBOL vmlinux 0xe96df35e sock_no_accept +EXPORT_SYMBOL vmlinux 0xe97b05c7 wireless_spy_update EXPORT_SYMBOL vmlinux 0xe98772cc pci_scan_bridge EXPORT_SYMBOL vmlinux 0xe98ca4bd iget_failed -EXPORT_SYMBOL vmlinux 0xe98fc952 phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0xe9a8d7a1 __icmp_send +EXPORT_SYMBOL vmlinux 0xe98dacba __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xe99ae9b2 dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0xe9ad3a3b zpool_unregister_driver EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark EXPORT_SYMBOL vmlinux 0xe9b67740 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe9e84044 tcf_action_dump_1 EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9ecc990 inet_getname EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock +EXPORT_SYMBOL vmlinux 0xea0e4219 inet_csk_prepare_forced_close EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc +EXPORT_SYMBOL vmlinux 0xea246bda send_sig_mceerr EXPORT_SYMBOL vmlinux 0xea3a1328 seq_open EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea401e07 inet_shutdown EXPORT_SYMBOL vmlinux 0xea51994f tegra_ivc_cleanup -EXPORT_SYMBOL vmlinux 0xea52c717 jbd2_journal_update_sb_errno EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea712298 __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea860c0b mmc_run_bkops EXPORT_SYMBOL vmlinux 0xea905617 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xea9fe050 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xeaa988d7 vme_lm_request -EXPORT_SYMBOL vmlinux 0xeaab5469 can_nice +EXPORT_SYMBOL vmlinux 0xeaa5d4ac inetdev_by_index EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeabeacdf inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xeac58252 gnet_stats_copy_basic_hw EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid +EXPORT_SYMBOL vmlinux 0xeae2a13c security_sb_remount EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeaf2dbb3 dev_change_proto_down_generic EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeb0bb44e dev_disable_lro -EXPORT_SYMBOL vmlinux 0xeb163ca4 dev_remove_pack -EXPORT_SYMBOL vmlinux 0xeb189b52 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xeb1501d8 neigh_seq_start EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc EXPORT_SYMBOL vmlinux 0xeb2391c9 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xeb2e87cc flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0xeb346dc3 mr_dump +EXPORT_SYMBOL vmlinux 0xeb2a7dd1 sock_no_connect EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb400e46 __put_page EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact EXPORT_SYMBOL vmlinux 0xeb4666c1 pci_read_vpd -EXPORT_SYMBOL vmlinux 0xeb5e19ed ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0xeb615a84 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xeb677e6a generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices EXPORT_SYMBOL vmlinux 0xeb8c3458 pci_fixup_cardbus EXPORT_SYMBOL vmlinux 0xeb9b2966 get_user_pages EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xeba09640 skb_seq_read EXPORT_SYMBOL vmlinux 0xeba3a96f shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xebadcc65 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xebab77d7 vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0xebb08e83 page_pool_put_page -EXPORT_SYMBOL vmlinux 0xebb5043b twl6040_set_pll -EXPORT_SYMBOL vmlinux 0xebd0bbe5 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xebd1ab49 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0xebe88332 dev_close +EXPORT_SYMBOL vmlinux 0xebb3aeb6 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xebb6bef9 neigh_table_init +EXPORT_SYMBOL vmlinux 0xebc03c7f dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xebd43184 vme_dma_list_exec EXPORT_SYMBOL vmlinux 0xebeb20ea __nla_put -EXPORT_SYMBOL vmlinux 0xec0e4fa4 vme_slave_request -EXPORT_SYMBOL vmlinux 0xec17b165 sk_common_release -EXPORT_SYMBOL vmlinux 0xec23eb6e ip_options_compile -EXPORT_SYMBOL vmlinux 0xec260b52 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xebf5bb57 inode_set_ctime_current +EXPORT_SYMBOL vmlinux 0xec0a8a76 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xec2269ca inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xec275450 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xec27d6e9 tcf_exts_dump EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xec2ce68b _dev_info EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec32b264 netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec412dd3 inet6_getname EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range EXPORT_SYMBOL vmlinux 0xec48e0af pci_clear_mwi EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec4feddc inet6_protos -EXPORT_SYMBOL vmlinux 0xec620c43 udp_poll EXPORT_SYMBOL vmlinux 0xec75f038 pcibus_to_node +EXPORT_SYMBOL vmlinux 0xec793570 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0xec8a6790 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xecaa7040 vme_master_request -EXPORT_SYMBOL vmlinux 0xecd0312e grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xecd86f62 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0xecdc69b8 mii_check_media -EXPORT_SYMBOL vmlinux 0xece2a0f2 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xeca6c669 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xecadc6e1 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xecd84bb9 pfifo_fast_ops EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf522f1 unix_get_socket -EXPORT_SYMBOL vmlinux 0xecf71d81 mmc_card_is_blockaddr EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node EXPORT_SYMBOL vmlinux 0xed007ec2 vga_client_register EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed01f63c security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0xed08b380 tty_devnum -EXPORT_SYMBOL vmlinux 0xed0e3218 jbd2_journal_clear_features EXPORT_SYMBOL vmlinux 0xed0fff46 mipi_dsi_dcs_write EXPORT_SYMBOL vmlinux 0xed238617 __put_cred EXPORT_SYMBOL vmlinux 0xed28041e mipi_dsi_shutdown_peripheral EXPORT_SYMBOL vmlinux 0xed3b85a9 pci_enable_wake +EXPORT_SYMBOL vmlinux 0xed3f4842 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xed44ff32 security_inode_invalidate_secctx EXPORT_SYMBOL vmlinux 0xed49d783 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0xed511f45 skb_store_bits EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed5852f9 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xed5d49b1 module_put EXPORT_SYMBOL vmlinux 0xed5d64c4 nla_put_64bit EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed7788a4 setup_arg_pages EXPORT_SYMBOL vmlinux 0xed7c88c6 blk_rq_map_kern EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 EXPORT_SYMBOL vmlinux 0xed966b59 input_set_max_poll_interval @@ -11389,8 +11281,11 @@ EXPORT_SYMBOL vmlinux 0xedaa9aca d_splice_alias EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap EXPORT_SYMBOL vmlinux 0xedc9bfd3 bio_clone_fast -EXPORT_SYMBOL vmlinux 0xee298ff9 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xedd489c6 consume_skb +EXPORT_SYMBOL vmlinux 0xede16b92 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xede9dd16 mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3bff05 sock_register EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode EXPORT_SYMBOL vmlinux 0xee719ee2 blk_mq_stop_hw_queue EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc @@ -11401,223 +11296,219 @@ EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder EXPORT_SYMBOL vmlinux 0xee9df7d7 blk_queue_split -EXPORT_SYMBOL vmlinux 0xeea6fe1c eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb0a5b9 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xeee492a7 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xeecae523 flow_rule_match_vlan EXPORT_SYMBOL vmlinux 0xeee5a8c0 inode_needs_sync EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xeef47890 of_mdiobus_child_is_phy EXPORT_SYMBOL vmlinux 0xeef6c945 pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xef1259ac unmap_mapping_range -EXPORT_SYMBOL vmlinux 0xef15cfb1 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xef18db13 tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0xef4623e2 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xef4f27d7 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xef02b18e nf_ct_attach +EXPORT_SYMBOL vmlinux 0xef3af108 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xef5ff9c3 dev_load EXPORT_SYMBOL vmlinux 0xef70d077 d_instantiate_anon EXPORT_SYMBOL vmlinux 0xef73f0cb pci_read_config_byte EXPORT_SYMBOL vmlinux 0xef7f9b6b blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0xef8989ce scsi_vpd_lun_id EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg EXPORT_SYMBOL vmlinux 0xef8da8b4 get_tree_bdev -EXPORT_SYMBOL vmlinux 0xef8fbb07 xattr_supported_namespace EXPORT_SYMBOL vmlinux 0xef91ef50 fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0xef934919 security_task_getsecid_subj -EXPORT_SYMBOL vmlinux 0xefa6865a mmc_register_driver +EXPORT_SYMBOL vmlinux 0xef9264cb neigh_lookup +EXPORT_SYMBOL vmlinux 0xef936eb4 tcp_child_process EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work EXPORT_SYMBOL vmlinux 0xefb5cfeb mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xefb6b610 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xeff828b9 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xeffccf88 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xeffc47aa __napi_schedule EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf02a0132 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0xf01bdb4a file_open_root +EXPORT_SYMBOL vmlinux 0xf01c4545 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0xf02207c9 phy_device_free EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf02b9c34 generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0xf039db48 seg6_hmac_info_add EXPORT_SYMBOL vmlinux 0xf040ecc7 dma_map_resource -EXPORT_SYMBOL vmlinux 0xf042a714 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0xf052b3ee scsi_device_put -EXPORT_SYMBOL vmlinux 0xf06ed369 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0xf06190dd dev_close EXPORT_SYMBOL vmlinux 0xf07bac4e nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xf07f92a2 vfs_statfs +EXPORT_SYMBOL vmlinux 0xf08912a8 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xf0932f28 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a12f8c dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0xf0a67900 bio_init EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds EXPORT_SYMBOL vmlinux 0xf0aa7e6f blk_rq_map_user EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xf0dbf7c8 finalize_exec -EXPORT_SYMBOL vmlinux 0xf0e7f8cb mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xf0ba5fd4 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xf0ddd82f free_task +EXPORT_SYMBOL vmlinux 0xf0ec07e6 nf_log_unset EXPORT_SYMBOL vmlinux 0xf0f5571b dm_kobject_release -EXPORT_SYMBOL vmlinux 0xf10cabd7 kfree_skb_partial EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf128303b sock_no_getname EXPORT_SYMBOL vmlinux 0xf130c0e3 param_set_ulong +EXPORT_SYMBOL vmlinux 0xf13ae300 sock_create_lite EXPORT_SYMBOL vmlinux 0xf1424f92 input_flush_device -EXPORT_SYMBOL vmlinux 0xf15f84b4 phy_resume +EXPORT_SYMBOL vmlinux 0xf150d17e migrate_vma_setup +EXPORT_SYMBOL vmlinux 0xf159d1d4 of_phy_get_and_connect EXPORT_SYMBOL vmlinux 0xf161e787 vm_map_ram -EXPORT_SYMBOL vmlinux 0xf166b1f0 inode_get_bytes EXPORT_SYMBOL vmlinux 0xf16bd643 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xf176a05a sock_alloc EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb EXPORT_SYMBOL vmlinux 0xf18ab4f3 d_genocide -EXPORT_SYMBOL vmlinux 0xf1949fe3 sync_inode_metadata EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1a5ca9f page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xf1ab3092 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0xf1ac63f6 netdev_notice -EXPORT_SYMBOL vmlinux 0xf1aed07b xfrm_lookup -EXPORT_SYMBOL vmlinux 0xf1b8fb43 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xf1c2d285 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xf1b19f57 dev_set_promiscuity EXPORT_SYMBOL vmlinux 0xf1cb356b rtc_add_groups EXPORT_SYMBOL vmlinux 0xf1cc0646 request_firmware EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1dbd95f __mdiobus_write EXPORT_SYMBOL vmlinux 0xf1e046cc panic EXPORT_SYMBOL vmlinux 0xf1e71d24 make_bad_inode EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1f7bc0a __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0xf20a63db vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xf20ecff5 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xf21e972e flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0xf1f1d07e vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xf1fe7653 vfs_fsync +EXPORT_SYMBOL vmlinux 0xf213b36b phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xf219da86 udp_set_csum EXPORT_SYMBOL vmlinux 0xf223e129 pci_dev_get EXPORT_SYMBOL vmlinux 0xf2282908 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0xf23a911f xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xf2339a0e _dev_warn +EXPORT_SYMBOL vmlinux 0xf234a2ef tcf_register_action EXPORT_SYMBOL vmlinux 0xf23bacf5 of_get_child_by_name EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf251ec27 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xf2625fd6 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xf2646b68 finalize_exec EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier +EXPORT_SYMBOL vmlinux 0xf26e962b ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xf2783495 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xf282c35b filemap_fdatawait_keep_errors EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf293449d jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2a8b66a eth_header_cache +EXPORT_SYMBOL vmlinux 0xf2aba58a do_splice_direct +EXPORT_SYMBOL vmlinux 0xf2ac3eeb tcp_mss_to_mtu EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2d44798 ethtool_notify EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2ecd198 netdev_update_features EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf2fb53e4 dev_mc_del +EXPORT_SYMBOL vmlinux 0xf2ff9868 crypto_sha256_finup EXPORT_SYMBOL vmlinux 0xf303f58b remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xf309ce22 unregister_shrinker EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update EXPORT_SYMBOL vmlinux 0xf31163c2 fb_blank -EXPORT_SYMBOL vmlinux 0xf313efcc path_is_under -EXPORT_SYMBOL vmlinux 0xf316ae3d xfrm4_rcv -EXPORT_SYMBOL vmlinux 0xf31cb021 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xf3142ab7 vif_device_init +EXPORT_SYMBOL vmlinux 0xf3256245 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0xf326376c __getblk_gfp +EXPORT_SYMBOL vmlinux 0xf329d08e ptp_schedule_worker EXPORT_SYMBOL vmlinux 0xf335d9b3 bio_endio -EXPORT_SYMBOL vmlinux 0xf344a0fa gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xf336f105 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xf33cca83 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xf341a191 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xf341ee35 tcp_hashinfo EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf364167c pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0xf35666ce redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress EXPORT_SYMBOL vmlinux 0xf372eef1 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xf37eb3be skb_copy_expand -EXPORT_SYMBOL vmlinux 0xf386b317 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0xf379bf33 vme_irq_generate EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused -EXPORT_SYMBOL vmlinux 0xf39477df scsi_device_lookup EXPORT_SYMBOL vmlinux 0xf3a3fb6c sb_min_blocksize EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3ab8dcc tcp_time_wait -EXPORT_SYMBOL vmlinux 0xf3aeaabb mmc_add_host EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3b6879f devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xf3ce70b5 dev_set_alias -EXPORT_SYMBOL vmlinux 0xf3dd5c23 genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0xf3de9fb7 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xf3b7d0c2 sock_create_kern +EXPORT_SYMBOL vmlinux 0xf3bdc665 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xf3ca0b82 touch_buffer EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e30993 qdisc_hash_del EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3fb3954 udp_seq_start EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xf3fe3f6f vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xf3fe85b9 rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0xf40950ab tty_port_alloc_xmit_buf EXPORT_SYMBOL vmlinux 0xf4102303 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xf4248732 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xf410bee9 locks_delete_block +EXPORT_SYMBOL vmlinux 0xf415efd2 tso_start EXPORT_SYMBOL vmlinux 0xf42ab019 rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0xf4308e5a scsi_block_requests -EXPORT_SYMBOL vmlinux 0xf43420d9 netdev_has_upper_dev_all_rcu EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf43e1357 mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf45ba44b posix_test_lock +EXPORT_SYMBOL vmlinux 0xf465020c mmc_sw_reset EXPORT_SYMBOL vmlinux 0xf465e72a truncate_inode_pages_range EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4754cbd nlmsg_notify -EXPORT_SYMBOL vmlinux 0xf47af4f1 devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0xf487bad2 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xf496edd1 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xf47f2773 sock_set_priority EXPORT_SYMBOL vmlinux 0xf49746d2 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xf4ae3bf1 unix_get_socket EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4d0a2a1 noop_qdisc EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4dc4672 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xf4db6a62 security_unix_stream_connect EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf5037cd5 generic_writepages EXPORT_SYMBOL vmlinux 0xf503fef2 frontswap_register_ops EXPORT_SYMBOL vmlinux 0xf506f1ff blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0xf519d169 sock_init_data +EXPORT_SYMBOL vmlinux 0xf51b895a request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xf51ddc02 tcf_qevent_validate_change EXPORT_SYMBOL vmlinux 0xf53058ef param_set_invbool -EXPORT_SYMBOL vmlinux 0xf536bbff skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xf533da7e skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xf5373263 __scm_destroy EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf59ea939 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xf54d409d udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xf552fb42 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xf5602d12 try_module_get +EXPORT_SYMBOL vmlinux 0xf56334f7 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xf5639691 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xf57fb6b7 vme_bus_type +EXPORT_SYMBOL vmlinux 0xf583561e ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a368e4 mmc_of_parse EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid EXPORT_SYMBOL vmlinux 0xf5b1383f d_alloc -EXPORT_SYMBOL vmlinux 0xf5b18a34 __phy_resume -EXPORT_SYMBOL vmlinux 0xf5c8b34c generic_listxattr +EXPORT_SYMBOL vmlinux 0xf5bd5a8e xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xf5c6e871 neigh_resolve_output EXPORT_SYMBOL vmlinux 0xf5d74d61 input_get_poll_interval -EXPORT_SYMBOL vmlinux 0xf5d988dd __set_page_dirty_nobuffers EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf60b64c9 module_refcount EXPORT_SYMBOL vmlinux 0xf60cb18b dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xf611b4e0 xfrm6_rcv EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx EXPORT_SYMBOL vmlinux 0xf631a0dc ucc_of_parse_tdm EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf65e0e25 jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf6808a38 put_cmsg EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf683fdfe ip6_frag_next +EXPORT_SYMBOL vmlinux 0xf690526e netdev_refcnt_read EXPORT_SYMBOL vmlinux 0xf6958ed5 md_bitmap_free EXPORT_SYMBOL vmlinux 0xf6964728 param_set_charp +EXPORT_SYMBOL vmlinux 0xf69f13c5 sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0xf6aca585 devm_ioremap_np -EXPORT_SYMBOL vmlinux 0xf6d84b2a ipv6_dev_find +EXPORT_SYMBOL vmlinux 0xf6bd4633 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xf6c98340 __module_get +EXPORT_SYMBOL vmlinux 0xf6cd381e pneigh_enqueue EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f89fcb dev_mc_init EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf726a1f6 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xf70c4242 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xf7152feb xfrm_state_update +EXPORT_SYMBOL vmlinux 0xf7254214 vfs_symlink EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf74bf28b _dev_notice -EXPORT_SYMBOL vmlinux 0xf760cb73 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xf763c2b7 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xf73d0eec napi_get_frags +EXPORT_SYMBOL vmlinux 0xf764f617 jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported -EXPORT_SYMBOL vmlinux 0xf7689859 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0xf76c2b41 dump_page EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf7749eb1 dev_uc_add_excl EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio EXPORT_SYMBOL vmlinux 0xf781ff91 fault_in_iov_iter_writeable -EXPORT_SYMBOL vmlinux 0xf79a0dd4 sock_kfree_s EXPORT_SYMBOL vmlinux 0xf79ab83a seq_open_private EXPORT_SYMBOL vmlinux 0xf79bda4e dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xf7a034d7 phy_attached_info EXPORT_SYMBOL vmlinux 0xf7bd9859 devm_request_any_context_irq EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xf7cf166e vfs_link -EXPORT_SYMBOL vmlinux 0xf7cf9fb1 blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0xf7d6cf0d sched_autogroup_detach EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table EXPORT_SYMBOL vmlinux 0xf7da9856 dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0xf7e25578 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0xf7e952d9 pskb_extract +EXPORT_SYMBOL vmlinux 0xf7e94f10 update_devfreq EXPORT_SYMBOL vmlinux 0xf7e9acb9 pcim_iounmap EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash +EXPORT_SYMBOL vmlinux 0xf7f8c781 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xf80a9822 sock_set_mark EXPORT_SYMBOL vmlinux 0xf80b8085 import_iovec -EXPORT_SYMBOL vmlinux 0xf80ea4f4 ipv4_specific EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf8153cb9 security_skb_classify_flow EXPORT_SYMBOL vmlinux 0xf8264f50 dma_map_page_attrs EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev @@ -11626,200 +11517,201 @@ EXPORT_SYMBOL vmlinux 0xf83c5502 dma_resv_init EXPORT_SYMBOL vmlinux 0xf83f4a85 md_update_sb EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key EXPORT_SYMBOL vmlinux 0xf8592cfc dm_get_device +EXPORT_SYMBOL vmlinux 0xf85d55d6 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0xf85ea8a3 get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0xf8627d4c of_node_name_eq -EXPORT_SYMBOL vmlinux 0xf86358d3 remap_pfn_range EXPORT_SYMBOL vmlinux 0xf866b00c tegra_io_pad_power_enable EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf88b3ccc netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xf88dedf6 nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0xf89f5bdc __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0xf8bd12cb __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xf8ccc568 sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf906ea5c mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0xf90f33d4 phy_connect -EXPORT_SYMBOL vmlinux 0xf911dcf9 netlink_ns_capable EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct +EXPORT_SYMBOL vmlinux 0xf91d2325 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0xf91f1614 security_sb_clone_mnt_opts EXPORT_SYMBOL vmlinux 0xf93471e3 pci_back_from_sleep EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf9545bb2 nf_reinject +EXPORT_SYMBOL vmlinux 0xf9525a2b kmalloc_caches EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf95dac34 poll_freewait EXPORT_SYMBOL vmlinux 0xf9637440 kthread_blkcg -EXPORT_SYMBOL vmlinux 0xf96a783e udp_sendmsg +EXPORT_SYMBOL vmlinux 0xf96c3d77 skb_vlan_untag EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write EXPORT_SYMBOL vmlinux 0xf97bfecc mipi_dsi_dcs_set_tear_off EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9b6ba28 devm_register_netdev EXPORT_SYMBOL vmlinux 0xf9bad52f pci_clear_master EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9c6c287 flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9eb5d67 finish_no_open -EXPORT_SYMBOL vmlinux 0xf9f912bb inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xf9f5662c dev_deactivate EXPORT_SYMBOL vmlinux 0xfa05d688 key_task_permission EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end EXPORT_SYMBOL vmlinux 0xfa0dd0b7 of_graph_get_endpoint_by_regs EXPORT_SYMBOL vmlinux 0xfa14f4ff deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xfa1a658e neigh_parms_release -EXPORT_SYMBOL vmlinux 0xfa2182ca register_nexthop_notifier EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa375d1f sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0xfa559d9d devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xfa55e5ba ip_sock_set_pktinfo EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed EXPORT_SYMBOL vmlinux 0xfa8e97f7 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xfa8f3641 trace_raw_output_prep EXPORT_SYMBOL vmlinux 0xfa9dbdd9 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xfaa28c14 inet6_del_protocol EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfab8119a dev_set_threaded -EXPORT_SYMBOL vmlinux 0xfabbe668 tcp_check_req -EXPORT_SYMBOL vmlinux 0xfabe6741 dst_destroy -EXPORT_SYMBOL vmlinux 0xfac22d9b vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xfac3ba2c tcp_sendpage EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacce394 sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0xfacd8c28 nla_put EXPORT_SYMBOL vmlinux 0xfad48059 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0xfadbfe95 keyring_clear EXPORT_SYMBOL vmlinux 0xfade5850 pci_get_class EXPORT_SYMBOL vmlinux 0xfadf1a87 unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0xfb203b1c xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0xfb2b0908 is_nvdimm_bus_locked EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf EXPORT_SYMBOL vmlinux 0xfb41750c phy_modify_paged -EXPORT_SYMBOL vmlinux 0xfb57379e tegra_dfll_register -EXPORT_SYMBOL vmlinux 0xfb65bbee xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xfb449acd vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xfb485a66 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xfb4a56ac udp_poll +EXPORT_SYMBOL vmlinux 0xfb63f724 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xfb69ecfb capable_wrt_inode_uidgid EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb6bca5b page_cache_next_miss EXPORT_SYMBOL vmlinux 0xfb79d6cc get_thermal_instance -EXPORT_SYMBOL vmlinux 0xfb7cf0f0 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xfb85f2a8 flow_block_cb_free EXPORT_SYMBOL vmlinux 0xfb868048 dquot_free_inode +EXPORT_SYMBOL vmlinux 0xfb9e15fa skb_expand_head EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock EXPORT_SYMBOL vmlinux 0xfbac5ae4 param_ops_ushort EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xfbb57d3c dev_uc_init +EXPORT_SYMBOL vmlinux 0xfbb1e294 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0xfbb6cb7d starget_for_each_device EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfbbb0edf __ip_select_ident EXPORT_SYMBOL vmlinux 0xfbbb6c72 of_graph_is_present +EXPORT_SYMBOL vmlinux 0xfbc1ee97 of_get_ethdev_address EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbe30ea0 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xfbe36c6d __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr +EXPORT_SYMBOL vmlinux 0xfbe88dee genphy_read_abilities EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index EXPORT_SYMBOL vmlinux 0xfbeafb89 iov_iter_npages EXPORT_SYMBOL vmlinux 0xfbec4ef7 of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0xfbf0f7e0 sock_recvmsg -EXPORT_SYMBOL vmlinux 0xfc05c473 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xfc16d0c2 skb_clone_sk -EXPORT_SYMBOL vmlinux 0xfc27d1f0 sock_setsockopt -EXPORT_SYMBOL vmlinux 0xfc2cae93 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xfbec91e7 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xfbecffcd mii_check_media +EXPORT_SYMBOL vmlinux 0xfc2a674f udp_seq_stop EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit -EXPORT_SYMBOL vmlinux 0xfc34bedd skb_queue_tail EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read -EXPORT_SYMBOL vmlinux 0xfc4c011e audit_log -EXPORT_SYMBOL vmlinux 0xfc527013 call_fib_notifiers EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc7c6cc0 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xfc53ec6f xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xfc695ca2 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xfc7217b2 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xfc78268d tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0xfc7dd517 zero_fill_bio -EXPORT_SYMBOL vmlinux 0xfc7e1100 unix_detach_fds -EXPORT_SYMBOL vmlinux 0xfc81f932 skb_headers_offset_update EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available +EXPORT_SYMBOL vmlinux 0xfcae4388 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xfcc7168b reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable -EXPORT_SYMBOL vmlinux 0xfccf0bcb dev_lstats_read EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcd8e999 register_qdisc EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq EXPORT_SYMBOL vmlinux 0xfd034cff kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xfd1866e7 vfs_fsync +EXPORT_SYMBOL vmlinux 0xfd04aa31 fc_mount +EXPORT_SYMBOL vmlinux 0xfd0b963a __dev_kfree_skb_irq EXPORT_SYMBOL vmlinux 0xfd1c7c3a rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0xfd1d4f8d phy_driver_register +EXPORT_SYMBOL vmlinux 0xfd1f506f vfs_fsync_range EXPORT_SYMBOL vmlinux 0xfd3ffd98 fman_unregister_intr +EXPORT_SYMBOL vmlinux 0xfd454179 _dev_printk +EXPORT_SYMBOL vmlinux 0xfd7bdafa unix_detach_fds EXPORT_SYMBOL vmlinux 0xfd8512e3 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xfd863af7 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xfda9577d skb_split EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdba35dd mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xfdbaa026 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xfdc41a93 jbd2_fc_wait_bufs EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdcce8f4 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xfdde54b7 inet_getname EXPORT_SYMBOL vmlinux 0xfde6fcf9 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xfdf09e20 dev_printk_emit -EXPORT_SYMBOL vmlinux 0xfdf832c6 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xfde7c3a9 ppp_unregister_channel EXPORT_SYMBOL vmlinux 0xfe008dae fput +EXPORT_SYMBOL vmlinux 0xfe01940e netdev_lower_get_next EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update EXPORT_SYMBOL vmlinux 0xfe1dea7f cdev_set_parent -EXPORT_SYMBOL vmlinux 0xfe20a1ef set_create_files_as EXPORT_SYMBOL vmlinux 0xfe29e057 drop_super -EXPORT_SYMBOL vmlinux 0xfe2b3947 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xfe2d55b0 wireless_send_event EXPORT_SYMBOL vmlinux 0xfe31c55d tegra_ivc_write_advance EXPORT_SYMBOL vmlinux 0xfe37ed3f simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xfe39498e __scm_destroy +EXPORT_SYMBOL vmlinux 0xfe387521 __pagevec_release EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry EXPORT_SYMBOL vmlinux 0xfe5a31c8 devm_pci_remap_cfg_resource EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe6543da neigh_event_ns +EXPORT_SYMBOL vmlinux 0xfe5ef30e ppp_input EXPORT_SYMBOL vmlinux 0xfe6f0858 seq_release_private +EXPORT_SYMBOL vmlinux 0xfe76d22c vm_map_pages EXPORT_SYMBOL vmlinux 0xfe868a0a dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xfe8823b0 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xfe8daec5 i2c_smbus_write_i2c_block_data EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer EXPORT_SYMBOL vmlinux 0xfe91941f param_ops_string -EXPORT_SYMBOL vmlinux 0xfe95c1e6 netdev_notify_peers EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfeaf3d9a ip_defrag +EXPORT_SYMBOL vmlinux 0xfea3c367 jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfecb98ac tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xfedb35fd tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xfedb7010 kmem_cache_create_usercopy EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu EXPORT_SYMBOL vmlinux 0xfee13409 pci_bus_read_dev_vendor_id EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfef34d81 vfs_rmdir EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfeff3781 mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0xff035a1b genphy_suspend -EXPORT_SYMBOL vmlinux 0xff076cc9 vme_irq_request +EXPORT_SYMBOL vmlinux 0xff0a3696 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xff0faaac cad_pid +EXPORT_SYMBOL vmlinux 0xff0fb5e7 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xff12e9ae noop_qdisc EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff212d23 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xff238d5c tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register EXPORT_SYMBOL vmlinux 0xff2db2dd invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xff3c45d7 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0xff5712ea cont_write_begin +EXPORT_SYMBOL vmlinux 0xff4d13c7 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xff5bf661 tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff72d688 phy_disconnect +EXPORT_SYMBOL vmlinux 0xff689cef twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xff72cf33 neigh_seq_stop EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg -EXPORT_SYMBOL vmlinux 0xff8069f6 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff90588b unlock_buffer -EXPORT_SYMBOL vmlinux 0xff90edde xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xff96800d jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xff9ae473 reuseport_alloc EXPORT_SYMBOL vmlinux 0xff9c14da scsi_register_interface EXPORT_SYMBOL vmlinux 0xff9f250f bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xffb06857 ppp_unregister_compressor EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free -EXPORT_SYMBOL vmlinux 0xffbe70fc xfrm_state_free EXPORT_SYMBOL vmlinux 0xffbf3e30 d_alloc_anon EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffe2ed49 netdev_crit -EXPORT_SYMBOL vmlinux 0xffe439ad eth_mac_addr +EXPORT_SYMBOL vmlinux 0xffd8e184 skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn EXPORT_SYMBOL vmlinux 0xfff0957d tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0xfff5e2c4 dns_query EXPORT_SYMBOL vmlinux 0xfff64ddb param_array_ops -EXPORT_SYMBOL_GPL crypto/af_alg 0x073f69bf af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x1b588bd1 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x35008372 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x35ab2b55 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x4c62cd8d af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x4f3ddb30 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x7012f07b af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x79354ac0 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x7cedc17b af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0xa73ef586 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xa7b16335 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xa91a4467 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xae644ea3 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xdc192a88 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0xe2f0f831 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xece596ba af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0xeebd08fc af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xf3daea6f af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x14054808 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x1c6d34be af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x2250401f af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x2bdb1447 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x4d78c114 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x4f77ff75 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x59f2d833 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x6552e5bc af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x7171cd2d af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x7656d055 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x8845cf90 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x91a8a564 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x93b502cc af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x95581e9b af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x9ca97e08 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xa1a22594 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xda34ffbd af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xf10d0148 af_alg_wait_for_data EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x9f04eeab asym_tpm_subtype EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x474d2326 async_memcpy @@ -11848,42 +11740,42 @@ 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 0x2c286566 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x2d08d873 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x4837d9e8 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x549a1ddd cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x63ead368 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x6cfbe19d cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x700b267b cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x90724c8b cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x9bc5b540 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xacbe7309 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xaccf47dd cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xdfc9dd37 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xf785f770 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0c78a438 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x212c66a7 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x29cb92a1 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x50da2152 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5eaf5ef2 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7e9cde8e crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8495ac4b crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8c2e94b4 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8dda01fb crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x95bde3be crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb0780ef9 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcff6cab0 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xedb0b913 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x24449a50 simd_register_aeads_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x4cf28b2b simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/cryptd 0x13a5932a cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x2694a465 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x3a589953 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x4356a11b cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x58b0d4bc cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x6bd02b63 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x71b19c54 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x72326d6a cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xb2ddbdfb cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xd0814ca1 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xebac4395 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xf342c6fb cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xfe6c19ac cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x08f0fd07 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x30c6e676 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x40f0e505 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4940ad30 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4e9bec96 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5c653a3b crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x62d28ec2 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xaa6fc338 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc55a6e58 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xca6aa9d3 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xce3873bb crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd10d2142 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd40f1985 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x02edbad8 simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x238ea4fc simd_register_aeads_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x65334d98 simd_register_skciphers_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 0xbfd26f15 simd_aead_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xee9add52 simd_unregister_skciphers EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xf37256ef simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xfac9fa2d 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 @@ -11977,81 +11869,81 @@ EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8e3755cf __regmap_init_spmi EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x968fcb6e __devm_regmap_init_spmi_ext EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x8a36e399 __regmap_init_w1 EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x9b322fba __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1c3b5220 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1e46e77b bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x24f7a663 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x25c3bf4a bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x35d504c3 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x450c5c59 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4bc587d8 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x536bf96b bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x56b1e9a1 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x56e31400 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x62ce6f4d __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6b35bfe7 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x75839992 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7a35ade5 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7b976c8d bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9f5e2d57 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xab2d68b6 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbc16207f bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xda1aceda bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdb54cce3 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe229f6fb bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe30c83db bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xff1ebed5 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xff46fb8f bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0337ea68 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x134d8b68 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x31af1325 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4b499744 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5ad8603a btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbdf6b043 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc54febd7 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xfa94ac31 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x18355ff4 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x43756cf0 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5cc4b488 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7cf01673 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8f9db7c4 btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9126dead btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x96087a4f btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa92cb526 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb8bb9946 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbdc59389 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbff547fe btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcee23431 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdb55063c btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe6be6a53 btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xefc52ae8 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfcbf4bf7 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x199cb59c btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1bbc7522 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x47c3c721 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7ac9b6e5 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9f97e998 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xba7d034a btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbd1bf40b btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdca97586 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe1044aa0 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xec127b6e btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf25b4a8f btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x448b1b81 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x62f55e14 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x74f13f56 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb835726b qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc1cc62bd qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1a6eee54 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x459c036f btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x5621b73f btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x5dd52002 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9dc10e9a btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0ea9f8d4 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x20f62a75 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2113f8c0 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x25378b2a bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x36181c52 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x52e01bd9 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5b0c1a61 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5ccf93be bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6e530c33 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x775a0247 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7a136c4f bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x84fd7534 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x85d1d236 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa19ee662 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa7825565 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa925b0b0 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb8667fb5 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbb86db77 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc09546ac bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcd5fd4ed bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd25ff94f __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe0b29868 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf23eecc6 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf31ccbd3 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3c2eb02b btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3f25562a btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4a6c9476 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7f7e4eb5 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8f4747a6 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9b24817e btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xad8ed7f3 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd59caebf btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1873d974 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3c4ebbd3 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3ffbaaf6 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x48416ac5 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5a070c44 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x66a9e721 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x66be2408 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6f0b1d97 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x759064e5 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7d7298cc btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8952f222 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x90209731 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x957abd3d btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9876752d btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe44d1fdd btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe4774429 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0b908f7a btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1446e593 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x16a180a5 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3e31dcf9 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x51b62750 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5d70f765 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6283d484 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6692d16e btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6acfc8b8 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9272784f btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc6fb150b btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x1dfdb5ea qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x20f0927c qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x33d1c13a qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x84e0923a qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc66541c1 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x00b00305 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x33648b9d btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3ae836d8 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x761bb9bd btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x893dc92c btrtl_set_quirks EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf0a63fc2 btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x23fab2ac hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x48c5c88a hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x65c3fd8b h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xf97b166d hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb4c4e3fe btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x01ae08c3 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x04fa1fec hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x55c9b3e4 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xb34bcc19 hci_uart_register_device EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x016fe203 mhi_pm_resume_force EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x024a47ed mhi_prepare_for_transfer EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x16cd655d mhi_soc_reset @@ -12098,21 +11990,22 @@ 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 0x1314a7de qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x15125d00 qcom_cc_probe 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 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 0x22ab62ce qcom_cc_probe_by_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x24a7abf5 clk_zonda_pll_configure 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 0x2ee30903 qcom_cc_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 0x3bfe915e qcom_cc_really_probe 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 @@ -12139,7 +12032,6 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7dc2da81 devm_clk_register_regmap 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 0x8b55eac4 clk_dyn_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8e03a304 qcom_cc_really_probe 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 @@ -12150,13 +12042,13 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa14c013e gdsc_gx_do_nothing_enabl 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 0xb257890e qcom_find_cfg_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb8df2025 qcom_cc_map 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 0xc2e59ced qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc5bdfa11 clk_byte2_ops 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 0xd063c0c8 qcom_cc_probe_by_index 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 @@ -12172,11 +12064,11 @@ EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x4cad4f51 sprd_div_helper_round_ra 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 EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x6b8639b9 sprd_div_helper_set_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x888866be sprd_clk_regmap_init EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x911aa4a0 sprd_mux_ops 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 0xfaa2d0ed sprd_clk_regmap_init EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x00337640 comedi_auto_config EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x19fdb0de comedi_alloc_spriv @@ -12387,23 +12279,23 @@ EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xb8ec7a81 dpdmai_open EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xf0d36908 dpdmai_get_tx_queue EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xf39d8a16 dpdmai_disable EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x07597978 fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x17387d14 fsl_edma_setup_regs EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1ca926bf fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2d97b881 fsl_edma_disable_request EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2e9ff6be fsl_edma_issue_pending EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2f55beef fsl_edma_prep_dma_cyclic EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x347875d9 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4b2b4a10 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4f748311 fsl_edma_chan_mux EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5757f844 fsl_edma_terminate_all EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x580d38e3 fsl_edma_free_desc EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6ef962dc fsl_edma_resume EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x73f88776 fsl_edma_free_chan_resources EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7acd35cb fsl_edma_cleanup_vchan EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8427db4a fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8fd54b7f fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xda65dbdf fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x92882cbe fsl_edma_xfer_desc EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe0a0f12c fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfecd671b fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x470142af hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x9d2954a3 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x14df492a hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x6925dc44 hidma_mgmt_init_sys EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x4e814057 ffa_device_unregister EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x980673b9 ffa_driver_unregister @@ -12419,29 +12311,29 @@ EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x595b630e stratix10_svc_free_ EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x5ef91b2a 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 0x2b3d0b53 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0a7374a6 __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2331946a dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0c3cd78c dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1fd6218d dfl_fpga_set_irq_triggers EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3e1ced98 dfl_fpga_cdev_release_port EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x45d78695 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4e76efe3 dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6818baf9 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x46f2a6d2 dfl_feature_ioctl_set_irq EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7223afef dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x72499f00 dfl_fpga_dev_feature_init EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x78c20b97 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x79f3c00c dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x79ddfeea dfl_fpga_port_ops_add EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7c4cc799 dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7f4167dc dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fddfc88 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8701593f dfl_fpga_check_port_id EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x88a560f4 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8da16e5d __dfl_fpga_cdev_find_port EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x965954e2 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x988631ce dfl_fpga_dev_feature_uinit EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9c9184a9 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa04172f8 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa3b1c008 dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcac0154d dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9db06a5e dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9def2446 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa6d6e4f7 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc231cc33 dfl_feature_ioctl_get_num_irqs EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd0f9d027 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd4903f9d dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdf6cfa97 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe4bc9eaa dfl_fpga_dev_feature_uinit EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xef0a6ede dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfe7fcf54 dfl_fpga_port_ops_put EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0aec8174 devm_fpga_bridge_create EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put @@ -12478,21 +12370,21 @@ EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x746f75a4 fpga_region_free EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x76e6a22e fpga_region_unregister EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xb078a03e fpga_region_class_find EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xbe2e9df5 devm_fpga_region_create +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x06993517 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x1d017194 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x1e9473ed fsi_bus_type EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x405f16b2 fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4e71e468 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3cef02f2 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x494acb82 fsi_device_write EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x657ae3f5 fsi_driver_unregister EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x889fe7f2 fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8fd28538 fsi_get_new_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x93e1ef07 fsi_device_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc6add1cc fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8037a350 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xbde29a71 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc14fe185 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xcc68c998 fsi_master_unregister EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd1e0e07c fsi_bus_type EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xdf427357 fsi_device_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf2f1a971 fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xfe1be9a5 fsi_cdev_type EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xb22c1a0a fsi_occ_submit EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x3359d3ef sbefifo_submit EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xfb27bb8c sbefifo_parse_status @@ -12523,7 +12415,6 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcbd8b192 analog EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe3ce7e0a 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 0x129c2f24 dw_hdmi_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x157e02b6 dw_hdmi_phy_reset EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense @@ -12534,10 +12425,11 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4524f857 dw_hdmi_se 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 0x84df3eb4 dw_hdmi_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8c56146d dw_hdmi_set_high_tmds_clock_ratio 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 0x96116c20 dw_hdmi_bind 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 0xa0d69018 dw_hdmi_bind 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 @@ -12546,7 +12438,7 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_ph EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x0d667204 dw_mipi_dsi_unbind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x41361ae4 dw_mipi_dsi_set_slave EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x42ac3b2e dw_mipi_dsi_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x43a48078 dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xb55308fd dw_mipi_dsi_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xe9b84190 dw_mipi_dsi_bind EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x010bf5de drm_hdcp_check_ksvs_revoked EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x03ebdc26 drm_gem_shmem_get_pages_sgt @@ -12614,10 +12506,10 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xecf357eb meson_vclk_vic_sup EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x5e2762e7 s6e63m0_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xe61f15e4 s6e63m0_remove EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x351308d5 pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x3826946a rcar_cmm_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x39e6e92a rcar_cmm_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x5d2644ba rcar_cmm_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x65d2e8ec rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x4ae599d1 rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x9f32f36c rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xd34e5fc9 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xd62743ce rcar_cmm_setup EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x282a7f5e rcar_lvds_dual_link EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x84553595 rcar_lvds_is_connected EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x8d383e99 rcar_lvds_clk_enable @@ -12632,13 +12524,14 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x172707d4 gb_operation_get_payload_size_max EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1c91a3d5 gb_connection_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x26e17863 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2971a05d greybus_register_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2fa82036 gb_svc_intf_set_power_mode EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x301ef019 gb_operation_result EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x348e598d gb_operation_create_flags EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x39b1c4a0 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3d9db36a greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x410d05fd gb_connection_latency_tag_disable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x453e1c82 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4a83a937 greybus_register_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4f441f7e gb_connection_enable_tx EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5496270b gb_connection_latency_tag_enable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5568b572 __traceiter_gb_hd_release @@ -12680,84 +12573,83 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xedb02754 gb_operation_unidirectiona EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xefdf02c3 gb_operation_get EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf3d1b412 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xff9f9155 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x013a07a8 hid_destroy_device EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x094bb75e hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c7804ca hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0909c510 hid_check_keys_pressed EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1a605572 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2645102c hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x27511ad2 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x29412fac hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c9354d1 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1d88e3f4 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1f814bdd hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2160f531 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c811ab9 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2fef98aa hidinput_connect EXPORT_SYMBOL_GPL drivers/hid/hid 0x30198762 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x30343cc0 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3ba500cf hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4078f816 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4debfe1f hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x54bd43c5 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x56aa5c0a hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x583bad0c hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x58c95373 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c19bcdf hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5e4cf862 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x657715b4 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x69015d3a hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x69ddf407 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x70b7f33a hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7106a07f hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x74343d72 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x776d54fb hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c2409a6 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8604cd42 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x86c34a64 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x882ea033 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8ae8cadd hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b9401a4 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x416cdbe6 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x42cefb24 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x43ba7c78 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x49c92026 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4cb9c502 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4d874b3b hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x55e4870c hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x561c7a69 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x56650a18 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x584a3a16 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x61bc7e10 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6676dd5b hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6ad47118 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x764cb973 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7a54e9f9 hid_dump_device EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x91104a1f hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9955321e hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2951742 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbe036522 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc14d458b __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc55ce66c hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb68c080 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcdd9b752 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd6bbc4e6 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd40ecca hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe24dd069 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf434628b hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf50da418 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b46fb01 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9d97939f hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa0251fff hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7a51907 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa384a34 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb0707da8 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbb71fe18 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbbfd68b3 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd0eaf80 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xca32d4b3 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcc9593ff hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd1439406 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd45943d0 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd75e22a1 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd96ef9e1 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf6b5a33 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe59a38cf hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xed12940f hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf67e6d55 hid_dump_report EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfba388cc hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xff7656d6 hid_unregister_driver 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 0x9b6fd082 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x4c5b3253 roccat_connect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0d4c4168 roccat_common2_send_with_status EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5c0ef3f1 roccat_common2_device_init_struct EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6178f8ce roccat_common2_send EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6b6644c4 roccat_common2_sysfs_read EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6f367b4e roccat_common2_receive EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb8dc91f6 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x169e442c sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1dbbd24e sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x52482a8b sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6378bbfb sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x79d9392d hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9889cdc6 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xda556aea sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdab86a3c sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xec29904b sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x09c557d6 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x19158cee sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2061720d hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2f80d36f sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x31e1739f sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x33141316 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4c3744ab sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x83fcb761 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa23f1112 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe6e0dcbf sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x28375c7b i2c_hid_ll_driver EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x45bfe568 i2c_hid_core_pm EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xbe832be3 i2c_hid_core_shutdown EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xe61babb9 i2c_hid_core_probe EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xfc4759bf i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x0700aafc surface_hid_device_destroy EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x0edcd1e5 surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xb67c7edf surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/uhid 0x09d6ea5f uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x81f274bb hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x85acd533 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x884d9075 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xaebc169c surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/uhid 0xd07acc0c uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x36e665aa usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x4546d45d hiddev_hid_event EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x01857df6 hsi_port_unregister_clients EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x12588f2d hsi_put_controller EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4ff2160a hsi_register_port_event @@ -12934,18 +12826,18 @@ EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x1d4d0c72 d EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xa7c2cdc0 devm_iio_kfifo_buffer_setup_ext EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x6beb14d8 bme680_core_probe EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0xb1b33f0b sps30_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x13a259ba cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x3494c443 cros_ec_sensors_core_init EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x50eeb81f cros_ec_sensors_core_read_avail EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x54169f7e cros_ec_sensors_read_lpc EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x60ceb5a7 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x66b0c5e8 cros_ec_sensors_core_read EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x84d4d5f3 cros_ec_sensors_read_cmd EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8aa76f93 cros_ec_sensors_core_register EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x93603411 cros_ec_sensors_ext_info EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xad780536 cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xaf0dd260 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc4e3ca20 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe5676e85 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xb4c252d7 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xb53bd9ee cros_ec_sensors_core_write EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x0d8e9e6b ad5592r_remove EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x589cd297 ad5592r_probe EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x78b208ee ad5686_probe @@ -12972,6 +12864,7 @@ EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0cee94b7 iio_dealloc_pollfunc EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0f6dd6a0 iio_push_to_buffers EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1111f563 iio_map_array_unregister EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x180986d3 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x185c4dfb iio_device_get_current_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1acf1b29 iio_channel_get EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b1d336d iio_show_mount_matrix EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2534c758 __devm_iio_device_register @@ -12991,12 +12884,15 @@ EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5d45d83d devm_iio_trigger_alloc EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5e35587d iio_alloc_pollfunc EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x61af8ee9 of_iio_channel_get_by_name EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6a5e714f iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7a4702b9 iio_device_release_buffer_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fe7a140 devm_iio_channel_get_all EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8b39ff5f devm_of_iio_channel_get_by_name EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8de1fbac iio_get_channel_ext_info_count EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x917645b1 iio_read_channel_processed_scale EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x941d82d8 iio_read_channel_scale EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9da3b3ec iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa3ba60e9 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb01add08 iio_device_claim_buffer_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb5beb3fb iio_read_avail_channel_attribute EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb703ff01 iio_write_channel_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb7d49169 iio_channel_release_all @@ -13026,18 +12922,18 @@ EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xafb97921 zpa2326_pm_ops EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xd06aee66 zpa2326_isreg_precious EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xd33a906b zpa2326_isreg_writeable EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1acc0ef5 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x57be2c60 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6b32ddda rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x70edb1f7 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7e30ad5b rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x885269e0 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8d842c39 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa30b9e93 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbd6ae545 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc15526c7 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd79ae809 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe2741294 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0827d87e rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x09dc88a4 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1bc09e5e rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x30c4c5bc rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x33e875bd rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x46bdc768 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x478db2bf rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8f98b731 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa748571f rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcab46239 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd31a115d rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd6d63603 rtrs_stop_hb EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x9f6a7011 input_ff_create_memless EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xe06c2d73 matrix_keypad_parse_properties EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x1724d0d7 adxl34x_probe @@ -13068,30 +12964,30 @@ EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0f22d33e tsc200x_pro EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x13b88880 tsc200x_pm_ops EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x974be449 tsc200x_regmap_config EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc64cf646 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x00a8eaca wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0ab4b71b wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x32bbfbeb wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3496ec16 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x38c0c46f wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3ea3f12a wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4c2bbc3f wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x93c19895 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xafc097c2 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcc02ea54 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd1bcf70e wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe75dd96c wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x37bfbe0f imx_icc_unregister -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xe69ca158 imx_icc_register +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x31d5554b wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x59a16a58 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7440feea wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7b3a7f13 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9095ce59 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa554e32e wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb8eafe74 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc2b5f2f3 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc741b7ab wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcf982dc5 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdc2eae74 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe5292f4b wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x52b9d98e imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x5bf9537c 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 0x4e4bb66f of_bcm_voter_get EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x0ee59bea qcom_icc_aggregate EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x2728eac2 qcom_icc_set -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x4b98f9ca qcom_icc_rpmh_probe EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x7ebd4266 qcom_icc_xlate_extended -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x93290562 qcom_icc_rpmh_remove EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x97852a05 qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x9941d463 qcom_icc_rpmh_probe EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x99942676 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xc79eb7cb qcom_icc_rpmh_remove 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 0x1b02c3d8 ipack_bus_register @@ -13131,16 +13027,13 @@ EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_g EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x051b2215 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05e1cd67 __traceiter_bcache_alloc_fail 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 0x11c7275f __traceiter_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x125735fc __traceiter_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x13554d0d __traceiter_bcache_btree_node_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 -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17e226e9 __traceiter_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x191717af __tracepoint_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1934a9a9 __tracepoint_bcache_writeback @@ -13148,47 +13041,46 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btr 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 0x207a0f14 __traceiter_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x2d802cd0 __traceiter_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e580d50 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e7c09d3 __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2f1a73b8 __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ce1c4d9 __traceiter_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x42a0be94 __traceiter_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x430d792d __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a5c857c __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x42d55e6e __traceiter_bcache_btree_cache_cannibalize 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 0x4caac987 __traceiter_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x508c927f __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x53b5e5e3 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x590c81d1 __traceiter_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cc8cb86 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d27c295 __traceiter_bcache_btree_node_split 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 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 0x684300b3 __traceiter_bcache_btree_node_compact 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 0x75a3a84b __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x743029e4 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x756228d2 __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 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 0x82dea06c __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x816687e1 __traceiter_bcache_invalidate 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 0x8a3af4b5 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x864292f2 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x872525ec __traceiter_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8d25d873 __traceiter_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f7bf61a __traceiter_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x97f9709f __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92bbb573 __traceiter_bcache_gc_start 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 @@ -13197,30 +13089,34 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_all EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xadffa14a __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5533dda __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb68e6d95 __traceiter_bcache_bypass_congested 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 0xbb86a667 __traceiter_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc268695 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbeac14f8 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbf17832b __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc78d7102 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc7945d82 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc7aed358 __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc9817d78 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc91b0bd4 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcb18682a __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcd73ec1f __traceiter_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd21401b1 __traceiter_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0xe2885087 __traceiter_bcache_btree_write 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 0xf5db18da __traceiter_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf865c1a2 __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfabb92ff __traceiter_bcache_journal_entry_full 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 0x06d5b33b dm_cell_quiesce_v2 @@ -13485,18 +13381,17 @@ EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2593782f __ EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x27ce45a4 vb2_thread_start EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x325f956d vb2_core_streamoff EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x338c758c vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3f9f1544 __traceiter_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x47eec97c vb2_read EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4d74cc01 vb2_core_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x59747941 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5d1c1c18 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5a10a064 __traceiter_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6f72283f vb2_request_object_is_buffer EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x753cad81 vb2_core_expbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8b7f6646 vb2_core_queue_release EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8d49d90e vb2_core_streamon EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x930c679c vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x94fc81de __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa915ed92 __traceiter_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb0c88766 vb2_buffer_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb15132d0 vb2_write EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf @@ -13504,9 +13399,10 @@ EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb907a810 vb EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbd9a3d7d vb2_discard_done 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 0xcebef311 __traceiter_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd8d61266 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe058ad1c __traceiter_vb2_buf_queue EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe6240092 vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xebb74484 __traceiter_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xebf3067b vb2_core_create_bufs EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf51681f3 vb2_thread_stop EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf @@ -13554,12 +13450,107 @@ EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x404c4b43 dvb_module_probe EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x5ca7a0ef dvb_create_media_graph EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xc0e2db51 dvb_module_release EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xdc6d2e8b as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0xcb8583d9 ascot2e_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0x477e434c atbm8830_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0x928cf154 au8522_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0xc62dc12d bcm3510_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0x9cfa5133 cx22700_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0x4d9e6aad cx22702_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0x87ea1b5c cx24110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0x0fc951a1 cx24113_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0xdc049e61 cx24116_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x49c87b05 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0x9c5a8dcb cx24120_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0xd2a36bcc cx24123_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0x47ef11d5 cxd2820r_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x1c1951b3 cxd2841er_attach_t_c +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0xc4587a71 cxd2841er_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0x06d33226 cxd2880_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0x7756ed89 dib0070_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x4f82eb73 dib0090_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x9906d4eb dib0090_fw_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0xafe55010 dib3000mb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0x830edf2a dib3000mc_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0x7e57be64 dib7000m_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0x1c1498df dib7000p_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0xec5f0a10 dib8000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0x61300d23 dib9000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x4dc06473 drx39xxj_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0x20adbae7 drxd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0x00852d4b drxk_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0x49910830 ds3000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0xcc28f1b7 dvb_pll_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0x5a841fea ec100_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xf31abae2 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x9a864ab6 helene_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0xef024d6c helene_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0x7417e9d2 horus3a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0xd9940455 isl6405_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0x7e4cca4d isl6421_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0xc6e216a4 isl6423_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0x65bb6381 itd1000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0xd0a19339 ix2505v_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0xee4822b2 l64781_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0x50ad996d lg2160_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0x62208ac9 lgdt3305_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0xd44f713f lgdt3306a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0xce08414e lgdt330x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0x97c29b56 lgs8gxx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0x312e246c lnbh25_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x95659918 lnbp21_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x9c669c56 lnbh24_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0x0e4de0b4 lnbp22_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0xb49653d7 m88ds3103_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0x2a5f3806 m88rs2000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0xdfb0a569 mb86a16_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0xc452cc3f mb86a20s_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0x858bcfa0 mt312_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0xee08190a mt352_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x066d8bd5 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0xa4854b4b nxt200x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0xc700b9d9 nxt6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0x46363b97 or51132_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0xcfa42ab6 or51211_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0xd27af821 s5h1409_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0xa12a2d38 s5h1411_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0x2a1c7c85 s5h1420_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0xaf9b00e4 s5h1432_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0x24149a8c s921_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0x4375a627 si21xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0x6b733c76 sp887x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0xcfe9b127 stb0899_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0x45921009 stb6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0xd5f12427 stb6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0xd692a96d stv0288_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0x9fba2363 stv0297_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0xafa2e09d stv0299_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x4a1c6942 stv0367ddb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x7aec7778 stv0367ter_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xfbde8d15 stv0367cab_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0x3652bb16 stv0900_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0xba06d269 stv090x_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xc92fc68a stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0xf826e043 stv6110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0x94e14663 stv6110x_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xf950f380 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0x1c9c146a tda10021_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0xba938c6c tda10023_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0x45118c64 tda10048_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x168643e6 tda10045_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x2d0b5c92 tda10046_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0x2df8a508 tda10086_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x8b545937 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0x9f9208b4 tda665x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0xf3fba575 tda8083_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0xd0bdc619 tda8261_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0x09975f11 tda826x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0x821eacd9 ts2020_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0xd75e20ed tua6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0x363c0b49 ves1820_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0xd1edf778 ves1x93_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0x4c6a018c zl10036_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0x3f995836 zl10039_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0x5851fed2 zl10353_attach EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x3bed7049 aptina_pll_calculate EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xb0e87ee6 ccs_pll_calculate EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x08407706 max9271_set_translation @@ -13623,53 +13614,56 @@ EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf0c08627 media_device_init EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf17cca5f media_remove_intf_links EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfff624db media_device_delete -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xd32fa0e2 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x01ae94eb mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1e880819 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x318f6be5 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x354ba648 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x36c5aa2a mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4bb5b993 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x65f2060c mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x75d7faa6 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7d9ec40b mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9b309ff1 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa228b7dc mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xba261826 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbecda4be mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcb5e50e1 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xce0d2e7b mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe668dd34 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xef8f1323 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf06f6d4e mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf8f22bb3 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x25354f28 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4ce6ec10 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5e62beef saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x67335448 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6b760e20 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6d2569a9 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x70dacf23 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x904bf20f saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x94f2dcc2 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9754f77b saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa00a4517 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa2a2c92d saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa7aabb43 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa851a5ac saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb8b074df saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbe3b421b saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc20d38ae saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd2a68f02 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe8f89a08 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x49c9fe9d ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x565a220a ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6689e77a ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x67ed54d1 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6dace88a ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0x5b1ad4c0 dst_attach +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0x9bb429cc dst_ca_attach +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xc1250e16 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xb96f1545 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x02df12da mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0a83b688 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x28095e3d mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2c028cbb mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2f2bebfe mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5002b8d2 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x57200d11 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x573fd6f6 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5be491ae mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7080cdf7 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa67241f7 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa8e951db mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xafcbe418 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb705282d mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd5cf5d6c mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeb6de274 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xebd111a4 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf06b2bf8 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf83ab0bf mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x08abeac6 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x36818ddc saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3cfaf149 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3d8add0d saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x40dfc1e7 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x41108f1e saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x425ee0d9 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5e547ef4 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6ed91cf3 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6f9c0567 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7da0eff2 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x81f680f3 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x84a678cb saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9635dcb5 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9fa391d5 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa940d113 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbabaac6f saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdd50f364 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf71c4d69 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1e00558d ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2d574ee6 ttpci_budget_debiread EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8e3ec148 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xba94d54d ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x81002564 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd3f78a1d ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd40cfe61 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xec474065 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf9501204 ttpci_budget_debiwrite EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x0a7999a8 nal_hevc_tier_from_v4l2 EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x0d979233 nal_h264_write_sps EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x11c457df nal_hevc_write_pps @@ -13692,14 +13686,14 @@ EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x2d2706d9 mcci EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x34561c5c mccic_suspend EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x4deb9c0d mccic_resume EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xd982c521 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x2c8edb09 vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x46dd376a vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x4ecbd9fc vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x5a495267 vpu_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x7d7dfdac vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xa5f5a498 vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xacf887e7 vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xce3a0af4 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x16e76c45 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x449371ba vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x531ffbff vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x72b4a491 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x732bb6cc vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x7bd8f329 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xa34383f4 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xb8386f6f vpu_get_vdec_hw_capa EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x155e52e4 hfi_session_deinit EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x16287b8c venus_helper_vb2_stop_streaming EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1ee36fda venus_helper_queue_dpb_bufs @@ -13809,10 +13803,21 @@ EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcd9aeb3e rc_keydown_notimeout EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdadae60f ir_raw_event_store_edge EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe62a130b rc_g_keycode_from_table EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0x374e2b9a fc0011_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0x62c9b938 fc0012_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0x508dc7a2 fc0013_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0x77ab32fd max2165_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0x4d3226d4 mc44s803_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0xf2392a8a mt2060_attach EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x13fcf0e5 mt2063_attach EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x19307c36 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0xefa5b882 mt2131_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0x1951718d mt2266_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0x3eb2d40a mxl5005s_attach EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x0344205a mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0xb4472289 qt1010_attach EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x299db89e r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0xbd0d2f31 tda18218_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x3a46adb4 tda18271_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x8bc55317 tda827x_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x2f6c2cde tda829x_probe @@ -13823,6 +13828,8 @@ EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xe9eb4d97 tea5761_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x3b044650 tea5767_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x6d482f9f tea5767_autodetection EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xc7ba89ce simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0x2b0c94d3 xc4000_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0x7f425942 xc5000_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0fd00a85 cx231xx_dev_init EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1cd24d2f cx231xx_dev_uninit @@ -13844,8 +13851,8 @@ EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe73435a6 cx231xx_init_iso EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xef210ee4 cx231xx_send_usb_command EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xefbe94ad cx231xx_enable656 EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf044c0b5 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x7d5e64e6 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xb0ffedf1 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x6af471fe mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xfb68795f mxl111sf_tuner_attach EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2bd88f84 em28xx_audio_setup EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3170f4aa em28xx_set_mode EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x31be7e5c em28xx_gpio_set @@ -14003,13 +14010,16 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1aa88342 v4l2_i2c_subdev_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ff9dd48 v4l2_get_link_freq EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2860f298 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28fa36a4 __traceiter_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2abd7efb 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 0x2ca16a84 v4l2_subdev_get_fwnode_pad_1_to_1 EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2d5f94d1 v4l2_fh_is_singular EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e58cb27 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e7a13a5 __traceiter_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x30833d95 v4l2_fh_del EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3490cb05 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x37955bcd __traceiter_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3dddfe92 v4l2_create_fwnode_links_to_pad EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4125b04c v4l2_fh_open EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x452f53b1 __tracepoint_vb2_v4l2_buf_done @@ -14043,10 +14053,7 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9900f046 v4l2_subdev_alloc EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9dd0d7a9 v4l2_compat_ioctl32 EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa3775cc7 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa5c45ea4 __traceiter_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac5b1bca v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae4d8695 __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xafc7ca3b __traceiter_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbaafff3b __v4l2_ctrl_handler_setup EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf2ca474 v4l2_device_register_subdev @@ -14061,8 +14068,8 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdbec0dfb v4l2_fh_release EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdc6b2145 v4l2_src_change_event_subscribe 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 0xe6369680 __traceiter_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xea5b1e8f v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf0d40203 __traceiter_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf13daba8 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 0xf3f36201 v4l2_ctrl_request_hdl_find @@ -14101,8 +14108,8 @@ EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcd4d5b9f wm5110_patch EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd38acd0d wm5110_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd79113cd cs47l24_patch EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdcec7041 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x1365ec22 atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x275980bd atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x30164c38 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xbb3e440c atc260x_device_probe EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x24b4ea9d da9150_set_bits EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x278ca1bf da9150_bulk_write EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6032802e da9150_read_qif @@ -14171,62 +14178,62 @@ EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa9f268bb mc13xxx_variant_mc13783 EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xbbfd9dd3 mc13xxx_variant_mc34708 EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe948239b mc13xxx_variant_mc13892 EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0077359c pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2ac3e318 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2f64d5ac pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x395addd7 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x538a2c8e pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x72ca6ebc pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x87a6f3a0 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xca574d4c pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xce6316c3 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdb5b3870 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe430212b pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x8f0eabf7 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x902edad8 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x27c8ff9d pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x364da72c pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x73d84ba9 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x75dfbdb2 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x998b7fb1 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x43d2e4ba pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4628d76e pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7a0bf26d pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8233aa7f pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x82c3b17e pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8e810806 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x994426a9 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb9c33f28 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbdc03e0b pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc48811d7 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf2e2f0b0 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x38e6225e pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xad62903f pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3bec4138 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7b773bbf pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8d77d492 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x93e11f06 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf319a555 pcf50633_gpio_set EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x0a0eaf62 devm_rave_sp_register_event_notifier EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a8b525d devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a9c6723 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1440383e si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1a74d5d3 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26fb71fc si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c416018 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x365783f8 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x38c6fcea si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3d4343e6 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x41d4dd94 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x420f1bf5 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x466a1401 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x48d95d54 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5808cde5 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5944c93e si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5e49a47b si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x67ec6107 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x74ccdade si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f2a10d2 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa4ae3d6d si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xad6999a1 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbc3a0697 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbde4134b si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc2800551 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc6ac7262 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdad050db si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdbc5b926 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdf289010 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe1e80303 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe4f88466 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf4d7bbff si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf8ed9072 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfe5f3de7 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfeeb4bb1 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0f15c64c si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x13e78db9 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c0202de si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x245e1722 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2cb8ccd2 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3c272b2a si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3df145d6 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x41641201 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x562670bc si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5d32b0a2 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5d92524d si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5f06cbe5 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x63c3468c si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7e72bf00 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x81151592 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x839b005f si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x86b36a3f si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9da1d4cb si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa0009082 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa488ccaf si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaade4f6a si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb125ce94 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb4054645 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbb490196 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbf84fe7c si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd1e086d9 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdbecdab5 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdf465e48 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe4f88193 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xedbb641b si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf1e8a3f5 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf7ec4977 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf874b058 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf884dce7 si476x_core_is_powered_up EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x296da30e sm501_misc_control EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x5095d925 sm501_set_clock EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7b3ef25b sm501_unit_power @@ -14235,10 +14242,10 @@ EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xefd98c2e sm501_modify_reg EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0xe12be10c sprd_pmic_detect_charger_type EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x50caa88d stmfx_function_disable EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xffdd96b2 stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x5f017961 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc0e626c7 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd1cc1ae8 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd3953f4b am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x01ccf5f3 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x0395d050 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x12bfec7f am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xefc40ef1 am335x_tsc_se_adc_done EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x2eae5ab5 tps65217_set_bits EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x4c2e0045 tps65217_clear_bits EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x6ca07e7c tps65217_reg_write @@ -14254,30 +14261,30 @@ EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x9de6b8ec alcor_write16 EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xaaf66f80 alcor_write32be EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xc10b9b96 alcor_read8 EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xfcd72bb4 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x15e6af54 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2d236b80 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3012d353 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3c8a8171 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4011f04c rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x48354ae1 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4c967285 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x59704297 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5e31275b rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7452f1f3 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7b3cd805 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7db69256 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8378cada rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x86fa11fa rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x914381a4 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa7310d43 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa9ad5b86 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb51fec4f rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb92ec5b7 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc50b9f11 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc7cd8f77 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd426f0ca rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd5628217 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfcbc701b rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x16731928 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2747e447 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2e874f57 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x30caf76a rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3dd12357 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4b0ba3e7 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x502113fe rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x59c5705b rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5b883dd6 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6101f32d rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6250e081 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7e43906c rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x822368fc rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8919be55 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8aa68ceb rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8ee982a8 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xab5524c7 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbdaa6352 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc7ec02b3 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd33a671d rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe17dae9b rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xef768262 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfc9dfddf rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfe5bedb9 rtsx_pci_card_power_off EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0b8e20b8 rtsx_usb_get_card_status EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0ea33d26 rtsx_usb_send_cmd EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1ed8f751 rtsx_usb_get_rsp @@ -14292,7 +14299,7 @@ EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc23441a9 rtsx_usb_write_re EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc3b8e2e3 rtsx_usb_switch_clock EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd94d711e rtsx_usb_ep0_read_register EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5b1e2a59 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8965420b cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb9d6bc0c cb710_set_irq_handler EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xbe9c0bff cb710_sg_dwiter_read_next_block EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe85d2952 cb710_pci_update_config_reg EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx @@ -14316,17 +14323,17 @@ EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3e791e94 enclosure_remove_device EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x659c4f17 enclosure_unregister EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7f4e147a enclosure_component_register EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe3e0df6e enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x28429e33 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2ad5ad6d lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x476d6840 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb0ba00e7 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb1419014 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc07917b4 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf560ace8 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf9672edd lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6c45c98f lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6e4b86ca lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa2c52853 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb12fe6b4 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xba735285 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbe361aba lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xca163020 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd8b38716 lis3lv02d_poweroff EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x7d7b0984 devm_pvpanic_probe -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xb7499403 st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xf594e8f7 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x5b262c8f st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x7cde54c8 st_unregister EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x089937a5 uacce_remove EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xe2155966 uacce_register EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xe7512c17 uacce_alloc @@ -14358,75 +14365,75 @@ EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscr 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 0xccb1c444 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xd18e3974 dw_mci_pltfm_remove EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xd2a3db2d dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xf2205ff0 dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xfe7623a0 dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x551c3126 mmc_hsq_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x6ca5e1f0 mmc_hsq_init -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x91b891e4 mmc_hsq_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x96b7802d mmc_hsq_finalize_request -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x933538cf renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xaa3c4865 renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x12567e54 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x12cb3430 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x33155dfd sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x39e2ec61 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3b484d12 sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x43d6383e __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x44e4ed1a sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x45287d2c sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4af2e8e2 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x508cc2b1 sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x550e9514 __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x57e6ceb3 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5a7df1fc sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x626096d7 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x632fc843 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x69c79d36 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x75191ac2 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x77f5dcc4 sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x78d84d8f __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7d923f2d sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7ed069df sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7f6d970f sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x80fa11eb sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x88f4714e sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9a6d2558 sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa1a73cb2 sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa4439497 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xac47a3bb sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb6dada67 sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc8ceb29b sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xca43b758 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcabaddf9 sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd5207fff sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdbd67bbc sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe25a5b2b sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe4e6b62f sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe9b98a73 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xee1d0f9a sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf404f1f5 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf6a3d8f7 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfc80e709 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x29272786 mmc_hsq_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x52c5ede0 mmc_hsq_init +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x594f6780 mmc_hsq_finalize_request +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xc77af43f mmc_hsq_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x216221eb renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xee4ca67a renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x086d04c8 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x08cd6d89 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1b5b38d8 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x231025e4 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x24bc4b46 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2aee8b2b sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3d1925fa sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3d47c94d sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3ecf5612 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x46177f20 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4dcd1987 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4ebe1849 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x525dc356 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x53f09eb0 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5d1a9830 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x630c4638 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x64828c9f sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x720e1d75 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x757af07b sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x75dade25 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8b594de9 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9364cf3c __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9bf23815 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9f0b5d80 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9ff492ae sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa1b854b0 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa89863c9 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa912eaa6 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb046a481 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb4f04478 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbdaae4bf sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc4b95caa sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc5cf0178 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcbd9e559 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcfca13ee sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdbfec39d sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdd8b596a sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdf2274fa sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe2b30570 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xed4c6320 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf288ef25 sdhci_free_host EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0f6961a5 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x130cbd07 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2abe1274 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x383ed475 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x39ac4be6 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x769d36f4 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2ac9015d sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x38995ce9 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4e47bde6 sdhci_pltfm_init EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xae6df3f7 sdhci_pltfm_pmops EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbc7c3c61 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xfb4d4bd4 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x08fcabf7 tmio_mmc_host_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1caab0fe tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc9c92e7b sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd7194b45 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xee75d554 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1baebf77 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x2d7c792f tmio_mmc_host_remove EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x583caceb tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x56a45f89 tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7c11dd5e tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x97eefedd tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xa4eed1ef tmio_mmc_enable_mmc_irqs EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xbb6c5b14 tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xcb4d4449 tmio_mmc_host_free EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xd34fc6e8 tmio_mmc_host_runtime_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xd55c0175 tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xebe63053 tmio_mmc_host_alloc -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xf435f38d tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xda662da5 tmio_mmc_host_alloc EXPORT_SYMBOL_GPL drivers/most/most_core 0x10da1e47 most_put_mbo EXPORT_SYMBOL_GPL drivers/most/most_core 0x1c25c98f most_submit_mbo EXPORT_SYMBOL_GPL drivers/most/most_core 0x20870372 most_resume_enqueue @@ -14536,9 +14543,9 @@ EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf946f280 nanddev_isbad EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfda5ebb3 nand_ecc_tweak_req EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x1e91f608 onenand_scan EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x86c273e8 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x474d3052 brcmnand_remove EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x5206d612 brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x6e180cab brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x643b9c00 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x94e17a28 brcmnand_remove EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xa3a2952b denali_chip_init EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0b03d60c nand_read_page_hwecc_oob_first EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits @@ -14604,366 +14611,366 @@ EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xbf983498 mux_control_try_select EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xceaa3f93 mux_chip_register EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe4ea734b mux_control_states EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf4eda36d mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x7f6586c2 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x8a96948b arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/bareudp 0x7d42d7c1 bareudp_dev_create -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x00869571 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2d9278aa alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4173c319 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9d17720b unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xcdf2b951 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf9797561 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0e1154a8 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2a0f3f3a unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x699feabf free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x98b3e214 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x02ee2c57 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x082c442d can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x72a0303f devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x797926c1 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/bareudp 0x675c288e bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x17f2708f c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1b10e2a8 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4c31ed4f alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x50e40670 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xda73e114 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdff7cea1 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x39e18c4f free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4fb7a293 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xbd992a88 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc67b6276 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0a01ca7c 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 0x188e6091 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1d98ab89 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2841c62a close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x298ce838 can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x43baf9ee can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x45b07ea7 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x496d9bb1 can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4d08e093 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5dc6e29f can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1372d835 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x18cdde97 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1df15092 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x21ce01b0 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2c1a0daa can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3475f008 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4bfdd9cd can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x520f877b can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5f0d97ae can_rx_offload_threaded_irq_finish EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6c3dc96f of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x89b26b43 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8d27e76c alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9004633e open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x96091344 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa19e7353 can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb0c90806 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xba2bd4c9 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbd849b40 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc210bef9 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc21fe393 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcc04c8cc alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xce13a88e can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xda9916cc can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdbc84c4b can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdf158441 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe4501d45 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6187f779 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x63c3d09e can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x65af5f22 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x67154153 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x72b87449 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8fcbad3f can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9bde3dc1 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa332acf2 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa4c4272f can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb690587c can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb6bc3fa0 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb6cf04d0 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc292aad8 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc7386ab7 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcaeeeb35 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xce938d75 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd5bc718d can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdf3b15e2 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe03a41c0 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe851dcad unregister_candev EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf145a085 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf63b576a can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x154b50b6 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4d9e7a48 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6689c946 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x80a4c3ff m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x98ce86bf m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa31e8f8b m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa67215b3 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe485d71a m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0ad36986 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3bd65dd7 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x097e187d m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x29da4e88 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x668fc4c4 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x69cd88ac m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa89a18a8 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb2d3fb72 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc29ed344 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf7b5050d m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3551551a register_sja1000dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49fb75ba register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xba9e6043 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xf024db61 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2949c477 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4028b233 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6646b168 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x69772d43 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x760a2474 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8bdf693b ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb85f72eb ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb984f6ab ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbd6ebe62 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc1b61365 ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc31e05d7 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc44766e7 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc7b21f32 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xcc2d4a44 ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x02da0364 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x11808890 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x28925d43 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2ac29fb4 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x56de498a rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5ad1745f rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5ae8e403 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5c68fb13 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x94660b2a rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb80d9d11 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbe250f5e rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc0994f63 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc4290c93 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf09fd9f0 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf13973e0 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x1a8b4e38 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xd24fb62b arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x67b0292c enetc_mdio_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xba4434a0 enetc_mdio_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xc120bf0d enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7f0467bc unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc40aa490 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xebd7e8b5 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xc23bf615 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x029e90c2 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x032c1f6e ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0a54fb62 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0fcf5791 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x143f2d1a ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x22371e0e ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x662ee26f ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x697a8a9f ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x866aa305 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa740525b ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xaa6963bd ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb89c6580 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xce2f935c ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd3e6eb3b ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x06aa343c rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0b07d5a4 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2e36bc1f rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x357a8d96 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5cf1e70e rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x64a61d53 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6d748847 realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6eefafe1 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x92b77490 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9937cf58 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xca85a4e3 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xcdebc476 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe1b2d210 rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xed7bab5f rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfb8780d6 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x0d5076cd arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xa6b17dc6 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x441148d6 enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x48fe2514 enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x7fd0c437 enetc_mdio_write EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd9d61d6f enetc_mdio_lock EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x5560de39 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x6199a6ca i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x06d38fd0 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x398fb018 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x49309215 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7644c2ae ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x9a97e6c6 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0129418b mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0170c9b8 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0287ea7b mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02d65647 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03395382 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04400213 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d3d8a51 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f114e64 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f889063 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x100f875d mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x167f4e57 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x178d75b6 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bba9a8e mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22e8189b mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24c0b02f __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x274fd2ca mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x288ac4c7 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e4f14ae mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30fc4eb6 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3452d143 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x365aa2f0 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x366b2586 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x376a5e88 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d8e2707 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3dceb923 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ff20c62 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42360f0d mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4429f174 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x449c6a74 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44e54490 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45b06da2 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48f19def __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ea904cc mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f72b4a8 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52c9ad18 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53d009b5 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5494f984 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54dc670d mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58591f94 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5aa5396c mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6003eef9 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64086ddd mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x658771f9 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x679214a4 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a296fc1 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b612988 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d54ba82 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d827abb mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7096aaab mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73900d23 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x757b1f4e mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75c96879 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76d2f47b mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cf67132 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e87be11 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x819b44e2 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x822f5ed9 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83a5fd5a mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84b29fd5 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85a11382 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87c7e382 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88c132e2 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b50217c mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8da85370 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e128586 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f383642 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x911c007f mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91216525 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92fcaae2 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9609817e mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96c5e939 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99f415a0 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99f632c7 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b03ee07 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c8e2ce3 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cf634f8 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9eef9385 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa19767ad mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1ae7b60 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2a0fee4 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa510b619 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa657b3bd mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae50e315 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb31b61a5 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5a5fec5 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb69aafbf mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb862fefa mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb2474b5 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe7cf2c8 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe9048c6 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf0b8413 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0393747 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc09dd332 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0cdf10b mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc15fcdc7 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5df7eeb mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8d588b7 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcae61c39 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcebbb5e5 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0170d7a mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd129e8d8 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd283456d mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd73283e9 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7c88727 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9ed51a9 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc9114e8 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdea92c1f mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfb54536 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5370e84 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe75fd666 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec9c6e3e mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefb50171 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1647c32 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3260713 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3ba0bcc __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8abfe2f mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf91ef214 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa88f9f0 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfae79456 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb296c0e mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff46f6e4 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05b1d1b4 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x18ff7c0f i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x675ef41f i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x38c53762 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x414507de ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4f959282 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc9418eaa ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xdb1b14c3 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05f3944c mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06066e32 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06d6c58a mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07bead7b mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a4d0e24 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dad66d9 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0db231b7 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e3fd01a mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11fddc04 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1770fc45 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18da05fb mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1dc9063e mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1eb0a7f1 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ed80285 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x203d53f3 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24eec11b mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x257449f7 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26a4a701 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b1d2ffd mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c4a6d6e mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c748ff2 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ea916ee mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2eced129 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ffc4944 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x331edfbb mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33220655 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38a7b380 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b58a601 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x457bf1ef __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45f7af2b mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4653b402 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a38ac74 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d00c792 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e326a60 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e71a9b1 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57a7a609 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5878243c mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5883061b mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x593b2829 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a3f7e9a mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d4197e9 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x604f0344 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60687d8d mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x606dada3 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60dbeb76 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x610e5a4f mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x642cfc72 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f88a4ef mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x702c425e mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x714b413a mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73a92263 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73b9df65 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7492fd28 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75d4bf23 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7841211d mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78b8587e mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c75a4ef mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e21943a mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e49152d __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x858ddbed mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a73c994 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c6f2e7e mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d5beb0a mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f1975d7 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92de4d64 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95886056 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x974682a2 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97b657c9 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9810ce35 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b85ce4b mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e2eb33d mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa581628d mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaaa1abc3 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad2b95b2 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafe9e2f2 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3ab2574 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5350417 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb819fb5b mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8b45dbc mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbca3eaac mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0307bbe mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc05920eb mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0ab18c4 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2556935 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc33ee5cb mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3cc76bb mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc538efb5 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5c1593d mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5c9a813 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc681ab48 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc703629e mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0b15b23 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3783822 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd58f03db mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5b19455 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6e32bff __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7b8ecb3 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd885b2aa mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb5f3379 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbb97122 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdffe1e62 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe348a97e mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe72e4704 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe85a3e26 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9d6d906 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec2fc218 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed20968a mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed8f6ff6 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee089e2f mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee0ad11b mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf105e69f mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1076400 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2f108ab mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf33bdb9f mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf564d1fc mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf69f9ca7 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf852f7fd mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcc79df3 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd49d6de mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd8e31ae mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd9dcfb3 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0683186e mlx5_query_module_eeprom 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 0x09e3af98 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x115970c5 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x132e04ea mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17bb212b mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a609f18 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a6ed90f mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bb22ede mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c9bfd52 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e3ac9c6 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f34f0af mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x211f64dc mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x247b207c mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28138f82 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29c69ce7 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2db17042 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x321ec46a mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3df0a2ea mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ff471e4 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40668589 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49b6ef35 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b1d39cf mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x537db61b mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fd05d62 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6553635f mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6649b07d mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a54ba77 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6adb7d19 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cf1f75d mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73b52ab1 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e21ca08 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e7df081 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ec7d3fb mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x819f5b8d mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e9962e0 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eee1f61 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fe14bcc mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x271eb9c9 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27e2d001 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2beb2a73 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e0da2fb mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30f6a96a mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31d7b206 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x355a65ed mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x378b2154 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3eabf86a mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40a4f372 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x435440a7 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x481b1c17 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49d06de1 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4add2354 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e173bef mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fc0395e mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50ae9379 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x575f4c5f mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57f56517 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61a5377d mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64f0d81d mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x682923b3 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68d74fe4 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69dd4eed mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b14bf44 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7057c2cf mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75dcd5fc mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7aa7e671 mlx5_query_port_pfc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8461fd06 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88f59cd8 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a5d4a72 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92445a29 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93fbaa86 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9566cdb0 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x961ecd66 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98f7db7c mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bdd38e6 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9be33c5b mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cc3e9b7 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ce0bce1 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f04ec9a mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87e101b4 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x901add56 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x919c7d39 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x924891e6 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93f82f00 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x970b97d4 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98f54332 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cc2d0a9 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dca3eb3 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2bf0d45 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa707a83b mlx5_query_nic_system_image_guid 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 0xa7e92592 mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadf0cd03 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafbd7503 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0f28d76 mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1227c6c mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8406754 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb90762bf mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc19a2fa8 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4837a22 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce3e9540 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf2fa446 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd292569d mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5f3af0a mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9e79f6c mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda234fde mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbc0b42c mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe20f45e6 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe500e4ed mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed6caf18 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef0a8b2a mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf00c280c mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf15d50b4 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf37e9c9d mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf681ff94 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x108a1c6a ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x4e440ed4 ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x986824e5 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xc7fd7592 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x2c78c9c6 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9b277ff mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaef9e486 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf316627 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb37d8cfd mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb66f53c0 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7ceae5a mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb945f00c mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9fb8e8d mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc3c49ae mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe7d723c mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbec97aeb mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbff9c8ed mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc00f8d44 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6801fee mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7a31251 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcad1ee6c mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce237bda mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd41d91f0 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd88bfacd mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe41d9d2c mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe661d8fe mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe68ac138 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed94e1a0 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefd7579f mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf053587c mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf07264bc mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfaee2f1f mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffd94f5a mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x5a871aff ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x867574ab ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x91984f3b ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x94e3fb17 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x8bcbcb78 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 0x29a53e26 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x342e708c ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7bad6e29 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x86cc2e14 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa56938f8 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa80de529 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb5004695 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba201e2b ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbb3433e3 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbd2bfe8f ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5691ec6 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc7c54990 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xebdfb558 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x020ebbdf ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x072721ff ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2949aac3 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3927a92f ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c312861 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x406caf5a __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5d3b34fd __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x880e28eb ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa1b4e9c ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaacaaa9e ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xce44918f __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdcc40ddf ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec65098f ocelot_cls_flower_destroy EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x08b5fbfc stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x274f83fe stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x684fdf93 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x51439e48 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x779a8a2b stmmac_dvr_probe EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc37e94ce stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xcf51e64e stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa1724270 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb10ff7ab stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xca6f3606 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 0xdcd52a41 stmmac_bus_clks_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x30a0b9e3 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x55c966e3 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x90272e71 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa91f9938 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xaec93b4f stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe9e02d42 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x0eb7edb7 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2bd5a623 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3d9986aa stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x686edd81 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa14c022c stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x22c177dc am65_cpts_tx_timestamp EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x405b51c2 am65_cpts_ns_gettime -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x56bd8d61 am65_cpts_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x5e149443 am65_cpts_prep_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x7dd1080a 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 0xb164aac1 am65_cpts_tx_timestamp EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xb60b988a am65_cpts_estf_disable EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xbfc83e4d am65_cpts_estf_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xf8413309 am65_cpts_prep_tx_timestamp EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfca9b9d9 am65_cpts_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x29ceec81 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x68507fa8 w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x9a0925e6 w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xa5e751af w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/geneve 0x54beec30 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x72f28850 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x923d15ce ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xbd292ed7 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xbd6bae3d ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf2c4826a ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/macsec 0x30f96631 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8782f1e8 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8974e1f7 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xab0a9146 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xeb9a467a macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x372875cc w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x99326fa2 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xc07b9ab5 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xe475919a w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/geneve 0x51b79c2a geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x45c9be16 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xdb31fd8f ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xdce9ad6d ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xea47ed5a ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf23ef3fb ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/macsec 0x406488ab macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x45d7c2e2 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x81e66125 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa6dea551 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb2856005 macvlan_common_setup EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xad1f0cc0 mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x19cf9cba net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x732e9b04 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x3e871242 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xdc55db31 net_failover_destroy EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x4af08a3b xpcs_do_config EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x4e4a719f xpcs_validate EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x791bd47a xpcs_config_eee @@ -14971,874 +14978,874 @@ EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x97208e64 xpcs_destroy EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xb92b8434 xpcs_create EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xfc094d6e xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0a62d539 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0e4c7305 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1048ee92 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x10a23136 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x14e8ad4f __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x25885ca9 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2ab8c5a7 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x335e472f bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4c12e2ca __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x52cf371b bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x565505c2 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5c304952 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6721e916 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6b77da5f __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x75fda229 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7c360719 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7eb8a154 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fc5326b bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8c12418f bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8c6d64ce bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x967362c1 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa073929e bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb32b4d1f bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb431b4a2 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb88d72f5 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbeb80211 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc1d96466 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xca25aab2 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe4e72c2a bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xee03b04b bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf61840d9 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf95a5409 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfdac2b7c bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfea5db8a bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0202bb2b phylink_mii_c22_pcs_an_restart -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0552eac1 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0071088b bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x28abfe35 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x34b3045a bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x380df618 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3dd484e8 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x457fd418 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x46f10c3c bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x476633ae __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4b00d037 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x601687eb bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7158d036 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x76f9af65 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7d3e33af bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x83cc4fd6 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x844c42b2 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8a817844 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8b6e6458 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8e2e5016 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9ba884ae bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaa83ff18 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb315f4b7 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb7bd904f bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc0abac49 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc729bff1 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd0d49f81 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdfb9af2c bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe2012d84 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xeef973c2 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf0eb57ed bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf1421e91 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf15f5f88 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfb1252ff bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfd30b5f2 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfea2a9a8 bcm_phy_get_sset_count 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 0x1b036163 phylink_create EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3c65d4ba phylink_mii_c22_pcs_get_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4898be80 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2cdfa04e phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x48831fb9 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x52e64ff4 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 0x5d0c4dcc phylink_speed_up +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d90b570 phylink_connect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x666c6bb7 phylink_mii_c45_pcs_get_state 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 0x7d72b0ac 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 0x9547413b phylink_of_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 0xa1611a38 phylink_mii_c22_pcs_set_advertisement -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb85c8890 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb6b56779 phylink_fwnode_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 0xcdd653a5 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc92925ad 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 0xe8c137ed phylink_set_pcs EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf12175f6 phylink_of_phy_connect 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 0x07d7867f tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x08038c0e tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x1d046a26 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x43575a13 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x64f22755 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0xb4be3ee1 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0xd5cfc7fb tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0xe036a98a tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0xed5eb023 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4299e50c usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x55333597 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6845de97 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8dd194a2 usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x992d9460 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xebe6c817 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x13def9a5 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2424572e cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x350abfc9 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5f71d6b2 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8750e1cd cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x907f1534 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x97633cb1 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xba58376e cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc4a10798 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf6972813 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfa0fbacc cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x0e5272e5 rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2cac9bba rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x32466d91 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x34e6c814 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5ffd84da rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6a74280e rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x983a9803 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0442df25 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x190c3699 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1ccb29b2 usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1fb715a7 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x27cacd00 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2c296ffc usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4be706fa usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x50c93a09 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x53aa443a usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5422c73a usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x56a8727e usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a5d0bbc usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5f9b6ea5 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x69b097a6 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x734f8332 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x73ffea8b usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7e15b4fb usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7e46c5cb usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x82f84387 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x866810f9 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9787d769 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9b6e5ead usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa4ba5f22 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb49c9865 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb56b3a29 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb5d4e744 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd2947fdb usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdb60254c usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdce29949 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xde85bc28 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdead8567 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe998fdfa usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeecc87c2 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xefffa150 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x021adc55 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x6126ddf8 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xb209d268 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xc41a6e2d vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x33043467 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x03e0c59d il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f4e4e7e _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4e71f10d il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x94a5f19c il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9a58de0 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x08301b62 iwl_write_prph_delay +EXPORT_SYMBOL_GPL drivers/net/tap 0x0cf0c148 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x35c820be tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x6f225b5c tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x877a2cf2 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x8d22703a tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xa9844ece tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xb2f2f579 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xe382c2b7 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xf77a8681 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x228b2612 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2b3ae563 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x354b4529 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3b090ef9 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb52a5a68 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf951a234 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0a1411af cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1c384e2c cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x25631a94 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4a7cb092 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x53e2c0e4 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x58dcc9ea cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa65e9e45 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xaab79d18 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbdc178e1 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc8ddff59 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd7f768c2 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x6d74df85 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x145a02a9 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1d251fe3 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x60fdbcb1 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x77f30dcf rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8d87d1a4 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x96024f73 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x03111171 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x07012918 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0a5050f3 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0c32a945 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x17d756e0 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x224d70f3 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x287d107e usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x28eb8eda usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x29eb2681 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x326423e4 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x34630cb5 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f62c44e usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4850f7b6 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4d48ad40 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x53eeae84 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x549c4ff5 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x59ce8840 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5cb8e3bc usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x70a03853 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x70a0db9d usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7db5fd18 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8900c76c usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8d25c19f usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8e4a1f55 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa43885cb usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xafd97e08 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc0d89d51 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc3599d2b usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc7b611d8 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd52b6d2c usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe23cddaa usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf21f59f2 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf289929e usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf9f5c4d8 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x36f0db59 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x9e6e78d2 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xe03771e9 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xf6de0079 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x5bdf0ff0 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3bb2134d il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x768a2e03 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0392fd4 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4946fbf il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc5000ca il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0093d3ed __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0156ecb5 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x01f233bd iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x08cdca37 iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0953e49f iwl_acpi_get_eckv +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x09949d3d iwl_sar_geo_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0b00c6c8 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0dfbf147 iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1052ff94 iwl_fw_start_dbg_conf EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x181efd51 iwl_configure_rxq -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1d4356cf iwl_sar_get_wrds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1eeee8bb iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x25ad4680 iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x13a0d5f5 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x14107ad3 iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x14c3d9dc iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x17512527 iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x221fbe27 iwl_get_shared_mem_conf EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2798ed9c iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x288a11f0 iwl_sar_geo_support -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x291cfb2e iwl_set_soc_latency -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2f2a1aba iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x32c9800d iwl_fwrt_dump_error_logs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x342b5500 iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x27dc1267 iwl_configure_rxq +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2bad0e36 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2feac2b7 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3021048b iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x31b1e605 iwl_write64 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3bb49591 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4033f722 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x41da2236 iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x437277c8 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x48abce2c iwl_sar_geo_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4a53c8a5 iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x53262b4f iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x53d9bceb iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x54f353bb iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x561c720a __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x56c52898 iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3704a544 iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3cccc679 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3e6a5a68 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x40eebb2e iwl_acpi_get_pwr_limit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x40f753ab __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x486ceacc iwl_sar_get_wgds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x49ab54ed iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4bb3a5ea _iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4e19dbee iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x51de6e7c iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x54813ac3 iwl_acpi_get_dsm_u32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x562c9e8f iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5793b4af iwl_acpi_get_wifi_pkg 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 0x5b0e46e8 iwl_acpi_get_mcc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5a707371 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 0x5d6cd363 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x69fbe6aa iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6c33f033 iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x72009b7a iwl_sar_get_ewrd_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ca2787b iwl_acpi_get_tas +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5dd43e3a iwl_acpi_get_lari_config_bitmap +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x63a3dbf5 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x646cff65 iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7058b9b3 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x76b6815a iwl_write_prph_delay EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7784428d iwl_acpi_get_lari_config_bitmap -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7879c8cc iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7889d8c0 iwl_acpi_get_eckv -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7c4bf843 iwl_acpi_get_pwr_limit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x829f7b2c iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8536faa8 iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x860d4f86 iwl_acpi_get_wifi_pkg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x86d01cb7 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7f7cba4d iwl_sar_get_wrds_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x815538d9 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x837299b3 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8a92e336 iwl_force_nmi EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cd2f16c iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ece0497 iwl_parse_nvm_mcc_info EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9038811a iwl_rfi_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x930fdfc0 iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x96aedf59 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x98b748f0 iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x99a9c054 iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9daee5a8 iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa14fdda4 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa290b1da iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa634442f iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa897c136 iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x90cdaa20 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x90ea101a iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x910a4641 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x964c8ed1 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x96a4aa1e iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x987cc8df iwl_acpi_get_object +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x98f6a22e iwl_sar_get_ewrd_table +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa68353d2 iwl_opmode_register EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaa96a2cf iwl_acpi_get_dsm_u32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaad665de iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xabe350c3 iwl_sar_geo_support +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xac44897c iwl_clear_bits_prph EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1338340 iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1d04e4b iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb9871605 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb9f769a7 iwl_sar_select_profile EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbafc8994 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbeb5e7be iwl_sar_select_profile -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbf76c632 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc4f1a9eb iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcadfa381 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcb051d24 iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc156667d iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc294ef0c iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc8af80e4 iwl_acpi_get_dsm_u8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcc66f485 iwl_dbg_tlv_del_timers EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcf9dbe91 iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd178969a iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd39a0703 iwl_fw_dbg_stop_sync -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd7c4818d iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd90f8339 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xda2d428f iwl_acpi_get_dsm_u8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdb21a0a4 iwl_acpi_get_tas -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdd075f0f iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd79a8041 iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdc654dc4 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xde7bcd95 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0e46207 iwl_read_external_nvm EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0eb5838 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe4b917bc iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe6e78c77 iwl_fw_runtime_resume EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe75b7e77 iwl_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe7e003a1 iwl_write32 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea624020 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xece3e601 iwl_acpi_get_object -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xef49d21e iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf18f8e51 iwl_sar_get_wgds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf3202ca1 iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf4b9f255 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf5892820 _iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf670a74d iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeed102ec iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf2737496 iwl_acpi_get_mcc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf79a2ef3 iwl_read_prph EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc1e6f41 iwl_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0c5ec1fc p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0f4fdca8 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2ffb8a73 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7d33c703 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7e66df2d p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x948717ba p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb9bf4e80 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc0bd5e38 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xde387d13 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3b6ede39 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x50f023f1 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5d9fa094 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc4a7e24 iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfe9a0529 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x20605c19 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x29dbc87e p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3f61f322 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4431b7b9 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9be3ca16 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xbf2ce434 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc5b3b47d p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xda73ffaa p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe55c91c7 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x03c4aab9 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1501a976 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x181bc805 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2a0b8c11 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x429482c6 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4e3ddec3 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4f05d621 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x53bea194 lbs_cmd_copyback EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6012c48f lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x72663eeb lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x871d4c57 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x908f8f03 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9120192a lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x944ef873 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x94ba4a97 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9ef36286 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc2bd3eda lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xef77fb79 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf1210b85 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf2e04eb1 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x929ea781 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9797d309 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xabc45c4e lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbf115f41 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbf970968 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc24eefcb lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcb56c59e __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd50e7874 lbs_suspend EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfc0b1989 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x26e826c1 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x37d65f22 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x48ccb2bc lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5993c253 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5fe2c19d lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x673e5748 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7390e236 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x88b42655 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0b91f25c lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x10b41804 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x14c0d246 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x17f4cca4 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1a735f4a __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x2f259e8e lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5a3bd0bb lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc305a2d4 lbtf_send_tx_feedback EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x016d8798 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x18976f2d mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1a871d5e mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x233575fe mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3c8ca82d mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3f8dc191 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x43e4007d mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6cf8fdcf mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8034b6b1 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x817baf5c mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x85b99fe9 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x86a63455 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x90927f8a mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9811322a _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9b3df391 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa7627948 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc68c675b mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x01aa7540 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x07e5103b mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0929af29 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x12944a5a mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x17f0c39f mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2fc6d4f5 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x36d33b67 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3c653129 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x458942d8 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x50a59cce mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x55d11e2f mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6d7b7752 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6d8625f3 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6f64ec3b mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7915eda9 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8bfa132f mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x97c92211 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x985ab02d mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc6d97042 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc99acbfe mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcd90dff0 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xced2a91d 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 0xd59f0089 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd9e2bb35 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdfe8ca6f mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe5707001 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe85f1a73 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf2465491 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf74423f1 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x010f1046 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a2fc1b1 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x11939b46 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe8895fcb mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfd7f4d1d mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0462e7f4 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0746cf46 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x075e1735 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08cd2ba7 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08d738cf mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08e0ec71 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0b43af31 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c17a039 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0e1fa6b9 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x14f49897 mt76_unregister_phy EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x185ba036 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x19b53662 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c565b0e mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c5eed5c mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1af2f9be mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1cf4b3aa mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d068dbb mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ea51db7 mt76_get_txpower 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 0x213fbf32 mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x27a9df96 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2c4a6662 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2df5a73e mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x391ffea7 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3a69ba79 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b22cc47 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b532660 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e78bb07 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x416f6bf2 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43d3b534 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x50606011 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x51d0b1bc mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54b17604 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ab8a4b1 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x217bd3be mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x285c8564 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x29c103c5 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x33949ed4 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x395fca53 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39ea847d mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39fdf1ea mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3a8ab5e3 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b5becf6 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3bb0d6ac mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3ee96c7f mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f9513c3 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3fa24b5b mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x44137460 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x45f6e9b0 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x49950509 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4c58411a mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4ed7d55d mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4facf310 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x547059b6 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x55eaaa5b mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5755e967 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x579a6408 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5803f0dc mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x584a2695 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5cd1ba15 mt76_pci_disable_aspm EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x60ba8f58 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x610da76e mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x67ebcd91 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b0e3625 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x799a459c mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x79f0fd1f mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7a07c581 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7dd38aaf mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7f2b34e1 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ed70a5d mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5fc3464a mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x61354a57 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6710475a mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x68a615cb mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x68fd89e1 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7004d99c mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x742908c2 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x76b7d7ed mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7bfaf8a3 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7d5f2ed2 ____mt76_poll_msec EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8304ac37 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8427daf2 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d7fdf27 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8dea76b1 mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8ee22eae mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x903abc33 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9123f56a mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x80844e64 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x85955405 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x86c24e0f mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x929a77fd mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x982edbb8 mt76_alloc_phy EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a5471af mt76_sar_capa -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9bf9b51f mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d084894 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9fb8c175 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa19be90e mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa36a9f0c mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa61d870b mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa67a1a7a mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xac465611 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0629889 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb387133c mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb486c29a mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9365fd3 mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb987aaba mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbf841d3a mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbfbed075 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc11bb03c mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa98b569b mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xad0aafbe mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaddedf26 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xafa01fd9 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb6d21b2 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6276854 mt76_rx_aggr_start 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 0xc7db2078 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcc39e3c2 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcccc24ef mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcd18cefa ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd077b6a1 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd63d97d9 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7c361a8 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb508b1c mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdc61e359 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdc7810fb mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xde235288 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe237ef40 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc930fe29 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce0642a0 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd012f918 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd5184a19 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd84db354 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdaecddc3 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb82e38a mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xde8979a7 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe25cf23c mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe3c8630a mt76_skb_adjust_pad EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe41a44ae mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe6f4c6e9 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe7e753d5 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xed3333cb mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0ef5f90 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf23dc040 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf2dfc2b8 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf3b65206 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8b2aec2 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfef17a7e __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff91d517 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x07c3e1d8 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0c3de839 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x129e8cd5 mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x19c4b3a4 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1e034bc5 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x29331773 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x35355b65 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x361e1896 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x39646030 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3bace295 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3c0c20dd mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x48a2478c mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x530c4d91 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x534c9a5c mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x56dd253b mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5a44587f mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x67f4bb86 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6bc04007 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6bdfc32d mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6c125cfd mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x70fb6031 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x75bb0c60 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x82d1b5d2 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x87cb36c6 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x87e0f21e mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8b51cbc7 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe52d455c mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeb38d8af mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf1e95aa6 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8a92dec mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfeba6044 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x06d9301f mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x083eaa98 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x18c3d501 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1fd12e17 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x24aaf0f6 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x29ea191e mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2e494df9 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3745d661 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3cd86753 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x434eaa67 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x43d03d51 mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4c264125 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4f6b1476 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x52c8c28c mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x56188af1 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5752fb13 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x58aa0c8d mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5e1e4ce1 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5e548001 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x697e80e5 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6ee762b5 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6fc820b4 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x73c9d697 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x78151431 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7ba2fede mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8619253b mt76_connac_mcu_wtbl_ba_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 0x91f121f3 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9924a554 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9eb45223 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaa98ac71 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb6273f99 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc72b825e mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc8e3a13d mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcad2c4be mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd1937cbe mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd7fbfc8d mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdc7a0d91 mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe0c194e2 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe625a011 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xea79a415 mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xecbe5104 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf3b4d2c0 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfde9d3a1 mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x45e60a54 mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc81d1110 mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe6f6d58a mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x07d89b22 mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1f041dce mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x33cf0ae6 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x55484ded mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6226a99d mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc2dad86a mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc368384d mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe6e8042b mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xfc4002c2 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0d30b25b mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0e25e2cd mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1d96bdb1 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2a2c792f mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3b595812 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3de889db mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4dcec189 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x525f6826 mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x58ba3ab4 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x69e4affa mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6e191f38 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7070b499 mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x71e4e24d mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x725a156d mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x72d849a6 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7556cabe mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x83397239 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x861a6f5d mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x888c92df mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x993ae1db mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9ff8ff8d mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xac6cecdf mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc09132da mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc2d67766 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc5270242 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd571f638 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdcfc9c4f mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xded3848a mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf11bbe33 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x0f4b4a12 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9697645d mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x98aec9aa mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xac2575e3 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb74ee90c mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbd38266f mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc741a11e mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcce068b4 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xce3f2a92 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd2d712a5 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd353e378 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdb51e78b mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe306bdf5 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe752fc66 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf0c3dca7 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf0d962e8 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf3acfa64 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfda2062b mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa652073b mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd198c78e mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xef9f083b mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0be13e78 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x13a65f7e mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x38e99483 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5c0a36b6 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7f17c89f mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9414c629 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb9cac63b mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xcb9f1565 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf2cf085b mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x022c0d5f mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x035edc18 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0f26dbd4 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0f6c35e8 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1d6a0193 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x351f2ee3 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3d95b3a1 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3df54bf8 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x461be527 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5504e855 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x567f8803 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x62d69714 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x63d2629d mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6df8cff3 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x70936126 mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7ab20467 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8b7773b6 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9085f1e9 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x90d8bf0a mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9501349c mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xab118597 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xabe093a6 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd55154aa mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdc264129 mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdf489d7b mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe5b1ce45 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeb7b0e83 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xed5a8231 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf105fdf8 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x40194baa 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 0x751920c5 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xaddca4bc mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xc2fc84f8 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xf35a3757 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x64e9d7c3 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9bc3ab08 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9c859713 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xad0e1034 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xcb266bb0 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xdc01c278 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x02b8115b mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x16375697 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x551542fc mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xba74e1e2 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xe7c27aa6 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x3189dd6b mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5c0181fb mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6e74d379 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc8feed71 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xeffe3c82 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf559b803 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x03540f85 mt76x02_mac_cc_reset 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 0x0593b549 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x06523564 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0af00e57 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0b6e1297 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x046de334 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x052ef9ec mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x053688e6 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x062b2cfb 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 0x1586f37a mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x160ab30c mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1d29837e mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1dd68ede mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1fe516f8 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2122b111 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x251f2dae mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x28e61c95 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2c8a3073 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x34cd11c2 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x12970f1a mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x18718212 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x198ff1de mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1a12990d mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1b9f6d25 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x204473c4 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2395fb8a mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x25def1a2 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2bcba8a2 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2c952376 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x30551989 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x31bd866a mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x33026084 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3501a9b1 mt76x02_mac_set_beacon 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 0x3b2b33e3 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3f615bb7 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3f9516ab mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43997fc2 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43eae2be mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x46bb3958 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x50029315 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x51f7a8da mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x55edc220 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5b160708 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5b390a2c mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3e8b4121 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x48b30024 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4c2d0925 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4d32de11 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x50fda7c6 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5264ffb3 mt76x02_update_beacon_iter EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x629e9503 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62f75c3b mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x682024d7 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80e615ce mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x82a77952 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8420bb73 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x866167a3 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8972ba7c mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5e430a78 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5f02236a mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6111c4d2 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x657d03ee mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x669c7714 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x68971e24 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6e018d12 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6fd04e05 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x706bb7ef mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7406aba3 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x744d7a6f mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7aeb2f5e mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7c2565e9 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7e61e9cd mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7ec774a1 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7f1aa64e mt76x02_mac_write_txwi EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x96fbb9a0 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x979a2e99 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9c21eee9 mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa17e1c80 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa8587a48 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa02494e mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb1cde3a0 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb7a97faf mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbc631ac0 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbdd985de mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbe9b796f mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc56682ea mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc64fa2a4 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc8fb2221 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc0f8414 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcfe21516 mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd0c40840 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd25e82cd mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd5a90395 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0161762 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0f4de01 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe387bc8e mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe3a4731a mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe50cf1b0 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe606d662 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe7059128 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe7b1613e mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe7fbb83c mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xec38af9f mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf5ed25d9 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf8642f87 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf97da270 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x34e0e26e mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x713b7448 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x82588d67 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x93339c57 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x98c7eda9 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xb7b6f422 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd0e28166 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe444129b mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0947fca6 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0a04f6fa mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x12a86ab0 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x138b00a1 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x24cdd3af mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2bac8b30 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2c28dd9e mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x490cb4a7 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6d297f1b mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x886dff16 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa16d411b mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xabc0d2e6 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xabd305e4 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb1aea42a mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb3c59fc1 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc36e5da0 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf04d5b65 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf305ba69 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf651f52e mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1663183e chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x70586665 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7bd012af host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xad14b1e3 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xbe34bf72 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xd363e4bb wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf860e016 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2a3dbbc6 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93eb7569 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x94b4190f mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x95fee1cc mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x982040d2 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa282dbae mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa5c8bbe5 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xabb6831e mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb145c244 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb8cfa2d3 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb9b42e24 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xba0b99d8 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1ef449f mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc2f53306 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc6a23c9c mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc8b77d80 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcbeb659e mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc05b5b1 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcdfc597c mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd7618d22 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdbd94723 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe4c944a2 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xebbef500 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xedd830e0 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf29da579 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf7bbcdd5 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x031d9a20 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3edabcea mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x54a2adcc mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x566e14e1 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa8fc9252 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xaec93439 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xb4d7ac76 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe566e989 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1a6c09a3 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1ab64573 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1e759b97 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x24603ba7 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x330e286b mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x34e86a47 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x37829f0d mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x43183c16 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x613c3f64 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x64b632cd mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x731c096d mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7cbb99b3 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8b85126f mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa64f6a52 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa8638c59 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbd26a2fc mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc77c93ab mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf6fdb26a mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfc098a73 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x17992334 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1c37f7f5 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2c52e7c7 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x307ef412 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x67044a94 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x9fd6724a host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xaaee5093 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x1f755144 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31d1167b 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 0x55f9c9c1 qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x572cd7a9 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x818ea767 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x8c0c8052 qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xb8c82e6b qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x00726ad8 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x07ade125 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x171388ac rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x18cef551 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1bbc88a2 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3739d41e rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x38cf9451 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3ffba695 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x428fd0c7 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4f14459b rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x528bb100 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5604f430 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x57ff9b96 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5ce703bf rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5f996c92 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x61570506 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6a6d9dc7 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x75ce95c3 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x771380fc rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x786befe8 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x79199f8c rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7f9b41cb rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x82a7a476 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x95504c1f rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa2ae7f3d rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa95e1154 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xac7e5ae0 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaffe26dd rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb110b2f4 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb3541595 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb432b0ef rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb48f35fa rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb6d89346 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb867a460 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xba9f73e7 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc9187431 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd6796bc5 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd873fa99 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe2c9b368 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe964ebc7 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeca22633 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xed33d390 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xee4d4aee rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf6a2d7e5 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x05932514 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0cb80e82 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0decd7ac rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x15027458 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1b2b58a4 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1c6196e1 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2f0e95f1 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x39019446 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9884b955 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc83470b0 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xfad7fb3c qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x02ab1143 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x052e36c4 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x05443b0c rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x116356c9 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1444fe6c rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1871394f rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1b1e8af9 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f0c414a rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x20b0d71e rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x21f389e6 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2e9d27c6 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x308ecfdc rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x36e4738d rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37dc2c62 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x39fb2db9 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3d117372 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3dcc96f1 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4734eeb6 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6b532bb5 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6c2dbf90 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x770dc10f rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x77d6a913 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8c909312 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e33010b rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x91b8a599 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x95b30ed6 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa03256dc rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa4aa3a78 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa523ac76 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbb484856 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc1e3d899 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc5952dea rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc7ab1798 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc8bcbd4b rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcaaec9d6 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd39e80bc rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe1ecfdbe rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe23d3851 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe85d90be rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe88ed0bb rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xee654292 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xef04a496 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf861cc85 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfd181411 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0388e9ae rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0e990308 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1a794ae9 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2594a3fb rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x318f7862 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 0x35ff0dde 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 0x411f2d68 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x467450cb rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3dcf1476 rt2800mmio_probe_hw EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5aae847e rt2800mmio_enable_radio EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7c57b2e6 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8435102f rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x847678b9 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x96080783 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8f9dd842 rt2800mmio_get_dma_done 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 0xac587f5b rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcbd6f9ff rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe742515c rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0355926e rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x04f2f1c5 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x05faba16 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0b2e3b17 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0f361678 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x109216ea rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1ecd851b rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x21781bad rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x21853892 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x307597f8 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3257ae92 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x33264db9 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x33c23e2a rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3c5b6cd7 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3ee72c6e rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x42f5c927 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4cd5c550 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4effd823 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x51621527 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x562aa13c rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x59a57e31 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x744047c4 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7f06ae99 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fd92feb rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x80ac6661 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x840135e5 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x87f4a008 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x88e580b5 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x903b5cc5 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x93996757 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9fdbd700 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa0646134 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa5a24069 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa5d9d0ec rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaa8eb76b rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb4db6732 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcb4e9ae6 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcc67ee44 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd2b9674e rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd602cb85 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd6068187 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd65e6c44 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xda3f8603 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe2af7e08 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe2cd5a57 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe9a7293b rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf20db9ff rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x02b2aa52 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2894434c rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x5894bc96 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf054040d rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf39d295e rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x5d89a662 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x9ecbb575 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xcfb9b340 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x066ea7ae rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x312d1e3f rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x338e9ede rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3aa4fe0d rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4a47b5ac rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5d2f41b4 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x61f6c34d rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6244a863 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x681ae8de rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x70f5c984 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8514fe9d rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb767e2b3 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc57c294a rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc9752314 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xce9ef558 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfcd1e728 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x48908f6a dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7a4af98b dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa427e4cf rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe823b83f dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x009d6c07 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x03668388 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x05f44554 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0ba87c3f rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x222b89ef rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2517ada7 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x316d51b7 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xad3e88af rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc628599b rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc83748a3 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd04dbd26 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdba2c516 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf03631c7 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf22e35bb rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x071ac147 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x07a96812 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0db55cbe rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1a36dd1e rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x24213779 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x25684e6a rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x361bc3cc rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x36cdf692 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3775faf1 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4496a3ac rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x47b109ad rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x47db2c93 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4f92983c rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5bc845ca rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x602616df rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x64138199 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6649ff98 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6a36cb8f rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x702eaf17 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x82d77c2e rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8bcffef4 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8c610d6e rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x92fe2fb2 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9479f8ec rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x95f13cf9 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9632e8f0 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa4c8deef rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa7a466f6 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa80802f6 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xae01333b rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb38403c0 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbb93ddab rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbe9881f9 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc5838142 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc5eb6c88 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc6797831 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc68146d6 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc6bdf6a0 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdb10c189 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdb2292b8 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdda924df rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xea20cf8a rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeaa47cfa rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xec321b01 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xef9a5c81 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf32e3a77 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfbf2580a rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x462f803d rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x6b20155c rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xcb0348e6 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe7fd09c5 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf6c5db6d rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xadce2b77 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xbe85606b rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xbfa7d5ab rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x01d9c7d3 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x133d1ce4 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1c29e9f8 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x20658134 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2dc8a9e7 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4c538d92 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x625610f4 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6f148392 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa88df7f6 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xac75d115 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xaca2fc1b rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xad8a9bfa rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xcf98b325 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd875353c rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdb1799d3 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdd9be8ec rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x21d4f6ff rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a99838c dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92bd2c0d dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf489b233 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x02f7972b rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0979ba8b rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x37177bc5 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 0x4c32f5ee rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7235b3f1 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x769972dc rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7b4d071a rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8064b33f rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x859fd03d rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8810f5c6 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4554a931 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x46429602 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x490c4deb rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4d2b6d6b rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x53924d4a rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x60bef1af rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6ae94bdf rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6cdfe4ca rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x76d0c6be rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7e60d7ec rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8787f494 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8aa5a8c0 rtl8723_phy_pi_mode_switch 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 0xa13be2a9 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbbff5577 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc75cf707 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd10f7311 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd182fa24 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd6445e29 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd97d68d8 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe3bf37a4 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeac8439d rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf35a0931 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfbb11395 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x03f8d390 rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x12f93efb rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1fba626b rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa4a9bf16 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xab121acb rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xadda2176 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcffeec61 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd426ee97 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7e1807e rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd802d3f3 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe82ad5ec rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf066e25a rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf371266f rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x12494bcc rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d98de3c rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f21d8de rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28699ac1 rtl_efuse_ops_init 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 0x32c273b2 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ccc3f12 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a07b039 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a92a738 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2f145dc0 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3bb63f09 rtl_tx_report_handler EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f51d3e0 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x567f375a rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5fd0e97f read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x594b1de0 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5fca9302 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6564a2af rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x691ae8ac rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6d59a925 rtl_is_special_data EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74632e7e rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ad8aed6 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87c6884f rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c0771cc rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8fe0733d rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x755ddcc5 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x852d54d3 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87781d7f rtl_tx_mgmt_proc EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa48607a7 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbae03e19 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc2faf521 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc31c41d1 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc6f2d878 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc92c46a5 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8eef265 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0ede8d3 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf51fd86e rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7abd167 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa52ab235 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7064c7f rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xadf5c4ef rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf4b9e83 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc19a1316 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd2b47d49 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xde26cb81 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7efae5d rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3a35730 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf492f2ec rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf836645e rtl_ops EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x308bf166 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa2b55b05 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb8bd5c5a rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb92c04fd rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x286d70c0 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x514c7f0f rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb47b540d rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcab81e7d rsi_read_pkt EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf8d9daeb rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x08b18e44 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xad18376b cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc5c81a8a cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xfcf5e250 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x01d0c5da wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x24fb4321 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x57378e1b wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe238fca0 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x144daf99 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x2327db08 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xd57c0c08 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xe9ffebac cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x07bbab6a wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa926e5b1 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xe1a1b629 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x003d3d62 wl12xx_acx_mem_cfg EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x08465927 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x16dad286 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b81e984 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x08a549e7 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x09393369 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c302161 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0e199989 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x103d00e3 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x13420a0e wl1271_tx_flush EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2cc8b12c wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x37d06689 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3b5ea4a5 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4210f652 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4297dcc2 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x45264754 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x456a5d7c wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4684b9f2 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x535d10bb wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x55cd0067 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6953b981 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x82cac953 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x219a65dd wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x33a55fb5 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x362198b7 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x43eb281f wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4b1709ce wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x52ff10c2 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5afc6ce4 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5f2629d2 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x62b1784d wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x652fa2b6 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x806cb946 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x83fd36db wlcore_scan_sched_scan_ssid_list EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8b25bcd1 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x90e28237 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9345bd8a wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4590d11 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa8c63b1b wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa91a4c59 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xafae5953 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb17f2173 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2556732 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2fecca4 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4660ac2 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb808474c wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbeb30610 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc50e6e31 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcc814822 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcdf3a15a wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xce7586a2 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd75f423f wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd8993630 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdeafe3f8 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe32726a9 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe37e9af2 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe506977f wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe87701e9 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xebc57bf8 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf0044e2c wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf65fce16 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfb208f33 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x0897f099 wwan_create_port -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x0f617336 wwan_unregister_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86991b18 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8f28184f wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8fb67883 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x94d0c94f wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9aa154c4 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa53a4e8f wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xacbd8690 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba641c67 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba9b75fb wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbda35a08 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc3cdb9e9 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcbc5e359 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcd13b3d8 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd1cd156b wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd29a8751 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd4e9a407 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd5027988 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe830b391 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe86e523f wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeb41fd7d wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xece4bf47 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf494477b wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf8403338 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf9644efa wl1271_acx_init_mem_config EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d9bbf75 wwan_port_txon EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x51681e1b wwan_register_ops EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x5abc0046 wwan_create_port +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x7ad6d893 wwan_port_rx +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x8add596c wwan_unregister_ops EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xc56017c2 wwan_port_rx -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xcecb4b68 wwan_register_ops EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x21428c5f nfcmrvl_nci_register_dev EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x3702aed4 nfcmrvl_nci_unregister_dev EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa70dd980 nfcmrvl_parse_dt EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf5acaad1 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x15a5f20d pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x28878bd4 pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x445a2a19 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x69c97182 pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8becc898 pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xad10f186 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd3678b6f pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x50419152 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6026cbfb pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7245fa01 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x800ce5ab pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xca9daa45 pn533_finalize_setup EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xecb5c38e pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf388ad04 pn53x_common_init EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x01e27543 st_nci_enable_se EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x59320ca8 st_nci_remove EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7de120d4 st_nci_hci_cmd_received @@ -15867,85 +15874,85 @@ EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_c EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x064e4e84 virtio_pmem_host_ack EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x5485b526 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02a8c703 nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x063b742f nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0cabc407 nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0ed3fa27 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02f2e3e5 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x08945b56 nvme_enable_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x12389617 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1c21f05e nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1fe58e17 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x205cf1c3 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3d3e5067 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x410a55c7 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1682f63e nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x236c25d4 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x28e8e65f nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2cad059e nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2f5f6dc8 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x371fe48a nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x490b089b nvme_change_ctrl_state EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d1e3456 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5475223c nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x612e18c0 nvme_cancel_admin_tagset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x71009e21 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x76a1f1ad nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7d385374 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7e3903b5 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7f87ec40 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x67092728 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x68e3be97 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x70914918 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x719a23dc nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x71d6a5f8 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x723f3f6c nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x776f352d __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7ba81aa0 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x807c320f __nvme_check_ready EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x88489728 nvme_start_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8bc9779c nvme_cancel_admin_tagset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x93a331f2 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa5ee5190 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaec16b7b nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb4b55c0b nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb9a0f921 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbd6578f1 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbe7b70de nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbf0f0c14 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc4503261 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc4df2097 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc593fef5 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcd830013 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ea3a4ed nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8f5f8582 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x91721cab nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x94665a7f nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9546ccf5 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9bf363ff nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaa605943 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xae6bbf88 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc43c2d99 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcc4a9078 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd1c666a3 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd2aad1fb nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd3a86957 nvme_disable_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd4606378 nvme_sync_io_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd6ad66a0 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd9b253f7 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdba8518d nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe0000184 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe092c9c7 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdaffbf45 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdeafd54d nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe0cb76a6 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe127890e nvme_start_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe389e010 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe4713efe nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe6ccd146 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xec94efe8 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf099385c nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf5ec170b nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x063099b5 nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3d87d2bf nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4c182990 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe89e3e05 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xee0e0714 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0bd30394 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x282fdeb6 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2d560e33 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x47521535 nvmf_get_address EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x74b566fa nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x75854fc6 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa089fff9 nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xaec89398 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb5865056 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd06ddd8d nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd6bb4c5c nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x74db374e nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9c172d6d nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc213d4ad nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xda005752 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe3a21c01 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xea1d9ea6 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x09928482 nvme_fc_register_localport 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 0xc6a0e41e nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x06015754 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0857039a nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1936fd00 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2b1945cd nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0066dbe0 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x023f3490 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x08ea5025 nvmet_req_complete EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4940cc7d nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x71f31ca3 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x917a6cb2 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x93d6e4ff nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9ce7bdee nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe4c830fa nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe65d3120 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7629c358 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x82c395e5 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9a855892 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa5e63737 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbc70dace nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe9df1779 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xeea47ba7 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf9b75eda 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 0x4a013682 nvmet_fc_invalidate_host @@ -15954,24 +15961,24 @@ EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_t EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xf2821d03 nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0x73dfc581 iproc_pcie_shutdown EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x0f209c7f switchtec_class -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x0a56fc10 hisi_event_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2a3775e3 hisi_uncore_pmu_add -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x312f1ede hisi_uncore_pmu_start -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x36862f74 hisi_uncore_pmu_event_init -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3b6fe9d7 hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x0e09b835 hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x19cc9860 hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2384b39f hisi_uncore_pmu_identifier_attr_show EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ec4fc27 hisi_uncore_pmu_online_cpu -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x4c4ce5fc hisi_format_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x622b233c hisi_uncore_pmu_set_event_period -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x92261566 hisi_uncore_pmu_enable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x986b75b8 hisi_uncore_pmu_del -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x9c655681 hisi_uncore_pmu_init_irq -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbb872df7 hisi_uncore_pmu_get_event_idx -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbf100405 hisi_uncore_pmu_read -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xc78d5379 hisi_uncore_pmu_disable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xd91da947 hisi_uncore_pmu_identifier_attr_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xd950a52d hisi_uncore_pmu_event_update -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xead876da hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x59f8a71f hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x5fac0835 hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6b581640 hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6fa56e04 hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x782bfb9b hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x9d59b907 hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xa17ade2f hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb3cb9a71 hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb580b293 hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xc512f94b hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xd4f06706 hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xd6780d64 hisi_format_sysfs_show EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfdc56982 hisi_event_sysfs_show EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0xed9d7577 sun4i_usb_phy_set_squelch_detect EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x04c3787c tegra_xusb_padctl_usb3_set_lfps_detect EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x17cd52fa tegra_phy_xusb_utmi_port_reset @@ -15994,18 +16001,18 @@ EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_compara EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x5502c949 mcp23x08_regmap EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x65796da6 mcp23x17_regmap EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x7f56d927 mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x3cdafe6a cros_ec_sensorhub_register_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x94d476d7 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xa0e7f8d6 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xcd43b25b cros_ec_sensorhub_unregister_push_data EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0cd4bd1d ssam_bus_type EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1369b580 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1408a867 ssam_get_controller EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2baaf3e5 ssam_device_remove EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x385b1f52 ssh_packet_get EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3f9a6413 ssam_controller_put EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4265cd56 ssam_device_type EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x47b2438b ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x55a28a9c ssam_get_controller EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x563bae48 ssam_controller_get EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6e260d37 ssam_request_sync_submit EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x71b8d6fd ssam_request_write_data @@ -16022,12 +16029,12 @@ EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xaf37 EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbef01879 ssam_controller_device EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc20d0532 ssam_device_alloc EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc75799d6 ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdbbfe470 ssam_client_bind EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xddb61b7c ssam_request_sync_with_buffer EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe7a50801 ssam_request_sync EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe8f462a0 ssam_request_sync_alloc EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf1f98ba6 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf3ac8b9b ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfc8887a8 ssam_client_bind EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfe40cb0d ssh_packet_put EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x888e6768 san_client_link @@ -16039,9 +16046,9 @@ EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xb4b1c561 devm_reboot_mode_r EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x1172c19d bq27xxx_battery_setup EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x378f5977 bq27xxx_battery_update EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xd9f6b193 bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x5fab727b pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x8a61f067 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xa9ff8e0b pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x04ad1e21 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x059c236f pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x281cfbc4 pcf50633_mbc_get_status EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x0fe9defa ptp_qoriq_init EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x340afef0 extts_clean_up @@ -16051,17 +16058,17 @@ EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xa1ee53ae ptp_qoriq_enable EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xc470e8c9 ptp_qoriq_settime EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xca08e751 ptp_qoriq_adjfine EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xfc86e6ce ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x336fef14 mc13xxx_get_num_regulators_dt EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x384ced95 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x84ec094e mc13xxx_parse_regulators_dt EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa14b4792 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa688d800 mc13xxx_parse_regulators_dt EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe7c23ba1 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe8994c9d mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x69e98557 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9c69ae6f wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa0075a4c wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa10a21b5 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd931880f wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf4c5e46c wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x371df715 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xca8bd31a wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd040fc95 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd0bd7bc2 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xdb475fca wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfa4d8e1a wm8350_dcdc_set_slot EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x0e4c3255 wm8400_register_regulator EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x353d00cf scp_put EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x6a390e16 scp_get_vdec_hw_capa @@ -16069,7 +16076,7 @@ EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x85c10e20 scp_get_venc_hw_capa EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xa21e03b8 scp_get_rproc EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xba94a1e2 scp_get_device EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xe5615b93 scp_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xf69cc431 scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xfd41bb9a scp_get EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x006ad36b scp_ipi_send EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x050eec98 scp_ipi_register EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned @@ -16091,118 +16098,118 @@ EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x0ad13ad3 qcom_q6v5_request_sto EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x2b745e23 qcom_q6v5_unprepare EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x3b0677f8 qcom_q6v5_prepare EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x782f5cac qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xafe696b6 qcom_q6v5_init EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xeee4bd52 qcom_q6v5_wait_for_start -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xfd39c9bf qcom_q6v5_init 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 0xe7c10f14 qcom_add_sysmon_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x86903274 mtk_rpmsg_destroy_rproc_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0xc6ebf825 mtk_rpmsg_create_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0xc9c6d56b mtk_rpmsg_create_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xdab395aa 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 0x3399fe40 qcom_glink_smem_register EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister -EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x5d68313e ds1685_rtc_poweroff -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00351dcf cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00c91d29 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0228fd8f cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e206935 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x16c2c271 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1bf778d8 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1c80bfc2 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2fd3d094 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x319c9e96 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x34e195fb cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a7c4c5c cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x47773068 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4d309f60 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x52b2c18e cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54116f47 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5936765b cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f8c202c cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x62c1ec3c cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x707ab3e9 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70fd76b8 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74719624 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x770d19ec cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x50eae513 ds1685_rtc_poweroff +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1d16819e cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x223263d7 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x25bc58ca cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a94aca0 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2daf34f7 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30ffc014 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x351ab3d5 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39aaac69 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e07a35e cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f6fe4a7 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41f8a8eb cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44556f7c cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x45d0f7ba cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x46d5dcab cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x49a9645b cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54f951d2 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5a33e0ea cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5d1def4b cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ee8d303 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5eec3758 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f969143 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x624a0e91 cxgbi_set_conn_param EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x81e38f98 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8ae898c9 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8eafeec2 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8f7ea82c cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x90d73ab7 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95a022a2 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9a5e10af cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa40a7517 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad0628c5 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb8a26401 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb9250572 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd8f794a cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x81c39c57 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x873aeeb8 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9843bbef cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0a6a17b cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa11b46fe cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa616c8e4 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8873b87 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa9816570 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaeb645c1 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb2debc9a cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb3cedfd1 cxgbi_bind_conn EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc319319d cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc89a20d6 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xddff3a09 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe4730485 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe8ce5e5f cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed8e09fe cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd87be159 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdbb30d47 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1eb2224 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe55f2c77 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea035074 cxgbi_sock_rcv_wr_ack EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2ff685d cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf42f12de cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf84a157c cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfbd5d01e cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0cec7ac3 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x119f9547 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x257c8335 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x266d0818 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x272b589a fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x322980d7 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x352738f5 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3c6332a9 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4a17220b fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4dd68386 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6b2b0b6b fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x840b9864 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa869e604 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xba16b2a5 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf061af37 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2a0a43a cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4df973d cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7f317ce cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf9213bb3 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf9a560da cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0a787917 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1bb433e7 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2bb88857 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3560fe33 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x447b049b fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5050a5fa fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa27769fc fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb13fb280 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb188deac fcoe_ctlr_device_delete EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc03607a7 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbcb0679e fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbe09c21e fcoe_get_wwn EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xeed2b241 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc80cbfd5 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc8caeb83 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe5501a37 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf01f01f9 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf0b00ef1 fcoe_fcf_device_delete EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x844f14b3 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x8eac31a1 fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x11184252 hisi_sas_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x16b80c80 hisi_sas_sata_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1de3d99c hisi_sas_stop_phys -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x2277368d hisi_sas_scan_start -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3235e6e3 hisi_sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x35413d68 hisi_sas_slot_task_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x38e69668 hisi_sas_phy_down -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x41fd9cf6 hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x33147eaa fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xf20a12b0 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0bf2adf3 hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x27b17f3e hisi_sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x2ddc255c hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x400a107a to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x45b9f97c hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x49571ee4 hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4b2c60e3 hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4d347855 hisi_sas_phy_down EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x57f23f6a hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5380b7c1 hisi_sas_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5b7da93d hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5ee3a1f0 hisi_sas_init_mem EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x60d2dc0f hisi_sas_debugfs_dir -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6738231d hisi_sas_get_fw_info -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x79da213a hisi_sas_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x84f0b236 hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x64361cfe hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7470cabe hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8cc96ef1 hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x96ea1bd8 hisi_sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9a99a3da hisi_sas_release_tasks 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 0x9f0a2d7e hisi_sas_init_mem -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa809b6e9 hisi_sas_controller_reset_prepare -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xab4be370 hisi_sas_controller_reset_done EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb03aa9c5 hisi_sas_rst_work_handler -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb6911f78 hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb623dad1 hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb8c57f1f hisi_sas_probe +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xba44696f hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xbebc5519 hisi_sas_sync_irqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc0f6f3a3 hisi_sas_controller_reset_done 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 0xc40cc07d hisi_sas_sync_irqs -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc4a4d92b hisi_sas_probe -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xca4d313b to_hisi_sas_port -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd189ed97 hisi_sas_release_tasks -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd7d2676b hisi_sas_phy_enable 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 0xeb7c90d1 hisi_sas_slot_task_free 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 0xecf260b5 hisi_sas_free EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0d882c36 iscsi_boot_create_host_kset EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1809f07b iscsi_boot_create_target EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1e566cf1 iscsi_boot_destroy_kset @@ -16211,210 +16218,210 @@ EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x563c29b8 iscsi_boot_create_ac EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc8e01dda iscsi_boot_create_ethernet EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd3353fdf iscsi_boot_create_initiator EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x905b0a32 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x019b140c __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01e3a352 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x08477c9b iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0f552ce8 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x123e7bda iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01289219 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01b3d41f iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x054653a8 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0653e00a iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0cee269e iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x100f6d5e iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11133e60 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x119731b1 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x127a479f iscsi_session_failure EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x145f1a55 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16895826 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1eea9a91 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2535c87d iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39e0f0fd iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1466f948 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1cb153a5 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d1d4206 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1eaeb839 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2374dafb iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23c6718f iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x24e59fd8 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2bd870a5 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x30ea5cd2 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x326cec77 __iscsi_get_task EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f6c2979 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45731ff0 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46c3beae iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4ac18061 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50de8a2a iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x634bbabc iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x648d9690 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6eb9c8aa iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75485b09 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x760a5f30 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x76318fc1 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x77541065 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x77cf4505 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x800a44fd iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x88a68513 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8a1af839 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8cb16169 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x48bdb168 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4c0e0cb9 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d95343c iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x523505a5 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x577b5fdf __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x58a8639e iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5aa4cf62 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5cb2501c iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6177d599 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x72cbfa62 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73e52586 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x87327f36 iscsi_suspend_rx EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91842cd9 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x95ad6a0e iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7b653e5 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xadd08355 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb147ade8 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb341a735 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb8b69ac3 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbfe43583 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc8ad3c6d iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5685889 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8e4e44d iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9999873 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda57a62b iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda82da6a iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde66ea91 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f6f3346 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x947fb449 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x96fdad45 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c598cef iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa910f8a2 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb083268d iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb4f530a1 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4ffbd12 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc85885ac iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc8ac621f iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb327b90 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd89b604 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe7406f17 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe7585826 iscsi_conn_stop EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeee36c3e iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xef4beb94 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4c50c21 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf5f2f358 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb8a5259 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe8d69dc iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0800e9cb iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0beacc20 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2468c820 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x247d07a5 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x31b70fe0 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3df861d6 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5eb8afc4 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x66cda10b iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6eb5d69a iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8d36aac7 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x91185fdd iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x989c05a5 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9afd03a9 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9dd8fa6b iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa073e79c iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe10c3609 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe810206c iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0ed7348d sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xedcde242 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf5949ddc iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfafcdd0d iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x00ebc4a8 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1608ba6f iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1ab55abb iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x28ac56dc iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3790e2dd iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4b4c0f5f iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x56c5e180 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x57eef093 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5eb87cda iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x879b565b iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x89783177 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9fee33fe iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbcd0c815 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc7089309 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcca18141 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xde4322b9 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe84a0acd iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x17ac8a3d sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1e7236eb sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x24cbc6de sas_ioctl EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x30e6263b sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x48633997 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x566a0e74 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x578c2117 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5c03eeaf sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6907179d sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7104da1d sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x724cbe95 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x75fce444 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7f62a17b sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8810d0d6 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x90171802 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x931825c8 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x96bdab65 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9da0f301 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa36fc518 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb46fdd3a sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb4821722 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbfe77fec sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc699c70e sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd2c679b4 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x40232113 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x47acb83a sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4fc39b96 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52ccb9ca sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5319d346 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x705b24b4 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7c3b55d5 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x81e4c082 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa68d7cff sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaeb5e627 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb3676910 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb6bc35b8 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc2fb8634 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc710caee sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xce72f2d3 sas_free_task EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd31c7c07 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd3c945b3 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdaeaba27 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xea60a012 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf1ea38d1 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x2771d126 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x06954916 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x06e51c1e iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd412698b sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd4143f65 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd749ab89 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd8485ab0 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeed96d41 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf2c14290 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf4450195 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xcf34d7bc fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04a0a7d9 iscsi_remove_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x083ecbf0 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x125dc585 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1440c237 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1aa97b26 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1c15bc01 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x236468d7 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23d5875c iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x258f483f iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x33d843a8 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3584899e iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36401b23 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12a92d97 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28dae8b0 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b7a2959 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ddf026e iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x303d7548 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x30e3e246 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32bde919 iscsi_destroy_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3c98b590 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4701ddf4 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ab63405 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5552e035 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a8f9add iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b841532 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e237d65 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x402a0a26 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48a7a58f iscsi_conn_error_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bc021c4 iscsi_unblock_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5fec5eb3 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5c38a13e __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60658b89 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6722f480 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67a3b680 iscsi_block_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b2d0c3e iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6cb2747e iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6dc48494 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f4aac43 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d490647 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6df774ac iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f18fbdb iscsi_free_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71da7762 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x77b42f80 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7bc522a4 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x793a0986 iscsi_create_flashnode_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8acbdecf iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b7498ea iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8dbd733e iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f4b2873 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91af90bb iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94ff4332 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95a42c7f iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x99df734c iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e41b73e iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1a3c94a iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8557083 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ee1bcf1 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f0c9b26 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f8f4e21 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ff0f70c iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x93ad0811 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x97defbd7 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b502bbb iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9fac84af iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8875f3c iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c219fe 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 0xb2257d01 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbaa155cd __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad785b66 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7c347aa iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbac8e473 __traceiter_iscsi_dbg_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc69ff41c iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcfdf4a69 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd12d5777 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd3b62273 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbfec7a57 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce8cb137 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf3346e0 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd0e07df1 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1ca0743 iscsi_session_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0ac6f04 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd8a6a9b5 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd95acb6e iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe46801fe iscsi_destroy_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 0xea94ab82 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb35fd70 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef316962 iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfba5977e iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0a0e1c41 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2b210fe6 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xbc5a99c8 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xdfe579ca sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6abc833 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6e4ccea __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf98df2bd iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb61b418 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfcbcadb4 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfecc4caf iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x29989e19 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4ffb5af1 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x6f1f1743 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7c970325 sas_tlr_supported EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x37208c41 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x5a24d135 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 0x302ebbc6 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x53c6d146 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x49104dbe srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x577c54f2 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x649a1426 srp_rport_add EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6f3b3f82 srp_stop_rport_timers EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7a7d12e9 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x92bd3d96 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc01d7340 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x050e0b0a ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x08f805ef ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0da6a611 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0eca0f9b ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x12e33ff0 ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x19a314f2 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x31d0fb7b ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x31ec9ac3 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x43b79982 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x445112c7 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6c070d22 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe2b91745 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0094f51a ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x012ddfcc ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1809e248 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5094e273 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x510b43b0 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5a302470 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5a525ec6 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5cbc384f ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x721385a9 ufshcd_dump_regs EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7998dc82 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb0fe3aba ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xcb528b00 ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xce513230 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe0483746 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe9b55251 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xee22d6c7 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf7de6774 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfacdbcf7 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x77e47f4d ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x80099d7a ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x85a44587 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9150ef46 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xbb259d62 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc187fec7 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc38f38c2 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe203611c ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe3f64c62 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe9a7942d ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf594c127 ufshcd_make_hba_operational EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xacd36a01 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc9aafe13 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8f2e6762 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa6c3ba50 ufshcd_pltfrm_shutdown EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3a875a26 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x54276cf6 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x54d09d3d __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x77d0f559 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xac401694 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xfba51c0b siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x31e93446 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3921c625 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5c3aaf8b siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd3c6fa36 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xe353e0a0 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf7684946 siox_device_connected EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x061c0e97 slim_report_absent EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1ba2a288 slim_msg_response EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1d5cd568 slim_ctrl_clk_pause @@ -16478,9 +16485,9 @@ EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xec17d011 sdw_bus_type EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x47dd06f2 sdw_cdns_debugfs_init EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x904d7462 altera_spi_init_master EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x09843dd9 bcm_qspi_probe -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x0c118086 bcm_qspi_remove EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x1adae97a bcm_qspi_pm_ops +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x7780ba5c bcm_qspi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xf09dfe3e bcm_qspi_remove EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x13ade122 spi_bitbang_setup EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1f747c7a spi_bitbang_init EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x266f511b spi_bitbang_stop @@ -16499,24 +16506,24 @@ EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe8f26d09 dw_spi_dma_setup_generic EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x0b8943e3 spi_test_execute_msg EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x3324b35d spi_test_run_test EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x74c4a4db spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x00449499 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2ee8f5df spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3b6afdef spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x40779015 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4e3c058a spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x562ff63d spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x59c16b81 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x835f392e spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x83f48b5e spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x888d1498 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8f45d894 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x98ac2b73 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xacd06bbe spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb438f3a0 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb4442d6a spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc06f23b8 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe4fb48a0 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf4dfba37 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0b08e6db spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x109643e2 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x15cb5bd3 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2328e003 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x303314e2 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x571fa6f4 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5fdfa820 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x72e92528 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x75af44c2 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x76f962c9 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x89909108 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x999eab95 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb1783022 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb9d5137a spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbff880af spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc2d296f3 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd549b51d spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdb7295a9 spmi_command_reset EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xcbecdff7 ssb_pmu_spuravoid_pllupdate EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0f300066 anybuss_set_power EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x35dc0670 anybuss_recv_msg @@ -16574,6 +16581,7 @@ EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xfad9b907 gb_gbphy_deregist EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x5c76b83e gb_spilib_master_init EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xde490d27 gb_spilib_master_exit EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x68022d65 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0xb34837b5 sp8870_attach EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x009cdaa9 imx_media_capture_device_next_buf EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x00daf384 imx_media_alloc_dma_buf EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x155bc0ea imx_media_pipeline_csi2_channel @@ -16650,10 +16658,10 @@ EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0 EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x8912adbd vchiq_mmal_port_enable EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x98ed4f4b vchiq_mmal_port_parameter_set EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xaca4dd80 vchiq_mmal_init -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x0202ab5a target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x135c73d6 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xb8664a62 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe8b04ee6 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x3432ea51 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x526a9469 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x53ab5240 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe1207c7b target_submit EXPORT_SYMBOL_GPL drivers/tee/tee 0x09d65a65 tee_shm_alloc EXPORT_SYMBOL_GPL drivers/tee/tee 0x1f648b2b tee_shm_alloc_kernel_buf EXPORT_SYMBOL_GPL drivers/tee/tee 0x227fcb5c tee_client_close_context @@ -16723,21 +16731,22 @@ EXPORT_SYMBOL_GPL drivers/uio/uio 0x0ba336f6 uio_event_notify EXPORT_SYMBOL_GPL drivers/uio/uio 0x7ef51ad8 __devm_uio_register_device EXPORT_SYMBOL_GPL drivers/uio/uio 0xa2eb1ea9 __uio_register_device EXPORT_SYMBOL_GPL drivers/uio/uio 0xb0d7226c uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x55ce0121 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xfb13e8a7 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xf0c202f9 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xfc6f52f2 usbatm_usb_disconnect EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0ca3ce96 cdns_power_is_lost EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0fb3ec72 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x20be1d78 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x30693402 cdns_suspend EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x53bb7583 cdns_drd_gadget_off EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5634d070 cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x92b9bb0e cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9504b81d cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x69739f42 cdns_set_active +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x73beb014 cdns_resume EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xab377f42 cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xdc7e10ee cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf6faa732 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x4c96d438 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x73a6e3f0 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb044f772 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1ddae672 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2c7c4431 ci_hdrc_remove_device EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x9c607a35 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xfd3a4c22 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xea1ac357 ci_hdrc_add_device EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x05cde42a imx_usbmisc_hsic_set_clk EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1e05690f imx_usbmisc_charger_detection EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x5c3d1ef4 imx_usbmisc_init_post @@ -16760,23 +16769,23 @@ EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x87fadea9 u_audio_get_mu EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa41e2be4 g_audio_setup EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbc9ff3bd u_audio_stop_capture EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc0214468 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x03d983fb gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x15fc0cfc gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2d8ed097 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x342b6a1c gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x360a2121 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x515c9ac0 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x763de672 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7dd1b02c gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x10c0feba gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x139a0081 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2205e065 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x30152ae8 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x321f14b8 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x37ec7480 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3b8900ad gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x820b44a6 gether_setup_name EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa94cf3b5 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbd0f65d0 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc11cf4b5 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdb498fa4 gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdc0f0efa gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe39bf670 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe532a3d1 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfe917734 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x97eabc2c gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9dd55e87 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa34c4fcd gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa9b8d636 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd589aa86 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdfeac718 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe6e9a366 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf369a72a gether_get_host_addr_u8 EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console @@ -16829,21 +16838,21 @@ EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc6b3d113 fsg 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 0xf4efc0c8 fsg_ss_bulk_out_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xffa6e3e4 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1597e3c5 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x55ec2e36 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x563756f5 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5e6aef1e rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x63081461 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7dd00ee5 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7f6646f8 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x852067c2 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x979ef76f rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9aa9de70 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9b30c95d rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9ea6b98d rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbe165574 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcac68d34 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcb3f8136 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x223b0fd8 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x24cf2a6a rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2d571511 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x34dbec59 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x35ba771f rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4f1aba2a rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x53fe6170 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x73e65491 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7a57ccd1 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8924f786 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa663b9f5 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xae0b08e8 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdd64835c rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xefe55d3b rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xff4ddbe4 rndis_rm_hdr EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0076f27e usb_ep_autoconfig_reset EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cb7e477 usb_ep_autoconfig_release @@ -16939,15 +16948,15 @@ EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xff73635b usb_gadget_map_req EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x8bff976e renesas_xhci_check_request_fw EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x8bfab7fd ezusb_fx1_set_reset EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xa69b9732 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1391e85f usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x16fdbd76 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x49fca28c usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7e640657 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8ac15bf2 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb39f8f09 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe8adb964 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xea5747bd usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xffea5991 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x02ab2380 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1ccd9816 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x32a94162 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x36a6d968 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x58e038f2 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbf43edac usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd04a195d usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd3d8eabf usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdcd83e08 usb_ftdi_elan_edset_flush EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb @@ -16966,8 +16975,8 @@ EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x10e2c04c usb_phy_gen_create_phy EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x2034d0a1 usb_gen_phy_init EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x2fb37a76 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe07e1e19 usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xfd6c1ad6 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x4af6a8de usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xf6700e58 usb_phy_generic_register EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xdad4af8f isp1301_get_client EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x01a0ab0d tegra_usb_phy_preresume EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x3e6e518a tegra_ehci_phy_restore_start @@ -17061,7 +17070,7 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaebaca1e typec_altmode_get_partner EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb251fd9f typec_set_data_role EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbc45224f typec_switch_register EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc05b448c __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc36271eb typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd67e29cf typec_altmode_attention EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd7fa535d typec_switch_unregister EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdafd6310 typec_switch_get_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xde3f401b typec_altmode2port @@ -17085,31 +17094,31 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xaadc5883 ucsi_unregister EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xaf4d697b ucsi_resume EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd0c9510f ucsi_get_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xdb02437f ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x01cbfb16 usbip_recv_xbuff EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x09ee8356 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x11ff0330 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x70793107 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x196dd187 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1d6f1c65 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x50734e5a usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5e0d306c usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x73f122c2 usbip_dump_urb EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x84dbec75 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9ced1fed usbip_pad_iso EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa370e4ab usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xaf958e3a usbip_pack_pdu EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbd74bc27 usbip_stop_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdbb164fc usbip_event_add EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe3f59321 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xebd7a4c8 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf4eb194b dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfa55e3cb usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfb14be6d usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1cca38cd vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3b157561 vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa0931e09 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa12c4d46 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa13cd4a2 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb7555c5c _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xca86ff0d vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd0d7edc1 _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd56b2d57 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfcbcc013 usbip_recv +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0fb9dbfd _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x42f784cf _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x550ecc22 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x589661e1 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6a602b58 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x705a5ac1 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x857e4074 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8832def7 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xbb5bc7be vdpa_unregister_driver EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x09fdd60a vdpasim_create EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xb23ad168 mdev_bus_type EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x04019f9f vfio_pci_core_close_device @@ -17247,332 +17256,332 @@ EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7dde4374 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 0x00e5e0a3 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2b5bd903 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x35b130d4 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x67ec119b nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0cd83fbc nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x544aa921 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x68e261b6 nlmclnt_init EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x926ec416 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc3153c6a nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe717cc18 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x010fc6c1 nfs_file_release +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x882e63c6 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc9ad8eb2 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xec0892ef nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf3d7a954 lockd_up EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04952e76 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04c26ccf put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05a1119e nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06d5e301 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a009de1 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a359308 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b316712 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d0253aa nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d3c309f nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d970fc3 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d9f84aa nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f2a3196 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05fd0021 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09b12c3b nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b772ea9 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b8bd98d nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e0cc095 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e5ebb68 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e98569d nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fd99482 nfs4_fs_type EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x141134c9 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1491ca7d nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1750dd7c nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a194962 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c4f582a nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cbeed62 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1dc1c0bb nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x218d3293 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21a0357a nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10b49e88 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b4637d9 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d1b704e nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x226a9450 nfs_request_remove_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x234131d1 alloc_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b89f198 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ccbd574 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2dcad7a3 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27d6f05f nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28206de4 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c1bbcfd nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e2880a5 nfs_put_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30c2e342 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x323b2d76 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33084861 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34e02849 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31051941 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3143f4c1 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3551c305 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36b8c69e nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37cee58d nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x384f08c1 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39b7fcbd nfs_close_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b3d2d7f nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a27e6dc get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3da1d32a nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e62c329 nfs_do_submount EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f534bae nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40302c12 nfs_file_write EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42439188 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x407cda97 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x419a3d8c nfs_alloc_fattr_with_label EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x437936ff nfs_access_zap_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4535db69 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4915bdc5 nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49a43a6b nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ab41494 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45a2b56a nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48af92b0 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c2c6044 nfs_show_options EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cd277b1 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cf3428c nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d5ca1a3 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50e249e8 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5133d1e0 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d84bac8 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e481c0f nfs4_label_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53afef9a nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x541fa363 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52768acc nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55e502fb nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5691815c nfs_zap_acl_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x585e882f nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x596c5d67 nfs_scan_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59b3bb3f nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d347b0e nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fc88d9a nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6182d805 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62389de2 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63930248 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63df9c8d nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x652f1576 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66153e48 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67a11b77 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69d197fd nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a8946c6 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ac7e3e3 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ad57aaa nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c5030e2 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cdc6ae7 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cf72540 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60c99bb6 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x616fb4d3 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64c40216 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64d980e8 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x653e8f56 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67ff7e0f nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69a6c1fa nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cc14699 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dcfa8d4 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dcfe5db nfs_pageio_init_read EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f4ccd0a nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ee14080 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x703477b2 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71b07edb nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71bdf87b nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x737e4671 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73af5d98 nfs_pageio_init_write EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76e3acb3 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7708dcde nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x776b4f1c nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a1ec1b0 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a8a10ad nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c2bd9bc nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c3b901f nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x775f8e13 nfs_commitdata_release EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ddad9bc nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x802129a1 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82836813 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82bda65b nfs_file_release EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x874ebceb nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88059b6f __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89931a8c __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a8d0245 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b2dcee7 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c53302f nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8488a9f3 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84beeb07 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x857c88fc nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x884c0965 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x894906a5 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a07794d nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8aa5be66 put_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91335c73 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x916d712a nfs_client_init_is_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x927cdb09 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9364dfcd unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x938d02ed nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x924e3998 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x925e6306 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93c9008f nfs_pageio_reset_write_mds EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9716a82b nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x977a08f8 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95efdd05 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96ee7b01 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97f13162 nfs_reconfigure EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b7e0188 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c5313e8 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c87310f nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d4a7efc nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e2282cd nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fd6b29a nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99bcd08d nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99c41a13 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99f39714 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a9a240a nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a9b61a3 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c9845e1 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e00571a nfs_file_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1f9086c nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa31ba303 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6fc8e05 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa77e382d nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa191ec48 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa32f6dca nfs_free_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa7054f7 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa99774d4 nfs_pageio_resend EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac86c19b nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae7fac37 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb05fde95 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0c0efbf nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4353102 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb49e1f35 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb51baf22 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5e1d759 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbaad5588 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb649e09 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbccc637f nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf14349b nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0506163 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab33a228 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad924908 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae1c1ce5 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2035559 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb377fdf5 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb469614d nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4d68eed nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb55ab6a5 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb585d852 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6345b18 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9decfb3 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb8976d9 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbba42b4a nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbea67200 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf47ad44 nfs_umount_begin EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc15ed992 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2752b82 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2ffed4a nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc37d7761 nfs_access_add_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc45b88ee nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9df3fcc nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9e0b48c nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb86250b nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc8badd2 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce9ba8a7 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xceff8d3d nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd134a6ce nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4c1a45c __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5ac4a3a nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd762778f nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd883515f nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3e1baea nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9af6e5d __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9b4674f nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca6526f5 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb5b080a nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf3679f7 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd091fcf9 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd10457b3 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd274f5c2 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4502b9c nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6b635c5 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd93d3693 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd97b3c84 nfs_setsecurity EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc383fcd nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcf2aed4 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe257b64f nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2fbb724 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5b42661 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe64a31bc nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe64a9785 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbbea2b2 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde88a29d nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdef1954e nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfc082ae nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0d631cd nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2d88cd0 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe36906ad nfs_create_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebd0eed2 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xede91dc2 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef7c9cf3 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf39859c3 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5e38c56 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6666954 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe905e5d0 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecfc9b8f nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed924b35 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1677393 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2ad27e9 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2b49204 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3922140 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf59d3368 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf95592ac nfs_free_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf97f74d0 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb486d50 nfs_server_copy_userdata EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe046e11 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x493575f8 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0085dfb1 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd60811b nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdc630d8 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe249c38 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x5a586378 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02b05a35 pnfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05ec0bc7 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x069b4194 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06328e77 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08636695 pnfs_generic_pg_check_layout 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 0x0b7fb81f pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bd85beb nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c91be7a __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d461d73 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d6cb0db __traceiter_nfs4_pnfs_read 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 0x116bab71 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1343f6d7 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x177f42bf pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e4d0e28 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e717e72 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20c76dac nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21a2dfd7 __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x231d8804 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2586cd87 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1015a31d pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x129f9291 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x130a8870 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x177e83e4 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d89275a pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1daa5543 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f4789d8 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x219d883f pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22db8b1c pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x252ad703 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2757d838 __traceiter_pnfs_mds_fallback_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f2babda nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d80c83b nfs42_proc_layouterror EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31337fb5 nfs4_mark_deviceid_available EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x371663b1 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37b1b2fd nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x404ede10 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4074d869 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x418e6b1d nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x480892e3 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4922fa14 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a28d7c6 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c15aaba __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32f3f4d8 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34a29e27 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38670922 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3aaed612 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ac065ec pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ea44ebd __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ee4dfac nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40acae20 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4193b49c pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45ad2124 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4887b3a7 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x497a4693 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c1ed4e6 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c4e27b3 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c60108c nfs4_test_deviceid_unavailable EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5622e396 pnfs_generic_prepare_to_resend_writes EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59319957 __traceiter_pnfs_mds_fallback_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ac67e3d pnfs_generic_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d5577bf pnfs_free_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61dbf67d pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x676ae5b7 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65079b8b nfs4_sequence_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d68aeda pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x753b250a nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77179f8e pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77f33279 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x783f1b88 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x784311d5 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a9c34c7 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f2b6681 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f7a70f6 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76231fa5 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x778cab34 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x781861bc pnfs_generic_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x787090d4 __traceiter_pnfs_mds_fallback_read_pagelist 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 0x7b6ccb8d nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c3a11d5 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cade3e0 nfs4_setup_sequence EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d65c56f pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e8412ed nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f83c313 __traceiter_pnfs_mds_fallback_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83df3421 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86202627 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89a83499 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94fca74c nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x964d21d6 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89df2225 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8dd852b5 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ec89162 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92191ea1 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92dc2609 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930ad826 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x934001da nfs4_schedule_lease_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x979af08a pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x986a4c37 pnfs_generic_pg_writepages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f0a3ee5 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02c1dfd pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa21093fd nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa24fd88d pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8bc6140 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa90984d3 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb390b2da nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba3fedf7 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a8d541d pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa04407d4 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa681b0fe pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa73549a pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4103f5f pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb756f5f3 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7a1c331 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8c1f405 nfs4_decode_mp_ds_addr EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbeab6e23 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc280a9cc pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3e5af2c pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbcb2406d __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbfcb8b89 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1ebb753 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc21285de pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc321e6ba pnfs_add_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xccc9079a pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce683c88 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf1b1bd8 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7f26d04 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xceac29ab pnfs_register_layoutdriver 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 0xd3c8ecef pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4662628 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4dcca53 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd554df38 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd60eb585 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd625931f nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde0df042 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3bbc4b7 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbf438b3 pnfs_ld_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3aa78e0 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5b62ca9 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe637c142 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5424cce pnfs_generic_pg_cleanup 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 0xed206b43 pnfs_unregister_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede41327 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf59bdd46 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef1c450a pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xefbe3a11 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf23a865e nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf48c8266 pnfs_alloc_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf8032969 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf80ca089 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf87158c4 nfs4_pnfs_ds_put EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa284927 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb2817a3 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc887773 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfdb43945 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa4d67c7 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd2166b9 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe730ef5 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xffb5dc46 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xffcb331c pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1d31a050 opens_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x2842d508 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc7bccfbf opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xefcbbb00 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x2cbca4f9 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x737542cc locks_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6e173a76 nfsacl_encode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6ffd01b1 nfs_stream_decode_acl EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x79da523e nfsacl_decode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x9421bfa9 nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x9ecdf754 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x28a77810 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x07d7727b o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x27530064 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x30d0ac5d o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x357e02b3 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x298ac5a3 o2nm_get_node_by_num EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5b9b3793 o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x79807414 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7e98bfef o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8aff6b60 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9eb6b3b8 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x88fa12bd o2hb_setup_callback 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 0xcd2ef31f o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd8c13cbe o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe81ccb03 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 0x622bae80 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x727f9b67 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x23c4df8c dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3f696dfa dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7024fe51 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 0xbec29226 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbfffdfa8 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 0xe1a9781f dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf153e701 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe52735e7 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf87b2bb8 dlmunlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfd997213 dlm_register_eviction_cb EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x013d0a96 ocfs2_kset EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic @@ -17630,1064 +17639,1064 @@ EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x63adbf92 encode_rs8 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 0x19b2502c lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x42ae653e lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x1194ed50 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x2592dfbd garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x39841cb5 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x5a0817e0 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x85c12be5 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x8d2cdc2b garp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x5751235f mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x6d37fa2b mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x780f9edf mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x83fea3a3 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xa8d8a882 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xcff8eff5 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/stp 0x55e1a66f stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0x956e9c4e stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x14dd4e56 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0x5661e854 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x86269e19 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x876f7cd3 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x16c39a85 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x32162dba garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x590faaa3 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x7851a445 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xceba09f4 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xeca631b3 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x0d98442d mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x680189fd mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x6cf51e8e mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xa21c4dc4 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xa4c63f67 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xd7baa669 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x00cffe50 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x8e7234de stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x0e31d526 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x5043f8a5 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 0xc4135817 ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x19e42955 l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3dce22cf bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x42bc5b37 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x56444986 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x80d39c01 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb23b3f7d l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc1045274 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe5754b19 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfd8507b7 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x9f45f142 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x15a76b63 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1e04f83c br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x281b665c nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x36402c14 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4e4eb580 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5046b0d3 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5b3519fb br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5ebad49f br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6664ceff br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x698b6bc2 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6dd00f1d br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7d6b0398 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8226f172 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xaadb85af br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xace3102d br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb0cd2b93 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb76cefca br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd0b037a8 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd3056599 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd7de54b7 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe1632a55 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xeb0ce653 br_vlan_get_info -EXPORT_SYMBOL_GPL net/core/failover 0x313bd343 failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0x71d5ef5f failover_register -EXPORT_SYMBOL_GPL net/core/failover 0xec7d7af9 failover_slave_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x026ab5ee dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0689456a dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x09390111 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c06c852 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x16074c06 dccp_insert_option +EXPORT_SYMBOL_GPL net/ax25/ax25 0xfebb091f ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0aaff8aa l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0d44acbf l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x19f6976a l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8ec8e588 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9051576d l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9245336c l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xceaa1699 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdd23a77f bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf98d4eaf l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x677c0e12 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x053ecc3b br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x244e6706 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2777cd5a br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2acdf646 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x349f6c05 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3a3efb77 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3df05fa1 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x455bb4c7 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x61a588d8 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x779547eb br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7aa69d94 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9497e11b br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa30858e2 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa4b1da19 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa89117b3 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb60b49da br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbc3a0572 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbc8253c7 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc47121b7 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc4f1357d nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdf18fb29 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdfc62ad7 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/core/failover 0x140a84a5 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x394e0e1c failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x70bdb004 failover_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x06978c1f dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a21af04 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e4fac9e dccp_hashinfo EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1c6c5bc3 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1dbe5374 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x20b358e0 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x23bdd89e dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x25702ada dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x419204c2 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4a1fd038 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1e14c77f dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2feb7f2e dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x355ea101 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x47312070 dccp_shutdown EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x52a1d182 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x534300fa dccp_rcv_established EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5993ef9e dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x622f2df3 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6a51edda dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6bf2e551 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x745d80ec dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x765b98ec dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7a3fc774 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7550d2df dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7aed1e3f dccp_death_row EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x810288c0 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8321a6ba dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x83a7d7bc dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x81bde7c4 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8535f2b5 dccp_init_sock 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 0x952e7f5b dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x901bf75f dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9412d0a3 dccp_set_state EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa19c2208 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa5dc981b dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1c49104 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbaedbc4a dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x984bac51 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa09a015e dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa30d4ef3 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaf97d2a3 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb25e51a3 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb79f2951 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb8ade681 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbf817824 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc2ad7083 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcde0a5b7 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcec81055 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd4d7eb2e dccp_ctl_make_reset EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe47c6aee dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4b8bb07 dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0xeb842bf4 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xeff5da00 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf0ffb4c0 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x347430a2 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x43682328 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7f89de52 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa03fb79e dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa31e0904 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf88a2110 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x00480b45 dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x02c87196 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1bd91da7 dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1de98393 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2808fc66 dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2c384915 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x356311da dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x40d9bf0d dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dccp/dccp 0xebd6a040 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf1530c9a dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf2f3e224 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf4043187 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf5a6594f dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfb904065 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xffcebd6f dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x270b73da dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4a2f4aa4 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6598e565 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x758d20b7 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc93b290f dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf0276809 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x09da549c dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0e92de32 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x10d65ec5 dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x13048b8b dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1c94ff95 dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2111c0ba dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2a60b8a6 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2dfce106 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x332e0537 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x346ce7a8 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x35bc5cb0 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3b82e5ab dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3d052866 dsa_tag_8021q_bridge_tx_fwd_unoffload EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x47969954 dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4bf18b74 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x51f18a17 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x434b2fb0 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x46d36269 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x47d5d516 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x48ae6e4d dsa_tag_8021q_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x625cc324 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x633f8608 dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7127c8ed dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x728d17cc dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7a015ab7 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x806db7d6 dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x80c41ba8 dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x887b2cf6 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8bdffb5c dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x93d54e22 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x93fcd765 dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9cc64b1a dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6910b38e dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x84facae0 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8726e08a dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x88a6a04a dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8a50a168 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x91a7e0a1 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x97019fef dsa_tag_8021q_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa2c181cb dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xadea2351 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb20a23a0 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbb54fcd7 dsa_8021q_rx_vid 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 0xc9b8605f dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xca26032c dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcd9844e6 dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcf43fdb2 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcfc1d43d dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd0ff0fb3 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xee0528c0 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc512780a dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe79d1c1f dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf1010ff4 dsa_unregister_switch EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf4ae607e dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6a9bf45 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf5e994ee dsa_tag_drivers_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf7f680ad dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfa0c4dd2 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x341ef6ec ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8727e358 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf779e040 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf7fdbe4e dsa_devlink_params_register EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8ec9a563 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xcc5b5d44 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x95be596c ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa80f8d84 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa821f1e6 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd78d2ada ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ife/ife 0x14f07834 ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode -EXPORT_SYMBOL_GPL net/ife/ife 0x875ac7fa ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x7b547680 ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ife/ife 0xf0517b18 ife_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x4371b63f esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x84ddf6b2 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xfc4cb318 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0x53594fb5 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xbc55c2d1 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1ab34e0f inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x34c6e6db inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3e58a1aa inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4345de0f inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x56a3b0dd inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xadb93005 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc2a8aaf2 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf738d4b3 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xff229494 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xb4fc37a5 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x05cee16b ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x083a4aaa ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0f68cbbf ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3ac803f8 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4578ec77 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x50586b06 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x885414cf ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8aa72939 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x91e47555 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x99b44c7c ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9af692ee ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa1f97204 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa20da81b ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xab6e44b2 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb1172c75 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc19e1f08 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc8559aea ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x240d1edf arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x7a8d3cc7 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x14062157 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xfc45ba70 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xf9054f7a nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0cf2f934 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x80b361c0 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x821e7cae nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdf6d9a0d nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe4a8192a nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xeb9abbe0 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf77dbd2e nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xcac28dc3 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x859baf40 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x85c04832 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xe1fb13d0 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x156651b6 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xe15ba877 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8b6fda08 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc7fe1ef0 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd5a1b1e0 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe93e1af7 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf725a59d tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x009963a0 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x15c4c90b udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2f422c6c udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7175da4b udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x76f57aed udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8f019862 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x95dd5245 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb60f1676 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x3bbaacaa esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xb334c371 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc3cc9a41 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5d212073 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x99e19870 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc2549f1f ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x01e23ff0 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x56887fbd udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x9b9c4401 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x059773a0 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x84908843 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa92bcfd8 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x7438781f nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x18cd32c3 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4e67da06 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6c517977 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x745e7969 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7ef0e208 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa065584d nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe1a9ab3b nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x4da52caa nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x3fbb2493 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x5bc71ca7 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x71a42e6e nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x34caaf47 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xd5016c62 nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x064ada63 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x135f2d02 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2b891b03 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2b9d599e l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2c203a66 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2d8d7f5f l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4303a785 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x458e4549 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x542176f3 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5d7b6bff l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x72e59b22 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x840bb8a8 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x902d84a6 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9e14cc57 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb023c1ac l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd24dd7c5 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd492b0ec l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf0763236 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf2ce6741 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf5d9008a l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfc2ee6c8 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x22d989b8 l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x173d7643 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x6be6fe45 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x9d09ce78 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x3fc624e2 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xc0eb8b6d gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x163cbba1 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x192a2206 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1a442a08 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1a5cf61a inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3a51eb48 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4145c02b inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x42401e97 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8983cf1b inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd479df15 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x1b814487 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x038600ae ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1dda1e6f ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x25328c51 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x32176a0a ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x44ff5c2f __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x47160a6e ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5288cb85 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5b01713c ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x63b3fd30 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x928250d8 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x93f861fe ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa873c515 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xac1d22f7 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaf08d163 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaf3a2f57 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd2989c98 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd963f23a ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x712477ae arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xe3185191 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x2f6142a5 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x850bab1e nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x5e9bbd29 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1b197187 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x26f4ce7d nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5b7a79b5 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7062d7c5 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x828318e7 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe519d95c nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfc9181ed nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x459dfe83 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x3fa571a6 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa37c872f nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xfc351132 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x43811b34 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x7395a010 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1b3835c7 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x22bc6c1f tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2df0316e tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4c6829a8 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb2f77da8 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x09c1ff2a udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x28cd7a9a udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2c7788ca udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x588a6e56 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6990a841 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd48cfb43 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf2c00589 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf70ff69c udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x0ad6e519 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x0cd0f230 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x2ea62c71 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x15e4ebd7 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x65fdd767 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xcb1eef3a ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x12bc29ed udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x1ef75af7 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xe652c214 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x4123a400 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xc171d1b5 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf33b9486 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x5795ec42 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x285cb67b nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x55c538c8 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x63711406 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb83a337a nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc3193c35 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc32f4b2a nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf0ba9479 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xc2fa5fea nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x2bc1e465 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x336640ae nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x60ac56fb nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x4be47d13 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xcc048c2a nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x01ef91ff l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x07423dab l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1cb0e4c5 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x236e1539 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x37765896 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4b0b00ab l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4c856a77 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5de93c9b l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x80742cd8 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x81749df9 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x820eb29b l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa3d96a65 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa5d7dbd2 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa7aea9f5 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbfc3362c l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc6b71262 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc8497539 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd12b890f l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdb80050d l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe5854f0d l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfdef3a54 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x4cfe4272 l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x8d8d9328 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x156068f5 ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f3d39b4 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3332db33 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x34ed98fb ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3c874eb9 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x8db9b12a l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0cfc767c wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1cdc3c0d ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x23e363f6 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2446a596 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x462904ef ieee80211_find_sta_by_ifaddr 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 0x6634d5f8 ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6a65c6e3 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x731bb4b4 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x895a00e2 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59d7244b ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x620d7a99 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6debf495 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x949ab997 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x99924f3e ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9ebcf40c ieee80211_ready_on_channel EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa3065e44 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa142fa95 ieee80211_update_mu_groups EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xadddb05d ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbe5eb4e2 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbf33aa65 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaabb4592 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaf74db5e ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc5004336 ieee80211_iterate_stations_atomic EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xda162b65 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe118bbb1 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe67b2798 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xed76c322 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xee068497 ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf164eef6 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfa5707e6 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x65ba7a9d mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdf4d0000 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe2ed3edd ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf1942309 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9d74d82 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfaf18f9f ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0c8ea8a2 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0e822637 mpls_dev_mtu EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7dfee121 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbd87f5d0 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc8f76e57 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe9de8036 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x063b0474 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x07e7c41d ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0d8d0559 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa05b5ee2 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xae88e84b mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf7becf06 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x135ed71b ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1fa3ac05 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x20ff89f3 ip_set_name_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2561502a ip_set_put_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x43f932a0 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x462f1ee4 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5646cbf9 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3a5968c7 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3d7e0c4e ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x48666f1e ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6c18eddd ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x70f50919 ip_set_get_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7b48fd22 ip_set_get_ip4_port EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x84a67282 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x86148bff ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8a25bb21 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8df3dea6 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9d2c3956 ip_set_test EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9fd6ba0f ip_set_nfnl_get_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa4c591df ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa5a5d45a ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa667b2cf ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd778c027 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xda22a656 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdc2ce466 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeeb6b754 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa317195e ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc6b21e5c ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcac398fe ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd7bdb73a ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe387240a ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe4e9ae54 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xec9746fb ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf2672b16 ip_set_get_ip4_port EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf9831a1d ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x29acd060 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x5bdcae88 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x85ceb036 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd96761ec unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x08bc7479 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x5f8fbb71 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9396515a unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xedc9c9cd ip_vs_conn_out_get_proto EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x4bcd1414 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x6fdca332 nf_conncount_count EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x95efb6a0 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xca81bae4 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd7f7ffe0 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xec7c27c5 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf696f2b6 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x043e4f5a nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05242fd0 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x099ba9c7 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xdb09c65b nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xeb04677f nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf3aa50d3 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02c92edb nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02da09b0 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x081f5ed3 nf_l4proto_log_invalid EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13d021dc nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b996407 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fafefdd nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22e55dd1 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2841f756 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0dccca9c nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x142185f4 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19ca48a6 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e38a151 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ea59cb5 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2131c7cd nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28379519 nf_conntrack_eventmask_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 0x2bafb344 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36b0fc4f nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38132272 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39ba0241 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ad26e62 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b2307ae nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c99f5df nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40b7c73d nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41ad7465 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45ca02a3 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46ad44af nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c6b908b nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d4cdc7c nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50660152 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52565987 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57b4eda8 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5924de93 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5de79489 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f02e345 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x615cf36c nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6256823a nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x305f0b8b nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3192d9c5 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3216b6cf nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x378ffe7a nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x397c1f37 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cc3aa0a nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f7305c5 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4413b41f nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4eaf1704 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x529c0521 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5605f001 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56755752 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57d8ccd8 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x590be0c8 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59cd482b nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5aade784 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c2f0ecf nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c78c420 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5da9a3c4 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e086e67 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e9e4ae4 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5efa3230 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fc44c07 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63639bec nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6880dab5 nf_ct_seq_adjust EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x69b16f43 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d3fd340 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7164163c __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71f8af48 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7420902c nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78868ab6 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e815a53 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81827330 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81d21628 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8cbb3384 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e5dbff6 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e7411d9 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a7302d1 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72b3ac21 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74cc5fd7 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77c729ee nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d726554 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7dc28b2d nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8044e3b4 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8055f9bf __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x874b975c nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89563e12 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ae69c55 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e221861 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ed32d36 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f70c8ba nf_conntrack_tuple_taken EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x957ffdf2 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9690a7ea nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x982b88bd nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92b7e00b nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93ecdae9 nf_ct_expect_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f50de2c nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa014145f nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2f03a41 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa63ffc21 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa67d0b29 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6da627a nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa614fb3 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadd85778 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaeda67b1 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cf23f56 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f24bbb8 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9faba4f7 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa86b090a nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab99b5d4 nf_ct_seqadj_init 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 0xb103918a nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb329439b nf_ct_set_auto_assign_helper_warned -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb49b4294 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb54d1ce3 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5896f9d nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5dd1998 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7cb113f nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8208276 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbbdafd44 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5d48f51 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba177286 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbca6e48d nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbed8dcd0 nf_ct_helper_expectfn_find_by_name EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc35df8cb nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3df81e1 nf_ct_expect_alloc EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc721b22a nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc91c7800 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcaff80f0 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd714c82 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1473b11 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd20f68cc nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc690d2db nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6fd000a nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcbdfc1ba nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd024767b __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1ec7006 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4ec7b9d __nf_ct_try_assign_helper EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7d0b791 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb4ff796 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd68bab81 nf_nat_helper_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcf2db8d nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbef3268 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde4844a1 nf_ct_get_id EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0cc9b99 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe460ecce nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe203a513 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe25fd353 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3359c0d nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5be3c07 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6d2d092 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe93efbd1 nf_ct_set_auto_assign_helper_warned EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xedf7ba0d nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee9ca678 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef04c49c nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf35f5def nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2165a54 nf_ct_seq_offset EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5641500 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6202f48 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf90cb87c nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3f453c7 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf67f5f5e nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfcdb2de2 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd61a63b nf_ct_gre_keymap_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x0946deca nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x44ba75db nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x5244bbda nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0351a49f nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4357b4ff nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6c5a7621 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x89ba1ac0 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8a85d8a2 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x98e4b5a3 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9c1b1ace set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd96c9338 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd9f2d140 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe2e0509b set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x58a4aa62 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x474ce68f nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x70a11d91 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe1aff1df nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf641eea5 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2fa32176 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x34703901 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xabf446cc ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc1fd27cb ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe4be3f01 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xeef6c9ae nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf5fea61f ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x83c17b6f nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x1de122d2 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x73460843 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xa944ed82 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xc9c0a0e4 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x15a92755 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1be9d18f flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x200eaf39 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2319d729 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x29c59047 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2ae0c89b nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3fe41392 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4302b065 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x71009999 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7b59b322 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x91433f88 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x949cd6c6 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x963a46ad nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd838ec54 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdc4b85ec nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe5837d39 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xef2172d3 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x054064e7 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0feeb880 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x150dc1a1 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x256c6203 nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2d341248 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x359f7322 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x91f93e12 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x69919c4d nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1172b389 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1ee403d5 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x36313caf nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5bf68862 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9b587f44 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa601aed5 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc6712abc nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd8918c7e nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe6141c31 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xeb40eef1 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xab7f29ce nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x53494f3e nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x79f23c08 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa029e2e7 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf15e1aaa nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3e298c91 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x81b6aaca ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcabae42e ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd78c6d04 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdb33306c nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe47ec90b ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf55e3b09 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x96baa318 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x424fbbab nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x115e1cfc nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xcee041a5 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xed9bf57a nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x10a6cc32 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3d423568 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x41dc5213 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x47e7b523 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x482607c0 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7e0fc553 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x81fafd67 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x99e6cae6 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9f0c9817 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa6175695 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xabcbce89 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc2ba662e nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc640eb13 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe6be27b8 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe7cb6105 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf2859739 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf394fb24 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x22a64b6a nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2caa030d nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3ad5d619 nf_nat_alloc_null_binding EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4667b88c nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5ff9eb38 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6b215adf nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6d895f2f nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7e0e9530 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x912aa0e8 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x983b834b nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcd9bb246 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd7573143 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x43356b5c nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4f06e369 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5763de57 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x66ec6a40 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8418070e nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8520815a nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x943d2543 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x94f8b211 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9cbc0da8 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa9b831ec nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb78a41d1 nf_nat_redirect_ipv6 EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe550a7e8 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe895b5e3 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x13d2cec1 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xed5b8402 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfb030b22 nf_nat_inet_unregister_fn EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2878feaa nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2abb9a62 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x36a4084f nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4a7a3c25 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x50251196 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x54a6cac0 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x79b3ede9 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9248c747 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x200fb2b0 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3045c6aa nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x52357d02 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5eb2001c synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6c647d56 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x895d64d1 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9803b0ae synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa1a2791a nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa252a2ff synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb1e80d00 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbc685768 ipv6_synproxy_hook EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcaffdd00 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd8afbcd2 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0118c88c nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x03bffaaf nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04874b1b nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x051c78e8 nft_flowtable_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x07d13984 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x118cf217 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1b615a28 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x273e8d76 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2e7996fd nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x11eb89dd nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1634afd2 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x21be6ddc nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2b4a6b46 nft_do_chain EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x34be3546 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x358c860c nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3a77d32d nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41863519 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x351b6d69 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x355ce057 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x39e898a2 nft_chain_validate EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4978f769 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4c85a02b nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x69cce7a9 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6c525b4e nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x74441558 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x839d2959 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x86831418 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x53a65927 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5743fe6a nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x66916aaf nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x729ede53 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7881f701 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8133210e nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x81792329 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85d32eb8 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x899dedd6 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b0c7265 nft_unregister_flowtable_type EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b5ae838 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8d2cdfc3 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x914fa022 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9803b4b3 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9cf797e9 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa6591273 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9cdf726b nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9d6ee76f nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa0258adc nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa86c4870 nft_obj_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3bd62b8 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb7b623a7 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc15aeca1 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbb808b95 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbb891e07 nft_data_dump EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc23cd9bb nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc732c2d8 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc8c3b4fc nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc9383274 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd1164de1 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd134abb7 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdb9c3994 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc27cf73f nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xce6682b5 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd748c620 nft_set_catchall_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdeb8c5af nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdf07cb4e nft_unregister_expr EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe5150d83 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeded824c nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf036c9f8 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf91cf98f nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfbd0e84c nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xff92465a nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x51d06895 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5a1c5786 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe59de209 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe66aeece nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xef4bf063 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0da35309 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x52cb2ddb nfnetlink_send EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc216cfca nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc66c6d65 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc996532d nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd5406fbb nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa87d74a2 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd11051e2 nfnetlink_has_listeners EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe4603a62 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x09d0623f nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x1371b152 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x69dc7b22 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe136b4fe nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf90b34f1 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfd3a2b66 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x0cec4ffa nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x1c94e163 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xab77afc2 nfnl_acct_update EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x2a1f03c0 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x0b08e2e9 nf_osf_find EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xc0d57f1c nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x25272e22 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x462f5316 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb306e47e nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xc0e3bd2b nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xf062b501 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x1111d30b nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2ad64268 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x81b8e768 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x91cb36e2 nft_fib_dump EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x38aa92da nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x320e69ea nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x49a40a6f nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa913f9f3 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xaa707c24 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x63b3a6c5 nft_reject_dump EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x023a67e7 xt_unregister_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0925971f xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x15d13df8 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x177b5152 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x20a2e490 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x32c8cc91 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4051d424 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4c322a35 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x557a56ae xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6e99f74d xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x704768bc xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x75a974ee xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7ab1df86 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x050902a1 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0be24d0d xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x191e7856 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x22347595 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x28f98db9 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x29b2540d xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x350eea96 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x55ac69a5 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5e7aec4d xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x607babb7 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x62d7d6d7 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6c6f2290 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7019357d xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x777c49f7 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x798373cf xt_hook_ops_alloc EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7d277751 xt_request_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x820cdd6a xt_compat_target_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8c5ded49 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x94b7cee0 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x951be815 xt_compat_target_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9ed5928e xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9d6ea445 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa375f90e xt_register_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb986e5a8 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbb4a3149 xt_table_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc50710a8 xt_compat_match_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xce15f305 xt_replace_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd452945f xt_compat_match_from_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 0xed6f8de4 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf2a51060 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf97ad66c xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd2319ea3 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd9a6a91a xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe016dbdb xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf5ab1f91 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x16ac04dc xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xdaf91d72 xt_rateest_lookup EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x0757a278 nci_spi_read EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x50ca3cd3 nci_spi_allocate_spi EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x5aaab6fb nci_spi_send EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x24b47676 nci_uart_unregister EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xa3f74151 nci_uart_register EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xbcf9de10 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nsh/nsh 0x3727066d nsh_pop -EXPORT_SYMBOL_GPL net/nsh/nsh 0xf83a91c3 nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4c2888f4 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9063a0db ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xab7f5855 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xafe6f0f4 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf275a491 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xfbcec9f7 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/psample/psample 0x2c794d7c psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0x4d6f309d psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0x96bce621 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xecd710ba psample_group_get -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x026edb6a qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x1cff71c2 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0x896fab39 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0f83203f ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1961cc88 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x33b67d10 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x33f490b0 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x376b354c __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xef435573 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/psample/psample 0x1475c42f psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x8b9ee753 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xb005fc12 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xde42a5a8 psample_group_take +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x1c6299ce qrtr_endpoint_post EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa211ecb8 qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xd9acb137 qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xfbafac4b qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xc5316d4e qrtr_endpoint_register EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x0a97234f rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x0d190616 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x01889895 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x1aadb1f4 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x1ab83610 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2397c258 rds_conn_connect_if_down EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x32e5ee9d rds_send_path_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3cfb8039 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x434d7308 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x3daf1edb rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x42b259f5 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x4433fc4c rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x4450c7e3 rds_conn_path_drop EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x4741dbc0 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x51ce559b rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x5769c234 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x4a9c7297 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x555da4d3 rds_connect_complete EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x6291ebbe rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x645726a9 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x786d4c52 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x5b2beae9 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x63a5b559 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x65c907a3 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x6e68f708 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x73a44c6e rds_connect_path_complete EXPORT_SYMBOL_GPL net/rds/rds 0x788ef4da rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x799633c9 rds_conn_path_connect_if_down EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x7f511c2d rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x82994095 rds_send_path_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x866ad0df rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x869c7160 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x9467a3d7 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0xa212c774 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xc03c2033 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xc0728b7d rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x87a82171 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x8d16784b rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x9032f82e rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xa4def3b1 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xac52502f rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb6c4b785 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xb8e1f9e1 rds_conn_drop EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc559c12b rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xd69e66d0 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0xe028f32e rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0xe611c429 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xe634aa48 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xe7b7aee3 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xea5581cf rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xf211d4ba rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xff0003dd rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xc41408a1 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xdbbae4dc rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xebce2e87 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xf0612f15 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xf9610ed3 rds_conn_create EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xa9c9423f pie_drop_early -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xc6a655f8 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x88c58d75 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xda78e215 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 0x4446a803 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x731fd1cb sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xcbc1b961 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0xdf11ee27 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/smc/smc 0x29541ccd smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x3068fa3f smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x43a23f55 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x46b4d640 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x565929df smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x8fb71d93 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xaf106952 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0xe3b0b692 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0xe6f3afe4 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xf16bfef8 smcd_free_dev +EXPORT_SYMBOL_GPL net/sctp/sctp 0x8fab03d7 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xaf8139ad sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xdcd58a7f sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xf6de6438 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/smc/smc 0x23f791fd smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x3aa8c03e smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x7d152c11 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x81532fb4 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x8430e038 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x909c3bfb smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xb914449e smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xc0e9ab6d smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xd54887a0 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xe0181b34 smc_hash_sk +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2d86c262 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 0x749c1e46 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7ea03081 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x9fce65f6 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc271e86e 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 0xe1385bd2 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0121b595 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03cffc23 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04477545 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04d83d34 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x057ba7a1 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe37edb20 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xede7c715 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01d718e0 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0256ab5e cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02ae31fd xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02ff475b rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03dd069e svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03e3ea73 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x040c0864 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05c7d07d xprt_release_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06fa47fc rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x075b32ca rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07a332ef rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08c10b55 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09cb9b23 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b280529 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d57ab75 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ecf8360 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f34f2a6 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x116598ee __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14392d47 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15194882 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15521afe rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17602ac7 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1941fa70 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a9a7a1e xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a9f9962 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ae47cac xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bb815d1 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c163460 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d6505ea rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x089c5d00 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08c458cb xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09596503 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b6f6836 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c33ff28 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e01c38d xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x104f02d2 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x121ce842 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12e3a002 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13423094 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16c2204a xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177d40be rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177d572b svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19369250 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a7e03bd xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b9b4cf0 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1def8165 rpc_init_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f0ceceb sunrpc_cache_register_pipefs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20b9a47b gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x216e5597 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x239e6805 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23b40069 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2452dd77 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25ccfc39 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26bce3d0 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28992e58 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28c6ddc6 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f8c529f rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x205305f0 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x216539fe rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21e3afbc xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x231d8a70 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24cc122e rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24cc486d xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25225e68 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25699cda svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25a870a1 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2808c848 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x282b199e xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2882039a xdr_decode_array2 EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a0b48f4 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b04cb4d xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c42bfa9 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c7dd8e6 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e228394 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e9ba4da xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fd37640 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30187a80 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30d2125f svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3157da1a rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29a1a7a6 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29d8bb71 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2add9d85 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cc9cb2a rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d776892 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f161441 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f78ae16 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31892ee7 rpcb_getport_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31e2df4d xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32309623 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32dc9598 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3306929b rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x334a2db2 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34aa2f9c svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x320938f6 xprt_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3625a090 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36766e7d svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37d3709b xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38281ad9 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3577b6e2 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3737c2e7 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x376ecf98 xprt_release_rqst_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38eb02ac rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39553663 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39dd8c4f rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39df670d rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c633205 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dd30951 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38ced288 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a2c4569 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a5290a9 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b51208e rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c29a4d6 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dc66541 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3eb230de xdr_init_decode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40e9d5e7 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4115ec23 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42ca48d2 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fd2fe53 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41a1b747 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42212bec rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x422388a0 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4286820d xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4306d374 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43cf4ab1 svc_shutdown_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4711d3f7 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4853beaa xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x498f5427 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x499923d7 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a8bd1c3 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47ee8a61 rpc_uaddr2sockaddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b9112fd xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ccb9976 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cd6f3f6 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d57894e xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cae90c2 rpc_sleep_on_priority_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e5f31a0 xdr_enter_page EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ffb8998 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50180a54 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5024b967 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5103c053 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51a77498 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51c9d1c6 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f39f48c svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fdbdf9a svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x514f34e5 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51de2e89 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52695cec sunrpc_cache_update EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54de2d74 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x550626b4 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5515b3b0 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55dae90b xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x567a2198 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56c874ef xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58b2c1a1 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58c146b9 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58d0ea90 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x591a47da cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a1ac827 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a35178a rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53aeb88d rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x540fd08f cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x546b5685 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55e0fe39 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x566234b4 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x574229c8 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x574b0733 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x590ebe34 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59100a99 xdr_decode_word EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a835a73 xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bfd99f2 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d03cbfe rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e7e89cc xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x615ab16b rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x621f6efb svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62371f33 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x638f22d7 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x647d4224 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x651b87a5 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x653e703b xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a5d60d0 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6351fe40 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63cdb027 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63d9ab65 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x666b8b4a rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x669eb4d2 xprt_update_rtt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69663743 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a22c078 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b56c52c xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7085d93d xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71017e21 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x685d2f5a cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6952efd1 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69583441 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x698be29c rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69dbd403 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a945613 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bc1ad2a svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cc2ce34 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e1c3703 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71059df9 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71909f2d xprt_get EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71ce6308 xdr_expand_hole EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72551005 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72c227a3 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74dd867e xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75331941 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77318912 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x780b2e51 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7826fcb9 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79517424 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a18ca68 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dc0de57 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x740fda78 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x743583b2 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x748a84ff rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x757250c5 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7662d729 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76d5ac18 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x778a504f rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78173d4a xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79cae13c rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a983ba0 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ba50679 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cc17a12 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cd54e39 rpc_clnt_iterate_for_each_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e4f68e3 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x813a7e46 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x814dbf7a rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x816ed779 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82049e82 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82fd2de9 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x835d245f rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83819232 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x843faca7 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85993146 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85c15f30 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85ffae7b xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x860dfce9 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86529667 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86c9b9cf svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x883389c1 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89bc2114 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a12cc40 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c94c2bf svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cb08287 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f16c4d4 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f7b7dc8 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fd596bc xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ff1db6d xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91e94ad5 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92065f33 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9278bcb8 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92f163d2 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95b3a1a8 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e167548 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7edecd4f rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f3d270b rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81af1fe9 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x820cb134 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x827f9588 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82c37e5b svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8319c032 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8339fe4b xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83f08bd2 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84b21c16 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84cef34a rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8543bc5b xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85463ba1 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x897a30ba auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8991ff45 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a2a3863 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ab597b1 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bad2d64 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c3482c3 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c59182c svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d5b09b3 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e1fd34e rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e8f88d0 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f0c3411 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x942e980f svc_xprt_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96e54273 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97808890 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x981e8f57 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x987958c8 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98cb456f svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99567357 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x996c2c64 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x967fea8a xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96f5c72e rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9851641d rpcauth_lookupcred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a7f496e xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a7fe0b6 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9acadf60 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bbda651 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f6bb9a8 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fd2cd33 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fd9e179 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0a05ae7 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a21da56 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a9e20ab svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ada7bf2 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c0c947b xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cf33b5a svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f1ea179 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fa873d6 rpc_clnt_swap_deactivate EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1448122 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2065cfe rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9889919 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa4306a3 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab2557e5 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacd18cdd svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa183836d svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3de6f75 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa46b71c9 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4f5644f svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa90cdb15 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab180bc1 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab54a0d6 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab6065b5 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac41a87a svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae7c43fe rpc_pipe_generic_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb023afcb rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0808019 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb09fae5e sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0eda884 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb27e8be1 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1056ebe svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1359ed0 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1f377e8 svc_xprt_received EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb41fb4a4 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4843669 rpc_wake_up_next EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5938462 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb927d786 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba42457f read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb86a2fd put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcc52c60 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe05b69f xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe07906f rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe303e69 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf4d1f19 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6075f18 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6caf6c9 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6f77469 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb725bc24 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7f42c00 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9c3e7ed svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb74c354 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcab0571 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd639cf1 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf0d0775 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf474e93 xdr_buf_from_iov EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc05b28d5 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0801750 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0dd8950 svc_addsock EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2f91aca svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3936511 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3d344c5 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8595065 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc23e01fd xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc354481f xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc386ac93 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5cb9d62 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc62577bc unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8011723 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc85462fb rpcauth_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb273981 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb3812ec xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb6f398f rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca735026 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc036815 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc190987 svc_rpcb_cleanup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf0c65e4 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd100c9a8 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xceeea3fd xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf90dd04 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfb3e30b xdr_stream_decode_opaque EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd183a1c7 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3019101 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd37d8a43 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd411b32a xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd48e7951 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd54fefdd svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5735d2e rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8d5d628 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda1ae1a1 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb98ec75 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbe0f762 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1140fab svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd15557db xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2ac71f0 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd41d992b auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd525b71c xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd54a4dde xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd66e468d xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd685c59d xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd88e5f98 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8974b8a svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd96a2845 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9f4fd74 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb65895f svc_xprt_do_enqueue EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfa8a549 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe011cf28 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde26aaa4 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde5ad9bf rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0632784 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe08a0dc1 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe112ece0 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe48ba0d5 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe569b4e2 svc_reg_xprt_class EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe62a9978 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe791e07e rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8adb23f read_bytes_from_xdr_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecd52d22 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecff9041 xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed9a06ce xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe98f8330 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9f1d420 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea8b0b92 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb5352b8 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec74d3fa cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecfa0a47 xprt_alloc EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xede7f65f rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee92caa5 xdr_stream_decode_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeec079c6 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0740c11 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeef36825 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef583665 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefee09df xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf01050b1 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0abb4e2 svc_xprt_copy_addrs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf104b4bd cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1c2eefd sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1fe5f6f rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf222c6c5 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2762b33 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4b7d37c svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf96b5ab5 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9733ff0 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb361c33 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc5a4cad xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd2e8dbc svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfde30f29 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe31131c svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe3201f5 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff849978 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff8a07f7 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfffadf0e rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/tls/tls 0x00d63e67 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x7e7e5833 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0x94a0b651 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0xb99b65f3 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x02ac8d8d virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1788332 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6480d8c rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6f9208e svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8c2e147 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf914b329 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9154723 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbdde1d8 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcedb6b9 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe3e7333 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffbf64f7 rpc_free +EXPORT_SYMBOL_GPL net/tls/tls 0x18c2ab0c tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x63810dc5 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xc0031c10 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xc621a00a 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 0x074aaee9 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0b715179 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0c261d93 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x13d3b57b virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1a394d50 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1ae75f05 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1f24465d virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x30546957 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x370472db virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x37a3b8ee virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3e06434a virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x42cd8285 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5662b33e virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5aad41b9 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5d07731f virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x600878f7 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x60c25cab virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x70a76313 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x71060f9b virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x714b9df5 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9628c086 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9bac4e5c virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa628e8cd virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa8984961 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb7da3d98 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0916f8b9 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0d30c827 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0df2477b virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0f425327 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x13672b18 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x148f5085 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x16f73df7 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x19fd6048 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1f671d4f virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2513169f virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2c588e96 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2dd59f15 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2f107eab virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3aa296a8 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3bff7931 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3d58feb1 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x47b85574 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x720510f3 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x884f2c61 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8dcfb46c virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9d080f00 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9d71dafe virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9e1cef0a virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa0b810b7 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xafb844e7 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb4c0b6cb virtio_transport_notify_recv_init EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xca837177 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcdc6e96c virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd7bafa7e virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe0687a8e virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe61b98b8 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe65631ec virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf0a7691d virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf9b7ff54 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0542a687 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbb8cd546 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc91d5214 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd7b843c6 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xda5ff0ce virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe43ccabe virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xee05b790 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xef004e39 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf551e384 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x00c07458 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x05dc3cee vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c2aebd3 vsock_for_each_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0f433913 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1bc4a842 vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1c88b5e7 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x20b1522b vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1e5e0a1b vsock_assign_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2ecde914 vsock_add_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x42979779 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4605bd52 vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b525663 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4597d486 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x46dd437d vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x498d8d77 vsock_core_unregister EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4fded8ec vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x501ef1ce vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x54ee2676 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6237f63b vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6811603c vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x53c5d082 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x56fb560b vsock_add_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7b07b86b vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x85f94600 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f564043 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x84d6b561 vsock_find_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9c8024c2 vsock_create_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc1205302 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc20543e1 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc6b79a7e vsock_deliver_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdbe2a6db vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xead642e3 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd8f31eeb vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdeeea413 vsock_find_bound_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xecccfb57 vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf929e460 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0f03515f cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4a54f4c0 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x50eada56 cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x582bddee cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5f2e3af7 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6c188e60 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x89f93bdc cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8cf5ca93 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9e500f07 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa3e634e2 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa9b54341 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xae1b3be5 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb2761725 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe70edc70 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf1820935 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf6187e18 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf4b0ee07 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf6ed46a3 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfe5ef07e vsock_remove_bound +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x00acc028 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x07d29abd cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0c2a5540 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3926dffd cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5304e7c0 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6098295a cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x77e3e4a4 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8095e354 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x92bcea22 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa1603566 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa42a1487 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbcc09984 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc1982144 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe2e3f40f cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe9a3d0f6 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xebb8c5a1 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 @@ -18700,10 +18709,10 @@ EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname 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 0x01ab06e2 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x04f5e0f1 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7b13349a ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfc01e099 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x4f910261 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6cb70127 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8ff79ce8 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9b786f0e 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/ac97_bus 0xeea1a24f snd_ac97_reset @@ -18767,18 +18776,18 @@ EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf0af03fa snd_hwparams_to_dma_s EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x3d195efb snd_seq_driver_unregister EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xf4e9c0ac __snd_seq_driver_register EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2f4c978a amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x48ceda16 amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x621a3e9a amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x54c174ad amdtp_domain_stream_pcm_pointer EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x62dc9a39 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9ffc7a7b amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x92fcb269 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x95a57771 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbb79b95f amdtp_domain_stream_pcm_ack EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc2f6781d amdtp_am824_init EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc546515f amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc6179660 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc9dede80 amdtp_domain_start EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc9e7571c amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xde6df807 amdtp_domain_start EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe2b4d672 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xee42b338 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf3702f65 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe515eeab amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf3d4c3f1 amdtp_domain_destroy EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03b341c8 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 0x05b03865 snd_hdac_stream_sync @@ -18886,8 +18895,6 @@ EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbdd3c9fc snd_ak4113_reinit EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe8700cf9 snd_ak4113_reg_write EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf8a3fc00 snd_ak4113_create EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03f6a21e snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04726e74 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x062fc544 azx_stop_all_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676c992 __snd_hda_apply_fixup 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 0x071d6a93 snd_hda_input_mux_put @@ -18897,28 +18904,31 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ba09d80 is_jack_detectable EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bfe04fe snd_hda_codec_new EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cb2aabb snd_hda_set_power_save EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d05178e snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10905556 azx_bus_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10e8c90b snd_hda_jack_detect_state_mst EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1418573f snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19c71253 azx_stop_all_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c1e845c snd_hda_mixer_amp_switch_put EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ce715ce snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e6f83ee snd_hda_codec_load_dsp_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1eed3dbd snd_hda_jack_set_dirty_all EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x206b9c13 _snd_hda_set_pin_ctl EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24aa44c3 snd_hda_create_dig_out_ctls EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2549a369 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x262a5461 azx_probe_codecs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x288a85fc snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d2a1059 azx_init_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e6564e0 snd_hda_codec_amp_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ed3a159 snd_hda_sequence_write EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30db6fb6 snd_hda_codec_pcm_new EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30f1717a snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x310f83ab snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x338b6cd6 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x347c706f azx_stop_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34a0db06 snd_hda_parse_pin_defcfg EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38eb8b90 snd_hda_codec_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39ae68a8 snd_hda_get_hint EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d31534d snd_hda_load_patch EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d857b7e snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3db65e4d azx_bus_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f479792 snd_hda_check_amp_caps EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4143c700 hda_codec_driver_unregister EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41bfda75 snd_hda_jack_add_kctls @@ -18926,25 +18936,24 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4351d291 snd_hda_spdif_ctls_una EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45283eab snd_hda_multi_out_analog_open EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a214953 snd_hda_multi_out_dig_close EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x569a91a7 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5911d438 azx_init_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c896d02 snd_hda_codec_set_pin_target EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e6aee6f snd_hda_attach_beep_device EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e6b34be snd_hda_multi_out_dig_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f7740a7 snd_hda_check_amp_list_power EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x609fa7c9 snd_hda_mixer_amp_switch_get EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61dfd46c snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6260c30f azx_get_pos_lpib EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x649d3fee snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64a3b8e1 azx_stop_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64dcf377 snd_hda_codec_pcm_put EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x653708da snd_hda_spdif_out_of_nid EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66e6e1ab snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68c825cc azx_init_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b7e516a snd_hda_jack_add_kctl_mst EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c0ea4fb snd_hda_codec_setup_stream EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ca9aac6 snd_hda_unlock_devices EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ec5a0e0 snd_hda_apply_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ef7803c snd_hda_get_num_devices EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f2f24e8 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x736d1273 azx_probe_codecs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75fd2d75 snd_hda_codec_amp_update EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77b4f2ed snd_hda_codec_get_pin_target EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78271128 snd_hda_create_spdif_share_sw @@ -18970,21 +18979,21 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9de75451 snd_hda_codec_amp_ster EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9deafcbd snd_hda_jack_set_button_state EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ebfbf92 snd_hda_mixer_amp_volume_put EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f95743f snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f9b3fcc azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fcfeb1b snd_hda_codec_load_dsp_trigger EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3b2feaf snd_hda_add_new_ctls EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa453e031 snd_hda_set_vmaster_tlv EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5295496 snd_hda_codec_cleanup_for_unbind EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5916bc1 snd_hda_apply_verbs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa65ff395 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa6a7b1f snd_hda_codec_load_dsp_trigger EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafd179e2 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0992cf6 azx_get_pos_posbuf EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1da37ca snd_hda_get_int_hint EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb40f3dac snd_hda_get_pin_label EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbc0f3b8 snd_hda_jack_poll_all EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcc7be4d snd_hda_jack_report_sync EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2678e55 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc758e602 azx_get_pos_lpib EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc98fb17e snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcac11cde azx_codec_configure EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd029cf5b snd_hda_add_verbs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1dc6d8a snd_hda_pick_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd577549f snd_hda_jack_pin_sense @@ -18996,20 +19005,20 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdcba03d7 snd_hda_jack_set_gatin EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf12960c snd_hda_multi_out_dig_open EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf30d388 snd_hda_jack_tbl_get_from_tag EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdfc81810 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0c16dd7 snd_hda_codec_load_dsp_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe23e9c07 snd_hda_mixer_amp_volume_get EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe33a080c snd_hda_get_conn_list EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3c35869 __hda_codec_driver_register EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe541e1e1 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb8e39e6 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 0xedc70193 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xede1bc10 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee301378 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf07ead20 azx_get_position EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2565ea0 snd_hda_get_connections EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3d8d5cf snd_hda_shutup_pins EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3ee3626 snd_hda_jack_unsol_event EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf46fba9a snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4fd75c6 azx_free_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8743542 snd_hda_get_default_vref EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf990adfb snd_hda_set_dev_select @@ -19038,25 +19047,25 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xef9b22f2 snd_hda_activa EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf5724d83 snd_hda_gen_hp_automute EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf8c15772 snd_hda_gen_mic_autoswitch EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xffa3df1e snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x9e9e6478 mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x5ed59a84 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 0x339a4f45 adau1372_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x0859db4f adau1761_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x77a2fa67 adau1761_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0272375e adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0601727b adau17x1_add_widgets EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0c5f90ba adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1c284e70 adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x28374d64 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3203559f adau17x1_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x67c731b1 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7a11abae adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7c4c5ea6 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x87ad91ad adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8ebe9048 adau17x1_add_routes EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9d0015bb adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xaf9482df adau17x1_resume EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe0ba74f9 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xea338d2b adau17x1_set_micbias_voltage EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x9f982bc5 adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x17168f21 cs35l41_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x44468bcc cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x8da3ec29 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x450f3c33 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xce5452f8 cs35l41_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x281dc968 cs35l41_register_errata_patch EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x4e99cb59 cs35l41_regmap_spi EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x65e3cc1c cs35l41_otp_unpack @@ -19079,26 +19088,26 @@ EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x80f9d204 cs42xx8_pm EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xbc42b021 cs42xx8_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xe48e6492 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x65414319 da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xa022cf86 da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xa20eb650 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x07e5984e da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x94938093 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xc7dbd1c4 da7219_aad_jack_det EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xfd434907 da7219_aad_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x358f8745 es8328_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xebc9f687 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xec1c1d14 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x2f1a6fd2 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x70cd154e max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x1610662e soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x8523c3ea soc_codec_dev_max98373_sdw EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xb62c9dd7 max98373_slot_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xba1a370e max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xfa599fb8 soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x3fa4825d mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x943b3d2b mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xa13bf201 mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xe394e98b mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x6bae576f mt6359_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x93dff0d9 mt6359_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xa6df3ff3 mt6359_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xc9a55f34 mt6359_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x6752ee1c nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x248a4570 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x796a0ffc mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x821557fc mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xacdaf1d8 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x321ae317 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x51d533a1 mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xba4a57bf mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xea349c3e mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x281dee8f nau8824_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x601d279b pcm1789_common_init EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x668bb277 pcm1789_common_exit EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xb20fd596 pcm1789_regmap_config @@ -19120,182 +19129,182 @@ 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 0x104a6fe3 rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x214eeaaf rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x2ddfe7d6 rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x8896132b rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x89bb7451 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xa2b51104 rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x068b21a7 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xde7a1fdc rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x420ac249 rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xc5ed2af2 rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xa113fcb3 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x062ca7d2 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x6f9e256d rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x7f4f8444 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc70e94f0 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xe2fea0d3 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xef88f5b9 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xe70421df rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xf303fac8 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xd2919e1e rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xf300a3c9 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xaab75c2e 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 0x3a81d93e rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3b754804 rt5682_register_dai_clks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x48cf5b8d rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x491e471f rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x42d20c75 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59154d1c rt5682_parse_dt EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6bfd4fec rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d90afe rt5682_aif2_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6e09e941 rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6e574920 rt5682_sel_asrc_clk_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7ca3a867 rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x80caf4ef rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x95723942 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x82034fed rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa9e00f41 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb2eeb1fd rt5682_aif1_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xbab1a938 rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5367d3c6 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa8d7a6b3 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc5973141 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc6e871e4 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf0db394a sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xeaf0e1a4 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf1038762 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf3e79a22 rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x35df37bc sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x37e99cf5 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3f3c1078 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5f4be550 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe42c5d1d devm_sigmadsp_init EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x68f360be devm_sigmadsp_init_i2c EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xa77e227b devm_sigmadsp_init_regmap EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x305c3e51 ssm2602_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xf1fe76ad ssm2602_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x43267339 aic32x4_register_clocks EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x2b2c30f9 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x6ac0c216 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x84015b59 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 0x1105cfb7 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x17a29a72 wcd938x_sdw_free EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x2be39261 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x5ab4f2d7 wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x8b25fde2 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x65efa617 wcd938x_sdw_set_sdw_stream EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x98573f49 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xa866fc32 wcd938x_sdw_hw_params EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x017890b7 wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x02e3bb7e wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x06c5f091 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1710563b wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x20be767d wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3cefe95c wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0e30bf40 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0ee75015 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x12230c53 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x22cfeb8f wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2590e5c0 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x30ce5a13 wm_adsp_read_ctl EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x496c4f53 wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4d316c55 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4bd546e2 wm_halo_init EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x57a8f49b wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5b598d18 wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x63423a3a wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x79420ae7 wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x84f2e2c7 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x551a159c wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5adeb273 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x63fd6fd8 wm_adsp_write_ctl EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x867daee8 wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x938e352f wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x97a2702c wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9858b499 wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa71979a6 wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xad5582d7 wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc5625470 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x921049f4 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x99bb8362 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa0eb4b8f wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xac8c74e4 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb4c685f3 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb7b16f8a wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbd2ef22f wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc04028e0 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc87a7d7f wm_adsp_early_event EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xce69710c wm_adsp2_preloader_put EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe15d0ea1 wm_adsp_compr_handle_irq EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xec2ffc25 wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xee024b4b wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf2f2c179 wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x14263267 wm_hubs_set_bias_level -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2e26cc0b wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x35d272fc wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x486c7cf5 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf1e80dce wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfcbb5378 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x03203847 wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x4798616d wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x482383ed wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x4c0b53a7 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x544a6ddc wm_hubs_set_bias_level 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 0x8f8ed1e2 wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xcd279d81 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xd552cbf3 wm_hubs_add_analogue_controls EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xda7a6f8d wm_hubs_hpl_mux EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xe3a60c66 wm_hubs_hpr_mux EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x331e3535 wm8804_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x36aeeffc wm8804_pm EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb25147ab wm8804_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd4700122 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xde06c97f wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x49318eaa wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xa285bd20 wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xc1cfd0e5 wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0x15c9aeff imx_pcm_dma_init -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x1a975bf2 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x52912d82 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xebae4b7b wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x4eb9ca70 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xa7d65fe8 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0x9e219afa imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x08a20dc8 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 0x203b2eb4 audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x06aaee54 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0xa9f75bff audio_graph_parse_of EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x26061481 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x371f0e8a asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3aa938e3 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4e8dc67b asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5d0c3902 asoc_simple_parse_pin_switches EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6821b9d4 asoc_simple_canonicalize_platform EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x71a2344c asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x843859d4 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7996678d asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7ab2223e asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x83f6886f asoc_simple_init_jack EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8cd64224 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8f135a9a asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8e4571f6 asoc_simple_set_dailink_name EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9b758fb2 asoc_simple_shutdown EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa91acc51 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa9458390 asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xacef9e7f asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb438400c asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb8919b0d asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb1f4c8bc asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb49a8195 asoc_simple_parse_routing EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc779e598 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe2f786c9 asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xeb927aa1 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc9676622 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcebeada8 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xda1dd4ae asoc_simple_init_priv EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xef80241a asoc_simple_parse_daifmt 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 0xfaad8c73 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfe5747b5 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0edabf41 mtk_memif_set_addr -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x18def70f mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1d9b2f50 mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x27be369e mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x30463922 mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3ebd803d mtk_memif_set_pbuf_size -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x45a0cd4f mtk_memif_set_format -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x48d441d5 mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x48f879e0 mtk_afe_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x54fb8ce0 mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5ae06936 mtk_afe_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5df1ad0b mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x04c8160e mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0e8873ea mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x22176d54 mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x226ec8b0 mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2465f57c mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2526ab9c mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x353bd79b mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3a2c4e37 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3d7e0dfe mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3f9403bb mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3f9fb6d2 mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x536a4994 mtk_dynamic_irq_release EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x632a0f03 mtk_memif_set_rate_substream -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x69a18035 mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xab2d6b59 mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb7a998e0 mtk_afe_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcfce1d5a mtk_memif_set_rate -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd1bf1fb7 mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdc064180 mtk_memif_set_disable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdf4e6eb9 mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe4480c6b mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf3ce6047 mtk_memif_set_channel -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xfbb8ae73 mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xfd878100 mtk_memif_set_enable -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x1c5b6a25 mt8195_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xb538eea5 mt8195_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x18b994cf axg_fifo_pcm_open -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x26ff1b18 axg_fifo_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x6386a650 axg_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x88ac03ac axg_fifo_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x9eff237a axg_fifo_pcm_close -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb03d66b3 g12a_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xc17bd428 axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xc1cc13e7 axg_fifo_pcm_hw_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xcf0aa404 axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x683284c5 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6d111606 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x87927e24 mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x89795511 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8f6d45f6 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9aa42d87 mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9f52d2e2 mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9f5b362c mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xec3f6c66 mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf7838de4 mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf805e74f mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x03357c39 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x2316851c mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x271afff4 axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x42d36280 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x99ae0fb4 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa20a69e4 axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa9c83737 axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe02501b2 axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xf27367b6 axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xfe07a4e0 axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xffc81089 axg_fifo_pcm_pointer EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x4988d1f8 axg_tdm_stream_alloc -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x4b708cda axg_tdm_formatter_event 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 0x7cea6467 axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xba0a5ce0 axg_tdm_formatter_probe EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xef4a0d56 axg_tdm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xf3262979 axg_tdm_formatter_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x9fe99c3e axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x256506e1 meson_card_reallocate_links -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x4b7c016d meson_card_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x58793e4e meson_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x5c9523ce meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x3f1676ef axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x054b489e meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x4e06cde3 meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x9e7ef00d meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xbc0138c6 meson_card_probe EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xcfa56787 meson_card_i2s_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xd36944eb meson_card_parse_dai -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xebe06815 meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe1bca12a meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xfaac673c meson_card_reallocate_links EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xfc4c3c99 meson_card_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x121e1497 meson_codec_glue_output_startup -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x2122250f meson_codec_glue_input_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x2d75b78d meson_codec_glue_input_dai_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x44758ec2 meson_codec_glue_input_get_data -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x66030a6c meson_codec_glue_input_set_fmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xea7d1208 meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x0db619e3 meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x40b8120e meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x4f2ac60e meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x9f6d250d meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xee6ffa75 meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xf22372ba meson_codec_glue_input_hw_params EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x834a4e7e q6adm_close EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xb59df403 q6adm_matrix_map @@ -19339,230 +19348,231 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_inf 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 0x137637b9 asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x36dfe51f asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x51cc16c3 lpass_cpu_pcm_new -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xb28494ee asoc_qcom_lpass_cpu_platform_shutdown -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xbf8dc4b0 asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xc5238641 asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x4ebe9629 asoc_qcom_lpass_hdmi_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x67906ea1 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x16ddb4b5 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x17650822 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x60d24b5a asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x6eddf868 lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xbf43fa52 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xc40480c7 asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xc47eae08 asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x6cb74791 asoc_qcom_lpass_platform_register EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0x69e2689a rockchip_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00deb33a snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0183c924 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0210af6c snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0101a2a9 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01388019 snd_soc_dpcm_can_be_prepared +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01492930 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0185f300 snd_soc_of_parse_aux_devs EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0277ce2e snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09401576 snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a8e6dac snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b7c59d4 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d03a7dd snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f71db20 snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fae3f2a snd_soc_dpcm_can_be_prepared -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x105c0662 snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x121db38d snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1243c9fb snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0599a7d7 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06601e5f snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06a75810 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07786248 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fb377cb snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1061d138 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x130aca87 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x130c39ea snd_soc_get_dai_id EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14151dd0 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16831fba snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x175feefc snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15b097c8 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17d4455a snd_soc_dapm_enable_pin_unlocked EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18cef4de snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19144e7b snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18ef1a34 snd_soc_dapm_add_routes EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19287ebb snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x195e22b3 snd_soc_new_ac97_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1aa81e7b dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b216202 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c0ab155 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cc8560b snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c92cd40 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ca84131 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1dc6db14 snd_soc_component_write EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fb11769 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fd7770a snd_soc_get_pcm_runtime EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20380818 snd_soc_put_volsw_sx EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21e605bf soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25355d49 snd_soc_component_update_bits_async EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x260e3b8e snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28b7c27f snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c1911dd snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d769f39 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2db3dc9e snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dfb8dd6 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26417724 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27ce0695 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x281c9149 snd_soc_jack_free_gpios EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e3d3a4a snd_soc_component_compr_set_metadata EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f29ff46 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fc29305 snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37690fcf snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3150a305 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x389f56e0 snd_soc_dapm_new_widgets EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38c60a01 snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38fa225b snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a43d7ab snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bf3938d snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3de231a2 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a00e512 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3dac2d77 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3db73aec snd_soc_component_init_regmap EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3efaaa7a snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3efe614e snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f07f1e5 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x409a3d91 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3fae05f9 snd_soc_dapm_force_bias_level EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40dfcc20 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41cdd8c6 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x422de0cf devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4624b411 snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46a2a1a6 snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46ca9c65 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4913e826 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b1c24f9 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bcaccfc snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5018e834 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x508cd913 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42934d38 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4386becc snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44e19497 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48e49e7f dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a2103eb snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a28c7c5 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d11b0e1 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e3b165c dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x508474de devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50f72b42 devm_snd_soc_register_card EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5151948e snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52417073 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52d317e3 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53e208f4 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51678320 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5230575a snd_soc_register_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53eae365 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x543b517f snd_soc_dai_compr_get_params EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54a18ae2 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54ca29cf snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55ac48e7 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x575bf2e6 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5853dd15 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59a5664d snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a9fae19 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6214b47e snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x631b4451 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5595f1aa snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56d57e87 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56f0a623 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x571ba841 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58314931 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x595c2ae6 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59e3a63d snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a0a50c8 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cc2e24d snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d43a413 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e6e98ef snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e7e0470 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x607c9780 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61cb92de snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6378781c snd_soc_dai_set_clkdiv EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63a48f1e snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64ef2b81 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6680726e snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66f334af snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x679ecab0 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a2d91b1 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a6df135 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6501adea snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66aa3a2e snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66c0b420 dapm_clock_event EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b877dc6 snd_soc_free_ac97_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6befa9d4 snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f302cbc snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x719f181e snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6eb6368b snd_soc_of_parse_audio_routing EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71a0c87f snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71b72a07 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x721d936b snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75cc229b snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76f8bd9d snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77342c72 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71d4afb8 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7512c962 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75ea6d79 snd_soc_find_dai EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77cde34e snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7afe323f snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b1d762e snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78629894 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78c8ffe7 snd_soc_dapm_kcontrol_widget EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7bf224aa snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d1011ce snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c5d7c0c snd_soc_dai_compr_get_metadata EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82a6c4c8 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8388b8aa snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85b81f1d snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x877c67ed snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87bc7b53 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88c14f31 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fefd6b8 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80885d16 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80d56d11 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84360177 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85d2661a snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x863e7199 snd_soc_tplg_component_remove EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8973f59f snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ecbe5b3 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90321107 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x904bcd3a dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x904c6faf snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x913c46e4 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94a5d5df snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89c31421 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bbd3821 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8eda29fb snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f95690b snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fbc15c9 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9036ad06 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90a42e51 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91900d03 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9215dc30 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92f1bc7e snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93030178 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94cab6dc snd_soc_runtime_action EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97d8030e snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99cea797 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b6ac2c5 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x983e35fb snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99cb777f snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99f15bcc snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a9fa579 snd_soc_remove_pcm_runtime EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cdbd0c7 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d0f3581 snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9df71d86 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ebf01aa snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ee21e2c snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f352fc4 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0224dfd snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa23b6aae snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa309d97f snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e818ac0 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0abe6c7 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0af8922 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa289c1ab null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2cc4f77 snd_soc_component_exit_regmap EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3495cb0 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa54f8d29 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa612d8dc snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa709702d snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7a66596 snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8649d57 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa34bda7d snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa50c2ca1 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa57b323e snd_soc_dapm_force_enable_pin EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8665b2c snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8861319 snd_soc_dapm_nc_pin_unlocked EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab19f760 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac088b38 snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacc34e66 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae9eacf4 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab649097 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabf0d3aa snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacaccf5a snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacb73710 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad21d27c snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae7f45dc snd_soc_debugfs_root EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf64347f snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0f7a11e snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb37921d9 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf8a1ef2 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0f27f0f snd_soc_add_component_controls EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3985d1c snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb43e845b snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6320230 null_dailink_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7bad231 snd_soc_put_strobe EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7d6cc15 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8df32f2 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb950a7b2 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8190eff snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb91ed60e snd_soc_component_async_complete EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9544170 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba259cc4 snd_soc_of_parse_card_name EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba3f5ff6 snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb52f98e snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcd8f47c snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc97a7fd snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe056974 snd_soc_dapm_get_pin_status EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe7a8f1a snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbefcf73b snd_soc_dapm_update_dai EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfa093f9 snd_soc_put_volsw_range EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0b836b8 snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc21621fc snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc343b68c snd_soc_dai_compr_shutdown EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc47c5681 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc61a28de snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc74fb437 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5c75a28 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6181ccd snd_soc_add_dai_controls EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc82d5816 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9912fe9 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca129b0d snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca1b15d5 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbc5274c snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc0bfd76 snd_soc_dai_set_sysclk EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce4f26c3 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce677ad2 snd_soc_rtdcom_lookup EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf092a99 snd_dmaengine_pcm_unregister EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf53511d snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1052bf2 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd13f1ef0 devm_snd_soc_register_dai EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1610851 snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1d2740e snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd251d38f snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3cd5d4e snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4f901c4 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7a08e45 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7bd46f4 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2de387b snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd474a5c0 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7df1f7b snd_soc_of_get_slot_mask EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7e842a2 snd_soc_link_compr_shutdown EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8049093 snd_soc_dapm_put_enum_double EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd841202a snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8dbb246 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8e8cb9e snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd996d0a4 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda90a30f snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb994c8f devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbfe019f snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc2fcc07 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8538ed6 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9797e46 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda5d2249 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda6f3b9f snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb84353c snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcbdbf14 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd450fbc snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddbf80e4 snd_soc_of_parse_audio_simple_widgets EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdebb977c snd_soc_bytes_get EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1105634 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe17b31a3 snd_soc_dapm_ignore_suspend EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1b15ee1 snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5708412 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6fee8a2 snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7f755af snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe98e3b7e snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea044086 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea505362 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe232a43e snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2b9a248 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2fa6c16 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3a4461f snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4b6c44b snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe62d8ae1 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeade3dcd snd_soc_jack_notifier_unregister EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebe99d13 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec9bf9a7 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeddd306e snd_soc_dai_is_dummy EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedf0c374 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee4031e3 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee6629f9 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee142189 snd_soc_dapm_mux_update_power EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee969970 snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefe00e65 dapm_regulator_event EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefea045d snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1f2c34f snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf20fe3d0 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5f33cbb snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6e91809 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf85ca79d snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf900a3ab snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0c45d83 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0ebcd5c snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf11562fc snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3d90d2f snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf42d8677 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf76311e7 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf782ea7a snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7bd3311 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7d6be5c snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7e625b2 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf91eedcd snd_soc_cnew EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa854c59 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfad85dc0 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaf33c81 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb0df8e6 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe970848 snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x2589f501 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x47e1e19d snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x614a54dc snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x70c7f88b snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x91c02023 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9be0fab snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa6ead2f snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfde1748d snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe315ccd snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x48b0e567 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x5609079f snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x61b680f5 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xb9b553b0 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xe3be6e5f 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 @@ -19572,16 +19582,16 @@ EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0xa5fdddd3 sprd_mcdt_chan_read 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 0x5ad9afb0 tegra_asoc_machine_probe -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x9886a63a tegra_asoc_machine_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x071c6160 tegra_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x0f3fce24 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xbae736b0 tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xc083f2b3 tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x0840375c tegra_pcm_pointer EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x37e07bb2 tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x43dbfd28 tegra_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x5c0a1fdb tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x39569c5d tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x430e3fc4 tegra_pcm_open EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x65effa96 tegra_pcm_platform_unregister -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xacd4f7fe tegra_pcm_open -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xf49bc4e1 tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x93413cf3 tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xa9f3061e tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xe8a91cbf tegra_pcm_hw_params 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 @@ -19617,400 +19627,400 @@ EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd525b01a line6_resume EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xeacf85f7 line6_read_data EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xefdca938 line6_pcm_acquire EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfb427761 line6_version_request_async -EXPORT_SYMBOL_GPL vmlinux 0x0006869b skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x00074262 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0x000d76cd ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x0011352a security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x0002a70f device_match_name EXPORT_SYMBOL_GPL vmlinux 0x00153a9b dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x002f9160 kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0x003352b1 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x0015db3d mmc_switch EXPORT_SYMBOL_GPL vmlinux 0x003daa3f irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x0050d159 xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x005e7ca3 devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority EXPORT_SYMBOL_GPL vmlinux 0x0063d2eb srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x00650d4f init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x008632dd apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x006f3c90 security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x0081a60a sdio_memcpy_fromio EXPORT_SYMBOL_GPL vmlinux 0x008e1455 soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0x0098e01e perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x009bbe68 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x00a53a07 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x00ca7028 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x00c9d074 crypto_rng_reset EXPORT_SYMBOL_GPL vmlinux 0x00cb3fac of_msi_configure EXPORT_SYMBOL_GPL vmlinux 0x00ccf7c3 ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00d961eb unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x00daf05f __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00e5114f device_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x00e6a56f dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x00f47431 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x00e9a883 regulator_bulk_force_disable EXPORT_SYMBOL_GPL vmlinux 0x00f6d997 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x00f8d1dc thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0102f919 rtnl_get_net_ns_capable EXPORT_SYMBOL_GPL vmlinux 0x0108976c verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x010d3458 dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0x011fc44d do_unregister_con_driver EXPORT_SYMBOL_GPL vmlinux 0x012516e0 fsl_mc_bus_dpmac_type -EXPORT_SYMBOL_GPL vmlinux 0x0127fc94 bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x0128824e gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x0136344f crypto_register_shashes EXPORT_SYMBOL_GPL vmlinux 0x01370896 __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale EXPORT_SYMBOL_GPL vmlinux 0x0170154f mtk_pinconf_adv_pull_set EXPORT_SYMBOL_GPL vmlinux 0x017cd79c clk_regmap_gate_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x0180f849 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x01863f99 crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0188e363 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x018a96fd skcipher_walk_done EXPORT_SYMBOL_GPL vmlinux 0x0190c2c7 rio_request_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0x019d87f4 tps6586x_writes EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01acec86 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x01b82b4c devm_platform_ioremap_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x01b89705 wm831x_device_shutdown EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01cf5082 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x01d1ff92 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x01d42bc7 dax_layout_busy_page EXPORT_SYMBOL_GPL vmlinux 0x01d517b8 usb_ifnum_to_if EXPORT_SYMBOL_GPL vmlinux 0x01d58352 of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x01d7037a __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x01e04de5 sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e9c826 fs_kobj EXPORT_SYMBOL_GPL vmlinux 0x01ea42cf efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0x01fb3ed3 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x0200ac3f devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x01f1d41e int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0x02019788 pci_assign_unassigned_bridge_resources EXPORT_SYMBOL_GPL vmlinux 0x0207a018 devm_gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire EXPORT_SYMBOL_GPL vmlinux 0x020facb6 devfreq_event_set_event EXPORT_SYMBOL_GPL vmlinux 0x021360f2 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x0214cf97 shmem_read_mapping_page_gfp EXPORT_SYMBOL_GPL vmlinux 0x0219963f pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x021d5a56 trace_event_ignore_this_pid EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x0242ee7b fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x0263dea6 wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0x02646ad6 lp8788_update_bits EXPORT_SYMBOL_GPL vmlinux 0x02671296 fsl_mc_portal_reset -EXPORT_SYMBOL_GPL vmlinux 0x026992ef nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x0269bcf1 device_initialize EXPORT_SYMBOL_GPL vmlinux 0x026a916e dax_supported -EXPORT_SYMBOL_GPL vmlinux 0x0280a036 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x026c2818 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x027b2e6c ahci_kick_engine EXPORT_SYMBOL_GPL vmlinux 0x02857336 blkcg_activate_policy EXPORT_SYMBOL_GPL vmlinux 0x028b6e3a driver_find_device EXPORT_SYMBOL_GPL vmlinux 0x028ebe4a devm_devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0x029a412c pci_epc_multi_mem_init EXPORT_SYMBOL_GPL vmlinux 0x029dd9d5 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x02ae918c mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0x02c9375e ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x02a0e1ce __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x02badc69 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x02d45041 ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0x02d9d308 mtk_eint_find_irq -EXPORT_SYMBOL_GPL vmlinux 0x02e1e71a __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x02e5b576 __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0x02f19d48 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x02f6f8df xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x0303f52e icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0x03116e65 platform_get_irq EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x03218ea9 __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk EXPORT_SYMBOL_GPL vmlinux 0x033add0f usb_phy_set_event EXPORT_SYMBOL_GPL vmlinux 0x033db9c5 class_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0x033f18a3 wm831x_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034ad9ad i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x03588735 tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0x035dc360 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x036644c8 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x035dc82f crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x0365a8ad regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x036e2afd devm_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x03701a42 zynqmp_pm_pinctrl_set_function EXPORT_SYMBOL_GPL vmlinux 0x03757fd8 usb_get_status EXPORT_SYMBOL_GPL vmlinux 0x03773e96 ata_pci_sff_init_one EXPORT_SYMBOL_GPL vmlinux 0x03775e54 clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x0377e538 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x037c3f75 set_primary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x0382700c wm831x_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x038675a6 bpfilter_ops EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03981f7b sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x03a37928 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x03972176 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03a0d540 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x03a43409 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x03b293d9 vfs_setlease EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03c7b564 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x03c4046d __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03e9a21b file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x03db595d crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x03e8c3a9 gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0x03f07c57 device_attach EXPORT_SYMBOL_GPL vmlinux 0x03f7ace3 dev_pm_opp_of_add_table EXPORT_SYMBOL_GPL vmlinux 0x03fae19b __reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x04215376 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x0421b025 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x04101dc2 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x041059c8 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x0414bee7 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x04213235 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x04229bd2 i2c_adapter_depth EXPORT_SYMBOL_GPL vmlinux 0x042422a2 iomap_finish_ioends EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x0433cc44 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x043a44d8 crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x0446251f tty_buffer_lock_exclusive EXPORT_SYMBOL_GPL vmlinux 0x0447f529 serial8250_em485_destroy EXPORT_SYMBOL_GPL vmlinux 0x044fea1b dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x0461e9e5 put_device EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x0468f18e register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x0470f047 pci_epc_set_bar EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe EXPORT_SYMBOL_GPL vmlinux 0x04748430 meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x048969bd sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x0495a552 __traceiter_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x0498a6ce serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0x04993786 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x049ca57a sata_link_hardreset EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x04bfb19f devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x04c3d3e2 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x04bf42c2 platform_get_irq_byname_optional EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c4f7e1 kvm_vcpu_kick EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x05196b49 __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x051d5258 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x05214fba blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x05346944 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x05345c22 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x053f6ea2 dpbp_enable EXPORT_SYMBOL_GPL vmlinux 0x0541c58f pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x054667f0 ata_sas_port_stop EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x054e7a25 regulator_disable EXPORT_SYMBOL_GPL vmlinux 0x0557a44d pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x055dc335 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0558d427 ahci_start_engine EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll EXPORT_SYMBOL_GPL vmlinux 0x056d3ea3 clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x056f6221 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x05842df5 gpiod_set_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0x058bfc68 to_nd_blk_region EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x059a6839 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x05a41ab5 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x0591228d phy_driver_is_genphy EXPORT_SYMBOL_GPL vmlinux 0x05aa48ea sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x05bdffc7 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x05bfc193 clk_hw_set_parent EXPORT_SYMBOL_GPL vmlinux 0x05c69632 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x05c9f623 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x05d84340 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x05d90481 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x05f4d0ec ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0x06039473 mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x060b9b80 acpi_dev_get_first_consumer_dev EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x062d7db6 nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x063e9296 rpi_firmware_put +EXPORT_SYMBOL_GPL vmlinux 0x063f793f ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0x06413cf9 md_start -EXPORT_SYMBOL_GPL vmlinux 0x0649d5d2 devlink_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0x064d234f iomap_dio_rw EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry EXPORT_SYMBOL_GPL vmlinux 0x064f00c7 usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x065d9989 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x065eb674 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x066b54c4 security_path_chmod EXPORT_SYMBOL_GPL vmlinux 0x066c95b9 ahci_platform_enable_regulators EXPORT_SYMBOL_GPL vmlinux 0x06707038 dma_buf_dynamic_attach -EXPORT_SYMBOL_GPL vmlinux 0x06733991 ata_pio_need_iordy EXPORT_SYMBOL_GPL vmlinux 0x0675f04c __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0x06899498 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x0691649c skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0x06a20d82 fuse_dax_cancel_work EXPORT_SYMBOL_GPL vmlinux 0x06a36e86 acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0x06b78958 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x06aff32e devm_phy_package_join EXPORT_SYMBOL_GPL vmlinux 0x06c5de26 devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06cd4ade tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x06cd3516 cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x06dfe818 of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x06e34ff7 inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x070bc1a1 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x071d26f0 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x071d82a8 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x0721b227 udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax EXPORT_SYMBOL_GPL vmlinux 0x0729887a led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x07357746 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x072a8b88 __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x073ddad5 devm_gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x0740bfdd iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0746aa91 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x0747de6e devm_of_icc_get EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x074a29c0 ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field EXPORT_SYMBOL_GPL vmlinux 0x075bec9b fsl_mc_device_remove EXPORT_SYMBOL_GPL vmlinux 0x075c47d5 rio_release_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0x075ea70c dax_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x076cc672 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x07727ce2 gpiochip_line_is_persistent EXPORT_SYMBOL_GPL vmlinux 0x0783b658 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x0783c543 cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0x0787a0b0 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x07a08f54 crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0x07a4d8f3 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07a98aa1 device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0x07ae5a3a ata_bmdma_post_internal_cmd EXPORT_SYMBOL_GPL vmlinux 0x07b0cbb6 battery_hook_unregister EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b4a822 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07ba28e1 skb_gso_validate_network_len EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue EXPORT_SYMBOL_GPL vmlinux 0x07c22810 fsnotify_alloc_group EXPORT_SYMBOL_GPL vmlinux 0x07ca50d8 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x07cbba0a fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0x07ccf35c fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0x07cda7b6 device_dma_supported EXPORT_SYMBOL_GPL vmlinux 0x07d56924 dev_pm_genpd_suspend EXPORT_SYMBOL_GPL vmlinux 0x07dc75bf devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x07ee41d2 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07eca541 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x07efb70b vfs_removexattr EXPORT_SYMBOL_GPL vmlinux 0x07f4acfc debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x07fd466d dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0x07fe3288 usb_set_configuration EXPORT_SYMBOL_GPL vmlinux 0x07fef07e copy_user_highpage -EXPORT_SYMBOL_GPL vmlinux 0x08010b39 crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0x080fbd94 mtk_pinconf_bias_set_combo EXPORT_SYMBOL_GPL vmlinux 0x0810d9dd usb_deregister_dev EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x081e0a6d cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x08358951 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x082d2e80 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x08305573 wb_writeout_inc EXPORT_SYMBOL_GPL vmlinux 0x08400f7a wp_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x0846d986 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x084649c9 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes EXPORT_SYMBOL_GPL vmlinux 0x085bffd1 trace_seq_bitmask EXPORT_SYMBOL_GPL vmlinux 0x085c0a73 edac_device_handle_ce_count EXPORT_SYMBOL_GPL vmlinux 0x086272e5 dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x08690423 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x086f5911 ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match EXPORT_SYMBOL_GPL vmlinux 0x0887c951 memunmap_pages EXPORT_SYMBOL_GPL vmlinux 0x08aafe88 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x08bcce53 bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08c9c031 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x08e01d4f crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x08c8ee3b ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x08f128d7 crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0x08ff8ff4 regulator_set_active_discharge_regmap EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x0908b105 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x091779c5 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x0918ec32 pid_vnr EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x092300f9 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x092c4ce8 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x09316689 perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x093c96f5 crypto_stats_ahash_update EXPORT_SYMBOL_GPL vmlinux 0x093d0f2e uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x09424ab2 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x095f381b vcpu_load EXPORT_SYMBOL_GPL vmlinux 0x0974b8d8 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x09855c57 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0x0995dc9c device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x099e787f crypto_get_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09bdae7f unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x09d28538 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x09c72cdb __put_net EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x09dbe748 acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x09e56ecc fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0x09efc8c7 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x09f2869b devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x09f5b914 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x09fb44ba unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0a115db2 kvm_vcpu_write_guest EXPORT_SYMBOL_GPL vmlinux 0x0a22a95b vga_default_device EXPORT_SYMBOL_GPL vmlinux 0x0a24d59f usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x0a2d8a1a clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0x0a36048c devm_gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x0a3bb099 __reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x0a3d3af0 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x0a3f7ff3 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x0a41ce93 crypto_dequeue_request EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x0a4a119e __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x0a47bb34 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x0a4a5684 device_property_present EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap EXPORT_SYMBOL_GPL vmlinux 0x0a53c87f pinctrl_remove_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x0a56e3e2 acpi_pm_set_device_wakeup EXPORT_SYMBOL_GPL vmlinux 0x0a57a666 bind_interdomain_evtchn_to_irq_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x0a61fcd7 alloc_dax EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a7aee46 eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x0a7d36e1 __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0x0a838066 pci_hp_deregister EXPORT_SYMBOL_GPL vmlinux 0x0a843ebb pinctrl_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x0a8d6466 kthread_func -EXPORT_SYMBOL_GPL vmlinux 0x0a955478 blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0x0a9c2961 bio_add_zone_append_page EXPORT_SYMBOL_GPL vmlinux 0x0aa3204c pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0ab2673c blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message EXPORT_SYMBOL_GPL vmlinux 0x0abf5cde irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x0ac8649e acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0x0aced6e7 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x0ad1c969 sdio_writeb_readb EXPORT_SYMBOL_GPL vmlinux 0x0adf4fb5 mtk_pinconf_bias_disable_get -EXPORT_SYMBOL_GPL vmlinux 0x0ae28a21 sfp_bus_add_upstream EXPORT_SYMBOL_GPL vmlinux 0x0aec2cbe of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0x0aedb3d7 stmpe_block_write EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x0af50310 switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct EXPORT_SYMBOL_GPL vmlinux 0x0b14205d acpi_dev_get_dma_resources EXPORT_SYMBOL_GPL vmlinux 0x0b183b70 fsl_mc_populate_irq_pool EXPORT_SYMBOL_GPL vmlinux 0x0b18c10d disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0x0b248d39 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x0b19569a ata_scsi_unlock_native_capacity EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b31f198 sched_trace_cfs_rq_path EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status EXPORT_SYMBOL_GPL vmlinux 0x0b4a1e8b d_exchange EXPORT_SYMBOL_GPL vmlinux 0x0b4dc4eb dm_path_uevent EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add EXPORT_SYMBOL_GPL vmlinux 0x0b5a55f5 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x0b6274c9 __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id -EXPORT_SYMBOL_GPL vmlinux 0x0b70da7e xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x0b730b7d of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x0b7ee76f tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x0b836ddc devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x0b869c13 inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x0b88f9de acpi_storage_d3 -EXPORT_SYMBOL_GPL vmlinux 0x0b9b2b69 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x0b9855af init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x0ba1c9d3 device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0x0baa4443 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x0baaa80d dev_pm_qos_expose_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x0bb8e5a4 mtk_pinconf_bias_get_combo -EXPORT_SYMBOL_GPL vmlinux 0x0bbb89e8 vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0x0bbd283c rdev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory EXPORT_SYMBOL_GPL vmlinux 0x0bc73e93 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x0bcc2887 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x0bccf190 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x0bd1f217 msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0c17cc crypto_register_algs EXPORT_SYMBOL_GPL vmlinux 0x0c14ffd9 fuse_conn_put EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x0c4f9a41 imx_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0x0c511dd2 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x0c5a5664 icc_provider_add EXPORT_SYMBOL_GPL vmlinux 0x0c5d2640 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x0c859e0f xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string EXPORT_SYMBOL_GPL vmlinux 0x0c914737 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x0c9881aa crypto_shash_setkey EXPORT_SYMBOL_GPL vmlinux 0x0c9e333f imx_pinconf_get_scu EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cc57b28 regulator_list_hardware_vsel EXPORT_SYMBOL_GPL vmlinux 0x0cca7813 rio_del_device EXPORT_SYMBOL_GPL vmlinux 0x0ccabe4c serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x0cccee11 platform_device_add_resources EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config EXPORT_SYMBOL_GPL vmlinux 0x0cd0f010 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cdccd8c sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed EXPORT_SYMBOL_GPL vmlinux 0x0ce6def5 meson8_pmx_ops -EXPORT_SYMBOL_GPL vmlinux 0x0ceac153 nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cf565bb device_link_remove EXPORT_SYMBOL_GPL vmlinux 0x0cf5694c fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0x0d0b5adf gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x0d00a116 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x0d0bfc13 devlink_param_publish EXPORT_SYMBOL_GPL vmlinux 0x0d1384ad iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x0d1dbca1 device_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x0d21baa0 ata_timing_compute EXPORT_SYMBOL_GPL vmlinux 0x0d29e23f tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x0d2bc23c clk_hw_round_rate EXPORT_SYMBOL_GPL vmlinux 0x0d30e380 usb_acpi_port_lpm_incapable -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 0x0d527f79 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x0d57a943 rdev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d78beaf crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0x0d7e3f48 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0d8859d7 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x0d6e5ed6 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x0d77d3ea crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0d809be9 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0d94c3fe ata_pci_device_suspend EXPORT_SYMBOL_GPL vmlinux 0x0d9808ea pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x0da27603 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x0da9e116 preempt_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x0dbb6352 ata_sff_port_intr EXPORT_SYMBOL_GPL vmlinux 0x0dbf1f19 k3_udma_glue_tx_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0x0dc4e118 evict_inodes EXPORT_SYMBOL_GPL vmlinux 0x0dc5b8e9 usb_get_maximum_speed EXPORT_SYMBOL_GPL vmlinux 0x0dca7b41 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x0dd5879c stmpe_disable EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order EXPORT_SYMBOL_GPL vmlinux 0x0de3e416 blk_mq_update_nr_hw_queues EXPORT_SYMBOL_GPL vmlinux 0x0df0fb29 driver_remove_file EXPORT_SYMBOL_GPL vmlinux 0x0df64300 led_classdev_notify_brightness_hw_changed EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e06b451 tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0e12266e gfn_to_pfn EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e1b90c2 ata_dev_next EXPORT_SYMBOL_GPL vmlinux 0x0e1d1b4c cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x0e206aee hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0e22c134 wakeup_source_unregister EXPORT_SYMBOL_GPL vmlinux 0x0e2a42b5 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x0e2a62c1 ata_host_init EXPORT_SYMBOL_GPL vmlinux 0x0e2fd0ea fsl_mc_allocate_irqs EXPORT_SYMBOL_GPL vmlinux 0x0e35e455 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x0e573130 kvm_write_guest_page EXPORT_SYMBOL_GPL vmlinux 0x0e5ade66 fb_deferred_io_open EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e5e034c set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0e609c12 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x0e66f79f mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x0e68087a blk_req_needs_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked EXPORT_SYMBOL_GPL vmlinux 0x0e7bf6c5 tegra_mc_write_emem_configuration @@ -20019,42 +20029,42 @@ EXPORT_SYMBOL_GPL vmlinux 0x0ea07a41 rio_route_clr_table EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x0ea9466b __auxiliary_device_add EXPORT_SYMBOL_GPL vmlinux 0x0eaaeae6 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x0eab79d8 ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ec46ef7 regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0x0ecf95ab xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x0ed20976 ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0x0ed7663f usb_hub_release_port EXPORT_SYMBOL_GPL vmlinux 0x0ee5191a devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x0eed32db cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x0eeeca99 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x0eefe62c __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0x0ef828df anon_transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x0efa02dd nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x0efab10a gpiod_to_irq EXPORT_SYMBOL_GPL vmlinux 0x0eff0ca1 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x0f0d36c2 mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x0f17cd31 rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f224f50 tcp_twsk_destructor EXPORT_SYMBOL_GPL vmlinux 0x0f3c6212 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x0f478fd1 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x0f51cb61 wakeup_source_destroy EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f8b26d5 sdio_claim_irq EXPORT_SYMBOL_GPL vmlinux 0x0f8bce10 __traceiter_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0x0f9f4554 rockchip_clk_register_plls EXPORT_SYMBOL_GPL vmlinux 0x0fa157f6 auxiliary_find_device EXPORT_SYMBOL_GPL vmlinux 0x0fa2bf8c usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x0fa58e45 ahci_platform_init_host EXPORT_SYMBOL_GPL vmlinux 0x0faf7520 of_prop_next_string EXPORT_SYMBOL_GPL vmlinux 0x0fb8dad2 devm_irq_setup_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align EXPORT_SYMBOL_GPL vmlinux 0x0fc68dec class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x0fc7383c tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0x0fcec26b edac_pci_handle_npe EXPORT_SYMBOL_GPL vmlinux 0x0fd0c1be __fscrypt_encrypt_symlink EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj EXPORT_SYMBOL_GPL vmlinux 0x0fd52e60 gnttab_page_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x0fd53df2 crypto_shash_finup EXPORT_SYMBOL_GPL vmlinux 0x0fd8d08f usb_hcd_giveback_urb EXPORT_SYMBOL_GPL vmlinux 0x0fd8d98f fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x0fda7a15 gpiochip_find EXPORT_SYMBOL_GPL vmlinux 0x0fdc4e08 genphy_c45_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x0feb3b11 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0fef6bb4 ata_dummy_port_ops EXPORT_SYMBOL_GPL vmlinux 0x0ff67e92 dma_buf_pin EXPORT_SYMBOL_GPL vmlinux 0x1001b256 fsl8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0x10042ca1 clk_regmap_divider_ro_ops @@ -20064,122 +20074,124 @@ EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on EXPORT_SYMBOL_GPL vmlinux 0x1021c47f rio_dev_get EXPORT_SYMBOL_GPL vmlinux 0x103c23c8 devm_hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0x103ed65f register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x10450ca6 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x1053ed21 crypto_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x1054fa41 fat_add_entries EXPORT_SYMBOL_GPL vmlinux 0x105d0252 rio_unregister_scan EXPORT_SYMBOL_GPL vmlinux 0x1067ae1e iomap_fiemap EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf EXPORT_SYMBOL_GPL vmlinux 0x108e001f mbox_send_message EXPORT_SYMBOL_GPL vmlinux 0x109e8d0a pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x10b98361 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x10c2b18e ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x10cfe21b pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x10db8771 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x10d344de wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x10ddd440 iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0x10def774 fwnode_create_software_node EXPORT_SYMBOL_GPL vmlinux 0x10e9de32 uart_handle_cts_change EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x110786cc crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x11124987 ata_qc_complete EXPORT_SYMBOL_GPL vmlinux 0x112c5cab tegra210_clk_emc_attach EXPORT_SYMBOL_GPL vmlinux 0x112e0d1a of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x1132ad56 lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0x113d3937 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x1145306a devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1153bf3c security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x1154c376 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x11676106 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x116938ab crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x116e59a0 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x115d7d03 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x115ddcd3 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x1174b99e __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x11780795 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x118bbfa8 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x118d84d3 xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x118f5968 devm_regulator_put EXPORT_SYMBOL_GPL vmlinux 0x11940e5b vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0x1198b00b is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0x1198c591 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x119b38b3 security_file_permission EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len EXPORT_SYMBOL_GPL vmlinux 0x11a71aec badblocks_show EXPORT_SYMBOL_GPL vmlinux 0x11aa3125 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x11c970bf of_clk_hw_simple_get EXPORT_SYMBOL_GPL vmlinux 0x11cd38eb usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x11d44cd8 lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init -EXPORT_SYMBOL_GPL vmlinux 0x11f2de8b kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x11e0ec25 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11f6a9f4 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x11fd0912 clk_hw_get_rate EXPORT_SYMBOL_GPL vmlinux 0x120b5186 usb_enable_intel_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier EXPORT_SYMBOL_GPL vmlinux 0x122048b0 tty_get_icount EXPORT_SYMBOL_GPL vmlinux 0x1226549e regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x122af085 cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header EXPORT_SYMBOL_GPL vmlinux 0x1241e552 pinctrl_find_gpio_range_from_pin EXPORT_SYMBOL_GPL vmlinux 0x125215c5 pci_device_group EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x12548edd sched_trace_rq_avg_dl EXPORT_SYMBOL_GPL vmlinux 0x125d511d dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x1261fbd4 regulator_get_error_flags EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x1290733c inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x128ec8be sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x12ab14bd rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x12943d04 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x129ae15b inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x12a3081e netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x12c17bbf led_sysfs_enable EXPORT_SYMBOL_GPL vmlinux 0x12c65dc8 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x12ccdb42 spi_finalize_current_transfer EXPORT_SYMBOL_GPL vmlinux 0x12e4cfb0 xenbus_dev_suspend EXPORT_SYMBOL_GPL vmlinux 0x12e56c5f handle_fasteoi_nmi EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12f37420 i2c_handle_smbus_host_notify EXPORT_SYMBOL_GPL vmlinux 0x12fbf891 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13170952 ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131b6705 noop_invalidatepage EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq EXPORT_SYMBOL_GPL vmlinux 0x13293b06 phy_check_downshift -EXPORT_SYMBOL_GPL vmlinux 0x133843a6 spi_write_then_read EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x133a58a3 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13400c5d get_device EXPORT_SYMBOL_GPL vmlinux 0x1345e975 dprc_get_obj -EXPORT_SYMBOL_GPL vmlinux 0x1359e41f __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x13598570 nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x135ea7d9 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x13608c59 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg EXPORT_SYMBOL_GPL vmlinux 0x136adddc trace_seq_vprintf EXPORT_SYMBOL_GPL vmlinux 0x137401ef fsnotify_find_mark EXPORT_SYMBOL_GPL vmlinux 0x1376de46 fsnotify_put_mark EXPORT_SYMBOL_GPL vmlinux 0x137a4309 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x137e0922 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x137b57a8 devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x138320e3 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x1383dcc3 of_pwm_xlate_with_flags EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled EXPORT_SYMBOL_GPL vmlinux 0x1396489d dpcon_open EXPORT_SYMBOL_GPL vmlinux 0x13a73e7c ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x13afaf37 scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0x13c38f3e reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x13c694cd find_extend_vma EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13dae137 __traceiter_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr -EXPORT_SYMBOL_GPL vmlinux 0x13dfb86b mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x13e30bd4 blk_rq_err_bytes EXPORT_SYMBOL_GPL vmlinux 0x13e8c4ee mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook EXPORT_SYMBOL_GPL vmlinux 0x140a13f6 ahci_shost_attrs -EXPORT_SYMBOL_GPL vmlinux 0x1416c526 of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x141fe7b2 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x142262e0 sdio_retune_hold_now EXPORT_SYMBOL_GPL vmlinux 0x14247f3d acpi_device_uevent_modalias EXPORT_SYMBOL_GPL vmlinux 0x142b16f7 __irq_set_handler EXPORT_SYMBOL_GPL vmlinux 0x143c69e2 disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0x143e07ed perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free EXPORT_SYMBOL_GPL vmlinux 0x145a6d41 regmap_mmio_attach_clk EXPORT_SYMBOL_GPL vmlinux 0x145bd646 pm_clk_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x1460af2b acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x1463e5d9 metadata_dst_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1475449d mmc_cmdq_disable EXPORT_SYMBOL_GPL vmlinux 0x147a66ec serial8250_rpm_put_tx EXPORT_SYMBOL_GPL vmlinux 0x147a8ae7 usb_alloc_coherent EXPORT_SYMBOL_GPL vmlinux 0x147cea7f clk_register_divider_table EXPORT_SYMBOL_GPL vmlinux 0x14894d0b of_remove_property EXPORT_SYMBOL_GPL vmlinux 0x148c3030 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x148ead53 regmap_read EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x1493c30b gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0x14bf8f1b tegra_mc_probe_device EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x14dcd841 unregister_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x14e4e325 devm_nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x14e678a9 dev_pm_genpd_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x14e6c2ab usb_disable_autosuspend @@ -20191,200 +20203,190 @@ EXPORT_SYMBOL_GPL vmlinux 0x15089bfa devm_request_pci_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x1509c131 request_firmware_direct EXPORT_SYMBOL_GPL vmlinux 0x150a8ef6 pinctrl_parse_index_with_args EXPORT_SYMBOL_GPL vmlinux 0x150cccbc acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x1511881c ata_sas_port_stop EXPORT_SYMBOL_GPL vmlinux 0x1522ef99 tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x1523805c fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x153624ec devm_hwspin_lock_unregister EXPORT_SYMBOL_GPL vmlinux 0x153697ce fsl_mc_bus_dpmcp_type EXPORT_SYMBOL_GPL vmlinux 0x1539067a mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put EXPORT_SYMBOL_GPL vmlinux 0x15514e92 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x1554e1c9 device_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x15633e14 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x156e61c1 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x157c2fb6 gpiod_is_active_low EXPORT_SYMBOL_GPL vmlinux 0x157eeac4 of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x15816d8a strp_init EXPORT_SYMBOL_GPL vmlinux 0x1583aa23 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x159bb882 unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0x159e39b4 nvdimm_to_bus EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks EXPORT_SYMBOL_GPL vmlinux 0x15b04b11 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x15b53729 phy_driver_is_genphy EXPORT_SYMBOL_GPL vmlinux 0x15b55d4f debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x15bcf348 device_store_int EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x15d6818e ti_sci_inta_msi_get_virq EXPORT_SYMBOL_GPL vmlinux 0x15e47425 usb_bulk_msg EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15eb0106 switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0x1601b7d6 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x1604252b ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0x1605f24e dev_pm_opp_get_max_clock_latency EXPORT_SYMBOL_GPL vmlinux 0x16107eaa devres_release EXPORT_SYMBOL_GPL vmlinux 0x16173917 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x161cf396 mnt_want_write_file EXPORT_SYMBOL_GPL vmlinux 0x162c1e88 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0x162da65d kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0x16320024 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x16378ea4 ping_rcv EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x164694f9 __fscrypt_prepare_readdir EXPORT_SYMBOL_GPL vmlinux 0x1648619c iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x165041b2 of_clk_add_provider EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed EXPORT_SYMBOL_GPL vmlinux 0x16696925 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x166e105c switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x1681330d device_link_del EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x168ac070 crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x169482bf gfn_to_pfn_memslot_atomic EXPORT_SYMBOL_GPL vmlinux 0x16accb64 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x16b55695 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x16b52bb6 zap_vma_ptes EXPORT_SYMBOL_GPL vmlinux 0x16b72183 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x16bff308 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x16c14a0b yield_to EXPORT_SYMBOL_GPL vmlinux 0x16c4928b watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x16ce9f63 regmap_fields_read EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16df834f locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16e08a32 regulator_allow_bypass EXPORT_SYMBOL_GPL vmlinux 0x16e099d1 blk_ksm_is_superset -EXPORT_SYMBOL_GPL vmlinux 0x16e978b0 scsi_mode_select EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x1703bf75 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x17040689 __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x170865df dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x16fa04df stmpe_block_read EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x17176dc4 transport_setup_device EXPORT_SYMBOL_GPL vmlinux 0x17222e9f dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x173418cd i2c_new_smbus_alert_device EXPORT_SYMBOL_GPL vmlinux 0x173cf72f serdev_device_get_tiocm EXPORT_SYMBOL_GPL vmlinux 0x173de8e1 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x173e1f00 crypto_register_acomp EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate EXPORT_SYMBOL_GPL vmlinux 0x17484cf7 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x174ab747 fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x175410a1 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0x1756294c lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x17550cec devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs EXPORT_SYMBOL_GPL vmlinux 0x175d7c05 led_get_default_pattern EXPORT_SYMBOL_GPL vmlinux 0x175f02f2 virtqueue_get_desc_addr EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub EXPORT_SYMBOL_GPL vmlinux 0x17626d8f phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0x177394cf mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version EXPORT_SYMBOL_GPL vmlinux 0x1781e5a8 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x17824790 devlink_reload_disable EXPORT_SYMBOL_GPL vmlinux 0x1788b539 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x178baced bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x17962407 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0x17996442 device_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x17a29b72 kgdb_register_io_module EXPORT_SYMBOL_GPL vmlinux 0x17b5ada8 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x17bc2913 __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x17d15f45 serial8250_do_get_mctrl EXPORT_SYMBOL_GPL vmlinux 0x17d56c34 umd_load_blob EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear EXPORT_SYMBOL_GPL vmlinux 0x17eb8db9 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x17ec0575 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x17fa1a7a perf_aux_output_skip EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize EXPORT_SYMBOL_GPL vmlinux 0x1802910e clk_regmap_mux_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x18088ad1 query_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x1815d0cf dev_pm_opp_set_regulators EXPORT_SYMBOL_GPL vmlinux 0x1817b294 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x18283244 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x182ab833 __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0x1834de5f dev_pm_opp_get_opp_table EXPORT_SYMBOL_GPL vmlinux 0x1839c823 nvdimm_kobj EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x184a0195 skb_partial_csum_set EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes EXPORT_SYMBOL_GPL vmlinux 0x1867ca0f pci_intx EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x18756050 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x1881e7bf ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x187a2644 gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0x18977540 led_init_default_state_get EXPORT_SYMBOL_GPL vmlinux 0x189db33f serial8250_em485_start_tx EXPORT_SYMBOL_GPL vmlinux 0x18a0b2d2 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x18a0bd31 ahci_do_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x18bc34ca dax_finish_sync_fault EXPORT_SYMBOL_GPL vmlinux 0x18bcd7b0 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x18c8789a posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0x18cf4031 adp5520_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale EXPORT_SYMBOL_GPL vmlinux 0x18eaf831 rt_mutex_lock EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x18fae2d0 xfrm_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x19032d6d trace_handle_return EXPORT_SYMBOL_GPL vmlinux 0x19071cb2 gnttab_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert +EXPORT_SYMBOL_GPL vmlinux 0x193c931e nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x194223b5 dm_accept_partial_bio EXPORT_SYMBOL_GPL vmlinux 0x19445d5c pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x1956133d gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x195a2995 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x195d95cc pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x195df514 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x195fc0bc is_swiotlb_active EXPORT_SYMBOL_GPL vmlinux 0x19612d5b devm_ti_sci_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x19616490 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x1967fd4c blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0x1978dabb device_set_node EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x1995b2f1 tegra_xusb_padctl_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0x19964368 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1990859b netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled EXPORT_SYMBOL_GPL vmlinux 0x19a39db6 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x19b57abc perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x19e05c5d acpi_device_fix_up_power EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x19f04f81 crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0x19f2385f uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x1a108340 register_trace_event EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a122232 crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string EXPORT_SYMBOL_GPL vmlinux 0x1a2084f1 debugfs_create_x16 EXPORT_SYMBOL_GPL vmlinux 0x1a2e7839 irq_chip_enable_parent EXPORT_SYMBOL_GPL vmlinux 0x1a2ed657 i2c_acpi_client_count EXPORT_SYMBOL_GPL vmlinux 0x1a3200d8 of_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0x1a3e3e1b udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x1a4c9cfa i2c_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie EXPORT_SYMBOL_GPL vmlinux 0x1a761c08 regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x1a774b58 dma_mmap_pages EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1a8839a9 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x1a90d960 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x1a88e966 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x1a93dc8b devm_hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0x1a9754cf sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x1aa509fe scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x1aa8148e ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x1aa83f7e ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x1aaf3a95 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x1ab1a5e8 fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0x1ab6bace ahci_platform_ops EXPORT_SYMBOL_GPL vmlinux 0x1abbfd9c irq_chip_mask_ack_parent EXPORT_SYMBOL_GPL vmlinux 0x1abc0dc7 fsl_mc_get_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x1ac97c8c regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x1ac062a7 dax_iomap_rw EXPORT_SYMBOL_GPL vmlinux 0x1acae73b devm_pm_opp_set_clkname EXPORT_SYMBOL_GPL vmlinux 0x1acb41c5 alloc_empty_file EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ade0246 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x1ae4224d bgmac_enet_remove EXPORT_SYMBOL_GPL vmlinux 0x1ae7a587 dev_pm_genpd_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1b1798a1 device_change_owner EXPORT_SYMBOL_GPL vmlinux 0x1b1d301c mtk_pinconf_drive_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x1b3fa07e crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x1b3c5528 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1b3f4d81 __traceiter_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask EXPORT_SYMBOL_GPL vmlinux 0x1b52470b extcon_sync EXPORT_SYMBOL_GPL vmlinux 0x1b6007e3 mbox_chan_txdone EXPORT_SYMBOL_GPL vmlinux 0x1b63c767 __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x1b686fe0 scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0x1b77aa8c regmap_raw_write_async EXPORT_SYMBOL_GPL vmlinux 0x1b7f1062 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x1b86d87a crypto_unregister_skcipher EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer EXPORT_SYMBOL_GPL vmlinux 0x1ba67562 dev_pm_opp_set_clkname EXPORT_SYMBOL_GPL vmlinux 0x1baa2d87 to_software_node -EXPORT_SYMBOL_GPL vmlinux 0x1bac527c crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0x1bad8469 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x1bb6583e perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity EXPORT_SYMBOL_GPL vmlinux 0x1bd265d8 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x1be7916f add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x1beca514 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x1bedfc17 __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1c178f6e __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x1c31bdee device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x1beeadb3 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x1c339109 ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0x1c33b2dc mtk_eint_do_resume EXPORT_SYMBOL_GPL vmlinux 0x1c453f36 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x1c47b8b6 hwmon_notify_event EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c596368 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x1c59952c iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase EXPORT_SYMBOL_GPL vmlinux 0x1c6de606 iommu_unmap @@ -20400,88 +20402,88 @@ EXPORT_SYMBOL_GPL vmlinux 0x1ca79d91 pcie_flr 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 0x1ce89a8a nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x1cdc7d6c device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x1ceca206 trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0x1cee9343 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x1d0276b5 fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0x1d14314a mddev_unlock EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d2b1f79 gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0x1d309823 devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x1d3bf723 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x1d430115 trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0x1d475279 open_related_ns EXPORT_SYMBOL_GPL vmlinux 0x1d4fd340 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x1d56392c stmpe_enable EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable EXPORT_SYMBOL_GPL vmlinux 0x1d704405 serial8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d8a9298 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x1d802a22 __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1d95c9b0 devlink_region_create EXPORT_SYMBOL_GPL vmlinux 0x1d9c1c7d pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x1d9d1acc ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x1daef2c6 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x1db2f47c i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0x1db8bcd1 rio_release_dma EXPORT_SYMBOL_GPL vmlinux 0x1dcefc84 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x1dd89d18 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x1ddcdcae ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0x1ddff084 ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x1de7a88c fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x1de9ed68 clk_hw_get_parent EXPORT_SYMBOL_GPL vmlinux 0x1df664f5 tty_ldisc_ref_wait EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1dfdbb7f pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release EXPORT_SYMBOL_GPL vmlinux 0x1e07929d tpm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0x1e0f14f0 fat_alloc_new_dir EXPORT_SYMBOL_GPL vmlinux 0x1e361d1a devm_gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x1e3855cc led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x1e4214e6 spi_setup EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e42b46f ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0x1e48f257 usb_hcd_resume_root_hub EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type EXPORT_SYMBOL_GPL vmlinux 0x1e50407f devm_clk_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1e64e823 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x1e6964f3 bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0x1e716449 umd_unload_blob EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op +EXPORT_SYMBOL_GPL vmlinux 0x1e8b77fb ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush 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 0x1eb0cbec tcp_twsk_destructor EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names EXPORT_SYMBOL_GPL vmlinux 0x1ed0b59c fuse_fill_super_common EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm EXPORT_SYMBOL_GPL vmlinux 0x1ed95318 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x1edae527 dev_pm_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x1ede8715 vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x1ef408b8 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x1ef0dc4a __spi_register_driver EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0x1f077812 usb_free_coherent EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f0ed2ef mark_page_dirty EXPORT_SYMBOL_GPL vmlinux 0x1f0fe4a5 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x1f129b8e switchdev_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid EXPORT_SYMBOL_GPL vmlinux 0x1f386f23 da9052_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit EXPORT_SYMBOL_GPL vmlinux 0x1f412571 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x1f42964e gpiochip_line_is_open_drain EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms EXPORT_SYMBOL_GPL vmlinux 0x1f4684dd input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x1f487abe __vfs_removexattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f5c08d4 __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x1f6f591f crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x1f7846ae tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x1f8227c0 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x1f725162 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x1f74a3a3 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x1f7869d2 sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f86e7e7 __mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x1f921037 dev_pm_opp_get_max_transition_latency EXPORT_SYMBOL_GPL vmlinux 0x1f96b9ad devm_get_free_pages EXPORT_SYMBOL_GPL vmlinux 0x1f99fa5d tty_save_termios EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable -EXPORT_SYMBOL_GPL vmlinux 0x1f9b76fd crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x1fa000fe kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x1fa094ca ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fa399a9 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x1fa83c94 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x1fb0c02b metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x1fb9063b devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0x1fc7f82e tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x1fcb0e07 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x1fda0fc3 spi_take_timestamp_pre EXPORT_SYMBOL_GPL vmlinux 0x1fdb2501 poll_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs EXPORT_SYMBOL_GPL vmlinux 0x1fee7136 trace_seq_putc @@ -20489,428 +20491,448 @@ EXPORT_SYMBOL_GPL vmlinux 0x1ff19406 led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x1ff9c27e acpi_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0x20035a84 phy_pm_runtime_get_sync EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x202c95f7 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x2014be7a driver_set_override EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x202dafd6 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x20411c1d __kernel_write EXPORT_SYMBOL_GPL vmlinux 0x204afcd2 vma_kernel_pagesize EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x205d802d cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x20778035 regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame EXPORT_SYMBOL_GPL vmlinux 0x20852ec1 tty_standard_install EXPORT_SYMBOL_GPL vmlinux 0x2092e277 pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find EXPORT_SYMBOL_GPL vmlinux 0x20998f6c serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x209b0522 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x20a92008 ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0x20c302bf cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x20c364b2 tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0x20c625f4 md_stop_writes EXPORT_SYMBOL_GPL vmlinux 0x20c8afb7 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x20ce6298 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x20d339f8 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0x20dec454 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x20e6fb93 regmap_get_raw_read_max EXPORT_SYMBOL_GPL vmlinux 0x20eea75d param_set_uint_minmax EXPORT_SYMBOL_GPL vmlinux 0x20f475e2 devm_acpi_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0x20fb1628 scsi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x20fc33f7 usb_reset_configuration EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource -EXPORT_SYMBOL_GPL vmlinux 0x21099648 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x20fcadd1 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x210caab6 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x2119569e kvm_clear_guest EXPORT_SYMBOL_GPL vmlinux 0x211e31d7 rockchip_register_softrst EXPORT_SYMBOL_GPL vmlinux 0x2122a0af usb_remove_hcd EXPORT_SYMBOL_GPL vmlinux 0x212962e9 bus_set_iommu EXPORT_SYMBOL_GPL vmlinux 0x2138bd83 power_supply_external_power_changed EXPORT_SYMBOL_GPL vmlinux 0x213b910a regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x21587a67 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x2156b2fb __traceiter_add_device_to_group 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 0x21779203 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x218ffaf2 ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0x2191715a mtk_mmsys_ddp_disconnect EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21a8d51a inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x21a6ba8b __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id EXPORT_SYMBOL_GPL vmlinux 0x21b17e5b do_unbind_con_driver EXPORT_SYMBOL_GPL vmlinux 0x21bc626f fat_getattr 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 0x21d1f539 sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x21d4599e hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x21e1d587 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x21d38c00 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x21e7b994 clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x21f187ba ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x21f89e7d scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x220567b9 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x22089ba9 pm_wakeup_ws_event EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x221fed90 sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0x22225898 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x22234ea3 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x22300ace wakeup_sources_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x224d3539 devlink_dpipe_headers_register EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x2267fb49 vfs_setxattr EXPORT_SYMBOL_GPL vmlinux 0x226a5e0a led_trigger_set EXPORT_SYMBOL_GPL vmlinux 0x22726985 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x2277b74a clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0x22810267 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x229524c1 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x229f2fb7 setfl -EXPORT_SYMBOL_GPL vmlinux 0x22a1c666 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x229e4df6 ehci_reset EXPORT_SYMBOL_GPL vmlinux 0x22a93a6e otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x22cc15d7 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x22d0e7c0 get_net_ns EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22e0a22d ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x22e2b489 ata_sff_pause EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x22f2c0cb sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness EXPORT_SYMBOL_GPL vmlinux 0x22fa7b77 __pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x2303bf09 device_create EXPORT_SYMBOL_GPL vmlinux 0x23068c3b fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x230fc3a9 kvm_vcpu_gfn_to_pfn_atomic EXPORT_SYMBOL_GPL vmlinux 0x23245d75 bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x233b8ce2 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x2334d2e4 devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x2350ae6b devlink_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0x23675589 _proc_mkdir EXPORT_SYMBOL_GPL vmlinux 0x236e0c66 xenbus_grant_ring EXPORT_SYMBOL_GPL vmlinux 0x237811c3 blkcg_policy_unregister EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23898427 __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x239480fe fsstack_copy_inode_size EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23993a55 inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x23994dff iomap_bmap EXPORT_SYMBOL_GPL vmlinux 0x239ca3c5 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x23b9bd87 __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x23bbf834 pci_bus_max_busnr EXPORT_SYMBOL_GPL vmlinux 0x23bc2241 dev_pm_opp_find_freq_ceil_by_volt -EXPORT_SYMBOL_GPL vmlinux 0x23cb306f pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0x23d4bc39 acpi_subsys_suspend EXPORT_SYMBOL_GPL vmlinux 0x23edea6e pm_generic_freeze_late EXPORT_SYMBOL_GPL vmlinux 0x23f54255 fuse_abort_conn EXPORT_SYMBOL_GPL vmlinux 0x23faa369 serial8250_init_port EXPORT_SYMBOL_GPL vmlinux 0x2417245b attribute_container_register EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x24240b0f ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0x242afb24 devm_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x2432945c device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x242f7c46 fixed_phy_change_carrier EXPORT_SYMBOL_GPL vmlinux 0x2438cbf3 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x2440caf9 wakeup_sources_walk_next EXPORT_SYMBOL_GPL vmlinux 0x2441be68 pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0x2445d987 phy_put EXPORT_SYMBOL_GPL vmlinux 0x24575d77 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x245f5b6d ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x24591e3d spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size EXPORT_SYMBOL_GPL vmlinux 0x246a325d nvdimm_bus_add_badrange EXPORT_SYMBOL_GPL vmlinux 0x246c3544 rio_mport_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0x24729f9d pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x2477c29e fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x247d0db1 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x247e1074 put_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x248a4106 dev_pm_qos_expose_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray EXPORT_SYMBOL_GPL vmlinux 0x249086f8 pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0x249aaad3 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x24923ffc wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x24945caf mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24ca11fb tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x24d79310 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x24d8ef31 dev_pm_qos_update_user_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x24f8c905 __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister EXPORT_SYMBOL_GPL vmlinux 0x250085c1 vp_modern_get_num_queues EXPORT_SYMBOL_GPL vmlinux 0x25009000 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2503c06a crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x2525853a __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x250e4255 sdio_set_host_pm_flags EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate EXPORT_SYMBOL_GPL vmlinux 0x253ae8b9 pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0x2541d65c dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x254e04e7 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x25593610 pinctrl_dev_get_name EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk EXPORT_SYMBOL_GPL vmlinux 0x2599686c edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x259e4771 strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x25a7a73d sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x25ba4145 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x25bac68f device_match_devt EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data EXPORT_SYMBOL_GPL vmlinux 0x25c0fb06 dev_pm_opp_attach_genpd EXPORT_SYMBOL_GPL vmlinux 0x25c4fbc0 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x25c8d134 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x25cb6ad5 of_css -EXPORT_SYMBOL_GPL vmlinux 0x25f8a1ad __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x25f9b186 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x25c8cc34 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x25d7a78b devlink_net EXPORT_SYMBOL_GPL vmlinux 0x2600118a init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x260d98dc device_create -EXPORT_SYMBOL_GPL vmlinux 0x261e1604 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x262572fe mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x26238be4 task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x263b4cc7 pci_iomap_wc EXPORT_SYMBOL_GPL vmlinux 0x263c577e edac_pci_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem EXPORT_SYMBOL_GPL vmlinux 0x264d1f14 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x265141a7 xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x2654560f __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x265aec8b regmap_get_val_endian EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x266407b7 sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x266df77a mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu EXPORT_SYMBOL_GPL vmlinux 0x2685c705 user_read EXPORT_SYMBOL_GPL vmlinux 0x2696fa1d pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x26982638 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x26a222b5 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x26a784c8 sprd_pinctrl_remove EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26bd8973 add_to_page_cache_lru EXPORT_SYMBOL_GPL vmlinux 0x26c0a3db pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x26c0a42a i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x26c0e4ed msg_zerocopy_alloc EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26d41f66 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x26cfb118 iterate_mounts EXPORT_SYMBOL_GPL vmlinux 0x26dc2c35 devm_of_phy_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x26e25bc4 rio_inb_pwrite_handler EXPORT_SYMBOL_GPL vmlinux 0x26e85ce4 pinctrl_add_gpio_ranges EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26f2afcc perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x26fcbd43 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x26ff29b6 gpiochip_line_is_irq EXPORT_SYMBOL_GPL vmlinux 0x2701953f mtk_mutex_add_comp EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x2706a614 devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0x2723aeab acpi_driver_match_device EXPORT_SYMBOL_GPL vmlinux 0x2725ab2a of_fdt_unflatten_tree EXPORT_SYMBOL_GPL vmlinux 0x27278a13 lp8788_read_byte EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit EXPORT_SYMBOL_GPL vmlinux 0x272f416b fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x27373ad4 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x27460569 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x274c25a9 usb_register_device_driver EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x276121d2 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x27691342 __iptunnel_pull_header EXPORT_SYMBOL_GPL vmlinux 0x276b9ee1 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x2773b559 platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked EXPORT_SYMBOL_GPL vmlinux 0x277c6ce0 fat_time_fat2unix EXPORT_SYMBOL_GPL vmlinux 0x2783d2c8 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x2785100c xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0x2788d756 screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x278a9e3e lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x27921a10 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x2795a33b __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x27a6532a regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x278e4bd0 thermal_zone_get_zone_by_name EXPORT_SYMBOL_GPL vmlinux 0x27b1fb21 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x27d4f5af gpiod_count EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x27dd7e24 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x27ef6023 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x27e9572b __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x27eee58d devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x27f45684 gpiochip_irq_domain_activate EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f9136e kvm_vcpu_gfn_to_hva EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages EXPORT_SYMBOL_GPL vmlinux 0x27fd4f87 gfn_to_hva_memslot EXPORT_SYMBOL_GPL vmlinux 0x2802a1a3 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x2807eb34 l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0x28159b6c rio_release_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf EXPORT_SYMBOL_GPL vmlinux 0x281c9b8a n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x281e4943 unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0x28246b7e meson_axg_pmx_ops -EXPORT_SYMBOL_GPL vmlinux 0x2825f8de inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x282f72ee crypto_shash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x283341bd relay_open -EXPORT_SYMBOL_GPL vmlinux 0x28439adc regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x283a6573 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x283c58c8 regulator_count_voltages EXPORT_SYMBOL_GPL vmlinux 0x285ec969 dm_start_time_ns_from_clone EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x286849c2 ata_pci_device_do_suspend EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x286e609f blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x2873af1b bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0x2880178c k3_udma_glue_rx_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ab1dc2 scsi_get_vpd_page 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 0x28b6a41e of_icc_get EXPORT_SYMBOL_GPL vmlinux 0x28bc9e27 rio_unmap_inb_region EXPORT_SYMBOL_GPL vmlinux 0x28c22491 scsi_dh_attached_handler_name EXPORT_SYMBOL_GPL vmlinux 0x28f26684 irq_set_affinity_hint EXPORT_SYMBOL_GPL vmlinux 0x28f3d0f1 regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2902c2a1 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x28f71166 ata_scsi_slave_config EXPORT_SYMBOL_GPL vmlinux 0x290686b9 bsg_job_put EXPORT_SYMBOL_GPL vmlinux 0x2914c3ed genphy_c45_read_mdix EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x291db878 scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0x2946a970 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x29471e54 clean_record_shared_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x296684a8 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x29a14306 __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x29e853b7 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x29da749f switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0x29dedff1 skcipher_walk_async EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async EXPORT_SYMBOL_GPL vmlinux 0x2a0f7cf8 ata_sff_drain_fifo EXPORT_SYMBOL_GPL vmlinux 0x2a14b2dc mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0x2a222ef2 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2a2e17d4 bgmac_alloc EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll -EXPORT_SYMBOL_GPL vmlinux 0x2a4d8977 task_cgroup_path EXPORT_SYMBOL_GPL vmlinux 0x2a558d6d meson_clk_cpu_dyndiv_ops EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a5faa30 ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2a6615f8 skb_segment EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x2a7a3333 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x2a804c10 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x2a7d499a mmc_crypto_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x2a8af55a acpi_ec_add_query_handler EXPORT_SYMBOL_GPL vmlinux 0x2a95bc3e class_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0x2aa1802a __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0x2aa2248a wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x2aa3dfdb __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2abe8af8 spi_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x2abeadeb clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x2adac969 ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider -EXPORT_SYMBOL_GPL vmlinux 0x2af24444 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x2af56ee6 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x2af83867 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2b0596d2 sdio_release_host EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2b085430 kvm_vcpu_gfn_to_pfn_atomic EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback EXPORT_SYMBOL_GPL vmlinux 0x2b124de2 iommu_attach_device EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b4d193d synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x2b483796 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x2b4f975d l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0x2b5bc220 vring_create_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init EXPORT_SYMBOL_GPL vmlinux 0x2b6fd419 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x2b948ccc mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x2b7e9987 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x2b820919 ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed EXPORT_SYMBOL_GPL vmlinux 0x2b96d712 pinctrl_select_default_state EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2ba79247 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x2bb90375 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x2b9a7840 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x2ba10e2a sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x2bae6958 scsi_internal_device_unblock_nowait EXPORT_SYMBOL_GPL vmlinux 0x2bbf1454 badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0x2bdca896 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0x2be622e1 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x2bc69f6f regmap_raw_write EXPORT_SYMBOL_GPL vmlinux 0x2bf1706e devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x2c092820 proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c26c032 phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0x2c28ea9d pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x2c2aedc4 gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap EXPORT_SYMBOL_GPL vmlinux 0x2c48a5d7 ohci_resume EXPORT_SYMBOL_GPL vmlinux 0x2c5afb75 pci_stop_and_remove_bus_device_locked EXPORT_SYMBOL_GPL vmlinux 0x2c5deb44 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x2c5ee6c6 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x2c5f12b7 spi_bus_unlock EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put EXPORT_SYMBOL_GPL vmlinux 0x2c698a7a fsl_mc_bus_dpio_type EXPORT_SYMBOL_GPL vmlinux 0x2c6cb181 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x2c715c6b kvm_init EXPORT_SYMBOL_GPL vmlinux 0x2c74d4be pci_ecam_create EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll EXPORT_SYMBOL_GPL vmlinux 0x2c82914f usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x2c82f1c1 task_cls_state EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get +EXPORT_SYMBOL_GPL vmlinux 0x2ca658d3 ahci_ops EXPORT_SYMBOL_GPL vmlinux 0x2cb09115 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x2cb5db74 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2cb92d69 fwnode_graph_get_remote_port_parent EXPORT_SYMBOL_GPL vmlinux 0x2cbecbfc sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x2cbfc051 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x2cbffafb meson_aoclkc_probe EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list EXPORT_SYMBOL_GPL vmlinux 0x2ccf2644 tpm_default_chip EXPORT_SYMBOL_GPL vmlinux 0x2cdd33d8 handle_untracked_irq EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2ce86762 spi_take_timestamp_post EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cf1b362 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x2cfe3597 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2d065017 kill_device EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init EXPORT_SYMBOL_GPL vmlinux 0x2d0d94a9 balloon_page_list_enqueue EXPORT_SYMBOL_GPL vmlinux 0x2d0e5639 devfreq_event_get_event EXPORT_SYMBOL_GPL vmlinux 0x2d0fc1e0 rio_mport_read_config_16 EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1f0cb5 ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d428f9c nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x2d541a6d fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x2d5d41e3 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x2d5e8f62 clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict EXPORT_SYMBOL_GPL vmlinux 0x2d623370 vchan_dma_desc_free_list EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x2d706963 kvm_is_visible_gfn EXPORT_SYMBOL_GPL vmlinux 0x2d787f1c find_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x2d846c74 of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x2d962a89 phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0x2d980f1f fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x2dae670d crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x2daefd53 ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg EXPORT_SYMBOL_GPL vmlinux 0x2db701d7 clk_register_mux_table EXPORT_SYMBOL_GPL vmlinux 0x2dc0966a nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x2dd5d4e8 ata_sas_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0x2dd61fea spi_mem_default_supports_op EXPORT_SYMBOL_GPL vmlinux 0x2dd6671d __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x2dd94400 pwm_put EXPORT_SYMBOL_GPL vmlinux 0x2ddc7de5 vchan_tx_submit EXPORT_SYMBOL_GPL vmlinux 0x2ddfe107 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x2de4903e sdio_memcpy_toio EXPORT_SYMBOL_GPL vmlinux 0x2df91e35 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x2dfbf106 xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e06e16a __fsnotify_inode_delete EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add EXPORT_SYMBOL_GPL vmlinux 0x2e1e5834 usb_enable_ltm EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e32eac5 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x2e44bef1 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x2e2fb8e6 __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x2e471f42 blk_mq_flush_busy_ctxs 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 0x2e7503f1 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0x2e7cfd40 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x2e7900af crypto_register_scomps EXPORT_SYMBOL_GPL vmlinux 0x2e7ff4bf tegra_bpmp_put EXPORT_SYMBOL_GPL vmlinux 0x2e84e3b8 spi_mem_dirmap_read EXPORT_SYMBOL_GPL vmlinux 0x2e987547 kobject_move EXPORT_SYMBOL_GPL vmlinux 0x2e9a6390 kobj_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x2eb46bd6 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x2eb97f70 __traceiter_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable EXPORT_SYMBOL_GPL vmlinux 0x2ec295ec store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x2ec4d97d page_cache_ra_unbounded EXPORT_SYMBOL_GPL vmlinux 0x2eca84e2 irq_domain_free_fwnode EXPORT_SYMBOL_GPL vmlinux 0x2ed8397d vp_modern_set_features EXPORT_SYMBOL_GPL vmlinux 0x2eddb0c7 pci_host_probe EXPORT_SYMBOL_GPL vmlinux 0x2ee325bd devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x2ee39fa2 spi_sync EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string EXPORT_SYMBOL_GPL vmlinux 0x2f112036 gpiod_export_link EXPORT_SYMBOL_GPL vmlinux 0x2f12819a sysfs_remove_group EXPORT_SYMBOL_GPL vmlinux 0x2f144ca6 unregister_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2f25c5fb crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x2f25e0c8 bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work EXPORT_SYMBOL_GPL vmlinux 0x2f43f685 pm_genpd_add_subdomain EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec EXPORT_SYMBOL_GPL vmlinux 0x2f53670e pci_user_write_config_word EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f87b797 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x2f80a080 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f8409de __traceiter_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc EXPORT_SYMBOL_GPL vmlinux 0x2fa168a9 devm_pm_opp_attach_genpd EXPORT_SYMBOL_GPL vmlinux 0x2fa7d311 irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj EXPORT_SYMBOL_GPL vmlinux 0x2fc3e306 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x2fcd82a4 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x2fea7fc9 ahci_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x2fedcd19 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x2feff83c xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x2ff56eda of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x2ff752ce aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0x300d5b74 iommu_uapi_cache_invalidate EXPORT_SYMBOL_GPL vmlinux 0x30118311 nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x3017fc7b pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x301a58f7 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x30198ef8 device_show_int EXPORT_SYMBOL_GPL vmlinux 0x3022a05e dev_pm_opp_detach_genpd EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting EXPORT_SYMBOL_GPL vmlinux 0x302ce86e acpi_subsys_suspend_late EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id -EXPORT_SYMBOL_GPL vmlinux 0x30555746 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x30601a3e platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x308f415a ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x30b101a3 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x30799bc4 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x30883fae akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x30885175 wbc_attach_and_unlock_inode EXPORT_SYMBOL_GPL vmlinux 0x30b5cb32 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x30ccc10a __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x30d2384b sfp_bus_add_upstream EXPORT_SYMBOL_GPL vmlinux 0x30d5747b srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x30d8932d unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0x30d8c6a3 xen_xenbus_fops EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30eff298 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x30f3c9a8 kvm_write_guest_cached EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x310213d4 fwnode_get_named_gpiod EXPORT_SYMBOL_GPL vmlinux 0x31036f53 pci_epc_map_addr EXPORT_SYMBOL_GPL vmlinux 0x310b9048 blk_mq_start_stopped_hw_queue EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler EXPORT_SYMBOL_GPL vmlinux 0x3114f013 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x3120b08a set_primary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312cc622 crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0x313574c8 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x3135b97a kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x313d107d ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single -EXPORT_SYMBOL_GPL vmlinux 0x313f6bfa i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x31490257 __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0x314e9a3b tpm_calc_ordinal_duration EXPORT_SYMBOL_GPL vmlinux 0x3157a4f4 mtk_pinconf_adv_pull_get EXPORT_SYMBOL_GPL vmlinux 0x31787d43 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x31820824 devlink_resources_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 0x318f503f pci_device_is_present @@ -20923,84 +20945,87 @@ EXPORT_SYMBOL_GPL vmlinux 0x31bab934 blk_mq_quiesce_queue_nowait EXPORT_SYMBOL_GPL vmlinux 0x31c1427e cpuidle_get_cpu_driver EXPORT_SYMBOL_GPL vmlinux 0x31c2e037 nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31d20187 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x31d4d30a kill_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x31df1472 pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x31e3a171 adp5520_set_bits EXPORT_SYMBOL_GPL vmlinux 0x31e58b0c pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x31e91fc3 dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode +EXPORT_SYMBOL_GPL vmlinux 0x31ecfece sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0x31ed49ec iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0x31fd1a2a ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x31fa3875 devlink_free EXPORT_SYMBOL_GPL vmlinux 0x3203ad9d bd_link_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x321e872a debugfs_create_x8 EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x3226a049 devlink_sb_register EXPORT_SYMBOL_GPL vmlinux 0x322be93a dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0x322e2b5e regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x32336475 skb_gso_validate_mac_len EXPORT_SYMBOL_GPL vmlinux 0x324e364d __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x32542525 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x3255d3bf ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x32702176 task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x32704d63 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x32725067 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x327409f4 bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x328a32ce shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0x328de3d4 of_property_read_variable_u8_array EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32b7c520 blk_trace_remove 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 0x32c83e8c device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x32d6eb27 regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x32de82ac acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x32e03da7 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x32e057f8 fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0x32e36ab3 dm_bio_get_target_bio_nr EXPORT_SYMBOL_GPL vmlinux 0x32e3d3b9 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x32f5bdcd peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x3300cd3f rockchip_clk_register_branches -EXPORT_SYMBOL_GPL vmlinux 0x33055c05 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x33135f9b ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x331b7842 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x333e5b95 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x33458a09 devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0x33742e2d extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0x33778ecd regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x338e4e42 of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0x33a5f8fd wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x33927204 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x33952fb6 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x339cb66b ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x33c128ff kvm_write_guest EXPORT_SYMBOL_GPL vmlinux 0x33cf4dbc ata_sff_hsm_move EXPORT_SYMBOL_GPL vmlinux 0x33daad8f auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x33de9e60 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x33fa4134 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x33e01e37 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x33f27e88 xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0x341269f9 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x3412eb97 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x341762d8 sock_diag_unregister_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x34266efe blk_execute_rq_nowait EXPORT_SYMBOL_GPL vmlinux 0x3429eea5 __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3436fd5a ping_get_port 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 0x345003fe ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x344ae06b rtc_read_alarm EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui EXPORT_SYMBOL_GPL vmlinux 0x3453ac42 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x34592843 ahci_pmp_retry_srst_ops EXPORT_SYMBOL_GPL vmlinux 0x345cb558 platform_bus_type EXPORT_SYMBOL_GPL vmlinux 0x34670638 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x346c91f4 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3475f7ad bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x34686baa hrtimer_init_sleeper EXPORT_SYMBOL_GPL vmlinux 0x347f6cf2 pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x348d22ca filemap_range_needs_writeback -EXPORT_SYMBOL_GPL vmlinux 0x348d2bdd sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x3481557a device_add +EXPORT_SYMBOL_GPL vmlinux 0x34910bc5 br_fdb_test_addr_hook EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x34ab5e33 fsverity_verify_page EXPORT_SYMBOL_GPL vmlinux 0x34b96835 mtk_pinconf_drive_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x34bf27cb wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x34dd9ae7 crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34ebf660 switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x34f2284f of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x34f3d654 page_cache_ra_unbounded EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x35050bbb aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0x35088877 dev_pm_domain_attach_by_name EXPORT_SYMBOL_GPL vmlinux 0x350b8649 securityfs_create_file EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait EXPORT_SYMBOL_GPL vmlinux 0x35103684 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x351656ff devm_regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x3519ea2b fscrypt_symlink_getattr EXPORT_SYMBOL_GPL vmlinux 0x3523b466 pci_find_next_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x35244891 devm_mbox_controller_register @@ -21009,27 +21034,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x35286683 devm_clk_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current EXPORT_SYMBOL_GPL vmlinux 0x352b9d4f serdev_controller_remove EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x35442f57 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x354852d2 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x3549350c clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x354a6141 crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0x354c7309 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x3552f6dd raw_unhash_sk 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 0x3569b2a7 of_property_read_variable_u16_array EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x3598c578 kvm_vcpu_yield_to EXPORT_SYMBOL_GPL vmlinux 0x359a0c51 serdev_device_remove EXPORT_SYMBOL_GPL vmlinux 0x359e2dbd rio_unlock_device EXPORT_SYMBOL_GPL vmlinux 0x35a1c768 tty_ldisc_receive_buf EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider EXPORT_SYMBOL_GPL vmlinux 0x35a8ec95 user_describe EXPORT_SYMBOL_GPL vmlinux 0x35b26587 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x35b2ede3 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x35b9f61d skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0x35c5cd59 imx_pinctrl_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x35c96cb0 get_net_ns EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35d56a80 device_find_child EXPORT_SYMBOL_GPL vmlinux 0x35eb7a2a dbs_update EXPORT_SYMBOL_GPL vmlinux 0x35ee88a9 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x35f29355 fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0x35f4fa16 generic_fh_to_parent EXPORT_SYMBOL_GPL vmlinux 0x36063f2c edac_pci_release_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier @@ -21037,25 +21065,26 @@ EXPORT_SYMBOL_GPL vmlinux 0x360a27af blkg_lookup_slowpath EXPORT_SYMBOL_GPL vmlinux 0x360b246f fscrypt_d_revalidate EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process EXPORT_SYMBOL_GPL vmlinux 0x363fcd0f mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x36401380 __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0x36459742 i2c_dw_acpi_configure -EXPORT_SYMBOL_GPL vmlinux 0x364d3b18 nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0x36521c04 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x3657fed7 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 0x366362ec crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x36651186 platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0x366b8c58 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x36803507 gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0x3688c50b transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x368ecec3 devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x36925221 mbox_flush EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36ab654a fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x36afc516 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x36c23e0b of_clk_src_simple_get EXPORT_SYMBOL_GPL vmlinux 0x36e08b6d serial8250_do_set_divisor EXPORT_SYMBOL_GPL vmlinux 0x36ebea3f dmaengine_desc_get_metadata_ptr EXPORT_SYMBOL_GPL vmlinux 0x36ef99a2 srcu_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x36f954eb clk_regmap_mux_ops EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x37178634 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x3718f55d crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x371e4e4b kvm_read_guest_cached EXPORT_SYMBOL_GPL vmlinux 0x372ae525 ahci_platform_resume EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access EXPORT_SYMBOL_GPL vmlinux 0x37322aba usb_role_switch_find_by_fwnode @@ -21066,222 +21095,231 @@ EXPORT_SYMBOL_GPL vmlinux 0x3747a53c clkdev_hw_create EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript EXPORT_SYMBOL_GPL vmlinux 0x374d9295 sysfs_update_group EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x376e3cb4 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x376efc77 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x37677bd7 __traceiter_neigh_event_send_dead 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 0x377de2dd gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0x3789933f tegra_bpmp_transfer_atomic EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x37a5671c __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x37b496e3 rio_del_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37dfe705 tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x37cc7f45 fwnode_get_next_available_child_node EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup EXPORT_SYMBOL_GPL vmlinux 0x37e77de4 dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0x38004bc3 vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy EXPORT_SYMBOL_GPL vmlinux 0x38045af5 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x38112029 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x3817dd50 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x38182784 sfp_register_socket EXPORT_SYMBOL_GPL vmlinux 0x381b5333 bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x382b66d0 ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection EXPORT_SYMBOL_GPL vmlinux 0x38396eb3 of_cpufreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x3839d57f pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x383cae29 br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0x383d0482 lp8788_write_byte EXPORT_SYMBOL_GPL vmlinux 0x383dc8ff pci_walk_bus EXPORT_SYMBOL_GPL vmlinux 0x38400f86 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x384bb4fe lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0x38511af7 pci_user_read_config_byte EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x387285e3 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x3892c8fd kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x3895ce8a dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x3885643a gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x388773b5 crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count EXPORT_SYMBOL_GPL vmlinux 0x38a35145 dax_attribute_group EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table EXPORT_SYMBOL_GPL vmlinux 0x38aa2128 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x38c06f6f locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0x38c39a33 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x38c3f169 bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x38cb3e3a watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x38cc4388 kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x38d1acb2 perf_get_aux EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range EXPORT_SYMBOL_GPL vmlinux 0x38f3fb48 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x390ac553 scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x3910df29 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x390b7bcb gfn_to_hva EXPORT_SYMBOL_GPL vmlinux 0x39132bb8 device_add_software_node EXPORT_SYMBOL_GPL vmlinux 0x391a9e1e fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3927eb20 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x39288f79 udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x392f0803 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x394a108a fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x39349f24 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x393e72bf sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x397b2d9a gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3980e0ce sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0x3991ce19 cpuidle_register EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x39a0bf27 crypto_larval_kill EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39aaa92a perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x39b034f2 gpiochip_line_is_irq EXPORT_SYMBOL_GPL vmlinux 0x39b5d266 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x39c30489 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x39c00d04 regulator_set_load EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x39c5f847 led_trigger_unregister_simple EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39e3b346 trace_event_buffer_reserve EXPORT_SYMBOL_GPL vmlinux 0x39e88273 hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x39ede5f2 __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x39f8fd71 dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0x39faa646 __traceiter_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink EXPORT_SYMBOL_GPL vmlinux 0x3a138f99 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x3a18be53 sdio_disable_func EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a2deb9c devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x3a338b46 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x3a3c9a36 wm8350_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x3a41e49e transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x3a4df421 spi_take_timestamp_pre EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a51f4b4 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x3a528536 regmap_write EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked EXPORT_SYMBOL_GPL vmlinux 0x3a5bdcfe devm_regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x3a5e602e usb_of_get_device_node EXPORT_SYMBOL_GPL vmlinux 0x3a5ea143 regulator_map_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a791ff9 regmap_write_async EXPORT_SYMBOL_GPL vmlinux 0x3a8145fa vp_modern_queue_address EXPORT_SYMBOL_GPL vmlinux 0x3a8cac4f nvdimm_setup_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a8e09dc skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0x3a91f407 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x3a92b257 rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aa50129 sprd_pinctrl_remove -EXPORT_SYMBOL_GPL vmlinux 0x3aaaeaa0 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x3aa45a8a switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0x3aac202b ata_acpi_gtm_xfermask EXPORT_SYMBOL_GPL vmlinux 0x3aad35f0 dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x3abfebf9 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x3aaf50a8 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x3abeb55d addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad3e0a2 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x3acf9297 ata_sas_queuecmd EXPORT_SYMBOL_GPL vmlinux 0x3ad5c2a5 gnttab_pages_set_private EXPORT_SYMBOL_GPL vmlinux 0x3ad8c9a2 max8997_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x3adfb43d tpm_is_tpm2 EXPORT_SYMBOL_GPL vmlinux 0x3ae07e62 divider_recalc_rate EXPORT_SYMBOL_GPL vmlinux 0x3aee4192 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x3b034bdb skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x3b03de45 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x3b09490e security_path_link EXPORT_SYMBOL_GPL vmlinux 0x3b1877cd dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x3b36d5a1 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x3b1eb241 nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0x3b3acccc dev_pm_opp_get_max_volt_latency EXPORT_SYMBOL_GPL vmlinux 0x3b42f745 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x3b4874fb crypto_register_aead EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b57312a meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x3b4cb037 ahci_reset_em EXPORT_SYMBOL_GPL vmlinux 0x3b5dcf08 pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3b69c7d0 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x3b675e88 devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode EXPORT_SYMBOL_GPL vmlinux 0x3b84fa5f usb_alloc_streams EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref EXPORT_SYMBOL_GPL vmlinux 0x3b940c3a usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x3b9e2ad0 crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset EXPORT_SYMBOL_GPL vmlinux 0x3ba54d50 battery_hook_register -EXPORT_SYMBOL_GPL vmlinux 0x3babcaa5 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x3ba889f1 sdio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x3baf9017 qcom_smem_state_get EXPORT_SYMBOL_GPL vmlinux 0x3bc37128 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x3bc5441e msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x3bc7a2f2 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3bcac87d vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x3bea3615 device_create_file EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf55f76 ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0x3bf70d78 ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq -EXPORT_SYMBOL_GPL vmlinux 0x3c1c2d86 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x3c144823 fw_devlink_purge_absent_suppliers EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c35d21e devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x3c30a13e pm_wakeup_dev_event EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x3c3f1651 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0x3c46a9e4 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x3c4bea2f sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0x3c4f401d dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x3c509ed5 trace_event_buffer_reserve EXPORT_SYMBOL_GPL vmlinux 0x3c55f491 of_clk_set_defaults EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c7094e3 kvm_release_page_dirty EXPORT_SYMBOL_GPL vmlinux 0x3c7b1b9c devm_pm_runtime_enable EXPORT_SYMBOL_GPL vmlinux 0x3c82ec68 spi_mem_exec_op EXPORT_SYMBOL_GPL vmlinux 0x3c86dfd1 phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x3cab941e ping_close +EXPORT_SYMBOL_GPL vmlinux 0x3c8a87b0 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x3c93e8f7 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x3c9784e4 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x3ca1048e __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x3cb1c239 class_dev_iter_next EXPORT_SYMBOL_GPL vmlinux 0x3cc25bcd devm_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x3cc76c3c dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x3cccfbc7 spi_split_transfers_maxsize 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 0x3cd32118 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x3cda6365 device_dma_supported EXPORT_SYMBOL_GPL vmlinux 0x3cde21c8 dprc_setup EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3cfda64f inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x3cfdfc7e devm_i2c_add_adapter EXPORT_SYMBOL_GPL vmlinux 0x3d0cb369 governor_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x3d1cff20 __rio_local_read_config_16 EXPORT_SYMBOL_GPL vmlinux 0x3d21d5a6 meson_pmx_get_func_name -EXPORT_SYMBOL_GPL vmlinux 0x3d3684a5 regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end EXPORT_SYMBOL_GPL vmlinux 0x3d421ac9 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x3d4e3c30 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x3d4ee71b inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0x3d4f9195 pinctrl_generic_add_group EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check EXPORT_SYMBOL_GPL vmlinux 0x3d577907 pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0x3d60692a rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0x3d60e44a usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x3d60ee86 stmpe_set_altfunc EXPORT_SYMBOL_GPL vmlinux 0x3d610b7e pci_epc_clear_bar EXPORT_SYMBOL_GPL vmlinux 0x3d770be2 power_supply_unregister EXPORT_SYMBOL_GPL vmlinux 0x3d7bfef2 tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x3d84cc37 sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3d85a68f device_show_ulong EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x3d8723a8 __clk_hw_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d9347be spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x3d937fce crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0x3d96c926 usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x3d9825ab dev_pm_qos_flags EXPORT_SYMBOL_GPL vmlinux 0x3da68463 ata_sff_prereset EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x3db9a28b cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0x3dbd9a1e devm_release_action EXPORT_SYMBOL_GPL vmlinux 0x3dbee21e ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x3dc263d1 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x3dcf0be9 fwnode_property_present EXPORT_SYMBOL_GPL vmlinux 0x3dd6df90 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3ddbfb8e crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0x3ddd9e9e usb_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final EXPORT_SYMBOL_GPL vmlinux 0x3df37360 fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global EXPORT_SYMBOL_GPL vmlinux 0x3e05bf58 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x3e135d1f device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x3e1d1fdf meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x3e220814 acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0x3e24b10f to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x3e25fc33 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3e26f538 strp_stop EXPORT_SYMBOL_GPL vmlinux 0x3e2c1289 iommu_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x3e31d920 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x3e45d211 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x3e4ba426 spi_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x3e5c829c ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3e5d2f0f blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0x3e5edd3f serial8250_read_char EXPORT_SYMBOL_GPL vmlinux 0x3e6d967b fscrypt_set_context EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e770e42 regulator_register EXPORT_SYMBOL_GPL vmlinux 0x3e7c0db5 ahci_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x3e7d7ff4 ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x3e7f8f38 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3e902bb1 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x3e91cf2c rtnl_af_unregister EXPORT_SYMBOL_GPL vmlinux 0x3e98ce55 dev_pm_domain_set EXPORT_SYMBOL_GPL vmlinux 0x3ea0b5d2 tpm_pcr_read EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup EXPORT_SYMBOL_GPL vmlinux 0x3ea71073 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x3ea87c87 strp_init EXPORT_SYMBOL_GPL vmlinux 0x3eaab4ec tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0x3eae54e9 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0x3eb6098b shake_page EXPORT_SYMBOL_GPL vmlinux 0x3ec893af of_detach_node EXPORT_SYMBOL_GPL vmlinux 0x3ecbce4e find_iova -EXPORT_SYMBOL_GPL vmlinux 0x3ecc5362 synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0x3edacb46 pm_runtime_no_callbacks EXPORT_SYMBOL_GPL vmlinux 0x3ee21f7b sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x3ee5befd ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f15aeb7 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x3f2668cd devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3f360544 sched_trace_cfs_rq_path EXPORT_SYMBOL_GPL vmlinux 0x3f47eb47 blk_mq_freeze_queue_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset EXPORT_SYMBOL_GPL vmlinux 0x3f5de158 is_dock_device @@ -21291,67 +21329,66 @@ EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put EXPORT_SYMBOL_GPL vmlinux 0x3f9fe998 dmaengine_desc_set_metadata_len EXPORT_SYMBOL_GPL vmlinux 0x3fa3afdf usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x3fa5f868 gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index EXPORT_SYMBOL_GPL vmlinux 0x3fbb1d1e genpd_dev_pm_attach EXPORT_SYMBOL_GPL vmlinux 0x3fbc3a41 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0x3fc48bac ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x3fc14178 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3fc47d4b security_inode_permission EXPORT_SYMBOL_GPL vmlinux 0x3fcece9d mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x3fd0a405 sdio_retune_hold_now EXPORT_SYMBOL_GPL vmlinux 0x3fdd4361 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x3fdee2a5 gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x3fe97d9e do_truncate EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x3fef496c unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3fec773e iptunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x3ff5cdec pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x3ffd4419 dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release EXPORT_SYMBOL_GPL vmlinux 0x40171147 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x40175f3d mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x4020a7df skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x4021831c akcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups EXPORT_SYMBOL_GPL vmlinux 0x4027844d md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x402e15fc wm8350_clear_bits EXPORT_SYMBOL_GPL vmlinux 0x402e834f thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x40322e52 netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x404c93a3 mptcp_pm_get_subflows_max 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 0x40784b19 usb_disable_ltm EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x407f2b57 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x408262fe ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x407d62eb fib6_new_table EXPORT_SYMBOL_GPL vmlinux 0x40934ef6 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x40944326 crypto_stats_akcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free EXPORT_SYMBOL_GPL vmlinux 0x40a7bd78 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x40a81a6c __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x40b8534d serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x40c33eee vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x40c34a45 i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0x40c6a8b5 balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0x40c9c2e8 dw_pcie_ep_linkup EXPORT_SYMBOL_GPL vmlinux 0x40d349b6 sbitmap_queue_resize EXPORT_SYMBOL_GPL vmlinux 0x40dd74de fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0x40e0ba52 ftrace_set_notrace EXPORT_SYMBOL_GPL vmlinux 0x40e0f624 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x40e10aec inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x40e956af driver_find +EXPORT_SYMBOL_GPL vmlinux 0x40ec7267 kvm_unmap_gfn EXPORT_SYMBOL_GPL vmlinux 0x40f027dc dev_pm_opp_of_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f247c9 i2c_for_each_dev 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 0x410323b0 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x410340ff device_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0x41160b6a clk_fractional_divider_ops EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings EXPORT_SYMBOL_GPL vmlinux 0x4153fc6a debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x415bf2bc crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x4161d5dc posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x415de3c1 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x41679bee switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x416a9fc2 cgroup_attach_task_all EXPORT_SYMBOL_GPL vmlinux 0x417292c4 __devm_pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x41762da1 debugfs_attr_write_signed @@ -21359,77 +21396,76 @@ EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval EXPORT_SYMBOL_GPL vmlinux 0x4183ad92 gpiod_unexport EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer EXPORT_SYMBOL_GPL vmlinux 0x418ac911 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x4199b6ba sched_trace_cfs_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop EXPORT_SYMBOL_GPL vmlinux 0x41b40c35 badblocks_clear EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier EXPORT_SYMBOL_GPL vmlinux 0x41c877e2 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x41cbe0b5 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x41d118bc bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x41d15de0 elv_register EXPORT_SYMBOL_GPL vmlinux 0x41d4948b uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0x41dcd971 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x41debc3a ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0x41dfba4c tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x41e4b5da devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x41e82b70 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x41eab863 ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41f12eb0 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x41f2f179 gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0x41f5aa1b __blk_req_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0x41faf6b4 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x41fdd3f6 regmap_raw_write_async EXPORT_SYMBOL_GPL vmlinux 0x42013015 usb_match_id EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x42044fcd platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x420c1d9d mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0x420d1008 register_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x42133a54 dev_pm_opp_of_add_table_noclk EXPORT_SYMBOL_GPL vmlinux 0x42211e31 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x425646ae housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x42578d8c crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x42237d0e ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x42519204 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x425289a0 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x425950c5 i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0x425b14d5 irq_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0x425ca6a6 md_allow_write EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn -EXPORT_SYMBOL_GPL vmlinux 0x426736da nf_checksum EXPORT_SYMBOL_GPL vmlinux 0x426e4ea6 pm_runtime_get_if_active EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42873f2e bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0x4287d0df net_selftest EXPORT_SYMBOL_GPL vmlinux 0x428bfa03 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x429324ef skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x42a45c63 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x428c8b50 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x429b5098 spi_async EXPORT_SYMBOL_GPL vmlinux 0x42a9ed6f device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0x42c1d0ec shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x42c1e4c4 kvm_irq_has_notifier EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42fcdea2 ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0x42fed5fa dev_pm_set_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x430fc89c fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x430ebb08 netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0x431e15a2 blk_mq_sched_try_merge EXPORT_SYMBOL_GPL vmlinux 0x43206baa cpufreq_generic_attr EXPORT_SYMBOL_GPL vmlinux 0x433149f6 dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0x4332a8eb devm_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x434ec764 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x4338c4a5 spi_sync_locked EXPORT_SYMBOL_GPL vmlinux 0x434f7ad7 rockchip_clk_of_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x43505427 gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x43562304 validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0x43565f1c dm_copy_name_and_uuid EXPORT_SYMBOL_GPL vmlinux 0x435850ca devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x435a1dbf trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x4358cb7c cpufreq_cpu_put EXPORT_SYMBOL_GPL vmlinux 0x436043a9 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x43655b5e devm_of_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x43799c25 lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled EXPORT_SYMBOL_GPL vmlinux 0x43811478 irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0x438aab8e rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x4384d9dd tcp_get_info EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x43930ed8 gpiod_set_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x43a0cbf3 pci_dev_unlock EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x43ab42dd phy_init +EXPORT_SYMBOL_GPL vmlinux 0x43ba364d pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x43bbb389 regmap_field_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x43e03981 dm_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x43edfa6c watchdog_set_restart_priority EXPORT_SYMBOL_GPL vmlinux 0x43f04fa5 phy_get -EXPORT_SYMBOL_GPL vmlinux 0x43f128c1 put_pid EXPORT_SYMBOL_GPL vmlinux 0x43f30833 rio_mport_class EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate @@ -21441,112 +21477,116 @@ EXPORT_SYMBOL_GPL vmlinux 0x443021b6 iommu_setup_dma_ops EXPORT_SYMBOL_GPL vmlinux 0x44343008 bus_find_device EXPORT_SYMBOL_GPL vmlinux 0x443532dc pci_epf_add_vepf EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x443bffd8 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x443fe37b crypto_enqueue_request EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4452b510 replace_page_cache_page EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x446b4c08 bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0x44745216 iommu_attach_group EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op EXPORT_SYMBOL_GPL vmlinux 0x44adbce6 of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x44b52655 ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x44c8bc60 pci_dev_lock EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44d659fd devlink_rate_nodes_destroy EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats EXPORT_SYMBOL_GPL vmlinux 0x44e37472 irq_domain_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x44f1295d misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x44f5e3f7 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x44f8f267 sdio_retune_release EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen EXPORT_SYMBOL_GPL vmlinux 0x450d62bd bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0x450f16d9 ahci_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x451610f0 edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0x4517484c l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x451728ff alloc_page_buffers EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault EXPORT_SYMBOL_GPL vmlinux 0x4539a184 dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x453c2e94 gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x453cff53 set_capacity_and_notify EXPORT_SYMBOL_GPL vmlinux 0x453f6d8d ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x45426aea nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x454f839e ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x4553e89f ahci_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x4559dddd gpio_to_desc EXPORT_SYMBOL_GPL vmlinux 0x455ecfe0 iommu_unmap_fast EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x456d2b82 devlink_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list EXPORT_SYMBOL_GPL vmlinux 0x457cb659 fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0x458d6856 tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x459af746 __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0x459ce3f3 rio_mport_get_efb EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x45bc87c6 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x45b33869 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x45db2f95 devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0x45e8abae nd_blk_region_to_dimm EXPORT_SYMBOL_GPL vmlinux 0x45ee0f2f pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0x45fe2f8e iommu_sva_bind_device EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining EXPORT_SYMBOL_GPL vmlinux 0x4607a40f fsl_mc_bus_dprtc_type -EXPORT_SYMBOL_GPL vmlinux 0x460fafb5 ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x46182085 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x461fa096 of_clk_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x46308d81 msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0x46474c83 __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x4663c36d crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x467f3c3b device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x465415d3 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x4655a4fc ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x466254d8 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x46691751 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x467c8343 pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4689229a devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x469396db thermal_zone_get_zone_by_name EXPORT_SYMBOL_GPL vmlinux 0x46954f7e rio_mport_chk_dev_access EXPORT_SYMBOL_GPL vmlinux 0x469b3343 tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0x46a31660 debugfs_real_fops EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46a5ba24 strp_done EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46ca3dd7 crypto_stats_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x46d8af96 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x46e74b8b l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x46e8cf1f wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x46dc59fe devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x46ea0c56 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x46ea9c20 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put EXPORT_SYMBOL_GPL vmlinux 0x470491b9 mtk_pinconf_adv_drive_get -EXPORT_SYMBOL_GPL vmlinux 0x4714c40c usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x471aa957 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x471ede74 nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request EXPORT_SYMBOL_GPL vmlinux 0x47390d73 hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0x473a617e ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x474928a5 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x4749cfad nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x474a9a9b devlink_register EXPORT_SYMBOL_GPL vmlinux 0x475855a5 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x47601211 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x475bdf3b __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47641912 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x476a03ff perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x477243de devlink_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x47774cac ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4777e56b devm_device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0x47897d60 ata_acpi_stm EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x479ec40e wm8350_device_init EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy EXPORT_SYMBOL_GPL vmlinux 0x47b0a3b8 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x47c75745 fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0x47d0284a sysfs_create_link_nowarn EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47d46d61 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x47db33e1 scsi_host_complete_all_commands EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux EXPORT_SYMBOL_GPL vmlinux 0x47e4a95b ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x47fec33f metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x47f19277 gpiochip_enable_irq EXPORT_SYMBOL_GPL vmlinux 0x4802da23 sysfs_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind EXPORT_SYMBOL_GPL vmlinux 0x4804a6bb fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x4808fae8 raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0x481321b3 rio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm EXPORT_SYMBOL_GPL vmlinux 0x48284437 usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0x482856df phy_restore_page EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x4841b307 pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x4844834c do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x48559f21 crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0x485643f3 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x484d4ba2 __mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x486c5290 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x48648a4c mmc_regulator_disable_vqmmc EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x487b6e68 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x4879b508 kvm_vcpu_block EXPORT_SYMBOL_GPL vmlinux 0x487bd2ec vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0x488178f0 iomap_file_buffered_write EXPORT_SYMBOL_GPL vmlinux 0x488a9695 debugfs_create_file_unsafe @@ -21555,388 +21595,369 @@ EXPORT_SYMBOL_GPL vmlinux 0x48998bb6 gpiod_get_from_of_node EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get EXPORT_SYMBOL_GPL vmlinux 0x48ab4569 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x48ad54d8 is_current_mnt_ns EXPORT_SYMBOL_GPL vmlinux 0x48adbf6e rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0x48ae4088 icc_provider_del EXPORT_SYMBOL_GPL vmlinux 0x48b27902 ata_sff_queue_pio_task EXPORT_SYMBOL_GPL vmlinux 0x48b27e29 led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0x48b3bb29 regmap_attach_dev EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x48c48df2 devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x48cdcf39 device_show_int EXPORT_SYMBOL_GPL vmlinux 0x48d5eca2 clk_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0x48ee8d5b securityfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse EXPORT_SYMBOL_GPL vmlinux 0x48fde457 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x490a4a84 of_clk_src_onecell_get EXPORT_SYMBOL_GPL vmlinux 0x491875d8 virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x491f7e72 __mnt_is_readonly 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 0x495775c4 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x494ac014 crypto_grab_akcipher EXPORT_SYMBOL_GPL vmlinux 0x49580fdb extcon_find_edev_by_node EXPORT_SYMBOL_GPL vmlinux 0x49594e72 pinmux_generic_get_function_name EXPORT_SYMBOL_GPL vmlinux 0x4959b4b8 of_pci_parse_bus_range EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable EXPORT_SYMBOL_GPL vmlinux 0x4977ef9d of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x4982e17f clk_hw_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x498ed90f pci_dev_run_wake EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49ab802b __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0x49c9e8d7 get_cpu_device EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49d8cf6c perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49d6adb7 crypto_shoot_alg EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49eb9a70 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x49eeadbe thermal_zone_of_sensor_unregister EXPORT_SYMBOL_GPL vmlinux 0x49f29f90 devm_create_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x49f836c5 dev_attr_em_message_type EXPORT_SYMBOL_GPL vmlinux 0x4a003872 acpiphp_register_attention EXPORT_SYMBOL_GPL vmlinux 0x4a03aeb7 dmi_kobj EXPORT_SYMBOL_GPL vmlinux 0x4a058d27 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x4a07b3c5 ata_sas_sync_probe EXPORT_SYMBOL_GPL vmlinux 0x4a139ca7 irq_domain_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a1b2e33 spi_res_release EXPORT_SYMBOL_GPL vmlinux 0x4a1b462d xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x4a3056ee wait_on_page_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0x4a3b9644 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x4a1cd6ed sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x4a252006 handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0x4a3e010e pci_remove_root_bus EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a4227bf devm_platform_ioremap_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x4a4984c4 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x4a4d8c83 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4a534dc7 tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0x4a5d8589 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x4a5fcad7 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x4a63744a gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x4a6d1dba dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x4a7cb8f6 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x4a9ff6eb netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x4a78b0aa icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x4aaeb555 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4abdfe71 of_css EXPORT_SYMBOL_GPL vmlinux 0x4ac30fc3 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x4ace8199 gpiod_set_raw_value EXPORT_SYMBOL_GPL vmlinux 0x4ad203ad uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x4aef00dd regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x4af54956 perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0x4afe6996 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x4b107bfc ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x4b0cf22e sdio_claim_host EXPORT_SYMBOL_GPL vmlinux 0x4b119d41 nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0x4b17dbcb __clk_mux_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x4b1ec174 clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x4b35418d ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0x4b39352f iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0x4b4a3430 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4b4f0740 crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask EXPORT_SYMBOL_GPL vmlinux 0x4b586933 pstore_register EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x4b6e3ad4 nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0x4b70d849 bus_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x4b87e82d pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4b916fe1 icc_set_tag EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4b9bb7d4 ata_port_abort EXPORT_SYMBOL_GPL vmlinux 0x4bacb91f phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x4baf819c inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x4bb44537 scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4bf4654b dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x4bf68086 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x4c240a6c fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x4c26a80a posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x4c26b654 fwnode_handle_put EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x4c2ec3d8 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x4c453ccb cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x4c5308fe ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c590fd1 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4c606ecf ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x4c616cb1 icc_node_add EXPORT_SYMBOL_GPL vmlinux 0x4c634720 ata_sff_data_xfer32 EXPORT_SYMBOL_GPL vmlinux 0x4c65f01a tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0x4c6a8889 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x4c685a7e gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4c6b5143 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0x4c6e9ec4 thermal_remove_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x4c797f03 mtk_pinconf_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x4c82694e trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0x4c8a6799 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x4c7e0c81 icc_nodes_remove EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition EXPORT_SYMBOL_GPL vmlinux 0x4c95867a firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0x4ca2158e shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb549fa tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x4cb2d4f4 fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cb93113 bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0x4cbf7f3b serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4cc08e75 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x4cca1948 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x4cdfdd32 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x4ce14cdc fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0x4cee1633 generic_fsdax_supported EXPORT_SYMBOL_GPL vmlinux 0x4cf6b46a acpi_subsys_complete EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable EXPORT_SYMBOL_GPL vmlinux 0x4d06a562 usb_intf_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0x4d0b752f alloc_iova EXPORT_SYMBOL_GPL vmlinux 0x4d10ddb6 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x4d136abd mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0x4d161492 acpi_is_pnp_device EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev EXPORT_SYMBOL_GPL vmlinux 0x4d2596c2 dev_pm_opp_find_level_exact EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d4d0139 seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d4ea79f gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x4d54441e tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x4d586b1a devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x4d5f05d1 inet6_destroy_sock EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d76c8e7 cpufreq_driver_resolve_freq EXPORT_SYMBOL_GPL vmlinux 0x4d7a8ba2 iopf_queue_flush_dev -EXPORT_SYMBOL_GPL vmlinux 0x4d7d1a49 vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0x4d83651d acpi_processor_get_performance_info EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x4d84d614 device_add EXPORT_SYMBOL_GPL vmlinux 0x4d85dfca pstore_unregister EXPORT_SYMBOL_GPL vmlinux 0x4d89c288 dprc_reset_container EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark EXPORT_SYMBOL_GPL vmlinux 0x4d8d8bd2 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x4d8eb97c ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0x4d8eed7f amba_bustype -EXPORT_SYMBOL_GPL vmlinux 0x4d956784 ata_scsi_slave_destroy EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache EXPORT_SYMBOL_GPL vmlinux 0x4da145bf uprobe_unregister EXPORT_SYMBOL_GPL vmlinux 0x4da1f4a7 list_lru_del EXPORT_SYMBOL_GPL vmlinux 0x4da48125 md_rdev_clear EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4dca0ced register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x4dce85f5 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x4dd4fdac gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x4db90ba3 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x4dc9e46d gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4ddb0eec __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x4de0d63c modify_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string EXPORT_SYMBOL_GPL vmlinux 0x4deec03c __pm_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x4df075b9 of_reserved_mem_device_init_by_name EXPORT_SYMBOL_GPL vmlinux 0x4df63104 acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x4e155162 fwnode_property_present EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e18daa8 __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x4e210170 pm_generic_poweroff_noirq EXPORT_SYMBOL_GPL vmlinux 0x4e269040 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x4e2c621c i2c_match_id EXPORT_SYMBOL_GPL vmlinux 0x4e3efb25 of_usb_get_dr_mode_by_phy EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x4e545e08 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x4e5cdca9 dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0x4e61ba86 smpboot_register_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0x4e68545f relay_file_operations EXPORT_SYMBOL_GPL vmlinux 0x4e706e00 iommu_dev_disable_feature EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4e8f584a kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x4e971112 nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0x4ea70e52 clockevent_delta2ns EXPORT_SYMBOL_GPL vmlinux 0x4ea86ef4 class_compat_create_link EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x4eb4a1ff gpiochip_irq_unmap EXPORT_SYMBOL_GPL vmlinux 0x4ebe8c89 rio_lock_device EXPORT_SYMBOL_GPL vmlinux 0x4ecaefbe fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4eea35c8 gfn_to_pfn_prot EXPORT_SYMBOL_GPL vmlinux 0x4ef317d2 irq_domain_remove EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize EXPORT_SYMBOL_GPL vmlinux 0x4f0692af dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0x4f0919ac devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x4f0f6930 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x4f204459 __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update EXPORT_SYMBOL_GPL vmlinux 0x4f260ddd __class_register +EXPORT_SYMBOL_GPL vmlinux 0x4f283068 bgmac_enet_probe EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f380459 regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0x4f43e94c nvdimm_has_flush EXPORT_SYMBOL_GPL vmlinux 0x4f53da60 dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0x4f57f55c devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x4f68177e gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x4f57ac07 sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads EXPORT_SYMBOL_GPL vmlinux 0x4f6ddfe1 gov_attr_set_init EXPORT_SYMBOL_GPL vmlinux 0x4f722eb0 acpi_ec_remove_query_handler EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f7dced5 gpiod_set_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x4f7f3379 key_type_asymmetric EXPORT_SYMBOL_GPL vmlinux 0x4f967ff2 regulator_is_equal EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f99a617 of_icc_get EXPORT_SYMBOL_GPL vmlinux 0x4f9c7f24 rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0x4fa4eb4b device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x4fa110ff ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x4fa846ad __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x4fbc4b48 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x4fc9175a spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x4fc7da1f blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0x4fcf639a powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x4fdb2b8a device_store_bool EXPORT_SYMBOL_GPL vmlinux 0x4fdc3245 __of_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal EXPORT_SYMBOL_GPL vmlinux 0x4fe0f33e devm_kmalloc EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe322a9 fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x4fe8d222 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x4ffaa236 hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x4ffadda3 check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0x5003dd6b acpi_spi_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x5012d297 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x50101e53 bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi EXPORT_SYMBOL_GPL vmlinux 0x50338882 blk_ksm_register -EXPORT_SYMBOL_GPL vmlinux 0x50561fe7 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x505eabcb clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x5060cd0a regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5035ce32 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x5044bd88 perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0x506b7b43 dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x508bcd2d task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x50913f99 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x506e9b25 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x506faa74 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x5070aec9 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x5078fecc wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start EXPORT_SYMBOL_GPL vmlinux 0x5093b517 blk_ksm_init EXPORT_SYMBOL_GPL vmlinux 0x509da003 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x50bacc7a sdio_enable_func EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property EXPORT_SYMBOL_GPL vmlinux 0x50c3d757 i2c_slave_register EXPORT_SYMBOL_GPL vmlinux 0x50c9f21f ata_ncq_sdev_attrs EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fec041 inet6_sock_destruct EXPORT_SYMBOL_GPL vmlinux 0x510bb6e9 bus_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x510db461 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x512c4c50 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x511a6765 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x511a9b20 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x5129a8af bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0x513e7135 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x5143bc99 perf_event_create_kernel_counter EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x515b9f89 md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x516574fd timer_unstable_counter_workaround EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x51755814 sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0x517a152f sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0x51825623 ata_sff_freeze EXPORT_SYMBOL_GPL vmlinux 0x5183271c dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x5185c934 devlink_port_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn EXPORT_SYMBOL_GPL vmlinux 0x518935a9 spi_mem_supports_op EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0x51a3febd noop_backing_dev_info EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x51bd8f00 put_device +EXPORT_SYMBOL_GPL vmlinux 0x51be66ad kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51d26ee9 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x51d4962b kvm_read_guest_page EXPORT_SYMBOL_GPL vmlinux 0x51faed3c mctrl_gpio_init EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x52000c2c device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x520d8178 crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0x52171a46 dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0x5224ac72 console_drivers EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x522da49c eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0x5230a9dc fuse_send_init EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start EXPORT_SYMBOL_GPL vmlinux 0x524f768c blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x52543ea3 blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x5262a817 imx_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x52630157 fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0x5264d0f8 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x5260aece vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x52642384 inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x52879451 __bio_crypt_clone EXPORT_SYMBOL_GPL vmlinux 0x52a4871d split_page EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52bb3d6d unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x52c1a283 devm_device_add_group EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52cc21d9 sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x52cfd354 ata_link_online EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put EXPORT_SYMBOL_GPL vmlinux 0x52eb8756 tegra_bpmp_mrq_return -EXPORT_SYMBOL_GPL vmlinux 0x52f1b27d sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x52f7e22d ata_scsi_queuecmd EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get EXPORT_SYMBOL_GPL vmlinux 0x53261cd5 cpufreq_freq_attr_scaling_available_freqs EXPORT_SYMBOL_GPL vmlinux 0x532993ec devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x532a15c8 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x532a7b3c badblocks_init EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init EXPORT_SYMBOL_GPL vmlinux 0x5331208e devm_ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x533217d3 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x534062be sdev_evt_send_simple EXPORT_SYMBOL_GPL vmlinux 0x53494c6d meson8_aobus_parse_dt_extra EXPORT_SYMBOL_GPL vmlinux 0x534dce60 devm_led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0x535f5f6d dev_pm_opp_of_register_em EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x53870229 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x53740d8f tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x537b04b4 __trace_array_puts EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str EXPORT_SYMBOL_GPL vmlinux 0x538d5902 firmware_request_nowarn EXPORT_SYMBOL_GPL vmlinux 0x538ed63f __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x53909868 crypto_inst_setname EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x53aaa247 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x53ae030f bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x53aef69f dev_set_name EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x53d0baee of_find_spi_device_by_node EXPORT_SYMBOL_GPL vmlinux 0x53d13415 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x53d2731d __nf_ip6_route EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53e7045e spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x53d9d995 xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x53e73ac1 fsverity_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x53ece9d7 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x540d8839 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x5419f434 bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x541cf3b4 __traceiter_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x544439d6 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0x544729f6 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x5434b73f perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x543c0636 devlink_remote_reload_actions_performed EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table EXPORT_SYMBOL_GPL vmlinux 0x545a476b free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x545ea9e5 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x5460f79f work_on_cpu_safe_key EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x54685782 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x54813e96 lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x5485ba6f nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x5487c115 md_rdev_init EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54bbf281 find_get_pid EXPORT_SYMBOL_GPL vmlinux 0x54be80fa clk_hw_unregister_divider EXPORT_SYMBOL_GPL vmlinux 0x54c656aa i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x54d92d32 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0x54ebaee3 phy_pm_runtime_put_sync EXPORT_SYMBOL_GPL vmlinux 0x54f1fcbd __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x54f7fbcd crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x54f242c8 dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0x5502e657 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5509a323 ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string EXPORT_SYMBOL_GPL vmlinux 0x5513948a __phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0x5519fb7f acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x551cf371 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x551d6dac __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x551de6de iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x5527c5d6 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x552645c3 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x552740e0 skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput -EXPORT_SYMBOL_GPL vmlinux 0x55365535 __vfs_setxattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x55387233 irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x553969c7 of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5543075a perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x5544b7a7 kvm_gfn_to_hva_cache_init EXPORT_SYMBOL_GPL vmlinux 0x554a1c94 kernfs_put EXPORT_SYMBOL_GPL vmlinux 0x55589f8e serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0x555a022e xhci_ext_cap_init EXPORT_SYMBOL_GPL vmlinux 0x555cca67 class_unregister EXPORT_SYMBOL_GPL vmlinux 0x5561d3c4 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x5569625a regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x5571045a dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0x557d5c29 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x557de908 __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x55817593 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x558dfcd7 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x55a9a413 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x559d6369 gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x55aa7a3a devm_acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x55adaed9 crypto_register_skciphers EXPORT_SYMBOL_GPL vmlinux 0x55b7479a vp_modern_set_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node -EXPORT_SYMBOL_GPL vmlinux 0x55dba3c3 __traceiter_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x55e8f7c5 edac_pci_handle_pe EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f6513e sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0x56030541 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x55fc8d40 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x5602dc34 udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab EXPORT_SYMBOL_GPL vmlinux 0x5609bc10 fat_build_inode EXPORT_SYMBOL_GPL vmlinux 0x560e3ff5 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x56158714 devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x561edcad crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0x56219507 of_dma_request_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x562d2088 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x5626aafa ahci_handle_port_intr EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x563b0145 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x5637fb4f l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x56576bac clockevents_unbind_device EXPORT_SYMBOL_GPL vmlinux 0x565964f6 devm_kfree EXPORT_SYMBOL_GPL vmlinux 0x5672e0a6 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x5676af3a regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5682773c inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0x5683c332 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x56842ce8 devm_of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0x56932e1c handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x5698c951 __regmap_init EXPORT_SYMBOL_GPL vmlinux 0x56a479ed inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0x56aeb1d8 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x56b46167 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x56b5bbf2 acpi_create_platform_device EXPORT_SYMBOL_GPL vmlinux 0x56b71643 __rio_local_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0x56c1f541 ti_sci_inta_msi_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0x56d2de5a irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x56db7daf regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x56dc8c6b trace_output_call EXPORT_SYMBOL_GPL vmlinux 0x56e56ed1 tpm2_probe EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56eb9790 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x56fa4b94 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x56ec89c5 platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x56fcf83d clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x56fe6a88 regulator_set_voltage_time EXPORT_SYMBOL_GPL vmlinux 0x57173f87 simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0x571828fc tpm1_getcap EXPORT_SYMBOL_GPL vmlinux 0x571f20c6 iommu_sva_alloc_pasid @@ -21944,45 +21965,41 @@ EXPORT_SYMBOL_GPL vmlinux 0x5725d081 usb_acpi_power_manageable EXPORT_SYMBOL_GPL vmlinux 0x5727baa5 attribute_container_find_class_device EXPORT_SYMBOL_GPL vmlinux 0x572d0ae7 fsl_mc_resource_free EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x574031c1 vfs_submount EXPORT_SYMBOL_GPL vmlinux 0x5740b1fa fscrypt_prepare_new_inode EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x574a9b9f security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5746f35a spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x574e31f9 gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x57544de0 i2c_dw_configure_master EXPORT_SYMBOL_GPL vmlinux 0x57698b72 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x576e894c tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach -EXPORT_SYMBOL_GPL vmlinux 0x57819667 dax_writeback_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x578bec18 regulator_irq_helper 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 0x579fc038 ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0x579fe676 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x57b556d3 platform_get_resource EXPORT_SYMBOL_GPL vmlinux 0x57bd022c sysfs_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57db04d4 lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0x57dec00c devm_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x57e377fd pci_disable_rom EXPORT_SYMBOL_GPL vmlinux 0x57e44e85 pci_d3cold_enable EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57f8f642 fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0x57ff5527 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x58051b25 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x57ff6048 sock_map_close EXPORT_SYMBOL_GPL vmlinux 0x58057f54 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x58087a20 crypto_stats_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x58093631 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x580fa17d __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x58173449 stmpe811_adc_common_init -EXPORT_SYMBOL_GPL vmlinux 0x581aba56 wm8350_reg_write EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id EXPORT_SYMBOL_GPL vmlinux 0x5828cb05 blk_next_bio EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x584cbe4c ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x584faa5b pwm_put EXPORT_SYMBOL_GPL vmlinux 0x585e6831 _copy_from_iter_flushcache EXPORT_SYMBOL_GPL vmlinux 0x5861bf60 usb_get_role_switch_default_mode EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x5870f0b5 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x586e0e37 synth_event_add_next_val EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info EXPORT_SYMBOL_GPL vmlinux 0x5882ec75 iommu_report_device_fault EXPORT_SYMBOL_GPL vmlinux 0x5889edb6 __blk_req_zone_write_unlock @@ -21991,30 +22008,29 @@ EXPORT_SYMBOL_GPL vmlinux 0x589f5fb4 debugfs_attr_write EXPORT_SYMBOL_GPL vmlinux 0x58aad0f8 fb_bl_default_curve EXPORT_SYMBOL_GPL vmlinux 0x58b07190 dm_internal_suspend_fast EXPORT_SYMBOL_GPL vmlinux 0x58b1e38e efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x58b3e71b sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x58b9874e crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x58bea248 regulator_set_voltage_time EXPORT_SYMBOL_GPL vmlinux 0x58d8a2e3 iommu_map_atomic EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op -EXPORT_SYMBOL_GPL vmlinux 0x58e41f17 xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x58ec76b2 dm_get_md EXPORT_SYMBOL_GPL vmlinux 0x58f3e230 __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0x59017640 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x59175416 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x5920712b i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x591cb51f pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0x5928e4c1 blk_ksm_reprogram_all_keys EXPORT_SYMBOL_GPL vmlinux 0x592c7ab8 sysfs_update_groups EXPORT_SYMBOL_GPL vmlinux 0x593ec994 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x59436b52 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x59489be5 gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0x594c2224 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0x5970755f crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x5953048f devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x59843d8b psil_set_new_ep_config EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x59ac53a2 ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59c3676a nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59cb7048 kvm_is_visible_gfn EXPORT_SYMBOL_GPL vmlinux 0x59cb752c pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x59dd6ff4 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x59d1b773 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x59da74bd pwm_free EXPORT_SYMBOL_GPL vmlinux 0x59ded901 of_i2c_get_board_info EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm @@ -22022,32 +22038,33 @@ EXPORT_SYMBOL_GPL vmlinux 0x59f7a576 spi_mem_dtr_supports_op EXPORT_SYMBOL_GPL vmlinux 0x59fefded devfreq_event_disable_edev EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x5a13beb0 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x5a16c49b of_clk_get_parent_count EXPORT_SYMBOL_GPL vmlinux 0x5a1763cc devm_of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle EXPORT_SYMBOL_GPL vmlinux 0x5a29a331 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x5a2be703 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5a35d80d fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x5a3a759b register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del EXPORT_SYMBOL_GPL vmlinux 0x5a4c15e7 fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0x5a507e07 sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x5a5922e2 posix_acl_access_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0x5a640799 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5a6cb653 device_create_with_groups EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt EXPORT_SYMBOL_GPL vmlinux 0x5a73dec3 dma_buf_detach EXPORT_SYMBOL_GPL vmlinux 0x5a7a7b7a __fput_sync EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a7f1425 __synth_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x5a9a85ff iommu_domain_free EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5aafc622 icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner EXPORT_SYMBOL_GPL vmlinux 0x5abd5e9b inverse_translate EXPORT_SYMBOL_GPL vmlinux 0x5ac0d08a pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x5ac93bd4 sata_link_scr_lpm EXPORT_SYMBOL_GPL vmlinux 0x5acb1bda gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0x5acea1a4 crypto_stats_akcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x5aced8d1 regulator_get_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x5ae7bc9d ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x5af2165f dev_pm_opp_remove_all_dynamic EXPORT_SYMBOL_GPL vmlinux 0x5af299cd em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x5afe9e0a inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0x5b03e782 usb_hcd_pci_probe EXPORT_SYMBOL_GPL vmlinux 0x5b0500e5 xenbus_map_ring_valloc EXPORT_SYMBOL_GPL vmlinux 0x5b094e06 irq_gc_mask_set_bit @@ -22055,100 +22072,116 @@ EXPORT_SYMBOL_GPL vmlinux 0x5b1c9c1e pinctrl_generic_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek EXPORT_SYMBOL_GPL vmlinux 0x5b2b4740 edac_device_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x5b342e76 gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x5b4ce8aa __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x5b4d385c of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x5b4e00c5 l3mdev_ifindex_lookup_by_table_id EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b737e8c lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0x5b849db0 tty_ldisc_ref EXPORT_SYMBOL_GPL vmlinux 0x5b8dfa5f usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x5b9d2043 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x5ba31d7c ahci_save_initial_config EXPORT_SYMBOL_GPL vmlinux 0x5ba927df __pm_runtime_set_status EXPORT_SYMBOL_GPL vmlinux 0x5baf46e2 tty_perform_flush EXPORT_SYMBOL_GPL vmlinux 0x5bb68709 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x5bb95125 devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0x5bba6faa i2c_acpi_find_bus_speed EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bc61b03 perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5bcd6eb3 crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd08ad0 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x5bd39666 inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be32f8b wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x5bfb1569 mmc_regulator_enable_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x5bfb5a56 clk_hw_set_parent EXPORT_SYMBOL_GPL vmlinux 0x5c04a90c power_supply_class EXPORT_SYMBOL_GPL vmlinux 0x5c07cf26 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x5c0a7e05 skb_scrub_packet EXPORT_SYMBOL_GPL vmlinux 0x5c0b9ba9 pm_generic_thaw_noirq EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw +EXPORT_SYMBOL_GPL vmlinux 0x5c164f1b __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x5c1ac9aa crypto_stats_kpp_compute_shared_secret EXPORT_SYMBOL_GPL vmlinux 0x5c2a3343 dev_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0x5c2b7893 dev_pm_clear_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0x5c3617fc stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x5c380bb7 gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0x5c389c41 led_set_brightness EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event EXPORT_SYMBOL_GPL vmlinux 0x5c40aa0b iommu_aux_detach_device EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x5c608047 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x5c62d214 shmem_zero_setup EXPORT_SYMBOL_GPL vmlinux 0x5c660490 pci_ioremap_wc_bar EXPORT_SYMBOL_GPL vmlinux 0x5c6fbf65 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x5c7131cd __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x5c7e7d52 fb_deferred_io_cleanup EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5c927175 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0x5ca7e0f6 xenbus_switch_state EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple EXPORT_SYMBOL_GPL vmlinux 0x5cb52b0b usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x5cbac7ce perf_aux_output_skip EXPORT_SYMBOL_GPL vmlinux 0x5ccc1ac2 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x5cd1288a trace_array_put EXPORT_SYMBOL_GPL vmlinux 0x5cdae80f fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x5ce23df2 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5cec6a59 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x5cde86c1 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x5ce8bd0e crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5d13830d unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write EXPORT_SYMBOL_GPL vmlinux 0x5d183567 pcc_mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x5d21827b ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d312a78 cpufreq_driver_resolve_freq EXPORT_SYMBOL_GPL vmlinux 0x5d340d68 pcie_bus_configure_settings EXPORT_SYMBOL_GPL vmlinux 0x5d3eae63 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5d4b152f of_clk_hw_onecell_get EXPORT_SYMBOL_GPL vmlinux 0x5d6716e8 balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x5d69a8e8 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x5d80db54 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x5d672647 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x5d72b3e5 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x5d82397d sdio_writew EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc EXPORT_SYMBOL_GPL vmlinux 0x5d91e4cc pci_user_write_config_dword EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact EXPORT_SYMBOL_GPL vmlinux 0x5da725c1 cpci_hp_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0x5dc6febf pci_stop_root_bus EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push -EXPORT_SYMBOL_GPL vmlinux 0x5ded7387 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x5dfa9176 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x5dfa6e83 sdio_claim_irq EXPORT_SYMBOL_GPL vmlinux 0x5e01f722 acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x5e08b4bd sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x5e073f99 spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x5e08f02e rtnl_af_register EXPORT_SYMBOL_GPL vmlinux 0x5e0ca0ec fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x5e10f6d5 sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0x5e11f53d lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x5e0f2a89 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0x5e123af2 vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0x5e149fd4 udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e1a7581 device_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x5e2667e0 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x5e2702fb stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x5e320059 get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x5e37d8f3 page_mkclean EXPORT_SYMBOL_GPL vmlinux 0x5e412a90 pci_max_pasids EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e532935 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x5e58517d regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x5e5aa400 of_pci_address_to_resource EXPORT_SYMBOL_GPL vmlinux 0x5e611999 fat_truncate_time EXPORT_SYMBOL_GPL vmlinux 0x5e6c7299 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x5e7321c8 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x5e762961 devm_regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val EXPORT_SYMBOL_GPL vmlinux 0x5e7ddb79 kthread_queue_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e9496ff wm8350_gpio_config EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare EXPORT_SYMBOL_GPL vmlinux 0x5ec8ca2c pci_get_dsn EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource -EXPORT_SYMBOL_GPL vmlinux 0x5eebfd7e ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x5eff5889 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x5ef17092 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x5f015f5b metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x5f0391ed pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5f04dbc1 fwnode_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0x5f0e20f4 driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x5f0e3187 ohci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x5f14abf3 usb_put_intf @@ -22160,61 +22193,69 @@ EXPORT_SYMBOL_GPL vmlinux 0x5f49f930 __pm_runtime_idle EXPORT_SYMBOL_GPL vmlinux 0x5f4cb13a of_irq_parse_and_map_pci EXPORT_SYMBOL_GPL vmlinux 0x5f4ce8f1 ata_sff_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x5f55e5e3 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x5f6891c4 sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private EXPORT_SYMBOL_GPL vmlinux 0x5f724e8f vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x5f77456b wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x5f791ac3 phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0x5f7b7af0 component_add_typed EXPORT_SYMBOL_GPL vmlinux 0x5f827160 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x5f8cb3bf perf_aux_output_flag EXPORT_SYMBOL_GPL vmlinux 0x5f8ef299 blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x5f9da877 i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fa851d9 ahci_kick_engine EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL vmlinux 0x5fbf1327 __vfs_setxattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x5fcb71ab virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0x5fd850ba shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x5fdd6eed bpf_offload_dev_match EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x5fe03d8e usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0x5fedc87b __spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x5ffd807c usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc EXPORT_SYMBOL_GPL vmlinux 0x60078131 acpi_dev_add_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x6018cb70 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0x602632c4 xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach -EXPORT_SYMBOL_GPL vmlinux 0x604608a9 ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6053965f netdev_rx_handler_unregister EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size -EXPORT_SYMBOL_GPL vmlinux 0x6064dcec __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x6069ea77 regcache_sync_region EXPORT_SYMBOL_GPL vmlinux 0x606fb405 ti_sci_inta_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x607a159e follow_pte EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x607fa69d __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x60809021 gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x608925b2 k3_udma_glue_request_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x608d7a64 clk_hw_get_name EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6092a946 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x60956518 icc_put EXPORT_SYMBOL_GPL vmlinux 0x60969a70 fsl_mc_resource_allocate EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60bea662 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x60a5a474 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x60aa6445 ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x60c8be24 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x60d78b35 rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x60fad726 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x6108186f crypto_alloc_shash EXPORT_SYMBOL_GPL vmlinux 0x610e24f3 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x6114b438 sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0x611c5753 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6112068c ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x6120bd0a regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x6125423b wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0x61287b42 dprc_scan_container EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x613083c8 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x6133cc78 device_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0x6168414d crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x615e3be3 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x6163d6e4 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x616eef2b rtc_update_irq EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6181e166 platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add EXPORT_SYMBOL_GPL vmlinux 0x618b4b3a adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x618d6be3 hwmon_device_unregister 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 @@ -22222,96 +22263,92 @@ EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause EXPORT_SYMBOL_GPL vmlinux 0x61beeaf6 usb_enable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x61d08f34 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x61dc7b04 sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0x61e30b70 init_srcu_struct EXPORT_SYMBOL_GPL vmlinux 0x61e89cd7 badblocks_check EXPORT_SYMBOL_GPL vmlinux 0x61ee4ca1 pci_common_swizzle EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61f943db __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x61f97112 mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x61fefaa5 bgmac_enet_remove -EXPORT_SYMBOL_GPL vmlinux 0x6206da9d udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x620a91e7 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x622c3166 gpiod_set_raw_value EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier EXPORT_SYMBOL_GPL vmlinux 0x622dd909 usb_autopm_get_interface EXPORT_SYMBOL_GPL vmlinux 0x622ec6dc devm_clk_get_optional_enabled EXPORT_SYMBOL_GPL vmlinux 0x622f41a6 mtk_eint_do_suspend EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule EXPORT_SYMBOL_GPL vmlinux 0x623a9af4 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x624523e4 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x623ab141 __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x624ac50d scsi_host_unblock EXPORT_SYMBOL_GPL vmlinux 0x6252affc driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x62530783 device_match_of_node EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context EXPORT_SYMBOL_GPL vmlinux 0x626d76d0 devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62742d74 vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0x6276e54e irq_gc_mask_clr_bit EXPORT_SYMBOL_GPL vmlinux 0x628adefa phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x629d8421 k3_udma_glue_rx_flow_init -EXPORT_SYMBOL_GPL vmlinux 0x62a4f06c security_path_link EXPORT_SYMBOL_GPL vmlinux 0x62b8e4d4 devm_regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62c25efe nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x62c17ce9 __regmap_init EXPORT_SYMBOL_GPL vmlinux 0x62d567e9 i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0x62f82e76 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x6309e65d regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x630a9346 xfrm_output EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent EXPORT_SYMBOL_GPL vmlinux 0x63181136 spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0x6318757f mdio_mux_uninit EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x63219c84 raw_abort EXPORT_SYMBOL_GPL vmlinux 0x632494c4 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x632f6329 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x632b4b78 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x632ffa45 bgmac_enet_resume EXPORT_SYMBOL_GPL vmlinux 0x6332d8e9 __clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0x633398b2 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x6339f765 register_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x63504ef8 usb_of_get_companion_dev EXPORT_SYMBOL_GPL vmlinux 0x6363573e usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x636e55c7 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0x63787650 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x63757d6c perf_event_create_kernel_counter EXPORT_SYMBOL_GPL vmlinux 0x637fb7f0 debugfs_create_atomic_t EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x639cf24d icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x639d3aab regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x63a1bbb3 i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0x63a7f53b __fat_fs_error EXPORT_SYMBOL_GPL vmlinux 0x63ab6362 irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x63bc6baa xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x63b3177c xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63ced8b5 gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x63d497a8 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x63e34a55 regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str EXPORT_SYMBOL_GPL vmlinux 0x63ffec29 devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0x6401bfe9 dev_pm_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x64034667 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x64046074 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x6405bcda ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0x64083a5f pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0x640c655e __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x640d0e0c power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x64143510 i2c_new_smbus_alert_device EXPORT_SYMBOL_GPL vmlinux 0x641456b1 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x64253302 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x641fcd11 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x6421436a gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable -EXPORT_SYMBOL_GPL vmlinux 0x64314952 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x64301323 gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate EXPORT_SYMBOL_GPL vmlinux 0x643efd35 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x64583725 mtk_paris_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0x645db170 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x645fd6fa dequeue_signal EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x646b79dd tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x6485cd35 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x64880591 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x64899425 sata_link_debounce EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x649f48b9 perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0x64a19b68 cpu_subsys EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io EXPORT_SYMBOL_GPL vmlinux 0x64b71173 reserve_iova EXPORT_SYMBOL_GPL vmlinux 0x64bf6779 devm_power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0x64c09273 amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x64c10408 devlink_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0x64c80ff8 iommu_fwspec_add_ids EXPORT_SYMBOL_GPL vmlinux 0x64c84f7c clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x64cee10f devm_device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load EXPORT_SYMBOL_GPL vmlinux 0x64da1f11 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x64dfa3e5 inode_congested EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64e93199 skb_partial_csum_set EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf @@ -22321,95 +22358,90 @@ EXPORT_SYMBOL_GPL vmlinux 0x6523efb4 phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0x652a7050 iommu_device_sysfs_add EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add EXPORT_SYMBOL_GPL vmlinux 0x65348045 kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x6542d7de vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x654535b9 dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0x65516958 generic_handle_domain_irq EXPORT_SYMBOL_GPL vmlinux 0x65586796 fat_flush_inodes EXPORT_SYMBOL_GPL vmlinux 0x655e4879 __irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0x656d95c6 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x657b6cd8 regulator_list_voltage EXPORT_SYMBOL_GPL vmlinux 0x65813c12 kvm_arch_ptp_get_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x65864e04 skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0x659a222f securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x659c6b6d blk_insert_cloned_request EXPORT_SYMBOL_GPL vmlinux 0x659d4513 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x65a52207 vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0x65a66a4b pcie_port_find_device EXPORT_SYMBOL_GPL vmlinux 0x65b23c8a devm_remove_action EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers EXPORT_SYMBOL_GPL vmlinux 0x65cde085 fsnotify_alloc_user_group EXPORT_SYMBOL_GPL vmlinux 0x65d0afc8 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x65d2515d devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache EXPORT_SYMBOL_GPL vmlinux 0x65f7b129 cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0x65facc31 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x66066037 regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x661073cd devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x66128e1f tcp_done EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol EXPORT_SYMBOL_GPL vmlinux 0x6619f232 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x661b55cc shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0x661d78e8 dm_send_uevents EXPORT_SYMBOL_GPL vmlinux 0x66277a37 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x66300ff9 sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x6633b00b inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x6635925b regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x662e4aaf __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity EXPORT_SYMBOL_GPL vmlinux 0x6639c5d4 pm_clk_add EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x663c35c8 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x663bdc7c __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x664ad13c cpufreq_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma EXPORT_SYMBOL_GPL vmlinux 0x665df85c ahci_platform_disable_regulators EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle EXPORT_SYMBOL_GPL vmlinux 0x66684740 phy_resolve_aneg_pause EXPORT_SYMBOL_GPL vmlinux 0x6669381d of_irq_get_byname EXPORT_SYMBOL_GPL vmlinux 0x666baafd dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x666fe7ec icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0x6679ce12 pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x667a2bb9 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x6680a8bf security_path_rmdir EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng EXPORT_SYMBOL_GPL vmlinux 0x668ae05d virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x6693324b sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x66960832 icc_link_create EXPORT_SYMBOL_GPL vmlinux 0x669bc783 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x66a1f165 __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x66a78983 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x66b1d155 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x66b8d484 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x66b11a94 cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66bcf0e7 synth_event_add_next_val EXPORT_SYMBOL_GPL vmlinux 0x66cfedde pinmux_generic_remove_function EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr EXPORT_SYMBOL_GPL vmlinux 0x66df8abc power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x66e7a304 scsi_host_unblock EXPORT_SYMBOL_GPL vmlinux 0x670465c9 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x6711a2d9 crypto_skcipher_setkey EXPORT_SYMBOL_GPL vmlinux 0x67162b0d devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x672d0670 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x672ce318 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x67500fff sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x6750b535 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x67521ed9 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x6753e7dc vfs_write EXPORT_SYMBOL_GPL vmlinux 0x67664a6e ata_acpi_cbl_80wire EXPORT_SYMBOL_GPL vmlinux 0x6768dfc2 spi_controller_dma_map_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free -EXPORT_SYMBOL_GPL vmlinux 0x67830f1b devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6771d70d device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x678bb341 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x678ea683 gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679e5d91 ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x67a4c8ab ahci_print_info -EXPORT_SYMBOL_GPL vmlinux 0x67c4df19 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x67ae137d fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x67c5b755 gpiod_set_debounce EXPORT_SYMBOL_GPL vmlinux 0x67c7aefa genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0x67d374d9 blockdev_superblock EXPORT_SYMBOL_GPL vmlinux 0x67d91336 fwnode_usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67e080cc ata_ehi_clear_desc EXPORT_SYMBOL_GPL vmlinux 0x68078f6b led_trigger_event EXPORT_SYMBOL_GPL vmlinux 0x680a68d7 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x681212a3 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x6817bc68 device_match_fwnode EXPORT_SYMBOL_GPL vmlinux 0x68196886 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x681c21b6 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x68262510 udp_abort EXPORT_SYMBOL_GPL vmlinux 0x6826a2a5 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x68295fe2 rtc_update_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0x685fba66 pwm_get_chip_data EXPORT_SYMBOL_GPL vmlinux 0x6864e4e9 dw_pcie_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x68721a4c pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x687a9dac kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x6890bfb4 crypto_stats_kpp_set_secret EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch EXPORT_SYMBOL_GPL vmlinux 0x68953b65 i2c_slave_unregister @@ -22417,56 +22449,49 @@ EXPORT_SYMBOL_GPL vmlinux 0x689da678 vp_modern_generation EXPORT_SYMBOL_GPL vmlinux 0x689ea695 dma_map_sgtable EXPORT_SYMBOL_GPL vmlinux 0x68b92598 xhci_update_hub_device EXPORT_SYMBOL_GPL vmlinux 0x68c90424 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x68cd4a94 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x68cd8edf spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0x68d0bb09 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x68dad8f1 ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0x68f1a3d4 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x690124a3 msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0x68f05cae security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x68f4cdc1 netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x69019de9 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x69080fd7 regulator_force_disable EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array EXPORT_SYMBOL_GPL vmlinux 0x6921a4b3 dev_attr_em_message EXPORT_SYMBOL_GPL vmlinux 0x692900e3 genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0x6945a2b2 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x6937b464 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x693bc911 sdio_readw EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x696a9ab1 synth_event_trace EXPORT_SYMBOL_GPL vmlinux 0x696c7aae kthread_use_mm EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x697aa9f9 regulator_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc EXPORT_SYMBOL_GPL vmlinux 0x698782fc linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0x6989cf38 __mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x698bd6a4 ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0x698f3513 component_del EXPORT_SYMBOL_GPL vmlinux 0x6991f7ba fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0x699d0129 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x69a2784d kvm_vcpu_unmap EXPORT_SYMBOL_GPL vmlinux 0x69aa70a0 pci_epf_destroy EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr -EXPORT_SYMBOL_GPL vmlinux 0x69dd206c set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0x69df0011 mdio_mux_init EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high EXPORT_SYMBOL_GPL vmlinux 0x69f2820f of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x69fce851 fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode EXPORT_SYMBOL_GPL vmlinux 0x6a172cd6 da9052_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a18c203 __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0x6a19455c da9052_adc_manual_read EXPORT_SYMBOL_GPL vmlinux 0x6a1bf4a2 debugfs_write_file_bool EXPORT_SYMBOL_GPL vmlinux 0x6a22640e pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x6a2504ce xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0x6a282237 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x6a29ed3f wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x6a3e0c3c gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a498c83 device_register EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a56fdca register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x6a605e7b devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x6a5a24ba devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x6a709bc2 l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a8967c3 device_destroy EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function -EXPORT_SYMBOL_GPL vmlinux 0x6a9cf888 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x6a9db66a devlink_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0x6a9e5d7c bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via @@ -22474,46 +22499,40 @@ EXPORT_SYMBOL_GPL vmlinux 0x6ab27578 regulator_list_voltage_pickable_linear_ran EXPORT_SYMBOL_GPL vmlinux 0x6ace061d bus_for_each_drv EXPORT_SYMBOL_GPL vmlinux 0x6ad0415c devm_extcon_dev_unregister EXPORT_SYMBOL_GPL vmlinux 0x6ade2e6a kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x6ae71bc8 devlink_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0x6aeb569f usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x6afbd73d acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0x6af28fa8 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x6b007d3d wbc_detach_inode EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x6b19c9bb regulator_bulk_force_disable EXPORT_SYMBOL_GPL vmlinux 0x6b1f2a07 devm_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x6b23edc4 sdio_signal_irq EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b2d2b9f __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0x6b2fe6df imx_unregister_hw_clocks -EXPORT_SYMBOL_GPL vmlinux 0x6b31b86a regulator_suspend_enable EXPORT_SYMBOL_GPL vmlinux 0x6b376355 usb_for_each_port EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b420dde register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x6b72372a crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x6b799e66 put_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b818c1b bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x6b974346 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x6b99fb8d bgmac_adjust_link -EXPORT_SYMBOL_GPL vmlinux 0x6b9e4d14 devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6bb42f12 devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0x6bc34912 fsverity_ioctl_enable EXPORT_SYMBOL_GPL vmlinux 0x6bc751ed reset_control_get_count EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bd62499 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x6bda0dc9 ata_dev_pair EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake -EXPORT_SYMBOL_GPL vmlinux 0x6bdf02a9 scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x6be06ae8 mtk_pctrl_show_one_pin +EXPORT_SYMBOL_GPL vmlinux 0x6be08405 of_mpc8xxx_spi_probe EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler EXPORT_SYMBOL_GPL vmlinux 0x6be42170 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x6be7677d __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6be8d4b7 crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0x6bec75e0 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x6bef6426 crypto_shash_update EXPORT_SYMBOL_GPL vmlinux 0x6bf938aa pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0x6bfa5b93 __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0x6bfbf36d usb_acpi_set_power_state EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print EXPORT_SYMBOL_GPL vmlinux 0x6c354168 uart_handle_dcd_change @@ -22521,142 +22540,164 @@ EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c62f447 __vfs_removexattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier EXPORT_SYMBOL_GPL vmlinux 0x6c68f355 dma_buf_put EXPORT_SYMBOL_GPL vmlinux 0x6c6a2937 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6c7026a2 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x6c70bba1 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x6c7a85db trace_output_call EXPORT_SYMBOL_GPL vmlinux 0x6c89bb1d bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0x6c91bbd8 bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x6c933f34 __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6caac52e xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x6cad8cfa crypto_shash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x6cc162b1 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x6cb3b4eb __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies EXPORT_SYMBOL_GPL vmlinux 0x6ce934f4 anon_inode_getfd EXPORT_SYMBOL_GPL vmlinux 0x6ce9cbc2 pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x6cfc582e proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x6d0393e7 stmpe_reg_write 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 0x6d13ae12 __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x6d1c3ebd inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0x6d23b9d9 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x6d280c10 bgmac_enet_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6d28c992 spi_busnum_to_master EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list EXPORT_SYMBOL_GPL vmlinux 0x6d352b70 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x6d397095 ip6_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit EXPORT_SYMBOL_GPL vmlinux 0x6d4693a8 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x6d4f47dc stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x6d52cc66 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0x6d5cb1d4 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x6d4fae9e dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x6d5e09b4 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x6d5f1964 bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0x6d6965dc usb_hub_claim_port EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7b0e53 fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d9b8a83 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x6d9d7a86 fwnode_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x6da4db59 tegra_bpmp_transfer EXPORT_SYMBOL_GPL vmlinux 0x6dacad5e rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x6dacfc42 ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dbbf899 nfnl_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6ddf75e9 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x6e07a240 tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0x6e0985af hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e284f0e devlink_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x6e297efc nvdimm_delete EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e44b0ea mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0x6e45963d usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x6e467b03 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x6e4a77f8 spi_sync EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x6e73468b devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x6e77bffe __page_file_mapping EXPORT_SYMBOL_GPL vmlinux 0x6e791080 dpbp_close EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base EXPORT_SYMBOL_GPL vmlinux 0x6e8cb039 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x6e9e0146 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x6e9679cd devlink_dpipe_table_resource_set EXPORT_SYMBOL_GPL vmlinux 0x6e9e35c0 usb_alloc_urb EXPORT_SYMBOL_GPL vmlinux 0x6e9f203b dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x6eb2c692 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x6eb14990 mmc_get_ext_csd EXPORT_SYMBOL_GPL vmlinux 0x6eb8ed77 serial8250_do_set_mctrl EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6ec6b840 sysfs_create_group EXPORT_SYMBOL_GPL vmlinux 0x6ecab5b2 pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x6ecc39ff xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x6ed5665b page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0x6ed7175b blk_poll EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom EXPORT_SYMBOL_GPL vmlinux 0x6ef0855c ftrace_set_filter_ip EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ef7e3df device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0x6f036407 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x6f03f307 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x6f06f2c2 gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0x6f0df976 pci_hp_add_bridge EXPORT_SYMBOL_GPL vmlinux 0x6f0e77a2 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x6f118a80 regulator_unregister EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f17c8be sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x6f1dbae6 gpiochip_request_own_desc EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f335077 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x6f3717a3 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x6f385a92 devlink_port_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x6f386f83 dev_pm_opp_xlate_required_opp EXPORT_SYMBOL_GPL vmlinux 0x6f394a44 altr_sysmgr_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6f580afb ping_hash EXPORT_SYMBOL_GPL vmlinux 0x6f61bf3b pci_store_saved_state EXPORT_SYMBOL_GPL vmlinux 0x6f74131a gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x6f7d9dbc regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action EXPORT_SYMBOL_GPL vmlinux 0x6f89f58d hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x6f8ce24e sched_show_task EXPORT_SYMBOL_GPL vmlinux 0x6f8e4510 devm_acpi_dma_controller_register 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 0x6fb2c381 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x6fc1969b do_truncate EXPORT_SYMBOL_GPL vmlinux 0x6fc203a0 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x6fc63e6f ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0x6fcd83db pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fcf20f5 pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0x6fcfc967 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x6fe306f0 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x6fecd965 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x6fe02ea7 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x6fe838cb proc_create_net_single EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ff632fe ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x6ff8ae7d __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x6ffdf19a ip_local_out EXPORT_SYMBOL_GPL vmlinux 0x7002a96c power_supply_put_battery_info EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions EXPORT_SYMBOL_GPL vmlinux 0x701ea826 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x7021cd3e inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0x7025269a dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x7030f882 ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0x703e647b dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x70497056 sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0x704d71ef irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x704db8a6 alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0x7055c56e __sbitmap_queue_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x706ae49e rockchip_clk_add_lookup EXPORT_SYMBOL_GPL vmlinux 0x706d8c93 irq_chip_disable_parent EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x70825462 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x70964e02 thermal_zone_unbind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x709e2f4c dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0x70a14579 device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0x70a95482 nvdimm_in_overwrite EXPORT_SYMBOL_GPL vmlinux 0x70ad7013 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x70b19017 crypto_stats_get EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer EXPORT_SYMBOL_GPL vmlinux 0x70bc74f2 devm_free_pages EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated EXPORT_SYMBOL_GPL vmlinux 0x70cb4bcb con_debug_enter EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d2b879 __sync_filesystem EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message EXPORT_SYMBOL_GPL vmlinux 0x70e336ab phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x70e91b1e platform_get_irq_byname_optional EXPORT_SYMBOL_GPL vmlinux 0x70ec62b1 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x70f0196e __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x70f11a0c ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x70f944ac rio_route_add_entry EXPORT_SYMBOL_GPL vmlinux 0x70fc2472 vring_del_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x70fce3b6 devm_qcom_smem_state_get EXPORT_SYMBOL_GPL vmlinux 0x7108b7b5 iomap_writepage EXPORT_SYMBOL_GPL vmlinux 0x7108dbc2 pci_epc_linkup EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x71152f1e dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x711a4629 gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x711d1290 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x711e163f regmap_multi_reg_write_bypassed EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x712b15f3 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x71327929 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x714d3424 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x715e2fc5 bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71662eac __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x7171e6f2 virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0x71737e3d pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x7176ce98 fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0x717d9b3c phy_validate EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7181de2a scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x71867054 regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire @@ -22664,70 +22705,86 @@ 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 0x71e33e31 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x71e608c6 device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x71ed10f0 regcache_cache_only EXPORT_SYMBOL_GPL vmlinux 0x71f051bf devm_clk_bulk_get_all EXPORT_SYMBOL_GPL vmlinux 0x720247aa sysfs_create_mount_point EXPORT_SYMBOL_GPL vmlinux 0x72134327 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7217d54b kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0x721ae182 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x721bef10 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x7225a742 ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0x72266126 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x7226cd3d __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x722c4d5e blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x72300328 icc_provider_del EXPORT_SYMBOL_GPL vmlinux 0x7235f73e pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x723798f7 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x72394bf9 regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0x723ec1de __devm_irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0x724a058d fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0x724a96b3 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x724da5d5 perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0x7256dadf rio_register_scan EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page EXPORT_SYMBOL_GPL vmlinux 0x72652403 nvdimm_bus_register EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x72663f20 inet6_cleanup_sock EXPORT_SYMBOL_GPL vmlinux 0x726e4c78 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7271f3bf crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72800560 sata_scr_write_flush EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x7287c235 sdio_writel EXPORT_SYMBOL_GPL vmlinux 0x72887bbd regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x72944fe8 xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0x7297eab6 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x72adca72 phy_package_leave EXPORT_SYMBOL_GPL vmlinux 0x72aff1af blk_ksm_intersect_modes EXPORT_SYMBOL_GPL vmlinux 0x72b7941e pm_runtime_barrier EXPORT_SYMBOL_GPL vmlinux 0x72bce764 hisi_clk_init EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups EXPORT_SYMBOL_GPL vmlinux 0x72d26ce5 scsi_autopm_get_device EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x72f8af7a rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x72fb93e7 tracing_snapshot_cond EXPORT_SYMBOL_GPL vmlinux 0x73036d81 edac_mc_add_mc_with_groups EXPORT_SYMBOL_GPL vmlinux 0x730e41ea irq_chip_release_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x731dc48b irq_setup_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x732036e9 fsl_mc_portal_allocate -EXPORT_SYMBOL_GPL vmlinux 0x73228bba kern_mount EXPORT_SYMBOL_GPL vmlinux 0x73242dcd cpu_set_feature EXPORT_SYMBOL_GPL vmlinux 0x7326db0d fsl_mc_device_add EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x7329a082 fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0x734d8ffc tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x73377a7c mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x733e9da2 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x73465dfe __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x73560300 fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0x73585c8a dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0x735cf62e ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x736562db da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x736c7b4e gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x736c9c68 security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x7365be49 device_register EXPORT_SYMBOL_GPL vmlinux 0x737a212c irq_setup_alt_chip EXPORT_SYMBOL_GPL vmlinux 0x7387aaf8 imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x738b7638 crypto_stats_decompress EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports EXPORT_SYMBOL_GPL vmlinux 0x73a838d3 fscrypt_set_bio_crypt_ctx_bh EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c392e8 device_del EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73d99921 skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0x73e64080 __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x73fe7b87 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x74181f56 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x73f1cf46 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x74071ca6 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x7408306b __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0x7429ac71 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x742adba4 rdev_get_name EXPORT_SYMBOL_GPL vmlinux 0x7436704d get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0x74377ad9 scsi_ioctl_block_when_processing_errors 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 0x744a6dfb xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x744d12e7 bpf_trace_run3 EXPORT_SYMBOL_GPL vmlinux 0x745ea89d debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0x7465e759 xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x747f7ab1 security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0x746ad2bb regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x747d9479 crypto_stats_akcipher_verify EXPORT_SYMBOL_GPL vmlinux 0x7487ec62 __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x749ed50d __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn EXPORT_SYMBOL_GPL vmlinux 0x74a9b4f8 debugfs_file_get EXPORT_SYMBOL_GPL vmlinux 0x74aecb7e usb_string @@ -22736,110 +22793,109 @@ EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on EXPORT_SYMBOL_GPL vmlinux 0x74bce7e9 serdev_device_set_parity EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint EXPORT_SYMBOL_GPL vmlinux 0x74d72b50 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x74d9850c trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x74daee7d aead_register_instance EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74e9823b perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0x74f17d5e nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x74f72197 devlink_port_params_register EXPORT_SYMBOL_GPL vmlinux 0x7501fef0 __regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0x75076fd7 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x75102f06 crypto_stats_init EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x75188031 platform_device_del EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x753a7186 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x7543ea1f kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x7549bee3 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x75437bf4 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x754a7a5d tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x755ac7f3 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x7571b209 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x756cce96 pskb_put EXPORT_SYMBOL_GPL vmlinux 0x7581760b __clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0x7582aadb extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x7585e8ae crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0x7586a84a pinctrl_utils_add_config EXPORT_SYMBOL_GPL vmlinux 0x7587986b synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x758a43fe k3_ringacc_get_ring_irq_num EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy EXPORT_SYMBOL_GPL vmlinux 0x75a8bf38 fsl_mc_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x75b0a0e7 devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0x75b43c50 __hvc_resize EXPORT_SYMBOL_GPL vmlinux 0x75c89b50 pm_generic_suspend EXPORT_SYMBOL_GPL vmlinux 0x75cb1705 __pm_runtime_disable EXPORT_SYMBOL_GPL vmlinux 0x75cb477f usb_autopm_put_interface EXPORT_SYMBOL_GPL vmlinux 0x75cf6835 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x75d55ee7 vfs_write EXPORT_SYMBOL_GPL vmlinux 0x75d968ee cleanup_srcu_struct EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove EXPORT_SYMBOL_GPL vmlinux 0x75e27cf0 pci_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0x75e4c94d rockchip_pcie_parse_dt EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75ed4cb6 sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store EXPORT_SYMBOL_GPL vmlinux 0x75fa2cb3 mc_send_command EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x75ff1c2b crypto_unregister_ahash EXPORT_SYMBOL_GPL vmlinux 0x75ff916c thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0x7627440d ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0x7642dffa sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x7646e223 icc_node_del EXPORT_SYMBOL_GPL vmlinux 0x7648e5e3 ata_bmdma_port_intr EXPORT_SYMBOL_GPL vmlinux 0x764aec42 tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x7658b9b9 bgmac_enet_probe +EXPORT_SYMBOL_GPL vmlinux 0x76538f6c spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x7660b218 platform_device_add_data EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x76694707 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x766c6681 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x767913ee perf_aux_output_end EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier EXPORT_SYMBOL_GPL vmlinux 0x769181cc regulator_list_voltage_table EXPORT_SYMBOL_GPL vmlinux 0x76949ca7 serial8250_get_port EXPORT_SYMBOL_GPL vmlinux 0x7699e060 syscon_regmap_lookup_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x769d5f3a device_create_with_groups EXPORT_SYMBOL_GPL vmlinux 0x769dec6a srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x769ff1a1 hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0x76b0dde5 dax_copy_to_iter EXPORT_SYMBOL_GPL vmlinux 0x76b8186c regcache_mark_dirty EXPORT_SYMBOL_GPL vmlinux 0x76c0c759 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x76c0ebd2 lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0x76c32215 pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x76c4fb44 gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0x76c56d5a gpiod_direction_output EXPORT_SYMBOL_GPL vmlinux 0x76cc64f1 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x76d22ebc crypto_unregister_skciphers EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76e26599 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x76e36508 crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x76f037da da903x_update EXPORT_SYMBOL_GPL vmlinux 0x76f4849b regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x76f96947 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x770a061c tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7712a07e sched_trace_cfs_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0x77132982 dma_free_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x7713cf7e tps6586x_read EXPORT_SYMBOL_GPL vmlinux 0x771c69b4 acpi_bus_trim EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x772a0838 kvm_write_guest_cached EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x772bd9b5 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x7744c5e8 xfrm_output EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0x7750d5ba dw_pcie_setup_rc EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister EXPORT_SYMBOL_GPL vmlinux 0x775fac9c __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x7778ab48 sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x77867426 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x7769ddae kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x77858026 crypto_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x77877d68 devm_hwrng_register EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read EXPORT_SYMBOL_GPL vmlinux 0x7797dcd0 sysfs_add_file_to_group EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77c480ab synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0x77d84a67 mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x77e38cc1 icc_get EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put -EXPORT_SYMBOL_GPL vmlinux 0x77e80a83 switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key EXPORT_SYMBOL_GPL vmlinux 0x77f34eba ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x77f51e99 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0x7807e27d device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x78067827 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x7806de3b __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x78286e85 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x78393523 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x783aba8a gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x784447e5 fuse_free_conn EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785b89ff i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x786cc698 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x78681124 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x786eda84 ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress EXPORT_SYMBOL_GPL vmlinux 0x7889ab4b ahci_platform_enable_resources EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty @@ -22847,21 +22903,29 @@ EXPORT_SYMBOL_GPL vmlinux 0x7896d6e7 rio_release_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot EXPORT_SYMBOL_GPL vmlinux 0x78a17a42 nd_region_dev EXPORT_SYMBOL_GPL vmlinux 0x78a4c816 acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x78ae6556 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x78a93f11 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x78a98ef0 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x78b15ecd devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x78bd03ca tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x78be2baa inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x78d98ac6 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x78ccf54d devm_platform_get_irqs_affinity EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78e19eca device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x78e30104 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x78f698c0 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x78fefdfc synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0x790a48be alloc_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x790c75b5 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x790d0dd5 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x79161a67 aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x792ae5b6 trace_array_destroy 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 0x7940cff9 dma_wait_for_async_tx EXPORT_SYMBOL_GPL vmlinux 0x794460f8 nd_blk_region_provider_data EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79454ea2 pm_wakeup_ws_event EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot @@ -22869,55 +22933,58 @@ EXPORT_SYMBOL_GPL vmlinux 0x795afeb9 rockchip_pcie_get_phys EXPORT_SYMBOL_GPL vmlinux 0x7971babb acpi_dev_get_memory_resources EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev EXPORT_SYMBOL_GPL vmlinux 0x7999cde3 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x799a4830 regulator_get_mode EXPORT_SYMBOL_GPL vmlinux 0x79a44bc5 iommu_dev_enable_feature EXPORT_SYMBOL_GPL vmlinux 0x79acf414 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x79af17bd kvm_vcpu_gfn_to_page EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79c7b47e cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x79d5ab95 sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0x79d9905b virtio_device_freeze EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e3506b xfrm_output_resume EXPORT_SYMBOL_GPL vmlinux 0x79eea92c extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x79f09c20 i2c_generic_scl_recovery EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress EXPORT_SYMBOL_GPL vmlinux 0x79fdc731 of_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x7a3b1c90 ehci_handshake EXPORT_SYMBOL_GPL vmlinux 0x7a3d6def exportfs_decode_fh_raw EXPORT_SYMBOL_GPL vmlinux 0x7a3fa62d __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x7a4363ea fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0x7a45afab irq_create_fwspec_mapping EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a7bced7 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x7a7c8179 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x7a8086e0 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a814d2f kvm_vcpu_destroy EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a883ea1 trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7a946463 rq_flush_dcache_pages EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0x7a9dbe64 device_link_del EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group EXPORT_SYMBOL_GPL vmlinux 0x7aa5170e of_console_check EXPORT_SYMBOL_GPL vmlinux 0x7ab5ea82 thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0x7ab948a3 device_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac35c0d devlink_port_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings EXPORT_SYMBOL_GPL vmlinux 0x7ad2c64c k3_udma_glue_release_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x7ad36153 skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x7add2d1a hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x7ae226f3 dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0x7af7b84d skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x7aea168b __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7af99fd6 sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7b00121d crypto_stats_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x7b13c628 of_get_regulator_init_data EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0x7b1a9a59 pci_disable_pasid EXPORT_SYMBOL_GPL vmlinux 0x7b1b8043 regulator_desc_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x7b2163bd HYPERVISOR_tmem_op -EXPORT_SYMBOL_GPL vmlinux 0x7b24c84d icc_disable EXPORT_SYMBOL_GPL vmlinux 0x7b2899f7 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x7b2adcc4 ping_hash EXPORT_SYMBOL_GPL vmlinux 0x7b3086d9 xenbus_dev_remove EXPORT_SYMBOL_GPL vmlinux 0x7b35f220 __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0x7b3b4398 dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x7b3bdf0c ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x7b3a490a dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0x7b3cfeba of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7b3e28da regmap_read EXPORT_SYMBOL_GPL vmlinux 0x7b4af3d5 __efivar_entry_get EXPORT_SYMBOL_GPL vmlinux 0x7b540853 nvdimm_flush EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi @@ -22925,24 +22992,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler EXPORT_SYMBOL_GPL vmlinux 0x7b70c6dc component_master_del EXPORT_SYMBOL_GPL vmlinux 0x7b70f417 acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x7b7828bb spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0x7b8256ad ahci_fill_cmd_slot EXPORT_SYMBOL_GPL vmlinux 0x7b8b938e of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x7b8c0c82 ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b922907 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7b98ebfe register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x7ba70a91 device_move EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bdaf99a crypto_ahash_setkey EXPORT_SYMBOL_GPL vmlinux 0x7bf5d047 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7c053b28 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x7c111ca3 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x7c145ba5 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7c1d4045 timer_unstable_counter_workaround EXPORT_SYMBOL_GPL vmlinux 0x7c2803f1 loop_backing_file EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c3bd58c gpiod_get_array_value EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator EXPORT_SYMBOL_GPL vmlinux 0x7c60cf5f virtio_add_status EXPORT_SYMBOL_GPL vmlinux 0x7c626556 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7c6de59f platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x7c640881 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x7c741242 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x7c7b6ec8 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x7c7fbcca validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0x7c80e4d9 of_icc_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x7c93e187 of_platform_default_populate EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty @@ -22951,126 +23024,121 @@ EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence EXPORT_SYMBOL_GPL vmlinux 0x7ca85256 ms_hyperv EXPORT_SYMBOL_GPL vmlinux 0x7ca9097a component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x7ca911bd fwnode_graph_get_next_endpoint EXPORT_SYMBOL_GPL vmlinux 0x7ca95bac of_genpd_parse_idle_states EXPORT_SYMBOL_GPL vmlinux 0x7caf388f sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x7cb1043d ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x7cb759a2 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x7cb1a16e bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7cc85ceb inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7cc3b399 of_clk_get_parent_name EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats EXPORT_SYMBOL_GPL vmlinux 0x7cd33eba mmu_interval_notifier_insert_locked EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver EXPORT_SYMBOL_GPL vmlinux 0x7ce6ee59 devm_gpio_request EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cee7acb crypto_register_acomp EXPORT_SYMBOL_GPL vmlinux 0x7cf146f4 ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d07c07f tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x7d0f4927 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0x7d101873 iopf_queue_remove_device EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn EXPORT_SYMBOL_GPL vmlinux 0x7d2045e4 irq_generic_chip_ops EXPORT_SYMBOL_GPL vmlinux 0x7d318537 dummy_con EXPORT_SYMBOL_GPL vmlinux 0x7d369876 of_k3_ringacc_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x7d36cb4e nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x7d3cad58 device_remove_file EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release -EXPORT_SYMBOL_GPL vmlinux 0x7d4811a7 crypto_alloc_ahash EXPORT_SYMBOL_GPL vmlinux 0x7d491683 free_iova_fast EXPORT_SYMBOL_GPL vmlinux 0x7d54c732 devm_ioremap_uc EXPORT_SYMBOL_GPL vmlinux 0x7d558968 trace_seq_puts EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d75b63b sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x7d8e5240 regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0x7da03abb blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x7dafc8ed bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x7db84812 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x7db97438 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x7dba238a dev_pm_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x7dbf114a extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x7dc74488 dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x7dc7ddb3 percpu_up_write EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier EXPORT_SYMBOL_GPL vmlinux 0x7de4bddf rio_set_port_lockout 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 0x7dedf004 gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x7dfe134c device_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x7e06fc1b usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x7e0e267c inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0x7e2251a0 devm_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0x7e257ad1 class_dev_iter_init EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e4ce878 scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0x7e5d0574 dw_pcie_write_dbi EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time EXPORT_SYMBOL_GPL vmlinux 0x7e6435f0 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7e64a160 bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x7e786bc7 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7e7948d6 ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu EXPORT_SYMBOL_GPL vmlinux 0x7e8313dc usb_get_intf EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7ea3a40d devlink_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark EXPORT_SYMBOL_GPL vmlinux 0x7eb169a1 sata_pmp_port_ops EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x7ec9755a device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x7ec17e52 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x7ed4aac7 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x7ed9e127 kvm_release_page_dirty EXPORT_SYMBOL_GPL vmlinux 0x7ee72f99 tty_mode_ioctl EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async EXPORT_SYMBOL_GPL vmlinux 0x7f16ba5d blk_ksm_init_passthrough -EXPORT_SYMBOL_GPL vmlinux 0x7f302c1a device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x7f37832a crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x7f449422 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x7f63ca95 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x7f6a9a1f add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x7f259b57 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x7f3beec9 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7f56d61b ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f726081 pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata EXPORT_SYMBOL_GPL vmlinux 0x7f895b95 pci_disable_ats EXPORT_SYMBOL_GPL vmlinux 0x7f8e8f8c iommu_dev_feature_enabled EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fcf4c43 __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x7fde0c99 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7faed45d gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x7fb0d7f1 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x7fd54890 devlink_params_register EXPORT_SYMBOL_GPL vmlinux 0x7fe16669 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x7fecb9d4 pwm_apply_state EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement -EXPORT_SYMBOL_GPL vmlinux 0x7ffe5f0e rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x8001442d pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x8006853c devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x800be1f6 fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail -EXPORT_SYMBOL_GPL vmlinux 0x8033bdfa kvm_vcpu_map EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical EXPORT_SYMBOL_GPL vmlinux 0x80419918 crypto_aes_set_key EXPORT_SYMBOL_GPL vmlinux 0x8051e2af qcom_smem_state_register EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x805fd871 regmap_test_bits EXPORT_SYMBOL_GPL vmlinux 0x806327ea imx_clk_hw_cpu -EXPORT_SYMBOL_GPL vmlinux 0x8072469c ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x80652feb rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x806a254b sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0x808a17ab watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x808b53bf xdp_return_frame EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80ad7416 platform_get_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x80b26a5d tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x80b26d64 kvm_put_kvm EXPORT_SYMBOL_GPL vmlinux 0x80b73319 proc_get_parent_data EXPORT_SYMBOL_GPL vmlinux 0x80b96b4b phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x80bdd7d6 ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80c922ba pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0x80c9ed20 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x80cde08c regulator_set_suspend_voltage EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free EXPORT_SYMBOL_GPL vmlinux 0x80dd0bbb pm_generic_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0x80ddcc8c of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x80e68513 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x80f5654a ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x8102cb84 acpi_subsys_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify EXPORT_SYMBOL_GPL vmlinux 0x8120a30f devm_power_supply_register EXPORT_SYMBOL_GPL vmlinux 0x81274479 dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0x81321e0e devm_device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x813e75b4 fwnode_get_name EXPORT_SYMBOL_GPL vmlinux 0x81444baf pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x814dcbf2 i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815ed1cc vfs_kern_mount EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x817f141a __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init @@ -23079,155 +23147,157 @@ EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe EXPORT_SYMBOL_GPL vmlinux 0x81cf5282 trace_seq_bprintf EXPORT_SYMBOL_GPL vmlinux 0x81e805b2 tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x81e8ad51 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x81eafd7d ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x81ee5b34 usb_autopm_get_interface_no_resume EXPORT_SYMBOL_GPL vmlinux 0x81ef78d0 of_get_named_gpio_flags -EXPORT_SYMBOL_GPL vmlinux 0x81f3716d __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x81fbebf7 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x81f99969 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x81fecaea device_set_node EXPORT_SYMBOL_GPL vmlinux 0x82009f44 pin_user_pages_fast_only EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x821b9bec raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x822ba50e crypto_ahash_setkey EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8241da49 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x82540d66 regmap_async_complete EXPORT_SYMBOL_GPL vmlinux 0x825dfc12 sysfs_group_change_owner EXPORT_SYMBOL_GPL vmlinux 0x82646368 gnttab_free_pages EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog EXPORT_SYMBOL_GPL vmlinux 0x82833a8f hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x8285b6f1 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x828bec14 dev_fwnode EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x829b827a dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x829ab6b1 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0x829eb047 sysfs_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x82a94a95 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x82a9e598 __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x82aff762 input_ff_create EXPORT_SYMBOL_GPL vmlinux 0x82b83922 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x82ba15c1 crypto_shash_tfm_digest EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map EXPORT_SYMBOL_GPL vmlinux 0x82c999f4 dev_pm_opp_of_get_opp_desc_node EXPORT_SYMBOL_GPL vmlinux 0x82d545ae devm_tegra_core_dev_init_opp_table EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dcd94d fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0x82fa88cb xen_dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x830460cf modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x830c79ff pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x83202334 alloc_iova_fast EXPORT_SYMBOL_GPL vmlinux 0x8328e685 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x832b4616 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x832bbf3b device_for_each_child EXPORT_SYMBOL_GPL vmlinux 0x832e0307 bio_trim EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind EXPORT_SYMBOL_GPL vmlinux 0x833f7337 nvdimm_security_setup_events EXPORT_SYMBOL_GPL vmlinux 0x833fb5ac vchan_init EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x834dd739 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x834d3cad devm_regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x834ff60e start_poll_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x836bca13 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x835f19c5 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x837ea19e phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x8384d508 inode_congested EXPORT_SYMBOL_GPL vmlinux 0x838f7ebf __devm_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x838f9177 mtk_pinconf_bias_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x839d0e5d device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x839d38e2 __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x83b19896 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x83be654f gpiochip_add_pingroup_range EXPORT_SYMBOL_GPL vmlinux 0x83c5044c __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x83c6a00b tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0x83d0b44b imx_pinctrl_parse_pin_scu EXPORT_SYMBOL_GPL vmlinux 0x83d29d0d blk_queue_max_discard_segments EXPORT_SYMBOL_GPL vmlinux 0x83d5a017 dev_pm_opp_remove EXPORT_SYMBOL_GPL vmlinux 0x83dd41d6 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x83e739d7 unmap_mapping_pages EXPORT_SYMBOL_GPL vmlinux 0x83f1405b irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x83f3372e crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x840b24d9 regmap_attach_dev EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x84153e1d gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0x841acc1c kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x842234e6 dev_pm_qos_update_user_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x842bd7f9 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x842ca5b1 __mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x843487c7 regulator_set_suspend_voltage EXPORT_SYMBOL_GPL vmlinux 0x84360386 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x84391ff1 ahci_start_fis_rx EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x843d99ff phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0x84431038 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x8447cb9a clk_hw_round_rate EXPORT_SYMBOL_GPL vmlinux 0x844cb904 mtk_mutex_remove_comp EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x84542250 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x84576896 gpiochip_populate_parent_fwspec_twocell EXPORT_SYMBOL_GPL vmlinux 0x845c9546 dma_buf_mmap EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x846052e9 shmem_file_setup EXPORT_SYMBOL_GPL vmlinux 0x84626037 dma_buf_export EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type EXPORT_SYMBOL_GPL vmlinux 0x84672f1e md_run EXPORT_SYMBOL_GPL vmlinux 0x846e7783 nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0x84729a44 cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0x84791035 devm_regulator_register EXPORT_SYMBOL_GPL vmlinux 0x848926c7 input_ff_destroy EXPORT_SYMBOL_GPL vmlinux 0x84915787 to_nvdimm_bus_dev EXPORT_SYMBOL_GPL vmlinux 0x8498baab regulator_get_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0x84a47f84 dpbp_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0x84a7c80b devm_device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert EXPORT_SYMBOL_GPL vmlinux 0x84b38e74 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x84cd552e fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x84bdc1f2 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x84c32e3b __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x84d2e34b sbitmap_bitmap_show EXPORT_SYMBOL_GPL vmlinux 0x84d34d1f meson_clk_mpll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x84e29172 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x84e792f0 regmap_fields_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x84fdbbaa clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x8509fe7f devm_gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy EXPORT_SYMBOL_GPL vmlinux 0x850fdae2 mtk_pinconf_drive_set -EXPORT_SYMBOL_GPL vmlinux 0x8518e8fd sdio_f0_writeb EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x85233d96 genphy_c45_pma_read_abilities EXPORT_SYMBOL_GPL vmlinux 0x852dbbf8 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x85356378 crypto_create_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x8537c4e9 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x8548c8fd gpiod_direction_output_raw EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x85647ab0 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x8563d505 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x856764e6 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x856a5a30 spi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x857d9555 arm64_mm_context_get EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x858c1f0f phy_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x859de2b0 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x859f9df4 sata_std_hardreset EXPORT_SYMBOL_GPL vmlinux 0x85a484c5 irq_find_matching_fwspec EXPORT_SYMBOL_GPL vmlinux 0x85aac8e9 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x85adab7a br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x85bc9ae2 ata_host_alloc EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate EXPORT_SYMBOL_GPL vmlinux 0x85c9934a kstrdup_quotable_cmdline EXPORT_SYMBOL_GPL vmlinux 0x85ca497e inode_dax -EXPORT_SYMBOL_GPL vmlinux 0x85cc2fb4 dev_pm_qos_expose_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x85d51b6a pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x85daa7ad devlink_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0x85e7faab devm_otg_ulpi_create EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial -EXPORT_SYMBOL_GPL vmlinux 0x861240f0 devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0x86216a09 tps65912_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x862c3d60 pwm_adjust_config EXPORT_SYMBOL_GPL vmlinux 0x862efa9a debugfs_create_x32 EXPORT_SYMBOL_GPL vmlinux 0x862f12be devres_open_group EXPORT_SYMBOL_GPL vmlinux 0x863d4aea of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0x864302cf gpiochip_find EXPORT_SYMBOL_GPL vmlinux 0x86538962 virtqueue_detach_unused_buf EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x8664f6e7 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x8665e534 inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x866ca6a3 gnttab_page_cache_init EXPORT_SYMBOL_GPL vmlinux 0x866de911 devm_ti_sci_get_handle EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86881eba xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0x8692b616 blkcg_root EXPORT_SYMBOL_GPL vmlinux 0x8694e0c3 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x8695ac55 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x869adce9 regulator_get_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x869f3424 extcon_set_state EXPORT_SYMBOL_GPL vmlinux 0x86a0a2cc irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x86a4938a pm_relax EXPORT_SYMBOL_GPL vmlinux 0x86a868e9 kobject_init_and_add EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x86b14f0f device_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask EXPORT_SYMBOL_GPL vmlinux 0x86c40486 devm_regulator_irq_helper EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86c4653c xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto EXPORT_SYMBOL_GPL vmlinux 0x86e78ec1 uhci_check_and_reset_hc @@ -23236,90 +23306,93 @@ EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue EXPORT_SYMBOL_GPL vmlinux 0x87020833 pci_pr3_present EXPORT_SYMBOL_GPL vmlinux 0x8706c31a irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x870a5384 regulator_get_mode EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared EXPORT_SYMBOL_GPL vmlinux 0x87157f46 nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0x871ee8f6 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x872d66b8 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x872daa9b dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x87325161 ahci_platform_init_host -EXPORT_SYMBOL_GPL vmlinux 0x87344cab mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0x873ab49c of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x873fd729 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x871dace4 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x87233e2d sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x87380d10 shash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x874be476 gnttab_page_cache_put -EXPORT_SYMBOL_GPL vmlinux 0x874c4141 ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x87508f0c class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x87746a54 i2c_add_numbered_adapter EXPORT_SYMBOL_GPL vmlinux 0x8777ba5c blk_stat_enable_accounting EXPORT_SYMBOL_GPL vmlinux 0x87790eb6 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x877c4118 ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0x877e4958 virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0x879446dc uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x87bb4cbd tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x87995e05 udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x87bede99 component_add EXPORT_SYMBOL_GPL vmlinux 0x87ce0be2 free_iova EXPORT_SYMBOL_GPL vmlinux 0x87cfb08a user_update +EXPORT_SYMBOL_GPL vmlinux 0x87e6ab16 sdio_readsb EXPORT_SYMBOL_GPL vmlinux 0x87f5d1e3 blkg_conf_prep EXPORT_SYMBOL_GPL vmlinux 0x8802cb1e led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8804c3ce fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x880ad33e skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0x8810e36e pci_bridge_emul_conf_read -EXPORT_SYMBOL_GPL vmlinux 0x88184f36 fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0x8821d228 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x88335f66 find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x8834a77a divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x884517f2 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x884a9045 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x883712cc ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x884611da ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x8857de8c file_is_kvm EXPORT_SYMBOL_GPL vmlinux 0x8863753f fsnotify EXPORT_SYMBOL_GPL vmlinux 0x887d88b1 amba_ahb_device_add_res EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x88a426a4 css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88ac3455 vfs_getxattr_alloc EXPORT_SYMBOL_GPL vmlinux 0x88b295a4 pcc_mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x88b77782 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x88c1fb1a devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x88c2dea6 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x88b97b86 init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ EXPORT_SYMBOL_GPL vmlinux 0x88d1972a mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x88d788a9 ip_valid_fib_dump_req EXPORT_SYMBOL_GPL vmlinux 0x88ed1ef6 kthread_cancel_delayed_work_sync EXPORT_SYMBOL_GPL vmlinux 0x88ed4ab3 rio_pw_enable EXPORT_SYMBOL_GPL vmlinux 0x88f37636 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x88f9d9fb sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x88fd0280 pfn_to_online_page EXPORT_SYMBOL_GPL vmlinux 0x89005806 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x8903b5a3 wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892d6586 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x89316f26 netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put EXPORT_SYMBOL_GPL vmlinux 0x8943d5ca pci_set_cacheline_size EXPORT_SYMBOL_GPL vmlinux 0x89460ff6 of_thermal_is_trip_valid EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x894c7175 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x89653c99 fwnode_device_is_available EXPORT_SYMBOL_GPL vmlinux 0x896eb630 bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0x89794151 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x897b0b35 kvm_read_guest_offset_cached EXPORT_SYMBOL_GPL vmlinux 0x897e1a63 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x8989824b mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x898f2b9f set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x8995f107 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8990d127 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x89928363 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8992bb32 ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0x899bde25 component_bind_all EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall EXPORT_SYMBOL_GPL vmlinux 0x89a4dcb2 pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0x89acc12c devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x89b509b9 rtc_update_irq EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify EXPORT_SYMBOL_GPL vmlinux 0x89be5c3b pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x89bf4025 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x89c002e9 root_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd EXPORT_SYMBOL_GPL vmlinux 0x89f5d89a pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x8a025286 __devm_spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x8a06a927 mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x8a0d36aa usb_match_one_id EXPORT_SYMBOL_GPL vmlinux 0x8a10de57 rio_route_get_entry EXPORT_SYMBOL_GPL vmlinux 0x8a123610 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0x8a137b2f bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0x8a177373 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x8a230f3d gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x8a2af2c1 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x8a27da04 sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low EXPORT_SYMBOL_GPL vmlinux 0x8a42a98a dev_pm_opp_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler @@ -23328,205 +23401,189 @@ EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode EXPORT_SYMBOL_GPL vmlinux 0x8a592945 tty_find_polling_driver EXPORT_SYMBOL_GPL vmlinux 0x8a5d4e4f pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a694f4c bio_start_io_acct_time EXPORT_SYMBOL_GPL vmlinux 0x8a698fe7 fat_fill_super EXPORT_SYMBOL_GPL vmlinux 0x8a72cb1d sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x8a764016 regmap_write EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts EXPORT_SYMBOL_GPL vmlinux 0x8a8f871c md_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a9bfd5e gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x8a9e8fe8 switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ad6205f __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x8adde1b4 iomap_writepages EXPORT_SYMBOL_GPL vmlinux 0x8b0930db bio_iov_iter_get_pages EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match EXPORT_SYMBOL_GPL vmlinux 0x8b18d5cb unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x8b1c17ed ahci_fill_cmd_slot EXPORT_SYMBOL_GPL vmlinux 0x8b20f92a tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x8b25f1ce tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x8b377c9a hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x8b3ab9b8 blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0x8b50510f extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x8b5accff __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x8b5b44ba dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x8b5b6174 page_endio EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release +EXPORT_SYMBOL_GPL vmlinux 0x8b685c41 acpi_spi_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x8b8f677c trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0x8b91d0d6 ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0x8b9cef07 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x8b9d38ec icc_enable EXPORT_SYMBOL_GPL vmlinux 0x8b9e06fc __irq_resolve_mapping EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op EXPORT_SYMBOL_GPL vmlinux 0x8ba9adab of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x8bb4aea1 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8bb84842 ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0x8bc333ae led_put -EXPORT_SYMBOL_GPL vmlinux 0x8bcae249 kvm_map_gfn -EXPORT_SYMBOL_GPL vmlinux 0x8bd5aaf4 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x8bcd54cc __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x8bd838d6 ahci_platform_resume_host EXPORT_SYMBOL_GPL vmlinux 0x8bda68ea to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x8be7b5be regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x8beac955 ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x8bef716f meson_clk_dualdiv_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn EXPORT_SYMBOL_GPL vmlinux 0x8c0066c6 tegra_bpmp_free_mrq -EXPORT_SYMBOL_GPL vmlinux 0x8c016d34 clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0974b9 __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0x8c09ab6a rockchip_register_restart_notifier EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c11735b __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8c17f697 inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0x8c262de5 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x8c3fb758 devlink_params_publish EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c58eb54 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x8c50ba06 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x8c56fba1 spi_async_locked EXPORT_SYMBOL_GPL vmlinux 0x8c5e311e tpmm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0x8c6451ca usb_check_int_endpoints EXPORT_SYMBOL_GPL vmlinux 0x8c6b829b dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x8c71bc40 ata_pio_need_iordy EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c8759fc ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x8c791ae7 crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off EXPORT_SYMBOL_GPL vmlinux 0x8c9c1cf4 tty_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0x8c9e88bd dw_pcie_wait_for_link EXPORT_SYMBOL_GPL vmlinux 0x8c9f9ace __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x8ca2acda ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x8ca09e1a stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x8ca37721 xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable -EXPORT_SYMBOL_GPL vmlinux 0x8ccc26fc zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x8cdc77c7 skcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x8cf8e00d pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x8ced4ee0 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x8ced9878 scsi_flush_work EXPORT_SYMBOL_GPL vmlinux 0x8cfb4724 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x8cfba970 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x8d016112 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x8d0668b5 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x8cfeb558 lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x8d201e21 pci_destroy_slot EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d414273 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x8d43d515 phy_set_mode_ext EXPORT_SYMBOL_GPL vmlinux 0x8d4ad3fa __devres_alloc_node EXPORT_SYMBOL_GPL vmlinux 0x8d6b6ad9 mtk_eint_do_init -EXPORT_SYMBOL_GPL vmlinux 0x8d6f61ad fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x8d7d046b kvm_read_guest_offset_cached EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major EXPORT_SYMBOL_GPL vmlinux 0x8d7fe900 tty_kopen_exclusive EXPORT_SYMBOL_GPL vmlinux 0x8d7ff177 sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x8d838877 crypto_stats_kpp_compute_shared_secret EXPORT_SYMBOL_GPL vmlinux 0x8d88b3fa devm_init_badblocks EXPORT_SYMBOL_GPL vmlinux 0x8d88ee64 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x8d8a035e crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x8d914cca wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x8da08d87 crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x8da33fd7 dmaengine_unmap_put EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr EXPORT_SYMBOL_GPL vmlinux 0x8dba9b97 sysfs_create_groups EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call -EXPORT_SYMBOL_GPL vmlinux 0x8dd11679 sprd_pinctrl_shutdown EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8dd41322 crypto_aead_setauthsize EXPORT_SYMBOL_GPL vmlinux 0x8dd5b9f4 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x8de26e83 rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space EXPORT_SYMBOL_GPL vmlinux 0x8deaf3c2 find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x8defac9c perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x8df403e7 __sock_recv_ts_and_drops EXPORT_SYMBOL_GPL vmlinux 0x8df93889 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x8df94742 mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0x8dfae628 dax_layout_busy_page EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x8e1b09aa platform_irq_count EXPORT_SYMBOL_GPL vmlinux 0x8e1c691e of_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x8e3ba6ff ata_common_sdev_attrs EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x8e44acca filemap_read -EXPORT_SYMBOL_GPL vmlinux 0x8e486073 devlink_param_unpublish EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep -EXPORT_SYMBOL_GPL vmlinux 0x8e4e0d5d bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e64eabb thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8e4f64b7 inet_twsk_purge EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc EXPORT_SYMBOL_GPL vmlinux 0x8e99c0a1 led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x8ea1f663 devlink_param_publish EXPORT_SYMBOL_GPL vmlinux 0x8ea31007 pinctrl_find_gpio_range_from_pin_nolock EXPORT_SYMBOL_GPL vmlinux 0x8ea37e5f rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x8eacb433 ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse EXPORT_SYMBOL_GPL vmlinux 0x8eafc324 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x8eca0ada device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8eca4350 regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0x8ed11602 irq_create_mapping_affinity EXPORT_SYMBOL_GPL vmlinux 0x8ed216cf dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x8ed5b1e4 crypto_stats_kpp_generate_public_key EXPORT_SYMBOL_GPL vmlinux 0x8edc2c48 palmas_ext_control_req_config EXPORT_SYMBOL_GPL vmlinux 0x8ee3ebbb tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x8ee45ebd sdio_retune_crc_disable EXPORT_SYMBOL_GPL vmlinux 0x8eeb70ab tty_ldisc_deref 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 0x8eefa7ae wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0x8ef7785a fuse_dev_alloc_install EXPORT_SYMBOL_GPL vmlinux 0x8ef8e350 __pci_hp_register EXPORT_SYMBOL_GPL vmlinux 0x8efb2199 usb_free_urb EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x8f00e4ba fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp EXPORT_SYMBOL_GPL vmlinux 0x8f074aff dma_request_chan EXPORT_SYMBOL_GPL vmlinux 0x8f0e4775 acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x8f101592 nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x8f25d264 regmap_get_raw_read_max EXPORT_SYMBOL_GPL vmlinux 0x8f28e859 acpi_dev_clear_dependencies 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 0x8f4d9ddc cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x8f4f6efb icc_node_create EXPORT_SYMBOL_GPL vmlinux 0x8f522cc4 mpc8xxx_spi_rx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0x8f549b5b blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x8f5ca99d devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f6dcdb2 do_splice_from EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8f8d3f8f inet6_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fc05b8c crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fd4f390 security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0x8fed8da9 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x8fc5200d ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x8fd38a50 dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0x8ff3c68e dpbp_disable EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points EXPORT_SYMBOL_GPL vmlinux 0x8ffdd156 fb_deferred_io_fsync EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x9001a2e7 ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x9023ee14 pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0x902e8ed2 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x90300d62 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x902a3bc5 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x9032e62d ata_sas_port_init EXPORT_SYMBOL_GPL vmlinux 0x9037c10a __irq_domain_add EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x904c0172 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x9055a292 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x905894e0 devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0x9058d71f xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x9059d310 spi_async EXPORT_SYMBOL_GPL vmlinux 0x905d346a ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x90614d83 crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put EXPORT_SYMBOL_GPL vmlinux 0x906c9e67 phy_save_page EXPORT_SYMBOL_GPL vmlinux 0x907260f6 of_platform_depopulate EXPORT_SYMBOL_GPL vmlinux 0x90737d97 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x90761abc ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0x9085e773 iommu_uapi_sva_bind_gpasid EXPORT_SYMBOL_GPL vmlinux 0x908f1f30 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x90933e0b hwmon_device_register EXPORT_SYMBOL_GPL vmlinux 0x909e102e serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x90a1f833 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x90a4af07 validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90aca80b crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x90b744c7 gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io EXPORT_SYMBOL_GPL vmlinux 0x90ba3248 gnttab_foreach_grant_in_range EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90c85836 cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x90d1cdb5 pm_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x90df5dae ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x90e64609 devfreq_event_get_edev_count EXPORT_SYMBOL_GPL vmlinux 0x90e6608c cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x90ea2c5f devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x90eeedec ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x90eb2833 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x90f846eb __nf_ip6_route EXPORT_SYMBOL_GPL vmlinux 0x90ff4b1e bsg_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x91017857 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x911649f6 inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x9116dae7 mtk_is_virt_gpio EXPORT_SYMBOL_GPL vmlinux 0x913262a3 pci_create_root_bus EXPORT_SYMBOL_GPL vmlinux 0x9134b1de dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x913b23c5 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x914462c0 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x91489671 kvm_set_memory_region EXPORT_SYMBOL_GPL vmlinux 0x914ffab7 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x916c5f08 __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0x9175a3f3 da9052_disable_irq_nosync EXPORT_SYMBOL_GPL vmlinux 0x91776785 rockchip_pcie_cfg_configuration_accesses EXPORT_SYMBOL_GPL vmlinux 0x91859973 genphy_c45_read_pma @@ -23534,104 +23591,120 @@ EXPORT_SYMBOL_GPL vmlinux 0x919345f5 serial8250_update_uartclk EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x91966ee0 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x91b2cc8d regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval EXPORT_SYMBOL_GPL vmlinux 0x91b9a438 genphy_c45_read_link EXPORT_SYMBOL_GPL vmlinux 0x91bcba7e serial8250_tx_chars EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource -EXPORT_SYMBOL_GPL vmlinux 0x91cba2ba ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x91cce90b metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0x91dbf116 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0x91dc62a2 ahci_set_em_messages EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist +EXPORT_SYMBOL_GPL vmlinux 0x91e3a68f crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x91e8fa60 nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean EXPORT_SYMBOL_GPL vmlinux 0x91efdc8e devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x91ffce57 fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0x9203d3bc of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x9204955f crypto_unregister_ahashes EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92629f6f bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs EXPORT_SYMBOL_GPL vmlinux 0x927ef71a virtqueue_kick EXPORT_SYMBOL_GPL vmlinux 0x928bfac2 mpc8xxx_spi_tx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0x928ebcd4 register_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0x92923feb pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x929bd723 security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg EXPORT_SYMBOL_GPL vmlinux 0x92bebfa3 __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x92ce48f3 ata_host_register EXPORT_SYMBOL_GPL vmlinux 0x92d0ef01 efivar_entry_set_get_size EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add EXPORT_SYMBOL_GPL vmlinux 0x92d3be5c acpi_get_and_request_gpiod EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e35c92 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x92e7b418 nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work EXPORT_SYMBOL_GPL vmlinux 0x92e9c074 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x92eb1951 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x92ebb4b5 bgmac_adjust_link EXPORT_SYMBOL_GPL vmlinux 0x92ee10f7 rio_request_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0x92f2d408 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x930141d7 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x93082b87 ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring -EXPORT_SYMBOL_GPL vmlinux 0x930c83b8 sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0x931af40b __percpu_down_read EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x93302e37 device_store_int EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9340e0a3 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x93460602 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9353cc89 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x93651160 perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0x936596a0 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x937b5153 ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x937bc75e pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0x937c46e4 ahci_reset_em EXPORT_SYMBOL_GPL vmlinux 0x937d07fe iommu_aux_get_pasid EXPORT_SYMBOL_GPL vmlinux 0x938f5ff8 dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0x93920dd8 crypto_unregister_instance EXPORT_SYMBOL_GPL vmlinux 0x93a8942a of_address_to_resource EXPORT_SYMBOL_GPL vmlinux 0x93ac6009 regulator_disable_regmap EXPORT_SYMBOL_GPL vmlinux 0x93b6ec10 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x93c3f9d7 clk_hw_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93ce7705 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x93ce6df1 evm_verifyxattr EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x93d3db8b __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x93d48495 cpufreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x93d68bd0 usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0x93dedfb8 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x93e313b4 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x93e57751 __clk_mux_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap EXPORT_SYMBOL_GPL vmlinux 0x94073830 of_dma_router_register EXPORT_SYMBOL_GPL vmlinux 0x940fa46f dma_vunmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x94118676 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9421b19c devlink_param_unpublish EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x9427601b crypto_alloc_acomp EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x94361e96 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x94312b5e crypto_unregister_shashes EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x943c64b3 gpiod_set_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event EXPORT_SYMBOL_GPL vmlinux 0x9444f9ae device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x944ebc34 crypto_register_scomps EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock -EXPORT_SYMBOL_GPL vmlinux 0x946d07b4 fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x947afe9d do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x94834400 __raw_v6_lookup EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a401db vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x94af3887 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x94b0808d clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x94c87e95 crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0x94caf7f5 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x94d2ce01 devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x94d8a29a i2c_handle_smbus_host_notify EXPORT_SYMBOL_GPL vmlinux 0x94dd71af __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x94e08612 call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x94f5a76d access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0x94fbdb02 gpiochip_unlock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x94fc8e8d nd_cmd_out_size EXPORT_SYMBOL_GPL vmlinux 0x94ffb486 vmf_insert_pfn_pmd_prot EXPORT_SYMBOL_GPL vmlinux 0x9501fef0 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x9504dac8 __kvm_set_memory_region EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x951eee1e gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x952100b2 platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0x95237530 fsl_mc_bus_dpsw_type EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952b75f1 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x9533189d clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0x953b8940 debugfs_create_regset32 EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds EXPORT_SYMBOL_GPL vmlinux 0x953e7fed hisi_clk_register_phase -EXPORT_SYMBOL_GPL vmlinux 0x954507a4 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x954b833e dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init @@ -23639,75 +23712,78 @@ EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free EXPORT_SYMBOL_GPL vmlinux 0x9592822f generic_fh_to_dentry EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x959a9bba pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x959b60a5 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x95aad786 mmc_send_tuning EXPORT_SYMBOL_GPL vmlinux 0x95af93df cpci_hp_unregister_bus EXPORT_SYMBOL_GPL vmlinux 0x95b05e13 bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0x95ba930e devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free EXPORT_SYMBOL_GPL vmlinux 0x95bcb49d extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x95d59661 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x95d7d85b ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x95d75c7c __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x95e2c31e sdio_memcpy_fromio EXPORT_SYMBOL_GPL vmlinux 0x95e6d65d bsg_remove_queue EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size EXPORT_SYMBOL_GPL vmlinux 0x95f6a828 max8997_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x960019fe adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x960092cf ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x960b51f2 mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0x960bbb17 tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x9620281a xen_remap_vma_range EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative EXPORT_SYMBOL_GPL vmlinux 0x96276c43 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x962b7b4b regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x96332b95 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x96336db9 ata_bmdma_dumb_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x963b558c dev_pm_opp_put_clkname EXPORT_SYMBOL_GPL vmlinux 0x9649f17f exportfs_encode_inode_fh EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier EXPORT_SYMBOL_GPL vmlinux 0x965a33fe kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x9670e6ee aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x96779073 __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0x967e084a devm_rtc_allocate_device EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x96a00769 devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0x96a8ac5a of_property_read_u64_index EXPORT_SYMBOL_GPL vmlinux 0x96ad2021 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x96b8a1ca platform_device_add EXPORT_SYMBOL_GPL vmlinux 0x96c099eb uprobe_register_refctr EXPORT_SYMBOL_GPL vmlinux 0x96c16da7 irq_gc_ack_set_bit EXPORT_SYMBOL_GPL vmlinux 0x96cca6c9 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x96d26bbc netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x96fd8f98 sched_trace_rq_avg_dl EXPORT_SYMBOL_GPL vmlinux 0x9700bfd7 acpi_device_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x9704b461 pm_generic_restore EXPORT_SYMBOL_GPL vmlinux 0x970d5169 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x97133053 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw EXPORT_SYMBOL_GPL vmlinux 0x97168c56 ahci_platform_disable_phys -EXPORT_SYMBOL_GPL vmlinux 0x97182360 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x97217ea8 skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x972792a8 ata_pci_sff_activate_host EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9760a312 kvm_release_page_clean EXPORT_SYMBOL_GPL vmlinux 0x97620cac ata_sff_dma_pause EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range EXPORT_SYMBOL_GPL vmlinux 0x97641ba9 blk_req_zone_write_trylock EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9782fc8b ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0x9784f909 usb_deregister EXPORT_SYMBOL_GPL vmlinux 0x97860879 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x97939cc5 devlink_resource_register EXPORT_SYMBOL_GPL vmlinux 0x97971f83 srcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x979affb3 xhci_get_ep_ctx EXPORT_SYMBOL_GPL vmlinux 0x97a90170 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x97b648a5 ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0x97c03385 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x97b257de crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0x97c81efc device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x97cde1ce udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x97d31924 scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97dfd494 ata_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0x97e6cdd1 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x97f3b8cf blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x98058a2d fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x9806cefe shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x97f7547a rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x9831f649 crypto_unregister_shash EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x984377bc __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9850e5ae sdio_release_irq EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x985df717 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x98629e54 device_phy_find_device EXPORT_SYMBOL_GPL vmlinux 0x9865853e __phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0x9874d139 report_iommu_fault EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier @@ -23719,74 +23795,70 @@ EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str EXPORT_SYMBOL_GPL vmlinux 0x98aea1a5 iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs EXPORT_SYMBOL_GPL vmlinux 0x98b7548f ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x98bab37f regulator_suspend_disable EXPORT_SYMBOL_GPL vmlinux 0x98bb5fce devm_bitmap_alloc EXPORT_SYMBOL_GPL vmlinux 0x98c14950 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x98c1a491 __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x98d06d42 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x98cba9c6 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x98de6d71 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x98eadb4f __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x98ed9eb9 devm_krealloc EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu EXPORT_SYMBOL_GPL vmlinux 0x98f4d194 dw_pcie_own_conf_map_bus EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios EXPORT_SYMBOL_GPL vmlinux 0x99111ab8 amba_ahb_device_add EXPORT_SYMBOL_GPL vmlinux 0x99184ca5 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x99188d29 strp_done EXPORT_SYMBOL_GPL vmlinux 0x99255d61 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x9927be26 apply_to_existing_page_range EXPORT_SYMBOL_GPL vmlinux 0x9933ae87 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x99344b3a xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0x993521d8 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x993c47fe scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x9947912f devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x994d5e35 devfreq_get_devfreq_by_node EXPORT_SYMBOL_GPL vmlinux 0x994fdc01 fsl_mc_bus_dpseci_type EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg EXPORT_SYMBOL_GPL vmlinux 0x99839355 of_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x99905452 spi_bus_lock EXPORT_SYMBOL_GPL vmlinux 0x9996cb4d dprc_open -EXPORT_SYMBOL_GPL vmlinux 0x99bbef17 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x99a36873 regulator_get_current_limit EXPORT_SYMBOL_GPL vmlinux 0x99db25ff usb_of_get_interface_node EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99e0b3ce __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x99ecdaf9 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x99ed309e do_xdp_generic EXPORT_SYMBOL_GPL vmlinux 0x99ee6121 fscrypt_ioctl_add_key EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99f8b4d5 shmem_truncate_range EXPORT_SYMBOL_GPL vmlinux 0x9a01972a pm_generic_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name EXPORT_SYMBOL_GPL vmlinux 0x9a161f98 od_register_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x9a1de1a2 __mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining EXPORT_SYMBOL_GPL vmlinux 0x9a2759c6 make_device_exclusive_range -EXPORT_SYMBOL_GPL vmlinux 0x9a28c491 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x9a35af9d __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x9a4d7be1 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0x9a57bbb7 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x9a4f3cd6 xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check EXPORT_SYMBOL_GPL vmlinux 0x9a8c652d fuse_dev_release EXPORT_SYMBOL_GPL vmlinux 0x9a973216 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x9a985c53 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x9a97b604 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x9a987867 rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0x9aa5c75a of_modalias_node EXPORT_SYMBOL_GPL vmlinux 0x9aac3e78 irq_domain_free_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops EXPORT_SYMBOL_GPL vmlinux 0x9ad66ad7 blk_mq_alloc_sq_tag_set EXPORT_SYMBOL_GPL vmlinux 0x9ad964b3 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x9adfc78f kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0x9ae34b4f ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af06ee9 ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw EXPORT_SYMBOL_GPL vmlinux 0x9b0032b8 blk_mq_complete_request_remote EXPORT_SYMBOL_GPL vmlinux 0x9b065ca7 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x9b0b36fc locks_release_private EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start EXPORT_SYMBOL_GPL vmlinux 0x9b0ef1c6 xhci_run EXPORT_SYMBOL_GPL vmlinux 0x9b1902ec dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x9b1f5695 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x9b2bb8a2 gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0x9b300148 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x9b522008 regmap_can_raw_write EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b5e0e81 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x9b573f42 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x9b65866e perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6c7c86 regmap_exit EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio EXPORT_SYMBOL_GPL vmlinux 0x9b7ab8a8 pci_scan_child_bus @@ -23795,135 +23867,142 @@ EXPORT_SYMBOL_GPL vmlinux 0x9b8eb743 tty_buffer_request_room EXPORT_SYMBOL_GPL vmlinux 0x9b8fcc71 scsi_autopm_put_device EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b944c67 fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x9b9674a4 fscrypt_mergeable_bio EXPORT_SYMBOL_GPL vmlinux 0x9b971833 __regmap_init_i2c EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9ba61e20 gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0x9ba6d365 virtqueue_add_sgs EXPORT_SYMBOL_GPL vmlinux 0x9bc00a74 pci_epc_write_header EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9bd82fc2 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0x9bd9d9fb sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui EXPORT_SYMBOL_GPL vmlinux 0x9bee7b09 virtqueue_get_used_addr EXPORT_SYMBOL_GPL vmlinux 0x9bf1dc96 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x9c09b8ca crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0x9c0efe61 tpm_pm_resume EXPORT_SYMBOL_GPL vmlinux 0x9c149893 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x9c1c8cda thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x9c2320aa stmpe_disable EXPORT_SYMBOL_GPL vmlinux 0x9c234df4 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x9c2f9a6d bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x9c331183 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x9c367be1 kvm_io_bus_get_dev EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq EXPORT_SYMBOL_GPL vmlinux 0x9c450c71 regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0x9c4b3ee6 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x9c4eca37 regulator_enable EXPORT_SYMBOL_GPL vmlinux 0x9c51b078 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x9c596a45 device_match_of_node EXPORT_SYMBOL_GPL vmlinux 0x9c60c744 tty_port_register_device EXPORT_SYMBOL_GPL vmlinux 0x9c6987e4 input_ff_flush EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c8c8c47 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0x9c984b5e fsl_mc_bus_dpdmux_type EXPORT_SYMBOL_GPL vmlinux 0x9c9b1238 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x9ca982e4 crypto_get_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9cb6fab4 gfn_to_pfn_prot EXPORT_SYMBOL_GPL vmlinux 0x9cbb48ce devm_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cca5cf6 device_match_any EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop EXPORT_SYMBOL_GPL vmlinux 0x9cd8ed53 devm_rtc_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x9cd900c8 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x9ceb388c raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x9ce35d3b sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0x9cee993e dev_pm_opp_adjust_voltage EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cf87c02 regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x9cfb4b79 list_lru_count_one EXPORT_SYMBOL_GPL vmlinux 0x9d0383b4 acct_bioset_exit EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data EXPORT_SYMBOL_GPL vmlinux 0x9d0cbe5f anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0x9d0d5f05 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x9d268d8c gpiod_direction_input EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x9d3ab31d sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x9d3e5100 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x9d40ba42 kvm_vcpu_gfn_to_hva EXPORT_SYMBOL_GPL vmlinux 0x9d43b9f8 relay_switch_subbuf EXPORT_SYMBOL_GPL vmlinux 0x9d462cf9 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x9d4fcd6b trace_event_ignore_this_pid EXPORT_SYMBOL_GPL vmlinux 0x9d5eb33d __fsl_mc_driver_register EXPORT_SYMBOL_GPL vmlinux 0x9d7a4466 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x9d82fd61 __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x9d8847b9 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x9d8aac0f lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x9d8c1336 __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x9d979a3f iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0x9db6550f ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9d8f8241 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x9da81118 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0x9db2f108 ata_host_put EXPORT_SYMBOL_GPL vmlinux 0x9dc15364 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x9dc84f99 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x9dd4467d trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0x9dd827dd debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x9de23ea8 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x9df508fb synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0x9df5574d __fsnotify_parent EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e040b8c __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x9e047ec0 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x9e1a0a2c xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x9e0cf439 device_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x9e1a4030 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x9e21448e i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0x9e251e4e dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x9e3e2e3d sata_scr_write EXPORT_SYMBOL_GPL vmlinux 0x9e3fdc39 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x9e44a9cc stmpe_reg_read EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field EXPORT_SYMBOL_GPL vmlinux 0x9e60dde9 dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x9e6584cd devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x9e746287 tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x9e76d5f8 dpcon_disable EXPORT_SYMBOL_GPL vmlinux 0x9e78159f pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x9e9a67c7 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x9e9260a0 dax_layout_busy_page_range EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x9eb0d36b synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0x9eb8cd38 genphy_c45_check_and_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x9ec37da6 devm_kmemdup EXPORT_SYMBOL_GPL vmlinux 0x9ed52e0c pci_acpi_set_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ee305dc nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9eed2247 crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0x9ef5228a rockchip_pcie_deinit_phys EXPORT_SYMBOL_GPL vmlinux 0x9f083c58 acpi_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0x9f0a84d5 usb_hcd_pci_remove EXPORT_SYMBOL_GPL vmlinux 0x9f0b74a8 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x9f289dd3 ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x9f419805 ima_inode_hash 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 0x9f5c6dc2 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9f66046e crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x9f8ab58f msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x9f66926f of_find_spi_device_by_node EXPORT_SYMBOL_GPL vmlinux 0x9fa0c826 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x9fb61af9 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x9fa1b4f4 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write EXPORT_SYMBOL_GPL vmlinux 0x9fc7b146 nvdimm_volatile_region_create EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd70a3c addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x9fe5eca4 icc_get -EXPORT_SYMBOL_GPL vmlinux 0x9fe821e7 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x9fdc7f83 spi_controller_resume EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff348bd skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0x9ffcad0b pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x9ffe7d01 mmc_cmdq_disable EXPORT_SYMBOL_GPL vmlinux 0x9fffc842 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xa00a0438 crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa01cf58f sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xa027526d xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0xa026ba92 regulator_get_voltage EXPORT_SYMBOL_GPL vmlinux 0xa02cb537 iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0xa0389212 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0xa049fc28 crypto_alloc_skcipher EXPORT_SYMBOL_GPL vmlinux 0xa04c9cf3 pci_load_and_free_saved_state EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock EXPORT_SYMBOL_GPL vmlinux 0xa05c98b8 pinctrl_generic_get_group EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable -EXPORT_SYMBOL_GPL vmlinux 0xa074f192 bio_start_io_acct EXPORT_SYMBOL_GPL vmlinux 0xa07d80e7 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0xa07dc176 security_path_symlink EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa089929f vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xa087c93e l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa0923ec5 blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0xa0a07dcd __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xa0b972aa mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa0a660b8 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xa0a95626 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xa0d0328a mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0xa0d0d8b8 dev_pm_opp_get_opp_count EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages EXPORT_SYMBOL_GPL vmlinux 0xa0d8e7ad attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0xa0df472a crypto_create_tfm_node EXPORT_SYMBOL_GPL vmlinux 0xa0e732da md_kick_rdev_from_array EXPORT_SYMBOL_GPL vmlinux 0xa0ee0d52 kthread_mod_delayed_work EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type EXPORT_SYMBOL_GPL vmlinux 0xa11ed3aa vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0xa149775c device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xa1294805 tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0xa151b0ec nvdimm_cmd_mask EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked @@ -23931,44 +24010,43 @@ EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize EXPORT_SYMBOL_GPL vmlinux 0xa175c996 hvc_poll EXPORT_SYMBOL_GPL vmlinux 0xa178b317 edac_mc_alloc EXPORT_SYMBOL_GPL vmlinux 0xa17df388 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0xa19d604b dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xa1aa55e8 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0xa1b8872e crypto_dequeue_request EXPORT_SYMBOL_GPL vmlinux 0xa1c130f7 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xa1c33ffe rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1c34473 icc_provider_add EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty EXPORT_SYMBOL_GPL vmlinux 0xa1d6ac20 class_destroy EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing EXPORT_SYMBOL_GPL vmlinux 0xa1d8a1fb debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xa1f7d8a5 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0xa1da59b8 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xa1dcdd96 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xa1f27b51 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xa1fe1183 regulator_set_voltage EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa22bce41 devm_platform_get_irqs_affinity EXPORT_SYMBOL_GPL vmlinux 0xa22d9548 trace_seq_to_user EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2745af8 skb_gso_validate_mac_len EXPORT_SYMBOL_GPL vmlinux 0xa276b6e4 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0xa27a3666 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa27a86f4 regmap_register_patch EXPORT_SYMBOL_GPL vmlinux 0xa27d6511 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xa292808e crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xa2954ba5 ata_msleep EXPORT_SYMBOL_GPL vmlinux 0xa2a7e4d6 spi_mem_dirmap_create EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xa2aff60c regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0xa2b4c556 pl08x_filter_id EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start EXPORT_SYMBOL_GPL vmlinux 0xa2c22269 iommu_page_response EXPORT_SYMBOL_GPL vmlinux 0xa2c43ec1 genphy_c45_read_lpa EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2e46533 spi_bus_unlock EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported EXPORT_SYMBOL_GPL vmlinux 0xa30d3bb6 generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0xa30e1210 mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0xa31ad894 dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0xa31c5b25 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa3167b2f crypto_unregister_aeads EXPORT_SYMBOL_GPL vmlinux 0xa321fd68 devm_pm_opp_set_supported_hw EXPORT_SYMBOL_GPL vmlinux 0xa329a8c3 acpi_subsys_prepare EXPORT_SYMBOL_GPL vmlinux 0xa3300e5e is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0xa3375738 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa3415940 inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0xa3462f4b usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xa3591d46 bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted EXPORT_SYMBOL_GPL vmlinux 0xa3716a2f rio_map_outb_region EXPORT_SYMBOL_GPL vmlinux 0xa374cc34 clk_register_fixed_rate @@ -23980,95 +24058,79 @@ EXPORT_SYMBOL_GPL vmlinux 0xa38c1436 cpu_bit_bitmap EXPORT_SYMBOL_GPL vmlinux 0xa38c43c4 rio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xa3931c0d usb_create_shared_hcd EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a04ded wakeup_sources_walk_next EXPORT_SYMBOL_GPL vmlinux 0xa3a3978c kthread_park EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3ba35e7 ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0xa3c262f9 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xa3cfef4f vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xa3ed810d divider_ro_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xa3edd280 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xa3f059c9 xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3f6a62c __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0xa3ffe468 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa3fedb86 icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port EXPORT_SYMBOL_GPL vmlinux 0xa404af5a md_find_rdev_nr_rcu EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy EXPORT_SYMBOL_GPL vmlinux 0xa42518a0 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0xa43568a5 __sync_filesystem EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data EXPORT_SYMBOL_GPL vmlinux 0xa468e0a9 da903x_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xa46da624 dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xa47d00d7 sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0xa4818901 bus_rescan_devices EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx EXPORT_SYMBOL_GPL vmlinux 0xa484600b fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0xa4a0034e skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xa4a9b6b1 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xa4a9eee0 gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0xa4c80e79 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xa4c856a9 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xa4d287a2 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xa4c68995 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xa4cc5fc5 sched_trace_cfs_rq_avg EXPORT_SYMBOL_GPL vmlinux 0xa4df75ee tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xa4e75ac0 sata_std_hardreset EXPORT_SYMBOL_GPL vmlinux 0xa4e8ec1e fscrypt_ioctl_remove_key EXPORT_SYMBOL_GPL vmlinux 0xa4e9fa85 ahci_platform_enable_clks EXPORT_SYMBOL_GPL vmlinux 0xa4ea291c iommu_group_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0xa4edb8b7 wm8350_set_bits EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get EXPORT_SYMBOL_GPL vmlinux 0xa4f5c2d2 amba_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xa50ecef6 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xa51410a9 icc_node_del EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa528a8d2 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xa522c586 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xa530f761 nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa54fa838 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xa552ba53 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xa5561cd4 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xa53fcc5b do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xa5574fbd kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xa55922d9 __traceiter_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0xa561623e dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0xa563679d sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0xa56c5a3e skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0xa57b2c0f ata_pci_bmdma_clear_simplex EXPORT_SYMBOL_GPL vmlinux 0xa57cdc1f pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xa58d3f06 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xa59aeb30 meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0xa5ad9868 netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0xa5af45bc scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported EXPORT_SYMBOL_GPL vmlinux 0xa5c0e3f5 fsl_mc_bus_dpdmai_type EXPORT_SYMBOL_GPL vmlinux 0xa5cae5db devres_remove EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5deed65 ata_pci_device_resume EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f4454c pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xa5f5cb78 bpf_map_put EXPORT_SYMBOL_GPL vmlinux 0xa60530c9 rio_add_device EXPORT_SYMBOL_GPL vmlinux 0xa6086f2f key_set_timeout EXPORT_SYMBOL_GPL vmlinux 0xa60a24fd __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0xa60f3a71 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xa639beff tcp_ca_openreq_child EXPORT_SYMBOL_GPL vmlinux 0xa63e2867 meson_vid_pll_div_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xa648426f __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xa6521e6f mtk_pinconf_adv_drive_set_raw EXPORT_SYMBOL_GPL vmlinux 0xa656f26a reset_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0xa659ab3f xenbus_dev_probe EXPORT_SYMBOL_GPL vmlinux 0xa65ee0fb rt_mutex_unlock EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa6602726 scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0xa660857c of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0xa662fe44 __inode_attach_wb EXPORT_SYMBOL_GPL vmlinux 0xa66e2337 dpcon_set_notification EXPORT_SYMBOL_GPL vmlinux 0xa67d5372 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0xa67ef4c6 wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0xa69c3ef4 bgmac_enet_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa69d713a gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xa69f646a gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xa6961379 ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name -EXPORT_SYMBOL_GPL vmlinux 0xa6a1ad8c devm_clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0xa6a3243a __auxiliary_driver_register EXPORT_SYMBOL_GPL vmlinux 0xa6a61555 elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap @@ -24079,265 +24141,245 @@ EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split EXPORT_SYMBOL_GPL vmlinux 0xa6bb751c __bio_add_page EXPORT_SYMBOL_GPL vmlinux 0xa6c60c52 serial8250_request_dma EXPORT_SYMBOL_GPL vmlinux 0xa6cc1837 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xa6d3cd6d vcpu_put EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code EXPORT_SYMBOL_GPL vmlinux 0xa6e11ec0 fsl_mc_portal_free EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync EXPORT_SYMBOL_GPL vmlinux 0xa6e6836d dma_buf_vunmap EXPORT_SYMBOL_GPL vmlinux 0xa6e74bcf serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa6e9670d crypto_unregister_ahash EXPORT_SYMBOL_GPL vmlinux 0xa6ecca0a usb_pipe_type_check EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0xa6f187d5 dev_pm_opp_set_supported_hw EXPORT_SYMBOL_GPL vmlinux 0xa6f502c7 pci_epf_type_add_cfs EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa718c640 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa7159e22 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xa727a10b skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0xa72e7b2b devm_regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0xa72f56f3 pci_probe_reset_slot EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock EXPORT_SYMBOL_GPL vmlinux 0xa735f392 xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xa758cf00 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xa759df96 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xa74029ba crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa7462be5 pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0xa75cc1a6 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xa761ce3f vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0xa7667e3f tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0xa768de9e regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xa760c60e mark_page_dirty_in_slot EXPORT_SYMBOL_GPL vmlinux 0xa76ee466 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0xa777e724 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa76f4343 shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xa7856098 cpu_topology EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault EXPORT_SYMBOL_GPL vmlinux 0xa78e38de nvmem_cell_read_u16 EXPORT_SYMBOL_GPL vmlinux 0xa78eb79a pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0xa7bd8f01 fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0xa7c4e143 pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0xa79e3e1e inet_hash EXPORT_SYMBOL_GPL vmlinux 0xa7c6a286 of_reserved_mem_device_init_by_idx -EXPORT_SYMBOL_GPL vmlinux 0xa7c8d143 scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7d21960 sdio_writeb EXPORT_SYMBOL_GPL vmlinux 0xa7d30324 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0xa7e9278a fwnode_graph_get_remote_node EXPORT_SYMBOL_GPL vmlinux 0xa7ea253e ti_sci_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xa7f3cc2a __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xa8119986 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0xa81d88ed thermal_zone_bind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0xa835120a meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0xa84bb5ae sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xa84d363b sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa85dcd84 device_get_child_node_count EXPORT_SYMBOL_GPL vmlinux 0xa86359ca irq_chip_set_wake_parent EXPORT_SYMBOL_GPL vmlinux 0xa866746e param_set_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0xa87c866f unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa8842acf crypto_unregister_skcipher EXPORT_SYMBOL_GPL vmlinux 0xa896970d pm_genpd_remove_device EXPORT_SYMBOL_GPL vmlinux 0xa8a5712c rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xa8ab0a06 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xa8a6db01 inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0xa8b26d81 handle_fasteoi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xa8b3aaa6 ahci_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0xa8c643d3 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xa8d5c224 ping_close EXPORT_SYMBOL_GPL vmlinux 0xa8d974cc hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0xa8f39399 stmpe_set_altfunc EXPORT_SYMBOL_GPL vmlinux 0xa901a1ad regulator_set_ramp_delay_regmap EXPORT_SYMBOL_GPL vmlinux 0xa91f39bf ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa92a3011 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xa92a7b9f alloc_page_buffers EXPORT_SYMBOL_GPL vmlinux 0xa92ffefd regulator_set_soft_start_regmap EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa94a993a regmap_get_val_endian EXPORT_SYMBOL_GPL vmlinux 0xa94e72ac devm_ti_sci_get_of_resource EXPORT_SYMBOL_GPL vmlinux 0xa952c337 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0xa95396cf ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0xa9664167 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xa96c4abc regulator_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler EXPORT_SYMBOL_GPL vmlinux 0xa977e730 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xa97eb022 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xa98d8e8a __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put EXPORT_SYMBOL_GPL vmlinux 0xa99ff233 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xa9b6532d switchdev_handle_fdb_del_to_device -EXPORT_SYMBOL_GPL vmlinux 0xa9d718ac netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9b813be __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xa9b888e7 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xa9d4a51a usb_hcd_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister EXPORT_SYMBOL_GPL vmlinux 0xa9ef3528 i2c_acpi_new_device EXPORT_SYMBOL_GPL vmlinux 0xa9f0c2df pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xa9f4781b ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0xaa06e322 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0xaa0b777a sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xaa15161a clk_hw_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0xaa210fe9 tty_buffer_unlock_exclusive EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks EXPORT_SYMBOL_GPL vmlinux 0xaa25b1b3 pci_cfg_access_trylock EXPORT_SYMBOL_GPL vmlinux 0xaa261500 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xaa4c1ecb ahci_dev_classify EXPORT_SYMBOL_GPL vmlinux 0xaa508ad1 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xaa519b5f ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0xaa60273a devm_memremap_pages EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa6b93d2 dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0xaa768eaf __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xaa7c4a60 crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0xaa825aed of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0xaa8757e6 ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xaa87b4ca dma_mmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xaa87d488 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0xaa9a257d ahci_stop_engine EXPORT_SYMBOL_GPL vmlinux 0xaaa72571 fuse_sync_release EXPORT_SYMBOL_GPL vmlinux 0xaaa748bf meson_clk_pcie_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0xaaa7b592 regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaab1d0a7 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xaab9c41b devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xaaaed09f ata_link_next EXPORT_SYMBOL_GPL vmlinux 0xaac257e0 kstrdup_quotable_file EXPORT_SYMBOL_GPL vmlinux 0xaac6034e acpi_pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xaad23d02 ata_platform_remove_one EXPORT_SYMBOL_GPL vmlinux 0xab028c90 create_signature EXPORT_SYMBOL_GPL vmlinux 0xab03580c driver_deferred_probe_check_state EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data -EXPORT_SYMBOL_GPL vmlinux 0xab199ae3 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0xab0c8f48 device_link_remove EXPORT_SYMBOL_GPL vmlinux 0xab1c68fc edac_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab20f1aa net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xab226a16 sdio_set_block_size EXPORT_SYMBOL_GPL vmlinux 0xab23c53d xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xab294c37 mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xab2d4c4d blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0xab3f573e uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xab417174 xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0xab468155 fat_search_long EXPORT_SYMBOL_GPL vmlinux 0xab48be14 pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0xab4d68e3 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0xab58383b sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xab7a6a5a crypto_register_template EXPORT_SYMBOL_GPL vmlinux 0xab7ef18a __percpu_init_rwsem EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare EXPORT_SYMBOL_GPL vmlinux 0xab87861a cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xab9467c5 crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaba474c8 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xaba4e5d1 perf_event_period EXPORT_SYMBOL_GPL vmlinux 0xababb96d class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xabaf8fd1 k3_ringacc_dmarings_init EXPORT_SYMBOL_GPL vmlinux 0xabb7b440 md_submit_discard_bio EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabc66167 crypto_stats_rng_generate EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xabddf750 init_dummy_netdev EXPORT_SYMBOL_GPL vmlinux 0xabeaaba6 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xabee4844 devlink_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0xabf06e66 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xac03d8c7 phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0xac0a3819 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xac212c3a unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xac2b7d5f blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xac3b4689 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xac3c214c switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0xac44ef47 raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0xac4b43c9 devm_tegra_memory_controller_get EXPORT_SYMBOL_GPL vmlinux 0xac4c934b fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xac587feb __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0xac651e8d bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0xac7481ed fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xac7d7bdb gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xac859009 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xac85d516 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xac771bc1 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xac7b6dec imx_pinctrl_sc_ipc_init EXPORT_SYMBOL_GPL vmlinux 0xac90b60c pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xacacb711 ata_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xacd488d2 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xaceff56c kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xacdff6e4 devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0xacf01f5c devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xad0560a1 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xacf89733 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xacf91635 i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock EXPORT_SYMBOL_GPL vmlinux 0xad143c01 nvdimm_bus_check_dimm_count EXPORT_SYMBOL_GPL vmlinux 0xad1aa4aa blkg_conf_finish EXPORT_SYMBOL_GPL vmlinux 0xad1bb716 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xad1bbf71 dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xad24fa25 acpi_register_gsi EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xad2a237d serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xad2ef044 nf_queue EXPORT_SYMBOL_GPL vmlinux 0xad363d9d devm_led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xad47a4cc pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xad4e3a05 device_unregister EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init -EXPORT_SYMBOL_GPL vmlinux 0xad59f5e9 netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad6faf69 spi_statistics_add_transfer_stats EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0xad80178f dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0xad895ef5 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xad85a2d0 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xad8822ad rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0xad8aa50a thermal_zone_of_get_sensor_id EXPORT_SYMBOL_GPL vmlinux 0xad8fea69 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0xad98d62f blk_insert_cloned_request EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadaf56ef gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0xadb52905 pci_epc_map_msi_irq EXPORT_SYMBOL_GPL vmlinux 0xadb91ccf fat_update_time EXPORT_SYMBOL_GPL vmlinux 0xadc14233 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0xadc261ca regulator_put EXPORT_SYMBOL_GPL vmlinux 0xadc9e589 dev_pm_opp_put_prop_name EXPORT_SYMBOL_GPL vmlinux 0xadcc268d dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0xadd48028 crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0xadd67925 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xadd81dd7 sdio_release_irq EXPORT_SYMBOL_GPL vmlinux 0xaddd505b kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0xadfe4a7e __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xadddd1d5 devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae2e3601 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xae235df4 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xae248011 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xae24fe44 scsi_host_busy_iter EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init 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 0xae69b1c1 usermodehelper_read_unlock EXPORT_SYMBOL_GPL vmlinux 0xae77b3b1 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xae78337f gpiod_get_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae7e8288 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xae8691d4 __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xae97c841 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xae902a63 devm_device_remove_group EXPORT_SYMBOL_GPL vmlinux 0xaeaf9408 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xaec4c585 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xaebdccb9 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xaec3f747 blk_rq_prep_clone EXPORT_SYMBOL_GPL vmlinux 0xaed04b47 irqchip_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0xaed0e5b9 usb_get_from_anchor EXPORT_SYMBOL_GPL vmlinux 0xaed2a3ed free_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0xaedf788b ata_sff_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0xaeeb9a4d xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0xaeede69e crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0xaf025c17 fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0xaf03f874 hvc_instantiate EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf0b1818 task_user_regset_view EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init EXPORT_SYMBOL_GPL vmlinux 0xaf19bb40 devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0xaf1a331c crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0xaf1e14c5 watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0xaf2540cf virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0xaf28c93d cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf34e8d3 __pm_relax EXPORT_SYMBOL_GPL vmlinux 0xaf3649b7 iomap_page_mkwrite 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 0xaf587398 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xaf61c03a ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0xaf58e47e meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xaf5b624f __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xaf603462 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xaf68f96a skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xaf691ab6 gpiochip_add_pin_range EXPORT_SYMBOL_GPL vmlinux 0xaf6de6e0 irq_get_default_host EXPORT_SYMBOL_GPL vmlinux 0xaf6e53d7 of_add_property EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device EXPORT_SYMBOL_GPL vmlinux 0xaf990bb0 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0xaf995818 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0xaf9ee918 pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn EXPORT_SYMBOL_GPL vmlinux 0xafb07b09 d_walk +EXPORT_SYMBOL_GPL vmlinux 0xafb64b62 nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0xafc09279 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xafcb5064 skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafe27608 ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0xafef94da acpi_get_first_physical_node EXPORT_SYMBOL_GPL vmlinux 0xaffa6ff7 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xb00718d5 fwnode_graph_get_next_endpoint EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xb00c6417 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xb00c409b regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xb00e3e88 __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xb0172626 dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0xb01bdda3 crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0xb01cead8 __devm_of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0xb0256cbe fscrypt_set_bio_crypt_ctx EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb030c22e regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xb0366235 fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xb04d0bb6 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xb049b8f4 kvm_vcpu_map EXPORT_SYMBOL_GPL vmlinux 0xb04ed6d1 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xb056ebc6 devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xb0597513 ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0xb05b68d5 zynqmp_pm_reset_get_status EXPORT_SYMBOL_GPL vmlinux 0xb06a3c30 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xb06ab72b sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xb06c209e inet_ctl_sock_create 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 0xb0932a16 follow_pte EXPORT_SYMBOL_GPL vmlinux 0xb0b16bb8 blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0b8ffd3 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0xb0c7eacd kvm_vcpu_write_guest_page EXPORT_SYMBOL_GPL vmlinux 0xb0cabb91 pm_genpd_init EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array EXPORT_SYMBOL_GPL vmlinux 0xb0d3a35a __kthread_should_park @@ -24345,35 +24387,34 @@ EXPORT_SYMBOL_GPL vmlinux 0xb0d88abd dm_noflush_suspending EXPORT_SYMBOL_GPL vmlinux 0xb0def250 ata_sff_port_ops EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed EXPORT_SYMBOL_GPL vmlinux 0xb0ede4ab nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xb0f468c2 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xb109c61a platform_irq_count EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb1121c7e security_kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0xb114b0eb cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0xb117d98c regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xb1192497 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xb119a828 skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number EXPORT_SYMBOL_GPL vmlinux 0xb11d9c9b cpuidle_get_driver EXPORT_SYMBOL_GPL vmlinux 0xb11dc8a1 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0xb121d53e ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0xb14032a2 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xb143090c skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0xb15e43b8 get_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb1656bc3 crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0xb16574a9 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0xb16a577d find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xb175ce1c crypto_register_skciphers EXPORT_SYMBOL_GPL vmlinux 0xb181f878 edac_mc_find_csrow_by_page EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb196277f device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0xb1a5f5f4 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xb1b324e5 __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xb1b8f605 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xb1a646af net_ns_type_operations EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c7319a gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0xb1cc601c fwnode_get_phy_node EXPORT_SYMBOL_GPL vmlinux 0xb1d4bf6b devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb1d695ab tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb225ce81 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0xb2305bc7 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb22138e1 device_set_wakeup_capable EXPORT_SYMBOL_GPL vmlinux 0xb23f09ae dma_release_channel EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq EXPORT_SYMBOL_GPL vmlinux 0xb26735e4 dprc_get_obj_count @@ -24381,82 +24422,103 @@ EXPORT_SYMBOL_GPL vmlinux 0xb269f709 ohci_restart EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr EXPORT_SYMBOL_GPL vmlinux 0xb26e7925 ehci_setup EXPORT_SYMBOL_GPL vmlinux 0xb2748aba fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xb2761249 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xb2804c15 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xb28675ff i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0xb28c227e skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb29221f2 ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0xb292df2c power_supply_get_property EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb2a843bd ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0xb2b094f5 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xb2bdfcb6 __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2e51d11 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0xb2e533d6 css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb307a48c ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb308eae9 ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0xb3161ea7 irq_domain_translate_onecell EXPORT_SYMBOL_GPL vmlinux 0xb31aebc7 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xb333e84d __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb33c9cb9 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb331aea0 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb3450486 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xb353e181 nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0xb3554cbc led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb35d41f6 sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0xb36a98ff dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0xb374bb69 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xb3833663 crypto_register_templates EXPORT_SYMBOL_GPL vmlinux 0xb384c532 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0xb384ca5c cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xb38b0e07 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xb38b62b1 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xb3a2f8a1 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xb3b3c5ae crypto_comp_decompress EXPORT_SYMBOL_GPL vmlinux 0xb3c3fe4b iommu_present -EXPORT_SYMBOL_GPL vmlinux 0xb3fdb1bf device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb3e4d765 i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0xb3feae9c clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xb401faf8 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xb4074ad3 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request +EXPORT_SYMBOL_GPL vmlinux 0xb4138916 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xb41560bb pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xb41c8656 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0xb43b005c virtqueue_get_vring EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get EXPORT_SYMBOL_GPL vmlinux 0xb4403386 led_classdev_suspend EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb442b5cd ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0xb443dfd9 irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0xb445f852 xen_dbgp_reset_prep EXPORT_SYMBOL_GPL vmlinux 0xb447f060 devm_memunmap_pages EXPORT_SYMBOL_GPL vmlinux 0xb44b486c edac_device_del_device EXPORT_SYMBOL_GPL vmlinux 0xb44bca41 sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb4612d4c __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0xb461b2b0 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xb461e0b4 ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0xb4638a6b subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xb466e367 ata_scsi_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0xb48e71c4 devm_usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register EXPORT_SYMBOL_GPL vmlinux 0xb4b19455 imx8m_clk_hw_composite_flags EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c0bf88 gpiod_direction_output_raw EXPORT_SYMBOL_GPL vmlinux 0xb4cf70ac blk_abort_request EXPORT_SYMBOL_GPL vmlinux 0xb4d453c3 pinmux_generic_get_function_groups EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eb78c0 wm8350_block_read EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length EXPORT_SYMBOL_GPL vmlinux 0xb4f19a0b nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4f29ef4 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xb4f3745f clk_hw_get_parent_by_index EXPORT_SYMBOL_GPL vmlinux 0xb4fb63ac tty_port_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xb4fba1e3 pinctrl_dev_get_devname EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc 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 0xb5266c2e kvm_vcpu_gfn_to_pfn EXPORT_SYMBOL_GPL vmlinux 0xb5348dfd usb_hcd_unmap_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0xb53e9f54 of_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0xb546a4ae clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xb54b51d5 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0xb54efb49 __cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0xb5500166 edac_mc_free EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op +EXPORT_SYMBOL_GPL vmlinux 0xb5623394 cpufreq_cpu_get_raw EXPORT_SYMBOL_GPL vmlinux 0xb56d8b5b usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xb570c88b spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xb572bddc phy_package_join EXPORT_SYMBOL_GPL vmlinux 0xb585bfa4 get_device_system_crosststamp EXPORT_SYMBOL_GPL vmlinux 0xb588b178 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb58e0434 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xb5919c7e gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0xb59a15a4 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xb5a47ed0 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xb5a11871 devm_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xb5a5527c dt_init_idle_driver EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq EXPORT_SYMBOL_GPL vmlinux 0xb5aa0dc9 genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg -EXPORT_SYMBOL_GPL vmlinux 0xb5b9a8c9 kvm_vcpu_block -EXPORT_SYMBOL_GPL vmlinux 0xb5c1c436 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb5b94fad __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xb5da927d trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0xb5dab3fb divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xb5dd952a devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xb5e2df57 get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0xb5eb9b68 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xb5f8de25 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xb5fb5454 crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0xb60557d6 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xb6033984 perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0xb608aca2 dm_device_name EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier EXPORT_SYMBOL_GPL vmlinux 0xb626ee41 pci_find_host_bridge @@ -24465,99 +24527,89 @@ EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm EXPORT_SYMBOL_GPL vmlinux 0xb64983b3 phy_create EXPORT_SYMBOL_GPL vmlinux 0xb64ff89a soc_device_register EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb657e1ae bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0xb658944a blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xb65919bd crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0xb65d1bcc acpi_gpiochip_free_interrupts EXPORT_SYMBOL_GPL vmlinux 0xb66edd83 of_hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0xb672f074 ata_bmdma_port_start32 EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket EXPORT_SYMBOL_GPL vmlinux 0xb684564c spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb68b2e8c sdio_f0_readb EXPORT_SYMBOL_GPL vmlinux 0xb68d595f tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0xb692342e sched_trace_rq_nr_running EXPORT_SYMBOL_GPL vmlinux 0xb69ddb7b smpboot_unregister_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0xb6a77d33 usb_control_msg_send EXPORT_SYMBOL_GPL vmlinux 0xb6a83e75 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xb6af4b2a register_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xb6b6e185 rockchip_pcie_init_port EXPORT_SYMBOL_GPL vmlinux 0xb6c16972 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xb6ca021a pwm_request -EXPORT_SYMBOL_GPL vmlinux 0xb6dbaa2f gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xb6d1642b regulator_suspend_disable EXPORT_SYMBOL_GPL vmlinux 0xb6e1d21d bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xb6e2c4b6 clk_hw_get_num_parents EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable EXPORT_SYMBOL_GPL vmlinux 0xb6fb7bd6 genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0xb70e28db synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0xb71130ac tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0xb715bd8c scsi_internal_device_unblock_nowait EXPORT_SYMBOL_GPL vmlinux 0xb71733d1 usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0xb72e3e4d ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xb7241477 ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb734a4fd crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0xb736a7d5 irq_chip_get_parent_state EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups EXPORT_SYMBOL_GPL vmlinux 0xb74c9d47 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xb7587c4b devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0xb76f5c8f of_clk_hw_onecell_get EXPORT_SYMBOL_GPL vmlinux 0xb77df475 __regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xb78c9405 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xb798d936 ahci_qc_issue EXPORT_SYMBOL_GPL vmlinux 0xb79b6e49 scmi_protocol_register EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7a88703 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xb7a709c1 raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0xb7aca07d vp_modern_set_queue_size EXPORT_SYMBOL_GPL vmlinux 0xb7ade0e3 iommu_map EXPORT_SYMBOL_GPL vmlinux 0xb7b0b2e4 pci_enable_sriov EXPORT_SYMBOL_GPL vmlinux 0xb7c22bf1 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xb7c28d7d inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xb7df7d17 bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0xb7f28c94 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb7e8cb9e regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb7fda849 __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0xb8039373 trace_seq_path EXPORT_SYMBOL_GPL vmlinux 0xb812ea49 mtk_mutex_get EXPORT_SYMBOL_GPL vmlinux 0xb824d722 xhci_init_driver EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xb8318685 bgmac_alloc EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted EXPORT_SYMBOL_GPL vmlinux 0xb84dcfb4 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xb85dd235 sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0xb8687e87 device_match_fwnode EXPORT_SYMBOL_GPL vmlinux 0xb871a433 usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0xb872f5ae rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xb876d9eb iomap_zero_range EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable EXPORT_SYMBOL_GPL vmlinux 0xb8802cd2 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xb8803814 trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0xb880451e scmi_protocol_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb881ea4a sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xb881b89c crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error EXPORT_SYMBOL_GPL vmlinux 0xb88d41ed pci_generic_config_read32 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 0xb8a865df inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource EXPORT_SYMBOL_GPL vmlinux 0xb8bc8b41 debugfs_rename EXPORT_SYMBOL_GPL vmlinux 0xb8bf056e kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xb8c4f378 device_show_bool EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8e31453 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xb8ec0f5e thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb8ee60ec __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb8fcdd5e regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0xb9017567 rio_local_set_device_id EXPORT_SYMBOL_GPL vmlinux 0xb901eb7a pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xb903b8e0 spi_res_alloc EXPORT_SYMBOL_GPL vmlinux 0xb9072147 rockchip_clk_init EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb9256736 of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0xb9449b46 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xb9510bbf sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0xb95a5d30 usb_sg_cancel EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb97139aa cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0xb98bc93e of_clk_get_parent_name EXPORT_SYMBOL_GPL vmlinux 0xb99f9c9f gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0xb9a4eab8 ata_scsi_slave_config EXPORT_SYMBOL_GPL vmlinux 0xb9b05533 iomap_seek_hole EXPORT_SYMBOL_GPL vmlinux 0xb9b4f4e3 platform_find_device_by_driver EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put @@ -24566,185 +24618,189 @@ EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xb9c433ad tps6586x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9f2560d fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0xb9f38829 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xb9d1d7e6 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xb9e4ec0a ata_sas_tport_add EXPORT_SYMBOL_GPL vmlinux 0xb9f3beb6 iommu_uapi_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0xb9f9b780 do_splice_to EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba2e9cb4 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xba2d0857 synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0xba3b6504 phy_exit EXPORT_SYMBOL_GPL vmlinux 0xba9c5e99 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0xbab9a683 cpuidle_register EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents EXPORT_SYMBOL_GPL vmlinux 0xbac09d57 blk_mq_alloc_request_hctx EXPORT_SYMBOL_GPL vmlinux 0xbaca5554 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xbacd7975 crypto_stats_rng_seed EXPORT_SYMBOL_GPL vmlinux 0xbacef541 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xbad150c9 crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0xbad36b0b genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0xbadb3260 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xbad97c3d pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0xbae2132c l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0xbae9a83f usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf51d97 skb_segment EXPORT_SYMBOL_GPL vmlinux 0xbaf5fac9 dev_pm_domain_detach 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 0xbb0fd2b2 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xbb0c4de7 nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0xbb16d62a xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0xbb1d7df7 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xbb1c9107 ping_err EXPORT_SYMBOL_GPL vmlinux 0xbb2187e0 pcie_aspm_enabled EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb3748a6 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0xbb454f47 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xbb36bd4e posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb41ebdc devm_clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0xbb640930 fs_dax_get_by_bdev EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback EXPORT_SYMBOL_GPL vmlinux 0xbb660b56 pci_epc_put EXPORT_SYMBOL_GPL vmlinux 0xbb66e9e8 of_pm_clk_add_clks EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6aa3ff crypto_unregister_ahashes EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0xbb6f8c99 fat_scan EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb735660 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xbb90d198 task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc EXPORT_SYMBOL_GPL vmlinux 0xbbaadefd mtk_pinconf_drive_set_raw EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put +EXPORT_SYMBOL_GPL vmlinux 0xbbb4eba2 dev_pm_qos_hide_latency_limit EXPORT_SYMBOL_GPL vmlinux 0xbbb8ee31 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xbbbc9888 clk_mux_determine_rate_flags EXPORT_SYMBOL_GPL vmlinux 0xbbe1ec60 __page_mapcount EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID EXPORT_SYMBOL_GPL vmlinux 0xbbec104c irq_chip_set_type_parent EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xbbf6a3e7 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xbbf5f566 device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0xbc0c89f6 debugfs_create_u64 EXPORT_SYMBOL_GPL vmlinux 0xbc23bfb3 rio_mport_get_physefb EXPORT_SYMBOL_GPL vmlinux 0xbc272e50 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc34b990 __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time EXPORT_SYMBOL_GPL vmlinux 0xbc5962dc tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbc6acf26 hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0xbc80ede3 fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0xbc89dda2 kvm_make_all_cpus_request -EXPORT_SYMBOL_GPL vmlinux 0xbc8c0cc0 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0xbc8d919e devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0xbc928135 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xbc8969c3 pwm_apply_state EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbc9ec02d devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0xbcaf36c9 __ata_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0xbcb5f9ad hvc_alloc EXPORT_SYMBOL_GPL vmlinux 0xbcbb4e0c iomap_seek_data EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcc5e4c9 blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd93774 bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0xbcdb2345 gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce79142 icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0xbce89518 nvmem_cell_read_u64 EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool EXPORT_SYMBOL_GPL vmlinux 0xbcf9908f usb_phy_get_charger_current EXPORT_SYMBOL_GPL vmlinux 0xbd033697 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0xbd03b7ae ahci_init_controller EXPORT_SYMBOL_GPL vmlinux 0xbd18e27a pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xbd1ce009 int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0xbd20e05a devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0xbd27f8f0 crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xbd2e45e1 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbd27cd85 xfer_to_guest_mode_handle_work EXPORT_SYMBOL_GPL vmlinux 0xbd2fc10c devm_irq_alloc_generic_chip EXPORT_SYMBOL_GPL vmlinux 0xbd312566 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xbd33d75a gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0xbd3d1a25 __devm_reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd47c159 fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xbd50215b spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xbd43a890 crypto_stats_rng_seed EXPORT_SYMBOL_GPL vmlinux 0xbd53fbf8 software_node_fwnode EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0xbd5a5526 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0xbd632f12 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xbd651eba gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xbd6a30ed device_change_owner EXPORT_SYMBOL_GPL vmlinux 0xbd7491a6 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xbd766c67 devlink_register EXPORT_SYMBOL_GPL vmlinux 0xbd76fff2 usb_hcd_map_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd82f193 crypto_alloc_acomp EXPORT_SYMBOL_GPL vmlinux 0xbd901983 msi_desc_to_pci_sysdata EXPORT_SYMBOL_GPL vmlinux 0xbd996c19 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xbda383d6 fwnode_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported -EXPORT_SYMBOL_GPL vmlinux 0xbdb6f8eb i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xbdb41317 regulator_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xbdbabe80 fsl_mc_bus_dpcon_type -EXPORT_SYMBOL_GPL vmlinux 0xbdc739ac nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0xbdc8f310 fscrypt_ioctl_get_policy_ex EXPORT_SYMBOL_GPL vmlinux 0xbdecaa7b efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0xbdf2687f ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xbdfd1e75 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xbdfd6194 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xbe0cf88a platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xbe15dec5 __rio_local_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0xbe17f598 clk_mux_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xbe1b5066 usb_sg_wait EXPORT_SYMBOL_GPL vmlinux 0xbe24fe31 clk_hw_register_gate2 -EXPORT_SYMBOL_GPL vmlinux 0xbe37d29c fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xbe2fc46d fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0xbe3a0349 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xbe494b96 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xbe4b9dd3 ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xbe5206b2 rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0xbe58bd70 da903x_reads EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain EXPORT_SYMBOL_GPL vmlinux 0xbe5e3414 k3_udma_glue_reset_rx_chn EXPORT_SYMBOL_GPL vmlinux 0xbe614163 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xbe629dad spi_setup EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus EXPORT_SYMBOL_GPL vmlinux 0xbe6ca8cd rio_mport_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0xbe6d43d7 ioasid_put EXPORT_SYMBOL_GPL vmlinux 0xbe76136c blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xbe80ca1f iptunnel_metadata_reply EXPORT_SYMBOL_GPL vmlinux 0xbe9044c3 io_cgrp_subsys EXPORT_SYMBOL_GPL vmlinux 0xbe94e912 devm_phy_destroy EXPORT_SYMBOL_GPL vmlinux 0xbe95dcb4 irq_get_domain_generic_chip EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe995268 __raw_v6_lookup EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized EXPORT_SYMBOL_GPL vmlinux 0xbebb6625 clk_register_hisi_phase EXPORT_SYMBOL_GPL vmlinux 0xbebd2ede regcache_drop_region EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbeca2596 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xbec6adec kern_mount EXPORT_SYMBOL_GPL vmlinux 0xbed1377f wm831x_regmap_config EXPORT_SYMBOL_GPL vmlinux 0xbeddf2b1 nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xbeec84b2 bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0xbeef8789 call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0xbef3ad54 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0xbef86307 skb_morph EXPORT_SYMBOL_GPL vmlinux 0xbef8ad0a of_devfreq_cooling_register_power EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier EXPORT_SYMBOL_GPL vmlinux 0xbf060b3f dev_pm_disable_wake_irq EXPORT_SYMBOL_GPL vmlinux 0xbf186fac dw_pcie_ep_init_complete EXPORT_SYMBOL_GPL vmlinux 0xbf1a8d83 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0xbf1d76a7 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xbf337346 xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0xbf33df7c kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xbf351e9e gfn_to_memslot EXPORT_SYMBOL_GPL vmlinux 0xbf3534b6 of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xbf3f14b7 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xbf43c669 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xbf588625 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xbf5bf88a ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xbf5da26e crypto_larval_kill EXPORT_SYMBOL_GPL vmlinux 0xbf65ffb3 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xbf675606 shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0xbf6c3747 kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xbf80ad65 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbf82bdbd devlink_params_unpublish EXPORT_SYMBOL_GPL vmlinux 0xbf968520 acpiphp_unregister_attention EXPORT_SYMBOL_GPL vmlinux 0xbf97e93f iommu_sva_free_pasid +EXPORT_SYMBOL_GPL vmlinux 0xbf9b9c8b kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0xbf9bf8b0 __traceiter_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0xbfa34fba handle_fasteoi_ack_irq -EXPORT_SYMBOL_GPL vmlinux 0xbfb35672 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xbfb9f148 wm8350_set_bits EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports EXPORT_SYMBOL_GPL vmlinux 0xbfc9b3df meson_clk_pll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xbfd7c85c trace_event_raw_init EXPORT_SYMBOL_GPL vmlinux 0xbfe50896 regulator_map_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe87f1d xfrm_dev_resume EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xbff34909 security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0xbffa29be srcu_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xc002bda5 virtqueue_enable_cb_delayed EXPORT_SYMBOL_GPL vmlinux 0xc0087177 dw_pcie_host_deinit EXPORT_SYMBOL_GPL vmlinux 0xc010d268 dprc_get_obj_region EXPORT_SYMBOL_GPL vmlinux 0xc0161409 amba_device_add EXPORT_SYMBOL_GPL vmlinux 0xc0165fc6 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xc024f5f3 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0xc02594c1 bpf_map_inc EXPORT_SYMBOL_GPL vmlinux 0xc036d21a irq_domain_associate_many EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq EXPORT_SYMBOL_GPL vmlinux 0xc0618d84 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xc06b6bf8 of_clk_src_onecell_get EXPORT_SYMBOL_GPL vmlinux 0xc06db2cf devm_extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0xc06dc2f1 pci_pasid_features EXPORT_SYMBOL_GPL vmlinux 0xc071b3c5 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xc072fced unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0xc077cfc1 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xc089909e add_to_page_cache_lru EXPORT_SYMBOL_GPL vmlinux 0xc08b3988 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xc090711d crypto_stats_rng_generate EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings EXPORT_SYMBOL_GPL vmlinux 0xc098031e sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0xc09b8a44 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xc09bb706 thermal_zone_device_disable EXPORT_SYMBOL_GPL vmlinux 0xc0a3d155 k3_udma_glue_rx_get_flow_id_base EXPORT_SYMBOL_GPL vmlinux 0xc0a87cc7 serial8250_do_startup EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited @@ -24752,10 +24808,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xc0aa8762 rockchip_clk_register_armclk EXPORT_SYMBOL_GPL vmlinux 0xc0ae7757 sysfs_add_link_to_group EXPORT_SYMBOL_GPL vmlinux 0xc0b1b795 ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0xc0b27094 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0xc0b82ee3 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xc0b2f56f trace_event_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name EXPORT_SYMBOL_GPL vmlinux 0xc0e45a7f devres_get EXPORT_SYMBOL_GPL vmlinux 0xc0e48e85 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xc0e94675 bpf_prog_free EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata EXPORT_SYMBOL_GPL vmlinux 0xc0f072ee usb_ep0_reinit EXPORT_SYMBOL_GPL vmlinux 0xc1014a6e irq_domain_create_legacy @@ -24763,153 +24820,155 @@ EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support EXPORT_SYMBOL_GPL vmlinux 0xc10e395a PageHuge EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t EXPORT_SYMBOL_GPL vmlinux 0xc1148404 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0xc127bf33 event_triggers_call EXPORT_SYMBOL_GPL vmlinux 0xc12e8b10 driver_for_each_device EXPORT_SYMBOL_GPL vmlinux 0xc12fd58b pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xc130d6a3 device_set_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0xc1320cfe mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xc13c74dc ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0xc1446bc8 virtqueue_poll EXPORT_SYMBOL_GPL vmlinux 0xc14b474b debugfs_lookup_and_remove EXPORT_SYMBOL_GPL vmlinux 0xc14fc6b6 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xc168e4db devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17cd593 bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xc1812c54 bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0xc18a77cf spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc190a2dd mmput +EXPORT_SYMBOL_GPL vmlinux 0xc18cddac platform_get_mem_or_io EXPORT_SYMBOL_GPL vmlinux 0xc1968c3a clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0xc198e7bf tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xc19c315d netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xc1a57a62 mmput EXPORT_SYMBOL_GPL vmlinux 0xc1aa25f6 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0xc1acd74f ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0xc1b3678d serial8250_release_dma EXPORT_SYMBOL_GPL vmlinux 0xc1b7058e meson_a1_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0xc1b8fb1a vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xc1c6e1cb trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xc1ce1b27 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xc1d1839f crypto_unregister_rngs EXPORT_SYMBOL_GPL vmlinux 0xc1d293fb bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xc1d8a128 wakeup_source_create EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc1e0336c get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xc1e828a8 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xc1f840ed skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0xc20c3309 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc211c9ed perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0xc2141a1d fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0xc2225cae ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xc21f0c77 icc_node_create EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc234d412 page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0xc24269e9 tty_set_termios EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting EXPORT_SYMBOL_GPL vmlinux 0xc24a5f2d thp_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock EXPORT_SYMBOL_GPL vmlinux 0xc2771758 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xc2772a31 spi_controller_suspend EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc28dba08 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0xc29cc7a5 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xc29cd31d sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a59af0 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2aa42de put_pid +EXPORT_SYMBOL_GPL vmlinux 0xc2b53a39 devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc2bd3f2f icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0xc2bda5a7 spi_mem_driver_register_with_owner EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc2cf6b0b get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xc2d55962 work_on_cpu_key EXPORT_SYMBOL_GPL vmlinux 0xc2d5f0cd devm_hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0xc2d69ca6 gfn_to_pfn_memslot EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable EXPORT_SYMBOL_GPL vmlinux 0xc2e466ec tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0xc2e72488 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0xc2e8dcb7 wait_for_stable_page EXPORT_SYMBOL_GPL vmlinux 0xc2e90e2a da9052_request_irq EXPORT_SYMBOL_GPL vmlinux 0xc2f2fa65 dma_vmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xc2f870dc meson_clk_pll_ops EXPORT_SYMBOL_GPL vmlinux 0xc2ff8612 extcon_get_property_capability EXPORT_SYMBOL_GPL vmlinux 0xc315257b pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0xc31772a6 set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0xc31e02fa devm_of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xc32cdd29 devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0xc333303d mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0xc324817a fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xc3296e0d fwnode_property_get_reference_args EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object EXPORT_SYMBOL_GPL vmlinux 0xc3435d38 sysfs_remove_link EXPORT_SYMBOL_GPL vmlinux 0xc3470086 devres_add -EXPORT_SYMBOL_GPL vmlinux 0xc3479f08 bgmac_enet_resume -EXPORT_SYMBOL_GPL vmlinux 0xc34cd432 sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0xc35513cc debugfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0xc3560302 sysfs_file_change_owner EXPORT_SYMBOL_GPL vmlinux 0xc358cce3 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0xc3607042 kvm_write_guest EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk EXPORT_SYMBOL_GPL vmlinux 0xc374da1f led_trigger_set_default EXPORT_SYMBOL_GPL vmlinux 0xc377b89e rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc37d8136 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xc37d9c4e gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype EXPORT_SYMBOL_GPL vmlinux 0xc38aa9e0 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xc392f6fd bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0xc395fc3f pinconf_generic_parse_dt_config EXPORT_SYMBOL_GPL vmlinux 0xc39ab3a0 usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0xc3b30896 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xc39c522c __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name EXPORT_SYMBOL_GPL vmlinux 0xc3d68160 dev_pm_opp_get_required_pstate EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu EXPORT_SYMBOL_GPL vmlinux 0xc3e69a35 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0xc3e9a8dd blk_update_request EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough EXPORT_SYMBOL_GPL vmlinux 0xc3fa95a6 edac_device_handle_ue_count EXPORT_SYMBOL_GPL vmlinux 0xc3face9f ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0xc40b1419 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xc4249886 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xc402bce5 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xc41ed964 nl_table EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long EXPORT_SYMBOL_GPL vmlinux 0xc43ab2f5 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xc43d6552 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xc4436827 devm_platform_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0xc444f86e usb_phy_roothub_resume EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc458a2ca wm8350_clear_bits EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0xc467a55a devlink_sb_register EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc488e620 crypto_alloc_sync_skcipher EXPORT_SYMBOL_GPL vmlinux 0xc48b7b7c phy_power_off EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string EXPORT_SYMBOL_GPL vmlinux 0xc493b387 regmap_irq_get_domain EXPORT_SYMBOL_GPL vmlinux 0xc49c6133 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xc49e7228 alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0xc49efbf0 scsi_dh_set_params EXPORT_SYMBOL_GPL vmlinux 0xc4a1829b simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc4a568fc of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xc4a5d30b raw_abort EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send EXPORT_SYMBOL_GPL vmlinux 0xc4aae833 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xc4ad2a2e pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0xc4ae4328 pm_runtime_set_memalloc_noio EXPORT_SYMBOL_GPL vmlinux 0xc4b5a900 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc4b6950d icc_node_add EXPORT_SYMBOL_GPL vmlinux 0xc4bc30c0 mtk_pinconf_bias_get EXPORT_SYMBOL_GPL vmlinux 0xc4ccff9a imx_pinconf_set_scu EXPORT_SYMBOL_GPL vmlinux 0xc4cd5c19 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0xc4d329b1 __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xc4ee60b7 devres_close_group EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset EXPORT_SYMBOL_GPL vmlinux 0xc4f93ba6 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xc4fa8dd4 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xc501afde ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0xc507fec2 devm_of_phy_get EXPORT_SYMBOL_GPL vmlinux 0xc50c5d78 of_thermal_get_ntrips EXPORT_SYMBOL_GPL vmlinux 0xc50d7687 subsys_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock +EXPORT_SYMBOL_GPL vmlinux 0xc516b63d strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0xc531a474 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0xc535b36c sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xc53d34d7 ip6_input EXPORT_SYMBOL_GPL vmlinux 0xc5409a8f pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0xc55a7a92 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xc55dfdff skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc56c3bf2 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0xc5715f89 fsl_mc_object_free EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array EXPORT_SYMBOL_GPL vmlinux 0xc57916b7 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xc5803aa6 tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc58d40b1 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xc5a1ca20 sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon EXPORT_SYMBOL_GPL vmlinux 0xc5e1898d scmi_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xc5e1d1de power_supply_get_battery_info EXPORT_SYMBOL_GPL vmlinux 0xc5ea6a5d compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc6005b16 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc60174cd ahci_host_activate EXPORT_SYMBOL_GPL vmlinux 0xc603fb40 usb_autopm_put_interface_no_suspend EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier EXPORT_SYMBOL_GPL vmlinux 0xc621bb43 sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0xc643853b sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0xc651e02a dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0xc653d256 fuse_request_end EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister @@ -24918,7 +24977,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync EXPORT_SYMBOL_GPL vmlinux 0xc672e8e2 gnttab_unmap_refs EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc680a092 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc67a50d1 rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0xc6859145 fsnotify_add_mark EXPORT_SYMBOL_GPL vmlinux 0xc69048a7 dma_buf_vmap EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read @@ -24926,177 +24985,177 @@ EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xc6ae7c9b irq_domain_add_legacy EXPORT_SYMBOL_GPL vmlinux 0xc6aeb634 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xc6b8b247 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xc6dd2fdd kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6e1796e ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0xc6e2735b em_pd_get EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6edde2a crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xc6f072a8 __mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0xc7058c3d devm_clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put EXPORT_SYMBOL_GPL vmlinux 0xc71166dc mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0xc719edf6 __udp_gso_segment EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc71f50cd __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xc7293229 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xc72138e5 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xc7259d2b inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xc7359311 tpm_get_random EXPORT_SYMBOL_GPL vmlinux 0xc7401c60 k3_ringacc_ring_cfg -EXPORT_SYMBOL_GPL vmlinux 0xc756b985 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0xc75ef3d3 cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0xc7616df8 netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0xc766e385 __clk_hw_register_gate EXPORT_SYMBOL_GPL vmlinux 0xc76f8048 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0xc774367c sdio_disable_func EXPORT_SYMBOL_GPL vmlinux 0xc775eb81 serial8250_do_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xc78ac063 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xc78ae4d1 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xc78ba68b platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xc78d2630 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xc796b468 housekeeping_affine EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0xc7a8b3bd of_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0xc7a930a3 to_nd_desc EXPORT_SYMBOL_GPL vmlinux 0xc7be4f8e fsl_mc_cleanup_irq_pool EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7c87dc6 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xc7cf4151 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xc7d6e1d0 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0xc7db3801 cpufreq_cpu_put EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7e70b25 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xc7f64d81 mmc_pwrseq_unregister EXPORT_SYMBOL_GPL vmlinux 0xc7f6a7cf irq_domain_push_irq EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop EXPORT_SYMBOL_GPL vmlinux 0xc805c9da tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0xc809f564 crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0xc8121593 dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0xc822d34e sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove EXPORT_SYMBOL_GPL vmlinux 0xc8395e18 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0xc83ac2e2 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0xc8424732 ata_scsi_unlock_native_capacity EXPORT_SYMBOL_GPL vmlinux 0xc847bc11 phy_modify_changed EXPORT_SYMBOL_GPL vmlinux 0xc84f1c9a devm_pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xc88f1fbe strp_stop -EXPORT_SYMBOL_GPL vmlinux 0xc89542e5 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0xc89e6b3d alloc_dax_region EXPORT_SYMBOL_GPL vmlinux 0xc8ad9fbc get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xc8b60da2 platform_device_add_resources EXPORT_SYMBOL_GPL vmlinux 0xc8c47ed7 usb_anchor_urb EXPORT_SYMBOL_GPL vmlinux 0xc8c6902d auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0xc8d23de6 ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8df213f sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0xc8e45f33 bind_interdomain_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xc8f671d0 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xc8e9556b ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xc8ec6a4d devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0xc8eca604 synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc92fa225 regulator_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc93be70b thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc946411a cpufreq_cpu_get_raw EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9588212 devlink_reload_enable EXPORT_SYMBOL_GPL vmlinux 0xc9601f74 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0xc960e57d security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0xc960fa77 virtio_config_changed EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc979b6df xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base EXPORT_SYMBOL_GPL vmlinux 0xc9973393 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xc9aefbc7 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xc99dbeba espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0xc99e3e03 gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0xc9b20bba rdev_clear_badblocks EXPORT_SYMBOL_GPL vmlinux 0xc9b5da5f memremap_pages EXPORT_SYMBOL_GPL vmlinux 0xc9b74358 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xc9d8e33f tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xc9e66ae4 tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu EXPORT_SYMBOL_GPL vmlinux 0xc9f54d5e acpi_dma_request_slave_chan_by_index EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit -EXPORT_SYMBOL_GPL vmlinux 0xc9fb0574 gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0xc9fb9cdf synth_event_create EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put EXPORT_SYMBOL_GPL vmlinux 0xca18cd73 fsl_mc_bus_dprc_type EXPORT_SYMBOL_GPL vmlinux 0xca245956 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xca248a49 sched_trace_rq_cpu_capacity EXPORT_SYMBOL_GPL vmlinux 0xca2f30f4 iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xca343a33 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xca3b5b74 sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca4bb121 security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0xca4fe199 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xca54269d fixed_phy_change_carrier EXPORT_SYMBOL_GPL vmlinux 0xca69b428 of_get_display_timings EXPORT_SYMBOL_GPL vmlinux 0xca6a29a6 iommu_get_domain_for_dev EXPORT_SYMBOL_GPL vmlinux 0xca7c0d6d dm_set_target_max_io_len EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca8aa544 devlink_rate_nodes_destroy EXPORT_SYMBOL_GPL vmlinux 0xca8baa65 pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0xca8c485c dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free EXPORT_SYMBOL_GPL vmlinux 0xca9ee779 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xcaa78991 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xcaa7a803 ahci_do_hardreset EXPORT_SYMBOL_GPL vmlinux 0xcab213cb mmu_notifier_get_locked EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcabf9b8e crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0xcacaab95 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcacb6723 crypto_stats_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xcad3217f dprc_set_obj_irq EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcaf79a92 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xcb041ab3 netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0xcb071c60 vc_scrolldelta_helper EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb299861 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xcb1b708e mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb31aa38 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xcb3a6635 skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0xcb3b6760 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xcb2dc13d inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xcb4e105a gfn_to_page EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb6fc102 crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0xcb70d543 dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0xcb710710 device_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0xcb71d45a iommu_sva_find EXPORT_SYMBOL_GPL vmlinux 0xcb7571ef led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xcb85b9a3 crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xcb91d764 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xcba95205 scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0xcbbb7a4e bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xcb7b72cd bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xcb94effc sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0xcb98f046 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xcb9cdf7c spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0xcbc2b9f3 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0xcbc524f3 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xcbc7d7d4 __cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0xcbcc5827 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0xcbd5d84f ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0xcbe3a99a of_property_read_variable_u64_array EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbe73110 devm_spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0xcbe9056d devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xcbea8590 path_noexec -EXPORT_SYMBOL_GPL vmlinux 0xcbfe1e5b i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0xcbfa9792 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xcbff779c regulator_get_hardware_vsel_register EXPORT_SYMBOL_GPL vmlinux 0xcc000e46 register_virtio_device EXPORT_SYMBOL_GPL vmlinux 0xcc06d90c of_irq_to_resource_table EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head -EXPORT_SYMBOL_GPL vmlinux 0xcc18fc4f rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcc1a7db2 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xcc1d2222 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xcc1da873 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xcc203de6 blk_rq_err_bytes EXPORT_SYMBOL_GPL vmlinux 0xcc2790db xenbus_dev_changed EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc36ec38 crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xcc36f103 clk_hw_get_name EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister EXPORT_SYMBOL_GPL vmlinux 0xcc67ecdc devm_rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0xcc711e64 icc_nodes_remove EXPORT_SYMBOL_GPL vmlinux 0xcc72b428 edac_pci_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0xcc744576 mtk_pinconf_bias_disable_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0xcc86f6a9 extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xcc883e52 alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc EXPORT_SYMBOL_GPL vmlinux 0xcc9424c9 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0xcca6ee4a device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xcc9519d2 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xccc521f4 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0xccc6791e gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string EXPORT_SYMBOL_GPL vmlinux 0xccebf2df usb_register_driver EXPORT_SYMBOL_GPL vmlinux 0xccec70b8 tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccf5d971 msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0xcd025a6a dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xcd0433f4 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xcd0c5a9c dax_finish_sync_fault EXPORT_SYMBOL_GPL vmlinux 0xcd1c1a53 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xcd1cfca5 dev_pm_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd278284 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0xcd3102c1 sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0xcd36b8a9 uart_console_device EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory EXPORT_SYMBOL_GPL vmlinux 0xcd421635 rio_dma_prep_slave_sg EXPORT_SYMBOL_GPL vmlinux 0xcd4c8c48 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xcd568c29 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xcd631e44 trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0xcd64ce2f vp_modern_get_features EXPORT_SYMBOL_GPL vmlinux 0xcd69d2c2 serdev_device_write_wakeup EXPORT_SYMBOL_GPL vmlinux 0xcd6ca159 xenbus_watch_pathfmt EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add EXPORT_SYMBOL_GPL vmlinux 0xcd722d20 usb_hcd_setup_local_mem EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset +EXPORT_SYMBOL_GPL vmlinux 0xcd77ac16 net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0xcd8eb0b0 cpufreq_dbs_governor_init EXPORT_SYMBOL_GPL vmlinux 0xcd910be7 ti_sci_get_num_resources EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq @@ -25107,7 +25166,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr EXPORT_SYMBOL_GPL vmlinux 0xcda68ba2 relay_flush EXPORT_SYMBOL_GPL vmlinux 0xcdabf365 i2c_dw_validate_speed EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdbe912a skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0xcdc3ae88 skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs EXPORT_SYMBOL_GPL vmlinux 0xcdcb9fa1 blkdev_zone_mgmt @@ -25116,23 +25175,22 @@ EXPORT_SYMBOL_GPL vmlinux 0xcde8df82 platform_msi_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory EXPORT_SYMBOL_GPL vmlinux 0xce0cd2d7 tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0xce1720ca dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xce18f911 ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0xce1b8f76 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xce19a8e7 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xce1b9638 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xce1c7934 of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay -EXPORT_SYMBOL_GPL vmlinux 0xce31f917 __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xce5134bb ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0xce519e74 ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe EXPORT_SYMBOL_GPL vmlinux 0xce673a59 acpi_kobj EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce702426 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0xce7508f6 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0xce7b2a80 devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0xce7f2e6f xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0xce7f6ee2 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xce900cfe mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0xce945996 inet_hashinfo2_init_mod EXPORT_SYMBOL_GPL vmlinux 0xce948e89 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xcea2b31c ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xce9acc61 bgmac_phy_connect_direct EXPORT_SYMBOL_GPL vmlinux 0xcea54edb of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xceab84c1 __clk_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data EXPORT_SYMBOL_GPL vmlinux 0xceb7480d debugfs_create_file @@ -25142,21 +25200,23 @@ EXPORT_SYMBOL_GPL vmlinux 0xced5acd8 dev_pm_opp_of_remove_table EXPORT_SYMBOL_GPL vmlinux 0xcee03c68 power_supply_get_by_name EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xceebf887 ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine EXPORT_SYMBOL_GPL vmlinux 0xcef6f857 dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0xcf023c0e __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0xcf17b108 __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xcf184118 proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0xcf1f674a phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xcf28c047 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xcf32ac05 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0xcf482ecd skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xcf4bc9b8 thermal_zone_device_disable EXPORT_SYMBOL_GPL vmlinux 0xcf5159cb of_irq_find_parent EXPORT_SYMBOL_GPL vmlinux 0xcf5e8cc3 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xcf685782 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xcf68b204 find_vpid EXPORT_SYMBOL_GPL vmlinux 0xcf7f66f9 imx_dev_clk_hw_pll14xx EXPORT_SYMBOL_GPL vmlinux 0xcf85e359 of_usb_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xcfa0d953 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xcfaa840c fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0xcfab4160 regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xcfba6bfe acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xcfc4c744 fib6_check_nexthop EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0xcfcfc130 pci_epc_unmap_addr @@ -25166,71 +25226,67 @@ EXPORT_SYMBOL_GPL vmlinux 0xcffbf464 pci_sriov_set_totalvfs EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic EXPORT_SYMBOL_GPL vmlinux 0xd0022f43 of_device_uevent_modalias EXPORT_SYMBOL_GPL vmlinux 0xd002ade9 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xd004a970 wm8350_reg_write EXPORT_SYMBOL_GPL vmlinux 0xd00cfdea dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0xd01925ea nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xd023f0d8 thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op -EXPORT_SYMBOL_GPL vmlinux 0xd03015e6 kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xd03c85a8 ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event EXPORT_SYMBOL_GPL vmlinux 0xd0516b70 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xd05dea6e kvm_put_kvm_no_destroy EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd0741c6f devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0xd0741d77 devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd079f489 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd08b2d3e ata_std_bios_param EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd0a1a52e tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0xd0b209a0 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xd0b59355 kvm_vcpu_mark_page_dirty EXPORT_SYMBOL_GPL vmlinux 0xd0b6cac1 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xd0b724de skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c24023 mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xd0d959ab device_move EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0f3384d mtk_paris_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xd0fae930 security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0xd0e57706 tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xd0ff648b pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0xd1114887 sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse EXPORT_SYMBOL_GPL vmlinux 0xd139e078 pcie_aspm_capable EXPORT_SYMBOL_GPL vmlinux 0xd13ed8b8 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd141dc08 sock_map_destroy EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd14dd4ee pci_host_common_probe EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xd159bc12 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd15c8fca regulator_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xd1622342 devm_namespace_enable EXPORT_SYMBOL_GPL vmlinux 0xd1657352 acct_bioset_init EXPORT_SYMBOL_GPL vmlinux 0xd168edd2 umd_cleanup_helper EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd17ac1a6 platform_device_del EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0xd17fb250 of_clk_get_parent_count EXPORT_SYMBOL_GPL vmlinux 0xd18bf89c usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0xd19084f6 mmc_sanitize EXPORT_SYMBOL_GPL vmlinux 0xd192ffbb nvdimm_blk_region_create EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xd1ad7de8 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0xd1cadcc6 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0xd1ada2d2 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0xd1c5b75d dev_pm_qos_flags EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1d79257 add_page_wait_queue EXPORT_SYMBOL_GPL vmlinux 0xd1f1374b usb_get_urb EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f64f70 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xd1f37687 dax_iomap_fault EXPORT_SYMBOL_GPL vmlinux 0xd1fac1e9 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xd1fb76fd __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xd20013f4 clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0xd20278ea gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xd20b48b3 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xd215dac3 __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21d8b27 crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xd221be3d devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0xd229275b spi_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0xd2456114 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd2485ff4 dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xd248a8d1 simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0xd249a7e5 seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init -EXPORT_SYMBOL_GPL vmlinux 0xd2547f8e crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xd256bb60 wm8350_block_write EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write EXPORT_SYMBOL_GPL vmlinux 0xd267408f pci_epc_set_msi EXPORT_SYMBOL_GPL vmlinux 0xd270e977 pci_bridge_emul_conf_write @@ -25238,35 +25294,35 @@ EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references EXPORT_SYMBOL_GPL vmlinux 0xd2812c52 xenbus_dev_error EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2e0130e device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xd2f13869 clk_hw_set_rate_range EXPORT_SYMBOL_GPL vmlinux 0xd2f3dbd3 mtk_hw_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd2f402dd devlink_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0xd30d197e fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0xd315b29d espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0xd31787f0 fwnode_handle_get 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 0xd3238ee2 public_key_subtype EXPORT_SYMBOL_GPL vmlinux 0xd32d769e iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xd332e82c register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xd3314281 unmap_mapping_pages EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd33e0387 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xd34b7359 icc_enable EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xd37e9d8b ahci_platform_disable_clks EXPORT_SYMBOL_GPL vmlinux 0xd382024c xhci_add_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xd3852a1b get_device +EXPORT_SYMBOL_GPL vmlinux 0xd38e8ac2 kvm_io_bus_write EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 EXPORT_SYMBOL_GPL vmlinux 0xd3a4de90 dax_region_put EXPORT_SYMBOL_GPL vmlinux 0xd3c16901 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd3d143a5 gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0xd3ff6c74 cpufreq_register_governor EXPORT_SYMBOL_GPL vmlinux 0xd4003dc6 ohci_hub_status_data EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4159350 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xd40920d4 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xd413e235 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xd415503c fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count EXPORT_SYMBOL_GPL vmlinux 0xd42c55b7 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xd42cf912 ata_cable_sata EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0xd444c3bb fat_sync_inode EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console @@ -25275,91 +25331,87 @@ EXPORT_SYMBOL_GPL vmlinux 0xd467fe17 devm_regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs EXPORT_SYMBOL_GPL vmlinux 0xd46e813d dev_pm_opp_free_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0xd48226fe fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0xd4890f84 shmem_read_mapping_page_gfp EXPORT_SYMBOL_GPL vmlinux 0xd49126c2 devm_namespace_disable EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0xd4a294bb bus_get_kset EXPORT_SYMBOL_GPL vmlinux 0xd4a79185 irq_domain_pop_irq EXPORT_SYMBOL_GPL vmlinux 0xd4adb822 pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xd4b154d5 device_add_properties EXPORT_SYMBOL_GPL vmlinux 0xd4b26930 tty_buffer_set_limit EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b7e99c regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xd4be41a6 device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq EXPORT_SYMBOL_GPL vmlinux 0xd4c7ecec invalidate_inode_pages2 EXPORT_SYMBOL_GPL vmlinux 0xd4c8b679 tps65912_device_exit EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd4d3933b kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0xd4d3781f lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value EXPORT_SYMBOL_GPL vmlinux 0xd4f00dd1 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0xd4f48f27 wbc_attach_and_unlock_inode EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd50dafc4 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0xd51588eb __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0xd50ffd0e crypto_register_akcipher EXPORT_SYMBOL_GPL vmlinux 0xd51b133a rockchip_pcie_enable_clocks -EXPORT_SYMBOL_GPL vmlinux 0xd51efeb7 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xd5217690 regulator_set_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value EXPORT_SYMBOL_GPL vmlinux 0xd5308e49 usb_altnum_to_altsetting EXPORT_SYMBOL_GPL vmlinux 0xd5321c77 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xd538beb0 page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xd53e8632 sdio_writeb_readb EXPORT_SYMBOL_GPL vmlinux 0xd5429d29 devm_extcon_dev_allocate EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role EXPORT_SYMBOL_GPL vmlinux 0xd54c91d6 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0xd54e3443 call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0xd55ab707 gnttab_dma_free_pages EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd561ca4a devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5696a03 mdiobus_modify EXPORT_SYMBOL_GPL vmlinux 0xd56be403 devres_for_each_res EXPORT_SYMBOL_GPL vmlinux 0xd575dae9 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xd57f050b kvm_vcpu_yield_to EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop EXPORT_SYMBOL_GPL vmlinux 0xd599d181 adp5520_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd59c11a2 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xd5a754f5 crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0xd5a778ea md_new_event EXPORT_SYMBOL_GPL vmlinux 0xd5b688dc usb_lock_device_for_reset EXPORT_SYMBOL_GPL vmlinux 0xd5bae75f nvdimm_region_notify EXPORT_SYMBOL_GPL vmlinux 0xd5bddf35 nvdimm_pmem_region_create EXPORT_SYMBOL_GPL vmlinux 0xd5c0356d is_software_node EXPORT_SYMBOL_GPL vmlinux 0xd5cacd8d led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0xd5eacb73 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0xd5f4ce21 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xd5f53164 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xd5ff5bb4 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xd600d2c6 skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0xd612e931 decrypt_blob EXPORT_SYMBOL_GPL vmlinux 0xd6205845 blkcg_policy_register EXPORT_SYMBOL_GPL vmlinux 0xd623803c fat_free_clusters EXPORT_SYMBOL_GPL vmlinux 0xd628911b led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0xd6495660 cpufreq_unregister_governor EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd6527043 sched_trace_rq_avg_irq EXPORT_SYMBOL_GPL vmlinux 0xd659287a dev_pm_get_subsys_data EXPORT_SYMBOL_GPL vmlinux 0xd6676ea2 __class_create -EXPORT_SYMBOL_GPL vmlinux 0xd670fde2 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0xd672ebd1 ahci_start_fis_rx EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget EXPORT_SYMBOL_GPL vmlinux 0xd6749038 __efivar_entry_delete EXPORT_SYMBOL_GPL vmlinux 0xd67aa2c0 efivar_entry_remove EXPORT_SYMBOL_GPL vmlinux 0xd6828fa1 mbox_client_txdone EXPORT_SYMBOL_GPL vmlinux 0xd685e8ce of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xd68af474 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xd691177e i2c_recover_bus EXPORT_SYMBOL_GPL vmlinux 0xd69208eb efivars_kobject EXPORT_SYMBOL_GPL vmlinux 0xd692847e cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd69e525a xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xd694bc84 raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0xd6a0bb31 clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0xd6abb5c2 __fscrypt_prepare_lookup EXPORT_SYMBOL_GPL vmlinux 0xd6c4f33e tc3589x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xd6d33f48 tps80031_ext_power_req_config EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xd6dd9cd9 shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0xd6f52a5f dpcon_reset EXPORT_SYMBOL_GPL vmlinux 0xd6f93254 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xd70b6611 device_remove_properties EXPORT_SYMBOL_GPL vmlinux 0xd70dbf3b rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xd71cbf1f gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xd71ab01d __ata_ehi_push_desc 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 0xd7399d2a efivar_entry_iter_end EXPORT_SYMBOL_GPL vmlinux 0xd746834b fsl_mc_bus_dpdbg_type -EXPORT_SYMBOL_GPL vmlinux 0xd7543217 stmpe_block_read EXPORT_SYMBOL_GPL vmlinux 0xd7592dd6 handle_level_irq EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key EXPORT_SYMBOL_GPL vmlinux 0xd75f61be mmu_notifier_register @@ -25368,109 +25420,93 @@ EXPORT_SYMBOL_GPL vmlinux 0xd76e07e3 acpi_dma_configure_id EXPORT_SYMBOL_GPL vmlinux 0xd76ea310 dev_pm_genpd_set_next_wakeup EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl EXPORT_SYMBOL_GPL vmlinux 0xd781b717 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0xd7822f7c ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xd78e631e tcp_ca_get_key_by_name EXPORT_SYMBOL_GPL vmlinux 0xd7a19088 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xd7b4e034 is_skb_forwardable EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split EXPORT_SYMBOL_GPL vmlinux 0xd7b7fb80 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xd7c516ce of_clk_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable -EXPORT_SYMBOL_GPL vmlinux 0xd7cb22a1 dev_pm_qos_hide_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7dbd5d2 skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0xd7fddb52 xenbus_register_driver_common EXPORT_SYMBOL_GPL vmlinux 0xd81402a5 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xd8177e8a rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0xd831a214 __devm_regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0xd832b128 dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0xd83f8b30 iomap_swapfile_activate EXPORT_SYMBOL_GPL vmlinux 0xd848930e wm831x_reg_lock EXPORT_SYMBOL_GPL vmlinux 0xd84b080e irq_set_chained_handler_and_data EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd856be5d clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xd851e68a devlink_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0xd8600960 acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0xd8768809 kvm_vcpu_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd87650aa devm_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88a475c crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0xd89615d3 badblocks_set EXPORT_SYMBOL_GPL vmlinux 0xd8a4c606 devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0xd8ab4eaa ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0xd8d59f03 kick_process EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type EXPORT_SYMBOL_GPL vmlinux 0xd8da53bb pinctrl_enable EXPORT_SYMBOL_GPL vmlinux 0xd8da8478 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xd8e54954 sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0xd8f1b1af fsl_mc_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd8f66de5 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xd8f7a4d5 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0xd8f3be1a sched_trace_rq_avg_rt EXPORT_SYMBOL_GPL vmlinux 0xd8f9172c pci_epf_create EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xd900d643 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xd9095df9 lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xd92fd7db regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xd9340d93 udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0xd936a8ca power_supply_get_property_from_supplier EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xd940229b strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0xd9445914 edac_device_add_device EXPORT_SYMBOL_GPL vmlinux 0xd9519f66 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xd965ed2b dev_set_name EXPORT_SYMBOL_GPL vmlinux 0xd96a9fa7 blk_mark_disk_dead EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next EXPORT_SYMBOL_GPL vmlinux 0xd9733c2c mmu_notifier_range_update_to_read_only EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 EXPORT_SYMBOL_GPL vmlinux 0xd9a3d0a3 ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0xd9a9d3df spi_get_next_queued_message EXPORT_SYMBOL_GPL vmlinux 0xd9aed3fc dax_copy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xd9b60647 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0xd9bc0763 wakeup_source_remove EXPORT_SYMBOL_GPL vmlinux 0xd9d20b8b rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0xd9db7e1c devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd9dbce9f perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xd9dccde5 devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek EXPORT_SYMBOL_GPL vmlinux 0xd9e343de devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0xd9e43ce7 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xd9f589be fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0xd9f5ceb6 device_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister EXPORT_SYMBOL_GPL vmlinux 0xda0bd297 devm_regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda3743c9 imx_pinctrl_sc_ipc_init -EXPORT_SYMBOL_GPL vmlinux 0xda6cf2ae ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xda82daaa scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda95dc61 pm_relax EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa434dd file_is_kvm EXPORT_SYMBOL_GPL vmlinux 0xdaa672a9 devm_bitmap_zalloc EXPORT_SYMBOL_GPL vmlinux 0xdaa81e47 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xdaaabbba fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0xdaaae274 spi_controller_dma_unmap_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdacca3a7 skcipher_walk_complete EXPORT_SYMBOL_GPL vmlinux 0xdad48d19 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xdad49048 tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xdada8af1 blk_mq_unquiesce_queue EXPORT_SYMBOL_GPL vmlinux 0xdae47f23 extcon_set_property_sync EXPORT_SYMBOL_GPL vmlinux 0xdaeba577 blk_mq_sched_try_insert_merge EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaf7dec6 bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0xdb2b2ed4 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xdb2ccbdf ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdb2d9b13 mmc_regulator_set_vqmmc EXPORT_SYMBOL_GPL vmlinux 0xdb415585 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xdb45c199 rtc_update_irq_enable EXPORT_SYMBOL_GPL vmlinux 0xdb4a8ee0 serial8250_rpm_get_tx EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb64fd3b devlink_trap_policers_register EXPORT_SYMBOL_GPL vmlinux 0xdb717f0e pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0xdb804a73 __ndisc_fill_addr_option EXPORT_SYMBOL_GPL vmlinux 0xdb80f557 regulator_enable_regmap EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb8f9cf7 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xdba6779e bgmac_phy_connect_direct -EXPORT_SYMBOL_GPL vmlinux 0xdbb5017f crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0xdbc2a9d5 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xdbc4b235 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0xdbce8181 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xdbb291ed fwnode_graph_get_remote_endpoint EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq EXPORT_SYMBOL_GPL vmlinux 0xdbdb90a5 xenbus_frontend_closed EXPORT_SYMBOL_GPL vmlinux 0xdbe16ad9 dev_attr_ncq_prio_supported @@ -25479,259 +25515,263 @@ EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister EXPORT_SYMBOL_GPL vmlinux 0xdbf0d3a9 arm64_mm_context_put EXPORT_SYMBOL_GPL vmlinux 0xdbf22c13 rio_map_inb_region EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbf7ec9d regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xdbfd59b2 crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available EXPORT_SYMBOL_GPL vmlinux 0xdc139c13 k3_udma_glue_tx_get_hdesc_size EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall EXPORT_SYMBOL_GPL vmlinux 0xdc2c3a02 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xdc2f61b4 devlink_port_register EXPORT_SYMBOL_GPL vmlinux 0xdc354724 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xdc418548 ata_host_register EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc4dbc0e sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xdc5f6318 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xdc4b3dd5 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xdc526731 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xdc54fa27 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdc5bb571 tcp_ca_openreq_child EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc76c5e9 inet_hash EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init -EXPORT_SYMBOL_GPL vmlinux 0xdc7fe259 sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xdc8f5de1 tegra_bpmp_request_mrq -EXPORT_SYMBOL_GPL vmlinux 0xdc934cd5 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xdc93de73 ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc995143 nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca518f3 sprd_pinctrl_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xdca7f744 icc_sync_state EXPORT_SYMBOL_GPL vmlinux 0xdcabc96a lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xdcaf6406 xfrm_audit_state_replay EXPORT_SYMBOL_GPL vmlinux 0xdccc9278 imx_obtain_fixed_clk_hw +EXPORT_SYMBOL_GPL vmlinux 0xdcd1df95 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0xdcdf9292 of_map_id EXPORT_SYMBOL_GPL vmlinux 0xdce8029b virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xdce96abd inet_csk_get_port EXPORT_SYMBOL_GPL vmlinux 0xdcf7d1e7 acpi_subsys_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0xdcfbe376 devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xdcfd5546 ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc EXPORT_SYMBOL_GPL vmlinux 0xdd0b2d85 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0xdd268f22 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdd2384cf ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0xdd26f200 rt_mutex_lock_interruptible EXPORT_SYMBOL_GPL vmlinux 0xdd2c248e pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0xdd300a07 mpc8xxx_spi_rx_buf_u16 EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd3e4f21 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0xdd4362b2 fixed_phy_register_with_gpiod EXPORT_SYMBOL_GPL vmlinux 0xdd4b36e8 of_reserved_mem_device_release EXPORT_SYMBOL_GPL vmlinux 0xdd529dd8 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xdd5517f7 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xdd55f278 device_set_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0xdd609d52 iommu_map_sg EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xdd74a9d5 of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdda27fa0 spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xddaf0c8d unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0xddb31f21 gpiod_export EXPORT_SYMBOL_GPL vmlinux 0xddb4c067 mtk_hw_set_value EXPORT_SYMBOL_GPL vmlinux 0xddb820b7 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0xddbdaf9c ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc9c735 ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0xddcb970b sysfs_remove_file_from_group EXPORT_SYMBOL_GPL vmlinux 0xddcc2bcf meson_pmx_get_funcs_count EXPORT_SYMBOL_GPL vmlinux 0xdddc4aca sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xddf0df6e devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0xddea303d security_kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0xddf4ef78 genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xddff8766 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0xde017305 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0xde00a1b9 fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0xde04ad12 devm_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xde09a3d1 irq_chip_ack_parent EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find -EXPORT_SYMBOL_GPL vmlinux 0xde0a8e34 device_del EXPORT_SYMBOL_GPL vmlinux 0xde0f84c4 acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xde166d38 crypto_comp_decompress EXPORT_SYMBOL_GPL vmlinux 0xde25d373 acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0xde2f81e8 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xde2b7885 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xde301c2b crypto_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0xde36bf96 percpu_down_write EXPORT_SYMBOL_GPL vmlinux 0xde3b8762 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0xde442a04 gfn_to_page EXPORT_SYMBOL_GPL vmlinux 0xde4d7b90 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0xde57d5af __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xde666894 devlink_dpipe_table_unregister EXPORT_SYMBOL_GPL vmlinux 0xde69ae6e powercap_unregister_zone EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde74b130 inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0xde79a388 fsl_mc_bus_dpci_type EXPORT_SYMBOL_GPL vmlinux 0xde8fd063 scsi_target_unblock EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xdea10a3a hisi_reset_init -EXPORT_SYMBOL_GPL vmlinux 0xdeaf756d __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xdee1623f devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xdee9defd __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xdeece51a crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf09cbc4 sched_set_normal EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal EXPORT_SYMBOL_GPL vmlinux 0xdf1ae1ad pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xdf32a958 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0xdf407d70 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xdf43f010 __traceiter_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xdf570f62 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xdf5064a5 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xdf59068c kvm_put_kvm EXPORT_SYMBOL_GPL vmlinux 0xdf5b7428 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xdf62b180 __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdf6a54b8 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xdf8126ed tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0xdf6d7743 crypto_shash_update EXPORT_SYMBOL_GPL vmlinux 0xdf8343ed scmi_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xdfa3a00b of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xdf9cee4f tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0xdfa6e51d phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0xdfac16f4 sprd_pinctrl_core_probe +EXPORT_SYMBOL_GPL vmlinux 0xdfae11be dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0xdfbf07c7 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xdfc5a209 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xdfc73fa6 tcp_twsk_unique EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set EXPORT_SYMBOL_GPL vmlinux 0xdfe3a9f8 xenbus_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xdfe69a86 pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdfec8f19 __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0xdffa9ba3 of_phandle_iterator_init EXPORT_SYMBOL_GPL vmlinux 0xe00aaae4 syscon_regmap_lookup_by_phandle_args EXPORT_SYMBOL_GPL vmlinux 0xe011a7b1 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xe015b695 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xe018e363 clk_hw_is_prepared EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0xe01fa023 ata_pci_device_resume EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xe0389989 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0xe03fbb0c clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0xe04f2b64 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe058060d spi_res_alloc EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe06a260f sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0xe062ae0d of_i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0xe0759efa peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe0784c7e regulator_list_hardware_vsel EXPORT_SYMBOL_GPL vmlinux 0xe081eb58 ahci_platform_enable_phys EXPORT_SYMBOL_GPL vmlinux 0xe091efab virtqueue_get_buf EXPORT_SYMBOL_GPL vmlinux 0xe0942120 phy_configure EXPORT_SYMBOL_GPL vmlinux 0xe0957a0b fsl_mc_bus_dpbp_type EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate EXPORT_SYMBOL_GPL vmlinux 0xe0ba3794 devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0xe0c7944e netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xe0cfe3a9 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xe0c7e93b of_clk_hw_simple_get EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op -EXPORT_SYMBOL_GPL vmlinux 0xe0e8a803 sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0xe0f6034f k3_udma_glue_request_tx_chn EXPORT_SYMBOL_GPL vmlinux 0xe0f70d0a led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xe0fbdb46 gpiochip_line_is_persistent EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe10dfdfa skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0xe1270802 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xe116bd69 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xe12d0da3 devfreq_get_devfreq_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xe12e760d ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0xe12ea938 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xe13e85c8 vfs_inode_has_locks EXPORT_SYMBOL_GPL vmlinux 0xe1559674 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0xe160cad7 perf_aux_output_flag EXPORT_SYMBOL_GPL vmlinux 0xe1734464 irq_create_of_mapping EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17d12cc kvm_vcpu_read_guest_page EXPORT_SYMBOL_GPL vmlinux 0xe1882c95 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0xe192788c crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xe1905e58 dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe1baaf92 skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1cbe76a sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0xe1cf82db sdio_writew EXPORT_SYMBOL_GPL vmlinux 0xe1ec2034 devm_hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0xe1ff9a1a dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0xe217e030 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0xe22a0efb inet6_hash EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xe2645c66 kvm_vcpu_read_guest EXPORT_SYMBOL_GPL vmlinux 0xe2663e18 cpuidle_register_driver EXPORT_SYMBOL_GPL vmlinux 0xe27eddef acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe2845bb6 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe2aafb92 ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier EXPORT_SYMBOL_GPL vmlinux 0xe2c19756 da9055_regmap_config EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key EXPORT_SYMBOL_GPL vmlinux 0xe2d14dc8 meson_pmx_get_groups -EXPORT_SYMBOL_GPL vmlinux 0xe307ddaa devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe2e9347d scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xe2f52a40 dev_pm_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0xe30f3e74 of_regulator_match EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0xe31519e2 __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0xe32435c7 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xe325ffbb dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0xe3295b35 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe33022eb crypto_unregister_scomp EXPORT_SYMBOL_GPL vmlinux 0xe3313653 register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod EXPORT_SYMBOL_GPL vmlinux 0xe342c122 pci_disable_pri EXPORT_SYMBOL_GPL vmlinux 0xe344d6ab show_class_attr_string EXPORT_SYMBOL_GPL vmlinux 0xe346b4ed xenbus_read_otherend_details EXPORT_SYMBOL_GPL vmlinux 0xe347e654 irq_domain_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0xe369b1b6 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xe36e798f lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0xe378f9d9 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0xe37aa333 regulator_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe38ba87b ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xe3847cfc platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xe38cc4fa cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xe390bf51 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0xe3947bb5 synth_event_create EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3abfe25 tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3bae495 devm_hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3cf5db3 devlink_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0xe3d8e79d dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0xe3dd4914 devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0xe3f1e5c9 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xe3f87ede skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xe3f90b29 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xe3ff1e40 of_i2c_setup_smbus_alert EXPORT_SYMBOL_GPL vmlinux 0xe4035382 rio_mport_initialize EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv EXPORT_SYMBOL_GPL vmlinux 0xe40c8262 of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xe41d5680 skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0xe41f87f4 dmaengine_desc_attach_metadata EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe42cea72 ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0xe42e920e screen_glyph EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe43b6737 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xe43ba65e ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0xe4407c4e spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0xe4690e45 devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0xe490154d pci_hp_create_module_link EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe498c3a0 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xe4a68ec2 ata_cable_80wire EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed EXPORT_SYMBOL_GPL vmlinux 0xe4b6a6aa rio_release_inb_pwrite 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 0xe4c5d1e2 iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0xe4cc0b49 pwm_capture EXPORT_SYMBOL_GPL vmlinux 0xe4df08d4 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xe4e231e4 device_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4eccd8f __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xe4eef069 stmpe_block_write EXPORT_SYMBOL_GPL vmlinux 0xe4ef95c9 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0xe50689e8 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xe508c6c6 __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0xe50ae529 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xe50c8006 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0xe513724b ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xe51e45b0 devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xe526c7d7 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0xe50c7742 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xe50e6808 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe51c15bc icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0xe534a149 usb_hcd_link_urb_to_ep EXPORT_SYMBOL_GPL vmlinux 0xe54bf4e7 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xe54dfedf ata_sas_port_destroy EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq EXPORT_SYMBOL_GPL vmlinux 0xe554ae88 rio_dma_prep_xfer EXPORT_SYMBOL_GPL vmlinux 0xe57318a5 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0xe577d8da find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe57b1307 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0xe57cf3ff regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0xe57f5dc9 kvm_get_kvm_safe -EXPORT_SYMBOL_GPL vmlinux 0xe583accc regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5846a21 tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe597d110 phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0xe5a05a5f rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xe5a3596e ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize EXPORT_SYMBOL_GPL vmlinux 0xe5be8664 mtk_pinconf_adv_drive_set EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xe5c565d7 xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0xe5c91a61 usb_check_bulk_endpoints 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 0xe5d7288a dma_get_any_slave_channel EXPORT_SYMBOL_GPL vmlinux 0xe5dde7b7 ti_sci_inta_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xe5ebe986 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xe5e20717 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xe5e2812d inet6_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0xe5ed01a5 usb_get_dev EXPORT_SYMBOL_GPL vmlinux 0xe5ee6750 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xe5f9c8ba skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work EXPORT_SYMBOL_GPL vmlinux 0xe60a27b1 dev_pm_opp_get_level EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xe620fd95 devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0xe626a2c0 devm_pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe65471ec bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xe66a5a94 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xe6470fa8 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0xe668dcc0 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xe66ee889 regulator_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xe6734c68 usb_hcd_pci_shutdown EXPORT_SYMBOL_GPL vmlinux 0xe6751885 debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0xe6758435 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xe67b8a52 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6861548 skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0xe68bd3dc genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe6a11c33 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xe6d1e26a crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0xe6d373a8 usb_control_msg EXPORT_SYMBOL_GPL vmlinux 0xe6dfc836 ti_sci_get_handle EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq @@ -25742,10 +25782,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data EXPORT_SYMBOL_GPL vmlinux 0xe6fb88fe devfreq_event_enable_edev EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert EXPORT_SYMBOL_GPL vmlinux 0xe70c2417 xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xe70fdeac vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xe7205106 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xe722bd89 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xe742b63e kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xe710e52a ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xe721f09d dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xe73b262e locks_release_private EXPORT_SYMBOL_GPL vmlinux 0xe74b8cf6 rio_get_comptag EXPORT_SYMBOL_GPL vmlinux 0xe752a43b devm_fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end @@ -25753,258 +25792,243 @@ EXPORT_SYMBOL_GPL vmlinux 0xe757d29b serial8250_rpm_get EXPORT_SYMBOL_GPL vmlinux 0xe758be0a blk_ksm_destroy EXPORT_SYMBOL_GPL vmlinux 0xe75b7170 of_thermal_get_trip_points EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7799c76 fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe787cffe bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0xe78dc96f device_bind_driver EXPORT_SYMBOL_GPL vmlinux 0xe79283d3 irq_domain_alloc_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate EXPORT_SYMBOL_GPL vmlinux 0xe79f70a3 iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0xe7bbb28e seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0xe7c12d9f splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xe7b517f4 sprd_pinctrl_core_probe EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7e8126b meson_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0xe7fb2b72 cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0xe809de31 skcipher_walk_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xe8157fa9 pci_disable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt EXPORT_SYMBOL_GPL vmlinux 0xe8199ff8 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xe8201a38 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xe81a4f5a mmc_regulator_get_supply EXPORT_SYMBOL_GPL vmlinux 0xe8279f5e dev_pm_put_subsys_data EXPORT_SYMBOL_GPL vmlinux 0xe828e169 mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0xe82a7a42 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xe8339f25 sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0xe8426fc1 acpi_irq_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0xe84ed34a unregister_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe8528fcc __devm_spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start EXPORT_SYMBOL_GPL vmlinux 0xe86b22de power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0xe86b2fc8 k3_ringacc_dmarings_init -EXPORT_SYMBOL_GPL vmlinux 0xe87008b1 shmem_zero_setup EXPORT_SYMBOL_GPL vmlinux 0xe870bec6 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0xe873985a phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0xe87688e6 simple_attr_release EXPORT_SYMBOL_GPL vmlinux 0xe87fb402 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe884ab6a platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xe88db11a acpi_spi_count_resources EXPORT_SYMBOL_GPL vmlinux 0xe8976409 acpi_dev_resume EXPORT_SYMBOL_GPL vmlinux 0xe8980db1 em_dev_register_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xe8a0ba38 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xe8a777ed lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0xe8b06b1e __traceiter_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0xe8b2f3aa pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xe8b750d6 __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static EXPORT_SYMBOL_GPL vmlinux 0xe8c41547 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe8d50c16 __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xe8e7f29e devlink_port_params_register +EXPORT_SYMBOL_GPL vmlinux 0xe8c9c85b __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xe8e958fc blk_update_request EXPORT_SYMBOL_GPL vmlinux 0xe8f2aea2 mtk_pinconf_bias_disable_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xe90609f0 sdio_memcpy_toio EXPORT_SYMBOL_GPL vmlinux 0xe90c7659 k3_udma_glue_rx_dma_to_cppi5_addr EXPORT_SYMBOL_GPL vmlinux 0xe911c6db cpufreq_dbs_governor_start EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe91dbbe0 ptp_parse_header EXPORT_SYMBOL_GPL vmlinux 0xe92523bb irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xe936c64d inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0xe93a26d3 regulator_force_disable EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe94360c4 devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0xe947d8e2 regulator_set_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0xe948369d fsl_mc_bus_dpdcei_type EXPORT_SYMBOL_GPL vmlinux 0xe94ed7ff dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0xe952f770 ata_dev_pair EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xe960aa23 led_trigger_rename_static EXPORT_SYMBOL_GPL vmlinux 0xe963a745 devfreq_event_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xe9667a38 debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0xe975256a devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xe9810951 ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version EXPORT_SYMBOL_GPL vmlinux 0xe99c1ded iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0xe99febe6 regmap_write_async EXPORT_SYMBOL_GPL vmlinux 0xe9a0c71c fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0xe9affc65 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xe9bd8a72 dev_pm_qos_hide_flags EXPORT_SYMBOL_GPL vmlinux 0xe9c3add3 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xe9c61b58 skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0xe9c74898 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xe9cf803e trace_array_put EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d398c5 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xe9d20f53 sock_prot_inuse_add EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn EXPORT_SYMBOL_GPL vmlinux 0xe9da9b56 virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0xe9e062dd thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9ddf03e crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xe9e45bfd device_rename EXPORT_SYMBOL_GPL vmlinux 0xe9e51739 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0xe9e861a3 fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0xe9e86959 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xe9ea74ab device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9ed5a51 addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea0b1e95 devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xea0b695d regmap_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd EXPORT_SYMBOL_GPL vmlinux 0xea16ed5b iommu_device_unlink EXPORT_SYMBOL_GPL vmlinux 0xea1ecd86 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xea2070a9 rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0xea2576f7 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0xea2aff9c crypto_stats_decompress EXPORT_SYMBOL_GPL vmlinux 0xea3213df irq_domain_associate EXPORT_SYMBOL_GPL vmlinux 0xea37973b of_genpd_del_provider EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea41313c security_path_chown EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss EXPORT_SYMBOL_GPL vmlinux 0xea532279 of_irq_get EXPORT_SYMBOL_GPL vmlinux 0xea6862b7 dma_buf_move_notify EXPORT_SYMBOL_GPL vmlinux 0xea7369ea scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xea75910d kick_process EXPORT_SYMBOL_GPL vmlinux 0xea87f9d6 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0xeab0f28e __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xeab3ac65 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xea99f2f7 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xeab6c73d of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xeab8bd5a kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xeacbe6f4 fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xead3e27f ahci_platform_get_resources 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 0xeade9065 device_store_ulong EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeae1ba3f crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0xeae87538 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xeaefa896 dev_pm_qos_hide_flags EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xeaf16a8d get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 -EXPORT_SYMBOL_GPL vmlinux 0xeb0c5be7 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb321498 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0xeb3ab743 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xeaf90377 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xeb372134 event_triggers_call EXPORT_SYMBOL_GPL vmlinux 0xeb3f28c4 iommu_set_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock EXPORT_SYMBOL_GPL vmlinux 0xeb47e4c7 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb5a967a devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb4fd88c crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xeb500cd0 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xeb57de71 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xeb5baba2 sdio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xeb763b2e clk_regmap_divider_ops EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xeb7a9111 fwnode_get_next_available_child_node EXPORT_SYMBOL_GPL vmlinux 0xeb7fe8e9 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xeb923fb7 regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0xeb97b990 clk_regmap_gate_ops EXPORT_SYMBOL_GPL vmlinux 0xeb9b8eb9 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xeba3481d gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xeba92c06 fwnode_graph_get_remote_node EXPORT_SYMBOL_GPL vmlinux 0xebab9bb8 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xebaf4770 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xebb210e7 pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0xebb684bb extcon_set_state_sync EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0xebcbbca1 devm_request_free_mem_region EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms EXPORT_SYMBOL_GPL vmlinux 0xebdafd9d rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xebebfefc __traceiter_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0xebf36e40 led_init_core EXPORT_SYMBOL_GPL vmlinux 0xebf54602 amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xec01a25a __traceiter_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xec076033 pinctrl_count_index_with_args EXPORT_SYMBOL_GPL vmlinux 0xec1cbe41 regulator_is_enabled_regmap EXPORT_SYMBOL_GPL vmlinux 0xec2ec209 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xec42cfc0 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xec44de7c gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0xec4b552c dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xec51144a lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec672c76 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xec6be8fa clk_hw_get_parent EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec937375 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0xec9b8a4e crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0xecb07107 mctrl_gpio_init_noauto EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start EXPORT_SYMBOL_GPL vmlinux 0xecb9e6e9 usb_get_dr_mode EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecbf89b0 vfs_read EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xed0a42ee devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed234f06 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xecfb7928 devlink_param_unregister EXPORT_SYMBOL_GPL vmlinux 0xed387d96 devres_destroy EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed3d2655 ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0xed4c90ac usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xed580609 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xed673fb7 fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0xed6db82f tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xed76a712 regulator_set_voltage_time_sel EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo EXPORT_SYMBOL_GPL vmlinux 0xed7cce78 dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0xed80ca47 ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0xed8aca5c devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xed8b7396 device_init_wakeup EXPORT_SYMBOL_GPL vmlinux 0xed8be743 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xedb00cbd bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0xedb5fa57 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xedbbda3d ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xeda9ca33 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xedb77a79 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xedd12388 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xedd5c5fc gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0xeddb1f34 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0xede2b365 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xede71a41 blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup EXPORT_SYMBOL_GPL vmlinux 0xedeb542a syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xedf2cdf7 device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0xedf655fb ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0xedf73d14 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xee108faa thermal_zone_device_enable EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee3c5e93 i2c_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xee6a4d63 xdp_rxq_info_unreg_mem_model 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 0xee79f4e6 xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0xee7a2a1c dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0xeea49347 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xeec4b7bb udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0xee7b841f strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xeec0d1bd inet6_compat_ioctl EXPORT_SYMBOL_GPL vmlinux 0xeec5b1ad tegra_mc_get_emem_device_count EXPORT_SYMBOL_GPL vmlinux 0xeed09f3b usb_interrupt_msg EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd EXPORT_SYMBOL_GPL vmlinux 0xeed6eca2 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeed8d45b fixed_phy_register_with_gpiod EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run EXPORT_SYMBOL_GPL vmlinux 0xeeebc612 debugfs_print_regs32 EXPORT_SYMBOL_GPL vmlinux 0xeefdf695 devm_of_led_get EXPORT_SYMBOL_GPL vmlinux 0xeefe162f dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0xef104fa2 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xef07f61d ata_std_qc_defer EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef248e4a crypto_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef2c0c6c sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xef2c3656 kill_device -EXPORT_SYMBOL_GPL vmlinux 0xef2f6d70 fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0xef3162c3 pciserial_init_ports EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active EXPORT_SYMBOL_GPL vmlinux 0xef369184 dma_buf_unpin -EXPORT_SYMBOL_GPL vmlinux 0xef413641 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xef3dbf68 gpiochip_unlock_as_irq EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef516a81 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0xef46e82d kvm_vcpu_is_visible_gfn EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef651416 devlink_port_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0xef69d9eb tc3589x_block_write EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6d937b addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance EXPORT_SYMBOL_GPL vmlinux 0xef744bb5 sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0xef76fa70 gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0xef8fbcf1 pci_load_saved_state EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa3c0a1 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0xefb6b231 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0xefc7e5fd switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xefad8ccd inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xefdfba2f sata_link_debounce EXPORT_SYMBOL_GPL vmlinux 0xefe2c77f vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xefe3567f tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs EXPORT_SYMBOL_GPL vmlinux 0xeff767e2 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xeffb99ce unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xf003e2f5 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xf0042984 devlink_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0xf0201d33 md_bitmap_copy_from_slot EXPORT_SYMBOL_GPL vmlinux 0xf0301734 thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0xf03b0410 ftrace_set_filter EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf0518467 set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0xf0521c6b tc3589x_reg_write EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf0611ae4 kvm_vcpu_mark_page_dirty EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf071e687 inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0xf073faf7 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xf07dbd9f ip6_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream EXPORT_SYMBOL_GPL vmlinux 0xf09d50f0 dma_buf_end_cpu_access EXPORT_SYMBOL_GPL vmlinux 0xf09ea228 usb_free_streams EXPORT_SYMBOL_GPL vmlinux 0xf0a0c69d init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xf0a47094 kvm_init -EXPORT_SYMBOL_GPL vmlinux 0xf0ba4b7c ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0xf0c4293f blkdev_nr_zones EXPORT_SYMBOL_GPL vmlinux 0xf0ca13dd extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0xf0d478c7 list_lru_add EXPORT_SYMBOL_GPL vmlinux 0xf0d820a4 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf0e97055 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xf0d8313c bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xf0df4f54 ata_cable_80wire EXPORT_SYMBOL_GPL vmlinux 0xf0f1ee6d is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xf1141018 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf0fbf15b device_link_add EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll EXPORT_SYMBOL_GPL vmlinux 0xf1281d74 fb_deferred_io_init EXPORT_SYMBOL_GPL vmlinux 0xf12894cf ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xf13a433a regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xf14448a4 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xf149fb94 inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0xf15bfb83 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0xf1610d2e kvm_unmap_gfn EXPORT_SYMBOL_GPL vmlinux 0xf16c16b4 fsverity_cleanup_inode EXPORT_SYMBOL_GPL vmlinux 0xf1730e65 firmware_request_platform EXPORT_SYMBOL_GPL vmlinux 0xf17b34f7 vp_modern_set_status @@ -26014,103 +26038,103 @@ EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit EXPORT_SYMBOL_GPL vmlinux 0xf18affeb nvdimm_provider_data EXPORT_SYMBOL_GPL vmlinux 0xf1a13507 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xf1a7d261 kvm_vcpu_unmap EXPORT_SYMBOL_GPL vmlinux 0xf1ca62c7 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xf1d151e5 __kernel_write EXPORT_SYMBOL_GPL vmlinux 0xf1f21856 i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0xf20e56d5 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf213f0d4 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xf21ba64f tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xf2100069 aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf21f5e34 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0xf2264a62 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xf23042ba gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xf230bbf6 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xf231fc8c crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xf23b7d86 regmap_noinc_read EXPORT_SYMBOL_GPL vmlinux 0xf23dc268 serdev_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xf2418972 pm_clk_destroy EXPORT_SYMBOL_GPL vmlinux 0xf241e46f topology_set_thermal_pressure -EXPORT_SYMBOL_GPL vmlinux 0xf246aea2 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0xf2475602 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xf243887f cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xf24ec5f0 rtc_class_open EXPORT_SYMBOL_GPL vmlinux 0xf25f75e5 cpufreq_frequency_table_get_index EXPORT_SYMBOL_GPL vmlinux 0xf263f9cc pin_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0xf266c6d9 pci_ats_supported EXPORT_SYMBOL_GPL vmlinux 0xf2780f9e pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref EXPORT_SYMBOL_GPL vmlinux 0xf28189e1 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xf28f32c5 wm8350_reg_read EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on EXPORT_SYMBOL_GPL vmlinux 0xf299dc5f subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xf29dbdb0 shash_ahash_update EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xf2bc183b clk_divider_ops EXPORT_SYMBOL_GPL vmlinux 0xf2cb642b debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xf2ce0284 dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0xf2cf0bf3 pci_slots_kset EXPORT_SYMBOL_GPL vmlinux 0xf2d7d661 devm_spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xf305b8a3 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xf302153b ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xf3067a8f crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xf306afb3 seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support EXPORT_SYMBOL_GPL vmlinux 0xf30dfc77 devm_thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0xf30ec856 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xf3117f86 regmap_get_reg_stride 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 0xf31c63d3 ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0xf31ce9d4 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xf3299190 sdio_get_host_pm_caps EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf32e3437 kvm_put_kvm_no_destroy EXPORT_SYMBOL_GPL vmlinux 0xf32f4054 kernfs_path_from_node EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33cc58a ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xf348055a regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0xf34dc9ff cpci_hp_register_bus EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xf369f4c2 iommu_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0xf386bbb4 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xf393b9fc wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xf394abe6 of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xf39e5fa9 ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0xf3a38770 gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove EXPORT_SYMBOL_GPL vmlinux 0xf3b9ca97 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xf3c0efac inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xf3d05536 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xf3c6ddec inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0xf3d13ea8 md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0xf3d330ba pinctrl_force_default EXPORT_SYMBOL_GPL vmlinux 0xf3d3b2a5 __xenbus_register_frontend EXPORT_SYMBOL_GPL vmlinux 0xf3d48372 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xf3d64f3e fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0xf3d84cc1 simple_attr_open EXPORT_SYMBOL_GPL vmlinux 0xf3ddc686 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0xf3f8cede net_ns_type_operations EXPORT_SYMBOL_GPL vmlinux 0xf3fa2b37 usb_phy_roothub_suspend EXPORT_SYMBOL_GPL vmlinux 0xf3fb3150 __irq_alloc_domain_generic_chips EXPORT_SYMBOL_GPL vmlinux 0xf403e9d6 watchdog_notify_pretimeout EXPORT_SYMBOL_GPL vmlinux 0xf406a9b5 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xf40aa62c switchdev_handle_fdb_add_to_device -EXPORT_SYMBOL_GPL vmlinux 0xf449dbae gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xf458807a platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xf40cafae __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xf40cc811 mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0xf458f20f iomap_migrate_page EXPORT_SYMBOL_GPL vmlinux 0xf45c4102 pinctrl_pm_select_sleep_state EXPORT_SYMBOL_GPL vmlinux 0xf45e45d5 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0xf45e9c72 __mmdrop EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf4707cf4 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf474096d platform_irqchip_probe EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit EXPORT_SYMBOL_GPL vmlinux 0xf4787eed phy_set_media EXPORT_SYMBOL_GPL vmlinux 0xf47a6f52 class_for_each_device EXPORT_SYMBOL_GPL vmlinux 0xf48a2ef5 led_sysfs_disable EXPORT_SYMBOL_GPL vmlinux 0xf48b4c65 pci_iov_virtfn_devfn EXPORT_SYMBOL_GPL vmlinux 0xf4956ac6 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xf4966b18 clk_gate_restore_context EXPORT_SYMBOL_GPL vmlinux 0xf49a3116 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf49d487f thermal_zone_unbind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4adec1c cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal EXPORT_SYMBOL_GPL vmlinux 0xf4c99ffc invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xf4cc6fb1 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xf4cc9ca1 regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4dca34f regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xf4d1ccec spi_statistics_add_transfer_stats EXPORT_SYMBOL_GPL vmlinux 0xf4e35e28 sbitmap_prepare_to_wait EXPORT_SYMBOL_GPL vmlinux 0xf5001266 __pm_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0xf50774df da9052_free_irq EXPORT_SYMBOL_GPL vmlinux 0xf5125446 dprc_cleanup EXPORT_SYMBOL_GPL vmlinux 0xf5181910 iommu_device_sysfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xf522865d fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xf52d6183 wm8350_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0xf548988d put_iova_domain EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock @@ -26120,45 +26144,51 @@ EXPORT_SYMBOL_GPL vmlinux 0xf58dac4b anon_inode_getfile EXPORT_SYMBOL_GPL vmlinux 0xf5a1c3b6 edac_device_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5bb8ae8 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xf5bc2ac7 hisi_reset_init EXPORT_SYMBOL_GPL vmlinux 0xf5c239a6 mtk_pinconf_bias_set EXPORT_SYMBOL_GPL vmlinux 0xf5c56c52 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xf5c6f2fa sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0xf5ca549e xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xf5d075fa dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xf5df599d of_usb_host_tpl_support EXPORT_SYMBOL_GPL vmlinux 0xf5e1a77c trace_seq_putmem_hex EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5f487af pwm_capture EXPORT_SYMBOL_GPL vmlinux 0xf5f96457 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xf6021625 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xf616ad95 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xf606b45f pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0xf619b214 skcipher_walk_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall -EXPORT_SYMBOL_GPL vmlinux 0xf620da6c crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xf6357034 devlink_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf6592a8e bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xf66176b7 blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync EXPORT_SYMBOL_GPL vmlinux 0xf6791378 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xf6816428 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xf686801b __ndisc_fill_addr_option EXPORT_SYMBOL_GPL vmlinux 0xf68742fe devm_led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0xf689be63 devm_serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0xf689e22a ata_sff_qc_fill_rtf EXPORT_SYMBOL_GPL vmlinux 0xf68bbf10 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0xf6929cd5 mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c0bafd bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6e085c3 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0xf6c913ab gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xf6cbb0a7 of_clk_del_provider EXPORT_SYMBOL_GPL vmlinux 0xf6e281da tty_prepare_flip_string EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6f086a0 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf7022cf8 gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0xf7074648 noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0xf71a3098 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xf70c7804 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0xf70eaa98 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0xf711f792 ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0xf7243799 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xf724a66f validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf72b48d5 sdio_readl EXPORT_SYMBOL_GPL vmlinux 0xf72c0579 powercap_register_zone EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xf736a6c6 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xf739c96d fib6_check_nexthop EXPORT_SYMBOL_GPL vmlinux 0xf73d652f extcon_set_property EXPORT_SYMBOL_GPL vmlinux 0xf744f0b5 ata_sff_irq_on EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user @@ -26168,123 +26198,115 @@ EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit EXPORT_SYMBOL_GPL vmlinux 0xf75bfc84 mtk_pinconf_bias_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0xf75d5bc3 iopf_queue_add_device EXPORT_SYMBOL_GPL vmlinux 0xf771bb63 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0xf772eda8 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xf77675cc regulator_list_voltage EXPORT_SYMBOL_GPL vmlinux 0xf778c30e iommu_iova_to_phys 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 0xf7a0a8ff devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf7aecfe2 __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init -EXPORT_SYMBOL_GPL vmlinux 0xf7ba32bb gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7cb8eca crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0xf7cec8ce dev_pm_opp_set_opp EXPORT_SYMBOL_GPL vmlinux 0xf7d90825 handle_irq_desc EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite EXPORT_SYMBOL_GPL vmlinux 0xf7e72ad2 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xf7ebe693 shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0xf7ec8162 of_get_videomode EXPORT_SYMBOL_GPL vmlinux 0xf7f3f0d3 of_device_request_module -EXPORT_SYMBOL_GPL vmlinux 0xf7f99941 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xf8060367 xfrm_output_resume EXPORT_SYMBOL_GPL vmlinux 0xf80de577 blk_queue_required_elevator_features EXPORT_SYMBOL_GPL vmlinux 0xf8179678 mtk_pinconf_drive_get -EXPORT_SYMBOL_GPL vmlinux 0xf82292bf skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xf82eb59e lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf83515a6 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xf83946a3 kvm_map_gfn EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0xf85e5743 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xf860060c netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk EXPORT_SYMBOL_GPL vmlinux 0xf86e29d0 irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xf87f6c2d fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0xf8a0df87 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xf8bb0383 ethnl_cable_test_amplitude -EXPORT_SYMBOL_GPL vmlinux 0xf8cc0ebd __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0xf8ddf760 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0xf8bd6fba crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xf8e5de12 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xf8ee7e13 fwnode_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fccb61 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xf8f40753 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xf8f4457a kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xf8fe41ba sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xf8ff5bbf filemap_range_needs_writeback EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable +EXPORT_SYMBOL_GPL vmlinux 0xf906a9e3 __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xf91721f5 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xf91afb66 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xf91e73e4 pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0xf91fd6d1 sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0xf920553e class_find_device -EXPORT_SYMBOL_GPL vmlinux 0xf9273285 trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0xf92c9871 synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0xf93e3b4b sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xf94a3fc7 regulator_put EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf95a6751 devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0xf95d3e50 sched_show_task EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version EXPORT_SYMBOL_GPL vmlinux 0xf96a9bd4 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0xf983ba35 udp4_hwcsum EXPORT_SYMBOL_GPL vmlinux 0xf987e04e input_class +EXPORT_SYMBOL_GPL vmlinux 0xf994bc6f ahci_reset_controller EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free EXPORT_SYMBOL_GPL vmlinux 0xf9bda870 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf9be98fe sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf9c24184 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0xf9c8f6a3 cpufreq_register_driver EXPORT_SYMBOL_GPL vmlinux 0xf9c9b292 fsl_mc_bus_dpaiop_type -EXPORT_SYMBOL_GPL vmlinux 0xf9d771d8 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xf9d5f43e crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0xf9dc881b fuse_dev_fiq_ops EXPORT_SYMBOL_GPL vmlinux 0xf9dd6f99 pci_aer_clear_nonfatal_status EXPORT_SYMBOL_GPL vmlinux 0xf9e275f4 pci_sriov_configure_simple EXPORT_SYMBOL_GPL vmlinux 0xf9ebe553 pci_bridge_emul_init -EXPORT_SYMBOL_GPL vmlinux 0xf9f26589 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xf9fc9efe wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xfa02d081 ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0xfa0a6fca kthread_flush_worker EXPORT_SYMBOL_GPL vmlinux 0xfa0c3b1e devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xfa13d594 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xfa192ed7 crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa21d518 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xfa2ba658 ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0xfa4bcfa9 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xfa547f34 __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa87cd18 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfa8cd33d bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0xfa7626c5 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xfa848e9e crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xfa99219a bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0xfa9aa2d1 tty_get_pgrp EXPORT_SYMBOL_GPL vmlinux 0xfaa5289e gnttab_unmap_refs_sync EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfab548f5 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0xfab81506 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xfab87444 crypto_stats_akcipher_sign EXPORT_SYMBOL_GPL vmlinux 0xfac05700 usb_unpoison_urb EXPORT_SYMBOL_GPL vmlinux 0xfac126c4 key_type_trusted EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfae5bc27 ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0xfae7c5c5 set_selection_kernel EXPORT_SYMBOL_GPL vmlinux 0xfaf00972 vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0xfaf372db devm_i2c_add_adapter EXPORT_SYMBOL_GPL vmlinux 0xfaf41148 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0xfaf580e4 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xfafb0141 thermal_zone_device_update EXPORT_SYMBOL_GPL vmlinux 0xfafd5d48 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xfaff1c98 devlink_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0xfb0e697c ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xfb1e21e8 icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0xfb1fe6cd ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0xfb208253 regulator_set_pull_down_regmap EXPORT_SYMBOL_GPL vmlinux 0xfb225b64 iommu_capable EXPORT_SYMBOL_GPL vmlinux 0xfb23f960 led_trigger_write EXPORT_SYMBOL_GPL vmlinux 0xfb2abae4 phy_reset EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync EXPORT_SYMBOL_GPL vmlinux 0xfb36cf2d clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xfb40bf5c do_splice_to EXPORT_SYMBOL_GPL vmlinux 0xfb41b4f4 of_property_read_string_helper EXPORT_SYMBOL_GPL vmlinux 0xfb54aa5e phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfb671935 sched_trace_rq_nr_running EXPORT_SYMBOL_GPL vmlinux 0xfb6979f5 spi_mem_poll_status EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name EXPORT_SYMBOL_GPL vmlinux 0xfb76cb4a devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0xfb799776 devlink_dpipe_table_resource_set EXPORT_SYMBOL_GPL vmlinux 0xfb7df73d pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xfb83b82e pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xfb84682a ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfb907a2a is_current_mnt_ns EXPORT_SYMBOL_GPL vmlinux 0xfb96f310 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0xfbb19fe2 vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0xfbb7d875 usb_reset_endpoint EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action EXPORT_SYMBOL_GPL vmlinux 0xfbc15574 sbitmap_show EXPORT_SYMBOL_GPL vmlinux 0xfbc5e392 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xfbe10428 icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0xfbe4cf2a rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xfbda836d of_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0xfbff6e38 add_page_wait_queue 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 @@ -26292,110 +26314,105 @@ EXPORT_SYMBOL_GPL vmlinux 0xfc07b496 phy_modify EXPORT_SYMBOL_GPL vmlinux 0xfc08deb4 __hwspin_trylock EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0xfc1fc6d2 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xfc1b7f39 __traceiter_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc24b9d4 clk_hw_get_num_parents EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc348563 ata_host_init EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power EXPORT_SYMBOL_GPL vmlinux 0xfc3dcea7 gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xfc5a5785 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0xfc736416 bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0xfc746b3c gnttab_page_cache_shrink EXPORT_SYMBOL_GPL vmlinux 0xfc7bfd2c fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0xfc7cfa72 crypto_unregister_skciphers EXPORT_SYMBOL_GPL vmlinux 0xfc81524c devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0xfc8a5597 handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data EXPORT_SYMBOL_GPL vmlinux 0xfc950d2f da903x_read -EXPORT_SYMBOL_GPL vmlinux 0xfc9c1c4d cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0xfca43c1f devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xfcaac03a iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xfcbb70e2 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xfcac36fa regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xfcacbc83 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xfcb9e0ea stmpe_set_bits EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes EXPORT_SYMBOL_GPL vmlinux 0xfcc63c87 usb_get_current_frame_number EXPORT_SYMBOL_GPL vmlinux 0xfccb68f7 usb_wakeup_notification EXPORT_SYMBOL_GPL vmlinux 0xfccfd94a efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0xfcedcdd2 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xfcef4cfd udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xfcd33894 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xfce58ff4 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfce89f69 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xfceb81a6 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xfcf7518c crypto_register_algs EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xfd09fd58 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xfd07a051 tegra_xusb_padctl_legacy_remove EXPORT_SYMBOL_GPL vmlinux 0xfd162222 key_type_user EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn EXPORT_SYMBOL_GPL vmlinux 0xfd207f8a __vring_new_virtqueue EXPORT_SYMBOL_GPL vmlinux 0xfd2224c4 pm_clk_resume EXPORT_SYMBOL_GPL vmlinux 0xfd2320ca xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xfd304552 regulator_count_voltages EXPORT_SYMBOL_GPL vmlinux 0xfd36b02d ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xfd403549 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xfd43c7e1 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xfd4621d4 sdio_signal_irq EXPORT_SYMBOL_GPL vmlinux 0xfd4bff99 vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0xfd4ceed8 platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xfd4f0810 acpi_data_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xfd54ed4d icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0xfd55fddc __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xfd630c46 devlink_port_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0xfd67c133 acpi_pci_check_ejectable EXPORT_SYMBOL_GPL vmlinux 0xfd7052dc tty_init_termios EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd7499a7 xfer_to_guest_mode_handle_work -EXPORT_SYMBOL_GPL vmlinux 0xfd8a7ab6 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xfd86258e spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xfd8a26b7 ata_sas_port_resume EXPORT_SYMBOL_GPL vmlinux 0xfd8fc14f pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0xfd9b753c mtk_build_eint -EXPORT_SYMBOL_GPL vmlinux 0xfdbad1f9 fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdc001ce gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0xfde754c7 icc_put +EXPORT_SYMBOL_GPL vmlinux 0xfdc029cb devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfdf0099d bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xfdfa5eb8 mtk_build_eint EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release -EXPORT_SYMBOL_GPL vmlinux 0xfe2388ee gfn_to_page_many_atomic EXPORT_SYMBOL_GPL vmlinux 0xfe25bb24 devm_phy_put EXPORT_SYMBOL_GPL vmlinux 0xfe271d0c fsl_mc_device_group EXPORT_SYMBOL_GPL vmlinux 0xfe2cb950 acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0xfe2eac54 l3mdev_update_flow EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe47fbd6 tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0xfe4ae9aa thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xfe501883 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xfe588885 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xfe5bbf67 devlink_port_type_eth_set EXPORT_SYMBOL_GPL vmlinux 0xfe68c032 cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0xfe80337b tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xfe71d502 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xfe77152c crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfe882dea tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9ab397 gpiod_direction_output EXPORT_SYMBOL_GPL vmlinux 0xfeaa71de pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xfebff6bc fw_devlink_purge_absent_suppliers EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister EXPORT_SYMBOL_GPL vmlinux 0xfede5911 pci_disable_sriov EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfee6ff7b scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xfeebf688 xdp_convert_zc_to_xdp_frame EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xfef01bae mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0xfefa0614 iomap_readpage EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert EXPORT_SYMBOL_GPL vmlinux 0xff194ef8 pci_ecam_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xff1cbc39 ata_std_qc_defer EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2b7cbc mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0xff407176 clk_register EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role EXPORT_SYMBOL_GPL vmlinux 0xff566c47 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0xff6c00e8 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xff7b3989 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xff6ef432 setfl EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xff82edca bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0xff8f040a ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0xff8f05c6 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xff8f082d devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xffa717d5 pci_ecam_free EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffbd710f i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0xffc81a3c of_dma_is_coherent EXPORT_SYMBOL_GPL vmlinux 0xffc8e29f dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0xffcee19d crypto_req_done EXPORT_SYMBOL_GPL vmlinux 0xffd30862 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xffe19d16 trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0xffe422fc iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xffe85ab8 tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0xffed609d serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xfff9b07c kvm_vcpu_wake_up FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux IIO_ADISLIB EXPORT_SYMBOL 0x6196096d adis_debugfs_reg_access drivers/iio/imu/adis_lib IIO_ADISLIB EXPORT_SYMBOL 0xa20ac68d __adis_enable_irq drivers/iio/imu/adis_lib @@ -26410,45 +26427,45 @@ IIO_ADISLIB EXPORT_SYMBOL_GPL 0xaf672df9 __adis_check_status drivers/iio/imu/adi IIO_ADISLIB EXPORT_SYMBOL_GPL 0xe2a44f41 __adis_write_reg drivers/iio/imu/adis_lib IIO_ADISLIB EXPORT_SYMBOL_GPL 0xe8f21561 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x67002c1d __adis_reset drivers/iio/imu/adis_lib -IIO_HID EXPORT_SYMBOL 0x0b33fa94 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x1e466cb6 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x26d60aa6 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x3aa024d0 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x704a6c36 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x7580d347 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x241dfc4e hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x27c05d78 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x36158f28 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x412bc88c hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x4cfe2183 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x5c182dd4 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common IIO_HID EXPORT_SYMBOL 0x8d1083f4 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x9fcf1719 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xc07845ba hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xc33a9e38 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xc6dd449f hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xf8274e41 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xa82c1d30 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xb5247a67 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xbb879dba hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xc3a6ebbf hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x994389cb hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9a5cfb3c hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xadf54893 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe465037d hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xf86400ae hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x11c1c408 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x40872c2a hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x7e630194 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf479dab9 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common LTC2497 EXPORT_SYMBOL 0x921c462d ltc2497core_probe drivers/iio/adc/ltc2497-core LTC2497 EXPORT_SYMBOL 0xbfab89ae ltc2497core_remove drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x030b043b mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x0541314e mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x46fee28e mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x649b8e05 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x7472e0a0 mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x8eafc69d __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9a69a03f mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9e0ac736 mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xaaf9eb22 mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xad1dd370 mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xbaaf7cce chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xbe29de82 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xe4e36b84 mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xe7c57585 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x18c7b0a5 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3306607f mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x47f81193 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x68129243 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x69b258d8 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6a91a460 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x730d45e4 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7a96fdf5 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x98c29be8 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc94456f0 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd3fe05c4 chameleon_parse_cells drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x5e31902d nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8772545a nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x996a0414 nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xe73a33e5 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xe89b1c4d nvme_find_get_ns drivers/nvme/host/nvme-core +MCB EXPORT_SYMBOL_GPL 0xedf65b41 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xf045d0b6 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xf23843ef mcb_get_irq drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3b545a08 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa658d74e nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa9914c59 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb3047f1d nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xe0afdf02 nvme_ctrl_from_file drivers/nvme/host/nvme-core PMBUS EXPORT_SYMBOL_GPL 0x0dc294f1 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core PMBUS EXPORT_SYMBOL_GPL 0x12748120 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core PMBUS EXPORT_SYMBOL_GPL 0x14e59913 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core @@ -26471,35 +26488,35 @@ PMBUS EXPORT_SYMBOL_GPL 0xfcd0bf18 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x3db2aecf cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x856f2521 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi -SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x7033351a sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x033d4fd6 sdw_intel_startup drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x0bb24e5f sdw_intel_probe drivers/soundwire/soundwire-intel +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x9410771a sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5af438eb sdw_intel_enable_irq drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x6a63cf8b sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x97185777 sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xa2e4f5a7 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xf830b642 sdw_intel_exit drivers/soundwire/soundwire-intel -USB_STORAGE EXPORT_SYMBOL_GPL 0x04af5788 usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x068da633 usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x08f17206 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1b8789e8 usb_stor_CB_transport drivers/usb/storage/usb-storage +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xd050dcb6 sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xd513d7dc sdw_intel_exit drivers/soundwire/soundwire-intel +USB_STORAGE EXPORT_SYMBOL_GPL 0x0febedf4 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x11e75256 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x19495256 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 0x1fdad37a usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2edbecb8 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x324a2604 usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x3af854e9 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4db62bee usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x22efdd59 usb_stor_CB_reset drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x5260b0d7 usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5609392c usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x64659934 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x68939d09 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x6de7288c usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x70138028 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x70fde9d2 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x735b4f33 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x79796981 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7dc63a9e usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8b3cbd8a usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8df77e5c usb_stor_CB_transport drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x8e2e9e29 usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa115c10e usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc00a02c6 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xca77dce6 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x98a87273 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xbcf5cc43 usb_stor_control_msg drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0xcb15c4aa usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xcc05a0c1 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0xdbc439eb usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe148f3b6 fill_inquiry_response drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0xe3df4d3e usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xfe11fa7f usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf4340778 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfb505b7b usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfe90fee8 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xff624ef1 usb_stor_Bulk_reset drivers/usb/storage/usb-storage diff --git a/debian.master/abi/armhf/generic b/debian.master/abi/armhf/generic index 8365ad3aca23e..659030ebb5d51 100644 --- a/debian.master/abi/armhf/generic +++ b/debian.master/abi/armhf/generic @@ -1,6 +1,6 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x372653e6 crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x769fd7b9 crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xaf6a4c37 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x5988f9e4 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x743933a0 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xd64da87a crypto_cipher_setkey vmlinux CXL EXPORT_SYMBOL_GPL 0x0273722c cxl_probe_device_regs drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x26cd9513 __cxl_driver_register drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x2c819fd2 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core @@ -27,8 +27,8 @@ EXPORT_SYMBOL arch/arm/crypto/curve25519-neon 0xc832c670 curve25519_arch 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 0xa109feb3 crypto_sha256_arm_update -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xb7bf6005 crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x94c33b34 crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xedb04fbc 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 @@ -47,23 +47,23 @@ EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey 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 0x1870ddc0 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0x33a06daf crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x52c2be2c crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0x74e09ae0 crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xed02de46 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0xf10beb55 crypto_nhpoly1305_final_helper -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 0x7557e6d0 sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0x16867a9f crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0x3ef729b9 crypto_sm3_final -EXPORT_SYMBOL crypto/sm3_generic 0xf69cfde2 crypto_sm3_finup +EXPORT_SYMBOL crypto/nhpoly1305 0x2927a50e crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x2aedf270 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x520fc8fe crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x6e2ad0c2 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x9a289ac0 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xb3aed9be crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/sha3_generic 0x2a271baf crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x2c2218aa crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x82523dfc crypto_sha3_final +EXPORT_SYMBOL crypto/sm2_generic 0x48f5167b sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x010898e7 crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0x245368b1 crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0xd17977e8 crypto_sm3_final EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0x3461cd90 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x864dd85d bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0xa6fadc70 bcma_core_dma_translation +EXPORT_SYMBOL drivers/atm/suni 0xef98d8d1 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x1d8cc655 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xbd88d7eb 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 @@ -82,8 +82,8 @@ EXPORT_SYMBOL drivers/block/paride/paride 0xc5cc42d8 pi_connect EXPORT_SYMBOL drivers/block/paride/paride 0xda40728b pi_schedule_claimed EXPORT_SYMBOL drivers/block/paride/paride 0xe8a50ff9 paride_unregister EXPORT_SYMBOL drivers/block/paride/paride 0xfecdfb84 pi_release -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x57e3b760 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x9841cd80 rsi_bt_ops +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x49e8f280 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x97776a7b rsi_bt_ops EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x9d5849d3 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 @@ -148,11 +148,11 @@ EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc7ec03ad atmel_i2c_send_receive 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 0x06b90665 split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x53a6f312 caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xc42dbe27 caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xd6129cd8 caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xdbc5ce94 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x425438b4 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x760de313 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x8aa497cd caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe20a5d73 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xfa601cf9 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 @@ -171,8 +171,8 @@ EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xc6c7d14b cnstr_shdsc_rfc4543_d EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xe05ab546 cnstr_shdsc_rfc4106_encap 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 0x183ea49c caam_strstatus EXPORT_SYMBOL drivers/crypto/caam/error 0x2eed504a caam_ptr_sz -EXPORT_SYMBOL drivers/crypto/caam/error 0x6ed0cf8c caam_strstatus EXPORT_SYMBOL drivers/crypto/caam/error 0x8db6e8c5 caam_dump_sg EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx @@ -1043,30 +1043,30 @@ EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe2403d26 drm_gem_vram_plane_hel EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf06b0336 drm_gem_vram_fill_create_dumb EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfa0840a6 drm_gem_vram_create EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0xf1b8314e rockchip_drm_wait_vact_end -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1041dc13 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x20ffc3b0 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x27d5cd55 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3547a190 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x426fabe1 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x02261184 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x040df4a9 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0fca0a7e drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2700af79 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3649187a drm_sched_resubmit_jobs EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x47fcab49 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4cdf0596 drm_sched_reset_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x505aa495 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5825ec16 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5bb4cf6c drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x62b47ac1 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5b431d5c drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6b032781 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x88a3efed drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9159cc8d drm_sched_job_init EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9a3d1f9d to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9f2ecc2f drm_sched_fini EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa1eb4c13 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa409eb57 drm_sched_increase_karma_ext EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb9f82456 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc5e73ce9 drm_sched_job_cleanup EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc9b6ed1c drm_sched_entity_modify_sched EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcbc3b99e drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcc4ed6b2 drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd53956b9 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd1f27607 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd300c883 drm_sched_start EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd6f4723e drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe8fbc9cf drm_sched_increase_karma_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf0bcd796 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe8a10c7a drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe9d85c67 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe9e03969 drm_sched_job_cleanup EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf78f26dc drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfd98ca21 drm_sched_start EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x009b5592 ttm_bo_vunmap EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0499d8dc ttm_tt_init EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06dc8997 ttm_resource_manager_init @@ -1128,7 +1128,6 @@ EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x24e2fcb0 host1x_syncpt_incr_max EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2a7a7b88 host1x_channel_request EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2c1ef36f host1x_driver_unregister EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2dc48dfe host1x_device_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3f57e9ef host1x_get_dma_mask EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x477b47a3 host1x_syncpt_wait EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4c929bd4 host1x_job_unpin EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4d02781e host1x_syncpt_read_min @@ -1142,6 +1141,7 @@ EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x80ac5e40 host1x_syncpt_release_vblank EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x84c1454f host1x_syncpt_get_base EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x87a27006 host1x_client_exit EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x880a08ae host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8d08285a host1x_get_dma_mask EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8fc85fdb host1x_syncpt_put EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9704d9a0 host1x_channel_put @@ -1335,346 +1335,346 @@ EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x7ba38d95 ms5611_probe EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x54f1e7de st_press_get_settings EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xbcc2350f st_press_common_remove EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xd7a8600d st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2a28d310 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x404cafce ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5cd76f75 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5f56b34d ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x60e21a96 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x246bff92 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2d176b73 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x386da809 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x38ea8711 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3bb3694c ib_send_cm_rej EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6b4dd7d2 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x716e64ec ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7293c431 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9139a539 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x93c430ea ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb175abb3 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb178167f ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc3ea7c15 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcb9a10e8 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfda54953 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x711820ac ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7c04e36f ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8cd2a1ac ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa662f06a ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb7e12124 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb9c1febb ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf640e83d ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf697985c ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfdd27bb3 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfed7730b ib_send_cm_rep EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01770057 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02c462b4 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x030dd5be ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07f3dc6f rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x082123e0 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x088a5057 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a5e12b5 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c2fca93 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c56c257 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e423ebf rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14cf6d35 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16e60fe0 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x196d9d5b rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1999b579 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19f17dc2 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1aec5845 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b0c0832 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b9f2c40 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c06284e rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20381d4c ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20b82a79 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20d52cb6 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x221a84b3 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22d1ed52 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x241ea3f4 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24e4767f rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x256a79d7 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25c9d2fe ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25ebe3b5 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x298a5327 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29f96bda ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d553ac1 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d5c239a rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e5281b0 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e9c9f6a rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0631f56f rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0658fd63 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08d0df79 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a5b19ae rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a896d3b rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d5bee29 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dc3e5e2 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dc4e206 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dd1fcc1 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x162caa96 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1636928f ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16473372 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x172e76d4 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1931cab2 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a1a0d9c rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b592221 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b5cacdc ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b65ecb1 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b9d8663 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bb2e05d rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2094c6bb ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2254376d rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24069122 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24c31662 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x262177f4 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26872f9b ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29b67ddc rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a4bb2ad ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bd5fc88 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d1873b8 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2db8bdf3 ib_get_rmpp_segment EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f384613 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30080814 ib_port_sysfs_get_ibdev_kobj EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30a5196f ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x342ba73c ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x356ab03e rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35c1d6d3 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35d6e5ce rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36b508f8 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x392e677d rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39fb1a9f ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a277c41 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b5b708c ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e54f85c rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f2063e7 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x309104c3 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33fd79ab ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36f973ca rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x385c7a58 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39457be9 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b699922 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bc7fc21 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c32dcf1 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f88ef7f rdma_link_unregister EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x407f2ca5 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41bd187d ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fd289e9 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x400b2fa2 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41e0e5b4 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4247a7c3 ib_device_get_by_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45d29f78 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43590d9b rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x450230d8 ib_mad_kernel_rmpp_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x497568d9 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cdc593f rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cdd0a0a rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dfa91de __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46a46ad1 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46e52366 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4744095e ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47733cff ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b0bc92b ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d755c10 rdma_copy_ah_attr 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 0x508b1c81 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f80d03e ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fa8318b rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x500f7b76 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50535f64 ib_query_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x530c0bba rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53f1fafe rdma_nl_put_driver_u32_hex EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x566450d6 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5678d344 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57257f5a ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57af64b4 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x587354ec rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x569def1e ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57f284b2 ib_init_ah_attr_from_wc EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b2f7b57 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cd49110 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d96821c rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5dc49452 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e03795d ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ed57cc6 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fc925ee rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6079594a __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6123dc6e ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59342bb7 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b99cb56 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d49a7f0 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ece9c0d ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60dda2ed rdma_hold_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62f3b186 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6383eb4c ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x640723f1 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6424603a rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x656166a4 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x634c844a rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x637fe43b ib_unregister_client EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6581ca90 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65f08cd6 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x673ddde4 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68a30e3b rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68f2699c rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x695aba72 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b253158 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66173d68 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67e0f1c6 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x684bcd9b rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69ff2187 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6aa8f324 rdma_nl_put_driver_string EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d5b64b0 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dbeabba rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ef44f7a ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d320ef6 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e005aa3 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f313725 ib_set_device_ops EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fe54c5c rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7039ec69 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x703a7dd8 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x705d599d ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71ad871d rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f8ab0ba __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70bad619 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70fcc353 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72e7a961 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74810e4d ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x758fa645 rdma_replace_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75afdc68 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76e307be ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77d1a67b ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7610ba7b __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77246acf ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x773c63ed rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7774425d rdma_user_mmap_entry_remove EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7935ff7e ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x797aa751 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c2a8720 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80179c8e ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80ddbf3c ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80e6be0d ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x812d4b89 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8155c7c1 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81daeff3 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82ecd85e ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83aa4a18 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7951fdd3 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c672388 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c7ad913 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d3bd556 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dd3e614 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7df05338 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dff7946 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e045f3a rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e3c8512 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82ca9ec1 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8405b067 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x857aa720 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86a374ad ib_alloc_mr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87176637 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88846005 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c79ae26 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dbeeabb ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e553bd2 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7f0db0 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f3ef3e8 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x875e7bd5 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87f2afa6 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88039201 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b76d09a rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e1c1211 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f173555 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f3e79ea rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9029c11a rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90437eb0 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9065b27d ib_find_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x919fa001 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92888639 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x933ba7c3 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94114695 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x950985ce ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x952c11ad ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9688da00 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97a84ce5 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97c13066 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98568c4f ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x986ed7aa ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98720b41 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9afa40b6 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b4044ae rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bd9a2d9 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c31d69b rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c70bbb0 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d755fed rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa197b624 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4a60dde ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6354a17 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91359358 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x930fec88 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93ae2436 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95346e73 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97aa1abc ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x991f9822 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ad993f3 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d9c9442 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9df0c040 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f0185ef ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f629124 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa205f502 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa347102f ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4e29538 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa544c7c0 rdma_resolve_ip EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7c4c123 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9a1ef5a ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9c97d6e ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9ed2d90 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab7ce6b9 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac68f060 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadc19506 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae24e43f rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae41b13a rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae8143c6 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9456530 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9d94480 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa1a3386 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaacbd292 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac015859 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac114f4f __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad190254 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae0f0b31 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae54afd0 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae934c24 rdma_link_register EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf9179c0 __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf6abf39 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0270b9f rdma_rw_ctx_destroy_signature EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1caf80f ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2c03eaf rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a4dc77 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb301c847 __ib_alloc_pd EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb44776d6 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4fb1438 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5c045bd rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb645f22a rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3d6b0cf __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb51352d9 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5df7176 rdma_find_gid_by_port EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadc68d2 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbbec470 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc8d5212 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1c8d289 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc30c8628 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc386f007 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3c64d52 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc56520c7 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc90c77b6 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc95c79da rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbd692d0 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf6754e7 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7b3bac0 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb89c6c48 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbec93a17 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfa374e0 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0dba24e ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc22b57d2 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2f9a27a ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc51cf7c0 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc53a00b8 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc61a0ada rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67b65cd ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7d55801 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc92ee624 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce0af6d9 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce61d54c ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa3ed38 ib_mr_pool_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0c84f0f ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6615a66 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3a06321 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4456699 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd56a0b7c ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5f091d0 rdma_user_mmap_entry_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd99d291d rdma_create_user_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbb99ab3 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc6eb0ae ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd862dd1 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdec58e3c ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfbca5f4 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe04f638a __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0e87d81 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2ad53af rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2ee0973 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb30fe81 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbc5d2bc rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdce8585b rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd1802f6 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd31d6e8 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddf5b96b rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde1c6898 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0123372 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2e2e788 rdma_umap_priv_init 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 0xe665b4ca ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe732940d roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5e51673 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe730f5c3 ib_dealloc_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe89d751f ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe908ee05 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7f0494a ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe991b831 ib_create_qp_kernel EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea134440 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea67d45b rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebc72283 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec41ed7d rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefc6fe72 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefcee93a ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf40bc816 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea2c9b37 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea4f8d92 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb93778b ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec03a031 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeeac843d ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0af187d rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf131a2d4 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf14fc772 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1a15581 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf21e87a8 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf36fb133 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf54e32ae rdma_destroy_ah_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb0a8a1b ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcc1d337 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfce05fdc ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0041f0e0 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0273eac4 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x05a37fc0 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x064f8a2a flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x090df8d4 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x146b9582 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x188cfa52 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18d32405 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf80b8f6e rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf811361d ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd1ae4df rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe134d2a ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0da938b7 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0fc266e6 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x10a99f46 ib_umem_get EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1e0e68b0 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x25d61156 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x45b8f84d ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x561934cf ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x574e5202 ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x578c02d7 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5b9a855e ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d50fe85 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1db5decf uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1f1aec00 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x29d15609 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2dd4b8f6 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x45be2463 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x531218d9 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5e614ca4 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x620bdeb2 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x624d48a1 ib_umem_odp_alloc_child EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x654991f9 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x75da009b uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7719cba0 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x79ab714b ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7d0ecb21 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8396febf ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8b95e6eb ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x93013d54 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9556b89b ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa08a7854 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa3e3f12a ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb287b4e7 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb522fb01 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb5be9e84 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x744acdf1 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7544a21a _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x76c01221 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x86e18f34 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x88cbb3e6 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8b9b4068 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8bd956df ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8d232208 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x99ad3583 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaed51fde ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb2a04719 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb5157baa ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb56e354a ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb6740b40 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb859e156 uverbs_get_flags64 EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc4da4a10 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc60f262e _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xde76685a uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe4fcb7ec ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xebfcb199 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfeaaadbc uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x008e3f7b iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x012fbdf5 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3f59d580 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6b2abd40 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8ed48cb7 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9f64e9d2 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xaee60a05 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe17be243 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbdf02065 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc4b978eb uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcee924e6 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdbd2e185 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe794953a ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeca92af2 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf8f47d88 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfa4c5cd0 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfd105761 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3e28f389 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x460d60d1 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6cff3149 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8f7348d5 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xac7186d8 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb049932e iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdc98c4b7 iw_create_cm_id EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0260510f rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x072b7821 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x255457a1 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x30bed91b rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3622d62d rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3bce8a24 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x40938b2c rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x458d13c4 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4870a4c3 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4bd56351 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5a0a1808 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6dd17750 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e0dd43b rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x70f9dceb rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x72652dd8 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x737d4d13 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7acae301 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x86e7af3d rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x87b6cdb4 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfa922aeb iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x024c5361 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x03d86e77 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x07c2f206 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1360a7a7 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1da0fbb5 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x307108f7 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x37889db3 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x39f902fb rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3f0a8bcb rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x479876a2 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4ce51251 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4dd6e22a rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4e953f1d rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5411099c rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x548b9bdf rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x57390b88 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5a42a6b6 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5eb175ab rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5ff59fd6 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6296fe2f rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6d294885 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7f48c716 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x80ee3ba0 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x87a40509 rdma_set_min_rnr_timer EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x96e3322f rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf61d9b3 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb25d51d7 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbabc71a6 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbf5d9caf rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc8088782 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd4fa64ac rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd580a777 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd82c3159 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd9f6af6a rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb34519b rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdc9b67d7 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf84f2cb2 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfa3858b7 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfdd04d30 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x106ee98e rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x95013ecc rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x997a9af9 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9a71b64e rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd9542b42 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xe1497eef rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xe9782983 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9308b2ef rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9b889ad6 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa63dc47d rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xae8b30b6 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb1b442ab rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbb1fd90f rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd587774d rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf6b47ca8 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf6cc370a rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfa0d9319 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0e650e69 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3f98fa0a rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x750cdfd0 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x81593e1f rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xcf3779be rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xdb14036b rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xec3c4437 rtrs_clt_close EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2510363a sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5f94c692 rtrs_rdma_dev_pd_deinit EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x67029a33 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x81668e8f rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x68b89130 rtrs_ib_dev_put EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x926b41e5 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xf1b1f71b rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xf41e2b4a rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x0a8f12b8 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x590510f4 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x5c07841e rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9ee0b176 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe434bde0 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf9b4b9c5 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xd08a9c68 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe0213b3f rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe727baba rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x004a748e rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x2e875e4f rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3ce8d336 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x4eb31f97 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x62c1360d rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8fe650ee rtrs_srv_get_path_name EXPORT_SYMBOL drivers/input/gameport/gameport 0x1f582965 gameport_set_phys EXPORT_SYMBOL drivers/input/gameport/gameport 0x3cf9373e gameport_unregister_port EXPORT_SYMBOL drivers/input/gameport/gameport 0x45c1fce2 gameport_start_polling @@ -1703,8 +1703,8 @@ EXPORT_SYMBOL drivers/input/sparse-keymap 0xcdf1c5e7 sparse_keymap_report_event EXPORT_SYMBOL drivers/input/sparse-keymap 0xd0e92eb3 sparse_keymap_entry_from_keycode EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x73bcc9b6 ad7879_probe EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf16db1cd ad7879_pm_ops -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x57562139 qnoc_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x99e778d3 qnoc_remove +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x8639563e qnoc_remove +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x9a41cd1c qnoc_probe EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x03e83693 capi_ctr_handle_message EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x188ed6b4 attach_capi_ctr EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xad19fff6 capi_ctr_down @@ -1714,48 +1714,48 @@ 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 0x19619dbb mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x51557b7f mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xaeb0a5fa mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb49e965d mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x3eeb1251 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xac800037 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x4a2b1236 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x5ad1e5e4 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x67fb3040 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe726463a mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x0b50b66d mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x469f4e6d mISDNisar_irq EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x04aa1918 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x07239424 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0b5d49b7 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0bf43ec5 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x13ed9826 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x08152ae3 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0c1d3970 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1979e631 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1990e2f6 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 0x2c2178a1 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x28f10c98 create_l1 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 0x318a40e1 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3e1dde46 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x46ea666e recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4dcb96a2 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x37246322 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x474a72ab dchannel_senddata EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x57c6e0d4 mISDN_initdchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5c73c7fa mISDN_unregister_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6a4c1a19 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x72dae26f create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x73594ab4 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x78c19a76 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7beb4e4c mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8bf40bd0 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x62d281fb mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x69458b36 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x772c4333 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x831f1953 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x94b1df2d recv_Dchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaad08a0f recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc2a47c5a mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xad647fc6 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb9305fa1 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbed0a8fc recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc0446ea7 mISDN_freedchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc55aa4cd mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcfba2cdf bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcd60bf82 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcf17b7f5 queue_ch_frame EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd631b36e mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd9c73d2b recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdc4ad6d5 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdf72c2fe mISDN_register_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe9560cc9 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb9c6b4a 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 @@ -1780,19 +1780,19 @@ EXPORT_SYMBOL drivers/md/dm-snapshot 0xea675f12 dm_exception_store_destroy EXPORT_SYMBOL drivers/md/dm-snapshot 0xf00456e5 dm_exception_store_type_register EXPORT_SYMBOL drivers/md/raid456 0x522eee0e r5c_journal_mode_set EXPORT_SYMBOL drivers/md/raid456 0xf814f7e7 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x05735009 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0e69cb64 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1177b52d flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x17bef994 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1baf3f65 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2afc8625 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2db63530 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2ed37c63 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2f1578c1 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x386fb921 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7b394bc5 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9f7bc119 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xec0ab02a flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1a6c693b flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x21e29d36 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x27eac266 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x32991f0d flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x550ece21 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6b07b5db flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x79d6d2b2 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x86226a64 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x941470cf flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb3815e1b flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbfbd7c22 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe664605e flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe6f4345c flexcop_pass_dmx_data 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 @@ -1805,8 +1805,8 @@ EXPORT_SYMBOL drivers/media/common/cx2341x 0xde7677a4 cx2341x_handler_setup EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status EXPORT_SYMBOL drivers/media/common/cx2341x 0xe97f715f cx2341x_handler_set_50hz EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x51b88191 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x647641a6 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xdb91eaeb ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog EXPORT_SYMBOL drivers/media/common/tveeprom 0x5694200a tveeprom_read EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x01271fc2 vb2_verify_memory_type @@ -1817,16 +1817,17 @@ EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xbcae7c07 vb2_bu 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 0x096805f3 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x38e47c8d vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x41c74695 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x66b9ea6a vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x80370633 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa7e4e2d1 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x3784c22f vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x8280aa9d vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x836db214 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x8c8f0bbc vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x9e6c51ed vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x9ed0b6a7 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 0xc6e32f72 vb2_querybuf EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0f0e45f6 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1609d70c dvb_ringbuffer_flush EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1a124557 dvb_dmxdev_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1a8a5e68 dvb_frontend_reinitialise @@ -1842,7 +1843,7 @@ EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x42d15a1b dvb_ringbuffer_write_u EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x558f266b dvb_ca_en50221_camready_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x63ba3e34 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6654219a dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6675a8c9 dvb_net_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8026ef3e dvb_ringbuffer_read_user EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8193ea73 dvb_ca_en50221_camchange_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82143c17 dvb_ringbuffer_avail @@ -1866,11 +1867,8 @@ EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf4487a0 dvb_frontend_suspend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd4b8c371 dvb_generic_ioctl EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd7a1edab dvb_dmx_swfilter_packets EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7367529 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf6582e4d dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfe73d116 dvb_ringbuffer_free EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xff1e5fb5 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xca780c89 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x2fe9f92a atbm8830_attach EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x325fe07a au8522_release_state EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x34af486c au8522_get_state EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x52fa3904 au8522_readreg @@ -1880,27 +1878,12 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x81b0e519 au8522_sleep EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x940528bc au8522_analog_i2c_gate_ctrl EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9ce85a80 au8522_init EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb41b7098 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xeb9aa41a au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x1156e15c bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x6396238f cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x3b7df0bf cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x788669e0 cx24110_attach EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x875a52f6 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x8da4168f cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x9bb88eb2 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xebc7fad6 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x20fed9e4 cx24123_attach EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xeab58004 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xf751685b cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x113b8e5e cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xb4d58ab8 cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0xc1d9fb7b cxd2880_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x06c94668 dib0070_ctrl_agc_filter EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x40e6373c dib0070_set_rf_output EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x77d806b1 dib0070_get_rf_output EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8004db56 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb7cf07b5 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0af97210 dib0090_fw_register EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1b44e08f dib0090_get_wbd_target EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2a754459 dib0090_update_rframp_7090 EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3e6a0958 dib0090_set_vga @@ -1913,27 +1896,20 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6db2ab34 dib0090_get_tune_s EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7ef04779 dib0090_set_switch EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9630f055 dib0090_gain_control EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb039f814 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdabd2079 dib0090_register EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdbcc7b05 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xf1dc256e dib3000mb_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1ffd4774 dib3000mc_pid_parse EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x69b311cc dib3000mc_set_config EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x71d0e8f6 dib3000mc_pid_control EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa1d9819a dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb9ea27e2 dib3000mc_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc22642b0 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x0c9d3e63 dib7000m_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x15e18a69 dib7000m_pid_filter EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x43a0802c dib7000m_get_i2c_master EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x77f23b59 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x631c97a8 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x7ab9c3ad dib8000_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0c42bc6a dib9000_set_slave_frontend EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x166f261f dib9000_get_tuner_interface EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1cc3e78d dib9000_fw_pid_filter_ctrl EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x36f0df28 dib9000_get_slave_frontend EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6b478b80 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x858e8735 dib9000_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x955db123 dib9000_set_gpio EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa89d4a2b dib9000_firmware_post_pll_init EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdc5efd0d dib9000_fw_pid_filter @@ -1946,93 +1922,22 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2e9bde6d dibx000_i2c EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x643ac1a4 dibx000_reset_i2c_master EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xbe745e2a dibx000_init_i2c_master EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc45ee60a dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x589fd628 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xdb80b563 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x06c9e49f drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xf22c03b5 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xa551e4e1 dvb_pll_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x61409a5b dvb_dummy_fe_qpsk_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x7ebd6566 dvb_dummy_fe_qam_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xca8ebe33 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x7962f34b ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x0a3b4b4b helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x415ea177 helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x75ea6682 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x006a9ba4 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xfc2d4799 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x9954055f isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x5a60e1c1 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x732a6ca6 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xf0e822af l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xbbb62ef2 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xa52ac243 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x5d96c62d lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x47cf5fd4 lgdt330x_attach EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x3a6e3f03 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x1e319730 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x3218b434 lnbh25_attach EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x1517c544 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x6a870a6b lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xb4a3b1bf lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x63fd643a lnbp22_attach EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x158d6922 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xf769ec33 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xbd252d55 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x853fd9ad mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xd36185aa mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x86bd5ff8 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x9d623e4c mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x2d7ca65b nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x5464dabe nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xcfcfd687 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xeac3f953 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x1e698eec s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xf6c29707 s5h1411_attach EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x0a8515ea s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xc38392cd s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xf873badb s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x1a0cb02a s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x35963c35 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x45ad4d36 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x898b8017 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xc111f0a2 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xe479777c stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x7e5e7266 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xb57cd3fa stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xfc80a022 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x10931586 stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x20630bbc stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xa151f1d1 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x0c219d1c stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x4f291453 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x51fdedb8 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xd89cf819 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x74b26800 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x2de9993f tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x42fdf027 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xde7beeb2 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xe5f6f1c6 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x8e735a97 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xdf959c34 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x0c97d7c9 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xe5fa3351 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x4b48d36a tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x8452650d ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x53ddc046 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x42ef1070 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xc6debeed ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x769989cb zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x9bd776c0 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x58d45dd0 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x02382d25 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x717f46b6 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x20b8199f flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x72b9493b flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7c6aeaf6 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x892eb977 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9192a0d3 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9a0af63b flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc2323599 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x35b6ef17 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x4fe4b4a5 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x23017fa1 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x768936c8 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9086c08d flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb2e34e99 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbebd2607 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd7ee4144 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xef7c11c4 flexcop_dma_config_timer EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9491da89 bt878_device_control EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb342a073 bt878 EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num @@ -2051,16 +1956,14 @@ EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x67635590 dst_pio_disable EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9105a58a read_dst EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcde3e099 dst_wait_dst_ready EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd6a74bbc dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe6be4162 dst_attach EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe9ad74fc rdc_reset_state EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfc8b0881 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x0a49d8b1 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2a07c93a cx18_claim_stream EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x394635cf cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x679a3284 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa652e861 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc58467e2 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc72e2a00 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xec3fe898 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf889d45d cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf8f2b9fc cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf8ff5199 cx18_ext_init EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xc46aeddb altera_ci_init EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release @@ -2074,44 +1977,43 @@ EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa41badd8 cx25821_riscmem_allo EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xcdf110d7 cx25821_risc_databuffer_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf46b0543 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x0d525c45 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x7041bf0b vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x234f2f60 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7346285e cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb490308d cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xcd97705d cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x41dc3197 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x58207b9f cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6432cbc4 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x982f3c3b cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9cc5324e cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc6cb49ef cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc819269e cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x123baea2 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x144c4fea cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1c690d82 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x25ab65bb cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3765d306 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3ba5155d cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4826d2ee cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4c77ee8d cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x528d254c cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x1a191f32 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x44e84e10 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3cf8f6c9 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa25986a3 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xde799b32 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xfb93805a cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x08a7fca1 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x16822bbe cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x43946501 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x58c6cd18 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa591f6aa cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb9130276 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd6e1d541 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0298a202 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0ed1a0ac cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x24492d96 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5cb10795 cx88_ir_stop 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 0x69f98a40 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6f7047f8 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7657cea1 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7c77ffa9 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8c2704ee cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6e445c2a cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x71355954 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x81d9a6b9 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8ac5b288 cx88_set_scale 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 0xb6678a29 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb70700de cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe616cdbb cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe7852cad cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xec1685fc cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xee1968da cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x716c3c82 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x95e9ee4f cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9abca72f cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9b0b1024 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9b99d4b4 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9c4968fe cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa27460c1 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa4f2c3be cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb323374f cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc3a0b1e8 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc9182b66 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd6b81dce cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfea98d61 cx88_risc_buffer EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x04490920 ivtv_udma_setup EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x113e8444 ivtv_claim_stream EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x13aa1e60 ivtv_reset_ir_gpio @@ -2131,67 +2033,67 @@ EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xaba13df1 ivtv_clear_irq_mask EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdef15c3a ivtv_vapi EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xff0770ff ivtv_ext_init EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0697a738 saa7134_set_dmabits EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x17f9f1df saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1ce895f6 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6ac7d069 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1316b36f saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3a79108b saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5964c6d3 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5ef3e738 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x69c33065 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x72797906 saa7134_set_gpio EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x740f7612 saa7134_ts_register EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7f68c76e saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x91a6832a saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x93cd9ce2 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb0a358ca saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb4ee5a0d saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc53ae53b saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf686d149 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf898f81c saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8a95f37b saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa6574270 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe10f8315 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xea1e895f saa7134_dmasound_init 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 0x10c37ae5 csc_dump_regs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x49e62655 csc_set_coeff_bypass -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x6ee04fc9 csc_set_coeff -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xe6046349 csc_create -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x13de1deb sc_set_vs_coeffs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x1fe34884 sc_create -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x3ba377a2 sc_set_hs_coeffs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x848af6ec sc_dump_regs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x8cfdecae sc_config_scaler -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x13379a0e vpdma_map_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x0aa35600 csc_set_coeff_bypass +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x2c16ecb3 csc_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xb2701eac csc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xcd2ddb50 csc_set_coeff +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x65e24a2e sc_config_scaler +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x66234180 sc_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x95be642c sc_set_hs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xc1603f7d sc_set_vs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xfd6f156c sc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x015d4d93 vpdma_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1573246c vpdma_get_list_stat 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 0x1b83b039 vpdma_set_max_size 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 0x3485fc13 vpdma_unmap_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1f44cdfb vpdma_hwlist_alloc +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x32a00736 vpdma_submit_descs EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x3bb6047d vpdma_create_desc_list +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x4826930d vpdma_update_dma_addr EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x49293b26 vpdma_yuv_fmts +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x4e38ae23 vpdma_list_cleanup 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 0x5bbd9567 vpdma_enable_list_complete_irq -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x60040178 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 0x61a1af62 vpdma_set_frame_start_event +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x61aff63a vpdma_set_frame_start_event EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x65d23377 vpdma_add_in_dtd EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x664dd09f vpdma_alloc_desc_buf -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x6d81834d vpdma_dump_regs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x7c1695b9 vpdma_get_list_stat -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x7d521ba4 vpdma_set_line_mode -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x8170f4e8 vpdma_get_list_mask +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x6d3b2073 vpdma_enable_list_complete_irq EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x87c0415e vpdma_free_desc_list -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x898dc974 vpdma_update_dma_addr -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x8f611e10 vpdma_set_bg_color +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x953409d9 vpdma_set_line_mode EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x97f311f0 vpdma_add_cfd_block -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x9cb7b31a vpdma_hwlist_release -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xb4800ed0 vpdma_list_busy -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xb7dd897b vpdma_create -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xca577056 vpdma_hwlist_get_priv -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xca9ab2f3 vpdma_hwlist_alloc -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd1ac889b vpdma_clear_list_stat +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x984f3348 vpdma_hwlist_release +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x9bc9157f vpdma_list_busy +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xb17c19cb vpdma_set_max_size +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xb6b9c6d3 vpdma_set_bg_color +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xc5ad6519 vpdma_map_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd5a2e99f vpdma_get_list_mask +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd628c0bf vpdma_clear_list_stat +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd7bc980d vpdma_create EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xdd7f11d3 vpdma_add_out_dtd -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xe8a58bae vpdma_list_cleanup +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xe6ee20c5 vpdma_unmap_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xf02e786e vpdma_hwlist_get_priv 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 0x1193840d snd_tea575x_init @@ -2208,57 +2110,44 @@ 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 0xcf09586a ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x9a418da0 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x530cdaf1 fc0012_attach EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4d5748d9 fc0013_rc_cal_reset EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4fa010e5 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc4f4c2cf fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/max2165 0xf35ce463 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xcd407256 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x2e6d4a02 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x33f1d80a mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xf6ca301a mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x38fe1dde mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x5bdc631e qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x14d622ca 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 0x6ebfc805 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x7ce42eec xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x96ddb70a xc5000_attach EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x713a1ec1 cx231xx_unregister_extension EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf0b2fbc5 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1f3aaeeb dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x205d446b dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x65506c11 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x66eea1a2 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb2a728f4 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb6e03c53 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xbd34b015 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe6eed435 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf50b9b23 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5b686e6a dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x12e47083 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x323a8ce8 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x34508f9e dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x49a4758b dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x53fa2f0a dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x866311f1 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa95bb784 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd442b417 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfa2a3820 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x00ba630b usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x362d487d dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3ef714cf dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x531d806c dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x617fda25 dvb_usb_device_exit EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x65d933e3 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xbfabf4f7 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xcb84efbf dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd97fd968 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe8e55802 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xef90f6c4 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb7727501 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 0xd22f4229 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 0x0f3f2b0e dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2ebd5af9 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x43da2ff3 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5852ea98 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5897ab1d dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x90d474f2 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xe486b801 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x298cafa2 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9160d7cb 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 0xb596bcc1 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbc109023 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfa67d6ef dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x31b1f4c4 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xdf1db22b dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9e3baded dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb7c0030a dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc529c56f dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xce6c78e9 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe7dd704a dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xed584633 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfb42efc3 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x37eb003d dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xbc808e88 dibusb_dib3000mc_tuner_attach EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x234d359d em28xx_unregister_extension EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xcf2665c9 em28xx_register_extension EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x05385a0b go7007_read_interrupt @@ -2422,39 +2311,39 @@ EXPORT_SYMBOL drivers/message/fusion/mptbase 0xee79b709 mpt_put_msg_frame EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf4b82f82 mpt_free_fw_memory EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf77c92fd mpt_resume EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfffd29f4 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x09d31c85 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0debdeb4 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1ba3c528 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x294af4f2 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x04cd758c mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x14e616a1 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x15c3fad8 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1813402e mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x29007ba0 mptscsih_qcmd EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x31ad99fb mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x34ba9aec mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x35a60cb0 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5d3dc144 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6390cd28 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x783ab08c mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7e877ce7 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x83801eb4 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9144462c mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x953c1d0e mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x321b2716 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3b08df55 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3de4a695 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4cfe9505 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x53071728 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x536d697b mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5e5ec16b mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6fcdcaa8 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7c8a643a mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8512c652 mptscsih_bios_param EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa01bca59 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa47c061d mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xac5d9461 mptscsih_event_process EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xad8d41e8 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbbdd8403 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbfd721ad mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb8accf58 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xba0fc04e mptscsih_abort EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc32e47ab mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc33785d0 mptscsih_get_scsi_lookup EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcbed1a0e mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdce2e4f5 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe3af6970 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf52de4bd mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfd114895 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfebf81bd mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/mfd/axp20x 0x244e8794 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0x4bd93e21 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0xccb0193b axp20x_match_device -EXPORT_SYMBOL drivers/mfd/dln2 0x2d721dfa dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x7703f637 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x859565e4 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdc919d87 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe112bd4f mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe8cf2505 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfe905d62 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/mfd/axp20x 0x352153ce axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x5ab6ea7b axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xb24874d4 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0x023e0ee0 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x459ad5dc dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xd661608c dln2_register_event_cb EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x470eb69c pasic3_write_register EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xc3462f7c pasic3_read_register EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3c2de1ac mc13xxx_irq_unmask @@ -2501,10 +2390,10 @@ EXPORT_SYMBOL drivers/misc/tifm_core 0xa17be040 tifm_free_adapter EXPORT_SYMBOL drivers/misc/tifm_core 0xcdc75583 tifm_eject EXPORT_SYMBOL drivers/misc/tifm_core 0xddb85d50 tifm_has_ms_pif EXPORT_SYMBOL drivers/misc/tifm_core 0xf0a88dc0 tifm_unregister_driver +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x4d07b847 dw_mci_probe EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x4d5f857d dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x51bcd987 dw_mci_remove EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x5b694848 dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x91d8a951 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xc3074ce3 dw_mci_remove EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x46217a9d mmc_spi_put_pdata EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xdbf0ead5 mmc_spi_get_pdata EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1282c0bb cfi_send_gen_cmd @@ -2531,449 +2420,451 @@ 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 0xda64ef4a mtk_ecc_adjust_strength -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x07f98773 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1a2c5fef arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2ef7c8ca arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3b38e91e arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x588074bb arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1df8f4da alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x363b43e5 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x395f2eeb arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4b11c827 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6267de40 arc_proto_map EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6984d87e arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x717c1b47 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x88ec634f arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x89559f00 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9221162d alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9a755707 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9f928395 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa700fd52 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc881480e free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcb0b0910 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcd92e9bd arc_raw_proto EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x306e2429 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7383cbe8 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x9bb00498 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x086f762b b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0ba8db35 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x14659856 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1515c993 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x194d181a b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1a43b94e b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1ddc5329 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2505ad99 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2a94b2b0 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3debb6ab b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3e657653 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4c8bdaf4 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4dc05003 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x57b4843b b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x621a1d5a b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x62f2dfd1 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x725ebe93 b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x76244aeb b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7ceaa7ff b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x87bcb7fe b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8942dd38 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8d99c6f4 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9243d67d b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9781448b b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x97b2476f b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9baaf29e b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9dbd172b b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa0bac0f3 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa53b41b9 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa6a5d605 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xacc706c4 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb77b9fa9 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb823a0a6 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc80ba1ca b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc8542416 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc8e260f7 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc8e73b35 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xce06ecfa b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd5fc4bc0 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe5ea217f b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf17f38a3 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x0bc65cbd b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1c6c1180 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x24e38e1c b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x8cd1e9f3 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9bf5ab0d b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xdebd4ce3 b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x0c2b51bb lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x32af0ae2 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x684790a6 lan9303_probe +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfe5d9c7d arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x00f24bdc com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x43333ff7 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xffc6bce1 com20020_found +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0200a91f b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1b42023c b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1dc26abb b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2533fc94 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2aa10a15 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2d68f293 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2f8e40ec b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x30bb8536 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x318fbbeb b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3f108c8c b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x49740b1f b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4986fd4b b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4f19e7a9 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5139af9d b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x58cb5dcf b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5971a5f1 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5eb198f8 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x63328109 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x65d36f93 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x66445c46 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x74ee29c9 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7e634f34 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8025115c b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8ed60996 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x941bdb3f b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9a34137d b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9bccfd24 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9f9d7e66 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa4809c7c b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa8cebc9c b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb0c11512 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbaac1f14 b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbd12ab36 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc5f5b364 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd7e359bf b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdcc9e558 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe0e7a558 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe1e2c573 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe6a39b11 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf1e7a5bc b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf7fd6293 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x34d9ad1d b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x830213b0 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x92ccf17d b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9e962781 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa6f61918 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xff3bb58b b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x5c22f8a9 lan9303_shutdown EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xc4a87a35 ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xa252074e ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x18bce64b ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xbbefb336 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xceafd637 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x72925a16 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x949bac34 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xb95bfe25 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xdc6f03a5 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xd69fe50d ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x989da4a8 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x53256ed8 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x82e0b5a2 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x9291ea39 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x18b0b5c1 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x2dd6f624 vsc73xx_remove EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x9db0aa15 vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x0030edd0 xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x38c956cf xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5901ddab xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xab4eb834 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xb3f641c0 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x67a31af5 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x7f6dbf07 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb2ffd2e9 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 0xe63c509a xrs7004e_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xecf95983 xrs7003e_info -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x053ca1d8 ei_start_xmit +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xf063dc44 xrs700x_switch_shutdown EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x40b73906 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4f16777c ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x619fef01 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x653ef855 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6d6fe0b8 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6f5b8a92 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8109d50f NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb2955942 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xeeda9eb4 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x479298c8 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1dd6fc77 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4a7519b4 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5f35d3fb ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x626c1123 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x64683fc3 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x74a162f9 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x81f91c3c ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8f13e82b ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbaee471d ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xedd8ed6b __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x14df6853 bnxt_ulp_probe EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x656a02a9 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0a943ba9 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1eb534ed cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3ecf95fb t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x463345dc cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x58c41233 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x59044006 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x871c06c9 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x952e2653 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaac928f8 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb147dae2 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd0165d16 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd985f61e cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdebc25ff cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe84f4285 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfb790184 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfc4053ea cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0041a6c6 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x01a6edf5 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xbce16737 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0876286d cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0c4b7766 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x21283d9c cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3131d8be t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x32f1531c cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3707ff24 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3d2f8110 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x40e06805 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7751f6d6 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8433aaf1 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8d351a41 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb41e671e t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb788b8c5 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbd1079b3 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc1c96ad0 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe54f41e9 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0070995d cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0230d44d cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x087dba88 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0881c4dc cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e99a8b6 cxgb4_remove_server EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x127f6fff cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x12db0cdb cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1812dd32 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18886cc7 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2bad7395 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2e100e73 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x363408b0 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x43768c18 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ca8bcc0 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4cb31b02 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4dfaba96 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x144a9a17 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x19f21700 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2628b163 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2bdc8320 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2dbbd0e8 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31f18068 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32092e3d cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x34c745ba cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44d74b9d cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ec5b7af cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4fe0361b cxgb4_create_server EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x53494fd8 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5b740162 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5bf70a04 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x61efe178 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x65a09926 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6f402360 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x70b0e37e cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x768c25bf cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8a22e282 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8b2f937c cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c3fceda cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9578b675 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa791fd23 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaeced523 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaeed808c cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbef2ae63 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf4a32bd cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf618825 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc333db26 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc52c3b65 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc62e5fe5 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd03a1f32 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd3b21a35 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x54109ffb cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5636ae84 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5c44384a cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5ee06303 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5fba2132 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66b5aaae cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6b32097f cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c2eeab9 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75ff331d cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x774e58b7 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x83c8c9c0 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8588019f cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x858a24c0 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86f9d9ef cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x89d59a39 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e1611e3 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x97b795f4 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9fde9a3d cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa3b48336 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb96f94c3 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc78eeb84 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcebbdf70 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd5ba8c89 cxgb4_alloc_sftid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd6e8cb6e cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd9abd0fb cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdc69b4f4 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd31d3cc cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdddf42d3 cxgb4_port_chan EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded2869b cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe59daef6 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8592396 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe9b7884c cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf2d3009d cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf951ff8d cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfdcbb09d cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff62bab1 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x15f676ab cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe6be4884 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe750b085 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeec52abc cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf8d6b419 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfcf59709 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x078cc08a cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x118eb850 cxgbi_ppm_init EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x217b2ec9 cxgbi_ppm_make_ppod_hdr EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x47bb2468 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x56e88558 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x70db8b30 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7fdb57de cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc815de29 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd2149f9c cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x05bad417 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0864d0f7 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2451bd0f vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5d2d772b enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd00de7d0 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf020af67 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x28da2e5a cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa9107f74 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbb663e1e cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe365468e cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x24977c0e vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x30c26e7b vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x58a16bb0 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8343e89c enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8793a3d1 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x99e186b3 vnic_dev_unregister EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbc13ced1 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xeea30fe6 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x4335fc37 enetc_ierb_register_pf -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4cbcb99d hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5165cf89 hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x83eb40d5 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x8e7ed800 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x78eb044e be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xdbb67471 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xff2b0e53 enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x009e587c hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x1cc694f4 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x22c423aa hnae_put_handle EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb6af464d hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdc80a748 hnae_ae_unregister EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xf6b2f124 hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0xb91fb25a hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x06286944 hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x2a452784 hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x3bf0c0ff hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x50e769a7 hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7a917363 hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8587f31c hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xd9a64a03 hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf3d050c7 hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x833a5cd0 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xe7c68d8f iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xbcbaaf4f prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xdfc058a8 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0516a823 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06e1375b mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x101ca95e set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x142940b5 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16222f57 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16a4f61e get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b3d6996 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c6c5282 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f9bee9f mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cfd053b mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x427a6fb2 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4471da93 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d01c57c mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d075630 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x504bbe91 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d301620 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66710bff mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6aec9712 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x723ba740 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77c3bd55 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a775179 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0xcb0041f6 hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x08fcef29 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x0978c105 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x117becd1 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x45d079e1 hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x4ba9b7ea hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x522eb412 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x77997ae6 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x85c10d55 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x53b1b8c1 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x79d6b5a4 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x6523dc61 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xa2e24e85 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fa3b87f mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x106a5d22 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14a97136 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15b162d2 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16f76d46 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x181314cf mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22173d93 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x239837bf mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26ad7a43 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x312c364a mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32ae620c mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ea116d8 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3eb63214 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40b29481 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x455c0c68 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b0fdfa9 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50799cd0 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x516f570e get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x618f67bc mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x649b454a mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a3a4810 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cd9fcb9 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75eff111 mlx4_test_interrupt EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81b8eda4 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x893a89e0 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89688d42 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f884463 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98df7840 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9aac1160 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa23e9540 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaee8475b mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaefa9e1c mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0784ab7 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb635f24f mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0074dd4 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc194afcb mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4021432 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4e432c0 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc904c2f7 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd04322c0 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4a7e154 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdea20693 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeecd8970 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef253e5b mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf27ab5d2 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd57ffce mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01f72366 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x048c017f mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x052af2de mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x056c56ba mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a6225af mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bbd379c mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d16ed0f mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e357eb9 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ed684b5 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83265e0e mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87b04fcb mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d0f264a mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f30ff15 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f61bfbc mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x926eaaf6 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99e76f5c mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e43f74a mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa3b87a2 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac1689cc mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb89b93f0 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0ed7b56 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2d59584 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9570d4b mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce228ff4 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4255850 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe853057c mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef86653f set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf521b512 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf76f09f5 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe11f7e6 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00ceb0b3 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x013113c6 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01c11e28 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0365e933 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0581035c mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05a70e61 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x096b8278 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ba04ca8 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ca0519d mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d18d058 mlx5_core_destroy_tir 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 0x137412ff mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1650a732 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1792ec61 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x127efec5 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14e75b76 mlx5_eq_notifier_unregister 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 0x18887c9e mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ab821c6 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d7cfd51 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x203d3a61 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x260a458b mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x287b231c mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c5f19a4 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e9702dc mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f647ed4 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fc941b8 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x185d3d95 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18ba9486 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1df3d6b0 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f724ae7 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x214d663d mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2542a344 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x280e6a4d __traceiter_mlx5_fs_del_fte 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 0x2ff2f8cb __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x304a846e 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 0x34c5ad38 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35d270d3 mlx5_qp_debugfs_init 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 0x39f1f2bb mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39e3163b mlx5_core_modify_rq 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 0x3d218bb4 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d5bed83 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d729e80 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d7d5299 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e46e93c mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40ce1a5f mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43ae5aa4 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4417e59b mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44f35eaf mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44f48d51 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x462da179 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x467a8474 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46e781a4 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c2ee44d mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d24e2bc mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e780405 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fd677e8 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46085f58 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x488f7497 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48d99551 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x494880d4 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c9f0793 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d54949d mlx5_fpga_sbu_conn_sendmsg 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 0x4e2585ea mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4eb6e044 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5350a87d mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53648b69 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f62c9d4 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5080a95d mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51461626 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55590e8d mlx5_core_destroy_mkey 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 0x5bd62905 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c849960 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d427aa9 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dd646a9 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e371751 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e4208a6 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5eab65f0 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f7dcfc3 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fd124ec mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58546569 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b49bf24 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b7dbdff mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e529866 mlx5_fpga_sbu_conn_destroy 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 0x63d55158 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61d34214 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64944fe4 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66584986 mlx5_core_modify_sq 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 0x6955cf84 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69b07a00 mlx5_lag_is_shared_fdb 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 0x6c644183 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x712663d4 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7193c351 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ab05893 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cccbbcb mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d86a59f mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ede4e15 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7260b0a3 mlx5_core_modify_cq_moderation 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 0x748f8eb1 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74e68ec8 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7607517a mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74c5d784 mlx5_lag_get_slave_port 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 0x77e2c992 __traceiter_mlx5_fs_set_fte 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 0x7abf2913 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79ceea8e mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b0e6f38 mlx5_core_alloc_pd EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bc4b9ac mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cc13bbb mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f063e9a mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x801ed2f5 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8141d286 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81df2313 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82a04e3b mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85ffd2ae mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x874e2708 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b9abc1e mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ef0cde7 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f236f32 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f5f581f mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x906aa790 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c6ddf16 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cd0a118 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82600185 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a004419 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a1b07c0 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d29b9d8 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x905bd3ad mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90d91a51 mlx5_lag_is_sriov 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 0x92a69891 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92edd505 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9533b242 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x962df92e mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95d4be03 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96810d1c mlx5_eswitch_get_vport_metadata_for_set 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 0x971e9ea3 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97b40a10 mlx5_comp_irq_get_affinity_mask 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 0x9b16c3e1 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cd1d81f mlx5_eswitch_uplink_get_proto_dev 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 0xa14f750c mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa59daa7 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab8d0805 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac226f5e mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9da0ae17 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa08c5367 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa19dc526 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa24006a5 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa286c373 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6de9cdb mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa732833d mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa94d15e1 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6243f6 mlx5_rsc_dump_cmd_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 0xafd2f258 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4d14e10 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4eaad82 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb55d619a mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb05f53db mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb20b72a5 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb20c7140 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3170563 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb31bc8e2 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5fb40e7 mlx5_core_destroy_rqt EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb631ebfb __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7c5e598 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7da4a71 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba27f3f7 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba9cb309 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb911f0af mlx5_rl_is_in_range 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 0xbef04746 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf69bc9e mlx5_core_attach_mcg 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 0xc7310be6 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc862551d mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0974420 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc11e6ade mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc25f5bec mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3475b80 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3c5cd06 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc481ccb5 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5ced12d mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6583a3b mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc707a895 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8172bd7 mlx5_fs_remove_rx_underlay_qpn 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 0xc9b51236 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc546c43 mlx5_eswitch_get_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc9c0f6c __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfdb3d47 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0079e51 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd262090e mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5359edc mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7b1bad0 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd728159 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce57412d mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0a16432 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd11d8346 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd16555a9 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd45c367a mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde2ea9c9 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdeaa0997 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdebefe88 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdefceda5 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf205ed0 mlx5_eq_create_generic 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 0xdfd456e9 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3266c4d mlx5_fpga_get_sbu_caps 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 0xe5bc4033 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe677ea8f mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe82355c1 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5b06134 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb5bf3d1 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 0xeda097fe mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefe58451 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeff05424 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0bc9d75 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf32ac814 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf40363ba mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4a5195c mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf54b58cc mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf55b08c0 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeca0975f mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee31e5f1 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef1a479a mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf036177f mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf172d20e mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf36a69b5 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4a56a6f mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5687a8b mlx5_fc_create 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 0xf73cbc3b mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6f1e064 mlx5_eq_destroy_generic 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 0xfa9335b1 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc7df7fd mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf97b1009 mlx5_eswitch_register_vport_reps EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x4cbe2301 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe6d3dd8 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xfb69cd51 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x026d74b2 mlxsw_core_trap_register 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 0x1113c0a5 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x10812c41 mlxsw_core_trap_state_set 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 0x16153d67 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1630f418 mlxsw_afa_create 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 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 0x23767732 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 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 0x3c035d0f mlxsw_core_trap_register 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 0x464835af mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x46db4482 mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4860b132 mlxsw_core_skb_transmit 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 0x4d7bf357 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4fba27a0 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5130c980 mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x57e736af mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x59b4e8d2 mlxsw_afa_block_append_mirror 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 0x5bbc71ba mlxsw_core_port_devlink_port_get 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 0x62c7a65c mlxsw_core_bus_device_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 0x6fd5cd61 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7193b4bc mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6cee252c mlxsw_core_ptp_transmitted 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 0x75c20c7b mlxsw_core_driver_register 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 @@ -2983,19 +2874,15 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_a 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 0x8956f0fc mlxsw_core_port_devlink_port_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x89decc85 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set 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 0x9fb40062 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa4446e66 mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa9bf0091 mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaa600760 mlxsw_reg_trans_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xae2e1737 mlxsw_core_trap_state_set 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 @@ -3003,113 +2890,115 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_c 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 0xbddb67cf mlxsw_afa_block_append_mirror 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 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 0xd0412100 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 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd4874014 mlxsw_core_resources_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd84eb6b0 mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd92c3061 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xdef012d4 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe8a1ffe7 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe90b13df mlxsw_core_rx_listener_register 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 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 0x3aec0095 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x6e250548 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x1cbeeeeb mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x7b7a1dc1 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x02c96e78 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x033a74b7 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x043c0714 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0493f215 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0600bee1 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a045b43 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0abb1576 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x121b2f5a ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x158b48b2 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c2897d2 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c4f8eca ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e4bb248 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x211a1d9e ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x23401c5e ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25f63546 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x9bef7611 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xcfa45363 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x77f2b14f mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x9f665af6 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0478f742 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x049aa2c1 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05194c7b ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x052b3ea4 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06c53257 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a9b19ee ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d1b2e98 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d55be19 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1fe0de5e ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x23fd07ef ocelot_port_lag_join 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 0x27c44259 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a60928d ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b94cfc1 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2e3d5682 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x32603b03 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x333d8a5d ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34e20f9d ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x37f8b19a ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3838d236 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x38b1420c ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3b6515fe ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4aaae288 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x53dad979 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x57b78ec9 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e597b8e ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6bce25f9 ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x709ee08f ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x714bbbd3 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x738bf850 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74f60dcc ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x76415374 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x818438d1 ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x81993bcc ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x85f967e6 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x871dbbb0 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2aa7f35e ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x32cbdff9 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x350dc4bd ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a38432e ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3ff8ca51 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x45be5c86 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4afa2946 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4bc39c07 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ca23274 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5159fab8 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x527cd051 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55b19ada ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x577c8a3b ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6abad6f0 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6db37160 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7022cf3b ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x70737430 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x71fbc384 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7376f8dc ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x745d9fea ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x748e7b0b ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x75e0751a ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x765876b2 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b46166d ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8187154b ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82bafd76 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x83ca336b ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x859e6159 ocelot_port_lag_change 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 0x9400127c ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9de70d30 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9f3fc1d7 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab0c1211 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab0f53bc ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab46c7ed ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb2a053a9 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb83c0ca2 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbb9f2b32 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbea14c20 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbfdc214a ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xca12066f ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xca8e4c6f ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xccf9db7c ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0def418 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd59d94e9 ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd78a9d59 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xddc48f24 ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2b8c05a ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6ad7448 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7cb224d ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xefea100c ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf38e98d8 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf63be432 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9ae223c ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9fcaf38 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff5ffdec ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x2fb1f4b3 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x974bd8a2 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x97e955c9 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e820f27 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa861f08d ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xabdb9282 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac7647c1 ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac805bdb ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xacee72ef ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaec0a0d5 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0945a3c ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0f5d69a ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb43d843d ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc24278c ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc814cf7 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc099193f ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc0d3992a ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc3f905cb ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0c5c115 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd30cf910 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd7f02ad3 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda0fede4 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5e5131e ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe74e6791 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf04542ce ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf05a0a4b ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf148f277 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf150dc68 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf70be2cf ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf79a83c7 ocelot_fdb_del EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x573d93bc qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x93b2e730 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x694b27f8 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7b0889b5 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x8da3bb31 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/hamradio/hdlcdrv 0x0d09b16b hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x139aac00 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x80cc48cf hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x8443279b hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa4db8e71 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x06cec9ca hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0c00fbb8 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x29297a79 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x574ab12b hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6c83d2e1 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 @@ -3117,678 +3006,678 @@ EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok 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/mii 0x0da5dcea mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x1c3ec3bf mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x6c99cdc6 mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x78cfb016 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x7a271661 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x92a9e06a generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x9a015286 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0x9e997e24 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0xa9db6e30 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0xd8827add mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x1f4b78b2 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x2c948c3c mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x3cc647f5 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x51595231 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x574783d2 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x5ee8f4b2 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x741acb66 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x963a42e4 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xbf595429 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xde6c6c16 mii_ethtool_set_link_ksettings EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x3c5ed0dc lynx_pcs_create EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x7693f4ff lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x901579c1 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x2be61433 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xcc48a63e pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xd37221ab register_pppox_proto +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xa3baa028 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x2d28da05 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x3d618924 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xbda38ead pppox_unbind_sock EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x3508b7e0 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x4b312c95 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x84cd859b team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x90274258 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x9bce1e34 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xa343d050 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xb06aeb04 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xb7cab2a7 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xf3b7ff3b team_mode_register -EXPORT_SYMBOL drivers/net/usb/usbnet 0x2fc87c70 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x55addfe8 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0xf3c7cc23 usbnet_link_change -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2cc0bd15 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x5c7370b4 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x94c4f180 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x99c62f26 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa19a52b0 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xaaf4da2c unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe383c884 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe8536c96 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf38d1240 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf7b23cbd hdlc_close +EXPORT_SYMBOL drivers/net/sungem_phy 0xfe54b865 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x37d0b9a1 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x4c860b9a team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x4cdd2c5b team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x4e2ff0ad team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x50466430 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x6f246aa3 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x8d05d7ab team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xe4a0f9fa team_option_inst_set_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x868c181a usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x9970e44a usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xdce6264d usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x02d3ae08 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0f41471c hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x54040c0b alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5dc0ff12 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x683e45ed hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x713de665 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7639d5be detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8cea588b hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xabdbc90e hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc499ec61 attach_hdlc_protocol EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x31a77e1e ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x32965a39 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x13cc8f57 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1f52186c ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x26ebdadb ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x306c9046 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x411b021f ath_reg_notifier_apply EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x72cd8a15 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7bc55c78 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x884f44e4 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6c12d53c ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6c3392d7 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6e781ed9 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7b37a770 ath_hw_cycle_counters_update EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa7653055 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xae472d7e ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb4fdb8aa ath_hw_keyreset EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb88de465 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbba4989a ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc1f94ff4 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd03b2e66 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe44a9376 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb920db5e dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdececac3 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xeed73b2a ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf197b61a ath_hw_keyreset EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x01fa3654 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09b318c5 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0b8d5cc3 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d49f805 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x13930529 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x142ab7ff ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x249531a0 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2ce74715 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2da3204d __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x30312eaf ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x31c40ed4 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x325934a3 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x32caa192 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x364026dd ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x48f39092 ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x49c445e2 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4f51f392 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x52d57ee3 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5dd86ed6 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5e9aae3a ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x66e2bff5 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6a3ebb31 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6c8c5c1f ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x702f7732 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x71820c1d ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x71d18685 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x72363dd3 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x75f61494 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a886eb1 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x819593d6 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x81f630f7 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8f7e4e54 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x97a62665 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9885be5b ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa535816f ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa7ee3977 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xab8b8e56 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb6a74769 ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbb53b976 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbdb9bafa ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc0c3db42 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc10547d4 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4919020 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x06c7d652 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x08eb86cd ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09736830 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c4e63e9 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0e728aab ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x17efb7b6 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22162e88 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2292e837 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x239e9f8f ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x24218060 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x24a21946 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x28f18e2f ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2d2d66fe ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x324f8dc5 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x37d9e690 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x429b8a85 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x43e3cc78 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4645ed23 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x58ea6d78 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6518c120 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x663b6d6b ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6734aaf4 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x68c78ea1 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6ab17a6b ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6e09495f ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f08b8a4 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x74287bd6 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x75d35455 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7854e1f0 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7ce64d70 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e0541d0 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x81a36b2e ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x86a2b1b2 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa0de7399 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa0eee19b ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xabb63ebc ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaf881d2c ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb1365842 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb9753ae0 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc90d39f ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd801f34 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc0f8bc09 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc22df6d9 ath10k_htc_tx_completion_handler EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc9912b66 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcff308f9 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd1fea950 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd845f601 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe089d8b8 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe145bafd ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe5c17f49 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8350cb2 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe86716cd ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeecde264 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xefdd4028 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeff16d19 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf0db4a04 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf53a02b7 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x002458b8 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1452d706 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x185cca18 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1f740e1f ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2e519faf ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3f4d2fe2 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x48cea9cd ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x553664ca ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x58c801e6 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6f92c72b ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x870d934a ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8b3f1c2c ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9a11b2a1 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca6ff512 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcdb07b73 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcf2dcfa8 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd258a4aa ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd3a5c7c2 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd936c3b5 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xde4c3679 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe2ed627a ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf31fd166 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf44436a8 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf794eb19 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe5b1420 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xffeb26d2 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x090ceaf4 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x11695d85 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1a6f769e ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1a8e01d8 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1b2baefc ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x210bb0aa ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x22652023 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x401c3bf3 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x44e30db2 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x671c9355 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6c86cb97 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6f867572 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x83491a36 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x88ebeb5e ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x92f2b2bb ath11k_ce_alloc_pipes EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa85b124c ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb300e0ef ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb545de53 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb7ae2b18 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbdf7916b ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbefeec11 ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xee1e8e17 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xef7accd4 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9f0d8114 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa10a1135 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xadeb2f0c ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcd04ef80 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xce620f8a ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd13957b5 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdb503c20 ath11k_core_resume EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf099e741 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x12b28313 ath6kl_core_init EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3aae4da8 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x49b0ddda ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7e11b4c4 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x35aed309 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4dba35e1 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x50cfa143 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x59c473fb ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x61640f70 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7f9a1afc ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x81e86bbf ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8c36b4d3 ath6kl_core_tx_complete EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x936260b4 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa62bf46d ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb49b52d7 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb3ea0f55 ath6kl_core_destroy 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 0xc44c220c ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcd5456a6 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe81e52f1 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf83aaad6 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0aef2694 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0ed5a884 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1111a051 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1e5cb5a1 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d7c948c ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x347ad39f ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x555a1a9d ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x64ce91ec ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7430d137 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7b5c54c6 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x82bb80cf ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x861a5ef3 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x86bb22c2 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8dfd75f8 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8f52b772 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x94dc496c ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9d481fe3 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb33f5dd5 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe47d4562 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xec52eb11 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x00cbc56e ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x175451c4 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1db93ae0 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x29533f2f ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x345ed5ed ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x37472b94 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3f9626ad ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x43104367 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4e88f78e ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x57c24a3a ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x770021c4 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x84c0663e ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8fe17884 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa3253198 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa8ed932e ath9k_cmn_debug_recv EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb8c9ec62 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb9688ee4 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbbe9ce4c ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc4bd6a75 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcc3f6073 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 0xe47203a2 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xec6eeb33 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf8b9003e ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x008b5eab ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0294e0a9 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03029d37 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0364a758 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0455105d ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06add1d7 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b3891b1 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd61b9c2e ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdd8e3435 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe3970de3 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xed084bea ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xedcbbe3f ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01c460c5 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x039746a4 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05e8e51a ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0842cbd5 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08f90455 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ac1517f ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c3961a0 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0cd543f9 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d5d3375 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0da83938 ath9k_hw_reset_calvalid EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1461b2d1 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14b15be1 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14deeacb ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15181e36 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15c9389a ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ff0d35a ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20c74d9f ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21298b34 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22c3be3d ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2382828c ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x255e64c2 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2deb004e ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x303bdacf ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34d32d6e ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x374ee601 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37a49df4 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3809f89b ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3905a7cf ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ed4b108 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4244069d ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48142ef7 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48720731 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49211738 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4932fe9d ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b720f77 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e8e0899 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f5148fb ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ff2b635 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50718e64 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54bd8ae0 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b4396b6 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c4da3b9 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c63b6dd ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cc2930a ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cf9a13c ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60cb4481 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65b4e4d4 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c5d63a9 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e169dc8 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x706ca79c ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7498fe29 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74d64884 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a6c3152 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bc2d849 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bd414a0 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d136912 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e5d3ec9 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8014025b ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8123f99a ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x822a5730 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83896531 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x859abb4f ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85ef70cf ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x864e8b63 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8919e604 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d68afe4 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f35bb19 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f55e1b8 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93e918ed ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98685f2a ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ef49575 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f660619 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fa18ad2 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa138c333 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5f1221b ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa60178a5 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9d82f9c ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa3f1f90 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb31f61fc ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4dc4dab ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb500320f ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb624d856 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb989d4a7 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb7dc8c0 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbfc42cb6 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc151f1fd ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc224b3c1 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8718459 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcccceea3 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd2f2584 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd36598ee ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd56e1d39 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdada193a ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1808983 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2e97a56 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2fef0b9 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6640664 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe688af15 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe755a9b9 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe77a1dc1 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9fcd9c7 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb49fb70 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec916742 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xecf3683a ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefad43a2 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2374c66 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf26aa4b3 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3c795ed ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf88cb2c9 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd572284 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x12589543 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x34e32a7c stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x35bbebc1 atmel_open -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x00e1b008 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0c7c5bbc brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1258eee7 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14170490 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c56081a ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24ff71f1 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2be01dac ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d19b546 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x378c0cf0 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38ea0218 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c1fd72d ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x402c9b38 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45ad105e ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4704bb5d ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47e657c7 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49efcc8f ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a2b6269 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f56a7a5 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fbcbd4b ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5036603f ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x505964fe ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52b979dc ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54f1d29e ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55153c11 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5767d594 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cbb5d2d ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f0a839d ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61559314 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61da1dab ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65b9e5dc ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x666299d1 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66fd46e6 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x687138ac ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6bce5680 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e1806ac ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f21be19 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f8e5e1e ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6fa2e20a ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x709e1897 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72a6fb93 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x755c2b69 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x763dc62e ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76b4d80f ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a933bb7 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bedaa2f ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d99e95e ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7dce0872 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ea21fe0 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x860e5283 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x879375f2 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88807e6f ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88c89d83 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c571a36 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d8cc4d2 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9222c993 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x948d818a ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9886ac31 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98aab1ac ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a9f7122 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ac7a792 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d9b7b0f ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ee91710 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa09cacbc ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0ab11b7 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa41da907 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa46bdfd0 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa680164b ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa78f6873 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab86673a ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1d30c3b ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb202755f ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb598a43d ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb628b51e ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb711d891 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb91140af ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba3ee65e ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc3a6675 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcf31f46 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc02e80c3 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc10da630 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6560bfd ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc713c39f ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccdfff15 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd7e75b4 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcdc5028f ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd12e9985 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd20a8582 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3350381 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8fca5f5 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1fb4435 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb9fd242 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebd35813 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeeeee36f ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef88ab2a ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf740ca57 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf90584de ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf95d92c0 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9cdb4e1 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa8b24a3 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff49d37e ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x85b6b585 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xb8cc5485 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xf04f82b2 atmel_open EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x226705a4 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x416e7fd8 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7d3f70b8 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7d94a788 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x88f70b50 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa0aa3521 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x29cfde29 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4a4eb3ed brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x72555b7e brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x88c9ba41 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x92cc739b brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x996b5a04 brcmu_pktq_pflush EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa544fd27 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa68ffd9a brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb69c48d9 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa1df7809 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xaa5cedb6 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb77bc2f2 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd0d8d765 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 0xee702bfd brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0aa257ce libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3ebdcd98 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x522e7d22 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x53649435 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x599579b7 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x67a2b403 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6b15e26d libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x753f30c1 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x88bf16d8 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8ecd592e libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x93e26440 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa3f8e5f2 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xad07ab13 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbc06c354 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc13ee28a libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc9827af8 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcf8b20aa libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe7170734 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf235a2f9 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf723818a libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xdb4fd6e4 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe9e07a85 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xecc136e7 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x14248f2c libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2cd3a957 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3996df5d libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7827668f libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7930c9c8 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7a768575 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8ea64432 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9933ae97 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa36b7b52 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaa437470 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaa80d276 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb4c0965a libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbeb70dbd libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xccffb1ad libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xce3c45c7 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd713c47f libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd87f1443 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe2a8acbb libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf289d3ff libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf5b20e9c libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0088e5e6 il_clear_bit EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x021308cc il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0337529c il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04224a1b il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ac9683b il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e99fd56 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10a554c5 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1c009295 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ebebd02 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f627583 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x218f5f9c il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21d288f9 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2cc26925 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36719427 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x37e2eee3 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b3b7eb2 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b74e740 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b774e3d il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x042575ed il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05822b51 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07482165 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0a66ae47 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b746b95 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0fe24bf7 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1719eee1 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1c5492f5 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1dcd66be il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ebedf92 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x216fc716 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26d852eb il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x278b7de0 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28159048 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2849cf37 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28fb6937 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2946f20c il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a45b819 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a69bcd0 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d15b838 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e17cefa il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2fea1bb9 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30a72783 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x350e70d3 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x37cac0db il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a092ba9 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ae92568 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4071d0a5 il_init_channel_map EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x433bb4fb il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x468fe4cc il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49f1967c il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4a954ae5 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4abf5e7a il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4bd32e1a il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4bee7a2d il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4d695a4d il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50e68d65 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x54a22a7e il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x561373f3 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x56165b04 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f67d71f il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61ac8c96 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64128245 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x647b71b0 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x681cf9d7 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6db7c3a7 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e55f722 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f79610d il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x754dfd20 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x755d235a il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75cccdb5 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77589419 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x785e04a9 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fbb54a0 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85705e5f il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86adc033 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8785d94b il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a894a10 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b9e6a64 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d417a75 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91bcb18f il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93b992db il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95fdbbab il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96bc7dee il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96fcee68 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x980de1ec il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x991ea6e7 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b683e6a il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c1e58fa il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45ac1589 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48dd3270 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x495965a7 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f2d690b il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55a85137 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5726a49f il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58933506 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5eb5afd8 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ed36422 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60215374 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61cf4940 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6299489b il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63b0110e il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6710b3b6 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67c7fccb il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6968ed1c il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a4f32aa il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b997410 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c945ed2 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f3666bb il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7178c309 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x726942ca il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7383b9f7 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7418a625 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e0153b7 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f0c70bc il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f595e52 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x806f4729 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8237cd5f il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87168a3c il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8cf374cd il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8eb0d556 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f1d572c il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9081188d il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9350c729 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x939dc01d il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x948bab6b il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9866b52c il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9acdc911 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9adaa467 il_mac_bss_info_changed EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3d8058e il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa403b8da il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa6a63ea9 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9cdaedb il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa890931 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaba35a63 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad7cd6dd il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb05a217e il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb5807e37 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb5c49029 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb5e7e89a il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2d4146b il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaac781ef il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4222630 il_send_stats_request EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb66eac1e il_read_targ_mem EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc01b8551 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2a71708 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc59ee0ea il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6cd2298 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc95f9331 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcebd4de9 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf8e24b9 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd123688d il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1ebc52d il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2224ed0 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3969bad il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7775b37 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7aa6c45 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7ef3397 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7f6ca84 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdcc571d9 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde941214 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe20b0a76 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe50860b6 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5d7300d il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9bf810c il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xead5c00b il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xede0f2c9 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1bb21ab il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf69aef50 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf706572b il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb8e1bf90 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbacec376 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbccb5b3a il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbee2a108 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc11c0761 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc350412a il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5b0a988 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc69cad12 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6a58452 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc786a006 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc872de8e il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc889b378 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb08bbfa il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd000774e il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd28ac50e il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3b528e1 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd782bed9 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd895c03b il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8cf960c il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdde07180 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf11af04 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdfc8d635 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe08acf68 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xede24343 il_free_channel_map EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa4c487f il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa8c4f61 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe183b92 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xff5cff76 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0f16b6c4 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf81abb56 il_tx_queue_reset 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 0x589c2813 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6a15ab3d __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 0x85fd45b9 __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 0xa90901d2 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc5840cf1 __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 0x01c9ca41 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x039af7f9 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x04cb31fa hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x04d7a3ef hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x00f23e87 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0108ea7f hostap_add_interface EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x126e513f hostap_get_porttype EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2aac9271 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3c61f274 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x42027b87 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x63a220e4 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7aad481d hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7bdf840c hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x16afe059 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3048ec2c hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x45e8f2a6 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x468e288c hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4b334ae0 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5fbfed0a hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x63464c48 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x73a3fe3f hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7e737462 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7f4e9f11 hostap_set_string EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x869e8727 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8943fdbc hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8cf94817 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8fe2bd7b hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8ffaa278 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x91734686 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xacce7e14 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8f685274 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8ff596b3 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa1173cf6 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa19aa93f hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xad7c1ffb hostap_init_data EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbfb6d17e hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc5e1b6b5 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc67fd6f2 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc6ec17e3 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe1ffaf2f hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe6352da4 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xecbd7936 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf96d4db0 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x19515b6a __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1d15c17f __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2a033f62 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3a676f6f orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x46115ecf orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x581be40f orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x66029080 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6b28d468 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x74d60022 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7764c640 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb02cf588 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc0878e4a orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd65f50e7 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xea69525e orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb65d6b50 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd283b90b hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd60934f3 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdaba55f0 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe168ffc4 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe1f73798 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf585adf8 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x24aa72f2 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3436116d orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5f301fa9 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6f25fec5 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x722703fc orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7cc8dfcc orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa7765c80 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xaac481ec orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xacc46138 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xae2770fc orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb0185f0e __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc59c0023 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcf83a469 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd0854833 orinoco_process_xmit_skb EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeb06cb81 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf1d34941 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfc5c7848 free_orinocodev EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x656e5ee6 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x927f0142 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0010ef69 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0c9dfc85 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x154105e6 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x16d03836 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f52cb0a _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2222ab8b rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x940c1b52 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x0914878c rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x00e0ad77 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x019a45e2 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x08c31097 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1a69b2b3 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x20f09006 rtl92c_dm_watchdog EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x24b4154e _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a780f70 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2e7b3267 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34498951 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x57d6442e rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x68a3c066 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7758350d rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7cc60a34 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7dc9e938 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7f2b0925 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ac276e9 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8c45baf0 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8df246f0 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x905be2cb _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x94289ba3 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9b149743 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9b2599e5 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9de15ef6 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2ad14dd rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa7228f0e _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa9bedb00 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad1ac500 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xadc8bffb rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbcf56206 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc4543ab2 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xce5e0102 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe0a64aee _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe3c7a6c3 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe40ffb54 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb458f14 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf18c7068 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf8130588 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf995a2a3 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd795099 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd8a3a0e rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4237c6a0 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x5eb77153 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x775bbb57 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x80745164 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1bd98e6b rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x495d6898 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa4ac87d1 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf7d5f8aa rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00981743 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x257c35d2 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x26135e85 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x270371ca rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d5b3cdd rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3436d83e rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34ad1d0a _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34e3e22e _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58394550 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60c05d04 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6111efc6 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x62bb2432 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x660dc928 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7072857d rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7633434c rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x766ef53b rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f4fe4df rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9044bb9c _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x93d9231a rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa4116aa9 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab2a2914 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xac6d11af rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xae80e6e8 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0566773 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb4362ad5 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb88741e3 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb9f1862e rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xba7cb8ba rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbd0151f9 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9febfa2 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xca36e1a9 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcc5e07b5 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd59330ef rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe55f9589 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe99b4553 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xefb33d76 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf3b82b10 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x047c8e92 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x236e8c00 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x948b3a7e rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9e5adc58 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x24a8acef rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2be2073e rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa1399ddc rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf12de8bc rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0850c7c4 rtl_cam_add_one_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0df25400 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a94854e rtl_bb_delay 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 0x1eb7e693 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2c9ba792 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1fbb16e5 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2056db3c rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2b11a70d rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2c399b70 rtl_cam_delete_one_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x355d334b rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x440dfcb4 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48e55ff2 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4bee3d19 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x334346ae rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ee1a826 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x44b8d8f3 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4c55bdce rtl_collect_scan_list EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ae08af2 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ffde028 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x66258c09 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6dcc27f9 rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x70cc08c9 rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b00a656 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d258270 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x857f411d efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x96945f55 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9eb756a3 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f0aa133 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa5a3a53b rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac9d4a5a rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb9de157d rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3a054fc rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce45fc2a rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd0992cff rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x56a7dd0c rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5a517285 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63025dc1 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x69140a3e rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71a23a55 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72fa949b rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x78265d78 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7f58e856 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8868c496 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x88a2377e efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x956022c4 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3ccee7c rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa4d7338d rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6e2de0c rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad81f507 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3c2f141 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcfced962 rtl_c2hcmd_enqueue EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5873508 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd79a6c30 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe253b377 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe990aeb5 rtl_rx_ampdu_apply EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0d682fe rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf27659ef rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf2dcd212 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x38fc4352 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xa53c34df rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xd31c39e0 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x3cde52de rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x06c8b56a rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x094fb884 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0d7bd7c9 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x16fa770b rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x18c28e0f rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1b0c3dee rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1c5b1ac2 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x24137375 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x27bca80c rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2df91d0d rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2f7ed931 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf15e2172 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf25cc919 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x41bf8836 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xdc7fffbb rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xaa5ff284 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x459d99ba rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x000c758f rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0673f226 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0bc1f740 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0fdfc05f rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x10ae8afb rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x13682820 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1624f5ab rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x20569b1b rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2184cacc __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x219e2d65 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x21bfcb2f rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x250ba3e6 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x28216873 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x305ec589 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3236ca28 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3325ac19 rtw_phy_pwrtrack_avg EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x342020fc rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36bb16cd rtw_fw_c2h_cmd_rx_irqsafe EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x402f8bca rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x422f1afb rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3801c415 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3a0757ee rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3d480d73 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3d5490c0 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3ebd2cac rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x43af5724 rtw_set_channel_mac EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4a5b1f59 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4e96b5ed rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4f925cb2 rtw_coex_read_indirect_reg EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x57538244 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5346af7e rtw_coex_write_indirect_reg EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5dbf86b0 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x61053025 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x61b0ba2a rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x627f28af rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x671d4b55 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x68032389 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6c35db1d rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x70581c30 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x729e8516 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7420bc16 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x76a85d7f rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x84ae7dc6 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x914b8a8e rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x975ec1c6 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9a0927d3 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9b98ddc4 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9dd3d90e rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9ede3711 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa2eaf4bb rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa3eac4d9 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa6abeda9 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa89b3ef4 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa2e457c rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb0cac43b rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbad30ea0 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbf420ade rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc6cbe2bd rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcb6f8218 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcc7901d6 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd57a20bf rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd6b196be rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe0e6236c rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe3ab23fd rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe5a80553 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeb073e05 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xec77c326 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf001b8c2 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf2d69b4e rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf7d64fe6 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf88c76ba rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x6d611c8c rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x7ac52a77 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x90c6f6a9 rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xfa089ebc rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0a959b0c rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0e02b273 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x329f2b0b rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3ca6a646 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x418db9c2 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e306e48 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8e5f8c5b rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa1552e39 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaff89fd9 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb3875931 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbdeb6c57 rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbe1f48f2 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc1eddbe3 rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc547cf35 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcbbcebb0 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5b3d42df rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x67f320ad rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x72b16799 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x736e733c rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x74fee65d rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x775f357a rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7ce11c3e rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8de5f345 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x95f14fbe rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x994452bd rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9a5f5528 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9c8b13ac rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa65cb008 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaba3f766 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xac9ba352 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaefc65ca rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb08ed8aa rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb471913a rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb4e9a6ea rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbb429004 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbdbd63a0 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc0dc1d9c rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc480720a rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc63c9404 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd5ecf560 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd6c4ecf9 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdd7091d3 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xde7338b8 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdee67888 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf06ac362 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfb249dd0 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfdf28c40 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x58ddc087 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x5c6aa1cf rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xaeca007f rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xb2cfaf81 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0195c516 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x02e6363a rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x05e45080 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x079cab31 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2aeb1799 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2c3cdc32 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x41f35d90 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x557c9d96 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5c1a55fb rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x600f35dd rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x61a1f1ff rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6985b5ea rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6d296dfc rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa831183f rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa841dea4 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaad71590 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xae3e6a00 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc1fa0041 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc777c08b 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 0xedb861df rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf85e043c rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf9860c18 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfa2f0e9d rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfa9cb1ee rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9283b024 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x3b99b547 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1be30f7e wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2e07262a wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x34353f46 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x45f56b37 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeacfdaca rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x542b74fe rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x5f3dd9d4 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4b65e3e4 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc0a5942c wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xcae5e2b8 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xdfacc2a9 wlcore_tx_complete EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x3bb8fba9 fdp_nci_remove EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xac948666 fdp_nci_probe EXPORT_SYMBOL drivers/nfc/microread/microread 0x940c5be2 microread_remove @@ -3796,7 +3685,7 @@ EXPORT_SYMBOL drivers/nfc/microread/microread 0xf7c68f22 microread_probe EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x3e1ec120 nxp_nci_fw_recv_frame EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xa488dbb0 nxp_nci_probe EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xef36de53 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xc8db8661 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x7bd8a196 pn533_recv_frame EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x23be48cf pn544_hci_probe EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xad6528e0 pn544_hci_remove EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x10a82afd s3fwrn5_remove @@ -3806,6 +3695,7 @@ EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xad6fb3f4 s3fwrn5_recv_frame EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf5a000d8 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3c0f9c87 st_nci_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4f7f7247 st_nci_se_io EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5e677489 ndlc_send EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x66ac8b4b ndlc_probe @@ -3814,22 +3704,21 @@ EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x92fea1c2 ndlc_open EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xac4fcef1 ndlc_remove EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xace9ee88 ndlc_recv EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb518a1e1 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcff5158f st_nci_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xec75db27 st_nci_se_init EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0008bb97 st21nfca_apdu_reader_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x09ac119a st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x169bd7ca st21nfca_hci_loopback_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1af200b6 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x283cd271 st21nfca_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2faf874c st21nfca_im_send_dep_req EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4416416e st21nfca_hci_discover_se EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x592b2d1b st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6976544f st21nfca_hci_loopback_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6fe07c54 st21nfca_dep_init EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6ff9f577 st21nfca_hci_disable_se EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x88219e23 st21nfca_se_init EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8ce7c093 st21nfca_im_send_atr_req EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa4985b37 st21nfca_tm_send_dep_res EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc0d30860 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc2e4af10 st21nfca_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc9cf336b st21nfca_hci_probe EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd4e5a69c st21nfca_se_deinit EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xec3632b6 st21nfca_hci_remove @@ -3889,169 +3778,169 @@ EXPORT_SYMBOL drivers/parport/parport 0xf27df216 parport_del_port EXPORT_SYMBOL drivers/parport/parport 0xf393f9f8 parport_get_port EXPORT_SYMBOL drivers/parport/parport_pc 0x6b4adec1 parport_pc_unregister_port EXPORT_SYMBOL drivers/parport/parport_pc 0x8ae862eb parport_pc_probe_port -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x0ee2492c cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x34ebe9b4 cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7f98b8f4 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x98e5eb5a cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x168ba7b2 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x19e526f6 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7fd6dc53 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xcc030282 cros_ec_suspend EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x7d97cfb8 rohm_regulator_set_dvs_levels EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x302b018d qcom_smd_register_edge EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0a58d386 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x25f477ae unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2cb3d79e rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x35f2dcae rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x05231f80 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1f8f6804 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x24034c46 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2a4957c1 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3d8c4e62 rpmsg_trysend EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x52f9f374 rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5a1f7c63 rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x62b2ef35 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x663110e2 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6675af5a rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x69564dbd rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x70227b83 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x72bf983a rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7f669396 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x83401036 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc46d04e3 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5604e469 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x59c20524 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x680edd5a rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7951aafd rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9ace3ea3 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9de33335 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9df66de7 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa88513de rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcbdce08f rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xda5707b9 rpmsg_sendto EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xef089a06 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xe597cecb rpmsg_ns_register_device -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x013a3542 scsi_esp_cmd +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x85bee691 rpmsg_ns_register_device EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x62166305 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xcc0efc20 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd201eb0c scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0629c33e fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4a07a560 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x621b0b1b fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6ae3b65f fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa3404b0c fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc7f62b9e fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd9bd9e99 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdfe5224e fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xec54f4cd fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xedfb178f fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xeefd2048 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x05ac7c5c fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c4d52b1 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x6471835a scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x95b30675 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb08eae6a scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc5e87f54 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x340834dc fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x35ce814d fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x42300d06 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x68a71cd7 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x70ddcbf8 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x729921a9 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x88333e22 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8eb8cc68 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xac3eb128 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbaf61a13 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd5238177 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00c423be fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x04218de2 fc_linkup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0e4eef75 fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0fcd5156 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x112f709a fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11b89aa1 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18120e9e fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x190f11a7 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x198a80ef fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1cbf4840 fc_lport_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1eacac47 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2221136c fc_vport_setlink EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2350468f fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b02584d fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d175121 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x347de16b fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x354f398a fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x377a43f0 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d933ea0 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30bfec75 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x33485ae4 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39f2de22 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b7306ae fc_vport_id_lookup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3c327e2f fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x41def9d1 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ab2f466 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4b510247 fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x51942d7a fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3cc50016 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3e577013 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x41594fe0 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x43a4ec6a fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x47e94fde libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x47ffbf10 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a912293 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x52bbf96b fc_exch_recv EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ab41f0c fc_lport_notifier_head EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c3448bd fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c88e806 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61d29815 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6c6caf04 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e1eca33 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ed30fbe fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6f631f5b fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6faaffd0 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x62f77902 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x637d7d1e fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7142438d fc_lport_set_local_id EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x759e92fb fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78e44bbb fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79e639c9 fc_rport_logoff 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 0x83c08be0 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85580186 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c434a61 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8cb416af fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x981bd9b8 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b8a5ffd fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c57149a fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8610acb0 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x889fbffc fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b6d21b0 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f901c4b fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x918f5b1d fc_linkdown EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f53b352 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f9d97d8 fc_linkdown EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa2b11b54 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa77ae7c2 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa2c1b36d fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa759ebf8 fc_vport_setlink EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9801130 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xacb619ac fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad1c5b14 fc_fc4_deregister_provider EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae8861a2 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaf9a24bb fc_fabric_logoff EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb94351f4 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0fa4412 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4ff0574 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb75fa57c fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb96f16c5 fc_exch_mgr_free EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb0aba27 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1d3a398 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcd4b2d89 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc49a18e5 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc77466ba fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce8a2ccd fc_disc_config EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1a227d1 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdc206044 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe177ffd8 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe46202b9 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0ee10e2 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2093a0d fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd61d9ad5 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd80eb58f fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdc5b2212 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe16ddb84 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeba12dd1 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeeba7a91 fc_exch_update_stats EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0fa51c0 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf7f40ace fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9c248f6 libfc_vport_create EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb94be53 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc222d5c fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfef09d72 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb3a92d9 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x38367d03 sas_suspend_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa3d97332 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xcb292016 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd1f5e277 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x64303fd2 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x9b15b60a sas_prep_resume_ha EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xd830ab7c mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x02aeb777 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0423a3a9 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0569e14f qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1df9acad qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5fd92101 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x88252251 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x89dbb0a0 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x98a9b00c qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa66ebe78 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb624f053 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd7857dc5 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf431cadb qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0543d010 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1569c9d9 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x25645088 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2c27b2bc qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x50bafe25 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5cd5fbb1 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x77525bbb qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x792141c4 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8c6ea5af qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc519f231 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc9eda107 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdf4be13b qlt_free_mcmd EXPORT_SYMBOL drivers/scsi/raid_class 0x8a1f3824 raid_class_release EXPORT_SYMBOL drivers/scsi/raid_class 0x93a876ec raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0f43185d fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x078be6e3 fc_remove_host EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x24f9bce7 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x27ebef18 fc_vport_create EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2f1f9a92 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2ff7a783 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x36e903fc fc_block_scsi_eh EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x440b1d82 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6d0194ec fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x767302d4 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7ef4274b fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x93e58a54 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa74d6f78 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x42ef747e fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4b6384db fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5085f07c fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x63e21baa fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x81ccf94d fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x84ca3f6e fc_host_post_event EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb456f709 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc836d53c fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcbccec4f fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd5de5a0e fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc1b408cd fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc36da2da fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdefba9fe fc_host_fpin_rcv EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xeb7d2a4c scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xec330ee4 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xee483261 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf511e216 fc_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x06cfa932 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x073b2eb0 sas_remove_host EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x08ec7348 sas_end_device_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0e7c184a sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2006057e sas_get_address EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2a4c9a62 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3039be63 sas_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3f0a3ece sas_rphy_remove EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4a0fff26 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4d3bad6b sas_read_port_mode_page EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5ebae313 sas_port_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x644c1a80 sas_remove_children EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x684837d6 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6cc4d224 sas_read_port_mode_page EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x707cfc7f scsi_is_sas_phy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7d8ec9bc sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x82e740e3 sas_release_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x87aa4129 sas_port_free EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x909c9240 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x92ab8388 sas_release_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9d8ef401 sas_expander_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaa34723a sas_port_delete EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xabe8727a sas_phy_add @@ -4059,35 +3948,36 @@ EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaf15b6d7 sas_rphy_unlink EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaf70eae8 sas_phy_free EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb0f0490a sas_port_add_phy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6294fd2 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcbc27fb3 sas_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd0241a35 sas_rphy_add EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd5d49bf1 sas_port_delete_phy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0706c4e scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfa250e4f sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xee85afe9 sas_get_address EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xff8b0de5 sas_rphy_free EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7449ee73 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc484e910 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd378f695 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe63ab0aa spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf7ed9ad0 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3b432029 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x58eddae5 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x88e10bee spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xac8f2a5f spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf1730b80 spi_display_xfer_agreement EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x139b0b9e srp_start_tl_fail_timers EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x58324852 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x69ee8ea7 srp_timed_out EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x8e5c6074 srp_rport_get EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xbc7426c3 srp_rport_put EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd23a87d2 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x2c31a8bd tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x3682b5e4 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x30d63592 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x59770af2 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x68d5940b ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x6de53f68 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x81ffc4b1 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xb9ed7c87 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xbfbb9524 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd92c2968 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x6d9a48a0 ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xd7b5fab9 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x4a0e7f01 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xb6634f5a tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x4def6758 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x5f93b06b ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x655c7782 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x7830bf43 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x8d02e0a6 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xa3e8c960 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xa87571ce ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xa8e84805 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x5347acb7 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xe211bfbd 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 0x1adc7386 cmdq_pkt_write_s_mask @@ -4137,24 +4027,24 @@ EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x4dd2e3a1 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 0x189f7fd9 qmi_send_response EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x268700e7 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2d3673b6 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x81495f14 qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9776bd1d qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9c6a1eaa qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x306e0b97 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x448f656d qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4f4f144d qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x58b9baa5 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x63f08127 qmi_txn_cancel EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa2ff1ede qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbbbbe61c qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc44402e4 qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xceb319be qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd7814a4b qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xebc83e76 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xaec3ee86 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xba8ce3a6 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc52c3d69 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xca28e6f0 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 0xe0c75f97 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0xb294f075 qcom_wcnss_open_channel EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0ab61103 sdw_master_read_prop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0c2f8e50 sdw_write EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x125dc962 sdw_bus_clk_stop @@ -4215,277 +4105,276 @@ EXPORT_SYMBOL drivers/ssb/ssb 0xd20c5252 ssb_set_devtypedata EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size EXPORT_SYMBOL drivers/ssb/ssb 0xf8b9e9b0 ssb_device_is_enabled EXPORT_SYMBOL drivers/ssb/ssb 0xfd56acc0 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x223bf203 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2db7a8ba fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x305b9889 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x100067f3 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1b88eb7a fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x36c661af fbtft_write_vmem8_bus8 EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x45d06406 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x48a538b2 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4fdf1174 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x54afd5cd fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5649d6de fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4dd8e282 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x53c799c7 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x57ab9ffa fbtft_probe_common EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5b9afa61 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x68e13d4f fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6c0ffc2b fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7d591046 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x61c5b6de fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x834cf317 fbtft_unregister_backlight EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x896448fb fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8ac9e7d4 fbtft_read_spi EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8bc2c3a5 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9028f5a2 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9d9e20f4 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x90371d12 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9dc5f879 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa18dc393 fbtft_init_display EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa7e13c1c fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb17f035d fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb3f52bcf fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb92a5c3e fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd394cb63 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeba05fb2 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf2738359 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf9b18550 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfc9383a2 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x6ce5d5f7 gbaudio_module_update -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x79ba3a67 gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xee975766 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbb0a1fb8 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc2713336 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xce9bff2a fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd3643f7c fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe0756d4f fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe0c6b21f fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe50d7706 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe88d433a fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x33e0a0ba gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x4f316d4a gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x983daa48 gbaudio_register_module EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xc49d0e1e adt7316_probe EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x29035512 ade7854_probe -EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x9d9646f5 sp8870_attach EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x5c08f34b videocodec_attach EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xae918dee videocodec_detach EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xb682c310 videocodec_register EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xefd89f85 videocodec_unregister EXPORT_SYMBOL drivers/staging/nvec/nvec 0x8481efc3 nvec_write_async EXPORT_SYMBOL drivers/staging/nvec/nvec 0xe69c117c nvec_write_sync -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08093184 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11d07623 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12ef6d6f rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x16503cf5 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x183ee235 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18c88e94 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1aec69fe rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x056102c7 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0b2b5ceb dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d9dc5c4 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0da64492 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11034917 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x154fc722 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20ffa60f rtllib_wx_set_encode_ext EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x35fa8d70 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3c6f1e1a rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4221ec09 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x438a90d4 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4b98d066 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ef91b50 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x510d64f2 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x52fb8e22 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x565f0eb8 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x60137793 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x621b4224 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x68ebf18d rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a497cf6 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x72f89e36 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7bcff3d2 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7c602c57 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82325154 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x87c595e7 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8d656374 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f3b5ff4 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91b277b5 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9369c950 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9c673342 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa1434874 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa489d801 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa907959c dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaaf2f9dc rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbb406702 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc1e66f54 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc1e7f9ff dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc211bc18 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc64c4a0e rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc66ae73 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd13d34e3 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd17077a0 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd5d519cc rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22939f13 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2638f368 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x290c7337 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x291bbdab rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x303acc8d rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3267716a rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x357c6455 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x371ed411 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a46fc9e HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f19824e rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x567b9109 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x588eaf7f rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58defe75 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5fecace1 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x600da285 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6411ee8d rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67e81fc8 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b32a04e rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6f2eec46 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6fb1fdfc rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x78a58878 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7bef270f rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7c2e22fd rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99964f30 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9b714f40 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9bf4ff74 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e525431 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa602e496 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa83e56f2 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb150eef7 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb28ded6f rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb8c6b809 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc090ba9d dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb200834 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0857d7c rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdab178a1 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf265e04 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf5641e3 rtllib_MgntDisconnect EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xecfa9742 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee7befd0 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf2c0a57b rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf4ffe792 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf816f3d3 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf9549d80 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x001d814d is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x005be68b ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x01c304ad to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0926db31 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a640076 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ccdbd23 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x254abf59 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x28222551 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c04202a ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2eae949a ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f4386c2 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x333cfcd5 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x384719dd ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a5964c9 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3bf3629d ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4114833d ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4344e511 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e4834a3 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4eba8cf1 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x514c03b9 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57981dbe ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ab68159 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f3dbf52 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7686cebf ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78d71e5b ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f8a5994 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x871b8741 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88313ef3 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8b99a5eb ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d18419f ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9342f6b0 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x96ec6ab8 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b21208a ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa7a7c576 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaceee8fa ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xad66df61 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe897ff7d rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe972368a rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf0774386 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf68cf3f6 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1173bcd8 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x125a35ef dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x15b181fa ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1f00ddcd ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x27ff8287 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x29517bc0 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2da45c62 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e9651d2 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2fcd0de3 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39032b1c rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3bd966c2 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d4261db ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5150427d ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a330cc5 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63079c30 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63e3bcd3 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63ed4efb ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77140352 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8444f49f ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8639cb60 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8b8cbd45 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x95e42944 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x968fa79b ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b87c6d0 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa7b0be73 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8fd52b6 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa912e5d0 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa9db48f5 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xad0becdf ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xad229217 ieee80211_rx_mgt_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0b6cd25 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb702667b ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb81918a9 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbabbbb1f rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0e75645 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1bc4c97 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb2d0df8d ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb607d794 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb6c4120b to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb77e175a ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc4afcc0 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0cb9806 ieee80211_wx_get_rts_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc68f9ddd dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc9c01825 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd242859a ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd406ded8 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd46c0a1f ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5751ba8 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc9936b87 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc2a3351 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd23f768 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd01099ce dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4703373 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8c6b502 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8cd208f ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdd4cb721 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe09a213d ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3672266 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe68dbed6 ieee80211_wx_set_mlme_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe828423f ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe9b8f085 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec5af319 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeef060fd dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf207f939 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf98a3361 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb146079 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfbac78e3 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05ddb685 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xef868931 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf1db3122 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd1c9e6f ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfe246536 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff41126f ieee80211_wx_get_rate_rsl EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0bfeb19b iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0f4719c1 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x10dd8aec iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x27391b02 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2771692b iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3b4a8aa6 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3bcabb3e iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42ba15b6 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c6c7d43 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c62205b iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f1b9bf0 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29fc2c25 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f769f60 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x413c44bf iscsit_check_dataout_hdr EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x51a93ff6 iscsit_tmr_post_handler EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x531bcb17 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x568b52e6 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x57376a70 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x602c511c iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x60a2ea56 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5422a61b iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x59f252d7 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6229cc1b iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6764d94a iscsit_build_nopin_rsp EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x685ee92e iscsit_get_datain_values EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x696e4d0b iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x714f9bad iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7559459a iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x78701d50 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7dbaef37 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x813812a1 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8c85c451 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8cca4352 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x980457f0 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9bef24c3 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ec6f785 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2292ff5 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf95126c iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbbdd2520 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe856f54 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a40b77a iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d5992fa iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e2c0c3b iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6fd3a3e9 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x732c0855 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x81e33015 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8413aedd __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ae0c734 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8cfe7c0b iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9416390d iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x944a8441 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa8ab5d4 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf960a9e iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xafd098a1 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb7812a5c iscsit_setup_nop_out EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfd68bb0 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2db23de iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcab3b24a iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc13b84a9 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc4f0a413 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xca27f3da iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xca99670d iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xce03afe2 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcec7f9e9 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd09ca773 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd85a2679 iscsit_process_scsi_cmd EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdaac7cb3 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdc3b2a67 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd5e1f46 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1aa7ff3 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeb40a8ed iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xed43b1d9 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb66328d iscsit_add_cmd_to_immediate_queue EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf93333c0 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf9869589 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfc8d3ae8 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/target_core_mod 0x020bec8f transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x06c815e6 target_stop_session +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf4aab4b4 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf6d9daf7 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf909577f iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfc74b4af iscsit_allocate_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0bafb829 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x0c36048b target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x08a47d11 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a0bfd14 target_setup_session EXPORT_SYMBOL drivers/target/target_core_mod 0x0cc9e3ab target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x105aae4c target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x11eca7aa transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x1342a47e target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x1362c0c7 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0fe037e5 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x11bfbaac target_put_nacl EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x14649908 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x1468b8bd target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x1ac46fb9 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x207f480d target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x2352e8c8 passthrough_parse_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0x243fa8df spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x290c76fd target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x25c8bf2c core_tpg_get_initiator_node_acl EXPORT_SYMBOL drivers/target/target_core_mod 0x2c3d3fa3 spc_emulate_inquiry_std EXPORT_SYMBOL drivers/target/target_core_mod 0x2e78c9c2 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x2fba4a60 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x35278a39 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x370c6ce4 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2eba8c80 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f713dd7 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x36a47de6 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x3831854f __target_init_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type EXPORT_SYMBOL drivers/target/target_core_mod 0x3b1fe655 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x43a86a87 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x44b62b0f target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d7fa774 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x576b5233 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x6147cf6d core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x3f11b372 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3f9ab203 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x46f7e458 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4cf4c212 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x539707af transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x53acc61d core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x55710a78 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x5844f372 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x61a2e177 target_submit_tmr EXPORT_SYMBOL drivers/target/target_core_mod 0x64027302 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x648c3b70 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x64ab1a0b target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x6776e579 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x6a23c70c __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x6e7a16dd transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x6fdfec60 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x7205340a target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x746ad765 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x7cc038fa transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x73411ead target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x7553d504 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x77452a2c passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b1ac038 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x7cf70967 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d75fda0 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e4fbc3b target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e7718d3 target_unregister_template EXPORT_SYMBOL drivers/target/target_core_mod 0x7ec7a154 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x82ecdcef target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x8336177e transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x8635d59c target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x865a1215 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x87336302 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x80081805 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x8027845c core_tpg_deregister EXPORT_SYMBOL drivers/target/target_core_mod 0x88379243 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x89d81540 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b0fa405 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x8c289f0b transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x96deca3e target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b5876b3 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x9feba73f transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa4402eae target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa7bf6be3 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x93a664bb target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x95380131 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1d1222c transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xa29cff77 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xa548bd62 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xa98b8244 target_execute_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0xabca333e sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xad3931d5 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xad3d0287 target_get_sess_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0xaf9d837e target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb4a75285 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb5e7874d transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xba922fa1 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xbb6593a8 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xcb73c241 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xb1986c97 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xb34d07fd transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb4e0db5d transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbcfbacbd target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc11e5188 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4aa061d target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xc916de60 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xcbf60b2b passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xce67a1d2 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf022a49 target_cmd_parse_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0xd063be31 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xd2964fdc transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xd2dafc8a target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xd495ec4f target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xd56224b0 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5f99cfc transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xd8146cb5 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xd98ffedd __transport_register_session EXPORT_SYMBOL drivers/target/target_core_mod 0xdceab035 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xdfd6c593 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xe451fdce passthrough_parse_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0xe7332f31 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xe8b0c56b sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xe9eb9c97 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xeb3a1daa transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xef092b49 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf16a0df1 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf294050d core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8740a70 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xecb590fb target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xeed7714e transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01e2895 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2a10869 target_remove_session EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3e9d627 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xf7b82c61 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xf7ccd13b target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xfa75278d core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x7ce7c0de usb_cdc_wdm_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xf7d95627 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa71b03b target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfae70691 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xfcf89376 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd6f1be6 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x8ad5a83c usb_cdc_wdm_register EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x2593c90b usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x1ae6c942 sl811h_driver +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xa6ac1b3e sl811h_driver EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x191a5a05 usb_wwan_write EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3507679f usb_wwan_port_remove EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x91e8a6d8 usb_wwan_close @@ -4685,9 +4574,9 @@ EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x8a8a37cd w1_ds2780_eeprom_cmd EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xe5c5b8e6 w1_ds2780_io EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x956c2e86 w1_ds2781_io EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xf6e3b73a w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x1c5167b8 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x1e6d7616 w1_add_master_device EXPORT_SYMBOL drivers/w1/wire 0x2367bde8 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x8204a306 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x4cb6a14f w1_remove_master_device EXPORT_SYMBOL drivers/w1/wire 0x8ed91431 w1_unregister_family EXPORT_SYMBOL fs/fscache/fscache 0x03339af1 __fscache_wait_on_invalidate EXPORT_SYMBOL fs/fscache/fscache 0x059a00d2 fscache_cache_cleared_wq @@ -4731,11 +4620,11 @@ EXPORT_SYMBOL fs/fscache/fscache 0xebbaa60f __fscache_register_netfs EXPORT_SYMBOL fs/fscache/fscache 0xf1ab653a fscache_object_retrying_stale EXPORT_SYMBOL fs/fscache/fscache 0xfa0d4913 fscache_io_error EXPORT_SYMBOL fs/fscache/fscache 0xfdb25ffb fscache_object_lookup_negative -EXPORT_SYMBOL fs/netfs/netfs 0x37b80596 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x4b91c42b netfs_subreq_terminated EXPORT_SYMBOL fs/netfs/netfs 0x4d00c632 netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0x66ab9e33 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0xa4b587e1 netfs_readpage -EXPORT_SYMBOL fs/netfs/netfs 0xb87177ae netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x936ea2ba netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xbec70349 netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0xbf80c339 netfs_write_begin EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active EXPORT_SYMBOL fs/quota/quota_tree 0x0c9e2661 qtree_delete_dquot EXPORT_SYMBOL fs/quota/quota_tree 0x12064ca9 qtree_entry_unused @@ -4848,546 +4737,546 @@ EXPORT_SYMBOL lib/zstd/zstd_compress 0xd6205c02 ZSTD_compress_usingCDict 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 0x1431a699 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x3df41de5 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x5ee7150a lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xa6d38e82 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xab0bf8ca lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xab1bbb5d lowpan_unregister_netdevice -EXPORT_SYMBOL net/802/p8022 0x3a416ec7 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xf8265a34 register_8022_client -EXPORT_SYMBOL net/802/psnap 0x2daa2c53 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0xeded4b20 register_snap_client +EXPORT_SYMBOL net/6lowpan/6lowpan 0x2ce6a058 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x33bbbcaf lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x89d3cd67 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb7f1e34b lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xe3bdef6f lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xff4a9f6d lowpan_unregister_netdevice +EXPORT_SYMBOL net/802/p8022 0x50f8aa79 register_8022_client +EXPORT_SYMBOL net/802/p8022 0x8c7666f3 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x53680fcd register_snap_client +EXPORT_SYMBOL net/802/psnap 0x5d5d3f30 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x03f41223 p9_req_put EXPORT_SYMBOL net/9p/9pnet 0x05292d8b v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x1160a508 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x1c8f6692 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x207e2139 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x0d5d43b6 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x0ee50b9d p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x0fb16c39 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x1666f6a1 p9_client_attach EXPORT_SYMBOL net/9p/9pnet 0x22a05bbe p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x23325273 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x25c98b5d p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x357373d2 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x2759a668 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x2afc1e86 p9_show_client_options EXPORT_SYMBOL net/9p/9pnet 0x37de6c48 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x38802ba1 p9_client_rename EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno EXPORT_SYMBOL net/9p/9pnet 0x3d986cf9 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x404d4905 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x438f2eaf p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x46c78198 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x4da9b289 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x50531324 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x5847c054 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x5b9622e1 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x635b9b58 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x3e8f90be p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x45103ffc p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x460c2876 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x4f672889 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x57015b21 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5aeef4bf p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x5b752769 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x5b83012c p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x65839091 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x6b45b109 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x6d46ac2f p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x77343ff2 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x7eb65f15 p9_client_clunk EXPORT_SYMBOL net/9p/9pnet 0x80bbc6fd p9_parse_header EXPORT_SYMBOL net/9p/9pnet 0x845eaffc v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x86d370d9 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x8e3b730c p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x947cba15 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x9af8f8e2 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x9c441a96 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0xa0484861 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0xa1a460d8 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0xa1c6eec4 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x86ae95e9 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x922117c7 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x9420b83c p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x994e873f p9_client_read EXPORT_SYMBOL net/9p/9pnet 0xa50f9bd3 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xa6c9a0a6 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xb4679124 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xb531d315 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xc2331187 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0xc4a5d6e9 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xc6506684 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0xc8b2cb5e p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xadd60423 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xb24b2b7d p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xb392b1e8 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xb7fafb7e p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xbf47cb0e p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc01bf6a8 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xc16a1a59 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc2676403 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xc76a571a p9_client_mknod_dotl EXPORT_SYMBOL net/9p/9pnet 0xcbfc4406 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xd13b7d81 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xcd81c939 p9_client_wstat EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xded0ca45 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xe2ef55c2 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xdac76b1e p9_client_statfs EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init EXPORT_SYMBOL net/9p/9pnet 0xe6b1e55e p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0xe8fcdec0 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0xeb3a1240 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xed994fd2 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0xf6847419 p9_client_clunk -EXPORT_SYMBOL net/appletalk/appletalk 0x1a309779 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x48535b72 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xbd16207f aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xfb6c859b alloc_ltalkdev -EXPORT_SYMBOL net/atm/atm 0x0dbfb6f4 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x24f5e217 atm_init_aal5 +EXPORT_SYMBOL net/9p/9pnet 0xf0c3c63c p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xf1fe39e4 p9_client_getlock_dotl +EXPORT_SYMBOL net/appletalk/appletalk 0x296acf1a alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xa236784b atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xb646e5b2 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xc551bb4e atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x083531ef atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x09db8910 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x2253c0a4 atm_alloc_charge EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x36d26243 register_atm_ioctl EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x573c204d atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x63f5d427 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x6b204375 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x5348159b atm_charge EXPORT_SYMBOL net/atm/atm 0x6b9a3871 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x6e3bce08 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x830b7877 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x83a28bfc deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x8f2059b0 atm_charge +EXPORT_SYMBOL net/atm/atm 0x6db67865 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x81416200 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x9f815518 vcc_insert_socket EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa3b5a5a0 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0xa9b6dd1c vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xa7c275b3 atm_dev_register EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xbcb9191d atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xca2b96a0 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xdcc0f9e7 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xe96463f0 deregister_atm_ioctl EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xf535c87a register_atm_ioctl -EXPORT_SYMBOL net/ax25/ax25 0x14893b33 ax25_linkfail_register +EXPORT_SYMBOL net/atm/atm 0xf7923de6 atm_dev_lookup +EXPORT_SYMBOL net/ax25/ax25 0x09a18476 ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x1c862530 ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x7c9e0483 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x71472c3d ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x89f65f41 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x8c61ac14 ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x93a54193 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x93ae6996 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0xa685338f ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xab332dfe ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xbc26fb69 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x973b91c1 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x9dc34ad0 ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xe4d712fb ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0223ea14 l2cap_register_user +EXPORT_SYMBOL net/ax25/ax25 0xee81cff5 ax25_ip_xmit +EXPORT_SYMBOL net/bluetooth/bluetooth 0x05abec20 l2cap_register_user EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x122e1cb1 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x15701564 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c30d59c bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1cc74805 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x09e768e5 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x142deaec l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1ca09c8b hci_release_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x22cc572a bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x27c1ccfa hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x29d5c490 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a0a8cd4 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x337a4ab8 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e739922 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x420698ca hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f5c1ca4 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x58e7cebf hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e25712a hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x61f73723 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x63119600 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x66a51fea bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x78f7cd3b hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x273fa75f l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x29505985 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x35338245 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3aa7ef4e l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c572741 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x40e2a08d bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x41a86710 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4a9e68b7 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4ae914be bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x55b333fc __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5d3b8cd3 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ef33103 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x65d83ff6 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x68801df0 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x69454277 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x706bee05 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x716645b9 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x756384f3 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x770c3ebc bt_sock_wait_state EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7ac2f333 bt_sock_poll EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c33ba93 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7db88532 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x82c63b70 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x88941d56 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x895f5ee9 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x89adcf80 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a3493d0 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8bbdfba6 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x800bd6f7 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x857d1a01 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x87be2ec0 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x87ff1bca bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8849af9d bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8cbcc8d4 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8d093222 bt_sock_link EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x952abb3d bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x97db408b hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9955550d __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x99bd3ec3 hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ae7278c l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c593d82 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9eb8f3ef hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa55c71d9 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf01b738 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb36b68b1 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb681f797 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc5805ad0 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcd2c3844 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9000a7f3 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9aa0a66a hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa812c028 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaaabd367 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb1341532 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb4f6ee22 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb61f34bb bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc0739ccf hci_get_route EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd95c1d71 hci_resume_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe2aa2400 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe44d749a __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe4c91032 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf4d69393 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfdc2fea3 bt_sock_unlink -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x06e69550 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5fa22a11 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x78e4364c ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9eaa4a0d ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd1c92ddf ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf63082c8 ebt_register_table +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe1f4e808 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe34ccaf6 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf0c21237 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfd007a88 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfe842d7d bt_procfs_init +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x60a5dbcf ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x90e8e69e ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x938c0a6c ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd215306d ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd65a5d2e ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe33bfe2c ebt_register_table +EXPORT_SYMBOL net/caif/caif 0x04fd1f45 caif_disconnect_client EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x165818c4 get_cfcnfg EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x58f1d475 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x781760ec caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x6563cc7b caif_connect_client EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x8a5506e5 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x91e6484e caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xd68de603 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0xf37e26b5 get_cfcnfg -EXPORT_SYMBOL net/can/can 0x11e31f63 can_proto_register -EXPORT_SYMBOL net/can/can 0x3c686849 can_send -EXPORT_SYMBOL net/can/can 0x484e3577 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x933a4d3a can_rx_register -EXPORT_SYMBOL net/can/can 0xed0835f0 can_sock_destruct -EXPORT_SYMBOL net/can/can 0xf9bc7953 can_rx_unregister +EXPORT_SYMBOL net/caif/caif 0xe5c7b4ca cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x3034ed8a can_proto_unregister +EXPORT_SYMBOL net/can/can 0x6911bb16 can_sock_destruct +EXPORT_SYMBOL net/can/can 0xdb30e658 can_rx_register +EXPORT_SYMBOL net/can/can 0xe2ce0b1c can_rx_unregister +EXPORT_SYMBOL net/can/can 0xeac5a413 can_proto_register +EXPORT_SYMBOL net/can/can 0xfa6d172d can_send +EXPORT_SYMBOL net/ceph/libceph 0x0165eb82 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x02eb01ba ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x03ca4d1f ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x076ea98b ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x0a366616 ceph_con_init EXPORT_SYMBOL net/ceph/libceph 0x0a3c60e0 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0x0e5d5de6 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x101182ec osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x128e14a8 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x128e95ff ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x132d2036 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x1c4cab91 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x0b8d9679 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x0f446014 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x110258fc ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x1311b604 ceph_osdc_update_epoch_barrier EXPORT_SYMBOL net/ceph/libceph 0x1cba3f20 ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0x1df466f5 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x1f26ebd6 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x1dd187a3 ceph_check_fsid EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x21acdd7e ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0x25bf6b67 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0x2f9f23e6 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x2ff577c6 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x21aa3a49 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x261a18c3 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x2ad5f6b7 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x2d3a82c2 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x302e86a4 ceph_client_gid EXPORT_SYMBOL net/ceph/libceph 0x317ac0ee ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0x31d40209 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x33c10488 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x34e93003 ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0x3522979c ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x35d35630 ceph_osdc_new_request EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x39a6e10d ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0x3c09b148 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x3932f0f6 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x39502545 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x3a0a968a osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x3b21a2f7 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x3b78e2dc ceph_msg_data_add_pagelist EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3cca0b2d ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x3d011463 ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0x3d0f2a7c ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x3e2bffd5 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x3e784789 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x3ec2f6b8 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x4094926c ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x40cc93b8 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x40d57f0a ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x4361f58f ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x43b95036 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x44feba17 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x42cf51b9 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x43dff4b8 ceph_compare_options EXPORT_SYMBOL net/ceph/libceph 0x45044d94 ceph_find_or_create_string -EXPORT_SYMBOL net/ceph/libceph 0x45154024 ceph_con_keepalive EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x47f5a24f osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x491a8d72 ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x4e8900fe ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0x4f9d4ba6 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x5045824e ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x4aeba754 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x4c5611bb ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x4cf84851 ceph_create_client EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x50827333 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x56e03f6d ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0x575a0407 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x5280354d ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x5708c36e ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x57261363 osd_req_op_extent_osd_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5916ac00 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x5a09f345 ceph_monc_get_version_async EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x6128b5b2 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x5ede5b4e ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x6152fa6b ceph_con_close EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x63de9fb8 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x63e6513a ceph_msg_new 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 0x647b2df7 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x64add997 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x66fab93d ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0x6804271e ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x68bf4221 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x651995a3 ceph_osdc_copy_from EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6b6aba59 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x6d086bdf ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x6d595fe2 ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0x6dbd4d57 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x6bd302cf ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x6d1504b2 ceph_osdc_cancel_request EXPORT_SYMBOL net/ceph/libceph 0x6edb8cb7 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0x6f9aa71d ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x71fa07de ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x759cad9b ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x7c1a4c64 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x7d7338fb ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x80fed8db ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x81ff1846 ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0x829e9b2e ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x830a33d3 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x8448c63e ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x6f79eebc __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x6fd68b99 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x73207137 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x73c5c89a osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x74072f01 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x75432b3b ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x77352d78 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x77992d93 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x7a3237ff ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x7b67b79d ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x7df32717 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x8547f07f ceph_osdc_sync EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x8a05f547 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x8b8575ab ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0x8b9f39e7 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x87dc1a72 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x881b9a86 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x889f683f osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x8afad745 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x8b971208 ceph_auth_handle_svc_reply_more EXPORT_SYMBOL net/ceph/libceph 0x8bd5050e ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x8c477ec7 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x8d6cb953 ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0x8ff441d3 __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x90009b89 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x9304dccd ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x98107117 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x8dced8b2 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x8f68ce26 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x934efa92 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x9631b5f7 ceph_msg_get EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x9ae4dee4 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x9b7a97be ceph_osdc_clear_abort_err EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9fe3e667 ceph_msg_put EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa247b09f ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa32febed ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xa37de1d0 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xa3ea3045 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xa6574242 ceph_auth_invalidate_authorizer EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers EXPORT_SYMBOL net/ceph/libceph 0xa6a242f7 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0xa8ea3d97 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xacfaaa2c ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xad339d3e ceph_auth_verify_authorizer_reply EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb045df59 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0xb149ba50 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xb4943ed3 ceph_parse_param 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 0xb7217c86 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xb5adef06 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xb5fbb106 ceph_osdc_watch EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb7e46fd2 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xb8286145 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xba5cb586 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xba889b16 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xb8d8f0fb ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xb9b730ac ceph_msg_data_add_bvecs EXPORT_SYMBOL net/ceph/libceph 0xbae00da7 ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0xbbf1b71d ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0xbcb4f3ce ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0xbd45c84b ceph_auth_handle_bad_authorizer EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xc1eeb5b4 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xbe633da2 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xbe9a73c8 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xbeebefd8 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xbfc85e1a ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xc04a3c0d ceph_osdc_wait_request EXPORT_SYMBOL net/ceph/libceph 0xc20c8ca8 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xc4ea4020 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0xc78ad919 ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xc9e06067 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0xca37f1cb ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xc3c38397 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc5d681d9 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xc66e1d23 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xc81455cb osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xc9bed7fd ceph_parse_param EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcba96e1c ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xd215da00 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd21c0d98 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xd287b14a osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xcdbaae8b ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xd040bda6 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xd0b35f6e ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xd28149b2 osd_req_op_extent_update EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd99ba12d ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0xda200bf2 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0xdf6e68f8 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xd89b8ae7 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xda583a52 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xdb9929b6 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0xdcbac26c ceph_osdc_get_request 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 0xe04da8bf ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0xe28ee217 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0xe90ed3b9 ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xea73a360 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xe12c163c ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xe138ae2e ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xe3546ee9 osd_req_op_extent_osd_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 0xf254297e ceph_addr_is_blank -EXPORT_SYMBOL net/ceph/libceph 0xf4f1f918 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xf55746a4 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xf3d2b97a osd_req_op_cls_request_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0xf562aab7 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xfa9e99e9 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xfc8b0cd6 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0xfd054f2d osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3410bbb6 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xe4b95551 dccp_syn_ack_timeout -EXPORT_SYMBOL net/hsr/hsr 0xb5cccf0c is_hsr_master -EXPORT_SYMBOL net/hsr/hsr 0xe8c6124c hsr_get_version -EXPORT_SYMBOL net/ieee802154/ieee802154 0x01fbbcf1 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x6eac6480 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x709ba23a wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x77a9f3aa wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0xd28073e9 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xe4a81ec6 wpan_phy_free +EXPORT_SYMBOL net/ceph/libceph 0xf9097352 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0xf9185613 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xfc97a530 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xfcacb422 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xfe9e4c92 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xffa8a1f0 ceph_copy_to_page_vector +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x386e4f58 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x715a02d2 dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x099b436d hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0x4f7ed5eb is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x08563f07 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x433cb289 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x50289948 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5ef33f5f wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x849f3362 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe1965c32 wpan_phy_unregister EXPORT_SYMBOL net/ipv4/fou 0x19741ae4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x2fb1a772 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xc82aebe7 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x6d9dd507 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x98594ce6 __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xff1adff3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xe4d2000b gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x021f26af ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9fc76bdc ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc1aac384 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xff21b6ff ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x0ec0dd5b arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2389fbbe arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x34d05081 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe50c0bb2 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x082ffb37 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3047a9b0 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7cb095bb ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa470e5eb ipt_do_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x832186e9 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xeb8b6b0b xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x773978cd udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1739d89f ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x25584314 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x40641995 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4c15cae5 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x67c22d51 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6ba5ee9e ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6e4badb8 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xaafdfc5d ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb8bb2f6c ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x04d87fb1 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8c6c247e ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8e0aa7ac ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9c7a210d ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0xe582677e xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xe6bd9e27 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x5a9802ea xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xb81030c4 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/lapb/lapb 0x09f67d7d lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x120ee3c8 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x2314085a lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x29adb1d6 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x5a66c810 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x6f78d99d lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x7d045065 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0xe91356fc lapb_setparms +EXPORT_SYMBOL net/ipv4/gre 0x5c6d4125 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3301a01e ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x54f000c7 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5eced988 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6b03e357 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4d39e0db arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa09bc38a arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa7273d45 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa8f30f00 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2097c946 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3c5807e9 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd463db55 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfe1f481c ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0xc10e1fe5 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xccf3f398 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x085de88b udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0bc03682 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2f4e9c7f ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x54a480d0 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x86aa7c40 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xab07d55a ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc8f6a842 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe8bcd5f8 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf0e0d51a ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xff709be6 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xa7abced3 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xca2e9adb ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd86fc1c2 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xfeb7cda6 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x7eb5a621 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xacd21a3e xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x6982e5d4 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xb58120c1 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x3828fee1 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xa4f7e761 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xaf9ddfad lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xb0aaeb95 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xb7230dad lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xc9819a7a lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xd4106815 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xe5277cd3 lapb_unregister +EXPORT_SYMBOL net/llc/llc 0x2b25e972 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x312dd3e2 llc_build_and_send_ui_pkt EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x464e5962 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x4f9a0bfb llc_add_pack EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x8b66de51 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x9cd3483a llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xa9a013f4 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xd8913da9 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xfaf892d2 llc_sap_open -EXPORT_SYMBOL net/mac80211/mac80211 0x004c88cd ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x01f7523d ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x04634477 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x0543c8fa ieee80211_nullfunc_get +EXPORT_SYMBOL net/llc/llc 0x55cb0ea1 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x5b9c4e2e llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x8299e72f llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x8eaa4118 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xc864c97d llc_sap_find +EXPORT_SYMBOL net/mac80211/mac80211 0x03b49e0f ieee80211_sta_set_buffered EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x06edec77 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x06f07669 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x0ca38ff3 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x0d5c4c1b ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x0fc77571 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x11ff6335 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x15522af0 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x16055419 ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x16392edb ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x1640bb23 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x17d0bb47 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x0cc2b328 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x0d4626bb ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x13e17166 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x14047c48 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x14dcdca0 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x170fb56a ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x178cede4 ieee80211_unreserve_tid EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x1962b472 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x1937118d ieee80211_free_txskb EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1a56a6a0 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x19fdc0e9 ieee80211_beacon_get_tim EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x1c92736d ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x1f384c1b ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x2793afda ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x2c5bf199 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x2d35273a ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x31121ddd ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x317af9b0 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x34ae98d1 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x34ca4858 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x3610bced ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x36508855 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x3756d445 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x39ed427f ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x3c07365b wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x3dc5a1ac ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x3f1af4a4 ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x42ca59a2 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x42e6a186 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0x484b9524 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x492b797c ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x4bd2156c ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x4ea4bbea ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x4ebab207 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x4fc61ad8 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x515afeca ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x5669f93d ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x57d64a09 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x5afe85de ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x5b41ce2d ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x5e9cc290 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x6078e801 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x764859fc ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x777ba30a ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x7e97f0d5 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x82b7f43c __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x88d467ce ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x89ebe276 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x8be83691 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x949e8e12 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x95afd3ee ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x1c549235 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1f1358b3 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x264856d5 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x29ae5312 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x2c87d3bd ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x2ee87f21 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x3240ba24 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x35a54a00 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x38e6495d ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x3ecd8102 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x46262d7b ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x48854bcb ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x4a783a68 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x535f9c30 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x548b29e4 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x584caf6a ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x5b54cc1a ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x5c846c45 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x5e6137c9 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x5fb829d1 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x670f291e ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x674aae98 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x67aa5737 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x6a36204c ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x6f1fe547 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x6fd22583 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x703a6702 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x73d7f661 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x74958a52 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x759df0e0 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x75d7adff ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x7bb2e04d ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x7bebe56c ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x7cb5fe5a ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x7ec93437 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x8304e22c ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x83e33878 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x87bb82b1 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x87f3c20b ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x884dc5eb ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x8cb746d8 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x8d72cd3d rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x928d792e __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x938e5c29 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x9614b24a ieee80211_sta_ps_transition EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x99834b5c ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0x9a49b0e9 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x9b7c3f2a ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x9cecaf47 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x9daba6ba ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xa3036169 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xa3d72fe7 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xa7b13302 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xa83c2cf1 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xaee81ce4 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xb26efc39 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x99727cca ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xa09bbe3e ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa0bd672a ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa1ac4884 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xa52930df ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa60757da ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xa93cf259 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xa9791ee1 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xaf3e80d9 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xb05136b8 ieee80211_find_sta EXPORT_SYMBOL net/mac80211/mac80211 0xb36a08ca ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xb6106677 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0xb6f21d54 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0xb75276e6 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xb83b8984 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb9f53ee0 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xbb41730a ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0xbc899c83 ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xbd278aa8 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xbd7775d4 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xbdb3098d __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xc394cc7a ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xc86126b6 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xd01dcb4c ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xd0d857a1 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xd60830b9 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xda58f665 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xdbbc1a34 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xdde5bcc4 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xdf0266ea ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xe0235192 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xe4211375 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xe569f746 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xe60ba648 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xeb52ed38 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xf1e0b191 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0xf1fa7b39 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xf2573560 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xf2bc4189 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0xf8871e15 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xf8a0fec2 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xfcf87d01 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac802154/mac802154 0x0b9c9009 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x1945f589 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x349b4964 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x4a0d2215 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x7013b264 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x808b08a8 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xd30ff0c9 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xf40e3bb8 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1e87b6be unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x357698ee ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4180964c register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4afae7b7 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4f00b6a9 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6b68f9b7 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x72b6e23e ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8b2356fe unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8d03380f register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x97f68ee3 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa2b4e12e ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb20321b5 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc74b8ac2 ip_vs_new_conn_out +EXPORT_SYMBOL net/mac80211/mac80211 0xb59af1ae ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xb5ae7f16 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xba189592 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xba778f77 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xbd025001 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xc0ab8e78 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xc2cc7ab9 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xc499339f ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xc4a30ce7 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xc7b5e513 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc8034543 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xca625faf ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0xd3e39b05 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xd4ee36ec ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xd6dc1eb7 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xd842e7f3 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xd8f5ffc5 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0xd932b2c3 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xda5a858b ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xddef1796 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xdeb7bf0c __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xdfc70e6e ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xe31f2c7d ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe474fd96 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xe8793c82 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xe8e094f0 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xf1f54884 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf3611bae ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xf52ce955 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xf56fd8eb ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xfc66d167 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfcb7a296 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xfce499b4 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xfde7215d ieee80211_rx_list +EXPORT_SYMBOL net/mac802154/mac802154 0x11b97a6b ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x4de83dff ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x7b2532f3 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x8ab5c609 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xaa1a7122 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xb30d3021 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xe232d316 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xf4664db2 ieee802154_unregister_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x07dc7181 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0ab7fd60 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x113a00b4 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x30d69e69 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x34cc7eaf ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x587f4615 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6507e7ca ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6619b200 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7e1a3efb ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x82e4f953 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa006e939 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb1cb0820 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbf5de6b3 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd20d18a5 unregister_ip_vs_app EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xec0b8f11 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfa632b5c register_ip_vs_app -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x185d7a9f nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf4ec2944 register_ip_vs_scheduler EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xec104ef7 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x1bbc17eb nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x50304703 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x769bd6ab nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xa3007322 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x49ece372 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x66cb2155 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x8fb1281a nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xf5883e9d nf_nat_follow_master EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x0c3726df xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x1c0f9925 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x25a42ac1 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x272447a4 xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0x3075a3b8 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x29c2b67e xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x43f4108b xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x44127408 xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x6c49a47e xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x7d6b6241 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x7eafdb16 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x62c6aae5 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x858380c9 xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xab69ab0d xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x9ab34e79 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xa1251ea1 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xac0383b4 xt_register_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 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xedf275fa xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xe5c1fe87 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xf0006817 xt_find_match EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset EXPORT_SYMBOL net/nfc/hci/hci 0x03f71c62 nfc_hci_set_clientdata EXPORT_SYMBOL net/nfc/hci/hci 0x07336b07 nfc_hci_get_param @@ -5412,238 +5301,238 @@ EXPORT_SYMBOL net/nfc/hci/hci 0xad7b8330 nfc_hci_connect_gate EXPORT_SYMBOL net/nfc/hci/hci 0xbfd7065b nfc_hci_disconnect_all_gates EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol EXPORT_SYMBOL net/nfc/hci/hci 0xe7352d39 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x02638933 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x0545a571 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x0c34b1ae nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x130f0d6e nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x1de5faa3 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x2065fe73 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x21c7ac3c nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x23d30bd3 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x24944a74 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x2a2e3d7c nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x560a5099 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x65756604 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x6d043d1c nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x734cc846 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x739803b3 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x749de30d nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x8d2c3be2 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x924a6251 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x94febfd3 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xa1bb2420 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xac8d0213 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xacb66963 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xb20fb8c4 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xb8eb89be nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x022546e7 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0b74fc4a nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x0dd3aef1 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x11626919 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x128eec3b nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x12e6e094 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x18297aa9 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x217d4113 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x2231fd5b nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x27aa38ee nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x55b05d36 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x655262cb nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x69780c29 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x77338769 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x774d21b5 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x82e0d6dd nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x92e1329e nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xa05fcde2 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xaba1525a nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xacb173f5 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xae623d04 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xb19420da nci_hci_open_pipe EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xd16ffecd nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0xd5f9bb99 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xe21ac236 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xe76488c9 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xe8027fba nci_prop_cmd -EXPORT_SYMBOL net/nfc/nfc 0x05f9ab6a nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x09a338fb nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x0d8abe2b nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x12ff3a94 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x24814ad8 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x31b5ab81 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x3437c07f nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x373d8960 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x39befafd nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x44befa6d nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x4a3a6f30 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x55ce05a3 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x576cc2a7 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x5939c73d nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x66cc3bfd nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x7379720a nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x7e7d359f nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xa658cb19 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xbd20e1b5 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xc5341c6c nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xd78a9ed0 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xdb01682a nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xe7da9fb3 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xea025e3e nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xea27e16b nfc_tm_activated +EXPORT_SYMBOL net/nfc/nci/nci 0xc4c3dc33 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xc888effa nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xd1a57a1d nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xe09f6e83 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xe2a92e6d nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf7bd959b nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xfb1e4cb4 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nfc 0x08c57937 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x097a778b nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x0daa954a nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x27fbed79 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x2dd11676 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x4e05373b nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x4fa5c11b nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x5bb52853 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x618489e8 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x680b41f6 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x7d5106a8 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x7de24381 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x82e6e726 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x94e69954 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x96fdd149 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xac2db5ec nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xb2058f55 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xb6618ab5 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xc2e9f1e0 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xc78d3c47 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xcd3a82ff __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xeb3ac43e nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xec1fcb36 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xec2a187d nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xf5109b2d nfc_se_transaction EXPORT_SYMBOL net/nfc/nfc_digital 0x27f9936d nfc_digital_unregister_device EXPORT_SYMBOL net/nfc/nfc_digital 0x809e65d5 nfc_digital_allocate_device EXPORT_SYMBOL net/nfc/nfc_digital 0xcab00b75 nfc_digital_free_device EXPORT_SYMBOL net/nfc/nfc_digital 0xef505070 nfc_digital_register_device -EXPORT_SYMBOL net/phonet/phonet 0x1416d4ad pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x2da564b9 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x3ee4f014 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x4f7f387c phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x7a7e4f13 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x9ee87ce3 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0xb5507ff6 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xf2ebd7b9 phonet_header_ops -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0f3a4360 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x12eb57b2 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x141081ed rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2c357904 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/phonet/phonet 0x226a0749 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x6d746163 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x7c67a0db pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xbc547f40 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xc10a45b1 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xc905da88 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xd3b65917 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xdb9d888d pn_sock_hash +EXPORT_SYMBOL net/rxrpc/rxrpc 0x200c68dd rxrpc_kernel_set_tx_length EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3a04b9e2 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3dfcb74a rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3e55f2fa rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x510c95b4 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x52635174 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5c43f3a9 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7c3dd6cb rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9f0f17f4 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbd203275 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc80b666e rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xcdef4a5f rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0xcf743aee rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf81c151d rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf923a9c7 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/sctp/sctp 0xadd6ba57 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7c521e34 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xbe29a7c6 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe641a8f7 gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x51f13b8c svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x662ce7d9 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x6eef1e66 get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0xed188ba9 xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x14f944ae tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x914e4340 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xc9a2d6a0 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0xce3a5681 tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0x85ae7718 tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x0052b007 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x070a23b3 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x08a76179 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x0a18feaf wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0x0bc11779 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0c400d4a cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0efc8231 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0fb21512 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x100dd095 ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x10959ce5 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x14cd8377 cfg80211_external_auth_request +EXPORT_SYMBOL net/rxrpc/rxrpc 0x358ce2ae rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x461d9df3 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4900bd5e rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x58c4d6c3 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5bf5662c rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5c2c4432 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x61051f20 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x62192691 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6afe28af rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8877f4ec rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9b30b6a2 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xab1d13cb rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbbc6922c rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc4d1ea43 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xeedad859 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf4aad867 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfe532118 key_type_rxrpc +EXPORT_SYMBOL net/sctp/sctp 0x067e7f50 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x0f93e860 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd4ee668c gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe03fc544 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x33dbc162 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x3689ea9c xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7a9e8bcb get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0x9bb48f81 xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x042c72f5 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x25673e68 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x3c4d9cb9 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x5d0c2335 tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0xa312ddc2 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x00f087ae __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x0369108d get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x03fb48ff cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x05b603c9 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x0696eb6e cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x06ea069d cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x08aa8734 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0e89dd0d cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x133fb574 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x15393685 __cfg80211_alloc_reply_skb EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x15b5a3a8 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x184b2d44 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x17c7f8fb cfg80211_ready_on_channel EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x18ae0133 cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x1a38c9b6 cfg80211_sched_scan_stopped EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1e70b50f cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x21585f3c cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1f531570 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x21225462 cfg80211_report_wowlan_wakeup EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x25ebf187 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x26c7996d cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x24e32f77 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x26140f59 cfg80211_bss_color_notify EXPORT_SYMBOL net/wireless/cfg80211 0x27efff25 ieee80211_s1g_channel_width -EXPORT_SYMBOL net/wireless/cfg80211 0x2937fd7a cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x296d2593 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x28dbe3ac cfg80211_bss_iter EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x2acf0be6 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x2d0691e4 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x2d3f36f7 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x32957c64 wiphy_read_of_freq_limits EXPORT_SYMBOL net/wireless/cfg80211 0x38cb594a ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x397d277f cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0x3d89c6b8 cfg80211_nan_func_terminated EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3debfecd cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x3e1cde87 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x40e2e29f cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x43a83e75 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x3f3baa21 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x40c7c51f wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x4224834e cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x432e7efc cfg80211_sched_scan_results EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x47279d48 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x48836187 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x4d2b717d cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x4f36809f cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x54e115ed wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x56f1ddb4 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x58484398 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x5ab9a46a cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x5e4a8b0b cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x5e812bca cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x5f58b699 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x627be1be ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x64d86187 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x64e147e9 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x451290e2 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x4a3c867a cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x4b7890aa cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x4f5a1c30 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x51860988 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x56036eb5 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5c0de905 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x621c950c cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x62cb150e cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x647dddc0 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x64db782b cfg80211_get_bss EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x68a98c08 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x68d4a170 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x6555d0e8 cfg80211_michael_mic_failure EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6ae3094f cfg80211_report_wowlan_wakeup EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6c46d999 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x6ec891bc cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x72f18908 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x7304bf50 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x7559f5bd ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x770083c7 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x7848eeba cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x7857a1da cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x6cfbe0d2 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x6ff5bcd8 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x70429de6 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x7497384b cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x7966a4a3 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 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7d7e4585 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x7d983f3c cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x7dab557d __cfg80211_send_event_skb EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x80b41ac8 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x806c2f5c regulatory_set_wiphy_regd_sync EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x83883a60 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x85c2bb9f wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x86ba6f86 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x877e84f2 cfg80211_ibss_joined EXPORT_SYMBOL net/wireless/cfg80211 0x8b24e88f cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x8f2cdeb3 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x8be5a9da cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x8c1b0d11 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x8d45bc7c wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x8e0f77c6 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8f63ee6a wiphy_apply_custom_regulatory EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x93130ad4 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x93caec0b cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x948429b6 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x993fad17 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x9c54c1d8 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x9098077e regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x91b8ccec cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x95a5ffca cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x99fb3470 cfg80211_report_obss_beacon_khz EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0xa4fdd3b1 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xa58cfcbb freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0xacf9430c cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xae68e7fc cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0xaebcd5f3 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xb55fd194 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0xb59b4a88 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xb5bed003 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9db10485 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x9e3435c2 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x9e87319f cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xa0afa60f cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xa21c5e56 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xa81b17f8 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa898dc6f wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xa99bfaf3 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xad109578 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xad56ac06 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xaf9610c9 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xb69fc028 cfg80211_get_station EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xb82d4d5a wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xbbb5541f cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0xbbb6e9fc cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xbbf74422 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xbdbf3ebf cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xb87aeccd cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xbb7f50df cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xbb943171 cfg80211_classify8021d EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc478482b cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xc480985c cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xc32ad2a0 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xc3d7cddf cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc425ac94 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xc4a62412 cfg80211_gtk_rekey_notify EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xc63ddb52 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc6a57bd4 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xc6f7997d cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xc7dc1a87 cfg80211_tx_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xce80a902 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xd06ed701 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xd1b5512b cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xd22cac65 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0xd23020ff cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xd147d580 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd3fa58e8 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xd48fd627 cfg80211_chandef_dfs_required EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd56f9d21 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xd6cc594f cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xd985d179 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0xd65a5202 ieee80211_data_to_8023_exthdr EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdd7094f4 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xe9031661 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xeb821c10 regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0xecdc8762 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xece387ba cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xdcff32f6 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xddbf1c79 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xddc2763a cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xddccc868 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0xde9c8b00 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xdf0779b2 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe057d16f cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xe185e57b cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xe5cd4454 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0xe8bba434 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xebe57169 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xedbee5f6 cfg80211_tx_mgmt_expired EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xef768309 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xeff3ad6f cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xf2fca907 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xf479ad78 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xef291c31 cfg80211_inform_bss_data 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 0xf9ae4154 wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0xfd32dc45 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xfd58c64a cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0xfe5b7ea0 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xff88f0e3 wiphy_register -EXPORT_SYMBOL net/wireless/lib80211 0x00a2ae39 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x2a88d660 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x5950e795 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x5b4279b2 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x96b87cff lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xbc7f7ed1 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/cfg80211 0xf9ed8dc1 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xfc8e42c8 wiphy_register +EXPORT_SYMBOL net/wireless/lib80211 0x5b63a30e lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x6f7d0501 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x7f28bebf lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xbd9d243d lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xf3d89897 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xfeb44826 lib80211_crypt_info_init EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x2c4c8883 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 0x298c4538 snd_seq_event_port_attach @@ -5728,26 +5617,26 @@ EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x40f24185 avc_general_get_plug_i EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4a137500 cmp_connection_reserve EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5355e67e fcp_avc_transaction EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x628d59d0 amdtp_stream_pcm_abort EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x633fc6a7 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x643d72cd amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x68fad9f6 amdtp_stream_pcm_abort EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6d9fe37b iso_packets_buffer_init EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7b0515a0 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x81539ba5 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98f09716 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x86fa3b0e amdtp_stream_set_parameters EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9b643be7 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa378606f amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xac12e43d amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb2331004 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9c660962 amdtp_stream_add_pcm_hw_constraints EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb98d626f cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbcbb6476 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc965befe amdtp_stream_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcb24cbfd fw_iso_resources_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcda301cf fw_iso_resources_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd085a678 fw_iso_resources_allocate EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd0d41294 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd4204326 amdtp_stream_init EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdc476478 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdd32088c amdtp_stream_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe32211f7 snd_fw_transaction EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeac09d9b fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xec545147 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xed9694eb amdtp_stream_pcm_prepare EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf8c74aed cmp_connection_update EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5509b544 snd_ak4113_suspend EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xb44bb205 snd_ak4113_resume @@ -5813,7 +5702,7 @@ EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe95d9653 oxygen_write_ac97 EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf52bd2b1 oxygen_write8 EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x73b55969 adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xf2dee4f9 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x4f4edfd7 wsa_macro_set_spkr_mode EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x43332eb2 pcm3060_regmap EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x839286a4 pcm3060_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw @@ -5824,163 +5713,165 @@ EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xaa643af3 aic32x4_remove EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xc8aff81a aic32x4_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x80f1cf5d aic3x_remove EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xe1821f68 aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x2d0e8bef wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x28498cd4 wcd_mbhc_start EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 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 0xa8b9af01 wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xaed0f9f7 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/codecs/snd-soc-wcd-mbhc 0xea98aca5 wcd_mbhc_start -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xf7b7507f wcd_mbhc_init EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x4cf616de mt8192_afe_gpio_request EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x7f42c686 mt8192_afe_gpio_init EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x02822435 q6afe_vote_lpass_core_hw EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xe2b9639c q6afe_unvote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x327b4f24 qcom_snd_parse_of -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x05436cf2 snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x05a16c6f snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x09ae9330 snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0e17acfd sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0ecedce5 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x103789d2 snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x177225ea snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x207b4624 snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2236140d snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23ade0d3 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x296b721f sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2a3567b6 sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2f8bb27e snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x35db935c snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4002d51f sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x419bb8fe sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x42334cb6 sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x44485347 sof_io_read +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0xc7627b6a qcom_snd_parse_of +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x03efc8d7 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x09ac7bdf snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0f99bc9f snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x19babd7d snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x19ec96c5 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x20bf5b65 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2d4f9107 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3a44a299 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3dd54672 snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x40d5fff8 snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x455d1025 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x45bc4f2e sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x476fe9b7 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4962369e snd_sof_dsp_mailbox_init EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4a5deb15 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5071db8e snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x59196a6a snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x635e7173 snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x695c7528 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6cb10553 sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x70155a80 snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4aba90f2 snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4f9f6998 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5555944d sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x62e517dd snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x63270055 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x69e45acd sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6bc9d085 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x716205bd snd_sof_ipc_reply EXPORT_SYMBOL sound/soc/sof/snd-sof 0x779c8ae6 snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7e4bad74 snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7fec8d73 snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x87edd529 snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8b4c9a08 snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8d02f776 snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x923fc106 snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x786cb0f0 snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x788782b0 snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8149749c sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x82b90765 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x85c29aa3 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x88665d37 sof_machine_unregister EXPORT_SYMBOL sound/soc/sof/snd-sof 0x953af765 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9b2fcd54 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9f388f2a sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa2e79ded sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa35dec8d sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa3c5a79f snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9c79d49a snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9dddde73 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa59c0260 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab1ea732 snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xabb23c03 snd_sof_release_trace EXPORT_SYMBOL sound/soc/sof/snd-sof 0xac804eca snd_sof_runtime_resume EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad055b2c sof_ipc_tx_message EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb0f704ff snd_sof_pcm_period_elapsed EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb287d903 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb507244b sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb82d7c21 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc1ff12fe snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xba831d64 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc00d3bfd sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc0cace41 sof_machine_check EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc6ed021b snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc7927bf0 snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xce0cf8a9 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcb4f9462 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcd3e88a1 sof_block_read EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfe08446 snd_sof_device_shutdown EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd2a61496 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd3e93e5b snd_sof_fw_parse_ext_data EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd927eca8 sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdbd13c15 snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdc7f78b5 sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe0e2696b snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd9e3b7f4 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdd47d72d snd_sof_load_firmware_memcpy EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe3eb0829 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe486f3fa snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe57ee993 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xebc2b038 sof_mailbox_read EXPORT_SYMBOL sound/soc/sof/snd-sof 0xec0a56fd snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfcb5afc9 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf05a6e01 snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfd75ce0b snd_sof_dsp_update_bits_unlocked EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfe5b533d snd_sof_create_page_table -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xff7965ed snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xffd2a91e snd_sof_load_topology 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 0x98bd65ad __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 0x001e68a0 xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x001ee95a imx_ssi_fiq_base EXPORT_SYMBOL vmlinux 0x002efd55 touch_atime +EXPORT_SYMBOL vmlinux 0x002fc37e dcb_getapp EXPORT_SYMBOL vmlinux 0x0038ae33 pci_bus_size_bridges EXPORT_SYMBOL vmlinux 0x003d3eb6 security_binder_set_context_mgr EXPORT_SYMBOL vmlinux 0x004d43ae md_bitmap_sync_with_cluster EXPORT_SYMBOL vmlinux 0x004f7bfa backlight_device_register -EXPORT_SYMBOL vmlinux 0x008b8572 tcf_em_register +EXPORT_SYMBOL vmlinux 0x008ae22d jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0x0091e744 fs_param_is_bool -EXPORT_SYMBOL vmlinux 0x009a8845 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x0096aebf ipv6_setsockopt EXPORT_SYMBOL vmlinux 0x009e4750 clk_get EXPORT_SYMBOL vmlinux 0x00a813ec fscrypt_ioctl_set_policy EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00c59fca may_umount_tree -EXPORT_SYMBOL vmlinux 0x00cd950f qdisc_put +EXPORT_SYMBOL vmlinux 0x00cb6998 netif_schedule_queue EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00e511ad devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x00eaf7c6 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x00ef1805 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x00efd951 qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0x00f4f859 pci_map_rom -EXPORT_SYMBOL vmlinux 0x00f61492 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x00fbaa92 wake_up_process EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0100627b inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x010ae4fe scsi_print_command EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x0119f3fc pskb_extract EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set -EXPORT_SYMBOL vmlinux 0x0146ff8c xfrm_state_lookup EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc -EXPORT_SYMBOL vmlinux 0x01535b6c scsi_unblock_requests EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x015c02a3 sk_stream_error EXPORT_SYMBOL vmlinux 0x015c58da proc_symlink -EXPORT_SYMBOL vmlinux 0x0160a3bb dev_add_pack +EXPORT_SYMBOL vmlinux 0x0162df05 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x01659231 wireless_send_event +EXPORT_SYMBOL vmlinux 0x016ef06f key_type_keyring EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x0176c91a inet_proto_csum_replace4 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 0x018a9853 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x018ff572 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x018c72fc page_readlink EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x019b2a16 lock_page_memcg EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode EXPORT_SYMBOL vmlinux 0x01ad4db4 scsi_is_host_device EXPORT_SYMBOL vmlinux 0x01b6b987 iget_failed -EXPORT_SYMBOL vmlinux 0x01bd761b finish_no_open +EXPORT_SYMBOL vmlinux 0x01b9c8f6 filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0x01bf78b5 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x01bf921f netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x01bff916 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x01c6a28b sock_alloc_send_pskb EXPORT_SYMBOL vmlinux 0x01d437cb pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x01d65053 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x01dc4d39 poll_initwait +EXPORT_SYMBOL vmlinux 0x02092993 dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x020dcbcb __dst_destroy_metrics_generic EXPORT_SYMBOL vmlinux 0x0214b4dc shrink_dcache_sb EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv EXPORT_SYMBOL vmlinux 0x021a1b8c mdio_device_create -EXPORT_SYMBOL vmlinux 0x0249bffc generic_file_mmap +EXPORT_SYMBOL vmlinux 0x0273ad46 mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027c164e phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0x02824b97 simple_transaction_set EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL vmlinux 0x0294dfb0 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x028c7cac reuseport_add_sock EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x029f9ed0 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x0297016b __breadahead EXPORT_SYMBOL vmlinux 0x02a74bd6 fs_param_is_enum EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02c845c4 register_shrinker -EXPORT_SYMBOL vmlinux 0x02db113e build_skb +EXPORT_SYMBOL vmlinux 0x02cf2e58 vme_irq_handler EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies -EXPORT_SYMBOL vmlinux 0x02ec82c7 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x02ed01ad unregister_filesystem +EXPORT_SYMBOL vmlinux 0x02ed1e06 inet6_del_offload EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02f95503 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x02fe550f devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x03043cc4 sock_i_uid +EXPORT_SYMBOL vmlinux 0x03204b85 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x032630a2 tcp_gro_complete EXPORT_SYMBOL vmlinux 0x0326ba97 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x032c417f nf_hook_slow EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl EXPORT_SYMBOL vmlinux 0x033c314e vfs_get_super -EXPORT_SYMBOL vmlinux 0x03406399 mdio_bus_type EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036a60c0 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x036f333c filp_open EXPORT_SYMBOL vmlinux 0x03770f14 mipi_dsi_dcs_set_display_on EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x037bde7d pci_release_resource @@ -5988,454 +5879,473 @@ EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity EXPORT_SYMBOL vmlinux 0x03905120 pci_get_device EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs EXPORT_SYMBOL vmlinux 0x039874b1 simple_rename +EXPORT_SYMBOL vmlinux 0x039b1f80 tcp_sendpage EXPORT_SYMBOL vmlinux 0x03b0a201 __alloc_pages EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all +EXPORT_SYMBOL vmlinux 0x03bee0de vmf_insert_pfn EXPORT_SYMBOL vmlinux 0x03c127e5 cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x03e0920d dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x03f75be7 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x03cba947 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x03eb5167 inet_dgram_ops EXPORT_SYMBOL vmlinux 0x03fba701 wait_for_completion_killable_timeout EXPORT_SYMBOL vmlinux 0x03fc5b91 param_set_invbool EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04059f7b jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x0404c64d peernet2id +EXPORT_SYMBOL vmlinux 0x04093246 bprm_change_interp EXPORT_SYMBOL vmlinux 0x0412acb4 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0x0419591e __sg_free_table +EXPORT_SYMBOL vmlinux 0x041e9889 remove_arg_zero EXPORT_SYMBOL vmlinux 0x042685d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x04373194 vm_insert_page -EXPORT_SYMBOL vmlinux 0x043c58ad xfrm_unregister_km EXPORT_SYMBOL vmlinux 0x04426f14 mem_section -EXPORT_SYMBOL vmlinux 0x0442880f sock_no_connect EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044dac09 __skb_flow_dissect EXPORT_SYMBOL vmlinux 0x044fb722 dev_base_lock -EXPORT_SYMBOL vmlinux 0x0451201c napi_gro_receive -EXPORT_SYMBOL vmlinux 0x046d961e filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0x046f37cb open_exec -EXPORT_SYMBOL vmlinux 0x0471cfca seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu -EXPORT_SYMBOL vmlinux 0x04925171 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x048eba85 free_netdev +EXPORT_SYMBOL vmlinux 0x049d39ea xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x04ac88ee balance_dirty_pages_ratelimited EXPORT_SYMBOL vmlinux 0x04ae0988 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x04b2b103 posix_test_lock -EXPORT_SYMBOL vmlinux 0x04b74882 __inet_hash -EXPORT_SYMBOL vmlinux 0x04b9092b mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x04af637b netdev_lower_get_next EXPORT_SYMBOL vmlinux 0x04c6b4c3 __crypto_memneq +EXPORT_SYMBOL vmlinux 0x04c71dae vfs_fileattr_get EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x04f86447 register_netdev EXPORT_SYMBOL vmlinux 0x04fd85b4 set_security_override EXPORT_SYMBOL vmlinux 0x0508088e ucs2_strnlen EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0528850a flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x0529f5db lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x0543c8a9 pskb_expand_head EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x054db87f neigh_app_ns -EXPORT_SYMBOL vmlinux 0x054e52db dst_init +EXPORT_SYMBOL vmlinux 0x05501fce security_skb_classify_flow EXPORT_SYMBOL vmlinux 0x055bd4f9 fb_blank EXPORT_SYMBOL vmlinux 0x055ca6fa pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x05940506 dev_remove_pack EXPORT_SYMBOL vmlinux 0x05b0caa0 hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x05b3c278 neigh_update +EXPORT_SYMBOL vmlinux 0x05bf1e85 scsi_free_host_dev EXPORT_SYMBOL vmlinux 0x05c75bde mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x05d543c7 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x05d38450 path_get +EXPORT_SYMBOL vmlinux 0x05de2437 ip6_err_gen_icmpv6_unreach EXPORT_SYMBOL vmlinux 0x05e13eb9 ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x05efe621 unlock_buffer -EXPORT_SYMBOL vmlinux 0x060126fd would_dump +EXPORT_SYMBOL vmlinux 0x05f14785 sk_mc_loop EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x06280739 phy_print_status EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x063e0845 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x0640280e __neigh_event_send +EXPORT_SYMBOL vmlinux 0x0637bba8 migrate_page_states EXPORT_SYMBOL vmlinux 0x06482941 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x064f2e0a _dev_info EXPORT_SYMBOL vmlinux 0x0654cdab find_inode_rcu EXPORT_SYMBOL vmlinux 0x065b98e9 snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0x0665e924 mmc_of_parse_voltage EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x066e0e49 xfrm6_rcv_tnl EXPORT_SYMBOL vmlinux 0x06724b38 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x0686af0b ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x068297f6 netdev_lower_dev_get_private EXPORT_SYMBOL vmlinux 0x0687071f __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x0688abed reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0x068f2a87 sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x0691b75e input_get_keycode -EXPORT_SYMBOL vmlinux 0x06ab0814 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x06adf51a vme_new_dma_list EXPORT_SYMBOL vmlinux 0x06b4c404 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0x06d46b8c tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x06edb0c8 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x06f4e677 linkwatch_fire_event EXPORT_SYMBOL vmlinux 0x070692c5 seq_escape_mem -EXPORT_SYMBOL vmlinux 0x070e22ad vme_irq_free EXPORT_SYMBOL vmlinux 0x071809e5 __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x072a582a skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x0728c90a mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0738f5ce netif_skb_features +EXPORT_SYMBOL vmlinux 0x073b0da8 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x073c9afb xp_free +EXPORT_SYMBOL vmlinux 0x0751a880 dev_mc_add_excl EXPORT_SYMBOL vmlinux 0x075a2c33 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x07690c9d inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x0764a0ae ip_frag_next EXPORT_SYMBOL vmlinux 0x076c824b iov_iter_bvec EXPORT_SYMBOL vmlinux 0x076f913a blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x077042ce mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0x077af67c init_opal_dev EXPORT_SYMBOL vmlinux 0x07837b72 register_quota_format -EXPORT_SYMBOL vmlinux 0x078b8476 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x07a71353 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x07973038 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x07a52dc9 locks_free_lock EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07bceae8 block_truncate_page EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cfd7c4 init_net +EXPORT_SYMBOL vmlinux 0x07d09aea skb_split EXPORT_SYMBOL vmlinux 0x07e2c085 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x07e53fc5 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x07f2ed94 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x07f56d8c set_bh_page +EXPORT_SYMBOL vmlinux 0x07e3c27a tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched EXPORT_SYMBOL vmlinux 0x08029f15 bdev_check_media_change EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x080f6603 netlink_set_err EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x0826cb87 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x08279182 phy_mac_interrupt EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x08353dbe of_find_net_device_by_node EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister EXPORT_SYMBOL vmlinux 0x084f9f80 nla_put EXPORT_SYMBOL vmlinux 0x086253a7 ioremap_cache EXPORT_SYMBOL vmlinux 0x086dd881 serio_reconnect +EXPORT_SYMBOL vmlinux 0x0871c8fc cqhci_deactivate +EXPORT_SYMBOL vmlinux 0x087931d0 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x087b1a99 __fib6_flush_trees EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x0893492a vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0x08b55979 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x08b662ac sock_release +EXPORT_SYMBOL vmlinux 0x08a10e8d phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x08b328d1 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x08b88337 tcf_idr_cleanup EXPORT_SYMBOL vmlinux 0x08c4fd32 omap_disable_dma_irq -EXPORT_SYMBOL vmlinux 0x08c837ce dentry_open -EXPORT_SYMBOL vmlinux 0x08cd43b9 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x08cf9d92 migrate_page +EXPORT_SYMBOL vmlinux 0x08d08e96 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x08d18bd5 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x08d317f7 sk_stream_wait_close EXPORT_SYMBOL vmlinux 0x08d66d4b _raw_write_lock_irqsave EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08e4d9ea dns_query +EXPORT_SYMBOL vmlinux 0x08fde57f ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x090541cd dev_change_carrier +EXPORT_SYMBOL vmlinux 0x090b5a62 netlink_net_capable EXPORT_SYMBOL vmlinux 0x0926a555 snd_timer_global_free -EXPORT_SYMBOL vmlinux 0x0948c5f6 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x094d4e01 tcp_check_req +EXPORT_SYMBOL vmlinux 0x092f85ba phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x0936e296 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x094b5f92 sock_rfree +EXPORT_SYMBOL vmlinux 0x094dd785 reuseport_select_sock EXPORT_SYMBOL vmlinux 0x095face3 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x0970dbb3 twl6040_set_bits EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x098c66c8 tso_build_data EXPORT_SYMBOL vmlinux 0x09980086 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x09a787f5 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x09b05898 twl6040_get_vibralr_status EXPORT_SYMBOL vmlinux 0x09b152e2 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x09bfea45 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x09cdcb6d ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0x09ce1e28 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x09b227e6 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x09c940fa inet_register_protosw EXPORT_SYMBOL vmlinux 0x09ce538d drop_nlink EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d783ed xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0x09e13d76 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x09f5836e xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a01b8e3 netif_carrier_off EXPORT_SYMBOL vmlinux 0x0a19299f serio_rescan -EXPORT_SYMBOL vmlinux 0x0a204387 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x0a195c0a __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0x0a20d621 ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0x0a284b38 inet6_add_protocol EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a6d9dce mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x0a7dc4d3 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x0a418824 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x0a4aa241 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x0a57c2d5 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x0a5ed488 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x0a76f354 security_dentry_init_security EXPORT_SYMBOL vmlinux 0x0a7fd69e snd_pcm_set_sync -EXPORT_SYMBOL vmlinux 0x0a84b190 init_net EXPORT_SYMBOL vmlinux 0x0a96b96a kstrtouint_from_user EXPORT_SYMBOL vmlinux 0x0aa09d79 omap_vrfb_map_angle EXPORT_SYMBOL vmlinux 0x0aa1f417 copy_page_from_iter_atomic EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0abf457c netdev_class_remove_file_ns EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all EXPORT_SYMBOL vmlinux 0x0ad4d624 of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x0ad7aa05 skb_dump EXPORT_SYMBOL vmlinux 0x0ae547ed xxh64_update EXPORT_SYMBOL vmlinux 0x0aea8759 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x0af3c01b sock_set_mark EXPORT_SYMBOL vmlinux 0x0b007b5a input_set_abs_params +EXPORT_SYMBOL vmlinux 0x0b02bfea kern_unmount EXPORT_SYMBOL vmlinux 0x0b0c65a4 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x0b18bfcd vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x0b0c8a2c filemap_check_errors EXPORT_SYMBOL vmlinux 0x0b1b939e kmemdup EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b1fb63e mmc_alloc_host EXPORT_SYMBOL vmlinux 0x0b21b847 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x0b3ee850 tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init -EXPORT_SYMBOL vmlinux 0x0b4e0d8a dev_change_proto_down_reason EXPORT_SYMBOL vmlinux 0x0b515e05 mdiobus_setup_mdiodev_from_board_info EXPORT_SYMBOL vmlinux 0x0b617520 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x0b697fce __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x0b6de215 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x0b6ec518 ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0x0b709411 omap_vrfb_release_ctx EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b97f9c7 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x0b7f80f8 mmc_set_blocklen EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk EXPORT_SYMBOL vmlinux 0x0bb19a8b add_watch_to_object EXPORT_SYMBOL vmlinux 0x0bc01a0c snd_card_free_when_closed EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bcb55c7 of_clk_get EXPORT_SYMBOL vmlinux 0x0bcf7feb mount_nodev EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x0c1ac18e follow_up +EXPORT_SYMBOL vmlinux 0x0bf74b34 skb_recv_datagram EXPORT_SYMBOL vmlinux 0x0c25dd8f clk_bulk_get EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c36d0bb flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0x0c492f42 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x0c4e1a30 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x0c48e20a neigh_for_each +EXPORT_SYMBOL vmlinux 0x0c4b8b75 inode_sub_bytes EXPORT_SYMBOL vmlinux 0x0c53c86c pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x0c5d3017 may_umount EXPORT_SYMBOL vmlinux 0x0c63e2bb unregister_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x0c6e9459 __page_symlink +EXPORT_SYMBOL vmlinux 0x0c6610e0 netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0x0c79b713 snd_pcm_hw_rule_add EXPORT_SYMBOL vmlinux 0x0c8916cc fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x0ca035e1 genphy_config_eee_advert EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cb58add vmf_insert_mixed_mkwrite EXPORT_SYMBOL vmlinux 0x0cb5eae1 vme_free_consistent -EXPORT_SYMBOL vmlinux 0x0cb69a5a blk_put_request EXPORT_SYMBOL vmlinux 0x0cc1f46e dquot_claim_space_nodirty EXPORT_SYMBOL vmlinux 0x0cc53502 iov_iter_zero EXPORT_SYMBOL vmlinux 0x0cced82b md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x0cdc63e9 unregister_netdev EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0cdecb0e ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x0ce3bfe5 fget -EXPORT_SYMBOL vmlinux 0x0ced6ea9 ip6_frag_next EXPORT_SYMBOL vmlinux 0x0cf98a52 ram_aops +EXPORT_SYMBOL vmlinux 0x0d050844 flow_indr_dev_unregister EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev EXPORT_SYMBOL vmlinux 0x0d09ee12 param_get_bool EXPORT_SYMBOL vmlinux 0x0d1b54c1 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x0d2a3aae xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0x0d39475c udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x0d3ccb4a snd_pci_quirk_lookup EXPORT_SYMBOL vmlinux 0x0d3d4413 textsearch_prepare EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d55259e msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0x0d602da8 put_fs_context EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d9dc325 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x0dade49a _dev_warn +EXPORT_SYMBOL vmlinux 0x0d9628bf pskb_extract +EXPORT_SYMBOL vmlinux 0x0da368c0 skb_page_frag_refill EXPORT_SYMBOL vmlinux 0x0dba5e9a radix_tree_delete EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dcf01df rtnl_link_get_net EXPORT_SYMBOL vmlinux 0x0de1517d snd_compr_malloc_pages -EXPORT_SYMBOL vmlinux 0x0de76e06 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x0de1ef48 cont_write_begin EXPORT_SYMBOL vmlinux 0x0df3709d devm_ioremap_np EXPORT_SYMBOL vmlinux 0x0df784bb snd_info_create_module_entry -EXPORT_SYMBOL vmlinux 0x0dfafddf ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x0e09fa42 sock_wake_async +EXPORT_SYMBOL vmlinux 0x0dfda0dc inet_add_offload EXPORT_SYMBOL vmlinux 0x0e0ae056 seq_printf +EXPORT_SYMBOL vmlinux 0x0e0c8c1c tcp_close +EXPORT_SYMBOL vmlinux 0x0e1428ad xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 EXPORT_SYMBOL vmlinux 0x0e1c8804 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x0e1f2011 put_cmsg +EXPORT_SYMBOL vmlinux 0x0e1f2c78 ip_frag_init EXPORT_SYMBOL vmlinux 0x0e5f96c9 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x0e62c3db tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0x0e753676 __pagevec_release -EXPORT_SYMBOL vmlinux 0x0e9e66ad inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x0e8a3e70 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x0ea10b55 __skb_vlan_pop EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea47996 pci_enable_device_mem EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init EXPORT_SYMBOL vmlinux 0x0ea7ab9e pin_user_pages -EXPORT_SYMBOL vmlinux 0x0ea7e864 __sock_i_ino +EXPORT_SYMBOL vmlinux 0x0eaddbab gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0x0eb1740b rproc_da_to_va EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free EXPORT_SYMBOL vmlinux 0x0ec6a3a2 param_set_uint +EXPORT_SYMBOL vmlinux 0x0ed0ff69 _dev_crit EXPORT_SYMBOL vmlinux 0x0ed17968 d_set_d_op -EXPORT_SYMBOL vmlinux 0x0ed25a2d inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0x0ede109c snd_ctl_notify EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy EXPORT_SYMBOL vmlinux 0x0f02e864 sync_file_create EXPORT_SYMBOL vmlinux 0x0f06957f allocate_resource EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f186940 generic_writepages EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f31ab49 security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x0f44e8cb __ip_queue_xmit EXPORT_SYMBOL vmlinux 0x0f5ddf2e param_ops_uint EXPORT_SYMBOL vmlinux 0x0f6ac4b3 input_event EXPORT_SYMBOL vmlinux 0x0f6ba1c9 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x0f733123 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x0f74ec41 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x0f838ae9 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x0f843cf4 inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f8fd3c5 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x0f938280 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x0f95f2ce init_task EXPORT_SYMBOL vmlinux 0x0fa749cb pcie_get_mps EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fce29cf mdiobus_free +EXPORT_SYMBOL vmlinux 0x0fc0baa6 ndo_dflt_fdb_dump EXPORT_SYMBOL vmlinux 0x0fd0f592 mutex_trylock -EXPORT_SYMBOL vmlinux 0x0fd7c838 dev_mc_init EXPORT_SYMBOL vmlinux 0x0fd8160c pci_scan_bus EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fe36f61 finalize_exec -EXPORT_SYMBOL vmlinux 0x0fe6c52b i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod EXPORT_SYMBOL vmlinux 0x0ffb63ce unpin_user_page EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm EXPORT_SYMBOL vmlinux 0x10018cb0 __pv_offset +EXPORT_SYMBOL vmlinux 0x1003cc49 nexthop_set_hw_flags EXPORT_SYMBOL vmlinux 0x1006e882 iterate_supers_type EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source EXPORT_SYMBOL vmlinux 0x102a0aaf dquot_transfer +EXPORT_SYMBOL vmlinux 0x102b5203 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x102e3e26 trace_raw_output_prep EXPORT_SYMBOL vmlinux 0x1035a889 of_device_is_available -EXPORT_SYMBOL vmlinux 0x10398177 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x103c23d4 mmc_of_parse EXPORT_SYMBOL vmlinux 0x10428369 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x1060b28d km_policy_expired +EXPORT_SYMBOL vmlinux 0x104d5c52 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x104f9890 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x10646438 kern_path_create +EXPORT_SYMBOL vmlinux 0x106588e5 jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic EXPORT_SYMBOL vmlinux 0x10739f1e swake_up_locked EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x107f5521 unregister_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x108b1925 inode_nohighmem -EXPORT_SYMBOL vmlinux 0x10a6a1f9 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x109b83c2 tcp_shutdown EXPORT_SYMBOL vmlinux 0x10aed096 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x10b99f40 mmput_async -EXPORT_SYMBOL vmlinux 0x10ba1710 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x10ba545c disk_start_io_acct EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0x10c67b41 security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x10d641cd sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x10c9570c dst_discard_out +EXPORT_SYMBOL vmlinux 0x10ca34a2 netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0x10d699df ip_generic_getfrag EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e0ad62 vif_device_init EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range EXPORT_SYMBOL vmlinux 0x10e8a4cf pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x10efef78 unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype EXPORT_SYMBOL vmlinux 0x110bb0b7 fuse_dequeue_forget EXPORT_SYMBOL vmlinux 0x11231e24 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x11343f3f phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0x113c50d2 textsearch_find_continuous EXPORT_SYMBOL vmlinux 0x114255f0 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x11501b4e rt_dst_clone EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x118ff7bc __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch EXPORT_SYMBOL vmlinux 0x11a3c865 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x11aca4c7 zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x11b0d147 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x11b48734 genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x11b6abaa blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x11d6a881 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x11d9b0a4 flow_block_cb_free EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11f94514 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x11f5fa2c ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x11fa2a50 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0x1205f64d udp_push_pending_frames EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x1210b393 mptcp_subflow_reqsk_alloc EXPORT_SYMBOL vmlinux 0x1210fb32 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x12137142 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x1220516d jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0x1222af7f security_binder_transfer_binder EXPORT_SYMBOL vmlinux 0x122626f7 page_pool_put_page_bulk EXPORT_SYMBOL vmlinux 0x12289043 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x12374842 tcf_exts_dump EXPORT_SYMBOL vmlinux 0x123ecf0e jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x1249c5cf phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x1246d1d5 ipv6_chk_addr EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x124fa0ae generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x1260da4e __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x1273a345 tegra_dfll_register -EXPORT_SYMBOL vmlinux 0x12981c9b udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x12a89b06 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x12af5766 file_open_root -EXPORT_SYMBOL vmlinux 0x12b33340 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x124e27c8 __netif_schedule +EXPORT_SYMBOL vmlinux 0x1250c752 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x127920fa mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x12959a42 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x12b5b12e tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x12b8ea29 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0x12be9486 get_ipc_ns_exported EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 EXPORT_SYMBOL vmlinux 0x12d94a5e d_add_ci -EXPORT_SYMBOL vmlinux 0x12e82d6f __bforget -EXPORT_SYMBOL vmlinux 0x12e8632d tcp_mtup_init EXPORT_SYMBOL vmlinux 0x12f19edf __genradix_ptr_alloc EXPORT_SYMBOL vmlinux 0x12f28833 cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0x12f5e6f2 unregister_cdrom EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x13016a13 netdev_adjacent_change_commit EXPORT_SYMBOL vmlinux 0x131c68d6 key_validate EXPORT_SYMBOL vmlinux 0x132128f0 jbd2_journal_start EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data EXPORT_SYMBOL vmlinux 0x1330f1ac tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x13311f89 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x134c9904 xfrm_sad_getinfo EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x13618498 km_report +EXPORT_SYMBOL vmlinux 0x13713c1a inet_select_addr EXPORT_SYMBOL vmlinux 0x1378c6b7 __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x13942320 kern_path +EXPORT_SYMBOL vmlinux 0x13881263 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x13a6ec56 blk_put_request +EXPORT_SYMBOL vmlinux 0x13ab5548 devm_devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x13b7309e snd_pcm_set_ops EXPORT_SYMBOL vmlinux 0x13bdcb66 amba_release_regions EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x13d00070 __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x13e019f6 begin_new_exec EXPORT_SYMBOL vmlinux 0x13eb3031 blk_rq_map_user_iov EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13fca4d1 starget_for_each_device EXPORT_SYMBOL vmlinux 0x1409f35d dm_table_get_md -EXPORT_SYMBOL vmlinux 0x140a4d18 security_inet_conn_established EXPORT_SYMBOL vmlinux 0x140cef8e cmxgcr_lock EXPORT_SYMBOL vmlinux 0x14167b85 devm_clk_put +EXPORT_SYMBOL vmlinux 0x14207c8c jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x14294041 skb_unlink +EXPORT_SYMBOL vmlinux 0x142ad79a __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x143cac5c sock_no_bind -EXPORT_SYMBOL vmlinux 0x144cb9fc tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x14396874 eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0x1451e8e5 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x14527927 dst_init +EXPORT_SYMBOL vmlinux 0x145b2999 netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table EXPORT_SYMBOL vmlinux 0x146ffde9 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x14792f9d tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x147d5a67 generic_file_splice_read EXPORT_SYMBOL vmlinux 0x14ac0d90 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0x14bf72a7 genphy_read_status -EXPORT_SYMBOL vmlinux 0x14c16c60 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x14ace818 path_put +EXPORT_SYMBOL vmlinux 0x14d2d90e __xfrm_policy_check EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x14d68c09 neigh_parms_alloc EXPORT_SYMBOL vmlinux 0x14e3daf4 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL vmlinux 0x14eabb26 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x14ef7cb1 fifo_set_limit EXPORT_SYMBOL vmlinux 0x14fc3049 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0x15113d12 xfrm_state_flush EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight EXPORT_SYMBOL vmlinux 0x152e0ff4 __frontswap_store -EXPORT_SYMBOL vmlinux 0x15336c70 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x1549d7d3 qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x15822cf8 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x158bb5cb cqhci_init +EXPORT_SYMBOL vmlinux 0x155781f9 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x15609ea1 tcf_exts_terse_dump EXPORT_SYMBOL vmlinux 0x159db801 mpage_writepage EXPORT_SYMBOL vmlinux 0x15ab13e5 pci_match_id -EXPORT_SYMBOL vmlinux 0x15ad11ac vme_dma_list_exec EXPORT_SYMBOL vmlinux 0x15b0c3a7 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x15b5f53b unlock_rename EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15c337e9 kernel_connect EXPORT_SYMBOL vmlinux 0x15c376e7 configfs_depend_item EXPORT_SYMBOL vmlinux 0x15d433c0 ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x15e5c13a flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x15eb5f97 netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x160b9092 udp_disconnect EXPORT_SYMBOL vmlinux 0x160bc73b fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x161fd34b xfrm_state_walk EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x162df84d of_device_unregister EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x1634f572 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x163ce947 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x16405f47 tcp_select_initial_window EXPORT_SYMBOL vmlinux 0x164128ee rproc_add_subdev EXPORT_SYMBOL vmlinux 0x1644960e __bio_clone_fast EXPORT_SYMBOL vmlinux 0x16465417 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x1647b562 skb_recv_datagram EXPORT_SYMBOL vmlinux 0x16525cc4 xa_find EXPORT_SYMBOL vmlinux 0x165c38cb pci_bus_set_ops EXPORT_SYMBOL vmlinux 0x165ce34e devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x165e5d90 unlock_page +EXPORT_SYMBOL vmlinux 0x1666ac28 xfrm_state_free EXPORT_SYMBOL vmlinux 0x16735e55 pci_wake_from_d3 EXPORT_SYMBOL vmlinux 0x1677e300 pcim_set_mwi EXPORT_SYMBOL vmlinux 0x167f214f snd_ctl_find_id +EXPORT_SYMBOL vmlinux 0x1687ff0b ll_rw_block +EXPORT_SYMBOL vmlinux 0x168c2d67 genphy_read_status_fixed EXPORT_SYMBOL vmlinux 0x16965b86 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x1698660e generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x16a078a6 audit_log_start EXPORT_SYMBOL vmlinux 0x16a206cc imx_scu_enable_general_irq_channel -EXPORT_SYMBOL vmlinux 0x16a530b0 mdiobus_unregister EXPORT_SYMBOL vmlinux 0x16adbf67 down_killable EXPORT_SYMBOL vmlinux 0x16c12b74 dma_sync_sg_for_device EXPORT_SYMBOL vmlinux 0x16c8301e inc_node_page_state -EXPORT_SYMBOL vmlinux 0x16d61d16 release_pages +EXPORT_SYMBOL vmlinux 0x16df286a tcp_mmap EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e5311c sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x17056c69 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x16e843c3 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x16fb5344 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x17205e2c generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x172911f5 xfrm_state_update EXPORT_SYMBOL vmlinux 0x172b5482 dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x172d3e7d sk_capable +EXPORT_SYMBOL vmlinux 0x177234a8 gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0x1775586d generic_key_instantiate EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware EXPORT_SYMBOL vmlinux 0x1792d5ba clk_bulk_get_all EXPORT_SYMBOL vmlinux 0x17953770 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x1796b1ca netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x17c4fc84 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x17ca0141 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x17af603e tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x17d7574b bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x17de0fb8 iptun_encaps EXPORT_SYMBOL vmlinux 0x17e28033 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x17e79d97 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x17f29555 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x17f21e0d generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x17f76751 rps_may_expire_flow EXPORT_SYMBOL vmlinux 0x17fcc052 dquot_operations +EXPORT_SYMBOL vmlinux 0x1801cc48 skb_abort_seq_read EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace EXPORT_SYMBOL vmlinux 0x1835f1cf blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x185618e2 security_sk_classify_flow EXPORT_SYMBOL vmlinux 0x185c32cf sgl_free +EXPORT_SYMBOL vmlinux 0x185c58a2 inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0x18723e23 simple_map_init EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free EXPORT_SYMBOL vmlinux 0x187af64a pcim_iomap EXPORT_SYMBOL vmlinux 0x188447f9 do_map_probe EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 EXPORT_SYMBOL vmlinux 0x18a26e31 nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x18cd084f kernel_getpeername +EXPORT_SYMBOL vmlinux 0x18d1de4d vfs_path_lookup EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18e848bf sock_no_listen -EXPORT_SYMBOL vmlinux 0x18fa4a6d flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x18e6fffd xp_set_rxq_info EXPORT_SYMBOL vmlinux 0x18fee0e4 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x19000634 mroute6_is_socket EXPORT_SYMBOL vmlinux 0x1905ea90 uart_resume_port -EXPORT_SYMBOL vmlinux 0x190e11c0 jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0x19115ea0 sock_efree -EXPORT_SYMBOL vmlinux 0x1926a813 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x1944a87d __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x195b8bc2 napi_complete_done +EXPORT_SYMBOL vmlinux 0x19445756 sock_no_bind EXPORT_SYMBOL vmlinux 0x195c8596 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x195d8534 blk_queue_flag_set EXPORT_SYMBOL vmlinux 0x196c2641 fs_param_is_blockdev EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode EXPORT_SYMBOL vmlinux 0x197f9502 of_node_put @@ -6443,397 +6353,407 @@ EXPORT_SYMBOL vmlinux 0x198486c3 fscrypt_decrypt_pagecache_blocks 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 0x198d27aa tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x19944146 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x198ea1be inet_csk_prepare_forced_close EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp EXPORT_SYMBOL vmlinux 0x19a0bcbf remove_proc_entry -EXPORT_SYMBOL vmlinux 0x19a32c94 inet_protos EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19cd41a2 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x19d8b049 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x19d611bb get_phy_device +EXPORT_SYMBOL vmlinux 0x19e8f5f0 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x19e99cef vlan_ioctl_set EXPORT_SYMBOL vmlinux 0x19f5d541 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x1a130deb register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x1a20c540 omap_vrfb_supported EXPORT_SYMBOL vmlinux 0x1a21d691 __ksize EXPORT_SYMBOL vmlinux 0x1a276df0 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x1a291306 security_sb_clone_mnt_opts EXPORT_SYMBOL vmlinux 0x1a2a77cd map_destroy -EXPORT_SYMBOL vmlinux 0x1a33e2bc phy_device_remove -EXPORT_SYMBOL vmlinux 0x1a4f70a9 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x1a4fa715 __pskb_copy_fclone EXPORT_SYMBOL vmlinux 0x1a51c881 sg_pcopy_from_buffer EXPORT_SYMBOL vmlinux 0x1a5be4fa shrink_dcache_parent EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn EXPORT_SYMBOL vmlinux 0x1a675873 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x1a75f231 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x1a679246 scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0x1a7bc9ef xxh32 EXPORT_SYMBOL vmlinux 0x1a974a0d amba_request_regions +EXPORT_SYMBOL vmlinux 0x1a974e9f eth_gro_receive EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state EXPORT_SYMBOL vmlinux 0x1aa86d18 rdma_dim +EXPORT_SYMBOL vmlinux 0x1aab2323 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio EXPORT_SYMBOL vmlinux 0x1aded990 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0x1ae3f3b4 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x1ae84790 of_device_register EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b1663ba _dev_alert -EXPORT_SYMBOL vmlinux 0x1b17478e ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x1b0681d7 set_user_nice +EXPORT_SYMBOL vmlinux 0x1b0e5710 skb_ext_add EXPORT_SYMBOL vmlinux 0x1b25f187 __xa_store -EXPORT_SYMBOL vmlinux 0x1b2825fd eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x1b33c408 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x1b3b5df2 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x1b401863 udp_set_csum -EXPORT_SYMBOL vmlinux 0x1b5a48aa security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x1b6143f2 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x1b3703d0 scsi_host_alloc EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton EXPORT_SYMBOL vmlinux 0x1b631cbd rproc_free -EXPORT_SYMBOL vmlinux 0x1b6c3e1b udp_seq_next EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device EXPORT_SYMBOL vmlinux 0x1b88adc7 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x1b90e0d9 neigh_resolve_output EXPORT_SYMBOL vmlinux 0x1b965a53 kunmap_local_indexed EXPORT_SYMBOL vmlinux 0x1b96c3bd max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x1ba07f36 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x1ba9cff0 __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0x1ba22444 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x1ba62e6e tcf_classify EXPORT_SYMBOL vmlinux 0x1bb4241a snd_pcm_suspend_all -EXPORT_SYMBOL vmlinux 0x1bc1009d vme_slot_num +EXPORT_SYMBOL vmlinux 0x1bb6b61c tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x1bc9e239 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x1bd2800b security_path_rename EXPORT_SYMBOL vmlinux 0x1bdc5d5f pci_pme_capable EXPORT_SYMBOL vmlinux 0x1be21e0f bio_split EXPORT_SYMBOL vmlinux 0x1bebc702 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x1befa398 sock_pfree EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states +EXPORT_SYMBOL vmlinux 0x1c11c146 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x1c2caded blk_queue_flag_set EXPORT_SYMBOL vmlinux 0x1c38026c mdio_device_remove EXPORT_SYMBOL vmlinux 0x1c4b8d29 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x1c526df1 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x1c5d17d7 phy_device_create EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s EXPORT_SYMBOL vmlinux 0x1c5e3aa8 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x1c6e9ade block_read_full_page EXPORT_SYMBOL vmlinux 0x1c777c5c dma_fence_add_callback EXPORT_SYMBOL vmlinux 0x1c7da2ef pci_enable_device_io EXPORT_SYMBOL vmlinux 0x1c8e8389 dquot_destroy EXPORT_SYMBOL vmlinux 0x1c914971 blk_set_queue_depth EXPORT_SYMBOL vmlinux 0x1caeb0b8 invalidate_bdev EXPORT_SYMBOL vmlinux 0x1cb58017 ilookup -EXPORT_SYMBOL vmlinux 0x1cb7cb5d ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x1cbe1ba6 generic_file_direct_write EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x1cc34643 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x1cec47a0 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x1ce6f86d sock_gettstamp +EXPORT_SYMBOL vmlinux 0x1ce961d9 tso_start EXPORT_SYMBOL vmlinux 0x1cf0128b kmem_cache_free EXPORT_SYMBOL vmlinux 0x1cf179d6 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x1d0086d9 __splice_from_pipe EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL vmlinux 0x1d0560f3 __netdev_notify_peers EXPORT_SYMBOL vmlinux 0x1d13c924 pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x1d1caa12 sk_error_report +EXPORT_SYMBOL vmlinux 0x1d143cc4 xsk_tx_completed EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested EXPORT_SYMBOL vmlinux 0x1d2e4084 free_mdio_bitbang -EXPORT_SYMBOL vmlinux 0x1d31c8ca tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x1d3b7033 mdio_find_bus -EXPORT_SYMBOL vmlinux 0x1d3cd2a7 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x1d64ed68 cqhci_irq +EXPORT_SYMBOL vmlinux 0x1d3596d7 follow_up +EXPORT_SYMBOL vmlinux 0x1d3a42ed fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x1d42a09f security_sb_remount +EXPORT_SYMBOL vmlinux 0x1d563684 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x1d685e39 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x1d69556a __alloc_skb +EXPORT_SYMBOL vmlinux 0x1d6b6b23 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x1d6d183f __ip_options_compile +EXPORT_SYMBOL vmlinux 0x1d6dc518 tcp_connect EXPORT_SYMBOL vmlinux 0x1d796395 hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0x1d8bc2a6 security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0x1dc1acf4 __seq_open_private EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key EXPORT_SYMBOL vmlinux 0x1dcddbcd pci_ep_cfs_remove_epc_group EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd6bdb6 generic_file_llseek EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr EXPORT_SYMBOL vmlinux 0x1de59c22 qcom_scm_ice_invalidate_key -EXPORT_SYMBOL vmlinux 0x1dfa91ff security_sock_graft EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0eb3e4 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x1e1072c4 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x1e17e46a devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0x1e1951f7 snd_register_device -EXPORT_SYMBOL vmlinux 0x1e1a7fb9 ipv6_push_frag_opts EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e21f8ca tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x1e257b24 of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0x1e366a82 skb_unlink -EXPORT_SYMBOL vmlinux 0x1e4161ab __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x1e58265f __breadahead +EXPORT_SYMBOL vmlinux 0x1e4cb0f7 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x1e4f25d7 skb_copy_bits EXPORT_SYMBOL vmlinux 0x1e69337d nand_ecc_sw_hamming_init_ctx EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e76babc _dev_crit -EXPORT_SYMBOL vmlinux 0x1e924678 netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0x1e96f43d __cpu_possible_mask EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea71e59 migrate_page_copy EXPORT_SYMBOL vmlinux 0x1eb64646 div64_s64 -EXPORT_SYMBOL vmlinux 0x1ece0f92 __breadahead_gfp EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1f04e320 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0x1f2b1e01 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x1f2bea26 read_cache_pages -EXPORT_SYMBOL vmlinux 0x1f3ee6d6 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x1efb5efa tcp_filter +EXPORT_SYMBOL vmlinux 0x1f00e8de security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x1f04c647 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x1f15b15c reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0x1f3f8cb8 fput +EXPORT_SYMBOL vmlinux 0x1f4c542d skb_queue_head EXPORT_SYMBOL vmlinux 0x1f4d5778 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x1f669a2f __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x1f53eca3 dev_get_flags +EXPORT_SYMBOL vmlinux 0x1f59b955 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x1f5cd625 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x1f6ac956 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x1f6da83c napi_gro_frags EXPORT_SYMBOL vmlinux 0x1f74edde pci_scan_slot +EXPORT_SYMBOL vmlinux 0x1f7625e8 udp_set_csum EXPORT_SYMBOL vmlinux 0x1f7b8a70 simple_release_fs EXPORT_SYMBOL vmlinux 0x1f8d1a30 pci_write_config_dword EXPORT_SYMBOL vmlinux 0x1f990b16 vmap EXPORT_SYMBOL vmlinux 0x1fb7502f uart_suspend_port -EXPORT_SYMBOL vmlinux 0x1fbb76e1 fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag EXPORT_SYMBOL vmlinux 0x1fd53437 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x1fe41978 security_old_inode_init_security EXPORT_SYMBOL vmlinux 0x1fe4f0d8 get_mem_type -EXPORT_SYMBOL vmlinux 0x1fe6e0f0 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x1feb2abd inet_ioctl 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 0x201018bc vfs_mkdir EXPORT_SYMBOL vmlinux 0x2012e4a8 dma_set_mask -EXPORT_SYMBOL vmlinux 0x2013de04 try_module_get EXPORT_SYMBOL vmlinux 0x202622e1 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x20457143 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x20361f55 invalidate_inode_buffers 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 0x206b635f ip6tun_encaps -EXPORT_SYMBOL vmlinux 0x206e2590 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x205a6b11 phy_drivers_register EXPORT_SYMBOL vmlinux 0x2072b8b4 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x207c14c3 dump_emit -EXPORT_SYMBOL vmlinux 0x208e753b ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x20954157 phy_aneg_done -EXPORT_SYMBOL vmlinux 0x209b64ae phy_driver_unregister EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode EXPORT_SYMBOL vmlinux 0x20e94308 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x20ee6035 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x20f2add5 tcp_sock_set_cork EXPORT_SYMBOL vmlinux 0x20fbe036 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x2101e4f3 tcp_stream_memory_free EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context EXPORT_SYMBOL vmlinux 0x21110dbf mmioset -EXPORT_SYMBOL vmlinux 0x2112c820 trace_raw_output_prep EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 EXPORT_SYMBOL vmlinux 0x211ee9bc qcom_scm_assign_mem EXPORT_SYMBOL vmlinux 0x21284716 ac97_bus_type EXPORT_SYMBOL vmlinux 0x212852ba mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x2133811b sk_wait_data EXPORT_SYMBOL vmlinux 0x2138fb30 of_chosen EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id EXPORT_SYMBOL vmlinux 0x21440bc4 regset_get -EXPORT_SYMBOL vmlinux 0x214703f8 generic_fadvise -EXPORT_SYMBOL vmlinux 0x21530b56 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x215b3ab8 scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x21953541 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x21a1b4a3 flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0x21a8351b dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x21b91492 __ip_options_compile -EXPORT_SYMBOL vmlinux 0x21ba214b try_to_release_page EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check EXPORT_SYMBOL vmlinux 0x21d78a3c d_set_fallthru EXPORT_SYMBOL vmlinux 0x21d7ef71 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x21dbcb09 phy_find_first EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow EXPORT_SYMBOL vmlinux 0x21e61668 blk_rq_map_integrity_sg EXPORT_SYMBOL vmlinux 0x21f7eb8f claim_fiq EXPORT_SYMBOL vmlinux 0x220c7021 tegra_io_pad_power_disable -EXPORT_SYMBOL vmlinux 0x2216bfdc inet_frags_init +EXPORT_SYMBOL vmlinux 0x221667eb rtnl_unicast EXPORT_SYMBOL vmlinux 0x2220bd48 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x222325c3 disk_end_io_acct EXPORT_SYMBOL vmlinux 0x2224d62e pci_resize_resource EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2237162c rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x22339ef8 inode_set_ctime_current EXPORT_SYMBOL vmlinux 0x223b033e __devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x223d9f93 __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0x22430d6a udp_read_sock EXPORT_SYMBOL vmlinux 0x2248f113 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x225b54df sock_kzfree_s EXPORT_SYMBOL vmlinux 0x2277d558 mx53_revision -EXPORT_SYMBOL vmlinux 0x2287d796 sock_recv_errqueue EXPORT_SYMBOL vmlinux 0x22897e82 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x229000ca qdisc_reset -EXPORT_SYMBOL vmlinux 0x22a1019b __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x22a242e7 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x22a45a0e jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x230327c3 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x23146155 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x2336494a generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x233aa37d eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x22c023e1 ppp_input_error +EXPORT_SYMBOL vmlinux 0x22c331b6 scsi_host_put +EXPORT_SYMBOL vmlinux 0x22d2fb12 sync_filesystem +EXPORT_SYMBOL vmlinux 0x22dacded jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x22e77ec6 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x234387db genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x23444f89 xfrm_state_insert EXPORT_SYMBOL vmlinux 0x235c14bb phy_write_mmd EXPORT_SYMBOL vmlinux 0x2360ada3 nand_write_oob_std EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x23651697 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x236655f8 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x236e35c8 phy_driver_unregister EXPORT_SYMBOL vmlinux 0x23705ae3 page_pool_put_page +EXPORT_SYMBOL vmlinux 0x23722bf0 vfs_rename EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short EXPORT_SYMBOL vmlinux 0x238bb6d3 contig_page_data -EXPORT_SYMBOL vmlinux 0x23b654b0 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x23996a42 sock_alloc_send_skb EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c6105e security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x23d49f22 sock_edemux +EXPORT_SYMBOL vmlinux 0x23c3c74e __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x23cc7387 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x23e09804 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x23f0dd85 register_netdevice EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24143f93 __mmc_claim_host EXPORT_SYMBOL vmlinux 0x2414413f of_find_node_by_phandle EXPORT_SYMBOL vmlinux 0x24165921 insert_inode_locked EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x242ff4e0 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x2431190f tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x244456d2 fixed_size_llseek EXPORT_SYMBOL vmlinux 0x2447bd7f amba_device_unregister EXPORT_SYMBOL vmlinux 0x24511f75 kill_anon_super -EXPORT_SYMBOL vmlinux 0x24563049 tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245e0728 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x246790df idr_for_each -EXPORT_SYMBOL vmlinux 0x246d7e55 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x246e4895 path_is_mountpoint EXPORT_SYMBOL vmlinux 0x246ea205 blake2s_update -EXPORT_SYMBOL vmlinux 0x24728529 mmc_get_card EXPORT_SYMBOL vmlinux 0x248521c3 rproc_report_crash -EXPORT_SYMBOL vmlinux 0x24965c25 generic_perform_write +EXPORT_SYMBOL vmlinux 0x248cd1cd seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x249af3dd mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL vmlinux 0x24b0634d xfrm_state_add -EXPORT_SYMBOL vmlinux 0x24ca002b ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x24d0056d dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x24bdc276 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x24c4e0b6 unix_destruct_scm EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer EXPORT_SYMBOL vmlinux 0x24e20c23 snd_pcm_hw_param_last EXPORT_SYMBOL vmlinux 0x24efca65 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL vmlinux 0x24f62d45 d_path +EXPORT_SYMBOL vmlinux 0x24f7e70a sync_inodes_sb EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x2506c0e5 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x250bae61 nosteal_pipe_buf_ops EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x253028aa flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x253575b2 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x2549b72b netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x2542c2b3 skb_clone EXPORT_SYMBOL vmlinux 0x254b4402 dget_parent +EXPORT_SYMBOL vmlinux 0x2550d983 sock_wfree EXPORT_SYMBOL vmlinux 0x2558658f md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x255f8bd3 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x2571d6b8 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x25788db8 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x256c4119 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x2571a102 mdiobus_is_registered_device EXPORT_SYMBOL vmlinux 0x2579e1b7 t10_pi_type1_ip 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 0x25958d52 inc_node_state -EXPORT_SYMBOL vmlinux 0x25959bd3 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x25adb096 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x25d167c3 scsi_report_opcode EXPORT_SYMBOL vmlinux 0x25e4559e register_sound_special_device EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free EXPORT_SYMBOL vmlinux 0x25ec8e17 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0x25ecab15 netdev_name_node_alt_create EXPORT_SYMBOL vmlinux 0x25f01edb unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0x25f0a54f scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x25f7551a __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x260a0170 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x260ada05 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x261e7ca2 km_policy_notify +EXPORT_SYMBOL vmlinux 0x262625c2 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0x26293493 param_ops_long +EXPORT_SYMBOL vmlinux 0x26325618 ip6_xmit EXPORT_SYMBOL vmlinux 0x263ba925 dquot_resume EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x2657c649 sock_no_accept -EXPORT_SYMBOL vmlinux 0x265f70d0 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x266fa57f devm_register_netdev EXPORT_SYMBOL vmlinux 0x2671348b devm_free_irq EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get EXPORT_SYMBOL vmlinux 0x2690e6c1 _find_next_zero_bit_le EXPORT_SYMBOL vmlinux 0x269eacf8 of_device_get_match_data EXPORT_SYMBOL vmlinux 0x26a20025 snd_device_new -EXPORT_SYMBOL vmlinux 0x26a6bc66 tcf_register_action -EXPORT_SYMBOL vmlinux 0x26b39c67 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x26a440a8 block_write_end +EXPORT_SYMBOL vmlinux 0x26b21037 write_one_page +EXPORT_SYMBOL vmlinux 0x26b29744 pid_task +EXPORT_SYMBOL vmlinux 0x26b5ace5 unregister_qdisc EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26cd1ab8 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x26e054e1 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x26cf0aa0 inet_del_offload +EXPORT_SYMBOL vmlinux 0x26db2f15 cqhci_irq +EXPORT_SYMBOL vmlinux 0x26e2797c neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x26ef1bc3 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x27043205 sk_stop_timer EXPORT_SYMBOL vmlinux 0x2706f9ad elevator_alloc +EXPORT_SYMBOL vmlinux 0x2708e726 dev_mc_del EXPORT_SYMBOL vmlinux 0x270ac400 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x270b50a5 of_mdio_find_device EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x270e3764 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x271938c9 security_task_getsecid_subj -EXPORT_SYMBOL vmlinux 0x271b165c phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0x2721b31b unix_attach_fds +EXPORT_SYMBOL vmlinux 0x271587be end_buffer_read_sync EXPORT_SYMBOL vmlinux 0x27223293 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x2725fed3 dev_change_proto_down_generic EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed EXPORT_SYMBOL vmlinux 0x27369e59 devm_pci_remap_cfgspace EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x2752cd6f ppp_channel_index +EXPORT_SYMBOL vmlinux 0x2753e89f __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check EXPORT_SYMBOL vmlinux 0x276a3a44 irq_stat +EXPORT_SYMBOL vmlinux 0x27701b0c filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string EXPORT_SYMBOL vmlinux 0x2779bef4 d_genocide EXPORT_SYMBOL vmlinux 0x277cff72 seq_open -EXPORT_SYMBOL vmlinux 0x2781bd8d netdev_pick_tx EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x278d9984 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x2793c6bf lease_get_mtime EXPORT_SYMBOL vmlinux 0x27959848 file_modified -EXPORT_SYMBOL vmlinux 0x27a15e66 vfs_link -EXPORT_SYMBOL vmlinux 0x27afa160 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x27a2ea9e sock_enable_timestamps EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27ce055f dev_get_by_name -EXPORT_SYMBOL vmlinux 0x27ee1b25 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x27d047e3 phy_ethtool_ksettings_set EXPORT_SYMBOL vmlinux 0x27f2f401 uart_unregister_driver EXPORT_SYMBOL vmlinux 0x27f6751d unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x27f98f50 inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x27fa6a59 of_cpu_node_to_id EXPORT_SYMBOL vmlinux 0x280a898b from_kuid +EXPORT_SYMBOL vmlinux 0x280bd899 fiemap_prep EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x2821306a tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0x2839ce2d inet6_protos EXPORT_SYMBOL vmlinux 0x285148c1 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x28679bb8 locks_free_lock EXPORT_SYMBOL vmlinux 0x28745a3b inc_zone_page_state EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x28785999 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x2876f81e skb_realloc_headroom EXPORT_SYMBOL vmlinux 0x2878e15a idr_destroy EXPORT_SYMBOL vmlinux 0x28807ad6 pci_ep_cfs_add_epc_group EXPORT_SYMBOL vmlinux 0x288ab0da max8998_read_reg EXPORT_SYMBOL vmlinux 0x28ae2910 of_translate_address EXPORT_SYMBOL vmlinux 0x28b31a91 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x28b4e57f netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x28c924da arp_send -EXPORT_SYMBOL vmlinux 0x28d52903 mmc_hw_reset EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x28ffb111 nobh_write_end -EXPORT_SYMBOL vmlinux 0x291425e8 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x29017ee6 register_filesystem EXPORT_SYMBOL vmlinux 0x2926d3f4 md_write_inc EXPORT_SYMBOL vmlinux 0x293da135 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL vmlinux 0x294d0251 mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0x2950e3e2 kobject_get EXPORT_SYMBOL vmlinux 0x295900af ww_mutex_unlock EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x2989a99b dev_deactivate -EXPORT_SYMBOL vmlinux 0x299b5d5c alloc_fddidev +EXPORT_SYMBOL vmlinux 0x2993e199 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x299514c4 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0x29a43265 fs_bio_set EXPORT_SYMBOL vmlinux 0x29a47fe9 dma_fence_wait_any_timeout EXPORT_SYMBOL vmlinux 0x29a96042 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x29aa0c90 sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0x29b5cfc3 dm_kcopyd_copy EXPORT_SYMBOL vmlinux 0x29b7b6c7 sget +EXPORT_SYMBOL vmlinux 0x29bb5254 submit_bio EXPORT_SYMBOL vmlinux 0x29bbd76f pci_bus_type EXPORT_SYMBOL vmlinux 0x29be5347 rproc_coredump_using_sections EXPORT_SYMBOL vmlinux 0x29c246cb simple_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x29c4a7f1 nand_create_bbt EXPORT_SYMBOL vmlinux 0x29d9f26e cancel_delayed_work_sync EXPORT_SYMBOL vmlinux 0x29daa81f elv_rb_add -EXPORT_SYMBOL vmlinux 0x29e3e7e7 __mdiobus_read -EXPORT_SYMBOL vmlinux 0x29ea4f0b phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x29dfb47a inet6_add_offload +EXPORT_SYMBOL vmlinux 0x29e35ebf vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x29f3f5f0 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x2a08b8c8 locks_copy_conflock EXPORT_SYMBOL vmlinux 0x2a2202f0 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x2a2c6b9b nf_register_net_hooks EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a362d55 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x2a38f664 shmem_aops EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit -EXPORT_SYMBOL vmlinux 0x2a8d5a32 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x2a671434 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x2a913d5a netdev_has_upper_dev_all_rcu EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2aa86aaa tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x2aade9b6 xsk_tx_release EXPORT_SYMBOL vmlinux 0x2abca035 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x2ad308b6 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x2b0a0dc2 phy_validate_pause -EXPORT_SYMBOL vmlinux 0x2b20ef4d tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x2ac14425 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x2ac1f558 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x2b020b57 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x2b16d1bc __scsi_execute EXPORT_SYMBOL vmlinux 0x2b2e1aa6 pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x2b328f4a dm_table_event -EXPORT_SYMBOL vmlinux 0x2b4a5d63 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b7b87b8 dev_set_threaded EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba12ef0 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x2bac9415 netif_set_real_num_rx_queues EXPORT_SYMBOL vmlinux 0x2bb2d5d3 seq_file_path -EXPORT_SYMBOL vmlinux 0x2bb679ec path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x2bb75160 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x2bc927ee __dev_set_mtu EXPORT_SYMBOL vmlinux 0x2bcfd5f8 pci_iounmap EXPORT_SYMBOL vmlinux 0x2beacbc5 seq_read EXPORT_SYMBOL vmlinux 0x2bf24a5a input_mt_get_slot_by_key EXPORT_SYMBOL vmlinux 0x2bff5887 xa_destroy -EXPORT_SYMBOL vmlinux 0x2c023a33 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x2c06f93a reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x2c06b74b write_inode_now +EXPORT_SYMBOL vmlinux 0x2c0d481e mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x2c0f412c tcp_sendmsg EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c2bd388 scsi_free_host_dev EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up EXPORT_SYMBOL vmlinux 0x2c42a97b _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x2c5282ce vme_irq_request -EXPORT_SYMBOL vmlinux 0x2c6b1216 page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x2c6b6974 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x2c7658f2 mark_buffer_dirty EXPORT_SYMBOL vmlinux 0x2c76dba5 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x2c7743e9 netlink_broadcast EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs EXPORT_SYMBOL vmlinux 0x2c969bcd padata_alloc_shell EXPORT_SYMBOL vmlinux 0x2c9f27b9 set_capacity -EXPORT_SYMBOL vmlinux 0x2cb09b55 phy_do_ioctl -EXPORT_SYMBOL vmlinux 0x2cc233c9 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x2cc7ddda fqdir_init -EXPORT_SYMBOL vmlinux 0x2cc8ad59 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x2cded9a3 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x2ca7cce9 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x2cfa2bda generic_file_readonly_mmap EXPORT_SYMBOL vmlinux 0x2cfde9a2 warn_slowpath_fmt -EXPORT_SYMBOL vmlinux 0x2d00bb34 filp_open +EXPORT_SYMBOL vmlinux 0x2d0434bc tcf_action_update_stats EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d188948 ip_check_defrag EXPORT_SYMBOL vmlinux 0x2d19981d nand_ecc_sw_bch_init_ctx EXPORT_SYMBOL vmlinux 0x2d2ef887 snd_pcm_lib_preallocate_free_for_all EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged @@ -6841,162 +6761,157 @@ EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d6656c5 neigh_changeaddr EXPORT_SYMBOL vmlinux 0x2d6fcc06 __kmalloc -EXPORT_SYMBOL vmlinux 0x2d76a035 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x2d700f5d tcf_qevent_init EXPORT_SYMBOL vmlinux 0x2d7964bc seq_vprintf -EXPORT_SYMBOL vmlinux 0x2d7f06a7 block_write_end EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2d9c40d1 __traceiter_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x2da744ba snd_sgbuf_get_addr -EXPORT_SYMBOL vmlinux 0x2db47790 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x2dc1b2c2 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x2dcae6bc vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2dfbb14f vlan_vid_del +EXPORT_SYMBOL vmlinux 0x2dfa6e93 xp_raw_get_dma EXPORT_SYMBOL vmlinux 0x2dfbcc4b pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x2e071bba tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0x2e0b1e62 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x2e167d75 km_state_notify EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put EXPORT_SYMBOL vmlinux 0x2e2975dc mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x2e2ffd1f security_inet_conn_request EXPORT_SYMBOL vmlinux 0x2e332c11 pps_register_source -EXPORT_SYMBOL vmlinux 0x2e3340fa jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x2e34e29b jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x2e3a05ef mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x2e3423f6 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x2e36007c of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x2e3d2ccb dev_mc_sync EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk EXPORT_SYMBOL vmlinux 0x2e49ac67 md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x2e53833e eth_header_cache +EXPORT_SYMBOL vmlinux 0x2e4faf09 scsi_device_put +EXPORT_SYMBOL vmlinux 0x2e5f4468 xp_dma_unmap EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e6ddd91 tcp_prot +EXPORT_SYMBOL vmlinux 0x2e8e98b6 phy_ethtool_get_sset_count EXPORT_SYMBOL vmlinux 0x2e91884b tegra_ivc_reset -EXPORT_SYMBOL vmlinux 0x2e9de908 eth_type_trans EXPORT_SYMBOL vmlinux 0x2e9fb49a rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x2eabc9e1 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x2eb19dcc tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x2eb39ad3 phy_start_cable_test_tdr EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ed52b01 qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0x2edc0a83 ilookup5_nowait EXPORT_SYMBOL vmlinux 0x2edeb3d9 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x2ee88a9a vif_device_init -EXPORT_SYMBOL vmlinux 0x2eefc691 sock_no_getname +EXPORT_SYMBOL vmlinux 0x2eee2152 netdev_state_change EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f0a3b18 secpath_set EXPORT_SYMBOL vmlinux 0x2f109d27 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x2f154ea7 mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0x2f16b585 iput -EXPORT_SYMBOL vmlinux 0x2f18b545 scsi_device_quiesce EXPORT_SYMBOL vmlinux 0x2f1a9385 __nla_reserve_64bit EXPORT_SYMBOL vmlinux 0x2f1b0d62 ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x2f24f2f2 ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle -EXPORT_SYMBOL vmlinux 0x2f4066f6 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x2f366c20 module_refcount EXPORT_SYMBOL vmlinux 0x2f50cbf5 proc_doulongvec_minmax EXPORT_SYMBOL vmlinux 0x2f5b0fdb gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2f61255c i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x2f69fa29 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x2f6b31f5 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x2f7413b0 xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0x2f743d4f __put_user_ns EXPORT_SYMBOL vmlinux 0x2f7e4b3d nand_monolithic_read_page_raw -EXPORT_SYMBOL vmlinux 0x2f7f59f5 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x2f89a95f mmc_can_trim EXPORT_SYMBOL vmlinux 0x2f9e15ee configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x2fa8b264 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x2fb57ba7 __udp_disconnect EXPORT_SYMBOL vmlinux 0x2fb89d55 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x2fba4fe4 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x2fd95e66 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x2fd248c0 sock_no_listen +EXPORT_SYMBOL vmlinux 0x2fd3b9fc io_uring_get_socket EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe25988 unlock_rename EXPORT_SYMBOL vmlinux 0x3011cfa9 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x3013a370 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0x3018684b dcache_readdir +EXPORT_SYMBOL vmlinux 0x301c4d59 __block_write_begin +EXPORT_SYMBOL vmlinux 0x302c6fa6 tcf_qevent_dump EXPORT_SYMBOL vmlinux 0x3044f732 bdi_put +EXPORT_SYMBOL vmlinux 0x304ab0de tcp_enter_cwr EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0x3057df7f kill_pgrp EXPORT_SYMBOL vmlinux 0x306eedab fsync_bdev -EXPORT_SYMBOL vmlinux 0x3071eeca tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x30701042 tcp_hashinfo EXPORT_SYMBOL vmlinux 0x30745185 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x309346db flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x30937434 skb_find_text EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x3097f3b9 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x30a7f810 mark_buffer_async_write EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30a94c92 flow_rule_match_icmp EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 EXPORT_SYMBOL vmlinux 0x30ba200c of_root -EXPORT_SYMBOL vmlinux 0x30bb6de9 vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0x30bedcf7 sock_no_recvmsg 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 0x30ee20d6 md_unregister_thread EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x311258c9 fasync_helper EXPORT_SYMBOL vmlinux 0x311887d5 seq_pad EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 EXPORT_SYMBOL vmlinux 0x3127c09f mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0x312b2eee dev_add_offload EXPORT_SYMBOL vmlinux 0x312b8eb4 alloc_anon_inode EXPORT_SYMBOL vmlinux 0x314b20c8 scnprintf -EXPORT_SYMBOL vmlinux 0x314d5d88 cqhci_resume EXPORT_SYMBOL vmlinux 0x3164fbbc bioset_exit -EXPORT_SYMBOL vmlinux 0x3177b608 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x3179d502 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x31672844 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x316a8af3 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x317c2ab7 security_sb_mnt_opts_compat EXPORT_SYMBOL vmlinux 0x31876bfb from_kgid EXPORT_SYMBOL vmlinux 0x31891e4c utf8nagemin +EXPORT_SYMBOL vmlinux 0x3190889a iter_file_splice_write EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31b16898 __lock_buffer +EXPORT_SYMBOL vmlinux 0x31b1a726 tcf_qevent_handle EXPORT_SYMBOL vmlinux 0x31b59999 ps2_sliced_command -EXPORT_SYMBOL vmlinux 0x31b9897f vme_lm_request -EXPORT_SYMBOL vmlinux 0x31d0b95e tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x31dbc43a netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x31bc186a __SetPageMovable EXPORT_SYMBOL vmlinux 0x31dc8464 dquot_writeback_dquots EXPORT_SYMBOL vmlinux 0x31df493e inode_update_time EXPORT_SYMBOL vmlinux 0x31f0be93 d_move +EXPORT_SYMBOL vmlinux 0x31fac8c7 generic_setlease EXPORT_SYMBOL vmlinux 0x320f07ca _copy_to_iter -EXPORT_SYMBOL vmlinux 0x32374883 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x3216f372 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x322edebc xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x3231a5ac genphy_suspend EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd EXPORT_SYMBOL vmlinux 0x32430023 _totalhigh_pages -EXPORT_SYMBOL vmlinux 0x324b966e qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x325c24ab dev_mc_sync -EXPORT_SYMBOL vmlinux 0x326ab196 mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0x326af4a9 __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x327723b0 disk_end_io_acct +EXPORT_SYMBOL vmlinux 0x3274cb04 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x327affeb mmc_sw_reset EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x328861c9 km_policy_notify EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy -EXPORT_SYMBOL vmlinux 0x32985d75 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x328b3f48 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x329ac3eb sock_wake_async +EXPORT_SYMBOL vmlinux 0x32b19126 mmput_async EXPORT_SYMBOL vmlinux 0x32ba6c53 snd_pcm_hw_refine -EXPORT_SYMBOL vmlinux 0x32c92b32 mmc_start_request EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload EXPORT_SYMBOL vmlinux 0x32d327ba posix_acl_chmod EXPORT_SYMBOL vmlinux 0x32d45cdc md_bitmap_end_sync EXPORT_SYMBOL vmlinux 0x32dcd245 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x32df34f5 mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0x32ee1630 cred_fscmp -EXPORT_SYMBOL vmlinux 0x3309c761 qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0x330dbe75 blk_queue_split EXPORT_SYMBOL vmlinux 0x33220baa pci_iomap +EXPORT_SYMBOL vmlinux 0x332bdb10 inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0x332c0fa0 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x332d361d pagecache_write_end EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down -EXPORT_SYMBOL vmlinux 0x333ad276 fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0x3346c2af dquot_initialize_needed EXPORT_SYMBOL vmlinux 0x3347e9b6 nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL vmlinux 0x3348485a phy_loopback EXPORT_SYMBOL vmlinux 0x33839bad pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x33be4c8a scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x3397be70 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x33a08106 ip_route_me_harder EXPORT_SYMBOL vmlinux 0x33c49ac4 arm_coherent_dma_ops +EXPORT_SYMBOL vmlinux 0x33cc1b70 dev_queue_xmit EXPORT_SYMBOL vmlinux 0x33d2bed1 irq_set_chip EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated EXPORT_SYMBOL vmlinux 0x33e91a13 pci_disable_device +EXPORT_SYMBOL vmlinux 0x33eda453 nobh_write_end EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x34091838 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x340abd40 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x340a81b1 flow_rule_match_icmp EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x344562af security_path_rename -EXPORT_SYMBOL vmlinux 0x3479aff6 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x3473c8f6 dev_deactivate +EXPORT_SYMBOL vmlinux 0x34824efa arp_tbl EXPORT_SYMBOL vmlinux 0x349b4277 xa_clear_mark EXPORT_SYMBOL vmlinux 0x349cba85 strchr EXPORT_SYMBOL vmlinux 0x34a04d71 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x34a4105e inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x34a6e914 get_phy_device -EXPORT_SYMBOL vmlinux 0x34a94003 jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0x34b061f7 __invalidate_device -EXPORT_SYMBOL vmlinux 0x34b15629 get_fs_type EXPORT_SYMBOL vmlinux 0x34b92f24 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x34ba6f72 dev_addr_init +EXPORT_SYMBOL vmlinux 0x34bff3ac module_layout EXPORT_SYMBOL vmlinux 0x34c068dd ucc_slow_restart_tx EXPORT_SYMBOL vmlinux 0x34c34be9 __devm_release_region EXPORT_SYMBOL vmlinux 0x34c3bff9 fscrypt_free_inode @@ -7004,395 +6919,365 @@ EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev EXPORT_SYMBOL vmlinux 0x34ca145c kstrtou8_from_user EXPORT_SYMBOL vmlinux 0x34e912fa blk_queue_io_opt EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x3505d8a0 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x34f53ada vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0x351448fb sg_miter_next EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x352af4ce iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x3520b266 xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0x352c05d9 release_resource EXPORT_SYMBOL vmlinux 0x352d15c4 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x35335198 i2c_smbus_read_i2c_block_data_or_emulated EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 -EXPORT_SYMBOL vmlinux 0x3553aa3a secpath_set -EXPORT_SYMBOL vmlinux 0x3555b036 xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0x355991f8 phy_mii_ioctl EXPORT_SYMBOL vmlinux 0x3560e651 kmemdup_nul EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x35662ee5 inet_put_port -EXPORT_SYMBOL vmlinux 0x357c3fd8 audit_log +EXPORT_SYMBOL vmlinux 0x35a0e614 phy_attached_info_irq EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 EXPORT_SYMBOL vmlinux 0x35b33726 __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0x35d4dd64 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x35d4de70 dev_get_phys_port_name EXPORT_SYMBOL vmlinux 0x35ea78f5 atomic_io_modify_relaxed EXPORT_SYMBOL vmlinux 0x36093b87 cdrom_mode_select EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask EXPORT_SYMBOL vmlinux 0x360bff5d seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable -EXPORT_SYMBOL vmlinux 0x362362ff __SetPageMovable EXPORT_SYMBOL vmlinux 0x3627fc1b component_match_add_release EXPORT_SYMBOL vmlinux 0x3644f473 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x364e7079 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x36588e6a tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x365a4f6c xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x36625ae0 submit_bh +EXPORT_SYMBOL vmlinux 0x3675cd26 account_page_redirty EXPORT_SYMBOL vmlinux 0x367a14de serio_unregister_port EXPORT_SYMBOL vmlinux 0x3682dd01 iunique -EXPORT_SYMBOL vmlinux 0x36a5740f mr_table_alloc +EXPORT_SYMBOL vmlinux 0x368c512e xfrm_stateonly_find EXPORT_SYMBOL vmlinux 0x36af5e35 bpf_sk_lookup_enabled +EXPORT_SYMBOL vmlinux 0x36b41666 genphy_restart_aneg EXPORT_SYMBOL vmlinux 0x36c36f53 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x36c4e6bf eth_platform_get_mac_address EXPORT_SYMBOL vmlinux 0x36d69557 ipv6_flowlabel_exclusive EXPORT_SYMBOL vmlinux 0x36dc8c69 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x36ee2ed8 migrate_page_move_mapping EXPORT_SYMBOL vmlinux 0x36f7f9fb devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x36f86e97 end_page_writeback -EXPORT_SYMBOL vmlinux 0x36f90af8 account_page_redirty -EXPORT_SYMBOL vmlinux 0x36fdaad8 blk_rq_init +EXPORT_SYMBOL vmlinux 0x36f92928 nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0x371ac1cd kset_register EXPORT_SYMBOL vmlinux 0x372be006 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x37332c37 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x373feb42 sk_stream_error -EXPORT_SYMBOL vmlinux 0x37401fe4 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x3742bf82 nonseekable_open EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn EXPORT_SYMBOL vmlinux 0x374b47eb ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x37545880 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x374bce01 devm_mfd_add_devices EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x376f522d tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x3782b214 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x3788a358 netdev_info EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x37985d8d sock_cmsg_send EXPORT_SYMBOL vmlinux 0x37b0aa04 config_item_put +EXPORT_SYMBOL vmlinux 0x37b886b5 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x37ba2f69 vme_lm_request EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37ed52bc neigh_seq_next EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x38136ff6 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x37fa1084 __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x38221f06 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x3839ecec skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x38299311 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x38308d63 tc_setup_cb_destroy EXPORT_SYMBOL vmlinux 0x3842b3a6 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x3852ab62 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x3849ace0 tcf_qevent_destroy EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll EXPORT_SYMBOL vmlinux 0x386d9ce9 radix_tree_lookup EXPORT_SYMBOL vmlinux 0x3878fcc0 rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0x38851dcc tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x388600fb skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0x38869d88 kstat EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 EXPORT_SYMBOL vmlinux 0x38a5490c of_get_cpu_state_node -EXPORT_SYMBOL vmlinux 0x38a6785b __skb_ext_del EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38d86318 scsi_device_set_state EXPORT_SYMBOL vmlinux 0x38de402b call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x38e71664 __neigh_create EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq EXPORT_SYMBOL vmlinux 0x38f4e6a0 register_framebuffer +EXPORT_SYMBOL vmlinux 0x390df209 sock_create_kern +EXPORT_SYMBOL vmlinux 0x3914ffb3 ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x3914ffc7 devm_clk_get EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39449792 ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x3944e93c import_iovec EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x394d4ec9 ethtool_notify +EXPORT_SYMBOL vmlinux 0x3958b1c1 filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0x395a2239 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x395dbe3d free_task EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL vmlinux 0x397a08d9 consume_skb -EXPORT_SYMBOL vmlinux 0x398852da tcp_close +EXPORT_SYMBOL vmlinux 0x3984be1e inet_accept EXPORT_SYMBOL vmlinux 0x3992bc63 __xa_set_mark -EXPORT_SYMBOL vmlinux 0x399804d4 neigh_parms_alloc EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x39b27313 skb_expand_head +EXPORT_SYMBOL vmlinux 0x39b50744 nf_setsockopt EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and EXPORT_SYMBOL vmlinux 0x39bb870c __vcalloc EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty EXPORT_SYMBOL vmlinux 0x39c88fd5 flush_rcu_work -EXPORT_SYMBOL vmlinux 0x39cb4265 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x39d7fced dev_get_stats -EXPORT_SYMBOL vmlinux 0x39e422c1 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x39f3480b lookup_one -EXPORT_SYMBOL vmlinux 0x39f663ad mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x39cb892d mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x39dea4ed ip6_frag_next +EXPORT_SYMBOL vmlinux 0x39eb8cb6 ip_output EXPORT_SYMBOL vmlinux 0x39f8c3fe iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x39fb41ef tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x39fe5196 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x3a231931 jbd2_journal_forget EXPORT_SYMBOL vmlinux 0x3a3dcb60 tty_port_close +EXPORT_SYMBOL vmlinux 0x3a3e08aa skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0x3a419cf7 proc_set_size EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a5607f0 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x3a5984ad __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x3a7f68bd jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x3aa900f1 of_device_alloc +EXPORT_SYMBOL vmlinux 0x3a652ed1 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x3a9b71ef kernel_read +EXPORT_SYMBOL vmlinux 0x3ab34501 ip_sock_set_pktinfo EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ab7d1e6 setup_new_exec EXPORT_SYMBOL vmlinux 0x3abbbc22 dquot_quota_sync EXPORT_SYMBOL vmlinux 0x3ad6fd8e krait_get_l2_indirect_reg EXPORT_SYMBOL vmlinux 0x3b0f66d3 param_ops_charp EXPORT_SYMBOL vmlinux 0x3b299067 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x3b299f36 sk_reset_timer EXPORT_SYMBOL vmlinux 0x3b345f81 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x3b3af16a vfs_copy_file_range EXPORT_SYMBOL vmlinux 0x3b40879d check_zeroed_user -EXPORT_SYMBOL vmlinux 0x3b4b1db1 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x3b494e05 dev_printk_emit EXPORT_SYMBOL vmlinux 0x3b4c0201 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x3b540a6b qdisc_watchdog_init EXPORT_SYMBOL vmlinux 0x3b59563f inc_nlink EXPORT_SYMBOL vmlinux 0x3b5b5d21 fb_pan_display EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left EXPORT_SYMBOL vmlinux 0x3b69216a amba_device_register EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b6f0d1a delete_from_page_cache EXPORT_SYMBOL vmlinux 0x3b7ced95 sound_class -EXPORT_SYMBOL vmlinux 0x3b868c47 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x3b9fbd9d i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x3ba6d314 nf_ct_get_tuple_skb EXPORT_SYMBOL vmlinux 0x3bbc9515 pci_get_slot EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base -EXPORT_SYMBOL vmlinux 0x3bd5108b ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x3bd72aaa close_fd_get_file EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bf0d48e i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x3bfa751e ip_local_deliver +EXPORT_SYMBOL vmlinux 0x3bff8212 km_query EXPORT_SYMBOL vmlinux 0x3c009fd9 debugfs_create_automount EXPORT_SYMBOL vmlinux 0x3c080ae4 dqget -EXPORT_SYMBOL vmlinux 0x3c12aedc mmc_put_card EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c2ffdb0 jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c49f720 audit_log_start -EXPORT_SYMBOL vmlinux 0x3c4c2bdb netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0x3c5e3246 serio_close EXPORT_SYMBOL vmlinux 0x3c70140b uart_remove_one_port EXPORT_SYMBOL vmlinux 0x3c7e65ff blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x3c805cd8 ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0x3c8f6ef0 __xa_insert -EXPORT_SYMBOL vmlinux 0x3c8f957f phy_device_free +EXPORT_SYMBOL vmlinux 0x3c9d9004 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x3cc81bba xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0x3cd03088 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x3cd6d011 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x3ce3d75f reuseport_stop_listen_sock EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cf39918 sock_no_sendpage EXPORT_SYMBOL vmlinux 0x3cfd1574 fscrypt_zeroout_range EXPORT_SYMBOL vmlinux 0x3d03d131 kthread_bind -EXPORT_SYMBOL vmlinux 0x3d1067bb ip6_frag_init +EXPORT_SYMBOL vmlinux 0x3d1745fd inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0x3d1c38ba key_revoke -EXPORT_SYMBOL vmlinux 0x3d3734bc __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x3d2ff1c2 __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap -EXPORT_SYMBOL vmlinux 0x3d3c81b0 pneigh_lookup -EXPORT_SYMBOL vmlinux 0x3d3f62d8 __ClearPageMovable EXPORT_SYMBOL vmlinux 0x3d404ceb __vmalloc_array EXPORT_SYMBOL vmlinux 0x3d45b793 mdio_device_free +EXPORT_SYMBOL vmlinux 0x3d49f347 rawv6_mh_filter_register EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d5c1e2a devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x3d5711cc mmc_calc_max_discard EXPORT_SYMBOL vmlinux 0x3d62407c mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0x3d668bc2 filp_close -EXPORT_SYMBOL vmlinux 0x3d7c8854 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x3d769de6 dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0x3d91a178 ioc_lookup_icq EXPORT_SYMBOL vmlinux 0x3d93bb46 snd_dma_buffer_mmap EXPORT_SYMBOL vmlinux 0x3d9c8f9f kernel_param_lock EXPORT_SYMBOL vmlinux 0x3da6aa54 uart_register_driver -EXPORT_SYMBOL vmlinux 0x3db96987 netif_device_attach +EXPORT_SYMBOL vmlinux 0x3dacdb11 follow_pfn +EXPORT_SYMBOL vmlinux 0x3dbb1e22 vme_dma_list_add EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dcba984 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x3dcdeeae zap_page_range EXPORT_SYMBOL vmlinux 0x3dcf1ffa __wake_up +EXPORT_SYMBOL vmlinux 0x3dd76bda genphy_soft_reset EXPORT_SYMBOL vmlinux 0x3dd878a0 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x3ddbd4db ndisc_mc_map EXPORT_SYMBOL vmlinux 0x3ddc6d7e vm_node_stat +EXPORT_SYMBOL vmlinux 0x3de4395a generic_file_open EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head EXPORT_SYMBOL vmlinux 0x3e01de09 pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0x3e038f1f sock_set_mark -EXPORT_SYMBOL vmlinux 0x3e10c34a register_filesystem EXPORT_SYMBOL vmlinux 0x3e1e208a d_instantiate EXPORT_SYMBOL vmlinux 0x3e27cc38 bdev_read_only -EXPORT_SYMBOL vmlinux 0x3e28f95d scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x3e2c0e90 jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e75f497 lookup_one_len +EXPORT_SYMBOL vmlinux 0x3e46e601 nf_log_trace +EXPORT_SYMBOL vmlinux 0x3e632642 _dev_err EXPORT_SYMBOL vmlinux 0x3e82f3e9 get_random_bytes EXPORT_SYMBOL vmlinux 0x3e8608de rawnand_sw_hamming_cleanup EXPORT_SYMBOL vmlinux 0x3ea1b6e4 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x3ec732e4 netpoll_print_options EXPORT_SYMBOL vmlinux 0x3ec80fa0 _raw_spin_unlock_bh EXPORT_SYMBOL vmlinux 0x3ed104a5 xa_set_mark EXPORT_SYMBOL vmlinux 0x3ed156ee dma_async_tx_descriptor_init EXPORT_SYMBOL vmlinux 0x3ede6c7e dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x3eee6a63 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x3efce5d9 filemap_flush +EXPORT_SYMBOL vmlinux 0x3efce918 crypto_sha512_finup EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f18134c scsi_device_resume +EXPORT_SYMBOL vmlinux 0x3f056227 crypto_sha1_finup EXPORT_SYMBOL vmlinux 0x3f1dc04e pci_enable_device -EXPORT_SYMBOL vmlinux 0x3f3263b4 inet_select_addr -EXPORT_SYMBOL vmlinux 0x3f345dff netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x3f385d9b ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f4961e1 filemap_check_errors EXPORT_SYMBOL vmlinux 0x3f4af46f gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f4c6b99 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x3f5a629f jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x3f5bad1b generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0x3f62d048 dma_fence_init EXPORT_SYMBOL vmlinux 0x3f6a4495 snd_card_register -EXPORT_SYMBOL vmlinux 0x3f7d90f1 scmd_printk EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3fb427b2 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x3fbc8316 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x3fd0fcdc skb_split +EXPORT_SYMBOL vmlinux 0x3f92bc51 kernel_write EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fdcfa4d __generic_file_write_iter EXPORT_SYMBOL vmlinux 0x3fea538c hdmi_avi_infoframe_pack EXPORT_SYMBOL vmlinux 0x3ff8fa4c snd_ctl_register_ioctl -EXPORT_SYMBOL vmlinux 0x3ffbf176 pfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0x4009a16c phy_read_paged EXPORT_SYMBOL vmlinux 0x400b3ee0 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x40126c59 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x40133ce8 done_path_create -EXPORT_SYMBOL vmlinux 0x401e7149 vme_bus_type -EXPORT_SYMBOL vmlinux 0x40223f1e pid_task +EXPORT_SYMBOL vmlinux 0x4018cdb1 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x4037fc4d dev_mc_flush EXPORT_SYMBOL vmlinux 0x403a93e7 radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0x40411556 rpmh_write_async +EXPORT_SYMBOL vmlinux 0x40587875 jbd2_transaction_committed EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x405d7dd0 sock_set_priority -EXPORT_SYMBOL vmlinux 0x4063dcb2 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x4071159f dev_remove_pack EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 EXPORT_SYMBOL vmlinux 0x4079fe18 bmap EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma +EXPORT_SYMBOL vmlinux 0x4094560a skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b171a9 udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0x40b51c05 __sysfs_match_string EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d37042 vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0x40d402ad do_wait_intr EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40ee0557 phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0x40eed0df current_in_userns -EXPORT_SYMBOL vmlinux 0x40efa5c3 flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 -EXPORT_SYMBOL vmlinux 0x410aed1a ip6_output +EXPORT_SYMBOL vmlinux 0x4111bd48 pipe_unlock EXPORT_SYMBOL vmlinux 0x411fca8f pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x412a8d6f inet_bind +EXPORT_SYMBOL vmlinux 0x412b4250 devfreq_update_status EXPORT_SYMBOL vmlinux 0x412cf11f rproc_add EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x413eb6e5 inet_stream_ops EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user EXPORT_SYMBOL vmlinux 0x414975dd __genradix_prealloc -EXPORT_SYMBOL vmlinux 0x415bdbf4 locks_init_lock -EXPORT_SYMBOL vmlinux 0x415f11a0 tso_count_descs +EXPORT_SYMBOL vmlinux 0x4177f348 ping_prot +EXPORT_SYMBOL vmlinux 0x4185f7c5 xfrm6_input_addr EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x4190ff8f rtnl_unicast EXPORT_SYMBOL vmlinux 0x41b970ac fwnode_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x41bb84fc dma_fence_remove_callback EXPORT_SYMBOL vmlinux 0x41bf0058 backlight_device_set_brightness EXPORT_SYMBOL vmlinux 0x41c85074 snd_timer_continue -EXPORT_SYMBOL vmlinux 0x41cc225a vmf_insert_pfn_prot EXPORT_SYMBOL vmlinux 0x41db337f of_get_cpu_node -EXPORT_SYMBOL vmlinux 0x41f78780 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x41fa2e2f genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0x41ffbd06 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x42005266 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x41f9ed0f __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x41fd9508 nf_log_unset EXPORT_SYMBOL vmlinux 0x420405f9 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x4208f327 skb_free_datagram EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse -EXPORT_SYMBOL vmlinux 0x420e7e7c xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x420a1bd8 netdev_name_node_alt_destroy EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue EXPORT_SYMBOL vmlinux 0x421d4dcf krealloc -EXPORT_SYMBOL vmlinux 0x42211137 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x422aeff9 flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0x422f6d61 pcim_pin_device -EXPORT_SYMBOL vmlinux 0x422fc3b8 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x423ee6d0 mmc_retune_release +EXPORT_SYMBOL vmlinux 0x4240e6f0 xfrm_state_lookup EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp EXPORT_SYMBOL vmlinux 0x4253aa7e down_write EXPORT_SYMBOL vmlinux 0x42571873 processor +EXPORT_SYMBOL vmlinux 0x425e971f devfreq_update_interval EXPORT_SYMBOL vmlinux 0x42604384 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x42779ac1 sock_set_sndtimeo EXPORT_SYMBOL vmlinux 0x428806ec pcim_iounmap -EXPORT_SYMBOL vmlinux 0x42977ced scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x4289b3ae __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all -EXPORT_SYMBOL vmlinux 0x429dc46b twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x42a0af8e __ip_queue_xmit EXPORT_SYMBOL vmlinux 0x42a47e45 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x42a9adf6 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x42c0c49f inet6_bind +EXPORT_SYMBOL vmlinux 0x42b0b246 tso_build_data EXPORT_SYMBOL vmlinux 0x42c5a1a9 mpage_readpage +EXPORT_SYMBOL vmlinux 0x42ce7921 dev_change_flags EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x43176929 dcb_setapp EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate EXPORT_SYMBOL vmlinux 0x432215c9 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x432db978 netlink_ack -EXPORT_SYMBOL vmlinux 0x43366eb9 get_task_cred +EXPORT_SYMBOL vmlinux 0x432c077b __pagevec_release EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0x43440df8 thread_group_exited +EXPORT_SYMBOL vmlinux 0x43404ba6 sk_common_release +EXPORT_SYMBOL vmlinux 0x43479b21 try_to_release_page EXPORT_SYMBOL vmlinux 0x4350caee kobject_put EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x435fed09 trace_event_printf EXPORT_SYMBOL vmlinux 0x43641f91 igrab -EXPORT_SYMBOL vmlinux 0x4366c5e8 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x436b8fd7 skb_dequeue -EXPORT_SYMBOL vmlinux 0x4370c31f mmc_can_discard -EXPORT_SYMBOL vmlinux 0x43768647 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x4366835e sock_no_ioctl EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437e716d devfreq_recommended_opp EXPORT_SYMBOL vmlinux 0x4384eb42 __release_region +EXPORT_SYMBOL vmlinux 0x4385028f skb_flow_dissect_meta EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x439fc9be dev_addr_flush +EXPORT_SYMBOL vmlinux 0x43961c6f eth_get_headlen EXPORT_SYMBOL vmlinux 0x43a0e36d hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x43a1df54 phy_disconnect EXPORT_SYMBOL vmlinux 0x43a2b7cb rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x43a87908 flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43da864e generic_writepages EXPORT_SYMBOL vmlinux 0x43e57231 commit_creds EXPORT_SYMBOL vmlinux 0x43e6aed4 mod_node_page_state -EXPORT_SYMBOL vmlinux 0x43f77842 __kfree_skb EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x440b29d4 of_clk_get +EXPORT_SYMBOL vmlinux 0x441161cf jbd2_journal_stop EXPORT_SYMBOL vmlinux 0x4412c173 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x4422ce82 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x44234646 ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x442eead6 twl6040_set_pll EXPORT_SYMBOL vmlinux 0x442f6af7 dm_register_target EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer EXPORT_SYMBOL vmlinux 0x44469470 dmaenginem_async_device_register EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x444c0527 tcp_conn_request EXPORT_SYMBOL vmlinux 0x444cc8ed tcp_md5_needed +EXPORT_SYMBOL vmlinux 0x445f778f generic_block_bmap 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 0x44745e3b dev_set_group +EXPORT_SYMBOL vmlinux 0x447844a8 __kfree_skb +EXPORT_SYMBOL vmlinux 0x4480e8cd dcb_setapp EXPORT_SYMBOL vmlinux 0x44940616 get_tz_trend -EXPORT_SYMBOL vmlinux 0x4499bd8a xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x44a487e6 udp_poll +EXPORT_SYMBOL vmlinux 0x44a3282d flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x44a4cb3d skb_vlan_pop EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44b02ba3 datagram_poll EXPORT_SYMBOL vmlinux 0x44c5a6f3 dm_table_get_size EXPORT_SYMBOL vmlinux 0x44c9dc6c percpu_counter_destroy EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic EXPORT_SYMBOL vmlinux 0x44e66ed2 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44ef7074 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x44f50c1b scsi_host_get EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x4504b923 scsi_add_device EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id -EXPORT_SYMBOL vmlinux 0x450de827 phy_sfp_probe -EXPORT_SYMBOL vmlinux 0x4511dd09 ipmr_rule_default EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x452dd435 flush_signals EXPORT_SYMBOL vmlinux 0x4532f693 inode_insert5 EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x454d1326 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x456149ee skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x4564635f filemap_fault -EXPORT_SYMBOL vmlinux 0x4570adf4 sock_pfree -EXPORT_SYMBOL vmlinux 0x45763f63 xfrm_state_delete EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user EXPORT_SYMBOL vmlinux 0x457ab720 dm_put_device -EXPORT_SYMBOL vmlinux 0x45864241 udp_skb_destructor EXPORT_SYMBOL vmlinux 0x45911aa4 snd_info_free_entry -EXPORT_SYMBOL vmlinux 0x45950619 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x45a6bc53 jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0x45b33f42 edac_mc_find +EXPORT_SYMBOL vmlinux 0x45b7f2b0 tcp_prot EXPORT_SYMBOL vmlinux 0x45bd19de nla_strscpy EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low -EXPORT_SYMBOL vmlinux 0x45c648d4 inet6_release -EXPORT_SYMBOL vmlinux 0x45e5d792 xp_dma_unmap EXPORT_SYMBOL vmlinux 0x45fdee7f dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0x45ff27ba neigh_lookup EXPORT_SYMBOL vmlinux 0x46025ff1 of_parse_phandle -EXPORT_SYMBOL vmlinux 0x46093760 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x460adbc9 device_get_mac_address EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys EXPORT_SYMBOL vmlinux 0x46244c03 ns_capable +EXPORT_SYMBOL vmlinux 0x4626e12f inet_frag_destroy EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x463c8e5f load_nls +EXPORT_SYMBOL vmlinux 0x464d64cb tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0x46547591 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x4654d18b register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x465d4326 tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size EXPORT_SYMBOL vmlinux 0x46732633 vga_remove_vgacon EXPORT_SYMBOL vmlinux 0x46812028 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x468199bc tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0x46897e2c put_ipc_ns -EXPORT_SYMBOL vmlinux 0x468c956b invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0x469493ad param_get_long EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option EXPORT_SYMBOL vmlinux 0x469aa256 fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0x46b087ac genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x46b738cf jbd2_fc_end_commit EXPORT_SYMBOL vmlinux 0x46b747c6 request_key_rcu EXPORT_SYMBOL vmlinux 0x46c49bca pci_bus_assign_resources EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 @@ -7404,565 +7289,589 @@ EXPORT_SYMBOL vmlinux 0x46e504ef loop_register_transfer EXPORT_SYMBOL vmlinux 0x46e5ffc2 seq_dentry EXPORT_SYMBOL vmlinux 0x46e9194c t10_pi_type3_crc EXPORT_SYMBOL vmlinux 0x46fc1582 param_array_ops +EXPORT_SYMBOL vmlinux 0x4700bfb9 iw_handler_get_spy EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset EXPORT_SYMBOL vmlinux 0x47080ddd dm_kcopyd_zero EXPORT_SYMBOL vmlinux 0x470bc1a1 bio_devname -EXPORT_SYMBOL vmlinux 0x47297c06 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x4713641e stream_open +EXPORT_SYMBOL vmlinux 0x471ba2b8 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x47304d56 scsi_add_device +EXPORT_SYMBOL vmlinux 0x473c9216 ___pskb_trim EXPORT_SYMBOL vmlinux 0x47488396 __dquot_transfer EXPORT_SYMBOL vmlinux 0x4756260d ida_destroy EXPORT_SYMBOL vmlinux 0x475d84ef gen_pool_dma_alloc_algo EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x477ea87f vfs_fadvise EXPORT_SYMBOL vmlinux 0x478a2384 __cleancache_init_shared_fs EXPORT_SYMBOL vmlinux 0x478d9b84 ZSTD_isFrame EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x479972e9 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x47a03cca jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x47aa5c45 tcp_release_cb EXPORT_SYMBOL vmlinux 0x47b0eaa6 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x47b32b1e xfrm_parse_spi EXPORT_SYMBOL vmlinux 0x47b9c700 of_iomap EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier EXPORT_SYMBOL vmlinux 0x47d3e8ac pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x47ddb756 devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0x47e4559f set_posix_acl -EXPORT_SYMBOL vmlinux 0x47e691f0 jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range -EXPORT_SYMBOL vmlinux 0x47f42c82 netpoll_poll_disable EXPORT_SYMBOL vmlinux 0x47f757de elf_platform EXPORT_SYMBOL vmlinux 0x47fdd7bc simple_lookup EXPORT_SYMBOL vmlinux 0x480319c4 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x480b67a3 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x48035ca2 __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484b8bf1 devm_devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x485662d1 __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0x48571784 dma_sync_single_for_device EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days EXPORT_SYMBOL vmlinux 0x4862a915 param_set_charp -EXPORT_SYMBOL vmlinux 0x4865646e __lock_page +EXPORT_SYMBOL vmlinux 0x486dbea2 seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x487a04f7 refresh_frequency_limits EXPORT_SYMBOL vmlinux 0x48803b6e twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x4887103d netif_receive_skb +EXPORT_SYMBOL vmlinux 0x48857c8b tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x4888c567 flow_rule_match_enc_opts EXPORT_SYMBOL vmlinux 0x4895e9dd mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x48a5566a tcp_make_synack EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48ae4846 blk_get_queue -EXPORT_SYMBOL vmlinux 0x48b5ca69 path_is_under -EXPORT_SYMBOL vmlinux 0x48b7ffcb vm_map_pages +EXPORT_SYMBOL vmlinux 0x48b58ed8 scsi_device_quiesce EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free EXPORT_SYMBOL vmlinux 0x48bdff4d rtc_add_groups -EXPORT_SYMBOL vmlinux 0x48bf688b security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x48f5f8f9 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x48c360d3 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x48dded96 skb_copy_header +EXPORT_SYMBOL vmlinux 0x48eaf9ba devfreq_add_governor EXPORT_SYMBOL vmlinux 0x48f8e82a iov_iter_init +EXPORT_SYMBOL vmlinux 0x48fd0a93 xsk_set_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x49154014 nf_log_register -EXPORT_SYMBOL vmlinux 0x493379ac inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x49473fd6 sk_free +EXPORT_SYMBOL vmlinux 0x4908b79b ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x49136d18 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x4928813c mmc_cqe_request_done EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x4975ef66 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x49776099 skb_pull EXPORT_SYMBOL vmlinux 0x497eada7 mipi_dsi_host_register EXPORT_SYMBOL vmlinux 0x49871971 _raw_write_unlock_bh EXPORT_SYMBOL vmlinux 0x498cbce6 fault_in_iov_iter_readable -EXPORT_SYMBOL vmlinux 0x498f7967 xfrm6_input_addr EXPORT_SYMBOL vmlinux 0x49970de8 finish_wait -EXPORT_SYMBOL vmlinux 0x49b1f652 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x49a4aaea arp_send +EXPORT_SYMBOL vmlinux 0x49ac3352 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x49ae86d7 tcp_setsockopt EXPORT_SYMBOL vmlinux 0x49b66721 from_kprojid_munged EXPORT_SYMBOL vmlinux 0x49d61380 __traceiter_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x49e097d8 single_open_size EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit EXPORT_SYMBOL vmlinux 0x49f26466 kstrndup -EXPORT_SYMBOL vmlinux 0x4a1aab3b peernet2id +EXPORT_SYMBOL vmlinux 0x4a1bbe73 jbd2_journal_lock_updates EXPORT_SYMBOL vmlinux 0x4a2350bf mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x4a2473d8 can_nice -EXPORT_SYMBOL vmlinux 0x4a2d6577 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x4a239ada mmc_card_is_blockaddr EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params EXPORT_SYMBOL vmlinux 0x4a3cfce1 devm_pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL vmlinux 0x4a680798 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x4a7e3738 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x4a93339d dev_mc_add EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4aadd9ce netdev_state_change -EXPORT_SYMBOL vmlinux 0x4ab14f99 dev_get_flags -EXPORT_SYMBOL vmlinux 0x4abbec72 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x4aa2f34c inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x4aa687f6 tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0x4ac047c8 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x4ace602e dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x4ac376a9 skb_queue_tail EXPORT_SYMBOL vmlinux 0x4acee179 blk_queue_dma_alignment EXPORT_SYMBOL vmlinux 0x4adbaba7 __nla_put EXPORT_SYMBOL vmlinux 0x4ade86b5 hdmi_drm_infoframe_unpack_only EXPORT_SYMBOL vmlinux 0x4ae8ee66 __kfifo_dma_out_prepare_r EXPORT_SYMBOL vmlinux 0x4aecb2dc md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x4af29591 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x4af4c70a napi_get_frags EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 -EXPORT_SYMBOL vmlinux 0x4af9e661 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x4afae885 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x4b001f8e end_buffer_write_sync EXPORT_SYMBOL vmlinux 0x4b05d798 touchscreen_report_pos EXPORT_SYMBOL vmlinux 0x4b123382 d_hash_and_lookup EXPORT_SYMBOL vmlinux 0x4b1b9e5f pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x4b2fae89 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x4b412050 redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0x4b4c1464 snd_pcm_stop EXPORT_SYMBOL vmlinux 0x4b4cdd32 config_item_set_name EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b6b081c netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x4b7554f2 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x4b77e00a inet_csk_accept EXPORT_SYMBOL vmlinux 0x4b7ae484 snd_seq_root +EXPORT_SYMBOL vmlinux 0x4b8844d2 flow_rule_match_ipv4_addrs EXPORT_SYMBOL vmlinux 0x4ba5ef6d zpool_register_driver +EXPORT_SYMBOL vmlinux 0x4bc7d7c3 ipv6_chk_custom_prefix EXPORT_SYMBOL vmlinux 0x4be85a03 memweight EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name EXPORT_SYMBOL vmlinux 0x4bfa6dca blk_pm_runtime_init EXPORT_SYMBOL vmlinux 0x4bfdcefa __memset32 -EXPORT_SYMBOL vmlinux 0x4c05e564 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x4c0c892f netpoll_poll_enable EXPORT_SYMBOL vmlinux 0x4c0f4406 setattr_should_drop_sgid EXPORT_SYMBOL vmlinux 0x4c0fb335 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0x4c18581c __netlink_ns_capable EXPORT_SYMBOL vmlinux 0x4c1cca3b cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0x4c27aab3 netdev_change_features +EXPORT_SYMBOL vmlinux 0x4c1d3eb3 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c355df7 netdev_upper_get_next_dev_rcu EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast EXPORT_SYMBOL vmlinux 0x4c4f353d d_add EXPORT_SYMBOL vmlinux 0x4c4fd9c3 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x4c731d6a prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x4c4febe5 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x4c6335da security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x4c75be14 block_commit_write EXPORT_SYMBOL vmlinux 0x4c75c0a5 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x4c8bafc4 vfs_setpos +EXPORT_SYMBOL vmlinux 0x4c90fa21 genl_register_family EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cba48cf tcp_md5_hash_skb_data EXPORT_SYMBOL vmlinux 0x4cc2854d tegra114_clock_assert_dfll_dvco_reset EXPORT_SYMBOL vmlinux 0x4cd94b5b configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x4ce90144 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x4cf45db2 tcp_release_cb EXPORT_SYMBOL vmlinux 0x4cf8d348 dquot_quota_on_mount EXPORT_SYMBOL vmlinux 0x4cfaa0d3 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x4cfb00f9 i2c_add_adapter EXPORT_SYMBOL vmlinux 0x4cfdc2d2 of_graph_get_port_by_id EXPORT_SYMBOL vmlinux 0x4d0ca17c cdrom_release -EXPORT_SYMBOL vmlinux 0x4d0cd0f4 flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page EXPORT_SYMBOL vmlinux 0x4d0e74d8 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x4d1afb24 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x4d1c1596 nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0x4d23c7e9 nand_scan_with_ids EXPORT_SYMBOL vmlinux 0x4d343a67 simple_dir_operations EXPORT_SYMBOL vmlinux 0x4d34bc56 get_tree_bdev EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated EXPORT_SYMBOL vmlinux 0x4d514485 xa_store -EXPORT_SYMBOL vmlinux 0x4d54a4e3 wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0x4d57964f jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x4d68d255 rt_dst_clone EXPORT_SYMBOL vmlinux 0x4d6ae35f rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x4d717f1a skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0x4d7b9309 lock_two_nondirectories EXPORT_SYMBOL vmlinux 0x4d865182 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x4d97ac7f __vfs_removexattr EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL vmlinux 0x4d9b8f97 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x4d9b9465 mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0x4db6ddd3 of_get_property -EXPORT_SYMBOL vmlinux 0x4dc275f5 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x4dc6c66e phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x4dc8b5d8 jbd2_journal_forget EXPORT_SYMBOL vmlinux 0x4dce47d8 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x4ddfd2c7 skb_kill_datagram EXPORT_SYMBOL vmlinux 0x4dec6038 memscan EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4dfa8379 tcf_generic_walker EXPORT_SYMBOL vmlinux 0x4e05bdec mempool_init_node -EXPORT_SYMBOL vmlinux 0x4e0cc643 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x4e1577c9 netlink_kernel_release EXPORT_SYMBOL vmlinux 0x4e15e4d9 of_graph_get_remote_port EXPORT_SYMBOL vmlinux 0x4e162fa9 redraw_screen EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e3e8162 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x4e435be0 vfs_fsync EXPORT_SYMBOL vmlinux 0x4e5458d5 framebuffer_release +EXPORT_SYMBOL vmlinux 0x4e5eb17d inet_sendmsg EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e75f75a vfs_get_fsid -EXPORT_SYMBOL vmlinux 0x4e7e4efc unregister_filesystem EXPORT_SYMBOL vmlinux 0x4e80d27c ucc_fast_enable -EXPORT_SYMBOL vmlinux 0x4e945a6b phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0x4e95cbef find_inode_by_ino_rcu EXPORT_SYMBOL vmlinux 0x4e9ef354 input_release_device EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4eafddaa read_cache_page +EXPORT_SYMBOL vmlinux 0x4eb35b21 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x4eb51d23 skb_eth_push EXPORT_SYMBOL vmlinux 0x4eb6f77f generic_read_dir +EXPORT_SYMBOL vmlinux 0x4eb84102 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x4ec489a7 genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x4ec8d8a1 snd_ctl_notify_one -EXPORT_SYMBOL vmlinux 0x4edb41e6 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x4ed86d1e tcp_make_synack EXPORT_SYMBOL vmlinux 0x4ee0e846 ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x4ee11f33 no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x4ee325ea tc_setup_flow_action EXPORT_SYMBOL vmlinux 0x4ee98ebd tcp_have_smc -EXPORT_SYMBOL vmlinux 0x4f12093e __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x4eec7cb2 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x4eef0ea1 skb_seq_read EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create EXPORT_SYMBOL vmlinux 0x4f1d648e dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f41f7a2 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x4f26faaa skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x4f3b155b jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x4f571a3e sock_set_priority +EXPORT_SYMBOL vmlinux 0x4f57fd47 generic_perform_write EXPORT_SYMBOL vmlinux 0x4f58b9a5 __of_get_address -EXPORT_SYMBOL vmlinux 0x4f5cf8f3 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x4f62455c nf_ip_checksum EXPORT_SYMBOL vmlinux 0x4f6e5a56 bioset_init_from_src EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian EXPORT_SYMBOL vmlinux 0x4f886af9 pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free -EXPORT_SYMBOL vmlinux 0x4f9b750b dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0x4faed07a twl6040_get_pll EXPORT_SYMBOL vmlinux 0x4fbce4b9 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x4fbe5c75 skb_copy_expand EXPORT_SYMBOL vmlinux 0x4fbeb307 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x4fd21c1e inet6_add_offload +EXPORT_SYMBOL vmlinux 0x4fc621a8 __break_lease EXPORT_SYMBOL vmlinux 0x4fddc116 path_has_submounts EXPORT_SYMBOL vmlinux 0x4fdef8ec seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x4fe23966 udp_lib_getsockopt EXPORT_SYMBOL vmlinux 0x4fef3ef4 completion_done EXPORT_SYMBOL vmlinux 0x4ff694b0 kobject_set_name +EXPORT_SYMBOL vmlinux 0x4ffb2eaf rtnl_notify EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree -EXPORT_SYMBOL vmlinux 0x50005857 fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x5011515a inet_frag_find +EXPORT_SYMBOL vmlinux 0x500e5ac5 dst_destroy EXPORT_SYMBOL vmlinux 0x502b6647 mempool_create_node +EXPORT_SYMBOL vmlinux 0x5037e2ca put_cmsg EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL vmlinux 0x5047c34b vfs_symlink EXPORT_SYMBOL vmlinux 0x504e8a73 put_disk EXPORT_SYMBOL vmlinux 0x50546ff3 mipi_dsi_dcs_set_display_brightness_large EXPORT_SYMBOL vmlinux 0x5055f68b give_up_console EXPORT_SYMBOL vmlinux 0x50624917 sha1_init EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x506f6047 icmp6_send -EXPORT_SYMBOL vmlinux 0x5074a96d udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x5078a8fe tcp_parse_options -EXPORT_SYMBOL vmlinux 0x507d9da7 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x50896c71 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x508151ff tcp_recvmsg EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x509112f0 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x509167fd netdev_printk +EXPORT_SYMBOL vmlinux 0x5091d719 jbd2_journal_revoke EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50a7937f scsi_target_resume EXPORT_SYMBOL vmlinux 0x50aebe03 tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x50b68c19 i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security EXPORT_SYMBOL vmlinux 0x50cecdc2 mipi_dsi_device_register_full EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf EXPORT_SYMBOL vmlinux 0x50d71bcf gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x50ded125 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x50e67a56 scsi_ioctl EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc -EXPORT_SYMBOL vmlinux 0x50fa0fea phy_trigger_machine EXPORT_SYMBOL vmlinux 0x50fd6103 dma_fence_signal +EXPORT_SYMBOL vmlinux 0x510cc889 reuseport_detach_prog EXPORT_SYMBOL vmlinux 0x51109cc1 blk_integrity_register EXPORT_SYMBOL vmlinux 0x51208e52 kill_block_super +EXPORT_SYMBOL vmlinux 0x5122a457 mmc_get_card +EXPORT_SYMBOL vmlinux 0x512ce0d3 dev_loopback_xmit EXPORT_SYMBOL vmlinux 0x51480110 __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0x514a62ec dq_data_lock EXPORT_SYMBOL vmlinux 0x514b16cb pci_scan_bridge EXPORT_SYMBOL vmlinux 0x514e6f9e __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x5156376e sock_alloc EXPORT_SYMBOL vmlinux 0x515a8f2f tty_port_block_til_ready EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend EXPORT_SYMBOL vmlinux 0x517018a2 sgl_alloc_order EXPORT_SYMBOL vmlinux 0x5170b1dc bdevname -EXPORT_SYMBOL vmlinux 0x518aa24c send_sig_info +EXPORT_SYMBOL vmlinux 0x518cc48e xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0x51a910c0 arm_copy_to_user +EXPORT_SYMBOL vmlinux 0x51a943c6 inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0x51b5ad76 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x51b7b65a scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x51d8b927 vfs_ioctl EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51f027bd __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x51f54c2d xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x52000726 vme_dma_request EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready EXPORT_SYMBOL vmlinux 0x5216c317 max8998_update_reg EXPORT_SYMBOL vmlinux 0x522fb0e4 __hsiphash_unaligned EXPORT_SYMBOL vmlinux 0x523e57aa ZSTD_getDictID_fromDict +EXPORT_SYMBOL vmlinux 0x5258ad1a __put_page EXPORT_SYMBOL vmlinux 0x5259f392 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x525ce99d vm_insert_pages +EXPORT_SYMBOL vmlinux 0x525d9e94 inet_getname EXPORT_SYMBOL vmlinux 0x525fd8d2 dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x525fdb7c eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x526fe3ad mmc_retune_unpause EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer EXPORT_SYMBOL vmlinux 0x529ceb3f pcix_get_max_mmrbc EXPORT_SYMBOL vmlinux 0x52a5a039 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x52beffc0 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x52bfa55f filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x52c15d3e sdev_prefix_printk EXPORT_SYMBOL vmlinux 0x52c1e4d4 mipi_dsi_turn_on_peripheral EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52dbb680 sync_filesystem +EXPORT_SYMBOL vmlinux 0x52dfa1ca genphy_read_lpa EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL vmlinux 0x52eeeda4 mark_buffer_dirty EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start EXPORT_SYMBOL vmlinux 0x52f55b2d md_reload_sb EXPORT_SYMBOL vmlinux 0x53090228 blk_mq_tag_to_rq EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend EXPORT_SYMBOL vmlinux 0x53213f86 pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0x53314918 tcf_exts_validate EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf EXPORT_SYMBOL vmlinux 0x536060af radix_tree_lookup_slot EXPORT_SYMBOL vmlinux 0x5369993e pcie_port_service_unregister EXPORT_SYMBOL vmlinux 0x536eb926 snd_timer_notify EXPORT_SYMBOL vmlinux 0x53789c1e snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0x53876afc mr_dump EXPORT_SYMBOL vmlinux 0x539891c4 param_set_hexint +EXPORT_SYMBOL vmlinux 0x53a26216 page_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x53aeb013 hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x53beb996 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x53c21a9a netdev_warn +EXPORT_SYMBOL vmlinux 0x53b7535a phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x53be1fa2 phy_trigger_machine EXPORT_SYMBOL vmlinux 0x53c5f44d sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x53e38df5 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x540f99c7 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x53cb95b0 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x53d31d9c xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x53dc747b dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x53f29aaf nf_ip_checksum EXPORT_SYMBOL vmlinux 0x541524da cdrom_ioctl EXPORT_SYMBOL vmlinux 0x542442e6 save_stack_trace_tsk -EXPORT_SYMBOL vmlinux 0x54327829 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x542f30bd blackhole_netdev +EXPORT_SYMBOL vmlinux 0x5430ebb8 fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x544a5391 mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x54688a60 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x5441941f tcp_seq_next +EXPORT_SYMBOL vmlinux 0x54633ca5 tcp_getsockopt EXPORT_SYMBOL vmlinux 0x546a6edd backlight_force_update -EXPORT_SYMBOL vmlinux 0x54906d8b phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0x54abaf14 napi_build_skb +EXPORT_SYMBOL vmlinux 0x5472c026 dev_mc_init +EXPORT_SYMBOL vmlinux 0x548da96a phy_set_asym_pause EXPORT_SYMBOL vmlinux 0x54ad3c3e of_find_property +EXPORT_SYMBOL vmlinux 0x54aeb179 sync_inode_metadata EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value EXPORT_SYMBOL vmlinux 0x54b823a6 of_get_parent +EXPORT_SYMBOL vmlinux 0x54c38f7b mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0x54c89b2e mipi_dsi_picture_parameter_set EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp EXPORT_SYMBOL vmlinux 0x54ed5f06 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x54fe895e xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x5504d469 netdev_get_xmit_slave EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit EXPORT_SYMBOL vmlinux 0x551809d9 dm_io -EXPORT_SYMBOL vmlinux 0x551a23b9 ip_setsockopt EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x5528d0f8 generic_copy_file_range EXPORT_SYMBOL vmlinux 0x55300e51 page_pool_update_nid EXPORT_SYMBOL vmlinux 0x5545a639 ns_capable_noaudit EXPORT_SYMBOL vmlinux 0x554ac97b netdev_stats_to_stats64 EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched EXPORT_SYMBOL vmlinux 0x555c7390 blk_mq_stop_hw_queue EXPORT_SYMBOL vmlinux 0x5562e403 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x5582761b security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x559fe55c scsi_eh_prep_cmnd EXPORT_SYMBOL vmlinux 0x55a51e85 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x55c1489f __break_lease -EXPORT_SYMBOL vmlinux 0x55cdcbf6 release_sock -EXPORT_SYMBOL vmlinux 0x55cebb57 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x55d1df87 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x55a7eb9d dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x55b030f3 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x55ba16d7 dev_get_stats EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55e4b8ff __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x55e76c35 wait_on_page_bit EXPORT_SYMBOL vmlinux 0x55eb869a _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x55f1a0ca tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0x55f1b523 dst_alloc +EXPORT_SYMBOL vmlinux 0x55ef89ba write_dirty_buffer EXPORT_SYMBOL vmlinux 0x55f9077b get_acl -EXPORT_SYMBOL vmlinux 0x5618f6ec sk_stop_timer +EXPORT_SYMBOL vmlinux 0x55feb55d mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x560897b8 try_to_writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x561a341b __blk_mq_end_request EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x563eb1ce nf_log_unset +EXPORT_SYMBOL vmlinux 0x56479742 generic_write_checks EXPORT_SYMBOL vmlinux 0x56498087 paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x565891ea xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x565aa49f dump_skip +EXPORT_SYMBOL vmlinux 0x565c286a flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x5666fbaa xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x566b181c mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x566cba5f skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x567ca851 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x5677e076 __brelse EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x56940bbe __register_binfmt EXPORT_SYMBOL vmlinux 0x569db5ab pci_dev_driver +EXPORT_SYMBOL vmlinux 0x56a0d4ac vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x56a9704d mmc_can_trim EXPORT_SYMBOL vmlinux 0x56afbd6e mfd_remove_devices EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cb13f7 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x56cb2338 vfs_get_link EXPORT_SYMBOL vmlinux 0x56e3547c fb_find_mode EXPORT_SYMBOL vmlinux 0x56ec5c93 vm_map_ram EXPORT_SYMBOL vmlinux 0x56f72161 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x570dded8 gnet_stats_finish_copy EXPORT_SYMBOL vmlinux 0x57170188 __blockdev_direct_IO EXPORT_SYMBOL vmlinux 0x57246723 pci_dev_get EXPORT_SYMBOL vmlinux 0x5726d99e mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x573b765b devfreq_monitor_stop EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region EXPORT_SYMBOL vmlinux 0x5756f8be d_obtain_alias EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575e8bd6 mdiobus_read -EXPORT_SYMBOL vmlinux 0x575e90e6 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x57621585 submit_bio EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x57758c7c tcf_get_next_chain EXPORT_SYMBOL vmlinux 0x577c163c tegra_dfll_runtime_resume -EXPORT_SYMBOL vmlinux 0x5783fe8f unlock_page_memcg -EXPORT_SYMBOL vmlinux 0x5787b786 xattr_full_name -EXPORT_SYMBOL vmlinux 0x5796c528 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x579d9fdc dump_align +EXPORT_SYMBOL vmlinux 0x57889ec7 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x578ac244 __lock_sock_fast EXPORT_SYMBOL vmlinux 0x57a3fc06 is_firmware_framebuffer +EXPORT_SYMBOL vmlinux 0x57cdc489 pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0x57ceedb1 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x57d374b6 scm_fp_dup EXPORT_SYMBOL vmlinux 0x57d9449d devm_rproc_add +EXPORT_SYMBOL vmlinux 0x57e03930 fib_default_rule_add EXPORT_SYMBOL vmlinux 0x57e5170c qcom_scm_iommu_secure_ptbl_size EXPORT_SYMBOL vmlinux 0x57ecc44c snd_ctl_remove EXPORT_SYMBOL vmlinux 0x57edd02e invalidate_mapping_pages EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info -EXPORT_SYMBOL vmlinux 0x57fb2620 dev_close EXPORT_SYMBOL vmlinux 0x57ff23f0 ZSTD_getFrameContentSize EXPORT_SYMBOL vmlinux 0x57ff3d5d __kmap_local_page_prot EXPORT_SYMBOL vmlinux 0x580525e2 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x58075788 ip_options_compile EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581cde4e up EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58296b21 __bread_gfp EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x58348b6b fwnode_irq_get EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x584075ef write_cache_pages +EXPORT_SYMBOL vmlinux 0x584cad8d sock_no_linger EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack -EXPORT_SYMBOL vmlinux 0x58530b5b sock_enable_timestamps EXPORT_SYMBOL vmlinux 0x58540bf0 rawnand_sw_hamming_init EXPORT_SYMBOL vmlinux 0x5855b740 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0x58699e4c dev_get_mac_address EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58c61ad2 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x58d687c2 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x58dc90fb i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e4db6b ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x58e88f73 __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0x58fad869 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x5911f2b0 __brelse -EXPORT_SYMBOL vmlinux 0x59281c95 tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0x59155abc jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x591961c0 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x591a7400 phy_stop +EXPORT_SYMBOL vmlinux 0x591f42cd __xfrm_decode_session EXPORT_SYMBOL vmlinux 0x592b5bd9 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x59318718 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x59488c73 sock_no_connect EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x5955a8c8 nobh_writepage EXPORT_SYMBOL vmlinux 0x5955ebb4 pcix_get_mmrbc EXPORT_SYMBOL vmlinux 0x595952cf hmm_range_fault EXPORT_SYMBOL vmlinux 0x596a1261 bioset_init +EXPORT_SYMBOL vmlinux 0x597c2e01 kfree_skb_partial EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x599e6c6d nf_ct_get_tuple_skb EXPORT_SYMBOL vmlinux 0x59a17bfc tegra114_clock_tune_cpu_trimmers_high -EXPORT_SYMBOL vmlinux 0x59a3cb70 path_get EXPORT_SYMBOL vmlinux 0x59b1d17c pci_add_resource EXPORT_SYMBOL vmlinux 0x59b7cab6 mempool_resize EXPORT_SYMBOL vmlinux 0x59bbb987 dma_resv_add_excl_fence EXPORT_SYMBOL vmlinux 0x59c3c4b4 dma_unmap_resource EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area -EXPORT_SYMBOL vmlinux 0x59d73a50 kfree_skb_partial EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 EXPORT_SYMBOL vmlinux 0x59e7b868 _copy_from_iter EXPORT_SYMBOL vmlinux 0x59f4f95d init_special_inode EXPORT_SYMBOL vmlinux 0x59fe54cf set_bdi_congested -EXPORT_SYMBOL vmlinux 0x5a0774a5 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x5a0b618d sk_page_frag_refill EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0e037e netdev_err EXPORT_SYMBOL vmlinux 0x5a14de15 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x5a18a6bf splice_direct_to_actor EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a640da2 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x5a53a787 sock_init_data +EXPORT_SYMBOL vmlinux 0x5a6a6b8c tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x5a6b41ef skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x5a7e153e __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x5a7eac00 may_umount EXPORT_SYMBOL vmlinux 0x5a80282a d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x5a8367d9 devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x5a84ee33 rproc_detach EXPORT_SYMBOL vmlinux 0x5a8b7af7 tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x5a95f954 mmc_command_done EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5ab6557c iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x5acbc1bd devfreq_add_device +EXPORT_SYMBOL vmlinux 0x5a9e9735 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x5ac7b987 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x5ad0c669 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x5ad1843c fget EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree EXPORT_SYMBOL vmlinux 0x5ae68842 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x5aecebcc inode_get_bytes EXPORT_SYMBOL vmlinux 0x5afe77ee mount_single EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq EXPORT_SYMBOL vmlinux 0x5b062284 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0x5b12f57b sock_i_ino EXPORT_SYMBOL vmlinux 0x5b18b44b __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x5b1c839c mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x5b1ddba9 ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0x5b2475f7 nla_put_64bit -EXPORT_SYMBOL vmlinux 0x5b290f3f netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0x5b2a8b90 snd_unregister_oss_device EXPORT_SYMBOL vmlinux 0x5b2ce32c snd_jack_new EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b68cb7b ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x5b6f71b1 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x5b71c4c9 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x5b724046 skb_find_text -EXPORT_SYMBOL vmlinux 0x5b85e296 tcf_block_put -EXPORT_SYMBOL vmlinux 0x5b91a4c7 tcf_idr_create -EXPORT_SYMBOL vmlinux 0x5b9da664 dev_change_flags -EXPORT_SYMBOL vmlinux 0x5bb4bdf4 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x5b3db6c1 phy_connect +EXPORT_SYMBOL vmlinux 0x5b575369 page_get_link +EXPORT_SYMBOL vmlinux 0x5b764d3c unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x5b7ff25e done_path_create +EXPORT_SYMBOL vmlinux 0x5baca5af inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x5bbd7535 skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0x5bbe49f4 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x5bc2060d neigh_seq_start -EXPORT_SYMBOL vmlinux 0x5bc4c0e4 xfrm_stateonly_find EXPORT_SYMBOL vmlinux 0x5bca343f md_integrity_add_rdev EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create EXPORT_SYMBOL vmlinux 0x5bda4214 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x5be210ba fd_install EXPORT_SYMBOL vmlinux 0x5be4de28 file_remove_privs EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bf8b8e8 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x5c128be5 flow_rule_match_ip EXPORT_SYMBOL vmlinux 0x5c12dad4 vme_alloc_consistent EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull EXPORT_SYMBOL vmlinux 0x5c40b4f0 iov_iter_xarray -EXPORT_SYMBOL vmlinux 0x5c5aa9d3 __skb_checksum EXPORT_SYMBOL vmlinux 0x5c652a1b vma_set_file +EXPORT_SYMBOL vmlinux 0x5c6c3a03 posix_lock_file EXPORT_SYMBOL vmlinux 0x5c716976 hdmi_audio_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x5c7f1284 int_sqrt64 -EXPORT_SYMBOL vmlinux 0x5c8b7a68 xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0x5c8fbe06 input_close_device EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id -EXPORT_SYMBOL vmlinux 0x5c9891ff sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x5c9b4338 __vfs_setxattr EXPORT_SYMBOL vmlinux 0x5cb1492a of_get_next_cpu_node EXPORT_SYMBOL vmlinux 0x5cbd8e69 __crc32c_le +EXPORT_SYMBOL vmlinux 0x5cc9387c flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x5ccd4dbc dst_dev_put +EXPORT_SYMBOL vmlinux 0x5cd9bee1 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x5cf2c654 generic_listxattr EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cfd079a qdisc_create_dflt EXPORT_SYMBOL vmlinux 0x5d194384 d_tmpfile -EXPORT_SYMBOL vmlinux 0x5d2507bf ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x5d1f520c neigh_seq_start EXPORT_SYMBOL vmlinux 0x5d37d658 dim_park_tired EXPORT_SYMBOL vmlinux 0x5d3ac32d get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x5d3b3efa genphy_write_mmd_unsupported EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry EXPORT_SYMBOL vmlinux 0x5d4c6e9e dma_resv_fini -EXPORT_SYMBOL vmlinux 0x5d7c8602 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x5d7edf88 of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x5d6044e2 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x5d74c06d qdisc_reset EXPORT_SYMBOL vmlinux 0x5d81f6e2 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x5d85f5b7 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x5d8f0071 ip_output -EXPORT_SYMBOL vmlinux 0x5d95cd3e register_console -EXPORT_SYMBOL vmlinux 0x5da8f4c4 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x5dac7a63 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x5d8a6ca9 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x5da1c771 kern_path EXPORT_SYMBOL vmlinux 0x5dad4ba3 dquot_quota_on EXPORT_SYMBOL vmlinux 0x5daffcf4 blkdev_get_by_path EXPORT_SYMBOL vmlinux 0x5db93e15 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL vmlinux 0x5db97fb8 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0x5dba71d7 sg_last -EXPORT_SYMBOL vmlinux 0x5dc0d382 tcp_fastopen_defer_connect EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache +EXPORT_SYMBOL vmlinux 0x5dd871ad netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0x5ddac875 abort_creds EXPORT_SYMBOL vmlinux 0x5ddd82e8 __blkdev_issue_discard EXPORT_SYMBOL vmlinux 0x5de5cca2 utf8_normalize EXPORT_SYMBOL vmlinux 0x5de7bc1e cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x5df1dd01 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x5df56499 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x5dea710a __set_page_dirty_nobuffers EXPORT_SYMBOL vmlinux 0x5df74c55 dquot_reclaim_space_nodirty EXPORT_SYMBOL vmlinux 0x5dfcb1b9 param_set_int -EXPORT_SYMBOL vmlinux 0x5dfd8b54 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x5e0671c3 set_binfmt EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e22d90e skb_clone +EXPORT_SYMBOL vmlinux 0x5e1d1aba alloc_fcdev EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe EXPORT_SYMBOL vmlinux 0x5e38c830 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x5e394cfc mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x5e453bc6 dev_set_alias -EXPORT_SYMBOL vmlinux 0x5e48a52a neigh_table_clear -EXPORT_SYMBOL vmlinux 0x5e4a05fc mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x5e394b85 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x5e3cc1e8 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x5e4c0327 sock_init_data_uid EXPORT_SYMBOL vmlinux 0x5e6a2a16 md_done_sync EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping -EXPORT_SYMBOL vmlinux 0x5e6f98b7 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x5e773b20 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x5e7cea8b bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x5e716ac4 __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5e96aaaa __napi_schedule -EXPORT_SYMBOL vmlinux 0x5e97300d scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x5eabf71f phy_init_hw EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5eb6c0f2 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x5ec4a196 generic_file_mmap 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 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5ef115fa of_phy_deregister_fixed_link EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f1f59e9 vme_slave_request +EXPORT_SYMBOL vmlinux 0x5f09931a mmc_can_discard +EXPORT_SYMBOL vmlinux 0x5f2105d9 qdisc_put_unlocked EXPORT_SYMBOL vmlinux 0x5f3ef22d devm_extcon_register_notifier EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f637101 mr_table_alloc EXPORT_SYMBOL vmlinux 0x5f754e5a memset -EXPORT_SYMBOL vmlinux 0x5f95c091 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x5f9c4b42 phy_find_first +EXPORT_SYMBOL vmlinux 0x5fac6f9a ppp_register_compressor EXPORT_SYMBOL vmlinux 0x5fb01358 alloc_pages_exact EXPORT_SYMBOL vmlinux 0x5fb9b2d7 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x5fb9e240 inet_release -EXPORT_SYMBOL vmlinux 0x5fc6da79 neigh_for_each -EXPORT_SYMBOL vmlinux 0x5fdef678 kernel_read +EXPORT_SYMBOL vmlinux 0x5fcc128c netlink_ack +EXPORT_SYMBOL vmlinux 0x5fe3dee4 ipv6_push_frag_opts EXPORT_SYMBOL vmlinux 0x5fe9a47c proc_set_user EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io EXPORT_SYMBOL vmlinux 0x5ffc98f6 dma_resv_init EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x6020e5ef devfreq_update_target EXPORT_SYMBOL vmlinux 0x602620d9 blk_mq_queue_stopped EXPORT_SYMBOL vmlinux 0x602631ee tegra_ahb_enable_smmu EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio EXPORT_SYMBOL vmlinux 0x603286b8 utf8_casefold EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60466089 follow_down +EXPORT_SYMBOL vmlinux 0x60443bc0 lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0x604d1a71 config_item_get_unless_zero EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x60724914 mmc_request_done EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region EXPORT_SYMBOL vmlinux 0x6098f7ed cgroup_bpf_enabled_key EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609de738 generic_permission EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off EXPORT_SYMBOL vmlinux 0x60bffe6d div64_u64 -EXPORT_SYMBOL vmlinux 0x60c23ff9 sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0x60c4572b input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x60c54fb1 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x60d17033 ether_setup +EXPORT_SYMBOL vmlinux 0x60d8a007 rt_dst_alloc EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60e60f47 xsk_tx_release +EXPORT_SYMBOL vmlinux 0x60f1d85c udp_gro_receive EXPORT_SYMBOL vmlinux 0x6107a7a4 mipi_dsi_dcs_enter_sleep_mode EXPORT_SYMBOL vmlinux 0x61175f97 snd_timer_instance_new EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init @@ -7970,426 +7879,433 @@ EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit EXPORT_SYMBOL vmlinux 0x61339d81 zero_fill_bio EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get EXPORT_SYMBOL vmlinux 0x613d8fae rproc_put -EXPORT_SYMBOL vmlinux 0x61565c48 page_cache_next_miss EXPORT_SYMBOL vmlinux 0x6156c7f4 net_dim EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x61646d29 skb_vlan_push EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x6168f693 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x61b24cc6 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x61881384 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x618fb5dd __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x61a341cf mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x61a8c9e7 unix_detach_fds EXPORT_SYMBOL vmlinux 0x61b76bb9 smp_call_function_many EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull EXPORT_SYMBOL vmlinux 0x61c76b3a proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x61caee85 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0x61de2dc6 __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61e30d22 tcp_connect +EXPORT_SYMBOL vmlinux 0x61e4dbe4 mnt_set_expiry EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61f40d7d init_task EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x621c539c netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x621dce67 mmc_add_host -EXPORT_SYMBOL vmlinux 0x6228277f copy_string_kernel +EXPORT_SYMBOL vmlinux 0x6223c6c4 dev_add_pack EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x623f79a7 mntput +EXPORT_SYMBOL vmlinux 0x6244655a alloc_fddidev EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x627c1c49 i2c_verify_client EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x629cf00f xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x62b001de in6_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x62b9567c override_creds EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62df1694 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x62ed4f0f rtnl_notify +EXPORT_SYMBOL vmlinux 0x62cff099 fget_raw EXPORT_SYMBOL vmlinux 0x62f576d9 trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0x63179583 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x6303c687 generic_fillattr EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x631e9be7 ipv6_select_ident EXPORT_SYMBOL vmlinux 0x63231d35 omap_get_dma_src_pos -EXPORT_SYMBOL vmlinux 0x632b0f56 rt_dst_alloc -EXPORT_SYMBOL vmlinux 0x632bbaaa vme_unregister_driver EXPORT_SYMBOL vmlinux 0x632c07fb snd_card_new EXPORT_SYMBOL vmlinux 0x6333fda8 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0x633e67a5 phy_connect EXPORT_SYMBOL vmlinux 0x6342f99f mipi_dsi_create_packet EXPORT_SYMBOL vmlinux 0x634a9e41 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x634e7f5b jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x63547abd inet_put_port EXPORT_SYMBOL vmlinux 0x63551b66 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x636069dd netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x636fa8c0 flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x6378a04f netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x638523b0 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x6363b14e qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0x638f8dca param_get_uint EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63af543a vme_dma_request +EXPORT_SYMBOL vmlinux 0x63ba8edc send_sig_info EXPORT_SYMBOL vmlinux 0x63bc0f7d nand_ecc_prepare_io_req EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight EXPORT_SYMBOL vmlinux 0x63d97db5 d_delete +EXPORT_SYMBOL vmlinux 0x63e72f29 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x63eb7db3 udp_lib_get_port EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink EXPORT_SYMBOL vmlinux 0x63f1fd8a fs_param_is_s32 EXPORT_SYMBOL vmlinux 0x63f57750 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x63f96dd3 netdev_err EXPORT_SYMBOL vmlinux 0x63fbe5a1 padata_free_shell +EXPORT_SYMBOL vmlinux 0x640fc1da __mmc_claim_host EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6428f2b3 sk_stream_wait_close EXPORT_SYMBOL vmlinux 0x64419840 md_handle_request EXPORT_SYMBOL vmlinux 0x64459fda pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x64527f7d phy_start_aneg -EXPORT_SYMBOL vmlinux 0x6455105e mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0x64764baa pcix_set_mmrbc EXPORT_SYMBOL vmlinux 0x647af474 prepare_to_wait_event EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 EXPORT_SYMBOL vmlinux 0x64833350 i2c_smbus_pec EXPORT_SYMBOL vmlinux 0x6489c198 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x648d0637 open_exec EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x649417e5 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x64955049 __module_get EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait EXPORT_SYMBOL vmlinux 0x649b2ad5 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x649f62f8 tcf_idr_search EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64bc76fa eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x64dc900c tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x64cf3639 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x64cf403b sock_recv_errqueue EXPORT_SYMBOL vmlinux 0x64fbd6ba pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x6504c651 fs_context_for_submount 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 0x65215a6f inet_listen EXPORT_SYMBOL vmlinux 0x652c2bf3 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x653449d3 update_devfreq +EXPORT_SYMBOL vmlinux 0x653192ec sk_free EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop +EXPORT_SYMBOL vmlinux 0x654abd29 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x654c03e9 __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0x65511378 nand_read_oob_std -EXPORT_SYMBOL vmlinux 0x6552d457 finish_swait -EXPORT_SYMBOL vmlinux 0x6558878c __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0x655b383c of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x655ba4e8 dev_get_by_name EXPORT_SYMBOL vmlinux 0x655bfcc1 blkdev_issue_discard EXPORT_SYMBOL vmlinux 0x65738f9e da903x_query_status EXPORT_SYMBOL vmlinux 0x6578533e prepare_to_wait +EXPORT_SYMBOL vmlinux 0x657f885d filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset EXPORT_SYMBOL vmlinux 0x65984b39 pci_release_region -EXPORT_SYMBOL vmlinux 0x659aba50 shmem_aops EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a67dfa security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x65c06793 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x65d248f5 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x65a2ed01 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x65a37ed8 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x65be854e thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0x65d411e9 idr_get_next EXPORT_SYMBOL vmlinux 0x65d560bd deactivate_super EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65dee499 nobh_writepage -EXPORT_SYMBOL vmlinux 0x65e3f1f8 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x65f84c3a generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0x65faebb8 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x660be39c finish_swait EXPORT_SYMBOL vmlinux 0x661793c5 snd_timer_instance_free +EXPORT_SYMBOL vmlinux 0x6617bd76 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x664007cf nf_hook_slow EXPORT_SYMBOL vmlinux 0x66474aa4 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x664dc96a arp_create +EXPORT_SYMBOL vmlinux 0x66590328 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x665a3a4b scsi_block_requests EXPORT_SYMBOL vmlinux 0x66608e5c amba_driver_unregister EXPORT_SYMBOL vmlinux 0x66657274 kmalloc_order EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin -EXPORT_SYMBOL vmlinux 0x6668fb03 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x66707719 __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset EXPORT_SYMBOL vmlinux 0x6674bd14 omap_vrfb_request_ctx +EXPORT_SYMBOL vmlinux 0x66827cb5 kill_pid EXPORT_SYMBOL vmlinux 0x6686e4ec devm_iounmap +EXPORT_SYMBOL vmlinux 0x66a2427d xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0x66a63949 nla_reserve EXPORT_SYMBOL vmlinux 0x66aed8c5 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x66bcdd1e finish_open +EXPORT_SYMBOL vmlinux 0x66da904a device_get_mac_address EXPORT_SYMBOL vmlinux 0x66e21a61 unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x66ec0ca3 ata_print_version -EXPORT_SYMBOL vmlinux 0x66f2dca6 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x66e225b4 unlock_buffer +EXPORT_SYMBOL vmlinux 0x66e7b767 ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0x66f9ff55 alloc_file_pseudo EXPORT_SYMBOL vmlinux 0x6706d9b2 iov_iter_pipe -EXPORT_SYMBOL vmlinux 0x670867fb netdev_update_features EXPORT_SYMBOL vmlinux 0x67092819 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x67132058 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x673b144c twl6040_reg_read EXPORT_SYMBOL vmlinux 0x673cfa13 pci_write_vpd EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x6760a3a6 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x67612af9 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x67630597 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x675cd180 neigh_seq_next EXPORT_SYMBOL vmlinux 0x6766bcd1 thaw_super EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x67822f03 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x6783ecca mdiobus_write_nested EXPORT_SYMBOL vmlinux 0x679856f5 sort_r -EXPORT_SYMBOL vmlinux 0x67aca510 console_stop -EXPORT_SYMBOL vmlinux 0x67ad2c76 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x67adba6b sk_mc_loop EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b4b5fa sock_no_sendmsg EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67bf524d tcp_req_err +EXPORT_SYMBOL vmlinux 0x67ba8273 sockfd_lookup EXPORT_SYMBOL vmlinux 0x67e2d12b tty_port_put +EXPORT_SYMBOL vmlinux 0x67e3b10a readahead_expand +EXPORT_SYMBOL vmlinux 0x67e5c0df netif_rx_ni EXPORT_SYMBOL vmlinux 0x67e7f263 dup_iter EXPORT_SYMBOL vmlinux 0x67ea6e61 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x68052044 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x6810e845 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x67f2ce98 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x681d7e26 phy_error +EXPORT_SYMBOL vmlinux 0x682bb99c __skb_get_hash EXPORT_SYMBOL vmlinux 0x682bc509 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x6830b888 ip_defrag -EXPORT_SYMBOL vmlinux 0x687779d2 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x6853aec1 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x687345eb mdiobus_unregister EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x687c2adb xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x68815215 generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width EXPORT_SYMBOL vmlinux 0x68bd49eb pci_read_config_byte EXPORT_SYMBOL vmlinux 0x68c2f333 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x68d64665 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x68dbb963 __scm_destroy EXPORT_SYMBOL vmlinux 0x68dda69e configfs_unregister_group EXPORT_SYMBOL vmlinux 0x68de6289 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x68def636 generic_write_end EXPORT_SYMBOL vmlinux 0x68f686b0 __dec_node_page_state EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x6905c22b fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x691649eb xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x692ec314 security_sb_remount +EXPORT_SYMBOL vmlinux 0x6924ef10 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x692a1fbf nf_register_net_hook EXPORT_SYMBOL vmlinux 0x694e4b33 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x69614c22 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x69615b13 tcp_rcv_established EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6978253b skb_add_rx_frag EXPORT_SYMBOL vmlinux 0x697a60a4 of_node_name_prefix -EXPORT_SYMBOL vmlinux 0x69957ab0 read_code +EXPORT_SYMBOL vmlinux 0x698a3e1e jbd2_complete_transaction EXPORT_SYMBOL vmlinux 0x699b696b ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x69a65a71 dev_trans_start EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params -EXPORT_SYMBOL vmlinux 0x69cdfc77 mmc_detect_change EXPORT_SYMBOL vmlinux 0x69ce05be jbd2__journal_start EXPORT_SYMBOL vmlinux 0x69ce414a del_gendisk EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window EXPORT_SYMBOL vmlinux 0x69e51d08 __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x69eeb323 generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0x69f8a4dd devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x69f96523 dev_get_by_index EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree EXPORT_SYMBOL vmlinux 0x6a07194f simple_transaction_read -EXPORT_SYMBOL vmlinux 0x6a132ce0 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x6a2874a9 ip_frag_next +EXPORT_SYMBOL vmlinux 0x6a2caebb sock_no_sendpage_locked EXPORT_SYMBOL vmlinux 0x6a2e174a scsi_partsize -EXPORT_SYMBOL vmlinux 0x6a350144 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x6a461550 tcf_register_action EXPORT_SYMBOL vmlinux 0x6a4eda37 cdev_device_del -EXPORT_SYMBOL vmlinux 0x6a5aa404 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x6a4ef046 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x6a5762d2 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a6bcf30 arm_dma_ops EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a71412d path_put EXPORT_SYMBOL vmlinux 0x6a74ab01 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x6a85e2ac nf_reinject EXPORT_SYMBOL vmlinux 0x6a8eacdd md_error -EXPORT_SYMBOL vmlinux 0x6a91fedf netpoll_print_options EXPORT_SYMBOL vmlinux 0x6a93372e param_ops_hexint EXPORT_SYMBOL vmlinux 0x6a96755f sb_min_blocksize EXPORT_SYMBOL vmlinux 0x6a9b08d1 rpmh_write -EXPORT_SYMBOL vmlinux 0x6aaa4b77 tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0x6aac8e54 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x6aace683 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x6abb937a generic_write_checks +EXPORT_SYMBOL vmlinux 0x6ab02f3e skb_eth_pop +EXPORT_SYMBOL vmlinux 0x6ab192f1 xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0x6abbec38 param_get_ulong +EXPORT_SYMBOL vmlinux 0x6ac69e31 clear_page_dirty_for_io EXPORT_SYMBOL vmlinux 0x6ac80c29 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x6acd7943 vfs_getattr EXPORT_SYMBOL vmlinux 0x6acf6be7 stop_tty EXPORT_SYMBOL vmlinux 0x6ad7a335 prepare_creds EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae53cfc netif_rx_any_context +EXPORT_SYMBOL vmlinux 0x6aeaa43a dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af07087 jbd2_journal_invalidatepage EXPORT_SYMBOL vmlinux 0x6af7b21a packing -EXPORT_SYMBOL vmlinux 0x6b0a9241 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x6b0b679e mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x6b2ba564 inet_shutdown +EXPORT_SYMBOL vmlinux 0x6b2a457d dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x6b2d9957 sock_no_sendmsg_locked EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack EXPORT_SYMBOL vmlinux 0x6b4d181b tty_unregister_device EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b5a47c2 prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0x6b604710 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x6b6aaa17 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x6b6f1ef2 of_phy_connect EXPORT_SYMBOL vmlinux 0x6b72aa45 is_bad_inode 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 0x6bab59f5 lookup_one EXPORT_SYMBOL vmlinux 0x6bac0f4d pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x6bc0b1df udplite_prot +EXPORT_SYMBOL vmlinux 0x6bbf8af8 generic_write_end EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev EXPORT_SYMBOL vmlinux 0x6bdab15f snd_pcm_release_substream EXPORT_SYMBOL vmlinux 0x6bdcbd98 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x6bdeb116 vfs_ioctl EXPORT_SYMBOL vmlinux 0x6bfc4ecb param_set_bint +EXPORT_SYMBOL vmlinux 0x6c03d32c scsi_done +EXPORT_SYMBOL vmlinux 0x6c0ac8e9 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x6c11c80e filemap_fdatawrite_wbc EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c550b71 dev_mc_sync_multiple EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb EXPORT_SYMBOL vmlinux 0x6c62d20f param_get_short EXPORT_SYMBOL vmlinux 0x6c66c264 __d_drop EXPORT_SYMBOL vmlinux 0x6c6c71ec blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0x6c6dcca5 prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0x6c7daf7c mipi_dsi_detach EXPORT_SYMBOL vmlinux 0x6c810e42 __xa_clear_mark +EXPORT_SYMBOL vmlinux 0x6c8fc5ed sock_create +EXPORT_SYMBOL vmlinux 0x6c9bdc8e twl6040_reg_write EXPORT_SYMBOL vmlinux 0x6ca22246 vfs_get_tree -EXPORT_SYMBOL vmlinux 0x6cb049f4 scsi_scan_host EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cd8809e tcp_time_wait EXPORT_SYMBOL vmlinux 0x6cd8ddb2 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x6cdef0a9 __set_page_dirty_buffers EXPORT_SYMBOL vmlinux 0x6ce5c6db __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x6ce79718 inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6cf22a73 sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0x6cf34eef skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x6d03d804 user_path_create +EXPORT_SYMBOL vmlinux 0x6cf47811 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x6cf5e4c2 register_nexthop_notifier EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2d8b74 of_platform_device_create EXPORT_SYMBOL vmlinux 0x6d2e0f16 snd_timer_global_new EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d529591 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x6d4054f3 mmc_gpio_set_cd_isr EXPORT_SYMBOL vmlinux 0x6d5f06e1 ucc_fast_transmit_on_demand EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d88e448 lock_rename +EXPORT_SYMBOL vmlinux 0x6d840ca1 ip_defrag EXPORT_SYMBOL vmlinux 0x6d89b199 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x6d9c7d1e mdiobus_register_device EXPORT_SYMBOL vmlinux 0x6da58d9f snd_pcm_period_elapsed -EXPORT_SYMBOL vmlinux 0x6da81363 phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0x6dca4a26 adjust_resource EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null EXPORT_SYMBOL vmlinux 0x6ddcdbad revert_creds EXPORT_SYMBOL vmlinux 0x6de0f510 amba_find_device -EXPORT_SYMBOL vmlinux 0x6de710b7 xattr_supported_namespace EXPORT_SYMBOL vmlinux 0x6dedb29a key_task_permission EXPORT_SYMBOL vmlinux 0x6dee251c jbd2_journal_restart EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df3b6a2 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x6dfae7c5 fs_context_for_submount EXPORT_SYMBOL vmlinux 0x6dff67f8 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0x6e0f3a7d genphy_c37_read_status EXPORT_SYMBOL vmlinux 0x6e114637 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x6e15eb5d __page_symlink EXPORT_SYMBOL vmlinux 0x6e1f33bc __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0x6e1fca1b xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x6e2996af get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x6e35bce6 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x6e4cdf30 security_path_unlink EXPORT_SYMBOL vmlinux 0x6e4e7714 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x6e695530 __skb_pad +EXPORT_SYMBOL vmlinux 0x6e5d2fcc dev_open +EXPORT_SYMBOL vmlinux 0x6e709868 read_cache_page_gfp EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e995872 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x6e7862ec udp_gro_complete +EXPORT_SYMBOL vmlinux 0x6e876762 tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig EXPORT_SYMBOL vmlinux 0x6eb99967 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x6ec0ff55 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x6ec24241 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x6ec309f5 netdev_crit +EXPORT_SYMBOL vmlinux 0x6ec84cf5 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x6ecccf54 vlan_vid_add EXPORT_SYMBOL vmlinux 0x6ecdb792 __percpu_counter_init EXPORT_SYMBOL vmlinux 0x6ed18ad8 msi_desc_to_pci_dev EXPORT_SYMBOL vmlinux 0x6eee4b9b copy_page_to_iter EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL vmlinux 0x6eff0c17 ppp_unit_number EXPORT_SYMBOL vmlinux 0x6f013ecd __init_rwsem -EXPORT_SYMBOL vmlinux 0x6f0182e6 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x6f1b064a xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x6f1474e6 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x6f15b253 jbd2_journal_init_dev EXPORT_SYMBOL vmlinux 0x6f25a25e input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x6f320311 phy_get_pause +EXPORT_SYMBOL vmlinux 0x6f420843 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x6f593035 km_state_notify EXPORT_SYMBOL vmlinux 0x6f68a04e blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x6f76211e qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x6f771f5f eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0x6f83fba8 hex2bin EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x6f9c7840 vfs_llseek -EXPORT_SYMBOL vmlinux 0x6fa18ee0 mmc_of_parse_voltage EXPORT_SYMBOL vmlinux 0x6fa6597c set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x6faf69e1 ipv6_find_hdr EXPORT_SYMBOL vmlinux 0x6fb374e6 down_write_killable +EXPORT_SYMBOL vmlinux 0x6fba8972 dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0x6fbe4717 idr_replace EXPORT_SYMBOL vmlinux 0x6fbf2f5b tegra_ivc_read_advance EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog EXPORT_SYMBOL vmlinux 0x6fcb8caf pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x6fdefad6 dev_get_iflink EXPORT_SYMBOL vmlinux 0x6fe001d6 mipi_dsi_dcs_set_tear_scanline EXPORT_SYMBOL vmlinux 0x6fe2fce0 __frontswap_test -EXPORT_SYMBOL vmlinux 0x6fe635d8 devm_register_netdev EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 EXPORT_SYMBOL vmlinux 0x7014a289 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x70159b57 scm_detach_fds EXPORT_SYMBOL vmlinux 0x701cd7da fb_class -EXPORT_SYMBOL vmlinux 0x702321fc xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x7024b14d jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x70279b13 security_sk_clone EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x7038376c __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x703ba0b9 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x703d9fe2 ip_sock_set_freebind EXPORT_SYMBOL vmlinux 0x7047d54d dquot_get_state +EXPORT_SYMBOL vmlinux 0x704f9bdd __sock_create EXPORT_SYMBOL vmlinux 0x70595112 pcie_set_mps EXPORT_SYMBOL vmlinux 0x70703993 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7088567c tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x7087b7ae inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0x7091fb19 of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x70922f03 inet_sendpage EXPORT_SYMBOL vmlinux 0x70a3cfde snd_ctl_remove_id -EXPORT_SYMBOL vmlinux 0x70bef57a generic_file_llseek -EXPORT_SYMBOL vmlinux 0x70c1ad85 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x70b14959 mdiobus_read_nested EXPORT_SYMBOL vmlinux 0x70c8cdb4 snd_compr_free_pages EXPORT_SYMBOL vmlinux 0x70ed5531 unload_nls EXPORT_SYMBOL vmlinux 0x70f11aca simple_link +EXPORT_SYMBOL vmlinux 0x70f77678 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x70f7f53b tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x70f91d96 ipv6_dev_find EXPORT_SYMBOL vmlinux 0x7102191c blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x710a5763 tcp_sync_mss EXPORT_SYMBOL vmlinux 0x711b8a9b __crc32c_le_shift EXPORT_SYMBOL vmlinux 0x712110ab proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x712283d2 __lock_buffer EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc EXPORT_SYMBOL vmlinux 0x713c28d1 dquot_release -EXPORT_SYMBOL vmlinux 0x7149dbeb jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x714e2246 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x713ec5d0 mdiobus_read EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x715f33fb phy_attached_info -EXPORT_SYMBOL vmlinux 0x7162662e kernel_bind EXPORT_SYMBOL vmlinux 0x716b58cb ioport_resource EXPORT_SYMBOL vmlinux 0x7171121c overflowgid EXPORT_SYMBOL vmlinux 0x71718503 of_get_nand_ecc_user_config -EXPORT_SYMBOL vmlinux 0x718e7ebd __block_write_full_page +EXPORT_SYMBOL vmlinux 0x71841a7a mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x718775d3 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x7188ce91 inet_release EXPORT_SYMBOL vmlinux 0x7195cb78 is_subdir +EXPORT_SYMBOL vmlinux 0x71972037 scsi_change_queue_depth EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71aa9a0b __of_mdiobus_register EXPORT_SYMBOL vmlinux 0x71b73181 clear_bdi_congested -EXPORT_SYMBOL vmlinux 0x71ba5fb8 seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0x71bf0e9e input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0x71c90087 memcmp -EXPORT_SYMBOL vmlinux 0x71c912bf __icmp_send EXPORT_SYMBOL vmlinux 0x71d0fe8e pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x71e59cab netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x71f282d3 brioctl_set EXPORT_SYMBOL vmlinux 0x71f3f1c8 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x71f4fc7d tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0x71f7de4f proc_do_large_bitmap EXPORT_SYMBOL vmlinux 0x72005410 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x72026b0e tcp_read_sock EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev EXPORT_SYMBOL vmlinux 0x7212fdde page_pool_create EXPORT_SYMBOL vmlinux 0x7221ec47 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x722282fb skb_headers_offset_update EXPORT_SYMBOL vmlinux 0x722d0d78 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x7248ad4f ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x724e4e27 phy_drivers_register EXPORT_SYMBOL vmlinux 0x724fcff9 rproc_coredump_add_segment EXPORT_SYMBOL vmlinux 0x72513c38 simple_getattr EXPORT_SYMBOL vmlinux 0x725bebd7 seq_path +EXPORT_SYMBOL vmlinux 0x725f6638 udp_sendmsg EXPORT_SYMBOL vmlinux 0x7266363a iget_locked EXPORT_SYMBOL vmlinux 0x72749fed devm_memremap -EXPORT_SYMBOL vmlinux 0x728bb927 dev_load -EXPORT_SYMBOL vmlinux 0x729d50d7 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x729df77f netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x7274b55c pipe_lock +EXPORT_SYMBOL vmlinux 0x727e30c6 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x72891533 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x72a14640 inet6_ioctl EXPORT_SYMBOL vmlinux 0x72a32d26 snd_timer_new -EXPORT_SYMBOL vmlinux 0x72a8bff2 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x72b45573 inode_permission EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72c9732d jbd2_journal_check_available_features EXPORT_SYMBOL vmlinux 0x72d85f23 tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0x72de09ca gro_cells_init EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x7303deaf tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0x73076315 snd_pci_quirk_lookup_id EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config EXPORT_SYMBOL vmlinux 0x7317790e lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x7320cf89 tcp_poll EXPORT_SYMBOL vmlinux 0x7321f69a free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x732770f7 xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x7334628e reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x7341466a ptp_clock_index -EXPORT_SYMBOL vmlinux 0x73531467 vme_init_bridge -EXPORT_SYMBOL vmlinux 0x73539b6b __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x73482027 __wait_on_buffer EXPORT_SYMBOL vmlinux 0x735a1726 tty_port_open +EXPORT_SYMBOL vmlinux 0x7372045d tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x73946e50 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x738aed69 devfreq_remove_device EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x73a2cdc8 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73b54ea5 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x73b7870c tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x73bab4b6 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x73bce2b8 flow_rule_alloc EXPORT_SYMBOL vmlinux 0x73c96f3f request_key_with_auxdata EXPORT_SYMBOL vmlinux 0x73cffe2a unregister_nls EXPORT_SYMBOL vmlinux 0x73d5d539 iov_iter_alignment EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73e37ad7 sock_no_getname +EXPORT_SYMBOL vmlinux 0x73e60bd3 block_page_mkwrite EXPORT_SYMBOL vmlinux 0x73e8ef42 nand_ecc_is_strong_enough -EXPORT_SYMBOL vmlinux 0x74044a84 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x740fdf8a security_inode_init_security +EXPORT_SYMBOL vmlinux 0x73f4842a jbd2_journal_errno EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x74152dab dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x741fea27 sync_mapping_buffers EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7426b883 of_find_node_by_name EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x742a462c xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x742fc1e7 fault_in_safe_writeable -EXPORT_SYMBOL vmlinux 0x74328684 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x7431c4a3 ppp_unregister_channel EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x74615556 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0x746e9b5d netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x74710fde flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0x747291bb fb_set_var +EXPORT_SYMBOL vmlinux 0x7479d27a sock_setsockopt +EXPORT_SYMBOL vmlinux 0x747dbb0a tcp_req_err EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x748ffdf9 phy_remove_link_mode EXPORT_SYMBOL vmlinux 0x74907d46 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x749e10e1 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x749e38b8 nobh_write_begin EXPORT_SYMBOL vmlinux 0x74a2d083 blk_mq_init_queue EXPORT_SYMBOL vmlinux 0x74a9cd92 d_instantiate_anon EXPORT_SYMBOL vmlinux 0x74aa83d6 __destroy_inode @@ -8405,144 +8321,132 @@ EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable EXPORT_SYMBOL vmlinux 0x74e9d5eb pin_user_pages_unlocked EXPORT_SYMBOL vmlinux 0x74e9df33 mipi_dsi_dcs_set_page_address EXPORT_SYMBOL vmlinux 0x74ecb850 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x74fc5de0 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x7505bced xp_dma_map EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x750d1eaa lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0x75208fc9 keyring_search EXPORT_SYMBOL vmlinux 0x75258824 pci_bus_find_capability EXPORT_SYMBOL vmlinux 0x75319951 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x753849b8 unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x7549f21a tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x7538bc33 cad_pid EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs -EXPORT_SYMBOL vmlinux 0x7581c34e generic_setlease +EXPORT_SYMBOL vmlinux 0x757e1cf7 fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0x75882a2c pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x7591fe14 __traceiter_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x75a32451 get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0x75a6cbf4 cdev_del EXPORT_SYMBOL vmlinux 0x75bc7205 snd_device_register EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bffb6f dev_get_mac_address EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 EXPORT_SYMBOL vmlinux 0x75d11939 backlight_device_unregister EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump EXPORT_SYMBOL vmlinux 0x75da9df7 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x75e1f2bc security_inode_getsecctx EXPORT_SYMBOL vmlinux 0x75e71c94 tty_chars_in_buffer EXPORT_SYMBOL vmlinux 0x75ebe96f dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x7605b427 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x75f07996 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x7600d7f1 inet_offloads +EXPORT_SYMBOL vmlinux 0x7603409c __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0x760a0f4f yield EXPORT_SYMBOL vmlinux 0x760c5aa1 register_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x761276a5 netlink_broadcast_filtered EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x763665f0 passthru_features_check -EXPORT_SYMBOL vmlinux 0x763cb100 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x762daeeb page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x762daef2 __check_sticky EXPORT_SYMBOL vmlinux 0x76420563 dma_unmap_sg_attrs EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x765c83d3 netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages EXPORT_SYMBOL vmlinux 0x766e7d77 rproc_alloc -EXPORT_SYMBOL vmlinux 0x7670ad25 __alloc_skb +EXPORT_SYMBOL vmlinux 0x76935328 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x76938007 dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0x7698cadb complete_request_key -EXPORT_SYMBOL vmlinux 0x7698f4e4 block_write_full_page EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a5c52d lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x76b58a27 nf_register_queue_handler EXPORT_SYMBOL vmlinux 0x76b6a023 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x76bb5f8a security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0x76c52d63 nla_append EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl EXPORT_SYMBOL vmlinux 0x76d2b14f tegra_dfll_suspend EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d45b9c tcp_peek_len +EXPORT_SYMBOL vmlinux 0x76e95462 noop_qdisc EXPORT_SYMBOL vmlinux 0x76eb5f54 posix_acl_to_xattr EXPORT_SYMBOL vmlinux 0x7707cb24 snd_card_file_remove +EXPORT_SYMBOL vmlinux 0x770ae41d register_shrinker EXPORT_SYMBOL vmlinux 0x77175f4a snd_pcm_new -EXPORT_SYMBOL vmlinux 0x7719fe24 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x7731e594 inet_accept EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x773b291f fib_notifier_ops_register EXPORT_SYMBOL vmlinux 0x7743688b dma_sync_wait EXPORT_SYMBOL vmlinux 0x77485fc7 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x7751fc29 blk_get_request -EXPORT_SYMBOL vmlinux 0x775402e3 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x77686823 tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0x776b9a05 block_write_begin +EXPORT_SYMBOL vmlinux 0x7757ac8d get_task_cred EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 EXPORT_SYMBOL vmlinux 0x777d0088 registered_fb EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x7799bcf0 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x779b166e file_ns_capable -EXPORT_SYMBOL vmlinux 0x77aaaa9c sock_setsockopt +EXPORT_SYMBOL vmlinux 0x779b34b8 sock_create_lite +EXPORT_SYMBOL vmlinux 0x77b89f54 sk_wait_data EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77c5bef5 skb_push +EXPORT_SYMBOL vmlinux 0x77d02eab rtnl_configure_link EXPORT_SYMBOL vmlinux 0x77e357da kthread_blkcg EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt EXPORT_SYMBOL vmlinux 0x77f6f183 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x780410fe xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x77fc9661 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x78050d0e inet_shutdown EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x782143c9 neigh_xmit EXPORT_SYMBOL vmlinux 0x78293778 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0x782d294c twl6040_power EXPORT_SYMBOL vmlinux 0x78310ec0 uart_match_port -EXPORT_SYMBOL vmlinux 0x7850aec6 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x7835450c mmc_release_host EXPORT_SYMBOL vmlinux 0x7860a707 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x7868e3ae nf_getsockopt -EXPORT_SYMBOL vmlinux 0x7872c125 i2c_verify_adapter EXPORT_SYMBOL vmlinux 0x78731d5c dput EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788348f8 inet_sock_destruct EXPORT_SYMBOL vmlinux 0x78865abc mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x7897e9a1 flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x789a065a of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x78873083 try_module_get +EXPORT_SYMBOL vmlinux 0x788a3b1e __xfrm_init_state EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a01196 mmc_cqe_recovery EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e5aa35 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x7909d72b vfs_fsync_range EXPORT_SYMBOL vmlinux 0x790b5a27 rio_query_mport EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x7915b1a1 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x791f4cee vfs_unlink EXPORT_SYMBOL vmlinux 0x793f500c kset_unregister +EXPORT_SYMBOL vmlinux 0x794285d1 __netif_napi_del EXPORT_SYMBOL vmlinux 0x794765d1 mempool_free -EXPORT_SYMBOL vmlinux 0x796129a9 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x79649261 __check_sticky -EXPORT_SYMBOL vmlinux 0x79813dca devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x7960b0f0 phy_attach +EXPORT_SYMBOL vmlinux 0x796f6f13 phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x79912f9e key_put EXPORT_SYMBOL vmlinux 0x79988b2d key_alloc -EXPORT_SYMBOL vmlinux 0x799c0cc5 __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0x79a5e6e2 sk_alloc -EXPORT_SYMBOL vmlinux 0x79af7600 fqdir_exit -EXPORT_SYMBOL vmlinux 0x79d2aa7e dns_query -EXPORT_SYMBOL vmlinux 0x79d86546 ppp_unit_number -EXPORT_SYMBOL vmlinux 0x79e70c41 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x79d93bcf of_get_mac_address EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug -EXPORT_SYMBOL vmlinux 0x79f603b3 vlan_for_each EXPORT_SYMBOL vmlinux 0x79fa1deb imx_ssi_fiq_rx_buffer EXPORT_SYMBOL vmlinux 0x79fc577f utf8nagemax EXPORT_SYMBOL vmlinux 0x79fd89b6 pci_request_selected_regions_exclusive EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute EXPORT_SYMBOL vmlinux 0x7a19d527 nand_read_page_raw +EXPORT_SYMBOL vmlinux 0x7a1a0ab3 call_fib_notifiers EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a1cb9ec tcf_em_unregister EXPORT_SYMBOL vmlinux 0x7a1f1eda from_kgid_munged -EXPORT_SYMBOL vmlinux 0x7a362c1e dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x7a2afae7 pneigh_lookup EXPORT_SYMBOL vmlinux 0x7a3e8a42 radix_tree_next_chunk EXPORT_SYMBOL vmlinux 0x7a44c000 bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0x7a4ab365 __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a621c27 scsi_host_get +EXPORT_SYMBOL vmlinux 0x7a70cc7b sock_i_ino EXPORT_SYMBOL vmlinux 0x7a79b9f3 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7a935bba scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a9aede8 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x7a971c92 inet_dev_addr_type EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aade415 sock_common_setsockopt EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abb4d73 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x7ac8b929 set_page_dirty_lock EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad05744 datagram_poll EXPORT_SYMBOL vmlinux 0x7ad77825 snd_register_oss_device 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 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7aece903 write_dirty_buffer EXPORT_SYMBOL vmlinux 0x7aed1d6c devm_mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL vmlinux 0x7b245589 sock_create_lite +EXPORT_SYMBOL vmlinux 0x7b1efd9a add_to_pipe +EXPORT_SYMBOL vmlinux 0x7b23cc97 ethtool_op_get_link EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state EXPORT_SYMBOL vmlinux 0x7b2f390e param_ops_bool EXPORT_SYMBOL vmlinux 0x7b2fb85d __xa_cmpxchg @@ -8551,19 +8455,17 @@ EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap EXPORT_SYMBOL vmlinux 0x7b60680c md_bitmap_free EXPORT_SYMBOL vmlinux 0x7b652c72 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x7b6911c9 tcp_filter -EXPORT_SYMBOL vmlinux 0x7b9030a8 noop_llseek +EXPORT_SYMBOL vmlinux 0x7b7ebdca touch_buffer +EXPORT_SYMBOL vmlinux 0x7b815591 flow_block_cb_priv EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7bc73a70 ppp_output_wakeup EXPORT_SYMBOL vmlinux 0x7bd0eca5 bio_advance -EXPORT_SYMBOL vmlinux 0x7bdcf6f6 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x7bf2c124 touch_buffer -EXPORT_SYMBOL vmlinux 0x7bff0b5c vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x7c07d8e0 vfs_create +EXPORT_SYMBOL vmlinux 0x7bd3e26d mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x7bdf0481 file_path +EXPORT_SYMBOL vmlinux 0x7be2ddf1 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x7bf8e857 qdisc_hash_del EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c26376a xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x7c26b561 phy_attached_print EXPORT_SYMBOL vmlinux 0x7c26fd51 sgl_free_order -EXPORT_SYMBOL vmlinux 0x7c27a0f2 qdisc_watchdog_init EXPORT_SYMBOL vmlinux 0x7c379a9b inode_set_flags EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get EXPORT_SYMBOL vmlinux 0x7c647e36 input_flush_device @@ -8573,477 +8475,475 @@ EXPORT_SYMBOL vmlinux 0x7c7a5be8 rproc_set_firmware EXPORT_SYMBOL vmlinux 0x7c7acdae __cleancache_init_fs EXPORT_SYMBOL vmlinux 0x7c7d86a3 mipi_dsi_shutdown_peripheral EXPORT_SYMBOL vmlinux 0x7c8cea9e key_create_or_update +EXPORT_SYMBOL vmlinux 0x7c905e6f _dev_warn +EXPORT_SYMBOL vmlinux 0x7c9a2496 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x7c9a6efa netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x7ca01e7f skb_copy EXPORT_SYMBOL vmlinux 0x7ca24a34 fs_lookup_param -EXPORT_SYMBOL vmlinux 0x7cafbd13 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x7cac0f98 skb_store_bits EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 EXPORT_SYMBOL vmlinux 0x7cdeeb4d pgprot_user EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid EXPORT_SYMBOL vmlinux 0x7ce33fad simple_open -EXPORT_SYMBOL vmlinux 0x7ce961ea __traceiter_module_get -EXPORT_SYMBOL vmlinux 0x7ceecad4 neigh_table_init EXPORT_SYMBOL vmlinux 0x7cf188ae snd_pcm_lib_preallocate_pages_for_all EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfc0f94 phy_start_cable_test_tdr EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d035144 nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0x7d09596b dma_pool_alloc EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d0df7ae jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x7d1d952b _dev_printk +EXPORT_SYMBOL vmlinux 0x7d1376dc console_stop EXPORT_SYMBOL vmlinux 0x7d1da946 par_io_of_config EXPORT_SYMBOL vmlinux 0x7d1e9614 d_invalidate -EXPORT_SYMBOL vmlinux 0x7d2045bf block_commit_write EXPORT_SYMBOL vmlinux 0x7d2ef2b0 down_read_interruptible EXPORT_SYMBOL vmlinux 0x7d2f35bc pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x7d3bd3a4 __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x7d42643b kobject_add EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit EXPORT_SYMBOL vmlinux 0x7d4baa36 snd_pcm_new_stream EXPORT_SYMBOL vmlinux 0x7d60256c snd_timer_open -EXPORT_SYMBOL vmlinux 0x7d686e71 xfrm_user_policy EXPORT_SYMBOL vmlinux 0x7d6c2636 gen_pool_add_owner EXPORT_SYMBOL vmlinux 0x7d6f1dc3 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x7d751b8f udp_disconnect EXPORT_SYMBOL vmlinux 0x7d79e136 param_set_long -EXPORT_SYMBOL vmlinux 0x7d826daf tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0x7d82b39d netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x7d82f6b6 clk_hw_get_clk -EXPORT_SYMBOL vmlinux 0x7d919402 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x7dab5c43 phy_ethtool_get_strings EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7db6c9d6 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x7dcaf89a phy_disconnect -EXPORT_SYMBOL vmlinux 0x7de2f27c tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x7db1625b __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x7db1649d dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x7dd09e08 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x7dd2c746 ip_fraglist_init EXPORT_SYMBOL vmlinux 0x7de89b8b elm_decode_bch_error_page EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df5f22d mr_dump -EXPORT_SYMBOL vmlinux 0x7df6123e migrate_page_states EXPORT_SYMBOL vmlinux 0x7dfa0aa3 nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL vmlinux 0x7e018220 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x7e0182f8 _dev_printk EXPORT_SYMBOL vmlinux 0x7e0ce0c3 up_write -EXPORT_SYMBOL vmlinux 0x7e0ef06f key_link -EXPORT_SYMBOL vmlinux 0x7e24070b no_llseek +EXPORT_SYMBOL vmlinux 0x7e148610 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x7e297cc4 alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e3864c1 ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x7e469adf rawnand_sw_bch_correct -EXPORT_SYMBOL vmlinux 0x7e46a0a4 vfs_parse_fs_param_source EXPORT_SYMBOL vmlinux 0x7e68f151 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x7e739eb9 netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0x7e986abe try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x7ea34692 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x7ea85562 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x7eae52fd bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x7eaf8eeb i2c_del_driver EXPORT_SYMBOL vmlinux 0x7eb0012e phy_read_mmd EXPORT_SYMBOL vmlinux 0x7eb2edc3 nand_get_set_features_notsupp EXPORT_SYMBOL vmlinux 0x7eb78478 kobject_del -EXPORT_SYMBOL vmlinux 0x7ec903b7 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x7ec54035 nf_log_register EXPORT_SYMBOL vmlinux 0x7ecb8b60 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x7ed5ac4b fget_raw +EXPORT_SYMBOL vmlinux 0x7ed2f262 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x7ef7603b i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table EXPORT_SYMBOL vmlinux 0x7f08edca scsi_remove_target -EXPORT_SYMBOL vmlinux 0x7f19c2ad genlmsg_put -EXPORT_SYMBOL vmlinux 0x7f21f5ea gro_cells_receive EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs EXPORT_SYMBOL vmlinux 0x7f304b27 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x7f3e8eb7 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x7f5782a6 inet_add_offload -EXPORT_SYMBOL vmlinux 0x7f5b2b93 skb_copy_header +EXPORT_SYMBOL vmlinux 0x7f46fafc kmem_cache_size +EXPORT_SYMBOL vmlinux 0x7f5b1eae dev_mc_unsync EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio EXPORT_SYMBOL vmlinux 0x7f70b757 snd_pcm_open_substream -EXPORT_SYMBOL vmlinux 0x7f7a05b6 bh_submit_read EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f88bfd0 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x7f8a8ff6 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x7f8ed7e5 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x7f8f8c3f tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0x7f93d84b sg_alloc_table_from_pages_segment EXPORT_SYMBOL vmlinux 0x7f9ff5e7 put_watch_queue -EXPORT_SYMBOL vmlinux 0x7fb324e6 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x7fbb7771 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x7fccf36b crypto_sha256_update EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size -EXPORT_SYMBOL vmlinux 0x7fd1dcd2 jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0x7fdd0668 __mod_node_page_state EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read EXPORT_SYMBOL vmlinux 0x7fe01840 mdiobb_write EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe85a03 mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0x800108e9 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x7fe5e258 inet_protos +EXPORT_SYMBOL vmlinux 0x7febaa54 tegra_dfll_register EXPORT_SYMBOL vmlinux 0x80028f82 snd_pcm_set_managed_buffer +EXPORT_SYMBOL vmlinux 0x800aed34 devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x800e4600 nand_ecc_get_on_die_hw_engine EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 +EXPORT_SYMBOL vmlinux 0x8035a666 __napi_alloc_skb EXPORT_SYMBOL vmlinux 0x8039b3fd _totalram_pages EXPORT_SYMBOL vmlinux 0x803a5599 input_unregister_device EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x804497ba vme_new_dma_list EXPORT_SYMBOL vmlinux 0x8046a22f uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x804b0c1b scsi_print_command EXPORT_SYMBOL vmlinux 0x804b3e6c generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0x806c8b04 fasync_helper -EXPORT_SYMBOL vmlinux 0x807e5383 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x80b2fa0d eth_gro_receive -EXPORT_SYMBOL vmlinux 0x80be59df xp_free -EXPORT_SYMBOL vmlinux 0x80c3c166 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x8051c4d8 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x80521854 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x80629ff6 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x80643239 __skb_pad +EXPORT_SYMBOL vmlinux 0x808b8581 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x80930ae8 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x8095829b skb_put EXPORT_SYMBOL vmlinux 0x80c4c319 crc32_le EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd EXPORT_SYMBOL vmlinux 0x80d38ff8 _raw_spin_trylock_bh EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80f633d4 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x81045ccc get_unmapped_area +EXPORT_SYMBOL vmlinux 0x80f6fd70 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x8102f49a dst_alloc EXPORT_SYMBOL vmlinux 0x8108ac7a down_read_trylock +EXPORT_SYMBOL vmlinux 0x810b335d phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0x810c7e87 pci_release_selected_regions EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x813bc9e5 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x81479109 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x81259c2b dentry_path_raw +EXPORT_SYMBOL vmlinux 0x812e8ee0 PageMovable EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x81675105 netlink_unicast -EXPORT_SYMBOL vmlinux 0x817e81c2 cont_write_begin +EXPORT_SYMBOL vmlinux 0x81708899 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x817f4f11 netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x8189e924 __sk_dst_check EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x818f09d7 sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0x81901d3b tty_unlock EXPORT_SYMBOL vmlinux 0x81910dd2 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x819bdc76 xfrm6_rcv_tnl EXPORT_SYMBOL vmlinux 0x81ad1e6a snd_ctl_boolean_stereo_info EXPORT_SYMBOL vmlinux 0x81adef99 refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x81b70cf2 make_bad_inode +EXPORT_SYMBOL vmlinux 0x81b78c0d generic_file_splice_read EXPORT_SYMBOL vmlinux 0x81bf5a4a rt_mutex_base_init EXPORT_SYMBOL vmlinux 0x81c5544e wait_for_completion_killable EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset EXPORT_SYMBOL vmlinux 0x81dc4e46 tty_name EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x8209dcfc tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x81f1be2e neigh_table_init +EXPORT_SYMBOL vmlinux 0x81fc21da iptun_encaps +EXPORT_SYMBOL vmlinux 0x81fd14a1 __bforget +EXPORT_SYMBOL vmlinux 0x820aa1f0 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x821626e6 mr_mfc_find_any EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb -EXPORT_SYMBOL vmlinux 0x822d97ba skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x82263c19 copy_string_kernel EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr -EXPORT_SYMBOL vmlinux 0x825c7087 flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x825fc2ab skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x82707159 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x825963db phy_register_fixup +EXPORT_SYMBOL vmlinux 0x8274e4a6 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x8279426f jbd2_journal_get_create_access EXPORT_SYMBOL vmlinux 0x827f924e vmalloc_array EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x828a2545 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x828c9e50 sk_ns_capable EXPORT_SYMBOL vmlinux 0x828ce6bb mutex_lock EXPORT_SYMBOL vmlinux 0x82abcf52 tty_write_room +EXPORT_SYMBOL vmlinux 0x82b04209 flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0x82b24660 input_mt_destroy_slots EXPORT_SYMBOL vmlinux 0x82c1336f pci_set_mwi -EXPORT_SYMBOL vmlinux 0x82c22602 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x82da28a3 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x82d36b0c vlan_for_each EXPORT_SYMBOL vmlinux 0x82dfb0c0 param_get_byte -EXPORT_SYMBOL vmlinux 0x82e09f19 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync EXPORT_SYMBOL vmlinux 0x82f24bdc md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0x82f886a1 ZSTD_findFrameCompressedSize EXPORT_SYMBOL vmlinux 0x83084121 bio_copy_data -EXPORT_SYMBOL vmlinux 0x83099c80 phy_device_create -EXPORT_SYMBOL vmlinux 0x831073f2 _dev_err +EXPORT_SYMBOL vmlinux 0x8314b237 register_console EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 EXPORT_SYMBOL vmlinux 0x8326681d pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x8328185b inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x834aeb2f phy_config_aneg -EXPORT_SYMBOL vmlinux 0x834b6b91 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x834f65ed xfrm_unregister_type EXPORT_SYMBOL vmlinux 0x8351f2dc seqno_fence_ops EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x835adb5d __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x83759608 neigh_update -EXPORT_SYMBOL vmlinux 0x837ed04b dev_uc_add EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x839a38b1 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x83a7e764 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x83b4e046 __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0x83ba463f blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x83bba8f8 kernel_sendmsg EXPORT_SYMBOL vmlinux 0x83be22d7 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x83c04389 __scm_send EXPORT_SYMBOL vmlinux 0x83c8d070 seq_release EXPORT_SYMBOL vmlinux 0x83cd0e6f atomic_io_modify -EXPORT_SYMBOL vmlinux 0x83ecc250 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x83d5e4d5 netpoll_poll_dev EXPORT_SYMBOL vmlinux 0x83ed8026 rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x83fade4f __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x84122ec3 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x8424fbb2 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x8413d541 arp_xmit EXPORT_SYMBOL vmlinux 0x84369595 iget5_locked -EXPORT_SYMBOL vmlinux 0x84373236 seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0x8441c8cb sg_free_table EXPORT_SYMBOL vmlinux 0x8451fdfe sg_init_table EXPORT_SYMBOL vmlinux 0x845366bd fscrypt_encrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0x8456e9a7 xa_erase -EXPORT_SYMBOL vmlinux 0x84696a5f __splice_from_pipe EXPORT_SYMBOL vmlinux 0x846c7bbb scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x846ff30f dev_addr_add EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x8487741e jbd2_journal_get_undo_access EXPORT_SYMBOL vmlinux 0x8491a88f devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x8497d1de xfrm_init_state -EXPORT_SYMBOL vmlinux 0x84a3c5a8 tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x84abc73b __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x84a859f6 flow_indr_dev_register EXPORT_SYMBOL vmlinux 0x84af2f42 __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0x84b183ae strncmp EXPORT_SYMBOL vmlinux 0x84b4c5a7 handle_edge_irq EXPORT_SYMBOL vmlinux 0x84cd78a7 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x84decdc8 __block_write_begin EXPORT_SYMBOL vmlinux 0x84e0b5ee clk_add_alias -EXPORT_SYMBOL vmlinux 0x85255a1f iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x8527622b ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x852e72fa pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x8502d44e jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x8513700e xfrm_register_km +EXPORT_SYMBOL vmlinux 0x851b8558 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x85369282 vme_slot_num EXPORT_SYMBOL vmlinux 0x853eca54 input_match_device_id +EXPORT_SYMBOL vmlinux 0x85427cf4 netpoll_send_skb EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info -EXPORT_SYMBOL vmlinux 0x85563012 vfs_mknod +EXPORT_SYMBOL vmlinux 0x8553bb58 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x8557507a register_qdisc EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8569b54c netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x856d5fac __scsi_execute -EXPORT_SYMBOL vmlinux 0x857ae439 mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0x857b3310 of_n_size_cells EXPORT_SYMBOL vmlinux 0x8582ebff cpu_all_bits -EXPORT_SYMBOL vmlinux 0x858d35d7 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x858a1d0d tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0x8591076b md_finish_reshape EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x85abce86 netdev_notice +EXPORT_SYMBOL vmlinux 0x85a3d649 genlmsg_put EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bbf252 xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x85cb6af2 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x85d1a1a2 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x85d7a4bc km_state_expired -EXPORT_SYMBOL vmlinux 0x85d874ae flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0x85df9b6c strsep EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f727bf generic_permission +EXPORT_SYMBOL vmlinux 0x85f070c2 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x85fe0421 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x8601b96a netif_tx_wake_queue EXPORT_SYMBOL vmlinux 0x862bc663 memset16 +EXPORT_SYMBOL vmlinux 0x862fc086 jbd2_log_start_commit EXPORT_SYMBOL vmlinux 0x86395c28 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x8639659a netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x863c1054 gnet_stats_copy_basic_hw EXPORT_SYMBOL vmlinux 0x863e19c9 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x8649391f cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x865e34b4 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x865d377d audit_log EXPORT_SYMBOL vmlinux 0x8666995b sgl_alloc +EXPORT_SYMBOL vmlinux 0x866772f5 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x866eff34 unregister_binfmt EXPORT_SYMBOL vmlinux 0x8673864c blk_mq_run_hw_queue EXPORT_SYMBOL vmlinux 0x8686e5b6 forget_cached_acl EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86b2733d __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0x86b6e1e4 proc_remove -EXPORT_SYMBOL vmlinux 0x86ba5881 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x86b72bc8 mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0x86d0819c vga_client_register EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant EXPORT_SYMBOL vmlinux 0x86d61074 _snd_ctl_add_follower EXPORT_SYMBOL vmlinux 0x86eb0c08 proc_dointvec -EXPORT_SYMBOL vmlinux 0x86f54f73 nexthop_set_hw_flags EXPORT_SYMBOL vmlinux 0x86f5ffe1 tty_port_init -EXPORT_SYMBOL vmlinux 0x86f97805 sock_init_data_uid +EXPORT_SYMBOL vmlinux 0x86f8f980 ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x86fbf1ca tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x870576c2 cqhci_pltfm_init +EXPORT_SYMBOL vmlinux 0x8705a746 dump_emit EXPORT_SYMBOL vmlinux 0x870d5a1c __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x87187a17 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x872bfa3e has_capability EXPORT_SYMBOL vmlinux 0x872e38ea devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x8730b966 in6_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x87380f5e address_space_init_once EXPORT_SYMBOL vmlinux 0x873c13dd dec_node_page_state +EXPORT_SYMBOL vmlinux 0x87426741 jbd2_fc_wait_bufs EXPORT_SYMBOL vmlinux 0x87510c97 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x875a32bb stream_open +EXPORT_SYMBOL vmlinux 0x8752e2cf pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x875a1afd kernel_getpeername EXPORT_SYMBOL vmlinux 0x876254f5 fs_param_is_string -EXPORT_SYMBOL vmlinux 0x8776ae3f block_read_full_page -EXPORT_SYMBOL vmlinux 0x8795464d tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x877037ca read_cache_pages +EXPORT_SYMBOL vmlinux 0x87868f0b sk_alloc +EXPORT_SYMBOL vmlinux 0x8791663c twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x87a02c0f submit_bh EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87acf3dd netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0x87edfb71 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x880796ef vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x87e9be0d dev_get_phys_port_id EXPORT_SYMBOL vmlinux 0x881119ae max8998_bulk_write EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate -EXPORT_SYMBOL vmlinux 0x881e3c3d __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0x8824487c pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x882caec6 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x883532bb phy_attached_info +EXPORT_SYMBOL vmlinux 0x8850a546 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x885a9139 inet6_getname +EXPORT_SYMBOL vmlinux 0x885f3dc3 sock_kzfree_s EXPORT_SYMBOL vmlinux 0x88666839 jbd2_wait_inode_data EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x8899d46a devm_devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x88a67db7 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x88a76c8b tcf_block_get +EXPORT_SYMBOL vmlinux 0x88a6d6d7 setup_new_exec EXPORT_SYMBOL vmlinux 0x88a87a2d cpumask_next EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial +EXPORT_SYMBOL vmlinux 0x88bd8e5f jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0x88db665b kstrtoul_from_user EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88ea182e generic_listxattr +EXPORT_SYMBOL vmlinux 0x88f36712 filp_close EXPORT_SYMBOL vmlinux 0x88f8a546 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL vmlinux 0x88fb7b81 jbd2_journal_get_create_access EXPORT_SYMBOL vmlinux 0x890de126 omap_vrfb_setup -EXPORT_SYMBOL vmlinux 0x891a0e84 flow_rule_match_enc_opts EXPORT_SYMBOL vmlinux 0x892a22f0 input_grab_device EXPORT_SYMBOL vmlinux 0x8945a117 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x894cb009 tcp_child_process -EXPORT_SYMBOL vmlinux 0x8951d7dd inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x895a753c security_sk_clone -EXPORT_SYMBOL vmlinux 0x8962b213 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x8949db87 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x89810365 sock_sendmsg EXPORT_SYMBOL vmlinux 0x898b5d69 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x898e99c9 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x898ffbf6 mmc_free_host +EXPORT_SYMBOL vmlinux 0x8990cccc proto_unregister EXPORT_SYMBOL vmlinux 0x89929c36 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x89bd4a4b mmc_add_host EXPORT_SYMBOL vmlinux 0x89be6c96 tty_unthrottle EXPORT_SYMBOL vmlinux 0x89c1bccc d_instantiate_new EXPORT_SYMBOL vmlinux 0x89ca683f serio_bus -EXPORT_SYMBOL vmlinux 0x89d2f2bc dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x89d9242b rt6_lookup +EXPORT_SYMBOL vmlinux 0x89cb46be ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0x89e8c1f4 textsearch_register -EXPORT_SYMBOL vmlinux 0x8a0ca579 generic_file_llseek_size EXPORT_SYMBOL vmlinux 0x8a13a043 pci_dev_put +EXPORT_SYMBOL vmlinux 0x8a17fad9 udp6_seq_ops EXPORT_SYMBOL vmlinux 0x8a1a7ff4 rproc_add_carveout EXPORT_SYMBOL vmlinux 0x8a251bcb tty_check_change -EXPORT_SYMBOL vmlinux 0x8a2b0787 genl_register_family -EXPORT_SYMBOL vmlinux 0x8a2c3785 sched_autogroup_detach EXPORT_SYMBOL vmlinux 0x8a3b1285 __xa_erase -EXPORT_SYMBOL vmlinux 0x8a3b1ac1 flow_block_cb_incref EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x8a55c6c7 __inet_hash EXPORT_SYMBOL vmlinux 0x8a5c7470 of_get_child_by_name EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a84abde vmf_insert_pfn_prot EXPORT_SYMBOL vmlinux 0x8a878b83 nand_ecc_sw_hamming_correct -EXPORT_SYMBOL vmlinux 0x8a88d261 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x8a8a7390 sdev_prefix_printk EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab EXPORT_SYMBOL vmlinux 0x8aa0402b _raw_read_unlock_irqrestore EXPORT_SYMBOL vmlinux 0x8aa30959 ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x8aaa66d7 phy_suspend +EXPORT_SYMBOL vmlinux 0x8aaf0095 neigh_seq_stop EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8acfe066 vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0x8ad5e233 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x8accece3 send_sig +EXPORT_SYMBOL vmlinux 0x8acd5145 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x8adb7bd6 nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0x8ade3fe2 padata_alloc -EXPORT_SYMBOL vmlinux 0x8ae50dc8 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x8aeca3dd submit_bio_noacct EXPORT_SYMBOL vmlinux 0x8aff3120 fault_in_iov_iter_writeable EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x8b47e918 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x8b4f5e80 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x8b4fc42b ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x8b08b30f napi_gro_receive +EXPORT_SYMBOL vmlinux 0x8b1d353c mmc_detect_change EXPORT_SYMBOL vmlinux 0x8b5927a0 down_timeout EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid EXPORT_SYMBOL vmlinux 0x8b6f9f76 blake2s_compress -EXPORT_SYMBOL vmlinux 0x8b70f856 vm_iomap_memory EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b8c0e14 sock_init_data -EXPORT_SYMBOL vmlinux 0x8b8e2767 devm_devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample EXPORT_SYMBOL vmlinux 0x8b91e28f vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x8b9909eb netlink_set_err EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8b9f3aef dev_get_iflink -EXPORT_SYMBOL vmlinux 0x8bb2efe9 vme_master_request +EXPORT_SYMBOL vmlinux 0x8ba56fe2 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x8ba6d316 netpoll_cleanup EXPORT_SYMBOL vmlinux 0x8bb55681 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x8bb8b21b iw_handler_set_spy EXPORT_SYMBOL vmlinux 0x8bcc7b9f bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x8bcf780f follow_down_one -EXPORT_SYMBOL vmlinux 0x8bd33091 wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0x8bd752f1 inet_unregister_protosw EXPORT_SYMBOL vmlinux 0x8bd999c1 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x8bda3c8e xp_alloc +EXPORT_SYMBOL vmlinux 0x8bdb278f __dev_remove_pack EXPORT_SYMBOL vmlinux 0x8bdd80c8 freeze_super EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8bec3f98 tcp_peek_len EXPORT_SYMBOL vmlinux 0x8bee75d7 proc_dostring EXPORT_SYMBOL vmlinux 0x8bffd44c dquot_commit -EXPORT_SYMBOL vmlinux 0x8c112679 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x8c0ac2cc ptp_clock_event +EXPORT_SYMBOL vmlinux 0x8c154dc9 tc_cleanup_flow_action EXPORT_SYMBOL vmlinux 0x8c1f00d5 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x8c34094f tcp_sync_mss EXPORT_SYMBOL vmlinux 0x8c3afa36 sget_fc EXPORT_SYMBOL vmlinux 0x8c3c7540 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x8c5cff84 ip_mc_join_group EXPORT_SYMBOL vmlinux 0x8c5d254a dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0x8c613c5d __skb_recv_udp EXPORT_SYMBOL vmlinux 0x8c690629 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x8c6ab568 i2c_register_driver EXPORT_SYMBOL vmlinux 0x8c6bb37b scsi_register_driver -EXPORT_SYMBOL vmlinux 0x8c6d2a53 tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0x8c704a04 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x8c74f0be inet6_protos +EXPORT_SYMBOL vmlinux 0x8c7ba708 flush_signals EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c904c29 dst_dev_put +EXPORT_SYMBOL vmlinux 0x8c89f349 scsi_host_lookup EXPORT_SYMBOL vmlinux 0x8ca0011c snd_pcm_new_internal EXPORT_SYMBOL vmlinux 0x8ca10772 gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0x8ca76524 fs_param_is_blob EXPORT_SYMBOL vmlinux 0x8caa0a37 blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cb6caef dev_get_port_parent_id EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x8cc75b08 crypto_sha1_update EXPORT_SYMBOL vmlinux 0x8cd505b0 _copy_from_iter_nocache EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma -EXPORT_SYMBOL vmlinux 0x8cded813 PageMovable +EXPORT_SYMBOL vmlinux 0x8cdceb84 mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0x8ce13cc5 udplite_table EXPORT_SYMBOL vmlinux 0x8ce2e5f1 md_write_end -EXPORT_SYMBOL vmlinux 0x8cf4dc28 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x8cf9a3e8 phy_attach EXPORT_SYMBOL vmlinux 0x8d0ba395 misc_register -EXPORT_SYMBOL vmlinux 0x8d2a1aa2 tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x8d368e71 kernel_accept -EXPORT_SYMBOL vmlinux 0x8d3818a0 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x8d334c76 ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var +EXPORT_SYMBOL vmlinux 0x8d4283c7 scsi_alloc_sgtables EXPORT_SYMBOL vmlinux 0x8d4903f2 pcim_enable_device EXPORT_SYMBOL vmlinux 0x8d52073e scsi_rescan_device EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d56fab1 netdev_alert -EXPORT_SYMBOL vmlinux 0x8d5e71a3 xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper EXPORT_SYMBOL vmlinux 0x8d74e19c set_anon_super EXPORT_SYMBOL vmlinux 0x8d74e912 cdev_set_parent EXPORT_SYMBOL vmlinux 0x8d7eb567 nand_write_page_raw EXPORT_SYMBOL vmlinux 0x8d8887b1 kobject_init -EXPORT_SYMBOL vmlinux 0x8dac8e19 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x8db0b140 dev_add_offload -EXPORT_SYMBOL vmlinux 0x8dc2db9d mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x8da922c0 put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0x8dc76f9c input_reset_device EXPORT_SYMBOL vmlinux 0x8dccc132 backlight_device_get_by_type EXPORT_SYMBOL vmlinux 0x8dce3991 inode_init_always EXPORT_SYMBOL vmlinux 0x8dd26df8 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x8dd65a06 netdev_adjacent_change_abort EXPORT_SYMBOL vmlinux 0x8ddce747 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x8ddd106c unregister_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout EXPORT_SYMBOL vmlinux 0x8de1616c bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x8de8ebc4 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x8dec0bcc skb_push EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum -EXPORT_SYMBOL vmlinux 0x8df78602 vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null EXPORT_SYMBOL vmlinux 0x8dfefc0d kvmalloc_node -EXPORT_SYMBOL vmlinux 0x8e076766 __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0x8e19c26c submit_bio_wait -EXPORT_SYMBOL vmlinux 0x8e24380c netdev_info -EXPORT_SYMBOL vmlinux 0x8e254967 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x8e1c2f90 mmc_wait_for_cmd EXPORT_SYMBOL vmlinux 0x8e3665e6 sg_free_append_table -EXPORT_SYMBOL vmlinux 0x8e3771f1 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x8e476b39 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x8e41d64c tcp_v4_mtu_reduced EXPORT_SYMBOL vmlinux 0x8e47d019 config_item_init_type_name EXPORT_SYMBOL vmlinux 0x8e4872d3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e4bc3f9 file_check_and_advance_wb_err EXPORT_SYMBOL vmlinux 0x8e5868d0 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x8e666b9f key_move EXPORT_SYMBOL vmlinux 0x8e6f87d5 generic_iommu_put_resv_regions EXPORT_SYMBOL vmlinux 0x8e702df4 super_setup_bdi_name EXPORT_SYMBOL vmlinux 0x8e71dd00 fs_param_is_path -EXPORT_SYMBOL vmlinux 0x8e7cb344 build_skb_around EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops EXPORT_SYMBOL vmlinux 0x8e876807 rps_needed -EXPORT_SYMBOL vmlinux 0x8e887a97 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x8e89bf74 phy_support_asym_pause EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e9edbe4 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x8ea998c6 update_devfreq EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL vmlinux 0x8ed032db dev_set_mac_address EXPORT_SYMBOL vmlinux 0x8ed0d94d bio_chain EXPORT_SYMBOL vmlinux 0x8edbfffb hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x8ededa5d __ip_select_ident EXPORT_SYMBOL vmlinux 0x8efdb2ff snd_jack_report EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask EXPORT_SYMBOL vmlinux 0x8f0bb0fc uart_get_divisor EXPORT_SYMBOL vmlinux 0x8f172ae9 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x8f22286e genphy_update_link EXPORT_SYMBOL vmlinux 0x8f22a027 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x8f376cdf xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x8f4e9038 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x8f2f05a2 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x8f329678 default_llseek +EXPORT_SYMBOL vmlinux 0x8f360689 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x8f4abe6a tcf_qevent_validate_change EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major +EXPORT_SYMBOL vmlinux 0x8f5ef332 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x8f625b7a ipv6_mc_check_mld EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard -EXPORT_SYMBOL vmlinux 0x8f72b232 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x8f772762 fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0x8f7be8c3 framebuffer_alloc EXPORT_SYMBOL vmlinux 0x8f8f657f bsearch +EXPORT_SYMBOL vmlinux 0x8f9348e2 ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode EXPORT_SYMBOL vmlinux 0x8f9f8483 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x8fa5cd6d napi_build_skb +EXPORT_SYMBOL vmlinux 0x8fa5e94b genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x8fbcf685 i2c_clients_command EXPORT_SYMBOL vmlinux 0x8fd168d7 of_pci_range_to_resource EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin EXPORT_SYMBOL vmlinux 0x8fd385c1 blk_queue_segment_boundary EXPORT_SYMBOL vmlinux 0x8fe35457 xxh32_update -EXPORT_SYMBOL vmlinux 0x8fe6eb23 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0x8ff1e740 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x8ff149a2 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x8ff23474 genphy_loopback EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit EXPORT_SYMBOL vmlinux 0x8ff997af snd_pcm_lib_free_pages EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush EXPORT_SYMBOL vmlinux 0x9001dbec fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x9020f2af dev_mc_del -EXPORT_SYMBOL vmlinux 0x9042344f flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x9043fbb8 phy_device_register +EXPORT_SYMBOL vmlinux 0x900dbaef netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x9035202d inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x903b47e6 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x904168d1 jbd2_journal_unlock_updates EXPORT_SYMBOL vmlinux 0x904b363c snd_jack_set_parent -EXPORT_SYMBOL vmlinux 0x905a0874 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x904d2fdb i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x905d7532 tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0x90609db6 gen_pool_virt_to_phys EXPORT_SYMBOL vmlinux 0x906f5252 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x90918e53 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x90932fb6 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x9076b335 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0x909332ca register_sysctl -EXPORT_SYMBOL vmlinux 0x909d45fb gro_cells_init -EXPORT_SYMBOL vmlinux 0x90ac69ba tcp_seq_next -EXPORT_SYMBOL vmlinux 0x90b630c0 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x90d6e95f unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x90db58bc follow_pfn -EXPORT_SYMBOL vmlinux 0x912c9cdb sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x9131d0eb mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x90b00085 nf_log_packet +EXPORT_SYMBOL vmlinux 0x90b882b9 xp_can_alloc +EXPORT_SYMBOL vmlinux 0x90c96cc9 blk_get_request +EXPORT_SYMBOL vmlinux 0x90d93e56 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x90dfc593 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x90e6fd71 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x910f6878 finish_no_open +EXPORT_SYMBOL vmlinux 0x9124653c filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x912d21a1 kmem_cache_destroy EXPORT_SYMBOL vmlinux 0x9135dba6 wait_for_completion_interruptible_timeout EXPORT_SYMBOL vmlinux 0x9135dc18 simple_setattr EXPORT_SYMBOL vmlinux 0x91458f85 pci_free_irq -EXPORT_SYMBOL vmlinux 0x915bd2ec _dev_info -EXPORT_SYMBOL vmlinux 0x91667220 security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x916b1166 mmc_erase EXPORT_SYMBOL vmlinux 0x91872199 _page_poisoning_enabled EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 @@ -9051,63 +8951,77 @@ EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove EXPORT_SYMBOL vmlinux 0x91a9c232 __siphash_unaligned EXPORT_SYMBOL vmlinux 0x91aaa89c dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x91b1810c crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x91bc254d __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x91c091f4 add_to_page_cache_locked EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91ce2c8d netif_skb_features +EXPORT_SYMBOL vmlinux 0x91c6ecf5 flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0x91d69003 __kmap_to_page -EXPORT_SYMBOL vmlinux 0x91d73d30 ptp_clock_event -EXPORT_SYMBOL vmlinux 0x91df5374 ppp_input EXPORT_SYMBOL vmlinux 0x91e7fbdb param_ops_int -EXPORT_SYMBOL vmlinux 0x91f26bbe netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x91ebb1e7 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x91f22d5f netdev_warn +EXPORT_SYMBOL vmlinux 0x91f49679 skb_free_datagram EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x91f915be kmalloc_caches +EXPORT_SYMBOL vmlinux 0x92061cbc __dev_kfree_skb_irq EXPORT_SYMBOL vmlinux 0x920f52f5 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x92144e84 pagecache_get_page EXPORT_SYMBOL vmlinux 0x921a7b9e __tracepoint_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x921b07b1 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x922e081e crypto_sha1_update EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x924a8aa7 phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0x9251f7d8 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x92837b2e _dev_notice -EXPORT_SYMBOL vmlinux 0x9292ec07 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x9295aabe xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x925b9c1d skb_dequeue +EXPORT_SYMBOL vmlinux 0x927a6ef0 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x927ff567 __icmp_send EXPORT_SYMBOL vmlinux 0x92997ed8 _printk EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92c1d358 inet6_offloads -EXPORT_SYMBOL vmlinux 0x92d04de5 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x92d0eacd cookie_ecn_ok 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 0x92e46fc4 dma_get_sgtable_attrs EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92f1ca0b buffer_check_dirty_writeback EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r EXPORT_SYMBOL vmlinux 0x9342e414 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x9349e38c inet_frag_kill EXPORT_SYMBOL vmlinux 0x934dd2e0 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x935fcd70 register_fib_notifier EXPORT_SYMBOL vmlinux 0x93713086 sg_split +EXPORT_SYMBOL vmlinux 0x9376c65b phy_support_sym_pause EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93a699bd udp_read_sock EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93ab0210 mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x93b29c10 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x93b12655 cqhci_resume EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93bca6c2 lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0x93bdaa1f dma_pool_free EXPORT_SYMBOL vmlinux 0x93cfc1f8 mipi_dsi_dcs_get_display_brightness EXPORT_SYMBOL vmlinux 0x93d95b3a vme_slave_set -EXPORT_SYMBOL vmlinux 0x93ecbd8c io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x93eede98 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x93fad317 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x93ff7a69 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x94042137 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x940977e5 ptp_clock_register EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list +EXPORT_SYMBOL vmlinux 0x940f33fb security_sock_graft +EXPORT_SYMBOL vmlinux 0x941a12c0 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x9426514b ptp_clock_index +EXPORT_SYMBOL vmlinux 0x942d0435 xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0x943dc8aa crc32_be EXPORT_SYMBOL vmlinux 0x943f29cb d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x9440fa42 neigh_connected_output EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x9455b95a jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x9455fbf2 __pskb_pull_tail EXPORT_SYMBOL vmlinux 0x945911ea single_open EXPORT_SYMBOL vmlinux 0x945eb81c add_device_randomness EXPORT_SYMBOL vmlinux 0x9470e9a9 sb_set_blocksize EXPORT_SYMBOL vmlinux 0x948245d9 elv_rb_del +EXPORT_SYMBOL vmlinux 0x948681cc dump_skip_to EXPORT_SYMBOL vmlinux 0x9489ff36 dma_fence_signal_timestamp_locked EXPORT_SYMBOL vmlinux 0x9491433f hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x9494b5bc nf_log_unregister +EXPORT_SYMBOL vmlinux 0x949323dd __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0x94961283 vunmap EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 EXPORT_SYMBOL vmlinux 0x94bf4423 bdi_alloc @@ -9115,668 +9029,657 @@ EXPORT_SYMBOL vmlinux 0x94d7334d snd_card_set_id EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user EXPORT_SYMBOL vmlinux 0x9510e110 rawnand_sw_bch_init +EXPORT_SYMBOL vmlinux 0x951609d4 netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0x95368d33 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x953b3ec5 sock_wfree EXPORT_SYMBOL vmlinux 0x954f099c idr_preload EXPORT_SYMBOL vmlinux 0x95506f48 unlock_new_inode EXPORT_SYMBOL vmlinux 0x956e9374 param_get_int -EXPORT_SYMBOL vmlinux 0x9583d863 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x95856ff9 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x9586c2f2 free_task EXPORT_SYMBOL vmlinux 0x958ea593 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x958fc796 netpoll_setup -EXPORT_SYMBOL vmlinux 0x9598a812 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x95905b46 of_get_ethdev_address EXPORT_SYMBOL vmlinux 0x95af9d82 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL vmlinux 0x95b67688 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x95baa3a4 vm_insert_page +EXPORT_SYMBOL vmlinux 0x95c12a02 vme_slave_request EXPORT_SYMBOL vmlinux 0x95c149c6 param_set_byte -EXPORT_SYMBOL vmlinux 0x95c66647 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x95cd5eb2 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 EXPORT_SYMBOL vmlinux 0x95e5ca74 __tracepoint_kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x960f1f86 tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0x96113aff __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x961341d0 udp_seq_ops EXPORT_SYMBOL vmlinux 0x9617c360 of_graph_get_remote_endpoint EXPORT_SYMBOL vmlinux 0x961841b0 get_user_pages_remote EXPORT_SYMBOL vmlinux 0x96187199 pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0x9618ede0 mutex_unlock EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add -EXPORT_SYMBOL vmlinux 0x9630693d setup_arg_pages +EXPORT_SYMBOL vmlinux 0x96300e19 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x96466bb4 dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0x964932b4 rawnand_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0x964fa4e7 netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x9662f29f generic_file_open +EXPORT_SYMBOL vmlinux 0x965a98b5 noop_llseek EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg EXPORT_SYMBOL vmlinux 0x9672249b __devm_request_region +EXPORT_SYMBOL vmlinux 0x96771651 i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x96779235 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x9679f98f nf_log_bind_pf EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac EXPORT_SYMBOL vmlinux 0x968b7b44 d_find_alias -EXPORT_SYMBOL vmlinux 0x968c12d7 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x968b9170 vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0x96b43794 kmem_cache_alloc_trace EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96e33ea6 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x96e78de8 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x96f7456d find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x96d6d3e3 vfs_copy_file_range EXPORT_SYMBOL vmlinux 0x96fcc9fa elv_rb_find +EXPORT_SYMBOL vmlinux 0x96fd497a mmc_erase EXPORT_SYMBOL vmlinux 0x97005f8a blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x97022faf mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0x9709dbc5 current_work EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x97187593 scmd_printk EXPORT_SYMBOL vmlinux 0x971a7c0c __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x9721baf3 iterate_dir EXPORT_SYMBOL vmlinux 0x97255bdf strlen -EXPORT_SYMBOL vmlinux 0x97276766 sock_bind_add -EXPORT_SYMBOL vmlinux 0x9739adb4 nf_register_queue_handler EXPORT_SYMBOL vmlinux 0x973e96e0 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x9750c604 ptp_schedule_worker EXPORT_SYMBOL vmlinux 0x975f1f56 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x9761138c __find_get_block +EXPORT_SYMBOL vmlinux 0x9760bd11 i2c_smbus_write_i2c_block_data EXPORT_SYMBOL vmlinux 0x976d4438 param_set_ullong -EXPORT_SYMBOL vmlinux 0x976e93d9 neigh_changeaddr EXPORT_SYMBOL vmlinux 0x97776418 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x978a4e73 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x978fa32d balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x9795b81a mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x9798a78d vfs_mkobj -EXPORT_SYMBOL vmlinux 0x9798fc72 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x979fa427 sock_register +EXPORT_SYMBOL vmlinux 0x97a48b5b skb_queue_purge EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list EXPORT_SYMBOL vmlinux 0x97c07542 d_drop -EXPORT_SYMBOL vmlinux 0x97d0a93a dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x97d30fac sk_capable +EXPORT_SYMBOL vmlinux 0x97dd6be5 freezing_slow_path EXPORT_SYMBOL vmlinux 0x97de2793 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x97f36959 skb_copy +EXPORT_SYMBOL vmlinux 0x97e36250 udp_seq_next +EXPORT_SYMBOL vmlinux 0x97f04c9d clean_bdev_aliases EXPORT_SYMBOL vmlinux 0x9803b339 unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0x981100ce scm_detach_fds -EXPORT_SYMBOL vmlinux 0x982254aa crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x9809ae71 kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0x9828315a d_rehash +EXPORT_SYMBOL vmlinux 0x98307edf alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x983171d6 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x9834bc78 dev_lstats_read EXPORT_SYMBOL vmlinux 0x983ac031 remove_wait_queue EXPORT_SYMBOL vmlinux 0x983ca076 iov_iter_gap_alignment EXPORT_SYMBOL vmlinux 0x9850a8ee tty_port_close_start -EXPORT_SYMBOL vmlinux 0x98535cd9 __netif_napi_del EXPORT_SYMBOL vmlinux 0x9857081c blk_queue_update_dma_pad EXPORT_SYMBOL vmlinux 0x9858f589 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x985ad7c9 unix_attach_fds EXPORT_SYMBOL vmlinux 0x985fe92a clear_inode +EXPORT_SYMBOL vmlinux 0x986c5b87 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x98719be1 vme_bus_num +EXPORT_SYMBOL vmlinux 0x9871cb14 dev_uc_init EXPORT_SYMBOL vmlinux 0x987942eb simple_empty EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset EXPORT_SYMBOL vmlinux 0x98832da8 utf8ncursor -EXPORT_SYMBOL vmlinux 0x9886dd73 inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0x9891d82e ucc_slow_stop_tx EXPORT_SYMBOL vmlinux 0x98a21b5a neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x98a24fea file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x98a30c3a skb_vlan_push -EXPORT_SYMBOL vmlinux 0x98a5f829 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x98ac0e8e dev_uc_add_excl EXPORT_SYMBOL vmlinux 0x98b6c44d get_vm_area EXPORT_SYMBOL vmlinux 0x98be0507 get_user_pages_locked EXPORT_SYMBOL vmlinux 0x98c87399 blk_rq_count_integrity_sg EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x98d4906c snd_timer_stop EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x9906c00d eth_header_cache_update EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x9919ce71 security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0x992021e0 jbd2_submit_inode_data EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available -EXPORT_SYMBOL vmlinux 0x9933893a skb_seq_read 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 0x994c5dbc xfrm_init_replay EXPORT_SYMBOL vmlinux 0x994f6322 pm860x_bulk_write EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x995adccf icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0x996829ea swake_up_all +EXPORT_SYMBOL vmlinux 0x996b18ef __skb_checksum_complete EXPORT_SYMBOL vmlinux 0x996d7bd6 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x99733599 create_empty_buffers EXPORT_SYMBOL vmlinux 0x9980708b of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x99876c54 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x999126db sock_alloc_send_pskb EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a6f3e1 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x99a05922 dev_uc_unsync EXPORT_SYMBOL vmlinux 0x99b94e75 amba_driver_register EXPORT_SYMBOL vmlinux 0x99bb8806 memmove -EXPORT_SYMBOL vmlinux 0x99c4f91d vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x99c0193d devfreq_add_device +EXPORT_SYMBOL vmlinux 0x99c9092d block_write_full_page EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL vmlinux 0x99d3d976 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x99caecb4 generic_file_direct_write EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99d58ba4 __xfrm_state_delete EXPORT_SYMBOL vmlinux 0x99df88ea devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x99f29d3e __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x99ea9bf3 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler EXPORT_SYMBOL vmlinux 0x9a12d07b sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x9a17118e jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x9a188c7c open_with_fake_path EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk EXPORT_SYMBOL vmlinux 0x9a2f5c8e mdiobb_read -EXPORT_SYMBOL vmlinux 0x9a4bfb51 __sock_create +EXPORT_SYMBOL vmlinux 0x9a30f56e tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x9a43f58b vme_register_error_handler EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk EXPORT_SYMBOL vmlinux 0x9a71b4e4 param_ops_ullong EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range EXPORT_SYMBOL vmlinux 0x9a89a7a3 proc_douintvec -EXPORT_SYMBOL vmlinux 0x9a90044e udp_prot +EXPORT_SYMBOL vmlinux 0x9a8a2ed0 phy_start +EXPORT_SYMBOL vmlinux 0x9aa5d0f0 do_splice_direct EXPORT_SYMBOL vmlinux 0x9aa9cea4 trace_print_flags_seq_u64 EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9adf5c8f fc_mount +EXPORT_SYMBOL vmlinux 0x9adb50d4 netif_set_xps_queue EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9affa733 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x9af77611 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x9af796b6 kernel_connect +EXPORT_SYMBOL vmlinux 0x9b061a06 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x9b07757c seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state EXPORT_SYMBOL vmlinux 0x9b1b7306 xxh64 EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b25fe43 ll_rw_block -EXPORT_SYMBOL vmlinux 0x9b2de754 __put_page EXPORT_SYMBOL vmlinux 0x9b2fe361 serio_open EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b376046 blk_put_queue EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc EXPORT_SYMBOL vmlinux 0x9b4c105e input_allocate_device -EXPORT_SYMBOL vmlinux 0x9b58e3a8 vfs_fadvise EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b77ad48 neigh_destroy -EXPORT_SYMBOL vmlinux 0x9b801d35 nf_setsockopt EXPORT_SYMBOL vmlinux 0x9b9327a0 elv_rb_latter_request EXPORT_SYMBOL vmlinux 0x9b94199e pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x9bb1ca77 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x9bc0c4d8 qdisc_hash_add EXPORT_SYMBOL vmlinux 0x9bc6885d security_binder_transaction EXPORT_SYMBOL vmlinux 0x9bc6c121 blk_queue_virt_boundary EXPORT_SYMBOL vmlinux 0x9bccb406 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x9bd256ca mr_table_dump EXPORT_SYMBOL vmlinux 0x9be259d6 mipi_dsi_dcs_set_column_address EXPORT_SYMBOL vmlinux 0x9be2e258 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x9be9e9ba of_phy_connect EXPORT_SYMBOL vmlinux 0x9bf74170 mpage_readahead EXPORT_SYMBOL vmlinux 0x9bfee2e4 iov_iter_npages EXPORT_SYMBOL vmlinux 0x9c1ad767 snd_pcm_hw_constraint_ratdens EXPORT_SYMBOL vmlinux 0x9c25c29a rproc_shutdown -EXPORT_SYMBOL vmlinux 0x9c2c07ed skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x9c3a145d __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x9c4989e5 inet_addr_type EXPORT_SYMBOL vmlinux 0x9c4e3ded serial8250_do_pm EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck EXPORT_SYMBOL vmlinux 0x9c7419dc ZSTD_initDStream_usingDDict EXPORT_SYMBOL vmlinux 0x9c7b2182 input_get_timestamp -EXPORT_SYMBOL vmlinux 0x9c810caf rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x9c830458 vfs_tmpfile EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c94259b locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9ccdac8d xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0x9ccfb7bb sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x9cd21bb2 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x9cd5c848 do_splice_direct -EXPORT_SYMBOL vmlinux 0x9cde26b5 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x9ccc1b4c tcp_seq_stop EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9ce228a6 __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x9cf48f33 elm_config EXPORT_SYMBOL vmlinux 0x9d06ac33 free_bucket_spinlocks EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d0e82f6 rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0x9d122cc1 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x9d13f6c8 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x9d1a9652 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x9d21ec2f gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key EXPORT_SYMBOL vmlinux 0x9d37cbb9 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x9d4066c8 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x9d3bf3b3 __sk_mem_schedule EXPORT_SYMBOL vmlinux 0x9d473d5c max8925_reg_write EXPORT_SYMBOL vmlinux 0x9d49eb1b iov_iter_discard -EXPORT_SYMBOL vmlinux 0x9d4fa66b xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0x9d50695e sk_net_capable EXPORT_SYMBOL vmlinux 0x9d5cd559 reservation_ww_class +EXPORT_SYMBOL vmlinux 0x9d5e1d7c dev_mc_add_global EXPORT_SYMBOL vmlinux 0x9d669763 memcpy -EXPORT_SYMBOL vmlinux 0x9d701a0b noop_qdisc EXPORT_SYMBOL vmlinux 0x9d78013a blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x9d8e8328 skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9db6f68a inet_frag_kill +EXPORT_SYMBOL vmlinux 0x9db9aa72 devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x9dc08a71 pgprot_kernel -EXPORT_SYMBOL vmlinux 0x9dce88c1 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x9dcb1ce4 unregister_fib_notifier EXPORT_SYMBOL vmlinux 0x9de024e0 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0x9de5f25f generic_splice_sendpage EXPORT_SYMBOL vmlinux 0x9deeb94c tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x9df98b41 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x9df9e45c sk_error_report EXPORT_SYMBOL vmlinux 0x9e02bda4 component_match_add_typed EXPORT_SYMBOL vmlinux 0x9e06ff5a show_init_ipc_ns EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e2e9ef6 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x9e4e1ee1 skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5248ee phy_start_cable_test EXPORT_SYMBOL vmlinux 0x9e575e0b bio_init +EXPORT_SYMBOL vmlinux 0x9e5ac5fd neigh_sysctl_register EXPORT_SYMBOL vmlinux 0x9e60faf7 __ps2_command EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str EXPORT_SYMBOL vmlinux 0x9e72c655 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x9e83b91f skb_queue_tail -EXPORT_SYMBOL vmlinux 0x9e8ab244 tcp_sock_set_keepintvl EXPORT_SYMBOL vmlinux 0x9e97d6c5 of_match_device EXPORT_SYMBOL vmlinux 0x9e9a9cb4 trace_print_hex_seq EXPORT_SYMBOL vmlinux 0x9e9b7dfe scsi_get_device_flags_keyed EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9eb14773 sock_recvmsg EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ec6ee38 ata_print_version EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set EXPORT_SYMBOL vmlinux 0x9edb851e device_add_disk EXPORT_SYMBOL vmlinux 0x9edd9b74 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x9ede52a8 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x9ee1ac8b release_pages EXPORT_SYMBOL vmlinux 0x9ef28453 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x9f112520 xfrm_state_free -EXPORT_SYMBOL vmlinux 0x9f25d2be inet_stream_connect EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy EXPORT_SYMBOL vmlinux 0x9f5ba6ad ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0x9f743b58 keyring_search +EXPORT_SYMBOL vmlinux 0x9f77c004 __phy_resume EXPORT_SYMBOL vmlinux 0x9f7ae060 node_states -EXPORT_SYMBOL vmlinux 0x9f7dca3c skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x9f80d131 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x9f8d5e13 nonseekable_open +EXPORT_SYMBOL vmlinux 0x9f92160a call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fb36c00 __hw_addr_ref_unsync_dev EXPORT_SYMBOL vmlinux 0x9fbbe8cb simple_rmdir EXPORT_SYMBOL vmlinux 0x9fc10bb8 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x9fd23108 key_move EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe32df1 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x9fe6d6df mdio_bus_type EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog EXPORT_SYMBOL vmlinux 0x9ffedecf input_free_device EXPORT_SYMBOL vmlinux 0xa00597b3 unregister_quota_format EXPORT_SYMBOL vmlinux 0xa0133f9a cpumask_any_and_distribute EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa01f9eaa __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xa01dde22 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xa0228343 xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0xa0291249 setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0xa02bbf27 buffer_check_dirty_writeback EXPORT_SYMBOL vmlinux 0xa02eae9e simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xa0318dee i2c_smbus_read_word_data EXPORT_SYMBOL vmlinux 0xa033d747 next_arg EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes EXPORT_SYMBOL vmlinux 0xa04581ee dqput +EXPORT_SYMBOL vmlinux 0xa04b918a __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh -EXPORT_SYMBOL vmlinux 0xa0538f42 scsi_host_alloc EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa07a672c mdio_find_bus EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa08c760f ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xa08faba4 __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa097c323 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xa0a2f3f4 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xa09e9804 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xa0a7109c qdisc_put 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 0xa0b9506c input_unregister_handler EXPORT_SYMBOL vmlinux 0xa0c84233 current_time -EXPORT_SYMBOL vmlinux 0xa0ccef8e phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0xa0cae22c devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0dbdccd __getblk_gfp +EXPORT_SYMBOL vmlinux 0xa0e12372 i2c_verify_client 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 0xa0ed2fef sock_set_keepalive EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit EXPORT_SYMBOL vmlinux 0xa102dc48 of_get_next_parent EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa10adb19 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xa10af8dc nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xa10b707e flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xa10cdb78 blk_get_queue EXPORT_SYMBOL vmlinux 0xa123440b nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0xa127b416 locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0xa1311161 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xa13acb22 xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0xa144a6c5 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL vmlinux 0xa145470d blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0xa1488b89 km_new_mapping -EXPORT_SYMBOL vmlinux 0xa15997a9 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0xa14c2409 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xa1580a23 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xa15939d4 no_llseek EXPORT_SYMBOL vmlinux 0xa15d0131 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xa165be75 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xa1658fc0 mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0xa167fb8a __frontswap_load EXPORT_SYMBOL vmlinux 0xa16b21fb wait_for_completion_timeout EXPORT_SYMBOL vmlinux 0xa176e825 I_BDEV EXPORT_SYMBOL vmlinux 0xa177ab3b dma_pool_create EXPORT_SYMBOL vmlinux 0xa17bd3fc add_wait_queue -EXPORT_SYMBOL vmlinux 0xa1b33739 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xa1939105 page_symlink +EXPORT_SYMBOL vmlinux 0xa19728b4 sock_release +EXPORT_SYMBOL vmlinux 0xa1a1bb7d xfrm6_protocol_register EXPORT_SYMBOL vmlinux 0xa1bacd91 qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0xa1c89e37 kern_path_create +EXPORT_SYMBOL vmlinux 0xa1bcf58d locks_init_lock +EXPORT_SYMBOL vmlinux 0xa1c1d3d6 pagecache_write_begin EXPORT_SYMBOL vmlinux 0xa1cf7366 rc5t583_ext_power_req_config EXPORT_SYMBOL vmlinux 0xa1d131ed vmemdup_user EXPORT_SYMBOL vmlinux 0xa1db69a9 freeze_bdev EXPORT_SYMBOL vmlinux 0xa1dc993f kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0xa204360e ipmi_platform_add EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa23611b6 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xa21f406f tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xa22039b4 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xa22a1942 arp_create +EXPORT_SYMBOL vmlinux 0xa23c3158 __neigh_event_send EXPORT_SYMBOL vmlinux 0xa23ca42b blk_mq_alloc_request EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort EXPORT_SYMBOL vmlinux 0xa24491bf ida_free +EXPORT_SYMBOL vmlinux 0xa249018e __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa25491a0 remap_pfn_range EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa2630915 gro_find_complete_by_type EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer EXPORT_SYMBOL vmlinux 0xa268c078 proc_create -EXPORT_SYMBOL vmlinux 0xa2845217 mntput +EXPORT_SYMBOL vmlinux 0xa26c37e0 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xa26df33b sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xa27f4ef9 file_open_root EXPORT_SYMBOL vmlinux 0xa285f7d1 pcie_capability_write_word EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa28e93f7 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0xa293801b dev_addr_del -EXPORT_SYMBOL vmlinux 0xa298e7de unix_get_socket -EXPORT_SYMBOL vmlinux 0xa2b07072 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xa28e9068 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xa2a589f8 dst_release +EXPORT_SYMBOL vmlinux 0xa2ad1eaa i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xa2b6ef10 generic_file_read_iter EXPORT_SYMBOL vmlinux 0xa2ca0a62 rpmh_invalidate EXPORT_SYMBOL vmlinux 0xa2ca2d90 alloc_mdio_bitbang +EXPORT_SYMBOL vmlinux 0xa2d3c5d9 sock_efree EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa2e8e281 vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0xa2f222c4 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xa304c4c1 fwnode_irq_get EXPORT_SYMBOL vmlinux 0xa30e409d free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xa30f4f9c devfreq_update_status -EXPORT_SYMBOL vmlinux 0xa3242c32 iterate_fd EXPORT_SYMBOL vmlinux 0xa333d83a thaw_bdev +EXPORT_SYMBOL vmlinux 0xa3367a95 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xa352edce udp_poll EXPORT_SYMBOL vmlinux 0xa3581d19 snd_ctl_replace EXPORT_SYMBOL vmlinux 0xa36fc6e4 input_unregister_handle EXPORT_SYMBOL vmlinux 0xa3719258 mdio_device_register +EXPORT_SYMBOL vmlinux 0xa37319f5 sock_bindtoindex EXPORT_SYMBOL vmlinux 0xa37aca3a blk_post_runtime_resume EXPORT_SYMBOL vmlinux 0xa38878f8 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0xa3960f96 vfs_create EXPORT_SYMBOL vmlinux 0xa3a54979 init_on_free EXPORT_SYMBOL vmlinux 0xa3ac158f sg_alloc_table EXPORT_SYMBOL vmlinux 0xa3b6d60c snd_timer_close EXPORT_SYMBOL vmlinux 0xa3b6e1b7 omap_vrfb_max_height EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch EXPORT_SYMBOL vmlinux 0xa3c00c06 memcg_sockets_enabled_key -EXPORT_SYMBOL vmlinux 0xa3dcec5f scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xa3df26eb xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xa3e4b17d scsi_host_busy EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa4046f77 inode_permission EXPORT_SYMBOL vmlinux 0xa4264b2e rproc_del -EXPORT_SYMBOL vmlinux 0xa4264da0 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xa426cecf send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xa4290aa5 icmp6_send +EXPORT_SYMBOL vmlinux 0xa42e3186 scsi_device_get EXPORT_SYMBOL vmlinux 0xa43799a8 rfs_needed EXPORT_SYMBOL vmlinux 0xa4423fb0 param_set_bool EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key -EXPORT_SYMBOL vmlinux 0xa452c1c0 nlmsg_notify EXPORT_SYMBOL vmlinux 0xa4552208 init_on_alloc +EXPORT_SYMBOL vmlinux 0xa45ddcb2 fib_notifier_ops_unregister EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev -EXPORT_SYMBOL vmlinux 0xa47f92db rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xa481b6ec xfrm_state_update EXPORT_SYMBOL vmlinux 0xa48a499d get_user_pages_unlocked EXPORT_SYMBOL vmlinux 0xa48b1b03 __do_once_slow_done -EXPORT_SYMBOL vmlinux 0xa4a0ad9e ptp_cancel_worker_sync EXPORT_SYMBOL vmlinux 0xa4a1de06 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0xa4a24a4e filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xa4b3f96d netdev_alert EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority EXPORT_SYMBOL vmlinux 0xa4b7f2cc sync_file_get_fence -EXPORT_SYMBOL vmlinux 0xa4cdfc4a inet_addr_type_table EXPORT_SYMBOL vmlinux 0xa4e726b1 devm_pci_remap_cfg_resource EXPORT_SYMBOL vmlinux 0xa4e9556a configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0xa4edd563 genphy_loopback -EXPORT_SYMBOL vmlinux 0xa4fb4d3b __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xa4eacc0a xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xa4f9b57a tcf_block_get_ext EXPORT_SYMBOL vmlinux 0xa4fbc7aa pci_request_regions +EXPORT_SYMBOL vmlinux 0xa4fc4485 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock -EXPORT_SYMBOL vmlinux 0xa4ffc45b scsi_block_requests +EXPORT_SYMBOL vmlinux 0xa501d042 dcb_ieee_getapp_default_prio_mask EXPORT_SYMBOL vmlinux 0xa5040399 file_update_time EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit -EXPORT_SYMBOL vmlinux 0xa510c941 module_refcount EXPORT_SYMBOL vmlinux 0xa521141c pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xa5221b02 dev_set_allmulti EXPORT_SYMBOL vmlinux 0xa527f462 of_graph_is_present EXPORT_SYMBOL vmlinux 0xa5280746 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xa53a3993 genphy_update_link -EXPORT_SYMBOL vmlinux 0xa54fa01a xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color EXPORT_SYMBOL vmlinux 0xa5684076 ida_alloc_range EXPORT_SYMBOL vmlinux 0xa56fde1c __genradix_iter_peek EXPORT_SYMBOL vmlinux 0xa571a63f get_thermal_instance -EXPORT_SYMBOL vmlinux 0xa57ee9bf flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xa577ac5f vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xa578af86 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xa590e6fc tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xa5a048e3 xfrm_state_add EXPORT_SYMBOL vmlinux 0xa5a17b75 seq_bprintf EXPORT_SYMBOL vmlinux 0xa5a91711 _raw_write_lock_bh EXPORT_SYMBOL vmlinux 0xa5aafa78 load_nls_default -EXPORT_SYMBOL vmlinux 0xa5b445cf mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xa5b33d8b inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0xa5bcfdda snd_sgbuf_get_chunk_size +EXPORT_SYMBOL vmlinux 0xa5c392f2 udp_lib_rehash EXPORT_SYMBOL vmlinux 0xa5d43ade configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xa5d8106e kernel_getsockname +EXPORT_SYMBOL vmlinux 0xa5d638f2 qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0xa5e223bb pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0xa611bbad dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xa5e3343d inet_addr_type +EXPORT_SYMBOL vmlinux 0xa5e63cdf try_lookup_one_len EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned EXPORT_SYMBOL vmlinux 0xa61af9a2 blk_mq_end_request EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab EXPORT_SYMBOL vmlinux 0xa62299d7 simple_statfs -EXPORT_SYMBOL vmlinux 0xa63ab44c ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xa643f967 of_phy_find_device EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds EXPORT_SYMBOL vmlinux 0xa64b1c6b dev_pm_opp_unregister_notifier EXPORT_SYMBOL vmlinux 0xa64d5f82 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xa6585c17 __set_page_dirty_buffers EXPORT_SYMBOL vmlinux 0xa6641c6d md_update_sb +EXPORT_SYMBOL vmlinux 0xa668388a tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xa66f8096 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xa67ef5d6 inet_frag_find EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid EXPORT_SYMBOL vmlinux 0xa68613dd get_jiffies_64 EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa69afa99 vm_iomap_memory 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 0xa6a7a2ad div_s64_rem EXPORT_SYMBOL vmlinux 0xa6b7b4a3 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xa6f45dfc nf_log_packet +EXPORT_SYMBOL vmlinux 0xa6d89e56 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xa6debf61 napi_enable +EXPORT_SYMBOL vmlinux 0xa6eca520 vfs_tmpfile EXPORT_SYMBOL vmlinux 0xa6f99501 snd_ctl_rename_id -EXPORT_SYMBOL vmlinux 0xa6fa6300 default_llseek +EXPORT_SYMBOL vmlinux 0xa7004ebb tcp_seq_start EXPORT_SYMBOL vmlinux 0xa700f4fe tty_vhangup +EXPORT_SYMBOL vmlinux 0xa70ad82d __sk_mem_raise_allocated EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available EXPORT_SYMBOL vmlinux 0xa70d8f63 __cleancache_invalidate_page EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector EXPORT_SYMBOL vmlinux 0xa7108e99 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xa728b279 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0xa712a1c3 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xa71cc0ac inode_set_bytes EXPORT_SYMBOL vmlinux 0xa72957cc __dynamic_pr_debug EXPORT_SYMBOL vmlinux 0xa72c5b95 gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0xa72e248f phy_driver_register -EXPORT_SYMBOL vmlinux 0xa73680e6 skb_eth_pop +EXPORT_SYMBOL vmlinux 0xa73be861 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xa73c895c cqhci_init EXPORT_SYMBOL vmlinux 0xa73ee62b _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xa74a36e2 ndo_dflt_fdb_dump EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock EXPORT_SYMBOL vmlinux 0xa7604422 of_get_next_child +EXPORT_SYMBOL vmlinux 0xa7682e03 xfrm4_protocol_register EXPORT_SYMBOL vmlinux 0xa77702e3 config_group_init EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa78d81c9 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xa7a14258 mdiobus_scan EXPORT_SYMBOL vmlinux 0xa7b3181c up_read +EXPORT_SYMBOL vmlinux 0xa7c2ebcc alloc_buffer_head EXPORT_SYMBOL vmlinux 0xa7d42a4f get_watch_queue -EXPORT_SYMBOL vmlinux 0xa7e90f08 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xa7eb9c3b block_is_partially_uptodate EXPORT_SYMBOL vmlinux 0xa7ecc979 task_work_add EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7fb97c0 netdev_lower_get_next EXPORT_SYMBOL vmlinux 0xa7fc446b of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xa7ffe5ef dev_set_mtu EXPORT_SYMBOL vmlinux 0xa80acb56 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xa8262578 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xa8100978 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xa822f909 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xa835aa87 ptp_find_pin EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa84d783f skb_mac_gso_segment EXPORT_SYMBOL vmlinux 0xa868e1d1 snd_timer_start +EXPORT_SYMBOL vmlinux 0xa86a18a2 finalize_exec EXPORT_SYMBOL vmlinux 0xa87b54c4 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0xa8844863 netdev_crit -EXPORT_SYMBOL vmlinux 0xa88b374d register_qdisc -EXPORT_SYMBOL vmlinux 0xa895abaf ip_cmsg_recv_offset 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 0xa8c07aaf dev_set_promiscuity EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8ebeeab mfd_add_devices EXPORT_SYMBOL vmlinux 0xa8ec7d34 crc_ccitt EXPORT_SYMBOL vmlinux 0xa8ee65c1 omap_vrfb_adjust_size EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table EXPORT_SYMBOL vmlinux 0xa8f7f280 idr_get_next_ul EXPORT_SYMBOL vmlinux 0xa905706a user_revoke -EXPORT_SYMBOL vmlinux 0xa910179d neigh_parms_release -EXPORT_SYMBOL vmlinux 0xa9236d59 inet_del_offload -EXPORT_SYMBOL vmlinux 0xa940e33d generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0xa950e72f udp6_csum_init +EXPORT_SYMBOL vmlinux 0xa91dbb64 ptp_find_pin_unlocked EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa999d045 tcp_recvmsg EXPORT_SYMBOL vmlinux 0xa9a7432f qcom_scm_pas_mem_setup -EXPORT_SYMBOL vmlinux 0xa9cc49e9 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xa9bb6def phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xa9d50e23 jbd2_journal_check_used_features EXPORT_SYMBOL vmlinux 0xa9dba8d6 snd_pcm_hw_constraint_ratnums EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl EXPORT_SYMBOL vmlinux 0xa9f5442d mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xaa0ce9ee memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xaa15aafc file_path EXPORT_SYMBOL vmlinux 0xaa15e41f snd_power_wait EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa213e0b skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xaa232723 tcp_mmap +EXPORT_SYMBOL vmlinux 0xaa1e29cb filemap_map_pages EXPORT_SYMBOL vmlinux 0xaa24f748 dcache_dir_lseek EXPORT_SYMBOL vmlinux 0xaa29f7be serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xaa41712f add_to_pipe EXPORT_SYMBOL vmlinux 0xaa42e16a gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0xaa67bada __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xaa5391ee xfrm_unregister_km EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r -EXPORT_SYMBOL vmlinux 0xaa6aca36 mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0xaa6acad9 tcp_enter_cwr EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa702114 netdev_set_num_tc EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL vmlinux 0xaa9136de netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xaa95357f tcp_read_sock +EXPORT_SYMBOL vmlinux 0xaaa474d5 eth_header_parse EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change -EXPORT_SYMBOL vmlinux 0xaac8d0f2 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xaabc6af9 build_skb_around EXPORT_SYMBOL vmlinux 0xaacc9e27 sort EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad56c0b of_find_device_by_node EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaadb8e35 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xaadc9eb1 pneigh_enqueue EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp EXPORT_SYMBOL vmlinux 0xab1d21ec kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xab2f27a4 inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute EXPORT_SYMBOL vmlinux 0xab5c1f7f rproc_vq_interrupt EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab605185 page_cache_next_miss EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin -EXPORT_SYMBOL vmlinux 0xab71e98b devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0xab72d2a7 sock_set_reuseport EXPORT_SYMBOL vmlinux 0xab7603e7 imx_ssi_fiq_start EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab803ab8 file_fdatawait_range -EXPORT_SYMBOL vmlinux 0xab9e3d70 generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0xabd3cb71 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xab8d99c4 netpoll_setup +EXPORT_SYMBOL vmlinux 0xab9ea0f5 i2c_smbus_read_byte EXPORT_SYMBOL vmlinux 0xabd727bf dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xabedb6e6 neigh_direct_output EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s EXPORT_SYMBOL vmlinux 0xabfcab2a snd_mixer_oss_notify_callback -EXPORT_SYMBOL vmlinux 0xabffe915 sk_reset_timer EXPORT_SYMBOL vmlinux 0xac046aa5 configfs_register_group -EXPORT_SYMBOL vmlinux 0xac15ce95 mem_map +EXPORT_SYMBOL vmlinux 0xac0f5a2a phy_driver_register EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac1b3ce0 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0xac2eec22 starget_for_each_device EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd EXPORT_SYMBOL vmlinux 0xac331b07 ucc_slow_free EXPORT_SYMBOL vmlinux 0xac35b48a snd_info_register EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum EXPORT_SYMBOL vmlinux 0xac5ce9e9 cfb_imageblit -EXPORT_SYMBOL vmlinux 0xac5d84f1 phy_connect_direct EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac664c0c register_netdev EXPORT_SYMBOL vmlinux 0xac861c3b simple_unlink EXPORT_SYMBOL vmlinux 0xac92a062 bio_put +EXPORT_SYMBOL vmlinux 0xac93b3c1 inet_recvmsg EXPORT_SYMBOL vmlinux 0xacaa17e9 kthread_destroy_worker EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacc7fbba tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xacca40f5 ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacdc866a genphy_resume EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex EXPORT_SYMBOL vmlinux 0xad068439 flush_dcache_page EXPORT_SYMBOL vmlinux 0xad0e6bd4 ioremap_wc +EXPORT_SYMBOL vmlinux 0xad1e706b tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xad25b81c ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xad3b9297 wait_on_page_private_2 EXPORT_SYMBOL vmlinux 0xad3e681b mipi_dsi_dcs_write EXPORT_SYMBOL vmlinux 0xad456ecc pm860x_reg_write EXPORT_SYMBOL vmlinux 0xad4e9746 snd_pcm_kernel_ioctl -EXPORT_SYMBOL vmlinux 0xad6681bc locks_copy_conflock -EXPORT_SYMBOL vmlinux 0xad69b94f ndisc_mc_map -EXPORT_SYMBOL vmlinux 0xad724971 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xad6bcd6f tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function EXPORT_SYMBOL vmlinux 0xad7a9528 snd_ctl_unregister_ioctl -EXPORT_SYMBOL vmlinux 0xad7b7afb sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xad81b601 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xad8a30d4 vfs_statfs +EXPORT_SYMBOL vmlinux 0xad8c0e49 tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0xad906d80 pci_set_master -EXPORT_SYMBOL vmlinux 0xad91c4e2 xfrm_state_lookup_byaddr EXPORT_SYMBOL vmlinux 0xad9df962 fscrypt_decrypt_block_inplace EXPORT_SYMBOL vmlinux 0xadaa9a89 get_tree_single EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final EXPORT_SYMBOL vmlinux 0xadb7e2fe truncate_setsize EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadc6f8bf tcp_poll +EXPORT_SYMBOL vmlinux 0xadcafc20 generic_parse_monolithic 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 0xadf0db7d mntget EXPORT_SYMBOL vmlinux 0xadf1f331 snd_jack_add_new_kctl -EXPORT_SYMBOL vmlinux 0xadf4affa phy_set_sym_pause EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae0312fa dev_activate EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc EXPORT_SYMBOL vmlinux 0xae116bbf dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xae200c79 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0xae2beb7c napi_gro_frags EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert EXPORT_SYMBOL vmlinux 0xae31fe17 pci_reenable_device -EXPORT_SYMBOL vmlinux 0xae326c05 qdisc_warn_nonwc EXPORT_SYMBOL vmlinux 0xae353d77 arm_copy_from_user EXPORT_SYMBOL vmlinux 0xae577d60 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xae57d5ed alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xae7c9e54 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0xae8cf261 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xae62587a inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xae739ca6 netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0xae9849dd __request_region +EXPORT_SYMBOL vmlinux 0xae9ab8f2 tcf_exts_change EXPORT_SYMBOL vmlinux 0xae9e68b8 blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaecdd838 kmem_cache_create -EXPORT_SYMBOL vmlinux 0xaecf4a35 netif_rx EXPORT_SYMBOL vmlinux 0xaed9251c bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xaedf4b23 filemap_fdatawrite_wbc EXPORT_SYMBOL vmlinux 0xaee95991 ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0xaeedafe7 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xaef2d98c lru_cache_add EXPORT_SYMBOL vmlinux 0xaef7a13e nand_ecc_finish_io_req +EXPORT_SYMBOL vmlinux 0xaf02ad16 tcf_block_put EXPORT_SYMBOL vmlinux 0xaf0c74e9 ww_mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0xaf16f615 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xaf31e5b9 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xaf2036fe skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level EXPORT_SYMBOL vmlinux 0xaf402fe6 ilookup5 -EXPORT_SYMBOL vmlinux 0xaf447135 xp_can_alloc -EXPORT_SYMBOL vmlinux 0xaf488fb5 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xaf503f3e udp_ioctl +EXPORT_SYMBOL vmlinux 0xaf417f3c inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xaf49056d inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality -EXPORT_SYMBOL vmlinux 0xaf6941d2 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0xaf7ccdd0 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xaf5ad44d ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xaf5e9dff inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xaf67b863 splice_direct_to_actor EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 EXPORT_SYMBOL vmlinux 0xaf858d4b noop_fsync EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev -EXPORT_SYMBOL vmlinux 0xaf955dd0 blackhole_netdev EXPORT_SYMBOL vmlinux 0xaf98b449 snd_unregister_device EXPORT_SYMBOL vmlinux 0xaf9a0a2a radix_tree_tag_clear EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name EXPORT_SYMBOL vmlinux 0xafc1050c snd_pcm_hw_constraint_msbits EXPORT_SYMBOL vmlinux 0xafc49169 page_pool_destroy -EXPORT_SYMBOL vmlinux 0xafcd78ef of_device_register EXPORT_SYMBOL vmlinux 0xafcf4ff9 __free_pages +EXPORT_SYMBOL vmlinux 0xafd3cbf5 mdiobus_free EXPORT_SYMBOL vmlinux 0xaff0a99b param_set_short EXPORT_SYMBOL vmlinux 0xaff7147a register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0xb00046d7 of_mdio_find_bus EXPORT_SYMBOL vmlinux 0xb0017d99 md_integrity_register -EXPORT_SYMBOL vmlinux 0xb0027a4a fifo_set_limit EXPORT_SYMBOL vmlinux 0xb011eae1 kstrtos16_from_user EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb01c538c security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0xb037ede4 logfc -EXPORT_SYMBOL vmlinux 0xb04356a2 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0xb04c62d0 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xb021b95b tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xb0392954 locks_copy_lock EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats +EXPORT_SYMBOL vmlinux 0xb058fe75 kmem_cache_create EXPORT_SYMBOL vmlinux 0xb05b5735 input_set_capability +EXPORT_SYMBOL vmlinux 0xb05d03d3 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xb05d2612 unlock_page +EXPORT_SYMBOL vmlinux 0xb05dd661 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb063e1b4 genphy_soft_reset EXPORT_SYMBOL vmlinux 0xb0645f2b cdc_parse_cdc_header EXPORT_SYMBOL vmlinux 0xb0671511 make_kprojid +EXPORT_SYMBOL vmlinux 0xb086db8a dev_alloc_name EXPORT_SYMBOL vmlinux 0xb09cc9dd mdio_device_reset EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation EXPORT_SYMBOL vmlinux 0xb0a3c5d2 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xb0a4814d jbd2_journal_start_commit EXPORT_SYMBOL vmlinux 0xb0a88d07 dcache_dir_close EXPORT_SYMBOL vmlinux 0xb0d9678f pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xb0de84f9 __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e172f1 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xb0f6cdee __module_put_and_exit EXPORT_SYMBOL vmlinux 0xb0f8a1fb vm_get_page_prot +EXPORT_SYMBOL vmlinux 0xb11eba54 netif_device_detach EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb123fbba xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb12d4c21 netpoll_send_udp EXPORT_SYMBOL vmlinux 0xb134ed80 md_check_recovery EXPORT_SYMBOL vmlinux 0xb136b8ed input_set_timestamp EXPORT_SYMBOL vmlinux 0xb13b465a __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0xb13fba02 ppp_output_wakeup EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb1497874 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb1521497 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xb1876d45 km_report -EXPORT_SYMBOL vmlinux 0xb18815ff nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xb176d6f1 dev_disable_lro EXPORT_SYMBOL vmlinux 0xb1937000 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xb198e363 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xb19a9016 neigh_table_clear EXPORT_SYMBOL vmlinux 0xb1a3f69e misc_deregister EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc EXPORT_SYMBOL vmlinux 0xb1b3b78a mipi_dsi_driver_unregister @@ -9786,103 +9689,109 @@ EXPORT_SYMBOL vmlinux 0xb1b92ce3 pcie_capability_read_word EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress EXPORT_SYMBOL vmlinux 0xb1c7691f dm_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug -EXPORT_SYMBOL vmlinux 0xb1d8f06e __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xb1d87be0 security_socket_socketpair EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t EXPORT_SYMBOL vmlinux 0xb1ea0129 set_cached_acl -EXPORT_SYMBOL vmlinux 0xb204e940 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xb1ef08a0 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xb2088583 jbd2_journal_inode_ranged_write EXPORT_SYMBOL vmlinux 0xb211c1d1 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xb215b251 udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0xb216d331 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0xb21b46d8 inet6_offloads +EXPORT_SYMBOL vmlinux 0xb229352f inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0xb22ca15a blk_mq_requeue_request EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb23b0d14 phy_free_interrupt EXPORT_SYMBOL vmlinux 0xb249a391 omap_request_dma EXPORT_SYMBOL vmlinux 0xb2609127 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xb266064f tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xb27e1f93 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xb2637a93 sock_i_uid EXPORT_SYMBOL vmlinux 0xb286c477 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0xb28a6bba genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0xb2888163 __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0xb28d325d ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb28d8778 flow_block_cb_decref EXPORT_SYMBOL vmlinux 0xb28e4d0c bdev_dax_pgoff EXPORT_SYMBOL vmlinux 0xb29e9caf devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0xb2bdfc3b wireless_send_event +EXPORT_SYMBOL vmlinux 0xb2a0ff68 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xb2aacbb1 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xb2af3ded posix_test_lock +EXPORT_SYMBOL vmlinux 0xb2c06a20 ipv6_getsockopt EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb2e029f4 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xb2e47577 security_unix_stream_connect EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL vmlinux 0xb2ecbcb4 __udp_disconnect -EXPORT_SYMBOL vmlinux 0xb2ef5dc7 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xb2e8ccef flow_rule_match_mpls EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init -EXPORT_SYMBOL vmlinux 0xb329fed5 dump_skip -EXPORT_SYMBOL vmlinux 0xb32bfabf vlan_vid_add EXPORT_SYMBOL vmlinux 0xb3396b9a cdev_alloc +EXPORT_SYMBOL vmlinux 0xb34448c1 find_vma +EXPORT_SYMBOL vmlinux 0xb3458a46 __napi_schedule EXPORT_SYMBOL vmlinux 0xb3667805 dqstats +EXPORT_SYMBOL vmlinux 0xb3667e68 jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0xb367c984 mxc_set_irq_fiq EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb36d49ad scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xb3698e72 mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0xb36dafb3 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xb3880fbf sock_alloc -EXPORT_SYMBOL vmlinux 0xb39e5d91 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0xb39f77b5 tso_build_hdr EXPORT_SYMBOL vmlinux 0xb3b552b3 fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0xb3bedcb1 phy_init_eee EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3e31b29 __scm_destroy +EXPORT_SYMBOL vmlinux 0xb3e48ece dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xb3f0d205 netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop EXPORT_SYMBOL vmlinux 0xb409a0fc dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xb421cd6b skb_put EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb43e93c6 netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0xb4471bfe down_trylock EXPORT_SYMBOL vmlinux 0xb4513579 iov_iter_get_pages EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb4624257 sock_set_sndtimeo EXPORT_SYMBOL vmlinux 0xb475c99a pci_enable_msix_range EXPORT_SYMBOL vmlinux 0xb476c8f4 ZSTD_decompress_usingDict -EXPORT_SYMBOL vmlinux 0xb47c329e inet_frags_fini EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb495a976 scsi_host_put +EXPORT_SYMBOL vmlinux 0xb492e7a1 scsi_report_bus_reset EXPORT_SYMBOL vmlinux 0xb49f8f64 __d_lookup_done -EXPORT_SYMBOL vmlinux 0xb4a3502d unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0xb4b1e6d1 __xa_alloc EXPORT_SYMBOL vmlinux 0xb4b99db3 cdrom_open -EXPORT_SYMBOL vmlinux 0xb4ba763c sock_no_mmap -EXPORT_SYMBOL vmlinux 0xb4db7412 scsi_host_busy +EXPORT_SYMBOL vmlinux 0xb4cf7491 do_clone_file_range +EXPORT_SYMBOL vmlinux 0xb4d88a0d __vfs_getxattr EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4f5afb3 nf_getsockopt EXPORT_SYMBOL vmlinux 0xb4fbccf9 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xb4fdd70d end_page_writeback EXPORT_SYMBOL vmlinux 0xb511bac2 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xb51bd805 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0xb5421547 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xb557f178 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xb55c8ce7 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xb51adae7 rt6_lookup +EXPORT_SYMBOL vmlinux 0xb52031ac dst_release_immediate +EXPORT_SYMBOL vmlinux 0xb52ad7ce scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xb5372e2f kfree_skb_reason +EXPORT_SYMBOL vmlinux 0xb539ed0e locks_delete_block +EXPORT_SYMBOL vmlinux 0xb5651697 reuseport_alloc EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink EXPORT_SYMBOL vmlinux 0xb577a55b param_get_invbool EXPORT_SYMBOL vmlinux 0xb589b712 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xb58a7647 ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5b13753 fb_validate_mode -EXPORT_SYMBOL vmlinux 0xb5b60cec ip_sock_set_tos EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5bfdc4a eth_validate_addr EXPORT_SYMBOL vmlinux 0xb5c1596c fb_set_cmap EXPORT_SYMBOL vmlinux 0xb5c1a282 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xb5d3355c devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xb5d99a30 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xb5ee5e9b tcp_md5_hash_skb_data EXPORT_SYMBOL vmlinux 0xb5fdc18f mutex_is_locked +EXPORT_SYMBOL vmlinux 0xb6028c21 inet_add_protocol EXPORT_SYMBOL vmlinux 0xb61b3e92 blk_queue_max_hw_sectors EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb6392b76 sock_no_linger +EXPORT_SYMBOL vmlinux 0xb64b5f2c genl_unregister_family +EXPORT_SYMBOL vmlinux 0xb64eb1da softnet_data +EXPORT_SYMBOL vmlinux 0xb653122e netpoll_parse_options EXPORT_SYMBOL vmlinux 0xb6564f70 remove_conflicting_framebuffers EXPORT_SYMBOL vmlinux 0xb6598bc4 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xb6648cd8 netif_device_detach EXPORT_SYMBOL vmlinux 0xb664a4e8 kvrealloc EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt EXPORT_SYMBOL vmlinux 0xb67b2161 md_check_no_bitmap EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb6845ac6 generic_file_read_iter EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif -EXPORT_SYMBOL vmlinux 0xb6896e37 sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0xb68bc5d3 snd_pcm_mmap_data EXPORT_SYMBOL vmlinux 0xb68c9279 seq_release_private EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin @@ -9890,1664 +9799,1647 @@ EXPORT_SYMBOL vmlinux 0xb6969130 pci_fixup_cardbus EXPORT_SYMBOL vmlinux 0xb6a0f573 kill_litter_super EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach EXPORT_SYMBOL vmlinux 0xb6b6284e xz_dec_run -EXPORT_SYMBOL vmlinux 0xb6bd6d52 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xb6bd7e31 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xb6d344d1 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xb6cec9cd phy_detach EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6edde62 ipv6_select_ident EXPORT_SYMBOL vmlinux 0xb6f859f4 _raw_read_lock_bh EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb70ab999 eth_mac_addr EXPORT_SYMBOL vmlinux 0xb70d46df start_tty +EXPORT_SYMBOL vmlinux 0xb7111f8a napi_complete_done EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces EXPORT_SYMBOL vmlinux 0xb71d986d snd_pcm_hw_limit_rates EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb72ea5ec vfs_readlink +EXPORT_SYMBOL vmlinux 0xb7317ec4 fqdir_exit EXPORT_SYMBOL vmlinux 0xb7362c90 do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0xb7491d97 mdiobus_scan EXPORT_SYMBOL vmlinux 0xb7494848 kthread_associate_blkcg EXPORT_SYMBOL vmlinux 0xb74d233d rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0xb7525dde ip6mr_rule_default EXPORT_SYMBOL vmlinux 0xb7566933 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb759c93c ihold EXPORT_SYMBOL vmlinux 0xb768099b pci_find_capability -EXPORT_SYMBOL vmlinux 0xb7744949 reuseport_alloc -EXPORT_SYMBOL vmlinux 0xb77d0191 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xb7680e6d dentry_open +EXPORT_SYMBOL vmlinux 0xb76d5d6b __ethtool_get_link_ksettings 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 0xb7910802 module_put EXPORT_SYMBOL vmlinux 0xb7a3b5b4 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xb7ac13f6 locks_delete_block +EXPORT_SYMBOL vmlinux 0xb7c5d486 __scsi_iterate_devices EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags EXPORT_SYMBOL vmlinux 0xb7df0e97 ZSTD_DDictWorkspaceBound EXPORT_SYMBOL vmlinux 0xb7dfb0aa __pci_register_driver +EXPORT_SYMBOL vmlinux 0xb7f42ece skb_checksum EXPORT_SYMBOL vmlinux 0xb7ff182f down_read_killable -EXPORT_SYMBOL vmlinux 0xb812f984 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0xb81d9328 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xb81dd2cb msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0xb82de405 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xb833c946 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xb8361320 tcf_em_register EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available EXPORT_SYMBOL vmlinux 0xb85b4c68 proc_mkdir -EXPORT_SYMBOL vmlinux 0xb85ecd84 devfreq_resume_device EXPORT_SYMBOL vmlinux 0xb864b84b ZSTD_decompressBlock EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key EXPORT_SYMBOL vmlinux 0xb87566d8 __dquot_free_space EXPORT_SYMBOL vmlinux 0xb8906396 seq_puts EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse EXPORT_SYMBOL vmlinux 0xb89dcfcf dquot_disable +EXPORT_SYMBOL vmlinux 0xb89ecff1 vfs_clone_file_range EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link EXPORT_SYMBOL vmlinux 0xb8c4b0d0 snd_card_disconnect EXPORT_SYMBOL vmlinux 0xb8c66c45 dma_fence_get_status EXPORT_SYMBOL vmlinux 0xb8c77fa0 get_cached_acl EXPORT_SYMBOL vmlinux 0xb8e39d53 percpu_counter_sync -EXPORT_SYMBOL vmlinux 0xb8e6806d jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0xb8ea7f59 bio_uninit -EXPORT_SYMBOL vmlinux 0xb901cd12 mnt_drop_write_file EXPORT_SYMBOL vmlinux 0xb90674f6 pci_clear_master -EXPORT_SYMBOL vmlinux 0xb90dd675 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xb90c50fb __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max EXPORT_SYMBOL vmlinux 0xb91252cd tegra_ivc_write_get_next_frame -EXPORT_SYMBOL vmlinux 0xb91c8e95 tcp_init_sock EXPORT_SYMBOL vmlinux 0xb931acb9 d_prune_aliases EXPORT_SYMBOL vmlinux 0xb933e9b8 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xb93bbf9d phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xb93ce1e0 genl_notify EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb9497406 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xb94536a9 flow_rule_match_control EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io EXPORT_SYMBOL vmlinux 0xb95fc26e page_mapping EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit EXPORT_SYMBOL vmlinux 0xb964ce43 md_write_start +EXPORT_SYMBOL vmlinux 0xb9713f42 dev_activate EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb982372b proto_register EXPORT_SYMBOL vmlinux 0xb9975d25 __traceiter_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xb99d3a5b xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0xb99f88bb __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0xb9a45c59 vc_resize EXPORT_SYMBOL vmlinux 0xb9a613c6 __kmalloc_track_caller EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 -EXPORT_SYMBOL vmlinux 0xb9d1c8fa scm_fp_dup -EXPORT_SYMBOL vmlinux 0xb9e20b91 set_user_nice +EXPORT_SYMBOL vmlinux 0xb9c73632 __sock_i_ino EXPORT_SYMBOL vmlinux 0xb9e2fefc vc_cons EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters EXPORT_SYMBOL vmlinux 0xb9eafcfb import_single_range EXPORT_SYMBOL vmlinux 0xb9f38771 bio_clone_fast EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xba034a6b skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xba18fb43 jbd2_fc_release_bufs EXPORT_SYMBOL vmlinux 0xba2ed347 dquot_file_open -EXPORT_SYMBOL vmlinux 0xba3a34cd dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0xba3ca8c8 vfs_fileattr_get EXPORT_SYMBOL vmlinux 0xba3e685f inode_dio_wait -EXPORT_SYMBOL vmlinux 0xba4356e5 __cancel_dirty_page EXPORT_SYMBOL vmlinux 0xba46aade mount_bdev EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy EXPORT_SYMBOL vmlinux 0xba4ae097 enable_fiq -EXPORT_SYMBOL vmlinux 0xba4d5e0f _dev_emerg EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba5b4728 netdev_features_change +EXPORT_SYMBOL vmlinux 0xba68c796 filemap_range_has_page EXPORT_SYMBOL vmlinux 0xba6db43e of_parse_phandle_with_fixed_args EXPORT_SYMBOL vmlinux 0xba6e9912 of_node_get EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xba7746e1 nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0xba7bd991 jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0xba80c38f unregister_shrinker +EXPORT_SYMBOL vmlinux 0xba8aff13 devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0xba8c609d __next_node_in +EXPORT_SYMBOL vmlinux 0xba969315 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0xbaafc821 km_new_mapping +EXPORT_SYMBOL vmlinux 0xbab29a9e dcb_ieee_delapp EXPORT_SYMBOL vmlinux 0xbab64f70 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xbac6b2ab security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0xbae5ca00 ppp_channel_index -EXPORT_SYMBOL vmlinux 0xbaffa420 udp_gro_complete -EXPORT_SYMBOL vmlinux 0xbb016926 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xbac0a92d mmc_put_card +EXPORT_SYMBOL vmlinux 0xbad06736 kernel_bind EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb057831 twl6040_set_bits EXPORT_SYMBOL vmlinux 0xbb0d6f36 __snd_pcm_lib_xfer -EXPORT_SYMBOL vmlinux 0xbb115aa0 netif_napi_add -EXPORT_SYMBOL vmlinux 0xbb13fe0d netlink_ns_capable EXPORT_SYMBOL vmlinux 0xbb14eb31 bcmp EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb263e64 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xbb289884 tcp_disconnect EXPORT_SYMBOL vmlinux 0xbb2c898b snd_component_add EXPORT_SYMBOL vmlinux 0xbb2df1ec __cond_resched_rwlock_write EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb369b5a mmc_gpiod_request_cd EXPORT_SYMBOL vmlinux 0xbb3c30d4 devm_pci_remap_iospace EXPORT_SYMBOL vmlinux 0xbb43cbe2 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0xbb634c2e gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0xbb6a6518 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xbb4befc6 release_sock +EXPORT_SYMBOL vmlinux 0xbb60a550 mmc_cqe_recovery EXPORT_SYMBOL vmlinux 0xbb6df778 sg_nents EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 +EXPORT_SYMBOL vmlinux 0xbb7b6855 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xbb871afb sdev_enable_disk_events EXPORT_SYMBOL vmlinux 0xbb93ef93 input_set_keycode EXPORT_SYMBOL vmlinux 0xbb96133a blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xbb961c86 of_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0xbb9e3715 omap_rtc_power_off_program EXPORT_SYMBOL vmlinux 0xbb9ea2ba page_pool_release_page EXPORT_SYMBOL vmlinux 0xbbacd60b empty_aops -EXPORT_SYMBOL vmlinux 0xbbd6a7ba xfrm_register_type +EXPORT_SYMBOL vmlinux 0xbbb2a777 iterate_dir +EXPORT_SYMBOL vmlinux 0xbbb96213 vfs_symlink +EXPORT_SYMBOL vmlinux 0xbbbec2ad snd_soc_alloc_ac97_component +EXPORT_SYMBOL vmlinux 0xbbbf1f9c neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xbbc00cf0 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xbbccfe67 xfrm4_rcv EXPORT_SYMBOL vmlinux 0xbbe0360a pci_choose_state -EXPORT_SYMBOL vmlinux 0xbbe1e16c security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xbbfb35b6 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xbbe603db __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0xbbfc3b68 rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0xbc05d529 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xbc10b64f put_fs_context EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 +EXPORT_SYMBOL vmlinux 0xbc19cd6c __ip_dev_find EXPORT_SYMBOL vmlinux 0xbc383efb blkdev_issue_flush EXPORT_SYMBOL vmlinux 0xbc394fd2 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xbc45c688 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xbc6692a3 __inode_sub_bytes EXPORT_SYMBOL vmlinux 0xbc6ad67f param_ops_short +EXPORT_SYMBOL vmlinux 0xbc6cee3e dev_remove_offload EXPORT_SYMBOL vmlinux 0xbc85c682 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xbc8cb96d dev_driver_string EXPORT_SYMBOL vmlinux 0xbc8d7a74 d_make_root -EXPORT_SYMBOL vmlinux 0xbc8dded2 phy_get_c45_ids EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf EXPORT_SYMBOL vmlinux 0xbcb17d38 rawnand_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0xbcb27159 sk_net_capable EXPORT_SYMBOL vmlinux 0xbcb3ff72 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL vmlinux 0xbcc58c03 phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0xbcc7a967 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0xbccd702a inet_frags_init EXPORT_SYMBOL vmlinux 0xbcf8db21 ps2_drain -EXPORT_SYMBOL vmlinux 0xbcffed77 xfrm6_rcv EXPORT_SYMBOL vmlinux 0xbd1185bc __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xbd13aad8 flow_block_cb_priv EXPORT_SYMBOL vmlinux 0xbd167c45 con_copy_unimap EXPORT_SYMBOL vmlinux 0xbd1b4950 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0xbd2479e9 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xbd1f12a2 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xbd26098b devm_devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0xbd2f3e48 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xbd30368f fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0xbd376dfb tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xbd44cda3 qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0xbd548eba disk_start_io_acct EXPORT_SYMBOL vmlinux 0xbd5e1d9c __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0xbd61492d dev_addr_add -EXPORT_SYMBOL vmlinux 0xbd63afa5 skb_ext_add -EXPORT_SYMBOL vmlinux 0xbd683740 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xbd6a02c0 jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0xbd820297 rtc_lock EXPORT_SYMBOL vmlinux 0xbd93eaaf blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0xbda186cc phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0xbda9efcd ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xbd9f0f4d xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xbda41e49 flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0xbdb8a057 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xbddb9012 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0xbde5b4ea block_write_begin +EXPORT_SYMBOL vmlinux 0xbded4c9a fc_mount EXPORT_SYMBOL vmlinux 0xbdfa91d0 dma_supported EXPORT_SYMBOL vmlinux 0xbe03d320 input_setup_polling EXPORT_SYMBOL vmlinux 0xbe0e3cba tcf_queue_work EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock +EXPORT_SYMBOL vmlinux 0xbe169e15 scsi_dma_unmap EXPORT_SYMBOL vmlinux 0xbe2070c0 pci_read_vpd -EXPORT_SYMBOL vmlinux 0xbe269079 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0xbe2e15b2 phy_error +EXPORT_SYMBOL vmlinux 0xbe2f59b9 tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state EXPORT_SYMBOL vmlinux 0xbe7d5519 nand_monolithic_write_page_raw EXPORT_SYMBOL vmlinux 0xbe832a37 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0xbe8a3d1e genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xbe8738bb tcp_add_backlog EXPORT_SYMBOL vmlinux 0xbea48c66 tegra_dfll_runtime_suspend -EXPORT_SYMBOL vmlinux 0xbecd16bb vfs_get_link +EXPORT_SYMBOL vmlinux 0xbec41920 i2c_get_adapter EXPORT_SYMBOL vmlinux 0xbed6f45a kunmap_high EXPORT_SYMBOL vmlinux 0xbee7bb97 mpage_writepages EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r EXPORT_SYMBOL vmlinux 0xbeea017e dquot_drop EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbefa4a11 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xbf353fa9 eth_header_parse +EXPORT_SYMBOL vmlinux 0xbf136a69 dev_uc_del +EXPORT_SYMBOL vmlinux 0xbf3c46e5 iterate_fd EXPORT_SYMBOL vmlinux 0xbf4d4539 udp_table -EXPORT_SYMBOL vmlinux 0xbf4ef8b5 ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init EXPORT_SYMBOL vmlinux 0xbf643789 simple_write_begin EXPORT_SYMBOL vmlinux 0xbf658278 bio_integrity_add_page EXPORT_SYMBOL vmlinux 0xbf6c68a9 tty_register_ldisc EXPORT_SYMBOL vmlinux 0xbf7347b2 proc_doulongvec_ms_jiffies_minmax EXPORT_SYMBOL vmlinux 0xbf75ea6c tegra114_clock_tune_cpu_trimmers_low -EXPORT_SYMBOL vmlinux 0xbf7c4b25 generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0xbf816b51 vfs_fsync -EXPORT_SYMBOL vmlinux 0xbf93d57c mmc_wait_for_cmd EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbf9ccf58 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0xbfab3880 ppp_register_net_channel EXPORT_SYMBOL vmlinux 0xbfb48583 snd_dma_alloc_pages -EXPORT_SYMBOL vmlinux 0xbfbfed41 i2c_transfer -EXPORT_SYMBOL vmlinux 0xbfc65974 pipe_unlock -EXPORT_SYMBOL vmlinux 0xbfc96afd __of_mdiobus_register EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfd39229 sk_common_release -EXPORT_SYMBOL vmlinux 0xbfd60fe7 genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0xbfdf7bc3 mempool_create -EXPORT_SYMBOL vmlinux 0xbfe1d879 tcf_qevent_init EXPORT_SYMBOL vmlinux 0xbfeaf756 bio_endio EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer EXPORT_SYMBOL vmlinux 0xc00c46a2 tty_devnum EXPORT_SYMBOL vmlinux 0xc0170254 of_graph_get_port_parent EXPORT_SYMBOL vmlinux 0xc01d7fec get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xc01dd02d udp6_set_csum +EXPORT_SYMBOL vmlinux 0xc0278c8e tcf_block_get +EXPORT_SYMBOL vmlinux 0xc02ca710 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0xc0314815 block_truncate_page +EXPORT_SYMBOL vmlinux 0xc0388aba skb_set_owner_w EXPORT_SYMBOL vmlinux 0xc0433cd9 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xc04fd945 flow_rule_match_vlan EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc07ebfd9 mr_table_dump EXPORT_SYMBOL vmlinux 0xc08a44fc md_bitmap_unplug EXPORT_SYMBOL vmlinux 0xc08d3cfc dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0xc09bd1b4 qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode EXPORT_SYMBOL vmlinux 0xc0a91a58 n_tty_ioctl_helper EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc +EXPORT_SYMBOL vmlinux 0xc0a9e42c ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0b5a2f8 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xc0d95528 xfrm_state_lookup_byaddr EXPORT_SYMBOL vmlinux 0xc0da0e99 dim_on_top -EXPORT_SYMBOL vmlinux 0xc0f4e134 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xc0dadbac scsi_target_resume EXPORT_SYMBOL vmlinux 0xc0fb357a dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0xc0feb724 sock_gettstamp EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc126362c __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xc11e4086 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xc1299780 fd_install EXPORT_SYMBOL vmlinux 0xc1304605 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xc1329402 netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0xc140e75f input_open_device EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq EXPORT_SYMBOL vmlinux 0xc15644d6 dmam_alloc_attrs EXPORT_SYMBOL vmlinux 0xc15f4ed8 utf8nlen EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc186687b inet_del_protocol EXPORT_SYMBOL vmlinux 0xc188bf5b page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0xc19693cf eth_header -EXPORT_SYMBOL vmlinux 0xc1a3b98e xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xc19b1725 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xc19ba51c vme_dma_list_exec EXPORT_SYMBOL vmlinux 0xc1bcb39f empty_zero_page +EXPORT_SYMBOL vmlinux 0xc1bdd179 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xc1c26c3f dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xc1cfa3ac set_page_dirty EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed -EXPORT_SYMBOL vmlinux 0xc1d746eb __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xc1d7148e xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on EXPORT_SYMBOL vmlinux 0xc1f946c3 ps2_handle_ack EXPORT_SYMBOL vmlinux 0xc2059c64 fscrypt_enqueue_decrypt_work EXPORT_SYMBOL vmlinux 0xc207ee07 complete_and_exit -EXPORT_SYMBOL vmlinux 0xc2119b03 tcp_disconnect -EXPORT_SYMBOL vmlinux 0xc2159d23 mmc_remove_host EXPORT_SYMBOL vmlinux 0xc222bcfd serio_unregister_child_port EXPORT_SYMBOL vmlinux 0xc230c9a8 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0xc2485692 tcf_classify +EXPORT_SYMBOL vmlinux 0xc2326a2d cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xc234d749 xattr_full_name +EXPORT_SYMBOL vmlinux 0xc2418fd3 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xc2480e05 file_write_and_wait_range EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc2794379 thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0xc26ff962 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xc27356c3 mmc_gpio_get_cd EXPORT_SYMBOL vmlinux 0xc279969a omap_get_dma_dst_pos +EXPORT_SYMBOL vmlinux 0xc284a640 ptp_schedule_worker EXPORT_SYMBOL vmlinux 0xc2928266 pci_enable_wake +EXPORT_SYMBOL vmlinux 0xc2a00ca9 jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer EXPORT_SYMBOL vmlinux 0xc2b1d4e1 lockref_put_return +EXPORT_SYMBOL vmlinux 0xc2c742c1 vme_master_request EXPORT_SYMBOL vmlinux 0xc2cae53e refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0xc2cbf80d tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0xc2cf2dde ZSTD_decompress_usingDDict EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2e6dc3d xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0xc2e8c6c1 kern_unmount EXPORT_SYMBOL vmlinux 0xc2ede9c5 gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xc2effb2c __inet_stream_connect EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc310e484 inet_offloads -EXPORT_SYMBOL vmlinux 0xc3146998 dump_page +EXPORT_SYMBOL vmlinux 0xc30cc20b nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0xc31a7e95 keyring_clear EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc3202917 set_bh_page EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc33443b5 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xc33240de udp_prot EXPORT_SYMBOL vmlinux 0xc343dbf1 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xc34a61d0 security_inet_conn_established EXPORT_SYMBOL vmlinux 0xc358aaf8 snprintf EXPORT_SYMBOL vmlinux 0xc35feb32 get_user_pages +EXPORT_SYMBOL vmlinux 0xc3683617 nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0xc37335b0 complete +EXPORT_SYMBOL vmlinux 0xc37d9037 ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc387aed4 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0xc3820353 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xc386da20 vm_map_pages +EXPORT_SYMBOL vmlinux 0xc3882c7f __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3a0a327 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xc3a18844 xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0xc3b3b3a7 serio_interrupt -EXPORT_SYMBOL vmlinux 0xc3c05382 phy_suspend -EXPORT_SYMBOL vmlinux 0xc3c74b47 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0xc3b6950f tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xc3be0116 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xc3c2bb20 __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb EXPORT_SYMBOL vmlinux 0xc3da1346 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xc3df8105 ip_mc_leave_group EXPORT_SYMBOL vmlinux 0xc3ec7dc1 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xc3f8e058 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xc4001b82 eth_gro_complete -EXPORT_SYMBOL vmlinux 0xc40847fe scsi_print_result EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert EXPORT_SYMBOL vmlinux 0xc427e066 omap_vrfb_min_phys_size -EXPORT_SYMBOL vmlinux 0xc4443c4d xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0xc4458a05 pci_irq_get_affinity EXPORT_SYMBOL vmlinux 0xc44c3689 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0xc4608331 skb_store_bits +EXPORT_SYMBOL vmlinux 0xc464d6e2 scsi_vpd_lun_id EXPORT_SYMBOL vmlinux 0xc4657dc8 mempool_init EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc47e3829 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xc479a81c generic_splice_sendpage EXPORT_SYMBOL vmlinux 0xc49a0c23 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xc49ce572 module_layout EXPORT_SYMBOL vmlinux 0xc49d0e24 input_register_handler -EXPORT_SYMBOL vmlinux 0xc4a92734 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xc4c4cd00 page_readlink -EXPORT_SYMBOL vmlinux 0xc4ca940b xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0xc4dbf891 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xc4a30751 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xc4cdaed2 tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0xc4d53d61 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xc4d58b9d genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xc4d7a50f ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0xc4df2b3f devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0xc4e358fd __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xc4e3aed0 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0xc4e986ef ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0xc4ed6273 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xc4e7c9c5 dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0xc4ed9d9f fb_get_mode -EXPORT_SYMBOL vmlinux 0xc4f18109 inet6_ioctl -EXPORT_SYMBOL vmlinux 0xc4fce8cc xfrm_state_insert EXPORT_SYMBOL vmlinux 0xc5058920 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xc528d7de sockfd_lookup +EXPORT_SYMBOL vmlinux 0xc5103e1a skb_trim EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params EXPORT_SYMBOL vmlinux 0xc52de269 d_alloc_name -EXPORT_SYMBOL vmlinux 0xc537b544 genl_notify -EXPORT_SYMBOL vmlinux 0xc5480457 vme_register_driver +EXPORT_SYMBOL vmlinux 0xc5394af5 tcf_idr_release EXPORT_SYMBOL vmlinux 0xc54df713 __nla_reserve -EXPORT_SYMBOL vmlinux 0xc573b0cc ip_options_compile -EXPORT_SYMBOL vmlinux 0xc576aac2 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xc55099e0 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xc57385f7 dev_set_alias +EXPORT_SYMBOL vmlinux 0xc5781eee jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0xc581500f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xc581c73b gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xc588dd73 dev_graft_qdisc EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59a1505 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xc5a53a6a inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0xc5baba06 vcalloc +EXPORT_SYMBOL vmlinux 0xc5bfa6c5 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xc5c2a285 napi_disable +EXPORT_SYMBOL vmlinux 0xc5c9079f __vfs_removexattr EXPORT_SYMBOL vmlinux 0xc5cbdc54 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xc5dc1032 __traceiter_spi_transfer_stop EXPORT_SYMBOL vmlinux 0xc5e5c8e3 pps_event EXPORT_SYMBOL vmlinux 0xc5ee6c48 kvfree_sensitive EXPORT_SYMBOL vmlinux 0xc5f54eb2 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xc603805c napi_get_frags -EXPORT_SYMBOL vmlinux 0xc608770a __mdiobus_write EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus EXPORT_SYMBOL vmlinux 0xc613744d setattr_prepare EXPORT_SYMBOL vmlinux 0xc61511de pci_restore_state -EXPORT_SYMBOL vmlinux 0xc62661b1 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xc619305e kernel_sendmsg EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc65da752 mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0xc65e2327 phy_detach +EXPORT_SYMBOL vmlinux 0xc648f8c8 kfree_skb_list EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc6608118 ptp_find_pin_unlocked EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc679afea register_netdevice -EXPORT_SYMBOL vmlinux 0xc68e1fb6 console_start +EXPORT_SYMBOL vmlinux 0xc674015c __block_write_full_page +EXPORT_SYMBOL vmlinux 0xc697723e get_fs_type EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle -EXPORT_SYMBOL vmlinux 0xc6bc325b vme_master_mmap +EXPORT_SYMBOL vmlinux 0xc6b31f0f vfs_link EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6cf0607 tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0xc6d056d7 vme_register_bridge EXPORT_SYMBOL vmlinux 0xc6e993c0 of_parse_phandle_with_args 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 0xc7162b7d dquot_initialize EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc736fe14 arp_xmit -EXPORT_SYMBOL vmlinux 0xc747ae71 dev_open -EXPORT_SYMBOL vmlinux 0xc7512bbd sock_register -EXPORT_SYMBOL vmlinux 0xc7576193 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xc72122d8 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xc745c033 of_phy_register_fixed_link EXPORT_SYMBOL vmlinux 0xc763e06b mtd_concat_create +EXPORT_SYMBOL vmlinux 0xc7691c4a devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xc7699160 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xc76adecd inet_listen EXPORT_SYMBOL vmlinux 0xc770da42 blk_mq_complete_request EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc783e56f xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xc7856217 register_fib_notifier EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe EXPORT_SYMBOL vmlinux 0xc7cc2c46 ps2_end_command -EXPORT_SYMBOL vmlinux 0xc7ce2fe2 pagevec_lookup_range EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7d2ea6e tcp_v4_send_check EXPORT_SYMBOL vmlinux 0xc7d3fbb9 param_get_string -EXPORT_SYMBOL vmlinux 0xc7dbb010 kern_unmount_array -EXPORT_SYMBOL vmlinux 0xc7dcfdf3 unregister_netdev -EXPORT_SYMBOL vmlinux 0xc7e21d1a filemap_page_mkwrite EXPORT_SYMBOL vmlinux 0xc7eb595b blk_pre_runtime_resume EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7f17d4a xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xc7fd8d5a inet6_bind +EXPORT_SYMBOL vmlinux 0xc7fefbbe ip_queue_xmit EXPORT_SYMBOL vmlinux 0xc8082dc5 mode_strip_sgid EXPORT_SYMBOL vmlinux 0xc80cd9b9 dma_resv_reserve_shared EXPORT_SYMBOL vmlinux 0xc81e4edd rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL vmlinux 0xc81f8e0c dev_uc_sync +EXPORT_SYMBOL vmlinux 0xc829ec3d of_phy_find_device EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape EXPORT_SYMBOL vmlinux 0xc83a5e34 dma_map_page_attrs EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8585f64 build_skb +EXPORT_SYMBOL vmlinux 0xc86b38d3 inet_csk_accept EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc8890376 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0xc88ad8bc udp_ioctl EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread EXPORT_SYMBOL vmlinux 0xc8b25e82 tegra_ivc_notified -EXPORT_SYMBOL vmlinux 0xc8b42703 kmem_cache_create_usercopy EXPORT_SYMBOL vmlinux 0xc8b58a25 __memset64 EXPORT_SYMBOL vmlinux 0xc8b6765a devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xc8c6cd95 netif_napi_add EXPORT_SYMBOL vmlinux 0xc8cbdbfa padata_do_serial EXPORT_SYMBOL vmlinux 0xc8ce25f5 ucc_fast_dump_regs -EXPORT_SYMBOL vmlinux 0xc9070c1e fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xc8e16f28 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xc8e54f36 dev_close +EXPORT_SYMBOL vmlinux 0xc905131e dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xc90b4334 jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0xc90df8ca simple_transaction_release EXPORT_SYMBOL vmlinux 0xc9147e54 setattr_copy EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc9214d83 inetdev_by_index EXPORT_SYMBOL vmlinux 0xc92162a6 nla_put_nohdr EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down EXPORT_SYMBOL vmlinux 0xc92be1ae fb_show_logo EXPORT_SYMBOL vmlinux 0xc94d8e3b iomem_resource EXPORT_SYMBOL vmlinux 0xc950ef7b pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0xc95bac04 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xc958511a netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xc95ccd0a phy_config_aneg EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc974ab0b posix_lock_file EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc986dc9e tcp_ioctl +EXPORT_SYMBOL vmlinux 0xc98407e1 security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0xc99cbe18 dquot_acquire -EXPORT_SYMBOL vmlinux 0xc99d9047 udp_seq_start EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a6113e udplite_prot EXPORT_SYMBOL vmlinux 0xc9ac2b7e pcie_get_readrq EXPORT_SYMBOL vmlinux 0xc9adfe1e blk_mq_delay_run_hw_queues EXPORT_SYMBOL vmlinux 0xc9b1b119 of_match_node -EXPORT_SYMBOL vmlinux 0xc9b74dff xfrm_register_km EXPORT_SYMBOL vmlinux 0xc9ca3698 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xc9ca9995 genl_unregister_family -EXPORT_SYMBOL vmlinux 0xc9cc7657 free_buffer_head EXPORT_SYMBOL vmlinux 0xc9cfa28e from_kuid_munged EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9dffbdc tag_pages_for_writeback EXPORT_SYMBOL vmlinux 0xc9e0fd2c truncate_pagecache_range EXPORT_SYMBOL vmlinux 0xc9e9e533 simple_dir_inode_operations EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned +EXPORT_SYMBOL vmlinux 0xc9f64c6d nf_log_unregister EXPORT_SYMBOL vmlinux 0xc9f89180 dma_find_channel +EXPORT_SYMBOL vmlinux 0xca01e178 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xca1e71c1 i2c_smbus_read_i2c_block_data EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca2a7bd1 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xca231aae tcp_mtup_init EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca4463fa tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xca54393b lookup_one_unlocked EXPORT_SYMBOL vmlinux 0xca5a7528 down_interruptible -EXPORT_SYMBOL vmlinux 0xca643ef5 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0xca774bc5 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xca7137cf vme_register_driver +EXPORT_SYMBOL vmlinux 0xca75e71e __mdiobus_write EXPORT_SYMBOL vmlinux 0xca7ee9b2 fault_in_writeable EXPORT_SYMBOL vmlinux 0xca813ce6 LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next EXPORT_SYMBOL vmlinux 0xcacc62ee of_get_compatible_child -EXPORT_SYMBOL vmlinux 0xcacffdb6 ata_std_end_eh EXPORT_SYMBOL vmlinux 0xcad30579 cdev_init EXPORT_SYMBOL vmlinux 0xcae464c3 generic_update_time +EXPORT_SYMBOL vmlinux 0xcae92fe3 mem_map EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain EXPORT_SYMBOL vmlinux 0xcafe072b qcom_scm_io_writel EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb05b746 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xcb252278 set_page_dirty -EXPORT_SYMBOL vmlinux 0xcb36a5aa dev_mc_add EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0xcb510bc2 complete_all -EXPORT_SYMBOL vmlinux 0xcb52c7ae mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0xcb606eb9 xa_load EXPORT_SYMBOL vmlinux 0xcb8c753b mempool_exit EXPORT_SYMBOL vmlinux 0xcb8c852c may_setattr -EXPORT_SYMBOL vmlinux 0xcb9562da __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xcb9eeed2 vme_bus_num +EXPORT_SYMBOL vmlinux 0xcb9fa6ab netif_device_attach +EXPORT_SYMBOL vmlinux 0xcbad40cc dev_trans_start +EXPORT_SYMBOL vmlinux 0xcbc3189c scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xcbcb309e mmc_gpiod_request_cd_irq EXPORT_SYMBOL vmlinux 0xcbce3959 remove_proc_subtree EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic EXPORT_SYMBOL vmlinux 0xcbe4d8c5 register_md_cluster_operations EXPORT_SYMBOL vmlinux 0xcbeb5b1a bio_add_page EXPORT_SYMBOL vmlinux 0xcbf1dbd0 utf8len -EXPORT_SYMBOL vmlinux 0xcc021d23 cqhci_pltfm_init EXPORT_SYMBOL vmlinux 0xcc032262 from_kprojid EXPORT_SYMBOL vmlinux 0xcc0e35c4 unregister_key_type -EXPORT_SYMBOL vmlinux 0xcc177f35 fiemap_prep EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc29e4cc vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0xcc30f0f1 tcp_tx_delay_enabled EXPORT_SYMBOL vmlinux 0xcc3b2cc9 __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc49e8a1 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xcc4a8d99 mmc_gpiod_request_cd EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock EXPORT_SYMBOL vmlinux 0xcc620285 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0xcc642e53 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xcc663879 of_mdio_find_bus EXPORT_SYMBOL vmlinux 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL vmlinux 0xcc6e7e78 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0xcc7da466 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xcc9157b3 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xcc9b9efe sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xccb3cb2d blk_put_queue -EXPORT_SYMBOL vmlinux 0xccb81e52 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xcc6ffd3e netif_receive_skb +EXPORT_SYMBOL vmlinux 0xcc8ee928 thread_group_exited +EXPORT_SYMBOL vmlinux 0xcca85a1a mmc_can_gpio_ro EXPORT_SYMBOL vmlinux 0xccb8a09b sg_miter_stop +EXPORT_SYMBOL vmlinux 0xccc66cc9 register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0xccd5fb81 seq_write -EXPORT_SYMBOL vmlinux 0xccd7ef5c phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xcce15951 tcp_ioctl EXPORT_SYMBOL vmlinux 0xcce64237 snd_pcm_hw_constraint_ranges EXPORT_SYMBOL vmlinux 0xcce8bc18 efi EXPORT_SYMBOL vmlinux 0xccf560a1 blk_queue_alignment_offset EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics -EXPORT_SYMBOL vmlinux 0xccfcef8d xfrm_replay_seqhi EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xccfeb21e ping_prot EXPORT_SYMBOL vmlinux 0xcd00abbc add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xcd033ba0 genphy_check_and_restart_aneg EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL vmlinux 0xcd14b251 ip_frag_init EXPORT_SYMBOL vmlinux 0xcd279169 nla_find EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div -EXPORT_SYMBOL vmlinux 0xcd38ed65 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xcd3e97c6 skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr EXPORT_SYMBOL vmlinux 0xcd6951b0 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xcd98edb0 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xcd9dcce4 kill_fasync EXPORT_SYMBOL vmlinux 0xcdb32a51 simple_recursive_removal -EXPORT_SYMBOL vmlinux 0xcdb9b44b ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xcdba12ae mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xcdb878ea unix_get_socket EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdcc2898 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0xcdd9e184 zap_page_range -EXPORT_SYMBOL vmlinux 0xcddf9a09 tso_build_hdr -EXPORT_SYMBOL vmlinux 0xcde37e4f of_get_mac_address EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev EXPORT_SYMBOL vmlinux 0xce174b98 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xce216f69 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xce21d024 jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce38ff27 dev_set_mtu EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL vmlinux 0xce4aa711 netlink_broadcast -EXPORT_SYMBOL vmlinux 0xce4af641 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0xce4befba i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xce4072ea __sk_dst_check EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce65eed7 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xce70db04 migrate_page EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0xce810b86 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xce8491aa netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0xce90663b __scsi_add_device -EXPORT_SYMBOL vmlinux 0xce91ea85 ip_local_deliver +EXPORT_SYMBOL vmlinux 0xce744a95 neigh_lookup +EXPORT_SYMBOL vmlinux 0xce7657e0 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0xce8cf6cf lock_sock_nested +EXPORT_SYMBOL vmlinux 0xce8db3f9 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xce906bf4 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xce9b1216 fwnode_mdio_find_device EXPORT_SYMBOL vmlinux 0xce9b6226 iov_iter_advance EXPORT_SYMBOL vmlinux 0xce9f37b6 cros_ec_cmd_xfer_status EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul EXPORT_SYMBOL vmlinux 0xceabee8a __put_cred EXPORT_SYMBOL vmlinux 0xcec4bcc1 notify_change +EXPORT_SYMBOL vmlinux 0xced7ca89 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xcedb2b5d reuseport_has_conns_set EXPORT_SYMBOL vmlinux 0xcedc99af mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0xcee43dcf kmap_high -EXPORT_SYMBOL vmlinux 0xcef5846b __traceiter_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port EXPORT_SYMBOL vmlinux 0xcf01f610 panic_notifier_list -EXPORT_SYMBOL vmlinux 0xcf0571d3 tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0xcf063f10 pci_get_class -EXPORT_SYMBOL vmlinux 0xcf181336 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xcf07d333 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xcf0d245d tcp_check_req EXPORT_SYMBOL vmlinux 0xcf32dba3 ps2_handle_response -EXPORT_SYMBOL vmlinux 0xcf3d59b1 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xcf67aae9 dev_uc_init +EXPORT_SYMBOL vmlinux 0xcf4923d2 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xcf52572c phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xcf7ca579 skb_tx_error EXPORT_SYMBOL vmlinux 0xcf7e1d1d hdmi_vendor_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xcf7edf46 pcie_capability_clear_and_set_dword EXPORT_SYMBOL vmlinux 0xcf86cdac queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xcf895316 __mdiobus_read EXPORT_SYMBOL vmlinux 0xcf97a1e2 pm_vt_switch_required EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa07653 unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0xcfa69a7e atomic_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0xcfb9e0e3 ioremap_page EXPORT_SYMBOL vmlinux 0xcfde4b10 __post_watch_notification +EXPORT_SYMBOL vmlinux 0xcfe40370 mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0xcfecc695 param_ops_byte -EXPORT_SYMBOL vmlinux 0xcff62744 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xd0002863 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xcff0ed3c napi_consume_skb EXPORT_SYMBOL vmlinux 0xd007549e key_invalidate +EXPORT_SYMBOL vmlinux 0xd0124746 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0xd027b46f __neigh_create EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net EXPORT_SYMBOL vmlinux 0xd04febe9 arm_elf_read_implies_exec EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive EXPORT_SYMBOL vmlinux 0xd079a134 timestamp_truncate -EXPORT_SYMBOL vmlinux 0xd0828deb sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xd0a98cd5 phy_start +EXPORT_SYMBOL vmlinux 0xd0ad5303 vme_unregister_driver EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock -EXPORT_SYMBOL vmlinux 0xd0b29005 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xd0b8229b tso_count_descs EXPORT_SYMBOL vmlinux 0xd0bae98b blk_rq_unmap_user EXPORT_SYMBOL vmlinux 0xd0baec8b of_find_node_with_property -EXPORT_SYMBOL vmlinux 0xd0bd7bb4 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0xd0c3589f ip_do_fragment EXPORT_SYMBOL vmlinux 0xd0cdf1b1 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0xd0d661b0 lease_modify -EXPORT_SYMBOL vmlinux 0xd0d87f96 lock_sock_nested -EXPORT_SYMBOL vmlinux 0xd0dce552 skb_append -EXPORT_SYMBOL vmlinux 0xd0e4bc23 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xd0df191a flow_block_cb_setup_simple EXPORT_SYMBOL vmlinux 0xd0e9fb09 release_firmware -EXPORT_SYMBOL vmlinux 0xd1025176 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xd0eb5402 has_capability +EXPORT_SYMBOL vmlinux 0xd1070086 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd10b12c4 netdev_name_in_use EXPORT_SYMBOL vmlinux 0xd1119f21 __tracepoint_spi_transfer_stop EXPORT_SYMBOL vmlinux 0xd13246e5 rproc_boot EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd13fad4c fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0xd153287e tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xd161e603 xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0xd164c2e5 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xd13e1b13 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0xd1569346 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xd15e656f sock_no_accept +EXPORT_SYMBOL vmlinux 0xd16a4cd2 poll_freewait EXPORT_SYMBOL vmlinux 0xd16e2dd2 simple_nosetlease EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd186a94a jbd2_journal_update_sb_errno EXPORT_SYMBOL vmlinux 0xd1abe064 sg_copy_to_buffer EXPORT_SYMBOL vmlinux 0xd1ace551 key_instantiate_and_link EXPORT_SYMBOL vmlinux 0xd1b1820c cdev_device_add +EXPORT_SYMBOL vmlinux 0xd1bb3119 gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0xd1bda3bc cdrom_check_events -EXPORT_SYMBOL vmlinux 0xd1c11ff6 dev_change_carrier -EXPORT_SYMBOL vmlinux 0xd1c6dbd7 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0xd1ccd791 vfs_fileattr_set EXPORT_SYMBOL vmlinux 0xd1d15937 touchscreen_parse_properties EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1dab94e inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0xd1e48e16 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xd1f7a7e4 udp_seq_start +EXPORT_SYMBOL vmlinux 0xd2039f7c __hw_addr_sync_dev EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down EXPORT_SYMBOL vmlinux 0xd20d1268 simple_fill_super EXPORT_SYMBOL vmlinux 0xd20f5b06 padata_do_parallel -EXPORT_SYMBOL vmlinux 0xd2215195 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xd21b831a ptp_clock_unregister EXPORT_SYMBOL vmlinux 0xd22b8660 of_lpddr3_get_ddr_timings +EXPORT_SYMBOL vmlinux 0xd22c44f7 xfrm_input +EXPORT_SYMBOL vmlinux 0xd22ca0b2 filemap_page_mkwrite EXPORT_SYMBOL vmlinux 0xd22d9df9 d_exact_alias EXPORT_SYMBOL vmlinux 0xd232f643 param_get_hexint -EXPORT_SYMBOL vmlinux 0xd2400436 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xd2492dd1 flow_rule_match_ct EXPORT_SYMBOL vmlinux 0xd24d4842 get_tree_nodev EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd267556a gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xd26139f6 netdev_update_features EXPORT_SYMBOL vmlinux 0xd273f580 tty_port_carrier_raised EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27dfa8a mmc_can_erase EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd28aa944 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xd282b7b6 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xd288bed2 dev_uc_add EXPORT_SYMBOL vmlinux 0xd28c0038 bio_free_pages -EXPORT_SYMBOL vmlinux 0xd2921965 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0xd29bfbbc snd_soc_alloc_ac97_component EXPORT_SYMBOL vmlinux 0xd2bc93f5 cpu_tlb +EXPORT_SYMBOL vmlinux 0xd2bed7ae inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xd2c605b3 __dynamic_ibdev_dbg EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier EXPORT_SYMBOL vmlinux 0xd2de3714 bio_reset EXPORT_SYMBOL vmlinux 0xd2eb32b9 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0xd2fcab5d set_binfmt EXPORT_SYMBOL vmlinux 0xd30859dd pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xd30aca87 remove_arg_zero +EXPORT_SYMBOL vmlinux 0xd312d7c0 device_match_acpi_dev EXPORT_SYMBOL vmlinux 0xd31629f8 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xd318a8b1 tegra_dfll_unregister EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd325c650 napi_disable -EXPORT_SYMBOL vmlinux 0xd325d656 netdev_emerg +EXPORT_SYMBOL vmlinux 0xd3247fb8 skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0xd32d6c08 lockref_get +EXPORT_SYMBOL vmlinux 0xd33077ae vfs_iter_write +EXPORT_SYMBOL vmlinux 0xd34b9fb7 security_path_mknod +EXPORT_SYMBOL vmlinux 0xd34cd869 console_start EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc EXPORT_SYMBOL vmlinux 0xd35f75a1 match_string EXPORT_SYMBOL vmlinux 0xd361cba4 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0xd362dc98 of_phy_is_fixed_link EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd37d2c69 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xd38dc12a tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0xd391c25b __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xd3896591 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xd390ba86 f_setown +EXPORT_SYMBOL vmlinux 0xd39755db neigh_xmit EXPORT_SYMBOL vmlinux 0xd39fa6ab __kfifo_alloc EXPORT_SYMBOL vmlinux 0xd3b2ea53 dm_get_device +EXPORT_SYMBOL vmlinux 0xd3b47b2b key_link EXPORT_SYMBOL vmlinux 0xd3b756ce md_cluster_ops -EXPORT_SYMBOL vmlinux 0xd3c873a8 kill_pid +EXPORT_SYMBOL vmlinux 0xd3b78812 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xd3c06936 netdev_notify_peers EXPORT_SYMBOL vmlinux 0xd3d0edd9 rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0xd3de6e82 sock_sendmsg EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd400bc30 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xd3eb700f netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xd3f04d57 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xd3ffb666 __scsi_device_lookup EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal EXPORT_SYMBOL vmlinux 0xd4083c1a blk_cleanup_disk -EXPORT_SYMBOL vmlinux 0xd4423e25 inet_sendpage -EXPORT_SYMBOL vmlinux 0xd445d791 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xd42b99f1 phy_loopback +EXPORT_SYMBOL vmlinux 0xd43dbc31 filemap_fault +EXPORT_SYMBOL vmlinux 0xd44a33d2 __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0xd45ddb66 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xd46330fe qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0xd4653a9e snd_pcm_hw_constraint_step EXPORT_SYMBOL vmlinux 0xd46b54dd flush_delayed_work EXPORT_SYMBOL vmlinux 0xd4721a10 max8998_write_reg -EXPORT_SYMBOL vmlinux 0xd47e40bf flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0xd482c05e netlink_capable EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd485e057 vfs_parse_fs_param EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed -EXPORT_SYMBOL vmlinux 0xd49c336d __ip_dev_find -EXPORT_SYMBOL vmlinux 0xd49d0dc7 mdiobus_write EXPORT_SYMBOL vmlinux 0xd4ace844 blkdev_put EXPORT_SYMBOL vmlinux 0xd4ad0556 rpmh_write_batch -EXPORT_SYMBOL vmlinux 0xd4b8f81c skb_trim +EXPORT_SYMBOL vmlinux 0xd4b8974f devm_of_clk_del_provider EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4bd5dee scsi_get_host_dev EXPORT_SYMBOL vmlinux 0xd4d6ab37 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0xd4d8ccf0 __i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0xd4e2f0e4 gen_pool_set_algo EXPORT_SYMBOL vmlinux 0xd4e47d9e dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0xd5000781 kill_fasync +EXPORT_SYMBOL vmlinux 0xd509a2f2 kernel_sendpage EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd52cda9f flow_rule_match_control -EXPORT_SYMBOL vmlinux 0xd53d4c6d twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xd526b66b sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xd52dad82 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xd52f3ce1 skb_append EXPORT_SYMBOL vmlinux 0xd540ec7e input_register_device -EXPORT_SYMBOL vmlinux 0xd54d2f7c __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xd55d44c0 sock_create_kern +EXPORT_SYMBOL vmlinux 0xd541c326 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xd5550fda gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xd55ff7e0 phy_attached_print +EXPORT_SYMBOL vmlinux 0xd565aeaa skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xd569392b xfrm_init_state EXPORT_SYMBOL vmlinux 0xd576c707 uart_update_timeout EXPORT_SYMBOL vmlinux 0xd57a2577 pci_find_resource EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise EXPORT_SYMBOL vmlinux 0xd593c446 snd_ctl_add EXPORT_SYMBOL vmlinux 0xd594bfef pci_save_state +EXPORT_SYMBOL vmlinux 0xd5972e8d vm_insert_pages EXPORT_SYMBOL vmlinux 0xd5a2b3af __register_chrdev +EXPORT_SYMBOL vmlinux 0xd5a8e93d of_clk_get_by_name EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5bb9463 filemap_flush -EXPORT_SYMBOL vmlinux 0xd5c3fb6e ppp_dev_name -EXPORT_SYMBOL vmlinux 0xd5dcfce1 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xd5b9c3ea tcp_rcv_established EXPORT_SYMBOL vmlinux 0xd5dd27a0 ucc_of_parse_tdm -EXPORT_SYMBOL vmlinux 0xd5dd4912 dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0xd5e18715 csum_and_copy_from_iter EXPORT_SYMBOL vmlinux 0xd5e70bff scsi_scan_target EXPORT_SYMBOL vmlinux 0xd5eec7c1 pps_lookup_dev EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xd5f558f9 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xd5f5fb62 phy_init_hw +EXPORT_SYMBOL vmlinux 0xd6020b76 xfrm4_udp_encap_rcv EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k EXPORT_SYMBOL vmlinux 0xd611ca17 snd_jack_set_key -EXPORT_SYMBOL vmlinux 0xd61c989d dump_skip_to +EXPORT_SYMBOL vmlinux 0xd61fdb7e mmc_retune_pause EXPORT_SYMBOL vmlinux 0xd620a910 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xd622b1dd dev_driver_string EXPORT_SYMBOL vmlinux 0xd627480b strncat EXPORT_SYMBOL vmlinux 0xd631a13c seq_read_iter -EXPORT_SYMBOL vmlinux 0xd631c4da __ip_select_ident EXPORT_SYMBOL vmlinux 0xd63fafc2 div64_u64_rem -EXPORT_SYMBOL vmlinux 0xd64a98b7 mr_fill_mroute EXPORT_SYMBOL vmlinux 0xd6582ab0 xa_extract -EXPORT_SYMBOL vmlinux 0xd6692329 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xd66327a1 dump_page +EXPORT_SYMBOL vmlinux 0xd66ab040 __ip_mc_dec_group EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd69c7f06 end_page_private_2 +EXPORT_SYMBOL vmlinux 0xd689c527 dev_load +EXPORT_SYMBOL vmlinux 0xd6a76c64 lease_modify EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read EXPORT_SYMBOL vmlinux 0xd6ab6e97 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL vmlinux 0xd6b00bdd scsi_device_set_state EXPORT_SYMBOL vmlinux 0xd6bc04ff cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0xd6c21e01 set_create_files_as +EXPORT_SYMBOL vmlinux 0xd6c7b6b4 twl6040_get_vibralr_status EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6ee8900 xfrm_parse_spi EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd7185551 nf_reinject -EXPORT_SYMBOL vmlinux 0xd723d59c __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xd72a766f eth_header_cache EXPORT_SYMBOL vmlinux 0xd72c1046 pcim_iomap_table EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid EXPORT_SYMBOL vmlinux 0xd73bf5e2 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xd7475a41 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xd7611cae udp_gro_receive +EXPORT_SYMBOL vmlinux 0xd73e5771 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0xd76cf853 tty_do_resize EXPORT_SYMBOL vmlinux 0xd76f6099 vscnprintf EXPORT_SYMBOL vmlinux 0xd7730837 fwnode_mdiobus_register_phy EXPORT_SYMBOL vmlinux 0xd7781be1 make_kuid +EXPORT_SYMBOL vmlinux 0xd778c499 tcp_child_process EXPORT_SYMBOL vmlinux 0xd77e6425 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xd785fdd7 tcp_seq_start EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write -EXPORT_SYMBOL vmlinux 0xd797c0a2 jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0xd7b24adc mipi_dsi_dcs_set_pixel_format EXPORT_SYMBOL vmlinux 0xd7b5b52f of_node_name_eq -EXPORT_SYMBOL vmlinux 0xd7c5f3e3 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xd7cc868b tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0xd7cdae6f user_path_at_empty +EXPORT_SYMBOL vmlinux 0xd7c1ba29 netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete EXPORT_SYMBOL vmlinux 0xd7d31b4a fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0xd7da6e83 __netif_schedule -EXPORT_SYMBOL vmlinux 0xd7e2d29b page_symlink EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd804eea7 mr_mfc_find_any EXPORT_SYMBOL vmlinux 0xd8073bfd scsicam_bios_param EXPORT_SYMBOL vmlinux 0xd8092eff zpool_unregister_driver EXPORT_SYMBOL vmlinux 0xd80eada7 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xd80fd362 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xd8178238 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xd81bfc03 rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0xd81dcd67 bdi_register -EXPORT_SYMBOL vmlinux 0xd83122d2 vfs_rmdir -EXPORT_SYMBOL vmlinux 0xd8404e45 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0xd82ad4c8 delete_from_page_cache EXPORT_SYMBOL vmlinux 0xd8410611 mempool_alloc -EXPORT_SYMBOL vmlinux 0xd868874e dev_uc_del EXPORT_SYMBOL vmlinux 0xd86b61c4 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xd86c978f skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0xd86eb2bf pci_set_power_state -EXPORT_SYMBOL vmlinux 0xd8754738 mmc_sw_reset EXPORT_SYMBOL vmlinux 0xd875584a __genradix_ptr -EXPORT_SYMBOL vmlinux 0xd880eda6 kernel_write EXPORT_SYMBOL vmlinux 0xd89cf598 input_mt_report_pointer_emulation EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone EXPORT_SYMBOL vmlinux 0xd89ee11f krait_set_l2_indirect_reg EXPORT_SYMBOL vmlinux 0xd8a2a649 pci_bus_write_config_byte EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8ae0ba7 dev_queue_xmit EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8b7abf1 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xd8c8d6e7 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0xd8cccc07 jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0xd8d47ff5 max8925_set_bits EXPORT_SYMBOL vmlinux 0xd908542c init_pseudo -EXPORT_SYMBOL vmlinux 0xd91c27ef send_sig +EXPORT_SYMBOL vmlinux 0xd91435ee vfs_mknod EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user EXPORT_SYMBOL vmlinux 0xd94e15cf PDE_DATA EXPORT_SYMBOL vmlinux 0xd950ed0f of_get_min_tck EXPORT_SYMBOL vmlinux 0xd951c987 input_enable_softrepeat EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack -EXPORT_SYMBOL vmlinux 0xd9817423 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xd959d4d3 kernel_accept +EXPORT_SYMBOL vmlinux 0xd964e8c1 netdev_change_features +EXPORT_SYMBOL vmlinux 0xd983a543 filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9ab880d tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xd9985b3b xp_alloc EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen -EXPORT_SYMBOL vmlinux 0xd9ce9a97 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xd9d34a37 qdisc_hash_del EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox EXPORT_SYMBOL vmlinux 0xd9da3db1 __alloc_disk_node -EXPORT_SYMBOL vmlinux 0xd9e02b23 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xd9dec01c scsi_vpd_tpg_id EXPORT_SYMBOL vmlinux 0xd9f1657a devm_ioremap_wc EXPORT_SYMBOL vmlinux 0xd9f69e4a ns_capable_setid EXPORT_SYMBOL vmlinux 0xd9faac36 snd_ctl_new1 -EXPORT_SYMBOL vmlinux 0xda34cd18 kfree_skb_list -EXPORT_SYMBOL vmlinux 0xda36e810 skb_tx_error +EXPORT_SYMBOL vmlinux 0xda15530c dev_addr_del EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda64cc6b __get_hash_from_flowi6 EXPORT_SYMBOL vmlinux 0xda6fc0b3 __percpu_counter_compare EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType EXPORT_SYMBOL vmlinux 0xda81d5dc of_graph_get_remote_port_parent EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda8d7a12 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xda97ce9c scsi_device_lookup EXPORT_SYMBOL vmlinux 0xda9b51cf devm_ioremap +EXPORT_SYMBOL vmlinux 0xdaa74341 jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0xdaa85a1c disk_stack_limits -EXPORT_SYMBOL vmlinux 0xdab0febe tcf_em_unregister EXPORT_SYMBOL vmlinux 0xdac39684 dmam_pool_create EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region EXPORT_SYMBOL vmlinux 0xdad3f7f3 param_set_copystring EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw -EXPORT_SYMBOL vmlinux 0xdae9b310 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xdae093e0 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xdae863de jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xdaf5e624 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xdaf637b5 vfs_readlink EXPORT_SYMBOL vmlinux 0xdaf65445 vsnprintf -EXPORT_SYMBOL vmlinux 0xdb0a226b open_with_fake_path +EXPORT_SYMBOL vmlinux 0xdb0b31fc __mmap_lock_do_trace_released EXPORT_SYMBOL vmlinux 0xdb14513a dm_unregister_target +EXPORT_SYMBOL vmlinux 0xdb27c568 fqdir_init EXPORT_SYMBOL vmlinux 0xdb323ff7 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0xdb52e912 __dev_get_by_name EXPORT_SYMBOL vmlinux 0xdb54b2b5 ps2_command +EXPORT_SYMBOL vmlinux 0xdb5fa0fb secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0xdb602ff0 padata_free EXPORT_SYMBOL vmlinux 0xdb627faa cros_ec_check_result EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy EXPORT_SYMBOL vmlinux 0xdb73b210 of_translate_dma_address EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free EXPORT_SYMBOL vmlinux 0xdb7b8f38 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0xdb80ec4d scsi_report_device_reset EXPORT_SYMBOL vmlinux 0xdb81593e tty_port_destroy EXPORT_SYMBOL vmlinux 0xdb81e2fc __wait_on_bit -EXPORT_SYMBOL vmlinux 0xdbb2495a tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xdbd650f6 of_mdiobus_child_is_phy -EXPORT_SYMBOL vmlinux 0xdbed667b ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xdb92eae0 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xdb9c366b tc_setup_cb_call EXPORT_SYMBOL vmlinux 0xdbf0f21a tty_lock +EXPORT_SYMBOL vmlinux 0xdbfd455d neigh_app_ns +EXPORT_SYMBOL vmlinux 0xdbff4f86 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0xdc09c837 trace_event_printf +EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc1792fe find_vma EXPORT_SYMBOL vmlinux 0xdc258d02 cpumask_next_and -EXPORT_SYMBOL vmlinux 0xdc33a77e seg6_push_hmac -EXPORT_SYMBOL vmlinux 0xdc3e1f25 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xdc2e38b2 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xdc397489 scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 EXPORT_SYMBOL vmlinux 0xdc430db2 gen_pool_dma_alloc_align 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 0xdc879bb2 skb_queue_purge -EXPORT_SYMBOL vmlinux 0xdc94e197 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xdca71d97 locks_remove_posix -EXPORT_SYMBOL vmlinux 0xdcaa79cf sock_rfree +EXPORT_SYMBOL vmlinux 0xdc87798f alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xdca24a72 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xdcaf220b user_path_create EXPORT_SYMBOL vmlinux 0xdcb17edb validate_slab_cache -EXPORT_SYMBOL vmlinux 0xdcc0b749 skb_eth_push -EXPORT_SYMBOL vmlinux 0xdcc1370b i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xdccf0ac6 mptcp_subflow_reqsk_alloc EXPORT_SYMBOL vmlinux 0xdcda6df8 truncate_inode_pages_range EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress EXPORT_SYMBOL vmlinux 0xdcde7315 ucc_fast_free -EXPORT_SYMBOL vmlinux 0xdcf28820 netdev_printk +EXPORT_SYMBOL vmlinux 0xdce6cfa1 nf_log_set +EXPORT_SYMBOL vmlinux 0xdcecccab xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0xdcf34a26 jbd2__journal_restart EXPORT_SYMBOL vmlinux 0xdcf6d045 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0xdcfda35f __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xdd09d78f i2c_get_adapter EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat EXPORT_SYMBOL vmlinux 0xdd0e2bc7 pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0xdd14a8ab tty_register_device -EXPORT_SYMBOL vmlinux 0xdd174aa6 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xdd1fb78a tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw -EXPORT_SYMBOL vmlinux 0xdd26d18f vfs_unlink EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd2a4403 scsi_track_queue_full EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd553c4c phy_ethtool_get_sset_count -EXPORT_SYMBOL vmlinux 0xdd5bd709 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xdd5620aa remap_pfn_range +EXPORT_SYMBOL vmlinux 0xdd6afae5 read_cache_page +EXPORT_SYMBOL vmlinux 0xdd6dca3e find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xdd745464 cancel_work EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset EXPORT_SYMBOL vmlinux 0xdd81421f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0xdd82b9d6 mr_vif_seq_next EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd87cc0d mmc_set_data_timeout EXPORT_SYMBOL vmlinux 0xdd8a0a34 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0xdd901f80 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xdd984ae2 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xdd924cb8 ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0xdd9d94bc param_ops_bint EXPORT_SYMBOL vmlinux 0xddbf5906 nand_ecc_get_sw_engine EXPORT_SYMBOL vmlinux 0xddc6a900 ps2_init -EXPORT_SYMBOL vmlinux 0xddd534d8 sock_no_socketpair EXPORT_SYMBOL vmlinux 0xdde4fa17 pci_request_irq -EXPORT_SYMBOL vmlinux 0xde10b296 softnet_data -EXPORT_SYMBOL vmlinux 0xde1c5751 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xddf72516 proto_register EXPORT_SYMBOL vmlinux 0xde4bf88b __mutex_init +EXPORT_SYMBOL vmlinux 0xde4c6b00 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0xde55e795 _raw_spin_lock_irqsave EXPORT_SYMBOL vmlinux 0xde59092a lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xde59146a skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0xde5ae857 vme_slave_get -EXPORT_SYMBOL vmlinux 0xde6bb6ff ppp_input_error -EXPORT_SYMBOL vmlinux 0xde6bd2b2 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0xde72a38e xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xde88d792 __scm_send EXPORT_SYMBOL vmlinux 0xde9c140a rproc_elf_get_boot_addr EXPORT_SYMBOL vmlinux 0xdeb36832 super_setup_bdi -EXPORT_SYMBOL vmlinux 0xdeb5c6dc keyring_alloc -EXPORT_SYMBOL vmlinux 0xdecd5f7a skb_flow_dissect_hash EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdeea08e0 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xdeee7f0c twl6040_reg_write EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdf00eee9 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0xdf14e399 bdi_set_max_ratio EXPORT_SYMBOL vmlinux 0xdf1897d2 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xdf291502 security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf322f67 scsi_set_medium_removal EXPORT_SYMBOL vmlinux 0xdf323ee9 tty_port_close_end EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf3b9a36 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xdf3bc881 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xdf49948f lock_page_memcg EXPORT_SYMBOL vmlinux 0xdf52def1 ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0xdf54476c __sk_mem_reduce_allocated EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf7d990c skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xdf65dfa7 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xdf7872a6 wait_on_page_bit_killable EXPORT_SYMBOL vmlinux 0xdf85ffb5 snd_pcm_hw_param_first +EXPORT_SYMBOL vmlinux 0xdf8db5be lookup_one_len EXPORT_SYMBOL vmlinux 0xdf924a59 __tracepoint_kmem_cache_free EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfac1045 km_policy_expired EXPORT_SYMBOL vmlinux 0xdfb39761 rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0xdfb500df tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0xdfb8ee60 set_create_files_as -EXPORT_SYMBOL vmlinux 0xdfc96998 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xdfb3eb77 logfc +EXPORT_SYMBOL vmlinux 0xdfb54313 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xdfcd0e9b phy_resume EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdfe6e33a ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0xdfec3a27 inet_ioctl EXPORT_SYMBOL vmlinux 0xdfec44c1 nand_ecc_cleanup_ctx EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdff9fa18 xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe001daed blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0xe00a3130 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xe01d3f66 pipe_lock -EXPORT_SYMBOL vmlinux 0xe01e0fee flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0xe03f89c2 devfreq_suspend_device EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 EXPORT_SYMBOL vmlinux 0xe04aea46 nand_ecc_init_ctx EXPORT_SYMBOL vmlinux 0xe06699b2 sg_next EXPORT_SYMBOL vmlinux 0xe06ee756 of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0xe0774705 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xe0775216 ethtool_notify EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups -EXPORT_SYMBOL vmlinux 0xe08a0873 cqhci_deactivate EXPORT_SYMBOL vmlinux 0xe08b3b75 register_sound_special +EXPORT_SYMBOL vmlinux 0xe090cae9 skb_flow_dissect_hash EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -EXPORT_SYMBOL vmlinux 0xe097791a inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0xe09f381d bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xe0a1ba8e in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start EXPORT_SYMBOL vmlinux 0xe0a6a540 remap_vmalloc_range EXPORT_SYMBOL vmlinux 0xe0a6b585 request_resource EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco EXPORT_SYMBOL vmlinux 0xe0c9c214 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0xe0f56f12 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0xe0f8d7e8 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xe0cba9ea security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xe0d4a09d genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xe0e4f041 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xe0eebb2d skb_checksum_help EXPORT_SYMBOL vmlinux 0xe0fe8821 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xe100d39a phy_advertise_supported EXPORT_SYMBOL vmlinux 0xe101320b pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xe1106d4c sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11590f4 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0xe11594c5 bdi_set_max_ratio EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute EXPORT_SYMBOL vmlinux 0xe12f9210 dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0xe131ebc1 unix_detach_fds EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe13d7d30 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xe14d7368 phy_get_pause EXPORT_SYMBOL vmlinux 0xe153f436 __cpu_present_mask EXPORT_SYMBOL vmlinux 0xe157e2f2 config_group_find_item EXPORT_SYMBOL vmlinux 0xe15dd4bb __serio_register_port -EXPORT_SYMBOL vmlinux 0xe18931fc generic_fillattr +EXPORT_SYMBOL vmlinux 0xe190add4 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0xe194834e mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xe198e983 fddi_type_trans EXPORT_SYMBOL vmlinux 0xe1a0b5a1 proc_mkdir_mode EXPORT_SYMBOL vmlinux 0xe1a4603d dma_map_resource +EXPORT_SYMBOL vmlinux 0xe1a563f2 ipv6_find_hdr EXPORT_SYMBOL vmlinux 0xe1a9b2ff dma_fence_match_context -EXPORT_SYMBOL vmlinux 0xe1bb6dc4 sock_no_shutdown EXPORT_SYMBOL vmlinux 0xe1c14785 unpin_user_pages +EXPORT_SYMBOL vmlinux 0xe1c77804 __traceiter_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xe1cb6405 param_get_charp -EXPORT_SYMBOL vmlinux 0xe1cf2646 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0xe1dc71c4 dcb_getapp EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1ff5a3f dst_release +EXPORT_SYMBOL vmlinux 0xe1f3fa9a xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xe1f60185 may_umount_tree +EXPORT_SYMBOL vmlinux 0xe1f63a78 follow_down EXPORT_SYMBOL vmlinux 0xe2000874 vga_get EXPORT_SYMBOL vmlinux 0xe20d8b53 snd_sgbuf_get_page -EXPORT_SYMBOL vmlinux 0xe2115481 tcp_conn_request EXPORT_SYMBOL vmlinux 0xe212ff65 cpumask_any_but EXPORT_SYMBOL vmlinux 0xe21cea64 fault_in_readable EXPORT_SYMBOL vmlinux 0xe2232675 devm_kvasprintf EXPORT_SYMBOL vmlinux 0xe2274a1c __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xe23a8774 neigh_ifdown -EXPORT_SYMBOL vmlinux 0xe24a82c3 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0xe24bc594 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xe24ee767 netdev_emerg +EXPORT_SYMBOL vmlinux 0xe25c2503 skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0xe266f098 xa_get_mark -EXPORT_SYMBOL vmlinux 0xe26b66a9 netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0xe267911c sock_no_socketpair EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap EXPORT_SYMBOL vmlinux 0xe282fe18 register_md_personality +EXPORT_SYMBOL vmlinux 0xe28d70d7 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0xe29880c4 mmc_is_req_done EXPORT_SYMBOL vmlinux 0xe2b24a75 textsearch_unregister -EXPORT_SYMBOL vmlinux 0xe2b871c3 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0xe2c22163 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xe2bcc623 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0xe2c2e9b0 phy_device_register EXPORT_SYMBOL vmlinux 0xe2cc789b pci_msix_vec_count EXPORT_SYMBOL vmlinux 0xe2d467c4 gic_pmr_sync EXPORT_SYMBOL vmlinux 0xe2d47398 crc_ccitt_false EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2dc6bd6 vme_irq_request EXPORT_SYMBOL vmlinux 0xe2dd3dbb pci_release_regions EXPORT_SYMBOL vmlinux 0xe2dd59a3 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xe2e09369 dentry_path_raw EXPORT_SYMBOL vmlinux 0xe2e266cf simple_get_link EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user -EXPORT_SYMBOL vmlinux 0xe2ea1504 skb_queue_head EXPORT_SYMBOL vmlinux 0xe2f3d99f rename_lock +EXPORT_SYMBOL vmlinux 0xe327ca87 kill_pgrp EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe33322d0 arp_tbl -EXPORT_SYMBOL vmlinux 0xe3351070 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xe32ac340 of_device_unregister +EXPORT_SYMBOL vmlinux 0xe333fbfb vfs_create_mount +EXPORT_SYMBOL vmlinux 0xe33a3928 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xe3426ecc sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0xe3481bc2 dquot_free_inode EXPORT_SYMBOL vmlinux 0xe3482046 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0xe354e181 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0xe3693819 __f_setown EXPORT_SYMBOL vmlinux 0xe369c618 register_sound_mixer +EXPORT_SYMBOL vmlinux 0xe36f43fc tcp_mss_to_mtu EXPORT_SYMBOL vmlinux 0xe3824f77 seq_open_private EXPORT_SYMBOL vmlinux 0xe3830f0a snd_device_free +EXPORT_SYMBOL vmlinux 0xe38f46c5 gro_find_complete_by_type EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 EXPORT_SYMBOL vmlinux 0xe3a300fa rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0xe3a58336 xfrm_lookup EXPORT_SYMBOL vmlinux 0xe3a78009 of_find_mipi_dsi_host_by_node EXPORT_SYMBOL vmlinux 0xe3a90dfa radix_tree_tag_set EXPORT_SYMBOL vmlinux 0xe3b7a2dd do_SAK -EXPORT_SYMBOL vmlinux 0xe3ca382b fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xe3bcaada scsi_print_result +EXPORT_SYMBOL vmlinux 0xe3bf5058 netlink_unicast +EXPORT_SYMBOL vmlinux 0xe3c9334f netdev_notice EXPORT_SYMBOL vmlinux 0xe3d48e56 snd_timer_resolution EXPORT_SYMBOL vmlinux 0xe3da801b snd_ctl_make_virtual_master EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region EXPORT_SYMBOL vmlinux 0xe3f6c1e6 simple_pin_fs EXPORT_SYMBOL vmlinux 0xe3fbd30a _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xe3fc12ff mmc_detect_card_removed EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe400b92a netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0xe4136c75 kmem_cache_size -EXPORT_SYMBOL vmlinux 0xe426eccd end_buffer_async_write EXPORT_SYMBOL vmlinux 0xe428464e dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0xe42d6dcd __phy_resume EXPORT_SYMBOL vmlinux 0xe430a113 pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0xe431ffd6 mdiobus_is_registered_device EXPORT_SYMBOL vmlinux 0xe43a3047 __tracepoint_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0xe443278a set_blocksize EXPORT_SYMBOL vmlinux 0xe4436874 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xe4519610 vfs_setpos EXPORT_SYMBOL vmlinux 0xe455f85b fs_param_is_fd -EXPORT_SYMBOL vmlinux 0xe468a5df udp_sendmsg EXPORT_SYMBOL vmlinux 0xe4702b3a __sg_alloc_table EXPORT_SYMBOL vmlinux 0xe477fc9b memremap EXPORT_SYMBOL vmlinux 0xe4842851 snd_card_free EXPORT_SYMBOL vmlinux 0xe4852149 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xe487c3bf unregister_console EXPORT_SYMBOL vmlinux 0xe4a0c689 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xe4b878af eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xe4a9d5f8 __skb_checksum +EXPORT_SYMBOL vmlinux 0xe4c29095 seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid EXPORT_SYMBOL vmlinux 0xe4effcd5 sg_init_one -EXPORT_SYMBOL vmlinux 0xe4f21d13 f_setown +EXPORT_SYMBOL vmlinux 0xe4f1ed2c bh_submit_read EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe52b3ca4 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0xe53ebb8b filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0xe561cc5f fddi_type_trans +EXPORT_SYMBOL vmlinux 0xe52ffc85 free_buffer_head +EXPORT_SYMBOL vmlinux 0xe53acb39 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xe55f2457 phy_device_free +EXPORT_SYMBOL vmlinux 0xe562d1f1 mount_subtree 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 0xe58d4c60 vfs_mkdir EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe59bf3ed phy_register_fixup -EXPORT_SYMBOL vmlinux 0xe5a1fd5a jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xe597cb97 sock_bind_add +EXPORT_SYMBOL vmlinux 0xe59e72b0 clk_hw_get_clk EXPORT_SYMBOL vmlinux 0xe5bd09a9 mark_info_dirty EXPORT_SYMBOL vmlinux 0xe5c6a241 fuse_mount_destroy EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen EXPORT_SYMBOL vmlinux 0xe5d35933 tty_kref_put -EXPORT_SYMBOL vmlinux 0xe5d79c59 ipv6_dev_find EXPORT_SYMBOL vmlinux 0xe5e3d75e copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xe5f5cccd netif_rx_any_context EXPORT_SYMBOL vmlinux 0xe5fe13cb backlight_device_get_by_name EXPORT_SYMBOL vmlinux 0xe5ff5d51 __do_once_done EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe61b0b42 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe622a213 mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0xe625e9c5 param_get_ullong -EXPORT_SYMBOL vmlinux 0xe62b733c ip_mc_leave_group EXPORT_SYMBOL vmlinux 0xe62cdb0e memcpy_and_pad +EXPORT_SYMBOL vmlinux 0xe637d013 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xe63e55aa eth_header EXPORT_SYMBOL vmlinux 0xe63ec64a md_flush_request EXPORT_SYMBOL vmlinux 0xe64a2ddf dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0xe6537be1 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0xe6538010 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xe64f27de jbd2_journal_blocks_per_page EXPORT_SYMBOL vmlinux 0xe6548e5a pps_unregister_source -EXPORT_SYMBOL vmlinux 0xe67f8df9 tso_start EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe6b3423a sock_kfree_s +EXPORT_SYMBOL vmlinux 0xe696d36a generic_ro_fops +EXPORT_SYMBOL vmlinux 0xe6a0cb1a inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xe6b9d5a7 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xe6c106fe tcp_init_sock EXPORT_SYMBOL vmlinux 0xe6c12bd7 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL vmlinux 0xe6d1ef12 security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6d74cca poll_freewait +EXPORT_SYMBOL vmlinux 0xe6d5f932 bfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0xe6daee5b vga_put EXPORT_SYMBOL vmlinux 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL vmlinux 0xe6e8ca2c vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0xe6f371ed __register_binfmt -EXPORT_SYMBOL vmlinux 0xe6fe5fae proto_unregister +EXPORT_SYMBOL vmlinux 0xe6eeeb34 i2c_verify_adapter EXPORT_SYMBOL vmlinux 0xe6febe83 pci_irq_vector EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv +EXPORT_SYMBOL vmlinux 0xe71e75d3 __nlmsg_put EXPORT_SYMBOL vmlinux 0xe721ae15 set_disk_ro -EXPORT_SYMBOL vmlinux 0xe72669d9 inet_bind -EXPORT_SYMBOL vmlinux 0xe729dc52 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xe7291519 tcf_unregister_action EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe73facc2 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xe74fd928 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xe762634e sock_bindtoindex -EXPORT_SYMBOL vmlinux 0xe76720eb ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xe74b72ee mmc_set_data_timeout EXPORT_SYMBOL vmlinux 0xe77647cb of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xe7849777 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0xe78b85a1 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xe7b0cc83 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0xe7b1bae7 rtnl_create_link -EXPORT_SYMBOL vmlinux 0xe7bd4e7e poll_initwait -EXPORT_SYMBOL vmlinux 0xe7cf461d scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xe790df89 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xe7a72c71 scsi_dma_map EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7dd2af0 mmc_request_done EXPORT_SYMBOL vmlinux 0xe7e4d52a _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xe7e51a22 page_zero_new_buffers EXPORT_SYMBOL vmlinux 0xe7e82c61 snd_ctl_find_numid +EXPORT_SYMBOL vmlinux 0xe7eba9ce flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0xe7f2e3a2 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xe8224d5f __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xe837cc05 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xe813df30 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xe814b304 security_inode_init_security EXPORT_SYMBOL vmlinux 0xe842dc8c dma_fence_get_stub EXPORT_SYMBOL vmlinux 0xe84eb32f con_is_visible +EXPORT_SYMBOL vmlinux 0xe8560b1e kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0xe85fd068 dma_free_attrs +EXPORT_SYMBOL vmlinux 0xe866efc5 qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0xe86aaa24 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0xe86e0bcc netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xe8760da7 mmc_register_driver EXPORT_SYMBOL vmlinux 0xe87ba26c devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xe88d423d jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xe8947aea mmc_register_driver +EXPORT_SYMBOL vmlinux 0xe881442b sock_kmalloc +EXPORT_SYMBOL vmlinux 0xe88da67f dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0xe894a8f8 d_alloc_anon -EXPORT_SYMBOL vmlinux 0xe8b46e4b inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xe8a7456c vfs_iter_read EXPORT_SYMBOL vmlinux 0xe8b9a3d4 mx51_revision +EXPORT_SYMBOL vmlinux 0xe8c191f0 skb_dump EXPORT_SYMBOL vmlinux 0xe8cd0a2c crc32_le_shift EXPORT_SYMBOL vmlinux 0xe8cfce09 tegra114_clock_deassert_dfll_dvco_reset EXPORT_SYMBOL vmlinux 0xe8d4f89d generic_file_fsync -EXPORT_SYMBOL vmlinux 0xe8e3ff8f inet_getname +EXPORT_SYMBOL vmlinux 0xe8db4ab3 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xe8e05328 kernel_recvmsg EXPORT_SYMBOL vmlinux 0xe8e68556 md_register_thread EXPORT_SYMBOL vmlinux 0xe8f6443a input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0xe90c2386 netdev_lower_state_changed EXPORT_SYMBOL vmlinux 0xe914e41e strcpy EXPORT_SYMBOL vmlinux 0xe930d1f2 con_is_bound EXPORT_SYMBOL vmlinux 0xe9325f03 downgrade_write +EXPORT_SYMBOL vmlinux 0xe93600c5 nobh_truncate_page EXPORT_SYMBOL vmlinux 0xe940aa1b page_mapped EXPORT_SYMBOL vmlinux 0xe947893d update_region EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95f3537 brioctl_set -EXPORT_SYMBOL vmlinux 0xe962374e vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xe966cc96 inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0xe96a7433 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xe978a3c7 begin_new_exec EXPORT_SYMBOL vmlinux 0xe97c4103 ioremap EXPORT_SYMBOL vmlinux 0xe97ef1c7 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xe987c196 xfrm_lookup EXPORT_SYMBOL vmlinux 0xe99b7111 LZ4_decompress_fast_continue EXPORT_SYMBOL vmlinux 0xe9a2b9ec param_ops_ushort -EXPORT_SYMBOL vmlinux 0xe9a82298 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xe9a77397 unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0xe9b9c800 register_key_type -EXPORT_SYMBOL vmlinux 0xe9bbcbab tc_setup_cb_add EXPORT_SYMBOL vmlinux 0xe9cbf734 radix_tree_gang_lookup EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fc8cb7 _dev_notice +EXPORT_SYMBOL vmlinux 0xe9ffe6e9 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xea02c905 sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0xea12b2a3 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0xea1efad4 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0xea25143f sk_dst_check +EXPORT_SYMBOL vmlinux 0xea265532 vfs_mkobj EXPORT_SYMBOL vmlinux 0xea380fca of_lpddr3_get_min_tck EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int EXPORT_SYMBOL vmlinux 0xea43901a snd_card_file_add -EXPORT_SYMBOL vmlinux 0xea4e7015 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xea4ed158 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xea68f536 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xea58680e dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xea6323cf sock_wmalloc EXPORT_SYMBOL vmlinux 0xea6e2b4f pci_setup_cardbus EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled EXPORT_SYMBOL vmlinux 0xea73963d pci_bus_read_config_word EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xea7a6b2f __wait_on_buffer EXPORT_SYMBOL vmlinux 0xea87b4d5 of_find_mipi_dsi_device_by_node EXPORT_SYMBOL vmlinux 0xea893706 of_graph_get_next_endpoint EXPORT_SYMBOL vmlinux 0xea8fe1bb pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xea928294 follow_down_one +EXPORT_SYMBOL vmlinux 0xea945ba5 skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0xeaa08229 seq_putc -EXPORT_SYMBOL vmlinux 0xeab6f20b tcp_v4_mtu_reduced EXPORT_SYMBOL vmlinux 0xeac05a69 ucc_slow_enable -EXPORT_SYMBOL vmlinux 0xeac117cc udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xeae2810b scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0xeae5b11f vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0xeaf45ad5 security_path_mknod +EXPORT_SYMBOL vmlinux 0xeadf9fac consume_skb +EXPORT_SYMBOL vmlinux 0xeaee4208 __lock_page EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl EXPORT_SYMBOL vmlinux 0xeb0c5f50 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0xeb15ebd6 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xeb187725 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xeb1c97be of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xeb1c9db5 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xeb1eb8a6 pagevec_lookup_range EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end EXPORT_SYMBOL vmlinux 0xeb411e8c of_find_backlight_by_node EXPORT_SYMBOL vmlinux 0xeb53178a crc8 EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb5834f6 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xeb5ce8dd end_page_private_2 EXPORT_SYMBOL vmlinux 0xeb608824 param_ops_ulong -EXPORT_SYMBOL vmlinux 0xeb6e39a0 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xeb8f9425 nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0xeb9b4dfa inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xeb679045 gro_cells_receive +EXPORT_SYMBOL vmlinux 0xeb72ce47 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xeb78a42d would_dump +EXPORT_SYMBOL vmlinux 0xeb9d8811 netdev_class_remove_file_ns EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xeba91154 __set_page_dirty_no_writeback EXPORT_SYMBOL vmlinux 0xebb0bff4 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xebb19d9a security_d_instantiate +EXPORT_SYMBOL vmlinux 0xebb2ed5a no_seek_end_llseek_size EXPORT_SYMBOL vmlinux 0xebb9056a find_inode_nowait +EXPORT_SYMBOL vmlinux 0xebced648 genphy_read_status +EXPORT_SYMBOL vmlinux 0xebd4fe65 __breadahead_gfp EXPORT_SYMBOL vmlinux 0xebdb9683 snd_ctl_boolean_mono_info -EXPORT_SYMBOL vmlinux 0xebee9894 key_unlink +EXPORT_SYMBOL vmlinux 0xebfade0b netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high EXPORT_SYMBOL vmlinux 0xec0240e4 rtc_add_group -EXPORT_SYMBOL vmlinux 0xec0f19fc tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0xec0ce2c1 setup_arg_pages EXPORT_SYMBOL vmlinux 0xec1ae09d of_find_i2c_device_by_node EXPORT_SYMBOL vmlinux 0xec2b9abb param_get_ushort -EXPORT_SYMBOL vmlinux 0xec2c072d ptp_clock_register EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start EXPORT_SYMBOL vmlinux 0xec37a2e8 lockref_get_not_dead EXPORT_SYMBOL vmlinux 0xec44b3a2 inode_init_once -EXPORT_SYMBOL vmlinux 0xec4b1b18 phy_stop +EXPORT_SYMBOL vmlinux 0xec4ae45b can_nice +EXPORT_SYMBOL vmlinux 0xec4d4293 inet_addr_type_table EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys EXPORT_SYMBOL vmlinux 0xec5b660e proc_create_data EXPORT_SYMBOL vmlinux 0xec5d6f19 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xec82cd02 page_get_link +EXPORT_SYMBOL vmlinux 0xec7b0c40 mmc_retune_release +EXPORT_SYMBOL vmlinux 0xec88f3b7 mr_fill_mroute EXPORT_SYMBOL vmlinux 0xec957097 cdev_add -EXPORT_SYMBOL vmlinux 0xec9595b3 wait_on_page_private_2_killable -EXPORT_SYMBOL vmlinux 0xec9b1659 vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0xec9f7717 param_ops_string EXPORT_SYMBOL vmlinux 0xeca33d0f blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xecb1c3ce tcp_time_wait EXPORT_SYMBOL vmlinux 0xecb64a06 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0xeccb2288 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xecb6efe3 _dev_alert EXPORT_SYMBOL vmlinux 0xece784c2 rb_first EXPORT_SYMBOL vmlinux 0xecebc3c1 vm_mmap EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl -EXPORT_SYMBOL vmlinux 0xecfecf34 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xed059063 netlink_capable +EXPORT_SYMBOL vmlinux 0xed20775b km_state_expired +EXPORT_SYMBOL vmlinux 0xed381b2f sock_edemux EXPORT_SYMBOL vmlinux 0xed394bf3 rproc_of_parse_firmware EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock EXPORT_SYMBOL vmlinux 0xed5bd0c0 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xed5e46de inode_io_list_del EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable EXPORT_SYMBOL vmlinux 0xed8b0be7 kthread_create_worker -EXPORT_SYMBOL vmlinux 0xed8ca78c unregister_binfmt EXPORT_SYMBOL vmlinux 0xeda77a59 d_alloc -EXPORT_SYMBOL vmlinux 0xedac404a xp_dma_map -EXPORT_SYMBOL vmlinux 0xedae2f06 mmc_release_host EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc3aa79 ipv4_specific +EXPORT_SYMBOL vmlinux 0xedc85791 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xedd38cea neigh_destroy EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 EXPORT_SYMBOL vmlinux 0xedd98c8e of_get_i2c_adapter_by_node EXPORT_SYMBOL vmlinux 0xede1f659 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xede542ae inet6_getname -EXPORT_SYMBOL vmlinux 0xede599ea tcp_md5_do_add EXPORT_SYMBOL vmlinux 0xedee740b bio_kmalloc -EXPORT_SYMBOL vmlinux 0xedf1e595 eth_get_headlen EXPORT_SYMBOL vmlinux 0xee02a44f gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xee0bbb56 flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0xee11ae33 devm_request_resource EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee31b030 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xee3291fb ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xee3a80f0 finish_open EXPORT_SYMBOL vmlinux 0xee43fd9b ___ratelimit -EXPORT_SYMBOL vmlinux 0xee470006 module_put -EXPORT_SYMBOL vmlinux 0xee4b1620 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xee54cc16 no_seek_end_llseek EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee5970ff netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xee5d2618 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0xee5dba58 phy_init_eee -EXPORT_SYMBOL vmlinux 0xee5e93a0 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0xee5f8080 devfreq_monitor_resume EXPORT_SYMBOL vmlinux 0xee6e57d8 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0xee7a3ff7 skb_checksum EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91278f jbd2_journal_update_sb_errno EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee9bb306 xfrm4_udp_encap_rcv EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap EXPORT_SYMBOL vmlinux 0xeeb8bbff d_obtain_root -EXPORT_SYMBOL vmlinux 0xeebf1f4b seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0xeed57179 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xeeeb3996 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0xeef3b4b6 ppp_input EXPORT_SYMBOL vmlinux 0xef00eefb single_release -EXPORT_SYMBOL vmlinux 0xef219999 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xef2620ad pagecache_get_page -EXPORT_SYMBOL vmlinux 0xef396301 write_inode_now +EXPORT_SYMBOL vmlinux 0xef31202b netdev_reset_tc EXPORT_SYMBOL vmlinux 0xef3d8319 scsi_is_sdev_device EXPORT_SYMBOL vmlinux 0xef4cad92 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0xef558d9e sock_kmalloc +EXPORT_SYMBOL vmlinux 0xef58a131 wireless_spy_update EXPORT_SYMBOL vmlinux 0xef5c0fe8 insert_inode_locked4 EXPORT_SYMBOL vmlinux 0xef64769e __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xef728e81 msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0xef7299ef cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xef76f2e0 sk_dst_check EXPORT_SYMBOL vmlinux 0xef833424 pci_find_bus -EXPORT_SYMBOL vmlinux 0xef834b76 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0xef840d6c sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0xef84b8be __mod_zone_page_state EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg EXPORT_SYMBOL vmlinux 0xef981acb dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0xef990048 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xef9a7f97 twl6040_power EXPORT_SYMBOL vmlinux 0xefad0245 snd_timer_global_register EXPORT_SYMBOL vmlinux 0xefde9b13 nand_ecc_sw_bch_correct -EXPORT_SYMBOL vmlinux 0xefe3a229 ethtool_op_get_link EXPORT_SYMBOL vmlinux 0xefe4136c phy_modify_paged EXPORT_SYMBOL vmlinux 0xefe8d41f kthread_stop EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xeff9ab3b __hw_addr_ref_unsync_dev EXPORT_SYMBOL vmlinux 0xeffdb87e snd_pcm_hw_constraint_list EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0037b29 close_fd_get_file +EXPORT_SYMBOL vmlinux 0xf00d0d5d pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0xf0105772 input_inject_event EXPORT_SYMBOL vmlinux 0xf01528a4 dim_turn EXPORT_SYMBOL vmlinux 0xf02a6977 queue_rcu_work -EXPORT_SYMBOL vmlinux 0xf03a50f7 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xf0346bc5 netif_rx EXPORT_SYMBOL vmlinux 0xf0521ec7 pcim_iounmap_regions EXPORT_SYMBOL vmlinux 0xf0527285 tty_register_driver +EXPORT_SYMBOL vmlinux 0xf052e844 skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0xf068611f drop_super EXPORT_SYMBOL vmlinux 0xf06cee2c radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0xf071b77a phy_device_remove +EXPORT_SYMBOL vmlinux 0xf07eabfd __traceiter_spi_transfer_start EXPORT_SYMBOL vmlinux 0xf083a0cb drop_super_exclusive +EXPORT_SYMBOL vmlinux 0xf0932f28 __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xf0960538 key_unlink EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page EXPORT_SYMBOL vmlinux 0xf0a343ed release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf0cac90b ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xf0aefc8c mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xf0db6fd6 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xf0e867e9 twl6040_clear_bits EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb EXPORT_SYMBOL vmlinux 0xf0ef52e8 down +EXPORT_SYMBOL vmlinux 0xf0f2cfe1 netdev_upper_get_next_dev_rcu EXPORT_SYMBOL vmlinux 0xf0ff6b57 __quota_error EXPORT_SYMBOL vmlinux 0xf102732a crc16 EXPORT_SYMBOL vmlinux 0xf108715e dma_fence_signal_locked EXPORT_SYMBOL vmlinux 0xf10e9c67 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xf1111d77 generic_ro_fops -EXPORT_SYMBOL vmlinux 0xf1115e33 __bread_gfp -EXPORT_SYMBOL vmlinux 0xf113aeee ___pskb_trim EXPORT_SYMBOL vmlinux 0xf113ec66 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xf11dae34 file_ns_capable EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf121fa18 udp_seq_ops -EXPORT_SYMBOL vmlinux 0xf122b063 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0xf129b4e4 do_clone_file_range -EXPORT_SYMBOL vmlinux 0xf13392df load_nls EXPORT_SYMBOL vmlinux 0xf1455cba of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xf158f41c ptp_find_pin +EXPORT_SYMBOL vmlinux 0xf154dbe6 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xf1594fe5 __netlink_dump_start EXPORT_SYMBOL vmlinux 0xf1610bda devm_memunmap -EXPORT_SYMBOL vmlinux 0xf175cd6c fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0xf188aeda alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xf18fa647 scsi_device_put +EXPORT_SYMBOL vmlinux 0xf16e7694 xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1a1eb8e nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xf19c25de i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xf19cf037 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xf1a37bac msm_pinctrl_probe EXPORT_SYMBOL vmlinux 0xf1ad9c4b tegra_ivc_align EXPORT_SYMBOL vmlinux 0xf1b332c4 snd_timer_pause -EXPORT_SYMBOL vmlinux 0xf1c5dac6 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xf1d4f21a scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xf1cd555c mdiobus_write EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy EXPORT_SYMBOL vmlinux 0xf1de454f mipi_dsi_driver_register_full EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e3c378 skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 -EXPORT_SYMBOL vmlinux 0xf1f865ca tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0xf1fdfa3c pci_select_bars -EXPORT_SYMBOL vmlinux 0xf20891b1 cad_pid -EXPORT_SYMBOL vmlinux 0xf22004a3 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xf22b71cd ip_check_defrag -EXPORT_SYMBOL vmlinux 0xf22bcac8 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xf1fe94fd vme_init_bridge +EXPORT_SYMBOL vmlinux 0xf21469dc __skb_ext_del +EXPORT_SYMBOL vmlinux 0xf21f8759 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xf227b1b8 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0xf232a581 jbd2_journal_flush EXPORT_SYMBOL vmlinux 0xf236c75e swake_up_one -EXPORT_SYMBOL vmlinux 0xf23c8a6a dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0xf23d270b vfs_statfs EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf245a560 nf_register_sockopt EXPORT_SYMBOL vmlinux 0xf24da146 phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0xf250db06 jbd2_fc_end_commit EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier EXPORT_SYMBOL vmlinux 0xf26cb15b d_lookup EXPORT_SYMBOL vmlinux 0xf26ecc9c fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xf283c14c xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0xf279867d neigh_direct_output +EXPORT_SYMBOL vmlinux 0xf28231d2 dev_addr_flush EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf28538e9 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xf28640ae d_path EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf28d3b65 security_path_mkdir EXPORT_SYMBOL vmlinux 0xf290b663 inode_init_owner EXPORT_SYMBOL vmlinux 0xf29af16b nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL vmlinux 0xf29fd6a1 vfs_fileattr_set EXPORT_SYMBOL vmlinux 0xf2ad80d9 snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL vmlinux 0xf2ae8d30 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xf2c3b0b7 ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate EXPORT_SYMBOL vmlinux 0xf2da52cf blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xf2e22f23 of_platform_device_create EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf308d6d1 blk_sync_queue +EXPORT_SYMBOL vmlinux 0xf3052e00 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xf30d7758 security_path_unlink EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf31235c8 netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0xf312c88a page_address EXPORT_SYMBOL vmlinux 0xf31ed4a2 sg_miter_start +EXPORT_SYMBOL vmlinux 0xf3206c88 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0xf321ae43 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0xf33c694e sock_alloc_file +EXPORT_SYMBOL vmlinux 0xf337f3bd __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0xf33f804a serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xf34047ba linkwatch_fire_event EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head EXPORT_SYMBOL vmlinux 0xf348ff41 bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf35163b3 mdiobus_get_phy EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf35800b2 pskb_expand_head EXPORT_SYMBOL vmlinux 0xf362dc7f arm_clear_user EXPORT_SYMBOL vmlinux 0xf36a52ee set_nlink -EXPORT_SYMBOL vmlinux 0xf36a6e7b dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xf36d5749 xfrm_sad_getinfo EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf3761a22 path_is_under EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused EXPORT_SYMBOL vmlinux 0xf3a11c35 xa_find_after +EXPORT_SYMBOL vmlinux 0xf3a427d4 dev_addr_init +EXPORT_SYMBOL vmlinux 0xf3acca73 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xf3acf86e flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest EXPORT_SYMBOL vmlinux 0xf3cac714 ucc_fast_init EXPORT_SYMBOL vmlinux 0xf3d0b495 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xf3d9d1b3 bprm_change_interp EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3eae908 vfs_rename +EXPORT_SYMBOL vmlinux 0xf3e7dd0e lock_rename EXPORT_SYMBOL vmlinux 0xf3eb1323 kstrtou16_from_user EXPORT_SYMBOL vmlinux 0xf3f7469b pci_iomap_range EXPORT_SYMBOL vmlinux 0xf40019c0 tegra114_clock_tune_cpu_trimmers_init -EXPORT_SYMBOL vmlinux 0xf41d8a1c of_mdio_find_device EXPORT_SYMBOL vmlinux 0xf42071ce pci_disable_msix EXPORT_SYMBOL vmlinux 0xf420841c fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0xf428fbdf dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xf433a106 free_netdev -EXPORT_SYMBOL vmlinux 0xf43e2b75 nf_log_set +EXPORT_SYMBOL vmlinux 0xf42fa2ab passthru_features_check +EXPORT_SYMBOL vmlinux 0xf43ead11 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xf449a59d ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0xf44a3ad4 __tracepoint_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44f168a genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0xf468e90e eth_validate_addr +EXPORT_SYMBOL vmlinux 0xf471afb1 skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4757ab6 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xf47552b5 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xf47557a5 ip6_output EXPORT_SYMBOL vmlinux 0xf4823fd9 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xf48533c9 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0xf49071b8 jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0xf496fbd2 __tracepoint_module_get EXPORT_SYMBOL vmlinux 0xf4a04498 nmi_panic EXPORT_SYMBOL vmlinux 0xf4aa8459 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xf4afbb99 sock_from_file +EXPORT_SYMBOL vmlinux 0xf4b012cf neigh_parms_release +EXPORT_SYMBOL vmlinux 0xf4b0e673 scsi_device_resume EXPORT_SYMBOL vmlinux 0xf4ba246e ZSTD_nextSrcSizeToDecompress EXPORT_SYMBOL vmlinux 0xf4baa334 proc_dointvec_userhz_jiffies EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4eab02b mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f2df35 napi_enable -EXPORT_SYMBOL vmlinux 0xf50bf212 phy_print_status +EXPORT_SYMBOL vmlinux 0xf50b328b phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0xf51dc70e input_register_handle EXPORT_SYMBOL vmlinux 0xf5294c17 pin_user_pages_locked -EXPORT_SYMBOL vmlinux 0xf53a3b9c key_type_keyring -EXPORT_SYMBOL vmlinux 0xf53c4530 inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf542e72b wake_up_process -EXPORT_SYMBOL vmlinux 0xf54480d3 nf_log_trace -EXPORT_SYMBOL vmlinux 0xf544b498 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xf54d49a6 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xf54f4006 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xf55287f2 netdev_features_change EXPORT_SYMBOL vmlinux 0xf55d2b67 pci_bus_read_dev_vendor_id EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp -EXPORT_SYMBOL vmlinux 0xf56c41f6 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0xf56f9c9d mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0xf57195bc vfs_getattr -EXPORT_SYMBOL vmlinux 0xf5784241 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xf5740e2f _dev_emerg EXPORT_SYMBOL vmlinux 0xf57f4073 param_set_ushort EXPORT_SYMBOL vmlinux 0xf58698d8 register_sound_dsp EXPORT_SYMBOL vmlinux 0xf590c661 register_cdrom EXPORT_SYMBOL vmlinux 0xf5a0e0d2 gen_pool_for_each_chunk EXPORT_SYMBOL vmlinux 0xf5b4cacf __remove_inode_hash EXPORT_SYMBOL vmlinux 0xf5b666ef __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xf5dd1400 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xf5de459b vme_irq_free EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 EXPORT_SYMBOL vmlinux 0xf5ea3dc8 devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0xf5ebcdbc ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xf609b657 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xf5ecbb48 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xf5eebbe7 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xf5f50c96 genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0xf610bf0e tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0xf621e855 security_task_getsecid_subj EXPORT_SYMBOL vmlinux 0xf62654f8 ucc_fast_disable -EXPORT_SYMBOL vmlinux 0xf64047bf submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xf63ed0fe blk_rq_init EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf643e9a4 wait_on_page_private_2_killable EXPORT_SYMBOL vmlinux 0xf64bf255 wait_for_completion -EXPORT_SYMBOL vmlinux 0xf64c40e4 ip_sock_set_freebind EXPORT_SYMBOL vmlinux 0xf652d359 __wake_up_bit EXPORT_SYMBOL vmlinux 0xf652e3f7 request_key_tag +EXPORT_SYMBOL vmlinux 0xf6588477 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xf65cf50e mark_page_accessed EXPORT_SYMBOL vmlinux 0xf665a1ec tty_port_hangup EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf67ddc75 jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf686f9da register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xf687a48d dump_align +EXPORT_SYMBOL vmlinux 0xf68d2c3d generic_fadvise EXPORT_SYMBOL vmlinux 0xf690517f pci_get_subsys -EXPORT_SYMBOL vmlinux 0xf694282f __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0xf6a5ee2e qcom_scm_io_readl EXPORT_SYMBOL vmlinux 0xf6ab06ed simple_transaction_get EXPORT_SYMBOL vmlinux 0xf6c1fe33 ps2_begin_command -EXPORT_SYMBOL vmlinux 0xf6c29517 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0xf6c2b61d __f_setown +EXPORT_SYMBOL vmlinux 0xf6dcd3de jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xf6de6ff0 write_cache_pages EXPORT_SYMBOL vmlinux 0xf6e4df71 on_each_cpu_cond_mask EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit EXPORT_SYMBOL vmlinux 0xf6edc817 new_inode +EXPORT_SYMBOL vmlinux 0xf6f62aaa i2c_register_driver EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf7009324 read_code EXPORT_SYMBOL vmlinux 0xf705fa49 gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0xf706a181 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xf707e616 ip_sock_set_tos EXPORT_SYMBOL vmlinux 0xf70fe68d devm_release_resource EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb EXPORT_SYMBOL vmlinux 0xf72cb12c dma_async_device_register EXPORT_SYMBOL vmlinux 0xf72faf56 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xf73167b2 udp_seq_stop EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf73f2da0 end_buffer_write_sync EXPORT_SYMBOL vmlinux 0xf7414ea0 blk_rq_map_kern EXPORT_SYMBOL vmlinux 0xf749b97a of_find_node_by_type EXPORT_SYMBOL vmlinux 0xf74f12c8 param_set_ulong -EXPORT_SYMBOL vmlinux 0xf765d6cb nf_register_net_hooks EXPORT_SYMBOL vmlinux 0xf7665dd8 snd_dma_free_pages EXPORT_SYMBOL vmlinux 0xf7679abf make_kgid EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported EXPORT_SYMBOL vmlinux 0xf772e32d kthread_create_on_cpu EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf7734f68 ipv4_specific EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod EXPORT_SYMBOL vmlinux 0xf7833a2a request_firmware -EXPORT_SYMBOL vmlinux 0xf79895c8 dev_set_threaded -EXPORT_SYMBOL vmlinux 0xf79aa3dc security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xf7b71efb scsi_device_get -EXPORT_SYMBOL vmlinux 0xf7b81052 km_query +EXPORT_SYMBOL vmlinux 0xf7948b84 inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0xf7b9462b snd_pcm_hw_constraint_integer -EXPORT_SYMBOL vmlinux 0xf7d4cd65 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0xf7f7e3c3 sock_create +EXPORT_SYMBOL vmlinux 0xf7ba27ec vfs_llseek +EXPORT_SYMBOL vmlinux 0xf7f8c781 __cpuhp_remove_state EXPORT_SYMBOL vmlinux 0xf8029f33 config_item_get EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf8174c7f phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82c2ebd readahead_expand EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev EXPORT_SYMBOL vmlinux 0xf8318527 pci_request_region EXPORT_SYMBOL vmlinux 0xf838fd97 dim_park_on_top +EXPORT_SYMBOL vmlinux 0xf8411397 kernel_listen EXPORT_SYMBOL vmlinux 0xf84c3647 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xf85d6ae1 dst_discard_out EXPORT_SYMBOL vmlinux 0xf85ecd18 snd_info_create_card_entry EXPORT_SYMBOL vmlinux 0xf866b00c tegra_io_pad_power_enable EXPORT_SYMBOL vmlinux 0xf86f27cd idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xf881a03e __find_get_block EXPORT_SYMBOL vmlinux 0xf884e966 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0xf899d725 ip6_xmit -EXPORT_SYMBOL vmlinux 0xf89ae723 mmc_command_done -EXPORT_SYMBOL vmlinux 0xf8a6cc91 __dev_direct_xmit EXPORT_SYMBOL vmlinux 0xf8b365cd pci_scan_root_bus EXPORT_SYMBOL vmlinux 0xf8c2dd80 uart_write_wakeup EXPORT_SYMBOL vmlinux 0xf8d3a7c7 configfs_unregister_subsystem EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf8f625d3 create_empty_buffers EXPORT_SYMBOL vmlinux 0xf902a573 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0xf904785e security_d_instantiate -EXPORT_SYMBOL vmlinux 0xf9255c7a flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0xf91311af security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xf91e1b3b phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf95885a8 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xf956ea98 phy_get_eee_err EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf978d5d7 security_unix_may_send -EXPORT_SYMBOL vmlinux 0xf97efc9b inode_io_list_del EXPORT_SYMBOL vmlinux 0xf97f5bf6 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0xf997c366 kernel_listen +EXPORT_SYMBOL vmlinux 0xf98f206f sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0xf997f22e tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0xf99b63c3 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xf9a08a80 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xf9984c7c of_device_alloc EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9ab7aac genphy_resume +EXPORT_SYMBOL vmlinux 0xf9b51ccb xfrm_register_type +EXPORT_SYMBOL vmlinux 0xf9d559a7 ip6_frag_init EXPORT_SYMBOL vmlinux 0xf9dc9d13 proc_dobool EXPORT_SYMBOL vmlinux 0xf9e30802 devm_of_iomap -EXPORT_SYMBOL vmlinux 0xf9e4decb skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xf9e516c6 flow_block_cb_decref EXPORT_SYMBOL vmlinux 0xf9f0c951 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0xf9f2d00c security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xf9fa455b vme_unregister_bridge EXPORT_SYMBOL vmlinux 0xfa021f90 ZSTD_decompressContinue EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa0a9651 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xfa19a642 kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0xfa1b6413 discard_new_inode -EXPORT_SYMBOL vmlinux 0xfa3ecb45 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xfa4a539d skb_copy_expand +EXPORT_SYMBOL vmlinux 0xfa3473bf mmc_start_request +EXPORT_SYMBOL vmlinux 0xfa351c19 __sock_cmsg_send EXPORT_SYMBOL vmlinux 0xfa4c92fd seq_escape +EXPORT_SYMBOL vmlinux 0xfa50990f mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xfa571c5e mmc_hw_reset EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier EXPORT_SYMBOL vmlinux 0xfa6f3544 __register_nls +EXPORT_SYMBOL vmlinux 0xfa71e2b9 inet_stream_connect EXPORT_SYMBOL vmlinux 0xfa785316 clear_nlink +EXPORT_SYMBOL vmlinux 0xfa7a7af0 skb_expand_head +EXPORT_SYMBOL vmlinux 0xfa8596c6 vme_master_mmap EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfabe8247 of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xfaa7f31d scsi_print_sense_hdr EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacbee68 jbd2_trans_will_send_data_barrier EXPORT_SYMBOL vmlinux 0xfadc8d91 __fs_parse -EXPORT_SYMBOL vmlinux 0xfaeec267 dst_destroy -EXPORT_SYMBOL vmlinux 0xfb007206 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xfae5ccb7 inet6_release EXPORT_SYMBOL vmlinux 0xfb0200da sync_blockdev -EXPORT_SYMBOL vmlinux 0xfb02aa30 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xfb0de084 icmp_ndo_send -EXPORT_SYMBOL vmlinux 0xfb12949c mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xfb1c9e90 netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0xfb1d7438 down_read +EXPORT_SYMBOL vmlinux 0xfb1e48d7 scsi_device_lookup EXPORT_SYMBOL vmlinux 0xfb2b4a15 __nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0xfb336634 mempool_destroy EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb49a183 genphy_suspend -EXPORT_SYMBOL vmlinux 0xfb4d85af gnet_stats_copy_basic_hw EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb7446f2 nobh_write_begin +EXPORT_SYMBOL vmlinux 0xfb7658e1 lru_cache_add EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 +EXPORT_SYMBOL vmlinux 0xfb878139 vme_bus_type EXPORT_SYMBOL vmlinux 0xfba6651a inode_newsize_ok EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfba8fccb grab_cache_page_write_begin EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense EXPORT_SYMBOL vmlinux 0xfbbb1423 cpu_user EXPORT_SYMBOL vmlinux 0xfbbe161a dquot_alloc EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbd85c67 __module_get -EXPORT_SYMBOL vmlinux 0xfbd9704f tcp_v4_send_check EXPORT_SYMBOL vmlinux 0xfbea611e _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfbeb5d39 xfrm6_rcv EXPORT_SYMBOL vmlinux 0xfbfd7e4c set_groups +EXPORT_SYMBOL vmlinux 0xfc07a216 phy_attach_direct EXPORT_SYMBOL vmlinux 0xfc0d3521 dquot_scan_active -EXPORT_SYMBOL vmlinux 0xfc28f28e inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0xfc2c702c phy_start_cable_test EXPORT_SYMBOL vmlinux 0xfc31eec2 _raw_read_lock_irq EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3e409e dev_set_group EXPORT_SYMBOL vmlinux 0xfc3f3589 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfc4c0075 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xfc48ba39 __cancel_dirty_page EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc82ed42 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xfc7128ea skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xfc7a7645 keyring_alloc EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available -EXPORT_SYMBOL vmlinux 0xfca36b79 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0xfcadac79 write_one_page +EXPORT_SYMBOL vmlinux 0xfcc22e71 sock_from_file EXPORT_SYMBOL vmlinux 0xfcc94400 blkdev_get_by_dev EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfce89d88 jbd2_fc_wait_bufs EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf8246a inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xfcf8613b ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xfcff52dc skb_pull EXPORT_SYMBOL vmlinux 0xfd115e29 cros_ec_cmd_xfer EXPORT_SYMBOL vmlinux 0xfd1bc346 __traceiter_dma_fence_signaled EXPORT_SYMBOL vmlinux 0xfd2e7d08 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xfd2fbfc1 keyring_clear EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe +EXPORT_SYMBOL vmlinux 0xfd4a4319 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xfd4ece8b dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xfd5a0b21 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xfd6e6ff4 ip_setsockopt EXPORT_SYMBOL vmlinux 0xfd6f1549 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xfd7d2007 eth_type_trans EXPORT_SYMBOL vmlinux 0xfd7e8517 md_bitmap_startwrite EXPORT_SYMBOL vmlinux 0xfd840b50 rawnand_sw_bch_cleanup EXPORT_SYMBOL vmlinux 0xfd89a3bf snd_pcm_hw_constraint_pow2 EXPORT_SYMBOL vmlinux 0xfd8c5afc release_fiq -EXPORT_SYMBOL vmlinux 0xfd90de4a dst_release_immediate -EXPORT_SYMBOL vmlinux 0xfd9c8a41 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xfda0732a vme_irq_generate -EXPORT_SYMBOL vmlinux 0xfda93647 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0xfda3c2de jbd2_journal_abort EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdc96c88 tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display EXPORT_SYMBOL vmlinux 0xfdce0e74 tty_hangup -EXPORT_SYMBOL vmlinux 0xfde33e42 reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0xfdec43c8 phy_resume -EXPORT_SYMBOL vmlinux 0xfdf2b0f5 mmc_detect_card_removed EXPORT_SYMBOL vmlinux 0xfdf4cff0 neigh_proc_dointvec_jiffies EXPORT_SYMBOL vmlinux 0xfdff94e0 ZSTD_initDStream EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe30d5f4 mmc_free_host -EXPORT_SYMBOL vmlinux 0xfe327e68 mount_subtree +EXPORT_SYMBOL vmlinux 0xfe17ce2b jbd2_journal_inode_ranged_wait EXPORT_SYMBOL vmlinux 0xfe3b9a11 unpin_user_pages_dirty_lock EXPORT_SYMBOL vmlinux 0xfe45f40f cros_ec_get_host_event EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry EXPORT_SYMBOL vmlinux 0xfe5789b6 devm_get_clk_from_child EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe6eabd7 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xfe6dcdaa phy_aneg_done +EXPORT_SYMBOL vmlinux 0xfe6e3550 xfrm_register_type_offload EXPORT_SYMBOL vmlinux 0xfe713216 mipi_dsi_device_unregister EXPORT_SYMBOL vmlinux 0xfe725015 pci_pme_active EXPORT_SYMBOL vmlinux 0xfe8cdbf2 md_reap_sync_thread EXPORT_SYMBOL vmlinux 0xfe90c4a6 _find_first_zero_bit_le -EXPORT_SYMBOL vmlinux 0xfe9b412e skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xfea39415 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xfeaa14b6 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xfe97039f mntget EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfeb68f49 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xfec18b77 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xfec2ba79 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xfec7fe4d mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xfecb7b5a sched_autogroup_detach EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfef465cc __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xfef9fecc unregister_console EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute EXPORT_SYMBOL vmlinux 0xff192916 msm_pinctrl_dev_pm_ops -EXPORT_SYMBOL vmlinux 0xff1e0850 jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff214ea0 i2c_transfer EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register EXPORT_SYMBOL vmlinux 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL vmlinux 0xff4ac71a block_invalidatepage EXPORT_SYMBOL vmlinux 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL vmlinux 0xff644d86 xfrm_input EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap EXPORT_SYMBOL vmlinux 0xff6cf06d mipi_dsi_dcs_get_display_brightness_large -EXPORT_SYMBOL vmlinux 0xff7167ee tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xff895d98 ether_setup EXPORT_SYMBOL vmlinux 0xff8c2e5a radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xffa86d14 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0xffb4f4b1 kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit +EXPORT_SYMBOL vmlinux 0xffbfb900 generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0xffc82407 regset_get_alloc EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfff4ff29 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0xfff7bcca jbd2_transaction_committed -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 0x16fe282f af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x1f965538 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x28972719 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x3b4f2d60 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x49f21a71 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x4f77a78e af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x52c12185 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x6236d0a9 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x6476ea1b af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x6ff5adbe af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x89354857 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x89699790 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x9a33ffae af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0xbd023b8b af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xcdb09a9e af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0xdb6058e3 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xdc3bf29f af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xf891ec68 af_alg_free_sg +EXPORT_SYMBOL vmlinux 0xfff985ee xfrm_dst_ifdown +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xa8a1bb9e sha1_finup_arm +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xc522c321 sha1_update_arm +EXPORT_SYMBOL_GPL crypto/af_alg 0x08cc2894 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x16a33e51 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x1a490cb8 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x1e663046 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x38b486ee af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x3de14f07 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x44950609 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x494efc6f af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x66a9d717 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x69e6cbdf af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x74c54f75 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x87a496be af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xa1c44fbd af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xbace7472 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xcb6f4c89 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xcc01f5b9 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xd94b8d0c af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xdb704c30 af_alg_sendpage EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x384039ad asym_tpm_subtype EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x2e4ea223 async_memcpy @@ -11576,41 +11468,41 @@ 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 0x26d3dea9 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x2776b665 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x28ccd724 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x2db46277 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x5cceba23 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x75f6fe19 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x841a8ded cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xa51c6551 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xba2fff9e cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xc1e87c15 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xcc5092dc cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xdbfd3502 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xea8d29b4 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0b073f03 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1330789b crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x15849467 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x675e4347 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x76f72947 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x787a9753 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x968bc55d crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9bc611f5 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9cf695a2 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa6cbdb97 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xaa7c5ad4 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbc560d81 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcca8efa4 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x4cc09ed4 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/cryptd 0x09cc5ccf cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x218342f6 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x2e7b8d68 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x2f487159 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x42618054 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x6325d29c cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x79757207 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x8a6082c7 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xa16df1fe cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xa4d90daa cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb6d575e2 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xd142fd33 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xf93efa92 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x03d7baa9 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2239b7d8 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x490f52b4 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x650036e9 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6f92e358 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x75fa9bb2 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x92f9fc00 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb5fc2c00 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xddc2e417 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe626a45d crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xea4db3be crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xeb6a7e50 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf94171d8 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x23856cf8 simd_unregister_aeads EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x5e54ea36 simd_register_skciphers_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x7118165e simd_register_aeads_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbd8d35e1 simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x9e956cab simd_unregister_skciphers EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xc9786fd1 simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xcd8c93ac 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 @@ -11702,81 +11594,81 @@ EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcc20b393 __regmap_init_spmi EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xfdb59483 __regmap_init_spmi_ext EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x2673fdf5 __devm_regmap_init_w1 EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x8ede327c __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0913932d bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2c707b05 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x33cc8ec5 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3e964b0e bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x40a42ce2 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x49f29748 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x65306d26 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x73195a54 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x80f601a9 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8674ba64 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8972318a bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x93cb05f7 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x95b8f671 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa2309e4a bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaaa1cb63 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaf4e3857 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xafd878b3 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb531ef9c bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc17db251 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc5178438 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcf704020 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd26282be bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe69ebc14 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf89b01ff bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x256fb3e1 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3cca4133 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x59b4e64d btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5e625397 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8ab8f4f3 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xdf9cbd07 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe3bf7802 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xee8ec323 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x038e99ff btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x06dd1119 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0727fd01 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0a16c3aa btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0e32f9c7 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x14a42cc7 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x22bf1a08 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x35a30004 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3b8bc316 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x44ef9903 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x67c65530 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa7eb6600 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb04d694e btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xba7de3af btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc04cdbaa btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcb5bbc89 btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x302d76ae btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3ddbbdcf btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4404d356 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5d07700e btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x62f122e1 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9099151c btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa48ceed4 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb63bf2c9 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb669f1bd btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf178bf7a btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfaa8de76 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x458caabb qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xae5a9c48 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb4537488 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc73bab23 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xeb4c9850 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1e172e86 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3231b68d btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8d1755ca btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x912db4a4 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x04c13ac0 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x177d7be7 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x185c8c7d bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x37000916 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3d694e8e bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x46e2a5fe bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5b0a8e59 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5f188c35 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5f7e95dc bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6a1e7b17 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x75094a91 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x772c2f1f bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7d721d4b bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa49d4047 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaac5f5c6 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb05050b7 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb0b1b4c5 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbc15e6cf bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbe1633f6 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc31cce53 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc4abe4bc bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xde9f68af bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf1cde016 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf9aceddb bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4884ae7a btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4b020372 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6e66f135 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8554440d btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9682cebf btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb7ee96c3 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc24a3c26 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xee69d091 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x175845d1 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1f299585 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2b5f3e1f btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3b33ad55 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4f1695dd btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x531faa9a btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5fbb77cc btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x78c619da btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8d530439 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa84620c9 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbd91478e btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc9860577 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd4e890a9 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe24ae3ec btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe41e4414 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf053e374 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x06c04baa btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x10ed46c5 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x19e1d865 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3343dc69 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x37f1a863 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4831e176 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x483bf476 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7b619af5 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x871f45fe btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe0c35562 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf789147d btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x259d37b2 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x352058e2 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4953c207 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5c25960a qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x67cd9462 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x2755eb83 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x66dd7f58 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7470b1f3 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x910ecddf btrtl_initialize EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc028422b btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc2242e71 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x0a3e3e09 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x1ce03523 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xdb37d891 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xe901a7de h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xbd37fcc0 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xe41d34f0 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x0890cbdd hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x3a6555de h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x88b6cb68 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xe3d9974c hci_uart_unregister_device EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x005b8b0b mhi_pm_resume EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x083e9ccd mhi_pm_suspend EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1248cd69 mhi_notify @@ -11812,7 +11704,6 @@ EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x205dc7f4 moxtet_device_write EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xad1da993 moxtet_device_written EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xe6e3677a moxtet_device_read EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0000139e clk_alpha_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x04c6165e qcom_cc_map 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 @@ -11853,9 +11744,11 @@ 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 0x898347b7 qcom_cc_really_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8b55eac4 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x90bb2a66 qcom_cc_probe_by_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x91c41c9f clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x920bdc26 qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x921f09a3 qcom_cc_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x97488818 clk_rcg_pixel_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9a6aa2c3 qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c8854a1 clk_alpha_pll_lucid_ops @@ -11867,7 +11760,6 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f241baa clk_rcg_ops 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 -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb372e70a qcom_cc_probe 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 @@ -11883,7 +11775,7 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd87ee67b qcom_cc_register_board_c EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe34a7f9f clk_regmap_phy_mux_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/clk/qcom/clk-qcom 0xfb698e56 qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfccef516 qcom_cc_really_probe EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x07de2e62 comedi_nsamples_left EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0e4b8db5 __comedi_request_region @@ -12037,15 +11929,14 @@ EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7b0a5be0 idma32_dma_probe EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe57c6208 dw_dma_probe EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xec9342e2 do_dw_dma_disable EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xef6cbab3 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1366da06 fsl_edma_setup_regs EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x320d1cab fsl_edma_free_desc EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3cc013ad fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3dff0ae6 fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3f044ad6 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x47e274bb fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x49886e97 fsl_edma_xfer_desc EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4bae2b64 fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x65f2fc25 fsl_edma_setup_regs EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x68259252 fsl_edma_prep_dma_cyclic EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6afbdde3 fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7863d260 fsl_edma_chan_mux EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7b419cbd fsl_edma_issue_pending EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7dc3cff5 fsl_edma_cleanup_vchan EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9a1a23d9 fsl_edma_terminate_all @@ -12053,34 +11944,35 @@ EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc9f8df09 fsl_edma_resume EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xcb88c3b1 fsl_edma_slave_config EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd788a86a fsl_edma_tx_status EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xdc2d05d4 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x28c05617 hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x87e98b5c hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf653d1fc fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xcd32c4d3 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xd6d67f7d hidma_mgmt_setup EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x31c5d44c get_scpi_ops EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xb4323d19 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x00da3373 dfl_fpga_check_port_id EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x016299ae dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x053e41a9 dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x07079fb8 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0ade6cdf dfl_fpga_dev_feature_init EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x12a9d32e dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2839c9c7 dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2d6556d3 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1400f0f2 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x23f2ee23 dfl_fpga_port_ops_add EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x355a14dd dfl_fpga_enum_info_add_irq EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x40f78e03 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x50bcbf62 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x462b0a3c dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4c3543c1 dfl_fpga_dev_ops_unregister EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5906b939 dfl_fpga_enum_info_free EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x61bd576b dfl_fpga_feature_devs_remove EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x673c9f05 dfl_fpga_cdev_assign_port EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6814b783 dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6a180ce9 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6f37496b __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x848dff07 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9028733a dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x91355d5c dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8c8a2119 dfl_fpga_port_ops_put EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x94e794a0 dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb3ddbf32 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x958bb831 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xca9796a9 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcc03187f dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe15de8ba dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe3b3c2c3 dfl_fpga_dev_ops_register EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe8d99833 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xeae5eb7e dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xff1dc721 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf2efc31b __dfl_fpga_cdev_find_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 0x23957b25 fpga_bridge_free @@ -12117,21 +12009,21 @@ EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x7e9cafda devm_fpga_region_create EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x84fee2e8 fpga_region_unregister EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xcbe7380c fpga_region_register EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe65de2db fpga_region_create -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x2bfc348c fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x306bc986 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x00a1cd40 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0903afad fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x2228149c fsi_master_unregister EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3bd1a076 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4dc062d8 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5128a5bc fsi_master_rescan 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 0x8602f64a fsi_device_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x88cc2bf0 fsi_get_new_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8d6921b3 fsi_bus_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa72adf9a fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7977ccdb fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8c02545f fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb9e82aab fsi_get_new_minor EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xcf47dbaf fsi_master_rescan -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xdf5a943a fsi_master_register EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe4ac7aa2 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xeb572293 fsi_cdev_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xffe239cf fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe84bcb6f fsi_driver_register EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x96fa29ae fsi_occ_submit EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x89e99a8e sbefifo_submit EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xc4e9abef sbefifo_parse_status @@ -12163,7 +12055,9 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_se 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 0x293127a9 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 0x2dca4c3a 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 @@ -12174,18 +12068,16 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_ph EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8c56146d dw_hdmi_set_high_tmds_clock_ratio 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 0x9b44a60b dw_hdmi_phy_gen2_pddq -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9ccde1b8 dw_hdmi_bind 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 0xf4b51124 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 0x3021af6c 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 0x88a2d181 dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x6f81f90c dw_mipi_dsi_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1055c126 drm_gem_cma_free_object EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x151e72dc drm_gem_shmem_get_pages_sgt EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1a776ff0 drm_class_device_unregister @@ -12255,10 +12147,10 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xfcae05b1 meson_venc_hdmi_mo EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x48f2c1b9 s6e63m0_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x5fff38ca s6e63m0_remove EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0xe4808881 pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x12414334 rcar_cmm_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x1a0ce790 rcar_cmm_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xa3167794 rcar_cmm_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xd801f36e rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x0112eabf rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x4817e06b rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x64172e05 rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xbeaefddd rcar_cmm_enable EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x48ad2d1b rcar_lvds_clk_enable EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x79474a9a rcar_lvds_clk_disable EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xb9198272 rcar_lvds_dual_link @@ -12423,6 +12315,7 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4be8c4e3 gb_svc_intf_set_power_mode EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5a635540 gb_operation_request_send EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5b3852e0 gb_hd_put EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5e19bf8b greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x60be26fd greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x614f2e2d __traceiter_gb_message_submit EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x64ddda5e gb_operation_unidirectional_timeout EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6c64a271 __traceiter_gb_hd_create @@ -12434,7 +12327,7 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81a86ad8 greybus_message_sent EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x90aa7b8c gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x99ab7e2b greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x986c52e0 greybus_register_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa9bb948d gb_operation_result EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xabb48f0e gb_hd_shutdown EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xac8af9cf gb_connection_disable_forced @@ -12442,7 +12335,6 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae9a0d17 gb_operation_request_send_ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb50efdc0 gb_connection_create_offloaded EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb7992489 gb_operation_create_flags EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb7dac26f __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc9ddb749 greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd0cd8a58 gb_operation_put EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd1531782 __traceiter_gb_hd_in EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd8e89419 gb_connection_create_flags @@ -12458,85 +12350,85 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf8f597f1 gb_connection_disable_rx EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfb68938e __traceiter_gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfcf0570c gb_hd_output EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfd96a63a gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/hid/hid 0x003f15ae hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x02fcd011 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x04397b0c hid_input_report EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0a350b5d hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0b46ab1d hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0dcdd38a hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1518b995 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1623c3e4 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0eece7d5 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x15e9206a hid_open_report EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1aa6b5c1 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1ae43f86 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x22b077ef hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x25322a3c __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c2a475a hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x35317976 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x35e241c1 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x36a3c2ed hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a282e66 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3fb26e8b hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e79392d hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x579a26b9 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5d9edcf1 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5ed06736 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6435f938 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x65ecd62b hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x67bd6203 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7856d52d hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c64f817 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x82dd2989 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x83aa448c hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1fb2c1fd hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2cbfd8cc hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x35748f21 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x36052a37 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3f4328ff hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4061f476 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x423d12a6 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x436e954b hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5293e793 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5589bd72 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x61db08da hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x62ce44cb hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x634938e9 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x71c0c833 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c47057e hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x852d6252 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x893e52e5 hid_register_report EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8da21c18 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x97c0e6d0 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9bcfaaa5 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb0facf19 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2104ffa hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xba2a6094 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbdf48235 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc4593b58 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc4ac111d hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc659dc0f hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe12c0f69 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xea72dbc5 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0xeacb6155 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x930631a1 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x943983eb hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c7e1f90 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaad1a55d __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xab0d84fc hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb1e470a4 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb4f9a534 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb53eb745 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbfac592e hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc3ae5fcc hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5f9515f hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc644cb4d hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb170562 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0f79179 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd829992a hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdb00e20a hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4f78758 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe7385e03 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xea85d7e6 hid_set_field EXPORT_SYMBOL_GPL drivers/hid/hid 0xf365795d hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf6939f37 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf91e1f05 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf4094c79 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa0c916f hid_field_extract EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfdb542c1 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xffa7a62a hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x063bc219 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 0x9fb77bfd roccat_connect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x05f8411b roccat_common2_receive EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x098798cf roccat_common2_sysfs_write EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x148ba4e1 roccat_common2_send EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2957afbe roccat_common2_sysfs_read EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4d795bef roccat_common2_device_init_struct EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xaffcab4e roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x09e39c08 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1a39d02a sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x371e59a9 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x54195804 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x552ad0f0 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x76c202d7 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8532ba9a sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd12a662f sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xeb707c8a sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1afa7358 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2e46c461 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3b729218 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x452ac7fa sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x53964a13 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x98f3159c hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa4ce590f sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe2e1be60 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfe934923 sensor_hub_remove_callback EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x0603a79d i2c_hid_core_shutdown EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x175b7c33 i2c_hid_core_remove EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1c4a5897 i2c_hid_core_pm EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x20e4e128 i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x910c2fdb i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/uhid 0x59582e58 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x27b13013 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xb568989e usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x428b0e41 ssip_slave_get_master -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xa263435b ssip_slave_running -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xa710d759 ssip_slave_stop_tx -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xd0d2806c ssip_slave_start_tx -EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xf5ed6c24 ssip_reset_event +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7d5fe84e i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x282320d5 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x7aa31cad hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xbfbf8803 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x038dd982 ssip_reset_event +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x10119e44 ssip_slave_running +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x2f4bcc48 ssip_slave_stop_tx +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xe130b900 ssip_slave_start_tx +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xfc87501c ssip_slave_get_master EXPORT_SYMBOL_GPL drivers/hsi/controllers/omap_ssi 0x1a57c5b5 ssi_waketest EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x157320a0 hsi_alloc_msg EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x19afe2e5 hsi_alloc_controller @@ -12681,14 +12573,14 @@ EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x5969ef91 devm_iio_kfifo_buffer EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x1a35b20e bme680_core_probe EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0xd9ad3eea sps30_probe EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0396a040 cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x4ca43d27 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7c18b70e cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x06d73b3b cros_ec_sensors_core_write EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8e3f7ef9 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x90702fd3 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9799864c cros_ec_sensors_core_read 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 0xa2b4b617 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc9dff68f cros_ec_sensors_core_init EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xcc0f229f cros_ec_sensors_pm_ops EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xce28d4a1 cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe89a3a24 cros_ec_sensors_core_read EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf09a0111 cros_ec_sensors_core_register EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf381ee90 cros_ec_sensors_read_cmd EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf3e31851 cros_ec_sensors_push_data @@ -12741,6 +12633,7 @@ EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79448962 iio_get_channel_ext_info_ EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7c4e8aaf iio_write_channel_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x80984375 iio_read_channel_processed_scale EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x80bf336a iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x84a2c60c iio_buffer_enabled EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9437bab7 iio_read_avail_channel_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x966dd246 of_iio_channel_get_by_name EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x98efa659 iio_enum_read @@ -12749,8 +12642,10 @@ EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa333c864 iio_buffer_put EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa79eab71 iio_read_channel_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa91dd824 iio_update_buffers EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa961a5b8 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xacffc1ee iio_device_get_current_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbe07fddd iio_read_channel_processed EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbe77f179 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc1f944ee iio_device_claim_buffer_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc71a9427 iio_read_max_channel_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc86172fa iio_write_channel_attribute EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd1faff2d iio_channel_release_all @@ -12760,6 +12655,7 @@ EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdd778b44 iio_channel_get_all EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe7a45b0b iio_convert_raw_to_processed EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9c32dd2 devm_iio_trigger_alloc EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf0b0d960 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf220564c iio_device_release_buffer_mode EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x48d517a0 rm3100_common_probe EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table @@ -12772,18 +12668,18 @@ EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x4f8e27f4 zpa2326_isreg_preciou EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x5822e290 zpa2326_remove EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x7e10e2aa zpa2326_isreg_readable EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0667e69d rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1b584a5f rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x200204e0 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2097253f rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x235732c1 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4c9a44cd rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7d074e80 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8a636f54 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa11c3dc4 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc934b095 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd9252e05 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdc89e0cc rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x13b59d1f rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x29fe56b5 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x31a02674 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x66ebc7e7 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x692ad466 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6f3995c1 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9f397fb2 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb6ccf477 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xba9bbba2 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc06a3c4b rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd85c4fe7 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfff18002 rtrs_start_hb EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x362b48f0 input_ff_create_memless EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xe01fb11b matrix_keypad_parse_properties EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove @@ -12814,30 +12710,30 @@ EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x003b688e tsc200x_rem EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x18c78c21 tsc200x_regmap_config EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x1c9d47c2 tsc200x_pm_ops EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xbb555778 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x00228736 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0ec3805f wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1d9c9a6c wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3dc50f48 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5ba4e72b wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6b3e2e78 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6ded44c1 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x72076671 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x82810224 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x850ae11a wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcc8887a8 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd898e69a wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x92bb78ce imx_icc_unregister -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xeb1575bb imx_icc_register +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x097a2841 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0ab4542b wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x170a4971 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x40ab5176 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x522fbb62 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x61f9006c wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x895d5c54 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xad5002ed wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbc0223e1 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc61e54b5 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xebfda6fa wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf442ecbb wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x3f48b378 imx_icc_register +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xb4ff1880 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 0xcdb2aa5e of_bcm_voter_get EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x2a171bec qcom_icc_bcm_init EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x56e5e5cc qcom_icc_pre_aggregate EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x86585ebd qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x958a1d25 qcom_icc_rpmh_remove EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x9d5e884f qcom_icc_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xb2d48215 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xcaad8f53 qcom_icc_rpmh_probe EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xd4ef16e7 qcom_icc_set -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xe95e2bf3 qcom_icc_rpmh_probe EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send EXPORT_SYMBOL_GPL drivers/iommu/iova 0x0a8beabb put_iova_domain @@ -12887,48 +12783,48 @@ EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_s 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 0x00a75132 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x02fa4697 __traceiter_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05907c93 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06b7219b __traceiter_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x07541c9a __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x088d6b30 __traceiter_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0a62aea7 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bbb29c6 __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10e68b2b __traceiter_bcache_journal_full 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 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 0x2129048f __traceiter_bcache_bypass_sequential 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 0x30556300 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x307681f2 __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3079df16 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x30d8bf85 __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x31057c80 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36086141 __traceiter_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3b3cacdf __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x41d76cf1 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x315d6166 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x38e5134a __traceiter_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4c8382f3 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x517fabb6 __traceiter_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x53cabd0b __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5a227cbf __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ad0faf3 __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dece04f __traceiter_bcache_invalidate 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 0x62758a9d __traceiter_bcache_btree_node_split 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 0x67abbb76 __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x692166da __traceiter_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6a288438 __traceiter_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6f3bb38d __traceiter_bcache_journal_write 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 @@ -12936,12 +12832,9 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_ 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 0x822af207 __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x82fa505e __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8929e29f __traceiter_bcache_invalidate 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 0x8df12bd1 __traceiter_bcache_btree_write 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 0x98ddc365 __tracepoint_bcache_bypass_congested @@ -12950,28 +12843,31 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c271314 __tracepoint_bcache_btree 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 0x9d26e373 __traceiter_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 0xa655412c __traceiter_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa6c2a174 __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 0xb462fdb7 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf0c54a9 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb1888090 __traceiter_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb85f3769 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb695ced0 __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbdacaeb5 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc2c9413b __traceiter_bcache_gc_start 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 0xc8bb571d __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcacee6ae __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcb2b4af3 __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcf12a58a __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcf228777 __traceiter_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd0d44a36 __traceiter_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd107aaa5 __traceiter_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0xdcc340b1 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xddf5be9f __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdf2b71e1 __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe246040a __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe2a959c1 __traceiter_bcache_btree_insert_key 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 @@ -13231,19 +13127,20 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf4aef3a4 tpg_gen_tex EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0157b9e6 vb2_queue_error EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x187595f1 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0f642291 __traceiter_vb2_buf_queue EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1c286a57 vb2_core_reqbufs EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1d13a74c vb2_request_buffer_cnt EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1f2267a6 vb2_read EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x33f0b0b3 vb2_discard_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x37e58ecb vb2_core_poll EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3a67874f vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4944f206 __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x50ebf26f __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3c9d514f __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3e3fa51f __traceiter_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5c7cdded vb2_plane_cookie EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5f9e9fbf __tracepoint_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6707fbb1 vb2_core_streamon EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6e5993d1 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x739f9a6b __traceiter_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7a2090b5 vb2_core_expbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7af4693f vb2_thread_start EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7f23bf90 vb2_core_dqbuf @@ -13262,7 +13159,6 @@ EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd1ec0864 vb EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd484a07c vb2_request_object_is_buffer EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe2892fbe vb2_core_streamoff EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe58a2770 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe5f0cebb __traceiter_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xec6dfefb vb2_mmap EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf10a0014 vb2_core_queue_init EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf1ce2204 vb2_core_queue_release @@ -13309,12 +13205,107 @@ EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x637665eb dvb_module_probe EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xb407e893 dvb_module_release EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xb7f0685d dvb_create_media_graph EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xa967e463 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0xca780c89 ascot2e_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0x2fe9f92a atbm8830_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0xeb9aa41a au8522_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0x1156e15c bcm3510_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0x6396238f cx22700_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0x3b7df0bf cx22702_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0x788669e0 cx24110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0x8da4168f cx24113_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0x9bb88eb2 cx24116_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xb6a409b9 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0xebc7fad6 cx24120_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0x20fed9e4 cx24123_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0xf751685b cxd2820r_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x113b8e5e cxd2841er_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0xb4d58ab8 cxd2841er_attach_t_c +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0xc1d9fb7b cxd2880_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0xb7cf07b5 dib0070_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x0af97210 dib0090_fw_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0xdabd2079 dib0090_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0xf1dc256e dib3000mb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0xb9ea27e2 dib3000mc_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0x0c9d3e63 dib7000m_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0x631c97a8 dib7000p_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0x7ab9c3ad dib8000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0x858e8735 dib9000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x589fd628 drx39xxj_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0xdb80b563 drxd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0x06c9e49f drxk_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0xf22c03b5 ds3000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0xa551e4e1 dvb_pll_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0x7962f34b ec100_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x42166f6f gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x0a3b4b4b helene_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x415ea177 helene_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0x75ea6682 horus3a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0x006a9ba4 isl6405_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0xfc2d4799 isl6421_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0x9954055f isl6423_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0x5a60e1c1 itd1000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0x732a6ca6 ix2505v_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0xf0e822af l64781_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0xbbb62ef2 lg2160_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0xa52ac243 lgdt3305_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0x5d96c62d lgdt3306a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0x47cf5fd4 lgdt330x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0x1e319730 lgs8gxx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0x3218b434 lnbh25_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x6a870a6b lnbp21_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0xb4a3b1bf lnbh24_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0x63fd643a lnbp22_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0xf769ec33 m88ds3103_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0xbd252d55 m88rs2000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0x853fd9ad mb86a16_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0xd36185aa mb86a20s_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0x86bd5ff8 mt312_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0x9d623e4c mt352_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x1e7e75f1 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0x2d7ca65b nxt200x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0x5464dabe nxt6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0xcfcfd687 or51132_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0xeac3f953 or51211_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0x1e698eec s5h1409_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0xf6c29707 s5h1411_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0xc38392cd s5h1420_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0xf873badb s5h1432_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0x1a0cb02a s921_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0x35963c35 si21xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0x45ad4d36 sp887x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0x898b8017 stb0899_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0xc111f0a2 stb6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0xe479777c stb6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0x7e5e7266 stv0288_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0xb57cd3fa stv0297_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0xfc80a022 stv0299_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x10931586 stv0367ddb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x20630bbc stv0367ter_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xa151f1d1 stv0367cab_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0x0c219d1c stv0900_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0x4f291453 stv090x_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x965e9d99 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0x51fdedb8 stv6110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0xd89cf819 stv6110x_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xc4f18693 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0x74b26800 tda10021_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0x2de9993f tda10023_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0x42fdf027 tda10048_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0xde7beeb2 tda10045_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0xe5f6f1c6 tda10046_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0x8e735a97 tda10086_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x42a79b22 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0xdf959c34 tda665x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0x0c97d7c9 tda8083_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0xe5fa3351 tda8261_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0x4b48d36a tda826x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0x8452650d ts2020_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0x53ddc046 tua6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0x42ef1070 ves1820_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0xc6debeed ves1x93_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0x58d45dd0 zl10036_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0x02382d25 zl10039_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0x717f46b6 zl10353_attach EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x46a07333 aptina_pll_calculate EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x980592c7 ccs_pll_calculate EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x14b0ab72 max9271_wake_up @@ -13378,66 +13369,69 @@ EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfbb997a8 media_device_init EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc881781 media_entity_get_fwnode_pad EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfd79ccd8 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xdfd0d99b cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0eed2789 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x35217344 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x383702b8 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x38d89445 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x39462d20 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3ddc8dbd mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x441d72d6 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x44f2e42b mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6dfca545 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7a9205c2 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa0666d4f mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa6c18e18 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb800affa mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc1886647 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc3f3ae05 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd2d012b2 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe7695206 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe92d6b0c mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe9c2fdf1 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0536eea2 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0a7aca91 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0d42513d saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x207129da saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2c3b52f7 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2f19b28f saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x310dee8e saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3e01792e saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x561b2a67 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x58a0c0aa saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5ef0553a saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x888bfaff saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9335169e saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa0d72f82 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa6ca8644 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbebebc7b saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc7a2cdb5 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc8df88a3 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfd92c7d1 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x05428a72 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x26211560 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5395e600 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6bdc768b ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0xe6be4162 dst_attach +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0x0a49d8b1 dst_ca_attach +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xb1ef8708 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x716c3c82 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0108d984 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x19138cdc mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3205a755 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4f23935a mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x506e9831 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x55165897 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x72563e25 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x752dbe2a mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x772efe83 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8ec4108d mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb28e1b8c mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb704b0d2 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb7f6db2a mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc240448d mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd340a8ca mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd37592e6 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdce2ef0e mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xed53f98b mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf210a475 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x08e6bf07 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x15bf6a51 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1babc7bf saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3cbcb16a saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x48b8f9c8 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5abf882a saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6343ff61 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x669566e7 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x78fd7628 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7a1c4feb saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8c08ca4a saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8dd11c31 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x96a8e679 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9cce69a5 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa1b1da93 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xaa040bee saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdcba1354 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf1863bbd saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf8f7a282 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x050f10bd ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x54430257 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5cf6a3a6 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6c337d15 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x70b421f6 ttpci_budget_set_video_port EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xaa85b2fa ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xcda33fb3 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd3617aaf ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7a4fc148 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x876059fe ttpci_budget_init EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x60fd83a3 mccic_resume EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x65643fb5 mccic_suspend EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x69909d99 mccic_irq EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xd3953ccd mccic_shutdown EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xf3cda506 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x1e64172d vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x49f260f2 vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x858b182b vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xaf9aaa09 vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xb0a7745b vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xcaf082f5 vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xde9e9ed4 vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xe8e0b1b4 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x240100cb vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x5a9af440 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x5f4a20aa vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x74f92e14 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x78056d00 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x8206a8a8 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x953b7a20 vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xbf29d9a8 vpu_get_vdec_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 @@ -13497,10 +13491,21 @@ EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1bc9681 rc_map_get EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe7648541 rc_map_register EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe848f31d ir_raw_event_store_with_filter EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeca2310d devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0x9a418da0 fc0011_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0x530cdaf1 fc0012_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0xc4f4c2cf fc0013_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0xf35ce463 max2165_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0xcd407256 mc44s803_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0x2e6d4a02 mt2060_attach EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x938ea467 mt2063_attach EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x58b085b6 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0x33f1d80a mt2131_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0xf6ca301a mt2266_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0x38fe1dde mxl5005s_attach EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xc81f32d0 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0x5bdc631e qt1010_attach EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x2eeddb9c r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0x14d622ca tda18218_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x6b0b3430 tda18271_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x302f5747 tda827x_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x001622d4 tda829x_probe @@ -13511,6 +13516,8 @@ EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x6d42391f tea5761_autodetection EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x06a53343 tea5767_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x90c332f7 tea5767_autodetection EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xe0dbe1f3 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0x7ce42eec xc4000_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0x96ddb70a xc5000_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1900f1d7 cx231xx_uninit_bulk EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x20d9dc89 cx231xx_init_isoc @@ -13532,8 +13539,8 @@ EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc272c56f is_fw_load EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe1ff702a cx231xx_enable_i2c_port_3 EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe3036b4c cx231xx_uninit_isoc EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf3fd9cd8 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x98bfafb3 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x13b81f27 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x00cf7e52 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xdacb3ba2 mxl111sf_tuner_attach EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x11c7a722 em28xx_set_mode EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3c7116a6 em28xx_setup_xc3028 EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3eb9c653 em28xx_audio_setup @@ -13703,12 +13710,14 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x37d256da v4l_enable_media_ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a512c87 v4l2_i2c_new_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x44993a19 v4l2_src_change_event_subdev_subscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4c96ee46 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4f60dd56 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x506612b4 __traceiter_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5355e750 v4l2_mc_create_media_graph EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x582776e4 v4l2_device_unregister_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5845f2af v4l2_event_queue_fh EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5cdceb8e v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5d48694d __traceiter_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61078d85 v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x642aaea8 __traceiter_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x659837ad __tracepoint_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp @@ -13722,7 +13731,6 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90293fde v4l2_event_unsubs EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9662d09a v4l2_fh_is_singular EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x96a9e58a v4l2_fh_exit EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x96b3c875 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9bc9595c __traceiter_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9be87463 v4l2_src_change_event_subscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa251e8c3 v4l2_subdev_get_fwnode_pad_1_to_1 @@ -13742,6 +13750,7 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xccc16d21 v4l_disable_media EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd0844795 v4l2_event_subdev_unsubscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1579bde v4l2_spi_new_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd4de96ca v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdb97dcf1 __traceiter_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde615710 v4l2_event_pending EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe286f234 v4l2_fh_add EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf @@ -13751,11 +13760,9 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeeafe314 v4l2_device_regis EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf001fcf8 __tracepoint_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf0373e90 v4l2_event_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2acea8f __traceiter_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf9e875c5 v4l2_subdev_alloc_state EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfacd9a2e v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfc7d5956 __traceiter_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff76573f __v4l2_find_nearest_size EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x6891d279 mtk_smi_larb_get EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x6d03e34b mtk_smi_larb_put @@ -13790,8 +13797,8 @@ EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xda4827a6 arizona_dev_exit EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe30fe527 cs47l24_patch EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe35207e9 arizona_request_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xef590282 wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x849f1fce atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xfe29b04d atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x1ee68dbb atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xf1defba7 atc260x_match_device EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x262ecc98 da9150_bulk_read EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x38ab6462 da9150_bulk_write EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3ec6a81c da9150_reg_write @@ -13860,70 +13867,70 @@ EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x90c7edca mc13xxx_variant_mc13783 EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd07da6ea mc13xxx_variant_mc13892 EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xff028b54 mc13xxx_adc_do_conversion EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0c9ea4b7 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1bc8df49 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2e9baa0c pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x33b6e671 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x75e07a58 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7718f967 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9fce471b pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb2c82f5a pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb4f0d449 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xce7d65ee pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe3e12217 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x47033951 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xac9198f5 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1d4b8d04 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x479fb97b pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x508ae4c6 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x56f661d0 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8c3dcaf9 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0555cd25 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0dd8dfcd pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1630c725 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1966eaf2 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x328dbdb1 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x58b2b676 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9c967884 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9d81949b pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xae6aec8c pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd6d283a6 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe55c49f0 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x7de65a7a pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x83e0c695 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7707e6f7 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb9c8182c pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc779255f pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd8a3c713 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf6390917 pcf50633_gpio_power_supply_set EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x8548238e 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 0x188eda70 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x25954c0f si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2791de59 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3e1e931f si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3ef96ebe si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x43f5c1fd si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4c4928e9 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4d9c46de si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x53c44e5e si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5cd00241 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x61e8f09e si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x62d3bb88 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x64e3b47b si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6ed2bb43 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82785e58 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8fda985d si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x944cf409 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa60c0fcb si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa8eded9f si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb0aaff67 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb3d815ef si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xba1eb191 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbbc14321 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbd4f2e23 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbdeb346d si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbe2cf1cd si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xccc9b903 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcdc68d08 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd13ffc0f si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd66716db si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xec449c0e si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf2fcc6ac si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf88b8767 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfc5b0aba si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x000a5785 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x02b557d8 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x21e4fcd2 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x25370e62 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2d888128 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2e90c4e4 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2f676b1e si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x311da253 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3160bc99 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3e09ee4c devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x537e6fb5 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59edc355 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5c2082b3 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6e384ed6 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x731747ee si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x90814965 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9a42580f si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa3eb9402 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa6308a63 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa870acf4 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaa9f5aa0 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb3e61002 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb8ee26a0 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb910901e si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc6b45a89 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd0ec3b1c si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd101f9e2 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd787f5b5 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd85d1591 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdd616f46 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe4651c1e si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xed037450 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf73b384e si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfe263330 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x48d29eda ssbi_read EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xaaca99b4 ssbi_write EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xb4f50fdc stmfx_function_enable EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xd150da65 stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x038c076a am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x3194019d am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x88f1561d am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb805cb82 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x121abb60 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x49667ace am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7992e751 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc0f7b0d1 am335x_tsc_se_clr EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x3f35c266 tps65218_set_bits EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x70f0d334 tps65218_reg_write EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xf5d2d992 tps65218_clear_bits @@ -13935,30 +13942,30 @@ EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8fa00278 alcor_write32be EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x9c591297 alcor_read32be EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xc40663bd alcor_write32 EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf256542d alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0eb627bd rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2151cd31 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x218e80e6 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x263a6bc8 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3721348d rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x38613e86 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x40a34e23 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x48f7c296 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6e9caac6 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6f5344df rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x887fb73c rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8cdf3705 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8dc78b7e rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9cbc6908 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xab098e51 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbcc7a556 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc44b0803 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc98dd3f9 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xceb2d45e rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd480ffa4 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd702122c rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfbf95c63 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfcfa36d0 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfdefc6dc rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0d398969 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0f534c39 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x11dc8dec rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2f19ecb0 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4ea128fc rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5f1eaa8f rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x63f42037 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x66ba6450 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x67257a1c rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x77462411 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x781ddb1d rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7a193a96 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x867dd1e3 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x92fa8604 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa0b2648a rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbd1536e5 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbe37179c rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xccb82799 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd446650c rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdac8de25 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdf7f6a6c rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xeec7c5ae rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfa380f7e rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfebfa146 rtsx_pci_card_exclusive_check EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x105d3833 rtsx_usb_add_cmd EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x37933bd2 rtsx_usb_get_rsp EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x490c06e0 rtsx_usb_transfer_data @@ -13972,8 +13979,8 @@ EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb2b4e76d rtsx_usb_switch_c EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc566725e rtsx_usb_read_ppbuf EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xccddd921 rtsx_usb_card_exclusive_check EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf48d8734 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2130ae8e cb710_set_irq_handler EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x67c9ae8f cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9e7b39f6 cb710_set_irq_handler EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc4a71d25 cb710_pci_update_config_reg EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xf5e04866 cb710_sg_dwiter_write_next_block EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx @@ -13997,35 +14004,35 @@ EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8a3dce6b enclosure_component_registe EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc39004c5 enclosure_component_alloc EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xecd94682 enclosure_unregister EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf577a7e1 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0e8b549f lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x21204dcd lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x68d09582 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6eaa3dfd lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x71db631f lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x82db9bf8 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8999b0c9 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb8914f44 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x38437899 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5249288a lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5ebe3a28 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x65d5d537 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7c3ccdd3 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe01816e1 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe4926d21 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfcc485b6 lis3lv02d_remove_fs EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xb138d173 devm_pvpanic_probe -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x78877afe st_unregister -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xb1a23923 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x7d6e0243 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xb6070eb5 st_unregister EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x1bbf0f28 uacce_register EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x4d2f4371 uacce_alloc EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x986a6a94 uacce_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x7542497a dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xde7f74e0 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x58f65e7d dw_mci_pltfm_register EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xe5803323 dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x120b84ee renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x55a2c026 renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x00d6bcaf tmio_mmc_host_alloc -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x154c635e tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xfe2647dd dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x0fb930cc renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xd7ae5a6a renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x157f3d24 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x217421e4 tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x36834265 tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x368f9a6f tmio_mmc_host_probe EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x455abbcb tmio_mmc_host_free EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x47b7c921 tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x54f6fe6e tmio_mmc_enable_mmc_irqs EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x5c8e0ea9 tmio_mmc_host_runtime_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x702745eb tmio_mmc_do_data_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xc3d63662 tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xeb9d67b2 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xd6903594 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xfc32eb34 tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xfdaa0be8 tmio_mmc_host_remove EXPORT_SYMBOL_GPL drivers/most/most_core 0x110cb53a most_stop_channel EXPORT_SYMBOL_GPL drivers/most/most_core 0x2510ae54 most_register_interface EXPORT_SYMBOL_GPL drivers/most/most_core 0x2bfaac30 most_get_mbo @@ -14054,9 +14061,9 @@ EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xc9f05bdf hyperbus_regist EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xf60b708a hyperbus_unregister_device EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x5c93b2f6 onenand_release EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xb6288a43 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x42826d92 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x67194ae5 brcmnand_remove EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x91ec4bb0 brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xe1fd7bc0 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xb646b8b8 brcmnand_probe EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x7647a4a5 denali_chip_init EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x5a3aa253 sm_register_device EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x0048b492 spi_nor_restore @@ -14093,361 +14100,361 @@ EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd7c7a8e2 mux_control_select EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf02d4290 mux_chip_free EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf73e7408 mux_control_put EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf836a8f5 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xac06ff15 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xb1787ece arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/bareudp 0x8be79253 bareudp_dev_create -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x25f99bfb register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3143b785 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5e7e9845 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5f28a3fe free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xcf58d802 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf8c89c3c alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x9b248954 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xae8a0433 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xbc591c4b free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe039be9d alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x02247481 can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x068e1d8f can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0ead90e2 can_change_state +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x89afc436 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xcbba0c5b arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/bareudp 0x1a2423a0 bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x21260ea4 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5d5de4b4 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8690c8fb alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x98538e9a free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xabcfaa1b c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe6328b00 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x470a749d register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4fd06439 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x710466b1 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x81dc584d free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x079ed0d4 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 0x1301dc8a can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1e5921ee can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2d91f298 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3dc48278 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x42cf25de can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4888568d alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x538a3e5d can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5b315eb4 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x13cf6093 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x18013289 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1b2618bc register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1f03ea0e can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x23a4d05e can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2cd568c6 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4ac369a3 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4e1c8be4 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x58dd7d30 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5aafd9d4 alloc_can_err_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x652fb8cf can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x65321ebd can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x805248c9 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9121f398 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9746b4b2 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa364f827 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa4ec9cfa can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaa461745 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xae13404d unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb68770da free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc0ae6418 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc82f9546 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc9f1452b of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcb199d47 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdd2745db can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xddf744f4 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe9b5017c can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xeca51e04 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xeeed827b can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x703358a1 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x71031f0d close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x747859f6 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x782844ed can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8080c4bd can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x81d9d361 can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x84cd3e97 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8ae14afd can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8c829578 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8d03dbfa alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x94a09358 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x97773207 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9e2c342f free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb00901df can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc6e3d9e2 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcaafe5c7 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdd8b7bbb can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe165b0de alloc_canfd_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0ee85d0a m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x127cd4bb m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x957c655f m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xad4f26de m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb04b19b2 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd08e96ec m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd28f3dff m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xfc30293f m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x2364c440 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xff72766a can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x32d7de71 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x3b22f046 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x780a70a7 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x80c36776 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9444a3fa m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc33c040f m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcfe292f1 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdc1fa37d m_can_class_free_dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6e5b8a68 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9ad1f313 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd9387a2f alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x321a8698 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x02d38aa5 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1c0f9ef5 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x389fcfd0 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3c75d86b ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x72132530 ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x854ce007 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8b6884fb ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x94320fcd ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa4dfffc3 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbe59c076 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc73b1f80 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xeb25250f ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf0927602 ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xfa04f445 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2f369835 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x431c9516 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4641d794 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5923f37c rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5bfa892a rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x808f9ef8 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8b5aafbd rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9024b56c rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x926484e2 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9e5b9b19 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa0c3893c rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa5aa023f rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa7a976a6 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd9940dc4 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe520ed0e rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/ethernet/8390/ax88796 0xbafc0d05 ax_NS8390_reinit -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x1fb35f27 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x30cf586f arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x0b5e05f8 enetc_hw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x12ff1a76 enetc_mdio_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x5e662910 enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x71d698ef register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x755597e1 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xbb5eb407 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc236f7c5 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xd3f86319 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x03916d68 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x093bcdb5 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1ae5b3a3 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1de95ee8 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2eefff5e ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3583e858 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4c2e937a ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x57f83297 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x81412cc4 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8e8ab681 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa4d788bc ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xcea346ff ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd7f7e2f3 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xdec3afd2 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x65543863 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7e0b1c28 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7efc49c9 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x85aef3b0 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8ae6ef7a realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8d1d090d rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8e651beb rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x905e6ac3 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x945b4754 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb294ea46 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbcdb605c rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd05d6aad rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd15bf638 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe1463395 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xec7a2b8a rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/ethernet/8390/ax88796 0x6a2554ce ax_NS8390_reinit +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x1b6e5ab2 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xbdac867d arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x8332b431 enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xaaad99cd enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xebb7d5b3 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-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x7cc59209 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x8e393596 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x0f7c4a3f ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x36264b57 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x88a5740a ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x9463f08a ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xfbe39851 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x011fa7c0 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02c6b137 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03a9edfa mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0450d4cf __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x049c8c2b mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08f9d8c5 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ad2b3bb mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ccb02f6 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e0bbc6c mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f5fbfa6 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1822c5f7 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a5eacc3 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a6266f6 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a8d0ac6 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f26301a mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21b94be6 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22194653 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22b40e53 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x247fef49 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25a53e06 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2724e2a6 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29a2cb6e mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ae6f243 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2eaf6c83 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3209a0d0 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x321fbf3f mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32986515 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33f7f36e mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3db684a0 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f49109b __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40b8b616 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43886016 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45377df0 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4578369e mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45ee74bb mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48cd5157 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5222aa97 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54b0b051 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57b028a5 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x598071f9 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a795d56 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60866e5e mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65ded2cb mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67d7d8fb mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b03342e mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ef68219 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f00c687 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7044e823 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x713a04f8 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7189c8de __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75b2ae31 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7624dbe7 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x797798d7 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c005405 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80d314db mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8239c53c mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87449964 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x895ce66c mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8976658e mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b75b083 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c79e3d3 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c7af7e5 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c836e7f mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93e9a787 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93fa4720 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9537ea2b mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x998b1c08 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9990d544 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b72a037 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c1fef3c mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d073cd8 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0ac0178 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa15afda5 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa57922e8 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7d0e80e mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa822e136 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa87247b3 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8bde4b7 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaad45f6c mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae6ef55e mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0ed6c7d mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0f8e6b2 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3479ff0 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4da4a7a mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb71db717 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9543209 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc9fb114 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdeed6b6 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdfcf209 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc20be029 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc23acf4d mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc44fa56a mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc67cf60d mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6d584a4 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca2a1643 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca68c4a2 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdcb8334 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd05dbdb5 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd07b72fb mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd144cf7c mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd205f064 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2a9eb7b mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfcd4d8d mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1388a73 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2d11c05 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe37543e2 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6680f44 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe72bab1c mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe735b477 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedc98f21 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeff8939d mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1d4192b mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf235112f mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf25e6688 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf896346b mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf906ac31 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9d8ac89 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb0211e9 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd629756 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff7e9856 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfff3685d mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01313a37 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02d735b0 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04ce9811 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b210872 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0db82d20 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f7ae463 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12760f28 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14d86a36 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b456c86 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x293eb064 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x719a2211 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x1cd6af58 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x6365cbcf ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x65c5d88f ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xd446ac42 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf466191c ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00b29afe mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0256bff0 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x040b00a5 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07c9fa15 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x095e2740 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x124825e8 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14e8356d mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1544788e mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15a4847e mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15ec92b9 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a3cb98c mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d5c7617 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e3d6bc7 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ffe92e9 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x207a5975 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23695282 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2385fcfe mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24ba402e mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x278c4b55 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28711d65 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cd2fe96 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d325cb7 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e87af50 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f8cd8e2 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fabf710 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x323f0fac mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38876f3f mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39b2f276 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a964c27 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e89edd1 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41fd789f mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x454aade4 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x459a1287 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48234155 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d9dba1f mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e3062e2 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ebac525 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f90f415 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x502386b7 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50f2b655 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x513adb7d mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52f02553 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53feb8aa mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5402ba77 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x595808c1 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5960a77e mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a9e40f1 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c95336d mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e6011cb mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6310f626 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63726d9c mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63e2bf95 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66d82f24 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68673cac mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68a069f5 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b17570d mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e91731f mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ed5232d mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fa86a1b mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fd85de1 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7150d5fb mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71769ce0 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73573ec4 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74f424ff mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75006dd8 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75051e9a mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7de9ce3a mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e358f02 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e68ec7c mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f9fb9e0 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x828ed45e mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82beab68 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x851d0cac mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x858948d6 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85ba11a4 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9014f0e5 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91362e87 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94894367 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ce8fcc0 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fea4179 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8274889 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa82dcdb3 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa83dde93 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab091074 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab0b379b mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad31f90c mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf1f86f6 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1f5db76 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb29a7bee mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb35fffe2 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4dbed9c mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb926a6ea mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba0c0458 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba40e9d8 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd451112 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf940d06 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfbc390f mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc29131e2 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca5bb8ea mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb5cb3c3 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc0dee91 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd22144b2 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4d531af mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6d73327 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7aef5c0 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8ff5ed1 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda421cdb mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc04d09b mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcd1325f mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3bb9c92 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe52d4d5a mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe81ae7ab mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8af5f19 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb11d801 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeccc6760 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeed4fe94 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf13378b9 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf139702e mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4f75772 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf68eda55 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb90b66f mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03cd5fa6 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09d490a9 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fc1a73f mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x100cfaa9 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1340e792 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x173f7713 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18f02c4b mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ba65c45 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1be88de6 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d73e570 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 0x204f7685 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22bf5e76 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23518808 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fd1c566 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31031980 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37720485 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38db2d07 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d52f8c0 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x487d0dff mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x494c07c6 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49ff14df mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a7021cd mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f60c7d8 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52fad4f3 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5385f8b2 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55e2067e mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x629b934a mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63d98add mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x710ad19f mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71461675 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x721c0618 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f784d54 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24d297bc mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f9527b7 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33f86536 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36c39320 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3999a13b mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e974b71 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43d2bb23 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d25a52f mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d95ae76 mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x524efe13 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x567be7f2 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5827ce6d mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a2f6a05 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x633f6b2a mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x648bbf61 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x684dff76 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a98d0cf mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e9a82ba mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71b23395 mlx5_query_hca_vport_context 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 0x735719cb mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x770a1d10 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ab8dad2 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d63cb37 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fca6d97 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80b79de7 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81adfc83 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86953ba9 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89b5a88d mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8afd8a22 mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9459107f mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9475a077 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99b04098 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b9b7f56 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8129c60 mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac4b03c1 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb38e6c08 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb759ca37 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb782e972 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb99d275c mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba7851a3 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbef4dfd3 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0901767 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0c52c4b mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc709ee30 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74ceacb6 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7be8d2cc mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x801a2b48 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81027380 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x858bdc7b mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x895078a8 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91647a46 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x931fae16 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96e0c6c2 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x993197d5 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b8a5dcf mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e686947 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa533bd24 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa872c1cb mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9e0c091 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad9a35c9 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xada8c9f7 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb13ad962 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb14e73db mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb88ac28f mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9e88f52 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba752907 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcec44c1 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd025c80 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfe3fbe3 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5ae8d7b mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc942b408 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb279465 mlx5_eswitch_get_total_vports 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 0xd01136ad mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0a597ed mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd52ba5fe mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6f04a73 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbd4d025 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcc30a71 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde8d13b0 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0f51653 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe237e167 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5c92c49 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee4782d1 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee519488 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf82b6298 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa6eeb8d mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbe86acc mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdb5bc8b mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x739440f4 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xd144f163 ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xd464cfdd ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xe2a6315d ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccc2dba6 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1ae88be mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd36723d9 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd623cda8 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc2b8ea8 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe17f31bc mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeab364af mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf017f912 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0373c88 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2c9cace mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc40bd71 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd17cf3c mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffdbfab2 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x22ed40ba ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x704d9068 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xaf32e54f ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xe731dbb3 ks8851_suspend 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 0x6c8a2997 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04b959d5 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x13df48fb ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1769a5da __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x38b4973c ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c8739eb ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e0cd562 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ffdca54 ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9fab39e9 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa967d322 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xabb32d36 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1372c88 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd10b7ee5 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfac78e85 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x71c5de9b devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x17ca6bb2 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1898e95f __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x30e27057 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34bb3f9a ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49ee0504 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54fc99c8 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6a145d85 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6bf3af64 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6eaf10af ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x78505ad3 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa73c437f ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6eb17c9 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc33199cf ocelot_phylink_mac_link_up 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 0x0e19e882 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x10673cc1 stmmac_bus_clks_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x5340e113 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8e0d580f stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x5586c20b 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 0xbfe4bfe0 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc222f5bd stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xaee248f2 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc2e9124a stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc2f0768d stmmac_dvr_probe EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x515a90e1 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x73834554 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xaecffe9f stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xcb5d2806 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xce0cf1de stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x1531ea4a w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x26d00ca7 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x6fbe4efb w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xd6c5af2a w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/geneve 0x93149a63 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5e68e721 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x61983f1b ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7ee43bfd ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x9e604d88 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xaab54e0c ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macsec 0x6bacb3ee macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2f1e1665 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7c7ea6d4 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe9aef324 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xff908ae0 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xebf546f3 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf7c01254 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x40e3b3fb stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x63d5317f stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x73381701 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa0d8ca3a stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd787f0bc stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x217dc051 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x8dbf49f8 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xd3e6c5b3 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xe654f201 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0xc6fe5154 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x4dfdac3f ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x61babb59 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xa3a66127 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xbbcc29a7 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf5abb3a5 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macsec 0xaeb2e306 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6201bf2b macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8f7d6b98 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x940ee6fd macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb9eae2e0 macvlan_common_newlink EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x036e4096 mdio_i2c_alloc EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6ddc374b mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x17925d39 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x500527ef net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xca877f37 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xe9e68bbe net_failover_destroy EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x10ac045b xpcs_do_config EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x475f4531 xpcs_destroy EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x493dc417 xpcs_validate @@ -14455,849 +14462,849 @@ EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x6e303ded xpcs_config_eee EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x85a0ddd0 xpcs_get_an_mode EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf57e1656 xpcs_create -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0534206d bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x05ea955f bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0abef61c bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x13b77bcf bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2316ad4e __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x43238d87 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5593d735 bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x607bd089 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x60a70120 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x65cc2e60 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x65f9a96f bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6f03e80d bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x790a68ae __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8450dcf4 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x85cd0aa0 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8d6a9656 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9ccdec8a bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa8b06507 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb6b99fc1 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb7210ac2 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb8e6a7c0 __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xba8da2fa bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbd515929 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc24f8727 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc49532c5 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcf18b2bb bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd487ed0d bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd61f5224 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdf265cd6 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe873ff20 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf2be8a23 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf2ee51a6 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfa86edbf bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfdb48d9e bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0092d6f6 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0552d612 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x07b0521a __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x09beaf20 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x09ff385a bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x18a24ce9 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2d695dd3 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x34874831 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ad0127f bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3e223ad9 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3efc49f3 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x450e0bc2 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4e41926b bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x553334f0 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6603fde7 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6ea3275d bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x78d36ad9 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x84cfa765 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8c9c06ac bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8e19a147 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8f087093 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x922bcf42 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa0478e5c bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa066cd81 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa2844989 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa2a702cf bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb5be698a bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb6b42fe9 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbdb590b0 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd65c4001 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdd90028a bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe2eb0e3f bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe3460abb __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfb6d2d17 __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 0x21168839 phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x192843d0 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 0x3dacb0d8 phylink_mii_c22_pcs_set_advertisement -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3fb11e6a phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x43a47574 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x30718017 phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3466a53d phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62cd45b8 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6472d902 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x67d78207 phylink_connect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6b875926 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 0x80e7738a phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7a0fe446 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7bc9ae43 phylink_mii_c22_pcs_config 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 0xc0a8f4be phylink_resume EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc296f920 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc3906c58 phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc488536a phylink_mii_c22_pcs_config -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xca57fc63 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd7018a7f phylink_create 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 0x00109cc8 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x2468f6c3 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x25d496da tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x495acdc6 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x8767c186 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x8f599d2e tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xaa965daf tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0xbf191bb0 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0xf9bc588b tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3e2f6d50 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7525d281 usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8c5d34d3 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9b45e8ba usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd6e20711 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe22c4ad2 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x10742559 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x28f7890e cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x536775cc cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x67f5a568 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x733876c4 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9b2696e6 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9c123c53 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa15a618e cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc48273a7 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc5e8bd6b cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xde67da06 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xf3355540 rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0ff90cdd generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x44b6b54b rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x779fbecc rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xaa3564e5 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbfcff10b rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe37bf076 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x049f9221 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0663bc7d usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1dec762b usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1e221065 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x22a7d544 usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2ba51f66 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3eb2e9f0 usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x43ac8bff usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x49891e4b usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5783f7bb usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x57ff150d usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6949bd71 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x69cd846a usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x753ea7a8 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7bd80b16 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7d32426a usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x86a5921f usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9cc37bb5 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa2cdde7f usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa4b759b0 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb7ca3d64 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbf394b42 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xca68a46e usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd3baaa64 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd8aed953 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdf76683b usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe3d518b1 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeba2dbf8 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf001d52a usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf326e89d usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf6d14ef5 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf79bf59f usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfbb43704 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfe5e8c84 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x2de21a98 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x91021977 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xadb69368 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xf1c842bb vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x285c70b4 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x510e7c9e il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a9b9e1f il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c8d9aa5 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1997ed5 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf84438e7 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x00b01bab iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x01a4fcd0 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x021e566f iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0341a350 iwl_fw_dbg_stop_sync -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x05b82e60 iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1178b92f iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x12aa1fb2 iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1a7e4214 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/tap 0x0cb97c1a tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x2069c73a tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x3975c606 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x6de213e2 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x83d885d0 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x8fa9a052 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xac25424f tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xd4a20310 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xdb6b20fc tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x581498c7 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x956a05a9 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa59fe6df usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa9fa895d usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb12162be usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc9c137bd usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x10914cdb cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x25d6a052 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x31e9e347 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x44bbb6c0 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5127f0d8 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6410ffad cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x700584a1 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9b906bfa cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb2a8d3e6 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcc139b21 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdda42d18 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xe8e135a8 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x24ae57c1 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x33b3d67a generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4ec094db rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7f62a172 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x833c138b rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe097eeef rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x02fe3b4d usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x08fe9dbf usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x14486241 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1eda4cc5 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2069e134 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2733e77e usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x31aa6bae usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3b8f3f1c usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3d258337 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x41797884 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4e32ad3d usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4f4a8af9 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x54a22da8 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5c93facd usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5f326dc7 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6317670e usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x67629de6 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x693dcbf8 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x74255c6f usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x80a5e13d usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x891d677c usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8c7ecc08 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9965b061 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa4b28d1b usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb8da97c1 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbda1b615 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc590699f usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcdd09859 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcf68b441 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcfcc91ad usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe2851b42 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe7d266a1 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf734e79e usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf9bce81b usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x04bae01c vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x2eb0bc75 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xf199694b vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xf8ae23da vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x370a4cb1 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x032722b8 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40481211 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f3dab1b il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f553c2a _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf17f9267 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x04e456a1 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x05d39c6d __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0d8ea093 iwl_trans_send_cmd EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c48129a iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2114b146 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x23b41b06 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20637bb0 iwl_configure_rxq EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c0f571f iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3459c3e3 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2de49f5c iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2e1c7393 iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2f9e5f64 iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2fdee268 iwl_set_soc_latency EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3bddd187 iwl_configure_rxq -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x41dd4ffd iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x46610177 iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x37e50a9b iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a34a1b7 iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3c4a4295 _iwl_dbg_tlv_time_point EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47e3dc83 iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x48232f53 iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4a0f19a1 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4e314923 iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x55bd47b3 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4a3ba290 iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x53c267d1 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 0x5995de73 iwl_get_nvm EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ef4a44d iwl_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x76748c59 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5f62919a __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x63b6e701 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6d6060d0 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7121d84d iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x73884a1d iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x754d79fc __iwl_warn EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x77e30dc2 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x78666b22 iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x829c7d6b iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x853dbb21 iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x86e4ad8a iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8be73ff3 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8db64bad iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x77ac2d15 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x77b79254 iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7d60a770 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x81f4e430 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x84aa0683 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x86373446 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x86866fd8 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8c1f697f iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8e5cc84e iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x908a1729 iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x912d6d7f iwl_parse_nvm_mcc_info EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93160e9e iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93fe45e6 iwl_pnvm_load -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x97c62b04 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9ad0f704 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9c230f99 _iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa77c0811 iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x94d39c23 iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x97281fbf iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x98bd4f9d iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9a5ba1ac iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9d39d5e3 iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9eeba4e8 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa007873c iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa1d98b9a __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa24f672d iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa4d05b63 iwl_write_prph_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa542b45d iwl_read_external_nvm EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xab7c0b3e iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb07adbd2 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xac644934 iwl_read_direct32 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1e39cb3 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb243c7b8 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb930992f iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbaea0454 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbd046f2e iwl_set_soc_latency -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbdcf7371 iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbeb61777 iwl_write_prph_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbfa9ec3b iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb6ab7cf9 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb6f02b8c iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbdd893d7 iwl_clear_bits_prph EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc05e5efd iwl_fw_lookup_cmd_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc8b3dbef iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc8e404d3 iwl_dbg_tlv_del_timers EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcf7c353c iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd18ee2bf iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1d5a9eb iwl_set_bits_mask_prph EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd2de3cc1 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd4ca1f9b iwl_fwrt_dump_error_logs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdba89282 iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdc3a1f28 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdc7fcce5 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd5ef871f iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdab5dc6f iwl_fw_dbg_stop_sync EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdec9e66d iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe29b8bc1 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe3084778 iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe4c6ad04 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe2dbd8c4 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe6b322aa iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe6eedb25 iwl_write_direct64 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf203c457 iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf56e0cf3 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf70bf19c iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfbe85667 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x78f9e909 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x83d41edd p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb08fc308 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb79056bb p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xbe1b8b35 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd02b4233 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd6e360de p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe7b3c440 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf404124c p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0255f9b9 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x09137d78 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x287c5db1 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x40b04076 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x41689173 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x452fb33a lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x49d7f28e lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4a2d4c55 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x57122b7b lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xefc2e56f iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf13f6bef iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf1e3c5d5 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x185698f4 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x62975589 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6f0b2a82 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x87bb34f5 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9a215a8f p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa0af0839 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe3c3b3b5 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe4a8ed3c p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xeace0efb p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x107f2825 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3b7a89c6 lbs_start_card EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x836d2c38 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa67e08b8 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa6806641 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa8646b65 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xadd35c35 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xce1270fb lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fef360c lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8d58bc7e lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x97ba5744 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x97e9450a lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9bf6e471 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa061d833 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xaa30217d lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb14c017a lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc7ace07e lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc80d3184 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd0e87878 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdac050f7 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe16a2656 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf1543a92 __lbs_cmd EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf6da3853 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0536a579 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0e003ae5 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x198ff333 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x44c3c753 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x57313e97 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9ba77d23 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xae6df093 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb7976f17 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x079281e7 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x90b3f18f lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x91ac3aef lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9a8aca76 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xabbeea31 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xad55df53 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb1dee595 __lbtf_cmd EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0159acee mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x040c423e mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x08feaa5e mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0ad6c9d9 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0f4fd7c9 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x109355c9 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x20d16f83 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x439609a6 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4af191b8 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x50d46bd9 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6f6d0d16 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6fbf3c8b mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x70aaf259 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x72b9f147 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x80c3d3f8 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8cebe046 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x92a9bbb6 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9b48b9d9 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9c07ece0 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa112d88a mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaf7d72f0 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xba050521 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbe15e05d mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd0d2e380 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0c9d95a6 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0eb464c8 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1e3c508e mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2133c432 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x38492466 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4179ae41 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x470cb27a mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x47ed5dc3 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5a0ebcdb mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5bfd26a6 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x61720a09 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6e883caf _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8ac51c11 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x96126cf4 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x984299f0 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9fde71d3 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb3d017fd mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcb01ee86 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcd977076 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4653488 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 0xe92d27ca mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0078283b mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03992366 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08a97cfd mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c832fef mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0d78dd73 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0da1640c mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0db1a303 mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ed59878 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x114914f4 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xde7645d2 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe327bc9e mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe3e944c1 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf6110b15 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x00e308d7 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0294c197 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07f8efe3 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0b9c153b __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c5a946f __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0e96c198 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 0x191915b2 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x19ff28ad mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b103a63 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b11c07b mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1e282331 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c49b660 mt76_get_min_avg_rssi EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1f9c5a6c mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x211223db mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x29be484f mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f2be1ad mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x34e7d60f ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39286872 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3c6cb044 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d2c2bfd mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1fe1889e mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x25ee09fd mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a0361c3 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2b157d19 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x309a7afb mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x31b744fc __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x33275dd4 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x363828bf mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3675c2c8 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d758769 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3fa71159 mt76_tx_status_lock EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41387653 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4523856e mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x45d23006 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x48deda4f mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4c78b008 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x42934735 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x448fd359 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x45cd5499 mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x49152b8f __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a12c2e2 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a5b7872 mt76_get_survey EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d5bb0c8 __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x500991f0 mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5095d0dd mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x50d3f66a __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54f84900 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x57be0816 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d91a920 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5e542430 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5fcd02b1 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x61c836ac mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66a7fcb5 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x68447036 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x692908a4 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x69ed0726 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b4f4660 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d9877ea mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x71b268ec mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x739a2f51 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x75ec3358 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x782f52a4 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7e54baf1 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7e66079a mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4fc9c4c7 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5342c2e5 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x585ec077 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5f2ea605 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6060ffbd mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x62982e45 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x64539537 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66ac112d ____mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66ce8cac mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6be51528 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6c077d62 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6cb2d9a0 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x715ed03d mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77644d36 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77d3b520 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b5b2657 mt76_wake_tx_queue EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8448c94c mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8641cce0 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x89de9060 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9274c811 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x98e441b5 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x82327020 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x842002ba mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8cc871c7 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x948eb9e3 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9675aa6a mt76_register_debugfs_fops EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a5471af mt76_sar_capa -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9e72e741 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9f22bf33 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9fb38e13 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa32ea624 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa3fbefdf mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa41626c6 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6efbf85 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb2890c60 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb496a172 mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb5245d3e mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb561914c mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb725877 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbdcac520 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a86f063 mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c5a2952 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa150660a mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab4e4066 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xabc0ea0f mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xad19954d mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb05ab401 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb28622cc mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb4adbb90 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb6969c13 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb81c3e48 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbba58c23 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbf77ea04 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc00d427e mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6018d1a mt76_tx_status_skb_add EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6315d8e __SCK__tp_func_mac_txdone EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc9708c54 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcdaf9660 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd3ea76aa mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd75fb0d7 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda6d70c2 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdd509e47 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe227c8ef mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc7a7d2f3 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcb059204 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd1587eb4 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd5c63b90 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd6c25a04 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd99cea0a mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdbbad6b6 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdc508bc9 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdcf80e70 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdee37ad7 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe073e2b9 mt76_rx_poll_complete EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe74a208c mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xebd189e2 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf105ef5c mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf25e5415 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff84785b mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x07f9e850 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x098edfd9 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1d6ffa54 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1fb6c70b mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x296f8ada mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2d143af7 mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x31a9a3e4 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x438a8bac mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x47f30ab8 mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x57db2d53 mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x57e701b8 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5e4ebd56 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x608c5fde mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x739f1ae8 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x77de4095 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7b03bd87 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7f6d1e8a mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8221365a mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x83e171bf mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x864a3384 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x89f80be2 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe4271a70 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe4737cc9 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeda0ab72 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf183a055 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf3bd20a3 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf6518917 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x090cd51c mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0e51f8a0 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x120fb5a2 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x151f5a28 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x170d0e2c mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1e221de0 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4239cb63 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4e9ae961 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5c67a2ec mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5def1a02 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x60cb3740 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x614c5da4 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x64f59472 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6675bab3 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6824decf mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6a129268 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6cdeaddf mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6d3b6b38 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x71f9ed20 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x729ca083 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x746df252 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7e0f9a8b mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x860cdefd mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x87137a37 mt76_connac_mcu_sta_update_hdr_trans 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 0x977cb89a mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa5ea0770 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa89d548c mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa9b7c382 mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb4e2ebae mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb7e10cd9 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb9b7897f mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc2fd78a5 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc9c6149f mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcc51f873 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd2f25e8a mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd4e9ee18 mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd6658d61 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd8619b1f mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xde9dff3d mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe073b6d6 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe2a82589 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf3957d89 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf6423b09 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf7a8f70b mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf974b2e9 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfd891aff mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x64fec006 mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xac973d59 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe862d74a mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x56485025 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x99cc5195 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9cddcd0f mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa2cd2ae8 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd89a6029 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xdfe46173 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe885a9d5 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf2b586d5 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xfc0f33a3 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x032da417 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x077b7323 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x08a6a44e mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0bd7dabc mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0d441429 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1bfd7b4a mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x35c0de6d mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3df5e39d mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x46fe7494 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5e792092 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6f26df21 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x70b0afde mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x797e3f74 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7bdab70f mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7cdb8c55 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8405c662 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x86ae051b mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x89d3aae6 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8bc34054 mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9f47132e mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa6b51bc4 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb2bcb01b mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc21a7c55 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc25cf4bd mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcc314ca6 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd18399a7 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe97f67ad mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf4afc546 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfe60f59d mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x5368dc8e mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x90e84560 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x98f16188 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x99c92935 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa114dcdd mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa2ad3cf3 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa66c8fc5 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xad6e081c mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbe8c2559 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc173021a mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc4e6112e mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xce4264d5 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xce96f842 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdcd6695a mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdf333c5a mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe146d690 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe2adf91e mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe3f8d375 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe5962ca1 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfcffed05 mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x18404834 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2f73d4ee mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3dcd0a51 mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x05bb4f06 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x113f347d mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x33f1ce8c mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x699e42a9 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x92dccad9 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xaf8a1ee3 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb7447af1 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb7d44362 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc35a2ae9 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x10f06280 mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x15db4fb0 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x294f8c73 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2f0a3131 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2f69588e mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x317a1d9a mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3957fb46 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x46c23eb7 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5a6c6969 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5be470a1 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x620c90ae mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x62ef9ea7 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x64b175b2 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6cb2722f mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6d1b03e8 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x778315b3 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7b5db350 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fb999c1 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x91539ac8 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa0924577 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb34b76d5 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcac30dbd mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd5ef2c08 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdd99b8e3 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe3b27581 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe876dfe3 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe8fa981b mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf047c0bf mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf3180fb0 mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x762e4c2d 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 0x19336d73 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x2393936d mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x9fbd9e8d mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xfcb72809 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5a2d51b7 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9c784156 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc743eaba mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe30d7634 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf0974433 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf1a1a1ef mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00e56ce9 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1bfb35e6 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x297befb7 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x38217198 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x8c6e49c7 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2bdeedf0 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x36e15601 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x40b76648 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x42f2bd93 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x60514508 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x73e9a495 mt76x0_init_hardware 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 0x0a519c0e mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0b9284c6 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0bf2ce42 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x09c76fae 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 0x0fafe305 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x11a4508f mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x183e308d mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1f4077ea mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1f7df01b mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x22da79a5 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x262ff2bf mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2868a9b1 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2eb7b7eb mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x32404c5a mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35863bb3 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x15fad9b8 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1749ea29 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x181ca70c mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1956dd94 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1ca0763d mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x27b9de45 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x29589e1e mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x29df76ab mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x331001bc mt76x02_add_interface 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 0x3f8433aa mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x41b05bce mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x41f86a97 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4d6ae749 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x535a9dd4 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5774f09c mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3d042682 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3da0e850 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x41ed90e3 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4348e992 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43c7b3bc mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x467bee01 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x471f6e3b mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4ccf7208 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x51282470 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x51bd1334 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x54c6ab95 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x55e96dc7 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x56dd6458 mt76x02_phy_set_bw EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5cbb2cd4 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x603cff3e mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x689aa55b mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x68be3b2c mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6be9ad69 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6ea5f05a mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6ec3000c mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6f0600d7 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7350cf99 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x74ffb037 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7604155c mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x76c6ffb9 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7a2f9fd9 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7e733093 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8d5338d1 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x633b01ba mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x648fdf27 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6575f1e3 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x66fedbdf mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6e18d3b7 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x715813e8 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x71ec4802 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7496dc8b mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79515ba9 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7c154c20 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8455a2c7 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a834c10 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8b803079 mt76x02_config_mac_addr_list EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x92fee320 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa0db8829 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa5b81131 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb0ef2680 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb3db4599 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb5194cd3 mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb59c5675 mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb6eb4c88 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb701398f mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb8a4aad9 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbaba53b1 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc5ce9fb8 mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc9305a6e mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc56e47e mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd4eae86c mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd53ceb63 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb1dcd07 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde11d7b4 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe309951c mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe500e0be mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe54dc511 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe5ed8a6a mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe6fd159a mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeaa591a1 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xec659303 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf09841a4 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf10d413e mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfcf9ce3b mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfcfe6647 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xff38bf7b mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x215a569f mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x49039a09 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4ae46d9d mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x500dc3b3 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x73129661 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7b737e11 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc6d1f0aa mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe60f4783 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0ba2931b mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0e6ab277 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x185a9db6 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x299e7d96 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2db83401 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x42264221 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x439f875e mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5285d0ee mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x56c85e2e mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x66c03095 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x72bedc45 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7c3071d3 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x92dc64bb mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x93b62d09 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x965a2bae mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x970e2d4c mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9a8aaf54 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xae73f176 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc004557e mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x464c9765 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x46e35cc2 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x6170b838 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x997091d9 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xbf5595a0 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xeb2a9d0a wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xee2e7eea chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x01639501 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x083938c3 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9224a30b mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x95c7f29e mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b10346b mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa69a7622 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa7459541 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa7db91ca mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaeda10c5 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb383f1ed mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb6853d2c mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb6894ea2 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb8824a58 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbc49bfbf mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc3ab0fee mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc69d46db mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc7d760d4 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd3a5347 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcdbd5ddb mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcf037d8d mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd0904780 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd3015f82 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd4098f93 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd8d6dfcc mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb023799 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdef5c433 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe1390da7 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe6184914 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe975c7fc mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xed406f5e mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf7e86b2b mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf88271f0 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x2616f378 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x2fdd347e mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3719de0d mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3d8dcf3c mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4ba17038 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x97ab6e68 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbe26c219 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf0170d30 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x116a6032 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x129164ba mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1482d679 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x15ebb08d mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1a798353 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x312868d1 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x35481a71 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x391b5fc3 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x408dbffb mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x580adbe2 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x753d353e mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x855e3a41 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9981b635 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xaf09aab8 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd7f1ffd0 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe2a8cacc mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe554455c mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe8875451 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf0e08481 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1b6f200b chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2f10e69b wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3a90c33c wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3b76c38f host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x85ca32b2 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb0402a80 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xd37e9c76 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x23f1af6e 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 0x6c7bee4e qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x72b58aaf qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9142df6a qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xf3094208 qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x02a3d3ca rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0aa312e6 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0b6251bd rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1239dda7 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1405c30b rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1b356a6b rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x241f1f84 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2d4eceb7 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x327114d0 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3279f039 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x32c58316 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x36be6ccc rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x446d3c3f rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4a0de9ce rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x58c05348 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5ca8df2d rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6044f1f5 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x63192a53 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x661588a8 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6adcf358 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x706d5e7d rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fda2351 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x85db070d rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b65a554 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8bc8fa7f rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e3b2000 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x91b9a4e1 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x948c62e3 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9c1667e4 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa8091d31 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaf605a68 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbf02e476 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbf8d0e8b rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd547b7df rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdc3a5708 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdd0da4a4 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe10f3b6d rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe1a01b1d rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe55fd01a rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe7ff2dc0 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xed3f2b0b rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf6e1bb1b rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf700b945 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf7a5389d rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x08891478 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x86cbb19f qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa44a70e0 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xad7adb9c qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc2cef22e qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xf0603f82 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0408c71c rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0a331824 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x11735dbb rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1e7d72a7 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f7917a2 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x235042a2 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x28120138 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x282c0c9b rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x286c5c05 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2f69a0cb rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x309c9ca0 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3470cd47 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3509794f rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x35151ee0 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3a662e33 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3ce7c78c rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3f4c00ee rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4e75e6f4 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x500e6dda rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x56bb6c81 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x669f1dd0 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x75d13229 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7c2f6e1e rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7c3634d3 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x86a6e914 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9948591f rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa6e69037 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xab5c0e02 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb84c8f49 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc21ee4d0 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc52d1fb9 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc5e4a8e5 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc78cf97f rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd63a7b36 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd6c08757 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd6cc6d66 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd96b67bc rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xddc00f24 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe5bf0aba rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeb40a39f rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xee2a4e44 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf26e036d rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf75d1fc3 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf8d60825 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1b82f12b rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x22dd585f rt2800mmio_queue_init EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x390cc3da 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 0x444849f1 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x428edb5c rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x47cc2b75 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4feca92a rt2800mmio_flush_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5f1d0f3e rt2800mmio_init_registers EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x752879b8 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x78a1c25e rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7acfef8c rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x867989d2 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x89624cd8 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6aad6586 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x74307e5f 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 0x98f7a9df rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x98bd3754 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9bacaa0b rt2800mmio_write_tx_desc EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb0bce325 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd0e7da21 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe80295d1 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xeb75a2f4 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xee45a92b rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf05774c5 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0b92c2a3 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0e0aaa23 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x11a69da3 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1263f735 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1495a545 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1863dc0d rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1a523c2a rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1a9dcc73 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2a6727f2 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x31682650 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x31e59d89 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3a4a2ec3 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3d279309 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x47818c8c rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x51de398f rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5736c60a rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5e9d50a4 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6227a86a rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x62ed9e81 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x64105f9a rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x64b10109 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6a4da3a1 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6b5665d9 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x72ae42f6 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7f46ee88 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x83ebc138 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8734925e rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8a43bc84 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x92980833 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x93834eb7 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9f20c104 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xad124fbb rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaeff979b rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb4809403 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb4ac9e43 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb74fe4c4 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbb2a9ddd rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc019e408 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc8802c49 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcadcfe68 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd1b7cd5b rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe0c96a4f rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe8117d94 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xec8cadab rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf3c8d4e0 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfd60a8c1 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfedd3b3e rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x1b52d827 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x24454826 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x4f600924 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x8d1c65a7 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xdf31cc98 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x0952c4c9 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x2ccaa088 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x8bfcb9fd rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1a864d07 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x455fbafe rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x48fef687 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x617575ac rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x619f45ca rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x813cfc38 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x82cd108d rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8e49c487 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb6eb42ae rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc9768a55 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc9bf6944 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd578c77c rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdb43fc55 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdd6890db rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe5d108d3 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf00e9a36 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7a843e6e rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9c91e245 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcf27bcf3 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf6c4de90 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x13b7f999 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2158d206 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2347b0e4 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2e7e22dd rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x330db569 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3470af38 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3844a198 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3c684064 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3d4b6155 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa38b3f86 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xaf714a81 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdd728e1a rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xde19f520 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe1e63962 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf98848d7 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfd37d88e rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x005597c2 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x00825460 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0203de21 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0c11195e rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x10badd61 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x11f93c08 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x16487ef1 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x16d9033f rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x196be825 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1c71e6d4 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1e5c5ee0 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2861d7be rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2b6c76e4 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2bae37fa rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x392b1e3b rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4113a84b rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x43aee314 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x48a4d7bc rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4b6f0cb5 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4d742d1c rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x534cb662 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x55ef3f02 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5c819d6e rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5caf4184 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5ed0def1 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x656a625f rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6808bcf8 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6f07ec22 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x721ffda9 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x74409b48 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x769c4b66 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7e23a856 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x97457d31 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9821e048 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9cc7613d rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9ea10e31 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xac226b14 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xad18e9f5 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaded4b88 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcb3dd06b rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xda6e9871 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xde3a1f53 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe23dc37f rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xec516c70 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf10ac7e4 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfcc8985a rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xffad04a1 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x4082f965 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7f67e5ba rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc9277eb0 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xdf05be48 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf21172c9 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xac5c4cb9 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xd7287773 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xe75c968d rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0029518d rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x00394274 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0ab81dbd rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x34fdbfa0 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3de2ff61 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4ab33704 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x70888b71 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x84780b21 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x84c5dbc1 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x99b50992 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa67e0ab4 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb8134cf0 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbb8acea3 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc245207a rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe10a070a rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfeb5b678 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b532cc4 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1c288e94 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7254fd82 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa10ea655 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x09d81477 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0b271847 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0f08f4cb rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x167ee1b7 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x20603e26 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2632a0fa rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x270ca3f7 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x325376b7 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x34e3f6f8 rtl8723_fw_free_to_go EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x52a43fa2 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5d707e86 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5f5a5055 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7b2a07b0 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x82dab837 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x85ce5df5 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x894943b0 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x447a1358 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4cd7a3fe rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4d13a2e2 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x53673a2d rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5d87c99d rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6346adf6 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x637a0c75 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x817b2d02 rtl8723_phy_path_a_fill_iqk_matrix EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x96d7276a rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9e1f887d rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb30666b3 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb4e709e8 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc02dcb5e rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcf928832 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd0e2be83 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xda127372 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xde800dfe rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x021e0eaa rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x070ce7e9 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ab01843 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0fee209b rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11871473 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1db10575 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x263e206c rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8d70f0bd rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8e09af01 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x96cbfed8 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xabce8559 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb68dcdf9 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd5cc9a37 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7d48566 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf20f24bd rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ff3434c rtl_deinit_core EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29b96918 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29c5154f rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e1b2b9b rtl_fw_block_write EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37b993b4 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x40c75009 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b88086f rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4dc6a897 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x64a6f095 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6660e249 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6d19feb2 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6d7912c4 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x712e3ebe rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x787d99c2 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x842da2b6 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90639595 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x43c1552b rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46a9e8a2 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71113407 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x73d0a9c5 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7642502a rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a6f7471 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87126461 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x89b42e06 rtl_lps_leave EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9eabd552 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9278e98 rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd59a3573 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdec99f38 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe33f6d48 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed430743 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8376066 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa39496cd rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa083e34 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab38d6f3 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaba0b6a8 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb4e57976 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb888eeca read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc679c3e rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc8b21c55 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd6f965a rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf07d781 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8478aef rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef1c7623 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0f3ae80 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf4233733 rtl_init_core EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x07498605 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 0x14ee866e rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6ec46cdb rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x2472750a rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6002272d rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x962ebfa9 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc37c41fb rsi_91x_deinit EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd47d67e9 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdbc3d3d9 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe6318878 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x0c9f98b6 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x3b3cfb8e cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x8043346d cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xe0c40c40 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x0430a8ba wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x9fac3015 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xacc5394c wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0438df1d wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x04ad9b6b wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x251df8f4 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x36e2cbff cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xa8312bc5 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xb4ea639c cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x14c88670 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb6a7cb30 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xe662faae wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00cad4b5 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x01cc27b7 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x03821174 wl1271_acx_sleep_auth EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0bfb4967 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b2bf1c8 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b3a9a7f wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1f42e186 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x12ead8b2 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x16119810 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x17215db4 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ef59251 wlcore_alloc_hw EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x204c3c4d wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x252b15d4 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2749512f wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x304381ea wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a2ec79a wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4c23712c wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x55331313 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x56f4db1b wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5732d181 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6891f2b9 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x69199bc3 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x69ebf0bd wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x71611521 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x768a71f9 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x770dd8bb wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7f3111e7 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8b8ac9c3 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8ec52438 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x977e1270 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9bf98348 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9e5952b2 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa3034c4b wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4dd0c70 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa78db967 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbc72e5c2 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbd8707e8 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x24383865 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x280710d4 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2812b6de wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2871823a wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x290ba386 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e7db70f wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x500e6b38 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x569c5e30 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x57e28746 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d42c089 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7da4f4bf wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8aa9e6ee wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9564dd63 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9767b207 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa2b80786 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4184d75 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa59f540d wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xac49c2c8 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5112097 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5e97c5c wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbb950d55 wlcore_enable_interrupts EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1db71fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcb86074f wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcc91f676 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd7df374c wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd8e25758 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xde2b68f7 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe3a4c883 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe3c7d2e0 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf096f774 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf7300520 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfb72f3ec wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xff1734d8 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc97a30df wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcde2ab66 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xceb35c73 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdc565fda wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe8314ec9 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeb7cf840 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xec729776 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xecbf7a89 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee361628 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf037b3b1 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf3167985 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf51dc496 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf863bf50 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf96d3d8f wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfdbacbc3 wlcore_probe EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x85035540 nfcmrvl_nci_recv_frame EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa2e9f218 nfcmrvl_nci_unregister_dev EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa7b82321 nfcmrvl_parse_dt EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb4061cc9 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x01cacef4 pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x06bd4aff pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1c7edf24 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x4489a541 pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x4b4d2dee pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xa9f58e5c pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdcc855e0 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x2499b43f pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x4e9eeb81 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x75eb25b8 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8b686607 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc0c8efa1 pn533_finalize_setup EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdfcf8b2f pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xfe25e4b7 pn53x_common_init EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x088e2ac5 st_nci_hci_event_received EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1a055e08 st_nci_probe EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2c89ba46 st_nci_enable_se @@ -15324,55 +15331,55 @@ EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0196f6a8 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x03590894 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x07c410df nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x09d108b6 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0fe66fd9 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0276b022 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x042c28c1 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x08aecade nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0930bcd9 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0bbf229b nvme_cleanup_cmd EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x15aa33d1 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x16eb77cd nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x17ad128d nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x25e5b47c nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27eb2d8e nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x29046a06 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x30948d3c nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x461046ac nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2c666f7c nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x326b4efe nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x33519cb2 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x39f2fb7f nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x44e376fc nvme_init_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4dc9ff34 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x53740aa7 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x56f28e99 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x576b680b nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5c5d1639 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5d17b60a nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x61ac0aff nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4bc0fed3 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x53951438 nvme_complete_rq EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x61ed478d __traceiter_nvme_sq EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7ff0f4e1 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x70c0972d nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x76a5b965 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x78cf4a3f nvme_wait_reset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x86decfb1 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x873dc7e1 nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8aa302bd nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x83dd9a58 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8850263e nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x889dd8e2 nvme_fail_nonready_command EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ab19397 nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x90f8ecf0 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x935f32fb nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9835078e nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa09abda5 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa578ce37 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa680b980 nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb0f9270f nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb5c0c805 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc153b0db nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc28564fb nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ecc3d42 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8f8fd01d nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8fff6e1a nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa387bff1 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa5412146 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa7fb4522 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb0a52670 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb1036af9 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb6d85865 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbc92df81 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbf54726b nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc88a071c nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcbfab261 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd38d1bee nvme_stop_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd4d53d98 nvme_wait_freeze EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdc655492 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58ea9fd nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdbdaf1a3 nvme_kill_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdcafb566 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe90ecd21 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf49be878 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfbcde98b nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfe324493 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe617e83f nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe86b78cc nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xefef6305 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf00d6fce nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfb774d34 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfd0ba654 nvme_wait_freeze EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x02837ee4 nvmf_connect_admin_queue EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0e1f31fe nvmf_free_options EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x19cee104 nvmf_connect_io_queue @@ -15385,24 +15392,24 @@ EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdc2bfc43 nvmf_reg_read32 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf4615ffb nvmf_unregister_transport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf5edd996 nvmf_should_reconnect EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x17393512 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 0xb388f1d4 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 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0913cb28 nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x11200799 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2c4d1783 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x38209349 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1e6f07f5 nvmet_req_complete EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x45c359c2 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x859e7b24 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x94048cfa nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa8d8b4c8 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xab0a40b5 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc29d5bc2 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xee447565 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x449d22c9 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x58c273a1 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x79025639 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7d1e3bed nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8fcb0b49 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xafce31cc nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb6f18d94 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc7e40eac nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd510dbfd nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf6708640 nvmet_check_transfer_len EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0e3c043d nvmet_fc_rcv_ls_req EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport @@ -15431,8 +15438,8 @@ EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_compara EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x93533fd5 mcp23x17_regmap EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xa3289b3a mcp23x08_regmap EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xc95186ba mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x531f41bd cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xde7be286 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x193e0d28 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xd289ec15 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 0x3bc08a5f devm_reboot_mode_unregister @@ -15442,9 +15449,9 @@ EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xe6dcc7fc reboot_mode_unregi EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x0f9da69d bq27xxx_battery_update EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x5d39706c bq27xxx_battery_setup EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x6a1c116b bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xabb29c79 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xbca39c0e pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xd50a0179 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x7c0bb213 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x9be00a65 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xb8c79e73 pcf50633_mbc_usb_curlim_set EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x4097541b ptp_qoriq_gettime EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x4faf8614 ptp_qoriq_init @@ -15455,22 +15462,22 @@ EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x72e9e682 ptp_qoriq_adjfine EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xa087a8ef ptp_qoriq_settime EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xe5fa072a ptp_qoriq_free EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x210c40b6 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3f6949cd mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7a453207 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x28c7150c mc13xxx_parse_regulators_dt EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x8702fb31 mc13xxx_fixed_regulator_ops EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa0c215cc mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x06f111c2 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5b45489f wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x83c49a8c wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa0f40d4b wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb44b7615 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb5866385 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf3d74439 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x046037d7 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x10d72190 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x56c9d262 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xdd64b522 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf917525a wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfbd10b7d wm8350_dcdc25_set_mode EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x726eb463 wm8400_register_regulator EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x25904e12 scp_get_venc_hw_capa EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x471664d5 scp_get_rproc EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x5fed0c48 scp_get_device -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x769df8ca scp_get EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xa96510b6 scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xb53a629a scp_get EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xb8f5c915 scp_put EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xb968a47e scp_mapping_dm_addr EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned @@ -15491,91 +15498,91 @@ EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc6c7e6dc qcom_add_glink_subd EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0xd9cfbf16 qcom_pil_info_store EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x13b43edd qcom_q6v5_unprepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x3747b52e qcom_q6v5_init EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x844f6c09 qcom_q6v5_request_stop EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x84e5c281 qcom_q6v5_prepare EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xa00f486a qcom_q6v5_wait_for_start EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xc5d7e8dd qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xecc35acd qcom_q6v5_init EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x8e40526d qcom_add_sysmon_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x2ceb076c 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 0xaf83971c mtk_rpmsg_create_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xaf6dcbbb 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 0x476114b5 qcom_glink_smem_register EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister -EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x2a04b5d4 ds1685_rtc_poweroff -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x014d9cce cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02e9a19e cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x13e8fc05 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x161e9f86 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1be59ffd cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e966b1f cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x22b4215d cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x23178d2c cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2ac0fe23 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a2db1e6 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3df6d6de cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x43c6b8a1 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4463c26f cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x49cfbb0c cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4cdf13c0 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ecc8c09 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5bd5d9fb cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60f8034e cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x617f454e cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x69cca4e1 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6fe67e06 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74093610 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7929d23a cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7cd60966 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ed1265a cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x896be473 ds1685_rtc_poweroff +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0538ba1c cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x074bd454 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x08d13669 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a2d0e28 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1437bb36 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1ad6db55 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x24ad1c77 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x313397f9 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x31a2f159 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x31f88a7a cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39602d9b cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e411bd1 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ea3a072 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5514f65e cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x61bbe76b cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x706104e9 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7178e005 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x723474cf cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x767c7e57 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7803fcfc cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d8b8baa cxgbi_create_conn EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x83623eb4 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x84b020c9 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x858d4433 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x87c18563 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8ab5adff cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8e7b89f2 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8ebad982 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x946daf84 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95ee19fa cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9f9e864e cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa48f16ce cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa66298e8 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbf76a13d cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf231a24 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf2ce249 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe276abe2 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe998fc2b cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x83617034 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x91208763 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9d51bc58 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9dd5092f cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ef6187b cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa31f58e0 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa33da27c cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc41c9fa4 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc59fe3b0 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc7051c11 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc89851ab cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd2172e3 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe24ff938 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe4655ffc cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe478b195 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe6cac2dd cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe8365ee9 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeb08597f cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec1a9082 cxgbi_destroy_session EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf0ca4d3e cxgbi_sock_established EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf76db0d0 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfe85d9bc cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x01b8c736 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x02e88f7a __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1de33ee0 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3a9b66c5 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x40c3cce4 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x45a52f66 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5779248e fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x586a2570 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5a0422c7 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x66378c66 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7054fcb2 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x74abd35a fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa15a5587 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf885dfa3 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfcc8864c cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfcf268c5 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfeafc8c8 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x05f57501 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x07131489 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x19f33f94 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1a3f4778 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1fc8ed9b fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x23c3a8d4 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x49ece9bd fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x518b3f97 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5cc13643 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x64e73986 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x724484d0 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8576f8ad fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8e29d6fd fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9069e044 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa359faa8 fcoe_validate_vport_create EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbc153b03 fcoe_start_io EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd58012ae fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xebe75c84 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdb192345 fcoe_fc_crc EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x5406f0a4 fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xc2be10fa fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x24351053 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x5e7cf80e 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 @@ -15584,210 +15591,210 @@ EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa0c21827 iscsi_boot_create_ks 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 0xaf06e899 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0a1c8061 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ff5647a __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12ae44e4 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0444b1e2 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x063ad872 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b53c0e7 iscsi_target_alloc EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x174fbd4b iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1870fdb6 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d2b7c39 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d9967ba iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2198c54f iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x24c37bba iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c6c2a79 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2f878065 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x381bd779 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14dd332e iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19d5fece iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1f8ae978 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2667d832 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2dd5a95c iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2fff959b iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b4ba805 iscsi_suspend_tx EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3eb67d07 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x436a2b0e iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x44f3c6e7 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45fbbcbf iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49c44399 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x51a87470 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5501fa26 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x56eda189 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57090c3e iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a70e852 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5fe4b870 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6260ccda iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x637d08f6 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66bc0f50 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x72fc7b19 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e46e019 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x812a9ea9 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ceeb8c0 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ed16259 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x409bf2eb iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40ddc24d iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4155835a iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x43f61bd2 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x44d42e2b iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d8f2963 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x568417a5 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5fe0f105 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69c3f4ca iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d79c6a8 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e9b895d iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6ecdfd93 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7052945d iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74028dc8 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78b1b995 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b062ae5 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b742fa2 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c4af621 iscsi_host_add EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93dc1f59 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x954eb4f5 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x96645373 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c6b11fc iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa266956b iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa8ac1652 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xad086d4d iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf819983 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb250c1d2 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb94cfee6 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xba4220dc iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc33789b2 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc34cd9f4 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6a255ca iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd959a5c9 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe1a5d109 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d9fb6bb iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f176063 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9dab0756 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9ee3f0ff iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9fa9ec22 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaecaac2c iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb11abe3b iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb819e2ec iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8e04e7 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc1ca3285 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc9068a7c iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc688d56 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xccbe1856 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd08f1a68 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7be8aee iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe2d049ea iscsi_conn_send_pdu EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4b11fc5 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb8d4234 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff07d8ae iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x012ded9d iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x07ebcfbf iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0a7e02ed iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0d1cb8d7 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1c7a04a4 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1df2a531 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4718d1c7 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x56184650 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x599b2b8a iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5f9f708d iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x88e03c3f iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8e550869 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa8fec90f iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd0e1e9a8 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdc69ec66 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe3bfb96c iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe6de899d iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc9f0fc6 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe422bda iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x035355dd iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1360ce84 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x15d51ef6 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x16d0d999 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x27a849b2 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x46d4fa27 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x627154f5 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x638fd01f iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x672b7e98 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x682fb3f4 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x70cce5ee iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7ad58dc8 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9f46f0ad iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc1d4e918 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc41cc3ea iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc52e9051 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc5d1584f iscsi_tcp_task_init EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x03581e43 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0612d8bb sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x066d2c8a sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0df373b5 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0ae62824 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0ff0aaea sas_target_alloc EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x14f38e97 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x15797a5e sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x32d88017 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3ac7a3c7 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x484d3d6a sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x543ea2d9 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x61ce9fca sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x62439217 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x76558da7 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7859bd3f sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x79e54ec9 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b45c3f3 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7bb76fa5 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7bdcc9b8 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x990e322b sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa012c59f sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb5e801f7 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb95211ef sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc133f53a sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd663ddf1 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdfe21feb sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe3c795a5 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe4944cf1 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x29e83b69 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2422d7a6 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3eeb0801 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x40307e70 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4338b1e5 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x44878cff sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x515af791 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x56370482 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x62c3e75c sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6a8d4517 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7370c7b1 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x78c3e0e9 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8131acc0 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8140d395 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xabe6063a sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaff7810d sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb9227f5e sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc73fd4e1 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcb1dcb8e sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xda00a8ce sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdb7e1e8b sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeba0e3bf sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf2707f60 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfa7d81f4 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x6a04d095 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 0x0ab3e52a iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x18366ca8 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19553102 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x25b9d035 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a2c1240 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15da45b1 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1d1b5a97 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1d8e0f98 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20795d7a iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2119cc96 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22176e24 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2334dfd8 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24379ccb iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x25b95e52 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2605754a iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x282ef671 iscsi_block_scsi_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a8527a3 __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31ae40f1 iscsi_block_scsi_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x338f0d3f __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a75168b __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b2b536d iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e6bfe8d iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x449b6469 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x456a84df iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fe4ad5c iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x37985568 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3dfbc0b1 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f6928d6 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48a653af iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52021966 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52115400 __traceiter_iscsi_dbg_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ce3b021 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e77714d iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x62b37072 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6912812b iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x691bdb02 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x595e6a2f iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64b1ee7a iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6774a79b iscsi_unregister_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d58f7dc iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f9c21a0 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x700e99ee iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e4750da iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f98945b iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70799301 iscsi_unblock_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75834390 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7846ff16 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72b68827 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x793fcd94 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c33658f iscsi_create_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ced5abd __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f96365a iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ef13875 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x81220d23 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 0x84a005f1 iscsi_get_router_state_name EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a6aac9e iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b4b841d iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c092866 __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ece8369 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9050a780 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a92a0d1 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a93c49b __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9addf0f7 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9dae402a iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa08bf494 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7fbe614 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa806d978 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8129457 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x99a7bc9d iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab239817 __traceiter_iscsi_dbg_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xafff2a9d iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0d528e5 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb13cc7a1 iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5479eec iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xada67cae iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae8d26b6 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7cd129b iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8f8bed8 iscsi_conn_login_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd0db1c1d iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xddf0855c iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2ab813c iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4ac8c40 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbff52c2b iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6c10c75 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc70c400d iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc9f86c95 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcbe96e79 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf20a0c3 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5b984d0 iscsi_get_port_state_name EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe7959b44 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8a7e1df __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xec8ed43d iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf65ce45c iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7cec945 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x8ce6ebae sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9efc345e sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xdd60b296 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe166f757 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee5fa194 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef36e6a0 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf20d955d __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf267456a iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf757dbe5 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9e53890 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x78ee4e7b sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xab2605d5 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd37bd18f sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf8b519f2 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0575cf26 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 0x93fd5973 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 0x00d343f4 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x0495cf9b srp_rport_add EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x30a5f60d srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x49425234 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa07efcc4 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xcee27a25 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x983ab2cf srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xcc618c0d srp_release_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd51694b3 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe2022c08 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2a4cd7b8 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x31fe9265 ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3cebf21d ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4b6dba06 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4f8c159c ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6d0c2070 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6e838731 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x70b1f58b ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x72091e37 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x07f5a67f ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0b7ab781 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x17248bbd ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1bdf0b51 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3c949323 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x49596134 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x501e85e3 ufshcd_init EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x74e79bd8 ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8d45ebc3 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x92d009f7 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9bda2198 ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xaf02d86c ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc9acc105 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd6fdb86a ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xeafc575b ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xee5e7219 ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xeefad2f4 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf2a45d37 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x743c760d ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8a2ce485 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xba0771d1 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xbd74a83c ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc98759f6 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xcc684fb5 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xcef8ea80 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd76b3d2d ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe487e0b5 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe52e2dbc ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe5477095 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xee5543a4 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf63c7dcb ufshcd_hold EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd4d3fe18 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xfe899485 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc4bb8c1e ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xda55d171 ufshcd_pltfrm_init EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x343d8f37 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x38c02b05 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x6b5517a1 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x96eb8381 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x9ac9e6d3 siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xe77d68a2 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x0102b8b3 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x23d9bdc4 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x43f0f1e6 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x79489a37 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x9a6927af siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb1c34f26 siox_device_connected EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x081a0ac7 slim_get_device EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0a9d6d85 slim_ctrl_clk_pause EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x164da213 slimbus_bus @@ -15855,24 +15862,24 @@ EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xefb513ee dw_spi_suspend_host EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x6f9352c7 spi_test_run_tests EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x7eb7898d spi_test_run_test EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x92bf7c85 spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x00c12c5a spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x068050bf spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0e073dcf spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x19756ae3 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1f8790d5 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4450f73f spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5bcce657 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x840b5c67 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8f1b4bf5 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb2a6f98c spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xba86d4b0 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbd3514ec spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc4e3fda3 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc6d35ba8 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcf090393 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd12ab99f spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd815651e spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe9b3bc15 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x055dd360 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x05b05d73 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2b97ae84 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x328101cb spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x41bcd2cb spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x51d82c7c spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x527e1cc1 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x62561074 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8e27ddf3 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x97b76ae1 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9974ef09 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9cff68f1 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa0e06dc7 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc0a8c08d spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc43a1c99 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd9a92e28 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe58ba441 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe79d184f spmi_device_add EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xfa9ac943 ssb_pmu_spuravoid_pllupdate EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x003ee549 anybuss_read_output EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x03fabb1e anybuss_start_init @@ -15930,6 +15937,7 @@ EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xa9ee4d90 gb_gbphy_deregist EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x136abff6 gb_spilib_master_exit EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xed0525a4 gb_spilib_master_init EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x91eb012d adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0x9d9646f5 sp8870_attach EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0442f581 imx_media_add_of_subdevs EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x07de9dbc imx_media_find_subdev_by_fwnode EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x237762ba imx_media_capture_device_unregister @@ -15990,10 +15998,10 @@ EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf6bbab1e codec_ EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x13c84b3b nvec_register_notifier EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x1aeef1e3 nvec_unregister_notifier EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x78295dfb nvec_msg_free -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x25025510 target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x849a14e7 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xbad29e32 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xfa78574c target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x04f23b64 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x41b1c133 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5039da63 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xfc8b49b9 target_submit_prep EXPORT_SYMBOL_GPL drivers/tee/tee 0x02e5134b tee_shm_free EXPORT_SYMBOL_GPL drivers/tee/tee 0x05a325b0 tee_client_get_version EXPORT_SYMBOL_GPL drivers/tee/tee 0x16eb2137 tee_client_close_context @@ -16063,20 +16071,21 @@ EXPORT_SYMBOL_GPL drivers/uio/uio 0x2b7c175d uio_unregister_device EXPORT_SYMBOL_GPL drivers/uio/uio 0x49103ad9 __devm_uio_register_device EXPORT_SYMBOL_GPL drivers/uio/uio 0x624c9796 uio_event_notify EXPORT_SYMBOL_GPL drivers/uio/uio 0x984d0be2 __uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x971b6c44 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x9fe3d3ba usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x30b0b101 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x770a6f7b usbatm_usb_disconnect EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0e07be77 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1037644e cdns_set_active +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x282135fa cdns_init EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x3bcd88f6 cdns_set_vbus EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x593b680d cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7f9359a7 cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x88358255 cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd3d05f82 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd6a3df58 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xaa35909c cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd4c1454a cdns_remove EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe7ab077a cdns_power_is_lost EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe8b3d5a8 cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x20809062 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5b5751d9 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x6409e5c2 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf552435e cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x237510d5 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xec99b229 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xf71b2d3c ci_hdrc_add_device EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xf8bcc26a hw_phymode_configure EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x37de068f imx_usbmisc_charger_detection EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x5cb98614 imx_usbmisc_hsic_set_connect @@ -16100,23 +16109,23 @@ EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5e9fa885 u_audio_start_ EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x81318789 u_audio_stop_capture EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xae561d59 u_audio_get_mute EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb154fa26 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x207129d1 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x31725fce gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3b3ffeb5 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6549af39 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0b94a131 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x16a4c81e gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1725c977 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x26f6c03e gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x36b08288 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4e7d3f8c gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x73d71972 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x76b74863 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7abf18fc gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x826aa893 gether_register_netdev EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x89ca4ff2 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9cc7499b gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9d711b91 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa3bcc724 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa884ed23 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xae5874f4 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb6355656 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc245109a gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xce59a767 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdcdee9fa gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf723af7d gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf7ede8ac gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbdabb615 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbe008ae7 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbeb8635d gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc78d1817 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe1b964d0 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe7f1a6ac gether_set_dev_addr EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x07417397 gserial_resume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x1335be35 gserial_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x203f19c1 gserial_connect @@ -16169,21 +16178,21 @@ EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xce3f291d fsg EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3a4ea fsg_show_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 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1542bce9 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x265cb004 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x29c466f0 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2f8cae8b rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x36c2fe15 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x78883b40 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x862f52ca rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8cce7b5b rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9b53c7d4 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa2ac74ee rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa3482583 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaaf9f6a7 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc2895e29 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd29f0541 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf5aaacdd rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x05b8e5ba rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2e7bf4f7 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x35c6ef93 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3b67fefa rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x48d9246e rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6116ff1b rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x777a17e5 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8f50bfa0 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x90d69e45 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa40e0e4e rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa95da00f rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb5e2cd53 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbf24f84c rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcb646c33 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcec8e065 rndis_signal_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0917db91 usb_otg_descriptor_init EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c20efa9 usb_assign_descriptors EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid @@ -16235,15 +16244,15 @@ EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf5e90bbe udc_enable_de EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xe3ff547f renesas_xhci_check_request_fw EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x2294cb70 ezusb_fx1_set_reset EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x3c1387f9 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x02f2e282 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x10c0f290 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1194e607 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6684a53f usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x66d83fa8 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9c9ed000 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdc403e69 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe445acce usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xef2b8cec ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x240f5cf4 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2aebdf80 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4f712fd2 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x60dcbc2a usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x690244ba usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x969caafa usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9a8ab3d2 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa2465087 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb6d94b6d usb_ftdi_elan_edset_flush EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0x6e6a194a am335x_get_phy_control EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xae9e9e6b isp1301_get_client EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x033450bc tegra_usb_phy_preresume @@ -16292,7 +16301,6 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0238a5be typec_unregister_cable EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x044b5f14 typec_unregister_altmode EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x04a59ba4 typec_plug_set_num_altmodes EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x06f8d2be typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0871d39a typec_altmode_attention EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0a9080c7 typec_link_port EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0aa41524 typec_set_pwr_opmode EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0be1d8fa typec_switch_set_drvdata @@ -16322,6 +16330,7 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x69b8e548 __typec_altmode_register_d EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6a9ecb56 typec_get_fw_cap EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x78f1dee3 typec_unlink_port EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x795193fd typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7cd52675 typec_altmode_attention EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8672f7ef typec_switch_register EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x896ecbd4 typec_mux_register EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8b55e2b1 fwnode_typec_mux_get @@ -16362,31 +16371,31 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa859402e ucsi_register EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xacc04d9d ucsi_create EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd3ca45a1 ucsi_get_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xdf55d842 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x202853f3 usbip_pack_pdu EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3a699683 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x518845b4 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x58cf00ac usbip_recv_iso EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x62981241 usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x70ab5773 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x743200dd usbip_recv EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x76992b87 usbip_start_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7d8903f9 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x948a6d99 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x90d46202 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb38ec34c dev_attr_usbip_debug EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb3e7ed45 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb791fe48 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc6111ec5 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xce86897a usbip_alloc_iso_desc_pdu EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd48aef4c usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd90f6ea7 usbip_recv_xbuff EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe8f254ba dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xeaba47b6 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xee9f575d usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x38b63aed _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x39bc96cc vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3dcaacc3 vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5e96f18b __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x780bf497 vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x80b7ac26 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xaa925383 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xde0ec951 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xeb9349cf vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x14e60920 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x44e6f7d1 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x479897c9 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x62c51877 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7753b1e5 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8c2411aa _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa289a377 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc0006cfd _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc9634e57 vdpa_mgmtdev_unregister EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xa7ecf4b8 vdpasim_create EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x1433aaf8 mdev_bus_type EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x062f2947 vfio_pci_core_disable @@ -16521,331 +16530,331 @@ EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc76662eb 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 0x0637839f lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2f565da9 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x38e68a7a nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x50b4a262 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6357058e nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x20539e58 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3fa094de nlmsvc_ops EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x86b5365b nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbf57563c lockd_down -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00a202fe nfs_file_mmap +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8e396519 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9b8dd285 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb984eb8d lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc53e2d16 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xef08f1c5 nlmclnt_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x024b3284 unregister_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0316a70c put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x036c1f95 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03b7a298 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0484f5c8 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05ada77d nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08699ac6 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a4a31ef nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b9d951e nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c30fe87 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02e796e4 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0467e754 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04849954 nfs_unlink EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c8f05a3 __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0df115c8 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e2fe2a2 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e6f13ef nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e3c3582 nfs_permission EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11c70772 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12ab97f1 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14802efe nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18a0e829 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18b3b7e8 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18d6bbfb nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x192e984f nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19b71c43 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b2218d6 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bb4cd0f nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c7439da nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ec3b106 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x202393e8 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x210cc310 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2216ada7 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1283b00b nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13989158 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1528745e nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x186c850f nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1947e79e nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19dd1857 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1caccd20 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cd30f23 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e081cb4 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ec6a2cd nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f64287f nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2137cda5 nfs_pageio_reset_read_mds EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x239ea57e nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x260bab75 nfs_getattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2704fcc6 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29083b1b nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a5b214f nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c021cc7 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x295fc086 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2984b0b5 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b04bf47 nfs_file_set_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cb995bd __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x306552cc nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3172dcd4 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2dc3cd74 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fa288a0 __traceiter_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e7914f __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33a6fc70 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x372af836 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3293ec8c nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32bb17a4 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x339091c3 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35d8933e get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x375cf9f3 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38a5ed23 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x393f329f nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x394b0275 nfs_create EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3af04ae8 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bd62b8b nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c7a94d4 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d2c8498 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c22678b nfs_sync_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x403e98d3 nfs_free_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x427b3192 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41abfbc9 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42d43033 nfs_pageio_resend EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44737fc7 nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ab54c5f nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44b3aff0 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48ba23c6 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48c127c6 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c50cad4 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c68c9a0 nfs_file_fsync EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d231348 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50695f22 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51232902 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cec4995 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d008773 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f9f21f1 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51354f3b nfs_client_init_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5232a3a5 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x557465e0 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57e32d81 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5261f109 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55d2e8db nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x568dc744 register_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59a83417 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61fff1a7 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62e53670 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x632ff66e nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6339fdbd nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63be33b9 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67870157 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6986bea3 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a118ff5 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c21c3cf nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e156a69 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d27b882 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5de9bb1e nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61a57ff3 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x625c9f61 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x629b18ba nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x673d2618 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68026df3 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68e91724 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cdad50c nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d71fea3 nfs_wb_all EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6effd735 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f8944d4 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73a38c29 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73d68eb2 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fe11ba0 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x700aae8f alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x731949b2 nfs_writeback_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x743f598a __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7478a198 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74db4e07 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x758bbac4 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75ee5aa5 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77844594 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78df9e5f nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bc861ce nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80074b60 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7839950b nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b7e1966 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c002949 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7eb23a2c nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f5cca5b nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fbea87f nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x810f310d nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x820d03d7 nfs4_label_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83a0b37b nfs_access_add_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0x842aa210 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85ac1948 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x896ff4f1 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9076fd47 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8493cec5 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8695d111 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x873bf70a nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87a94c7f nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a446ad7 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b5e7fe3 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e2c0322 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f906d54 nfs_try_get_tree EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90e3d4af nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91986f80 nfs_put_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9309b205 nfs_commit_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95bdda67 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95c4613f nfs_zap_acl_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9976fe5b nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c6b1051 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa03b8dc7 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x990b942e nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a0d6cd4 nfs_kill_super EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa142e343 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa164b8af nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa418480a nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa74b8f7b nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7a724d3 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa13406ab nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa21ad450 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa59ef091 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa74fe718 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7eae211 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa82e1485 nfs_instantiate EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa972fdbd nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa4e6172 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa91a2ade nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9a3ada3 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa8e3537 nfs_post_op_update_inode 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 0xad4c1fd2 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadd76d1e nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafecfce8 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb146fb4c nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5333f6e nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb78e0ecf nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbaa097d7 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc6a95a8 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc29c6e3c nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2b81c3c nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf8e6c7a nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb051e6a2 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb41b95ca nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4d92b83 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb581554e nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7c33e11 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb88c03ac nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9cf8b36 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc150018e nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1d3e543 nfs_scan_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc45c2911 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc50e7e2f nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7ac1e1d nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8cddc74 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc99db635 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb1f0115 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbfc6695 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccb4339a nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce223198 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd375f479 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd53c5dc5 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd60b403e get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd62f8819 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc864c045 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9d1e7b2 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca10eca1 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca6bca73 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb2f8df5 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd320eaf nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdbdf170 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcebbf433 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2db1087 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3e5e625 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd494d8c3 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd52d20bc nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd65d3cd9 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6ea1f92 nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddb56c42 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe011164f nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0b0f1e8 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe520fa02 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe52b2248 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6e0a9a0 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe84f3696 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8f87399 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9be4bfb nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecf1c785 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed781f60 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedac7745 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef0bdc9e nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf03d1f69 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf311cf3a nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf747ec4f nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9284048 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4a2d71d nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6362fea nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe68f0bcb nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7675199 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7cad611 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7e4c404 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8540c8c nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9b0dcf4 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee3d9fdb nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee8b6b71 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef49340b nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0270e15 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6a1bb30 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8b53221 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9539b47 nfs_inode_attach_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa4c25d0 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfaa77943 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf97b0ca1 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb47dc6d nfs_mkdir EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd146950 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd4e6ee2 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe16c3f4 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffaa3656 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffce369f nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x1c36b46c nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04c95759 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeacd1f4 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x13e7f670 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00ed0dee nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02587462 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x029fcdd5 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03bfebe1 pnfs_generic_sync EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05bf098a pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0794bf8e pnfs_register_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09dc8d84 pnfs_put_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ef4545c __tracepoint_pnfs_mds_fallback_pg_get_mirror_count EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1239f357 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12d68c82 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15018bbd nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1580f26d pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16099721 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b10deba nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15eed695 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x175ef09f nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ca411ec __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x231a8ada nfs_remove_bad_delegation EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b017861 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d57d17f __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2db2bf1b pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29482cab nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29df44f5 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ae6dd7d pnfs_layoutcommit_inode EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e79bf5b __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e7dacce pnfs_generic_pg_cleanup EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3547ea73 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36ec76f2 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e60566c __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x338dffbc pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33c44a7e pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39eb01d4 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a4552a5 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e86c1b8 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3fa6d215 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x408beeaa pnfs_error_mark_layout_for_return EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4543e9b0 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48e9662a pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49b2a057 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d74869c pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e7b4737 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5008adbd nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5119d9c6 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x512ff37e pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45c3229c pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x483db6fd nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x492e6d2a pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b04a1d1 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f62b60e pnfs_generic_prepare_to_resend_writes EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54f36c24 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x561d35a8 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57044740 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5490d063 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56467961 __traceiter_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x589bf792 nfs4_sequence_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a51cd51 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5bb81557 nfs4_mark_deviceid_available EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ca3ae2b __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x60735114 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61eebdf2 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62d21090 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x674675b4 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f5c1aa3 pnfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ab8795c pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b6b7470 nfs4_put_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x791782fa pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79377730 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x799f45ea __traceiter_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a909221 pnfs_generic_pg_test 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 0x7ea3a495 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ebeb445 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f319820 nfs4_setup_sequence EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80e9d17b __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81b6b8a9 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81ee4a1b pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83017c8e pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x848c7c34 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85214414 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80ee94ae nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8143a8fd nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83cc9a10 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x841fb290 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84e371db nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x852be36d pnfs_generic_recover_commit_reqs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8591bcdb __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85eb44ed nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89eb37a7 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a0a4b13 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8aab3fb6 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89bc3b87 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c314da0 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ce9b15f nfs42_proc_layouterror EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d3aad34 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d5afb6b pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e699de5 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f21cb06 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f484887 nfs4_init_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x913dbeba __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x925a16ae nfs4_pnfs_ds_put EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x931d7f55 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95a099ae __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95c770f3 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x967cefda pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96848ae8 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x983ab3bc nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c575d53 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ca8d877 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e80722f pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ff57078 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9604cd45 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x981a1cd3 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x993e8eb9 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f637860 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ff0dcae pnfs_generic_write_commit_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa037236c pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6c66ab1 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaaa4f32e __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0895fa2 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0f1128a nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa030c6a5 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa150d35f pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa33ac6b4 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5a84a15 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa85d1c4e nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac4a259a __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1117f11 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb365e08a pnfs_generic_clear_request_commit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb68f2dc0 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb91582fb nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb78e9df0 pnfs_generic_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc612f77 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbdc6b313 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf41601b pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0274061 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc171b70a pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc58c9826 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc2f619b pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbfeb7e06 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0d04e80 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc28e9f4d pnfs_update_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca7ae53b pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb4a52fe nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8e953da pnfs_destroy_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb7ed01e __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc250364 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1475da9 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd31c4774 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6234b94 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd642b27e nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd654fc0e pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd76fea86 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9eeb50a pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdcc99bdb pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b91726 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ec2c11 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd357a9d5 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd421b4f8 nfs4_schedule_lease_recovery 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 0xe3d67c67 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7dd8988 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9d8675b nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea5380b8 pnfs_set_lo_fail EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf12a01b4 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf55bbf87 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf61345b5 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed58dd81 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xedda61a3 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf55012db pnfs_generic_pg_init_read 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 0xfb588e24 nfs4_sequence_done EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x20315529 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xb1448005 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xff346924 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x668af5bc locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6e78e6f1 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xbaef5fb6 opens_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x394e00d0 nfsacl_decode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x538973dd nfs_stream_decode_acl EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xcd70c4b9 nfs_stream_encode_acl EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd651192e nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xe598d832 nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0534415e o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xc60700a7 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 0x22ada27f o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3066a700 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x20632e2f o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2787bde1 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x28b0607a o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2ba17ac9 o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x364f639b o2net_send_message_vec EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x50bd5268 o2hb_setup_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 0x6aae85a6 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x97bc2049 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa0da0cfb 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 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 0xbe950e16 o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xcb8f3df6 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd200eb61 o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x24fde8a1 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2528ed45 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2d6f752d dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x53e26535 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x047baab3 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0bd703b7 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x33ee52e3 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6af2308f dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x74cd2c07 dlm_unregister_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7b62e6e9 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb861118d 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 0xe6afd6a0 dlmlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic @@ -16894,1053 +16903,1053 @@ EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x9d1d3e48 notifier_err_inject_init EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x1cdcf56f lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x6bbbc5b3 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x08b42869 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x32b82c89 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x58196f50 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x7beacf97 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xb8241a2c garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xb8b3e995 garp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x0b2cd305 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x3a038d5b mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x8a5211a0 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x9774e8ba mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xc2decf42 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xe388b6b7 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/stp 0x546ff1a5 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0x8d4c0366 stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x89324d0e p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0xc471eb2e p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x6aa196d2 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xa2ced653 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x2a9b42bf garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x3a1af66e garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x632c24ca garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x9633492c garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xf1c89727 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xf6c63525 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x5e8b2fef mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x7611c363 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xa01b1ed9 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xa12bc282 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xcc03add4 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xeb09dbc8 mrp_request_join +EXPORT_SYMBOL_GPL net/802/stp 0xc29e1910 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xe44b7491 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x468deb34 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x5bfe3d6d 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 0x1b57ed92 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 0x2145a0f9 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2a5bbc41 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x358d7e29 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x42ba9470 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5d0c6b03 l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x793dfd6c l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9e989558 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb5ec4029 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xedbc929d l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xc10ccf2c hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0a7108d0 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1cfacb76 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2a24f990 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3569639e br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x53fc96f8 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x81190299 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x820556f7 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x838a3c19 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x99c07fe5 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9cfdef9a br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa272498a br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa2c89b3c br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc229b730 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc7017a12 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc9c205cd br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0xca124ff7 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd3e342d0 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd5594426 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe4148756 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe577b9d6 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe8b6367a nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf80c65d6 br_vlan_enabled -EXPORT_SYMBOL_GPL net/core/failover 0x480f4a3b failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0x693c9b76 failover_register -EXPORT_SYMBOL_GPL net/core/failover 0xad6975f9 failover_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x148f108a dccp_destruct_common +EXPORT_SYMBOL_GPL net/ax25/ax25 0xd191bc8a ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2ad5f6d3 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x31fc2ccb l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5f588277 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6528b177 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x802ffd00 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa24c630e l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xae29035e l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf7c8485a l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf8fcc6df l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xaeb820f5 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x030508bc br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x05b3d71f br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2e0157bf br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x392f81ab br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x503def19 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x51d4a16f br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x52df71d6 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5fb135de br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7f4708b9 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x884ab9d7 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8a539806 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8ffdc21d br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x90a4f125 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9bac8c33 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9ec84cec br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc91011a4 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcd66fb93 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd21b67ae br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd5eb0d2a br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdd179689 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe2960e9d br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xedb37922 br_vlan_get_info +EXPORT_SYMBOL_GPL net/core/failover 0x637be7e3 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x6daaf691 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x94954554 failover_slave_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x06ee695c dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0785d62b dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0bc508aa dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1527605b dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1806f715 dccp_reqsk_send_ack EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1917cda3 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x19e36629 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2c63a56e dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2f28e0b5 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2ffcc71e dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3267b786 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3dacd10e dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x22db2e1f dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x29c5cdc5 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3cf75fb1 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4309e0a3 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4aa2c796 dccp_set_state EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cf43286 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x579faa49 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e551d8e inet_dccp_listen EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e3e521b dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x77bcc2ef dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8072ae49 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5ae24a31 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5cb496f8 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x644858ce dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x670aa0fe dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ae3a72b dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x79899af0 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ec326b6 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fd34323 dccp_shutdown EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x84454bfa dccp_insert_option EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8a1752a6 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8afb3cd3 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x932dfb41 dccp_make_response EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9c17af4a dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa6561f93 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaea70ce7 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb3279109 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb6c99b36 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb743e6bb dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe923f43 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc31f68dc dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcba0433a dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd264a9c8 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x990f43e1 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa11cfad5 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0ed79ff dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcfa0bc12 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd18f0fc9 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd2eb0b30 dccp_death_row EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdac6169d dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe3b38d05 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xea940ec3 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xed23ddd3 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf2934720 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf49d3138 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf4f92ef3 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf55ef99b dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfb9db8b0 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0336902c dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x596a9dd7 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6725986e dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7f84349e dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x90086abb dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbf144655 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x023bebcc dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x024c8975 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x062f36a8 dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x10b2e70a dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2075c193 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x210213b1 dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x29c179b5 dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2c8e8fbc dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2deb6dca dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3251b4bd dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3fbe511b dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd852e766 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xddd60ddd dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe67ba898 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xea8c808a dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf682cf3c dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf8811856 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfdb85063 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x989d9513 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa0591fab dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc8332ed5 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd43f567e dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xdd1df49b dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe01726ab dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x061eb12c dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x096fe44a dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x12c563eb dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x131b3c10 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x14bb2f44 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x15b0bc0b dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1b831188 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x20e2bed3 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x262b3f47 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x32057074 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4179abab dsa_devlink_port_region_create EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4674e2d9 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x49b8b857 dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4f549122 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4e087868 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4fe50169 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5903185d dsa_switch_resume EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5af2d327 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5d968f1b dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x68cf661c dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6e8e1aaf dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6eea60da dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x75854552 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x758a7820 dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x82000723 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x84593f0b dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x86415f7e dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x87c0e857 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8d96d03b dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5bd73656 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c9c80ac dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x61432d0e dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6240ea00 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x62cfece9 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x72850cdf dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x75af144b dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x81f27013 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x888827ba dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x954bd0f1 dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9bc04490 dsa_devlink_resource_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa79139da dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa97466ff dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaaae09b3 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb2463a14 dsa_register_switch 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 0xca12b9f9 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe308b436 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe500e444 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xee5c2f58 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd1043d53 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd1d79d30 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd4ac2378 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe3758bb2 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe78dc306 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf051f7f7 dsa_devlink_params_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 0xf72f1c28 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4418ec56 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x72834c2d ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfb1ba7fc dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfdd08d4c dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0b870682 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5ee39308 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x61861cfa ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x626be3f2 ieee802154_hdr_peek EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf2f240ae ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf59997bd ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ife/ife 0x2fdedcc2 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 0x9351cb91 ife_decode -EXPORT_SYMBOL_GPL net/ife/ife 0xa7f30c53 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0x69ed07ce ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x3fac343d esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x83cf6731 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xca8b2987 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/gre 0x0765cfca gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x88a7a4e5 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x338e72cf inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4205efe9 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x541f79b1 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6fcc9593 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9c69bf49 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xad1e60b3 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb70242d4 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcd358762 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd4f59321 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xe8fc3a70 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x066d6559 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2034e737 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x204d5c08 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x530740fc ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x801518e2 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x84b0e2d4 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8741589b ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x981e112c ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa067f271 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb3db11ac ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcd4aa31d ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd70bed58 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdebd5b2c ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe16b29cd ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xee447c32 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf36cdf3a ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfac3c0dd ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xe46a3fbf arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xc3a30c69 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x58450332 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xddb843e6 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x6e9391d9 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x371015c9 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x47d9ce03 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4f3e47ec nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8cd183cf nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa64bba06 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdc03d336 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdd1ff5b2 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xccfc52ad nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa94c2365 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xe9d91cea nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xed24362c nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x72dca917 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xa300a8d3 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0028eb80 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x639b140e tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x79db16aa tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb054e8b0 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd83be924 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2fdb1028 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x48bba3ad udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x65f5c9e4 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x74c0de19 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7f7312f4 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x80f23273 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa6c75441 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf69ba7f3 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xe805cdcc esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xf0e03cc2 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xf5e1dbca esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x43b1952e ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9a6e9fd7 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xcd6a66fe ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x2cc87647 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xd5cd9530 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xa52a1e71 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x3cd1b59b nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6bd47055 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xecd5dcfc nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x01494f91 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x86a7f8c5 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x94ed33d3 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xaa496b7d nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xcb369524 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd71132e8 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe4cbc9e8 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xefe2b23e nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x4b9bf3c4 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x390fbfb4 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x66375210 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x93b86214 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x5f9301d2 nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x931b5738 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x220c3e96 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x23b93da0 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3442a538 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x39705170 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4cb92d8a l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d90c21a l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5ca8690c l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x60de375c l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6ba85a23 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6e94c098 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7728833a l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x80dd32de l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x99af84a5 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xba9a4e94 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbb962805 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc4496277 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe5a6a247 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf85eb283 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf8b7ac58 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xff5353b3 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xff81c792 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x920c96db l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x1a775510 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xbcd42e0a esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xda97b920 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x2a0b5ada gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x6410da94 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x14ec7d58 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x34c75a6c inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3701ab50 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3723ef3d inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4192986a inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4faeadfa inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa918b3cd inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb0213801 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb32b8198 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x55946d85 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x06c890bb ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x084ac64e ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x17ab5d93 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x22d9676a ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x26e54ab0 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2b0d9bd2 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x68a41f24 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7e3016c2 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x82911e3a ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x85391f18 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8d907391 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9a70dfac ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9b703a3c ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb6eeab51 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdbafbbaa ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xee4543bb ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf0bf08ea ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xda3503d3 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xe674e29d ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x0ccbfa88 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x7ada06db nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x71ab463d nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0e6bb3be nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x48575063 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x721b077c nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa3b3e1bb nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd076d1e1 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdae0a2c4 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe115013b nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xe169229b nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x823d37b9 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xb16b7179 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xf19899ff nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x8d2f574d nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xdef77f66 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x08c8d78c tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2e58c674 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x62c1f170 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7484b2df tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa3c9a370 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x15df6416 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x37d53e32 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4072bb06 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x64f73b7e setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x87813214 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe70e55f4 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xee71e9ca udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf653ad29 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x50f8123b esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc3e9b6c7 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc8223600 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3d16eb8a ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa610e1b6 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe6e50925 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x3f5e40d2 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xa22cb0f8 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x124dd1e1 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x786562c4 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x8a344758 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x9df8a007 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x0e6b90a0 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1ae59ee4 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1e0a9c3c nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2d306cec nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x665c9566 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9b0b1e6f nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb19af973 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe03ad7f1 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x660e83f2 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x2a9a2e38 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x865381ab nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xa9777252 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x30446258 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xcdf1b3ad nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0df41e96 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1d80ffb1 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x22bc8f98 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2527c1b9 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x29e16edb l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x37062e93 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6256f7d4 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6dc9124c l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x716c7198 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x71e26551 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x738ed76a l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8025fd2e l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9fd1d37f l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa2bafe37 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb252e293 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb9b23379 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbaf53437 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc3a977f3 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd3e0f5e5 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xee08a147 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf07f3c1e l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x0859e839 l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x58b4e082 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x178cbdf8 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x37f34f0b ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3fe2ddd1 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x45d94e92 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xcaafc1d3 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x05612146 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x12eddb0c ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x30db0afe wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3a422819 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x499e48e3 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 0x59d41f79 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5c9b187a ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6259b3d8 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x65461a91 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x69309c67 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x743a1815 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x85c76902 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8d9e39f3 ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8e069538 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x99def296 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x844d4d4b ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8652f6f5 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x874db31d ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8bfce790 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9d492714 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9d81ba3e ieee80211_calc_rx_airtime EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa2fb89aa ieee80211_remain_on_channel_expired EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaad57304 ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb36c88fb ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc1217fcb ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcee9f457 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd2588f3d ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa92823cd ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa9fdfa42 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaad01bf3 ieee80211_gtk_rekey_add EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xda6ad5e6 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3a802b37 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe27a98ed ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe38b3f98 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeae60ca7 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xee6a0d88 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf27e2332 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1a6433c7 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3e4e984c mpls_output_possible EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x78d83d4f mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7e8c652d mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa8a42727 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb58653c5 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xce63b21a mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd9509314 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe6b15e43 nla_put_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x181f42d9 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1dd8cd8f ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x213930af ip_set_put_flags EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2bde99bd ip_set_init_comment EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x39872b5c ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4bf0d393 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x515973db ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x55520e2c ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6329c6b9 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3d19b56d ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x49939e01 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5d5d7996 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x633dda87 ip_set_del EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6388b305 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x68239e5c ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x69028836 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x69516340 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6c1aad50 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x764294b7 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 0x7a77dae2 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 0x8db42403 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x964a1b54 ip_set_nfnl_get_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9f177ae8 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 0xa6056354 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb12994c5 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcd855272 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd68cc796 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe06b3a54 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf4e65655 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfcedf350 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x265268c5 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x55680028 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x5e84dc5f register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xff74c726 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb67caa1a ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xca305178 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcdfc6ade ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd6b85f84 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe74b81b7 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf1e1c734 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf4c0910c ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xff7309bf ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7e396c71 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa6d59afc ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xbe157752 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc1120024 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1cc2d871 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x21438616 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x2222a67f nf_conncount_gc_list EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x268a4802 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x313f9230 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x75cd72b5 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9958c7b2 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xaa3d2880 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x500f0299 nf_conncount_init EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbe03a217 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xc2327e94 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0258c624 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0772e224 nf_ct_set_auto_assign_helper_warned -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x088acd91 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0900f6a4 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x097f84fa nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a82833f nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0adb6fa1 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xcb3ababe nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01c87814 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02e59bb3 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x087d2aa6 nf_nat_helper_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e525952 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f10b8e5 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f29acbb nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1113cfae nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x112ef484 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17cd9832 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19ca5c7b nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c02ac33 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d17cd67 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1eca1e19 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f3ac864 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20e9560a nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x266349eb nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c5dfdce __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d26d48c nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d7ba317 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x179a077b nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x198b4dae nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c4e13c7 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x221222b4 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22bb00ef nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23cfae64 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x249c3b28 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x259e3d37 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25cd2a42 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x271559fd nf_ct_extend_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 0x29b0eb82 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3452a3bf nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a24b183 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e2293b7 nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x449232e9 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33cc2a2f nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34e7e320 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36646e47 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x368a3e3b nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d64c88d nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fa3ac09 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4394fc52 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x440754d6 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44664dd0 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45cdf124 nf_ct_remove_expectations EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473e385d nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x495b3620 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b30d88b nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bef0f9a __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bfcd09c nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4de8c43d nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4768d314 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47c15dbf nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e3625bf nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e877404 nf_ct_l4proto_log_invalid EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ea258d2 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x507589d2 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5972f68b nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ac730e0 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60fb2e54 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64629583 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x508c2c41 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x511aae99 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x51293e93 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5384dd42 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d937aa6 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5dc15dc7 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63c0c199 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6465e5c3 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68ffa636 nf_ct_timeout_find_get_hook EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6cc6e2cc nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d3c054a __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74683568 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74e1c118 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7503d14b nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x795f9ed4 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ddb6ca8 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x854c3d13 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8bdca79f nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x716839b1 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7365ac21 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f666542 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81db986a nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x856248d0 nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85643e86 nf_ct_helper_expectfn_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c6e11f4 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e81bda2 nf_ct_destroy_timeout EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91366229 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93dbdcb3 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x996ceddb nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e09a7c8 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa38b1938 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa430a86d __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa699a61d nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8aebc6c nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa930c876 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9018bdf4 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90a7a94e nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a8cfac6 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4374ac1 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6dbfa04 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa86e36fe __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae3bff8d nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae64bdcb nf_ct_unlink_expect_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1ab6861 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb75a1be4 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd7c2699 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd877bfa nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe88e1de nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0896762 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb180aff8 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb190fb63 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2acf912 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4c06dc2 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb69364a2 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9993a8a nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc1baff0 nf_ct_iterate_cleanup_net EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc270b328 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1d97dad nf_ct_seq_adjust EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd84e29c nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc834162f nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8c6acde nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb95bef1 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcfc21a15 nf_conntrack_eventmask_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5929897 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5fa3849 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd836ce6f nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc25dc8f nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd879ef17 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda376564 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcb9a1a9 nf_conntrack_helpers_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe05d76b3 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe07d34c0 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe36f8186 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4d48ea3 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe507b606 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea69920a nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec0d3f4e nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6ce7fda nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8451847 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb89fcd1 nf_ct_expect_find_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee2ca1c6 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf128a7e2 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef9962f3 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xefd754d6 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf03db452 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf258cd99 nf_ct_port_tuple_to_nlattr EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf610f7b6 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf76081b3 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf798c7db nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf91843c8 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb60b807 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5700e8c nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf68363db nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe0ea4fe nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe277b99 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe4645b6 nf_ct_gre_keymap_add EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfed42c80 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x30c3647a nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x2d9d0c4f nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xa5d76b14 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x020c43f4 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x18129765 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x24eb28af nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x45d3639d nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4abac87a nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x552bad45 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdf58044f set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe1efc3f6 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe43841d2 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfab9618d set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x6d9bfa38 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0b7a7a84 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x18038429 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc03f702c nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xdf665e7c nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x008c29d4 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7a20e11d ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9dd93c49 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9f880832 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xad733d0e ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd13ccadb ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xee20ccd6 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x16ac4a80 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x56dd8644 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x4fb4917a nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xf5df94a2 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xfecba135 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x06dec07c flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0c4a9e75 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0cd8ca00 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x196ef0ad flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x31305a2e nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x364ecf27 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3ea0a11f nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x44799e27 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x632422ba nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x68f806bf nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7111b80c nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x72db9bd1 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8c1bac75 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa327dde4 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xce1ed98d flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe4f2c0e8 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfb594b17 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0c901cca nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1e10f906 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x271cbf62 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2cc4cbab nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2dc2df87 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff042162 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x23fcf402 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x6beb9809 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x43d60fd0 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x023c97f7 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1be71e90 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1e764f49 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x37800751 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4527c309 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4ee09399 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x75e2f3ed set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8d91c668 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xadac4231 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcfc2c44d set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x82008c60 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x8f66e93c nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x96b38228 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc86ca5cb nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe08c099a nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x22700c1e ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3957b0cb ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x485ca125 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4db56367 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x55b11165 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x865d5132 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcb2b2098 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xf5cd735f nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x8520dfce nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7e873e5a nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x925f7f06 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xef1b0592 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x08cdf894 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0dd1ce57 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x11970777 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1a36cc22 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1ec4f9a2 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x31a0a611 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5cee5427 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5f5cb8de nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x881897b0 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa7200cc5 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa76dd874 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb8450c4b flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd1ec06da nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd5b9fc34 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd963e7f2 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xebae04ef flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfcdc18d1 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1b81b443 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2c2ae7a0 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x380a2393 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 0x57314110 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6338eaa5 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6ea8efa8 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x71f1a092 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x826142cb nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9645b404 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9e6a45c0 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xab0e2d2f nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb9b5d4ac nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3cff7d24 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3f0404d4 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x40ed322a nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x516fbc5e nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x813f8164 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8373d9d6 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa4518df1 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xac3f1da2 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb3554122 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb96e193c nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd10c6e85 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd653e91f 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 0xdc51d48e nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe8949f25 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xec5de64b nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x18e9a1b6 synproxy_recv_client_ack_ipv6 EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2b9fd064 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x583db62e nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5ccc4360 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x67232e98 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x67f8db0a ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7f4e4c4f synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8b80ea70 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbc75d8c3 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2b20ef04 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x63e1faa2 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x762a7a6b nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x809526e3 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8a0bc8ef synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xae8d4ad3 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb683662c nf_synproxy_ipv6_init EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdee7dd8e nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe1f94538 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xea49298c synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcb8305dd synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe4edbffc synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xeb89f343 nf_synproxy_ipv6_fini EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00fcb68c nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x069b87c4 nft_meta_set_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x26a9039c nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2bf806d2 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x32139238 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1103225d nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x12aad53b nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1ab29bdc nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x26661b4d nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a63bf0d nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2ea513c0 nft_meta_set_eval EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x32b3e59b nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x337d8cf4 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3a92a3e3 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x44ed0c12 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x39b82de5 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x40fd5060 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41d2838a nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x43f2bab2 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x44ef2a5a nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x49a75e3e nft_set_catchall_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4aea0694 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x52644d1b nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5485c07d nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5bbd800f nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5be21aca nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5cbae0ed nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7cc08e66 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7d48d4f9 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8558c698 nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x90add775 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9723a5b0 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9cf640e4 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa65e8712 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa82b2e25 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa89b4a16 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e3c5370 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x52e0fa2b nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x53bae20f nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x56124745 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6c41ccbd nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d703c60 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x74b7f2e5 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x80334d05 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x80cfd7aa nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9528610c nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa115b2a3 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa81532e9 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9d3cd47 nft_obj_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9ffc821 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaad9c9d2 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb04bed0b nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xba95420a nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc27d7efc nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc529eac3 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xce269f09 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xce32dcae nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd51ce486 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd67649ea nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdafb6f3e nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaeba3a58 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb0217e86 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb081e40a nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb4e57e54 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcab0b809 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcd8da6c8 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd3ea0aee nft_data_dump 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 0xeeabc0b0 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf09bf094 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf40ac7b3 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe97a5a94 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf1e603a6 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf6219132 nft_meta_get_eval EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf7738411 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x066788a6 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1b060291 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2cca0225 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x38890eae nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x44cf7199 nfnetlink_subsys_unregister EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6bd63966 nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6e7cc7fa nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcd5aca5c nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcec60551 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd98c9b22 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9877f0c4 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9d49db70 nfnetlink_unicast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb651b1d nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5c247602 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8ccf9a69 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfbd9ae22 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x98439752 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa92d4b94 nfnl_acct_overquota EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xc4c85d77 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x014ceb0e nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf5ca4129 nfnl_acct_update EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xfb3b5d89 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0fa3a1d5 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x66cb4aab nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x83af1b69 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xc6d51be6 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x5808b96f nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x983b7539 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0e28ae5c nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x15a96b6e nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x3a87eea8 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xca72a56a nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x12c06716 nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x43417680 nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc609913b nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xdc11245e nft_reject_dump EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe762103f nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xf9bb1eee nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x00ebeb33 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x10934499 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x164390aa xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2cd8df1c xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x34b49a3f xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04a40c70 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x066220ac xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0e5a10dc xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1c4b40f5 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2a34c404 xt_proto_fini EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6092b87d xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7057302e xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7178d9b6 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x498a5b4a xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x548d8809 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x671dfdcc xt_table_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x87b16ddd xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x887c4b5e xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x92f8914c xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x971b07f4 xt_unregister_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa8d9891c xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9cd75112 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa8776d48 xt_request_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc1e4c7cf xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc570a1ca xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd45d6e25 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbff9c227 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc8b5b635 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd0301524 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd70a8a73 xt_request_find_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 0xe1364efc xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xea2f8205 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfbd16d18 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb510d732 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xfa5a569e xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe86856bc xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x1fea48b8 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd25c9200 xt_rateest_put EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x91a90fe9 nci_spi_allocate_spi EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xdd68322e nci_spi_read EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xe8359bfa nci_spi_send EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x36fea256 nci_uart_set_config EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xa25dbeb8 nci_uart_unregister EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xb442606e nci_uart_register -EXPORT_SYMBOL_GPL net/nsh/nsh 0x52bc2103 nsh_pop -EXPORT_SYMBOL_GPL net/nsh/nsh 0xe4be4377 nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0422a53e __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2a3007fa ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4c9427d2 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe9279d87 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xef277448 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xfada1072 ovs_vport_free -EXPORT_SYMBOL_GPL net/psample/psample 0x1083c7b0 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0x8c4e2b4f psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xc86ac74a psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xff1e95b4 psample_group_put -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x207e45aa qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x26825200 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x48dae392 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xdbfecf61 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x24cd3508 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2fa9f5a1 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x47beca9a ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x517bf75e ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6e8b3f50 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x848f674e ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/psample/psample 0x0312d28e psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x60d21796 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xa92bf03d psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xb2c29d30 psample_group_put +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x0613a7b7 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x44ad969e qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x4d30c144 qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x9dddb86f qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x01d179a6 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x227eb7a3 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x27bb5798 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x1d00c48d rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x1d8a74c5 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x21d28084 rds_conn_connect_if_down EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2ea31c93 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2fa6650c rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x31f0d608 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x33d46d1e rds_recv_incoming EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3bc8927d rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x4429c2e4 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x3df86b47 rds_conn_create EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x552e8f1e rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x51fe207a rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x549759fe 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 0x5a47de37 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x5bda460d rds_conn_destroy EXPORT_SYMBOL_GPL net/rds/rds 0x5e2628b9 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x6927f9a5 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x70d00a17 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x7acee3d8 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x85cb21fe rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x896c70c9 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x91e3ae04 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x9dd83b01 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xab831608 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xaf02183d rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0xb1fc1527 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xb7a327fb rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xc2637ffe rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x63488b2d rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x65139519 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x798926f1 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x81196d34 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x924e3008 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x9679cb36 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xa38557ca rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xa3e6fc69 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xabeed2c3 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xb41ee4d8 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xb62d3488 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xbedf665a rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xc06330cf rds_trans_unregister EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc6484e78 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0xc2f4cc7b rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xc6420deb rds_send_xmit EXPORT_SYMBOL_GPL net/rds/rds 0xca222854 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0xd0cca567 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xd1daf563 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xd2df2a74 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xd3cc95c2 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xe3078042 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xe7cd6d98 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xefa837ab rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xf393218d rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xcf153d7f rds_conn_path_connect_if_down EXPORT_SYMBOL_GPL net/rds/rds 0xf4c257e8 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xf927b30c rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x56c298be pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x7eb0c0bb pie_drop_early -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xa8507794 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xb573c0fe pie_process_dequeue 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 0x23e5eb06 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x6852d9f3 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0xadac8aac sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xbd9cc4f4 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/smc/smc 0x21932e18 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x30182a9d smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x31be3902 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x46281527 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x6dc45492 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x95751b85 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xac7b67fb smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xbb4d9112 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xeb984cae smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xf8678258 smcd_handle_irq -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x144d86f6 gss_mech_register +EXPORT_SYMBOL_GPL net/sctp/sctp 0x63b1a2cc sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x67e7b8f1 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xa31b17bc sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xe8810586 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/smc/smc 0x176f5d1f smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x1e4af06a smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x225b2815 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x3518e5e3 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x45b5e9f9 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x56f3dc7f smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x675ef8f4 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x70972221 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x9d6212dc smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xdf6337bc smcd_handle_event EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x67dd0b17 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa33005b5 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4843c973 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4ecb5b44 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x73c2ce0b 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 0xec077759 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0145f679 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0182ac1e rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01e8031e svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01f79e56 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045ceb64 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7fb2afe svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01715254 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03621b3e svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04c8f232 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05514567 svc_xprt_enqueue EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0637fe76 xprt_register_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x089d7a42 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09184514 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0983f0ae read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09caca09 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a0b0b43 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b25d8ec xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06d6e0b2 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x095d5e9a svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a218e47 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a5f1755 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a8bd01b svc_rpcbind_set_version 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 0x0c6cb58a rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cd6d8e8 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cd78816 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fe57834 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x114c70c7 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12c1f87a rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1537a294 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16ebb99e rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1743bef0 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17ded3c4 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d9fa8c8 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e541276 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ffd3cda cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x130104db xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13a32ecf svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13b0599f xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13c36323 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14be8c9c rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16328e4b rpc_num_bc_slots EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1807e7d1 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ad40abb svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b1c255f rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cc34b45 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1de32cae xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18fb16df rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b4c9096 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bb47008 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bfa40f1 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ca0029b rpc_switch_client_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e534a51 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ebfdef5 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fc87246 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20a29245 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2141500a rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x244ccf58 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25c64b8e svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26bbf550 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2798071d rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28f8a6b7 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e2997d1 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fb8e25f rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2068bba5 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21a7397e sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21e51220 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x260c0c8f svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26b78175 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27bce8b7 rpc_force_rebind EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29882b24 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a061b27 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a7e0e43 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b5768ca svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2be86972 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c14d01d svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d06c27b xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2afbc1b3 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b9a07d3 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c2fd19e rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c7fd91a xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d12eafb svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ed7acf8 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f066144 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f798537 rpc_sleep_on_priority_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fd62a42 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3138136f xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f9fa111 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ffd1b04 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x310ae3a8 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3157d43c rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x315b188e rpcauth_lookupcred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32cf2185 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x345255f5 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x382e5a74 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31ab7849 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34b879d7 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3652acf3 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37ea063d rpc_pipe_generic_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a3014da svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a4198f7 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d55681a svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d672d9e svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d6dd42f rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f3595dd rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39caaf8c svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a9f7ee0 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b435f19 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c4ca5e2 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c7772ff svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e2b7215 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e35f6f8 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f69e2da rpc_prepare_reply_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40e87e6e rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4142d0c1 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41ba2b21 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41bc561a sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fb78310 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4032dbc9 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40dd843c xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41009f7f svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43119806 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43e190bb rpc_proc_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46b547fd rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46b8311a svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4715ca85 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x483a960f rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4873b0ac cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4885fe89 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48b1d295 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49278170 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a6b28b3 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x484881a3 xdr_inline_decode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c839558 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b919a74 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d6d8aac svc_auth_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e6b0ec7 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8e1f41 xprt_setup_backchannel EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ee11a6c svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fe93f5e auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x501d8e9c xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5034df63 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x506d3193 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50c7d639 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5317e71d rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x533e8de4 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e970f56 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f5a5fa2 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50595f38 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x507f7d8c xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51c08485 rpc_peeraddr2str EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56790ce5 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x569dc54f rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5856f651 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58d8dde2 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x547d3d4a xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x556c7684 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x559e16d9 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55e0c3d9 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56234628 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x586f5d39 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5969d430 svc_shutdown_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d0f897e rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63a936a3 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x641b4f0e rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x642e89c5 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x658aeedc xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x661a0750 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x664ee4b7 xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6721a4ac rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67d9a73c xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x687ade6e svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6938ec39 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6abe0574 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b8a4fb9 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6df77861 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f3f3842 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x704c1d63 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a77f603 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ac0c514 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5af5d3b2 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d01c125 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ed2aff2 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c9076a rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61f834d1 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6206fbc6 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63625a46 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6624bd9b xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ecea86 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x698c9d6e rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69f22797 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a0ef96e rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a3d222a rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ab5ae64 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dfbbe1c xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e5d58de rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f7b682a rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fde9ee9 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70f0027a __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71c613d7 xprt_release_xprt_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7288458b svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75e51982 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x762a6706 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7672d805 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76b75c81 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77aa96e4 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7828c281 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a648436 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b42521b xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cad893a cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cfa855c xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d460a57 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72f245ff gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74415fc1 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75960b26 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7627f179 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76db5cc4 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77140b12 svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x781ede79 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7994205e rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79e57a52 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c101be6 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c3fb176 svc_process EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80132279 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81b38b0b rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83011a5b rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8448cc76 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x855f0eb4 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x856b632d xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a9aa47b xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b03b10e svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b1b5657 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b658bfe __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b9e300c rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e4503ac svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f775667 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f9581c1 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90d2f373 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e03ecb5 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e19ac8e cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81cda0cd xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x824fae3f svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82e62acd xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84edb0a1 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x850e430a rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x850f2800 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86cbfe48 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88fc07c5 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89b47912 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8abf295c svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cd5e08b rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d82604e xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e0496aa xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x903c3b86 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x917ca98c xprt_adjust_cwnd EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9224516d rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94ec8eb8 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9704d4dd svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a39af17 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a8fc983 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a920f7b cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b42db10 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ca95ead svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cb7159c xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cd030ae rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e9a1218 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ee730b7 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9efb00c4 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95846416 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x961d25a1 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9678800a svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x967fe064 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x970dd1e9 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x974c8877 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97cd44ae xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98862c43 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99817c82 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99db1133 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a6fe3ce xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c332625 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cde2fb6 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d70d412 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e762fb2 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f87e4da rpc_init_pipe_dir_head EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa45c9f15 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa484f24a sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa64062e8 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa75a938d rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa919bc0d svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa269417 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa7911ef xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac0e11e8 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaccd45c0 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae87a8a3 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa15bf5d9 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2106d7e rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2380e53 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2e13701 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa49de5db auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5616c7a svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa65e66c2 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa798600e svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa92b1138 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa938a39a svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa99465bb rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9bae1b3 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9eb27ef xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae523f1b svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae6a5aca rpc_uaddr2sockaddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafbe852f svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb04654b0 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb094698e sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb117cd66 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2163919 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb27a9894 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafab0ea2 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafca370f xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafd8bdbd svc_xprt_do_enqueue EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3907fa7 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3cd49c2 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3f073a3 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb41e7533 svc_encode_result_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6560a30 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6e104e9 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7224dc2 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb915d111 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb947b0d8 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9d96226 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb62a48d rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb8de8eb auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb8e1dc2 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd23f39b rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd892bfb bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe1208e4 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbeaf0e4e rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbec7383a xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb69b1edd rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb88d8fd5 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba7a5737 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba8541c5 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbad048eb cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcff4afa write_bytes_to_xdr_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfe2c1a5 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0ae6f6b rpcauth_wrap_req_encode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc169d947 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc30400da xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3153b02 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5adae53 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5ae806e rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6796764 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6cb92e6 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc83ad38d rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc16acdb7 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc24e9b6c rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc386f0f1 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc38898cb rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6f4d4f5 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7a94d40 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7f46971 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc83be73e xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e41103 rpcauth_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca267c39 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb5ff2e1 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc53b315 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdcd33a0 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdd98c0a xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdde5d66 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc93733fa xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc98613c6 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca2dd816 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd577a08 sunrpc_cache_pipe_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf3e1d34 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd05b0f71 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1d49198 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2628819 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2a5d7b2 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2d9d65b svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd417b0cd rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd548862f rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5f0d76b svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6b7fd0f rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd86065d9 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd94ebf1d svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda5de3e6 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdad5c997 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbf4d326 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd44d9cd rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfb7c861 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd134f641 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4837feb xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd60f3c7b sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6dd890f rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7a706d2 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9a7a96a xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda7c5adb rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb53d7ea rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb73e872 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc5eb520 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcee3622 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd485f80 rpc_queue_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde901c2a svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf7efbb5 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf8da383 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe09180f5 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0964a6f xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0eb2410 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe15d29a6 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe18b8cd4 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe29e28d5 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3c4a471 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe456956a rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdee74511 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfa98fe2 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe041e821 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe16fcba0 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe43760ed svc_prepare_thread EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6dea609 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9053d15 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9589465 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe711b867 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7cf7341 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe87980c7 xprt_wake_up_backlog 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 0xe9a20c91 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9e14567 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaff73db rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebc78769 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebc968aa xdr_reserve_space_vec EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec203a0d rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeda99f96 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedb49226 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec940610 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecb7f4f2 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed0817c0 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 0xf21673b3 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf384ee3d xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf391c64a rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5dcb588 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6b59c42 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7619169 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7f7a695 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf85241d2 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d160e1 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa3af727 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa727715 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaa7af4a rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbae1dd6 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe8e301d xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff0332f6 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff4a1f65 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff681d8e rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/tls/tls 0x068f2f83 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0x56f8e128 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0x5b9ef40d tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xf90e1673 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef79b6f5 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf166d90c rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1eb8b49 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1eed07d rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2658255 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2a5e446 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf37c24e2 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf40a344e xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf71ddc7c xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7472aae xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf88fb40c rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa67e64b xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb660812 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcda61b7 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd5bbef7 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe49e2d5 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe85fb01 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff72d99a svc_max_payload +EXPORT_SYMBOL_GPL net/tls/tls 0x15de1d0d tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x2cf290f0 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x8161b8e6 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x9d0fb235 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 0x0756c1d1 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x08bde396 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1647c51d virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x19b4da84 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1c26f3f4 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x26f0cfae virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2c142b67 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3d71e0cd virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4e71b308 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5373e86a virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5b7792ed virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5b91d5f8 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62ee9286 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6a2e3517 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6c8a2025 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6f4226c2 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x737e493e virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x76653268 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x83723fea virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x83e3b78c virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8db18b75 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8e7d3cd6 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x947eee08 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x94a3e9a5 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9c94fd21 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa0a38a95 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb15e0fe6 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x18d2c98b virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x25e0146e virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2c1301ac virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x322a9df7 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3ad78f57 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3f1190f9 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x40030cbb virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x50fec16c virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x53edb2a3 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x54cf9592 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5f6cc981 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6243a899 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6a7a204a virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6fd71ba6 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x75c65439 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x86e0ee55 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8cbb12ba virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x949e4ab5 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x965f3cee virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa21de7a5 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa3284aff virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa7c70a3c virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb22d39de virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb827b6f7 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb8ba3134 virtio_transport_free_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 0xc116752d virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc4fdc55f virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc5c387b4 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc8cc0a7d virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd89c4e31 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xef949a29 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xefc859b8 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x008eacbb vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x064bc30f vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0b898cbd vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc03a8fd4 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc2d539da virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd400ea23 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xda87be8a virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe15fec40 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe45dc97d virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xea6d738e virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xead8e918 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfce20072 virtio_transport_stream_has_space EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x13f19d26 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1216413d vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x138118ef vsock_add_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x384e34bd vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2902d781 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2a6e04ea vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2e28353d vsock_add_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44420515 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4aca1ec9 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x46c6509b vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b958174 vsock_enqueue_accept EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x52001830 vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x62ed9efa vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6bf173a8 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7293197a vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x768f4df5 vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7862b998 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7e329ddb vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x67304364 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6cadbbb3 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7a686c18 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8642f0ed vsock_remove_tap 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 0xa0fca924 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa66581b1 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaec638c1 vsock_assign_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf8c1462 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc9fccf5e vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xce9c634b vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcf6a1019 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd15cebd2 vsock_stream_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd348b1f4 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd82313ce vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd9c5eed9 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xda9c7e9f vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd464c4c0 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe35d9565 vsock_core_register EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf351cdbe vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf38eabe2 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfa92e5dc vsock_core_unregister -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1546dfad cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x229cf525 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2505a6e5 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x26a74a20 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x36db867e cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x37dd9d85 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4543a0d7 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x55939a3b cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x68280e47 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x76aa903b cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8658131d cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb3400f06 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb5ec930f cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb7bec2cb cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc301f648 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf55a76d0 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x009bf272 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x23ee86e9 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x26cc7ba1 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3d0a8a6e cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4ed8a36d cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7e6e7995 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8524f9e6 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9436065e cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb20adc0e cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb51afc96 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcf0f3379 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd369f1d7 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe0a7948a cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe199b9f3 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe6415884 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe90b966a cfg80211_wext_giwscan EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported @@ -17953,29 +17962,29 @@ EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname 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 0x59a15100 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x77bf5ed0 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa26e70d5 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xaa6228d3 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3431a2ce ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x83aedcdf ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9ee0afff ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb4451bea 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/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 0x514af513 __snd_seq_driver_register EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xfb85ce6f snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2055067c amdtp_domain_start EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3ba5f381 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4516164f amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4585a065 amdtp_domain_stream_pcm_ack EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x492e89a3 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x54b4e30a amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x600e3114 amdtp_domain_start EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x684c6873 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x87e45fdd amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc2fcafb3 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6a5e6f7e amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x89406093 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xcdf6717c amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd04e8573 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdc2783ef amdtp_domain_stream_pcm_pointer EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xde6894cb amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf2876871 amdtp_domain_stream_pcm_ack EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf7e49e48 amdtp_am824_init EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfa3ef6b7 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfd6fa45e amdtp_domain_add_stream EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00a43dc9 snd_hdac_codec_link_up EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x011b5c05 snd_hdac_query_supported_pcm EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read @@ -18091,15 +18100,14 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08333b0e snd_hda_jack_set_gating_jack EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x096b8592 __snd_hda_apply_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c3ee01b snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cb6ae54 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d5a665c azx_free_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1204b500 snd_hda_mixer_amp_switch_put EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13958105 snd_hda_codec_cleanup_for_unbind EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13ca133b snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x149e7119 snd_hda_codec_load_dsp_trigger EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c6d99e4 __hda_codec_driver_register EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d7a704e snd_hda_multi_out_dig_open EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e05e432 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x218c83d8 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21d34623 azx_codec_configure EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2207e1c9 snd_hda_create_spdif_in_ctls EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x245456c4 snd_hda_codec_amp_update EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26f9ff2d _snd_hda_set_pin_ctl @@ -18107,13 +18115,12 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29ffe716 snd_hda_mixer_amp_volu EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a0a35a6 snd_hda_check_amp_caps EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a8d6adc snd_hda_add_verbs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b45b72f snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fd14863 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31e40a81 azx_stop_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3256b6f7 snd_hda_multi_out_analog_open EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34943d93 snd_hda_get_default_vref EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34a9f848 snd_hda_codec_amp_stereo EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3540042a snd_hda_codec_update_widgets EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x361c36ae snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37374072 azx_init_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ca33ce8 snd_hda_check_amp_list_power EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d2ac80d snd_hda_set_dev_select @@ -18126,15 +18133,15 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x487aedb6 snd_hda_set_vmaster_tl EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x488f4c3f snd_hda_enum_helper_info EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a02cd54 snd_hda_sync_vmaster_hook EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4aa7edd9 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b899e33 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d32fa99 azx_codec_configure EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x507771c5 snd_hda_multi_out_analog_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5247fdb7 snd_hda_get_pin_label EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54df4869 snd_hda_jack_detect_enable EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x553ea8b3 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5703379e azx_free_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57b1c82f snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b993a5a azx_bus_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c3f96f4 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f34d858 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x632326fd azx_stop_all_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63908c44 snd_hda_get_conn_list EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6430109b snd_hda_ctl_add EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6983f670 snd_hda_get_num_devices @@ -18147,6 +18154,8 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x716f6497 snd_hda_pick_pin_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x724e258f snd_hda_create_spdif_share_sw EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80dd01ca snd_hda_override_amp_caps EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81535f05 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x821da0fc azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x836a93e7 snd_hda_codec_load_dsp_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83fcbdfc snd_hda_jack_set_button_state EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86f1083c snd_hda_get_dev_select EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8953b472 snd_hda_codec_get_pin_target @@ -18161,30 +18170,31 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9abf5498 __snd_hda_codec_cleanu EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c28f0e1 snd_hda_unlock_devices EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f762faf is_jack_detectable EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0004ec3 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1c3037a snd_hda_codec_load_dsp_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3aa274d snd_hda_jack_add_kctl_mst EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa50a026d snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa76200d8 snd_hda_codec_load_dsp_trigger EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7683a06 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa80183f3 azx_get_pos_lpib EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa898756b snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaad70c81 azx_get_pos_lpib EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf69badd snd_hda_multi_out_dig_close EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3276118 snd_hda_codec_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3cff3c8 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb413e70c azx_probe_codecs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb424e06a snd_hda_mixer_amp_switch_get EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5b07989 snd_hda_sequence_write EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8e7203d snd_hda_mixer_amp_tlv EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb974a374 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb99ad36b azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba425bec azx_probe_codecs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba829387 snd_hda_lock_devices EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbaa80d13 snd_hda_mixer_amp_volume_info EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb627299 snd_hda_codec_set_pin_target EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc1106c1 snd_hda_codec_pcm_new EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd4da186 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc06fb3c4 snd_hda_codec_load_dsp_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc12cbd30 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4972d7c azx_get_position EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4cfaa45 snd_hda_jack_unsol_event EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5ade556 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf9ab4cb azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc89e8915 azx_get_pos_posbuf EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfe12b18 snd_hda_add_vmaster_hook EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1b2a4c2 snd_hda_attach_beep_device EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd391bdad snd_hda_parse_pin_defcfg @@ -18201,7 +18211,6 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee095cba snd_hda_enable_beep_device EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefac7e5d snd_hda_detach_beep_device EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf05a9183 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf169e769 azx_stop_all_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3f6a654 snd_hda_codec_eapd_power_filter EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf50531a2 snd_hda_multi_out_analog_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7f8c374 snd_hda_get_conn_index @@ -18232,83 +18241,83 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe61dbe34 snd_hda_gen_li EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf0a06029 snd_hda_gen_hp_automute EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf270ec82 snd_hda_get_path_idx EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf9cafaaf snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0xaa38b1c9 mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x18e7b3d3 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 0x45ddd30e adau1372_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x17f24594 adau1761_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x57808b64 adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5f7cb910 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x60349fdb adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2fd48ec9 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5e2867c8 adau17x1_set_micbias_voltage EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8b9148bf adau17x1_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8ca3cfff adau17x1_volatile_register EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9d31884b adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xbfbf917d adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc2839199 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb3b6cc97 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc14964db adau17x1_resume EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc8bc0b30 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd493f976 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcfc35b84 adau17x1_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf7292703 adau17x1_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x9c856dc5 adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x05bddbd6 arizona_out_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0bc8029f arizona_anc_input_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1560e7a4 arizona_anc_ng_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2a7df9dd arizona_jack_codec_dev_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2c6f7977 arizona_out_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2daa3a66 arizona_lhpf3_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x35bfd41d arizona_asrc_rate1 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x35dd9af5 arizona_jack_set_jack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x456330bc arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x12c4c3d9 arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x169c0448 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x20aa6d5b arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x318b1cd6 arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x41082268 arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4214a89b arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x425d4640 arizona_lhpf3_mode EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x479e263a arizona_adsp2_rate_controls EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x49c69e07 arizona_eq_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4db818b7 arizona_out_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5eb20adf arizona_of_get_audio_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6337fec7 arizona_init_vol_limit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x64d2bb8f arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4c3d6bb1 arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x58d789f6 arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5a48a83b arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x61cf7283 arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x63f6a33c arizona_output_anc_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6944e99c arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6a646463 arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6c4f0003 arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6c83380c arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6cd9e48c arizona_of_get_audio_pdata EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7016fbd1 arizona_lhpf_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x70382149 arizona_init_spk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x70cd177d arizona_hp_ev EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x72ce7fb3 arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7332ec61 arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7b8cebbf arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7dcd2393 arizona_jack_codec_dev_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7f26f273 arizona_mixer_texts +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7f74aed9 arizona_init_fll EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7fcb929a arizona_sample_rate_val_to_name -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8065fff6 arizona_init_dai -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x840c91c4 arizona_clk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8bdd31d2 arizona_lhpf2_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x972d4e08 arizona_init_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x974cd70f arizona_init_gpio -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9f2b0a7a arizona_init_common -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa34cafc1 arizona_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa382e918 arizona_in_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa4be69d1 arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x83fb9482 arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x85ef299f arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x87fa78ce arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8a320003 arizona_init_mono +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8ab9dab1 arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9938be6c arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9db53ea0 arizona_jack_codec_dev_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9fd86652 arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9fda6a36 arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa249fa1e arizona_in_vi_ramp EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa6b972eb arizona_voice_trigger_switch EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab6c0613 arizona_set_fll_refclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xac69e7f8 arizona_in_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xadf9fcf0 arizona_input_analog -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb8a04b2e arizona_ng_hold -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb9e493f3 arizona_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xba352b4f arizona_lhpf1_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xba711e89 arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc39e9bde arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc7029525 arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc92f1200 arizona_free_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc93e4eb4 arizona_in_dmic_osr EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcdbe8638 arizona_in_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd68e8e67 arizona_set_output_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdc468b97 arizona_anc_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xde526f6d arizona_set_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdf81a1db arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd052fec6 arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd5587752 arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd5c25769 arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd6ddac58 arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xddf6e34f 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 0xe12c803f arizona_init_mono -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe64dea70 arizona_free_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe7882777 arizona_dvfs_up -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe80d04e8 arizona_lhpf4_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe95f3da5 arizona_isrc_fsh -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf46018e4 arizona_dvfs_sysclk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf4b89909 arizona_in_dmic_osr -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf95c6d23 arizona_dvfs_down -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfdaca6c2 arizona_jack_codec_dev_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x52016e9c cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe42a4df4 arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe8a3ae77 arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xec9484ed arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf3da23b5 arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf40c690d arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfe0d0bf6 arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x5c2c81c6 cs35l41_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x75085690 cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x85cddd0b cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xa95f8b0f cs35l41_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x005b4b2f cs35l41_boost_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x46c703f8 cs35l41_test_key_unlock EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x50694002 cs35l41_test_key_lock @@ -18331,27 +18340,27 @@ EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x3a0b490e cs42xx8_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xccf50c2c cs42xx8_pm EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xa66f1738 da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xc0876c5d da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xc0bd883a da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x19981c17 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x57da006b da7219_aad_jack_det EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xd1796c36 da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xdddf632a da7219_aad_init EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x34fe3e81 es8328_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc94fb40e es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x301daccd max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x1b610752 max98095_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x41b7d919 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x100fa947 max98095_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x399b0bb4 max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x46ff0f75 soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x656744d5 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x448fe514 soc_codec_dev_max98373_sdw EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xe377e2cf max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x262d5f05 mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x8ae09f98 mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x969cf59e mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x9bf6d78f mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x2c01e570 mt6359_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x307d8f76 mt6359_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x61250d6a mt6359_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xc67b0b03 mt6359_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xca133e0c nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xfc3c4ec1 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x2901cf03 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x3dc5932e mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x5bd00b1d mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xdb442fc8 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x43efaf3b mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x44a201d4 mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xa56e13dd mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xb9d91640 mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xe486369c nau8824_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x29d20ed6 pcm1789_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x8cf146e0 pcm1789_common_exit EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xe3427254 pcm1789_common_init @@ -18373,184 +18382,184 @@ 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 0x66425677 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x7a0f581d rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x873bcac4 rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x9b74a9bd rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xd14f903a rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf11efefc rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x3c31f8ee rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x96bd9500 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x4d50131d rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x2560a2e1 rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x0d7deb39 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x059f1235 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x12db893c rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x22816aa6 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x58985af4 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x700233a6 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xa444c2e8 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x71678252 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xc508957a rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x50510564 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xdf3a3fc8 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xf68e1aea 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 0x1699faa9 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x02e87f18 rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x056db477 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0aa4c569 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1ce7a2b4 rt5682_calibrate EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x670c9ad0 rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7a27c7d9 rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x82576e2b rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3f2d2053 rt5682_parse_dt EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x91079df2 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9a2874c4 rt5682_calibrate EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9e57d36f rt5682_volatile_register EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc0ac463b rt5682_register_dai_clks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xca19ecec rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xcdcb9ebb rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc2f30699 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd52ffcd0 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe1937e6a rt5682_aif1_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe67ed3bd rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfdae41aa rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x567a6a98 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x59c71ca9 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x821c9ea4 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa81fc3ad sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xbc624d66 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xeff20fdb rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0cacd6d7 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4322ce5f sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x778348e0 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x819979b8 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc291d8b7 sigmadsp_reset EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xd1de6f1d devm_sigmadsp_init_i2c EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xf7254a78 devm_sigmadsp_init_regmap EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xab81e511 ssm2602_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xcbd95d31 ssm2602_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6a404916 aic32x4_register_clocks EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x41e0e7f6 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x7ee8caeb ts3a227e_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x1ea3275d twl6040_get_clk_id -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x5a19da68 twl6040_get_dl1_gain -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x5a7cc0d7 twl6040_hs_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x7f72877c twl6040_get_trim_value -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xe8f493ca twl6040_get_hs_step_size +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xd78e8965 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x080f6e20 twl6040_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x5ebdc6d1 twl6040_get_hs_step_size +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x7bf98704 twl6040_get_clk_id +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xa15520a5 twl6040_get_dl1_gain +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xb03ec804 twl6040_get_trim_value 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 0x1b2a1624 wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x3b5a9fa8 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x07b692c0 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x183e41fe wcd938x_sdw_set_sdw_stream EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x64ba127d wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xd608a1d0 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xad5afc39 wcd938x_sdw_hw_params EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xf6a896c1 wcd938x_sdw_device_get EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0460fd38 wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x16666f58 wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1d1f0bac wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x23c7a016 wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2b6dd10a wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2cae3b37 wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3148e8fd wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x061c1290 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0923408a wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1daff936 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2633babe wm_adsp_compr_open EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x36a56ba9 wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x41f6c348 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x434d0a10 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4e8b131d wm_adsp_compr_free 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 0x5f756913 wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6736eac0 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6a0524a9 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x627bbac9 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6c4b16fb wm_adsp_write_ctl EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6db0ff82 wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x76bf1725 wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7e48c4df wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9527578e wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa18e2d94 wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa8378a54 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xac3f4b12 wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaeaa6161 wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc09df235 wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcb446b37 wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd81f2ce7 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7201f7d7 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x77f67392 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x79c6c971 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8f6f4c2b wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa73e726c wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaa4e8a0f wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaad1e6bb wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb0d91cab wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbb662e76 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd35180c6 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd3c44b84 wm_adsp_compr_trigger EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe48289c0 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe7350f3a wm_adsp1_event EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xed9fef7b wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x013859dd wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf4d01bbd wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x26278015 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 0x68ed131e wm_hubs_vmid_ena 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 0x78642f75 wm_hubs_vmid_ena -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x8b1314dd wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xaffaf966 wm_hubs_add_analogue_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xb46ddb02 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xaa55aedd wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xacbfcee4 wm_hubs_set_bias_level EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc55caad3 wm_hubs_hpl_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xe3bf16ff wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xe359968d wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xea5914fb wm_hubs_handle_analogue_pdata EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xfc80c938 wm_hubs_hpr_mux EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x119877bc wm8804_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x40235a53 wm8804_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x536099dd wm8804_pm EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x9e6c251a wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xf3c92e39 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xd82c06b9 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xb8f70aa3 wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xfda0cc6a wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x7865d3a2 fsl_asrc_component -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0x75b50884 audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0e2ae003 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x01f49fae wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x3b36cfab wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x44f9ca55 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x65d5e7e4 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xbd1bca75 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0x2ef17510 audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0692aa87 asoc_simple_clean_reference EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0fe06a5f asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x11261beb asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x15a65271 asoc_simple_parse_card_name EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x246b8048 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x28601325 asoc_simple_init_priv EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x32eb6e3a asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x482a8318 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4fb499ba asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x510a6724 asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x734da8a3 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8188b260 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x827e1624 asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9087f3c5 asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa0e255c5 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3b60c97e asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x40b349e1 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x76837220 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8e2ef1b8 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb647082b asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbcb72757 asoc_simple_be_hw_params_fixup EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc1fd2e07 asoc_simple_canonicalize_platform EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc7321a53 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcad9b2fe asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xda91021d asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe013e48b asoc_simple_dai_init EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe4636698 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe6c0c26e asoc_simple_parse_card_name EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe862df9e asoc_simple_canonicalize_cpu EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xee38c333 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 0xf9bf1076 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x097a1570 mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x24c675b4 mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2a926841 mtk_memif_set_pbuf_size -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2e5e32bc mtk_memif_set_rate -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2ed1f27e mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3d27d066 mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x49138783 mtk_memif_set_channel -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5172f299 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0eac6da5 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x12e61ce1 mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x22756810 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3b325752 mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4390c691 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4cbc8585 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x501d88e2 mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5030edfe mtk_afe_fe_hw_params EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x527dc02d mtk_memif_set_rate_substream -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x671e7422 mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6c816738 mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x71a78b57 mtk_memif_set_enable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x774fc297 mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x77fb8d4a mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7850b50f mtk_afe_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x820dd2d9 mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8c9b110c mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8d53c90e mtk_memif_set_disable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x914f90d9 mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdca84a08 mtk_afe_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe3e982b1 mtk_memif_set_format -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe520d391 mtk_afe_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe59cdced mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf8851a04 mtk_memif_set_addr -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x557410c0 mt8195_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xabb9391a mt8195_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x293355ee axg_fifo_pcm_hw_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x3ec31c38 axg_fifo_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x412dd963 axg_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x45c0a0ad axg_fifo_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x5e767789 axg_fifo_pcm_trigger -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x856cd0c7 axg_fifo_pcm_open -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x8bb7d33c axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb663e7e6 g12a_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xc76f8b94 axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5489085d mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5d0870ab mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6f35d561 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x81376f77 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x83c303b4 mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8bfdaf71 mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9a86872c mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa088944c mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa1b98bcb mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xaa1356f9 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb356f84e mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe626d20e mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf6390c89 mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf7226511 mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf8cb2375 mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x41f61892 mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xcfec00f0 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x47146fe6 axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x53a1e04b g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x5f240066 axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x62ff42a5 axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x64167de0 axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb5fcf745 axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb7e255c4 axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd6664c3e axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe7b8ced8 axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x03702c90 axg_tdm_formatter_event 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 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 0x844d6eb0 axg_tdm_formatter_event EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x970060bd axg_tdm_stream_start -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xcb9d9ada axg_tdm_formatter_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0xed150bce axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x527480d8 meson_card_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x56925f36 meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x9898296f axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x926f4548 axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x06d48dc7 meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x22118a52 meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x3d18d9be meson_card_reallocate_links EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x60766808 meson_card_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x65f92a95 meson_card_parse_dai EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x8fbb959a meson_card_i2s_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xb9e80fbc meson_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xc15bc694 meson_card_reallocate_links -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xf39cb74b meson_card_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x0f816f8f meson_codec_glue_input_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x6647bf7b meson_codec_glue_output_startup -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x95e14887 meson_codec_glue_input_dai_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x9647a7b1 meson_codec_glue_input_dai_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xaced9c5f meson_codec_glue_input_set_fmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xe5c66ea3 meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xa6b58a8a meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe537d471 meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe74b4eff meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x5d004a9e meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x659d1f5f meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x97cb2c28 meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xeb25ee6f meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xebf19741 meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xf1ddabc9 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 0xb1a529a5 q6adm_close EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xb56afc2b q6adm_open @@ -18594,32 +18603,32 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_inf 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 0x0564301f asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x343baba6 asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x6a6c119b asoc_qcom_lpass_cpu_platform_shutdown -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x8c08b901 asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xa79cea57 lpass_cpu_pcm_new -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xc92ffae0 asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xef63092b asoc_qcom_lpass_hdmi_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xa6e9fe30 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x05837ff4 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x05d60d52 lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x7cca37b0 asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x994b1a84 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xaea107d7 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xcfc2a701 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x38683698 asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xe7a7afbe asoc_qcom_lpass_platform_register EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0xad201905 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 0x2a249bb2 samsung_asoc_dma_platform_register -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x0d10f592 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x992382e6 snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xb435b71f snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xb8647114 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xdc1ac7ba snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x89049fab tegra_asoc_machine_probe -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xaff4fc46 tegra_asoc_machine_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x23970bdc tegra_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x441e1461 tegra_pcm_platform_register_with_chan_names -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x447ba54a tegra_pcm_open -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x5badfeee tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x246536ba snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x6f7c5e2f snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x81cfce27 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x9da232f0 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xb6cb29b0 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x23508ffb tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x8942ae07 tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x3d211520 tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x54462d27 tegra_pcm_hw_params EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x68a1f5bb tegra_pcm_platform_register EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x6ac20885 tegra_pcm_platform_unregister -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xb4c10575 tegra_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xe061c132 tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x6c88eca0 tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x7d7914c8 tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x9f170981 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xf050ce25 tegra_pcm_pointer 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 @@ -18635,18 +18644,18 @@ EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xc78c7125 tegra30_ahub_ EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccb67e55 tegra124_ahub_set_cif EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccc98372 tegra30_ahub_enable_rx_fifo EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xe549513a tegra30_ahub_unset_rx_cif_source -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcbsp 0xe6907253 omap_mcbsp_st_add_controls -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcpdm 0x6496743f omap_mcpdm_configure_dn_offsets +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcbsp 0x0058eb32 omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcpdm 0x232a2030 omap_mcpdm_configure_dn_offsets EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x944aa3d2 edma_pcm_platform_register EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0xdb2c49a2 sdma_pcm_platform_register EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xb2d74b7d udma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x200f88a8 uniphier_aio_dai_probe -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x2f0fd2fa uniphier_aio_probe -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x3d237428 uniphier_aio_dai_remove -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xca008689 uniphier_aiodma_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xcea2b9f4 uniphier_aio_spdif_ops -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xeece90a7 uniphier_aio_remove -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xf95ee0a9 uniphier_aio_i2s_ops +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x4e156e82 uniphier_aio_probe +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x76965925 uniphier_aio_dai_remove +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x82aa0b96 uniphier_aio_remove +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xa75bd28f uniphier_aio_i2s_ops +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xa8a0a9d0 uniphier_aio_dai_probe +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xc5ab3555 uniphier_aio_spdif_ops +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xf97a7afb uniphier_aiodma_soc_register_platform EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1ebc7f7b 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 0x2dcb6128 line6_send_raw_message @@ -18669,68 +18678,69 @@ 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 0x00093b64 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x0010364f wm8350_set_bits EXPORT_SYMBOL_GPL vmlinux 0x00159999 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x00181c12 validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0x001a197c dma_release_channel EXPORT_SYMBOL_GPL vmlinux 0x002580ca kernel_kobj EXPORT_SYMBOL_GPL vmlinux 0x002949ec da9052_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x002cf633 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x0031340d devlink_free EXPORT_SYMBOL_GPL vmlinux 0x0031f271 serial8250_rpm_put_tx EXPORT_SYMBOL_GPL vmlinux 0x0039c7d2 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x003bb19a blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0x0040395a irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x0048984c snd_soc_component_read_field EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x0053e821 tracepoint_probe_register_prio_may_exist EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x007901fb ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0x00805fbc mtk_mmsys_ddp_connect EXPORT_SYMBOL_GPL vmlinux 0x008468b0 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x0086143b snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL vmlinux 0x00a35064 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x00a6cfbb unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x00b2bbc2 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x0091c530 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x009767bc devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x00b9cc27 of_clk_src_simple_get EXPORT_SYMBOL_GPL vmlinux 0x00c70e45 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x00c9cc02 sdio_retune_hold_now EXPORT_SYMBOL_GPL vmlinux 0x00ce0d8d dm_disk EXPORT_SYMBOL_GPL vmlinux 0x00ce3004 fsl_mc_device_group EXPORT_SYMBOL_GPL vmlinux 0x00d2b4db usb_add_phy_dev EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00d880b4 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x00dd0d2f sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x00edb733 device_show_ulong EXPORT_SYMBOL_GPL vmlinux 0x00eebd5d component_add EXPORT_SYMBOL_GPL vmlinux 0x0101ac77 bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0x0101ad8b devm_clk_bulk_get_all EXPORT_SYMBOL_GPL vmlinux 0x0106d101 of_icc_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x010ff5e1 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x0113f99d nf_route EXPORT_SYMBOL_GPL vmlinux 0x01154353 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x01194e3d lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0x011d9d35 devm_gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x013227b5 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x0134f331 sdhci_set_data_timeout_irq EXPORT_SYMBOL_GPL vmlinux 0x0135bc6c snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0x013fc178 i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale -EXPORT_SYMBOL_GPL vmlinux 0x0158a9c6 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0x015a9b39 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x0168d738 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x015d7942 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x016bbb72 ata_sas_queuecmd EXPORT_SYMBOL_GPL vmlinux 0x0175348c pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x0179bb28 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x0178dc7c device_link_remove EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0187596e scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0x01908cdf genphy_c45_an_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x019c0695 devm_nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x01a0871b serial8250_do_get_mctrl EXPORT_SYMBOL_GPL vmlinux 0x01a8106c bd_link_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x01af56a2 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x01b9e586 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x01b77901 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x01bb95f6 icc_put EXPORT_SYMBOL_GPL vmlinux 0x01bd6764 handle_fasteoi_nmi EXPORT_SYMBOL_GPL vmlinux 0x01c078ce of_pci_get_max_link_speed EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01ce7ee7 ata_scsi_slave_config EXPORT_SYMBOL_GPL vmlinux 0x01d01c12 serial8250_get_port EXPORT_SYMBOL_GPL vmlinux 0x01d0a758 mmu_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x01d2e766 tegra_bpmp_transfer EXPORT_SYMBOL_GPL vmlinux 0x01d6e059 bus_sort_breadthfirst EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e67b6e gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x01ee82d9 devlink_sb_register EXPORT_SYMBOL_GPL vmlinux 0x01f70b09 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x01fc50f6 metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0x0200ae12 of_mm_gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x02069b80 regulator_enable_regmap EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire @@ -18738,55 +18748,52 @@ EXPORT_SYMBOL_GPL vmlinux 0x02126c72 bus_create_file EXPORT_SYMBOL_GPL vmlinux 0x021426c0 ahci_platform_enable_clks EXPORT_SYMBOL_GPL vmlinux 0x0220118e devm_rtc_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x024cfb4f crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x02504785 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x025a134c security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x023971b0 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x0259406d spi_split_transfers_maxsize EXPORT_SYMBOL_GPL vmlinux 0x026f3380 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x027f22cf dev_pm_qos_flags EXPORT_SYMBOL_GPL vmlinux 0x0291a8e0 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x029228b1 snd_soc_dapm_force_enable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0x0295a2e5 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x02995583 ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0x02aa025d usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x02ac9b2c sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0x02bb420f snd_soc_component_write_field EXPORT_SYMBOL_GPL vmlinux 0x02bb97ba __fput_sync EXPORT_SYMBOL_GPL vmlinux 0x02c4c456 rhashtable_walk_exit EXPORT_SYMBOL_GPL vmlinux 0x02c722de pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0x02c731b1 task_cgroup_path EXPORT_SYMBOL_GPL vmlinux 0x02d1477e mtd_get_device_size EXPORT_SYMBOL_GPL vmlinux 0x02dcc92b blk_mq_unquiesce_queue EXPORT_SYMBOL_GPL vmlinux 0x02ea61a6 dax_flush EXPORT_SYMBOL_GPL vmlinux 0x02f40968 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x02f6807b bio_start_io_acct_time -EXPORT_SYMBOL_GPL vmlinux 0x0311aa1c of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x0305c396 thermal_zone_unbind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x03193f8a l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0x031c8aea kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0x031cb2ab sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0x03218e88 regmap_field_read EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032c5d1b __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x03315f0c btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0334f0ae devm_platform_ioremap_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk EXPORT_SYMBOL_GPL vmlinux 0x033a42d1 mtd_ooblayout_ecc EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034a6290 console_drivers EXPORT_SYMBOL_GPL vmlinux 0x0356ed1b class_dev_iter_next EXPORT_SYMBOL_GPL vmlinux 0x036d8e9b klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x0375605e regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x037881c6 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x0377e176 skcipher_alloc_instance_simple EXPORT_SYMBOL_GPL vmlinux 0x037f3a1f usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x038f187e sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x038defc0 regmap_test_bits EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03956f97 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x0396137a snd_soc_dai_compr_get_metadata EXPORT_SYMBOL_GPL vmlinux 0x0397abf3 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x0397d95f snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL vmlinux 0x03a7962a crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x03aab66f nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0x03b2623e __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x03b3013e bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0x03bb5057 mtd_unlock -EXPORT_SYMBOL_GPL vmlinux 0x03bf9dc0 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x03cb82ba __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x03d4e3d7 em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0x03d86eb4 __netpoll_cleanup EXPORT_SYMBOL_GPL vmlinux 0x03db1355 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x03db208e tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0x03e28260 sbitmap_queue_wake_up EXPORT_SYMBOL_GPL vmlinux 0x0407fe60 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x040ba634 tegra_xusb_padctl_legacy_probe EXPORT_SYMBOL_GPL vmlinux 0x041dd463 of_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x041fe152 dm_put EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get @@ -18794,77 +18801,68 @@ EXPORT_SYMBOL_GPL vmlinux 0x04390196 led_set_brightness_sync EXPORT_SYMBOL_GPL vmlinux 0x043ab7de __dma_request_channel EXPORT_SYMBOL_GPL vmlinux 0x04440651 fat_dir_empty EXPORT_SYMBOL_GPL vmlinux 0x04461855 blk_poll +EXPORT_SYMBOL_GPL vmlinux 0x044b9e43 snd_soc_dapm_init +EXPORT_SYMBOL_GPL vmlinux 0x0451ddf8 clk_hw_round_rate EXPORT_SYMBOL_GPL vmlinux 0x045883d0 __devm_regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0x045d5027 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x045f3c4a nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x04752587 devres_remove_group EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x048e4053 snd_soc_dpcm_get_substream EXPORT_SYMBOL_GPL vmlinux 0x04a1526e iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x04add004 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x04a3fa5e thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x04a73b77 devlink_region_snapshot_id_put EXPORT_SYMBOL_GPL vmlinux 0x04ae4635 trace_handle_return EXPORT_SYMBOL_GPL vmlinux 0x04bd82e4 fb_deferred_io_init EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04cb46f8 ata_sas_port_alloc EXPORT_SYMBOL_GPL vmlinux 0x04cf9147 kthread_queue_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x04d340f5 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x04d50531 event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0x04dcce4e remove_resource EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x0504b29d devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x04f43ab1 crypto_register_templates EXPORT_SYMBOL_GPL vmlinux 0x0508ef18 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x050c0049 rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0x0513e1b9 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x05196b49 __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x0526df69 dm_get_md EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x053528c7 i2c_recover_bus EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x053fe166 of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x05442d7a snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL vmlinux 0x054d732b regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt EXPORT_SYMBOL_GPL vmlinux 0x0557daae dev_pm_opp_get_max_volt_latency EXPORT_SYMBOL_GPL vmlinux 0x055d7450 generic_fh_to_parent EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll -EXPORT_SYMBOL_GPL vmlinux 0x0587189f __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x0580886b crypto_register_template EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058effd6 inet6_destroy_sock EXPORT_SYMBOL_GPL vmlinux 0x0598baf1 edac_pci_release_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0x05a12e98 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x05bf4246 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x05aa2db0 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x05b86849 sdhci_set_uhs_signaling EXPORT_SYMBOL_GPL vmlinux 0x05c310e6 blkdev_nr_zones EXPORT_SYMBOL_GPL vmlinux 0x05c93cab __tracepoint_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x05e196af usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x05e5b6db __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0x05f3dc25 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0603ea60 crypto_grab_shash EXPORT_SYMBOL_GPL vmlinux 0x06050c3e rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x06054586 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x060ffa34 snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL vmlinux 0x06102e5b device_store_bool EXPORT_SYMBOL_GPL vmlinux 0x06122337 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0615ec29 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x062a604e ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0629a7dd device_store_int EXPORT_SYMBOL_GPL vmlinux 0x062b62a0 devm_spi_mem_dirmap_create EXPORT_SYMBOL_GPL vmlinux 0x0638a0ee pci_epc_get_msix EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry EXPORT_SYMBOL_GPL vmlinux 0x065515a0 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x066172af platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x06677bb9 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0x0673ebfe sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x069a0b7a usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0x06a27a87 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x06619d6a of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x0671d4bb platform_get_resource EXPORT_SYMBOL_GPL vmlinux 0x06b53bd2 memalloc_socks_key EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off EXPORT_SYMBOL_GPL vmlinux 0x06d2b195 btree_init EXPORT_SYMBOL_GPL vmlinux 0x06e909d4 devm_pm_opp_set_supported_hw EXPORT_SYMBOL_GPL vmlinux 0x06e92aea nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x06fb617a device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0x07009b7f debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x070d8670 tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x0710e4c6 devm_usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0x0714cd84 da903x_write EXPORT_SYMBOL_GPL vmlinux 0x0721a5ea devm_power_supply_register_no_ws @@ -18873,70 +18871,68 @@ EXPORT_SYMBOL_GPL vmlinux 0x0725e4f2 relay_flush EXPORT_SYMBOL_GPL vmlinux 0x07285f0a usb_check_bulk_endpoints EXPORT_SYMBOL_GPL vmlinux 0x0732ce1a sbitmap_queue_wake_all EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x075c7dda gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x075266a3 ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0x07613c35 of_property_read_variable_u8_array EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07819fbe espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07c39d0c __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x07c691b5 blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0x07c6f33b devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x07c9fb43 unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0x07e32ff9 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x07ee8550 __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0x07f214ef serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x07f53024 devm_clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x07f5bfed __tracepoint_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x07f84a1a usb_hcd_start_port_resume EXPORT_SYMBOL_GPL vmlinux 0x07f9b7de nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x07fdf5b1 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x08018c5f spi_new_device EXPORT_SYMBOL_GPL vmlinux 0x0804d9cd hvc_alloc EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache EXPORT_SYMBOL_GPL vmlinux 0x08207eed genphy_c45_read_lpa EXPORT_SYMBOL_GPL vmlinux 0x082313b3 power_supply_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x0827ede3 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x0828ca89 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x0831654a ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x08417488 synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0x08417ac9 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x0838b979 __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x0849290f pci_epc_map_addr EXPORT_SYMBOL_GPL vmlinux 0x084dee9a pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x084f097b sdhci_reset EXPORT_SYMBOL_GPL vmlinux 0x08630648 component_master_del EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match EXPORT_SYMBOL_GPL vmlinux 0x088c9c00 nand_ecc_restore_req +EXPORT_SYMBOL_GPL vmlinux 0x0893f000 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x0898a5df snd_soc_component_get_pin_status EXPORT_SYMBOL_GPL vmlinux 0x08ad52d6 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x08cdf2fd vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0x08cf70ae rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x08da824d snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0x08d99c66 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x08e2c926 cros_ec_get_sensor_count EXPORT_SYMBOL_GPL vmlinux 0x08e45de5 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x08e614e1 ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0x08ec51c5 tpm_get_timeouts EXPORT_SYMBOL_GPL vmlinux 0x08ece521 led_set_brightness_nopm EXPORT_SYMBOL_GPL vmlinux 0x08f60b3a max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x08f945f9 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x08fdefd1 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x0900c9e8 security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0x09107978 of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x0915a116 wwan_port_rx EXPORT_SYMBOL_GPL vmlinux 0x091b00da phy_put EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies EXPORT_SYMBOL_GPL vmlinux 0x092d29be regulator_disable_regmap EXPORT_SYMBOL_GPL vmlinux 0x09311dd8 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x09315623 skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0x09452b24 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x09477317 tracing_snapshot_cond EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox EXPORT_SYMBOL_GPL vmlinux 0x09508341 usb_phy_get_charger_current EXPORT_SYMBOL_GPL vmlinux 0x0963278f devm_clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x097140b3 exportfs_decode_fh_raw EXPORT_SYMBOL_GPL vmlinux 0x09767f27 dma_mmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x0979b194 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x097d3bd3 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x098532b4 sdhci_cqe_enable +EXPORT_SYMBOL_GPL vmlinux 0x0982c5b2 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x099b2399 of_css EXPORT_SYMBOL_GPL vmlinux 0x09a13d16 usb_ep_enable +EXPORT_SYMBOL_GPL vmlinux 0x09abdcad fwnode_get_name EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09daa9b0 snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL vmlinux 0x09e23584 sata_link_debounce EXPORT_SYMBOL_GPL vmlinux 0x09e53260 __tracepoint_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x0a1e1251 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x09ed2eb5 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x09f28095 security_path_rmdir EXPORT_SYMBOL_GPL vmlinux 0x0a3408e4 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0x0a36421f iommu_group_remove_device EXPORT_SYMBOL_GPL vmlinux 0x0a36d483 iommu_sva_unbind_gpasid @@ -18945,208 +18941,215 @@ EXPORT_SYMBOL_GPL vmlinux 0x0a3a5fe4 gov_attr_set_get EXPORT_SYMBOL_GPL vmlinux 0x0a3ae17a pinctrl_remove_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x0a3e5895 serdev_device_remove EXPORT_SYMBOL_GPL vmlinux 0x0a4f2065 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0a5673a1 sdio_release_irq EXPORT_SYMBOL_GPL vmlinux 0x0a58382e sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x0a5aadf4 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x0a5d1116 msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0x0a667480 pinctrl_lookup_state EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a78701f udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x0a98d0d3 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x0aaa36e6 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0x0a73d29a __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x0a762d75 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x0a793356 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x0a83d958 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x0a8eadc8 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x0a95b77d synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x0ab0fcf2 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x0ab853d0 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0aba1faa pwm_capture EXPORT_SYMBOL_GPL vmlinux 0x0ad85f0a xhci_update_hub_device -EXPORT_SYMBOL_GPL vmlinux 0x0ae655e8 spi_async EXPORT_SYMBOL_GPL vmlinux 0x0afe48d9 syscon_regmap_lookup_by_phandle_optional EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct EXPORT_SYMBOL_GPL vmlinux 0x0b12ee5e iommu_group_add_device EXPORT_SYMBOL_GPL vmlinux 0x0b19b18f register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x0b1c69b5 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x0b1c1b4c is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x0b1d3bae crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0x0b22ccf8 usb_reset_configuration EXPORT_SYMBOL_GPL vmlinux 0x0b2970fe klist_iter_init EXPORT_SYMBOL_GPL vmlinux 0x0b2d6078 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x0b30c1ee gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x0b397760 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x0b3af32a icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x0b38d548 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x0b3f57f0 ip6_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x0b4a8834 musb_writeb -EXPORT_SYMBOL_GPL vmlinux 0x0b534ce3 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x0b63d691 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0x0b6e2132 ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x0b71d45d fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x0b78e6ed snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0x0b83cbfd vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x0b8e1c72 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x0b90de95 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x0b946881 snd_soc_dai_get_channel_map EXPORT_SYMBOL_GPL vmlinux 0x0b989fa8 mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x0b9a1a8c crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x0b9d95c2 ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x0babaa67 device_driver_attach EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x0bb4ca8d of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x0bc068f5 gpiochip_line_is_irq EXPORT_SYMBOL_GPL vmlinux 0x0bc1ec1e __sbitmap_queue_get EXPORT_SYMBOL_GPL vmlinux 0x0bc90f3e clk_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0x0bc9b6a8 of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0x0bd370dc inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bf40679 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x0bf6ea8f pwm_free EXPORT_SYMBOL_GPL vmlinux 0x0bf70164 debugfs_create_x64 EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bfa5753 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x0bffd20a ata_scsi_queuecmd EXPORT_SYMBOL_GPL vmlinux 0x0c00a15c sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x0c04efb7 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x0c0612f8 regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x0c09e331 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x0c186bb7 perf_aux_output_flag EXPORT_SYMBOL_GPL vmlinux 0x0c21dc3e usb_control_msg_recv EXPORT_SYMBOL_GPL vmlinux 0x0c2a84ac ti_cm_get_macid EXPORT_SYMBOL_GPL vmlinux 0x0c303f52 bch_encode EXPORT_SYMBOL_GPL vmlinux 0x0c318fb8 hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c33e931 sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0x0c3c7f82 bus_get_kset EXPORT_SYMBOL_GPL vmlinux 0x0c4023ef of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x0c4384e6 crypto_stats_rng_seed EXPORT_SYMBOL_GPL vmlinux 0x0c4b0a6e iommu_uapi_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x0c531a0b devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0x0c56769b iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x0c5b0944 rq_flush_dcache_pages EXPORT_SYMBOL_GPL vmlinux 0x0c5ec35c bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x0c5ef758 ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0x0c609578 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x0c825215 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x0c7536a8 xfrm_output_resume EXPORT_SYMBOL_GPL vmlinux 0x0c82f6ad pci_probe_reset_slot EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c88cfe8 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x0c8946ba udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x0cab361f gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0x0cb89ede regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0cbc8e8f __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x0cdbcbff snd_soc_jack_add_pins EXPORT_SYMBOL_GPL vmlinux 0x0cdc1c96 cros_ec_check_features EXPORT_SYMBOL_GPL vmlinux 0x0cdd03f5 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x0cf63a24 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x0cff29b5 shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0x0d12e252 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0d16c8c7 icc_node_create EXPORT_SYMBOL_GPL vmlinux 0x0d1f8b07 blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x0d210b1b scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0x0d2c1e07 devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x0d3c566b snd_soc_find_dai 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 0x0d5a5939 cpu_topology EXPORT_SYMBOL_GPL vmlinux 0x0d63ab8b __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x0d69c510 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x0d6c085d platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x0d74985a crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x0d645282 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x0d72d7fd aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0x0d81b111 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x0d85f932 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x0d905071 mmc_send_abort_tuning EXPORT_SYMBOL_GPL vmlinux 0x0d9fb3b9 dev_pm_domain_start EXPORT_SYMBOL_GPL vmlinux 0x0daa2fb6 pci_vpd_alloc EXPORT_SYMBOL_GPL vmlinux 0x0db04509 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x0db2a6bf tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0x0dc3e1af netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0db3d2ed mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate EXPORT_SYMBOL_GPL vmlinux 0x0dd4437d pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0dd7acf6 gpiod_set_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de09e9e devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x0de126e6 crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0x0dffccef bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0e21f21b __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0e01caa6 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x0e1343b6 crypto_register_rngs EXPORT_SYMBOL_GPL vmlinux 0x0e40b6c9 snd_dmaengine_pcm_request_channel EXPORT_SYMBOL_GPL vmlinux 0x0e48b525 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x0e4c6978 imx_pcm_fiq_init -EXPORT_SYMBOL_GPL vmlinux 0x0e4fb140 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0x0e52535c fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0x0e5b4975 __tracepoint_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e6d4248 call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x0e8ba109 edac_mc_add_mc_with_groups EXPORT_SYMBOL_GPL vmlinux 0x0e978fdf devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x0ebd5324 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x0ec19ad2 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x0e9e25c8 unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x0ece0a18 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x0ee086dc perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x0eeb46e7 dapm_regulator_event EXPORT_SYMBOL_GPL vmlinux 0x0eeb5417 __kprobe_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x0ef13592 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x0f05727b __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x0eec86c2 dapm_pinctrl_event +EXPORT_SYMBOL_GPL vmlinux 0x0f0202da ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x0f09e075 regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x0f1185a8 ata_timing_compute EXPORT_SYMBOL_GPL vmlinux 0x0f160a88 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x0f17f7af regulator_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page EXPORT_SYMBOL_GPL vmlinux 0x0f2da3dc rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f2eb113 sdio_retune_crc_enable EXPORT_SYMBOL_GPL vmlinux 0x0f452a47 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x0f4781ff gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x0f4ebebb balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x0f507a90 wbt_enable_default EXPORT_SYMBOL_GPL vmlinux 0x0f6a3f32 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x0f6d7bea snd_soc_add_component_controls EXPORT_SYMBOL_GPL vmlinux 0x0f7a57f5 dev_pm_opp_get_level EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f890cda ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0f9dbdf5 fib_nh_common_init EXPORT_SYMBOL_GPL vmlinux 0x0f9f5a4b iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x0fae2bdd devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x0faed100 spi_res_release EXPORT_SYMBOL_GPL vmlinux 0x0fb44049 tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0x0fc051fb regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x0fcecb9d regmap_exit EXPORT_SYMBOL_GPL vmlinux 0x0fd3f125 usb_get_maximum_speed EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj EXPORT_SYMBOL_GPL vmlinux 0x0ff1e97e pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x0ff80b5b __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x100359e4 stop_machine EXPORT_SYMBOL_GPL vmlinux 0x100a15d4 snd_card_add_dev_attr EXPORT_SYMBOL_GPL vmlinux 0x100f8a08 pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1014c29e gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0x1016e732 __blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0x1019bb16 spi_mem_poll_status EXPORT_SYMBOL_GPL vmlinux 0x102c5d71 bus_register EXPORT_SYMBOL_GPL vmlinux 0x102c6b8e usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x10367ec5 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x102d72ef bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0x103b352a __rio_local_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0x1043cac3 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0x1049609f crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x104bed28 sock_prot_inuse_add EXPORT_SYMBOL_GPL vmlinux 0x106ad9e1 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x106ef45d ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x10766cba blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0x1090b8d6 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x1097f78c sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL vmlinux 0x109c8a51 mmc_sanitize -EXPORT_SYMBOL_GPL vmlinux 0x109f1259 thermal_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x109fd145 devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x10b56e17 blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x10b6cce2 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x10ac8617 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x10ae711c device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0x10bab9d0 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x10c02e42 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x10cad10d wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x10c3bfca ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x10eb2f73 ahci_start_engine EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable EXPORT_SYMBOL_GPL vmlinux 0x10f90c3d __put_mtd_device EXPORT_SYMBOL_GPL vmlinux 0x11048058 iomap_seek_data EXPORT_SYMBOL_GPL vmlinux 0x1104c4d5 trace_seq_puts EXPORT_SYMBOL_GPL vmlinux 0x1107da1b usb_gadget_connect +EXPORT_SYMBOL_GPL vmlinux 0x1107eb05 yield_to EXPORT_SYMBOL_GPL vmlinux 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL vmlinux 0x111755c4 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x112c04c6 sata_link_scr_lpm EXPORT_SYMBOL_GPL vmlinux 0x113fdb47 mtk_pinconf_drive_get EXPORT_SYMBOL_GPL vmlinux 0x11434e85 subsys_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x114a3740 __tracepoint_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x114a49da serdev_device_add EXPORT_SYMBOL_GPL vmlinux 0x11526c9a meson_clk_pll_ops EXPORT_SYMBOL_GPL vmlinux 0x1157d064 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x11582be6 net_selftest EXPORT_SYMBOL_GPL vmlinux 0x116a55f1 __clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0x116d7eca adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x1174b99e __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x117c71e6 crypto_stats_init EXPORT_SYMBOL_GPL vmlinux 0x11871eb2 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x1194ca22 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x11a27745 snd_soc_close_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x11be9d93 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x11c1d2f8 ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0x11c24c05 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x11c427e2 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x11cefab9 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x11d07c95 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x11d2c8f6 ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0x11e98870 nand_deselect_target EXPORT_SYMBOL_GPL vmlinux 0x11f26bc3 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x1209b7c3 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x120db4c3 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x1212e78e dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier EXPORT_SYMBOL_GPL vmlinux 0x122804bd bdev_disk_changed EXPORT_SYMBOL_GPL vmlinux 0x122ac9cb led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0x12324137 devm_mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x12334fb3 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x12345073 cpuidle_register EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x12365c02 thermal_zone_device_enable EXPORT_SYMBOL_GPL vmlinux 0x123e39c3 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x124ede87 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x12545fc5 crypto_stats_decompress EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x12731b9e device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x1274ec47 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x127598f2 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x1275d9fd mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x12794740 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x1279a5c9 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x12884eef sdio_readsb EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x1294b324 device_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0x1299894e tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x129ba255 gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x12ba4fac dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x12bc5e5b snd_soc_dai_compr_get_params EXPORT_SYMBOL_GPL vmlinux 0x12c1bf16 rio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x12cdeb15 dma_free_pages EXPORT_SYMBOL_GPL vmlinux 0x12cf219f irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x12d8977b skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x12e671b2 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x12fef5c2 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x12e904fa tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x12ff1816 dax_copy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x12fff07c i2c_slave_unregister EXPORT_SYMBOL_GPL vmlinux 0x1319eba4 of_pm_clk_add_clk @@ -19157,56 +19160,55 @@ EXPORT_SYMBOL_GPL vmlinux 0x13201870 snd_compress_new EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk EXPORT_SYMBOL_GPL vmlinux 0x13417ac5 phy_modify EXPORT_SYMBOL_GPL vmlinux 0x1349fa90 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x134a9a76 bpf_map_inc EXPORT_SYMBOL_GPL vmlinux 0x135aea93 nand_readid_op EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x1368f49f regulator_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x13729388 regulator_set_active_discharge_regmap EXPORT_SYMBOL_GPL vmlinux 0x137feb82 blk_bio_list_merge EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x1384ee5b usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x13889036 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13856b75 lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0x138c30b9 usb_phy_set_charger_state EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1396f4bd filemap_read -EXPORT_SYMBOL_GPL vmlinux 0x1399ae50 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x13a24e98 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x13aab61b netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x13b82340 snd_soc_dapm_init +EXPORT_SYMBOL_GPL vmlinux 0x13c17206 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x13c24858 __traceiter_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x13c29e04 iommu_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x13c37a03 page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x13e7e902 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x13d6402e devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0x13e81fb2 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x13e85764 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0x13e98d40 class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x13ec41b4 pm_runtime_set_autosuspend_delay EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc EXPORT_SYMBOL_GPL vmlinux 0x13ef069c badblocks_clear EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook EXPORT_SYMBOL_GPL vmlinux 0x14045e27 amba_ahb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x14104943 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x140ca2a3 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x140d309e ata_wait_register EXPORT_SYMBOL_GPL vmlinux 0x141174e2 dma_get_any_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x14129649 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x1414fcd1 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x141cf565 rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x141fe656 nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x1445bb10 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x143fb0eb task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0x145a8f27 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x145e4903 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x1465884b wb_writeout_inc EXPORT_SYMBOL_GPL vmlinux 0x146622c1 vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0x147a857e crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x1466db74 i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0x14822680 tty_init_termios EXPORT_SYMBOL_GPL vmlinux 0x148d92b7 pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0x14a17e15 devm_device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x14a26bdf snd_soc_dapm_get_enum_double EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x14a9abc8 dma_buf_unmap_attachment EXPORT_SYMBOL_GPL vmlinux 0x14aaeaf9 irq_get_domain_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x14c2872d xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x14ccae03 clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14f56589 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x14d0665f crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x14e80e5e devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x150a6429 regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0x150e044c pcie_flr EXPORT_SYMBOL_GPL vmlinux 0x15103b36 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x152346b6 free_fib_info EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del EXPORT_SYMBOL_GPL vmlinux 0x15498e4f simple_attr_release EXPORT_SYMBOL_GPL vmlinux 0x154b1ce6 pcie_bus_configure_settings @@ -19215,165 +19217,153 @@ EXPORT_SYMBOL_GPL vmlinux 0x1550de5b of_thermal_get_ntrips EXPORT_SYMBOL_GPL vmlinux 0x1550efdf inet_peer_base_init EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put EXPORT_SYMBOL_GPL vmlinux 0x155183ce dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x155a6757 regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x155be6a0 crypto_register_alg EXPORT_SYMBOL_GPL vmlinux 0x155eaab5 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x155f0378 ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0x156503c3 edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x156b8a0e unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x15789131 fwnode_graph_get_remote_endpoint EXPORT_SYMBOL_GPL vmlinux 0x157b47a2 devm_get_free_pages EXPORT_SYMBOL_GPL vmlinux 0x1596c18e dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0x15ab2790 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x15ac511b dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0x15ad200b efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x15ad304a crypto_stats_rng_generate EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15ae79be platform_device_add EXPORT_SYMBOL_GPL vmlinux 0x15b06044 __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x15c38ef3 ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0x15c46a25 misc_cg_try_charge EXPORT_SYMBOL_GPL vmlinux 0x15cd5b53 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x15d810c7 devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0x15ec3d94 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x15ea1449 device_match_of_node EXPORT_SYMBOL_GPL vmlinux 0x15eca580 percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x15ed2de5 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x15f2ffa1 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x15ffa3bb akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1604fbe0 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x161a13d2 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x161b4891 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x161fbdca __sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x16264e62 hwmon_notify_event EXPORT_SYMBOL_GPL vmlinux 0x16295d62 attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0x162b0a89 of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0x1638aa25 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0x1631c499 spi_take_timestamp_pre EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x1645b762 crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0x164e0aff iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0x1654ce38 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x165ee8bb scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x16511ade lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0x1664730e ohci_resume EXPORT_SYMBOL_GPL vmlinux 0x1664ce58 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0x1666c824 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x166b684a sdio_set_block_size EXPORT_SYMBOL_GPL vmlinux 0x1675dff1 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x167a3a1a crypto_unregister_aeads EXPORT_SYMBOL_GPL vmlinux 0x167cee23 devm_otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x1682989d proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x168724ea spi_alloc_device EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x169b185f verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x16b85fea kick_process EXPORT_SYMBOL_GPL vmlinux 0x16b90dbb mtd_add_partition -EXPORT_SYMBOL_GPL vmlinux 0x16c3305f crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0x16c9ad09 dw_pcie_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x16cc526e dev_fetch_sw_netstats -EXPORT_SYMBOL_GPL vmlinux 0x16cd6b04 regulator_set_current_limit EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness EXPORT_SYMBOL_GPL vmlinux 0x16f4ff45 dev_attr_unload_heads EXPORT_SYMBOL_GPL vmlinux 0x16feb7a9 rio_release_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0x16ff1792 fscrypt_d_revalidate EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x170f687b regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x171f9e16 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x17440159 gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x17561380 gpiod_to_irq EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x17631925 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x177278cc __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x1775cfe2 device_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1788901e fixed_phy_register_with_gpiod EXPORT_SYMBOL_GPL vmlinux 0x17998f85 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x17a1bc13 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x17a51264 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x179e13ef dev_pm_qos_hide_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x17b3026f usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x17c8f691 devlink_port_params_register EXPORT_SYMBOL_GPL vmlinux 0x17e86e13 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x17ee5764 devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize EXPORT_SYMBOL_GPL vmlinux 0x1807dcb7 genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0x181b8da1 tty_set_termios EXPORT_SYMBOL_GPL vmlinux 0x18227c21 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x182a3442 fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x18340e15 dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x18402713 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1834b0da thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence EXPORT_SYMBOL_GPL vmlinux 0x18493717 hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0x185ede9e crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes EXPORT_SYMBOL_GPL vmlinux 0x186cbea4 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x1877953f platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x187b97d9 devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x187ff735 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x18833ddd regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x188b8c7d snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL vmlinux 0x18b961a8 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x1896759c __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x18a364cf snd_soc_of_parse_card_name EXPORT_SYMBOL_GPL vmlinux 0x18c6fbc6 clk_hw_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0x18da5130 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e64c7e netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x18ecb2a1 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18f24018 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x18f25084 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x18f63d6a bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x18f8eec9 snd_soc_dai_set_fmt EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x190a7209 mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0x190b21a9 cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0x191e1707 of_reconfig_get_state_change EXPORT_SYMBOL_GPL vmlinux 0x1921431b meson_clk_pcie_pll_ops EXPORT_SYMBOL_GPL vmlinux 0x192d1921 uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0x1930a0e9 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1931936a gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0x19394b20 of_property_read_variable_u64_array EXPORT_SYMBOL_GPL vmlinux 0x194132fa zs_huge_class_size EXPORT_SYMBOL_GPL vmlinux 0x194dd751 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x19805d3a snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL vmlinux 0x1980df8f bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x198258fc ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x19891236 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x19623499 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x1980d347 stmpe811_adc_common_init EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19aa16f3 sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0x19b2eb57 serial8250_request_dma EXPORT_SYMBOL_GPL vmlinux 0x19b425a1 dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0x19b48b66 regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0x19b4b171 serial8250_em485_start_tx EXPORT_SYMBOL_GPL vmlinux 0x19b71ccd set_capacity_and_notify EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x19c6efe6 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL vmlinux 0x19caf89c crypto_alloc_skcipher EXPORT_SYMBOL_GPL vmlinux 0x19d23231 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x19d8cb6c clk_hw_get_flags EXPORT_SYMBOL_GPL vmlinux 0x19dd3db7 rio_mport_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0x19e1055a usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x19e31991 mmc_send_tuning EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19ea89c7 perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0x19f802b6 sdhci_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x19fa2082 of_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x19fca7bb irq_get_irq_data 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 0x1a266232 __tracepoint_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x1a267fa8 bch_init -EXPORT_SYMBOL_GPL vmlinux 0x1a2b1af1 cpufreq_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x1a3a10ff ata_scsi_dma_need_drain EXPORT_SYMBOL_GPL vmlinux 0x1a44572f rht_bucket_nested_insert EXPORT_SYMBOL_GPL vmlinux 0x1a51c36c pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0x1a5630b3 sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0x1a56c71d sm501_set_clock EXPORT_SYMBOL_GPL vmlinux 0x1a570759 devm_gpiod_get_from_of_node EXPORT_SYMBOL_GPL vmlinux 0x1a574d59 get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x1a60a51f udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x1a63d0dc dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x1a63eacd snd_soc_dapm_mixer_update_power EXPORT_SYMBOL_GPL vmlinux 0x1a6926f5 tps6586x_read EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a6cd88b device_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list -EXPORT_SYMBOL_GPL vmlinux 0x1a88a36f devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0x1a9638a8 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x1a9624c9 regmap_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x1a9db1e0 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x1aba6429 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x1ac58170 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL vmlinux 0x1ac7e911 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x1aa841af devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x1ac2ba60 stmpe_block_write EXPORT_SYMBOL_GPL vmlinux 0x1ac90940 spi_delay_exec EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1af4399d ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0x1af7d4e3 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x1afd1663 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x1b08b137 device_match_name EXPORT_SYMBOL_GPL vmlinux 0x1b099cf8 __pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0x1b0acd12 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x1b2647c8 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x1b2e7ee5 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x1b46c9ab wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x1b4932dd sock_map_close EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask EXPORT_SYMBOL_GPL vmlinux 0x1b7078f9 pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0x1b72e0b2 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x1b7f0f8b bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output EXPORT_SYMBOL_GPL vmlinux 0x1b8a7329 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x1b8db341 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL vmlinux 0x1b91c1b6 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x1b8adfaf crypto_alloc_skcipher EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer EXPORT_SYMBOL_GPL vmlinux 0x1ba02c44 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x1ba6353e regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1ba60893 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0x1ba68d7d snd_dmaengine_pcm_close_release_chan EXPORT_SYMBOL_GPL vmlinux 0x1ba92028 uart_handle_cts_change EXPORT_SYMBOL_GPL vmlinux 0x1baa55d5 meson_clk_pll_ro_ops @@ -19382,20 +19372,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x1bbe8325 uart_console_device EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input EXPORT_SYMBOL_GPL vmlinux 0x1bd824a3 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x1be56d87 pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0x1bec59c5 mtk_mmsys_ddp_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x1bed519d sdio_f0_writeb EXPORT_SYMBOL_GPL vmlinux 0x1c01e03d __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x1c1dbed5 icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0x1c1e8732 pci_find_vsec_capability EXPORT_SYMBOL_GPL vmlinux 0x1c36d859 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x1c48e3f1 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x1c3c3b70 devm_spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0x1c4c662e balloon_page_list_dequeue EXPORT_SYMBOL_GPL vmlinux 0x1c4c94b7 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x1c4e35cf gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c563019 ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c7682b1 unregister_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x1c7be59c __traceiter_map EXPORT_SYMBOL_GPL vmlinux 0x1c7e0156 pci_ecam_create EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 @@ -19403,66 +19391,62 @@ EXPORT_SYMBOL_GPL vmlinux 0x1c84ee1e dw_pcie_upconfig_setup EXPORT_SYMBOL_GPL vmlinux 0x1c86ac60 pci_epc_multi_mem_init EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up EXPORT_SYMBOL_GPL vmlinux 0x1c8c20a8 dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0x1cb31e83 fib_info_nh_uses_dev EXPORT_SYMBOL_GPL vmlinux 0x1cb6f859 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x1cb83358 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x1cbd0345 sdio_f0_writeb EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off EXPORT_SYMBOL_GPL vmlinux 0x1cdf4efb copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x1ce6331b crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0x1cebb9c0 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x1cf80962 crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0x1d045df1 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x1d0b5a32 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x1d0d23d1 clk_hw_get_rate EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state EXPORT_SYMBOL_GPL vmlinux 0x1d29b9e1 decode_rs8 EXPORT_SYMBOL_GPL vmlinux 0x1d30a28a pm_generic_restore EXPORT_SYMBOL_GPL vmlinux 0x1d325671 smpboot_unregister_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0x1d3c2fa7 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x1d5a4798 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x1d47a347 __nf_ip6_route EXPORT_SYMBOL_GPL vmlinux 0x1d61e7e1 clk_register_gate EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable -EXPORT_SYMBOL_GPL vmlinux 0x1d681000 bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d8222e9 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x1d7a6021 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL vmlinux 0x1d8bc498 ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle EXPORT_SYMBOL_GPL vmlinux 0x1d96310c snd_dmaengine_pcm_get_chan EXPORT_SYMBOL_GPL vmlinux 0x1da17043 snd_soc_put_volsw_range EXPORT_SYMBOL_GPL vmlinux 0x1da95353 store_sampling_rate +EXPORT_SYMBOL_GPL vmlinux 0x1dac5115 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x1db9b3e0 trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0x1dc17bf9 rhltable_init EXPORT_SYMBOL_GPL vmlinux 0x1dc22f19 cpufreq_dbs_governor_start EXPORT_SYMBOL_GPL vmlinux 0x1dc3215c tps65217_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x1dcffe6d yield_to EXPORT_SYMBOL_GPL vmlinux 0x1dd5a984 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x1dd8b62d snd_soc_dapm_new_control EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm EXPORT_SYMBOL_GPL vmlinux 0x1e00e082 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x1e050c83 splice_to_pipe EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release EXPORT_SYMBOL_GPL vmlinux 0x1e2b9062 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1e2f4231 ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0x1e34e656 spi_finalize_current_transfer EXPORT_SYMBOL_GPL vmlinux 0x1e3abe87 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0x1e40de19 snd_soc_component_set_sysclk EXPORT_SYMBOL_GPL vmlinux 0x1e4491d7 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x1e48bc13 peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0x1e4f232c mtk_pinconf_bias_disable_set -EXPORT_SYMBOL_GPL vmlinux 0x1e547f9a snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL vmlinux 0x1e5a656c sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x1e6970d7 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e558cd9 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x1e7750bf spi_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x1e7dbf58 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x1e8f5025 rtc_update_irq EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse EXPORT_SYMBOL_GPL vmlinux 0x1e9e3e83 __fscrypt_prepare_rename EXPORT_SYMBOL_GPL vmlinux 0x1e9ea3b5 __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0x1ea1dffc usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x1ea5d3a0 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x1ea5db5e platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x1eade160 kstrdup_quotable_file EXPORT_SYMBOL_GPL vmlinux 0x1eb65a1c tegra_mc_get_emem_device_count EXPORT_SYMBOL_GPL vmlinux 0x1eb78a29 put_mtd_device EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names EXPORT_SYMBOL_GPL vmlinux 0x1ec0b124 efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0x1ec2b598 acomp_request_free EXPORT_SYMBOL_GPL vmlinux 0x1ecd9ca5 blk_mq_alloc_sq_tag_set EXPORT_SYMBOL_GPL vmlinux 0x1ed3409d mtk_pinconf_drive_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0x1ed7cc62 bus_set_iommu @@ -19470,69 +19454,80 @@ EXPORT_SYMBOL_GPL vmlinux 0x1edb6e9f clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x1edeff2f governor_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x1ee835d2 dev_pm_opp_put_clkname EXPORT_SYMBOL_GPL vmlinux 0x1ee97357 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f044361 register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1f138578 crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0x1f195409 usb_hcd_unlink_urb_from_ep EXPORT_SYMBOL_GPL vmlinux 0x1f32619c rio_map_inb_region EXPORT_SYMBOL_GPL vmlinux 0x1f379f59 sata_pmp_port_ops EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f3abfc5 l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f48ac83 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x1f54b3ee inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x1f46b28c vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x1f4704a5 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x1f47c6dc spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x1f5546a0 register_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f5d2a36 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x1f56d3cc gpiod_set_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x1f5fc4a5 cpu_latency_qos_request_active EXPORT_SYMBOL_GPL vmlinux 0x1f67b4d7 crypto_aes_set_key EXPORT_SYMBOL_GPL vmlinux 0x1f6cdd87 rio_route_get_entry EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1f843839 wait_for_stable_page EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f966137 scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0x1f9a2ef8 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x1f862bed rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x1f9e0955 perf_aux_output_skip EXPORT_SYMBOL_GPL vmlinux 0x1fa0a4fe mtk_is_virt_gpio EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x1fa2e86e class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x1fa5fce8 nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0x1fad3154 usb_alloc_streams EXPORT_SYMBOL_GPL vmlinux 0x1fb21167 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x1fb4e218 ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0x1fbb3334 pci_max_pasids EXPORT_SYMBOL_GPL vmlinux 0x1fca0b38 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x1fdc15ca devlink_param_publish -EXPORT_SYMBOL_GPL vmlinux 0x1fe2f005 __sync_filesystem EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fe7e8af __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x1fed8382 xfrm_output EXPORT_SYMBOL_GPL vmlinux 0x20092b2e phy_remove_lookup EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x201ac75b spi_slave_abort EXPORT_SYMBOL_GPL vmlinux 0x202bf006 subsys_interface_register EXPORT_SYMBOL_GPL vmlinux 0x202ffeb1 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x20344c11 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x2037dd56 fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x204bb020 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x204d6646 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x204a26d9 sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0x20524418 regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x20638863 badblocks_check EXPORT_SYMBOL_GPL vmlinux 0x2069f860 of_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20873d19 call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0x20899dc8 irq_chip_set_wake_parent EXPORT_SYMBOL_GPL vmlinux 0x20930ebd mtd_point -EXPORT_SYMBOL_GPL vmlinux 0x209c0094 ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0x209d15dc mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL vmlinux 0x209df19f ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x20a4cc13 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x20b215a6 is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x20c365a8 i2c_new_scanned_device EXPORT_SYMBOL_GPL vmlinux 0x20c9c700 iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0x20cc35da ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0x20d5f790 null_dailink_component +EXPORT_SYMBOL_GPL vmlinux 0x20ce307e snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL vmlinux 0x20d6caf3 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x20dd079f cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0x20fc4ac6 tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0x20ffca22 device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0x21087621 mm_unaccount_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0x210a3c57 __hwspin_trylock EXPORT_SYMBOL_GPL vmlinux 0x210fc57a pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x21173592 snd_soc_add_component +EXPORT_SYMBOL_GPL vmlinux 0x211557e6 device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x2117f33c debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x212b95bc ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x2125fd38 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x212ea518 crypto_inst_setname EXPORT_SYMBOL_GPL vmlinux 0x213a1377 tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x213e3340 inet6_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x2140704f pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0x214cfb11 snd_soc_component_update_bits EXPORT_SYMBOL_GPL vmlinux 0x21562a1d raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x215a690e ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x216438ab tc3589x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x216cab04 usb_put_intf EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio EXPORT_SYMBOL_GPL vmlinux 0x21726652 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x21730604 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x2175e2a3 pci_host_common_remove EXPORT_SYMBOL_GPL vmlinux 0x21760e03 serial8250_em485_stop_tx EXPORT_SYMBOL_GPL vmlinux 0x2181b0a1 usb_bus_idr_lock EXPORT_SYMBOL_GPL vmlinux 0x218ba82d pci_pasid_features @@ -19540,7 +19535,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x218bbe7e tps65912_device_exit EXPORT_SYMBOL_GPL vmlinux 0x21963dda iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0x21969878 free_vm_area EXPORT_SYMBOL_GPL vmlinux 0x219b0d65 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x21a1e854 regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x21a4b6dd efivar_entry_iter EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id @@ -19554,22 +19548,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x220d7a73 genphy_c45_pma_read_abilities EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str EXPORT_SYMBOL_GPL vmlinux 0x22210a1a of_pci_address_to_resource EXPORT_SYMBOL_GPL vmlinux 0x22220d0b mtk_eint_do_init -EXPORT_SYMBOL_GPL vmlinux 0x2228138a inet6_cleanup_sock EXPORT_SYMBOL_GPL vmlinux 0x222a9404 rio_mport_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0x2232d27e edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0x22386fef regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0x223e215c rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x223eafc3 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x225291d1 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x22560361 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x226c9d88 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x2276b527 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x2291fa05 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x22970268 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x22cac66f pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x22553d09 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x225e8b7a udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2269a0e5 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x22bb928e unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x22c45565 snd_soc_find_dai +EXPORT_SYMBOL_GPL vmlinux 0x22d31818 mmc_app_cmd EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends EXPORT_SYMBOL_GPL vmlinux 0x22dff180 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x23040c1c netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x23136403 bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0x23235a75 arm_iommu_create_mapping EXPORT_SYMBOL_GPL vmlinux 0x2333fbbf badblocks_show EXPORT_SYMBOL_GPL vmlinux 0x233aced7 handle_fasteoi_mask_irq @@ -19577,50 +19567,46 @@ EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime EXPORT_SYMBOL_GPL vmlinux 0x2345c7f3 fscrypt_fname_siphash EXPORT_SYMBOL_GPL vmlinux 0x2346ec3d pci_d3cold_enable EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x23614390 of_find_spi_device_by_node EXPORT_SYMBOL_GPL vmlinux 0x23666d59 __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x236da4a7 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x237ed3c4 spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x238cb40d devlink_param_register 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 0x239bf89b device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x239abd00 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0x23a6b81a snd_pcm_stream_lock -EXPORT_SYMBOL_GPL vmlinux 0x23ad434a fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x23b877d8 xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x23c0a74e fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x23bcfe7c fw_devlink_purge_absent_suppliers EXPORT_SYMBOL_GPL vmlinux 0x23c3fb79 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x23c9d249 sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0x23d17cf5 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x23d68f29 sched_trace_rq_avg_rt EXPORT_SYMBOL_GPL vmlinux 0x23d76154 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x23e4e784 devlink_port_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x23e799db virtio_break_device EXPORT_SYMBOL_GPL vmlinux 0x2400e321 nanddev_erase EXPORT_SYMBOL_GPL vmlinux 0x24070c5c mtd_writev EXPORT_SYMBOL_GPL vmlinux 0x2408ef1f dev_pm_opp_of_add_table_noclk -EXPORT_SYMBOL_GPL vmlinux 0x240c7e5d __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x24260ee6 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x2426eddb snd_soc_dapm_sync_unlocked EXPORT_SYMBOL_GPL vmlinux 0x242867fc thermal_zone_get_slope EXPORT_SYMBOL_GPL vmlinux 0x242935be sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x242a162e snd_soc_card_remove_dai_link EXPORT_SYMBOL_GPL vmlinux 0x242db9b8 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x242e391b dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0x24301ffd amba_ahb_device_add_res EXPORT_SYMBOL_GPL vmlinux 0x24312a1c debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x243fd388 __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x2443ce82 switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0x244524c9 thermal_zone_get_temp EXPORT_SYMBOL_GPL vmlinux 0x2448aa6b regulator_get_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x244f1be3 fscrypt_ioctl_remove_key EXPORT_SYMBOL_GPL vmlinux 0x24502e1b gadget_find_ep_by_name EXPORT_SYMBOL_GPL vmlinux 0x2453984e snd_soc_dapm_put_pin_switch EXPORT_SYMBOL_GPL vmlinux 0x245d95e1 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0x245ded49 devm_platform_get_irqs_affinity EXPORT_SYMBOL_GPL vmlinux 0x24603e63 da9052_free_irq EXPORT_SYMBOL_GPL vmlinux 0x2461aa0e of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x2476ae3e clk_hw_is_prepared EXPORT_SYMBOL_GPL vmlinux 0x24813fdc fuse_fill_super_common EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0x248db35c ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x24a76381 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x24ab8c8f clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24927b2b sdio_readb EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x24b7528f usb_alloc_coherent EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended @@ -19629,103 +19615,102 @@ 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 0x2500e11c __clk_mux_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x2516bbe8 __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x251b677b __mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x252bdf28 of_detach_node EXPORT_SYMBOL_GPL vmlinux 0x252c6732 nanddev_bbt_update EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate EXPORT_SYMBOL_GPL vmlinux 0x2540e37e edac_mc_find_csrow_by_page EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size EXPORT_SYMBOL_GPL vmlinux 0x2546d204 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x254b81e2 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x254d7d23 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x25569938 dapm_clock_event EXPORT_SYMBOL_GPL vmlinux 0x2558a173 usb_gadget_set_state -EXPORT_SYMBOL_GPL vmlinux 0x257c230c trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x2568db28 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x2573a940 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x258ea957 crypto_unregister_scomp EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk EXPORT_SYMBOL_GPL vmlinux 0x2596576d gov_update_cpu_data EXPORT_SYMBOL_GPL vmlinux 0x25981519 tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0x259a22e8 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x25afb962 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x25b000fc device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x25b25c13 devlink_reload_disable EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data EXPORT_SYMBOL_GPL vmlinux 0x25c51049 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x25cb5a2a gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x25cc551e pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x25cd44d7 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x25da9aff sdio_retune_crc_disable EXPORT_SYMBOL_GPL vmlinux 0x25e171c5 user_destroy EXPORT_SYMBOL_GPL vmlinux 0x25e68d5a ima_file_check EXPORT_SYMBOL_GPL vmlinux 0x25e922c2 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x25f2752b devlink_port_params_register EXPORT_SYMBOL_GPL vmlinux 0x25f823de nand_change_write_column_op -EXPORT_SYMBOL_GPL vmlinux 0x25ff60b7 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x25ffc80d perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x262c9858 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x2628f23f rtc_update_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x262ecfa1 snd_ctl_activate_id -EXPORT_SYMBOL_GPL vmlinux 0x26340a13 evm_verifyxattr EXPORT_SYMBOL_GPL vmlinux 0x2638586b xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0x263f2892 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x26505b0a device_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed EXPORT_SYMBOL_GPL vmlinux 0x2652af99 sm501_find_clock EXPORT_SYMBOL_GPL vmlinux 0x2655a02d spi_mem_default_supports_op EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x265cec6b __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x266149a6 sfp_bus_add_upstream EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x266d5cec nf_queue EXPORT_SYMBOL_GPL vmlinux 0x266f8f45 ata_sff_queue_pio_task EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x267ebcde __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x268b9663 param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0x2690d02b trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x2693a6de gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x269552a2 ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26e4894e __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x26e60035 platform_device_put EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26f0fb90 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x270079a7 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x26f30c31 snd_soc_dai_digital_mute EXPORT_SYMBOL_GPL vmlinux 0x2701953f mtk_mutex_add_comp -EXPORT_SYMBOL_GPL vmlinux 0x2702ded2 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x27082524 __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0x270d9547 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x27242f4a gpiochip_remove_pin_ranges EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit EXPORT_SYMBOL_GPL vmlinux 0x2734197f musb_readb -EXPORT_SYMBOL_GPL vmlinux 0x2734b809 scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0x27461ba2 fat_update_time EXPORT_SYMBOL_GPL vmlinux 0x2755886a pinconf_generic_dt_node_to_map EXPORT_SYMBOL_GPL vmlinux 0x275bb033 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x27631b20 inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x276327ae pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x276a5d61 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x27703ae1 msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x27a4bb78 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x27c273c9 i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0x27ce467e spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x27a6a598 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x27b388c5 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x27c94b51 vfs_removexattr EXPORT_SYMBOL_GPL vmlinux 0x27dbeee5 of_irq_get_byname EXPORT_SYMBOL_GPL vmlinux 0x27de567a hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x27e95bc4 snd_soc_lookup_component -EXPORT_SYMBOL_GPL vmlinux 0x27ef2e37 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x27e05ec6 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x27e9a1b3 sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x27f20a61 iommu_get_domain_for_dev EXPORT_SYMBOL_GPL vmlinux 0x27f49024 pci_iov_virtfn_devfn EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x27fda1e6 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x27fe3812 bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0x280c71bf init_user_ns EXPORT_SYMBOL_GPL vmlinux 0x281a3bf4 bio_associate_blkg EXPORT_SYMBOL_GPL vmlinux 0x28277b54 usb_gadget_unmap_request_by_dev EXPORT_SYMBOL_GPL vmlinux 0x282b7d57 xas_clear_mark EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28398a3f fwnode_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0x283ffe9f imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x2847d5e8 get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0x28567356 balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0x285753d8 regulator_get_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0x285b94c1 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x285c2da0 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2863b3a0 fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x28797bb7 devm_i2c_add_adapter EXPORT_SYMBOL_GPL vmlinux 0x2879fdd9 pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x287eccc3 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x28807b0d sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL vmlinux 0x28812b3e i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0x288244b0 debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister EXPORT_SYMBOL_GPL vmlinux 0x2889d5de edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x28963365 blk_insert_cloned_request EXPORT_SYMBOL_GPL vmlinux 0x28a202f7 virtqueue_get_buf_ctx EXPORT_SYMBOL_GPL vmlinux 0x28a8a299 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x28a991dd wakeup_source_destroy EXPORT_SYMBOL_GPL vmlinux 0x28a9e55e serial8250_update_uartclk EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free @@ -19734,164 +19719,173 @@ EXPORT_SYMBOL_GPL vmlinux 0x28af81f3 extcon_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x28b53c17 pm_runtime_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x28c6b007 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x28e50bc0 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x28ee990d sched_trace_rq_avg_dl EXPORT_SYMBOL_GPL vmlinux 0x28f7df52 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x29026435 bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0x29029238 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x28fc3282 sdhci_enable_clk +EXPORT_SYMBOL_GPL vmlinux 0x2900563f ata_host_alloc EXPORT_SYMBOL_GPL vmlinux 0x291123ea __tracepoint_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0x291338e9 irq_create_fwspec_mapping EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine EXPORT_SYMBOL_GPL vmlinux 0x29268e2b io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x29361ee1 of_pwm_xlate_with_flags EXPORT_SYMBOL_GPL vmlinux 0x29427ccc virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x2957a2d1 ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x295a2670 clk_regmap_divider_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x297a14e3 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x296bdfca ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x29779165 null_dailink_component EXPORT_SYMBOL_GPL vmlinux 0x298a768c mtd_device_parse_register EXPORT_SYMBOL_GPL vmlinux 0x29953852 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x299e6498 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x29c09a00 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x29aaadba snd_soc_component_initialize +EXPORT_SYMBOL_GPL vmlinux 0x29bc2486 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x29c108c3 snd_soc_dai_compr_startup EXPORT_SYMBOL_GPL vmlinux 0x29cb4af1 pci_find_next_capability EXPORT_SYMBOL_GPL vmlinux 0x29cf2470 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x29d080ef device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async EXPORT_SYMBOL_GPL vmlinux 0x29f6a959 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x29ff212b kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x29fc7ccf spi_async_locked EXPORT_SYMBOL_GPL vmlinux 0x2a00e241 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x2a11dea2 gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0x2a1a07e3 elv_rqhash_del EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll EXPORT_SYMBOL_GPL vmlinux 0x2a3ac982 wm831x_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x2a3f1a96 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x2a3fb7fe skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0x2a4df6e1 uart_try_toggle_sysrq EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu EXPORT_SYMBOL_GPL vmlinux 0x2a658ef8 tpm1_do_selftest EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a6af7f2 gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a764140 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x2a7d39ab __mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x2a813c8d pci_bus_add_device EXPORT_SYMBOL_GPL vmlinux 0x2a86c9e4 of_platform_depopulate EXPORT_SYMBOL_GPL vmlinux 0x2a94e8a4 dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0x2aa77355 __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x2ab96c38 devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0x2abffd1d sysfs_merge_group EXPORT_SYMBOL_GPL vmlinux 0x2ace820a pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x2af56abe ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x2b081e3d __sdhci_read_caps -EXPORT_SYMBOL_GPL vmlinux 0x2b1cca6e bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x2aebe70f device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x2b0270fd ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x2b0b5ae9 snd_soc_register_component EXPORT_SYMBOL_GPL vmlinux 0x2b1f7ca8 iommu_device_unlink EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b565f86 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x2b510c7d i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x2b546c6b blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x2b5e6960 vfs_kern_mount EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple EXPORT_SYMBOL_GPL vmlinux 0x2b7eee2c vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x2b82ae64 sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x2b86e414 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x2b8715fc bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0x2b8ef447 xhci_ext_cap_init EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent EXPORT_SYMBOL_GPL vmlinux 0x2b9ed316 iommu_present EXPORT_SYMBOL_GPL vmlinux 0x2bbf8fbf irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x2bc25aea ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x2bc90843 cpts_register EXPORT_SYMBOL_GPL vmlinux 0x2be5030f copy_to_user_nofault EXPORT_SYMBOL_GPL vmlinux 0x2bf3d87d dma_vunmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x2bfb817c usb_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0x2bfe28cc of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x2c0b0ad8 devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2c15e2a4 wakeup_source_remove EXPORT_SYMBOL_GPL vmlinux 0x2c1f3b22 mddev_init EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c2dac60 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x2c2aa7f4 sched_trace_cfs_rq_path EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x2c511609 pci_epc_mem_exit EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c815cb7 devlink_param_register EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types EXPORT_SYMBOL_GPL vmlinux 0x2c902e6e usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x2c948a13 blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0x2c96bc35 mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x2c973eba clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c9aeae4 crypto_unregister_rngs EXPORT_SYMBOL_GPL vmlinux 0x2ca60157 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x2cae8663 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x2cba017c udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0x2cc0dbd1 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x2cc4da80 pwm_adjust_config EXPORT_SYMBOL_GPL vmlinux 0x2cce1c46 __clocksource_update_freq_scale 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 0x2cf0e084 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2d16e135 devm_regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x2d17ec40 mtk_pinconf_drive_set EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d20d10f xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0x2d286224 ata_common_sdev_attrs EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d34920e gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x2d368c4c nand_subop_get_addr_start_off EXPORT_SYMBOL_GPL vmlinux 0x2d3c5543 pci_disable_ats EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts EXPORT_SYMBOL_GPL vmlinux 0x2d45f6f5 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x2d4df928 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x2d491e6e gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2d4add02 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2d5cb2b4 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x2d5d5619 pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict -EXPORT_SYMBOL_GPL vmlinux 0x2d623170 ata_cable_sata EXPORT_SYMBOL_GPL vmlinux 0x2d6965da serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x2d759336 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x2d7cb76f cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x2d7fab5b inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x2d993d46 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x2d901df3 regulator_get EXPORT_SYMBOL_GPL vmlinux 0x2d9d3d57 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x2da95097 xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg EXPORT_SYMBOL_GPL vmlinux 0x2db890f8 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x2dc1c0e6 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x2dc4f50f skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x2dc2630c __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0x2dd2248d pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2dd3824d phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0x2dd9ebda simple_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0x2de342fe fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0x2de373bc cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x2df07847 inode_congested EXPORT_SYMBOL_GPL vmlinux 0x2df0986a relay_subbufs_consumed EXPORT_SYMBOL_GPL vmlinux 0x2df444e1 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2dfa1987 bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0x2dfa9bac handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x2dfbbb6a regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x2e00e8c8 xhci_suspend EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e02ac56 pm_generic_freeze_late EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace EXPORT_SYMBOL_GPL vmlinux 0x2e2d78cb vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x2e306d9d __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x2e34ff56 ata_sas_tport_add EXPORT_SYMBOL_GPL vmlinux 0x2e4261f6 snmp_get_cpu_field64 EXPORT_SYMBOL_GPL vmlinux 0x2e46a4ea devm_gpio_request EXPORT_SYMBOL_GPL vmlinux 0x2e4f600d snd_soc_link_compr_startup EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x2e69d4b3 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x2e70628d ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0x2e71eacc device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0x2e720311 sdhci_add_host -EXPORT_SYMBOL_GPL vmlinux 0x2e7e45b3 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x2e8ba6ef fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x2e8f5037 clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x2e94f1df __traceiter_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0x2e952dbb iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0x2e957526 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x2ea4aeb2 snd_soc_component_disable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0x2ea9223c gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x2eaa03a4 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2eaf5577 snd_soc_dapm_get_pin_status EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2eca3307 crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0x2ed0358d crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x2eeef9ba of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x2f041db3 vfs_write +EXPORT_SYMBOL_GPL vmlinux 0x2ed6d591 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x2efa1340 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x2f08fb87 i2c_handle_smbus_host_notify EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f178742 devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x2f1fadf5 disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0x2f1fe5ac crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0x2f2ead9f kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x2f334ffe sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x2f386aa1 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x2f606081 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x2f3fb752 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2f4322d5 sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x2f474b3e snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0x2f59243f fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x2f63e634 usb_poison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x2f68cb61 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x2f6dc639 gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x2f72e5af of_hwspin_lock_get_id_byname EXPORT_SYMBOL_GPL vmlinux 0x2f73013d class_compat_create_link EXPORT_SYMBOL_GPL vmlinux 0x2f767e66 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x2f7688cc crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0x2f87d78d spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0x2f8a3d53 gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0x2fa65804 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x2fa76ed5 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x2fac2078 cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x2fade0be synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x2fb4330d xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x2fbe348f cpufreq_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fd3bb20 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2fc3726b task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x2fe33342 devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0x30081324 fat_flush_inodes EXPORT_SYMBOL_GPL vmlinux 0x30096d57 insert_resource EXPORT_SYMBOL_GPL vmlinux 0x300af9e0 mmu_notifier_range_update_to_read_only @@ -19899,166 +19893,166 @@ EXPORT_SYMBOL_GPL vmlinux 0x3011d973 devm_bitmap_alloc EXPORT_SYMBOL_GPL vmlinux 0x3014919a pci_num_vf EXPORT_SYMBOL_GPL vmlinux 0x3014beca pinctrl_utils_add_config EXPORT_SYMBOL_GPL vmlinux 0x301ab493 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x30204862 device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0x3023db90 dm_suspended EXPORT_SYMBOL_GPL vmlinux 0x3023e07d devm_usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0x3028f697 find_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x3029e622 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x3037bebc ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x302c8c9e sdhci_dumpregs EXPORT_SYMBOL_GPL vmlinux 0x303be140 pci_set_cacheline_size EXPORT_SYMBOL_GPL vmlinux 0x304c45c6 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0x305f7c0e snd_soc_jack_add_zones EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu EXPORT_SYMBOL_GPL vmlinux 0x30693bb7 imx_audmux_v1_configure_port EXPORT_SYMBOL_GPL vmlinux 0x3069e46b scatterwalk_copychunks EXPORT_SYMBOL_GPL vmlinux 0x3073739a phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x307c40db snd_soc_unregister_card EXPORT_SYMBOL_GPL vmlinux 0x307f867f mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x308ba94e ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x308bda0b blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0x3092fbe8 skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0x309ece76 serdev_device_write EXPORT_SYMBOL_GPL vmlinux 0x30a262dc look_up_OID EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x30b44efd crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0x30b812db register_trace_event EXPORT_SYMBOL_GPL vmlinux 0x30c209fb devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x30c40381 unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0x30c750c3 snd_soc_get_strobe -EXPORT_SYMBOL_GPL vmlinux 0x30ca469e spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x30cd28b0 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x30dca904 snd_soc_pm_ops EXPORT_SYMBOL_GPL vmlinux 0x30f86d29 snd_soc_component_compr_set_params EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3101fabd device_store_ulong EXPORT_SYMBOL_GPL vmlinux 0x310b6270 alarm_forward EXPORT_SYMBOL_GPL vmlinux 0x31156ece usb_unlocked_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave EXPORT_SYMBOL_GPL vmlinux 0x31267a83 firmware_request_platform EXPORT_SYMBOL_GPL vmlinux 0x3126a4cd report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0x312a3108 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x3127197c xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x313b622b imx_pcm_fiq_exit +EXPORT_SYMBOL_GPL vmlinux 0x313c64cf ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single +EXPORT_SYMBOL_GPL vmlinux 0x313f67f1 aead_register_instance EXPORT_SYMBOL_GPL vmlinux 0x314535c1 virtio_add_status EXPORT_SYMBOL_GPL vmlinux 0x3145494f ima_inode_hash EXPORT_SYMBOL_GPL vmlinux 0x3145cd0c tps6586x_get_version EXPORT_SYMBOL_GPL vmlinux 0x314c3646 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x315149f7 __lock_page_killable EXPORT_SYMBOL_GPL vmlinux 0x315392f8 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x316436c7 fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0x3168bdb0 dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0x31777508 rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x3189ff54 inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x319e6ac5 tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31afa14c dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x31b80967 fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31d4c2a5 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x31da8b06 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL vmlinux 0x31e8cb86 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x31d2cc34 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x31d32d7f skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x31e361cb sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x31ec0dd4 ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0x31ee8399 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x31f3968d gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x31fdb74d devlink_params_register EXPORT_SYMBOL_GPL vmlinux 0x3203226a dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x32046782 snd_soc_dapm_force_bias_level EXPORT_SYMBOL_GPL vmlinux 0x3212be0d tpm_transmit_cmd EXPORT_SYMBOL_GPL vmlinux 0x3222e4f8 virtqueue_detach_unused_buf EXPORT_SYMBOL_GPL vmlinux 0x3243d13d devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x325a9c16 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x32480383 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x32573c1b __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0x325e5118 rhashtable_init EXPORT_SYMBOL_GPL vmlinux 0x326d2f83 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x327de261 pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0x327e9b99 gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0x327ef9bd nand_prog_page_end_op -EXPORT_SYMBOL_GPL vmlinux 0x3289f277 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x328e38cd dma_buf_export EXPORT_SYMBOL_GPL vmlinux 0x329204a5 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x329b9472 sdhci_set_uhs_signaling EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32af0429 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x32b2aadd devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x32b9c77e __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x32c147bd extcon_set_property_sync EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register EXPORT_SYMBOL_GPL vmlinux 0x32c3d6ca dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0x32cfcbc9 devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x32d4a249 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x32d4be47 l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0x32da8745 sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0x32ebc766 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x32ebf1e8 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x32e91cbb xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x32ecb03c device_phy_find_device EXPORT_SYMBOL_GPL vmlinux 0x32efd846 of_irq_parse_and_map_pci EXPORT_SYMBOL_GPL vmlinux 0x330ce0fa public_key_subtype EXPORT_SYMBOL_GPL vmlinux 0x331568ca irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x331a8814 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x33169aa2 device_set_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x331c77e5 pcie_port_find_device EXPORT_SYMBOL_GPL vmlinux 0x331fd1ab blkdev_report_zones EXPORT_SYMBOL_GPL vmlinux 0x33201922 efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x33343291 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x332462bc device_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x3335ae32 freq_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x333894e5 __clk_hw_register_gate EXPORT_SYMBOL_GPL vmlinux 0x333c2183 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x33459e94 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x335b04f2 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x333f2217 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x3358cdef tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0x33676a23 pinctrl_generic_get_group_name EXPORT_SYMBOL_GPL vmlinux 0x33700730 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x3370f1e6 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x3372d748 cpts_unregister EXPORT_SYMBOL_GPL vmlinux 0x3372dbcb pci_epc_unmap_addr EXPORT_SYMBOL_GPL vmlinux 0x3385a4e5 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x339584f2 device_store_bool EXPORT_SYMBOL_GPL vmlinux 0x33a49913 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x33b0a2cd snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL vmlinux 0x33b3fb60 device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0x33b46aa6 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x33b758aa crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x33c93847 set_selection_kernel EXPORT_SYMBOL_GPL vmlinux 0x33cd2cd6 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x33ce6f31 proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0x33d073e4 snd_soc_get_enum_double EXPORT_SYMBOL_GPL vmlinux 0x33d1ee8f pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x33d2781a trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x33e405ee spi_bus_lock EXPORT_SYMBOL_GPL vmlinux 0x33e9e0a2 atomic_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local EXPORT_SYMBOL_GPL vmlinux 0x33f14537 devm_clk_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0x340f7e93 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x340920b1 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x3421a1ec ata_pio_need_iordy EXPORT_SYMBOL_GPL vmlinux 0x3424294d exportfs_decode_fh EXPORT_SYMBOL_GPL vmlinux 0x342d27d1 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x34358f2e sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x34359dd5 nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0x343f9b86 umd_load_blob EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x344ddb3c ping_bind EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui EXPORT_SYMBOL_GPL vmlinux 0x34576566 snd_soc_put_strobe EXPORT_SYMBOL_GPL vmlinux 0x345d67ed ata_bmdma_error_handler EXPORT_SYMBOL_GPL vmlinux 0x3461ba36 usb_bus_idr EXPORT_SYMBOL_GPL vmlinux 0x3461e4e6 imx_unregister_hw_clocks EXPORT_SYMBOL_GPL vmlinux 0x3474cdfd devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x3474e47a stmpe_set_altfunc EXPORT_SYMBOL_GPL vmlinux 0x347685bf nand_change_read_column_op EXPORT_SYMBOL_GPL vmlinux 0x3481a154 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x3486a980 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x3487f604 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x34932d44 sdhci_add_host EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x34aaf2a9 fsverity_cleanup_inode EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl EXPORT_SYMBOL_GPL vmlinux 0x34ad7f42 rockchip_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x34da6f7c aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x34b0c807 icc_enable EXPORT_SYMBOL_GPL vmlinux 0x34dfe431 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x34e0806b ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0x34e859be dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x34f1f5d9 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x35069ec3 tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0x3506d25f mtd_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x351852a1 sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0x3519a922 mbox_send_message EXPORT_SYMBOL_GPL vmlinux 0x352386ea pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x352ab7ec sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x35252c3a sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy EXPORT_SYMBOL_GPL vmlinux 0x35301faf loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0x35319f55 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x3532f3e6 mmc_pwrseq_register EXPORT_SYMBOL_GPL vmlinux 0x35386733 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x35403717 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x353a2cd8 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x353ab463 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0x353b71e3 sdhci_cleanup_host +EXPORT_SYMBOL_GPL vmlinux 0x35525918 sata_scr_write EXPORT_SYMBOL_GPL vmlinux 0x35681ae3 __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x35797faa cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x357bc4be perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x358a0b36 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x35698220 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x35874139 spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x358c1aca irq_chip_set_vcpu_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x3599fc1d event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x35aa8ba3 devlink_trap_policers_register EXPORT_SYMBOL_GPL vmlinux 0x35aed7a5 rio_request_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0x35b8364b fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x35c02c82 icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0x35c7914d phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x35c147b6 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x35d685f9 device_add_properties EXPORT_SYMBOL_GPL vmlinux 0x35dec720 thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x35e78008 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x35e53700 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x35ec7ccc ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x361d038c _snd_pcm_stream_lock_irqsave EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process @@ -20066,31 +20060,36 @@ EXPORT_SYMBOL_GPL vmlinux 0x36255e9d usb_anchor_urb EXPORT_SYMBOL_GPL vmlinux 0x36356eda tegra124_clk_set_emc_callbacks EXPORT_SYMBOL_GPL vmlinux 0x363f79b4 d_walk EXPORT_SYMBOL_GPL vmlinux 0x364add1a pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x3650054e shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x36682189 ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x36734cdd edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x367a7e76 crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x367efca5 vchan_dma_desc_free_list EXPORT_SYMBOL_GPL vmlinux 0x36897f7e phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x36929a42 gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot EXPORT_SYMBOL_GPL vmlinux 0x36a38db3 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x36a90045 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0x36ad2d25 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x36b091e1 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x36ba7c4d scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0x36c20c6f kill_mtd_super EXPORT_SYMBOL_GPL vmlinux 0x36ccb7f5 fuse_dev_release EXPORT_SYMBOL_GPL vmlinux 0x36ce868a fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x36d0b8e1 ata_cable_80wire EXPORT_SYMBOL_GPL vmlinux 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x36f02789 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x36f1929b regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0x36f5cc75 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x36f6608b inet_ehash_locks_alloc EXPORT_SYMBOL_GPL vmlinux 0x36f67500 vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x3720e9df shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x36f8ad8c ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x37046976 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x37102bf5 file_ra_state_init EXPORT_SYMBOL_GPL vmlinux 0x37231470 devfreq_event_disable_edev EXPORT_SYMBOL_GPL vmlinux 0x372abad5 vp_modern_map_vq_notify EXPORT_SYMBOL_GPL vmlinux 0x3731d208 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x373e7150 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x3745cf9e unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x374bce78 tegra_bpmp_free_mrq EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript EXPORT_SYMBOL_GPL vmlinux 0x3753b5f8 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x375752a7 gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0x37595cb3 meson_clk_mpll_ops EXPORT_SYMBOL_GPL vmlinux 0x375e28d5 of_alias_get_id EXPORT_SYMBOL_GPL vmlinux 0x376c85d1 class_unregister @@ -20098,110 +20097,104 @@ EXPORT_SYMBOL_GPL vmlinux 0x37743b64 iomap_dio_complete EXPORT_SYMBOL_GPL vmlinux 0x3778193a rio_dev_get EXPORT_SYMBOL_GPL vmlinux 0x377b6cbf blk_mq_complete_request_remote EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x379478a6 ahci_reset_controller EXPORT_SYMBOL_GPL vmlinux 0x37983cc9 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x379bd35c security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x379ad7e6 clk_hw_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x37a93022 usb_set_interface EXPORT_SYMBOL_GPL vmlinux 0x37aaaa68 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x37c3c6a7 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x37d1040d is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0x37d393ef regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x37ad805c sdhci_get_property +EXPORT_SYMBOL_GPL vmlinux 0x37b2d202 device_del +EXPORT_SYMBOL_GPL vmlinux 0x37ca8f5b pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x37e619c4 ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0x3807dbc1 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x381d7b48 device_add_properties EXPORT_SYMBOL_GPL vmlinux 0x381e96da devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x38247311 devm_regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0x38270b59 devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x382aa87e crypto_stats_kpp_compute_shared_secret EXPORT_SYMBOL_GPL vmlinux 0x382de6d6 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x382ff534 xfrm_output EXPORT_SYMBOL_GPL vmlinux 0x3830dec4 tty_port_install EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection EXPORT_SYMBOL_GPL vmlinux 0x383cfd04 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x384b933d devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x3872e610 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x38887749 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x38521837 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x38797bd6 __sdhci_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x387da6f5 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x3885b3d9 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3886d020 inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0x3888b55b i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x38999e46 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0x389a4c01 powercap_register_control_type 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 0x38ae89a5 sdio_writeb_readb EXPORT_SYMBOL_GPL vmlinux 0x38b0aec8 nand_reset_op EXPORT_SYMBOL_GPL vmlinux 0x38c0c9e4 btree_update EXPORT_SYMBOL_GPL vmlinux 0x38c75d91 dax_attribute_group EXPORT_SYMBOL_GPL vmlinux 0x38d9b94c snd_ac97_reset +EXPORT_SYMBOL_GPL vmlinux 0x38da80ae dev_pm_qos_hide_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set -EXPORT_SYMBOL_GPL vmlinux 0x38e45fb9 ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0x38e46eb0 snd_soc_component_compr_get_caps EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x3919e2a7 snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0x38e86e98 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x39062ce5 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x39234bc4 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x392e8342 sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0x39325be4 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x3952ed04 gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0x3955d70a dbs_update -EXPORT_SYMBOL_GPL vmlinux 0x3956268a devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x395fbd3e inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x397e62d6 usb_gadget_probe_driver EXPORT_SYMBOL_GPL vmlinux 0x39810694 usb_gadget_frame_number EXPORT_SYMBOL_GPL vmlinux 0x39918bb2 tegra_bpmp_mrq_is_supported -EXPORT_SYMBOL_GPL vmlinux 0x399eab0a crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x39a1701f bio_start_io_acct EXPORT_SYMBOL_GPL vmlinux 0x39a72d58 syscon_regmap_lookup_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39b2877b ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0x39b2adc7 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x39b65f81 devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x39b9b717 devlink_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0x39bcd534 ata_sff_port_ops EXPORT_SYMBOL_GPL vmlinux 0x39bea9ea pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x39bf662f get_task_pid EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x39cc3fc6 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x39d0e27d ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x39ced4d9 scsi_build_sense EXPORT_SYMBOL_GPL vmlinux 0x39d46b20 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x39d9a1bf hisi_reset_init EXPORT_SYMBOL_GPL vmlinux 0x39dcd18f serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x39dfa2c5 snd_soc_dapm_nc_pin EXPORT_SYMBOL_GPL vmlinux 0x39e1b931 anon_transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x3a055a95 of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0x3a1e3d92 skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0x3a263e43 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x3a3c4e00 snd_soc_tplg_widget_bind_event EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a837efc fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x3a85faef gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial EXPORT_SYMBOL_GPL vmlinux 0x3aa71cf5 page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x3aaae4d9 crypto_ahash_setkey EXPORT_SYMBOL_GPL vmlinux 0x3ab06f1e dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x3ab5cf58 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x3abc2cb0 ip6_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x3abdbd1e rt_mutex_trylock EXPORT_SYMBOL_GPL vmlinux 0x3abf6c06 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3ac8892e platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad916c4 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x3adb0495 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x3adbf04b device_store_int EXPORT_SYMBOL_GPL vmlinux 0x3ae30983 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x3af8b272 rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x3aff1f63 ohci_hub_control EXPORT_SYMBOL_GPL vmlinux 0x3b03d5a9 dev_pm_opp_of_remove_table EXPORT_SYMBOL_GPL vmlinux 0x3b0714f7 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x3b1d53f7 trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0x3b2070f2 tpm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0x3b2ba89e musb_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x3b3386ec lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0x3b367ab5 usb_bulk_msg EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b4f815e devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x3b59a5e5 dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0x3b61a110 genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0x3b718e08 tpm_default_chip EXPORT_SYMBOL_GPL vmlinux 0x3b7d0c96 devm_pm_opp_set_regulators EXPORT_SYMBOL_GPL vmlinux 0x3b82d1fe usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x3b8b4854 mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0x3b8e7790 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x3bccb5a5 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x3bdae164 br_fdb_test_addr_hook EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test EXPORT_SYMBOL_GPL vmlinux 0x3be847e9 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0x3bf0c366 i2c_new_smbus_alert_device EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer EXPORT_SYMBOL_GPL vmlinux 0x3bf21b07 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x3bf5ef9a icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x3bfa9586 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x3bfdf542 clk_hw_get_rate EXPORT_SYMBOL_GPL vmlinux 0x3c03492e fwnode_create_software_node EXPORT_SYMBOL_GPL vmlinux 0x3c05f7e4 dm_internal_suspend_fast EXPORT_SYMBOL_GPL vmlinux 0x3c107574 usb_alloc_urb @@ -20209,125 +20202,125 @@ EXPORT_SYMBOL_GPL vmlinux 0x3c174cc7 usb_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x3c1b6db8 extcon_register_notifier_all EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check EXPORT_SYMBOL_GPL vmlinux 0x3c1c9995 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x3c200a31 regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x3c215616 virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x3c28bc21 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x3c2a405a bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x3c2ab8b0 ata_std_qc_defer EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply EXPORT_SYMBOL_GPL vmlinux 0x3c2ffb80 ata_pci_bmdma_clear_simplex EXPORT_SYMBOL_GPL vmlinux 0x3c375113 of_property_read_u32_index EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c4af8f2 cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0x3c64d2cc device_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable EXPORT_SYMBOL_GPL vmlinux 0x3c72724e usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x3c7ecaad crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x3c85a56a regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x3c8938a7 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x3c750c29 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x3c79f60d sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x3c846537 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL vmlinux 0x3c8f0047 __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0x3cb97b17 iommu_group_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x3cc033b4 pm_schedule_suspend EXPORT_SYMBOL_GPL vmlinux 0x3cc37b7e sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x3cc79fc7 dev_pm_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x3ccadd1a iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x3ccef5ec ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3cd6ef3d vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x3cda8c27 device_create EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3cfb5079 devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0x3cfb5ed4 __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0x3d009b14 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x3d090a69 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x3d042cc8 devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0x3d0cc2fe devm_create_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x3d12095d mtd_kmalloc_up_to EXPORT_SYMBOL_GPL vmlinux 0x3d14dee5 pm_generic_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0x3d152589 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x3d348a1e gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d4b62aa crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x3d3a040b ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check EXPORT_SYMBOL_GPL vmlinux 0x3d585115 snd_soc_info_enum_double EXPORT_SYMBOL_GPL vmlinux 0x3d677e30 pci_bus_resource_n EXPORT_SYMBOL_GPL vmlinux 0x3d71eafa __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x3d79b31d root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3d7feb71 strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d86e738 bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0x3d8b2731 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x3d8e892d spi_async EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon -EXPORT_SYMBOL_GPL vmlinux 0x3da0b65f ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0x3da61ee9 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x3da97fe0 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x3dad3ef7 perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x3db48a49 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3dc1bffd mmc_regulator_set_vqmmc EXPORT_SYMBOL_GPL vmlinux 0x3dcd467b musb_root_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x3dd513d4 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0x3de02eff pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final EXPORT_SYMBOL_GPL vmlinux 0x3df16147 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3dfab0fb ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x3dfd602d sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0x3e0b2b46 power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x3e132576 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x3e138b2e bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x3e25b2aa ping_unhash EXPORT_SYMBOL_GPL vmlinux 0x3e27065b usb_ep_set_wedge EXPORT_SYMBOL_GPL vmlinux 0x3e2deea0 fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x3e301243 ata_sas_tport_add EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3e38669d __inode_attach_wb EXPORT_SYMBOL_GPL vmlinux 0x3e444a7c usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x3e459486 vfs_write +EXPORT_SYMBOL_GPL vmlinux 0x3e4cb2bf dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x3e4f36f7 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x3e56b3eb ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x3e546cad fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x3e5482a8 devm_snd_soc_register_dai EXPORT_SYMBOL_GPL vmlinux 0x3e57ac86 serdev_device_set_baudrate EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e740c10 trace_event_ignore_this_pid EXPORT_SYMBOL_GPL vmlinux 0x3e83abd9 mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x3e8a08c7 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x3e92b99a add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x3eb001b1 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x3e9b31ce devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x3ebd20bb snd_soc_cnew EXPORT_SYMBOL_GPL vmlinux 0x3ec40239 idr_alloc_u32 EXPORT_SYMBOL_GPL vmlinux 0x3ed66371 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x3ee04470 blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3ef7c146 snd_soc_component_write_field -EXPORT_SYMBOL_GPL vmlinux 0x3ef905ac snd_soc_component_nc_pin EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x3efd9c6f blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy EXPORT_SYMBOL_GPL vmlinux 0x3f117652 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x3f1ef6fc sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x3f2984fe metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x3f314f79 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x3f370f81 __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x3f3a6378 pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0x3f46bb65 irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f4ce527 fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0x3f50dca2 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x3f5ed661 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x3f72ac0f __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x3f653f8f dapm_clock_event +EXPORT_SYMBOL_GPL vmlinux 0x3f6f12df unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put EXPORT_SYMBOL_GPL vmlinux 0x3f9d88c4 nand_prog_page_op -EXPORT_SYMBOL_GPL vmlinux 0x3f9ff050 bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0x3faf7437 bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0x3fbbcb7e devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x3fbb022b bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0x3fbc067d fscrypt_ioctl_get_nonce EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x3fe91c31 eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3febfb0d validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x3ff68d1c snd_soc_dai_action EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free EXPORT_SYMBOL_GPL vmlinux 0x3ff9463a rockchip_register_restart_notifier EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x40375501 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x4014f13d register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x4029d718 kern_mount EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x40410a83 sdio_readw EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x4069dc44 mmput EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout EXPORT_SYMBOL_GPL vmlinux 0x40773546 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x407cc3f7 crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x4082f95f pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0x4086fb32 devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x409056e0 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x4096334d netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free EXPORT_SYMBOL_GPL vmlinux 0x409a6ddb spi_delay_to_ns EXPORT_SYMBOL_GPL vmlinux 0x40a0e0b1 regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x40a0f8d9 usb_gadget_activate -EXPORT_SYMBOL_GPL vmlinux 0x40a2199a skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0x40c3c8d1 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x40c90a64 i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x40cd4a08 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x40d78889 devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0x40df7d55 scsi_autopm_get_device EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f4a606 vfs_inode_has_locks EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before EXPORT_SYMBOL_GPL vmlinux 0x40f9e891 tty_port_register_device @@ -20337,426 +20330,412 @@ EXPORT_SYMBOL_GPL vmlinux 0x4101b7e0 gpiod_get_from_of_node EXPORT_SYMBOL_GPL vmlinux 0x41070c68 regulator_map_voltage_ascend EXPORT_SYMBOL_GPL vmlinux 0x41138ca2 rio_unregister_scan EXPORT_SYMBOL_GPL vmlinux 0x4118cba8 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x411c11de ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0x411e7e44 tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x412d32f8 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0x412d54be ftrace_set_notrace EXPORT_SYMBOL_GPL vmlinux 0x41344e65 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x4136149b snd_soc_unregister_card -EXPORT_SYMBOL_GPL vmlinux 0x413df890 snd_soc_dai_action EXPORT_SYMBOL_GPL vmlinux 0x414538e6 synth_event_add_field_str EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x414dc0bc of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x4154590a led_trigger_register_simple EXPORT_SYMBOL_GPL vmlinux 0x41599b10 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x4161a93c regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x4167a4cd i2c_add_numbered_adapter EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x4188b8b7 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x418b033e tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop EXPORT_SYMBOL_GPL vmlinux 0x41a006e9 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL vmlinux 0x41aca72a snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x41ae0d50 snd_soc_component_async_complete EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x41c1fde5 ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0x41c30f3a trace_seq_bprintf EXPORT_SYMBOL_GPL vmlinux 0x41c4c3b7 wm831x_device_shutdown EXPORT_SYMBOL_GPL vmlinux 0x41c7a22b show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x41d01720 devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0x41d5c22e devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x41d9ba14 netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x41e05c59 rt_mutex_lock EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x41f229c3 reset_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x4208695c usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x420d7492 inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4214aceb page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0x421930d4 mtk_pinconf_adv_pull_set -EXPORT_SYMBOL_GPL vmlinux 0x421deb8b receive_fd -EXPORT_SYMBOL_GPL vmlinux 0x4226f23f page_endio -EXPORT_SYMBOL_GPL vmlinux 0x422984bc sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x421ca28e devlink_port_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0x42400f3c lp8788_read_byte EXPORT_SYMBOL_GPL vmlinux 0x425b5c34 __bio_try_merge_page EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42703972 crypto_unregister_ahashes EXPORT_SYMBOL_GPL vmlinux 0x4270b8d1 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x4272e376 inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x427440c4 __phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428898c4 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x42977117 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x429a8d67 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x4291ef19 regmap_register_patch EXPORT_SYMBOL_GPL vmlinux 0x42ad57ff devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x42b4d1dd snd_soc_dapm_free -EXPORT_SYMBOL_GPL vmlinux 0x42bfe4d3 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x42c781f5 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x42bc0e10 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x42be2308 mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x42ca9b3a clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x42d467a9 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x42d54d6b rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x42d5226c spi_add_device EXPORT_SYMBOL_GPL vmlinux 0x42e445f6 clk_mux_val_to_index EXPORT_SYMBOL_GPL vmlinux 0x42e7a297 scatterwalk_map_and_copy EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit EXPORT_SYMBOL_GPL vmlinux 0x42efb127 nvmem_del_cell_lookups EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42fe2974 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x42ffa4dd pm_wakeup_dev_event EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x43104c00 tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x43256aca __traceiter_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x432bd5d6 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x433fabcd nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0x434362bb vp_modern_config_vector EXPORT_SYMBOL_GPL vmlinux 0x434a4ccf dev_pm_opp_put_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x434efd5f bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x43505432 spi_res_release EXPORT_SYMBOL_GPL vmlinux 0x43609ee1 vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0x436208c2 phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x437f6385 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0x439af020 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x43a074bc sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0x43a76b99 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x438e8997 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x43a6dcd7 devm_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x43b7e1ef tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x43ba57da ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x43b99825 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x43c109d8 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x43c591cf __vfs_setxattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x43ce8db6 hvc_instantiate EXPORT_SYMBOL_GPL vmlinux 0x43d61c62 snd_soc_free_ac97_component EXPORT_SYMBOL_GPL vmlinux 0x43dfd261 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x43e21c76 snd_soc_runtime_calc_hw EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x43f89aad nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs EXPORT_SYMBOL_GPL vmlinux 0x4402d49e blk_freeze_queue_start EXPORT_SYMBOL_GPL vmlinux 0x440e9e03 vchan_tx_desc_free EXPORT_SYMBOL_GPL vmlinux 0x4411704c clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x441c19c5 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4420a54f bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0x4424c30a phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x442b6a4b cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x4444c3e3 rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x44468361 vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x444a7f62 spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0x444b6e9d regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x44507a1b snd_soc_dapm_add_routes EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x446a7d02 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x446f322f __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0x446fd25d get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x44763c65 sched_show_task EXPORT_SYMBOL_GPL vmlinux 0x44818b16 fscrypt_get_symlink EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44996470 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x4494788d addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x449a3368 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x44affe1d sdio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x44c3ad74 vp_modern_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x44cbaf6c ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x44ccf163 ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44dc3970 crypto_stats_rng_seed EXPORT_SYMBOL_GPL vmlinux 0x44f600dd qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0x44f645cd snd_soc_card_remove_dai_link EXPORT_SYMBOL_GPL vmlinux 0x44fb1712 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x45072324 devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen EXPORT_SYMBOL_GPL vmlinux 0x451925a5 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4524261e regulator_set_mode EXPORT_SYMBOL_GPL vmlinux 0x452ab481 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x452bf79b device_match_fwnode EXPORT_SYMBOL_GPL vmlinux 0x453adc46 usb_set_device_state EXPORT_SYMBOL_GPL vmlinux 0x4543b970 fsverity_verify_bio EXPORT_SYMBOL_GPL vmlinux 0x4544069b scsi_target_unblock EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x455eef5f vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister EXPORT_SYMBOL_GPL vmlinux 0x4567e605 kthread_mod_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x458af3ac pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x457d7537 ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0x4590ec6b clk_register_divider_table EXPORT_SYMBOL_GPL vmlinux 0x45930016 of_get_fb_videomode EXPORT_SYMBOL_GPL vmlinux 0x459367e0 nand_read_oob_op EXPORT_SYMBOL_GPL vmlinux 0x459da87e pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x459df9c8 ip_valid_fib_dump_req EXPORT_SYMBOL_GPL vmlinux 0x45a9fa8c phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x45b0d879 devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x45b87938 devm_bitmap_zalloc EXPORT_SYMBOL_GPL vmlinux 0x45c0a901 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x45c175d6 regulator_set_mode EXPORT_SYMBOL_GPL vmlinux 0x45c74989 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x45c8769f gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x45e4ca0e devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x45ef515b regulator_suspend_disable EXPORT_SYMBOL_GPL vmlinux 0x45f9c923 ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x45ff8535 trace_seq_putc EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46045d55 posix_clock_register EXPORT_SYMBOL_GPL vmlinux 0x460fb154 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x46194ed4 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x461d6f38 snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL vmlinux 0x46207901 fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0x4620a750 phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x462c2e74 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x462f817c spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x464890c5 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x462ea733 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4646bfc2 ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0x464c038a vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0x4661ff3d gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x46663f94 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x466254d8 fl6_update_dst EXPORT_SYMBOL_GPL vmlinux 0x4668fac8 disk_uevent EXPORT_SYMBOL_GPL vmlinux 0x466d2d84 rio_add_net EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x46744817 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x4685def7 wakeup_source_unregister EXPORT_SYMBOL_GPL vmlinux 0x46887ea7 class_dev_iter_init EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46a09830 unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0x46aac74c pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x46b7afd4 mmc_crypto_prepare_req EXPORT_SYMBOL_GPL vmlinux 0x46bda6ff dm_internal_suspend_noflush EXPORT_SYMBOL_GPL vmlinux 0x46c06c19 klist_add_head EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops EXPORT_SYMBOL_GPL vmlinux 0x46c9bf22 dev_pm_opp_register_set_opp_helper EXPORT_SYMBOL_GPL vmlinux 0x46cc8f94 pinconf_generic_parse_dt_config EXPORT_SYMBOL_GPL vmlinux 0x46d0bd5b nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x46d6736e skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x46ec267f spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x46edaa67 nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put +EXPORT_SYMBOL_GPL vmlinux 0x470294df strp_process EXPORT_SYMBOL_GPL vmlinux 0x470bef79 driver_deferred_probe_check_state EXPORT_SYMBOL_GPL vmlinux 0x470ed7a4 devm_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x47149557 usb_gadget_set_remote_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x471a8971 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x471eb1d0 shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0x47206f68 tc3589x_reg_read EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472a4cdf platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x472d25b3 pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x472f619d ehci_suspend EXPORT_SYMBOL_GPL vmlinux 0x47317949 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x475b0f05 xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47814373 sock_gen_put 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 0x47925794 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x47940906 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x47988e74 device_show_ulong EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a2820b regulator_set_voltage EXPORT_SYMBOL_GPL vmlinux 0x47a788a1 ata_pci_bmdma_init_one EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy EXPORT_SYMBOL_GPL vmlinux 0x47b8d14e amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x47cd2b89 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL vmlinux 0x47d21d56 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x47d82df6 skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47f9ceee gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x47e40d95 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x47e581c4 netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0x48020c1c irq_get_percpu_devid_partition EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind EXPORT_SYMBOL_GPL vmlinux 0x4803d080 devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x480b58e7 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x4812bc07 crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm EXPORT_SYMBOL_GPL vmlinux 0x48268631 __vring_new_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x484779ef __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x48581e73 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x48573d2e devm_i2c_add_adapter EXPORT_SYMBOL_GPL vmlinux 0x48648366 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x486b92ca devlink_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0x487c0f32 pkcs7_verify EXPORT_SYMBOL_GPL vmlinux 0x48840a8d __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x48861140 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x48a36d7e skcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48aa1ce7 netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x48ac05d6 __tracepoint_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x48ca2bbd vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x48d8a377 __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x48e24c28 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x48e6a5d0 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x48ce802a gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x48d59835 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x48ded373 wbc_attach_and_unlock_inode EXPORT_SYMBOL_GPL vmlinux 0x48e7ab6a rhashtable_destroy EXPORT_SYMBOL_GPL vmlinux 0x48e8e813 __devm_pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x48e91bb4 cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0x4917a2e9 __ata_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x491811f2 fb_deferred_io_open EXPORT_SYMBOL_GPL vmlinux 0x491a47c0 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x491b85d9 spi_finalize_current_transfer EXPORT_SYMBOL_GPL vmlinux 0x492c0cbb power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x49310f42 bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0x49326ef6 irq_set_affinity_notifier EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x493c6348 switchdev_handle_fdb_add_to_device -EXPORT_SYMBOL_GPL vmlinux 0x493c714d l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x494f75f0 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL vmlinux 0x495897da __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x4942884f hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x494f9daa cpufreq_cpu_put EXPORT_SYMBOL_GPL vmlinux 0x495e7380 blk_ksm_intersect_modes EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x4978ac19 put_pid EXPORT_SYMBOL_GPL vmlinux 0x49830f0e __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x498b6563 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue EXPORT_SYMBOL_GPL vmlinux 0x49968ed5 devres_release_group EXPORT_SYMBOL_GPL vmlinux 0x49a72d55 usb_get_dev EXPORT_SYMBOL_GPL vmlinux 0x49ad987e iommu_fwspec_init EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49d0b5cc tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x49d42bab snd_soc_dapm_del_routes EXPORT_SYMBOL_GPL vmlinux 0x49d96707 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x49dd5a16 ip_local_out EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f73583 pwm_capture EXPORT_SYMBOL_GPL vmlinux 0x49fa8ec2 phy_check_downshift -EXPORT_SYMBOL_GPL vmlinux 0x49facdad zap_vma_ptes EXPORT_SYMBOL_GPL vmlinux 0x49fc6dad usb_block_urb EXPORT_SYMBOL_GPL vmlinux 0x49feecdb debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x4a001619 snd_soc_dapm_force_bias_level EXPORT_SYMBOL_GPL vmlinux 0x4a1007d9 nanddev_markbad EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a20ece5 xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x4a29b747 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x4a29b9eb __iptunnel_pull_header EXPORT_SYMBOL_GPL vmlinux 0x4a2e764e transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x4a3900ba icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0x4a394633 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x4a30c630 gpiochip_unlock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x4a3c3ce1 debugfs_create_bool EXPORT_SYMBOL_GPL vmlinux 0x4a442474 __devm_clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0x4a44a2e0 debugfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0x4a4dc09f devm_thermal_zone_of_sensor_register EXPORT_SYMBOL_GPL vmlinux 0x4a52832d blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x4a564faf gpiochip_populate_parent_fwspec_twocell EXPORT_SYMBOL_GPL vmlinux 0x4a5753b4 dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0x4a6fc7b3 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x4a64ddbe ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x4a7d3e17 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4a7e72b3 pci_host_common_probe EXPORT_SYMBOL_GPL vmlinux 0x4a88a33a tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0x4a955505 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL vmlinux 0x4a99d7ba __traceiter_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x4aa0ba36 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x4aa73d42 snd_soc_tplg_component_load EXPORT_SYMBOL_GPL vmlinux 0x4aa9c715 __reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x4abae75c irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x4ac07f3e blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0x4adac265 usb_free_streams EXPORT_SYMBOL_GPL vmlinux 0x4aeb3373 transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x4af1c494 usb_get_status EXPORT_SYMBOL_GPL vmlinux 0x4af4e07d iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4afd8444 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x4b009ca2 xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x4b064e3d fsverity_file_open EXPORT_SYMBOL_GPL vmlinux 0x4b0843c0 subsys_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0x4b0e42aa iomap_swapfile_activate EXPORT_SYMBOL_GPL vmlinux 0x4b12197f regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x4b155a1f crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x4b2a84ee __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x4b2f91d7 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x4b35cf0a regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0x4b37b9b5 usb_autopm_get_interface_async EXPORT_SYMBOL_GPL vmlinux 0x4b393e1d phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0x4b47fab4 nand_reset EXPORT_SYMBOL_GPL vmlinux 0x4b4d2500 nanddev_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x4b50355c ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x4b51b760 irq_chip_retrigger_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x4b619c81 platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0x4b639c06 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4b704c23 vfs_read EXPORT_SYMBOL_GPL vmlinux 0x4b747f37 debugfs_lookup_and_remove EXPORT_SYMBOL_GPL vmlinux 0x4b869ca6 meson8_pmx_ops EXPORT_SYMBOL_GPL vmlinux 0x4b888698 serial8250_clear_and_reinit_fifos EXPORT_SYMBOL_GPL vmlinux 0x4b8d7232 pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0x4b8e8c09 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x4ba30b47 mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0x4ba3d392 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x4ba4165b register_trace_event EXPORT_SYMBOL_GPL vmlinux 0x4bacecd9 tty_port_link_device EXPORT_SYMBOL_GPL vmlinux 0x4bb78cd8 fwnode_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x4bbe2cd1 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x4bec5f35 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x4bfa1652 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x4bbea026 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x4bc37d60 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x4bdb7db7 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x4bdd973b device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x4bde8e31 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0x4bdf8de9 devm_i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0x4bfed104 dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x4c046003 ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0x4c047fc7 fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0x4c0549fa devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0x4c11e426 __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4c16e028 sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4c282080 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x4c265e0b bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x4c287ae6 devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0x4c2c75b9 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x4c3346a3 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x4c3b47ab msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x4c4cad11 cpts_register +EXPORT_SYMBOL_GPL vmlinux 0x4c385081 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x4c4a956d snd_soc_component_disable_pin EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c57705c snd_soc_dapm_update_dai EXPORT_SYMBOL_GPL vmlinux 0x4c57e435 dev_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0x4c58492f pci_epf_remove_vepf EXPORT_SYMBOL_GPL vmlinux 0x4c58f2e8 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x4c6c968e __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x4c62f7a2 crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0x4c7c344a of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x4c87215d ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x4c9e0c4b usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x4ca1625d lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x4ca64f8d regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x4caa8191 nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cbfd443 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL vmlinux 0x4cbfd5ba clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x4cbdb49f __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0x4cf044fc sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0x4cf24332 __usb_get_extra_descriptor EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d10021d crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x4d1b2c78 phy_pm_runtime_put EXPORT_SYMBOL_GPL vmlinux 0x4d224c07 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x4d27d757 crypto_enqueue_request_head EXPORT_SYMBOL_GPL vmlinux 0x4d2adf58 noop_backing_dev_info EXPORT_SYMBOL_GPL vmlinux 0x4d2de214 of_irq_to_resource EXPORT_SYMBOL_GPL vmlinux 0x4d3795f1 irq_domain_free_fwnode EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d505013 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x4d544c8e wm8350_set_bits EXPORT_SYMBOL_GPL vmlinux 0x4d5d9cf2 __fsnotify_parent EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable EXPORT_SYMBOL_GPL vmlinux 0x4d78996c usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x4d818a6a gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x4da50ab8 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x4dad026d ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf EXPORT_SYMBOL_GPL vmlinux 0x4db6375a of_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x4dd39f79 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x4dc824c0 desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4dda5696 skcipher_walk_complete EXPORT_SYMBOL_GPL vmlinux 0x4ddb678b __pm_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x4ddf87ca regulator_map_voltage_iterate EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string EXPORT_SYMBOL_GPL vmlinux 0x4de2381e register_kretprobe EXPORT_SYMBOL_GPL vmlinux 0x4df88fb1 nanddev_bbt_init +EXPORT_SYMBOL_GPL vmlinux 0x4df9b567 spi_controller_suspend EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff EXPORT_SYMBOL_GPL vmlinux 0x4e034348 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x4e05ed59 regulator_get_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x4e0c9f8d relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x4e0e3475 wakeup_sources_walk_next EXPORT_SYMBOL_GPL vmlinux 0x4e15fbc2 clockevent_delta2ns EXPORT_SYMBOL_GPL vmlinux 0x4e1773a4 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x4e1f0347 device_rename EXPORT_SYMBOL_GPL vmlinux 0x4e1fcf43 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x4e21bdd6 switchdev_handle_fdb_del_to_device EXPORT_SYMBOL_GPL vmlinux 0x4e233bfd pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x4e274ac6 ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0x4e422600 start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x4e4d6729 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL vmlinux 0x4e5a1454 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x4e621a6d i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x4e78beae shash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x4e7d5e52 regulator_get_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0x4e9abd75 regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x4ea2ffae dev_pm_opp_add EXPORT_SYMBOL_GPL vmlinux 0x4ea72d21 of_changeset_action EXPORT_SYMBOL_GPL vmlinux 0x4ea74e52 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x4eabb439 register_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eac94b7 crypto_unregister_aead EXPORT_SYMBOL_GPL vmlinux 0x4eb1b150 __serdev_device_driver_register EXPORT_SYMBOL_GPL vmlinux 0x4eb48ccb unregister_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0x4ebb1efa ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x4ec6dac7 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4ec9cc99 filemap_range_needs_writeback EXPORT_SYMBOL_GPL vmlinux 0x4eda3212 ata_pci_bmdma_init EXPORT_SYMBOL_GPL vmlinux 0x4edcc250 device_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x4ee5a257 devm_request_pci_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x4ee79862 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x4eea0b87 crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f0677e2 snd_soc_dpcm_can_be_free_stop EXPORT_SYMBOL_GPL vmlinux 0x4f221155 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x4f2c06b0 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x4f340288 gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x4f3ba219 blkg_rwstat_init EXPORT_SYMBOL_GPL vmlinux 0x4f49b1b2 rockchip_clk_add_lookup EXPORT_SYMBOL_GPL vmlinux 0x4f4a954e pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x4f4e018a wm8350_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0x4f559777 ahci_platform_disable_resources EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6b865e snd_soc_component_update_bits EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f72e8fe ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x4f733ec0 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x4f934ad4 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x4f747908 rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4f9c16ad snd_soc_jack_get_type EXPORT_SYMBOL_GPL vmlinux 0x4fa10dde devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x4fa57153 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0x4fae2e10 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x4fda3117 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0x4fb344a4 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x4fb6912f __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal EXPORT_SYMBOL_GPL vmlinux 0x4fde307f devm_rtc_allocate_device EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier EXPORT_SYMBOL_GPL vmlinux 0x4ffc8dad tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x5008f2b3 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x50028353 i2c_recover_bus EXPORT_SYMBOL_GPL vmlinux 0x5012cfa9 nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0x50197faf dev_pm_qos_hide_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x501b62bd driver_remove_file EXPORT_SYMBOL_GPL vmlinux 0x50301e84 of_pci_find_child_device EXPORT_SYMBOL_GPL vmlinux 0x503593d4 devm_ioremap_uc EXPORT_SYMBOL_GPL vmlinux 0x5039d81e badblocks_exit EXPORT_SYMBOL_GPL vmlinux 0x503eeebb synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x50465cea regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x504b2c41 pci_generic_config_write EXPORT_SYMBOL_GPL vmlinux 0x504e4b17 md_bitmap_copy_from_slot EXPORT_SYMBOL_GPL vmlinux 0x5057410d __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x506afdad spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x5075bc0a ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x5086c2d9 mvebu_mbus_get_dram_win_info +EXPORT_SYMBOL_GPL vmlinux 0x508aa1d2 of_i2c_setup_smbus_alert EXPORT_SYMBOL_GPL vmlinux 0x508afef4 usb_anchor_suspend_wakeups EXPORT_SYMBOL_GPL vmlinux 0x508e6f1f usb_wakeup_enabled_descendants EXPORT_SYMBOL_GPL vmlinux 0x508fe2e8 input_ff_destroy EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50950d9a snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0x509b5a39 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x509c559f devlink_port_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x50b6ade0 ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL vmlinux 0x50c0488c hrtimer_init_sleeper EXPORT_SYMBOL_GPL vmlinux 0x50c58351 qcom_smem_state_register -EXPORT_SYMBOL_GPL vmlinux 0x50c7c828 mmc_send_tuning EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x50d544f4 pci_epc_put EXPORT_SYMBOL_GPL vmlinux 0x50d5a6cd of_pci_range_parser_init @@ -20767,134 +20746,132 @@ EXPORT_SYMBOL_GPL vmlinux 0x510a1446 led_trigger_set_default EXPORT_SYMBOL_GPL vmlinux 0x51153b89 __tracepoint_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0x5145be67 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x514def67 pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x5150a48e led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0x51539731 fwnode_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x5157848a mtk_pinconf_adv_drive_get_raw EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x515cd9a5 usb_gadget_check_config EXPORT_SYMBOL_GPL vmlinux 0x516c5dcc of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x51754009 inet_hashinfo2_init_mod EXPORT_SYMBOL_GPL vmlinux 0x51766a35 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x517af40e clk_hw_get_name EXPORT_SYMBOL_GPL vmlinux 0x517b4120 iomap_file_unshare EXPORT_SYMBOL_GPL vmlinux 0x518b120d xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x518fd67c devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x51968e09 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x518f8ce0 spi_replace_transfers EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable EXPORT_SYMBOL_GPL vmlinux 0x519b69f3 snd_soc_component_compr_trigger EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0x51a78101 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x51b81cac cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x51b97088 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x51c3feb2 sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0x51cdd52b msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0x51d3a6fa dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x51b5d46f set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x51b6480f wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x51ba4287 switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0x51e32261 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x51eba9a8 devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0x5201b780 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x52074f05 crypto_stats_kpp_generate_public_key EXPORT_SYMBOL_GPL vmlinux 0x520e42a5 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x521111c5 i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0x5217fe95 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x52199dbb thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x521c8bc9 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x521841a7 event_triggers_call EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x522e9442 usb_hcd_setup_local_mem EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock EXPORT_SYMBOL_GPL vmlinux 0x523e35bb watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x5249f927 cpufreq_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x52717a5e balloon_aops EXPORT_SYMBOL_GPL vmlinux 0x5271dbf4 pci_ioremap_io EXPORT_SYMBOL_GPL vmlinux 0x52770775 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x528d7de0 inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x5291fe11 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x52a85501 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x52956f25 snd_soc_unregister_dai EXPORT_SYMBOL_GPL vmlinux 0x52a859e6 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x52b15bcc nf_route +EXPORT_SYMBOL_GPL vmlinux 0x52af3dec crypto_unregister_skciphers EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags EXPORT_SYMBOL_GPL vmlinux 0x52b2bdac usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0x52b2cf12 crypto_create_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x52b3e8a1 is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0x52b527c2 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x52b713b3 fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0x52ba6a32 unmap_mapping_pages EXPORT_SYMBOL_GPL vmlinux 0x52bd2a13 irq_domain_free_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0x52bde6fe regulator_set_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put EXPORT_SYMBOL_GPL vmlinux 0x52d7dbf8 snd_power_ref_and_wait -EXPORT_SYMBOL_GPL vmlinux 0x52ef909e dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x5309b823 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x530b923f scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x5320b4b7 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x52ea14b8 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x52fd9ac9 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x53284bae ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x532d075c __auxiliary_driver_register EXPORT_SYMBOL_GPL vmlinux 0x5333408a pinconf_generic_dt_free_map EXPORT_SYMBOL_GPL vmlinux 0x53455e6c of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x53539fb7 perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x535f3c77 shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x53806a1e regulator_sync_voltage EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str EXPORT_SYMBOL_GPL vmlinux 0x538f67b4 regulator_set_pull_down_regmap EXPORT_SYMBOL_GPL vmlinux 0x539044f6 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x5396f452 devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x53a09038 dev_pm_domain_detach EXPORT_SYMBOL_GPL vmlinux 0x53a3b07c mtd_lock_user_prot_reg EXPORT_SYMBOL_GPL vmlinux 0x53add454 mtk_pinconf_adv_drive_set -EXPORT_SYMBOL_GPL vmlinux 0x53b13510 snd_soc_unregister_dai EXPORT_SYMBOL_GPL vmlinux 0x53b3c7c8 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x53c83364 ata_std_qc_defer EXPORT_SYMBOL_GPL vmlinux 0x53c9a57e edac_pci_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0x53e31f9c pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x540a0469 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x53f35a28 sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0x53f4eb50 snd_soc_dpcm_runtime_update EXPORT_SYMBOL_GPL vmlinux 0x54172702 cci_disable_port_by_cpu EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x542046cc devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0x5421259e register_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x54344eda virtqueue_disable_cb EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0x5440b8bf tty_mode_ioctl EXPORT_SYMBOL_GPL vmlinux 0x5441e664 imx_obtain_fixed_clk_hw +EXPORT_SYMBOL_GPL vmlinux 0x5446ed8e cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0x5455537c sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x54906692 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x5460f79f work_on_cpu_safe_key +EXPORT_SYMBOL_GPL vmlinux 0x548622b9 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x5489809c icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54971c82 trace_event_ignore_this_pid EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54a4384e fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x54a63545 dev_pm_opp_put_supported_hw EXPORT_SYMBOL_GPL vmlinux 0x54a9fc07 sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x54ad0498 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x54b1b12d snd_soc_dai_compr_shutdown EXPORT_SYMBOL_GPL vmlinux 0x54b7cbcc iommu_iova_to_phys EXPORT_SYMBOL_GPL vmlinux 0x54bb4754 efivar_entry_size EXPORT_SYMBOL_GPL vmlinux 0x54bc6c72 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x54c1a42d mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x54c8d7ee crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x54bd9268 snd_soc_dapm_kcontrol_dapm EXPORT_SYMBOL_GPL vmlinux 0x54e5f709 pci_reset_function EXPORT_SYMBOL_GPL vmlinux 0x54e98f82 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x54ed854c ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0x550a16ac dev_pm_opp_disable EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x552134bb devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x55140a14 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x55222ead security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x55249c57 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5524f60d platform_add_devices EXPORT_SYMBOL_GPL vmlinux 0x552f5d2b of_dma_is_coherent EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput EXPORT_SYMBOL_GPL vmlinux 0x553a83d2 handle_level_irq EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55418275 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x554edd34 evm_verifyxattr EXPORT_SYMBOL_GPL vmlinux 0x55521f6e cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x5556c7f4 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x555aff30 ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0x555e9116 pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0x556a3996 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x555eb40e icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x5568605f crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x556a0bdb fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x556fe3c9 sdhci_suspend_host EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x558e480a sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x5583f896 kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0x55a67a0d pinctrl_generic_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x55a89355 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x55aa4ffe snd_soc_jack_free_gpios EXPORT_SYMBOL_GPL vmlinux 0x55ba95c4 tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x55bd8d7c synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0x55be0d1c sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0x55c5d104 blk_trace_remove EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55d6dd89 ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0x55e2a9e6 fsnotify_put_mark EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f0a42a skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x55f090ee ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x55f1298a ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0x55f78062 driver_register EXPORT_SYMBOL_GPL vmlinux 0x55f84cd4 blkg_rwstat_recursive_sum EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab @@ -20908,285 +20885,275 @@ EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status EXPORT_SYMBOL_GPL vmlinux 0x563296b8 percpu_free_rwsem EXPORT_SYMBOL_GPL vmlinux 0x5632e63d nand_subop_get_num_addr_cyc EXPORT_SYMBOL_GPL vmlinux 0x5633ea12 serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0x563421e6 strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x5644cc89 usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0x564f1ba5 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x56515018 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x5647807e tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x564d80ea xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x564ed196 regulator_unregister EXPORT_SYMBOL_GPL vmlinux 0x5656bdda of_i2c_get_board_info EXPORT_SYMBOL_GPL vmlinux 0x56588557 dm_internal_resume_fast EXPORT_SYMBOL_GPL vmlinux 0x565e704c xhci_shutdown EXPORT_SYMBOL_GPL vmlinux 0x5662f226 __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x566d27c1 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x56726e18 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x568a0713 imx_pcm_dma_init EXPORT_SYMBOL_GPL vmlinux 0x56a6a76c net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x56a736c6 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x56ae2ef0 fwnode_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x56af5d34 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x56b43d6f regulator_set_current_limit EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56de212d sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56ee10dd rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x56f297ea ethnl_cable_test_amplitude -EXPORT_SYMBOL_GPL vmlinux 0x56f50638 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x56f28cb8 skcipher_walk_complete EXPORT_SYMBOL_GPL vmlinux 0x56f50da9 da903x_read EXPORT_SYMBOL_GPL vmlinux 0x56f9e62a irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x56fb37c4 scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x56fbc5d3 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x57039db7 crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x5708c329 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x57010254 ahci_host_activate EXPORT_SYMBOL_GPL vmlinux 0x571ac2a8 genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0x572a2123 __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x572b063d apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x57496616 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x575aaf0d platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x57482ce6 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x574b6c7c thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5750d7da fwnode_get_named_gpiod EXPORT_SYMBOL_GPL vmlinux 0x576f7ebe snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x57882e13 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x5788a535 sdio_retune_hold_now EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x57977be4 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x5797bb55 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x579828b4 stmpe_disable EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all EXPORT_SYMBOL_GPL vmlinux 0x57a231cc usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x57b7a8e5 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x57c2dc88 crypto_unregister_aeads EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index EXPORT_SYMBOL_GPL vmlinux 0x57ddb1a5 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x57e037c2 dev_fwnode EXPORT_SYMBOL_GPL vmlinux 0x57eaab93 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x57f07958 devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point EXPORT_SYMBOL_GPL vmlinux 0x57fa8fed of_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0x58030501 sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0x5803e3b8 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x580eef9a sdhci_set_power EXPORT_SYMBOL_GPL vmlinux 0x58109cd5 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x58148bc9 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5829b3f4 add_swap_extent EXPORT_SYMBOL_GPL vmlinux 0x582b2eae spi_controller_dma_map_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock EXPORT_SYMBOL_GPL vmlinux 0x5833a88d nanddev_ecc_engine_init EXPORT_SYMBOL_GPL vmlinux 0x583e5417 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x584945fb ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0x5861a688 dev_pm_opp_set_prop_name EXPORT_SYMBOL_GPL vmlinux 0x58631dab imx_audmux_v2_configure_port EXPORT_SYMBOL_GPL vmlinux 0x586c4917 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x587742ec devlink_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info EXPORT_SYMBOL_GPL vmlinux 0x587ac04d cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0x5889ccf1 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0x5890ccdb crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0x5892b127 fuse_get_unique EXPORT_SYMBOL_GPL vmlinux 0x58b01e30 ack_all_badblocks EXPORT_SYMBOL_GPL vmlinux 0x58cf62ce omap_iommu_restore_ctx EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e8b02a xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x58df4c16 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x58ec2150 snd_soc_card_get_kcontrol EXPORT_SYMBOL_GPL vmlinux 0x58f0308a clk_regmap_divider_ops EXPORT_SYMBOL_GPL vmlinux 0x58f43f93 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x590e2fa0 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x5903ca97 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x5904c3ab hwmon_device_register EXPORT_SYMBOL_GPL vmlinux 0x5910b10d usb_string +EXPORT_SYMBOL_GPL vmlinux 0x5924190b snd_soc_dpcm_can_be_free_stop EXPORT_SYMBOL_GPL vmlinux 0x594f725a devm_gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x59703bb0 fsl8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0x59741f8d mtd_ooblayout_get_databytes EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x5990ec5b tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0x599acb57 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x599b0529 fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x59a1fab8 ehci_cf_port_reset_rwsem EXPORT_SYMBOL_GPL vmlinux 0x59a3080c relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x59a5de37 fwnode_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x59b5def6 clk_regmap_gate_ops EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59d4588d snd_soc_resume -EXPORT_SYMBOL_GPL vmlinux 0x59d533a8 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x59e0356a thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x59d51835 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x59da65bc snd_soc_dai_active EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x59f6de6f of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x59f99486 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x59f7ca2f ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x59fc549d regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x59fe84f0 ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0x5a070e5e iommu_fwspec_free EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a1333f3 acomp_request_free EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a2110e6 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x5a22025b stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x5a3779ed nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x5a3b7b88 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x5a3c2a9d __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a4bbe4c fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x5a534adc ata_sff_dma_pause EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a742bce regulator_list_hardware_vsel EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify EXPORT_SYMBOL_GPL vmlinux 0x5a813326 kernfs_put EXPORT_SYMBOL_GPL vmlinux 0x5a8a3002 dev_pm_get_subsys_data EXPORT_SYMBOL_GPL vmlinux 0x5a917160 mtk_pinconf_bias_set_combo -EXPORT_SYMBOL_GPL vmlinux 0x5aa6e603 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x5a9a3d3f ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner EXPORT_SYMBOL_GPL vmlinux 0x5abb23fb regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x5ad0cafc __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x5af10e1f proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x5af684d7 regulator_put EXPORT_SYMBOL_GPL vmlinux 0x5af762f1 snd_fasync_free EXPORT_SYMBOL_GPL vmlinux 0x5b00aa6f usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x5b084c8d set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5b0959e3 crypto_register_akcipher EXPORT_SYMBOL_GPL vmlinux 0x5b1bbc85 devm_led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b227faf sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0x5b316080 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x5b3a70e1 set_primary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x5b3bdea8 alarm_restart EXPORT_SYMBOL_GPL vmlinux 0x5b53ef79 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x5b6a3cca snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0x5b751503 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x5b6d928a crypto_stats_get EXPORT_SYMBOL_GPL vmlinux 0x5b7e22ea driver_find +EXPORT_SYMBOL_GPL vmlinux 0x5b876c81 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0x5b8f3810 regmap_multi_reg_write_bypassed EXPORT_SYMBOL_GPL vmlinux 0x5b919e1b software_node_fwnode EXPORT_SYMBOL_GPL vmlinux 0x5b994e71 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x5b9bbfb5 ahci_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x5b9de23d irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0x5ba66d2d spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x5bb7eb9d sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x5bc5b8ee vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x5bb76aeb ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x5bb8633b sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0x5bc67b30 usb_mon_register EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd25302 clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x5bd61a80 i2c_of_match_device EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bdf616f pci_host_common_remove -EXPORT_SYMBOL_GPL vmlinux 0x5c04b111 device_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x5c0b6e6e tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x5c14c229 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x5c18682c dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x5c22a72b ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5c205232 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5c20bd1a gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0x5c2c36f0 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5c3041ea crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec EXPORT_SYMBOL_GPL vmlinux 0x5c352beb irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x5c37c471 regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event EXPORT_SYMBOL_GPL vmlinux 0x5c3c8567 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x5c4d243d fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0x5c4d55cb __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x5c573be7 rockchip_pcie_init_port EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x5c650aa0 rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0x5c6a28f8 genphy_c45_pma_setup_forced EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x5c75c05e phy_set_mode_ext EXPORT_SYMBOL_GPL vmlinux 0x5c75eeea of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x5c7a9232 device_remove_properties EXPORT_SYMBOL_GPL vmlinux 0x5c7e9cb5 devfreq_event_enable_edev EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x5c876dc1 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x5c8d34a2 __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x5c8f44c3 ata_port_abort EXPORT_SYMBOL_GPL vmlinux 0x5c98367b nanddev_mtd_erase -EXPORT_SYMBOL_GPL vmlinux 0x5ca1ec7f sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x5c9dd47d xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x5ca9bcbf __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cb627bc of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x5cc221b4 mtd_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x5cc2a511 hrtimer_forward EXPORT_SYMBOL_GPL vmlinux 0x5cd0cd5c sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x5cdfd956 alloc_page_buffers EXPORT_SYMBOL_GPL vmlinux 0x5ce8fcd0 usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0x5cec6a59 __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5d077343 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0x5d0810d2 regulator_list_hardware_vsel EXPORT_SYMBOL_GPL vmlinux 0x5d0a0eff __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5d0eb4f0 spi_sync EXPORT_SYMBOL_GPL vmlinux 0x5d1fa4b7 usb_gadget_vbus_connect EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm EXPORT_SYMBOL_GPL vmlinux 0x5d387d26 devres_add EXPORT_SYMBOL_GPL vmlinux 0x5d3d0550 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0x5d4fd606 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x5d61ccbe sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0x5d6ac75a inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x5d6c9541 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x5d42b36e devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5d4aa5c3 inet6_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x5d82a5b8 tracepoint_probe_register EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc EXPORT_SYMBOL_GPL vmlinux 0x5d8ac36f ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x5d907fe6 scsi_check_sense EXPORT_SYMBOL_GPL vmlinux 0x5d95a91d rockchip_clk_of_add_provider EXPORT_SYMBOL_GPL vmlinux 0x5d9da126 pinconf_generic_dt_subnode_to_map EXPORT_SYMBOL_GPL vmlinux 0x5da648da blkg_lookup_slowpath EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact EXPORT_SYMBOL_GPL vmlinux 0x5daa1ab4 nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x5dae9fbf rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x5db2c0e9 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x5dab4918 inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x5db2f678 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x5ddd39ed ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x5def49b4 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x5dedd90f sched_trace_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0x5df6bd58 snd_dmaengine_pcm_set_config_from_dai_data EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e021a1c regmap_attach_dev EXPORT_SYMBOL_GPL vmlinux 0x5e038da9 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x5e0a3eea tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x5e0fa4e9 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x5e160b6a get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5e176cb3 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0x5e1fcdb6 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x5e241a4d vring_del_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x5e2575cd ata_bmdma_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x5e3c6002 gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0x5e504919 __tracepoint_block_split EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e57777c gpiod_direction_input EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5e6a151a crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume EXPORT_SYMBOL_GPL vmlinux 0x5e8e8190 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x5e964757 snd_soc_unregister_component EXPORT_SYMBOL_GPL vmlinux 0x5ea09659 rio_route_add_entry EXPORT_SYMBOL_GPL vmlinux 0x5ea0a3be devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0x5ea0cd2d crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x5ea7b779 gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x5eaafd65 bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x5eacf0bf ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x5eab2541 do_splice_from EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared EXPORT_SYMBOL_GPL vmlinux 0x5eb1e5c0 led_trigger_remove EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x5eb90b62 snd_soc_info_volsw_sx EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x5ec4f2ed rq_flush_dcache_pages EXPORT_SYMBOL_GPL vmlinux 0x5ec6c99e irq_domain_translate_onecell EXPORT_SYMBOL_GPL vmlinux 0x5ed59658 vp_modern_set_features EXPORT_SYMBOL_GPL vmlinux 0x5ee9492a __register_mtd_parser EXPORT_SYMBOL_GPL vmlinux 0x5eeb1537 phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0x5efcb3a2 mnt_want_write_file EXPORT_SYMBOL_GPL vmlinux 0x5efe5fdb usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x5f0afcbd snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL vmlinux 0x5f4c2387 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x5f314cb2 devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x5f4e1c14 tty_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x5f52c18b nand_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x5f5326f0 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5f63e489 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x5f6a5fa3 crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f714fc2 spi_setup EXPORT_SYMBOL_GPL vmlinux 0x5f7d3837 __devm_rtc_register_device EXPORT_SYMBOL_GPL vmlinux 0x5f7ee8db dev_pm_opp_of_register_em -EXPORT_SYMBOL_GPL vmlinux 0x5fa263c9 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5f835d17 rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5faa13d3 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x5fb4a576 phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0x5fb8d8bc serial8250_tx_chars EXPORT_SYMBOL_GPL vmlinux 0x5fbf0fa3 anon_inode_getfd EXPORT_SYMBOL_GPL vmlinux 0x5fc71117 pm_clk_resume EXPORT_SYMBOL_GPL vmlinux 0x5fccf4df blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x5fdea080 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5fcf533c device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x5fd75c7d kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x5fddbf26 phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0x5fe12e23 key_type_trusted EXPORT_SYMBOL_GPL vmlinux 0x5ff5a17f of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x5ff8e5df mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x5ff8f29f __cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x5ffe9aa7 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x60084632 sdhci_request EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x6010f017 nand_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6014967c ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0x601653ac icc_put EXPORT_SYMBOL_GPL vmlinux 0x601f02f6 dev_pm_opp_find_level_ceil EXPORT_SYMBOL_GPL vmlinux 0x60294d8d sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x60301d1c pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x60384fb0 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6040bca3 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x60595e5a raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0x60606431 kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0x60663bca snd_soc_of_get_slot_mask EXPORT_SYMBOL_GPL vmlinux 0x60671345 software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0x606f646f ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x606b363e lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0x60742745 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x607466fd sdhci_pltfm_register EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init +EXPORT_SYMBOL_GPL vmlinux 0x60788497 __get_task_comm EXPORT_SYMBOL_GPL vmlinux 0x60789dac pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x6078e44a ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x607b8f78 of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x6080b615 regulator_set_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x60847f35 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x608ba396 get_pid_task EXPORT_SYMBOL_GPL vmlinux 0x608fe23d dm_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6093460d crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x60939129 sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60a331b9 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x60bf4a17 crypto_req_done EXPORT_SYMBOL_GPL vmlinux 0x60c0a673 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x60ce2328 ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0x60d01740 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x60d1df1e device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x60dbc852 crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0x60e03a88 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x60e6eb18 __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x60e7f3ad gpiod_set_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f369a0 bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0x611edfdf ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x6121d671 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x61159499 ping_hash EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status EXPORT_SYMBOL_GPL vmlinux 0x61380588 regulator_set_ramp_delay_regmap @@ -21194,253 +21161,253 @@ EXPORT_SYMBOL_GPL vmlinux 0x61466977 __bio_crypt_clone EXPORT_SYMBOL_GPL vmlinux 0x614782f1 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0x61493edd devm_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x6154fb8c __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x6156ae14 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x6164255a blockdev_superblock EXPORT_SYMBOL_GPL vmlinux 0x61659690 adp5520_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x61706525 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0x6176c5f7 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x61719d65 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x61764357 regmap_fields_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add EXPORT_SYMBOL_GPL vmlinux 0x6191dadb regcache_drop_region EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x619e15ab iptunnel_metadata_reply EXPORT_SYMBOL_GPL vmlinux 0x61a87016 of_mm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0x61ab88d6 gpiod_get_array_value EXPORT_SYMBOL_GPL vmlinux 0x61aea924 serdev_device_get_tiocm EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x61c3bf79 mtk_pinconf_drive_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0x61c9298e usb_find_interface EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x620e4750 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x6201ad1d gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x62043493 nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x6211e0bb __kthread_should_park EXPORT_SYMBOL_GPL vmlinux 0x621ab66d phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x621cf3a2 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x6229f9b5 device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x622f0dc9 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x622cdee3 icc_node_add EXPORT_SYMBOL_GPL vmlinux 0x6234d798 ata_sff_port_intr EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x623aae23 device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0x62402b0e led_set_brightness_nosleep EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x6246a9c5 regulator_register EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context EXPORT_SYMBOL_GPL vmlinux 0x6260c701 debugfs_attr_read EXPORT_SYMBOL_GPL vmlinux 0x626de581 __mtd_next_device -EXPORT_SYMBOL_GPL vmlinux 0x62733d78 platform_get_resource EXPORT_SYMBOL_GPL vmlinux 0x6276c0ca tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x62787e86 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x6279e840 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL vmlinux 0x628964b8 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x629b99c9 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x62a12b8e udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0x62b43a62 arm_iommu_release_mapping EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift EXPORT_SYMBOL_GPL vmlinux 0x62bd1ff6 regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0x62bf4b6f rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0x62c80fd5 __devm_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x62c99a71 dev_pm_opp_put EXPORT_SYMBOL_GPL vmlinux 0x62d0e2a6 __wake_up_locked EXPORT_SYMBOL_GPL vmlinux 0x63090722 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x6310de1d gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x630d6cb4 snd_soc_of_parse_node_prefix EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent EXPORT_SYMBOL_GPL vmlinux 0x6318d624 debugfs_create_x8 EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x6325beb0 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x6333cde0 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x6338eb87 fixed_phy_change_carrier EXPORT_SYMBOL_GPL vmlinux 0x633cb2c6 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x633ce6b8 __mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x635fd2af ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x6363d46f bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x636500f0 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x63737153 __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x637b03ab devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x635f67fd ahci_do_hardreset EXPORT_SYMBOL_GPL vmlinux 0x638a85b3 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x639326a8 ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0x6396acdc snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL vmlinux 0x63a0ec55 tcp_twsk_unique EXPORT_SYMBOL_GPL vmlinux 0x63a93b28 device_add_software_node EXPORT_SYMBOL_GPL vmlinux 0x63adbf92 encode_rs8 EXPORT_SYMBOL_GPL vmlinux 0x63b2e52c scsi_target_block EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare EXPORT_SYMBOL_GPL vmlinux 0x63c794cf snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL vmlinux 0x63c9e0cb ahci_check_ready EXPORT_SYMBOL_GPL vmlinux 0x63cdd798 blk_crypto_evict_key EXPORT_SYMBOL_GPL vmlinux 0x63cf51bd usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x63d00979 peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0x63d89598 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x63e16b2d skb_segment EXPORT_SYMBOL_GPL vmlinux 0x63e3f9e2 dev_pm_opp_put_regulators EXPORT_SYMBOL_GPL vmlinux 0x63fc85ca devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x6406b9e0 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x6407cf4a bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x63ffae0c fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x64279bed gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0x64334fff kernel_read_file_from_fd EXPORT_SYMBOL_GPL vmlinux 0x6433bc38 ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0x64375063 of_css -EXPORT_SYMBOL_GPL vmlinux 0x6447ccee gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x644bfdcf trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x644e295c sdhci_set_power -EXPORT_SYMBOL_GPL vmlinux 0x64582a62 tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x644dc8ce devlink_param_publish EXPORT_SYMBOL_GPL vmlinux 0x64625a9d mtd_write_oob -EXPORT_SYMBOL_GPL vmlinux 0x647424af snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL vmlinux 0x64746e2d ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x6474b222 stmpe_block_read EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x64766fd9 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x64903b9c skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0x6499ca92 copy_from_user_nofault EXPORT_SYMBOL_GPL vmlinux 0x64a2c7e7 meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x64a72bbd snd_soc_close_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x64a9e1b6 evict_inodes EXPORT_SYMBOL_GPL vmlinux 0x64ae32c6 nand_read_page_op EXPORT_SYMBOL_GPL vmlinux 0x64c07d32 btree_remove EXPORT_SYMBOL_GPL vmlinux 0x64cdf082 xas_load EXPORT_SYMBOL_GPL vmlinux 0x64d72d2c tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0x64de9e29 snd_soc_dai_active +EXPORT_SYMBOL_GPL vmlinux 0x64d7bc6c wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x64dc8ec3 synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0x64e0b3c5 of_reserved_mem_device_release EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete EXPORT_SYMBOL_GPL vmlinux 0x64f0bd55 pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0x64fe8187 of_clk_get_parent_name EXPORT_SYMBOL_GPL vmlinux 0x650399ca usb_del_gadget EXPORT_SYMBOL_GPL vmlinux 0x65040422 da903x_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x65053162 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x650f80ce of_clk_parent_fill EXPORT_SYMBOL_GPL vmlinux 0x651817b7 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x651e95f1 sata_scr_write_flush EXPORT_SYMBOL_GPL vmlinux 0x651ee67b srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x6522a576 crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0x65284995 efi_capsule_update EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add EXPORT_SYMBOL_GPL vmlinux 0x6532b638 usb_phy_set_charger_current EXPORT_SYMBOL_GPL vmlinux 0x653e67f1 wm831x_auxadc_read EXPORT_SYMBOL_GPL vmlinux 0x65412bf3 usb_gadget_set_selfpowered EXPORT_SYMBOL_GPL vmlinux 0x65432d28 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x65474251 dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0x655143f7 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x6545bd43 event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x6556ded2 __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0x656240e9 user_read EXPORT_SYMBOL_GPL vmlinux 0x65721b1b rockchip_pcie_deinit_phys EXPORT_SYMBOL_GPL vmlinux 0x65747d33 free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x6588a065 __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0x659dc15d tps65217_reg_write EXPORT_SYMBOL_GPL vmlinux 0x65a236ee pci_generic_ecam_ops EXPORT_SYMBOL_GPL vmlinux 0x65b97817 pci_d3cold_disable EXPORT_SYMBOL_GPL vmlinux 0x65bc8c1b gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x65be240d apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x65bf9f2e snd_soc_lookup_component_nolocked EXPORT_SYMBOL_GPL vmlinux 0x65cb8247 debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0x65cbd0a1 pinctrl_count_index_with_args EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65ccf918 phy_package_join EXPORT_SYMBOL_GPL vmlinux 0x65def01d mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x65e7450c skcipher_walk_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x65f1011a musb_queue_resume_work -EXPORT_SYMBOL_GPL vmlinux 0x65f8cd4d icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0x6604038f device_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6636151b security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x6632fa85 __spi_register_driver EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x663ba6ad devm_regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end EXPORT_SYMBOL_GPL vmlinux 0x6651581f blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x66704ec7 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x6662964d snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x6679d3ed gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0x667a6bb2 ata_sff_tf_read EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x66913a35 get_kernel_pages EXPORT_SYMBOL_GPL vmlinux 0x66925bf6 snd_card_free_on_error EXPORT_SYMBOL_GPL vmlinux 0x669594ad musb_clearw -EXPORT_SYMBOL_GPL vmlinux 0x6695f20c fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x66b94912 blk_update_request EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up EXPORT_SYMBOL_GPL vmlinux 0x66c1324b mtd_write +EXPORT_SYMBOL_GPL vmlinux 0x66c1b500 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x66c5e63c of_clk_parent_fill EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e054eb devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0x66feaf8a pinctrl_generic_get_group_count EXPORT_SYMBOL_GPL vmlinux 0x6703903b register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x67066664 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x670a334a metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0x670a5781 dma_mmap_pages EXPORT_SYMBOL_GPL vmlinux 0x670b05d9 blk_ksm_is_superset -EXPORT_SYMBOL_GPL vmlinux 0x671c3e6a inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x671b1755 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6721b142 thermal_zone_bind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x67246195 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x6724cd39 perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0x6725afe5 pci_probe_reset_bus EXPORT_SYMBOL_GPL vmlinux 0x67299c24 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x672b3409 ata_host_start EXPORT_SYMBOL_GPL vmlinux 0x672d3681 firmware_request_cache EXPORT_SYMBOL_GPL vmlinux 0x6730dce7 rio_unmap_inb_region EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x673c7f3a snd_soc_dapm_weak_routes EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x6755a116 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x6780a5ca snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL vmlinux 0x67712ded gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0x6781513c __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x679041bf bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0x67924aa7 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x67816950 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x67834264 snd_soc_dai_get_channel_map EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits EXPORT_SYMBOL_GPL vmlinux 0x67a3d296 posix_acl_access_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0x67bd2638 devres_get EXPORT_SYMBOL_GPL vmlinux 0x67c4d4c6 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x67c91d4c dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x67d1600a cpufreq_driver_resolve_freq EXPORT_SYMBOL_GPL vmlinux 0x67d5d10b iommu_map_sg EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x67e338c1 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x6800051d skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0x68061751 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x67e4f7d5 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x67fd6f67 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x681d44b5 regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x681df2d5 clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0x6820c4dd vfs_submount EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu EXPORT_SYMBOL_GPL vmlinux 0x68362617 devm_tegra_core_dev_init_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x683e8f58 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x684ac9a1 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x685a0d6a __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x683a9026 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x68447bda crypto_shash_finup EXPORT_SYMBOL_GPL vmlinux 0x68647583 virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x6878d214 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x687fb77d __traceiter_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x687fca31 imx6q_cpuidle_fec_irqs_used EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68a755d0 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x68a7cfe1 perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0x68b69170 dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x68bc6d55 thermal_zone_unbind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x68c15e42 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x68d3c9c2 devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x68daa158 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x68c333f0 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x68c55cf0 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0x68dc038e devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6913f0fe sdhci_pltfm_unregister EXPORT_SYMBOL_GPL vmlinux 0x69187544 devfreq_event_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x692098e2 list_lru_del EXPORT_SYMBOL_GPL vmlinux 0x692a4f08 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6931592a tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0x693c185c debugfs_create_x16 EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x69488a1b __ndisc_fill_addr_option EXPORT_SYMBOL_GPL vmlinux 0x695bf5e9 hrtimer_cancel EXPORT_SYMBOL_GPL vmlinux 0x695dc00a iommu_aux_detach_device EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x696adc36 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x696e6168 regulator_get_hardware_vsel_register EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc EXPORT_SYMBOL_GPL vmlinux 0x6989f472 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x6994effe cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6994853b trace_array_put EXPORT_SYMBOL_GPL vmlinux 0x69a8c042 arm_iommu_detach_device EXPORT_SYMBOL_GPL vmlinux 0x69c8a301 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x69c973aa devfreq_get_devfreq_by_node EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d47a1b gpiochip_remove_pin_ranges EXPORT_SYMBOL_GPL vmlinux 0x69d53435 blkcg_deactivate_policy EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x69e6ba4f gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x69e83605 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x69edc216 crypto_alloc_acomp EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high EXPORT_SYMBOL_GPL vmlinux 0x69f75c83 devm_extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a08b668 sdhci_set_ios EXPORT_SYMBOL_GPL vmlinux 0x6a099bbb blk_ksm_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6a0ce13f devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x6a13bd94 ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a201f31 tcp_twsk_unique EXPORT_SYMBOL_GPL vmlinux 0x6a29e5d2 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0x6a43fc5a blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x6a2adab3 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x6a2d031a devlink_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a4a0df8 crypto_unregister_scomp EXPORT_SYMBOL_GPL vmlinux 0x6a4e86d3 usb_hcd_check_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize EXPORT_SYMBOL_GPL vmlinux 0x6a5968e0 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL vmlinux 0x6a60ccba xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x6a61a366 rdev_get_name EXPORT_SYMBOL_GPL vmlinux 0x6a6b7229 snd_ctl_disconnect_layer EXPORT_SYMBOL_GPL vmlinux 0x6a78a3e6 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x6a7eeeb3 ahci_print_info EXPORT_SYMBOL_GPL vmlinux 0x6a8aba1a ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x6a8fb4b0 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x6a957147 br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0x6aa5e412 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x6aa6ff7b css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0x6ab11973 pm_generic_thaw_early EXPORT_SYMBOL_GPL vmlinux 0x6ab1c8bb xas_store +EXPORT_SYMBOL_GPL vmlinux 0x6ab915cb __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x6ac11398 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x6ac2af8c devm_snd_dmaengine_pcm_register EXPORT_SYMBOL_GPL vmlinux 0x6ac7a3fc bio_iov_iter_get_pages EXPORT_SYMBOL_GPL vmlinux 0x6ac9d04a screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x6ad24fb8 devm_thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x6ad61214 mctrl_gpio_init_noauto EXPORT_SYMBOL_GPL vmlinux 0x6ae84527 pci_assign_unassigned_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x6af8743f dev_pm_set_wake_irq @@ -21449,175 +21416,183 @@ EXPORT_SYMBOL_GPL vmlinux 0x6b12627f pinctrl_utils_free_map EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors EXPORT_SYMBOL_GPL vmlinux 0x6b1bb25d vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0x6b1d4708 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x6b22263a dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x6b261c87 mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x6b282cf4 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x6b2cf304 snd_soc_new_compress +EXPORT_SYMBOL_GPL vmlinux 0x6b2e5845 ata_link_next EXPORT_SYMBOL_GPL vmlinux 0x6b334acc trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x6b3b0b36 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x6b3531e9 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x6b35669d sched_set_normal EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux EXPORT_SYMBOL_GPL vmlinux 0x6b55c5fa uart_xchar_out EXPORT_SYMBOL_GPL vmlinux 0x6b56ee77 regmap_mmio_detach_clk EXPORT_SYMBOL_GPL vmlinux 0x6b596494 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x6b6ddb92 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x6b71ffb5 inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier EXPORT_SYMBOL_GPL vmlinux 0x6b8be690 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x6baaba6a i2c_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x6bb69863 pstore_unregister 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 0x6bdd680c snd_pcm_fill_iec958_consumer_hw_params -EXPORT_SYMBOL_GPL vmlinux 0x6bf7ea06 mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x6bfced67 tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x6bfe55fa mmc_crypto_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x6c03d724 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x6c1cfcab crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6c1f7433 regulator_get_current_limit EXPORT_SYMBOL_GPL vmlinux 0x6c206a79 rio_request_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0x6c257c23 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x6c2bd5f5 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x6c33a44e dev_pm_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen EXPORT_SYMBOL_GPL vmlinux 0x6c3f9407 __percpu_down_read EXPORT_SYMBOL_GPL vmlinux 0x6c43b737 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x6c47abc7 ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c53fcc3 hisi_clk_alloc EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c675c1b rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0x6c7320ab screen_glyph_unicode EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work +EXPORT_SYMBOL_GPL vmlinux 0x6c7ddb2f icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x6c814830 crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x6c8a6e82 nanddev_bbt_set_block_status EXPORT_SYMBOL_GPL vmlinux 0x6c8be111 fscrypt_set_bio_crypt_ctx EXPORT_SYMBOL_GPL vmlinux 0x6c8c1d5e sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x6c900893 sdio_f0_readb EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x6c9618aa devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x6c9b7934 __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0x6c9c85df ahci_platform_disable_phys EXPORT_SYMBOL_GPL vmlinux 0x6ca0cc25 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x6ca42481 snd_soc_set_dmi_name EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain EXPORT_SYMBOL_GPL vmlinux 0x6cc21956 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x6ccb8520 __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x6cd17e49 zs_pool_stats EXPORT_SYMBOL_GPL vmlinux 0x6cd96910 __kmap_local_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x6cdb8c45 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6ce3560c tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0x6ce3b86b usb_get_role_switch_default_mode EXPORT_SYMBOL_GPL vmlinux 0x6cea16ab dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x6cec186b nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x6cf71685 xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x6cf96d5f percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x6cfd22a8 trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0x6d00916b __class_create EXPORT_SYMBOL_GPL vmlinux 0x6d06a802 devm_regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d0ce680 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x6d183964 fwnode_device_is_available EXPORT_SYMBOL_GPL vmlinux 0x6d1f7444 of_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x6d28ff4e snd_devm_card_new EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d3a9e4d crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit +EXPORT_SYMBOL_GPL vmlinux 0x6d478884 snd_soc_dapm_kcontrol_widget EXPORT_SYMBOL_GPL vmlinux 0x6d4d48a6 amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6d4f5466 device_match_of_node EXPORT_SYMBOL_GPL vmlinux 0x6d5bdefa proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x6d6a9b6d sdhci_calc_clk EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d769bdc ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x6d7a43bf of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x6d7c540b access_process_vm EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed EXPORT_SYMBOL_GPL vmlinux 0x6d8747a0 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x6d8ff7b6 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x6d90cbb8 cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0x6d9d486f tpm2_probe EXPORT_SYMBOL_GPL vmlinux 0x6da1321d irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x6da54346 wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0x6db9a96c serdev_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 EXPORT_SYMBOL_GPL vmlinux 0x6dc43f43 imx6q_cpuidle_fec_irqs_unused EXPORT_SYMBOL_GPL vmlinux 0x6dc95fbf extcon_set_property_capability EXPORT_SYMBOL_GPL vmlinux 0x6dd1b8a7 parse_OID EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6de766c5 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x6df0f0af netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x6df96d9f nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e0aeee3 snd_soc_dai_is_dummy +EXPORT_SYMBOL_GPL vmlinux 0x6e186fca perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e370bfa __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x6e3e811c snd_soc_component_read EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e403a21 lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0x6e4a9f50 spi_controller_resume EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free EXPORT_SYMBOL_GPL vmlinux 0x6e50670a iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x6e51194f snd_soc_poweroff EXPORT_SYMBOL_GPL vmlinux 0x6e57595d scsi_dh_attach EXPORT_SYMBOL_GPL vmlinux 0x6e60e6a6 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x6e623748 crypto_shash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x6e635087 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x6e6604a3 mmc_regulator_get_supply EXPORT_SYMBOL_GPL vmlinux 0x6e6e1d6f thermal_zone_of_get_sensor_id -EXPORT_SYMBOL_GPL vmlinux 0x6e720763 regmap_field_read EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8bfa85 snd_soc_dapm_new_widgets EXPORT_SYMBOL_GPL vmlinux 0x6e8c9036 mtd_pairing_groups EXPORT_SYMBOL_GPL vmlinux 0x6e9d3561 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x6eaed8ad scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6ebf347b nvmem_cell_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x6ed393dd ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x6ede0817 int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0x6ededc59 mtd_read EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ef86bb7 wbt_enable_default EXPORT_SYMBOL_GPL vmlinux 0x6f0b74bc phy_create EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f153922 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x6f1a7cd5 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x6f1da5a5 wm8350_clear_bits EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f3750c5 security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0x6f493b14 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x6f2079ac snd_soc_limit_volume EXPORT_SYMBOL_GPL vmlinux 0x6f4e2567 snd_soc_get_xr_sx EXPORT_SYMBOL_GPL vmlinux 0x6f4f4512 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x6f5d2f62 spi_controller_resume EXPORT_SYMBOL_GPL vmlinux 0x6f63f016 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x6f719ab1 tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f97322a clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x6f98deac noop_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x6f9c91d7 cpufreq_cpu_get_raw EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fa61984 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x6fa1a116 snd_soc_jack_add_zones EXPORT_SYMBOL_GPL vmlinux 0x6fa750d3 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x6fa9cdff crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0x6faaa48b devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x6face742 cpufreq_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x6fae288b of_phy_put EXPORT_SYMBOL_GPL vmlinux 0x6fb7e313 asic3_write_register EXPORT_SYMBOL_GPL vmlinux 0x6fb943ad mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x6fcaf7da devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fef638e perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng EXPORT_SYMBOL_GPL vmlinux 0x6ff92116 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x6ffe57ed snd_soc_component_set_jack EXPORT_SYMBOL_GPL vmlinux 0x6ffe59d9 usb_ep0_reinit EXPORT_SYMBOL_GPL vmlinux 0x6fff4c0b sata_pmp_qc_defer_cmd_switch EXPORT_SYMBOL_GPL vmlinux 0x70016988 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x70044409 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x70081464 icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0x701825ea wm8350_reg_write EXPORT_SYMBOL_GPL vmlinux 0x70240944 clk_hw_register_gate2 -EXPORT_SYMBOL_GPL vmlinux 0x702becff ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x703a42ff blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x705045cd regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x70567c9c crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x70581093 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x70617787 mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0x70641f6e fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x706cbb96 devlink_region_create EXPORT_SYMBOL_GPL vmlinux 0x707259ae amba_bustype EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7082c8c9 sata_link_hardreset EXPORT_SYMBOL_GPL vmlinux 0x7091e5aa pci_bus_max_busnr EXPORT_SYMBOL_GPL vmlinux 0x709503bb __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0x70b4e6db regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x70c1bf86 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x70b4f1dc sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x70c05c02 of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70ca6ad1 gpio_to_desc EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq EXPORT_SYMBOL_GPL vmlinux 0x70d692e4 rockchip_pcie_get_phys EXPORT_SYMBOL_GPL vmlinux 0x70df6cc5 snd_soc_component_compr_get_metadata EXPORT_SYMBOL_GPL vmlinux 0x70e1424f pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0x70e24953 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x70eb800b shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x70ffe263 ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0x71034283 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x710715e7 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x71065378 cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x710c9c59 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x711201ab sdhci_runtime_resume_host EXPORT_SYMBOL_GPL vmlinux 0x7121a9cb ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x71255d4b devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x7137ece5 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x713b2b85 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x714f1554 ata_dev_pair EXPORT_SYMBOL_GPL vmlinux 0x715a4f37 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x715d73c4 __traceiter_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71697a8b skb_zerocopy_iter_dgram EXPORT_SYMBOL_GPL vmlinux 0x716cffb5 pkcs7_parse_message EXPORT_SYMBOL_GPL vmlinux 0x71774810 of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0x717e4ebd pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0x7186fa7c tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0x71877738 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x718bf18d snd_soc_dai_compr_set_metadata EXPORT_SYMBOL_GPL vmlinux 0x71990a96 tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0x719a5e41 musb_readw EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister @@ -21630,384 +21605,349 @@ EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now EXPORT_SYMBOL_GPL vmlinux 0x71c0c4a7 ftrace_set_filter EXPORT_SYMBOL_GPL vmlinux 0x71c1d9eb of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x71deddfe sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x71e668fe regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x71e74c81 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x71d42a28 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x71d84af5 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x720889d0 dev_pm_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x720efd07 md_submit_discard_bio EXPORT_SYMBOL_GPL vmlinux 0x721a6312 irq_chip_enable_parent EXPORT_SYMBOL_GPL vmlinux 0x721d408e snd_soc_component_compr_open EXPORT_SYMBOL_GPL vmlinux 0x7236bdf8 ftrace_set_filter_ip EXPORT_SYMBOL_GPL vmlinux 0x723a8baa driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x723e8a49 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x724211d2 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x7242e1e0 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x724aa752 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x725be7f0 fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum EXPORT_SYMBOL_GPL vmlinux 0x726b59d6 dw_pcie_read_dbi EXPORT_SYMBOL_GPL vmlinux 0x726e752e wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x72729a82 ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x7274b967 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x72747f24 snd_soc_dai_set_channel_map EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events EXPORT_SYMBOL_GPL vmlinux 0x72807386 mtk_pinconf_bias_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0x72866bad devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x72a88f5b crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x72912cf8 __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x72ae16f5 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x72ae8b8f set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x72b0898a ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0x72b299e1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0x72be920d sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x72b400c0 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x72c14e39 devlink_rate_nodes_destroy EXPORT_SYMBOL_GPL vmlinux 0x72ca4b86 ahci_platform_resume_host EXPORT_SYMBOL_GPL vmlinux 0x72cecdbc tty_standard_install EXPORT_SYMBOL_GPL vmlinux 0x72dba8de param_set_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x72e28341 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72e35714 crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0x7300d34d auxiliary_device_init EXPORT_SYMBOL_GPL vmlinux 0x7306be3c led_classdev_resume EXPORT_SYMBOL_GPL vmlinux 0x730bf1f0 mtk_hw_get_value -EXPORT_SYMBOL_GPL vmlinux 0x7322caa1 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x731d3f64 sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0x7326745e blkg_conf_finish EXPORT_SYMBOL_GPL vmlinux 0x732e5003 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x7331c77c tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x73354b66 sysfs_create_groups EXPORT_SYMBOL_GPL vmlinux 0x733bcd59 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x733c64fc crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x734bf89e mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x734c8935 pci_bridge_secondary_bus_reset EXPORT_SYMBOL_GPL vmlinux 0x734ec468 sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0x7360b480 musb_set_host EXPORT_SYMBOL_GPL vmlinux 0x7364f102 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x736a2b3a ahci_save_initial_config EXPORT_SYMBOL_GPL vmlinux 0x7370c113 irq_create_mapping_affinity EXPORT_SYMBOL_GPL vmlinux 0x737473fe devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x7376c9c4 snd_soc_dai_link_set_capabilities EXPORT_SYMBOL_GPL vmlinux 0x73845844 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0x738a8424 cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0x739ab7a3 switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x73a159da trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73abbf7b ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0x73bdf4ae iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0x73c59e19 ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d60ffd device_for_each_child EXPORT_SYMBOL_GPL vmlinux 0x73d77cb3 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x73dacb16 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x73df1d05 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x73e375f9 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x73e4c360 fwnode_property_get_reference_args EXPORT_SYMBOL_GPL vmlinux 0x73e6214b mtk_pinconf_bias_disable_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x73fa6bd8 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x740c4aab shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x742276e4 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x73fefe10 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x74088bb3 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x74158391 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x7427bf3b switchdev_handle_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x74416917 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x74448c00 regulator_set_voltage_time EXPORT_SYMBOL_GPL vmlinux 0x744bf695 nand_decode_ext_id -EXPORT_SYMBOL_GPL vmlinux 0x744f1ad7 __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0x74674e95 snd_soc_dapm_sync EXPORT_SYMBOL_GPL vmlinux 0x74694196 nanddev_bbt_get_block_status EXPORT_SYMBOL_GPL vmlinux 0x7472bdd1 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x7476aeaf sdio_release_host EXPORT_SYMBOL_GPL vmlinux 0x74773ac3 fuse_file_poll EXPORT_SYMBOL_GPL vmlinux 0x747c867d pci_disable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x7499b231 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x749f615b rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74a32678 add_page_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero EXPORT_SYMBOL_GPL vmlinux 0x74b7767f of_cpufreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x74b85572 regmap_irq_get_domain EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c419b0 ata_cable_sata EXPORT_SYMBOL_GPL vmlinux 0x74c4f096 irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x74c65d0c __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x74e6310b snd_soc_dapm_stream_stop EXPORT_SYMBOL_GPL vmlinux 0x75053bbb unregister_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x7512df95 devm_pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0x7513b5ec __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x75185ada tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x7519d6c4 devlink_params_register EXPORT_SYMBOL_GPL vmlinux 0x751baa39 dev_pm_opp_find_freq_ceil_by_volt -EXPORT_SYMBOL_GPL vmlinux 0x751c60c6 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x7521536a mmput EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x752b5d5d snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0x75259efe crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x75303372 nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x7535a6a9 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x75374fc3 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x75406f4d skb_complete_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x75481696 pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x754e1385 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x754f6dd7 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x754eae2c phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0x755ae3c8 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x75722063 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7576eeb0 msg_zerocopy_alloc EXPORT_SYMBOL_GPL vmlinux 0x7577f9fd rio_release_dma EXPORT_SYMBOL_GPL vmlinux 0x7581e60a fork_usermode_driver EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x7591bcc3 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x75a3871e fwnode_get_next_parent EXPORT_SYMBOL_GPL vmlinux 0x75bf6cc0 is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0x75d8ffae console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x75dabce6 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x75cbb2b1 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL vmlinux 0x75d2b886 wm8350_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x75dbd271 ata_ncq_sdev_attrs 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 0x75f6b663 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x75f6d43a metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x75fb7321 ahci_error_handler EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter EXPORT_SYMBOL_GPL vmlinux 0x762d1d92 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x762db914 dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0x762eb208 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x7635134b trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x762ec444 regmap_read EXPORT_SYMBOL_GPL vmlinux 0x763a1c58 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7645bce1 sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0x7645e7f1 iommu_unmap_fast EXPORT_SYMBOL_GPL vmlinux 0x765a6576 usb_remove_hcd EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x766e57b0 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0x7673b5dd regmap_write_async EXPORT_SYMBOL_GPL vmlinux 0x767e49c1 phy_pm_runtime_get EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier EXPORT_SYMBOL_GPL vmlinux 0x76a3a8d7 driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x76a5dc70 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x76c178b6 sdhci_cqe_irq +EXPORT_SYMBOL_GPL vmlinux 0x76ce6af9 crypto_alloc_acomp_node EXPORT_SYMBOL_GPL vmlinux 0x76ce7cfb devm_devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate EXPORT_SYMBOL_GPL vmlinux 0x76da772b efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x76e02203 gpiod_toggle_active_low EXPORT_SYMBOL_GPL vmlinux 0x76e10a88 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x76ed8ee8 device_init_wakeup EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f746ad receive_fd EXPORT_SYMBOL_GPL vmlinux 0x77094e82 bsg_remove_queue EXPORT_SYMBOL_GPL vmlinux 0x770a1be3 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0x771a88ff sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7729907d ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x77299c65 cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register EXPORT_SYMBOL_GPL vmlinux 0x772e2c26 xas_set_mark EXPORT_SYMBOL_GPL vmlinux 0x77310ad2 ata_sff_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux EXPORT_SYMBOL_GPL vmlinux 0x77434556 pci_assign_unassigned_bridge_resources EXPORT_SYMBOL_GPL vmlinux 0x774377cf mtk_pinconf_adv_pull_get -EXPORT_SYMBOL_GPL vmlinux 0x77540257 crypto_unregister_shashes EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister EXPORT_SYMBOL_GPL vmlinux 0x775860de pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x775fb9e2 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0x776741c2 trace_output_call EXPORT_SYMBOL_GPL vmlinux 0x777ddb76 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x777f435f crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0x77873957 dev_pm_domain_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read EXPORT_SYMBOL_GPL vmlinux 0x779206ea hisi_clk_init EXPORT_SYMBOL_GPL vmlinux 0x7797d873 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x779812b3 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x77996f3c devlink_unregister EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b1d5a9 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x77b3d492 xfrm_audit_state_replay EXPORT_SYMBOL_GPL vmlinux 0x77b46ffb usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL vmlinux 0x77b973fd wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x77db8c1e __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x77d4645a nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put -EXPORT_SYMBOL_GPL vmlinux 0x77e8c8f2 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x77f4f6ff snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x77fc5ec6 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x78125db6 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x78122c86 sdhci_execute_tuning EXPORT_SYMBOL_GPL vmlinux 0x78128b6f of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x784737b2 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0x78586c41 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x7820e80a snd_soc_runtime_action +EXPORT_SYMBOL_GPL vmlinux 0x78222f7d gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x7828956c free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x783080c1 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x78355535 __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785b807e regulator_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x785c4575 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x786cc698 fl6_update_dst EXPORT_SYMBOL_GPL vmlinux 0x786f9b7f phy_save_page EXPORT_SYMBOL_GPL vmlinux 0x7877363d rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x7883841f snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL vmlinux 0x787ad455 wakeup_sources_walk_next EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x788c423b ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78aba376 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x78b5331a housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x78d3ddfb snd_soc_dai_set_tdm_slot EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match EXPORT_SYMBOL_GPL vmlinux 0x78de78c5 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x78f0c35c mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x78e4005e of_clk_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x78f69e00 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x78faef6b fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0x7904bb5a tegra_mc_probe_device EXPORT_SYMBOL_GPL vmlinux 0x790a37e4 list_lru_count_one EXPORT_SYMBOL_GPL vmlinux 0x790d52af md_start EXPORT_SYMBOL_GPL vmlinux 0x790efa3a pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x7911faef spi_split_transfers_maxsize EXPORT_SYMBOL_GPL vmlinux 0x791de196 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x79233e45 crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0x792e8d28 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x79325750 sdhci_set_clock EXPORT_SYMBOL_GPL vmlinux 0x793a93dc raw_v6_hashinfo EXPORT_SYMBOL_GPL vmlinux 0x793d5129 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x7940ecc4 devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x79486b1f crypto_unregister_shash EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x795cd2e9 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x795938fc ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7989103b wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x798f570b __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0x79920840 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x79928395 cpts_misc_interrupt EXPORT_SYMBOL_GPL vmlinux 0x79a7a5cf mtk_eint_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x79c07c36 perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x79cec50f tc3589x_block_read EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park EXPORT_SYMBOL_GPL vmlinux 0x79e08d52 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x79e37d35 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL vmlinux 0x79e4254c cpts_release -EXPORT_SYMBOL_GPL vmlinux 0x79eabbfb ahci_start_engine EXPORT_SYMBOL_GPL vmlinux 0x79ecc5f9 pinctrl_pm_select_default_state EXPORT_SYMBOL_GPL vmlinux 0x79f0de5d lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x79f1a8c6 hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x79f3035d cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x79fee89b tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x7a0af19e crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0x7a1d13fa snd_device_get_state -EXPORT_SYMBOL_GPL vmlinux 0x7a255a6d sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x7a1db4b2 of_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x7a2faeef debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x7a302112 snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0x7a31408d __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0x7a3206b7 meson_pmx_get_groups EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x7a3c509f ata_sas_port_stop EXPORT_SYMBOL_GPL vmlinux 0x7a48d06c cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7a4ddf07 setfl EXPORT_SYMBOL_GPL vmlinux 0x7a6b6850 usb_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a7ac447 blk_trace_remove EXPORT_SYMBOL_GPL vmlinux 0x7a7f1396 zs_malloc EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a831287 ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x7a8c05f7 trace_seq_path EXPORT_SYMBOL_GPL vmlinux 0x7a8f8f48 pm_clk_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter EXPORT_SYMBOL_GPL vmlinux 0x7a9c4ee2 dma_resv_test_signaled EXPORT_SYMBOL_GPL vmlinux 0x7aa45fe7 musb_set_peripheral -EXPORT_SYMBOL_GPL vmlinux 0x7ab0427e nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x7aae0d01 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x7abba36f synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register EXPORT_SYMBOL_GPL vmlinux 0x7ac605b9 ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0x7ac713a4 __page_file_mapping EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7ac84bb7 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x7ace9b01 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x7aca5188 skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7adac26d sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL vmlinux 0x7adb8c1d security_kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0x7ae9b209 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x7aeeb469 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x7af4272a regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x7b079bb4 tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0x7b09b7d1 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL vmlinux 0x7b0f2ee8 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x7b0c1fdd metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x7b0fcada dma_buf_unpin EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b17b6f1 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x7b259e7f gpiochip_irq_unmap EXPORT_SYMBOL_GPL vmlinux 0x7b28cde5 nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL vmlinux 0x7b478a1c file_ra_state_init EXPORT_SYMBOL_GPL vmlinux 0x7b506392 virtio_config_changed EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b5c0b1e fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x7b5f8fcc xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x7b75f46b dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x7b7f415c crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x7b8e5fcc wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x7b6dd593 ahci_pmp_retry_srst_ops EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode EXPORT_SYMBOL_GPL vmlinux 0x7b959ebb rio_register_scan EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7b9cd757 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x7ba04826 fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bcac1ce crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0x7bcb635e dw_pcie_own_conf_map_bus EXPORT_SYMBOL_GPL vmlinux 0x7bcd8fff hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x7bd5d555 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0x7bd8698c shmem_zero_setup EXPORT_SYMBOL_GPL vmlinux 0x7bdb5586 dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0x7be334e8 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7bf84e5f crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7bf349a4 sdev_evt_send_simple EXPORT_SYMBOL_GPL vmlinux 0x7bfb45f4 spi_mem_dtr_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x7c01ff67 filemap_range_needs_writeback -EXPORT_SYMBOL_GPL vmlinux 0x7c0e6165 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c0127ec sdhci_cqe_irq EXPORT_SYMBOL_GPL vmlinux 0x7c23d884 ahci_platform_suspend_host EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c4066bd regmap_raw_write_async EXPORT_SYMBOL_GPL vmlinux 0x7c435afc of_reserved_mem_device_init_by_name EXPORT_SYMBOL_GPL vmlinux 0x7c4e9735 usb_put_dev EXPORT_SYMBOL_GPL vmlinux 0x7c5968da disable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x7c7c76d5 ahci_platform_disable_regulators EXPORT_SYMBOL_GPL vmlinux 0x7c7f28e5 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x7c83c259 mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0x7c86a9f9 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x7c8039fc add_to_page_cache_lru EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x7caaf948 msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x7cb8bc6b hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7cbb3eb1 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7cbc1b1f sdio_readl EXPORT_SYMBOL_GPL vmlinux 0x7ccc5caf encrypt_blob EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ce8f9ba regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0x7cea6428 blk_ksm_reprogram_all_keys EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf2e336 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x7cf358c1 __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0x7d08f022 iommu_alloc_resv_region EXPORT_SYMBOL_GPL vmlinux 0x7d0cb537 rio_mport_send_doorbell EXPORT_SYMBOL_GPL vmlinux 0x7d1a34d9 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x7d251cce ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x7d3c20cc wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x7d45383d tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x7d4ddf8b perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq EXPORT_SYMBOL_GPL vmlinux 0x7d6bbec4 blkdev_zone_mgmt EXPORT_SYMBOL_GPL vmlinux 0x7d6f6341 ehci_resume EXPORT_SYMBOL_GPL vmlinux 0x7d77d306 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x7d78d753 crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0x7d84a07d pcie_aspm_capable -EXPORT_SYMBOL_GPL vmlinux 0x7d8c4d68 synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0x7d8db7ff key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x7d9ba277 snd_soc_jack_report -EXPORT_SYMBOL_GPL vmlinux 0x7d9fa4ad platform_irqchip_probe EXPORT_SYMBOL_GPL vmlinux 0x7da66131 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x7daba0cd devlink_rate_nodes_destroy EXPORT_SYMBOL_GPL vmlinux 0x7dacfc8f bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x7db6a5e8 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x7db002b6 ata_std_bios_param EXPORT_SYMBOL_GPL vmlinux 0x7dd15cfa __fscrypt_prepare_lookup EXPORT_SYMBOL_GPL vmlinux 0x7dd6acd1 of_genpd_add_provider_onecell EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier EXPORT_SYMBOL_GPL vmlinux 0x7ddbbd51 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x7deb15fb aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0x7df914db dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x7dfb8144 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x7e015909 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x7e0975f6 fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0x7e119445 snd_ctl_register_layer EXPORT_SYMBOL_GPL vmlinux 0x7e1be7c4 nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x7e352d97 mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x7e38ff2c device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x7e360ef5 __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e420e2f ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x7e432b04 tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0x7e4762c7 dma_buf_dynamic_attach EXPORT_SYMBOL_GPL vmlinux 0x7e4e4a2c pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x7e5d8ddd set_task_ioprio 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 0x7e6cb362 find_extend_vma EXPORT_SYMBOL_GPL vmlinux 0x7e723435 ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e7f3907 gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0x7e899a87 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x7e8e757e platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7e9f02ab mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x7e97fab0 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x7e9f24fb fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x7ea1969c crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x7ea3655f spi_res_add EXPORT_SYMBOL_GPL vmlinux 0x7eae1bad fscrypt_ioctl_get_policy_ex EXPORT_SYMBOL_GPL vmlinux 0x7eb00a3f usb_gadget_giveback_request -EXPORT_SYMBOL_GPL vmlinux 0x7eb24562 sdio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x7eb808b7 mtk_eint_do_resume EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu EXPORT_SYMBOL_GPL vmlinux 0x7ebe1889 driver_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x7ec4bb6d devm_thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7ec89f21 alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0x7ecdebd7 irq_domain_create_legacy EXPORT_SYMBOL_GPL vmlinux 0x7ed2e874 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x7ee895e0 devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async EXPORT_SYMBOL_GPL vmlinux 0x7eeadad7 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x7efba972 devlink_remote_reload_actions_performed EXPORT_SYMBOL_GPL vmlinux 0x7efe071c tpm_pm_suspend EXPORT_SYMBOL_GPL vmlinux 0x7eff9950 sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0x7f00f3d2 noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x7f099f7e trace_event_raw_init EXPORT_SYMBOL_GPL vmlinux 0x7f12a553 sm501_modify_reg -EXPORT_SYMBOL_GPL vmlinux 0x7f151b4b __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x7f1d544e crypto_stats_akcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x7f2623ee mm_account_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0x7f29d490 open_related_ns EXPORT_SYMBOL_GPL vmlinux 0x7f33ab3b usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x7f42d1fe regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x7f3b41ca ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f3e4eb2 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x7f5cb72a sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x7f62fe67 cpufreq_register_governor EXPORT_SYMBOL_GPL vmlinux 0x7f638509 kthread_use_mm EXPORT_SYMBOL_GPL vmlinux 0x7f748cb9 hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata EXPORT_SYMBOL_GPL vmlinux 0x7f8c98e7 irqchip_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x7f8dd2bb bstr_printf EXPORT_SYMBOL_GPL vmlinux 0x7f91b138 nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL vmlinux 0x7fa28508 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL vmlinux 0x7f957952 ahci_platform_init_host EXPORT_SYMBOL_GPL vmlinux 0x7fa57199 ata_bmdma32_port_ops EXPORT_SYMBOL_GPL vmlinux 0x7fab22be led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops EXPORT_SYMBOL_GPL vmlinux 0x7fba3b2d pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x7fc0f1a5 rtc_read_time EXPORT_SYMBOL_GPL vmlinux 0x7fc3910e pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x7fc9ab17 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x7fc5fd99 perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0x7fcc89dd watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x7fd08253 nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x7fdb2399 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x7fdbefb9 snd_soc_card_jack_new EXPORT_SYMBOL_GPL vmlinux 0x7fe8a1ff rio_pw_enable EXPORT_SYMBOL_GPL vmlinux 0x80083816 debugfs_attr_write EXPORT_SYMBOL_GPL vmlinux 0x801c0364 anon_transport_class_unregister @@ -22017,17 +21957,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x8023a884 pcie_update_link_speed EXPORT_SYMBOL_GPL vmlinux 0x802e64e9 regulator_map_voltage_pickable_linear_range EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical EXPORT_SYMBOL_GPL vmlinux 0x80385867 nand_status_op -EXPORT_SYMBOL_GPL vmlinux 0x80462297 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x80493e39 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x804da58d crypto_unregister_rngs EXPORT_SYMBOL_GPL vmlinux 0x80514aa4 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x80525667 sdhci_start_tuning EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put EXPORT_SYMBOL_GPL vmlinux 0x80584211 misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x80631fae snd_soc_component_write EXPORT_SYMBOL_GPL vmlinux 0x806327ea imx_clk_hw_cpu EXPORT_SYMBOL_GPL vmlinux 0x8068621a dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x806fa752 ata_scsi_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x80746ec6 btree_visitor EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x8091816f nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x8093fd02 platform_device_del EXPORT_SYMBOL_GPL vmlinux 0x80a50a42 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x80ae457b dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x80b17b75 omap_get_plat_info EXPORT_SYMBOL_GPL vmlinux 0x80b50a09 usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0x80b63c4a tegra20_clk_prepare_emc_mc_same_freq @@ -22035,34 +21980,39 @@ EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close EXPORT_SYMBOL_GPL vmlinux 0x80cc0927 tpm_calc_ordinal_duration EXPORT_SYMBOL_GPL vmlinux 0x80d0e695 dm_table_set_type EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80e4f5d2 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x80d94cdc __clk_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x80f04f6f component_bind_all EXPORT_SYMBOL_GPL vmlinux 0x80f5ff26 phy_set_media EXPORT_SYMBOL_GPL vmlinux 0x81039ed5 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x8105d467 security_file_permission EXPORT_SYMBOL_GPL vmlinux 0x810f6bf4 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x81111b4c page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x8118aab5 regmap_write EXPORT_SYMBOL_GPL vmlinux 0x811c19e8 fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x81239532 platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0x81252148 relay_file_operations EXPORT_SYMBOL_GPL vmlinux 0x812a7ebe fat_getattr EXPORT_SYMBOL_GPL vmlinux 0x8135b757 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x81429168 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x814b32ba trace_event_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x814e3d04 tegra_mc_write_emem_configuration EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable EXPORT_SYMBOL_GPL vmlinux 0x815f7703 tegra_bpmp_mrq_return EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x8175d491 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x817f8be8 ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8183f119 rtc_read_alarm EXPORT_SYMBOL_GPL vmlinux 0x8185cb58 devm_regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x818d8150 phy_configure EXPORT_SYMBOL_GPL vmlinux 0x81a85fa3 anon_inode_getfile EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe EXPORT_SYMBOL_GPL vmlinux 0x81c02329 devm_release_action EXPORT_SYMBOL_GPL vmlinux 0x81c3bc23 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x81c471ff scsi_flush_work EXPORT_SYMBOL_GPL vmlinux 0x81c49ab0 usb_driver_claim_interface EXPORT_SYMBOL_GPL vmlinux 0x81d392ae tpm_chip_register EXPORT_SYMBOL_GPL vmlinux 0x81ee81f0 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0x81f359bd mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x8201eb12 fsverity_ioctl_read_metadata EXPORT_SYMBOL_GPL vmlinux 0x8202b650 irq_set_affinity @@ -22071,66 +22021,65 @@ EXPORT_SYMBOL_GPL vmlinux 0x821aa240 pci_epf_bind EXPORT_SYMBOL_GPL vmlinux 0x821ec7f1 clk_mux_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings EXPORT_SYMBOL_GPL vmlinux 0x823d9741 extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0x824526ed ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x8243b6e6 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x8248aa73 snd_soc_dpcm_fe_can_update EXPORT_SYMBOL_GPL vmlinux 0x82691c68 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0x827a8f82 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x82712890 wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x82779e9e snd_soc_dai_compr_get_params EXPORT_SYMBOL_GPL vmlinux 0x827cdc80 irq_chip_set_type_parent EXPORT_SYMBOL_GPL vmlinux 0x82891425 power_supply_am_i_supplied EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82af26e2 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x82b12870 spi_take_timestamp_post EXPORT_SYMBOL_GPL vmlinux 0x82b66e5f nand_write_data_op -EXPORT_SYMBOL_GPL vmlinux 0x82c4abee mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x82c1a4aa vfs_setxattr EXPORT_SYMBOL_GPL vmlinux 0x82d162c6 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x82d20f74 crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure EXPORT_SYMBOL_GPL vmlinux 0x82e22c44 srcu_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0x82e5bef5 mtd_panic_write -EXPORT_SYMBOL_GPL vmlinux 0x82f220cf fw_devlink_purge_absent_suppliers EXPORT_SYMBOL_GPL vmlinux 0x82fc5c89 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x82fde354 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x82fdc421 snd_soc_dai_compr_ack EXPORT_SYMBOL_GPL vmlinux 0x82fe2e72 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL vmlinux 0x82fef7b9 proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x830d70db crypto_stats_kpp_compute_shared_secret EXPORT_SYMBOL_GPL vmlinux 0x830f8df2 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x83111c90 rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0x8317fb9b irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x831fe6b4 tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0x83205739 phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0x83312ad6 platform_irq_count EXPORT_SYMBOL_GPL vmlinux 0x8332ea6a mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x83374b24 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x83376871 snd_soc_dpcm_be_can_update EXPORT_SYMBOL_GPL vmlinux 0x83380041 clk_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8342e2d0 skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x834dfe43 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x835c2536 skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x835d54f3 __pm_relax EXPORT_SYMBOL_GPL vmlinux 0x8374e71a devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x837a9803 bio_start_io_acct EXPORT_SYMBOL_GPL vmlinux 0x8387cc86 __fscrypt_prepare_link EXPORT_SYMBOL_GPL vmlinux 0x8387fd65 pci_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0x83971642 enable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x839db6e8 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x83bf73a6 wm8350_reg_read EXPORT_SYMBOL_GPL vmlinux 0x83c125a3 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x83c7f71d cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0x83cdc575 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x83d3e037 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x83d794a4 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x83dcba07 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x83f28342 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x83f360bd validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0x83f78906 devm_kmalloc EXPORT_SYMBOL_GPL vmlinux 0x84051646 sbitmap_queue_clear EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x841764e8 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x8421633d regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x843255f2 ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x844969c6 snd_soc_component_update_bits_async EXPORT_SYMBOL_GPL vmlinux 0x844cb904 mtk_mutex_remove_comp EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno EXPORT_SYMBOL_GPL vmlinux 0x845aa3dc lpddr2_jedec_timings EXPORT_SYMBOL_GPL vmlinux 0x845b2069 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x84603f07 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL vmlinux 0x84616def cpts_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x847a4d81 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x847a6ed8 fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0x84834ca8 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x84955b52 snd_soc_add_card_controls EXPORT_SYMBOL_GPL vmlinux 0x849c4115 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x84a3be20 sdhci_setup_host EXPORT_SYMBOL_GPL vmlinux 0x84a4f73e pci_cfg_access_trylock EXPORT_SYMBOL_GPL vmlinux 0x84a659b3 usb_find_alt_setting EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert @@ -22139,12 +22088,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x84c79556 usb_lock_device_for_reset EXPORT_SYMBOL_GPL vmlinux 0x84cd8311 tty_buffer_space_avail EXPORT_SYMBOL_GPL vmlinux 0x84de4b15 rio_set_port_lockout EXPORT_SYMBOL_GPL vmlinux 0x84e2a5e7 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x84e31ebd skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x84e6a787 switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0x84e81f54 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x84f5a94d tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x84fa1030 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x85052da2 sdio_retune_release EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850aaafe sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x851690ae ahci_ops EXPORT_SYMBOL_GPL vmlinux 0x85186366 rio_mport_initialize EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup @@ -22152,168 +22103,172 @@ EXPORT_SYMBOL_GPL vmlinux 0x85204985 of_irq_find_parent EXPORT_SYMBOL_GPL vmlinux 0x852464bb dma_can_mmap EXPORT_SYMBOL_GPL vmlinux 0x8524b074 usb_put_hcd EXPORT_SYMBOL_GPL vmlinux 0x852a3cc3 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x852c6aa4 regulator_disable EXPORT_SYMBOL_GPL vmlinux 0x853543ac pci_epf_unbind EXPORT_SYMBOL_GPL vmlinux 0x854389ee tty_port_default_client_ops EXPORT_SYMBOL_GPL vmlinux 0x854a76db iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x854d0f20 dev_pm_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x85541f4e vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x855eb235 regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0x85647219 alarm_init EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array EXPORT_SYMBOL_GPL vmlinux 0x8580ceeb debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x8583fbeb inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x8586f2c1 devm_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x85879bff usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x8594ce1b gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x8599f193 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x858a2874 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x85a00bab mptcp_get_reset_option EXPORT_SYMBOL_GPL vmlinux 0x85a9918c __pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x85ac18e2 sprint_OID EXPORT_SYMBOL_GPL vmlinux 0x85be7d7e omap_iommu_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate EXPORT_SYMBOL_GPL vmlinux 0x85d782eb snd_card_ref -EXPORT_SYMBOL_GPL vmlinux 0x85dc7577 device_register EXPORT_SYMBOL_GPL vmlinux 0x85ef6e48 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x85f91432 fwnode_graph_get_remote_node EXPORT_SYMBOL_GPL vmlinux 0x85fa41c7 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x85fb3b7a snd_soc_dapm_mux_update_power EXPORT_SYMBOL_GPL vmlinux 0x860a2eab bch_decode EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x8623d525 ata_scsi_queuecmd EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x863053db ethnl_cable_test_finished EXPORT_SYMBOL_GPL vmlinux 0x8642c8a4 wm831x_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start EXPORT_SYMBOL_GPL vmlinux 0x865f1982 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x8661b7ba devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x866c27dd netdev_rx_handler_unregister EXPORT_SYMBOL_GPL vmlinux 0x866ce581 tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x866e248d subsys_dev_iter_init EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0x86832d42 regulator_list_voltage_table EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get EXPORT_SYMBOL_GPL vmlinux 0x8688ab2e mtd_get_user_prot_info -EXPORT_SYMBOL_GPL vmlinux 0x868da970 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x868b83d3 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x86a99bc5 platform_irq_count EXPORT_SYMBOL_GPL vmlinux 0x86aedbbf dm_start_time_ns_from_clone EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x86b4a02b snd_soc_jack_get_type EXPORT_SYMBOL_GPL vmlinux 0x86c83c23 pci_find_ht_capability EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x86d3f65b devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x86d4e55b dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL vmlinux 0x86d4357b tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0x86d748fc dev_pm_disable_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x86d82a2e scmi_driver_register EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto EXPORT_SYMBOL_GPL vmlinux 0x86e47178 of_genpd_add_provider_simple EXPORT_SYMBOL_GPL vmlinux 0x86e7a634 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x86f30535 __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x86f6372f bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x86eb12a5 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x86f066e3 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue EXPORT_SYMBOL_GPL vmlinux 0x87090702 sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x870fa261 crypto_enqueue_request_head EXPORT_SYMBOL_GPL vmlinux 0x872eddfc blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x8747edf6 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0x874b5049 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x87379bcc bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0x874d9c71 pinctrl_parse_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x87613618 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x87640781 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0x8770fcc6 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x874e3d13 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x876278c2 inet_hashinfo2_init_mod EXPORT_SYMBOL_GPL vmlinux 0x87732fd8 devm_of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x877cbcc0 ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0x87b0afb2 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x87c0115b scsi_host_unblock EXPORT_SYMBOL_GPL vmlinux 0x87c0611a mtd_is_locked EXPORT_SYMBOL_GPL vmlinux 0x87c4f1ca usb_ep_fifo_flush -EXPORT_SYMBOL_GPL vmlinux 0x87c98e3e ethnl_cable_test_alloc -EXPORT_SYMBOL_GPL vmlinux 0x87cb636b sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x87ce0db8 snd_soc_dpcm_can_be_prepared EXPORT_SYMBOL_GPL vmlinux 0x87d78553 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x87dfb9ed ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0x87e62a7e pm_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0x87e7a36b regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x88010586 snd_soc_jack_report EXPORT_SYMBOL_GPL vmlinux 0x8805a073 blocking_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x880ef295 property_entries_dup EXPORT_SYMBOL_GPL vmlinux 0x8810e36e pci_bridge_emul_conf_read EXPORT_SYMBOL_GPL vmlinux 0x881d5082 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x8836b28f handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x88372ae6 ahci_set_em_messages EXPORT_SYMBOL_GPL vmlinux 0x88375bc1 pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0x883dfcca ahci_platform_enable_resources EXPORT_SYMBOL_GPL vmlinux 0x88415e3e usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x88486bb9 __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0x8853afc3 devm_kasprintf EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit EXPORT_SYMBOL_GPL vmlinux 0x885e0a9a of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x886ca0cd device_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x88856b92 dw_pcie_find_capability EXPORT_SYMBOL_GPL vmlinux 0x8885dc27 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x88904f81 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x88a1cd78 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8888ba34 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x888a02dd i2c_match_id EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88af844d rtc_class_open EXPORT_SYMBOL_GPL vmlinux 0x88b3ca52 serial8250_modem_status EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88b70f71 dev_pm_qos_flags EXPORT_SYMBOL_GPL vmlinux 0x88b85377 mmu_notifier_put EXPORT_SYMBOL_GPL vmlinux 0x88b914ec mtk_hw_set_value EXPORT_SYMBOL_GPL vmlinux 0x88d12079 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x88d73e3f sdio_readw EXPORT_SYMBOL_GPL vmlinux 0x88e95daa devm_qcom_smem_state_get EXPORT_SYMBOL_GPL vmlinux 0x88faaaac rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x88fc5e81 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8902b6a2 wwan_register_ops -EXPORT_SYMBOL_GPL vmlinux 0x89189b62 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x88fddf0e crypto_grab_ahash EXPORT_SYMBOL_GPL vmlinux 0x8920decc mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state EXPORT_SYMBOL_GPL vmlinux 0x892ba478 mmu_notifier_get_locked EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x8948b9b5 platform_get_irq_byname_optional EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x8968295b dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x895fb59b espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x89672cb4 iptunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x8968fee9 mtd_wunit_to_pairing_info EXPORT_SYMBOL_GPL vmlinux 0x896f275c __sbitmap_queue_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x8980e037 of_dma_request_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x898282d1 mddev_unlock EXPORT_SYMBOL_GPL vmlinux 0x8987736d uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x8990d127 __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0x899ae459 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x89ab1af6 devm_of_icc_get EXPORT_SYMBOL_GPL vmlinux 0x89ac63b8 pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0x89ad2ae6 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x89b97b73 icc_get +EXPORT_SYMBOL_GPL vmlinux 0x89b3e12b gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x89b60772 regulator_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify EXPORT_SYMBOL_GPL vmlinux 0x89bfe270 __wake_up_locked_key_bookmark EXPORT_SYMBOL_GPL vmlinux 0x89cdae3d __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x89d059c1 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x89cf5f4c unregister_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x89d0e702 snd_soc_bytes_put EXPORT_SYMBOL_GPL vmlinux 0x89d34037 devm_extcon_dev_unregister EXPORT_SYMBOL_GPL vmlinux 0x89d3704d param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x89dc1f85 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x89f113b0 gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x89fd3644 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x89ff80be udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x8a07094d ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0x8a082d3b phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x8a1bff64 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x8a1e9a0e init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x8a1fa37d fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x8a27f229 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x8a3c48f2 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x8a248284 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0x8a2f89fb scsi_mode_select EXPORT_SYMBOL_GPL vmlinux 0x8a3e9ba8 devfreq_event_get_event EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low EXPORT_SYMBOL_GPL vmlinux 0x8a409d1d nand_select_target EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP +EXPORT_SYMBOL_GPL vmlinux 0x8a47f701 pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a62bc1b of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x8a64ed4f msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts EXPORT_SYMBOL_GPL vmlinux 0x8a8b9cbd wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x8a8df8d8 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL vmlinux 0x8a8c3993 meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x8a90bd34 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8a9428ef devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x8a95de46 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x8a9f2e5b devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x8aa13cea regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x8aabb6a2 ata_scsi_unlock_native_capacity EXPORT_SYMBOL_GPL vmlinux 0x8aad89f7 exynos_get_pmu_regmap EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files EXPORT_SYMBOL_GPL vmlinux 0x8ac27d7f blk_mq_pci_map_queues EXPORT_SYMBOL_GPL vmlinux 0x8add8b44 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x8addea49 trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0x8ae2375d devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x8aef9818 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x8aefc4b4 skcipher_walk_async EXPORT_SYMBOL_GPL vmlinux 0x8af1f5b9 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x8afa7d67 regulator_list_voltage EXPORT_SYMBOL_GPL vmlinux 0x8b090332 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x8b0dfdc8 spi_busnum_to_master EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match EXPORT_SYMBOL_GPL vmlinux 0x8b1812f7 sm501_unit_power EXPORT_SYMBOL_GPL vmlinux 0x8b3130c4 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x8b338284 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x8b35eb94 regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x8b460423 platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x8b468813 crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0x8b4f8977 ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0x8b50be40 virtqueue_poll EXPORT_SYMBOL_GPL vmlinux 0x8b529ce4 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x8b58db63 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b53f7b3 wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0x8b5b4aae dev_pm_domain_attach_by_name EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release EXPORT_SYMBOL_GPL vmlinux 0x8b6b8dbd devm_pm_opp_set_clkname @@ -22321,313 +22276,310 @@ EXPORT_SYMBOL_GPL vmlinux 0x8b6c927f transport_configure_device EXPORT_SYMBOL_GPL vmlinux 0x8b708844 usb_get_from_anchor EXPORT_SYMBOL_GPL vmlinux 0x8b719bc4 devm_regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8b9f74f0 add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0x8ba88355 usb_hcd_pci_pm_ops EXPORT_SYMBOL_GPL vmlinux 0x8bb1362a dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x8bc64e67 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x8bc78d64 skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0x8bcbf493 mtk_pinconf_bias_get_combo EXPORT_SYMBOL_GPL vmlinux 0x8bd3e479 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x8be4eeb8 kill_device EXPORT_SYMBOL_GPL vmlinux 0x8beb27f1 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x8bee696f replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x8bfa6482 pci_host_common_probe EXPORT_SYMBOL_GPL vmlinux 0x8bff4bcb phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue EXPORT_SYMBOL_GPL vmlinux 0x8c0a825e pm_runtime_no_callbacks EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail EXPORT_SYMBOL_GPL vmlinux 0x8c19ea09 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0x8c24ad3a regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8c59ad91 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x8c42fcde __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0x8c5a80a2 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x8c688b7c sdhci_request_atomic EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c7dc21a dev_pm_qos_expose_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x8c7e5f90 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x8c8920ca snd_soc_dpcm_runtime_update EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8ca7544a __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8ca598a6 crypto_alloc_sync_skcipher EXPORT_SYMBOL_GPL vmlinux 0x8cbfa62f usb_initialize_gadget +EXPORT_SYMBOL_GPL vmlinux 0x8cc05675 devlink_params_unpublish EXPORT_SYMBOL_GPL vmlinux 0x8cc2681d account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x8cca40aa gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x8cf2b638 sdhci_switch_external_dma EXPORT_SYMBOL_GPL vmlinux 0x8cfa0fa5 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x8d007b6d fwnode_handle_put EXPORT_SYMBOL_GPL vmlinux 0x8d03586a pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x8d0d3907 vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0x8d1a8b0c fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0x8d1b5efe tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x8d1e2d7b devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc EXPORT_SYMBOL_GPL vmlinux 0x8d27cdf2 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x8d2dda3e perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x8d4637b0 devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8d4c3e16 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x8d64071e platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d3851e9 crypto_stats_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x8d66be0b pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8d6f5cff regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x8d7113f9 mbox_chan_txdone EXPORT_SYMBOL_GPL vmlinux 0x8d7be2b7 snd_soc_dapm_info_pin_switch EXPORT_SYMBOL_GPL vmlinux 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL vmlinux 0x8dab6028 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x8d86407e ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0x8db08028 snd_soc_component_force_enable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0x8db1e398 pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x8db388d7 devm_snd_dmaengine_pcm_register EXPORT_SYMBOL_GPL vmlinux 0x8db68696 fuse_free_conn EXPORT_SYMBOL_GPL vmlinux 0x8dc11669 lpddr2_jedec_addressing_table EXPORT_SYMBOL_GPL vmlinux 0x8dc9c984 deregister_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x8dcbbd6b snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL vmlinux 0x8dd02cb6 snd_soc_jack_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8ddbc5ac device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x8ddcbe41 ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0x8e0339ba mddev_resume EXPORT_SYMBOL_GPL vmlinux 0x8e174b22 rio_route_clr_table EXPORT_SYMBOL_GPL vmlinux 0x8e1babca md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x8e1ed073 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x8e21d51d devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0x8e25b1c8 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x8e3425b5 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x8e3a9513 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x8e3e8997 cpts_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x8e1fb1e4 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x8e2cb5c9 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x8e31e703 crypto_unregister_kpp EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x8e475958 sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0x8e47695f fwnode_property_match_string 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 0x8e52ab0d usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x8e608026 page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8e6ddd6e ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8e72e0d8 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x8e6d026e rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x8e74702e bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x8e753687 sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0x8e75e30e mtk_pinconf_bias_disable_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0x8e7c488d snd_soc_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0x8e883f8c snd_soc_dpcm_can_be_prepared -EXPORT_SYMBOL_GPL vmlinux 0x8e8ca09c phy_led_trigger_change_speed EXPORT_SYMBOL_GPL vmlinux 0x8e904ad0 irq_get_default_host EXPORT_SYMBOL_GPL vmlinux 0x8ea30495 fsnotify EXPORT_SYMBOL_GPL vmlinux 0x8eb1fc70 vp_modern_set_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x8eb2826f irq_setup_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x8eb95f5c usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8ebf1960 devlink_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0x8ee5c573 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x8ee9f330 wakeup_source_remove EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x8ef39bfe ata_sff_irq_on EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features EXPORT_SYMBOL_GPL vmlinux 0x8f04095b query_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f140bde find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x8f10355b fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0x8f1a8cf9 rsa_parse_pub_key EXPORT_SYMBOL_GPL vmlinux 0x8f228244 i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0x8f281fd1 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x8f2b6533 fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0x8f37b35e srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x8f3d6e86 __raw_v4_lookup EXPORT_SYMBOL_GPL vmlinux 0x8f45eb57 edac_device_handle_ue_count EXPORT_SYMBOL_GPL vmlinux 0x8f4acea2 vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0x8f4dca5d devm_of_phy_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x8f594b87 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x8f5f0e2f skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0x8f643d0e vga_default_device EXPORT_SYMBOL_GPL vmlinux 0x8f657109 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x8f68f539 nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0x8f6a22cc debugfs_file_get EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x8f725e67 probes_decode_arm_table EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f8297a9 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x8f8395ed regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x8f929ce4 snd_soc_register_card EXPORT_SYMBOL_GPL vmlinux 0x8f952f29 i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0x8f9a0a76 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x8f98792f eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x8f9a1ac4 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x8fb65337 __mnt_is_readonly EXPORT_SYMBOL_GPL vmlinux 0x8fbfda4e irq_chip_release_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x8fc090a3 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x8fca5338 fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x8fcc6d05 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x8fcf14fb lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0x8fd014be fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x8fd86059 snd_soc_of_parse_tdm_slot EXPORT_SYMBOL_GPL vmlinux 0x8fdc836a pci_cfg_access_lock EXPORT_SYMBOL_GPL vmlinux 0x8fe0282f tps6586x_update EXPORT_SYMBOL_GPL vmlinux 0x8fe900be fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x8fef83f6 ata_sas_port_destroy EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x90261fc6 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0x8ff6d14f xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x901898c4 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x902405fb ehci_adjust_port_wakeup_flags EXPORT_SYMBOL_GPL vmlinux 0x902778ba __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x902ecf3b crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x9030fdc6 bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x9054ec97 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x904b1d33 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x90507d30 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x905379c9 mmc_get_ext_csd EXPORT_SYMBOL_GPL vmlinux 0x905812c4 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x906057d0 regulator_bulk_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put EXPORT_SYMBOL_GPL vmlinux 0x906bda47 pinctrl_force_default EXPORT_SYMBOL_GPL vmlinux 0x906dd327 usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x9084df94 fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0x90858fec skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x9087290b devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90854621 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x90871e3e sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x9089429f tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x908d5418 ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0x909b61ef sysfs_remove_group EXPORT_SYMBOL_GPL vmlinux 0x909dda92 devm_pm_opp_register_set_opp_helper EXPORT_SYMBOL_GPL vmlinux 0x90a25e8e serial8250_rpm_get EXPORT_SYMBOL_GPL vmlinux 0x90a40827 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x90ad9e09 __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x90b6e82c bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x90c6a191 spi_get_next_queued_message EXPORT_SYMBOL_GPL vmlinux 0x90d3226c tpm_pm_resume EXPORT_SYMBOL_GPL vmlinux 0x90d595ae phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x90debcd8 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x90e901c3 wm8350_device_init EXPORT_SYMBOL_GPL vmlinux 0x90f022ec watchdog_set_last_hw_keepalive EXPORT_SYMBOL_GPL vmlinux 0x9120cc5f devm_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x9127a030 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x912e9ce0 blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0x9132650f kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x9136d068 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x9143d0a3 bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9148849c xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0x914da514 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x914f5aab bpf_map_put EXPORT_SYMBOL_GPL vmlinux 0x91519a16 dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0x915e02a2 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x915c384f of_clk_add_provider EXPORT_SYMBOL_GPL vmlinux 0x91637e86 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x9185e462 platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq EXPORT_SYMBOL_GPL vmlinux 0x91c8c432 fuse_dev_free EXPORT_SYMBOL_GPL vmlinux 0x91cb6768 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x91d77ee0 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x91d26664 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x91dd2cc2 sdio_writew EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean EXPORT_SYMBOL_GPL vmlinux 0x91eac764 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x91ec0891 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x91fc5316 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x91fd5111 bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0x92168f1d blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x921a5aa5 ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x92287ece attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x92313182 regulator_get_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x92398bac of_get_videomode EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable EXPORT_SYMBOL_GPL vmlinux 0x92421d6a serial8250_rpm_put EXPORT_SYMBOL_GPL vmlinux 0x9242842d em_dev_unregister_perf_domain EXPORT_SYMBOL_GPL vmlinux 0x9247767b __clocksource_register_scale EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9254d390 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x9277c8f5 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x926dddca spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x928d42f3 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x929166a3 ehci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x929e24bc rockchip_pcie_parse_dt EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work EXPORT_SYMBOL_GPL vmlinux 0x92bc3300 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x92c942d8 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x92ccaa7a security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x92c09006 rdev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92da7963 snd_soc_add_component_controls EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92ea3458 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x92dbfafa lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0x92eaace1 devm_kstrdup EXPORT_SYMBOL_GPL vmlinux 0x92eab8ab of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x92fec4d2 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x92fdd886 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x930eabc5 i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0x931f4299 kobj_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x933c3b89 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x933ddf1f rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0x93404f8e serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x934b1a76 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x93452225 devm_device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x9351982d pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x93632e26 crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0x936f672f cpufreq_dbs_governor_stop EXPORT_SYMBOL_GPL vmlinux 0x93758ed6 bio_release_pages EXPORT_SYMBOL_GPL vmlinux 0x93805369 software_node_register_node_group EXPORT_SYMBOL_GPL vmlinux 0x9396c787 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x9397f237 devlink_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x93b04725 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x93c3d8b5 scsi_build_sense EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93cc91bf ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x93cdcd10 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x93c84460 pm_relax EXPORT_SYMBOL_GPL vmlinux 0x93d15241 irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x93de7a5e device_add +EXPORT_SYMBOL_GPL vmlinux 0x93e027a2 snd_soc_add_component EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report EXPORT_SYMBOL_GPL vmlinux 0x93f2de8f sbitmap_weight EXPORT_SYMBOL_GPL vmlinux 0x93f3a7b1 kthread_cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap EXPORT_SYMBOL_GPL vmlinux 0x93f74bf2 snd_soc_info_volsw EXPORT_SYMBOL_GPL vmlinux 0x9400c684 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x94079f21 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb EXPORT_SYMBOL_GPL vmlinux 0x941a3d4f clk_hw_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x941fc7a3 posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x942c8068 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x9430a7b0 fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x9434a5f3 pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x943653af pci_epc_add_epf EXPORT_SYMBOL_GPL vmlinux 0x943740ed srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x9446818c __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x943f4367 snd_soc_dai_set_sysclk EXPORT_SYMBOL_GPL vmlinux 0x94565d24 usb_ep_free_request -EXPORT_SYMBOL_GPL vmlinux 0x9461ce69 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x9467a6b2 icc_link_create EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock EXPORT_SYMBOL_GPL vmlinux 0x946c31f3 debugfs_create_u32_array EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x946f2815 __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x948d0e54 device_match_name EXPORT_SYMBOL_GPL vmlinux 0x9492c52b max8997_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x9492d2e0 blk_mq_sched_mark_restart_hctx EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x94aaf2e7 crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid EXPORT_SYMBOL_GPL vmlinux 0x94ac3240 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x94ae9574 snd_soc_get_dai_id EXPORT_SYMBOL_GPL vmlinux 0x94b5300b of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x94cb615e crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x94cf72cc __traceiter_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x94d83d98 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x94dbf789 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x94de18fc thermal_zone_of_sensor_register EXPORT_SYMBOL_GPL vmlinux 0x94e18b53 bus_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x94e6bb8a devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x94fe1666 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x94ffa865 blk_rq_err_bytes EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9511d5f5 int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg EXPORT_SYMBOL_GPL vmlinux 0x951c8517 pm_runtime_suspended_time EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952c98ac wm8350_reg_write EXPORT_SYMBOL_GPL vmlinux 0x9539a539 usb_hcd_resume_root_hub EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x95418e51 device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x9542c891 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x954f472d crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x9550efd2 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x953fea94 __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn EXPORT_SYMBOL_GPL vmlinux 0x955d3f72 devm_serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0x95632cfc component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x9564b771 switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x956a9faa tegra_bpmp_request_mrq EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x957b7022 bpf_sk_storage_diag_put 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 0x959be2f6 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x95a56024 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x95ab99f9 tcp_ca_get_key_by_name EXPORT_SYMBOL_GPL vmlinux 0x95ac0549 debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0x95ae6ce1 ata_bmdma_port_start32 EXPORT_SYMBOL_GPL vmlinux 0x95b3d32e auxiliary_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x95b4f864 pinctrl_utils_add_map_configs EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free EXPORT_SYMBOL_GPL vmlinux 0x95c9787a __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x95ca36f5 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0x95ca5dc3 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL vmlinux 0x95c9a4dd snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x95d163a3 tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0x95d71e8c key_type_logon EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size EXPORT_SYMBOL_GPL vmlinux 0x95f422db __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x96004fd9 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0x95f6d5e5 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x95ff464e sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x96100765 do_tcp_sendpages EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x961c45f4 set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x96258ea0 sdhci_send_tuning EXPORT_SYMBOL_GPL vmlinux 0x963017f5 mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0x9650900d snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0x96370b9d __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x965f1fe5 gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x96604924 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x96868545 __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin EXPORT_SYMBOL_GPL vmlinux 0x969dde21 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x969f6224 snd_soc_jack_add_gpiods EXPORT_SYMBOL_GPL vmlinux 0x96ab3dde __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x96c03974 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x96bd2a26 fwnode_property_present EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0x96db61ba device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x96fe37ed securityfs_create_file EXPORT_SYMBOL_GPL vmlinux 0x970a0e8e pci_user_write_config_dword EXPORT_SYMBOL_GPL vmlinux 0x9713eadb tty_get_pgrp EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x971fc745 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x971b7263 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x971f3dcc regulator_set_voltage_time_sel EXPORT_SYMBOL_GPL vmlinux 0x972b597b usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL vmlinux 0x973cda7a crypto_register_scomps EXPORT_SYMBOL_GPL vmlinux 0x973e7654 usb_choose_configuration EXPORT_SYMBOL_GPL vmlinux 0x97451dfc dax_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x97462f9a led_trigger_blink EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same EXPORT_SYMBOL_GPL vmlinux 0x975e0334 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0x97749de2 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x9778f809 clk_hw_get_parent EXPORT_SYMBOL_GPL vmlinux 0x978b0b0b bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x97c2f8a5 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x97c3aa97 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x978ece43 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x97961ed1 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x9797d5a1 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL vmlinux 0x97c16338 xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0x97c64a33 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x97d42bcb sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x97d98054 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x97dda03c do_splice_to EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97ea5876 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x97f082a0 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x98063194 platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0x9806cc57 dm_set_target_max_io_len EXPORT_SYMBOL_GPL vmlinux 0x980f2c15 mtd_ooblayout_count_freebytes EXPORT_SYMBOL_GPL vmlinux 0x9821082d serial8250_do_shutdown @@ -22638,103 +22590,110 @@ EXPORT_SYMBOL_GPL vmlinux 0x9848c44b __bio_add_page EXPORT_SYMBOL_GPL vmlinux 0x984f249c gpmc_omap_onenand_set_timings EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x98615279 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL vmlinux 0x98699f90 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x986f2e2c replace_page_cache_page EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x988da8a5 virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str EXPORT_SYMBOL_GPL vmlinux 0x9899142c elv_unregister EXPORT_SYMBOL_GPL vmlinux 0x989b73b3 sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x989ff3e2 crypto_shash_setkey EXPORT_SYMBOL_GPL vmlinux 0x98aaac73 dev_pm_opp_remove_all_dynamic EXPORT_SYMBOL_GPL vmlinux 0x98abda44 __devm_clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98b61b63 __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x98d921f2 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x98d99b51 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x98ee2837 platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu EXPORT_SYMBOL_GPL vmlinux 0x98f092a2 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x98f45c03 xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios EXPORT_SYMBOL_GPL vmlinux 0x98fbbfae fscrypt_mergeable_bio EXPORT_SYMBOL_GPL vmlinux 0x98fe6251 __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0x9901db1e ping_get_port EXPORT_SYMBOL_GPL vmlinux 0x9903c2d7 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x99056996 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0x99071c1c led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x9908c2a3 devm_mipi_dsi_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x991e2fa6 irq_chip_set_parent_state EXPORT_SYMBOL_GPL vmlinux 0x99221589 snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL vmlinux 0x9922c043 platform_device_register EXPORT_SYMBOL_GPL vmlinux 0x9925d211 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x993bae2d trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0x993f200b fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x99465cb2 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x994c9108 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x99536c99 icc_disable EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on EXPORT_SYMBOL_GPL vmlinux 0x99658e34 fb_bl_default_curve EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg EXPORT_SYMBOL_GPL vmlinux 0x9970a150 _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL vmlinux 0x997c7abb perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x997d9c6f ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9981eadc crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x998504a4 __ata_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x998f1ca8 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0x9993e9dd espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0x99b7191f dynevent_create EXPORT_SYMBOL_GPL vmlinux 0x99bcacbc md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x99c3c600 __sync_filesystem EXPORT_SYMBOL_GPL vmlinux 0x99cdc47f mtd_ooblayout_set_eccbytes EXPORT_SYMBOL_GPL vmlinux 0x99d275c8 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x99e8bf86 ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0x99eafeb5 xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x99ecff00 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x99dfe797 ahci_start_fis_rx EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99f6a8a4 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x99fa1928 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL vmlinux 0x9a05c0f4 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x9a0fec2d __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a30cfa2 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0x9a5008d1 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9a31902e pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0x9a512d14 nand_ecc_init_req_tweaking EXPORT_SYMBOL_GPL vmlinux 0x9a535609 platform_find_device_by_driver EXPORT_SYMBOL_GPL vmlinux 0x9a5ba732 handle_untracked_irq EXPORT_SYMBOL_GPL vmlinux 0x9a5d151d pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0x9a63f46e split_page EXPORT_SYMBOL_GPL vmlinux 0x9a858e96 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x9a8b02e1 vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0x9a8b6b71 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x9a8d37ed trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0x9aa24ee0 iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x9ab5980f device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x9aa5511b stmpe_reg_read EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops EXPORT_SYMBOL_GPL vmlinux 0x9ac183e9 input_device_enabled EXPORT_SYMBOL_GPL vmlinux 0x9ac40aef pm_clk_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x9ac5fd36 vring_transport_features EXPORT_SYMBOL_GPL vmlinux 0x9ac8ebc0 tc3589x_block_write EXPORT_SYMBOL_GPL vmlinux 0x9add65e1 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ae73f10 driver_set_override EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9aeb6d37 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x9aef13c0 sdhci_remove_host EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw EXPORT_SYMBOL_GPL vmlinux 0x9b0d2e0b usb_gadget_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x9b0f21c6 bio_start_io_acct_time EXPORT_SYMBOL_GPL vmlinux 0x9b164d2b tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x9b4cb675 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0x9b4faa44 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x9b255d57 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL vmlinux 0x9b4da8e7 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x9b51a03b bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b5ada6d regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9b5fc9d4 ip_local_out EXPORT_SYMBOL_GPL vmlinux 0x9b6e1f87 led_trigger_blink_oneshot EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b705c20 tcp_twsk_destructor EXPORT_SYMBOL_GPL vmlinux 0x9b746c56 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL vmlinux 0x9b76584e spi_new_device EXPORT_SYMBOL_GPL vmlinux 0x9b7f210d cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x9b858202 raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x9b881446 extcon_unregister_notifier_all EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill -EXPORT_SYMBOL_GPL vmlinux 0x9b8c063a device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9b9134e3 tcp_reno_cong_avoid EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config EXPORT_SYMBOL_GPL vmlinux 0x9b9c82a2 ahci_platform_enable_phys -EXPORT_SYMBOL_GPL vmlinux 0x9ba21b08 raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x9ba44e1a rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x9baa6344 crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled EXPORT_SYMBOL_GPL vmlinux 0x9bdbb941 usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x9bdd84ad netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x9be67f0b __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bfd8093 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x9bfd8eee regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0x9bfde704 snd_soc_daifmt_clock_provider_fliped EXPORT_SYMBOL_GPL vmlinux 0x9c015ce1 tty_perform_flush EXPORT_SYMBOL_GPL vmlinux 0x9c0e271f snd_pcm_hw_constraint_eld EXPORT_SYMBOL_GPL vmlinux 0x9c1142c4 devm_regulator_put EXPORT_SYMBOL_GPL vmlinux 0x9c1b02fc msi_desc_to_pci_sysdata EXPORT_SYMBOL_GPL vmlinux 0x9c379e17 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x9c38f37f perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0x9c479bfe of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x9c50c2aa usb_hcd_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0x9c51b911 usb_hub_claim_port EXPORT_SYMBOL_GPL vmlinux 0x9c56a5d9 of_get_required_opp_performance_state EXPORT_SYMBOL_GPL vmlinux 0x9c5a7bed pinctrl_dev_get_devname @@ -22742,613 +22701,626 @@ EXPORT_SYMBOL_GPL vmlinux 0x9c5d25fa fwnode_usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0x9c62860f extcon_set_property EXPORT_SYMBOL_GPL vmlinux 0x9c66ecce usb_control_msg_send EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c7b2def devlink_port_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x9c739b3d perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c97ed3c crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x9c95c35b add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x9c9bf894 set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x9ca81462 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x9ca8893a fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x9cae63ef ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x9caec75c pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0x9cb0eb3e tcp_done EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier EXPORT_SYMBOL_GPL vmlinux 0x9cd2af2f snd_pcm_stream_unlock_irqrestore EXPORT_SYMBOL_GPL vmlinux 0x9cdaa279 snd_ctl_apply_vmaster_followers EXPORT_SYMBOL_GPL vmlinux 0x9ceb0d6b fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x9cf1c10e gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x9cf60ded crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0x9cf695ea mtd_ooblayout_free EXPORT_SYMBOL_GPL vmlinux 0x9d03ccc2 iomap_dio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x9d092a4a devlink_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d0d6508 pid_vnr EXPORT_SYMBOL_GPL vmlinux 0x9d101731 user_update -EXPORT_SYMBOL_GPL vmlinux 0x9d199311 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x9d22be72 proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x9d245d3e __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x9d281e4c ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x9d31d061 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x9d5a1bc4 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9d34f781 gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0x9d5a8178 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x9d64f5a5 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x9d7c483e thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0x9d90b44f phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0x9d97dffd platform_device_add EXPORT_SYMBOL_GPL vmlinux 0x9d9ef0b4 extcon_set_state EXPORT_SYMBOL_GPL vmlinux 0x9d9f6015 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x9dc90d1b crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x9dd61b98 devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x9daf2733 sdhci_reset_tuning +EXPORT_SYMBOL_GPL vmlinux 0x9dcaa391 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x9dd2219e __udp_gso_segment EXPORT_SYMBOL_GPL vmlinux 0x9de4f7b5 create_signature EXPORT_SYMBOL_GPL vmlinux 0x9df10ab5 usb_ep_dequeue EXPORT_SYMBOL_GPL vmlinux 0x9df972b8 __efivar_entry_get EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array EXPORT_SYMBOL_GPL vmlinux 0x9e016686 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x9e148039 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x9e07a865 cpts_release EXPORT_SYMBOL_GPL vmlinux 0x9e1788ef led_put EXPORT_SYMBOL_GPL vmlinux 0x9e2b08b5 virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0x9e335559 metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0x9e3945fe serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x9e3d2a96 cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x9e3dcd5c pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field EXPORT_SYMBOL_GPL vmlinux 0x9e522683 get_mtd_device_nm -EXPORT_SYMBOL_GPL vmlinux 0x9e571000 sdhci_reset_tuning EXPORT_SYMBOL_GPL vmlinux 0x9e651a41 blk_mq_flush_busy_ctxs EXPORT_SYMBOL_GPL vmlinux 0x9e65ed2b __kprobe_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x9e6a2253 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x9e84263a netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x9e873b3c ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x9e76171d regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x9e835d37 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x9e8729f9 tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x9e9dd888 x509_cert_parse EXPORT_SYMBOL_GPL vmlinux 0x9e9f3947 pm_clk_add EXPORT_SYMBOL_GPL vmlinux 0x9ea5f3ea pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x9ea83539 wwan_port_rx EXPORT_SYMBOL_GPL vmlinux 0x9eb0c988 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x9ec80fec xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier EXPORT_SYMBOL_GPL vmlinux 0x9edfbf93 mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x9ee32d09 platform_get_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x9ee5e40a __ktime_divns EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9ef08165 dapm_regulator_event EXPORT_SYMBOL_GPL vmlinux 0x9efb5120 of_add_property EXPORT_SYMBOL_GPL vmlinux 0x9f028176 omap_iommu_save_ctx -EXPORT_SYMBOL_GPL vmlinux 0x9f13d825 ehci_adjust_port_wakeup_flags EXPORT_SYMBOL_GPL vmlinux 0x9f140889 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x9f1bc71a fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x9f199eba sdhci_set_power_noreg +EXPORT_SYMBOL_GPL vmlinux 0x9f23621f devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x9f4a51ca pci_remap_cfgspace -EXPORT_SYMBOL_GPL vmlinux 0x9f4caed9 regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check EXPORT_SYMBOL_GPL vmlinux 0x9f6862bd iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x9f6f87a5 crypto_stats_akcipher_sign EXPORT_SYMBOL_GPL vmlinux 0x9f70f172 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x9f72024d fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x9f7f87bf regmap_raw_write_async EXPORT_SYMBOL_GPL vmlinux 0x9f8207f8 rockchip_clk_register_plls EXPORT_SYMBOL_GPL vmlinux 0x9f8d3161 blk_next_bio EXPORT_SYMBOL_GPL vmlinux 0x9f906e5d pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x9f9524fa __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x9f964647 tegra20_clk_set_emc_round_callback EXPORT_SYMBOL_GPL vmlinux 0x9f96bc30 usb_autopm_get_interface_no_resume EXPORT_SYMBOL_GPL vmlinux 0x9f992a33 pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x9fa971c2 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown EXPORT_SYMBOL_GPL vmlinux 0x9fb6c2d5 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9fc8469f skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x9fd296c9 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x9fd6d427 scsi_host_busy_iter EXPORT_SYMBOL_GPL vmlinux 0x9fe12575 snd_pcm_add_chmap_ctls EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm EXPORT_SYMBOL_GPL vmlinux 0x9ff0dbf8 input_ff_flush EXPORT_SYMBOL_GPL vmlinux 0x9ff4b9c1 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x9ffecf18 sata_link_scr_lpm EXPORT_SYMBOL_GPL vmlinux 0xa00b5caf omap_iommu_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xa0100e10 fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0xa01ce961 tegra_bpmp_put EXPORT_SYMBOL_GPL vmlinux 0xa02558bd input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xa02aedc8 snd_soc_new_compress +EXPORT_SYMBOL_GPL vmlinux 0xa029ee52 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xa02f8081 ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0xa0306b86 cpuidle_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xa034ead7 iommu_unmap EXPORT_SYMBOL_GPL vmlinux 0xa03883ae fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xa03c5280 of_clk_src_onecell_get EXPORT_SYMBOL_GPL vmlinux 0xa0406f6d extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0xa0487dab get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xa0461bbb ata_dev_next EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock EXPORT_SYMBOL_GPL vmlinux 0xa05af439 snd_ctl_add_vmaster_hook EXPORT_SYMBOL_GPL vmlinux 0xa05c325e of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0xa066cd63 ahci_platform_init_host EXPORT_SYMBOL_GPL vmlinux 0xa0828c12 power_supply_get_property_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0xa0a25e9b sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xa0c23269 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0xa0c5a6ab ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0xa0f1532f ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xa085f453 sdhci_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xa0a7d18d __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa0aa5e7e tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xa0b9b666 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xa0d206bd ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xa0dc4780 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa0f2b004 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xa1051514 ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0xa1110f73 virtqueue_enable_cb EXPORT_SYMBOL_GPL vmlinux 0xa1154670 __rio_local_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0xa11678e3 snd_device_disconnect EXPORT_SYMBOL_GPL vmlinux 0xa11be9f0 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0xa1233951 register_pernet_device EXPORT_SYMBOL_GPL vmlinux 0xa125cf92 meson8_aobus_parse_dt_extra EXPORT_SYMBOL_GPL vmlinux 0xa1266d54 d_exchange -EXPORT_SYMBOL_GPL vmlinux 0xa14baf89 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xa135742e __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xa13990c4 blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0xa14c792f __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0xa151f67a i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xa1553584 switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xa1591468 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xa15b8464 scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0xa1690910 fat_time_fat2unix EXPORT_SYMBOL_GPL vmlinux 0xa18b5e2b pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xa1916dc1 tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xa1922206 devlink_port_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0xa1a1fe8b powercap_unregister_control_type EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing EXPORT_SYMBOL_GPL vmlinux 0xa1dd0aa0 nvmem_cell_read_variable_le_u32 EXPORT_SYMBOL_GPL vmlinux 0xa1dfcea5 pm_generic_thaw EXPORT_SYMBOL_GPL vmlinux 0xa1e1acae dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0xa1ea56ea regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa1eeb158 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0xa1f1bd3a arm_check_condition EXPORT_SYMBOL_GPL vmlinux 0xa1f2a394 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xa1f9f04f spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa1f39ba3 mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk EXPORT_SYMBOL_GPL vmlinux 0xa20f8add register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0xa210c469 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xa213395a cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xa21901d0 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xa238fe7f raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0xa2434e20 fuse_direct_io EXPORT_SYMBOL_GPL vmlinux 0xa24b4ec5 irq_remove_generic_chip EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa2629c8d snd_soc_unregister_component -EXPORT_SYMBOL_GPL vmlinux 0xa268d9fd dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa26a4164 synth_event_add_next_val EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested EXPORT_SYMBOL_GPL vmlinux 0xa2702729 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xa2712821 nl_table EXPORT_SYMBOL_GPL vmlinux 0xa2757c35 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xa27bdd09 gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0xa27daa62 sysfs_remove_file_from_group EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL vmlinux 0xa28cb25e pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xa28eb5af crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xa2906c73 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xa28b7f46 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa29a8b00 platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0xa2c31b2a proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xa2c66c44 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xa2d87d00 ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0xa2da28c2 dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0xa2e181cb rdev_get_name EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2e7553a crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa2e461dc bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0xa2f7161f mtd_blktrans_cease_background EXPORT_SYMBOL_GPL vmlinux 0xa32f3d9e decode_rs16 EXPORT_SYMBOL_GPL vmlinux 0xa33744aa edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xa33f1d04 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xa345c2b5 gpiod_set_debounce EXPORT_SYMBOL_GPL vmlinux 0xa346975c idr_remove EXPORT_SYMBOL_GPL vmlinux 0xa3581bf1 dax_inode EXPORT_SYMBOL_GPL vmlinux 0xa35c27a3 kthread_cancel_delayed_work_sync EXPORT_SYMBOL_GPL vmlinux 0xa362bf8f hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0xa385fa89 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL vmlinux 0xa375d878 wait_on_page_writeback 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 0xa38fa35e ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xa3919b8f ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 EXPORT_SYMBOL_GPL vmlinux 0xa3a69fa7 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0xa3b61263 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL vmlinux 0xa3b4d331 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xa3b7ad27 sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector EXPORT_SYMBOL_GPL vmlinux 0xa3ba0941 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xa3be890f put_device EXPORT_SYMBOL_GPL vmlinux 0xa3c1db37 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa3c2fe66 sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xa3caacd7 perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0xa3db0dbf watchdog_notify_pretimeout EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port EXPORT_SYMBOL_GPL vmlinux 0xa40b924f rio_register_mport EXPORT_SYMBOL_GPL vmlinux 0xa40fe257 devm_remove_action EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa4144beb gpiod_direction_input EXPORT_SYMBOL_GPL vmlinux 0xa41754a3 tpm_put_ops EXPORT_SYMBOL_GPL vmlinux 0xa42660ca vp_modern_queue_vector EXPORT_SYMBOL_GPL vmlinux 0xa426692b extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xa42d4841 vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0xa444c3ca topology_clear_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xa4466328 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa45a5e69 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa453a2af snd_soc_component_set_pll EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa45dc275 trace_seq_putmem EXPORT_SYMBOL_GPL vmlinux 0xa46f8631 kernel_read_file_from_path EXPORT_SYMBOL_GPL vmlinux 0xa46f9803 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xa472415f xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xa479d1f7 sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0xa47a1034 dev_pm_opp_get_freq EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx EXPORT_SYMBOL_GPL vmlinux 0xa484d357 genphy_c45_config_aneg EXPORT_SYMBOL_GPL vmlinux 0xa48fbbff dma_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0xa490a7b8 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xa49a504c snd_soc_component_nc_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0xa49ab695 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0xa4a6d722 desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xa4b2c99b clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xa4bafd6a sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xa4b81404 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xa4bde315 __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis EXPORT_SYMBOL_GPL vmlinux 0xa4cc19b3 irq_set_affinity_hint EXPORT_SYMBOL_GPL vmlinux 0xa4d275b9 __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xa4d91d5b devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa4d76de6 blk_rq_prep_clone EXPORT_SYMBOL_GPL vmlinux 0xa4dc79c3 blocking_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0xa4ea96b0 gov_attr_set_put EXPORT_SYMBOL_GPL vmlinux 0xa4ed71c7 pm_genpd_remove_device EXPORT_SYMBOL_GPL vmlinux 0xa4ef40a9 dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0xa4fab2ca inet_twsk_purge EXPORT_SYMBOL_GPL vmlinux 0xa4fdcedd class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa5053f88 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa50e177a sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xa522fecc snd_soc_pm_ops EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context EXPORT_SYMBOL_GPL vmlinux 0xa5317d73 pinctrl_find_gpio_range_from_pin_nolock EXPORT_SYMBOL_GPL vmlinux 0xa53b0c69 generic_fh_to_dentry EXPORT_SYMBOL_GPL vmlinux 0xa53dbf92 do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0xa53f0dd7 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0xa54aabc7 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xa554a4c1 __devm_spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0xa556a3ef fuse_do_ioctl EXPORT_SYMBOL_GPL vmlinux 0xa55b4b4b rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xa5679d53 ahci_port_resume EXPORT_SYMBOL_GPL vmlinux 0xa57eb391 fuse_conn_get EXPORT_SYMBOL_GPL vmlinux 0xa5814738 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL vmlinux 0xa59bf08d device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xa5899f58 hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0xa5b692d1 sysfs_update_groups EXPORT_SYMBOL_GPL vmlinux 0xa5b946ea pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xa5bd2dc9 regulator_allow_bypass EXPORT_SYMBOL_GPL vmlinux 0xa5bf725d md_bitmap_load EXPORT_SYMBOL_GPL vmlinux 0xa5d72a8f cpuidle_enable_device EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5df19b4 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xa5e17c82 unmap_mapping_pages EXPORT_SYMBOL_GPL vmlinux 0xa5e584e2 mvebu_mbus_get_io_win_info EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full EXPORT_SYMBOL_GPL vmlinux 0xa5f4c9ac blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xa60511c4 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xa61f48de crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa6468ddc __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xa646b434 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL vmlinux 0xa64c71eb tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xa6516690 ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0xa652de2b dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xa662cdba ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xa67ae564 clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0xa67ee0dc sdhci_cleanup_host +EXPORT_SYMBOL_GPL vmlinux 0xa666feea netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xa66bb311 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xa66fa772 dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0xa682da73 proc_dou8vec_minmax EXPORT_SYMBOL_GPL vmlinux 0xa68538e3 lp8788_update_bits EXPORT_SYMBOL_GPL vmlinux 0xa68b5e35 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xa695b142 devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b3711e regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split EXPORT_SYMBOL_GPL vmlinux 0xa6b90f26 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xa6be8578 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0xa6ba0e82 fwnode_graph_get_next_endpoint EXPORT_SYMBOL_GPL vmlinux 0xa6d03863 dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0xa6da08b3 crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code -EXPORT_SYMBOL_GPL vmlinux 0xa6e07999 wm8350_reg_lock EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync EXPORT_SYMBOL_GPL vmlinux 0xa6ed83c5 rio_del_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0xa6fcb15b blk_ksm_register EXPORT_SYMBOL_GPL vmlinux 0xa700eb02 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xa701504a snd_soc_component_update_bits_async EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa70d8372 ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0xa715ea71 sdio_memcpy_toio EXPORT_SYMBOL_GPL vmlinux 0xa7188c87 nanddev_cleanup EXPORT_SYMBOL_GPL vmlinux 0xa722794b ahci_platform_resume EXPORT_SYMBOL_GPL vmlinux 0xa72e72ac blk_mq_start_stopped_hw_queue EXPORT_SYMBOL_GPL vmlinux 0xa74a9215 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xa74c020a of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0xa750c5eb tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0xa756a185 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0xa75ecbe2 crypto_req_done EXPORT_SYMBOL_GPL vmlinux 0xa7603028 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xa774be4f gpiod_is_active_low EXPORT_SYMBOL_GPL vmlinux 0xa7802e2e btree_grim_visitor EXPORT_SYMBOL_GPL vmlinux 0xa781cc68 regulator_is_equal EXPORT_SYMBOL_GPL vmlinux 0xa7848f54 mtk_pinconf_adv_drive_get EXPORT_SYMBOL_GPL vmlinux 0xa798d3a8 iommu_uapi_sva_bind_gpasid EXPORT_SYMBOL_GPL vmlinux 0xa7a0d6bf walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xa7a56af5 device_set_node EXPORT_SYMBOL_GPL vmlinux 0xa7aaafde klist_iter_exit EXPORT_SYMBOL_GPL vmlinux 0xa7aef80c dma_buf_detach EXPORT_SYMBOL_GPL vmlinux 0xa7b48024 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xa7ba0591 phy_driver_is_genphy EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7d5b1f2 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xa7ee96ee aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xa7ef68c6 device_initialize EXPORT_SYMBOL_GPL vmlinux 0xa7f54472 of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xa7ffe4bc devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0xa802729e devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xa84a8d8e devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa823a5c4 shmem_zero_setup EXPORT_SYMBOL_GPL vmlinux 0xa84d4e8f __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8584d47 snd_soc_set_dmi_name EXPORT_SYMBOL_GPL vmlinux 0xa85c3790 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0xa85c8d13 snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL vmlinux 0xa8665f02 sched_trace_rq_avg_irq EXPORT_SYMBOL_GPL vmlinux 0xa87849b6 dma_alloc_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xa87f7aec sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xa88110d1 sdio_set_host_pm_flags EXPORT_SYMBOL_GPL vmlinux 0xa889ca97 pinctrl_enable EXPORT_SYMBOL_GPL vmlinux 0xa88c3af2 meson_pmx_get_funcs_count -EXPORT_SYMBOL_GPL vmlinux 0xa88f302a ip6_input -EXPORT_SYMBOL_GPL vmlinux 0xa89299d8 cpts_misc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xa8939928 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0xa8b1bbc0 inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0xa8bc4261 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xa899773e regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xa89f2082 ata_host_put EXPORT_SYMBOL_GPL vmlinux 0xa8c13aeb rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0xa8da2ef4 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xa8eb24ff crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xa8fbbff4 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xa8dd7d05 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xa8ff5955 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xa90121a3 shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0xa9219632 fsstack_copy_attr_all EXPORT_SYMBOL_GPL vmlinux 0xa9285f6e power_supply_changed EXPORT_SYMBOL_GPL vmlinux 0xa92b7803 power_supply_notifier EXPORT_SYMBOL_GPL vmlinux 0xa92ca4ac debugfs_create_file_size EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa94213e2 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xa942dc35 snd_soc_component_nc_pin EXPORT_SYMBOL_GPL vmlinux 0xa957ac22 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xa96eedeb devlink_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0xa9702ec4 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xa9725bfb snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0xa975c59a spi_async_locked EXPORT_SYMBOL_GPL vmlinux 0xa9764fbc pci_epc_remove_epf EXPORT_SYMBOL_GPL vmlinux 0xa98214c4 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0xa982b313 snd_soc_jack_add_gpios EXPORT_SYMBOL_GPL vmlinux 0xa98393f9 pcie_port_bus_type EXPORT_SYMBOL_GPL vmlinux 0xa9861d3f irq_domain_free_irqs_common 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 0xa9a27de4 security_path_chmod EXPORT_SYMBOL_GPL vmlinux 0xa9a85e4d gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xa9af7cba pid_vnr EXPORT_SYMBOL_GPL vmlinux 0xa9b4d817 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xa9d15b8f sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0xa9d8fb0b irq_chip_set_affinity_parent 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 0xa9ef3bff tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xa9f5a7d9 blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0xa9f8beea __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xaa0c50e5 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xaa140df8 security_path_symlink EXPORT_SYMBOL_GPL vmlinux 0xaa152108 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xaa1aa8a3 sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy EXPORT_SYMBOL_GPL vmlinux 0xaa2b2a80 regulator_desc_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0xaa394b64 devm_power_supply_register EXPORT_SYMBOL_GPL vmlinux 0xaa443907 genphy_c45_aneg_done EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable -EXPORT_SYMBOL_GPL vmlinux 0xaa4c2a4a wwan_unregister_ops -EXPORT_SYMBOL_GPL vmlinux 0xaa5dd116 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0xaa4d009f tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xaa5d5cfa crypto_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0xaa62125a cdrom_multisession EXPORT_SYMBOL_GPL vmlinux 0xaa634f61 snd_soc_component_compr_ack EXPORT_SYMBOL_GPL vmlinux 0xaa6f9b41 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xaa736d0a gpiochip_relres_irq EXPORT_SYMBOL_GPL vmlinux 0xaa7c8481 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xaa7e39c7 thermal_zone_bind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0xaa88ba94 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0xaa8e6eb1 device_match_devt EXPORT_SYMBOL_GPL vmlinux 0xaa8f00a5 dapm_kcontrol_get_value EXPORT_SYMBOL_GPL vmlinux 0xaa996bf7 __tracepoint_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0xaaa551a4 devfreq_cooling_em_register EXPORT_SYMBOL_GPL vmlinux 0xaaa5980a user_preparse EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaad480f get_device +EXPORT_SYMBOL_GPL vmlinux 0xaaab572a fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xaab69795 scsi_host_complete_all_commands EXPORT_SYMBOL_GPL vmlinux 0xaabe0c62 dev_pm_set_dedicated_wake_irq_reverse -EXPORT_SYMBOL_GPL vmlinux 0xaac1fb3d rdev_get_id EXPORT_SYMBOL_GPL vmlinux 0xaac37f1f pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xaacf1d8d regulator_enable EXPORT_SYMBOL_GPL vmlinux 0xaad6f3a5 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaae343e2 snd_soc_dai_set_pll EXPORT_SYMBOL_GPL vmlinux 0xaaea260d usb_add_gadget_udc EXPORT_SYMBOL_GPL vmlinux 0xaaecf75d perf_trace_buf_alloc EXPORT_SYMBOL_GPL vmlinux 0xaaf4f5a9 mtd_read_oob EXPORT_SYMBOL_GPL vmlinux 0xab0a38ff pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xab1eb417 nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0xab444b65 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xab4e1eaa wait_on_page_writeback_killable EXPORT_SYMBOL_GPL vmlinux 0xab4f4b32 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xab53eb2c rtc_read_time EXPORT_SYMBOL_GPL vmlinux 0xab5f9c25 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xab6defd7 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xab6b1039 inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0xab7b097e sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xab7c5b2c xdp_rxq_info_reg EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL vmlinux 0xab8c6c5a bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0xab8f078a mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0xab96cbc7 gpiochip_line_is_irq EXPORT_SYMBOL_GPL vmlinux 0xab9a6807 fsnotify_alloc_group EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks EXPORT_SYMBOL_GPL vmlinux 0xabb5ad65 kthread_func -EXPORT_SYMBOL_GPL vmlinux 0xabb9365d tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xabbfd994 gpiod_count EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabc9d114 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xabc6debf stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xabca5485 xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0xabcda29e leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xabd47044 fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0xabde5691 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xabe181ec tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0xabe8f371 devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0xabed6637 net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0xabef34ee __tracepoint_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xac032ede serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0xac0e90c7 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0xac2e65e1 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0xac0d1256 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xac2e1d09 spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0xac34bb8d spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0xac4483e5 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xac3e534a fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0xac4a5b40 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0xac51415c devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0xac6e4609 tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0xac875375 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0xac885350 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xac9dba9e of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xaca3b769 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL vmlinux 0xaca669b0 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xac8825f0 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xaca5092a l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xacb20d00 snd_soc_find_dai_with_mutex EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacb754de gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xacb971ad ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0xacd726b9 of_pci_dma_range_parser_init EXPORT_SYMBOL_GPL vmlinux 0xacdc58f7 sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0xaceeee4a sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xad162e90 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0xacf51a4d kill_device EXPORT_SYMBOL_GPL vmlinux 0xad25b8ef input_class -EXPORT_SYMBOL_GPL vmlinux 0xad3a52f0 fib_rules_lookup 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 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad653761 sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0xad713883 smpboot_register_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0xad754bdc cpufreq_table_index_unsorted EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad7afcb3 __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xad8d01d6 dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0xad9437a8 task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xad967d72 sbitmap_prepare_to_wait EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy EXPORT_SYMBOL_GPL vmlinux 0xadb458d2 snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL vmlinux 0xadcc6429 alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0xadd0b32d validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0xadd9bc6f mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0xaddcb831 nand_read_data_op EXPORT_SYMBOL_GPL vmlinux 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL vmlinux 0xadf6bb4a switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xae04c031 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0xadf13dc6 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0xae1221a9 wm8350_block_read EXPORT_SYMBOL_GPL vmlinux 0xae154529 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xae16dca8 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xae1802f1 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xae1e5479 task_cgroup_path EXPORT_SYMBOL_GPL vmlinux 0xae24eda1 kvm_arch_ptp_get_crosststamp EXPORT_SYMBOL_GPL vmlinux 0xae283147 pci_common_swizzle EXPORT_SYMBOL_GPL vmlinux 0xae3365a4 powercap_register_zone EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae482eac __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xae4c5bee snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0xae3cc796 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xae4f2f61 shmem_file_setup EXPORT_SYMBOL_GPL vmlinux 0xae5ef41b of_get_regulator_init_data EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock EXPORT_SYMBOL_GPL vmlinux 0xae6ad539 gpiod_export_link EXPORT_SYMBOL_GPL vmlinux 0xae6c01ef user_free_preparse EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp EXPORT_SYMBOL_GPL vmlinux 0xae91f637 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xae92b51a devlink_port_type_eth_set EXPORT_SYMBOL_GPL vmlinux 0xae930d3e dma_buf_vunmap EXPORT_SYMBOL_GPL vmlinux 0xae93d5b1 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xae96ef00 crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0xae98e71f pl08x_filter_id EXPORT_SYMBOL_GPL vmlinux 0xaea3fe6a of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xaeaada34 xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0xaeb457dc bio_add_zone_append_page EXPORT_SYMBOL_GPL vmlinux 0xaebe0af1 ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0xaecabcf9 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xaed4c1fb ahci_init_controller EXPORT_SYMBOL_GPL vmlinux 0xaedc5536 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xaedd9740 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0xaefaecb7 shash_register_instance EXPORT_SYMBOL_GPL vmlinux 0xaeff8529 bus_rescan_devices EXPORT_SYMBOL_GPL vmlinux 0xaf0633ea __regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0xaf260228 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xaf2b3797 snd_soc_daifmt_parse_format 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 0xaf41e383 msg_zerocopy_alloc EXPORT_SYMBOL_GPL vmlinux 0xaf4b10f2 get_tree_mtd -EXPORT_SYMBOL_GPL vmlinux 0xaf67d185 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0xaf59215c devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0xaf714862 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0xaf753535 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xaf88602c spi_setup EXPORT_SYMBOL_GPL vmlinux 0xaf95708e fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0xaf99c431 fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0xafa29468 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xafb8576a xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0xafb9dae4 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xafc7159a xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xafc4dfa4 snd_soc_add_dai_controls EXPORT_SYMBOL_GPL vmlinux 0xafccbd05 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xafcccd7d ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafe4e040 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xafeb3dba skb_gso_validate_mac_len EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xafee8da5 __sdhci_set_timeout EXPORT_SYMBOL_GPL vmlinux 0xb001974b uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0xb00f92ec bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0xb01beb4c gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0xb0178bd2 snd_soc_add_card_controls EXPORT_SYMBOL_GPL vmlinux 0xb01cc7a5 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xb01d2757 ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0xb01f9ae9 em_dev_register_perf_domain EXPORT_SYMBOL_GPL vmlinux 0xb0232477 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xb023ed49 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xb03a09fc ata_sas_port_init EXPORT_SYMBOL_GPL vmlinux 0xb03bf684 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb045f63a sdio_f0_readb 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 0xb05f6e64 sdhci_free_host EXPORT_SYMBOL_GPL vmlinux 0xb0666a37 srcu_torture_stats_print 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 0xb07e4b2f __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xb07cb7e2 netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0xb088512d register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xb0a33452 devm_clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb0a7ebbb dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb08bf3aa l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xb0a03c4c wakeup_source_create EXPORT_SYMBOL_GPL vmlinux 0xb0b567fd dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c4e4e4 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xb0e99df8 inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xb0f1d7c1 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0xb0f4e2af fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0xb0fbb722 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xb0fc112e ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xb1063ebe sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb10f9f24 devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0xb11527cb spi_bus_type EXPORT_SYMBOL_GPL vmlinux 0xb1161634 key_type_asymmetric EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb117bfb9 regulator_count_voltages EXPORT_SYMBOL_GPL vmlinux 0xb11841db dev_pm_opp_set_opp EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number EXPORT_SYMBOL_GPL vmlinux 0xb12bdbfd imx_pinctrl_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xb13fca7d dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb138609e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xb13a0d91 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xb144b4b7 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xb1610fb9 strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb164c8e7 sdhci_cqe_enable EXPORT_SYMBOL_GPL vmlinux 0xb1685b96 alloc_dax_region EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs EXPORT_SYMBOL_GPL vmlinux 0xb18a2017 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xb19e67c4 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0xb1abe312 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xb1b02cf5 clk_hw_get_num_parents EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c2e2a6 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xb1d1a4eb bpf_prog_inc EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e2b10f crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xb1e3d3c4 snd_soc_component_enable_pin EXPORT_SYMBOL_GPL vmlinux 0xb1e5c35e dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xb1f2398c fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0xb1f96d46 get_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string EXPORT_SYMBOL_GPL vmlinux 0xb1ffbd7b __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0xb20ca23f ata_host_register EXPORT_SYMBOL_GPL vmlinux 0xb20e25bd i2c_detect_slave_mode -EXPORT_SYMBOL_GPL vmlinux 0xb2124d3b sdhci_set_bus_width EXPORT_SYMBOL_GPL vmlinux 0xb212a99b devm_clk_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert EXPORT_SYMBOL_GPL vmlinux 0xb22d5fc7 fat_detach EXPORT_SYMBOL_GPL vmlinux 0xb22ea48a devm_clk_get_optional_enabled EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb2652d26 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0xb24e6615 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb25357d7 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xb26481d5 regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26cad40 crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0xb2800481 nand_ecc_tweak_req -EXPORT_SYMBOL_GPL vmlinux 0xb286a58c devlink_params_publish EXPORT_SYMBOL_GPL vmlinux 0xb287d837 usb_create_shared_hcd EXPORT_SYMBOL_GPL vmlinux 0xb28be412 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xb28d8877 strp_init -EXPORT_SYMBOL_GPL vmlinux 0xb29fae95 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xb29615d5 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb29ba0f5 platform_device_add_data EXPORT_SYMBOL_GPL vmlinux 0xb2a7197f genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xb2ac9d61 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0xb2aea17a devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait EXPORT_SYMBOL_GPL vmlinux 0xb2c5bf86 pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0xb2cf860d ata_pci_device_resume EXPORT_SYMBOL_GPL vmlinux 0xb2d3a61d fat_sync_inode EXPORT_SYMBOL_GPL vmlinux 0xb2d94d60 rockchip_clk_register_ddrclk EXPORT_SYMBOL_GPL vmlinux 0xb2dbaeea mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0xb2dc0360 nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0xb2de4cf2 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2e74be8 ip_fib_metrics_init EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f6ef51 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0xb2fad5f5 sdio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xb2fadc38 clk_regmap_gate_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xb304664b ehci_setup EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put EXPORT_SYMBOL_GPL vmlinux 0xb30fbf9b bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb31d29cc __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xb34473f1 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb3480e85 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0xb34cc664 proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0xb34ed2f7 debugfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0xb3662e9c device_reprobe EXPORT_SYMBOL_GPL vmlinux 0xb378559e freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xb37a4250 crypto_grab_skcipher EXPORT_SYMBOL_GPL vmlinux 0xb383c6ad of_map_id EXPORT_SYMBOL_GPL vmlinux 0xb39c7cf9 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xb39de0bb sdio_signal_irq EXPORT_SYMBOL_GPL vmlinux 0xb3b7a9bd iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xb3d0b694 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xb3c2fd0b fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0xb3d4780e serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0xb3fe9986 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0xb3da12cc sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xb3dedd54 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3ebca01 devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb41651fb dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb41f8768 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb40e3e33 platform_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xb424b11a do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xb42a1485 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xb42ac667 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb42cbedb wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb42f4e31 snd_soc_get_dai_name EXPORT_SYMBOL_GPL vmlinux 0xb4375cf0 pci_find_host_bridge EXPORT_SYMBOL_GPL vmlinux 0xb438220e devm_gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0xb43b3038 devm_pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb44aa2b7 device_link_add EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb45943ea pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0xb45e480f pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xb48301b6 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0xb4857803 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xb46656c5 hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0xb4805a04 snd_soc_resume EXPORT_SYMBOL_GPL vmlinux 0xb48d32c4 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xb49bf9c7 ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0xb4a7f57d ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0xb4b19455 imx8m_clk_hw_composite_flags +EXPORT_SYMBOL_GPL vmlinux 0xb4b53979 crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xb4c0fd80 dev_coredumpsg EXPORT_SYMBOL_GPL vmlinux 0xb4c25d26 usb_disable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0xb4c9015d spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0xb4c9d178 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xb4e42f5e housekeeping_affine EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4ed9c86 device_store_ulong EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length EXPORT_SYMBOL_GPL vmlinux 0xb507e93d rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xb50c20d9 do_truncate -EXPORT_SYMBOL_GPL vmlinux 0xb50c4657 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xb50a9eae icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xb50c9842 security_inode_create EXPORT_SYMBOL_GPL vmlinux 0xb5167cf1 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xb51f9c9f set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb543b1f3 iterate_mounts EXPORT_SYMBOL_GPL vmlinux 0xb55b114c phy_resolve_aneg_linkmode EXPORT_SYMBOL_GPL vmlinux 0xb58216d6 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb5847e0f gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0xb594f4f5 iommu_fwspec_add_ids EXPORT_SYMBOL_GPL vmlinux 0xb5957fb8 rio_request_dma EXPORT_SYMBOL_GPL vmlinux 0xb5975ee3 fscrypt_prepare_new_inode EXPORT_SYMBOL_GPL vmlinux 0xb59bd54c dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0xb5ad55f1 device_add EXPORT_SYMBOL_GPL vmlinux 0xb5ad8ec4 of_console_check EXPORT_SYMBOL_GPL vmlinux 0xb5b4c2e8 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xb5b8017b xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0xb5cb1bdc pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0xb5d1920d percpu_up_write EXPORT_SYMBOL_GPL vmlinux 0xb5dcd8a0 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xb5f0bbb9 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xb5f0f08c bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xb5f13c96 ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0xb602c716 tty_buffer_unlock_exclusive EXPORT_SYMBOL_GPL vmlinux 0xb610a69d of_clk_set_defaults EXPORT_SYMBOL_GPL vmlinux 0xb6119a64 dev_pm_genpd_resume @@ -23358,273 +23330,270 @@ EXPORT_SYMBOL_GPL vmlinux 0xb6335a30 mctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0xb63fc07b tegra_bpmp_transfer_atomic EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm EXPORT_SYMBOL_GPL vmlinux 0xb646443f of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xb655a4a0 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xb65dc73f devm_device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0xb66f3745 fsnotify_destroy_mark EXPORT_SYMBOL_GPL vmlinux 0xb671449a syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0xb67158d2 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xb677e7c8 snd_soc_dapm_weak_routes EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb68047d3 of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xb683b8b2 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb678d250 sdhci_cqe_disable EXPORT_SYMBOL_GPL vmlinux 0xb68901c1 kobject_get_path EXPORT_SYMBOL_GPL vmlinux 0xb68bd3f2 devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0xb68d5157 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL vmlinux 0xb69305cd devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xb69d71ab snd_soc_get_dai_id EXPORT_SYMBOL_GPL vmlinux 0xb69e343b iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0xb69e5757 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0xb6a8905a snd_soc_dapm_enable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0xb6a948ee usb_add_gadget_udc_release EXPORT_SYMBOL_GPL vmlinux 0xb6b873f4 __tracepoint_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0xb6cf0d64 pci_epf_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6e9a400 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xb6f25e1d sdhci_abort_tuning EXPORT_SYMBOL_GPL vmlinux 0xb70e058b xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xb71627b2 ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0xb7225c61 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0xb72727b8 switchdev_handle_fdb_del_to_device +EXPORT_SYMBOL_GPL vmlinux 0xb72493df rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0xb72cdc0d pci_dev_lock EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb734a9c9 device_move EXPORT_SYMBOL_GPL vmlinux 0xb73a6fed __devm_irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0xb74538d2 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0xb7458e10 regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0xb7469f0f blkcg_root_css EXPORT_SYMBOL_GPL vmlinux 0xb7491c17 lzorle1x_1_compress EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL vmlinux 0xb7527041 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0xb757f24c nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xb75f584a sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb EXPORT_SYMBOL_GPL vmlinux 0xb77db4cd software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb77e4006 of_icc_get EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg EXPORT_SYMBOL_GPL vmlinux 0xb799412e clk_register_hisi_phase -EXPORT_SYMBOL_GPL vmlinux 0xb7a0015b strp_stop EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier EXPORT_SYMBOL_GPL vmlinux 0xb7ea34c8 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xb7f6e153 devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0xb7fcf434 usb_check_int_endpoints EXPORT_SYMBOL_GPL vmlinux 0xb800d230 rio_mport_get_physefb EXPORT_SYMBOL_GPL vmlinux 0xb8017718 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xb817e42e gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xb81e1510 bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable EXPORT_SYMBOL_GPL vmlinux 0xb82c2f75 pci_epc_get_features EXPORT_SYMBOL_GPL vmlinux 0xb8423f44 regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xb85aac06 rockchip_clk_register_armclk -EXPORT_SYMBOL_GPL vmlinux 0xb8629e20 inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xb866789c snd_soc_info_xr_sx EXPORT_SYMBOL_GPL vmlinux 0xb86758bf unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xb8706c39 ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb87d17bd wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0xb881842c input_ff_erase EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state EXPORT_SYMBOL_GPL vmlinux 0xb897e6e1 pci_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xb8a64d4a sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0xb8b453c1 i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0xb8b728cf fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0xb8b593cd strp_done EXPORT_SYMBOL_GPL vmlinux 0xb8b891db fat_scan EXPORT_SYMBOL_GPL vmlinux 0xb8bcc0cf dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xb8c62870 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xb8c507e1 gpiod_direction_output EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8cd6ea2 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xb8cd7706 devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0xb90249bb skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xb8d492d5 nl_table EXPORT_SYMBOL_GPL vmlinux 0xb9025022 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xb907085d skcipher_walk_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xb90a1fcd rsa_parse_priv_key EXPORT_SYMBOL_GPL vmlinux 0xb9138620 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0xb916ff2c sdio_retune_crc_enable EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address EXPORT_SYMBOL_GPL vmlinux 0xb922ff54 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xb92ca219 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xb92e9361 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xb931187d locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0xb9336ace debugfs_create_size_t EXPORT_SYMBOL_GPL vmlinux 0xb934c8dd tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0xb93f092f crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xb9406d05 fwnode_device_is_available EXPORT_SYMBOL_GPL vmlinux 0xb9474b8f __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb94bd1e8 mptcp_get_reset_option EXPORT_SYMBOL_GPL vmlinux 0xb94d6e5a sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb94dc78c xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush EXPORT_SYMBOL_GPL vmlinux 0xb968f59f pm_generic_resume EXPORT_SYMBOL_GPL vmlinux 0xb9739842 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xb9748ec3 crypto_shoot_alg EXPORT_SYMBOL_GPL vmlinux 0xb97d7d9e usb_hub_clear_tt_buffer EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb985cbe1 sdhci_enable_sdio_irq EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features EXPORT_SYMBOL_GPL vmlinux 0xb999d41e iomap_is_partially_uptodate EXPORT_SYMBOL_GPL vmlinux 0xb99a93f5 crypto_chain EXPORT_SYMBOL_GPL vmlinux 0xb99d3629 synth_event_cmd_init EXPORT_SYMBOL_GPL vmlinux 0xb9a35c05 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xb9b511ed __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0xb9b51e9d alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xb9b73833 gpiochip_lock_as_irq EXPORT_SYMBOL_GPL vmlinux 0xb9b8c373 rio_mport_class EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d174af inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xb9d75491 pm_wakeup_dev_event EXPORT_SYMBOL_GPL vmlinux 0xb9dbea9e pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xb9e67b72 dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger +EXPORT_SYMBOL_GPL vmlinux 0xb9f09eb0 crypto_aead_setauthsize EXPORT_SYMBOL_GPL vmlinux 0xba032f94 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0xba17efcd sdev_evt_send_simple EXPORT_SYMBOL_GPL vmlinux 0xba18a589 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xba1a8669 gpiochip_irq_domain_activate EXPORT_SYMBOL_GPL vmlinux 0xba1bf632 irq_domain_add_legacy EXPORT_SYMBOL_GPL vmlinux 0xba1c35ee snd_devm_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba2ef42a ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0xba3ba2f3 mtd_table_mutex -EXPORT_SYMBOL_GPL vmlinux 0xba4a7244 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xba427619 sdhci_alloc_host EXPORT_SYMBOL_GPL vmlinux 0xba5e49fd nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0xba668b3a __blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0xba712a64 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0xba793656 __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0xba7c1552 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xbaa1552b wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xba91f4f2 devlink_register EXPORT_SYMBOL_GPL vmlinux 0xbab63e2c reset_simple_ops EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents EXPORT_SYMBOL_GPL vmlinux 0xbac5646d sbitmap_finish_wait EXPORT_SYMBOL_GPL vmlinux 0xbace3461 usb_ep_disable +EXPORT_SYMBOL_GPL vmlinux 0xbad1ca11 sdhci_pltfm_clk_get_max_clock EXPORT_SYMBOL_GPL vmlinux 0xbade34af snd_soc_bytes_info +EXPORT_SYMBOL_GPL vmlinux 0xbae5a2c9 strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0xbae7a1e2 pci_ecam_map_bus EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbb059ba9 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xbaf76c8e gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xbb08ac8e scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb1627f9 mmc_regulator_enable_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xbb177943 snd_soc_dai_set_clkdiv EXPORT_SYMBOL_GPL vmlinux 0xbb224dd3 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xbb23d582 snd_soc_of_get_dai_name EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0xbb3c27e2 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xbb44295e gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xbb47bfbf wm8350_block_write EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbb5e0552 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0xbb636359 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xbb63c73e cpts_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb4d5974 bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback -EXPORT_SYMBOL_GPL vmlinux 0xbb65c946 crypto_aead_setkey EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb71a51b pwm_get_chip_data EXPORT_SYMBOL_GPL vmlinux 0xbb74449e pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xbb770d74 inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0xbb83287d rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xbb833e20 inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0xbb911c60 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xbb95e943 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0xbb984810 mtd_unpoint -EXPORT_SYMBOL_GPL vmlinux 0xbbaff67e crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xbb9d0914 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL vmlinux 0xbba1f72d fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put EXPORT_SYMBOL_GPL vmlinux 0xbbcbcca5 __cci_control_port_by_device -EXPORT_SYMBOL_GPL vmlinux 0xbbce3766 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xbbe89b7b __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xbbd30b86 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xbbda7bbf crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xbbdc74ea fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0xbbea2671 pci_try_reset_function EXPORT_SYMBOL_GPL vmlinux 0xbbf38272 lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0xbbf41920 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0xbbf4c2da gpiochip_generic_free EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features EXPORT_SYMBOL_GPL vmlinux 0xbbf85804 user_describe EXPORT_SYMBOL_GPL vmlinux 0xbbf95e29 sbitmap_del_wait_queue EXPORT_SYMBOL_GPL vmlinux 0xbbff410f usb_enable_ltm EXPORT_SYMBOL_GPL vmlinux 0xbc099231 __class_register EXPORT_SYMBOL_GPL vmlinux 0xbc0abc98 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xbc103bff vfs_submount EXPORT_SYMBOL_GPL vmlinux 0xbc14dfba dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0xbc190fe0 __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0xbc291437 serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xbc2b4504 snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xbc2c7890 mmc_switch EXPORT_SYMBOL_GPL vmlinux 0xbc2fdbac cci_ace_get_port +EXPORT_SYMBOL_GPL vmlinux 0xbc32368d bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xbc3d4cb8 ata_sas_port_start EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc4b32c4 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL vmlinux 0xbc481560 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbc51e4fa crypto_alg_mod_lookup EXPORT_SYMBOL_GPL vmlinux 0xbc54781a devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbc5a05be devm_snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0xbc597fdf bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0xbc5ac948 relay_buf_full EXPORT_SYMBOL_GPL vmlinux 0xbc5d0f93 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0xbc5de4fe ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xbc641541 task_user_regset_view EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7154f0 hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0xbc76ec96 pinctrl_select_state EXPORT_SYMBOL_GPL vmlinux 0xbc79140f devres_find EXPORT_SYMBOL_GPL vmlinux 0xbc8383d6 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xbc8d0483 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xbc989e83 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xbc999ca1 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0xbc84062a devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc928651 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xbc980f98 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbca3cedf follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xbcb2e3e5 i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0xbcc09aaf led_sysfs_disable EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd3d4c1 shmem_truncate_range EXPORT_SYMBOL_GPL vmlinux 0xbcd8ba9d od_register_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0xbcdbbf1a sysfs_chmod_file EXPORT_SYMBOL_GPL vmlinux 0xbcdc2073 usb_of_get_companion_dev EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcefab8e crypto_unregister_ahashes EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf287c4 crypto_unregister_ahash EXPORT_SYMBOL_GPL vmlinux 0xbcf59a6e serdev_device_wait_until_sent EXPORT_SYMBOL_GPL vmlinux 0xbd0c26e3 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0xbd107cb6 of_i2c_setup_smbus_alert EXPORT_SYMBOL_GPL vmlinux 0xbd149ffc generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0xbd182123 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbd193a1b devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xbd1c90b8 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xbd2385fb __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xbd29e886 of_device_request_module -EXPORT_SYMBOL_GPL vmlinux 0xbd2bf0f5 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xbd386d1a eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5f6fd5 phy_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xbd71b98f __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0xbd958b72 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xbd98332c snd_soc_of_get_dai_link_codecs EXPORT_SYMBOL_GPL vmlinux 0xbd9e9c9c mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL vmlinux 0xbd9eaa52 ahci_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0xbd9f9463 pm_generic_freeze_noirq EXPORT_SYMBOL_GPL vmlinux 0xbda4a078 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0xbda867a3 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xbdabd94c ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0xbdadd106 sysfs_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0xbdaf6ede tty_port_tty_hangup EXPORT_SYMBOL_GPL vmlinux 0xbdb2a516 irq_domain_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0xbdb5e18f nand_gpio_waitrdy EXPORT_SYMBOL_GPL vmlinux 0xbdb6a5b9 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xbdb83c81 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL vmlinux 0xbdcae6ad __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xbdccdb1e gpiochip_irq_map EXPORT_SYMBOL_GPL vmlinux 0xbddb354d blk_queue_set_zoned EXPORT_SYMBOL_GPL vmlinux 0xbde48379 of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbdf3ccfc sdio_align_size EXPORT_SYMBOL_GPL vmlinux 0xbdf4b96f percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xbdf98054 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xbdfcfb55 __traceiter_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xbe19ff9e device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xbe0fbbfa l3mdev_update_flow EXPORT_SYMBOL_GPL vmlinux 0xbe316df0 umd_unload_blob EXPORT_SYMBOL_GPL vmlinux 0xbe378516 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0xbe3cf728 crypto_stats_decompress EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus EXPORT_SYMBOL_GPL vmlinux 0xbe84c5c0 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xbe86dd32 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0xbe94c50a devm_snd_soc_register_card EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbe9c98fb rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb1b249 snd_soc_dapm_free EXPORT_SYMBOL_GPL vmlinux 0xbeb7ec02 dev_pm_opp_get_max_clock_latency EXPORT_SYMBOL_GPL vmlinux 0xbeb7f2c5 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xbec03244 __sock_recv_ts_and_drops EXPORT_SYMBOL_GPL vmlinux 0xbec5473b usb_ep_fifo_status -EXPORT_SYMBOL_GPL vmlinux 0xbef37b8e devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xbecc6e29 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xbef7097c gpiochip_find EXPORT_SYMBOL_GPL vmlinux 0xbeff82ee mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xbf0131dc ping_get_port EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier EXPORT_SYMBOL_GPL vmlinux 0xbf15d1cd dma_free_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xbf1adcd4 __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0xbf2402c1 ahci_start_fis_rx EXPORT_SYMBOL_GPL vmlinux 0xbf397cb3 debugfs_create_devm_seqfile EXPORT_SYMBOL_GPL vmlinux 0xbf4a5860 blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0xbf51d780 clk_hw_get_num_parents EXPORT_SYMBOL_GPL vmlinux 0xbf554641 __tracepoint_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0xbf5a4f42 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0xbf5e4f64 devlink_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbf63e0b8 apply_to_existing_page_range EXPORT_SYMBOL_GPL vmlinux 0xbf67f88c attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xbf8d546b dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0xbf8e49c3 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xbf8e6a0a spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xbf900304 sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0xbf9a3a37 soc_device_match EXPORT_SYMBOL_GPL vmlinux 0xbfa99a5a simple_attr_open EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports EXPORT_SYMBOL_GPL vmlinux 0xbfbef90b phy_reset -EXPORT_SYMBOL_GPL vmlinux 0xbfc243fb ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xbfcffa29 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xbfe10d04 inet6_csk_update_pmtu 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 0xbfea4436 devm_devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 -EXPORT_SYMBOL_GPL vmlinux 0xc0048b13 gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0xc0057a04 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xc007e0ed sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0xc018e1a0 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xc02a4e16 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xc02faf62 cpufreq_freq_transition_begin EXPORT_SYMBOL_GPL vmlinux 0xc02fe1c3 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xc03b9960 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xc03a58d1 device_wakeup_disable EXPORT_SYMBOL_GPL vmlinux 0xc046d8c0 usb_gadget_deactivate EXPORT_SYMBOL_GPL vmlinux 0xc04e20c3 percpu_ref_switch_to_atomic_sync -EXPORT_SYMBOL_GPL vmlinux 0xc051e824 sdhci_request EXPORT_SYMBOL_GPL vmlinux 0xc0583e20 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xc0594296 ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq EXPORT_SYMBOL_GPL vmlinux 0xc06b77b3 __cci_control_port_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc0790dfb regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0xc07cc758 md_stop EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled EXPORT_SYMBOL_GPL vmlinux 0xc08edcd6 ata_bmdma_qc_prep @@ -23634,137 +23603,157 @@ EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited EXPORT_SYMBOL_GPL vmlinux 0xc0c56566 platform_bus EXPORT_SYMBOL_GPL vmlinux 0xc0d602ee __device_reset EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0dee814 clk_register EXPORT_SYMBOL_GPL vmlinux 0xc0e48793 scmi_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0ffd065 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xc1012f49 aead_exit_geniv EXPORT_SYMBOL_GPL vmlinux 0xc10655da xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xc10865dd inet6_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc11675b8 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xc127cbb7 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xc13497bb wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0xc14469e5 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xc148452b __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xc14e6f1e mtk_pinconf_bias_get EXPORT_SYMBOL_GPL vmlinux 0xc151936c tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xc1609c7d ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0xc161a7d8 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xc170cef5 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xc162ac57 lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0xc171a95b phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xc17351d6 device_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc17b7027 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL vmlinux 0xc17993a7 gpiod_get_value EXPORT_SYMBOL_GPL vmlinux 0xc1872da1 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xc191cad0 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xc1980ff6 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xc1a39a5c fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0xc1b66dd7 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xc1c71b76 trace_output_call EXPORT_SYMBOL_GPL vmlinux 0xc1ca6ef2 mtk_eint_find_irq EXPORT_SYMBOL_GPL vmlinux 0xc1d536e3 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0xc1d9de6f security_path_chown EXPORT_SYMBOL_GPL vmlinux 0xc1e74c1f snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xc1e80597 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc1eb3b4f regulator_set_load EXPORT_SYMBOL_GPL vmlinux 0xc1f9977a unregister_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0xc212dbd1 __tracepoint_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc21f097e perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0xc222ead3 xas_find_marked EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22dd053 skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0xc234fde0 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xc24bc91c sdhci_remove_host EXPORT_SYMBOL_GPL vmlinux 0xc24bd17a mtk_pinconf_drive_set_raw EXPORT_SYMBOL_GPL vmlinux 0xc254db4a usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc266477c snd_soc_jack_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock EXPORT_SYMBOL_GPL vmlinux 0xc2889a78 tty_release_struct EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify EXPORT_SYMBOL_GPL vmlinux 0xc28d03ef ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xc29a5b9e crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xc29badfa clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xc2a98c88 transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0xc2b4f8f9 spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc2bed6d5 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0xc2d60272 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xc2cfa727 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xc2d55962 work_on_cpu_key EXPORT_SYMBOL_GPL vmlinux 0xc2db7e18 xas_find -EXPORT_SYMBOL_GPL vmlinux 0xc2e5953a perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc2e5adf7 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xc2e1418e nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0xc2f42e09 iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xc30613f1 usb_del_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0xc318da62 sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0xc32c91a9 __traceiter_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0xc331a86e component_del +EXPORT_SYMBOL_GPL vmlinux 0xc338579a netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xc33ef39a sdhci_request_atomic EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3529f09 perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0xc36ba17f fsstack_copy_inode_size EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk EXPORT_SYMBOL_GPL vmlinux 0xc379784a usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xc37ecbcd inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3852f66 regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0xc38753ff usb_pipe_type_check EXPORT_SYMBOL_GPL vmlinux 0xc395b5e6 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc39a94bf dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0xc3abb39f ahci_sdev_attrs EXPORT_SYMBOL_GPL vmlinux 0xc3b5249d usb_store_new_id EXPORT_SYMBOL_GPL vmlinux 0xc3bbdc46 bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0xc3bd8fcf hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc3bdac21 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xc3c19db5 inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3c4db12 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0xc3cb503d lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0xc3d9584b snd_soc_runtime_action +EXPORT_SYMBOL_GPL vmlinux 0xc3c666b7 crypto_stats_kpp_set_secret EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc3deb6cd snd_soc_dai_set_sysclk EXPORT_SYMBOL_GPL vmlinux 0xc3e13cff ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xc3e93e7c hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xc3e746a8 pwm_apply_state EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3f4417f scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xc3f84faa cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0xc3fef461 led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0xc40099df generic_device_group EXPORT_SYMBOL_GPL vmlinux 0xc4031dcd snd_soc_dapm_put_volsw EXPORT_SYMBOL_GPL vmlinux 0xc404d443 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0xc41f0853 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xc40c064d do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0xc4220302 snd_soc_of_get_dai_name EXPORT_SYMBOL_GPL vmlinux 0xc4250025 usb_phy_gen_create_phy EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4324e09 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xc43a5cdd snd_soc_of_parse_aux_devs EXPORT_SYMBOL_GPL vmlinux 0xc43c1e48 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0xc43c20ec trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc44b7062 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xc4516929 gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc457e871 ata_scsi_unlock_native_capacity EXPORT_SYMBOL_GPL vmlinux 0xc45b5e7b edac_mc_del_mc EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc47053b3 regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc471d34a devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0xc474ab15 sdhci_pltfm_init EXPORT_SYMBOL_GPL vmlinux 0xc47c747e tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0xc47ff9ee ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string EXPORT_SYMBOL_GPL vmlinux 0xc4937fde ti_clk_is_in_standby -EXPORT_SYMBOL_GPL vmlinux 0xc4a710d3 xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0xc4aaedd8 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xc4b71004 sdhci_end_tuning +EXPORT_SYMBOL_GPL vmlinux 0xc4c043aa mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0xc4c3338e dma_resv_get_fences EXPORT_SYMBOL_GPL vmlinux 0xc4cf2420 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0xc4d849d7 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xc4e2cae1 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xc4d92a3d snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xc4dff6b6 raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset EXPORT_SYMBOL_GPL vmlinux 0xc4f69986 mtk_pinconf_drive_get_raw EXPORT_SYMBOL_GPL vmlinux 0xc501a1d9 anon_inode_getfd_secure EXPORT_SYMBOL_GPL vmlinux 0xc50aaf8f sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xc5120218 inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0xc518f8bd usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xc51aaa87 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xc51ce520 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xc518fe25 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xc5199fa3 perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0xc53410c0 usb_unpoison_urb EXPORT_SYMBOL_GPL vmlinux 0xc53b00a9 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL vmlinux 0xc5436077 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xc547940b security_path_symlink EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive EXPORT_SYMBOL_GPL vmlinux 0xc561fadc bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xc56219fa rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name EXPORT_SYMBOL_GPL vmlinux 0xc56ff80b snd_soc_get_volsw EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5768717 device_match_devt EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array -EXPORT_SYMBOL_GPL vmlinux 0xc57c2acd put_device -EXPORT_SYMBOL_GPL vmlinux 0xc5849de6 __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc58b7cbe crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xc5994eb9 __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0xc5c7b3da debugfs_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0xc5d17001 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xc5dd94de snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL vmlinux 0xc5e509fe clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0xc5f9e983 platform_device_add_resources EXPORT_SYMBOL_GPL vmlinux 0xc6056f0d irq_of_parse_and_map EXPORT_SYMBOL_GPL vmlinux 0xc607eb21 subsys_system_register EXPORT_SYMBOL_GPL vmlinux 0xc60f4475 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0xc612997c __sock_recv_ts_and_drops EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc61b8fd9 locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0xc61be7bd dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xc61cffa5 stmpe_reg_write EXPORT_SYMBOL_GPL vmlinux 0xc6314893 mbox_flush EXPORT_SYMBOL_GPL vmlinux 0xc645fcf3 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xc667e9d4 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xc6693d16 ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata EXPORT_SYMBOL_GPL vmlinux 0xc66f938b securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xc6737483 ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0xc674aa91 pci_create_root_bus EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable EXPORT_SYMBOL_GPL vmlinux 0xc681e299 paste_selection @@ -23772,43 +23761,52 @@ EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xc6b51113 ata_bmdma_dumb_qc_prep EXPORT_SYMBOL_GPL vmlinux 0xc6bd9e40 pci_ecam_free -EXPORT_SYMBOL_GPL vmlinux 0xc6ca4b1b ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xc6d931c8 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xc6c00eff get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xc6d14bbd __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xc6d1adf5 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xc6e4a211 dev_pm_qos_update_user_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within EXPORT_SYMBOL_GPL vmlinux 0xc6e667f1 thread_notify_head +EXPORT_SYMBOL_GPL vmlinux 0xc6eea577 ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0xc6eec8f5 clk_divider_ops EXPORT_SYMBOL_GPL vmlinux 0xc700bfa5 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xc70a6192 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xc703f615 of_clk_src_onecell_get EXPORT_SYMBOL_GPL vmlinux 0xc711d632 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xc71a5650 crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field EXPORT_SYMBOL_GPL vmlinux 0xc71f6fdb alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0xc72ac3f1 sdhci_dumpregs EXPORT_SYMBOL_GPL vmlinux 0xc72afaec of_dma_xlate_by_chan_id EXPORT_SYMBOL_GPL vmlinux 0xc72e9045 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0xc73a8f89 of_clk_hw_onecell_get EXPORT_SYMBOL_GPL vmlinux 0xc74c4965 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0xc75459a5 rtc_initialize_alarm EXPORT_SYMBOL_GPL vmlinux 0xc75b7eee rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0xc75f022d debugfs_create_file_unsafe EXPORT_SYMBOL_GPL vmlinux 0xc76a110b md_stop_writes EXPORT_SYMBOL_GPL vmlinux 0xc76ae625 uart_handle_dcd_change EXPORT_SYMBOL_GPL vmlinux 0xc76df6c5 musb_interrupt EXPORT_SYMBOL_GPL vmlinux 0xc7715c7d del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0xc77ec158 __ndisc_fill_addr_option EXPORT_SYMBOL_GPL vmlinux 0xc78052c7 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xc78b8bf3 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xc786f65c imx_pcm_dma_init +EXPORT_SYMBOL_GPL vmlinux 0xc7889db6 fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xc79144f5 trace_seq_putmem_hex EXPORT_SYMBOL_GPL vmlinux 0xc791b700 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0xc792d2cf sdhci_reset EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7a9bde9 skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xc7ab3313 driver_attach EXPORT_SYMBOL_GPL vmlinux 0xc7bb71a7 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xc7c24fbd crypto_spawn_tfm2 EXPORT_SYMBOL_GPL vmlinux 0xc7c28cf9 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xc7d80426 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xc7df2beb regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer EXPORT_SYMBOL_GPL vmlinux 0xc7e78b2e vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0xc7e967d2 device_move +EXPORT_SYMBOL_GPL vmlinux 0xc7eb9111 device_destroy EXPORT_SYMBOL_GPL vmlinux 0xc7f22bc0 badblocks_init EXPORT_SYMBOL_GPL vmlinux 0xc7f50124 arm_iommu_attach_device EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7fc9488 xfrm_audit_state_replay_overflow EXPORT_SYMBOL_GPL vmlinux 0xc80f3115 pm_runtime_autosuspend_expiration EXPORT_SYMBOL_GPL vmlinux 0xc8124171 pci_disable_pasid EXPORT_SYMBOL_GPL vmlinux 0xc814431b serdev_controller_add @@ -23816,201 +23814,194 @@ EXPORT_SYMBOL_GPL vmlinux 0xc825de20 spi_mem_dirmap_write EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size EXPORT_SYMBOL_GPL vmlinux 0xc8275e7e regulator_bulk_set_supply_names EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xc82c436e devlink_region_snapshot_id_put EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc82f3278 find_get_pid EXPORT_SYMBOL_GPL vmlinux 0xc835e1a3 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xc83d469c snd_soc_lookup_component +EXPORT_SYMBOL_GPL vmlinux 0xc844bd7c __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0xc848d8dc usb_ep_queue EXPORT_SYMBOL_GPL vmlinux 0xc857a0be of_genpd_parse_idle_states EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc85aac9a mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0xc86f9e94 __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0xc874c2ce dw_pcie_ep_init_complete EXPORT_SYMBOL_GPL vmlinux 0xc8789b73 unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xc87b5daf ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xc88357bb sdhci_set_ios +EXPORT_SYMBOL_GPL vmlinux 0xc886c801 cpufreq_enable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0xc88c4d93 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xc8a1f749 device_change_owner EXPORT_SYMBOL_GPL vmlinux 0xc8b284b1 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0xc8ba0c03 wm8350_gpio_config EXPORT_SYMBOL_GPL vmlinux 0xc8ba7b76 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xc8c5c7ec spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0xc8d957df spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xc8cea2de __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable EXPORT_SYMBOL_GPL vmlinux 0xc8e24cc5 cpuidle_get_cpu_driver EXPORT_SYMBOL_GPL vmlinux 0xc8e28f36 dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc8e3131f icc_enable -EXPORT_SYMBOL_GPL vmlinux 0xc8e3ace9 dev_pm_qos_expose_latency_limit EXPORT_SYMBOL_GPL vmlinux 0xc8e967d5 dev_pm_put_subsys_data EXPORT_SYMBOL_GPL vmlinux 0xc8eb2989 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xc90231cb sched_show_task EXPORT_SYMBOL_GPL vmlinux 0xc9172aff pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xc918e6cc ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xc929f057 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xc9190c52 ata_sas_sync_probe EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc93f7c76 ehci_reset EXPORT_SYMBOL_GPL vmlinux 0xc943b6e8 da903x_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xc946468f devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xc948c9c5 __traceiter_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0xc949483d cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xc9501d38 __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist EXPORT_SYMBOL_GPL vmlinux 0xc96bd18f ahci_platform_enable_regulators EXPORT_SYMBOL_GPL vmlinux 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc981ab90 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0xc9825415 percpu_ref_is_zero EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc9919596 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xc992d80e crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc987fae2 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc99f9908 crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xc9a228ce property_entries_free EXPORT_SYMBOL_GPL vmlinux 0xc9aa1203 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xc9c2c0a5 sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xc9c327c0 __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0xc9e0c780 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xc9e20d2d check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0xc9e8a2e0 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xc9af03dd of_clk_del_provider EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu EXPORT_SYMBOL_GPL vmlinux 0xc9f0ed80 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xc9fa5625 sdhci_set_clock EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca017f66 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xca0d6383 sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0xca24ef9d get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0xca34b998 trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0xca3d0de0 edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0xca4077cb dapm_pinctrl_event EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xca67fef7 snd_soc_dai_compr_set_metadata EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop EXPORT_SYMBOL_GPL vmlinux 0xca827e81 dev_coredumpm EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcaa3bbe4 strp_init +EXPORT_SYMBOL_GPL vmlinux 0xcab48605 zap_vma_ptes EXPORT_SYMBOL_GPL vmlinux 0xcaba7e34 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xcabd37ca udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock EXPORT_SYMBOL_GPL vmlinux 0xcabe1206 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcac1b2a3 perf_get_aux EXPORT_SYMBOL_GPL vmlinux 0xcacbf893 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xcad222cd scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xcad72554 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xcadf5b32 xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0xcae01961 snd_compr_stop_error EXPORT_SYMBOL_GPL vmlinux 0xcaecc540 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xcaee6a2c fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0xcafe49d6 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xcb0e3a8f gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data EXPORT_SYMBOL_GPL vmlinux 0xcb17a0bb compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xcb1e14c3 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xcb26458e rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xcb190b3f seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xcb2ee3e0 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL vmlinux 0xcb302ec2 snd_soc_component_set_jack EXPORT_SYMBOL_GPL vmlinux 0xcb332c87 sm501_misc_control -EXPORT_SYMBOL_GPL vmlinux 0xcb34a9e1 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0xcb4e736b tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xcb4ff52c cpts_create EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj EXPORT_SYMBOL_GPL vmlinux 0xcb59a0d5 fsnotify_init_mark EXPORT_SYMBOL_GPL vmlinux 0xcb66eaee handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xcb719707 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcb73d2ea nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcb7ab93b find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xcb71ece4 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcba93caf rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xcbb4acb6 devlink_port_register EXPORT_SYMBOL_GPL vmlinux 0xcbb60617 iommu_map_atomic EXPORT_SYMBOL_GPL vmlinux 0xcbb831d8 snd_soc_component_compr_free EXPORT_SYMBOL_GPL vmlinux 0xcbbf2485 irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xcbc5f591 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xcbc4eddd __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xcbc8e31d devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xcbce6c2c __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xcbdf033d sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages EXPORT_SYMBOL_GPL vmlinux 0xcbedc032 usb_add_gadget +EXPORT_SYMBOL_GPL vmlinux 0xcbf02d7b wm8350_reg_read EXPORT_SYMBOL_GPL vmlinux 0xcbf3617f rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xcbfbd155 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xcc160ab9 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xcc18347c regmap_async_complete EXPORT_SYMBOL_GPL vmlinux 0xcc1f8466 md_rdev_clear EXPORT_SYMBOL_GPL vmlinux 0xcc2588b7 iomap_file_buffered_write EXPORT_SYMBOL_GPL vmlinux 0xcc263bd0 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xcc2ac7b6 wakeup_source_destroy EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap EXPORT_SYMBOL_GPL vmlinux 0xcc312197 clk_mux_ops EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc3b35d7 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0xcc3cb7e6 gpiochip_enable_irq EXPORT_SYMBOL_GPL vmlinux 0xcc40d99b __usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0xcc421600 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcc46d471 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xcc5cf01f ahci_init_controller EXPORT_SYMBOL_GPL vmlinux 0xcc5e90b7 of_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0xcc5f7732 of_gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0xcc693832 pm_clk_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0xcc7b67db pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xcc89c6d9 blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0xcc95ef9c misc_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xcc9ad307 of_thermal_is_trip_valid EXPORT_SYMBOL_GPL vmlinux 0xccad4ed1 usb_deregister_dev EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd61eae sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string EXPORT_SYMBOL_GPL vmlinux 0xccefb4dd pci_ioremap_wc_bar EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xcd03f03a root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcd045769 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xcd0bcd9d usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xcd1394e1 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xcd1c5b7d do_truncate EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd2b1d65 find_vpid EXPORT_SYMBOL_GPL vmlinux 0xcd325217 usb_gadget_unmap_request EXPORT_SYMBOL_GPL vmlinux 0xcd4badf9 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xcd4f08c3 phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0xcd54a5d2 handle_fasteoi_ack_irq -EXPORT_SYMBOL_GPL vmlinux 0xcd54b7cb regmap_fields_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xcd686f6d power_supply_put EXPORT_SYMBOL_GPL vmlinux 0xcd69946a tty_ldisc_ref EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd7b2098 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0xcd7e255c spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xcd803cd8 gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0xcd8956a2 irq_gc_ack_set_bit 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 0xcdb22c71 snd_soc_set_runtime_hwparams EXPORT_SYMBOL_GPL vmlinux 0xcdb256b4 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xcdb56916 addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers EXPORT_SYMBOL_GPL vmlinux 0xcdb727b7 fscrypt_symlink_getattr EXPORT_SYMBOL_GPL vmlinux 0xcdba9f26 relay_switch_subbuf EXPORT_SYMBOL_GPL vmlinux 0xcdbaa532 iommu_set_pgtable_quirks EXPORT_SYMBOL_GPL vmlinux 0xcdbd388d phy_restore_page EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd32ba7 iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0xcdf7ad13 led_init_core EXPORT_SYMBOL_GPL vmlinux 0xce0d1d7d devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xce13be8f unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xce28bab8 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xce2de12c task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xce597b53 usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0xce5c3e25 sdhci_setup_host EXPORT_SYMBOL_GPL vmlinux 0xce60bfbf edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xce6b2041 xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching EXPORT_SYMBOL_GPL vmlinux 0xce862da4 mtd_block_isreserved -EXPORT_SYMBOL_GPL vmlinux 0xce96a215 gpiod_set_debounce EXPORT_SYMBOL_GPL vmlinux 0xce96f04a pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0xcec857d1 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xcea80ae5 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xcec2486d icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0xcecee6b9 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xcee03c8e skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0xced9fb65 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xcedf3dad get_device EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console EXPORT_SYMBOL_GPL vmlinux 0xcee64d23 usb_reset_endpoint EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply EXPORT_SYMBOL_GPL vmlinux 0xceea5709 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0xceed0fda imx_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0xceeeff02 iomap_finish_ioends EXPORT_SYMBOL_GPL vmlinux 0xcef4d5b4 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xcef56371 sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0xcef5c8ee sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xcef85cbf clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xcef947ce device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xcf22bdbe gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xcf13bd26 devfreq_get_devfreq_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xcf2d17a9 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xcf2cfbd4 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xcf2f46b7 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xcf3baaa2 crypto_shash_update EXPORT_SYMBOL_GPL vmlinux 0xcf4c0d9e ahci_shost_attrs -EXPORT_SYMBOL_GPL vmlinux 0xcf560273 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xcf66c155 cpufreq_register_driver EXPORT_SYMBOL_GPL vmlinux 0xcf706fe4 vp_modern_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0xcf73972f fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xcf75459a xdp_convert_zc_to_xdp_frame EXPORT_SYMBOL_GPL vmlinux 0xcf7f66f9 imx_dev_clk_hw_pll14xx -EXPORT_SYMBOL_GPL vmlinux 0xcf84012b sched_set_normal EXPORT_SYMBOL_GPL vmlinux 0xcf8962cf dw_pcie_setup_rc EXPORT_SYMBOL_GPL vmlinux 0xcf90d16a devres_close_group EXPORT_SYMBOL_GPL vmlinux 0xcfa068d6 power_supply_powers EXPORT_SYMBOL_GPL vmlinux 0xcfa15399 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0xcfa2c0db lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xcfac8d63 setfl +EXPORT_SYMBOL_GPL vmlinux 0xcfc22680 spi_get_next_queued_message EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc5877e usb_gadget_wakeup EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0xcfcbe917 devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0xcfd3f696 apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0xcff9e223 mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0xd0086ac9 __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xd01ced20 tty_buffer_request_room EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range EXPORT_SYMBOL_GPL vmlinux 0xd03ffa45 of_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd0552eac strp_process EXPORT_SYMBOL_GPL vmlinux 0xd05599f4 usb_gadget_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xd0568993 pci_load_saved_state EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister @@ -24018,97 +24009,95 @@ EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0xd0687c50 dma_get_slave_channel EXPORT_SYMBOL_GPL vmlinux 0xd07a03ce dw_pcie_host_deinit EXPORT_SYMBOL_GPL vmlinux 0xd08a0339 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xd093c866 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xd08d8b52 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xd09cba3e regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd0a3e13b unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart EXPORT_SYMBOL_GPL vmlinux 0xd0d71ada unregister_virtio_device EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax EXPORT_SYMBOL_GPL vmlinux 0xd0e640fb virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xd0e7b41b skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0xd0ec5e7d ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0xd0f11c78 __traceiter_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xd0fb9c41 smp_call_function_single_async EXPORT_SYMBOL_GPL vmlinux 0xd111715a pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0xd120048d pwm_free EXPORT_SYMBOL_GPL vmlinux 0xd12159a7 stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0xd124760b blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xd123f672 pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0xd1326390 __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xd143c956 security_inode_permission EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear EXPORT_SYMBOL_GPL vmlinux 0xd1483f71 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0xd14aac1e device_create EXPORT_SYMBOL_GPL vmlinux 0xd1598a53 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0xd1622690 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xd171929d sdhci_get_property +EXPORT_SYMBOL_GPL vmlinux 0xd173b1ad skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features EXPORT_SYMBOL_GPL vmlinux 0xd1857f65 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xd18d05ae bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xd1a6dfca acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1ba30b7 pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0xd1c2e26c __tracepoint_arm_event EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on EXPORT_SYMBOL_GPL vmlinux 0xd1cbd5c5 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xd1cc4da8 spi_sync_locked EXPORT_SYMBOL_GPL vmlinux 0xd1cfb4e6 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0xd1e270b2 crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0xd1e28cd1 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0xd1e7bc81 crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xd1ead7b6 xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20e2ba4 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xd212e788 regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xd21aa520 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xd21aaa92 phy_led_triggers_unregister EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain EXPORT_SYMBOL_GPL vmlinux 0xd21db4e5 pci_epc_get EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xd2288318 crypto_comp_decompress EXPORT_SYMBOL_GPL vmlinux 0xd23c6155 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xd24c018f cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xd2581e3a sdhci_pltfm_init EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd26bedc6 sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd270ccbf netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0xd267e6d8 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0xd270e977 pci_bridge_emul_conf_write EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xd2741cb6 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0xd27bb719 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0xd28c69f1 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xd290f404 __synth_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0xd297a790 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xd29a667c devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2b7790b device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd2b23451 ata_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0xd2bb90d4 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd2bf9e38 dequeue_signal EXPORT_SYMBOL_GPL vmlinux 0xd2c3b19d virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xd2c5b6dc crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xd2d45581 snd_soc_component_initialize EXPORT_SYMBOL_GPL vmlinux 0xd2d7a675 scmi_protocol_register -EXPORT_SYMBOL_GPL vmlinux 0xd2d92fe1 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xd2f02347 bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0xd3026eda gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xd2e5eca1 ata_sas_port_alloc EXPORT_SYMBOL_GPL vmlinux 0xd3046552 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xd30502e9 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xd3076b9b device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd3054b32 regmap_fields_read EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xd321f82e i2c_add_numbered_adapter EXPORT_SYMBOL_GPL vmlinux 0xd32988a4 of_nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0xd32f7b9e driver_find_device EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd37be1bb snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL vmlinux 0xd3841680 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd346a325 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xd356c939 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xd35782dc inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xd38d4d2b stmpe_disable EXPORT_SYMBOL_GPL vmlinux 0xd39071e6 region_intersects EXPORT_SYMBOL_GPL vmlinux 0xd391a0f0 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0xd3925836 ahci_stop_engine EXPORT_SYMBOL_GPL vmlinux 0xd394a960 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xd39bca5d fwnode_graph_get_remote_port_parent EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3b9c908 devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0xd3bf7e28 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xd3c2bc89 snd_soc_card_add_dai_link EXPORT_SYMBOL_GPL vmlinux 0xd3c672b8 nand_subop_get_data_len +EXPORT_SYMBOL_GPL vmlinux 0xd3de67f0 proc_create_net_data EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0xd3f7d30b regulator_list_voltage EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4070dbb gpiochip_line_is_persistent EXPORT_SYMBOL_GPL vmlinux 0xd41144bf efivar_entry_set_get_size EXPORT_SYMBOL_GPL vmlinux 0xd411a174 meson_a1_parse_dt_extra EXPORT_SYMBOL_GPL vmlinux 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL vmlinux 0xd42e5a1e device_del EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd435e14d inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0xd437b066 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xd4388a3a seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0xd441eb32 devm_regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd45914d6 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xd4603f77 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0xd4614cf2 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0xd47ac869 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xd45d49f0 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xd477b1c9 xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0xd4801ce5 devm_pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0xd4854903 devres_for_each_res EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume @@ -24116,28 +24105,30 @@ EXPORT_SYMBOL_GPL vmlinux 0xd49418d3 dma_wait_for_async_tx EXPORT_SYMBOL_GPL vmlinux 0xd4957f4a mtd_lock EXPORT_SYMBOL_GPL vmlinux 0xd499c42e percpu_ref_kill_and_confirm EXPORT_SYMBOL_GPL vmlinux 0xd49ab6fa usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xd4a6b419 pwm_get EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4c03c33 sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xd4d54361 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xd4e3207b ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4e8d977 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xd4ec9964 crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0xd4f9e03d genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xd5028882 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xd51d421c snd_soc_dai_compr_pointer EXPORT_SYMBOL_GPL vmlinux 0xd51d83f0 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xd520d2b4 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xd528cc82 regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd5338167 xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0xd5376fc1 kthread_flush_worker EXPORT_SYMBOL_GPL vmlinux 0xd53eeb53 bd_unlink_disk_holder EXPORT_SYMBOL_GPL vmlinux 0xd53f72d1 dev_pm_opp_find_freq_floor EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role EXPORT_SYMBOL_GPL vmlinux 0xd54c080a cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xd54da24b gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd5518885 ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xd558b68f snd_soc_link_compr_shutdown EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd56d7797 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xd568d3dc fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0xd56ffd44 scmi_protocol_unregister EXPORT_SYMBOL_GPL vmlinux 0xd57271a6 dev_attr_sw_activity EXPORT_SYMBOL_GPL vmlinux 0xd577badf pm_genpd_remove_subdomain @@ -24145,92 +24136,98 @@ EXPORT_SYMBOL_GPL vmlinux 0xd57f81ed fuse_send_init EXPORT_SYMBOL_GPL vmlinux 0xd58474b1 serial8250_rpm_get_tx EXPORT_SYMBOL_GPL vmlinux 0xd58a8f84 __list_lru_init EXPORT_SYMBOL_GPL vmlinux 0xd5958a26 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xd597a163 fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause EXPORT_SYMBOL_GPL vmlinux 0xd59d1665 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xd59ef498 nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0xd5ac24e5 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xd5db5558 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xd5e1d4ac wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xd5b6441f bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xd5d3cf11 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xd5d9b4c5 fwnode_get_phy_node EXPORT_SYMBOL_GPL vmlinux 0xd5e9d9b8 usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL vmlinux 0xd5ffd574 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xd60ad19d phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xd610a391 vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0xd6164816 blkg_rwstat_exit EXPORT_SYMBOL_GPL vmlinux 0xd62114a9 iommu_attach_group EXPORT_SYMBOL_GPL vmlinux 0xd6281851 snd_card_disconnect_sync EXPORT_SYMBOL_GPL vmlinux 0xd6353583 snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xd6400b45 sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0xd6431c10 rio_add_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0xd64c3d07 snd_fasync_helper EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd65089bd css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0xd656838d spi_sync EXPORT_SYMBOL_GPL vmlinux 0xd66ff727 snd_soc_info_volsw_range EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6773076 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0xd68cef29 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xd68f8afc tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0xd6983f6c clk_register_mux_table EXPORT_SYMBOL_GPL vmlinux 0xd69de0e7 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd6ac7f94 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xd6bc5a78 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xd6bd9e48 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd6cef141 raw_abort EXPORT_SYMBOL_GPL vmlinux 0xd6d5ca7e power_supply_register EXPORT_SYMBOL_GPL vmlinux 0xd6d995b2 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xd6df460d wm8350_block_read EXPORT_SYMBOL_GPL vmlinux 0xd6f094f4 i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0xd702aae4 sdio_writel EXPORT_SYMBOL_GPL vmlinux 0xd7039c6f simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xd70cbef1 snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL vmlinux 0xd7182cb2 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xd70846c7 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xd71e0866 ata_dummy_port_ops EXPORT_SYMBOL_GPL vmlinux 0xd7323b03 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xd732e228 spi_statistics_add_transfer_stats EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd74c3a2f thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7549210 sdio_claim_host EXPORT_SYMBOL_GPL vmlinux 0xd75f8505 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xd76108c3 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xd7623b8c snd_soc_get_dai_name EXPORT_SYMBOL_GPL vmlinux 0xd765ad27 hwspin_lock_get_id 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 0xd77f6d3e debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xd79e8275 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xd7a17c6a regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xd7a387c4 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xd7aea144 sdio_writesb EXPORT_SYMBOL_GPL vmlinux 0xd7b411cb __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xd7c31686 fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0xd7c68f32 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xd7c86781 __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7dbb7a1 fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0xd7e8ec24 da903x_update EXPORT_SYMBOL_GPL vmlinux 0xd7e98c71 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0xd7ef904c platform_device_add_resources EXPORT_SYMBOL_GPL vmlinux 0xd7fb0726 __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xd7ffa8e2 sdhci_pltfm_free EXPORT_SYMBOL_GPL vmlinux 0xd801642c md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xd802ad65 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xd81669a5 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xd81abd76 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xd82ee7df __mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock EXPORT_SYMBOL_GPL vmlinux 0xd84d4c31 dev_pm_opp_enable EXPORT_SYMBOL_GPL vmlinux 0xd867ebad irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0xd87223b6 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xd8770fe9 snd_soc_add_pcm_runtime EXPORT_SYMBOL_GPL vmlinux 0xd87b1072 xhci_add_endpoint EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk EXPORT_SYMBOL_GPL vmlinux 0xd8876bf1 soc_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0xd8878355 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xd8a1c216 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8c32dd0 dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0xd8d654ca list_lru_count_node EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type EXPORT_SYMBOL_GPL vmlinux 0xd8d6fc19 of_usb_get_dr_mode_by_phy -EXPORT_SYMBOL_GPL vmlinux 0xd8d8b29d __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0xd8dca8c1 usb_ep_set_halt EXPORT_SYMBOL_GPL vmlinux 0xd8eb1296 rio_add_device EXPORT_SYMBOL_GPL vmlinux 0xd8f16b24 spi_mem_exec_op EXPORT_SYMBOL_GPL vmlinux 0xd8f7e45d cpufreq_dbs_governor_limits EXPORT_SYMBOL_GPL vmlinux 0xd90bd0a7 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xd90d0b72 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xd90e4f3c __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd9177c9c ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd91bd328 devm_of_icc_get EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd925cddb __page_file_index EXPORT_SYMBOL_GPL vmlinux 0xd926217d dm_post_suspending EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd9310ef7 dev_pm_opp_get_required_pstate -EXPORT_SYMBOL_GPL vmlinux 0xd9436596 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd94022bf xdp_convert_zc_to_xdp_frame EXPORT_SYMBOL_GPL vmlinux 0xd946cbd3 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xd94c7851 regulator_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next EXPORT_SYMBOL_GPL vmlinux 0xd96ca491 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xd96cd498 crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0xd973109f tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0xd980c564 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xd981e714 gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xd989d068 rt_mutex_unlock EXPORT_SYMBOL_GPL vmlinux 0xd98cf714 usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0xd98f69de __efivar_entry_delete @@ -24238,25 +24235,30 @@ EXPORT_SYMBOL_GPL vmlinux 0xd994f593 pci_epf_destroy EXPORT_SYMBOL_GPL vmlinux 0xd9988b1b mtd_ooblayout_count_eccbytes EXPORT_SYMBOL_GPL vmlinux 0xd9a5be84 blk_mq_alloc_request_hctx EXPORT_SYMBOL_GPL vmlinux 0xd9b23a59 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL vmlinux 0xd9c01f21 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xd9c1fb37 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xd9cc00a2 crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek EXPORT_SYMBOL_GPL vmlinux 0xd9e6c9cf tty_port_tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0xd9e76c39 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xd9e8856b crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xd9f18b87 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xd9f2680f snd_soc_of_parse_audio_routing EXPORT_SYMBOL_GPL vmlinux 0xd9f569a6 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xd9fa080f rtc_initialize_alarm EXPORT_SYMBOL_GPL vmlinux 0xd9fb3db6 dev_pm_opp_detach_genpd EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write EXPORT_SYMBOL_GPL vmlinux 0xda093ca7 class_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda10dd28 sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0xda28c702 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xda2a263c __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda37411d __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0xda39587f raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xda3b491d inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0xda3b91be __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xda424fcf sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0xda43dc94 check_move_unevictable_pages EXPORT_SYMBOL_GPL vmlinux 0xda6b4996 ata_sff_postreset EXPORT_SYMBOL_GPL vmlinux 0xda79044a tracepoint_probe_unregister EXPORT_SYMBOL_GPL vmlinux 0xda83eea7 blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0xda892288 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xda85fa1d tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0xda8c8cce usb_hcd_unmap_urb_setup_for_dma EXPORT_SYMBOL_GPL vmlinux 0xda8cc3b9 hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0xda8d39a7 fsnotify_put_group @@ -24264,43 +24266,46 @@ EXPORT_SYMBOL_GPL vmlinux 0xda94637b devm_blk_ksm_init EXPORT_SYMBOL_GPL vmlinux 0xda9dbc97 bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0xdaa6d84e led_trigger_unregister EXPORT_SYMBOL_GPL vmlinux 0xdab0214e snd_soc_bytes_get -EXPORT_SYMBOL_GPL vmlinux 0xdab119e8 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xdab4649c devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert EXPORT_SYMBOL_GPL vmlinux 0xdacbab2c posix_acl_create EXPORT_SYMBOL_GPL vmlinux 0xdacf972a component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0xdaebf8e1 sched_trace_cfs_rq_avg EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaffbe64 devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0xdaffc271 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xdb067b5f ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0xdb072e47 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xdb08ea58 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xdb098059 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xdb1335e6 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xdb20f124 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xdb239c65 ata_host_register EXPORT_SYMBOL_GPL vmlinux 0xdb28588d extcon_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xdb2adf06 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xdb2c4909 devm_mipi_dsi_attach EXPORT_SYMBOL_GPL vmlinux 0xdb5422c9 iommu_set_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xdb629908 scsi_dh_activate EXPORT_SYMBOL_GPL vmlinux 0xdb6c6140 rio_del_device EXPORT_SYMBOL_GPL vmlinux 0xdb71c65f dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xdb79dde8 blk_insert_cloned_request EXPORT_SYMBOL_GPL vmlinux 0xdb86f4e8 dma_buf_mmap EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb909136 spi_slave_abort EXPORT_SYMBOL_GPL vmlinux 0xdb99a1ca thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0xdba22696 software_node_register EXPORT_SYMBOL_GPL vmlinux 0xdbb9bd5d iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0xdbc3080d crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xdbc3c438 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xdbbc963e ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe4e398 find_get_pid EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xdbe94909 of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0xdbecb28d rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xdbed0c95 cpufreq_unregister_governor EXPORT_SYMBOL_GPL vmlinux 0xdbee92ee pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xdbf64453 strp_stop EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits EXPORT_SYMBOL_GPL vmlinux 0xdbfe01c9 kernfs_notify EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available EXPORT_SYMBOL_GPL vmlinux 0xdc037002 nanddev_isbad -EXPORT_SYMBOL_GPL vmlinux 0xdc07aeff mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0xdc0dc54b blk_update_request EXPORT_SYMBOL_GPL vmlinux 0xdc117c4e blk_mq_unfreeze_queue EXPORT_SYMBOL_GPL vmlinux 0xdc360a11 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc40c478 ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent EXPORT_SYMBOL_GPL vmlinux 0xdc69fd8e devres_destroy @@ -24308,190 +24313,188 @@ EXPORT_SYMBOL_GPL vmlinux 0xdc7ce353 mv_mbus_dram_info_nooverlap EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable EXPORT_SYMBOL_GPL vmlinux 0xdc8a9b26 class_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0xdc8f26d6 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xdc966c91 ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc989502 wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca09c3c __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0xdccdb5e6 power_supply_class EXPORT_SYMBOL_GPL vmlinux 0xdcd4dd95 wm831x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xdce42b64 dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xdd070264 devlink_port_params_unregister EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd09bdbb regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xdd1a83fd cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0xdd21316c nvmem_del_cell_table EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister EXPORT_SYMBOL_GPL vmlinux 0xdd391fa5 sysfs_rename_link_ns EXPORT_SYMBOL_GPL vmlinux 0xdd3faed7 blkcg_policy_unregister EXPORT_SYMBOL_GPL vmlinux 0xdd4f0b06 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0xdd579cae crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd64b7b2 snd_soc_runtime_calc_hw EXPORT_SYMBOL_GPL vmlinux 0xdd66db67 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0xdd677723 ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xdd6ef6fd devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xdd748951 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0xdd7b090a inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xdd766659 mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0xdd7da7c8 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xdd80feab inet_hash EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0xdd82e30a blk_mq_virtio_map_queues EXPORT_SYMBOL_GPL vmlinux 0xdd85063c lpddr2_jedec_min_tck EXPORT_SYMBOL_GPL vmlinux 0xdd92ce09 pci_find_next_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xddb64f4c con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xddb9e2ab fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xddbc018e crypto_spawn_tfm2 EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc0de1a snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0xddcc0830 crypto_register_rngs EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xdddb9d57 percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0xdde29113 __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0xde007e37 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xde02a1a8 regmap_raw_write EXPORT_SYMBOL_GPL vmlinux 0xde10a8a4 pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xde166012 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xde1ad4bf ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xde1ecccf of_find_spi_device_by_node EXPORT_SYMBOL_GPL vmlinux 0xde2505da blk_mq_queue_inflight EXPORT_SYMBOL_GPL vmlinux 0xde331bea snd_dmaengine_pcm_open_request_chan EXPORT_SYMBOL_GPL vmlinux 0xde385e7b dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0xde3bc64c modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xde3deede clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xde4040e4 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xde417680 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xde447fb3 device_dma_supported EXPORT_SYMBOL_GPL vmlinux 0xde4ae806 ata_pci_sff_init_one EXPORT_SYMBOL_GPL vmlinux 0xde556d8d dm_get_queue_limits EXPORT_SYMBOL_GPL vmlinux 0xde5a5979 dev_pm_opp_init_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0xde5a9777 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xde698423 sdio_memcpy_fromio EXPORT_SYMBOL_GPL vmlinux 0xde6a08df uhci_reset_hc EXPORT_SYMBOL_GPL vmlinux 0xde6c0b6e scsi_dh_set_params EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde83fb37 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0xde901f01 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xde9f3aeb sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xde7b15bd sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL vmlinux 0xde87dd6a page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0xde9c0ed0 device_property_read_string EXPORT_SYMBOL_GPL vmlinux 0xdeba1752 amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0xdee8e9f3 sdhci_end_tuning +EXPORT_SYMBOL_GPL vmlinux 0xded9a931 scsi_check_sense EXPORT_SYMBOL_GPL vmlinux 0xdef155b2 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0xdef47aec gpiochip_request_own_desc EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf03ffa4 devm_of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0xdf0476f3 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xdf08c112 inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xdf2e3597 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0xdf316856 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0xdf41600a devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdf361ecc device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0xdf5b15e0 usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdf5e8a11 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0xdf7dd0b0 clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdf89e52b devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xdf946e36 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xdf72e9ea sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xdf78d82e skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xdf8e6227 ehci_handshake EXPORT_SYMBOL_GPL vmlinux 0xdfae26f6 mtd_get_fact_prot_info EXPORT_SYMBOL_GPL vmlinux 0xdfb61287 dev_pm_opp_of_get_opp_desc_node EXPORT_SYMBOL_GPL vmlinux 0xdfc03cd7 __wake_up_sync EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set EXPORT_SYMBOL_GPL vmlinux 0xdfd82af1 dev_pm_opp_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0xdfda037e dev_pm_opp_of_find_icc_paths -EXPORT_SYMBOL_GPL vmlinux 0xdff9b29e device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xe000c936 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xe01133c3 crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xe022496d dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xdfe8ae78 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xdfecad10 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xe00f7d47 sdio_get_host_pm_caps EXPORT_SYMBOL_GPL vmlinux 0xe0232408 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xe0238204 cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0xe025d41a dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0xe0280271 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xe02d658d ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0xe046bfc0 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xe049b11a path_noexec EXPORT_SYMBOL_GPL vmlinux 0xe04e99d7 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe051f6e0 devm_clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe06beee6 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0xe071d93d regulator_set_voltage_time EXPORT_SYMBOL_GPL vmlinux 0xe0736639 pm_generic_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0xe0781678 tpm_is_tpm2 EXPORT_SYMBOL_GPL vmlinux 0xe07c4ced dma_buf_begin_cpu_access EXPORT_SYMBOL_GPL vmlinux 0xe085e147 md_run -EXPORT_SYMBOL_GPL vmlinux 0xe08621b1 sdhci_calc_clk -EXPORT_SYMBOL_GPL vmlinux 0xe089942a snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0xe08969a5 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xe099e9ae __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0xe0a80509 usb_ep_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xe0acc75b mmc_regulator_disable_vqmmc EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate EXPORT_SYMBOL_GPL vmlinux 0xe0c2e5ac __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0xe0ce3c73 ata_pci_sff_init_host EXPORT_SYMBOL_GPL vmlinux 0xe0f549e9 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xe100c6b2 __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0xe108eee9 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xe124a765 __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0xe124ef5a serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0xe125d89d init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xe13158b9 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0xe140f0e2 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xe1497891 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0xe1548c27 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xe157348b ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0xe1653a54 software_node_unregister EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17e52eb scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0xe1841d49 mpc8xxx_spi_rx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0xe184a97a devm_phy_destroy EXPORT_SYMBOL_GPL vmlinux 0xe18960ba nvmem_device_write EXPORT_SYMBOL_GPL vmlinux 0xe198a1f0 devm_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0xe19fd086 ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xe1bd5e38 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xe19c20b0 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xe1b32de7 pwm_put EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx EXPORT_SYMBOL_GPL vmlinux 0xe1c9fece debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe1e03222 security_path_truncate EXPORT_SYMBOL_GPL vmlinux 0xe1e07618 extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0xe1ea7a14 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xe1e083e0 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xe1e1197c ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xe1e9c3f2 clk_hw_get_parent_by_index EXPORT_SYMBOL_GPL vmlinux 0xe1f841bb led_get_default_pattern EXPORT_SYMBOL_GPL vmlinux 0xe1f8a749 platform_msi_domain_free_irqs EXPORT_SYMBOL_GPL vmlinux 0xe20b2704 __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xe2123d69 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xe211892d shmem_read_mapping_page_gfp EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe233d377 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xe23a666c crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xe23a6a35 devm_of_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xe23cd479 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xe2570426 cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe263ff9b wbc_detach_inode EXPORT_SYMBOL_GPL vmlinux 0xe26cd918 simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0xe2717792 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xe27b3d49 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xe27c394b regulator_disable EXPORT_SYMBOL_GPL vmlinux 0xe282c5aa __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xe290e91c ata_port_wait_eh EXPORT_SYMBOL_GPL vmlinux 0xe29995e0 hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0xe29dc17e efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0xe2a48528 __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0xe2a6dab3 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xe2b21821 gpiod_get_array_value EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier EXPORT_SYMBOL_GPL vmlinux 0xe2bb1bde rio_mport_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0xe2cf4174 sysfs_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0xe2d5256f usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xe2dbb1b1 platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xe2e0f798 tracepoint_srcu EXPORT_SYMBOL_GPL vmlinux 0xe2e28818 devm_mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0xe2f1dff3 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xe2f29586 device_remove_properties EXPORT_SYMBOL_GPL vmlinux 0xe2f9ed8f blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xe2fe93ed shmem_truncate_range EXPORT_SYMBOL_GPL vmlinux 0xe3143e75 acct_bioset_init EXPORT_SYMBOL_GPL vmlinux 0xe320a99a cpuidle_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xe32235c2 iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xe323ed90 pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0xe32ba31b auxiliary_find_device EXPORT_SYMBOL_GPL vmlinux 0xe32d2479 xhci_reset_bandwidth EXPORT_SYMBOL_GPL vmlinux 0xe333398d dev_pm_domain_attach EXPORT_SYMBOL_GPL vmlinux 0xe334fd65 posix_acl_default_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0xe34286c2 badblocks_set EXPORT_SYMBOL_GPL vmlinux 0xe3543bd3 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe369809f devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe3753120 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xe35ccf2b tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xe3625c8a sdhci_set_power_and_bus_voltage EXPORT_SYMBOL_GPL vmlinux 0xe37def00 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL vmlinux 0xe37f9e88 tracing_snapshot_cond EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral EXPORT_SYMBOL_GPL vmlinux 0xe38a8266 usb_altnum_to_altsetting EXPORT_SYMBOL_GPL vmlinux 0xe38f4027 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xe393ea73 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe394f9b6 shash_ahash_update EXPORT_SYMBOL_GPL vmlinux 0xe397e229 dev_pm_opp_find_level_exact EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a854b8 ata_link_online EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete EXPORT_SYMBOL_GPL vmlinux 0xe3b3de7c serdev_device_set_tiocm EXPORT_SYMBOL_GPL vmlinux 0xe3b40d92 __regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0xe3b83cbc devfreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0xe3be3799 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xe3c17344 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xe3caccd7 regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0xe3ce1141 __fscrypt_encrypt_symlink EXPORT_SYMBOL_GPL vmlinux 0xe3d233f6 of_property_read_u64_index EXPORT_SYMBOL_GPL vmlinux 0xe3e8263a devm_kmemdup EXPORT_SYMBOL_GPL vmlinux 0xe3ecde06 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe3f150b4 ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0xe3f72b5e devm_of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0xe400058d snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xe40a41d5 sdhci_adma_write_desc EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv EXPORT_SYMBOL_GPL vmlinux 0xe412779b devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xe41402e5 xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0xe4170f03 devlink_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0xe41794a6 __fat_fs_error EXPORT_SYMBOL_GPL vmlinux 0xe4204910 dev_pm_opp_is_turbo EXPORT_SYMBOL_GPL vmlinux 0xe4235282 led_trigger_event @@ -24502,143 +24505,132 @@ EXPORT_SYMBOL_GPL vmlinux 0xe4428993 blk_mq_freeze_queue EXPORT_SYMBOL_GPL vmlinux 0xe443dc1d thermal_zone_get_offset EXPORT_SYMBOL_GPL vmlinux 0xe466a423 init_srcu_struct EXPORT_SYMBOL_GPL vmlinux 0xe4681fbc usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xe46ef5bc sched_trace_rq_avg_irq EXPORT_SYMBOL_GPL vmlinux 0xe47022c0 genphy_c45_pma_suspend EXPORT_SYMBOL_GPL vmlinux 0xe48d8c02 phy_init EXPORT_SYMBOL_GPL vmlinux 0xe492b066 of_reserved_mem_device_init_by_idx EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot EXPORT_SYMBOL_GPL vmlinux 0xe4977bba __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xe4ae60a0 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xe4afb139 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe4ad1b41 crypto_ahash_final 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 0xe4c1ba78 snd_soc_register_component EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm EXPORT_SYMBOL_GPL vmlinux 0xe4c9f178 btree_get_prev EXPORT_SYMBOL_GPL vmlinux 0xe4d2c95c regulator_irq_helper EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4e5b872 inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0xe4e899e6 alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0xe4f5c351 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xe514f7ca device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xe4f98cd5 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xe522c70f cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xe52d1a25 lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0xe534b920 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xe539cbf4 device_set_wakeup_capable EXPORT_SYMBOL_GPL vmlinux 0xe543bee5 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xe5538318 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xe54ac8c9 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xe56203ed platform_get_irq EXPORT_SYMBOL_GPL vmlinux 0xe567f080 alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0xe57a789d icc_disable -EXPORT_SYMBOL_GPL vmlinux 0xe5831a89 sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xe5767034 synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0xe583b713 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xe585b623 phy_package_join EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58ba3a9 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58e9b26 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xe594ac6a regmap_can_raw_write EXPORT_SYMBOL_GPL vmlinux 0xe598e313 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0xe59ee6c3 snd_soc_dapm_nc_pin EXPORT_SYMBOL_GPL vmlinux 0xe59efb0e musb_clearb +EXPORT_SYMBOL_GPL vmlinux 0xe5a4d0a9 snd_soc_component_test_bits EXPORT_SYMBOL_GPL vmlinux 0xe5af06a1 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xe5b43eec do_splice_from EXPORT_SYMBOL_GPL vmlinux 0xe5ba2cb2 __blk_req_zone_write_unlock EXPORT_SYMBOL_GPL vmlinux 0xe5beefed securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xe5c7e169 get_kernel_pages EXPORT_SYMBOL_GPL vmlinux 0xe5ca68b8 usb_enable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xe5cb22df crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xe5cfdbb1 snd_soc_of_put_dai_link_codecs EXPORT_SYMBOL_GPL vmlinux 0xe5d1def0 kthread_data -EXPORT_SYMBOL_GPL vmlinux 0xe5d772bb rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5dcfeeb of_clk_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0xe622153e tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xe62666cc splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xe6163376 xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe630db14 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xe63ca8bd ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0xe62934d2 devlink_params_publish EXPORT_SYMBOL_GPL vmlinux 0xe6417d8f debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0xe641d5f0 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xe65653b8 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xe64cc903 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0xe6577334 dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xe657dd45 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xe6586747 cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0xe668835c __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xe6694853 bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0xe6733559 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xe678627d gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xe67cb84e devm_clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xe6862ac5 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0xe689ac83 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xe6892dbb icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0xe698ac0a ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xe6a6b122 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xe6a26a85 synth_event_trace EXPORT_SYMBOL_GPL vmlinux 0xe6b9c9ea da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xe6c2fb46 gpiod_put EXPORT_SYMBOL_GPL vmlinux 0xe6c6dd72 pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0xe6c7b5f3 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xe6d0a910 sdhci_cqe_disable EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e5350e sdio_memcpy_toio EXPORT_SYMBOL_GPL vmlinux 0xe6ed4449 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xe7001030 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe701c925 lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0xe7143c9e input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xe723b228 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xe73d5abe rdev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xe747297d xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xe751b1cc snd_soc_tplg_component_remove EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0xe75625fb cpu_bit_bitmap EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76c8008 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xe7737004 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xe7824395 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0xe7736848 snd_soc_rtdcom_lookup EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit EXPORT_SYMBOL_GPL vmlinux 0xe7916b46 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0xe7974e76 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xe79c8506 xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0xe7a308f1 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xe7a77589 gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xe7aff5bf blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xe7c64765 spi_res_alloc EXPORT_SYMBOL_GPL vmlinux 0xe7c9f8ba dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0xe7d37a3e i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2f9 udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0xe7e2aa43 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe7e71e55 ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0xe7eaedeb of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0xe7f87efd spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0xe80a89d6 snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL vmlinux 0xe80e8199 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0xe8142dfa __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt EXPORT_SYMBOL_GPL vmlinux 0xe8267174 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xe82cb988 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xe82e3dd5 cpts_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xe832c910 sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0xe837f17a regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xe84344f0 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0xe8389bc2 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe83d37e5 bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0xe848bfc6 __fscrypt_inode_uses_inline_crypto EXPORT_SYMBOL_GPL vmlinux 0xe84c7e78 pci_enable_ats EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports EXPORT_SYMBOL_GPL vmlinux 0xe84fb7d9 snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL vmlinux 0xe8524d67 handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe85cee68 crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0xe85db6eb led_sysfs_enable EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8823469 icc_get EXPORT_SYMBOL_GPL vmlinux 0xe884fec0 fbcon_modechange_possible -EXPORT_SYMBOL_GPL vmlinux 0xe88f8cef xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0xe89a3f57 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xe89bbeb4 pwm_get_chip_data EXPORT_SYMBOL_GPL vmlinux 0xe8a87281 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xe8abcb76 devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0xe8aeefdd mtd_del_partition EXPORT_SYMBOL_GPL vmlinux 0xe8bbc8d1 usb_enable_intel_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0xe8bf2b1b devm_hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0xe8c8a73c dev_pm_opp_put_opp_table EXPORT_SYMBOL_GPL vmlinux 0xe8ca6d38 iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0xe8db7fd4 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xe8d85187 __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0xe8dc0004 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe8ee2df1 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xe9069b84 regulator_is_supported_voltage EXPORT_SYMBOL_GPL vmlinux 0xe908a739 ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0xe90c0303 ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe912847b security_path_chown EXPORT_SYMBOL_GPL vmlinux 0xe9140521 usb_ep_alloc_request EXPORT_SYMBOL_GPL vmlinux 0xe9153607 nand_soft_waitrdy -EXPORT_SYMBOL_GPL vmlinux 0xe923f871 snd_soc_component_read_field +EXPORT_SYMBOL_GPL vmlinux 0xe92b11d3 of_clk_get_parent_count EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9418745 inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0xe943e099 rockchip_register_softrst EXPORT_SYMBOL_GPL vmlinux 0xe9547016 add_hwgenerator_randomness EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe95f7818 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xe96d66f9 sched_trace_rq_nr_running EXPORT_SYMBOL_GPL vmlinux 0xe989a69c phy_pm_runtime_get_sync EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version EXPORT_SYMBOL_GPL vmlinux 0xe993d901 sysfs_remove_groups EXPORT_SYMBOL_GPL vmlinux 0xe99618c6 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xe9993daf fs_kobj EXPORT_SYMBOL_GPL vmlinux 0xe9a22673 topology_set_thermal_pressure EXPORT_SYMBOL_GPL vmlinux 0xe9a7fe16 nvmem_cell_read EXPORT_SYMBOL_GPL vmlinux 0xe9addfa9 nanddev_init @@ -24648,39 +24640,49 @@ EXPORT_SYMBOL_GPL vmlinux 0xe9bf466d usb_gadget_vbus_disconnect EXPORT_SYMBOL_GPL vmlinux 0xe9c616de cpu_latency_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap EXPORT_SYMBOL_GPL vmlinux 0xe9d5d6ec amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xe9dbe2f6 devlink_dpipe_table_resource_set EXPORT_SYMBOL_GPL vmlinux 0xe9df912b blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xe9e39670 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xe9e0257b thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe9e7cc92 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0xe9ef89cf ohci_hub_status_data EXPORT_SYMBOL_GPL vmlinux 0xe9f0036e pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xe9f1f168 platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0xe9f5e9ff irq_chip_get_parent_state EXPORT_SYMBOL_GPL vmlinux 0xe9fbe67d i2c_dw_adjust_bus_speed EXPORT_SYMBOL_GPL vmlinux 0xe9fec059 reset_control_get_count EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit EXPORT_SYMBOL_GPL vmlinux 0xea0361c6 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL vmlinux 0xea05fe89 icc_get_name EXPORT_SYMBOL_GPL vmlinux 0xea0910fc sg_free_table_chained EXPORT_SYMBOL_GPL vmlinux 0xea114216 sg_alloc_table_chained EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1b5fd2 __trace_note_message EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0xea1c2229 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xea20e108 filemap_read 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 0xea3c6082 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xea47feef __traceiter_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0xea4a09cb mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xea4a488b thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0xea4c6630 mtd_block_markbad -EXPORT_SYMBOL_GPL vmlinux 0xea4d5089 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xea50cd51 crypto_register_acomp EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea692d86 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xea573ace gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xea5d4898 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL vmlinux 0xea6d03f3 __kernel_write EXPORT_SYMBOL_GPL vmlinux 0xea6fa823 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xea6ff9da sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0xea8123d2 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xea86237e xfrm_dev_resume EXPORT_SYMBOL_GPL vmlinux 0xea87b706 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xea8bcdc0 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xeaa0c901 xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0xeaa2ab37 usb_for_each_port EXPORT_SYMBOL_GPL vmlinux 0xeaa6c3f1 of_pm_clk_add_clks EXPORT_SYMBOL_GPL vmlinux 0xeaafcb26 cpu_subsys EXPORT_SYMBOL_GPL vmlinux 0xeab02f3e relay_open -EXPORT_SYMBOL_GPL vmlinux 0xeabda7b0 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xeab6f40d scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xeac62f75 dapm_mark_endpoints_dirty 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 @@ -24689,252 +24691,255 @@ EXPORT_SYMBOL_GPL vmlinux 0xeafa77ee dev_pm_opp_set_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0xeafd0a5a tpm_get_random EXPORT_SYMBOL_GPL vmlinux 0xeb08e33b ipi_send_mask EXPORT_SYMBOL_GPL vmlinux 0xeb113901 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xeb166078 sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0xeb186d23 device_create_with_groups EXPORT_SYMBOL_GPL vmlinux 0xeb2f825c init_rs_gfp +EXPORT_SYMBOL_GPL vmlinux 0xeb338a9f snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xeb3eec58 regulator_bulk_force_disable EXPORT_SYMBOL_GPL vmlinux 0xeb45db5b mtk_pinconf_bias_disable_get EXPORT_SYMBOL_GPL vmlinux 0xeb531aaf register_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0xeb55a0d6 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xeb673a00 meson_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xeb68060f skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0xeb6ddcd4 ahci_platform_suspend EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL vmlinux 0xeb7363f9 ata_qc_complete EXPORT_SYMBOL_GPL vmlinux 0xeb86f601 usb_free_urb EXPORT_SYMBOL_GPL vmlinux 0xeb8d8c39 kmsg_dump_get_buffer EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xeba338cd i2c_adapter_depth EXPORT_SYMBOL_GPL vmlinux 0xeba3dd38 tpm_tis_resume EXPORT_SYMBOL_GPL vmlinux 0xebabf527 hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0xebb6fae3 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xebbb61db get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0xebbc06cf __tracepoint_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms EXPORT_SYMBOL_GPL vmlinux 0xebeaa7d8 rio_alloc_net EXPORT_SYMBOL_GPL vmlinux 0xebeb24a2 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xebedd0bb device_initialize EXPORT_SYMBOL_GPL vmlinux 0xebf1b36e devm_clk_get_optional_prepared EXPORT_SYMBOL_GPL vmlinux 0xebf2f195 iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0xebfc444f sdhci_start_tuning EXPORT_SYMBOL_GPL vmlinux 0xebfe1e4c is_software_node EXPORT_SYMBOL_GPL vmlinux 0xec0ce8cb tty_put_char EXPORT_SYMBOL_GPL vmlinux 0xec0f2151 devm_regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0xec0f8740 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xec13f9d0 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0xec1d9ad2 devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0xec2457ad dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0xec2a5efd thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xec2917ff crypto_stats_compress EXPORT_SYMBOL_GPL vmlinux 0xec2bc927 sysfs_add_link_to_group EXPORT_SYMBOL_GPL vmlinux 0xec2cd362 blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0xec4fb7a3 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL vmlinux 0xec501be2 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xec400865 security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0xec523f88 hrtimer_start_range_ns EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec805198 perf_aux_output_flag EXPORT_SYMBOL_GPL vmlinux 0xec86b3c9 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xec8f64c7 crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0xec9883a4 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xecb57058 udp_abort EXPORT_SYMBOL_GPL vmlinux 0xecd4e4e6 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xecd5c467 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xecd81584 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xececf61c devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xecfb6563 regulator_suspend_enable EXPORT_SYMBOL_GPL vmlinux 0xecff982a rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xed10aa3a crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xed1852eb devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xed08cc6b crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xed105799 icc_get_name EXPORT_SYMBOL_GPL vmlinux 0xed1a8023 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0xed230fd1 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xed254fe0 sdio_writew EXPORT_SYMBOL_GPL vmlinux 0xed2ae64e regulator_get_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0xed344146 mcpm_is_available -EXPORT_SYMBOL_GPL vmlinux 0xed38439f spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xed42ceca __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xed53b93e skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0xed71b40a tegra_xusb_padctl_legacy_remove EXPORT_SYMBOL_GPL vmlinux 0xed8086c9 devm_power_supply_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xed956afd bus_for_each_drv EXPORT_SYMBOL_GPL vmlinux 0xed973cfb vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xed98484e devm_phy_package_join EXPORT_SYMBOL_GPL vmlinux 0xeda0a690 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xeda261d2 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xedace4fa snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL vmlinux 0xedb803cc regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0xeda31ea0 devlink_param_unpublish EXPORT_SYMBOL_GPL vmlinux 0xedc4893b fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0xede48940 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xedccf963 pwm_get EXPORT_SYMBOL_GPL vmlinux 0xede69b78 inode_dax EXPORT_SYMBOL_GPL vmlinux 0xedeb098e dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0xedfb785a security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0xee008fbe sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xee0d23d7 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0xee18561b init_dummy_netdev EXPORT_SYMBOL_GPL vmlinux 0xee230a86 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xee238133 wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0xee2c092f __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xee38c333 rtnl_af_register EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee75c042 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xee77c613 snd_soc_dai_set_clkdiv EXPORT_SYMBOL_GPL vmlinux 0xee813a0f dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xee82e9b6 scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0xee8797ff fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xee8fe749 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xee93bb74 snd_soc_of_put_dai_link_codecs EXPORT_SYMBOL_GPL vmlinux 0xee9646b2 iommu_dev_feature_enabled EXPORT_SYMBOL_GPL vmlinux 0xeeab856e nand_ecc_choose_conf EXPORT_SYMBOL_GPL vmlinux 0xeead741e snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeeae36d2 wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0xeebfbe6a of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0xeec00aae ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xeecbb43e ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xeed144b6 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xeece7188 dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0xeed8d31c iomap_writepage 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 0xeef55727 ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0xeefa116f dma_map_sgtable EXPORT_SYMBOL_GPL vmlinux 0xef010a76 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0xef02f094 icc_link_destroy EXPORT_SYMBOL_GPL vmlinux 0xef06ebce bus_find_device EXPORT_SYMBOL_GPL vmlinux 0xef235c93 __blk_req_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xef34d547 dev_pm_genpd_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xef3f2626 lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0xef40611c pci_enable_rom EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 EXPORT_SYMBOL_GPL vmlinux 0xef47e58d devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xef4bd513 cpufreq_register_governor EXPORT_SYMBOL_GPL vmlinux 0xef58ee42 ohci_setup EXPORT_SYMBOL_GPL vmlinux 0xef597875 irq_gc_set_wake EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef79434a crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xef7abcc0 snd_soc_suspend EXPORT_SYMBOL_GPL vmlinux 0xef7ba8fa mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0xef7d68df __put_net EXPORT_SYMBOL_GPL vmlinux 0xef83eed1 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xefa1d9cf regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xef930f39 devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xefa23162 sfp_register_socket EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa4fecc device_register EXPORT_SYMBOL_GPL vmlinux 0xefaace6e mv_mbus_dram_info -EXPORT_SYMBOL_GPL vmlinux 0xefad2831 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xefabceb6 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0xefb34882 cpts_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xefb7a3c8 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0xefc146f3 snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL vmlinux 0xefc5cdeb fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xefbfabfe __regmap_init EXPORT_SYMBOL_GPL vmlinux 0xefc96328 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xefd4e601 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xefd705a2 i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xefe365da extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs EXPORT_SYMBOL_GPL vmlinux 0xf014c25c wm831x_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0xf0155423 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xf02c17b6 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xf0341899 snd_soc_dapm_force_enable_pin EXPORT_SYMBOL_GPL vmlinux 0xf058c0c6 mbox_chan_received_data EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid -EXPORT_SYMBOL_GPL vmlinux 0xf073dd41 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf0646d37 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xf0723738 ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0xf076c071 mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0xf085a5ab wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xf0878b24 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0xf07c4350 pwm_adjust_config EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf091df64 fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0xf096426f serdev_device_write_buf EXPORT_SYMBOL_GPL vmlinux 0xf0973c2e dev_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xf0a1d92c icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0xf0b306c7 snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf09e8ecc regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf0afcfe4 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xf0b97d5a __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf0c10b9b pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xf0cd6012 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xf0cf9b15 gpiod_set_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xf0d4e2ec da9052_request_irq EXPORT_SYMBOL_GPL vmlinux 0xf0d5d4ea irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0xf0d9a800 crypto_comp_decompress EXPORT_SYMBOL_GPL vmlinux 0xf0e61a69 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xf0f50857 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0e8745b inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0xf0f95e51 musb_readl +EXPORT_SYMBOL_GPL vmlinux 0xf104cba7 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xf1206b82 sock_diag_unregister_inet_compat EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll EXPORT_SYMBOL_GPL vmlinux 0xf12d3112 rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0xf12d9b7f cpts_create EXPORT_SYMBOL_GPL vmlinux 0xf134f135 __dax_driver_register EXPORT_SYMBOL_GPL vmlinux 0xf1379bdb edac_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0xf1390dbb rockchip_pcie_cfg_configuration_accesses -EXPORT_SYMBOL_GPL vmlinux 0xf14304e9 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0xf14315b2 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xf144e986 fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0xf14d22cb tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xf15e69c6 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0xf16204dd snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0xf16f0aac dev_set_name EXPORT_SYMBOL_GPL vmlinux 0xf1748bf4 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xf175344b sdhci_switch_external_dma EXPORT_SYMBOL_GPL vmlinux 0xf17c641f n_tty_inherit_ops EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf189800b dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0xf1967456 attribute_container_classdev_to_container EXPORT_SYMBOL_GPL vmlinux 0xf19b768e pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1a5745a snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf1a61141 tcp_done EXPORT_SYMBOL_GPL vmlinux 0xf1ab3dab nvmem_device_find EXPORT_SYMBOL_GPL vmlinux 0xf1b9f89e serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0xf1c76762 perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0xf1c99c55 pci_msi_mask_irq EXPORT_SYMBOL_GPL vmlinux 0xf1ce154c __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xf1dd3460 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xf1e45e3c __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf1e54a50 skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0xf1fae6a3 asic3_read_register EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf22d71fa of_clk_hw_simple_get EXPORT_SYMBOL_GPL vmlinux 0xf22fcfa5 tps6586x_write EXPORT_SYMBOL_GPL vmlinux 0xf231b0c0 dma_buf_pin -EXPORT_SYMBOL_GPL vmlinux 0xf2430ac9 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xf23c17bc gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0xf2464a8a iomap_dio_rw EXPORT_SYMBOL_GPL vmlinux 0xf24844f1 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xf26631c4 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf26ecd15 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xf279cfab sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xf27bb606 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0xf288f659 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xf282d236 switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on EXPORT_SYMBOL_GPL vmlinux 0xf2a70575 blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0xf2b7fb6d crypto_unregister_instance EXPORT_SYMBOL_GPL vmlinux 0xf2bc44df fscrypt_set_bio_crypt_ctx_bh EXPORT_SYMBOL_GPL vmlinux 0xf2c06e8a dev_pm_opp_of_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0xf2c3e045 pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0xf2c5b967 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0xf2c5fa60 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xf2e1323a bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xf2e41d1e ahci_error_handler EXPORT_SYMBOL_GPL vmlinux 0xf2e45adc ata_sff_busy_sleep 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 0xf315d6bb snd_soc_lookup_component_nolocked EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active EXPORT_SYMBOL_GPL vmlinux 0xf327b77a mpc8xxx_spi_tx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0xf32a0ef6 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0xf32a107b mdiobus_modify EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf332d0b9 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xf3429bee device_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0xf342fd5d freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf3451794 skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0xf34ca5bc srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf35866b1 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf36047dd dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xf3517426 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xf3685cec page_endio EXPORT_SYMBOL_GPL vmlinux 0xf36c9b1c phy_exit EXPORT_SYMBOL_GPL vmlinux 0xf37635ac usb_hcd_pci_probe EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit EXPORT_SYMBOL_GPL vmlinux 0xf37f33ef pinmux_generic_add_function EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf38c74e4 regulator_get_current_limit EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs EXPORT_SYMBOL_GPL vmlinux 0xf3ccc05e ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0xf3d228f0 crypto_stats_akcipher_sign EXPORT_SYMBOL_GPL vmlinux 0xf3e0e919 __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0xf3faba58 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xf3fd3e4e devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0xf3ff96c5 __pm_runtime_idle EXPORT_SYMBOL_GPL vmlinux 0xf40698c0 dw_pcie_host_init EXPORT_SYMBOL_GPL vmlinux 0xf409f13a pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xf41c0c3e mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0xf41f05ef cpufreq_generic_init EXPORT_SYMBOL_GPL vmlinux 0xf4264a2e __tracepoint_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xf4346cca for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xf4495e31 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf44853f2 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xf4687faa sock_prot_inuse_add EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf468b64f scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0xf4696451 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xf4750518 fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf479be19 snd_soc_dapm_enable_pin EXPORT_SYMBOL_GPL vmlinux 0xf47de486 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xf486c02c device_link_remove EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xf49c680a fsverity_enqueue_verify_work EXPORT_SYMBOL_GPL vmlinux 0xf49d0a97 proc_get_parent_data EXPORT_SYMBOL_GPL vmlinux 0xf4aed96a blk_mark_disk_dead EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4b45937 gpiochip_free_own_desc EXPORT_SYMBOL_GPL vmlinux 0xf4bc53b8 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xf4c2b94b skcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release EXPORT_SYMBOL_GPL vmlinux 0xf4e3cda7 pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0xf4e7fc38 mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0xf4f3f2c7 pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0xf4f69d1f clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xf50267cd gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0xf512bc2a blkcg_activate_policy EXPORT_SYMBOL_GPL vmlinux 0xf51421bd ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0xf5286d3d trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0xf529a49b snd_soc_dapm_disable_pin EXPORT_SYMBOL_GPL vmlinux 0xf52e14e9 snmp_fold_field64 -EXPORT_SYMBOL_GPL vmlinux 0xf548b43a wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xf53c3a6f snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0xf5458f0c rtnl_get_net_ns_capable EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock EXPORT_SYMBOL_GPL vmlinux 0xf55d7a0d snd_card_rw_proc_new -EXPORT_SYMBOL_GPL vmlinux 0xf584b390 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf56b9d5d wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf570d6d8 fwnode_graph_get_remote_endpoint EXPORT_SYMBOL_GPL vmlinux 0xf58edfd7 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xf5944dd8 usb_phy_generic_register EXPORT_SYMBOL_GPL vmlinux 0xf5984b3b usb_hub_release_port EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range -EXPORT_SYMBOL_GPL vmlinux 0xf5a64694 snd_soc_cnew EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus EXPORT_SYMBOL_GPL vmlinux 0xf5b4bd76 tpm_pcr_extend EXPORT_SYMBOL_GPL vmlinux 0xf5b7e6e7 __wake_up_sync_key @@ -24943,7 +24948,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xf5cc1e0c mtd_ooblayout_get_eccbytes EXPORT_SYMBOL_GPL vmlinux 0xf5ce6582 usb_phy_roothub_alloc EXPORT_SYMBOL_GPL vmlinux 0xf5d25e97 led_blink_set_oneshot EXPORT_SYMBOL_GPL vmlinux 0xf5d3e674 otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0xf5dbb47e snd_soc_poweroff EXPORT_SYMBOL_GPL vmlinux 0xf5f10c8f dma_buf_attach EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node EXPORT_SYMBOL_GPL vmlinux 0xf5f53a44 irq_domain_pop_irq @@ -24951,153 +24955,162 @@ EXPORT_SYMBOL_GPL vmlinux 0xf61a1be3 fuse_dev_alloc_install EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xf632fe2b tps6586x_reads EXPORT_SYMBOL_GPL vmlinux 0xf63acb9a fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xf64e39a8 regulator_force_disable EXPORT_SYMBOL_GPL vmlinux 0xf651651c rio_lock_device EXPORT_SYMBOL_GPL vmlinux 0xf655eaab dev_pm_domain_set EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf66d4ac2 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xf6677f1f __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xf66bdc1f __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xf67028e2 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf6731105 ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0xf6765008 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xf67ed972 gpiochip_populate_parent_fwspec_twocell EXPORT_SYMBOL_GPL vmlinux 0xf68307ef __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xf695b334 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL vmlinux 0xf69a83a8 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf692bd1e device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0xf6b043f1 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xf6beba41 bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xf6c0ad86 extcon_get_property_capability EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d0c9d4 ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0xf6d5a1a1 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xf6d8e2cf fib_info_nh_uses_dev EXPORT_SYMBOL_GPL vmlinux 0xf6e05c6b vp_modern_set_queue_size EXPORT_SYMBOL_GPL vmlinux 0xf6e54b10 key_set_timeout EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge EXPORT_SYMBOL_GPL vmlinux 0xf701e424 find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0xf70486f0 device_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0xf7091347 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xf7134036 __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf72c6068 gpiod_toggle_active_low EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xf731b59e netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xf731c0c7 rdev_get_id EXPORT_SYMBOL_GPL vmlinux 0xf738a7d7 palmas_ext_control_req_config EXPORT_SYMBOL_GPL vmlinux 0xf73d0b51 __tracepoint_map EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user EXPORT_SYMBOL_GPL vmlinux 0xf746e4fe irq_work_queue EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf7503ab4 spi_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0xf754dde8 devm_of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xf7554c18 ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xf75f84af sdhci_execute_tuning +EXPORT_SYMBOL_GPL vmlinux 0xf75f5bd7 skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0xf7671821 __pm_runtime_set_status EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer +EXPORT_SYMBOL_GPL vmlinux 0xf7736e7b security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xf774c273 regulator_register EXPORT_SYMBOL_GPL vmlinux 0xf77c5bc1 snd_dmaengine_pcm_pointer EXPORT_SYMBOL_GPL vmlinux 0xf78583b1 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0xf78da6d1 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0xf79b24b4 synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0xf79e6bce to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xf7af3179 bpf_map_inc EXPORT_SYMBOL_GPL vmlinux 0xf7b25394 kthread_flush_work EXPORT_SYMBOL_GPL vmlinux 0xf7b5bb13 nanddev_mtd_max_bad_blocks EXPORT_SYMBOL_GPL vmlinux 0xf7b82009 iomap_fiemap EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f3ca icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0xf7d5688e switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xf7e0de4b ping_unhash EXPORT_SYMBOL_GPL vmlinux 0xf7e601d3 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xf7f33dfb snd_soc_set_ac97_ops_of_reset EXPORT_SYMBOL_GPL vmlinux 0xf7f79692 fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0xf803a9ac skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xf804b081 espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0xf804e495 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xf805641d sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0xf80c276f rhashtable_walk_enter EXPORT_SYMBOL_GPL vmlinux 0xf81ccbe0 tty_port_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0xf82a31a3 irq_set_chip_and_handler_name EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu EXPORT_SYMBOL_GPL vmlinux 0xf83eddc3 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xf8461d63 __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0xf849693d irq_domain_associate EXPORT_SYMBOL_GPL vmlinux 0xf8502913 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xf855e07f ata_sas_port_init EXPORT_SYMBOL_GPL vmlinux 0xf859ffc3 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0xf85a99ef devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0xf867f432 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xf85dc8c3 __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xf8731bf6 clk_regmap_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xf87fff38 clk_gate_restore_context EXPORT_SYMBOL_GPL vmlinux 0xf880c3f4 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL vmlinux 0xf88f260d dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xf8966c40 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xf88c7dca nf_checksum EXPORT_SYMBOL_GPL vmlinux 0xf89c271a to_software_node -EXPORT_SYMBOL_GPL vmlinux 0xf8ad43fb ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xf8afc957 phy_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xf8b12496 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0xf8b22779 imx_pcm_fiq_exit -EXPORT_SYMBOL_GPL vmlinux 0xf8b731eb __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf8ebd1f1 __sdhci_add_host -EXPORT_SYMBOL_GPL vmlinux 0xf8ef0b9b ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xf8b1e21e regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xf8df249a sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0xf8e28351 skb_gso_validate_network_len EXPORT_SYMBOL_GPL vmlinux 0xf8f1fe95 pci_epc_map_msi_irq EXPORT_SYMBOL_GPL vmlinux 0xf8f2a4eb snd_kill_fasync EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf9090802 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0xf9080cb8 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xf90feae2 ata_msleep EXPORT_SYMBOL_GPL vmlinux 0xf91a3a15 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xf92b24eb sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0xf933f79a pci_walk_bus EXPORT_SYMBOL_GPL vmlinux 0xf93442f1 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf948cb06 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xf938dbe7 platform_device_put EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xf9629e71 tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0xf9632c8e dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf9675071 mmc_switch EXPORT_SYMBOL_GPL vmlinux 0xf96da44f xa_delete_node EXPORT_SYMBOL_GPL vmlinux 0xf98039fc meson_pmx_get_func_name EXPORT_SYMBOL_GPL vmlinux 0xf9876c6c dw8250_setup_port EXPORT_SYMBOL_GPL vmlinux 0xf987e7e9 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0xf98dec39 device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0xf9937fee pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xf9963666 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xf9964f9b gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b1cf14 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xf9b4a205 dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0xf9d129df klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xf9d9cd70 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xf9e6a741 tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0xf9ebe46f __devm_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0xf9ebe553 pci_bridge_emul_init -EXPORT_SYMBOL_GPL vmlinux 0xf9fc954f snd_soc_component_disable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0xfa03858a sram_exec_copy EXPORT_SYMBOL_GPL vmlinux 0xfa0594ee fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0xfa119f60 path_noexec -EXPORT_SYMBOL_GPL vmlinux 0xfa1506d5 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xfa1bd80b snd_soc_dpcm_can_be_params EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa21cc62 nfnl_ct_hook EXPORT_SYMBOL_GPL vmlinux 0xfa2bc538 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xfa48fb8b __traceiter_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0xfa570475 balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xfa57e758 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfa605dfb __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xfa58989a regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0xfa64d7c5 virtqueue_is_broken EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfa6bf1db trace_event_raw_init EXPORT_SYMBOL_GPL vmlinux 0xfa74f2fe inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xfa7b1d9c platform_device_register EXPORT_SYMBOL_GPL vmlinux 0xfa82f473 klist_next EXPORT_SYMBOL_GPL vmlinux 0xfa8634b7 blk_mq_quiesce_queue EXPORT_SYMBOL_GPL vmlinux 0xfa8af5d3 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xfa9afb38 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0xfa8d8ac1 blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0xfa9cdc66 devres_release EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line EXPORT_SYMBOL_GPL vmlinux 0xfaba248a usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xfac445fe bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0xfac3f560 regulator_get_error_flags EXPORT_SYMBOL_GPL vmlinux 0xfad7fd8f mbox_client_txdone EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfada0323 thermal_zone_device_disable EXPORT_SYMBOL_GPL vmlinux 0xfadc7f44 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xfaea2acf snd_soc_dai_set_tristate EXPORT_SYMBOL_GPL vmlinux 0xfaee106b of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xfaeec0dc ping_close +EXPORT_SYMBOL_GPL vmlinux 0xfaf35ebb devm_platform_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0xfaf598c6 snd_ctl_request_layer EXPORT_SYMBOL_GPL vmlinux 0xfb0fa4f3 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfb1a4fae inet6_sock_destruct EXPORT_SYMBOL_GPL vmlinux 0xfb2116a5 sysfs_create_mount_point EXPORT_SYMBOL_GPL vmlinux 0xfb24d4ab blocking_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb475a9d regulator_set_suspend_voltage EXPORT_SYMBOL_GPL vmlinux 0xfb4787d5 xhci_resume EXPORT_SYMBOL_GPL vmlinux 0xfb51f520 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0xfb5a2bed icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0xfb522d75 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xfb58f2b6 clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0xfb5a3bfb serial8250_set_defaults EXPORT_SYMBOL_GPL vmlinux 0xfb615859 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xfb648831 sdhci_enable_clk EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name EXPORT_SYMBOL_GPL vmlinux 0xfb73451f alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfb7458d8 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0xfb76665d trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7a382e sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0xfb7a4a7f btree_last EXPORT_SYMBOL_GPL vmlinux 0xfb7bbaa4 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0xfb835b61 xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0xfb96f72b topology_set_scale_freq_source EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbd46e6a cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0xfbd7c297 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xfbd1daeb vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0xfbea2ffe vp_modern_queue_address EXPORT_SYMBOL_GPL vmlinux 0xfbec15c2 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0xfbec4790 crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0xfbeda1ea irq_domain_alloc_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features EXPORT_SYMBOL_GPL vmlinux 0xfbfcace1 __pm_runtime_use_autosuspend @@ -25105,48 +25118,47 @@ EXPORT_SYMBOL_GPL vmlinux 0xfc014cb6 smp_call_function_any EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram EXPORT_SYMBOL_GPL vmlinux 0xfc143f11 power_supply_put_battery_info EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc16f8b9 gpiod_to_irq EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key EXPORT_SYMBOL_GPL vmlinux 0xfc1a55c8 kobject_move EXPORT_SYMBOL_GPL vmlinux 0xfc1c5929 pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xfc1d24e9 sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0xfc205318 dmaengine_desc_set_metadata_len EXPORT_SYMBOL_GPL vmlinux 0xfc3f6b92 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xfc458c1c mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0xfc593e65 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfc599694 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL vmlinux 0xfc683249 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xfc407d4a crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xfc5ed81d lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0xfc6aa8ef cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xfc7c3383 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xfc90c893 hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0xfc932e5e iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0xfc95fe67 __traceiter_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0xfca7fac4 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xfca9be02 imx_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xfcd35b71 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0xfccd23c6 skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xfcd5b738 devm_regmap_init_vexpress_config EXPORT_SYMBOL_GPL vmlinux 0xfcebf6ae pci_epf_type_add_cfs EXPORT_SYMBOL_GPL vmlinux 0xfcef98b8 nand_erase_op EXPORT_SYMBOL_GPL vmlinux 0xfcf54d1d add_wait_queue_priority EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd23edbf xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xfd0c4dd5 __sdhci_read_caps +EXPORT_SYMBOL_GPL vmlinux 0xfd13d24f addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xfd1b7f8d __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0xfd2b0a2c sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0xfd3b0735 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0xfd3d1bb4 task_user_regset_view EXPORT_SYMBOL_GPL vmlinux 0xfd3d53e8 edac_device_handle_ce_count EXPORT_SYMBOL_GPL vmlinux 0xfd40ad83 kfree_strarray EXPORT_SYMBOL_GPL vmlinux 0xfd43d87a subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xfd471692 sdio_claim_irq EXPORT_SYMBOL_GPL vmlinux 0xfd4dba7d freq_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xfd505ef3 of_get_display_timings EXPORT_SYMBOL_GPL vmlinux 0xfd581da1 free_rs EXPORT_SYMBOL_GPL vmlinux 0xfd62a1a8 tpm2_flush_context EXPORT_SYMBOL_GPL vmlinux 0xfd65ffdc handle_irq_desc -EXPORT_SYMBOL_GPL vmlinux 0xfd762d58 snd_soc_dai_compr_trigger EXPORT_SYMBOL_GPL vmlinux 0xfd812477 usb_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xfd9174eb mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0xfda57edc gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0xfd9acb3d __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xfda157f3 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfda9a316 nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0xfdab64eb blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xfdb567b3 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfdb17f3f devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfdb65d27 device_rename EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdc68208 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfdc0b1a4 snd_soc_dai_compr_set_params EXPORT_SYMBOL_GPL vmlinux 0xfdd0b199 da9055_regmap_config EXPORT_SYMBOL_GPL vmlinux 0xfdd93c63 relay_close EXPORT_SYMBOL_GPL vmlinux 0xfde98c38 pci_epc_mem_alloc_addr @@ -25157,50 +25169,55 @@ EXPORT_SYMBOL_GPL vmlinux 0xfe0bbbd2 atomic_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xfe0f5c7c usb_get_descriptor EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release EXPORT_SYMBOL_GPL vmlinux 0xfe1cb42c pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xfe1fec7e spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xfe1d4c50 posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0xfe2820d2 pci_generic_config_read32 EXPORT_SYMBOL_GPL vmlinux 0xfe296c92 md_account_bio EXPORT_SYMBOL_GPL vmlinux 0xfe29d810 trace_seq_to_user EXPORT_SYMBOL_GPL vmlinux 0xfe3d37fe clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe561808 snd_soc_dai_compr_startup EXPORT_SYMBOL_GPL vmlinux 0xfe5aad0c divider_ro_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xfe5bbfc6 da9052_disable_irq_nosync EXPORT_SYMBOL_GPL vmlinux 0xfe6dd57f tpm_chip_start EXPORT_SYMBOL_GPL vmlinux 0xfe6e3180 dev_pm_opp_get_max_transition_latency EXPORT_SYMBOL_GPL vmlinux 0xfe7da604 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xfe891bd8 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe97e1a4 blk_trace_setup EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free EXPORT_SYMBOL_GPL vmlinux 0xfe9a6b00 dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0xfec0b9e6 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfe9cdffd regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xfec55e36 ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0xfec6ba43 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0xfec7514c devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xfecbf3c0 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0xfecef95f iterate_mounts EXPORT_SYMBOL_GPL vmlinux 0xfed0b32a elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister EXPORT_SYMBOL_GPL vmlinux 0xfed561ff divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xfeeee962 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfee8c065 l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0f87c5 devlink_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert -EXPORT_SYMBOL_GPL vmlinux 0xff18097c bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xff27b6d0 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xff288f3c crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider EXPORT_SYMBOL_GPL vmlinux 0xff319903 nand_prog_page_begin_op EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role EXPORT_SYMBOL_GPL vmlinux 0xff4779ab get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0xff5b2478 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xff68aa5a dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0xff7935f7 snd_pcm_stream_unlock_irq EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table EXPORT_SYMBOL_GPL vmlinux 0xff82573d devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xff8a8b4d imx_pcm_fiq_init EXPORT_SYMBOL_GPL vmlinux 0xff95d93c dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0xff9b089a shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb330ad __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xffb38223 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xffc2c811 fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0xffd1123f save_stack_trace EXPORT_SYMBOL_GPL vmlinux 0xffdf9f41 fuse_dev_fiq_ops EXPORT_SYMBOL_GPL vmlinux 0xffe14d22 genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xffe1851e pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xfff47611 find_pid_ns FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux IIO_ADISLIB EXPORT_SYMBOL 0x85bc709b adis_debugfs_reg_access drivers/iio/imu/adis_lib IIO_ADISLIB EXPORT_SYMBOL 0xb6c610ea __adis_enable_irq drivers/iio/imu/adis_lib @@ -25215,45 +25232,45 @@ IIO_ADISLIB EXPORT_SYMBOL_GPL 0xc8c06237 devm_adis_probe_trigger drivers/iio/imu IIO_ADISLIB EXPORT_SYMBOL_GPL 0xf9650fef __adis_check_status drivers/iio/imu/adis_lib IIO_ADISLIB EXPORT_SYMBOL_GPL 0xfe6c785c __adis_initial_startup drivers/iio/imu/adis_lib IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0xbbf90a55 __adis_reset drivers/iio/imu/adis_lib -IIO_HID EXPORT_SYMBOL 0x140f693b hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x2eb1515f hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x5f0773e1 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x69bad49d hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x7c396842 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x073e76e4 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x213c71b0 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x32f5fa44 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x3a42614a hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x6210ba02 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x72473d44 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 0x857ddaf9 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x8e6a9cb8 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x8eb77a57 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x84e741d0 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger IIO_HID EXPORT_SYMBOL 0xb05c0c27 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xcf1b2cee hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xedf1e8d9 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xf384223b hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x42f3f65e hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x7d492549 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x981868e2 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xe7d20fd8 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xb3508c2a hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xcdc8f257 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xdbe2b65f hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xeb4f909f hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x00bd5629 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x6c3c91e9 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x73e39aa8 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x905528ce hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common LTC2497 EXPORT_SYMBOL 0x4751fb80 ltc2497core_probe drivers/iio/adc/ltc2497-core LTC2497 EXPORT_SYMBOL 0x8d14b5ee ltc2497core_remove drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x04ff3aea mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x11cd0b32 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x26e76e05 mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x32552f7b mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x335c31a6 mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x40d9f6a0 mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x54e1e9eb chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x5c98654d mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x612ffc02 mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x6ab887f8 mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xb3822a07 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x02088181 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1554144e mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x33a44c31 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6215ed58 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x67e4835b mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x84447145 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8d5863d8 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x938ad1b3 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9dc541a3 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xba7a3038 mcb_get_resource drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xbcf52873 mcb_release_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd81dfab4 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xed8828a4 mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xf419a34c mcb_request_mem drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x115ff4a3 nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x5b0377fa nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x6925b97d nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd2b7fdf9 nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xe47a7855 nvme_put_ns drivers/nvme/host/nvme-core +MCB EXPORT_SYMBOL_GPL 0xdee193be mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeccdaa2f mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xf02dcb59 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xf7491e89 __mcb_register_driver drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x4a77d78a nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x87162fac nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb3e6015b nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xba4a39d9 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xecddaeeb nvme_find_get_ns drivers/nvme/host/nvme-core PMBUS EXPORT_SYMBOL_GPL 0x08e674dd pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core PMBUS EXPORT_SYMBOL_GPL 0x1ae98aae pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core PMBUS EXPORT_SYMBOL_GPL 0x32ff87b5 pmbus_set_update drivers/hwmon/pmbus/pmbus_core @@ -25273,28 +25290,28 @@ PMBUS EXPORT_SYMBOL_GPL 0xdc844957 pmbus_check_byte_register drivers/hwmon/pmbus PMBUS EXPORT_SYMBOL_GPL 0xdd1bf89a pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core PMBUS EXPORT_SYMBOL_GPL 0xf6065181 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core PMBUS EXPORT_SYMBOL_GPL 0xfeec2c34 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -USB_STORAGE EXPORT_SYMBOL_GPL 0x0d17b187 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x129fddaf usb_stor_control_msg drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x135111ab usb_stor_pre_reset drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x1e070508 usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1e483d23 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x24bf5c84 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x297430ba usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x234572c0 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x24b5dc37 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3ba7e6e0 usb_stor_Bulk_reset drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x4923bb65 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4c0a2c5f fill_inquiry_response drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x4cdcce0a usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x59a5b637 usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6436a83c usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4e4925d1 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x544402e7 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6426b2b7 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x665bf07d usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x69bf7e0e usb_stor_set_xfer_buf drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x7015a254 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x75e4e0f5 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x76d6a46c usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8f6dc004 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x96dcf6c0 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xab94345a usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xae6bc15b usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7c5a0651 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7cebe4e3 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x888ccc78 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0xb353565e usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc71448e4 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd0d96a76 usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdb0aecd0 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdb767fba usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf096aa49 usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf39c11ff usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xfde6b92b usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd35de28d usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd610786c usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xff0b39dc usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage diff --git a/debian.master/abi/armhf/generic-lpae b/debian.master/abi/armhf/generic-lpae index a4b082d4f3570..cf7a2c4981670 100644 --- a/debian.master/abi/armhf/generic-lpae +++ b/debian.master/abi/armhf/generic-lpae @@ -1,6 +1,6 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x20c8970b crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x334d343c crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x90ca4b0a crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x4ff2b62f crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x981a1ca0 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xdac71c4b crypto_cipher_encrypt_one vmlinux CXL EXPORT_SYMBOL_GPL 0x067a1741 is_cxl_nvdimm drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x1118b896 to_cxl_nvdimm drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x1dc6f479 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core @@ -27,8 +27,8 @@ EXPORT_SYMBOL arch/arm/crypto/curve25519-neon 0xc832c670 curve25519_arch 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 0xa60c7ad7 crypto_sha256_arm_update -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xbf93ac9c crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x2edbe04f crypto_sha256_arm_update +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xdf1fb2d3 crypto_sha256_arm_finup 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 @@ -47,23 +47,23 @@ EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey 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 0x03291bae crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x087824b1 crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0x53b172d9 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0x89b0a1b7 crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0xc4f42241 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xefabbfb6 crypto_nhpoly1305_setkey -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 0x53c25c3b sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0x4b6908e1 crypto_sm3_finup -EXPORT_SYMBOL crypto/sm3_generic 0x646445fa crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0xb89eccf0 crypto_sm3_final +EXPORT_SYMBOL crypto/nhpoly1305 0x2b5c7c75 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x4ca32ebe crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x7bca4936 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xb54af9fb crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xdb22006a crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xe0e21e57 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/sha3_generic 0x59b3584d crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0x96ce09e0 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0xa37407c9 crypto_sha3_init +EXPORT_SYMBOL crypto/sm2_generic 0xb686aa92 sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x10085250 crypto_sm3_final +EXPORT_SYMBOL crypto/sm3_generic 0x65f4e4d2 crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0xcd17d6c8 crypto_sm3_update EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0x20aad433 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0xa169fbc9 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0xdc945409 bcma_core_dma_translation +EXPORT_SYMBOL drivers/atm/suni 0x62ba5836 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x32a80cb9 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xaf4cbe66 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 @@ -82,8 +82,8 @@ EXPORT_SYMBOL drivers/block/paride/paride 0xbb9589a5 pi_read_regr EXPORT_SYMBOL drivers/block/paride/paride 0xd055bca5 pi_schedule_claimed EXPORT_SYMBOL drivers/block/paride/paride 0xf19ccafb pi_do_claimed EXPORT_SYMBOL drivers/block/paride/paride 0xfa698e16 pi_disconnect -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xe83eb157 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x71bb3758 rsi_bt_ops +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x054fcf11 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x1e2fff9a rsi_bt_ops EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x3f6bc989 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 @@ -1012,27 +1012,27 @@ EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd482dc2a drm_vram_mm_debugfs_in EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf2556eff drm_vram_helper_mode_valid EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0xc91b0402 rockchip_drm_wait_vact_end EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x006e0f67 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x06525ccc drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0904d437 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2218ef7d drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x25c425df drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3a4c9962 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x40c25d68 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4b6d60af drm_sched_increase_karma_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4bcee7a2 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1e28c7bb drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x22d02ffd drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x25faba84 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x277b4ca6 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x314e4d62 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x31cb922f drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3c4f2d6e drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5166cd4e drm_sched_resubmit_jobs_ext EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x672fa866 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8922d372 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8f788c34 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x93eb748e drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7c869645 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7d94b75c drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x97288014 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9fe92589 drm_sched_job_init EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa0975508 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xaeab228e drm_sched_reset_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb43dfeeb drm_sched_resubmit_jobs_ext EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb8c6a843 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb993d219 drm_sched_suspend_timeout EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbc3003d7 drm_sched_entity_push_job EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc002f47a drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc698edc1 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcf402d6e drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xec54705f drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc5e74db9 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe5ce049e drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf03d057c drm_sched_increase_karma_ext EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf5ab2346 drm_sched_entity_destroy EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf89ed85d drm_sched_entity_flush EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x065824bb ttm_device_fini @@ -1258,346 +1258,346 @@ EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x405b2a00 ms5611_remove EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x5ba283a5 st_press_common_remove EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x69405ad9 st_press_get_settings EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x948f6aa7 st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x078ad03a ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1aeb6fc1 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x244cb0c2 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x38f42f14 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3f1ee054 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4840aadc ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x48f3d32c ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x023f0238 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x10bc8d1f ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x13804ff5 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x147665e3 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x245785f9 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2da7a6b6 ib_cm_insert_listen EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x75a1ca1b ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x81af99d9 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x921edf0a ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9b52a3db ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa9a714ca ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc764c86e ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xce67b09a ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe3a1bf2c ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x79501cb6 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x804e6417 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8955b1db ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x968e8ed5 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaa86447e ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xae51bbc8 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc2f68825 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd0025fac ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xda6052fe ib_send_cm_rej EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0135d633 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0235ecda ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x063ace00 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07ee825e ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07fa7438 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f674b40 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1035fad5 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x104a8d0c ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10609191 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10f5955c rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11e51d3d ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13aefaf3 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15d835b5 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16712ef5 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16f10009 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x175f8f50 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18ba2361 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ac3f584 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d6d9459 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d7f381e __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x202dc160 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x223b5249 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x232b5698 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x233ce393 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x271dcf49 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x273c5130 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27dc5139 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28c3e629 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d45afc0 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2da315a2 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f0902d7 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f2b3e21 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01001818 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01699b8c ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0183e93d rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03887d90 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03afd120 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x044b6a0e ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0490f755 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0575a45d ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x066577af ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0694cd17 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07ffdde6 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0920b4af rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b3bee93 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d2da4ff roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e184681 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e93bec2 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10a695ee ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10e35b88 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1153a149 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12c6e7ee ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13802766 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15f3c7a6 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x189bea4c ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b5653c1 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1beca228 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e71b702 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ec6f9c5 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f280ce2 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fffa52d __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20829cf7 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20aa5433 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21597168 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x234f6104 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25e9690c ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26928fbf ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28ed47e2 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29d32c8d ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cf4dd86 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d53d5fc ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ea95d9b __rdma_block_iter_next EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f384613 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fddcb4b ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305d5e5f rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30450adf __rdma_block_iter_start EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x306b61d3 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33efaedd ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33fdbfb7 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x352b3098 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3651ba9c ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36889dab rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x399c3d56 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ae2eb46 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b681bd2 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bdb8a72 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d09d0ab rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3edb3933 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fbf4827 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30aaff6e rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x310ffe89 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31b43356 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x329e488a ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33da0726 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37166e13 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38128a15 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x382669b1 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x383ffafd ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3967dba0 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ba7a1b7 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d2dcef7 ib_modify_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4015d7c9 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4043a30b ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x407ea2e6 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40bac35f rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40d1b52e ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41169af8 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41c5ae17 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x418678e9 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41986322 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4325067c rdma_query_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44050b50 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44c67d48 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x457a8e6e rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x445d3b34 ibdev_printk EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47eed1d6 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49a4da91 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c48b25a rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cc19b99 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d911295 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x461f3dca ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48189a80 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4833f7f2 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x483699f1 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49fe48fc ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a917917 rdma_restrack_get_byid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e36988e rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e68f384 ib_open_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x503bbd10 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51bc4292 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f2ba46e rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fe85fd2 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ff0b3ce rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x502ab49f __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51184ce2 ib_destroy_qp_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5260f6ad ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52dce7ec ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x553c2ff8 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x539fce50 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53ba570a ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5448f4b5 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55a88fe1 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55b3cd9b rdma_restrack_set_name EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5624c69b rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57884105 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58d454c3 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56e3196c rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56e8dda0 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57d3bf10 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x584a1696 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5859bf18 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58d7166c ib_mr_pool_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cc8f832 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d253fc0 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d492526 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5de636af rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e3470e3 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e6b06d4 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f8697c2 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fc86e54 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d74341c rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5eaf5caa rdma_nl_register EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61cb8c78 rdma_user_mmap_entry_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x641ae5b4 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6544daee ib_get_device_fw_str EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6581ca90 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66641220 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6750cc28 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x678fa7a8 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a15a76a rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x679311f6 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68676c05 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69601e67 __ib_alloc_pd EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d0a5670 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d20527e ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f1a81e9 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e1f6916 __ib_alloc_cq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70a85d0d ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x750ca2fb ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ffd9bce rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7200444c ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7437d510 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74878644 ib_destroy_srq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x775adc1a ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7653a5aa ib_sa_get_mcmember_rec EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b83a655 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c3dc797 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7da8f448 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7df3764d ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e56b497 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fa7d1c7 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ff636d5 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81359f34 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x825ad891 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82acc42d ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x831cb4e4 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8352505c ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x839defeb ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x843a846b ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8443fbfe rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x852cb0bf ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x864a481d ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a013637 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a219c8e rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bcf6d44 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d42034e rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ef05dfe ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80bf0af9 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80bfb7b9 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81e67f31 ib_register_client EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x875934be rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86fcfb00 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8996b112 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b2275aa rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8babbc52 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d5adfa1 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8de20b5f ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e6afdb0 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8edee1b2 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x903a27d2 rdma_destroy_ah_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94612ec9 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x967b0d30 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x973ff4af ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97d2e37a ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99de0e10 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b83bc52 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bf1d904 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c70fb26 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dc496cf ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f5b5d9a rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0c4392f ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa638f286 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6cdef7d ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7585518 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa79245e1 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92404e24 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9466aa9f ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x954d1d81 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x954db807 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95bdfc20 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x978bafb2 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x985b03b3 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99aa4777 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ac71960 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b3453d2 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c3f5f7f ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cf1d470 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d57da5b ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d8bcb07 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa45a8ae3 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa497e6ba rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5e07921 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa61d2bf6 ib_sa_path_rec_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7c4c123 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7c4ce5b ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa82c247c ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaafec995 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabab98d2 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabbfc61c ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac1dfd40 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad766a82 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadf19c7b ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae535a15 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae7d4ec3 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7eb594e ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa91550aa ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa8d5239 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab7982eb ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabfbdc6b ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac842cdb ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad81a416 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae5e1f0f rdma_dev_access_netns EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafbcfb3a ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0784618 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafd8db11 rdma_rw_ctx_wrs 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 0xb3f70473 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb609bf9e rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb521203f rdma_user_mmap_entry_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8b7da21 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8f642b7 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb95f78e5 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba91b6a6 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaabfa95 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbea4ebd ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc12b177 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcaf4295 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc24fdb83 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2bef4be rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5137c5e ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9f7b625 ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc50b0c4 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd54cb19 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7c8fab7 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb96de97f rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb23d347 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb935c4d rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc6204c3 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcdfb578 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd4ab6cf rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfc3b3af ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc15d0cb8 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1e70884 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc62faf2b rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d32097 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc94602c4 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccc19c79 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccd4c41b ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf8bf408 ib_get_net_dev_by_params EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0bbec49 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd14701d5 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd267917e rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2850c8b ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd319ac99 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3843db9 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0e439f8 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd315c6a8 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd38e1dab ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd407eb13 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd48b3353 ib_dereg_mr_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7e630c7 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6e7e234 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7f6885d ib_query_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdad11c90 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddc3898d ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf29ee71 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf4e124c rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf6239e6 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfd86525 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0487e3b ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1f1ab50 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3212444 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe525ab9f rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdef1713f ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf5b68c4 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe21b4497 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe29ac7a5 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2e51a59 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3319a43 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe403d6b3 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe42a7927 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe42afae4 rdma_user_mmap_entry_insert 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 0xe60c38cc ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6788ea1 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe768afeb rdma_port_get_link_layer EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9c6c45d ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe87cabf3 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8908111 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe93cfffd ib_unregister_event_handler EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea8a2981 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec5026fc rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeca8c0f1 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed1ccbf3 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee0dd5ca rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef4c0700 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef8d15da ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0c787e1 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0d0d5a5 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2830a19 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf30e512d ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5c11def rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebabb133 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec000898 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec99e30f rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecf43ad1 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed4da717 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2051869 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3720e48 ib_init_ah_attr_from_path 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 0xf8ce8884 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa3fd124 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfac0170f ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe801d16 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x10456201 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x170de7d9 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1770d5fc ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa9fe239 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb189946 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfefc823f rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff094ebc ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0180c2b1 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x03431f7c uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0385dfaa uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x09da94e8 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x11ef6541 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1a780c32 uverbs_get_flags64 EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x264d6b55 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x278c25e6 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x42ca8e24 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x54f18f5d ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x57392733 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5dca93d6 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1d96ddea ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x256461b7 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x29d13e15 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x33e30803 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3c1650d9 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3e2d313e uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48df2e58 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x514ba550 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x59e2fe07 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x61478266 ib_copy_ah_attr_to_user EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6378ed13 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x64a2d032 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x65f01e3f ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x68b8fdd2 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6d104156 ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6f187434 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7a462d03 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7b69b785 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x888fac19 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8c9f8b1a ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9b4903de uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9b741c7d ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa019ce0f ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xab23bca8 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x65e03935 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x765d55ed uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7b61b0e9 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8501b0ce ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x96115a45 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x977e5a77 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9b843c09 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9fc9ea4b ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa4f97b9f flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb50895c9 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbb40415c ib_uverbs_flow_resources_free EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc7a1733f ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc8082835 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xca3e3f39 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd80eaf2c ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd90d524e ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdb5aed92 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe4663561 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe69768bd _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xef13c481 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf0ec64ae uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf1a8ba13 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf35e3810 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf8a188ac ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3ced077e iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5eb84b8d iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x659eb710 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7b79fe52 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x83b7036c iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa1b11c7f iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbff27533 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xedcbecc1 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc1d7ffe1 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xca0d59e4 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xce037771 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd6fed679 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xea6aa838 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeaac5efb _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf0c3f4c3 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf14bcae1 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf4219e43 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x166a64fb iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x20dc22f0 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2eeec8a9 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5c8037ae iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8351252c iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x97ac821f iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbfe7a208 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdd89b6d5 iw_cm_init_qp_attr EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x071c9a4b rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x08de8ef6 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ab03a26 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a5700e8 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1aacd654 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1af49697 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f2f8986 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x298544f7 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2f4e0527 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3440df47 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x384177c0 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x394de9b5 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3b2cfd5a rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x46498014 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5bfb968e rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x606792f1 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6c096e31 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x77da722b rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7a0739b7 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7bb91147 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x81922da6 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x84144cd2 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ea5a236 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0135701d rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0360735a rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0667246e rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x09cad455 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0a39495c rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0bd7b17e rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ce0d013 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x171230b6 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1c2401b6 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x209af51f rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x20ee7b86 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x38911a14 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x411d977f rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x475951de rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x51c02e4b rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x52aa3f60 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x622bfc09 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x647affe1 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7537476d rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7c2e1709 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7e6fb164 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x81f82ac9 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x86dc7428 rdma_res_to_id EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa0944abc rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa7dd980b rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xace1cd3e rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcb49c459 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd58cef10 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd6d98ca0 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xda3f0796 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe06201d8 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe48e38f8 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeb34af53 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfe538606 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1b8bb10d rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x341e6a0a rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3ec654b1 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x41432da4 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6d180faa rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x71a08a51 rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf632552d rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x0fd81ee1 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x916d9c73 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x95bd06c2 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa94b062 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xadbe9dc8 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc8c7fa2c rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdbb35595 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe233a1c5 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeebcff6f rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf3c5c789 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf826a5fe rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf8b586b5 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1c12d917 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4763a779 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x597f60b6 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6bd9be0b rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xcde65550 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xeb58f0b2 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf99bac79 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x0f86bf89 rtrs_ib_dev_find_or_add EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2510363a sockaddr_to_str EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x67029a33 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x884c5536 rtrs_rdma_dev_pd_deinit EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x926b41e5 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xd5945698 rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xd6a6d1e1 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xed7e78f8 rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x474a04a7 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x6af34917 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xaaa27b06 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe62c5520 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xef9c2d3d rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xefee4e33 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x970a98b8 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xf8c0777f rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3749b41d rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3782d44e rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x734551b8 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xd2cbb73f rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xd8244609 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xdcfd45d3 rtrs_srv_open EXPORT_SYMBOL drivers/input/gameport/gameport 0x07ea47fb gameport_set_phys EXPORT_SYMBOL drivers/input/gameport/gameport 0x193eb150 gameport_start_polling EXPORT_SYMBOL drivers/input/gameport/gameport 0x5fbbb5b6 gameport_unregister_port @@ -1626,8 +1626,8 @@ EXPORT_SYMBOL drivers/input/sparse-keymap 0x9a400673 sparse_keymap_setup EXPORT_SYMBOL drivers/input/sparse-keymap 0xd9234087 sparse_keymap_entry_from_keycode EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x121696a3 ad7879_pm_ops EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x81848b22 ad7879_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x9e53068d qnoc_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xd6cbfda5 qnoc_remove +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xb3665d7b qnoc_remove +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xc15b3296 qnoc_probe EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x414ecc9d detach_capi_ctr EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5f6bb565 attach_capi_ctr EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbe632f5d capi_ctr_ready @@ -1637,48 +1637,48 @@ 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 0x0430fd2c mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x329840fd mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x450e7d62 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf255f925 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x36037fa5 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe775ee2b mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x22452855 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x2f75dc4a mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8fbe4aad mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xaa2237f9 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x84298dee mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xc970245d mISDNisar_irq EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0843dd5b mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0971cc96 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1f822c61 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0f88f9ee mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x129d9dde mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x15e0c9c5 mISDN_freedchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x23d9ddde recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x24b5d449 mISDN_initdchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x27479ebb create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2e9ce1a7 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 0x330e94e7 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x34cc8918 dchannel_senddata EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x551863ba recv_Dchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x59a0ffb6 mISDN_freebchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x615dee4d bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x84584afa mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x86281dc1 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8703faf2 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8991dfae mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8f0a9687 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c06c7b4 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6124fe02 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x66675594 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6f4cec42 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7b2e059a bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7c1049cd dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7caa72d9 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7f09a27e queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8e5ea69f mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x947d75d2 mISDN_initdchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa1f2e36e mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa3ddca44 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa1d5a8b9 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa885af81 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xad8b3b53 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb2266fa3 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb2bb0388 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb5f88b8c recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc21c615e bchannel_senddata EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xca481a9c recv_Bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd9658520 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe3087fc9 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xda079fde get_next_bframe EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xec6eb951 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9aa2e46 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfedc4e07 recv_Bchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law @@ -1703,19 +1703,19 @@ EXPORT_SYMBOL drivers/md/dm-snapshot 0xa9bc0a80 dm_exception_store_type_registe EXPORT_SYMBOL drivers/md/dm-snapshot 0xcc46570e dm_snap_origin EXPORT_SYMBOL drivers/md/raid456 0x2345eed7 r5c_journal_mode_set EXPORT_SYMBOL drivers/md/raid456 0x70f89597 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0cf3e1df flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1eb0670b flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1fc91715 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x30d4254a flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x35a963ac flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5a72f8f6 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5cd836cd flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x66302960 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x780a6b86 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8f996207 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb6b39f52 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd21249aa flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xeaf5508e flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1d0590b0 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2007ac26 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7b970540 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7c7c2905 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9044b0be flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9648de19 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa2d430c8 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xafe32875 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb1e9b94d flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd14efae8 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd23fca6b flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xed70c8b5 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf2059a2b flexcop_pass_dmx_packets 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 0x4879bbfd cx2341x_handler_setup @@ -1728,8 +1728,8 @@ 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 0xf83f93e5 cx2341x_handler_init EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x33139891 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x065a6cc7 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x79415979 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog EXPORT_SYMBOL drivers/media/common/tveeprom 0x9c306943 tveeprom_read EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create @@ -1740,12 +1740,12 @@ EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc169cf04 vb2_ve 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 0x01f0d261 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x08f0cd72 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x38b29522 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x578a5cdf vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa8ef48c7 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xc0cea91c vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x097003b9 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x228e8141 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x32ae1fa2 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7e0d4b7b vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xaf25ccbb vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf4c84990 vb2_dvb_get_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 0x3acae04e vb2_querybuf @@ -1753,14 +1753,12 @@ EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0497023a dvb_generic_ioctl EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x06ee46a4 dvb_ca_en50221_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0987f0c3 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0e5b624d dvb_net_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1609d70c dvb_ringbuffer_flush EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e7a8283 dvb_ringbuffer_read EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x214d5b4e dvb_ringbuffer_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c12c287 dvb_ringbuffer_empty EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2d13a64e dvb_unregister_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2d75ba5e dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x38602165 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3866d2a5 dvb_dmxdev_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3a065d30 dvb_frontend_detach EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until @@ -1780,20 +1778,20 @@ EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e8f4fde dvb_frontend_suspend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x90c1114b dvb_dmxdev_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x97eb39d2 dvb_device_get EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x989a4a69 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9c6a9b20 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb09e40da dvb_ca_en50221_init 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 0xba77f071 dvb_remove_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 0xcc90aca1 dvb_net_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd0e7314e 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 0xe7367529 dvb_dmx_swfilter_204 EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfabefdc5 dvb_generic_open EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfdc05330 dvb_generic_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfe73d116 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x2ea0ffe5 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x50b8305d atbm8830_attach EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0dae355a au8522_led_ctrl EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x11f734cc au8522_init EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x168b4b1b au8522_release_state @@ -1803,25 +1801,11 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6e1f4a7c au8522_readr EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7731bfab au8522_get_state EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x850bb393 au8522_writereg EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdfbd4633 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x2b21318d au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x4337d7ce bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x5367cbc7 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xcc7290a2 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x487781a8 cx24110_attach EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x195991e4 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xe953949d cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xb90215d0 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x7f6cfe8c cx24120_attach EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x30441cb7 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x9fe09428 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xed9a8736 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x35af869a cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x6a9ee2a7 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x68ba9242 cxd2880_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0002b8f2 dib0070_get_rf_output EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x48d6007f dib0070_wbd_offset EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x74ac4554 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xecce7f4f dib0070_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf6a0eddd dib0070_set_rf_output EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2ace8892 dib0090_get_current_gain EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2e1bb3f7 dib0090_dcc_freq @@ -1833,25 +1817,17 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x66fa9c3f dib0090_set_vga EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6ee644bf dib0090_set_tune_state EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7f05b255 dib0090_get_wbd_offset EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8d003512 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa3d4ed05 dib0090_fw_register EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb4c615f6 dib0090_pwm_gain_reset EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb5cde4b2 dib0090_get_tune_state EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xce0b031d dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf5e041ce dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xb90d7e77 dib3000mb_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x13940bb9 dib3000mc_pid_parse EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3743bc24 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3ee7f2eb dib3000mc_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5aa2a645 dib3000mc_pid_control EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9039d9fb dib3000mc_i2c_enumeration EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe65d228f dib3000mc_get_tuner_i2c_master EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3b924f9e dib7000m_pid_filter_ctrl EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x43c72d3a dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x60c2726a dib7000m_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x82de5cd1 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x313c2541 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x1d985d12 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x08a1f1da dib9000_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1a6c6e4c dib9000_set_gpio EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x483de63b dib9000_fw_pid_filter_ctrl EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5660da51 dib9000_get_tuner_interface @@ -1869,93 +1845,22 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8d14e53b dibx000_get EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd369c255 dibx000_i2c_set_speed EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe0e3b5c6 dibx000_reset_i2c_master EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf96db5d1 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xee1b18f0 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xe64108c1 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x9510e814 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x3e0cbbdb ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x15b2fe09 dvb_pll_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x4d3c5640 dvb_dummy_fe_ofdm_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xc4f6c4f7 dvb_dummy_fe_qam_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xe6f27228 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xa8b1f541 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x5e244f0f helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xaa6f68b0 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x913295ee horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xd9c25ea0 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x524ccec9 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xaa60a353 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x3757a155 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x4dfa7631 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xe364bec3 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x30cd81ff lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xdf171502 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xc7f007ae lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x05d21b51 lgdt330x_attach EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x0a9fd74b lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x10e761cc lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x11cc04f0 lnbh25_attach EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x18c0beb3 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xa708bdd9 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xca3c6956 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xf46083b9 lnbp22_attach EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc0432537 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc171a647 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x68c416bd m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x8ea0d7d3 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x69704c20 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xa569ef3c mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x7b1a4e10 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xddec1cb8 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x332e8c39 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x3f5f6c64 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x67f63384 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x6f16a9e3 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xdb3aa352 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x8fcd2ed6 s5h1420_attach EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xd0748959 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xd58b8e8e s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xa644ecf8 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xc2995c28 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x2745d53a sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x9689b8c0 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x7aaf114b stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x081306d8 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xff247e44 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x2a55746a stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x47ec5e48 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x1b0c1bf8 stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x2bfc05c2 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xaaceffaf stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xec59b398 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x041d6ba1 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xc7bed8fe stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xe87d88aa stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xc66c924b tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xf808a2d7 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x933c6e55 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x897e2f5e tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xb2f3302a tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xb0a34000 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xe7b0ec43 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x3c663f81 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x7797a387 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x5b115f17 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x178b6986 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xe86321af tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x62bc247b ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x7ccf7767 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x2aa6b623 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x8323ac5f zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xea88f9f4 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xb79ec790 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x00e637d3 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x04f0f204 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1eaef70d flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x574235f0 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x846d31c8 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9fe31349 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xae0a41b3 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf575995d flexcop_dma_config +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x213e668c zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x7ba004f3 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0cc4e5ea flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6d3d8100 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x859795e2 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xaf11db0a flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbc318663 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbfcbc121 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd6a05456 flexcop_dma_allocate EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x699648d1 bt878_stop EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x90b31544 bt878_device_control EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x92db365b bt878 @@ -1967,7 +1872,6 @@ EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x401c9b46 bttv_sub_register EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8047366b bttv_get_pcidev EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0adc1e3b dst_attach EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0b655dec dst_comm_init EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5d02b673 dst_error_bailout @@ -1977,13 +1881,12 @@ EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8beda235 dst_pio_disable EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x90ce9171 dst_wait_dst_ready EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xde1cf1a3 write_dst EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfc1065bf read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x251f1bd8 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x03ca72cb cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x056a5c66 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0927d7f7 cx18_ext_init EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x583519ae cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x82ecd866 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe955aa20 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2dac46ba cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5d9c42a6 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb390c19f cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xea8cbe6e cx18_release_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 @@ -1997,44 +1900,43 @@ EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8e246612 cx25821_set_gpiopin_ EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9d3ba1bf cx25821_sram_channel_setup_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf2a139a8 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xa015cc73 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xf4485794 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x03a46747 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x44227286 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8b58774d cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8edbd4e9 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1f7abbea cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5bc5462c cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x87619ab4 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8b5d3985 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xab6eb672 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xba48110e cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf9ffdae0 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x06a79a0d cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2150b266 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3296c09e cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4c436f40 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x59f30fdc cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5acc9b7b cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xd81919e0 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xdc18f3bb vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x300205ff cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb038313c cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc31eb6f3 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xcdca4eab cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0cad4c2a cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x185124f8 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x92b4f1b0 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa4dd45b5 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc663568a cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xcdba8bd0 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe99e08a1 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0479790c cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x094178c8 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x22f02698 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x492f3818 cx88_core_get 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 0x8c1dae11 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x69d5064f cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6f2b2d47 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x71999b1b cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7b0c9b00 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x88910c94 cx88_reset EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8ec50538 cx88_sram_channel_setup EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x987160dc cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa4e47fbe cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa74cc8e2 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa7754011 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa9fb228a cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xae022033 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xafb5f8a5 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbb6439a2 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbddceb9c cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc6ad221b cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdb667c9e cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe5a5f03a cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x0a386851 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x92954c05 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9bdf8e8b cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb0eabc7f cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb923c9e6 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbe1b16bd cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xca7fc75c cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd0f2d7b6 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe1787452 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe8db9c95 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xeb3a23c4 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf51438ec cx88_dsp_detect_stereo_sap EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x005a1a0c ivtv_api EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x12005145 ivtv_init_on_first_open EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1234bdc4 ivtv_vapi_result @@ -2055,62 +1957,62 @@ EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf123f49b ivtv_release_stream EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf6b5cf5e ivtv_udma_unmap EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x20242042 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3ec6ef51 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4e6f0200 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2c150cb1 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x50c1ab4b saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x531600d1 saa_dsp_writel EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7b72a964 saa7134_pgtable_alloc EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7f68c76e saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x831b9291 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8573bec9 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa42328d1 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa4f499d3 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa58d0d37 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa8a1a908 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb29e9872 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdb293058 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x05ac2862 csc_create -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x29446b40 csc_dump_regs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x29c8ee6c csc_set_coeff -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x79f6ea36 csc_set_coeff_bypass -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x057a4257 sc_dump_regs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x275d32f1 sc_set_vs_coeffs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x7837c888 sc_set_hs_coeffs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x9793a7fa sc_create -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xd6f0f79a sc_config_scaler +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x82e132df saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x91135ece saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x924d632d saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb1aaf2c9 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbdfe57d6 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc157b84e saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe8e10d14 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0x4d252f0d csc_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xd9e8f1bf csc_set_coeff +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xdc549c21 csc_set_coeff_bypass +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-csc 0xfd15705e csc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x0eb43f1e sc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x7996979b sc_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0x7e78dabd sc_config_scaler +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xe1e098d3 sc_set_hs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-sc 0xfc32f2cc sc_set_vs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x0091cc7a vpdma_hwlist_release EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x07464bcf vpdma_add_cfd_block -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x0b649fdd vpdma_unmap_desc_buf -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1a032324 vpdma_hwlist_release +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x0b87c3be vpdma_hwlist_alloc +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x1aaaa873 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 0x2b95a5c5 vpdma_list_busy -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x2f50f60a vpdma_set_frame_start_event +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x292ceac4 vpdma_hwlist_get_priv 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 0x3414c5a0 vpdma_create -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x3b3a0443 vpdma_set_bg_color 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 0x50ec40af vpdma_rgb_fmts -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x5b3e4cfd vpdma_get_list_mask +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x5a081772 vpdma_unmap_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x5ddba68a vpdma_get_list_mask +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x5ead70b0 vpdma_list_busy EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x60708dc6 vpdma_raw_fmts -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x67d7986d vpdma_hwlist_alloc -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x681c02af vpdma_set_line_mode -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x6c8247b9 vpdma_clear_list_stat +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x628505fc vpdma_submit_descs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x697e5349 vpdma_update_dma_addr EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x6ea95e2f vpdma_free_desc_buf EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x73ae3d42 vpdma_add_cfd_adb -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x75d90b44 vpdma_set_max_size -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x7d94c0b3 vpdma_update_dma_addr -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x941b0106 vpdma_list_cleanup +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x7a62aec6 vpdma_clear_list_stat +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x7bb27920 vpdma_get_list_stat +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0x872e373d vpdma_set_max_size 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 0xb414a8fd vpdma_enable_list_complete_irq -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xc3961143 vpdma_map_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xaa3cf8f1 vpdma_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xc0617766 vpdma_map_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xc8a8edc6 vpdma_set_bg_color EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xcc78bec4 vpdma_rawchan_add_out_dtd EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xd0aeae6a vpdma_add_out_dtd -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xdfd216f2 vpdma_submit_descs -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xe47daf3f vpdma_hwlist_get_priv -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xe4decd33 vpdma_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xda70c5fc vpdma_create +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xe0673d0e vpdma_list_cleanup EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xebbec4fb vpdma_alloc_desc_buf -EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xefabf169 vpdma_get_list_stat +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xf325427c vpdma_set_line_mode +EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xf4d507bf vpdma_set_frame_start_event EXPORT_SYMBOL drivers/media/platform/ti-vpe/ti-vpdma 0xf82483c6 vpdma_reset_desc_list EXPORT_SYMBOL drivers/media/radio/tea575x 0x0d8885c5 snd_tea575x_hw_init EXPORT_SYMBOL drivers/media/radio/tea575x 0x28883988 snd_tea575x_enum_freq_bands @@ -2126,57 +2028,44 @@ 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 0xc3eb9db6 ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x7bfdcb42 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0xd662661c fc0012_attach EXPORT_SYMBOL drivers/media/tuners/fc0013 0x6dc42a7b fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x9a13c8e2 fc0013_attach EXPORT_SYMBOL drivers/media/tuners/fc0013 0xcab828e4 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0x32a36b97 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xc09709a1 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xddb0ccc8 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0xc02c5ec0 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x87f21c9e mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xab271155 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x2ae44f9a qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x8295178c 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 0xd62db305 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x511c1ab9 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0xda930b11 xc5000_attach EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x63fc44bb cx231xx_register_extension EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x97e5ca34 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x65009d7a dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x69735913 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6f0f0cd0 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x961069fa dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xae52c9ef dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb592d971 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc584fb16 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc6c392e3 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfebc7fca dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x12de8477 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3378d45f dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0e71a0a3 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x18789403 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2ebaaf48 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4722e383 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4f1a84b9 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7eae0b49 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8bfcc030 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc833c10c dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf084bb63 dvb_usbv2_disconnect EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x65d933e3 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6947148f dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xdc2ebbe5 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe84a1c85 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf56e26d8 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6aa76d82 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x9abfeee2 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xcca5d50b dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd2fea1a6 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe5d2aa8f dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfac38817 usb_cypress_load_firmware EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x72dfac8b af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x8b3fdd07 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 0x065c7609 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x066c877b dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x35721a9f dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x70c0f1dd dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x72f56cd9 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x30112b54 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3d93a54b dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3f56ab66 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x53ee6cc3 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x877fdb9e dibusb2_0_streaming_ctrl EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x94d178f6 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb00da4ea dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xba348536 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbc1183c6 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x13fd1132 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x3a2a9cc0 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa42e78dc dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa90768d1 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb6142b90 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xea7b15d5 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xb6e653c8 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xe6f47181 dibusb_dib3000mc_frontend_attach EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x0e7f56fd em28xx_register_extension EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x5b303c01 em28xx_unregister_extension EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0339ed99 go7007_register_encoder @@ -2340,39 +2229,39 @@ 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 0xed3d5e2b mpt_attach EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfde1515a mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0100bbbf mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x04fb484b mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x203402bb mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x280586c4 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x312b824c mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x34c022a0 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x376ad68d mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x205d3452 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2f465c69 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x363a4b99 mptscsih_slave_configure EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4433d73f mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x497acab5 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4d9fa753 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x53e04819 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x728e6bad mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x86fd1165 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x45a983c0 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4a3302cb mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6293bbe8 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x70e7a639 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7526d818 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7d03590a mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fc4b106 mptscsih_event_process EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x93f0f122 mptscsih_remove EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa6ffc8fd mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa804f12c mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xac4eaf17 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb8e5bd96 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbc5f00b0 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbc9d38eb mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa9125d99 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa95adc7d mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xacb53b52 mptscsih_flush_running_cmds EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbf668e44 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc0f6b2b2 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbff3f492 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc374e138 mptscsih_host_reset EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc7ff3b41 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe1763f3f mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xef10f792 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf7c148ad mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf89a1192 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/mfd/axp20x 0x095ff6f4 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0x378e8b53 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0xc942f074 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/dln2 0x42933b82 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x73abba6c dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xdfaaead2 dln2_register_event_cb +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcd175004 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd0c2a75f mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd95664ee mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdb851ef7 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe6118e12 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe9f094c1 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf8b4edd1 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/mfd/axp20x 0x4976e6bc axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x77a79b1b axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xb7ba9d9b axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x6ddf2898 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x7ec87c69 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xb3a40a54 dln2_unregister_event_cb EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x0d73a6ee pasic3_read_register EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xeea08918 pasic3_write_register EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0aef1fc1 mc13xxx_unlock @@ -2419,14 +2308,14 @@ EXPORT_SYMBOL drivers/misc/tifm_core 0x996bbe06 tifm_remove_adapter EXPORT_SYMBOL drivers/misc/tifm_core 0xa2b4c7f3 tifm_register_driver EXPORT_SYMBOL drivers/misc/tifm_core 0xb428a62f tifm_add_adapter EXPORT_SYMBOL drivers/misc/tifm_core 0xd1d1921a tifm_map_sg -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x08248638 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x38d88e4f cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xca032744 cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xe173b617 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xed9f1a9f cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xb31cca4e dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x308734a1 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x71c328fd cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x9fe94b5e cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xb08bfa21 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xc99d7db4 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x4a2447d7 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x7f04e3fc dw_mci_remove EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xb4719d07 dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xcc35efbb dw_mci_probe EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xd5d972c7 dw_mci_runtime_suspend EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x69402f73 mmc_spi_put_pdata EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x98068389 mmc_spi_get_pdata @@ -2454,411 +2343,412 @@ 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 0xda64ef4a mtk_ecc_adjust_strength EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xec8b9207 mtk_ecc_encode -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x094ed5d2 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3edbde62 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x40f19443 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4f8ec0a4 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x085938e2 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4da699fd arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x63844181 arc_proto_default EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x78dbdefb arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x92b00f34 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x95208e1c arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc22f6004 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x660e3393 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6da44396 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7285db0a free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7648544c arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x87a45746 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9f65692a arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb147af0b arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbc0072c1 arcnet_timeout EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf448dc02 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf5786a8d arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfb82ed93 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xaa0c66a9 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xcb6436f7 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf556903d com20020_netdev_ops -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x01d52134 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x068f590c b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0e68079e b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0efd876f b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x123d27c0 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x210c2d72 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2a96e2d3 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2b2ad4df b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2fc68438 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3512bb9d b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x357f56ef b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3628edfa b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3bd434a0 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4043c929 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4677b3aa b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x49d673f3 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4f12a361 b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x500faf6e b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x50f05a40 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x56df4d6f b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5c0da740 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6781bb6b b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x69fb7e74 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6bcf8c2b b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6dabc53a b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7f2ae0f0 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7faa24af b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x83d22c1a b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x86ba437e b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8d6e39ba b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x97711f39 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9e45895a b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa5ae3af0 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa86e97ef b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb00b2b72 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbb03105e b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc3303b30 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc8c8dd0a b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe194ac19 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xea5ea594 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfbe8e33d b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x0c59b751 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x113c18cf b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x8a50f12e b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xabf891ea b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc46a2710 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xf2e3846a b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x63bd9a3c lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x9e4278cd lan9303_shutdown +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x1facf4cd com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2ebf635b com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x4b6977df com20020_found +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x02064b43 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0347c646 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x06f903b8 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0ecc2d42 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1169975a b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1484081f b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x18d59c9b b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x22379dae b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2522207e b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2957acb0 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x30619dff b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x368d4ba4 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3b5556e8 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3dc7a42c b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4a12548e b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4d42bbe6 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x51a1e462 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x546f1ab0 b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x57264ad6 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5e7dd1b5 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6bf27939 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x714afe19 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x718051a2 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x730bb2dc b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7a8fe423 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x80440e36 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x83b5f4c6 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9ad1a773 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9d050349 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9eb11405 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb06e5bc4 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb1a8e004 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb3331973 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xccb5c139 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd0311fe5 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd1f612c0 b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd5c49374 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xda0b97b2 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe026353d b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe1e21962 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf62a002b b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x3a412b79 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x891aab54 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x8a630835 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x8f462880 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa3651160 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xf7e5d185 b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x59034e9d lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x637a05d4 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x9d2cc1fa lan9303_probe EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xf53763a7 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xfb832405 ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x82959408 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x2372f53c ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x3d265dac ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xa53abe72 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x325371bd vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x406bb54b vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x51870319 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xf7e37130 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x6c189069 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x166ef30e ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xe5d788c8 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xf32b3903 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x1274a9ae vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x42704b9f vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x47d42b43 vsc73xx_shutdown EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x063d2088 xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x762eb126 xrs700x_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8f71ab59 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x077fdc87 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x1e1bfc5b xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x4db5d8fa xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x93fa1e13 xrs700x_switch_shutdown EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xd7d44a07 xrs7004f_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xdd11431e xrs7003f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe0e57edd xrs700x_switch_shutdown EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe63c509a xrs7004e_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xecf95983 xrs7003e_info EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x31fa71f9 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4410791a ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x47801ac4 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x683e2b98 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x81683598 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x98bd0c2f ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa5f419d2 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa7a7a014 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb9a968b8 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd1da9157 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x4dc53bea bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1441b9bb ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x41074189 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4fcb8735 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6cc4cb37 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8767860f ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa90a4b28 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xae2ecb5e ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xed193a60 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf7e13550 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf9901eb3 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xf5e639ce bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x3b2b5f9e cnic_register_driver EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xa57dda11 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1be77417 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3c8e1a55 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5d4444dc cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5d63dd7b t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7e70f467 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x93a63108 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9f8b6bbf cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb1bb2da9 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb277dff5 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb6b587d2 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb7497df2 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb74ca398 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb9ecb46f cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd8d49a7f cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe19728df t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfed35c88 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00e15c08 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x048f0c00 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x07b891e7 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b5a8d95 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x01189c12 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x155a11f7 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1b426c15 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x20d07faf cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3c767aa7 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x464bf512 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x56ae02b4 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x618d606a t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6f017a05 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x823f5d4f t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaca196ac cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc44e1c51 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe102b165 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xea3285f0 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xedf97b59 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfbf1ffc0 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00c666f5 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x05df3777 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b6aba1e cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b9e1fba cxgb4_crypto_send EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x10dfb6c0 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x14df3e05 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1758345f cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x17976495 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18f1e240 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x19169971 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1eecc331 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2559a37e cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x27ba3eb6 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2fc5ce3c cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3684e879 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3dc8f7ec cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3fddb374 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d360583 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4daf3619 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x16bbc330 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1dfcd99d cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ed2457a t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x22329f81 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x25f66245 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x332d76e6 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35cdab2b cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3f4a2d4c cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x41524646 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x433599e9 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b98e059 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4f8b9972 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4fb8d440 cxgb4_remove_server_filter EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x53f85e73 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x56e191dc cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x61187a5e cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x61413b40 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6f9574cf cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7b11349c cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8069dc39 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x828fbc38 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x82f72abe cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x859a4347 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8899cf9c cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x88b230c9 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x909bf298 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9b57ac76 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa1fa2677 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa3080065 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb7325f22 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb7e9a977 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc859370 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf3f714f cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf73faf1 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc3c60735 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc77b5276 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd2156efe cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x530f6698 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x54618119 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x58ff3ec7 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5babafcd cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6545e1c1 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66a258c8 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6bdaeea6 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x70da63e2 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x71ef4ffc cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x72420fcf cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d71f05b cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7f4f7e95 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8ad22d03 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ffaeb3d cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa948c4cd cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaabf9191 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaceb5f22 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xad5c311a cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaee11bff cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb5f2f713 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb9a6791b cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbe806563 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc266ed1b cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd0abb0fc cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd461b400 cxgb4_bar2_sge_qregs EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7e2beeb cxgb4_ring_tx_db EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded2869b cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe610b906 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xecec3226 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef5fc0d4 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe59d1ff3 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf44f3323 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf492e64d cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0ad777fc cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0c91afed cxgbi_ppm_release EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x2af8e1ed cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x2e7c4786 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5a8b451f cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6004b14f cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8d5aee0f cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb4c483bf cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xcdc7d4ef cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1bfad8ed vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5553b342 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5ee0f0a2 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6f80362a vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x834a3953 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb0e2bd1c vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x0434fb66 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4424f33e cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x82661950 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa4efc213 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xec2c352d cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf59450ac cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x25285b6d vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x719a3c7a vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x87d91579 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbb908810 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xde4774a3 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe670c0a9 vnic_dev_get_pdev EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xed9cc6be be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x59877197 enetc_ierb_register_pf -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x3e49a45c hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x648741d3 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x8ffd64ed hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x8e33178c be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbad24ef4 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xbd8d85ac enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x35d2c908 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5e2ac381 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x6ef3310b hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x921aed7d hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x9d4dcc45 hnae_get_handle EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf8d8e84 hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xe0f52f6d hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0xc350523d hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x591fdcbc hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x69fcbf7a hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x6a973fb4 hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8a174e73 hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x99399302 hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xa9daf0c4 hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xcce67e33 hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf9dcbfbb hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x3856a2ef iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x750ab998 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x4df39da9 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xb2de59d7 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12642ef2 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13aba0d7 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bbe9746 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fb4b4e5 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ceeabf6 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x311488c3 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x347ac3d4 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d5c0ede mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42f5a2ec mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48119b9b mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49c764bc mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c59fed2 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x542e876e mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5666872b mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a3405c0 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x669d4309 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c562397 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7046880c mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76c161c8 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7af83368 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x9b565f20 hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x558b744f hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7d550c49 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8881db12 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xdddac5df hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe07113d3 hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe549b9d5 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf20d4d6f hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf735e769 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xd62b4844 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xdea56ab8 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x7b04bd05 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x9ca2d840 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0063e22a mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09453c92 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0acf8b46 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x161b39d3 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17913a63 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20bc2ccc mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d4d974f mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e7af646 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3353301a mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x338cb845 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34436bbc mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x444382d3 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45089e33 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47500582 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bc7309f mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57c6f7ef mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61a140e7 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x642ce9a2 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67376886 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ddb3f4d mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75c9ef58 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7604c208 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cc2ada0 mlx4_put_slave_node_guid EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8063cb6b mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x819c2cad mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x898adf84 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89aa0f14 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9905f531 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ab49d64 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab41793e mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb161db43 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9d75587 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb415624 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc031e9e8 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc33ed862 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc474216d get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc89b0858 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd322f1c mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd21ae265 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4d1b59f mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe55f4fbc mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe80b7d68 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8ac3502 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef6dcaaf mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf405d565 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7a07620 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcc913fc mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01cf680d mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02669852 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04e91c7c mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06901e81 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0729c609 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07f7f907 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0814338b mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a143c31 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a860517 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c0f7383 mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cd1b9f7 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x892758bd mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b7db1ab get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cf197da mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8df60a0e mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9883a15b mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa70a26e2 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaba6b364 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabb3e9db mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac15ef32 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf3d7d0f mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb28fac6d mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7304b58 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbb822c0 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd81691e mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe22e42f8 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6ec3858 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf221d6a2 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5a76e2a mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7dba70d mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb0c41ad mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffbe9d13 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04f624f4 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x051c81db mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x082c98de mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09930aa3 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0afbd760 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dc5aa77 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e74d762 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 0x1075082a mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x123644aa mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x167e94df mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10f22210 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1295f193 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x137ebfd5 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13d6ca00 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1686f88e mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16deae39 mlx5_core_destroy_rq 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 0x2126fd05 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b71386f mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bb842b9 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c40283c mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ee30459 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2365c2dd mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2443998b mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2749dad4 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b368a0b mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bc00981 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bd66733 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e4e0618 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ecdc603 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f7bc37d mlx5_rl_remove_rate 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 0x2fd4bc4b mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31ba8b9b mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30a2c1ea mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32fe32a2 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33d2e970 mlx5_core_query_cq 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 0x350a358c mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x351e6a68 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34b7bf30 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35a70424 mlx5_fc_query 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 0x3b74fb5f mlx5_debugfs_root 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 0x3e43b445 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4145f171 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42716041 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42d9057a mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4426c7d6 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4439086e mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x448545b3 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44a86951 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x451d2ea6 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4692927a mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b15f2fe mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c8162db mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e5a2b4c mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f7f9e3c mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40b1d885 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41b8e825 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4296eebd mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42cc4d2a mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48bd4856 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cf43ac3 mlx5_fs_remove_rx_underlay_qpn 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 0x4d7caf49 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4eb37eed mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52d07b14 mlx5_eq_notifier_register 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 0x564e678c mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f16797e mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b640e5c mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c4ecabb mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c9a8191 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cfa626c mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ded3131 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60e92e83 mlx5_lag_get_peer_mdev 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 0x63a2be86 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66deba88 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66f485f2 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68b69371 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67203aff mlx5_core_create_rqt 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 0x699a873b mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69bf55f2 mlx5_core_alloc_pd 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 0x6e9177d7 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f3d2e46 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f6f3460 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b78f9fa mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c5dd8dd mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c769880 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6efe499d mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x705dc35a mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x723b6cf4 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 0x73407fe3 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76274588 mlx5_core_destroy_tir 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 0x784cf0e8 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x769566ee mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78f81c5c mlx5_eq_enable 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 0x7bc4b9ac mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bf66083 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7db96a71 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fdd5e23 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80b2bf54 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8386fe49 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8588fd4c mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85fd1ad8 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86a4084e mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88a1f478 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8abd690e mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ae9ad7a mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c09604a mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c57828f mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x921c39db mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c17b380 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d1b20dc mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d72f046 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7dbcab11 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81ddd01e mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86d709ba mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8722d631 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x877798f2 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87bc2154 mlx5_core_attach_mcg 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 0x93354ee9 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93856ee6 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x939510fe mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x947ac54d mlx5_query_ib_port_oper 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 0x99884311 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x999693b6 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a3cc03d mlx5_eswitch_uplink_get_proto_dev 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 0x9cf81ce4 mlx5_core_destroy_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9eda93fd mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1563a92 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2592fc6 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8078c7c mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f740029 mlx5_buf_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fe9fe3a mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa17c0b59 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4897e82 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa541bcef mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6e02c01 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9b9f1c4 mlx5_core_alloc_pd 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 0xaf917fad mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafe2b89d mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0f2f8a6 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb146be2a mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb55104c5 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf8f09b1 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb321642d mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4047a1d mlx5_eq_disable EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb631ebfb __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6e95039 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7117ea1 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7602d74 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7f8c769 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb919139d mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb91a6017 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbaf2b874 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb6676fa mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbca1f2ce mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6dd5888 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb709523c mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb81f594f mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9f5de16 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbca2e147 mlx5_notifier_register 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 0xc0343517 mlx5_eswitch_register_vport_reps 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 0xc0c148a6 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc25f25e6 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc44c0a49 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc58f48d7 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5f6d529 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc88e688b mlx5_core_dealloc_pd 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 0xc9f2d671 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcae5b0f2 mlx5_core_create_cq 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 0xcfb89bb0 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1c2be9e mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd26e1b97 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2eda995 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7171619 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd75e08ee mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd825e929 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbba2378 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcc3a456 mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddcb2c5b mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddf0d442 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde120267 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcebd094b mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfcc4847 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2b3c8db mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3d60e23 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd45b1fbc __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd508af73 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9592eeb mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc3d2245 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddc018c8 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde310abf mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdead94ef mlx5_comp_irq_get_affinity_mask 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 0xdf87ffe8 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1b0b1ad mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe213b416 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe37b9617 mlx5_eq_get_eqe 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 0xe44642a4 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe51b2037 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6894f16 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8545667 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9d14ef2 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea1f806d mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3d669c7 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe569913c mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe699c5e3 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7851ed6 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea53c4f5 mlx5_core_query_mkey 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 0xed62a020 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf165b8c4 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1d98881 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1ee68eb mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf388e0f3 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefb3b166 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0499a89 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1cbf50f mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf43fb477 mlx5_cmd_init_async_ctx 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 0xf5ab23c1 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf60a1362 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7482f50 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6395077 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf792188b mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8519caa mlx5_lag_is_active EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf94cfda1 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa4fe3be mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbd70b5d mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc2d898e mlx5_rl_add_rate 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 0x5577561d mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd22362c mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd50d77d mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xe58bf85b mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x00bedf17 mlxsw_env_get_module_eeprom 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 0x0dab2947 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x10ad06cf mlxsw_core_trap_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 @@ -2867,49 +2757,46 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c6605f6 mlxsw_a 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 0x2c3d6e23 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2933411e mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x35f012a5 mlxsw_core_port_devlink_port_get 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 0x39f756cc mlxsw_core_rx_listener_register 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 0x425c794d mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43fabd99 mlxsw_core_port_devlink_port_get 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 0x50eec013 mlxsw_core_trap_state_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x53f6bdf5 mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x57e736af mlxsw_cmd_exec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x6264afd5 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x64ce3cee mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x652a7697 mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x67043f83 mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6f3e80a9 mlxsw_core_ptp_transmitted 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 0x7965ead0 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f4dcc2f mlxsw_core_trap_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 0x82988555 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8614c239 mlxsw_afa_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 0x8ba5fa7e mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8c6209f5 mlxsw_afa_block_append_mirror -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8e7dffb7 mlxsw_core_ptp_transmitted 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 @@ -2917,15 +2804,16 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_a 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 0xaa600760 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0248340 mlxsw_core_port_eth_set 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 0xb8d955c4 mlxsw_core_bus_device_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 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 0xbe82d6cc mlxsw_env_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbf3f7943 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 0xc9c2e4cc mlxsw_core_lag_mapping_clear @@ -2933,106 +2821,107 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_a 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 -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd255303f mlxsw_core_skb_receive 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 0xd65f47b6 mlxsw_core_trap_unregister 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 0xdd4b1746 mlxsw_core_driver_register 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 0xe670ab1d mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe685ae1b mlxsw_core_trap_state_set 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 0xf1890e3b mlxsw_core_driver_unregister 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 0xf6b3e5e0 mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x25cc6c70 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xc8d933a9 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xb8d7dc09 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xdf1f356b mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x018a69da ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x01c69fb3 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x01d00837 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x039903aa ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x068b4d99 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x097ee173 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0999f553 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a4e0196 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b3dd6d8 ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e59ec25 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1025ed56 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12ee5cb2 ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x145ca3c2 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1576b68d ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c9afc3b ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e93b160 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1fbf9879 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x23b12523 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x8e76955b mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xf1e313bb mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x67684ae2 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xe1c924e3 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06efffce ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0740ae46 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x09a68b28 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1629ae54 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2182693b ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x271d835b ocelot_port_set_maxlen 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 0x27d5115f ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36fa5066 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a15a949 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3b0aa93c ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x42613f76 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d255b46 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51f86fa1 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51faee35 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x550d34f8 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x58aa4c65 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5fda50bf ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6affd384 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6daa6486 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72cd8193 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x75f9660f ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x787b631c ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x799e9dfd ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7be6ac8a ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c96ef8b ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x824d6f6b ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a5874fb ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2e525b62 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x319b53df ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3647d13e ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39d05da2 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a304117 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c8cf64b ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3fc15073 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3fe1d388 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4b049c51 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d5632fd ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d78f187 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50770332 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55174682 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5758047c ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60611e5b ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x653040e7 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6541ca81 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x66d6de14 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6724aff1 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x67814e15 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x683b16a7 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x690aad58 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b4cdf9e ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x712a26c8 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7202f299 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72940ef1 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x76d0add7 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b12da13 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8433f326 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x87d48400 ocelot_mrp_del_ring_role 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 0x9077efec ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98ac1439 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c084851 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5f0a2f1 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa968648b ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac43514d ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0b6da50 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7984eef ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb88e2c48 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbac628ac ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc2ab9501 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc31f86ad ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc684fafa ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc6b8b4aa ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc8cd5975 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd1d10941 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd62a286c ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd63a2820 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda6dd35c ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdd9ad42b ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2459d6b ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe3b7a654 ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6e6d7fa ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef1dbc26 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf249aa9e ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf292fa67 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfdc78267 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfecdc9a4 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x45ed06b1 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ff7ed07 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9134bed8 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9fc37975 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa6a223c8 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xacac5d3e ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1f20149 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4561b80 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4c07e54 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb696cece ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7d8d686 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb9c07f9d ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba5daab1 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbed93dea ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc18630d5 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5a6d30c ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcac44f6b ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd08a59d2 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd1637d1b ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd29dd13c ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd422a710 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6d1659b ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdac0a651 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb1d7f23 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdde6fb50 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe4492066 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5263ede ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe59d512e ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe609ba20 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe828cdf0 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe8a3af71 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf992379f ocelot_sb_occ_snapshot EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x712d760a qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x76659a30 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x96277781 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 0xe1824524 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x210f136b hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x26d4db50 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x74fd839c hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa4828967 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xac8c2318 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xf5f19734 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0322505a hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4a944e85 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4b1e33a5 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb076aadf hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf4cc7d62 hdlcdrv_register 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 @@ -3040,678 +2929,678 @@ EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok 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/mii 0x031267e2 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x06c00c2d mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x5822b285 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x672fc827 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x775e9f45 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x8355e35a mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x963d32f3 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0xbc454500 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0xf8dad9cb mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0xf98cffa7 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x2d87cb94 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x2fff9938 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x5004a804 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x579a3005 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x7619d6bb generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x86097e9d mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x86f04796 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xb5b8ae87 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xc0934bc0 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xe91ced57 mii_ethtool_set_link_ksettings EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x416912d9 lynx_pcs_create EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xded5f49d lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x30f14d86 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x3ba616cf pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x4aa678fc pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xa649bd51 register_pppox_proto +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xc3136fc3 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8d60032c pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x9dace795 pppox_ioctl EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xab2c22e1 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x2cf35d6a team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x3175f293 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x3f4e1f37 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x9fc66874 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xbd2db5c7 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xc0e57b84 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xf4fd7e73 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xf72acceb team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/usb/usbnet 0x13b605fc usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x14075864 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x42171037 usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2463e3cb attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x57953d36 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x598443fc unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x69816529 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x8f9fbaba alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb5a8d87c hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc861d402 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xdbca20e6 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe3b45140 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe69c8b2c register_hdlc_protocol +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe60b0677 register_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x2996efca sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x05d1b68d team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x12cd2a01 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x419f1c71 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x791edc76 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x7ad47534 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x98f3e5a2 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x9af14bea team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xa0c0aabf team_option_inst_set_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x3a342449 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x9318cbf3 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xf13f21b6 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x24a142b7 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x49ed453b alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x564b9119 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x64f7669c detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6532d0a3 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8574c180 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa71b356c register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa81c6adb hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa9867b98 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xdd5d5bc3 attach_hdlc_protocol EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x129758bd ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1dcd804e ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x221116e3 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1c1b8ad8 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x21c5b68a ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x37a761ae ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4505ffd5 ath_key_config EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5e72d327 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7443eb57 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x82bcd2e3 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8e4c33b2 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4be00054 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x95b7ff9e ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x99de152d ath_is_mybeacon EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa2a99176 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb33bf3a3 ath_reg_notifier_apply EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xba9f88da ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe509cc86 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xeac26b22 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbec666ed ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc09b5b2b ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd14e6bcb ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe13e01dc dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe3ad9639 ath_hw_setbssidmask EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xff22c82b ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfc4719ab ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015664e2 ath10k_htt_rx_hl_indication EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x04874cfe ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09f89e79 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0a764a5f ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x14eda95c ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1618760b ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1680a57e ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1a360d71 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1dbc3e67 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x205dd451 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2146e849 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x28265873 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2880dc51 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2eecfbcf ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x31af40f2 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x351bd109 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x39bbc4e5 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3c951406 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3df9fd36 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x491ec7e9 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4937be66 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x49e4ef4f ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4a4a2e57 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x53fe358c ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x60f74f04 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x68273ba4 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6b03a084 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6c1203df ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f3088af ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7585a9c9 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a6c2853 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x851a51d5 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x90703773 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91a40afd ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x937d1525 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x959048cb ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa47ad5d4 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaffe5de4 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb7752dbf ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc360851e ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc46ab9f3 ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4a12044 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x019fb9cf ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09c7bd04 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c830d49 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1982f9ec ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1e0b3ad5 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x268ffd86 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x328b4728 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x32e2ffde ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3389324f ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x351654f4 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x35dc0992 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b8f37f8 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3da95276 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x454e567b ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x468fbf8d ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4993de77 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4bdd8291 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4c06f6ba ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4c8661c2 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4cf0457c ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x55181067 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x587de3db __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6b795640 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f49eb1a ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x750bd988 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78aa1fa5 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7985aafa ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x79955628 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x80b714af ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8468c2e3 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87e87631 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b1fe31a ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8c7e7b5a ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9289b57b ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9a1262e4 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9d98b090 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1549fa4 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa9df93f8 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xabb6d2e2 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb2f6a6ba ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb37eb5b9 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb782ffe9 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xba81d97b ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf8fac80 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc05a20b9 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc97f20a1 ath10k_coredump_new EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc9912b66 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc99f2f6c ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcbca680b ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcfd50781 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd02daada ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2cb6283 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd74b2940 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd8fff806 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdb38ce0c ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdcf05af0 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe50df70a ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe6b492e6 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe6bf9da1 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xea249e74 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf4e78bfb ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfc279af6 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x14cfd2b0 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1e1fee90 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1f0cbaaa ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x201eb9fd ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2d615f4a ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2d8ec1b7 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3bcf2f08 ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4b77717c ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x538c1d91 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x579570f1 ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x599df80c ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6a49607b ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6b03135a ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x71f72067 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fe34124 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x974d7e05 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc8d66e2 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd20e8bd2 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd4208ce6 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xda348db5 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe0ffa5e6 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe32e6b71 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xef3a18e5 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf42a381c ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfd4d7c46 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0b5f9ef5 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x152fcd8a ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2837afec ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2ef238ae ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3a1aade6 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4fa350e3 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x54521fec ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x63413523 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x67b62272 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6cbc42c6 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7d1fdeb7 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x93be652c ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x99bbe8aa ath11k_err EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa0288690 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbef22f73 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc4998ffd ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcfd5fa53 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd86eb481 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xece92613 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9ead8c48 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa8f68cee ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb5897695 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbb557f38 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc54f0472 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd2e64903 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd6046ae4 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xda659559 ath11k_core_deinit EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0100e07e ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0738885e ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1149aa97 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf496cdb6 ath11k_info EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2417958f ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x29c8ce86 ath6kl_cfg80211_resume EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3521351a ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4006cc9f ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x43218c96 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x507838e6 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5d8eac87 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x88e0024f 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 0xa5ebfabb ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9e6a95d8 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb02ccba5 ath6kl_cfg80211_resume EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc16b8ca9 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xebd5a32b ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfa1c4573 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x03ea324f ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x228b73a0 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x25b010da ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x26847abf ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x36f2616e ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4a21acc6 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x574ea785 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5e5be687 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x61182f1c ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x70f0eecf ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x75454058 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8ec6f865 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x91bc08c2 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaba619a9 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd5929d56 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd6c64f86 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xecde0668 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfe5d12aa ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfec122e3 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x02db4f2c ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0b6deb7d ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x12a1406d ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x14457dae ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x20f35c8e ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2a75a2e1 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x326b7690 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4bf3e448 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x57839b5b ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5ec592f1 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6310384d ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6e952ac3 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x735a0788 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x816d990d ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8f719073 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaf9629fe ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb1114b26 ath9k_cmn_reload_chainmask EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbbd41117 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc1d40adf ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcaf951e3 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcdb70000 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb902d11c ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbb14a80a ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xca4b68f3 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xce87a340 ath_cmn_process_fft EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdff3f075 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe1884f40 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe98817fe ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf4096f89 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfc495836 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0086a209 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0545fb9b ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x057b9e40 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0620d1ed ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e5be55b ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd6ebcfc7 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xecbfd6be ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0047df40 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00ea5e24 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x042d43fd ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04bc4af2 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06cdc8ee ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ece1fdd ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f0afe27 ath9k_hw_init_global_settings EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10ea0037 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10fd37a0 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14530f77 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14b28bd1 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14dc9a20 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x153c8d7d ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x162fe630 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16b68709 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19cda219 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d155500 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x239c2b6a ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2423006c ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25aba1c4 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26d98997 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bfe0292 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c9ae7a4 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d405479 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3394a09d ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36fda13e ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x390763b8 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x421ee536 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4249a02a ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42ff86b9 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43423885 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4431d663 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44a0e944 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x457381e2 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46c20250 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47226509 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b74d3a5 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x518635bd ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5506d068 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a0df7a7 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c75a503 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f24697a ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f3fddd7 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x605e8347 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61e4c623 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b078fef ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b997b05 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6fe857dc ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70ebae5e ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71ba2cbc ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73c7858c ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74281511 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x752a76e4 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76b87604 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x786ea0a0 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79197a03 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79592ba5 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7be1c4da ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c1fb8a0 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80bdcc43 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81feb47e ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85bcf288 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87908d0c ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a0d3fc4 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8dfa2be8 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fa5e03e ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91e02c03 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94b0cb7c ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9712d7b1 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9721607d ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x976ff6cc ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b64b137 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e35b6bd ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0600bca ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1a4dfc0 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2143e5a ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3444c2e ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3cd329b ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5a6ede3 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5c20872 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8e1e181 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa4b747b ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb81d14da ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd04d220 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbec34bd1 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbecff947 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc36fc640 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4c6e97d ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6530e24 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcedf532b ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd05bbbc3 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd274fefc ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd622bfcf ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6d60bcf ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd79435e1 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd80f6da5 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda7b7c69 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdeeaf44e ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe098deda ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe12e07d3 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe449439e ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe53d14b3 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebd9635a ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed7c373c ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee8bd311 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefdd77d9 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8c25999 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf99f6122 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9db74c5 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x87f3f773 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x92b73b76 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xab34cfc2 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x03c59a7e brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10d19099 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11177b3c ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16bfb158 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1709026d ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18c14344 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19928b38 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b5388b8 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b5df4d3 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c062492 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c8865a7 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x236a7cde ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26ee97e9 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c6fafef ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3098e6e9 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31c8106e ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33c39177 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35fa52ac ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36612706 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36e3bf66 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x382fd1ea ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d9aa62f ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f3fd7c6 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fba0037 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x403da6fc ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40a93538 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41517257 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43dc956c ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45e62e9a ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47d87a20 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a4c0f0b ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d2277d7 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50bafd39 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x513fada6 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5191d500 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53811566 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5755335a ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x587c67ab ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59a7ec13 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a6f0af3 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b41928c ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bbd381c ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c5e7d62 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f2e9ded ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61d4c4c3 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63a98e00 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x643c22f0 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65fff53b ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66e16c94 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66e49c1c ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b00004b ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6fc1666f ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70bff700 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72221262 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74e6ea25 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x763ae2f2 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x769382c9 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77012efe ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x773375b1 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77afab29 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x797a9460 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80aefb34 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80b9efb0 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a1513c8 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c5c4434 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92aaf63e ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x952b518d ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x954bc2eb ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97727cef ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x981373a1 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d4a53a5 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f79813f ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1cfad65 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2618c4b ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa458a0fd ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa1621af ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad49e588 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf2d8d18 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf46a640 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4a298e1 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6081d83 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba40cbea ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbd257a9 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc9d5a7a ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbeb4d0bf ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc15e7558 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2af964e ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7933864 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2a3b34c ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3fda7c8 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe40ffc1c ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe68a7ce6 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe724df5b ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7ca36d9 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe86be1fe ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed47b077 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee271f38 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf196793d ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2f20bb5 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf317d62d ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfaae832f ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x131bbbf5 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x347ce800 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x3fb27e3d atmel_open EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1a7eae80 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x25230db6 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x368c5a76 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x49cafaf1 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7a634e9b brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7e604668 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8695f200 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8de3d57c brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5f29fff6 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5fd171ce brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x71a9da18 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x86de3cde brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8feb2e8a brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x90295610 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x917a3c2d brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9764dcdf 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 0xa746a669 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xac76d8db brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa8921205 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc034a931 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcccb7f3d 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 0xe9ac2e95 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf8844387 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0029f728 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x14f5d379 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x29466fe1 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x33f2bfb4 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x38b0a2b3 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3d042ed8 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x45d681f8 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x58d005d9 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5a113f75 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6b174e79 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6c58c95f libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7df266e6 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7ef0ed07 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8fe8ae57 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9c6a94c3 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xac0e63bc libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb45c98ad libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc1f6c284 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc2712426 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe896d7bd libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02edc5c6 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02f82e26 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05e2ba2a il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x065b3990 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06d7af6e il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0a9d7269 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b69dc8f il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f9a9fac il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x105b228c il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11954539 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11bd9a52 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1452fcd5 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15354f65 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x171b8c51 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x18524e55 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x18af9a91 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a65ead5 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2349abfe il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2582ed50 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x27bcce28 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29b4bc55 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xec2b63cd brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfa97bfd6 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0da33dfd libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0f146dd9 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1c6cfc5e libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x200ba331 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x24e61171 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x25ae6b27 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2d2a2978 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9c47def8 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa39fc703 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xad580ff3 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xae86cb15 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb5a2ebe6 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb60c1488 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc4a234be libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc5a94921 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc8af214f libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd4f5475d libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe8644b8d libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf2a46959 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf92da705 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x00cababe il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02bdc0ef il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0595addd il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05ad8a4b il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x068e4d89 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06c25c29 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0a3d5201 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d637ab7 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f3c3415 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x129f66fe il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13c6faa1 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17da6b7c il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a4512ef il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d4bd388 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1fb03f7c il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x27ed4051 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2927fdd8 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b4cd1b8 il_power_initialize EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31acefc5 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x330f61ea il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x331544fd il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a1a6123 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a26897c il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d56207e il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40e3415f il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x317118c8 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32f984a3 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33cb8d8e il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35470465 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36008369 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36c55c66 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3849996d il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38face48 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3acc082e il_tx_queue_reset EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41b3f406 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48114943 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x488636fe il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4cd4c81d il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4fa6d7d2 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5318f59b il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x537b9f88 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x563f4209 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5b0eaf87 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5b9eafff il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c365d27 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c6db89f il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f086bb5 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f29f67f il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61da760b il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67f0b230 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x699bf053 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6cf18f2e il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6da3ba4d il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f2203a4 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f96618e il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f9925f8 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f9a51c8 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x745e04fc _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75624616 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x770aa261 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x773c896e il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a527df6 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82585b59 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85ff4719 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c486ec8 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x936047c9 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x937c8d7c il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x98fb70bd il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9af269cf il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x429308b7 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44c1bd4f il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4e4e7b0f il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ed37cf1 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50795be2 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51e7ebb6 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x533209e8 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5387032e il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x539e5b43 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5bc8c916 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d51f64a il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x608c2441 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60d092b0 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x626a5e00 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f4dafe6 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x71adb02f il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x74ff18a8 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7785a9d7 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79268d91 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79716d3f il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x829aebaa il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8413fee5 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8443d7be il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x868942b4 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86fc380a il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89feec3c il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a59463a il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ba2c652 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d5739d6 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e6d8db3 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ec2fba2 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f997f6c il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x909a5ee8 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9763bab6 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x98ba2cef il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9aa1ad5e il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b934cc9 il_free_geos EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa21bfbd5 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2b95e45 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3458efa il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5197a3a il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa65bf67f il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7cae3d3 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa668e30 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab7d7caa il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaba5be69 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacdf3b9b il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf8ab359 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb44a51d6 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab77cfca il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac0deaaf il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacb8dca7 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacc4c329 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xadfe50ab il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb02c60e7 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0cbedd9 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2f0bad5 il_add_beacon_time 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 0xc0667129 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc16f4767 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc321f6fb il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc416e4fc il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc582b84e il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5b0ecc4 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9c79e03 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd4e9d28 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1b742d0 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2b3c2ff il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd93424f6 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdda4d43b il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe007e133 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe06d74a0 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3bca670 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8131365 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9108c1b il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf35a8d53 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4a259e8 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5f2e4fb il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf62e87c9 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba02994a il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba9e4bd0 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbecc6d5b il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0748138 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0e63fdb il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc21878b0 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6c3652c il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb1c0bbb il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd14c4708 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2064063 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd39c484e il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4fc0bfa il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7d695bd il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda219d95 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf34704d il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe0522c3f il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe11ac47f il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec2b3b73 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeca7be77 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeced9809 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1609abe il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1f17c37 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2821971 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2ea0f8f il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4051fdd il_pm_ops EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf717a2c3 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc7707d4 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfcf1dbab _il_apm_stop EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c5036c0 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3529277e __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 0x6ff0d5fc __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7a227f88 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x78fca07c __traceiter_iwlwifi_dev_ucode_cont_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 0xa524fe0a __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xab4962bb __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 0xee33dc65 __traceiter_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x01ffb84c hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x01347826 hostap_80211_ops EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0bc7de90 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13367e36 hostap_set_antsel EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1a9d7a9f hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3adf54b0 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4b64a76f hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4fd8e4de hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x52ccedbe hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5cb01d92 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5e772b76 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5f9d0d91 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5ffbed75 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x678b19d5 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x74b1aa6f hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7b4739df hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1544f0fa hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1df1de32 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x452cef4a hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4c9c9ccf hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x55a4579d hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x581ca2dd prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x583e0dff hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x629c7d08 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x68b271c6 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x73294d21 hostap_info_init EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x83640ab5 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x84d4c3e7 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8c70c921 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x97fa1cb4 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x99b8fcbb hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9c77fcca hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa8e21432 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x808298ed hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8492c088 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa26ee54f hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xace2b2f4 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb191dd7c hostap_set_roaming EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbb6ef175 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd1beaecd hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd8dbb7fa hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdcf9741d hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0950425f alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0baf7463 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x244d0f70 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x24e165c0 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2cd76c66 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3d9a4e99 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3e049636 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x77330fc6 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7abd9ffa orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8d48dae0 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa053e652 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb11b180c orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb7f6d476 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc21f2f71 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb61265ca hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb68883b3 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb7b28b6d hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcc6835e6 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdeeb99e7 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeac013bc hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xece5ae4e hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfa5df408 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0058349d orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x445791eb alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x54e2ac00 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6584b388 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa7fd6adf orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa980a229 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb4d1fa9d orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc26638ce orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc8f76e49 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc98449cf __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdce74199 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe6c0d2e2 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe6cdc538 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe71ba53c free_orinocodev EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeb06cb81 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xff0f9fd6 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfbe32c4b orinoco_open EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x1c06354b mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x6c361f2f rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x00de63b6 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x036ceec9 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x07002e72 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x104c14a3 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x115ed5af _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x3012a075 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x01046f96 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0b887fbf rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1690d8bf _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b159b3c rtl92c_phy_set_rfpath_switch 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 0x25bd91be rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2ad7b361 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d175904 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3631d3f8 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a342cd7 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x474363bb rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4a78e2ab _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58355bfa rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c1e98c1 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x671d4caa _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6b25d9fd _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x75b04197 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x77ba4ae4 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x79dfe922 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7bf9ecfb rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7dbe673a rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82ad691c rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8899c99e rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e82360d _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x90933f4d rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x95ee4cfe _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9af052a0 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaa391747 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb5989785 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbcc4bcaa rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc0c1b383 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc6381886 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc8e29729 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xced7d5ba rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd2b4442c rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7a84deb rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4b15a8d rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe7e40fe3 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xee60f529 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xefd5fc48 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xff175e39 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x388d6c92 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x63ef79cb rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xe08e1850 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xee78ce39 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0ad5fab0 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x22d14180 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2f148d31 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xee213963 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x007eef42 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00fdef67 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0703b636 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x077a283f rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2c4fbbde rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x30aceac2 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3785edc3 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4949391d rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x498a627e rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e168d57 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6b075869 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6b498c90 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d499386 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x716037bd rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x730537cf _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x768f2c95 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7b33e136 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c6a6e9d rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7f0a34d3 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x80a16d23 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8a6c6465 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x90c62ede _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x97da7bd8 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9839e71c rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x98454022 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x999b763d _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa479fcf1 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa98c04ae rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb398ce55 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3b2527a rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb90c0801 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc5851e31 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc686c1c6 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd1599307 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd2c690ae rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd548cb01 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xecdb13d6 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xefdf16cc rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf06acbce _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf255224e _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf604f647 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf97d62e1 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa6a59e03 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb0517b4a rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc761af2f rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xf7532110 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0d9dbfd6 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2f403132 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3d1ca2e5 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4f80db93 rtl_usb_resume EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e3766fe rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ac4f0f0 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1af2392e rtl_dm_diginit 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 0x2ef25465 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1fa5390e rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2b498f11 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2f36daa5 rtl_hal_pwrseqcmdparsing EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x34038573 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b2d6657 rtl_cam_add_one_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x583514ff rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x620d9228 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d25b1af rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7dba296f rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x95bdb16f rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x979bd929 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6814004 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaacff172 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae845e79 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb8d270ee rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb9c6b93e rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3d29005 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc92fc91f rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd4dc561d rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x56e04e8d rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x56ea2f0a rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e4aaa23 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63b9b2c4 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63cbba20 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65537143 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75979813 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x78caef55 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80e8cf3b rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x88ab0314 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x979bd9d4 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa19f9a26 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba499a15 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc041ff61 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc815f7ed rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc8c7825e efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd218fa80 rtl_init_rfkill EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5873508 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6364596 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdcee98ef rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2419855 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe73da3b5 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd68ca0d8 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6d2314d rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb38436d efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdbdb8ea1 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7b7ec97 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 0xee5c266d rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf38310a4 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc75df7c rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe04c15e rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xffaacdb1 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xe9625cf0 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x74a22b7d rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x02822642 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xed404d7c rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x057d0ac2 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0d64e9e4 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0ee09d47 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0f1b454d rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x136d549f rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1bd24214 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1cc50222 rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1d3653ef rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2128431e rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x248a9711 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2ce6296e rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x30c716f7 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x332c1da1 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0e8d348 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7997021 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xc0b1d8e7 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x5d71af6a rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x2b51a255 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xc493c96b rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0031fdf8 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x08677fe9 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x14f5b62f rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x30cfac46 rtw_phy_parsing_cfo EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x342d52e6 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x346bd079 check_hw_ready EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x378dc367 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3eed4c86 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x41bc82da rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x42493a1d rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3d24267e rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3da787c5 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3e23c8fd rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3f38cc80 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x421441e3 rtw_fw_c2h_cmd_isr 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 0x4699dafd rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x471cd366 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x515f26b9 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4fe0e71c rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x504beeed rtw_phy_init EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5742cd59 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x55bd0ea2 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x56aaaa7b rtw_phy_load_tables EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6829b448 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7ef21037 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x87e61278 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8863174d rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8ad725b1 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8f830044 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x90b48f06 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x929f916a rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x967e32dc rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x98eb9e41 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa3b4170b rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa6a1da03 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8df2fda rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xac25bba9 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb3964883 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb5804b95 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbce9671f rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbe21ac11 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc2ce701b rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc69510aa rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc8fa1dd6 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcbc5b3bc rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd29c0a61 rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd3e6f7eb rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd434894f rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd5e991ae check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd6f76115 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdfd92911 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe3ba17cb rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeb6b0fd6 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xefae4684 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xefc24734 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xff259c25 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xff586665 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xffb99bce rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x2794fe8b rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x418c1762 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x5356097a rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xfe54530c rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x06a4811c rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1985c32d rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3a65b963 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x54aa7c52 rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x66c66685 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e9f20f4 rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6f9ca809 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x789a8293 rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7ef07575 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9b35a3d8 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa3d72eee rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb114179b rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc357bcc0 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xce16cb2c rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd42f2738 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd717bb21 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd7dc803f rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6ee65f1f rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x72bea454 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7383bc95 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x756a0c82 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x77c057bb rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7bb68696 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7da8cf00 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7e6fd22e rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x800a2a73 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8644a843 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8bede413 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x91709435 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9866e085 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x99bbb3f4 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9bf014b0 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9da6e92e rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9fd1beec rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa25c3c9c rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa5d04cc8 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xab2ab721 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xadc7521c rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaff46c18 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb0cf048e rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb75f4dd0 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc4fa5426 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc763aa54 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc89167e9 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc8cb4d6a rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc9e3b0d5 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd2dfa9cb rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd3fe1991 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd83ebf2f rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd90c109a rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdbe75c17 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdf56d364 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe3b2b19b rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe3d2089f rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe4eeb3ad rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeabb8db0 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xefc302a6 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf66a0f54 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf7b2b7db rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xffac93c3 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x2f12e23c rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x8c2917fb rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xc41ba2c8 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xcfff211c rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0c70a825 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x18706203 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x213c1efe rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2b831511 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2db7470a rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x30c5f825 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x31d99e0d rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x36dddd45 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x413ce760 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4eb46c14 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5b800b5a __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6d5f82c1 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x77b6483f rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8bff205f rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb067d323 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd3122b79 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 0xe6169d81 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf45cb02e rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfec6a214 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3beac964 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x48517b39 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0219c155 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2aa0e6b3 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x336f48d3 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x55277ece wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe5b4777f rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe7a27d17 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe8483288 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeda303eb rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x82632bf2 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x5c0d115d rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x5801e150 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x92d6167c wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xbdb3843c wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe843cb87 wl12xx_is_dummy_packet EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x05f591fb fdp_nci_probe EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x066ccf0c fdp_nci_remove EXPORT_SYMBOL drivers/nfc/microread/microread 0x63d3be9b microread_remove @@ -3719,7 +3608,7 @@ EXPORT_SYMBOL drivers/nfc/microread/microread 0xf59fcd85 microread_probe EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x8b51bc42 nxp_nci_fw_recv_frame EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xc08b1516 nxp_nci_probe EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xd5fee3ef nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x95f9808e pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xfbacc383 pn533_recv_frame EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xc38efad0 pn544_hci_remove EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xf36508bd pn544_hci_probe EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x09a6fe16 s3fwrn5_remove @@ -3731,9 +3620,9 @@ EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xfeb2b4a5 s3fwrn5_probe EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0be0fc19 ndlc_close EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1544f5a0 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x43281b75 st_nci_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7c5551ea ndlc_open EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x91aa56e0 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc86f1305 st_nci_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcf3e3f7a ndlc_remove EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xda701d04 st_nci_se_io EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe12366fc st_nci_se_deinit @@ -3741,12 +3630,12 @@ EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf3d0ceae ndlc_recv EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf6866a65 st_nci_se_init EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x081df98e st21nfca_im_send_dep_req EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0b88fe74 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0f4e2170 st21nfca_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x25c173e0 st21nfca_hci_enable_se EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x26cc783c st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x443f618a st21nfca_hci_loopback_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x46a64418 st21nfca_apdu_reader_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4df6a55f st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5a861673 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fe7399c st21nfca_hci_loopback_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x855634ca st21nfca_hci_disable_se EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9acbdd03 st21nfca_dep_init EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa8343c80 st21nfca_tm_send_dep_res @@ -3814,205 +3703,206 @@ EXPORT_SYMBOL drivers/parport/parport 0xdc3a8774 parport_announce_port EXPORT_SYMBOL drivers/parport/parport 0xdca2f607 parport_ieee1284_epp_read_data EXPORT_SYMBOL drivers/parport/parport_pc 0x1e99636d parport_pc_probe_port EXPORT_SYMBOL drivers/parport/parport_pc 0xb365a3fa parport_pc_unregister_port -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x93c67e37 cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x9e91d762 cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xbd700ca3 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xe0482532 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x13fe476d cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x28b7ffee cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x63a71ad0 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x6c888786 cros_ec_resume EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x713b3fa5 rohm_regulator_set_dvs_levels EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x1e46b93f qcom_smd_register_edge EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x01bafc9d rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x114516b7 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1377b534 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2925a1de rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x33a3d1c6 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x46592df0 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4d325acc rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x56ad1fe6 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x791c6d5f __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x19c1d3a8 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4633b1d8 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4c27e9c2 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4dd7d10c rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5d33afb0 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x884ed2d9 rpmsg_register_device EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8b8efd81 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8de3dffd rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9ee83262 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc38fc9ef rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcd962b45 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9f7d0d25 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb2811605 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb2c1fe82 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb4886b52 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb80b9dc7 unregister_rpmsg_driver EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd6308678 rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xff8bdba7 rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x9f005a3a rpmsg_ns_register_device -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x3b909d48 scsi_esp_cmd +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xde63f50e __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe29d4c51 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe56ee279 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf3df6c36 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x06079966 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x30791ba2 scsi_esp_unregister EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x58fa7c77 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb32cc1a8 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf116e7e3 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x34df1bb4 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5bdb4c3f fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa0dbd396 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa485a42e fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc0e28c7f fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc3991619 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc8b56d6f fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xed53ffff fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf0092285 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf4eb76cc fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf4fead60 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x083f09fb fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0aa2351b fc_exch_init +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8ace9c3a scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc2b40869 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd1fb24d0 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x134721d3 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x162dfa18 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x171bbefc fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x32c1a9db fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x48a1a4c5 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x61aa93ca fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6abf2a24 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x75606aa6 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x78ea592f fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa62851db fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdf5f8f11 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x05963d40 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0de49c73 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0e22c4b1 fc_exch_mgr_list_clone EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0e4eef75 fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0fae8c16 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x176f2859 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ed3f3e9 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14bf2d6f fc_eh_device_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a14befc fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1aa6e79e fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1ab51a5c fc_linkdown EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1eacac47 fc_frame_alloc_fill EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x230eb23b fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x23b23af4 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2574c3c3 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3118637d fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31e56c57 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x32b34ae7 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x393ceffd fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39cc130b fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39de1dd5 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a42b53c fc_get_host_speed EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3c327e2f fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d7bc708 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3fc1b51b fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x432a4aee fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e1a1177 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x527ea567 fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x533d8c72 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f492f8a fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e1c7a6e fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5704a2e5 fc_fc4_register_provider EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ab41f0c fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b1488f8 fc_eh_abort EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c2c2c24 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x60250310 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x649047a5 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ec98a7a fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6f935b31 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6fb4c519 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74c2359d fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x752c8813 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5edb5f35 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6637ed3a fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6bef87f3 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e8f5026 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6fc8eef2 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79c768f4 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7b5e3efe fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d00e68f fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7dda741e fc_rport_logoff EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7eaa7a91 fc_lport_bsg_request 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 0x84980b07 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x88a4f848 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x88dcdd96 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d577da8 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x90325ded fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9764bc5f fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x825d5f5d fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x82eeb99d fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x877a759a fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8fa2ac4f fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9ae965a9 fc_exch_update_stats 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 0xa74cb280 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa2555b3b fc_eh_abort EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9801130 fc_lport_flogi_resp EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae8861a2 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaf0b2dc3 fc_slave_alloc EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb12b6b0b fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4177147 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb89a9de2 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2ee8321 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9f10e4c fc_disc_config EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb0aba27 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc17fd269 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6a26cef fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcfe10509 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd176abd5 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xccd71791 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce74ca51 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd088071c fc_exch_mgr_free EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1a227d1 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdaa503e2 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb9e8fe0 fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe14c9191 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe34c6526 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe698002f fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe9f1748c fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeac0a29d fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeb43d93a fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeb903c0e fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebfef52f libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd4cf0b15 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd4f07e16 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd9124d5c fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb09d869 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe9063969 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeb7938d4 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebc6e048 fc_fc4_deregister_provider EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0fa51c0 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2ede3ee fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa0df9df fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf112c882 fc_lport_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4dd935 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x44183257 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x486a8996 sas_suspend_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xbd3aa9e7 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x644aab06 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x98d4b97c sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb0681217 sas_suspend_ha EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x3e930325 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 0x062d4d3c qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x186f882c qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x22489240 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3800fe21 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3a878aaf qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7acc61d1 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8294b85b qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8f9ad2ff qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9aef8017 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb861b036 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xde96bb07 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf53aada7 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x02cf539e qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2f0b6767 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3ebf0df6 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x86d38055 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x99503bbd qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9d6d8111 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa60bf3cf qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbd26dcbd qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xca37f7d0 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd561279a qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdf8af383 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe728ef96 qlt_lport_register EXPORT_SYMBOL drivers/scsi/raid_class 0xe4d5adf8 raid_class_attach EXPORT_SYMBOL drivers/scsi/raid_class 0xf6ad3282 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x075969ce fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x318add63 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1b7f0209 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1c9ae929 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2a8eb4b5 fc_host_post_vendor_event EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5722127b fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6ac56a53 fc_eh_timed_out EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x837550dd fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8dcfc31f fc_find_rport_by_wwpn EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x969b867d fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa855e723 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xabd57d68 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xafe1830b fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb963c696 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbca20d0f fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xde6fa8d9 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe12fbbd4 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe27bfbd6 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9cc85310 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9d83a939 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa7eebeda fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xab02fd3d fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcc795051 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd1c728ed fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe433bd07 fc_host_fpin_rcv EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe83e4560 scsi_is_fc_rport EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf332df76 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf3a3a42b fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfff8164a fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfb151e92 fc_vport_create EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x05f9655b scsi_is_sas_port EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0888ac46 scsi_is_sas_phy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x09a53e9e scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x12e6f9cb sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x151fb48b sas_read_port_mode_page EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x199ab157 sas_phy_add EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1d27da9c sas_rphy_unlink EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x236bcf4b sas_port_mark_backlink EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x24b95359 sas_phy_free EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x34d138f6 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x36c18dc1 sas_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x54d7b207 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5ce44219 sas_get_address EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5d9af2a9 sas_rphy_delete EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5e33148e sas_remove_children EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x88d5a413 sas_expander_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8d933790 sas_rphy_free EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x904e58c1 sas_port_get_phy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x934fc859 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x95883c75 sas_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x97c17378 sas_port_add EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa653380a sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa66b9bfe sas_read_port_mode_page EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa81a1b8d sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc31afac5 sas_remove_host EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd89a6810 sas_port_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdec482f4 sas_phy_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe061f743 sas_rphy_remove EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe6693120 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe94b1e65 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe86d73c4 sas_release_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeb69281a sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf2895c51 sas_release_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf9948086 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x03ca437a spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x07e3c563 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1885802a spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0d1f71fc spi_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x68f78f3a spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xda062f5e spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x551d4622 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa9521f12 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf28ea908 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf2e3a93f spi_display_xfer_agreement EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2a8ab5b9 srp_rport_get EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2e6e2998 srp_reconnect_rport EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x83490ea6 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9ddeafc0 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xab0ced34 srp_timed_out EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xfd3ac519 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x88f3ed51 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xe2322a7f tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x47de3c40 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x552ddad6 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x8ae31765 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xb0c2c238 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xbc23849f ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xc4440bd2 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xcfc3eac5 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xe441dfa2 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x35575f26 ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xa0c81956 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xc374748a tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xc42657f9 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x3e0f790d ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x45746dda ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x471e43cc ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x5c3a523d ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x7609c3a8 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x82d1cdbc ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x8c859601 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xc83f7f7d ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x07d2473d ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x29bb1a43 ufshcd_dwc_link_startup_notify EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0f1c30e9 cmdq_pkt_poll 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 @@ -4062,24 +3952,24 @@ EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0xae4b53c5 qmp_send EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0xe7385d6d qmp_get EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x133168aa qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x17d8075b qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x1e27df26 qmi_txn_wait EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3072374a qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x58ba1452 qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x663379a5 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x89eaa559 qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa21c5d89 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x39767781 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x597847b7 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x675eb29f qmi_send_request EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa2ff1ede qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa8a3d172 qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbcb2926b qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc51758d5 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xcbc35096 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd4516007 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb65c2698 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb6623cca qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbcfb77f4 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd451c9dd qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfa57d616 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 0x932eb0e3 qcom_smem_get EXPORT_SYMBOL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys -EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x2e54f3c4 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0xb99d0dbb qcom_wcnss_open_channel EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x038ff74a sdw_stream_add_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0c4014a7 sdw_stream_remove_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x10d4d772 sdw_extract_slave_id @@ -4140,275 +4030,274 @@ EXPORT_SYMBOL drivers/ssb/ssb 0xd50531ef ssb_set_devtypedata EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size EXPORT_SYMBOL drivers/ssb/ssb 0xe492018a ssb_bus_powerup EXPORT_SYMBOL drivers/ssb/ssb 0xff21a10b ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0cc23618 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1b5faf93 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2164bab5 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x222df5c8 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x301225b3 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x42ce13e5 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x44f3bd9a fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4b3694f8 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4e304794 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0575e3d8 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0830fa4d fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x23130516 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x31578a6d fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3463215d fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x386eccc0 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3bf0e8ee fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5cbb883b fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5cff3c9b fbtft_write_reg16_bus16 EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x62d3b30a fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6c6e6eae fbtft_write_buf_dc EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6eea85d9 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x71c93db9 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7a9524c5 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x83637121 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x99b47fd3 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa4c0deae fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa99adfc2 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaa2f5992 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7b211a00 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x95c30508 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9950b2a0 fbtft_write_gpio16_wr EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xadffc7dc fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb16a6fb7 fbtft_write_gpio16_wr_latched EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcc784eb5 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd1985953 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd84cb7aa fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xce272773 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xceb9a92a fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xced9c44c fbtft_unregister_backlight EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdc73005e fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdc933f9a fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x6078b79f gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xba09ba5d gbaudio_module_update -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xdfdecbf4 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe7e8efb6 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeed9d471 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfe1696be fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xffaf4b77 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x0dc470d7 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x2f0096fd gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x30043de9 gbaudio_register_module EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x8d2b9e8a adt7316_probe EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x1f7c8326 ade7854_probe -EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0xff7edef9 sp8870_attach EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x10a1db53 videocodec_detach EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x4fcbf554 videocodec_unregister EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xa313ac62 videocodec_attach EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xd3f47a8e videocodec_register -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0325f59d rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11b68048 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x13763460 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x17670584 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ee24f65 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20fb8cb5 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x21bc6e1f rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x21bdc081 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08f5fb21 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c8286ec rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x16142f99 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1803e9c2 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1af74f8b rtllib_wx_set_rate EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x27b45d38 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x36409c7c rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x37abfd71 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3827198d rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b843f41 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x446ac7eb rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x49fd24c5 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5128fbd3 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a4d9fe4 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5aeff2c0 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x606cbd00 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63507799 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x64aff633 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73dc0621 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x79a7ada3 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e10c105 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ec14684 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x81e700ff rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82f465ee HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9007db1b rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x92800a05 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94fd3aba rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x95e6e122 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa08c2526 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa4c49807 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa75837be rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaf0f3bbb notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb08913e8 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb3397bf7 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2ceb233 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2d99a08 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd57314f9 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x228dfcee rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2315b3ee rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3d8874a9 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3da13493 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x45da7e30 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x48f4af85 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d4bffeb rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4e9a3670 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4f31b782 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x534aca47 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5487f9d7 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5bd44bb1 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6177e69a rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b7e7e82 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6e0861fb rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x718acfa6 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73165fe5 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e911205 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fb29f5c rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80c20839 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8150220d rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b014177 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9bfc684b rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9c3a0acd rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9cf58d8f rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa5a9901b rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xafabd45b rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb12870ac rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5d5b1c9 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb9dac649 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc12501e9 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xca1032ad rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc8f5d5f rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd440e851 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xddf7e568 dot11d_channel_map EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe40ec554 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe5a25e70 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe8d1a172 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe956eabb alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb4803cd rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee95b7cf rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb4d5cc4 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb69268e rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc17a4c9 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x064137b4 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x068ac845 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x094766d3 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0b1b25a5 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c582e32 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f52978a ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1be72b54 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x205a5134 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x20f14357 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232dadf6 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24c086c7 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x318de071 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3ea13ff6 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x515e481e dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x55fec225 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ded2e01 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x60267eae ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69987aa6 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69a28d33 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a78bcac ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6d1eca67 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e73b98e ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f362ac6 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74ba6b6b SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x767ec010 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78b59d71 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ac97c08 is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ecf356c ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x83cfb7cf ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8815d24c ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94b2ee86 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97092909 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b9b5a45 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9fbd5575 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf7f904b ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xafc3afab ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe0af234d alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe5910b3c rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb273d67 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xebd92647 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed913fae rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf1a84425 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf54f102e notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf6bad690 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff360b23 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0321dedd ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x089bc4a1 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d9fe454 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0dc40916 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x152ef0ed ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b4fec17 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x20a4220b ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x28b88f21 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x35f1266a ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x391374d5 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b679d58 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3dde4b64 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3fb16200 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42bb5a01 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46d38a63 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x51caac6b ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57d10617 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5927a1b0 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x59d60141 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a06ef64 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5dafe88a ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e033bc1 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x60092c22 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6766704f ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6b7d185d ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e516ae4 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ec27580 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77f7162c SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x781d68e8 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7adc0774 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x82a401ce ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x82c126d5 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8fb722e8 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9adc4048 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c07a228 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d0e3778 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0bfade2 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa51137f7 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xad7ad56c rtl8192u_dot11d_init EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0b6cd25 ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb450d4f8 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5de09f0 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8e37bd5 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbb05316d ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc1e069f ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbd3bf6e9 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1e8c8f5 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb449da93 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb492c560 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb4bb686f ieee80211_wx_set_scan_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6471ae8 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb55b78c ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd168cb92 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1cafc95 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd911d12e ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdca3d7fa rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc4440553 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5d5e60f ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xce3b099d ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcedbd812 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1c4adfe ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4023758 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb7658a9 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xded6fc6c ieee80211_stop_queue_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe828423f ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf130e843 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf365cedc ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf5f2784a ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc3db98c dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfefd3fad dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xebb2ce28 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf98ad545 ieee80211_wx_set_essid_rsl EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b8fa2a5 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x133ceff5 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19f95cc9 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x216e2446 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x224c8daa iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x27f08c5f iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3047ac58 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x31e7f07b iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x33e9320c iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3946f1f4 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3e403a02 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3fc08dec iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x437c14ed iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x44362fcf iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4442cb42 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4a47f886 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x145c7f4b iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ed78155 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b9affb0 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x45c4104e iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x489e3a87 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4984eab7 iscsit_add_reject EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4ea99342 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x568338b0 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5837cb7f iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x63cbf3a5 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x691d40ea iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6c754667 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6cb0dcb0 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4f0a2b16 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4f65c057 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52dea49e iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52fe9bfd iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b143db2 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f440951 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61bfab1d iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x637c89a3 iscsit_build_text_rsp EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ce75e45 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x717a7ba7 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79828427 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7a3b4793 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x862a76b4 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d88cca4 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad2bed7b iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb385058b iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb9dd37c6 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x71e27457 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x84f78868 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86781127 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8863aad3 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x88755d75 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e87031b iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x912ea4ff iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x920e65a2 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x97e61d55 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9da9edf2 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa22f3b76 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa56d1107 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad1e01d6 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb04be2c4 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb0a7f48c iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb1649ff5 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb86098a6 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbbc342ce iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbd36d59f iscsit_reject_cmd EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe266cea iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc371c4d9 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc8b58f3a iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc93a60f8 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc6b46cec iscsit_build_rsp_pdu EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xca5b0317 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcfa867ae iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd4a2eb73 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec413304 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcda00b21 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd33c4d2b iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb478841 iscsit_setup_scsi_cmd EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xed506625 iscsit_unregister_transport EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf993f957 iscsit_find_cmd_from_itt_or_dump EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa1d4d4f iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xffc84491 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x03d82b95 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x020a4301 target_depend_item EXPORT_SYMBOL drivers/target/target_core_mod 0x04d618e6 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x04e96809 target_complete_cmd_with_length EXPORT_SYMBOL drivers/target/target_core_mod 0x06678ba5 sbc_dif_copy_prot EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0a83faae target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x13fcf5e3 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x0cebf23d target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1134552b __target_init_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x14d1dae6 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x18f920ba transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x194a5588 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x1995c512 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x236eb306 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x14a49983 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x1667c8dc transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x19d9edf0 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a015f03 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x1cb5d850 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e7636a6 target_show_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x27a046ac sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x28bae99e target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x2b51974e target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x2deb96cf core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a722db4 transport_generic_handle_tmr EXPORT_SYMBOL drivers/target/target_core_mod 0x2e8900c6 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x31be7698 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x3303efec target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x330d8b20 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x33349a17 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x322edebb sbc_attrib_attrs EXPORT_SYMBOL drivers/target/target_core_mod 0x33a3490c sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x371efca0 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x35e808c5 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x3703ce44 target_get_sess_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x446934e9 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x49b58811 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x5336b4ff target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x561ad901 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x58a5a9cf passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x58b65bff __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x5d6bf893 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x610e6b61 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x3dca4989 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x3dfae7af target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x42eace12 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x44ebb52e core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x46be0aad target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x48a39e74 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x492bb548 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x49f9756a transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x57e49363 target_unregister_template EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x64f85764 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x6b87b20b transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6b9a348c target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6c075df3 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6db6ecff core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x661993ed core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x686739ba transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a212bbc passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c3ca8ea transport_copy_sense_to_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x6e595b50 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x6f1a504b transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x7008f6dd transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x7083808b transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x717a27e6 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x71e80572 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x73e5ec02 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x70da5fea transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x72209a42 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x780d7c35 transport_backend_register EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x81fe36b6 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x832f91ae target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x841ea807 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x89d40078 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x80206433 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x835750a8 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x861ecc41 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a2b572c transport_deregister_session_configfs EXPORT_SYMBOL drivers/target/target_core_mod 0x964477b4 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x96b02f55 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x987a72f9 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x9647d02a target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x964b84a9 transport_alloc_session EXPORT_SYMBOL drivers/target/target_core_mod 0x9df524b6 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x9fa48c0b core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xa3105f03 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xaab65735 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xad595bcc transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xad827b19 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xb1a3855f transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xb3cac23e target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xb68d38b2 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xbb36d547 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xc22ac183 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xcbb5f809 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xcea62133 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc9b7293 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xa75c46bc target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xad41db5f target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xb4e9dd0a target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6903089 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf2676f2 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf98ccc7 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xc466b1f1 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xc480242f transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7b5030c transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7c80803 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc8d6e213 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xc8f40860 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xcad5b27e __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd1fc887 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf93036b target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xd1699dba core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xd343a76f core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9b736fa target_send_busy EXPORT_SYMBOL drivers/target/target_core_mod 0xdd3b3ca8 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xe3d323e5 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xe01fd50e target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1b5f93d target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe666549b transport_alloc_session_tags EXPORT_SYMBOL drivers/target/target_core_mod 0xe7332f31 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xe88688c4 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xe773dde5 core_tpg_get_initiator_node_acl EXPORT_SYMBOL drivers/target/target_core_mod 0xee828573 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xf158e011 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xf34e49bb transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3a09291 transport_kunmap_data_sg EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf863814a target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xf8ced11e target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xfa2bc12f transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xfaec201e transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xfe0d79d9 target_setup_session -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xb392f9bb usb_cdc_wdm_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xf9320749 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf935ec08 transport_deregister_session +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x4c151598 usb_cdc_wdm_register EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xa94708d9 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x3af5266c sl811h_driver +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x4b6f91e7 sl811h_driver EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2af08616 usb_wwan_open EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3a449366 usb_wwan_dtr_rts EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x461afdff usb_wwan_write_room @@ -4608,10 +4497,10 @@ EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x29e3de6a w1_ds2780_io EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa4ef60d1 w1_ds2780_eeprom_cmd EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x81bf7810 w1_ds2781_io EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x872e133f w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x0963a0ad w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x1d4ee3ea w1_add_master_device EXPORT_SYMBOL drivers/w1/wire 0x244cd168 w1_register_family EXPORT_SYMBOL drivers/w1/wire 0xb2ac2869 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xd641c78b w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xd550fa65 w1_remove_master_device EXPORT_SYMBOL fs/fscache/fscache 0x059a00d2 fscache_cache_cleared_wq EXPORT_SYMBOL fs/fscache/fscache 0x17af4413 __fscache_read_or_alloc_page EXPORT_SYMBOL fs/fscache/fscache 0x18014f42 fscache_obtained_object @@ -4655,10 +4544,10 @@ EXPORT_SYMBOL fs/fscache/fscache 0xf8153755 fscache_object_retrying_stale EXPORT_SYMBOL fs/fscache/fscache 0xfa7ee9bd __fscache_begin_read_operation EXPORT_SYMBOL fs/fscache/fscache 0xfd4437ef fscache_object_destroy EXPORT_SYMBOL fs/netfs/netfs 0x2ac53c96 netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0x30839e0b netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0x6a757938 netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0x8ebbc694 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0xc00ab541 netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0x68ed5579 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x7505104b netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x79cdbdb6 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xc6b7ad3e netfs_readpage EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active EXPORT_SYMBOL fs/quota/quota_tree 0x19e9a0b3 qtree_get_next_id EXPORT_SYMBOL fs/quota/quota_tree 0x58124145 qtree_entry_unused @@ -4771,546 +4660,546 @@ EXPORT_SYMBOL lib/zstd/zstd_compress 0xd6205c02 ZSTD_compress_usingCDict 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 0x4d197036 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x553716d0 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x7cd71c6d lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xad79bf34 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xb7101e22 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xb867ed80 lowpan_unregister_netdev -EXPORT_SYMBOL net/802/p8022 0x9438be0c unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xe755452d register_8022_client -EXPORT_SYMBOL net/802/psnap 0x0779ddde unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0x7089f23b register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x01c22700 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x034c6f44 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x04251b45 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x05ec8ea7 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x1038dbf4 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x1fe88d43 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x20a8988c p9_client_stat +EXPORT_SYMBOL net/6lowpan/6lowpan 0x0803bf3c lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x1a8cc8fe lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x57969c2a lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6330e7bf lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6f51f759 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x8d3f46d4 lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x3ce52220 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xece820c6 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x78007300 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xa63999f4 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0322dd33 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x12f4560b p9_client_attach EXPORT_SYMBOL net/9p/9pnet 0x21909615 p9_release_pages EXPORT_SYMBOL net/9p/9pnet 0x22a05bbe p9_fcall_fini EXPORT_SYMBOL net/9p/9pnet 0x22ce61fb v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x2a5906a6 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x35ac1df6 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x24c013a9 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x25ae60ec p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x272e7652 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x3182f52e p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x3232770f p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x3476a2a5 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3af16780 p9_client_remove EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno EXPORT_SYMBOL net/9p/9pnet 0x3d986cf9 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x44f0665e p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x46bea715 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x48f6bc0c p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x51527a0b p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x63f0cd07 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x6cbb8cab p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x6d217ffb p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6fba7454 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x72fbca90 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x44547689 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x46f7fb39 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4c6d08db p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x5ad09204 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x5b756302 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5b75782f p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x5e435deb p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x614524c3 p9_client_link EXPORT_SYMBOL net/9p/9pnet 0x75ff3436 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x78d7f717 p9_client_rename EXPORT_SYMBOL net/9p/9pnet 0x7946588d v9fs_unregister_trans EXPORT_SYMBOL net/9p/9pnet 0x80bbc6fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x8134dcf5 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x874d7ddb p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8f3f9c28 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x91b75269 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x931ac426 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x95a7977f p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x9b79d05f p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xa313ad13 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0xab87f019 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xb3aff287 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xb3ef4d97 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xb6016c67 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xcd84de6f p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x9a45d41a p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x9f3ed1d2 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xa61d6b2c p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb04aebfa p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xb1cc5fb4 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xb286306e p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xb7233b22 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xb919d044 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xc566877c p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xc67cd982 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xcddd0a7d p9_client_renameat EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xdc97839a p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xe291930b p9_client_setattr EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init EXPORT_SYMBOL net/9p/9pnet 0xe6b1e55e p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0xe9ff87a1 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xec445539 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xf99e5d6f p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xe9e8cc55 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xeb164092 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xf358989c p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xf633d0b4 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xf6fc5a52 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xf85abadc p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xfaddd6bc p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xfd110f7e p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xfe9a76ce p9_client_open EXPORT_SYMBOL net/9p/9pnet 0xfefc4ce5 v9fs_get_trans_by_name -EXPORT_SYMBOL net/appletalk/appletalk 0x1e49ac37 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x21f33a7d aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x746ffe10 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xf9539242 atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x03e0e9bc atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x0e06a7fb vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x2925ba27 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x2c90a81b deregister_atm_ioctl +EXPORT_SYMBOL net/appletalk/appletalk 0x2bb9f9d0 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x86ac5b20 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xd63848f2 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xf5e29b20 alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x14b6e62a atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x1931fef1 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x1b0cc5bf vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x270caf29 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x2be5a7a8 atm_init_aal5 EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x309007f8 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x31e57996 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x37049755 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x2e493891 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x3d5167da atm_alloc_charge EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x5f5d9df2 atm_charge +EXPORT_SYMBOL net/atm/atm 0x536bcd93 atm_dev_release_vccs EXPORT_SYMBOL net/atm/atm 0x6b9a3871 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x8a337738 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x76cef46f atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x87b27633 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x98465e30 atm_charge EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xcf06ea13 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0xe3971850 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xf24556dc register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xc2ab3dce atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xd960cd5d deregister_atm_ioctl EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xf7d9e76f atm_dev_release_vccs +EXPORT_SYMBOL net/ax25/ax25 0x0a7efeb1 ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x16ecb4d1 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x2097450d ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x38272eef ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x32ec6a4c ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x82ddd271 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x83554d47 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x8285602d ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x91cefae3 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x9ad9ed78 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xaf27d1e2 ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd0d0bd46 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xcad25e4d ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xde62915f ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xe81f5793 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xe9170ce2 ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bluetooth/bluetooth 0x00eb9e0c hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x04a0f248 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x062911c1 bt_sock_register EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x09a93521 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b27868e bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x13c385fb hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1a8a38e7 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a779b72 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ba351a3 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ef01fad hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x15f105b2 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1d014714 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f069b28 hci_set_fw_info EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x260cb704 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2aa42235 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d4bd989 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3243be35 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x375376d6 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c501257 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3fa00c29 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x44591a43 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4966cb83 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4ad5a6ab hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b1591c8 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f3b15c9 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f3b4a8d hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x52ed599d hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x53a98482 hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a0c2029 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5dfa7e37 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x61de0db0 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6ab3da4a hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x71964a53 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d6a4e6a hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x30208990 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3598c8df __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x35baa5e0 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x36fa7244 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5071c6a9 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6d614d7d l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x702ec7d2 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x719d8b34 l2cap_conn_put EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b28f5cf hci_set_hw_info EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x83fa79c9 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x88cd8412 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8b725f33 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8b8f167b bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x83b48d08 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x88c89801 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c230d1b hci_register_cb EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x95773da5 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb156f995 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbcbc67c8 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1688a6 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcd0cdf1a hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf665f8a l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd2c4fda9 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd5384f3e bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7273edb hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9329054f bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9428d9fc hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x96af8103 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9a4159d0 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9a953f30 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa2dcf2d7 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa9b1110f bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5225ba1 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb65e17d5 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf8aa6c9 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd15e9f70 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd16a4e80 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3b77a42 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6514f84 hci_recv_diag EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdb5f1ce5 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc1c0e64 bt_sock_poll EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe29f8ef7 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6c75c4f __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe8952e9d __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf4cf1ac6 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfaaa70e5 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfde9f5f4 bt_procfs_init -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2f3da8c1 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x617e5cd4 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x900320c9 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x91b1888f ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x97756867 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdb770473 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdfa90834 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe14d5073 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe5464f4d l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe8fb32d2 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xed1d904b bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xedb7943d __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf0a0cc0b hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3b604ad bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfd044a41 hci_set_hw_info +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x26953f7b ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4caf4b8c ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x64979d66 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x907fb0fb ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd4ba1b22 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf3d26303 ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x0aef353e caif_disconnect_client EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x1968eb2b caif_connect_client EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x460bd1a6 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x4197e02c cfcnfg_add_phy_layer EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x4dfaa13c caif_disconnect_client EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x99dfe3bb caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x93459237 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x95a1c7ff 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 0xc5014533 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0xf2d3104f get_cfcnfg -EXPORT_SYMBOL net/can/can 0x1fd5e7d9 can_rx_register -EXPORT_SYMBOL net/can/can 0x2b975661 can_send -EXPORT_SYMBOL net/can/can 0x472df5b0 can_sock_destruct -EXPORT_SYMBOL net/can/can 0x9c2327e9 can_proto_unregister -EXPORT_SYMBOL net/can/can 0xc847c68e can_proto_register -EXPORT_SYMBOL net/can/can 0xdc404309 can_rx_unregister -EXPORT_SYMBOL net/ceph/libceph 0x017b4eca ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x01dc05d8 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x0372832f ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x0904d6f3 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/can/can 0x10ad19fc can_proto_unregister +EXPORT_SYMBOL net/can/can 0x59b4f254 can_send +EXPORT_SYMBOL net/can/can 0x87df442f can_rx_register +EXPORT_SYMBOL net/can/can 0x91ba2f54 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xc8f6e388 can_sock_destruct +EXPORT_SYMBOL net/can/can 0xf90699df can_proto_register +EXPORT_SYMBOL net/ceph/libceph 0x04c10b85 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x066e747d ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x0829733e ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x093bfa2e osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x0a2a069a ceph_osdc_sync EXPORT_SYMBOL net/ceph/libceph 0x0a3c60e0 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0x0bb70a37 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x0d0a7426 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x0e404fb7 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0x0ee240b3 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x1128aa83 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x17b19d7d osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x18a0c83c __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x0c651a00 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x0ee985fb ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x103c0045 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x13be5406 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x17880acc ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x17ad0226 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x17c2a4ff osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x193db714 ceph_put_page_vector EXPORT_SYMBOL net/ceph/libceph 0x1cba3f20 ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0x1da00822 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x206ac2c1 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x1e27c8a3 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x1f1dbbab ceph_parse_mon_ips EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20cb6a62 ceph_auth_verify_authorizer_reply EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x21d6812b ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x21dadb37 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x240b13bf ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x280cc5b6 ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0x2f8f59c8 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x2718d1ed __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x292562ab osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x2a7c7a70 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x2a7cdc44 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x2cedc04a ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x2d284ccc ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x2d50ec47 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x2e0b1748 ceph_alloc_page_vector EXPORT_SYMBOL net/ceph/libceph 0x317ac0ee ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0x3405b810 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x32dc6ce7 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x34902a43 ceph_msg_new EXPORT_SYMBOL net/ceph/libceph 0x3522979c ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x3546173a ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x356460cb ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x38644599 osd_req_op_extent_osd_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3c037e87 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x38f5696d ceph_cls_lock EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3cde9e5c ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x3cfcc7f3 ceph_monc_blocklist_add EXPORT_SYMBOL net/ceph/libceph 0x3d0f2a7c ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x3e5361da ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x3e6cfc52 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x3f363eaa ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x3f3b351b osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x3f7e123b ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x40f7fbab ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x44ac47cd ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x3dd120c7 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x3ea66fcf ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x4258e510 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x42d95204 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x43728be6 ceph_osdc_put_request EXPORT_SYMBOL net/ceph/libceph 0x45044d94 ceph_find_or_create_string -EXPORT_SYMBOL net/ceph/libceph 0x465479ea osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x458f994f ceph_auth_handle_svc_reply_done EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4700b809 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x478c5c5b ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0x4a572555 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x4c9e662c osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x49a75626 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x4a03669b osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x4b83f4d9 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x4bb3d6b7 ceph_osdc_maybe_request_map EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x50f86c36 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x516b02c4 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x52b1fe6b ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x538e7a4f ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0x539796a5 ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x5511612d ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x50e5fdc1 ceph_cls_set_cookie EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x591c9f6d ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0x599586ff ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x58af4719 ceph_auth_invalidate_authorizer EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5b1ae030 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x615fb841 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x619c182e osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x633629d6 ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x63cad0f1 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x63a4cfab ceph_cls_assert_locked 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 0x680782a1 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x6589de06 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x66109668 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6773e957 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x692b34ad osd_req_op_extent_init EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6c6bd877 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x6cbfa98e ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x6b94d31b ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x6c252e9d osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x6d13e433 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x6e8ff525 osd_req_op_extent_update EXPORT_SYMBOL net/ceph/libceph 0x6edb8cb7 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0x70388b04 ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x73002979 ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0x7441a70f ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x7624e290 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x77e20115 ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0x796ead58 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x7b36be0a ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x7dca83d6 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x7fd3ef8a ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x80d6f8bf osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x81ff31c3 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x8498b997 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x7453a0e1 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x7c4d0b14 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x7cb6a617 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x8007dc35 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x804f8419 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x85ade79c osd_req_op_extent_osd_data_bvec_pos EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x88ac0126 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x890e608c osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x87d97fb6 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x891e1c6b ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8a73e20e ceph_monc_stop EXPORT_SYMBOL net/ceph/libceph 0x8bd5050e ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x8cfbcb9a osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x8d85f505 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x8eb92c7a ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x8fe5d53a ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x931098f3 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x934b9a89 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x94f209f1 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x8c5b4437 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8cc317a5 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x8d1a7a67 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x8e9e27fa ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x96b7639d ceph_osdc_update_epoch_barrier EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x999ddc80 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x99d1c677 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x9b20ab5e ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x9c302a60 ceph_monc_want_map EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9cdfc786 ceph_osdc_start_request EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0xa1c191e8 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xa2036a0e ceph_con_init 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 0xa75f2e09 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0xaa903072 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xaa4877e6 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0xaab3e294 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xab0ebdef osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xab40b323 ceph_monc_got_map EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xae38a4ca osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xada5e095 ceph_monc_init EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb3ac4db9 ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0xb470c77f ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xafc354d0 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xb27e0cb5 ceph_osdc_wait_request 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 0xb57a6da6 ceph_client_gid EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release EXPORT_SYMBOL net/ceph/libceph 0xbae00da7 ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0xbbb2f263 ceph_cls_unlock EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xc08ad736 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xbe3d4844 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xbf6c30f6 __ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0xc20c8ca8 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xc3540644 ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0xc3e67ec9 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xc50869d0 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xc57ccfc7 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xc93710ab osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xc52e9dd3 ceph_wait_for_latest_osdmap EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcb8ae05f ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xcbba8f84 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xcb205b7e ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xce0005ce ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0xce99d144 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xd2dd6a29 ceph_reset_client_addr EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xdab62a78 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xd5dc30bf ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xd90c40e6 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xdb066f64 osd_req_op_extent_osd_data_pages EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name EXPORT_SYMBOL net/ceph/libceph 0xdfd9af6b ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe1f6c35c ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0xe34396dc ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0xe7665751 ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0xe8a4db35 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0xea0a4039 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xeac28250 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xed701d7d osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xe00a2d8a ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0xe2cb9c52 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xe5910439 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xe62d0031 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xe6e86565 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe745d976 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xe79fba15 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xe88f8faf ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xebe9422a ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xec79c952 ceph_osdc_new_request EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string -EXPORT_SYMBOL net/ceph/libceph 0xeeaea990 ceph_con_init EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents -EXPORT_SYMBOL net/ceph/libceph 0xf0585cf1 ceph_open_session EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank -EXPORT_SYMBOL net/ceph/libceph 0xf2dadcb7 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xf4070043 ceph_cls_lock EXPORT_SYMBOL net/ceph/libceph 0xf562aab7 ceph_pagelist_truncate -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3843cd82 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xf80edb53 dccp_syn_ack_timeout -EXPORT_SYMBOL net/hsr/hsr 0x55e6125b hsr_get_version -EXPORT_SYMBOL net/hsr/hsr 0xd4afee38 is_hsr_master -EXPORT_SYMBOL net/ieee802154/ieee802154 0x4c4dad16 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x914a3284 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x9ead7534 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xb5acaf7a wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0xbdab4f64 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc83eb2b5 wpan_phy_for_each -EXPORT_SYMBOL net/ipv4/fou 0x14e0d7ed __fou_build_header +EXPORT_SYMBOL net/ceph/libceph 0xf8cbb149 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xfa3905f5 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xfaaebe94 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x6d35ff73 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xc6528e84 dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0xd541609a hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0xdab1eccf is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0c011257 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x15f82492 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1e87c1a9 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2ef39f3b wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3587a0a5 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd0304098 wpan_phy_new EXPORT_SYMBOL net/ipv4/fou 0x19741ae4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xf4c856b6 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x6ed09218 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x7a116f37 __fou_build_header EXPORT_SYMBOL net/ipv4/fou 0xff1adff3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xb1a01564 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6deb13ea ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa4b57353 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd2415977 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xded826e1 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2c84f2b9 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x381a5766 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb93aa8b6 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xfeb1d3f3 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x58d78309 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xab1adcfb ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc2364c31 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe4f4fd19 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x974832ef xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xea7f074d xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xc89870ab udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x177d23a8 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x26fcde64 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x35b13e25 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3c73ee58 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x63bf6ccd ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x750a3ac8 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbc3e3ab0 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbcbee016 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd2adef72 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x27f3716d ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4ffaa0a6 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x99d76291 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xdd01545e ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x55455aaf xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x80def8d8 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x0acb8d5a xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xa63f2fb2 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/lapb/lapb 0x06f1cb46 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x09efb966 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x19ce97bf lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x88c52569 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x9b8986df lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xa2bffdbc lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xaa660bd4 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xe8b47cfc lapb_register +EXPORT_SYMBOL net/ipv4/gre 0xc6df5cf2 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2b80afdc ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5c7479b6 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x83a4a61c ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xbba37462 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x069acb3f arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1d744b46 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6c8532ba arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xeb6864f7 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6c32e138 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x826db76d ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe1cbf266 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfd83baf9 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x490b63e4 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x7de7cad5 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x112d47ef udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x24368d96 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x28f1260f ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x34c51a4a ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x36bdfc09 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7ebbaf99 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb4ea4942 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbef01fae ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbfb1f13d ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcfe1bed7 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x05b18384 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8d0d06d2 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xab1ed74d ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf37293ff ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x5b37ef62 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xefd9029d xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1dd01956 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x6ab5996d xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x27974081 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x2ea12301 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xa7d87b7d lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xa7f79248 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xa95a4802 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xb14badf3 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xc0530de3 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xf802a820 lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x2efbc83c 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 0x7a632da7 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x7b453d62 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xb39c4536 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xbcf6cc01 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xc4a0a17c llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xdd93e14c llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xf3e8ba93 llc_add_pack -EXPORT_SYMBOL net/mac80211/mac80211 0x04ded1c9 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x0512c6de ieee80211_txq_airtime_check +EXPORT_SYMBOL net/llc/llc 0x75c9059d llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x7a2e2c9b llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x7d425825 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xcd6a558f llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xd7febb78 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xdd577a86 llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x04028a4f ieee80211_generic_frame_duration EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x0c2e53de ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x0d0b05c5 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x0d747c0b ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x0d8fbda6 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x13b6fe64 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x13f21e3f ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x1563b253 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x0683d8b4 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x0833683e ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x08593ae2 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x0888e7d9 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x0c0d0df5 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x0f568bb8 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x0fc7f97f ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x10530883 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x11370246 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x15a182f2 ieee80211_rts_duration 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 0x1d5c4633 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x225fc9ad ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x238fbf50 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x264bf987 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x294cae4f ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x34facadb ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x359cfe3a ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x3ac9dd92 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x3f316bec ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x3f789f77 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0x47935f26 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x4bf89dff ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x4cbd38a9 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x4d869274 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x4edabee9 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x4fb6c3ed ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x522b9a93 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x539ba4e0 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x53df5910 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x5419442d ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x56bc1cb5 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x5cebf84d ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x62c7f9bf ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x668e518b ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x6b2a141d ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x6f4412a2 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x73ed63d2 ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x74439af6 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x7a979960 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x7bb5d5df ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x7c3703b2 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x7e26879a ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x871869e2 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x890126d3 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x8d921938 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x907ab10b rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x9293da24 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x932cc702 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x939a05c4 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x96a8a5a7 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x989b7907 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1a8990e1 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2339e8fa ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x237e5be5 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x2446d917 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x25b29926 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x26317017 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x35a56e25 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x385b34c5 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x46faad5d ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x4931d9a6 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x4c836227 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4e1406bf ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x4e51ff31 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x4ea577cf ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x4f1d5183 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x52e8e4de ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x55955d86 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x57ef45b1 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x5808fd5b ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x5c31326d ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x5c46b617 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x5dd4149d ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x5fc1bbe7 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x640b7b76 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x66272d99 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x6bad0196 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x6bb6e902 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x6cc278d6 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x6d8d8a18 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6d959e55 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x6e16e1f2 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x741c3a90 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x79179f62 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x7953dc9f ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x80e14f71 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8224fbce ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x839f47a6 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x83c8c93b ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x8831484e ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x8839a762 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8a6bd937 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x8b206a03 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x8b24bf04 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x8be8dbf0 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x8ccdafcb ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x8ecde05a ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x8ff17cce ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x957f17b7 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x96da10cc ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x96dd3549 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x97ca0fb9 ieee80211_proberesp_get EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9a71dd61 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xa5741520 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xa871fa8d ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xa9585f51 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xad9cd9c4 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xaf608fb9 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xb0aa07f6 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x9aa42a64 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x9aa55d75 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x9f0a94f9 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xa16c4098 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xa2a1d3fd ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xa4448bf9 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xa8945a05 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xaa23babd ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xab70e5ca ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xabaf7436 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xac78fedd ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xafee145f ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xb1a85783 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xb25addd7 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb297a348 ieee80211_sta_register_airtime EXPORT_SYMBOL net/mac80211/mac80211 0xb36a08ca ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xb3a359f5 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xb3c590ac ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0xb41d536c ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xb6cdeec7 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xb946c6a5 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xba1cf1c4 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0xbda8adc2 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xbf0b3e13 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xc08ac26b ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xc2966d4d ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xc3488797 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xc525ffcf ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xc70629a5 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0xc8963922 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xce4dcd99 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xce6ed8d8 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xcebb6c3f ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xcfed2406 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0xd00dedc9 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xd17f0529 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xd262a63c ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0xd4511ba1 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xd47d4284 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xd623a2d1 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xd6f6e690 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xd87aaa4f ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0xda5f7fbe __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xddd94c82 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xdffebe83 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xe3a5c7e7 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xe4912def ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xe6369a70 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xe6d01939 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xe82a1672 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xea4f4a67 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0xeb56a575 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xec9c91e6 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xee004ef0 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf03680f4 ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0xf0714028 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xf29a1265 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xf7b23218 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac802154/mac802154 0x0bf12928 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x33e893ea ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x3cf85713 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x40648a8d ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x45945cae ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x8d131eea ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x9a131cd6 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xe27c2fc3 ieee802154_stop_queue -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0913b1f5 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0d05b93f register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x231346d5 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2f7602e2 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x37edc622 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x80030043 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x826d5710 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x944ab9c9 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x99ebe364 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc22ddcc5 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc286ab46 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc96f366b ip_vs_proto_data_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb4e2505c ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xb8254b04 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xc25f490a ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xc43765f3 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xc7c99b69 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xc8dd2967 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xceafb75e ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xd10043db ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xd86bc6c6 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xda2c4819 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xdcc284b7 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xdd7c7a03 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xe6583885 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0xe6d6a798 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xebb4cd5e ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xecc8c5e8 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xf1a34849 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xf5d09033 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf7a5cbb2 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xf80c8d07 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xf972979f ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfc744f43 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac802154/mac802154 0x0c729b5f ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x158e163e ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x206fe8d3 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x226de68c ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x556fda6b ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x786fb044 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x9cf9a62c ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xac89f6b0 ieee802154_stop_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x00312555 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x37243689 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3d4c69d2 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5507f688 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x569d13a2 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x653e63d8 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x75b87126 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x829eef3f unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x84b722e6 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x90a4a33b ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x98643b6b ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xad4f5013 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd075cf34 ip_vs_conn_new EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe5ba7573 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe7cb34fc ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf8e9edfc ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x083864bb nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd9f0fbdf ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf2def146 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x1b5c7762 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 0x68f825a5 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xa0322ed4 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xa5754dea __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xfa2068b5 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x4369c9c3 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x88e1f2c7 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xd9195694 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xeb44d735 __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 0x23e972ef xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x276046f4 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x27a79e09 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x110d682d xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x13db5d37 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x2ea3d697 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x35d11e49 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x39674bc7 xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x4309215d xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x4116f884 xt_unregister_matches EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x502d96a3 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x57c8bc2f xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x7b6bd147 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x517f020b xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x5aac405e xt_unregister_target EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xc031cc20 xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd7784675 xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xda7c7fd0 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xe1448a60 xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xf4dfc099 xt_find_match EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset EXPORT_SYMBOL net/nfc/hci/hci 0x0679f09d nfc_hci_send_cmd EXPORT_SYMBOL net/nfc/hci/hci 0x0b0699b7 nfc_hci_allocate_device @@ -5335,238 +5224,238 @@ EXPORT_SYMBOL net/nfc/hci/hci 0xde34f2d4 nfc_hci_get_clientdata EXPORT_SYMBOL net/nfc/hci/hci 0xdf4079ec nfc_hci_driver_failure EXPORT_SYMBOL net/nfc/hci/hci 0xe35a1323 nfc_hci_set_param EXPORT_SYMBOL net/nfc/hci/hci 0xf66a17b9 nfc_llc_stop -EXPORT_SYMBOL net/nfc/nci/nci 0x00038a0d nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x02f2e40e nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x036ca7a4 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x07679ba4 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x45bb1878 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x4855759f nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x67279a41 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x6b568e3b nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x6d25884b nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x87c986bc nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x8a12780b nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xa8bde717 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xaf4c441a nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xb39c49f2 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x0107751b nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x084c3633 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x0ba76798 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x0eebb9ba nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x1418c8c4 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x201f2f62 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x28ec94d5 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x2df06afa nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x3585c347 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x36d28175 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x43106eea nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x55410485 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x57ccc1de nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x58f4808a nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x5aa746a4 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x608bfca3 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x623c7330 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x80194513 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x8aab40ee nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x8abb7c42 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x8c8312a2 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xb4c4aff1 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xb7f4c9c5 nci_req_complete EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc27e8f51 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xc52ff42e nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xc8a226f6 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xcea9c1ef nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xcf9f32b6 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xd478737b nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0xdbe1652d nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xde5a7475 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xdfac3f92 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xe18be788 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xec95adc8 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xf5e6c4ba nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xf9c7c063 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xfc51ab88 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xff38cb57 nci_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x0079ce8c nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x02d7f7a1 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x0a58b0ea nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x1282194e nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x2621b9ee nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x325068be __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x34590bee nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x5629759c nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x876d88ca nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x8cb33729 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x96475389 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xaaa79025 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xb014d21c nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xba7e3db4 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xc01b0505 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xc3efdaae nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xc4614a96 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xc861b27d nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xcbc4bb75 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xdc89f8bd nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xdce3fa9f nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0xe95a95c6 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xed8c6e01 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xf22cbc0b nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xf941efb8 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nci/nci 0xc96bb05f nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xcaf52750 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xd711e7e1 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf9be0452 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xfac8d3c5 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xfce75df4 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nfc 0x0e99fe3e nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x15e8e95a nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x1a6a082a nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x1e3e14db nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x20f0fd66 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x31f864b5 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x33e6b9c2 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x52a2771d nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x5b5a3c8a nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x611846a7 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x614f5603 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x624ce988 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x6950b9d6 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x7def5f62 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x835b4de1 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x87dd5a6b nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x8e353da1 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x936394b1 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xa70e2cde nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xa9962bdc nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xb1c76341 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xcac05731 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xcc66a30d nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xeef4cc25 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xf984e4e8 __nfc_alloc_vendor_cmd_reply_skb EXPORT_SYMBOL net/nfc/nfc_digital 0x27919c70 nfc_digital_register_device EXPORT_SYMBOL net/nfc/nfc_digital 0x7861e2ef nfc_digital_free_device EXPORT_SYMBOL net/nfc/nfc_digital 0x7b5c1cf0 nfc_digital_unregister_device EXPORT_SYMBOL net/nfc/nfc_digital 0x9d3891b5 nfc_digital_allocate_device -EXPORT_SYMBOL net/phonet/phonet 0x0f97e5f0 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x2fae5114 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x872f9e43 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xde8406bf phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xe0b91d3b phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xe2e1abdd phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xe73435d2 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xe9f3deb8 pn_sock_get_port -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0fa5f7c3 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1b9f9283 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2f814166 rxrpc_get_server_data_key +EXPORT_SYMBOL net/phonet/phonet 0x59dc5590 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x66a12790 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x7426ba95 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x9a4f7943 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xb64ad3f1 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xcd434c14 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xf03c4de3 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xf6a1857a pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/rxrpc 0x033ef165 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x139bb1e9 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1cd3b647 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x20e09c36 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x22916ac4 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2a0b88d1 rxrpc_kernel_end_call EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3aed3954 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x40221437 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4794a1c1 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x505f8e9e rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x51befac9 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6031a087 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6ea40e5a rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x70aa7c47 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8cc1284a rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x91ad3eb6 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9bd46b95 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb1aecd63 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb28bc0d8 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe7b091a3 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xee92a63b rxrpc_kernel_recv_data -EXPORT_SYMBOL net/sctp/sctp 0x2dfd164a sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2935c9e3 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x406653aa gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x72af66c7 gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x503c90b1 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x9b899c7c get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb852b066 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe126915c xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x35347d68 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0x49f4b313 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0x4c22eebc tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xf87838f7 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tls/tls 0xd7a95293 tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x00af720f ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x03da27c6 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x051106c1 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x0898f90a cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x094e1e0c cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x09816994 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x09c1a59d wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x10004da4 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x12edaf69 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/rxrpc/rxrpc 0x470ebe0e rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4d9b64e1 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x634397de rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6af04482 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7cc629d8 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8db4c4e5 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x978a858f rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9abd8266 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa3634055 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb42494de rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbc396eec rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf1e344bf rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/sctp/sctp 0x7bbc2746 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x209bb4da gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xa3a2a32b gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf44a0471 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x07b84163 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x6116206c xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x9a6a3683 get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0xbaa30d28 xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x16acb36f tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x1e485421 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x7eb4018d tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xa1e4277f tipc_nl_sk_walk +EXPORT_SYMBOL net/tls/tls 0x68043e4a tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x018e4823 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x07362390 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x097987b1 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x0a0410d4 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x0ac0837a cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x12bc3875 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x13f09b5a wiphy_rfkill_start_polling EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x16039b82 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x178ee07b cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x15ba42a6 cfg80211_control_port_tx_status EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x196c7ac6 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x18facb85 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x1b6c8a22 cfg80211_tx_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1f790a3f cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x1fb2af48 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x22d7f138 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x1f1a9cd3 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x220401ab cfg80211_update_owe_info_event EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x2522ac17 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x266719e3 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x268595ee wiphy_read_of_freq_limits EXPORT_SYMBOL net/wireless/cfg80211 0x27efff25 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x290a6a67 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x298e1e80 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x2a57b752 cfg80211_report_obss_beacon_khz EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x2adc8915 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x32903748 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x34295ebe regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x2bc8ec47 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x2e59c585 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x2ea07972 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x34291fe1 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x387e8fe3 cfg80211_rx_unexpected_4addr_frame EXPORT_SYMBOL net/wireless/cfg80211 0x38cb594a ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x3baef167 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x3cd5ba2f cfg80211_inform_bss_data EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3d947fec cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x400cabde cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x42dd033b cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x42c3bdaf cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x4352e22f cfg80211_nan_func_terminated EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x45933b46 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x46daa74e cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x473be3c4 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x475ef390 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x48fab82b cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x4993a2ac cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x4abe3fe2 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x4dbbed81 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x5b30ed40 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x5b84001b cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x5efcd0e5 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x64b5a7a5 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x43f6f48e wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x4532802e cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x4b77873a cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x5022bf8b cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x52abf387 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x573f6db8 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x58131976 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x58c7d34a cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x5e46d349 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x5eb33efd __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x6215ea42 cfg80211_crit_proto_stopped EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x663c86fe wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x69746536 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x653f0751 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x67982c3d ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x689f5581 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x6986b514 cfg80211_cqm_pktloss_notify EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6bc388b3 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x6beb2e45 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x6a19d070 cfg80211_ch_switch_notify EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6c2c052c cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0x6e09b4a6 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x73a8bb1f cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x749868ed ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x77e1d425 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x7816a510 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x6ce6caf7 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x6e0bcec7 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x6fb25d77 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x77250d2d cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x778a6655 cfg80211_iftype_allowed EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7a0e60da cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x7a35dfb9 cfg80211_michael_mic_failure EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x7b9fc011 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x7c14b952 __cfg80211_alloc_event_skb EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x7d26e418 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x7e5728d0 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x7eada3e9 cfg80211_bss_flush EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x806de47e regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x7f3d7f80 cfg80211_disconnected EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x82d7b457 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x8382ec11 wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0x848fef2d cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x85d596aa cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x839453f3 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x83c72433 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x85e28595 cfg80211_cac_event EXPORT_SYMBOL net/wireless/cfg80211 0x8b24e88f cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x8ed8299e wiphy_register EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x93796ec9 regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0x99bb907b cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x9bd23199 cfg80211_rx_mgmt_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x9bf2c9cb cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x9c90ef11 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x913f6bbe ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x9446331d regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x9bf0650d __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9c362e27 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9ce44ffe cfg80211_ref_bss EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0xa1f3bbdd freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0xa31cb4be cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xa3c4ea7d cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xa510e8e2 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xa542d2e0 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xa5499777 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xa8a8006c cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0xa9d314b0 wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0xb0d0c434 cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xb2ddf1af cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa14b1d44 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xa1a17610 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xa5b4d265 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa7ce291c cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xad1fe661 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xaf0be35b cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xb1820a92 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xb507364e cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb58e42ec __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xb6ad54a2 cfg80211_scan_done EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xb875f6a6 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xb946c15f ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0xba483703 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xbc7c6a6c cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xbce52e9e cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xbdbe2f40 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xb83bbf41 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xb9b89d21 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xba1a503c cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xbd39379f cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xbd5951f8 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xbd6bf649 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0xbe2e9226 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xbf383f3c cfg80211_register_netdevice EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc33ebb41 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xc48e3c37 cfg80211_check_combinations EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xca1d3162 ieee80211_get_num_supported_channels EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcd101261 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xd5519c4b cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xccc0843d regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xccdb53b9 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xcd910f89 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0xce8776df cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xd0a68a2b cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xd409c5d2 cfg80211_notify_new_peer_candidate EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd6227947 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xd71e0686 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xd8c6153c wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xd94b456f cfg80211_ibss_joined EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdca7a1e7 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0xdd541c97 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xddc07629 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xde6b14b0 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0xe78f6ed8 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0xe9251a99 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0xeaea6841 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xeb0a626a cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0xeefd0689 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xdd2d6e70 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xdda83614 cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xe0746103 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xe0a1306f cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xe4a6b16d cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xe6cb423a cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xebd7513c cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xee8f9104 cfg80211_abandon_assoc EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf303b277 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xf24bb2ba freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xf47742c4 cfg80211_sched_scan_stopped_locked 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 0xf7646df6 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xf889cd19 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xfcf3a991 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/lib80211 0x02e541c4 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x61801711 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x7afb36a1 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x8d9acdb2 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xdf403ab0 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xf529f78c lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/cfg80211 0xf76a572a wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xf7a653d0 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xf816c3ad cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf96f51f2 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfc21ba19 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xfeb10768 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/lib80211 0x1ac6c136 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x5b3af524 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x994e2e18 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xaf41df96 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xd2465276 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xf6779e07 lib80211_unregister_crypto_ops EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x353fd093 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 0x2a22eabf snd_seq_kernel_client_write_poll @@ -5641,34 +5530,34 @@ EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc7d6e233 snd_vx_suspend EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcb87e49a snd_vx_setup_firmware EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf3d0fc28 snd_vx_free_firmware -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1772c94f amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1a0fc143 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x04d4abfd amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x088d9df7 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x08bca440 amdtp_stream_init EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2092163e amdtp_stream_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x23474c76 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x29930935 amdtp_stream_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2d0ff07d cmp_connection_establish EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3b752a63 fcp_bus_reset EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3d59154a cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3e06012e amdtp_stream_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x49cace5b cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4b7643bb amdtp_stream_pcm_abort EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x54b69bff fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x557c98fb amdtp_stream_pcm_prepare EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x65da80c8 cmp_connection_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ff22241 fw_iso_resources_allocate EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x702b9de8 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x744091cf amdtp_stream_pcm_prepare EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x74807109 iso_packets_buffer_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x78b1e8c8 iso_packets_buffer_init EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x89e04213 fw_iso_resources_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8b38b2b1 fw_iso_resources_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9165d69b cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaba12012 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xac8f7178 amdtp_stream_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbd0d0d03 fw_iso_resources_free EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbf814ad9 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcc007749 amdtp_stream_add_pcm_hw_constraints EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd513ec1f fcp_avc_transaction EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd62af5c4 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdac105c8 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe0b24be7 amdtp_stream_init EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe84c6023 avc_general_get_sig_fmt EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xef9ab671 cmp_connection_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfb6e16fb cmp_connection_init @@ -5756,7 +5645,7 @@ EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbe1a16d5 snd_trident_alloc_voice EXPORT_SYMBOL sound/pci/trident/snd-trident 0xece10f08 snd_trident_stop_voice EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x1b95e0ab adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x04a20fd8 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xa9738a87 wsa_macro_set_spkr_mode EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xa88b69f6 pcm3060_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xc08fbc9b pcm3060_regmap EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw @@ -5768,78 +5657,78 @@ EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe384978b aic32x4_remove EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x80c115f5 aic3x_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xec1829e1 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 0x5df5141b wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x606597b2 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 0x83443db1 wcd_mbhc_start -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x9558accc 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 0xb978728f wcd_dt_parse_mbhc_data EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe32ac4f9 wcd_dt_parse_mbhc_data EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x5ec46f78 mt8192_afe_gpio_init EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xd69a6882 mt8192_afe_gpio_request EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x46888bc6 q6afe_vote_lpass_core_hw EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x75adfc00 q6afe_unvote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x5e1aab1d qcom_snd_parse_of -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x089e0240 snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0f6cde48 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0xced40da1 qcom_snd_parse_of +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x018b0919 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x089ebfdf snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0e599909 sof_fw_ready EXPORT_SYMBOL sound/soc/sof/snd-sof 0x125860d2 snd_sof_create_page_table +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1492cd91 snd_sof_fw_parse_ext_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x16919f62 snd_sof_dsp_mailbox_init EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1a60ad17 snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d0ac3d9 snd_sof_load_firmware_raw EXPORT_SYMBOL sound/soc/sof/snd-sof 0x205301fb snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2298acee sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x26a78d98 sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2823853b sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2a49101a snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x300535a0 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x361a5825 sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368af4de snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x36adb0e5 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3d01afc7 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x41d7799f snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4319fcbf snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x482ab886 sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x49b5cc6e snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x49bba363 sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4b19b8be snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x21c1ea80 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23fc74a2 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2608303b snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x26b2d83a snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x27136604 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x31ab1f3c snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x395dba52 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3b91109f sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4e44c6fa snd_sof_fw_unload EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4fc63d45 snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5513a073 snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x54340a57 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5c2a7d35 snd_sof_ipc_free EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5d582266 snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x62993204 snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x672bac06 snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6a762b5e sof_block_write EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6d68db3a snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6d75d3a4 sof_dai_get_bclk EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6f976062 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7090681f snd_sof_dsp_update_bits_unlocked EXPORT_SYMBOL sound/soc/sof/snd-sof 0x739f347e snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x74758c2e snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7e701fc1 snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7ff019c7 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x80efed2b snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x88f5d14b sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x901204df snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x96f10317 snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9c6595a0 snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9df367dc snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9e5f8a8f snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa016b91f snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7ab9232d sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7c342335 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8098640d snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8137dd38 snd_sof_trace_notify_for_error +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8422ec4a snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8947a193 snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8f2c15f9 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x90987da6 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x920031e5 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x991f4c94 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9cb64680 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa0a24626 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa7d0745a snd_sof_dsp_panic EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad055b2c sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb096de80 snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb3a61b2f snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb87ecf88 sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbc45da36 snd_sof_release_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb58a3512 snd_sof_ipc_msgs_rx EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbdbb43da snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc9052a17 snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xca43ca66 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbff8b68f snd_sof_get_status +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc0389490 snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc1997752 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc840d04c snd_sof_ipc_set_get_comp_data EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcb15ee91 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcb25cead snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xccf41319 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd68cf110 snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd693b22d sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd7f6fdc8 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcddc8b24 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcf766049 snd_sof_free_trace EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd927eca8 sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xda344bce snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd9b34cbc snd_sof_ipc_valid +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdac82838 sof_mailbox_read EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdcffb7d4 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe80e9771 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdd916501 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe1529920 snd_sof_dsp_only_d0i3_compatible_stream_active EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeb7a0af4 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xec70bbda snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf3aac673 snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf6a79812 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfdcb098b snd_sof_release_trace EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x68906faf snd_emux_register EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6db6cf7f snd_emux_free @@ -5862,159 +5751,174 @@ 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 0xf4643a95 __snd_usbmidi_create EXPORT_SYMBOL vmlinux 0x00004740 snd_pcm_stop -EXPORT_SYMBOL vmlinux 0x0005e074 zap_page_range EXPORT_SYMBOL vmlinux 0x00127887 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x00319f8e inet_del_offload EXPORT_SYMBOL vmlinux 0x003d3eb6 security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x005659fd vme_master_mmap +EXPORT_SYMBOL vmlinux 0x00587ae7 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x00640bac i2c_smbus_read_block_data EXPORT_SYMBOL vmlinux 0x00682884 inode_init_owner EXPORT_SYMBOL vmlinux 0x006c9b89 backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0x0077da58 security_inet_conn_established EXPORT_SYMBOL vmlinux 0x00951dc0 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x00978f61 unregister_console EXPORT_SYMBOL vmlinux 0x009e7726 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x00b29fa6 ip_ct_attach EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count EXPORT_SYMBOL vmlinux 0x00de3101 fscrypt_ioctl_set_policy EXPORT_SYMBOL vmlinux 0x01000e51 schedule EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 +EXPORT_SYMBOL vmlinux 0x01250ccb lock_page_memcg EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x012b4cc8 arp_xmit +EXPORT_SYMBOL vmlinux 0x012c96b1 dev_mc_sync_multiple EXPORT_SYMBOL vmlinux 0x012df26f bdi_register +EXPORT_SYMBOL vmlinux 0x013d5ad8 path_is_under +EXPORT_SYMBOL vmlinux 0x0143cc1b nf_log_packet +EXPORT_SYMBOL vmlinux 0x0148d489 netif_rx_any_context EXPORT_SYMBOL vmlinux 0x015af7f4 system_state +EXPORT_SYMBOL vmlinux 0x01602e6c tcp_recvmsg EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device 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 0x01858258 free_netdev -EXPORT_SYMBOL vmlinux 0x018dd61f netlink_net_capable -EXPORT_SYMBOL vmlinux 0x0195892a xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks EXPORT_SYMBOL vmlinux 0x01a1cbe7 pm860x_page_reg_write EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode +EXPORT_SYMBOL vmlinux 0x01a4a2f9 sock_wake_async EXPORT_SYMBOL vmlinux 0x01ad2e15 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x01aeb293 mfd_add_devices EXPORT_SYMBOL vmlinux 0x01b09345 pm_vt_switch_required EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note EXPORT_SYMBOL vmlinux 0x01bf78b5 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x01c06e69 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x01c305b9 vfs_setpos +EXPORT_SYMBOL vmlinux 0x01e6c22e update_devfreq EXPORT_SYMBOL vmlinux 0x01ef7073 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x01f9a2ad mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x02009717 __i2c_transfer EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc EXPORT_SYMBOL vmlinux 0x02182ed1 hdmi_infoframe_log EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv -EXPORT_SYMBOL vmlinux 0x021e1996 phy_ethtool_get_sset_count -EXPORT_SYMBOL vmlinux 0x02206563 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x0229d9b1 sock_edemux EXPORT_SYMBOL vmlinux 0x02561ef0 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x026a8222 skb_clone +EXPORT_SYMBOL vmlinux 0x026f589e phy_error EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027fba50 balance_dirty_pages_ratelimited EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate EXPORT_SYMBOL vmlinux 0x029a2297 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x02a93a7e nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0x02b8b9d7 vga_get EXPORT_SYMBOL vmlinux 0x02bdb581 give_up_console EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02c6f430 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x02c3b13d skb_find_text EXPORT_SYMBOL vmlinux 0x02d25eed of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x02de81de inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies +EXPORT_SYMBOL vmlinux 0x02e35287 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x02e38f44 module_refcount EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02ef9fbb mmc_alloc_host EXPORT_SYMBOL vmlinux 0x02f95d8c dquot_release -EXPORT_SYMBOL vmlinux 0x02fa459c kill_pid +EXPORT_SYMBOL vmlinux 0x03075f99 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x03158f5f put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0x031e96e8 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x032467d1 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x032594d0 skb_clone_sk EXPORT_SYMBOL vmlinux 0x03259e8c kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x0328eb4a dst_release EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x033762a0 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x03391b26 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x033add19 tcf_exts_validate EXPORT_SYMBOL vmlinux 0x0340b7e3 param_array_ops EXPORT_SYMBOL vmlinux 0x035771cc dma_sync_wait -EXPORT_SYMBOL vmlinux 0x035b7ddc nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled EXPORT_SYMBOL vmlinux 0x0367cfa4 input_free_device -EXPORT_SYMBOL vmlinux 0x0373b4d0 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x036b8ae0 i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0x0379a549 zero_user_segments EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x038fcb4b __set_page_dirty_nobuffers EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs EXPORT_SYMBOL vmlinux 0x03982454 tty_name EXPORT_SYMBOL vmlinux 0x039b671f pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x03aa35a4 genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all EXPORT_SYMBOL vmlinux 0x03bb1cae jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x03dfcc88 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x03e41baa dev_get_by_napi_id EXPORT_SYMBOL vmlinux 0x03e75e21 ioc_lookup_icq EXPORT_SYMBOL vmlinux 0x03fba701 wait_for_completion_killable_timeout EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x03fddfa9 __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x0412acb4 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x0429fb2e blackhole_netdev +EXPORT_SYMBOL vmlinux 0x0417e1dc dump_skip +EXPORT_SYMBOL vmlinux 0x04250396 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x0425751d sock_alloc EXPORT_SYMBOL vmlinux 0x042af13c dm_table_get_mode EXPORT_SYMBOL vmlinux 0x0434ee78 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x043baa79 fasync_helper EXPORT_SYMBOL vmlinux 0x04426f14 mem_section EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044d663e mfd_cell_enable EXPORT_SYMBOL vmlinux 0x044fb722 dev_base_lock +EXPORT_SYMBOL vmlinux 0x045af670 devfreq_remove_device EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu -EXPORT_SYMBOL vmlinux 0x048abb2c filemap_map_pages -EXPORT_SYMBOL vmlinux 0x04a53463 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x04bdd040 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x04af3d21 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x04b5d884 filp_close +EXPORT_SYMBOL vmlinux 0x04c42adf skb_split EXPORT_SYMBOL vmlinux 0x04c6b4c3 __crypto_memneq EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits EXPORT_SYMBOL vmlinux 0x04dac430 uart_register_driver -EXPORT_SYMBOL vmlinux 0x04eeaf50 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x04e2bbd0 jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0x04fd85b4 set_security_override EXPORT_SYMBOL vmlinux 0x0508088e ucs2_strnlen EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match EXPORT_SYMBOL vmlinux 0x05211c8a bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x0522aeb6 phy_mac_interrupt EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x053ad2b7 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x05346316 sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x054fba11 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x0550ccf0 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x05624f18 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x05a24b05 page_readlink +EXPORT_SYMBOL vmlinux 0x054bdcee xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x054eddfb scsi_add_device +EXPORT_SYMBOL vmlinux 0x057d9212 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x059aded4 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x05a5aa80 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x05aeb494 tcp_v4_connect EXPORT_SYMBOL vmlinux 0x05b0caa0 hdmi_vendor_infoframe_pack EXPORT_SYMBOL vmlinux 0x05b7b436 rproc_free EXPORT_SYMBOL vmlinux 0x05c32d5f snd_pcm_new_stream EXPORT_SYMBOL vmlinux 0x05c8f1ae unpin_user_pages EXPORT_SYMBOL vmlinux 0x05cd617e gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x05d837de phy_register_fixup +EXPORT_SYMBOL vmlinux 0x05d85c92 xp_dma_unmap EXPORT_SYMBOL vmlinux 0x05e13eb9 ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x05ecede5 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x05f5f05c netdev_info -EXPORT_SYMBOL vmlinux 0x05fc3084 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x05fa9ed4 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x06062aca __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x0612724c ptp_find_pin_unlocked EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0627c74d eth_validate_addr -EXPORT_SYMBOL vmlinux 0x062bbcb9 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x0624fef1 kmem_cache_shrink EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user EXPORT_SYMBOL vmlinux 0x06414f71 forget_cached_acl EXPORT_SYMBOL vmlinux 0x064818a2 mpage_readahead +EXPORT_SYMBOL vmlinux 0x0652fb56 inet6_add_offload EXPORT_SYMBOL vmlinux 0x0654085f dup_iter +EXPORT_SYMBOL vmlinux 0x065ee1aa dev_uc_add_excl EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul EXPORT_SYMBOL vmlinux 0x06724b38 ZSTD_getFrameParams EXPORT_SYMBOL vmlinux 0x06835118 __d_lookup_done -EXPORT_SYMBOL vmlinux 0x0685d328 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0x06892300 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0x069181ce __scsi_add_device EXPORT_SYMBOL vmlinux 0x069aa3db param_ops_invbool EXPORT_SYMBOL vmlinux 0x06af59b9 mdiobb_read EXPORT_SYMBOL vmlinux 0x06c1ae3b pci_iomap_range -EXPORT_SYMBOL vmlinux 0x06e512c9 scsi_host_put -EXPORT_SYMBOL vmlinux 0x06f70f8e balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x06cda447 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x06d964c6 end_page_private_2 +EXPORT_SYMBOL vmlinux 0x0712e874 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x07176060 vfs_create EXPORT_SYMBOL vmlinux 0x071809e5 __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x071cab03 put_cmsg EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x073ab4eb inode_add_bytes -EXPORT_SYMBOL vmlinux 0x0756b0a1 security_sb_remount +EXPORT_SYMBOL vmlinux 0x074892df block_commit_write EXPORT_SYMBOL vmlinux 0x075a2c33 ZSTD_decompressBegin_usingDict EXPORT_SYMBOL vmlinux 0x07679ede dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x07779193 __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x077af67c init_opal_dev EXPORT_SYMBOL vmlinux 0x078730e1 dma_resv_fini EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07c4f81d mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x07adb55b __pagevec_release EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit EXPORT_SYMBOL vmlinux 0x07e2c085 radix_tree_tagged EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace @@ -6023,213 +5927,224 @@ EXPORT_SYMBOL vmlinux 0x08038db4 of_pci_range_to_resource EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key EXPORT_SYMBOL vmlinux 0x08063e0f d_rehash EXPORT_SYMBOL vmlinux 0x080bf97e sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0x08240b0a ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses EXPORT_SYMBOL vmlinux 0x0837221f hash_and_copy_to_iter EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister EXPORT_SYMBOL vmlinux 0x08405fb5 key_instantiate_and_link EXPORT_SYMBOL vmlinux 0x084f9f80 nla_put -EXPORT_SYMBOL vmlinux 0x0866c839 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x087344e7 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x085935f9 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x085ec5a9 netdev_warn +EXPORT_SYMBOL vmlinux 0x0867f4b2 xfrm_state_free EXPORT_SYMBOL vmlinux 0x087a8578 __alloc_disk_node EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x089297ca mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x08b0bfd6 netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0x08b24142 misc_deregister EXPORT_SYMBOL vmlinux 0x08b260ad request_firmware_into_buf EXPORT_SYMBOL vmlinux 0x08c4fd32 omap_disable_dma_irq EXPORT_SYMBOL vmlinux 0x08d1fef3 input_set_min_poll_interval EXPORT_SYMBOL vmlinux 0x08d66d4b _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0x08e03b85 sock_no_accept EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08e52387 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x08e4d9ea dns_query +EXPORT_SYMBOL vmlinux 0x08f2f285 get_unmapped_area EXPORT_SYMBOL vmlinux 0x08f80433 da903x_query_status -EXPORT_SYMBOL vmlinux 0x0911a237 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x091e1160 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x0951d51c inet6_del_offload -EXPORT_SYMBOL vmlinux 0x0961f0ef of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x08f89d75 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x0926be8f mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x092eca2f _dev_emerg +EXPORT_SYMBOL vmlinux 0x094c7418 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x09537e02 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x09550695 skb_copy_header EXPORT_SYMBOL vmlinux 0x09662161 pci_bus_type +EXPORT_SYMBOL vmlinux 0x09663716 mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x09829d97 sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09a43575 dst_dev_put EXPORT_SYMBOL vmlinux 0x09b152e2 call_usermodehelper_setup EXPORT_SYMBOL vmlinux 0x09bf0c56 simple_map_init EXPORT_SYMBOL vmlinux 0x09cae3d4 simple_unlink EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09d706f0 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x09fc35f9 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0x09fc6a12 ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x0a0117a0 sk_capable +EXPORT_SYMBOL vmlinux 0x09ee1d0a tcf_exts_change +EXPORT_SYMBOL vmlinux 0x09f88a4d passthru_features_check +EXPORT_SYMBOL vmlinux 0x09f90400 netdev_state_change EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a0eff0c __scm_destroy +EXPORT_SYMBOL vmlinux 0x0a082840 __traceiter_module_get EXPORT_SYMBOL vmlinux 0x0a14510f mtd_concat_destroy EXPORT_SYMBOL vmlinux 0x0a20d621 ZSTD_decompressBegin +EXPORT_SYMBOL vmlinux 0x0a22d6c2 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x0a262f72 netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a486739 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x0a5df2d7 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x0a491bd7 __brelse +EXPORT_SYMBOL vmlinux 0x0a5930ff blk_get_queue EXPORT_SYMBOL vmlinux 0x0a748296 file_update_time -EXPORT_SYMBOL vmlinux 0x0a7fee1d phy_ethtool_get_strings EXPORT_SYMBOL vmlinux 0x0a96b96a kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x0aa1583d netdev_upper_get_next_dev_rcu EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0aae410a xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x0ab6512c nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x0ac085a9 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x0ac3f2e8 mmc_gpiod_request_cd EXPORT_SYMBOL vmlinux 0x0acdc0f2 free_mdio_bitbang EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all EXPORT_SYMBOL vmlinux 0x0ae547ed xxh64_update EXPORT_SYMBOL vmlinux 0x0aecf6b2 clk_add_alias +EXPORT_SYMBOL vmlinux 0x0af145a1 mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0x0b0f5bef dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x0b10287d netdev_lower_get_next EXPORT_SYMBOL vmlinux 0x0b1b939e kmemdup EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b2d55a1 __alloc_skb +EXPORT_SYMBOL vmlinux 0x0b307790 skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0x0b3b1a61 d_move EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b4ee019 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x0b5bbc9c ppp_unit_number EXPORT_SYMBOL vmlinux 0x0b617520 dma_fence_default_wait EXPORT_SYMBOL vmlinux 0x0b61dad5 nand_get_set_features_notsupp EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b7b4517 freezing_slow_path EXPORT_SYMBOL vmlinux 0x0b8114e5 dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x0b8c4bc2 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x0b8ba77a sk_stream_wait_close EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk EXPORT_SYMBOL vmlinux 0x0ba5e17e pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x0bb55e30 pneigh_lookup EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc92524 seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x0bdc218c __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x0bdd3ad7 generic_file_direct_write EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x0bf757fd simple_get_link +EXPORT_SYMBOL vmlinux 0x0c0959e1 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x0c11fec6 udp_sendmsg EXPORT_SYMBOL vmlinux 0x0c130b98 arm_dma_ops -EXPORT_SYMBOL vmlinux 0x0c1ccf07 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x0c162a8d page_get_link EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c5e339d fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0x0c6bd8f3 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x0c404c92 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x0c5a5796 of_device_unregister +EXPORT_SYMBOL vmlinux 0x0c68d080 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x0c838455 phy_config_aneg EXPORT_SYMBOL vmlinux 0x0c94548b fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x0ca509ba key_unlink EXPORT_SYMBOL vmlinux 0x0ca53f68 posix_acl_chmod EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x0cb7967f pci_disable_msix +EXPORT_SYMBOL vmlinux 0x0cb7db91 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x0cc1e0f2 skb_recv_datagram EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0cec593f scmd_printk EXPORT_SYMBOL vmlinux 0x0cf8aa2e rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x0d00757a vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x0d053937 tcp_conn_request EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev EXPORT_SYMBOL vmlinux 0x0d09fc9f snd_unregister_oss_device EXPORT_SYMBOL vmlinux 0x0d0ff953 shrink_dcache_parent EXPORT_SYMBOL vmlinux 0x0d151f8b ps2_end_command EXPORT_SYMBOL vmlinux 0x0d1593cf snd_pcm_hw_rule_add EXPORT_SYMBOL vmlinux 0x0d1b54c1 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x0d1cffdf PageMovable +EXPORT_SYMBOL vmlinux 0x0d283e40 unregister_console EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0x0d36626e ll_rw_block -EXPORT_SYMBOL vmlinux 0x0d3e653f __scsi_execute +EXPORT_SYMBOL vmlinux 0x0d3c2aae unlock_page +EXPORT_SYMBOL vmlinux 0x0d3de583 dev_set_promiscuity EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le EXPORT_SYMBOL vmlinux 0x0d4e40fe fb_prepare_logo EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d54a929 pfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0x0d58c236 input_mt_init_slots EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d85cccc tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x0d64eee4 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x0d7cef0f __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x0d88121e inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x0d91c4c8 amba_driver_register -EXPORT_SYMBOL vmlinux 0x0da56ac8 _dev_crit -EXPORT_SYMBOL vmlinux 0x0db3dacd qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x0db84405 generic_writepages EXPORT_SYMBOL vmlinux 0x0dba5e9a radix_tree_delete +EXPORT_SYMBOL vmlinux 0x0dbea578 vfs_llseek EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex EXPORT_SYMBOL vmlinux 0x0dc7ffe1 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL vmlinux 0x0dc8d092 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x0df1a5ee mmc_get_card -EXPORT_SYMBOL vmlinux 0x0df5be97 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x0e14fe10 poll_initwait EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 EXPORT_SYMBOL vmlinux 0x0e1c8804 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x0e29cd2d scsi_host_busy EXPORT_SYMBOL vmlinux 0x0e3ea9ec kthread_blkcg EXPORT_SYMBOL vmlinux 0x0e3fde7e clocksource_unregister EXPORT_SYMBOL vmlinux 0x0e465238 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x0e5aee8b softnet_data +EXPORT_SYMBOL vmlinux 0x0e59fa7a jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0x0e62caf3 bio_endio -EXPORT_SYMBOL vmlinux 0x0e70041f udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x0e9c7511 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x0e6849a8 tcf_em_register EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0x0eaa4c36 register_qdisc EXPORT_SYMBOL vmlinux 0x0eaec2f0 pci_resize_resource -EXPORT_SYMBOL vmlinux 0x0eaf7105 dcb_ieee_delapp EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint EXPORT_SYMBOL vmlinux 0x0ebbddae __blk_mq_end_request EXPORT_SYMBOL vmlinux 0x0ec23b3e pci_scan_single_device EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ec70770 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x0ec6c59b i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x0eceb4f2 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x0ed747ec put_fs_context +EXPORT_SYMBOL vmlinux 0x0ed9d053 block_read_full_page +EXPORT_SYMBOL vmlinux 0x0eda41f6 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x0ee1dca7 ip6_frag_init EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy EXPORT_SYMBOL vmlinux 0x0f076ae3 nd_integrity_init -EXPORT_SYMBOL vmlinux 0x0f0795e8 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x0f082c83 scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f0b45c3 ip_route_input_noref EXPORT_SYMBOL vmlinux 0x0f11660c tty_port_tty_get EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f4b73cf twl6040_power +EXPORT_SYMBOL vmlinux 0x0f364f1d devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x0f3f9be3 sk_net_capable EXPORT_SYMBOL vmlinux 0x0f4cefc1 dquot_load_quota_inode EXPORT_SYMBOL vmlinux 0x0f552be3 input_match_device_id -EXPORT_SYMBOL vmlinux 0x0f55e76c dev_mc_add -EXPORT_SYMBOL vmlinux 0x0f60abb2 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x0f5d8356 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x0f5ffbb9 kernel_read EXPORT_SYMBOL vmlinux 0x0f6f8cdf input_mt_report_pointer_emulation EXPORT_SYMBOL vmlinux 0x0f76571d snd_pcm_set_ops EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn EXPORT_SYMBOL vmlinux 0x0f8bac18 register_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x0f9676a3 skb_seq_read -EXPORT_SYMBOL vmlinux 0x0fa65159 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x0fa08b8d km_state_notify EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 EXPORT_SYMBOL vmlinux 0x0fbdd91a rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x0fc0ab27 xp_set_rxq_info EXPORT_SYMBOL vmlinux 0x0fd0f592 mutex_trylock +EXPORT_SYMBOL vmlinux 0x0fd5a4d1 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x0fd876c4 jbd2_journal_inode_ranged_wait EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fec99d6 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x0ff03a78 dev_get_stats +EXPORT_SYMBOL vmlinux 0x0fe7b77a finalize_exec EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0ff1c5f8 of_phy_deregister_fixed_link EXPORT_SYMBOL vmlinux 0x0ffbfcd5 dcache_dir_lseek EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm EXPORT_SYMBOL vmlinux 0x10018cb0 __pv_offset EXPORT_SYMBOL vmlinux 0x100f666c pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x101e8403 devfreq_monitor_resume EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source EXPORT_SYMBOL vmlinux 0x102c25fa serio_unregister_child_port EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x10401be8 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x1046b4fe vme_bus_type EXPORT_SYMBOL vmlinux 0x105f96b2 bio_integrity_alloc EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x107074dd kfree_skb_partial EXPORT_SYMBOL vmlinux 0x10739f1e swake_up_locked +EXPORT_SYMBOL vmlinux 0x1074f815 netpoll_cleanup EXPORT_SYMBOL vmlinux 0x107addb9 __do_once_done EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x1084b7ed sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x1089d51c mmc_retune_release +EXPORT_SYMBOL vmlinux 0x10879784 nobh_write_begin EXPORT_SYMBOL vmlinux 0x108ef19a __pci_register_driver -EXPORT_SYMBOL vmlinux 0x109fedeb sk_mc_loop EXPORT_SYMBOL vmlinux 0x10a6eac5 get_tree_bdev -EXPORT_SYMBOL vmlinux 0x10ac9855 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x10afd941 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x10ba80a7 iterate_dir +EXPORT_SYMBOL vmlinux 0x10a98f2c dev_set_group +EXPORT_SYMBOL vmlinux 0x10ae5e35 inode_add_bytes EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0x10c67b41 security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x10d2a5c1 ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find EXPORT_SYMBOL vmlinux 0x10e6794e fsync_bdev EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x11082464 xfrm_lookup EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110a1403 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x1125f07b scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x11292909 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x111ba2dd __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x11299a7e scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x113a9c2b flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0x113dabe6 pmem_sector_size -EXPORT_SYMBOL vmlinux 0x11538039 generic_file_open +EXPORT_SYMBOL vmlinux 0x1146bdf9 udp_lib_getsockopt EXPORT_SYMBOL vmlinux 0x115ed9c6 blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0x116069b3 xfrm_lookup EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1177a466 register_netdevice -EXPORT_SYMBOL vmlinux 0x1177c2e7 netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0x11838d0b phy_device_create -EXPORT_SYMBOL vmlinux 0x118e9a86 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x1193ed0c mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x11794af7 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x118855a6 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x11895e9e nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x118bde42 filemap_fault EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch -EXPORT_SYMBOL vmlinux 0x119e93ac tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x11b5da78 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x11a19837 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x11a50721 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x11acf892 devfreq_update_status +EXPORT_SYMBOL vmlinux 0x11b4c8b6 neigh_parms_release EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic EXPORT_SYMBOL vmlinux 0x11f27754 nand_ecc_init_ctx @@ -6237,68 +6152,62 @@ EXPORT_SYMBOL vmlinux 0x11f38f42 pci_reenable_device EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp EXPORT_SYMBOL vmlinux 0x11fa2a50 cpumask_any_distribute EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx -EXPORT_SYMBOL vmlinux 0x1208aba4 neigh_event_ns EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120ffa2b gro_cells_receive EXPORT_SYMBOL vmlinux 0x1210fb32 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x121166c6 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x12147848 vfs_unlink EXPORT_SYMBOL vmlinux 0x1222af7f security_binder_transfer_binder EXPORT_SYMBOL vmlinux 0x124090e8 seq_file_path EXPORT_SYMBOL vmlinux 0x124402ff pcie_get_readrq EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x12508642 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x1250c752 security_req_classify_flow EXPORT_SYMBOL vmlinux 0x1251bb08 config_item_put EXPORT_SYMBOL vmlinux 0x12587986 configfs_depend_item EXPORT_SYMBOL vmlinux 0x126d070c get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x12794014 scsi_eh_restore_cmnd EXPORT_SYMBOL vmlinux 0x12827367 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x12910242 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x12940b90 tcp_child_process -EXPORT_SYMBOL vmlinux 0x12a4231a security_path_unlink -EXPORT_SYMBOL vmlinux 0x12a856bd mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x12a97857 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x12bf55e8 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x12c59166 generic_permission -EXPORT_SYMBOL vmlinux 0x12c5a643 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x128badc8 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x12a656b1 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x12b4fd31 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x12bf4ee9 __dev_get_by_name EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12ce912a crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x12ddc9ee cont_write_begin -EXPORT_SYMBOL vmlinux 0x12e42411 icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0x12ec84c9 ihold EXPORT_SYMBOL vmlinux 0x12f19edf __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x12f62986 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x12f35978 register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var EXPORT_SYMBOL vmlinux 0x130a2c6a request_firmware_nowait EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x13113e65 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x13127f1b inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13368381 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x1336dfbd ip_getsockopt EXPORT_SYMBOL vmlinux 0x1338be98 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x134c5f31 kernel_sendpage_locked EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x135e01bb kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x135e7f53 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x136aaf7b ppp_channel_index EXPORT_SYMBOL vmlinux 0x1378c6b7 __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x13802d68 xfrm6_protocol_register EXPORT_SYMBOL vmlinux 0x1398c01d current_in_userns EXPORT_SYMBOL vmlinux 0x139c7e0c param_get_invbool -EXPORT_SYMBOL vmlinux 0x13afb737 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x13ba5565 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x139cc78a tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x139db58a tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x13a5e9ec __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0x13bae7f4 blkdev_put EXPORT_SYMBOL vmlinux 0x13c74b4b input_register_handle EXPORT_SYMBOL vmlinux 0x13c7dc49 msm_pinctrl_dev_pm_ops -EXPORT_SYMBOL vmlinux 0x13ca685c tcp_v4_mtu_reduced EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d0d9d6 netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x13e25d25 nand_ecc_sw_bch_correct EXPORT_SYMBOL vmlinux 0x13e3f6b7 rproc_get_by_child EXPORT_SYMBOL vmlinux 0x13e8fcba pci_scan_bridge EXPORT_SYMBOL vmlinux 0x13ed4f56 vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x13ee4c82 ip6_route_me_harder EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13f52c51 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x13f5eac2 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x13f8eb9c tso_build_data +EXPORT_SYMBOL vmlinux 0x1405cc90 sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0x140cef8e cmxgcr_lock EXPORT_SYMBOL vmlinux 0x143418e1 __ps2_command EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x143bb803 bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0x143faa9d devm_of_iomap EXPORT_SYMBOL vmlinux 0x144a1597 elv_rb_former_request EXPORT_SYMBOL vmlinux 0x1451e8e5 vm_zone_stat @@ -6308,246 +6217,255 @@ EXPORT_SYMBOL vmlinux 0x14758258 rproc_coredump_add_segment EXPORT_SYMBOL vmlinux 0x1486978a gen_pool_add_owner EXPORT_SYMBOL vmlinux 0x1488e5d3 snd_jack_report EXPORT_SYMBOL vmlinux 0x148d0bbe dquot_file_open -EXPORT_SYMBOL vmlinux 0x14c11da2 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x14a0437d ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x14aa09fe reuseport_detach_prog EXPORT_SYMBOL vmlinux 0x14ca70f6 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x14d369e9 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x14ce5577 security_sk_clone EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x14e3f014 inet_frag_pull_head EXPORT_SYMBOL vmlinux 0x14e78083 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x14f00ba4 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x14fe9082 mmc_request_done -EXPORT_SYMBOL vmlinux 0x1511ef6e genphy_soft_reset EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x153a2545 block_write_end +EXPORT_SYMBOL vmlinux 0x153b5ad2 unlock_page_memcg EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy EXPORT_SYMBOL vmlinux 0x15570618 input_get_timestamp EXPORT_SYMBOL vmlinux 0x155b9bf3 snd_compr_malloc_pages -EXPORT_SYMBOL vmlinux 0x155c267c reuseport_alloc -EXPORT_SYMBOL vmlinux 0x1576c183 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x15a34e03 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x1560fae3 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x15632a7f dentry_path_raw +EXPORT_SYMBOL vmlinux 0x15686584 phy_loopback +EXPORT_SYMBOL vmlinux 0x15a49fd8 sock_kfree_s EXPORT_SYMBOL vmlinux 0x15abc94e fault_in_iov_iter_writeable 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 0x15e0bef3 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x15e8e2e9 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x15eb71cd devm_devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x15f07f82 cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x15f63c41 pipe_lock EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x1602b2b0 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x15ff9d7d inet_register_protosw +EXPORT_SYMBOL vmlinux 0x160cec7d mdio_bus_type EXPORT_SYMBOL vmlinux 0x16132665 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x1613d9c2 sock_sendmsg EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x163186ce skb_expand_head EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x163461cd devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x163bd400 mmc_command_done -EXPORT_SYMBOL vmlinux 0x164d553d dev_pick_tx_cpu_id EXPORT_SYMBOL vmlinux 0x16525cc4 xa_find -EXPORT_SYMBOL vmlinux 0x166f016f jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x167d9969 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x1681bd44 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x169226df tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x169af5cd buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x16accb17 security_d_instantiate EXPORT_SYMBOL vmlinux 0x16adbf67 down_killable EXPORT_SYMBOL vmlinux 0x16bbc067 sg_miter_start +EXPORT_SYMBOL vmlinux 0x16c047fe register_netdev EXPORT_SYMBOL vmlinux 0x16ce39ae con_copy_unimap EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16ec7ff2 unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0x16ffad75 fscrypt_ioctl_get_policy EXPORT_SYMBOL vmlinux 0x172b5482 dma_fence_array_create EXPORT_SYMBOL vmlinux 0x173b6494 d_alloc -EXPORT_SYMBOL vmlinux 0x174fff63 tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x1762b05c vfs_getattr -EXPORT_SYMBOL vmlinux 0x176dad24 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x175c45fa try_module_get +EXPORT_SYMBOL vmlinux 0x175c4665 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x1761e69c user_path_create +EXPORT_SYMBOL vmlinux 0x17672269 neigh_lookup EXPORT_SYMBOL vmlinux 0x1774370c thaw_super +EXPORT_SYMBOL vmlinux 0x1774f40e skb_headers_offset_update EXPORT_SYMBOL vmlinux 0x17768be4 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x17806a0b __breadahead EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x17af551d vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x17b12140 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x17b5ab97 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x17b8a6fc xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0x17c16869 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x178d1387 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x1799a164 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x17a70cf4 netpoll_setup EXPORT_SYMBOL vmlinux 0x17cd8b25 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x17d28060 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x17d6e111 migrate_page_move_mapping EXPORT_SYMBOL vmlinux 0x17eadbd9 snd_info_create_card_entry -EXPORT_SYMBOL vmlinux 0x17edf607 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x17feb908 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x180f7ced nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x181093c8 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x17f3daca get_task_cred EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x18477f99 udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x18583951 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x185bd712 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x185c96b8 register_nexthop_notifier EXPORT_SYMBOL vmlinux 0x185f3c8b rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0x1860cec7 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0x1877936a of_find_all_nodes EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free EXPORT_SYMBOL vmlinux 0x187eb3fd rtc_add_group EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 EXPORT_SYMBOL vmlinux 0x18a26e31 nla_reserve_64bit EXPORT_SYMBOL vmlinux 0x18a6e0b9 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x18b67711 security_old_inode_init_security EXPORT_SYMBOL vmlinux 0x18c0e599 of_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0x18d12d23 param_ops_bool -EXPORT_SYMBOL vmlinux 0x18d5b577 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x18e2cea4 phy_print_status +EXPORT_SYMBOL vmlinux 0x18d1ca82 mr_dump EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x19051e98 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x18e820ab dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x18ff26f7 skb_ensure_writable EXPORT_SYMBOL vmlinux 0x190a48a9 efi +EXPORT_SYMBOL vmlinux 0x190b8f7e jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0x19110d27 pm860x_bulk_write EXPORT_SYMBOL vmlinux 0x1911f090 devm_rproc_add -EXPORT_SYMBOL vmlinux 0x191e23ce do_splice_direct -EXPORT_SYMBOL vmlinux 0x193e290d inet_bind -EXPORT_SYMBOL vmlinux 0x1944a87d __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x1950d42d ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x1953435e dentry_path_raw +EXPORT_SYMBOL vmlinux 0x19378217 sk_send_sigurg EXPORT_SYMBOL vmlinux 0x195c8596 cpu_rmap_update EXPORT_SYMBOL vmlinux 0x19615f28 con_is_bound EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode -EXPORT_SYMBOL vmlinux 0x19841ff9 page_get_link 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 0x1988ee80 rt_dst_alloc EXPORT_SYMBOL vmlinux 0x198b5c1d pcie_bandwidth_available EXPORT_SYMBOL vmlinux 0x198bc7de pci_release_region -EXPORT_SYMBOL vmlinux 0x19976416 migrate_page +EXPORT_SYMBOL vmlinux 0x1997d405 ip6_fraglist_init EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a676d0 __getblk_gfp EXPORT_SYMBOL vmlinux 0x19b37944 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x19badb77 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x19baa222 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x19bb1a6b ppp_input_error EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19be6dab clk_hw_get_clk EXPORT_SYMBOL vmlinux 0x19c02bb8 register_md_personality -EXPORT_SYMBOL vmlinux 0x19c7d129 set_bh_page -EXPORT_SYMBOL vmlinux 0x19ddbf4b vlan_for_each -EXPORT_SYMBOL vmlinux 0x19e8ea3b sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x19d97e84 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x19eb7c7d dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x19f37a96 eth_type_trans +EXPORT_SYMBOL vmlinux 0x19f6f8cf ip_generic_getfrag EXPORT_SYMBOL vmlinux 0x1a014fe9 devm_nvmem_unregister EXPORT_SYMBOL vmlinux 0x1a04a1b6 of_count_phandle_with_args EXPORT_SYMBOL vmlinux 0x1a21d691 __ksize -EXPORT_SYMBOL vmlinux 0x1a2217db dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x1a24bec5 sock_bindtoindex -EXPORT_SYMBOL vmlinux 0x1a389415 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x1a5a10c3 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x1a5cc7a4 sock_bindtoindex EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn -EXPORT_SYMBOL vmlinux 0x1a6b26fb ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x1a6c1d05 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x1a76aef4 vfs_path_lookup EXPORT_SYMBOL vmlinux 0x1a7bc9ef xxh32 +EXPORT_SYMBOL vmlinux 0x1a85bd5e tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x1a87cc6a dst_release EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aa2e60d phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0x1aa54978 noop_fsync EXPORT_SYMBOL vmlinux 0x1aa86d18 rdma_dim -EXPORT_SYMBOL vmlinux 0x1aad7bfa __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x1ab24d9f sk_stream_error EXPORT_SYMBOL vmlinux 0x1ab537e4 sync_blockdev +EXPORT_SYMBOL vmlinux 0x1ad1c1d0 vfs_link EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1ad2b564 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x1ad875fd generic_file_open EXPORT_SYMBOL vmlinux 0x1aded990 ZSTD_DCtxWorkspaceBound EXPORT_SYMBOL vmlinux 0x1af05aa5 inode_init_always EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0eb596 dev_addr_init EXPORT_SYMBOL vmlinux 0x1b15d935 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x1b1894c0 page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x1b25f187 __xa_store EXPORT_SYMBOL vmlinux 0x1b2f8e6a of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x1b3d2708 phy_connect +EXPORT_SYMBOL vmlinux 0x1b3edefc snd_soc_alloc_ac97_component +EXPORT_SYMBOL vmlinux 0x1b502a10 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x1b55ca89 tcf_block_put_ext EXPORT_SYMBOL vmlinux 0x1b59e832 component_match_add_typed +EXPORT_SYMBOL vmlinux 0x1b5c4636 nf_register_net_hook EXPORT_SYMBOL vmlinux 0x1b5ef286 snd_jack_add_new_kctl EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton EXPORT_SYMBOL vmlinux 0x1b641d17 seq_vprintf +EXPORT_SYMBOL vmlinux 0x1b6cdf41 alloc_buffer_head EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b952e1c kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x1b7955be vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x1b7f2180 skb_append EXPORT_SYMBOL vmlinux 0x1b965a53 kunmap_local_indexed EXPORT_SYMBOL vmlinux 0x1ba45953 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x1ba8fab1 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x1bcd1b10 inode_nohighmem -EXPORT_SYMBOL vmlinux 0x1bd1adeb mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x1bfeb01e inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x1c0e970a prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x1c192190 sock_wake_async +EXPORT_SYMBOL vmlinux 0x1bf48b0e phy_attached_info +EXPORT_SYMBOL vmlinux 0x1bf55286 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x1c098feb devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x1c1247dd phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x1c2fb081 skb_tx_error EXPORT_SYMBOL vmlinux 0x1c2ffc6f phy_write_mmd -EXPORT_SYMBOL vmlinux 0x1c3a119d kfree_skb_reason -EXPORT_SYMBOL vmlinux 0x1c5d5106 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x1c5595e6 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x1c57cf8b eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c611dec dev_get_flags +EXPORT_SYMBOL vmlinux 0x1c5fe7c3 km_state_expired EXPORT_SYMBOL vmlinux 0x1c700f2b elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x1c729dad genl_register_family EXPORT_SYMBOL vmlinux 0x1c777c5c dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x1c789bb2 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x1c9799d9 eth_gro_complete EXPORT_SYMBOL vmlinux 0x1ca3ddf0 pci_release_regions EXPORT_SYMBOL vmlinux 0x1caf2a5b always_delete_dentry +EXPORT_SYMBOL vmlinux 0x1cb3fa24 build_skb_around +EXPORT_SYMBOL vmlinux 0x1cb4066c icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x1cc35bb8 nand_read_oob_std +EXPORT_SYMBOL vmlinux 0x1cc5471d dst_dev_put EXPORT_SYMBOL vmlinux 0x1ccf213b find_inode_nowait EXPORT_SYMBOL vmlinux 0x1cd4aa7a md_handle_request -EXPORT_SYMBOL vmlinux 0x1ce510c0 napi_get_frags +EXPORT_SYMBOL vmlinux 0x1ce9e8c9 dev_set_mac_address EXPORT_SYMBOL vmlinux 0x1cf26844 blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0x1cfa6e6c jbd2_journal_get_write_access EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL vmlinux 0x1d08f580 tcp_prot -EXPORT_SYMBOL vmlinux 0x1d12befc arp_xmit +EXPORT_SYMBOL vmlinux 0x1d101ddb mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x1d134b4e dev_uc_init EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x1d3412ca phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0x1d37eeed ioremap -EXPORT_SYMBOL vmlinux 0x1d38a692 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x1d5ce213 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x1d43fa76 sk_dst_check +EXPORT_SYMBOL vmlinux 0x1d44d26c of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x1d70fe41 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x1d77a026 ethtool_get_phc_vclocks EXPORT_SYMBOL vmlinux 0x1d796395 hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0x1d8a84a4 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x1d8579ce mdio_find_bus +EXPORT_SYMBOL vmlinux 0x1da4af0b sock_gettstamp +EXPORT_SYMBOL vmlinux 0x1dbd108f scsi_done EXPORT_SYMBOL vmlinux 0x1dc34b98 clear_nlink +EXPORT_SYMBOL vmlinux 0x1dc435fa mmc_remove_host EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dd1d133 dev_mc_del EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1dd766ad tcp_gro_complete 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 0x1dee37f3 read_cache_page -EXPORT_SYMBOL vmlinux 0x1dfee29e tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0x1e002092 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x1e0463ac eth_get_headlen EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0be3dc __neigh_for_each_release EXPORT_SYMBOL vmlinux 0x1e19c1c8 blk_integrity_compare EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e1f2fc0 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x1e226fa3 crypto_sha256_update EXPORT_SYMBOL vmlinux 0x1e2d44b2 __do_once_slow_done -EXPORT_SYMBOL vmlinux 0x1e314dab rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x1e438216 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x1e4858aa genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x1e48d9bc netif_carrier_off EXPORT_SYMBOL vmlinux 0x1e5284e4 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x1e5caa80 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x1e5357c2 netlink_ns_capable EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e78ac43 __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0x1e7a29ad nand_write_page_raw -EXPORT_SYMBOL vmlinux 0x1e812a9f seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x1e834fed netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x1e8a2e86 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x1e832dae inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x1e859c57 __phy_resume EXPORT_SYMBOL vmlinux 0x1e8c3361 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0x1e90b332 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x1e940f2a dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0x1e96f43d __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x1e9bb84d inet_release EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu EXPORT_SYMBOL vmlinux 0x1eb64646 div64_s64 -EXPORT_SYMBOL vmlinux 0x1eb7c363 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x1ebff67b pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0x1ec02402 phy_start_cable_test_tdr EXPORT_SYMBOL vmlinux 0x1ed2e289 rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1ed9750c scsi_dma_map EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ee39bb0 phy_error -EXPORT_SYMBOL vmlinux 0x1ee909a8 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x1edfb32f skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x1ee9ab4b netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x1ef79978 write_cache_pages +EXPORT_SYMBOL vmlinux 0x1f02916d neigh_sysctl_register EXPORT_SYMBOL vmlinux 0x1f18a530 seq_pad -EXPORT_SYMBOL vmlinux 0x1f4b05f5 phy_loopback +EXPORT_SYMBOL vmlinux 0x1f1a27e6 genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x1f4d5778 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x1f57e9a9 file_ns_capable +EXPORT_SYMBOL vmlinux 0x1f596eaa sock_from_file EXPORT_SYMBOL vmlinux 0x1f608004 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x1f628fb3 fiemap_prep +EXPORT_SYMBOL vmlinux 0x1f69e138 vfs_rmdir EXPORT_SYMBOL vmlinux 0x1f6c62fd dma_resv_add_excl_fence EXPORT_SYMBOL vmlinux 0x1f730a56 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x1f874644 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x1f76c408 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x1f87ba38 vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0x1f897ec5 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x1f8c5570 proto_unregister +EXPORT_SYMBOL vmlinux 0x1f8ecd4f i2c_del_driver EXPORT_SYMBOL vmlinux 0x1f9b3c7f unregister_cdrom -EXPORT_SYMBOL vmlinux 0x1fa6a811 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x1faf88ef i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x1fb3371d inet_register_protosw +EXPORT_SYMBOL vmlinux 0x1fa0bd2f keyring_search +EXPORT_SYMBOL vmlinux 0x1fbb04f4 skb_vlan_push EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio EXPORT_SYMBOL vmlinux 0x1fc1c3c5 tty_port_init EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag EXPORT_SYMBOL vmlinux 0x1fd7d35d phy_read_mmd -EXPORT_SYMBOL vmlinux 0x1feeff61 security_path_mknod +EXPORT_SYMBOL vmlinux 0x1ffa4968 tcp_v4_send_check EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul EXPORT_SYMBOL vmlinux 0x200036a3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x2005abaf scsi_print_sense_hdr EXPORT_SYMBOL vmlinux 0x20070ea2 _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x20095a05 __dev_kfree_skb_irq EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20152dae generic_fadvise EXPORT_SYMBOL vmlinux 0x2016c24a input_handler_for_each_handle EXPORT_SYMBOL vmlinux 0x201fe906 input_inject_event EXPORT_SYMBOL vmlinux 0x202dda14 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x2032bd4d fwnode_mdio_find_device EXPORT_SYMBOL vmlinux 0x20368d45 pcim_set_mwi EXPORT_SYMBOL vmlinux 0x20397c21 __post_watch_notification EXPORT_SYMBOL vmlinux 0x204af5b5 netlbl_audit_start @@ -6555,252 +6473,263 @@ EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list EXPORT_SYMBOL vmlinux 0x20678ea2 pci_ep_cfs_remove_epc_group EXPORT_SYMBOL vmlinux 0x2072b8b4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x207625d7 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x20901676 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x20992f91 vme_slot_num EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20ad9682 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x20d04747 module_layout +EXPORT_SYMBOL vmlinux 0x20d0de09 skb_abort_seq_read EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20dff7e3 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x20fed868 register_nexthop_notifier EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x210ccccd finish_swait EXPORT_SYMBOL vmlinux 0x21110dbf mmioset EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 -EXPORT_SYMBOL vmlinux 0x2129ae57 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x211ce9b3 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x212f3ad3 mmc_wait_for_req EXPORT_SYMBOL vmlinux 0x21302b5a elv_rb_find EXPORT_SYMBOL vmlinux 0x21319936 input_set_capability EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x213f2d23 pagevec_lookup_range EXPORT_SYMBOL vmlinux 0x214b5381 kill_litter_super EXPORT_SYMBOL vmlinux 0x215639ea iov_iter_init +EXPORT_SYMBOL vmlinux 0x21615bc3 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x2161e760 inet_select_addr EXPORT_SYMBOL vmlinux 0x216755e0 snd_timer_start EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x21795a3f phy_device_remove EXPORT_SYMBOL vmlinux 0x217d9d8f bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x2181636a security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0x21825602 user_path_create +EXPORT_SYMBOL vmlinux 0x218a56ee keyring_alloc EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x218ea932 pskb_expand_head EXPORT_SYMBOL vmlinux 0x21a6f13c of_device_get_match_data EXPORT_SYMBOL vmlinux 0x21ab7eac blk_integrity_unregister EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21c8911d devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x21cc799a security_path_mknod +EXPORT_SYMBOL vmlinux 0x21d764b3 vfs_copy_file_range EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e26438 of_device_register +EXPORT_SYMBOL vmlinux 0x21e1a73f inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0x21fba15f devm_clk_put EXPORT_SYMBOL vmlinux 0x22131e8f regset_get EXPORT_SYMBOL vmlinux 0x2220bd48 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2223b072 dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0x2224ab49 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x222c4f71 netlink_net_capable EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq EXPORT_SYMBOL vmlinux 0x22332a6e dquot_initialize_needed EXPORT_SYMBOL vmlinux 0x223d0359 of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0x2252e71b __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0x2254617b ipmi_platform_add -EXPORT_SYMBOL vmlinux 0x2276ff8c scsi_print_sense -EXPORT_SYMBOL vmlinux 0x2285c234 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x22a7f6e0 phy_trigger_machine -EXPORT_SYMBOL vmlinux 0x22ac3229 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x22448424 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x226da89c tcp_rcv_state_process EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b47a2f dev_set_mtu +EXPORT_SYMBOL vmlinux 0x22b48e9d ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x22b6404d netlink_capable +EXPORT_SYMBOL vmlinux 0x22eef416 trace_event_printf EXPORT_SYMBOL vmlinux 0x232343d5 dm_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0x232dbac7 omap_rtc_power_off_program +EXPORT_SYMBOL vmlinux 0x232f8253 i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0x2332d7ab of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x2340a41a kernel_write EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x23659797 jbd2_journal_stop EXPORT_SYMBOL vmlinux 0x236c5f34 snd_timer_global_register EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short EXPORT_SYMBOL vmlinux 0x23a8e84f mipi_dsi_dcs_read EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23dd763e lookup_one +EXPORT_SYMBOL vmlinux 0x23d2cb98 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x23e09804 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x23e95a1b neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x23ef5855 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node EXPORT_SYMBOL vmlinux 0x2403f66c pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x240de1ce phy_device_remove -EXPORT_SYMBOL vmlinux 0x240efa87 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x241bed2f netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x240b5342 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x2413ba20 gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242af8b4 tcf_em_tree_validate EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2452b6cb netdev_change_features EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x2459c8f9 mr_mfc_find_any EXPORT_SYMBOL vmlinux 0x24660310 fs_lookup_param EXPORT_SYMBOL vmlinux 0x246790df idr_for_each EXPORT_SYMBOL vmlinux 0x246ea205 blake2s_update -EXPORT_SYMBOL vmlinux 0x246ef42b __page_symlink EXPORT_SYMBOL vmlinux 0x2474f511 blkdev_get_by_dev EXPORT_SYMBOL vmlinux 0x24750fd3 rawnand_sw_bch_correct -EXPORT_SYMBOL vmlinux 0x2486b046 dump_page +EXPORT_SYMBOL vmlinux 0x249bf1f7 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x249f3f5b nf_getsockopt EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL vmlinux 0x24d161ba security_path_rename EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24d373b8 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x24d935e8 __xfrm_init_state EXPORT_SYMBOL vmlinux 0x24e9ed5f from_kprojid_munged EXPORT_SYMBOL vmlinux 0x24ebdab1 nd_device_notify -EXPORT_SYMBOL vmlinux 0x24ff7a0a vfs_statfs EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x250b8a92 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x250d692e __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x2511812c xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x251be4bc phy_drivers_unregister EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x252ca4b5 netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0x252ef981 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x254c3868 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x253d2e0b ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x25409189 genphy_write_mmd_unsupported EXPORT_SYMBOL vmlinux 0x254cc665 __destroy_inode +EXPORT_SYMBOL vmlinux 0x254d64e1 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x254e183f rio_query_mport -EXPORT_SYMBOL vmlinux 0x25705bbf scsi_device_lookup EXPORT_SYMBOL vmlinux 0x257ae45c dma_fence_free EXPORT_SYMBOL vmlinux 0x2581c529 inc_zone_page_state EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2589db78 rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation EXPORT_SYMBOL vmlinux 0x2590df78 fwnode_mdiobus_register_phy EXPORT_SYMBOL vmlinux 0x2591fda2 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x259675c1 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x25bcdc3e kmalloc_caches -EXPORT_SYMBOL vmlinux 0x25c82934 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x25cc9b97 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x25d7b9fe netif_napi_add -EXPORT_SYMBOL vmlinux 0x25e3c5e9 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x259ef0cf skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e658ef devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x25e706a1 jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x25e96fc0 dcache_dir_open EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f17b95 phy_stop -EXPORT_SYMBOL vmlinux 0x25f3720d ppp_channel_index -EXPORT_SYMBOL vmlinux 0x260447c9 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x2609848f vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x25feb105 cpufreq_generic_suspend EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x260a1899 skb_copy EXPORT_SYMBOL vmlinux 0x2618e999 ps2_begin_command EXPORT_SYMBOL vmlinux 0x261c33aa dma_map_page_attrs EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x264799ce __block_write_begin EXPORT_SYMBOL vmlinux 0x265036b4 proc_mkdir +EXPORT_SYMBOL vmlinux 0x266bb4ca __of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x2671210d devfreq_update_target EXPORT_SYMBOL vmlinux 0x267b273a bio_advance EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get EXPORT_SYMBOL vmlinux 0x2690e6c1 _find_next_zero_bit_le EXPORT_SYMBOL vmlinux 0x269b4cbb request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x26a7420b fifo_set_limit +EXPORT_SYMBOL vmlinux 0x26acb4c6 nf_log_trace EXPORT_SYMBOL vmlinux 0x26ad6f7c nand_ecc_sw_hamming_calculate EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26c1ecb7 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x26d1d08c nobh_writepage +EXPORT_SYMBOL vmlinux 0x26e43f3e eth_validate_addr EXPORT_SYMBOL vmlinux 0x26e911db snd_timer_open -EXPORT_SYMBOL vmlinux 0x26f8daf6 ip_options_compile +EXPORT_SYMBOL vmlinux 0x26eddde2 dev_uc_sync EXPORT_SYMBOL vmlinux 0x26fbb8fc phy_modify_paged_changed EXPORT_SYMBOL vmlinux 0x2701232c pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x2706edf1 udp_seq_ops EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl EXPORT_SYMBOL vmlinux 0x271e0118 igrab -EXPORT_SYMBOL vmlinux 0x272aaa48 read_cache_pages +EXPORT_SYMBOL vmlinux 0x2731f50b pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed EXPORT_SYMBOL vmlinux 0x273c8d53 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x2745a00c generic_file_direct_write EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x27546ef5 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x2751fd1a tc_setup_cb_add EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x27654f94 security_path_unlink +EXPORT_SYMBOL vmlinux 0x27656563 softnet_data EXPORT_SYMBOL vmlinux 0x276a3a44 irq_stat -EXPORT_SYMBOL vmlinux 0x276c2ba5 vm_iomap_memory EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x277e8708 devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x2785a13c devm_devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27b36e35 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x27b70b80 flow_rule_match_meta EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c05c26 block_read_full_page -EXPORT_SYMBOL vmlinux 0x27cc32a5 mr_dump +EXPORT_SYMBOL vmlinux 0x27bddcc2 cad_pid EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource EXPORT_SYMBOL vmlinux 0x27e6b46b devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x27eeddd0 PageMovable +EXPORT_SYMBOL vmlinux 0x27f1d3a9 unmap_mapping_range EXPORT_SYMBOL vmlinux 0x280b31d6 blk_post_runtime_suspend EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x2812d214 dev_queue_xmit_accel EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x281c09a5 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x2833abc7 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x28390a7d netlink_broadcast_filtered EXPORT_SYMBOL vmlinux 0x283ba8ea blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x284bb6a9 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x2856ea9d nobh_write_begin -EXPORT_SYMBOL vmlinux 0x285b012b ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x2867b1ee vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x2846ee8f skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x286f6530 dev_disable_lro EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 EXPORT_SYMBOL vmlinux 0x2878e15a idr_destroy EXPORT_SYMBOL vmlinux 0x288c5ff2 uart_match_port +EXPORT_SYMBOL vmlinux 0x2891d6fb locks_delete_block EXPORT_SYMBOL vmlinux 0x28aa46b2 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x28ba6be5 fqdir_exit -EXPORT_SYMBOL vmlinux 0x28f60afb no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x28c57dcb write_one_page EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x29196e8c tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0x293a755f vfs_get_fsid -EXPORT_SYMBOL vmlinux 0x29411acd mem_map -EXPORT_SYMBOL vmlinux 0x294ca22a generic_ro_fops +EXPORT_SYMBOL vmlinux 0x292aa952 ether_setup +EXPORT_SYMBOL vmlinux 0x29312fce phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x2941eacd phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x294a561b block_invalidatepage +EXPORT_SYMBOL vmlinux 0x294e756f vme_register_error_handler EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x2974adff flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x2977346b __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x297fd03d flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x29876607 __d_drop -EXPORT_SYMBOL vmlinux 0x2995c262 phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0x2998480e __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x2989985b __SetPageMovable +EXPORT_SYMBOL vmlinux 0x299ff519 __netif_napi_del EXPORT_SYMBOL vmlinux 0x29a47fe9 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x29b72de6 touch_buffer -EXPORT_SYMBOL vmlinux 0x29d1a231 gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0x29d9f26e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x2a117e5f flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x2a11ad7e napi_disable -EXPORT_SYMBOL vmlinux 0x2a132081 eth_type_trans -EXPORT_SYMBOL vmlinux 0x2a27573d phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x29fb985d kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x2a24f693 netdev_crit +EXPORT_SYMBOL vmlinux 0x2a266b7a kernel_write +EXPORT_SYMBOL vmlinux 0x2a2d0625 fget_raw EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature EXPORT_SYMBOL vmlinux 0x2a30c2dd dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x2a328ffb nvmem_get_mac_address EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit EXPORT_SYMBOL vmlinux 0x2a52f245 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL vmlinux 0x2a6cf5ec i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x2a625fdc netdev_emerg +EXPORT_SYMBOL vmlinux 0x2a7653bd flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0x2a7864b7 kobject_add -EXPORT_SYMBOL vmlinux 0x2a895c52 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x2a854ec4 dcb_setapp EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get -EXPORT_SYMBOL vmlinux 0x2a9a61bd dev_set_group +EXPORT_SYMBOL vmlinux 0x2a9e5faa cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2af4a9a6 mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x2af7396d tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x2ae172e5 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x2af6974a can_nice +EXPORT_SYMBOL vmlinux 0x2afb3e75 __traceiter_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x2aff21e3 pci_save_state EXPORT_SYMBOL vmlinux 0x2b044eba cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0x2b075ba2 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x2b16ff20 set_binfmt -EXPORT_SYMBOL vmlinux 0x2b238e10 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x2b31aeb5 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x2b15a77a __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x2b26a088 kill_fasync +EXPORT_SYMBOL vmlinux 0x2b522209 xfrm6_rcv_tnl EXPORT_SYMBOL vmlinux 0x2b567e7b of_graph_get_port_parent EXPORT_SYMBOL vmlinux 0x2b5fbaa2 blk_queue_dma_alignment EXPORT_SYMBOL vmlinux 0x2b676cc8 get_cached_acl -EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b69fc76 wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0x2b716edf fqdir_init EXPORT_SYMBOL vmlinux 0x2b719938 fb_set_cmap -EXPORT_SYMBOL vmlinux 0x2b8a179e __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0x2b97b00c of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x2b7bbcc2 tcf_get_next_chain EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2b9ed992 ata_print_version -EXPORT_SYMBOL vmlinux 0x2ba3a9d6 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x2bbde0ad netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x2bc8e8d6 brioctl_set +EXPORT_SYMBOL vmlinux 0x2bb6e7c6 ip_frag_init +EXPORT_SYMBOL vmlinux 0x2bbf3839 mark_buffer_write_io_error EXPORT_SYMBOL vmlinux 0x2bcc85fd mdio_device_remove -EXPORT_SYMBOL vmlinux 0x2bd737af dev_trans_start -EXPORT_SYMBOL vmlinux 0x2bdadb5c neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x2bf9c6f1 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x2bfe09d0 get_phy_device EXPORT_SYMBOL vmlinux 0x2bff5887 xa_destroy EXPORT_SYMBOL vmlinux 0x2c011fc2 pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0x2c07d265 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x2c01d925 inet_del_protocol EXPORT_SYMBOL vmlinux 0x2c155b94 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x2c1b0fb3 phy_queue_state_machine EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar EXPORT_SYMBOL vmlinux 0x2c42a97b _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x2c4689a6 __find_get_block -EXPORT_SYMBOL vmlinux 0x2c5d7642 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x2c5e96bb km_report -EXPORT_SYMBOL vmlinux 0x2c5f951b gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x2c569034 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x2c5988e1 __getblk_gfp EXPORT_SYMBOL vmlinux 0x2c695750 is_nvdimm_bus_locked EXPORT_SYMBOL vmlinux 0x2c6b6974 __wait_on_bit_lock EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem +EXPORT_SYMBOL vmlinux 0x2c7ec450 lru_cache_add EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs -EXPORT_SYMBOL vmlinux 0x2c8c8e49 tcf_block_get +EXPORT_SYMBOL vmlinux 0x2c8df56d generic_setlease EXPORT_SYMBOL vmlinux 0x2ca70052 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL vmlinux 0x2cb877ec tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x2ccf3629 unix_get_socket +EXPORT_SYMBOL vmlinux 0x2cb78e65 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x2cc67a36 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x2cc88a2e ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0x2cdd80ec simple_write_begin -EXPORT_SYMBOL vmlinux 0x2cdf7626 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x2cdf2586 mmc_calc_max_discard EXPORT_SYMBOL vmlinux 0x2ce022a8 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x2cf693f6 __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0x2cf6ac78 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x2cf8959a inet6_protos -EXPORT_SYMBOL vmlinux 0x2cfb0683 alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0x2cfbaff4 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x2cfda357 inet_frags_init EXPORT_SYMBOL vmlinux 0x2cfde9a2 warn_slowpath_fmt EXPORT_SYMBOL vmlinux 0x2d0014ff framebuffer_alloc EXPORT_SYMBOL vmlinux 0x2d006859 of_find_backlight_by_node EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d146e09 block_write_full_page -EXPORT_SYMBOL vmlinux 0x2d2b909d end_page_writeback +EXPORT_SYMBOL vmlinux 0x2d1fc5cf gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x2d247007 xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup @@ -6808,420 +6737,402 @@ EXPORT_SYMBOL vmlinux 0x2d3ef14c rproc_add_subdev EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font EXPORT_SYMBOL vmlinux 0x2d5ada63 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x2d5d2933 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x2d63dd83 phy_attach_direct EXPORT_SYMBOL vmlinux 0x2d681bf7 vmap EXPORT_SYMBOL vmlinux 0x2d683bc5 pcie_relaxed_ordering_enabled EXPORT_SYMBOL vmlinux 0x2d6b0eda dma_alloc_attrs EXPORT_SYMBOL vmlinux 0x2d6fcc06 __kmalloc +EXPORT_SYMBOL vmlinux 0x2d72ad69 i2c_smbus_read_word_data EXPORT_SYMBOL vmlinux 0x2d73cd13 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x2d7cfb50 generic_setlease EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year -EXPORT_SYMBOL vmlinux 0x2d96ab97 km_policy_notify EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2da2169b follow_down_one -EXPORT_SYMBOL vmlinux 0x2dbd0bf9 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x2da27eb1 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x2dc586b8 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x2dd48f9c unregister_shrinker EXPORT_SYMBOL vmlinux 0x2dd8260b mipi_dsi_dcs_set_display_on EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2de624cf inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0x2de72fb3 set_disk_ro EXPORT_SYMBOL vmlinux 0x2df0d65f devm_request_resource -EXPORT_SYMBOL vmlinux 0x2df4b495 __skb_flow_dissect EXPORT_SYMBOL vmlinux 0x2e091c12 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x2e0922e8 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x2e136bd2 dev_activate EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e25c434 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x2e421b9c remap_pfn_range EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e51b9f8 xfrm_state_flush EXPORT_SYMBOL vmlinux 0x2e52c6eb md_finish_reshape EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e8249a4 vme_irq_free -EXPORT_SYMBOL vmlinux 0x2e9c316f genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x2e673bbe __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x2e87247a module_put EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set EXPORT_SYMBOL vmlinux 0x2edeb3d9 posix_acl_from_xattr EXPORT_SYMBOL vmlinux 0x2ee82356 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x2eeaf29a netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc EXPORT_SYMBOL vmlinux 0x2f0b877c register_framebuffer EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0x2f1a2e21 dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0x2f1a9385 __nla_reserve_64bit EXPORT_SYMBOL vmlinux 0x2f1b0d62 ZSTD_insertBlock EXPORT_SYMBOL vmlinux 0x2f1f871e pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x2f2906f5 fs_context_for_submount EXPORT_SYMBOL vmlinux 0x2f2b225d truncate_pagecache EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f3b557b vme_irq_generate EXPORT_SYMBOL vmlinux 0x2f50cbf5 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x2f51e493 mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0x2f5b0fdb gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2f60596e netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x2f632835 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x2f7380db neigh_for_each EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free EXPORT_SYMBOL vmlinux 0x2f7cca4f scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x2f89526c flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x2fa6d1c7 tcp_mtup_init EXPORT_SYMBOL vmlinux 0x2faad480 cros_ec_prepare_tx EXPORT_SYMBOL vmlinux 0x2fb57967 seq_escape_mem EXPORT_SYMBOL vmlinux 0x2fb911ed bio_clone_fast +EXPORT_SYMBOL vmlinux 0x2fbb254e inet_getname EXPORT_SYMBOL vmlinux 0x2fcf8a86 dma_find_channel EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier EXPORT_SYMBOL vmlinux 0x2fe70ca0 file_remove_privs -EXPORT_SYMBOL vmlinux 0x2feaddba ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x3016c4cf xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x30182e11 migrate_page_states -EXPORT_SYMBOL vmlinux 0x304bea74 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x300debf6 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x303313ba __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x303b4601 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x303c4915 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x303fb3f2 phy_device_free +EXPORT_SYMBOL vmlinux 0x30402afe generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x3047a39c udp_pre_connect EXPORT_SYMBOL vmlinux 0x304e154d make_kprojid EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0x30701042 tcp_hashinfo EXPORT_SYMBOL vmlinux 0x30745185 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x308b2232 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x3082e134 genphy_resume +EXPORT_SYMBOL vmlinux 0x308355d4 vme_bus_error_handler EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 EXPORT_SYMBOL vmlinux 0x30b12b14 blk_set_runtime_active EXPORT_SYMBOL vmlinux 0x30bc7c8e sget -EXPORT_SYMBOL vmlinux 0x30c84d98 locks_free_lock -EXPORT_SYMBOL vmlinux 0x30c851cc xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x30cf8855 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x30d8357b scsi_block_when_processing_errors EXPORT_SYMBOL vmlinux 0x30d9a471 gen_pool_create -EXPORT_SYMBOL vmlinux 0x30e22b0f jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw EXPORT_SYMBOL vmlinux 0x30faf2cd page_address EXPORT_SYMBOL vmlinux 0x31012141 request_partial_firmware_into_buf EXPORT_SYMBOL vmlinux 0x310128c9 elv_rb_del EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x3114e15f jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x31393baa filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0x313e17e3 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x31297f96 get_fs_type +EXPORT_SYMBOL vmlinux 0x31371450 scsi_print_sense EXPORT_SYMBOL vmlinux 0x313fd1bb param_set_byte -EXPORT_SYMBOL vmlinux 0x3142329a clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x31496de4 tcf_em_unregister EXPORT_SYMBOL vmlinux 0x314b20c8 scnprintf -EXPORT_SYMBOL vmlinux 0x314fb3ed pid_task -EXPORT_SYMBOL vmlinux 0x316131ba __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x3158ef95 tcp_child_process EXPORT_SYMBOL vmlinux 0x31659a0d tty_driver_flush_buffer EXPORT_SYMBOL vmlinux 0x317cd88d padata_set_cpumask EXPORT_SYMBOL vmlinux 0x318095cf cdev_set_parent -EXPORT_SYMBOL vmlinux 0x31831efc vfs_ioctl EXPORT_SYMBOL vmlinux 0x31891e4c utf8nagemin -EXPORT_SYMBOL vmlinux 0x319233e8 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x319fb32f qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x31945e40 tcp_getsockopt EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31a6e35d skb_queue_head EXPORT_SYMBOL vmlinux 0x31ba28e2 mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0x31c31c13 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x31bd65a1 skb_clone EXPORT_SYMBOL vmlinux 0x31da90f5 tty_register_driver -EXPORT_SYMBOL vmlinux 0x31e9201d neigh_seq_next EXPORT_SYMBOL vmlinux 0x31efaa21 cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0x31f510bf serio_unregister_port -EXPORT_SYMBOL vmlinux 0x31ff1ff3 inetdev_by_index EXPORT_SYMBOL vmlinux 0x3231809c __devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x3233f8cf default_llseek -EXPORT_SYMBOL vmlinux 0x32365f9a tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd EXPORT_SYMBOL vmlinux 0x3242b497 pci_rebar_get_possible_sizes EXPORT_SYMBOL vmlinux 0x32430023 _totalhigh_pages -EXPORT_SYMBOL vmlinux 0x32724d24 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x3246f51d phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x325a4e78 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x32687e6d dev_driver_string +EXPORT_SYMBOL vmlinux 0x326f822e follow_down_one EXPORT_SYMBOL vmlinux 0x32797137 amba_find_device EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state EXPORT_SYMBOL vmlinux 0x32869c32 md_done_sync EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy -EXPORT_SYMBOL vmlinux 0x32aa9770 kernel_connect +EXPORT_SYMBOL vmlinux 0x32ac2f6d security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x32add087 end_page_writeback EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32e7a3aa of_phy_get_and_connect EXPORT_SYMBOL vmlinux 0x32ee1630 cred_fscmp -EXPORT_SYMBOL vmlinux 0x3302bafb i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x331f9f2f sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x33228eb4 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x332937d9 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x3330b2d6 __sk_receive_skb EXPORT_SYMBOL vmlinux 0x3333cbbb seq_hex_dump EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down -EXPORT_SYMBOL vmlinux 0x334eea19 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x335298c9 mdio_device_create -EXPORT_SYMBOL vmlinux 0x3357982d filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0x335c5a5d blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x33715e67 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x338008ce mmc_register_driver EXPORT_SYMBOL vmlinux 0x3384fd97 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x339395cf tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x3397ec41 sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0x33a98532 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x33b0620c of_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x33b29996 del_gendisk +EXPORT_SYMBOL vmlinux 0x33b59ae8 sock_i_uid EXPORT_SYMBOL vmlinux 0x33c22422 dqget +EXPORT_SYMBOL vmlinux 0x33c4953f follow_up EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33df244f dev_mc_add_excl EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x3410f29c mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x3411aeb0 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x341591ea netdev_state_change +EXPORT_SYMBOL vmlinux 0x34116b0e _dev_info EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x3422344e submit_bio EXPORT_SYMBOL vmlinux 0x342f1029 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x34386040 audit_log +EXPORT_SYMBOL vmlinux 0x34393e9f dev_mc_flush EXPORT_SYMBOL vmlinux 0x3439b079 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x3440563b tcp_req_err EXPORT_SYMBOL vmlinux 0x344b012a __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x344d411f vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x34637e41 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x34616115 ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0x346cf000 __devm_request_region -EXPORT_SYMBOL vmlinux 0x3471e6c4 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x3483351b xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x3484b174 inet_shutdown +EXPORT_SYMBOL vmlinux 0x3489cc65 tcf_idr_cleanup EXPORT_SYMBOL vmlinux 0x349b4277 xa_clear_mark EXPORT_SYMBOL vmlinux 0x349cba85 strchr EXPORT_SYMBOL vmlinux 0x34a04d71 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x34af3d41 xfrm_replay_seqhi EXPORT_SYMBOL vmlinux 0x34b6b00a ps2_sendbyte EXPORT_SYMBOL vmlinux 0x34c5a4e1 sb_min_blocksize EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev EXPORT_SYMBOL vmlinux 0x34ca145c kstrtou8_from_user EXPORT_SYMBOL vmlinux 0x34d08636 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x34d4ac8a freezing_slow_path +EXPORT_SYMBOL vmlinux 0x34e6524c gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x34f28c93 __mark_inode_dirty EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue EXPORT_SYMBOL vmlinux 0x34fb115a request_key_rcu +EXPORT_SYMBOL vmlinux 0x350e98ad end_buffer_read_sync EXPORT_SYMBOL vmlinux 0x350efa95 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x35111721 rawv6_mh_filter_register EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier EXPORT_SYMBOL vmlinux 0x352eb16e of_get_parent +EXPORT_SYMBOL vmlinux 0x35379583 __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 EXPORT_SYMBOL vmlinux 0x3541bc41 get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x354c6001 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x354d0691 eth_header_cache_update EXPORT_SYMBOL vmlinux 0x3560e651 kmemdup_nul EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x3567fcc8 lookup_one_len -EXPORT_SYMBOL vmlinux 0x357babc1 qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0x359f32d4 cpufreq_get_policy EXPORT_SYMBOL vmlinux 0x35a47b52 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0x35a531a0 __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35b21374 neigh_destroy EXPORT_SYMBOL vmlinux 0x35b401ec update_region +EXPORT_SYMBOL vmlinux 0x35d672ad scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0x35ea78f5 atomic_io_modify_relaxed -EXPORT_SYMBOL vmlinux 0x35ed46d5 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x35fb02d7 udp_seq_next EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable EXPORT_SYMBOL vmlinux 0x3616fb70 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL vmlinux 0x3628d507 mdiobus_free -EXPORT_SYMBOL vmlinux 0x362b8a9a inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x3639818a devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0x364879a2 devm_of_find_backlight EXPORT_SYMBOL vmlinux 0x36558840 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x36588e6a tcp_hashinfo EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x366f0ed9 thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0x3670bd76 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x366a6613 devfreq_monitor_resume EXPORT_SYMBOL vmlinux 0x3672ecc5 get_tree_single +EXPORT_SYMBOL vmlinux 0x368289f3 dev_get_flags EXPORT_SYMBOL vmlinux 0x3683644b fscrypt_setup_filename EXPORT_SYMBOL vmlinux 0x3684f05d md_update_sb -EXPORT_SYMBOL vmlinux 0x3688e7a4 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x368abd18 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x3694c88f dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x36983f0d dst_init -EXPORT_SYMBOL vmlinux 0x36ae5335 nf_hook_slow_list EXPORT_SYMBOL vmlinux 0x36af5e35 bpf_sk_lookup_enabled +EXPORT_SYMBOL vmlinux 0x36b386b6 i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0x36b80986 rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0x36ba2567 get_phy_device -EXPORT_SYMBOL vmlinux 0x36cac490 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0x36d09208 cpufreq_generic_suspend EXPORT_SYMBOL vmlinux 0x36d69557 ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x36f13736 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x36dd3055 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x36de9e25 security_sock_graft EXPORT_SYMBOL vmlinux 0x36f24f8f simple_empty +EXPORT_SYMBOL vmlinux 0x36f2fb1a mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x36f5415b pipe_lock EXPORT_SYMBOL vmlinux 0x3702bfea d_exact_alias EXPORT_SYMBOL vmlinux 0x3725f09b edac_mc_find +EXPORT_SYMBOL vmlinux 0x37282606 reuseport_select_sock EXPORT_SYMBOL vmlinux 0x3729bf25 devm_release_resource EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn EXPORT_SYMBOL vmlinux 0x374b47eb ZSTD_findDecompressedSize EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x3758895b dev_set_threaded -EXPORT_SYMBOL vmlinux 0x37630f5a flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0x376b8e8f snd_component_add -EXPORT_SYMBOL vmlinux 0x377edf0d scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x377d07f7 phy_set_asym_pause EXPORT_SYMBOL vmlinux 0x378f844f pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x3793b7e5 i2c_smbus_write_block_data EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x37a7aa6d fqdir_exit EXPORT_SYMBOL vmlinux 0x37b022f9 sg_split EXPORT_SYMBOL vmlinux 0x37bba2e2 mount_single EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37cef14a sock_common_getsockopt EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37f03aca xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x37dc8832 dev_load EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r EXPORT_SYMBOL vmlinux 0x37f92870 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0x380ad827 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x38169f73 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x3803a5e4 try_to_release_page +EXPORT_SYMBOL vmlinux 0x38159127 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x3822d971 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x383d0192 udp_poll +EXPORT_SYMBOL vmlinux 0x381a8f0e ata_print_version EXPORT_SYMBOL vmlinux 0x3842b3a6 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x38453d75 nf_setsockopt EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x385ba10a jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0x385fcb6e dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x38588eb1 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x38637fe1 refresh_frequency_limits EXPORT_SYMBOL vmlinux 0x3865e2f7 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x386d1eec vfs_fsync_range EXPORT_SYMBOL vmlinux 0x386d9ce9 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x3881e7ee sock_register -EXPORT_SYMBOL vmlinux 0x38829820 mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0x38840a0c rproc_boot EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x38890231 __bforget EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 -EXPORT_SYMBOL vmlinux 0x38a3b5e7 xp_raw_get_data EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b368f0 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x38c8fb6c __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0x38d24915 padata_alloc +EXPORT_SYMBOL vmlinux 0x38dda26e generic_write_end EXPORT_SYMBOL vmlinux 0x38de402b call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x38e3518d qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0x38ef1e3f serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x38f43f1c alloc_buffer_head EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x38f5ae72 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x38f8b4ff of_get_mac_address +EXPORT_SYMBOL vmlinux 0x38fedf45 sk_reset_timer EXPORT_SYMBOL vmlinux 0x390e8ea0 md_error -EXPORT_SYMBOL vmlinux 0x3917345c skb_push -EXPORT_SYMBOL vmlinux 0x391b3e58 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x39241bc0 inet_getname +EXPORT_SYMBOL vmlinux 0x390ef19e mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x39243968 mptcp_subflow_reqsk_alloc EXPORT_SYMBOL vmlinux 0x392ca769 bdi_alloc +EXPORT_SYMBOL vmlinux 0x39356c41 ip_queue_xmit EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x3941dacc sock_release +EXPORT_SYMBOL vmlinux 0x394311f9 thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x3958a829 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x3965a0ac udp_lib_rehash EXPORT_SYMBOL vmlinux 0x396eef0d mipi_dsi_dcs_get_display_brightness_large EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit EXPORT_SYMBOL vmlinux 0x39745174 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x397ee01c cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0x3992bc63 __xa_set_mark EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x39a9cd0f netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x399aabfa pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x39a2256b vm_insert_pages EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and EXPORT_SYMBOL vmlinux 0x39bb870c __vcalloc EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL vmlinux 0x39c60210 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0x39c88fd5 flush_rcu_work +EXPORT_SYMBOL vmlinux 0x39d5d89f fd_install EXPORT_SYMBOL vmlinux 0x39dfe0b4 dmam_alloc_attrs EXPORT_SYMBOL vmlinux 0x39e86370 md_integrity_register -EXPORT_SYMBOL vmlinux 0x39ee5b0f netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x3a06a216 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x39ea52e0 jbd2_journal_init_dev EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a2786e4 icmp6_send EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a4523e6 ether_setup +EXPORT_SYMBOL vmlinux 0x3a33b908 pid_task +EXPORT_SYMBOL vmlinux 0x3a4c03f3 fwnode_mdio_find_device EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a58983b sock_init_data_uid EXPORT_SYMBOL vmlinux 0x3a5b5989 kthread_bind -EXPORT_SYMBOL vmlinux 0x3a5cec01 udp_seq_start EXPORT_SYMBOL vmlinux 0x3a5ea95d find_inode_rcu -EXPORT_SYMBOL vmlinux 0x3a64ebaa sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x3a76fcfd eth_mac_addr +EXPORT_SYMBOL vmlinux 0x3a873a82 filemap_fdatawrite EXPORT_SYMBOL vmlinux 0x3a8f31f1 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x3aa91043 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x3aa0f9d7 mmc_run_bkops EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ac37ed6 phy_trigger_machine EXPORT_SYMBOL vmlinux 0x3ad6fd8e krait_get_l2_indirect_reg EXPORT_SYMBOL vmlinux 0x3ada5d48 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x3adcb588 posix_test_lock EXPORT_SYMBOL vmlinux 0x3af1c346 of_node_get -EXPORT_SYMBOL vmlinux 0x3b15ca3b scsi_scan_host -EXPORT_SYMBOL vmlinux 0x3b207827 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x3af82642 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x3b025817 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x3b042923 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x3b271794 genphy_setup_forced EXPORT_SYMBOL vmlinux 0x3b299067 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x3b3c14be kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x3b3f86f1 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0x3b40879d check_zeroed_user +EXPORT_SYMBOL vmlinux 0x3b42bc01 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x3b502e51 inet_addr_type EXPORT_SYMBOL vmlinux 0x3b5ee24e pci_release_resource EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b8346dd dev_printk_emit -EXPORT_SYMBOL vmlinux 0x3b8a499f __of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x3b964912 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x3b8f7c42 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x3b95a5d6 vfs_readlink +EXPORT_SYMBOL vmlinux 0x3bb3c130 generic_listxattr EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3bc8a6fd mmc_get_card EXPORT_SYMBOL vmlinux 0x3be4c1ff ps2_sliced_command EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3bea3421 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x3be7710a inet_recvmsg EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c417b9d dev_change_proto_down_generic EXPORT_SYMBOL vmlinux 0x3c60315c ioremap_cache -EXPORT_SYMBOL vmlinux 0x3c7ae94c devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x3c8a64d5 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x3c8b0b4a of_find_net_device_by_node EXPORT_SYMBOL vmlinux 0x3c8f6ef0 __xa_insert EXPORT_SYMBOL vmlinux 0x3c94999c devm_ioremap -EXPORT_SYMBOL vmlinux 0x3ca4f005 ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0x3ca4f60e dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x3c952929 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x3cd47258 lookup_one EXPORT_SYMBOL vmlinux 0x3cd58b8d amba_release_regions -EXPORT_SYMBOL vmlinux 0x3cd70d2b phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x3cdbef1c dev_get_phys_port_id EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq EXPORT_SYMBOL vmlinux 0x3cea8f96 set_bdi_congested -EXPORT_SYMBOL vmlinux 0x3d159d2c vfs_llseek -EXPORT_SYMBOL vmlinux 0x3d17b127 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x3d195644 dev_uc_sync EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap EXPORT_SYMBOL vmlinux 0x3d404ceb __vmalloc_array -EXPORT_SYMBOL vmlinux 0x3d4cd588 tcf_action_exec EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d64df11 filemap_fault -EXPORT_SYMBOL vmlinux 0x3d711a81 inet_release EXPORT_SYMBOL vmlinux 0x3d7d9b3d snd_jack_set_parent -EXPORT_SYMBOL vmlinux 0x3d7ff0e4 devfreq_suspend_device EXPORT_SYMBOL vmlinux 0x3d808d9e snd_ctl_remove_id EXPORT_SYMBOL vmlinux 0x3d8b20c4 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x3d8e07d4 fqdir_init -EXPORT_SYMBOL vmlinux 0x3d99b1de generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x3d9bf2b8 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x3d8ebba9 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x3d9c09b0 of_device_alloc EXPORT_SYMBOL vmlinux 0x3d9d6576 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x3db5de4a ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dcd9a07 xsk_tx_release EXPORT_SYMBOL vmlinux 0x3dcf1ffa __wake_up EXPORT_SYMBOL vmlinux 0x3dd878a0 hdmi_avi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x3ddc6d7e vm_node_stat -EXPORT_SYMBOL vmlinux 0x3de0e08e napi_enable +EXPORT_SYMBOL vmlinux 0x3ddc800a xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x3de40660 tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head EXPORT_SYMBOL vmlinux 0x3e0c88c8 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0x3e0e7677 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x3e1f20ae logfc -EXPORT_SYMBOL vmlinux 0x3e2fdc7d vfs_mknod +EXPORT_SYMBOL vmlinux 0x3e0db757 __wait_on_buffer EXPORT_SYMBOL vmlinux 0x3e348fb3 proc_mkdir_mode EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule EXPORT_SYMBOL vmlinux 0x3e4c31ce simple_transaction_set +EXPORT_SYMBOL vmlinux 0x3e6fe47f mmc_can_trim EXPORT_SYMBOL vmlinux 0x3e82f3e9 get_random_bytes +EXPORT_SYMBOL vmlinux 0x3e896b07 scsi_print_result +EXPORT_SYMBOL vmlinux 0x3e8a98c6 pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0x3ea00424 pci_read_vpd EXPORT_SYMBOL vmlinux 0x3ea1b6e4 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0x3ea7fbd1 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x3eb2ada7 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x3ec63dfa netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0x3ec80fa0 _raw_spin_unlock_bh EXPORT_SYMBOL vmlinux 0x3ed104a5 xa_set_mark EXPORT_SYMBOL vmlinux 0x3ede0f25 rproc_vq_interrupt EXPORT_SYMBOL vmlinux 0x3ede6c7e dma_fence_chain_init EXPORT_SYMBOL vmlinux 0x3ee2a73d devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x3ef2867b phy_do_ioctl EXPORT_SYMBOL vmlinux 0x3efd45b7 unpin_user_page EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id EXPORT_SYMBOL vmlinux 0x3eff85d5 devm_extcon_register_notifier EXPORT_SYMBOL vmlinux 0x3f0bd620 iput EXPORT_SYMBOL vmlinux 0x3f0e23c7 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x3f12d278 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x3f29089a tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0x3f2cd59a i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x3f32da8e init_task EXPORT_SYMBOL vmlinux 0x3f33d724 of_chosen EXPORT_SYMBOL vmlinux 0x3f4151ef pci_enable_msix_range EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd EXPORT_SYMBOL vmlinux 0x3f4af46f gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f5f53a2 __zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x3f6191d3 current_time EXPORT_SYMBOL vmlinux 0x3f62d048 dma_fence_init +EXPORT_SYMBOL vmlinux 0x3f63bb1c __filemap_set_wb_err EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3fa283ec sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x3fabc69b jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x3f938e8d generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x3faf1b30 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x3fb113a6 sock_create_lite +EXPORT_SYMBOL vmlinux 0x3fb6d31c of_find_device_by_node EXPORT_SYMBOL vmlinux 0x3fb7024a pci_get_device EXPORT_SYMBOL vmlinux 0x3fb888db inode_owner_or_capable EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fbfec1f __hw_addr_sync_dev EXPORT_SYMBOL vmlinux 0x3fcaa089 dma_resv_init +EXPORT_SYMBOL vmlinux 0x3fd1d07c ip_sock_set_freebind EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe25e10 phy_attach EXPORT_SYMBOL vmlinux 0x3fea538c hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x3ff22e34 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x3ff50f80 xp_dma_map -EXPORT_SYMBOL vmlinux 0x40111ce4 follow_up -EXPORT_SYMBOL vmlinux 0x4033f5f7 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x3feb9f10 datagram_poll +EXPORT_SYMBOL vmlinux 0x3ff59415 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x4011097a xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x4015a6ed mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x4026b435 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x40270752 shmem_aops EXPORT_SYMBOL vmlinux 0x403a93e7 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x403a9950 udp_set_csum +EXPORT_SYMBOL vmlinux 0x4047226a tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma -EXPORT_SYMBOL vmlinux 0x4080403e tcp_make_synack +EXPORT_SYMBOL vmlinux 0x40822098 skb_store_bits +EXPORT_SYMBOL vmlinux 0x408c52e1 dump_emit EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x409a9ccb __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x40a379af ip_sock_set_freebind EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc EXPORT_SYMBOL vmlinux 0x40ad01e2 fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0x40ad96ca mmc_can_gpio_ro EXPORT_SYMBOL vmlinux 0x40b51c05 __sysfs_match_string EXPORT_SYMBOL vmlinux 0x40b8388b cdev_init EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo @@ -7231,196 +7142,224 @@ EXPORT_SYMBOL vmlinux 0x40d402ad do_wait_intr EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler EXPORT_SYMBOL vmlinux 0x40df985a blk_queue_max_segment_size EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 -EXPORT_SYMBOL vmlinux 0x40f5e103 skb_flow_dissect_meta EXPORT_SYMBOL vmlinux 0x4103139f tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x411e0cbc kmem_cache_create +EXPORT_SYMBOL vmlinux 0x4117c7f3 mntput EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x41391083 arp_send +EXPORT_SYMBOL vmlinux 0x4136a52e phy_find_first EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user EXPORT_SYMBOL vmlinux 0x414975dd __genradix_prealloc -EXPORT_SYMBOL vmlinux 0x414a0a42 get_fs_type EXPORT_SYMBOL vmlinux 0x414afa54 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x41581973 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x415e379b __vfs_setxattr EXPORT_SYMBOL vmlinux 0x41624650 seq_escape EXPORT_SYMBOL vmlinux 0x4164d84f iget_failed +EXPORT_SYMBOL vmlinux 0x417253fc xfrm_state_add EXPORT_SYMBOL vmlinux 0x417d3d40 get_mem_type EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x419e60eb __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x41b4bfc6 __dev_set_mtu EXPORT_SYMBOL vmlinux 0x41bb84fc dma_fence_remove_callback EXPORT_SYMBOL vmlinux 0x41bd4709 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x41c3fd2c udp_disconnect EXPORT_SYMBOL vmlinux 0x41c52cab do_map_probe -EXPORT_SYMBOL vmlinux 0x41ce2b74 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x41c8c005 sock_i_ino +EXPORT_SYMBOL vmlinux 0x41cccb70 lock_rename +EXPORT_SYMBOL vmlinux 0x41d8201d xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x41e78c44 blk_get_request +EXPORT_SYMBOL vmlinux 0x41fa17ca flow_rule_match_basic EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse -EXPORT_SYMBOL vmlinux 0x4211499b qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x420d1919 xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue EXPORT_SYMBOL vmlinux 0x421d4dcf krealloc -EXPORT_SYMBOL vmlinux 0x421fd90e neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x4224ab00 __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0x42278695 param_get_uint EXPORT_SYMBOL vmlinux 0x42303329 tty_port_hangup EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x423f98d7 wait_on_page_bit EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x42494d88 mmc_request_done EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x424e9567 reuseport_detach_sock EXPORT_SYMBOL vmlinux 0x424f6661 md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0x4253aa7e down_write -EXPORT_SYMBOL vmlinux 0x425f4680 netif_rx EXPORT_SYMBOL vmlinux 0x42604384 ucs2_strncmp EXPORT_SYMBOL vmlinux 0x4276b38b __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x428147ff wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0x42819893 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x42826de7 inode_get_bytes EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all EXPORT_SYMBOL vmlinux 0x429a971d pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x429ca9f9 mdiobus_is_registered_device EXPORT_SYMBOL vmlinux 0x429d13a5 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x42bf0b7a inode_set_bytes +EXPORT_SYMBOL vmlinux 0x42c65ca1 sock_set_mark +EXPORT_SYMBOL vmlinux 0x42e9ea08 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x42ecdbc0 tcp_shutdown EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x4302cd39 file_path +EXPORT_SYMBOL vmlinux 0x42fac26e dev_mc_add EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4310b810 vfs_setpos +EXPORT_SYMBOL vmlinux 0x430f1397 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x43182db2 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate EXPORT_SYMBOL vmlinux 0x4327f7e4 snd_info_register EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x433aa404 vmf_insert_mixed_mkwrite EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x43531e6b eth_header EXPORT_SYMBOL vmlinux 0x43560c33 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x435e7cbc netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0x43792307 loop_register_transfer EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x437db817 __breadahead -EXPORT_SYMBOL vmlinux 0x4385a1e7 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x4382715a tcf_register_action +EXPORT_SYMBOL vmlinux 0x438493d9 mnt_drop_write_file EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x4387f2ef devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x4398b045 __set_page_dirty_nobuffers EXPORT_SYMBOL vmlinux 0x439bc4b1 of_translate_address -EXPORT_SYMBOL vmlinux 0x43a1f64c netlink_unicast EXPORT_SYMBOL vmlinux 0x43a6a748 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x43bd981d jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x43be568b udplite_prot EXPORT_SYMBOL vmlinux 0x43cac77e cdrom_release +EXPORT_SYMBOL vmlinux 0x43cda444 register_shrinker EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc EXPORT_SYMBOL vmlinux 0x43df0f01 kobject_del EXPORT_SYMBOL vmlinux 0x43e57231 commit_creds EXPORT_SYMBOL vmlinux 0x43ecfc85 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x43edf3a1 reuseport_detach_sock EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember -EXPORT_SYMBOL vmlinux 0x43fe069b vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x440762a2 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x440f3e43 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x43fadf54 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x4416b27b security_path_mkdir +EXPORT_SYMBOL vmlinux 0x441b8a96 netdev_name_node_alt_destroy EXPORT_SYMBOL vmlinux 0x44232ee6 blk_mq_free_tag_set EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume -EXPORT_SYMBOL vmlinux 0x4429f959 vme_bus_num EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table EXPORT_SYMBOL vmlinux 0x444cc8ed tcp_md5_needed -EXPORT_SYMBOL vmlinux 0x445157db netif_rx_ni +EXPORT_SYMBOL vmlinux 0x4455e7c2 writeback_inodes_sb 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 0x446550ce vfs_fsync_range EXPORT_SYMBOL vmlinux 0x4466597d put_ipc_ns EXPORT_SYMBOL vmlinux 0x446d91ee register_cdrom EXPORT_SYMBOL vmlinux 0x447b86bb serio_bus -EXPORT_SYMBOL vmlinux 0x4480a072 put_fs_context -EXPORT_SYMBOL vmlinux 0x448a3ff0 sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x448bed77 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x44995fbb dump_align +EXPORT_SYMBOL vmlinux 0x44a5b983 __break_lease EXPORT_SYMBOL vmlinux 0x44a5d6bf snd_device_free EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add EXPORT_SYMBOL vmlinux 0x44b76cc9 of_device_is_available EXPORT_SYMBOL vmlinux 0x44c9dc6c percpu_counter_destroy EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic EXPORT_SYMBOL vmlinux 0x44e66ed2 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x44e96ab5 find_vma EXPORT_SYMBOL vmlinux 0x44e9a829 match_token EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x450bfbff udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x4505ced4 netlink_broadcast EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id -EXPORT_SYMBOL vmlinux 0x4526c5eb mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x450fd109 vfs_iter_write EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled EXPORT_SYMBOL vmlinux 0x4578e91b devm_ioremap_np EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457e4af3 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x458005fc __skb_get_hash +EXPORT_SYMBOL vmlinux 0x45878c32 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x458ea829 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x45a27784 scsi_device_resume EXPORT_SYMBOL vmlinux 0x45a385fd dcache_dir_close +EXPORT_SYMBOL vmlinux 0x45ae00b3 mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0x45bd19de nla_strscpy EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low EXPORT_SYMBOL vmlinux 0x45d1da91 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x45d43dff mark_buffer_dirty EXPORT_SYMBOL vmlinux 0x45d5e297 seq_release EXPORT_SYMBOL vmlinux 0x45d720be param_ops_long -EXPORT_SYMBOL vmlinux 0x45df0451 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0x45e64730 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x45e265f2 xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0x45e941ea param_set_invbool -EXPORT_SYMBOL vmlinux 0x45f8fe2d iw_handler_get_thrspy EXPORT_SYMBOL vmlinux 0x45fdee7f dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0x46026d4f vif_device_init -EXPORT_SYMBOL vmlinux 0x460629e6 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x460b57db vlan_ioctl_set EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents EXPORT_SYMBOL vmlinux 0x461e513a snd_ctl_unregister_ioctl -EXPORT_SYMBOL vmlinux 0x461e5aed tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0x461ffa3e inet_sendpage EXPORT_SYMBOL vmlinux 0x46244c03 ns_capable EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy EXPORT_SYMBOL vmlinux 0x46387340 address_space_init_once EXPORT_SYMBOL vmlinux 0x463981ae forget_all_cached_acls EXPORT_SYMBOL vmlinux 0x463d5c68 pci_get_class EXPORT_SYMBOL vmlinux 0x463ed0b4 clk_get -EXPORT_SYMBOL vmlinux 0x46468f13 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x4643ca3f __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x46526cee brioctl_set +EXPORT_SYMBOL vmlinux 0x46539cd8 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x46599f8f eth_get_headlen +EXPORT_SYMBOL vmlinux 0x465bd6d4 __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size EXPORT_SYMBOL vmlinux 0x4664f1cd pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x4666936b scsi_device_lookup EXPORT_SYMBOL vmlinux 0x4667286d param_get_short EXPORT_SYMBOL vmlinux 0x466941a2 phy_read_paged EXPORT_SYMBOL vmlinux 0x4686ab40 simple_rmdir +EXPORT_SYMBOL vmlinux 0x468716fc i2c_del_adapter EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46a4f388 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x46a54995 tcf_classify EXPORT_SYMBOL vmlinux 0x46a5dd49 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x46a7844c inet_sendmsg EXPORT_SYMBOL vmlinux 0x46ab952f snd_pcm_hw_constraint_list +EXPORT_SYMBOL vmlinux 0x46c23045 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x46c8c1f5 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x46d04453 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x46d10c30 mmc_card_alternative_gpt_sector EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 -EXPORT_SYMBOL vmlinux 0x46db8b09 stream_open -EXPORT_SYMBOL vmlinux 0x46dfdbd4 mr_table_dump -EXPORT_SYMBOL vmlinux 0x46f7cc32 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x47034e55 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x46e49378 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x46f6e5b4 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x46ffe58f sk_free EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset -EXPORT_SYMBOL vmlinux 0x470b7b7f flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x4728f0d3 gro_cells_receive -EXPORT_SYMBOL vmlinux 0x4729f897 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x4752bdb4 generic_copy_file_range EXPORT_SYMBOL vmlinux 0x4756260d ida_destroy +EXPORT_SYMBOL vmlinux 0x475f48ff xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x4760d8e1 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x4763623e arp_send EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x4777ec15 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x4778aa3d xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0x477c9739 elm_decode_bch_error_page EXPORT_SYMBOL vmlinux 0x478d9b84 ZSTD_isFrame EXPORT_SYMBOL vmlinux 0x4790d462 mdio_device_reset EXPORT_SYMBOL vmlinux 0x47910744 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x479adaeb jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0x479fc02d tty_devnum -EXPORT_SYMBOL vmlinux 0x47a7b23d pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x47a06aa5 unlock_buffer +EXPORT_SYMBOL vmlinux 0x47a19db4 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x47afec01 register_console +EXPORT_SYMBOL vmlinux 0x47bcefab security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x47bda54f inet_bind EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47df13db inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x47e22874 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x47e291f6 seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range EXPORT_SYMBOL vmlinux 0x47f757de elf_platform EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x481c1e65 security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0x482139e1 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x482142ec flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x483ebaaa netdev_features_change +EXPORT_SYMBOL vmlinux 0x483518d0 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x4842b52f skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0x48486a7e pci_enable_device_mem EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config -EXPORT_SYMBOL vmlinux 0x48495322 dev_loopback_xmit EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x4856f67f vme_dma_request EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days EXPORT_SYMBOL vmlinux 0x48603d6f param_set_ulong EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x4874df43 filemap_flush EXPORT_SYMBOL vmlinux 0x487d348a __fs_parse +EXPORT_SYMBOL vmlinux 0x4881657e __starget_for_each_device EXPORT_SYMBOL vmlinux 0x48931bd3 seq_open_private EXPORT_SYMBOL vmlinux 0x489a379c configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x489bde97 flow_block_cb_decref EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type -EXPORT_SYMBOL vmlinux 0x48a907ef jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48c0207f phy_sfp_probe -EXPORT_SYMBOL vmlinux 0x48e54b3e skb_append -EXPORT_SYMBOL vmlinux 0x48eb73c8 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x48f297f7 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x48f9599d twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x48d41dac netdev_notice EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert EXPORT_SYMBOL vmlinux 0x490d74df pci_alloc_dev EXPORT_SYMBOL vmlinux 0x4921b9fd rproc_add_carveout EXPORT_SYMBOL vmlinux 0x4932bc86 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x4937f675 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x493bf3bc page_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x49590480 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0x495dda22 framebuffer_release -EXPORT_SYMBOL vmlinux 0x4969f278 genphy_read_abilities EXPORT_SYMBOL vmlinux 0x49871971 _raw_write_unlock_bh EXPORT_SYMBOL vmlinux 0x49970de8 finish_wait EXPORT_SYMBOL vmlinux 0x49988d74 touchscreen_report_pos @@ -7428,699 +7367,673 @@ EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum EXPORT_SYMBOL vmlinux 0x49b9ce72 of_lpddr3_get_min_tck EXPORT_SYMBOL vmlinux 0x49ca4101 d_instantiate_anon EXPORT_SYMBOL vmlinux 0x49d61380 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x49e07e6a flow_rule_match_ct EXPORT_SYMBOL vmlinux 0x49e4d78f dquot_quota_off +EXPORT_SYMBOL vmlinux 0x49e8dba6 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x49e900ee ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit EXPORT_SYMBOL vmlinux 0x49f26466 kstrndup +EXPORT_SYMBOL vmlinux 0x49f2a987 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0x49ffcb11 fb_class EXPORT_SYMBOL vmlinux 0x4a00d77f jbd2_submit_inode_data EXPORT_SYMBOL vmlinux 0x4a09b82d pin_user_pages EXPORT_SYMBOL vmlinux 0x4a185c38 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x4a1ba823 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x4a1d3975 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x4a2d3fdd phy_driver_register EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL vmlinux 0x4a4df09e sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x4a516944 nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0x4a5bf5e4 pcie_capability_read_word EXPORT_SYMBOL vmlinux 0x4a6047af to_ndd EXPORT_SYMBOL vmlinux 0x4a7174b8 snd_pcm_hw_constraint_mask64 EXPORT_SYMBOL vmlinux 0x4a72ce3e blk_integrity_register -EXPORT_SYMBOL vmlinux 0x4a75fc41 trace_event_printf +EXPORT_SYMBOL vmlinux 0x4a760b5c xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x4a7d1b17 d_delete EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free EXPORT_SYMBOL vmlinux 0x4a9361bb vm_mmap EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4aa08501 fget +EXPORT_SYMBOL vmlinux 0x4a98dfb9 inet6_bind +EXPORT_SYMBOL vmlinux 0x4a9b56ef blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0x4aa9e9ad dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x4acb3157 tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x4ad77af2 tcp_disconnect EXPORT_SYMBOL vmlinux 0x4adbaba7 __nla_put +EXPORT_SYMBOL vmlinux 0x4add406f dev_change_carrier EXPORT_SYMBOL vmlinux 0x4ade86b5 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0x4adfe201 fget_raw +EXPORT_SYMBOL vmlinux 0x4ae03a27 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x4ae24789 nobh_write_end EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 EXPORT_SYMBOL vmlinux 0x4af9cfda bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x4b3b2593 ip6_xmit +EXPORT_SYMBOL vmlinux 0x4b0157ac __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x4b2ba7eb security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0x4b405750 dquot_destroy EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b72cf27 vme_dma_request +EXPORT_SYMBOL vmlinux 0x4b68948d security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x4b6da041 sched_autogroup_detach EXPORT_SYMBOL vmlinux 0x4b83c167 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x4b88d5bf account_page_redirty -EXPORT_SYMBOL vmlinux 0x4b8d169b phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0x4bae9046 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x4b8518d5 netif_napi_add EXPORT_SYMBOL vmlinux 0x4bd1c1af cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x4bd62820 phy_driver_unregister EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4bed68ae xfrm_register_type EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bfcc9a9 tcp_stream_memory_free EXPORT_SYMBOL vmlinux 0x4bfdcefa __memset32 +EXPORT_SYMBOL vmlinux 0x4c0ccb81 vme_register_bridge EXPORT_SYMBOL vmlinux 0x4c1cca3b cpumask_next_wrap EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c37ccde fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4c3cc42f xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x4c3ed3ba would_dump EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast EXPORT_SYMBOL vmlinux 0x4c4eb9a4 d_invalidate -EXPORT_SYMBOL vmlinux 0x4c5a87d6 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x4ca5c098 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x4c53d3fc call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x4c8bf343 cont_write_begin +EXPORT_SYMBOL vmlinux 0x4ca9fbd4 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x4cb4b597 ppp_register_channel EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cbb0e4d __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0x4cd3e03b config_item_set_name +EXPORT_SYMBOL vmlinux 0x4cdeb84e iterate_dir EXPORT_SYMBOL vmlinux 0x4ce5a89e dcache_readdir EXPORT_SYMBOL vmlinux 0x4ceb8422 of_find_compatible_node EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page EXPORT_SYMBOL vmlinux 0x4d1a3028 generic_iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0x4d36cee5 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x4d1adf10 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x4d2639d4 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x4d394dea read_cache_page EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d40e24b devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated EXPORT_SYMBOL vmlinux 0x4d514485 xa_store -EXPORT_SYMBOL vmlinux 0x4d5a3749 skb_trim EXPORT_SYMBOL vmlinux 0x4d5bf440 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x4d5cbc24 tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x4d61a09f inet_stream_connect -EXPORT_SYMBOL vmlinux 0x4d65a756 flow_rule_match_ports EXPORT_SYMBOL vmlinux 0x4d6ae35f rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x4d6e0967 vfs_create +EXPORT_SYMBOL vmlinux 0x4d71914d dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x4d743a5c ppp_dev_name +EXPORT_SYMBOL vmlinux 0x4d858b3d skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0x4d97e1e0 param_set_copystring -EXPORT_SYMBOL vmlinux 0x4d992a8e fifo_create_dflt EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL vmlinux 0x4dae4ecd tcf_em_register +EXPORT_SYMBOL vmlinux 0x4dc1c332 in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x4dce47d8 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x4dec34cc vfs_create_mount EXPORT_SYMBOL vmlinux 0x4dec6038 memscan EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4e03ebda sock_no_sendpage EXPORT_SYMBOL vmlinux 0x4e051ad8 watchdog_register_governor EXPORT_SYMBOL vmlinux 0x4e05bdec mempool_init_node +EXPORT_SYMBOL vmlinux 0x4e0c2eb4 iw_handler_set_thrspy EXPORT_SYMBOL vmlinux 0x4e14a66f pps_unregister_source +EXPORT_SYMBOL vmlinux 0x4e2a532f inet_add_offload +EXPORT_SYMBOL vmlinux 0x4e2cb2ad find_get_pages_contig EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl EXPORT_SYMBOL vmlinux 0x4e302127 map_destroy EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e380172 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x4e3b270b security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x4e5dd747 of_phy_connect +EXPORT_SYMBOL vmlinux 0x4e38838a dst_init +EXPORT_SYMBOL vmlinux 0x4e4e310c xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x4e4f7996 mmc_put_card EXPORT_SYMBOL vmlinux 0x4e62fd8a bio_chain EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e749e95 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x4e8952db skb_checksum_setup EXPORT_SYMBOL vmlinux 0x4e90ef4a pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x4e9674e8 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x4e99acdd tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0x4e99c7fb pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x4ea00027 __vfs_getxattr EXPORT_SYMBOL vmlinux 0x4ea563c6 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x4eab65e4 mmc_gpiod_request_cd EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4eb0aec7 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x4eb9e7fe dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x4eb38fa4 phy_drivers_register EXPORT_SYMBOL vmlinux 0x4ebbfbbf blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x4eceb5e8 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x4ec36f6f mmc_retune_unpause EXPORT_SYMBOL vmlinux 0x4ee0e846 ZSTD_initDCtx EXPORT_SYMBOL vmlinux 0x4ee98ebd tcp_have_smc -EXPORT_SYMBOL vmlinux 0x4eef05ea ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x4f0c7fb3 seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0x4f188989 blk_mq_delay_kick_requeue_list EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f2a111f ethtool_notify EXPORT_SYMBOL vmlinux 0x4f2b2b5b config_item_get +EXPORT_SYMBOL vmlinux 0x4f2c37b9 do_clone_file_range EXPORT_SYMBOL vmlinux 0x4f3fca2c __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0x4f4b0455 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x4f3fffbd __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x4f479887 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x4f5a4475 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x4f5ebf4e inet_unregister_protosw EXPORT_SYMBOL vmlinux 0x4f6b43ae snd_timer_notify -EXPORT_SYMBOL vmlinux 0x4f6ee96b lease_get_mtime EXPORT_SYMBOL vmlinux 0x4f7b7b6a snd_timer_continue EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian EXPORT_SYMBOL vmlinux 0x4f8252c1 snd_pcm_lib_preallocate_free_for_all EXPORT_SYMBOL vmlinux 0x4f870946 get_user_pages_remote EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free -EXPORT_SYMBOL vmlinux 0x4f8d9e39 udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0x4f903d28 kill_block_super -EXPORT_SYMBOL vmlinux 0x4f91e1fb __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x4f9ec644 tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0x4fa0d2fc genphy_read_status -EXPORT_SYMBOL vmlinux 0x4fa6aa7c generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x4f981d08 flow_rule_match_ip EXPORT_SYMBOL vmlinux 0x4fa6d124 proc_set_size -EXPORT_SYMBOL vmlinux 0x4fb7cb97 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x4fb22882 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x4fc87f65 rt6_lookup +EXPORT_SYMBOL vmlinux 0x4fdc2561 free_buffer_head +EXPORT_SYMBOL vmlinux 0x4fe48170 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x4fee1819 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x4feebd42 mdiobus_read_nested EXPORT_SYMBOL vmlinux 0x4fef3ef4 completion_done EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree -EXPORT_SYMBOL vmlinux 0x4ffdac50 ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x5002c7fa iterate_fd -EXPORT_SYMBOL vmlinux 0x5005d056 sk_wait_data -EXPORT_SYMBOL vmlinux 0x5007214d vme_bus_error_handler EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x500d42f1 __netif_napi_del EXPORT_SYMBOL vmlinux 0x5018d8cc nand_read_page_raw +EXPORT_SYMBOL vmlinux 0x5024b73e generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0x502b6647 mempool_create_node +EXPORT_SYMBOL vmlinux 0x50367dda tso_count_descs EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges EXPORT_SYMBOL vmlinux 0x503bff76 pcim_iomap +EXPORT_SYMBOL vmlinux 0x503cb3eb clear_page_dirty_for_io EXPORT_SYMBOL vmlinux 0x504dfc07 con_is_visible +EXPORT_SYMBOL vmlinux 0x504ea8af rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x505cbbe6 vfs_mknod EXPORT_SYMBOL vmlinux 0x505cc902 dm_table_event EXPORT_SYMBOL vmlinux 0x505def58 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x50608868 genphy_restart_aneg EXPORT_SYMBOL vmlinux 0x50624917 sha1_init EXPORT_SYMBOL vmlinux 0x5063da42 param_ops_hexint +EXPORT_SYMBOL vmlinux 0x50650ee3 phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x5077ed88 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x50839a6a sock_wmalloc EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x50939046 _dev_err EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50c86cec inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x50c1caaf nonseekable_open EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf EXPORT_SYMBOL vmlinux 0x50d684e8 param_get_hexint EXPORT_SYMBOL vmlinux 0x50d71bcf gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x50d9ad70 _dev_err EXPORT_SYMBOL vmlinux 0x50de597b input_setup_polling EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc EXPORT_SYMBOL vmlinux 0x50fd6103 dma_fence_signal +EXPORT_SYMBOL vmlinux 0x5126da55 kernel_getsockname 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 0x516db7d3 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x518525c1 devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0x518be347 refresh_frequency_limits EXPORT_SYMBOL vmlinux 0x5192e089 d_make_root EXPORT_SYMBOL vmlinux 0x51a23ce8 dm_register_target EXPORT_SYMBOL vmlinux 0x51a910c0 arm_copy_to_user -EXPORT_SYMBOL vmlinux 0x51b1d731 dump_emit -EXPORT_SYMBOL vmlinux 0x51b26831 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x51ac7379 scsi_target_quiesce EXPORT_SYMBOL vmlinux 0x51ca67e7 fs_param_is_enum -EXPORT_SYMBOL vmlinux 0x51cd9bc6 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x51cc72d1 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x51d4bd17 sock_alloc_send_skb EXPORT_SYMBOL vmlinux 0x51e59686 inode_init_once EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid -EXPORT_SYMBOL vmlinux 0x51f488d2 copy_string_kernel -EXPORT_SYMBOL vmlinux 0x51f52dc4 ppp_dev_name EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x5211dcac ip6_frag_next -EXPORT_SYMBOL vmlinux 0x5212313f sync_inode_metadata EXPORT_SYMBOL vmlinux 0x522846f5 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x522af2d4 crypto_sha256_finup EXPORT_SYMBOL vmlinux 0x522fb0e4 __hsiphash_unaligned EXPORT_SYMBOL vmlinux 0x523a5ff1 proc_create_single_data EXPORT_SYMBOL vmlinux 0x523e57aa ZSTD_getDictID_fromDict EXPORT_SYMBOL vmlinux 0x52487e8e I_BDEV -EXPORT_SYMBOL vmlinux 0x524a645b udp6_csum_init EXPORT_SYMBOL vmlinux 0x52505473 nd_dev_to_uuid EXPORT_SYMBOL vmlinux 0x52735948 of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0x52748639 vme_slot_num -EXPORT_SYMBOL vmlinux 0x527c7d4d neigh_update EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52923024 pfifo_fast_ops EXPORT_SYMBOL vmlinux 0x52bf7d4d max8998_update_reg EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value EXPORT_SYMBOL vmlinux 0x52e89232 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x52f6ce00 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x52ea7053 mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0x530006ef dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x53000e39 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x53057afb generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x53087ce6 jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x530f659a __mdiobus_register -EXPORT_SYMBOL vmlinux 0x53269578 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x5311df1d phy_get_eee_err EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf EXPORT_SYMBOL vmlinux 0x533c5074 from_kuid -EXPORT_SYMBOL vmlinux 0x53410c1f jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x53461e2c mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x5348d224 phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0x536060af radix_tree_lookup_slot EXPORT_SYMBOL vmlinux 0x5366321b snd_ctl_boolean_mono_info -EXPORT_SYMBOL vmlinux 0x53726a09 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x537485f6 generic_fillattr -EXPORT_SYMBOL vmlinux 0x5379d27f vme_irq_generate +EXPORT_SYMBOL vmlinux 0x53754321 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x537d1101 sock_set_priority EXPORT_SYMBOL vmlinux 0x5388f6fe amba_device_unregister EXPORT_SYMBOL vmlinux 0x53aeb013 hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x53b36ea0 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x53b85414 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x53bc0817 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x53d0cc18 napi_enable EXPORT_SYMBOL vmlinux 0x53ea8d88 scsi_get_device_flags_keyed EXPORT_SYMBOL vmlinux 0x53ef2670 super_setup_bdi_name EXPORT_SYMBOL vmlinux 0x53fccb75 fs_param_is_bool EXPORT_SYMBOL vmlinux 0x54064fdb of_node_name_eq EXPORT_SYMBOL vmlinux 0x542050c8 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x5423eba5 set_binfmt +EXPORT_SYMBOL vmlinux 0x543e4ead security_sb_mnt_opts_compat EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x544757bb scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x545abceb block_is_partially_uptodate EXPORT_SYMBOL vmlinux 0x546245d8 blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0x5494bdcf netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x5477f5e9 inet_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x549b9221 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x54ab027a security_sk_classify_flow EXPORT_SYMBOL vmlinux 0x54ab9d10 padata_do_serial EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54cc3b0f file_write_and_wait_range EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 EXPORT_SYMBOL vmlinux 0x54d2c2fa blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x54d6ab3a twl6040_set_bits EXPORT_SYMBOL vmlinux 0x54db10ee tty_port_carrier_raised EXPORT_SYMBOL vmlinux 0x54e49426 cdrom_number_of_slots EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp EXPORT_SYMBOL vmlinux 0x54ec34c0 nand_write_oob_std EXPORT_SYMBOL vmlinux 0x54f15363 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x54f3dca8 ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0x54fbcc2a validate_slab_cache -EXPORT_SYMBOL vmlinux 0x5500c5dd blk_queue_flag_set EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x55123039 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x5513caa2 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x551b2966 wait_on_page_bit_killable EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551f87af scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x55321edc scsi_change_queue_depth EXPORT_SYMBOL vmlinux 0x55384369 dma_async_device_unregister EXPORT_SYMBOL vmlinux 0x55396d36 d_instantiate EXPORT_SYMBOL vmlinux 0x5545a639 ns_capable_noaudit EXPORT_SYMBOL vmlinux 0x55478f29 snd_ctl_new1 EXPORT_SYMBOL vmlinux 0x554ac97b netdev_stats_to_stats64 EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x5556d9df dev_close EXPORT_SYMBOL vmlinux 0x5562e403 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x55648b59 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x556a4126 flow_block_cb_free EXPORT_SYMBOL vmlinux 0x556aea7f d_find_alias EXPORT_SYMBOL vmlinux 0x556c3ab2 register_sound_mixer EXPORT_SYMBOL vmlinux 0x556f95b2 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x5575e67a sock_i_ino EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x55947d9e skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0x55a51180 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x55a9b58f crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x55bd094f mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0x55bd83a6 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x55cc6e14 napi_gro_frags EXPORT_SYMBOL vmlinux 0x55cedf82 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x55cf7b11 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x55d5c0b0 nf_ip_checksum EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 EXPORT_SYMBOL vmlinux 0x55eb869a _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x55f8d32f vme_bus_num EXPORT_SYMBOL vmlinux 0x560504d5 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x561421bf __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x5615780f in6_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x562f6316 tty_insert_flip_string_flags EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x563c5b92 vfs_get_link +EXPORT_SYMBOL vmlinux 0x564c1209 xfrm_state_delete_tunnel EXPORT_SYMBOL vmlinux 0x5652d167 seq_puts -EXPORT_SYMBOL vmlinux 0x565942ea key_type_keyring +EXPORT_SYMBOL vmlinux 0x565b21aa submit_bio_noacct EXPORT_SYMBOL vmlinux 0x566f3f17 tty_unlock EXPORT_SYMBOL vmlinux 0x56774cb1 serial8250_set_isa_configurator EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x5687be56 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x5682c41b of_mdio_find_device EXPORT_SYMBOL vmlinux 0x5690ccb7 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x56aea682 tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x56b40bae ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x56c4eb9c gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x56b91638 tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0x56c656c9 mpage_readpage EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56d606ba skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x56d3f832 tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0x56de8152 param_get_charp -EXPORT_SYMBOL vmlinux 0x56f5f04a fifo_set_limit -EXPORT_SYMBOL vmlinux 0x56fd6741 phy_init_eee -EXPORT_SYMBOL vmlinux 0x5726b4be __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x56ec1dc6 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x57070e64 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x573697dc netdev_notify_peers EXPORT_SYMBOL vmlinux 0x573bf55d pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x574271a6 devfreq_monitor_start EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57640d4b __set_page_dirty_buffers EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 EXPORT_SYMBOL vmlinux 0x5776aa26 kernel_param_unlock EXPORT_SYMBOL vmlinux 0x57811fb8 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x578820d4 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x578de0f3 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x5791bbd3 tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0x57c5902d amba_device_register EXPORT_SYMBOL vmlinux 0x57ceedb1 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x57d0d236 __f_setown +EXPORT_SYMBOL vmlinux 0x57d7348e icmp_ndo_send EXPORT_SYMBOL vmlinux 0x57e5170c qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x57e7c345 tcf_exts_dump EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info EXPORT_SYMBOL vmlinux 0x57ff23f0 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0x5802c100 ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0x580c21a2 __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0x58152339 netdev_err EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581cde4e up EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582480b4 __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x58308aaa inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack EXPORT_SYMBOL vmlinux 0x586135c0 simple_transaction_read -EXPORT_SYMBOL vmlinux 0x586e80bb seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x58730f54 __page_symlink EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc -EXPORT_SYMBOL vmlinux 0x58841f3c audit_log_start +EXPORT_SYMBOL vmlinux 0x5893847d dcb_ieee_delapp EXPORT_SYMBOL vmlinux 0x58a486cb load_nls_default EXPORT_SYMBOL vmlinux 0x58a49493 __dquot_transfer EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58af038c tcf_qevent_destroy EXPORT_SYMBOL vmlinux 0x58b0451e remap_vmalloc_range EXPORT_SYMBOL vmlinux 0x58b246c3 vga_set_legacy_decoding EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58c55ab5 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x58cf30ae __scsi_print_sense EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f31af2 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x58f360e5 dev_change_proto_down_reason EXPORT_SYMBOL vmlinux 0x58fad869 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x59088c65 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x590d77ec eth_header_cache +EXPORT_SYMBOL vmlinux 0x5903121b __module_get EXPORT_SYMBOL vmlinux 0x59115537 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x5911b49c __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x591ae1a2 inet_select_addr EXPORT_SYMBOL vmlinux 0x592b5bd9 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x593e3e10 filemap_fdatawrite_wbc EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 -EXPORT_SYMBOL vmlinux 0x59681e77 inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0x596a7d22 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x5980fe4f phy_support_asym_pause EXPORT_SYMBOL vmlinux 0x5985aa2f simple_transaction_release EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg -EXPORT_SYMBOL vmlinux 0x599fb4de register_shrinker -EXPORT_SYMBOL vmlinux 0x59afc10d ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x59b4b02b generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0x59b7cab6 mempool_resize +EXPORT_SYMBOL vmlinux 0x59b8fef3 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x59bc0276 inet_frags_fini EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area -EXPORT_SYMBOL vmlinux 0x59d7e55b block_write_begin EXPORT_SYMBOL vmlinux 0x59d8f412 pci_add_new_bus EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 -EXPORT_SYMBOL vmlinux 0x5a011240 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x5a08ca59 sk_free EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 EXPORT_SYMBOL vmlinux 0x5a14de15 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x5a17fc63 phy_get_pause -EXPORT_SYMBOL vmlinux 0x5a27eacb dcb_setapp +EXPORT_SYMBOL vmlinux 0x5a284548 __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x5a3f8228 copy_page_from_iter EXPORT_SYMBOL vmlinux 0x5a4b0fad get_user_pages_locked EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a4ee52f fib_notifier_ops_register EXPORT_SYMBOL vmlinux 0x5a562e22 bdev_dax_pgoff +EXPORT_SYMBOL vmlinux 0x5a5fed5a fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0x5a66d447 bio_init -EXPORT_SYMBOL vmlinux 0x5a75d6b4 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x5a7e4c9c sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x5a72f87b i2c_smbus_write_byte_data EXPORT_SYMBOL vmlinux 0x5a8b75f8 notify_change -EXPORT_SYMBOL vmlinux 0x5a97bfd3 phy_attach EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5a9baa4c tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x5aa011f7 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x5aa8931a alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x5aae491d qdisc_put EXPORT_SYMBOL vmlinux 0x5aaf2bad blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x5ac5d41c inet_protos +EXPORT_SYMBOL vmlinux 0x5ac82cba phy_attached_print EXPORT_SYMBOL vmlinux 0x5ad1fbb6 input_set_timestamp -EXPORT_SYMBOL vmlinux 0x5ad8d666 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x5adbe911 console_stop +EXPORT_SYMBOL vmlinux 0x5ad3a0e3 phy_ethtool_get_sset_count EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5ae18915 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x5aeca93f may_umount +EXPORT_SYMBOL vmlinux 0x5ae8353d generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x5b05bb01 phy_free_interrupt EXPORT_SYMBOL vmlinux 0x5b062284 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0x5b1b163b ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x5b07fcb3 msm_pinctrl_probe EXPORT_SYMBOL vmlinux 0x5b2475f7 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x5b27aa83 rtnl_configure_link EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup -EXPORT_SYMBOL vmlinux 0x5b625673 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x5b8a1d6f no_llseek EXPORT_SYMBOL vmlinux 0x5b9fae37 kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0x5bb137fb vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0x5bb58476 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x5bae4cf0 __sock_cmsg_send EXPORT_SYMBOL vmlinux 0x5bbe49f4 __init_waitqueue_head EXPORT_SYMBOL vmlinux 0x5bd14f46 inode_set_flags EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bd8ae5c neigh_changeaddr EXPORT_SYMBOL vmlinux 0x5bda4214 _raw_read_lock EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bfc4e8d kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x5bff1ed9 kernel_bind +EXPORT_SYMBOL vmlinux 0x5c1bc7aa page_readlink EXPORT_SYMBOL vmlinux 0x5c1bdc5c get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0x5c24252f rfkill_alloc -EXPORT_SYMBOL vmlinux 0x5c298c5a ip_defrag -EXPORT_SYMBOL vmlinux 0x5c31dbb4 path_is_under -EXPORT_SYMBOL vmlinux 0x5c3719c9 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x5c30d71e phy_sfp_probe EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c3d6b34 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x5c65f801 genphy_handle_interrupt_no_ack EXPORT_SYMBOL vmlinux 0x5c6fc796 of_get_next_parent EXPORT_SYMBOL vmlinux 0x5c716976 hdmi_audio_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x5c7f1284 int_sqrt64 EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id EXPORT_SYMBOL vmlinux 0x5c929d84 __of_get_address -EXPORT_SYMBOL vmlinux 0x5c9470d8 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x5c9390cd ipv4_specific EXPORT_SYMBOL vmlinux 0x5ca125c1 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x5ca7ac31 __skb_free_datagram_locked EXPORT_SYMBOL vmlinux 0x5ca85217 pci_write_config_byte EXPORT_SYMBOL vmlinux 0x5cad081f uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x5cb3ab74 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x5cb67042 jbd2_journal_invalidatepage EXPORT_SYMBOL vmlinux 0x5cbd8e69 __crc32c_le -EXPORT_SYMBOL vmlinux 0x5cd25903 dev_addr_del +EXPORT_SYMBOL vmlinux 0x5ccaebe1 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x5ccbcc1a xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x5cced0ae audit_log EXPORT_SYMBOL vmlinux 0x5cd58ad8 md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x5ce2bbb3 lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor EXPORT_SYMBOL vmlinux 0x5d032dd3 seq_read_iter +EXPORT_SYMBOL vmlinux 0x5d134961 genl_register_family EXPORT_SYMBOL vmlinux 0x5d353d2c nand_ecc_sw_hamming_correct EXPORT_SYMBOL vmlinux 0x5d37d658 dim_park_tired +EXPORT_SYMBOL vmlinux 0x5d3ebd56 mmc_free_host EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d5cedd4 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0x5d6884be __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x5d8505be __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x5d8b4d6b sk_net_capable -EXPORT_SYMBOL vmlinux 0x5d8ec96f of_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x5d9267cf d_path -EXPORT_SYMBOL vmlinux 0x5d9c4422 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x5db02eaa file_fdatawait_range -EXPORT_SYMBOL vmlinux 0x5db24b74 inet6_bind +EXPORT_SYMBOL vmlinux 0x5d657ac7 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x5d695f84 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x5d7d566d set_bh_page EXPORT_SYMBOL vmlinux 0x5db762da unregister_framebuffer EXPORT_SYMBOL vmlinux 0x5dccfcca blk_queue_max_write_same_sectors EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache EXPORT_SYMBOL vmlinux 0x5ddac875 abort_creds +EXPORT_SYMBOL vmlinux 0x5de0cc60 locks_init_lock EXPORT_SYMBOL vmlinux 0x5de5cca2 utf8_normalize EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e1d60b0 filemap_fdatawrite EXPORT_SYMBOL vmlinux 0x5e29f09d blk_queue_max_discard_sectors EXPORT_SYMBOL vmlinux 0x5e35b255 pci_irq_get_affinity EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e498c4a jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x5e679be6 tcf_idr_release -EXPORT_SYMBOL vmlinux 0x5e72a266 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x5e6a7810 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x5e716a0e qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x5e77fe87 security_inet_conn_established EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL vmlinux 0x5e833ffb set_user_nice EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e977b7b blk_rq_init EXPORT_SYMBOL vmlinux 0x5e9c9fa6 devm_extcon_register_notifier_all EXPORT_SYMBOL vmlinux 0x5e9f6b27 d_set_d_op -EXPORT_SYMBOL vmlinux 0x5ea6e58a __traceiter_spi_transfer_start EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec31369 crypto_sha1_finup EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5ecdf53b wake_up_process +EXPORT_SYMBOL vmlinux 0x5ecab5f0 genphy_loopback EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch EXPORT_SYMBOL vmlinux 0x5ed05bf6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5ed84b1e xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5ee2439f page_symlink EXPORT_SYMBOL vmlinux 0x5ef69bdb get_vm_area -EXPORT_SYMBOL vmlinux 0x5ef985de vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f0e15fb sock_pfree -EXPORT_SYMBOL vmlinux 0x5f153b9c blk_sync_queue -EXPORT_SYMBOL vmlinux 0x5f1dd84f mfd_add_devices -EXPORT_SYMBOL vmlinux 0x5f3b6371 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x5f4c92ba scsi_get_host_dev EXPORT_SYMBOL vmlinux 0x5f5247be register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x5f526da5 kern_unmount +EXPORT_SYMBOL vmlinux 0x5f52d70b flow_rule_match_ipv4_addrs EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f55c175 dst_alloc -EXPORT_SYMBOL vmlinux 0x5f56575b dev_uc_flush -EXPORT_SYMBOL vmlinux 0x5f692cde unregister_shrinker +EXPORT_SYMBOL vmlinux 0x5f650146 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x5f6aace9 sock_create_kern EXPORT_SYMBOL vmlinux 0x5f6b22a6 snd_pcm_hw_constraint_pow2 EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa EXPORT_SYMBOL vmlinux 0x5f6f352a input_mt_sync_frame EXPORT_SYMBOL vmlinux 0x5f70b34a d_obtain_root EXPORT_SYMBOL vmlinux 0x5f73533d iov_iter_zero EXPORT_SYMBOL vmlinux 0x5f754e5a memset -EXPORT_SYMBOL vmlinux 0x5f7c1916 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x5f948ce1 __skb_checksum +EXPORT_SYMBOL vmlinux 0x5f803e01 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x5f8b5524 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x5f926d31 ip6_route_me_harder EXPORT_SYMBOL vmlinux 0x5fb01358 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fcf02cd inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x5fe6d619 fc_mount EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io -EXPORT_SYMBOL vmlinux 0x5ff2908b seg6_push_hmac EXPORT_SYMBOL vmlinux 0x5ffdecaa generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x6005185b send_sig_info EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x6016ac09 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x601045a3 skb_eth_pop EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60205055 netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio EXPORT_SYMBOL vmlinux 0x603286b8 utf8_casefold EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x604f1f36 f_setown +EXPORT_SYMBOL vmlinux 0x604d231a phy_stop +EXPORT_SYMBOL vmlinux 0x604f6f6c xfrm_trans_queue EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x60608b0d generic_file_mmap -EXPORT_SYMBOL vmlinux 0x606485a5 tcp_poll +EXPORT_SYMBOL vmlinux 0x608aa82f xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x6096cf4e netif_rx_any_context +EXPORT_SYMBOL vmlinux 0x6092fc21 phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0x6098f7ed cgroup_bpf_enabled_key EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton -EXPORT_SYMBOL vmlinux 0x609c9123 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x609dc3d5 dev_uc_add EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a2528e sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60ac15db eth_mac_addr EXPORT_SYMBOL vmlinux 0x60b07a22 nand_create_bbt +EXPORT_SYMBOL vmlinux 0x60b25c50 neigh_for_each EXPORT_SYMBOL vmlinux 0x60bffe6d div64_u64 +EXPORT_SYMBOL vmlinux 0x60c07bc5 xfrm_state_update EXPORT_SYMBOL vmlinux 0x60c7ef3f dquot_quota_on -EXPORT_SYMBOL vmlinux 0x60cc909b scsi_dma_unmap EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60dc0fb5 jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0x60e196f5 simple_recursive_removal EXPORT_SYMBOL vmlinux 0x60e67f9a cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x610493d3 udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit EXPORT_SYMBOL vmlinux 0x612d4698 snd_ctl_replace EXPORT_SYMBOL vmlinux 0x6132c460 pci_release_selected_regions EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x613c2cc1 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x6140cab3 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x61374c8f flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x6144823e locks_copy_lock +EXPORT_SYMBOL vmlinux 0x6148b5c0 jbd2_journal_blocks_per_page EXPORT_SYMBOL vmlinux 0x614b26ad param_set_bint EXPORT_SYMBOL vmlinux 0x6156c7f4 net_dim EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x615a5cf1 udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x61894181 dev_load -EXPORT_SYMBOL vmlinux 0x6196c18e __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x617cd7f9 block_write_full_page +EXPORT_SYMBOL vmlinux 0x617d9bb0 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x61acade7 __sock_i_ino EXPORT_SYMBOL vmlinux 0x61afbfd2 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x61b30bc5 netif_tx_wake_queue EXPORT_SYMBOL vmlinux 0x61b3e3b0 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x61b6eb16 sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0x61b76bb9 smp_call_function_many EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull EXPORT_SYMBOL vmlinux 0x61c76b3a proc_dointvec_jiffies EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61e54c2c mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer EXPORT_SYMBOL vmlinux 0x61ef40b1 simple_setattr -EXPORT_SYMBOL vmlinux 0x61ff1e57 thread_group_exited -EXPORT_SYMBOL vmlinux 0x62044882 ipv6_dev_find EXPORT_SYMBOL vmlinux 0x6205a290 devm_iounmap -EXPORT_SYMBOL vmlinux 0x6212572e writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x620f32be setup_new_exec EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x6222f633 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x6223f40f phy_device_register -EXPORT_SYMBOL vmlinux 0x6225f38a security_unix_may_send EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x6247863a register_fib_notifier -EXPORT_SYMBOL vmlinux 0x6250267c __ip_select_ident EXPORT_SYMBOL vmlinux 0x6265586d rproc_elf_load_segments EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627abd9c xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x628986f5 end_page_private_2 EXPORT_SYMBOL vmlinux 0x628cbabb key_invalidate -EXPORT_SYMBOL vmlinux 0x629d7174 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x62a04afe key_link EXPORT_SYMBOL vmlinux 0x62a555a0 pci_write_config_dword EXPORT_SYMBOL vmlinux 0x62b9567c override_creds EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin EXPORT_SYMBOL vmlinux 0x62c2e94c tty_kref_put -EXPORT_SYMBOL vmlinux 0x62e5bec4 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x62cbf3b0 phy_start EXPORT_SYMBOL vmlinux 0x62f576d9 trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0x630041ef filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0x630c2230 param_get_ullong +EXPORT_SYMBOL vmlinux 0x6317a8e2 neigh_resolve_output EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631c73bd jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put EXPORT_SYMBOL vmlinux 0x633dd5b2 __invalidate_device EXPORT_SYMBOL vmlinux 0x6342f99f mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x634762f5 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x63a3516d set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x63543947 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x638791f8 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x63965632 tcf_get_next_proto EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63abcb66 alloc_fcdev EXPORT_SYMBOL vmlinux 0x63b3cdbd backlight_device_register EXPORT_SYMBOL vmlinux 0x63c0379e tty_port_close +EXPORT_SYMBOL vmlinux 0x63c25b47 devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight EXPORT_SYMBOL vmlinux 0x63cbf74f of_find_i2c_adapter_by_node EXPORT_SYMBOL vmlinux 0x63d40f56 vga_client_register -EXPORT_SYMBOL vmlinux 0x63de7c8d msm_pinctrl_probe EXPORT_SYMBOL vmlinux 0x63df1bcd of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x63e7d9cc sock_create -EXPORT_SYMBOL vmlinux 0x63e984d7 xattr_full_name -EXPORT_SYMBOL vmlinux 0x63ea81c2 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x63e803ef xsk_tx_release EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink EXPORT_SYMBOL vmlinux 0x63f84b36 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0x63ffb9ce sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0x64009350 devm_memremap +EXPORT_SYMBOL vmlinux 0x640ff529 rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x64168ae3 xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x64209e37 tty_port_destroy EXPORT_SYMBOL vmlinux 0x6430cf4c get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x646c6ebc phy_disconnect -EXPORT_SYMBOL vmlinux 0x646ece69 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0x646f1416 inet_add_offload -EXPORT_SYMBOL vmlinux 0x6475ac56 inet6_offloads -EXPORT_SYMBOL vmlinux 0x6478a68c jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x644828f4 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x645c7d13 generic_block_bmap EXPORT_SYMBOL vmlinux 0x647af474 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x647db087 _dev_info EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 EXPORT_SYMBOL vmlinux 0x64833350 i2c_smbus_pec EXPORT_SYMBOL vmlinux 0x648d0241 blk_queue_logical_block_size EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a46a46 xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x64a6405a nd_btt_arena_is_valid EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64ea4ead reuseport_add_sock -EXPORT_SYMBOL vmlinux 0x64faff19 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x64c7b9bf tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL vmlinux 0x65121546 inet_frag_kill EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x6519ef65 inet_sk_set_state EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x651afcf6 scsi_print_result EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x6539fa5f __nlmsg_put -EXPORT_SYMBOL vmlinux 0x653a137a xfrm_register_km EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop +EXPORT_SYMBOL vmlinux 0x65626b61 __block_write_begin +EXPORT_SYMBOL vmlinux 0x65650f0b generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x656ba967 netdev_lower_state_changed EXPORT_SYMBOL vmlinux 0x6578533e prepare_to_wait -EXPORT_SYMBOL vmlinux 0x658a3c12 locks_init_lock +EXPORT_SYMBOL vmlinux 0x657bc087 sock_set_sndtimeo EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65b1f249 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x65aba780 __set_page_dirty_no_writeback EXPORT_SYMBOL vmlinux 0x65d411e9 idr_get_next EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65efb439 devm_devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0x65fb12cf mipi_dsi_generic_write EXPORT_SYMBOL vmlinux 0x65fe83a9 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x65ff0c12 finish_open EXPORT_SYMBOL vmlinux 0x66032a84 devm_free_irq EXPORT_SYMBOL vmlinux 0x66099087 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x6614c364 vme_slave_request EXPORT_SYMBOL vmlinux 0x66241c42 of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x662904f4 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x663a3a8a sock_recvmsg +EXPORT_SYMBOL vmlinux 0x66378f54 mdiobus_write EXPORT_SYMBOL vmlinux 0x66474aa4 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x664d5a90 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x6659e0eb flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0x66657274 kmalloc_order EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x666cd943 phy_resume EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x667ec827 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x667a48f3 netdev_reset_tc EXPORT_SYMBOL vmlinux 0x66817a7d register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x66999048 mdiobus_write_nested EXPORT_SYMBOL vmlinux 0x66a63949 nla_reserve EXPORT_SYMBOL vmlinux 0x66aed8c5 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x66b03a57 inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0x66b2edbd padata_alloc_shell -EXPORT_SYMBOL vmlinux 0x66b8dbd2 vfs_fsync -EXPORT_SYMBOL vmlinux 0x66ba5f28 qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0x66c40307 phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x66e012f6 dev_change_flags -EXPORT_SYMBOL vmlinux 0x66e2996a device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x66b302b2 send_sig_mceerr EXPORT_SYMBOL vmlinux 0x66ed4247 inc_node_state -EXPORT_SYMBOL vmlinux 0x670c6c56 setup_arg_pages EXPORT_SYMBOL vmlinux 0x6710f7c1 request_firmware -EXPORT_SYMBOL vmlinux 0x67172c64 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x6717cf49 dev_set_threaded EXPORT_SYMBOL vmlinux 0x671d2f7b sb_set_blocksize EXPORT_SYMBOL vmlinux 0x672184c9 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x673479e6 filemap_check_errors -EXPORT_SYMBOL vmlinux 0x673e3449 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x672f94fe dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable -EXPORT_SYMBOL vmlinux 0x674184a0 __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x676a3074 kill_pgrp EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit EXPORT_SYMBOL vmlinux 0x676cbd35 pci_find_capability EXPORT_SYMBOL vmlinux 0x6770bc08 drop_super EXPORT_SYMBOL vmlinux 0x678a82a6 key_alloc EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x67929b1b tso_build_hdr EXPORT_SYMBOL vmlinux 0x679856f5 sort_r -EXPORT_SYMBOL vmlinux 0x679f4811 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x67a1f76e add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x67a76702 qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c5e427 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x67b905c1 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x67bba754 devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x67cd5253 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x67d3ad27 skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0x67dd6f2b of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0x67e091f3 blk_put_request -EXPORT_SYMBOL vmlinux 0x67e4f963 udp_lib_unhash EXPORT_SYMBOL vmlinux 0x67e56bb4 mount_bdev EXPORT_SYMBOL vmlinux 0x67e617cf textsearch_register EXPORT_SYMBOL vmlinux 0x67ea6e61 trace_print_hex_dump_seq EXPORT_SYMBOL vmlinux 0x67f4aab4 snd_sgbuf_get_addr +EXPORT_SYMBOL vmlinux 0x68084b74 ndisc_mc_map EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x681f6449 disk_end_io_acct -EXPORT_SYMBOL vmlinux 0x683d8aa4 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x68449b6a tso_start -EXPORT_SYMBOL vmlinux 0x6846ba6b xfrm_register_type +EXPORT_SYMBOL vmlinux 0x681d0e4b free_task +EXPORT_SYMBOL vmlinux 0x6825b7d7 nf_log_unset +EXPORT_SYMBOL vmlinux 0x6840473b udp_gro_receive +EXPORT_SYMBOL vmlinux 0x68422fbd register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x68629337 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x687585e8 tcp_get_md5sig_pool EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x6884be32 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x68994e33 ipv6_chk_custom_prefix EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width EXPORT_SYMBOL vmlinux 0x68a2fcf1 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x68a39175 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0x68c3c1e5 __frontswap_store EXPORT_SYMBOL vmlinux 0x68c4dfc5 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL vmlinux 0x68d99f4d memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0x68e60735 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x68ea1867 scsi_ioctl EXPORT_SYMBOL vmlinux 0x68eedd7a get_user_pages EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s EXPORT_SYMBOL vmlinux 0x69075653 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x6909b6b6 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x69115f71 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free EXPORT_SYMBOL vmlinux 0x691938f8 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x691957f0 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x69203a4d add_to_pipe EXPORT_SYMBOL vmlinux 0x692686ce drop_super_exclusive EXPORT_SYMBOL vmlinux 0x6934f277 scsi_register_driver EXPORT_SYMBOL vmlinux 0x6941e6d2 dquot_disable @@ -8129,260 +8042,260 @@ EXPORT_SYMBOL vmlinux 0x6955e665 param_get_ulong EXPORT_SYMBOL vmlinux 0x69612326 touch_atime EXPORT_SYMBOL vmlinux 0x696641d8 of_find_mipi_dsi_host_by_node EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x696ce785 xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days EXPORT_SYMBOL vmlinux 0x6974b5ea of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0x69963ea3 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x697690c6 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x699db3b5 __skb_gso_segment EXPORT_SYMBOL vmlinux 0x699f0fc6 param_ops_int EXPORT_SYMBOL vmlinux 0x69a7cf5e pci_get_subsys -EXPORT_SYMBOL vmlinux 0x69ad69a5 vfs_parse_fs_param EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params -EXPORT_SYMBOL vmlinux 0x69bf1153 blk_put_queue +EXPORT_SYMBOL vmlinux 0x69b7fa8d phy_init_hw +EXPORT_SYMBOL vmlinux 0x69c45560 tcf_exts_destroy EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window EXPORT_SYMBOL vmlinux 0x69e51d08 __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x69f05042 seg6_hmac_info_add EXPORT_SYMBOL vmlinux 0x69f1d760 is_nd_btt -EXPORT_SYMBOL vmlinux 0x69f45af2 sk_error_report -EXPORT_SYMBOL vmlinux 0x69f733cc scsi_remove_device EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a54be9b skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x6a140310 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x6a15c39d page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x6a1b6a14 sock_no_linger +EXPORT_SYMBOL vmlinux 0x6a24cae9 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x6a321ec4 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x6a3775c0 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x6a3a484a netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x6a491b61 blk_queue_flag_set EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a603950 mmc_set_blocklen EXPORT_SYMBOL vmlinux 0x6a63cf27 from_kprojid EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 EXPORT_SYMBOL vmlinux 0x6a74ab01 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x6a759117 ipv6_getsockopt EXPORT_SYMBOL vmlinux 0x6a773c7c find_inode_by_ino_rcu EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6aa5be2d dev_remove_offload -EXPORT_SYMBOL vmlinux 0x6ac64dbb put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x6aa8e4d4 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x6aaa942e tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x6ab6936e inet_pton_with_scope EXPORT_SYMBOL vmlinux 0x6ac80c29 __tracepoint_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x6acc4350 rawnand_sw_hamming_cleanup -EXPORT_SYMBOL vmlinux 0x6acdae5c ip_getsockopt EXPORT_SYMBOL vmlinux 0x6ad7a335 prepare_creds EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae73bba key_type_keyring EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset EXPORT_SYMBOL vmlinux 0x6aef94c3 rproc_add +EXPORT_SYMBOL vmlinux 0x6af67007 filemap_page_mkwrite EXPORT_SYMBOL vmlinux 0x6af7b21a packing -EXPORT_SYMBOL vmlinux 0x6b2138b6 block_commit_write EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack EXPORT_SYMBOL vmlinux 0x6b3180de mipi_dsi_dcs_nop EXPORT_SYMBOL vmlinux 0x6b3a4808 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x6b46cd6b xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0x6b534334 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x6b43f59a tcp_sock_set_syncnt EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b57caf3 arp_tbl -EXPORT_SYMBOL vmlinux 0x6b5e02b3 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x6b5911f9 phy_register_fixup_for_uid EXPORT_SYMBOL vmlinux 0x6b604710 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6b6c2e49 phy_get_pause EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b8b90be write_inode_now EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x6ba16e9d scsi_device_get +EXPORT_SYMBOL vmlinux 0x6ba70101 nosteal_pipe_buf_ops EXPORT_SYMBOL vmlinux 0x6bb93d9e sg_copy_to_buffer EXPORT_SYMBOL vmlinux 0x6bbb78cf dquot_acquire +EXPORT_SYMBOL vmlinux 0x6bbdfdc7 sock_no_listen EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev EXPORT_SYMBOL vmlinux 0x6bd147c0 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x6bdc1951 vme_master_mmap EXPORT_SYMBOL vmlinux 0x6be16a65 remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0x6be4dfc3 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x6be53960 sock_no_linger EXPORT_SYMBOL vmlinux 0x6bf58683 sound_class EXPORT_SYMBOL vmlinux 0x6bf7d3c2 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x6bfab498 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x6bfbcadc phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x6c124405 security_inode_setsecctx EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change EXPORT_SYMBOL vmlinux 0x6c29d0ea bioset_integrity_create EXPORT_SYMBOL vmlinux 0x6c2c28b0 jbd2_journal_free_reserved EXPORT_SYMBOL vmlinux 0x6c309479 mpage_writepages -EXPORT_SYMBOL vmlinux 0x6c39ad2e jbd2_journal_abort EXPORT_SYMBOL vmlinux 0x6c43bf57 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x6c4e4168 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0x6c4f42aa setattr_copy -EXPORT_SYMBOL vmlinux 0x6c5001c1 key_unlink -EXPORT_SYMBOL vmlinux 0x6c5b33d7 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x6c5de901 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x6c5a30ae netpoll_print_options EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c79024e delete_from_page_cache EXPORT_SYMBOL vmlinux 0x6c810e42 __xa_clear_mark -EXPORT_SYMBOL vmlinux 0x6c905386 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x6c9b2a4b tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x6c85ace2 phy_device_create +EXPORT_SYMBOL vmlinux 0x6ca0c101 skb_dequeue EXPORT_SYMBOL vmlinux 0x6ca3cb03 param_ops_uint -EXPORT_SYMBOL vmlinux 0x6caaf9a5 netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk EXPORT_SYMBOL vmlinux 0x6cbc06fd dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x6cca93c2 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x6cd35e87 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x6cd3b2d4 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x6cdd54d3 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x6cea6b3b tc_setup_cb_destroy EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6d0c383e __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x6d0f5e84 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x6cf7f326 phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies EXPORT_SYMBOL vmlinux 0x6d2f1f52 pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate EXPORT_SYMBOL vmlinux 0x6d34f209 scsi_remove_target EXPORT_SYMBOL vmlinux 0x6d3b10c2 tty_register_device -EXPORT_SYMBOL vmlinux 0x6d424424 skb_realloc_headroom EXPORT_SYMBOL vmlinux 0x6d520faa pin_user_pages_locked EXPORT_SYMBOL vmlinux 0x6d57874a dquot_quotactl_sysfile_ops EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d7cbabd kmem_cache_create EXPORT_SYMBOL vmlinux 0x6d89b199 proc_dointvec_minmax EXPORT_SYMBOL vmlinux 0x6d91f163 dquot_operations -EXPORT_SYMBOL vmlinux 0x6d970a2d mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0x6d983bda lock_rename -EXPORT_SYMBOL vmlinux 0x6d9b9c51 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x6da1798a napi_gro_receive EXPORT_SYMBOL vmlinux 0x6dbc0891 fscrypt_fname_disk_to_usr EXPORT_SYMBOL vmlinux 0x6dcc7bc6 pci_unmap_rom EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6dd98b35 sock_from_file EXPORT_SYMBOL vmlinux 0x6ddcdbad revert_creds EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df2c2c9 skb_pull -EXPORT_SYMBOL vmlinux 0x6df8ccdc __skb_get_hash -EXPORT_SYMBOL vmlinux 0x6e26ec82 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x6e136321 register_netdevice EXPORT_SYMBOL vmlinux 0x6e2996af get_random_bytes_arch EXPORT_SYMBOL vmlinux 0x6e30298b page_pool_create +EXPORT_SYMBOL vmlinux 0x6e3d399b tcp_md5_do_del EXPORT_SYMBOL vmlinux 0x6e4e7714 dma_fence_chain_ops EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7cb2af jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x6e82de1a end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x6e87bf3f scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x6e88de95 neigh_update EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea54911 tcp_prot EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eb31569 __sock_i_ino EXPORT_SYMBOL vmlinux 0x6eb7508f pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x6eb9b2ea __ip_queue_xmit EXPORT_SYMBOL vmlinux 0x6ebf9b7b input_flush_device +EXPORT_SYMBOL vmlinux 0x6eca3ef2 inet_sendpage EXPORT_SYMBOL vmlinux 0x6ecdb792 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x6ef0f166 mdio_find_bus EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear EXPORT_SYMBOL vmlinux 0x6f013ecd __init_rwsem -EXPORT_SYMBOL vmlinux 0x6f0f9b44 lease_modify -EXPORT_SYMBOL vmlinux 0x6f122747 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x6f215b44 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x6f2340a0 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x6f3398ce mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x6f61fb2b mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x6f2ebf76 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x6f537c20 dev_add_offload +EXPORT_SYMBOL vmlinux 0x6f61241c sock_no_sendmsg EXPORT_SYMBOL vmlinux 0x6f6232b0 param_set_charp -EXPORT_SYMBOL vmlinux 0x6f77308b __xfrm_state_delete EXPORT_SYMBOL vmlinux 0x6f798854 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x6f7af5ed filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0x6f83c7e1 ipv4_specific +EXPORT_SYMBOL vmlinux 0x6f7f42ac try_to_writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x6f83fba8 hex2bin EXPORT_SYMBOL vmlinux 0x6f87e4e9 textsearch_find_continuous EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6f95f1ec xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x6f968326 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x6f98d388 netif_device_attach +EXPORT_SYMBOL vmlinux 0x6f9fc5b6 tcf_unregister_action EXPORT_SYMBOL vmlinux 0x6fa6597c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x6fae15c3 security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0x6fb374e6 down_write_killable -EXPORT_SYMBOL vmlinux 0x6fb53b68 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x6fbdd72f buffer_migrate_page EXPORT_SYMBOL vmlinux 0x6fbe4717 idr_replace +EXPORT_SYMBOL vmlinux 0x6fc4c11b __lock_page EXPORT_SYMBOL vmlinux 0x6fc974b4 pci_bus_size_bridges EXPORT_SYMBOL vmlinux 0x6fcad4ce device_add_disk EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6ffb86b9 nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 EXPORT_SYMBOL vmlinux 0x7002b1ec of_parse_phandle -EXPORT_SYMBOL vmlinux 0x701d7b36 __neigh_create +EXPORT_SYMBOL vmlinux 0x7008ba0d lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x701c245b sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x70208078 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x7022ec91 jbd2_trans_will_send_data_barrier EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x7038376c __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x7045e634 inetdev_by_index EXPORT_SYMBOL vmlinux 0x70703993 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x70732d86 mmc_gpio_set_cd_wake EXPORT_SYMBOL vmlinux 0x707b42f1 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x70828ffe jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0x70834459 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x70a60d7d flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x70a8bf25 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x70aae464 __skb_pad -EXPORT_SYMBOL vmlinux 0x70b765d0 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x70ca86ce __check_sticky -EXPORT_SYMBOL vmlinux 0x70d19255 unix_attach_fds -EXPORT_SYMBOL vmlinux 0x70d348de netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x70ace056 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x70ba5d12 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x70d7fdc5 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x70f7aa5e mdiobus_scan +EXPORT_SYMBOL vmlinux 0x70fd1f1b sock_no_getname EXPORT_SYMBOL vmlinux 0x711b8a9b __crc32c_le_shift EXPORT_SYMBOL vmlinux 0x712044a2 mipi_dsi_dcs_set_page_address EXPORT_SYMBOL vmlinux 0x712110ab proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x713c9a48 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x714b1b37 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x712d3d12 dcb_ieee_getapp_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0x71503118 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x715054c5 phy_start_aneg EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x7187e1b9 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x719c433c __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x7183fd91 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x718c1c6c jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x71a08ebb __mmap_lock_do_trace_start_locking EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71b7395c netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x71b139e5 vme_register_driver +EXPORT_SYMBOL vmlinux 0x71bba711 udp_seq_start EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71df16c3 twl6040_clear_bits EXPORT_SYMBOL vmlinux 0x71f7de4f proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x71fd027c dev_set_alias EXPORT_SYMBOL vmlinux 0x71ffa510 mipi_dsi_turn_on_peripheral EXPORT_SYMBOL vmlinux 0x72005410 hdmi_infoframe_pack EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x72358327 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x722e68e3 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x722fbde2 sk_wait_data EXPORT_SYMBOL vmlinux 0x723623d4 iov_iter_revert EXPORT_SYMBOL vmlinux 0x723cb9da mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x724d639d netpoll_cleanup EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported EXPORT_SYMBOL vmlinux 0x7263964c pps_event -EXPORT_SYMBOL vmlinux 0x7290fa3d skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x726a3372 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x726e7800 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x72792650 follow_down +EXPORT_SYMBOL vmlinux 0x72838430 netdev_lower_dev_get_private EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable EXPORT_SYMBOL vmlinux 0x72b73f92 fuse_dequeue_forget EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72c57ca3 flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x72d98654 jbd2_journal_clear_features EXPORT_SYMBOL vmlinux 0x72e6c80d devm_extcon_unregister_notifier EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x73001c88 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x72fca63d mmc_release_host EXPORT_SYMBOL vmlinux 0x73076315 snd_pci_quirk_lookup_id EXPORT_SYMBOL vmlinux 0x731130bc pci_write_vpd EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config EXPORT_SYMBOL vmlinux 0x7317790e lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x731b1ee5 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x7318647c inet6_release +EXPORT_SYMBOL vmlinux 0x731b7b27 ndo_dflt_fdb_dump EXPORT_SYMBOL vmlinux 0x731cb05d set_anon_super +EXPORT_SYMBOL vmlinux 0x731ee6c6 sock_kzfree_s EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x733f42f4 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x732df7f5 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x734f1af1 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x7361616f xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x7363aa55 of_get_next_child -EXPORT_SYMBOL vmlinux 0x7366581b __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x736856df udp_push_pending_frames EXPORT_SYMBOL vmlinux 0x736a6e74 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0x737fa4fa jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x7381ebf3 dev_open +EXPORT_SYMBOL vmlinux 0x73810df2 netlink_unicast +EXPORT_SYMBOL vmlinux 0x73915b82 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x7398eccd netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0x739980bb dm_unregister_target EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr +EXPORT_SYMBOL vmlinux 0x739a1c00 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x739c5092 skb_trim EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73a4c1bc sock_enable_timestamps EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73c2fd7c dev_mc_flush -EXPORT_SYMBOL vmlinux 0x73c3c102 generic_write_checks -EXPORT_SYMBOL vmlinux 0x73ca0a96 try_module_get EXPORT_SYMBOL vmlinux 0x73d20fb3 omap_get_dma_src_pos EXPORT_SYMBOL vmlinux 0x73dac2f2 serio_close EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73e25e63 vlan_for_each EXPORT_SYMBOL vmlinux 0x73e76cc9 fs_param_is_string -EXPORT_SYMBOL vmlinux 0x73ff8e2a nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x73e9cf49 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x73f0a6f9 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x73f1fef5 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x73f2472a __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x7405de2b scsi_device_get EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 EXPORT_SYMBOL vmlinux 0x742fc1e7 fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0x744e9e75 tty_hung_up_p EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x7454eb81 wait_on_page_private_2 EXPORT_SYMBOL vmlinux 0x7469e5a2 d_instantiate_new EXPORT_SYMBOL vmlinux 0x746dbd66 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x74826cdf tcp_mmap EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x7492014e netpoll_poll_disable EXPORT_SYMBOL vmlinux 0x749373bb devm_clk_get -EXPORT_SYMBOL vmlinux 0x74a667d9 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x74ac5775 phy_get_c45_ids EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74cdb031 sock_set_priority +EXPORT_SYMBOL vmlinux 0x74d38927 skb_realloc_headroom EXPORT_SYMBOL vmlinux 0x74e57865 iov_iter_advance EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74ec674b xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x74f3359f security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x74fc319f netdev_features_change EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x75061589 dump_skip_to -EXPORT_SYMBOL vmlinux 0x75200525 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x75158edb dev_set_alias +EXPORT_SYMBOL vmlinux 0x7516135a generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0x75380437 bio_copy_data -EXPORT_SYMBOL vmlinux 0x7550862f dump_skip +EXPORT_SYMBOL vmlinux 0x7545aa9d sock_set_reuseport EXPORT_SYMBOL vmlinux 0x755ff777 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x7565dbd0 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x75a6f038 tcp_select_initial_window EXPORT_SYMBOL vmlinux 0x75a8919f pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0x75b66039 snd_pcm_lib_preallocate_pages EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next @@ -8390,41 +8303,41 @@ EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 EXPORT_SYMBOL vmlinux 0x75d32cc5 param_set_bool EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump EXPORT_SYMBOL vmlinux 0x75da9df7 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x75f20194 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x75ec7acf dev_lstats_read EXPORT_SYMBOL vmlinux 0x75fd35e5 snd_pcm_new_internal EXPORT_SYMBOL vmlinux 0x76085603 cdrom_open EXPORT_SYMBOL vmlinux 0x760a0f4f yield EXPORT_SYMBOL vmlinux 0x760d2abd snd_dma_free_pages EXPORT_SYMBOL vmlinux 0x7610b72f dquot_drop -EXPORT_SYMBOL vmlinux 0x76113457 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x76143823 qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x7620e764 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x76384233 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x76420062 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x763ab07d unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x7645ba13 mroute6_is_socket EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq EXPORT_SYMBOL vmlinux 0x765a62a6 param_get_ushort EXPORT_SYMBOL vmlinux 0x76607044 register_sound_special +EXPORT_SYMBOL vmlinux 0x76686f25 mr_vif_seq_next EXPORT_SYMBOL vmlinux 0x76690778 blk_mq_requeue_request EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x7676ea7e of_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x768638b8 simple_fill_super EXPORT_SYMBOL vmlinux 0x7695c12d pci_pme_capable -EXPORT_SYMBOL vmlinux 0x769b1035 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0x769b85d0 jbd2_journal_get_create_access EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a0b1ad tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x76b68a97 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x76add849 xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x76c52d63 nla_append EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d60082 jbd2_transaction_committed EXPORT_SYMBOL vmlinux 0x76d8b39c get_tz_trend +EXPORT_SYMBOL vmlinux 0x76e39645 __scm_send EXPORT_SYMBOL vmlinux 0x76e86828 __insert_inode_hash EXPORT_SYMBOL vmlinux 0x76eb5f54 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x76f5e476 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x76f7b374 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x7704522b dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x770ee2a0 dev_mc_del_global EXPORT_SYMBOL vmlinux 0x7710af1f blk_mq_run_hw_queues EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x7746da05 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x77577a9b flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0x7765622d rawnand_sw_hamming_init EXPORT_SYMBOL vmlinux 0x7767cf9a devm_request_any_context_irq EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 @@ -8432,23 +8345,25 @@ EXPORT_SYMBOL vmlinux 0x7776fd20 mipi_dsi_dcs_set_tear_on EXPORT_SYMBOL vmlinux 0x77808a48 vm_event_states EXPORT_SYMBOL vmlinux 0x778f39fe bio_integrity_prep EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x779a092b load_nls -EXPORT_SYMBOL vmlinux 0x77a51027 ata_scsi_cmd_error_handler EXPORT_SYMBOL vmlinux 0x77a82930 tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c50f78 km_policy_notify EXPORT_SYMBOL vmlinux 0x77ca5075 bio_integrity_add_page EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f17fb4 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x77f5985f tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0x77f5adc7 registered_fb EXPORT_SYMBOL vmlinux 0x77f6f183 kmalloc_order_trace EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780f33df inet6_ioctl EXPORT_SYMBOL vmlinux 0x78216f8b __cleancache_init_shared_fs EXPORT_SYMBOL vmlinux 0x78234cad page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0x783e5503 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x78543de7 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x7830b6dc netdev_name_in_use EXPORT_SYMBOL vmlinux 0x78549913 pci_scan_slot EXPORT_SYMBOL vmlinux 0x785b4fa5 unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0x785db5dd skb_dump -EXPORT_SYMBOL vmlinux 0x78754043 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x785e8231 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x78634025 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x786a5472 netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback EXPORT_SYMBOL vmlinux 0x78905ae1 freeze_super EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets @@ -8456,201 +8371,184 @@ EXPORT_SYMBOL vmlinux 0x789f892e dma_mmap_attrs EXPORT_SYMBOL vmlinux 0x78a0d1b2 pci_bus_read_config_word EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78ba6ea4 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x78c18e8e xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x78c81094 ipv6_setsockopt EXPORT_SYMBOL vmlinux 0x78d627aa tty_lock -EXPORT_SYMBOL vmlinux 0x78df174e vme_bus_type EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78eaabae generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x78e3eb64 kernel_getpeername EXPORT_SYMBOL vmlinux 0x78ecb9dd snd_ctl_boolean_stereo_info -EXPORT_SYMBOL vmlinux 0x78fdf3f6 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x7908fa2b nf_reinject EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x790cac75 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x793313a8 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x79400328 nf_ct_attach EXPORT_SYMBOL vmlinux 0x794765d1 mempool_free -EXPORT_SYMBOL vmlinux 0x794eb78e eth_gro_receive -EXPORT_SYMBOL vmlinux 0x7955c520 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x796c6d0a ip_output +EXPORT_SYMBOL vmlinux 0x79832ded skb_queue_head EXPORT_SYMBOL vmlinux 0x798d4831 vc_resize -EXPORT_SYMBOL vmlinux 0x79997fcc jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x799aae23 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x79b82e02 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x79c7223b dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x79a54284 sock_bind_add +EXPORT_SYMBOL vmlinux 0x79be46d6 scsi_remove_host EXPORT_SYMBOL vmlinux 0x79c858c8 pci_request_irq -EXPORT_SYMBOL vmlinux 0x79d2aa7e dns_query -EXPORT_SYMBOL vmlinux 0x79dc2017 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x79d09c74 vlan_vid_del EXPORT_SYMBOL vmlinux 0x79e0cb8b pcibios_fixup_bus EXPORT_SYMBOL vmlinux 0x79e78a6b pcie_print_link_status EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug +EXPORT_SYMBOL vmlinux 0x79fba58e netdev_alert EXPORT_SYMBOL vmlinux 0x79fc577f utf8nagemax -EXPORT_SYMBOL vmlinux 0x7a017542 mmc_register_driver EXPORT_SYMBOL vmlinux 0x7a05ab0e scsi_register_interface EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a143908 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x7a14aff2 __mmc_claim_host EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble EXPORT_SYMBOL vmlinux 0x7a30b743 of_find_i2c_device_by_node EXPORT_SYMBOL vmlinux 0x7a3e57ce ilookup5_nowait EXPORT_SYMBOL vmlinux 0x7a3e8a42 radix_tree_next_chunk EXPORT_SYMBOL vmlinux 0x7a44c000 bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0x7a4eec60 skb_find_text EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a71e5b1 tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0x7a72f7e0 phy_modify_paged -EXPORT_SYMBOL vmlinux 0x7a81272c mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x7a8a4689 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x7a8bb555 tcf_get_next_proto EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx -EXPORT_SYMBOL vmlinux 0x7a9e1ad8 inet_confirm_addr EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree EXPORT_SYMBOL vmlinux 0x7aa6bc60 param_set_uint EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ab99581 sock_create_lite +EXPORT_SYMBOL vmlinux 0x7ac4863b tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0x7acbe56a proc_create EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad73197 netdev_update_features EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu EXPORT_SYMBOL vmlinux 0x7aded2f7 down_write_trylock -EXPORT_SYMBOL vmlinux 0x7ae5c1bd pskb_extract EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7aeddffc inet_offloads EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer EXPORT_SYMBOL vmlinux 0x7b02937d start_tty -EXPORT_SYMBOL vmlinux 0x7b101fdb no_llseek +EXPORT_SYMBOL vmlinux 0x7b113cc6 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x7b19bbe4 phy_aneg_done EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state EXPORT_SYMBOL vmlinux 0x7b2fb85d __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x7b446493 sock_no_bind EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7b68e291 filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0x7b6a2d5e snd_timer_close +EXPORT_SYMBOL vmlinux 0x7b759a2c neigh_event_ns EXPORT_SYMBOL vmlinux 0x7b772c86 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x7baf5c27 flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0x7bbc8fd2 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x7bc3f171 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x7bce5955 __module_put_and_exit EXPORT_SYMBOL vmlinux 0x7bd8f6e5 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x7bd9c2b7 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x7be6447f neigh_table_init EXPORT_SYMBOL vmlinux 0x7bf3f0e9 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x7bf5b751 posix_lock_file EXPORT_SYMBOL vmlinux 0x7bf97abc md_write_start +EXPORT_SYMBOL vmlinux 0x7c12bcb9 eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c2e4e2c __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x7c39a4a7 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x7c3a6467 unix_get_socket +EXPORT_SYMBOL vmlinux 0x7c3af88f mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0x7c461a4f blk_mq_complete_request EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c576283 genphy_update_link -EXPORT_SYMBOL vmlinux 0x7c6ce327 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x7c5376f2 eth_header_cache +EXPORT_SYMBOL vmlinux 0x7c6bc05f filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x7c6cbc94 devm_devfreq_remove_device EXPORT_SYMBOL vmlinux 0x7c763eaa seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x7c80c49e netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x7c76f227 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x7c777b16 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x7c7b528d gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x7c8b5da4 follow_pfn EXPORT_SYMBOL vmlinux 0x7c8cea9e key_create_or_update EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cba62b2 phy_suspend EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 -EXPORT_SYMBOL vmlinux 0x7ccdf1a2 vm_insert_page -EXPORT_SYMBOL vmlinux 0x7cd887a7 ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0x7ce01c87 of_node_name_prefix EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce80fd5 eth_header_parse -EXPORT_SYMBOL vmlinux 0x7cea1f6f devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x7cf2e430 __cleancache_invalidate_fs EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d058d41 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x7d0a0ad3 tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d0ef8e8 tcf_idr_search EXPORT_SYMBOL vmlinux 0x7d124a67 input_register_handler +EXPORT_SYMBOL vmlinux 0x7d12de6d __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x7d16c11a reuseport_add_sock EXPORT_SYMBOL vmlinux 0x7d22f6a6 gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0x7d2ef2b0 down_read_interruptible +EXPORT_SYMBOL vmlinux 0x7d34daff netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x7d3b29f5 key_task_permission EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit EXPORT_SYMBOL vmlinux 0x7d6f1dc3 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x7d7e00c5 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x7d8af1b0 scsi_host_get EXPORT_SYMBOL vmlinux 0x7d8ddde2 serio_open EXPORT_SYMBOL vmlinux 0x7d945888 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x7d963b81 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x7d9d4728 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x7d98cb05 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x7d9a2b20 genphy_suspend EXPORT_SYMBOL vmlinux 0x7da04902 nand_monolithic_write_page_raw EXPORT_SYMBOL vmlinux 0x7da2e671 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x7daac877 netdev_notice -EXPORT_SYMBOL vmlinux 0x7dad0168 skb_unlink EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dc821ba phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x7dcf6704 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x7ddc96a8 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x7de7d4b2 create_empty_buffers EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args EXPORT_SYMBOL vmlinux 0x7e0ce0c3 up_write -EXPORT_SYMBOL vmlinux 0x7e0fb118 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x7e2a10a2 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x7e141def flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x7e1ada24 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x7e2219b3 udp_set_csum +EXPORT_SYMBOL vmlinux 0x7e28051a jbd2_journal_clear_features EXPORT_SYMBOL vmlinux 0x7e30cbdb tty_port_free_xmit_buf EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync EXPORT_SYMBOL vmlinux 0x7e35a6c6 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x7e53ec98 xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0x7e5b9564 md_check_no_bitmap EXPORT_SYMBOL vmlinux 0x7e66b8e7 nd_device_register EXPORT_SYMBOL vmlinux 0x7e673a70 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x7e74ed49 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x7e8c1676 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x7e699bc8 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x7e88dfcc tcf_qevent_destroy EXPORT_SYMBOL vmlinux 0x7e8dd9d1 make_kuid -EXPORT_SYMBOL vmlinux 0x7e95b88f tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x7e97fb43 __inet_hash EXPORT_SYMBOL vmlinux 0x7e986abe try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x7e987882 inet6_csk_route_req EXPORT_SYMBOL vmlinux 0x7eb29085 param_get_byte EXPORT_SYMBOL vmlinux 0x7eb3c4b2 param_ops_charp -EXPORT_SYMBOL vmlinux 0x7ebe6b7a dev_driver_string -EXPORT_SYMBOL vmlinux 0x7ec70325 ip_output EXPORT_SYMBOL vmlinux 0x7ed4ae2c iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0x7ee409e4 tcf_block_put -EXPORT_SYMBOL vmlinux 0x7ef76f14 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x7efb5b14 consume_skb EXPORT_SYMBOL vmlinux 0x7efe3b15 take_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f04b2db scsi_target_resume EXPORT_SYMBOL vmlinux 0x7f22093f proc_create_data EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f2cb336 tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0x7f304b27 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x7f31616d tcp_shutdown +EXPORT_SYMBOL vmlinux 0x7f50a953 eth_gro_receive EXPORT_SYMBOL vmlinux 0x7f524d7c blk_mq_unique_tag EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table EXPORT_SYMBOL vmlinux 0x7f5bd66a dm_kcopyd_zero EXPORT_SYMBOL vmlinux 0x7f5f7014 fscrypt_put_encryption_info EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio EXPORT_SYMBOL vmlinux 0x7f665f66 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL vmlinux 0x7f77192e xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x7f7f20d7 sync_mapping_buffers EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7fcd1138 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x7fd4a8d2 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x7fa63df6 flush_signals +EXPORT_SYMBOL vmlinux 0x7fd53576 xsk_tx_completed EXPORT_SYMBOL vmlinux 0x7fd75d99 make_bad_inode EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node EXPORT_SYMBOL vmlinux 0x7fe53d50 pci_write_config_word -EXPORT_SYMBOL vmlinux 0x7ff49d56 __lock_page +EXPORT_SYMBOL vmlinux 0x7fedead0 xattr_full_name EXPORT_SYMBOL vmlinux 0x80010523 pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 EXPORT_SYMBOL vmlinux 0x801695e6 sg_miter_next -EXPORT_SYMBOL vmlinux 0x802c08d0 blk_rq_init -EXPORT_SYMBOL vmlinux 0x802fc93d security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0x803999e2 input_enable_softrepeat EXPORT_SYMBOL vmlinux 0x8039b3fd _totalram_pages EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create EXPORT_SYMBOL vmlinux 0x80578bae blk_execute_rq -EXPORT_SYMBOL vmlinux 0x806f0ef3 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x8073f3fe __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x8082eb04 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x808301cb devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x8098bf2d scsi_device_resume +EXPORT_SYMBOL vmlinux 0x8089947d netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0x80c177e1 pci_set_master EXPORT_SYMBOL vmlinux 0x80c4c319 crc32_le EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd EXPORT_SYMBOL vmlinux 0x80d38ff8 _raw_spin_trylock_bh EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80da6b01 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x80de4bbe __udp_disconnect EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer EXPORT_SYMBOL vmlinux 0x80ef6248 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x80f9820b dev_set_promiscuity EXPORT_SYMBOL vmlinux 0x8108ac7a down_read_trylock EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x8114eeb2 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x81213cea inet6_getname -EXPORT_SYMBOL vmlinux 0x81302ae4 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x813fe45d km_new_mapping -EXPORT_SYMBOL vmlinux 0x81456669 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x8112c206 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x8124e213 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x81328c25 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x81405d04 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x814a9286 try_lookup_one_len EXPORT_SYMBOL vmlinux 0x815785d2 bio_reset +EXPORT_SYMBOL vmlinux 0x815800c6 __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal EXPORT_SYMBOL vmlinux 0x815ba5a1 mipi_dsi_dcs_set_pixel_format EXPORT_SYMBOL vmlinux 0x81675181 seq_printf @@ -8658,690 +8556,709 @@ EXPORT_SYMBOL vmlinux 0x81697daf blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information EXPORT_SYMBOL vmlinux 0x818d8c83 mipi_dsi_detach EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc -EXPORT_SYMBOL vmlinux 0x81a4ff00 disk_start_io_acct +EXPORT_SYMBOL vmlinux 0x819ed4d3 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x81a7314e tcp_rcv_established EXPORT_SYMBOL vmlinux 0x81adef99 refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x81baf8ba vfs_mkdir EXPORT_SYMBOL vmlinux 0x81c5544e wait_for_completion_killable EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e684a0 __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81eb6191 wait_on_page_private_2 -EXPORT_SYMBOL vmlinux 0x81f15c35 tcp_peek_len EXPORT_SYMBOL vmlinux 0x81f3a901 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x820dbf1c generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x8200ec3d unregister_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x821961af mipi_dsi_generic_read EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb +EXPORT_SYMBOL vmlinux 0x822190b4 phy_ethtool_get_wol EXPORT_SYMBOL vmlinux 0x82260809 tty_vhangup EXPORT_SYMBOL vmlinux 0x822e014e pci_dev_put -EXPORT_SYMBOL vmlinux 0x8232841d tso_build_data -EXPORT_SYMBOL vmlinux 0x8249ea97 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x82371472 dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr +EXPORT_SYMBOL vmlinux 0x8250cd56 of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x826ac4d7 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x8274fc44 nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0x8274fe5e mtd_concat_create EXPORT_SYMBOL vmlinux 0x827f924e vmalloc_array EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x8286f192 vme_lm_request EXPORT_SYMBOL vmlinux 0x828ce6bb mutex_lock -EXPORT_SYMBOL vmlinux 0x82b9634d xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x82c3d0d7 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x82904a74 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x82ac48f7 devm_devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x82cd0e6a serial8250_register_8250_port EXPORT_SYMBOL vmlinux 0x82cf04e0 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x82ecc12c scsi_host_busy +EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync +EXPORT_SYMBOL vmlinux 0x82f43b9e inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0x82f886a1 ZSTD_findFrameCompressedSize +EXPORT_SYMBOL vmlinux 0x8300b81b wireless_send_event EXPORT_SYMBOL vmlinux 0x83064c4c mipi_dsi_attach EXPORT_SYMBOL vmlinux 0x832047fc cfb_copyarea EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 EXPORT_SYMBOL vmlinux 0x8321eb95 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x8327f0da inet_listen +EXPORT_SYMBOL vmlinux 0x834b4e88 __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0x8351f2dc seqno_fence_ops EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x835da5ec of_device_alloc -EXPORT_SYMBOL vmlinux 0x8384681e __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x83874f85 inode_io_list_del EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x838f3977 security_dentry_init_security EXPORT_SYMBOL vmlinux 0x83a071f7 simple_nosetlease EXPORT_SYMBOL vmlinux 0x83ab1400 simple_getattr +EXPORT_SYMBOL vmlinux 0x83accb63 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x83b059e6 add_to_pipe EXPORT_SYMBOL vmlinux 0x83bdea65 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x83c5cfbc vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0x83cd0e6f atomic_io_modify -EXPORT_SYMBOL vmlinux 0x83eb6783 kernel_listen -EXPORT_SYMBOL vmlinux 0x83eedb45 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x83e10667 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x83e6da1c generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x83e76c19 netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x84036423 sock_edemux -EXPORT_SYMBOL vmlinux 0x84190218 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x842a254a arp_create -EXPORT_SYMBOL vmlinux 0x842ad264 __f_setown -EXPORT_SYMBOL vmlinux 0x844729d5 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x8423bcf7 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x843a1134 udp6_csum_init EXPORT_SYMBOL vmlinux 0x844dcd80 dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0x8450d428 nf_reinject +EXPORT_SYMBOL vmlinux 0x844fc5b8 unregister_fib_notifier EXPORT_SYMBOL vmlinux 0x8456e9a7 xa_erase -EXPORT_SYMBOL vmlinux 0x845dab43 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x845cd0b1 mount_subtree EXPORT_SYMBOL vmlinux 0x8460cab6 generic_shutdown_super EXPORT_SYMBOL vmlinux 0x846b71ce mpage_writepage EXPORT_SYMBOL vmlinux 0x846db8de jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x84739146 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x8476597a inet_stream_ops EXPORT_SYMBOL vmlinux 0x847db73c page_pool_release_page -EXPORT_SYMBOL vmlinux 0x848283de phy_get_internal_delay EXPORT_SYMBOL vmlinux 0x849282ef inode_dio_wait -EXPORT_SYMBOL vmlinux 0x849b157e sock_set_mark EXPORT_SYMBOL vmlinux 0x84a90f44 init_special_inode EXPORT_SYMBOL vmlinux 0x84ad65e7 snd_device_new EXPORT_SYMBOL vmlinux 0x84b183ae strncmp -EXPORT_SYMBOL vmlinux 0x84d0a123 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x84d8e054 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x84bcc1e2 tcp_syn_ack_timeout EXPORT_SYMBOL vmlinux 0x84e45ae2 register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x84e61d6d __register_binfmt -EXPORT_SYMBOL vmlinux 0x84f216c1 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x84e6762e kernel_connect EXPORT_SYMBOL vmlinux 0x84fbbe4b single_open +EXPORT_SYMBOL vmlinux 0x84fbd4df mdiobus_unregister EXPORT_SYMBOL vmlinux 0x84fe9d1e ram_aops +EXPORT_SYMBOL vmlinux 0x851c2c89 jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0x852e1d8e __register_nls -EXPORT_SYMBOL vmlinux 0x8558ee84 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x8531d0ac __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x853b9316 inode_set_ctime_current +EXPORT_SYMBOL vmlinux 0x853d18c9 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x85450026 genphy_c37_read_status EXPORT_SYMBOL vmlinux 0x855b8fb5 blk_mq_delay_run_hw_queue EXPORT_SYMBOL vmlinux 0x8561d2cb snd_timer_global_new EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85816982 jbd2_journal_get_create_access EXPORT_SYMBOL vmlinux 0x8582ebff cpu_all_bits +EXPORT_SYMBOL vmlinux 0x85918195 genphy_handle_interrupt_no_ack EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x859b9cb9 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x85a3d9b7 phy_detach +EXPORT_SYMBOL vmlinux 0x859ce711 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x85ad55f1 no_seek_end_llseek EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85be9106 vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x85c99dbc dev_uc_add +EXPORT_SYMBOL vmlinux 0x85c79103 xattr_supported_namespace EXPORT_SYMBOL vmlinux 0x85da9d8e touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x85dc0462 devfreq_remove_governor EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85ed45d2 mmc_hw_reset EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn EXPORT_SYMBOL vmlinux 0x860a52d9 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x860aeaa4 dev_mc_del EXPORT_SYMBOL vmlinux 0x861655e6 pci_iounmap -EXPORT_SYMBOL vmlinux 0x8617bbd5 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x861e003c xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0x862bc663 memset16 EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863d503c tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x866ff3a6 fc_mount -EXPORT_SYMBOL vmlinux 0x867c28b7 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x867b17a1 init_net EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86ba0dea flow_block_cb_setup_simple EXPORT_SYMBOL vmlinux 0x86be1b2e param_get_bool +EXPORT_SYMBOL vmlinux 0x86cbe9a2 devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant EXPORT_SYMBOL vmlinux 0x86dcd938 of_get_cpu_state_node EXPORT_SYMBOL vmlinux 0x86dd4bb2 uart_write_wakeup EXPORT_SYMBOL vmlinux 0x86e55830 pci_bus_read_config_byte EXPORT_SYMBOL vmlinux 0x86eb0c08 proc_dointvec EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87012ce0 __skb_pad EXPORT_SYMBOL vmlinux 0x870197aa inc_nlink EXPORT_SYMBOL vmlinux 0x870d5a1c __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x870d8c9f i2c_del_driver +EXPORT_SYMBOL vmlinux 0x871b5d1a tcf_qevent_init EXPORT_SYMBOL vmlinux 0x8739f704 is_subdir -EXPORT_SYMBOL vmlinux 0x87808f46 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x874854d5 reuseport_alloc EXPORT_SYMBOL vmlinux 0x879967bf pldmfw_op_pci_match_record EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds EXPORT_SYMBOL vmlinux 0x87a8f4c4 snd_card_free -EXPORT_SYMBOL vmlinux 0x87b633f6 mmc_card_alternative_gpt_sector EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87c814cc phy_register_fixup +EXPORT_SYMBOL vmlinux 0x87be9050 generic_file_write_iter EXPORT_SYMBOL vmlinux 0x87cb762b md_bitmap_free EXPORT_SYMBOL vmlinux 0x87d4382c snd_dma_buffer_mmap EXPORT_SYMBOL vmlinux 0x87d8545b fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x87ed8d0d km_policy_expired +EXPORT_SYMBOL vmlinux 0x87d943c0 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x87e41c50 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x87e890fe bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x87f05199 phy_ethtool_ksettings_set EXPORT_SYMBOL vmlinux 0x87f22b50 make_kgid EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x882df79b release_pages EXPORT_SYMBOL vmlinux 0x88309293 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x8833a8e5 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x88318ae5 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x883ea055 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x88531ed6 phy_get_internal_delay EXPORT_SYMBOL vmlinux 0x885d26db blk_mq_start_request EXPORT_SYMBOL vmlinux 0x88626e29 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x886d1e1b eth_header EXPORT_SYMBOL vmlinux 0x886eb2ce __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x8877077f scsi_alloc_sgtables EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x88960803 km_query -EXPORT_SYMBOL vmlinux 0x889a65ed jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x88929eae _dev_warn +EXPORT_SYMBOL vmlinux 0x88a0757f dev_addr_del EXPORT_SYMBOL vmlinux 0x88a11d42 clear_bdi_congested -EXPORT_SYMBOL vmlinux 0x88a609e4 netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0x88a87a2d cpumask_next EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial -EXPORT_SYMBOL vmlinux 0x88b4c091 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x88c6e27e xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x88cf0e0e vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x88d56b61 phy_queue_state_machine EXPORT_SYMBOL vmlinux 0x88db665b kstrtoul_from_user EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88dfe86e inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free EXPORT_SYMBOL vmlinux 0x88e828ff timestamp_truncate -EXPORT_SYMBOL vmlinux 0x890c5f14 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x891d1b38 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x88ea18f4 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x88f41c98 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x892130ad tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x892214c7 scsi_device_quiesce EXPORT_SYMBOL vmlinux 0x89253a74 rproc_alloc -EXPORT_SYMBOL vmlinux 0x892b8e68 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x892f33e0 dev_mc_init EXPORT_SYMBOL vmlinux 0x89436d64 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x8951c03c tcp_seq_start EXPORT_SYMBOL vmlinux 0x8966f6ee dec_node_page_state -EXPORT_SYMBOL vmlinux 0x896aa9e6 of_phy_get_and_connect EXPORT_SYMBOL vmlinux 0x898a0c90 config_group_find_item EXPORT_SYMBOL vmlinux 0x89948809 import_iovec +EXPORT_SYMBOL vmlinux 0x899a7217 dev_open +EXPORT_SYMBOL vmlinux 0x89bbcab3 ipv6_dev_find EXPORT_SYMBOL vmlinux 0x89cd92f7 request_key_tag -EXPORT_SYMBOL vmlinux 0x89d9d125 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x89d041e4 __dev_get_by_flags EXPORT_SYMBOL vmlinux 0x89dbdde1 snd_device_register -EXPORT_SYMBOL vmlinux 0x89efade5 skb_put -EXPORT_SYMBOL vmlinux 0x89fb5d75 mmc_release_host -EXPORT_SYMBOL vmlinux 0x8a151a76 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x89fbc3a4 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x8a05071e tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x8a07f2b6 blk_sync_queue EXPORT_SYMBOL vmlinux 0x8a1eca16 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x8a263ed9 inet_accept -EXPORT_SYMBOL vmlinux 0x8a378f63 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x8a1ee4bc xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x8a3b1285 __xa_erase EXPORT_SYMBOL vmlinux 0x8a42a54e input_unregister_device EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr -EXPORT_SYMBOL vmlinux 0x8a502cb5 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x8a5ef4a6 mmc_can_discard EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a96e761 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x8a7f257a jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x8a8ee1f6 __scsi_device_lookup EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9b1851 fib_notifier_ops_unregister EXPORT_SYMBOL vmlinux 0x8aa0402b _raw_read_unlock_irqrestore EXPORT_SYMBOL vmlinux 0x8aa30959 ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x8aa96f19 ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x8abac0da xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0x8ac3244d rproc_coredump_using_sections EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8adfc3a2 km_policy_expired EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x8b12b10c tcf_idr_create -EXPORT_SYMBOL vmlinux 0x8b1be5b4 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x8b0e1591 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x8b11256a vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x8b269d8c sock_no_mmap +EXPORT_SYMBOL vmlinux 0x8b4bd675 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x8b4e54cf neigh_table_init EXPORT_SYMBOL vmlinux 0x8b5927a0 down_timeout EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid EXPORT_SYMBOL vmlinux 0x8b6f9f76 blake2s_compress EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p EXPORT_SYMBOL vmlinux 0x8b88e417 zpool_unregister_driver EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b928b9b genphy_resume +EXPORT_SYMBOL vmlinux 0x8b937954 inet6_protos +EXPORT_SYMBOL vmlinux 0x8b9b23b2 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx EXPORT_SYMBOL vmlinux 0x8ba73ce1 simple_lookup -EXPORT_SYMBOL vmlinux 0x8ba9141a vme_lm_request EXPORT_SYMBOL vmlinux 0x8babddf3 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x8bac703b tcp_req_err EXPORT_SYMBOL vmlinux 0x8bae8f90 of_graph_is_present -EXPORT_SYMBOL vmlinux 0x8bb09c60 tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0x8bb55681 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x8bc92b24 tcf_idr_release EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x8bdff746 tcp_syn_ack_timeout EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable EXPORT_SYMBOL vmlinux 0x8be7289c alloc_mdio_bitbang EXPORT_SYMBOL vmlinux 0x8bee75d7 proc_dostring -EXPORT_SYMBOL vmlinux 0x8bf8305f __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x8bfbb6c5 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x8c011fe8 mmc_add_host -EXPORT_SYMBOL vmlinux 0x8c14831a tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0x8c1a2db2 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x8bfd2f67 default_llseek +EXPORT_SYMBOL vmlinux 0x8c1e9516 crypto_sha1_update EXPORT_SYMBOL vmlinux 0x8c1f00d5 __tracepoint_kmalloc_node EXPORT_SYMBOL vmlinux 0x8c264b1a snd_ctl_make_virtual_master -EXPORT_SYMBOL vmlinux 0x8c27059a genphy_loopback -EXPORT_SYMBOL vmlinux 0x8c2a4c8c dev_remove_pack EXPORT_SYMBOL vmlinux 0x8c50a142 dma_map_resource EXPORT_SYMBOL vmlinux 0x8c5d254a dma_fence_array_ops EXPORT_SYMBOL vmlinux 0x8c6e7c75 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x8c7d2015 phy_detach EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cb46ba6 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x8cb969ee tcf_idr_search EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin EXPORT_SYMBOL vmlinux 0x8cccaca4 input_set_keycode +EXPORT_SYMBOL vmlinux 0x8cd3423b genlmsg_put EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma -EXPORT_SYMBOL vmlinux 0x8cd9c4ec mmc_wait_for_cmd EXPORT_SYMBOL vmlinux 0x8ce13cc5 udplite_table -EXPORT_SYMBOL vmlinux 0x8ce20931 dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0x8ce8e9bf xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x8cec7710 security_inode_copy_up EXPORT_SYMBOL vmlinux 0x8cf52b18 mdiobus_setup_mdiodev_from_board_info EXPORT_SYMBOL vmlinux 0x8d05e0db pci_bus_alloc_resource EXPORT_SYMBOL vmlinux 0x8d26ce3a snd_timer_resolution EXPORT_SYMBOL vmlinux 0x8d3f8faf md_flush_request EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var EXPORT_SYMBOL vmlinux 0x8d49be23 rpmh_write_async +EXPORT_SYMBOL vmlinux 0x8d536c50 i2c_transfer_buffer_flags EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5c5431 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x8d727c2b filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper EXPORT_SYMBOL vmlinux 0x8d7f9e24 complete_request_key +EXPORT_SYMBOL vmlinux 0x8d81b376 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x8d911d55 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x8da48217 lease_modify EXPORT_SYMBOL vmlinux 0x8dae7978 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x8dbadd99 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x8dbc7c7c lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x8db06fe3 prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0x8dcf1ae2 simple_statfs +EXPORT_SYMBOL vmlinux 0x8dd89a31 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x8ddba948 clean_bdev_aliases EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout EXPORT_SYMBOL vmlinux 0x8de0794c blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x8dea3744 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x8deda4de jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x8dec29b7 ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8dfaf663 vfs_tmpfile EXPORT_SYMBOL vmlinux 0x8dfefc0d kvmalloc_node -EXPORT_SYMBOL vmlinux 0x8e267fd5 ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0x8e44269e mdio_device_free +EXPORT_SYMBOL vmlinux 0x8e46c3f0 vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0x8e46e4ce clk_bulk_get EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e5771d6 phy_mii_ioctl EXPORT_SYMBOL vmlinux 0x8e647fa9 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x8e6af34e security_dentry_init_security EXPORT_SYMBOL vmlinux 0x8e70531d nand_ecc_get_sw_engine EXPORT_SYMBOL vmlinux 0x8e8426a7 pci_enable_device EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops EXPORT_SYMBOL vmlinux 0x8e876807 rps_needed -EXPORT_SYMBOL vmlinux 0x8e93879e vlan_vid_add EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid EXPORT_SYMBOL vmlinux 0x8e9559d8 show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x8e984c4a vfs_rmdir -EXPORT_SYMBOL vmlinux 0x8eb022bb send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x8ea981ca netdev_set_num_tc EXPORT_SYMBOL vmlinux 0x8ebbaffe md_bitmap_close_sync EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk EXPORT_SYMBOL vmlinux 0x8edbfffb hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x8ee55da8 netdev_crit +EXPORT_SYMBOL vmlinux 0x8ee08eaf sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x8ee3db24 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x8ee45c79 of_mdio_find_bus EXPORT_SYMBOL vmlinux 0x8ee62ba2 may_setattr -EXPORT_SYMBOL vmlinux 0x8ef3d782 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x8efcf0a2 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x8efe0c8c sk_alloc EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f0b1c47 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0x8f16339f inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x8f056f9c fs_context_for_mount EXPORT_SYMBOL vmlinux 0x8f22a027 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x8f338b79 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x8f251a82 udp_gro_complete EXPORT_SYMBOL vmlinux 0x8f3396ba snd_ctl_free_one -EXPORT_SYMBOL vmlinux 0x8f344a6f vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x8f3a5127 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x8f471871 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x8f48a868 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x8f4c2ebd nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major +EXPORT_SYMBOL vmlinux 0x8f5b3ecb mmc_erase_group_aligned EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard -EXPORT_SYMBOL vmlinux 0x8f71d29f crypto_sha256_finup EXPORT_SYMBOL vmlinux 0x8f7e35d3 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x8f87a983 posix_test_lock EXPORT_SYMBOL vmlinux 0x8f8f657f bsearch EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode EXPORT_SYMBOL vmlinux 0x8fa4829a nand_ecc_sw_bch_cleanup_ctx EXPORT_SYMBOL vmlinux 0x8fc53445 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL vmlinux 0x8fc754c6 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x8fce7f40 neigh_carrier_down EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fdb4cdd security_sctp_bind_connect EXPORT_SYMBOL vmlinux 0x8fe35457 xxh32_update -EXPORT_SYMBOL vmlinux 0x8fe3e6f2 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x8fe51bc7 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x8fe57b7a filemap_check_errors +EXPORT_SYMBOL vmlinux 0x8febb836 disk_start_io_acct EXPORT_SYMBOL vmlinux 0x8ff59e06 scsi_is_sdev_device EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x9002793d __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x901ab328 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x9015fec3 mmc_command_done +EXPORT_SYMBOL vmlinux 0x901bf5f7 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x901f94a3 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x9025ae5e scm_fp_dup EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x903c07f4 ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0x903c82e1 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x9055dbfd tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x90475a65 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x904ac547 seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0x90604820 bioset_exit EXPORT_SYMBOL vmlinux 0x906f5252 dma_fence_enable_sw_signaling EXPORT_SYMBOL vmlinux 0x90735fa6 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL vmlinux 0x907b1e04 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x908baa82 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x9090949b inet_put_port EXPORT_SYMBOL vmlinux 0x909332ca register_sysctl -EXPORT_SYMBOL vmlinux 0x90b630c0 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x90c8f721 nonseekable_open -EXPORT_SYMBOL vmlinux 0x90f20e1c inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x9105f6fb dev_activate -EXPORT_SYMBOL vmlinux 0x9114f98f locks_delete_block -EXPORT_SYMBOL vmlinux 0x91196b81 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x9123108e napi_build_skb +EXPORT_SYMBOL vmlinux 0x911cb3a7 mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0x9135dba6 wait_for_completion_interruptible_timeout EXPORT_SYMBOL vmlinux 0x9138a259 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x9161aa51 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x9178194c flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x918458fc end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x913eeccf xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x91785104 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x9183c426 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x9186772b xfrm_init_state EXPORT_SYMBOL vmlinux 0x91872199 _page_poisoning_enabled EXPORT_SYMBOL vmlinux 0x91886efe dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x918a3a50 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x918f758c msm_pinctrl_remove EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91a8d54f xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x91a9c232 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x91aeb1cc ptp_clock_unregister EXPORT_SYMBOL vmlinux 0x91bdae71 pm860x_bulk_read EXPORT_SYMBOL vmlinux 0x91c01acd dm_kobject_release EXPORT_SYMBOL vmlinux 0x91c0481e dquot_set_dqinfo EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91c36bda tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x91cbf28a vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x91e0525f tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x91e2d05c proto_register +EXPORT_SYMBOL vmlinux 0x91f145e8 netdev_class_remove_file_ns EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x91ff6555 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x91fde35e kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x92051372 tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0x920b36b4 t10_pi_type3_ip EXPORT_SYMBOL vmlinux 0x921416e4 of_iomap EXPORT_SYMBOL vmlinux 0x921a7b9e __tracepoint_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x921b07b1 __cpu_online_mask EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x9231217e tcp_sendpage EXPORT_SYMBOL vmlinux 0x92351931 dma_sync_sg_for_cpu EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923ce173 skb_expand_head -EXPORT_SYMBOL vmlinux 0x924a438e gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0x924cfe79 open_with_fake_path -EXPORT_SYMBOL vmlinux 0x9256c5f1 icmp_ndo_send EXPORT_SYMBOL vmlinux 0x92997ed8 _printk EXPORT_SYMBOL vmlinux 0x929f9b2a t10_pi_type3_crc EXPORT_SYMBOL vmlinux 0x92a59c6b simple_pin_fs EXPORT_SYMBOL vmlinux 0x92a8e3ba key_put +EXPORT_SYMBOL vmlinux 0x92ad24ce dst_discard_out EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92bbd854 sock_cmsg_send EXPORT_SYMBOL vmlinux 0x92c7e2c0 blk_mq_stop_hw_queues 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 0x92def131 mr_table_alloc EXPORT_SYMBOL vmlinux 0x92e0abb8 seq_lseek EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92f2a3ab nvmem_get_mac_address EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach EXPORT_SYMBOL vmlinux 0x92fb8541 mipi_dsi_host_register EXPORT_SYMBOL vmlinux 0x9304a7d7 scsicam_bios_param EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x931d5e63 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x93124d65 fwnode_irq_get EXPORT_SYMBOL vmlinux 0x9321274e single_release EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x9322cb45 jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0x9325fd19 shmem_aops -EXPORT_SYMBOL vmlinux 0x9327b8ec sync_filesystem EXPORT_SYMBOL vmlinux 0x932afb7a nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x93484da9 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x93607617 read_code -EXPORT_SYMBOL vmlinux 0x9363aed6 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x93745b20 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x93576fce inet_sk_set_state EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93797b5e inode_permission +EXPORT_SYMBOL vmlinux 0x937d0763 blk_queue_flag_clear EXPORT_SYMBOL vmlinux 0x937e81f6 arm_coherent_dma_ops EXPORT_SYMBOL vmlinux 0x938247c1 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x938bc968 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x939524cb netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x938aab7c generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0x9398e07e fb_validate_mode -EXPORT_SYMBOL vmlinux 0x93a19771 tcp_getsockopt EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93a7ba88 sk_stop_timer EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93bb9711 mmc_cqe_start_req EXPORT_SYMBOL vmlinux 0x93ccc79b blk_mq_init_queue EXPORT_SYMBOL vmlinux 0x93d72d88 dqput +EXPORT_SYMBOL vmlinux 0x93dc8b9b devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0x93e099c3 xfrm4_rcv EXPORT_SYMBOL vmlinux 0x93e69a9b inc_node_page_state +EXPORT_SYMBOL vmlinux 0x93f6d67f seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0x93fe98fe mount_nodev EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list -EXPORT_SYMBOL vmlinux 0x941c600c vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x940fb42c bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x941952aa ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x94204e80 jbd2_journal_set_features EXPORT_SYMBOL vmlinux 0x942d854d elm_config -EXPORT_SYMBOL vmlinux 0x942f50b5 dev_add_pack -EXPORT_SYMBOL vmlinux 0x9435c9e6 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x942fdc1f mmc_start_request EXPORT_SYMBOL vmlinux 0x943dc8aa crc32_be -EXPORT_SYMBOL vmlinux 0x94400d9c vfs_rename +EXPORT_SYMBOL vmlinux 0x943ee30d netdev_get_xmit_slave EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x944edbaf __i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x9453e986 configfs_depend_item_unlocked EXPORT_SYMBOL vmlinux 0x945540f8 rpmh_write EXPORT_SYMBOL vmlinux 0x945eb81c add_device_randomness EXPORT_SYMBOL vmlinux 0x946b745e kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x94853ab9 mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0x9489ff36 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x948fe5ee kern_path EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94b7d281 phy_device_free +EXPORT_SYMBOL vmlinux 0x94a7f89f ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 EXPORT_SYMBOL vmlinux 0x94ca8ad2 input_grab_device -EXPORT_SYMBOL vmlinux 0x94cfe6ac _dev_warn -EXPORT_SYMBOL vmlinux 0x94cfe9b0 xsk_set_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x94d2b3ae unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x94db8f9f path_get +EXPORT_SYMBOL vmlinux 0x94e057d1 tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94f91fef dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x94ec3e61 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x94f5cb9c mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user EXPORT_SYMBOL vmlinux 0x950c96b7 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x950e813d __netif_schedule +EXPORT_SYMBOL vmlinux 0x9512729d flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0x95215007 snd_timer_pause -EXPORT_SYMBOL vmlinux 0x952e79a0 nf_setsockopt EXPORT_SYMBOL vmlinux 0x9535b244 pci_alloc_irq_vectors_affinity EXPORT_SYMBOL vmlinux 0x95368d33 memcg_kmem_enabled_key EXPORT_SYMBOL vmlinux 0x954a080c snd_timer_instance_new EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x954fb442 _dev_printk -EXPORT_SYMBOL vmlinux 0x957452f9 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x95882118 sock_i_uid -EXPORT_SYMBOL vmlinux 0x95a8404c skb_checksum_help +EXPORT_SYMBOL vmlinux 0x958e06ca netlink_set_err EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 EXPORT_SYMBOL vmlinux 0x95e5ca74 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x95e6436f ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x95f0650c tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x95f20cca cfb_fillrect EXPORT_SYMBOL vmlinux 0x9602414a dma_resv_reserve_shared EXPORT_SYMBOL vmlinux 0x96082295 d_mark_dontcache EXPORT_SYMBOL vmlinux 0x960c83f4 seq_release_private +EXPORT_SYMBOL vmlinux 0x9615d557 gro_cells_init EXPORT_SYMBOL vmlinux 0x9618ede0 mutex_unlock +EXPORT_SYMBOL vmlinux 0x962b1123 eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add EXPORT_SYMBOL vmlinux 0x9637ac1c copy_page_to_iter EXPORT_SYMBOL vmlinux 0x963e703f bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x96422163 skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0x9645ed0b pgprot_user +EXPORT_SYMBOL vmlinux 0x96525e08 mnt_set_expiry EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r EXPORT_SYMBOL vmlinux 0x965d334e padata_do_parallel EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg -EXPORT_SYMBOL vmlinux 0x96842522 phy_attached_print +EXPORT_SYMBOL vmlinux 0x96700c33 kill_pid +EXPORT_SYMBOL vmlinux 0x967ac738 tcp_seq_next EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac EXPORT_SYMBOL vmlinux 0x968ed5eb dquot_alloc -EXPORT_SYMBOL vmlinux 0x9694ee79 phy_init_hw +EXPORT_SYMBOL vmlinux 0x9693b350 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x9696f6da kern_path EXPORT_SYMBOL vmlinux 0x96a8a592 wait_for_key_construction EXPORT_SYMBOL vmlinux 0x96b876c6 of_get_nand_ecc_user_config -EXPORT_SYMBOL vmlinux 0x96b9845e pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode EXPORT_SYMBOL vmlinux 0x96c8811c blk_rq_map_user_iov EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string EXPORT_SYMBOL vmlinux 0x96cdf8a3 elv_rb_add -EXPORT_SYMBOL vmlinux 0x96d28157 dev_get_iflink EXPORT_SYMBOL vmlinux 0x96e18337 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x96eea40d mdiobus_read EXPORT_SYMBOL vmlinux 0x96f4d259 pci_map_rom +EXPORT_SYMBOL vmlinux 0x96fe9a96 ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0x9709dbc5 current_work EXPORT_SYMBOL vmlinux 0x970a131a max8998_read_reg EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x9710cbfd _dev_notice +EXPORT_SYMBOL vmlinux 0x97197552 phy_request_interrupt EXPORT_SYMBOL vmlinux 0x971a7c0c __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x971fc1f9 genphy_read_lpa EXPORT_SYMBOL vmlinux 0x97255bdf strlen EXPORT_SYMBOL vmlinux 0x972ea321 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x972f05bc key_move EXPORT_SYMBOL vmlinux 0x974d2ff1 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x974dabe3 dev_uc_del +EXPORT_SYMBOL vmlinux 0x97549788 phy_init_eee EXPORT_SYMBOL vmlinux 0x975f1f56 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x975fad57 __set_page_dirty_buffers EXPORT_SYMBOL vmlinux 0x97611201 proc_set_user +EXPORT_SYMBOL vmlinux 0x97615324 phy_support_asym_pause EXPORT_SYMBOL vmlinux 0x97655f72 d_alloc_anon EXPORT_SYMBOL vmlinux 0x977c967f get_acl -EXPORT_SYMBOL vmlinux 0x9788568c flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x9796afe0 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x977ed6b9 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x978eb7b1 twl6040_get_vibralr_status EXPORT_SYMBOL vmlinux 0x979bde91 pcim_pin_device -EXPORT_SYMBOL vmlinux 0x97a8cbaf __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x97a83984 phy_connect_direct EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b54c50 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x97b1d2ca ethtool_op_get_link EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list EXPORT_SYMBOL vmlinux 0x97c4b81b md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x97d6a079 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x97de280a tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0x97df58e5 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x97e75f5a skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x97ea4a5a phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x97d21bea in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x97da20f2 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x97ea03cf thread_group_exited +EXPORT_SYMBOL vmlinux 0x97f4150c dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x97f58e0d i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x98094fee xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x981b04f4 tcp_close EXPORT_SYMBOL vmlinux 0x9825a3a4 fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0x98351480 dcb_getapp +EXPORT_SYMBOL vmlinux 0x982b121b may_umount +EXPORT_SYMBOL vmlinux 0x9835e6d8 vme_master_request EXPORT_SYMBOL vmlinux 0x983ac031 remove_wait_queue EXPORT_SYMBOL vmlinux 0x984955ce dquot_alloc_inode EXPORT_SYMBOL vmlinux 0x9852addf rproc_detach EXPORT_SYMBOL vmlinux 0x9855d2f2 of_get_child_by_name EXPORT_SYMBOL vmlinux 0x9858f589 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x9864d878 __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x986baad1 ptp_schedule_worker EXPORT_SYMBOL vmlinux 0x9870d290 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x9879f76f inet6_getname EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset -EXPORT_SYMBOL vmlinux 0x98812651 __skb_ext_del EXPORT_SYMBOL vmlinux 0x98832da8 utf8ncursor -EXPORT_SYMBOL vmlinux 0x98864489 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0x988e4360 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x98963516 netdev_update_features EXPORT_SYMBOL vmlinux 0x98a21b5a neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x98af60fa lru_cache_add +EXPORT_SYMBOL vmlinux 0x98a27e8b tcf_block_put +EXPORT_SYMBOL vmlinux 0x98a8cd84 napi_gro_flush EXPORT_SYMBOL vmlinux 0x98b73a98 snd_ctl_remove EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x98ca3741 clear_inode EXPORT_SYMBOL vmlinux 0x98d059d1 register_sound_dsp EXPORT_SYMBOL vmlinux 0x98d21919 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x98d4280b crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x98e2e455 xfrm_input EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98f91cd4 netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0x98f25eba netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x98fc2514 twl6040_power EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x9912b845 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x99161cf4 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x9915de06 peernet2id EXPORT_SYMBOL vmlinux 0x992e8b76 mipi_dsi_dcs_exit_sleep_mode EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier EXPORT_SYMBOL vmlinux 0x993b03df percpu_counter_add_batch EXPORT_SYMBOL vmlinux 0x9949972b from_kuid_munged EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99560d5f xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x996829ea swake_up_all -EXPORT_SYMBOL vmlinux 0x998870a8 vme_register_error_handler EXPORT_SYMBOL vmlinux 0x99948a60 __kmap_to_page +EXPORT_SYMBOL vmlinux 0x9995d423 sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x999e8297 vfree EXPORT_SYMBOL vmlinux 0x99bb8806 memmove EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL vmlinux 0x99cca9fc __pagevec_release EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation EXPORT_SYMBOL vmlinux 0x99d8c8cb mdio_driver_register -EXPORT_SYMBOL vmlinux 0x99e3b461 finalize_exec EXPORT_SYMBOL vmlinux 0x99e65a60 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x99f41262 sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a2351ff call_fib_notifiers -EXPORT_SYMBOL vmlinux 0x9a39c459 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x9a47ebe0 phy_resume -EXPORT_SYMBOL vmlinux 0x9a581d4a flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x9a1f1bac audit_log_start EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a806d93 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x9a6b1c8a phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range EXPORT_SYMBOL vmlinux 0x9a89a7a3 proc_douintvec -EXPORT_SYMBOL vmlinux 0x9a9e2003 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x9a9ecf24 generic_perform_write EXPORT_SYMBOL vmlinux 0x9a9fa973 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x9aa88d4d __cancel_dirty_page EXPORT_SYMBOL vmlinux 0x9aa9cea4 trace_print_flags_seq_u64 EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ab0e081 create_empty_buffers EXPORT_SYMBOL vmlinux 0x9ab13281 param_set_long EXPORT_SYMBOL vmlinux 0x9ab98772 rawnand_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0x9ac2b043 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x9adbf904 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0x9adc78bd of_find_node_by_type EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit EXPORT_SYMBOL vmlinux 0x9ae51013 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0x9aecd081 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x9b036c98 __napi_schedule EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state EXPORT_SYMBOL vmlinux 0x9b1b7306 xxh64 -EXPORT_SYMBOL vmlinux 0x9b1df1d0 sock_common_recvmsg EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe EXPORT_SYMBOL vmlinux 0x9b25d84f param_set_short EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b5313b6 fd_install EXPORT_SYMBOL vmlinux 0x9b571029 d_lookup EXPORT_SYMBOL vmlinux 0x9b63ed69 input_get_keycode -EXPORT_SYMBOL vmlinux 0x9b682739 __sk_dst_check EXPORT_SYMBOL vmlinux 0x9b6ba97e snd_pcm_hw_param_first EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize EXPORT_SYMBOL vmlinux 0x9b721b81 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x9b72941a flow_rule_match_vlan EXPORT_SYMBOL vmlinux 0x9b7b724f tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x9b91160a inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x9bb31ebc netpoll_setup +EXPORT_SYMBOL vmlinux 0x9b81bbf7 genphy_read_status +EXPORT_SYMBOL vmlinux 0x9b83f9b2 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x9b8e6bd2 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x9baa0c3f read_code EXPORT_SYMBOL vmlinux 0x9bc6885d security_binder_transaction +EXPORT_SYMBOL vmlinux 0x9bdd2e9f jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x9bedccc5 netdev_name_node_alt_create +EXPORT_SYMBOL vmlinux 0x9bfbf436 vme_slave_request +EXPORT_SYMBOL vmlinux 0x9c0999be tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0x9c299cbc zpool_register_driver -EXPORT_SYMBOL vmlinux 0x9c32ab75 phy_find_first -EXPORT_SYMBOL vmlinux 0x9c3862fe console_start EXPORT_SYMBOL vmlinux 0x9c3e03e6 dput EXPORT_SYMBOL vmlinux 0x9c3ed517 dm_put_device EXPORT_SYMBOL vmlinux 0x9c466921 snd_card_register -EXPORT_SYMBOL vmlinux 0x9c4c33e9 ip_check_defrag EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs -EXPORT_SYMBOL vmlinux 0x9c5d0494 iw_handler_set_thrspy EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck EXPORT_SYMBOL vmlinux 0x9c6b9491 pci_fixup_device EXPORT_SYMBOL vmlinux 0x9c7419dc ZSTD_initDStream_usingDDict +EXPORT_SYMBOL vmlinux 0x9c80dad5 sock_alloc_file EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags EXPORT_SYMBOL vmlinux 0x9c9609bb seq_write -EXPORT_SYMBOL vmlinux 0x9ca1738a inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x9caa2c20 default_qdisc_ops EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9ce7a3c7 tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0x9cefab26 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x9cf0eb8d inet_listen +EXPORT_SYMBOL vmlinux 0x9cf196de inet_frag_destroy EXPORT_SYMBOL vmlinux 0x9d06ac33 free_bucket_spinlocks EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d0f8904 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x9d13dbfe mmc_detect_change EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key EXPORT_SYMBOL vmlinux 0x9d308ebb pci_msix_vec_count EXPORT_SYMBOL vmlinux 0x9d3d9cb6 kunmap_high -EXPORT_SYMBOL vmlinux 0x9d488a23 vme_register_driver -EXPORT_SYMBOL vmlinux 0x9d52e5e1 generic_write_end +EXPORT_SYMBOL vmlinux 0x9d451041 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x9d5049a2 nlmsg_notify EXPORT_SYMBOL vmlinux 0x9d565384 pci_wake_from_d3 EXPORT_SYMBOL vmlinux 0x9d5cd559 reservation_ww_class EXPORT_SYMBOL vmlinux 0x9d669763 memcpy EXPORT_SYMBOL vmlinux 0x9d6a4984 blk_cleanup_disk -EXPORT_SYMBOL vmlinux 0x9d75b1b1 submit_bh +EXPORT_SYMBOL vmlinux 0x9d74f6f4 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x9d7ac1a3 tcp_mtup_init EXPORT_SYMBOL vmlinux 0x9d81208e nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x9d95ae0e __netdev_notify_peers EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context +EXPORT_SYMBOL vmlinux 0x9d9f8b03 vlan_uses_dev EXPORT_SYMBOL vmlinux 0x9da5f6a9 nd_btt_version -EXPORT_SYMBOL vmlinux 0x9daee6f6 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x9dafe65f __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x9dbb11cd xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x9dd94ed4 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x9db2eec8 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x9dc54f9a unregister_filesystem EXPORT_SYMBOL vmlinux 0x9ddcadef tty_insert_flip_string_fixed_flag EXPORT_SYMBOL vmlinux 0x9de96a7b of_graph_get_endpoint_count -EXPORT_SYMBOL vmlinux 0x9df205f1 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x9e022d5b ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e32ae49 __lock_buffer -EXPORT_SYMBOL vmlinux 0x9e436342 unlock_buffer +EXPORT_SYMBOL vmlinux 0x9e150ecf netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x9e18b520 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x9e198aa2 mmc_erase EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e57568d sock_rfree EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e65c81f sk_dst_check +EXPORT_SYMBOL vmlinux 0x9e688c26 proto_register EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str EXPORT_SYMBOL vmlinux 0x9e6f5d9c nand_ecc_finish_io_req -EXPORT_SYMBOL vmlinux 0x9e82282e __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x9e70343c inet_frag_find EXPORT_SYMBOL vmlinux 0x9e9a9cb4 trace_print_hex_seq EXPORT_SYMBOL vmlinux 0x9e9baf4e pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0x9e9e018a snd_pcm_set_sync EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eb11105 noop_qdisc EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 EXPORT_SYMBOL vmlinux 0x9ed2976e fscrypt_free_bounce_page EXPORT_SYMBOL vmlinux 0x9ed92881 phy_write_paged EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9edae3e5 phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x9ee3f4ad qdisc_reset EXPORT_SYMBOL vmlinux 0x9ee5b497 import_single_range EXPORT_SYMBOL vmlinux 0x9ee9cddf devm_request_threaded_irq EXPORT_SYMBOL vmlinux 0x9efa5089 pci_ep_cfs_add_epc_group EXPORT_SYMBOL vmlinux 0x9f15234a input_open_device -EXPORT_SYMBOL vmlinux 0x9f1a6202 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x9f29daab nobh_truncate_page EXPORT_SYMBOL vmlinux 0x9f31bd85 fb_pan_display +EXPORT_SYMBOL vmlinux 0x9f32071c generic_file_mmap +EXPORT_SYMBOL vmlinux 0x9f42ab8d flow_rule_match_control EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy EXPORT_SYMBOL vmlinux 0x9f55f619 tty_wait_until_sent EXPORT_SYMBOL vmlinux 0x9f70a909 pci_match_id EXPORT_SYMBOL vmlinux 0x9f7ae060 node_states +EXPORT_SYMBOL vmlinux 0x9f7c82e3 submit_bh +EXPORT_SYMBOL vmlinux 0x9f96df01 devfreq_suspend_device EXPORT_SYMBOL vmlinux 0x9f984513 strrchr EXPORT_SYMBOL vmlinux 0x9f98f362 blk_mq_tagset_wait_completed_request EXPORT_SYMBOL vmlinux 0x9f9cc597 blk_queue_update_dma_alignment EXPORT_SYMBOL vmlinux 0x9fb5e658 snd_mixer_oss_notify_callback EXPORT_SYMBOL vmlinux 0x9fd02194 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x9fd7c7c8 tcp_make_synack EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce EXPORT_SYMBOL vmlinux 0x9fef8cf5 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x9ff31f68 security_sb_remount EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog EXPORT_SYMBOL vmlinux 0xa0133f9a cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0xa0175325 sdev_enable_disk_events EXPORT_SYMBOL vmlinux 0xa017ff6b rproc_coredump_set_elf_info EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 EXPORT_SYMBOL vmlinux 0xa02082e8 mipi_dsi_dcs_write_buffer EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa0408972 nf_log_register +EXPORT_SYMBOL vmlinux 0xa039816d __bread_gfp EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04b4eac mntget +EXPORT_SYMBOL vmlinux 0xa046e632 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xa049571d jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh +EXPORT_SYMBOL vmlinux 0xa04fdb22 inet6_csk_route_req EXPORT_SYMBOL vmlinux 0xa051b194 rtc_add_groups EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa05e4fd3 ip_options_compile EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r EXPORT_SYMBOL vmlinux 0xa071249b scsi_kmap_atomic_sg EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup EXPORT_SYMBOL vmlinux 0xa0815988 param_ops_ullong EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa09773f3 sock_no_sendpage_locked EXPORT_SYMBOL vmlinux 0xa09cae68 tty_register_ldisc EXPORT_SYMBOL vmlinux 0xa0adaf92 generic_key_instantiate EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0aefe3e bit_waitqueue EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b8fbbd ip_frag_next -EXPORT_SYMBOL vmlinux 0xa0cc13da phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xa0cd4e8c iptun_encaps +EXPORT_SYMBOL vmlinux 0xa0c4b6bd __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xa0d4e588 security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e1fb8b __wait_on_buffer EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check @@ -9349,354 +9266,339 @@ EXPORT_SYMBOL vmlinux 0xa0f9fc36 of_find_property EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max EXPORT_SYMBOL vmlinux 0xa113e510 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xa120bb07 vfs_link -EXPORT_SYMBOL vmlinux 0xa1221567 tcf_exts_dump EXPORT_SYMBOL vmlinux 0xa127baa7 set_blocksize -EXPORT_SYMBOL vmlinux 0xa12b828e sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xa1294ec8 ptp_clock_register EXPORT_SYMBOL vmlinux 0xa12dcf00 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0xa132ed99 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xa140837f tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xa13c8228 ipv6_dev_get_saddr EXPORT_SYMBOL vmlinux 0xa1465787 empty_zero_page +EXPORT_SYMBOL vmlinux 0xa14fe069 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0xa15d0131 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xa166d601 i2c_transfer -EXPORT_SYMBOL vmlinux 0xa166fb76 mmc_can_trim EXPORT_SYMBOL vmlinux 0xa16b21fb wait_for_completion_timeout EXPORT_SYMBOL vmlinux 0xa17bd3fc add_wait_queue -EXPORT_SYMBOL vmlinux 0xa1996b0c xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xa1b7de78 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xa1ba5570 scsi_host_get +EXPORT_SYMBOL vmlinux 0xa192e614 ethtool_notify EXPORT_SYMBOL vmlinux 0xa1bacd91 qcom_scm_set_cold_boot_addr EXPORT_SYMBOL vmlinux 0xa1d131ed vmemdup_user -EXPORT_SYMBOL vmlinux 0xa1d2d01d setup_new_exec EXPORT_SYMBOL vmlinux 0xa1e5c480 rproc_report_crash +EXPORT_SYMBOL vmlinux 0xa1e8b2fd dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xa1ecc960 ip_frag_next +EXPORT_SYMBOL vmlinux 0xa1ef770d __dev_kfree_skb_irq EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort EXPORT_SYMBOL vmlinux 0xa24491bf ida_free EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte EXPORT_SYMBOL vmlinux 0xa261741f bdev_check_media_change -EXPORT_SYMBOL vmlinux 0xa261b120 inet6_add_protocol EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa2729ad0 sock_init_data +EXPORT_SYMBOL vmlinux 0xa2700647 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xa279ce91 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xa27df84c iw_handler_set_spy EXPORT_SYMBOL vmlinux 0xa2851144 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xa28aa004 get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active EXPORT_SYMBOL vmlinux 0xa2994aba snd_ctl_register_ioctl -EXPORT_SYMBOL vmlinux 0xa2b5ccb7 sk_common_release +EXPORT_SYMBOL vmlinux 0xa2a0573c __lock_buffer EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2ed19bd tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xa2eed51e mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xa2dd99de neigh_table_clear EXPORT_SYMBOL vmlinux 0xa2fd4b46 user_revoke -EXPORT_SYMBOL vmlinux 0xa30ffa58 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xa30baac4 of_get_mac_address EXPORT_SYMBOL vmlinux 0xa31146ec iov_iter_alignment EXPORT_SYMBOL vmlinux 0xa319a1d5 amba_driver_unregister -EXPORT_SYMBOL vmlinux 0xa329a434 __brelse +EXPORT_SYMBOL vmlinux 0xa3399866 of_device_register EXPORT_SYMBOL vmlinux 0xa33a4d88 mark_info_dirty -EXPORT_SYMBOL vmlinux 0xa33d4274 skb_ensure_writable EXPORT_SYMBOL vmlinux 0xa342bee1 pps_lookup_dev EXPORT_SYMBOL vmlinux 0xa3471b92 seq_path -EXPORT_SYMBOL vmlinux 0xa3722f24 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xa3858c97 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xa3518f33 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xa36466db tcf_block_get +EXPORT_SYMBOL vmlinux 0xa3783deb tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xa3794e95 vfs_statfs EXPORT_SYMBOL vmlinux 0xa38ed292 of_match_node EXPORT_SYMBOL vmlinux 0xa3a54979 init_on_free -EXPORT_SYMBOL vmlinux 0xa3a82250 vfs_mkdir -EXPORT_SYMBOL vmlinux 0xa3a87ca5 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0xa3a9283a pci_assign_resource EXPORT_SYMBOL vmlinux 0xa3ba27bf vme_free_consistent -EXPORT_SYMBOL vmlinux 0xa3bde0ac security_task_getsecid_subj EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch EXPORT_SYMBOL vmlinux 0xa3c00c06 memcg_sockets_enabled_key -EXPORT_SYMBOL vmlinux 0xa3c15625 tcf_register_action -EXPORT_SYMBOL vmlinux 0xa3cac629 vme_init_bridge -EXPORT_SYMBOL vmlinux 0xa3ceb8a2 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0xa3d43c2f inet_frags_init +EXPORT_SYMBOL vmlinux 0xa3d96ddf phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xa3dfab68 inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa40990d2 netdev_warn -EXPORT_SYMBOL vmlinux 0xa411a6ac inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xa412daed dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xa4093a19 vfs_fadvise +EXPORT_SYMBOL vmlinux 0xa41cb400 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xa42a52a5 tcf_action_exec EXPORT_SYMBOL vmlinux 0xa43799a8 rfs_needed EXPORT_SYMBOL vmlinux 0xa4460fa6 input_release_device EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key EXPORT_SYMBOL vmlinux 0xa44a0415 key_validate EXPORT_SYMBOL vmlinux 0xa4552208 init_on_alloc EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev -EXPORT_SYMBOL vmlinux 0xa4633080 inet_csk_accept EXPORT_SYMBOL vmlinux 0xa467eed3 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xa46deb1f dev_uc_del EXPORT_SYMBOL vmlinux 0xa48d3407 blk_mq_stop_hw_queue EXPORT_SYMBOL vmlinux 0xa48f6eb6 of_get_cpu_node EXPORT_SYMBOL vmlinux 0xa494e3a1 dev_pm_opp_register_notifier EXPORT_SYMBOL vmlinux 0xa4976c58 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xa4a3530c neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xa4a4b4e0 devm_of_clk_del_provider -EXPORT_SYMBOL vmlinux 0xa4af2a2c netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xa49eac2e __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xa4ae75eb logfc EXPORT_SYMBOL vmlinux 0xa4b1291a padata_free EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority EXPORT_SYMBOL vmlinux 0xa4b7f2cc sync_file_get_fence EXPORT_SYMBOL vmlinux 0xa4d09468 md_register_thread +EXPORT_SYMBOL vmlinux 0xa4ee7c86 scsi_vpd_lun_id EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock +EXPORT_SYMBOL vmlinux 0xa505707b vme_dma_list_exec EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit EXPORT_SYMBOL vmlinux 0xa50e3029 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0xa51a0221 pipe_unlock +EXPORT_SYMBOL vmlinux 0xa52c4768 lookup_one_len_unlocked EXPORT_SYMBOL vmlinux 0xa52d6316 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0xa5308022 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xa53b5eac ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xa5425971 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0xa54af7f0 d_set_fallthru -EXPORT_SYMBOL vmlinux 0xa54da1c2 i2c_verify_client EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color EXPORT_SYMBOL vmlinux 0xa5557161 dm_get_device EXPORT_SYMBOL vmlinux 0xa558398f of_find_node_by_phandle EXPORT_SYMBOL vmlinux 0xa5684076 ida_alloc_range EXPORT_SYMBOL vmlinux 0xa56fde1c __genradix_iter_peek EXPORT_SYMBOL vmlinux 0xa5703080 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0xa58a0d36 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0xa58a23c5 mmput_async -EXPORT_SYMBOL vmlinux 0xa59a4f5b vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xa573e984 inode_io_list_del EXPORT_SYMBOL vmlinux 0xa5a87968 simple_rename EXPORT_SYMBOL vmlinux 0xa5a91711 _raw_write_lock_bh EXPORT_SYMBOL vmlinux 0xa5abbb02 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0xa5b65fc3 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0xa5b70e10 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0xa5d59c48 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xa5c71b63 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xa5cc0878 mntget +EXPORT_SYMBOL vmlinux 0xa5d3d2d1 vme_irq_free EXPORT_SYMBOL vmlinux 0xa5ecba9b dma_free_attrs EXPORT_SYMBOL vmlinux 0xa6052859 kthread_create_on_node EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa6282c98 scsi_alloc_sgtables EXPORT_SYMBOL vmlinux 0xa62caf46 param_set_int -EXPORT_SYMBOL vmlinux 0xa63a3fc3 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xa63e0018 twl6040_set_pll EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds -EXPORT_SYMBOL vmlinux 0xa6542b85 skb_copy_bits -EXPORT_SYMBOL vmlinux 0xa657b78b netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0xa65b9d2a km_state_expired +EXPORT_SYMBOL vmlinux 0xa65c2003 netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0xa6633585 file_modified -EXPORT_SYMBOL vmlinux 0xa66bd729 jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0xa66c15e0 __mdiobus_write +EXPORT_SYMBOL vmlinux 0xa66bd24f filemap_fdatawait_range_keep_errors EXPORT_SYMBOL vmlinux 0xa6731c1c padata_free_shell EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid EXPORT_SYMBOL vmlinux 0xa68613dd get_jiffies_64 +EXPORT_SYMBOL vmlinux 0xa68a3867 skb_dump EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa69819bc secpath_set -EXPORT_SYMBOL vmlinux 0xa699c227 of_clk_get_by_name EXPORT_SYMBOL vmlinux 0xa69d151c _raw_write_lock +EXPORT_SYMBOL vmlinux 0xa6a1f0b3 fddi_type_trans EXPORT_SYMBOL vmlinux 0xa6a393be posix_acl_valid EXPORT_SYMBOL vmlinux 0xa6a7a2ad div_s64_rem +EXPORT_SYMBOL vmlinux 0xa6ab5308 phy_disconnect +EXPORT_SYMBOL vmlinux 0xa6c8eb60 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xa6d7b61d qdisc_reset +EXPORT_SYMBOL vmlinux 0xa6e2bba7 sk_capable +EXPORT_SYMBOL vmlinux 0xa6e710e7 jbd2_journal_init_inode EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa7110305 vfs_getattr_nosec EXPORT_SYMBOL vmlinux 0xa714758e sg_copy_buffer EXPORT_SYMBOL vmlinux 0xa7154fc7 remove_proc_subtree EXPORT_SYMBOL vmlinux 0xa71f5afb nd_region_acquire_lane EXPORT_SYMBOL vmlinux 0xa72957cc __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0xa72c3229 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xa72ecb11 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0xa7331f4e tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xa738779b sock_wfree +EXPORT_SYMBOL vmlinux 0xa72d24d7 __scsi_add_device EXPORT_SYMBOL vmlinux 0xa73ee62b _atomic_dec_and_lock EXPORT_SYMBOL vmlinux 0xa74745f1 do_SAK -EXPORT_SYMBOL vmlinux 0xa74bf75f ip_sock_set_tos EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa7537b0f sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xa74cbb49 of_mdiobus_child_is_phy EXPORT_SYMBOL vmlinux 0xa75716a4 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xa76d88da set_create_files_as +EXPORT_SYMBOL vmlinux 0xa75beef4 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xa763902b _dev_alert +EXPORT_SYMBOL vmlinux 0xa76e3d7a mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0xa770b801 bio_kmalloc +EXPORT_SYMBOL vmlinux 0xa77b6f45 dev_mc_init EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier EXPORT_SYMBOL vmlinux 0xa77f4e00 pcie_port_service_register EXPORT_SYMBOL vmlinux 0xa78a65d7 dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0xa78d4499 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xa7a26919 no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0xa7a7646a ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xa7b17ed5 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0xa7b2690d napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xa796efbe close_fd_get_file EXPORT_SYMBOL vmlinux 0xa7b3181c up_read EXPORT_SYMBOL vmlinux 0xa7b79985 component_match_add_release EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7f765d0 nf_log_trace EXPORT_SYMBOL vmlinux 0xa80acb56 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xa8109c8b inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xa82586ff rt6_lookup +EXPORT_SYMBOL vmlinux 0xa8192d45 jbd2_journal_extend EXPORT_SYMBOL vmlinux 0xa82f4253 snd_pcm_release_substream +EXPORT_SYMBOL vmlinux 0xa8348f4d sock_register +EXPORT_SYMBOL vmlinux 0xa839af31 xp_can_alloc +EXPORT_SYMBOL vmlinux 0xa83f540b netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84c4825 devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa8635e68 of_mdio_find_bus EXPORT_SYMBOL vmlinux 0xa8739b7b devm_backlight_device_register EXPORT_SYMBOL vmlinux 0xa8955d97 dm_table_get_size EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr EXPORT_SYMBOL vmlinux 0xa8a08caf trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xa8a27d5c sk_mc_loop EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8c132a0 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0xa8a8ce2e __scm_destroy +EXPORT_SYMBOL vmlinux 0xa8b66b0a scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xa8c3aaee mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xa8c3f8cd __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xa8ca2e0b sock_no_ioctl EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all EXPORT_SYMBOL vmlinux 0xa8cacd29 snd_jack_set_key -EXPORT_SYMBOL vmlinux 0xa8d40868 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xa8d01a26 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xa8d0f626 proto_unregister +EXPORT_SYMBOL vmlinux 0xa8e10de4 ip_setsockopt EXPORT_SYMBOL vmlinux 0xa8ec7d34 crc_ccitt EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table EXPORT_SYMBOL vmlinux 0xa8f7f280 idr_get_next_ul EXPORT_SYMBOL vmlinux 0xa917108e snd_ctl_notify -EXPORT_SYMBOL vmlinux 0xa92ee4c8 netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0xa934d316 starget_for_each_device -EXPORT_SYMBOL vmlinux 0xa941edad xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xa91fcecc readahead_expand +EXPORT_SYMBOL vmlinux 0xa9441aaf dev_trans_start EXPORT_SYMBOL vmlinux 0xa946ab70 max8925_reg_write -EXPORT_SYMBOL vmlinux 0xa94df9e4 ip_route_input_noref EXPORT_SYMBOL vmlinux 0xa950975a register_key_type -EXPORT_SYMBOL vmlinux 0xa95bcfea sock_no_sendpage_locked EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa96ce933 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xa9694ca5 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xa96e5c0b inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap EXPORT_SYMBOL vmlinux 0xa9853496 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xa988280b nobh_writepage -EXPORT_SYMBOL vmlinux 0xa98e6a7e sk_ns_capable -EXPORT_SYMBOL vmlinux 0xa99adb84 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xa989bcd6 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0xa98c6ab0 ipmr_rule_default EXPORT_SYMBOL vmlinux 0xa99d57b7 frontswap_register_ops EXPORT_SYMBOL vmlinux 0xa9a20130 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xa9d08c78 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xa9b2adf1 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xa9b8c9bd ipv6_push_frag_opts EXPORT_SYMBOL vmlinux 0xa9d2143f snd_register_device +EXPORT_SYMBOL vmlinux 0xa9d71396 rtnl_create_link EXPORT_SYMBOL vmlinux 0xa9d8f2b2 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xa9d9214f tcf_qevent_init -EXPORT_SYMBOL vmlinux 0xa9eea033 phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0xa9fc0ed9 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0xaa0307d8 __skb_checksum +EXPORT_SYMBOL vmlinux 0xaa0bf87f __block_write_full_page +EXPORT_SYMBOL vmlinux 0xaa0dab34 dev_change_proto_down_generic EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa22eb2a skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xaa33d8bd skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0xaa42e16a gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0xaa4adb91 fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0xaa5829c9 phy_connect -EXPORT_SYMBOL vmlinux 0xaa5c58bf generic_listxattr +EXPORT_SYMBOL vmlinux 0xaa4a8bb5 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xaa4c1a3f dev_deactivate EXPORT_SYMBOL vmlinux 0xaa5f103d mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xaa651ade scsi_device_set_state EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa76bcd5 skb_unlink +EXPORT_SYMBOL vmlinux 0xaa7901e1 tcf_block_get_ext EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb EXPORT_SYMBOL vmlinux 0xaa814645 snd_pcm_hw_param_last -EXPORT_SYMBOL vmlinux 0xaa99e26e sock_release EXPORT_SYMBOL vmlinux 0xaaa2a842 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0xaaa31439 submit_bio_noacct EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change EXPORT_SYMBOL vmlinux 0xaacc9e27 sort EXPORT_SYMBOL vmlinux 0xaace9948 pci_dev_get EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad32104 flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function EXPORT_SYMBOL vmlinux 0xaaf3f207 input_mt_drop_unused EXPORT_SYMBOL vmlinux 0xaaf9f3ce devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0xaafa4c1e __icmp_send EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab13b3be tcp_sendpage EXPORT_SYMBOL vmlinux 0xab1d21ec kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xab2b01b4 datagram_poll +EXPORT_SYMBOL vmlinux 0xab221340 udp_seq_next EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3890b4 amba_request_regions EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab4b42e1 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xab55c4be netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xab5c5fef netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab6ad2cb rawv6_mh_filter_register EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab81a91a devfreq_resume_device -EXPORT_SYMBOL vmlinux 0xab8efaf9 blk_get_queue -EXPORT_SYMBOL vmlinux 0xab9bf395 set_user_nice -EXPORT_SYMBOL vmlinux 0xabd882a7 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xabdb7f46 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xab7a3e2a qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xab92fa33 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xab9e4fea may_umount_tree +EXPORT_SYMBOL vmlinux 0xaba889fc vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xabae6107 vme_dma_list_add EXPORT_SYMBOL vmlinux 0xabddd12e snd_register_oss_device EXPORT_SYMBOL vmlinux 0xabe60bf7 pci_enable_device_io EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s EXPORT_SYMBOL vmlinux 0xac12d2b8 param_ops_byte EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1cb613 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xac2d7a43 nf_hook_slow EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac402fcc pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xac42ef14 vfs_fileattr_get EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL vmlinux 0xac474684 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xac546b3f would_dump -EXPORT_SYMBOL vmlinux 0xac5fa773 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xac4989d0 __netlink_kernel_create EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac613194 generic_pipe_buf_get EXPORT_SYMBOL vmlinux 0xac61eb1b pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0xac62b661 blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0xac861335 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0xaca3199e netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0xaca7d174 phy_config_aneg EXPORT_SYMBOL vmlinux 0xacaa5e97 snd_pcm_set_managed_buffer EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacbb545d ip_ct_attach -EXPORT_SYMBOL vmlinux 0xacbbe3b0 mmc_of_parse EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xace72ca1 secpath_set EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad131b3c tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0xad2bba55 mmc_remove_host -EXPORT_SYMBOL vmlinux 0xad414539 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xad1aaf6d netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xad527b55 netlink_rcv_skb EXPORT_SYMBOL vmlinux 0xad54fcb3 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xad602904 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xad6a9b24 inet6_del_offload EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad75497d locks_copy_lock EXPORT_SYMBOL vmlinux 0xad814abf snd_pcm_set_managed_buffer_all EXPORT_SYMBOL vmlinux 0xad8b79cb rawnand_sw_hamming_calculate -EXPORT_SYMBOL vmlinux 0xad93cfd4 mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xada6ea1c genl_notify EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final EXPORT_SYMBOL vmlinux 0xadb20fcc dec_zone_page_state EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc36c63 inet_protos EXPORT_SYMBOL vmlinux 0xadc5d76b __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xadcdeb42 inet_frag_pull_head 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 0xadd9e44e pci_clear_master -EXPORT_SYMBOL vmlinux 0xade16755 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xade37af9 __scsi_print_sense EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae00a6ca rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae09c9d1 udp_read_sock +EXPORT_SYMBOL vmlinux 0xae098d5d xsk_set_tx_need_wakeup EXPORT_SYMBOL vmlinux 0xae1f2c0a cdev_device_del +EXPORT_SYMBOL vmlinux 0xae2b6e14 dev_get_by_name EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae351fe4 sk_ns_capable EXPORT_SYMBOL vmlinux 0xae353d77 arm_copy_from_user EXPORT_SYMBOL vmlinux 0xae577d60 _raw_spin_lock EXPORT_SYMBOL vmlinux 0xae60c3de nd_device_unregister EXPORT_SYMBOL vmlinux 0xae748928 nand_ecc_is_strong_enough -EXPORT_SYMBOL vmlinux 0xae86b23d skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xae933429 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0xae94b44a flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0xae77ee26 neigh_destroy EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaeaeefa0 open_exec -EXPORT_SYMBOL vmlinux 0xaebfc771 release_sock EXPORT_SYMBOL vmlinux 0xaec3229f tty_port_close_start -EXPORT_SYMBOL vmlinux 0xaeda3059 security_sk_clone +EXPORT_SYMBOL vmlinux 0xaed11852 security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0xaed3fbe0 __check_sticky EXPORT_SYMBOL vmlinux 0xaedc2a45 param_ops_ulong EXPORT_SYMBOL vmlinux 0xaee332e8 __dquot_alloc_space EXPORT_SYMBOL vmlinux 0xaee95991 ZSTD_getDictID_fromFrame EXPORT_SYMBOL vmlinux 0xaeef9a0a tty_write_room +EXPORT_SYMBOL vmlinux 0xaf0e9949 wake_up_process EXPORT_SYMBOL vmlinux 0xaf16f615 ZSTD_DStreamOutSize EXPORT_SYMBOL vmlinux 0xaf178184 textsearch_prepare EXPORT_SYMBOL vmlinux 0xaf232608 md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xaf32cb68 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0xaf2c8c3f fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level EXPORT_SYMBOL vmlinux 0xaf3e159f __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xaf3e88a8 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xaf5035b4 mmc_card_is_blockaddr EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality EXPORT_SYMBOL vmlinux 0xaf5ab100 __free_pages -EXPORT_SYMBOL vmlinux 0xaf5d75ed dentry_open +EXPORT_SYMBOL vmlinux 0xaf5d7d08 jbd2_complete_transaction EXPORT_SYMBOL vmlinux 0xaf5ff903 tty_port_open -EXPORT_SYMBOL vmlinux 0xaf79deb6 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xaf7b5a36 phy_set_sym_pause EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 EXPORT_SYMBOL vmlinux 0xaf89f5c4 blk_pre_runtime_suspend EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev +EXPORT_SYMBOL vmlinux 0xaf9330b5 nf_register_sockopt EXPORT_SYMBOL vmlinux 0xaf9a0a2a radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0xafa6b4e7 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xafaa7005 km_state_notify -EXPORT_SYMBOL vmlinux 0xafb12f39 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xafbc6c51 skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafc60e91 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0xafc65d66 alloc_fcdev -EXPORT_SYMBOL vmlinux 0xafc7800d gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xafcd4764 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xafec326a mntput -EXPORT_SYMBOL vmlinux 0xb00fd25f tso_count_descs +EXPORT_SYMBOL vmlinux 0xafcd1854 kernel_recvmsg EXPORT_SYMBOL vmlinux 0xb011eae1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb013f3ef ipv6_select_ident EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb01fa8fd follow_pfn EXPORT_SYMBOL vmlinux 0xb02c3d1b mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xb0380755 vme_irq_request +EXPORT_SYMBOL vmlinux 0xb02fa2de __sk_mem_reduce_allocated EXPORT_SYMBOL vmlinux 0xb03c4584 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0xb0553494 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0xb057185a of_device_unregister EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats +EXPORT_SYMBOL vmlinux 0xb05dd661 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0xb05e312b rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0xb05fbf34 poll_freewait EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max EXPORT_SYMBOL vmlinux 0xb06c97f2 con_set_default_unimap EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation @@ -9704,118 +9606,109 @@ EXPORT_SYMBOL vmlinux 0xb0a3c5d2 trace_print_symbols_seq EXPORT_SYMBOL vmlinux 0xb0b7cc37 deactivate_super EXPORT_SYMBOL vmlinux 0xb0cfd75c pci_bus_write_config_word EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e14c30 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0xb0e4d04a skb_seq_read EXPORT_SYMBOL vmlinux 0xb0e95837 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0xb0fd5456 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xb0ecb96c lookup_one_len +EXPORT_SYMBOL vmlinux 0xb0fed0f4 mmc_can_discard EXPORT_SYMBOL vmlinux 0xb1008110 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xb10a0f0a ppp_unit_number +EXPORT_SYMBOL vmlinux 0xb10c8142 filemap_range_has_page EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb110a6e0 xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0xb1201aad rproc_set_firmware EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb128fef6 skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb12ed4d9 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xb1381ed5 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xb12d1622 vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb177bdbc nf_ct_attach -EXPORT_SYMBOL vmlinux 0xb1a2141d netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xb165ff07 jbd2_journal_abort EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc +EXPORT_SYMBOL vmlinux 0xb1bdd0f8 touch_buffer EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress EXPORT_SYMBOL vmlinux 0xb1c8eba3 snd_ctl_notify_one -EXPORT_SYMBOL vmlinux 0xb1cfc669 begin_new_exec EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug -EXPORT_SYMBOL vmlinux 0xb1da4309 scsi_command_normalize_sense EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1eb16c1 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xb22a139e nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0xb22cc788 iov_iter_discard EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload EXPORT_SYMBOL vmlinux 0xb23493c9 register_sound_special_device -EXPORT_SYMBOL vmlinux 0xb244bf6a dev_mc_del_global EXPORT_SYMBOL vmlinux 0xb249a391 omap_request_dma -EXPORT_SYMBOL vmlinux 0xb2719b87 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xb24e5f41 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xb27a6b4e unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0xb286c477 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0xb2b037eb vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xb2c63e1d dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xb2b2ba8d keyring_clear +EXPORT_SYMBOL vmlinux 0xb2b93a4d unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on EXPORT_SYMBOL vmlinux 0xb2d7ff06 proc_create_seq_private EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL vmlinux 0xb2f2a171 dev_graft_qdisc EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken EXPORT_SYMBOL vmlinux 0xb30b71e3 insert_inode_locked EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set EXPORT_SYMBOL vmlinux 0xb3135dfe cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xb31498b3 sk_error_report +EXPORT_SYMBOL vmlinux 0xb31feef1 tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one -EXPORT_SYMBOL vmlinux 0xb3225ae9 xfrm4_rcv EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init EXPORT_SYMBOL vmlinux 0xb33d80dc snd_ctl_add EXPORT_SYMBOL vmlinux 0xb34be1d1 kthread_stop -EXPORT_SYMBOL vmlinux 0xb34d46c1 inet_frags_fini EXPORT_SYMBOL vmlinux 0xb3517076 fb_set_var -EXPORT_SYMBOL vmlinux 0xb3541ad9 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0xb35e1118 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xb35f5807 try_to_release_page EXPORT_SYMBOL vmlinux 0xb3667805 dqstats EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock EXPORT_SYMBOL vmlinux 0xb375c2d7 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0xb37aeeeb __dev_get_by_flags EXPORT_SYMBOL vmlinux 0xb37f944e empty_aops EXPORT_SYMBOL vmlinux 0xb3aa741b rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0xb3bb43f3 build_skb +EXPORT_SYMBOL vmlinux 0xb3ad2187 phy_suspend +EXPORT_SYMBOL vmlinux 0xb3b43c36 jbd2_journal_forget EXPORT_SYMBOL vmlinux 0xb3bc5fe9 pci_irq_vector EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d5b1a1 kmem_cache_shrink EXPORT_SYMBOL vmlinux 0xb3d8850c pcie_set_mps -EXPORT_SYMBOL vmlinux 0xb3d9f81b ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xb3effab9 update_devfreq EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop EXPORT_SYMBOL vmlinux 0xb3f8cd1a vma_set_file +EXPORT_SYMBOL vmlinux 0xb4060f8d __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0xb411935e md_unregister_thread EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked EXPORT_SYMBOL vmlinux 0xb4471bfe down_trylock -EXPORT_SYMBOL vmlinux 0xb4485130 dev_change_carrier EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem EXPORT_SYMBOL vmlinux 0xb4609794 unregister_key_type -EXPORT_SYMBOL vmlinux 0xb4714e9b generic_file_llseek EXPORT_SYMBOL vmlinux 0xb476c8f4 ZSTD_decompress_usingDict EXPORT_SYMBOL vmlinux 0xb47aa5e4 __frontswap_load -EXPORT_SYMBOL vmlinux 0xb4885f7b phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts EXPORT_SYMBOL vmlinux 0xb4910192 arm_dma_zone_size -EXPORT_SYMBOL vmlinux 0xb4950557 block_write_end +EXPORT_SYMBOL vmlinux 0xb4a41974 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xb4a64f50 dev_loopback_xmit EXPORT_SYMBOL vmlinux 0xb4b1e6d1 __xa_alloc EXPORT_SYMBOL vmlinux 0xb4b8ac22 of_get_property -EXPORT_SYMBOL vmlinux 0xb4e561c7 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0xb4e0fa77 vme_dma_list_free EXPORT_SYMBOL vmlinux 0xb4eca865 mipi_dsi_dcs_get_pixel_format EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb4f63ed3 tcp_filter -EXPORT_SYMBOL vmlinux 0xb5208e1c ip6_frag_init +EXPORT_SYMBOL vmlinux 0xb5185e5f tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xb525d4cc phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xb5289e65 sdev_prefix_printk EXPORT_SYMBOL vmlinux 0xb5302166 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xb535c203 mmc_add_host EXPORT_SYMBOL vmlinux 0xb53e0b33 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0xb5500a5c xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xb55b2c59 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xb551d04d __netlink_ns_capable EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb5831379 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xb5898d93 posix_lock_file EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb5972334 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xb58e77b8 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xb598ebb0 security_skb_classify_flow EXPORT_SYMBOL vmlinux 0xb598ffd1 pcim_iomap_regions EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5b3b2f4 rtnl_unicast EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5f80dc2 ping_prot -EXPORT_SYMBOL vmlinux 0xb5fcb096 free_task +EXPORT_SYMBOL vmlinux 0xb5ba88de __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xb5ba9cd3 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xb5d558c5 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xb5d8ae18 vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0xb5fdc18f mutex_is_locked +EXPORT_SYMBOL vmlinux 0xb5ff0117 udp_skb_destructor EXPORT_SYMBOL vmlinux 0xb6085e14 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xb6146909 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xb61d6dac generic_fadvise +EXPORT_SYMBOL vmlinux 0xb62d6cd3 scsi_report_opcode EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb6383616 keyring_search EXPORT_SYMBOL vmlinux 0xb63c4dcc fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xb63ce099 sk_page_frag_refill EXPORT_SYMBOL vmlinux 0xb6400cb4 lock_two_nondirectories EXPORT_SYMBOL vmlinux 0xb6492fbf md_reap_sync_thread EXPORT_SYMBOL vmlinux 0xb664a4e8 kvrealloc @@ -9824,113 +9717,107 @@ EXPORT_SYMBOL vmlinux 0xb6790bbf pcix_get_max_mmrbc EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif -EXPORT_SYMBOL vmlinux 0xb68f4288 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xb68fd7dc noop_llseek EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a25d42 security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6add1ab devfreq_update_status EXPORT_SYMBOL vmlinux 0xb6b6284e xz_dec_run -EXPORT_SYMBOL vmlinux 0xb6b66ee9 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xb6baa475 scsi_vpd_tpg_id EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6f6e8a9 finish_no_open +EXPORT_SYMBOL vmlinux 0xb6e5b3c3 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xb6f44337 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0xb6f859f4 _raw_read_lock_bh EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd EXPORT_SYMBOL vmlinux 0xb70bb7c0 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xb70d1d75 xfrm_state_lookup_byaddr EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces EXPORT_SYMBOL vmlinux 0xb71d986d snd_pcm_hw_limit_rates EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync EXPORT_SYMBOL vmlinux 0xb73163bf blk_queue_virt_boundary EXPORT_SYMBOL vmlinux 0xb7362c90 do_wait_intr_irq EXPORT_SYMBOL vmlinux 0xb73cf400 snd_ctl_rename_id -EXPORT_SYMBOL vmlinux 0xb74ca681 scsi_unblock_requests EXPORT_SYMBOL vmlinux 0xb7566933 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xb763a0da vfs_mkobj +EXPORT_SYMBOL vmlinux 0xb759d1f0 __put_page EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb76afd8c skb_copy_expand EXPORT_SYMBOL vmlinux 0xb76bb7aa hmm_range_fault -EXPORT_SYMBOL vmlinux 0xb7816896 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0xb782fa15 file_ns_capable EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0xb789d079 mmc_hw_reset EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict EXPORT_SYMBOL vmlinux 0xb78e2050 qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0xb7ab87d4 keyring_clear -EXPORT_SYMBOL vmlinux 0xb7c492b3 __icmp_send +EXPORT_SYMBOL vmlinux 0xb7a3518d __kfree_skb EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7c6db87 sock_init_data +EXPORT_SYMBOL vmlinux 0xb7da3ba7 xfrm_register_km EXPORT_SYMBOL vmlinux 0xb7df0e97 ZSTD_DDictWorkspaceBound EXPORT_SYMBOL vmlinux 0xb7df1147 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xb7e2cd70 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xb7e78810 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xb7f6f3f2 mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0xb7ff182f down_read_killable -EXPORT_SYMBOL vmlinux 0xb808d071 scsi_device_put -EXPORT_SYMBOL vmlinux 0xb833e5ef fasync_helper +EXPORT_SYMBOL vmlinux 0xb831f18f dev_close +EXPORT_SYMBOL vmlinux 0xb83d4975 netpoll_poll_enable EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb855ef6d security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xb85aa76c skb_dequeue EXPORT_SYMBOL vmlinux 0xb864b84b ZSTD_decompressBlock EXPORT_SYMBOL vmlinux 0xb8665586 truncate_inode_pages_final EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb86f44fc keyring_alloc +EXPORT_SYMBOL vmlinux 0xb877ec2c genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xb87a53e1 generic_write_checks +EXPORT_SYMBOL vmlinux 0xb87c3226 of_platform_device_create EXPORT_SYMBOL vmlinux 0xb87e58cd md_reload_sb -EXPORT_SYMBOL vmlinux 0xb88c8eb5 inode_set_bytes -EXPORT_SYMBOL vmlinux 0xb8946a94 tcp_seq_next +EXPORT_SYMBOL vmlinux 0xb8807f6a i2c_put_adapter EXPORT_SYMBOL vmlinux 0xb898948f pci_disable_device EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8a2491e of_clk_get EXPORT_SYMBOL vmlinux 0xb8a6924d page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0xb8a6ffeb __kfifo_dma_out_prepare_r EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link EXPORT_SYMBOL vmlinux 0xb8c66c45 dma_fence_get_status -EXPORT_SYMBOL vmlinux 0xb8c9eeb3 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xb8d91b42 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xb8d95440 skb_abort_seq_read EXPORT_SYMBOL vmlinux 0xb8e39d53 percpu_counter_sync -EXPORT_SYMBOL vmlinux 0xb8e5cdf0 build_skb_around +EXPORT_SYMBOL vmlinux 0xb8f58001 netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0xb8f9a040 __kmap_local_page_prot EXPORT_SYMBOL vmlinux 0xb902f09f invalidate_bdev EXPORT_SYMBOL vmlinux 0xb90331ea __mod_node_page_state EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb9335e1c sock_create EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io EXPORT_SYMBOL vmlinux 0xb96070af of_find_node_opts_by_path EXPORT_SYMBOL vmlinux 0xb962df5d rpmh_write_batch EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL vmlinux 0xb966013a unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xb963e483 disk_end_io_acct EXPORT_SYMBOL vmlinux 0xb96afbea pci_read_config_word EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb9756362 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0xb98d497e follow_down -EXPORT_SYMBOL vmlinux 0xb98ebf0a jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xb98ff09c dev_get_by_name +EXPORT_SYMBOL vmlinux 0xb976ecbe vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xb981d8a1 jbd2_fc_end_commit EXPORT_SYMBOL vmlinux 0xb9975d25 __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xb9a3a633 netdev_adjacent_change_commit EXPORT_SYMBOL vmlinux 0xb9a613c6 __kmalloc_track_caller EXPORT_SYMBOL vmlinux 0xb9a829f7 md_write_inc EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 EXPORT_SYMBOL vmlinux 0xb9af1925 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xb9bb5dd9 devfreq_update_target -EXPORT_SYMBOL vmlinux 0xb9d3b6db ptp_clock_event +EXPORT_SYMBOL vmlinux 0xb9b00ff3 set_page_dirty +EXPORT_SYMBOL vmlinux 0xb9c19dc4 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0xb9e22f97 __tty_alloc_driver EXPORT_SYMBOL vmlinux 0xb9e2cf47 __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters EXPORT_SYMBOL vmlinux 0xb9ecdd26 ilookup5 -EXPORT_SYMBOL vmlinux 0xb9ef47ed skb_store_bits -EXPORT_SYMBOL vmlinux 0xb9f22170 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xb9fa18fc path_put +EXPORT_SYMBOL vmlinux 0xb9f5e5b5 alloc_skb_with_frags EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xba4730e4 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xba16ba4d sock_pfree +EXPORT_SYMBOL vmlinux 0xba2091f7 udp_disconnect +EXPORT_SYMBOL vmlinux 0xba44a49c vif_device_init EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4a4857 genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0xba4e60d6 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xba499026 xfrm4_udp_encap_rcv EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba547c7c kernel_getsockname EXPORT_SYMBOL vmlinux 0xba6533f7 seq_bprintf EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xba7777da __set_page_dirty_no_writeback +EXPORT_SYMBOL vmlinux 0xba737277 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xba826c33 kernel_sock_shutdown EXPORT_SYMBOL vmlinux 0xba8c609d __next_node_in EXPORT_SYMBOL vmlinux 0xba8f3453 blk_set_queue_depth EXPORT_SYMBOL vmlinux 0xbab089d5 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0xbab8f016 dev_addr_add -EXPORT_SYMBOL vmlinux 0xbad10534 xp_can_alloc +EXPORT_SYMBOL vmlinux 0xbad0ec8d sock_rfree +EXPORT_SYMBOL vmlinux 0xbad79c87 vme_irq_request +EXPORT_SYMBOL vmlinux 0xbae775a2 vme_unregister_driver EXPORT_SYMBOL vmlinux 0xbae847e8 __serio_register_driver EXPORT_SYMBOL vmlinux 0xbaf297ac bdevname EXPORT_SYMBOL vmlinux 0xbb025acd param_set_ullong @@ -9938,177 +9825,157 @@ EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset EXPORT_SYMBOL vmlinux 0xbb140c97 of_parse_phandle_with_args EXPORT_SYMBOL vmlinux 0xbb14eb31 bcmp EXPORT_SYMBOL vmlinux 0xbb22cc2b save_stack_trace_tsk +EXPORT_SYMBOL vmlinux 0xbb23b3e2 secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb2ab1f0 tcp_close EXPORT_SYMBOL vmlinux 0xbb2df1ec __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0xbb32f2ec load_nls EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb436a69 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xbb3f6a6d sock_wfree EXPORT_SYMBOL vmlinux 0xbb47dfa4 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0xbb6a8b4c xfrm_input +EXPORT_SYMBOL vmlinux 0xbb67666b skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xbb68487a jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xbb6ba0a3 __hw_addr_ref_unsync_dev EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 -EXPORT_SYMBOL vmlinux 0xbb74097e mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xbb78c5b3 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xbb7a99ca xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xbb7c1f66 genphy_suspend EXPORT_SYMBOL vmlinux 0xbb8ea004 blk_mq_end_request EXPORT_SYMBOL vmlinux 0xbb91cb05 iov_iter_xarray -EXPORT_SYMBOL vmlinux 0xbbb70b93 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xbb9a0de9 filemap_flush +EXPORT_SYMBOL vmlinux 0xbba33c7b netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xbbb9cd05 ip_do_fragment EXPORT_SYMBOL vmlinux 0xbbc23d77 snd_timer_interrupt -EXPORT_SYMBOL vmlinux 0xbbc303fc put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0xbbe6109f tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xbbec9815 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xbbcf935d scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xbbd77735 poll_initwait +EXPORT_SYMBOL vmlinux 0xbbdd5574 vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0xbbfa93bf cdev_del EXPORT_SYMBOL vmlinux 0xbc0995fc fb_get_buffer_offset EXPORT_SYMBOL vmlinux 0xbc0e3927 rproc_del EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 EXPORT_SYMBOL vmlinux 0xbc1d858f backlight_force_update -EXPORT_SYMBOL vmlinux 0xbc1f7782 nf_log_unset -EXPORT_SYMBOL vmlinux 0xbc23b944 lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0xbc2b4e46 rtnl_notify -EXPORT_SYMBOL vmlinux 0xbc2cd884 icmp6_send +EXPORT_SYMBOL vmlinux 0xbc27c453 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xbc28dac5 dump_skip_to +EXPORT_SYMBOL vmlinux 0xbc2b0b89 lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0xbc3a9101 inode_newsize_ok EXPORT_SYMBOL vmlinux 0xbc418545 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xbc4f9118 ppp_register_compressor EXPORT_SYMBOL vmlinux 0xbc56bec3 snd_pcm_suspend_all EXPORT_SYMBOL vmlinux 0xbc5c8dd0 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0xbc6a8afb genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0xbc9a1cf2 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xbc8a7d57 jbd2_journal_get_undo_access EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbce2d2e4 phy_start -EXPORT_SYMBOL vmlinux 0xbce480de netdev_emerg +EXPORT_SYMBOL vmlinux 0xbcd5dc3b netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0xbce6a3db page_pool_update_nid EXPORT_SYMBOL vmlinux 0xbcf9f7ca blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xbcfe1330 may_umount_tree -EXPORT_SYMBOL vmlinux 0xbd0a9eea mmc_put_card -EXPORT_SYMBOL vmlinux 0xbd0ccfa6 sock_no_listen EXPORT_SYMBOL vmlinux 0xbd1b4950 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0xbd380ba4 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0xbd3ca832 skb_eth_pop -EXPORT_SYMBOL vmlinux 0xbd4c8f7a netpoll_send_skb EXPORT_SYMBOL vmlinux 0xbd4cd3e1 dma_resv_add_shared_fence EXPORT_SYMBOL vmlinux 0xbd4efc78 fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0xbd5696ed __break_lease -EXPORT_SYMBOL vmlinux 0xbd56a400 sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0xbd5e1d9c __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0xbd7b3c80 kern_unmount_array +EXPORT_SYMBOL vmlinux 0xbd8154de tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0xbd820297 rtc_lock EXPORT_SYMBOL vmlinux 0xbd86e1f2 blk_queue_split -EXPORT_SYMBOL vmlinux 0xbd969604 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xbdc69e12 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xbdac6c7a vfs_fsync +EXPORT_SYMBOL vmlinux 0xbdaf2a3e skb_eth_push +EXPORT_SYMBOL vmlinux 0xbdcb8aad sock_efree EXPORT_SYMBOL vmlinux 0xbdd1e844 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xbdd72027 skb_ext_add EXPORT_SYMBOL vmlinux 0xbe0624f6 simple_symlink_inode_operations EXPORT_SYMBOL vmlinux 0xbe0bca21 __seq_open_private EXPORT_SYMBOL vmlinux 0xbe0e3cba tcf_queue_work EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp EXPORT_SYMBOL vmlinux 0xbe1191a6 __frontswap_test -EXPORT_SYMBOL vmlinux 0xbe137a9f scsi_report_opcode EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe29b655 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0xbe4458b3 __netif_schedule -EXPORT_SYMBOL vmlinux 0xbe44f6bb page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xbe4a0862 mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state EXPORT_SYMBOL vmlinux 0xbe638091 param_ops_bint -EXPORT_SYMBOL vmlinux 0xbe786381 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0xbe799c14 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xbe98eb5a dev_deactivate -EXPORT_SYMBOL vmlinux 0xbea385d0 udp_gro_complete -EXPORT_SYMBOL vmlinux 0xbebe63aa generic_writepages -EXPORT_SYMBOL vmlinux 0xbebf8c8f mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xbe7c51d7 __sock_create +EXPORT_SYMBOL vmlinux 0xbe8e6e44 cookie_ecn_ok EXPORT_SYMBOL vmlinux 0xbec84c8b snd_timer_global_free EXPORT_SYMBOL vmlinux 0xbeca8d95 __blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0xbed37c48 serio_reconnect +EXPORT_SYMBOL vmlinux 0xbed9e9f8 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0xbee2618c netpoll_poll_dev EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r EXPORT_SYMBOL vmlinux 0xbeeee073 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xbef2e02d xp_alloc EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf01f152 write_one_page EXPORT_SYMBOL vmlinux 0xbf09e7cb snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL vmlinux 0xbf436139 __put_page -EXPORT_SYMBOL vmlinux 0xbf460cc1 inet_ioctl +EXPORT_SYMBOL vmlinux 0xbf11977a ip_check_defrag EXPORT_SYMBOL vmlinux 0xbf4d4539 udp_table EXPORT_SYMBOL vmlinux 0xbf58ccc8 uart_suspend_port EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init EXPORT_SYMBOL vmlinux 0xbf7347b2 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0xbf85b6e7 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xbf81c05a phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0xbf8e5c5c __dec_node_page_state EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set EXPORT_SYMBOL vmlinux 0xbfa42e2f proc_symlink -EXPORT_SYMBOL vmlinux 0xbfa8ad8b sock_no_connect +EXPORT_SYMBOL vmlinux 0xbfa66f4c vm_insert_page +EXPORT_SYMBOL vmlinux 0xbfab72bd mr_mfc_find_parent EXPORT_SYMBOL vmlinux 0xbfabe414 snd_pcm_hw_constraint_step -EXPORT_SYMBOL vmlinux 0xbfbe6043 netdev_printk +EXPORT_SYMBOL vmlinux 0xbfba5b7b sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xbfbe524f netdev_err +EXPORT_SYMBOL vmlinux 0xbfc112af ptp_clock_index EXPORT_SYMBOL vmlinux 0xbfdf7bc3 mempool_create +EXPORT_SYMBOL vmlinux 0xbfe39f0a napi_build_skb EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff434c8 inet_frag_find -EXPORT_SYMBOL vmlinux 0xbff7b8c4 release_pages -EXPORT_SYMBOL vmlinux 0xc00046e3 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0xc0379431 reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0xc04879ba send_sig_info -EXPORT_SYMBOL vmlinux 0xc04dff51 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xc05162c8 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xc04b826d inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0xc054d8c8 devm_clk_get_optional EXPORT_SYMBOL vmlinux 0xc0594738 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xc0737028 scsi_print_command -EXPORT_SYMBOL vmlinux 0xc073a0f5 phy_attached_info EXPORT_SYMBOL vmlinux 0xc07592c8 pin_user_pages_unlocked EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc076984d kernel_sendpage EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc07ef1aa ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xc09bbbac done_path_create EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode EXPORT_SYMBOL vmlinux 0xc0a7b358 pci_try_set_mwi EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0bb5290 flush_signals EXPORT_SYMBOL vmlinux 0xc0bb6181 md_check_recovery -EXPORT_SYMBOL vmlinux 0xc0befd19 inet_shutdown EXPORT_SYMBOL vmlinux 0xc0cc8a7c pci_ep_cfs_add_epf_group EXPORT_SYMBOL vmlinux 0xc0da0e99 dim_on_top -EXPORT_SYMBOL vmlinux 0xc0db0733 filemap_fdatawait_range_keep_errors EXPORT_SYMBOL vmlinux 0xc0dbe26a input_allocate_device -EXPORT_SYMBOL vmlinux 0xc0dcef4d neigh_table_clear +EXPORT_SYMBOL vmlinux 0xc0de9724 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xc0ecf45b __neigh_create EXPORT_SYMBOL vmlinux 0xc0f4922f input_close_device 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 0xc10064a3 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xc105f5d4 gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0xc1190b4b vm_map_ram EXPORT_SYMBOL vmlinux 0xc124d4a1 devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xc1434718 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xc14ab286 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xc12ffd2a netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xc138cad1 mmc_gpio_set_cd_isr EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq EXPORT_SYMBOL vmlinux 0xc158e9ff generic_update_time -EXPORT_SYMBOL vmlinux 0xc15ba090 neigh_xmit EXPORT_SYMBOL vmlinux 0xc15f4ed8 utf8nlen EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc1857454 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xc1761cbc mmc_can_gpio_cd EXPORT_SYMBOL vmlinux 0xc18f5576 rawnand_sw_bch_cleanup -EXPORT_SYMBOL vmlinux 0xc1958b3b nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0xc1a44233 tcp_check_req +EXPORT_SYMBOL vmlinux 0xc19d1c37 sock_recv_errqueue EXPORT_SYMBOL vmlinux 0xc1af9678 configfs_unregister_default_group EXPORT_SYMBOL vmlinux 0xc1c45b06 simple_release_fs -EXPORT_SYMBOL vmlinux 0xc1d52ccf dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xc1cb2096 mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed -EXPORT_SYMBOL vmlinux 0xc1d746eb __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e2dcfc page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xc1e5061d xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xc1f182cc security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xc202a058 find_get_pages_range_tag EXPORT_SYMBOL vmlinux 0xc2059c64 fscrypt_enqueue_decrypt_work EXPORT_SYMBOL vmlinux 0xc207ee07 complete_and_exit +EXPORT_SYMBOL vmlinux 0xc227052f napi_schedule_prep EXPORT_SYMBOL vmlinux 0xc230c9a8 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0xc23827b1 netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0xc243034d dquot_resume -EXPORT_SYMBOL vmlinux 0xc258e471 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xc24e6dca locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc26ab840 inode_get_bytes -EXPORT_SYMBOL vmlinux 0xc26ca82a module_refcount +EXPORT_SYMBOL vmlinux 0xc268673b ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0xc2772b7f mmput_async +EXPORT_SYMBOL vmlinux 0xc28101c0 starget_for_each_device EXPORT_SYMBOL vmlinux 0xc283875c blk_mq_alloc_request EXPORT_SYMBOL vmlinux 0xc283a1c1 kmap_high EXPORT_SYMBOL vmlinux 0xc28400bd d_splice_alias -EXPORT_SYMBOL vmlinux 0xc286b2c1 udp_gro_receive -EXPORT_SYMBOL vmlinux 0xc2922093 tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0xc28de4ca netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xc28ee252 security_inet_conn_request EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer EXPORT_SYMBOL vmlinux 0xc2b1d4e1 lockref_put_return EXPORT_SYMBOL vmlinux 0xc2b34a09 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xc2b8cabd ip6_frag_next +EXPORT_SYMBOL vmlinux 0xc2bb0f00 __ip_queue_xmit EXPORT_SYMBOL vmlinux 0xc2cae53e refcount_dec_and_lock EXPORT_SYMBOL vmlinux 0xc2cd23d5 pci_find_next_bus EXPORT_SYMBOL vmlinux 0xc2cf2dde ZSTD_decompress_usingDDict @@ -10116,469 +9983,443 @@ EXPORT_SYMBOL vmlinux 0xc2da681a bio_add_page EXPORT_SYMBOL vmlinux 0xc2deaff9 snd_power_wait EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices EXPORT_SYMBOL vmlinux 0xc2ede9c5 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xc2fe6ba1 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0xc303b9fa netif_device_detach EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc31c3ab5 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xc30ec319 udp_seq_stop +EXPORT_SYMBOL vmlinux 0xc3148d25 inet_sock_destruct EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc3288289 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xc32a0461 tcp_sync_mss EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xc3377889 get_thermal_instance EXPORT_SYMBOL vmlinux 0xc33d810d truncate_pagecache_range EXPORT_SYMBOL vmlinux 0xc341fbc7 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xc3578180 qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0xc358aaf8 snprintf -EXPORT_SYMBOL vmlinux 0xc365f5c5 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0xc36dceee jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xc369a1a4 tcp_enter_cwr EXPORT_SYMBOL vmlinux 0xc37335b0 complete EXPORT_SYMBOL vmlinux 0xc37d908d pci_set_power_state EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc384795c qdisc_hash_add EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer EXPORT_SYMBOL vmlinux 0xc39f3bbc bioset_init -EXPORT_SYMBOL vmlinux 0xc3aab541 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xc3a8f4b9 km_report EXPORT_SYMBOL vmlinux 0xc3abfd7d mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0xc3afc552 kernel_getpeername -EXPORT_SYMBOL vmlinux 0xc3b2fb72 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xc3c01c44 mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb EXPORT_SYMBOL vmlinux 0xc3e3c3da PDE_DATA +EXPORT_SYMBOL vmlinux 0xc3e90bbe __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0xc3ec7dc1 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xc40b52bf rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xc4114bf5 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0xc4140123 ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0xc415aefb iov_iter_npages -EXPORT_SYMBOL vmlinux 0xc41b9f5e dev_uc_init EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc41bf86f __dev_set_mtu EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert EXPORT_SYMBOL vmlinux 0xc4251c03 dquot_commit_info -EXPORT_SYMBOL vmlinux 0xc435d577 set_page_dirty -EXPORT_SYMBOL vmlinux 0xc437d1cf neigh_direct_output -EXPORT_SYMBOL vmlinux 0xc4401a34 __genphy_config_aneg EXPORT_SYMBOL vmlinux 0xc4477191 tty_check_change +EXPORT_SYMBOL vmlinux 0xc4573f5a jbd2_journal_update_sb_errno EXPORT_SYMBOL vmlinux 0xc4657dc8 mempool_init EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc47b2824 block_truncate_page +EXPORT_SYMBOL vmlinux 0xc48c5b53 genphy_restart_aneg EXPORT_SYMBOL vmlinux 0xc4a59957 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0xc4aa6a5f dev_mc_sync +EXPORT_SYMBOL vmlinux 0xc4ba2a53 phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0xc4bf7d91 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0xc4d20532 dev_addr_init +EXPORT_SYMBOL vmlinux 0xc503a7ff dcb_ieee_setapp EXPORT_SYMBOL vmlinux 0xc506bfeb dm_io -EXPORT_SYMBOL vmlinux 0xc519e005 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params +EXPORT_SYMBOL vmlinux 0xc530be00 ___pskb_trim EXPORT_SYMBOL vmlinux 0xc54df713 __nla_reserve EXPORT_SYMBOL vmlinux 0xc54e411f rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0xc551e07b tcf_block_put_ext EXPORT_SYMBOL vmlinux 0xc56c0380 fbcon_update_vcs EXPORT_SYMBOL vmlinux 0xc56df096 dquot_set_dqblk EXPORT_SYMBOL vmlinux 0xc581500f ZSTD_resetDStream EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete EXPORT_SYMBOL vmlinux 0xc59df969 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL vmlinux 0xc5a677a6 kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL vmlinux 0xc5abfa57 dcb_getapp EXPORT_SYMBOL vmlinux 0xc5baba06 vcalloc -EXPORT_SYMBOL vmlinux 0xc5be019c prepare_kernel_cred EXPORT_SYMBOL vmlinux 0xc5cbdc54 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xc5d2a605 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xc5e08410 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xc5e67fb6 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xc5d3574f skb_free_datagram EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource EXPORT_SYMBOL vmlinux 0xc5ee6c48 kvfree_sensitive EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last EXPORT_SYMBOL vmlinux 0xc60932b5 free_inode_nonrcu EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc610e64e mark_page_accessed +EXPORT_SYMBOL vmlinux 0xc60efcc7 neigh_connected_output EXPORT_SYMBOL vmlinux 0xc61c1391 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xc61f2a3d has_capability EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc6375474 skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0xc638311d nvdimm_namespace_disk_name EXPORT_SYMBOL vmlinux 0xc6428443 nand_ecc_cleanup_ctx EXPORT_SYMBOL vmlinux 0xc64419ba fput -EXPORT_SYMBOL vmlinux 0xc6543e57 ip6_output EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc66a105b tcp_mmap EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add EXPORT_SYMBOL vmlinux 0xc66fb0eb cdrom_ioctl EXPORT_SYMBOL vmlinux 0xc68da06f kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xc692a204 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xc6952e41 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xc698f44e __mdiobus_register +EXPORT_SYMBOL vmlinux 0xc69e3ab7 pneigh_lookup EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle EXPORT_SYMBOL vmlinux 0xc6a05833 snd_pcm_kernel_ioctl -EXPORT_SYMBOL vmlinux 0xc6b6f581 consume_skb -EXPORT_SYMBOL vmlinux 0xc6c30811 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xc6bad0cc inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6deda85 generic_splice_sendpage EXPORT_SYMBOL vmlinux 0xc6efd2a6 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xc6f0e48a device_match_acpi_dev EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6f8697a file_check_and_advance_wb_err EXPORT_SYMBOL vmlinux 0xc6fc8dad tty_hangup -EXPORT_SYMBOL vmlinux 0xc6fe4aca genlmsg_put -EXPORT_SYMBOL vmlinux 0xc712ed1d udp_sendmsg EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc7241faf unlock_rename EXPORT_SYMBOL vmlinux 0xc72559cf mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xc735567e setup_arg_pages EXPORT_SYMBOL vmlinux 0xc737c539 uart_add_one_port -EXPORT_SYMBOL vmlinux 0xc756c891 tcp_connect -EXPORT_SYMBOL vmlinux 0xc75d64d4 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xc76a5dee path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xc74d1c9f scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xc767e727 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc78675db scsi_host_put EXPORT_SYMBOL vmlinux 0xc78a14dd pci_disable_ptm EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7a89fd2 __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0xc7ab0095 setattr_prepare EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c94d43 xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0xc7cb7b62 mode_strip_sgid EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group EXPORT_SYMBOL vmlinux 0xc7eb7d9c pci_read_config_dword EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn EXPORT_SYMBOL vmlinux 0xc805c495 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xc80ed01b __scsi_iterate_devices EXPORT_SYMBOL vmlinux 0xc8158ab7 stop_tty -EXPORT_SYMBOL vmlinux 0xc82e791a nosteal_pipe_buf_ops EXPORT_SYMBOL vmlinux 0xc8324f05 csum_and_copy_from_iter EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape EXPORT_SYMBOL vmlinux 0xc8389b0d generic_delete_inode -EXPORT_SYMBOL vmlinux 0xc83a5ed7 jbd2_journal_set_features EXPORT_SYMBOL vmlinux 0xc840711e tty_port_put EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu EXPORT_SYMBOL vmlinux 0xc85f78b9 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xc86747c8 tcp_v4_mtu_reduced EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals EXPORT_SYMBOL vmlinux 0xc88bea95 pm860x_set_bits EXPORT_SYMBOL vmlinux 0xc88e00ca freeze_bdev EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc8917af7 call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0xc893cccd mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0xc894a875 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xc896a8f2 ip_fraglist_init EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread EXPORT_SYMBOL vmlinux 0xc8b4c6c9 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0xc8b53076 eth_header_parse EXPORT_SYMBOL vmlinux 0xc8b58a25 __memset64 -EXPORT_SYMBOL vmlinux 0xc8c655db unregister_fib_notifier EXPORT_SYMBOL vmlinux 0xc8cd5185 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0xc8ce3d90 scsi_add_device -EXPORT_SYMBOL vmlinux 0xc8dc17db sock_alloc_file +EXPORT_SYMBOL vmlinux 0xc8d10b24 tcp_sock_set_keepintvl EXPORT_SYMBOL vmlinux 0xc8e5e220 backlight_device_get_by_type EXPORT_SYMBOL vmlinux 0xc8f45d6d rproc_put -EXPORT_SYMBOL vmlinux 0xc8f54347 __ip_dev_find -EXPORT_SYMBOL vmlinux 0xc8fe274f sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xc8fff41c netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xc8f6ca70 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xc9000128 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xc9053616 end_buffer_write_sync EXPORT_SYMBOL vmlinux 0xc905b009 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0xc90b8f8a unmap_mapping_range EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc EXPORT_SYMBOL vmlinux 0xc92162a6 nla_put_nohdr EXPORT_SYMBOL vmlinux 0xc921805a blk_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc938ab67 netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0xc93f2b49 submit_bio_wait EXPORT_SYMBOL vmlinux 0xc95233be bio_uninit -EXPORT_SYMBOL vmlinux 0xc95424c5 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0xc958630d dev_add_offload EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc964d453 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xc968b4f9 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xc96b1dea qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0xc96f953a of_get_next_cpu_node EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc976b2c7 skb_copy_header +EXPORT_SYMBOL vmlinux 0xc9816ce9 ip6mr_rule_default EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector EXPORT_SYMBOL vmlinux 0xc987ae5c put_disk -EXPORT_SYMBOL vmlinux 0xc996325d mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xc99955ce xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0xc99cbb83 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xc99cf2ea free_netdev EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc99ec8c9 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xc9a27582 release_sock EXPORT_SYMBOL vmlinux 0xc9ab3456 pci_disable_msi EXPORT_SYMBOL vmlinux 0xc9ae8004 devm_ioremap_resource EXPORT_SYMBOL vmlinux 0xc9c4d441 irq_set_chip -EXPORT_SYMBOL vmlinux 0xc9c8df16 sock_alloc_send_skb EXPORT_SYMBOL vmlinux 0xc9ca3698 register_sysctl_table EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init EXPORT_SYMBOL vmlinux 0xc9e9d5f9 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0xc9f3a679 cad_pid -EXPORT_SYMBOL vmlinux 0xc9f7b085 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xc9fac6cf scsi_mode_sense EXPORT_SYMBOL vmlinux 0xca1a0bb3 dma_resv_copy_fences EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca42d132 ppp_input EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function EXPORT_SYMBOL vmlinux 0xca45796e __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xca4c52f9 ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0xca518c80 vme_master_request -EXPORT_SYMBOL vmlinux 0xca56c20a mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xca45a8ac ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xca491011 scm_detach_fds EXPORT_SYMBOL vmlinux 0xca5a7528 down_interruptible -EXPORT_SYMBOL vmlinux 0xca688afc dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xca7ee449 seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0xca7ee9b2 fault_in_writeable EXPORT_SYMBOL vmlinux 0xca813ce6 LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next EXPORT_SYMBOL vmlinux 0xca94cf47 ps2_cmd_aborted EXPORT_SYMBOL vmlinux 0xca969691 new_inode -EXPORT_SYMBOL vmlinux 0xcaa2e687 dev_addr_flush -EXPORT_SYMBOL vmlinux 0xcaa42853 tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0xcaa686eb i2c_clients_command +EXPORT_SYMBOL vmlinux 0xcabb450e flow_rule_match_enc_opts EXPORT_SYMBOL vmlinux 0xcac816c1 bmap -EXPORT_SYMBOL vmlinux 0xcae90d21 mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcafc2c11 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xcafd352e open_with_fake_path EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb0adb76 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0xcb0c75d6 stream_open EXPORT_SYMBOL vmlinux 0xcb0d8bd2 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xcb0e6ece lock_sock_nested -EXPORT_SYMBOL vmlinux 0xcb1fae3f _dev_alert -EXPORT_SYMBOL vmlinux 0xcb2fd423 netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb3ca579 dst_destroy EXPORT_SYMBOL vmlinux 0xcb510bc2 complete_all -EXPORT_SYMBOL vmlinux 0xcb5cfb24 scsi_track_queue_full EXPORT_SYMBOL vmlinux 0xcb606eb9 xa_load -EXPORT_SYMBOL vmlinux 0xcb68a311 path_get -EXPORT_SYMBOL vmlinux 0xcb808aaa kill_fasync EXPORT_SYMBOL vmlinux 0xcb8c753b mempool_exit -EXPORT_SYMBOL vmlinux 0xcbd30e83 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xcb9435d7 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xcb9cfcfa ip_local_deliver +EXPORT_SYMBOL vmlinux 0xcbb5f331 blk_put_queue EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbe0dd01 lock_page_memcg -EXPORT_SYMBOL vmlinux 0xcbf021d3 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xcbdcd021 __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0xcbf1dbd0 utf8len -EXPORT_SYMBOL vmlinux 0xcc22fadf xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port EXPORT_SYMBOL vmlinux 0xcc30f0f1 tcp_tx_delay_enabled EXPORT_SYMBOL vmlinux 0xcc317a27 n_tty_ioctl_helper EXPORT_SYMBOL vmlinux 0xcc38d6c0 register_quota_format -EXPORT_SYMBOL vmlinux 0xcc4190c8 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xcc3f6591 napi_gro_receive EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next EXPORT_SYMBOL vmlinux 0xcc4668af mipi_dsi_dcs_set_tear_off EXPORT_SYMBOL vmlinux 0xcc4e5916 iov_iter_pipe EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc5f6945 ping_prot EXPORT_SYMBOL vmlinux 0xcc6a729f snd_ctl_enum_info EXPORT_SYMBOL vmlinux 0xcc82c4b1 clk_bulk_get_all EXPORT_SYMBOL vmlinux 0xcc87cf07 param_get_string -EXPORT_SYMBOL vmlinux 0xcc91ef04 __sock_create +EXPORT_SYMBOL vmlinux 0xcca6d76d inet6_offloads EXPORT_SYMBOL vmlinux 0xcca953e2 dma_sync_sg_for_device EXPORT_SYMBOL vmlinux 0xccab0367 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xccbb1686 ll_rw_block +EXPORT_SYMBOL vmlinux 0xcccccef7 do_splice_direct EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccdad178 skb_checksum +EXPORT_SYMBOL vmlinux 0xccdc527b ptp_cancel_worker_sync EXPORT_SYMBOL vmlinux 0xcce11765 get_watch_queue -EXPORT_SYMBOL vmlinux 0xccedb6c6 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xccf627dc ip6_dst_alloc 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 0xcd022651 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0xcd070576 __scsi_iterate_devices EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL vmlinux 0xcd1bcb4b __alloc_skb +EXPORT_SYMBOL vmlinux 0xcd133ed0 sock_no_bind +EXPORT_SYMBOL vmlinux 0xcd15a3a6 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xcd1ee09d __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0xcd279169 nla_find EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div -EXPORT_SYMBOL vmlinux 0xcd35c7dc xfrm_state_free -EXPORT_SYMBOL vmlinux 0xcd404126 close_fd_get_file -EXPORT_SYMBOL vmlinux 0xcd40bcc9 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xcd33ce40 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xcd36e0d1 generic_permission +EXPORT_SYMBOL vmlinux 0xcd4396fe __neigh_event_send +EXPORT_SYMBOL vmlinux 0xcd4a8665 __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0xcd4ba885 of_find_matching_node_and_match EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr -EXPORT_SYMBOL vmlinux 0xcd71563e locks_copy_conflock -EXPORT_SYMBOL vmlinux 0xcd7d7a92 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xcdb12314 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xcd9c1dc7 open_exec +EXPORT_SYMBOL vmlinux 0xcdb162b7 genphy_update_link EXPORT_SYMBOL vmlinux 0xcdbd8c65 nand_ecc_sw_hamming_cleanup_ctx EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdfbb0ac register_filesystem -EXPORT_SYMBOL vmlinux 0xce0afb91 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xce1e8b05 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xce246bb9 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xce26833a __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xce2134b0 ip6_xmit +EXPORT_SYMBOL vmlinux 0xce219947 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xce239da8 nf_log_bind_pf EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2c3052 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xce3c60dd __block_write_full_page EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio EXPORT_SYMBOL vmlinux 0xce43f39a blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xce49b151 inet_offloads EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce52e562 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xce58dd4d rt_dst_clone EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce5e3821 page_cache_next_miss EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0xce83eadf tc6393xb_lcd_mode EXPORT_SYMBOL vmlinux 0xce8afaf8 d_alloc_parallel EXPORT_SYMBOL vmlinux 0xcea99715 nvdimm_namespace_capacity EXPORT_SYMBOL vmlinux 0xceaaaf98 cpu_user EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul EXPORT_SYMBOL vmlinux 0xceabee8a __put_cred -EXPORT_SYMBOL vmlinux 0xceb91c0f iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0xcebd373f __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0xcec00c5e snd_timer_instance_free -EXPORT_SYMBOL vmlinux 0xcecbd300 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xcecec4c6 inet_accept +EXPORT_SYMBOL vmlinux 0xced2225c vm_iomap_memory EXPORT_SYMBOL vmlinux 0xcedc99af mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0xcede275c memremap EXPORT_SYMBOL vmlinux 0xcedf4833 par_io_of_config +EXPORT_SYMBOL vmlinux 0xcee4d1db dev_get_stats EXPORT_SYMBOL vmlinux 0xcee5264f snd_info_free_entry -EXPORT_SYMBOL vmlinux 0xceee7474 ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0xcef71c19 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xceec6b6c flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port EXPORT_SYMBOL vmlinux 0xcf01f610 panic_notifier_list -EXPORT_SYMBOL vmlinux 0xcf1e0f26 inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0xcf539b2a thaw_bdev -EXPORT_SYMBOL vmlinux 0xcf56ce15 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xcf7a0f9a phy_mii_ioctl EXPORT_SYMBOL vmlinux 0xcf7e1d1d hdmi_vendor_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xcf86cdac queue_delayed_work_on EXPORT_SYMBOL vmlinux 0xcf8d8d2f kobject_set_name EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcf9dfdf5 inet_dev_addr_type EXPORT_SYMBOL vmlinux 0xcfa69a7e atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfacd3a9 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xcfb3a08d alloc_fddidev EXPORT_SYMBOL vmlinux 0xcfb903a9 seq_open -EXPORT_SYMBOL vmlinux 0xcfd7f0ec jbd2_fc_release_bufs EXPORT_SYMBOL vmlinux 0xcfdb0194 max8925_reg_read -EXPORT_SYMBOL vmlinux 0xcfe0993d ip_generic_getfrag EXPORT_SYMBOL vmlinux 0xcff458ae dmaenginem_async_device_register EXPORT_SYMBOL vmlinux 0xcffcabd8 snd_ctl_find_numid -EXPORT_SYMBOL vmlinux 0xcffe8ed5 write_cache_pages +EXPORT_SYMBOL vmlinux 0xd0056703 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xd018538d tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0xd0258ef8 key_revoke +EXPORT_SYMBOL vmlinux 0xd04173c7 tcf_exts_validate EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd04c8395 path_put EXPORT_SYMBOL vmlinux 0xd04febe9 arm_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0xd05b354e zap_page_range EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd070b056 udp_prot EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive EXPORT_SYMBOL vmlinux 0xd07e7605 tty_port_close_end -EXPORT_SYMBOL vmlinux 0xd07f59e3 ptp_find_pin EXPORT_SYMBOL vmlinux 0xd086fcdb snd_pcm_lib_ioctl -EXPORT_SYMBOL vmlinux 0xd08e311c ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xd0870caa tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0xd0a5028c mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xd0ab6e28 vlan_vid_del EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock -EXPORT_SYMBOL vmlinux 0xd0b4ef0b bprm_change_interp +EXPORT_SYMBOL vmlinux 0xd0b2b2b9 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xd0b53017 netdev_printk EXPORT_SYMBOL vmlinux 0xd0c1e866 mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0xd0c5f221 ppp_input_error -EXPORT_SYMBOL vmlinux 0xd0c8e940 _dev_emerg -EXPORT_SYMBOL vmlinux 0xd0d503c8 __kfree_skb EXPORT_SYMBOL vmlinux 0xd0e9fb09 release_firmware -EXPORT_SYMBOL vmlinux 0xd1016f0b dev_set_mtu +EXPORT_SYMBOL vmlinux 0xd0f08043 flow_block_cb_incref EXPORT_SYMBOL vmlinux 0xd109778f gen_pool_dma_alloc_algo EXPORT_SYMBOL vmlinux 0xd1119f21 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xd1198012 register_console -EXPORT_SYMBOL vmlinux 0xd12e6e5e xsk_tx_completed EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize EXPORT_SYMBOL vmlinux 0xd15757b3 devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0xd1589acf xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0xd15ed61c genl_unregister_family +EXPORT_SYMBOL vmlinux 0xd159ec3d jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xd1775179 inet6_del_protocol EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd1827d0a __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0xd18dd99c arp_tbl EXPORT_SYMBOL vmlinux 0xd197b7ca bdi_put -EXPORT_SYMBOL vmlinux 0xd1986366 register_netdev -EXPORT_SYMBOL vmlinux 0xd1b6ab57 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0xd1ba6db5 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xd1bca192 block_page_mkwrite EXPORT_SYMBOL vmlinux 0xd1cc6d46 input_unregister_handle EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e69281 tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0xd1fbfb8b write_inode_now EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0xd20ee713 flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0xd21fd578 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xd247dcdf __napi_schedule -EXPORT_SYMBOL vmlinux 0xd249db95 udp_seq_ops EXPORT_SYMBOL vmlinux 0xd24c3357 snd_card_file_remove EXPORT_SYMBOL vmlinux 0xd24dd0be pcim_iounmap_regions EXPORT_SYMBOL vmlinux 0xd251a080 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL vmlinux 0xd2568dd8 alloc_fddidev EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd26c7253 tc_setup_cb_call EXPORT_SYMBOL vmlinux 0xd272eb2a blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0xd2733f65 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xd276fb3d ipv6_chk_addr EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xd2794fa5 flow_indr_dev_unregister EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy EXPORT_SYMBOL vmlinux 0xd2802d5c pgprot_kernel EXPORT_SYMBOL vmlinux 0xd287f598 kobject_put EXPORT_SYMBOL vmlinux 0xd288841c omap_get_dma_dst_pos EXPORT_SYMBOL vmlinux 0xd2920f98 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0xd2c83d60 napi_consume_skb -EXPORT_SYMBOL vmlinux 0xd2c860a0 wait_on_page_bit_killable +EXPORT_SYMBOL vmlinux 0xd2acee0d __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xd2bd34ca jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xd2cd4cb7 napi_complete_done +EXPORT_SYMBOL vmlinux 0xd2da0099 dump_page EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier EXPORT_SYMBOL vmlinux 0xd2eb32b9 tcp_rx_skb_cache_key +EXPORT_SYMBOL vmlinux 0xd2f9f9bd fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0xd2fcbd0e thermal_cdev_update EXPORT_SYMBOL vmlinux 0xd30c5bb7 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xd31a03d7 mmc_retune_release EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible EXPORT_SYMBOL vmlinux 0xd328e4cc snd_ctl_find_id EXPORT_SYMBOL vmlinux 0xd32d6c08 lockref_get +EXPORT_SYMBOL vmlinux 0xd3300c56 __find_get_block EXPORT_SYMBOL vmlinux 0xd348def3 pcibios_resource_to_bus EXPORT_SYMBOL vmlinux 0xd3525480 param_ops_ushort EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc EXPORT_SYMBOL vmlinux 0xd35f75a1 match_string EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd37d32aa setattr_should_drop_sgid -EXPORT_SYMBOL vmlinux 0xd391c25b __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xd389fcab ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0xd39fa6ab __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xd3b1a802 reuseport_select_sock EXPORT_SYMBOL vmlinux 0xd3bed452 set_capacity EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear EXPORT_SYMBOL vmlinux 0xd3f40d8c pci_get_slot -EXPORT_SYMBOL vmlinux 0xd3f4f25c kernel_read -EXPORT_SYMBOL vmlinux 0xd3faa5ac ___pskb_trim +EXPORT_SYMBOL vmlinux 0xd4018da1 sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd40d33c5 dev_lstats_read EXPORT_SYMBOL vmlinux 0xd40ed2e2 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL vmlinux 0xd43298d7 sock_set_keepalive EXPORT_SYMBOL vmlinux 0xd44103e6 pm8606_osc_enable EXPORT_SYMBOL vmlinux 0xd4432a96 pci_request_region -EXPORT_SYMBOL vmlinux 0xd443581a i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xd4435cf9 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xd45d6741 of_phy_connect EXPORT_SYMBOL vmlinux 0xd45ddb66 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xd46ab4d5 qdisc_put EXPORT_SYMBOL vmlinux 0xd46b54dd flush_delayed_work EXPORT_SYMBOL vmlinux 0xd4728cc2 backlight_device_get_by_name EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed -EXPORT_SYMBOL vmlinux 0xd4b89a17 napi_complete_done +EXPORT_SYMBOL vmlinux 0xd4ad90b4 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xd4b962ed tcp_parse_options EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain EXPORT_SYMBOL vmlinux 0xd4bf34b1 dquot_get_state +EXPORT_SYMBOL vmlinux 0xd4cb6306 eth_platform_get_mac_address EXPORT_SYMBOL vmlinux 0xd4e2f0e4 gen_pool_set_algo EXPORT_SYMBOL vmlinux 0xd4f396b3 of_node_put EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd513633d udp_ioctl EXPORT_SYMBOL vmlinux 0xd51f30bd iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xd5204d53 __ip_options_compile EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd529d62a sk_stream_error EXPORT_SYMBOL vmlinux 0xd557c704 page_mapping EXPORT_SYMBOL vmlinux 0xd57b3f25 __register_chrdev +EXPORT_SYMBOL vmlinux 0xd57ee90f bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0xd5822b08 d_genocide EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd59798f7 vfs_symlink -EXPORT_SYMBOL vmlinux 0xd5a461d6 xfrm_init_state EXPORT_SYMBOL vmlinux 0xd5a8f741 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xd5ab51a6 __bforget -EXPORT_SYMBOL vmlinux 0xd5ab600c devfreq_monitor_start EXPORT_SYMBOL vmlinux 0xd5adf8b0 iget_locked -EXPORT_SYMBOL vmlinux 0xd5af6962 sock_init_data_uid EXPORT_SYMBOL vmlinux 0xd5b2e605 sget_fc EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5b9953c tcp_init_sock EXPORT_SYMBOL vmlinux 0xd5c635aa snd_pcm_period_elapsed_under_stream_lock EXPORT_SYMBOL vmlinux 0xd5ccac8d param_set_hexint -EXPORT_SYMBOL vmlinux 0xd5e82831 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xd5f4d36a phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xd5d7e2cc kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xd5f1270b neigh_carrier_down EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xd5fa032c done_path_create EXPORT_SYMBOL vmlinux 0xd5ffa4a7 discard_new_inode -EXPORT_SYMBOL vmlinux 0xd605cbd7 sk_alloc +EXPORT_SYMBOL vmlinux 0xd60581ad tcp_time_wait EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd609bb11 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0xd6215dbd md_write_end EXPORT_SYMBOL vmlinux 0xd627480b strncat EXPORT_SYMBOL vmlinux 0xd63fafc2 div64_u64_rem -EXPORT_SYMBOL vmlinux 0xd6547c6b writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xd64b1109 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xd64e4b5f skb_flow_dissect_meta EXPORT_SYMBOL vmlinux 0xd6582ab0 xa_extract EXPORT_SYMBOL vmlinux 0xd66b3f80 redraw_screen EXPORT_SYMBOL vmlinux 0xd66f9a7b param_ops_string +EXPORT_SYMBOL vmlinux 0xd678b6bc read_cache_pages EXPORT_SYMBOL vmlinux 0xd67f8bcc dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xd687ea9b block_write_begin EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create EXPORT_SYMBOL vmlinux 0xd6887a4b page_pool_destroy EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read EXPORT_SYMBOL vmlinux 0xd6bae0d3 snd_sgbuf_get_chunk_size EXPORT_SYMBOL vmlinux 0xd6bc04ff cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xd6c17292 xfrm_find_acq EXPORT_SYMBOL vmlinux 0xd6c1d6d0 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xd6c366db dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xd6c60ae8 key_link EXPORT_SYMBOL vmlinux 0xd6e87e26 nvdimm_namespace_common_probe EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced EXPORT_SYMBOL vmlinux 0xd7019dd3 fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0xd705735a filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70f925b udp_lib_unhash EXPORT_SYMBOL vmlinux 0xd7216ebf rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0xd730865b grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xd732ca03 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xd73150a6 has_capability +EXPORT_SYMBOL vmlinux 0xd7317825 tcp_filter EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd73b96f8 skb_vlan_push -EXPORT_SYMBOL vmlinux 0xd75a512f skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xd76c4a3c get_unmapped_area EXPORT_SYMBOL vmlinux 0xd76f6099 vscnprintf -EXPORT_SYMBOL vmlinux 0xd774834f ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0xd78d5a57 ps2_drain -EXPORT_SYMBOL vmlinux 0xd7959b01 unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd79a809a file_fdatawait_range EXPORT_SYMBOL vmlinux 0xd7a209b5 dquot_scan_active -EXPORT_SYMBOL vmlinux 0xd7be4d35 netif_device_detach EXPORT_SYMBOL vmlinux 0xd7c5a29c mod_node_page_state EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7dde370 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xd7e226cc memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7e56ec2 blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler @@ -10586,92 +10427,100 @@ EXPORT_SYMBOL vmlinux 0xd7ee0b08 ucc_of_parse_tdm EXPORT_SYMBOL vmlinux 0xd7f17c0b rproc_resource_cleanup EXPORT_SYMBOL vmlinux 0xd7fd7f20 get_tree_nodev EXPORT_SYMBOL vmlinux 0xd80ba945 mdiobb_write -EXPORT_SYMBOL vmlinux 0xd8176faa skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xd81c7e7b can_nice EXPORT_SYMBOL vmlinux 0xd8410611 mempool_alloc -EXPORT_SYMBOL vmlinux 0xd8474562 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xd851dc02 vfs_unlink -EXPORT_SYMBOL vmlinux 0xd8656a33 netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0xd8665e5e eth_gro_complete -EXPORT_SYMBOL vmlinux 0xd868624c __module_get +EXPORT_SYMBOL vmlinux 0xd841917d flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0xd850186a reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xd853a685 scsi_host_lookup EXPORT_SYMBOL vmlinux 0xd86b61c4 _raw_spin_lock_irq EXPORT_SYMBOL vmlinux 0xd875584a __genradix_ptr +EXPORT_SYMBOL vmlinux 0xd8770f70 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xd882c9cd tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0xd8920133 pci_choose_state EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone EXPORT_SYMBOL vmlinux 0xd89ee11f krait_set_l2_indirect_reg EXPORT_SYMBOL vmlinux 0xd8a028b6 pci_find_resource EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8aa0901 netlink_ns_capable EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8b7f85f genl_notify +EXPORT_SYMBOL vmlinux 0xd8ba4f1e jbd2_journal_ack_err EXPORT_SYMBOL vmlinux 0xd8be05f2 dquot_commit -EXPORT_SYMBOL vmlinux 0xd8caad18 skb_free_datagram EXPORT_SYMBOL vmlinux 0xd8d39552 scsi_is_target_device EXPORT_SYMBOL vmlinux 0xd8dbb79b mipi_dsi_shutdown_peripheral EXPORT_SYMBOL vmlinux 0xd8ea6ea1 kobject_init -EXPORT_SYMBOL vmlinux 0xd8eefb47 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xd90d901e tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xd90ef1c9 rtnl_create_link -EXPORT_SYMBOL vmlinux 0xd9133c70 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xd91486c0 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd91fc7ef tcp_ioctl EXPORT_SYMBOL vmlinux 0xd93858b3 iunique -EXPORT_SYMBOL vmlinux 0xd940adf2 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xd9480d67 sock_set_reuseport EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack +EXPORT_SYMBOL vmlinux 0xd95c3481 scsi_eh_prep_cmnd EXPORT_SYMBOL vmlinux 0xd96a76ae flush_dcache_page -EXPORT_SYMBOL vmlinux 0xd9758609 ptp_clock_register +EXPORT_SYMBOL vmlinux 0xd97a0470 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xd982ff0a ptp_clock_event EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd992c70a sockfd_lookup EXPORT_SYMBOL vmlinux 0xd9966dea snd_dma_alloc_pages +EXPORT_SYMBOL vmlinux 0xd99a263d netpoll_parse_options EXPORT_SYMBOL vmlinux 0xd9a00610 md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0xd9ac7722 page_symlink +EXPORT_SYMBOL vmlinux 0xd9a9e270 locks_free_lock +EXPORT_SYMBOL vmlinux 0xd9ad842f __inet_hash +EXPORT_SYMBOL vmlinux 0xd9b4ba83 inet_addr_type_table EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9cc21c3 __dev_get_by_index EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d116ef neigh_parms_alloc EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox EXPORT_SYMBOL vmlinux 0xd9dec4fa dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xd9ee1f2d filemap_fdatawait_keep_errors EXPORT_SYMBOL vmlinux 0xd9f69e4a ns_capable_setid +EXPORT_SYMBOL vmlinux 0xd9f7a12e register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0xda078ab8 ac97_bus_type -EXPORT_SYMBOL vmlinux 0xda102c3d rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0xda1466da nand_monolithic_read_page_raw -EXPORT_SYMBOL vmlinux 0xda1e3018 sock_efree -EXPORT_SYMBOL vmlinux 0xda1f14fb qdisc_hash_add -EXPORT_SYMBOL vmlinux 0xda36d959 filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0xda37cb2f tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xda2c6764 dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0xda37f062 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xda3cf17a scsi_device_set_state EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda452c4f mdiobus_write_nested EXPORT_SYMBOL vmlinux 0xda469b62 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0xda64cc6b __get_hash_from_flowi6 EXPORT_SYMBOL vmlinux 0xda65290f snd_unregister_device EXPORT_SYMBOL vmlinux 0xda6fc0b3 __percpu_counter_compare EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType EXPORT_SYMBOL vmlinux 0xda7de520 pci_disable_link_state EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xdaa1a79d tcp_ioctl +EXPORT_SYMBOL vmlinux 0xda8d5a46 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xda927d6a lookup_one_positive_unlocked EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac668cf of_phy_register_fixed_link EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw EXPORT_SYMBOL vmlinux 0xdaeb1381 elevator_alloc EXPORT_SYMBOL vmlinux 0xdaefb5b4 regset_get_alloc -EXPORT_SYMBOL vmlinux 0xdaf6098c locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0xdaf65445 vsnprintf -EXPORT_SYMBOL vmlinux 0xdaf67fa0 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xdb143cc1 register_filesystem +EXPORT_SYMBOL vmlinux 0xdb14533b __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0xdb25a65c input_alloc_absinfo EXPORT_SYMBOL vmlinux 0xdb339e93 pcie_capability_clear_and_set_word EXPORT_SYMBOL vmlinux 0xdb42dbb9 of_get_min_tck +EXPORT_SYMBOL vmlinux 0xdb4ac98e security_sb_clone_mnt_opts EXPORT_SYMBOL vmlinux 0xdb530441 mipi_dsi_dcs_set_display_off EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb77eb35 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0xdb81e2fc __wait_on_bit -EXPORT_SYMBOL vmlinux 0xdb93e098 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xdb8ebc30 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xdb94dfa5 jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0xdbaa16b1 snd_pcm_hw_refine +EXPORT_SYMBOL vmlinux 0xdbaaa0af kern_path_create EXPORT_SYMBOL vmlinux 0xdbad2e56 devm_pci_remap_cfgspace EXPORT_SYMBOL vmlinux 0xdbb3806e mfd_remove_devices EXPORT_SYMBOL vmlinux 0xdbbfee7f vfs_get_tree -EXPORT_SYMBOL vmlinux 0xdbd48b3f xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0xdbd84c42 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xdbcaadd2 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0xdbcb1a53 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbfd196b ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xdbf07c30 netif_rx +EXPORT_SYMBOL vmlinux 0xdbfa69ae generic_ro_fops +EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems EXPORT_SYMBOL vmlinux 0xdc258d02 cpumask_next_and +EXPORT_SYMBOL vmlinux 0xdc3e58d8 migrate_page_states EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 EXPORT_SYMBOL vmlinux 0xdc42749a pci_request_regions EXPORT_SYMBOL vmlinux 0xdc45c63f param_set_ushort @@ -10681,444 +10530,459 @@ EXPORT_SYMBOL vmlinux 0xdc530f00 pcim_iomap_regions_request_all EXPORT_SYMBOL vmlinux 0xdc5c7961 gen_pool_best_fit EXPORT_SYMBOL vmlinux 0xdc5fdd37 rawnand_sw_bch_init EXPORT_SYMBOL vmlinux 0xdc62daef __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xdc70fa97 xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0xdc81901a wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xdca4e4c8 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xdcb34b8f vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xdc9d1bed generic_fillattr +EXPORT_SYMBOL vmlinux 0xdcb438e2 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xdcd67f74 i2c_transfer +EXPORT_SYMBOL vmlinux 0xdcd8243f call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdcf58098 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xdce24d18 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xdcf1fec6 pagecache_get_page EXPORT_SYMBOL vmlinux 0xdcf6d045 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0xdd043038 scsi_host_alloc EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd164d5e netpoll_poll_disable EXPORT_SYMBOL vmlinux 0xdd1cf131 fs_param_is_path EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd380094 tcp_sock_set_syncnt EXPORT_SYMBOL vmlinux 0xdd509033 rproc_mem_entry_init EXPORT_SYMBOL vmlinux 0xdd5fb580 fb_show_logo -EXPORT_SYMBOL vmlinux 0xdd61b025 ip_local_deliver +EXPORT_SYMBOL vmlinux 0xdd745464 cancel_work EXPORT_SYMBOL vmlinux 0xdd7c1c2f truncate_setsize EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset EXPORT_SYMBOL vmlinux 0xdd81421f trace_print_symbols_seq_u64 -EXPORT_SYMBOL vmlinux 0xdd82045c sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xdd848608 neigh_direct_output EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd897abc __neigh_event_send +EXPORT_SYMBOL vmlinux 0xdd87b00f skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0xddc975bb cdev_device_add -EXPORT_SYMBOL vmlinux 0xddcbee50 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xddf703f5 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0xddefa69a nf_log_register +EXPORT_SYMBOL vmlinux 0xde0fc579 mem_map EXPORT_SYMBOL vmlinux 0xde0fe9af bio_devname -EXPORT_SYMBOL vmlinux 0xde21cb6f netif_set_xps_queue EXPORT_SYMBOL vmlinux 0xde27820f seq_dentry -EXPORT_SYMBOL vmlinux 0xde317bdc read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xde3d5641 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xde3d5df5 begin_new_exec EXPORT_SYMBOL vmlinux 0xde4bf88b __mutex_init -EXPORT_SYMBOL vmlinux 0xde4e91d1 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xde4f9358 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xde51e20e rtnl_unicast EXPORT_SYMBOL vmlinux 0xde55e795 _raw_spin_lock_irqsave EXPORT_SYMBOL vmlinux 0xde59092a lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xde67818f find_vma +EXPORT_SYMBOL vmlinux 0xde597c23 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xde5eb431 mmc_cqe_recovery EXPORT_SYMBOL vmlinux 0xde91bfe6 vc_cons -EXPORT_SYMBOL vmlinux 0xdeb6b69b xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xdeb43101 migrate_page_copy EXPORT_SYMBOL vmlinux 0xdecfbf67 drop_nlink EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdee5c5d1 rps_may_expire_flow EXPORT_SYMBOL vmlinux 0xdee7c600 seq_putc +EXPORT_SYMBOL vmlinux 0xdee8f411 __register_binfmt EXPORT_SYMBOL vmlinux 0xdeed3569 pci_free_irq EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode EXPORT_SYMBOL vmlinux 0xdf04e8bd pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0xdf08a55b snd_card_disconnect EXPORT_SYMBOL vmlinux 0xdf0da8ae _copy_from_iter EXPORT_SYMBOL vmlinux 0xdf1897d2 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xdf1c27fb xfrm_replay_seqhi EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf378d81 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xdf37ccca napi_get_frags EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf3e05e6 netdev_bind_sb_channel_queue EXPORT_SYMBOL vmlinux 0xdf52def1 ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0xdf5379b1 i2c_smbus_read_word_data EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier EXPORT_SYMBOL vmlinux 0xdf573a21 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xdf57f139 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xdf620c31 blk_get_request +EXPORT_SYMBOL vmlinux 0xdf61478c generic_copy_file_range EXPORT_SYMBOL vmlinux 0xdf6984d8 kill_anon_super -EXPORT_SYMBOL vmlinux 0xdf82564c of_platform_device_create EXPORT_SYMBOL vmlinux 0xdf924a59 __tracepoint_kmem_cache_free EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf934c3f mmc_can_erase EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9b03a0 dev_change_flags +EXPORT_SYMBOL vmlinux 0xdfc8bcae unregister_qdisc EXPORT_SYMBOL vmlinux 0xdfca4915 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0xdfd055ed tcf_classify EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type EXPORT_SYMBOL vmlinux 0xdfdf7ff3 __quota_error EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi EXPORT_SYMBOL vmlinux 0xdfe46181 fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0xdfe7763e __ClearPageMovable -EXPORT_SYMBOL vmlinux 0xdfe97378 udp_pre_connect -EXPORT_SYMBOL vmlinux 0xdfebb5ac __skb_checksum_complete EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdff928de cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xdffa7ff7 arp_create EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe0341485 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xe03b6246 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xe03cd832 mdiobus_free EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 EXPORT_SYMBOL vmlinux 0xe0470c0b inode_needs_sync EXPORT_SYMBOL vmlinux 0xe05d1328 __alloc_pages EXPORT_SYMBOL vmlinux 0xe05fcec6 dma_set_mask +EXPORT_SYMBOL vmlinux 0xe0669e06 i2c_verify_client EXPORT_SYMBOL vmlinux 0xe071cf2a snd_sgbuf_get_page EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups -EXPORT_SYMBOL vmlinux 0xe08dc2ec inet_addr_type EXPORT_SYMBOL vmlinux 0xe091c977 list_sort EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start EXPORT_SYMBOL vmlinux 0xe0a8c870 config_group_init EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0bf4cb2 ppp_unregister_channel EXPORT_SYMBOL vmlinux 0xe0cacfb6 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0xe0cb2bcc inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xe0d884a8 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xe0e66127 rtnl_notify EXPORT_SYMBOL vmlinux 0xe0e801aa pcim_enable_device +EXPORT_SYMBOL vmlinux 0xe0eb9bc8 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xe0f6bb08 dev_add_pack +EXPORT_SYMBOL vmlinux 0xe108eadf dev_get_mac_address +EXPORT_SYMBOL vmlinux 0xe10ac6e7 device_get_mac_address EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe12bf21d jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xe137423e vm_map_pages_zero EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe14e4058 build_skb EXPORT_SYMBOL vmlinux 0xe153f436 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0xe16439a7 tcp_read_sock EXPORT_SYMBOL vmlinux 0xe1747d98 fs_bio_set -EXPORT_SYMBOL vmlinux 0xe182cea2 mmc_start_request -EXPORT_SYMBOL vmlinux 0xe186ddbd vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0xe19f927d xp_free -EXPORT_SYMBOL vmlinux 0xe1a31232 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xe184ee7b ppp_input +EXPORT_SYMBOL vmlinux 0xe1a6ce5c tc_cleanup_flow_action EXPORT_SYMBOL vmlinux 0xe1a9b2ff dma_fence_match_context -EXPORT_SYMBOL vmlinux 0xe1aa6082 tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0xe1bac783 filp_close +EXPORT_SYMBOL vmlinux 0xe1addda8 ip6_output +EXPORT_SYMBOL vmlinux 0xe1b259ad crypto_sha512_finup EXPORT_SYMBOL vmlinux 0xe1c5c86c generic_read_dir EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format EXPORT_SYMBOL vmlinux 0xe1e0c48a param_get_long EXPORT_SYMBOL vmlinux 0xe1fc566f nand_scan_with_ids +EXPORT_SYMBOL vmlinux 0xe205335d netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xe20b5853 __scsi_execute EXPORT_SYMBOL vmlinux 0xe212ff65 cpumask_any_but +EXPORT_SYMBOL vmlinux 0xe21af5e8 write_dirty_buffer EXPORT_SYMBOL vmlinux 0xe21cea64 fault_in_readable EXPORT_SYMBOL vmlinux 0xe21d6977 snd_card_new EXPORT_SYMBOL vmlinux 0xe220ce3f mipi_dsi_driver_unregister EXPORT_SYMBOL vmlinux 0xe22220b2 pci_dev_driver EXPORT_SYMBOL vmlinux 0xe2274a1c __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xe2295ab7 get_task_cred +EXPORT_SYMBOL vmlinux 0xe23ed966 inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0xe24e14b3 snd_info_create_module_entry -EXPORT_SYMBOL vmlinux 0xe24f4ea8 neigh_seq_start EXPORT_SYMBOL vmlinux 0xe257a8f3 of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xe263880e tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0xe266f098 xa_get_mark -EXPORT_SYMBOL vmlinux 0xe2725a08 tcp_sock_set_quickack EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe27aae81 nf_log_set +EXPORT_SYMBOL vmlinux 0xe276fd3e nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xe27eeb15 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xe29a4c05 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xe2ae02ff kernel_sendmsg EXPORT_SYMBOL vmlinux 0xe2b5f529 vfs_get_super -EXPORT_SYMBOL vmlinux 0xe2bc6ac9 fddi_type_trans EXPORT_SYMBOL vmlinux 0xe2c33abc pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xe2c50b0c ata_std_end_eh EXPORT_SYMBOL vmlinux 0xe2cd8bf6 bio_split EXPORT_SYMBOL vmlinux 0xe2d467c4 gic_pmr_sync EXPORT_SYMBOL vmlinux 0xe2d47398 crc_ccitt_false EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e2d62a gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xe2e5cf87 skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user EXPORT_SYMBOL vmlinux 0xe2eafcf2 simple_link EXPORT_SYMBOL vmlinux 0xe2f316c6 snd_pci_quirk_lookup EXPORT_SYMBOL vmlinux 0xe2f3d99f rename_lock EXPORT_SYMBOL vmlinux 0xe3053513 to_nd_btt -EXPORT_SYMBOL vmlinux 0xe315b4b9 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0xe31c8c58 vfs_fadvise +EXPORT_SYMBOL vmlinux 0xe31e1d91 __ip_dev_find EXPORT_SYMBOL vmlinux 0xe32163b0 _snd_ctl_add_follower EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe32d1bb8 snd_soc_alloc_ac97_component +EXPORT_SYMBOL vmlinux 0xe3326595 sync_inodes_sb EXPORT_SYMBOL vmlinux 0xe3355d5f pci_select_bars +EXPORT_SYMBOL vmlinux 0xe3443b5f mmc_set_blocklen EXPORT_SYMBOL vmlinux 0xe3482046 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0xe353717c dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xe3495eaa __inet_stream_connect EXPORT_SYMBOL vmlinux 0xe364ff13 irq_domain_set_info EXPORT_SYMBOL vmlinux 0xe3668f6f md_bitmap_update_sb EXPORT_SYMBOL vmlinux 0xe374237c seq_read -EXPORT_SYMBOL vmlinux 0xe37b15a3 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xe3742a4e vfs_fileattr_set EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 EXPORT_SYMBOL vmlinux 0xe3a7a137 unregister_mtd_chip_driver EXPORT_SYMBOL vmlinux 0xe3a90dfa radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0xe3b60026 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xe3a9d885 security_socket_socketpair EXPORT_SYMBOL vmlinux 0xe3c0e3a3 ilookup -EXPORT_SYMBOL vmlinux 0xe3c6946e ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xe3cbe23d skb_orphan_partial EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3ef1f7e nf_register_net_hooks 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 0xe4007c07 init_pseudo -EXPORT_SYMBOL vmlinux 0xe40e53a3 _dev_notice +EXPORT_SYMBOL vmlinux 0xe41885ab unix_detach_fds EXPORT_SYMBOL vmlinux 0xe428464e dma_fence_wait_timeout EXPORT_SYMBOL vmlinux 0xe432a2fc __blockdev_direct_IO EXPORT_SYMBOL vmlinux 0xe43a3047 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xe458ba82 mmc_calc_max_discard EXPORT_SYMBOL vmlinux 0xe46bd7e2 pci_restore_state +EXPORT_SYMBOL vmlinux 0xe46e6ca4 qdisc_warn_nonwc EXPORT_SYMBOL vmlinux 0xe4750637 nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL vmlinux 0xe4787106 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xe480b14e __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xe481272c mmc_detect_card_removed EXPORT_SYMBOL vmlinux 0xe4989b58 sync_file_create +EXPORT_SYMBOL vmlinux 0xe49c82f4 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xe4a1aaf6 __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0xe4a71ea9 snd_pcm_period_elapsed +EXPORT_SYMBOL vmlinux 0xe4be7aba register_qdisc EXPORT_SYMBOL vmlinux 0xe4bf357a uart_get_divisor EXPORT_SYMBOL vmlinux 0xe4c2abc3 bdev_read_only +EXPORT_SYMBOL vmlinux 0xe4c3e6b5 neigh_ifdown EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid -EXPORT_SYMBOL vmlinux 0xe4eb50f8 netif_device_attach -EXPORT_SYMBOL vmlinux 0xe502bb57 netif_skb_features -EXPORT_SYMBOL vmlinux 0xe520ad90 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xe4dc37a1 netlink_ack +EXPORT_SYMBOL vmlinux 0xe512335d inet_del_offload +EXPORT_SYMBOL vmlinux 0xe517da0d no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xe51b7ba2 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xe5223198 jbd2_fc_wait_bufs EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq EXPORT_SYMBOL vmlinux 0xe5253e85 truncate_inode_pages EXPORT_SYMBOL vmlinux 0xe526ce24 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0xe533c7ab jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xe53f6f6f bh_submit_read +EXPORT_SYMBOL vmlinux 0xe542024b f_setown EXPORT_SYMBOL vmlinux 0xe549b763 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xe558491c _dev_crit EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL vmlinux 0xe5722cf0 finish_swait 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 0xe594e579 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xe5924388 flow_block_cb_priv EXPORT_SYMBOL vmlinux 0xe598965f of_n_size_cells +EXPORT_SYMBOL vmlinux 0xe5a0ad4f netif_receive_skb EXPORT_SYMBOL vmlinux 0xe5b1fe67 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xe5c73191 scsi_set_medium_removal EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen EXPORT_SYMBOL vmlinux 0xe5cc2e89 pci_bus_write_config_dword EXPORT_SYMBOL vmlinux 0xe5efcf80 snd_seq_root +EXPORT_SYMBOL vmlinux 0xe5f6dfe6 scsi_command_normalize_sense EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any EXPORT_SYMBOL vmlinux 0xe62cdb0e memcpy_and_pad +EXPORT_SYMBOL vmlinux 0xe63b3c99 set_create_files_as +EXPORT_SYMBOL vmlinux 0xe63d9eee tcf_em_tree_destroy EXPORT_SYMBOL vmlinux 0xe645aaf8 of_match_device -EXPORT_SYMBOL vmlinux 0xe663c3a8 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xe68f1a9b dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xe64866cc mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xe66f8b03 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xe68dd87f ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0xe692723a iget5_locked EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe6a308b8 twl6040_set_bits EXPORT_SYMBOL vmlinux 0xe6aad539 dget_parent EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack EXPORT_SYMBOL vmlinux 0xe6db989b ecc_sw_hamming_correct EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv -EXPORT_SYMBOL vmlinux 0xe70d71a4 file_open_root +EXPORT_SYMBOL vmlinux 0xe71750a9 scsi_host_alloc EXPORT_SYMBOL vmlinux 0xe7252c58 __put_user_ns EXPORT_SYMBOL vmlinux 0xe72845d2 snd_timer_new EXPORT_SYMBOL vmlinux 0xe7288461 kmem_cache_free_bulk EXPORT_SYMBOL vmlinux 0xe72969f2 dma_async_tx_descriptor_init EXPORT_SYMBOL vmlinux 0xe72bb300 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xe72e9f21 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf EXPORT_SYMBOL vmlinux 0xe73ff3a3 page_pool_return_skb_page EXPORT_SYMBOL vmlinux 0xe745b028 pps_register_source -EXPORT_SYMBOL vmlinux 0xe749eddf skb_copy -EXPORT_SYMBOL vmlinux 0xe7682408 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xe749e92a mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xe752c6c0 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0xe7568be8 tcp_poll EXPORT_SYMBOL vmlinux 0xe76af6f6 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0xe778f72a key_move EXPORT_SYMBOL vmlinux 0xe77e1f34 snd_pcm_open_substream EXPORT_SYMBOL vmlinux 0xe77eabe0 inode_insert5 +EXPORT_SYMBOL vmlinux 0xe7802571 __sk_dst_check EXPORT_SYMBOL vmlinux 0xe78169b5 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0xe7909106 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xe7aa6af0 xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0xe7cb69df __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xe78cc12b unregister_netdev +EXPORT_SYMBOL vmlinux 0xe793af45 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xe7b71238 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xe7bcf1a8 vfs_ioctl +EXPORT_SYMBOL vmlinux 0xe7d3d0a3 dump_align EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7d63ce9 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0xe7d80fe7 kill_pgrp EXPORT_SYMBOL vmlinux 0xe7e4d52a _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xe7e93461 netlink_ack -EXPORT_SYMBOL vmlinux 0xe7ef00c1 nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0xe7f2e3a2 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xe7fdef1a tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0xe7ffd759 nvdimm_check_and_set_ro EXPORT_SYMBOL vmlinux 0xe8025019 dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xe80b31d5 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xe81836b9 netif_skb_features EXPORT_SYMBOL vmlinux 0xe81b7fff add_watch_to_object +EXPORT_SYMBOL vmlinux 0xe82b4fd9 iptun_encaps +EXPORT_SYMBOL vmlinux 0xe8300f09 skb_ext_add EXPORT_SYMBOL vmlinux 0xe842dc8c dma_fence_get_stub EXPORT_SYMBOL vmlinux 0xe84c4438 fb_blank EXPORT_SYMBOL vmlinux 0xe85bd437 unpin_user_page_range_dirty_lock EXPORT_SYMBOL vmlinux 0xe863cc34 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xe86d1e88 xfrm_state_update -EXPORT_SYMBOL vmlinux 0xe886ca35 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xe89cc8f5 scsi_free_host_dev EXPORT_SYMBOL vmlinux 0xe8a2103b pci_scan_bus -EXPORT_SYMBOL vmlinux 0xe8ac7ef6 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xe8bb8314 module_put -EXPORT_SYMBOL vmlinux 0xe8bc1383 unregister_netdev EXPORT_SYMBOL vmlinux 0xe8cb65d4 t10_pi_type1_ip EXPORT_SYMBOL vmlinux 0xe8cd0a2c crc32_le_shift -EXPORT_SYMBOL vmlinux 0xe8d70354 unix_detach_fds -EXPORT_SYMBOL vmlinux 0xe8d8b34c register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0xe8ddc741 neigh_connected_output -EXPORT_SYMBOL vmlinux 0xe8e3d0b9 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xe8eacb17 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xe8f51da4 nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0xe8fdcd7c debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xe9014e69 __hw_addr_ref_unsync_dev EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe92b1aee __vfs_setxattr EXPORT_SYMBOL vmlinux 0xe9325f03 downgrade_write EXPORT_SYMBOL vmlinux 0xe9386fa1 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0xe94a8074 poll_freewait +EXPORT_SYMBOL vmlinux 0xe94c731e security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xe94ea8c4 kfree_skb_list EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino EXPORT_SYMBOL vmlinux 0xe96d7527 rpmh_invalidate +EXPORT_SYMBOL vmlinux 0xe97acc1d dev_remove_pack EXPORT_SYMBOL vmlinux 0xe97ef1c7 __traceiter_kmalloc_node -EXPORT_SYMBOL vmlinux 0xe9928f04 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0xe986d91a twl6040_get_pll EXPORT_SYMBOL vmlinux 0xe994c5bb free_cgroup_ns EXPORT_SYMBOL vmlinux 0xe9965d6c generic_set_encrypted_ci_d_ops EXPORT_SYMBOL vmlinux 0xe99b7111 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0xe9b46310 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xe9c72f27 inet_csk_prepare_forced_close EXPORT_SYMBOL vmlinux 0xe9cbf734 radix_tree_gang_lookup EXPORT_SYMBOL vmlinux 0xe9e10bd8 configfs_register_group EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9f936fb jbd2_journal_invalidatepage EXPORT_SYMBOL vmlinux 0xea041924 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0xea10103e __phy_resume +EXPORT_SYMBOL vmlinux 0xea0f8aaf udp_read_sock +EXPORT_SYMBOL vmlinux 0xea11e44b tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xea14148a udp_prot EXPORT_SYMBOL vmlinux 0xea2b20cf nand_ecc_sw_hamming_init_ctx EXPORT_SYMBOL vmlinux 0xea2f97b0 input_register_device EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea6f4a45 __bread_gfp +EXPORT_SYMBOL vmlinux 0xea5097bd tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0xea50a486 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xea6044f5 sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea74370e tcf_exts_change +EXPORT_SYMBOL vmlinux 0xea72684f mdiobus_get_phy EXPORT_SYMBOL vmlinux 0xea77fcbc snd_jack_new EXPORT_SYMBOL vmlinux 0xea78a3bc pci_find_bus EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -EXPORT_SYMBOL vmlinux 0xea835486 sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0xea8f2ad6 single_open_size EXPORT_SYMBOL vmlinux 0xea99e181 unlock_new_inode EXPORT_SYMBOL vmlinux 0xeaa0d775 devm_memunmap -EXPORT_SYMBOL vmlinux 0xeaa7d718 xfrm_state_add EXPORT_SYMBOL vmlinux 0xeabf13a8 scsi_partsize -EXPORT_SYMBOL vmlinux 0xead13dd3 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xeaed76c1 vfs_get_link -EXPORT_SYMBOL vmlinux 0xeaf248ff mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xeacf27ef ip_defrag +EXPORT_SYMBOL vmlinux 0xeaf2d23d iw_handler_get_spy EXPORT_SYMBOL vmlinux 0xeaf38139 pci_remove_bus EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeafc8e6e __ip_options_compile EXPORT_SYMBOL vmlinux 0xeb0087b4 path_has_submounts EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl +EXPORT_SYMBOL vmlinux 0xeb082e41 bh_submit_read +EXPORT_SYMBOL vmlinux 0xeb2edeb4 mdiobus_read EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb3f0bd8 send_sig -EXPORT_SYMBOL vmlinux 0xeb479d94 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xeb3870f5 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xeb4408ea sk_common_release EXPORT_SYMBOL vmlinux 0xeb53178a crc8 EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r EXPORT_SYMBOL vmlinux 0xeb6cf93c jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0xeb7c54e1 vfs_readlink -EXPORT_SYMBOL vmlinux 0xeb7cd3ff vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xeb84d770 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xeb998f00 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xeb7d8562 genphy_config_eee_advert EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xebb1c057 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xeba12b01 vfs_symlink +EXPORT_SYMBOL vmlinux 0xeba73de0 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xebb6e8e7 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xebc1fc2e skb_put EXPORT_SYMBOL vmlinux 0xebc7fe55 setattr_should_drop_suidgid -EXPORT_SYMBOL vmlinux 0xebd142e1 jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0xebdcf316 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0xebf22af3 sock_create_kern +EXPORT_SYMBOL vmlinux 0xebd073c6 skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high EXPORT_SYMBOL vmlinux 0xec002bea disk_stack_limits -EXPORT_SYMBOL vmlinux 0xec296090 tcp_conn_request -EXPORT_SYMBOL vmlinux 0xec29f6fb mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xec0eeaac zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xec11c187 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xec1ba0ef vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xec28bda7 netif_set_xps_queue EXPORT_SYMBOL vmlinux 0xec30c1c3 dmam_pool_create EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start EXPORT_SYMBOL vmlinux 0xec37a2e8 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xec4230a9 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0xec49a836 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xec49f36a reuseport_has_conns_set EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec4de7fa migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0xec4f1ba4 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xec5fd2b5 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0xecb5b42c unregister_qdisc -EXPORT_SYMBOL vmlinux 0xecc17f81 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xecc4294c peernet2id -EXPORT_SYMBOL vmlinux 0xece6b788 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xec8f64c5 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xecacd0a7 security_path_rename +EXPORT_SYMBOL vmlinux 0xecafc576 sock_no_accept +EXPORT_SYMBOL vmlinux 0xecd122c9 phy_driver_register +EXPORT_SYMBOL vmlinux 0xece4d1df xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xece4e0a9 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xece50e43 devfreq_add_governor EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xece9935c wireless_send_event EXPORT_SYMBOL vmlinux 0xecec77b5 d_obtain_alias EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl -EXPORT_SYMBOL vmlinux 0xed04088c sock_bind_add -EXPORT_SYMBOL vmlinux 0xed29aac2 sock_no_mmap -EXPORT_SYMBOL vmlinux 0xed491031 kern_path_create +EXPORT_SYMBOL vmlinux 0xed04cce0 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xed0fce1c jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xed3732c4 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xed3f4417 kernel_accept EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock -EXPORT_SYMBOL vmlinux 0xed60b235 netif_carrier_on EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed88fd60 inet6_release -EXPORT_SYMBOL vmlinux 0xed940bdc netdev_alert -EXPORT_SYMBOL vmlinux 0xeda87bd9 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xed980b2a jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xedb30818 dst_release_immediate EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap EXPORT_SYMBOL vmlinux 0xedd12d2e tty_unthrottle -EXPORT_SYMBOL vmlinux 0xedd48626 noop_qdisc EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 -EXPORT_SYMBOL vmlinux 0xede7b360 sk_page_frag_refill EXPORT_SYMBOL vmlinux 0xedef71de _copy_to_iter EXPORT_SYMBOL vmlinux 0xedfe59c2 configfs_remove_default_groups EXPORT_SYMBOL vmlinux 0xee02a44f gen_replace_estimator EXPORT_SYMBOL vmlinux 0xee1240f4 set_cached_acl -EXPORT_SYMBOL vmlinux 0xee1baaa9 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xee26a6db kern_unmount_array +EXPORT_SYMBOL vmlinux 0xee12a76d xfrm_state_alloc EXPORT_SYMBOL vmlinux 0xee28d69d of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xee2cd329 skb_set_owner_w EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable EXPORT_SYMBOL vmlinux 0xee2eb27f __devm_release_region +EXPORT_SYMBOL vmlinux 0xee36abef security_unix_stream_connect EXPORT_SYMBOL vmlinux 0xee43fd9b ___ratelimit EXPORT_SYMBOL vmlinux 0xee49faa6 mdio_driver_unregister EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee605c84 tc_setup_cb_call EXPORT_SYMBOL vmlinux 0xee689582 of_root EXPORT_SYMBOL vmlinux 0xee6cba60 snd_timer_stop EXPORT_SYMBOL vmlinux 0xee6e57d8 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xee738d5d xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0xee764a4a ps2_init -EXPORT_SYMBOL vmlinux 0xee779d7e skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xee86e458 xfrm_unregister_km EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8c1f24 flow_rule_match_mpls 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 0xeea4a322 inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb48e00 mmc_free_host -EXPORT_SYMBOL vmlinux 0xeed60b2c mmc_erase +EXPORT_SYMBOL vmlinux 0xeed5895f km_new_mapping EXPORT_SYMBOL vmlinux 0xeed76d7d set_posix_acl EXPORT_SYMBOL vmlinux 0xeedc7ed3 mdio_device_register +EXPORT_SYMBOL vmlinux 0xeee0ad0e tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init EXPORT_SYMBOL vmlinux 0xeefaa4a2 unregister_nls -EXPORT_SYMBOL vmlinux 0xef0407e5 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xef131de0 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xef18fad9 security_sock_graft +EXPORT_SYMBOL vmlinux 0xef1fce7b netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0xef362e27 nd_btt_probe -EXPORT_SYMBOL vmlinux 0xef4476a7 dst_destroy +EXPORT_SYMBOL vmlinux 0xef4271c1 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0xef460ce0 napi_disable EXPORT_SYMBOL vmlinux 0xef4cad92 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0xef60410f phy_do_ioctl EXPORT_SYMBOL vmlinux 0xef64769e __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xef649188 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xef6ae4b0 devfreq_monitor_stop EXPORT_SYMBOL vmlinux 0xef7c61e4 d_alloc_name +EXPORT_SYMBOL vmlinux 0xef7c9ece i2c_register_driver EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xef8de2a7 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xef8f9e24 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xef9067ac mr_table_alloc EXPORT_SYMBOL vmlinux 0xef929f0e pcie_set_readrq EXPORT_SYMBOL vmlinux 0xef93abef dquot_transfer -EXPORT_SYMBOL vmlinux 0xefae606c dst_discard_out -EXPORT_SYMBOL vmlinux 0xefc41dbf skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xefa09428 migrate_page +EXPORT_SYMBOL vmlinux 0xefde99f5 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xefe3799d dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0xefeb4933 generic_file_fsync EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0085440 of_clk_get EXPORT_SYMBOL vmlinux 0xf01528a4 dim_turn EXPORT_SYMBOL vmlinux 0xf02a6977 queue_rcu_work -EXPORT_SYMBOL vmlinux 0xf03a7520 netlink_capable EXPORT_SYMBOL vmlinux 0xf03febb7 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xf04f4815 tcp_connect EXPORT_SYMBOL vmlinux 0xf06cee2c radix_tree_replace_slot EXPORT_SYMBOL vmlinux 0xf0721339 is_bad_inode EXPORT_SYMBOL vmlinux 0xf092ed69 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0xf0932f28 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0a1e882 mdiobus_write EXPORT_SYMBOL vmlinux 0xf0a343ed release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf0a63f23 netdev_master_upper_dev_get EXPORT_SYMBOL vmlinux 0xf0b1d37f max8925_set_bits -EXPORT_SYMBOL vmlinux 0xf0c7b704 phy_aneg_done EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb EXPORT_SYMBOL vmlinux 0xf0ef52e8 down EXPORT_SYMBOL vmlinux 0xf102732a crc16 EXPORT_SYMBOL vmlinux 0xf108715e dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0xf10b3d90 fib_default_rule_add EXPORT_SYMBOL vmlinux 0xf11264da snd_pcm_new EXPORT_SYMBOL vmlinux 0xf1141dc4 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xf11dce75 nf_log_packet EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf12df1f6 scmd_printk EXPORT_SYMBOL vmlinux 0xf1333787 fb_get_mode -EXPORT_SYMBOL vmlinux 0xf13a0aaa netlink_set_err -EXPORT_SYMBOL vmlinux 0xf1592f69 passthru_features_check +EXPORT_SYMBOL vmlinux 0xf138d768 account_page_redirty +EXPORT_SYMBOL vmlinux 0xf13f70df inet_dgram_ops EXPORT_SYMBOL vmlinux 0xf15f93be inode_update_time EXPORT_SYMBOL vmlinux 0xf166aa73 copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0xf16d7178 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xf16a4020 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xf176e62f inet_csk_complete_hashdance 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 0xf197c494 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xf1aab537 sync_filesystem +EXPORT_SYMBOL vmlinux 0xf1ba4f03 ipmi_platform_add EXPORT_SYMBOL vmlinux 0xf1bb6d4e seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xf1c38e60 inet_put_port -EXPORT_SYMBOL vmlinux 0xf1c7d580 security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0xf1d6627e ip_frag_init EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy EXPORT_SYMBOL vmlinux 0xf1e046cc panic EXPORT_SYMBOL vmlinux 0xf1e332cd pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xf1e52995 fiemap_prep EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 EXPORT_SYMBOL vmlinux 0xf1ee94af pci_pme_active @@ -11126,223 +10990,239 @@ EXPORT_SYMBOL vmlinux 0xf1f10a5e fb_find_mode EXPORT_SYMBOL vmlinux 0xf1f224c4 textsearch_destroy EXPORT_SYMBOL vmlinux 0xf1f42a2a contig_page_data EXPORT_SYMBOL vmlinux 0xf1fd3d79 cfb_imageblit -EXPORT_SYMBOL vmlinux 0xf204ce2d sock_gettstamp -EXPORT_SYMBOL vmlinux 0xf2183035 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xf20e8974 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xf213c305 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xf21e914c tcp_sendmsg EXPORT_SYMBOL vmlinux 0xf22b2172 d_find_any_alias EXPORT_SYMBOL vmlinux 0xf236c75e swake_up_one -EXPORT_SYMBOL vmlinux 0xf2389d88 dev_get_by_index EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf25f2fa8 readahead_expand +EXPORT_SYMBOL vmlinux 0xf247526c unlock_rename +EXPORT_SYMBOL vmlinux 0xf2656750 blackhole_netdev +EXPORT_SYMBOL vmlinux 0xf2703d51 skb_push +EXPORT_SYMBOL vmlinux 0xf270f6fc unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0xf273f381 misc_register EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf2900427 of_mdio_find_device -EXPORT_SYMBOL vmlinux 0xf2950bf2 block_truncate_page -EXPORT_SYMBOL vmlinux 0xf2a4183d xp_raw_get_dma EXPORT_SYMBOL vmlinux 0xf2ad80d9 snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL vmlinux 0xf2bc584f __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xf2bc5431 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xf2bdc38e netdev_change_features EXPORT_SYMBOL vmlinux 0xf2c30cb3 unregister_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2c73a90 scsi_target_resume EXPORT_SYMBOL vmlinux 0xf2d10cba input_reset_device EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf30a6542 xp_dma_map EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf3151b44 __traceiter_module_get EXPORT_SYMBOL vmlinux 0xf3153d0d dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xf3190a33 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xf32bac52 path_is_mountpoint EXPORT_SYMBOL vmlinux 0xf3391ca2 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xf34509f0 gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf3481522 phy_drivers_register EXPORT_SYMBOL vmlinux 0xf348ff41 bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf34f185f udp_lib_get_port EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier EXPORT_SYMBOL vmlinux 0xf3565709 put_watch_queue +EXPORT_SYMBOL vmlinux 0xf358a10a xp_free EXPORT_SYMBOL vmlinux 0xf362dc7f arm_clear_user -EXPORT_SYMBOL vmlinux 0xf365f6e5 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xf36b0135 __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0xf36b87a3 textsearch_unregister EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf377234d xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xf38ab382 scsi_remove_device EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3921bba inet_stream_connect EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused EXPORT_SYMBOL vmlinux 0xf394e3db sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0xf39ad887 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xf39dec93 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xf39f3178 tso_start EXPORT_SYMBOL vmlinux 0xf3a11c35 xa_find_after EXPORT_SYMBOL vmlinux 0xf3b0c013 mipi_dsi_device_register_full EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3bc1211 dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0xf3c49b98 pci_enable_wake EXPORT_SYMBOL vmlinux 0xf3d0b495 _raw_spin_unlock_irqrestore EXPORT_SYMBOL vmlinux 0xf3d7c6fc proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xf3d9ee43 phy_print_status +EXPORT_SYMBOL vmlinux 0xf3de2eff ppp_unregister_compressor EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e4a414 scsi_report_bus_reset EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal EXPORT_SYMBOL vmlinux 0xf3eb1323 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xf401fe4c __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xf3efe44a iterate_fd EXPORT_SYMBOL vmlinux 0xf4030f85 vga_put EXPORT_SYMBOL vmlinux 0xf403fd50 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xf40c8612 netif_schedule_queue EXPORT_SYMBOL vmlinux 0xf41de45b of_lpddr3_get_ddr_timings -EXPORT_SYMBOL vmlinux 0xf42f664d ipv6_chk_addr EXPORT_SYMBOL vmlinux 0xf44a3ad4 __tracepoint_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier EXPORT_SYMBOL vmlinux 0xf45d6553 tty_do_resize EXPORT_SYMBOL vmlinux 0xf46a5ae6 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0xf46cbf15 generic_perform_write +EXPORT_SYMBOL vmlinux 0xf4716bb3 udp_ioctl EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf482df1b dst_cow_metrics_generic EXPORT_SYMBOL vmlinux 0xf4859f2d clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xf486e8f7 xfrm6_rcv EXPORT_SYMBOL vmlinux 0xf496fbd2 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xf49a9fb5 nf_log_set EXPORT_SYMBOL vmlinux 0xf49d34c6 of_io_request_and_map EXPORT_SYMBOL vmlinux 0xf4a04498 nmi_panic -EXPORT_SYMBOL vmlinux 0xf4b23391 gro_cells_init +EXPORT_SYMBOL vmlinux 0xf4a8eb9a pipe_unlock +EXPORT_SYMBOL vmlinux 0xf4a8fb36 jbd2_journal_check_available_features EXPORT_SYMBOL vmlinux 0xf4b31502 dquot_claim_space_nodirty EXPORT_SYMBOL vmlinux 0xf4ba246e ZSTD_nextSrcSizeToDecompress EXPORT_SYMBOL vmlinux 0xf4baa334 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0xf4bb7e19 __traceiter_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area EXPORT_SYMBOL vmlinux 0xf4c6745a dma_supported EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4e28d87 submit_bio EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f25991 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xf4f33b0b ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xf4fd25ca proc_remove -EXPORT_SYMBOL vmlinux 0xf4fd9198 napi_gro_flush -EXPORT_SYMBOL vmlinux 0xf5010ea9 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xf525b794 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xf5044625 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xf50b66ed flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xf50d3d23 km_query +EXPORT_SYMBOL vmlinux 0xf510fdd3 module_layout EXPORT_SYMBOL vmlinux 0xf52896e9 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0xf532afc8 skb_checksum -EXPORT_SYMBOL vmlinux 0xf53891b6 dst_release_immediate EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf5467de1 skb_split EXPORT_SYMBOL vmlinux 0xf558ac00 page_mapped EXPORT_SYMBOL vmlinux 0xf55c723d super_setup_bdi EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp -EXPORT_SYMBOL vmlinux 0xf574fbd2 __scm_send -EXPORT_SYMBOL vmlinux 0xf5789646 security_d_instantiate -EXPORT_SYMBOL vmlinux 0xf57adc32 udplite_prot -EXPORT_SYMBOL vmlinux 0xf589abdb ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0xf57882ba security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xf5ab5838 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xf5b2bc11 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0xf5b666ef __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xf5bd09c4 netlink_broadcast_filtered EXPORT_SYMBOL vmlinux 0xf5c6a7a5 input_unregister_handler -EXPORT_SYMBOL vmlinux 0xf5cb8a7f finish_open -EXPORT_SYMBOL vmlinux 0xf5d45ce9 vm_map_pages EXPORT_SYMBOL vmlinux 0xf5db30ae gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0xf5dcd916 phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0xf5e0d2d6 key_reject_and_link EXPORT_SYMBOL vmlinux 0xf5e1761c kmem_cache_free -EXPORT_SYMBOL vmlinux 0xf5e27712 genphy_write_mmd_unsupported EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5f0da2e init_net +EXPORT_SYMBOL vmlinux 0xf5e9e98e copy_string_kernel +EXPORT_SYMBOL vmlinux 0xf5f841a0 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xf5f962b7 ip4_datagram_connect EXPORT_SYMBOL vmlinux 0xf5fcb7c9 set_nlink +EXPORT_SYMBOL vmlinux 0xf60c36a8 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xf617673f prepare_kernel_cred EXPORT_SYMBOL vmlinux 0xf61ebb61 __serio_register_port +EXPORT_SYMBOL vmlinux 0xf624e465 send_sig EXPORT_SYMBOL vmlinux 0xf6259c3e task_work_add EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx -EXPORT_SYMBOL vmlinux 0xf63b08ac nobh_write_end +EXPORT_SYMBOL vmlinux 0xf6380031 console_start EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 EXPORT_SYMBOL vmlinux 0xf64868b0 rproc_get_by_phandle EXPORT_SYMBOL vmlinux 0xf64bf255 wait_for_completion +EXPORT_SYMBOL vmlinux 0xf651edb9 netif_rx_ni EXPORT_SYMBOL vmlinux 0xf652d359 __wake_up_bit -EXPORT_SYMBOL vmlinux 0xf652f54d __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xf65cc015 tcp_seq_stop EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module EXPORT_SYMBOL vmlinux 0xf6733415 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xf67c4ef1 _dev_printk EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68d671d dev_alloc_name -EXPORT_SYMBOL vmlinux 0xf6a09102 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xf689635e __udp_disconnect EXPORT_SYMBOL vmlinux 0xf6b17214 nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL vmlinux 0xf6da8583 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xf6c691fd skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xf6c6de8e sock_no_connect +EXPORT_SYMBOL vmlinux 0xf6ccf345 skb_try_coalesce EXPORT_SYMBOL vmlinux 0xf6e4df71 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xf6e665f6 i2c_verify_adapter EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6ed5dd2 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xf6eda4c7 inode_sub_bytes EXPORT_SYMBOL vmlinux 0xf6eed130 simple_open EXPORT_SYMBOL vmlinux 0xf6f9b713 d_tmpfile EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor EXPORT_SYMBOL vmlinux 0xf705fa49 gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0xf70b6be2 ip6_err_gen_icmpv6_unreach EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb -EXPORT_SYMBOL vmlinux 0xf72757ec generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xf721cc07 file_path EXPORT_SYMBOL vmlinux 0xf7311989 bio_free_pages -EXPORT_SYMBOL vmlinux 0xf7359bfa mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0xf7412c6a msi_desc_to_pci_dev EXPORT_SYMBOL vmlinux 0xf7469aa5 pcie_get_width_cap EXPORT_SYMBOL vmlinux 0xf759bbba backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xf7658d63 page_cache_next_miss EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf77e4054 sched_autogroup_detach EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod EXPORT_SYMBOL vmlinux 0xf78d6014 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xf790f3b8 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0xf7d9eed5 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0xf7f28f13 sock_no_getname +EXPORT_SYMBOL vmlinux 0xf7aa930a sk_stop_timer +EXPORT_SYMBOL vmlinux 0xf7c63d5f rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xf7db4bd8 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xf7db58e9 skb_pull +EXPORT_SYMBOL vmlinux 0xf7ebe6ab netdev_info +EXPORT_SYMBOL vmlinux 0xf7f8c781 __cpuhp_remove_state EXPORT_SYMBOL vmlinux 0xf801415c unlock_two_nondirectories EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf8199e6e ipv6_getsockopt EXPORT_SYMBOL vmlinux 0xf81d5d0e d_add_ci EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82dd59d finish_no_open EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf830995c phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xf8313741 set_page_dirty_lock EXPORT_SYMBOL vmlinux 0xf838fd97 dim_park_on_top +EXPORT_SYMBOL vmlinux 0xf85861be pskb_extract EXPORT_SYMBOL vmlinux 0xf863eedd page_pool_put_page EXPORT_SYMBOL vmlinux 0xf86f27cd idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xf8735e0c dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xf87e5682 kern_unmount EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf88b232d devm_devfreq_add_device EXPORT_SYMBOL vmlinux 0xf88c2ee9 serio_rescan -EXPORT_SYMBOL vmlinux 0xf89c802a __i2c_transfer -EXPORT_SYMBOL vmlinux 0xf8bd5642 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xf8c28440 neigh_lookup -EXPORT_SYMBOL vmlinux 0xf8d079c6 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xf8e5a582 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xf8eb6ced sock_alloc +EXPORT_SYMBOL vmlinux 0xf88d870a skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xf88e6281 filp_open +EXPORT_SYMBOL vmlinux 0xf890c7e5 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xf8ed5cce console_stop EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var EXPORT_SYMBOL vmlinux 0xf9096a29 kobject_get -EXPORT_SYMBOL vmlinux 0xf90bc3f3 device_get_mac_address EXPORT_SYMBOL vmlinux 0xf91158c6 cdev_add EXPORT_SYMBOL vmlinux 0xf920775f uart_update_timeout EXPORT_SYMBOL vmlinux 0xf922edf8 get_tree_keyed +EXPORT_SYMBOL vmlinux 0xf92bbac4 __ip_select_ident EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf9499f33 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xf964f1cf scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xf967b0b9 file_open_root EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf98a75d5 netpoll_poll_dev EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a76484 udp_poll +EXPORT_SYMBOL vmlinux 0xf9b17994 mr_table_dump +EXPORT_SYMBOL vmlinux 0xf9b1edcd __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0xf9ba6f5d md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xf9d39f23 kernel_accept EXPORT_SYMBOL vmlinux 0xf9d6741e param_ops_short +EXPORT_SYMBOL vmlinux 0xf9d8d36c init_task EXPORT_SYMBOL vmlinux 0xf9d9726b snd_pcm_hw_constraint_ratdens EXPORT_SYMBOL vmlinux 0xf9dc9d13 proc_dobool EXPORT_SYMBOL vmlinux 0xf9ea7ca6 uart_resume_port EXPORT_SYMBOL vmlinux 0xf9f0c951 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0xf9faf0f2 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xf9fe3129 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xfa021373 unlock_page +EXPORT_SYMBOL vmlinux 0xf9fbed18 fget EXPORT_SYMBOL vmlinux 0xfa021f90 ZSTD_decompressContinue EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa22d180 free_buffer_head -EXPORT_SYMBOL vmlinux 0xfa264366 netif_carrier_off -EXPORT_SYMBOL vmlinux 0xfa309950 mount_subtree -EXPORT_SYMBOL vmlinux 0xfa34ee3c fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xfa166f14 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xfa283d91 inet_ioctl EXPORT_SYMBOL vmlinux 0xfa351ce2 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xfa387d26 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xfa3b184b neigh_xmit +EXPORT_SYMBOL vmlinux 0xfa4395ef xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa65c879 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xfa5be414 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xfa6684a7 vfs_getattr EXPORT_SYMBOL vmlinux 0xfa72be38 xa_get_order -EXPORT_SYMBOL vmlinux 0xfa77bf45 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0xfa7aa1f9 skb_tx_error EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed EXPORT_SYMBOL vmlinux 0xfa9633c9 kset_register EXPORT_SYMBOL vmlinux 0xfa97c1ba pci_iomap -EXPORT_SYMBOL vmlinux 0xfaa093c0 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0xfaa64ab7 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xfab9d388 dev_get_port_parent_id EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfaf2b349 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xfaf2f21b ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xfaf87126 scsi_print_command EXPORT_SYMBOL vmlinux 0xfb10d699 posix_acl_update_mode EXPORT_SYMBOL vmlinux 0xfb172866 page_pool_put_page_bulk EXPORT_SYMBOL vmlinux 0xfb1d7438 down_read -EXPORT_SYMBOL vmlinux 0xfb2142de tcp_rcv_state_process EXPORT_SYMBOL vmlinux 0xfb2b4a15 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xfb2b66bc filp_open EXPORT_SYMBOL vmlinux 0xfb336634 mempool_destroy EXPORT_SYMBOL vmlinux 0xfb340504 __dquot_free_space EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf EXPORT_SYMBOL vmlinux 0xfb4a77b3 from_kgid -EXPORT_SYMBOL vmlinux 0xfb502830 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0xfb528c20 tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0xfb54276f d_add EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending EXPORT_SYMBOL vmlinux 0xfb705185 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0xfb75ba3f skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock @@ -11350,46 +11230,57 @@ EXPORT_SYMBOL vmlinux 0xfbab1e4c nand_ecc_prepare_io_req EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense EXPORT_SYMBOL vmlinux 0xfbb1c51b snd_card_file_add EXPORT_SYMBOL vmlinux 0xfbbe9f2c devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xfbc4c235 vfs_rename EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbcce482 mdiobus_register_device EXPORT_SYMBOL vmlinux 0xfbd13519 pci_find_parent_resource EXPORT_SYMBOL vmlinux 0xfbdfd3f1 ioremap_wc EXPORT_SYMBOL vmlinux 0xfbe7ed7c snd_card_set_id EXPORT_SYMBOL vmlinux 0xfbea611e _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xfbeaa702 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0xfbefe32d splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xfbf27b8e devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xfbfc380d tcf_action_update_stats EXPORT_SYMBOL vmlinux 0xfbfd7e4c set_groups EXPORT_SYMBOL vmlinux 0xfc2a1f84 kset_unregister EXPORT_SYMBOL vmlinux 0xfc31eec2 _raw_read_lock_irq EXPORT_SYMBOL vmlinux 0xfc32ba36 rproc_shutdown +EXPORT_SYMBOL vmlinux 0xfc36cfca filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xfc3917d8 udp6_seq_ops EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap EXPORT_SYMBOL vmlinux 0xfc3f3589 strscpy_pad EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0xfc73b196 skb_vlan_untag EXPORT_SYMBOL vmlinux 0xfc781bae blk_queue_bounce_limit EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available -EXPORT_SYMBOL vmlinux 0xfcc57b24 of_phy_find_device +EXPORT_SYMBOL vmlinux 0xfca67fae phy_device_register +EXPORT_SYMBOL vmlinux 0xfcbf38bb vlan_vid_add EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfce5d04b sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xfcded14f put_cmsg EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfd011f02 skb_eth_push +EXPORT_SYMBOL vmlinux 0xfcf433c1 tcp_check_req EXPORT_SYMBOL vmlinux 0xfd113990 unregister_md_personality -EXPORT_SYMBOL vmlinux 0xfd164072 generic_splice_sendpage EXPORT_SYMBOL vmlinux 0xfd1a4888 kmem_cache_alloc_bulk EXPORT_SYMBOL vmlinux 0xfd1bc346 __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xfd20089a skb_queue_purge EXPORT_SYMBOL vmlinux 0xfd248e16 serial8250_do_set_termios EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe +EXPORT_SYMBOL vmlinux 0xfd4afd1b noop_llseek EXPORT_SYMBOL vmlinux 0xfd541f2d d_drop EXPORT_SYMBOL vmlinux 0xfd5797c4 input_event EXPORT_SYMBOL vmlinux 0xfd64cd48 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0xfd79ecc5 d_path +EXPORT_SYMBOL vmlinux 0xfd82a996 ipv6_mc_check_mld EXPORT_SYMBOL vmlinux 0xfd8715b0 __snd_pcm_lib_xfer -EXPORT_SYMBOL vmlinux 0xfda533a3 inode_permission +EXPORT_SYMBOL vmlinux 0xfd9d8244 blk_put_request +EXPORT_SYMBOL vmlinux 0xfd9ea4c9 dev_addr_add EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 EXPORT_SYMBOL vmlinux 0xfdbadd73 rdmacg_try_charge EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd4d94f dentry_open +EXPORT_SYMBOL vmlinux 0xfddbdc05 twl6040_get_sysclk EXPORT_SYMBOL vmlinux 0xfddf2ee5 snd_pcm_lib_free_pages -EXPORT_SYMBOL vmlinux 0xfde31aa1 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xfde87bec scsi_device_put +EXPORT_SYMBOL vmlinux 0xfdefa17e kernel_listen EXPORT_SYMBOL vmlinux 0xfdf4cff0 neigh_proc_dointvec_jiffies EXPORT_SYMBOL vmlinux 0xfdf6e6bb snd_card_free_when_closed EXPORT_SYMBOL vmlinux 0xfdfe3b5c dquot_initialize @@ -11397,77 +11288,78 @@ EXPORT_SYMBOL vmlinux 0xfdff94e0 ZSTD_initDStream EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier EXPORT_SYMBOL vmlinux 0xfe0a42ff shrink_dcache_sb EXPORT_SYMBOL vmlinux 0xfe171764 ioremap_page +EXPORT_SYMBOL vmlinux 0xfe1c66d1 try_to_free_buffers EXPORT_SYMBOL vmlinux 0xfe1d0cf8 of_graph_get_endpoint_by_regs EXPORT_SYMBOL vmlinux 0xfe279976 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0xfe2c1143 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xfe29ec11 vm_map_pages EXPORT_SYMBOL vmlinux 0xfe314fb9 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xfe334496 kernel_bind -EXPORT_SYMBOL vmlinux 0xfe3a8b41 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0xfe40e08d __lock_sock_fast EXPORT_SYMBOL vmlinux 0xfe41829c xa_store_range -EXPORT_SYMBOL vmlinux 0xfe478488 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xfe445e0f xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry EXPORT_SYMBOL vmlinux 0xfe5c5efb cpu_tlb EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz EXPORT_SYMBOL vmlinux 0xfe72951a of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xfe7cb306 security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0xfe90c4a6 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0xfe95c517 tcf_action_dump_1 EXPORT_SYMBOL vmlinux 0xfe97cd0b ps2_command -EXPORT_SYMBOL vmlinux 0xfea89407 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xfeaa97dc xp_alloc EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info EXPORT_SYMBOL vmlinux 0xfeb6a65f dma_pool_create EXPORT_SYMBOL vmlinux 0xfeb7ee3d input_get_poll_interval -EXPORT_SYMBOL vmlinux 0xfed4f21a __SetPageMovable +EXPORT_SYMBOL vmlinux 0xfecbc6b0 xfrm_unregister_type EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfef38edf __skb_free_datagram_locked EXPORT_SYMBOL vmlinux 0xfefa9113 bio_put EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff05d09f flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0xff0b162c do_clone_file_range EXPORT_SYMBOL vmlinux 0xff1343bd dquot_free_inode -EXPORT_SYMBOL vmlinux 0xff19cf0e blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff21d429 vm_insert_pages -EXPORT_SYMBOL vmlinux 0xff27f517 xfrm_unregister_type EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register EXPORT_SYMBOL vmlinux 0xff373757 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xff388867 napi_consume_skb EXPORT_SYMBOL vmlinux 0xff389884 processor +EXPORT_SYMBOL vmlinux 0xff397772 inet_frag_kill EXPORT_SYMBOL vmlinux 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0xff59f558 ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0xff5f8f4d param_get_int 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 0xff741a82 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL vmlinux 0xff8aed9a xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0xff8c2e5a radix_tree_tag_get EXPORT_SYMBOL vmlinux 0xff8c88af mipi_dsi_dcs_set_display_brightness_large EXPORT_SYMBOL vmlinux 0xff8d41c0 serio_interrupt EXPORT_SYMBOL vmlinux 0xff9610ee qcom_scm_assign_mem EXPORT_SYMBOL vmlinux 0xff996450 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0xffa17988 skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit EXPORT_SYMBOL vmlinux 0xffbfb4ae snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0xffc87301 __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt EXPORT_SYMBOL vmlinux 0xffd83cb1 snd_compr_free_pages EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn EXPORT_SYMBOL vmlinux 0xfff2399e unload_nls -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 0x0634fcfa af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0x0a431d1e af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x12cdd69d af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x1c68e58b af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x288fd91c af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x2a9351f3 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x565806ab af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x5c9c5051 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x5e419d2a af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x70d4373a af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x9e2aaa63 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xbc61c3ee af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0xbcff40c2 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0xbf355aa5 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xcb2aca40 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0xcb4077b3 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xcd415201 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xfe8be56b af_alg_register_type +EXPORT_SYMBOL vmlinux 0xfff7d8d7 dst_alloc +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x4b63f7af sha1_finup_arm +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xbb1c3fc7 sha1_update_arm +EXPORT_SYMBOL_GPL crypto/af_alg 0x028e9879 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x10477c09 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x12071d4f af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x24ccf7ff af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x2ada8a39 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x39493987 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x5e2af61a af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x66cfcc86 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x7335af4c af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x7e1c29e8 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x8783a6c5 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x98dbccc0 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xa103d4f2 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xadb9c646 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xc8ff32ca af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xd9158efd af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xf626dce7 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xfd9f8858 af_alg_release EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xd7fb2cd0 asym_tpm_subtype EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x35726e39 async_memcpy @@ -11496,42 +11388,42 @@ 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 0x0e6de07f cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x4d4b4861 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x65038afd cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x6efcfa51 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x6f36429b cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x7154b821 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x73183bce cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x7cbf1fc0 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x8856cf5d cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x9c6151d7 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xc80d7399 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xe230e45f cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xebd21090 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x047559fc crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x08677763 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x12f06ee2 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x449f9e07 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x543d989f crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6c813cd5 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7a9a0a68 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8671b129 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb6097b79 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc63ee997 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xea35d33e crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xeb19742a crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf012aea1 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x0010c921 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/cryptd 0x0cbe8f62 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x2e780c96 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x3fd4ade1 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x4f1e6691 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x51d7352e cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x51d8d5c0 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x8681781f cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xa6210ee0 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xb52c4348 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xb7211d93 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xc83ac3ae cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xdcb5d72c cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xe8989356 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x011b855c crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x15e9ae39 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x205348f4 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x348e7ec6 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x510e58a0 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x557e5de3 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x57c2c7fe crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x588d0427 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x77de9b73 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc068c5c5 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc59e87ed crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd1a9050c crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdcf41c8c crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x17a4ba8d simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x49ff3124 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 0x7c745988 simd_unregister_aeads EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xc7f9374b simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xd2310002 simd_unregister_aeads EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xf1090a60 simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xf52409da 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 @@ -11619,81 +11511,81 @@ EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x229ed49d __devm_regmap_init EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x45156113 __regmap_init_spmi_ext EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x9895da1d __devm_regmap_init_w1 EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xd46c3389 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1425753c bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x16d3c24c bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x22068adc bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x451d3370 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4b0451a2 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4fa63af9 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x52797d4f bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x559e4968 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6250bfa4 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7b053c6a bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x84e07761 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9f1001b7 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9ff26adb bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa41d55e7 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa9ef3c94 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xad706656 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb27c57e7 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb54fe4ad bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc58781aa bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc8444d26 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd49f9cf9 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd4ed272d bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdbb8953a __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeda992c2 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0061d1cf btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x11e5d1e6 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3e56b81f btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5a1cb1bc btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7c343c18 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x914b81b2 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb475849a btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc763c973 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0f6bdaa9 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2b269798 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3d5fa7e1 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x557f0122 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5de3c866 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5f5a95f2 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6341f999 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x782460ad btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7ba31277 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x808d244d btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x86706709 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9d18c47d btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa7b2ab3b btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa98dd7ad btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd19d6d3f btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfed07a64 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x12b3b0a2 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x14dd1fa4 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x317f65fa btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x700fdcd7 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8af705bb btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa3477ca1 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaa977295 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc3521665 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc8e4d75f btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd4fc1072 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe4aa9ad7 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x12bdbc9c qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7b0e56b8 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x83e68ee7 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xdd67f013 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xeb5e8316 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x2472efc0 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3d3ee5cf btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x52b5d736 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x083a506e bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0e93fea4 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1b4bc277 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x24e2c14c bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x25024f40 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2dddbf2b bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x35794553 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x510a1838 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5f86ed67 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x65071234 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x70f203c8 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x755107e5 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x892e5c40 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x945409e0 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa32d0a0f bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbbd9d162 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc83de7dc bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd57bc1e7 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd7542393 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe548062e bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe8c5d18a bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf132eb00 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf6a089f2 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf734d0bb bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x12945cbf btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x374938a5 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x432be0cb btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6c1f0218 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x779aa6f1 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa17eb0f4 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc5544f2a btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xdad34f8a btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x010b0be9 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x140a1182 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x235686d9 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x247f8b9d btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x36df33ab btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x38504a52 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3b66352a btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x58984ad2 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x95281e21 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa0a2946e btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa317bfc7 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xac7f565e btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb08edefe btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc65274c3 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd4932757 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe44dc3e9 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0417a2f6 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0cf0b4d7 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2dc3d919 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3add3586 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4d70f96e btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x88847cdf btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa57e5d26 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbb5c9e85 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xed6893a3 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfadcc152 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfc60906b btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x03591a50 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x14937cc8 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x56a99e3c qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x583ab8ee qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xa14b90a0 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x5337dfee btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x5d4064fa btrtl_download_firmware EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc3782643 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd45bb7c9 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xdb48c811 btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x1631caae h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x882bb5a4 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x94929e81 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xf813f956 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb2230752 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd733d920 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf8f21f81 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xfb4975d3 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x5007e6a6 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x6c59a58b h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xeef5924c hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xf02d7ba2 hci_uart_unregister_device EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x09360b15 mhi_device_get_sync EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0b94066b mhi_unregister_controller EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0eb4cdec mhi_queue_dma @@ -11734,11 +11626,10 @@ 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 0x16b8f3f0 qcom_cc_really_probe 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 0x1a142e7c clk_alpha_pll_fixed_trion_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x20e87455 qcom_cc_map -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x23edc60c qcom_cc_probe_by_index 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 @@ -11750,9 +11641,9 @@ 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 0x3e38c838 qcom_cc_register_board_clk -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3fdca3fc qcom_cc_really_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 0x43260fa9 qcom_cc_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x496ca9c0 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 @@ -11762,6 +11653,7 @@ 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 EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x63ee9aa4 clk_alpha_pll_fixed_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x64973ef9 qcom_cc_map 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 @@ -11786,6 +11678,7 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa1c15587 devm_clk_register_regmap 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 +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb48c579b 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 @@ -11796,7 +11689,6 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc6a05db2 clk_fabia_pll_configure 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 0xd59c31c7 qcom_cc_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd7ab6782 clk_alpha_pll_postdiv_lucid_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe34a7f9f clk_regmap_phy_mux_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe6e14638 clk_alpha_pll_fabia_ops @@ -11959,46 +11851,46 @@ EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x01f897c2 fsl_edma_cleanup_vchan EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x10479280 fsl_edma_free_chan_resources EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x12844035 fsl_edma_prep_dma_cyclic EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x167592c2 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x52b87c61 fsl_edma_setup_regs EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6f75fcf6 fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8242a109 fsl_edma_chan_mux EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9c2c62ad fsl_edma_free_desc EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa251b0be fsl_edma_resume EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa2614863 fsl_edma_pause EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xac075ebb fsl_edma_tx_status EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb2d58c61 fsl_edma_issue_pending EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb589ad27 fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb8e9d79a fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xba7e2463 fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc9c6a671 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc7072b2c fsl_edma_chan_mux EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xca9b48e6 fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x7168f8a4 hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xc4923c50 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xcdb84cf0 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd8ebd3c1 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x6e2d1b84 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xd6f5c4a8 hidma_mgmt_setup EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0xc41a5636 get_scpi_ops EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x577b9904 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x01d1a0a9 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x02368fb4 dfl_fpga_dev_feature_init EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x170da0d4 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1970da2e dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x40d1a1c3 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x465e65c7 dfl_feature_ioctl_get_num_irqs EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x48d4a933 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4fd881e7 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4bdd6116 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4ef210c0 dfl_fpga_check_port_id EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5024b10c dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x63004a1f dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6a83dfbf __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x751897f7 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x521c2e64 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6df60554 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x72732d8c dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8adf31bf dfl_fpga_port_ops_add EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8f4675a9 dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9fa2107b dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x939564fd dfl_fpga_port_ops_put EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa87019ec dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaf400c4a dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaf65998e dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb1dd54b4 __dfl_fpga_cdev_find_port EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc3ed5531 dfl_fpga_enum_info_alloc EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc7107e8c dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc809ec90 dfl_fpga_dev_ops_unregister EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc8d59d41 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc96419eb dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcd787342 dfl_fpga_set_irq_triggers EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcdd39585 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd1d035d6 dfl_fpga_port_ops_del EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd62dff24 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xde1e47be dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xee1c704e dfl_fpga_dev_feature_init 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 0x2c8167cf fpga_bridges_disable @@ -12035,21 +11927,21 @@ EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3435578b fpga_region_class_find EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3a636a40 devm_fpga_region_create EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x96b78ee4 fpga_region_unregister EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe11e7dea fpga_region_create -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x134720a3 fsi_device_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x2c115c06 fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x2f5de65a fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x2f8b2113 fsi_cdev_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x32a631c4 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x10b2100b fsi_master_unregister EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x495d9afd fsi_master_rescan 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 0x7ecdbe4d fsi_device_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x97891e3c fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x6f0303bb fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x768b0972 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x785f54f5 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7936f564 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8bef444c fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x936baee3 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa5dd4631 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc45811e9 fsi_bus_type EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xcf8c881b fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd2ce9ce3 fsi_get_new_minor EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe4ac7aa2 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe54fc23d fsi_master_register EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xd5c15f15 fsi_occ_submit EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x37fd5b5d sbefifo_submit EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x8bfa44b4 sbefifo_parse_status @@ -12079,11 +11971,13 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe4978c9d anx_dp EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xfa9cd509 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 0x0b82c5d8 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 0x397bd5c2 dw_hdmi_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x664854ed dw_hdmi_set_plugged_cb @@ -12092,18 +11986,16 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_ph EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8c56146d dw_hdmi_set_high_tmds_clock_ratio 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 0x9b44a60b dw_hdmi_phy_gen2_pddq -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xbb924784 dw_hdmi_bind 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/bridge/synopsys/dw-hdmi 0xfb42f0e4 dw_hdmi_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 0x2bcaa71a 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 0xb604aded dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x6a60b5a0 dw_mipi_dsi_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0089859a drm_of_lvds_get_dual_link_pixel_order EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x050b3430 drm_do_get_edid EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x05c3b7c6 drm_gem_cma_prime_import_sg_table @@ -12173,10 +12065,10 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xe519bf1c meson_vclk_vic_sup EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x4a82f323 s6e63m0_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xb20a72b5 s6e63m0_remove EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0xde06e321 pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x27366621 rcar_cmm_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x570e9aa9 rcar_cmm_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x705e3097 rcar_cmm_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xfdad41f8 rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x2ac441b3 rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x4ed259de rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x509bca29 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xfc14a299 rcar_cmm_enable EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x776fe677 rcar_lvds_is_connected EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xcfceeabf rcar_lvds_clk_enable EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xd9d10bf1 rcar_lvds_dual_link @@ -12321,7 +12213,6 @@ EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfe1e193e ipu_cpmem_set_bursts EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xff142445 ipu_dp_get EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xff4508f3 ipu_get_num EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0203fb09 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x080fbcb5 greybus_register_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x09c55c8c gb_hd_cport_release_reserved EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x158a8186 __tracepoint_gb_hd_add @@ -12344,6 +12235,7 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6521914d gb_operation_put EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x67dc8b67 gb_operation_sync_timeout EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6a4d53eb __traceiter_gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x77d9808d greybus_register_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x79b696a5 gb_connection_disable_rx EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7a872314 gb_hd_output EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7bfa420b __tracepoint_gb_hd_release @@ -12362,6 +12254,7 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae385fc7 gb_connection_latency_tag_ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaf30e46f gb_operation_request_send_sync_timeout EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xafbc1544 gb_operation_get EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb13ce61a gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb2445bea greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb75a6922 gb_hd_cport_reserve EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb7dac26f __tracepoint_gb_message_submit EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc2da6dfb gb_hd_add @@ -12374,82 +12267,81 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeb4f918b __tracepoint_gb_hd_del EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeeffe908 gb_operation_get_payload_size_max EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf4552475 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf478c80b greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfb3de2dc gb_hd_shutdown EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x080dc915 hid_report_raw_event EXPORT_SYMBOL_GPL drivers/hid/hid 0x0930cf0e hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x16a06ac7 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x17e7122a __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d66071a hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x15b01de8 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1951e4aa hid_lookup_quirk EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1bc13f79 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x25560f80 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x330b2703 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x35284464 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e719727 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x40fdd7bd hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x420d14ee hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x47cd4211 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4ac0d058 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4c6671d7 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e840161 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x50e4cac1 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x537369af hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5896cbdb hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c704b70 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5e8fd274 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x62a6e265 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c651b3c hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x71ee61a7 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7d89e85f hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8365b941 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x86780e02 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x23dbce26 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x26cf1cf6 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2dbe7bb3 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3505a990 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3bca6ebd hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x40dbdcb4 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x41807aac hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x44490b64 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x45c0c2c2 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4984b711 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x60f8d8fa hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x645998ac hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x68077ea3 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x695eb086 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x826e5a34 hidinput_report_event EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d45dc3d hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d8e7569 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x966aebd6 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9aa145af hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa5200c15 hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa6a4b00f hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa99d6557 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0xad43ae2e hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb0f2a73a hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xba7c5b72 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc44a0bc1 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc4d87ee0 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc962fcbe hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc9e26a47 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc9eef565 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcac1a54c hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcd5e949a hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdcae606a hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xebc1f6ef hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b272f10 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d329510 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x96f6f0b3 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c400862 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c77a109 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c82c685 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9d4ed0ba hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9d5159f4 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaab01204 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaf4e6241 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaf695619 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbcf3324b hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbef06494 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc70f8810 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xca918c3a hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcdd0ebe8 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf7aca75 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2585376 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd52dc7a5 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd7b42c1b hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd7def714 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe25861f0 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe8982c05 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf1d5b8c9 hid_allocate_device EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x153d8c1b 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 0x8f7a95dc roccat_connect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0b85cced roccat_common2_sysfs_write EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2d294db2 roccat_common2_sysfs_read EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5ece3d3d roccat_common2_send_with_status EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x72bad726 roccat_common2_receive EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf5d72445 roccat_common2_send EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xfce2e788 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1c6dc90d sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3203c3a6 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x56aa4ab1 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5edbc255 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x63603177 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd75ebb6c sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd78205c5 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf49e8e70 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfca87538 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x0a46b041 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x05932797 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4b5222a1 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x64805231 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x826c3565 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa91ea9f4 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcb9cc552 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcbbc00d8 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd711ede0 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf1c589e2 sensor_hub_remove_callback EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x130cc94e i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x583d4567 i2c_hid_ll_driver EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x8d85ce0b i2c_hid_core_pm EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xc147469d i2c_hid_core_shutdown EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xe8c7fb83 i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/uhid 0x04f3ca3b uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x0247cc7b hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x4349bdbc usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x21f02f48 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x140e589a hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x4ee22b3f usb_hid_driver EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x06d7f294 hsi_event EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x22aa4e0a hsi_release_port EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x26326d8a hsi_register_controller @@ -12592,18 +12484,18 @@ EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xb48f0935 d EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xc827dd8d devm_iio_kfifo_buffer_setup_ext EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0xa366f90f bme680_core_probe EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0xaaa35a5b sps30_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x118085d7 cros_ec_sensors_core_init EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1460facf cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1895a64e cros_ec_sensors_core_write EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1a5ccfa3 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x4012b757 cros_ec_motion_send_host_cmd EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x4f37f3be cros_ec_sensors_read_lpc EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x53d0bcce cros_ec_sensors_push_data -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6fa73e33 cros_ec_sensors_core_read EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x797bbc3e cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x86e705d2 cros_ec_sensors_core_init EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9af13fd6 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xacd86a00 cros_ec_sensors_core_write EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xace35c30 cros_ec_sensors_core_register EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xdb02c354 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf93d8a7c cros_ec_motion_send_host_cmd EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x2cb75395 ad5592r_remove EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x6011add7 ad5592r_probe EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x2491178e ad5686_probe @@ -12635,6 +12527,7 @@ EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1942a80a iio_dealloc_pollfunc EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1d1372bb of_iio_channel_get_by_name EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20ce344a iio_format_value EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b0f01b6 iio_device_release_buffer_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ee1254e __devm_iio_trigger_register EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x47ba4054 iio_alloc_pollfunc EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d5c8641 iio_update_buffers @@ -12650,9 +12543,12 @@ EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6fa55fc2 iio_read_channel_scale EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73dbedc6 iio_show_mount_matrix EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x787abbbc iio_buffer_put EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7d0f6499 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x800bd536 iio_buffer_enabled EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x81256395 iio_write_channel_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8537e89b iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8d9f5655 iio_device_claim_buffer_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa4f30d0c iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xafd46560 iio_device_get_current_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb2066857 iio_enum_available_read EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb28ecb55 iio_enum_write EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbd8cdfa0 iio_channel_release @@ -12684,18 +12580,18 @@ EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x5a57f7b4 zpa2326_probe EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xa7c7e528 zpa2326_isreg_readable EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xd9c99d55 zpa2326_pm_ops EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0b2ee5fc rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1209da8b rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2760b7c9 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2df708b6 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3772973a rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb397ea8e rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb6888b42 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb836982b rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbcb3d13c rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdba99013 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdef7cad0 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe5f726e5 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x162e42d9 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x221a5bc1 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3cc1576c rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3df3b633 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x53f2c750 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x81e2abaa rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x83a41201 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8f541a71 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb84644ed rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf81611da rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfd7c414d rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xff74bf49 rtrs_cq_qp_create EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x0549a257 input_ff_create_memless EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x6f63341b matrix_keypad_parse_properties EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x0bc45ef0 adxl34x_probe @@ -12726,28 +12622,28 @@ EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2b796638 tsc200x_rem EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4c9fce46 tsc200x_probe EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xea994841 tsc200x_pm_ops EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xf7559a80 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3555d41b wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6089a58a wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6b5d6fd8 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x83c17586 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x904f571f wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcddadf10 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd3b77632 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe176c45d wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe441c9df wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf74b2f73 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf866683f wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf9ffd485 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0e5af92b wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2c79e034 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4bd8a96e wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6413857d wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6c4fc7fb wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6ebcf4ab wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8772a9f0 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8d2f4928 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9accb4aa wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa5f18a3b wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaf1dc8f9 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb56fc1b6 wm97xx_config_gpio 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 0x58ec4a53 of_bcm_voter_get EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x18232ba6 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x1fd59964 qcom_icc_rpmh_probe EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x33425d10 qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x3f263f68 qcom_icc_rpmh_remove EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x653c8742 qcom_icc_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xa8a86515 qcom_icc_rpmh_remove EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xdf75c033 qcom_icc_set EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xf1e9cec0 qcom_icc_xlate_extended -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xfd722efb qcom_icc_rpmh_probe EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send EXPORT_SYMBOL_GPL drivers/iommu/iova 0x0a8beabb put_iova_domain @@ -12797,65 +12693,64 @@ EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_s 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 0x03354af1 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x011f8aa6 __traceiter_bcache_btree_write 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 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 0x0c03c7e2 __traceiter_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0c8956ff __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0d804f7d __traceiter_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1623f8f1 __traceiter_bcache_btree_insert_key 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 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 0x1c8e41d7 __traceiter_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1e7f081b __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21156272 __traceiter_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x256d60a4 __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25bbd6d5 __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x26e4118c __traceiter_bcache_read_retry 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 0x2d07db1c __traceiter_bcache_request_end 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 0x3df6c7c8 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36ac3464 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x370bca09 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x387f5764 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4323f4e0 __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4771be2b __traceiter_bcache_bypass_sequential 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 0x53614100 __traceiter_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5a227cbf __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5c65dd1b __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f541c2a __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 0x5ff25efc __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6026e276 __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x60aa2c42 __traceiter_bcache_invalidate 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 0x674697eb __traceiter_bcache_btree_set_root 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 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 0x73acb174 __traceiter_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x77a29475 __traceiter_bcache_journal_entry_full 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 0x7b92b29b __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f1ccd9e __traceiter_bcache_read 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 0x8246d99f __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 0x87fd8b29 __traceiter_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8827eaaa __traceiter_bcache_invalidate 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 0x8d69764e __traceiter_bcache_write 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 0x98117dad __traceiter_bcache_alloc_fail 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 0x9c271314 __tracepoint_bcache_btree_read @@ -12864,32 +12759,33 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_jou EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d23546a __tracepoint_bcache_btree_set_root 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 0xa7c87162 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7db3216 __traceiter_bcache_journal_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 0xb3864b0a __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 0xbd998958 __traceiter_bcache_btree_read 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 0xcf12a58a __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd3324b86 __traceiter_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4e3543c __traceiter_bcache_btree_node_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 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 0xe161e0c9 __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe63ddf78 __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe754d114 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe7d0c23f __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xea7500b9 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeb9c797f __traceiter_bcache_journal_full 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 0xecc49c82 __traceiter_bcache_btree_node_alloc 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 0xf6c544ec __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7fba67a __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd627496 __traceiter_bcache_btree_node_split 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/bcache/bcache 0xfe4c26a4 __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0fe74be8 dm_cell_quiesce_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x107e6282 dm_cell_put_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create @@ -13143,10 +13039,10 @@ EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __ EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x16bd2eba vb2_core_queue_release EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x17313657 vb2_core_querybuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x182e2e3d vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1e08902a __traceiter_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x22a2a8ab vb2_request_buffer_cnt EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x339b9269 vb2_mmap EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3e4f21f4 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3f70f2c0 __traceiter_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x464c6636 vb2_read EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4ac46060 vb2_core_reqbufs EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x50e88274 vb2_core_qbuf @@ -13155,19 +13051,19 @@ EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5bc6fe34 vb EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5f9e9fbf __tracepoint_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6b9fa0ca vb2_write EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7a4ff3b6 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7d01753e __traceiter_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8d8f7cfd __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x97950eb5 __traceiter_vb2_buf_queue EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa48065c9 vb2_discard_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb09ad4a5 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb24ef876 __traceiter_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb7478495 __traceiter_vb2_buf_queue 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 0xba9da947 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 0xca0dad3a __traceiter_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcc7f324b vb2_core_queue_init EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe58a2770 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe8757ebf __traceiter_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe8da3d09 vb2_plane_cookie EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xeda69efb vb2_core_create_bufs EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf31fee79 vb2_plane_vaddr @@ -13219,12 +13115,107 @@ EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x332f8e3b dvb_module_probe EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x59d4538f dvb_create_media_graph EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xdd6c8a35 dvb_module_release EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xf84fbe69 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0x2ea0ffe5 ascot2e_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0x50b8305d atbm8830_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0x2b21318d au8522_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0x4337d7ce bcm3510_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0x5367cbc7 cx22700_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0xcc7290a2 cx22702_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0x487781a8 cx24110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0xe953949d cx24113_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0xb90215d0 cx24116_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x8655e1f1 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0x7f6cfe8c cx24120_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0x9fe09428 cx24123_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0xed9a8736 cxd2820r_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x35af869a cxd2841er_attach_t_c +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x6a9ee2a7 cxd2841er_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0x68ba9242 cxd2880_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0xecce7f4f dib0070_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0xa3d4ed05 dib0090_fw_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0xf5e041ce dib0090_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0xb90d7e77 dib3000mb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0x3ee7f2eb dib3000mc_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0x60c2726a dib7000m_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0x313c2541 dib7000p_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0x1d985d12 dib8000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0x08a1f1da dib9000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xee1b18f0 drx39xxj_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0xe64108c1 drxd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0x9510e814 drxk_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0x3e0cbbdb ds3000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0x15b2fe09 dvb_pll_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0xa8b1f541 ec100_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x7106c3d9 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x5e244f0f helene_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0xaa6f68b0 helene_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0x913295ee horus3a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0xd9c25ea0 isl6405_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0x524ccec9 isl6421_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0xaa60a353 isl6423_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0x3757a155 itd1000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0x4dfa7631 ix2505v_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0xe364bec3 l64781_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0x30cd81ff lg2160_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0xdf171502 lgdt3305_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0xc7f007ae lgdt3306a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0x05d21b51 lgdt330x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0x10e761cc lgs8gxx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0x11cc04f0 lnbh25_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0xa708bdd9 lnbp21_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0xca3c6956 lnbh24_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0xf46083b9 lnbp22_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0xc171a647 m88ds3103_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0x68c416bd m88rs2000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0x8ea0d7d3 mb86a16_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0x69704c20 mb86a20s_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0xa569ef3c mt312_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0x7b1a4e10 mt352_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x9cb89f85 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0xddec1cb8 nxt200x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0x332e8c39 nxt6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0x3f5f6c64 or51132_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0x67f63384 or51211_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0x6f16a9e3 s5h1409_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0xdb3aa352 s5h1411_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0x8fcd2ed6 s5h1420_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0xd58b8e8e s5h1432_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0xa644ecf8 s921_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0xc2995c28 si21xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0x2745d53a sp887x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0x9689b8c0 stb0899_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0x7aaf114b stb6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0x081306d8 stb6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0xff247e44 stv0288_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0x2a55746a stv0297_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0x47ec5e48 stv0299_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x1b0c1bf8 stv0367ddb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x2bfc05c2 stv0367ter_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xaaceffaf stv0367cab_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0xec59b398 stv0900_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0x041d6ba1 stv090x_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x01ac1725 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0xc7bed8fe stv6110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0xe87d88aa stv6110x_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x71576c26 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0xc66c924b tda10021_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0xf808a2d7 tda10023_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0x933c6e55 tda10048_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x897e2f5e tda10045_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0xb2f3302a tda10046_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0xb0a34000 tda10086_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x6705c635 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0xe7b0ec43 tda665x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0x3c663f81 tda8083_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0x7797a387 tda8261_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0x5b115f17 tda826x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0x178b6986 ts2020_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0xe86321af tua6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0x62bc247b ves1820_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0x7ccf7767 ves1x93_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0xea88f9f4 zl10036_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0xb79ec790 zl10039_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0x00e637d3 zl10353_attach EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x3e3d67bb aptina_pll_calculate EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xa7f06a5c ccs_pll_calculate EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x326923a0 max9271_disable_gpios @@ -13288,66 +13279,69 @@ EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf0f82204 media_entity_remote_pad EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf2d23049 media_request_object_unbind EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xb7585e8b cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x06d219ac mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x196e99e9 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1d4f22fe mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x27f956ff mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2b68a031 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x338cfa92 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x403d2d60 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4331f5f5 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4335f424 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x56afef3d mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x58d977c3 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x65efa52f mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x74a3cfcc mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8591d1d5 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8b986019 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9380e1a0 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb46ab108 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdf3f3c59 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xebcdc0e6 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x04b8f27b saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x368985f1 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3cd90222 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7c1783e8 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x81c7ceb6 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x82175f46 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x931d28b2 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa015dfc8 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa0e52ce2 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa1b49542 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb5dd1722 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbb731f5f saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbd790de9 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc052e4d8 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdef42ce5 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe48b79d2 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xec40925e saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xecbd4caf saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf06530ba saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0db34b94 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x101d9685 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x21950eec ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0x0adc1e3b dst_attach +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0x251f1bd8 dst_ca_attach +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x3efb1bdd cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x0a386851 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0e0f4218 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2dd8b0ef mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3d50f3a4 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4e2e7321 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x53ed39d0 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x631654b5 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6f6315cb mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x71fed28a mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7ad665e0 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x866616d4 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x89d6ec14 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8d240aea mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa6aabe76 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa91092f4 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb1ec68db mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbb7a6156 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd5f08e71 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe34f319c mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfa8cdc13 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0eb4053d saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1b91953f saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4780c073 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5dc83cfa saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6f5ca1c8 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x76fd74aa saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x912af22b saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa36caf11 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb4dbf697 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbc6735e1 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbd299187 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbf0411c4 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc973ce41 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xca240ff6 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd00623ad saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdeceaffb saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf005bb18 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf2dd044c saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfbaf38f8 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3e8a98f8 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x47d86437 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4ce6c6bb ttpci_budget_debiwrite EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xadea94df ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xcd637b89 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd3ac76fe ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xff40ef08 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb64e9635 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc0ed4254 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd4d1a5ab ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xea1dc94b ttpci_budget_irq10_handler EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x2c1d5bfa mccic_suspend EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x51e3f5dc mccic_irq EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xa0562fde mccic_register EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xfab69164 mccic_shutdown EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xfc9d952d mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x3d5b834c vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x434911e7 vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x5b43f480 vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x6a2e8ebe vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x9032afac vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xdca45e1b vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xe49eafc7 vpu_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xfd62789a vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x0294207c vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x6fb5a1ef vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x7c43682a vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x98b03459 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xaa9294ba vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xc5766c3a vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xcaf3a8bb vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xdc38977a vpu_load_firmware 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 @@ -13402,10 +13396,21 @@ EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdb6e5dd3 ir_raw_event_store_with_t EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1bc9681 rc_map_get EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe7648541 rc_map_register EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf09e2e2d rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0x7bfdcb42 fc0011_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0xd662661c fc0012_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0x9a13c8e2 fc0013_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0x32a36b97 max2165_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0xc09709a1 mc44s803_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0xddb0ccc8 mt2060_attach EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x9e59df90 mt2063_attach EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x81dd618b microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0xc02c5ec0 mt2131_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0x87f21c9e mt2266_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0xab271155 mxl5005s_attach EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x38f710df mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0x2ae44f9a qt1010_attach EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x9cb814a4 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0x8295178c tda18218_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x37fe50dc tda18271_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x84e79c8a tda827x_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x4e03c6c8 tda829x_probe @@ -13416,6 +13421,8 @@ EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x68494f93 tea5761_autodetection EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x5c3118e3 tea5767_autodetection EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xb303d9f6 tea5767_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x26e3089a simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0x511c1ab9 xc4000_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0xda930b11 xc5000_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x068751fc cx231xx_uninit_bulk EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x29184d96 cx231xx_send_gpio_cmd @@ -13437,8 +13444,8 @@ EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc6caeab3 cx231xx_set_mode EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcd88a734 cx231xx_unmute_audio EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdfcd1f6b cx231xx_enable_i2c_port_3 EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xead92778 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xd544bb60 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xd93fdcab mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x536aa6d2 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x78ffd3fd mxl111sf_tuner_attach EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x12c9db5c em28xx_alloc_urbs EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x19ae65b1 em28xx_write_regs EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1f10259a em28xx_toggle_reg_bits @@ -13596,9 +13603,9 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ed9acd3 __tracepoint_vb2_ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x38726551 v4l2_get_link_freq EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3fcec840 v4l2_device_put EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3ff85f76 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d88f374 __traceiter_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4f2fd566 v4l2_event_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x510b0132 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55e8adf4 __traceiter_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x578176d9 v4l2_subdev_link_validate_default EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ef60257 v4l2_spi_subdev_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x60226bf3 v4l2_event_subscribe @@ -13614,7 +13621,6 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f5ed23a __tracepoint_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78eaf77f v4l2_mc_create_media_graph EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7972e9a9 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7be52c76 __traceiter_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f36b0fb v4l2_subdev_link_validate EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81900a41 v4l2_device_unregister EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x84acfebb v4l2_src_change_event_subdev_subscribe @@ -13627,6 +13633,7 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4acec6e v4l2_pipeline_pm_ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4c6f09c v4l2_fh_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa6838e8a v4l2_ctrl_request_hdl_ctrl_find EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9ae342a v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xadda759b __traceiter_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb3c2f5f6 v4l2_device_disconnect EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb72d46c9 v4l2_create_fwnode_links @@ -13640,16 +13647,16 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xccd9ad80 v4l2_subdev_get_f EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xce7bf523 v4l2_i2c_new_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd40c2b1d v4l2_i2c_subdev_addr EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd6c9c17c v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd71e2ba3 __traceiter_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8069254 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd92dd16b __traceiter_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdaae8ba6 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdd24c5b3 __traceiter_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2d1cbe5 v4l2_fh_del EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe985ed26 v4l2_event_queue_fh EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf001fcf8 __tracepoint_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf0e14876 __v4l2_ctrl_handler_setup EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf461594a __traceiter_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf675b43a v4l2_fh_is_singular EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf78f15f7 v4l2_device_unregister_subdev @@ -13688,8 +13695,8 @@ EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcfcb948e cs47l24_patch EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd50b1534 wm5110_patch EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd87b0a8c wm5102_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xeef9094d wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x7577eaf6 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x8bb23f57 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x844574bd atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xef0e7883 atc260x_device_probe EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x52ed5c29 da9150_write_qif EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5c11ab11 da9150_read_qif EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5d64df42 da9150_set_bits @@ -13758,70 +13765,70 @@ EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9c80e036 mc13xxx_variant_mc13892 EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xce355e7e mc13xxx_variant_mc34708 EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xdc3aab16 mc13xxx_variant_mc13783 EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x04eed0fc pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1d8becf3 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x31fc1dc3 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x720b3bfa pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x79375f4d pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7be2cac9 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8b29a699 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x91a5bac9 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc13b1b55 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd275dcc6 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xed3c3849 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x21cf4a64 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x5ba11aff pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x0885a598 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8186f918 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9fc26ea0 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf979e167 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xff898ea7 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x12343ff2 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6f1d2b2a pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x71945a99 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x722c2e1a pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9779c499 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9e07e366 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbe38d89b pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdd24a6e9 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe0361ce2 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xefb4507c pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfce54d71 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x19e42cb8 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x57fb071a pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3efb163e pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x91370fbd pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb0e69f3a pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xcf11d6ff pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe1128ab1 pcf50633_gpio_invert_get EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x0502543b 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 0x0287e3af si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x04fd9aec si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1815004f si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1b680070 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x290021d6 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2dafa9c5 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x388aee6d si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x51eb770e si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x527533a0 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x52be7277 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x61d0a6cf si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x65b1727c si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6742452a si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6aee27c8 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x837ef3f2 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8963a827 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c6c9d59 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9e520647 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa1ada702 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa2cd89a2 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaf05d10e si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb2493f9a si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbb800da4 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbd091950 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc638b525 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb520e0b si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdc75425e si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe24b081a si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xea4b8da5 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeee1abe5 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xef5508ad si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf6e76ed8 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf74809c2 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfefa69b6 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x03094ac2 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x03e2202b si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x059ba927 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x07a04f53 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0837cbc5 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x09dc8c5b si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d8e98d6 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x130ba22a si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2129e676 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2b46032d si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x39b618bf si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3c8fd94d si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3d0572ce si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x534da735 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x605e0fa2 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x87d2c981 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c3847e8 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x924d938f si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x94244d24 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9d9cda99 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa4e15928 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa8224545 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xabcca3a9 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb3e8c6d7 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb48e7fdb si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbeacae53 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbede8cd2 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc07c00f8 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc317be4a si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xca817437 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd959e1a9 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe80547b3 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf7d09083 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf9e01f80 si476x_core_cmd_am_tune_freq EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x15d6403f ssbi_write EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x442b229b ssbi_read EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x4e4cf59c stmfx_function_disable EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x94f7246b stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x08eaafea am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x1ac037d3 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4705c913 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xfa553822 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb666785f am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xeba3869f am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xebc38428 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xf9891ea6 am335x_tsc_se_set_cache EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x33783d5a tps65218_set_bits EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x8c525573 tps65218_clear_bits EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe10e6684 tps65218_reg_write @@ -13833,30 +13840,30 @@ EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x859d28e9 alcor_write8 EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8c57bb64 alcor_write32 EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8df68041 alcor_write16 EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa98aaf91 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0473691f rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0aa0a087 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1407a43c rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x156739f7 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1c3f7ce0 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2c1dfd40 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2cfecb14 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x45d02cb4 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5d4a1278 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6ff6f47f rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x709d6ad7 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7a9d4c7a rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x83d6002e rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9089003e rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa20a02cf rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa4918223 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb7168df6 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbf4ff1b6 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcc96ab58 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcd2ce06e rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd662922b rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe74606fc rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe96b9424 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfdcf003c rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x001e674b rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0a483498 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0bf27fae rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0dd41db3 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1cdf15e8 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x231ca208 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2f897206 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x38a2d9f5 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3a7fbacf rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x44d6e2a2 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4f6eeb78 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x50a97208 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x56579ffe rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x624f1de3 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x723fcc34 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x784f133a rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9b948db8 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc2adf6df rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcc0ab21b rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd784ee54 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xebc8c85b rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xef9eb728 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf2d8c609 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf4a356f3 rtsx_pci_dma_unmap_sg EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x45680d15 rtsx_usb_read_register EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4913e9ca rtsx_usb_get_rsp EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x721a017b rtsx_usb_card_exclusive_check @@ -13870,10 +13877,10 @@ EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd99c9207 rtsx_usb_write_pp EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xdf3332ea rtsx_usb_ep0_read_register EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe0076126 rtsx_usb_send_cmd EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf193ab90 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x20d93975 cb710_set_irq_handler EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x68216bf2 cb710_sg_dwiter_read_next_block EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x6b2ef434 cb710_sg_dwiter_write_next_block EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7b76cbc8 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd38b28ec 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 @@ -13895,35 +13902,35 @@ EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x897bc44b enclosure_find EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x94920e84 enclosure_remove_device EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xdb0a0a4a enclosure_add_device EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe4c88f02 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x14fa8356 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x633cf3d0 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6f06e8c6 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x985c5113 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9b4ec61c lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc27dbd46 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc32e4103 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe5659712 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x44b3f7d9 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4e981b21 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6b672477 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x865acb86 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x99760058 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xaad5d85d lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xec7ca31e lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfa594970 lis3lv02d_init_dt EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x4df4baa4 devm_pvpanic_probe -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x78877afe st_unregister -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xb1a23923 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x483384c3 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x66ecc9f4 st_register EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x08f5d2c0 uacce_register EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x5095fc9f uacce_alloc EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xaa01df25 uacce_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xb9288ec2 dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xc579d9e9 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x5f63c82b dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x9fa49a4d dw_mci_pltfm_remove EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xd56a65fa dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x952a061f renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xec3a9a63 renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x2bcc19e0 renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x8fd3441b renesas_sdhi_probe EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x01612020 tmio_mmc_host_runtime_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1fc369c8 tmio_mmc_host_free -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x2ac20d7d tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1b9241fe tmio_mmc_disable_mmc_irqs EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x6565f888 tmio_mmc_enable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x738ae81b tmio_mmc_host_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7a1fc5ef tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x3b5c656c tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x5af56219 tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7fbc0676 tmio_mmc_host_probe EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x866e79c8 tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x86ab268a tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xd8b8b48a tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb0d5218a tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xdab69a35 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xebb9e452 tmio_mmc_host_alloc EXPORT_SYMBOL_GPL drivers/most/most_core 0x1d5f7af6 most_stop_enqueue EXPORT_SYMBOL_GPL drivers/most/most_core 0x46c757f6 most_register_interface EXPORT_SYMBOL_GPL drivers/most/most_core 0x5e820995 most_start_channel @@ -13952,9 +13959,9 @@ EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xa8f89b9c hyperbus_unregi EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xd6056981 hyperbus_register_device EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xa2293391 onenand_release EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xfc9183ab onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x029ba78c brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x29afe74f brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xa0eb4ca1 brcmnand_remove EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xdb600e38 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xde3843f0 brcmnand_probe EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xc298e11f denali_chip_init EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x435e14b1 sm_register_device EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x9df489a2 spi_nor_scan @@ -13991,361 +13998,361 @@ EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xaca42d59 mux_control_deselect EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb45f0607 mux_control_get EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc54eb0e9 mux_control_try_select EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf9dcfa77 mux_chip_register -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x31d94e16 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x8c69b93d devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/bareudp 0xee8b8323 bareudp_dev_create -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x21f4e86a alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x32c82c67 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4d2e9ffe register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x61083df4 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8b827f26 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb353bd8a c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x3a38ff2c free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5facef46 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc743c6ab alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf5227d77 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0001b2cd free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x03066b83 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x044ce25a can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0d3d1aba can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x24c59b1f devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x5daf16d3 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/bareudp 0x311da3a6 bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0c80d379 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6185db12 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6b9ca361 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x78824eae c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7ba17337 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa3e700eb alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x63f5702d unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x97ad832b free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd60d4fd2 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xef8e586e 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 0x19f6cdb8 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x29a2b7ca can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2d8d8ebe can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2f3051c9 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x37a6b7a4 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3ad7e2bf can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x50fdeef9 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x58488fc7 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1227b65b alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x18091f73 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x19282cb3 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1f0e6598 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1f43ae0e can_rx_offload_queue_sorted +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x369e40eb safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x37af7418 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x46d630fc can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5b383983 can_get_echo_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x664f7b00 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6a67c43d unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6fd80888 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7671137e can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7701f434 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x890e8a3c can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8b835a60 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa53490b6 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb51c6347 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb8d95872 of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc224acb8 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc35891dc can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd98dbea6 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe949e203 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf122386e can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x627345a0 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6b2108f7 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7d5607ef can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x83edf2a6 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8799c8f4 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x893207ef can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8e71953e free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x972530fa can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9d009723 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa0f912aa can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa9d66d4e unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xae911f23 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaf62412f alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbc533271 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc1033f8d register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc1a2162a can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc822cc92 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe371ea87 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf076b7e9 alloc_candev_mqs EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf46a726c can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf8f89214 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfeb192b0 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x178eef2b m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x78e689ec m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x97fddc3f m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9e133c25 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa7e02c73 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb1b15e82 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf83564a9 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xfca87aaa m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0efa352e alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x2bf6c94e unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfab269c6 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xff8c39ba can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0f104ade m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x3798d208 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x537dd30c m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x62efbe5c m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7d036924 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xacce8ed8 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdcb5377a m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe80c8cc3 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x384fda5a register_sja1000dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa9533f93 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf3aa961a register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x746a91e1 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x18a767c5 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x19580b48 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1bae90d1 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x22990437 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3e7cd732 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x64beb223 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x69359984 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x69854541 ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6a43ed5d ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8fae0067 ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xac69941a ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbd032770 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xecc8d016 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf10c0662 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x00755130 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x08bd9f5e realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x17fd6269 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x317657c7 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x65eceec3 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x68184fbc rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x742c96ec rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x88206812 rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x88d35edf rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa4331a33 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe263f636 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe3588d61 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe9ed6a2c rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf58bafa1 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfb0909a6 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/8390/ax88796 0x0c49d71e ax_NS8390_reinit -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x6c548046 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x71433e5d arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x12d7a91d enetc_mdio_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xb9ae9de1 enetc_mdio_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xc0f36ddf enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6463dd5b alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa4401265 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd6aee21d unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x5e32b6e2 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x05d6c3af ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x246e45b8 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x43b0502d ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4e2da7e4 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x50adc429 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x62ecef64 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x72fd375e ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x86a5cd71 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9997fc7c ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xcac7c497 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd9ab738b ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xdbfe28fa ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xeb6e17f1 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf422bd34 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x221c3040 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3bc46c81 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3c39383d rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x461767de rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x48061dcb rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4c819bbb rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5802591a rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5819c0b5 rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x652950e3 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xac35b702 rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb5b67209 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbc699076 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe45e602a rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xeb688f5f rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfebb62e5 realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/ethernet/8390/ax88796 0x2ab8a8bb ax_NS8390_reinit +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x58392212 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xed145fe9 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x042ae113 enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xc3d955af enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xdb225894 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-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x4d4a1c58 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x78de3c34 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x03caeb89 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x855b2367 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x902f2377 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc6016a97 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf773801d ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00ecae50 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x064c9bca mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06c3c1d3 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x071056fe mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e3a64b9 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13852d37 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13e0d352 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1893aceb mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1995c84d mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19c164cb mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a232e0b mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c9e1bce mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d409f0e mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e7c3c5f mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f481215 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2134eafc mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2204ad47 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22b042d8 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2380335c mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24a37fef mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x250d02f1 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28f2afc9 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dd149bf mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2deee7d2 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f395e72 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fd7dd17 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30d5494e mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30ef5727 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x319432ec mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32fa6f24 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32fb7944 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3452a364 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36049cf3 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x385af1c0 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x386dae05 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a39f196 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40b99d8a mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41971710 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42045116 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46db1655 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48489436 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d989eb3 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e59ec46 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50c34cf9 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56101104 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56660174 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58b58465 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d0bec56 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64f7a7e8 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x651cc72e mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67155f8f mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c7a0ba8 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cd58bd5 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d0831eb mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dfe5906 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73c89b1b mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79b22b4c mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c2f1bcd mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cfd4214 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f685840 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fd5f597 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81adb922 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x826fdce8 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82ba7121 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85bbbd86 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85cb62fc mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89c7a638 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b6f4488 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dd5bbfa mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93112a73 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96413009 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x985deb30 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a4a0078 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1945d42 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6602953 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8949106 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9152b71 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad122933 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad66d45f mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0cebad4 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb461fdf4 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5cdd3d5 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb63ad7e4 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba1d1a80 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbaa8458f mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdd49b5d mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfc8d24e mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1ca49dc mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4616ba6 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6e87467 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc78ce241 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcba00a8c mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc5ef89a mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd30beb0 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5a9e03f mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6256274 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8440083 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd86be8ee mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd91b6fdf mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdab6367c mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdda57033 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf030d69 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfd24ff9 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2b62773 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe41fc406 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4c63149 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe543f2a1 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9ce30e5 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef8c9d3b mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf26b353d mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4b3ada6 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6c9ea77 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf76a0b72 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7825d10 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf87cae7a mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfba23821 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbe5e254 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcc50626 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd2f010a mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdfbe078 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff932925 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02188941 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x2a15d9d1 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xdd2b7390 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4fe7cdbe ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x65e86158 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x9f1e8722 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc4dc32f3 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xe89d23bc ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x003e87f9 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x020f0111 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x040fdc4c mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04dc2164 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06749eb2 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b2ec198 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c3abc86 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fdaa9bc mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10c9e5ef mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1120c7ae __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14e26eb9 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16f96709 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a8d8684 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1adda4e7 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24961c06 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26938436 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27d71d9f mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29f19be9 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2aea7c3f mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b85b8e0 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x320062b3 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32c958b6 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x337be6c7 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x347b7524 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34959535 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35d560b0 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3681411d mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3721c515 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x391854c5 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x393b47b0 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x394de617 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b27ede7 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b67d2dd mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bdf45cb mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d5aeaee mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e51c303 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41f144c9 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42c185bb mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45d9a804 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48704749 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48bd0a41 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x503b8c2d mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x546f8d89 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55daf671 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56d2053a mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x587dd220 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59148442 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d858685 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dfaba6f mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60341de6 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x627f61e2 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62bf5188 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x681a244e mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6854514a mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x703379f5 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7127686b mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74e4533d mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x769633a2 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7affc95b mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x804f5dd1 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80e4d679 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x835855bc mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x854c9f5e mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86e7b9f3 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8793ae5d mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ce5b111 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d9d58fa mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e84d001 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f5c7df0 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f9ca9de mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91daf8a6 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9372f50f __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94f8aca4 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x956ea803 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96397469 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96d3497a mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9715f720 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x980037cc mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99446169 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ad27d32 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e95d53f mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa197aae3 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa66ebefe mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa74fb7e7 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacb06868 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad362619 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb06406ea mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb33fb52a mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4bc2cbf mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb63fffce mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb700c05d mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba811473 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1647f4c mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1dd5159 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5bc0e5d mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc90eac37 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca938d7f mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccc5c013 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce34d5d4 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf7c7f1b mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd14000f1 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1a0725e mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd423cea6 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4b8fb5c mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb996a61 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0b13bec mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5ad25c8 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe98286a7 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9b0182a mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea4b7962 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea9a0b73 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebb127f8 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebc56cf8 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf517b6ce mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf58c4f7d mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7cf2356 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8e65e33 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa2b62d3 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbd77c63 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff0b790b mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff96e7f6 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01bb1e1b mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02135fa4 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04287535 mlx5_modify_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 0x0b9b1cc0 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e73f0fe mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f2c4c5d mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10822371 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19dccb4b mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a2462db mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d48923f mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e11a79b mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28909588 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29f1d8c4 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d4d5dc2 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x317ada83 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x367bb20d mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37b575fa mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a4f7384 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x418a0094 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42f8645a mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x478f696a mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a024b46 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a9c7470 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d6a01fe mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52a0a2f3 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x538d136e mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55a677f0 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x581d8975 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59931c8c mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bf8b1f1 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d493bcf mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60f5aa5c mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6757fb3f mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7635ee26 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7645ad34 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7be7e52b mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f2d80a1 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f2d8a97 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a616599 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e3cc2cc mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1086f982 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1359fe2d mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x148db064 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x158606a6 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x160d7621 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17b29c42 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19b006a0 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d42e9da mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e6ab5a4 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x205148d7 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2785742d mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2dce5dbd mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f4397e6 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33151c18 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37666c8c mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x383c7109 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c83e7bb mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e349a12 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f29ef78 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f801c8b mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x411f1c68 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x472673e9 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47dec2b6 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a07e4c6 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b1e47a1 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5069b5da mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x511e5066 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5371d254 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55b32f04 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x669e2d28 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6877047a mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7227bfa9 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7471d0d5 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x781ac4e7 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78d80317 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd57a99 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd85bc0 mlx5_set_port_pfc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8819c7b6 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b676c0e mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bb0d646 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bd0aa08 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e918c35 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fc962dc mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa49b7c12 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f44b787 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b4fcd99 mlx5_query_port_tc_group 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 0xac563fc3 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad908ca1 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb53ce9fd mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd0cad61 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd713609 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbda97b2c mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf47d84c mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf4ae079 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfa4cbd0 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4e916d4 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5801e47 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc1e9536 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdb5404e mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfc0f684 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd13fa52e mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd27081aa mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6ba77f9 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8945e60 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcd03202 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf6a484e mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0929c79 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0a11617 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7d85b12 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1b4064d mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf40b3448 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc68e9cb mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd1b0a58 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff190369 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x1e27e725 ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x90135a48 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xc514ebd6 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xc6f21ccf ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab110e0e mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2697bbb mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3b5ebd3 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb83fe241 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb84a8ab4 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb958c32e mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbae54131 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcf3b8fd mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2707ebb mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6e9ce70 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xceeade82 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2e05cb0 mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb0dec0a mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcfdf9e8 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde6af321 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0149fa9 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5feda3d mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe73e95b6 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea46d427 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb5d70b3 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0d7f154 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf343e78c mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3d5c87a mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf64120f5 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e7c11 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcf3dc0b mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe1c86ad mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x238f6c7e ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x82f3da3b ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x8c3e2d9d ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x9737e916 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 0x4be2f862 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x76d4f968 devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00484e0b ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e234248 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16aa94cc ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x483524c4 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x668b430a ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x76cc49bf __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x78118093 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93570a89 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9aa971b9 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa21cb0c5 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf55c2dc __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf80f0475 ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff41f0c3 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xbc77995b devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x048e4319 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05392b2d ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x15bf973c ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1b13faf3 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x20c0610c ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2abac388 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65dedd3c ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68927770 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89fd8d8c __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x926811cf __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5149616 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa3c55f6 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb38ae0b9 ocelot_port_rmwl 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 0x126b45b0 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2243213d stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x05293393 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x109d30e1 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3a853821 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3ec78fec stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4febf768 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 0x94bd4a03 stmmac_bus_clks_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9adedaab stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa5563286 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 0xdbc8f52f stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x16fc85f9 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x19247dce stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4847f928 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc754a040 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe51e07f8 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x2ccff94f w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x3cedc920 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x4e5640af w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x6a6f5e06 w5100_remove -EXPORT_SYMBOL_GPL drivers/net/geneve 0x6fa9e330 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2bb4ebc7 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x603579df ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x891365c6 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8af9f06c ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf680d6e7 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macsec 0x4ec57804 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x03e62de2 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x847c3ef1 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x85ecacd0 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xfb29280b macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe63866b3 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x0d0fe860 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3c53d5bf stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5d11ff2b stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x834f7b3b stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x97d3f1bc stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x36fe3759 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x480ecf0c w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x4ee14097 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xa0f3ed93 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0x591a9f4a geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2b75a20b ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x6e1401e0 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x715f48aa ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xbf610e8c ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe3ac737a ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/macsec 0x837647c4 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8b345f07 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc7caa4a4 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe04e7294 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf019ad24 macvlan_common_setup EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x5c3e835d mdio_i2c_alloc EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0xa481ead1 mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x06dc3474 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xe3417448 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x5842a8ef net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x95315a41 net_failover_destroy EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x061a39ca xpcs_create EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x27661fee xpcs_get_an_mode EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9c6ff4ac xpcs_do_config @@ -14353,849 +14360,849 @@ EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xba48b4e8 xpcs_validate EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xc86ec965 xpcs_config_eee EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xefb8de19 xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x01cb8602 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x08c936f8 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x08de207d bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0cdfedb4 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0d699028 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0dadb205 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0f827d39 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x135fa577 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x171031e7 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1a4a0308 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1edfc604 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2df4db8a bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x44652090 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x45976e3f bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x48f2511c bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4aff7523 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5bd6a2f9 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x624cde45 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7a1578e7 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x80c839ac bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x848e3e1a bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8fe1cae1 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x93643793 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9bebee37 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa4ea0f7b __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb08a2bfa bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb519451b bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd96418bc bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe74b20e3 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xed229dee bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xedace77f bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf3dcb061 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf6eea737 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfd7cbc31 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0acb25f7 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0b5a7e10 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x13fde3c3 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1ad01df3 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x24c8d549 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2d8a2ba1 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x315f3d6a bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x325c55e4 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x33524e3f bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x460e4b85 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x46da4f0f bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x48261f09 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4980ab62 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5c7084aa __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6e83845f bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8199312d bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x85b62961 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8c58d5bc bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8e211688 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9336c029 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x97df0689 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa2cf4138 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa444c0cf bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa7d53d77 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb22512bf bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb65d96c6 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb6ab260f __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc6f8369d __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd442d9c2 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdaa53362 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe0f1b07c bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xef069a32 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfe72061a bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xffa0e410 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x00b7d8e0 phylink_connect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08fc4ee7 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 0x1579a813 phylink_mii_c22_pcs_an_restart 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 0x219c9379 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x25ebdaec phylink_mii_c22_pcs_config EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3d54f018 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3059506c 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 0x5d0c4dcc phylink_speed_up EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x64feb126 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x678bd23d phylink_mii_c45_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6cc68170 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 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x877b2577 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x95a5c0fe phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x96b4d233 phylink_of_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 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 0xcd190081 phylink_mii_c22_pcs_an_restart EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcfca5eb phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe3b6f57d phylink_mii_c22_pcs_set_advertisement 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 0xfce8ed29 phylink_create -EXPORT_SYMBOL_GPL drivers/net/tap 0x6e024d8a tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x80f7929f tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x87b41ede tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x901a10e9 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xa0a8f715 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xa28e0b70 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xaeea44b1 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xb22c5546 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0xff255d7e tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1110996f usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x126a9443 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x395cc3f4 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa8e7ccee usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xda136811 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe410dd40 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0221bdd1 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1513e4a5 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x15a675b9 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x197ff072 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x515f420d cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x85e9d5a4 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8e541e5f cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa5dd32e2 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd2d1a715 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd7e7ca83 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdec251c4 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x0cd6da81 rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0331706b rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4c8eeb17 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x57d0deac rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9b08a137 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb81bb2a7 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xea2f1a0e generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x011eb4b9 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0a50dc10 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0c4dd18d usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0feef53b usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2405d58d usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x35103685 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x367be8bc usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f631f8b usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x44c3e12f usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4532a35e usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x47a2ee73 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x63ebbd2f usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x65481ee1 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x675531fa usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6e0e9423 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7996f722 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x79d49c60 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x84164272 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x96008b28 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa2e22c11 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa6fecad6 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa8e33fca usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xabdb8852 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb4a7af99 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbc2bd3f6 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbcfce8b6 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc927d2a5 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xce7886b2 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xddcaa0c4 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe277c85a usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe6bb276f usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe96f4073 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xead1a44b usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfc28ed40 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x36b30906 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x8b68f9c4 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x8c3f2273 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xf7322513 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xceb5b81f libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15919cb1 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3eff0c19 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4af6c9bd il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2163f6e il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc7268be il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x056b96ac iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x06289a59 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0c4b54e2 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x125c6e18 iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1687b21f iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1949782d iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1a499d07 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1be6bfcb iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xff2c61e1 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/tap 0x234d226f tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x2f2aa810 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x3c896c1a tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x3e4ba9f4 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x3fa66703 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x49f2d6e7 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x6931502d tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xb78233b1 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xc592439e tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1833624b usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x409b110a usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x830f3fba usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x839d40fa usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc8f710a9 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xdf7806ce usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0e66bef1 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1b047c0b cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x34eb8d01 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4236257e cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x52b52ffb cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x654586ab cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x78dbf822 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x81f5182f cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x93cdf4d4 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb4b07cae cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe4f6df9f cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xfa39c8c8 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x691bca1c rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x880a010d rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x90d84ce7 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc39be5e6 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc96fec72 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xca4241f5 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x10937d10 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x10b19e64 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2998efda usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x29fd992e usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2aa408d8 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2b07bf31 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2dea0129 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x46b2dcf0 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4d67433c usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x514122bb usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x603c81a1 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x605ff0c7 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6ee17378 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x721c343e usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x74f04c77 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7579d3b5 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7e8a7ac2 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x83161657 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9826b53f usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9ae1c704 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9f1528b4 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb201575d usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb228eee5 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc0f8cc1e usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc11915bf usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc2a1b4b4 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcb780d98 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd59f0e01 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe435c5af usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xef7a04c1 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf48c117a usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfadda74d usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfb7f96f2 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xff9ead87 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x33f1ab89 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x890ac24c vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xc5255d43 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xe2aa03f2 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x4abfe3d4 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12727968 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d6e5ecd il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ec087b3 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x779cf96d il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd31cb8f1 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0927a3f6 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0f94af8e iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1284615a iwl_pnvm_load EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c48129a iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1fa11e2c iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2017b0ae iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x27b30afb iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1d10c280 iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x22004418 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x27354b19 iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x28e03146 iwl_write_prph_delay EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c0f571f iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x31b4a768 iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x318d6d3a iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x322ab2d7 iwl_read_external_nvm EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x37410cef iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38f89b0e iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3df18100 iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x402f24a1 iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4264d71d iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x37ab8a50 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x41caf94a iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x427f26d2 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x42ba7760 iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4348f327 iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x449e3ce5 iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x452cfccb iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x45d1a4be iwl_fwrt_dump_error_logs EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47e3dc83 iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x502c484e iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4c99ecf6 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 0x5ae8d727 iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5b9bc9ec iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5bd6c757 __iwl_warn EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c7ce24c iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5e2fd3e0 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5d344c85 iwl_write64 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5ef4a44d iwl_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x655100c3 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x700ad41b iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x74efd078 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x616e3c3e iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x65369a44 iwl_configure_rxq +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x657d2a40 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x66174651 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x68dc88a7 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e3fa101 iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x70d7d5b3 iwl_fw_dbg_read_d3_debug_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 0x7a46ee26 iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7df90d85 iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8b440e7e iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8b4ad576 iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8f2d33eb iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x91e52d54 iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7b40fe64 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7bacacbf iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7c5a60c9 iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x85ca513e iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x87725a53 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x91798df5 iwl_phy_db_init EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93160e9e iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x944c35e2 iwl_dbg_tlv_del_timers -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9499dea6 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9a4a573a iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9e22a55c iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa1d8d110 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x944c2ff9 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x94caf444 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9ed88931 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa0ff219b __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa5b62817 iwl_write8 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xab12260d iwl_write_prph_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xae3e0bbc iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaf4f2f31 iwl_write_direct64 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1e39cb3 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb48e45ca __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb4ad2a16 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb83f6ec5 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb90b1d45 iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbeaf055f iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb696f75d _iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb7579f7f iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbaf44e1b iwl_parse_nvm_data EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc05e5efd iwl_fw_lookup_cmd_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc09f8d68 iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc94156a5 iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc18c9608 iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc42f5ad9 iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc58c1119 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc6b61950 iwl_cmd_groups_verify_sorted EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd220991e iwl_fw_runtime_init EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd2de3cc1 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdd0ddd91 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd7784ff2 iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xda093fc3 __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 0xe057588e _iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe4a01c14 iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe1c174f1 iwl_set_bits_prph EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xec23e31a iwl_configure_rxq -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf13e1527 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf45647fc iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf45e2b09 iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf6347576 iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf690807d iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x01848119 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x470fc411 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x511da48a p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x51781373 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x72d91730 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7694e0aa p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x83fdc20b p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xcfe13bb7 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd7231eb2 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0c4e3876 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x20683407 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x452a8d9a lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x55688a29 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5bf78607 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf209e77d iwl_write_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf53ee6af iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf960bc38 iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfa44bdcc iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc362b30 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xff7d4633 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x27c069fb p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x37176d9d p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5850fe8b p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6a2e4c2e p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x99d8f571 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xbdef79c6 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xdb471545 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xdf6ae7ac p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe49c2aa5 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2c53a98c lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x540db7e7 lbs_remove_card EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6dc1d78b lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x72182f80 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x77f034c0 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa38f500f lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa49fd2c8 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xac77773b lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc88d8963 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdb474340 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf30566cc lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf372c8e1 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7a95997c lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7e1abc06 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x860fd63c lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x893397ea lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb193b50d lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb3b7386f lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbc38e793 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc78f1b19 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcca891ac lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcdf35929 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcf7ab91b lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xeb70b6bc lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf4e4aa74 lbs_send_tx_feedback EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf8a84168 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x02712cf9 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x20d8885e __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7aa721a2 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x971c2ff0 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa2d0bc29 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xad50fe0e lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb69d81d9 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xffb43781 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0d0a4187 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x3e8dc4f8 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5dd480e8 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8ff291cc lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x90efa44b lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x95caf210 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9b58b4ee lbtf_cmd_copyback EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xdb16e3af lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0be0a69f mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1d246405 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x266365b2 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3308d769 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x41382f17 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x472a83f9 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4b1868fd mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4be6ee95 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4bff38b2 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x56e9d12e mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x61e0506b mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6b23fcd5 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6b429219 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6deedc0a mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7ffabeea mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x896aefef mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9582c79a mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xca52e406 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcef06e2c mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc8d8b97c lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x408321c3 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x46792f16 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x47b9120a mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x540f4b81 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5d3342bf mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5e4b3038 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5f0fcba5 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x65c068a9 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x70b3ac14 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x79992225 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8a3d3285 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8b9ae4b7 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8f60b991 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9cad8727 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa394dc24 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xac616ab1 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc6938222 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc9c93652 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xca39a695 mwifiex_init_shutdown_fw EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd938481e mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdcb4d10a mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf029c146 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf6ff5d9d mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf8a02e5c mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x002984da mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x00b3e023 ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x017857fb mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02d443a2 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0374992b mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x04aa84ca mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x088ae84c mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a8fac88 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c5a8d10 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f5c4752 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x147bf157 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x169e6ccf mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17e51b1d mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd71839a8 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe11e4c0b mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xebb598c8 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xed156a03 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfcbb8e8c mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0197b33c mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x09b99b2f mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0d108027 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0e96aef8 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x150bfe16 __traceiter_dev_irq EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a9c6bdf mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1bcf9007 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d288183 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b513d91 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d169889 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d9e68bf mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d9ece03 mt76_set_tim EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1f1fa849 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x22739c04 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x24f51437 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3458547e mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x365be72d mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3cd29b06 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x23923e81 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x23a1fa4a mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x243e5618 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x253a4eb6 ____mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x257283d8 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x273cfd30 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2bb05d85 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2cb12182 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2cc80b9a mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d9c5489 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f4e6dc2 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x35c908a7 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x36b5bf50 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b4c5aa6 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3cd6c94d mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3eb2f80f mt76_mcu_send_firmware EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41387653 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41e28366 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x44d29f54 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x46a6d431 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a64f344 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a93b6c0 mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4c959b67 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x42fe515c mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x42fe643b mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x44b57259 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x470deba4 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x495245ed __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4aa38c82 mt76_get_sar_power EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d5bb0c8 __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ac9b4f1 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5acbbd99 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b44510c __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5c457f6c mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5c769233 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6335e026 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x701cd2e5 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b1afe58 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4ed081ea mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x58740bdf mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x594cd1fb mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5e8aa28c mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5f5677e9 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6295d784 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x652e763a mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6fb2ad7d mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74a695ca mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x76c24f4f mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7a87ba90 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7dd6a063 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7dff3d27 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7e02facc mt76_get_txpower EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81c48879 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8300c019 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x843837bc mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x85a4e3f9 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x86fe8ca5 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d2b7d29 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x99498bad mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d4582a5 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d8d2e61 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x913f3f7d mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x923eb507 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x94292a0e mt76_rx_aggr_stop EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a5471af mt76_sar_capa -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa00a7279 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa1a494ff mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa372896b mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6f25390 mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaa728f68 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xac69f0a0 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xae5927ee mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb107bc7d mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb26ef780 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb28b0a55 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb7371b35 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbad5b767 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb40a4dc mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbd51b289 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbdb90768 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbe6e4fed mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbfa04c80 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc1eea080 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc20da304 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc31d5974 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc4a578a2 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc59736cd mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5cba5ae mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9e9baa31 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa7bbca87 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xad484c5b mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaf9b9101 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb590b9e mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbe2c47c1 mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc0fd8ea1 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5ab3077 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5fe6da6 __mt76_poll 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 0xc92903dc mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd78cb8e7 mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7a70e56 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd97afa0c __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb7b010d mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc7529f0c mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc8e582b9 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcf95b4ce mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcfa56dfb mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd16e85a1 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd23467ca __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd36164b2 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd3674170 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd912dd93 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb3f1fbf mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdcbb538f mt76_csa_check EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe4611482 mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe4e34e30 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeab1b84b mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8db2fab mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfb52fa04 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfe5b79f6 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0f87684f mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x10a253f8 mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1d68a4ae mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1f12c550 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x24424e9a mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x313a7f55 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x320f0be5 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x49f28ed9 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4b4b3095 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x52f284dc mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x59d1cf0f mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5cc1a2ba mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x617c13eb mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6776a53c mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6be71517 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7637c5c9 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7e88e1e1 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8043dd26 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x844718e0 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x87d83c0e mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8feb39d1 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xec0ca3d4 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf04558a9 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0859fd0 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf65935db mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8b27245 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfdf2a19f mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff0aded0 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0166f22c mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x103d1b8c mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x251bb3ad mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x27dcb87d mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x29bbb00a mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2e53df7d mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3cd1340f mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4c25e59d mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4f200e82 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x562563c5 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x58dcb154 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x59b9ed26 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5cb3b57c mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5e91b502 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x615de44e mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x661d72c0 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x697f5e23 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6ec9ef01 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7f2e8a78 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8438dc26 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x86c41c3f mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x90410aef mt76_connac_free_pending_tx_skbs 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 0x93d550b2 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9d66c58d mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9e80318e mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa69dbf68 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaa5b63a7 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaffdf52b mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb2383063 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb8106800 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbb6d02e0 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbbf3fbb6 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc4a7cc14 mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd12cc9b0 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd2090c65 mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdc9e4ebb mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe4dc32ca mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe753236e mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeb900853 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xef0d2cfb mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf03325d0 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf097ebfe mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf5ede7a9 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfbc5bf88 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa3cc5978 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc6ded04c mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xffa99fd9 mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0e52ed30 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x57389878 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x800f5a07 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa7e52dd7 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc198e895 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xde57a919 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe3fb758f mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe7c39bfa mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf8f8380f mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x03200a97 mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x053a31f1 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x20674de9 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x24a28971 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x26eeba1e mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x32aa89f2 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x340bb60b mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x37443659 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3ac278fa mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x44bf5d08 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4b215b18 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4ff3c188 mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x51ab12a3 mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x64da3175 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x78d96479 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x80465c16 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x88eb4944 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x90e359cd mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x99ffb3c8 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xaba13079 mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb09b3892 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb78b5d1f mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbff7c451 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc8bad579 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd0a0b108 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd9df0ee1 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe59d15c6 mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xec65f2fe mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfcd20558 mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xd5c0ff6e mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x96fd1713 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa5564f80 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa86b6ea4 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaea7fa48 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xba653d82 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc1421227 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc7a088b7 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc9edaf4f mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcd6b81d2 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd7ab6fe2 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe2b99ddf mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe86805f5 mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf1acc1e2 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf2eab5bf mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf3c0002b mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf49740ca mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf51a1527 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf662a4d6 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfa63081b mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfa6417dc mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfb148383 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6a494586 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb900aa01 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd17e7ca8 mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x05d7283f mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0e088079 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1ab94edc mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x24f6250d mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3eb21ecf mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3f5471e5 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x40159b12 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa31da998 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xffc843f6 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x01f98c1b mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x053a30b6 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x205ab411 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x32348545 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x354bbb96 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3d08fe85 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x45211462 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4b3611e5 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x531147cb mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5e35dedd mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5fa041ef mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x61e79d64 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7a65001b mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x850786d6 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8d92fe3e mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xadab3b0d mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc5930f6e mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd36f6cca mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd7d8bb41 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdb52bc71 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdd7d48d7 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdf9991ed mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe1803fbe mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe182e3f9 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe6bf515c mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe760440a mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe9997c00 mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xef21ebee mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf06c142e mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x86892666 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 0x651596b5 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x94d61c82 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xab98e8b3 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xfbeec077 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x55dbe749 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7a08a016 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x99ee1f35 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9b180f24 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xcedd5d28 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe2e7da2b mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x016206de mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x029fffef mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x02f300f2 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xcc69f01a mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xd453ada1 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xd7b469e8 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xfb36752b mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0dd15409 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x3a64b3a5 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6d6680a3 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7d205e89 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x808e1b38 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xed11f9ee mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x035acf5b mt76x02_mac_shared_key_setup 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 0x0c91ccfe mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0cae8390 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0cf04082 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0633e2c8 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x07691cd8 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0a2c63a0 mt76x02_mcu_cleanup 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 0x152be4a8 mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x16458f1d mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x18f94f0b mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1a699292 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1c13a2d9 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1d90b4ec mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x24505fd4 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2bcf4cd5 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x10a8e377 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x171a083c mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1fc25bcb mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x21eb78c0 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2c0e9857 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2d33a21a mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2ee88c30 mt76x02_bss_info_changed 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 0x3973b559 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3fbad0df mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x40672b81 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4119724d mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x42dfeae1 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4f66a53d mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x503beeb8 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x58f9557c mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5927b6ac mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x39c55cdd mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3a3ee8cd mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3add8243 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3cdba180 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x412c8ea0 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x42bec6f0 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x459b2c3e mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4cbdf42e mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4ec9ccd9 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x57605968 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5b73eab1 mt76x02_set_tx_ackto EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5e4acb6c mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x61bb79a3 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x66e92761 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c3bebba mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6edc5a38 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x72c856a7 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x739e32b6 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x73d92430 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x766605ec mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8337f20f mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x83382494 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x84038e34 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x89baca62 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x90aa4c9a mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x61c80f22 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x644535ba mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6a0b6428 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6a497c98 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6e98aaf9 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x707ee96f mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x738204de mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x757132a2 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x790af3b4 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7f8b5c95 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x825700ea mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8903f5c0 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8ad561db mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8df72395 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9037c68c mt76x02_phy_set_txpower EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x92bfe9e6 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9e7c834f mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa38ed21c mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa42fb4a8 mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa7bd1b22 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa811e48d mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xab072f3d mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb22cb74d mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb842791b mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xba340cb8 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbe324ce0 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbf719f8a mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbf9bd997 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc642da4f mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd6d5425 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd5032665 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb0b3abd mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdbc60f3a mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0809221 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe3fa185a mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeffcd99c mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf19e1e04 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf1fc602c mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf27d7471 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf4417c76 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf5609373 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf8c1105e mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfdbc060e mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfedbff2f mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x09607e36 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0d9ff90d mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x149bdeeb mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x15c991b0 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x44723206 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x62e22f62 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x867b3074 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x91199f72 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x18e61b8f mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1a4f9587 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x36a988cb mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x36b1a1c8 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4e8c5c48 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x59382ca4 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6a04c7eb mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6b11c60d mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x753403b7 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7c4a65dc mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9d4ac875 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa924bf35 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa92f5ce3 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb0c21f8c mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc68d1b76 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe42e5cf4 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe565a664 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf77109dd mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfe0e8aa0 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0554582e wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x25590748 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x6cf7b7ff host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x97873e90 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x97ce1415 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc7604064 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xfb8bcfc3 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x04d8baea qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93fc0d62 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x97643e04 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x98c419da mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9bd83d5a mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9d0e2f1d mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa027c48b mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa3436cde mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa408e025 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa8071043 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa8efccaa mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb429b0ee mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb7f565e5 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb7fab0aa mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbcc0cf16 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc05bdb59 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc4c2136f mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xccad4ea4 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcfaeafc0 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd3641211 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd391a51b mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd4e4e556 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xda3f35ca mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdc34dff4 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe622bde0 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xea05c7ce mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xee871af3 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf2ed1c32 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf3d72c98 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xff53d132 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0d5e8f17 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x383a0f88 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x57f06664 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6675f958 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6831808a mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x68cc6514 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7e105bc5 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xcc015495 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0be02218 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x138b02a2 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x26d064ec mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2766dd99 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2a1ce5d4 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x43928981 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x54cb8893 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5637db53 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5fe40981 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x61caba07 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7a11e9fb mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x879e8294 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xac43d147 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb4b80f2f mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc3baf558 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc3d72e17 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe6238668 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xec55fd09 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfe609f90 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0ecd2157 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3148554d chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x34ce5e42 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x373e9210 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x41615aae host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x54b3e3ef host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf3149682 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2a4ad068 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x30a4a833 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 0x3e166102 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x8aaabb60 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9aacd6f0 qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xdb3da2c1 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xdc13707a qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x011afdba rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0c7c49e6 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x108fff4a rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1422bd69 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x17b0e1c1 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x18b3c58e rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1c4865a6 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1fbb7b29 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x22fc7b83 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x246115f4 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x29b139dd rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3d7adaac rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4ba80710 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4d157c0b rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4e886e83 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x553b99e2 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x55a4da6f rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5a58e55c rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5ebb203e rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x64cec4e4 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x666afc79 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x67cf7d91 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x85bab527 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8f45a61f rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9019dfe8 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9eab1212 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa449442c rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa58682d6 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa675e1b0 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa6a37cc0 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xad8381e6 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xae78f8e6 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaf0156fe rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcb55f07a rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xce007e15 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xce762ad2 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcf52fb66 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd6d87962 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd6e4a9bf rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd93b8447 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe2b12b4b rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf0071c1c rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf09b0736 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf96d2777 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x05d242e8 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x10c3f136 rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1b5c6af6 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1dc8e1f2 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2f06601f rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x58bac26c qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6568cd08 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9fb2db73 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xabe11e93 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x003adac0 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0059968e rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x028908b9 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x27f397c3 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2935b991 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3dc64d00 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x453a803b rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4b809e17 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4c39d91c rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x50948a47 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x52562278 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x541e1ed0 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5b591eb0 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6b3bb18f rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x757fa7ef rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7902a974 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7d968d96 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7ef599a4 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x820e2eb6 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x84b4e2ea rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8568216b rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x85dcd6ac rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8c64fa2c rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8eec755c rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x96c6ad81 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9e738c6d rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa21ece9a rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa4de694a rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa603cd41 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa7b945f2 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb6b653f0 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbf423bc8 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc48fb388 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd5f3f8c1 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd7d85d2e rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdbaaafc8 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe44eb2c3 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe4bad7e9 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe934f294 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xed364e37 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xedb0207e rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf6caad74 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfaafa5a2 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfbbe1ded rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x04f2a588 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0c503e05 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x10add286 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2e1b0245 rt2800mmio_get_entry_state EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4cd9e515 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4f913561 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4d88c92f rt2800mmio_start_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x559e4213 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x580bd0d6 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5dbbf028 rt2800mmio_get_dma_done EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x66139f00 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x87c6bf95 rt2800mmio_flush_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9c3c1050 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 0xa7f12429 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb53340ea rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbebe4ef5 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc33b7aa7 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd5900677 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe9180c33 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf8af5255 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x08288b71 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0a60f6a8 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2935b783 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2a5facd2 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x316b0b87 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x31bc4b3b rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3c0a7680 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3c335ad6 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3ead4f61 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x446b5b63 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x47bed6e8 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4c4dbd99 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4e83553a rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x54b85e5d rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5c5ddbf5 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5d27f1bb rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6648ba9f rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6bef5915 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6c6c02d2 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x715ecf05 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x719b4e67 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x77d05c51 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8db69d4a rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x98fcc7e3 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa02734c4 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xac132f33 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xac5d3bca rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb4158958 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xba5e0256 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbafdc118 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbb30aa87 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbb592496 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbe618a34 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc0fbd81e rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc13505b6 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc16f627d rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xca79d167 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcab2b4bf rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd8658fe7 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdccb54d7 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xde22ec49 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xed73850b rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeedb19d8 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf3f948e7 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf6473e81 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfc546b8a rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xff97c703 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x01540cba rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x05a66b0c rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x43b551a3 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7be21660 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xbc89a887 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x5d39198a rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x941d1aac rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xf7cb60c8 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0307659f rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x192c6d24 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1d74bcb4 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3d8a21e3 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x56edcfa8 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5923e0c4 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5e0ec25c rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6ebadd40 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7f23bb3b rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x88a9a145 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa10b9068 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xac244c66 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb3e59f58 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbe9b0bd8 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc3c98b17 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd0f195be rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x03aa7e0c dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8bca7c7d rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99689371 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbaeeb6a0 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x04aec961 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x057ac447 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0895ad2f rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2ac89495 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x39d9b619 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3a844d7e rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3cc10bcc rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f444414 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa2c27a6f rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc5c3361e rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe20d2fa6 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xebc8a3b5 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xec1e5366 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf0c0b337 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x071a450a rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x10aa77e9 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1839555b rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1aebd2ff rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22449c99 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x24b5dc08 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2b0c6cc8 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2d828c1d rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4083a50f rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x408e544c rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x522ddff9 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x592a2ade rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5c2fe942 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5cdf2f90 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x66e9f01e rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x69b4f3ec rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6c2b156d rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6c8ba4d6 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x79ec9cc7 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7b4f7de8 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x827475c6 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x877f8579 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8e2d7c77 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8f4fb8a8 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9225486e rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x923f1a6a rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9fe5408b rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa669fdeb rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb54174a8 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb67e1ff4 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbc9bddd7 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc0907e85 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcaabfe08 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcd5c740e rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xce6dc36a rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd71dc78b rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd7dbe2d2 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdc5f992c rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xddf648b8 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe38e78f2 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe9051236 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeb5bc7c1 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xecbfc2da rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf1752c29 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf57094f2 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf5e39249 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf955a36d rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x701ef2e1 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7f01a97a rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc4e0f9ed rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xdb3ed2ac rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xeb65d89d rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x004d61fc rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x55205d31 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x9d7af254 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x119ce4ac rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x167528ce rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x45fefd07 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4f4232aa rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7d9b6bbe rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7f5a72bf rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9092ec5c rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x92467226 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc404a893 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc55f53b7 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xccef8f95 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd0cd3689 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdf1212cd rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xef8a3836 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf03fc450 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf041a315 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x01e6032e dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2bc9e2c6 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3515b67a dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x994b2b28 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0f3f1fb2 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x156bc52b rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x26fc5a3a rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2e310995 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x34824f5b rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x37ddc422 rtl8723_cmd_send_packet EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4733e6e3 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x48f5116d rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4a088eff rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4ac965b5 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x53b00c05 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x614987b6 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x68c71c2f rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7ba643ec rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x48569fcd rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x566cede3 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5c1a848a rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5d8d75f4 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5e514bce rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x80b78e17 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 0x9201c6e0 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa5a6abd7 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xadbc91fc rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb1159382 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb2fc6e02 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc9f222fd rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xca516c68 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xccce3846 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd6bf2ba0 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf79c3d7b rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00ea2717 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0eb7e9cb rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x16d367e9 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f114b14 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f900da4 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x20745554 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28d4425f rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa2ced8df rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb3952068 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc9e3f909 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcdc7d80f rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xce645714 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd19bbd71 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdc444da5 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe0e444b8 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xecaabfa6 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xef468b62 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf3a5b385 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfbb8a83c rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfc162cf4 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b0fee21 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24a577f8 rtl_fw_page_write 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 0x2ada2bfc rtl_fw_block_write EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37b993b4 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4315c9ae rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5005309c rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f7574c1 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63d94e1b rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x64f65ca6 rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x650401b9 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db16c8f rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7efdafeb rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94642324 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ca01a4c rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x45439b58 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x45b0a69e rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x681bbb63 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a93d678 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b6174da rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6ba8c8bd rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7500f6ae rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x768e588b rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ac70706 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fe356db 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 0xa01de801 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa092cc4b rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa11c4186 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa883bcf rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb1195361 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc551d2c2 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc82b6e0 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe265faf9 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe84e1410 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9b4651b4 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafbb4cef rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5788042 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc99d4894 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xca13a735 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9f05ab6 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda9b62a6 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb17024a rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2cd6ac7 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xefec60e0 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf479c444 rtl_beacon_statistic EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0376450d 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 0x30b80b69 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x495b0ff3 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7337a70a rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7836dba9 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa84b08c3 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x20633d0d rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x22115ff6 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x24482e15 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4181083e 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 0x0309e822 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x4c1ead21 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x73cd2feb cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x8b5238b7 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x357846d5 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x8ab910ab wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xdd522a59 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00897aba wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x1483ad97 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x37415e4c cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x95624452 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xec641061 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x630f5327 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xbc81baca wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xf5b39f1d wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00e96671 wl12xx_cmd_build_probe_req EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0b65ba6f wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0d85e485 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1800cb84 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x194621e7 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b58c7d1 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1d3175e3 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1df1f3d0 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06e279fb wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0915abc4 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0aef9790 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1169b012 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x120d92a1 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x147c8e21 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x171a12c2 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1efa08a8 wl1271_acx_set_ht_capabilities EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2e6e0edf wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x32234506 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3dfafb88 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x47ea0fd6 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a260d24 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a955db5 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4ceebf62 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x51690d61 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x57b86119 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x58c88f97 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a1af872 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x637204a6 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x649379a8 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6d773ce7 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x79b28b6d wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x80467c3c wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d213338 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9536cf5e wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9fa26303 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4a68c0c wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae153d3b wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb1f15a6b wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb480030b wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb7b5bf87 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1555796 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x22916b4e wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x26696262 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2a99c120 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2b0f0ae7 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3367c953 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3b3e49a0 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x44b2b811 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4bba1c10 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d6e9a86 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x573b2bff wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5eaeea9c wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f44c01f wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6fa405f8 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x829b5255 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84788f46 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x87d1e676 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8e6e6bf6 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9ef16932 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa008f16e wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xad97c346 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbb7055d2 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 0xc5b7547f wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd4cdca92 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd755251a wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd9eda56b wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdad5e182 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdf7b9fc2 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1645cbd wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe21574b2 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf3aa5537 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf59bc8aa wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc291cba0 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc32d02df wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd39b00f3 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdcfe319d wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe3f7a977 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe667c150 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe89225aa wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeccaf97c wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xefb764c3 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf0e2ae92 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf75f6d12 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf7b081fb wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe926fd7 wlcore_disable_interrupts_nosync EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x184992da nfcmrvl_nci_register_dev EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x69bc2dce nfcmrvl_parse_dt EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7eab869e nfcmrvl_nci_unregister_dev EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd64be894 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6345cbd3 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x93270cb5 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x95665b65 pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xa4c8147d pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd77f5716 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x0e4887a0 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x196eeaf8 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x928b41fa pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x9346c927 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb7464607 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xcc620400 pn533_finalize_setup EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdfb93fbd pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf8d7e764 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xea168f12 pn532_i2c_nfc_alloc EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x29de0242 st_nci_remove EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4c791b74 st_nci_disable_se EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x76a14a15 st_nci_probe @@ -15224,55 +15231,55 @@ EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_c EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x80f3167c virtio_pmem_host_ack EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x821ad414 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0a4cb73d __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0f3d4f73 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x10c0dd67 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x041904ee nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0c1e52b0 nvme_unfreeze EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1b955b0d nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x253492ba nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x28476d08 nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2a04ccc6 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2af943ca nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ea60eb0 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x30dd011f nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3465fe4b nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x37a4630e nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4211ab79 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x45b93483 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x188448e6 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1a84f633 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1cf8c59f nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x28356d17 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x30508695 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x30a94a9a nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3344e3e6 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x401d95a5 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x40b7d522 nvme_sync_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x59c895f4 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x60a93afb __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x623dd2b5 nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x635b01f7 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4e16deea nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x580d1c38 nvme_start_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b0f526 __traceiter_nvme_sq EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6596d8ef nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7798d119 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7aab088b nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x66092aaf nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6a7d89a2 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x768b59d5 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7aa7582d nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7c29eed1 nvme_stop_keep_alive EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8445d36a nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x849e9bc1 nvme_wait_reset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ab19397 nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x963a49b3 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x974cbcba nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9a56e946 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9f219b4d nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa0fce224 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa3a54940 nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa67818dd nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb39592b0 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb6d7890a nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc5392399 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd35c8e46 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ffc08b1 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x90c96543 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9299a553 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa9228720 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb0884973 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb47a76d6 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb79cacb0 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbddd7315 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbdf8dde0 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbfe4c1d7 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc0793e5b __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcb66ed42 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcf1e6948 nvme_wait_freeze_timeout 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 0xd7858fdb nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd993801b nvme_enable_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdcafb566 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xde08bb03 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xde246f08 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdfa4d718 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe7e22661 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe92a878f nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe9c482be nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf0a944ea nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdcd51466 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xde236ae1 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe5397bd4 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xea99ee86 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xee2f7a3a nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfdd437f7 nvme_start_freeze EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x01119449 nvmf_should_reconnect EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0e1f31fe nvmf_free_options EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1044b024 nvmf_connect_io_queue @@ -15285,24 +15292,24 @@ EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xac8ef89b nvmf_connect_admin_ EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfa94c59d nvmf_get_address EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfb1b5e3a nvmf_reg_read64 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x284d6b67 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 0x4e27636d 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 0x03b79f05 nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0efe3045 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x220dd5d1 nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x33594093 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1513ef32 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x298b11e5 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x30612620 nvmet_req_init EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x402c073a nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x52747499 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x536a9725 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9640503a nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcacedad8 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe353f1ee nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf45336e8 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x47a4d220 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x64eadbe6 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6fa958bc nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7cc14626 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x96cb9873 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb6e0901f nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd04c7f51 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf9ddbe5e nvmet_req_alloc_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 0x4a013682 nvmet_fc_invalidate_host @@ -15317,8 +15324,8 @@ EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_compara EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x0beeedc2 mcp23s08_probe_one EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xde6b7ca3 mcp23x08_regmap EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xee10d84c mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x62c12d8f cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x6629bd2e cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x4cf1efe8 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xc8289686 cros_ec_sensorhub_unregister_push_data EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x0556164a devm_reboot_mode_unregister @@ -15328,9 +15335,9 @@ EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x931c4985 reboot_mode_unregi EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x75ccfd07 bq27xxx_battery_setup EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x7d6add3c bq27xxx_battery_teardown EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x8c81acf5 bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x6a1fea42 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xb9223a47 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xdb90b98c pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x740dc4ac pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x89542d5e pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xaca3d5cb pcf50633_mbc_get_status EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x24bf16c5 extts_clean_up EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x4fdede1c ptp_qoriq_settime @@ -15340,22 +15347,22 @@ EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x93be7e9e ptp_qoriq_free EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xc49823c4 ptp_qoriq_adjfine EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd266377a ptp_qoriq_gettime EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xe888ac64 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x03e541d8 mc13xxx_get_num_regulators_dt EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x27d5c813 mc13xxx_regulator_ops EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3cbb8c00 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7713ee09 mc13xxx_parse_regulators_dt EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9c2aebcb mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd5253304 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x344dd363 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x373b29a1 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5b9d955c wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x801e3673 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbbe22cd1 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbfd5dc50 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb8762509 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x03253367 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1e812f58 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1edc0928 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x210998bc wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2df0ce53 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2e84e633 wm8350_register_regulator EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xc727ca45 wm8400_register_regulator EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x10435f16 scp_put EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x1bdb52eb scp_get_vdec_hw_capa EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x418559fb scp_get_rproc -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x5fb46758 scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x5c64f8c8 scp_get EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x6fa7f7d0 scp_mapping_dm_addr EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x9f8260fd scp_get_venc_hw_capa EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xcb39dd52 scp_get_device @@ -15376,92 +15383,92 @@ EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc4b8c9e2 qcom_remove_smd_sub EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xfec8b46d qcom_add_smd_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x950d8f20 qcom_pil_info_store -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x4f34aafd qcom_q6v5_init EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x60090070 qcom_q6v5_panic EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x9300482b qcom_q6v5_prepare EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x9b362216 qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb9b10285 qcom_q6v5_init EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xbdc9605c qcom_q6v5_unprepare EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xc8b31957 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 0xd52e1553 qcom_add_sysmon_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x049f7442 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 0xbaf98942 mtk_rpmsg_create_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xb3a4a00b 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 0xa5d3fc66 qcom_glink_smem_register -EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x186ee36c ds1685_rtc_poweroff -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x054f52d4 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x08ea4f0b cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f5d144b cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f697859 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1831df3d cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x19a1c88d cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1b767c0c cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1fd648fc cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x217b6dbc cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26101f9c cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2b59d424 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2de34a3d cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30b6a445 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x33f5f1fd cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4053ffbb cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x508c4b24 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x763aea0b cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7731c124 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7aac68ff cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0xbbd56999 ds1685_rtc_poweroff +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x09749506 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x27785afe cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e788707 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x31de3b1b cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x32bfb689 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x362e23d4 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x36e799b7 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x38708992 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3892f451 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39eaa2dd cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ecf5c0c cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f4733a5 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55257d7e cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64761538 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64d70295 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x679a1e31 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6805f3f1 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6bd1580f cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6d090b17 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6d8f7a7c cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6f83a83d cxgbi_conn_pdu_ready EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a31c190 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9fa5fc98 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9fde7dfd cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa064e4a1 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa83bc62b cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8aa6d8b cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac970688 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad7939cc cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb49f4ece cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8da33d66 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9239e263 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x92dddd2c cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9399dfba cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5519aef cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb4ecaea6 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb6a81d8f cxgbi_conn_xmit_pdu EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc01ea28d cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc3a0ffe9 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc3a65044 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcbe76372 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda224fd1 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdaea0aff cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb4216a0 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe08388b3 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc71f9c4f cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcbfdfd23 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcfe8ceca cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd38e2039 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd3d13f69 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd51d0237 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd7697f72 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd90ae63e cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdff92847 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe01686fb cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe4467799 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5b0ab9f cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed78dd9d cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef258084 cxgbi_set_host_param EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf1c70537 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf27bcb2c cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf3f01c06 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf54199fc cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf756bd46 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfb34f802 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff0311d3 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xffad0591 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x008b284c fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x020d5272 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2b982823 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2f294be8 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3ff041d8 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x735ea079 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7a9e914c fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7b56e6e1 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7f943e8f fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x80cb6393 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8b1e56c0 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb0b49264 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4f00516 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7e1d249 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x16071ae2 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x40586b1b fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x44674b75 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4abd3a07 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x60203ac8 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8a738ba7 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8fd0c2d0 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x994f0ac1 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa0ef1221 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaeb2e0a9 fcoe_check_wait_queue EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd5a3b2ce fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdb73cbc3 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd0b5303c fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd93c56be fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xeea52e2b fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf0a01a47 fcoe_fcf_device_delete EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf25f6730 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf3f90d79 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x1d72bff0 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xc65f30e8 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf693d664 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfe0c6154 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x09b5d1b5 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xca219353 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 @@ -15470,210 +15477,210 @@ EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xef930f82 iscsi_boot_create_et 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 0xaf06e899 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x03c4fc27 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x04fe0e51 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x05b0bf0e iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x092f4e74 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x094f043c iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e7c4032 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ad2832a iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b021f34 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0bdde823 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ccd2439 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12426321 iscsi_host_free EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13d0c342 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16c6ddc6 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1875739e iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33f0f0ba iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3aea8993 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1746fbb8 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1cfaf27f iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d001462 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2023c8a4 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21a3ff93 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2449c5b0 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2660c4cf iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2f78404b iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b93f165 iscsi_host_get_param EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3c431908 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4141938f iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46cb13d7 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49a8d81e iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x512d62fa iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x534cb1b3 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57a1d9f7 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b427b1d __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x61469a00 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x61ae4bba iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69b72c2f iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6c1d783c iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6f497476 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x77163079 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x835b6adf iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8a7e9d60 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b930d51 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x42c18196 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x42c9444d __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x48973081 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x56f1c411 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d00ba4a iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6036d2f3 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x668d4e86 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x694076bd iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6cd75b0e iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x737036d8 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75819100 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x782e18cf iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x84464dc2 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8971d99c iscsi_target_alloc EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x92d9cade iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x947d750f iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9993140d iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x99fc30b4 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9ffaa83c iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae302913 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaeb9d357 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd43aeb7e __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd70b2691 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd723f8e5 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc17c5da iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdfe444fc iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe5eecbba iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe74d3b46 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe8e23ddf iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe99c1cd0 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x918502d6 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9682d7e7 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x983ff341 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a4eb0c2 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa405af15 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb39fcb98 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbddb6fc0 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc61dfc9b iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6ab61df iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc787766b iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5686a3c iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd57f8a2a iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5fd1ef1 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdfec2ed7 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe2c47997 iscsi_requeue_task EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeebf12d0 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xef62e654 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf058429f iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3eb45d9 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x01337b28 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0187b44d iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0518ba7b iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0edede51 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x29193444 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3ef48463 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3f0d28b5 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x451dc029 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x523543ae iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6376d83f iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x665b7e6c iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb0a6dc0f iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbc36cf93 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd00bd16a iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xea5fd1e3 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xebcf29eb iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf6680b01 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x17ac9c32 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1bbabb9b sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x234c45a0 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x433cb662 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x46cb1378 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x59479e11 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6379be61 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x65ea356f sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4eb7f60 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf64b4f6e iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf72ab324 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa44d417 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfbf5f406 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x01b1cf4e iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0ca84c12 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x14fd0276 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x22285d66 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x36268e0d iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x375b7947 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8b720263 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x97e8a7ab iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaf72e959 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbf61ee20 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd6f29a80 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xde49d65c iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe24c83f8 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe6b9aea3 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xed04019c iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf71a1fa7 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfeb65e63 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0172d74c sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x02854fe9 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0de1fa0b sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x16b55f26 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x22f3168e sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a6c57ab sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x31ec5259 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3852d12e sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x38be03aa sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x70147355 sas_notify_port_event EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x753be3c1 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x76a0b3a3 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7a6c6ed5 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x82e970d6 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8648bd34 sas_eh_abort_handler EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8bd40f84 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8ca29db8 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x94f5227d sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x95440caa sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x97238ffb sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa1b115ec sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa8581dfe sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xabcf305e sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb3afd0df sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb6f9ec80 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc2677a47 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc56d41c0 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc8a1ecb6 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd5d1019c sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf4ebe392 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xbc49ec1c fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x93544030 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9377916c sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x996e2b23 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xac512205 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb317e2f2 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xba54204b sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbb1bbd97 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc373cfd1 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd1de1e5d sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd4f7a90a sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdefcb1f3 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeac46a13 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xecf5253f sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xff6d07ac sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xe3ea829f 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 0x05f532c1 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a9e8fce iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1cbddd14 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x279f7a9f iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0699d887 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x06fd7ac7 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0edda4c5 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x149a3d58 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x16da414d iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2125e94f iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x26ee33a4 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2951f788 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2990d5c5 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 0x2b1868ca iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x311476a4 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d58067c iscsi_lookup_endpoint EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x338f0d3f __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3647bbc4 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x364d2bec iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36a8f0e5 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39e7b03e iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a80567a iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4a628c9d iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4f830738 __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54526007 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3c9e7f69 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x449264e9 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x44a2dba7 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x44f0ee7d iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48ac3614 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b736d80 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x519cd3d3 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5368fb0d __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55badda7 iscsi_free_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5cc066f5 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64ea777b iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ed20492 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67d77926 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 0x70335086 iscsi_get_port_speed_name EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x739d02cc iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7690e146 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c0e6394 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x730f08ac iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75c10773 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7adf7f8c iscsi_find_flashnode_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ced5abd __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x809fd6ef 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 0x84a005f1 iscsi_get_router_state_name EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x972f431d iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b0f983c iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c112402 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9da38f65 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1371eee __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4aa72e9 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9324fcd9 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95d5ff26 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9975288f iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3af1bad iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4784483 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4d54086 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7b298c2 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9e0a8fb iscsi_put_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0862c49 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb55858e7 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb57f657d iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9e6ae36 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad40f732 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaebc513a __traceiter_iscsi_dbg_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbd59a45f iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbed1c434 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd0c39bba iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1fd58a2 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd3d78ab4 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd3f30c9d iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5aafebd iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6084796 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd67a7ab8 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd72afba9 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdb5fd78b iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc48b0fc5 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc58e1e4c iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd861d77 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd0d43de3 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd90ca223 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdfb2b60a __traceiter_iscsi_dbg_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6c62795 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeafb1183 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xebe241d4 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef3c4da7 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf385f382 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf55fea42 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6d9cd0c iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2a19c257 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2f82ac8f sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x80a1d305 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xbc5c6b21 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xecbc9864 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed5fb1ef iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6d8a02d iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7a46a23 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb99dd6e iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd6304b8 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfe710b02 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0be8ce52 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa997b4b0 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xca46c6c5 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf542c8cb sas_tlr_supported EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa85933a8 spi_populate_tag_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xe1da4718 spi_populate_tag_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x379ba041 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5f98243c srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x80739bea srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2934e231 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x375443fd srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa77e4c00 srp_release_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xaf56a2df srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xbb563fd6 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd958ba28 srp_attach_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf9ee54e9 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2ce118f4 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2d3eb6ac ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x335ca405 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3691c214 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x403b4433 ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x42a57d18 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4a84eebf ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4fad06d0 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5e569ae5 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0f1429b1 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1ff3a8d2 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2dae2ddc ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x35029b67 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x37c52999 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3b509078 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4d7dfd0b ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4f9d17a0 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x60e58347 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x623877b2 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6304486f ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x694ffa3c ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6e0d879a ufshcd_suspend_prepare EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x862bf397 ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa0fec764 ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa21d4dfb ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa6dcc001 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xcd62a6f5 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xcfdcb9c4 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xcfddeaf5 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd7f09107 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xeff42ea5 ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf01c5cab ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfa9e56bd ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x817786fa ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9a68b7ce ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa51d6af3 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa712f0b4 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa864214b ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa8971fa4 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe6538267 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x2a678ddd ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3e2810b5 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 0xa2454e90 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xaf25d6e7 ufshcd_pltfrm_shutdown EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1dd4664b siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2659f043 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3f2cd9e9 __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x58b7b135 siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x86282abc siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xdc94c5eb siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x0c365221 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2ec61ff4 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7c3ff8e1 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x85230de8 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xba916023 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xe7558a50 siox_master_register EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0e33ae26 slimbus_bus EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x115808ce slim_driver_unregister EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x16f97c22 slim_write @@ -15741,24 +15748,24 @@ EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf666524c dw_spi_resume_host EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x1b9ea368 spi_test_run_tests EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xc570e8fd spi_test_execute_msg EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xca6e14f0 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1dea0c44 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2abc5040 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3503d195 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3c026c9e spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5d6a4107 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6083542e spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6318f833 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6340a589 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7c2f4bb5 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8c49c805 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8cda6ec9 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8eed8d11 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9b434bcc spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9ca0652f spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc0f9ac6b __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcd8564a7 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xce79c973 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe79d1e32 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1f201dfd spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2de1e954 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3904548b spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x63e36a0a spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x64998a51 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7ad30802 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7bada273 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8783e819 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8bdd219f spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9f1e1c83 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xad005cb3 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb0c4eec2 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xeb6da4bf spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xede8b7c1 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xedf0a4e8 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf06c15d0 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf3c9cc58 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfbe64a56 __spmi_driver_register EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xa0256254 ssb_pmu_spuravoid_pllupdate EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x009be88a anybuss_read_fbctrl EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0224425b anybuss_write_input @@ -15816,6 +15823,7 @@ EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xc5703fa3 gb_gbphy_register EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x176cc6fd gb_spilib_master_init EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xe766059b gb_spilib_master_exit EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x39fdecd9 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0xff7edef9 sp8870_attach 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 0x189247ba amvdec_write_dos EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size @@ -15840,10 +15848,10 @@ EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc3a946f5 amvdec EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd733fe1d amvdec_dst_buf_done_idx EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd94dbf8f codec_hevc_setup_decode_head EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xed8e62a8 codec_hevc_setup_buffers -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x27256a3a target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x27ff2729 target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xb6969505 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xef41e293 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2f1b9cd8 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xb48313a8 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc8e85010 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xf3b5bbc8 target_queue_submission EXPORT_SYMBOL_GPL drivers/tee/tee 0x009199ea tee_client_open_session EXPORT_SYMBOL_GPL drivers/tee/tee 0x06adc085 tee_client_invoke_func EXPORT_SYMBOL_GPL drivers/tee/tee 0x0c70934f tee_client_close_context @@ -15913,20 +15921,21 @@ EXPORT_SYMBOL_GPL drivers/uio/uio 0x46bf5390 __devm_uio_register_device EXPORT_SYMBOL_GPL drivers/uio/uio 0xa8b30d94 uio_event_notify EXPORT_SYMBOL_GPL drivers/uio/uio 0xc0b25194 uio_unregister_device EXPORT_SYMBOL_GPL drivers/uio/uio 0xdcbd295f __uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x51d8eef3 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x555a2000 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x03508b30 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x00c143d0 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x36f5906f usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1e849f54 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x208f7d19 cdns_remove EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2090d502 cdns_set_vbus EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2d89b767 cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x52580a9d cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x779dc329 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x4019967c cdns_set_active +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9f4a682e cdns_init EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa14e2cc5 cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb55ed5b3 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb4f274a2 cdns_resume EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xbcc2b8e5 cdns_drd_gadget_off EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf6a16d71 cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x13172566 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x35e7d0a6 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7d981934 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x66795773 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x8224f400 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb49deb4f ci_hdrc_remove_device EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xecb68a4a hw_phymode_configure EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x0315465c imx_usbmisc_init_post EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x0364e87b imx_usbmisc_hsic_set_connect @@ -15950,23 +15959,23 @@ EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x547d6a87 u_audio_start_ EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x69101bea u_audio_stop_capture EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x860f7acf u_audio_get_volume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf3dba745 u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x01660d6c gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0d8a6922 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x20e262c3 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x43cbf2a9 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x53295544 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x086d1000 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0a38402e gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0c0d8ef6 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x16f4a5fc gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1aed4036 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x48472928 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5128c01f gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6138fc35 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x84536a38 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x852043c0 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x863edfef 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 0x8ae8c157 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8c48eacb gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x91e2fa2b gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x937a0b38 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9bad30c0 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc19b5a5e gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcb8a8300 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd9e62fa7 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xeb8f519b gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xecc2f033 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfa0dc999 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9abb3e0b gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa145eee0 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd678e04a gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe534ae4f gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf41caad2 gether_get_host_addr EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x05f2f55a gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x37c49c41 gserial_disconnect @@ -16019,21 +16028,21 @@ EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd5a727e3 fsg EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf412d0eb fsg_common_remove_lun EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfdd3ca3b fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1c177180 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5713445c rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x717d2000 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x775fcd0f rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x83e36653 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x852aa6d0 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb6f7fc65 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbfd581da rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc6142a45 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd6b2d895 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xeb4bcc02 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf1f5696f rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf493d927 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf6999c04 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfd291366 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1052734f rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2ae7d7d3 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4a1ca6ce rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7715deb6 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7a4837d2 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7c7ef3c7 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x92a3a3c5 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb62d86ee rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdd4e552a rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe2aa42d9 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe663aab0 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe683b2e8 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xec8b7a21 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xecadd171 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfa24bddb rndis_get_next_response 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 0x0e9c0479 usb_interface_id @@ -16085,15 +16094,15 @@ EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb49305fb udc_basic_ini EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x7c19d9c1 renesas_xhci_check_request_fw EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x65b843f2 ezusb_fx1_set_reset EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xfe84aa30 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x08b8c78b usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x108e25af usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x14e642e9 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1b7f1160 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5b60b108 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6a4e1215 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd84e06be ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd8c03925 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf5913af4 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x358aa56c ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x39034617 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4034b4d9 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x41dfcfd8 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7935bc79 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb726972b usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc74fe3dc usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xccc7d6c0 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf0ef3acc usb_ftdi_elan_edset_flush EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0x5fbdbca9 am335x_get_phy_control EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xe2c44d25 isp1301_get_client EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x6544fb0e usb_wwan_port_probe @@ -16134,6 +16143,7 @@ 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 0x01b99b34 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0268a3f8 typec_altmode_attention EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x02699b06 typec_altmode_notify EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x111bc1f3 typec_cable_get EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x11c47967 typec_get_fw_cap @@ -16198,7 +16208,6 @@ 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 0xf8383ffe typec_altmode_get_plug EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf98e49c6 typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfe97efb0 typec_altmode_attention EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x16c9f72d ucsi_create EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8402fc51 ucsi_get_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x84b8d3ca ucsi_unregister @@ -16208,31 +16217,31 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc9458db3 ucsi_register EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe28f87d1 ucsi_send_command EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf1d32029 ucsi_destroy EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf5334b74 ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x00b6f2c5 usbip_dump_urb EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x030fd392 usbip_in_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0538e3b7 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x146e7a66 usbip_recv_xbuff EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3b07bbb0 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x660163a9 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x55fd5d5b usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5c4de4dd dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6d7b4869 usbip_recv_xbuff EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x802dcc1e usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x86410d5e usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x862f0c61 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbc6943a6 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc41bb2bd usbip_pad_iso EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd71b56d5 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1523d77 usbip_recv_iso EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe22d2dda usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf462edb0 dev_attr_usbip_debug EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf75882b1 usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf9ef2ce7 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfb9e2d60 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x05bf9ce9 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x273e2d07 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2970345b __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x40a51fab _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x494eb5b9 vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4d290807 vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7068bdd1 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x71f6cbd8 vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xef8efe6e vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x296f493e _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3ab65c3e _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3bfe78bb vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4493756c vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x49aa72ee __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x49da838f __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9f7fbf65 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc0f1242f vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xdbaa8137 vdpa_register_device EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xe84817af vdpasim_create EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x6fdadb68 mdev_bus_type EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3c8c2db6 vfio_pci_core_unregister_device @@ -16367,331 +16376,331 @@ 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 0xe7529f47 dlm_posix_unlock EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3da86d6f lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4f5b788e lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x60161143 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x624fd187 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x22cc64bf lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2d48ebdd lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3526fd28 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4c73779b nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x51ed7bcf nlmsvc_ops EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbc27f19b nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbc8c16f1 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc199d55f nlmsvc_ops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00a5db03 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01160463 nfs_submount +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xae5946b7 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc7fa26f6 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01a8c795 nfs_set_cache_invalid EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02aa9708 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04a63518 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x058a7ac5 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05ebf8c8 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09437cd0 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09706f32 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bdc792f nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03978d58 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05b510a1 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0706d48a nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07ed33f0 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08e577f0 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x098a79e8 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a165ab9 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a93a5a4 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b52b528 nfs_mark_client_ready EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c8f05a3 __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d539355 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fb30e5f get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fc25b44 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10187bc1 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cea3d89 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e70596f nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f722b81 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f75b0db nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10361699 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1065bb32 nfs_zap_acl_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12a340ab nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12a347df nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x134eee79 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14e336fb nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c8e208a nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1575fa56 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x184e678d nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x193d5f4d nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c092406 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c3afc3d nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1efbe0bf nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fa21bb5 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fe56208 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x204c1013 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x211aa94d nfs_file_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23213da8 nfs_link EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x292a8761 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ad8a8f0 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c2ea969 nfs_do_submount EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cb995bd __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cefbdc4 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d1816b0 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2da61cb6 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e50a8ef nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f854423 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d2b7da7 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d2c99c2 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3156f134 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31ddbaff nfs_release_request EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e7914f __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3518106e nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32eaa4a8 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39c8f894 nfs_create_rpc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ac94804 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e48b12e nfs_client_for_each_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x406b7dbf nfs_clear_verifier_delegated EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40f6c0db nfs_fhget EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44b38c15 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48762992 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44438743 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x453eca4e nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x454e7faa nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49ecfc67 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a8fb8a3 nfs_statfs EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d2e3192 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51155a55 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5126a5af nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d040708 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x502fbcc5 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50839bd3 nfs_refresh_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x538fd621 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54b5cae1 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5542dea2 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56098767 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57dcf12f nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55b9da55 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x561a8410 nfs_generic_pgio EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x586d7e32 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5889192e nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58eb1dfa nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5980a660 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5afed870 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b2eaf3a __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b4b9029 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x600a063d nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x620a2416 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62dc2685 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64705b83 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65349bc8 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6636adc9 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68191ec7 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a7664bd nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a8e06be nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c1b67ba nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c1ba143 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c2f5043 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dbe96d8 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58c5c097 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b03476f nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c791a28 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60803dcb nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x623dfbd5 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6297ed8e nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6522170d nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x652585e1 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66db43e9 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6895ee90 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e351673 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e37a4ba nfs_instantiate EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f24f3e1 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fa913d4 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ff94e84 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70e57382 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72530bdc nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7262c9a5 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72d56e74 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7383ff35 __traceiter_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7471bd2f nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74d8f65e nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75b1153f nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c2f2752 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7de23a5b nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fd8cfc8 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82a8cfb3 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x748c4174 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x770bd64a nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x771dddd0 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78b3014f nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79a05c61 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e6159f9 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8193d670 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81cbb5f9 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81dfc01a nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82037606 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82a77bf0 nfs_file_mmap EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832fc19a nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83e4ec84 nfs_scan_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x842aa210 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86e12e5b nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87e4cf4e nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88d23af7 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88e40ef9 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8985c2fb nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b6ddeae nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b9b0ac6 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bcb2654 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d5956bc __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f544566 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f68ac50 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84600b6f nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8665a37b register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87b10638 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8869a3cd nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88f85d6e nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8aa8c886 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ae68337 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8db16614 nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90ccf4eb nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90fc9d25 put_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x948bef32 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94b05d95 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x936a2160 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94047414 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94b3d2f2 nfs_client_init_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96010fa7 nfs_server_insert_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99d200d6 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cdb19f7 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ec17b47 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fe72d8f nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bfda1f8 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c31228e nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa035272c alloc_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0aff5ec nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2077416 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3c2f29e put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1ad88c5 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5151dcc nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa62e3ff8 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa67a9ec7 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa84202b3 nfs_put_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa1aaecc nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9cf0841 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa5256f6 nfs_umount_begin 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 0xaf5ee36e nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf6d1964 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb11dcbeb nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2b417f6 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb34db165 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3efcfbd nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba0b90c0 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf926c12 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad317672 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad80b7d2 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae53c5c0 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae560bba nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaed47c3d nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafa123f9 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaffbbbd1 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb037a294 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2886726 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2a0242e nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb395acf6 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb65b2c2b nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9f519b4 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbef98059 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc22cefb3 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc23051f7 nfs_pageio_reset_write_mds EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4442fb7 nfs_client_init_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc45c2911 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc52f8074 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc91280be nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9d85fd4 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9ddd412 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9ec5496 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca2c5da2 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcedcc58d nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd21690f1 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd310dec8 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7a174ca nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc663820a nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3afa629 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3ce5b3d nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd43baa85 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd54ae75a nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd658bf25 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9079cad nfs_access_zap_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc66961b nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde79e134 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe29c2ee6 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe38b0675 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe46199e3 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe52dde21 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe72c332f nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe968c3b9 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeaee3421 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeafca28d nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeba94bac nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec693ab0 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed26d59f nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf039f453 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf20ef7cb nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf368d13c nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc4e2aa3 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde579951 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdefa41d3 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2ad16a7 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3bb871f nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe52256a2 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe604a2e8 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf36b6386 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf38fecce nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf71da1c5 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7cc3f79 nfs_pgio_header_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf98e21af nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa56a350 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfae16ca8 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc0c9a0d nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb55120b nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbe14a0b nfs_commit_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd430fa8 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd8b3e42 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfef31d05 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x29872b38 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03dc7235 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcac7337 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x92850793 nfs3_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07052201 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05b74670 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06cc6e6a pnfs_read_done_resend_to_mds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x093a75bc nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a059b8d __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b2e71a5 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c986dc0 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e3d41bc nfs4_init_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ef4545c __tracepoint_pnfs_mds_fallback_pg_get_mirror_count EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ffce64c nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1250a518 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15f8b94e pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1be0fc1c pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c69f5ce pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f9c0c92 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20524cf5 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23a33c43 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24ac6e7d __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25579805 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15de68e6 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16f01c98 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x181f71fb nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2088f3ff __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22a91b47 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26f83c88 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27a082e6 __traceiter_pnfs_mds_fallback_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a8e9538 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bdd8fbc pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c83c6df __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ad03dee nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2cf2120f nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e093f2f pnfs_ld_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e79bf5b __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x302f79fd pnfs_generic_scan_commit_lists EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31eec0ae pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34599f7f nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34cdf636 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35714576 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35a23446 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3bf59fec __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c8fff0f pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4184b6fe pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31f9cb95 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34a37052 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36db5551 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37442250 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37b520d6 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x384e0237 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b1a3818 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3df9c321 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f861856 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x435cc3aa nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43817638 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43abd075 pnfs_generic_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4543e9b0 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4644c04f nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46749b75 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4efab9a7 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4823555f pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c820f8b pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4da8a09a pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x507b268a __traceiter_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x538c4590 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5746618c __traceiter_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58fc5561 __traceiter_pnfs_mds_fallback_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b245994 pnfs_update_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ca3ae2b __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ed41943 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f3187c2 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6713fb43 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68829db6 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6201b941 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6348c969 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x637dac9c nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64d7588a pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x664e94f7 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66a64016 pnfs_layoutcommit_inode EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x759a4c3f pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b06ef98 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c0d69f4 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c56cdc2 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7013ddeb nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70966cca pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x713bd21c pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76812932 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x775c1a6f pnfs_register_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785d2747 pnfs_destroy_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b8d4bc2 nfs4_setup_sequence EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cf64cba __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cdbfb87 nfs42_proc_layouterror EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d979567 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x802fcd64 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fd68cf9 pnfs_layout_mark_request_commit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80e9d17b __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x836f041f pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x848e47d9 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8201404f nfs4_put_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8591bcdb __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85e9e23c pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85e9fee7 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87133f71 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87c40e46 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88146997 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x891f7981 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c7b6de9 nfs4_pnfs_ds_connect EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d3aad34 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90df99f8 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x912c4eab nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f0f0a4f pnfs_read_resend_pnfs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x913dbeba __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91b9b51a nfs4_mark_deviceid_available EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x931d7f55 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9fe03a04 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97ccd03a pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98297601 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e0cbe4c pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e863a13 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0180a2d pnfs_free_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0eca6ed nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1f9b9fc pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2b34cc6 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5d913e1 __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5e7a37a pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa716073f __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa716abe6 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xacb5c296 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad1feba0 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb19df34a pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4ab9bc3 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5fbef47 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xade90cd1 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae580eb6 pnfs_add_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb68f2dc0 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9605245 __traceiter_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba7c6b2b __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbceb3599 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbdc86028 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3710fdc pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc66e7a0b pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbcc653f6 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6414b5f pnfs_error_mark_layout_for_return EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcaeb1c01 pnfs_generic_sync EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb7ed01e __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcbeb3195 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce241e5a pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcfa6f12d pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd99b016f nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd7ce306 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce4a1ceb pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xceb41e3c nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0266a82 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd47ba441 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda101a88 nfs4_schedule_session_recovery 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 0xe4c7498f __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6975228 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe69eeee8 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe08102bd __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea4f147e __traceiter_pnfs_mds_fallback_pg_get_mirror_count EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee97c613 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xefe97ab4 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed365a1c nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xedea19f0 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5ecf2fa pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7722f2c pnfs_update_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7bb4f9e pnfs_generic_ds_cinfo_destroy EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf99d06b4 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9ebc3d3 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa99edc9 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfbb95b1f pnfs_nfs_generic_sync EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x20315529 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xb1448005 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xff346924 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x668af5bc locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6e78e6f1 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xbaef5fb6 opens_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x395faba2 nfs_stream_encode_acl EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x3e9731d9 nfsacl_encode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6e70f33e nfs_stream_decode_acl EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xee9eb13b nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x53883a07 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x6ff1f9f2 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x074144ca o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x18fc61c0 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 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2c2e84df o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x364f639b o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4113ace0 o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4d61707d o2hb_setup_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 0x9ae576a7 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x76c7bd51 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x977c2830 o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xad0e7cf8 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xaf334a0f o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa95e9818 o2nm_node_put 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 0xc31b2bcd o2nm_get_node_by_num EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xeda05073 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xddc2a062 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 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2974f99f dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x324c6105 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1dbde2a8 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6ce7171d dlm_register_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x82b12068 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x94234824 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbfead9a8 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x81e54037 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa7370476 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd1f6435b 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 0xddd691b2 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe3cf0ac9 dlm_register_eviction_cb EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic @@ -16740,1053 +16749,1053 @@ EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xdfc68dbe notifier_err_inject_init EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x021957e1 raid6_datap_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0f8a2742 raid6_2data_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xd4cb6873 raid6_call -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x1c29f578 lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x898e1f00 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x0abdfa7e garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x271e203b garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x80ab1cb8 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x8c8c6f6e garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0xd6bc918e garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xf4c37a9f garp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x3d394823 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x4c7e2a3d mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x8608f082 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0xa5ee7670 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xa7a7c887 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xe325c5bd mrp_register_application -EXPORT_SYMBOL_GPL net/802/stp 0x9dbe6aa4 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0xdc46c2e4 stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x4861f4b4 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xdb7f8d02 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xa76f58c4 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xc0df045c lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x3834735a garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x438ebeb0 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x55cfbd03 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x6c114080 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x84739f22 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xde27cde7 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x5bca1da3 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x75401ca8 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x78d52dfb mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xa12ab8af mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xa9e51c4c mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xc53f14c3 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x2518037d stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x8d0ae9dd stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x21fc6d98 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xf59203f5 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 0x9ab5e8a7 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 0xe75b14e1 ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1375e584 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x32520856 l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x63328017 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x713f0f22 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x845ff35e l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe0727206 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe7e1fe61 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xeaed1221 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf98b5ba1 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x91e0eaeb hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x180a4ba6 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x19928b48 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1de47d70 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2c3f70d3 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x31c4cbb9 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x39837449 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x407ada68 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x46f5340f br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4a7edd52 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4f0fed62 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x69356da5 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x768e7d8a br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7754f0f1 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x849704a1 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8d1239fe br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9366ddae br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9a67979e br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb0ca6422 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbee62df2 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc1e94115 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf4feb32e br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf69c5056 br_vlan_get_info -EXPORT_SYMBOL_GPL net/core/failover 0x19a35066 failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0x87cd1bf8 failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xde4ca722 failover_register -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e5badac inet_dccp_listen +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x145fc658 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4150fc35 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x60f6aaac bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7afc060c l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x931afb5e l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x973a52f6 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb5e9a702 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdc3b9091 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf7f401de l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xe5e59f5e hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0260ce96 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x248a4303 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2c9c4f6f br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2e68a412 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x34c3fb82 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5d5ee536 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x645abaea br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x661db779 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x793f9c1b br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9bcc74f5 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbfd66180 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc6408e09 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc724384f br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcc1ae4b6 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcf4efb36 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd8f6b8b7 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd9d0ea8d br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdb10560a br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe7360219 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe76ab767 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe84360c3 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf99ead09 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/core/failover 0x0d9ff9f4 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x47045f6e failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x57868c6d failover_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x00b644e4 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x00ec5afd dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0ffd715f dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x104cf6ea dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x11832dea dccp_rcv_state_process EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1a314ace dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1aa00d22 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1cc0f203 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x357833c6 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x46825e49 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2f01f90d dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3a576441 dccp_child_process EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x596a36bb dccp_reqsk_send_ack EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x599db82b dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6381f723 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x686e53e9 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x70bb1e74 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7229d7fe dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x78c16599 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x802cc347 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b4eb3f9 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x61d20dd8 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x645d0607 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6719eb26 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x69a0f157 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7aab786f dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7e10d1dc inet_dccp_listen EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x81b9ef4f dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x818b77dd dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8502d442 dccp_connect 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 0x8b5a51a6 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8d281e68 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8897b321 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8fab00db dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x94a64aa3 dccp_rcv_established EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x98009f83 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa2580dfc dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa319b5b1 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa39306df dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaf47182c dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb194dfdc dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb802d23d dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbda9b6ef dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0fc92ae dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc9ed0215 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd4be4dbb dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x99bc298b dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9abdf9d0 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9c2f4bae dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9dabe7cd dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbfe051a0 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0ed79ff dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc322e3ba dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd2eb0b30 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd3d67949 dccp_destruct_common EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe294ee53 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xebf4d427 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf36752fd dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf55ef99b dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xff0a27b2 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1b78e4d0 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x515984e2 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x745e0e57 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7bc1f32e dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x857ac452 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x92df0411 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x11394b10 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x15062608 dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x16a6cf8e dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1a2b5675 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1fe89184 dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x33365b4d dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3daae07d dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dccp/dccp 0xde5e0943 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xde83af27 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf280481b dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf4d1e3aa dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf4fb7678 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf9f93fc2 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x10a0da03 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1cdcdedc dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2cf8f010 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x31900fe8 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x457cdb3c dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9622a10c dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0159d9ad dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x02ef9e7d dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x110c1276 dsa_tag_8021q_bridge_tx_fwd_offload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x140de9bd dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1dc58245 dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1ebf82a2 dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2fcdbb07 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x33274cc9 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x37014949 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x37cab04d dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x39e89212 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3a264bc4 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x402c7ec2 dsa_devlink_region_create EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4eea1b4e dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x518dbc93 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x49845de5 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4a52158f dsa_switch_find EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x62b1fe88 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6d1bd42a dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x73298b5b dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7f771d0d dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x828282ba dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x868879ab dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8b32ee0e dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x984c72ef dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6fc6a63c dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x71afe1f0 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x757e726f dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7b0e05cf dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7eba00de dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x811ec50b dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x931c653d dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x93ba660d dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9d6f7dac 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 0x9f977040 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaf3346d1 dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb6327b48 dsa_switch_resume EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbf0fdbf1 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc0db7289 dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc1883b87 dsa_tag_8021q_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc8f10c9a dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd8ca8f7a dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe015ed49 dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe473deeb dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe6333654 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe898cf1f dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc6440ffa dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcb56f9dc dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcccea8d3 dsa_port_get_phy_sset_count +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcfbd8d82 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd628c452 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd6a7bf74 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe5b8e819 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xec00b171 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xee63867e dsa_devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf5468e62 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf57aaa09 dsa_tag_drivers_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf7d65546 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfb0284cc dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfc04aabd dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xff2bc058 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x109ef167 ieee802154_hdr_pull EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa61dd7da ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa7e4debb ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc0317e93 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ife/ife 0x0725eb8c ife_decode -EXPORT_SYMBOL_GPL net/ife/ife 0x220bebcf ife_encode +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9be73e89 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb0720197 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xdaef79c5 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xea258207 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ife/ife 0x46b70223 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 0x64825127 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x80e447c7 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x85c5c95e esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0x530caa30 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xd91089d3 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x08353146 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x548ae7c7 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x80797b14 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x81e8a01e inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9b59bb7e inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcc2c5683 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdac1cd22 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe94231da inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfb7fb08a inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x28aa0917 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0ff616ec ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x31b4dc7e ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x462d102c ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4f5367ec ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x54316bd3 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5afc09f2 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5be069f3 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x603d8b7f ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6b2a92f2 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6f283608 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x75798a54 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8be2f559 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaf0c1e67 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb2b4643e ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb4e96bc7 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xed33bd02 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf073a6c8 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x07f82a6e arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x2d9e8b42 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xd90231b3 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xee217be0 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xdaa914ee nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x53010c00 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x648c3a3d nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x683a19fe nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x70a1df70 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x927c65fe nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe8c7194b nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xeca55f71 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xd7853767 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x828fe113 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x8d164cf8 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x9d19d3bd nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x174c40c2 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xb3137ba6 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8c57e6cf tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb2b2af4b tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb3e1da04 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb904ffca tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd48d6ec8 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x187b22c1 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x67f9a920 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6ef92457 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7d1287a3 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x82055e1d udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x901baf4d udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc4e3c360 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd759a096 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x15d11748 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x6132787e esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x7ebb84db esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x07b091e6 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x493466c5 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xecb62766 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xd70fc028 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xfbcbf70b udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xd59c600c ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x7027a03e nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x9708042e nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x9f994915 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xf402ecbc nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2b85f617 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x54761d60 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5e4a5b9b nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8a2020b9 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xac330894 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xed8244da nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf0965046 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x50e2960e nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x4222d5f9 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x6f943349 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xfba1032e nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x3b4521a6 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x3e322708 nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x057e987b l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2383fc3c l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x24fdd368 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3230c1a1 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4742b5e4 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4b89d0ce l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x665c967c l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x73721a58 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x73ed493c l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb6b64e11 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbb58dde2 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc29f896f l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd950b267 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdba2a18a l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe03333b5 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xec911383 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf076b98b l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf1fb1ee9 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf84051a8 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfaaf1ae1 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfeb828d1 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x8317e7df l2tp_ioctl +EXPORT_SYMBOL_GPL net/ife/ife 0xefb079e6 ife_decode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x50e88c25 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xb2cbd7d5 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe570a0f4 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0x48c03078 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xffe40e05 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x05722e21 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3a230adf inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3d657fc8 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x60e0d18d inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9584d492 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x95fc8e3c inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa5e6a3d6 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xab57fe36 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb276a811 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x3d5cc779 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0da53745 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0ecd2183 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x16599cae ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2e5da3b0 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x42beb320 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x42e62c06 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x491fde03 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x551b7707 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7f1f713c ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x83774c7f ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbcf1aa7e ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd16e5423 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd6df3895 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdab496f0 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xde46bbac ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf1a7e00f ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfd8fa16b ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xd5d572e8 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xde7b5111 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x7ee0ca74 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xa04da853 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xc2ea67f6 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x00aa3ab8 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1b014d5a nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x32bcecb9 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc5a15653 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd225a49e nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe918326f nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfa921944 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x43cf7db8 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x51927a7a nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x8e3bc6f3 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xb17b3bca nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xa31ab827 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xd314b95b nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x457f5b48 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x475a4a49 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7f907428 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc37cd3ca tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc513f64b tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x129bd20f udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1dc698ca udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1f096afe udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6edbb4ad udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x901a8ee0 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xaabfa9e1 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xca86c9ba setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xea8cd29e udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x0910316a esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x78163fa2 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xa289fb1e esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x67b5be61 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x85e3414f ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xebb4b392 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xc9dde7ac udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xd528a155 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x1d4554d8 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x33a8e9e9 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xbd3dd4b7 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xd3eaa404 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x7e138416 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x49e32f00 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x56a205a6 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5bd50eff nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x85a36796 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc739c180 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xca4778c9 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf4e1461d nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xc4a8dcd1 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x2b22dcfe nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x3a4164ef nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xccf9c4fe nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x34f3cd43 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xadef31d6 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x02166d2e l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x028fdf69 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x11077134 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x16722dab l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x26174406 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x286b1d76 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3731349d l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x42a3b24e l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x43f3ec39 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6db0e44c l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x76b3f7f3 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x857fba26 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9862f85a l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9b789efe l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa5db7f1c l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xab70b735 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc2a3ab6c l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca9a8256 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcb157f12 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf9d9781f l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfee2b3d1 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xbc2db7aa l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xbaf9837e l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x15c70cee ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x192b5457 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x25800743 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x25abb6ab ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2789e056 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3d6fb1e1 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x75d9cd2a l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x02ed58ba ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x108e5d72 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x28ebd833 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x404c7ba9 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x42025c78 ieee80211_vif_to_wdev EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58504a4e ieee80211_update_mu_groups EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5db37762 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x60c08d32 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7f25532c ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x83f377da ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8fd6f349 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x904390e1 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x651a0d6e ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6b40de2e ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x747d17b6 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x78079266 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ae3d93b ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7e650056 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x99c16e80 ieee80211_iterate_active_interfaces_mtx 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 0xb6220408 ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbac01c31 ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd1270665 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd4f5a0aa ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xae830509 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc4b83a27 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc9827833 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcac77ab8 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd28fed5b ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd84d88d0 ieee80211_remain_on_channel_expired EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdd0f12d3 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe0c7e8f7 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf4ec13fa wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0bfee871 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5947f5c5 nla_put_labels +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf97222d9 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9a78cce ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3a2edbcf mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x547357bb mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x66deb4fb mpls_dev_mtu EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8016cbf9 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd091cbb8 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf8cc25a5 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x06959daa ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0763c348 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0945406e ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0989acb9 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b85c441 ip_set_del +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x858158dd mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xad27cbbd nla_put_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x177e7fdb 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 0x2e7cd671 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x38ad489a ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2f7b9652 ip_set_put_flags EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x40a348ff ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x48c9be7d ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4c621d1b ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4de42f3c ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5a8735a9 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5e2c670b ip_set_test EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x77e5b336 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x76ea106c 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 0x7f7429ff 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 0x839d7581 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8acb90b7 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9d4f0bf8 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8a1e5fe4 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8a2078ab ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9692c349 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x97fb0514 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 0xa3bc5f7a ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa5bd8ab9 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc5228de6 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcbf258eb ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd6274b53 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfc6c3e58 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0caaefdc unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x30589f98 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x325a5eab ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8ba227e2 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa693177a ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa9235f77 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb915b7da ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc61a11aa ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe3a9d85b ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xec234dc8 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf621911c ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x53ab0396 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xaab972cf ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc1e5618f ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd2985fb9 register_ip_vs_pe EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x268a4802 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x33f2de76 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa8f7cdaa nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xaa44b1ef nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xad9c6c8d nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5cfb2dfd nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x6ac4ded9 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x95d1d59b nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa2dab838 nf_conncount_add EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbe03a217 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xdd4abd54 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01dc68e7 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x022338b8 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xc830a718 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x048efa64 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05624f14 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a7712f4 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b45388f nf_ct_gre_keymap_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d6e5f6e nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e93556d nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ed1da37 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1468982a nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17274606 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19c27bb4 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1aea4880 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1bf177ce nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e108261 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f5498c6 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fe9b7e6 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20b8447b __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2301f964 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f283def nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10733fe4 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10ad0760 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f8f37a9 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x219bf716 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21d7fad3 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23bc898f nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23d25455 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26248c72 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26bd4ab4 nf_ct_helper_expectfn_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28c34649 nf_ct_untimeout EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c9e6ff7 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ce90342 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2eb91cae nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37607af1 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3859f023 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c910801 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e64fbc4 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fdaaa5c nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x319233bd nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x350544c0 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d1e7e78 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3dff7803 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e000733 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44a899fe nf_ct_tmpl_alloc EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473e385d nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bb8ef24 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48536560 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a800190 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4aff2171 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bf67c71 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c0ebf72 nf_conntrack_helper_try_module_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ea258d2 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53587b54 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d400a6d nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e5088d9 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62c13749 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x632fba94 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6423ba4e nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x687b8c4a nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x509ddac0 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5102f4be nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x527a7c40 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54186d71 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a675764 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d641456 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60b2d5c2 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61a9e9d0 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63c3f12b nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x69398e44 nf_ct_get_tuplepr EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70bef637 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76edf2b5 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x770d74ba nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77a13812 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f546c5f nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x802106e0 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8273a534 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85e265e1 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88e1fb39 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c0c61ef nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b5db5d4 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71cb11ac nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74415625 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7903750e nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79389771 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c29d820 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86e86801 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b130605 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b6137a4 nf_ct_tmpl_free EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c6e11f4 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e86900b nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f80ed3c nf_ct_tcp_seqadj_set EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93e768a5 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99aed119 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b307222 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e66047c __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1293a92 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1d6a947 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2fb5a4d nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3a901ec nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4bac2d4 nf_ct_set_auto_assign_helper_warned -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8bb6bb3 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaacb9515 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab90fed0 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaba581e3 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98740171 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9911c13c nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c8c722b nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f63c239 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f7cda15 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4f48f13 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5be85f3 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3cbc80 nf_ct_netns_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb288c85d nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb49905a2 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb887f061 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba8036fa nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd019932 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe5b9b9d nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf189535 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb00df6ae nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb127ca96 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb31daa8e nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb411596d nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb73df939 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba09dde8 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc3e54aa nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd9828e6 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe976ed7 nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc184104e nf_conntrack_find_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5af6501 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1a0c0b5 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd45cba68 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc586e791 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7d99fce nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcdbe9fe4 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0f054f2 nf_nat_helper_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd4c1afa nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdace9d1b __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdad4a9aa nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xddea1270 nf_ct_iterate_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1ee0b80 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe20584d5 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4261997 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe91174d6 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeaadfbb9 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb187c34 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb7a074c nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe59c8dd8 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe89c52ce __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebf9947f __nf_ct_expect_find EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed97e17e nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf172e237 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1a99232 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf02bf353 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1bf6e26 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2dee6ba nf_conntrack_tuple_taken EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf946a8f2 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf953411f nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9c422da nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc8d44f2 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf50d6bd6 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf87409ba nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf923d87d nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc7218a3 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfdf30fe5 nf_connlabels_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x230307d4 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xf23d6bfc nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x5abdfba0 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x47fb6c64 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7fa6560d set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa56daf7d nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb4e5ff17 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbca6e563 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc33851a7 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe15ae524 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe57020b5 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf3d7298f nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf724b276 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x9682e373 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4bbb6bc4 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x74aa5087 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe3fbb36b nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xed2bbdb4 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4b36950d ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x50952a44 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x730515f0 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x947ac4b7 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb3d9424b ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc8a15019 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe4fe20d7 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x6d5b44a5 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x827cdcd9 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x2167c9ed nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x335359f0 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xbc454471 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0d848848 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1044c184 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x119350e3 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x15f07084 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x17ffd9b7 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1bd46bda nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x65885d97 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6db975f3 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7207f32d flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x749859e7 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9999f823 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9b804f56 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb26a85f2 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc4d5f636 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcf62140f flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe7b3de7d flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf4c2c8d2 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0988c9e3 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x185ea597 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x202a8335 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x21cc23f9 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x7fa9c05e nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x7ce90486 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x6685dea1 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x04989b5b nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0abd95e0 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0b67d4c7 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x25864608 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x497953b0 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6f868c39 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa83ee681 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xae81fbdf get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbcf7af2d set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbfc2c90c set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xb84fbea4 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x24213e75 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x5bb12e48 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6db32a1f nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x97ae4dc1 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x049f199a ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x106e1cc6 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x107bfd90 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4b3133fc nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x503df193 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb5f61d26 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xff4cb93a ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xb9c3bb5a nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x972f3770 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xbf897279 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xf399353e nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xfc64a402 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1e1f5940 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x204ac421 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x33a1ea06 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x450094f0 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x46388459 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x47c75df0 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5709ce32 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5b066bca nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6072fb69 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x64c628d3 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x69b485d4 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x836ae0b6 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9cbbe169 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb72f624f nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc5cf8c35 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd4fd7051 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xed7c45db nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0f496ecf nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1f793529 nf_nat_alloc_null_binding EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4fcf0384 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x54f5e345 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5fdfe85d nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6774926b nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6aef5987 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x936754b5 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa0e1a81d nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb71ced48 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd539755b nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3dfda4f0 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3ee8ed8f nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x489053fb nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x58959921 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5f941f4d nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6eafe0b3 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa74a8bd4 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb52d0f98 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb920f684 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcf24303c nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd565b6a5 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd64e3823 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 0xdf420361 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe01b4e7c nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xffe58bfb nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe59ee6b8 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf677eb38 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0b58fdd4 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 0x2bcd492f nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3dd420f6 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4729984b synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x71dc2552 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x78446450 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7eb5e317 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x92ef7778 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb344cae3 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbc63b7d5 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x30aab00d ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3128ecf0 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x333baf89 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x543d15d5 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5977be7e synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7715c4d0 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9046cfa2 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa28b0ae2 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb59d751e synproxy_parse_options EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe061e275 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe91b1ded nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdec633e6 nf_synproxy_ipv6_init EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00fcb68c nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x03540f69 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x044dd078 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0516dd0e nft_set_lookup_global EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x09c24eb0 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0fa1a60c nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1b978677 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2332c0ee nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0cd0dc44 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0eb842ff nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1461dfca nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x17bd692a nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1c925c83 nft_meta_set_dump EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x40335ed0 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x46db747f nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x49bf5454 nft_unregister_chain_type EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4aea0694 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4aee9c72 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4d55d31b nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4de6fb48 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x51e60370 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x64373507 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68569426 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6922c50c nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x74fd82a1 nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7d5030a1 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x829578c1 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8bc3c805 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9002a63c nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9996c681 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa7a885e1 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9c2e418 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x55b40fe7 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c68f7d4 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x655a857c nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x70c1644f nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x71b24c30 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7da2c901 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8281cd05 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8e66ee24 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9148bfc8 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9538c48c nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa189d98e nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa48a31f7 nft_unregister_expr EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9ffc821 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbbc7e3b5 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf9b3218 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0fb13a1 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc312e039 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc6b1289b nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd64dc02b nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdc964c99 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdcfd9f71 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde3b0344 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb2cbafeb nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc1a7fb5d nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3ec5200 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc6f79024 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xce826b79 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf2ceb8d nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd76bc57d nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdc792295 nf_tables_destroy_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2437af7 nf_tables_deactivate_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe994c06c nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xea8b1aa7 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeef2e3f1 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf1bfd818 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf1d5d619 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf4438e3f nft_unregister_obj EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf7738411 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf9706036 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa6e42ad nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfebdde61 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x05206cf0 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3bde71a1 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x56bac48c nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xff178efd nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x11f43582 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x189114d1 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x49df1548 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x578a5e5f nfnetlink_unicast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8972fd44 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb49fbb6c nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb3ea0d6b nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb94874bc nfnetlink_broadcast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xed1417fe nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf0ec4cb4 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x02a7b34c nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2f79a4de nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb8cffa2f nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfaa1ab8f nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x06bee171 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x1464467a nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x1b12ef16 nfnl_acct_update EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x033376e5 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x06358179 nf_osf_find EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x487e015d nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x81837f6e nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x854edffd nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x9ec38160 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x4a64e9f7 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xe5e8a766 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x6208651b nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7bdeacf5 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x9a605a34 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf432f006 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x02781427 nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x22fd3c4b nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5816a1cf nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x98769bf6 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa7a14470 nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x076f1119 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x16d215b4 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1d34504b xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1ff26dfd xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x22d053e4 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xf3fabffd nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0079a618 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3043d837 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3d018bf2 xt_register_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5c8b4b60 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x610abbcc xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4289a56a xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x48e6e796 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4f0a3fab xt_proto_fini 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 0x80c3ac6d xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9b845d7c xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x88d5ddc3 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x958703bd xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x96923dc1 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9b653669 xt_check_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa8fb1ffa xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb6625f68 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbc64c0a3 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa34c5765 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xab767923 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb5a0115b xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbb8987d7 xt_register_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd05252d9 xt_replace_table 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 0xe4838550 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe809268e xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeca8b4ee xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf3274883 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xafcd818b xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xcd3d0a84 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xea540481 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf88e855f xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfaeb02f6 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x94ce31b6 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xbd72138d xt_rateest_lookup EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x235c6036 nci_spi_allocate_spi EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x81246b19 nci_spi_send EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf083e64c nci_spi_read EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x0cef1589 nci_uart_unregister EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7a429d50 nci_uart_set_config EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xfefcae87 nci_uart_register -EXPORT_SYMBOL_GPL net/nsh/nsh 0x3dd1650c nsh_pop -EXPORT_SYMBOL_GPL net/nsh/nsh 0xde583f91 nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x02e297b3 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2fd91a27 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3e298358 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc4553180 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc9d17a0b __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xfd821a47 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/psample/psample 0x2f61b248 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0x30eddb95 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0x4b36dc69 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xc0a24d68 psample_group_get -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x65d6bbbe qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/nsh/nsh 0x46558f02 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0x73fc92f6 nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x344c8aed ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9451b1fb ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xab00180d ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc1173592 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe0a2977f ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe690c74b __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/psample/psample 0x07a7b2ea psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x7bdf1bb3 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x7eb2338f psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xe694904d psample_group_put +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x526ad004 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x6f5f3f48 qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa3120923 qrtr_endpoint_register EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xd10b3211 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa9928ff6 qrtr_endpoint_register EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x065d777a rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x114836a2 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x1663b1b0 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x24bcabad rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x011ca089 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x07e63314 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x0a598687 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x11cb8711 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x1213bb5b rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x17c53f28 rds_send_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2e3c2212 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x32fa81a8 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x2b2822d2 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x2e9f4e6b rds_send_path_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3c42220b rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x3ca7f299 rds_trans_unregister EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x4af04a7a rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x4793b06d rds_inc_init EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x5bdcfa33 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x5918b18b rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x5aee8b01 rds_inc_put EXPORT_SYMBOL_GPL net/rds/rds 0x5e2628b9 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x6385c738 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x6d40b4bb rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x71f3da29 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x63ef649b rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x667f1a5d rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x797058fc rds_conn_path_drop EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x7bc48d0d rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x83231a78 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x86f842ee rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xa658ea64 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xa6b82e7e rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xa7f4071f rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xb44ca702 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xb4ba8d19 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x7d439043 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x8a16e5f6 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x8f7c713e rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x99da36d6 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xaf1a088e rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xbf81c6fc rds_info_register_func EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc89fad28 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xd21c489e rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xd2f1f9eb rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xe67e450e rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xf2a22f3b rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xc5530c0a rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xd560df6b rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xe71b5404 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xebe4b512 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xec9123e7 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xef8344f2 rds_conn_connect_if_down EXPORT_SYMBOL_GPL net/rds/rds 0xf4c257e8 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xfbad04be rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xfc66fe83 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x4eb1683f pie_drop_early +EXPORT_SYMBOL_GPL net/rds/rds 0xfc9eeb36 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xfdc0433a rds_conn_create +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x1a2e8a96 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x4e87fe06 pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xf8b78237 pie_process_dequeue 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 0x9101ba0e sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0xa430d7e6 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xc5a0f75d sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xfba71824 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/smc/smc 0x0707a8cf smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x48ee5ea7 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x56a09741 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x686858cb smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x93a6b4b5 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xaf4c8228 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xbdd9e7c5 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xc0ee9eea smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xc6c550d7 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xfa54cad1 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x03e74bf0 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x208e57fe gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x36067eef svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sctp/sctp 0x0ae10279 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x6f4a7952 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x8bbb4458 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xe41558c2 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/smc/smc 0x02f2ac55 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x07e448f6 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x213c80d8 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x71486849 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xb6a61d29 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xb850ded3 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xbf055135 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xd891cdf7 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xeef72d45 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xf8cccc10 smcd_alloc_dev 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 0x9eedbf3c gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x73467eb1 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7a73df43 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7aee39de svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa15dc1be gss_mech_register EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0396cdc6 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03fb411c rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05c73c10 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00e54df7 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x026d8c62 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0445d9f5 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x058fd9e0 xprt_reconnect_backoff 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 0x06c86de9 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x072eb587 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0905926a rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0916ef83 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aa90e22 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x079e47fc svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0894450d unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08f7c8b1 svc_generic_init_request EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b84fea0 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bffb562 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b9e9bf2 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfef281 svc_xprt_init EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c28008b rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e9effd2 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f641f75 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12a00b79 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13e169ed svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x143af961 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1519f62a rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15431cba xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15fcda2d svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x161cdc96 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x168affaf svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x170bb4cd xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c8d3be8 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da40895 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0db86f53 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e1cf94f xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e9a6e14 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x103ac95b rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12298c85 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1273dc81 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x163ed576 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1717c071 rpc_switch_client_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1807e7d1 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c1e8506 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c9b562f rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ca76509 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18642549 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18744aae xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18aa583a rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ba28251 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1daf3f7c __rpc_wait_for_completion_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20c85937 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20e17ffc rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x223a7bcd xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23dfdb00 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2475852c cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24af7c18 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x261fd04b xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26203c7c rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x265a0787 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27336b1b gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fb3b821 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ffd8976 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20cdacdc svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22268e42 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22fa0030 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x236798b2 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x251b1cce xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x253c83ba rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x254bc4d1 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2686c8ca rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2887d61f rpc_d_lookup_sb EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a66e877 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c748dce csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2de09217 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f581f13 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29e5e4e9 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b4f2b00 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f71687c rpcauth_destroy_credcache EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x301fa603 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30489a3b rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x317e7803 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x319df850 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30db4ed1 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x312b1b7c csum_partial_copy_to_xdr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31e12af6 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32d6ff2d svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33d2bf70 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x341b3df8 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34b37188 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37487547 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37894752 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37a9b6fc rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a8a048 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31b068c5 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x328e04b3 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33a01fce svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3449108e xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x352530db xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35c8e8ab svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35e2acf3 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36632f48 xprt_release_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39bb8996 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a3146bd xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b690fde __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b7cf240 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3af96240 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b21da3f xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b5fb7f2 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c8ee760 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3da2f533 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e90ec34 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ecd3791 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f482ef9 svc_rpcb_setup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4091f37e rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x421a15f8 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x425ee15c xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44104d39 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44929118 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40cb8c93 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x440200d0 sunrpc_cache_pipe_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46dc82d3 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47242a3b svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4765970b rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49f7a7e1 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a5270d9 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ae4a345 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45c05236 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x476e721c rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a053759 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a5f433f sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aa2568d gssd_running EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b9f8b23 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cab86b2 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d1ce4ae xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d1e8ef0 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b0f3e16 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cd229be sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d402b73 xdr_enter_page EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e1ba292 svc_xprt_do_enqueue EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fab7169 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50bc249f xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50ef00a4 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5193e1f1 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51ebf1bd _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fd5234e svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fe4e77c svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x505098a4 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x509fd2dd rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51210d10 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x513ea012 rpc_sleep_on_priority EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53554ac9 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x543a3ee2 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x555e7c26 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55b48cc5 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56363dfa svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56f0b7a6 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57ac6327 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x592314b6 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x596c31c2 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x540a8fae rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55cea613 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x568b0abc rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56f50f59 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57ae0716 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57d8ad4a svc_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c5b390a rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cceb174 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d7cb868 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f3b6808 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61a3caf1 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65120fbb rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65bc488f rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6606062c xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66703c3d xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66b8aa5b rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x675fb5ae rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x677f7303 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67dd4c53 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67ef4acc xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6946f781 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69571e3c cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69d9e90e svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a651c9c xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aa80483 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ff7b606 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x706eb92d svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7078e2a4 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71c537c1 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d79997d svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d8c9591 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5deffa28 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e16e30c xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eb10915 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eb26bd4 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f8ddfc5 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60338742 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x607536df rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61274149 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x624b4077 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62589015 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6298f800 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6639df37 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x668f55b7 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6741d2a2 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6af84a91 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b3eb1d1 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bfbd00f xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e950620 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f8f8bd5 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fd05fb5 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71e8cefa svc_process EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7292292a xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74191841 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7483ff97 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78213316 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7909da6a xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79dfaa5e xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a25fb04 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bad6355 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c0b9d61 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ce3fb32 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d7c700d svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72fd1824 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7352be34 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x748c90f5 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77437e69 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7852dbf6 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x792c18b6 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c0e8e75 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dc52146 xprt_wait_for_reply_request_rtt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ea31d67 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f086fb9 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f9eb374 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80d2b640 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x823d35c7 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82dc2dfb xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84290d8f rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x849a3bdd xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84cb266d xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84df27de bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x872bdcfd sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87426e42 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87e0f9a9 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8859d6c3 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a6b6cb2 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a710ae2 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d0b45d9 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8db635f6 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e4a3ead xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ecc065f cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90203179 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90f8d190 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f509714 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fc056fa svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80838102 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x816ca388 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8254fa9f svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8301aeed rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83fb8879 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8630c09b xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8796e8ac rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87bc0ac8 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87e08364 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8871d38b rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8965af26 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x897ff7ee rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a640868 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bbc37e7 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bd7fa1d xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d548bdc xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d93ac20 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dde5cc0 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e63f3a9 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ed25de6 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fd3e745 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9119b6ff sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91a8d599 rpc_wake_up_queued_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9224516d rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92292201 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94068efd svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9613e297 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97ab757d rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x992d1ce0 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99cb14ca svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99fc526b put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a3d79e8 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9aab4d14 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cd47686 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d29be95 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef38bfb xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f585061 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f88cd37 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f9b11a4 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fa2fe8d cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9355c953 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9557b5c0 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9577b46c xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x961e879a rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97965c31 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a651125 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9aa79e32 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bb7162d rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bfb3add svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e313080 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e519915 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ed693d5 svc_rqst_replace_page EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa30100c8 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa460367d svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa467527f rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4cf651d xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa530496a xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa58bd665 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa771b9b3 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa791fa19 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8c0bb8b svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabda0012 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac7ca968 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacad6ba3 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad182786 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad9c4b0a cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa267223b xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa294b4a8 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4e7ccdc svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa74f1f34 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7898158 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa98daf52 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9b20ec9 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9b39d7e rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa69b961 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaad24754 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabc24c0f auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xade841ff xprt_request_get_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf9fa6e3 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0e1f00b xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1deba74 xdr_stream_decode_opaque_dup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb314ae97 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb496febb xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3959857 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4b367c3 rpcb_getport_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6eb8487 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb753f493 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb89e26ab svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8e17422 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb92b2b8b rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb1febf2 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc515008 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc95d675 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdb8ab01 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe56d028 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5292f91 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5318f7c xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6e3ff58 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7ca6dd2 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8134db9 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8e0b123 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb90b73b4 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb933d48a put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba1033f0 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaad35bb svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb246d4a svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc6e7a1a sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd983717 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbedb93bf xprt_release_rqst_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfe35095 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbff67e25 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc01700be rpc_add_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1670e2d rpcauth_lookup_credcache EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc169d947 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc268c050 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2844e9d rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5463c24 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6eb95e6 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc75f3f1b rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc78c96a4 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc79c0464 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3a02edb rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc53f2ec5 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc64421e7 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc65f1481 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc758b152 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc78acaa1 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7b5622c rpc_put_task_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc96a661b rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcacdc76f read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9a4677e cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc06d87f xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc510b41 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc618d95 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccd7896e cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce306ec9 rpc_force_rebind EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee66d07 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd01ed19e xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd073e2b1 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd392d823 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3c171d6 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4191fcb xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd420009d xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd462b005 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4d059a3 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd64f2f38 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd675c35b xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd73193b1 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xceda82a4 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xceef9281 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2f95a92 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd374cf78 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4a65eab rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd97ad544 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9cdf4c8 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb4a0a0c xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb502ebf rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc32a486 rpc_unlink EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdde39c1c sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde8ae731 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf33a2a2 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe07a8219 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe38cf5bb rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3a78d05 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe40615ef rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe512cae7 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6f7c7d rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd8eeb38 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfd363ad rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe50df586 xdr_init_decode_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe709300d svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8ff76a6 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7882ecd xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe87469f9 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe894b050 svc_seq_show 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 0xea970c67 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9f06b75 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaeb61a0 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeafb9f06 xdr_stream_subsegment EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec203a0d rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec82499f xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecbe1a11 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedc78e2b rpc_clnt_setup_test_and_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef40d575 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf118d8d1 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1360e0b svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2931b36 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf50136d4 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf64d6fa8 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7c99e0a xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80ab41c sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfacb6556 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb30cf47 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb7706cc svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbba2bb3 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd3a3b8d rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe419076 svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfec82572 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffe3f91e rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/tls/tls 0x2a588df6 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0x4ab81739 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x9ce12257 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xab8a5fa5 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeee43e8a rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf01be768 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf05b490c rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf20ed3ce rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf26e3326 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3e82a78 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf562f130 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf65c0709 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf844abee svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf89930e6 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf986c058 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa680d8d bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb756b2e svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff40f1da cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff5a61a5 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/tls/tls 0x04ba1e15 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x258a8223 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xb0ac6e61 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xf6542ca7 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 0x0c624e50 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x14e745e2 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x20300332 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x269e458a virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x26a4e83a virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x30133ba1 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x32b853b3 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x435c9b90 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5ea70ef3 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5eb2d28d virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x667ef821 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6a5f3117 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x73acb1fd virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x77c38f66 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7cf9d977 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x802b53e0 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x828d3035 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x85b3dda1 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9434e95a virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x97b9d190 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9baf4ed4 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa445c19c virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb1643cb5 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb95df574 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0c85b70d virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2042dbea virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x21c7352a virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x24cae2b4 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2a1b4d48 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2c0572bf virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3318ccb5 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x45a498b6 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x46c8dce2 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x46e59230 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4803d1be virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x518a4e03 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x55cc5319 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x56459bb8 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5d8a5019 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x63147bd9 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6c126ac4 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6c6dce0d virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7428777a virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x77ce8eed virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7b11109d virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x844efe09 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa06ab5e7 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa6299bbb virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xab27ce77 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb178f24c virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb6be87b2 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb990a4b4 virtio_transport_stream_dequeue EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbc64f201 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc2558918 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc3ba291c virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc5b0425b virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd9cc42fd virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe1550459 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe2c02066 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe392f066 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf1e750d4 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfd39e27a virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x01344514 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x047bb161 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc1d38ade virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcd623bbc virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd0316ee8 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd36fd282 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd5e0844a virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf7d4acec virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x010c0399 vsock_for_each_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1b905d81 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x25db6e0b vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0ffc9d9f vsock_core_get_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2ef33d6f vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3bc586ef vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2a3905f1 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x37aa6bb8 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x39767676 vsock_add_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x42343b68 vsock_remove_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44420515 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x46a418b0 vsock_remove_sock EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x546c5376 vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5fb391ae vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6db41dfb vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6dbc5b1b vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x72d0ecfb vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73c083af vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x53489bfd vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5b34cead vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x65c42a10 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6d7efa26 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77f27ffa vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7afcb041 vsock_deliver_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9af094e1 vsock_remove_bound EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa2b9ed29 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa79d4602 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaa985926 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xae6af967 vsock_remove_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbec7da01 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb45aba54 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc1119d22 vsock_core_unregister EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd348b1f4 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd8fa2d0f vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe9bd292f vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd3540fce vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe12bc2e2 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeb6ca32b vsock_remove_bound EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfadb9b72 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xff80b5b5 vsock_create_connected -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x182b3388 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x19b15de9 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x24c07ecc cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3011f3eb cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3e1870b2 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3e6c5227 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3eca2b94 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4eda3844 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x529525b9 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7d3f62ed cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x800d11b5 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x94e16ec6 cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbbb8dcb6 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbf98a3e1 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc820340f cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd33df177 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1606160a cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x17ccc6cf cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1dce39d9 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3dfa3bbd cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x466b23e6 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x49961ca8 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x640e482c cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x834bda6e cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8df1c013 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9cbbdf21 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb17dfaba cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd3648d0e cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd881b0d8 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdd0b4b62 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe5e2f44d cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfc030368 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 @@ -17799,29 +17808,29 @@ EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname 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 0x26dc8c66 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3068a996 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x45a8829a ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x59604235 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2e088097 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x535b982d ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7039dace ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7c6a1ab4 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/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 0x097e7684 __snd_seq_driver_register EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xdb17a0e7 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x07d222a2 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x21bf2ff3 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3b73ae59 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8e008fde amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0c6e66c8 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x169a3f3f amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1b624058 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2ca91d0a amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6edea369 amdtp_domain_stream_pcm_ack EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9ea8fa44 amdtp_am824_set_parameters EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb8861e1c amdtp_am824_set_pcm_position EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xba445a6d amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbb370245 amdtp_domain_init EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc2f38d64 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xcadda6fa amdtp_domain_init EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe2a00b1b amdtp_am824_midi_trigger EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe7f16344 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf180f3c3 amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf34efbc8 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe86c576f amdtp_domain_destroy EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x027bf471 snd_hdac_bus_stop_cmd_io EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04fa4ab1 snd_hdac_sync_power_state EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05b1047b snd_hdac_bus_init @@ -17931,7 +17940,6 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x069a8fd7 snd_hda_multi_out_dig_ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bf39708 snd_hda_enum_helper_info EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c017383 snd_hda_set_dev_select EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e273800 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fe50206 snd_hda_codec_load_dsp_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1007e336 snd_hda_codec_set_name EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10a23955 snd_hda_codec_build_controls EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1298fa75 snd_hda_apply_verbs @@ -17941,10 +17949,8 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x191fc19a snd_hda_get_pin_label EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a45e875 snd_hda_codec_pcm_new EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bf4a589 snd_hda_codec_eapd_power_filter EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1dea25c8 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e960c6e azx_get_pos_posbuf EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ece559f snd_hda_mixer_amp_switch_get_beep EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f314ab3 __snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x206bb63b azx_free_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x242aff57 snd_hda_codec_set_pincfg EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25eeaedd snd_hda_add_verbs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x288533d9 snd_hda_get_default_vref @@ -17953,28 +17959,29 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x307c91c9 snd_hda_jack_pin_sense EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30868093 snd_hda_jack_report_sync EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3292a059 hda_get_autocfg_input_label EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x329d765a snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3449895c azx_stop_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3de1faaa __snd_hda_add_vmaster EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3df5dff0 snd_hda_get_dev_select EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e81b886 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f681199 snd_hda_codec_load_dsp_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a29fa78 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4aa8a845 azx_init_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d6209c4 snd_hda_override_amp_caps EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d9dd29d snd_hda_apply_pincfgs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e5127e1 snd_hda_add_new_ctls EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5132f643 snd_hda_codec_set_pin_target EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54d59bf8 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57630b52 azx_get_pos_posbuf EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57a91a92 snd_hda_detach_beep_device EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a59e77d snd_hda_spdif_ctls_assign EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bb7e46b snd_hda_add_imux_item EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61b113f2 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x627c9ba0 azx_stop_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6607ba38 snd_hda_multi_out_dig_open EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x667ae710 snd_hda_codec_device_new EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66b0b4fe snd_hda_codec_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x687c526f snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x688eabf3 azx_bus_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a3e7e94 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b128940 azx_get_pos_lpib EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72d3a4c8 snd_hda_set_vmaster_tlv EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c4c45a5 snd_hda_check_amp_caps EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c601f89 snd_hda_get_conn_list @@ -17994,9 +18001,7 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89eed4a0 snd_hda_multi_out_anal EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b860589 snd_hda_jack_set_button_state EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c31ce3c snd_hda_codec_cleanup_for_unbind EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e4d5ba0 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e82b672 azx_probe_codecs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8eda366a snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91711e3e azx_init_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x917e78c0 hda_codec_driver_unregister EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9194e3ee snd_hda_mixer_amp_switch_info EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91f96187 snd_hda_jack_tbl_get_mst @@ -18010,10 +18015,8 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x968e6d7c snd_hda_get_hint EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96a2e7e6 snd_hda_mixer_amp_volume_put EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ca3a3a9 snd_hda_lock_devices EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e845aa8 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f2c6286 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3a7dabe snd_hda_codec_load_dsp_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3fac8ee snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa3350d7 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8b8a209 azx_bus_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae6c6c3e snd_hda_parse_pin_defcfg EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0943699 snd_hda_codec_amp_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3fe3f1f snd_hda_sequence_write @@ -18023,34 +18026,40 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb82a8c0b snd_hda_sync_vmaster_h EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba49753b snd_hda_jack_unsol_event EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb09af2e snd_hda_jack_tbl_get_from_tag EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc30d9a2 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbccc77b1 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc3f781b azx_probe_codecs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbea1ef3d snd_hda_codec_update_widgets EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc28ee324 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6ba256e azx_init_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7659d4e snd_hda_codec_new EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8957d9e snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb63d67b snd_hda_codec_load_dsp_trigger EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbf30027 snd_hda_mixer_amp_volume_get EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce9bb8f8 snd_hda_pick_pin_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf9b7bd6 snd_hda_codec_get_pincfg EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0709c9e is_jack_detectable EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1d1005e snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2e089b7 azx_init_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd73b9429 snd_hda_mixer_amp_switch_put_beep EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd73e9172 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd112413 azx_free_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd154648 snd_hda_correct_pin_ctl EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdeedd71e snd_hda_mixer_amp_switch_get EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2aff2c1 snd_hda_get_connections EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3510e0e snd_hda_apply_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3c94d6a snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6cd802f snd_hda_codec_load_dsp_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe86a2977 snd_hda_codec_amp_stereo EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8ce2357 __hda_codec_driver_register EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8e87e3c snd_hda_jack_detect_state_mst EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea06d6d3 snd_hda_codec_set_power_to_all EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee78ae3d snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee997309 azx_stop_all_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2e4d998 snd_hda_input_mux_put EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2eeff6f snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf44fda7d azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf58a2f23 azx_get_position EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf69fc912 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf890133e azx_get_pos_lpib EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbc074e3 snd_hda_jack_bind_keymap EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0e67a154 snd_hda_gen_spec_init @@ -18076,83 +18085,83 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcb85be5c snd_hda_gen_ch EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcdb97988 snd_hda_gen_parse_auto_config EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd824ccb3 snd_hda_gen_add_micmute_led_cdev EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf3f1c019 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x3a30d794 mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x1210decd 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 0x40fdd42a adau1372_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x3ec0d945 adau1761_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x78f66420 adau1761_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x06f78b10 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0b6c7182 adau17x1_resume EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2d35e882 adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x449110f6 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6db12f1f adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x62ce602a adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6d743e66 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x787f317f adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x79c6ef60 adau17x1_set_micbias_voltage EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7e117a95 adau17x1_volatile_register EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x987ef6e1 adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa61da475 adau17x1_add_routes EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xeca16da2 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf62b28b7 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf2a95a7c adau17x1_resume EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x0d6a42e5 adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1a23825e arizona_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1d22da80 arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x02970c59 arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x02d9c408 arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x02f4f043 arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x048f073f arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x05cc8d5d arizona_jack_codec_dev_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0c569b23 arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0cd187dc arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0d73625b arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1333b0ed arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x14bf3f6f arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x14c4caa2 arizona_init_vol_limit EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1d4f26a2 arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1e7c847b arizona_isrc_fsh EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x20c855c1 arizona_lhpf_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x25b9f957 arizona_dvfs_down EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x26e6705a arizona_eq_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2ccac01d arizona_lhpf1_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2e96daea arizona_in_dmic_osr -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2f2dd3b1 arizona_input_analog -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x307bf653 arizona_clk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3a960caa arizona_in_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x45352bf9 arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x27477293 arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2bf58e86 arizona_free_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2d287138 arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x38b4a339 arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3c814d74 arizona_anc_input_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4d8cfd30 arizona_ng_hold -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x560aaf7c arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46901353 arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4d5ec4df arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x50ccdfe4 arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x533dc930 arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x548e6430 arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x57276c2a arizona_of_get_audio_pdata EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5837b89d arizona_voice_trigger_switch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5b416d6a arizona_in_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5c96acf4 arizona_init_vol_limit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x63ae39d2 arizona_of_get_audio_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x63dbef38 arizona_simple_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x68156f85 arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x593e707e arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6124c579 arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x63a44e4b arizona_input_analog EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6d81fae3 arizona_out_vi_ramp EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x76492316 arizona_free_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7d4ef1fa arizona_set_fll_refclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7e902a32 arizona_in_hpf_cut_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7ef2efba arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7c66f77b arizona_dvfs_sysclk_ev EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7f26f273 arizona_mixer_texts EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7fcb929a arizona_sample_rate_val_to_name -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x80528df3 arizona_out_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x90932897 arizona_anc_ng_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x914e68b4 arizona_anc_input_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x94fb5756 arizona_init_dvfs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9bb934c4 arizona_init_mono -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa098c1af arizona_anc_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa3403f4f arizona_asrc_rate1 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa6f19139 arizona_hp_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa99cb644 arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x85edc66d arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8856ad04 arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8ad27e03 arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8c20766a arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8c324fba arizona_init_mono +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8cd7c35d arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8fa782d6 arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x94801fad arizona_init_fll EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xac3df265 arizona_set_output_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xac8420e0 arizona_jack_set_jack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xad5669f7 arizona_jack_codec_dev_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb82de0c1 arizona_init_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb926babe arizona_set_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbaa667b1 arizona_init_dai -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbb55d134 arizona_lhpf3_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc1b1047f arizona_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc1d9de78 arizona_jack_codec_dev_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc81932be arizona_init_gpio -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc84bd784 arizona_out_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc8f4c4a5 arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb4c9159f arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc753cecd arizona_lhpf3_mode EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcd9bed6a arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd5fdbeca arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd948a3c9 arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdf4620b6 arizona_asrc_rate1 EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe0e02fd1 arizona_dvfs_up -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xed125e67 arizona_dvfs_sysclk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xedf2a846 arizona_init_common -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf51ab046 arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe388ef1f arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe4cfe547 arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xeb09b5f5 arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf2574abe arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf59c52e6 arizona_init_spk EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x1ba6ab08 cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x66bd06b3 cs35l41_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xaefb4c88 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x22e7156d cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xa2a13d21 cs35l41_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0a9b3e31 cs35l41_regmap_spi EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x21d2b2f4 cs35l41_test_key_unlock EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x26574160 cs35l41_test_key_lock @@ -18175,27 +18184,27 @@ EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x4026c1c6 cs42xx8_pm EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xe6035706 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x3a9f48c3 da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x4dbb8c78 da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x5a8e51d1 da7219_aad_init EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x5f590393 da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x8dfc5eee da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xe593847f da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xeea06de6 da7219_aad_jack_det EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x156701fd es8328_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x17f0d410 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x25727a9c max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x48bab230 max98095_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x1b1eada2 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x91a08460 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x9e7a42fa max98095_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x04dd6277 soc_codec_dev_max98373_sdw EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x5c67379a max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x5f64e2fb soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xc4d060fe soc_codec_dev_max98373 EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xdce1477d max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x21f84397 mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x2b5e18dc mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x3dcb0e4e mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x856fd484 mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x0e67b578 mt6359_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x444e8e6c mt6359_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x894bb818 mt6359_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xaaf0226b mt6359_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x703924fb nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x270f0060 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x91771f53 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xb985da83 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xf19aec06 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x24659a07 mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x7b3fb82a mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x99292985 mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xbaef40e4 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xcc0039ef nau8824_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x09823911 pcm1789_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xc32e347b pcm1789_common_exit EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xd2bffe21 pcm1789_common_init @@ -18217,176 +18226,176 @@ 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 0x0974c8be rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x2c824fc2 rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x315107db rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x77b3292f rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x79f003fa rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xa6fdf4b9 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xf6e40c1d rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xfa4bffdd rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x296cb67c rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xe2649c9c rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x096da396 rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0d573e19 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x170a190d rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xae9f4f3b rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc8b3f1cd rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xd0c32d35 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xe8c29f34 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xfbc9e7f3 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x6965b65e rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x78d2ae05 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xf642dc47 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xc2db95a8 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x00980b17 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x015edf54 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x11fac78f rt5682_reset EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3489f853 rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x46aff836 rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x60792183 rt5682_register_dai_clks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6f94903d rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x77dd6d6e rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3835f2d9 rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x534b7ed8 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 0x9cead66d rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa334ebf0 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb87cc5db rt5682_aif1_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xbf62e212 rt5682_soc_component_dev EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc02b3b71 rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc1052185 rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2368dd2f sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x37a5cf5b sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4bdfc67a sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xbcc8977d sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xcc27034c devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe14e2750 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xffa74d8c rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x23028fa5 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4bc4dfcd sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x610ff7cb sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa50fb8ba sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xdb8d40ab sigmadsp_attach EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x51840c31 devm_sigmadsp_init_i2c EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x33914afa devm_sigmadsp_init_regmap EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x28a780b4 ssm2602_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x8bd1d2d6 ssm2602_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x2ec66c7c aic32x4_register_clocks EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x07b08697 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x3f997efe ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xebb611fb 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 0x21e76db3 wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x34e871f1 wcd938x_sdw_hw_params EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x4b386383 wcd938x_sdw_device_get EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x52a74574 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xbb9cf1e5 wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x07c41555 wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x124ea830 wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x251476ba wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x25538140 wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2ccb3667 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x8119369d wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xcd429d5c wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xf3303e4d wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x09a05116 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0b0b3563 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x14732c29 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x19058619 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x375db6b7 wm_adsp1_event EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3a57af5a wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3cc04634 wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x43d55458 wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4f152500 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3b533f20 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3ca4103c wm_adsp_compr_handle_irq EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x51aa42a6 wm_adsp_fw_put EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5b40700a wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x638e7c8e wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x65fb10d7 wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7d9e3f1b wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x554c1eba wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x56201ec4 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x603e01d0 wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x698ec86d wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x753d1132 wm_adsp_compr_open EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x92997f14 wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa193fee1 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaf424ba3 wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb93fa7b9 wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbcf154b6 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbe814259 wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc6df0fbd wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9373be7a wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x941b5518 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa7741807 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb17a38a9 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb8c4e4da wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbd311231 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd40fcc0b wm_adsp2_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf4c7ddd4 wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf4d6ca69 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xef9d404e wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf2083d11 wm_adsp2_component_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf96492e8 wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfc09e611 wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x02e7dcab wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x11cebb67 wm_hubs_set_bias_level EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x11ea3caf wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x132e90fc wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1a0eec36 wm_hubs_update_class_w EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x28365f44 wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x372110e8 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5a210b1a 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 0x6a0d660f wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x6d206910 wm_hubs_set_bias_level EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x9c395450 wm_hubs_vmid_ena -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xaf5b506b wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xaf88845c wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x79b7376a wm_hubs_add_analogue_controls EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x53d18083 wm8804_pm EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x693e9d66 wm8804_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa5277e8b wm8804_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xcdb0c24f wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xff7471cc wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x0a75ddec wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x5bc346ab wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xac8f93b1 wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x6c23c3cd fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x4add00f2 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x44e849a0 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x6aeb7f5e wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xf7e36b67 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xb6044bbf 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 0xa4354bf5 audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0xfb7fbe63 audio_graph_parse_of EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x00b62890 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x01c00246 asoc_simple_be_hw_params_fixup EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x048929a3 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x12afee44 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x196d4261 asoc_simple_parse_card_name EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x276dd226 asoc_simple_parse_clk EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2ec1e5d2 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2f9dff76 asoc_simple_init_priv EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x39d41a5e asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x68dc3961 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6b05904d asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x44b0a4ee asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x58cd2916 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5d75afde asoc_simple_remove EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x74b296f7 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x78e48b7c asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7f473c76 asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x82f67bc8 asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8b2ad579 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa31403df asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7a6f4147 asoc_simple_init_jack EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa5aadbd8 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbd7b94ca asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbe6f7f38 asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc0bc0932 asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd77b517e asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb3ae9b02 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc50f0e2e asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd266ede6 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdbb3b7d0 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 0xf92b0044 asoc_simple_set_dailink_name EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf9fc3c78 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x069d703f mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0c5d5897 mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0d8f33b7 mtk_memif_set_format -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1f8e2e4a mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x227410a6 mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x32375e28 mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3573726a mtk_memif_set_enable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3dc518fe mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4292026f mtk_afe_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x52fe184c mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x66472ecd mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x67d5c56d mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x683fb16d mtk_memif_set_channel -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x733c3d47 mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8f168595 mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8f3a6b6c mtk_afe_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa5182fdf mtk_memif_set_rate -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xaeb85982 mtk_memif_set_pbuf_size -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xbed64549 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x17f1acb3 mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1e2199ee mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2fb71201 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x33b8a83b mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x41bac232 mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x51c2513d mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x56359a97 mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5f5c3507 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6006f576 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x77d5f9f2 mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7edab77e mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa9413d53 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa9adbbe8 mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb53b651f mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xbd9124bf mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd48eb9d0 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd60e5d87 mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdc384a06 mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xde19f7f1 mtk_afe_fe_shutdown EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdfe7dc41 mtk_memif_set_rate_substream -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe4db524b mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe8075f41 mtk_memif_set_addr -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xea306066 mtk_memif_set_disable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xec61bf08 mtk_afe_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x52403d06 mt8195_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x7cf8e7ab mt8195_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x069b9e88 axg_fifo_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x199bb42b axg_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x22046b04 axg_fifo_pcm_hw_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x60a14146 axg_fifo_pcm_close -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x6270e2bd axg_fifo_pcm_open -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x8464bb84 g12a_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb8023ef3 axg_fifo_pcm_trigger -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xda0e8071 axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xfc8c3b09 axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdff22267 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe0a87643 mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf8da2be0 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xfaa29f96 mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x3e459ecf mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xbe206016 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x30ae418c axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x42ad9074 axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x5fcd2bc6 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x64eb51ad axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x885be3cb axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x90427c9c axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb6ecf2c5 axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe1f5f050 axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xf1b328c1 g12a_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 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 0x8d666552 axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x6239b226 axg_tdm_formatter_event EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x970060bd axg_tdm_stream_start -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x9f00b335 axg_tdm_formatter_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0xa221912e axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x19de7cf9 meson_card_parse_dai -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x1c608dd3 meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x97c47258 axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x8a3756ad axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x12d83cde meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x3c5c9e97 meson_card_probe EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x4412aa12 meson_card_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x6f71fe33 meson_card_reallocate_links -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x75b548cf meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x48ce5931 meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x76c00050 meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x8e49ef4a meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xbc4e835a meson_card_remove EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xcb5c718e meson_card_i2s_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xefefe925 meson_card_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xf6aa29b4 meson_card_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x01e57081 meson_codec_glue_input_dai_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x1e480d0f meson_codec_glue_output_startup -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x792e43dd meson_codec_glue_input_get_data -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x8320bab1 meson_codec_glue_input_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xc9e1a024 meson_codec_glue_input_set_fmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xdbef7376 meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x1527303b meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x208a877e meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x2ede17ae meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xc0630d04 meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xc15f124f meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xfbebf729 meson_codec_glue_output_startup EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x16a2397b q6adm_close EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x62e341f8 q6adm_open @@ -18430,33 +18439,33 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_inf 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 0x1a2fbcc1 lpass_cpu_pcm_new -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x28f177c5 asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x3b95cb9e asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x5667d552 asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x969135c5 asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xd865dd7d asoc_qcom_lpass_cpu_platform_shutdown -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xa43863a3 asoc_qcom_lpass_hdmi_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xdbf58102 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x2be0af01 asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x31231b76 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x4bf6d8e1 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x6008bc0d asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x712e362c lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xacc8ad22 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x98e6e09f asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x93716d22 asoc_qcom_lpass_platform_register EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0x47994698 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 0x0952a5d2 samsung_asoc_dma_platform_register -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x002adaa9 snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x026f5395 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x529c36a1 snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x8b707859 snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd2b9f500 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcbsp 0xef44d2f5 omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x0b8e186f snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x45ca72ba snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x5fbb4569 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x614b3fa2 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xcdddb7b3 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcbsp 0x23572a64 omap_mcbsp_st_add_controls EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x535bf48c edma_pcm_platform_register EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x7bc5aff9 sdma_pcm_platform_register EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x257f2183 udma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x1820c37f uniphier_aio_dai_remove -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x66c07213 uniphier_aio_i2s_ops -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x726afce0 uniphier_aio_dai_probe -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x94035e56 uniphier_aiodma_soc_register_platform -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xc399e3fe uniphier_aio_probe -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xce899230 uniphier_aio_spdif_ops -EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xe78754e2 uniphier_aio_remove +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x02d6aa8d uniphier_aio_spdif_ops +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x2867f26a uniphier_aio_remove +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x71162a1e uniphier_aio_probe +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0x9a7bf6e1 uniphier_aio_i2s_ops +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xd3bf35a2 uniphier_aio_dai_probe +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xd7004ccd uniphier_aiodma_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/uniphier/snd-soc-uniphier-aio-cpu 0xfef9c8aa uniphier_aio_dai_remove EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x090eeed8 line6_read_data EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x112ecad4 line6_init_midi EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id @@ -18478,471 +18487,453 @@ 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 0x00169218 snd_soc_dapm_force_enable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0x002044a2 scmi_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x00280751 device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x003b40cd skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x00255f32 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x00427068 lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x0053a7b7 wm8350_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x0053e821 tracepoint_probe_register_prio_may_exist EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x00b1b369 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x00709e83 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x00756609 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL vmlinux 0x00794152 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x00a85efc perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x00af514f snd_soc_dapm_ignore_suspend EXPORT_SYMBOL_GPL vmlinux 0x00b46f70 nanddev_mtd_max_bad_blocks EXPORT_SYMBOL_GPL vmlinux 0x00bfa260 alloc_dax_region EXPORT_SYMBOL_GPL vmlinux 0x00c95a0e xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x00d03e0a devm_i2c_add_adapter EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval EXPORT_SYMBOL_GPL vmlinux 0x00d5f32b pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x00e2eae8 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x00e87e47 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x00e40669 ata_sas_port_destroy EXPORT_SYMBOL_GPL vmlinux 0x00fb42d3 put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x0100d06f ata_cable_80wire EXPORT_SYMBOL_GPL vmlinux 0x0105b2a9 genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0x01172afa wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x013f9946 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0x013ff50a crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x0107e2af clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x0122a31d ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x0124cda9 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x01319f17 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x0131ed37 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0x014962fe tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x014b96c3 __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale -EXPORT_SYMBOL_GPL vmlinux 0x015473ee ata_sas_port_alloc EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x018716fc sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x0187cc76 dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0x019573c2 bd_link_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x0199da55 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x01a9d558 __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x01b12bfb usb_ep_free_request EXPORT_SYMBOL_GPL vmlinux 0x01bb25ae devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x01c596f9 task_cls_state EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01dc3077 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x01c89b4d spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x01d78b78 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x01d93086 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e7ab05 devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0x01eb760c of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x01ec20e7 gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x01f8bf2d wm831x_auxadc_read_uv EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x021c54c7 ata_scsi_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x021e8b96 debugfs_create_ulong EXPORT_SYMBOL_GPL vmlinux 0x0222da1c pci_device_group EXPORT_SYMBOL_GPL vmlinux 0x022bc291 irq_gc_set_wake EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise EXPORT_SYMBOL_GPL vmlinux 0x024f16e2 dma_free_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x02625438 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x0264e3b3 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0x02661426 devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0x026a051d nanddev_bbt_init EXPORT_SYMBOL_GPL vmlinux 0x026f3380 btree_lookup EXPORT_SYMBOL_GPL vmlinux 0x0278eb89 mtd_writev EXPORT_SYMBOL_GPL vmlinux 0x028325e0 mctrl_gpio_init_noauto EXPORT_SYMBOL_GPL vmlinux 0x02963a1b dev_pm_opp_set_regulators EXPORT_SYMBOL_GPL vmlinux 0x0299ccb4 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x02a69749 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x02b5800e platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0x02b5c1c6 genphy_c45_aneg_done EXPORT_SYMBOL_GPL vmlinux 0x02c4c456 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x02c9bbe0 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x02c570f1 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x02c84532 l3mdev_ifindex_lookup_by_table_id EXPORT_SYMBOL_GPL vmlinux 0x02c9df6f devm_clk_get_optional_enabled EXPORT_SYMBOL_GPL vmlinux 0x02d6ae4f dev_pm_clear_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x02ea61a6 dax_flush EXPORT_SYMBOL_GPL vmlinux 0x030cf1e8 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x03119bb5 ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup EXPORT_SYMBOL_GPL vmlinux 0x031cb2ab sched_trace_rd_span EXPORT_SYMBOL_GPL vmlinux 0x03214ad5 blk_ksm_register EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id EXPORT_SYMBOL_GPL vmlinux 0x0328835c snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0x032f562f tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0x03315f0c btree_destroy EXPORT_SYMBOL_GPL vmlinux 0x03327fdf spi_mem_default_supports_op EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk EXPORT_SYMBOL_GPL vmlinux 0x03386bd2 iommu_sva_bind_device EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03469e63 skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x03472d2e rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x034a00f9 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x034d0188 device_create_with_groups EXPORT_SYMBOL_GPL vmlinux 0x034d3f7b led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x03519475 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x034e9c3d page_endio +EXPORT_SYMBOL_GPL vmlinux 0x036073a9 device_match_any EXPORT_SYMBOL_GPL vmlinux 0x036d8e9b klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x03728fd2 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x03797331 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x038650da sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0x038f076d proc_mkdir_data EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03993942 crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0x039b7369 i2c_of_match_device EXPORT_SYMBOL_GPL vmlinux 0x03b2623e __tracepoint_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x03b3f379 ata_sff_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x03b9504a usb_autopm_put_interface_no_suspend EXPORT_SYMBOL_GPL vmlinux 0x03c2caa1 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL vmlinux 0x03c6105b tcp_done EXPORT_SYMBOL_GPL vmlinux 0x03ca800a serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x03d1d40c __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x03e28260 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x03f8a2b2 devlink_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0x0402afad rio_del_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0x04064aed pci_epc_unmap_addr EXPORT_SYMBOL_GPL vmlinux 0x040dafe3 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x0412ff21 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x0419662f crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x041ec077 sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x04218f84 sdhci_pltfm_register EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x044bd192 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x04598d1c devlink_params_publish EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046689d2 crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04ab29a6 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x04ae4635 trace_handle_return EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c89a8b clk_hw_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04c8fb7b xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0x04cb0d79 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x04d3b120 add_page_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x0506d121 trace_output_call EXPORT_SYMBOL_GPL vmlinux 0x0508df51 compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x0510572e snd_soc_component_set_pll -EXPORT_SYMBOL_GPL vmlinux 0x05196b49 __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x0529bb5e sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x05392e62 inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy EXPORT_SYMBOL_GPL vmlinux 0x05624d42 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x056b329e snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL vmlinux 0x05762582 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x057fdf8d pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x056de191 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x057cdff5 __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x05906b3b device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0x059f7cbd nvdimm_region_notify EXPORT_SYMBOL_GPL vmlinux 0x05a12e98 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x05a89422 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x05aa4a34 percpu_free_rwsem EXPORT_SYMBOL_GPL vmlinux 0x05bde24c of_property_read_u64 EXPORT_SYMBOL_GPL vmlinux 0x05c93cab __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x05d48ff6 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x05ddbc5e sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0x05e0ec9e dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL vmlinux 0x05ed1648 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x05f391b1 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x05e8e47a sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x05f6bf41 snd_soc_card_get_kcontrol EXPORT_SYMBOL_GPL vmlinux 0x060020e4 syscon_regmap_lookup_by_phandle_args EXPORT_SYMBOL_GPL vmlinux 0x06122337 atomic_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x062ffe49 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x0633a0bc i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x06350cae ahci_do_hardreset EXPORT_SYMBOL_GPL vmlinux 0x063b242a snd_soc_component_compr_pointer EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x065a0b11 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x06702723 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x06789c0f of_i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0x06537051 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x065394f4 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x066dfd38 devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x0688546a __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x06978ecc clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x0695db4f rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0x06a5a831 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x06a6843c ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x06ae6db5 raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0x06b53bd2 memalloc_socks_key EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06ce9daa skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x06ce45fa devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x06d2b195 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x06dab4d5 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x06dae077 fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0x06e92aea nl_table_lock EXPORT_SYMBOL_GPL vmlinux 0x06ec84cc __devm_pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x06eed54a misc_cg_uncharge EXPORT_SYMBOL_GPL vmlinux 0x06f26922 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x06ff701d netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0x07034c73 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x070fc5f2 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x071c56f9 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x071b08f1 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x071e3518 __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x07318553 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x072cebbe ptp_classify_raw EXPORT_SYMBOL_GPL vmlinux 0x0732ce1a sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0x0743fe21 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x0745a87c crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x074eec17 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x07559bd6 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x0760c609 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x07485adf __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x0752bb3d icc_get EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x076761f4 perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0x0767e833 of_thermal_get_ntrips EXPORT_SYMBOL_GPL vmlinux 0x0780a7ba irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x07859b8c sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0x0789f6ef blk_rq_err_bytes EXPORT_SYMBOL_GPL vmlinux 0x079c07f7 serial8250_release_dma EXPORT_SYMBOL_GPL vmlinux 0x07a6056f usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x07a9cd83 ehci_handshake EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07b584cb gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x07b6010c snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0x07b5bc10 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x07b80591 wm8350_gpio_config EXPORT_SYMBOL_GPL vmlinux 0x07bbfac8 mtd_block_markbad EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07c5f5e3 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL vmlinux 0x07cd087f snd_soc_dapm_nc_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0x07d8796f __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0x07db4929 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x07dbe6a1 icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0x07e864a7 ata_ncq_sdev_attrs EXPORT_SYMBOL_GPL vmlinux 0x07ebfd37 __rio_local_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0x07f5bfed __tracepoint_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x07faf794 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x07fed6a7 wwan_port_rx EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache EXPORT_SYMBOL_GPL vmlinux 0x0813a881 irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x081ead56 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x081eb262 __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x0829d18d serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x083607d6 fs_kobj EXPORT_SYMBOL_GPL vmlinux 0x0845187f tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x084cf866 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x0862bded pwm_apply_state EXPORT_SYMBOL_GPL vmlinux 0x086924bf debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x0869ddd2 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x086dedf7 skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0x08713692 ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0x08790b54 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0x087d1496 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x08725773 aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x08863a5b devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0x0890d8a2 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x0880197d gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x088dd390 snd_soc_component_write_field +EXPORT_SYMBOL_GPL vmlinux 0x089086ba ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x089338b9 kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0x08aad0e1 of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x08adffb3 power_supply_get_battery_info EXPORT_SYMBOL_GPL vmlinux 0x08af71df __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x08bcb3b0 rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0x08bdfff5 __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x08cd6d34 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x08c54532 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x08cc7036 sdio_writeb_readb EXPORT_SYMBOL_GPL vmlinux 0x08d15562 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x08d9851e cpufreq_driver_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x08eb6a67 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x08eded0f gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x08fc5dfd bio_start_io_acct_time -EXPORT_SYMBOL_GPL vmlinux 0x091c5c81 udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox -EXPORT_SYMBOL_GPL vmlinux 0x095dcbb2 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x09754ee5 snd_soc_close_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x0980c9a9 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x098a625d ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x09a6e83d inet_hash EXPORT_SYMBOL_GPL vmlinux 0x09ae4ed7 devm_pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0x09b28822 tpm2_probe EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09bb508c crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x09bd44c1 gpiochip_irq_unmap EXPORT_SYMBOL_GPL vmlinux 0x09ca2124 pci_device_is_present EXPORT_SYMBOL_GPL vmlinux 0x09d1d0b4 pm_generic_freeze_late EXPORT_SYMBOL_GPL vmlinux 0x09d61ed9 xhci_suspend EXPORT_SYMBOL_GPL vmlinux 0x09d6a021 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x09db9a35 blk_update_request EXPORT_SYMBOL_GPL vmlinux 0x09e53260 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x09e8fb76 css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x09f625fb clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0x0a11ab5f gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x09f0e2bb crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x09fc0775 tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0x0a173df3 sdhci_pltfm_pmops EXPORT_SYMBOL_GPL vmlinux 0x0a3408e4 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0x0a36e829 snd_soc_unregister_component_by_driver EXPORT_SYMBOL_GPL vmlinux 0x0a38c3c2 acct_bioset_exit EXPORT_SYMBOL_GPL vmlinux 0x0a45423d pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x0a60c741 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x0a62383e nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x0a63d232 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0a674adf fwnode_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x0a6925d8 syscon_regmap_lookup_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send EXPORT_SYMBOL_GPL vmlinux 0x0a752707 nand_ecc_tweak_req -EXPORT_SYMBOL_GPL vmlinux 0x0a7793d8 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x0a79d695 gpiod_get_array_value EXPORT_SYMBOL_GPL vmlinux 0x0a85fd80 blk_req_zone_write_trylock EXPORT_SYMBOL_GPL vmlinux 0x0a8c3b4b usb_ep_set_halt -EXPORT_SYMBOL_GPL vmlinux 0x0aacc224 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x0aa337cf __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x0aaa4edd cpts_register EXPORT_SYMBOL_GPL vmlinux 0x0acfe2e7 usb_ep_set_wedge +EXPORT_SYMBOL_GPL vmlinux 0x0ad69268 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x0adca54e phy_package_join EXPORT_SYMBOL_GPL vmlinux 0x0aed2369 blk_mq_freeze_queue_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x0aeedc86 bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x0af9113d tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x0af9dbf4 rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct EXPORT_SYMBOL_GPL vmlinux 0x0b0bf708 tty_port_default_client_ops EXPORT_SYMBOL_GPL vmlinux 0x0b19b18f register_kretprobes EXPORT_SYMBOL_GPL vmlinux 0x0b24541b regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x0b2503a7 tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0x0b2970fe klist_iter_init EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b446fe5 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x0b3b1036 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x0b4a8834 musb_writeb EXPORT_SYMBOL_GPL vmlinux 0x0b4bb808 iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0x0b524b42 tty_buffer_unlock_exclusive EXPORT_SYMBOL_GPL vmlinux 0x0b57595a devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x0b67cfa4 ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0x0b6b0d0a shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x0b90e98f of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x0b7d0742 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x0b8c32fa udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0x0b9a645f da9052_adc_manual_read EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x0bb079b8 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x0bb570a7 devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0x0bc1ec1e __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x0be254cd xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x0bcded93 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x0bd1c47d __vfs_setxattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bf36985 crypto_register_rngs EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0a1f4d sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x0c234c17 __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0x0c23ab3d dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x0c27294e dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0x0c303f52 bch_encode EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c337975 inet6_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x0c4c000b thermal_zone_of_sensor_register EXPORT_SYMBOL_GPL vmlinux 0x0c54624b extcon_get_state EXPORT_SYMBOL_GPL vmlinux 0x0c628750 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x0c66251e skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0x0c739fb5 devm_of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0x0c82e1a4 nand_get_large_page_hamming_ooblayout EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c9ecf70 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x0cab7fe4 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x0cb45bfe regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0cb54bf3 ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0x0cc00b4d irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x0cdcc6d3 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x0ced9b80 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x0ccc437e set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0cd11f53 kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0x0cfb3b3b sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x0cfcabb3 __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x0d1416eb __clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0x0d14df4b kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x0d222daf cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0x0d33acd4 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x0d3d8bdf vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x0d38e631 __synth_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x0d3e3481 bch_free -EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe EXPORT_SYMBOL_GPL vmlinux 0x0d47e06b of_mm_gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open EXPORT_SYMBOL_GPL vmlinux 0x0d5a5939 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x0d5e9efa devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x0d801415 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0d8f6f39 snd_soc_dai_compr_set_metadata EXPORT_SYMBOL_GPL vmlinux 0x0d90d784 usb_ep_fifo_flush EXPORT_SYMBOL_GPL vmlinux 0x0d96112b iomap_seek_hole EXPORT_SYMBOL_GPL vmlinux 0x0d9e6228 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0x0dad5dc5 wait_on_page_writeback_killable EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate EXPORT_SYMBOL_GPL vmlinux 0x0dcd922c usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x0dcfabe1 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x0dd140d7 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x0dd6c622 __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x0dd8c84a snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL vmlinux 0x0dda6897 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x0dd83676 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x0ddb0c3a pskb_put EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order EXPORT_SYMBOL_GPL vmlinux 0x0de7548e hvc_alloc EXPORT_SYMBOL_GPL vmlinux 0x0dfc0ede bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x0e0c03d8 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x0e0e8549 tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0x0e1f28b9 virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0x0e26b9cd ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x0e2b24ba ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0e356e34 dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0x0e35c539 mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x0e421afa crypto_spawn_tfm2 EXPORT_SYMBOL_GPL vmlinux 0x0e5b4975 __tracepoint_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e6044b3 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x0e641277 device_match_fwnode EXPORT_SYMBOL_GPL vmlinux 0x0e6a5f3c of_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x0e6af8bb bus_unregister EXPORT_SYMBOL_GPL vmlinux 0x0e722367 devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x0e76c3e4 devlink_port_params_register EXPORT_SYMBOL_GPL vmlinux 0x0e86da7d cgroup_attach_task_all EXPORT_SYMBOL_GPL vmlinux 0x0e87ed35 dm_device_name EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x0e8e47e9 dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x0eb38938 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x0e8f69fd __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x0ea598a9 gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0x0ebdf0e5 md_rdev_clear EXPORT_SYMBOL_GPL vmlinux 0x0ebfb9a9 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0x0ec40746 proc_create_net_single EXPORT_SYMBOL_GPL vmlinux 0x0ece0a18 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x0ed2b4d7 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x0ee1efce mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x0ee84bba snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0x0ed7b78b devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x0ee5498a ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x0ee9e1e5 raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0x0eeb5417 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x0efc69ab snd_soc_runtime_action EXPORT_SYMBOL_GPL vmlinux 0x0f00867f xhci_drop_endpoint EXPORT_SYMBOL_GPL vmlinux 0x0f012d80 dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0x0f062624 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x0f12c377 clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f27f4f3 gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0x0f2da3dc rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f360317 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x0f3c49fd sdio_claim_host EXPORT_SYMBOL_GPL vmlinux 0x0f452a47 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x0f46b2c9 snd_soc_dapm_enable_pin EXPORT_SYMBOL_GPL vmlinux 0x0f4c8e4f pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x0f4f5827 spi_sync_locked EXPORT_SYMBOL_GPL vmlinux 0x0f592bda mddev_init_writes_pending EXPORT_SYMBOL_GPL vmlinux 0x0f5fba01 fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0x0f625633 __rio_local_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0x0f663d63 led_compose_name EXPORT_SYMBOL_GPL vmlinux 0x0f6939b1 amba_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x0f6a3f32 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x0f6a66bb regmap_async_complete EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f8627a6 nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0x0f86348b devm_irq_alloc_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x0f9e9ef0 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x0fabfaf4 gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0x0fb2fe43 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x0fa3031f security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x0fb9f9ea xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x0fc9d801 devfreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0x0fd01086 ata_sff_port_intr EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fdac2f2 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x0fd91950 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x0fdf6ca7 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x0fe184ec sdhci_enable_clk EXPORT_SYMBOL_GPL vmlinux 0x0fe4c8e6 devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0x0feaefce sdhci_request EXPORT_SYMBOL_GPL vmlinux 0x0ffab970 snd_soc_info_volsw EXPORT_SYMBOL_GPL vmlinux 0x100359e4 stop_machine EXPORT_SYMBOL_GPL vmlinux 0x10092e05 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x101121c5 platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on EXPORT_SYMBOL_GPL vmlinux 0x10177398 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x101b467c __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x101dff70 sdhci_switch_external_dma EXPORT_SYMBOL_GPL vmlinux 0x1043cac3 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0x10643b07 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x1046b92e ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x10613985 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x10662c10 regmap_exit EXPORT_SYMBOL_GPL vmlinux 0x106ad9e1 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x106afd40 page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x1074f477 sdhci_setup_host -EXPORT_SYMBOL_GPL vmlinux 0x107abef5 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x1094f82e nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x1095c0aa register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x10b67061 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x10df8c1f ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x10bfe67d apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable EXPORT_SYMBOL_GPL vmlinux 0x1104c4d5 trace_seq_puts EXPORT_SYMBOL_GPL vmlinux 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL vmlinux 0x11199460 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x111cfdbb ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x110eb9ac tcp_get_info EXPORT_SYMBOL_GPL vmlinux 0x11311594 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x113d67d3 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL vmlinux 0x1144b165 sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0x1143fb29 inet_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x114a3740 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x114b635b __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x114d9c34 gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x1150902a tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0x11515fb8 sysfs_create_link_nowarn EXPORT_SYMBOL_GPL vmlinux 0x11526c9a meson_clk_pll_ops EXPORT_SYMBOL_GPL vmlinux 0x115f9f37 devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x1174b99e __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x1176513b init_user_ns EXPORT_SYMBOL_GPL vmlinux 0x118129f2 badblocks_exit EXPORT_SYMBOL_GPL vmlinux 0x1189b3c4 mtk_pinconf_bias_disable_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x118ef594 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x119f1c48 skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11be7d92 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x11d87f83 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x11d6c3b5 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x11d8f8f8 sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x1207b1ad device_create +EXPORT_SYMBOL_GPL vmlinux 0x11e680c5 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x11f07f58 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x1208db80 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12099a2a sdio_release_irq EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x122208e8 netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x1227de96 thermal_zone_of_get_sensor_id EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x1242b0e3 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x12572246 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x1260c1bf snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL vmlinux 0x12673e13 sdhci_calc_clk EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs EXPORT_SYMBOL_GPL vmlinux 0x1278934d devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x1280050d spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x127bdd81 perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0x12855e3f phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0x128b24b7 sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0x128b3e05 skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support EXPORT_SYMBOL_GPL vmlinux 0x12958c41 dw_pcie_upconfig_setup EXPORT_SYMBOL_GPL vmlinux 0x129645b3 pci_assign_unassigned_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x129b12f8 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x129cf400 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x12a5b55c wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x12a6f7c1 br_fdb_test_addr_hook EXPORT_SYMBOL_GPL vmlinux 0x12a90603 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0x12ad4c7e regulator_set_load EXPORT_SYMBOL_GPL vmlinux 0x12b40c3f anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x12c6d8a5 regulator_disable EXPORT_SYMBOL_GPL vmlinux 0x12cbdf45 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x12cf7f56 __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x12dd7adf gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x12d46063 crypto_rng_reset EXPORT_SYMBOL_GPL vmlinux 0x12f2d65a mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x12fcb3d5 crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x1304e07c iomap_releasepage EXPORT_SYMBOL_GPL vmlinux 0x1307af02 ahci_sdev_attrs EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq EXPORT_SYMBOL_GPL vmlinux 0x1322e46c dmaengine_desc_get_metadata_ptr EXPORT_SYMBOL_GPL vmlinux 0x13239b30 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x1330a8a3 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x13359fdf clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x13363801 efivars_unregister EXPORT_SYMBOL_GPL vmlinux 0x1337bb00 serdev_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x134a8463 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x1345c892 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x134877d5 get_pid_task EXPORT_SYMBOL_GPL vmlinux 0x134ccc9a soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0x135947e6 bpf_offload_dev_match EXPORT_SYMBOL_GPL vmlinux 0x1359cb9d nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL vmlinux 0x135f1531 device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x13655942 clk_hw_get_num_parents EXPORT_SYMBOL_GPL vmlinux 0x137015c4 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0x137d9797 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x13889036 inet_ehash_locks_alloc EXPORT_SYMBOL_GPL vmlinux 0x138d44c6 serial8250_rpm_get EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled EXPORT_SYMBOL_GPL vmlinux 0x1390b815 __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x13928830 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x139c6b27 lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x139f4b98 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x13a85dd8 sdhci_alloc_host EXPORT_SYMBOL_GPL vmlinux 0x13aaf859 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL vmlinux 0x13b12507 __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x13b13ff7 usb_gadget_set_selfpowered EXPORT_SYMBOL_GPL vmlinux 0x13b59de3 pci_host_probe EXPORT_SYMBOL_GPL vmlinux 0x13c158e4 kobject_move @@ -18951,36 +18942,34 @@ EXPORT_SYMBOL_GPL vmlinux 0x13d9e52c nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x13dc59a4 usb_get_from_anchor EXPORT_SYMBOL_GPL vmlinux 0x13e8180e pci_generic_config_write32 EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13f2825f spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x13ffbf7c device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x13fe431b regmap_noinc_read EXPORT_SYMBOL_GPL vmlinux 0x140387c8 page_mkclean EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x14150cf5 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x1419390a bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x141839f1 crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x14268915 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x14353f2f dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0x1455bfd2 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x1434cc09 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x146414dc bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0x1465373b kthread_unpark EXPORT_SYMBOL_GPL vmlinux 0x14663565 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x1467729e rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x1475142e cpts_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x147a2271 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x148037e6 mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x148e9f5b devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x1492a205 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x149df929 crypto_grab_skcipher EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14b1a028 __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0x14b24293 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x14b48b8d device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x14b72ce4 ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0x14c2872d xas_pause EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14e56d6e devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x14ddce1d devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x14e0d663 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x14e9bdea sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x14f3c07c netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x14fed13b dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x1507ad47 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x150ea098 ahci_platform_suspend_host EXPORT_SYMBOL_GPL vmlinux 0x151397ba __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x151d2c85 __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0x1529db95 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x152d8821 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x1537e6d4 sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x1539d69a fat_getattr EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del EXPORT_SYMBOL_GPL vmlinux 0x1550efdf inet_peer_base_init @@ -18988,103 +18977,99 @@ EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put EXPORT_SYMBOL_GPL vmlinux 0x1556df37 irq_domain_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0x15574356 component_master_add_with_match EXPORT_SYMBOL_GPL vmlinux 0x155776f9 screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x156d123d ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x156416c1 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1565ffe5 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x1566b23e clk_hw_get_name EXPORT_SYMBOL_GPL vmlinux 0x1575bfa0 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x158afbb2 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1599e236 devlink_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x159d9d65 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0x159e0ae8 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x157bfe4f blk_rq_prep_clone EXPORT_SYMBOL_GPL vmlinux 0x15ab2790 __tracepoint_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x15adc3e3 snd_soc_dapm_get_volsw EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks -EXPORT_SYMBOL_GPL vmlinux 0x15af0e58 snd_soc_dai_digital_mute EXPORT_SYMBOL_GPL vmlinux 0x15b06044 __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x15cc9caf device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x15b291b2 crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0x15d963b9 pci_ecam_free EXPORT_SYMBOL_GPL vmlinux 0x15d9f9fa nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0x15e72b05 devm_spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0x15eca580 percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x15ede7f3 __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x15fcb706 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x15ffd801 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x16056600 ata_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0x160b73d5 vring_del_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x1612331e edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x1615b514 skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0x161723af kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x161ad32a fwnode_handle_put EXPORT_SYMBOL_GPL vmlinux 0x161d483e exportfs_decode_fh_raw EXPORT_SYMBOL_GPL vmlinux 0x16324868 usb_get_status EXPORT_SYMBOL_GPL vmlinux 0x1633e618 dw_pcie_ep_init_notify EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x16491eb9 tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x1650b889 snd_soc_get_pcm_runtime EXPORT_SYMBOL_GPL vmlinux 0x16567d57 dev_pm_opp_init_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0x1658f589 scmi_protocol_register EXPORT_SYMBOL_GPL vmlinux 0x166011bf ata_bmdma_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x1660165c fuse_dev_install EXPORT_SYMBOL_GPL vmlinux 0x16711a94 hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x167799f9 regmap_field_read EXPORT_SYMBOL_GPL vmlinux 0x167901c0 cpufreq_frequency_table_get_index EXPORT_SYMBOL_GPL vmlinux 0x167b4be6 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x167e44d3 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x167da8d6 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x168038a3 device_initialize EXPORT_SYMBOL_GPL vmlinux 0x1681083f vp_modern_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x1686a14b __kthread_init_worker EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size EXPORT_SYMBOL_GPL vmlinux 0x168afef4 __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x16905106 __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x169b185f verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x16b330fb snd_soc_add_component_controls -EXPORT_SYMBOL_GPL vmlinux 0x16b41d21 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x16ba5226 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x16a075a3 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x16a45cd5 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x16ae5eab ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x16cc526e dev_fetch_sw_netstats EXPORT_SYMBOL_GPL vmlinux 0x16d9f9ff pci_remap_cfgspace EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dd89d6 devlink_params_unpublish EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x16e214db synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0x16f56af3 usb_gadget_probe_driver EXPORT_SYMBOL_GPL vmlinux 0x16fce14d bsg_job_done EXPORT_SYMBOL_GPL vmlinux 0x17022177 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x17031a72 gpiochip_request_own_desc EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x170fe6bb of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x172160c9 bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x174287af devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x171a959b rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x172131cf blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x172414d7 sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x17493377 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x1749bc31 devm_snd_soc_register_dai EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x1755c572 xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0x175714ae trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x176fef29 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x17708df8 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x177ab75c cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version EXPORT_SYMBOL_GPL vmlinux 0x17843bb3 edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0x178f0a42 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x17a0ce68 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x178c03df xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x17aa57af ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x17ae11f4 device_rename EXPORT_SYMBOL_GPL vmlinux 0x17ae4d10 iommu_domain_alloc EXPORT_SYMBOL_GPL vmlinux 0x17c5326f usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x17daf12c clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x17e9a72c sdhci_set_power_noreg +EXPORT_SYMBOL_GPL vmlinux 0x17cd20fc snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x17df7ced of_i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL vmlinux 0x17e9334e setfl +EXPORT_SYMBOL_GPL vmlinux 0x17f6cf4c device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x180ed6c4 __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x18130911 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x1808cb21 snd_soc_unregister_component_by_driver EXPORT_SYMBOL_GPL vmlinux 0x181c1b9e rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x181e81c3 task_user_regset_view EXPORT_SYMBOL_GPL vmlinux 0x18293d32 __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x183c5b6f snd_soc_unregister_dai EXPORT_SYMBOL_GPL vmlinux 0x1840565a irq_chip_enable_parent EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence EXPORT_SYMBOL_GPL vmlinux 0x1842df47 nand_prog_page_begin_op EXPORT_SYMBOL_GPL vmlinux 0x184bde42 iommu_map_atomic EXPORT_SYMBOL_GPL vmlinux 0x1854f060 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x185ca92d dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x185d861c devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x185ddfa2 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x186018fb devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x186bf219 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x186ffbfc of_find_spi_device_by_node EXPORT_SYMBOL_GPL vmlinux 0x1873a37d virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x187993ea bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0x187f6e8c blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x1880e075 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x18862228 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x187b4f70 trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0x18900498 serdev_device_write_wakeup EXPORT_SYMBOL_GPL vmlinux 0x1890c110 pci_iov_virtfn_devfn EXPORT_SYMBOL_GPL vmlinux 0x18a4d7ee sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x18cfdb7a icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0x18d6c00a disk_uevent EXPORT_SYMBOL_GPL vmlinux 0x18da5130 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x18dbb48f tc3589x_set_bits @@ -19092,18 +19077,19 @@ EXPORT_SYMBOL_GPL vmlinux 0x18e1f702 pci_pasid_features EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x190ff011 switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0x191709bd mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0x191fd069 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x1921431b meson_clk_pcie_pll_ops EXPORT_SYMBOL_GPL vmlinux 0x19262253 of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x1927fc7c br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0x19405a04 arm_iommu_release_mapping EXPORT_SYMBOL_GPL vmlinux 0x194132fa zs_huge_class_size EXPORT_SYMBOL_GPL vmlinux 0x1947adae __pm_runtime_set_status EXPORT_SYMBOL_GPL vmlinux 0x194dd751 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x1968a4fd sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x1952a099 skb_morph EXPORT_SYMBOL_GPL vmlinux 0x19694f6b debugfs_attr_write EXPORT_SYMBOL_GPL vmlinux 0x196bc03f virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x196d0c45 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL vmlinux 0x196c6e0b devlink_free EXPORT_SYMBOL_GPL vmlinux 0x1970a24a ohci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x197808e9 pinconf_generic_dt_subnode_to_map EXPORT_SYMBOL_GPL vmlinux 0x198a19c8 nvdimm_cmd_mask @@ -19112,26 +19098,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled EXPORT_SYMBOL_GPL vmlinux 0x19a6f6a5 iommu_set_pgtable_quirks EXPORT_SYMBOL_GPL vmlinux 0x19ad257c usb_driver_claim_interface EXPORT_SYMBOL_GPL vmlinux 0x19b0114b usb_del_gadget -EXPORT_SYMBOL_GPL vmlinux 0x19b90c61 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x19bfe929 icc_enable EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x19c58f97 tpm_chip_stop EXPORT_SYMBOL_GPL vmlinux 0x19d0af71 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x19df475d scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x19dfe230 devm_regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19e98189 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x19edc946 unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0x19f3e552 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x19f6c09b skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x19fa8004 sata_link_debounce EXPORT_SYMBOL_GPL vmlinux 0x1a02c4e0 devm_kasprintf EXPORT_SYMBOL_GPL vmlinux 0x1a0638f6 free_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0x1a073a45 __tracepoint_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a13ce26 device_link_del EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a1b43d5 fwnode_graph_get_remote_endpoint EXPORT_SYMBOL_GPL vmlinux 0x1a1cf6dd i2c_dw_prepare_clk EXPORT_SYMBOL_GPL vmlinux 0x1a1d35f6 xhci_dbg_trace EXPORT_SYMBOL_GPL vmlinux 0x1a266232 __tracepoint_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x1a267fa8 bch_init EXPORT_SYMBOL_GPL vmlinux 0x1a294667 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1a30a958 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x1a42cf6e regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x1a434465 regulator_set_suspend_voltage EXPORT_SYMBOL_GPL vmlinux 0x1a44572f rht_bucket_nested_insert EXPORT_SYMBOL_GPL vmlinux 0x1a502ec4 usb_alloc_urb EXPORT_SYMBOL_GPL vmlinux 0x1a5640f4 class_interface_register @@ -19139,31 +19129,34 @@ EXPORT_SYMBOL_GPL vmlinux 0x1a574d59 get_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x1a5c3556 vchan_init EXPORT_SYMBOL_GPL vmlinux 0x1a6b88ef regulator_map_voltage_iterate EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a768429 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x1a74cd8c sdio_disable_func EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list EXPORT_SYMBOL_GPL vmlinux 0x1a7eb578 mtk_pinconf_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x1a8b5bb1 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x1a9720ff xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x1aa16a21 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x1aa2f8ef ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x1aa4dccf unregister_mtd_user EXPORT_SYMBOL_GPL vmlinux 0x1ab37de7 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1abe2b8c device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x1ac52551 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x1ad04647 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x1ad4475b devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x1ae1bc3c regulator_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x1ae94d84 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x1af20935 crypto_alloc_acomp EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af644e9 crypto_register_templates EXPORT_SYMBOL_GPL vmlinux 0x1af65a85 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0x1afead05 clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x1b168504 dma_request_chan EXPORT_SYMBOL_GPL vmlinux 0x1b194f7d irq_chip_set_vcpu_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0x1b33ad9b serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x1b38d058 snd_soc_component_test_bits EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask EXPORT_SYMBOL_GPL vmlinux 0x1b616152 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x1b61a1c0 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x1b61d019 device_create EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1ba1e526 devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x1baa55d5 meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x1bac7b10 ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x1bb1678b blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x1bb27bc0 skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x1bbba462 __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input EXPORT_SYMBOL_GPL vmlinux 0x1bc71c23 kstrdup_quotable_cmdline @@ -19172,206 +19165,198 @@ EXPORT_SYMBOL_GPL vmlinux 0x1bce526e blkdev_zone_mgmt EXPORT_SYMBOL_GPL vmlinux 0x1bd48e18 __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0x1bda695a tps6586x_reads EXPORT_SYMBOL_GPL vmlinux 0x1be0dca8 irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x1be40c1a snd_soc_new_ac97_component EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained EXPORT_SYMBOL_GPL vmlinux 0x1bf06d97 mtd_unlock EXPORT_SYMBOL_GPL vmlinux 0x1bf4e628 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x1bfc0bf6 devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0x1c01e03d __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x1c021106 udp_abort EXPORT_SYMBOL_GPL vmlinux 0x1c079ba6 fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0x1c0daf14 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0x1c0ddb0e ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x1c190aaa crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x1c2227be crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x1c1b29d0 __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x1c241229 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x1c28791c snd_soc_dai_compr_ack EXPORT_SYMBOL_GPL vmlinux 0x1c28ce5f __rt_mutex_init EXPORT_SYMBOL_GPL vmlinux 0x1c299e65 get_mtd_device EXPORT_SYMBOL_GPL vmlinux 0x1c44ab2c qcom_smem_state_register -EXPORT_SYMBOL_GPL vmlinux 0x1c5401ed __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x1c4e559d lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c559528 rtnl_af_register EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c76df50 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x1c7384be nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x1c804755 mmc_regulator_disable_vqmmc EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c8e1605 device_match_of_node EXPORT_SYMBOL_GPL vmlinux 0x1cb9ad4e otg_ulpi_create EXPORT_SYMBOL_GPL vmlinux 0x1cbbb30b gen10g_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cc7f740 device_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x1cdf4efb copy_from_kernel_nofault EXPORT_SYMBOL_GPL vmlinux 0x1ce216ec led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x1ce4ac90 udp4_hwcsum EXPORT_SYMBOL_GPL vmlinux 0x1cedf3cc of_pci_get_max_link_speed EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x1cfff513 nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x1d00fd8e pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x1d021f35 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x1d1a9a5b bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x1d1ea725 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0x1d2005a2 blk_trace_setup EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state EXPORT_SYMBOL_GPL vmlinux 0x1d29b9e1 decode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x1d35c922 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x1d3d0152 i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0x1d418674 gpiod_direction_output EXPORT_SYMBOL_GPL vmlinux 0x1d4c771d ata_sff_qc_fill_rtf EXPORT_SYMBOL_GPL vmlinux 0x1d5ed99d debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0x1d61e7e1 clk_register_gate EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable -EXPORT_SYMBOL_GPL vmlinux 0x1d684631 regulator_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x1d6950ab transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0x1d69caae dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x1d6a32f9 regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x1d761f53 fuse_direct_io EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d81d456 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x1d8846f6 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1d910743 ata_host_start EXPORT_SYMBOL_GPL vmlinux 0x1d910f82 of_hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1d9b22a2 bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0x1da55148 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x1dac9983 cpufreq_freq_transition_begin EXPORT_SYMBOL_GPL vmlinux 0x1db30ecc usb_hcd_setup_local_mem EXPORT_SYMBOL_GPL vmlinux 0x1db3ea06 i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0x1db49fe2 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x1dba14a7 seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0x1dc17bf9 rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x1dc4b6bc ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x1dc48f44 devlink_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0x1dd85ca3 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x1ddf6231 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x1debd593 dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0x1df90bd2 nand_prog_page_end_op -EXPORT_SYMBOL_GPL vmlinux 0x1dfa161d ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm EXPORT_SYMBOL_GPL vmlinux 0x1e013bdc pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x1e01f474 bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release EXPORT_SYMBOL_GPL vmlinux 0x1e15374c altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1e15551b __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x1e1d65cc rio_release_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0x1e21f769 devm_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x1e380b7d __device_reset EXPORT_SYMBOL_GPL vmlinux 0x1e3fc43d d_exchange EXPORT_SYMBOL_GPL vmlinux 0x1e4491d7 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x1e769ca2 devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x1e648977 gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x1e8448ea list_lru_count_one EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9971c6 ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1e9eed0e snd_soc_dai_set_tristate EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x1ebd5bf3 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x1ebe8c69 skcipher_walk_async EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec0f950 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1ebfc2fe __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x1ec33855 fib_nh_common_init EXPORT_SYMBOL_GPL vmlinux 0x1ed93187 snd_devm_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0x1ed9a07d dev_attr_em_message_type EXPORT_SYMBOL_GPL vmlinux 0x1ede6769 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x1ee414a4 crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0x1ef619c7 edac_mc_alloc EXPORT_SYMBOL_GPL vmlinux 0x1ef8f613 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x1f0595d9 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f185501 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x1f2087f6 inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0x1f23f2a5 scsi_autopm_put_device EXPORT_SYMBOL_GPL vmlinux 0x1f2cfdee bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0x1f2f5a17 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x1f35b99c ahci_platform_init_host EXPORT_SYMBOL_GPL vmlinux 0x1f35f8e9 linear_hugepage_index EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms EXPORT_SYMBOL_GPL vmlinux 0x1f44cad4 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x1f4704a5 inet_twsk_purge EXPORT_SYMBOL_GPL vmlinux 0x1f4aa220 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x1f54b3ee inet_hashinfo_init EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5681c2 nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x1f5fc4a5 cpu_latency_qos_request_active EXPORT_SYMBOL_GPL vmlinux 0x1f6a237c nand_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x1f6dc419 netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0x1f6de8f3 firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0x1f732f36 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x1f7195dd hwmon_device_register EXPORT_SYMBOL_GPL vmlinux 0x1f74647f iommu_device_sysfs_remove EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1f77d795 inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8ae470 sdhci_set_bus_width EXPORT_SYMBOL_GPL vmlinux 0x1f9063eb __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x1f925297 phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0x1f98d694 devm_i2c_add_adapter EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1faa55d5 devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0x1fb02749 mtk_pinconf_bias_set_combo -EXPORT_SYMBOL_GPL vmlinux 0x1fbb90cf nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1fbd92d7 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0x1fc1b421 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL vmlinux 0x1fc42ec9 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x1fc79a22 ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0x1fc84e5a pci_bus_resource_n EXPORT_SYMBOL_GPL vmlinux 0x1fca0b38 housekeeping_overridden EXPORT_SYMBOL_GPL vmlinux 0x1fd08797 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x1fdca89b register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x1fe096b2 gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1ff9bf33 devlink_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0x20065bcb blkcg_deactivate_policy EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put EXPORT_SYMBOL_GPL vmlinux 0x204197c9 kset_create_and_add EXPORT_SYMBOL_GPL vmlinux 0x2045768a fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x20504688 trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0x2056f569 regcache_mark_dirty EXPORT_SYMBOL_GPL vmlinux 0x205deda4 _proc_mkdir EXPORT_SYMBOL_GPL vmlinux 0x20768cdd bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x20827f35 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x2078d063 shmem_truncate_range EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame EXPORT_SYMBOL_GPL vmlinux 0x208a2dc1 of_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x20ab6ce9 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x208f5a02 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x20917b59 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x2093ecb8 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x2097599d fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0x20ae52e8 dev_pm_opp_detach_genpd EXPORT_SYMBOL_GPL vmlinux 0x20bc7cce tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x20c8a3d1 regulator_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x20f107ca sysfs_create_group EXPORT_SYMBOL_GPL vmlinux 0x20f29bed firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x20fc6cb1 tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0x21087621 mm_unaccount_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0x210f6ae2 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x2110262f __sdhci_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x21112af0 ip_valid_fib_dump_req EXPORT_SYMBOL_GPL vmlinux 0x212daa1d pci_iomap_wc_range EXPORT_SYMBOL_GPL vmlinux 0x21494650 mvebu_mbus_get_dram_win_info -EXPORT_SYMBOL_GPL vmlinux 0x214a9dc9 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x214b9cdb sdhci_request_atomic EXPORT_SYMBOL_GPL vmlinux 0x214d891f __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x215544ce __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x21562a1d raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x215a5075 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x21620f8d cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio EXPORT_SYMBOL_GPL vmlinux 0x21726652 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x217bd8e3 sdhci_cqe_enable EXPORT_SYMBOL_GPL vmlinux 0x2181b0a1 usb_bus_idr_lock EXPORT_SYMBOL_GPL vmlinux 0x218227cd pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x2186bce7 spi_res_release EXPORT_SYMBOL_GPL vmlinux 0x21a22002 blkdev_ioctl EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id EXPORT_SYMBOL_GPL vmlinux 0x21b1571b ata_sff_exec_command EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x21e4d486 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x21e61080 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x21e7eba6 fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0x21e9ffc8 spi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x22021054 nand_soft_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0x2203a87d xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x220990d0 devlink_region_snapshot_id_put EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x2222e7a4 regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x2223adf6 pci_epc_mem_init EXPORT_SYMBOL_GPL vmlinux 0x222c68e9 fuse_sync_release EXPORT_SYMBOL_GPL vmlinux 0x222d7f8b regulator_set_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0x22358bdc dw_pcie_find_capability EXPORT_SYMBOL_GPL vmlinux 0x223d37cd irq_domain_set_hwirq_and_chip EXPORT_SYMBOL_GPL vmlinux 0x223e215c rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x2251742f scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x2257665a ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x223e568b ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x223f6961 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x2249bb53 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x22564d70 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x2283926e __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0x2295c1ad md_stop -EXPORT_SYMBOL_GPL vmlinux 0x22a206e7 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x22afba77 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL vmlinux 0x22aa3ccb alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x22b33021 devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x22b41ae7 nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x22b68182 mtk_pinconf_bias_disable_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0x22b70718 dev_pm_opp_of_remove_table EXPORT_SYMBOL_GPL vmlinux 0x22c8c596 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x22cce45a cpts_unregister +EXPORT_SYMBOL_GPL vmlinux 0x22c9ae9e init_dummy_netdev EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends EXPORT_SYMBOL_GPL vmlinux 0x22db9fee __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x22dff418 mmc_sanitize EXPORT_SYMBOL_GPL vmlinux 0x22ee5b99 pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0x22f6e6c0 firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x22fdda22 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x230628e9 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x231e403d fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x232335ff regulator_set_voltage_time_sel EXPORT_SYMBOL_GPL vmlinux 0x23316d45 ahci_platform_resume_host EXPORT_SYMBOL_GPL vmlinux 0x2331af0e max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x2331edf3 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x23329ba9 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x23337d69 platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x23392165 attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x2341f173 scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0x2345fa80 pm_generic_poweroff EXPORT_SYMBOL_GPL vmlinux 0x2349ca34 pm_genpd_init EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put @@ -19379,106 +19364,90 @@ EXPORT_SYMBOL_GPL vmlinux 0x23664e2a kill_mtd_super EXPORT_SYMBOL_GPL vmlinux 0x23666d59 __tracepoint_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x23671d16 debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0x236b2110 genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0x2372053f gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x236d0c34 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x2374523b security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0x2378cf83 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node 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 0x239e5d63 usb_add_phy EXPORT_SYMBOL_GPL vmlinux 0x23a45abf tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x23a6fd22 wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0x23abca52 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x23b7ef32 devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0x23c9a604 ima_file_check EXPORT_SYMBOL_GPL vmlinux 0x23e84553 vp_modern_generation EXPORT_SYMBOL_GPL vmlinux 0x23f2fdd5 of_property_read_variable_u8_array EXPORT_SYMBOL_GPL vmlinux 0x23f4bb5f pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x23f93e2a trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x240bfb43 ahci_stop_engine EXPORT_SYMBOL_GPL vmlinux 0x240ccf75 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x240d8ecf regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x240fa59b gpio_to_desc EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x2423421a fwnode_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0x2424330a kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x24341e54 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2424dc56 regulator_enable EXPORT_SYMBOL_GPL vmlinux 0x243c349f snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL vmlinux 0x2449e199 stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x244e53c3 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x245a9b9a of_find_spi_device_by_node -EXPORT_SYMBOL_GPL vmlinux 0x245d302e bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x243ca4eb snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x244e975f tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x24588e44 i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x2473ef05 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x24799a4c root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2481d623 dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248faaea irq_domain_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x2496d091 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x24a2fe86 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL vmlinux 0x24a516b0 icc_node_add EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24aea039 sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0x24af2f66 crypto_register_acomp EXPORT_SYMBOL_GPL vmlinux 0x24ba8373 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x24c5cec8 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x24c7ee7d rtnl_af_unregister EXPORT_SYMBOL_GPL vmlinux 0x24d0207a sysfs_add_file_to_group EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24df45fc sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x24e3bd8f crypto_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x24e5974c edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x24eae6a8 __clk_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24edc88c regmap_noinc_read EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset EXPORT_SYMBOL_GPL vmlinux 0x24f3fbb0 of_get_required_opp_performance_state EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x250609d9 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x250d8c0c snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL vmlinux 0x250f5058 devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x2516bbe8 __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x25215e45 gpiod_set_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x2523674e devfreq_cooling_em_register EXPORT_SYMBOL_GPL vmlinux 0x252757d4 blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x25379bf8 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x25318873 ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size EXPORT_SYMBOL_GPL vmlinux 0x254776c5 iommu_get_domain_for_dev EXPORT_SYMBOL_GPL vmlinux 0x255ca94a scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2562fc16 perf_aux_output_skip EXPORT_SYMBOL_GPL vmlinux 0x25646e01 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x2566cbf5 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x256c68f7 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x2573027c of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x257b7d09 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x25876e65 crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0x2589495f virtqueue_is_broken EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25987b63 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x25943685 of_icc_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x259cea9a usb_set_interface EXPORT_SYMBOL_GPL vmlinux 0x25b8894d uhci_check_and_reset_hc EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25bc9ada of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0x25cbe270 devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x25cfa7ed __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x25d42ce7 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x25da97ef nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x25e24483 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x25d74a94 trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0x25efdd4e reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x25f7990a devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x25fb5a43 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x2608f023 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x261c2857 snd_soc_pm_ops EXPORT_SYMBOL_GPL vmlinux 0x262a9ac4 power_supply_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x262c8efe debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x262d8206 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x2635c9d7 snd_soc_add_component EXPORT_SYMBOL_GPL vmlinux 0x2638586b xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0x263a2ef4 regulator_sync_voltage EXPORT_SYMBOL_GPL vmlinux 0x264add78 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2650dc89 cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed EXPORT_SYMBOL_GPL vmlinux 0x2652647e phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0x265631f6 mmc_send_tuning EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x26645fa9 snd_soc_of_parse_node_prefix EXPORT_SYMBOL_GPL vmlinux 0x266688a6 devm_usb_get_phy_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x26701662 __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x26773b29 device_get_child_node_count EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x26856d06 fwnode_get_next_available_child_node EXPORT_SYMBOL_GPL vmlinux 0x26862d72 mtd_panic_write -EXPORT_SYMBOL_GPL vmlinux 0x26887c6e clk_gate_restore_context EXPORT_SYMBOL_GPL vmlinux 0x268f2245 balloon_page_dequeue EXPORT_SYMBOL_GPL vmlinux 0x269b37b7 thermal_remove_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26b0bba4 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x26ac82a8 regulator_get_error_flags EXPORT_SYMBOL_GPL vmlinux 0x26b5d64f __devm_of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0x26c4679f regulator_get_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier @@ -19487,92 +19456,85 @@ EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense EXPORT_SYMBOL_GPL vmlinux 0x26ca5839 hisi_clk_init EXPORT_SYMBOL_GPL vmlinux 0x26ca9194 tty_buffer_space_avail EXPORT_SYMBOL_GPL vmlinux 0x26cb4c66 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x26dc15aa device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x26dd9e4c snd_soc_component_set_jack +EXPORT_SYMBOL_GPL vmlinux 0x26ea971d ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier EXPORT_SYMBOL_GPL vmlinux 0x2701953f mtk_mutex_add_comp -EXPORT_SYMBOL_GPL vmlinux 0x270242cb fwnode_graph_get_remote_port_parent EXPORT_SYMBOL_GPL vmlinux 0x2704af8a devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x270da5ff dev_pm_qos_expose_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x27336b08 __netpoll_cleanup EXPORT_SYMBOL_GPL vmlinux 0x2734197f musb_readb +EXPORT_SYMBOL_GPL vmlinux 0x2736ce61 crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0x2737ba4b amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x2738b672 tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained EXPORT_SYMBOL_GPL vmlinux 0x275313d5 devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x275b6e34 housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x276c5285 sdio_writesb EXPORT_SYMBOL_GPL vmlinux 0x27a4bb78 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x27d34de6 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x27e3064a spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x27e40196 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x27c9ee59 __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x27e5167e pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x27e8cbd2 crypto_stats_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x27ed3f8d snd_soc_get_strobe EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x28028b13 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x2804df59 mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0x281e300c dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0x282437cf iomap_seek_data EXPORT_SYMBOL_GPL vmlinux 0x282b7d57 xas_clear_mark EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x282e6d7c console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x282ef8a6 snd_soc_dapm_sync EXPORT_SYMBOL_GPL vmlinux 0x28321143 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x28380aff device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x283d5e7d wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0x28494dd5 usb_role_switch_register EXPORT_SYMBOL_GPL vmlinux 0x284d4f82 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x2852a7af sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0x285b94c1 __srcu_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x285dd05a ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x28628373 blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x2873f4d5 thermal_zone_device_update EXPORT_SYMBOL_GPL vmlinux 0x287c7fc7 fsverity_ioctl_read_metadata EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister EXPORT_SYMBOL_GPL vmlinux 0x28849534 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x288ffe05 sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x2894c8bc nvdimm_volatile_region_create EXPORT_SYMBOL_GPL vmlinux 0x28a7db63 nd_fletcher64 EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x28ae3a7a snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL vmlinux 0x28aed614 platform_irq_count EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x28c31ae9 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL vmlinux 0x28c42dcd cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x28e39ff1 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x28c9de78 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x28d52b6f device_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x28f6d7be extcon_find_edev_by_node EXPORT_SYMBOL_GPL vmlinux 0x28f7df52 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x28fed472 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x290281f4 __sdhci_add_host EXPORT_SYMBOL_GPL vmlinux 0x290b9532 rio_mport_get_efb EXPORT_SYMBOL_GPL vmlinux 0x291123ea __tracepoint_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0x2914d362 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x291739db snd_soc_lookup_component_nolocked EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine EXPORT_SYMBOL_GPL vmlinux 0x29200d63 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x292a548b of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x29347012 ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x294b5fc1 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x29325b55 mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x295a2670 clk_regmap_divider_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x295a4cfa usb_hcd_link_urb_to_ep EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x296714b4 find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x2972a198 blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0x2974c46d fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2978afea snd_soc_debugfs_root +EXPORT_SYMBOL_GPL vmlinux 0x2973de55 follow_pte EXPORT_SYMBOL_GPL vmlinux 0x298577f0 key_type_asymmetric EXPORT_SYMBOL_GPL vmlinux 0x298e54d1 ahci_platform_disable_phys EXPORT_SYMBOL_GPL vmlinux 0x299090ea nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL vmlinux 0x299e2520 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x2992302d blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x29a33ca2 spi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x29a4db1b pci_pri_supported EXPORT_SYMBOL_GPL vmlinux 0x29a5f423 dev_pm_opp_get_opp_table EXPORT_SYMBOL_GPL vmlinux 0x29beec80 of_device_modalias EXPORT_SYMBOL_GPL vmlinux 0x29c3f1ed led_sysfs_disable EXPORT_SYMBOL_GPL vmlinux 0x29c590e8 usb_put_dev EXPORT_SYMBOL_GPL vmlinux 0x29cf2470 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x29cffd8a ata_pio_need_iordy EXPORT_SYMBOL_GPL vmlinux 0x29dc94c4 dev_attr_link_power_management_policy EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async EXPORT_SYMBOL_GPL vmlinux 0x2a025a2a dma_get_merge_boundary EXPORT_SYMBOL_GPL vmlinux 0x2a05efc4 of_map_id EXPORT_SYMBOL_GPL vmlinux 0x2a081672 __clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0x2a0a6891 kthread_data -EXPORT_SYMBOL_GPL vmlinux 0x2a0c1dfb gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x2a1f37c6 sbitmap_bitmap_show EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops EXPORT_SYMBOL_GPL vmlinux 0x2a34d37a rockchip_clk_of_add_provider @@ -19585,119 +19547,123 @@ EXPORT_SYMBOL_GPL vmlinux 0x2a63b72b nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0x2a640645 cpufreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a757509 ehci_adjust_port_wakeup_flags EXPORT_SYMBOL_GPL vmlinux 0x2a8c25c5 mtd_read_user_prot_reg EXPORT_SYMBOL_GPL vmlinux 0x2aa37bf3 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x2aacff17 stmpe_disable EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2aae737a dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0x2abe375e md_submit_discard_bio EXPORT_SYMBOL_GPL vmlinux 0x2abea249 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x2acb48ef cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x2acbe224 usb_add_gadget EXPORT_SYMBOL_GPL vmlinux 0x2ace820a pkcs7_free_message EXPORT_SYMBOL_GPL vmlinux 0x2ae5425d blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x2ae8c67d snd_soc_rtdcom_lookup EXPORT_SYMBOL_GPL vmlinux 0x2aeef7e8 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x2af420dc __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0x2b0eee98 ehci_hub_control EXPORT_SYMBOL_GPL vmlinux 0x2b1bc08e nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0x2b28552c nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0x2b2e306d sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0x2b318f16 __clk_mux_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x2b32530e mm_kobj EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b452101 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x2b466715 sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple EXPORT_SYMBOL_GPL vmlinux 0x2b62cda0 kthread_use_mm EXPORT_SYMBOL_GPL vmlinux 0x2b86faef pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent EXPORT_SYMBOL_GPL vmlinux 0x2b967ae0 pinctrl_generic_get_group_count -EXPORT_SYMBOL_GPL vmlinux 0x2ba8eda7 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x2ba27d8e scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0x2bae29b8 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x2bb9db87 ahci_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x2bbb042f devm_of_platform_depopulate EXPORT_SYMBOL_GPL vmlinux 0x2bc76196 pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0x2bd617a1 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x2bdf02a6 __get_task_comm EXPORT_SYMBOL_GPL vmlinux 0x2be5030f copy_to_user_nofault EXPORT_SYMBOL_GPL vmlinux 0x2bf34779 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x2bf6168e strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0x2c0e9738 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x2c0fda35 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2c12b30c phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x2c1961b2 ata_scsi_unlock_native_capacity EXPORT_SYMBOL_GPL vmlinux 0x2c19bd60 edac_pci_handle_npe EXPORT_SYMBOL_GPL vmlinux 0x2c1cdef9 __devm_regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0x2c1fdb94 of_phy_put EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied EXPORT_SYMBOL_GPL vmlinux 0x2c20c552 nvmem_cell_read_u8 EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c466f40 acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0x2c4dca7b usb_check_int_endpoints EXPORT_SYMBOL_GPL vmlinux 0x2c54e292 irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x2c56ed34 udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0x2c5984df of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0x2c651014 snd_soc_find_dai EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c7336e5 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x2c784a3b ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x2c751bd8 nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c92f360 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x2c9238cb crypto_shash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c9ee39e fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x2cab1fd7 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x2cb65b9c hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0x2ccd9baf pcie_aspm_capable -EXPORT_SYMBOL_GPL vmlinux 0x2cd60c30 snd_soc_limit_volume EXPORT_SYMBOL_GPL vmlinux 0x2cd8655d pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x2cdfd8dd scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2ce62f85 sdio_set_block_size EXPORT_SYMBOL_GPL vmlinux 0x2ce855ed nanddev_bbt_update -EXPORT_SYMBOL_GPL vmlinux 0x2ce8df9d perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf595ae skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait EXPORT_SYMBOL_GPL vmlinux 0x2d1f90a3 bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x2d2bc0e0 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x2d23f20d security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0x2d2dceb1 rtc_initialize_alarm EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current EXPORT_SYMBOL_GPL vmlinux 0x2d2f2358 extcon_get_edev_name EXPORT_SYMBOL_GPL vmlinux 0x2d368c4c nand_subop_get_addr_start_off EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts EXPORT_SYMBOL_GPL vmlinux 0x2d46d4ca blk_ksm_init +EXPORT_SYMBOL_GPL vmlinux 0x2d5b5e7f devm_clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d6cde89 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x2d73d605 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x2d79afcf pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x2d8451de spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x2d92fb07 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x2d944bcf device_match_name EXPORT_SYMBOL_GPL vmlinux 0x2d9a140d blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x2d9bd965 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x2da0ce60 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x2daa4a69 handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2db77dea __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0x2dc2c5bf vchan_tx_submit EXPORT_SYMBOL_GPL vmlinux 0x2dcd3663 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x2dd390d9 alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0x2df58e7f led_trigger_write EXPORT_SYMBOL_GPL vmlinux 0x2dfa96fd devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x2dff38f3 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x2dffad85 regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e08ae03 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x2e11be6a crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x2e200304 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e253c5b ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x2e31c4fb bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0x2e3540b8 free_vm_area EXPORT_SYMBOL_GPL vmlinux 0x2e36cc2d fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x2e3a26c1 __vfs_setxattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x2e4261f6 snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0x2e4b00d9 snd_soc_close_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x2e4b4cdb register_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x2e50ebcd mtk_is_virt_gpio EXPORT_SYMBOL_GPL vmlinux 0x2e5dde6f genphy_c45_read_status EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x2e6a179f unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x2e7ec1ba __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x2e912907 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x2e8204fb security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x2e94e5ee proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0x2e94f1df __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x2eb4e4c9 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2eb4a377 mmc_pwrseq_unregister EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable EXPORT_SYMBOL_GPL vmlinux 0x2ec2e361 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x2ee923ed rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0x2ef1285c pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0x2ef884e7 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x2ef6a606 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2f0cc859 spi_alloc_device EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f17b7d9 pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x2f4999c3 set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x2f61f236 regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0x2f63e634 usb_poison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x2f73d07d powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x2f77df62 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2f7ff6a9 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x2f7c3319 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x2f7cd0af crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x2f9ac7ce sdhci_request EXPORT_SYMBOL_GPL vmlinux 0x2fa3f59e rio_get_comptag EXPORT_SYMBOL_GPL vmlinux 0x2fa53957 power_supply_external_power_changed EXPORT_SYMBOL_GPL vmlinux 0x2fa81c35 nanddev_init @@ -19706,140 +19672,150 @@ EXPORT_SYMBOL_GPL vmlinux 0x2fb10d6a snd_hwparams_to_dma_slave_config EXPORT_SYMBOL_GPL vmlinux 0x2fb6828f nanddev_erase EXPORT_SYMBOL_GPL vmlinux 0x2fb91f63 bus_remove_file EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fd42d7a put_device +EXPORT_SYMBOL_GPL vmlinux 0x2fd2f11d wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x2fd72a1e __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0x2ff528d4 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x30055131 vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0x301c79bb vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x301e9d8d snd_soc_jack_report EXPORT_SYMBOL_GPL vmlinux 0x3023f708 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x303bce1f cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x304060ac regmap_raw_write_async EXPORT_SYMBOL_GPL vmlinux 0x305506cc fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0x3056dc26 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x306059fc skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x307ed950 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x306e7c1a i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x30882d27 gpiod_set_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x3095af86 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x309aaa87 rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x30a262dc look_up_OID EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x30a31085 devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x30a5d6cd sdhci_enable_clk EXPORT_SYMBOL_GPL vmlinux 0x30aa9963 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x30bad717 thermal_zone_device_update EXPORT_SYMBOL_GPL vmlinux 0x30c3b19f pci_disable_sriov EXPORT_SYMBOL_GPL vmlinux 0x30c69b18 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x30d41710 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x30d3ed64 scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0x30e395a1 dev_pm_opp_find_level_exact EXPORT_SYMBOL_GPL vmlinux 0x30f24c08 balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0x30f3db43 cpufreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3109e7a3 ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0x310b6270 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x310ce23d snd_soc_component_nc_pin EXPORT_SYMBOL_GPL vmlinux 0x310ed6db devm_nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x3111e9ea rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x31132825 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x311fe189 ehci_reset EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave EXPORT_SYMBOL_GPL vmlinux 0x3130a706 snd_dmaengine_pcm_prepare_slave_config EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single EXPORT_SYMBOL_GPL vmlinux 0x31449a5f led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x314604d5 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x3145e3bb spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x31570152 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x315852ef gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0x3161b637 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x317bd1b3 snd_soc_dpcm_can_be_free_stop EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x318f91c4 mtd_read_oob EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook EXPORT_SYMBOL_GPL vmlinux 0x3193ed79 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x31a06cbc aead_exit_geniv EXPORT_SYMBOL_GPL vmlinux 0x31a847fe dma_resv_test_signaled EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu EXPORT_SYMBOL_GPL vmlinux 0x31aa8bd4 usb_sg_cancel EXPORT_SYMBOL_GPL vmlinux 0x31aab3c2 __fscrypt_prepare_readdir EXPORT_SYMBOL_GPL vmlinux 0x31bab59c usb_enable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x31c27fac iommu_uapi_sva_bind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x31c3cdc4 sdhci_pltfm_init EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports EXPORT_SYMBOL_GPL vmlinux 0x31ca82df mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x31cabb4e device_remove_file EXPORT_SYMBOL_GPL vmlinux 0x31d51cca __cci_control_port_by_device -EXPORT_SYMBOL_GPL vmlinux 0x31f518fd perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x31f46b95 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x31fe4265 crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0x3217b591 clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x3218b2d7 usb_asmedia_modifyflowcontrol EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x322949f7 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x3224d3bd stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x3228037c blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x323ee842 sdhci_execute_tuning +EXPORT_SYMBOL_GPL vmlinux 0x3244e816 path_noexec EXPORT_SYMBOL_GPL vmlinux 0x3246de85 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL vmlinux 0x324a3bb1 spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0x325c7c14 usb_add_phy_dev EXPORT_SYMBOL_GPL vmlinux 0x325d95ac pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0x325e5118 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x326c678b snd_soc_jack_add_gpiods EXPORT_SYMBOL_GPL vmlinux 0x32757c24 phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x32895eee sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0x3276d790 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x328f7722 fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0x32958c7d dm_internal_suspend_fast EXPORT_SYMBOL_GPL vmlinux 0x32a0d96a nanddev_ecc_engine_cleanup EXPORT_SYMBOL_GPL vmlinux 0x32a714f4 musb_get_mode EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32b765c2 regulator_set_voltage_time EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register EXPORT_SYMBOL_GPL vmlinux 0x32d9b859 regulator_list_voltage_pickable_linear_range EXPORT_SYMBOL_GPL vmlinux 0x32fc43ac dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x32ffd8d1 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x330992b4 clk_mux_determine_rate_flags EXPORT_SYMBOL_GPL vmlinux 0x330fce53 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0x3314a186 dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x331b9dad irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x33249315 nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x33351b8e uprobe_unregister EXPORT_SYMBOL_GPL vmlinux 0x3335ae32 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3352f108 ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x335e4596 xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x3365642a watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x3368add4 cpufreq_cpu_get_raw EXPORT_SYMBOL_GPL vmlinux 0x3384213b tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0x338cb7c7 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x33b6dd1a lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x3394cecb skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x33c52199 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x33c70a28 iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x33cd2cd6 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x33d51acb devm_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x33d5f238 devm_remove_action EXPORT_SYMBOL_GPL vmlinux 0x33e9e0a2 atomic_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x33f74cdc tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0x340529ab evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x341083d6 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x3426d1a3 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x33fbbdaf gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x34251e7f __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0x34385b29 clockevent_delta2ns EXPORT_SYMBOL_GPL vmlinux 0x3439817f of_reserved_mem_device_release EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0x344bc924 dev_pm_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui EXPORT_SYMBOL_GPL vmlinux 0x3451aac3 auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0x3452f350 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x3455ce90 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x34613111 sata_link_hardreset EXPORT_SYMBOL_GPL vmlinux 0x3461ba36 usb_bus_idr EXPORT_SYMBOL_GPL vmlinux 0x34643c72 irq_gc_mask_clr_bit EXPORT_SYMBOL_GPL vmlinux 0x346fff78 nand_read_data_op EXPORT_SYMBOL_GPL vmlinux 0x34776111 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x34902589 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0x349926c3 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL vmlinux 0x349ae9c1 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x349e2a0c crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0x34a6638b serial8250_rpm_put_tx EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x34ada0f4 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x34b3a2c4 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL vmlinux 0x34c7320c inet_hash EXPORT_SYMBOL_GPL vmlinux 0x34ce34ba iomap_writepage EXPORT_SYMBOL_GPL vmlinux 0x34dba993 snd_soc_info_volsw_sx EXPORT_SYMBOL_GPL vmlinux 0x34eb9270 regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0x350cfdd6 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x350042a1 device_destroy EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x350faf08 metadata_dst_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x350fb8cb debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x35205cd5 crypto_spawn_tfm2 EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy EXPORT_SYMBOL_GPL vmlinux 0x352fc137 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x353070c5 wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0x3533c9a3 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x353b992f ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x353694f5 ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0x3542caa6 kobject_get_path EXPORT_SYMBOL_GPL vmlinux 0x354389f6 irq_domain_create_legacy EXPORT_SYMBOL_GPL vmlinux 0x35568bf8 auxiliary_find_device EXPORT_SYMBOL_GPL vmlinux 0x35681ae3 __tracepoint_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x356be2cf inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x357527d1 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x357b7209 ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x357da395 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0x357fae69 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x35872ec3 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x358f7785 crypto_skcipher_setkey EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x359cf97e tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3596a45f fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x35a43291 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x35b4ab72 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x35c0b12b event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x35c3addc device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x35c4741f spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x35c62bf4 ping_err EXPORT_SYMBOL_GPL vmlinux 0x35d79ce2 dev_pm_opp_get_of_node EXPORT_SYMBOL_GPL vmlinux 0x35e8aeba debugfs_create_size_t EXPORT_SYMBOL_GPL vmlinux 0x360579ca md_new_event @@ -19848,108 +19824,110 @@ EXPORT_SYMBOL_GPL vmlinux 0x360d08a6 snd_soc_component_compr_open EXPORT_SYMBOL_GPL vmlinux 0x36134d0f rio_request_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process EXPORT_SYMBOL_GPL vmlinux 0x3624ad3b bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0x36526476 sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0x365cb2a4 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x3634824d devlink_port_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x3669213a usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x366a977b ata_sas_port_suspend EXPORT_SYMBOL_GPL vmlinux 0x36748b5b kill_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x3689a382 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x368c523e sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x368ff131 dev_pm_qos_hide_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x3699e0dc vp_modern_remove EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a5a511 __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x36a8e20f mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x36afe03d crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x36c13025 raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0x36c39ff1 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x36d10c84 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x36d3f8d7 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x36d9f618 rq_flush_dcache_pages EXPORT_SYMBOL_GPL vmlinux 0x36dad8fb blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x36e46502 crypto_aead_setkey EXPORT_SYMBOL_GPL vmlinux 0x36e5e6fd ata_scsi_dma_need_drain EXPORT_SYMBOL_GPL vmlinux 0x36e65305 devm_thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x36ec8a8a nvmem_device_cell_read EXPORT_SYMBOL_GPL vmlinux 0x36f16c53 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x36f2353d rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x36f6608b inet_ehash_locks_alloc EXPORT_SYMBOL_GPL vmlinux 0x370149f5 pinconf_generic_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0x37188ed0 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0x3730b645 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x37089e0f wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x370d2589 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0x3712b5bd crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x372167a1 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x37325a00 ata_pci_device_suspend EXPORT_SYMBOL_GPL vmlinux 0x3738c911 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x373e6e6b regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x374720c3 regulator_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript EXPORT_SYMBOL_GPL vmlinux 0x3752345c __mtd_next_device EXPORT_SYMBOL_GPL vmlinux 0x37524956 dev_coredumpsg EXPORT_SYMBOL_GPL vmlinux 0x37595cb3 meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0x37728e97 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x376a99e5 sdhci_cqe_enable EXPORT_SYMBOL_GPL vmlinux 0x37743b64 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x3776e495 snd_soc_component_async_complete EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state EXPORT_SYMBOL_GPL vmlinux 0x377dfe04 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x379270e4 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x3798dbf5 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x37811900 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x37923b06 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x3798510c thermal_zone_get_zone_by_name EXPORT_SYMBOL_GPL vmlinux 0x379e2438 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x37a95760 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x37b52509 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x37c4927b xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0x37c542de devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x37b79333 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x37bd29da xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x37d75780 rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x37e77a2b snd_soc_cnew -EXPORT_SYMBOL_GPL vmlinux 0x37ed5cf1 xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0x37ee3ab9 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL vmlinux 0x37fa2848 posix_clock_register EXPORT_SYMBOL_GPL vmlinux 0x37fb2198 dma_buf_dynamic_attach -EXPORT_SYMBOL_GPL vmlinux 0x38004b65 of_mpc8xxx_spi_probe EXPORT_SYMBOL_GPL vmlinux 0x381166cc rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x38158c2b udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0x38187511 rdev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0x38269205 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x382d5f2e snd_soc_dai_link_set_capabilities EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x383de20a nf_route +EXPORT_SYMBOL_GPL vmlinux 0x383a50f2 regulator_get_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x384f2e1c led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0x38523e63 espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0x385db890 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x3850c33d ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x38636c36 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x38816260 is_swiotlb_active EXPORT_SYMBOL_GPL vmlinux 0x3883b766 device_reprobe EXPORT_SYMBOL_GPL vmlinux 0x38a39725 fuse_free_conn 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 0x38b58fec rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x38b5975d skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x38bdfdb0 fscrypt_set_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x38c0c9e4 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x38d33c2b nf_queue EXPORT_SYMBOL_GPL vmlinux 0x38dc320f fuse_dev_release EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set EXPORT_SYMBOL_GPL vmlinux 0x38e26dee tps65217_reg_read EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38ea5012 snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL vmlinux 0x38f106e6 sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x38f4e463 mtk_pinconf_bias_get_combo -EXPORT_SYMBOL_GPL vmlinux 0x390e9869 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x3919a87f crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x391f82e9 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x3910550a tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x391a89ff crypto_register_aeads EXPORT_SYMBOL_GPL vmlinux 0x39215ac8 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x392872ac ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x392a4304 devm_led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x392bf7b7 scsi_target_block EXPORT_SYMBOL_GPL vmlinux 0x39344e37 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x3955c201 sdhci_resume_host EXPORT_SYMBOL_GPL vmlinux 0x39607056 device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x396dce61 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x396f59a5 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x396c79a1 ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x396fe213 md_rdev_init EXPORT_SYMBOL_GPL vmlinux 0x3979191d power_supply_changed EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3982fd50 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x397f4d2e devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x3984cbb3 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x3996a743 sock_map_destroy EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39a97f57 dapm_pinctrl_event EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string EXPORT_SYMBOL_GPL vmlinux 0x39b41cd7 __bio_crypt_clone +EXPORT_SYMBOL_GPL vmlinux 0x39b6fc01 dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x39caa273 sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0x39d053a9 device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0x39d63716 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0x39d73aef devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x39dce0a9 snd_soc_dai_compr_shutdown EXPORT_SYMBOL_GPL vmlinux 0x39dd3797 usb_unlocked_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0x39e1715a usb_mon_register EXPORT_SYMBOL_GPL vmlinux 0x39f34e7f regulator_set_active_discharge_regmap EXPORT_SYMBOL_GPL vmlinux 0x39f54b38 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x3a016702 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x39fa1d54 regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0x3a1c5b23 devm_phy_put EXPORT_SYMBOL_GPL vmlinux 0x3a23e406 iomap_invalidatepage +EXPORT_SYMBOL_GPL vmlinux 0x3a2a13dd sdhci_start_signal_voltage_switch EXPORT_SYMBOL_GPL vmlinux 0x3a437891 mtd_ooblayout_set_databytes EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish @@ -19958,162 +19936,163 @@ EXPORT_SYMBOL_GPL vmlinux 0x3a690496 driver_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x3a6b31bb posix_acl_default_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0x3a6eeb07 iommu_iova_to_phys EXPORT_SYMBOL_GPL vmlinux 0x3a73d232 rockchip_clk_register_armclk -EXPORT_SYMBOL_GPL vmlinux 0x3a8cc11c spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x3a95c1ae __sdhci_read_caps +EXPORT_SYMBOL_GPL vmlinux 0x3a962dde eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0x3a9671dc vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x3a994324 sched_set_normal EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa10457 inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0x3aa5bc8c blk_mq_freeze_queue_wait EXPORT_SYMBOL_GPL vmlinux 0x3aa95ac4 snd_card_rw_proc_new EXPORT_SYMBOL_GPL vmlinux 0x3ab26cd2 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x3abdce4f xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0x3ac81b60 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3acaafb0 __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3add6abb ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0x3af548a6 usb_phy_get_charger_current EXPORT_SYMBOL_GPL vmlinux 0x3afe7cc2 spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0x3b01a74b udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x3b0714f7 fanout_mutex EXPORT_SYMBOL_GPL vmlinux 0x3b0fb0ac debugfs_create_bool EXPORT_SYMBOL_GPL vmlinux 0x3b143ec4 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x3b1c4de4 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x3b158a75 ping_bind EXPORT_SYMBOL_GPL vmlinux 0x3b1dc92f of_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x3b354159 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0x3b36265c spi_take_timestamp_post EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b4eead4 devm_device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x3b5fe0f9 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0x3b8ae28e sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3b76547e sock_gen_put EXPORT_SYMBOL_GPL vmlinux 0x3b99a6c8 n_tty_inherit_ops EXPORT_SYMBOL_GPL vmlinux 0x3b9b3269 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x3bbc0a50 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x3bbbd3d1 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x3bc630e3 l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0x3bc7648c vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3be3f4f3 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x3be2b33e devlink_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0x3bea3c89 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x3bece4b4 pwm_get_chip_data EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bfcd7a6 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x3c1600ff xfrm_audit_state_replay_overflow EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply EXPORT_SYMBOL_GPL vmlinux 0x3c2eaedd phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x3c2f1916 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL vmlinux 0x3c2f5cd5 ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c4eaf00 ata_host_register EXPORT_SYMBOL_GPL vmlinux 0x3c5dce31 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x3c62f52b sdio_f0_writeb EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c720a9f ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x3c72724e usb_wait_anchor_empty_timeout EXPORT_SYMBOL_GPL vmlinux 0x3c83cd78 get_tree_mtd -EXPORT_SYMBOL_GPL vmlinux 0x3ca1f10d xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0x3cb489d1 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x3c9a4f85 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x3ca68ceb snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0x3cb4f763 xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0x3cb529a3 mtk_pinconf_adv_drive_get_raw EXPORT_SYMBOL_GPL vmlinux 0x3cb67583 fb_deferred_io_open EXPORT_SYMBOL_GPL vmlinux 0x3cc64655 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x3ccaef4f crypto_shash_tfm_digest EXPORT_SYMBOL_GPL vmlinux 0x3ccb20b1 class_find_device EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cded143 ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3cea4c81 tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x3cea8ef4 usb_phy_roothub_alloc EXPORT_SYMBOL_GPL vmlinux 0x3cf482dd subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3cf6d7e4 regulator_register EXPORT_SYMBOL_GPL vmlinux 0x3d02dfc5 usb_phy_gen_create_phy EXPORT_SYMBOL_GPL vmlinux 0x3d02e556 edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x3d1b435a crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0x3d2e16ea crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x3d154392 sdhci_setup_host +EXPORT_SYMBOL_GPL vmlinux 0x3d317a71 platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d38e9e1 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x3d40163d netdev_is_rx_handler_busy EXPORT_SYMBOL_GPL vmlinux 0x3d502120 efivar_entry_delete EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check EXPORT_SYMBOL_GPL vmlinux 0x3d58c623 devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x3d6b3b4b raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0x3d71f947 devm_clk_bulk_get_all EXPORT_SYMBOL_GPL vmlinux 0x3d7a2f44 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x3d7aba21 trace_event_buffer_reserve EXPORT_SYMBOL_GPL vmlinux 0x3d7fd860 pci_ioremap_bar EXPORT_SYMBOL_GPL vmlinux 0x3d82d550 mctrl_gpio_init EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x3d87d4d9 fwnode_get_next_parent EXPORT_SYMBOL_GPL vmlinux 0x3d88211e dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x3d933d3a crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x3d915c73 snd_soc_dapm_disable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon EXPORT_SYMBOL_GPL vmlinux 0x3da61ee9 pkcs7_validate_trust EXPORT_SYMBOL_GPL vmlinux 0x3db1c556 usb_reset_device EXPORT_SYMBOL_GPL vmlinux 0x3db48a49 __tracepoint_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x3db794f6 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x3dbb87a4 ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x3dbd81a4 mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x3dcbeba0 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x3dda3900 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0x3ddae5cb phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0x3de50ca5 snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0x3dcaff7b phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3decd667 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x3df37ba9 cpufreq_register_driver EXPORT_SYMBOL_GPL vmlinux 0x3df6facf pm_clk_resume EXPORT_SYMBOL_GPL vmlinux 0x3df898fc iommu_unmap EXPORT_SYMBOL_GPL vmlinux 0x3e0bc816 fwnode_create_software_node EXPORT_SYMBOL_GPL vmlinux 0x3e1d8669 mtk_eint_set_debounce EXPORT_SYMBOL_GPL vmlinux 0x3e1fadc6 usb_hcd_map_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3e3e76a1 ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x3e43c963 scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0x3e49e879 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x3e3b9327 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x3e3f9ae6 sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x3e4f36f7 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x3e52b326 wakeup_source_create EXPORT_SYMBOL_GPL vmlinux 0x3e59f122 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x3e5ce9bd snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL vmlinux 0x3e678f89 hwmon_notify_event EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer EXPORT_SYMBOL_GPL vmlinux 0x3e76343b tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x3e7af9fa __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x3e80c66e wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x3e83bf10 devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x3e8c00e0 nvdimm_delete EXPORT_SYMBOL_GPL vmlinux 0x3e960248 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x3e968a5c icc_link_create EXPORT_SYMBOL_GPL vmlinux 0x3e99bf9a platform_bus EXPORT_SYMBOL_GPL vmlinux 0x3e99bfad ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x3ead6eb1 __udp_gso_segment EXPORT_SYMBOL_GPL vmlinux 0x3ec40239 idr_alloc_u32 EXPORT_SYMBOL_GPL vmlinux 0x3ec675c7 fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0x3ed68bd5 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x3ec90e82 bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x3ee8ef3b of_pci_parse_bus_range EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef91c88 bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0x3ef97f7d pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x3efbfdb0 snd_soc_dapm_nc_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f033d45 sched_trace_rq_nr_running -EXPORT_SYMBOL_GPL vmlinux 0x3f04732e __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x3f0a971f regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3f15534c snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0x3f16724b crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x3f1117dc strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0x3f1fc44a rockchip_clk_add_lookup EXPORT_SYMBOL_GPL vmlinux 0x3f2472ba devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x3f2eddf3 ata_sas_queuecmd EXPORT_SYMBOL_GPL vmlinux 0x3f305915 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x3f33780b gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x3f3a5f09 spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3f43cd44 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x3f392ad6 of_mpc8xxx_spi_probe EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f4d3308 icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0x3f512d4a devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x3f5eb4d9 snd_ctl_sync_vmaster EXPORT_SYMBOL_GPL vmlinux 0x3f70c099 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x3f7b2653 crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x3f81de68 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3f71f196 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x3f76c050 snd_soc_component_set_pll EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put +EXPORT_SYMBOL_GPL vmlinux 0x3fa62a16 __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0x3fd64623 snd_soc_component_read_field EXPORT_SYMBOL_GPL vmlinux 0x3fdbb432 serial8250_do_set_divisor EXPORT_SYMBOL_GPL vmlinux 0x3fdfa143 dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x3fe483d4 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x3fe39a73 filemap_range_needs_writeback EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate EXPORT_SYMBOL_GPL vmlinux 0x3fed26fa efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0x3ff3fa1f sched_trace_cfs_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0x3ff6f56d bio_add_zone_append_page EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x3ffa4c86 ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next EXPORT_SYMBOL_GPL vmlinux 0x400c64dd blk_ksm_intersect_modes -EXPORT_SYMBOL_GPL vmlinux 0x401bbfe3 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x40211522 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x4029585c bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x401edd60 of_css EXPORT_SYMBOL_GPL vmlinux 0x4039cce4 power_supply_unregister EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x404d1cc6 snd_soc_put_strobe +EXPORT_SYMBOL_GPL vmlinux 0x405514ef get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x405c7215 trace_array_put EXPORT_SYMBOL_GPL vmlinux 0x406252d1 sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources EXPORT_SYMBOL_GPL vmlinux 0x406873ff fuse_do_open EXPORT_SYMBOL_GPL vmlinux 0x40688cc3 of_phy_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x40734440 fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0x4082f95f pci_epc_get_first_free_bar EXPORT_SYMBOL_GPL vmlinux 0x408511c7 of_reconfig_get_state_change EXPORT_SYMBOL_GPL vmlinux 0x40862703 nand_get_large_page_ooblayout @@ -20123,17 +20102,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x408c00b4 pm_generic_freeze_noirq EXPORT_SYMBOL_GPL vmlinux 0x4093c9a8 of_thermal_get_trip_points EXPORT_SYMBOL_GPL vmlinux 0x4097695f virtio_device_restore EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40a68b4b sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x40b4ad7b devm_pm_opp_register_set_opp_helper EXPORT_SYMBOL_GPL vmlinux 0x40b7d7d5 dev_pm_opp_put EXPORT_SYMBOL_GPL vmlinux 0x40bc717c hvc_instantiate EXPORT_SYMBOL_GPL vmlinux 0x40c3c8d1 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x40e8c04b raw_seq_stop 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 0x410029d1 of_clk_get_parent_count EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x41023e5f ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0x410f5062 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x41174828 pm_wakeup_ws_event EXPORT_SYMBOL_GPL vmlinux 0x41224e7b ahci_shost_attrs EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu EXPORT_SYMBOL_GPL vmlinux 0x412bcd2e nvdimm_bus_check_dimm_count @@ -20143,14 +20122,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x412e9d08 tpm1_do_selftest EXPORT_SYMBOL_GPL vmlinux 0x414538e6 synth_event_add_field_str EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings EXPORT_SYMBOL_GPL vmlinux 0x414de6be rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x414f1606 sdhci_pltfm_clk_get_max_clock EXPORT_SYMBOL_GPL vmlinux 0x415319c8 __kmap_local_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0x41599244 dpcm_be_dai_trigger EXPORT_SYMBOL_GPL vmlinux 0x416069df hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval EXPORT_SYMBOL_GPL vmlinux 0x4188aadf sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x41991107 devlink_param_publish -EXPORT_SYMBOL_GPL vmlinux 0x419e23e1 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x418f87e1 tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop EXPORT_SYMBOL_GPL vmlinux 0x41b68d1d to_nvdimm EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue @@ -20158,106 +20134,109 @@ EXPORT_SYMBOL_GPL vmlinux 0x41bd90f4 pci_reset_function EXPORT_SYMBOL_GPL vmlinux 0x41bdb0ba devm_bitmap_zalloc EXPORT_SYMBOL_GPL vmlinux 0x41c30f3a trace_seq_bprintf EXPORT_SYMBOL_GPL vmlinux 0x41c38829 nand_select_target +EXPORT_SYMBOL_GPL vmlinux 0x41ce31d3 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x41d98415 ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0x41ddb9ab usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x41df5d61 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x41eb471d ata_host_put EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41ede1f5 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x41f3ef3e vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x41f907e6 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x41fd8aba __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0x4202d267 dm_disk EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x4207293b blk_mq_quiesce_queue EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x425a2734 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x421026e2 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x42141d80 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x42411b92 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x4259b74c security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x425f53ad tty_port_link_device EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags EXPORT_SYMBOL_GPL vmlinux 0x426457a9 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x427cdbeb snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x42659990 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x426bc50e raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428ced3e scsi_host_unblock EXPORT_SYMBOL_GPL vmlinux 0x42950c2a snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL vmlinux 0x429a7db4 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x429a4238 snd_soc_dai_compr_get_metadata EXPORT_SYMBOL_GPL vmlinux 0x42b9817e ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x42d40ea5 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x42df7f16 pwm_get EXPORT_SYMBOL_GPL vmlinux 0x42e445f6 clk_mux_val_to_index EXPORT_SYMBOL_GPL vmlinux 0x42e889b8 serial8250_init_port EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit EXPORT_SYMBOL_GPL vmlinux 0x42efb127 nvmem_del_cell_lookups EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs EXPORT_SYMBOL_GPL vmlinux 0x4300c490 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x4303b80e platform_device_add EXPORT_SYMBOL_GPL vmlinux 0x430c7913 mtd_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event EXPORT_SYMBOL_GPL vmlinux 0x4324bd43 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x4327a4c5 vfs_read +EXPORT_SYMBOL_GPL vmlinux 0x43285422 sdhci_adma_write_desc EXPORT_SYMBOL_GPL vmlinux 0x432df9e0 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x432eec60 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x43372e39 xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x433da1da devres_open_group EXPORT_SYMBOL_GPL vmlinux 0x433e5f2b pci_enable_sriov EXPORT_SYMBOL_GPL vmlinux 0x434592d4 blk_mq_sched_try_merge EXPORT_SYMBOL_GPL vmlinux 0x434c8db0 is_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x435c9ea9 sdio_signal_irq EXPORT_SYMBOL_GPL vmlinux 0x436abc06 iommu_device_register EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit EXPORT_SYMBOL_GPL vmlinux 0x436e0c18 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x436f4212 __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled EXPORT_SYMBOL_GPL vmlinux 0x4384a77e irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x438dafb6 mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x43912891 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x43974430 dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0x43a1e9e3 do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x43871592 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x438e5051 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL vmlinux 0x4394fa77 i2c_recover_bus EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43ab41ff vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x43c8bc5c __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x43b3780a fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x43bfda3f gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x43dd7e6f devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x43ddc441 regulator_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x43dfd261 __tracepoint_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x43e2a8c1 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x43e45478 __sync_filesystem EXPORT_SYMBOL_GPL vmlinux 0x43eb7c3b rio_release_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate EXPORT_SYMBOL_GPL vmlinux 0x43f91c53 serial8250_do_shutdown EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43f96907 devlink_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs EXPORT_SYMBOL_GPL vmlinux 0x44147121 dev_pm_opp_get_required_pstate EXPORT_SYMBOL_GPL vmlinux 0x44273d39 cpufreq_dbs_governor_init EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x442f590f ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0x4432c5d5 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x4437744a skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x443775d1 nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x44449619 pinctrl_generic_remove_group EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write EXPORT_SYMBOL_GPL vmlinux 0x445a3578 usb_gadget_vbus_connect EXPORT_SYMBOL_GPL vmlinux 0x44702eec bio_release_pages -EXPORT_SYMBOL_GPL vmlinux 0x447e2473 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x44787bf7 replace_page_cache_page EXPORT_SYMBOL_GPL vmlinux 0x447f9061 led_classdev_resume EXPORT_SYMBOL_GPL vmlinux 0x4482569b scatterwalk_copychunks EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448b498b wbc_detach_inode EXPORT_SYMBOL_GPL vmlinux 0x449d69be pinctrl_generic_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x44a39ec1 regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0x44a65cda scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x44b71743 get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44bd716b snd_soc_get_dai_id +EXPORT_SYMBOL_GPL vmlinux 0x44c13f1a sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0x44c52677 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x44ca0c10 regulator_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44cffacd crypto_alloc_skcipher EXPORT_SYMBOL_GPL vmlinux 0x44da86b5 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x44e66292 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x44ee02fa ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x44f8bbf5 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x44fcaea6 __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x4501a45a __devm_regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0x4504b66b usb_anchor_urb EXPORT_SYMBOL_GPL vmlinux 0x4506b399 cpufreq_dbs_governor_start EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x450f6148 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x450f7b62 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x451bd3a0 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x45286ba3 snd_soc_dai_set_channel_map EXPORT_SYMBOL_GPL vmlinux 0x452da808 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x4530521b dapm_clock_event -EXPORT_SYMBOL_GPL vmlinux 0x453185ff inet6_destroy_sock EXPORT_SYMBOL_GPL vmlinux 0x453217a7 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x453bb5c9 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x454236ed regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x454e2253 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x4551fa18 snd_soc_get_pcm_runtime EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x45584a68 snd_pcm_stop_xrun EXPORT_SYMBOL_GPL vmlinux 0x455cc518 devres_for_each_res @@ -20266,54 +20245,58 @@ EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister EXPORT_SYMBOL_GPL vmlinux 0x45626e11 devm_gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x45650f38 pci_load_saved_state EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45a144dd ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4579f919 pwm_capture EXPORT_SYMBOL_GPL vmlinux 0x45af85c5 pcie_flr EXPORT_SYMBOL_GPL vmlinux 0x45b7d4ea user_update -EXPORT_SYMBOL_GPL vmlinux 0x45bc34c7 tcp_get_info EXPORT_SYMBOL_GPL vmlinux 0x45bd518d dev_pm_opp_set_supported_hw EXPORT_SYMBOL_GPL vmlinux 0x45c9cf56 snd_ctl_disconnect_layer EXPORT_SYMBOL_GPL vmlinux 0x45ccc96a get_device_system_crosststamp EXPORT_SYMBOL_GPL vmlinux 0x45d07221 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0x45d0e9e8 get_governor_parent_kobj EXPORT_SYMBOL_GPL vmlinux 0x45d65e91 ima_inode_hash EXPORT_SYMBOL_GPL vmlinux 0x45e17736 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x45e9665a gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0x45fb928e usb_debug_root EXPORT_SYMBOL_GPL vmlinux 0x45ff8535 trace_seq_putc EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46158881 cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0x46159260 securityfs_remove EXPORT_SYMBOL_GPL vmlinux 0x46203771 __blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0x46324a0a of_genpd_parse_idle_states -EXPORT_SYMBOL_GPL vmlinux 0x4635cf6f snd_soc_dai_set_tristate EXPORT_SYMBOL_GPL vmlinux 0x4635d0fd spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x4642aa5c ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x4645f104 rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0x4648a665 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x464bede1 ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x464bf3a7 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x4655f450 ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0x46596aea tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x4667415e devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x466254d8 fl6_update_dst EXPORT_SYMBOL_GPL vmlinux 0x466afa88 iommu_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4676ab12 pci_cfg_access_unlock EXPORT_SYMBOL_GPL vmlinux 0x467e20f3 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x4687b6e3 fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46937ced nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x4693fb41 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0x46964fe6 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x46b46b12 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46ae9205 l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0x46b8fc62 dma_buf_move_notify +EXPORT_SYMBOL_GPL vmlinux 0x46bc0e29 mmc_cmdq_disable EXPORT_SYMBOL_GPL vmlinux 0x46c06c19 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x46c18727 tcp_ca_get_key_by_name EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x46d8d8f1 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x46d5226a security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x46dc38d8 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x46de7586 skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put EXPORT_SYMBOL_GPL vmlinux 0x46f54d56 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x470096ea zap_vma_ptes EXPORT_SYMBOL_GPL vmlinux 0x471a8899 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x4721d22d bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4726108f crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x4728f5cb dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x472f6b83 snd_soc_dapm_new_control EXPORT_SYMBOL_GPL vmlinux 0x47317949 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x473880d6 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x474843cc sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4759f1ff inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4762ed7e ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x47674c04 simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features @@ -20323,297 +20306,309 @@ EXPORT_SYMBOL_GPL vmlinux 0x47925794 idr_find EXPORT_SYMBOL_GPL vmlinux 0x4797e410 scmi_protocol_unregister EXPORT_SYMBOL_GPL vmlinux 0x479b22cb devm_phy_create EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a7d7f8 ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x47aa2f0f tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x47aaa1bf crypto_alloc_shash EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47b93e77 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x47be2b5a bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0x47c6c3b5 mtk_pinconf_drive_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0x47cfc807 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x47d075a4 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x47da53fa ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47ede1dd devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0x47f2441a snd_soc_info_volsw_range EXPORT_SYMBOL_GPL vmlinux 0x47f3caad pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x47fc1704 event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0x48020c1c irq_get_percpu_devid_partition EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm -EXPORT_SYMBOL_GPL vmlinux 0x4833d851 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x483ed4fd device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x48306ffe ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x4833df88 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x48340eb0 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x484779ef __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x486da9a3 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x48764875 fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0x487c0f32 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x48934fce gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x489f7896 regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get EXPORT_SYMBOL_GPL vmlinux 0x48ac05d6 __tracepoint_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x48ae98c9 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x48bc1202 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x48b07888 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x48b11e39 __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x48cafbbe ehci_setup EXPORT_SYMBOL_GPL vmlinux 0x48dcb4ec rio_dma_prep_xfer EXPORT_SYMBOL_GPL vmlinux 0x48e7ab6a rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x48ecdd77 sdhci_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x4901d900 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x48fa0e6b xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x48fca513 ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x4903566f devm_of_phy_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x4908204b devm_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x490f0952 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0x49199f95 validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0x491d67be input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x492ba24f skcipher_walk_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x49326ef6 irq_set_affinity_notifier EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x49414b54 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x4936b762 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x493dee8c phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x494ff54d device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x49527514 device_set_wakeup_capable EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x49647fc3 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x497951e9 ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0x49830f0e __tracepoint_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x4994c8cf gpiochip_irq_domain_activate EXPORT_SYMBOL_GPL vmlinux 0x499a9b45 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x499d74c9 snd_soc_remove_pcm_runtime EXPORT_SYMBOL_GPL vmlinux 0x49a7c18e dbs_update EXPORT_SYMBOL_GPL vmlinux 0x49b0dc84 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x49b8f90d crypto_stats_compress EXPORT_SYMBOL_GPL vmlinux 0x49bf8e20 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x49c1486d platform_get_irq EXPORT_SYMBOL_GPL vmlinux 0x49c4c68c mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x49cd21ee snd_soc_dpcm_can_be_prepared EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue EXPORT_SYMBOL_GPL vmlinux 0x49d96707 freq_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x49d9f030 usb_ep_fifo_status -EXPORT_SYMBOL_GPL vmlinux 0x49dd0cb7 platform_get_resource EXPORT_SYMBOL_GPL vmlinux 0x49e6f763 mtk_pinconf_bias_disable_set EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x49e9cf18 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x49eead92 gpiod_get_value EXPORT_SYMBOL_GPL vmlinux 0x49f077c6 serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0x49fc68ef ehci_reset EXPORT_SYMBOL_GPL vmlinux 0x4a073dbc virtqueue_add_outbuf EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a1f07b8 stmpe_set_altfunc EXPORT_SYMBOL_GPL vmlinux 0x4a22ba51 meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0x4a267a2c devlink_param_publish EXPORT_SYMBOL_GPL vmlinux 0x4a26d187 devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x4a285287 mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0x4a2c95c6 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x4a34aa56 snd_soc_dapm_enable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0x4a40f904 fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0x4a43b894 sdev_evt_send_simple EXPORT_SYMBOL_GPL vmlinux 0x4a4981ae devm_hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0x4a51974d sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x4a57265e pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0x4a58ca95 of_get_fb_videomode EXPORT_SYMBOL_GPL vmlinux 0x4a6268f4 dm_internal_resume_fast EXPORT_SYMBOL_GPL vmlinux 0x4a69b47f component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x4a71f0ea __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x4a6c1981 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x4a734188 ata_host_put EXPORT_SYMBOL_GPL vmlinux 0x4a76ae85 disk_force_media_change EXPORT_SYMBOL_GPL vmlinux 0x4a7f1652 pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x4a80770f __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4a7fa119 mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x4a8f2ee2 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x4aa631cc gpiochip_populate_parent_fwspec_twocell EXPORT_SYMBOL_GPL vmlinux 0x4aab29e5 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x4ac95937 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x4aaed210 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x4ab5bc81 tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0x4ad055e5 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x4adb575b fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0x4adcfa3d tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0x4ade1bd5 rio_unregister_mport EXPORT_SYMBOL_GPL vmlinux 0x4adf3940 pm_clk_init EXPORT_SYMBOL_GPL vmlinux 0x4ae27d4f dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x4aea2a8b security_path_rmdir EXPORT_SYMBOL_GPL vmlinux 0x4aed842a subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x4af3c060 platform_get_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x4b168134 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4b322e95 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL vmlinux 0x4b3a236f inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x4b1d451e crypto_shash_finup EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b5e096a gpiod_set_raw_value EXPORT_SYMBOL_GPL vmlinux 0x4b6348e5 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x4b6b5a34 platform_get_irq EXPORT_SYMBOL_GPL vmlinux 0x4b770b24 mtd_lock -EXPORT_SYMBOL_GPL vmlinux 0x4b7d2c9f devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x4b79c996 devm_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x4b830391 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x4b86bc59 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4b8afb64 crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0x4b982f6c phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x4b9e4155 bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x4bb55424 input_device_enabled EXPORT_SYMBOL_GPL vmlinux 0x4bb77374 kernfs_put EXPORT_SYMBOL_GPL vmlinux 0x4bbe2cd1 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4bd491a6 fwnode_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0x4bd863d2 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x4bf1358a gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4be17605 cpufreq_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x4bf1790f __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4bf24b17 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4bf88b7b ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x4bfb37cb synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0x4bfb6506 of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x4c03fb11 platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x4c0ef0a3 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x4c149afb regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0x4c16680c simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x4c1a8f00 perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0x4c2c8227 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0x4c38f6c9 bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x4c40889f dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x4c41a6fb sched_trace_rq_nr_running EXPORT_SYMBOL_GPL vmlinux 0x4c4c7351 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x4c4f5a2f fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4c50c9fd __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4c515e50 xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0x4c54424d snd_ctl_activate_id EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c56e07d inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x4c672110 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c5dc953 cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0x4c69d397 ahci_platform_enable_regulators EXPORT_SYMBOL_GPL vmlinux 0x4c6f57e3 of_dma_configure_id EXPORT_SYMBOL_GPL vmlinux 0x4c71441e __clocksource_register_scale EXPORT_SYMBOL_GPL vmlinux 0x4c7787e8 umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0x4c7c66d5 __vfs_removexattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x4c7c9aba input_ff_upload EXPORT_SYMBOL_GPL vmlinux 0x4c7e5991 rockchip_pcie_deinit_phys -EXPORT_SYMBOL_GPL vmlinux 0x4c945cd3 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x4c861a88 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x4ca37d31 mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0x4ca3aa2b xhci_run EXPORT_SYMBOL_GPL vmlinux 0x4ca693de spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4cb05c2c wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x4cb0ff9b device_for_each_child EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4ccd23d4 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x4cce656f crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x4cbe63c7 gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x4cd25dc9 devres_destroy EXPORT_SYMBOL_GPL vmlinux 0x4cdb70b2 __fscrypt_encrypt_symlink EXPORT_SYMBOL_GPL vmlinux 0x4ce19943 devm_gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x4cf24332 __usb_get_extra_descriptor EXPORT_SYMBOL_GPL vmlinux 0x4cfad040 clk_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d1990d6 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4d1f0145 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4d21bbbf ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x4d1c86d3 l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0x4d27da0e platform_msi_domain_free_irqs EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x4d3cf7a6 mtd_write_oob -EXPORT_SYMBOL_GPL vmlinux 0x4d44f531 ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0x4d4728a9 mtd_wunit_to_pairing_info EXPORT_SYMBOL_GPL vmlinux 0x4d48563c blk_ksm_destroy EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d6a566f ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x4d60933c regmap_field_read EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d72cc07 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x4d905543 nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0x4da50ab8 sbitmap_get EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf EXPORT_SYMBOL_GPL vmlinux 0x4dbadbf7 relay_flush EXPORT_SYMBOL_GPL vmlinux 0x4dc7262f devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x4dc7bba5 sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0x4dd348b7 usb_altnum_to_altsetting EXPORT_SYMBOL_GPL vmlinux 0x4dd8dd41 devm_power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult EXPORT_SYMBOL_GPL vmlinux 0x4dd9d5b2 snd_ctl_register_layer +EXPORT_SYMBOL_GPL vmlinux 0x4ddfbd8a of_clk_hw_onecell_get EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string EXPORT_SYMBOL_GPL vmlinux 0x4de2381e register_kretprobe EXPORT_SYMBOL_GPL vmlinux 0x4de81680 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x4df58307 __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL vmlinux 0x4e0c314a phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e045495 ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0x4e127380 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x4e135c27 gpiod_direction_output EXPORT_SYMBOL_GPL vmlinux 0x4e15c1ce usb_create_shared_hcd EXPORT_SYMBOL_GPL vmlinux 0x4e1be3a5 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4e1c1cee nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x4e20f853 i2c_generic_scl_recovery EXPORT_SYMBOL_GPL vmlinux 0x4e2436df spi_mem_get_name EXPORT_SYMBOL_GPL vmlinux 0x4e2e1265 get_current_tty EXPORT_SYMBOL_GPL vmlinux 0x4e3aebc5 relay_late_setup_files EXPORT_SYMBOL_GPL vmlinux 0x4e3ccf38 md_stop_writes EXPORT_SYMBOL_GPL vmlinux 0x4e422600 start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x4e541e5b snd_soc_dapm_update_dai EXPORT_SYMBOL_GPL vmlinux 0x4e553ea6 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x4e5a04a1 ata_sas_sync_probe EXPORT_SYMBOL_GPL vmlinux 0x4e6dcc19 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x4e74b434 ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0x4e76cc66 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x4e76be07 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x4e8b401a device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x4e8f83a2 event_triggers_call EXPORT_SYMBOL_GPL vmlinux 0x4e9777a7 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x4e98d3c5 synth_event_create EXPORT_SYMBOL_GPL vmlinux 0x4e9ac74c handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x4ea23b55 cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4ec5ba62 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x4ee8f1fc scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x4ed6e86f snd_soc_dai_set_channel_map EXPORT_SYMBOL_GPL vmlinux 0x4eea67fe page_reporting_unregister EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context EXPORT_SYMBOL_GPL vmlinux 0x4ef72438 iommu_attach_device EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f061773 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x4f08801c gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x4f11e596 regmap_get_raw_read_max EXPORT_SYMBOL_GPL vmlinux 0x4f1bf91a mbox_chan_txdone EXPORT_SYMBOL_GPL vmlinux 0x4f221155 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x4f36f32b ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4f30b93b snd_soc_dapm_init EXPORT_SYMBOL_GPL vmlinux 0x4f3ba219 blkg_rwstat_init EXPORT_SYMBOL_GPL vmlinux 0x4f45be49 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x4f60b81e sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0x4f4efe43 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x4f57cb38 __vfs_removexattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options EXPORT_SYMBOL_GPL vmlinux 0x4f73c71f uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x4f80a47e __sdhci_add_host -EXPORT_SYMBOL_GPL vmlinux 0x4f8e55d9 page_endio EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x4f9d753d mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x4f9f1f32 pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x4fa3ebfb security_file_permission EXPORT_SYMBOL_GPL vmlinux 0x4fa4cc86 usb_gadget_activate +EXPORT_SYMBOL_GPL vmlinux 0x4fbcbd04 hisi_clk_alloc EXPORT_SYMBOL_GPL vmlinux 0x4fd427b2 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4fd60002 regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fdf96cb ata_std_error_handler EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fec1f83 sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x4fecfed2 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x4ff21be2 crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x4ff4345b __traceiter_map EXPORT_SYMBOL_GPL vmlinux 0x5004bf14 dw_pcie_read_dbi EXPORT_SYMBOL_GPL vmlinux 0x50071363 devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x50121e92 switchdev_handle_fdb_add_to_device EXPORT_SYMBOL_GPL vmlinux 0x50135c48 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x5021839d msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x5032b9bf vmf_insert_pfn_pmd_prot EXPORT_SYMBOL_GPL vmlinux 0x503d0f16 pci_epc_mem_alloc_addr EXPORT_SYMBOL_GPL vmlinux 0x503eeebb synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x504103de get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x5050d791 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x50548412 spi_take_timestamp_pre EXPORT_SYMBOL_GPL vmlinux 0x505ac2a4 fuse_do_ioctl EXPORT_SYMBOL_GPL vmlinux 0x505e60a5 pci_user_read_config_word EXPORT_SYMBOL_GPL vmlinux 0x505f598e snd_soc_bytes_info EXPORT_SYMBOL_GPL vmlinux 0x5061ab63 mtd_write EXPORT_SYMBOL_GPL vmlinux 0x506ab3a9 usb_ep_queue -EXPORT_SYMBOL_GPL vmlinux 0x507a2cee regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x5076ad82 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x507742cb sdhci_set_power +EXPORT_SYMBOL_GPL vmlinux 0x50797123 ata_scsi_queuecmd EXPORT_SYMBOL_GPL vmlinux 0x508afef4 usb_anchor_suspend_wakeups EXPORT_SYMBOL_GPL vmlinux 0x508c97ca iomap_fiemap EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x50a2b4c2 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x50a2dc3c mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x50aa879b snd_soc_put_volsw_sx EXPORT_SYMBOL_GPL vmlinux 0x50b82c9f usb_get_hcd EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL vmlinux 0x50ba88d4 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x50bf84b6 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x50c35f83 platform_device_add_data EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50cb6958 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL vmlinux 0x50c985b3 spi_controller_resume EXPORT_SYMBOL_GPL vmlinux 0x50cbfaf2 devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x50d4324e snd_soc_dai_active +EXPORT_SYMBOL_GPL vmlinux 0x50d08c22 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x50d134cf ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x50d78da6 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x50dcc43e trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50ea0b45 device_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x51131de0 device_store_bool EXPORT_SYMBOL_GPL vmlinux 0x51153b89 __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0x5117cbad l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x51184324 perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0x5118fba2 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x51292104 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x513530b1 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x51377748 apply_to_existing_page_range EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x5142a336 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x514ee89f peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5143f216 snd_soc_jack_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x515c2b12 ack_all_badblocks EXPORT_SYMBOL_GPL vmlinux 0x5160303e attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x516e1113 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x51645ca1 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x516b2169 devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0x516e1830 bpfilter_umh_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x51754009 inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x51755649 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x5173c344 sched_trace_cfs_rq_avg EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51b79407 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x51b75864 skb_scrub_packet EXPORT_SYMBOL_GPL vmlinux 0x51bd9dcf usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x51befd49 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x51c43a6b spi_res_release EXPORT_SYMBOL_GPL vmlinux 0x51c4ebab pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x51c60b18 snd_soc_dai_action EXPORT_SYMBOL_GPL vmlinux 0x51c8eb58 rdev_clear_badblocks EXPORT_SYMBOL_GPL vmlinux 0x51d5c2cb snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x51d68013 ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x51d7405d snd_ctl_get_preferred_subdevice EXPORT_SYMBOL_GPL vmlinux 0x51da8801 blk_mq_pci_map_queues EXPORT_SYMBOL_GPL vmlinux 0x51e2ae4c musb_root_disconnect EXPORT_SYMBOL_GPL vmlinux 0x51e5cb70 vp_modern_set_queue_size EXPORT_SYMBOL_GPL vmlinux 0x51ea7fe5 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x51f9c17f vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0x51fb2f57 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x51fe99ef dev_pm_qos_expose_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x5204ad22 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x52058330 skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x522a3362 thermal_zone_device_enable EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x52384e38 ata_sas_sync_probe EXPORT_SYMBOL_GPL vmlinux 0x523d4477 devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x5253925e pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x52569efb cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0x525c67b4 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x5263e1fa __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0x5269009f rio_set_port_lockout EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x526f58b7 __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0x52770775 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x527fe765 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x5282c4c3 blk_ksm_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x52873d18 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x5290b487 nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x5299df5a fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0x52a1a1f2 iommu_dev_disable_feature EXPORT_SYMBOL_GPL vmlinux 0x52a4a920 of_property_read_u64_index @@ -20625,123 +20620,126 @@ EXPORT_SYMBOL_GPL vmlinux 0x52cac42a __vring_new_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put EXPORT_SYMBOL_GPL vmlinux 0x52d5c2db fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0x52f55c4c irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x52f688de sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL vmlinux 0x52fe1a3d xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x531e964b vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x530f145b __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x5322850a device_set_node EXPORT_SYMBOL_GPL vmlinux 0x532ba63d of_phandle_iterator_init EXPORT_SYMBOL_GPL vmlinux 0x5336e8bf iommu_sva_unbind_gpasid +EXPORT_SYMBOL_GPL vmlinux 0x534e8971 trace_event_ignore_this_pid EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x535c49b3 crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert EXPORT_SYMBOL_GPL vmlinux 0x536ce72b cpufreq_table_index_unsorted EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x53796b35 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x537a4c0e cpufreq_enable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x5391c092 spi_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x539e516c od_register_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x53a0a2e9 fb_deferred_io_init EXPORT_SYMBOL_GPL vmlinux 0x53aa461a usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0x53b76fa6 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL vmlinux 0x53c74386 sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0x53c87ed3 power_supply_set_property EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53dd97dd mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x53e29a74 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x53da9bac device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x53dae29a tcp_sendpage_locked EXPORT_SYMBOL_GPL vmlinux 0x53f03a13 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x5411edf4 ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0x54172702 cci_disable_port_by_cpu EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x5431d584 sdhci_cqe_disable EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0x5453202a handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x545fdb31 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x546fbec3 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x5460f79f work_on_cpu_safe_key EXPORT_SYMBOL_GPL vmlinux 0x54750068 da903x_writes EXPORT_SYMBOL_GPL vmlinux 0x547ef2d1 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x548b60c2 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x54924e23 __traceiter_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put EXPORT_SYMBOL_GPL vmlinux 0x54a26db0 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x54a582c0 fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0x54a9fc07 sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x54ce44d6 snd_soc_component_disable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0x54d7aeb4 iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0x54d9a120 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x54ef2a7f __mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x54f60ce3 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x54f8aa8a fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0x550d3d57 pci_cfg_access_trylock EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x551f8a8d clk_hw_set_parent EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier EXPORT_SYMBOL_GPL vmlinux 0x5544680b tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x55674165 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x5567dc9b ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x556bd5ef skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0x557d9715 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x557ef01a ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0x558c3025 dev_pm_domain_attach EXPORT_SYMBOL_GPL vmlinux 0x558e2f2d snd_ac97_reset -EXPORT_SYMBOL_GPL vmlinux 0x558f92ee snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL vmlinux 0x559b0371 ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0x559e8db7 irq_chip_request_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x55ac0772 ata_sff_freeze EXPORT_SYMBOL_GPL vmlinux 0x55b1bdec dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x55b90057 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x55ba024c snd_soc_component_exit_regmap EXPORT_SYMBOL_GPL vmlinux 0x55c0113e usb_add_gadget_udc_release EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper EXPORT_SYMBOL_GPL vmlinux 0x55c95686 devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x55d4b3a5 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x55d9e20d snd_soc_resume EXPORT_SYMBOL_GPL vmlinux 0x55db637d nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x55dcd076 snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0x55dcfa09 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x55de82d5 do_tcp_sendpages EXPORT_SYMBOL_GPL vmlinux 0x55e34789 devm_get_free_pages EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x560495fc crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x55f0c896 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x55fe1f0c of_clk_src_simple_get EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab EXPORT_SYMBOL_GPL vmlinux 0x560704b1 dev_pm_genpd_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x560e0b81 cpu_device_create EXPORT_SYMBOL_GPL vmlinux 0x560e5147 genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x5617085e crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x560f5fd8 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x56122635 ahci_init_controller EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x56180c25 ata_link_next EXPORT_SYMBOL_GPL vmlinux 0x561835eb init_rs_non_canonical EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff EXPORT_SYMBOL_GPL vmlinux 0x562ecf89 rio_release_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status EXPORT_SYMBOL_GPL vmlinux 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL vmlinux 0x5635b561 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x56386213 crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0x563bd53a param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x563d1ffb devlink_region_snapshot_id_put EXPORT_SYMBOL_GPL vmlinux 0x5640b693 elv_rqhash_del EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x56464416 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x5648d634 cpufreq_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x565385a2 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x56686aa0 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x56784a7a snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x56817e4a xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0x56a20d91 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x56a3b541 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0x56a6a76c net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x56a6bf90 crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0x56af5d34 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x56b44009 tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56b7263c sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0x56b9c36b of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x56b9f79d fixed_phy_register_with_gpiod EXPORT_SYMBOL_GPL vmlinux 0x56c2976e __bio_add_page EXPORT_SYMBOL_GPL vmlinux 0x56c3da27 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x56dba692 usb_phy_generic_register EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56eb98e0 devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x56eebde1 icc_get -EXPORT_SYMBOL_GPL vmlinux 0x56f652b4 set_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers EXPORT_SYMBOL_GPL vmlinux 0x56fd3f51 blkcg_root EXPORT_SYMBOL_GPL vmlinux 0x56fffea7 blkg_conf_prep EXPORT_SYMBOL_GPL vmlinux 0x5708da30 __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0x571caa9a trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x571e12f9 snd_soc_new_ac97_component EXPORT_SYMBOL_GPL vmlinux 0x5722ffef msi_desc_to_pci_sysdata EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options EXPORT_SYMBOL_GPL vmlinux 0x573d1c0b fsverity_verify_page EXPORT_SYMBOL_GPL vmlinux 0x574c593e fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x574eecc4 of_css EXPORT_SYMBOL_GPL vmlinux 0x5756be8b bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x5758280c snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0x575df4c0 ahci_platform_get_resources EXPORT_SYMBOL_GPL vmlinux 0x575f624e platform_bus_type EXPORT_SYMBOL_GPL vmlinux 0x5762ca3c pci_disable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x577382fa mtk_pinconf_bias_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x578d4b84 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x578d1bdf i2c_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x57939b0b spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x57919a0e icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0x579495c2 blk_execute_rq_nowait EXPORT_SYMBOL_GPL vmlinux 0x579a61dd fsnotify_alloc_group EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all @@ -20749,96 +20747,90 @@ EXPORT_SYMBOL_GPL vmlinux 0x57a02c20 pm_runtime_set_autosuspend_delay EXPORT_SYMBOL_GPL vmlinux 0x57a231cc usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x57a341a6 devm_devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0x57a4a9c5 xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x57aa3979 add_to_page_cache_lru EXPORT_SYMBOL_GPL vmlinux 0x57b369d5 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x57b3834a crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0x57b3d501 amba_device_put EXPORT_SYMBOL_GPL vmlinux 0x57d0572e pci_epc_map_addr EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index EXPORT_SYMBOL_GPL vmlinux 0x57db631c gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0x57dbc073 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x57ddda76 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0x57df50f0 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x57e7c973 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x57e7a61f spi_res_alloc EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57fd1fcd ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x57ffc56b sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0x58080878 sdhci_set_ios EXPORT_SYMBOL_GPL vmlinux 0x5812c30e do_unregister_con_driver EXPORT_SYMBOL_GPL vmlinux 0x58140a6c percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x581629cf crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x581dedb7 of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x58233b07 sdhci_set_power +EXPORT_SYMBOL_GPL vmlinux 0x58254172 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL vmlinux 0x582c3950 proc_create_net_data EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x5839ba81 snd_soc_jack_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x583ae023 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x583e1126 crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0x583f3407 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x584d4f87 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x584cdc3d device_dma_supported EXPORT_SYMBOL_GPL vmlinux 0x585248f7 nand_decode_ext_id +EXPORT_SYMBOL_GPL vmlinux 0x585bf183 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x585dbd39 fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0x586673db mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x586a8f1f ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x586aa162 __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info EXPORT_SYMBOL_GPL vmlinux 0x587ac04d cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0x587cbbef i2c_match_id EXPORT_SYMBOL_GPL vmlinux 0x5886d374 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x588f3eba scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x58a1136b gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0x58a669a0 mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0x58aab7cf icc_node_del EXPORT_SYMBOL_GPL vmlinux 0x58c51931 fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x58d1221b sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x58d32f5f __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x58cd1066 cpts_release +EXPORT_SYMBOL_GPL vmlinux 0x58dd16f7 crypto_larval_kill EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58ec55b7 bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0x58f0308a clk_regmap_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x58ffa1fd crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x59006502 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x5907e5e5 crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0x5909f832 musb_set_host EXPORT_SYMBOL_GPL vmlinux 0x590a2198 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x5913c996 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x592000d6 __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x59244afc fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0x593d5618 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x590cb59b clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x592c63c0 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x59438f56 get_device EXPORT_SYMBOL_GPL vmlinux 0x5946279d pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x594b9d61 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x59587a30 __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x59647b73 int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x596cf788 device_store_int EXPORT_SYMBOL_GPL vmlinux 0x5983cb35 pci_restore_msi_state EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x59906740 snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0x59966f71 snd_soc_dai_is_dummy EXPORT_SYMBOL_GPL vmlinux 0x59a1fab8 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x59a760dd ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x59aa64c1 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x59b00ebc skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0x59b5def6 clk_regmap_gate_ops EXPORT_SYMBOL_GPL vmlinux 0x59b5e006 __auxiliary_driver_register EXPORT_SYMBOL_GPL vmlinux 0x59b80fe5 musb_queue_resume_work -EXPORT_SYMBOL_GPL vmlinux 0x59b83c4c devm_of_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x59bd85e6 dev_pm_opp_put_regulators EXPORT_SYMBOL_GPL vmlinux 0x59beaccd snd_dmaengine_pcm_get_chan EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59c6718f skb_partial_csum_set EXPORT_SYMBOL_GPL vmlinux 0x59cd7216 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x59e9b22b __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f5af74 rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0x59f66ee7 usb_gadget_frame_number EXPORT_SYMBOL_GPL vmlinux 0x59f9ac8b ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x59fa9cc8 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a047931 ahci_reset_controller EXPORT_SYMBOL_GPL vmlinux 0x5a081994 fscrypt_symlink_getattr EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x5a179e1a fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x5a1890d7 clk_register EXPORT_SYMBOL_GPL vmlinux 0x5a195c80 mtd_erase_user_prot_reg EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle EXPORT_SYMBOL_GPL vmlinux 0x5a27b78a usb_ifnum_to_if EXPORT_SYMBOL_GPL vmlinux 0x5a34f2fd extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x5a354862 snd_soc_dapm_force_enable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0x5a355ebb rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x5a3cdf10 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x5a379da9 sdio_retune_release EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a5315ec cpts_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x5a54d7c3 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x5a54ec44 __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0x5a5d44e8 set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x5a673692 devm_snd_soc_register_component EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt EXPORT_SYMBOL_GPL vmlinux 0x5a716a29 debugfs_create_atomic_t EXPORT_SYMBOL_GPL vmlinux 0x5a78a14b device_attach EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a888684 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x5a822b18 dapm_mark_endpoints_dirty EXPORT_SYMBOL_GPL vmlinux 0x5aa19613 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x5aada90d desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ab0c9e0 crypto_shash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x5ac601ae snd_pcm_stream_unlock EXPORT_SYMBOL_GPL vmlinux 0x5aceaa43 hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0x5ad0ab1d serdev_device_write_flush @@ -20847,21 +20839,19 @@ EXPORT_SYMBOL_GPL vmlinux 0x5ae737ac dma_request_chan_by_mask EXPORT_SYMBOL_GPL vmlinux 0x5af16498 dax_inode EXPORT_SYMBOL_GPL vmlinux 0x5af762f1 snd_fasync_free EXPORT_SYMBOL_GPL vmlinux 0x5af9e165 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5b004f54 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x5b04439e sdio_retune_crc_disable EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek EXPORT_SYMBOL_GPL vmlinux 0x5b316080 software_node_unregister_nodes EXPORT_SYMBOL_GPL vmlinux 0x5b3bdea8 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x5b593773 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x5b4cb969 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x5b53f79d inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x5b5a009c show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x5b5fe681 snd_soc_tplg_widget_bind_event EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment EXPORT_SYMBOL_GPL vmlinux 0x5b6cd2dd debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x5b7733d3 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x5b8c5584 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x5b7dcf74 set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0x5b95004d regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x5b98f830 ping_bind EXPORT_SYMBOL_GPL vmlinux 0x5b994e71 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x5ba3c3fa snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL vmlinux 0x5bb361a9 bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0x5bba1757 tpm_chip_unregister EXPORT_SYMBOL_GPL vmlinux 0x5bba3272 pci_intx EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd @@ -20875,141 +20865,125 @@ EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp EXPORT_SYMBOL_GPL vmlinux 0x5bef21cb dev_pm_opp_add EXPORT_SYMBOL_GPL vmlinux 0x5bfe065c __class_create EXPORT_SYMBOL_GPL vmlinux 0x5c052035 fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x5c1f639a dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x5c0906a4 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5c0f577a set_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec EXPORT_SYMBOL_GPL vmlinux 0x5c33ee9a of_resolve_phandles EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c4cd6a0 crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x5c5fc7dc cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5c728546 xfrm_audit_state_replay EXPORT_SYMBOL_GPL vmlinux 0x5c75dafe pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x5c7d408f __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x5c7e9c4a sata_link_scr_lpm 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 0x5c900850 snd_soc_dapm_init -EXPORT_SYMBOL_GPL vmlinux 0x5c9fadd0 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0x5ca1e451 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x5ca35cf3 of_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x5ca3762a devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x5ca539fb clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x5ca5f21a ata_wait_register EXPORT_SYMBOL_GPL vmlinux 0x5caaaf52 pci_ats_supported EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cb16f71 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0x5cc2a511 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x5cca5709 ping_close -EXPORT_SYMBOL_GPL vmlinux 0x5cd8bc21 sdhci_cleanup_host -EXPORT_SYMBOL_GPL vmlinux 0x5cded7e1 snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0x5cec6a59 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x5cc41334 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x5ce2010d shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x5ce328b9 register_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x5cee36bb uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x5cfa422b synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0x5d017ab0 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x5d07dff5 regulator_set_current_limit EXPORT_SYMBOL_GPL vmlinux 0x5d0a0eff __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5d0feae8 inet6_sock_destruct EXPORT_SYMBOL_GPL vmlinux 0x5d142ea5 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x5d16cacb find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x5d19774b __traceiter_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x5d1a238e class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5d26ee50 snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL vmlinux 0x5d299bff pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d3b34c8 crypto_create_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x5d40cc57 ata_pci_sff_init_one EXPORT_SYMBOL_GPL vmlinux 0x5d428aee tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x5d4a0a6f snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL vmlinux 0x5d4b164f l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0x5d4e5853 amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0x5d4f1f62 __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x5d581b23 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x5d59a988 security_kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0x5d5aa466 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL vmlinux 0x5d5c8a93 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5d5dbe6b thermal_zone_device_disable EXPORT_SYMBOL_GPL vmlinux 0x5d6e4e1f cpu_subsys EXPORT_SYMBOL_GPL vmlinux 0x5d7034e5 usb_register_dev EXPORT_SYMBOL_GPL vmlinux 0x5d714729 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x5d75678f tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x5d799680 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x5d794316 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x5d7e97b6 __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x5d82a5b8 tracepoint_probe_register EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5da19cc1 devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dab200b ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x5dce921b __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5dc62fe7 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0x5dd0a528 pci_generic_ecam_ops -EXPORT_SYMBOL_GPL vmlinux 0x5de97c93 snd_soc_jack_add_gpios EXPORT_SYMBOL_GPL vmlinux 0x5dede1e8 uprobe_register_refctr EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e013ae3 security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0x5e2b40b6 ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0x5e433422 ata_sff_data_xfer EXPORT_SYMBOL_GPL vmlinux 0x5e473ab8 pci_max_pasids EXPORT_SYMBOL_GPL vmlinux 0x5e504919 __tracepoint_block_split EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e5253b2 snd_soc_dpcm_can_be_prepared EXPORT_SYMBOL_GPL vmlinux 0x5e583e05 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x5e63113c devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0x5e763721 is_swiotlb_active EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e7c20e2 wm8350_reg_write EXPORT_SYMBOL_GPL vmlinux 0x5e7dc25c pci_bus_add_device EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e90177c __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x5e9b360c cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0x5ea442c4 crypto_larval_alloc 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 0x5eb87b87 __traceiter_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare EXPORT_SYMBOL_GPL vmlinux 0x5ec80177 relay_reset EXPORT_SYMBOL_GPL vmlinux 0x5ec983b6 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x5ece615f __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5eca557c crypto_stats_get EXPORT_SYMBOL_GPL vmlinux 0x5ece617c alloc_empty_file EXPORT_SYMBOL_GPL vmlinux 0x5ecf8536 devm_rtc_device_register EXPORT_SYMBOL_GPL vmlinux 0x5edbfc98 iommu_unregister_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x5ee368d1 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x5ee54559 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x5eec6a96 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x5ee4f622 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x5ee8c711 cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0x5ef0adf3 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x5f08bf44 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5f1d6df7 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x5f1a1ba7 register_trace_event EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource EXPORT_SYMBOL_GPL vmlinux 0x5f3a59b6 bsg_register_queue EXPORT_SYMBOL_GPL vmlinux 0x5f57b960 pm_generic_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0x5f61fd0f debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x5f6515ea __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x5f6b2c91 da903x_write EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f723ef0 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x5f817c59 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x5f974229 ahci_port_resume EXPORT_SYMBOL_GPL vmlinux 0x5f9dbfea kernfs_notify EXPORT_SYMBOL_GPL vmlinux 0x5f9f66e5 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x5f9f896d shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x5fa2dcf9 sdhci_dumpregs +EXPORT_SYMBOL_GPL vmlinux 0x5fa4016a dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point EXPORT_SYMBOL_GPL vmlinux 0x5faf2ac2 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x5fbe1750 snd_soc_component_read_field EXPORT_SYMBOL_GPL vmlinux 0x5fc294ef usb_ep_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x5fcf5686 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5fd65b1f snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x5fcfd534 dapm_regulator_event EXPORT_SYMBOL_GPL vmlinux 0x5fe12e23 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x5fe43b05 crypto_stats_rng_generate EXPORT_SYMBOL_GPL vmlinux 0x5ffe9aa7 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5fff0959 driver_set_override EXPORT_SYMBOL_GPL vmlinux 0x6004710c dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x60077a1d crypto_alloc_sync_skcipher EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x601aa900 snd_soc_component_async_complete EXPORT_SYMBOL_GPL vmlinux 0x601b14c6 fsl8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0x601c07bf phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x601c17c5 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x601c301a edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x602a070e crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x602e9780 scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0x604af21f dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x604f121f __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0x60606431 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0x606302a1 inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0x60671345 software_node_register_nodes EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x607e187c sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x6085dc02 inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6092e265 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x6092466e devm_platform_ioremap_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x60930181 snd_pcm_hw_constraint_eld EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60b0f204 create_signature EXPORT_SYMBOL_GPL vmlinux 0x60b2bd97 dma_get_slave_caps EXPORT_SYMBOL_GPL vmlinux 0x60bf5d0e usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x60cc8da4 sdhci_dumpregs EXPORT_SYMBOL_GPL vmlinux 0x60d01740 srcu_init_notifier_head EXPORT_SYMBOL_GPL vmlinux 0x60e4ac64 wm831x_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x60eb391b rio_map_outb_region @@ -21019,57 +20993,47 @@ EXPORT_SYMBOL_GPL vmlinux 0x60fa5e2b edac_device_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x611ba225 blk_queue_set_zoned EXPORT_SYMBOL_GPL vmlinux 0x611c9611 of_irq_parse_one EXPORT_SYMBOL_GPL vmlinux 0x611d89b0 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0x6122ea06 l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0x612725b4 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL vmlinux 0x61295dad is_current_mnt_ns EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x612c032d blk_rq_err_bytes EXPORT_SYMBOL_GPL vmlinux 0x612fa077 kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x6136dacf ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0x61371a1e fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x612ff693 evm_verifyxattr EXPORT_SYMBOL_GPL vmlinux 0x61399cff pinctrl_pm_select_idle_state EXPORT_SYMBOL_GPL vmlinux 0x614782f1 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all EXPORT_SYMBOL_GPL vmlinux 0x6153c479 __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0x6155bd77 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x61786cb1 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x61765fd0 cpufreq_cpu_get_raw EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x618a812c regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x61981e9a sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0x618898b0 device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x619af7e3 i2c_match_id EXPORT_SYMBOL_GPL vmlinux 0x619ba057 pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x61a8e207 regmap_get_raw_read_max EXPORT_SYMBOL_GPL vmlinux 0x61aa42e9 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x61bc7bc6 find_vpid EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x61df285c snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL vmlinux 0x61f2dfb9 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x61f0d31f fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0x61f9c243 ksm_madvise EXPORT_SYMBOL_GPL vmlinux 0x61fe0495 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6202e74c blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x6208c274 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x62090ec8 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x6223b398 pci_host_common_remove EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x623679c8 ata_sas_port_start EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x6243014f __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x62464883 cpts_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context EXPORT_SYMBOL_GPL vmlinux 0x625ffa0b mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x62638e5e netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x62639556 devm_phy_package_join EXPORT_SYMBOL_GPL vmlinux 0x626a2971 usb_deregister EXPORT_SYMBOL_GPL vmlinux 0x62719227 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x6278dcff nl_table +EXPORT_SYMBOL_GPL vmlinux 0x6274a18d __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x627addfd pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x62aa00e7 dapm_regulator_event EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62be5ac7 sched_trace_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0x62ca5e00 pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0x62d0e2a6 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x62e93ff8 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x62e134de ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x62e1a0be crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x62fb5f2e devm_thermal_zone_of_sensor_register EXPORT_SYMBOL_GPL vmlinux 0x63090722 trace_seq_vprintf EXPORT_SYMBOL_GPL vmlinux 0x630da4a2 mtd_block_isreserved @@ -21081,71 +21045,78 @@ EXPORT_SYMBOL_GPL vmlinux 0x633904d8 pm_generic_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x633cb2c6 register_kprobe EXPORT_SYMBOL_GPL vmlinux 0x6342d8e5 of_icc_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x635a3930 ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0x635a5e7c pci_epf_destroy EXPORT_SYMBOL_GPL vmlinux 0x6362a757 pinctrl_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x6377da80 wm831x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x63879ee9 blk_mq_flush_busy_ctxs EXPORT_SYMBOL_GPL vmlinux 0x638a85b3 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x639ae3eb devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6396bbae aead_register_instance EXPORT_SYMBOL_GPL vmlinux 0x639d8cf4 pci_epc_get EXPORT_SYMBOL_GPL vmlinux 0x63adbf92 encode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x63aea54b snd_soc_dapm_kcontrol_dapm EXPORT_SYMBOL_GPL vmlinux 0x63b27d28 tps65912_device_init EXPORT_SYMBOL_GPL vmlinux 0x63b6da5e rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x63b7c25b inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x63bc665f snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL vmlinux 0x63be0262 bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c4b00c __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x63cdf756 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL vmlinux 0x63df0827 inet6_sock_destruct EXPORT_SYMBOL_GPL vmlinux 0x63f07008 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x63f2f7a1 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x63fef818 __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0x6411c1a8 pin_get_name EXPORT_SYMBOL_GPL vmlinux 0x64131a6e usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x64136eaa __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x6428814a gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0x64293ae5 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x64314c3e device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x642d15b3 inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x64334fff kernel_read_file_from_fd EXPORT_SYMBOL_GPL vmlinux 0x64437316 sysfs_add_link_to_group EXPORT_SYMBOL_GPL vmlinux 0x644bfdcf trace_print_bitmask_seq EXPORT_SYMBOL_GPL vmlinux 0x6470d77a snd_soc_component_compr_get_metadata EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6479638f spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x64817524 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x64773a6c shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x648c485c devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x6490c7c4 get_kernel_pages EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0x64996ba5 tpm_get_timeouts EXPORT_SYMBOL_GPL vmlinux 0x6499ca92 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x649b9740 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0x64a2643f snd_soc_component_compr_ack EXPORT_SYMBOL_GPL vmlinux 0x64a2c7e7 meson_clk_mpll_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x64a822f7 pci_slots_kset EXPORT_SYMBOL_GPL vmlinux 0x64a93c18 phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x64a9acd7 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x64b6726f lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0x64c07d32 btree_remove EXPORT_SYMBOL_GPL vmlinux 0x64c3c03c rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x64c975b0 gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0x64cdf082 xas_load -EXPORT_SYMBOL_GPL vmlinux 0x64d51c0d pwm_free EXPORT_SYMBOL_GPL vmlinux 0x64dc84aa deregister_mtd_parser EXPORT_SYMBOL_GPL vmlinux 0x64e0d36f devm_regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x64e154a8 devfreq_event_reset_event EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64e7ab6f snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x64f76805 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0x6507d8c8 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x65137662 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x651ec6b1 xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x651ee67b srcu_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x651ffe85 serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x65204176 locks_release_private EXPORT_SYMBOL_GPL vmlinux 0x6523c948 vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x65256ad9 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x65317024 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x652f40f7 sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x6540d278 rdev_get_name EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x65611964 __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0x659d4983 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x65aff409 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x657b9aca find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x65a48ea9 mptcp_get_reset_option EXPORT_SYMBOL_GPL vmlinux 0x65b51883 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x65ba6e52 wm8350_set_bits EXPORT_SYMBOL_GPL vmlinux 0x65bd0641 balloon_aops EXPORT_SYMBOL_GPL vmlinux 0x65cb9859 rio_release_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65e40dd8 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x65f39b19 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x65e41a7f snd_soc_component_initialize +EXPORT_SYMBOL_GPL vmlinux 0x65ea3d0a regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x65f67a68 sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0x65f99eed dev_pm_opp_register_set_opp_helper EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol EXPORT_SYMBOL_GPL vmlinux 0x661ef35f snd_power_ref_and_wait @@ -21153,15 +21124,19 @@ EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end EXPORT_SYMBOL_GPL vmlinux 0x663bdefd genphy_c45_check_and_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x6677377b snd_soc_dapm_weak_routes EXPORT_SYMBOL_GPL vmlinux 0x6679475b __pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng EXPORT_SYMBOL_GPL vmlinux 0x6688bc47 usb_hcd_unmap_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x669594ad musb_clearw -EXPORT_SYMBOL_GPL vmlinux 0x66a145b1 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x66b0b6d1 sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider EXPORT_SYMBOL_GPL vmlinux 0x66b816ca genphy_c45_loopback EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66ba8b3e snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x66c242f8 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL vmlinux 0x66c5c88b crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x66c8b043 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x66cbec06 ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0x66cc1b6b usb_hub_clear_tt_buffer EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr EXPORT_SYMBOL_GPL vmlinux 0x66dc1a70 usb_choose_configuration @@ -21169,114 +21144,114 @@ EXPORT_SYMBOL_GPL vmlinux 0x66fc2bc0 badrange_add EXPORT_SYMBOL_GPL vmlinux 0x6703903b register_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0x67072e1f devm_regulator_register EXPORT_SYMBOL_GPL vmlinux 0x6710fdc9 pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x671716d9 device_register -EXPORT_SYMBOL_GPL vmlinux 0x6717d517 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x6721f66e devlink_params_register EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key EXPORT_SYMBOL_GPL vmlinux 0x6737a150 arm_iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x67386c13 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x6740440b tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x673cbe5d locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x673f09b1 wakeup_source_destroy EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x6743da55 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x6745cdbf proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0x674908d6 of_hwspin_lock_get_id_byname EXPORT_SYMBOL_GPL vmlinux 0x6752f912 __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0x676c703b shmem_zero_setup EXPORT_SYMBOL_GPL vmlinux 0x677a6a54 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x677c4bb3 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x6781513c __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x6786d22b scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x67857377 devlink_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a34806 snd_soc_dapm_kcontrol_widget EXPORT_SYMBOL_GPL vmlinux 0x67adf8fd nvdimm_has_flush EXPORT_SYMBOL_GPL vmlinux 0x67b50c05 blk_mq_quiesce_queue_nowait EXPORT_SYMBOL_GPL vmlinux 0x67cec85f generic_device_group EXPORT_SYMBOL_GPL vmlinux 0x67d17757 dev_pm_opp_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67f21059 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x67fb0556 crypto_stats_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x67fb871d dev_pm_opp_of_find_icc_paths EXPORT_SYMBOL_GPL vmlinux 0x67fde719 tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x68020211 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x6818a4ec gpiod_direction_input EXPORT_SYMBOL_GPL vmlinux 0x68200444 sysfs_create_mount_point EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x68404ec2 crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0x6847fc6a usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x6869fbc7 __trace_note_message EXPORT_SYMBOL_GPL vmlinux 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x6890d978 cpufreq_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch EXPORT_SYMBOL_GPL vmlinux 0x689d0b7c sysfs_update_groups EXPORT_SYMBOL_GPL vmlinux 0x689d128e blk_queue_required_elevator_features EXPORT_SYMBOL_GPL vmlinux 0x68ab890b __get_mtd_device EXPORT_SYMBOL_GPL vmlinux 0x68b561c2 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x68c6d90c __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x68ca4231 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x68e094dc regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x68e72361 pid_vnr EXPORT_SYMBOL_GPL vmlinux 0x68eeccfb pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0x68fce55b regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x68fd6cde thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x69039dec devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x6903cf27 ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x690465ea blkg_rwstat_recursive_sum EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies EXPORT_SYMBOL_GPL vmlinux 0x691d902a pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x691e617d crypto_stats_akcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x692098e2 list_lru_del EXPORT_SYMBOL_GPL vmlinux 0x692a4f08 idr_alloc EXPORT_SYMBOL_GPL vmlinux 0x693e2f75 snd_soc_info_xr_sx EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x694c242d fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x6959c95a wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x6959c4af shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0x695bf5e9 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x695bfcb2 snd_soc_component_write EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x69667175 dev_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0x69679a53 nand_deselect_target EXPORT_SYMBOL_GPL vmlinux 0x696adc36 cleanup_srcu_struct EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init -EXPORT_SYMBOL_GPL vmlinux 0x6973b169 cpts_release EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6986113e snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL vmlinux 0x698cbd54 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x698ed107 get_kernel_pages EXPORT_SYMBOL_GPL vmlinux 0x69928b17 vp_modern_set_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x6994672b of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x6997a158 crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x69a7f0ae tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x69b8891a skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x69b6c259 regulator_bulk_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr -EXPORT_SYMBOL_GPL vmlinux 0x69e5b31f sdhci_abort_tuning 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 0x69ef0b80 spi_controller_suspend EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a12e97c meson_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a29223c regulator_unregister EXPORT_SYMBOL_GPL vmlinux 0x6a29e5d2 irq_force_affinity EXPORT_SYMBOL_GPL vmlinux 0x6a2a0e52 mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0x6a2a8916 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x6a35ec55 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x6a403934 sdio_align_size EXPORT_SYMBOL_GPL vmlinux 0x6a40d22c regulator_map_voltage_pickable_linear_range EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a47dbda crypto_unregister_skciphers EXPORT_SYMBOL_GPL vmlinux 0x6a4c1616 extcon_dev_unregister EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize EXPORT_SYMBOL_GPL vmlinux 0x6a76b101 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x6a776640 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x6a8978e7 devlink_dpipe_table_unregister EXPORT_SYMBOL_GPL vmlinux 0x6a94d0be dmaengine_desc_attach_metadata EXPORT_SYMBOL_GPL vmlinux 0x6a96ab02 pci_find_host_bridge EXPORT_SYMBOL_GPL vmlinux 0x6aa5e412 gen_pool_avail EXPORT_SYMBOL_GPL vmlinux 0x6ab1c8bb xas_store -EXPORT_SYMBOL_GPL vmlinux 0x6ad51bd6 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x6ab70344 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x6adbd7fa devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x6ade1296 fat_scan EXPORT_SYMBOL_GPL vmlinux 0x6ae00aa0 pci_destroy_slot EXPORT_SYMBOL_GPL vmlinux 0x6af8c6dc musb_writel -EXPORT_SYMBOL_GPL vmlinux 0x6b0eab47 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x6b175767 __sdhci_read_caps +EXPORT_SYMBOL_GPL vmlinux 0x6b0d7b1b __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x6b2b6deb do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x6b2c93ad dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x6b2e9093 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x6b2f01e1 spi_sync EXPORT_SYMBOL_GPL vmlinux 0x6b334acc trace_seq_bitmask EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b454e4a fwnode_property_get_reference_args EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux EXPORT_SYMBOL_GPL vmlinux 0x6b4a9c26 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x6b4c2c26 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6b4e2f4a __traceiter_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x6b50cae0 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x6b5519ae __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x6b574670 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x6b819e3b dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier EXPORT_SYMBOL_GPL vmlinux 0x6b89a52c serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x6ba4264f switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x6ba9f06d crypto_stats_init EXPORT_SYMBOL_GPL vmlinux 0x6bb8699b pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x6bbbf7ef fwnode_graph_get_remote_node EXPORT_SYMBOL_GPL vmlinux 0x6bbf8a0d edac_mc_find_csrow_by_page EXPORT_SYMBOL_GPL vmlinux 0x6bc531f1 fat_free_clusters EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init @@ -21284,68 +21259,63 @@ EXPORT_SYMBOL_GPL vmlinux 0x6bce93d8 list_lru_walk_node EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save EXPORT_SYMBOL_GPL vmlinux 0x6bd89e52 extcon_get_property_capability EXPORT_SYMBOL_GPL vmlinux 0x6bdd680c snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL vmlinux 0x6be4618d __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x6bf26024 fwnode_device_is_available EXPORT_SYMBOL_GPL vmlinux 0x6c253efd usb_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0x6c27650b dma_buf_pin -EXPORT_SYMBOL_GPL vmlinux 0x6c2883d2 perf_get_aux EXPORT_SYMBOL_GPL vmlinux 0x6c349465 serial8250_do_get_mctrl EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen EXPORT_SYMBOL_GPL vmlinux 0x6c43b737 ata_sff_queue_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert EXPORT_SYMBOL_GPL vmlinux 0x6c543046 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x6c561355 ahci_ops EXPORT_SYMBOL_GPL vmlinux 0x6c59822a debugfs_create_x16 EXPORT_SYMBOL_GPL vmlinux 0x6c59d27e kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x6c5a62ce device_del EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c5ae400 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x6c608658 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x6c6fe88d __devm_clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0x6c759157 of_usb_update_otg_caps EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work -EXPORT_SYMBOL_GPL vmlinux 0x6c8f5b2e icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x6c7c4687 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6c81d766 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain EXPORT_SYMBOL_GPL vmlinux 0x6cb04963 kthread_func EXPORT_SYMBOL_GPL vmlinux 0x6cb08158 lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0x6cbe6191 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x6cc9e1ac ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x6cd17e49 zs_pool_stats EXPORT_SYMBOL_GPL vmlinux 0x6ce12f94 nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0x6ce51c27 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x6cf7d4d4 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x6ce80997 cpufreq_cpu_put EXPORT_SYMBOL_GPL vmlinux 0x6d001d21 __phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d18fbbc bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0x6d1da1b3 iomap_bmap EXPORT_SYMBOL_GPL vmlinux 0x6d1da721 tps65217_clear_bits EXPORT_SYMBOL_GPL vmlinux 0x6d22292e rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x6d26611d snd_soc_of_parse_audio_routing EXPORT_SYMBOL_GPL vmlinux 0x6d2bd0a5 devm_mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3cb726 trace_event_raw_init EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit EXPORT_SYMBOL_GPL vmlinux 0x6d4e863b dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x6d5344d8 clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x6d56056d devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x6d5bc4db __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x6d62a7a9 da903x_read EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d81402f sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x6da7a0a5 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x6daa9bca device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x6d9e0d8e sdhci_cqe_irq EXPORT_SYMBOL_GPL vmlinux 0x6daca35e pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x6dba373f akcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dcb9952 mmc_pwrseq_register EXPORT_SYMBOL_GPL vmlinux 0x6dcd3bd1 usb_reset_configuration EXPORT_SYMBOL_GPL vmlinux 0x6dd1b8a7 parse_OID EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id EXPORT_SYMBOL_GPL vmlinux 0x6ddd1385 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x6de379a8 platform_device_add_resources EXPORT_SYMBOL_GPL vmlinux 0x6df178cd extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x6df6c4ba __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x6e0548ba crypto_stats_akcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e1a5ea2 sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x6e0cf0df br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0x6e201e68 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x6e23ab60 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x6e281bbf inet6_hash EXPORT_SYMBOL_GPL vmlinux 0x6e35e952 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x6e38976e i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index EXPORT_SYMBOL_GPL vmlinux 0x6e45226c __regmap_init_i2c EXPORT_SYMBOL_GPL vmlinux 0x6e4b346c virtqueue_enable_cb_delayed @@ -21355,55 +21325,68 @@ EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id EXPORT_SYMBOL_GPL vmlinux 0x6e83638d devm_ioremap_uc EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base EXPORT_SYMBOL_GPL vmlinux 0x6e8e4447 of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x6e94eeb2 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6eb55ad7 vfs_kern_mount EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ece8897 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x6ee81206 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6edb78ce devlink_port_type_eth_set EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom EXPORT_SYMBOL_GPL vmlinux 0x6ef289af snd_soc_component_compr_trigger EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6f01489e fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x6f07ea5c aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f14caf8 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0x6f1e4195 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x6f14e514 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x6f18d8df rtc_update_irq EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f26f6c1 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x6f24c172 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x6f3d5486 pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0x6f63fba0 tty_init_termios EXPORT_SYMBOL_GPL vmlinux 0x6f6c7f38 blk_req_needs_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0x6f765743 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x6f78da96 crypto_alg_mod_lookup EXPORT_SYMBOL_GPL vmlinux 0x6f7db544 class_compat_create_link EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action EXPORT_SYMBOL_GPL vmlinux 0x6f7f4cde pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6f9c84c9 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL vmlinux 0x6f8515bc dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x6f8dd1ee skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fac9b4e ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0x6faced88 pinctrl_pm_select_default_state EXPORT_SYMBOL_GPL vmlinux 0x6faf3353 sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0x6fb7e313 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x6fbe16de crypto_register_aead EXPORT_SYMBOL_GPL vmlinux 0x6fc82dc9 transport_add_device EXPORT_SYMBOL_GPL vmlinux 0x6fc94798 fsnotify_init_mark EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fdd480f sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x6fef5aef sdio_writel EXPORT_SYMBOL_GPL vmlinux 0x6ff14a02 crypto_hash_walk_done EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x70022cac unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x70038bf2 rdev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x7007bb0c device_register EXPORT_SYMBOL_GPL vmlinux 0x700936cc uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x701a884a sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0x701b54be iommu_detach_device EXPORT_SYMBOL_GPL vmlinux 0x7024fc1a snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL vmlinux 0x702c5451 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x703261cc crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x70339bad crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0x70361d4e __irq_alloc_domain_generic_chips EXPORT_SYMBOL_GPL vmlinux 0x703ac2db bpfilter_ops EXPORT_SYMBOL_GPL vmlinux 0x703cb0a2 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x7047d734 lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0x7052c84f pci_epf_add_vepf EXPORT_SYMBOL_GPL vmlinux 0x706352d2 uart_xchar_out EXPORT_SYMBOL_GPL vmlinux 0x7063a7e8 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x7066f9fc security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x70673630 call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x70748509 of_clk_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x70748b81 iommu_dev_enable_feature EXPORT_SYMBOL_GPL vmlinux 0x70900393 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x709fb339 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x70a12db3 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x709ea6b9 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x70a6cc2a task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0x70ac8aeb watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x70b5872f regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x70c2f0fe bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x70c32516 udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x70c49365 dm_internal_suspend_noflush EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated EXPORT_SYMBOL_GPL vmlinux 0x70c5d458 irq_chip_get_parent_state @@ -21412,49 +21395,45 @@ EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq EXPORT_SYMBOL_GPL vmlinux 0x70d90357 of_clk_set_defaults EXPORT_SYMBOL_GPL vmlinux 0x70de5338 mtd_unpoint EXPORT_SYMBOL_GPL vmlinux 0x70e24953 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x70eac092 bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0x70eae74c lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x70e6dac5 snd_soc_dapm_del_routes EXPORT_SYMBOL_GPL vmlinux 0x70f3181f usb_free_urb EXPORT_SYMBOL_GPL vmlinux 0x70f86d84 dev_pm_opp_put_clkname EXPORT_SYMBOL_GPL vmlinux 0x70f8b18a debugfs_lookup_and_remove -EXPORT_SYMBOL_GPL vmlinux 0x71001f3a get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x71171202 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x711ab807 __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x711b912f cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x71246380 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x7127db92 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x713907a1 snd_soc_of_parse_aux_devs EXPORT_SYMBOL_GPL vmlinux 0x7143b7b7 of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x7152a4cc ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x71553591 trace_array_put EXPORT_SYMBOL_GPL vmlinux 0x7156a86b wm831x_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x71592ed2 tpm_pcr_extend EXPORT_SYMBOL_GPL vmlinux 0x715a4f37 __wake_up_pollfree EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized EXPORT_SYMBOL_GPL vmlinux 0x71676781 tpm_default_chip EXPORT_SYMBOL_GPL vmlinux 0x716cffb5 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x71832b1d fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x716e192b snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7174ac83 regulator_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x719a5e41 musb_readw -EXPORT_SYMBOL_GPL vmlinux 0x719dbfad crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x719c900b crypto_stats_rng_generate EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71a49ee8 sfp_bus_add_upstream EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire -EXPORT_SYMBOL_GPL vmlinux 0x71af02c8 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x71abf5ba mmc_regulator_enable_vqmmc EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0x71b59675 tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71bdaacc sdio_writew EXPORT_SYMBOL_GPL vmlinux 0x71c0c4a7 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x71f6324e hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x71f94da2 sdhci_send_tuning EXPORT_SYMBOL_GPL vmlinux 0x71fdc9f7 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7216600f tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0x721a5dbc iomap_finish_ioends EXPORT_SYMBOL_GPL vmlinux 0x721dd348 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x72291038 devm_clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x72299880 devm_gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x7236bdf8 ftrace_set_filter_ip EXPORT_SYMBOL_GPL vmlinux 0x724ce2a2 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x724ec343 strp_done EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x726cbfd4 unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events EXPORT_SYMBOL_GPL vmlinux 0x72869ff1 mddev_init EXPORT_SYMBOL_GPL vmlinux 0x72885eaa simple_attr_open @@ -21463,87 +21442,90 @@ EXPORT_SYMBOL_GPL vmlinux 0x7292ec95 pci_vpd_alloc EXPORT_SYMBOL_GPL vmlinux 0x729c9ec2 usb_get_dr_mode EXPORT_SYMBOL_GPL vmlinux 0x729f689e spi_mem_adjust_op_size EXPORT_SYMBOL_GPL vmlinux 0x72b299e1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0x72b2c57e inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0x72ca8386 securityfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0x72cf77c8 power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x72e58850 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x72d5b70d mmc_sanitize EXPORT_SYMBOL_GPL vmlinux 0x72eb69f3 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x72f76615 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x72f0a72d ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0x72fd705c phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x7307b0a1 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x730be131 devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0x73119f17 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL vmlinux 0x73194aba spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x73248a03 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x7326591b snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x7336e2e2 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0x73396583 bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0x733de32c debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x734e393d device_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x73500ed8 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x736271f3 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x73565070 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x735c1834 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x736157cc ata_sas_port_stop EXPORT_SYMBOL_GPL vmlinux 0x7393140b __class_register EXPORT_SYMBOL_GPL vmlinux 0x739d9dba palmas_ext_control_req_config EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73a62cae device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0x73b68d11 devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73cb68bf devm_clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap EXPORT_SYMBOL_GPL vmlinux 0x73e73d56 rio_inb_pwrite_handler EXPORT_SYMBOL_GPL vmlinux 0x73ee86d6 mtd_ooblayout_free EXPORT_SYMBOL_GPL vmlinux 0x73f04acb devres_get -EXPORT_SYMBOL_GPL vmlinux 0x73f4699a msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0x740137cd em_pd_get EXPORT_SYMBOL_GPL vmlinux 0x74066cb1 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x740ef743 hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0x74105b46 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x741323ec crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x74140e78 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x7417532f __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0x741f23d7 md_run -EXPORT_SYMBOL_GPL vmlinux 0x7437c72d crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x7429404a sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x7439d8e5 unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x74501c80 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x74577f44 cpufreq_register_governor EXPORT_SYMBOL_GPL vmlinux 0x7459a3ec cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x745a021d dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x7469dbaa of_modalias_node EXPORT_SYMBOL_GPL vmlinux 0x7469e50c pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0x746e2ea8 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x74787c17 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x74792d3a gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x747a2a16 mbox_client_txdone EXPORT_SYMBOL_GPL vmlinux 0x74887868 nand_erase_op EXPORT_SYMBOL_GPL vmlinux 0x749bcd45 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x749bf11d fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x749eabef snd_soc_new_compress +EXPORT_SYMBOL_GPL vmlinux 0x74a2487c switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on EXPORT_SYMBOL_GPL vmlinux 0x74c163e0 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x74d0008a gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x74ef1787 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x75030c56 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x74ca600b acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x74e8728c gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x74f1933a __traceiter_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x7507166a usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x750a4d8f tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0x7513b5ec __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x75167478 gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7523d7a2 gpiochip_line_is_irq EXPORT_SYMBOL_GPL vmlinux 0x752acfb1 da9055_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x753e7420 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x7546d646 of_pwm_xlate_with_flags EXPORT_SYMBOL_GPL vmlinux 0x754b95e6 i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0x754cbcbe rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x755069f2 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x7558cdea sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x755ae3c8 trusted_tpm_send EXPORT_SYMBOL_GPL vmlinux 0x756f18ee serial8250_get_port EXPORT_SYMBOL_GPL vmlinux 0x7588a91c mtd_read EXPORT_SYMBOL_GPL vmlinux 0x758b383c blk_queue_max_zone_append_sectors EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only EXPORT_SYMBOL_GPL vmlinux 0x75a3c746 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x75af006b iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0x75b05355 of_address_to_resource EXPORT_SYMBOL_GPL vmlinux 0x75b0b38d pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x75b47bed sdhci_set_clock -EXPORT_SYMBOL_GPL vmlinux 0x75b829a7 spi_replace_transfers EXPORT_SYMBOL_GPL vmlinux 0x75bf6cc0 is_binary_blacklisted EXPORT_SYMBOL_GPL vmlinux 0x75cbe020 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x75cc9c4e gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove -EXPORT_SYMBOL_GPL vmlinux 0x75dee88a tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x75dfdd98 irq_create_fwspec_mapping EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75f4edb6 add_swap_extent EXPORT_SYMBOL_GPL vmlinux 0x75f53f81 dm_bio_from_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x75f93ba0 snd_card_ref -EXPORT_SYMBOL_GPL vmlinux 0x75f99f03 ip_valid_fib_dump_req EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x7647475f gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x761beae1 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x76622ba0 thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x7665ee57 ehci_suspend EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key EXPORT_SYMBOL_GPL vmlinux 0x766d729c pinctrl_utils_free_map @@ -21551,13 +21533,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x766e1c43 virtqueue_get_used_addr EXPORT_SYMBOL_GPL vmlinux 0x7675b5ed devres_find EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier EXPORT_SYMBOL_GPL vmlinux 0x768372a9 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x76a3404a netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0x76ab21db irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x76b2cc5c sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x76b2048b cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x76b52fb9 fuse_dev_fiq_ops EXPORT_SYMBOL_GPL vmlinux 0x76c5793b driver_deferred_probe_check_state EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76defc4a fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x76e046e1 devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0x76e10a88 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x76e82270 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x76e83317 device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x770295da dma_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0x7710e618 rockchip_pcie_enable_clocks @@ -21566,146 +21551,142 @@ EXPORT_SYMBOL_GPL vmlinux 0x771e567e virtio_max_dma_size EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register EXPORT_SYMBOL_GPL vmlinux 0x772ad815 pinctrl_parse_index_with_args EXPORT_SYMBOL_GPL vmlinux 0x772e2c26 xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x77321086 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x77335ab6 ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0x773dbfae ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux EXPORT_SYMBOL_GPL vmlinux 0x774a1d44 tty_buffer_set_limit EXPORT_SYMBOL_GPL vmlinux 0x7755d105 list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister EXPORT_SYMBOL_GPL vmlinux 0x775c66e9 dev_pm_set_dedicated_wake_irq_reverse -EXPORT_SYMBOL_GPL vmlinux 0x776ae7d8 phy_led_trigger_change_speed EXPORT_SYMBOL_GPL vmlinux 0x776efd2b serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x77708e4c ata_port_abort EXPORT_SYMBOL_GPL vmlinux 0x77786606 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x779181a0 wait_for_stable_page EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x7797d5a4 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7794740d security_path_symlink EXPORT_SYMBOL_GPL vmlinux 0x7797d873 __tracepoint_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x77988e9c tc3589x_block_write EXPORT_SYMBOL_GPL vmlinux 0x779a1411 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x77a74510 regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string EXPORT_SYMBOL_GPL vmlinux 0x77d61b84 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x77d6844d sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0x77e58ee0 clockevents_config_and_register EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77e82a98 crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0x77ea9a7a dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x78314d44 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x77f2cb1f mmput +EXPORT_SYMBOL_GPL vmlinux 0x77fa6738 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0x77ffd419 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x782f965e alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0x783aef18 fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0x784a0004 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7850295b regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x78531951 omap_iommu_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x78586adf blk_mq_complete_request_remote EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x786cc698 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x786d13c5 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL vmlinux 0x786ff5d5 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x785db86d devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x786e412f strp_done +EXPORT_SYMBOL_GPL vmlinux 0x7877522e strp_stop EXPORT_SYMBOL_GPL vmlinux 0x7884d2f1 tpm_is_tpm2 EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot EXPORT_SYMBOL_GPL vmlinux 0x78c006bc usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x78c5f679 ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0x78d5e0c3 pm_runtime_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x78dc43a8 governor_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match EXPORT_SYMBOL_GPL vmlinux 0x78e84a8c rio_mport_read_config_16 EXPORT_SYMBOL_GPL vmlinux 0x78e8a483 snd_devm_card_new -EXPORT_SYMBOL_GPL vmlinux 0x78e900f0 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x78ec9b89 dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x78eced2d ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x78f1b003 crypto_shoot_alg EXPORT_SYMBOL_GPL vmlinux 0x78f1cdd7 meson8_aobus_parse_dt_extra EXPORT_SYMBOL_GPL vmlinux 0x78f85094 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x78fc3e5c dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0x7900a6be sysfs_remove_files EXPORT_SYMBOL_GPL vmlinux 0x7903e078 usb_free_streams EXPORT_SYMBOL_GPL vmlinux 0x79071dba blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x79165405 synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0x791cd1b5 pinmux_generic_get_function_groups EXPORT_SYMBOL_GPL vmlinux 0x79306200 __fput_sync +EXPORT_SYMBOL_GPL vmlinux 0x793266ae crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0x793a93dc raw_v6_hashinfo EXPORT_SYMBOL_GPL vmlinux 0x793b14ac irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x794105c7 regulator_bulk_enable 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 0x7952b0bf sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7958c9ce fib6_check_nexthop EXPORT_SYMBOL_GPL vmlinux 0x795ede44 of_pm_clk_add_clks EXPORT_SYMBOL_GPL vmlinux 0x79606e58 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x7960cd28 cpts_misc_interrupt EXPORT_SYMBOL_GPL vmlinux 0x797cba75 nanddev_mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x7980f1ed add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0x798a6b50 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x79b1182a meson_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x79b77332 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x79b8e414 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x79b89110 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x79be905b icc_provider_del EXPORT_SYMBOL_GPL vmlinux 0x79c9a378 pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x79d3dddf inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x79d6e39e crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79ea0538 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x79eb6bdc device_show_bool EXPORT_SYMBOL_GPL vmlinux 0x7a00e4b9 handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0x7a07a8b4 sdhci_cqe_irq EXPORT_SYMBOL_GPL vmlinux 0x7a091c59 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x7a2dd5be gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7a1a180e snd_soc_card_remove_dai_link EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x7a34c3a4 event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0x7a3fd957 __register_mtd_parser EXPORT_SYMBOL_GPL vmlinux 0x7a41b9f2 usb_ep_set_maxpacket_limit EXPORT_SYMBOL_GPL vmlinux 0x7a48d06c cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7a4c236e regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x7a72b261 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x7a5a9d54 sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a75df40 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x7a79199d tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x7a7f1396 zs_malloc EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie EXPORT_SYMBOL_GPL vmlinux 0x7a81b6db tps65912_device_exit EXPORT_SYMBOL_GPL vmlinux 0x7a832dc4 regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x7a8bdd9c net_selftest -EXPORT_SYMBOL_GPL vmlinux 0x7a932538 ata_std_qc_defer EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7aa2a5c2 skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0x7ab14677 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x7ab27cd2 acomp_request_free EXPORT_SYMBOL_GPL vmlinux 0x7ab8ecc6 driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register EXPORT_SYMBOL_GPL vmlinux 0x7ac1a242 dev_pm_opp_get_max_transition_latency EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7acd7266 xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x7acdd8e9 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x7ace97f7 __clk_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ae13b91 ahci_pmp_retry_srst_ops EXPORT_SYMBOL_GPL vmlinux 0x7aefd7b6 rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x7af24d35 ahci_error_handler EXPORT_SYMBOL_GPL vmlinux 0x7b0b3d48 dma_get_any_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b192760 snd_soc_jack_add_gpiods EXPORT_SYMBOL_GPL vmlinux 0x7b1e2ccd fuse_conn_get EXPORT_SYMBOL_GPL vmlinux 0x7b29d77c of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x7b2f0fa4 pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x7b3a3df0 devres_release EXPORT_SYMBOL_GPL vmlinux 0x7b3c9c14 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x7b3df38d sdio_memcpy_fromio EXPORT_SYMBOL_GPL vmlinux 0x7b462982 of_add_property EXPORT_SYMBOL_GPL vmlinux 0x7b475bdb dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x7b55b858 fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x7b5da0cb mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x7b5df207 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x7b68d7a2 devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x7b7662fa ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x7b787e75 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x7b89098d crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7b8ae27e sdio_readsb EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode EXPORT_SYMBOL_GPL vmlinux 0x7b93c7de store_sampling_rate EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b99a18a l3mdev_update_flow EXPORT_SYMBOL_GPL vmlinux 0x7b9c0c21 dma_buf_detach EXPORT_SYMBOL_GPL vmlinux 0x7ba06fd8 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x7ba8f9ff crypto_stats_decompress EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bb4d526 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x7bb50cae spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x7bbb321a ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0x7bc2392f usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x7bc3e659 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x7bc639a9 sdhci_add_host EXPORT_SYMBOL_GPL vmlinux 0x7bd5592f irq_domain_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x7bd83e37 of_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0x7bdd034f usb_poison_urb EXPORT_SYMBOL_GPL vmlinux 0x7bdef8e4 dev_attr_ncq_prio_supported EXPORT_SYMBOL_GPL vmlinux 0x7be89624 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL vmlinux 0x7c0369a2 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x7c06c2a0 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7c08c24e gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0x7c2c8b8a devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x7c30a3aa unregister_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c567311 bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0x7c5968da disable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x7c715840 pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0x7c80a889 usb_disable_xhci_ports @@ -21713,15 +21694,21 @@ EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare EXPORT_SYMBOL_GPL vmlinux 0x7c9ebd25 nand_prog_page_op EXPORT_SYMBOL_GPL vmlinux 0x7c9f01dc smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x7ca0ec7b __traceiter_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x7ca13957 usb_phy_set_charger_current EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence EXPORT_SYMBOL_GPL vmlinux 0x7cb6cdd6 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x7cb8af45 platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x7cbd4107 led_init_core EXPORT_SYMBOL_GPL vmlinux 0x7cbd7b9b mtk_pinconf_adv_pull_set -EXPORT_SYMBOL_GPL vmlinux 0x7cd53b85 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x7cd19445 gpiod_is_active_low EXPORT_SYMBOL_GPL vmlinux 0x7cd5ce67 pci_epf_unbind EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ce1a472 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x7ce46ed8 skcipher_alloc_instance_simple EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf215af snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL vmlinux 0x7cf484d7 __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x7cfa3c77 serdev_device_write EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize EXPORT_SYMBOL_GPL vmlinux 0x7d022b5d mmu_interval_read_begin @@ -21729,110 +21716,117 @@ EXPORT_SYMBOL_GPL vmlinux 0x7d07117e sysfs_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0x7d176244 tty_standard_install EXPORT_SYMBOL_GPL vmlinux 0x7d1833b4 debugfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x7d21646d devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7d2740aa bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x7d2d58e4 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL vmlinux 0x7d3734ac cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x7d43d840 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x7d2de2a9 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x7d4718bf crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x7d499929 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x7d516f67 rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d772623 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x7d7d8580 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x7da11557 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x7db1a426 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x7d86e510 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x7d951c89 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x7d96f097 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x7d9ef191 device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x7dbe3aeb ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier EXPORT_SYMBOL_GPL vmlinux 0x7de12962 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7de330ec tcp_ca_openreq_child EXPORT_SYMBOL_GPL vmlinux 0x7de8179d tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0x7df7d44e serdev_device_set_parity EXPORT_SYMBOL_GPL vmlinux 0x7e169096 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x7e230578 __mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk EXPORT_SYMBOL_GPL vmlinux 0x7e3d6b86 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x7e42bfe2 mmput EXPORT_SYMBOL_GPL vmlinux 0x7e434ad5 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x7e57045b fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL vmlinux 0x7e60f371 crypto_alloc_skcipher EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6b7427 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x7e7e0a2c regulator_suspend_disable EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e85f153 crypto_unregister_shashes EXPORT_SYMBOL_GPL vmlinux 0x7e8eb73a device_create_managed_software_node EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7ea95f25 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x7e98dd8e ip_fib_metrics_init EXPORT_SYMBOL_GPL vmlinux 0x7eaf69bf vp_modern_get_num_queues EXPORT_SYMBOL_GPL vmlinux 0x7eb13f1d debugfs_create_u32 EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7eb93ca9 ahci_platform_init_host EXPORT_SYMBOL_GPL vmlinux 0x7ebf6686 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x7ec4a134 devm_device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x7ec881e6 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7ed4d36b ping_close EXPORT_SYMBOL_GPL vmlinux 0x7ed524c6 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x7ed53824 i2c_client_type EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7f0a518a __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0x7f0f4dc4 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x7f15eb2f skcipher_walk_done EXPORT_SYMBOL_GPL vmlinux 0x7f2623ee mm_account_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0x7f42281c wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x7f45b059 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x7f464b91 snd_soc_dapm_new_widgets EXPORT_SYMBOL_GPL vmlinux 0x7f4a86b4 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x7f4e2698 xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0x7f5d602f tps6586x_get_version EXPORT_SYMBOL_GPL vmlinux 0x7f613310 extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0x7f6288bc tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f828c19 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f85189b fw_devlink_purge_absent_suppliers EXPORT_SYMBOL_GPL vmlinux 0x7f8dd2bb bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x7f9ad0f9 icc_node_add EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops EXPORT_SYMBOL_GPL vmlinux 0x7fb33f0e cros_ec_get_sensor_count EXPORT_SYMBOL_GPL vmlinux 0x7fd47993 dw_pcie_host_init EXPORT_SYMBOL_GPL vmlinux 0x7fe0b938 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x7ff536ea phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x7ff5f9f8 dev_pm_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x7ff859c0 subsys_dev_iter_init EXPORT_SYMBOL_GPL vmlinux 0x7ff988a2 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x7ffa0c68 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x7fff0885 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x8004640e platform_irqchip_probe EXPORT_SYMBOL_GPL vmlinux 0x801598a4 usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x80176d89 devfreq_get_devfreq_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x801eb65d dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x8020980c regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x802150cf sdhci_start_tuning EXPORT_SYMBOL_GPL vmlinux 0x8022a040 pci_load_and_free_saved_state EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical EXPORT_SYMBOL_GPL vmlinux 0x8043fe09 fuse_conn_put EXPORT_SYMBOL_GPL vmlinux 0x804491c1 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x80516cbe snd_soc_card_jack_new EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put EXPORT_SYMBOL_GPL vmlinux 0x80584211 misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x806633a4 hwmon_notify_event EXPORT_SYMBOL_GPL vmlinux 0x80746ec6 btree_visitor EXPORT_SYMBOL_GPL vmlinux 0x807835f6 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x807db544 devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0x8085a60d of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8089b6fc device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80a54ca9 __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x80b17b75 omap_get_plat_info -EXPORT_SYMBOL_GPL vmlinux 0x80bd5303 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x80b8b091 dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x80bd84bc sysfs_unmerge_group EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c8f15d ata_host_alloc EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free EXPORT_SYMBOL_GPL vmlinux 0x80df62e8 nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0x80e170f4 snd_soc_component_disable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0x80e4d58d pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x80f2b390 __cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x80fb081a dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0x80fe05b3 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x8106a9d6 dev_set_name EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify EXPORT_SYMBOL_GPL vmlinux 0x811df813 misc_cg_try_charge EXPORT_SYMBOL_GPL vmlinux 0x812d565d regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x812e9033 wb_writeout_inc EXPORT_SYMBOL_GPL vmlinux 0x812e93c1 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x81314c41 snd_soc_jack_free_gpios EXPORT_SYMBOL_GPL vmlinux 0x8135b757 pkcs7_get_content_data EXPORT_SYMBOL_GPL vmlinux 0x813a88c7 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x813ce360 regmap_write_async EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl EXPORT_SYMBOL_GPL vmlinux 0x816258a4 dma_buf_export EXPORT_SYMBOL_GPL vmlinux 0x8166d593 irq_domain_update_bus_token EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits EXPORT_SYMBOL_GPL vmlinux 0x816bb401 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x816e1889 dev_pm_qos_flags EXPORT_SYMBOL_GPL vmlinux 0x816eb665 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x817426bd __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x8179d71a snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0x817d4635 devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence EXPORT_SYMBOL_GPL vmlinux 0x818973cb of_prop_next_string EXPORT_SYMBOL_GPL vmlinux 0x81971397 soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x819b3b52 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0x8198063f udp4_hwcsum EXPORT_SYMBOL_GPL vmlinux 0x819fe250 iommu_alloc_resv_region EXPORT_SYMBOL_GPL vmlinux 0x81a19802 pci_epc_set_bar EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe @@ -21843,377 +21837,364 @@ EXPORT_SYMBOL_GPL vmlinux 0x81ee81f0 percpu_ref_reinit EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x8202b650 irq_set_affinity EXPORT_SYMBOL_GPL vmlinux 0x82069f7b ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x820721b4 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x820dedd3 devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8210e379 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x8217fc27 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0x821ec7f1 clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x82222c1f perf_event_period EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x822b10bf sdhci_pltfm_unregister EXPORT_SYMBOL_GPL vmlinux 0x82354023 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x823aae95 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL vmlinux 0x823f8bad snd_soc_new_compress EXPORT_SYMBOL_GPL vmlinux 0x824157ea serial8250_rpm_get_tx EXPORT_SYMBOL_GPL vmlinux 0x8242dc63 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x824bc108 unregister_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x8262a4dd devm_hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x826e4324 mtk_hw_set_value EXPORT_SYMBOL_GPL vmlinux 0x82756032 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x829804df icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x8290f0a2 pwm_put EXPORT_SYMBOL_GPL vmlinux 0x829887a8 devm_add_action EXPORT_SYMBOL_GPL vmlinux 0x82a59040 tty_get_icount EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82aede5a i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x82bce7a3 sdio_readl EXPORT_SYMBOL_GPL vmlinux 0x82cdc7dd dma_can_mmap EXPORT_SYMBOL_GPL vmlinux 0x82d4a2ec pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x82d675b4 sdio_claim_host EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82e0e27e crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0x82e22c44 srcu_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0x82ece56f virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x82ed89cd snd_soc_get_dai_name EXPORT_SYMBOL_GPL vmlinux 0x82f7b398 power_supply_get_property_from_supplier EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x83023534 serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8304c782 call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0x830b1b48 iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x8313a1c7 sdhci_resume_host EXPORT_SYMBOL_GPL vmlinux 0x83167d84 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x8319f95b device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x83172240 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x831d9130 devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x831f186a sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x833d7871 devlink_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x834fff2d devfreq_event_get_edev_count EXPORT_SYMBOL_GPL vmlinux 0x839303b1 subsys_dev_iter_next EXPORT_SYMBOL_GPL vmlinux 0x83971642 enable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x839830c5 rio_unmap_inb_region EXPORT_SYMBOL_GPL vmlinux 0x839eb1d3 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x83a4951f scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x83a7a8df peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0x83af7d93 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x83d717e3 cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x83d718af devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x83f0863d rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x83ded9f6 spi_async EXPORT_SYMBOL_GPL vmlinux 0x83f95257 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x83fe8e50 __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x84051646 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x8405901f device_wakeup_disable EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x84116456 __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x8411fc6e qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0x8417a372 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x8423cc31 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x8423dbe1 sdhci_set_power_noreg EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x84311af0 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x8441b411 put_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x844c8ed4 fscrypt_ioctl_get_nonce EXPORT_SYMBOL_GPL vmlinux 0x844cb904 mtk_mutex_remove_comp +EXPORT_SYMBOL_GPL vmlinux 0x844d8f1d ata_scsi_slave_destroy EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno EXPORT_SYMBOL_GPL vmlinux 0x845aa3dc lpddr2_jedec_timings EXPORT_SYMBOL_GPL vmlinux 0x845b2069 usb_show_dynids EXPORT_SYMBOL_GPL vmlinux 0x845bf795 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x845c4dba snd_soc_add_component_controls EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy EXPORT_SYMBOL_GPL vmlinux 0x8462771c dev_pm_get_subsys_data EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x84633f12 ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0x84831520 fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x84852935 kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0x848e0dab platform_find_device_by_driver EXPORT_SYMBOL_GPL vmlinux 0x84908398 dma_mmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x8497fe49 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x849b2c40 filemap_range_needs_writeback EXPORT_SYMBOL_GPL vmlinux 0x84a615c2 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x84a854e8 spi_bus_unlock EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert EXPORT_SYMBOL_GPL vmlinux 0x84c1af09 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x84d1dea8 __put_net EXPORT_SYMBOL_GPL vmlinux 0x84db87bf led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x84de6223 crypto_stats_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x84fc878c mtd_del_partition EXPORT_SYMBOL_GPL vmlinux 0x8502cc14 rio_unregister_scan EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x85174846 snd_soc_lookup_component +EXPORT_SYMBOL_GPL vmlinux 0x8519cfd9 __traceiter_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8521edb5 inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0x85286ef7 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x854953d6 device_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0x854e4356 fuse_send_init EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put EXPORT_SYMBOL_GPL vmlinux 0x85555f7a sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x856155be gpiod_get_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x85647219 alarm_init EXPORT_SYMBOL_GPL vmlinux 0x8566ec0c devm_hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0x856d544f clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array EXPORT_SYMBOL_GPL vmlinux 0x857a390d exportfs_decode_fh EXPORT_SYMBOL_GPL vmlinux 0x857af050 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x857db2cd unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x857f6555 sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0x8583cefb pci_aer_clear_nonfatal_status EXPORT_SYMBOL_GPL vmlinux 0x858b475c devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8593a89a __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0x85a847f2 omap_iommu_save_ctx -EXPORT_SYMBOL_GPL vmlinux 0x85ab136c ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0x85ac18e2 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0x85bc0a2d ata_dev_pair EXPORT_SYMBOL_GPL vmlinux 0x85bdf7d8 pm_runtime_force_resume EXPORT_SYMBOL_GPL vmlinux 0x85c29950 dev_pm_opp_of_register_em EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0x85d230a7 snd_soc_of_parse_node_prefix EXPORT_SYMBOL_GPL vmlinux 0x85d48f6e devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x85d70f33 ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0x85de3485 devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x85e24d32 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x85dec28f pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0x85f56a99 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x85f77794 ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0x85feed0a regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x85feed24 ahci_reset_em EXPORT_SYMBOL_GPL vmlinux 0x860a2eab bch_decode EXPORT_SYMBOL_GPL vmlinux 0x860cc51f gpiod_export EXPORT_SYMBOL_GPL vmlinux 0x860e5d36 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x861eabca __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x862e68b3 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0x8632e0fc metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0x863aa7fd transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x86442f67 cpts_register -EXPORT_SYMBOL_GPL vmlinux 0x86459d35 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x8657d1c2 ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x865d43d3 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x865e0b0b bpf_map_inc EXPORT_SYMBOL_GPL vmlinux 0x86643263 bd_unlink_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x86733055 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x8674c804 cpts_create EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0x867b2509 usb_hcd_giveback_urb EXPORT_SYMBOL_GPL vmlinux 0x867f93fe nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x8683ddaf of_pwm_xlate_with_flags EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get EXPORT_SYMBOL_GPL vmlinux 0x8692a0a5 pinctrl_find_and_add_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x869c9a24 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x869d4a48 set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x86a22d97 musb_set_peripheral +EXPORT_SYMBOL_GPL vmlinux 0x86b1ab1a snd_dmaengine_pcm_register EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x86c7d9ad sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86dc97ef ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x86c9952d ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86e33120 ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0x86e56bb0 rio_mport_get_physefb EXPORT_SYMBOL_GPL vmlinux 0x86e7a634 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x86f08563 regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f84760 is_current_mnt_ns EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x870c23bd crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x870d9782 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x87092a45 __traceiter_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x872c7577 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x8731a70a switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x873f41c1 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x874862a9 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x8747185c ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0x8751fd6f irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x87788404 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x876278c2 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x87691fb6 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8783fdcd modify_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x87865486 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0x878ce201 ata_cable_80wire EXPORT_SYMBOL_GPL vmlinux 0x879f84ab irq_domain_disconnect_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x87b20d3a gov_attr_set_put EXPORT_SYMBOL_GPL vmlinux 0x87bd385c of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x87bec923 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x87c320e2 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x87bd3be6 sdhci_set_power_and_bus_voltage EXPORT_SYMBOL_GPL vmlinux 0x87c45eaa blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x87c7283f sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0x87e6f034 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x87c83c5d dpcm_be_dai_trigger EXPORT_SYMBOL_GPL vmlinux 0x87f7b21d pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x87fa90cf devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x87ffc0d7 crypto_get_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x8805a073 blocking_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x88094d40 iommu_aux_get_pasid EXPORT_SYMBOL_GPL vmlinux 0x880ef295 property_entries_dup EXPORT_SYMBOL_GPL vmlinux 0x8810e36e pci_bridge_emul_conf_read -EXPORT_SYMBOL_GPL vmlinux 0x881374b5 regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0x881c3a96 pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0x881c7ee8 ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0x882077d5 usb_ep_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x8832e9d4 device_move -EXPORT_SYMBOL_GPL vmlinux 0x883ba22d spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x883f5b1a rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0x884c07ce usb_add_gadget_udc EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x8857b08f gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0x88606166 ata_sff_prereset EXPORT_SYMBOL_GPL vmlinux 0x887904ee kernfs_get EXPORT_SYMBOL_GPL vmlinux 0x888dbd7a snd_pcm_fill_iec958_consumer EXPORT_SYMBOL_GPL vmlinux 0x889b14d5 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x889f021a mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active EXPORT_SYMBOL_GPL vmlinux 0x88ac55c5 iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x88b44964 xfrm_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x88b7e096 fb_deferred_io_fsync EXPORT_SYMBOL_GPL vmlinux 0x88cb3964 __dax_driver_register EXPORT_SYMBOL_GPL vmlinux 0x88cdd928 cpufreq_dbs_governor_exit EXPORT_SYMBOL_GPL vmlinux 0x88d337c4 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x88e87e71 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x88fee389 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x88dffcd9 crypto_register_alg EXPORT_SYMBOL_GPL vmlinux 0x88ffde68 mtk_pinconf_drive_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0x8901981b cpufreq_dbs_governor_limits EXPORT_SYMBOL_GPL vmlinux 0x891dd4ea irq_gc_ack_set_bit EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89254e68 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x89280cea __traceiter_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x8931884c __rio_local_read_config_16 EXPORT_SYMBOL_GPL vmlinux 0x89351deb max8997_write_reg EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x893f002f seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0x8940e462 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x8944f84b raw_abort EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put EXPORT_SYMBOL_GPL vmlinux 0x894c396e add_mtd_blktrans_dev EXPORT_SYMBOL_GPL vmlinux 0x894de02d of_dma_xlate_by_chan_id EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x895c0c7a clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x8962cefc yield_to EXPORT_SYMBOL_GPL vmlinux 0x896dee2c rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0x896df4e1 ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0x896f275c __sbitmap_queue_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x897ed955 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8990c570 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8990d127 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x899fb656 devlink_params_publish EXPORT_SYMBOL_GPL vmlinux 0x89a5e795 of_get_regulator_init_data EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify EXPORT_SYMBOL_GPL vmlinux 0x89bfe270 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x89c6df48 ahci_stop_engine EXPORT_SYMBOL_GPL vmlinux 0x89cdae3d __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x89df07f1 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89e2f1c4 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x89e3f317 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x89e63ecd gpiod_get_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x8a0d9077 devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0x8a111b1f platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8a12f6b8 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x8a28eb27 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x8a182607 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x8a1f6e6f wm8350_block_read EXPORT_SYMBOL_GPL vmlinux 0x8a296863 usb_register_device_driver EXPORT_SYMBOL_GPL vmlinux 0x8a3a59f9 kernel_kobj EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low EXPORT_SYMBOL_GPL vmlinux 0x8a414b10 efivar_entry_add EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a5d52e6 validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a69ad3b sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0x8a64bbeb platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8a73332f device_del EXPORT_SYMBOL_GPL vmlinux 0x8a812555 fat_build_inode EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a85796c regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8a859af4 crypto_stats_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x8a92f800 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x8a9a6905 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x8a9dc4ea ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x8aa048cb tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0x8aa3149f __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x8aa1e4e7 devm_regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x8aa31c15 mtd_ooblayout_get_eccbytes EXPORT_SYMBOL_GPL vmlinux 0x8aa7b6af ahci_platform_ops EXPORT_SYMBOL_GPL vmlinux 0x8aad89f7 exynos_get_pmu_regmap EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac64790 gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x8ac7447e sata_pmp_qc_defer_cmd_switch EXPORT_SYMBOL_GPL vmlinux 0x8ad4a7d5 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x8aed1c09 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x8ad7b026 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x8adda6f6 console_drivers EXPORT_SYMBOL_GPL vmlinux 0x8af955b0 usb_check_bulk_endpoints EXPORT_SYMBOL_GPL vmlinux 0x8b13cc4f i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x8b144b3d ata_sas_port_alloc EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b34aeef gpiochip_enable_irq EXPORT_SYMBOL_GPL vmlinux 0x8b3f49e9 input_ff_erase EXPORT_SYMBOL_GPL vmlinux 0x8b529ce4 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x8b55b077 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0x8b56e085 usb_string EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release -EXPORT_SYMBOL_GPL vmlinux 0x8b69c183 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x8b809959 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x8b8ab992 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x8b8c7541 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x8b7558e4 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x8b76a220 snd_soc_component_read EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages EXPORT_SYMBOL_GPL vmlinux 0x8bae44bf badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0x8bb23eb5 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x8bc5adfb ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x8bc64e14 l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0x8bd25958 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x8bd2b626 ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x8bd456a6 devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x8be28777 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x8bf2cb77 __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail EXPORT_SYMBOL_GPL vmlinux 0x8c104e50 devm_clk_get_enabled EXPORT_SYMBOL_GPL vmlinux 0x8c153fe3 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0x8c16a8fa cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0x8c19ea09 sbitmap_queue_resize EXPORT_SYMBOL_GPL vmlinux 0x8c1a7b2f devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x8c3931e5 desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0x8c39a209 serial8250_clear_and_reinit_fifos EXPORT_SYMBOL_GPL vmlinux 0x8c40196c mtd_kmalloc_up_to EXPORT_SYMBOL_GPL vmlinux 0x8c4b1e05 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x8c50533e replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x8c4c49a4 regulator_is_supported_voltage EXPORT_SYMBOL_GPL vmlinux 0x8c50e85c ata_bmdma32_port_ops EXPORT_SYMBOL_GPL vmlinux 0x8c604a75 snd_soc_dapm_get_pin_switch EXPORT_SYMBOL_GPL vmlinux 0x8c6c3ad8 snd_compress_new EXPORT_SYMBOL_GPL vmlinux 0x8c6f3821 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x8c72f414 snd_soc_component_enable_pin EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c76c2a5 i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0x8c7cd63a rio_mport_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c8bfadf posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8c943a11 hisi_reset_init EXPORT_SYMBOL_GPL vmlinux 0x8c95450b debugfs_create_file EXPORT_SYMBOL_GPL vmlinux 0x8ca72e0b dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x8cc34267 trace_define_field EXPORT_SYMBOL_GPL vmlinux 0x8cc655fd scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0x8ce65f78 xhci_resume EXPORT_SYMBOL_GPL vmlinux 0x8cec01fe get_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0x8cfa0fa5 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x8d136d3d devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x8d06609d regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x8d0822df udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x8d20046d xhci_add_endpoint EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d33357a ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x8d48ae2d stmpe_set_bits EXPORT_SYMBOL_GPL vmlinux 0x8d615c1d snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL vmlinux 0x8d6c80be switchdev_handle_fdb_del_to_device -EXPORT_SYMBOL_GPL vmlinux 0x8d75e44e security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0x8d7d034d rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x8d63c03f scsi_flush_work EXPORT_SYMBOL_GPL vmlinux 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL vmlinux 0x8d9f6635 snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL vmlinux 0x8da62660 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x8d8f9908 netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0x8db7d6cf dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x8dba1e2c wakeup_source_unregister EXPORT_SYMBOL_GPL vmlinux 0x8dc11669 lpddr2_jedec_addressing_table EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0x8dd4220f tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x8ddeca0e wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x8de493df __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x8dd62dc8 wm8350_clear_bits EXPORT_SYMBOL_GPL vmlinux 0x8df3245b spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8dfec4e7 device_show_ulong EXPORT_SYMBOL_GPL vmlinux 0x8e1774c0 component_add EXPORT_SYMBOL_GPL vmlinux 0x8e18c321 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x8e3d10c6 regmap_can_raw_write EXPORT_SYMBOL_GPL vmlinux 0x8e43beec iommu_device_sysfs_add EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface 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 0x8e5400e4 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x8e54fd3d vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0x8e5ac46c pl08x_filter_id EXPORT_SYMBOL_GPL vmlinux 0x8e5bc30a register_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0x8e5d9eee ata_sas_port_init EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count EXPORT_SYMBOL_GPL vmlinux 0x8e756f75 pci_epc_clear_bar EXPORT_SYMBOL_GPL vmlinux 0x8e795c2d relay_open +EXPORT_SYMBOL_GPL vmlinux 0x8e816367 perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0x8e8ca9cb tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0x8e966f02 __reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x8e9b2306 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x8eaabab8 sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0x8ea9d468 sdhci_calc_clk EXPORT_SYMBOL_GPL vmlinux 0x8eb0ec4f mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x8eb84ff3 efivar_entry_iter EXPORT_SYMBOL_GPL vmlinux 0x8ebf93f6 dev_coredumpv EXPORT_SYMBOL_GPL vmlinux 0x8ecfab36 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x8ee9cb00 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x8ed0ae86 of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8ef33800 device_link_remove EXPORT_SYMBOL_GPL vmlinux 0x8efc9fc0 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x8efca559 crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features EXPORT_SYMBOL_GPL vmlinux 0x8f033a9a class_destroy EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp EXPORT_SYMBOL_GPL vmlinux 0x8f0a9f48 devm_regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x8f11fa2f pinctrl_utils_add_map_mux EXPORT_SYMBOL_GPL vmlinux 0x8f15044a dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0x8f19c8d8 sdhci_pltfm_unregister EXPORT_SYMBOL_GPL vmlinux 0x8f1a8cf9 rsa_parse_pub_key EXPORT_SYMBOL_GPL vmlinux 0x8f313e9d sysfs_update_group EXPORT_SYMBOL_GPL vmlinux 0x8f37b35e srcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x8f3f9409 dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x8f52eac9 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x8f415396 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x8f6a24c0 trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x8f725e67 probes_decode_arm_table +EXPORT_SYMBOL_GPL vmlinux 0x8f779e1b fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype EXPORT_SYMBOL_GPL vmlinux 0x8f7a6232 __pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x8f7bd750 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x8f7d370d proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0x8f7d4134 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x8f8193de regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0x8f834726 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x8f884465 __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x8f9ca2e1 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x8f85c59f clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x8fa1f141 register_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x8fac7b97 pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0x8fb98e19 bdi_dev_name EXPORT_SYMBOL_GPL vmlinux 0x8fbf60b4 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x8fbf9296 crypto_shoot_alg EXPORT_SYMBOL_GPL vmlinux 0x8fc090a3 __tracepoint_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x8fd8ab6e usb_gadget_vbus_draw EXPORT_SYMBOL_GPL vmlinux 0x8fe2db43 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x8feb1e28 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8fed47c2 ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x8ff4e893 dev_pm_domain_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points EXPORT_SYMBOL_GPL vmlinux 0x9003adc8 dummy_con EXPORT_SYMBOL_GPL vmlinux 0x900fe8bd pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x9010fd08 ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0x9021bd30 blk_mq_update_nr_hw_queues EXPORT_SYMBOL_GPL vmlinux 0x902778ba __tracepoint_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x90346c67 disk_update_readahead @@ -22221,212 +22202,223 @@ EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move EXPORT_SYMBOL_GPL vmlinux 0x903d5c62 pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0x903feac7 rio_request_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0x9050ca77 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x90522d74 dev_pm_qos_expose_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x90655653 anon_inode_getfd EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put EXPORT_SYMBOL_GPL vmlinux 0x906dd327 usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x906ed7ce efivar_entry_set_get_size EXPORT_SYMBOL_GPL vmlinux 0x907c5c23 nanddev_bbt_get_block_status EXPORT_SYMBOL_GPL vmlinux 0x907e7cdb scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x908093e3 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x9087c9f2 devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0x908845b4 nvdimm_bus_register EXPORT_SYMBOL_GPL vmlinux 0x908a020b vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0x9097a1cc regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x909897a7 pci_common_swizzle EXPORT_SYMBOL_GPL vmlinux 0x909925ba genphy_c45_read_lpa EXPORT_SYMBOL_GPL vmlinux 0x909aa7b2 nd_blk_memremap_flags EXPORT_SYMBOL_GPL vmlinux 0x90ab0a54 blk_poll EXPORT_SYMBOL_GPL vmlinux 0x90acaba5 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x90b2d8ec cpts_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x90b5191f pci_epf_remove_vepf EXPORT_SYMBOL_GPL vmlinux 0x90b7fe00 rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0x90b8ca43 __clk_mux_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x90bccd5d serial8250_request_dma EXPORT_SYMBOL_GPL vmlinux 0x90c416c2 dev_pm_opp_remove_all_dynamic EXPORT_SYMBOL_GPL vmlinux 0x90c42347 __irq_domain_add EXPORT_SYMBOL_GPL vmlinux 0x90cf8222 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90e01761 ptp_parse_header EXPORT_SYMBOL_GPL vmlinux 0x90ea0333 mtk_pinconf_bias_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0x90eb346f transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x90fa1635 synth_event_trace EXPORT_SYMBOL_GPL vmlinux 0x90fb5276 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0x91063d27 regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0x91129f4f fuse_get_unique EXPORT_SYMBOL_GPL vmlinux 0x9127f9d3 dev_pm_set_dedicated_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x9128f9dd nanddev_markbad EXPORT_SYMBOL_GPL vmlinux 0x91297a47 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x915094e0 receive_fd EXPORT_SYMBOL_GPL vmlinux 0x91519a16 dev_pm_opp_of_cpumask_add_table EXPORT_SYMBOL_GPL vmlinux 0x91637e86 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x916643f1 sdhci_cleanup_host +EXPORT_SYMBOL_GPL vmlinux 0x917851e6 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x9181f994 snd_soc_dapm_free EXPORT_SYMBOL_GPL vmlinux 0x918505cf nand_reset_op EXPORT_SYMBOL_GPL vmlinux 0x9190335b noop_invalidatepage EXPORT_SYMBOL_GPL vmlinux 0x91903642 extcon_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x919c81bc device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x91a237c0 blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0x91b100d4 gpiod_unexport EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91daef4c clk_hw_get_num_parents 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 0x920b2e95 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x91f90a01 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x91fda358 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x91ff9894 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x92056f32 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x920a8b35 ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0x920bba95 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL vmlinux 0x920c6364 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9218576a devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x922c035b ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x92208c7f gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x92218c64 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x923b4c81 rio_release_dma EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92648e9e crypto_enqueue_request_head EXPORT_SYMBOL_GPL vmlinux 0x927961e5 rio_request_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0x927baedc snd_fasync_helper +EXPORT_SYMBOL_GPL vmlinux 0x928aa4f9 fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0x929110ff usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x92ab2bdd gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x92a7af2e ata_msleep EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work EXPORT_SYMBOL_GPL vmlinux 0x92b6825a tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x92ba7536 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x92c7df9d gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x92b7df23 unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x92cec203 dev_pm_opp_put_opp_table EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92f37af9 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x92e41bb7 __sdhci_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x92ee0f18 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x92f19324 of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x92f66e6d snd_soc_component_compr_get_caps EXPORT_SYMBOL_GPL vmlinux 0x930a4f0a kobject_create_and_add EXPORT_SYMBOL_GPL vmlinux 0x93116c96 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x931738b5 devm_device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x9321ef0d usb_del_gadget_udc EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x932898f8 clk_hw_round_rate EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x9338dc8b regulator_sync_voltage EXPORT_SYMBOL_GPL vmlinux 0x9345a893 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x934b23b9 ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0x934de184 blk_mq_alloc_sq_tag_set EXPORT_SYMBOL_GPL vmlinux 0x9358430c virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x9364e0c4 dapm_pinctrl_event EXPORT_SYMBOL_GPL vmlinux 0x93692480 phy_exit EXPORT_SYMBOL_GPL vmlinux 0x936afb9d vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x93703025 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x936e4a98 __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0x937b46f6 dummy_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x93805369 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x938557ba sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x9386ca1b device_change_owner EXPORT_SYMBOL_GPL vmlinux 0x9396c787 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x939d75ce pci_host_common_probe -EXPORT_SYMBOL_GPL vmlinux 0x93b42562 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x93beba14 snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0x93a19023 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0x93c23122 tpm_chip_start EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints EXPORT_SYMBOL_GPL vmlinux 0x93cdf79d snd_dmaengine_pcm_close EXPORT_SYMBOL_GPL vmlinux 0x93d9c9ff posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x93dbc2a8 bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report EXPORT_SYMBOL_GPL vmlinux 0x93f2de8f sbitmap_weight EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x940634c4 perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x940d7083 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb EXPORT_SYMBOL_GPL vmlinux 0x9416cb0e tty_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x941a3d4f clk_hw_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x942b4c16 ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x9430eea0 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0x94360402 inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0x943740ed srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x943c2098 raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0x943ea691 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9448a915 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x944f0ac3 crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x946bb0cf tcp_twsk_unique EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x9472ca1e skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0x9486bbdd debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x948cb0a4 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x9495876a ahci_host_activate EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x94a0ca80 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x949d248d icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x94c23ac0 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x94abc2dc fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x94c31924 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x94e18e13 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x94f41c58 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x94c733aa ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x94d8ee1d ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x94dc4982 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x94f01c89 fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x94fc2a03 musb_interrupt EXPORT_SYMBOL_GPL vmlinux 0x94fd112c clk_register_divider_table EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9510d901 fwnode_graph_get_next_endpoint EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit EXPORT_SYMBOL_GPL vmlinux 0x9526ba9c pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x952d05e1 inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x952da9f1 usb_gadget_set_state EXPORT_SYMBOL_GPL vmlinux 0x95327af6 blk_mq_virtio_map_queues EXPORT_SYMBOL_GPL vmlinux 0x95358ce7 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x953bc978 regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954430fa ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x955dba4c ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0x955eaee0 xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0x956194fe mtk_pinconf_adv_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x9566ce72 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x95627bdf ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x956909f9 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x956a2764 crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x9578a638 snd_card_disconnect_sync 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 0x9595f60a sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x959a9b51 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x959b5d39 of_irq_parse_and_map_pci EXPORT_SYMBOL_GPL vmlinux 0x959d991c blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x95a340dc skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x959da0ec rtc_update_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free EXPORT_SYMBOL_GPL vmlinux 0x95bcd337 pci_generic_config_read EXPORT_SYMBOL_GPL vmlinux 0x95c5656a badblocks_set EXPORT_SYMBOL_GPL vmlinux 0x95c88a2f __of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0x95cc49b6 irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0x95d03d72 __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x95d8f4b8 omap_iommu_domain_activate EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size EXPORT_SYMBOL_GPL vmlinux 0x95f1d8f0 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x95f2bb01 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x95f7aca9 udp_abort EXPORT_SYMBOL_GPL vmlinux 0x9602ce6c kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x9606dab2 rdev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x96152fb5 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x96310595 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0x963ac39f platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x9622e072 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9629f1f5 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL vmlinux 0x962ec480 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x96312c30 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x964614e1 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x9653ee18 unregister_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x965ead29 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x966afc13 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x966b3f53 nfnl_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x966fc7cf of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x96730194 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x967074f1 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x96719782 stmpe811_adc_common_init EXPORT_SYMBOL_GPL vmlinux 0x9676ffad elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x967de3d0 phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0x96886a86 of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0x96894efa switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x968af340 adp5520_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x9694e660 snd_soc_set_dmi_name EXPORT_SYMBOL_GPL vmlinux 0x96ab3dde __tracepoint_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0x96b7d1f1 serdev_controller_alloc EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0x96cc964a crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x96ccc8d9 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x96dd8b62 sdhci_get_property EXPORT_SYMBOL_GPL vmlinux 0x96e248c4 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x96e6348d gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x96e30091 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x9703666a extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0x97143dcd snd_soc_add_card_controls EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw EXPORT_SYMBOL_GPL vmlinux 0x9720ce68 usb_gadget_set_remote_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x9723d9e4 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x972854f7 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x97290a5e sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x9731a864 __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0x973ff00d md_allow_write EXPORT_SYMBOL_GPL vmlinux 0x9745b312 pci_sriov_set_totalvfs EXPORT_SYMBOL_GPL vmlinux 0x9749374c dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0x974e0464 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x97511066 validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same EXPORT_SYMBOL_GPL vmlinux 0x9769b98b pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x97737d28 thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0x977accf0 snd_soc_dapm_ignore_suspend EXPORT_SYMBOL_GPL vmlinux 0x977c312e amba_apb_device_add_res EXPORT_SYMBOL_GPL vmlinux 0x9786423a snd_compr_stop_error EXPORT_SYMBOL_GPL vmlinux 0x979db940 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x97a4b930 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x979e2ac7 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x97a4a510 xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0x97b87ee5 pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0x97bfaf62 regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0x97c33d5c set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0x97cb24a7 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x97d07ff1 regmap_get_device EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x9800b137 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x97f60d6a snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL vmlinux 0x980202eb xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0x9809e8d5 iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x98122485 inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0x98191390 pci_disable_ats EXPORT_SYMBOL_GPL vmlinux 0x981f90a0 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x9823bb87 __trace_array_puts EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick EXPORT_SYMBOL_GPL vmlinux 0x983ed1cf phy_restore_page EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check @@ -22437,19 +22429,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x985b7ac8 arm_iommu_create_mapping EXPORT_SYMBOL_GPL vmlinux 0x9860a6ea dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x987fcc38 devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x98823817 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x98889f07 i2c_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x988de947 devm_namespace_enable EXPORT_SYMBOL_GPL vmlinux 0x988f841b of_pci_range_parser_one EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x98983019 l3mdev_ifindex_lookup_by_table_id EXPORT_SYMBOL_GPL vmlinux 0x989b73b3 sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x98a0ed2a usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x98a2360a access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x98a2d642 rtc_read_time EXPORT_SYMBOL_GPL vmlinux 0x98a6f8c2 dev_pm_genpd_set_performance_state EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x98d9576a __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x98baef81 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0x98dfa5a5 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x98e23a48 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x98eab06c cpuidle_unregister 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 @@ -22457,50 +22447,43 @@ EXPORT_SYMBOL_GPL vmlinux 0x9910f3de devres_remove EXPORT_SYMBOL_GPL vmlinux 0x991b5545 subsys_virtual_register EXPORT_SYMBOL_GPL vmlinux 0x9925de27 iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0x993a7086 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0x994b3c77 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x9948323e gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995e0b3a fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x995e747c netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x9960d5c6 do_xdp_generic EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x9969f526 spi_take_timestamp_pre -EXPORT_SYMBOL_GPL vmlinux 0x99778c6a ata_msleep EXPORT_SYMBOL_GPL vmlinux 0x99839058 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x99935c2f snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x99952e4e snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x99ae462f crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x99af2e6f lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x99b5326f ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x99a0004b snd_soc_poweroff EXPORT_SYMBOL_GPL vmlinux 0x99b7191f dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0x99bb8edf perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0x99c29005 fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x99c64174 pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0x99c68b8f pinctrl_generic_add_group EXPORT_SYMBOL_GPL vmlinux 0x99d43b70 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x99d98584 regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0x99e93a03 pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at EXPORT_SYMBOL_GPL vmlinux 0x99f4fa20 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x9a0f08b2 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x99f9cd79 clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a12ee42 __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0x9a1cc456 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x9a1d7951 stmpe811_adc_common_init EXPORT_SYMBOL_GPL vmlinux 0x9a2075cf cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x9a26edfb vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x9a401fab usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9a36dc7a devlink_region_create EXPORT_SYMBOL_GPL vmlinux 0x9a4137ea key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x9a43a1b4 net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0x9a48c674 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x9a5b1e1e ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0x9a678c10 ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x9a85b0ea device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x9a5abc95 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x9a5e6d38 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x9a5ef611 fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0x9a8a37e4 do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0x9a8aa341 mtk_hw_get_value -EXPORT_SYMBOL_GPL vmlinux 0x9a932839 perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x9a9e89eb pci_epc_stop EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops EXPORT_SYMBOL_GPL vmlinux 0x9ae3c286 i2c_slave_unregister EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9afcb24d mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x9b053a5d regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x9b195846 dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9b289103 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x9b2ac8cb __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x9b4d8c41 hisi_reset_init EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle EXPORT_SYMBOL_GPL vmlinux 0x9b56668c led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x9b603d96 xhci_check_bandwidth @@ -22511,358 +22494,366 @@ EXPORT_SYMBOL_GPL vmlinux 0x9b77d13e devm_init_badblocks 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 0x9b9a93a8 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL vmlinux 0x9ba5854d devlink_register -EXPORT_SYMBOL_GPL vmlinux 0x9bac7543 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9bcaf60a regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x9b977534 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x9bac46b1 skb_segment EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9bd8a830 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x9be08bca blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0x9bec9191 public_key_subtype EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf2beaa regmap_get_val_endian EXPORT_SYMBOL_GPL vmlinux 0x9bfde704 snd_soc_daifmt_clock_provider_fliped -EXPORT_SYMBOL_GPL vmlinux 0x9c093ebd __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x9bfe1bfd platform_add_devices EXPORT_SYMBOL_GPL vmlinux 0x9c14e66f pcie_bus_configure_settings EXPORT_SYMBOL_GPL vmlinux 0x9c1c9f07 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x9c2b3efd wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9c3bebf7 devm_phy_package_join EXPORT_SYMBOL_GPL vmlinux 0x9c44226c mtd_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0x9c5b5464 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9c65742e hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0x9c691de1 genphy_c45_read_link EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c709fa8 gpiochip_irq_map EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9ca0fdf0 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x9ca2e495 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x9ca1c789 posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x9cb448be debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x9cb6e525 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x9cb4a2bf lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0x9cc066ee uart_try_toggle_sysrq EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc59329 bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0x9cd71f15 dm_get_queue_limits EXPORT_SYMBOL_GPL vmlinux 0x9cef4961 genphy_c45_an_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x9d01b760 __bio_try_merge_page EXPORT_SYMBOL_GPL vmlinux 0x9d030112 da9052_adc_read_temp EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d1fdcb1 sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0x9d2373fe auxiliary_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x9d2e0d3d usb_gadget_deactivate EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d30c7df __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x9d31d05c xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0x9d4432cf usb_gadget_connect EXPORT_SYMBOL_GPL vmlinux 0x9d5a8178 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x9d60cc4c dev_pm_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x9d65462a bdev_disk_changed EXPORT_SYMBOL_GPL vmlinux 0x9d6c1514 user_read -EXPORT_SYMBOL_GPL vmlinux 0x9d6e7dea devlink_param_unregister EXPORT_SYMBOL_GPL vmlinux 0x9d7189f3 dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0x9d7a8d9e xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0x9d855a31 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x9d8c62ea gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0x9d950e53 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x9d9cf7b0 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x9d9595c5 ip6_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x9dafcf04 pm_runtime_no_callbacks EXPORT_SYMBOL_GPL vmlinux 0x9db5531f dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x9dbd4a35 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x9dc01863 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0x9ddfc3a2 snd_soc_component_enable_pin EXPORT_SYMBOL_GPL vmlinux 0x9de2c305 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x9df7db7e lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array EXPORT_SYMBOL_GPL vmlinux 0x9e016686 digsig_verify EXPORT_SYMBOL_GPL vmlinux 0x9e1496ac devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x9e2511c8 crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0x9e2fadde nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL vmlinux 0x9e3514a8 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x9e369786 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x9e409d2a crypto_stats_rng_seed EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e5cd76d regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x9e581a22 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x9e592b4c devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0x9e65ed2b __kprobe_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x9e6c23c6 __hwspin_trylock EXPORT_SYMBOL_GPL vmlinux 0x9e71b9b5 pinctrl_utils_add_map_configs EXPORT_SYMBOL_GPL vmlinux 0x9e8c8f66 rio_dma_prep_slave_sg EXPORT_SYMBOL_GPL vmlinux 0x9e9dd888 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x9ea11e70 snd_soc_dapm_sync_unlocked EXPORT_SYMBOL_GPL vmlinux 0x9eab5b20 software_node_fwnode EXPORT_SYMBOL_GPL vmlinux 0x9eb52803 usb_ep_disable -EXPORT_SYMBOL_GPL vmlinux 0x9ec3a858 sdio_align_size EXPORT_SYMBOL_GPL vmlinux 0x9ec3b172 snd_device_get_state +EXPORT_SYMBOL_GPL vmlinux 0x9ecbd91f snd_soc_dapm_force_bias_level EXPORT_SYMBOL_GPL vmlinux 0x9ed1ad34 ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0x9ed329ea blkdev_nr_zones EXPORT_SYMBOL_GPL vmlinux 0x9ed3c0a9 __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9ed41035 nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0x9ed4ef41 wwan_unregister_ops EXPORT_SYMBOL_GPL vmlinux 0x9ed53c49 fat_update_time EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9eda1ab5 regulator_get_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x9ee5e40a __ktime_divns EXPORT_SYMBOL_GPL vmlinux 0x9ee7f8e7 extcon_sync EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9eef54a7 gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x9ef19bac pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0x9f054a1b sdio_f0_readb EXPORT_SYMBOL_GPL vmlinux 0x9f140889 usb_anchor_resume_wakeups EXPORT_SYMBOL_GPL vmlinux 0x9f1a673b rockchip_clk_register_branches -EXPORT_SYMBOL_GPL vmlinux 0x9f1e3f06 sched_trace_rq_avg_irq EXPORT_SYMBOL_GPL vmlinux 0x9f2432bf fuse_init_fs_context_submount EXPORT_SYMBOL_GPL vmlinux 0x9f252c5f param_set_uint_minmax EXPORT_SYMBOL_GPL vmlinux 0x9f2b23ad devm_pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0x9f2c6856 mpc8xxx_spi_rx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0x9f35d7ff pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x9f44f73a regulator_set_voltage EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns EXPORT_SYMBOL_GPL vmlinux 0x9f50409c regulator_get_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x9f58ec7c dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x9f5a88c6 gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9f5e1393 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x9f5e3435 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x9f5dd80a crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0x9f68f3a8 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x9f750e97 snd_soc_dapm_free EXPORT_SYMBOL_GPL vmlinux 0x9f7f7598 devm_regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x9f855795 regulator_set_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x9f8760cc debugfs_create_x8 EXPORT_SYMBOL_GPL vmlinux 0x9f8b6359 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x9f8fa04d sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL vmlinux 0x9f98bae0 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x9f924aab ata_pci_device_do_suspend EXPORT_SYMBOL_GPL vmlinux 0x9f990a4e mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0x9fa00d47 gpiochip_line_is_open_drain EXPORT_SYMBOL_GPL vmlinux 0x9fa2e06d ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x9fb11b6c gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9fba1c9e regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x9fba6a2a __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x9fbba6a9 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x9fc783ca cpts_misc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x9fc86381 tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm EXPORT_SYMBOL_GPL vmlinux 0x9ff1b559 rockchip_register_softrst -EXPORT_SYMBOL_GPL vmlinux 0xa0070423 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x9ffd475d strp_unpause EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc EXPORT_SYMBOL_GPL vmlinux 0xa025605b snd_dmaengine_pcm_set_config_from_dai_data EXPORT_SYMBOL_GPL vmlinux 0xa02d9c1e devm_usb_get_phy_by_node EXPORT_SYMBOL_GPL vmlinux 0xa0494add __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xa04a47ba ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock EXPORT_SYMBOL_GPL vmlinux 0xa05443c3 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xa07c2513 i2c_client_type EXPORT_SYMBOL_GPL vmlinux 0xa0808a65 pm_clk_destroy EXPORT_SYMBOL_GPL vmlinux 0xa085dad0 iommu_group_remove_device EXPORT_SYMBOL_GPL vmlinux 0xa08a557c debugfs_rename EXPORT_SYMBOL_GPL vmlinux 0xa0953dcb efivar_entry_remove EXPORT_SYMBOL_GPL vmlinux 0xa095ed71 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0xa09ac3d4 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0xa09b4002 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa09c7b35 ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0xa0ae1a7f kthread_cancel_delayed_work_sync EXPORT_SYMBOL_GPL vmlinux 0xa0b1663a input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0xa0db5307 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xa0c65ed1 regulator_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0xa0e42767 tty_get_pgrp EXPORT_SYMBOL_GPL vmlinux 0xa0eb0e5d kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xa0f67bb7 crypto_stats_kpp_compute_shared_secret EXPORT_SYMBOL_GPL vmlinux 0xa10dbd3e genphy_c45_pma_suspend EXPORT_SYMBOL_GPL vmlinux 0xa1158452 power_supply_put EXPORT_SYMBOL_GPL vmlinux 0xa1229776 cdrom_read_tocentry EXPORT_SYMBOL_GPL vmlinux 0xa1277f4f pstore_unregister EXPORT_SYMBOL_GPL vmlinux 0xa1302d96 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL vmlinux 0xa1345068 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xa13ad348 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xa141cf5a skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0xa14c792f __hrtimer_get_remaining EXPORT_SYMBOL_GPL vmlinux 0xa1590da2 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa16cc0fa do_splice_to EXPORT_SYMBOL_GPL vmlinux 0xa170a734 usb_find_alt_setting EXPORT_SYMBOL_GPL vmlinux 0xa176e700 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xa19c8548 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xa1a57e8d sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xa1ad393e ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xa180ef73 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL vmlinux 0xa18d13b9 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xa1a01761 proc_create_net_single EXPORT_SYMBOL_GPL vmlinux 0xa1d68425 of_property_count_elems_of_size EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing EXPORT_SYMBOL_GPL vmlinux 0xa1f1bd3a arm_check_condition +EXPORT_SYMBOL_GPL vmlinux 0xa1f316b5 clk_hw_get_flags EXPORT_SYMBOL_GPL vmlinux 0xa1f42ed5 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xa2054f2d crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0xa208c857 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xa209b55b device_remove_properties EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa22407e7 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xa22a92c7 fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0xa22f3d55 get_device +EXPORT_SYMBOL_GPL vmlinux 0xa233ca2f regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0xa23d6ff9 fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0xa24cb2fd crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0xa2546e33 serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0xa257e549 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xa25aa3de get_task_pid EXPORT_SYMBOL_GPL vmlinux 0xa25dd28e usb_disable_ltm EXPORT_SYMBOL_GPL vmlinux 0xa25f127a md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xa260d10b hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0xa26d594c dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested EXPORT_SYMBOL_GPL vmlinux 0xa2841e45 __clk_hw_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name EXPORT_SYMBOL_GPL vmlinux 0xa286e797 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xa29c91fb sdhci_free_host EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2ba47ba spi_add_device EXPORT_SYMBOL_GPL vmlinux 0xa2c31b2a proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xa2dd8918 devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xa2de283c evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0xa2df830d sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xa2e053d8 dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2edacb8 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xa2f186ec vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xa30cceaf skb_gso_validate_network_len EXPORT_SYMBOL_GPL vmlinux 0xa30de154 __phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0xa326ed09 snd_soc_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0xa328325c net_ns_type_operations EXPORT_SYMBOL_GPL vmlinux 0xa32f3d9e decode_rs16 EXPORT_SYMBOL_GPL vmlinux 0xa3308ea0 snd_soc_component_compr_free -EXPORT_SYMBOL_GPL vmlinux 0xa3326327 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xa335e0a2 devm_snd_soc_register_dai EXPORT_SYMBOL_GPL vmlinux 0xa33744aa edac_stop_work EXPORT_SYMBOL_GPL vmlinux 0xa33f107b edac_pci_create_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0xa346975c idr_remove -EXPORT_SYMBOL_GPL vmlinux 0xa34e9bf2 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xa35ffdea ahci_fill_cmd_slot EXPORT_SYMBOL_GPL vmlinux 0xa362bf8f hrtimer_init EXPORT_SYMBOL_GPL vmlinux 0xa37b4966 serial8250_rx_dma_flush EXPORT_SYMBOL_GPL vmlinux 0xa37bf8a2 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xa38245e3 snd_soc_dai_set_tdm_slot 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 0xa38abf8d tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xa3945758 gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0xa39e3320 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xa3a04308 __ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a98aa1 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa3aace7c regulator_unregister EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bb71c4 sched_trace_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0xa3c1db37 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa3c292be snd_soc_component_force_enable_pin EXPORT_SYMBOL_GPL vmlinux 0xa3cd29bc of_pci_address_to_resource EXPORT_SYMBOL_GPL vmlinux 0xa3d03ca9 dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0xa3d1d373 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xa3e6253b ata_scsi_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0xa3ed4cef snd_card_free_on_error EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor EXPORT_SYMBOL_GPL vmlinux 0xa3fa2385 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0xa4009660 crypto_stats_init EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy EXPORT_SYMBOL_GPL vmlinux 0xa4184815 phy_validate -EXPORT_SYMBOL_GPL vmlinux 0xa41cf90d of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xa42532d6 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL vmlinux 0xa426c260 regulator_disable EXPORT_SYMBOL_GPL vmlinux 0xa426f033 ahci_platform_enable_clks EXPORT_SYMBOL_GPL vmlinux 0xa4365321 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xa439955d lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0xa444c3ca topology_clear_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xa4499326 trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first EXPORT_SYMBOL_GPL vmlinux 0xa44c697f usb_get_descriptor EXPORT_SYMBOL_GPL vmlinux 0xa44e04d8 snd_soc_put_volsw_range EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa45ce5b7 of_get_named_gpio_flags EXPORT_SYMBOL_GPL vmlinux 0xa45dc275 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xa4683c37 snd_soc_dapm_stream_stop EXPORT_SYMBOL_GPL vmlinux 0xa46f8631 kernel_read_file_from_path EXPORT_SYMBOL_GPL vmlinux 0xa473d8f7 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa475a16a __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0xa476f971 thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0xa4797fbe crypto_register_alg EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx EXPORT_SYMBOL_GPL vmlinux 0xa48430f0 of_pci_find_child_device EXPORT_SYMBOL_GPL vmlinux 0xa48cdfbf of_detach_node EXPORT_SYMBOL_GPL vmlinux 0xa48e663a nand_ecc_choose_conf EXPORT_SYMBOL_GPL vmlinux 0xa4901c21 xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0xa4a094cb call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xa4a9ff17 sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xa4ab8197 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0xa4afde15 regulator_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite EXPORT_SYMBOL_GPL vmlinux 0xa4b449c3 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xa4b6ce88 ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis EXPORT_SYMBOL_GPL vmlinux 0xa4c7a9d2 dw_pcie_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xa4cc19b3 irq_set_affinity_hint EXPORT_SYMBOL_GPL vmlinux 0xa4d275b9 __tracepoint_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xa4d81144 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xa4d820b0 clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0xa4dc79c3 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0xa4fab2ca inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xa525628f devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xa4dde4dd gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa4ede47a rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa50a47e9 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa50bcd84 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xa50f9a71 mmc_switch EXPORT_SYMBOL_GPL vmlinux 0xa5301923 pci_epc_raise_irq EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context EXPORT_SYMBOL_GPL vmlinux 0xa53f0dd7 tnum_strn EXPORT_SYMBOL_GPL vmlinux 0xa54483e5 pci_ioremap_wc_bar EXPORT_SYMBOL_GPL vmlinux 0xa55590dc nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xa55feffe kick_process EXPORT_SYMBOL_GPL vmlinux 0xa56284da blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xa577ff03 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa5792163 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL vmlinux 0xa57ab5e2 setfl +EXPORT_SYMBOL_GPL vmlinux 0xa5659b81 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xa57d9a97 nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0xa583c3d3 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xa58e19c0 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL vmlinux 0xa595e8bc skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0xa59ed389 icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0xa59f4009 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xa5957aae gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xa5a4cf3b switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xa5a56f95 sdio_writesb EXPORT_SYMBOL_GPL vmlinux 0xa5a60aaf nd_blk_region_provider_data EXPORT_SYMBOL_GPL vmlinux 0xa5b6558a blk_queue_rq_timeout EXPORT_SYMBOL_GPL vmlinux 0xa5b89812 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa5bce7f5 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa5c6a859 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xa5d3b143 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xa5d51d6c skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0xa5d72a8f cpuidle_enable_device EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5ecf0c3 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa5da134b pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa606a5e7 snd_soc_dai_action -EXPORT_SYMBOL_GPL vmlinux 0xa60d6b9c snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL vmlinux 0xa61bf868 fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0xa6268e49 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0xa615c3eb icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0xa622ce14 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa6385dda snd_soc_dapm_nc_pin EXPORT_SYMBOL_GPL vmlinux 0xa642fe48 phy_init EXPORT_SYMBOL_GPL vmlinux 0xa64f2ff5 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xa64f537e ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0xa673bec4 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xa67830d8 tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xa682da73 proc_dou8vec_minmax EXPORT_SYMBOL_GPL vmlinux 0xa68f9d85 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xa69a6571 ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a7f7a4 phy_driver_is_genphy_10g 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 0xa6bcfc04 snd_soc_of_get_dai_link_codecs EXPORT_SYMBOL_GPL vmlinux 0xa6c8afbb pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0xa6cfe719 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0xa6e0145e nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync EXPORT_SYMBOL_GPL vmlinux 0xa6e44624 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xa6eb6a8b crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0xa6f1aca6 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa6f3cbfb fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xa6f46495 vfs_setlease EXPORT_SYMBOL_GPL vmlinux 0xa6f62053 exportfs_encode_fh EXPORT_SYMBOL_GPL vmlinux 0xa700eb02 unregister_kprobes EXPORT_SYMBOL_GPL vmlinux 0xa7087d90 dw_pcie_wait_for_link EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa7106479 devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0xa7190f5d pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0xa725b647 pwm_request EXPORT_SYMBOL_GPL vmlinux 0xa7295956 dev_pm_opp_disable EXPORT_SYMBOL_GPL vmlinux 0xa73efb91 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa7427895 page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0xa751340f __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0xa7531f94 vp_modern_get_features EXPORT_SYMBOL_GPL vmlinux 0xa7539e9e da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa7575c5f snd_soc_dai_compr_get_params EXPORT_SYMBOL_GPL vmlinux 0xa759d958 fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0xa75a81fe security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xa75ad089 ata_qc_complete EXPORT_SYMBOL_GPL vmlinux 0xa75eb09b mtk_mmsys_ddp_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xa7656842 __mnt_is_readonly EXPORT_SYMBOL_GPL vmlinux 0xa76a3e94 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xa76ed14e crypto_stats_akcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0xa7802e2e btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xa79b4bd2 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xa796a26f trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xa79d8cf1 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xa7a2e91d crypto_unregister_aeads EXPORT_SYMBOL_GPL vmlinux 0xa7a66ed6 dax_attribute_group EXPORT_SYMBOL_GPL vmlinux 0xa7aaafde klist_iter_exit EXPORT_SYMBOL_GPL vmlinux 0xa7c147b2 spi_mem_exec_op EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7d59d1f mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0xa7ea6d82 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xa8219e9b gpiod_set_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0xa8222f75 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xa828d212 snd_soc_dpcm_be_can_update EXPORT_SYMBOL_GPL vmlinux 0xa82d2d0e extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xa8378789 ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0xa8433f6b of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xa8473c15 __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xa84d4e8f __tracepoint_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xa850b510 mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa85e9e67 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa876e42b regmap_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xa87d0aa8 tty_put_char EXPORT_SYMBOL_GPL vmlinux 0xa87f7aec sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0xa88038ca platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xa88b19f4 icc_put EXPORT_SYMBOL_GPL vmlinux 0xa8a4e59b fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xa8aa2b4a device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xa8b066db synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0xa8b263f2 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0xa8ba5e7d nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xa8babcc8 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xa8c74705 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xa8d6c402 file_ra_state_init EXPORT_SYMBOL_GPL vmlinux 0xa8d876fb snd_soc_get_enum_double EXPORT_SYMBOL_GPL vmlinux 0xa8e8da58 ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0xa8f4cf9f fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0xa8fe4484 ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0xa909811a badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0xa91fcc67 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xa913d56e sdio_get_host_pm_caps EXPORT_SYMBOL_GPL vmlinux 0xa9254e61 sysfs_create_link EXPORT_SYMBOL_GPL vmlinux 0xa92b7803 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa92d5458 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0xa92f2112 udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9411958 gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0xa94c3ed5 reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xa94d3982 of_clk_del_provider EXPORT_SYMBOL_GPL vmlinux 0xa9576265 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xa9688314 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xa966affd device_link_add EXPORT_SYMBOL_GPL vmlinux 0xa975b9f5 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9840a1b devlink_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0xa9872dbe driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xa98bb565 crypto_stats_aead_encrypt 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 0xa9bc28c9 perf_event_period EXPORT_SYMBOL_GPL vmlinux 0xa9ca085c find_mci_by_dev EXPORT_SYMBOL_GPL vmlinux 0xa9dce701 iommu_aux_attach_device EXPORT_SYMBOL_GPL vmlinux 0xa9e0486c nanddev_cleanup EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xa9e08c83 bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister EXPORT_SYMBOL_GPL vmlinux 0xa9e20aa2 tty_find_polling_driver EXPORT_SYMBOL_GPL vmlinux 0xa9e74462 usb_ep_alloc_request @@ -22872,11 +22863,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xaa011f63 blkcg_print_blkgs EXPORT_SYMBOL_GPL vmlinux 0xaa0946c4 transport_remove_device EXPORT_SYMBOL_GPL vmlinux 0xaa152108 hrtimer_active EXPORT_SYMBOL_GPL vmlinux 0xaa166e06 pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xaa1f4068 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xaa1c276a __page_file_index EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa2a12ce i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xaa255765 bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa2ab36d wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xaa35fe8a crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0xaa399136 usb_free_coherent EXPORT_SYMBOL_GPL vmlinux 0xaa3f8400 fsstack_copy_inode_size EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable @@ -22884,135 +22875,144 @@ EXPORT_SYMBOL_GPL vmlinux 0xaa4716df cdrom_multisession EXPORT_SYMBOL_GPL vmlinux 0xaa4b5db8 dev_coredumpm EXPORT_SYMBOL_GPL vmlinux 0xaa518047 mtd_get_device_size EXPORT_SYMBOL_GPL vmlinux 0xaa5336cd iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xaa5eea35 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0xaa7093bb __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xaa870a90 wm8400_reset_codec_reg_cache EXPORT_SYMBOL_GPL vmlinux 0xaa8768f6 init_uts_ns EXPORT_SYMBOL_GPL vmlinux 0xaa88ba94 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0xaa8eba5f mmc_pwrseq_unregister EXPORT_SYMBOL_GPL vmlinux 0xaa996bf7 __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xaa9d16f1 check_move_unevictable_pages EXPORT_SYMBOL_GPL vmlinux 0xaaa5980a user_preparse EXPORT_SYMBOL_GPL vmlinux 0xaaa763ea pci_enable_rom EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaaa14d5 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xaabe6a1f vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0xaabfeb8f mbox_flush EXPORT_SYMBOL_GPL vmlinux 0xaacf62c1 devm_request_pci_bus_resources EXPORT_SYMBOL_GPL vmlinux 0xaad88498 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xaae82404 perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0xaaecf75d perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaaeecda0 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0xaaf60428 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0xab0995c2 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0xab0b6745 ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0xab1049ef pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0xab139ff0 sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0xab26a79d ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xab26fee8 wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0xab2bc8b7 nvdimm_blk_region_create EXPORT_SYMBOL_GPL vmlinux 0xab3d3d0d pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xab40a9f3 dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0xab4c743a __fat_fs_error EXPORT_SYMBOL_GPL vmlinux 0xab4f4b32 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xab50b27a gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xab5b99f8 gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0xab60cd3f exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xab61c532 snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0xab628d32 ata_pci_device_resume EXPORT_SYMBOL_GPL vmlinux 0xab754b63 lp8788_write_byte EXPORT_SYMBOL_GPL vmlinux 0xab792699 kstrdup_quotable_file EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare EXPORT_SYMBOL_GPL vmlinux 0xab80e904 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xab898516 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect EXPORT_SYMBOL_GPL vmlinux 0xab8d4502 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0xab9434bd sdhci_enable_v4_mode EXPORT_SYMBOL_GPL vmlinux 0xab982b33 iommu_aux_detach_device EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks EXPORT_SYMBOL_GPL vmlinux 0xaba1acaf irq_chip_unmask_parent EXPORT_SYMBOL_GPL vmlinux 0xaba6b997 fsverity_ioctl_enable EXPORT_SYMBOL_GPL vmlinux 0xaba848ee mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL vmlinux 0xabb0c112 pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0xabb2c87e kthread_flush_worker EXPORT_SYMBOL_GPL vmlinux 0xabb54657 mtd_point EXPORT_SYMBOL_GPL vmlinux 0xabc63f94 devm_clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabc6b033 hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xabcda29e leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xabcfb0bc lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0xabd5ba1a tpm2_get_cc_attrs_tbl EXPORT_SYMBOL_GPL vmlinux 0xabdb8411 bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0xabe59e65 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xabdbf251 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xabeb4102 switchdev_handle_fdb_del_to_device EXPORT_SYMBOL_GPL vmlinux 0xabef34ee __tracepoint_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xabfd3c27 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL vmlinux 0xac03d205 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0xac0c8b61 device_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0xac1dd3a9 usb_gadget_check_config -EXPORT_SYMBOL_GPL vmlinux 0xac224f75 dev_pm_qos_hide_flags EXPORT_SYMBOL_GPL vmlinux 0xac226f4f paste_selection -EXPORT_SYMBOL_GPL vmlinux 0xac3445d7 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0xac3f16ff sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xac24d419 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xac3125af regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xac41459f vfs_getxattr_alloc EXPORT_SYMBOL_GPL vmlinux 0xac51212e fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xac57f7fd skcipher_walk_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xac593fa1 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xac6aa345 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0xac6e35d2 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL vmlinux 0xac7f4a0a nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0xac83dd5e wm8350_reg_lock EXPORT_SYMBOL_GPL vmlinux 0xac8d5d14 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xac910b11 shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0xaca3e64a ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xaca6c1a2 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xaca50581 __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0xaca7cb56 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xacabdbaa devm_clk_unregister EXPORT_SYMBOL_GPL vmlinux 0xacabf992 blk_ksm_init_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xacb35c6e sdhci_start_tuning EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacb8cbc8 regmap_attach_dev EXPORT_SYMBOL_GPL vmlinux 0xacbf1f47 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xacc2bbc1 tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0xace53ff4 debugfs_write_file_bool EXPORT_SYMBOL_GPL vmlinux 0xace76158 devm_otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0xaced0fc0 fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0xad12cc4d mtk_pinconf_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xad1704c8 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL vmlinux 0xad23c21e sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0xad2d7750 dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xad3107e5 usb_autopm_get_interface_async EXPORT_SYMBOL_GPL vmlinux 0xad342d14 adp5520_set_bits 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 0xad590ee7 snd_soc_component_test_bits EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad7102a4 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xad7639d2 fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0xad81f68c devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xad830709 clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0xad83ca3c rio_alloc_net EXPORT_SYMBOL_GPL vmlinux 0xad844786 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xad8e5997 blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0xad967d72 sbitmap_prepare_to_wait EXPORT_SYMBOL_GPL vmlinux 0xad996671 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xad9c697a ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xad9b5884 sdev_evt_send_simple EXPORT_SYMBOL_GPL vmlinux 0xad9da01c edac_mc_free EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy EXPORT_SYMBOL_GPL vmlinux 0xadd663fe phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xadd9ceb7 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xaddb42b0 snd_soc_debugfs_root EXPORT_SYMBOL_GPL vmlinux 0xade3b518 sysfs_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0xade3e56c musb_writew EXPORT_SYMBOL_GPL vmlinux 0xade9d6ba tty_port_register_device_attr_serdev EXPORT_SYMBOL_GPL vmlinux 0xae01b9e0 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xae08d1be snd_soc_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xae0d9ef5 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xae071cb1 devm_hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0xae0eea5c pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xae15702c crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xae10b6ae ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xae1516a1 of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xae1850b6 device_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0xae215994 component_add_typed EXPORT_SYMBOL_GPL vmlinux 0xae236039 component_del EXPORT_SYMBOL_GPL vmlinux 0xae24eda1 kvm_arch_ptp_get_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xae262f05 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL vmlinux 0xae276aa8 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xae2545d6 ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0xae38a9c8 usb_get_urb EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae3f72ff thermal_zone_bind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0xae41c877 pm_generic_thaw_early EXPORT_SYMBOL_GPL vmlinux 0xae435a8b snd_soc_get_xr_sx EXPORT_SYMBOL_GPL vmlinux 0xae4dcbfb driver_find EXPORT_SYMBOL_GPL vmlinux 0xae52c3a4 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xae593199 xdp_return_frame EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock EXPORT_SYMBOL_GPL vmlinux 0xae6c01ef user_free_preparse EXPORT_SYMBOL_GPL vmlinux 0xae728502 usb_wakeup_enabled_descendants EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae86c569 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xaea068ac bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xae81b13a tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xae93f46b snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0xae9b3be2 cpufreq_generic_init EXPORT_SYMBOL_GPL vmlinux 0xaea14161 mtk_pinconf_drive_get -EXPORT_SYMBOL_GPL vmlinux 0xaea623e6 crypto_unregister_shash EXPORT_SYMBOL_GPL vmlinux 0xaeb48cdc encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xaeb542ae phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xaeb99a88 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0xaebe3cf8 ata_host_alloc EXPORT_SYMBOL_GPL vmlinux 0xaeca449d fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0xaed34898 sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0xaed432f1 debugfs_create_u32_array EXPORT_SYMBOL_GPL vmlinux 0xaed67b25 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xaee31310 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xaef57d5a blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xaef59168 seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0xaf1411de ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xaf1fc236 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xaf16fc60 scsi_host_busy_iter EXPORT_SYMBOL_GPL vmlinux 0xaf201fa6 usb_ep_enable +EXPORT_SYMBOL_GPL vmlinux 0xaf26b613 device_init_wakeup EXPORT_SYMBOL_GPL vmlinux 0xaf2c59c5 handle_fasteoi_nmi EXPORT_SYMBOL_GPL vmlinux 0xaf2e9eca tty_ldisc_receive_buf EXPORT_SYMBOL_GPL vmlinux 0xaf32f171 kgdb_register_io_module @@ -23021,47 +23021,46 @@ EXPORT_SYMBOL_GPL vmlinux 0xaf34ca6e irq_get_default_host EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xaf3c2b54 regulator_set_soft_start_regmap EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf4c2f5e devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0xaf4c85c8 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL vmlinux 0xaf7474ab shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0xaf800e76 usb_hcd_pci_shutdown EXPORT_SYMBOL_GPL vmlinux 0xaf8417ba usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xaf941936 page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0xaf96e6c5 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xaf9b6661 xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0xaf9c13f6 adp5520_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xafa99ca5 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xafb3a237 regmap_raw_write EXPORT_SYMBOL_GPL vmlinux 0xafb8ce0d usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xafc71a9c css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafe7080b ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0xafedfec6 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xb0099314 netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0xb013d4e1 devm_gpio_request EXPORT_SYMBOL_GPL vmlinux 0xb017580e pci_find_next_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xb017c9da bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xb01cb086 sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0xb0232477 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xb023bc27 sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0xb02af92a alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0xb02e55c4 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb036863f skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xb03bf684 register_kprobes EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb04a4412 crypto_register_algs EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xb0666a37 srcu_torture_stats_print EXPORT_SYMBOL_GPL vmlinux 0xb06a55f9 fscrypt_set_bio_crypt_ctx EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress EXPORT_SYMBOL_GPL vmlinux 0xb076ff97 __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xb077d5d0 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare EXPORT_SYMBOL_GPL vmlinux 0xb08dba9e __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0xb08fead7 switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0xb093667b wwan_port_rx EXPORT_SYMBOL_GPL vmlinux 0xb0938d80 dma_release_channel EXPORT_SYMBOL_GPL vmlinux 0xb09ce7c1 thp_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0xb0a3a571 __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xb0a43cef perf_aux_output_skip EXPORT_SYMBOL_GPL vmlinux 0xb0ab4a4b serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0xb0b5840c ata_link_online EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bab30b snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL vmlinux 0xb0c8302a regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xb0ca6497 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xb0f35690 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xb0c76c6a snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0xb0eab248 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xb0f406de ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0xb0fbb722 clk_fractional_divider_ops EXPORT_SYMBOL_GPL vmlinux 0xb1041916 usb_phy_set_event EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end @@ -23071,95 +23070,94 @@ EXPORT_SYMBOL_GPL vmlinux 0xb1184ceb anon_transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0xb11988b8 devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number EXPORT_SYMBOL_GPL vmlinux 0xb1201c6f rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xb1217e66 vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0xb12f9e47 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xb13e6bc8 sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0xb14255c5 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0xb14b0d56 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0xb1439ff9 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xb150359e __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb152b331 ata_qc_complete EXPORT_SYMBOL_GPL vmlinux 0xb158cccd md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xb15d9950 ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb18aa0b5 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL vmlinux 0xb19e1ae8 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xb1ac20e9 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xb1a1ceed stmpe_enable EXPORT_SYMBOL_GPL vmlinux 0xb1adcc03 scmi_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xb1b6d442 led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1d3db10 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0xb1d0f8d1 regulator_suspend_enable EXPORT_SYMBOL_GPL vmlinux 0xb1d91d70 PageHuge EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs EXPORT_SYMBOL_GPL vmlinux 0xb1e86d8d pcie_port_find_device EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb1fd9093 shash_register_instance EXPORT_SYMBOL_GPL vmlinux 0xb20af283 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xb20c7e75 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb23938ed l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0xb23d0310 fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0xb23e9816 is_virtio_device EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq EXPORT_SYMBOL_GPL vmlinux 0xb2433cdf nvmem_device_find EXPORT_SYMBOL_GPL vmlinux 0xb24aa644 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0xb2660ead hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xb251c579 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb25ea6ad spi_split_transfers_maxsize EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr EXPORT_SYMBOL_GPL vmlinux 0xb2761cfb fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb28ff4c6 perf_aux_output_flag EXPORT_SYMBOL_GPL vmlinux 0xb29fd169 usb_get_maximum_ssp_rate EXPORT_SYMBOL_GPL vmlinux 0xb2abaa2a mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0xb2bc1ea9 skb_partial_csum_set EXPORT_SYMBOL_GPL vmlinux 0xb2bc37ba mmu_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait EXPORT_SYMBOL_GPL vmlinux 0xb2d94d60 rockchip_clk_register_ddrclk EXPORT_SYMBOL_GPL vmlinux 0xb2dc5edc rockchip_pcie_init_port EXPORT_SYMBOL_GPL vmlinux 0xb2de4cf2 clk_gate_ops EXPORT_SYMBOL_GPL vmlinux 0xb2df0bcf gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0xb2df5bff skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0xb2e53d83 security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f22b89 bpf_prog_free EXPORT_SYMBOL_GPL vmlinux 0xb2fadc38 clk_regmap_gate_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xb2fbf0e7 ping_unhash EXPORT_SYMBOL_GPL vmlinux 0xb2fecbe2 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xb305a3ae fib6_new_table EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb31e82d7 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xb30e34df __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0xb32ce9ed omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0xb32e8039 skcipher_walk_done EXPORT_SYMBOL_GPL vmlinux 0xb333e143 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xb33e95b0 trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0xb342b126 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xb3430ce7 netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0xb349c6ed vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xb351cdf8 crypto_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0xb3563ebe of_platform_populate EXPORT_SYMBOL_GPL vmlinux 0xb35cbb05 __put_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0xb35eedb7 strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0xb369f8d4 sysfs_remove_group EXPORT_SYMBOL_GPL vmlinux 0xb378559e freq_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0xb38259b0 clockevents_unbind_device EXPORT_SYMBOL_GPL vmlinux 0xb3871255 dev_pm_opp_free_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0xb38b70d2 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xb399fbfa thermal_zone_unbind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0xb39b9bab of_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0xb39c7cf9 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0xb3a83c71 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL vmlinux 0xb3a9149f ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0xb3aac20d regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xb3aab1bb sdhci_end_tuning +EXPORT_SYMBOL_GPL vmlinux 0xb3b33db2 snd_soc_dai_active +EXPORT_SYMBOL_GPL vmlinux 0xb3b54658 fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xb3c04e3e led_trigger_blink_oneshot EXPORT_SYMBOL_GPL vmlinux 0xb3c5ba90 get_mtd_device_nm EXPORT_SYMBOL_GPL vmlinux 0xb3cc653e class_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0xb3df1f5e xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0xb3e72ec1 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xb3e8fd19 crypto_stats_kpp_set_secret EXPORT_SYMBOL_GPL vmlinux 0xb3f538cb page_reporting_register EXPORT_SYMBOL_GPL vmlinux 0xb3f9266f of_msi_configure EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xb41dc12b iommu_set_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xb41ed413 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xb41f0aa0 ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0xb43babfa regulator_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb44d66a2 devfreq_get_devfreq_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled EXPORT_SYMBOL_GPL vmlinux 0xb460f9d4 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xb4685536 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xb4754c31 netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0xb4838d79 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xb48ba907 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0xb49cada2 vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0xb4a32924 devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0xb4ae236a msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb49ffd80 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xb4a74ca1 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xb4ad85a1 ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4bd1507 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xb4c19906 device_rename EXPORT_SYMBOL_GPL vmlinux 0xb4c1fecb crypto_aes_set_key EXPORT_SYMBOL_GPL vmlinux 0xb4c48516 fuse_dev_alloc_install EXPORT_SYMBOL_GPL vmlinux 0xb4c48ede __pm_runtime_disable @@ -23168,57 +23166,50 @@ EXPORT_SYMBOL_GPL vmlinux 0xb4cf8fcf fat_time_unix2fat 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 0xb5055698 pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0xb507e93d rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xb50cf48b __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xb50f2761 regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0xb51d6375 tty_set_termios EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb5215356 sdhci_switch_external_dma EXPORT_SYMBOL_GPL vmlinux 0xb5253ba9 of_pci_range_parser_init EXPORT_SYMBOL_GPL vmlinux 0xb5298549 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0xb52ac157 i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0xb53099db gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0xb53b56f1 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb541f289 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xb5470e4c mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0xb547b5d4 call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0xb547e4ff handle_fasteoi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xb57ced06 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xb58aa9b0 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xb58713a3 fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0xb5ac799f pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0xb5b4c2e8 key_type_encrypted EXPORT_SYMBOL_GPL vmlinux 0xb5b95837 __list_lru_init EXPORT_SYMBOL_GPL vmlinux 0xb5c43fb3 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0xb5c58901 pskb_put EXPORT_SYMBOL_GPL vmlinux 0xb5c81bdb ata_sff_qc_issue EXPORT_SYMBOL_GPL vmlinux 0xb5dcd8a0 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xb5de0e20 devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0xb5e981e5 device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xb6041751 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xb5e61577 inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb6284dd5 shmem_truncate_range EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb64acab9 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xb6529261 shash_ahash_update EXPORT_SYMBOL_GPL vmlinux 0xb6653c9c ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xb66729b0 snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL vmlinux 0xb66862fc of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xb66e7ada dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket EXPORT_SYMBOL_GPL vmlinux 0xb67ae235 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xb6866e5f xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xb67b7030 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xb682ea8f mnt_want_write_file EXPORT_SYMBOL_GPL vmlinux 0xb69d5c00 adp5520_write EXPORT_SYMBOL_GPL vmlinux 0xb6a79def pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xb6b4facc snd_soc_jack_add_zones EXPORT_SYMBOL_GPL vmlinux 0xb6b873f4 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xb6c1c318 nl_table EXPORT_SYMBOL_GPL vmlinux 0xb6c58235 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0xb6d48b93 __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb71150a6 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0xb72567f5 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xb71c6b8f clk_gate_restore_context EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase EXPORT_SYMBOL_GPL vmlinux 0xb73d5c71 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0xb73dff46 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL vmlinux 0xb740281a sdhci_free_host EXPORT_SYMBOL_GPL vmlinux 0xb74538d2 kprobe_event_cmd_init EXPORT_SYMBOL_GPL vmlinux 0xb7481226 gov_attr_set_init EXPORT_SYMBOL_GPL vmlinux 0xb7491c17 lzorle1x_1_compress EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port EXPORT_SYMBOL_GPL vmlinux 0xb74cefa1 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xb752d081 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xb75a2432 pwm_capture EXPORT_SYMBOL_GPL vmlinux 0xb75e3f19 usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0xb7696e34 uart_get_rs485_mode EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb @@ -23226,198 +23217,211 @@ EXPORT_SYMBOL_GPL vmlinux 0xb77db4cd software_node_find_by_name EXPORT_SYMBOL_GPL vmlinux 0xb78388df xhci_init_driver EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7a9ac70 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0xb7ae9098 pci_vfs_assigned EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier EXPORT_SYMBOL_GPL vmlinux 0xb7d317ba __reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xb7dfa120 rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0xb7e01ef2 pinconf_generic_dump_config EXPORT_SYMBOL_GPL vmlinux 0xb7e4f0ec of_platform_depopulate EXPORT_SYMBOL_GPL vmlinux 0xb7e65677 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xb8045ba8 __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xb808df28 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xb7ed715b phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable -EXPORT_SYMBOL_GPL vmlinux 0xb8396dca crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xb825a30e bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xb8496daa crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xb84b9dfa crypto_create_tfm_node EXPORT_SYMBOL_GPL vmlinux 0xb856a271 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xb8578e4e i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0xb85984bc nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0xb85e42b1 tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0xb85f73fb gpmc_omap_onenand_set_timings EXPORT_SYMBOL_GPL vmlinux 0xb86758bf unregister_kprobe EXPORT_SYMBOL_GPL vmlinux 0xb86eef2d tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xb874a1df vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xb87a79b7 devlink_param_register EXPORT_SYMBOL_GPL vmlinux 0xb88105df spi_mem_poll_status EXPORT_SYMBOL_GPL vmlinux 0xb885d816 nand_gpio_waitrdy EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state EXPORT_SYMBOL_GPL vmlinux 0xb88e70d0 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xb8921031 l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0xb89bfc6c mtd_ooblayout_count_freebytes EXPORT_SYMBOL_GPL vmlinux 0xb8a64d4a sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0xb8ac88a9 ata_sas_port_suspend EXPORT_SYMBOL_GPL vmlinux 0xb8b07853 irq_chip_release_resources_parent EXPORT_SYMBOL_GPL vmlinux 0xb8b9d58c phy_put EXPORT_SYMBOL_GPL vmlinux 0xb8bd6fc5 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb8c2ed79 snd_soc_find_dai EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8cfccb7 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0xb8d5488a regulator_put EXPORT_SYMBOL_GPL vmlinux 0xb8dafff0 platform_msi_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0xb8db71d3 to_nd_blk_region EXPORT_SYMBOL_GPL vmlinux 0xb8df6daf usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xb8e1891d tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xb8e1b6c6 fwnode_property_present EXPORT_SYMBOL_GPL vmlinux 0xb8e2ca97 rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0xb8e57581 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xb8f7a85f gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xb8fad255 lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0xb8fde6e0 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xb90473be rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xb905f433 spi_mem_dtr_supports_op EXPORT_SYMBOL_GPL vmlinux 0xb90a1fcd rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xb90ab50d tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0xb90c3c4a devm_clk_get_prepared EXPORT_SYMBOL_GPL vmlinux 0xb9138620 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0xb9148589 skcipher_walk_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb91dae1a of_clk_get_parent_count EXPORT_SYMBOL_GPL vmlinux 0xb9210b9f usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xb921209f fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0xb92171af devm_reset_controller_register EXPORT_SYMBOL_GPL vmlinux 0xb9382f59 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0xb9506b52 snd_soc_add_card_controls EXPORT_SYMBOL_GPL vmlinux 0xb95095db gpiod_export_link EXPORT_SYMBOL_GPL vmlinux 0xb963acb3 pci_find_next_ht_capability EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb97205c5 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0xb9683aef crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xb9737b8f __root_device_register EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb9871a34 sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0xb996ff12 fs_kobj EXPORT_SYMBOL_GPL vmlinux 0xb99a93f5 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xb99afd28 switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0xb99d3629 synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0xb9a8b912 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xb9b15a85 clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0xb9b277dd usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xb9b2cc78 xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xb9b51e9d alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xb9b66814 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0xb9b8f821 snd_soc_jack_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9bd6d41 ahci_handle_port_intr EXPORT_SYMBOL_GPL vmlinux 0xb9be6445 pci_enable_pasid EXPORT_SYMBOL_GPL vmlinux 0xb9c4180d irq_chip_set_wake_parent EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9c8204c sdhci_execute_tuning -EXPORT_SYMBOL_GPL vmlinux 0xb9cdeca0 devlink_port_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0xb9ce7219 dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0xb9d00391 snd_soc_jack_get_type EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d30ddd synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger -EXPORT_SYMBOL_GPL vmlinux 0xb9ff6206 apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0xba032f94 btree_insert EXPORT_SYMBOL_GPL vmlinux 0xba193419 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xba1b9118 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0xba2032cc device_add_properties EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba2d23c3 inet_unhash EXPORT_SYMBOL_GPL vmlinux 0xba356214 pinmux_generic_add_function EXPORT_SYMBOL_GPL vmlinux 0xba37bec3 ata_sff_port_ops EXPORT_SYMBOL_GPL vmlinux 0xba3ba2f3 mtd_table_mutex +EXPORT_SYMBOL_GPL vmlinux 0xba65933f msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0xba7723e2 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xba934adb crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xba83fbd4 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xba93f281 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL vmlinux 0xba974625 crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0xba9e2f39 get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0xbab71662 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xbaad385c thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents EXPORT_SYMBOL_GPL vmlinux 0xbac5646d sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0xbaebc7e8 i2c_generic_scl_recovery EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu EXPORT_SYMBOL_GPL vmlinux 0xbaf35b23 ata_pci_bmdma_clear_simplex EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbaf76775 thermal_zone_device_enable EXPORT_SYMBOL_GPL vmlinux 0xbafae3bc to_nd_desc EXPORT_SYMBOL_GPL vmlinux 0xbb00ad91 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xbb0241dd sata_link_scr_lpm EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0f87cc gpiod_get EXPORT_SYMBOL_GPL vmlinux 0xbb1a17e5 power_supply_get_by_name EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb29ccaa crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0xbb376ff9 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xbb4306b9 spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xbb6225bb snd_ctl_apply_vmaster_followers EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback -EXPORT_SYMBOL_GPL vmlinux 0xbb67e031 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xbb682cdc snd_soc_unregister_component EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xbb7166d9 amba_bustype EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb85fe17 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbb8c8a58 scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0xbb9bbc48 dma_buf_put EXPORT_SYMBOL_GPL vmlinux 0xbb9e3d88 serdev_device_set_tiocm EXPORT_SYMBOL_GPL vmlinux 0xbba6ebd6 extcon_get_property EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put EXPORT_SYMBOL_GPL vmlinux 0xbbb5c524 dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xbbc3d770 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0xbbb7faf3 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbbe1809f sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xbbea0985 scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0xbbf74e03 phy_package_leave EXPORT_SYMBOL_GPL vmlinux 0xbbf95e29 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xbbf9fa3e ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xbc04cbc8 device_create_file EXPORT_SYMBOL_GPL vmlinux 0xbc086c90 usb_hub_release_port EXPORT_SYMBOL_GPL vmlinux 0xbc289f49 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xbc2a5c21 platform_get_mem_or_io EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc45201e ahci_check_ready EXPORT_SYMBOL_GPL vmlinux 0xbc5574b6 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0xbc558ff3 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xbc5679be crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xbc5a942e device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xbc6a6c48 sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc73534f snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0xbc7360a3 sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0xbc77a977 led_trigger_event EXPORT_SYMBOL_GPL vmlinux 0xbc806e81 sm501_unit_power EXPORT_SYMBOL_GPL vmlinux 0xbc83d261 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xbc8f759b regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xbc83e8d2 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0xbc851645 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xbc8c42ef crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xbcb8de7f synth_event_create EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcc361cf sdhci_adma_write_desc EXPORT_SYMBOL_GPL vmlinux 0xbcc912d5 ahci_platform_enable_phys EXPORT_SYMBOL_GPL vmlinux 0xbccb398e sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xbccb6856 devlink_port_params_unregister EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd39253 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xbcd45ce0 lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbced2772 page_cache_ra_unbounded EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbcfefeeb snd_soc_register_card EXPORT_SYMBOL_GPL vmlinux 0xbd0ab95c __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xbd0da5a3 devlink_reload_disable EXPORT_SYMBOL_GPL vmlinux 0xbd172e36 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xbd27e9e4 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0xbd251fc3 devlink_remote_reload_actions_performed EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq EXPORT_SYMBOL_GPL vmlinux 0xbd5054b1 dev_pm_opp_set_rate EXPORT_SYMBOL_GPL vmlinux 0xbd524f8a pci_scan_child_bus EXPORT_SYMBOL_GPL vmlinux 0xbd5702ef irq_remove_generic_chip EXPORT_SYMBOL_GPL vmlinux 0xbd6d414a regulator_is_enabled_regmap EXPORT_SYMBOL_GPL vmlinux 0xbd825127 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xbd8e39d6 usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0xbda24e30 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xbdae6a2e snd_soc_component_initialize EXPORT_SYMBOL_GPL vmlinux 0xbdb3354f pci_ecam_map_bus EXPORT_SYMBOL_GPL vmlinux 0xbdb459a7 devres_add -EXPORT_SYMBOL_GPL vmlinux 0xbdbcc274 iterate_mounts EXPORT_SYMBOL_GPL vmlinux 0xbdcc16fd unregister_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0xbdd8f74f usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbdde1570 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbdde60f8 sdhci_reset EXPORT_SYMBOL_GPL vmlinux 0xbde68e3f snd_soc_dapm_get_enum_double EXPORT_SYMBOL_GPL vmlinux 0xbdf4b96f percpu_ref_init EXPORT_SYMBOL_GPL vmlinux 0xbdf9fb19 usb_gadget_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xbe043f7e snd_soc_component_write_field -EXPORT_SYMBOL_GPL vmlinux 0xbe131066 __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0xbe1db961 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xbe310bf4 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0xbe336983 ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0xbe4aea03 edac_device_handle_ue_count EXPORT_SYMBOL_GPL vmlinux 0xbe55bf54 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0xbe56db36 register_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus EXPORT_SYMBOL_GPL vmlinux 0xbe6ad610 sm501_misc_control EXPORT_SYMBOL_GPL vmlinux 0xbe7129ee ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xbe7d1676 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xbe824b5a devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xbe83ae5b tcp_abort EXPORT_SYMBOL_GPL vmlinux 0xbe8500a7 iommu_device_link EXPORT_SYMBOL_GPL vmlinux 0xbe8b93f2 snd_soc_link_compr_set_params EXPORT_SYMBOL_GPL vmlinux 0xbe9687cc i2c_detect_slave_mode EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xbe97f7e5 usb_initialize_gadget EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbe9e3624 security_path_symlink EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized EXPORT_SYMBOL_GPL vmlinux 0xbeb42bbd screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xbeba6748 register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xbecce021 mtk_eint_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xbedae49b ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xbef98882 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xbedafd14 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xbee4cd3d snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0xbef1abbd regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xbef46bf9 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xbeffd301 strp_init EXPORT_SYMBOL_GPL vmlinux 0xbf014010 pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf0c2fee devlink_param_unpublish EXPORT_SYMBOL_GPL vmlinux 0xbf16b30f virtqueue_kick EXPORT_SYMBOL_GPL vmlinux 0xbf18b9f3 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbf29965e find_extend_vma EXPORT_SYMBOL_GPL vmlinux 0xbf33cac6 rockchip_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xbf3882c2 crypto_grab_skcipher EXPORT_SYMBOL_GPL vmlinux 0xbf3c2e53 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0xbf534344 ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0xbf554641 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xbf55ffb4 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xbf597641 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xbf61f6cb snd_soc_dpcm_can_be_params EXPORT_SYMBOL_GPL vmlinux 0xbf6bfd02 dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xbf6d9a0c skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0xbfa5cf4e dmi_kobj EXPORT_SYMBOL_GPL vmlinux 0xbfa7136d dev_pm_opp_get_level EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports @@ -23426,227 +23430,230 @@ EXPORT_SYMBOL_GPL vmlinux 0xbfd89238 efivar_entry_get EXPORT_SYMBOL_GPL vmlinux 0xbfdb7800 pci_create_root_bus EXPORT_SYMBOL_GPL vmlinux 0xbfdd2ba5 snd_pcm_lib_default_mmap EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfe6d236 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xbfe7ba91 netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0xbfe84dc9 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xbff6bc6e ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0xbff96d59 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xbffd6e8d ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 EXPORT_SYMBOL_GPL vmlinux 0xc018e1a0 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xc01cbb87 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc028f1c6 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xc0406482 gpiochip_unlock_as_irq EXPORT_SYMBOL_GPL vmlinux 0xc04ab019 meson8_pmx_ops EXPORT_SYMBOL_GPL vmlinux 0xc04e20c3 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xc05707b2 nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0xc0583e20 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xc05ce974 sdhci_enable_v4_mode EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq EXPORT_SYMBOL_GPL vmlinux 0xc06b77b3 __cci_control_port_by_index -EXPORT_SYMBOL_GPL vmlinux 0xc07ba941 ahci_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xc080ae50 clk_hw_get_name EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled EXPORT_SYMBOL_GPL vmlinux 0xc081f2bc bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0xc08a53f5 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xc08b10c3 __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0xc08ed992 efivar_entry_size EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc097ce75 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL vmlinux 0xc093eca8 devm_snd_soc_register_component EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited EXPORT_SYMBOL_GPL vmlinux 0xc0b29a79 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0xc0c19556 __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xc0c3f7a7 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xc0c55795 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xc0d345ef crypto_shash_update EXPORT_SYMBOL_GPL vmlinux 0xc0d6f5d5 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0xc0d85c8b regulator_allow_bypass EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0de0d9a snd_soc_dapm_mux_update_power EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 EXPORT_SYMBOL_GPL vmlinux 0xc0ec84b4 arm_iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xc0ed7e68 bpf_prog_inc EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata EXPORT_SYMBOL_GPL vmlinux 0xc0f42efd __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc0fb6c55 dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0xc10655da xas_get_mark EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support EXPORT_SYMBOL_GPL vmlinux 0xc10be6bd da9052_disable_irq EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc112d5cc devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xc114b398 __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0xc12418aa i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0xc1281d9a fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0xc12a86e6 em_dev_register_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xc12bf024 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0xc141e90f get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xc13135c3 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xc132f9ce espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0xc14fa3ea fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0xc150aca5 mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0xc1568b4b dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc155c852 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xc15aa4f1 __spi_register_driver EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded EXPORT_SYMBOL_GPL vmlinux 0xc1819f7c ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xc18327f1 device_property_read_string EXPORT_SYMBOL_GPL vmlinux 0xc1897e6b virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xc18ec62f ahci_fill_cmd_slot EXPORT_SYMBOL_GPL vmlinux 0xc19f5d3a usb_lock_device_for_reset EXPORT_SYMBOL_GPL vmlinux 0xc1a4d544 powercap_register_control_type EXPORT_SYMBOL_GPL vmlinux 0xc1adf9c0 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0xc1c90e70 devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xc1c1e6a8 of_clk_add_provider EXPORT_SYMBOL_GPL vmlinux 0xc1d07a7f devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xc1ea87d9 icc_provider_add EXPORT_SYMBOL_GPL vmlinux 0xc1ec5989 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xc1edf8ff i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0xc1f86938 driver_create_file EXPORT_SYMBOL_GPL vmlinux 0xc1f9977a unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xc1fbe7c7 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xc1ff9227 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xc1fe2c0c sdhci_runtime_suspend_host EXPORT_SYMBOL_GPL vmlinux 0xc212dbd1 __tracepoint_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc222ead3 xas_find_marked EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc23a6912 snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0xc24b8990 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xc2309620 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xc23e0c33 iterate_mounts EXPORT_SYMBOL_GPL vmlinux 0xc24d717b mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc24e14f9 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xc2513c51 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xc253d886 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xc25a32f7 devlink_sb_register EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock EXPORT_SYMBOL_GPL vmlinux 0xc273fec8 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0xc2781f96 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xc27e8e19 __traceiter_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc293240c ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0xc2957335 dev_pm_opp_get_max_clock_latency EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2d2a941 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xc2b167bf devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0xc2b16df7 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xc2cf636e tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2d22d26 gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xc2d3f0df efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0xc2d55962 work_on_cpu_key EXPORT_SYMBOL_GPL vmlinux 0xc2db7e18 xas_find -EXPORT_SYMBOL_GPL vmlinux 0xc2dbbe43 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xc2f3742e rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xc330d047 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xc3315d4d sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xc3351f8e device_set_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc34c4f66 sdhci_set_ios EXPORT_SYMBOL_GPL vmlinux 0xc34c7bfb pci_epc_mem_exit EXPORT_SYMBOL_GPL vmlinux 0xc3563e81 iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc356d343 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xc36ed139 fixed_phy_change_carrier EXPORT_SYMBOL_GPL vmlinux 0xc3701d26 devm_pm_opp_set_regulators EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc39a30c6 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL vmlinux 0xc3a18b7e sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xc3b458d0 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xc38343c4 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xc3b4e07b sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0xc3b8b6d5 usb_gadget_map_request -EXPORT_SYMBOL_GPL vmlinux 0xc3b8def0 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xc3bda2f5 spi_finalize_current_transfer EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name EXPORT_SYMBOL_GPL vmlinux 0xc3d4c404 reset_control_get_count EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3ebdc04 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc3f82297 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xc40d0374 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0xc40ef293 bpf_map_put EXPORT_SYMBOL_GPL vmlinux 0xc41942ed dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0xc426dcb3 bio_start_io_acct_time EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long EXPORT_SYMBOL_GPL vmlinux 0xc43fde20 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xc4521017 ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc4635e07 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xc468dc73 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xc46e3389 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource EXPORT_SYMBOL_GPL vmlinux 0xc487bd34 md_find_rdev_rcu EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string EXPORT_SYMBOL_GPL vmlinux 0xc4937fde ti_clk_is_in_standby -EXPORT_SYMBOL_GPL vmlinux 0xc4bb929d locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0xc4c0bf46 __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0xc4cf2420 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0xc4db0f58 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xc4d824e4 ata_host_init EXPORT_SYMBOL_GPL vmlinux 0xc4dddc63 nand_readid_op -EXPORT_SYMBOL_GPL vmlinux 0xc4e7b9fe xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xc4df4f44 regulator_force_disable EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset EXPORT_SYMBOL_GPL vmlinux 0xc4f84b51 pinctrl_utils_reserve_map EXPORT_SYMBOL_GPL vmlinux 0xc50b4b3d device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xc52aa142 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xc52bbdae perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xc516d513 scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0xc533d69e pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xc5341d9f crypto_stats_akcipher_verify EXPORT_SYMBOL_GPL vmlinux 0xc53c4249 nand_change_read_column_op +EXPORT_SYMBOL_GPL vmlinux 0xc542682b wakeup_source_remove EXPORT_SYMBOL_GPL vmlinux 0xc5446d1d lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xc552c869 perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0xc55f8b77 bus_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc5619fe6 gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0xc5637348 usb_udc_vbus_handler 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 0xc5817676 vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy EXPORT_SYMBOL_GPL vmlinux 0xc58ac0a0 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xc58b1cd6 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xc59f5de7 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL vmlinux 0xc5a2cef2 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0xc5a38059 sdhci_suspend_host EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon EXPORT_SYMBOL_GPL vmlinux 0xc5c89ef5 genphy_c45_read_mdix EXPORT_SYMBOL_GPL vmlinux 0xc5ccd6de rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0xc5d2153f device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0xc5db3710 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xc5e598c2 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xc5d589da wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xc5e0dcc4 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xc5fbe9f6 cpts_create EXPORT_SYMBOL_GPL vmlinux 0xc60a1631 thermal_zone_of_sensor_unregister EXPORT_SYMBOL_GPL vmlinux 0xc60ccf52 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc60fbffc housekeeping_affine EXPORT_SYMBOL_GPL vmlinux 0xc6120860 snd_soc_bytes_info_ext EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc62366bc snd_soc_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xc61a4629 crypto_register_template EXPORT_SYMBOL_GPL vmlinux 0xc6455d4a ata_bmdma_error_handler EXPORT_SYMBOL_GPL vmlinux 0xc645fcf3 __tracepoint_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0xc64ae7d3 fat_setattr EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66fa5b7 perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0xc6705742 usb_reset_endpoint EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable EXPORT_SYMBOL_GPL vmlinux 0xc6788f4f snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL vmlinux 0xc6844230 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xc69046ec sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0xc699c9cd fwnode_property_get_reference_args EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool EXPORT_SYMBOL_GPL vmlinux 0xc69e1f09 dm_copy_name_and_uuid EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6ae7c91 skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0xc6b781be vp_modern_set_features EXPORT_SYMBOL_GPL vmlinux 0xc6b8bf73 snd_soc_put_enum_double EXPORT_SYMBOL_GPL vmlinux 0xc6ba1a80 bus_for_each_drv EXPORT_SYMBOL_GPL vmlinux 0xc6c0f891 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL vmlinux 0xc6c89ab3 sdhci_runtime_suspend_host EXPORT_SYMBOL_GPL vmlinux 0xc6ccaee5 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc6dc8ed4 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xc6d7b893 gpiod_to_irq 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 0xc6efcd1b rtc_update_irq EXPORT_SYMBOL_GPL vmlinux 0xc6f4b1a4 snd_pcm_stream_lock_irq EXPORT_SYMBOL_GPL vmlinux 0xc6fa67ae dev_attr_ncq_prio_enable EXPORT_SYMBOL_GPL vmlinux 0xc706dba6 fscrypt_ioctl_remove_key EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc7334d71 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc73ce93e sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xc74fbe62 sdhci_request_atomic EXPORT_SYMBOL_GPL vmlinux 0xc752704c dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xc7533f97 ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0xc7563c62 bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0xc75d0509 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xc76fbb4a ahci_do_softreset EXPORT_SYMBOL_GPL vmlinux 0xc77c76ad iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0xc7850c67 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xc790aa4d crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0xc79144f5 trace_seq_putmem_hex EXPORT_SYMBOL_GPL vmlinux 0xc79e6e24 led_set_brightness_nosleep EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a2444a ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7d25e07 mmc_app_cmd EXPORT_SYMBOL_GPL vmlinux 0xc7d9406f pci_epc_set_msix EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer EXPORT_SYMBOL_GPL vmlinux 0xc7e78b2e vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0xc7ef3513 null_dailink_component -EXPORT_SYMBOL_GPL vmlinux 0xc7ef7117 __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop EXPORT_SYMBOL_GPL vmlinux 0xc803615c md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xc8141a5a ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xc8156347 devlink_reload_enable EXPORT_SYMBOL_GPL vmlinux 0xc81baae3 ti_cm_get_macid -EXPORT_SYMBOL_GPL vmlinux 0xc82099c2 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xc81d63b9 crypto_register_akcipher EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL vmlinux 0xc828a041 init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xc829b35b pci_generic_config_write EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc8343bfc nf_route EXPORT_SYMBOL_GPL vmlinux 0xc83a0779 devm_regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xc8402046 powercap_unregister_control_type EXPORT_SYMBOL_GPL vmlinux 0xc8483e25 tpm_tis_resume EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire EXPORT_SYMBOL_GPL vmlinux 0xc8789b73 unix_table_lock EXPORT_SYMBOL_GPL vmlinux 0xc889b848 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xc88df3dc ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0xc892c5c5 irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0xc894a07d clk_register +EXPORT_SYMBOL_GPL vmlinux 0xc8a00173 regmap_attach_dev EXPORT_SYMBOL_GPL vmlinux 0xc8a4821a devm_pm_opp_set_clkname EXPORT_SYMBOL_GPL vmlinux 0xc8a6b8f1 usb_gadget_vbus_disconnect EXPORT_SYMBOL_GPL vmlinux 0xc8aa8571 nand_ecc_restore_req -EXPORT_SYMBOL_GPL vmlinux 0xc8b07006 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xc8afccf3 gpiod_set_debounce EXPORT_SYMBOL_GPL vmlinux 0xc8d5f4dd pinctrl_enable EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8ed188f crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0xc8ee5263 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xc8f446e4 pci_host_common_probe EXPORT_SYMBOL_GPL vmlinux 0xc8fb2ef7 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xc8fe8406 icc_set_tag EXPORT_SYMBOL_GPL vmlinux 0xc90c2f6c fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0xc9172aff pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xc92436cb devlink_net EXPORT_SYMBOL_GPL vmlinux 0xc926d9e0 devm_regmap_init_vexpress_config EXPORT_SYMBOL_GPL vmlinux 0xc932e1cf of_get_display_timings EXPORT_SYMBOL_GPL vmlinux 0xc937dc50 vga_default_device @@ -23655,224 +23662,231 @@ EXPORT_SYMBOL_GPL vmlinux 0xc951e7d7 da903x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0xc95398c8 ahci_platform_suspend EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist EXPORT_SYMBOL_GPL vmlinux 0xc9651b5e extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc9665c3e crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0xc967e9fc sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xc96b6291 mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc974c5ba switchdev_handle_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0xc980ba28 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xc9820b83 __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xc9825415 percpu_ref_is_zero EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc98f4b10 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xc98cbbfe crypto_unregister_scomp EXPORT_SYMBOL_GPL vmlinux 0xc9a228ce property_entries_free EXPORT_SYMBOL_GPL vmlinux 0xc9aa1203 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xc9b50ecc snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL vmlinux 0xc9bb89e1 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xc9ab186e dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0xc9c12fbf thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0xc9d64324 crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0xc9d96a1d led_put -EXPORT_SYMBOL_GPL vmlinux 0xc9e2ddf4 ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0xc9e96db4 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xc9e6d8d6 dev_pm_qos_update_user_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9f969d2 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xc9f6894a device_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit EXPORT_SYMBOL_GPL vmlinux 0xc9fc1567 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xc9fd5925 sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put EXPORT_SYMBOL_GPL vmlinux 0xc9fe9097 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xca07a5a9 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xca05acb9 security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0xca187675 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0xca19faf1 devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0xca2269ce pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xca286a3b crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0xca2ecd50 snd_soc_get_volsw_range EXPORT_SYMBOL_GPL vmlinux 0xca327c31 of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0xca35f1eb sdhci_end_tuning EXPORT_SYMBOL_GPL vmlinux 0xca44c518 clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops EXPORT_SYMBOL_GPL vmlinux 0xca473337 of_genpd_add_subdomain EXPORT_SYMBOL_GPL vmlinux 0xca4eb652 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xca6b2a1a i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xca6c886f of_dma_request_slave_channel EXPORT_SYMBOL_GPL vmlinux 0xca702fb3 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xca75b1a9 snd_soc_cnew EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop EXPORT_SYMBOL_GPL vmlinux 0xca80aa3d sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xca990365 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xca907108 udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0xca9a1625 device_bind_driver EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free EXPORT_SYMBOL_GPL vmlinux 0xcaa868da usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xcab99f19 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xcabc34cc device_store_int EXPORT_SYMBOL_GPL vmlinux 0xcabd8eba xhci_update_hub_device -EXPORT_SYMBOL_GPL vmlinux 0xcabd8fb6 devm_regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock EXPORT_SYMBOL_GPL vmlinux 0xcabe1206 list_lru_destroy EXPORT_SYMBOL_GPL vmlinux 0xcac1cf66 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xcaca86ed ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xcadcef48 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xcaeb9646 snd_soc_tplg_widget_bind_event EXPORT_SYMBOL_GPL vmlinux 0xcaecc540 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xcaf0f7e4 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xcaf40bc7 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xcaf517cd gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xcafc1d00 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcafd3347 bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0xcaff40d6 snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL vmlinux 0xcb005d42 regulator_list_hardware_vsel EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb2220b7 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xcb24d96e rq_flush_dcache_pages EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xcb32a60c devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xcb38b6f6 rdev_get_id EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj EXPORT_SYMBOL_GPL vmlinux 0xcb56f5da vma_kernel_pagesize EXPORT_SYMBOL_GPL vmlinux 0xcb588605 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL vmlinux 0xcb592a28 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xcb5fbb70 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xcb6c41de regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xcb90cb1c crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xcb73d4bd __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xcb957088 mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xcb9d44cb shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xcba165ab sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0xcbc79b49 mmc_get_ext_csd EXPORT_SYMBOL_GPL vmlinux 0xcbcf14d2 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xcbd148b8 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL vmlinux 0xcbd4b943 crypto_stats_akcipher_verify EXPORT_SYMBOL_GPL vmlinux 0xcbdcc02c iommu_device_unlink EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages EXPORT_SYMBOL_GPL vmlinux 0xcbef0a4f phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0xcbf3617f rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xcbf56ec6 of_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xcc02cc8a dmaengine_unmap_put EXPORT_SYMBOL_GPL vmlinux 0xcc0db119 is_software_node -EXPORT_SYMBOL_GPL vmlinux 0xcc0e03d5 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0xcc178688 wwan_register_ops EXPORT_SYMBOL_GPL vmlinux 0xcc20fd2d ata_sff_hsm_move EXPORT_SYMBOL_GPL vmlinux 0xcc2aa377 meson_a1_parse_dt_extra EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc2e067d dev_fwnode EXPORT_SYMBOL_GPL vmlinux 0xcc312197 clk_mux_ops EXPORT_SYMBOL_GPL vmlinux 0xcc3226cd pciserial_init_ports EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister EXPORT_SYMBOL_GPL vmlinux 0xcc3f9ee4 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xcc41f9d1 sdhci_pltfm_free EXPORT_SYMBOL_GPL vmlinux 0xcc421600 __tracepoint_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0xcc481396 usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL vmlinux 0xcc542be2 ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0xcc54b7fb snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL vmlinux 0xcc561b68 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xcc78c476 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xcc846163 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xcc784bde regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc EXPORT_SYMBOL_GPL vmlinux 0xcc95ef9c misc_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xcc97a9bd umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0xcca2b4dc get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0xcca59b20 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xcca56e05 blk_trace_setup EXPORT_SYMBOL_GPL vmlinux 0xcca9b2c5 usb_gadget_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xccb945ef i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xccb135d1 spi_replace_transfers +EXPORT_SYMBOL_GPL vmlinux 0xccb16568 sdhci_cqe_disable EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string EXPORT_SYMBOL_GPL vmlinux 0xccdee2e9 serdev_device_write_buf EXPORT_SYMBOL_GPL vmlinux 0xcce7f85d devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xcceaf540 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xccf1e39b sdhci_get_property EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start EXPORT_SYMBOL_GPL vmlinux 0xcd007702 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0xcd078dd6 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xcd1c1ba9 dapm_clock_event EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd25edbe vfs_inode_has_locks EXPORT_SYMBOL_GPL vmlinux 0xcd2b27b9 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xcd381d8e inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xcd3988eb ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0xcd49a610 snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xcd4aaea0 fwnode_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xcd4badf9 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xcd57546b crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0xcd5bfc4b perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd5666c1 bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0xcd613cb4 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0xcd6292da devlink_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcd6715a4 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xcd68ee53 snd_soc_unregister_component EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add EXPORT_SYMBOL_GPL vmlinux 0xcd717b9a sdhci_pltfm_resume +EXPORT_SYMBOL_GPL vmlinux 0xcd760c11 sdio_readl 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 0xcdaeace0 platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdbd3b48 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xcdbea314 gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0xcdc32745 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xcdc6ef11 snd_soc_jack_add_gpios EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdce6bc0 sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xcde66774 tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0xcdefe89f mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0xce03d46d thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xce04899b ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xcdea496e xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xcdfd5bb3 __devm_spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0xce0bd4e7 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xce3c6a4f fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xce407144 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xce5985bc phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xce0e889b devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xce1811c5 cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching EXPORT_SYMBOL_GPL vmlinux 0xcea1f84c fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0xceaacf5a add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xcea309bd regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xcea8246f __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xceac1c79 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xceb2667b receive_fd +EXPORT_SYMBOL_GPL vmlinux 0xceb8544e gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xcec06e9f fwnode_get_phy_node EXPORT_SYMBOL_GPL vmlinux 0xcec5c85f fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xced83576 hrtimer_init_sleeper EXPORT_SYMBOL_GPL vmlinux 0xcedbc15e usb_of_get_interface_node EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee7744c regmap_raw_write EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply -EXPORT_SYMBOL_GPL vmlinux 0xceecf84a crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcef35983 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xcef3f6c4 ata_ehi_clear_desc EXPORT_SYMBOL_GPL vmlinux 0xcef4d5b4 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xcef72eea check_move_unevictable_pages EXPORT_SYMBOL_GPL vmlinux 0xcefdef52 of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xceff7136 crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0xcf1c12d8 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0xcf213178 regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global EXPORT_SYMBOL_GPL vmlinux 0xcf2bc3bb pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xcf2e9c1b __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xcf345942 addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0xcf5091ba class_unregister EXPORT_SYMBOL_GPL vmlinux 0xcf651caf snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL vmlinux 0xcf68352a sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0xcf77fd76 devlink_free EXPORT_SYMBOL_GPL vmlinux 0xcf79106b to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0xcf90afa6 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0xcf9e8557 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xcf9efd91 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0xcfa9bfd3 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xcf9d5370 addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0xcfbd50d9 regulator_disable_regmap EXPORT_SYMBOL_GPL vmlinux 0xcfc0857f nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0xcfc8fa5d devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xcfca1748 bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0xcfcbaded virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xcfd2a743 regulator_bulk_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xcfd597db fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0xcfe67e83 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xcfd8905d xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xcff2d5e4 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcff6d0a1 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xd00c0f43 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xd018719f device_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0xd0235aab dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0xd027c6c0 __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0xd02b6e1b pci_epf_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xd03b7640 smpboot_unregister_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd040f71a snd_soc_get_dai_id +EXPORT_SYMBOL_GPL vmlinux 0xd04a6b62 tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event EXPORT_SYMBOL_GPL vmlinux 0xd051b84c of_usb_get_dr_mode_by_phy -EXPORT_SYMBOL_GPL vmlinux 0xd0587d6f clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xd05a146f regulator_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06a0a8e spi_setup -EXPORT_SYMBOL_GPL vmlinux 0xd0770a83 ping_err EXPORT_SYMBOL_GPL vmlinux 0xd08cfaf0 iommu_group_add_device EXPORT_SYMBOL_GPL vmlinux 0xd08eba0c class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0xd0950b00 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xd0978b3c crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xd09a6074 cpufreq_register_governor EXPORT_SYMBOL_GPL vmlinux 0xd0bb2d09 pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0xd0bf07b6 component_unbind_all EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c9fe9e gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xd0cfb2bc perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0e04c57 crypto_unregister_ahashes EXPORT_SYMBOL_GPL vmlinux 0xd0fb9c41 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xd111c21a register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xd11211bf sdio_register_driver EXPORT_SYMBOL_GPL vmlinux 0xd12159a7 stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0xd12beac6 devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0xd136b061 pm_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0xd137c1f7 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xd13f7bef iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear EXPORT_SYMBOL_GPL vmlinux 0xd14ca08b nand_ecc_init_req_tweaking EXPORT_SYMBOL_GPL vmlinux 0xd14e2803 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0xd1562a1d crypto_stats_kpp_generate_public_key EXPORT_SYMBOL_GPL vmlinux 0xd177b439 dw_pcie_own_conf_map_bus EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0xd17ef14d ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0xd1891353 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xd19da95b pm_relax EXPORT_SYMBOL_GPL vmlinux 0xd1a07694 tpm_pm_suspend EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1b5baee free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xd1bf5f95 net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0xd1c2b56e pci_remove_root_bus EXPORT_SYMBOL_GPL vmlinux 0xd1c2e26c __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd1c508b8 bio_start_io_acct EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1e7fdd6 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xd1e2d9ab vfs_submount EXPORT_SYMBOL_GPL vmlinux 0xd1ec4f09 md_account_bio EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f313c3 kick_process -EXPORT_SYMBOL_GPL vmlinux 0xd20cd9b5 netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21f019b regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xd2482f94 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL vmlinux 0xd25007df __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xd23fc328 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd24cc940 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xd24fef4f __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xd250238d sdio_enable_func EXPORT_SYMBOL_GPL vmlinux 0xd252434e blk_mq_hctx_set_fq_lock_class EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write EXPORT_SYMBOL_GPL vmlinux 0xd264af4c attribute_container_register @@ -23880,217 +23894,219 @@ EXPORT_SYMBOL_GPL vmlinux 0xd270e977 pci_bridge_emul_conf_write EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xd27bd0c3 pci_find_vsec_capability EXPORT_SYMBOL_GPL vmlinux 0xd28059c9 devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0xd2847d0d scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0xd2983e9e ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0xd29aa77d i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0xd2900f94 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd298abb9 sdhci_remove_host EXPORT_SYMBOL_GPL vmlinux 0xd29ab31d watchdog_set_last_hw_keepalive EXPORT_SYMBOL_GPL vmlinux 0xd2a10aab __pm_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0xd2a265ea kthread_mod_delayed_work EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode EXPORT_SYMBOL_GPL vmlinux 0xd2bd7905 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xd2cfa040 crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0xd2dc1974 pci_cfg_access_lock EXPORT_SYMBOL_GPL vmlinux 0xd2dd0f18 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0xd2e57021 filemap_read -EXPORT_SYMBOL_GPL vmlinux 0xd2e86dec platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xd2f7a0cc wwan_register_ops -EXPORT_SYMBOL_GPL vmlinux 0xd3013484 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xd2e462d9 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0xd2eeb018 put_device +EXPORT_SYMBOL_GPL vmlinux 0xd2f011a0 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd2f01925 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0xd3046552 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xd314a3b8 crypto_unregister_instance EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts EXPORT_SYMBOL_GPL vmlinux 0xd31c80be devm_kstrdup_const EXPORT_SYMBOL_GPL vmlinux 0xd32add10 snd_soc_put_xr_sx EXPORT_SYMBOL_GPL vmlinux 0xd32e73c7 bio_trim EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd34aff1d cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0xd34cc3ec snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL vmlinux 0xd3550096 spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0xd3568810 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xd35d3189 ahci_qc_issue EXPORT_SYMBOL_GPL vmlinux 0xd35e7b13 led_blink_set_oneshot EXPORT_SYMBOL_GPL vmlinux 0xd3628c0b pci_epc_map_msi_irq EXPORT_SYMBOL_GPL vmlinux 0xd36e048a power_supply_property_is_writeable EXPORT_SYMBOL_GPL vmlinux 0xd3793aac debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0xd37dea71 sdhci_remove_host EXPORT_SYMBOL_GPL vmlinux 0xd38515b3 rio_register_mport EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 EXPORT_SYMBOL_GPL vmlinux 0xd39eb823 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd3abe003 skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0xd3b1ab4f rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd3b46d79 gpiochip_line_is_persistent EXPORT_SYMBOL_GPL vmlinux 0xd3c672b8 nand_subop_get_data_len +EXPORT_SYMBOL_GPL vmlinux 0xd3c9da89 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xd3ca2e6a ahci_start_fis_rx EXPORT_SYMBOL_GPL vmlinux 0xd3d09ed3 bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0xd3d337d5 sysfs_merge_group EXPORT_SYMBOL_GPL vmlinux 0xd3e97c21 hugetlb_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xd3e99a79 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xd3ef8b9a rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage EXPORT_SYMBOL_GPL vmlinux 0xd3f1eea2 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xd3f7ef42 cpts_unregister EXPORT_SYMBOL_GPL vmlinux 0xd3fc063d wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd3ff9f0b wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd404efac wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd4097add lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0xd40b810b phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0xd4163af8 usb_unanchor_urb EXPORT_SYMBOL_GPL vmlinux 0xd41a182e balloon_page_list_enqueue EXPORT_SYMBOL_GPL vmlinux 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL vmlinux 0xd4267ebe skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xd426ec6e int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0xd432f910 led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0xd437b5d7 bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0xd4439ce1 sm501_set_clock EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44a7aa7 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd48b3b28 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0xd491298a __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd451820a sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xd47b012d devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0xd499c42e percpu_ref_kill_and_confirm EXPORT_SYMBOL_GPL vmlinux 0xd49c6491 rio_mport_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0xd49d6dd9 of_devfreq_cooling_register_power EXPORT_SYMBOL_GPL vmlinux 0xd49fe416 usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0xd4a8371e shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xd4a511af regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xd4a87edf device_link_remove EXPORT_SYMBOL_GPL vmlinux 0xd4afd993 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0xd4b3ebc4 devm_snd_soc_register_card EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done EXPORT_SYMBOL_GPL vmlinux 0xd4b6258d find_asymmetric_key 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 0xd4d2360c spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xd4d9b4a1 regulator_get EXPORT_SYMBOL_GPL vmlinux 0xd4e23d81 dm_accept_partial_bio EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4e7223f gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0xd4ec49c5 gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0xd4ee2d2d pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xd4f3320c wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xd4fad7d2 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xd515e020 msg_zerocopy_alloc EXPORT_SYMBOL_GPL vmlinux 0xd51942d5 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd5199f56 devlink_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0xd51d83f0 __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value EXPORT_SYMBOL_GPL vmlinux 0xd531dfc0 dev_pm_opp_set_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0xd53d8d3e gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xd53f14d4 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xd5429a14 device_match_devt EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL vmlinux 0xd549f8e0 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xd54f268e snd_soc_of_put_dai_link_codecs EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata EXPORT_SYMBOL_GPL vmlinux 0xd561d617 sysfs_remove_mount_point EXPORT_SYMBOL_GPL vmlinux 0xd56378aa devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xd5657da5 devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0xd57646bd eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0xd599170c fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0xd5997e9d snd_soc_dai_compr_set_metadata EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5a6309c crypto_comp_decompress EXPORT_SYMBOL_GPL vmlinux 0xd5ac24e5 blocking_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xd5d0d76f register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xd5d96d51 thermal_cooling_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xd5e3b7d2 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xd5f25932 mdiobus_modify EXPORT_SYMBOL_GPL vmlinux 0xd60b867d proc_get_parent_data EXPORT_SYMBOL_GPL vmlinux 0xd6164816 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0xd61ac044 inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xd61e1954 pci_dev_run_wake EXPORT_SYMBOL_GPL vmlinux 0xd62393cc pci_sriov_get_totalvfs EXPORT_SYMBOL_GPL vmlinux 0xd63834cd to_nvdimm_bus_dev EXPORT_SYMBOL_GPL vmlinux 0xd63bf819 extcon_register_notifier_all EXPORT_SYMBOL_GPL vmlinux 0xd640a141 vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0xd648680a regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock EXPORT_SYMBOL_GPL vmlinux 0xd65937cd fat_remove_entries EXPORT_SYMBOL_GPL vmlinux 0xd65a3c50 xas_split -EXPORT_SYMBOL_GPL vmlinux 0xd65bf0d4 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xd65c59ed regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xd6602792 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0xd66ae7fa sdio_writel EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget EXPORT_SYMBOL_GPL vmlinux 0xd6767995 led_trigger_blink EXPORT_SYMBOL_GPL vmlinux 0xd679d6bf nand_read_oob_op -EXPORT_SYMBOL_GPL vmlinux 0xd6a2c0ad regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xd6a80eed fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xd6931c3a sdhci_reset_tuning +EXPORT_SYMBOL_GPL vmlinux 0xd6bb05b1 snd_soc_dpcm_get_substream EXPORT_SYMBOL_GPL vmlinux 0xd6bfe93a __fscrypt_inode_uses_inline_crypto EXPORT_SYMBOL_GPL vmlinux 0xd6c27da0 dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xd6cf8f6c cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xd6d1de1b ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd6d2fa09 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xd6d92f0c device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xd6de4264 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd6d00e5b phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd6d3ff29 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0xd6e075bf usb_of_get_device_node EXPORT_SYMBOL_GPL vmlinux 0xd6e422a7 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xd6f63a94 device_add +EXPORT_SYMBOL_GPL vmlinux 0xd6fa4299 icc_enable EXPORT_SYMBOL_GPL vmlinux 0xd7194f9a sm501_find_clock EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end EXPORT_SYMBOL_GPL vmlinux 0xd73b6ecb pm_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0xd73cb561 tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0xd742c3a5 regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0xd74a0a3f pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0xd7601236 add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0xd764288c usb_gadget_map_request_by_dev EXPORT_SYMBOL_GPL vmlinux 0xd766e8f2 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xd7689826 thermal_zone_get_zone_by_name EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd76c4ae9 __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0xd771c895 nanddev_bbt_cleanup EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl EXPORT_SYMBOL_GPL vmlinux 0xd775061a virtio_add_status EXPORT_SYMBOL_GPL vmlinux 0xd7754064 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xd77bc54f raw_abort EXPORT_SYMBOL_GPL vmlinux 0xd780f36b dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xd788e9a0 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xd78f60d7 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xd7983be0 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xd79da07a net_selftest +EXPORT_SYMBOL_GPL vmlinux 0xd79f8cbb tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0xd7aadd34 ata_sff_dma_pause EXPORT_SYMBOL_GPL vmlinux 0xd7b411cb __irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0xd7ba54cd hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0xd7c2a61d snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL vmlinux 0xd7d3eb10 devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7d8cb59 ping_get_port EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0xd7e764b9 hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0xd7f1d506 inode_dax EXPORT_SYMBOL_GPL vmlinux 0xd7fb0726 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xd7fb3c28 switchdev_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0xd7fd78a1 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xd8010ecc devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xd8193a08 __raw_v4_lookup EXPORT_SYMBOL_GPL vmlinux 0xd81ea268 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xd83fc95c crypto_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock EXPORT_SYMBOL_GPL vmlinux 0xd84fa903 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xd86113c2 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xd85b01e3 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xd85f666e sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0xd866f385 icc_link_create EXPORT_SYMBOL_GPL vmlinux 0xd868b01b cpufreq_freq_attr_scaling_boost_freqs EXPORT_SYMBOL_GPL vmlinux 0xd86f59b1 devm_pm_opp_set_supported_hw EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd88ea12a snd_soc_lookup_component EXPORT_SYMBOL_GPL vmlinux 0xd89924e7 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xd8a048f7 perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0xd8a18d95 of_reserved_mem_device_init_by_name -EXPORT_SYMBOL_GPL vmlinux 0xd8a55c00 rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xd8a5eaa6 fat_detach EXPORT_SYMBOL_GPL vmlinux 0xd8b2886f scsi_dh_attached_handler_name EXPORT_SYMBOL_GPL vmlinux 0xd8b3cbbf blk_ksm_reprogram_all_keys EXPORT_SYMBOL_GPL vmlinux 0xd8c0125c usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0xd8d41bfa snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0xd8c9eaf5 splice_to_pipe EXPORT_SYMBOL_GPL vmlinux 0xd8d654ca list_lru_count_node EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8e86c3a crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xd8ed38b7 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xd8e9914e pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xd9136f66 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk EXPORT_SYMBOL_GPL vmlinux 0xd91fbd78 meson_pmx_get_groups EXPORT_SYMBOL_GPL vmlinux 0xd92c7150 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xd92d94c2 __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd936431b serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0xd945b232 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xd94d56b1 device_move +EXPORT_SYMBOL_GPL vmlinux 0xd959cdcc mtk_build_eint EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next EXPORT_SYMBOL_GPL vmlinux 0xd973109f tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0xd97b28b6 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xd9859bb9 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd9899747 bpf_offload_dev_match EXPORT_SYMBOL_GPL vmlinux 0xd9909d74 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0xd997caa4 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0xd9a6eb74 gadget_find_ep_by_name EXPORT_SYMBOL_GPL vmlinux 0xd9b0bf9c dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0xd9b4eaed device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xd9b63781 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xd9b7aaef find_vpid EXPORT_SYMBOL_GPL vmlinux 0xd9d36e27 genphy_c45_config_aneg EXPORT_SYMBOL_GPL vmlinux 0xd9d9b98b snd_soc_dapm_put_pin_switch EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek EXPORT_SYMBOL_GPL vmlinux 0xd9ede1a1 mtk_mmsys_ddp_connect EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda104573 devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0xda1ecd9e __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xda0a110a sdio_memcpy_toio EXPORT_SYMBOL_GPL vmlinux 0xda1f4ad4 ata_sff_busy_sleep EXPORT_SYMBOL_GPL vmlinux 0xda229103 nand_change_write_column_op +EXPORT_SYMBOL_GPL vmlinux 0xda2372ce crypto_grab_akcipher EXPORT_SYMBOL_GPL vmlinux 0xda25191a serial8250_em485_stop_tx EXPORT_SYMBOL_GPL vmlinux 0xda28c702 sbitmap_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0xda2e52c8 handle_irq_desc EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda345712 regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0xda3720b0 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xda3b7f33 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xda406f6e inet_csk_get_port EXPORT_SYMBOL_GPL vmlinux 0xda4cda3b pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xda5bf2e1 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xda5372fe blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xda5fdfe0 vfs_write +EXPORT_SYMBOL_GPL vmlinux 0xda6183b3 snd_soc_card_jack_new EXPORT_SYMBOL_GPL vmlinux 0xda65fa3a dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xda69aade crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0xda72cda8 virtqueue_get_buf_ctx EXPORT_SYMBOL_GPL vmlinux 0xda79044a tracepoint_probe_unregister EXPORT_SYMBOL_GPL vmlinux 0xda814854 dm_path_uevent @@ -24098,294 +24114,276 @@ EXPORT_SYMBOL_GPL vmlinux 0xda8b3f30 sbitmap_show EXPORT_SYMBOL_GPL vmlinux 0xda8cc3b9 hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0xda8d1c27 sb800_prefetch EXPORT_SYMBOL_GPL vmlinux 0xda8eccbc devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xda94bc56 __mnt_is_readonly EXPORT_SYMBOL_GPL vmlinux 0xda9cf5b2 usb_hcd_poll_rh_status EXPORT_SYMBOL_GPL vmlinux 0xdab25361 badblocks_init EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdac00eaa sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xdac16b13 crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0xdacf0161 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xdad2c9c8 fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0xdae63280 amba_apb_device_add EXPORT_SYMBOL_GPL vmlinux 0xdaf0fef2 of_platform_device_destroy EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdafa0bab __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xdafdb732 __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0xdaff3b3d input_class +EXPORT_SYMBOL_GPL vmlinux 0xdb01bd52 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xdb04c639 thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0xdb0b9a54 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xdb0c36d0 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0xdb0be63b skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0xdb0f8ce3 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0xdb0fc0f0 devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0xdb169fa5 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xdb213cde wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xdb1d76c2 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0xdb4577f2 fscrypt_set_bio_crypt_ctx_bh EXPORT_SYMBOL_GPL vmlinux 0xdb4a386e tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xdb5e3f36 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xdb74857c gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xdb4ea61e xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xdb5876ce scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xdb6167fe devlink_params_unregister EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8e9c37 ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0xdb9a2da6 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdba0220b stmpe_reg_write EXPORT_SYMBOL_GPL vmlinux 0xdba22696 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xdbace371 devlink_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0xdbb07ade usb_gadget_ep_match_desc EXPORT_SYMBOL_GPL vmlinux 0xdbb49ff5 mtk_eint_do_suspend EXPORT_SYMBOL_GPL vmlinux 0xdbc40cef dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0xdbc69971 sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0xdbc6ff2b usb_hub_find_child EXPORT_SYMBOL_GPL vmlinux 0xdbd70235 usb_for_each_port EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbe7ce20 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xdbe11102 dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xdbf7a5ec iommu_capable EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available EXPORT_SYMBOL_GPL vmlinux 0xdc0b0e37 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xdc3d6b1d synth_event_trace EXPORT_SYMBOL_GPL vmlinux 0xdc3f553f power_supply_get_property EXPORT_SYMBOL_GPL vmlinux 0xdc41e3a4 dm_noflush_suspending EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword EXPORT_SYMBOL_GPL vmlinux 0xdc459e11 irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0xdc4784ac mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xdc47bf90 __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0xdc57b24f usb_alloc_dev EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent EXPORT_SYMBOL_GPL vmlinux 0xdc712a29 nvdimm_pmem_region_create EXPORT_SYMBOL_GPL vmlinux 0xdc72b181 __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0xdc73e745 mtk_pinconf_bias_set -EXPORT_SYMBOL_GPL vmlinux 0xdc7542bc devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xdc79064e pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0xdc7ce353 mv_mbus_dram_info_nooverlap EXPORT_SYMBOL_GPL vmlinux 0xdc7f9c29 mtk_eint_find_irq EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable EXPORT_SYMBOL_GPL vmlinux 0xdc849b36 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xdc84ad6b devm_of_icc_get EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xdcb160d4 tty_kopen_exclusive EXPORT_SYMBOL_GPL vmlinux 0xdcb336ac dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xdcb52bc2 regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0xdcb5b474 soc_ac97_ops EXPORT_SYMBOL_GPL vmlinux 0xdcba00ed phy_configure -EXPORT_SYMBOL_GPL vmlinux 0xdcc319e9 crypto_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0xdcc3c351 clk_hw_register_composite EXPORT_SYMBOL_GPL vmlinux 0xdcccb87a of_get_pci_domain_nr EXPORT_SYMBOL_GPL vmlinux 0xdccd0c65 dma_buf_unpin EXPORT_SYMBOL_GPL vmlinux 0xdcd3e4a2 nand_read_page_op -EXPORT_SYMBOL_GPL vmlinux 0xdcdaa35a pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xdcedf994 phy_driver_is_genphy EXPORT_SYMBOL_GPL vmlinux 0xdcf8d664 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xdd0488f9 pwm_adjust_config EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc EXPORT_SYMBOL_GPL vmlinux 0xdd090491 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdd1d35a2 wm8350_reg_read EXPORT_SYMBOL_GPL vmlinux 0xdd21316c nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xdd23e7f4 rtnl_get_net_ns_capable EXPORT_SYMBOL_GPL vmlinux 0xdd293d8a regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0xdd309c3d init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xdd366dce snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0xdd2beaa8 gpiochip_find EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd3921ab regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xdd3b5f0c mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xdd43fcca device_remove_file EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args EXPORT_SYMBOL_GPL vmlinux 0xdd66db67 nf_hooks_lwtunnel_sysctl_handler EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xdd722183 d_walk -EXPORT_SYMBOL_GPL vmlinux 0xdd760bdc gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0xdd85063c lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0xdd9693b8 stmpe_reg_write EXPORT_SYMBOL_GPL vmlinux 0xdd9f6537 register_mtd_user EXPORT_SYMBOL_GPL vmlinux 0xdda086c4 of_mm_gpiochip_add_data EXPORT_SYMBOL_GPL vmlinux 0xddb4411d blk_queue_max_discard_segments EXPORT_SYMBOL_GPL vmlinux 0xddb67d29 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xddb977f8 __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc21229 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xddc48bfa trace_event_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0xddd1d969 class_for_each_device EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xddda0d71 ata_common_sdev_attrs EXPORT_SYMBOL_GPL vmlinux 0xdddb9d57 percpu_ref_resurrect EXPORT_SYMBOL_GPL vmlinux 0xdddda3d9 phy_modify EXPORT_SYMBOL_GPL vmlinux 0xddf01311 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0xddf2f199 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xde146084 devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0xde1cfe65 skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0xde3cc57a of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xde3e42a1 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xde406779 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0xde4677ac spi_slave_abort EXPORT_SYMBOL_GPL vmlinux 0xde4ae4b4 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0xde4c180d icc_disable EXPORT_SYMBOL_GPL vmlinux 0xde4eb5b1 relay_subbufs_consumed EXPORT_SYMBOL_GPL vmlinux 0xde4f6a92 snd_soc_get_volsw EXPORT_SYMBOL_GPL vmlinux 0xde6d6078 usb_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde9ea96d spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xdea62b99 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xdeb59bd8 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xdebb00f0 ahci_pmp_retry_srst_ops EXPORT_SYMBOL_GPL vmlinux 0xdec43238 iomap_writepages EXPORT_SYMBOL_GPL vmlinux 0xdeca1e35 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xdecdf16e gpiod_set_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xdee47b96 inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0xdee8d9ab efivar_entry_set EXPORT_SYMBOL_GPL vmlinux 0xdeeade96 genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0xdef05f48 snd_soc_add_component -EXPORT_SYMBOL_GPL vmlinux 0xdef1dbb5 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xdefe5b4f crypto_grab_ahash EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0xdf0476f3 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xdf057dc9 inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0xdf076a19 clk_hw_set_rate_range EXPORT_SYMBOL_GPL vmlinux 0xdf07bc68 of_platform_default_populate EXPORT_SYMBOL_GPL vmlinux 0xdf0be1ac rockchip_pcie_cfg_configuration_accesses EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0xdf0ecfd1 spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf11b823 snd_soc_dai_get_channel_map EXPORT_SYMBOL_GPL vmlinux 0xdf191047 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xdf2360c1 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf26ff46 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xdf2fe006 __traceiter_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0xdf361e82 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0xdf4338d3 null_dailink_component +EXPORT_SYMBOL_GPL vmlinux 0xdf445325 devm_device_remove_group EXPORT_SYMBOL_GPL vmlinux 0xdf454e28 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xdf4e7a5a ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xdf5a066c fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0xdf549f36 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xdf5e3faf raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xdf6b777c device_add EXPORT_SYMBOL_GPL vmlinux 0xdf74281d usb_intf_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0xdf75f27a xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0xdf783a77 snd_soc_free_ac97_component EXPORT_SYMBOL_GPL vmlinux 0xdf7c2ada snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL vmlinux 0xdf84513a tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0xdf887297 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0xdf9fcf33 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdf918a02 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xdfa30c16 pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0xdfaf73c1 rio_unmap_outb_region EXPORT_SYMBOL_GPL vmlinux 0xdfc03cd7 __wake_up_sync EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set EXPORT_SYMBOL_GPL vmlinux 0xdfd33597 usb_get_dev EXPORT_SYMBOL_GPL vmlinux 0xdfde14a8 relay_close EXPORT_SYMBOL_GPL vmlinux 0xdffb49c1 em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xe02f8a06 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xe0342a72 regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0xe03dcd15 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xe0408664 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0xe04ba208 cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xe04bd71e dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0xe04e4b02 fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0xe04e99d7 btree_merge EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe0669bec regmap_get_val_endian EXPORT_SYMBOL_GPL vmlinux 0xe07663ad dev_pm_opp_find_freq_ceil_by_volt EXPORT_SYMBOL_GPL vmlinux 0xe07b659f snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL vmlinux 0xe0819cce cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0xe08218f7 regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0xe094ca46 device_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0xe09cc31d regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0xe09d9624 bsg_setup_queue EXPORT_SYMBOL_GPL vmlinux 0xe09f9ee7 pci_sriov_configure_simple EXPORT_SYMBOL_GPL vmlinux 0xe0abd9e8 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xe0b048c2 fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b6b5fb __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xe0b5b35f mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0xe0bc8c0e device_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0xe0c95083 i2c_slave_register EXPORT_SYMBOL_GPL vmlinux 0xe0d35bd8 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xe0db1d22 devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0xe0eb943b sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xe101e955 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe1123ed6 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xe120ca86 sdio_retune_hold_now EXPORT_SYMBOL_GPL vmlinux 0xe1221233 of_irq_parse_raw EXPORT_SYMBOL_GPL vmlinux 0xe1225726 io_cgrp_subsys EXPORT_SYMBOL_GPL vmlinux 0xe122e8c9 devm_gpio_free EXPORT_SYMBOL_GPL vmlinux 0xe1340862 relay_buf_full EXPORT_SYMBOL_GPL vmlinux 0xe13abd32 snd_soc_bytes_put EXPORT_SYMBOL_GPL vmlinux 0xe1400787 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0xe1409fc2 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xe1428f34 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xe151749d fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0xe1546c8c dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0xe15a0874 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xe1555bf7 vfs_setxattr EXPORT_SYMBOL_GPL vmlinux 0xe1653a54 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe16a4493 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe16a2d69 device_phy_find_device EXPORT_SYMBOL_GPL vmlinux 0xe16a6b48 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0xe16cce39 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0xe173cbca fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0xe176e1aa nvdimm_kobj EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17acb58 regulator_set_voltage_time EXPORT_SYMBOL_GPL vmlinux 0xe18960ba nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0xe18c149b sdhci_set_bus_width EXPORT_SYMBOL_GPL vmlinux 0xe18e056e sysfs_groups_change_owner EXPORT_SYMBOL_GPL vmlinux 0xe1a162d0 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL vmlinux 0xe1a6d093 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0xe1a4b237 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xe1ad8c46 clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1bd9e08 gpiochip_request_own_desc EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1f43c52 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xe1f5167e inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xe21901fe sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xe1cb8968 ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0xe21e03c1 __regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0xe21ef234 usb_clear_halt EXPORT_SYMBOL_GPL vmlinux 0xe22140a1 loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0xe2214bfa of_clk_src_onecell_get EXPORT_SYMBOL_GPL vmlinux 0xe224c65e iommu_uapi_sva_unbind_gpasid EXPORT_SYMBOL_GPL vmlinux 0xe2253725 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xe22f4a85 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xe22fa34e icc_disable EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user EXPORT_SYMBOL_GPL vmlinux 0xe23cd479 alarm_expires_remaining EXPORT_SYMBOL_GPL vmlinux 0xe24ab6a9 cci_ace_get_port -EXPORT_SYMBOL_GPL vmlinux 0xe2515711 devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0xe25adf11 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xe252a46b devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe25c0d6d mdiobus_modify EXPORT_SYMBOL_GPL vmlinux 0xe260ea96 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xe26c440e regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe265632a cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0xe2717792 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xe279d14d mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0xe274fa44 handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0xe282c5aa __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xe288d4e1 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0xe297996a ata_scsi_slave_config EXPORT_SYMBOL_GPL vmlinux 0xe29eb2a7 tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xe2a00ee0 snd_soc_resume EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2c3dff9 xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0xe2ce1768 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xe2ce7bfe ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xe2d2cfdb ahci_do_hardreset EXPORT_SYMBOL_GPL vmlinux 0xe2da7f5e ulpi_viewport_access_ops EXPORT_SYMBOL_GPL vmlinux 0xe2e0f798 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0xe2e4fc5b sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xe2f36160 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0xe2fa0887 ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0xe3021c06 rockchip_register_restart_notifier EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec EXPORT_SYMBOL_GPL vmlinux 0xe320a99a cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xe3222edb platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xe33393bb device_unregister EXPORT_SYMBOL_GPL vmlinux 0xe3346b78 devm_usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0xe3358286 iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0xe35108b1 of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xe3512b69 crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0xe35ac0fb input_ff_event EXPORT_SYMBOL_GPL vmlinux 0xe35b2b3f watchdog_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xe363909e mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0xe373b292 icc_link_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe3823cf8 ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral EXPORT_SYMBOL_GPL vmlinux 0xe38f4027 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xe3928da9 regulator_register EXPORT_SYMBOL_GPL vmlinux 0xe3939a53 usb_unpoison_urb EXPORT_SYMBOL_GPL vmlinux 0xe39712fd snd_soc_bytes_tlv_callback EXPORT_SYMBOL_GPL vmlinux 0xe399b324 fb_bl_default_curve EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3babcd1 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xe3b229dd ping_unhash EXPORT_SYMBOL_GPL vmlinux 0xe3d69c8a noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0xe3db5a34 blk_insert_cloned_request EXPORT_SYMBOL_GPL vmlinux 0xe3e4be10 pci_epc_get_features EXPORT_SYMBOL_GPL vmlinux 0xe3eb6bb6 split_page -EXPORT_SYMBOL_GPL vmlinux 0xe3f17a0a unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xe3f4d466 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0xe3f08409 metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe4162949 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xe4234c73 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0xe42b3181 fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0xe42dd939 subsys_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume EXPORT_SYMBOL_GPL vmlinux 0xe44bec59 edac_device_del_device EXPORT_SYMBOL_GPL vmlinux 0xe466a423 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xe4682c3e snd_soc_component_init_regmap EXPORT_SYMBOL_GPL vmlinux 0xe46fa9fd led_set_brightness_sync EXPORT_SYMBOL_GPL vmlinux 0xe4739438 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xe4847ec0 regulator_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xe48a6153 irq_domain_translate_twocell EXPORT_SYMBOL_GPL vmlinux 0xe48b28a4 bus_create_file EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot EXPORT_SYMBOL_GPL vmlinux 0xe4977bba __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xe4a0a318 __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xe4afdee1 fwnode_get_next_child_node 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 0xe4c348f1 cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0xe4c398d0 nvdimm_to_bus EXPORT_SYMBOL_GPL vmlinux 0xe4c9f178 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xe4d56524 perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state EXPORT_SYMBOL_GPL vmlinux 0xe4f4510b kthread_queue_delayed_work EXPORT_SYMBOL_GPL vmlinux 0xe4f9961b devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0xe50cfe6b regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xe50188a0 pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0xe50dce3e rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0xe512a00d ip6_input EXPORT_SYMBOL_GPL vmlinux 0xe5273ba5 dev_pm_opp_unregister_set_opp_helper EXPORT_SYMBOL_GPL vmlinux 0xe52b526b of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0xe52befe3 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xe535e0fa page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0xe5383b1b genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xe53fb069 find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xe54513b7 dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0xe54edefc devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe578cb7a iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xe584cc25 net_ns_type_operations EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister EXPORT_SYMBOL_GPL vmlinux 0xe59b75da nanddev_isbad EXPORT_SYMBOL_GPL vmlinux 0xe59d859d report_iommu_fault @@ -24394,23 +24392,19 @@ EXPORT_SYMBOL_GPL vmlinux 0xe5a1ebd5 tpmm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0xe5c538af fat_flush_inodes EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider EXPORT_SYMBOL_GPL vmlinux 0xe5d28f61 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xe5e887db do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0xe5f9ab1b devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xe6085db5 platform_irqchip_probe -EXPORT_SYMBOL_GPL vmlinux 0xe623119b __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xe5d8a24f devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0xe5d9bf5c sdhci_abort_tuning EXPORT_SYMBOL_GPL vmlinux 0xe62716a0 da903x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array EXPORT_SYMBOL_GPL vmlinux 0xe62e8892 pinctrl_dev_get_name EXPORT_SYMBOL_GPL vmlinux 0xe6314f18 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xe631d6ab xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0xe63284eb firmware_request_nowarn EXPORT_SYMBOL_GPL vmlinux 0xe63439d5 xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xe639ba38 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0xe6479aee inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xe66499a7 rio_add_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0xe668835c __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xe67a4667 __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0xe67cb27f open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xe685291a dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe69a7adb of_clk_parent_fill EXPORT_SYMBOL_GPL vmlinux 0xe69c7283 nand_write_data_op EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0xe6a9655b genphy_c45_an_disable_aneg @@ -24421,130 +24415,132 @@ EXPORT_SYMBOL_GPL vmlinux 0xe6c7b5f3 synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq EXPORT_SYMBOL_GPL vmlinux 0xe6fc70ee devm_hwrng_register EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe71311a8 fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0xe71fa70e tpm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0xe725b866 power_supply_class EXPORT_SYMBOL_GPL vmlinux 0xe72c470d dev_pm_genpd_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe7303daf gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xe73be161 devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0xe73cbe14 phy_select_page EXPORT_SYMBOL_GPL vmlinux 0xe747297d xas_find_conflict EXPORT_SYMBOL_GPL vmlinux 0xe7485f8a rio_unlock_device EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe7545b5c mmc_send_tuning EXPORT_SYMBOL_GPL vmlinux 0xe75625fb cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xe7653798 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset EXPORT_SYMBOL_GPL vmlinux 0xe76f8bdf irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xe775852b snd_soc_dpcm_fe_can_update EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe7a09c0f icc_provider_del EXPORT_SYMBOL_GPL vmlinux 0xe7a49ec0 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xe7b43629 skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0xe7b6e8d7 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xe7b79a7c phy_led_trigger_change_speed EXPORT_SYMBOL_GPL vmlinux 0xe7cf864c nand_wait_ready EXPORT_SYMBOL_GPL vmlinux 0xe7d68ffd tps80031_ext_power_req_config EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7e2c459 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xe7db4692 devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xe7f63ee2 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xe801b4e5 ahci_start_engine EXPORT_SYMBOL_GPL vmlinux 0xe8045779 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xe8096f55 sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0xe817c8ea devm_devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe81e68e4 __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0xe83dac1e snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL vmlinux 0xe83faa71 __iptunnel_pull_header EXPORT_SYMBOL_GPL vmlinux 0xe8460baa dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xe84e0678 devlink_dpipe_table_resource_set EXPORT_SYMBOL_GPL vmlinux 0xe84f6dc3 to_software_node EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe8514165 switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit EXPORT_SYMBOL_GPL vmlinux 0xe85d2929 tty_kclose EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start EXPORT_SYMBOL_GPL vmlinux 0xe8695ddb mtk_pinconf_bias_get -EXPORT_SYMBOL_GPL vmlinux 0xe86a311b skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0xe8727098 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xe872e3e6 crypto_register_acomp EXPORT_SYMBOL_GPL vmlinux 0xe88103bd fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0xe88904ea rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0xe88de75f regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xe882b52a mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0xe8899f89 devlink_port_params_register EXPORT_SYMBOL_GPL vmlinux 0xe89194e9 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0xe89c23b7 platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xe8a579a3 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xe8b2d924 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xe8b494e5 clk_hw_get_parent_by_index EXPORT_SYMBOL_GPL vmlinux 0xe8b8842d anon_inode_getfd_secure EXPORT_SYMBOL_GPL vmlinux 0xe8bb3bc8 usb_set_device_state EXPORT_SYMBOL_GPL vmlinux 0xe8dcfb84 nvdimm_bus_unregister EXPORT_SYMBOL_GPL vmlinux 0xe8ea89c3 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xe8f6b00a phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0xe9055746 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xe90c172b cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe916811f ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0xe91d6f03 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xe9266f5c spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0xe91f0dc5 tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0xe92eb873 snd_pcm_stream_unlock_irq EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe93e8a2d synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0xe9437a7f usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0xe943adad ata_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0xe946696a usb_get_current_frame_number EXPORT_SYMBOL_GPL vmlinux 0xe9547016 add_hwgenerator_randomness EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe957f71b devlink_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0xe958ace1 tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0xe95ed376 device_get_child_node_count EXPORT_SYMBOL_GPL vmlinux 0xe96b0c42 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xe9720031 filemap_read EXPORT_SYMBOL_GPL vmlinux 0xe98d9e8e __iomap_dio_rw EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version EXPORT_SYMBOL_GPL vmlinux 0xe99ed8f3 devm_namespace_disable EXPORT_SYMBOL_GPL vmlinux 0xe9a22673 topology_set_thermal_pressure -EXPORT_SYMBOL_GPL vmlinux 0xe9a54b7a spi_get_next_queued_message EXPORT_SYMBOL_GPL vmlinux 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0xe9aa5798 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xe9ac10a6 inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xe9b95532 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xe9b9ee98 platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0xe9c616de cpu_latency_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xe9c7baff xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0xe9cb4ada trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap EXPORT_SYMBOL_GPL vmlinux 0xe9d63885 debugfs_attr_read EXPORT_SYMBOL_GPL vmlinux 0xe9eccd04 dw_pcie_setup_rc EXPORT_SYMBOL_GPL vmlinux 0xe9f030db serial8250_set_defaults EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea02431b regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xea085b7c scsi_internal_device_unblock_nowait EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd EXPORT_SYMBOL_GPL vmlinux 0xea14b6e9 pci_assign_unassigned_bridge_resources EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled EXPORT_SYMBOL_GPL vmlinux 0xea1f6e0e hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xea314986 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0xea32cde3 crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0xea3500c4 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea3dbd5d ahci_reset_em EXPORT_SYMBOL_GPL vmlinux 0xea4a09cb mod_delayed_work_on EXPORT_SYMBOL_GPL vmlinux 0xea4a0a17 cpufreq_generic_attr EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea68ac86 hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xea69cd2c ata_pci_bmdma_init_one EXPORT_SYMBOL_GPL vmlinux 0xea980569 __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xeaa4a304 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL vmlinux 0xeab54eea ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xeab6bcdf thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xeaa8172e snd_soc_of_parse_audio_simple_widgets EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xead525ca irq_domain_translate_onecell EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare -EXPORT_SYMBOL_GPL vmlinux 0xeadc3197 __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeb007a27 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0xeaeac9dd ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xeaf25f53 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xeaf2ede0 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xeaf41d58 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xeb02a9ce gpiochip_irq_map EXPORT_SYMBOL_GPL vmlinux 0xeb08e33b ipi_send_mask -EXPORT_SYMBOL_GPL vmlinux 0xeb26ac7b get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xeb0e8c8f l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xeb1a512c sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xeb1f9128 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb230e67 ata_dummy_port_ops EXPORT_SYMBOL_GPL vmlinux 0xeb2eb457 fuse_file_poll EXPORT_SYMBOL_GPL vmlinux 0xeb2f825c init_rs_gfp -EXPORT_SYMBOL_GPL vmlinux 0xeb2fc466 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0xeb357830 crypto_unregister_aeads EXPORT_SYMBOL_GPL vmlinux 0xeb3e42e0 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xeb4c23de ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xeb5640d0 platform_get_irq_byname_optional EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0xeb720c9c clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0xeb75e92a dax_region_put EXPORT_SYMBOL_GPL vmlinux 0xeb7a98ee ata_pci_sff_activate_host EXPORT_SYMBOL_GPL vmlinux 0xeb8d8c39 kmsg_dump_get_buffer EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeb9b4204 pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0xeba1c5e7 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xebaa0b41 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xebab5021 wb_writeout_inc EXPORT_SYMBOL_GPL vmlinux 0xebbc06cf __tracepoint_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xebbfa502 devm_clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebcabf82 tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0xebce18ba nanddev_isreserved EXPORT_SYMBOL_GPL vmlinux 0xebd287d2 _snd_pcm_stream_lock_irqsave_nested EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms @@ -24553,210 +24549,218 @@ EXPORT_SYMBOL_GPL vmlinux 0xebd8ca05 pci_hp_add_bridge EXPORT_SYMBOL_GPL vmlinux 0xebe8d454 wm831x_reg_write EXPORT_SYMBOL_GPL vmlinux 0xebea2a96 blk_mq_freeze_queue EXPORT_SYMBOL_GPL vmlinux 0xebeb24a2 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xec015866 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xebeea8ff tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xebf4d03d clk_hw_set_parent EXPORT_SYMBOL_GPL vmlinux 0xec0f8740 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xec21f075 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xec26fe3b ahci_print_info EXPORT_SYMBOL_GPL vmlinux 0xec29e0d8 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0xec31804f devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xec3a3a61 sfp_register_socket EXPORT_SYMBOL_GPL vmlinux 0xec40e779 irq_domain_add_legacy EXPORT_SYMBOL_GPL vmlinux 0xec4960b9 mtk_mutex_get EXPORT_SYMBOL_GPL vmlinux 0xec523f88 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xec52f476 kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0xec543a9f devm_bitmap_alloc EXPORT_SYMBOL_GPL vmlinux 0xec70504f irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xec71510e snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0xec760b27 ata_sas_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec82a7c2 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0xec834c4a sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xeca8c646 __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xecc5cb34 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xecc67425 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xecfe2706 security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0xed01cca8 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xecad5889 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xecd72361 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0xed0b7e3e snd_soc_dai_set_pll EXPORT_SYMBOL_GPL vmlinux 0xed266694 dev_pm_put_subsys_data EXPORT_SYMBOL_GPL vmlinux 0xed2895d9 __devm_irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0xed29631d cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xed2bfb05 espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0xed344146 mcpm_is_available EXPORT_SYMBOL_GPL vmlinux 0xed3c4ddb ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xed51ce98 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xed3eb9fb device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xed571416 cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0xed596e53 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xed651ecc ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xed6bdf33 ahci_set_em_messages EXPORT_SYMBOL_GPL vmlinux 0xed729ff7 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xed77f33a register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xed72dcbd regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xed80ab64 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xed9b1fa3 blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0xeda32b26 dma_mmap_pages EXPORT_SYMBOL_GPL vmlinux 0xeda58952 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xeda684ee page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0xeda79b21 iommu_domain_free EXPORT_SYMBOL_GPL vmlinux 0xedb62d8f devm_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xedb8f719 phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0xedc5add4 sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0xede58eb7 md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0xede86426 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xee043c8b blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0xee107b8f __irq_set_handler EXPORT_SYMBOL_GPL vmlinux 0xee18abf8 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xee1e01b5 sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0xee35d07f posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xee3627c3 sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee39c820 ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0xee3f03a5 pci_ioremap_io -EXPORT_SYMBOL_GPL vmlinux 0xee51a5aa xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xee418164 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL vmlinux 0xee56cbb8 wbc_attach_and_unlock_inode EXPORT_SYMBOL_GPL vmlinux 0xee59bc1c fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0xee59f9c2 mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0xee64d8ba rio_request_dma EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee764f0d kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0xee839aea irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xee9047db hisi_clk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xee987739 perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0xee9d9719 led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0xeea1aecd pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0xeeb88ae2 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xeebf802d sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xeea58a74 ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0xeed3a4dd decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xeedc6cfe cpufreq_driver_resolve_freq 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 0xeee839e2 wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0xeef02f1b tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xeef6182f kern_mount EXPORT_SYMBOL_GPL vmlinux 0xef010a76 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0xef019c72 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xef048b56 sdio_writew EXPORT_SYMBOL_GPL vmlinux 0xef09f69c pm_runtime_enable EXPORT_SYMBOL_GPL vmlinux 0xef195d6f pm_generic_resume EXPORT_SYMBOL_GPL vmlinux 0xef1b25e1 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xef23d4af dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xef300d57 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0xef322f9a nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0xef40bc0e pci_find_ht_capability EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef477fad crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xef4b3f60 sock_prot_inuse_add EXPORT_SYMBOL_GPL vmlinux 0xef533e23 irq_domain_free_fwnode EXPORT_SYMBOL_GPL vmlinux 0xef54d1c6 fb_deferred_io_cleanup EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef6050a1 devm_hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef72b562 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xef75e8b5 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xef7ac40b trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0xef7ba8fa mutex_lock_io EXPORT_SYMBOL_GPL vmlinux 0xef83eed1 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xef9478fd snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL vmlinux 0xef9d855a ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier EXPORT_SYMBOL_GPL vmlinux 0xefa886ee bus_find_device EXPORT_SYMBOL_GPL vmlinux 0xefaace6e mv_mbus_dram_info -EXPORT_SYMBOL_GPL vmlinux 0xefb38c87 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xefc615f1 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xefd45ac9 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xefddc043 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xefba7677 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xefc3a901 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xefcac491 device_find_child EXPORT_SYMBOL_GPL vmlinux 0xefe31522 rio_mport_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs EXPORT_SYMBOL_GPL vmlinux 0xefefbe10 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xeff7d1c7 platform_device_add_resources EXPORT_SYMBOL_GPL vmlinux 0xeffc9055 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0xf0205a34 pm_wakeup_dev_event EXPORT_SYMBOL_GPL vmlinux 0xf035fdc6 of_irq_find_parent EXPORT_SYMBOL_GPL vmlinux 0xf03dd4c4 pm_generic_thaw EXPORT_SYMBOL_GPL vmlinux 0xf041a99f transport_configure_device EXPORT_SYMBOL_GPL vmlinux 0xf0434dcc extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0xf056f819 ata_scsi_unlock_native_capacity EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address EXPORT_SYMBOL_GPL vmlinux 0xf06105b5 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xf065f7ce regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0xf0752471 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xf08c3d2e of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xf076a864 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xf076c5c1 regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf0a64e91 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf0a7add6 mmc_regulator_set_vqmmc EXPORT_SYMBOL_GPL vmlinux 0xf0aed24e snd_device_disconnect EXPORT_SYMBOL_GPL vmlinux 0xf0b7453c serial8250_do_startup EXPORT_SYMBOL_GPL vmlinux 0xf0be7200 dma_run_dependencies EXPORT_SYMBOL_GPL vmlinux 0xf0cab0d8 dm_put -EXPORT_SYMBOL_GPL vmlinux 0xf0d18f0d sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0xf0d273d9 devfreq_event_enable_edev EXPORT_SYMBOL_GPL vmlinux 0xf0d2991a dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0xf0d35ebe crypto_shash_setkey EXPORT_SYMBOL_GPL vmlinux 0xf0d87b34 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0xf0e22950 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xf0f00dd9 nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0xf0f95e51 musb_readl EXPORT_SYMBOL_GPL vmlinux 0xf0fdfc70 pinconf_generic_parse_dt_config -EXPORT_SYMBOL_GPL vmlinux 0xf1148155 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xf11d7e9d sata_std_hardreset EXPORT_SYMBOL_GPL vmlinux 0xf133e6a2 irq_domain_remove EXPORT_SYMBOL_GPL vmlinux 0xf135f799 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0xf1457dd0 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf147c348 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xf13855fa ata_std_error_handler EXPORT_SYMBOL_GPL vmlinux 0xf1679c6d syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf1708a5d cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xf17a614b regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xf1843f05 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xf16e8e59 crypto_stats_kpp_set_secret EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off EXPORT_SYMBOL_GPL vmlinux 0xf1a5fb33 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0xf1aaa3bf lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0xf1ce154c __tracepoint_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0xf1e56626 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xf1e7f723 ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0xf1f18688 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf1faa214 blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0xf1fae6a3 asic3_read_register -EXPORT_SYMBOL_GPL vmlinux 0xf2024586 crypto_alloc_acomp_node EXPORT_SYMBOL_GPL vmlinux 0xf208093a irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0xf20d6e80 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xf20e4a27 snd_soc_suspend EXPORT_SYMBOL_GPL vmlinux 0xf2174f61 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xf217fd96 wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf228010b skb_zerocopy_iter_dgram EXPORT_SYMBOL_GPL vmlinux 0xf22dc4b8 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL vmlinux 0xf2313f3e ata_host_register EXPORT_SYMBOL_GPL vmlinux 0xf23815b7 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0xf23c4b6e i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0xf243ff8a netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xf255a39d __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0xf264f3bd devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xf26d5bac __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xf26b9a37 security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0xf2731116 of_property_match_string EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on EXPORT_SYMBOL_GPL vmlinux 0xf2a7263a mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL vmlinux 0xf2ad5884 gpiochip_add_pin_range EXPORT_SYMBOL_GPL vmlinux 0xf2aede42 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL vmlinux 0xf2d146ee __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xf2d902ef skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0xf2de1a78 usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0xf2de334b ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xf2e9a7ac snd_soc_runtime_action EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default EXPORT_SYMBOL_GPL vmlinux 0xf2fdca86 phy_pm_runtime_allow 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 0xf315aa94 devlink_remote_reload_actions_performed EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf31d21f4 phy_package_join EXPORT_SYMBOL_GPL vmlinux 0xf32969ea vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 EXPORT_SYMBOL_GPL vmlinux 0xf342fd5d freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf34aae4c rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0xf34ca5bc srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf350b7f0 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xf363f69e crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf37f9c9e ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf38334c4 gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0xf3859c66 mtk_pinconf_bias_disable_get -EXPORT_SYMBOL_GPL vmlinux 0xf39718c9 ata_scsi_queuecmd EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b8d33c spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0xf3d9ddd9 snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0xf3dd5871 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xf3ee68be icc_nodes_remove EXPORT_SYMBOL_GPL vmlinux 0xf3f65a45 devm_gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0xf3fc4612 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xf4001baa ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xf4052352 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0xf423f100 lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0xf4264a2e __tracepoint_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xf42d97e8 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xf4306c43 snd_soc_dapm_force_enable_pin EXPORT_SYMBOL_GPL vmlinux 0xf4346cca for_each_kernel_tracepoint EXPORT_SYMBOL_GPL vmlinux 0xf43cfa74 mtd_pairing_groups -EXPORT_SYMBOL_GPL vmlinux 0xf44af4bf device_show_ulong EXPORT_SYMBOL_GPL vmlinux 0xf44d46b1 wm831x_reg_lock EXPORT_SYMBOL_GPL vmlinux 0xf4509494 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xf45395ba bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0xf455999a of_property_read_variable_u16_array EXPORT_SYMBOL_GPL vmlinux 0xf4670500 iommu_present EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf474b128 l3mdev_table_lookup_unregister EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit EXPORT_SYMBOL_GPL vmlinux 0xf47938e1 policy_has_boost_freq 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 0xf49c680a fsverity_enqueue_verify_work EXPORT_SYMBOL_GPL vmlinux 0xf4a26006 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xf4a85fd5 nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b4231b devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xf4b96075 rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0xf4cb2e1a fwnode_usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release EXPORT_SYMBOL_GPL vmlinux 0xf4db6c31 usb_block_urb EXPORT_SYMBOL_GPL vmlinux 0xf4f4ff9d amba_ahb_device_add_res EXPORT_SYMBOL_GPL vmlinux 0xf4f69d1f clk_hw_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0xf4fa944a nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xf502de69 snd_soc_dapm_force_bias_level EXPORT_SYMBOL_GPL vmlinux 0xf512eb15 iommu_fwspec_add_ids EXPORT_SYMBOL_GPL vmlinux 0xf52bb6e6 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xf52bf254 sdio_readw EXPORT_SYMBOL_GPL vmlinux 0xf52e14e9 snmp_fold_field64 -EXPORT_SYMBOL_GPL vmlinux 0xf53ac3be sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xf54bc6f6 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xf534d6ab snd_soc_daifmt_parse_clock_provider_raw EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm EXPORT_SYMBOL_GPL vmlinux 0xf54df273 mctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0xf54dfbab alloc_io_pgtable_ops @@ -24764,89 +24768,82 @@ EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock EXPORT_SYMBOL_GPL vmlinux 0xf56c1562 devm_kmalloc EXPORT_SYMBOL_GPL vmlinux 0xf570258a dev_pm_opp_put_prop_name EXPORT_SYMBOL_GPL vmlinux 0xf5740940 of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0xf58376ab spi_get_next_queued_message EXPORT_SYMBOL_GPL vmlinux 0xf585a578 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf5873bae ata_port_abort EXPORT_SYMBOL_GPL vmlinux 0xf58a83e4 debugfs_create_u64 EXPORT_SYMBOL_GPL vmlinux 0xf58edfd7 poll_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5a95834 devlink_unregister EXPORT_SYMBOL_GPL vmlinux 0xf5b31ba6 da9052_disable_irq_nosync EXPORT_SYMBOL_GPL vmlinux 0xf5b54bbb led_trigger_remove EXPORT_SYMBOL_GPL vmlinux 0xf5b7e6e7 __wake_up_sync_key EXPORT_SYMBOL_GPL vmlinux 0xf5b99898 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0xf5bbfad6 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xf5cf1a68 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf5d512ee fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xf5e99ca0 sdhci_reset_tuning +EXPORT_SYMBOL_GPL vmlinux 0xf5c4ed72 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0xf5dc0f31 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xf5e7fed1 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0xf5edf061 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xf5ef5da1 bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5fde5c9 __trace_note_message EXPORT_SYMBOL_GPL vmlinux 0xf610e3b2 dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0xf61232ab crypto_unregister_kpp EXPORT_SYMBOL_GPL vmlinux 0xf618586c register_virtio_device EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xf6419f3b blk_ksm_is_superset -EXPORT_SYMBOL_GPL vmlinux 0xf6536673 ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0xf65e7e76 usb_enable_ltm EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync EXPORT_SYMBOL_GPL vmlinux 0xf6641ec5 genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xf6655fd5 phy_driver_is_genphy_10g EXPORT_SYMBOL_GPL vmlinux 0xf68379a0 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xf683bd1d crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0xf6a452ea iommu_detach_group EXPORT_SYMBOL_GPL vmlinux 0xf6a4ddb9 pci_d3cold_disable EXPORT_SYMBOL_GPL vmlinux 0xf6b043f1 rhashtable_walk_next EXPORT_SYMBOL_GPL vmlinux 0xf6bb6420 pm_clk_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d8c1b5 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xf6dfc481 crypto_register_akcipher EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f9fcbc ahci_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0xf70354ea fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xf70f59a2 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xf71e5d81 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf71ed97f __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0xf71f284e gpiod_get EXPORT_SYMBOL_GPL vmlinux 0xf729907b pcie_aspm_enabled EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf72e151d snd_soc_add_dai_controls EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf7335db8 bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0xf73d0b51 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xf741f379 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user EXPORT_SYMBOL_GPL vmlinux 0xf746e4fe irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xf7478465 cpufreq_enable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0xf74d75e3 usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0xf75e0c6a devm_extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0xf75fa766 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0xf764b9cc gpiochip_remove_pin_ranges EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer -EXPORT_SYMBOL_GPL vmlinux 0xf77944ba snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL vmlinux 0xf79b802f devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xf7a2044f stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xf7a21147 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xf792cd06 perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0xf7af5ff7 securityfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xf7bfcda4 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xf7c78b31 crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xf7e225b0 icc_put EXPORT_SYMBOL_GPL vmlinux 0xf7e56e97 uart_console_device -EXPORT_SYMBOL_GPL vmlinux 0xf7f1e108 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xf7e9dac4 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xf7e9ebb3 spi_new_device EXPORT_SYMBOL_GPL vmlinux 0xf7f59222 dw_pcie_ep_init_complete EXPORT_SYMBOL_GPL vmlinux 0xf7f679e1 of_console_check EXPORT_SYMBOL_GPL vmlinux 0xf7fedcab of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0xf804e96f cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xf7ff869b task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf80c1bb7 snd_soc_jack_get_type EXPORT_SYMBOL_GPL vmlinux 0xf80c276f rhashtable_walk_enter EXPORT_SYMBOL_GPL vmlinux 0xf81d901b pci_dev_lock EXPORT_SYMBOL_GPL vmlinux 0xf827aa22 usb_find_interface EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf85abb6c gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xf865f449 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0xf86ee51a crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xf85b366d inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0xf8731bf6 clk_regmap_mux_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xf88518a8 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xf88a77ab regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0xf899ab4f snd_soc_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0xf88e5ae6 do_splice_from EXPORT_SYMBOL_GPL vmlinux 0xf89e6e02 mpc8xxx_spi_tx_buf_u16 EXPORT_SYMBOL_GPL vmlinux 0xf8aa54e2 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xf8b8c735 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xf8ba540c trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0xf8d1e2ea devm_pinctrl_unregister EXPORT_SYMBOL_GPL vmlinux 0xf8e1410a dev_pm_opp_is_turbo EXPORT_SYMBOL_GPL vmlinux 0xf8ec6650 scsi_target_unblock @@ -24854,38 +24851,45 @@ EXPORT_SYMBOL_GPL vmlinux 0xf8ed36e7 key_type_logon EXPORT_SYMBOL_GPL vmlinux 0xf8f18752 ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0xf8f2a4eb snd_kill_fasync EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf904cafa regmap_write EXPORT_SYMBOL_GPL vmlinux 0xf914f7d2 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0xf91f301b ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xf919cfda icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0xf9297c50 device_change_owner EXPORT_SYMBOL_GPL vmlinux 0xf9419518 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xf9495a6f inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0xf9519013 mtd_read_fact_prot_reg EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf959c23e __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xf95acd68 ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xf96a20a6 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xf96d70fa device_match_name EXPORT_SYMBOL_GPL vmlinux 0xf96da44f xa_delete_node EXPORT_SYMBOL_GPL vmlinux 0xf97102d2 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xf97d25a2 i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0xf992d3d0 tps6586x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0xf993c23e led_trigger_register_simple EXPORT_SYMBOL_GPL vmlinux 0xf9960a7c led_trigger_set_default EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a07280 ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0xf9a292aa edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf9a3e76a msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0xf9cbc4c8 dma_map_sgtable EXPORT_SYMBOL_GPL vmlinux 0xf9d129df klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xf9d68a59 devm_snd_dmaengine_pcm_register EXPORT_SYMBOL_GPL vmlinux 0xf9d98edc pm_runtime_get_if_active EXPORT_SYMBOL_GPL vmlinux 0xf9ebe553 pci_bridge_emul_init EXPORT_SYMBOL_GPL vmlinux 0xf9ee3d7f serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xf9eecb6f __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xf9fc80ec gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0xfa03858a sram_exec_copy -EXPORT_SYMBOL_GPL vmlinux 0xfa119bec devm_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0xfa18624f uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xfa191656 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xfa1af61b regulator_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa23cb85 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xfa23f0bb crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0xfa2fbd17 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfa3a8bf7 fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0xfa3b657b of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0xfa416602 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xfa426f75 fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0xfa439561 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xfa4f16d6 kill_device EXPORT_SYMBOL_GPL vmlinux 0xfa50876d mtd_erase EXPORT_SYMBOL_GPL vmlinux 0xfa61ac81 usb_sg_wait EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name @@ -24895,38 +24899,44 @@ EXPORT_SYMBOL_GPL vmlinux 0xfa7bcda2 serdev_device_set_baudrate EXPORT_SYMBOL_GPL vmlinux 0xfa82f473 klist_next EXPORT_SYMBOL_GPL vmlinux 0xfa8ce4a2 of_get_videomode EXPORT_SYMBOL_GPL vmlinux 0xfa8e94b4 irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xfaac7723 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfa913c5c scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xfaaa5aa2 put_pid EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfab75c22 gpiochip_line_is_irq EXPORT_SYMBOL_GPL vmlinux 0xfaba248a usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xfacce244 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xfac26971 gpiochip_populate_parent_fwspec_twocell EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfaf0ad95 gpiochip_lock_as_irq EXPORT_SYMBOL_GPL vmlinux 0xfaf598c6 snd_ctl_request_layer +EXPORT_SYMBOL_GPL vmlinux 0xfb1fec82 ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0xfb24d4ab blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb2588db ethnl_cable_test_finished EXPORT_SYMBOL_GPL vmlinux 0xfb2a62f0 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xfb319209 perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb46f1d4 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0xfb4eff4f __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xfb4d4ef7 security_inode_create EXPORT_SYMBOL_GPL vmlinux 0xfb51f520 gen_pool_size EXPORT_SYMBOL_GPL vmlinux 0xfb615859 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xfb61b98f crypto_stats_ahash_update EXPORT_SYMBOL_GPL vmlinux 0xfb686bc9 serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb6f19ca dequeue_signal EXPORT_SYMBOL_GPL vmlinux 0xfb73451f alarm_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0xfb7a4a7f btree_last -EXPORT_SYMBOL_GPL vmlinux 0xfb831ec9 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0xfb82e42c dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0xfb8351be dma_buf_vmap EXPORT_SYMBOL_GPL vmlinux 0xfb867bd4 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xfb8800bb gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0xfb96f72b topology_set_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xfbb09ad3 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xfba1f6d9 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xfbaa0595 pwm_request EXPORT_SYMBOL_GPL vmlinux 0xfbb9cbfb regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xfbbaae62 ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbe3d18d bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xfbc66bab ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xfbd6fbb4 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0xfbdfe735 ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0xfbea5748 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xfbecbebd rdev_get_dev EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0xfbf88987 cpuidle_register EXPORT_SYMBOL_GPL vmlinux 0xfc014cb6 smp_call_function_any EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t @@ -24935,99 +24945,106 @@ EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key EXPORT_SYMBOL_GPL vmlinux 0xfc25f34c scsi_dh_attach EXPORT_SYMBOL_GPL vmlinux 0xfc2d2d72 pm_clk_add EXPORT_SYMBOL_GPL vmlinux 0xfc2e1d8f snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL vmlinux 0xfc337e43 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xfc35c343 nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0xfc4096b2 pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0xfc490a60 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0xfc5e5eff xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xfc472747 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0xfc4ac1a2 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xfc5eeb46 l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0xfc620de2 nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0xfc6a702f ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc771e57 netdev_rx_handler_unregister EXPORT_SYMBOL_GPL vmlinux 0xfc892d84 usb_ep0_reinit EXPORT_SYMBOL_GPL vmlinux 0xfc8a7d50 ata_pci_sff_prepare_host EXPORT_SYMBOL_GPL vmlinux 0xfc90d7de pci_epc_remove_epf EXPORT_SYMBOL_GPL vmlinux 0xfc947965 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xfcae2d92 gpiochip_generic_free EXPORT_SYMBOL_GPL vmlinux 0xfcaed61c pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0xfcb7d0ab ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xfcccf912 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xfccf0c13 ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0xfcd216b0 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xfcd74dc6 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xfcd39eed regulator_bulk_force_disable EXPORT_SYMBOL_GPL vmlinux 0xfcf54d1d add_wait_queue_priority EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown EXPORT_SYMBOL_GPL vmlinux 0xfcfc5518 usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xfd12d24c crypto_stats_akcipher_sign EXPORT_SYMBOL_GPL vmlinux 0xfd1334e1 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xfd1de257 devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0xfd2b0a2c sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0xfd2c472f ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0xfd3aecfa fuse_fill_super_common EXPORT_SYMBOL_GPL vmlinux 0xfd3bb275 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xfd3f37ff regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0xfd40ad83 kfree_strarray EXPORT_SYMBOL_GPL vmlinux 0xfd4dba7d freq_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xfd5026f7 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xfd527870 fixed_phy_register_with_gpiod EXPORT_SYMBOL_GPL vmlinux 0xfd544b19 badrange_init EXPORT_SYMBOL_GPL vmlinux 0xfd581da1 free_rs +EXPORT_SYMBOL_GPL vmlinux 0xfd597788 snd_soc_register_component EXPORT_SYMBOL_GPL vmlinux 0xfd5c0f79 usb_get_role_switch_default_mode EXPORT_SYMBOL_GPL vmlinux 0xfd80bcff nd_region_dev EXPORT_SYMBOL_GPL vmlinux 0xfd82861a irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xfd8e4b3c devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xfd8f3adc tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0xfda47da2 blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0xfdb1f04f devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xfdaedaf0 crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type EXPORT_SYMBOL_GPL vmlinux 0xfdbeb2fc blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0xfddd61f4 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfdd48124 snd_soc_dpcm_fe_can_update EXPORT_SYMBOL_GPL vmlinux 0xfdeec25e deregister_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0xfdfa56ac kill_device -EXPORT_SYMBOL_GPL vmlinux 0xfe05221b trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfdfb7a9a crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xfe093403 platform_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xfe0bbbd2 atomic_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xfe0f3cdb anon_inode_getfile EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release -EXPORT_SYMBOL_GPL vmlinux 0xfe1aa81d proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0xfe29d810 trace_seq_to_user EXPORT_SYMBOL_GPL vmlinux 0xfe2cae6a of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0xfe4609a5 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xfe43a330 mmc_regulator_get_supply EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe49ab8a vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xfe4867e7 tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0xfe5aad0c divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xfe6136d0 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xfe7324fb get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xfe87b6a6 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xfe5cf93c perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xfe5f3edd of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xfe6f1a65 ehci_handshake EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page EXPORT_SYMBOL_GPL vmlinux 0xfe8e2b8f power_supply_register EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free EXPORT_SYMBOL_GPL vmlinux 0xfea171ac virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xfebfe4a6 fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup EXPORT_SYMBOL_GPL vmlinux 0xfec6da69 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0xfecd5510 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0xfece95f9 sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xfec976fc devlink_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister EXPORT_SYMBOL_GPL vmlinux 0xfed561ff divider_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xfedb53dd blkg_conf_finish EXPORT_SYMBOL_GPL vmlinux 0xff0072ae dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0xff028134 of_clk_parent_fill EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff105778 switchdev_handle_fdb_add_to_device EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff16896e bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xff18c8d0 snd_soc_dapm_mixer_update_power EXPORT_SYMBOL_GPL vmlinux 0xff21a68a mtd_is_locked -EXPORT_SYMBOL_GPL vmlinux 0xff255561 rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0xff276c7e devres_remove_group EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff33d6f2 inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0xff3c2b00 hisi_clk_register_phase EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff46e0d5 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xff5c9c5b regmap_field_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xff5f40dc regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xff638cac crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xff67c97b spi_busnum_to_master EXPORT_SYMBOL_GPL vmlinux 0xff6b6b00 tty_port_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0xff710651 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL vmlinux 0xff787b6d modify_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xff85c098 ata_ehi_clear_desc EXPORT_SYMBOL_GPL vmlinux 0xff85e567 clk_register_hisi_phase EXPORT_SYMBOL_GPL vmlinux 0xff8a4013 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0xff8c31b0 devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0xffae2f8e snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0xff9fe457 lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb989c3 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xffc08d39 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xffcfa256 inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0xffd0f892 rt_mutex_lock_interruptible EXPORT_SYMBOL_GPL vmlinux 0xffd1123f save_stack_trace EXPORT_SYMBOL_GPL vmlinux 0xffd280d3 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xffd3d8c5 sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0xffe2e707 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xffe45bec fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xffe994eb synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0xfffae4b7 rio_dev_put FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux IIO_ADISLIB EXPORT_SYMBOL 0x875d8260 __adis_enable_irq drivers/iio/imu/adis_lib @@ -25043,45 +25060,45 @@ IIO_ADISLIB EXPORT_SYMBOL_GPL 0xcc72da63 __adis_initial_startup drivers/iio/imu/ IIO_ADISLIB EXPORT_SYMBOL_GPL 0xce8141de adis_init drivers/iio/imu/adis_lib IIO_ADISLIB EXPORT_SYMBOL_GPL 0xf7f2c736 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0xaf340a8d __adis_reset drivers/iio/imu/adis_lib -IIO_HID EXPORT_SYMBOL 0x04b374da hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x11407550 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x148b61ea hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x18c38aef hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x22f388c5 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x2fe8a111 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x084179ed hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x0c1f7d4f hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x18536b1a hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x34e5bbf1 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common IIO_HID EXPORT_SYMBOL 0x495dd08c hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x5e9a70b9 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x6c92bb13 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x6dd5b70f hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x55dd515d hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xad34f088 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xcf2be839 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x2f10764c hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x3d0a4710 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x67d594fe hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xe9cf5b7c hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xa484c13f hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xbdac6d31 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xc0d8fb54 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xc4cbd5ee hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xcf6d1a0d hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xd68bc018 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x10ab4805 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x10c29a82 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xa0e36be9 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xb2928b6d hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common LTC2497 EXPORT_SYMBOL 0x117e166e ltc2497core_probe drivers/iio/adc/ltc2497-core LTC2497 EXPORT_SYMBOL 0x8046dc18 ltc2497core_remove drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x13656bb0 mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x1e69aa74 mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x1edb03d4 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x273ac923 mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x5048c1c5 mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x6431efd1 mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x74cbf3ac mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x7e11a4d2 mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x85c8ecac mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x896ec0b1 mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xbd8296e5 mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xbdfcc929 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xc5db68e9 mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd65c8546 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x032f7e71 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x0bf5cfeb mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2ad3e691 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2d4c25e9 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2f4f7756 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x46bd3f09 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x775d89d1 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fb9f744 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x81425b34 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8e3b411d mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8e59ed8f mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb6697870 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe7841ded mcb_bus_get drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x56560cbd nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x770a7558 nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x92c12e1c nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x99bab5b4 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc0d8b028 nvme_find_get_ns drivers/nvme/host/nvme-core +MCB EXPORT_SYMBOL_GPL 0xf40c35d7 mcb_request_mem drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x88cf6354 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8bf62f26 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8fee9954 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb229fd61 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc7cc3d53 nvme_command_effects drivers/nvme/host/nvme-core PMBUS EXPORT_SYMBOL_GPL 0x013f962f pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core PMBUS EXPORT_SYMBOL_GPL 0x120bc062 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core PMBUS EXPORT_SYMBOL_GPL 0x2ec35311 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core @@ -25101,28 +25118,28 @@ PMBUS EXPORT_SYMBOL_GPL 0xe4169022 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus PMBUS EXPORT_SYMBOL_GPL 0xec689ae3 pmbus_set_update drivers/hwmon/pmbus/pmbus_core PMBUS EXPORT_SYMBOL_GPL 0xf86233db pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core PMBUS EXPORT_SYMBOL_GPL 0xfa311ac0 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -USB_STORAGE EXPORT_SYMBOL_GPL 0x0c0ee49d usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x0ddd68ac usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x11ece9f3 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x02f1c7dd usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1204e122 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x18b4e0ac usb_stor_ctrl_transfer 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 0x24cfee8b usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2f657c0e usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x56d94a12 usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x65533e3e usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2f19f70f usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3cbefbfc usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x43122b9b usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x68199871 usb_stor_control_msg drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x6b7c4dc8 usb_stor_disconnect drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x75dcab2b usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x81eb1382 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x84182ab5 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x89a4c73b usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9415a89a usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xaaac2697 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7a812981 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x87a72d44 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x948ba500 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa0de5f7c usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa786324c usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0xabe5a081 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xaca562a9 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0xb7d08ed4 usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb9fa835d usb_stor_CB_transport drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0xc0dbc7f1 usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc7cf3ed7 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xed3f5bb0 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcf9a9e15 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd19370a0 usb_stor_clear_halt drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0xee895dbf usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf1902d1a usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf2dd6a0d usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf30b40bf usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf8ead39d usb_stor_host_template_init drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0xfbf1cd14 usb_stor_pre_reset drivers/usb/storage/usb-storage diff --git a/debian.master/abi/ppc64el/generic b/debian.master/abi/ppc64el/generic index 26c7a2f6c595a..5b4bba6a9cd31 100644 --- a/debian.master/abi/ppc64el/generic +++ b/debian.master/abi/ppc64el/generic @@ -1,6 +1,6 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x99d65f7b crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xd233c2dc crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xe8c0583b crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x271000b0 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xcba904fb crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xea503748 crypto_cipher_setkey vmlinux CXL EXPORT_SYMBOL_GPL 0x010fc054 cxl_driver_unregister drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x2b13fcdb cxl_probe_device_regs drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x32c02664 to_cxl_decoder drivers/cxl/core/cxl_core @@ -41,23 +41,23 @@ EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey 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 0x4f5845f7 crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x60be96ff crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0x9aa0d08c crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0xbf43893a crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xe78b3cc9 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0xebc41f0e crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/sha3_generic 0x32c9876d crypto_sha3_final -EXPORT_SYMBOL crypto/sha3_generic 0xcec47599 crypto_sha3_update -EXPORT_SYMBOL crypto/sha3_generic 0xf55c557c crypto_sha3_init -EXPORT_SYMBOL crypto/sm2_generic 0x574bcae6 sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0x0564fafc crypto_sm3_finup -EXPORT_SYMBOL crypto/sm3_generic 0x8053d2ab crypto_sm3_final -EXPORT_SYMBOL crypto/sm3_generic 0xbd036480 crypto_sm3_update +EXPORT_SYMBOL crypto/nhpoly1305 0x004d02f5 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x0100a97a crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x26a58a3d crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x4105c0c5 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xa77294cb crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xccd4b54f crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/sha3_generic 0x030d2a45 crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x08aa0082 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x85fc9018 crypto_sha3_final +EXPORT_SYMBOL crypto/sm2_generic 0x32abbf7e sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0xe0468f50 crypto_sm3_final +EXPORT_SYMBOL crypto/sm3_generic 0xe61a07bf crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0xf8748412 crypto_sm3_update EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0xea681751 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x6949e12a bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0xf22f2742 bcma_core_dma_translation +EXPORT_SYMBOL drivers/atm/suni 0x96d6c890 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x3d4e8d6e bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0x6ca0436c 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 @@ -76,8 +76,8 @@ EXPORT_SYMBOL drivers/block/paride/paride 0xcbbb1254 pi_init EXPORT_SYMBOL drivers/block/paride/paride 0xea1ba7d2 paride_register EXPORT_SYMBOL drivers/block/paride/paride 0xf7286a74 pi_read_block EXPORT_SYMBOL drivers/block/paride/paride 0xfc4ae819 pi_write_regr -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xde880a47 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0xd686fc71 rsi_bt_ops +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xbe6eb681 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x018fad48 rsi_bt_ops EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x295299e4 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 @@ -990,29 +990,29 @@ EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xda884a5d drm_gem_vram_pin EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe630c9e3 drmm_vram_helper_init EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfa58144f drm_vram_helper_mode_valid EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x00a00164 drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x13398323 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1610e23f drm_sched_increase_karma_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1f60b735 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x17a7e01e drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x18210ab3 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x19e01f13 drm_sched_init EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x21579685 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x28ffd706 drm_sched_resubmit_jobs_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x29337ff4 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x27f358d4 drm_sched_job_init EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x29378195 drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2cc576db drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2f4ca5d8 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x369997c2 drm_sched_dependency_optimized EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x39a8463e drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3ca5178e drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6359f006 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x63fa7483 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5d8ac83c drm_sched_fini EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x64cd4281 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6a38a045 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6a317658 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x87663b55 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9a26e44d drm_sched_reset_karma EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9ab464c0 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9b6f08e7 drm_sched_resubmit_jobs EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa288a810 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa3148d28 drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa3af1a81 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xadb1778a drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa3ddb3e2 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xad67aa13 drm_sched_resubmit_jobs_ext EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc7a580a8 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe192d719 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe555ec9f drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe672022f drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xce0c0d9c drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd05fb035 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf472507b drm_sched_increase_karma EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0876cdbe ttm_bo_init EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0dc4653f ttm_device_swapout EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x11a37b39 ttm_resource_manager_evict_all @@ -1236,347 +1236,347 @@ EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xc7becb05 ms5611_remove EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x7790634f st_press_get_settings EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xa5c467d0 st_press_common_remove EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xe5116662 st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0c080464 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0f7871c3 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x22b2011d ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x29e2850b ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x41bc7dad ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x443ad179 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4cfaee77 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x05f0ee86 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2493f6e4 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x363dc090 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x415fbeb7 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4dbd5cf5 ib_send_cm_req EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x790e5017 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9efa5fd6 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa30ca532 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc3cef116 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc7804869 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe71a8eb8 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe88ed8b6 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xef37e7c7 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7d12e2b3 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8da7082f ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9565d81c ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x96621163 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa4e176d6 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcb0be1f2 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd2a833d7 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd3d55205 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe0818de8 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeb1d6702 ib_send_cm_rtu EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00f36143 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x018ff1f6 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0433f5f4 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06a6ebf3 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x072c2631 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07873d5a ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x099a203c ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09e62133 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ae869eb rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c46ee20 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d05b7ec ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d43e3f3 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fa06f87 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1034bca0 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x129b1e1f ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12eaff6e __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1336592b ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x146d7c79 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19aec870 ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ade6200 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1afb60f8 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1be3b973 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1caa0689 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dc70b04 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00f47b66 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0181fa51 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x018efe8b rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0221fa07 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x023e6caa ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02979886 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03207977 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08db9965 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f63679a ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fb4a95d rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x105465a5 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11b2c31b rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x127b647d ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13de32e4 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15799a71 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15cf25b9 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1757a95c ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19127160 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a364876 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d02f352 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d2072c3 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d8d13b5 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f915071 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fcec345 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20f2921c ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21a29144 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22effdcb ib_query_port EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x254f7e3a ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26de4332 rdma_dev_access_netns EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x279d853d ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2976dcf8 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b67fed5 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ba6ad82 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2db3a8b9 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e4310ce ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x285024a4 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x298feda6 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29aa77e9 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a5c027a rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b1d387b ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f17ccf8 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fa9ab1a rdma_read_gid_l2_fields EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3134e9bc ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x343abaf9 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37c3bfe4 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a3fb711 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bc5e8f8 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bee4f93 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bfa5b7c ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3edf3545 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31307767 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x337dab98 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36e4d7bf ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3870e18f ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bfc86c7 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d29789c ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d9d2e0f ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dc91e29 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ebd6a0a ib_free_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42b9a314 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42ebe506 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x433142e0 rdma_create_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x435dca2c rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43e95a4f ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4548b3f1 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x453c8721 ib_set_device_ops EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46504098 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x469fe11d rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x481efeb2 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4829f134 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46cfee5d rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x471019be __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49fd86b6 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a6fa0eb rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4acafc4b rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b7f867c rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d2f9ff3 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d7f3a45 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d94dabc ib_get_rmpp_segment 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 0x4eaacd07 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x529c4af1 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52cb46f4 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54bab6dd ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54ea6ee0 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54f184f4 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55844359 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x559da329 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55a9e2d2 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fd35d2f rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50d0301c ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x510d2546 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54d4ffaa rdma_link_unregister EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5653d66b ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5742315d rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57538f0a rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58985216 ib_alloc_mr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b797d44 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5dafa4ba ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ddc78a4 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fec52fa ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ff2d8e9 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6121d59c ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a055b8c ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d7fa0ec ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fa808cc rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fb08a65 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x605bee41 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6092274d rdma_query_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x618137c6 rdma_nl_put_driver_u32 EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x622cef7b rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6277cfd0 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x641a6454 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6748feac ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x680ab3b4 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x695ad6d0 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62092156 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63efa922 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x649b6bee ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6593535f rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67d6acfa rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69192697 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6956334b ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69878bec rdma_read_gid_hw_context EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d6f9b21 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dd19d69 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dde0a5e rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e192438 ib_destroy_wq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ffdc038 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7018d740 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7218b409 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7004a97b ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x710c9f30 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72e241ba ibdev_notice EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73c2a430 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7427de8c ib_alloc_xrcd_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75e14f0e rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76e04e6d rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x781a7e4f rdma_create_user_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78fea3ca rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b82a9b3 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bcf6857 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f37de83 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f6bdab8 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8285b0c6 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82dfffce rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8497c27d rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84d0d6a7 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8578f4d3 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85b900f0 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x869257c1 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78d07d08 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c639797 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d7f6283 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dd31147 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f25786e ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x812c4a2f rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81c8ca59 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82578e66 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x834bbf2b ib_get_net_dev_by_params EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86f0cdc5 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87a98761 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8834bcb1 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b1e4382 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c121b14 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c742188 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c9e56dd rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ce928c1 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d840c58 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8de5e2c8 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e31853d rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e8b1ecc ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e931ce0 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ef84656 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f215ae1 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x880e84bc ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8821304d ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a247aed ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bbab4dd rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bfed8b3 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c8bf5c6 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e2980b1 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90bd89f5 rdma_destroy_ah_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91107023 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92f6ee9c rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93a8bf82 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93f5941a rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9439b49d ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9615295b ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95068e71 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95820d11 ibdev_emerg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x975ff2b9 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97bafa2a rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98d5b341 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e334071 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e4f7760 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9eaae353 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f782e6c ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ffe57d0 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0490507 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0cac081 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa18a560b rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1a6541d rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3bc6d2f ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b262c90 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c57cf14 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f08aa76 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fdbbefb ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0c64544 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1ef1381 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa235e960 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa33582c7 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa353c4b1 ib_destroy_cq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4fbd981 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5721e10 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5bfd3fc rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5c46590 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa60fd73a roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6931879 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa865732a ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9ef0d3b rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa9009dc ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4e275cd rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6b044f3 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7cf6f1e ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa71c54a rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab23fd8f ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaca4bc59 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacff9ad5 ib_create_wq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaec2a9cf ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1852669 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb270608c ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3614af6 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf6462e0 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb05a5fe5 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb06c7601 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb08fe485 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0f20649 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb16a2ac0 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1f6cd6a rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2210c98 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2af82bd rdma_rw_ctx_wrs EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c8ccd5 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5eaefa0 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb69552a2 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb73f04cd ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5ca8319 rdma_nl_put_driver_string EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9c6ffd5 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba164230 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd63d683 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbff9f354 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc00be8db ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc065b004 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc27280a3 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6ba876a rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6d1dc20 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7cc7fb8 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8047066 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcaeb7fa4 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbb92fad ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdbf84db ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9868f3f ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9a55545 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb2f313c ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf0aa33d ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbffee5e5 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5d51b57 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc62739ab ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc799c6de rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7f19480 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca14f7e0 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb4a7a4e ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb793db9 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc14a7d7 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd6ea57a ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcddcf37d ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf6db875 rdma_port_get_link_layer EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfe23f0b ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0e5d453 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd333a3be ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd548b968 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd07070fa _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1f9a50e rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd37a5c3d ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd55169c5 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5932b7e ib_dereg_mr_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6d73444 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7c9b363 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd91eeb93 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6cd02d8 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd76c2c84 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7dbbbcb ib_sa_path_rec_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda29655b rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcffb7a7 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf10e4fb ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2a40706 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4130ed3 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4b608a8 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbe5cba0 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc0476e8 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd04809d ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd66fb60 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe12c7a98 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2292c6d ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe23ca5e2 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2c6b975 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4d48e8a 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 0xe70d81a2 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6eac17c rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe744077a ib_get_vf_guid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8fedcf2 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe86120aa ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8b8a9f4 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9538d81 ib_get_vf_config EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed1dc204 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed437bd2 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee022509 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0dd162e ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0ff014c ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1119f6f ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf16bd696 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf21d9db3 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5bc487e ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeaaf5c5d rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb3a0a61 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb655f2c ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb793b79 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec3c2b3e rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed0b38d8 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeeea1ada ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef901fdf ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefd1370b ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf09cbf90 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4762d60 __rdma_block_iter_next EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6de125e rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6a41787 __ib_alloc_cq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf750cca0 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7620c16 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf81b6a2f rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8427ea5 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbf3ec8c __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdff8da5 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe24c10d ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe2df007 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x023ecd03 ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x08cff004 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0a836fa4 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0ef91828 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf72b1050 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7780116 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8f6f623 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb18c00f rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb26bc51 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdf2e685 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe04d21c ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe5e1b9c ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff2ee4ea rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07379c12 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0849b669 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x09f15506 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0d4c80ea ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0dc3a71e uverbs_uobject_put EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1f26ebd5 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x25303217 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x29642ae7 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x30bbfa34 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x327b4322 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x34279e69 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4dab0e24 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5253d253 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x21a84bfe ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x22163e40 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x22916b71 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2904910e ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2db3a406 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3c9adf7c flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x47ea9092 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4af552bf ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4c960786 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4edaf99f ib_copy_ah_attr_to_user EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x67e45f5f uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6e8ed9cc ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6f2f58e8 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x79ed7de5 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x869df1e4 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8c2463b4 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8ce78a75 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8e3a4b69 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x982836cb ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9939d0f3 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa3721a18 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa6cb1e23 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa747adc4 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xab8cf3a4 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb5ee650d ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6990d4aa ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x69d1d376 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6d321dd7 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7499c5f9 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7d005523 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x82260e8b ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8e66c4b9 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9043deee ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x931298ab ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaab67c8a _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xab7bc529 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xae3120d0 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbcb82e60 ib_umem_odp_alloc_implicit EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc34a6d9e ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcbafaaaa ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcec891a4 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcf7524ec _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdbab9778 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdecdb1e0 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe99067fa ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf6645933 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf7391a62 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x006cd290 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3cfe6055 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4ddf5491 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x672b8ae7 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7f0784e9 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x918decb0 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb681b13b iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd1d2295b iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbee080db ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc5961698 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc6820df4 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xca07b10c ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcfc1d78e ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd159c701 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdb5205cb _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdc451e94 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ed16fd0 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x269fb47b iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5eb408b0 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6731ad3d iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6860a5ac iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x95398987 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99f880b6 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd74ca4c7 iw_cm_accept EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x085d14cd rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0be55349 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x14ea8c50 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x14f7848a __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x20789b08 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x229f4884 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2796a1ae rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x29fc5828 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2e07593f rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3ed43d5b rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x40696ef6 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4a5c94de rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5afefbcd rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5f92f379 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x618acc6a rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x648e544a rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x67bd8fe1 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x68ec14d9 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6caaa2ef rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f0afd60 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x74becbeb rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x857c7457 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88008db0 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x89d3221c rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ae80f45 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x02d9b602 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x07bf9ecf rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x13b37b11 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x158d3d14 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1dca6b20 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1dd12b3b rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1eb7307f rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1fd10650 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x24caa2dd rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x277f16fd rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3600ff85 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x46218a4b rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x565ed8d3 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x84574016 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x85cd6047 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x876bde33 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8e7e1920 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8f0250b8 rdma_resolve_route EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaeda73ba rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb0122646 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb48961fa rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb7523fec rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe2169a38 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe41af4fd rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xed692cd4 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf708f775 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xffccc283 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x05bd013d rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0dcf3333 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1868b715 rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6178d16c rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6aa0ded2 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xbfd08366 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xdc12819c rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x99531d7a __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9a6c38ac rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9e01b7e9 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xac1d1f98 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xae7944c0 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb4969578 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbf85e320 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcffa6e3e rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd5f9a8d4 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd9bd6fe8 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdd4eb7f4 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdedf6cd7 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe2e0b565 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf152008b rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf1c4ee65 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf82cc49e rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0e64218c rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1a85b987 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2d9046e9 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7e4e4dbc rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xbc7c7238 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xe84f6f0e rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf37951a0 rtrs_clt_put_permit 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 0x6f2d1a8b rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7d3ebfd6 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 0x8df34c3d rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x9a08e119 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc2cb71ea rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x0d0cc2e5 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3cd0570d rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7d15d1df rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9c12eb3b rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb6d8f03f rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf24a0e1b rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x8e85cdf7 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xdf82d2b6 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xf945c56d rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x211e2e2c rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x89a25af7 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8cfbaf44 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc13eeca1 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xd4e4c9cf rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xfa99ec05 rtrs_srv_resp_rdma EXPORT_SYMBOL drivers/input/gameport/gameport 0x441d281c gameport_open EXPORT_SYMBOL drivers/input/gameport/gameport 0x4ac190d0 gameport_start_polling EXPORT_SYMBOL drivers/input/gameport/gameport 0x5a649cb1 gameport_unregister_port @@ -1614,48 +1614,48 @@ 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 0x21bc7965 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x4028be64 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x4f4435af mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xaba4f2d5 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x8b02b70b mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x9a415461 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x20081d46 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x58de219d mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x65649f78 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7ec401b6 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x45f92fc2 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x8c2377de mISDNisar_irq EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x226a3527 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x08c9da27 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0d2939e9 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x139a6325 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1ccf850c mISDN_register_device 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 0x33e19aca queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x342d27f1 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x42c1b7d8 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x459ae17a mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x48116caa mISDNDevName4ch EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x513c7c77 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x55b3381f recv_Bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x58e216c8 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5db1f810 recv_Bchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x621f1b02 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x77f10c19 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a861b30 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7e08d62e bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x899384a8 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a82254a recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8d50d698 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8e02bff3 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9b259cc1 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a623f7f mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8082bd34 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8e75d809 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x95c8e4ff recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x999b8634 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x99c4131e get_next_bframe EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9f11f570 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc21a8c79 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9d54f478 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaa488c12 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xacd9c346 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb2b0fba0 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb54ee2a2 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbaf492d3 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc0b7a816 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc11c6c25 mISDN_unregister_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc80b2a73 recv_Bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd50462de mISDN_ctrl_bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf13fb41d mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfd44f293 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfdc7d7c0 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xef38c7f1 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfd01f34f recv_Echannel 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 @@ -1676,19 +1676,19 @@ EXPORT_SYMBOL drivers/md/dm-snapshot 0xceffd6f6 dm_exception_store_create EXPORT_SYMBOL drivers/md/dm-snapshot 0xf84ab1a7 dm_exception_store_destroy EXPORT_SYMBOL drivers/md/raid456 0xb0dcbeae r5c_journal_mode_set EXPORT_SYMBOL drivers/md/raid456 0xe8806ccb raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2651ef42 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2dadf043 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x66b1de13 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6988e48c flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6c1e3611 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x89e7e26b flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x99588e0b flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa19ad695 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb2310ebc flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb23d25cb flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb949cb98 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb97a49a5 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xee55daf7 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x05bc063a flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x06d11c26 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1673c610 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x34afc871 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3cc69166 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x486b5d98 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6a6706ab flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fc7540a flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9a22037b flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9e972ec7 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc8bb3e72 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcfa65704 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdbed7fa3 flexcop_pass_dmx_data EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query EXPORT_SYMBOL drivers/media/common/cx2341x 0x1d0d014a cx2341x_handler_setup EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu @@ -1702,7 +1702,7 @@ 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 0xac25f23f cypress_load_firmware EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xb2a42631 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xcaa3da93 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog EXPORT_SYMBOL drivers/media/common/tveeprom 0x480ba465 tveeprom_read EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create @@ -1713,27 +1713,26 @@ EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x59e53dca vb2_ve 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 0x26fc33cb vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x2949f488 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x3ee3fea3 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x8af365c8 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xdcf99c7c vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf613aab0 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x1115e3f9 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x13877fd2 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x2f7bde10 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x39ebc1e5 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x6c249e93 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xe22fa3b9 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 0xa4fe86d6 vb2_querybuf EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x064fd246 dvb_ringbuffer_read_user EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x07f22b79 dvb_register_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0abfcaf8 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x15052806 dvb_dmx_swfilter_204 EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x23c65271 dvb_dmxdev_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x280e629f dvb_register_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x29d58443 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3aee8970 dvb_net_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4080e4f2 dvb_dmxdev_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4502c3be dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4655aeb2 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5830a49a dvb_ringbuffer_flush_spinlock_wakeup EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x60bface5 dvb_ca_en50221_camchange_irq @@ -1752,6 +1751,7 @@ EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c045834 dvb_ca_en50221_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8fd6e094 dvb_dmx_swfilter_packets EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9aaea7a8 dvb_unregister_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9dffb35d dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa2fa545b dvb_net_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa3daceca dvb_ca_en50221_frda_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xacd93c69 dvb_frontend_suspend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb1c5cb32 dvb_device_get @@ -1765,8 +1765,6 @@ EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd7bdc9a4 dvb_remove_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb186336 dvb_unregister_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe816239d dvb_generic_ioctl EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xed056cde dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xd4b33b9c ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xd57b3efc atbm8830_attach EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x222c6ee2 au8522_led_ctrl EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x22bc49c2 au8522_analog_i2c_gate_ctrl EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3cf56817 au8522_init @@ -1776,22 +1774,8 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd1849333 au8522_readr EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd5b8dab0 au8522_i2c_gate_ctrl EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdb84c084 au8522_release_state EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfb672034 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x5a785ef5 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x1e394738 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x0eaa03f0 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xaa9ac07a cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xaaa4945f cx24110_attach EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x006af237 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xfc05083b cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xf749afa0 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xfedbc353 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x176fff0c cx24123_attach EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x734e95c8 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x67a97438 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x04ec7ae1 cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xbf303636 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x83c68a55 cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3e7354e7 dib0070_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x44d98448 dib0070_set_rf_output EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x57f2b675 dib0070_ctrl_agc_filter EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9bae1988 dib0070_get_rf_output @@ -1801,7 +1785,6 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x366b3cdc dib0090_get_tune_s EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x42c45f9b dib0090_gain_control EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x578f44e4 dib0090_update_rframp_7090 EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6d60f9f0 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x70ad03f7 dib0090_register EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7ebbf19e dib0090_set_dc_servo EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x829e1961 dib0090_update_tuning_table_7090 EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb3aa81b7 dib0090_set_tune_state @@ -1809,21 +1792,15 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc0ebe516 dib0090_dcc_freq EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc5fe35a9 dib0090_get_wbd_offset EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdad63f4e dib0090_set_vga EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe22f4cad dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xea2bbcd7 dib0090_fw_register EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf2d99832 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x893531dd dib3000mb_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x06d3282f dib3000mc_get_tuner_i2c_master EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3387b9a5 dib3000mc_i2c_enumeration EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3e7b8105 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd7b81a9c dib3000mc_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf696e6c8 dib3000mc_pid_control EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xff504059 dib3000mc_pid_parse EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x335b7e86 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x71fdb05f dib7000m_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x790d9893 dib7000m_pid_filter EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xacd88b82 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xf19b91d1 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x2085892c dib8000_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0b89a12b dib9000_get_slave_frontend EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1c44e8fe dib9000_firmware_post_pll_init EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2256a3dd dib9000_set_slave_frontend @@ -1835,100 +1812,28 @@ EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7c28e454 dib9000_get_i2c_ma EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8a17dfc8 dib9000_get_component_bus_interface EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xafba1af7 dib9000_fw_pid_filter_ctrl EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbed75661 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdc079e54 dib9000_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xfe325395 dib9000_set_gpio EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0bcf1018 dibx000_init_i2c_master EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc449ca03 dibx000_get_i2c_adapter EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd925736f dibx000_i2c_set_speed EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe091395c dibx000_exit_i2c_master EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe5d4e9ce dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xff15088a drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x2ace875f drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x37964d07 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x8d2cd3db ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x7bbef371 dvb_pll_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x536b6cda dvb_dummy_fe_ofdm_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x923e3665 dvb_dummy_fe_qam_attach EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xf8a548b2 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xc0c1214c ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x110f6d7c helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x51ab8561 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x5130ccd4 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x2c169d04 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xa13c4111 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x84fb45e7 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x1150d05c itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x213bbddc ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x7cef4a43 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x23eb9d4a lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xff6d97e2 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x4b3fe432 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xb32d6841 lgdt330x_attach EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x4402888a lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x36b03861 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xe3c52690 lnbh25_attach EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xc807fe7c lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x8d65c811 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xb54251c1 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x4811de15 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x8f57da50 m88ds3103_attach EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xb5020d57 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x30281b23 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xb426e169 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xdb2ffee6 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x07aa5c5e mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xa149381a mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x22afedc5 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x89fea1ba nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xd4232513 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x45d1a32e or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x8857b461 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x8b59352c s5h1411_attach EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x937e0026 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xa7213290 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x055b79b3 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xfb8d675a s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xabd79daa si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xd2f341d6 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x461b7444 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x1fed881d stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x73716690 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xd0f3e7aa stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x272c3949 stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xe9d489da stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x2d2e1def stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x5e5a4e8a stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xf992a8ad stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xffc362d2 stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x30e4679f stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x31fefb26 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xd722b7a5 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x89b6e22b tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x37022ea0 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xe4f70822 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x3ad27e35 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xceb1a86f tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xceb2cc5d tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x30edb371 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x11dbdb21 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x58a803e6 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x843bed70 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xc54cd72b ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xb9d77d78 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xb7a3f240 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x93f40084 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x6abe10f0 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xf1446450 zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x2621e184 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x55d9aad3 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xc1ffcb8e zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x351171d6 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4dfb0a91 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x667f37ac flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbd8d0780 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xee598650 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf6cfb422 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xfa8fef83 flexcop_dma_config +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x378f3c8c zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x3a5ccabf zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x089f73f2 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x32f344c1 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x478a203c flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5af514df flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7eaa3d14 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb4148684 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf2ab2601 flexcop_dma_config EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x31ac6491 bt878_stop EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x334e4f63 bt878 EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num @@ -1945,18 +1850,16 @@ EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1ba0c4b3 dst_error_recovery EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x94adeb27 dst_wait_dst_ready EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa3f28374 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcf40c762 dst_attach EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd65f4b0a read_dst EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd842f718 dst_pio_disable EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xef945be1 dst_comm_init EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf2dfd9dd rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xed0122b3 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2452620d cx18_ext_init EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6b416821 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x78fcc9bb cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa1449937 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb2d27c2c cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x3b1d22ba cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x56dfc82e cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x79819895 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb72f202e cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd9e5ecf3 cx18_claim_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 @@ -1970,44 +1873,43 @@ EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc39db7f5 cx25821_riscmem_allo EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xcd05799a cx25821_sram_channel_setup_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf10a3785 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x46c7e547 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x9a8b72a1 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x0527373c cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x30f97aab cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5a18bdb2 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc08de5f0 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x53baabd7 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x66abb3e2 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9a3135ae cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xae3df486 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc5ceac0d cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xcd5430d1 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfa8a22d5 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0a1f6a54 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0dcb184a cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2b26c446 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2f1e5a67 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x32981aa6 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3cae7c8b cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5c028452 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x1877891d vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x431df351 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x13dda453 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x2feffd26 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x87468434 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd753e88a cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1492efbb cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x24c10de2 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x26f0b63b cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6c6195fa cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x74476904 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9fd29ccb cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa262dd78 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0e9d74ec cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1b6ac922 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1d2664a0 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2ec69ea0 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x317e0159 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3558662e cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3a684a20 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x42341e48 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4b0a4703 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 0x6e8213a0 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x75465b6f cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7ee228af cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fb73177 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8b862b5f cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x699e7469 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x85dd7f06 cx88_set_tvaudio EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x927e34ce cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x959e0d85 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc29e5541 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcba11464 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd5500731 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf08e3a99 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf831ec9c cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfb949877 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xfeccff27 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x932034d5 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x99ccadf8 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa37c15a6 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb09d2051 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbdbaa3af cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc05426c5 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xefa3a5ca cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf70f0935 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xff6b9149 cx88_dsp_detect_stereo_sap EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x023dcaca ivtv_stop_v4l2_encode_stream EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x17ac4df3 ivtv_udma_prepare @@ -2028,19 +1930,19 @@ EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc9e61666 ivtv_reset_ir_gpio EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd6075c24 ivtv_start_v4l2_encode_stream EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x16ceac35 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x293d6de1 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3c39ba8e saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3faf123d saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4ac2f82d saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x132f9be2 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2a9a491a saa7134_pgtable_alloc EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4e418c3a saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5b90ed0f saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x698d15bf saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x722a7759 saa7134_dmasound_init EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x84732368 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8ff198dd saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x93f6ea1b saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe0b84b71 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe5b9472a saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x858263a6 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9e10777d saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb75921d4 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc4b8a4f8 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcdcf0130 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe73695de saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe8890dc1 saa7134_ts_unregister EXPORT_SYMBOL drivers/media/radio/tea575x 0x1492c34a snd_tea575x_init EXPORT_SYMBOL drivers/media/radio/tea575x 0x5fc192c5 snd_tea575x_g_tuner EXPORT_SYMBOL drivers/media/radio/tea575x 0x76bbb648 snd_tea575x_set_freq @@ -2055,57 +1957,44 @@ 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 0xf446074f ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x5c410714 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x92e71e15 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4e731470 fc0013_attach EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc8d7205c fc0013_rc_cal_add EXPORT_SYMBOL drivers/media/tuners/fc0013 0xeabf5c08 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0xc4a000f4 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x5d6a1b65 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x4f5f1e32 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0xc0907f9b mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x79f7fc52 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xfcade6d3 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x545d3922 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xdcf7d6e7 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 0x6088d1d0 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xc88268a9 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x3fb6d284 xc5000_attach EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x415e53d7 cx231xx_unregister_extension EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x9e86790f cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x810e0ab9 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8e8c9728 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x90a26e5e dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x910420fb dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9a4ff5f7 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xaeb1fcd5 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xca9d9e31 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe5c48798 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf43e353c dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1d399cdc dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4baef410 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5b51e4e7 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x708cdf83 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7517b284 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x78133fb9 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x07bb2464 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x34bfcaa8 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x365650de dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3f07a070 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5655bc15 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5b940046 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa6815b51 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xce646d79 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfe6c4cc9 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x13eb9c70 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x142eb0f7 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4f03423f dvb_usb_nec_rc_key_to_event EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xaa28bc44 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb44ec4db dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe18f1a6d 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 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd8ca9128 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0b6031f3 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x12df75fd dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5253de24 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5ac1dde0 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x759157fb dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xe53bacdf af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1085b442 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3a336881 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x60ea8fc6 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8da921d9 dibusb2_0_power_ctrl EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x97576a30 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd1f22e58 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdc823527 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe2351c89 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xa4cc4f56 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xc3558efc dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x95a2c333 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbf32a160 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbf7ebd9b dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc1667dc4 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xff47e3fc dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xa53680b8 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xbfd3382b dibusb_dib3000mc_tuner_attach EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x403bc159 em28xx_register_extension EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xb842102c em28xx_unregister_extension EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1959baa4 go7007_parse_video_stream @@ -2264,39 +2153,39 @@ EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe4dcd80a mpt_Soft_Hard_ResetHandler EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf20d13b8 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0094e4c5 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0d43fd2a mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x18ec732e mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1edfd2fc mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x330747de mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3daffc83 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x43b0211f mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4689721d mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4f9b0582 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x542be5a9 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x65344b92 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x65d99a3c mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1479228c mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2b710878 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x35eb1b14 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x37a44bf4 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3817f47d mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5382ca4c mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x561684a2 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x59411819 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x59ea6b40 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x697e28d5 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6d22e5ed mptscsih_taskmgmt_response_code EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7bcf3750 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fccb503 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x80a94776 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8954f0eb mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9c339e68 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa3a4929b mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa785b732 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xacae1888 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc61f208c mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcbb0368e mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x847f05c4 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8a9789d9 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x936c623b mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x97da771f mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x99ac591c mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb9121530 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcec72272 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd1b20bc5 mptscsih_io_done EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd1d328d7 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe460e35a mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe2243d9d mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe36ce39d mptscsih_raid_id_to_num EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xecd39ddf mptscsih_shutdown EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf90260fc mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfbf3d29a mptscsih_is_phys_disk EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfc64949e mptscsih_suspend -EXPORT_SYMBOL drivers/mfd/axp20x 0x6a50baec axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0xa637c6da axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0xe1148ce5 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/dln2 0x1548dfee dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x57383800 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x6810c1eb dln2_transfer +EXPORT_SYMBOL drivers/mfd/axp20x 0x07ad345a axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x408e7e65 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0x8ce90253 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x201161cc dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x9385f643 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x98839707 dln2_register_event_cb EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xd314bfaf pasic3_write_register EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xdc2fa6f4 pasic3_read_register EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x03942d58 mc13xxx_unlock @@ -2342,11 +2231,11 @@ EXPORT_SYMBOL drivers/misc/tifm_core 0xab9f81ba tifm_free_adapter EXPORT_SYMBOL drivers/misc/tifm_core 0xac957687 tifm_map_sg EXPORT_SYMBOL drivers/misc/tifm_core 0xbc4bf6aa tifm_remove_adapter EXPORT_SYMBOL drivers/misc/tifm_core 0xd83742d9 tifm_alloc_adapter -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x15d5b98d cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x4aa14d58 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x807c9566 cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xa7a04b45 cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xde4ce07b cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x04c4d386 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x35e447d8 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x60309a0c cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x7397cf60 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x8e598494 cqhci_init EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xd9d3bfd2 mmc_spi_put_pdata EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xf7dba395 mmc_spi_get_pdata EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x484a63f6 cfi_build_cmd_addr @@ -2409,104 +2298,104 @@ EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd9bd1b50 nand_write_oob_std EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf9c75b68 nand_write_page_raw EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfbad25d1 rawnand_sw_bch_correct EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xff2cc92c rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0075efaa arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x277bf03a alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2faea18f arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x33801aee arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3aafca3e arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4e849a79 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5e63ecb2 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x002c84ff arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x018a9739 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x202c09e9 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4d15b386 arcnet_send_packet EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x966e0c40 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa0561021 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xade83b93 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8e541bc3 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb30ff161 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb90ba4fd arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbfff1511 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xca217b3a arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd4b7749b free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xde698e89 arc_bcast_proto EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfb703ce3 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2750f419 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x38297991 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xe5a98063 com20020_found -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0781364f b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x07b959e9 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1201662a b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x19cb56cd b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x25569241 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x27baf927 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x28ced99e b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3063156a b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x336c5248 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x34eb8b56 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x37589028 b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x37e21506 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x39db69be b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3aa3b591 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3bcfcfc7 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x42ef69ce b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4412a7e9 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x46190db1 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4e6857ab b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x50f2375d b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x612951ea b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6d32d243 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6d6dcb53 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7253f98c b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x74875ff4 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7b5d989d b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x80064d9e b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x806cc934 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x83cf5f0d b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9387ce39 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x96f30529 b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa25944a4 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbec471dd b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc883ac15 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc9e35918 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xccb081dd b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd098953a b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd9cc4678 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf018d3eb b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf0459b69 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf10391dc b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x2c88aeba b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5a5c4bc7 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x92aeadf6 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa728ae1b b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb3af9561 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xeb31d513 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x571f5311 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x6fc769f4 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x85a374e3 lan9303_remove +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x1c6216b1 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3753e624 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x8a67535f com20020_check +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1bd8c3d5 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1cd6cc43 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x27c64926 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2a5e0bfd b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2a8086bb b53_phylink_mac_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2f1fe4a5 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x30578ac9 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x33eb4cd5 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x35419ad2 b53_phylink_mac_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x38725741 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3c7fb7af b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4dd2f973 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x58c3c024 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a2e7995 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a3495dd b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x63715bf3 b53_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x64b3aae3 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6ce44f70 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6d3db67f b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x706dd640 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7bbf101f b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8fbba019 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9068b3ec b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x90c4d6a9 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x936817d2 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa7eb0bfa b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa801c6e8 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc426d11f b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc5457442 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc8a16a2f b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcb6647e2 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xce3f3c72 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd72f8916 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdbc21168 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe2b5fdf3 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe631b0d5 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe751fa29 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf1349e20 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf8d4d4ef b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf9e1eebb b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfc9379bb b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x330f15ed b53_serdes_phylink_validate +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x59025e81 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x6a9a8399 b53_serdes_an_restart +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x898f6a00 b53_serdes_link_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc1d52688 b53_serdes_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd5f8014e b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x8a627a0b lan9303_remove EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x40435201 ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xf5706001 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x4ab9a6b1 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xbd463e20 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xbfe34420 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x81ce2561 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xdbd05f8a lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xff36319c lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xa707bc93 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x79a6feb6 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x059e753c ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x5737828c ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x6c5960c0 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x1fc66182 vsc73xx_shutdown EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xa3284aa0 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xb704f41f vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x054dd344 xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x27431a76 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xb09cfadd vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xf5a2ec4f vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x2f5eb681 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x3af90c28 xrs700x_switch_shutdown EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xab6a00d5 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 0xc4637b44 xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0cb48a18 ei_poll +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xdf5fc1cc xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe07fd752 xrs700x_switch_register EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x14cb8aa7 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x293a5232 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x29b0e2e3 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2d6026f2 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x35b56d5b ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6c9b092b ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc1758b5a ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcf369938 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd430bd2d ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xe1b3946a bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x15e6bce9 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x26987f54 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x687aef89 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6d94e3ec ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x807d0100 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x85ae58e8 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x85d7cce5 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x876b5c9a ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9262fcb6 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa2cb8d38 ei_open +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x0db35ccd bnxt_ulp_probe EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x882c04b1 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x92129457 cnic_register_driver EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x1892e1a1 cavium_ptp_put EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xddac9676 cavium_ptp_get EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable @@ -2526,365 +2415,364 @@ EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_ge 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 0x01174596 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1a0a8757 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3f34b159 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x49bfa85d cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5da98394 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x60a66eae cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6f174905 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8f02cbea t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9502073d t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9535c810 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb12abd67 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb28abf7c cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc2d5550d t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xda5aa13b cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe72620e2 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe79a810b cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x082254f6 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c948dda cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e1f3d94 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0756baec cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0ec82602 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x180f8641 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1f8831f4 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x39808cdf cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x449b2d02 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x460ca161 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x489b5bf9 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4abc4d37 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x596d0d98 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6caaf2fa t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x88552d1e dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9f51a863 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa9c9b100 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb71a736a cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc5370d25 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0738f865 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0be66f30 cxgb4_port_viid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x11fad225 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x240a8dda cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24a7c206 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x27994680 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2ddd1907 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x314815dc cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3232b2e5 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3579d3e8 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3dd5b884 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3e6a8950 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x45f72af1 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b29daf9 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1269f4db cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x12a60d4d cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x12ab00c0 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x13d77c06 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x15eb6406 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x246590f1 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2559c31d cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2a0f00aa cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3cb9f05c cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d00378d cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3ebda21c cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3f158c34 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x420c2dee cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4bcc86d0 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4c3e8b9f cxgb4_port_idx EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x60b03d31 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x611f7ca5 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6456aa7f cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x67c633bb cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x698facb2 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6a147d1d cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6b5e8e67 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x73b0e821 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74bfc12a cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x77306305 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x778a00f0 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x790b84ef cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8143337a cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x82acb0a9 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x862263ae cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x891b8091 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x936b7e63 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa5a9e1e1 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa236839 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xabd5585d cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xae7d07d0 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb8087280 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc758a64c cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcac1659b cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd53de49c cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x51896388 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x52434e51 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x59820fbf cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76ed1c12 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78a890df cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7f2669d8 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8165db3e cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8dc79594 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8eb85936 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x92ceda31 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x96be1f61 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa5fb0f36 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa606cd36 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb338e59a cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb33b7cb1 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb3919462 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbb591e61 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc2124f23 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc2999a32 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc99e67f4 cxgb4_free_atid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xde563e78 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdfd7ba0b cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef00ed3c cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda0a59fe cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe166668c cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe7e132ae cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee7f27ca cxgb4_alloc_atid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1fb0fde cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf4c5b602 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfac04c8c cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff18190b t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf3f3a0ad cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf71e0718 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf7784015 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfd008222 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfdbe5f9c cxgb4_l2t_alloc_switching EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1dfd7703 cxgbi_ppm_ppods_reserve EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x28edf5ca cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5ca5c61a cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7c6230b4 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7dbb20f7 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8f07b5fa cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9ab96163 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4599f9da vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x71a44330 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9312977c vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x957c23a5 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbe2c966a vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf4f3301e vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x2e87effe cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4000ee7e cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x439583cd cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x711426be cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x859bad05 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa60b56e6 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb7ffe6ad cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x432ebc8a vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x50084ca5 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x834f98ea vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa133f90a enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd7b823e1 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd9f28ff8 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x0d97623e 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 0x595f9a9e be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbbd1e251 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x9720ce96 enetc_ierb_register_pf -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x3415b7d0 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xc6849708 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x6c247aaf prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xe11aab69 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00fd64b5 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0219423a mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04256c3c mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05a07e4a mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c81ac65 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0db35ce6 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12078919 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ac9bea5 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b4369ae set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fc9384b mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b77f18b mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2de84a98 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3063b0fd mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30930b34 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35074c82 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x368a36fe mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x409663da mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4469b6aa mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4501a1d7 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47892b5a mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48fab0f1 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x501bd617 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c9333b0 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62044fe1 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ff513f1 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79bd0567 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xe02ffef9 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xff0800e8 enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x5adae88f iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xae3b0ab0 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x1a600d80 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xeb9ad82d prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x067413b1 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1adba1ec set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d561411 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2030ad34 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27359ac9 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29eba096 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dd86970 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f97140b mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3008d5cf mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37c125ba mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4689da7b mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49ec90ab mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b3edb7d mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50d8c974 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x522d5053 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bd60ca4 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c44c890 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76f8aa8b mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c948eb3 mlx4_max_tc 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 0x84950463 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d519a0f mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99fdc758 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa43db9b9 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa85662ef mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab2d5318 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabd73c7a mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac73339b mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadd3a526 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb32027ee mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7e7e575 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5555d67 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2fbe38b mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd89a5409 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe51e7157 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8265035 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb37aa76 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb8140c9 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03769f97 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x041e734f mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x059fbab6 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x069df923 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06ad63dd __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cfedb6e mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0eb13557 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11c5d1de mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13e70d84 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16db288d mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1dcc9e3a mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82b60892 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82da8bd1 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95f2ea01 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99176dec mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bfc0d6a mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa30bdda3 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6906c0e mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa86ae014 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8c30708 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5e53be6 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9a710e8 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc389d498 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc57abe48 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbf8897a mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcee2132d mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf6e1eba mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd58c2ac7 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc76cdfc mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdce27846 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2f3f21c mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3b74450 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeab8f4a2 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf048ddd5 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf455b28f mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf735d3ed mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x001d8d0e mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0049df71 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x028b4a2d mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x045df214 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fee4edf mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x109782c6 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11fad789 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x136ff4bd mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14f26907 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14fa9cc3 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18a9b0fc mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a90454f mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cc23b34 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d73a864 mlx5_packet_reformat_alloc 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 0x1e8c3c6d mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x205acd6e mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20785ad6 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20805cdc mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21c37c59 mlx5_eq_get_eqe 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 0x2334ea2a __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x252efa6f mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28a94713 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2983a432 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bae5352 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d352b94 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ef6ff2c mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ffc9dff mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32693ceb __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23076f0b mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x244dedb9 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ba8e9fa mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2da120f4 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e79c2e2 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fcca5af mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32f2f568 mlx5_rl_add_rate_raw 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 0x333a0fe8 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34477eda mlx5_rl_remove_rate 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 0x35423e16 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b9216f8 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c119817 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e8997b4 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44741a7f mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44d0dff3 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4774bc83 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x363e0d70 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37b10c29 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c244013 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40c63470 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41e1b4eb mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45839656 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45ad8795 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49933cd0 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4994af5a mlx5_fc_destroy 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 0x4ce182cf mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bc8254b mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d2a0108 mlx5_cmd_exec 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 0x50a96b6b mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52024a7a mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x530fc562 mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5344886a mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ff1649d mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52416fcb mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x530a6f0e mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53c49864 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54e57f60 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54f93cb1 mlx5_eswitch_reg_c1_loopback_enabled 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 0x559c5b62 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55e56894 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56879d10 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58749d0e mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59e7d1d8 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b01099e mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b2d179f mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b6120b2 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b9e7317 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c2349c7 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f2911d2 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5800ef0b mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x587ff2e2 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a97e51e mlx5_lag_get_slave_port 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 0x5fc1f60f 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 0x6153a6f8 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61b0bc7a mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6270ae54 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x645a221e mlx5_buf_alloc 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 0x66e7c85b mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6783f533 mlx5_eq_destroy_generic 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 0x68d99066 mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c2a18ec mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dd824d4 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f6fafeb mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x693158bd mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cd404d7 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70a92464 mlx5_vector2eqn 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 0x73d5e608 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x770c4382 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x775bc787 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77aab65a mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x791fba70 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7af46bca mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7455be19 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74c7b79c mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79901ea4 mlx5_comp_vectors_count 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 0x7ccf4f6f mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d23bce6 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d70732f mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e834422 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f11b784 mlx5_core_attach_mcg 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 0x816a249e mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83c95f89 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ffa405b mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82d3e149 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8561b82d mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85edf3a5 mlx5_cmd_init_async_ctx 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 0x87e61673 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88a7ce9d mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a337a7c mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b72c1f2 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c0842ca mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c4b8c49 mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8deeeb73 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91aa1d90 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x891b2425 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x892708e1 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x898ccab1 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eaec593 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90b713bd mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92b7b10d mlx5_eswitch_get_proto_dev 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 0x94f1d9c9 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93527586 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93a01651 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94fa7db8 mlx5_eq_enable 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 0x965eaf84 mlx5_cmd_init_async_ctx EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x977acf37 __traceiter_mlx5_fw 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 0x9c7285e6 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ae9e423 mlx5_lag_is_sriov 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 0x9f9f0c1f mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6c65ef8 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa78e2a56 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa95fd1e4 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaadc01d3 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e0eec3b mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9eb288b4 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2cb5159 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa679be44 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9cd3a3a mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6652ac mlx5_eswitch_get_vport_metadata_for_set 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 0xae81e3a6 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1221e11 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb31bb007 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb37a2a17 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb49ee75e mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae0ec5b3 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf7355fe mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0acf3e9 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb30476a5 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb46920e3 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5c88ded mlx5_lag_is_active 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 0xb763765e mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9695e53 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb860b978 mlx5_eswitch_vport_match_metadata_enabled 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 0xbc1f511c mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcaaff4f mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd89c8e0 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd9ed38f mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb6cd8a6 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbf6c43f mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe051c8e mlx5_core_alloc_pd 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 0xc1139350 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc152a1b3 mlx5_comp_irq_get_affinity_mask 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 0xc4616ba6 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc58c47e8 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc65becfb mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc29e0ad1 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc64be204 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7f6a149 mlx5_add_flow_rules 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 0xc9c1b3af mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfc3e19a mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd036e4c4 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc90bdc47 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccbd3102 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xceb58419 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf5dae06 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf76caf2 mlx5_qp_debugfs_init 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 0xd1a87dfb mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd21dbe3a mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3bd66f2 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd344ce6f __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3a73d5f mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd68279db mlx5_debugfs_root 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 0xd7d5cf27 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6dfce73 mlx5_mpfs_del_mac 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 0xda7deda6 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdba10c53 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc8793f6 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd20dbf0 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda4069dd mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd1aced2 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdee7c983 mlx5_packet_reformat_dealloc 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 0xe4e09c2b __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7b72c7a mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9597f9b mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4efbe26 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe62e5a55 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe66c428b mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe80818db mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeac629a8 mlx5_eswitch_vport_rep 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 0xecf9c0a1 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed3a01a9 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee269b68 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf09a65ec mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf256adb1 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf581e9d8 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6198e0e mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec9cb09a mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed149ad5 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf123592b mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5a3b90a mlx5_fpga_sbu_conn_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9bb1c70 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa5bb044 mlx5_rl_remove_rate_raw 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 0xfcd0d986 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x5a8c71d2 mlxfw_firmware_flash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x01eda226 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd5ba860 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfef141ad mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff6224ce mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xeea38470 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 0x068d41f7 mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1078e565 mlxsw_core_trap_register 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 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 0x1d299bf1 mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21daf3af mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x236b6cb7 mlxsw_core_port_eth_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x3cb1013b mlxsw_afa_block_append_mirror 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 0x49d4fa9c mlxsw_core_trap_unregister 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 0x54405fe4 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x586fd6d8 mlxsw_core_rx_listener_unregister 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 0x5ae92a69 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5b109d24 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 0x617650eb mlxsw_core_trap_register 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 0x6642ab14 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x68148571 mlxsw_core_driver_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 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 0x76f222a5 mlxsw_core_bus_device_register 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 0x77db2366 mlxsw_core_rx_listener_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 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x867ba746 mlxsw_env_get_module_eeprom 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 0x8ba5fa7e mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8e9ea4c8 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x91874757 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x928082cc mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x95a0627f mlxsw_core_ptp_transmitted 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 0x9a75cb69 mlxsw_core_ptp_transmitted 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 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 0xb8136423 mlxsw_core_rx_listener_unregister 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 0xba971148 mlxsw_core_trap_state_set 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 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 0xc958be03 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 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate @@ -2892,6 +2780,7 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_c 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 0xd606b154 mlxsw_core_driver_unregister 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 @@ -2900,100 +2789,100 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_a 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 0xe63cc8ba mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec790d91 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeef036ff mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee876710 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 0xf6fc7d2c mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfb9a37a5 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xd526e857 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xde98a854 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x286f3f3d mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x80e1d69c mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0201a173 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x023cfb8b ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x099bbb91 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1050f6e1 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x167255b1 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c254a60 ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1f380d39 ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x216d28bc ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21fa7449 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x225653d3 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x26ceb424 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x02a6f715 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x6fdf3da4 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x2aa5346d mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x97d07d15 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x02461376 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x030960a7 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03e2e44e ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06088fc0 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08c886c5 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e6011fd ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f26f29b ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1f7777db ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x20e5788f ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x226fe74e ocelot_port_lag_change 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 0x2da269fa ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2faf399d ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x30c9345b ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x323fba8f ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x32a267a2 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34cdbb92 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36029e88 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x378df3f0 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x395cd64b ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3eb3e62d ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x42cefb0b ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x464347c4 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x473a8161 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c5512b9 ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e6b36ff ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56fef5f7 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b6f1b32 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60a94cc5 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x618a9c51 ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x63533bb4 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65d9df12 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ad24dcc ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ee314aa ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ef7a7be ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f890493 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x75d656e7 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82ba8219 ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84b846e6 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84bbc99b ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x27a0403c ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2da953cf ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x323b91f0 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f9930fd ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46a33e88 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4730363d ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49df59cd ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ac27ee9 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5d5fccbd ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5de9c80c ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60ead2fc ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6183795b ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6433d723 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x691a438b ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6a5c24c3 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6a67c128 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6a853f99 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x741c4f0b ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x76d3b428 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x77e9fe42 ocelot_apply_bridge_fwd_mask +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7d80f1d0 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e444d55 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x896a2415 ocelot_mrp_add 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 0x8ac4b3ec ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f0056b4 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8fe481ff ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x969cd793 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x97109c9b ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa032035c ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7ac4224 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa9576150 ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa9cae2bb ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xacd60160 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb50b9e3a ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7af6f9b ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbb78df37 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc1ad5f96 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc88a4d16 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xccb4965e ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd10d92b ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd38e4827 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd404a965 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd747594b ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb390a8c ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0dfb712 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6c21530 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea4baa7c ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xee233173 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf794f940 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf8905059 ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x0af13aba qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91586688 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92075b77 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x967ac7d9 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9736cddc ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9adaa57b ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa3ffbc52 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7b9226f ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac83ffe1 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3d273c3 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4b87daf ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7f1eee6 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbb7d07ee ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc7d16d1e ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcb814d09 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcbddd7fa ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcdfff7fb ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xce093623 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda68b38d ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdca0e7a9 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdce276c6 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdd9a9e5e ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0391d44 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe12169ea ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe1df92ca ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6b90376 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe98e5314 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9c89190 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed72e43d ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf62e9bc9 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9394a7d ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb0b1e20 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc634dfd ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfe8c8f11 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff2ee3ba ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x0caaad59 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x3eaf6cd0 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 0x5cc8ec5c qed_get_eth_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xacd6a5a2 qed_get_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xb4301be9 qed_get_rdma_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xf74f0571 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x1ad17c89 qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x9f53477e qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x006a4e5b hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x23045b3f hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x26f624a7 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4bc954c8 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7111c1da hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xf36680fe qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x44dd0112 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x83b3d980 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0ae98f73 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x233f5bd3 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x496aedbc hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x616c0fe7 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd2414bbb 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 @@ -3007,682 +2896,682 @@ EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xe303334d mdiobb_read EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xfbb857bb mdiobb_write EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x7fcc5690 cavium_mdiobus_read EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xf5468ac1 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mii 0x02b02199 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x050aa12d mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x471746ae mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x57e5702f mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x71cec580 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x8203ab8c mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0xcc54e6ab mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0xe01e06c2 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0xeb9173dd mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0xf1bf9ed8 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x0e624ed0 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x19bfe847 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x21c5686a mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x3ca2390a mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x645fcbf9 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x7e2b9a29 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x8194e0b6 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x8eaa2fb7 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xdd59988f mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xfdeb75b8 mii_check_media EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x59344f38 lynx_pcs_destroy EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xdfc275ac lynx_pcs_create -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x5a475857 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x1a250364 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x3d45db79 pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x3f1f3362 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xb350532b pppox_ioctl +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xd0784e85 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x001292f0 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x5fbd5239 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8be8d921 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xd711d690 pppox_ioctl EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x9c496bfe sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x1e4ae75c team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x2201bf3e team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x2c581b86 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x2c9c6ecb team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x3baba183 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x5ea68f5f team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x7480f88f team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xf101842b team_options_unregister -EXPORT_SYMBOL drivers/net/usb/usbnet 0x78bc4868 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0xb3f77a88 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xbf735f20 usbnet_link_change -EXPORT_SYMBOL drivers/net/wan/hdlc 0x24162d94 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x25ae81cc hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6389713c alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x86f09f65 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb61939e2 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xcc3059d9 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xce606462 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xea9cc56a hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf5371f75 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf7651c10 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/sungem_phy 0x07be79e0 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x04d521b4 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x5fde962f team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x628ac2a5 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x81e40348 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x86897f00 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x98e1051b team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xb5beb2d3 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xbca413f9 team_options_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x0352e294 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x42579c3f usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x45b78bb0 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x052ac11a hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1807e0ff unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1b546b64 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x51c8252a attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6f495034 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x90458c9f detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa68260fc hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xba64031c register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd81bd8c9 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xec550e27 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x03fd285f ath_key_delete EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x146e3d9e ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x25c46e75 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x335d61d8 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x402ee00b dfs_pattern_detector_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x57189732 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x580a61ec ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x72cd6aaa ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x73f76818 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x75149761 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7bc9a0fb ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4773dea6 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x49ebe3e9 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4b27d532 ath_key_config EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc5e69cdb ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcb6ae9f5 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd5f16fc8 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd68937d7 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd8930444 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdee98a8d ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe165e2aa ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe88dac75 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xeee40a19 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf657906d ath_hw_keyreset EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfa6e0735 ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfc6cd866 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 0x093b8efd ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0e4bd722 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x34584cab ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3de31413 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x41012b74 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x428d3b67 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x434aa31e ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4cc10279 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4ddd28ae ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x51c4082a ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x54079a39 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x59146d3c ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5f828c69 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x63a41c41 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x652660c8 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6b3769a5 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6fb01f93 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x730a2143 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x73b64252 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x75388df5 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7b398838 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7c4e6a10 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7d895f2d ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e2b1e8c __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fe12b60 ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8186cfcf ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x82f1384c ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8840937d ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8a07b647 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x97f3a0a1 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9fa0a77c ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1203fab ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0520aa7e ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x05d885b6 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0953d98b ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0aa59b29 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c976b8a ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x100b1101 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x116b86ba ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1a32b214 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x26407378 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x278fad90 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x298e84c3 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a5bdd9f ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x32647d66 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x379bd1d8 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x37e3dfdd ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x38a2d01b ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3cf92473 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x417aacdd ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47922578 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47db745e ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x52c5d0f0 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x572e7405 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5969e3d2 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x60d5189a ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x617e7c09 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x63cb1164 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x64766274 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x657de61f ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6c1fb095 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x72f9df47 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a1069dd ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7df1fe98 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fc384a0 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8ffec32a ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x96b879c0 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x997e272d ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9afd3e5b ath10k_core_destroy EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa28e7471 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa88cf00d ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xab139045 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaef96f9d ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaf3f6148 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb2d980e1 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb559b114 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb5a24b1d ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc1fc6b08 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc3b281c8 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc619816b ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc9ab85fc ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcbd329c7 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd9806011 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd991a326 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xda19a8db ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdd84b79d ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xddcaf286 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe3a5b781 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xebe7ae6f ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xebed43d2 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xecd34a9b ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xee0c9c83 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf42fd873 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x07a3ce8b ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x20824212 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x20d80cc7 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2f10d7aa ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x369f1604 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3ccb5f56 ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x454c4bdb ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x461a1011 ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x52ddc46c ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x57eefc33 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x69f3a189 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x851f8843 ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x90c95fd7 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa42ef42e ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa6cc277f ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb387812f ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb9633346 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xba62d6b1 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbbee1ce1 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc74804b ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbced82c5 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc47e4c3e ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcfbac036 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcfda7018 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd4466572 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd5e03302 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd61a6011 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe3e85c1c ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe63a2f60 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeaabee9a ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfc0a5367 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfdb610e2 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0384b3f9 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x085191b8 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2bb86ced ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x31f1d1ce ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3c8f9385 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3f72f03a ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x41809d65 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x42d22d1a ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x43e679cd ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x448665c5 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6c7d00db ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x76b8bcef ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x88724e0b ath11k_core_deinit EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9fbae700 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb0f4ec58 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb3ce49ea ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb5534e8f ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbb9a18fb ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd3e9a44c ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd5b50170 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xecde554f ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c5fa397 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb9f1fde4 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbb1d689c ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc418fad8 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd19e545c ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd1f472a9 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe068e0eb ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe66c2f1a ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xea6435cb ath11k_core_init EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf36c0de8 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x09cb99bd ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0ec58f8a ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0d84d3a7 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x10867131 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 0x1b524e91 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 0x3d968d3d ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4490968b ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x49b2a084 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4b539a0e ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x55435cf3 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5b04920c ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x73164d32 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4a30e746 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4f28fbaa ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x567c2019 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5a69bae3 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x67e9d3f5 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x81497879 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 0x9b28fa50 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 0xde183646 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe52a20aa ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1d5416b1 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x434f4d57 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x44892d13 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4fda7abb ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x548b16da ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x68fffb41 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6b7b22c1 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6eff4184 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7777386b ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7a01b190 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8514b4f5 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x88a71f7b ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x894db92e ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8db5544b ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa2c35b7d ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb4bc5d9d ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb6b0a1f4 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xda314068 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x038d9214 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x25e836f1 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x27e04e7a ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x304f1176 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3d1efde9 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5454dc56 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x55a97a1a ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x68250df1 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x71ff1bb9 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7bcc52ee ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x904984ee ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x992df3fd ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xab3505a7 ath9k_cmn_process_rate EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc4879d26 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc80741dd ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb95167f7 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcc4ec1a0 ath9k_cmn_debug_phy_err EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdc5c5c2b ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe7f45182 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xeb6152e1 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf8c747a4 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01878d75 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02fc2e74 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05952d8d ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ced3fdf ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xda4329dc ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe01a8b0f ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe44a6839 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe9f4016c ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xea1706d5 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xed2b3af5 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf58f064b ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfade795b ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x026b7ae2 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03bc3cac ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x055f57d5 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06d0777a ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07762170 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07f37b07 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x080bec7a ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0938a0bb ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ad156e7 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bb0b6f5 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bf40e0e ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d6be82e ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d8bc628 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e3168a5 ath9k_hw_computetxtime EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1120cdb5 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x138734d5 ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16325314 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18b78bb5 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19f1af53 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a355934 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c94a278 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d0859c4 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f635426 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2008cb4f ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x202e228e ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20a56625 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2138374e ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x235f48dd ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23a20a26 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24704bf8 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x250b76e9 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28175df9 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c9dacfb ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e49f3ba ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f58c4ca ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30d293dd ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32ba02db ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x343d67b5 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35a5bf03 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38758f29 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39d83ac4 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c02876d ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f7a630e ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4179d24d ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43f5bfc5 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50939b9c ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51b029f0 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x529457f7 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53c3e0a1 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57e3cd50 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x583e513c ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5dea7270 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e9b6a80 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f22eafa ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f736cd2 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6054d205 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60fa17c4 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62269b92 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a27d8de ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b51dd2c ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73f00591 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75147004 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x794e7620 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b1d1581 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c03d0e5 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fd8ed6a ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83fea9ff ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b622801 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d2f81dc ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e28e029 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e8d171a ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9289b9d8 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9436c7d2 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98da41b3 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ca21693 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa016958a ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0d1b4e6 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3dbefab ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa49795ba ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5e41d5f ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6813ad2 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabac2758 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2431491 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb78bb64a ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb799babe ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8560f28 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb806655 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe873e80 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf6f68fe ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1c6ee63 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc20193c8 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8de9a56 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcae80e20 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcbb23a64 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce605c5f ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce63c375 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf400406 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd263c7f8 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4cf6edd ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb997c2a ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd5228aa ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde409587 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0ba15dd ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4e740a7 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe56b6d6f ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe590f0d2 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe94c071d ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec5104ae ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0a808e3 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf44ebfd4 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7aeaedc ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8685e5d ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9f9f314 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfcda8592 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdca5d42 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe46325d ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff69374b ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x3e6ae7d6 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x9b59dad5 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x9e84ff89 atmel_open +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11f6edd8 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12949771 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13d3bd61 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18770eed ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18fce6c2 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x193c0219 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1af4ddb8 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b0ed128 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c803a5c ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1edf45e9 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25e9c846 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a54a9ad ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ab0ae5d ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2edf343e ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3011fc6c ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x331de414 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x359e13ce ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35af8b39 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44a0201d ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x465b7a84 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46dad7d0 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47bf678f ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x489ca567 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x498badc1 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bb50a87 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ecfc6aa ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ee5b8bb ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55f26f95 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59f4cea2 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a388672 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b3431cb ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60e19f40 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61756541 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62a90c4f ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68a44ee4 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69779756 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ba1d36d ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d7b7991 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74756434 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7794b1f3 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x783d4045 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7aee469b ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d3c0606 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82fd6ff7 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x857ba1a6 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8afab81d ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8bb15aa3 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8be43c6a ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92bcc590 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x931f9675 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93b8ef12 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98da01da ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98ed8658 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9948d0d0 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9aad99a7 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e44b25b ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2ffd060 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4396b5e ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa557a064 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaca01b2c ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf3800de ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5c2b8cc ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb93c555a ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9dfc137 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbaefd856 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc6222ae ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd48d70e ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe08c589 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc092af96 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc11145b2 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc495d221 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc840eb5b ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc87b0caa ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcca9f2bd ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccf2bfe6 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf25abd3 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd04e71ce ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0ad065d ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0c4008b ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6d59d6d ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd741ec8d ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7548a89 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8025921 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd943887f ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda52b7dc ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd18c916 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfd376d1 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6d43c85 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec5f9cd1 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf01f5e51 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4af40bf ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc6d7066 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdc1eca4 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x9f6c8b78 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xc55df3fc atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xdb9c79d8 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x11f81a6d 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 0x20b1f489 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x22677be2 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3fd6998b brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5326ea9a brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x899d900c brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x991e5e62 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa12b3f9f brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2ead3e73 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5e1ca45f brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x670bd828 brcmu_pktq_pflush EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb25bd52a brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb5ebaf6e brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbb4db1fc brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd175cf02 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xabe59d64 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc3c8c345 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc9d0f232 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 0xda52ec8e brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe4f25d28 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x16bac93f stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x44110eb4 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x4cdded4f init_airo_card -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x01c85713 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x05f4cdbc libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x08824312 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0c3f83e4 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x13ff5ba9 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x200ee9e0 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x22891548 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x28f766cd libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x42bcfb07 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x45588b14 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x602cbfee alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x71d4d83b libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7a6bb007 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x87e29d0b libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9257dce5 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc054b150 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc43a78bb libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdcf52d05 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf5410b62 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xff6987d3 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0409ce18 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0734e325 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x08b4eb24 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d092e27 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d6998e6 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10444b9d il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1468ec00 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x16a62fb7 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x18399566 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x188a4510 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x18c01784 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1c58f981 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d731cc9 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x20829f9d il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x208bb7cf il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x225d126c il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x237518b5 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23a3a613 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25f181ba il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2712d026 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe93ddb4f brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xeb5f6e55 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf51e9d50 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfc9f0959 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfe959af6 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfec6b93e brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x1e32550f reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x7128d12d init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xaf718ee7 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0e836d4c alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1501d542 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x263edc66 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x29d55266 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x346cbc5e libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x423d5661 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5dccb252 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6a6f913a libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6c17f9fe libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7adf4349 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x965d4e57 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x96efe23c libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x99b2eed8 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa79e0f7c libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb4e6ddda libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb795ad15 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbaea4bdc free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc94b8e10 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdbe3fa13 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xef08f93e libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x004d45bf il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0201ccf6 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x053a7d94 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05843338 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07f6f94f il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x08827e00 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c026def il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e21aaab il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15caddb9 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17816b19 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a90f04c il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d0a3d63 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21e31bc3 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21ef84a0 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2263c148 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x243fa5eb il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2513ff57 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2824e9b6 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a0a567b il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bbf6b18 il_send_lq_cmd EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3252a1b5 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3419ad21 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3695e025 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36a48141 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d4c7556 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3fa85900 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40f5ba1a il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e3d43d1 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f08d648 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33a2cef6 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33e345ff il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34938b48 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ba863ec il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c7b6710 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c8f8fe1 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3de293fc il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40182800 il_leds_init EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41bd5fd1 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x434d6fd3 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4965fbed il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x565cbeb6 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a06cff5 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ba11174 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d9a4978 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5dfd588e il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f0b113a il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63d0f2d8 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x641f060f il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64f4c69c il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65ee6829 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x66e58eda il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68d093a5 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x707990aa il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x718ea450 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x74e5d540 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77e9cac0 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7af3d90e il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b3e7a12 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7cd63024 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d19cb15 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8030dd83 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x861e9b9c il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86e9f752 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a59ee3c il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b7cfa2e il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8bfee998 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e825e9d il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90f285f7 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x932e3dd1 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9778b329 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a993b74 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b0edaa5 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ca94744 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc4bfb9 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x434b544f il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4775ee2a il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4a2ba09d il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c33dbf4 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52311e4d il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x562c5ab6 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x574b0b6d il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5853da0d il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a3c711e il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a919254 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d0b21d2 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5de0517f il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f23b866 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6be7e613 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x709d7cbe il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x712015ca il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72dfcdd5 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x734b4da7 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b14b59b il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e4e6842 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8130cfc0 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8612a1ec il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86623e69 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88601259 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8918023a il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91da7919 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91fe1bdc il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x94c0bf1c il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9acee46f il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9baa3f66 il_txq_update_write_ptr EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa130533d il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8ccc029 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab3a3d58 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb29d15fc il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3ba8373 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb43f2913 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb499c6ad il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb5a19f92 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa239d70a _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa459c883 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4b7bb8a il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa680eaee il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa86855f2 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac635df0 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaed0bb84 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaef53a31 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0000ec9 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0d93241 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb27837e3 il_get_free_ucode_key_idx EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb76243dc il_power_initialize EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf83a41e il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4d435fc il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc594c8b5 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7e56abe _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9da6453 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb21b2bd il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc342744 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc8b7124 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xce858270 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd37875e7 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd57cd26d _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5996750 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd767bfbc il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd82ffa47 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe42c8b49 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee040b90 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xefe3d73e il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1d4318d il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4795434 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf61ad7ab il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba948ba4 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbbd02275 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbbf365b4 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf7dfd80 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf85aad7 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc19187ed il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2c0e62f il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4b6e89b il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4f20299 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc757e0eb il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca9acb7b il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd44a84cc il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6c22555 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd78a7a5d il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd91d18e6 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6146185 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe904b0b8 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec4be703 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0db2fe2 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5ace0bd il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5c0aa1b il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf615128e il_mac_hw_scan EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9983e65 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfac264d8 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc5812f0 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe7e943d il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xff01472d il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xffc9d775 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0e60a24e __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf7fe76a2 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa96c7fb il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc31a139 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd059b85 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x288e0c0a __traceiter_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36a862e9 __tracepoint_iwlwifi_dev_ucode_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d23c104 __tracepoint_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x931f30ac __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x90895ad2 __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 0xae142b8f __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 0x02701133 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x097e6de8 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf29c60e2 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x00b38f9a hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x06e5a63d hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0e5cda89 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0f963f06 hostap_master_start_xmit EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2600fa2a hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3754730b hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3a28b1a3 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x43c05790 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4c7d7970 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5ccb59b3 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5d8b46ed hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6e35fc6a hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6fa92d33 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x74d1199d hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3eca71a9 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4c565194 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4e3d97ad hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4ecc4af0 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x513d3e48 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x555aece9 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5c0cc750 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6abb9ce2 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x725b4e8f hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x73a86277 hostap_init_data EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7cfff011 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7f8f2c6f hostap_init_ap_proc EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x821bc7eb hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x903cb338 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x96288dd3 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9991aced hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xab4e7c95 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x83e25e5b hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8846b8d1 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x90b4a058 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x95422f47 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9edf89b1 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xaec4330f hostap_set_encryption EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc051d6cd hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc4a4586a hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd9b7bb78 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe90c1c24 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf492d430 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf71c1894 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf9c509a8 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0590cae5 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2ce5b74f orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x47a6b943 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4fe6ff36 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5a95d865 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x64941e33 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6b96694c orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8780803f alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9531d733 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa02eb895 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa63d5def orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb907fc83 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb53f6ecd hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb9a62397 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc5d41a00 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe407a554 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0cffb108 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x174932a5 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3b1951cf orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x52571ff6 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x574e70c4 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x75793573 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7613dc24 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x87a09133 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9e59ddb2 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9fb4fb20 orinoco_set_multicast_list EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc29737d4 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc608cc51 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xef955985 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfb29cac8 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc7526661 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd46e603f orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xef613e2a orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf9afd2ad orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf9f0ee44 alloc_orinocodev EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xb241bd8d mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x0ee73ed6 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x06afe54d rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x07fe1952 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0fa7cbee rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x21542c37 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x3b9b861f mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x280f71c9 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x053243cf _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0bccf9af _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1042c565 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1891a019 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x19609d8b rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x20ae0b2a rtl92c_set_fw_pwrmode_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 0x24fdcdb7 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a46902c rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2ba614e6 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2e888588 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x30fca8dd rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x37dd16bf _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3887e6f6 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a1c5182 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d77c8fd _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3df1d042 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x452bb637 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4ee5faa5 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x503816c2 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ccd35c8 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x65b81f72 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x66c5fcd9 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d8f24d9 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72b5ee2d rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7ad78695 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7ed37a86 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x802ac98a rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8174005c rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x84ebe3c8 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x89abfa52 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8bfcf1fc _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa1a54a54 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa44aad88 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa620cbf3 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb34f0558 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xba49aeef rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbb1a0e6b rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbf4b3212 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdc3db23a _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe23e52d5 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb5b02ee rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xee805d5a rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xefac3d2d rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x024574e7 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x09b4b72b rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7f09568b rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xcdb36af4 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x40cc6fc8 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x66c05f97 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6bce97fe rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xdc899c45 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2435595f rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d9f93ee rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x38d3a1d4 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3b604fed rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3c4332a3 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x49dd90e2 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4a6e6273 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5501ef9e rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x566dc294 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6ce5d4d1 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x74ed9829 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7cbfbddd rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8420b494 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2fc3caa _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad0b1b1f rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xae66a102 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb06d98f4 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb4d4c9b3 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbfd99180 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc0ea7b93 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc49544b5 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc5ada65c _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc80e512f _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xce6d0238 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcf654fed rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd04b130d rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdddf2eb9 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe00a5e1e rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe90339b3 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb18070b rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb515d0c rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf08d6349 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf802562a _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9832fb7 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb928d49 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x026ad7dc rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa40afe57 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc7020ee5 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xdb799569 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x12960096 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa8c2c7bb rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb79535d0 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xde8cb230 rtl_usb_resume EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0fdb2874 rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ff6996f efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10c9b13e rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11997ac3 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x138032f5 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1462b342 rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1557e3ed rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d063cff rtl_cam_empty_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1db015ca rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2b8bd0db rtl_cam_del_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x352d6518 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e44a282 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x408681b4 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x483fa875 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b3a84dc rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x529c1693 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x335fd0e3 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x394edf27 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x400cff37 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4c0944fb rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x531571c0 rtl_init_rfkill EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58466aed rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x68cc81e2 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71e4d680 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72af608c rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79722958 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79b6d232 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8666cbda efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x86ca0c93 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8aea7624 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5afb182d rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65a8a07d rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x77b131a9 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a369f72 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83afe37c rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x858a1b70 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8af33c0d rtl_hal_pwrseqcmdparsing EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92069ef0 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab162418 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbdcfac0d rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc715ddcc rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7c22ee6 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcb66ae7f rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdea4bcb3 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe3cd4bd1 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8fa1b28a rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x95c3eaaf rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9b030b55 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa149e9b9 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa27d163e efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaafff2fa efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf1a0eb4 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc75832a7 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd2efe4a3 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd7120af0 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd733f4b5 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe096ffb6 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe0b65a82 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb3fb075 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/rtw88/rtw88_8723d 0x3325986f rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xaee5efe2 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xd8c5e2dd rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x370789e3 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x01c61b37 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x03452fa5 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x055aaabd rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1797158d rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x17c36362 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1f0e150e rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x229b9a12 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x23f2e0c0 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2b70113b rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2c0f08c3 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x32ff68bb rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x337bf3d0 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfbd89bae rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x9419c648 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x09d9b1c5 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x7ff9bcfa rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x903bd7c4 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x086c809f rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x08b2f5f0 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0a544994 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x17c15c9a rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x18e0e38f rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x19d2032e rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1eff0f34 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1f0f4128 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x22425985 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2cbf4b32 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x326f34d2 rtw_phy_pwrtrack_avg EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x34667ece rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x35cbe3e5 rtw_phy_cfg_mac EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x378a50fc rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x38a9d1ed rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3b53db18 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3fa9ce5b rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36e52f4e rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3aab39e0 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3b124157 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3eca14a1 rtw_bf_set_gid_table 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 0x509e833f rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x511a1d46 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x515dcc42 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x448e3045 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4bf3e0d3 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4fc6912b 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 0x5228943b rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x57ef5312 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x51c10348 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x53471ed1 rtw_rx_fill_rx_status EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5a128895 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5e77d509 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x62cc3699 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6361a76e rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x653d4faa rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6578f8d0 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6c7d520d rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6d72ccd3 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7631cd9a __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7722f6de rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x78158dbb rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7dbff362 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x84365ae5 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8c278e3d rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8da96892 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8ed088a7 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x938c0d43 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9b19d202 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9b2ba81e check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa44797b9 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa70225d9 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa7484e2e rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbce4eb74 rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc2674817 rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc2a4d1f5 rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc3fdd312 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd0467f18 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd35bb33f rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd7ab2b27 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdc0d9313 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdcef49e0 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe5672a37 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf13cd878 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf18ec8ed rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf6f53ac9 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfe38c966 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x24e3bc3f rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x5733c12d rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x9f1e7599 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xa1373661 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x045296d5 rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x05df1560 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x08f68c18 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x17dddd3e rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x263ad678 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x264d6032 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x283ded9c __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x50b5eef4 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x58212b75 rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7aed465a rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x804f93e6 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa829ab8f rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb714e47b rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb8e96098 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xca2d5a8e rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcecbf59c rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xda07ef5c rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdccd304f rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdee785eb rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe20cee89 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5de4cd9b rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x637951ee rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6c38ccc1 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x76e6fc1e rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x79d8413b rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7a099f40 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7d192687 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7d3b42fb rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x89786640 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8ad04201 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8d769c3b rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9962fcc4 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9eacf585 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa1b8c1a3 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa7110d41 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaed9ece5 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb01c0cae rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb0886a5d rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb66aed4e rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb8652eac rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc6ed1a75 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd1105a95 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd5b4df75 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd85b518d rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xda3f493c rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdcc2f6f9 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe100390b rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe48dcc88 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe4acfe9c rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe5970874 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe62d7b7e rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xebfb71f7 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf41dc699 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfb3f9aa4 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xff6384dd rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x16f947c3 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x819c98ff rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xe5d3cd45 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xecb06ac5 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x000eac35 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x11c651d7 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2382ee64 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3b840002 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5940b5d4 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5a4763bf rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5c85a8b1 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5d68b89a rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6d12a0d7 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6dc5eccb rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6fc0b5e5 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7025fa2b rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x83dae0ba rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8cf33a6a rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9a971524 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb1e63d36 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xccbd47a6 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd0db7901 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd2053d64 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3bc9706 rtw89_mac_set_err_status EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x75d18f91 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xe534df08 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0e5799d2 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x65639c76 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6c88dbf7 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xbb0ef7ae wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd46817f3 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xed037a34 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x19e7e131 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4209ef9c wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xfcd1b209 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xfea9f804 wlcore_calc_packet_alignment EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x26d40f6e fdp_nci_remove EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xc354347b fdp_nci_probe EXPORT_SYMBOL drivers/nfc/microread/microread 0x4b217bc9 microread_remove @@ -3690,7 +3579,7 @@ EXPORT_SYMBOL drivers/nfc/microread/microread 0xb6b9ebb8 microread_probe EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x11ed2049 nxp_nci_remove EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xbbd22654 nxp_nci_fw_recv_frame EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe701ee01 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x5bbbf885 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x45191be1 pn533_recv_frame EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x15538295 pn544_hci_remove EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x2c55640f pn544_hci_probe EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x6a0258a0 s3fwrn5_probe @@ -3704,8 +3593,8 @@ EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x099a4fb8 st_nci_se_deinit EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x13753898 st_nci_se_init EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x40c6235a ndlc_open EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5518ae6c ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x84e0dea4 st_nci_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x87511cb8 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa755ca23 st_nci_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb12271e6 ndlc_remove EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdc182276 ndlc_probe EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe23ea0fc ndlc_recv @@ -3722,10 +3611,10 @@ EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x68d5405d st21nfca_im_send_dep EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7b0cbbf5 st21nfca_tm_send_dep_res EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x90b52285 st21nfca_hci_probe EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa142020f st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa8758f00 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc8a8acc4 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc19878a6 st21nfca_hci_loopback_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd1ed206e st21nfca_apdu_reader_event_received EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd77fed05 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xde4972ac st21nfca_vendor_cmds_init EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe5ae0d76 st21nfca_se_deinit EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf0c1b6a1 st21nfca_dep_event_received EXPORT_SYMBOL drivers/ntb/ntb 0x0182383f ntb_link_event @@ -3786,164 +3675,164 @@ EXPORT_SYMBOL drivers/parport/parport 0xfd4ebfd5 parport_ieee1284_epp_write_add EXPORT_SYMBOL drivers/parport/parport_pc 0x5ba33770 parport_pc_probe_port EXPORT_SYMBOL drivers/parport/parport_pc 0x9db688ce parport_pc_unregister_port EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x7f6c3428 rohm_regulator_set_dvs_levels -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x17dad3be rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3457e473 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x34e4225e rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4c04ce1c rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4d45752b unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6515f313 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6e5c7ec4 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1322f93d __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4a41088b unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5265871e rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5778c1da rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x790a31d4 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7c1e0a70 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x840761d4 rpmsg_register_device EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x87c76b85 rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x95aa44fb rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb3db2b44 rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd4c83528 rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd941cb5a rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdbb47f4c __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8c390cfe rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x93a99ae4 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xaee612eb rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbf09ff05 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd4d06c1c rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd5a7b3d4 rpmsg_register_device_override EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdf3896f4 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xecfc98fa rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf40b0932 rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x560a27ca rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe70907af rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xed530c91 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xe314e9aa rpmsg_ns_register_device +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x29a103cf scsi_esp_unregister EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x51b6f286 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8b77cba3 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc1ee9198 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd0c7c1a5 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1b14caef fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2eddd951 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3eaba3e0 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x44e34e40 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x47989ef2 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4b04dfb0 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x60635b2b fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6bfb8710 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7ecb79f4 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8dfb5ffd fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd7b74679 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00015ae3 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x01f6eb6c fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x03189a09 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x035a3d1f fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06ac79b0 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d602a05 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x80bb01b9 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x94cda44a scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf6154764 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x068eaedc fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0cfbc6c3 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x20008fdf fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3c75cda9 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4d937aed fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x52038e1b fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x97c43a91 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9ea0cd80 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xccc75069 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd5c47891 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfd4c9a8a fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0328222f libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0715ef28 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0821c59a fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ce01960 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1044c731 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x134db501 fc_fabric_login EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13eeff69 fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x171253e3 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x171f0c55 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a607470 fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1cb56cda fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2038938c fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2102af76 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x151f0e00 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x15694289 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d64e7a0 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e038a67 fc_rport_create EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2188ce48 fc_fill_reply_hdr EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a98edd8 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b2e9017 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c0468d8 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d71d259 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f856b65 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3bd43aae fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x413cf041 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a452270 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x576483b2 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x593b8009 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5a04a545 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66ec4bf9 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x685213d0 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d3687f0 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6da58420 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6fe32d19 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x29ce0324 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ef2e862 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30728081 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x327788da fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x37afe217 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39d4fec4 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a99bcb8 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4aaf2fb9 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x519f1368 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53d3ef05 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59eb06f8 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e0066e2 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5edbe60c fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66314dc1 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e44f8b9 fc_get_host_speed EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x70fd805b fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x71a25a02 fc_fcp_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76d4e505 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78c3fa1e fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7c402373 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d6ca21c libfc_vport_create EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fb26b5f fc_vport_id_lookup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x81e6731d fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8364fe6f fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86b1df31 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8275b157 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x855f7099 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86c05ea4 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b7a5903 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c150654 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c5eca10 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x92b64f4d fc_fcp_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97b79120 fc_frame_alloc_fill EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f4e1bf9 fc_elsct_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9fd2f61a fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa181c3c9 fc_lport_config EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa345288e fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa95c4f5e fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9e9d41e fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6fcd617 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa875157c fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa8f4c435 fc_rport_recv_req EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0e56282 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb8e27ff8 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb943f769 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0deb772 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb601b41c fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb74d283c fc_disc_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9c352d9 fc_lport_notifier_head EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xba91e78b fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbeeed168 fc_eh_device_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca81018f _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd87ebc34 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc766ec5 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf411b44 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd046dfa fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd7465b8 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xded11beb fc_set_mfs EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1f3d962 fc_set_rport_loss_tmo EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe26981ed fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xecfc228a fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed015445 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2a3ae6d fc_rport_lookup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2ef259b fc_lport_flogi_resp EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2ba52f59 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfceb55b2 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffdf55f4 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x04ec32e9 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3db8a489 sas_prep_resume_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x812931d3 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb18e6447 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x83fca704 sas_suspend_ha EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x397674f4 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 0x05fc14eb qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1034578e qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2d9e20a8 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2e519181 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x638ad40f qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6b9d3436 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9426fdab qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xab34b189 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xca6a43eb qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd2532f02 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf53f8e5d qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfe36fdbd qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x040ce13e qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x09113479 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x149c322b qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x21b86d0f qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x25a4ee07 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4d7c6c94 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6ace992a qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xac66b64c qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb6fa1154 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc8b6fa34 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcf9aeb09 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf333eadd qlt_stop_phase1 EXPORT_SYMBOL drivers/scsi/raid_class 0x7bbf33e3 raid_class_attach EXPORT_SYMBOL drivers/scsi/raid_class 0xcd753c04 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x12b2beb4 fc_eh_timed_out EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3fb9f317 fc_release_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4c8f2caa fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x51b55563 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x58f96289 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5a1027fe fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5dcfabba fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x630c9adc fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6544e8a7 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x656043fa fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x61f0a633 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x65ac063d fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x660b2eef fc_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8111ab86 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x88f71e66 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9472f953 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xafbcdab7 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc66f30ee fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9a65ad96 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9a9eec3b fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9c46fc38 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa193792d fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc2e0ab7f fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc8223e8d fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcc4ee701 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcece2298 fc_vport_terminate EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xde0a2ab9 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xefcee755 fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf5a830d9 fc_vport_create EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf62eac33 fc_block_rport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x002039ff sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x038bacbf sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0dc13012 sas_release_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x128b3f02 sas_port_delete_phy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2a9f896f sas_port_delete EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2cae8bb5 sas_rphy_delete EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2efd59a9 sas_phy_add EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2f5079f0 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x36582b50 sas_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3ff72b23 sas_port_mark_backlink EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x45f3a352 sas_end_device_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5b9bc7b8 sas_rphy_add EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x633ba9b1 sas_rphy_remove EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6c4194e8 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6e7a2a18 sas_remove_host EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x717bfb7e scsi_is_sas_phy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a53b0f8 sas_port_add EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x843e9a30 sas_port_alloc_num EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x864b9694 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8bf7ac8d sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x90fb7fa6 sas_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x95ec2021 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa128d911 sas_release_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaced67ce sas_rphy_free EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb068b7b6 sas_expander_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbf44a016 sas_port_free @@ -3951,39 +3840,40 @@ EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc8f55e09 sas_phy_delete EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd35c6276 sas_port_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd835feee sas_phy_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd9f2dfa2 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe31c2d2c sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec995e63 sas_read_port_mode_page EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xed3753b2 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf48d0d3e sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x273688ff spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1d373d14 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2491e946 spi_schedule_dv_device EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x415bdb27 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x45fdfe64 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xadd2ce4e spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf07d3f48 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x2092724a tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x2d31f4d7 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x244c3bad ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x855e83d8 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x9baa73e7 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xdf084398 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xdf1d6b89 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xdf560ae9 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xdffa1b1b ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xe302ae9a ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x9355438e ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xc1631cf8 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x96e14e11 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc081890e spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcb028cb0 spi_release_transport +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x53a4bbdd tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xe7a54814 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x19fe394c ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x294bf453 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x73ba422e ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x8ca40f6f ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x96c6e3e6 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xc73cfe60 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xf6d27df0 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xfe919ad6 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x8ac18dc7 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x920f57ff ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0518e2b3 qmi_send_response EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x11e978e3 qmi_txn_init EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x331b264e qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4ed8f73d qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2b834301 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3920bb95 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4c982a6d qmi_handle_release EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8b4e5155 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x96b8f663 qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x971b69da qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9ad2c56d qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa866fc42 qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc4de4cf8 qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd501512a qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9cd904fc qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc44a9e9b qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd143d300 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd31319c6 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf7eafd07 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfc792700 qmi_txn_cancel EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1c6465f9 sdw_update EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index @@ -4045,274 +3935,273 @@ EXPORT_SYMBOL drivers/ssb/ssb 0xe3d498a4 ssb_device_is_enabled EXPORT_SYMBOL drivers/ssb/ssb 0xea926981 ssb_bus_unregister EXPORT_SYMBOL drivers/ssb/ssb 0xecc7ffa5 __ssb_driver_register EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x00962120 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x01d77fa5 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0e1fd87c fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x20360093 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x232273b3 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x27b8892c fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0b6ec28f fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0d44ab7f fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x13982bb2 fbtft_write_vmem16_bus9 EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x29259730 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3cbd101c fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4c287b11 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5d764269 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e5540e9 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x34b0f007 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3aaec898 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3b387b88 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x485ca3ff fbtft_probe_common EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6ca5f26d fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7162dce7 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x76bf1b44 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7adbe59b fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x867d9220 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x87d92940 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x953f578e fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9710935e fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6f6b93c4 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x991d4708 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9acc9239 fbtft_write_reg8_bus8 EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9b45f162 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9c3a8bf5 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa41c22d4 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xac50aecb fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbd18ff81 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc016580c fbtft_write_spi EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc0c01055 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf9591ade fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf9c96b26 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x0c065963 gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x4c2b131d gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x4e1320fd gbaudio_module_update +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc54f89e3 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc7ddfe93 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcbcb0051 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xda148636 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3d8d810 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe7d32a8f fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf4de25c4 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x2ca04b61 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x70f3caef gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x940e25f4 gbaudio_register_module EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x3d65a181 adt7316_probe EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x86a053aa ade7854_probe -EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0xb45c3116 sp8870_attach EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x04422563 videocodec_detach EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x616b5888 videocodec_register EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x90bf35a5 videocodec_unregister EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xe49d72dd videocodec_attach -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0104d4e0 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x07f07a9c rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0936045a rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1450ca1e rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x016e3d6d alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01ca7a58 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x02fd6d6e rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x077eda70 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f74c41b notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11d80420 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1471d9f8 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x181cc9c7 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1cf245e3 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ecf3db6 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x21c1c1d0 rtllib_act_scanning EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2284ff3c rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x24b72658 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2a123d96 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ae14e97 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b987647 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2bc0d526 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d08218b rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e1c26c3 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x380adf62 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3d4b826b rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3fe188b6 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4b4b2909 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ec8ccb0 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4f23b56a rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53f4abc2 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54f68110 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c152ff1 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6574b197 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x69092fcc rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a573097 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6bca2e6f notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6d55aff4 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x76831af0 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8562769f rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x88834787 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x905007bf dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x98224881 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9c154168 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa63b6b4f rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa717ed7f rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa74130ac RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa814ba50 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaaf6dc67 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaeadb24f rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2bb7c97 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb73de394 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe60da88 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc0ddabc4 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc5362521 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd7d3817 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd3dcff40 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd71dc230 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x24ea027c rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d2eba15 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d6809e0 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2dbb2374 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3c300952 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x436ff8f4 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44e89d9f rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47a004a2 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47d9bbb3 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4e93fb5a rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5655e077 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x673ddacc rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a1d271e rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b052994 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b142213 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b2f0586 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x809ab248 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x81895a2e rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82e55351 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8fb883bd HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90cb1e36 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9b212bf1 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9f1fcd06 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa380692b rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa67b0d66 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa6d7e48c rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xabced613 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xabf71481 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcad341b1 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd46a61cc rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd70668b3 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd8bd80bc rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd8c56ea3 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde82bf2f RemovePeerTS EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe0ee9d92 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeff11035 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfedb9be8 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04c7a4d5 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06cdd8be ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x081269e8 ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x137e3882 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b79be3f ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdfab5b39 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3f423ad dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe5ea56b3 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf0f43ffb rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x01a06bba ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x060eff09 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07aa4cef ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x127b99c9 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1980dc2d ieee80211_wx_get_freq_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x341eab7b to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x366df4e8 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x36763bb3 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x394e7980 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3dc00cec ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e1d31cf dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42d0d22b HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a7f5f92 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4c141a46 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53fba0af ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x64ad4098 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x64c7c3ef ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65807de7 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6d8c6742 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x753fcd41 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78d2b75e ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7b67da6f ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8530e212 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86ca6821 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8b243523 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8c300f81 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d53d09e ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9282cd2c ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99a390c3 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa28504bf ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4d903ef SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa622af3e ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaa574e0e ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf9c6acb ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb4d07811 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5270751 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbe8622e8 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x352fa332 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x391726fd ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x44cb951c ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4610b1cc ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4c6ba1ac ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5414c83f ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56b20c20 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ca3eab0 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5cfd4a9a ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5d89ce76 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61b4927e ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69d45950 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x741f7281 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x79d13f82 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a7aa2a5 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7c441aa9 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7d98afb6 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8118f8da ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x815909c1 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x82f6d6da ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x864e4832 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x89fcad85 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9222d695 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94fd71a4 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d954776 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9e8196e7 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa18f020a ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa3aa47c0 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa62a5c2f ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa80cec65 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1d5c3b0 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb414c2d9 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb6682b15 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb6e2bdf1 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xba65900b ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbcb4f669 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbe166c37 ieee80211_wx_get_mode_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc46ce24d ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5d6d928 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6fa4743 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc834bc86 ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca444275 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcbffe8a2 is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd104dd73 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4b2711f ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd52e81ce ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb8e91b4 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc7a9e15 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc9517cb1 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd041490e ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd67f2282 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdcd218de ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdcfb607f dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe02c7d38 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4e49062 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecbcf190 ieee80211_wake_queue_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee2c867f ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf22fa028 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf4c295b9 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf696851f ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff36ce5c ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0f8c9226 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x161f35e1 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1793e164 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c0a61fb iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ef7750d iscsit_handle_snack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf0cae2e3 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf6e8d852 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfae0653d ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x082b964c iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x11144ec2 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1a11e565 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1b9fd2c3 iscsit_allocate_cmd EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2455b852 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29002780 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b229454 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x251ed1de iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x274501b4 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a1df971 iscsit_add_reject EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f258263 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x30427311 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x38eaa3f6 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x44d5f95f iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x30de31d3 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3ac73324 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3f9689e3 iscsit_setup_nop_out EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x47422085 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b6b04fb iscsit_build_text_rsp EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b84d8df iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x582b7c14 iscsit_free_cmd EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5cdcba94 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5eba22ce iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x637a7716 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x66674185 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x690683a0 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d6c56b2 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x779efbe8 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x89e3b5a9 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e3b87ab iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ea9e600 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x909742aa iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x92c5bd5e iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x92d71ddc __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x92d87da8 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65318cec iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7aa69b71 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c41da89 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8125b899 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b03f134 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x95945663 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x990cde69 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9a7ab36e iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ab7a048 iscsit_build_rsp_pdu EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d1ea51a iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d6990fb iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9f7144c8 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0adb141 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa1b78b07 iscsit_setup_text_cmd EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa7a44507 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa0dee9f iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad39c333 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb57a1304 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8f80ff8 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc05a9a08 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xce47fe58 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3c4e3f4 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd4ccd8ab iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdc3789ce iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xde9ea100 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe8c15a2f iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea1454e0 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa97b1bad iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa8f5cd3 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbc8a0afb iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xca82ff72 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd92fdf39 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb38bbbf iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdc7d52aa iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe56ad655 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeba3dd9c iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf056ce6b 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 0xfbe62016 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xffdd21ff iscsit_build_reject -EXPORT_SYMBOL drivers/target/target_core_mod 0x00e177d0 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x0393e329 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x06edf8c8 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf40be468 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf9dd9e62 iscsit_build_nopin_rsp EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x09f7d586 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x136e8164 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x08c57dcc transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f6f35d6 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ff1fc06 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x117c7e28 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x1327ce36 transport_backend_register EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x17cc6bc4 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x18a62558 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x2b4d3927 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x19986987 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x1ff6a769 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x23236fe2 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x24dcfedd target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x256d800a target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2710c82a target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a267322 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x2bc27390 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c396687 transport_wait_for_tasks EXPORT_SYMBOL drivers/target/target_core_mod 0x2c7043f3 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x2fc8f982 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x30acaf33 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x35c0e386 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x375fd943 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x395cb7af transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x31936fcd sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x33c80eac target_wait_for_sess_cmds EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3bead6f5 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x3bfd9a09 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x4b52354b transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c577e73 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c858e17 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x51da30d9 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a61ad16 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ad4fa21 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x41935afd target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x4c844b5c target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x4db67999 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x4fa942eb target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x5177146a target_submit_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x540b3517 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x558178a3 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x54648f90 core_tpg_set_initiator_node_tag EXPORT_SYMBOL drivers/target/target_core_mod 0x57b25107 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x5a4fde20 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x5ad0fda9 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b00a7e2 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c3119bf target_remove_session EXPORT_SYMBOL drivers/target/target_core_mod 0x5df98de4 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x610efb92 target_put_sess_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x674eb8a1 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x6b8c5feb transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x74590010 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x7571daa2 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x65470c8f target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x69a7338b transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x69b28432 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a6c024b transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6be90631 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x7612608d transport_generic_request_failure EXPORT_SYMBOL drivers/target/target_core_mod 0x76577f1c core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x79789c97 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x76f266bf passthrough_parse_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7e0496b7 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x81a7b0ca target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x8218cd49 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x89d6a589 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8c0df6d7 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x8dccd8ba target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8f5f1f21 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x8f6f5f77 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x93b1c70d transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x993613c1 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a473a14 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7aac101d target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x80401d41 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x82bf15e7 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d843ef7 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x8fb45714 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x95223724 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c9d7341 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9cc55de5 core_tpg_register EXPORT_SYMBOL drivers/target/target_core_mod 0x9ccbed78 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x9eef49f2 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa0026a81 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xa5b1af09 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4f1164b transport_deregister_session EXPORT_SYMBOL drivers/target/target_core_mod 0xaac17621 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xaca556af target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xad9122ab transport_generic_new_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0xae368578 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xb09c359e target_send_busy EXPORT_SYMBOL drivers/target/target_core_mod 0xb107645f spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xb1d0043b target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb308d3ec target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xbf3c0df5 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xba9e4eb1 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe261d26 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xbfe74550 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xc066f11a target_tpg_has_node_acl EXPORT_SYMBOL drivers/target/target_core_mod 0xc1339111 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xcef9ad24 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xcf6f0ed3 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xd2a522f3 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xd7e6f24b core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xd7e81fcc target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xd86e3d04 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xe0db4644 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe6227926 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xe727a6ed target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe8911d38 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xed5c3544 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xee2d9ef9 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc22ad647 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xc606d702 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc31d14b transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd10f9349 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd2ce757b __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd34ecf23 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf2c3575 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf69a69b transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3111610 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6284537 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xe62b5f25 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe80a53f0 core_allocate_nexus_loss_ua EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf79a26ac core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xf8678b9d target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xf773b6c3 target_undepend_item EXPORT_SYMBOL drivers/target/target_core_mod 0xf89cd16d sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xfcd7d15f transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xff0d0ced transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xff274eec target_register_template -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x326e142d usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x67ac3c50 usb_cdc_wdm_register EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x1e8464dd usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x6e4d8bc4 sl811h_driver +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x86e8f897 sl811h_driver EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4a448456 usb_wwan_close EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x741ba331 usb_wwan_chars_in_buffer EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9fe49f8d usb_wwan_suspend @@ -4430,8 +4319,8 @@ EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xca94b43a w1_ds2780_eeprom_cmd EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x6681ff14 w1_ds2781_io EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xfd4038f3 w1_ds2781_eeprom_cmd EXPORT_SYMBOL drivers/w1/wire 0x16ed17e3 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x514d7242 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0xdc6ea35f w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x290fc0f7 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x5d017833 w1_add_master_device EXPORT_SYMBOL drivers/w1/wire 0xf52ef609 w1_register_family EXPORT_SYMBOL fs/fscache/fscache 0x0460dfac __fscache_disable_cookie EXPORT_SYMBOL fs/fscache/fscache 0x17e48bde __fscache_acquire_cookie @@ -4475,11 +4364,11 @@ EXPORT_SYMBOL fs/fscache/fscache 0xf7911034 fscache_io_error EXPORT_SYMBOL fs/fscache/fscache 0xf964b0f4 __fscache_wait_on_page_write EXPORT_SYMBOL fs/fscache/fscache 0xfc42540d __fscache_uncache_all_inode_pages EXPORT_SYMBOL fs/fscache/fscache 0xfe4788c6 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/netfs/netfs 0x2a9bd37d netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0x39743453 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0x6b74116e netfs_readpage -EXPORT_SYMBOL fs/netfs/netfs 0xc5faea2f netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x12452f05 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x18a1d96f netfs_readahead EXPORT_SYMBOL fs/netfs/netfs 0xc8d43078 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0xf2059526 netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0xfb5f4c51 netfs_write_begin EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active EXPORT_SYMBOL fs/quota/quota_tree 0x4c616438 qtree_get_next_id EXPORT_SYMBOL fs/quota/quota_tree 0x4e066463 qtree_entry_unused @@ -4595,548 +4484,548 @@ EXPORT_SYMBOL lib/zstd/zstd_compress 0xe41476d9 ZSTD_getParams 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 0x1b3e4a44 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x2f8619f5 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x677f2f8f lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x7dd750ca lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x88d3df62 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xdbc4c49f lowpan_nhc_add -EXPORT_SYMBOL net/802/p8022 0x86a513dd unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xb613cac9 register_8022_client -EXPORT_SYMBOL net/802/psnap 0xb0de47c6 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0xd53f4cb1 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x00256c82 p9_client_setattr +EXPORT_SYMBOL net/6lowpan/6lowpan 0x1c2ea19c lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x66b11bea lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xac6bea41 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb7e3bca2 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc3ddfd37 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xf827222e lowpan_unregister_netdev +EXPORT_SYMBOL net/802/p8022 0x1cfdf7dd unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xb4fd4649 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x9f3c607f register_snap_client +EXPORT_SYMBOL net/802/psnap 0xca672d29 unregister_snap_client EXPORT_SYMBOL net/9p/9pnet 0x01003904 v9fs_register_trans EXPORT_SYMBOL net/9p/9pnet 0x0154280b v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x098b8789 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x0b4db1aa p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x0e63859f p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x2305e5a8 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x258bc950 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x346d8b87 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1dfddc37 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x1faec565 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x32c54e03 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x340294f7 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x34d69ac6 p9_client_walk EXPORT_SYMBOL net/9p/9pnet 0x36562d11 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x394ac755 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x3947d3d4 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x3a5d4235 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x3b218f6c p9_client_symlink EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x47e34dcc p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x5064074f p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x567b8ee7 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x5914e515 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x5b7e8590 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x5f950447 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x61fa10b9 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x3dd97bfe p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x484a61ff p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x49832299 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x62cea97d p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x684ea927 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x69487dc8 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x6c64e353 p9_client_destroy EXPORT_SYMBOL net/9p/9pnet 0x6f8d746b p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x71bd2cb4 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x73bdc948 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x75ced447 p9_client_renameat EXPORT_SYMBOL net/9p/9pnet 0x7aff8414 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x844ba8a7 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x82ba38cd p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x82e4fd0b p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x864399e2 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x8f752ed3 p9_client_mkdir_dotl EXPORT_SYMBOL net/9p/9pnet 0x922fb649 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x95543824 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x93ca9566 p9_client_fsync EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x99b0bfad p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x9ca29c9b p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xabd02589 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xae22cc94 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xb28ba453 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x9bf6784c p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xa45d7ad2 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xb01f8f6a p9_client_read_once EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xb94f108f p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xbcef51a7 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0xbd58f582 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xbdc2f2fc p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0xbdeb1f62 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0xbf2a65d0 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xc5efd5de p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0xcb6de482 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0xccd6e464 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xbdafcdaf p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbfb09dad p9_client_begin_disconnect EXPORT_SYMBOL net/9p/9pnet 0xce00d612 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xcfe93c4b p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xd018b6bf p9_client_clunk EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd506a0de p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xdc749d52 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xdd6ccab9 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xd5f48e87 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdc6d5ca3 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xdd30c661 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xe2bdcf3b p9_client_write EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe6fec9c2 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0xf8ec1400 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xf9d2bb8c p9_client_cb -EXPORT_SYMBOL net/appletalk/appletalk 0x6aea3d7d aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x81608c66 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xecc98b08 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0xfa451e24 atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x06ad64d5 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x106cad68 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x1fdacff2 atm_dev_signal_change +EXPORT_SYMBOL net/9p/9pnet 0xe7403622 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xefc14351 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xfd66e31a p9_client_mknod_dotl +EXPORT_SYMBOL net/appletalk/appletalk 0x59506306 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x853e9dd4 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xb8ecae1b aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xda310767 atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x19b07983 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x1ab8cdec register_atm_ioctl EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x2f2fe776 atm_charge +EXPORT_SYMBOL net/atm/atm 0x32642e5e atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x3e8079fb atm_dev_signal_change EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x51ff12bd atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x6edc1030 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x86ef5412 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x8752f808 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x4ecf779e deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x529fa751 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x6d743b79 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x7b8e9e85 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x83379dad vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x87ae9d7c vcc_process_recv_queue EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa9aaecc6 vcc_release_async EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb3183f7e atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0xc5c1a6ec atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xaa3a0317 atm_charge +EXPORT_SYMBOL net/atm/atm 0xb50f3c8d atm_alloc_charge EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xe7c48bdc atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0xf25671fd atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xe4e135e1 vcc_release_async EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x192bc5ee ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x27695832 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x35c8036f ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x25c1754e ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x2b4255b6 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x326ac009 ax25_listen_register EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x73b347e4 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x85c567cc ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x5773853d ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x7ebd17ff ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xa0ca2a99 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xb5672593 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xa85078d2 ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xe9ab8625 ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xf1e443bf ax25_header_ops -EXPORT_SYMBOL net/bluetooth/bluetooth 0x01620dfd hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0208f0e3 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x06337b4f hci_release_dev +EXPORT_SYMBOL net/ax25/ax25 0xf0974b15 ax25_linkfail_register EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1ec7f1a0 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x209d6259 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a5fb7e4 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x135783b3 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x15c42fce bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x16e06575 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2043fa67 bt_sock_link EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x22a700ce bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x23e0259f l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a18421d l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b011a6c hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f43687f hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x340c53f7 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f54673a bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x421ca7e5 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d293371 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f02fd94 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x60d536bb bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6311f371 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x679a0610 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b5785ba bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x73a021be hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x798e99cf bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x28154dbe hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2aa920d3 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x39f783ab bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x40167bf0 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x40b90d9f bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a5d7694 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5dffb2d2 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ec7198b l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x70ddbbc2 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x75d5a20f bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x79550449 hci_set_hw_info 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 0x7ce2520a hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7dbaa224 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e6b7024 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x83fdb7e5 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x84b3d703 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x86e46eba hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x86a923f2 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ae0e989 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c1166de bt_sock_recvmsg EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x90c65bb2 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x96a77223 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x96eb2edc hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9818dccd hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9bc36bcf hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa05369aa hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa85142f0 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xace8c791 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb6a7383b __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbee10ce9 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc8b94f48 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xca337564 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1dc4e44 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x905365ba hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x93b2685a hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x981f2cda hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa2d27e0c hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa49d51b0 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4de4e44 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4f2c9dd __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0a24e87 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbb0bc097 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc0310d09 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc6c0b4e2 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcd6f7627 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcdb68b13 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd388b1aa hci_conn_security EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8008747 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd848b5d0 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdcc66727 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdb723052 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdcbb2506 hci_register_cb EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe5dd1189 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0xea4fe75f bt_sock_link -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2bded48f ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x767ea8a6 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x76856f0f ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xcc37c2ea ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe041cc7d ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf8df50c3 ebt_register_template -EXPORT_SYMBOL net/caif/caif 0x01b88478 get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x0c8706ed cfcnfg_add_phy_layer +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdeb7c971 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdf514f87 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdfd744d3 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0e41154 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe229cd73 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe48e5c80 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7189be4 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf365d492 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfa8b8870 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xffdf8b67 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2286d6a9 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2a7ec00d ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x529480f1 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7463318f ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe3cf54ac ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe6abc8f3 ebt_unregister_template EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x20d946d9 caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x2f566c85 caif_connect_client EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x32d8e5f7 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x3320b1fc cfcnfg_add_phy_layer EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x8d887a9c caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x8fe840f0 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 0x12b59f80 can_rx_register -EXPORT_SYMBOL net/can/can 0x34cfdbe5 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x3e780f65 can_proto_unregister -EXPORT_SYMBOL net/can/can 0xa9e5aa9a can_send -EXPORT_SYMBOL net/can/can 0xc89d9bf6 can_proto_register -EXPORT_SYMBOL net/can/can 0xceaeac33 can_sock_destruct -EXPORT_SYMBOL net/ceph/libceph 0x015b91a3 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x053871e7 ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x06896477 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x079dfb35 ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0x0d1505f2 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0x0f814b82 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x10affc28 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x119f8477 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x11fbde3f osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x12887e15 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x12b052b2 ceph_cls_set_cookie +EXPORT_SYMBOL net/caif/caif 0xde0a5bcb get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xfc06d1e5 caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x0c834aef can_rx_unregister +EXPORT_SYMBOL net/can/can 0x47f33ed3 can_send +EXPORT_SYMBOL net/can/can 0x6fb2ab01 can_sock_destruct +EXPORT_SYMBOL net/can/can 0x8e9fc43d can_rx_register +EXPORT_SYMBOL net/can/can 0xa1c7e056 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xabe49439 can_proto_register +EXPORT_SYMBOL net/ceph/libceph 0x003409a6 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x00e3d0e4 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x01bce751 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x0265d6f0 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x05fd1858 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x06229408 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x07acd4de ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x097c5612 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x0e0ad038 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x0e8b425e ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x105da385 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x141d4a4a ceph_monc_renew_subs EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x1c8c26d5 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x1987d223 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x1ba11923 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x1ce0c926 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x1d0d683d osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x1d56a2e2 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x1f5ce2dc ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x1f90b1b1 ceph_osdc_maybe_request_map EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy -EXPORT_SYMBOL net/ceph/libceph 0x20b3e6a1 ceph_cls_lock_info EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x258d955b ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x26cb9f4c osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x299f658d ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x29cd368a ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x24c394c7 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x26b8d2fe ceph_auth_invalidate_authorizer EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2c139df0 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x2c69ec25 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x2ce314d4 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x2f4719d1 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0x30e23ed2 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x33f07b5b osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x34321363 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x36b7ec0d ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x2ea2394a ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x37df97a9 ceph_osdc_cancel_request EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x395e1448 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x398579d4 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x3a2d2338 ceph_copy_from_page_vector EXPORT_SYMBOL net/ceph/libceph 0x3bb3da25 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x3c8608d2 ceph_con_keepalive EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3ca89851 ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0x4023f552 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x3f0876c2 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x411ee2c8 ceph_msg_data_add_bio EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x437b58be ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x461e99c4 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x4283e63b ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x461179e6 ceph_osdc_flush_notifies EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x46e3300f ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x47a8e252 ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0x48e1acbb ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x4ba89903 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x47317835 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x48385147 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x4b93e62b ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x4cecc817 ceph_con_close EXPORT_SYMBOL net/ceph/libceph 0x4cf4b0aa ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x504b8d16 ceph_osdc_wait_request EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x50c66c95 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x5382798e ceph_monc_init EXPORT_SYMBOL net/ceph/libceph 0x53bde46a ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x542a5d30 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x543df775 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x55c0ba3f ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x55f966ce ceph_auth_verify_authorizer_reply EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x596b44d5 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x59cf11c3 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x5a84af9c ceph_osdc_wait_request EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5af423dd ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x5b405dda ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x61c31591 osd_req_op_extent_osd_data_bvecs EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6480df0d __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x67663019 ceph_osdc_copy_from +EXPORT_SYMBOL net/ceph/libceph 0x67ee7e4a ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x68893d65 ceph_client_addr EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6c383b57 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x6e11f304 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x6e52826e ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x6ed46f8f osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x6f4a9bec ceph_osdc_sync EXPORT_SYMBOL net/ceph/libceph 0x6f730838 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x6f8197bd osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x7106e3ec ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x7265f711 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x7639cf9e osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x763f05b1 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x769c9737 ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0x76debe42 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x7c9b5305 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x7cceb500 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x73619023 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x765aedd0 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x76ba42b0 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x77542142 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x7c232f4e ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8026ab51 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x834e7e19 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x851fcf05 osd_req_op_cls_init EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x8addcdf0 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x8ae853a0 ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0x8c8388a7 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x8cad7af0 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x8ce51b64 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x93dd5293 ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0x9478a894 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x9665f45e ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x8a61907f ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x8ab3a909 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x8b11464b ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x8b3df857 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x8b6a54f7 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x8c6542c4 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x8d3b38b7 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8dbdc3ba osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x91cc517e osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x9742a374 ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x999b13e2 ceph_zero_page_vector_range 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 0x9cd22ccc ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x9df8ffd9 ceph_msg_data_add_bvecs 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 0xa1b0860d osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xa1f01131 ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0xa24643a2 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xa520a33f __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xa1c1ba6e ceph_osdc_abort_requests EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa6ba83f6 ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xa6e22270 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xa7923f3c ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0xa979eb3a ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0xaab4b733 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0xac5f90f9 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xa72f2266 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0xa7ee41f7 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xa8ad2199 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xab7755e6 ceph_osdc_alloc_request EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xad744071 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xafb849c8 ceph_osdc_get_request EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb4cc0a1b ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xb03a30dd ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0xb1f56908 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xb2986403 ceph_osdc_new_request EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb7125365 ceph_monc_want_map EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xbc9f20dd ceph_con_keepalive EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xc0a491d9 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xc2ffda89 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xc0feb1f6 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc23a835b ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xc3025622 ceph_osdc_list_watchers EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc6f06a9b ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0xc9ea4c31 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xc75c1c05 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xc80163b4 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xca585b7d ceph_parse_mon_ips EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcd34bc12 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xce871085 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xcfe360bc ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xd06a0c3c osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xd1b8482f ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xd11a6fc5 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xd1803af6 ceph_monc_stop EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd6615c9d ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xd7a8e4b1 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xdcc23469 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xdea68334 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0xd75a142f ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xd76f9f05 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xda6f6014 ceph_osdc_notify EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name EXPORT_SYMBOL net/ceph/libceph 0xe022108c ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0xe0316588 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0xe0e020da osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0xe6412c0d ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xe04a62dc osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xe0887a08 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xe14fc466 ceph_copy_to_page_vector EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xe8b90aad ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0xe9e3b33a ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xeac08a88 ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0xeac26378 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0xedb3ec01 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xe813f53e ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xea0b46de osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xea956828 ceph_monc_blocklist_add EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents EXPORT_SYMBOL net/ceph/libceph 0xefce3c3b ceph_pagelist_reserve EXPORT_SYMBOL net/ceph/libceph 0xefce991c ceph_pagelist_append EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank -EXPORT_SYMBOL net/ceph/libceph 0xf2fae45c ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xf56ceebc ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xf6c2a844 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0xf9ed1a3c osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xfb7491be ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0xfc40d77d osd_req_op_extent_dup_last -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x13cbdaa3 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3bc399c6 dccp_req_err -EXPORT_SYMBOL net/hsr/hsr 0x32ef99e0 hsr_get_version -EXPORT_SYMBOL net/hsr/hsr 0xbf5d2b8f is_hsr_master -EXPORT_SYMBOL net/ieee802154/ieee802154 0x45605a49 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x51e8fd8a wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x88e82adf wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x92e2c6f8 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x9e3ecbcb wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc13f3d23 wpan_phy_new +EXPORT_SYMBOL net/ceph/libceph 0xf7da866a osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xf8618058 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xf9a3230d ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xfaaa535f ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xfe744e68 __ceph_open_session +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xa8745ce3 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xbf4ae68b dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x90d2b0ba hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0xb525688b is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x432f98e7 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x49ce25c6 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x585669c5 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb2973d07 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe3a483cb wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf01b077c wpan_phy_free +EXPORT_SYMBOL net/ipv4/fou 0x11b74b79 __fou_build_header EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x17befc54 __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x600d522d __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xbdf8b1ba __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xba4003cd gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4852609b ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6387f8d8 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8b94d4bc ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x98c15007 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6cd6834b arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc450f6c3 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xdb7295b2 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xdf22ee1b arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x31a38dba ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5c8680dc ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb967bfa5 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xcbc2a45c ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x3e4ccfd3 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0x918f1566 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x57045891 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x074cbf71 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x295a5a8d ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x55e8ad71 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x689e23e9 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6d1389eb ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa9d6c577 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb7b588b3 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc197a430 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe5c86cbd ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x31e6af49 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x45080553 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xc20cb2fa ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xea279f2b ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x20a56723 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x9d24d648 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xa5879c92 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xef1357f4 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/lapb/lapb 0x1b3651fd lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x228e8a37 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x399a636d lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x6237b235 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x9b82f6da lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xb47318c9 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xf48866b8 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xfe742364 lapb_data_received -EXPORT_SYMBOL net/llc/llc 0x33026e7c llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x34070937 llc_sap_find +EXPORT_SYMBOL net/ipv4/gre 0x0beab27a gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x26147e2c ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3803e7f7 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x55ae3daf ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x991a2756 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x20cf05bf arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3dc88f0e arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x670177be arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7409994d arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3a0dbe1f ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3c9b084a ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8f4727ab ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x95c00da0 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0x99a1172c xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x9e5ccbe3 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xbb829586 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0bb0b430 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4429622c ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7b5f1689 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7c1dd2cc ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa5616edf ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbdac0cf2 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcde0e5ed ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xddf75734 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdf1082aa ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x21e71686 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x621ababb ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6407537a ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7da9d446 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x36a227ad xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xac701c22 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x415b1a62 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x7a6a7d50 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x05b33408 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x3313ce87 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x4bcea564 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x6f472a4b lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x7711bb0f lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x90d09d61 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xa98e465e lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xb7477de0 lapb_unregister +EXPORT_SYMBOL net/llc/llc 0x0fcdcb6b llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x2cad9cef llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x33edbbc6 llc_sap_find EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x3ac6dd85 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x3df6e988 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x473c44dc llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x38c7d221 llc_set_station_handler EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x8f8e60f5 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xe43f3779 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/mac80211/mac80211 0x01705683 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/llc/llc 0x666c3f05 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x777c417e llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x84efe194 llc_sap_open +EXPORT_SYMBOL net/mac80211/mac80211 0x00727a15 ieee80211_tx_status_ext EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x06c10e91 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x06d5e964 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x091fa5c9 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x0a07c0f2 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x0ef018d1 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x13567721 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x105ddef6 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x106bd76d ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x109755e4 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x11c71694 ieee80211_stop_tx_ba_session EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x19674169 ieee80211_iter_keys_rcu EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1a081f14 ieee80211_generic_frame_duration EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x1faab298 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x21f557e4 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x24fa36c7 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x2728933c ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x28df17b0 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x2945072e ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x2cd530ac ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x2e284b28 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x37ddbf4a ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x3b296831 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x3d619cbc ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x44aa710f ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x48505ae9 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x4b8c00e5 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x4bbfaa6c ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x4be71de3 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x4ec79c54 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x512f7789 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x51f667c0 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x53239edf ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x574cfdf8 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x581678d4 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x5ac78628 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x5edab3a2 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x62b9368d ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x65c4edb4 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x69872e24 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x6a8d3c67 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x6f4aa42f ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x709d03f8 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x70bf6204 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x71a7ea72 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x7709ee96 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0x7813f305 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x78ab40a6 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x7925e487 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x7a7b9d43 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x7f99ca2a ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8014c4a4 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x80f163a1 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x85dfefc6 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x870fe9ee ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x87cfa544 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x8ac7b6fc ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x8ca40213 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x8e5074cb ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x9301247b ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x950a7c65 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x973cb7b2 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x1f478a0c ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x1f9bd395 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x2241c0b7 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x24c35563 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x2781ff89 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x2a35409a ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x2b170e98 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x2ef2b6ba ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x2fcdba3a rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x307154a4 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x30e37f2b ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x32301c26 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x33ff44e6 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x37aa5f7a ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x386b82bb ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x3957be54 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x3db1b6b9 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x3f824a08 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x439fdda5 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x44d42398 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x44d9afb3 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x45c9f647 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x45e580af ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x4652049a ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x47ea8ab8 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x4848d976 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x4a036f04 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4b5935f6 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x4ec71133 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x4ee44081 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x51704bec ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x5a9698f2 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5c8aa74a wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x5e8d3e31 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x61e5393d ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x65418b3f ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x684a3cad ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x68a4e00d ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x6978ffb5 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x6eda7c79 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x72b9438b ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x7330b9e2 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x759579bd ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x76986982 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x76b40015 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x76c9d7ea ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x7ab0013f ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x7fbbd4d8 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x8394ea50 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x875a7a5e ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x88b4eab5 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x89190ea7 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x8d69ffe3 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x9715bfc7 ieee80211_get_tx_rates EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9a905eee ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x9ed5f7a5 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xa0bf73ee ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xa1361b39 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xa38d48e8 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xa49e3fff ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xa89157e0 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xa908fe97 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xaa82295e ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xaf239381 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xb0035800 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xb35dc383 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xb526472d ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xb59b833a ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xb9b87382 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xba957e57 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xbb28594a __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xbdc0af8d ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0xbe30d57a ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xbe91b4ee ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xc12fb8c4 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xd3006ade __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xd4789578 ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xd733bc34 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0xd7a61594 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xd81bb082 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xd8dfadab ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0xdb66f93c ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xe07dc384 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe179a1cb ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x9a48bbb0 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x9d5c5275 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9ef4fbd7 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x9f115ec3 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x9fc5914b ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xa439e00e ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xa5279a70 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xa77becf2 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xa8197f9d ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xab48bd32 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xae4942d6 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb1514e7a ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xb89faa6b ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc08337b6 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd208492a ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xd3c0cd50 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xd3f2c7b9 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd7448999 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xdc17a72b ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xe2c7c53e ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xe30de977 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xe3571077 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0xe40ea4a5 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xe416a77c ieee80211_disable_rssi_reports EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xe704d167 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xeb198818 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xed9a3aea ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xeeef106e ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xefc66534 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf48c9955 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0xf49e6401 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xf6e5a3bf ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xfadf44e8 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xfb0bf0af ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xfdb932d7 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xfefb48c3 ieee80211_disconnect -EXPORT_SYMBOL net/mac802154/mac802154 0x0870263e ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x1ea9873b ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x2686b398 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x34c6af72 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x56386435 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x6593299f ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xb40d9321 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xed3382cf ieee802154_rx_irqsafe -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0993d72d ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0ac79005 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x14de2066 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x253264cd register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3ea16290 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x76ed55b0 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8186f55f ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x999d346d ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb55f76e9 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc0fb2fd4 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc8be88c3 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcc8d7451 ip_vs_new_conn_out +EXPORT_SYMBOL net/mac80211/mac80211 0xe5b185d5 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xe6f17fb7 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xe92f3baf ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xebb08c1b ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf0d40758 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xf2f5dfed ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xf3e95fb7 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xf3f56c01 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xf577e38a ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf817b3d5 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xf8ae5690 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xf8ce6819 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xfca69172 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xfe715afc ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xff5e19ad ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac802154/mac802154 0x0db31dfc ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x2c101405 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x56425a65 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x5ea89b49 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x8f4d6d1d ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xbb70ccd6 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xcc7dc147 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xfc8d4bcc ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0708d4d4 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x094c5011 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x13d731c1 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1ad1ace3 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x33554379 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3943e71b unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3beca52c ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4011b81c ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x81385cbe register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8bbe63bc ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8de4fd1a register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xafd34862 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb1be489a ip_vs_conn_new EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd98245c1 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xecaddae5 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf02a77e7 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x0cd03591 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf5f37395 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfd748562 unregister_ip_vs_app EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x4f1c8fd3 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x31cc90ab nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x8574f757 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xa37ba21a __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xff717929 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x06c3b74a nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x3de119f1 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x424d3641 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x9ba27071 __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 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x3fb739d1 xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x48afc4a9 xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x6af92091 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x788f284b xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x7cf7bea8 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x8c3dc8ff xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x539d14a6 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x62bc889d xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x71b7c77a xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x78685590 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x793d2afb xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x856c24d0 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x8c4e64a6 xt_find_table 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 0xb53a03ab xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xb59a6e4c xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xb770f257 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xbe0403a8 xt_find_match EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xcf3100d2 xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0xd2cf9514 xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xe69d19f3 xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset EXPORT_SYMBOL net/nfc/hci/hci 0x1205cd45 nfc_hci_allocate_device EXPORT_SYMBOL net/nfc/hci/hci 0x167548cc nfc_hci_reset_pipes_per_host @@ -5161,238 +5050,238 @@ EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol EXPORT_SYMBOL net/nfc/hci/hci 0xdf3229b3 nfc_hci_free_device EXPORT_SYMBOL net/nfc/hci/hci 0xf32ad89b nfc_hci_set_clientdata EXPORT_SYMBOL net/nfc/hci/hci 0xfc30af5e nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/nci/nci 0x3d4aa3e7 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x436c90eb nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x5311a4fc nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x543d181d nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x59881e66 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x636fa574 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x87da154b nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x88595a19 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x8d950ab3 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x922db651 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x93406808 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x9a0029af nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x9ab680da nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x9ebe4caa nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xb741161b nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x061ff232 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x094d7c22 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x0ccc7a4d nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x0d3007b3 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x17275e9c nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x229ce309 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x37d66470 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x38de5b84 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x4c2319c2 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x55bac6b8 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x560a7d2f nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x573ca3be nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x5cf0e82b nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x6d42b5ca nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x72bd7251 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x7e7ca212 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x86929435 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x8dbb23a1 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x9555bb08 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xa5d70d7c nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xaf7dd860 nci_send_frame EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc1acfac4 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xc3029ed9 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0xc5a5ae69 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xcc050b19 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0xcfce6c8c nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xde6f1755 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xe104239a nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xe12b98f8 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xe465b0d8 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xe4de9ae5 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xed572b17 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xf0841465 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xf0b828f9 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xffe3e1f4 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nfc 0x01b86974 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x08e86c43 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x0c53daf6 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x18484759 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x1d006966 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x1f1934e6 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x2c8cc9bb nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x4564c9b3 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x58c9ea79 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x5ad5f4bc nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x7cbecbb2 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x80f5ac6d nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x89464f45 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x998ad852 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x9b592f69 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xa390b0ce nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xa555c9e8 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xa79085ef nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xafb27f94 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xb8473d1f nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xd4a80718 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xd64c2d78 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xd6bbb15b nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xee29cb34 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xf63e4466 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nci/nci 0xbd26eb89 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xc080b63d nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xc7a1aca4 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xca7ab35e nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xf155bcd4 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xf20ff370 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xf4c91318 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xffa17c09 nci_send_cmd +EXPORT_SYMBOL net/nfc/nfc 0x14ff5b07 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x1f126a88 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x2e581ea0 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x300ff156 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x305fd742 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x37b173f5 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x48303b96 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x52d84a27 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x77ea2ecf nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x79735e3a nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x7e5c4c65 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x978f6585 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xa28ec2f1 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xb3f5a93d nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xba973de1 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xbed29778 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xc9f7aee7 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xd42f4182 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xd7bd75f7 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xe2928b6c nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xee001909 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xee5255f3 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xef761180 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xf81e4352 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xfbf7ac1e nfc_se_transaction EXPORT_SYMBOL net/nfc/nfc_digital 0x281c2b64 nfc_digital_free_device EXPORT_SYMBOL net/nfc/nfc_digital 0x4915b735 nfc_digital_allocate_device EXPORT_SYMBOL net/nfc/nfc_digital 0xa3450818 nfc_digital_unregister_device EXPORT_SYMBOL net/nfc/nfc_digital 0xff40c40c nfc_digital_register_device -EXPORT_SYMBOL net/phonet/phonet 0x3da675fa phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x4f1cea30 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x72af0268 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xb012748e pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xb2c377fe pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0xcdaffd34 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xd1f421a4 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xf18a4397 phonet_header_ops -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1a798c42 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x22a59530 rxrpc_kernel_end_call +EXPORT_SYMBOL net/phonet/phonet 0x26f9d066 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x2a683fd2 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x441a6a4e phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x47a59286 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x511ae9eb phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x7ac53a3d pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x81d80c3c pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x84922923 phonet_proto_register +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1535bbd1 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x15e38be8 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1ad2e69f rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2096f4d3 rxrpc_kernel_send_data EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3c6595c9 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4075ee12 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4af53359 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x68d7c969 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x69f7d7f7 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6c212851 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x73f7593e rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x762e8eff rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8527b2b5 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8e294ac5 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x99890f25 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9c97e6f7 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xad312733 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0xce855696 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd3341f9e rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0xfa910ab4 rxrpc_kernel_send_data -EXPORT_SYMBOL net/sctp/sctp 0x6fea5955 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2e1268da gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3f4932fa gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xa6b6ac4f gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x20b2adb7 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x4588dc75 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x78d15d9a get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0xd37162c8 xdr_truncate_encode -EXPORT_SYMBOL net/tipc/tipc 0x03cdf181 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0x6a726caa tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xd3a8ae4a tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0xfe759de9 tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0x148b92f6 tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x00abead3 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x041e91d7 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x04b8ffc3 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x05d9632c cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0c2a172d wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0x0dd8dc91 cfg80211_get_drvinfo +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3a67ac3b rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3eb4ead2 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x721582e2 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x82e72deb rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8e763080 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9c7da3d3 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa39a925e rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbc249827 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbd509d0e rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbdc38766 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcd7e1099 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcede8808 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcfc1e734 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdc9087a8 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/sctp/sctp 0xd64ade55 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x436f6155 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7be28e1d gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb6314a66 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x38949f7f xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x91d07b1b get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc30c7bb4 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xdce02078 xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x124985f1 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x399c5c4a tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x95da3430 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xdd616401 tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0xf204e51c tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x02d0c910 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x10138732 cfg80211_michael_mic_failure EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x1516d50f cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x11d611b3 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x1379dc80 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1404f0b7 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x143f2704 regulatory_pre_cac_allowed EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x165d2587 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x1748171e cfg80211_rx_spurious_frame EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x19638365 cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0x1b1a4cc7 get_wiphy_regdom EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x20b8ca3d cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x22780cea cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x1d4711fc cfg80211_check_combinations EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x23ffcaa5 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x23c008d1 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x25273132 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x25a56ef2 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x26669638 wiphy_apply_custom_regulatory 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 0x2946c328 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x2805debd cfg80211_connect_done EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x2c5a57c8 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x2e257dbc cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x2e6cd435 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x33622df0 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x35b387a6 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x3d002113 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x2b0b2689 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x2d689d5d cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x2d84cf6a cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x2e8bc11f cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x2e9bc4f4 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x2fe5df08 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x36ec8498 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x3887bb37 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x3bf179be regulatory_hint EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3fcf563b cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x3e4fd5da cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x408ce95a freq_reg_info EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x47f9945f cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x48ac3b0f cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x4b707e86 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x4e713c4b cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x4feeb091 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x5007d56b cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x505b859c cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x508741ec cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x50880261 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x512b8321 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x522149c5 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x524b0809 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x54505fb6 cfg80211_rx_mgmt_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x5630d270 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x582e5923 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x5afbd3a7 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x61ba0558 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x6301ad29 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x63d65491 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x47ef5f6f cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4a266f90 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x4a6addd1 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x4b318a66 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x4fd7c1d9 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x5226755d cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x55411532 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x58be8835 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x59ad8b26 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x5a30be60 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x5adf5c74 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x5c3d6914 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x5c8f6b34 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x5cb299c3 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x5d8636ff cfg80211_disconnected EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x65b2cb48 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x674a7828 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x6532719f cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x658b84e7 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x6674369f cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x6732a1b2 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x6739c4f8 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x68d47045 cfg80211_control_port_tx_status EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x69e21845 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x69cc7253 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x6ba4872e cfg80211_put_bss EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6bffb7a5 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x7973a13f cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x73d6ec61 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x760c6d12 wiphy_free EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x79f4d72d cfg80211_sched_scan_stopped EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x7bdfc754 cfg80211_get_bss EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x7c3dcd5b cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x7cc50ecf cfg80211_tdls_oper_request EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x81081ff8 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x81639a2f cfg80211_ready_on_channel EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x8881d953 cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x8d3c0b87 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x8d581ab4 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x834c669d cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x848b99a6 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x8511f562 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x88e6266d cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x89b63bbb cfg80211_notify_new_peer_candidate EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x91c052fc wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x92d2c7a5 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x9590408d regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x962425e1 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x9a294b56 cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x9a5d8ab2 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x9c7a2ec8 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x913c8671 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x9306483b cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x932ef295 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x957d310f cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9749ad67 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9b574e1d cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x9c09bb7f ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x9cfd21b0 cfg80211_abandon_assoc EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9deaaabb cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x9e72120d wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xa0782d7c cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0xa7853b04 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0xa890e026 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xaf4f3ffe cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xb1c8cd0c cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x9ebda2ca cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xa46c3150 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xab9dc32e cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xacc554bf cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xacd1d2c0 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xad69d60a cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb23c551b ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xb55796c2 cfg80211_gtk_rekey_notify EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xbba7dfa0 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xbc059d39 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xbe2e7f3b cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xc1101970 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xb7d3c044 cfg80211_get_bss EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc1cb68af cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xc3c89f4d cfg80211_bss_iter EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xc731e08c wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xc881156d wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xc78fc5dc cfg80211_external_auth_request EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcd06b470 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xcf6a284d cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xcfe8d55c cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xd0bd4f7a ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0xcc5c2e3b cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xcc8cbea4 cfg80211_radar_event EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd99d417f cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xd7dabb84 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0xda976b90 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xdb7bc556 cfg80211_ch_switch_started_notify EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdc4af355 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xde5ec375 regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0xe045d3c3 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xe3145dee cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xdd72f404 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xdefc5d50 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xdfb4c813 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xe03c931a cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xe11ed3de ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xe202576d __cfg80211_alloc_reply_skb EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0xe34103a7 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0xe409591d cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xe465a52b cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xe7634548 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xea528ab8 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xe336704b regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xe3a0ae2d cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xe46353b3 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0xe515b2c2 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe6cb9294 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe733c2fb cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xee9e7675 wiphy_rfkill_start_polling EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xef51ce5a cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xefadcd53 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xf43efc05 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xf33166ce cfg80211_remain_on_channel_expired EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf667f745 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xf754aec4 cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xf7dd91f3 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xf95bcec9 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xf9c75567 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xfb13b458 wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0xfd09b4bf cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0xffe0264f ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/lib80211 0x09f50433 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x2e1df00a lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x2eb98870 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x5588bb6c lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x64038362 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0xd74bd03c lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/cfg80211 0xf873ca7c cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xfce9ba57 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xfdd885c9 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xfedc9373 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/lib80211 0x0d1aaaea lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x213bfdc9 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x44b402ae lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x80bfda90 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x8b6ced6f lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x976c5fdb lib80211_unregister_crypto_ops EXPORT_SYMBOL sound/ac97_bus 0x6ba8e384 ac97_bus_type EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x41705e84 snd_mixer_oss_ioctl_card EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl @@ -5620,19 +5509,18 @@ EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd491429d snd_vx_free_firmware EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd7e346f5 snd_vx_dsp_boot EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x02f52497 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0591178d amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x11c65621 amdtp_stream_pcm_prepare EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x169b0840 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x18bd6e41 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1dadcd13 amdtp_stream_add_pcm_hw_constraints EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x22d2b52d iso_packets_buffer_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2556b261 fw_iso_resources_allocate EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2a53f5a7 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2cb354ae amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2da41fae amdtp_stream_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x33ce2e40 cmp_connection_break EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3492d660 snd_fw_transaction EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3964a30e cmp_connection_establish EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3e68620d cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4fa3545a amdtp_stream_get_max_payload EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x59567258 fw_iso_resources_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5e290b14 fw_iso_resources_destroy @@ -5640,16 +5528,17 @@ EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6481dec3 fcp_avc_transaction EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x64d05525 avc_general_get_plug_info EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x67cefafd fw_iso_resources_init EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6bdd4b2b fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6f560128 amdtp_stream_init EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x737e5c50 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7778f44c amdtp_stream_set_parameters EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9e021b3e cmp_connection_release EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa619da5c cmp_connection_reserve EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaad69375 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd352e30e amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb9bbe62f amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcd373342 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdb76e8c3 amdtp_stream_set_parameters EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdb905d19 cmp_connection_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe6362cc1 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf314224c amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfb8ee506 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf77cc83d amdtp_stream_destroy EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x1a1a5b7f snd_ak4113_resume EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xe987aec4 snd_ak4113_suspend EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x41d7d3e6 snd_ak4114_reg_write @@ -5724,7 +5613,7 @@ EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf479a3bc oxygen_write8_masked EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfb1a5804 oxygen_write32_masked EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x34b8c761 adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xa254768f wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x6a9177e9 wsa_macro_set_spkr_mode EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x0335d1ef pcm3060_regmap EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xc9fe384b pcm3060_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw @@ -5735,75 +5624,75 @@ EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x3d6d4717 aic32x4_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6c79dba7 aic32x4_remove EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x32b790df aic3x_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x7dd98d92 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x31299a4c 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 0x3e80f1de wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x7832d254 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 0x952967ae wcd_mbhc_init -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x9d9dcb93 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 0xc9527da0 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x025eaeec snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x03d0ca12 sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x043938c1 snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x061a4112 snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0c0be9b9 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0ca2f15f snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0e951665 sof_io_write64 +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xfab7ee43 wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/snd-soc-core 0x729e08f1 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0e32cf48 snd_sof_get_status EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0fcea573 snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1443eedd sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x15e224c3 snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1cc1088b snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1cae9bb9 sof_pcm_dai_link_fixup EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x26294c86 snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2aa92fcd snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x229dd881 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2869d4e6 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x29d26184 sof_mailbox_read EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2d0c4134 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2d238475 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3093baea snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x31d64333 snd_sof_fw_parse_ext_data EXPORT_SYMBOL sound/soc/sof/snd-sof 0x38fa7121 snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3ba24f6c sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x43f20c60 snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x47be863c snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x48aba523 sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x496c989c sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4a0ca397 snd_sof_device_probe EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4a76ef06 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4ce3a37c snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x533cb292 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4a8f9fff snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4e06304c snd_sof_load_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4f595006 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5192e965 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5b20461b sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5c4beb53 snd_sof_parse_module_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5e009c41 sof_io_write64 EXPORT_SYMBOL sound/soc/sof/snd-sof 0x640a6841 snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x665ec2f2 snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6974ec82 snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x73dba370 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x777fc1b7 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7c3e9cb1 sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x80b0ddce snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x85795181 snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8a65c822 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x66f2c832 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6a8a29bd snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6f24615f snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7242d143 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x72977a66 snd_sof_free_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x72ac3b16 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7b214620 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7bb7eb0e sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7bce0bb7 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8bbfb09d snd_sof_dsp_update_bits64_unlocked EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8c047ad0 snd_sof_create_page_table -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x957c1d12 snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb01a2a52 snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb1d3cac8 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb440e466 snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb49fed00 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8c8286dc snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x91c3d003 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9ad1de83 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa82fafa0 sof_fw_ready +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab1772d0 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb3a4fcf9 snd_sof_ipc_set_get_comp_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb49cc385 snd_sof_dsp_update_bits_unlocked EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb7c69fcb snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbcbe783a sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbcca22bb snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbde91ec0 snd_sof_init_trace +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb8d16bf2 snd_sof_ipc_valid EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc0e908db snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc2065a6e snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc7994e94 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xca96736b snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc83594ba sof_block_read EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd15fbcd9 snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd821fa4f snd_sof_dsp_mailbox_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdac98991 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdb335722 snd_sof_load_firmware_raw EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdb3bb71d snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdb6e3855 snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdd96362e sof_dai_get_mclk EXPORT_SYMBOL sound/soc/sof/snd-sof 0xddfc5e59 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdf756863 snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe15a6f9d sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdee6070e sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe2ba2efd snd_sof_ipc_stream_posn +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe955e466 snd_sof_trace_notify_for_error EXPORT_SYMBOL sound/soc/sof/snd-sof 0xee70ef40 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf0b0e5a9 snd_sof_ipc_init EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf1874f97 snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf6390bbc sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfdc4647c snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf375a790 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf413c035 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf4b98598 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf97172ff snd_sof_ipc_msgs_rx +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfededc2c snd_sof_release_trace EXPORT_SYMBOL sound/soundcore 0x03182195 register_sound_special EXPORT_SYMBOL sound/soundcore 0x2868ff82 register_sound_special_device EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer @@ -5818,361 +5707,382 @@ EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x9fbabed9 __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 0x000c694f inet_add_offload EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x00293974 vmf_insert_mixed_mkwrite EXPORT_SYMBOL vmlinux 0x003a7a96 h_ipi_redirect -EXPORT_SYMBOL vmlinux 0x0042c041 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x004cc405 finish_open -EXPORT_SYMBOL vmlinux 0x0059dfce dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x0082ff1d remap_pfn_range -EXPORT_SYMBOL vmlinux 0x00877804 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x003da5a1 unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0x009249fe gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x009d8c3d tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x009baa09 vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0x00a72281 of_count_phandle_with_args EXPORT_SYMBOL vmlinux 0x00b4c9f6 input_enable_softrepeat EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00d029a1 dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00e9a5a1 phy_disconnect -EXPORT_SYMBOL vmlinux 0x00f06c64 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x00d8e619 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x00e2aa89 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x00e2c130 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x00f2692a vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0x01000e51 schedule EXPORT_SYMBOL vmlinux 0x010c927a cdev_set_parent +EXPORT_SYMBOL vmlinux 0x011589f6 block_page_mkwrite EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 -EXPORT_SYMBOL vmlinux 0x0132fbf6 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x0137288d flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x0135d13d flow_rule_match_meta 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 0x016285c2 km_policy_notify +EXPORT_SYMBOL vmlinux 0x016709f3 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x01741647 skb_queue_tail EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device EXPORT_SYMBOL vmlinux 0x017c8d6b fwnode_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids EXPORT_SYMBOL vmlinux 0x017ed6f4 mdio_driver_register -EXPORT_SYMBOL vmlinux 0x01848708 mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x01963875 dev_mc_del_global EXPORT_SYMBOL vmlinux 0x01982074 xa_set_mark EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks EXPORT_SYMBOL vmlinux 0x019f32ac zero_fill_bio +EXPORT_SYMBOL vmlinux 0x01a345ee netlink_broadcast_filtered EXPORT_SYMBOL vmlinux 0x01a3bd66 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x01bc007f xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01d1f6f0 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x01cabb9e ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x01d326a4 ppp_unregister_compressor EXPORT_SYMBOL vmlinux 0x01d797a2 agp_unbind_memory EXPORT_SYMBOL vmlinux 0x01e80408 timer_interrupt -EXPORT_SYMBOL vmlinux 0x0207b519 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x01e916f1 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x01f9dc16 __dev_set_mtu EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x020d289b lock_page_memcg EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x02145ab5 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x0218a5aa unregister_shrinker EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo +EXPORT_SYMBOL vmlinux 0x02293ec6 phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0x023dc774 fscrypt_zeroout_range EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user EXPORT_SYMBOL vmlinux 0x024e21fc unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x025c1368 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x0251912b security_old_inode_init_security EXPORT_SYMBOL vmlinux 0x025c1602 __debugger_sstep +EXPORT_SYMBOL vmlinux 0x02619b32 filemap_range_has_page EXPORT_SYMBOL vmlinux 0x026ccd74 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x026eb285 neigh_seq_start EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027d71f7 vfs_fadvise EXPORT_SYMBOL vmlinux 0x02871fa9 pci_pme_active +EXPORT_SYMBOL vmlinux 0x028c6385 do_splice_direct EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate EXPORT_SYMBOL vmlinux 0x029fcfb3 abort_creds -EXPORT_SYMBOL vmlinux 0x02a28a3e __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x02ac38cd skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0x02af6379 param_array_ops EXPORT_SYMBOL vmlinux 0x02b3a92d try_wait_for_completion EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer EXPORT_SYMBOL vmlinux 0x02b8df46 of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0x02bd575d set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x02be0ea5 phy_driver_unregister EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02c3af68 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x02c08329 inet_recvmsg EXPORT_SYMBOL vmlinux 0x02c3c40e __debugger_break_match -EXPORT_SYMBOL vmlinux 0x02d45a83 sock_common_getsockopt EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies EXPORT_SYMBOL vmlinux 0x02e57cbd kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x03013bf2 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x0317909f generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x032123aa security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x02f0a214 vme_slot_num +EXPORT_SYMBOL vmlinux 0x02f442e7 tcp_disconnect EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0343a1f1 vme_slot_num EXPORT_SYMBOL vmlinux 0x034fa5e6 config_item_set_name EXPORT_SYMBOL vmlinux 0x03576ccd mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x0359ad94 blk_queue_flag_set EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x03634db8 pcim_iomap EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036bc19f reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x03788d84 filp_open EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x03840576 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x0388bdda i2c_verify_client EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03a1c52b register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x03acf1e1 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x03b24d3e ethtool_op_get_link EXPORT_SYMBOL vmlinux 0x03b3e9c5 dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0x03c52554 netif_device_detach -EXPORT_SYMBOL vmlinux 0x03c7d268 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x03d64e02 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0x03d7e419 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x03cd2c64 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x03cd396b dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x03d9f906 tcp_seq_stop EXPORT_SYMBOL vmlinux 0x03deae67 con_is_bound EXPORT_SYMBOL vmlinux 0x03f2814b pci_dev_driver EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram EXPORT_SYMBOL vmlinux 0x04169267 notify_change -EXPORT_SYMBOL vmlinux 0x0419dcd3 unix_get_socket -EXPORT_SYMBOL vmlinux 0x04234764 jbd2_journal_extend EXPORT_SYMBOL vmlinux 0x0427ae02 proc_create_data EXPORT_SYMBOL vmlinux 0x0447747c page_pool_release_page EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x044d69ef netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x044f911d sock_release EXPORT_SYMBOL vmlinux 0x045b58b7 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x046c18bf __scsi_add_device +EXPORT_SYMBOL vmlinux 0x0472ce6c xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x04888c9a vio_get_attribute EXPORT_SYMBOL vmlinux 0x0489ab0c _raw_read_lock_irq EXPORT_SYMBOL vmlinux 0x049ddca7 iov_iter_discard -EXPORT_SYMBOL vmlinux 0x04aeb1ac kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x04c2cef4 udp_poll +EXPORT_SYMBOL vmlinux 0x04a1b189 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x04ab3180 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x04be309d udp_seq_next EXPORT_SYMBOL vmlinux 0x04d55422 dquot_file_open EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits EXPORT_SYMBOL vmlinux 0x04ddcb11 padata_do_parallel EXPORT_SYMBOL vmlinux 0x04e1b263 ns_capable_setid EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04ece70c jbd2_journal_forget EXPORT_SYMBOL vmlinux 0x04f158be cpu_sibling_map EXPORT_SYMBOL vmlinux 0x04f4c688 dqget EXPORT_SYMBOL vmlinux 0x04f6371f cdev_add -EXPORT_SYMBOL vmlinux 0x050cb39a dentry_open -EXPORT_SYMBOL vmlinux 0x0513299a scsi_block_requests +EXPORT_SYMBOL vmlinux 0x04fba2ca dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0528dfc3 __vfs_setxattr EXPORT_SYMBOL vmlinux 0x05398740 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x053c11d7 vfs_mkdir EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x0573bbc7 xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x05843809 csum_and_copy_from_iter EXPORT_SYMBOL vmlinux 0x058ed4cc iunique -EXPORT_SYMBOL vmlinux 0x05af5907 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x0597535f devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x059a1f91 tso_start EXPORT_SYMBOL vmlinux 0x05b5f651 d_find_alias EXPORT_SYMBOL vmlinux 0x05bdd59f __serio_register_port +EXPORT_SYMBOL vmlinux 0x05d7072e netdev_emerg EXPORT_SYMBOL vmlinux 0x05df5aaa input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x05eda7e0 dev_queue_xmit_accel EXPORT_SYMBOL vmlinux 0x05f56bb1 pci_request_region -EXPORT_SYMBOL vmlinux 0x060345ff i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0x0603c57b jbd2_journal_start_reserved EXPORT_SYMBOL vmlinux 0x06093a08 dma_fence_signal_timestamp_locked EXPORT_SYMBOL vmlinux 0x061651be strcat EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x06343072 napi_complete_done -EXPORT_SYMBOL vmlinux 0x063a4d91 inet6_release +EXPORT_SYMBOL vmlinux 0x0639aa28 xfrm4_rcv EXPORT_SYMBOL vmlinux 0x063fbb83 ns_capable EXPORT_SYMBOL vmlinux 0x0640da1e mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x0645670a ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x0647aae4 inode_add_bytes EXPORT_SYMBOL vmlinux 0x065df878 d_move EXPORT_SYMBOL vmlinux 0x06678e88 param_set_bool EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul EXPORT_SYMBOL vmlinux 0x066c6279 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x06772cd9 phy_trigger_machine -EXPORT_SYMBOL vmlinux 0x06881540 dev_uc_init -EXPORT_SYMBOL vmlinux 0x068fd3d4 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x06910d0a fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x069b3be7 netdev_change_features +EXPORT_SYMBOL vmlinux 0x0679f73c __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x068edc3f nf_hook_slow +EXPORT_SYMBOL vmlinux 0x0693e747 fiemap_prep +EXPORT_SYMBOL vmlinux 0x0699feb4 xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 -EXPORT_SYMBOL vmlinux 0x06bb68c3 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x06aba426 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x06c2236d of_node_put -EXPORT_SYMBOL vmlinux 0x06c8523c pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x06c7832a icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x06cd65aa security_dentry_init_security EXPORT_SYMBOL vmlinux 0x06d34ed8 seq_bprintf EXPORT_SYMBOL vmlinux 0x06ef3f65 input_mt_report_finger_count EXPORT_SYMBOL vmlinux 0x06f677c3 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0x06fb9224 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x071ae5a6 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0x071f9345 tcp_getsockopt EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw EXPORT_SYMBOL vmlinux 0x072fa3fb dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x0736e8ed dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x0737be08 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x074378bc vme_bus_type +EXPORT_SYMBOL vmlinux 0x07461b7a gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0x074f301a bdi_register +EXPORT_SYMBOL vmlinux 0x0756a219 tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0x075eb2a8 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x077ec73a phy_attach +EXPORT_SYMBOL vmlinux 0x077fee6a inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x078ab4cc mdiobus_is_registered_device EXPORT_SYMBOL vmlinux 0x07a23ba2 wait_for_key_construction EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap EXPORT_SYMBOL vmlinux 0x07a9d977 rdmacg_uncharge EXPORT_SYMBOL vmlinux 0x07abddab blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x07b0efc9 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x07c54016 neigh_app_ns EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit EXPORT_SYMBOL vmlinux 0x07db43ae redraw_screen EXPORT_SYMBOL vmlinux 0x07dee121 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x07e69dfd security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x07e5accd unregister_filesystem +EXPORT_SYMBOL vmlinux 0x07e9cf87 scsi_device_set_state EXPORT_SYMBOL vmlinux 0x07e9d0c9 md_reload_sb 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 0x08249512 iwe_stream_add_point EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x082efd65 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x083015d2 security_tun_dev_attach EXPORT_SYMBOL vmlinux 0x0830e985 scsi_scan_target EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x08459e85 put_devmap_managed_page +EXPORT_SYMBOL vmlinux 0x084fcbd7 i2c_clients_command EXPORT_SYMBOL vmlinux 0x0869cadd simple_rename +EXPORT_SYMBOL vmlinux 0x087f4a95 tcf_action_exec EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x089dba4d reuseport_alloc -EXPORT_SYMBOL vmlinux 0x08a7d193 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x08972052 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x089b33ee __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x08b868a4 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x08c92715 xp_set_rxq_info EXPORT_SYMBOL vmlinux 0x08cc35e5 dma_map_resource -EXPORT_SYMBOL vmlinux 0x08cc37df unlock_buffer -EXPORT_SYMBOL vmlinux 0x08d8138c i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x08e78577 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x08fbb6a4 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x08fffd19 inet_addr_type +EXPORT_SYMBOL vmlinux 0x09012efa devfreq_remove_device EXPORT_SYMBOL vmlinux 0x091b19a1 vio_cmo_set_dev_desired -EXPORT_SYMBOL vmlinux 0x0926af5d inet6_protos -EXPORT_SYMBOL vmlinux 0x09327695 skb_put -EXPORT_SYMBOL vmlinux 0x0936d6c0 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x092ecede mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0x0938c124 pci_bus_read_config_word EXPORT_SYMBOL vmlinux 0x093fd701 pci_clear_master -EXPORT_SYMBOL vmlinux 0x094c3a89 free_task EXPORT_SYMBOL vmlinux 0x096a7e99 mutex_lock -EXPORT_SYMBOL vmlinux 0x096bc440 dev_get_phys_port_name EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098e98f6 security_d_instantiate EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e4b838 xp_can_alloc +EXPORT_SYMBOL vmlinux 0x09f6fcbe ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x09f75753 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x09fe8591 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x09feb66a sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch EXPORT_SYMBOL vmlinux 0x0a079994 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x0a128073 inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key EXPORT_SYMBOL vmlinux 0x0a23f7c1 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x0a28a06d __napi_alloc_skb EXPORT_SYMBOL vmlinux 0x0a368a47 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x0a3a5fdd i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x0a46ee66 security_path_mknod -EXPORT_SYMBOL vmlinux 0x0a48bf64 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x0a3ee33e phy_device_free +EXPORT_SYMBOL vmlinux 0x0a5d261f vfs_readlink EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a8a4a22 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x0a83944a dst_alloc EXPORT_SYMBOL vmlinux 0x0a917864 dma_async_tx_descriptor_init EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa70de4 __block_write_begin EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0aae4425 block_commit_write +EXPORT_SYMBOL vmlinux 0x0aad9db4 xfrm_state_free EXPORT_SYMBOL vmlinux 0x0ab230e9 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x0ab2345d __netif_schedule EXPORT_SYMBOL vmlinux 0x0ab5e00b blk_pre_runtime_suspend EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all EXPORT_SYMBOL vmlinux 0x0ad0986b __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x0ad8cad6 fget_raw -EXPORT_SYMBOL vmlinux 0x0ad927f9 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x0ad4f48b dev_loopback_xmit EXPORT_SYMBOL vmlinux 0x0ae9eecb simple_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x0aeb077b pci_disable_device -EXPORT_SYMBOL vmlinux 0x0b0ffd23 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x0af02595 sock_init_data_uid EXPORT_SYMBOL vmlinux 0x0b14b1f5 tty_port_close_start EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b1d810f __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x0b248d09 scsi_host_put +EXPORT_SYMBOL vmlinux 0x0b25f064 inet_dev_addr_type EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp -EXPORT_SYMBOL vmlinux 0x0b3c09ff ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x0b396759 eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0x0b3fef42 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x0b5838ea skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x0b41321e rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x0b56c358 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x0b642a65 send_sig_info EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol EXPORT_SYMBOL vmlinux 0x0b74a2e5 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x0b74b603 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x0b75d95c xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x0b7d5086 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x0b835a50 phy_validate_pause EXPORT_SYMBOL vmlinux 0x0b8a6338 neigh_proc_dointvec_jiffies EXPORT_SYMBOL vmlinux 0x0b8aa6a2 proc_create_mount_point EXPORT_SYMBOL vmlinux 0x0b9645d3 inode_needs_sync EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0bb7c50b vfs_setpos +EXPORT_SYMBOL vmlinux 0x0bbb4fc0 devfreq_update_target EXPORT_SYMBOL vmlinux 0x0bbc75c1 ppc_md +EXPORT_SYMBOL vmlinux 0x0bc1f2e1 vm_map_pages_zero EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bcaf99d xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x0bc4e780 register_filesystem +EXPORT_SYMBOL vmlinux 0x0bd326dd register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x0be46156 tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0x0be7d42b phy_write_paged +EXPORT_SYMBOL vmlinux 0x0be900b4 sock_kfree_s EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x0bf36885 do_wait_intr -EXPORT_SYMBOL vmlinux 0x0bf64c8c seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x0bf94a6e mmc_retune_release +EXPORT_SYMBOL vmlinux 0x0bf55d74 dev_remove_offload EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -EXPORT_SYMBOL vmlinux 0x0c03433a _dev_warn EXPORT_SYMBOL vmlinux 0x0c0aa4d6 seq_escape_mem -EXPORT_SYMBOL vmlinux 0x0c0bf972 ndo_dflt_fdb_dump EXPORT_SYMBOL vmlinux 0x0c0c3311 backlight_device_unregister EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame EXPORT_SYMBOL vmlinux 0x0c1705fd kthread_create_on_cpu -EXPORT_SYMBOL vmlinux 0x0c19c94c udp6_csum_init -EXPORT_SYMBOL vmlinux 0x0c1a70dc pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x0c18adfd security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x0c218fac genphy_read_lpa EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c25ee7f ipmi_platform_add EXPORT_SYMBOL vmlinux 0x0c2b687a fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x0c51f8d3 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x0c36ba8e dev_open +EXPORT_SYMBOL vmlinux 0x0c40d6b9 nonseekable_open +EXPORT_SYMBOL vmlinux 0x0c50814e skb_copy_expand +EXPORT_SYMBOL vmlinux 0x0c5d540d flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read EXPORT_SYMBOL vmlinux 0x0c770823 get_vm_area -EXPORT_SYMBOL vmlinux 0x0c8473af iterate_dir +EXPORT_SYMBOL vmlinux 0x0c7ac048 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x0c7b928a devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x0c873798 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0x0c8ad669 param_ops_invbool EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x0cb12092 xa_destroy EXPORT_SYMBOL vmlinux 0x0cb26c08 set_nlink -EXPORT_SYMBOL vmlinux 0x0cbb2f2e mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x0cc1358e nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x0cb86059 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x0cb94779 inet_stream_ops EXPORT_SYMBOL vmlinux 0x0cc2a732 max8925_reg_read EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0ccabf8a inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x0cccd855 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x0ccbf02b phy_resume EXPORT_SYMBOL vmlinux 0x0ccead9a devm_ioport_unmap EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive EXPORT_SYMBOL vmlinux 0x0cd8c61f generic_update_time EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason EXPORT_SYMBOL vmlinux 0x0cdf0374 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x0cf4fcc4 inet6_getname +EXPORT_SYMBOL vmlinux 0x0ce468b6 giveup_altivec EXPORT_SYMBOL vmlinux 0x0cf98ca0 __xa_alloc EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev EXPORT_SYMBOL vmlinux 0x0d0a5789 _raw_write_unlock_irqrestore EXPORT_SYMBOL vmlinux 0x0d0d4a38 __tty_alloc_driver EXPORT_SYMBOL vmlinux 0x0d215ac2 input_grab_device +EXPORT_SYMBOL vmlinux 0x0d247e36 security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0x0d26f5f5 simple_pin_fs EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock EXPORT_SYMBOL vmlinux 0x0d3ad57f fuse_dequeue_forget EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type EXPORT_SYMBOL vmlinux 0x0d5ab55d uart_remove_one_port EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d6b0306 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x0d655125 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x0d695a5f vfs_rename EXPORT_SYMBOL vmlinux 0x0d6ded29 dma_free_attrs -EXPORT_SYMBOL vmlinux 0x0d71ade7 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x0dce6a56 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x0dddbcc9 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x0de880d4 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x0d89364e devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x0d910f20 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x0dbdfce8 kfree_skb_partial EXPORT_SYMBOL vmlinux 0x0ded534d fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0x0df0df28 skb_queue_purge EXPORT_SYMBOL vmlinux 0x0df8023f dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x0e0af30e fasync_helper EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e185772 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x0e1cdb6c __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x0e1e943d sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x0e2b7e8e shrink_dcache_parent EXPORT_SYMBOL vmlinux 0x0e3b7390 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x0e4003d8 tc_setup_cb_add EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e664b37 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x0e6813cd sock_no_getname EXPORT_SYMBOL vmlinux 0x0e711ff8 kill_block_super EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor -EXPORT_SYMBOL vmlinux 0x0e7eb087 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x0e766f9e neigh_seq_next +EXPORT_SYMBOL vmlinux 0x0e8b3764 key_type_keyring +EXPORT_SYMBOL vmlinux 0x0e91cc07 ppp_register_channel EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eaf8852 xfrm_state_update EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ebd7730 vif_device_init EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free EXPORT_SYMBOL vmlinux 0x0ece5747 page_mapping -EXPORT_SYMBOL vmlinux 0x0ed0e9b7 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x0efa155d eth_type_trans +EXPORT_SYMBOL vmlinux 0x0ee820cf xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x0eeca845 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x0f0151c8 tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0x0f0536c0 param_get_byte +EXPORT_SYMBOL vmlinux 0x0f06b585 devm_mfd_add_devices EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable EXPORT_SYMBOL vmlinux 0x0f169283 fsl_lbc_ctrl_dev EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f32443a __traceiter_module_get -EXPORT_SYMBOL vmlinux 0x0f573c50 sk_common_release EXPORT_SYMBOL vmlinux 0x0f5f37a4 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x0f6c9a95 eth_gro_complete EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn EXPORT_SYMBOL vmlinux 0x0f89ce1c dma_fence_signal_locked EXPORT_SYMBOL vmlinux 0x0f8eeffd con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x0f9ef6d9 kern_path EXPORT_SYMBOL vmlinux 0x0f9f038f iov_iter_npages -EXPORT_SYMBOL vmlinux 0x0fa32b8c iter_file_splice_write EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fc46c94 xfrm_lookup EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fedf263 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x0ff98d04 phy_drivers_unregister EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x10018e01 inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x1053aef4 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x103fbae8 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x10533894 security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0x1057a279 bsearch EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x106d6b7c ip_output +EXPORT_SYMBOL vmlinux 0x106e029d tcp_setsockopt EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd EXPORT_SYMBOL vmlinux 0x107fdde7 sg_alloc_append_table_from_pages EXPORT_SYMBOL vmlinux 0x10802ded dcache_dir_open @@ -6180,296 +6090,307 @@ EXPORT_SYMBOL vmlinux 0x10b221af pci_disable_ptm EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find EXPORT_SYMBOL vmlinux 0x10e0f124 __pud_index_size +EXPORT_SYMBOL vmlinux 0x10e0f733 tcp_md5_do_add EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range EXPORT_SYMBOL vmlinux 0x10e76419 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x10ec88e9 no_llseek +EXPORT_SYMBOL vmlinux 0x10ed0367 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x10f133f4 udp_disconnect EXPORT_SYMBOL vmlinux 0x11018ef5 rproc_coredump_add_custom_segment EXPORT_SYMBOL vmlinux 0x11077989 unpin_user_page_range_dirty_lock EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype EXPORT_SYMBOL vmlinux 0x110bc5e2 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x1110d572 __skb_vlan_pop EXPORT_SYMBOL vmlinux 0x111b40ac kset_register EXPORT_SYMBOL vmlinux 0x111fa7c9 qe_pin_set_dedicated EXPORT_SYMBOL vmlinux 0x11344473 padata_do_serial +EXPORT_SYMBOL vmlinux 0x113773ae nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x113df3ce generic_fadvise +EXPORT_SYMBOL vmlinux 0x11471e09 dump_page EXPORT_SYMBOL vmlinux 0x114bdf16 simple_unlink EXPORT_SYMBOL vmlinux 0x116627c9 ioremap_prot -EXPORT_SYMBOL vmlinux 0x116920bc neigh_seq_next +EXPORT_SYMBOL vmlinux 0x1169f792 proto_register EXPORT_SYMBOL vmlinux 0x116bd1f6 of_find_i2c_device_by_node EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11803c72 path_put EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable -EXPORT_SYMBOL vmlinux 0x1183d135 netif_rx_any_context -EXPORT_SYMBOL vmlinux 0x1184c34f tcp_check_req -EXPORT_SYMBOL vmlinux 0x11885b96 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x1194c9df __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x1195b1e6 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x119ee72f vme_irq_request +EXPORT_SYMBOL vmlinux 0x118ae4d4 __dst_destroy_metrics_generic EXPORT_SYMBOL vmlinux 0x11a12d07 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x11c20989 pcibus_to_node EXPORT_SYMBOL vmlinux 0x11cd1747 pagecache_isize_extended EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x11df3f38 tcp_select_initial_window EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11e65b66 twl6040_power -EXPORT_SYMBOL vmlinux 0x11e7b7ad kern_unmount +EXPORT_SYMBOL vmlinux 0x11e7331d neigh_parms_alloc EXPORT_SYMBOL vmlinux 0x11f067b4 kmem_cache_alloc_node_trace EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp EXPORT_SYMBOL vmlinux 0x11fbe9e3 pci_fixup_device EXPORT_SYMBOL vmlinux 0x11fc86bb ucc_of_parse_tdm EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx -EXPORT_SYMBOL vmlinux 0x12061ef6 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x12066c5e path_get EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented EXPORT_SYMBOL vmlinux 0x120bbb65 inc_node_state EXPORT_SYMBOL vmlinux 0x121894ff pcim_pin_device -EXPORT_SYMBOL vmlinux 0x121a5773 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x1234e82b try_to_release_page -EXPORT_SYMBOL vmlinux 0x1241bf52 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x122a64f2 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x12476bea set_create_files_as EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x1250c752 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x12540562 skb_copy +EXPORT_SYMBOL vmlinux 0x125be6bf default_llseek +EXPORT_SYMBOL vmlinux 0x125ee828 iptun_encaps EXPORT_SYMBOL vmlinux 0x12675755 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x127418dc sock_no_listen EXPORT_SYMBOL vmlinux 0x127fd675 nd_device_register -EXPORT_SYMBOL vmlinux 0x1281b86d generic_file_open +EXPORT_SYMBOL vmlinux 0x1280a7d4 xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0x1282998d md_bitmap_start_sync EXPORT_SYMBOL vmlinux 0x12914d8b rproc_detach EXPORT_SYMBOL vmlinux 0x12ad2399 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x12af9fac file_path EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12d15e1d __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x12d51309 xfrm4_protocol_register EXPORT_SYMBOL vmlinux 0x12dab932 fs_param_is_string -EXPORT_SYMBOL vmlinux 0x12dc714d buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x12dfdec8 genl_register_family -EXPORT_SYMBOL vmlinux 0x12e4522c register_shrinker EXPORT_SYMBOL vmlinux 0x12e47839 scsi_rescan_device EXPORT_SYMBOL vmlinux 0x12e54cfc mipi_dsi_picture_parameter_set EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level EXPORT_SYMBOL vmlinux 0x12e82f59 dput -EXPORT_SYMBOL vmlinux 0x12efc204 skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var EXPORT_SYMBOL vmlinux 0x12f72392 mipi_dsi_dcs_get_display_brightness EXPORT_SYMBOL vmlinux 0x13054726 dma_find_channel EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x13198e49 send_sig EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data EXPORT_SYMBOL vmlinux 0x133eed38 gen_pool_dma_zalloc_algo EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x1355a0a8 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x135b1295 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x13862fff __page_cache_alloc EXPORT_SYMBOL vmlinux 0x1388daef get_thermal_instance EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13a7974a sk_free EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x13d01072 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x13cf7a7b open_exec EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d4a384 nf_ip_checksum EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x13e1b2d5 current_stack_frame EXPORT_SYMBOL vmlinux 0x13e4239b nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x13e47cee generic_write_end -EXPORT_SYMBOL vmlinux 0x13f384ec skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x13efd77f vfs_parse_fs_param_source EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize -EXPORT_SYMBOL vmlinux 0x1423cba6 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x1410fb10 netif_skb_features +EXPORT_SYMBOL vmlinux 0x1414b356 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x1434c114 dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x14384d3c scsi_remove_host EXPORT_SYMBOL vmlinux 0x1439a71f md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x143b8c9a add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x143e0335 scsi_alloc_sgtables EXPORT_SYMBOL vmlinux 0x14437154 pcie_set_readrq EXPORT_SYMBOL vmlinux 0x145a625f blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x147d8a6b __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0x147e0857 gen_pool_dma_alloc_algo EXPORT_SYMBOL vmlinux 0x14a2b413 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x14b5125e put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x14c077d7 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x14c5cb72 sk_error_report EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14c90b93 phy_attached_info_irq EXPORT_SYMBOL vmlinux 0x14ced76e nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x14cf457f xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x14d1a0c7 tcp_hashinfo EXPORT_SYMBOL vmlinux 0x14d77fd8 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x14eb6fa0 mmc_of_parse -EXPORT_SYMBOL vmlinux 0x14fbca0c flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x14fbd8cc ppp_dev_name EXPORT_SYMBOL vmlinux 0x14fc44e0 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x1506b174 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x15002e75 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x15073711 sk_wait_data EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x152efc01 netdev_info -EXPORT_SYMBOL vmlinux 0x15339d27 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x154fa489 inet_add_protocol EXPORT_SYMBOL vmlinux 0x15530cf3 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x155a9678 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x1568604b flow_rule_match_control EXPORT_SYMBOL vmlinux 0x156c4dc7 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x15820ff6 dump_emit +EXPORT_SYMBOL vmlinux 0x15723743 udp_ioctl +EXPORT_SYMBOL vmlinux 0x15793aab dev_get_stats +EXPORT_SYMBOL vmlinux 0x158701fb phy_set_sym_pause EXPORT_SYMBOL vmlinux 0x15932e16 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x15a94fdd posix_lock_file +EXPORT_SYMBOL vmlinux 0x15b54a5c dev_set_alias EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c8890d dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x15cdb16f unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x15d271d6 tcf_action_update_stats EXPORT_SYMBOL vmlinux 0x15ec9947 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x15f5d184 posix_test_lock +EXPORT_SYMBOL vmlinux 0x15f6eba7 locks_delete_block EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init EXPORT_SYMBOL vmlinux 0x15fe2cb7 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x16010fb4 dev_get_by_name -EXPORT_SYMBOL vmlinux 0x16089020 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x15fe7df5 iterate_dir +EXPORT_SYMBOL vmlinux 0x1607f5d0 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x16087e26 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token -EXPORT_SYMBOL vmlinux 0x1616bf9d scsi_print_sense +EXPORT_SYMBOL vmlinux 0x161433d5 inet_listen +EXPORT_SYMBOL vmlinux 0x16148f44 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x161ec940 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x161fce2e wireless_spy_update EXPORT_SYMBOL vmlinux 0x1620b68c pci_find_resource +EXPORT_SYMBOL vmlinux 0x16216ef5 skb_clone EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x163005b5 generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const EXPORT_SYMBOL vmlinux 0x163b9833 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x163fd291 phy_device_register EXPORT_SYMBOL vmlinux 0x164ff3c7 cdev_alloc -EXPORT_SYMBOL vmlinux 0x165f06af vme_register_driver +EXPORT_SYMBOL vmlinux 0x1659aa1b km_state_expired EXPORT_SYMBOL vmlinux 0x167997bf mipi_dsi_host_register EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x168fdd7e vme_register_bridge EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string EXPORT_SYMBOL vmlinux 0x169e936b fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x169fa25f mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x16a325fd migrate_page_move_mapping EXPORT_SYMBOL vmlinux 0x16ae7425 pci_bus_write_config_byte EXPORT_SYMBOL vmlinux 0x16b1beec hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x16bcddf0 user_path_create +EXPORT_SYMBOL vmlinux 0x16b669e9 may_umount_tree EXPORT_SYMBOL vmlinux 0x16c8615b freeze_super EXPORT_SYMBOL vmlinux 0x16d8b043 lock_two_nondirectories EXPORT_SYMBOL vmlinux 0x16dbf2e8 register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x16dd6c18 mmc_get_card EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait EXPORT_SYMBOL vmlinux 0x16e338c0 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x16f8f6a4 phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0x16fe1f0f input_set_timestamp -EXPORT_SYMBOL vmlinux 0x17324029 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x173b3d66 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x17015082 tcp_seq_next EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock -EXPORT_SYMBOL vmlinux 0x177542f4 mmc_command_done +EXPORT_SYMBOL vmlinux 0x177fbb31 can_nice EXPORT_SYMBOL vmlinux 0x178347a3 seq_file_path EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x178d16af udp_prot -EXPORT_SYMBOL vmlinux 0x17932b42 _dev_info -EXPORT_SYMBOL vmlinux 0x179bfbc0 neigh_destroy -EXPORT_SYMBOL vmlinux 0x17a1ecc3 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x17aa3084 icmp_ndo_send -EXPORT_SYMBOL vmlinux 0x17b55656 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x17c875ea poll_freewait -EXPORT_SYMBOL vmlinux 0x17ea24b5 scsi_device_get +EXPORT_SYMBOL vmlinux 0x17bcfe6b generic_file_splice_read EXPORT_SYMBOL vmlinux 0x17eadb79 param_get_short EXPORT_SYMBOL vmlinux 0x17ef3544 swake_up_one EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip EXPORT_SYMBOL vmlinux 0x17fc38b6 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x1801ffe2 mmc_release_host EXPORT_SYMBOL vmlinux 0x180d8258 __d_drop -EXPORT_SYMBOL vmlinux 0x181daf0f phy_detach +EXPORT_SYMBOL vmlinux 0x1811ac64 do_clone_file_range EXPORT_SYMBOL vmlinux 0x1820af4f kmem_cache_free_bulk EXPORT_SYMBOL vmlinux 0x18255c0d __init_rwsem EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace EXPORT_SYMBOL vmlinux 0x1840cab7 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x1855e6f7 sk_wait_data -EXPORT_SYMBOL vmlinux 0x185bfe5a scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x186cea81 load_nls EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free EXPORT_SYMBOL vmlinux 0x187df1f5 irq_set_chip +EXPORT_SYMBOL vmlinux 0x188cdc40 netif_rx_any_context EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189abec1 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x18a03337 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x189c4400 jbd2_journal_revoke EXPORT_SYMBOL vmlinux 0x18b17ab3 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x18b57476 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x18b68210 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x18bc81f1 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x18c5ea81 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x18d755ef sock_alloc_file +EXPORT_SYMBOL vmlinux 0x18c6a029 mdiobus_read +EXPORT_SYMBOL vmlinux 0x18c6ff92 filp_close +EXPORT_SYMBOL vmlinux 0x18d1bdb0 invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x1922565c of_device_alloc -EXPORT_SYMBOL vmlinux 0x1930ba20 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x193844fe mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x1944a87d __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x1906f22d mdio_find_bus +EXPORT_SYMBOL vmlinux 0x1935dd2d xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x194078aa path_is_mountpoint EXPORT_SYMBOL vmlinux 0x194a4b67 param_set_copystring EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL vmlinux 0x1957220f phy_ethtool_get_wol EXPORT_SYMBOL vmlinux 0x195a579c tty_hangup +EXPORT_SYMBOL vmlinux 0x195b621c xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0x19654a5e deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x19669e5c udp_read_sock EXPORT_SYMBOL vmlinux 0x196a5a99 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x197cf1b4 tcp_sock_set_keepidle EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x198b986c vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x199cda17 security_unix_may_send EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a27b1b inet_ioctl EXPORT_SYMBOL vmlinux 0x19b16b34 up_read +EXPORT_SYMBOL vmlinux 0x19bb30f0 netif_set_real_num_rx_queues EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c8fe30 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x19c8725c pagevec_lookup_range_tag EXPORT_SYMBOL vmlinux 0x19d68628 xa_get_mark -EXPORT_SYMBOL vmlinux 0x19dfa9f2 ip_options_compile -EXPORT_SYMBOL vmlinux 0x19f5c39f vfs_fileattr_get -EXPORT_SYMBOL vmlinux 0x1a0b674e skb_append +EXPORT_SYMBOL vmlinux 0x19e64e79 read_cache_page +EXPORT_SYMBOL vmlinux 0x1a016b1f phy_driver_register +EXPORT_SYMBOL vmlinux 0x1a02fbb7 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x1a0e2d04 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x1a170192 mmc_start_request EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx +EXPORT_SYMBOL vmlinux 0x1a2fb3a1 free_netdev EXPORT_SYMBOL vmlinux 0x1a412a76 nd_device_unregister -EXPORT_SYMBOL vmlinux 0x1a424055 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x1a6b1b38 dev_get_by_index EXPORT_SYMBOL vmlinux 0x1a9205b8 of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x1a95fcd1 scsi_device_resume EXPORT_SYMBOL vmlinux 0x1a9a21ec md_error EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state EXPORT_SYMBOL vmlinux 0x1aa2b3f1 tlbie_capable -EXPORT_SYMBOL vmlinux 0x1aa9a39b inet_frags_init EXPORT_SYMBOL vmlinux 0x1aa9fba0 vfio_dma_rw -EXPORT_SYMBOL vmlinux 0x1aafd3e8 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x1abe0ee8 __mdiobus_read EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ae8056a mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x1acf1e32 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x1ae3ff97 clear_page_dirty_for_io EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list EXPORT_SYMBOL vmlinux 0x1afdc244 mutex_trylock EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist EXPORT_SYMBOL vmlinux 0x1b0c8d63 __quota_error EXPORT_SYMBOL vmlinux 0x1b0e9510 input_allocate_device EXPORT_SYMBOL vmlinux 0x1b127d01 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x1b1ba450 dev_get_iflink EXPORT_SYMBOL vmlinux 0x1b3dd4e6 pci_set_master -EXPORT_SYMBOL vmlinux 0x1b48e47d kmalloc_caches +EXPORT_SYMBOL vmlinux 0x1b3df0ae dev_change_flags EXPORT_SYMBOL vmlinux 0x1b4f2573 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x1b5c4125 __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0x1b61feda simple_setattr EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device EXPORT_SYMBOL vmlinux 0x1b863e2f pci_map_rom +EXPORT_SYMBOL vmlinux 0x1b8a89c4 ip6mr_rule_default EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1b96b2c9 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x1b98d72a dst_discard_out -EXPORT_SYMBOL vmlinux 0x1b9f8c88 __i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x1b9fa55a nd_btt_arena_is_valid EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node EXPORT_SYMBOL vmlinux 0x1baae9d6 dma_fence_init -EXPORT_SYMBOL vmlinux 0x1bb17d57 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x1bb318f2 sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bc924ed tcp_req_err +EXPORT_SYMBOL vmlinux 0x1bc33fa0 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x1bcc304a __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x1bceab75 lock_rename EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bea80b4 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x1bf43c5d skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0x1bf5a72e fs_lookup_param -EXPORT_SYMBOL vmlinux 0x1bf7e7d6 __scsi_execute -EXPORT_SYMBOL vmlinux 0x1bfae431 open_with_fake_path -EXPORT_SYMBOL vmlinux 0x1c1109d1 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x1c1c2e6f vfs_mkobj -EXPORT_SYMBOL vmlinux 0x1c1c6e3e __ip_options_compile +EXPORT_SYMBOL vmlinux 0x1c12f0b5 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x1c20f5f3 pagecache_write_end EXPORT_SYMBOL vmlinux 0x1c2d562a vio_disable_interrupts +EXPORT_SYMBOL vmlinux 0x1c2e058d init_task +EXPORT_SYMBOL vmlinux 0x1c353567 xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x1c36fa97 proc_dointvec_userhz_jiffies EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp +EXPORT_SYMBOL vmlinux 0x1c414893 tcp_sock_set_quickack EXPORT_SYMBOL vmlinux 0x1c457731 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x1c53a532 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x1c46aec8 copy_string_kernel +EXPORT_SYMBOL vmlinux 0x1c4f29bf ata_print_version EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s EXPORT_SYMBOL vmlinux 0x1c6cf07e __cleancache_init_fs EXPORT_SYMBOL vmlinux 0x1c7cfdb1 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x1c9b240b kernel_sock_shutdown EXPORT_SYMBOL vmlinux 0x1ca1b1be radix_tree_delete -EXPORT_SYMBOL vmlinux 0x1ca30b4c skb_copy EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1ccab462 scsi_print_command EXPORT_SYMBOL vmlinux 0x1cde0a51 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x1cdf830e mmc_erase_group_aligned EXPORT_SYMBOL vmlinux 0x1ce15d0a __irq_regs EXPORT_SYMBOL vmlinux 0x1ce5689e srp_rport_put +EXPORT_SYMBOL vmlinux 0x1ce7e0ac eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0x1ce9b425 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x1cecaa76 dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0x1cecc26b pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x1d044323 generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d0c347f skb_trim EXPORT_SYMBOL vmlinux 0x1d25c94f fb_blank EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested EXPORT_SYMBOL vmlinux 0x1d3a0517 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x1d40d2cb i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x1d4563cf user_path_at_empty +EXPORT_SYMBOL vmlinux 0x1d4bcafb generic_ro_fops EXPORT_SYMBOL vmlinux 0x1d58c6c8 d_alloc_anon +EXPORT_SYMBOL vmlinux 0x1d599705 netdev_printk EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree EXPORT_SYMBOL vmlinux 0x1d669a8b __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x1d6a5671 neigh_ifdown EXPORT_SYMBOL vmlinux 0x1d6c8f63 igrab -EXPORT_SYMBOL vmlinux 0x1d6d8010 setup_arg_pages -EXPORT_SYMBOL vmlinux 0x1d838a5d jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x1d6fd510 genphy_setup_forced EXPORT_SYMBOL vmlinux 0x1d8edd01 dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x1da6693c tcp_ioctl EXPORT_SYMBOL vmlinux 0x1dc2bcdb __register_chrdev EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap EXPORT_SYMBOL vmlinux 0x1dd8d39b set_posix_acl +EXPORT_SYMBOL vmlinux 0x1ddeae62 splice_direct_to_actor EXPORT_SYMBOL vmlinux 0x1de3b390 cfb_imageblit EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr EXPORT_SYMBOL vmlinux 0x1dfddab3 __bswapdi2 @@ -6477,179 +6398,180 @@ EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending EXPORT_SYMBOL vmlinux 0x1e182467 devm_extcon_unregister_notifier EXPORT_SYMBOL vmlinux 0x1e1992cc __memset64 EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e208c38 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x1e30f4cc block_write_full_page +EXPORT_SYMBOL vmlinux 0x1e4537ef tcp_getsockopt EXPORT_SYMBOL vmlinux 0x1e464f6a elv_rb_former_request EXPORT_SYMBOL vmlinux 0x1e5ec453 param_get_invbool +EXPORT_SYMBOL vmlinux 0x1e6942c2 scsi_change_queue_depth EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e7a19ce nosteal_pipe_buf_ops EXPORT_SYMBOL vmlinux 0x1e875885 add_wait_queue -EXPORT_SYMBOL vmlinux 0x1e8b2bfb inet_csk_accept EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ead6dde __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x1ea64e64 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x1eab69bd neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0x1eb7ad70 md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x1ec596c7 phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0x1ec85791 netlink_capable +EXPORT_SYMBOL vmlinux 0x1eca1677 get_task_cred EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 EXPORT_SYMBOL vmlinux 0x1edf8e6c pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x1ee2770e tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x1eec7ad6 rtnl_notify -EXPORT_SYMBOL vmlinux 0x1f2d52be genphy_loopback +EXPORT_SYMBOL vmlinux 0x1eef180b __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x1f21f361 tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x1f3ace75 d_genocide -EXPORT_SYMBOL vmlinux 0x1f3b4dbf __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x1f4a15aa skb_checksum_setup EXPORT_SYMBOL vmlinux 0x1f5018af pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x1f51feb2 tcf_em_tree_validate EXPORT_SYMBOL vmlinux 0x1f59a99e uart_match_port +EXPORT_SYMBOL vmlinux 0x1f6153ca security_sb_remount EXPORT_SYMBOL vmlinux 0x1f676736 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x1f725fa6 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x1f729074 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x1f751b5f __lock_sock_fast EXPORT_SYMBOL vmlinux 0x1f7c44ba of_parse_phandle -EXPORT_SYMBOL vmlinux 0x1f8aad6c block_write_begin +EXPORT_SYMBOL vmlinux 0x1f8b6786 dev_remove_pack EXPORT_SYMBOL vmlinux 0x1f8c1ec0 dquot_drop -EXPORT_SYMBOL vmlinux 0x1f98e57e eth_get_headlen -EXPORT_SYMBOL vmlinux 0x1fa8b813 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x1f9742f6 tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio EXPORT_SYMBOL vmlinux 0x1fc0aea7 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x1fc5ee97 dev_set_mtu EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd7fb35 iw_handler_set_thrspy EXPORT_SYMBOL vmlinux 0x1fdacc3c pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x1fe93545 napi_enable +EXPORT_SYMBOL vmlinux 0x1ff8e82d udp_lib_get_port EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200a1b49 sock_edemux EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201864d2 genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0x201cabf0 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x200d94d4 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x201b5a84 __xfrm_init_state EXPORT_SYMBOL vmlinux 0x202ff240 elv_rb_find -EXPORT_SYMBOL vmlinux 0x2031dd06 seg6_hmac_validate_skb 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 0x20648eda mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x206c33a6 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x2055e387 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x205e0ffc vme_register_driver +EXPORT_SYMBOL vmlinux 0x206c5786 ip_defrag EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20adb659 sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode EXPORT_SYMBOL vmlinux 0x20e3e0fd clocksource_unregister -EXPORT_SYMBOL vmlinux 0x20f2929e __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x20e4cfff qdisc_reset EXPORT_SYMBOL vmlinux 0x20f6ba7c pm_vt_switch_unregister EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x2115d9cf tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x2116264a devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x211e1bd1 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x2128c676 vfs_get_link EXPORT_SYMBOL vmlinux 0x212db40d md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x2136fd8c __xfrm_init_state EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id EXPORT_SYMBOL vmlinux 0x213ea1b6 tty_vhangup -EXPORT_SYMBOL vmlinux 0x214201e4 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x214fa0c6 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x2171e8de kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x217e3a26 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x2181e2f4 jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset EXPORT_SYMBOL vmlinux 0x21963432 bio_endio EXPORT_SYMBOL vmlinux 0x21977dad serio_close +EXPORT_SYMBOL vmlinux 0x219a6306 tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0x219fb1fb watchdog_register_governor EXPORT_SYMBOL vmlinux 0x21a4dd81 seq_write -EXPORT_SYMBOL vmlinux 0x21ac0d73 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x21ac762a kernel_listen +EXPORT_SYMBOL vmlinux 0x21ab1844 ip_do_fragment EXPORT_SYMBOL vmlinux 0x21b60242 bit_waitqueue -EXPORT_SYMBOL vmlinux 0x21b867d8 sock_alloc EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21c39a79 dev_mc_flush EXPORT_SYMBOL vmlinux 0x21c3bf1b agp_copy_info -EXPORT_SYMBOL vmlinux 0x21c7c701 inet_frag_kill EXPORT_SYMBOL vmlinux 0x21d42ce9 nla_append EXPORT_SYMBOL vmlinux 0x21dd30f6 elv_bio_merge_ok EXPORT_SYMBOL vmlinux 0x21e0037e of_find_node_with_property EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e3c90f skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0x21e85c35 deactivate_super EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq EXPORT_SYMBOL vmlinux 0x22307d61 d_alloc_name -EXPORT_SYMBOL vmlinux 0x2254a23c sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x22576b6c qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x223c97a4 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x2255bb83 sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0x22578332 simple_fill_super -EXPORT_SYMBOL vmlinux 0x2266987d _dev_err -EXPORT_SYMBOL vmlinux 0x228df64b filemap_map_pages +EXPORT_SYMBOL vmlinux 0x226390f6 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x22675c18 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x22751fdb kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0x22944839 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x22947b56 sock_set_reuseport EXPORT_SYMBOL vmlinux 0x229484cd netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0x22976e2c vme_irq_request +EXPORT_SYMBOL vmlinux 0x22a8aa06 submit_bh EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b6d251 tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0x22ba5a8f register_md_personality -EXPORT_SYMBOL vmlinux 0x22c01a77 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x22c8087e do_splice_direct -EXPORT_SYMBOL vmlinux 0x22db1be6 security_sk_clone +EXPORT_SYMBOL vmlinux 0x22bafa80 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x22d46619 ll_rw_block EXPORT_SYMBOL vmlinux 0x22de8b1f devm_extcon_register_notifier EXPORT_SYMBOL vmlinux 0x22e8abbe blk_queue_bounce_limit EXPORT_SYMBOL vmlinux 0x22ef8586 param_get_long EXPORT_SYMBOL vmlinux 0x22fae277 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x231df455 noop_qdisc EXPORT_SYMBOL vmlinux 0x231f8d05 uart_resume_port EXPORT_SYMBOL vmlinux 0x2327e282 rproc_add -EXPORT_SYMBOL vmlinux 0x23362e2a qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x233730de cpufreq_generic_suspend EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var EXPORT_SYMBOL vmlinux 0x233cab92 cpumask_next +EXPORT_SYMBOL vmlinux 0x2341c3cf genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x234de8ce xsk_set_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 -EXPORT_SYMBOL vmlinux 0x23621522 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x236289dd sk_net_capable EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x23675a64 kernel_write -EXPORT_SYMBOL vmlinux 0x2367a99f __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0x2377f7b4 md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0x237f37b8 mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x238f8482 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x2390793c neigh_event_ns EXPORT_SYMBOL vmlinux 0x2392d2e8 __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x23ac37eb skb_vlan_untag EXPORT_SYMBOL vmlinux 0x23b4cbe7 dquot_acquire EXPORT_SYMBOL vmlinux 0x23b5b617 mempool_create EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c1a043 dev_deactivate +EXPORT_SYMBOL vmlinux 0x23c03f1c ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x23c222dc netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23e09804 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x23e450fa phy_attached_print +EXPORT_SYMBOL vmlinux 0x23ee5425 netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0x23f14f94 blk_pre_runtime_resume EXPORT_SYMBOL vmlinux 0x23f737c0 page_pool_return_skb_page EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2402ac3c kernel_connect +EXPORT_SYMBOL vmlinux 0x240996dc security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x24113a2a eth_platform_get_mac_address EXPORT_SYMBOL vmlinux 0x241963c7 kthread_stop EXPORT_SYMBOL vmlinux 0x241f7b87 inc_zone_page_state EXPORT_SYMBOL vmlinux 0x24212706 srp_start_tl_fail_timers EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user EXPORT_SYMBOL vmlinux 0x24481d21 of_node_to_nid -EXPORT_SYMBOL vmlinux 0x244ba0de __icmp_send -EXPORT_SYMBOL vmlinux 0x245852b7 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x2458d67c security_inode_setsecctx EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline EXPORT_SYMBOL vmlinux 0x24658352 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x24715c4f mfd_cell_disable EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x249ae373 skb_kill_datagram EXPORT_SYMBOL vmlinux 0x24adfdaa pci_get_subsys -EXPORT_SYMBOL vmlinux 0x24bb33c3 ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x24bb75e0 elv_rb_add -EXPORT_SYMBOL vmlinux 0x24beac5d eth_header_cache_update EXPORT_SYMBOL vmlinux 0x24c83587 pci_read_vpd EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer EXPORT_SYMBOL vmlinux 0x24e479ab elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x24ee717e giveup_fpu -EXPORT_SYMBOL vmlinux 0x24f8890c qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x24f8f7d9 inet_getname EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user EXPORT_SYMBOL vmlinux 0x250788f0 rename_lock -EXPORT_SYMBOL vmlinux 0x251ba42f filemap_check_errors EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released EXPORT_SYMBOL vmlinux 0x2523948e agp_find_bridge +EXPORT_SYMBOL vmlinux 0x252b369a phy_print_status +EXPORT_SYMBOL vmlinux 0x253088c4 ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0x253dde39 pci_bus_size_bridges EXPORT_SYMBOL vmlinux 0x254c9287 ioremap -EXPORT_SYMBOL vmlinux 0x25590529 jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0x2563e7f3 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x2593ada6 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x259b2f35 vme_dma_list_free EXPORT_SYMBOL vmlinux 0x25a2b0b4 tty_port_close +EXPORT_SYMBOL vmlinux 0x25affbfd rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x25bccac8 _dev_err EXPORT_SYMBOL vmlinux 0x25be6045 give_up_console -EXPORT_SYMBOL vmlinux 0x25e3c804 follow_down_one +EXPORT_SYMBOL vmlinux 0x25c19187 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x25c67ec2 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x25e4cc68 netdev_upper_get_next_dev_rcu EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x261a5a5c free_buffer_head EXPORT_SYMBOL vmlinux 0x261d50e0 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x262ccfb5 jbd2_fc_release_bufs EXPORT_SYMBOL vmlinux 0x262d2ac5 unlock_new_inode EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263d06e5 km_policy_notify EXPORT_SYMBOL vmlinux 0x26599920 param_get_bool EXPORT_SYMBOL vmlinux 0x2662aade blk_mq_free_tag_set EXPORT_SYMBOL vmlinux 0x266751b7 max8925_bulk_write @@ -6657,118 +6579,126 @@ EXPORT_SYMBOL vmlinux 0x266f6283 __inc_node_page_state EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get EXPORT_SYMBOL vmlinux 0x268b1326 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x268c53d9 __inode_sub_bytes EXPORT_SYMBOL vmlinux 0x268efa5a vmap -EXPORT_SYMBOL vmlinux 0x26931cfc _dev_alert EXPORT_SYMBOL vmlinux 0x269deae8 __destroy_inode -EXPORT_SYMBOL vmlinux 0x26a2c157 tcf_qevent_init -EXPORT_SYMBOL vmlinux 0x26b73d1d flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0x26c0ae94 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x26ad827f xfrm_init_state +EXPORT_SYMBOL vmlinux 0x26bd1d84 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x26c8e277 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x26ca9484 sk_alloc EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26f13060 unregister_qdisc EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be -EXPORT_SYMBOL vmlinux 0x26fdfa5e __SetPageMovable +EXPORT_SYMBOL vmlinux 0x27034502 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x270bc420 inet_put_port EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x27397879 netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274e648f vfs_copy_file_range EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x276b6629 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x276f6415 devm_of_clk_del_provider EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277d4fda flow_rule_match_icmp EXPORT_SYMBOL vmlinux 0x277ecee1 down_write EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27aa602a generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x27b4cbd3 path_is_under +EXPORT_SYMBOL vmlinux 0x279d4ff1 phy_init_hw EXPORT_SYMBOL vmlinux 0x27b97975 edac_mc_find EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync EXPORT_SYMBOL vmlinux 0x27c5a80c mode_strip_sgid +EXPORT_SYMBOL vmlinux 0x27c74ff1 vfs_llseek EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27d77f4c tcp_parse_options EXPORT_SYMBOL vmlinux 0x27dce74b pnv_cxl_alloc_hwirq_ranges +EXPORT_SYMBOL vmlinux 0x27ed4c3e xfrm_parse_spi EXPORT_SYMBOL vmlinux 0x27fddcdc __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0x28012417 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x28089329 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x2811975e skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0x28180033 param_get_hexint EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28190521 tcp_peek_len -EXPORT_SYMBOL vmlinux 0x282d620a xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x283197b1 devm_of_clk_del_provider -EXPORT_SYMBOL vmlinux 0x28336052 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x282243d5 mmc_can_trim EXPORT_SYMBOL vmlinux 0x28458fff shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x285351d4 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x2846c6ea sock_no_sendmsg EXPORT_SYMBOL vmlinux 0x2858df5c blk_queue_update_dma_alignment EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 EXPORT_SYMBOL vmlinux 0x287a4a47 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x288f86b5 tcp_md5_hash_skb_data EXPORT_SYMBOL vmlinux 0x289a7a42 agp_enable EXPORT_SYMBOL vmlinux 0x28b0e182 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x28eb136c dst_alloc -EXPORT_SYMBOL vmlinux 0x28f4c4a6 udplite_prot +EXPORT_SYMBOL vmlinux 0x28c18802 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x28dad865 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x28e09a65 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x28f33172 inet_addr_type_table EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x29030efd dev_get_by_name +EXPORT_SYMBOL vmlinux 0x2903327c netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x29049e09 tcp_mtup_init EXPORT_SYMBOL vmlinux 0x291ee747 csum_and_copy_to_user -EXPORT_SYMBOL vmlinux 0x293da6e5 phy_do_ioctl EXPORT_SYMBOL vmlinux 0x29414fd9 param_set_charp EXPORT_SYMBOL vmlinux 0x294b0e62 md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0x295c09b5 vma_set_file EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x296bf82c inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x29728c8d tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x2971a398 tcp_enter_cwr EXPORT_SYMBOL vmlinux 0x2978e622 drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x297ca390 phy_drivers_unregister EXPORT_SYMBOL vmlinux 0x299129c4 validate_slab_cache EXPORT_SYMBOL vmlinux 0x299dfa44 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x29a5dd47 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x29a1e214 release_pages EXPORT_SYMBOL vmlinux 0x29b2a9d7 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0x29bf4735 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x29db84eb inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x29de9184 filemap_flush -EXPORT_SYMBOL vmlinux 0x29df580e path_get +EXPORT_SYMBOL vmlinux 0x29e16369 jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29e8bc8c genlmsg_put EXPORT_SYMBOL vmlinux 0x29f0fb17 param_get_string -EXPORT_SYMBOL vmlinux 0x2a147d0e phy_start_cable_test -EXPORT_SYMBOL vmlinux 0x2a1e41a6 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x2a14593e sock_pfree +EXPORT_SYMBOL vmlinux 0x2a16407a ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x2a1944bc iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x2a1f6c9c __check_sticky EXPORT_SYMBOL vmlinux 0x2a2e40be of_device_is_big_endian EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a7e13bf inet_sendpage +EXPORT_SYMBOL vmlinux 0x2a31575a skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x2a3703c5 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x2a4cd91d filemap_fdatawrite_wbc EXPORT_SYMBOL vmlinux 0x2a8a0b96 page_frag_alloc_align EXPORT_SYMBOL vmlinux 0x2a8e32b1 _raw_spin_unlock_irqrestore EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free EXPORT_SYMBOL vmlinux 0x2a94cec0 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x2a9740cd security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0x2a9969c1 pps_register_source EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2a9c33d5 security_skb_classify_flow EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array -EXPORT_SYMBOL vmlinux 0x2b5e4e49 flush_signals -EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b77ec3f eth_header -EXPORT_SYMBOL vmlinux 0x2b8316af netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x2b880172 read_cache_pages +EXPORT_SYMBOL vmlinux 0x2ab27303 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x2ad57092 phy_suspend +EXPORT_SYMBOL vmlinux 0x2ad6f09e i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x2b847a14 pcibios_fixup_bus EXPORT_SYMBOL vmlinux 0x2b9b84ed of_get_compatible_child EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock EXPORT_SYMBOL vmlinux 0x2ba84994 nd_device_notify -EXPORT_SYMBOL vmlinux 0x2bc9f3e7 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x2bb591c2 sock_set_mark +EXPORT_SYMBOL vmlinux 0x2bbaa58e page_readlink +EXPORT_SYMBOL vmlinux 0x2bca3116 vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0x2bddb5df backlight_device_get_by_type EXPORT_SYMBOL vmlinux 0x2bedede8 blkdev_put +EXPORT_SYMBOL vmlinux 0x2bf68697 sock_create_lite EXPORT_SYMBOL vmlinux 0x2bff2b63 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x2c0c45d0 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x2c191f4f skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c419745 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x2c3d551a arp_send EXPORT_SYMBOL vmlinux 0x2c4dc895 bio_add_pc_page EXPORT_SYMBOL vmlinux 0x2c4de3ed backlight_device_register +EXPORT_SYMBOL vmlinux 0x2c509d2a iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x2c5735e7 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x2c5ea2e6 filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0x2c66a707 empty_aops EXPORT_SYMBOL vmlinux 0x2c74b162 param_ops_bool +EXPORT_SYMBOL vmlinux 0x2c789922 vlan_vid_del EXPORT_SYMBOL vmlinux 0x2c83c270 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x2ca40f8c skb_eth_push -EXPORT_SYMBOL vmlinux 0x2cbb83a4 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x2c8dbb1a vlan_dev_vlan_id EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2ce2124c xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0x2cf72f5a netpoll_print_options -EXPORT_SYMBOL vmlinux 0x2d062ace inetdev_by_index +EXPORT_SYMBOL vmlinux 0x2cd34153 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x2ce262b1 __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0x2d080bea pci_bus_add_devices EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock EXPORT_SYMBOL vmlinux 0x2d1849ca fs_param_is_u64 EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x2d278af0 vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq EXPORT_SYMBOL vmlinux 0x2d36c649 mipi_dsi_dcs_set_display_off @@ -6776,16 +6706,17 @@ EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup EXPORT_SYMBOL vmlinux 0x2d491c6a cdrom_get_media_event EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d516ed8 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x2d66a55d devfreq_monitor_resume EXPORT_SYMBOL vmlinux 0x2d705bd2 config_item_put -EXPORT_SYMBOL vmlinux 0x2d7a3310 vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x2d83ba64 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x2d7208cd flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x2d830d30 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x2d883b91 build_skb_around EXPORT_SYMBOL vmlinux 0x2d8dffaa inode_init_once -EXPORT_SYMBOL vmlinux 0x2d93ff6c tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2db0ef4b udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x2db86ae0 i2c_smbus_read_i2c_block_data EXPORT_SYMBOL vmlinux 0x2dc10d3a blk_mq_alloc_tag_set EXPORT_SYMBOL vmlinux 0x2dc4e156 prepare_to_wait +EXPORT_SYMBOL vmlinux 0x2dc5e60d tcf_action_dump_1 EXPORT_SYMBOL vmlinux 0x2dc91a0d md_write_start EXPORT_SYMBOL vmlinux 0x2dcdea36 chip_to_vas_id EXPORT_SYMBOL vmlinux 0x2dce19f1 __wait_on_bit @@ -6794,714 +6725,712 @@ EXPORT_SYMBOL vmlinux 0x2e004493 from_kprojid_munged EXPORT_SYMBOL vmlinux 0x2e0ef2d5 agp_bind_memory EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put EXPORT_SYMBOL vmlinux 0x2e1fab2f _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x2e24e0dd jbd2_journal_update_sb_errno EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e45da88 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x2e30446a pid_task EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e6a4e28 sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x2e6fbea9 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x2e713fa0 vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x2e76074b sock_sendmsg -EXPORT_SYMBOL vmlinux 0x2e800266 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x2e91ef3f twl6040_set_pll EXPORT_SYMBOL vmlinux 0x2e9fff72 of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x2eb579b4 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x2eb634ac security_binder_transfer_file EXPORT_SYMBOL vmlinux 0x2ebd4cbc unpin_user_pages -EXPORT_SYMBOL vmlinux 0x2ec2a40f udp6_set_csum -EXPORT_SYMBOL vmlinux 0x2ec6258e ethtool_op_get_link EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ecf8bbd _dev_crit -EXPORT_SYMBOL vmlinux 0x2edc5e56 netdev_crit -EXPORT_SYMBOL vmlinux 0x2ee19ae1 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x2ed47e0b xattr_full_name +EXPORT_SYMBOL vmlinux 0x2ed486ad scsi_report_device_reset EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2ee59f27 flow_rule_match_ip EXPORT_SYMBOL vmlinux 0x2ee9d206 n_tty_ioctl_helper EXPORT_SYMBOL vmlinux 0x2eea912c get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x2efb9f37 mnt_set_expiry EXPORT_SYMBOL vmlinux 0x2f000c44 __percpu_counter_compare EXPORT_SYMBOL vmlinux 0x2f03bf6f devm_free_irq EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f0cb31c ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x2f0dc0d8 inet_frags_init EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init +EXPORT_SYMBOL vmlinux 0x2f1fb635 xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f444f42 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x2f473e94 xp_alloc +EXPORT_SYMBOL vmlinux 0x2f34a664 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x2f384c17 fqdir_exit +EXPORT_SYMBOL vmlinux 0x2f4085cd __neigh_create EXPORT_SYMBOL vmlinux 0x2f546024 agp_generic_create_gatt_table EXPORT_SYMBOL vmlinux 0x2f5fedc5 bmap EXPORT_SYMBOL vmlinux 0x2f6f4651 radix__flush_pmd_tlb_range EXPORT_SYMBOL vmlinux 0x2f7210dc pcim_set_mwi -EXPORT_SYMBOL vmlinux 0x2f74e00e inet6_bind EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free EXPORT_SYMBOL vmlinux 0x2f8264bd gtm_get_timer16 -EXPORT_SYMBOL vmlinux 0x2f874c3f ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x2f91b9c1 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x2fadfb17 sock_no_socketpair EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock +EXPORT_SYMBOL vmlinux 0x2fb5229e register_fib_notifier EXPORT_SYMBOL vmlinux 0x2fc78fcc xa_erase -EXPORT_SYMBOL vmlinux 0x2fca728a phy_device_free EXPORT_SYMBOL vmlinux 0x2fcb8fba rio_query_mport EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fec8588 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x2ff69e60 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x3021e1d7 file_open_root +EXPORT_SYMBOL vmlinux 0x300569a1 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x301a9300 mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0x3025af75 key_validate EXPORT_SYMBOL vmlinux 0x302f2fb6 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x303efe71 pagecache_write_end EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp EXPORT_SYMBOL vmlinux 0x305cddfc of_get_property EXPORT_SYMBOL vmlinux 0x305cf10a security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x305e172e fifo_set_limit -EXPORT_SYMBOL vmlinux 0x30619d3a ip6_frag_next -EXPORT_SYMBOL vmlinux 0x30637548 xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0x306cf2e0 proc_set_size EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30ae041c of_find_net_device_by_node EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id -EXPORT_SYMBOL vmlinux 0x30bf2f7e i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x30c708af wake_up_process EXPORT_SYMBOL vmlinux 0x30d59cfb request_firmware -EXPORT_SYMBOL vmlinux 0x30dd9aba free_netdev -EXPORT_SYMBOL vmlinux 0x30e0b733 srp_timed_out -EXPORT_SYMBOL vmlinux 0x30eb6ae4 xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0x30efca84 make_kprojid -EXPORT_SYMBOL vmlinux 0x31013b75 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x30fb3053 skb_eth_push EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310f3ff2 inet6_del_protocol EXPORT_SYMBOL vmlinux 0x3111a27f blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x311bf33d __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x31200dd4 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 EXPORT_SYMBOL vmlinux 0x31382845 input_close_device -EXPORT_SYMBOL vmlinux 0x3147b516 logfc -EXPORT_SYMBOL vmlinux 0x31572196 of_phy_connect -EXPORT_SYMBOL vmlinux 0x316254bf __put_page -EXPORT_SYMBOL vmlinux 0x31961d39 sock_no_accept +EXPORT_SYMBOL vmlinux 0x314630b5 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x3162484c sock_wmalloc +EXPORT_SYMBOL vmlinux 0x316fcb35 ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0x31b1a41c __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x31b58320 __ip_queue_xmit EXPORT_SYMBOL vmlinux 0x31be2509 vga_con -EXPORT_SYMBOL vmlinux 0x31fedd1a netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x31e9f60f eth_header_cache_update EXPORT_SYMBOL vmlinux 0x3203cd9f irq_domain_set_info EXPORT_SYMBOL vmlinux 0x320f861c phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x3215108a mmc_put_card EXPORT_SYMBOL vmlinux 0x3217c3a3 __memset32 -EXPORT_SYMBOL vmlinux 0x322c6ecc lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x322bccb8 inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd EXPORT_SYMBOL vmlinux 0x3242f795 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x3244e778 inet_protos EXPORT_SYMBOL vmlinux 0x3250de25 serio_bus -EXPORT_SYMBOL vmlinux 0x325ab32b phy_device_register -EXPORT_SYMBOL vmlinux 0x325cb0ab flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x32621c6f mmc_detect_change -EXPORT_SYMBOL vmlinux 0x3268529c tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x326a25b3 alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x327ba134 adjust_managed_page_count EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x32980835 nobh_write_end +EXPORT_SYMBOL vmlinux 0x32856dee jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x32958625 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x3295b290 init_net EXPORT_SYMBOL vmlinux 0x32b7d5b2 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x32b7e8a1 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x32c3f8dd security_inode_getsecctx EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32f44cb6 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x3300ce01 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x32da4e60 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x32e4a23c dev_lstats_read EXPORT_SYMBOL vmlinux 0x331618a4 component_match_add_release +EXPORT_SYMBOL vmlinux 0x33174704 phy_ethtool_get_sset_count EXPORT_SYMBOL vmlinux 0x331ceec1 md_bitmap_free EXPORT_SYMBOL vmlinux 0x331e0c09 dma_supported -EXPORT_SYMBOL vmlinux 0x33261d8c twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x3325a5e3 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x33328494 end_buffer_write_sync EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down -EXPORT_SYMBOL vmlinux 0x33493170 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x333f6026 inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0x3352a140 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x3355ee9d xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x338ad0a9 jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x338b5fa1 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x338ea1d8 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x3392019c scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x3398c8d3 generic_setlease EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33cae023 dump_skip_to +EXPORT_SYMBOL vmlinux 0x33dce8c0 mmc_gpiod_request_cd EXPORT_SYMBOL vmlinux 0x33e0a386 zpool_unregister_driver EXPORT_SYMBOL vmlinux 0x33e6c468 __frontswap_test EXPORT_SYMBOL vmlinux 0x33f05011 copy_page_to_iter EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f3a515 vmf_insert_mixed_prot EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x340c87bd skb_clone_sk +EXPORT_SYMBOL vmlinux 0x34068dbc filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x340b68cf ptp_clock_register EXPORT_SYMBOL vmlinux 0x34146db8 unregister_nls EXPORT_SYMBOL vmlinux 0x34198526 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x34211c0e dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0x3421e25f rtc_add_groups -EXPORT_SYMBOL vmlinux 0x3455c452 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x3441e860 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x3443300d block_truncate_page EXPORT_SYMBOL vmlinux 0x345c8916 strict_msr_control -EXPORT_SYMBOL vmlinux 0x34610bb3 blk_put_queue -EXPORT_SYMBOL vmlinux 0x3468ed4b generic_block_bmap +EXPORT_SYMBOL vmlinux 0x3461729c sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x34619d84 genphy_suspend +EXPORT_SYMBOL vmlinux 0x3469495c security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x34776187 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x348a5bdc fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x348b91d2 jbd2_journal_inode_ranged_write EXPORT_SYMBOL vmlinux 0x34943597 seq_printf EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34a2c5c0 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x34a8a89e inode_get_bytes -EXPORT_SYMBOL vmlinux 0x34ad0912 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x34c0b4ea unix_attach_fds +EXPORT_SYMBOL vmlinux 0x349f791a vfs_create_mount +EXPORT_SYMBOL vmlinux 0x34a93e78 of_phy_is_fixed_link EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev EXPORT_SYMBOL vmlinux 0x34dcab2a pci_write_vpd +EXPORT_SYMBOL vmlinux 0x34debd52 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x34eca8e6 generic_listxattr EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f99e85 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x34fd42f0 xp_dma_unmap EXPORT_SYMBOL vmlinux 0x35105e0e bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x3511e262 inet_frag_destroy EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier EXPORT_SYMBOL vmlinux 0x35257e6c epapr_hypercall_start EXPORT_SYMBOL vmlinux 0x352bb201 xa_store EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x353f150b scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0x3550f4ee tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x3553ca4f begin_new_exec +EXPORT_SYMBOL vmlinux 0x355a7685 seg6_push_hmac EXPORT_SYMBOL vmlinux 0x3564593f cdrom_release EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x3567e449 generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x356d10ea ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x35666d9c mr_vif_seq_next EXPORT_SYMBOL vmlinux 0x3573e0d0 radix_tree_lookup_slot EXPORT_SYMBOL vmlinux 0x359349c8 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x359a05d8 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x359dd319 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x35a250d3 neigh_event_ns EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35af05da phy_device_create EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 -EXPORT_SYMBOL vmlinux 0x35ca5c34 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x35cab556 flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0x35cacd1f watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x35da3f59 __scsi_execute EXPORT_SYMBOL vmlinux 0x35daad68 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x35efba63 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x35f00d20 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x35fde3be __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x3601bb8a load_nls +EXPORT_SYMBOL vmlinux 0x36162c98 ipv6_select_ident EXPORT_SYMBOL vmlinux 0x362736a4 vga_put -EXPORT_SYMBOL vmlinux 0x3645cf7c has_capability +EXPORT_SYMBOL vmlinux 0x363c3610 dev_set_promiscuity EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const EXPORT_SYMBOL vmlinux 0x3668ddfb pmem_sector_size -EXPORT_SYMBOL vmlinux 0x3681cef9 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x367b9507 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x3684b4a4 get_fs_type EXPORT_SYMBOL vmlinux 0x3688c278 from_kprojid -EXPORT_SYMBOL vmlinux 0x3696ccaa page_cache_next_miss -EXPORT_SYMBOL vmlinux 0x36b8976a inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x368e2a51 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x36b38b62 vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0x36bd92a6 mipi_dsi_detach EXPORT_SYMBOL vmlinux 0x36c7d2fe dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x36d2b368 locks_copy_lock EXPORT_SYMBOL vmlinux 0x36e6cbd7 input_set_keycode EXPORT_SYMBOL vmlinux 0x36e9ed59 generic_file_fsync EXPORT_SYMBOL vmlinux 0x36eaafe2 __cpu_active_mask -EXPORT_SYMBOL vmlinux 0x36f67788 phy_get_pause +EXPORT_SYMBOL vmlinux 0x3700f018 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x3710d48a d_path EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level -EXPORT_SYMBOL vmlinux 0x373a7f4b udp_lib_rehash EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374b8077 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x374d90bf dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0x3751ab13 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x375552bd dev_get_port_parent_id EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x375ba1c7 tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream EXPORT_SYMBOL vmlinux 0x3788b32a blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x3789b258 sync_inodes_sb EXPORT_SYMBOL vmlinux 0x3795bbc6 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x37b0e3b3 tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0x37b48ce9 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x37ae3fbe xfrm_state_lookup EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37cb90cb devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x37e89de8 lru_cache_add +EXPORT_SYMBOL vmlinux 0x37dea52e skb_pull +EXPORT_SYMBOL vmlinux 0x37ef1437 udp_prot EXPORT_SYMBOL vmlinux 0x37f40aa5 _raw_write_lock_irq EXPORT_SYMBOL vmlinux 0x38026cb6 complete EXPORT_SYMBOL vmlinux 0x3810101b remove_conflicting_pci_framebuffers EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381e29cd __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x38212133 security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x38226716 register_netdevice +EXPORT_SYMBOL vmlinux 0x3826d59a __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x382ee04b udp6_seq_ops EXPORT_SYMBOL vmlinux 0x38334f48 get_cached_acl EXPORT_SYMBOL vmlinux 0x383707da vga_remove_vgacon EXPORT_SYMBOL vmlinux 0x383dfb79 input_mt_drop_unused EXPORT_SYMBOL vmlinux 0x3844392b bio_integrity_clone EXPORT_SYMBOL vmlinux 0x384c39e1 touch_atime -EXPORT_SYMBOL vmlinux 0x384faee8 mmput_async EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x385636ed __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x38565ab6 phy_detach EXPORT_SYMBOL vmlinux 0x385c37ea __free_pages +EXPORT_SYMBOL vmlinux 0x386c2a2f would_dump +EXPORT_SYMBOL vmlinux 0x3881a489 begin_new_exec +EXPORT_SYMBOL vmlinux 0x3882dbd3 scsi_mode_sense EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x3889df69 i2c_clients_command EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a7e3dc mipi_dsi_dcs_write EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b720dd alloc_fcdev +EXPORT_SYMBOL vmlinux 0x38abdbd6 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x38ae22ab tcf_block_get EXPORT_SYMBOL vmlinux 0x38c4f8a2 may_setattr +EXPORT_SYMBOL vmlinux 0x38cd6aac tc_cleanup_flow_action EXPORT_SYMBOL vmlinux 0x38d540e9 request_key_with_auxdata EXPORT_SYMBOL vmlinux 0x38de28cd revert_creds -EXPORT_SYMBOL vmlinux 0x38e988f8 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x38ea8785 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x38e880d1 xfrm_state_add EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x38f96ad0 fib_notifier_ops_register EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios EXPORT_SYMBOL vmlinux 0x391a6148 mpage_writepages EXPORT_SYMBOL vmlinux 0x391c1062 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x3927dd83 done_path_create +EXPORT_SYMBOL vmlinux 0x39390770 redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x394c4eca netdev_features_change +EXPORT_SYMBOL vmlinux 0x394da354 __vfs_getxattr EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x3956deef flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x396a6948 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x397047c4 mmc_can_erase EXPORT_SYMBOL vmlinux 0x39769dcc tty_hung_up_p EXPORT_SYMBOL vmlinux 0x3980550a current_in_userns EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x399bfc0c __scm_send EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and EXPORT_SYMBOL vmlinux 0x39b8761c __dquot_free_space -EXPORT_SYMBOL vmlinux 0x39de372b __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x39eaba18 netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0x39f9e18c dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x39fba495 audit_log_start +EXPORT_SYMBOL vmlinux 0x3a0a8c26 __ip_mc_dec_group EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a14396e udp_disconnect -EXPORT_SYMBOL vmlinux 0x3a174b2c sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x3a1761d6 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x3a2b6150 mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a31ce7a xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x3a31d85a tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0x3a38e7c7 fib_notifier_ops_unregister EXPORT_SYMBOL vmlinux 0x3a3b28fc kobject_init +EXPORT_SYMBOL vmlinux 0x3a3f86fa sock_set_keepalive EXPORT_SYMBOL vmlinux 0x3a43910d pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x3a48cb39 inet_shutdown EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a598fa4 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x3a5ff8b6 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x3a685b49 generic_setlease EXPORT_SYMBOL vmlinux 0x3a6a5551 from_kgid -EXPORT_SYMBOL vmlinux 0x3a6fcfc9 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x3a8249fc follow_pfn +EXPORT_SYMBOL vmlinux 0x3a80ee6d fwnode_irq_get EXPORT_SYMBOL vmlinux 0x3a875620 __xa_store -EXPORT_SYMBOL vmlinux 0x3a8de5ca tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x3ab59f61 _dev_notice EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ac548e2 tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0x3af24274 finish_no_open +EXPORT_SYMBOL vmlinux 0x3af9e2fc device_match_acpi_dev EXPORT_SYMBOL vmlinux 0x3afd8640 pci_restore_state -EXPORT_SYMBOL vmlinux 0x3b05bd64 add_to_pipe EXPORT_SYMBOL vmlinux 0x3b05e5a4 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x3b070914 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x3b0b4f27 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x3b0d8fdb netdev_has_upper_dev_all_rcu EXPORT_SYMBOL vmlinux 0x3b1bb98b pci_release_region -EXPORT_SYMBOL vmlinux 0x3b1ca1ca vfs_rmdir EXPORT_SYMBOL vmlinux 0x3b1e945b pnv_cxl_release_hwirq_ranges EXPORT_SYMBOL vmlinux 0x3b1f8579 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x3b255d25 jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0x3b2d4fbe __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x3b2e6001 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x3b2f34e1 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b49a317 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x3b49d602 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x3b4d726e vme_bus_num +EXPORT_SYMBOL vmlinux 0x3b35da8e rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x3b36abc4 scm_detach_fds EXPORT_SYMBOL vmlinux 0x3b4df80e __alloc_disk_node -EXPORT_SYMBOL vmlinux 0x3b526ae9 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0x3b5df07e inode_newsize_ok EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6a9703 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x3b6adf02 dentry_path_raw EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b75cb5b redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0x3b77064d import_iovec -EXPORT_SYMBOL vmlinux 0x3b7ea51a phy_find_first -EXPORT_SYMBOL vmlinux 0x3b85fd0e __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x3b899fc4 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x3b9a9d68 __dev_remove_pack EXPORT_SYMBOL vmlinux 0x3b9f70dc scsi_register_driver EXPORT_SYMBOL vmlinux 0x3bbed9a5 register_sysctl_paths EXPORT_SYMBOL vmlinux 0x3bc1fd1f pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x3bc2d2af ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x3bd05302 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x3bd55276 of_mdiobus_child_is_phy EXPORT_SYMBOL vmlinux 0x3bdaaeb8 iov_iter_pipe -EXPORT_SYMBOL vmlinux 0x3be175be phy_stop EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bef48bd tcf_exts_terse_dump EXPORT_SYMBOL vmlinux 0x3befed00 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x3bf8c7ed phy_drivers_register EXPORT_SYMBOL vmlinux 0x3bfb09fa gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x3bfc67a8 netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0x3c06c1ac pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x3c07341b kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x3c0aa598 devfreq_suspend_device EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr -EXPORT_SYMBOL vmlinux 0x3c37333f __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x3c399df5 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c44b914 devm_devfreq_add_device EXPORT_SYMBOL vmlinux 0x3c480e81 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0x3ca4bb06 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x3c66cec9 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x3c71a37b dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x3c95d0e5 udp_gro_complete +EXPORT_SYMBOL vmlinux 0x3ca66be8 page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x3cc42247 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x3cc55436 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x3cc8b36e ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x3cd3fc86 tcf_em_tree_validate EXPORT_SYMBOL vmlinux 0x3cd4a49d of_graph_is_present -EXPORT_SYMBOL vmlinux 0x3cd98db2 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x3ce33fba vme_bus_error_handler EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d0f814a dns_query EXPORT_SYMBOL vmlinux 0x3d275134 i8042_install_filter -EXPORT_SYMBOL vmlinux 0x3d2ae135 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x3d3a459c __of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x3d370161 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x3d3cf389 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x3d3e8947 reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0x3d478536 clear_bdi_congested -EXPORT_SYMBOL vmlinux 0x3d4a5656 dev_change_carrier EXPORT_SYMBOL vmlinux 0x3d4e3a2c of_pci_range_to_resource EXPORT_SYMBOL vmlinux 0x3d544d4d dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x3d569ecf flow_block_cb_setup_simple EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d588f9a phy_support_asym_pause EXPORT_SYMBOL vmlinux 0x3d5d4440 get_user_pages EXPORT_SYMBOL vmlinux 0x3d666c30 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x3d7b2270 shmem_aops EXPORT_SYMBOL vmlinux 0x3d862734 tty_port_put +EXPORT_SYMBOL vmlinux 0x3d874298 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x3d9be9fa fddi_type_trans +EXPORT_SYMBOL vmlinux 0x3d9c905f mr_table_dump 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 0x3dc27ee7 d_add -EXPORT_SYMBOL vmlinux 0x3dc76f21 console_start EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data EXPORT_SYMBOL vmlinux 0x3dead6a6 insert_inode_locked4 EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e04f4df ip_frag_init -EXPORT_SYMBOL vmlinux 0x3e0d146b neigh_for_each -EXPORT_SYMBOL vmlinux 0x3e0f4214 vm_iomap_memory EXPORT_SYMBOL vmlinux 0x3e108bff blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0x3e186b17 cad_pid EXPORT_SYMBOL vmlinux 0x3e336dbb page_pool_destroy -EXPORT_SYMBOL vmlinux 0x3e351c12 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x3e372286 balance_dirty_pages_ratelimited EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e51d096 __traceiter_spi_transfer_start EXPORT_SYMBOL vmlinux 0x3e759c2e nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x3e7b1dfc __set_page_dirty_nobuffers EXPORT_SYMBOL vmlinux 0x3e853cf4 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x3e896727 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x3e91c625 build_skb EXPORT_SYMBOL vmlinux 0x3e9f27c8 pci_claim_resource EXPORT_SYMBOL vmlinux 0x3ea1b6e4 __stack_chk_fail EXPORT_SYMBOL vmlinux 0x3eb19209 simple_statfs -EXPORT_SYMBOL vmlinux 0x3ebca818 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x3eb315e0 rtnl_link_get_net EXPORT_SYMBOL vmlinux 0x3ec2426c touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x3ec2f228 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x3ee7dc39 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x3ec2f834 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x3ed9da0c fd_install +EXPORT_SYMBOL vmlinux 0x3ee39e4e kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0x3ee93c3f pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x3eebe963 __i2c_transfer EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f0760f4 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x3efe8ee8 sock_no_accept +EXPORT_SYMBOL vmlinux 0x3eff19e3 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x3f02f1a1 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x3f092630 flow_rule_match_enc_keyid EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f1899ba thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0x3f1eb69f vme_lm_request -EXPORT_SYMBOL vmlinux 0x3f21732b netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x3f3fe706 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x3f2ec452 nlmsg_notify EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec EXPORT_SYMBOL vmlinux 0x3f44ed57 scsi_bios_ptable EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f521abb __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0x3f660530 bioset_init_from_src +EXPORT_SYMBOL vmlinux 0x3f6d617a jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0x3f7e617f __next_node_in EXPORT_SYMBOL vmlinux 0x3f82c0a0 input_setup_polling EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access EXPORT_SYMBOL vmlinux 0x3f92e626 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x3f98abe5 phy_config_aneg EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc12136 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3fcffc2e get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fde233e tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0x3fdeeebe generic_shutdown_super EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x4004b2b8 skb_seq_read -EXPORT_SYMBOL vmlinux 0x40059d68 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x4025e03d inet_frag_find -EXPORT_SYMBOL vmlinux 0x40260e18 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0x40285d95 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x40578c28 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x40130713 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x404e0612 kern_unmount EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo EXPORT_SYMBOL vmlinux 0x405ebc52 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x40702698 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x4078620b filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0x408792c1 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x409690a9 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x40886a28 xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a165a2 mntget EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40abc872 ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0x40b07d77 __generic_file_write_iter EXPORT_SYMBOL vmlinux 0x40b07ed7 pm860x_bulk_read EXPORT_SYMBOL vmlinux 0x40b84fcc param_ops_hexint -EXPORT_SYMBOL vmlinux 0x40c0fe2b kernel_getsockname EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo EXPORT_SYMBOL vmlinux 0x40cb3d84 cpumask_any_distribute EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d79f96 mmc_gpiod_request_cd_irq EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x40d98a09 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x40e62120 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x40f182f3 dump_skip_to EXPORT_SYMBOL vmlinux 0x40f37b03 nla_reserve EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x40ff433e mmc_gpio_set_cd_isr EXPORT_SYMBOL vmlinux 0x41182166 vm_mmap EXPORT_SYMBOL vmlinux 0x4119670e pci_release_regions EXPORT_SYMBOL vmlinux 0x412626e4 __frontswap_load EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x41361949 wait_on_page_bit_killable EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x415f8201 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x415e0672 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x4164f593 cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0x4174ec34 configfs_unregister_default_group EXPORT_SYMBOL vmlinux 0x41792a3a cdev_del -EXPORT_SYMBOL vmlinux 0x41840c5a alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x4188470f d_path +EXPORT_SYMBOL vmlinux 0x417e4f22 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x417fabc2 ip_generic_getfrag EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x4189749d tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0x4191b3a9 xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0x41a87f54 gnet_stats_copy_basic_hw EXPORT_SYMBOL vmlinux 0x41abd4db _raw_write_trylock EXPORT_SYMBOL vmlinux 0x41ae718a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x41afe60a sock_no_connect EXPORT_SYMBOL vmlinux 0x41b512e9 dquot_alloc -EXPORT_SYMBOL vmlinux 0x41d1371d tso_build_hdr -EXPORT_SYMBOL vmlinux 0x41ddd208 xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x41dde700 put_ipc_ns EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x421a0b90 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x4222f809 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x422349ac devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x42261123 try_to_release_page EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x423bd9a8 skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0x42405c63 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x424124a2 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x42424a8b sock_cmsg_send EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x4249f682 vfs_get_tree EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42550919 xsk_tx_release +EXPORT_SYMBOL vmlinux 0x424e79ca prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x4254fb8a filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x425bfb9a generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x42602ba9 netdev_notice EXPORT_SYMBOL vmlinux 0x42736793 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x427731bc phy_driver_register -EXPORT_SYMBOL vmlinux 0x42865cbd sock_create_lite -EXPORT_SYMBOL vmlinux 0x42999055 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x42787842 filemap_map_pages EXPORT_SYMBOL vmlinux 0x42aa7da4 bdev_read_only +EXPORT_SYMBOL vmlinux 0x42c4420c nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0x42d290f0 dquot_quotactl_sysfile_ops EXPORT_SYMBOL vmlinux 0x42eaf563 agp_generic_type_to_mask_type EXPORT_SYMBOL vmlinux 0x42f030bd dma_fence_chain_find_seqno EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer EXPORT_SYMBOL vmlinux 0x42f4cd21 radix__flush_tlb_range -EXPORT_SYMBOL vmlinux 0x42fbbede dev_get_by_napi_id EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages EXPORT_SYMBOL vmlinux 0x4303e468 serio_interrupt +EXPORT_SYMBOL vmlinux 0x43071067 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x430eef4f __hw_addr_sync_dev EXPORT_SYMBOL vmlinux 0x4312f0c6 d_rehash EXPORT_SYMBOL vmlinux 0x4316fbbf seq_puts EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate -EXPORT_SYMBOL vmlinux 0x4328f9cc vfs_link +EXPORT_SYMBOL vmlinux 0x433efbf2 scsi_host_busy EXPORT_SYMBOL vmlinux 0x4349de75 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x4350dbda crypto_sha256_update EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x4352c1ed tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x4353fe0b __skb_free_datagram_locked EXPORT_SYMBOL vmlinux 0x436c6cb5 fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0x43752fd1 scmd_printk EXPORT_SYMBOL vmlinux 0x43771831 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x4377e9d7 inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp EXPORT_SYMBOL vmlinux 0x4380d34b fb_set_suspend +EXPORT_SYMBOL vmlinux 0x438129bd flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x43827a5c scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot EXPORT_SYMBOL vmlinux 0x43c82edf wait_for_completion_io_timeout EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc EXPORT_SYMBOL vmlinux 0x43e58bdb __post_watch_notification -EXPORT_SYMBOL vmlinux 0x43f654ba tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x4412d4a6 fget_raw EXPORT_SYMBOL vmlinux 0x441b8082 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x44406dbe pid_task -EXPORT_SYMBOL vmlinux 0x44456ea1 sock_from_file +EXPORT_SYMBOL vmlinux 0x441f5004 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x442d970e zap_page_range +EXPORT_SYMBOL vmlinux 0x442e26b0 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x4434568a devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x444256ae vfs_mknod EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x445e4fd2 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x445827b8 netlink_ns_capable EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x446b4e43 of_mdio_find_device EXPORT_SYMBOL vmlinux 0x446dec79 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x448152b3 release_pages EXPORT_SYMBOL vmlinux 0x4488bc8a prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x44a6b923 tcp_time_wait EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44a9417e skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x44c619e7 tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0x44d34e77 pci_stop_and_remove_bus_device EXPORT_SYMBOL vmlinux 0x44dc3c28 task_work_add EXPORT_SYMBOL vmlinux 0x44e03d3a gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0x44e668ae xfrm_trans_queue EXPORT_SYMBOL vmlinux 0x44e668ba kill_anon_super EXPORT_SYMBOL vmlinux 0x44e9a829 match_token EXPORT_SYMBOL vmlinux 0x44f00c04 fs_param_is_path -EXPORT_SYMBOL vmlinux 0x44f506e1 scsi_report_opcode EXPORT_SYMBOL vmlinux 0x45006cee default_red EXPORT_SYMBOL vmlinux 0x450bd37e __pmd_index_size EXPORT_SYMBOL vmlinux 0x450d640b dma_fence_enable_sw_signaling EXPORT_SYMBOL vmlinux 0x452287df gen_pool_best_fit EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x452c20c2 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x4532038a xfrm_user_policy EXPORT_SYMBOL vmlinux 0x45340b26 mipi_dsi_device_unregister EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled EXPORT_SYMBOL vmlinux 0x454fa26e devm_ioport_map EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update EXPORT_SYMBOL vmlinux 0x455d7d71 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x4564db7a ipv6_find_hdr EXPORT_SYMBOL vmlinux 0x457678d3 dquot_disable EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45862378 wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0x4580fb81 write_one_page +EXPORT_SYMBOL vmlinux 0x4594cb0c freezing_slow_path EXPORT_SYMBOL vmlinux 0x459e0dc8 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0x45cb720a flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x45a40132 netlink_capable +EXPORT_SYMBOL vmlinux 0x45c6fbe9 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x45cac379 neigh_ifdown EXPORT_SYMBOL vmlinux 0x45ce9999 d_alloc +EXPORT_SYMBOL vmlinux 0x45d54e0e jbd2_journal_extend EXPORT_SYMBOL vmlinux 0x45f1a888 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x45f37c99 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x45fddd59 phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0x46001d34 percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0x460a8e07 __neigh_create EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user EXPORT_SYMBOL vmlinux 0x4626b420 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x46370e04 vfs_path_lookup EXPORT_SYMBOL vmlinux 0x46632bbe dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x466529cd ip_sock_set_freebind EXPORT_SYMBOL vmlinux 0x466c14a7 __delay EXPORT_SYMBOL vmlinux 0x4674ec42 __pgd_val_bits -EXPORT_SYMBOL vmlinux 0x46759eaf __breadahead EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x4697517b security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46b41668 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x46b8c55d ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x46afc00a mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0x46bda794 dquot_claim_space_nodirty EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46e3f487 thread_group_exited +EXPORT_SYMBOL vmlinux 0x46df9f2d ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x46f1b410 scsi_eh_restore_cmnd EXPORT_SYMBOL vmlinux 0x46f9f2b5 xa_find_after -EXPORT_SYMBOL vmlinux 0x46fc8d6b __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x46fa3320 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x46faa1a1 eth_header_parse +EXPORT_SYMBOL vmlinux 0x46ff26e6 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x46ffa157 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x4705ae01 xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset -EXPORT_SYMBOL vmlinux 0x47153972 poll_initwait +EXPORT_SYMBOL vmlinux 0x47091a0a xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x4721bc74 __breadahead_gfp EXPORT_SYMBOL vmlinux 0x4724ec2b agp_put_bridge +EXPORT_SYMBOL vmlinux 0x472a678b scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0x472c8764 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x4755a576 inet_csk_reset_keepalive_timer EXPORT_SYMBOL vmlinux 0x475943d4 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x47597ea2 user_path_create EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x4777c912 skb_dequeue -EXPORT_SYMBOL vmlinux 0x479a0dc9 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x4785f1bc tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x4786e161 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x4786fc14 __sock_i_ino EXPORT_SYMBOL vmlinux 0x479f5d4c __ps2_command -EXPORT_SYMBOL vmlinux 0x47a50357 dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0x47b82c16 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x47bdbfb7 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x47aeae7f vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x47bc0259 phy_mac_interrupt 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 0x47c7e5a6 of_find_property -EXPORT_SYMBOL vmlinux 0x47ce79d4 __dynamic_ibdev_dbg EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user EXPORT_SYMBOL vmlinux 0x47d9acef rproc_add_carveout EXPORT_SYMBOL vmlinux 0x47e86954 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x47eda852 xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0x4803885d bio_free_pages -EXPORT_SYMBOL vmlinux 0x4810793a ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x481177bb put_devmap_managed_page EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next EXPORT_SYMBOL vmlinux 0x481c14c1 input_get_timestamp EXPORT_SYMBOL vmlinux 0x4825481b __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x4826c9cf phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0x4829a47e memcpy EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x48400485 security_sb_remount EXPORT_SYMBOL vmlinux 0x48413b72 blk_execute_rq EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4845a0f7 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x48431d1a dev_change_proto_down_generic EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x4856f739 giveup_altivec EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485b5eca tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x4867704f dcb_setapp EXPORT_SYMBOL vmlinux 0x486c17db __xa_erase EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x489979e4 nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim -EXPORT_SYMBOL vmlinux 0x48a31e73 inet_bind EXPORT_SYMBOL vmlinux 0x48a81d7e vfio_group_pin_pages EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48ac8f3d mdio_bus_type +EXPORT_SYMBOL vmlinux 0x48b08494 __lock_page +EXPORT_SYMBOL vmlinux 0x48b5ae0c skb_free_datagram EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48d6ad6c genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x48db5987 tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0x48e03c06 cdev_device_del EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert EXPORT_SYMBOL vmlinux 0x4927a2c0 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x4939e7c0 dev_get_flags EXPORT_SYMBOL vmlinux 0x49486701 dm_table_get_size EXPORT_SYMBOL vmlinux 0x4950b799 set_blocksize EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 EXPORT_SYMBOL vmlinux 0x49565f3a path_has_submounts EXPORT_SYMBOL vmlinux 0x496f41c7 param_get_ushort +EXPORT_SYMBOL vmlinux 0x4974974e ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x497523b4 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x49768ec1 dev_mc_del +EXPORT_SYMBOL vmlinux 0x49805675 fixed_size_llseek EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x499869da inet_sk_set_state EXPORT_SYMBOL vmlinux 0x499bfc6d __per_cpu_offset EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum EXPORT_SYMBOL vmlinux 0x49a9a182 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x49ccb8e6 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x49cf5a31 rtas +EXPORT_SYMBOL vmlinux 0x49acf23e of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x49ad1cee mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x49af4fcb mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x49d74f01 fib_notifier_ops_unregister EXPORT_SYMBOL vmlinux 0x49e136aa d_exact_alias -EXPORT_SYMBOL vmlinux 0x49e42c69 phy_suspend EXPORT_SYMBOL vmlinux 0x49e49d5b mark_info_dirty -EXPORT_SYMBOL vmlinux 0x4a09b6ca vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0x4a3b6979 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x4a28e695 eth_header_cache +EXPORT_SYMBOL vmlinux 0x4a394e2e __hw_addr_ref_unsync_dev EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 EXPORT_SYMBOL vmlinux 0x4a55c8ea ioremap_wc +EXPORT_SYMBOL vmlinux 0x4a5a061c ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x4a62af1e ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x4a68c2fb generic_perform_write EXPORT_SYMBOL vmlinux 0x4a6a33df tty_port_close_end +EXPORT_SYMBOL vmlinux 0x4a70a634 disk_start_io_acct EXPORT_SYMBOL vmlinux 0x4a71d157 to_nd_dax +EXPORT_SYMBOL vmlinux 0x4a8167f8 starget_for_each_device EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a99fb42 mmc_register_driver EXPORT_SYMBOL vmlinux 0x4a9c81b2 srp_rport_get EXPORT_SYMBOL vmlinux 0x4a9f58a9 vc_cons +EXPORT_SYMBOL vmlinux 0x4aa388d5 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0x4ab90e16 kvmppc_hv_find_lock_hpte -EXPORT_SYMBOL vmlinux 0x4abe3eb4 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x4ac3fadf netif_set_xps_queue EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request +EXPORT_SYMBOL vmlinux 0x4ad2e5fe skb_vlan_push EXPORT_SYMBOL vmlinux 0x4ada8954 nvdimm_namespace_disk_name EXPORT_SYMBOL vmlinux 0x4ae5c970 max8925_set_bits EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 -EXPORT_SYMBOL vmlinux 0x4af9ecdf tcp_sendpage EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b12636d consume_skb -EXPORT_SYMBOL vmlinux 0x4b41bc51 xfrm_input +EXPORT_SYMBOL vmlinux 0x4b24ba03 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x4b369246 scsi_dma_unmap EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b730446 get_fs_type +EXPORT_SYMBOL vmlinux 0x4b72b35d skb_append EXPORT_SYMBOL vmlinux 0x4b738195 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x4b9b725b sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x4bb24be2 __alloc_skb EXPORT_SYMBOL vmlinux 0x4bbf1b6b mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x4bc18f6b generic_file_mmap -EXPORT_SYMBOL vmlinux 0x4bdaa8b5 mdiobus_free +EXPORT_SYMBOL vmlinux 0x4bdf1121 inet_sock_destruct EXPORT_SYMBOL vmlinux 0x4be21518 truncate_inode_pages EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name EXPORT_SYMBOL vmlinux 0x4bf7dd79 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x4c2bc3b8 of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x4bfd66df mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x4c03b7c6 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x4c07570d inet_frag_kill +EXPORT_SYMBOL vmlinux 0x4c1ecf94 security_sb_clone_mnt_opts EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c421500 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x4c6f6327 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0x4c81a615 netdev_alert +EXPORT_SYMBOL vmlinux 0x4c45aebf __i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x4c9465d0 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x4c9e301e dev_addr_add EXPORT_SYMBOL vmlinux 0x4ca8a541 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x4cb547b8 i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0x4cba06ad hmm_range_fault EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cc0ce12 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x4cc48362 refresh_frequency_limits EXPORT_SYMBOL vmlinux 0x4cc6534b cpu_l2_cache_map -EXPORT_SYMBOL vmlinux 0x4ceda60d of_clk_get +EXPORT_SYMBOL vmlinux 0x4cefd46f dev_get_phys_port_id EXPORT_SYMBOL vmlinux 0x4d0b5a7e kmem_cache_alloc_bulk EXPORT_SYMBOL vmlinux 0x4d0c90e3 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x4d270a07 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x4d2f747b scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x4d4d6013 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x4d2dbf26 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x4d379ce5 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x4d4a61e1 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x4d4cd83f brioctl_set EXPORT_SYMBOL vmlinux 0x4d4ed69c pci_reenable_device -EXPORT_SYMBOL vmlinux 0x4d509203 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x4d59d62a cookie_ecn_ok EXPORT_SYMBOL vmlinux 0x4d5c654f blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x4d5ff171 sock_no_sendmsg_locked EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic EXPORT_SYMBOL vmlinux 0x4d6ae35f rps_sock_flow_table EXPORT_SYMBOL vmlinux 0x4d783549 configfs_register_group EXPORT_SYMBOL vmlinux 0x4d924f20 memremap EXPORT_SYMBOL vmlinux 0x4d95d6d1 memcpy_flushcache EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4dba6413 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x4ddf28c3 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x4daddb26 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x4dbd042e scsi_report_opcode EXPORT_SYMBOL vmlinux 0x4ddf3d33 proc_mkdir EXPORT_SYMBOL vmlinux 0x4de997af config_group_init -EXPORT_SYMBOL vmlinux 0x4dec735c vlan_vid_add +EXPORT_SYMBOL vmlinux 0x4dea89f1 udp_seq_stop EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read EXPORT_SYMBOL vmlinux 0x4df45de3 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x4df6f785 phy_loopback +EXPORT_SYMBOL vmlinux 0x4e02ddc9 set_user_nice +EXPORT_SYMBOL vmlinux 0x4e1c3e6f of_get_ethdev_address EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0x4e5a82fe clear_page_dirty_for_io EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7b8162 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x4e82c038 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x4e8c3f63 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x4e7bf375 giveup_all EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eb668ba sock_efree EXPORT_SYMBOL vmlinux 0x4eb7ae3d hvc_get_chars +EXPORT_SYMBOL vmlinux 0x4ebda2b1 unix_get_socket EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4f0d3dce devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x4ec8c109 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x4ee81437 ppp_unit_number EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2e7998 PageMovable EXPORT_SYMBOL vmlinux 0x4f394b18 dec_node_page_state -EXPORT_SYMBOL vmlinux 0x4f3b27fa netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x4f774d72 sk_net_capable -EXPORT_SYMBOL vmlinux 0x4f864c16 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x4f4c20ff inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x4f5b0bad __set_page_dirty_no_writeback EXPORT_SYMBOL vmlinux 0x4fa0c8b7 register_key_type EXPORT_SYMBOL vmlinux 0x4fa65563 gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x4fab39a5 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x4fbe93cf write_inode_now EXPORT_SYMBOL vmlinux 0x4fc95eaa fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x4fcd693e km_state_expired EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x50004f79 phy_attach EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x50112150 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x5010892f security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x501424bd __icmp_send EXPORT_SYMBOL vmlinux 0x501c9fa9 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x504f3c02 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x50306a4d dev_addr_flush +EXPORT_SYMBOL vmlinux 0x503e5e83 generic_write_end +EXPORT_SYMBOL vmlinux 0x5047ce31 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x50624917 sha1_init EXPORT_SYMBOL vmlinux 0x506d0a7d pci_bus_assign_resources EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x50749c2b xp_raw_get_data EXPORT_SYMBOL vmlinux 0x5079c9d7 __pte_index_size EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check EXPORT_SYMBOL vmlinux 0x508fe2d4 seq_lseek @@ -7512,48 +7441,39 @@ EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist EXPORT_SYMBOL vmlinux 0x50b0e906 fuse_mount_destroy EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x50bc9412 vmf_insert_mixed EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50c3bb93 skb_checksum EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50e35765 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x50e5ae16 udp6_csum_init EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x510d47dc vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x51219b7c jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x5147584f phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x5162f23f clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x5111b1ad __break_lease +EXPORT_SYMBOL vmlinux 0x5119ddfe jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x513cccbb jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x514465f7 unix_attach_fds EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x517387c1 dev_close EXPORT_SYMBOL vmlinux 0x517fd661 blkdev_issue_discard EXPORT_SYMBOL vmlinux 0x518540ac dup_iter -EXPORT_SYMBOL vmlinux 0x5193fa2e tcp_conn_request EXPORT_SYMBOL vmlinux 0x519c6101 mdio_device_reset EXPORT_SYMBOL vmlinux 0x51a51499 dev_pm_opp_unregister_notifier EXPORT_SYMBOL vmlinux 0x51a89d83 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x51b18196 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x51b56ed1 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x51aa8929 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x51bf298a __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0x51d33805 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x51e00b9c xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0x51e51c46 bio_kmalloc EXPORT_SYMBOL vmlinux 0x51e69ee7 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x51f8078c page_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x51fbd343 pskb_extract EXPORT_SYMBOL vmlinux 0x520dfd08 param_set_uint -EXPORT_SYMBOL vmlinux 0x52180794 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x521f5815 dev_set_threaded -EXPORT_SYMBOL vmlinux 0x52543ebe no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x521a433b qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x521e46fa capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x52320347 inet6_offloads EXPORT_SYMBOL vmlinux 0x525db41a csum_partial_copy_generic -EXPORT_SYMBOL vmlinux 0x525ee56b tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0x52690952 bdevname EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5271dfe7 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x5287d641 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x52859605 lru_cache_add EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x529f1129 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x52b71081 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x52b7c868 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x52c11a70 kill_fasync -EXPORT_SYMBOL vmlinux 0x52d09bb7 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x52c9b317 sched_autogroup_detach EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init EXPORT_SYMBOL vmlinux 0x52dc2d7d dma_unmap_sg_attrs EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc @@ -7562,7 +7482,6 @@ EXPORT_SYMBOL vmlinux 0x52e8b396 md_bitmap_close_sync EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt EXPORT_SYMBOL vmlinux 0x52f16e11 dma_resv_fini EXPORT_SYMBOL vmlinux 0x52f4ac75 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x5300ffe3 inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0x5305be13 dquot_quota_sync EXPORT_SYMBOL vmlinux 0x5308e350 __vmalloc_start EXPORT_SYMBOL vmlinux 0x5309b27c param_get_uint @@ -7571,160 +7490,162 @@ EXPORT_SYMBOL vmlinux 0x5322bf62 param_set_long EXPORT_SYMBOL vmlinux 0x533206b5 sort_r EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf EXPORT_SYMBOL vmlinux 0x5345a662 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x5349e790 dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0x53550fd4 vif_device_init EXPORT_SYMBOL vmlinux 0x535d2f61 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x536fe6f1 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x5374225b of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x537e269d ppp_input_error EXPORT_SYMBOL vmlinux 0x5380197e nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0x53a301f1 dst_destroy +EXPORT_SYMBOL vmlinux 0x53972793 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x53a6374f twl6040_power EXPORT_SYMBOL vmlinux 0x53ae167b blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x53b79bb0 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x53b9a61b nobh_writepage -EXPORT_SYMBOL vmlinux 0x53d25083 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x53d4bf93 sk_stream_error +EXPORT_SYMBOL vmlinux 0x53bf9a0c sock_bind_add EXPORT_SYMBOL vmlinux 0x53e14182 scsi_register_interface EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x54009548 of_phy_find_device -EXPORT_SYMBOL vmlinux 0x540ae6e6 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x540457a0 phy_init_eee +EXPORT_SYMBOL vmlinux 0x5411c486 genphy_restart_aneg EXPORT_SYMBOL vmlinux 0x5412c7c7 up EXPORT_SYMBOL vmlinux 0x54135038 param_set_byte EXPORT_SYMBOL vmlinux 0x543e7aaa devm_pci_remap_iospace EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5450f808 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x54522881 mmc_wait_for_cmd EXPORT_SYMBOL vmlinux 0x545c0ad4 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x548026ef phy_init_eee +EXPORT_SYMBOL vmlinux 0x54694552 dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0x548c699a to_nd_pfn EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54bb928e __mdiobus_register EXPORT_SYMBOL vmlinux 0x54bec89b backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x54c27439 dst_release EXPORT_SYMBOL vmlinux 0x54c82b76 simple_release_fs EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x54e0f3a1 jbd2_fc_wait_bufs EXPORT_SYMBOL vmlinux 0x54e3d5fd __pmd_frag_nr EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54f352c7 set_bh_page +EXPORT_SYMBOL vmlinux 0x54f8238d ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x54fd5c17 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x54ffb127 security_sctp_bind_connect EXPORT_SYMBOL vmlinux 0x550051d8 mipi_dsi_dcs_set_display_on EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5508ef40 nf_log_unregister EXPORT_SYMBOL vmlinux 0x550ef898 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x5510fe92 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x55136d8a ip_defrag EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color EXPORT_SYMBOL vmlinux 0x551ca0ed thaw_super -EXPORT_SYMBOL vmlinux 0x551f2f81 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x552180e2 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x5539de5f dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x55330fbe mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x5542f502 jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched EXPORT_SYMBOL vmlinux 0x55686530 __arch_clear_user EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x557a6f47 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x557f4d00 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x5588d477 proto_unregister EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x559791f9 unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0x55a6ca2c pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x55aa7607 inet_del_protocol EXPORT_SYMBOL vmlinux 0x55ab8a66 set_capacity -EXPORT_SYMBOL vmlinux 0x55abab21 napi_get_frags -EXPORT_SYMBOL vmlinux 0x55c7bbf7 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x55dcd116 skb_headers_offset_update EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 EXPORT_SYMBOL vmlinux 0x55e5ee64 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x55f1131a phy_register_fixup_for_uid EXPORT_SYMBOL vmlinux 0x5603351f dm_kobject_release EXPORT_SYMBOL vmlinux 0x561918d9 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x56245b18 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x56244f93 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x562c95de gro_find_complete_by_type EXPORT_SYMBOL vmlinux 0x562e9776 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0x5633d48a fc_mount EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x56368164 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x563d860a send_sig +EXPORT_SYMBOL vmlinux 0x56427d9a skb_store_bits EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x5663a9ff netlink_rcv_skb EXPORT_SYMBOL vmlinux 0x5663bc92 jbd2_journal_start EXPORT_SYMBOL vmlinux 0x5668d902 agp_generic_destroy_page EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x56822f2e _dev_crit EXPORT_SYMBOL vmlinux 0x568d726b sg_miter_start -EXPORT_SYMBOL vmlinux 0x5697b424 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x569b556c xfrm_state_add +EXPORT_SYMBOL vmlinux 0x569249cb of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x5693ce6e ip_ct_attach EXPORT_SYMBOL vmlinux 0x56ac2a7c _atomic_dec_and_lock_irqsave EXPORT_SYMBOL vmlinux 0x56ada4b8 from_kuid_munged EXPORT_SYMBOL vmlinux 0x56b2f759 simple_lookup EXPORT_SYMBOL vmlinux 0x56b5d3ed ihold EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x56c4519d filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x56c75553 nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg EXPORT_SYMBOL vmlinux 0x56cad0fc seq_pad EXPORT_SYMBOL vmlinux 0x56e2564c set_anon_super -EXPORT_SYMBOL vmlinux 0x56f194cb xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x56ee4419 tcf_exts_dump EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x5708915d key_type_keyring +EXPORT_SYMBOL vmlinux 0x56f70686 lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0x571442c6 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x571fdbcc blk_get_queue +EXPORT_SYMBOL vmlinux 0x57242221 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x5725f5b4 inet_csk_reset_keepalive_timer EXPORT_SYMBOL vmlinux 0x572ae748 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x572da787 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x5730fbf2 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x5733c14f reuseport_has_conns_set EXPORT_SYMBOL vmlinux 0x573bf253 kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x573d8abd agp_generic_free_by_type EXPORT_SYMBOL vmlinux 0x57434a14 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x57471350 skb_queue_purge EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x574ee5ca tcf_classify EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5776885c inet6_ioctl EXPORT_SYMBOL vmlinux 0x57798e05 seq_putc -EXPORT_SYMBOL vmlinux 0x577b6582 netpoll_poll_dev EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x578f326a kernel_sendpage_locked EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy EXPORT_SYMBOL vmlinux 0x579c950b devm_iounmap -EXPORT_SYMBOL vmlinux 0x579d96f6 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x57a2336c jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x57c33ebb skb_pull EXPORT_SYMBOL vmlinux 0x57c6c0cb key_reject_and_link +EXPORT_SYMBOL vmlinux 0x57daed3a inet_sendmsg EXPORT_SYMBOL vmlinux 0x57ea599d vmemmap -EXPORT_SYMBOL vmlinux 0x57f08b88 udp_push_pending_frames EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info -EXPORT_SYMBOL vmlinux 0x58014d4d arp_xmit +EXPORT_SYMBOL vmlinux 0x5801ae8c inet_release EXPORT_SYMBOL vmlinux 0x58065742 param_ops_uint +EXPORT_SYMBOL vmlinux 0x5812adc5 vfs_mkobj EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate EXPORT_SYMBOL vmlinux 0x5824384c t10_pi_type3_crc EXPORT_SYMBOL vmlinux 0x58272b1d prepare_creds EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x5846ba29 skb_push +EXPORT_SYMBOL vmlinux 0x58621973 arp_create EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x58868f7b dst_init -EXPORT_SYMBOL vmlinux 0x5886d3a6 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x588944c9 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x5896b218 twl6040_reg_read EXPORT_SYMBOL vmlinux 0x589c32f6 agp3_generic_tlbflush EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58ba4966 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0x58bc366b agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0x58c9ad6e ip6_frag_init -EXPORT_SYMBOL vmlinux 0x58ca2d81 jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0x58cb15b3 fb_set_cmap EXPORT_SYMBOL vmlinux 0x58cd120b __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x58d07365 key_unlink EXPORT_SYMBOL vmlinux 0x58d094cf __register_nls -EXPORT_SYMBOL vmlinux 0x58da2e3d write_cache_pages EXPORT_SYMBOL vmlinux 0x58e2737b fs_param_is_s32 EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e6c0d3 zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x58ed3b64 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x59128802 dev_mc_init -EXPORT_SYMBOL vmlinux 0x591d1b06 fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0x5923c773 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x5933a792 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x58faa703 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x590b648e scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x592359df generic_file_open EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x5953dd1f inet_sendmsg -EXPORT_SYMBOL vmlinux 0x5958aee1 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x594cb975 netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x595e44d7 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x5961f8c3 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x596ab361 cad_pid EXPORT_SYMBOL vmlinux 0x59725b96 pci_add_new_bus EXPORT_SYMBOL vmlinux 0x59757699 refcount_dec_and_lock_irqsave EXPORT_SYMBOL vmlinux 0x5977143c pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x5983fe8c fqdir_exit +EXPORT_SYMBOL vmlinux 0x597f31ba mr_table_alloc EXPORT_SYMBOL vmlinux 0x59894fa7 down_write_trylock -EXPORT_SYMBOL vmlinux 0x598d97ce __genphy_config_aneg EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node EXPORT_SYMBOL vmlinux 0x59a2f0ee packing EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated EXPORT_SYMBOL vmlinux 0x59b64eab of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0x59ce01a1 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x59d6126f netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x59dbaefe vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0x59e5566e vga_client_register EXPORT_SYMBOL vmlinux 0x59e83977 request_key_tag EXPORT_SYMBOL vmlinux 0x59f22020 cdev_init @@ -7733,90 +7654,84 @@ 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 0x5a214f1e mntget +EXPORT_SYMBOL vmlinux 0x5a11786e vme_bus_error_handler EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x5a29bf41 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x5a2f23a5 tcf_em_register EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq EXPORT_SYMBOL vmlinux 0x5a48df11 simple_dentry_operations EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a50f16e devfreq_update_interval -EXPORT_SYMBOL vmlinux 0x5a54e6a1 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x5a61fbf3 __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x5a7daedc jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x5a8795c9 inet_offloads +EXPORT_SYMBOL vmlinux 0x5a5f83f8 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x5a78b883 neigh_update EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a96e7e0 __find_get_block EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5a9c775d arp_send EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5ab15aab register_nexthop_notifier EXPORT_SYMBOL vmlinux 0x5ab4bd20 param_set_ullong +EXPORT_SYMBOL vmlinux 0x5acaa302 sock_no_linger EXPORT_SYMBOL vmlinux 0x5adad8e9 tty_unthrottle EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5af280cc pneigh_lookup -EXPORT_SYMBOL vmlinux 0x5af53596 audit_log_start -EXPORT_SYMBOL vmlinux 0x5b05be05 wait_on_page_private_2_killable EXPORT_SYMBOL vmlinux 0x5b09bd7e get_acl -EXPORT_SYMBOL vmlinux 0x5b16be47 skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0x5b315e59 set_disk_ro EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5b45c4 poll_freewait +EXPORT_SYMBOL vmlinux 0x5b6eeeed follow_pfn +EXPORT_SYMBOL vmlinux 0x5b6f5928 kern_path EXPORT_SYMBOL vmlinux 0x5b760467 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x5b89aed4 fwnode_irq_get EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5b9d6dfa nf_register_queue_handler EXPORT_SYMBOL vmlinux 0x5bae1d7d ps2_cmd_aborted EXPORT_SYMBOL vmlinux 0x5bc06f36 tty_do_resize EXPORT_SYMBOL vmlinux 0x5bcbe7c6 of_get_cpu_state_node -EXPORT_SYMBOL vmlinux 0x5bcd6477 read_cache_page EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5be47dc3 security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5c04b03e crypto_sha256_finup EXPORT_SYMBOL vmlinux 0x5c0dd732 kobject_get_unless_zero EXPORT_SYMBOL vmlinux 0x5c291f6c is_nd_dax EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull EXPORT_SYMBOL vmlinux 0x5c4d6626 put_watch_queue EXPORT_SYMBOL vmlinux 0x5c50f87b dma_unmap_resource -EXPORT_SYMBOL vmlinux 0x5c529957 vfs_rename EXPORT_SYMBOL vmlinux 0x5c6bdab5 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x5c8f1037 ethtool_notify EXPORT_SYMBOL vmlinux 0x5c905b8a xmon EXPORT_SYMBOL vmlinux 0x5c908a56 set_cached_acl EXPORT_SYMBOL vmlinux 0x5c928ed0 param_set_short -EXPORT_SYMBOL vmlinux 0x5cb3ca55 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x5cbb77aa tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x5c937023 of_clk_get_by_name EXPORT_SYMBOL vmlinux 0x5cbe5a57 fsync_bdev -EXPORT_SYMBOL vmlinux 0x5cc4ee60 netdev_printk -EXPORT_SYMBOL vmlinux 0x5cdf8c2b sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x5cbf2ef8 scsi_unblock_requests EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d1f4f74 alloc_fddidev -EXPORT_SYMBOL vmlinux 0x5d20b95d __ip_dev_find -EXPORT_SYMBOL vmlinux 0x5d2b1568 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x5d12078f of_device_unregister +EXPORT_SYMBOL vmlinux 0x5d3b90e2 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d4fe6bb arp_tbl -EXPORT_SYMBOL vmlinux 0x5d5fcf04 __inet_hash -EXPORT_SYMBOL vmlinux 0x5d6cfc70 genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x5d7addb4 flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x5d96aac2 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x5d4c059b kernel_accept +EXPORT_SYMBOL vmlinux 0x5d5f2b62 mmc_command_done +EXPORT_SYMBOL vmlinux 0x5d64025f nf_log_trace +EXPORT_SYMBOL vmlinux 0x5d6dcf3b prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x5d8cd6db udp_poll +EXPORT_SYMBOL vmlinux 0x5d90016f qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x5d91847a dst_discard_out EXPORT_SYMBOL vmlinux 0x5d980fc5 _copy_to_iter -EXPORT_SYMBOL vmlinux 0x5daf54b2 phy_validate_pause -EXPORT_SYMBOL vmlinux 0x5db01b36 dev_uc_del -EXPORT_SYMBOL vmlinux 0x5db37fd9 sk_capable -EXPORT_SYMBOL vmlinux 0x5db67dbc __skb_ext_del -EXPORT_SYMBOL vmlinux 0x5df37bbe mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x5da5d4a2 blk_get_queue +EXPORT_SYMBOL vmlinux 0x5dd9b5d4 __sk_receive_skb EXPORT_SYMBOL vmlinux 0x5df49be6 radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x5df5c33a __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x5e008909 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x5e01845a devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x5e0970a7 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x5e021fc6 has_capability +EXPORT_SYMBOL vmlinux 0x5e046bd0 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x5e06b8de sock_from_file EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e1436b2 unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e8a826b xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x5e4bb52a kernel_listen +EXPORT_SYMBOL vmlinux 0x5e4f4e4c jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x5e6f8e46 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x5e729dc3 ip_sock_set_pktinfo EXPORT_SYMBOL vmlinux 0x5e924a44 clear_user_page EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask EXPORT_SYMBOL vmlinux 0x5e99dfca uaccess_flush_key EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec384fd iterate_fd EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun @@ -7828,27 +7743,20 @@ EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters EXPORT_SYMBOL vmlinux 0x5f0c3889 request_firmware_nowait EXPORT_SYMBOL vmlinux 0x5f113cf8 ps2_init -EXPORT_SYMBOL vmlinux 0x5f25f50a noop_llseek -EXPORT_SYMBOL vmlinux 0x5f2d5627 tcp_time_wait -EXPORT_SYMBOL vmlinux 0x5f4ac699 inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f8381d6 netdev_warn +EXPORT_SYMBOL vmlinux 0x5f7d31bf sock_edemux EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5f91972a generic_write_checks EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo EXPORT_SYMBOL vmlinux 0x5fb516f8 xa_find +EXPORT_SYMBOL vmlinux 0x5fb74984 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x5fc5b501 phy_queue_state_machine EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fcac9cf security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x5fcb4384 get_task_cred -EXPORT_SYMBOL vmlinux 0x5fccf6cf tcf_action_update_stats EXPORT_SYMBOL vmlinux 0x5fd58536 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x5fdc5920 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x5fee5f4e pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0x5ffa9367 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x6001bad3 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x6004d612 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x5fdd4593 mmc_of_parse EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen EXPORT_SYMBOL vmlinux 0x6016531a gen_pool_set_algo @@ -7856,11 +7764,8 @@ EXPORT_SYMBOL vmlinux 0x6017cf0e bio_copy_data_iter EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier EXPORT_SYMBOL vmlinux 0x60391259 d_set_d_op -EXPORT_SYMBOL vmlinux 0x604a40e0 devm_mfd_add_devices EXPORT_SYMBOL vmlinux 0x604c1995 radix__local_flush_tlb_mm -EXPORT_SYMBOL vmlinux 0x604f5517 xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x60738f71 nf_hook_slow_list EXPORT_SYMBOL vmlinux 0x607a6a5f input_register_device EXPORT_SYMBOL vmlinux 0x60835f67 sync_file_create EXPORT_SYMBOL vmlinux 0x6087d073 param_set_int @@ -7869,387 +7774,399 @@ EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region EXPORT_SYMBOL vmlinux 0x609815bf mipi_dsi_dcs_set_tear_scanline EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60ac4228 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x60c9ae5b security_inet_conn_request EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60e4d943 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x60e0c7c4 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x60f5613f netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0x61011ccd pci_iomap EXPORT_SYMBOL vmlinux 0x6118dc26 start_thread EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x61294fa1 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x6130e1b1 scsi_set_medium_removal EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get EXPORT_SYMBOL vmlinux 0x6147d448 mach_pseries +EXPORT_SYMBOL vmlinux 0x614a92db tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x614d668c tcp_peek_len +EXPORT_SYMBOL vmlinux 0x6158a4b3 crypto_sha512_finup EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x615e108a udplite_prot +EXPORT_SYMBOL vmlinux 0x615ffbfe nf_register_net_hook EXPORT_SYMBOL vmlinux 0x61601aea input_alloc_absinfo EXPORT_SYMBOL vmlinux 0x6160b320 complete_and_exit +EXPORT_SYMBOL vmlinux 0x6161c583 __set_page_dirty_nobuffers EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x6169a9b9 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x6178229b __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x618911fc numa_node EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61af8628 kernel_accept +EXPORT_SYMBOL vmlinux 0x61b25e1f i2c_smbus_write_block_data EXPORT_SYMBOL vmlinux 0x61b42918 pci_get_device +EXPORT_SYMBOL vmlinux 0x61b492de mdiobus_scan EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61b8c613 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x61baa5fe dev_change_carrier EXPORT_SYMBOL vmlinux 0x61be40c7 config_group_find_item -EXPORT_SYMBOL vmlinux 0x61cadd67 phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0x61cb246f _raw_write_lock -EXPORT_SYMBOL vmlinux 0x61de6392 get_phy_device EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61e65117 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x61e36196 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x61e52efe dev_change_proto_down EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61f2357d qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x61f706a1 twl6040_get_vibralr_status EXPORT_SYMBOL vmlinux 0x62007492 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x620af0f1 reuseport_attach_prog EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x62156026 __sk_mem_reduce_allocated EXPORT_SYMBOL vmlinux 0x621f814a vio_enable_interrupts -EXPORT_SYMBOL vmlinux 0x62262208 flow_rule_match_ip EXPORT_SYMBOL vmlinux 0x622813e3 dma_resv_reserve_shared EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x6239a896 mmc_put_card EXPORT_SYMBOL vmlinux 0x623a0758 srp_reconnect_rport -EXPORT_SYMBOL vmlinux 0x624495a4 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x62621e3d filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x62448777 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x6252ad5a sock_i_uid +EXPORT_SYMBOL vmlinux 0x62602cda napi_gro_frags +EXPORT_SYMBOL vmlinux 0x626080ee xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x6267775c devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister EXPORT_SYMBOL vmlinux 0x6280f5d8 radix_tree_tag_clear EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628ab78e tcp_sock_set_keepidle EXPORT_SYMBOL vmlinux 0x62934f95 page_pool_alloc_frag EXPORT_SYMBOL vmlinux 0x62957374 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x62a0ddff alloc_pages EXPORT_SYMBOL vmlinux 0x62a34c08 inc_nlink EXPORT_SYMBOL vmlinux 0x62aa0ab4 pci_enable_wake -EXPORT_SYMBOL vmlinux 0x62bf0b1c scsi_host_put +EXPORT_SYMBOL vmlinux 0x62b0c486 devm_devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin +EXPORT_SYMBOL vmlinux 0x62c97bb1 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x62e89cd4 scsi_device_get +EXPORT_SYMBOL vmlinux 0x62f8aeb4 __netdev_notify_peers EXPORT_SYMBOL vmlinux 0x62f8cd0b posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x630bd596 __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x6324d359 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x632881c7 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x631fc39d get_phy_device +EXPORT_SYMBOL vmlinux 0x63290902 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x63298735 vfs_fsync +EXPORT_SYMBOL vmlinux 0x63363f0f giveup_fpu +EXPORT_SYMBOL vmlinux 0x633fe68c mmc_unregister_driver EXPORT_SYMBOL vmlinux 0x634e58ab pci_release_selected_regions EXPORT_SYMBOL vmlinux 0x63505e29 input_register_handle -EXPORT_SYMBOL vmlinux 0x635b6bdc scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0x635c4db9 agp_free_memory -EXPORT_SYMBOL vmlinux 0x635cd601 migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0x637167a2 __sock_create +EXPORT_SYMBOL vmlinux 0x636be82b __brelse EXPORT_SYMBOL vmlinux 0x637d7eb9 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x638cfe90 filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0x6391ac6c blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x63a16363 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x63a45cb3 jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63af92e7 skb_headers_offset_update EXPORT_SYMBOL vmlinux 0x63bffd8e neigh_proc_dointvec EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c5ec4f dump_align +EXPORT_SYMBOL vmlinux 0x63d22fef genphy_c37_config_aneg EXPORT_SYMBOL vmlinux 0x63d7b12f seq_dentry EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink EXPORT_SYMBOL vmlinux 0x63f65bd0 vfs_get_super EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off EXPORT_SYMBOL vmlinux 0x642d049f truncate_setsize -EXPORT_SYMBOL vmlinux 0x643558fd ppp_output_wakeup EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x64452e08 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x6451717b phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x6443fdcc sockfd_lookup EXPORT_SYMBOL vmlinux 0x6451b5fa zpool_register_driver -EXPORT_SYMBOL vmlinux 0x6458a893 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x6452891c trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x64576881 i2c_get_adapter EXPORT_SYMBOL vmlinux 0x645ec77c dma_map_page_attrs EXPORT_SYMBOL vmlinux 0x64651f06 fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0x646bfcbb kernel_sendpage +EXPORT_SYMBOL vmlinux 0x64656b05 inet6_release +EXPORT_SYMBOL vmlinux 0x64678d3c nf_getsockopt +EXPORT_SYMBOL vmlinux 0x6473055c genphy_write_mmd_unsupported EXPORT_SYMBOL vmlinux 0x6477f400 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x647ec3a5 netif_rx_ni EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 EXPORT_SYMBOL vmlinux 0x64831cb8 xa_extract -EXPORT_SYMBOL vmlinux 0x648618c0 udp6_seq_ops EXPORT_SYMBOL vmlinux 0x6487f363 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x648a06f0 __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x648b0fd4 kmem_cache_size EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x6490c46c xfrm_register_type EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu EXPORT_SYMBOL vmlinux 0x64aa92bf refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x64b2f7d3 netif_device_attach +EXPORT_SYMBOL vmlinux 0x64b5fbae ip6tun_encaps EXPORT_SYMBOL vmlinux 0x64b828f8 of_find_node_by_name EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64fa0fc2 dst_dev_put +EXPORT_SYMBOL vmlinux 0x64fb818f ip6_frag_next 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 0x6526f7c1 fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop EXPORT_SYMBOL vmlinux 0x6561082a pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x6564200e devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x65693d13 sock_no_shutdown EXPORT_SYMBOL vmlinux 0x656b0009 vfio_pin_pages EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x6578dcaf icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0x657b9994 radix_tree_next_chunk EXPORT_SYMBOL vmlinux 0x6582e152 rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x658349d2 skb_store_bits +EXPORT_SYMBOL vmlinux 0x65846d95 block_commit_write EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x659a6007 starget_for_each_device EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a3d704 mmc_erase EXPORT_SYMBOL vmlinux 0x65c6bca6 devm_request_any_context_irq EXPORT_SYMBOL vmlinux 0x65cc943d fscrypt_free_bounce_page EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict 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 0x65f9cab2 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x660bd49c xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x65ea1276 srp_timed_out +EXPORT_SYMBOL vmlinux 0x65ed2329 inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0x660e33ff pci_bus_write_config_word EXPORT_SYMBOL vmlinux 0x6633f972 __traceiter_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x663a8930 pci_match_id EXPORT_SYMBOL vmlinux 0x66432492 is_bad_inode EXPORT_SYMBOL vmlinux 0x6643b86c input_set_capability +EXPORT_SYMBOL vmlinux 0x66527057 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x6659b0a8 tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin -EXPORT_SYMBOL vmlinux 0x66707c2f inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0x66739caf input_mt_sync_frame EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x6678edbb nobh_truncate_page EXPORT_SYMBOL vmlinux 0x6694dda0 textsearch_find_continuous EXPORT_SYMBOL vmlinux 0x669f8030 arch_free_page -EXPORT_SYMBOL vmlinux 0x66b2dda7 qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66bfafc5 gro_cells_receive EXPORT_SYMBOL vmlinux 0x66ca02ee cpumask_any_but -EXPORT_SYMBOL vmlinux 0x66d4648e flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x66e106cf __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x66f9a23d ip_ct_attach -EXPORT_SYMBOL vmlinux 0x66fa0106 write_inode_now -EXPORT_SYMBOL vmlinux 0x6712475e __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x6714ae37 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x6735282f vme_irq_free +EXPORT_SYMBOL vmlinux 0x66d661f6 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x66f34eb9 read_cache_pages +EXPORT_SYMBOL vmlinux 0x66fc2d7c xfrm_sad_getinfo EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x67470fe0 scsi_done +EXPORT_SYMBOL vmlinux 0x6747f9e2 vfs_rmdir EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x67586664 netlink_broadcast_filtered EXPORT_SYMBOL vmlinux 0x676bcbde posix_acl_chmod EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc EXPORT_SYMBOL vmlinux 0x678c26ee vio_unregister_driver -EXPORT_SYMBOL vmlinux 0x678eb9f5 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x679612d0 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x679b7afc netlink_net_capable +EXPORT_SYMBOL vmlinux 0x679c4a29 inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67d4430a dev_mc_add EXPORT_SYMBOL vmlinux 0x67e368a6 __nla_reserve EXPORT_SYMBOL vmlinux 0x67fc472c gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0x6802d03b flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0x68109d6b blk_mq_requeue_request EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0x684e7fbd __devm_release_region +EXPORT_SYMBOL vmlinux 0x6854a6de inode_sub_bytes EXPORT_SYMBOL vmlinux 0x685687b0 idr_replace EXPORT_SYMBOL vmlinux 0x686818bb down_read +EXPORT_SYMBOL vmlinux 0x686ba9ee inet6_add_offload EXPORT_SYMBOL vmlinux 0x68712c6c dma_sync_sg_for_cpu EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval EXPORT_SYMBOL vmlinux 0x6882f271 start_tty EXPORT_SYMBOL vmlinux 0x68a30ffe shared_processor EXPORT_SYMBOL vmlinux 0x68a459f8 pci_wake_from_d3 EXPORT_SYMBOL vmlinux 0x68ae31a1 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x68d34ddf tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x68b63598 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x68c7de2e netlink_ack +EXPORT_SYMBOL vmlinux 0x68dd4b27 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x68e010fa crypto_sha256_finup EXPORT_SYMBOL vmlinux 0x68ec451e iov_iter_gap_alignment EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s EXPORT_SYMBOL vmlinux 0x6901fb86 ram_aops +EXPORT_SYMBOL vmlinux 0x6902052f ppp_dev_name EXPORT_SYMBOL vmlinux 0x6909440b __pgd_table_size -EXPORT_SYMBOL vmlinux 0x690d0c45 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0x69160f1f __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x69159709 scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x692d777e i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x693245ad dev_uc_sync +EXPORT_SYMBOL vmlinux 0x69296671 trace_event_printf EXPORT_SYMBOL vmlinux 0x69341280 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x6942ecca mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0x69585523 __ksize EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x696da6e2 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x696a8e69 console_start EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697235f4 generic_file_read_iter EXPORT_SYMBOL vmlinux 0x697668de ps2_handle_response EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad EXPORT_SYMBOL vmlinux 0x6980dc10 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x698d0362 nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0x69a32dd7 set_user_nice EXPORT_SYMBOL vmlinux 0x69a5624b proc_create -EXPORT_SYMBOL vmlinux 0x69c1c33e dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x69ac7ad8 dst_init +EXPORT_SYMBOL vmlinux 0x69dacdc1 sk_send_sigurg EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le -EXPORT_SYMBOL vmlinux 0x69de6dc8 proto_register EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69fc09eb phy_start_aneg EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree EXPORT_SYMBOL vmlinux 0x6a0ae2b8 simple_get_link -EXPORT_SYMBOL vmlinux 0x6a1a3f36 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x6a240651 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x6a141a5c dev_pick_tx_cpu_id EXPORT_SYMBOL vmlinux 0x6a315bea mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x6a383a52 udp_gro_receive EXPORT_SYMBOL vmlinux 0x6a44b874 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x6a57ef6c qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a6d59ec flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a71bd3e inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x6a6fcb0a kernel_bind EXPORT_SYMBOL vmlinux 0x6a82d8f8 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x6a870a90 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x6a8c312c phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0x6a9698f4 mac_find_mode +EXPORT_SYMBOL vmlinux 0x6a97d901 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x6a9f6985 jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6ab17cf6 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x6abc0e0d eth_header_cache +EXPORT_SYMBOL vmlinux 0x6ab3eedb jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x6ab4f36a km_query EXPORT_SYMBOL vmlinux 0x6abc2535 uart_get_divisor EXPORT_SYMBOL vmlinux 0x6ade6454 trace_print_array_seq EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af0d571 tcf_idrinfo_destroy EXPORT_SYMBOL vmlinux 0x6afd307d show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x6b0ac8bc vlan_ioctl_set EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user -EXPORT_SYMBOL vmlinux 0x6b16e808 security_task_getsecid_subj EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack EXPORT_SYMBOL vmlinux 0x6b483ed0 dquot_set_dqinfo EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b5f6315 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x6b6350fa sock_wake_async EXPORT_SYMBOL vmlinux 0x6b831392 eeh_dev_release EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval EXPORT_SYMBOL vmlinux 0x6b876330 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x6b88110a dev_deactivate EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow EXPORT_SYMBOL vmlinux 0x6b9dada8 registered_fb EXPORT_SYMBOL vmlinux 0x6badcd1e rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0x6baf143c console_stop EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc46225 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x6bcc6359 tcp_poll EXPORT_SYMBOL vmlinux 0x6bd606ad pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0x6bd6e2ca input_mt_get_slot_by_key EXPORT_SYMBOL vmlinux 0x6bdeab7f down_read_interruptible 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 0x6c13790b phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0x6c1a1a2b put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0x6c1dd208 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x6bf7c2e6 netif_rx +EXPORT_SYMBOL vmlinux 0x6c050510 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x6c1a8e84 ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL vmlinux 0x6c2ac50c vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x6c301951 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x6c3da195 skb_split +EXPORT_SYMBOL vmlinux 0x6c429902 filemap_fdatawrite EXPORT_SYMBOL vmlinux 0x6c49a512 timestamp_truncate -EXPORT_SYMBOL vmlinux 0x6c4c7da1 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x6c57d826 __traceiter_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c6326a9 stream_open EXPORT_SYMBOL vmlinux 0x6c6a3dd9 devm_ioremap_np -EXPORT_SYMBOL vmlinux 0x6c6b7e1a xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x6c727322 mipi_dsi_dcs_set_page_address EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x6c8332c1 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x6caa76e6 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x6c8d355e pipe_unlock +EXPORT_SYMBOL vmlinux 0x6c8dfa1f inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x6cac832f sync_filesystem EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep -EXPORT_SYMBOL vmlinux 0x6cc26270 nonseekable_open -EXPORT_SYMBOL vmlinux 0x6cd9fa59 mmc_sw_reset -EXPORT_SYMBOL vmlinux 0x6ce06da6 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x6ccdbcac set_binfmt +EXPORT_SYMBOL vmlinux 0x6cdbb84a security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x6cdd1ca2 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x6ce01ab9 eth_type_trans +EXPORT_SYMBOL vmlinux 0x6ce9bf72 km_new_mapping EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums EXPORT_SYMBOL vmlinux 0x6cf2511b pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x6cfec17a mmc_can_trim -EXPORT_SYMBOL vmlinux 0x6d14d278 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x6d011f63 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x6d133790 generic_permission EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d33a0f9 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0x6d3c5dbc pskb_extract EXPORT_SYMBOL vmlinux 0x6d5121d1 dma_sync_sg_for_device EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0x6d6d00d0 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x6d6efb9a vme_bus_num EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d7e7f73 mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0x6d8de428 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0x6d9d6b21 bfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0x6db77498 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x6dc27dfc neigh_update EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dcffd8e dev_uc_sync EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e00b8a8 sock_create_kern EXPORT_SYMBOL vmlinux 0x6e14e3b4 bdev_check_media_change -EXPORT_SYMBOL vmlinux 0x6e3735db netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x6e411368 posix_lock_file +EXPORT_SYMBOL vmlinux 0x6e420dc9 scsi_block_when_processing_errors EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e76fe9f f_setown -EXPORT_SYMBOL vmlinux 0x6e94131d eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x6e8feefc inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x6e96e127 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0x6e9a448d __pte_frag_nr EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig EXPORT_SYMBOL vmlinux 0x6edba421 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x6ef13ea9 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x6edd01d8 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x6ede388c nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x6ee8af0b scsi_add_device EXPORT_SYMBOL vmlinux 0x6ef6633d of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x6efec9dd nf_register_net_hooks EXPORT_SYMBOL vmlinux 0x6f08b1c6 mempool_exit +EXPORT_SYMBOL vmlinux 0x6f0fbc36 mmc_set_blocklen EXPORT_SYMBOL vmlinux 0x6f1283ee idr_for_each -EXPORT_SYMBOL vmlinux 0x6f1fdd3d dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x6f2b2128 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x6f20e54f ipv6_push_frag_opts EXPORT_SYMBOL vmlinux 0x6f30d1a5 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x6f335680 pipe_lock EXPORT_SYMBOL vmlinux 0x6f3c1dd7 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x6f4be49c jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x6f408a7e napi_gro_flush EXPORT_SYMBOL vmlinux 0x6f525a27 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x6f5937e3 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x6f5eb3bc __dev_get_by_index EXPORT_SYMBOL vmlinux 0x6f5f6af7 seq_escape -EXPORT_SYMBOL vmlinux 0x6f619524 xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0x6f61cb08 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x6f6a54eb netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x6f75dcd6 skb_dump +EXPORT_SYMBOL vmlinux 0x6f7de5cf ip_mc_join_group EXPORT_SYMBOL vmlinux 0x6f8c5f0f of_graph_get_remote_port_parent EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func EXPORT_SYMBOL vmlinux 0x6f9d83f4 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x6faa8a08 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x6fb1baea fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fc24d56 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fe1136d locks_free_lock +EXPORT_SYMBOL vmlinux 0x6fe1c49c lookup_one EXPORT_SYMBOL vmlinux 0x6fe5e135 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x6fecc9c3 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x6fedb7f0 account_page_redirty EXPORT_SYMBOL vmlinux 0x6ff183ad msi_bitmap_alloc_hwirqs EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x70077bc0 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x701e64a2 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x7023a5f5 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x7038376c __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x70069717 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x7006f3fb reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x702cbaf3 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x7032a245 xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0x704115b3 qe_usb_clock_set EXPORT_SYMBOL vmlinux 0x704d9f07 pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x70567b71 xfrm_state_walk EXPORT_SYMBOL vmlinux 0x707f2fbb d_tmpfile EXPORT_SYMBOL vmlinux 0x7088dd09 of_find_mipi_dsi_device_by_node EXPORT_SYMBOL vmlinux 0x709945e9 get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0x70b5a8ee con_copy_unimap +EXPORT_SYMBOL vmlinux 0x70c118c1 _dev_notice EXPORT_SYMBOL vmlinux 0x70c29d5c pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x70ded950 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x70dfd9c3 dev_addr_del -EXPORT_SYMBOL vmlinux 0x70ee97df security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x70f2ca29 pci_find_hose_for_OF_device -EXPORT_SYMBOL vmlinux 0x70f8b82c xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x71051597 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x70cf9a7e pskb_expand_head +EXPORT_SYMBOL vmlinux 0x70dff72f flush_all_to_thread +EXPORT_SYMBOL vmlinux 0x7101ce60 ip_setsockopt EXPORT_SYMBOL vmlinux 0x710929e9 wait_for_completion_killable_timeout EXPORT_SYMBOL vmlinux 0x710c7c8c tty_write_room -EXPORT_SYMBOL vmlinux 0x7129d01b xattr_full_name EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc EXPORT_SYMBOL vmlinux 0x7131bf58 tty_termios_hw_change EXPORT_SYMBOL vmlinux 0x71380ac8 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x7156835c udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk EXPORT_SYMBOL vmlinux 0x715b225f scsi_remove_target -EXPORT_SYMBOL vmlinux 0x716d1517 xfrm6_rcv EXPORT_SYMBOL vmlinux 0x716eec5b flush_dcache_icache_page EXPORT_SYMBOL vmlinux 0x7171121c overflowgid EXPORT_SYMBOL vmlinux 0x7172bcff param_ops_long EXPORT_SYMBOL vmlinux 0x7186f151 posix_acl_to_xattr EXPORT_SYMBOL vmlinux 0x7199f832 cpumask_any_and_distribute EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71a6ec24 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x71a91fbd tcf_idr_create EXPORT_SYMBOL vmlinux 0x71afa006 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x71d998bc scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x71ea37b4 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x71cac9d8 flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0x71ebece0 __invalidate_device -EXPORT_SYMBOL vmlinux 0x71ed4f77 napi_build_skb +EXPORT_SYMBOL vmlinux 0x71f0c239 tso_count_descs EXPORT_SYMBOL vmlinux 0x71f68d98 dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x71f951ce __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x7201c28d inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x7204f8ba free_task +EXPORT_SYMBOL vmlinux 0x720602ee __breadahead EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev EXPORT_SYMBOL vmlinux 0x720b829b pcie_capability_clear_and_set_word EXPORT_SYMBOL vmlinux 0x720ed5cc vfio_unregister_notifier -EXPORT_SYMBOL vmlinux 0x7218e0a1 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x721f9013 sock_common_getsockopt EXPORT_SYMBOL vmlinux 0x723995c9 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x723f30c9 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x723b6f05 ping_prot EXPORT_SYMBOL vmlinux 0x7240ff76 devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0x7248e771 genphy_resume EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x7252bb38 user_path_at_empty EXPORT_SYMBOL vmlinux 0x72535d2c component_match_add_typed -EXPORT_SYMBOL vmlinux 0x72594e13 sk_alloc EXPORT_SYMBOL vmlinux 0x72608c0e do_uaccess_flush +EXPORT_SYMBOL vmlinux 0x726f4218 inode_set_ctime_current +EXPORT_SYMBOL vmlinux 0x728a8836 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x728f088b flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x728fed5b ip_queue_xmit EXPORT_SYMBOL vmlinux 0x7297ea3a mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x729e7706 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x729f27ba phy_disconnect +EXPORT_SYMBOL vmlinux 0x729fbf40 ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma EXPORT_SYMBOL vmlinux 0x72b8042f input_set_poll_interval @@ -8258,36 +8175,35 @@ EXPORT_SYMBOL vmlinux 0x72c3707d input_release_device EXPORT_SYMBOL vmlinux 0x72c6f7f8 i8042_remove_filter EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x73017c56 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x730dab09 inetdev_by_index EXPORT_SYMBOL vmlinux 0x73109446 down_interruptible +EXPORT_SYMBOL vmlinux 0x7314257f dev_mc_add EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config EXPORT_SYMBOL vmlinux 0x731a0e1a seq_read EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base -EXPORT_SYMBOL vmlinux 0x732242a9 sock_init_data_uid -EXPORT_SYMBOL vmlinux 0x7328840e i2c_register_driver +EXPORT_SYMBOL vmlinux 0x731dafa6 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x732d06a3 ptp_cancel_worker_sync EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x733150a8 fqdir_init -EXPORT_SYMBOL vmlinux 0x735b3a42 inet_addr_type -EXPORT_SYMBOL vmlinux 0x73803aff generic_fadvise +EXPORT_SYMBOL vmlinux 0x732f9c00 netdev_warn EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x7382bb6d i2c_smbus_write_i2c_block_data EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73a824ab inet6_csk_route_req EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73b7adb0 generic_permission -EXPORT_SYMBOL vmlinux 0x73c42d82 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x73c7cea6 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x73c8cc30 mmc_release_host -EXPORT_SYMBOL vmlinux 0x73f95b4b xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x7402a7e9 netlink_unicast +EXPORT_SYMBOL vmlinux 0x73b1d145 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x73dba8ff tcp_init_sock +EXPORT_SYMBOL vmlinux 0x7408929c try_to_writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x74122362 skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 EXPORT_SYMBOL vmlinux 0x7439fd86 radix_tree_lookup EXPORT_SYMBOL vmlinux 0x7440e648 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x7442cb0e tcf_qevent_validate_change EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x7468538a __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x747b5eec skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x746e457b sock_setsockopt EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present EXPORT_SYMBOL vmlinux 0x748842e0 prepare_to_wait_exclusive EXPORT_SYMBOL vmlinux 0x74a8e273 scsi_is_sdev_device @@ -8296,120 +8212,131 @@ EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 EXPORT_SYMBOL vmlinux 0x74c18454 gen_replace_estimator EXPORT_SYMBOL vmlinux 0x74d89aaf pci_iomap_range -EXPORT_SYMBOL vmlinux 0x74de060b mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x74e222cb udp_sendmsg EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable EXPORT_SYMBOL vmlinux 0x74f1cd69 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x7523237d ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x75236101 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x7525982e mmc_register_driver EXPORT_SYMBOL vmlinux 0x7537aeda mipi_dsi_dcs_write_buffer EXPORT_SYMBOL vmlinux 0x7538b132 agp_off EXPORT_SYMBOL vmlinux 0x753f755a pcim_iounmap +EXPORT_SYMBOL vmlinux 0x75440108 dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0x754a10d9 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x754f5b2a vme_irq_generate EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x75651d3b file_ns_capable -EXPORT_SYMBOL vmlinux 0x7570265a dev_get_iflink -EXPORT_SYMBOL vmlinux 0x75781019 dev_load +EXPORT_SYMBOL vmlinux 0x756ec788 scsi_scan_host EXPORT_SYMBOL vmlinux 0x75920f28 tty_unlock EXPORT_SYMBOL vmlinux 0x75aa6ca1 __kernel_virt_start +EXPORT_SYMBOL vmlinux 0x75ba7cee __skb_checksum_complete 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 0x75ecc813 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x75d6bb43 of_phy_find_device EXPORT_SYMBOL vmlinux 0x75f2823b file_modified EXPORT_SYMBOL vmlinux 0x75f45963 decrementer_clockevent EXPORT_SYMBOL vmlinux 0x76044e38 pci_setup_cardbus EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76150758 unix_destruct_scm EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired EXPORT_SYMBOL vmlinux 0x762d0b85 agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0x763fe9d3 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x7646f82a dev_load EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x7648c184 netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x76885396 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x768a587c inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0x7698a5c7 of_get_ibm_chip_id EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76ace508 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0x76ae179c ip_local_deliver +EXPORT_SYMBOL vmlinux 0x76baffa0 module_refcount EXPORT_SYMBOL vmlinux 0x76be7017 of_iomap -EXPORT_SYMBOL vmlinux 0x76cf04f3 xfrm_stateonly_find EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d486ec security_unix_may_send -EXPORT_SYMBOL vmlinux 0x7706f3ee scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x771b38ae mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x76fabbd8 block_write_begin +EXPORT_SYMBOL vmlinux 0x7700da56 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0x77234d37 downgrade_write +EXPORT_SYMBOL vmlinux 0x772e0eac __xfrm_dst_lookup 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 0x775d33ef inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 -EXPORT_SYMBOL vmlinux 0x777292aa generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x7773c06e xfrm_state_delete EXPORT_SYMBOL vmlinux 0x77808a48 vm_event_states EXPORT_SYMBOL vmlinux 0x7782d7e1 tty_port_raise_dtr_rts EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x77913819 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x7793997a noop_llseek +EXPORT_SYMBOL vmlinux 0x7798d3e3 mmc_can_gpio_cd EXPORT_SYMBOL vmlinux 0x77a3172b dquot_transfer EXPORT_SYMBOL vmlinux 0x77bc13a0 strim EXPORT_SYMBOL vmlinux 0x77d4cd43 md_flush_request -EXPORT_SYMBOL vmlinux 0x77deca24 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x77e07e9c netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0x77dca184 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x77e644e1 tcp_md5_do_del EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f9518f tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x77fe8642 xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x77fee50d register_sysctl_table EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x7812e1c6 vfs_link EXPORT_SYMBOL vmlinux 0x7820fbb8 md_handle_request EXPORT_SYMBOL vmlinux 0x7824cd9b neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x782b8a0e napi_complete_done EXPORT_SYMBOL vmlinux 0x7834defd vfio_group_unpin_pages EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x7846bf5f read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x7871e002 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x78523ec9 sock_wfree +EXPORT_SYMBOL vmlinux 0x785d989a inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x78673964 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x786acd4a jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x786b7ae3 genphy_c37_read_status EXPORT_SYMBOL vmlinux 0x787f23c9 of_translate_dma_address EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback EXPORT_SYMBOL vmlinux 0x78851d2f _outsb -EXPORT_SYMBOL vmlinux 0x78970ec7 tcp_mmap EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78ded67a phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x78de968b flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78efdaa3 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x78dfc392 udp_set_csum EXPORT_SYMBOL vmlinux 0x78f8674e param_get_charp +EXPORT_SYMBOL vmlinux 0x7903698b tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0x79072688 csum_and_copy_to_iter EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x790c20da dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x79103e5e mmc_can_discard +EXPORT_SYMBOL vmlinux 0x7913017b __mmap_lock_do_trace_released EXPORT_SYMBOL vmlinux 0x792136e9 scsi_partsize EXPORT_SYMBOL vmlinux 0x792b3f35 pci_find_capability -EXPORT_SYMBOL vmlinux 0x79618c34 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x7949fed3 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x79565509 ip_frag_next +EXPORT_SYMBOL vmlinux 0x7966bbb5 mroute6_is_socket EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin +EXPORT_SYMBOL vmlinux 0x79769ec2 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x797b792f sock_create_kern EXPORT_SYMBOL vmlinux 0x7984eefc key_update EXPORT_SYMBOL vmlinux 0x798c35fe param_get_ulong -EXPORT_SYMBOL vmlinux 0x79900a1e mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x7996a3db vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x79906ae2 pci_domain_nr EXPORT_SYMBOL vmlinux 0x799810ec is_nd_pfn -EXPORT_SYMBOL vmlinux 0x79985c09 mount_subtree -EXPORT_SYMBOL vmlinux 0x799923d4 nf_log_packet +EXPORT_SYMBOL vmlinux 0x799a4379 phy_start EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79a44002 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x79ac7c3e skb_copy_expand +EXPORT_SYMBOL vmlinux 0x79a74fb9 skb_recv_datagram EXPORT_SYMBOL vmlinux 0x79d6e540 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x79e77bee end_page_private_2 +EXPORT_SYMBOL vmlinux 0x79d98b5d skb_copy_bits +EXPORT_SYMBOL vmlinux 0x79e63e00 migrate_page EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug +EXPORT_SYMBOL vmlinux 0x79f83fff inet_ioctl EXPORT_SYMBOL vmlinux 0x79fe9804 import_single_range +EXPORT_SYMBOL vmlinux 0x79ff1f31 i2c_add_adapter EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a11e0da dcb_setapp EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble EXPORT_SYMBOL vmlinux 0x7a215e27 dquot_mark_dquot_dirty EXPORT_SYMBOL vmlinux 0x7a2d6c97 __debugger_ipi EXPORT_SYMBOL vmlinux 0x7a5073db proc_mkdir_mode EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a6e02aa cpufreq_generic_suspend EXPORT_SYMBOL vmlinux 0x7a6e9600 pcie_get_speed_cap EXPORT_SYMBOL vmlinux 0x7a71741f __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x7a78e281 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x7a7d3c11 skb_unlink EXPORT_SYMBOL vmlinux 0x7a7de0d6 mempool_init_node EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx EXPORT_SYMBOL vmlinux 0x7a97faec uart_register_driver +EXPORT_SYMBOL vmlinux 0x7a9b1d32 of_phy_deregister_fixed_link EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree EXPORT_SYMBOL vmlinux 0x7ab5f8c3 _insw_ns EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt @@ -8417,766 +8344,770 @@ EXPORT_SYMBOL vmlinux 0x7aba86db node_to_cpumask_map EXPORT_SYMBOL vmlinux 0x7abe5894 pci_ep_cfs_remove_epc_group EXPORT_SYMBOL vmlinux 0x7acc3eb0 fwnode_mdiobus_register_phy EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad23b65 phy_remove_link_mode EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7afbdb2c sock_i_uid +EXPORT_SYMBOL vmlinux 0x7afa296f generic_writepages +EXPORT_SYMBOL vmlinux 0x7afb2871 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x7afe2ec3 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x7b002a1a find_get_pages_range_tag EXPORT_SYMBOL vmlinux 0x7b069b85 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x7b07c219 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x7b0e1d49 udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0x7b2782a4 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x7b36f9f9 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x7b427a86 ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x7b4f2aee __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0x7b5332c9 iov_iter_xarray -EXPORT_SYMBOL vmlinux 0x7b5332ed follow_up -EXPORT_SYMBOL vmlinux 0x7b56a931 kernel_sendmsg EXPORT_SYMBOL vmlinux 0x7b56f732 pci_request_regions_exclusive EXPORT_SYMBOL vmlinux 0x7b57fdd2 cdev_device_add +EXPORT_SYMBOL vmlinux 0x7b58126e send_sig_mceerr EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update EXPORT_SYMBOL vmlinux 0x7b65e8ec cfb_fillrect -EXPORT_SYMBOL vmlinux 0x7b8ff164 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x7bb98f0a inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x7b73d9c1 mr_mfc_find_parent EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids EXPORT_SYMBOL vmlinux 0x7bd8f50d radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0x7bde0c6b blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x7bec9901 jbd2_journal_check_available_features EXPORT_SYMBOL vmlinux 0x7bf3f359 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x7bfd2985 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x7c0fd5cd jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x7c139f4e xfrm4_udp_encap_rcv EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c1aa51f jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x7c1d1a3b __lock_buffer -EXPORT_SYMBOL vmlinux 0x7c3a900e tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x7c3f54f9 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x7c42308c dev_get_mac_address EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c5c1081 ptp_clock_register EXPORT_SYMBOL vmlinux 0x7c63a098 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x7c7c671f kfree_skb_reason EXPORT_SYMBOL vmlinux 0x7c865edf blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x7c895c8d neigh_lookup EXPORT_SYMBOL vmlinux 0x7c8d937c backlight_force_update -EXPORT_SYMBOL vmlinux 0x7c97bd7c dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x7c9b8a3d udp_lib_get_port EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7ca6b0c1 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x7ca9905f agp_backend_release EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cb56d97 locks_delete_block -EXPORT_SYMBOL vmlinux 0x7cbc986e netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0x7cbf9827 dma_resv_add_shared_fence +EXPORT_SYMBOL vmlinux 0x7cc87980 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x7cd0eec4 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x7cd1ae7e vme_irq_handler EXPORT_SYMBOL vmlinux 0x7cd22bb2 blk_queue_split +EXPORT_SYMBOL vmlinux 0x7cd8086a mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0x7cd8cab7 rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0x7cdd8bd0 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7cf053f6 tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d031754 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x7d0807a5 skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d21547a netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x7d2fa299 lock_rename +EXPORT_SYMBOL vmlinux 0x7d1f251a tcp_req_err EXPORT_SYMBOL vmlinux 0x7d4574d4 pci_request_regions -EXPORT_SYMBOL vmlinux 0x7d45dfa9 sock_release EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d4bdeac tcp_prot EXPORT_SYMBOL vmlinux 0x7d532c4c of_get_cpu_node EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift EXPORT_SYMBOL vmlinux 0x7d69fe60 of_get_parent EXPORT_SYMBOL vmlinux 0x7d6a81e0 rproc_del EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d7d73ec dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x7d835117 __module_get EXPORT_SYMBOL vmlinux 0x7d845f0e _raw_spin_lock_irq EXPORT_SYMBOL vmlinux 0x7d892ca7 fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0x7da20acc nf_setsockopt +EXPORT_SYMBOL vmlinux 0x7da9642b tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x7dac8be9 neigh_resolve_output EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7db2f8c7 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x7dc76163 file_check_and_advance_wb_err EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max -EXPORT_SYMBOL vmlinux 0x7dd17a68 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x7dd89cbf gro_cells_receive -EXPORT_SYMBOL vmlinux 0x7ddb3fe0 submit_bio -EXPORT_SYMBOL vmlinux 0x7dddfb0a netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x7dd17904 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x7ddba9e8 tcf_exts_destroy EXPORT_SYMBOL vmlinux 0x7de4c0cc devm_rproc_add EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args EXPORT_SYMBOL vmlinux 0x7dfc8277 isa_mem_base EXPORT_SYMBOL vmlinux 0x7e026fbb pci_find_bus -EXPORT_SYMBOL vmlinux 0x7e139228 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x7e2a8d11 mmc_free_host +EXPORT_SYMBOL vmlinux 0x7e250918 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0x7e2d6436 ida_free EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e42a8db alloc_pages +EXPORT_SYMBOL vmlinux 0x7e4ad21e jbd2_journal_unlock_updates EXPORT_SYMBOL vmlinux 0x7e4cdc54 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x7e4cf53c sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x7e64d6aa scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x7e688331 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x7e55c0f1 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x7e63d14d dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x7e63d8b3 disk_end_io_acct EXPORT_SYMBOL vmlinux 0x7e6b8323 input_open_device EXPORT_SYMBOL vmlinux 0x7e751748 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x7e800da3 dev_activate -EXPORT_SYMBOL vmlinux 0x7e82a370 prepare_to_swait_event EXPORT_SYMBOL vmlinux 0x7e83af4f bio_init +EXPORT_SYMBOL vmlinux 0x7e993f68 udp_pre_connect EXPORT_SYMBOL vmlinux 0x7ea73d65 of_chosen -EXPORT_SYMBOL vmlinux 0x7ead00b1 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x7ebf2604 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x7ebf306c sock_wmalloc -EXPORT_SYMBOL vmlinux 0x7ec0e60f migrate_vma_pages -EXPORT_SYMBOL vmlinux 0x7eceba78 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x7ed93f7e tcp_mss_to_mtu EXPORT_SYMBOL vmlinux 0x7ee06785 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x7eed724c generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x7efa6f6f dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f1c2c2f netif_rx_ni +EXPORT_SYMBOL vmlinux 0x7f0b2007 xfrm_unregister_type EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs EXPORT_SYMBOL vmlinux 0x7f3bae1d request_partial_firmware_into_buf EXPORT_SYMBOL vmlinux 0x7f3f6aae devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x7f4b4a79 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x7f4d9dd6 phy_device_remove EXPORT_SYMBOL vmlinux 0x7f52071a net_dim EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table EXPORT_SYMBOL vmlinux 0x7f5c1028 param_ops_charp +EXPORT_SYMBOL vmlinux 0x7f603f50 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x7f68e125 ip6_xmit EXPORT_SYMBOL vmlinux 0x7f705020 __pci_register_driver EXPORT_SYMBOL vmlinux 0x7f71fb97 xa_load EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f83010d sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x7fa797c5 bfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0x7fad98ef __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x7fb31891 ptp_clock_index EXPORT_SYMBOL vmlinux 0x7fb4609f jbd2_journal_free_reserved EXPORT_SYMBOL vmlinux 0x7fb4e344 kthread_blkcg -EXPORT_SYMBOL vmlinux 0x7fd24f66 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x7fcd7128 vfs_getattr EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x80010c06 disk_end_io_acct +EXPORT_SYMBOL vmlinux 0x7ffba964 i2c_del_adapter EXPORT_SYMBOL vmlinux 0x8011b113 d_drop -EXPORT_SYMBOL vmlinux 0x8032d824 sock_init_data -EXPORT_SYMBOL vmlinux 0x8032f199 rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x80475dd0 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x8045b0b9 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x804809c3 peernet2id +EXPORT_SYMBOL vmlinux 0x805f827b _dev_emerg EXPORT_SYMBOL vmlinux 0x8062137d seq_read_iter -EXPORT_SYMBOL vmlinux 0x8081d43f tcp_connect -EXPORT_SYMBOL vmlinux 0x808e9160 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x809449de tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x8074659d mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x8076bb30 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x8078350a twl6040_set_pll EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x809a00f5 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x809d5eb0 iterate_fd EXPORT_SYMBOL vmlinux 0x809ea025 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x80b86002 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x80a437d6 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x80afba73 sock_no_mmap EXPORT_SYMBOL vmlinux 0x80b8df0c agp_allocate_memory EXPORT_SYMBOL vmlinux 0x80c775ac input_unregister_handler EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80ddeb21 generic_file_splice_read EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80e8f4c7 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x810a3e47 ipv6_setsockopt EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x810d2cef blk_cleanup_queue EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer EXPORT_SYMBOL vmlinux 0x811527b7 of_scan_pci_bridge EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x8124d430 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0x812a7a8a pipe_unlock -EXPORT_SYMBOL vmlinux 0x813cba73 kernel_read EXPORT_SYMBOL vmlinux 0x814856a1 mount_bdev -EXPORT_SYMBOL vmlinux 0x81489c52 inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x81606c46 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x815c6f7e scsi_block_requests +EXPORT_SYMBOL vmlinux 0x8160148d vm_map_pages EXPORT_SYMBOL vmlinux 0x8161abda unregister_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command EXPORT_SYMBOL vmlinux 0x8168f3d2 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x81790c73 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x817624ec dev_alloc_name +EXPORT_SYMBOL vmlinux 0x81763451 netdev_port_same_parent_id EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information EXPORT_SYMBOL vmlinux 0x81878460 padata_free +EXPORT_SYMBOL vmlinux 0x818cdd64 dev_uc_add EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81a9cdcf security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81de192b xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x81dd60d2 tag_pages_for_writeback EXPORT_SYMBOL vmlinux 0x81eb53d6 param_set_hexint -EXPORT_SYMBOL vmlinux 0x81eb9e49 filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0x81f3c54c kill_litter_super EXPORT_SYMBOL vmlinux 0x81fee9cd pci_get_class -EXPORT_SYMBOL vmlinux 0x82024845 locks_copy_conflock EXPORT_SYMBOL vmlinux 0x8210ea4d take_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0x821559d6 __vmalloc_end EXPORT_SYMBOL vmlinux 0x821b42ec of_find_mipi_dsi_host_by_node EXPORT_SYMBOL vmlinux 0x822aabd9 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x8239e271 follow_down EXPORT_SYMBOL vmlinux 0x8249ad5e fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x824ea6f7 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x825aa216 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x8254addb kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x82653d69 mfd_cell_disable EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x828eefe3 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x82a18d7a register_fib_notifier -EXPORT_SYMBOL vmlinux 0x82a1de5b skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x82912725 sk_capable +EXPORT_SYMBOL vmlinux 0x8298da8f in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x82a38e33 netif_tx_wake_queue EXPORT_SYMBOL vmlinux 0x82a60567 seq_vprintf -EXPORT_SYMBOL vmlinux 0x82ba8f9d tso_start +EXPORT_SYMBOL vmlinux 0x82b725a3 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x82c8632b kill_pgrp EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes EXPORT_SYMBOL vmlinux 0x82d49bb5 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x82db3232 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync EXPORT_SYMBOL vmlinux 0x82f48ad3 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x82f84f8e dev_add_pack EXPORT_SYMBOL vmlinux 0x832f5945 set_bdi_congested EXPORT_SYMBOL vmlinux 0x833eaa38 d_delete EXPORT_SYMBOL vmlinux 0x834658ac cmxgcr_lock EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x83593f51 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x8359a713 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x83604cfd skb_copy_bits -EXPORT_SYMBOL vmlinux 0x836ce690 account_page_redirty +EXPORT_SYMBOL vmlinux 0x83624af4 netdev_alert EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x838b30a5 blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 EXPORT_SYMBOL vmlinux 0x83a150e1 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x83a94331 arp_create EXPORT_SYMBOL vmlinux 0x83b2094d __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x83c03620 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x83d8663f dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x83d95bd6 migrate_vma_pages EXPORT_SYMBOL vmlinux 0x83f66199 d_obtain_root +EXPORT_SYMBOL vmlinux 0x840257c5 __find_get_block EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x840d7b6a mmc_add_host -EXPORT_SYMBOL vmlinux 0x8419e846 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0x842216d6 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x8406005f set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x841520de jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x841eb508 __nlmsg_put EXPORT_SYMBOL vmlinux 0x842323ef __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x8426e45b of_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 EXPORT_SYMBOL vmlinux 0x846ad9c3 devm_clk_put +EXPORT_SYMBOL vmlinux 0x846b7588 eth_header +EXPORT_SYMBOL vmlinux 0x8475480f dcb_ieee_getapp_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0x847e8b5c devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x847ea01e security_d_instantiate +EXPORT_SYMBOL vmlinux 0x847fa31d __genphy_config_aneg EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x8485d87b __scm_send EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 EXPORT_SYMBOL vmlinux 0x849f834b nd_namespace_blk_validate EXPORT_SYMBOL vmlinux 0x84bae718 dm_get_device EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock -EXPORT_SYMBOL vmlinux 0x84d438a2 dev_addr_flush EXPORT_SYMBOL vmlinux 0x84f37c3f pps_event EXPORT_SYMBOL vmlinux 0x84f3c134 proc_doulongvec_minmax EXPORT_SYMBOL vmlinux 0x84fa54ed pci_set_mwi -EXPORT_SYMBOL vmlinux 0x84fb7397 tc_cleanup_flow_action EXPORT_SYMBOL vmlinux 0x8500f7c4 nd_btt_version -EXPORT_SYMBOL vmlinux 0x85012a88 xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0x85066bb1 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x851b484a tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x85228975 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x8513e4f7 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x851e226d tcp_sendpage +EXPORT_SYMBOL vmlinux 0x85209054 __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0x85250ccc xa_store_range -EXPORT_SYMBOL vmlinux 0x8526558b phy_free_interrupt EXPORT_SYMBOL vmlinux 0x852f0d3c rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0x852f1be7 gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0x853b66d8 vio_unregister_device EXPORT_SYMBOL vmlinux 0x8554b804 simple_getattr -EXPORT_SYMBOL vmlinux 0x85586173 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x85661497 udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked EXPORT_SYMBOL vmlinux 0x856f9c7d blk_integrity_register +EXPORT_SYMBOL vmlinux 0x8585ed0d default_qdisc_ops EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall -EXPORT_SYMBOL vmlinux 0x85a3148b inet_addr_type_table EXPORT_SYMBOL vmlinux 0x85a7e6ed find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0x85b051f4 of_find_device_by_node EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85c7ed4e netif_skb_features EXPORT_SYMBOL vmlinux 0x85df9b6c strsep EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x860556c2 call_fib_notifiers EXPORT_SYMBOL vmlinux 0x860607b7 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x860d1be4 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x8618e4e4 reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0x86399939 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x8617cb83 pfifo_fast_ops EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863b85d9 vfs_fsync -EXPORT_SYMBOL vmlinux 0x864f50ed xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x866a108b netdev_err +EXPORT_SYMBOL vmlinux 0x864135d9 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x86642b07 inet_select_addr +EXPORT_SYMBOL vmlinux 0x866f53bd kern_unmount_array EXPORT_SYMBOL vmlinux 0x867c5319 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x86801c16 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x86827b83 skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868e2bd0 phy_device_create +EXPORT_SYMBOL vmlinux 0x86a7c8b0 sk_stream_error EXPORT_SYMBOL vmlinux 0x86ae2910 nd_dax_probe EXPORT_SYMBOL vmlinux 0x86b1026f proc_douintvec -EXPORT_SYMBOL vmlinux 0x86b3e408 neigh_seq_start EXPORT_SYMBOL vmlinux 0x86b45a9b mutex_lock_killable EXPORT_SYMBOL vmlinux 0x86bafba1 of_translate_address EXPORT_SYMBOL vmlinux 0x86c53491 dquot_commit_info EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL vmlinux 0x86f3a2f6 dev_get_by_index EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x8700799a touch_buffer +EXPORT_SYMBOL vmlinux 0x87063cca netdev_notify_peers EXPORT_SYMBOL vmlinux 0x8706595f register_mii_timestamper EXPORT_SYMBOL vmlinux 0x8714563b csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x87221233 mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x8727a18c fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x8729f025 xp_raw_get_dma EXPORT_SYMBOL vmlinux 0x872a5283 gen_pool_dma_zalloc_align EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 EXPORT_SYMBOL vmlinux 0x873d123a of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x874029f4 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x874eee5e cont_write_begin EXPORT_SYMBOL vmlinux 0x8753a27a vfio_unpin_pages -EXPORT_SYMBOL vmlinux 0x8755c57d tcp_filter EXPORT_SYMBOL vmlinux 0x8756c914 do_wait_intr_irq EXPORT_SYMBOL vmlinux 0x87582c73 devm_ioremap EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x877804b8 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x877d5ea4 dev_add_offload EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream EXPORT_SYMBOL vmlinux 0x87848971 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x878a97fb nf_log_packet EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds EXPORT_SYMBOL vmlinux 0x87a51216 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x87a5c869 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x87b0cdd5 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x87b16249 netpoll_poll_dev EXPORT_SYMBOL vmlinux 0x87b5a9c3 of_graph_get_port_parent EXPORT_SYMBOL vmlinux 0x87b8798d sg_next EXPORT_SYMBOL vmlinux 0x87d29257 mod_node_page_state -EXPORT_SYMBOL vmlinux 0x87df0d2d ll_rw_block +EXPORT_SYMBOL vmlinux 0x87d5dd46 __SetPageMovable EXPORT_SYMBOL vmlinux 0x87e780fb nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x87f8233a tcf_action_exec -EXPORT_SYMBOL vmlinux 0x87fa7017 security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0x8801e9bc configfs_depend_item_unlocked EXPORT_SYMBOL vmlinux 0x88152820 blk_rq_unmap_user EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate -EXPORT_SYMBOL vmlinux 0x882a4da5 __traceiter_spi_transfer_start EXPORT_SYMBOL vmlinux 0x8835b8d7 bioset_init -EXPORT_SYMBOL vmlinux 0x883b7e3b __check_sticky +EXPORT_SYMBOL vmlinux 0x883c5286 phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0x884369c4 fb_pan_display EXPORT_SYMBOL vmlinux 0x884412a0 md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0x885800a4 generic_read_dir -EXPORT_SYMBOL vmlinux 0x886e8df4 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x885ef745 inode_permission +EXPORT_SYMBOL vmlinux 0x886d4191 xfrm_input_resume EXPORT_SYMBOL vmlinux 0x88798b79 devm_nvmem_cell_put EXPORT_SYMBOL vmlinux 0x888149d2 kobject_set_name EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x88986493 secpath_set +EXPORT_SYMBOL vmlinux 0x8890016d flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x889282f2 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x88972a8e scsi_eh_prep_cmnd EXPORT_SYMBOL vmlinux 0x88993295 dma_fence_match_context -EXPORT_SYMBOL vmlinux 0x889adecc __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x88a371b5 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x88aab47f vfs_get_link EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88aef506 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x88c84bfe ndisc_mc_map EXPORT_SYMBOL vmlinux 0x88ce5fd2 new_inode +EXPORT_SYMBOL vmlinux 0x88d69233 sock_alloc_file EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88e1ccf4 neigh_table_clear EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88e40c65 mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x88e591fa ether_setup -EXPORT_SYMBOL vmlinux 0x88f2c1bd __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0x88ff3cd0 gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x891012ee compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x89322e22 dev_set_group -EXPORT_SYMBOL vmlinux 0x89324cde mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x8923051f qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x89478566 neigh_changeaddr EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table +EXPORT_SYMBOL vmlinux 0x89568a07 inet_dgram_connect EXPORT_SYMBOL vmlinux 0x895c9f65 pcix_get_max_mmrbc EXPORT_SYMBOL vmlinux 0x895ec387 inode_update_time EXPORT_SYMBOL vmlinux 0x89635af7 elv_rb_del EXPORT_SYMBOL vmlinux 0x89890fdb simple_transaction_set -EXPORT_SYMBOL vmlinux 0x89896607 locks_remove_posix EXPORT_SYMBOL vmlinux 0x89898459 kvm_irq_bypass -EXPORT_SYMBOL vmlinux 0x8999e665 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x89b00644 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x89b8785c skb_unlink -EXPORT_SYMBOL vmlinux 0x89bc7ed8 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x89a9c924 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x89d13f45 phy_stop +EXPORT_SYMBOL vmlinux 0x89dac6f4 dev_addr_del EXPORT_SYMBOL vmlinux 0x89edb7cd free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x8a10553f of_get_mac_address +EXPORT_SYMBOL vmlinux 0x8a06bd3e inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x8a1acde9 seq_path EXPORT_SYMBOL vmlinux 0x8a1eaa57 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x8a33b312 rtnl_set_sk_err EXPORT_SYMBOL vmlinux 0x8a362caa dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0x8a395e7f tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state EXPORT_SYMBOL vmlinux 0x8a54050b __pud_cache_index -EXPORT_SYMBOL vmlinux 0x8a64ea5f seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x8a54db74 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x8a6bcf8c __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory EXPORT_SYMBOL vmlinux 0x8a7ed485 pci_irq_vector -EXPORT_SYMBOL vmlinux 0x8a8ea57d tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0x8a975cd7 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x8a98afcb dev_uc_add EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8ababf6d sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x8aa966fc xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x8aac56fb inet_offloads EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation EXPORT_SYMBOL vmlinux 0x8ac3bb12 dma_fence_get_stub EXPORT_SYMBOL vmlinux 0x8ac43527 d_set_fallthru EXPORT_SYMBOL vmlinux 0x8ac61cd0 param_ops_bint +EXPORT_SYMBOL vmlinux 0x8ac62ec6 setup_new_exec EXPORT_SYMBOL vmlinux 0x8ac7337c pci_free_irq EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer EXPORT_SYMBOL vmlinux 0x8ad39905 dma_fence_remove_callback EXPORT_SYMBOL vmlinux 0x8ad39e24 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x8ade63dc datagram_poll EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x8b0852f0 dst_dev_put -EXPORT_SYMBOL vmlinux 0x8b3238f8 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x8b24478e skb_find_text EXPORT_SYMBOL vmlinux 0x8b38998b dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0x8b4873ab __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x8b485b89 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x8b56c5c5 nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b731f9b mr_dump -EXPORT_SYMBOL vmlinux 0x8b7ff82d eth_validate_addr EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b821a5b security_path_mkdir EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b923891 kern_path_create EXPORT_SYMBOL vmlinux 0x8b95ba41 dma_fence_signal EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx EXPORT_SYMBOL vmlinux 0x8ba94186 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x8bb58afb netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x8bbc4020 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x8bc81580 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x8baebe1e nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x8bd1aa1d security_sock_graft EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable EXPORT_SYMBOL vmlinux 0x8bfec18b input_set_min_poll_interval EXPORT_SYMBOL vmlinux 0x8bfff2f9 d_make_root -EXPORT_SYMBOL vmlinux 0x8c131aab kill_pgrp +EXPORT_SYMBOL vmlinux 0x8c0517fa skb_push +EXPORT_SYMBOL vmlinux 0x8c11972d ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x8c13057d netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0x8c15eca8 kobject_add +EXPORT_SYMBOL vmlinux 0x8c27a75a tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x8c2b1f0b i2c_smbus_read_block_data EXPORT_SYMBOL vmlinux 0x8c3d6264 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x8c4862ae __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x8c539734 page_cache_next_miss EXPORT_SYMBOL vmlinux 0x8c63f321 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x8c666afc lease_get_mtime EXPORT_SYMBOL vmlinux 0x8c745ff9 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x8c83dd9f __mdiobus_write EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c8796ba tcp_rtx_synack EXPORT_SYMBOL vmlinux 0x8c9d34e6 thaw_bdev +EXPORT_SYMBOL vmlinux 0x8ca10600 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x8ca1f4ed _dev_alert EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cb10e9e flush_all_to_thread +EXPORT_SYMBOL vmlinux 0x8cb7426f devfreq_add_device EXPORT_SYMBOL vmlinux 0x8cbfb009 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x8cc52e5e qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep EXPORT_SYMBOL vmlinux 0x8ce0f08b blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x8cec282e tcf_unregister_action EXPORT_SYMBOL vmlinux 0x8d0f8ecb pnv_phb_to_cxl_mode -EXPORT_SYMBOL vmlinux 0x8d1519d0 register_console EXPORT_SYMBOL vmlinux 0x8d180592 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x8d273391 vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0x8d2753bc radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x8d400a61 may_umount_tree +EXPORT_SYMBOL vmlinux 0x8d497d85 dev_activate EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d668150 blk_get_request EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d762cf5 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x8d9563ac mmc_card_alternative_gpt_sector EXPORT_SYMBOL vmlinux 0x8d9ce724 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x8da59158 netlink_unicast EXPORT_SYMBOL vmlinux 0x8db55e18 node_data -EXPORT_SYMBOL vmlinux 0x8dcd5252 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x8dd4f251 buffer_migrate_page EXPORT_SYMBOL vmlinux 0x8ddd1121 sync_blockdev EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8df462d6 proto_unregister EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8dfa3235 try_to_free_buffers EXPORT_SYMBOL vmlinux 0x8dfcf4d7 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x8e1ba46f lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0x8e21a728 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x8e07bfa5 skb_set_owner_w EXPORT_SYMBOL vmlinux 0x8e2458a6 d_add_ci -EXPORT_SYMBOL vmlinux 0x8e3a625a __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e58dd5e mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x8e6f91db fddi_type_trans -EXPORT_SYMBOL vmlinux 0x8e914b2c devfreq_remove_governor EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e975b86 keyring_search -EXPORT_SYMBOL vmlinux 0x8ea5f168 scsi_print_command -EXPORT_SYMBOL vmlinux 0x8eab9fe0 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x8eba6895 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x8eb31463 __scsi_print_sense EXPORT_SYMBOL vmlinux 0x8ebb9186 __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0x8ecda64e devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x8edc5277 __napi_schedule EXPORT_SYMBOL vmlinux 0x8ee4bd55 fb_set_var -EXPORT_SYMBOL vmlinux 0x8ee76e29 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x8eea3a4f genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0x8eec42b2 __debugger_bpt -EXPORT_SYMBOL vmlinux 0x8f007174 sock_no_bind EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask EXPORT_SYMBOL vmlinux 0x8f11ea71 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x8f2952ec udp6_set_csum EXPORT_SYMBOL vmlinux 0x8f3121b1 input_get_poll_interval -EXPORT_SYMBOL vmlinux 0x8f652bbd sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x8f598f0b pagecache_get_page EXPORT_SYMBOL vmlinux 0x8f68da79 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x8f714c12 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x8f7c5cb5 blk_rq_init EXPORT_SYMBOL vmlinux 0x8f87de8d input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x8f8b6640 i2c_smbus_read_byte EXPORT_SYMBOL vmlinux 0x8f8cad06 blkdev_compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8fa174b3 ipmr_rule_default EXPORT_SYMBOL vmlinux 0x8fa686e3 mdio_device_create EXPORT_SYMBOL vmlinux 0x8fc6b992 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0x8fc75531 skb_checksum_help EXPORT_SYMBOL vmlinux 0x8fd5303f devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x8fdff72e netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x8feb7e13 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x8fd989ae rtnl_unicast EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit EXPORT_SYMBOL vmlinux 0x8ffe4789 agp_generic_insert_memory EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x900b66fc twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x901d6697 jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0x9023361b proc_dointvec_minmax EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get EXPORT_SYMBOL vmlinux 0x905518e4 pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x90622607 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x909152ef tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0x909ad529 is_subdir -EXPORT_SYMBOL vmlinux 0x909dd502 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x90b630c0 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x90c067b5 register_qdisc -EXPORT_SYMBOL vmlinux 0x90c73b85 _dev_emerg +EXPORT_SYMBOL vmlinux 0x90a6e2f6 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x90b9b4f8 phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0x90d2fabf sg_miter_skip -EXPORT_SYMBOL vmlinux 0x90e672a0 pneigh_enqueue EXPORT_SYMBOL vmlinux 0x90eca80b pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x90f30455 __fib6_flush_trees EXPORT_SYMBOL vmlinux 0x91057c24 request_key_rcu -EXPORT_SYMBOL vmlinux 0x9107aa35 udp_seq_next -EXPORT_SYMBOL vmlinux 0x910a2161 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x9116b01b vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x910fd3b7 locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay +EXPORT_SYMBOL vmlinux 0x91348003 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x9134dbd1 sock_i_ino EXPORT_SYMBOL vmlinux 0x9139f5ae seq_hex_dump -EXPORT_SYMBOL vmlinux 0x9143e383 xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0x91489e84 nvdimm_namespace_capacity EXPORT_SYMBOL vmlinux 0x9149a080 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x91563e9b security_sb_mnt_opts_compat EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec EXPORT_SYMBOL vmlinux 0x9166fada strncpy EXPORT_SYMBOL vmlinux 0x916758a3 node_states EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor -EXPORT_SYMBOL vmlinux 0x9170eb48 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x917722ef phy_connect -EXPORT_SYMBOL vmlinux 0x91892b93 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x91933df2 peernet2id +EXPORT_SYMBOL vmlinux 0x9183e1d5 vme_dma_request +EXPORT_SYMBOL vmlinux 0x9186fbd6 xp_dma_map +EXPORT_SYMBOL vmlinux 0x918ba53c nf_log_register 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 0x91b3f8cf pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x91bfcc63 phy_init_hw +EXPORT_SYMBOL vmlinux 0x91b5ff04 netif_device_detach EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz EXPORT_SYMBOL vmlinux 0x91c8f9eb cdrom_number_of_slots EXPORT_SYMBOL vmlinux 0x91cb07e1 simple_write_begin -EXPORT_SYMBOL vmlinux 0x91ccd0d0 gro_cells_init -EXPORT_SYMBOL vmlinux 0x91e880a8 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x91e909c8 skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x91e9ecd8 fput -EXPORT_SYMBOL vmlinux 0x91f4bf5d lock_sock_nested EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync EXPORT_SYMBOL vmlinux 0x9206d2dc dcache_dir_close EXPORT_SYMBOL vmlinux 0x920848f0 pnv_cxl_release_hwirqs EXPORT_SYMBOL vmlinux 0x921563d4 dquot_release EXPORT_SYMBOL vmlinux 0x9219096e memcpy_page_flushcache -EXPORT_SYMBOL vmlinux 0x921a7c2f mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x921ed80c xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x9236d03c tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x92392d6b genphy_read_abilities EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923b74f2 release_sock EXPORT_SYMBOL vmlinux 0x924f1da2 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x92512d84 netdev_lower_state_changed EXPORT_SYMBOL vmlinux 0x9251f0d2 wait_for_completion EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x9278c563 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x925fcd40 flow_rule_match_basic EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x929931c3 bh_submit_read EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x92a5d8dc sync_inode_metadata EXPORT_SYMBOL vmlinux 0x92b43754 bio_uninit EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92c2f7bf ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x92c4b5db wireless_send_event -EXPORT_SYMBOL vmlinux 0x92c62900 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x92ce3664 i2c_smbus_write_i2c_block_data EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92dd7be8 kmem_cache_destroy EXPORT_SYMBOL vmlinux 0x92df503c kobject_del +EXPORT_SYMBOL vmlinux 0x92ea0207 vfs_clone_file_range EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs EXPORT_SYMBOL vmlinux 0x92f217b3 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x92f92829 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach EXPORT_SYMBOL vmlinux 0x92fbaec1 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x92fd8fa6 in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9302d8d8 sock_i_ino EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9308e398 keyring_alloc +EXPORT_SYMBOL vmlinux 0x93342ae5 twl6040_get_vibralr_status EXPORT_SYMBOL vmlinux 0x93357f1d max8925_reg_write -EXPORT_SYMBOL vmlinux 0x933f65a2 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x933f6ff9 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x934915c2 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x934cc2ff end_page_writeback +EXPORT_SYMBOL vmlinux 0x9339f912 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x934344f0 skb_copy_header +EXPORT_SYMBOL vmlinux 0x9353f3c4 scsi_ioctl EXPORT_SYMBOL vmlinux 0x936ada45 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x936d3d0f sk_mc_loop EXPORT_SYMBOL vmlinux 0x936db07a msi_desc_to_pci_dev EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937cc15c vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x939e2b45 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0x939fae4a try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x93a1234e readahead_expand +EXPORT_SYMBOL vmlinux 0x93871ed7 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x939dcd6f sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x93a4bfef dev_set_threaded EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93cd41cd netif_device_attach +EXPORT_SYMBOL vmlinux 0x93b7c04b flow_rule_match_mpls EXPORT_SYMBOL vmlinux 0x93e42718 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x93fba39a vfs_create -EXPORT_SYMBOL vmlinux 0x940f0812 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x93f5a874 mntput +EXPORT_SYMBOL vmlinux 0x940e369e __neigh_event_send EXPORT_SYMBOL vmlinux 0x94114844 of_node_get +EXPORT_SYMBOL vmlinux 0x9412c00e mdiobus_free EXPORT_SYMBOL vmlinux 0x9417e708 __devm_request_region EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x942e303e finalize_exec EXPORT_SYMBOL vmlinux 0x94345fa0 fb_class EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x9464962e __generic_file_write_iter EXPORT_SYMBOL vmlinux 0x94667988 trace_print_flags_seq EXPORT_SYMBOL vmlinux 0x946a1cf1 setattr_prepare EXPORT_SYMBOL vmlinux 0x946a23b5 default_amr +EXPORT_SYMBOL vmlinux 0x946ae3d1 netdev_state_change EXPORT_SYMBOL vmlinux 0x94737c23 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x9478d542 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x94745ff8 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x9477be7a rtnl_create_link +EXPORT_SYMBOL vmlinux 0x9483784a neigh_parms_release EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949bcfdf xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x94a07ba1 dev_uc_add_excl EXPORT_SYMBOL vmlinux 0x94a5fd84 proc_dointvec_jiffies EXPORT_SYMBOL vmlinux 0x94a9a4aa _raw_spin_lock_irqsave EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94bf393d flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0x94c79dfb param_set_ulong -EXPORT_SYMBOL vmlinux 0x94db493a close_fd_get_file EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x94edb55a vfs_getattr_nosec EXPORT_SYMBOL vmlinux 0x94eef983 md_write_inc EXPORT_SYMBOL vmlinux 0x94efe61b dm_table_get_mode EXPORT_SYMBOL vmlinux 0x94fcf943 param_get_ullong EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user EXPORT_SYMBOL vmlinux 0x9514151a _mcount -EXPORT_SYMBOL vmlinux 0x952dfe9c unregister_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x952ef794 agp_alloc_page_array EXPORT_SYMBOL vmlinux 0x9539b847 input_inject_event +EXPORT_SYMBOL vmlinux 0x953a9194 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x953ba8f9 genphy_check_and_restart_aneg EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x955568c3 consume_skb +EXPORT_SYMBOL vmlinux 0x955904bb tcp_filter EXPORT_SYMBOL vmlinux 0x9559c7d1 of_cpu_node_to_id EXPORT_SYMBOL vmlinux 0x955f79ca page_pool_put_page_bulk EXPORT_SYMBOL vmlinux 0x956a44a8 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x956ccc83 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x9570e2ce fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x958be451 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x9590c65a buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x956bf36f tcp_prot +EXPORT_SYMBOL vmlinux 0x958442c6 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x9589555f pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x95ae9e68 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x95c0580b ether_setup EXPORT_SYMBOL vmlinux 0x95c6c48a qe_pin_set_gpio -EXPORT_SYMBOL vmlinux 0x95f55aa5 mmc_start_request +EXPORT_SYMBOL vmlinux 0x95c791cf tcp_make_synack +EXPORT_SYMBOL vmlinux 0x95cd3e2d __ip_select_ident EXPORT_SYMBOL vmlinux 0x96014fb4 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x96297641 phy_ethtool_get_strings EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add EXPORT_SYMBOL vmlinux 0x962f4008 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x96590b3c rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x9641332e blackhole_netdev +EXPORT_SYMBOL vmlinux 0x9653a37f mmc_get_card +EXPORT_SYMBOL vmlinux 0x9659b7a9 xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0x965ef50f blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x9661a1d9 inet_frag_pull_head EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg -EXPORT_SYMBOL vmlinux 0x966bca8f sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x96887a5d tcp_make_synack EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead EXPORT_SYMBOL vmlinux 0x969f154d trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0x96aef8a4 mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96d4c504 page_readlink -EXPORT_SYMBOL vmlinux 0x96e05a07 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x96d93c14 netdev_info +EXPORT_SYMBOL vmlinux 0x96f13a20 unregister_binfmt EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top EXPORT_SYMBOL vmlinux 0x971563fa blk_mq_run_hw_queues EXPORT_SYMBOL vmlinux 0x971ec27c hvc_put_chars +EXPORT_SYMBOL vmlinux 0x9737a8dd dev_mc_sync EXPORT_SYMBOL vmlinux 0x973abc43 pci_ep_cfs_remove_epf_group EXPORT_SYMBOL vmlinux 0x973bb617 unlock_two_nondirectories EXPORT_SYMBOL vmlinux 0x973c09e5 __pgd_index_size -EXPORT_SYMBOL vmlinux 0x973dc3f1 rtnl_link_get_net EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x9775e180 dev_lstats_read -EXPORT_SYMBOL vmlinux 0x978c7806 netdev_update_features -EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x97535335 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x97892b97 vfs_create +EXPORT_SYMBOL vmlinux 0x97a144a2 register_netdev +EXPORT_SYMBOL vmlinux 0x97a43de2 file_open_root EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97a8ce96 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x97aa0bca jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97b01772 unregister_fib_notifier EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97d3faea sock_wfree +EXPORT_SYMBOL vmlinux 0x97e6b29b nf_reinject EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x97ef5ef9 module_refcount EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update EXPORT_SYMBOL vmlinux 0x98071cde rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x98223bed clean_bdev_aliases EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r EXPORT_SYMBOL vmlinux 0x9846a8c3 __do_once_done EXPORT_SYMBOL vmlinux 0x985b14fd percpu_counter_set +EXPORT_SYMBOL vmlinux 0x985c2d92 phy_connect_direct EXPORT_SYMBOL vmlinux 0x98635b96 input_event -EXPORT_SYMBOL vmlinux 0x98684bdc block_read_full_page -EXPORT_SYMBOL vmlinux 0x986d9bb7 genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0x988aaa61 init_task -EXPORT_SYMBOL vmlinux 0x98914d50 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x98705d15 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x9876b570 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x987bd16f secpath_set +EXPORT_SYMBOL vmlinux 0x98925260 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x98b27644 unregister_netdev EXPORT_SYMBOL vmlinux 0x98b74ef9 param_ops_byte -EXPORT_SYMBOL vmlinux 0x98b81a4d get_unmapped_area -EXPORT_SYMBOL vmlinux 0x98badeab flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x98c11d5c __traceiter_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x98c64a5c tty_port_tty_get EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98ce9689 xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98d34aa6 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x98da1eec nvmem_get_mac_address EXPORT_SYMBOL vmlinux 0x98dd01f3 rtc_add_group +EXPORT_SYMBOL vmlinux 0x98dfb324 mmc_retune_release EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning EXPORT_SYMBOL vmlinux 0x98f6405b invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x99023cef crypto_sha256_update EXPORT_SYMBOL vmlinux 0x9916a652 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x992135e8 km_new_mapping -EXPORT_SYMBOL vmlinux 0x99238e20 nf_log_unregister EXPORT_SYMBOL vmlinux 0x99379391 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x993872c2 netdev_set_num_tc EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier EXPORT_SYMBOL vmlinux 0x994731df dquot_scan_active EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9973f352 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x9961f12e __traceiter_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x99871e07 dquot_set_dqblk EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x999f3664 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x99a6cf37 mmc_calc_max_discard EXPORT_SYMBOL vmlinux 0x99b1ac29 mach_powernv -EXPORT_SYMBOL vmlinux 0x99c3850e phy_attached_info EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99d4e564 migrate_page_copy EXPORT_SYMBOL vmlinux 0x99d55ea5 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x99d886ee mmc_cqe_request_done EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99efb608 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x99e5c45d tcp_gro_complete EXPORT_SYMBOL vmlinux 0x99f0c79a single_open EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align EXPORT_SYMBOL vmlinux 0x99fbc17b fs_param_is_fd -EXPORT_SYMBOL vmlinux 0x99fe0e08 unix_detach_fds EXPORT_SYMBOL vmlinux 0x9a0c33eb pin_user_pages_locked EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a170a15 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a203208 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x9a2c0f2f dev_add_offload EXPORT_SYMBOL vmlinux 0x9a2e33cb mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0x9a357904 inet6_offloads +EXPORT_SYMBOL vmlinux 0x9a405380 inet_sendpage EXPORT_SYMBOL vmlinux 0x9a446998 pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x9a499a90 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x9a48d9a6 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x9a48f8dd __pagevec_release EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a681eba dst_destroy +EXPORT_SYMBOL vmlinux 0x9a6aca3a security_path_mknod EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a7e4a39 vfs_fileattr_set EXPORT_SYMBOL vmlinux 0x9a8ac492 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x9a8f2ee0 pneigh_enqueue EXPORT_SYMBOL vmlinux 0x9a97a20f pm860x_page_reg_write EXPORT_SYMBOL vmlinux 0x9aa4c175 inc_node_page_state EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ac2dbdf skb_queue_head EXPORT_SYMBOL vmlinux 0x9acde112 gtm_ack_timer16 EXPORT_SYMBOL vmlinux 0x9ad47805 key_task_permission EXPORT_SYMBOL vmlinux 0x9ad553b6 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x9adff27d tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit EXPORT_SYMBOL vmlinux 0x9ae4d6fd phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x9ae554f9 flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x9aee162e mod_zone_page_state EXPORT_SYMBOL vmlinux 0x9af11afb pldmfw_op_pci_match_record EXPORT_SYMBOL vmlinux 0x9af6ede1 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x9afe5bdd scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x9b0e8991 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x9b191d96 dev_trans_start +EXPORT_SYMBOL vmlinux 0x9b11cd38 put_cmsg +EXPORT_SYMBOL vmlinux 0x9b16f49a scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x9b1b191b dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x9b1ff47f sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x9b243c5d phy_find_first +EXPORT_SYMBOL vmlinux 0x9b24499c balance_dirty_pages_ratelimited EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe EXPORT_SYMBOL vmlinux 0x9b2b67d8 fb_prepare_logo EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b36e818 devfreq_monitor_start EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b5b256f __brelse +EXPORT_SYMBOL vmlinux 0x9b563ec2 mmc_free_host +EXPORT_SYMBOL vmlinux 0x9b58c225 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x9b60e67a dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0x9b67f011 devm_memremap -EXPORT_SYMBOL vmlinux 0x9b6b834c key_unlink EXPORT_SYMBOL vmlinux 0x9b6da59b agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x9b6f4a87 vfs_mknod EXPORT_SYMBOL vmlinux 0x9b70da78 d_instantiate_anon EXPORT_SYMBOL vmlinux 0x9b71d784 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x9b79cc38 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x9b95f8c4 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x9b8d7f1b vfs_ioctl +EXPORT_SYMBOL vmlinux 0x9ba81dca vme_master_request +EXPORT_SYMBOL vmlinux 0x9bb15b76 fib_notifier_ops_register EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be +EXPORT_SYMBOL vmlinux 0x9bb5dc32 qdisc_put +EXPORT_SYMBOL vmlinux 0x9bc32c8b inode_io_list_del +EXPORT_SYMBOL vmlinux 0x9bcdd9e2 page_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x9bd048a5 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x9bdad0b3 __lock_page -EXPORT_SYMBOL vmlinux 0x9bf931c0 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x9bdd3422 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x9bf1c81f sdev_disable_disk_events EXPORT_SYMBOL vmlinux 0x9bff280a seq_release_private +EXPORT_SYMBOL vmlinux 0x9c07c921 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x9c3e5c62 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x9c404068 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x9c40e5a5 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x9c41d0dc tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x9c4736a7 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x9c4c360d netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x9c5af50a skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0x9c5f01ce dquot_destroy EXPORT_SYMBOL vmlinux 0x9c681161 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x9c723829 unregister_console EXPORT_SYMBOL vmlinux 0x9c7e1aaf unpin_user_page EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags EXPORT_SYMBOL vmlinux 0x9c8d102e cfb_copyarea -EXPORT_SYMBOL vmlinux 0x9c8fa0f5 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x9ca072c8 ip_options_compile EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cc1a1ca skb_find_text +EXPORT_SYMBOL vmlinux 0x9cb50741 xp_dma_unmap EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ce62fae ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x9cf42d85 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x9d06b21a xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d1237a1 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x9d147f09 scsi_change_queue_depth EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d183e32 scsi_host_get EXPORT_SYMBOL vmlinux 0x9d2093b4 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x9d2a4613 no_seek_end_llseek_size EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d5720d2 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x9d5da42d dev_mc_sync -EXPORT_SYMBOL vmlinux 0x9d8c86c7 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x9d8f38fc scsi_device_resume +EXPORT_SYMBOL vmlinux 0x9d35f7d9 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x9d523a54 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x9d69dff0 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x9d744b45 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x9d82136b mmput_async EXPORT_SYMBOL vmlinux 0x9d912fbc register_framebuffer EXPORT_SYMBOL vmlinux 0x9d96a9b0 mmu_hash_ops EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9da344d4 fasync_helper -EXPORT_SYMBOL vmlinux 0x9dace248 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x9da4b58c mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x9da5f2a8 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x9dc50093 of_device_register EXPORT_SYMBOL vmlinux 0x9dced99e blk_queue_physical_block_size EXPORT_SYMBOL vmlinux 0x9dd8dd57 load_fp_state +EXPORT_SYMBOL vmlinux 0x9ddddd5a bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0x9ddf4e92 copy_page_from_iter_atomic EXPORT_SYMBOL vmlinux 0x9de706b5 mempool_destroy EXPORT_SYMBOL vmlinux 0x9df75784 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x9e01320a copy_string_kernel -EXPORT_SYMBOL vmlinux 0x9e02046d ip_fraglist_init EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 EXPORT_SYMBOL vmlinux 0x9e13592d rproc_elf_find_loaded_rsc_table EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e36fe48 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x9e382746 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x9e30c1bc inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0x9e3dbe53 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x9e457f8c ata_scsi_cmd_error_handler EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable EXPORT_SYMBOL vmlinux 0x9e8d1b8d bio_split @@ -9187,58 +9118,53 @@ EXPORT_SYMBOL vmlinux 0x9ea9e201 pci_set_power_state EXPORT_SYMBOL vmlinux 0x9eaa72ce agp_create_memory EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec3b1ac __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ec6fa46 tcp_sync_mss EXPORT_SYMBOL vmlinux 0x9ecedc90 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0x9ed95f67 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x9ed09348 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x9ed52765 __scsi_iterate_devices EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set EXPORT_SYMBOL vmlinux 0x9ee28d25 current_time -EXPORT_SYMBOL vmlinux 0x9f2ecda8 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x9f400d61 release_sock -EXPORT_SYMBOL vmlinux 0x9f44804f phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x9ee3852e fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x9ee50f80 genphy_update_link +EXPORT_SYMBOL vmlinux 0x9f3f3dcf sock_kmalloc EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f4f2921 genphy_read_status +EXPORT_SYMBOL vmlinux 0x9f489245 vlan_vids_del_by_dev EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f61e838 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x9f5fcecf flush_signals EXPORT_SYMBOL vmlinux 0x9f6c7ad8 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x9f80cffe flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x9f919dbc scsi_device_put +EXPORT_SYMBOL vmlinux 0x9f6f7e4f netdev_adjacent_change_abort EXPORT_SYMBOL vmlinux 0x9f984513 strrchr EXPORT_SYMBOL vmlinux 0x9f9d6112 devm_gen_pool_create EXPORT_SYMBOL vmlinux 0x9fa30878 register_quota_format EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync EXPORT_SYMBOL vmlinux 0x9fad518e irq_stat -EXPORT_SYMBOL vmlinux 0x9fb01f23 sock_setsockopt EXPORT_SYMBOL vmlinux 0x9fcb43a7 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x9fd2cf67 sock_no_listen EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe96d27 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x9feb33e2 ip_mc_check_igmp EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa0039121 scsi_scan_host EXPORT_SYMBOL vmlinux 0xa01333bd update_region EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa01de628 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xa025aebb sdev_prefix_printk EXPORT_SYMBOL vmlinux 0xa0262284 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0xa02aa459 thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa0384662 vfs_llseek -EXPORT_SYMBOL vmlinux 0xa03afd00 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0xa0346002 ipv6_dev_find EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa052db8e xfrm_state_delete EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute -EXPORT_SYMBOL vmlinux 0xa0626b2d xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0xa0751e35 __dev_set_mtu 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 0xa096ca60 flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0xa098ddc5 uart_write_wakeup EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0cbf1ba netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xa0d32c70 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xa0b38ce8 migrate_page_states +EXPORT_SYMBOL vmlinux 0xa0c99f2b __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function @@ -9246,692 +9172,661 @@ EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check EXPORT_SYMBOL vmlinux 0xa0ec5468 input_mt_report_pointer_emulation EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa102fc4d blk_sync_queue EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max EXPORT_SYMBOL vmlinux 0xa120e187 commit_creds EXPORT_SYMBOL vmlinux 0xa13bf5ee padata_alloc -EXPORT_SYMBOL vmlinux 0xa13d8002 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xa146f6fb tcf_register_action EXPORT_SYMBOL vmlinux 0xa15789ff config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0xa15cbda1 mark_page_accessed EXPORT_SYMBOL vmlinux 0xa17387d1 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0xa17b1dd9 key_link -EXPORT_SYMBOL vmlinux 0xa1a611b6 __i2c_transfer -EXPORT_SYMBOL vmlinux 0xa1a61b7b inet_select_addr EXPORT_SYMBOL vmlinux 0xa1ab1588 blk_rq_map_integrity_sg EXPORT_SYMBOL vmlinux 0xa1b63dcc devm_release_resource EXPORT_SYMBOL vmlinux 0xa1b8f774 security_binder_transaction -EXPORT_SYMBOL vmlinux 0xa1bd37af inet_dgram_ops EXPORT_SYMBOL vmlinux 0xa1cb80cf remove_proc_entry EXPORT_SYMBOL vmlinux 0xa1d500ad inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xa1daec48 tcp_poll -EXPORT_SYMBOL vmlinux 0xa1dd7a32 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xa1e94d74 xfrm_input_resume EXPORT_SYMBOL vmlinux 0xa1eaa2cd mempool_init EXPORT_SYMBOL vmlinux 0xa1ed6a7f framebuffer_release -EXPORT_SYMBOL vmlinux 0xa1fd8291 __skb_gso_segment EXPORT_SYMBOL vmlinux 0xa2056ea6 get_tz_trend EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa20d3ba6 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xa2099740 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xa20e0f77 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0xa213671c jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xa218b635 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xa2281860 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xa22af92f audit_log EXPORT_SYMBOL vmlinux 0xa22d0fe6 unload_nls EXPORT_SYMBOL vmlinux 0xa2380642 complete_request_key EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa24524f6 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xa2443cc3 __skb_gso_segment EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa2511bd1 tcf_em_register EXPORT_SYMBOL vmlinux 0xa252101f pcie_relaxed_ordering_enabled EXPORT_SYMBOL vmlinux 0xa257e26d cdrom_open EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xa268d3de ptp_find_pin -EXPORT_SYMBOL vmlinux 0xa26ffd8d ping_prot -EXPORT_SYMBOL vmlinux 0xa27383ed blk_rq_init +EXPORT_SYMBOL vmlinux 0xa2691234 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xa28119a2 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xa28702d4 sock_wake_async EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa2950d30 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xa29b3482 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xa291e9bb i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xa292764a sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xa2b2f890 mptcp_subflow_reqsk_alloc EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free EXPORT_SYMBOL vmlinux 0xa2dab2af param_ops_int EXPORT_SYMBOL vmlinux 0xa2db6e5d vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xa2dbd483 may_umount -EXPORT_SYMBOL vmlinux 0xa2ebc196 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xa2f2f181 mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0xa2fa030e pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0xa2fbb6c4 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xa2fe6597 netpoll_setup EXPORT_SYMBOL vmlinux 0xa311fae4 seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0xa31841d0 vm_map_ram EXPORT_SYMBOL vmlinux 0xa318b05e tty_check_change -EXPORT_SYMBOL vmlinux 0xa32d3dcc pagecache_write_begin -EXPORT_SYMBOL vmlinux 0xa33ab3bb trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xa32d08c0 phy_error EXPORT_SYMBOL vmlinux 0xa34ea576 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xa3518ca0 scsi_add_device -EXPORT_SYMBOL vmlinux 0xa352e239 rt_dst_clone EXPORT_SYMBOL vmlinux 0xa3582189 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xa364cdc2 kernel_sendpage EXPORT_SYMBOL vmlinux 0xa366ff8d xa_get_order -EXPORT_SYMBOL vmlinux 0xa379ac3b i2c_transfer +EXPORT_SYMBOL vmlinux 0xa372568e crypto_sha1_finup EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot +EXPORT_SYMBOL vmlinux 0xa391fae7 unlock_buffer EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay -EXPORT_SYMBOL vmlinux 0xa3b977d5 phy_device_remove EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3ca38ed i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update -EXPORT_SYMBOL vmlinux 0xa3cf39cc unregister_shrinker EXPORT_SYMBOL vmlinux 0xa3e9ec4b nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xa3f217c4 of_mdio_find_bus EXPORT_SYMBOL vmlinux 0xa3f8b402 nd_btt_probe EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final EXPORT_SYMBOL vmlinux 0xa400539a rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0xa41ccb5e drop_nlink -EXPORT_SYMBOL vmlinux 0xa426f30f km_state_notify -EXPORT_SYMBOL vmlinux 0xa43b19de __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0xa4425db8 phy_read_mmd -EXPORT_SYMBOL vmlinux 0xa44ecdba iw_handler_set_spy EXPORT_SYMBOL vmlinux 0xa4561462 forget_all_cached_acls EXPORT_SYMBOL vmlinux 0xa458c78c posix_acl_valid +EXPORT_SYMBOL vmlinux 0xa46433e4 validate_sp EXPORT_SYMBOL vmlinux 0xa47708ce dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xa47ad581 dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0xa4835155 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xa484116e find_vma +EXPORT_SYMBOL vmlinux 0xa48ab6fa tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0xa49a9b46 mempool_alloc -EXPORT_SYMBOL vmlinux 0xa49f050a mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0xa4b8bc42 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xa4b78074 clk_hw_get_clk EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bfe7b3 fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4d7d20d flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xa4e467d5 flow_indr_dev_register EXPORT_SYMBOL vmlinux 0xa4f65fc6 fscrypt_put_encryption_info EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit EXPORT_SYMBOL vmlinux 0xa522bf57 agp_generic_mask_memory EXPORT_SYMBOL vmlinux 0xa524175b __put_cred -EXPORT_SYMBOL vmlinux 0xa52c164f tcf_block_put +EXPORT_SYMBOL vmlinux 0xa5475e3a kmem_cache_shrink EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color EXPORT_SYMBOL vmlinux 0xa557592c alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0xa55cfc9a __skb_recv_datagram EXPORT_SYMBOL vmlinux 0xa56280fb rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0xa56edd1c inet_put_port +EXPORT_SYMBOL vmlinux 0xa56b0520 page_get_link +EXPORT_SYMBOL vmlinux 0xa58056eb genphy_read_status +EXPORT_SYMBOL vmlinux 0xa58bacd0 tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0xa58eff37 dma_map_sg_attrs EXPORT_SYMBOL vmlinux 0xa5912647 proc_set_user -EXPORT_SYMBOL vmlinux 0xa5a8875f tcf_get_next_proto EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound EXPORT_SYMBOL vmlinux 0xa5b0de22 __do_once_slow_done -EXPORT_SYMBOL vmlinux 0xa5b999c6 vlan_for_each EXPORT_SYMBOL vmlinux 0xa5b9ec26 get_watch_queue -EXPORT_SYMBOL vmlinux 0xa5c47766 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xa5c643cc __pagevec_release +EXPORT_SYMBOL vmlinux 0xa5c9815c jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xa5ccfeed rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0xa5e87da9 mdio_device_register -EXPORT_SYMBOL vmlinux 0xa60a05b3 netif_napi_add +EXPORT_SYMBOL vmlinux 0xa5fda8c3 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xa60e4809 sock_init_data +EXPORT_SYMBOL vmlinux 0xa614d340 memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa62b76f4 brioctl_set -EXPORT_SYMBOL vmlinux 0xa62e0e7a trace_event_printf EXPORT_SYMBOL vmlinux 0xa635d2a6 profile_pc EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa652426d add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xa6545abb mdiobus_write EXPORT_SYMBOL vmlinux 0xa6579f21 __pud_val_bits EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio -EXPORT_SYMBOL vmlinux 0xa65c3248 netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0xa66d0f5d sock_bind_add -EXPORT_SYMBOL vmlinux 0xa670ae20 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xa6805541 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xa6772785 inet6_bind EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid EXPORT_SYMBOL vmlinux 0xa68b35d3 proc_symlink -EXPORT_SYMBOL vmlinux 0xa6a4f20b __mdiobus_register +EXPORT_SYMBOL vmlinux 0xa68cfcb8 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xa696c47f jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xa6af6d32 delete_from_page_cache EXPORT_SYMBOL vmlinux 0xa6b8cbe0 blk_queue_max_discard_sectors EXPORT_SYMBOL vmlinux 0xa6c8ccff blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xa6cb0ef5 sock_rfree -EXPORT_SYMBOL vmlinux 0xa6d0a15e sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xa6cb525b inet_protos EXPORT_SYMBOL vmlinux 0xa6d0d8fd fb_get_mode EXPORT_SYMBOL vmlinux 0xa6de1d0f inode_init_owner -EXPORT_SYMBOL vmlinux 0xa6f4bae4 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xa6e96b7e tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xa6fdbaea scmd_printk +EXPORT_SYMBOL vmlinux 0xa7079303 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xa70950d8 fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xa7131b08 mmc_retune_unpause EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be EXPORT_SYMBOL vmlinux 0xa71dfe7a devm_request_resource -EXPORT_SYMBOL vmlinux 0xa727b72a inet_register_protosw -EXPORT_SYMBOL vmlinux 0xa729f155 security_sock_graft -EXPORT_SYMBOL vmlinux 0xa74b0b21 page_zero_new_buffers EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa750e55b netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0xa76d8e29 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xa7741433 mdiobus_read_nested EXPORT_SYMBOL vmlinux 0xa77b1ed6 __wait_on_bit_lock EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier EXPORT_SYMBOL vmlinux 0xa7823715 tty_chars_in_buffer EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 EXPORT_SYMBOL vmlinux 0xa79bff2d hpage_shift -EXPORT_SYMBOL vmlinux 0xa79e57e0 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xa7a616c3 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xa7c2650b ipv4_specific -EXPORT_SYMBOL vmlinux 0xa7ee9065 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xa7a187a3 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xa7c597d6 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xa7cd98f5 netdev_crit EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper EXPORT_SYMBOL vmlinux 0xa8077ea2 kobject_put -EXPORT_SYMBOL vmlinux 0xa82e449a dns_query +EXPORT_SYMBOL vmlinux 0xa80dc1ed sock_bindtoindex EXPORT_SYMBOL vmlinux 0xa8327367 textsearch_unregister EXPORT_SYMBOL vmlinux 0xa83fae8a page_pool_put_page 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 0xa84de8c7 __dev_kfree_skb_irq EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa8827150 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xa87a2fe0 dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0xa8896319 __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xa889d5b4 nf_log_register -EXPORT_SYMBOL vmlinux 0xa88e36bd tcp_add_backlog -EXPORT_SYMBOL vmlinux 0xa89ed28b skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xa89e7c3d netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xa8ad1acc ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xa8c2a132 xfrm_find_acq EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all EXPORT_SYMBOL vmlinux 0xa8cc1972 PDE_DATA EXPORT_SYMBOL vmlinux 0xa8d16f17 pci_resize_resource EXPORT_SYMBOL vmlinux 0xa8d636c1 rproc_boot -EXPORT_SYMBOL vmlinux 0xa8dccf56 nlmsg_notify -EXPORT_SYMBOL vmlinux 0xa8e65a8f tcf_idr_search +EXPORT_SYMBOL vmlinux 0xa8f16f92 ip6_output EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa9042d8f _dev_printk +EXPORT_SYMBOL vmlinux 0xa90a766f nobh_writepage EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work EXPORT_SYMBOL vmlinux 0xa9168231 of_get_next_parent EXPORT_SYMBOL vmlinux 0xa916b694 strnlen EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa937dd9f mmc_cqe_start_req EXPORT_SYMBOL vmlinux 0xa94a91f0 page_pool_update_nid -EXPORT_SYMBOL vmlinux 0xa9593a27 pipe_lock EXPORT_SYMBOL vmlinux 0xa95bcadd input_mt_assign_slots EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa96e3ccd jbd2_journal_ack_err EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa979457a sk_reset_timer EXPORT_SYMBOL vmlinux 0xa98c9c2d address_space_init_once EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes EXPORT_SYMBOL vmlinux 0xa9caa00a qe_pin_request EXPORT_SYMBOL vmlinux 0xa9dffce5 mempool_free -EXPORT_SYMBOL vmlinux 0xa9f57850 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xa9fbe553 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0xaa02423f tcf_idr_search EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa140206 __netif_schedule EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa28f568 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xaa1d9ba6 udp_seq_ops +EXPORT_SYMBOL vmlinux 0xaa252ad2 finish_swait +EXPORT_SYMBOL vmlinux 0xaa3c057f __of_mdiobus_register EXPORT_SYMBOL vmlinux 0xaa3f6f04 radix__flush_tlb_kernel_range -EXPORT_SYMBOL vmlinux 0xaa6d5a6e tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xaa4f92fc ppp_unregister_channel EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa756d87 validate_sp EXPORT_SYMBOL vmlinux 0xaa9179c4 ida_alloc_range EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic -EXPORT_SYMBOL vmlinux 0xaaa85f3d scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xaaaa009b scsi_print_result -EXPORT_SYMBOL vmlinux 0xaaab220a netif_schedule_queue EXPORT_SYMBOL vmlinux 0xaaab45e2 clk_get EXPORT_SYMBOL vmlinux 0xaab2ee91 complete_all -EXPORT_SYMBOL vmlinux 0xaab61b7a security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0xaabdeb39 vme_irq_generate -EXPORT_SYMBOL vmlinux 0xaac89a82 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xaab6d6e0 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xaac23a74 __sock_create EXPORT_SYMBOL vmlinux 0xaacc8583 bioset_exit EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad482b2 xp_can_alloc EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad6ee00 filemap_flush EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function -EXPORT_SYMBOL vmlinux 0xaadb8abe inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xaae7a2fd __scsi_add_device EXPORT_SYMBOL vmlinux 0xaaf89bad truncate_pagecache_range EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp EXPORT_SYMBOL vmlinux 0xab110091 phy_write_mmd -EXPORT_SYMBOL vmlinux 0xab137856 bh_submit_read -EXPORT_SYMBOL vmlinux 0xab137948 skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0xab1b8560 file_update_time +EXPORT_SYMBOL vmlinux 0xab2f8afd tcp_mmap EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab5ff18d inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0xab55249d skb_trim EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab672030 i2c_smbus_read_i2c_block_data EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab7fa26a flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xab7ea351 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0xab8cfe37 dcb_getapp +EXPORT_SYMBOL vmlinux 0xab9330f4 sk_dst_check EXPORT_SYMBOL vmlinux 0xab9a2971 dma_resv_init -EXPORT_SYMBOL vmlinux 0xaba6c270 sock_gettstamp -EXPORT_SYMBOL vmlinux 0xaba9ecf2 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xab9defd1 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xabb94042 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xabc391a2 kill_pid EXPORT_SYMBOL vmlinux 0xabc9b9b6 proc_create_single_data EXPORT_SYMBOL vmlinux 0xabce30a7 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xabe3d768 sdev_prefix_printk EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xabf0315d alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xabf4b17f napi_disable EXPORT_SYMBOL vmlinux 0xabf77ea6 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xabf9c553 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xac0daaec lock_page_memcg EXPORT_SYMBOL vmlinux 0xac1525b0 init_special_inode EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac364704 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0xac366b20 dev_alloc_name EXPORT_SYMBOL vmlinux 0xac430423 __pmd_val_bits EXPORT_SYMBOL vmlinux 0xac4386f7 input_match_device_id EXPORT_SYMBOL vmlinux 0xac4915b0 md_check_recovery -EXPORT_SYMBOL vmlinux 0xac4ecc9b sock_kzfree_s EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac601095 __pskb_pull_tail EXPORT_SYMBOL vmlinux 0xac61913c of_match_device -EXPORT_SYMBOL vmlinux 0xac86a8af dst_release -EXPORT_SYMBOL vmlinux 0xac8f8373 sock_register -EXPORT_SYMBOL vmlinux 0xac9a7040 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xac6671ec lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xac9695bc xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0xaca3a673 __vio_register_driver EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacddb80d tcp_shutdown EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xacdde8d6 genl_unregister_family EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xacfbe120 flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad07b14d netdev_change_features +EXPORT_SYMBOL vmlinux 0xad10629f jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xad17fc74 dev_queue_xmit EXPORT_SYMBOL vmlinux 0xad1efdd9 __frontswap_store -EXPORT_SYMBOL vmlinux 0xad218f03 sk_error_report -EXPORT_SYMBOL vmlinux 0xad2da7fc tcf_block_get -EXPORT_SYMBOL vmlinux 0xad319e25 qdisc_put_unlocked EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node -EXPORT_SYMBOL vmlinux 0xad4f7a28 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xad4aeda8 dentry_open EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock -EXPORT_SYMBOL vmlinux 0xad6d985b inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xad50d613 sync_dirty_buffer EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function EXPORT_SYMBOL vmlinux 0xad8c9e2e rproc_vq_interrupt EXPORT_SYMBOL vmlinux 0xad8f3e2a devm_nvmem_unregister EXPORT_SYMBOL vmlinux 0xad9712e6 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xad9eb2ca __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0xada001a1 ip6_xmit EXPORT_SYMBOL vmlinux 0xada4afe4 bdi_alloc +EXPORT_SYMBOL vmlinux 0xada9719e netpoll_poll_disable EXPORT_SYMBOL vmlinux 0xadaa2652 pci_bus_read_config_byte EXPORT_SYMBOL vmlinux 0xadac3882 tty_wait_until_sent EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadb2edc8 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xadbd98a8 seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL vmlinux 0xadc96814 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xadc5cc6e fifo_set_limit EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadf0a8a0 send_sig_info +EXPORT_SYMBOL vmlinux 0xade78779 kernel_recvmsg EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc EXPORT_SYMBOL vmlinux 0xae044003 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xae0acea4 phy_attached_print EXPORT_SYMBOL vmlinux 0xae0e5edc dm_unregister_target -EXPORT_SYMBOL vmlinux 0xae10128e dev_addr_init -EXPORT_SYMBOL vmlinux 0xae2a679e phy_config_aneg EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert EXPORT_SYMBOL vmlinux 0xae469c26 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xae479bb9 mmc_detect_change EXPORT_SYMBOL vmlinux 0xae4c8439 __pte_table_size EXPORT_SYMBOL vmlinux 0xae4ee984 dm_register_target EXPORT_SYMBOL vmlinux 0xae714b3f blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xae772186 unlock_page -EXPORT_SYMBOL vmlinux 0xae7fd487 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xae730268 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xae9d15cc logfc EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaebf372f sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xaeafeee0 vfs_symlink EXPORT_SYMBOL vmlinux 0xaec5039e of_create_pci_dev -EXPORT_SYMBOL vmlinux 0xaecf5135 softnet_data +EXPORT_SYMBOL vmlinux 0xaeda4c2a flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0xaf0df373 unregister_key_type -EXPORT_SYMBOL vmlinux 0xaf1abe42 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xaf1d9c23 submit_bio EXPORT_SYMBOL vmlinux 0xaf33fedf param_ops_ulong EXPORT_SYMBOL vmlinux 0xaf376407 fb_get_buffer_offset EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level EXPORT_SYMBOL vmlinux 0xaf43fde6 of_find_backlight_by_node EXPORT_SYMBOL vmlinux 0xaf5d1a3a jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xaf606ce8 scsi_dma_map EXPORT_SYMBOL vmlinux 0xaf6ade2b pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0xaf6b99e8 migrate_page -EXPORT_SYMBOL vmlinux 0xaf88b8ac __dev_direct_xmit EXPORT_SYMBOL vmlinux 0xaf941476 serio_open EXPORT_SYMBOL vmlinux 0xafa115ec regset_get_alloc -EXPORT_SYMBOL vmlinux 0xafbd6537 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xafb47be9 neigh_direct_output EXPORT_SYMBOL vmlinux 0xafc06bcd wait_for_completion_io EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafeda6c0 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0xafe11e87 file_ns_capable +EXPORT_SYMBOL vmlinux 0xafe6504a ipmi_platform_add EXPORT_SYMBOL vmlinux 0xb001d709 tty_name +EXPORT_SYMBOL vmlinux 0xb00fe96a add_to_pipe EXPORT_SYMBOL vmlinux 0xb0136bb8 radix__flush_tlb_mm EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb02186e6 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xb033475f tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0xb02fbde4 dump_skip EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats -EXPORT_SYMBOL vmlinux 0xb059619b sock_alloc_send_pskb EXPORT_SYMBOL vmlinux 0xb0596ec3 devm_kvasprintf EXPORT_SYMBOL vmlinux 0xb05acc06 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xb05dd661 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb0762e4d __page_symlink -EXPORT_SYMBOL vmlinux 0xb0795d24 setup_new_exec -EXPORT_SYMBOL vmlinux 0xb07e4ca7 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xb0873b09 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xb084fc28 tcf_block_put_ext EXPORT_SYMBOL vmlinux 0xb08bb736 stop_tty EXPORT_SYMBOL vmlinux 0xb08fade2 fscrypt_encrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0bb4906 __scm_destroy -EXPORT_SYMBOL vmlinux 0xb0c34dac sk_ns_capable +EXPORT_SYMBOL vmlinux 0xb0ae0d1c unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xb0d927d4 twl6040_get_sysclk EXPORT_SYMBOL vmlinux 0xb0e10781 get_option EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize -EXPORT_SYMBOL vmlinux 0xb0fcf7f7 dev_mc_del EXPORT_SYMBOL vmlinux 0xb0ff494f setattr_copy EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb1211656 kmem_cache_create -EXPORT_SYMBOL vmlinux 0xb1257808 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xb10eaa41 dev_close +EXPORT_SYMBOL vmlinux 0xb11e3f51 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xb126e626 xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0xb1297b58 pci_bus_type EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1401157 nf_log_bind_pf EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14b4004 tty_lock EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work EXPORT_SYMBOL vmlinux 0xb155ba23 get_tree_single +EXPORT_SYMBOL vmlinux 0xb1566c44 inode_get_bytes EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec -EXPORT_SYMBOL vmlinux 0xb15e0cd7 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0xb1725779 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xb1724ee9 xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0xb18e8a26 sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0xb191f01e xfrm4_rcv EXPORT_SYMBOL vmlinux 0xb19d55df fsl_upm_run_pattern -EXPORT_SYMBOL vmlinux 0xb1b37394 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xb1aab966 security_inode_setsecctx EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress EXPORT_SYMBOL vmlinux 0xb1c5c64e gtm_set_exact_timer16 EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug +EXPORT_SYMBOL vmlinux 0xb1d446dc flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xb1d7e34e __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e9001e tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xb1faa7c1 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xb1fd0ed1 jbd2_journal_clear_features EXPORT_SYMBOL vmlinux 0xb2228a18 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xb2236501 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xb2295e20 __traceiter_module_get EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb24e511c mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0xb25270e7 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xb2313c7f lookup_one_len +EXPORT_SYMBOL vmlinux 0xb242d553 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xb245b958 ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0xb25c632a d_lookup EXPORT_SYMBOL vmlinux 0xb25d2cdd vc_resize -EXPORT_SYMBOL vmlinux 0xb269b611 done_path_create -EXPORT_SYMBOL vmlinux 0xb2767854 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0xb29440f0 unregister_console -EXPORT_SYMBOL vmlinux 0xb2945bf9 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xb2983b50 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xb299fa76 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xb29e8e28 do_clone_file_range -EXPORT_SYMBOL vmlinux 0xb29f2280 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xb285dcd9 __skb_pad +EXPORT_SYMBOL vmlinux 0xb29797ef skb_eth_pop EXPORT_SYMBOL vmlinux 0xb2acc4cd __msr_check_and_clear EXPORT_SYMBOL vmlinux 0xb2acd9e5 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xb2afbb47 __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0xb2b226df pci_enable_msi EXPORT_SYMBOL vmlinux 0xb2d81013 md_integrity_register +EXPORT_SYMBOL vmlinux 0xb2e12576 wait_on_page_private_2 EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb3034cce inet_add_offload EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb30b2a22 devm_devfreq_register_notifier EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb31326f6 __kfree_skb -EXPORT_SYMBOL vmlinux 0xb31d448f skb_add_rx_frag EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 -EXPORT_SYMBOL vmlinux 0xb327a5dc default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xb32c27e3 dev_driver_string +EXPORT_SYMBOL vmlinux 0xb334d198 buffer_check_dirty_writeback EXPORT_SYMBOL vmlinux 0xb344ea91 jbd2_wait_inode_data EXPORT_SYMBOL vmlinux 0xb350f6f2 dqstats -EXPORT_SYMBOL vmlinux 0xb35921d7 nf_log_trace +EXPORT_SYMBOL vmlinux 0xb35af628 noop_qdisc EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock EXPORT_SYMBOL vmlinux 0xb36d3f93 device_add_disk -EXPORT_SYMBOL vmlinux 0xb37008b9 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xb381cc2f __phy_resume EXPORT_SYMBOL vmlinux 0xb38ba6f6 clk_bulk_get -EXPORT_SYMBOL vmlinux 0xb38deeab netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xb39c88a5 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0xb3ad269c page_symlink -EXPORT_SYMBOL vmlinux 0xb3bc7c0b ata_std_end_eh EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0xb3c2b26c set_bh_page EXPORT_SYMBOL vmlinux 0xb3c6dd23 bio_clone_fast EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3db0924 kernel_read EXPORT_SYMBOL vmlinux 0xb3e3ac95 _raw_read_lock EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb4219e2c tso_build_data +EXPORT_SYMBOL vmlinux 0xb41e95cc ip_mc_leave_group EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked EXPORT_SYMBOL vmlinux 0xb4266d6d get_user_pages_locked EXPORT_SYMBOL vmlinux 0xb426a2a4 d_splice_alias EXPORT_SYMBOL vmlinux 0xb4290309 cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0xb432a811 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xb42b5b2c of_find_device_by_node EXPORT_SYMBOL vmlinux 0xb4331fcf padata_free_shell +EXPORT_SYMBOL vmlinux 0xb4347619 kill_fasync +EXPORT_SYMBOL vmlinux 0xb43f187d nobh_truncate_page EXPORT_SYMBOL vmlinux 0xb4424b2b proc_doulongvec_ms_jiffies_minmax EXPORT_SYMBOL vmlinux 0xb44478a6 qe_pin_free -EXPORT_SYMBOL vmlinux 0xb44da77d register_netdev -EXPORT_SYMBOL vmlinux 0xb450c572 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xb467c496 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xb46a278c napi_get_frags EXPORT_SYMBOL vmlinux 0xb46ca764 simple_rmdir +EXPORT_SYMBOL vmlinux 0xb4708707 __set_page_dirty_buffers EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get +EXPORT_SYMBOL vmlinux 0xb47879d5 keyring_clear EXPORT_SYMBOL vmlinux 0xb47be20e pseries_disable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0xb481c8be pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb48fa73d softnet_data +EXPORT_SYMBOL vmlinux 0xb492311d scsi_track_queue_full EXPORT_SYMBOL vmlinux 0xb4a3ee7e hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xb4bf5cf7 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xb4bde391 __cgroup_bpf_run_filter_sk EXPORT_SYMBOL vmlinux 0xb4cee94e mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xb4e25a3a audit_log +EXPORT_SYMBOL vmlinux 0xb4ec7478 __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb51c2fad netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0xb521b33c bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xb528f377 skb_clone +EXPORT_SYMBOL vmlinux 0xb53344d8 put_fs_context EXPORT_SYMBOL vmlinux 0xb539b516 dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0xb53aa09e mdio_bus_type EXPORT_SYMBOL vmlinux 0xb545298b blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xb546f9e1 register_filesystem EXPORT_SYMBOL vmlinux 0xb54a971a _copy_from_iter_nocache EXPORT_SYMBOL vmlinux 0xb54ce212 tty_register_device +EXPORT_SYMBOL vmlinux 0xb54e8797 xfrm_policy_delete EXPORT_SYMBOL vmlinux 0xb555f9f3 gtm_get_specific_timer16 EXPORT_SYMBOL vmlinux 0xb568692d unregister_framebuffer EXPORT_SYMBOL vmlinux 0xb56a30e4 devm_of_find_backlight EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb581cb9f inet_del_offload EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb59577ee security_inet_conn_established EXPORT_SYMBOL vmlinux 0xb5958ac6 rdmacg_try_charge EXPORT_SYMBOL vmlinux 0xb596e30b __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xb5a32345 build_skb EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa5427 xfrm_state_walk EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ae1198 sk_stream_wait_close EXPORT_SYMBOL vmlinux 0xb5af7d20 of_find_node_opts_by_path EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5d266b8 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xb5dcd4f9 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xb5b6dca0 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xb5b91bfb ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xb5ba00a4 wait_on_page_private_2_killable +EXPORT_SYMBOL vmlinux 0xb5bc6eba sock_no_bind EXPORT_SYMBOL vmlinux 0xb5de1ec3 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xb5df0c1b ip_getsockopt EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5ffd3c8 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xb5ea6b9a qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xb5ef6065 locks_free_lock +EXPORT_SYMBOL vmlinux 0xb5f63a65 dev_set_mac_address EXPORT_SYMBOL vmlinux 0xb60c2b8b devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0xb626a01a wake_up_process -EXPORT_SYMBOL vmlinux 0xb626f945 filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable EXPORT_SYMBOL vmlinux 0xb6361231 mutex_is_locked -EXPORT_SYMBOL vmlinux 0xb64884cc xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xb65f583b sock_set_mark +EXPORT_SYMBOL vmlinux 0xb6376c52 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xb64dbcae skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0xb66022c5 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xb66a14ea nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0xb675c164 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xb6713332 shmem_aops EXPORT_SYMBOL vmlinux 0xb675c917 dget_parent +EXPORT_SYMBOL vmlinux 0xb67793ab inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb68d7911 cont_write_begin EXPORT_SYMBOL vmlinux 0xb68fb124 iget_failed EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69f65ff __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xb69fb490 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xb69ded86 gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6be35a6 udp_ioctl +EXPORT_SYMBOL vmlinux 0xb6d54619 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xb6db5932 i2c_smbus_read_byte EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6fb5b1e tcf_register_action -EXPORT_SYMBOL vmlinux 0xb6fde77a xfrm_lookup +EXPORT_SYMBOL vmlinux 0xb6e6f26f dev_mc_unsync EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb6ffad09 security_path_unlink EXPORT_SYMBOL vmlinux 0xb70289d9 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xb70dea08 xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces EXPORT_SYMBOL vmlinux 0xb716323e set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xb71a90a0 file_write_and_wait_range EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync EXPORT_SYMBOL vmlinux 0xb720e1ab mem_section -EXPORT_SYMBOL vmlinux 0xb74433f9 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xb7229687 register_qdisc +EXPORT_SYMBOL vmlinux 0xb723daf4 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xb767174b tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb771019a phy_error EXPORT_SYMBOL vmlinux 0xb778afaf __seq_open_private +EXPORT_SYMBOL vmlinux 0xb7815b7e try_module_get EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0xb78a7bc0 PageMovable EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb7975f5a finish_swait -EXPORT_SYMBOL vmlinux 0xb7a658ac eth_header_parse -EXPORT_SYMBOL vmlinux 0xb7aa425e sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0xb7ba96cc unregister_cdrom EXPORT_SYMBOL vmlinux 0xb7bc6adc seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xb7bd9e78 inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0xb7c0f443 sort EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7ce21bd datagram_poll EXPORT_SYMBOL vmlinux 0xb7d25a75 pci_scan_bridge EXPORT_SYMBOL vmlinux 0xb7d2ef3d gen_pool_dma_alloc EXPORT_SYMBOL vmlinux 0xb7dac51e phy_read_paged -EXPORT_SYMBOL vmlinux 0xb7fa7859 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xb818e187 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xb7e26dde genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0xb8056596 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xb81c20f9 xp_free +EXPORT_SYMBOL vmlinux 0xb825be2b kmem_cache_size EXPORT_SYMBOL vmlinux 0xb8304a9b tty_unregister_driver EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue EXPORT_SYMBOL vmlinux 0xb83b44e9 nd_region_release_lane EXPORT_SYMBOL vmlinux 0xb858f244 tty_port_open -EXPORT_SYMBOL vmlinux 0xb8687c51 vfs_clone_file_range EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key EXPORT_SYMBOL vmlinux 0xb87ec028 radix__flush_all_mm EXPORT_SYMBOL vmlinux 0xb8846fe1 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xb88a5bd0 follow_up +EXPORT_SYMBOL vmlinux 0xb88db848 dev_mc_init EXPORT_SYMBOL vmlinux 0xb88dc5b4 pci_write_config_word EXPORT_SYMBOL vmlinux 0xb8926f21 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xb8965a99 icmp6_send EXPORT_SYMBOL vmlinux 0xb8979d8d backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0xb8998983 module_layout EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb89ffabe vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xb8ab5f97 dev_vprintk_emit EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8f25706 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0xb8be60b1 module_layout EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb90df294 dcb_ieee_getapp_default_prio_mask EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb917e09d find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0xb9177dbd __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xb91ed32a jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xb93f2bde jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb94a2dcb phy_aneg_done EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse EXPORT_SYMBOL vmlinux 0xb97449c4 inode_init_always -EXPORT_SYMBOL vmlinux 0xb975d172 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xb975c2ff vfs_copy_file_range EXPORT_SYMBOL vmlinux 0xb9846257 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0xb9a91cf6 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xb9d1887b put_cmsg -EXPORT_SYMBOL vmlinux 0xb9dd3bae mdio_find_bus +EXPORT_SYMBOL vmlinux 0xb9c3cd21 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xb9d48eb9 genphy_resume EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9ea47f5 __bforget -EXPORT_SYMBOL vmlinux 0xba02c659 devfreq_update_status +EXPORT_SYMBOL vmlinux 0xb9f0c2c7 end_page_writeback EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le EXPORT_SYMBOL vmlinux 0xba3153bd blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xba340508 unmap_mapping_range EXPORT_SYMBOL vmlinux 0xba385f47 rproc_put -EXPORT_SYMBOL vmlinux 0xba3af077 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xba48d1f8 nf_reinject +EXPORT_SYMBOL vmlinux 0xba3e5dfa netdev_features_change EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len EXPORT_SYMBOL vmlinux 0xba55e7c7 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0xba5d9172 generic_block_bmap EXPORT_SYMBOL vmlinux 0xba67a355 nmi_panic EXPORT_SYMBOL vmlinux 0xba691c85 _insb -EXPORT_SYMBOL vmlinux 0xba6ce41a scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba712d44 filemap_fault EXPORT_SYMBOL vmlinux 0xbaa028fd d_instantiate_new -EXPORT_SYMBOL vmlinux 0xbacdd206 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0xbaabd927 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xbac0c1a5 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xbacefa05 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xbadc1fbb sock_create EXPORT_SYMBOL vmlinux 0xbaed693c pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xbafd7acb twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xbafa2ee3 skb_clone_sk EXPORT_SYMBOL vmlinux 0xbaffb47b devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xbb03bc67 neigh_for_each EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb1c7b76 eth_gro_complete EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects EXPORT_SYMBOL vmlinux 0xbb3e9e90 __pmd_table_size EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer EXPORT_SYMBOL vmlinux 0xbb7b414e gtm_stop_timer16 -EXPORT_SYMBOL vmlinux 0xbb8d51af phy_register_fixup -EXPORT_SYMBOL vmlinux 0xbb96079b __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xbb855d6c generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xbba14512 finish_open EXPORT_SYMBOL vmlinux 0xbba75607 down_killable -EXPORT_SYMBOL vmlinux 0xbbb14ccb try_module_get -EXPORT_SYMBOL vmlinux 0xbbbb3ee6 mdiobus_read -EXPORT_SYMBOL vmlinux 0xbbc7ec68 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xbbd6d753 build_skb_around -EXPORT_SYMBOL vmlinux 0xbbe1f22c skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xbba8ce77 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xbbb46c69 sock_set_priority +EXPORT_SYMBOL vmlinux 0xbbc27ebd devfreq_update_status +EXPORT_SYMBOL vmlinux 0xbbe4be29 tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbbf5d833 dump_page +EXPORT_SYMBOL vmlinux 0xbbe8841b tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0xbbee76da dev_uc_del EXPORT_SYMBOL vmlinux 0xbc020df6 iput +EXPORT_SYMBOL vmlinux 0xbc1262d6 genl_notify +EXPORT_SYMBOL vmlinux 0xbc1d78b1 tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0xbc1ff75f fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0xbc24b463 sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0xbc3210a8 dev_set_alias -EXPORT_SYMBOL vmlinux 0xbc39ec8f phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0xbc3b86d3 __set_page_dirty_no_writeback EXPORT_SYMBOL vmlinux 0xbc42c17f mutex_unlock EXPORT_SYMBOL vmlinux 0xbc45c9e9 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0xbc4a1769 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xbc5e9af7 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0xbc77a33a xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xbc59236c __skb_ext_del +EXPORT_SYMBOL vmlinux 0xbc61b69d __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xbc6bd568 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xbc857bb1 inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags EXPORT_SYMBOL vmlinux 0xbc9b14f0 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xbca0aba3 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xbca99faf __skb_checksum EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcab8a12 neigh_connected_output EXPORT_SYMBOL vmlinux 0xbcad0c22 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xbcbfafcf __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xbcc55d5d unlock_rename +EXPORT_SYMBOL vmlinux 0xbcd9c97a mmc_wait_for_req EXPORT_SYMBOL vmlinux 0xbcde959a pci_request_irq +EXPORT_SYMBOL vmlinux 0xbcebe531 tcp_stream_memory_free EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 EXPORT_SYMBOL vmlinux 0xbcf54e7f _raw_write_lock_bh EXPORT_SYMBOL vmlinux 0xbd0648b8 md_update_sb -EXPORT_SYMBOL vmlinux 0xbd0c4bcf jbd2_log_start_commit EXPORT_SYMBOL vmlinux 0xbd118dee elevator_alloc -EXPORT_SYMBOL vmlinux 0xbd1ec6a0 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0xbd2aaa4d find_vma -EXPORT_SYMBOL vmlinux 0xbd34e37c jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xbd2ad89c jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xbd4388b0 tcf_em_tree_destroy EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd530178 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xbd5d4a92 __test_set_page_writeback EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd773eae submit_bio_noacct -EXPORT_SYMBOL vmlinux 0xbdae555d __ClearPageMovable -EXPORT_SYMBOL vmlinux 0xbdbb72e8 posix_test_lock -EXPORT_SYMBOL vmlinux 0xbdd89110 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xbd889598 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xbd9155d5 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xbdb07df2 vlan_for_each +EXPORT_SYMBOL vmlinux 0xbdbb2b6e grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xbe0f763c device_get_mac_address EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock +EXPORT_SYMBOL vmlinux 0xbe18e9a1 phy_support_asym_pause EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number EXPORT_SYMBOL vmlinux 0xbe54c86d dma_set_mask -EXPORT_SYMBOL vmlinux 0xbe58310e qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xbe573de0 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe5e6e7f ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0xbe82b993 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xbe84542a security_path_rename +EXPORT_SYMBOL vmlinux 0xbe7ae3f0 skb_seq_read EXPORT_SYMBOL vmlinux 0xbe87cda6 generic_delete_inode -EXPORT_SYMBOL vmlinux 0xbe8d3168 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xbea410f4 refresh_frequency_limits EXPORT_SYMBOL vmlinux 0xbeac7383 clk_bulk_get_all EXPORT_SYMBOL vmlinux 0xbeb895ef of_read_drc_info_cell -EXPORT_SYMBOL vmlinux 0xbed3132e block_write_full_page -EXPORT_SYMBOL vmlinux 0xbed3e829 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xbeef9f48 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xbec3f53f scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xbed0f741 scsi_dma_map EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbef92f71 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0xbf1b1fc3 device_get_mac_address -EXPORT_SYMBOL vmlinux 0xbf1bfba7 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0xbf2408cd tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xbf16432e dev_disable_lro EXPORT_SYMBOL vmlinux 0xbf39b5ec of_device_is_available EXPORT_SYMBOL vmlinux 0xbf3b7c76 file_remove_privs EXPORT_SYMBOL vmlinux 0xbf505404 __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xbf5433ef __mark_inode_dirty EXPORT_SYMBOL vmlinux 0xbf596f45 _insl_ns EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf5a05db sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0xbf5b9d5d serial8250_register_8250_port EXPORT_SYMBOL vmlinux 0xbf6908b2 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xbf714d35 __sock_i_ino -EXPORT_SYMBOL vmlinux 0xbf7a5b84 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0xbf82276a pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xbf86f5f2 nf_setsockopt EXPORT_SYMBOL vmlinux 0xbf872018 agp_generic_destroy_pages EXPORT_SYMBOL vmlinux 0xbf8b4e39 __serio_register_driver -EXPORT_SYMBOL vmlinux 0xbf8da638 xfrm_register_type_offload EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfbd22e7 sk_free +EXPORT_SYMBOL vmlinux 0xbfaf1980 ipv6_chk_addr EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfcc7473 rps_may_expire_flow EXPORT_SYMBOL vmlinux 0xbfda430a from_kgid_munged EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets EXPORT_SYMBOL vmlinux 0xbff9ae02 single_open_size EXPORT_SYMBOL vmlinux 0xbffe6166 dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0xc000345c key_move +EXPORT_SYMBOL vmlinux 0xc016f6a7 register_console +EXPORT_SYMBOL vmlinux 0xc01ae590 sock_alloc EXPORT_SYMBOL vmlinux 0xc01d2c81 ps2_end_command -EXPORT_SYMBOL vmlinux 0xc0242411 vme_master_request EXPORT_SYMBOL vmlinux 0xc02f1469 dma_fence_array_create EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable -EXPORT_SYMBOL vmlinux 0xc037f60e tcp_disconnect -EXPORT_SYMBOL vmlinux 0xc03fe3be i2c_add_adapter EXPORT_SYMBOL vmlinux 0xc0455c79 bio_chain -EXPORT_SYMBOL vmlinux 0xc05d04f1 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0xc0645a45 vme_dma_request EXPORT_SYMBOL vmlinux 0xc06bc0fd pcix_get_mmrbc EXPORT_SYMBOL vmlinux 0xc07384d2 pm8606_osc_disable EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc08f87c1 inet_accept -EXPORT_SYMBOL vmlinux 0xc0a65e09 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xc07b669b tcf_qevent_dump EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xc0b1dad7 nobh_write_begin EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 EXPORT_SYMBOL vmlinux 0xc0b346d8 opal_nx_coproc_init EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0c78864 of_platform_device_create EXPORT_SYMBOL vmlinux 0xc0cf48bf I_BDEV EXPORT_SYMBOL vmlinux 0xc0d6d78f __var_waitqueue -EXPORT_SYMBOL vmlinux 0xc0dac601 vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0xc0edb7bd frontswap_register_ops EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor @@ -9939,107 +9834,93 @@ EXPORT_SYMBOL vmlinux 0xc10046b2 tty_devnum EXPORT_SYMBOL vmlinux 0xc1020ee8 da903x_query_status EXPORT_SYMBOL vmlinux 0xc11d7b80 simple_link EXPORT_SYMBOL vmlinux 0xc134b38b ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xc13f65a6 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xc137d083 skb_dump +EXPORT_SYMBOL vmlinux 0xc1409429 dst_cow_metrics_generic EXPORT_SYMBOL vmlinux 0xc14296ec ps2_command EXPORT_SYMBOL vmlinux 0xc144509c truncate_inode_pages_final EXPORT_SYMBOL vmlinux 0xc149dddc max8998_write_reg EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq EXPORT_SYMBOL vmlinux 0xc154af8d of_root EXPORT_SYMBOL vmlinux 0xc1587680 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xc15cc12c __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xc15f20d5 skb_copy_header EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc165d38d blk_get_request EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc18e6c6f udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xc16f4e69 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xc17aeb61 vm_insert_page +EXPORT_SYMBOL vmlinux 0xc186d6b7 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xc1afea42 xp_dma_sync_for_device_slow EXPORT_SYMBOL vmlinux 0xc1b19a69 pps_lookup_dev EXPORT_SYMBOL vmlinux 0xc1b1ef4e mpage_readahead -EXPORT_SYMBOL vmlinux 0xc1b2c2f3 devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0xc1b6994c md_finish_reshape -EXPORT_SYMBOL vmlinux 0xc1ca8ea5 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xc1cb1de2 tcp_sendmsg EXPORT_SYMBOL vmlinux 0xc1cb693f fscrypt_fname_disk_to_usr EXPORT_SYMBOL vmlinux 0xc1ce2bd1 gen_pool_fixed_alloc EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed -EXPORT_SYMBOL vmlinux 0xc1d746eb __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1d8d1ad vme_init_bridge +EXPORT_SYMBOL vmlinux 0xc1e09cf9 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xc1e4d746 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xc1e531c8 twl6040_get_pll EXPORT_SYMBOL vmlinux 0xc1f29225 pci_request_selected_regions EXPORT_SYMBOL vmlinux 0xc1f3f5e7 __put_user_ns -EXPORT_SYMBOL vmlinux 0xc21b28cf pci_domain_nr -EXPORT_SYMBOL vmlinux 0xc22d7f2a phy_print_status -EXPORT_SYMBOL vmlinux 0xc22e9420 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xc1f65380 __lock_buffer +EXPORT_SYMBOL vmlinux 0xc2078f75 vmf_insert_mixed_prot EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup EXPORT_SYMBOL vmlinux 0xc2490212 _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0xc24ba68a unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xc25e4170 __breadahead_gfp EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc27bc312 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xc28ff810 jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0xc293ded7 vio_h_cop_sync EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc29c492b scsi_remove_device -EXPORT_SYMBOL vmlinux 0xc2a20e9b inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0xc2ac19b5 kmem_cache_free EXPORT_SYMBOL vmlinux 0xc2afbc66 paca_ptrs +EXPORT_SYMBOL vmlinux 0xc2bdee73 tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2ef42a0 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xc2efb8af blk_sync_queue -EXPORT_SYMBOL vmlinux 0xc2ff4545 jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0xc300aa1f request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xc301d9e9 fwnode_mdio_find_device EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc3143879 netlink_set_err EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc3221914 skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc34ce664 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xc34cecb0 block_read_full_page EXPORT_SYMBOL vmlinux 0xc34e4cbf cdrom_check_events EXPORT_SYMBOL vmlinux 0xc351acde serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xc35a5bf1 napi_disable -EXPORT_SYMBOL vmlinux 0xc36ae418 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xc36deeac passthru_features_check EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc384797c fget EXPORT_SYMBOL vmlinux 0xc389c10e param_ops_ushort EXPORT_SYMBOL vmlinux 0xc38b7081 sget EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer EXPORT_SYMBOL vmlinux 0xc390a8da super_setup_bdi EXPORT_SYMBOL vmlinux 0xc3914e8f agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0xc3a7a74b of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0xc3af3029 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xc3acce5c inet_frag_find EXPORT_SYMBOL vmlinux 0xc3c37185 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0xc3c3925e tcf_idr_create EXPORT_SYMBOL vmlinux 0xc3cd9538 of_graph_get_endpoint_count EXPORT_SYMBOL vmlinux 0xc3d2f42c pci_iounmap -EXPORT_SYMBOL vmlinux 0xc3dd1d85 mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0xc3ee01f1 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xc3f99a30 vlan_vid_del -EXPORT_SYMBOL vmlinux 0xc410e17e put_fs_context +EXPORT_SYMBOL vmlinux 0xc3fc6f8b devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xc4031394 phy_sfp_probe EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value EXPORT_SYMBOL vmlinux 0xc420002e input_mt_destroy_slots EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc42cd69f xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xc42ea30b write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xc43cc10a generic_fillattr -EXPORT_SYMBOL vmlinux 0xc46d00fc vfs_ioctl -EXPORT_SYMBOL vmlinux 0xc46f0242 sock_create EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 EXPORT_SYMBOL vmlinux 0xc481ef9a unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0xc48301e7 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0xc4896286 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0xc48f8f43 sock_efree -EXPORT_SYMBOL vmlinux 0xc4a19900 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0xc4a4be6c kernel_connect +EXPORT_SYMBOL vmlinux 0xc491a23f __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog EXPORT_SYMBOL vmlinux 0xc4cdf48f _raw_read_unlock_bh EXPORT_SYMBOL vmlinux 0xc4cfcfbd devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xc4efea98 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xc4f15d0e xfrm_register_km +EXPORT_SYMBOL vmlinux 0xc50f958f vfs_parse_fs_param EXPORT_SYMBOL vmlinux 0xc51a3640 down_write_killable -EXPORT_SYMBOL vmlinux 0xc521fb48 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xc51d8cb9 bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0xc524b1fb of_get_next_child EXPORT_SYMBOL vmlinux 0xc529db24 is_nd_btt -EXPORT_SYMBOL vmlinux 0xc52a5b5e locks_init_lock -EXPORT_SYMBOL vmlinux 0xc531f9ff dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xc541fa1e ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xc5471c3f netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0xc562d2d2 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0xc52ce21c unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xc53af917 ip_output +EXPORT_SYMBOL vmlinux 0xc56393b2 mmc_detect_card_removed EXPORT_SYMBOL vmlinux 0xc57193b4 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xc576bb78 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xc5885159 module_put +EXPORT_SYMBOL vmlinux 0xc58c91f5 skb_ext_add EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user EXPORT_SYMBOL vmlinux 0xc5972b1e tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete @@ -10049,171 +9930,172 @@ EXPORT_SYMBOL vmlinux 0xc5a8a044 discard_new_inode EXPORT_SYMBOL vmlinux 0xc5b6d9e7 iget5_locked EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5deae9f cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xc5e4dbfc gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc5fa1b43 block_invalidatepage EXPORT_SYMBOL vmlinux 0xc5fc166e dm_io EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc60d1af3 ip6_route_me_harder EXPORT_SYMBOL vmlinux 0xc61b8087 idr_destroy EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup EXPORT_SYMBOL vmlinux 0xc6369552 sync_file_get_fence -EXPORT_SYMBOL vmlinux 0xc63b8825 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xc657627a flow_rule_match_ports EXPORT_SYMBOL vmlinux 0xc65af6e2 posix_acl_from_xattr 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 0xc67ffcf3 phy_connect +EXPORT_SYMBOL vmlinux 0xc68edc4f filemap_page_mkwrite EXPORT_SYMBOL vmlinux 0xc68efe0d uart_update_timeout -EXPORT_SYMBOL vmlinux 0xc6a439ed skb_queue_tail +EXPORT_SYMBOL vmlinux 0xc69cca52 udp_seq_start +EXPORT_SYMBOL vmlinux 0xc6a4b604 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xc6a67486 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xc6ae749d skb_tx_error EXPORT_SYMBOL vmlinux 0xc6b40ff5 param_ops_string EXPORT_SYMBOL vmlinux 0xc6ba0f46 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xc6c452c7 vfs_unlink EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6d22856 security_inode_init_security EXPORT_SYMBOL vmlinux 0xc6d6af46 ppc_pci_io +EXPORT_SYMBOL vmlinux 0xc6d6fa58 devfreq_update_interval EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc719273a __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xc71a48c2 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xc6f9d999 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0xc71ae3fa gro_cells_init +EXPORT_SYMBOL vmlinux 0xc71c32a3 tcp_check_req EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc734dec1 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xc73a882f sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0xc748e41b fb_find_mode -EXPORT_SYMBOL vmlinux 0xc7583733 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xc74e4842 jbd2_journal_stop EXPORT_SYMBOL vmlinux 0xc759c6f7 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xc76a40cd __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xc779e253 flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0xc77aad60 get_user_pages_remote -EXPORT_SYMBOL vmlinux 0xc77f70aa __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xc77c220f arp_tbl EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock EXPORT_SYMBOL vmlinux 0xc7a98028 d_instantiate -EXPORT_SYMBOL vmlinux 0xc7b67083 dcb_getapp EXPORT_SYMBOL vmlinux 0xc7bb1d04 iov_iter_bvec EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c8ce19 locks_copy_conflock EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7d7d668 skb_eth_pop -EXPORT_SYMBOL vmlinux 0xc7d90567 mmc_request_done EXPORT_SYMBOL vmlinux 0xc7e91cf7 pci_get_slot -EXPORT_SYMBOL vmlinux 0xc7ec8cc2 genl_notify EXPORT_SYMBOL vmlinux 0xc7f484b1 ida_destroy -EXPORT_SYMBOL vmlinux 0xc80bdf6e ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0xc81c8a29 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xc8161a96 alloc_fcdev EXPORT_SYMBOL vmlinux 0xc8269ad2 fs_param_is_enum EXPORT_SYMBOL vmlinux 0xc8396fd3 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0xc83c3d45 security_inode_copy_up EXPORT_SYMBOL vmlinux 0xc83f8b51 dma_async_device_unregister EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc8770114 scsi_ioctl EXPORT_SYMBOL vmlinux 0xc87bd1c9 dquot_resume EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8a98e58 netlink_broadcast EXPORT_SYMBOL vmlinux 0xc8b47e97 vga_get EXPORT_SYMBOL vmlinux 0xc8b54707 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0xc8b80e15 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0xc8c38965 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xc8c766e1 tcp_read_sock -EXPORT_SYMBOL vmlinux 0xc8cc9b4b jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0xc8d4f67b tty_port_destroy EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8e8072b xfrm_state_free EXPORT_SYMBOL vmlinux 0xc8e819fd pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xc8f47ce3 flow_rule_match_basic EXPORT_SYMBOL vmlinux 0xc8f5a95a wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xc8f928bb memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0xc9073c78 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xc90c3245 devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0xc9105f56 serio_unregister_child_port EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc EXPORT_SYMBOL vmlinux 0xc91b5f85 devm_clk_get -EXPORT_SYMBOL vmlinux 0xc920516b dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0xc92074c6 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xc92a584a scsi_device_put EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down EXPORT_SYMBOL vmlinux 0xc9399430 dqput EXPORT_SYMBOL vmlinux 0xc9522984 pci_release_resource EXPORT_SYMBOL vmlinux 0xc95398ca regset_get +EXPORT_SYMBOL vmlinux 0xc9552b1f vme_irq_free EXPORT_SYMBOL vmlinux 0xc955cb2c down_trylock -EXPORT_SYMBOL vmlinux 0xc956d6e6 mdiobus_write -EXPORT_SYMBOL vmlinux 0xc959ff9d devfreq_resume_device -EXPORT_SYMBOL vmlinux 0xc95b71d8 security_inode_copy_up EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc9712ca3 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xc9653f53 rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab EXPORT_SYMBOL vmlinux 0xc97d7443 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xc98017b7 no_seek_end_llseek_size EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector EXPORT_SYMBOL vmlinux 0xc99110e3 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xc99340e0 keyring_search EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a27055 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xc9b14521 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xc9b7a3c3 mmc_gpio_get_cd EXPORT_SYMBOL vmlinux 0xc9bfbafe dma_pool_create +EXPORT_SYMBOL vmlinux 0xc9c1198c alloc_buffer_head EXPORT_SYMBOL vmlinux 0xc9c8142c unregister_md_personality -EXPORT_SYMBOL vmlinux 0xc9ca201f lease_modify EXPORT_SYMBOL vmlinux 0xc9dc3d79 __pte_frag_size_shift -EXPORT_SYMBOL vmlinux 0xc9dddc2f filemap_fault EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e267c4 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xca02cb55 alloc_pages_vma -EXPORT_SYMBOL vmlinux 0xca0ac7ff set_create_files_as EXPORT_SYMBOL vmlinux 0xca103640 fs_param_is_bool EXPORT_SYMBOL vmlinux 0xca150b42 inode_insert5 EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream +EXPORT_SYMBOL vmlinux 0xca1f2892 thread_group_exited EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca2eb903 inet_release EXPORT_SYMBOL vmlinux 0xca312b4f d_find_any_alias +EXPORT_SYMBOL vmlinux 0xca332818 put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state -EXPORT_SYMBOL vmlinux 0xca41fda6 phy_get_c45_ids EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function EXPORT_SYMBOL vmlinux 0xca46525b sg_miter_stop +EXPORT_SYMBOL vmlinux 0xca491211 tcp_connect +EXPORT_SYMBOL vmlinux 0xca531ae1 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xca5e9a27 netpoll_cleanup EXPORT_SYMBOL vmlinux 0xca5f3154 radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0xca742de1 __break_lease -EXPORT_SYMBOL vmlinux 0xca8454e5 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0xca85b010 fs_context_for_submount -EXPORT_SYMBOL vmlinux 0xca8764b9 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0xca8e7fac __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xca8351b2 mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca94846c dump_skip EXPORT_SYMBOL vmlinux 0xcaa26b95 fault_in_iov_iter_writeable -EXPORT_SYMBOL vmlinux 0xcaa4f4f9 path_put +EXPORT_SYMBOL vmlinux 0xcaa65514 nf_hook_slow_list EXPORT_SYMBOL vmlinux 0xcab4b0aa page_pool_create EXPORT_SYMBOL vmlinux 0xcab89273 seq_open -EXPORT_SYMBOL vmlinux 0xcac8100c km_query +EXPORT_SYMBOL vmlinux 0xcabbd1b7 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xcac88716 phy_attached_info +EXPORT_SYMBOL vmlinux 0xcacbfe9d phy_get_pause +EXPORT_SYMBOL vmlinux 0xcacd76e7 ndo_dflt_fdb_dump EXPORT_SYMBOL vmlinux 0xcade7f20 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0xcae9e64e filp_open +EXPORT_SYMBOL vmlinux 0xcae72798 ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaf9cd56 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xcaf4dfa3 nf_log_set EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu EXPORT_SYMBOL vmlinux 0xcb2ea0b5 finish_wait EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0xcb3c8a7d ___ratelimit -EXPORT_SYMBOL vmlinux 0xcb456a91 netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0xcb5f560e configfs_depend_item -EXPORT_SYMBOL vmlinux 0xcb6b1714 scsi_host_busy +EXPORT_SYMBOL vmlinux 0xcb677b64 poll_initwait EXPORT_SYMBOL vmlinux 0xcb6ed4ce blk_mq_rq_cpu EXPORT_SYMBOL vmlinux 0xcb7844c3 clear_inode +EXPORT_SYMBOL vmlinux 0xcb7949d3 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xcb8da0f6 finish_no_open +EXPORT_SYMBOL vmlinux 0xcb99ba7f blk_put_queue +EXPORT_SYMBOL vmlinux 0xcba0083d skb_checksum_help EXPORT_SYMBOL vmlinux 0xcba72164 input_unregister_device EXPORT_SYMBOL vmlinux 0xcba89c36 find_inode_nowait EXPORT_SYMBOL vmlinux 0xcbaedc42 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0xcbc098b7 sock_no_linger 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 0xcbe339f7 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xcbde707e genphy_loopback EXPORT_SYMBOL vmlinux 0xcbe87221 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xcbf42597 xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0xcbf7b698 freeze_bdev EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc11799b mmc_hw_reset EXPORT_SYMBOL vmlinux 0xcc169448 sg_miter_next +EXPORT_SYMBOL vmlinux 0xcc19d16b neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xcc1b517b tcp_seq_start +EXPORT_SYMBOL vmlinux 0xcc1e8f2b scsi_remove_device EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xcc235ac9 fiemap_prep EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc2835b3 tcf_block_put_ext EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class EXPORT_SYMBOL vmlinux 0xcc32ac40 rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0xcc388c42 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xcc40e493 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xcc4265d0 xfrm_state_lookup_byaddr EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock @@ -10221,215 +10103,233 @@ EXPORT_SYMBOL vmlinux 0xcc626c2c completion_done EXPORT_SYMBOL vmlinux 0xcc7171c7 handle_edge_irq EXPORT_SYMBOL vmlinux 0xcc751730 __mod_node_page_state EXPORT_SYMBOL vmlinux 0xcc904470 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xcc9ff2ba wireless_send_event EXPORT_SYMBOL vmlinux 0xccb6eac8 dma_fence_free EXPORT_SYMBOL vmlinux 0xccc66e43 security_binder_set_context_mgr EXPORT_SYMBOL vmlinux 0xccccc024 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xcccecda2 blk_queue_flag_set EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start EXPORT_SYMBOL vmlinux 0xccd78b7a tty_register_driver -EXPORT_SYMBOL vmlinux 0xccdbc987 __phy_resume -EXPORT_SYMBOL vmlinux 0xccde38bf vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xccdc797a __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xccde3a8d generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xccea8a5a rtas EXPORT_SYMBOL vmlinux 0xcceafe35 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xccec6df0 nf_log_set EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics -EXPORT_SYMBOL vmlinux 0xccfbb4e7 tcp_close EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd03de7b sk_common_release EXPORT_SYMBOL vmlinux 0xcd17ea75 md_bitmap_update_sb EXPORT_SYMBOL vmlinux 0xcd1f4bbf tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xcd202aa5 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xcd23b12c sock_alloc_send_pskb EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed EXPORT_SYMBOL vmlinux 0xcd279169 nla_find EXPORT_SYMBOL vmlinux 0xcd3bf1c5 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xcd433e5c tcf_generic_walker EXPORT_SYMBOL vmlinux 0xcd4d7140 agp_bridge -EXPORT_SYMBOL vmlinux 0xcd4e6366 kill_pid -EXPORT_SYMBOL vmlinux 0xcd756fa1 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xcd5749c3 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xcd7b06fb sock_register EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock EXPORT_SYMBOL vmlinux 0xcd8c43ee input_flush_device +EXPORT_SYMBOL vmlinux 0xcda33a63 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xcdb830f6 write_cache_pages EXPORT_SYMBOL vmlinux 0xcdc0349c add_wait_queue_exclusive EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc3f5cf nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xcdd0b28c napi_gro_receive EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdedf92e phy_advertise_supported EXPORT_SYMBOL vmlinux 0xcdee038f _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0xcdf7f9d6 vme_init_bridge -EXPORT_SYMBOL vmlinux 0xcdf8528c genphy_update_link -EXPORT_SYMBOL vmlinux 0xce0edea8 tcf_qevent_destroy EXPORT_SYMBOL vmlinux 0xce0eeebb blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xce13defe open_with_fake_path +EXPORT_SYMBOL vmlinux 0xce174dc1 rtnl_configure_link EXPORT_SYMBOL vmlinux 0xce18bbe1 fsl_lbc_addr EXPORT_SYMBOL vmlinux 0xce2047cf blkdev_get_by_path EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce3cbd1b would_dump -EXPORT_SYMBOL vmlinux 0xce41555d netlink_ack EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r EXPORT_SYMBOL vmlinux 0xce4fb83b tty_unregister_device EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize EXPORT_SYMBOL vmlinux 0xce687cce mount_single EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0xce7776e8 write_one_page -EXPORT_SYMBOL vmlinux 0xce7a4aad inet_frags_fini -EXPORT_SYMBOL vmlinux 0xce7dce54 path_is_mountpoint EXPORT_SYMBOL vmlinux 0xce807151 idr_get_next EXPORT_SYMBOL vmlinux 0xcea13239 proc_dobool EXPORT_SYMBOL vmlinux 0xcea7c291 proc_remove EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceb1d848 vfs_setpos -EXPORT_SYMBOL vmlinux 0xcec17f3f tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xceada92f genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xceb44983 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xceb487e2 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xceb57a65 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xcec31868 xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0xcec5feeb cur_cpu_spec EXPORT_SYMBOL vmlinux 0xcec6eb84 input_reset_device EXPORT_SYMBOL vmlinux 0xcec766f1 __memset16 EXPORT_SYMBOL vmlinux 0xceccd485 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0xceda3349 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xced79e7b udp_push_pending_frames EXPORT_SYMBOL vmlinux 0xcee01c17 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xceed7f2b eth_mac_addr +EXPORT_SYMBOL vmlinux 0xcef4528c __bread_gfp EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf11287c tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xcf222b5f nf_getsockopt +EXPORT_SYMBOL vmlinux 0xcefdbca8 __ip_options_compile +EXPORT_SYMBOL vmlinux 0xcf26c0a0 devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0xcf2faf11 key_revoke -EXPORT_SYMBOL vmlinux 0xcf303743 scm_detach_fds -EXPORT_SYMBOL vmlinux 0xcf3d0aa9 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xcf33fbb8 netdev_class_remove_file_ns EXPORT_SYMBOL vmlinux 0xcf6d291f radix__local_flush_tlb_page -EXPORT_SYMBOL vmlinux 0xcf70fcaa vfs_statfs -EXPORT_SYMBOL vmlinux 0xcf7b1902 neigh_sysctl_register EXPORT_SYMBOL vmlinux 0xcf86a1a5 rproc_free +EXPORT_SYMBOL vmlinux 0xcf912e3b __f_setown EXPORT_SYMBOL vmlinux 0xcf9a189a down_timeout EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos EXPORT_SYMBOL vmlinux 0xcf9c1500 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xcfa1d014 update_devfreq +EXPORT_SYMBOL vmlinux 0xcfb55700 jbd2_journal_errno EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xd00031a7 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0xd00b8c80 qdisc_reset -EXPORT_SYMBOL vmlinux 0xd043444a __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xcfdd155d __skb_get_hash +EXPORT_SYMBOL vmlinux 0xcfe8b04e linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xcffeca42 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xd00c0f2a __put_page +EXPORT_SYMBOL vmlinux 0xd00f52ea skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xd01c041d skb_expand_head +EXPORT_SYMBOL vmlinux 0xd020415b block_write_end +EXPORT_SYMBOL vmlinux 0xd027d1c0 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xd03a6fbc sock_enable_timestamps EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd04f8096 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xd0545a18 jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0xd05b8a86 input_free_device -EXPORT_SYMBOL vmlinux 0xd05e1172 neigh_xmit EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function EXPORT_SYMBOL vmlinux 0xd075f71a of_graph_get_port_by_id EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd09aedbc inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xd080b8c8 tso_build_data +EXPORT_SYMBOL vmlinux 0xd083c446 genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0xd0a2bb44 __phy_read_mmd EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock EXPORT_SYMBOL vmlinux 0xd0b005c4 kernel_param_lock EXPORT_SYMBOL vmlinux 0xd0b1c887 simple_empty -EXPORT_SYMBOL vmlinux 0xd0ba0398 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0xd0c3be92 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xd0b1e03c __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd0db455d netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xd0ef507d filemap_fdatawait_range_keep_errors EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd106f86f fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xd10c2bc9 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xd10cf18b __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xd11135c5 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xd12035de inet_frag_destroy EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf -EXPORT_SYMBOL vmlinux 0xd1308f58 seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0xd1370b4b padata_alloc_shell -EXPORT_SYMBOL vmlinux 0xd1437821 set_binfmt -EXPORT_SYMBOL vmlinux 0xd1641eb5 xp_free +EXPORT_SYMBOL vmlinux 0xd13cab0a seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd18d7a6d flow_block_cb_decref EXPORT_SYMBOL vmlinux 0xd19f76fa pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xd1a493da sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xd1acbb99 netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0xd1c2a016 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xd1c5aa7c inet_bind EXPORT_SYMBOL vmlinux 0xd1c87bac get_user_pages_unlocked EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1f372a4 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xd1dcda11 vfs_statfs +EXPORT_SYMBOL vmlinux 0xd1eb71c6 __netif_napi_del +EXPORT_SYMBOL vmlinux 0xd1fc1409 neigh_xmit EXPORT_SYMBOL vmlinux 0xd20aaa12 mipi_dsi_driver_unregister EXPORT_SYMBOL vmlinux 0xd21a10e4 super_setup_bdi_name EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi +EXPORT_SYMBOL vmlinux 0xd21d8f81 security_task_getsecid_subj +EXPORT_SYMBOL vmlinux 0xd21e87c8 ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0xd221b792 bdev_dax_pgoff EXPORT_SYMBOL vmlinux 0xd2287021 submit_bio_wait -EXPORT_SYMBOL vmlinux 0xd24f0e17 napi_enable +EXPORT_SYMBOL vmlinux 0xd228efc7 vfs_iter_write EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd2663568 open_exec +EXPORT_SYMBOL vmlinux 0xd26aaa86 xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy EXPORT_SYMBOL vmlinux 0xd281e046 input_register_handler +EXPORT_SYMBOL vmlinux 0xd283319d ppp_input EXPORT_SYMBOL vmlinux 0xd292cad4 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xd292fe4c flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0xd2b21515 block_invalidatepage -EXPORT_SYMBOL vmlinux 0xd2b57a89 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xd2bd0822 remove_arg_zero -EXPORT_SYMBOL vmlinux 0xd2be33cd netif_rx +EXPORT_SYMBOL vmlinux 0xd29660b1 inet_del_offload +EXPORT_SYMBOL vmlinux 0xd29712f0 flow_block_cb_incref EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller EXPORT_SYMBOL vmlinux 0xd2d3f463 fb_show_logo -EXPORT_SYMBOL vmlinux 0xd2d50118 vfs_fadvise -EXPORT_SYMBOL vmlinux 0xd2d91592 scm_fp_dup EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xd2f11f59 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xd31c13e8 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0xd2e5aece end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xd30d0977 tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd32a93be follow_down EXPORT_SYMBOL vmlinux 0xd32f3e42 configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xd343a5e7 ppp_register_channel EXPORT_SYMBOL vmlinux 0xd344f275 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xd3537397 skb_ensure_writable EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd391c25b __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xd36f8bd1 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xd37972c7 jbd2_journal_forget EXPORT_SYMBOL vmlinux 0xd39aaa1a nd_integrity_init EXPORT_SYMBOL vmlinux 0xd3a92314 bio_copy_data -EXPORT_SYMBOL vmlinux 0xd3bb5108 phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0xd3db9bb8 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0xd3dfa99a qdisc_watchdog_init EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd4013723 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xd3f1d34f mmc_run_bkops EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal EXPORT_SYMBOL vmlinux 0xd40832f4 del_gendisk -EXPORT_SYMBOL vmlinux 0xd4219246 sock_pfree -EXPORT_SYMBOL vmlinux 0xd423aa01 inet_stream_ops -EXPORT_SYMBOL vmlinux 0xd42bf7cd of_device_unregister +EXPORT_SYMBOL vmlinux 0xd412c4a6 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xd423ecf2 qdisc_put_unlocked EXPORT_SYMBOL vmlinux 0xd439f7cf dm_table_run_md_queue_async EXPORT_SYMBOL vmlinux 0xd443e5e6 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xd45016c2 __inet_hash EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd48942d8 kernel_write EXPORT_SYMBOL vmlinux 0xd48b5337 md_register_thread EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed EXPORT_SYMBOL vmlinux 0xd4958419 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0xd49b3d73 tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0xd49bab39 dquot_load_quota_sb EXPORT_SYMBOL vmlinux 0xd49f7984 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xd4aa5d20 dev_set_group EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4beb3f8 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xd4ca01c6 dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0xd4d7c068 fsl_upm_find -EXPORT_SYMBOL vmlinux 0xd4ea54a5 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xd4e4f245 eth_validate_addr EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare EXPORT_SYMBOL vmlinux 0xd4fd0ec2 radix_tree_tag_set EXPORT_SYMBOL vmlinux 0xd4ff2b88 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0xd514b40d mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0xd5155dea inet_csk_accept EXPORT_SYMBOL vmlinux 0xd51cb4c9 dquot_commit -EXPORT_SYMBOL vmlinux 0xd5217eb8 __block_write_full_page EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy EXPORT_SYMBOL vmlinux 0xd5411844 init_pseudo -EXPORT_SYMBOL vmlinux 0xd543a4ea ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xd55617ae unlock_page_memcg +EXPORT_SYMBOL vmlinux 0xd57b265e dev_addr_init EXPORT_SYMBOL vmlinux 0xd5864012 param_set_ushort EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd595e63a __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xd5a07dfe tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xd5a47462 vme_lm_request EXPORT_SYMBOL vmlinux 0xd5b12f7d radix_tree_replace_slot EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5bc7b87 blk_put_request EXPORT_SYMBOL vmlinux 0xd5be130e cpu_core_map -EXPORT_SYMBOL vmlinux 0xd5d25812 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xd5e595eb tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xd5ea5336 netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0xd5eff0fe of_io_request_and_map -EXPORT_SYMBOL vmlinux 0xd6002efb devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xd5f6f282 nf_register_sockopt EXPORT_SYMBOL vmlinux 0xd6051728 seq_open_private EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd608d371 filp_close EXPORT_SYMBOL vmlinux 0xd60b2043 of_find_matching_node_and_match EXPORT_SYMBOL vmlinux 0xd6175023 dquot_free_inode -EXPORT_SYMBOL vmlinux 0xd62476b8 __netif_napi_del -EXPORT_SYMBOL vmlinux 0xd62c94b7 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0xd62d8058 skb_try_coalesce EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax +EXPORT_SYMBOL vmlinux 0xd641d79e ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0xd641fdde neigh_table_init EXPORT_SYMBOL vmlinux 0xd645dd67 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xd651d023 nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0xd65707b6 of_node_name_eq -EXPORT_SYMBOL vmlinux 0xd65e1ba9 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xd66b18f5 mark_page_accessed EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness -EXPORT_SYMBOL vmlinux 0xd67072ed ip6_output -EXPORT_SYMBOL vmlinux 0xd676b3ca vfs_symlink +EXPORT_SYMBOL vmlinux 0xd671eb1b udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xd67fc0ba io_uring_get_socket EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource EXPORT_SYMBOL vmlinux 0xd69948fb proc_dointvec +EXPORT_SYMBOL vmlinux 0xd6a1f8f0 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0xd6a6f267 icmp6_send EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read EXPORT_SYMBOL vmlinux 0xd6aee149 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xd6aeee80 unregister_filesystem EXPORT_SYMBOL vmlinux 0xd6b36036 kthread_bind EXPORT_SYMBOL vmlinux 0xd6c17744 mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0xd6e780a7 netdev_emerg +EXPORT_SYMBOL vmlinux 0xd6d9cd2c in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xd6e3c46f migrate_page_copy EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc EXPORT_SYMBOL vmlinux 0xd6f4f410 get_tree_single_reconf @@ -10437,100 +10337,97 @@ EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe EXPORT_SYMBOL vmlinux 0xd70ed577 ps2_drain -EXPORT_SYMBOL vmlinux 0xd721c90d keyring_alloc -EXPORT_SYMBOL vmlinux 0xd72ae52a jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xd71a06d6 ppp_channel_index EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid EXPORT_SYMBOL vmlinux 0xd745ff3f __of_get_address EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd74d8ae2 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xd7558575 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xd777ba2d neigh_table_init +EXPORT_SYMBOL vmlinux 0xd758ef37 close_fd_get_file EXPORT_SYMBOL vmlinux 0xd785aef3 rproc_mem_entry_init EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 -EXPORT_SYMBOL vmlinux 0xd7a67f2a lookup_one -EXPORT_SYMBOL vmlinux 0xd7c01f8f xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0xd79a3043 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xd7c39b2d security_sk_clone EXPORT_SYMBOL vmlinux 0xd7ce045d dmam_alloc_attrs EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7db746a mdiobus_register_device EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler EXPORT_SYMBOL vmlinux 0xd7f475df vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xd803c91c scsi_host_alloc EXPORT_SYMBOL vmlinux 0xd810a5a3 kthread_create_on_node EXPORT_SYMBOL vmlinux 0xd811e6bf of_match_node +EXPORT_SYMBOL vmlinux 0xd818c825 __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0xd8215bed of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0xd83c5892 km_report +EXPORT_SYMBOL vmlinux 0xd83264e0 sock_no_getname +EXPORT_SYMBOL vmlinux 0xd8517876 generic_pipe_buf_get EXPORT_SYMBOL vmlinux 0xd8548b30 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0xd86dd588 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xd87edb90 netpoll_setup +EXPORT_SYMBOL vmlinux 0xd87caff5 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xd895aceb netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8c2a8da scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xd8c4a4d4 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0xd8cd8584 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xd8d641de ptp_clock_event -EXPORT_SYMBOL vmlinux 0xd8e16e66 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0xd8fc83ae dev_addr_add +EXPORT_SYMBOL vmlinux 0xd8d1aa33 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xd8e67e62 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0xd902a05a qdisc_hash_add EXPORT_SYMBOL vmlinux 0xd910b5b3 blk_pm_runtime_init EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user EXPORT_SYMBOL vmlinux 0xd923e3bf dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0xd92df300 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xd927f70c jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xd92d8510 i2c_transfer EXPORT_SYMBOL vmlinux 0xd93427b3 __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xd937951f twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xd943176a mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xd95bdccb __xfrm_state_delete EXPORT_SYMBOL vmlinux 0xd97645f8 agp_generic_enable -EXPORT_SYMBOL vmlinux 0xd97a1b82 __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages EXPORT_SYMBOL vmlinux 0xd992b593 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xd9a343ca scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xd9a539cb generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xd9a6298e __mark_inode_dirty EXPORT_SYMBOL vmlinux 0xd9a681ce bio_reset -EXPORT_SYMBOL vmlinux 0xd9afdd83 ip_frag_next -EXPORT_SYMBOL vmlinux 0xd9b28547 inet6_ioctl EXPORT_SYMBOL vmlinux 0xd9b76cae kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xd9b7e9b7 mmc_alloc_host EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xd9bbac6c xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xd9bd63e8 mmc_request_done EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xda00708e __skb_checksum -EXPORT_SYMBOL vmlinux 0xda04a897 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xd9e4705d scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xd9ef046f netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xd9f2fd7a genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xda054e72 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xda07e136 jbd2_journal_ack_err EXPORT_SYMBOL vmlinux 0xda0c9daf seq_release -EXPORT_SYMBOL vmlinux 0xda1bf7e3 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xda35582f nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xda1de11e __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xda28457b vme_unregister_bridge EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda4fe830 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xda6364cc sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xda64cc6b __get_hash_from_flowi6 EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda779bc3 kern_path_create -EXPORT_SYMBOL vmlinux 0xda843a16 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xda7bbbf8 create_empty_buffers EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xda8e3be8 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xdaaacccd ip_sock_set_tos EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region EXPORT_SYMBOL vmlinux 0xdac545b9 lockref_get_or_lock EXPORT_SYMBOL vmlinux 0xdac75368 dm_table_event EXPORT_SYMBOL vmlinux 0xdac9a30f __devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xdaeb2d50 mmc_of_parse_voltage EXPORT_SYMBOL vmlinux 0xdaede2b4 iget_locked EXPORT_SYMBOL vmlinux 0xdafef2ff agp_generic_alloc_pages EXPORT_SYMBOL vmlinux 0xdb0057a4 rproc_shutdown -EXPORT_SYMBOL vmlinux 0xdb244136 ppp_input_error +EXPORT_SYMBOL vmlinux 0xdb161319 neigh_destroy EXPORT_SYMBOL vmlinux 0xdb251a3b input_set_max_poll_interval EXPORT_SYMBOL vmlinux 0xdb2d80b8 ps2_sendbyte EXPORT_SYMBOL vmlinux 0xdb36266e of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xdb38fe8c __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xdb6742b3 reuseport_select_sock EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7898e4 skb_expand_head EXPORT_SYMBOL vmlinux 0xdb802715 dquot_quota_on -EXPORT_SYMBOL vmlinux 0xdb85c9fc dev_remove_offload EXPORT_SYMBOL vmlinux 0xdb8ada9f pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0xdba3546c kernel_bind -EXPORT_SYMBOL vmlinux 0xdba6bdd3 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xdb95d4bd tcp_close +EXPORT_SYMBOL vmlinux 0xdba6f28e __page_symlink +EXPORT_SYMBOL vmlinux 0xdbae45d0 dst_release_immediate +EXPORT_SYMBOL vmlinux 0xdbde4387 scsi_get_host_dev EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource EXPORT_SYMBOL vmlinux 0xdbf3110e gen_pool_first_fit_align EXPORT_SYMBOL vmlinux 0xdbfa0017 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems EXPORT_SYMBOL vmlinux 0xdc212a07 put_disk -EXPORT_SYMBOL vmlinux 0xdc310e62 jbd2_fc_wait_bufs EXPORT_SYMBOL vmlinux 0xdc37b9c3 jbd2_submit_inode_data EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 EXPORT_SYMBOL vmlinux 0xdc3fcbcb __mutex_init @@ -10539,81 +10436,86 @@ EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier EXPORT_SYMBOL vmlinux 0xdc55eb16 padata_set_cpumask EXPORT_SYMBOL vmlinux 0xdc5daaef inode_dio_wait -EXPORT_SYMBOL vmlinux 0xdc637103 tcf_unregister_action EXPORT_SYMBOL vmlinux 0xdc65c783 input_get_keycode EXPORT_SYMBOL vmlinux 0xdc6d956f dma_async_device_register +EXPORT_SYMBOL vmlinux 0xdc82ef4b security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xdc8c2a19 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xdc9333c2 kmem_cache_create_usercopy EXPORT_SYMBOL vmlinux 0xdc938b22 page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0xdc9498dd down -EXPORT_SYMBOL vmlinux 0xdca6d861 free_buffer_head +EXPORT_SYMBOL vmlinux 0xdc9a2534 xfrm_input +EXPORT_SYMBOL vmlinux 0xdca9be9b skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0xdcb3e5f1 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xdcb482d9 nobh_write_begin EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcba26f9 mmc_can_discard -EXPORT_SYMBOL vmlinux 0xdcba8e4d inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xdcc73f7c xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0xdcd2e170 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xdcd30d69 fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdce179bc devm_register_netdev +EXPORT_SYMBOL vmlinux 0xdd0c8e90 skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd2c31e9 xfrm_lookup_route EXPORT_SYMBOL vmlinux 0xdd3fd3a8 pin_user_pages +EXPORT_SYMBOL vmlinux 0xdd585977 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0xdd5b654e netdev_err EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd699d27 tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0xdd7f8055 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xdd77800b inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xdd7a6ce4 netif_napi_add EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xddce860d __getblk_gfp +EXPORT_SYMBOL vmlinux 0xddbe3ce6 __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xddd5b5f7 phy_modify_paged -EXPORT_SYMBOL vmlinux 0xddd79e8c dev_change_flags EXPORT_SYMBOL vmlinux 0xddd98345 sget_fc -EXPORT_SYMBOL vmlinux 0xde0eaad6 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xde400fdb ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xde30c9b5 __starget_for_each_device EXPORT_SYMBOL vmlinux 0xde461484 set_groups -EXPORT_SYMBOL vmlinux 0xde513fe5 inet_recvmsg -EXPORT_SYMBOL vmlinux 0xde57c3d9 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0xde609c1e reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xde4afab4 security_path_rename +EXPORT_SYMBOL vmlinux 0xde4c6434 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xde68c84d of_phy_connect EXPORT_SYMBOL vmlinux 0xde883066 key_put -EXPORT_SYMBOL vmlinux 0xde8aa926 qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xdeac266c lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xdead3344 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xdeb1f3db vfs_fileattr_get EXPORT_SYMBOL vmlinux 0xdeb7840f radix__flush_tlb_page +EXPORT_SYMBOL vmlinux 0xdec3f367 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xdec76fe9 blk_queue_flag_clear EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdee7e3ce dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xded8e98b tcp_v4_mtu_reduced EXPORT_SYMBOL vmlinux 0xdeea68ca fs_bio_set EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode EXPORT_SYMBOL vmlinux 0xdf00b5d7 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xdf03cee1 sock_queue_err_skb EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xdf2708ae devfreq_update_target EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier EXPORT_SYMBOL vmlinux 0xdf5ade3c __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xdf630cf2 inet_shutdown EXPORT_SYMBOL vmlinux 0xdf74491f md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xdf772433 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xdf801ce6 scsi_command_normalize_sense EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf9b7c0a skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xdf9fcfa7 __skb_pad -EXPORT_SYMBOL vmlinux 0xdfc25ef8 filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0xdfc50d4e mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xdfb3e74e mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0xdfbb111f dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xdfbd27d9 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0xdfcbae31 sock_rfree EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfdbc140 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xdfd287f7 may_umount EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdfec183d tcp_add_backlog EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xdffe59cc ptp_schedule_worker EXPORT_SYMBOL vmlinux 0xe0094905 pcie_set_mps -EXPORT_SYMBOL vmlinux 0xe016070b zap_page_range EXPORT_SYMBOL vmlinux 0xe022e639 gen_pool_alloc_algo_owner EXPORT_SYMBOL vmlinux 0xe02c4635 dm_kcopyd_zero EXPORT_SYMBOL vmlinux 0xe03a2e68 configfs_unregister_subsystem EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe042cc54 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0xe047962d __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0xe0542806 devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0xe0588762 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xe05cdcfd tcf_block_put +EXPORT_SYMBOL vmlinux 0xe05dc2da gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0xe0604a61 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xe07a393e udp_gro_complete EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups -EXPORT_SYMBOL vmlinux 0xe0861931 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0xe08c6fb2 fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0xe091c977 list_sort EXPORT_SYMBOL vmlinux 0xe09285a4 devm_pci_remap_cfgspace EXPORT_SYMBOL vmlinux 0xe0937dad param_set_invbool @@ -10621,582 +10523,570 @@ EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold EXPORT_SYMBOL vmlinux 0xe0972bc8 truncate_inode_pages_range EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start EXPORT_SYMBOL vmlinux 0xe0a44b56 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xe0a88e3e __fib6_flush_trees EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free EXPORT_SYMBOL vmlinux 0xe0b1ba91 tty_port_block_til_ready EXPORT_SYMBOL vmlinux 0xe0b6b16c user_revoke EXPORT_SYMBOL vmlinux 0xe0badba4 pm860x_page_bulk_read EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0c0dc91 dump_align +EXPORT_SYMBOL vmlinux 0xe0c44d11 end_page_private_2 EXPORT_SYMBOL vmlinux 0xe0cc914c md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xe0d10944 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xe0dd485d xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xe0cec2d4 remove_arg_zero EXPORT_SYMBOL vmlinux 0xe0e629b0 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0xe0fedf81 giveup_all -EXPORT_SYMBOL vmlinux 0xe107b9d1 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xe10a0845 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xe0efa9c0 blk_put_request +EXPORT_SYMBOL vmlinux 0xe0f02d1d vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xe0fe9d97 udp_read_sock EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0xe121a516 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xe121ae5e f_setown EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe14db3de ethtool_notify +EXPORT_SYMBOL vmlinux 0xe13ef428 phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0xe15af9e7 md_write_end EXPORT_SYMBOL vmlinux 0xe15c74f3 pci_msix_vec_count EXPORT_SYMBOL vmlinux 0xe16ec9b7 blk_cleanup_disk -EXPORT_SYMBOL vmlinux 0xe172b660 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xe17bd4ee block_page_mkwrite -EXPORT_SYMBOL vmlinux 0xe17f380d xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0xe18dbea3 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xe1a6b29b flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xe1b88225 netdev_reset_tc EXPORT_SYMBOL vmlinux 0xe1c4b754 inode_set_flags EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1ef7881 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xe20046f2 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0xe21c9c9a tcf_idr_release +EXPORT_SYMBOL vmlinux 0xe1e88b82 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xe1ff9d3b km_state_notify EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL vmlinux 0xe23fc4ab sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xe25180bb sock_set_reuseport +EXPORT_SYMBOL vmlinux 0xe2321fd1 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xe24686f1 vfs_get_fsid EXPORT_SYMBOL vmlinux 0xe25d20d3 __xa_alloc_cyclic EXPORT_SYMBOL vmlinux 0xe273131c pci_ep_cfs_add_epc_group EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap EXPORT_SYMBOL vmlinux 0xe2834dbe d_invalidate EXPORT_SYMBOL vmlinux 0xe28bcb56 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0xe292d268 rt6_lookup -EXPORT_SYMBOL vmlinux 0xe297312f __f_setown -EXPORT_SYMBOL vmlinux 0xe2a0ecb8 vm_insert_page -EXPORT_SYMBOL vmlinux 0xe2a1059c kern_unmount_array -EXPORT_SYMBOL vmlinux 0xe2bf5708 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xe2930e80 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xe2a69d3a genl_unregister_family +EXPORT_SYMBOL vmlinux 0xe2a82084 __bforget EXPORT_SYMBOL vmlinux 0xe2d0242e pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xe2d4f288 udp_seq_start EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2dc0e75 inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0xe2e54381 par_io_of_config +EXPORT_SYMBOL vmlinux 0xe2f6c297 __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0xe2f8a338 vio_find_node -EXPORT_SYMBOL vmlinux 0xe324d1b2 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0xe3251a9d rtnl_create_link +EXPORT_SYMBOL vmlinux 0xe3000736 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xe30e03db pcibus_to_node +EXPORT_SYMBOL vmlinux 0xe319d8b7 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xe325590c rt_dst_clone +EXPORT_SYMBOL vmlinux 0xe3276b47 xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe341694d phy_set_asym_pause EXPORT_SYMBOL vmlinux 0xe364e59d rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0xe36cb45c iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xe37cc526 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xe36637f0 generic_fillattr +EXPORT_SYMBOL vmlinux 0xe38d97df sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xe3911cbf udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xe3968683 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xe39a5a55 write_dirty_buffer EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3aaaa48 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xe39ce961 __filemap_set_wb_err EXPORT_SYMBOL vmlinux 0xe3acc311 dquot_get_next_id EXPORT_SYMBOL vmlinux 0xe3bc0f08 rproc_alloc -EXPORT_SYMBOL vmlinux 0xe3d52fbc __bread_gfp +EXPORT_SYMBOL vmlinux 0xe3d52d3e tcp_rcv_state_process EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region EXPORT_SYMBOL vmlinux 0xe3f29f70 __init_waitqueue_head EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 EXPORT_SYMBOL vmlinux 0xe40ff6bf misc_register -EXPORT_SYMBOL vmlinux 0xe416cba8 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xe41613ab security_inet_conn_established EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be -EXPORT_SYMBOL vmlinux 0xe4368981 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xe42e033d netpoll_send_skb EXPORT_SYMBOL vmlinux 0xe43b48f7 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xe4480d6a tcf_exts_change -EXPORT_SYMBOL vmlinux 0xe44e3c10 skb_ensure_writable EXPORT_SYMBOL vmlinux 0xe44eabf2 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xe467606a jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xe468cba6 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xe46d1b72 neigh_table_clear EXPORT_SYMBOL vmlinux 0xe47ff916 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xe485606e create_empty_buffers -EXPORT_SYMBOL vmlinux 0xe496a53f xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0xe49b9e75 phy_start -EXPORT_SYMBOL vmlinux 0xe49beea6 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xe4896487 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xe48d5e42 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xe49b5699 iw_handler_set_thrspy EXPORT_SYMBOL vmlinux 0xe4bc0e90 mipi_dsi_dcs_get_power_mode EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4e46b74 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0xe4e57223 tcp_seq_start EXPORT_SYMBOL vmlinux 0xe4e7cff3 tcp_sockets_allocated EXPORT_SYMBOL vmlinux 0xe4efb700 register_sysctl EXPORT_SYMBOL vmlinux 0xe5010b55 setattr_should_drop_suidgid EXPORT_SYMBOL vmlinux 0xe5052c35 gtm_set_timer16 +EXPORT_SYMBOL vmlinux 0xe50c3a54 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xe513ddd6 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xe514f3a7 filemap_check_errors EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe52c1bfc tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xe525c14b _dev_info +EXPORT_SYMBOL vmlinux 0xe5314a2e phy_mii_ioctl EXPORT_SYMBOL vmlinux 0xe5368fc1 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe53c1535 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xe5416639 arp_xmit EXPORT_SYMBOL vmlinux 0xe5434b98 bio_put EXPORT_SYMBOL vmlinux 0xe544fcb5 textsearch_register -EXPORT_SYMBOL vmlinux 0xe554bd4e ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xe55673a0 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xe56a4e70 skb_vlan_pop EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe581a4b0 napi_consume_skb EXPORT_SYMBOL vmlinux 0xe58a1429 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xe58d4257 tso_build_hdr EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe59cd465 xp_dma_map +EXPORT_SYMBOL vmlinux 0xe5a34d89 ipv4_specific EXPORT_SYMBOL vmlinux 0xe5a5f8d4 d_prune_aliases EXPORT_SYMBOL vmlinux 0xe5a63b4c remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xe5b8d98f inet_accept EXPORT_SYMBOL vmlinux 0xe5c349da agp_backend_acquire EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5c92a6b disk_start_io_acct -EXPORT_SYMBOL vmlinux 0xe5cc7d48 genphy_suspend EXPORT_SYMBOL vmlinux 0xe5cd597b single_release EXPORT_SYMBOL vmlinux 0xe5d00b9c of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xe5d0c050 mmc_set_data_timeout EXPORT_SYMBOL vmlinux 0xe5d71a61 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xe5df103f vfs_unlink -EXPORT_SYMBOL vmlinux 0xe601adf7 skb_tx_error +EXPORT_SYMBOL vmlinux 0xe5e6caf0 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xe5e818b2 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xe600e90d __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xe6040d4a xfrm6_rcv_tnl EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe614d3b8 sock_no_connect +EXPORT_SYMBOL vmlinux 0xe6248b56 flow_rule_match_ct EXPORT_SYMBOL vmlinux 0xe627aa11 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xe6287de8 dev_mc_add_excl EXPORT_SYMBOL vmlinux 0xe62c515d __fs_parse -EXPORT_SYMBOL vmlinux 0xe63663a1 page_get_link +EXPORT_SYMBOL vmlinux 0xe62d0ba1 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xe6421d46 sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0xe64606b5 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xe658ed74 nobh_write_end +EXPORT_SYMBOL vmlinux 0xe65ae98b security_unix_stream_connect EXPORT_SYMBOL vmlinux 0xe664c77a unregister_quota_format -EXPORT_SYMBOL vmlinux 0xe66d52fd of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xe68510f0 __skb_recv_datagram EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin EXPORT_SYMBOL vmlinux 0xe694077f gen_pool_for_each_chunk EXPORT_SYMBOL vmlinux 0xe696642d dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0xe69770da bio_add_page -EXPORT_SYMBOL vmlinux 0xe6b5f012 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xe6b94982 vme_master_mmap EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack EXPORT_SYMBOL vmlinux 0xe6df865d md_done_sync -EXPORT_SYMBOL vmlinux 0xe6e0865a phy_resume +EXPORT_SYMBOL vmlinux 0xe6e5cb6e devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0xe6e89504 __blk_mq_end_request EXPORT_SYMBOL vmlinux 0xe706089f mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xe7092310 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xe72712ba vm_iomap_memory EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf EXPORT_SYMBOL vmlinux 0xe73302f2 pm860x_reg_write EXPORT_SYMBOL vmlinux 0xe75057cd do_SAK +EXPORT_SYMBOL vmlinux 0xe7569179 nf_log_unset EXPORT_SYMBOL vmlinux 0xe76335c5 __debugger -EXPORT_SYMBOL vmlinux 0xe786b9b0 inode_io_list_del +EXPORT_SYMBOL vmlinux 0xe769b570 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0xe7903271 call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0xe79a735c fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xe79e9566 netdev_update_features +EXPORT_SYMBOL vmlinux 0xe7a838a1 i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0xe7a8fd6a iov_iter_revert -EXPORT_SYMBOL vmlinux 0xe7b1aeb2 ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0xe7bffcf0 _copy_from_iter EXPORT_SYMBOL vmlinux 0xe7c52172 kobject_get EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next EXPORT_SYMBOL vmlinux 0xe7d72901 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0xe7eb809a tcp_child_process -EXPORT_SYMBOL vmlinux 0xe80c44f9 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xe7dc410f mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xe7ec4823 inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0xe81d18fa arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0xe8281c82 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xe822bdcb __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0xe848d453 devm_memunmap -EXPORT_SYMBOL vmlinux 0xe85a58a6 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xe8504dbf gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xe8510870 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xe8607804 eth_get_headlen EXPORT_SYMBOL vmlinux 0xe878cc22 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xe886afdb ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0xe89605a4 fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0xe8ad02fa tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0xe8b016f1 ipv6_setsockopt EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8b5d2c6 inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0xe8b80834 security_cred_getsecid EXPORT_SYMBOL vmlinux 0xe8d0253a agp_generic_alloc_by_type EXPORT_SYMBOL vmlinux 0xe8d54c77 xa_clear_mark -EXPORT_SYMBOL vmlinux 0xe8d89fab __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xe8dd353a vm_insert_pages -EXPORT_SYMBOL vmlinux 0xe8dfe696 inet_listen -EXPORT_SYMBOL vmlinux 0xe8e49d3f mmc_is_req_done -EXPORT_SYMBOL vmlinux 0xe8f377be capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xe90774cb tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0xe90ad83b netdev_notice EXPORT_SYMBOL vmlinux 0xe90dd975 mipi_dsi_dcs_get_display_brightness_large EXPORT_SYMBOL vmlinux 0xe9128648 machine_id EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91a69a7 inet6_getname EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95759d0 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0xe97f2919 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0xe98b4c52 vfs_getattr -EXPORT_SYMBOL vmlinux 0xe9a881c8 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xe9738025 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xe9a4c3d4 tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0xe9aa8925 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xe9ae800c devm_register_netdev +EXPORT_SYMBOL vmlinux 0xe9ac97e2 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xe9cdb484 udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0xe9daa75e con_is_visible -EXPORT_SYMBOL vmlinux 0xe9f0a770 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xe9eafeb6 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xe9f1b48f inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize EXPORT_SYMBOL vmlinux 0xe9fc8b01 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xea1dc564 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xea378675 fget EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int EXPORT_SYMBOL vmlinux 0xea426e43 mempool_resize -EXPORT_SYMBOL vmlinux 0xea458691 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xea4b5bdd jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xea4e98f5 netdev_upper_get_next_dev_rcu EXPORT_SYMBOL vmlinux 0xea604dcc tty_port_hangup -EXPORT_SYMBOL vmlinux 0xea627024 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xea699e53 mmc_can_erase -EXPORT_SYMBOL vmlinux 0xea6a3915 ppp_unit_number EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer EXPORT_SYMBOL vmlinux 0xea80392f on_each_cpu_cond_mask EXPORT_SYMBOL vmlinux 0xea84e098 get_ipc_ns_exported EXPORT_SYMBOL vmlinux 0xea98d715 drop_super +EXPORT_SYMBOL vmlinux 0xeaac6a6e ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xeab0a6f2 follow_down_one +EXPORT_SYMBOL vmlinux 0xeab666a1 mmc_add_host EXPORT_SYMBOL vmlinux 0xeab79a65 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xead01296 tcp_rcv_established EXPORT_SYMBOL vmlinux 0xead59a0b of_n_size_cells -EXPORT_SYMBOL vmlinux 0xeafa32c6 scsi_host_get +EXPORT_SYMBOL vmlinux 0xeae74bc2 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xeaf201a7 unlock_page EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeb0fced6 call_fib_notifiers EXPORT_SYMBOL vmlinux 0xeb126af4 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xeb22d0bc unregister_netdev EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb264268 __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0xeb2ba9f0 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xeb2da471 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xeb359b79 tcf_idr_cleanup EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb606bac inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xeb729861 tcp_fastopen_defer_connect EXPORT_SYMBOL vmlinux 0xeb72f531 rproc_coredump_add_segment EXPORT_SYMBOL vmlinux 0xeb7a1ae8 blk_mq_start_request EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count EXPORT_SYMBOL vmlinux 0xeb8f2d4f __pmd_frag_size_shift -EXPORT_SYMBOL vmlinux 0xeb90e448 mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint EXPORT_SYMBOL vmlinux 0xeba0d23d kmem_cache_alloc_trace EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present -EXPORT_SYMBOL vmlinux 0xebae4dda napi_schedule_prep EXPORT_SYMBOL vmlinux 0xebaf4606 vfio_register_notifier +EXPORT_SYMBOL vmlinux 0xebb12255 key_move EXPORT_SYMBOL vmlinux 0xebb4d27b get_agp_version -EXPORT_SYMBOL vmlinux 0xebc9aba6 __module_get +EXPORT_SYMBOL vmlinux 0xebc8f652 inet_pton_with_scope EXPORT_SYMBOL vmlinux 0xebd17547 mdiobus_setup_mdiodev_from_board_info EXPORT_SYMBOL vmlinux 0xebd32cdd dma_fence_get_status EXPORT_SYMBOL vmlinux 0xebeb20ea __nla_put -EXPORT_SYMBOL vmlinux 0xec013dfd passthru_features_check -EXPORT_SYMBOL vmlinux 0xec18bce1 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xebfb7b1b qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xec0663b6 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xec0a4564 path_is_under +EXPORT_SYMBOL vmlinux 0xec0e4597 of_device_alloc EXPORT_SYMBOL vmlinux 0xec1b39bc set_security_override -EXPORT_SYMBOL vmlinux 0xec2ce220 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xec32df03 sockfd_lookup EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xec475a7f sync_filesystem +EXPORT_SYMBOL vmlinux 0xec3f3ae6 dev_trans_start +EXPORT_SYMBOL vmlinux 0xec4cd112 icmp_ndo_send EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys EXPORT_SYMBOL vmlinux 0xec4fb493 remove_wait_queue EXPORT_SYMBOL vmlinux 0xec579c32 dquot_initialize -EXPORT_SYMBOL vmlinux 0xec75dfd6 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xec602c81 __kfree_skb +EXPORT_SYMBOL vmlinux 0xec617496 ata_scsi_cmd_error_handler EXPORT_SYMBOL vmlinux 0xec8de50b param_set_bint -EXPORT_SYMBOL vmlinux 0xec95942f mmc_run_bkops EXPORT_SYMBOL vmlinux 0xec97ead8 __kernel_io_start -EXPORT_SYMBOL vmlinux 0xec9ee1c9 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xeca43283 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0xecb0cc95 devfreq_remove_device EXPORT_SYMBOL vmlinux 0xecb3f7f9 pci_enable_device_mem EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 -EXPORT_SYMBOL vmlinux 0xecd65382 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xecde20e4 inode_permission -EXPORT_SYMBOL vmlinux 0xece40461 tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf21ddc dev_printk_emit -EXPORT_SYMBOL vmlinux 0xed0547e3 default_llseek EXPORT_SYMBOL vmlinux 0xed11415e config_item_get -EXPORT_SYMBOL vmlinux 0xed34a4a7 vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0xed362545 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xed3e250f device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0xed51c294 block_truncate_page EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock EXPORT_SYMBOL vmlinux 0xed5d64c4 nla_put_64bit EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed6e5c5e wait_on_page_bit_killable EXPORT_SYMBOL vmlinux 0xed80c730 vio_register_device_node +EXPORT_SYMBOL vmlinux 0xeda27157 rtnl_notify EXPORT_SYMBOL vmlinux 0xedb5b8f5 unix_gc_lock EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedcf6a72 end_buffer_async_write EXPORT_SYMBOL vmlinux 0xedf8b5f8 setattr_should_drop_sgid -EXPORT_SYMBOL vmlinux 0xedfd0e00 of_device_register EXPORT_SYMBOL vmlinux 0xee0ad17c mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xee0d994a mntput EXPORT_SYMBOL vmlinux 0xee17d7c3 param_get_int EXPORT_SYMBOL vmlinux 0xee18c545 mpage_writepage -EXPORT_SYMBOL vmlinux 0xee1bcba3 i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee53d11e tcp_seq_stop +EXPORT_SYMBOL vmlinux 0xee3b2a0c mr_dump EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee671493 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xee83e780 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xee85d1d3 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0xee827372 register_shrinker EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee8ef74e down_read_killable +EXPORT_SYMBOL vmlinux 0xee8ef9fd ip_frag_init EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee9612ae __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xee9915f2 netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0xee9c8900 blk_rq_append_bio EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap EXPORT_SYMBOL vmlinux 0xeeb5da63 serio_rescan EXPORT_SYMBOL vmlinux 0xeec05f75 copy_page_from_iter EXPORT_SYMBOL vmlinux 0xeed5bcca __pud_table_size -EXPORT_SYMBOL vmlinux 0xeee4b735 dev_open +EXPORT_SYMBOL vmlinux 0xeedd9c50 _dev_printk +EXPORT_SYMBOL vmlinux 0xeedf6421 phy_start_aneg EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xeee8436e scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xeef33881 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xeefe1829 unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0xeeff2850 refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0xef03090f security_inode_init_security EXPORT_SYMBOL vmlinux 0xef0e525e iterate_supers_type -EXPORT_SYMBOL vmlinux 0xef17883a sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xef206848 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0xef20ca16 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0xef23ed76 finalize_exec -EXPORT_SYMBOL vmlinux 0xef24ca33 __mdiobus_write -EXPORT_SYMBOL vmlinux 0xef35d695 migrate_page_states +EXPORT_SYMBOL vmlinux 0xef1dcc0c scsi_host_lookup EXPORT_SYMBOL vmlinux 0xef369091 dm_put_device -EXPORT_SYMBOL vmlinux 0xef4d6a83 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xef54f609 mmc_wait_for_req EXPORT_SYMBOL vmlinux 0xef56eceb dquot_operations -EXPORT_SYMBOL vmlinux 0xef57ab13 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xef5dfea9 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xef6c1ada xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0xef6e1549 serio_unregister_port EXPORT_SYMBOL vmlinux 0xef71a22c wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0xef772fc3 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xef86b53c submit_bh -EXPORT_SYMBOL vmlinux 0xef929a9f __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xef7408a5 scsi_print_result EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefbab777 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xefc6255a inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0xefd5011e skb_vlan_push -EXPORT_SYMBOL vmlinux 0xefd6ad89 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0xefe542cf mr_table_dump -EXPORT_SYMBOL vmlinux 0xefe5aaf4 tcp_seq_next +EXPORT_SYMBOL vmlinux 0xefce5181 __register_binfmt +EXPORT_SYMBOL vmlinux 0xefdb4eb7 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xefec62ca xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xeff7c35a compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0101a22 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xf0315a64 locks_init_lock EXPORT_SYMBOL vmlinux 0xf0329ad1 down_read_trylock EXPORT_SYMBOL vmlinux 0xf0390301 ilookup -EXPORT_SYMBOL vmlinux 0xf04544fd rtnl_unicast -EXPORT_SYMBOL vmlinux 0xf05259af napi_gro_frags +EXPORT_SYMBOL vmlinux 0xf03daa12 tcp_splice_read EXPORT_SYMBOL vmlinux 0xf0533c47 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0xf05d5ca2 generic_write_checks EXPORT_SYMBOL vmlinux 0xf07350bd proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0xf0742ce0 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xf07b1b25 phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xf08617eb xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xf08f705c setup_arg_pages +EXPORT_SYMBOL vmlinux 0xf090b2ef devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xf0932f28 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a434cc tcp_recvmsg EXPORT_SYMBOL vmlinux 0xf0bae21d make_kgid +EXPORT_SYMBOL vmlinux 0xf0c3ce43 tcp_v4_connect EXPORT_SYMBOL vmlinux 0xf0d3476a always_delete_dentry +EXPORT_SYMBOL vmlinux 0xf0e316fb stream_open EXPORT_SYMBOL vmlinux 0xf0fe16db misc_deregister EXPORT_SYMBOL vmlinux 0xf110d1cb pseries_enable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0xf113d706 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xf11705e2 km_policy_expired +EXPORT_SYMBOL vmlinux 0xf11b9e44 i2c_verify_adapter EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf1211f24 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xf124f23f dev_get_flags +EXPORT_SYMBOL vmlinux 0xf126714a qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0xf1349228 swake_up_locked +EXPORT_SYMBOL vmlinux 0xf145b03d skb_split EXPORT_SYMBOL vmlinux 0xf151ec81 to_nd_btt EXPORT_SYMBOL vmlinux 0xf158a02e iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xf16a7530 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xf17b27b9 phy_loopback EXPORT_SYMBOL vmlinux 0xf1851261 make_bad_inode EXPORT_SYMBOL vmlinux 0xf187a7d6 pin_user_pages_remote EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a33c20 inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0xf1a4ddc5 pci_dev_put -EXPORT_SYMBOL vmlinux 0xf1bb3aa8 can_nice -EXPORT_SYMBOL vmlinux 0xf1bcd4d1 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xf1c8cee5 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xf1cb3d30 __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0xf1d18e90 _outsw_ns EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1ddf2ee ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0xf1e046cc panic EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf2252a95 mfd_add_devices -EXPORT_SYMBOL vmlinux 0xf227518d sock_set_priority -EXPORT_SYMBOL vmlinux 0xf232ea9c sock_recvmsg +EXPORT_SYMBOL vmlinux 0xf1fadd64 __block_write_full_page +EXPORT_SYMBOL vmlinux 0xf2181b01 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xf21fca3c console_stop EXPORT_SYMBOL vmlinux 0xf239f7ae generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xf23dfbee mount_subtree EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in EXPORT_SYMBOL vmlinux 0xf241461f __xa_insert EXPORT_SYMBOL vmlinux 0xf24f0405 clk_add_alias EXPORT_SYMBOL vmlinux 0xf2620e64 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xf2761447 reuseport_detach_prog EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf28d5bdf nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xf28da992 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xf294708c inet6_del_protocol EXPORT_SYMBOL vmlinux 0xf29f0d6b add_watch_to_object EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xf2ac87af fc_mount -EXPORT_SYMBOL vmlinux 0xf2bb47f6 alloc_buffer_head EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2cca26f sk_dst_check -EXPORT_SYMBOL vmlinux 0xf2d8fbab migrate_vma_setup +EXPORT_SYMBOL vmlinux 0xf2df25f7 jbd2_journal_invalidatepage EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2ea3f70 skb_dequeue EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf2f8884a vme_bus_type +EXPORT_SYMBOL vmlinux 0xf2fa6449 security_path_unlink +EXPORT_SYMBOL vmlinux 0xf30ddf0f mdiobus_get_phy EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf31b6bf0 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xf324ae9c of_get_mac_address EXPORT_SYMBOL vmlinux 0xf32f4fe5 mipi_dsi_generic_write EXPORT_SYMBOL vmlinux 0xf33a2931 rproc_report_crash EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf3466964 ip_fraglist_init EXPORT_SYMBOL vmlinux 0xf34f3bc3 dma_fence_chain_walk EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf3668565 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xf36ee8ab readahead_expand EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf3733249 inet_dev_addr_type EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused -EXPORT_SYMBOL vmlinux 0xf39375c9 generic_perform_write -EXPORT_SYMBOL vmlinux 0xf395676b vme_slave_request +EXPORT_SYMBOL vmlinux 0xf39c3f2e sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest EXPORT_SYMBOL vmlinux 0xf3b340ca pnv_cxl_get_irq_count -EXPORT_SYMBOL vmlinux 0xf3c044e2 vfs_readlink +EXPORT_SYMBOL vmlinux 0xf3bb0f24 rt6_lookup EXPORT_SYMBOL vmlinux 0xf3c10a73 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0xf3d05969 block_write_end -EXPORT_SYMBOL vmlinux 0xf3d98aa7 dev_driver_string -EXPORT_SYMBOL vmlinux 0xf3e03cf8 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xf3c18928 twl6040_reg_write EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e14814 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xf3e43759 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xf3e60d46 udp_lib_rehash EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal EXPORT_SYMBOL vmlinux 0xf3e8ff28 to_ndd EXPORT_SYMBOL vmlinux 0xf3ea7209 d_obtain_alias EXPORT_SYMBOL vmlinux 0xf3f2e8ee __dec_node_page_state -EXPORT_SYMBOL vmlinux 0xf3ffc577 __netlink_dump_start EXPORT_SYMBOL vmlinux 0xf40a5ebf nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xf40afa18 ptp_find_pin EXPORT_SYMBOL vmlinux 0xf40fe73f tty_port_init EXPORT_SYMBOL vmlinux 0xf4102303 nla_put_nohdr EXPORT_SYMBOL vmlinux 0xf418d743 register_cdrom -EXPORT_SYMBOL vmlinux 0xf4262e9d __block_write_begin +EXPORT_SYMBOL vmlinux 0xf4234040 kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0xf42d64ca proc_dostring EXPORT_SYMBOL vmlinux 0xf4389208 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xf4414092 vfs_iter_read EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf44e0cb0 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0xf46901e1 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xf44ff450 __zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0xf46f60c0 devm_input_allocate_device EXPORT_SYMBOL vmlinux 0xf472017a swake_up_all EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4a2e1ab crypto_sha512_update -EXPORT_SYMBOL vmlinux 0xf4a460fb __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xf4ab46cf nf_log_unset -EXPORT_SYMBOL vmlinux 0xf4b54358 ptp_find_pin_unlocked EXPORT_SYMBOL vmlinux 0xf4bd3aff agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xf4bd7971 __scsi_device_lookup EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4c3a440 module_put +EXPORT_SYMBOL vmlinux 0xf4cb095b __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy EXPORT_SYMBOL vmlinux 0xf4df0099 cred_fscmp +EXPORT_SYMBOL vmlinux 0xf4e82bb1 phy_aneg_done EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf5029f7f mmc_erase +EXPORT_SYMBOL vmlinux 0xf4ff066c sock_set_sndtimeo EXPORT_SYMBOL vmlinux 0xf50878d6 dcache_readdir EXPORT_SYMBOL vmlinux 0xf51f8708 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0xf5268902 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xf531a782 key_link +EXPORT_SYMBOL vmlinux 0xf533fd54 lookup_one_positive_unlocked EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy EXPORT_SYMBOL vmlinux 0xf53f722e trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xf5448d54 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0xf5445959 of_mdio_find_bus EXPORT_SYMBOL vmlinux 0xf5488fd9 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xf54945ee dump_emit EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 EXPORT_SYMBOL vmlinux 0xf56a55ae ilookup5 -EXPORT_SYMBOL vmlinux 0xf579d2b9 i2c_verify_client EXPORT_SYMBOL vmlinux 0xf589d816 pci_dev_get EXPORT_SYMBOL vmlinux 0xf59c723b pci_select_bars EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io EXPORT_SYMBOL vmlinux 0xf5a77a22 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xf5ad298d register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xf5c799e2 qdisc_put -EXPORT_SYMBOL vmlinux 0xf5c95bef zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xf5b9da3a km_report EXPORT_SYMBOL vmlinux 0xf5d7559b simple_dir_inode_operations EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 EXPORT_SYMBOL vmlinux 0xf5f47f4e __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xf600aa33 __register_binfmt +EXPORT_SYMBOL vmlinux 0xf5fbc7c5 lookup_one_unlocked EXPORT_SYMBOL vmlinux 0xf60675d4 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xf60e9c96 tcf_classify +EXPORT_SYMBOL vmlinux 0xf61396eb generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0xf6150d63 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xf6157eec netif_set_xps_queue EXPORT_SYMBOL vmlinux 0xf615dac4 pci_enable_device EXPORT_SYMBOL vmlinux 0xf62472aa make_kuid EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx -EXPORT_SYMBOL vmlinux 0xf63cb522 invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0xf63f0d1c dma_sync_wait EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 EXPORT_SYMBOL vmlinux 0xf64c1b29 pnv_cxl_ioda_msi_setup -EXPORT_SYMBOL vmlinux 0xf664220d generic_ro_fops +EXPORT_SYMBOL vmlinux 0xf661c77a _dev_warn EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module EXPORT_SYMBOL vmlinux 0xf666368e dquot_get_dqblk EXPORT_SYMBOL vmlinux 0xf66b1ab0 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xf67d849f inode_add_bytes EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier EXPORT_SYMBOL vmlinux 0xf6883957 iov_iter_init -EXPORT_SYMBOL vmlinux 0xf69d78fa generic_writepages -EXPORT_SYMBOL vmlinux 0xf6ab2ef9 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xf6a044e0 no_llseek EXPORT_SYMBOL vmlinux 0xf6b2ed11 pci_choose_state -EXPORT_SYMBOL vmlinux 0xf6d0d633 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xf6dbe783 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xf6b5131f jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0xf6dc8174 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xf6e05e64 init_net +EXPORT_SYMBOL vmlinux 0xf6e6f94e napi_build_skb EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6ec6029 security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor EXPORT_SYMBOL vmlinux 0xf707b99c devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0xf70f970f generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0xf71bed0a twl6040_reg_read EXPORT_SYMBOL vmlinux 0xf7202b39 mipi_dsi_dcs_set_display_brightness_large EXPORT_SYMBOL vmlinux 0xf72c974e __d_lookup_done EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf751f8d7 dev_mc_sync_multiple EXPORT_SYMBOL vmlinux 0xf755b200 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xf758816d dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf79ae02f neigh_lookup -EXPORT_SYMBOL vmlinux 0xf7acaf21 i2c_del_adapter EXPORT_SYMBOL vmlinux 0xf7b1ff72 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0xf7c25a03 netif_carrier_off EXPORT_SYMBOL vmlinux 0xf7c2df39 __wake_up_bit EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0xf7e3dc67 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xf7fe1440 mr_table_alloc +EXPORT_SYMBOL vmlinux 0xf7f8c781 __cpuhp_remove_state EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q EXPORT_SYMBOL vmlinux 0xf812cff6 memscan EXPORT_SYMBOL vmlinux 0xf812e574 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf818256a eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xf81a44c4 fqdir_init EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf834e111 generic_listxattr +EXPORT_SYMBOL vmlinux 0xf8344f73 flow_indr_dev_unregister EXPORT_SYMBOL vmlinux 0xf839a084 param_ops_short +EXPORT_SYMBOL vmlinux 0xf8417b3f netdev_pick_tx EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key EXPORT_SYMBOL vmlinux 0xf851818d dma_sync_single_for_cpu EXPORT_SYMBOL vmlinux 0xf8597f24 noop_fsync EXPORT_SYMBOL vmlinux 0xf85a0e08 dquot_get_state +EXPORT_SYMBOL vmlinux 0xf86048c4 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0xf864e92d lock_sock_nested EXPORT_SYMBOL vmlinux 0xf86fc19f pci_save_state +EXPORT_SYMBOL vmlinux 0xf86fdc98 gnet_stats_finish_copy EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf8939434 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xf896eae7 skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0xf89959f8 find_inode_rcu EXPORT_SYMBOL vmlinux 0xf8a74f8a framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xf8b28b8a try_to_free_buffers EXPORT_SYMBOL vmlinux 0xf8b89ce7 pci_msi_vec_count EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 EXPORT_SYMBOL vmlinux 0xf8d68798 pci_bus_read_config_dword EXPORT_SYMBOL vmlinux 0xf8e1115e _outsl_ns +EXPORT_SYMBOL vmlinux 0xf8f0a82f netdev_name_node_alt_create EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf905ad2f end_buffer_async_write -EXPORT_SYMBOL vmlinux 0xf9129c35 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xf91133e9 page_zero_new_buffers EXPORT_SYMBOL vmlinux 0xf92874d4 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0xf937b37d dev_get_stats +EXPORT_SYMBOL vmlinux 0xf92a852b xsk_tx_release EXPORT_SYMBOL vmlinux 0xf93c287e blk_post_runtime_resume EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt EXPORT_SYMBOL vmlinux 0xf94ba813 msi_bitmap_free_hwirqs -EXPORT_SYMBOL vmlinux 0xf9551107 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xf9579721 xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0xf96d81b3 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xf952f5bb mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xf954bf20 vme_slave_request +EXPORT_SYMBOL vmlinux 0xf95e6d03 __mmc_claim_host EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf9751d04 filemap_fdatawait_keep_errors EXPORT_SYMBOL vmlinux 0xf989c80d from_kuid -EXPORT_SYMBOL vmlinux 0xf98c25cc scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xf9979533 ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0xf99e5154 bdi_put -EXPORT_SYMBOL vmlinux 0xf99f56ef vfs_mkdir EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9ae7def update_devfreq EXPORT_SYMBOL vmlinux 0xf9b1cdcd smp_call_function_many +EXPORT_SYMBOL vmlinux 0xf9b40754 mark_buffer_async_write EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9c55ed0 dev_add_pack EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9caeecb vm_map_pages -EXPORT_SYMBOL vmlinux 0xf9e7b27c genlmsg_put -EXPORT_SYMBOL vmlinux 0xf9fde2ac dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xf9cdd179 locks_remove_posix EXPORT_SYMBOL vmlinux 0xf9ffdb62 mount_nodev EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa1a4ed8 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xfa179d56 netlink_set_err EXPORT_SYMBOL vmlinux 0xfa1b12e0 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xfa2aaa7f of_mdio_find_device +EXPORT_SYMBOL vmlinux 0xfa1ffb20 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xfa2aec87 vm_insert_pages EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa2f5791 __inet6_lookup_established EXPORT_SYMBOL vmlinux 0xfa3b65c8 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xfa3e7dcc ip6_fraglist_init EXPORT_SYMBOL vmlinux 0xfa45deb8 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0xfa54755e unix_detach_fds EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5bc780 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0xfa59ab94 i2c_smbus_read_word_data EXPORT_SYMBOL vmlinux 0xfa7dec5e pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xfa80fb25 ip_do_fragment EXPORT_SYMBOL vmlinux 0xfa824f9e pci_read_config_word -EXPORT_SYMBOL vmlinux 0xfa82adfd tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa96e0d0 phy_ethtool_get_sset_count EXPORT_SYMBOL vmlinux 0xfa99d807 bio_devname +EXPORT_SYMBOL vmlinux 0xfa9b1ddb writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xfa9c1b30 generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0xfa9c2ece _raw_read_trylock EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfac4c298 ppp_input +EXPORT_SYMBOL vmlinux 0xfac03487 sock_common_recvmsg EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max EXPORT_SYMBOL vmlinux 0xfac94849 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xfacb738a inet_frag_pull_head EXPORT_SYMBOL vmlinux 0xfacd8c28 nla_put -EXPORT_SYMBOL vmlinux 0xfaffe543 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xfb132dc9 set_page_dirty -EXPORT_SYMBOL vmlinux 0xfb145a7c nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xfb02092f netdev_name_node_alt_destroy EXPORT_SYMBOL vmlinux 0xfb232c7e idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xfb24a373 genl_register_family +EXPORT_SYMBOL vmlinux 0xfb26cc8c fs_context_for_submount +EXPORT_SYMBOL vmlinux 0xfb276fe6 jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb396ca3 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xfb41eefd generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xfb4bdb17 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xfb5008ac inet_getname +EXPORT_SYMBOL vmlinux 0xfb3a97dc __getblk_gfp EXPORT_SYMBOL vmlinux 0xfb57185f blkdev_issue_write_same EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb7b8c82 skb_ext_add -EXPORT_SYMBOL vmlinux 0xfb94e56f __alloc_skb +EXPORT_SYMBOL vmlinux 0xfb6eda93 __udp_disconnect +EXPORT_SYMBOL vmlinux 0xfb85b608 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xfb886384 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xfb89b6df phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0xfb8c77dd __napi_schedule +EXPORT_SYMBOL vmlinux 0xfb8fc1c6 of_clk_get EXPORT_SYMBOL vmlinux 0xfb9bcc6f blk_mq_stop_hw_queue EXPORT_SYMBOL vmlinux 0xfba056db __dquot_transfer EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 @@ -11205,230 +11095,232 @@ EXPORT_SYMBOL vmlinux 0xfbab1bb1 ioread8_rep EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbd9e914 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0xfbec6e45 keyring_clear +EXPORT_SYMBOL vmlinux 0xfbc58db3 touch_buffer EXPORT_SYMBOL vmlinux 0xfbfa9ea6 load_nls_default +EXPORT_SYMBOL vmlinux 0xfc0bae7f xp_alloc EXPORT_SYMBOL vmlinux 0xfc12ce74 rfkill_alloc EXPORT_SYMBOL vmlinux 0xfc198352 override_creds -EXPORT_SYMBOL vmlinux 0xfc1a83e4 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xfc2b25af skb_free_datagram +EXPORT_SYMBOL vmlinux 0xfc252c6b file_path +EXPORT_SYMBOL vmlinux 0xfc3675e9 jbd2_journal_get_write_access EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3e1438 lookup_one_len +EXPORT_SYMBOL vmlinux 0xfc48f108 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xfc4b7e85 unlock_rename +EXPORT_SYMBOL vmlinux 0xfc4ed62c xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xfc5228fa xfrm_policy_walk EXPORT_SYMBOL vmlinux 0xfc56e6dd serio_reconnect +EXPORT_SYMBOL vmlinux 0xfc7e4a8d sock_gettstamp EXPORT_SYMBOL vmlinux 0xfc8721d9 key_invalidate -EXPORT_SYMBOL vmlinux 0xfc94d2c1 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xfc955204 km_policy_expired EXPORT_SYMBOL vmlinux 0xfcb27ff0 percpu_counter_sync EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcd94fb7 skb_put EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq EXPORT_SYMBOL vmlinux 0xfd0ad3e3 bio_advance +EXPORT_SYMBOL vmlinux 0xfd13965b tcp_child_process EXPORT_SYMBOL vmlinux 0xfd1704bd pcie_get_mps -EXPORT_SYMBOL vmlinux 0xfd66bd83 udp_set_csum +EXPORT_SYMBOL vmlinux 0xfd4e3ab2 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xfd67adee skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xfd687dbb cpufreq_get_policy EXPORT_SYMBOL vmlinux 0xfd71507c pnv_cxl_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0xfd72c91c ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xfd7b8158 register_netdevice +EXPORT_SYMBOL vmlinux 0xfd8844df xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0xfd898690 kset_unregister +EXPORT_SYMBOL vmlinux 0xfda390e1 inet6_protos EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 EXPORT_SYMBOL vmlinux 0xfdadc41c page_mapped EXPORT_SYMBOL vmlinux 0xfdb2cd09 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xfdcb15b9 generic_file_write_iter EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display EXPORT_SYMBOL vmlinux 0xfdce6d64 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xfdd128b8 neigh_app_ns EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource EXPORT_SYMBOL vmlinux 0xfdd57577 key_alloc EXPORT_SYMBOL vmlinux 0xfdd6bbad __wake_up +EXPORT_SYMBOL vmlinux 0xfddcc885 find_get_pages_contig EXPORT_SYMBOL vmlinux 0xfde121cc simple_open EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdef6c7f qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0xfdfcdd5f __csum_partial EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi EXPORT_SYMBOL vmlinux 0xfe082e1a devm_ioremap_resource EXPORT_SYMBOL vmlinux 0xfe09468a md_cluster_ops -EXPORT_SYMBOL vmlinux 0xfe0da616 genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe1fb7c2 lease_modify +EXPORT_SYMBOL vmlinux 0xfe202fd7 set_page_dirty EXPORT_SYMBOL vmlinux 0xfe2329dd clear_nlink -EXPORT_SYMBOL vmlinux 0xfe2cf015 xfrm_state_update -EXPORT_SYMBOL vmlinux 0xfe310c6d genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xfe26d5d1 rt_dst_alloc EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry EXPORT_SYMBOL vmlinux 0xfe49fa75 rproc_elf_load_rsc_table EXPORT_SYMBOL vmlinux 0xfe4f6c84 mdio_device_free EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe78bf43 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0xfe7a03f2 ata_print_version +EXPORT_SYMBOL vmlinux 0xfe5da736 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xfe6de49e __scm_destroy +EXPORT_SYMBOL vmlinux 0xfe804cfd flow_rule_alloc +EXPORT_SYMBOL vmlinux 0xfe8069e2 try_lookup_one_len EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer EXPORT_SYMBOL vmlinux 0xfe9b0001 pnv_pci_get_phb_node -EXPORT_SYMBOL vmlinux 0xfe9b5b43 flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0xfea37bc2 vfs_create_mount -EXPORT_SYMBOL vmlinux 0xfeaf8334 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xfeb294d2 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xfeb29d9e register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfec152a2 reuseport_alloc +EXPORT_SYMBOL vmlinux 0xfec9001a skb_checksum EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu EXPORT_SYMBOL vmlinux 0xfee80d3a ps2_handle_ack EXPORT_SYMBOL vmlinux 0xfee8de6a _raw_spin_lock_bh EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfefcc908 alloc_pages_vma EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call -EXPORT_SYMBOL vmlinux 0xff1c7d34 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0xff1d1783 fd_install EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff21b060 ___pskb_trim -EXPORT_SYMBOL vmlinux 0xff239b93 tso_count_descs EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff47c56f pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0xff530f7f vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xff3dc746 neigh_carrier_down EXPORT_SYMBOL vmlinux 0xff667c5b kthread_destroy_worker EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff96a697 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xff8a2c41 page_symlink EXPORT_SYMBOL vmlinux 0xffaae21a uart_add_one_port -EXPORT_SYMBOL vmlinux 0xffba3659 iptun_encaps -EXPORT_SYMBOL vmlinux 0xffc33beb skb_queue_head -EXPORT_SYMBOL vmlinux 0xffc907dd kmem_cache_shrink EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffdb0a56 netdev_state_change +EXPORT_SYMBOL vmlinux 0xffdafd21 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xffe5fbf1 dev_uc_init EXPORT_SYMBOL vmlinux 0xffe690fd udp_table -EXPORT_SYMBOL vmlinux 0xffe9a166 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xffed99ae ethtool_get_phc_vclocks EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfffbe50d bpf_prog_get_type_path -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0319083b kvm_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x02d3d698 kvmppc_kvm_pv EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x03af78ee kvmppc_xics_set_mapped EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0434e162 kvmppc_core_pending_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x06463a7d kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x06fb9a54 kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x07aeae95 kvmppc_emulate_mmio -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0b54a116 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x053570fd kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0566e6d1 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0800a981 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x087d5b43 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0cc95182 kvm_vcpu_is_visible_gfn EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0cd291fa kvmppc_xive_clr_mapped -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0d162359 gfn_to_hva -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0d61b67d kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0e168494 kvm_get_kvm EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0f06f6aa kvmppc_core_prepare_to_enter -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0fe77dd7 kvmppc_handle_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x123d9ba7 kvm_map_gfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x14d76553 kvm_unmap_gfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1ad74fb7 kvmppc_st -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1d67e6f5 kvmppc_ld -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x208a881c kvmppc_pr_ops -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x22aa6fb0 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x24733dd5 kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2543c672 kvm_vcpu_destroy +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x14e3c9de kvmppc_handle_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1fc9f903 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x21264f07 kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2202f878 kvm_write_guest EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x289f9dfb file_is_kvm -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2a1efa18 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2dad7633 kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2e03fc24 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2e767b10 gfn_to_pfn_prot EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2f33b926 kvmppc_set_msr -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x300a2d53 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3630ba25 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x39ad3351 kvm_vcpu_gfn_to_page EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3c507a28 kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3ef18efa mark_page_dirty EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x41291964 kvmppc_core_queue_data_storage -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x412a737d __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x42c488c8 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4477cda0 kvm_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x448ce13b kvmppc_pr_ops EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x44c100ab __SCK__tp_func_kvm_ppc_instr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x467cd8bf kvm_vcpu_destroy EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4b6b871c kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x48822567 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4aec103a kvm_vcpu_gfn_to_pfn_atomic EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4be2c09e kvmppc_h_put_tce_indirect +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4c6aa5c7 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4d74281e kvm_get_kvm_safe EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4e768ea0 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4fdc38d0 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x50f0f6a9 kvmppc_ld +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x53dc392b kvm_vcpu_gfn_to_hva EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x541d37b9 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x55129bf6 kvm_vcpu_map EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x56213ad3 kvmppc_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x58737c64 gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x58ba7008 kvm_read_guest_cached EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x59e640c0 halt_poll_ns EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5c3b69c1 kvmppc_gpa_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5ef22184 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5f389e37 kvmppc_handle_load EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x62a92ed4 kvmppc_kvm_pv -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x62fee471 kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x657f069d kvm_read_guest_page EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x65802fa3 kvmppc_core_queue_inst_storage 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 0x66b2d80b kvm_read_guest EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6e0f3b8b kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x68f68774 file_is_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6b71a3e2 kvm_map_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6ba11421 kvm_debugfs_dir EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x77744828 kvmppc_h_logical_ci_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x79290e38 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x795e06ec kvm_vcpu_mark_page_dirty EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7afe324e halt_poll_ns_grow EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7d3b3e08 __traceiter_kvm_ppc_instr -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7d99eefe kvmppc_prepare_to_enter -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7ec14d7d kvm_vcpu_write_guest_page EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7efc9a9f gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x86912a4c kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x804a28e2 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x84747e17 kvm_vcpu_read_guest_page EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x878907d1 kvmppc_h_put_tce -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8d6cab16 kvmppc_sanity_check -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8e008f3c kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x93a966b9 kvm_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8b2c7184 kvmppc_hv_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8b67d172 kvmppc_sanity_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x90f0ec9a gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x921f7a1d kvm_unmap_gfn EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x95128d4a kvmppc_xive_push_vcpu -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x96530093 kvm_clear_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x96a145db kvm_release_page_clean EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x99f2ef9c kvmppc_core_queue_program +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9e0457d6 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9fb83609 vcpu_load EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa323f52b kvmppc_rtas_hcall -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa3ec30d7 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa565484e kvm_write_guest_cached EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa59f2a6a kvmppc_h_stuff_tce EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa6533810 kvmppc_core_queue_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xaa8b85a2 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa6c993a3 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa7ed537a kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa8f2ad52 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xaae5de89 kvm_put_kvm_no_destroy EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab59d373 kvmppc_free_lpid EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xae065ae2 kvmppc_xics_rm_complete -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xaf2700ee gfn_to_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb218fcca vcpu_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb3f3b4d6 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xaf594ab0 kvmppc_st +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb2e93eab kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb315dd0b kvm_set_memory_region EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb477dfc6 kvmppc_xive_set_mapped -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbaa5b72a kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbcfb25de vcpu_put -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbd36d211 kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbf9aca3d gfn_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc20140bc kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc20a1488 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb8c7e192 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbd3301a5 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc4c33669 kvm_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc6a2f3e7 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc6a4fb1f kvm_vcpu_yield_to EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc70e4b59 kvmppc_claim_lpid EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc733c905 kvmppc_core_dequeue_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc8b2287f kvm_get_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc7645ea1 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc9d4aa3c mark_page_dirty EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcafc389e kvmppc_load_last_inst EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcd336d8c kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcdbe22a9 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd0aba26f kvm_get_dirty_log EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd1cc7f73 kvmppc_xive_pull_vcpu -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd4cbaaa3 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd5e07f77 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd22e1b18 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd245deef __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd68fbd80 kvm_read_guest_offset_cached EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd8d5e0ef __gfn_to_pfn_memslot EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd9faa363 kvmppc_xive_xics_hcall EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xda16d763 kvmppc_core_queue_machine_check -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xda5f3962 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdb13c0af kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdcad6bf1 kvm_is_visible_gfn EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdcc5a837 kvmppc_xive_rearm_escalation -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdd7a5d67 kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdeb18bcd kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe202cb46 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xddeef4bc kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdff29113 kvm_make_all_cpus_request EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe299e832 kvmppc_xics_clr_mapped -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe5879985 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe6d9b55d mark_page_dirty_in_slot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xea2a432d gfn_to_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xeaa75eea kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xef2a18a3 kvmppc_hv_ops -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf331f1d3 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4a0bf56 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe2ecc373 kvm_read_guest_page EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4da3546 kvmppc_init_lpid EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf5491375 kvmppc_book3s_queue_irqprio -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf6fb20d6 kvmppc_handle_store -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfc1475c0 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf7301e20 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf8301ce3 vcpu_put +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfb3aedbc kvm_get_running_vcpu EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfcf40dbd kvmppc_h_logical_ci_store -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xff62be7c kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfde58194 kvm_io_bus_write EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0x2f5a1996 kvmppc_emulate_instruction -EXPORT_SYMBOL_GPL crypto/af_alg 0x02f36ec6 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x0b95109a af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x17dec852 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x20963b82 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x29e0b1b3 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x317ecf95 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x5e742c22 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x629fb638 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x649e98e3 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x77d343b9 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x7f3e88f8 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0x8ca3194c af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x99796c44 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xa5be0ee4 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xaf8b74f5 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xbb0cfdfd af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0xc2bdb116 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xefc02952 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x0343a116 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x27bb302d af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x58871176 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x5b0e2802 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x648875a4 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x84598394 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x8be06140 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x95012d5a af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xa523dfd0 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xaa995738 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xac848c04 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xb20e462f af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xbc35756b af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xcc2350bb af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xd0fb9b9d af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xdad6f052 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xddc294ce af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xfb5d7e96 af_alg_poll EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x6efb1395 asym_tpm_subtype EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x62b2142e async_memcpy @@ -11457,32 +11349,32 @@ 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 0x10c6ad5c cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x23b88610 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x3515e772 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x3b4c0266 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x551e44fa cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x6d1e271e cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x855f04d8 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x93a69631 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xaf539529 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xb26801cf cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xce5200df cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xe71e1df4 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xec72f85d cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0c8a6b6b crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0d0c4ab2 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x10591bc4 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4f01bc0e crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5693586f crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x76152248 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x87f42915 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x908e18c4 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9c9c5b6e crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xde6a5af6 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe24863b1 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe322c720 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xfcb696b5 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/cryptd 0x059e1e05 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x2160af64 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x257f0d30 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x28fe6fad cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x82fb38ec cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x851fa301 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x8fc153ac cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x9832a803 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xafe7aba2 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb7f81975 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xbdcb7b1f cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xe1df6a4b cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xf8dd7cb4 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x223597c9 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x314e7310 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x477b20a2 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4aa7a578 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4cc01753 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5a8f8c80 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6bbd9310 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8c74048a crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8f42127b crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xaec5aa00 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb757629c crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xeba1106c crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xec80be09 crypto_finalize_aead_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 @@ -11524,46 +11416,46 @@ 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 0xf5b5e959 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x01fc0a37 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0bc4b8cc ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0c012556 ahci_fill_cmd_slot EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1386f9dc ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1b8eece4 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x23c73c62 ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x35de50b2 ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3627c081 ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4f158286 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6a59bdbb ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x71f5f784 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8b9befa5 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa0577a55 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbca483f4 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbe1bb08c ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xca760ed9 ahci_do_hardreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd1520bad ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdd0aca3a ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdd0ee22f ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x15606afb ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1a7a42da ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1d3ae1d5 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x27612be1 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2abf7056 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x40dd5c86 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x44585bc5 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x54d3327e ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5784b9a8 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5dfee2c6 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6a033754 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x965cd6f6 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa53fa2ff ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa7017631 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaa9cacc6 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xacaabad5 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc4baa310 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd4071fa1 ahci_do_hardreset EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdf523eb1 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea269e54 ahci_handle_port_intr EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf193bf0f ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf3b5c389 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfc281768 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfd964bd3 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xef1f1846 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfce309de ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfe131b0c ahci_pmp_retry_srst_ops EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0fca53bc ahci_platform_suspend_host EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1071759d ahci_platform_enable_resources EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1d8c1163 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x25fcdcef ahci_platform_init_host EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x44b282a0 ahci_platform_resume_host EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x45fcd48d ahci_platform_disable_regulators EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4b285af9 ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5707f3ad ahci_platform_get_resources EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x676c1f73 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x71ff323d ahci_platform_get_resources EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7603c4c9 ahci_platform_enable_regulators EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9e334fa4 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa0add0bf ahci_platform_shutdown EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa33538ba ahci_platform_disable_clks EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd9d536aa ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe58cb6de ahci_platform_init_host EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xec7cd4f0 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf3d3713a ahci_platform_shutdown EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xff94f29b ahci_platform_ops EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xee4be978 __pata_platform_probe EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xb9ee50be sis_info133_for_sata @@ -11611,81 +11503,81 @@ EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x6bed40a6 __devm_regmap_init EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xef87add6 __regmap_init_spmi_ext EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x5c6a6d9e __regmap_init_w1 EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x965087ef __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x00dfc565 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x149e4843 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3077ba9c __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4ab866d6 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x50ef144d bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x595911dd bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x61b3e8e2 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x62bf6c54 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6780b0a1 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x69a76d75 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x71048d0f bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x73b00e5e bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x850707fa bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x87d26c62 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x97dde504 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9aa28ca5 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xac2ea5f4 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd1b0ce67 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd6828af7 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd6b5875f bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdbecee48 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xee177d5a bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf31074ab bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfc11ecdd bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x18a2f5f0 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x20151865 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6f8ee8e7 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x854edbd5 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x857792b1 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x94b424e1 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb71a5a96 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf6ef0d19 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x108952bb btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x148b1b08 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4b9e1f36 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x578bb29f btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x64b0ffb8 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x75da92ae btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb160916d btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb536a7f6 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb7fae27f btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb90c4967 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc75cac4a btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd80a39a7 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdb9e3714 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe7388132 btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfd6276a3 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfddd28a7 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x02065f47 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x289af7eb btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x47826e1a btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5bed4dc9 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x66e5ae51 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa6548ab1 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb1892110 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc3c13f1a btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd053bf99 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdf658f10 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe121196d btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x41103f29 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x69725681 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xa850a061 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xcb7edca8 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd5fc72ac qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0af5054d btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x14d6ce8e btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x2628b3c4 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x54d46154 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x91db1f9c btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1fc83831 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2e26bd2f bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x35cf3011 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3c1e0600 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3e13443e bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4042cdbe bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4611a4c8 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5072c15d bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x64d9f8de bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x68d81b0a bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6a1c2770 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6b1ef333 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7c1c9efe bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x805f82be bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x86bb15f8 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x90632873 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x93a13a5c bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa2bcdd7f bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xab573d38 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xab8ee114 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc5027dc3 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc7c0d236 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd8599249 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdefee7d4 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x323b63c2 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x45819227 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x51059a8a btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7809e8cb btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7f04d33e btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9de15ffc btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb78109f1 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd221d892 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2b5c6b7c btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x39d957f0 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3b4117d6 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3e7d3f9e btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x40cc88d1 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x40f65126 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x42d6bbb2 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4c729976 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5051bb8c btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5a736d4c btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5cfc4b14 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6664c535 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x84adf7fd btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x95242789 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbc5608d5 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfc93d160 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0115f2ef btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x159abaf5 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2e993a2d btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5536f74c btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x578ac586 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x89aac29e btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9a34b1eb btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xadff138c btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb91b09f8 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd277c492 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdc8cf9e8 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x3954b333 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x62d6717b qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x780923c4 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x859f05c6 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc3360586 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1dd7a3e4 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9473f2b5 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf5846e2 btrtl_set_quirks EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd79de89c btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x5972d33b hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x794d36e8 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xa848fa0d hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xfe580967 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc72953b2 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xeefedf44 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf0184214 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x00e8405f hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7e372531 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xa2d20aba h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xbc5faca5 hci_uart_tx_wakeup EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0013add2 mhi_prepare_for_transfer EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x006eb6b4 mhi_get_mhi_state EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0ba7e843 mhi_download_rddm_image @@ -11889,24 +11781,24 @@ EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x54d2da8b do_dw_dma_enable EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6d32bfc5 do_dw_dma_disable EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x98d8524c dw_dma_filter EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9fb248a3 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x104fe04f fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x139542de fsl_edma_disable_request EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1748c1d8 fsl_edma_alloc_chan_resources EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x19b83595 fsl_edma_terminate_all EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3f09e45f fsl_edma_pause EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4d35e4c6 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x52ab0fe6 fsl_edma_disable_request EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x54fb1c54 fsl_edma_resume EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5596dee1 fsl_edma_prep_slave_sg EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5ae46d7d fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5ca292b7 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6f0c3401 fsl_edma_chan_mux EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x72f4e935 fsl_edma_prep_dma_cyclic EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa3181200 fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbeb21290 fsl_edma_xfer_desc EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbec7534f fsl_edma_issue_pending EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc53036bb fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xdb77cee0 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfbd5dd39 fsl_edma_setup_regs EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfbdc8aa2 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xca52684a hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xce085047 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x6b269c7d hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xe5503bfe hidma_mgmt_setup EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x1cb01be2 vchan_find_desc EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x4c44d5a4 vchan_tx_desc_free EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x5f44da34 vchan_tx_submit @@ -11916,26 +11808,26 @@ EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xee2a8b3e alt_pr_register EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x053a6f81 dfl_fpga_enum_info_add_dfl EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x07b55293 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x14566e9a dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1deec29e dfl_fpga_port_ops_get EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x238ec53d dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x25011ef0 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x29acfefc dfl_fpga_dev_ops_register EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2f467065 dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2f49b270 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2fb4fe62 dfl_fpga_set_irq_triggers EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x379b4718 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x44b08fbe dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4b7f3b50 dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x656760cb __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6c48ae11 dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x794b0464 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5e35c5ae dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6ac0bbf1 __dfl_fpga_cdev_find_port EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7bdc7da2 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x806cb90c dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8fcfa96b dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fa69c18 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x81d84dbd dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x86135414 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x89d9ec70 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8e540dbb dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8ec50455 dfl_fpga_dev_feature_init EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa46a5eb5 dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc2437d5c dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc9f462ae dfl_fpga_port_ops_put EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd1736a02 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd3174dce dfl_fpga_set_irq_triggers EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe5618b4e dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe7f74561 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf37b4407 dfl_fpga_port_ops_put EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf58d61e1 dfl_fpga_cdev_release_port EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x07eef6a5 fpga_bridge_enable @@ -11973,21 +11865,21 @@ EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6983be1d devm_fpga_region_create EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xbff500d3 fpga_region_free EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xdedbf13d fpga_region_create EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe157dfcf fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x11107dbb fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0fb0df2c fsi_device_read EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3babf59a fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x44a8a803 fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x46e0773d fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x57f0461b fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x41d3873d fsi_get_new_minor EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5e813d29 fsi_master_rescan -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x72fb430c fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x68e13fd8 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x6cf05b22 fsi_device_write EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x9f3cb26a fsi_device_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa828586f fsi_device_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xba020d13 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x80d102c4 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x83a8261d fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x894ae21c fsi_driver_unregister EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xcfd7d2cb fsi_cdev_type EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd962aa43 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xfc7c0169 fsi_master_rescan EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x98dc24a7 fsi_occ_submit EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x7143e6dd sbefifo_submit EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xedd6fbd2 sbefifo_parse_status @@ -12014,6 +11906,7 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcab7b215 analog EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf5a050d7 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 0x0977a481 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 @@ -12021,13 +11914,12 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_se EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4d67b6e5 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 0x6fa8f508 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 0x8c56146d dw_hdmi_set_high_tmds_clock_ratio 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 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xc8c4884a dw_hdmi_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xcb3fd163 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 @@ -12094,7 +11986,6 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x15722275 s6e63m EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xd77340e2 s6e63m0_probe EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x06525554 gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0ae9cc1a greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x116cd86f gb_connection_create_flags EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x12c340d5 gb_operation_get EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add @@ -12103,8 +11994,8 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x164d0786 gb_connection_create_offlo EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x16e0bcbe gb_connection_latency_tag_enable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1785f1fc gb_connection_disable_forced EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1c6f5f0b gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2297800a greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2a156ba2 __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x318fc3c1 greybus_register_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3bbba27a __traceiter_gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x45fd1314 gb_connection_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5284d35e gb_hd_put @@ -12131,6 +12022,7 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x98fb89cb __traceiter_gb_message_sub EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa5a2a018 gb_connection_enable_tx EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae0d4fce gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb3f56812 greybus_register_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb9146e3c __traceiter_gb_hd_del EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbc015d5f gb_operation_sync_timeout EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc1bb015f gb_hd_shutdown @@ -12148,80 +12040,80 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeb0424ae __traceiter_gb_hd_release EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf5f25dff gb_operation_get_payload_size_max EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xff097a70 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0045c27b hid_hw_close EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x072cecb8 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x085f4420 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1121b542 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x137b6f56 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x190ceca2 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05b5b8cf hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0b5355db hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d8e07ee hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x150a94b8 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x188c2055 hid_input_report EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1a2a4894 hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1abe9a60 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1d5c5292 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x24327305 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x311e97d9 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x354456c2 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b536bbd hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3daa3088 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x421f81df hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x48f2d938 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4c8ddd25 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5165b800 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x51d09f69 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x52f06628 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x62d47ce4 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6b9a384e hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7b8c4095 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1f10b8d9 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x21e1be21 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x25a0a5e0 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2d37398e hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x33105ba1 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x35509e8f __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3f455956 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x52175e92 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x54e140e0 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5be9909c hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5d01091a hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5ef2c9ae hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x60374f98 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x648e21e4 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x65cb6203 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6851bb48 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x73167647 __hid_request EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c4c95e6 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa1b252b4 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa41eacd8 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xabe16848 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb1a3a7f5 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc464746 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcedfa588 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf13ae85 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd045d5c0 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd060bcd9 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd8e8fb0d hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdb4b1dff hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe2d476dc hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe45ac65b hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe76f06b6 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xea2fedb5 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xed7a64fe hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xee0f5ab6 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x941167a6 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9eb3c309 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaba5a11c hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb490cc7c hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb52e1722 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc7761c0 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbe64da2c hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc3f5aa19 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc6990514 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc967771b hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd5b7da73 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd772ad74 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xddb3a51f hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xead8e3d9 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xecffb95a hidinput_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid 0xf28253e4 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf502b0ba hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf5a6faa3 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf6881f43 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf4bb3918 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf600b074 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf714356a hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf8e061d9 hid_report_raw_event EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb09ad0b hidinput_get_led_field EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3d8eadb1 roccat_connect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xb2b64114 roccat_connect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x033ac121 roccat_common2_receive EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3c9b71a2 roccat_common2_device_init_struct EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x636bc979 roccat_common2_sysfs_write EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8045bba1 roccat_common2_send_with_status EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8418df61 roccat_common2_sysfs_read EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8f872e88 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1c4bf800 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3f65f6c6 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x593df727 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6121d712 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb3e3972d sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc81927de sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdcc4e2fe sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe5e62b2f sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xea474191 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0a7b6595 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x12cb6458 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1cffda02 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4b66125f sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa89b19de sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc2131033 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc4d844e7 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdff2a653 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfa287667 sensor_hub_device_close EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x012c0d31 i2c_hid_core_shutdown EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x14d439a8 i2c_hid_core_remove EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x3daf9b90 i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xb15dde03 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xaed47ef5 i2c_hid_ll_driver EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xce33971e i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/uhid 0x1c39d76c uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x57e7800f usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x887e5e38 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x0e0d4888 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x73f20316 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x9629b55f hiddev_hid_event EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x14b6d5b3 hsi_alloc_controller EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x39d07834 hsi_unregister_controller EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list @@ -12384,6 +12276,7 @@ EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0064cadd of_iio_channel_get_by_nam EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x10b85504 iio_read_channel_offset EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1196c260 iio_write_channel_ext_info EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1e9c6954 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1f2464a1 iio_device_get_current_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2083953f iio_read_avail_channel_attribute EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2d2a30be iio_write_channel_raw @@ -12410,9 +12303,11 @@ EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7b4660be iio_channel_get EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7bdf7140 iio_read_max_channel_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7dab2f0d iio_map_array_unregister EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x82179267 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8ebf5fd9 iio_device_release_buffer_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9aa274ab iio_read_channel_average_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa1c1d35e __devm_iio_trigger_register EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa295e3f2 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa38386bd iio_buffer_enabled EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa6f3d9ce iio_device_id EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa7092ddf iio_channel_release EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0ed4825 iio_alloc_pollfunc @@ -12423,6 +12318,7 @@ EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xccc0f443 devm_of_iio_channel_get_b EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd7b4273b iio_enum_read EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd9814107 iio_validate_scan_mask_onehot EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdd91a7c6 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xde5bebbc iio_device_claim_buffer_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe2ec61ae iio_get_debugfs_dentry EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe500564f iio_read_channel_ext_info EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xec379f59 devm_iio_trigger_alloc @@ -12441,18 +12337,18 @@ EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x94a5112a zpa2326_probe EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xc2f4617b zpa2326_pm_ops EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xe3c8fc0c zpa2326_isreg_precious EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x07c989c9 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x11b6d51b rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x149340d5 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1e4374e3 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x26f093df rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6dd51dfd rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x930e6682 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbd63f0df rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd4aa72cd rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdca2581d rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe8314bd2 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xeb490997 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0325f47e rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2210b905 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x34452a40 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x71eb8a58 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x769fb3c0 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7af87762 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7f8fab4a rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x987c394f rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbe804027 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xde20a7a4 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xeae173a0 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf3732559 rtrs_post_recv_empty EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x51e01e4e input_ff_create_memless EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xff64fbf8 matrix_keypad_parse_properties EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x355cd695 adxl34x_probe @@ -12483,18 +12379,18 @@ EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x048eabbc tsc200x_rem EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0d1c1925 tsc200x_pm_ops EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x19b06d8d tsc200x_regmap_config EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x38d8dfaa tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0327ec5f wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2126165e wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2e9b6dd7 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4d9a31e7 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4fca228a wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5de4ac74 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x620e2ec8 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x628b430e wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6aea6888 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7f355e54 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xae214390 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd7804d31 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x204db08e wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2c215d6f wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3b567e5d wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4f9c76e0 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x54060382 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6ef2b600 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x85121e46 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8db42863 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x98ac031c wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbad15042 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbde8e768 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdc6ce7a7 wm97xx_config_gpio 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 @@ -12557,84 +12453,84 @@ EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xf6c37056 wf_get_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 0x0b26b0db __traceiter_bcache_bypass_sequential 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 0x16ea7222 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17294e93 __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x191717af __tracepoint_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1934a9a9 __tracepoint_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b8ddc0b __traceiter_bcache_btree_node_compact 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 0x2152a8d2 __traceiter_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x27048515 __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x284a6bff __tracepoint_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2909bc5d __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x292ece55 __traceiter_bcache_journal_write 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 0x3ce9e80d __traceiter_bcache_gc_end 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 0x48256c97 __traceiter_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a4e3eca __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4b8f2af3 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x50b81255 __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 0x57cd9f84 __traceiter_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b3866a9 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x56398aa2 __traceiter_bcache_btree_node_split 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 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 0x679cfe7c __traceiter_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68da03a1 __traceiter_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x690dd415 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6ddb0c62 __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x70bd3506 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6f25eb56 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x72aa6882 __traceiter_bcache_journal_entry_full 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 0x7aac68fa __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c0b6d8f __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 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 0x970d3ab8 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93bf149d __traceiter_bcache_read 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 0xa0bcd3f0 __traceiter_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa0cc7033 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9efcefd1 __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 0xa39708a0 __traceiter_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa605f4bc __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb02b5c6f __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3f64852 __traceiter_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb453db32 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4ac4d3b __traceiter_bcache_invalidate 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 0xba3591cf __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc268695 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc4bce3b __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc3eb0440 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc4c8239d __traceiter_bcache_alloc_fail 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 0xca9258c0 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcb6f3cd1 __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd44d88aa __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb34d7ac __traceiter_bcache_btree_node_alloc 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 0xea61b659 __traceiter_bcache_write 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 @@ -12642,11 +12538,11 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee55d047 __tracepoint_bcache_journ 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 0xfaa47d7c __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf984029d __traceiter_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb3d6c67 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd087e77 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc35bfb2 __traceiter_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 0xff0701f6 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xffdfd9dd __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0ba1a5d4 dm_cell_put_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1f18cc52 dm_cell_get_v2 @@ -12896,11 +12792,9 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_te 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 0x024ee472 __traceiter_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x02fcbb02 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 0x09c6c6a2 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x20a90b81 __traceiter_vb2_qbuf 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 0x43daa6f5 vb2_core_reqbufs @@ -12911,21 +12805,23 @@ EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __ EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x641f1697 vb2_wait_for_all_buffers EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6617850d vb2_plane_vaddr EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6c223718 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7e711346 __traceiter_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fecc271 vb2_thread_start EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x83281399 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x86a1c921 __traceiter_vb2_buf_queue EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9acce732 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9df84bdb __traceiter_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa6260276 vb2_core_poll EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa837dbff vb2_discard_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa85e1129 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 0xb8ec7886 vb2_request_object_is_buffer EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbe5af479 __traceiter_vb2_buf_queue EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc03083c2 vb2_core_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc61ad15e vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc695f243 __traceiter_vb2_buf_done 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 0xc94d64cd vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd39d70e4 __traceiter_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd7e56b1c vb2_mmap EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdf98c870 vb2_request_buffer_cnt EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdfeaa701 vb2_thread_stop @@ -12976,12 +12872,107 @@ EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xa513b4dd dvb_create_media_g EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xbe4c8135 dvb_module_release EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xcdd1aff4 dvb_module_probe EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x55953b1f as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0xd4b33b9c ascot2e_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0xd57b3efc atbm8830_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0x5a785ef5 au8522_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0x1e394738 bcm3510_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0x0eaa03f0 cx22700_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0xaa9ac07a cx22702_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0xaaa4945f cx24110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0xfc05083b cx24113_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0xf749afa0 cx24116_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x41d41058 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0xfedbc353 cx24120_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0x176fff0c cx24123_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0x67a97438 cxd2820r_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x04ec7ae1 cxd2841er_attach_t_c +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0xbf303636 cxd2841er_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0x83c68a55 cxd2880_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0x3e7354e7 dib0070_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x70ad03f7 dib0090_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0xea2bbcd7 dib0090_fw_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0x893531dd dib3000mb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0xd7b81a9c dib3000mc_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0x71fdb05f dib7000m_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0xf19b91d1 dib7000p_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0x2085892c dib8000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0xdc079e54 dib9000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xff15088a drx39xxj_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0x2ace875f drxd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0x37964d07 drxk_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0x8d2cd3db ds3000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0x7bbef371 dvb_pll_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0xc0c1214c ec100_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x62fe79a2 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x110f6d7c helene_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x51ab8561 helene_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0x5130ccd4 horus3a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0x2c169d04 isl6405_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0xa13c4111 isl6421_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0x84fb45e7 isl6423_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0x1150d05c itd1000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0x213bbddc ix2505v_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0x7cef4a43 l64781_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0x23eb9d4a lg2160_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0xff6d97e2 lgdt3305_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0x4b3fe432 lgdt3306a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0xb32d6841 lgdt330x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0x36b03861 lgs8gxx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0xe3c52690 lnbh25_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x8d65c811 lnbh24_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0xb54251c1 lnbp21_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0x4811de15 lnbp22_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0x8f57da50 m88ds3103_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0x30281b23 m88rs2000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0xb426e169 mb86a16_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0xdb2ffee6 mb86a20s_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0x07aa5c5e mt312_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0xa149381a mt352_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x1800cc5f mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0x22afedc5 nxt200x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0x89fea1ba nxt6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0xd4232513 or51132_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0x45d1a32e or51211_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0x8857b461 s5h1409_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0x8b59352c s5h1411_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0xa7213290 s5h1420_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0x055b79b3 s5h1432_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0xfb8d675a s921_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0xabd79daa si21xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0xd2f341d6 sp887x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0x461b7444 stb0899_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0x1fed881d stb6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0x73716690 stb6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0xd0f3e7aa stv0288_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0x272c3949 stv0297_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0xe9d489da stv0299_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x2d2e1def stv0367cab_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x5e5a4e8a stv0367ddb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xf992a8ad stv0367ter_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0xffc362d2 stv0900_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0x30e4679f stv090x_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x282f8cf9 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0x31fefb26 stv6110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0xd722b7a5 stv6110x_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x66737dec stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0x89b6e22b tda10021_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0x37022ea0 tda10023_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0xe4f70822 tda10048_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x3ad27e35 tda10045_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0xceb1a86f tda10046_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0xceb2cc5d tda10086_attach EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x51345c22 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0x30edb371 tda665x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0x11dbdb21 tda8083_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0x58a803e6 tda8261_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0x843bed70 tda826x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0xc54cd72b ts2020_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0xb9d77d78 tua6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0xb7a3f240 ves1820_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0x93f40084 ves1x93_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0x2621e184 zl10036_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0x55d9aad3 zl10039_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0xc1ffcb8e zl10353_attach EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x625c25dc aptina_pll_calculate EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x80a791fe ccs_pll_calculate EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5dcdbea2 max9271_set_deserializer_address @@ -13045,53 +13036,56 @@ EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf098e156 media_request_get_by_fd EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf42640ea media_request_object_unbind EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfd81593a media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x98d844db cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0463a72a mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x077069f7 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x13328a3f mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x445d824b mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4db6a3b6 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x579ad701 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5a810f0d mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5ec08fa8 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x60ecd3d4 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x62e0ec14 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7bd8a9b2 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x842c539f mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9583f22a mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb66bdf90 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb80c3023 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbc4db086 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd85ddc58 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdf8da3e8 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfb93f010 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1d3e0bae saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x206ca0fc saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2238ea87 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x25db05a7 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2ebc1120 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3b3d15cf saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4573ede3 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x65b783d9 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x68e5ce49 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6915c304 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6bb39829 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6e9f616b saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6f9bc2e8 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x808d83d7 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x811a3032 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd7e54e55 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdbdfeb04 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe888b747 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfb45a6b3 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x07ef9757 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0ec5b0bf ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x28a965b5 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x32436668 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0xcf40c762 dst_attach +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0xed0122b3 dst_ca_attach +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x078df1dc cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xfeccff27 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x035f171d mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0c928f91 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1a9142d4 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x36cb2085 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x39ae03e2 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3cfbed83 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4acdacb0 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x50796f13 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5565a06a mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x63d71d09 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6dddcfba mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x74107842 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x98e2b35c mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb039d545 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc29badb7 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc7511873 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe24b3718 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe6e03084 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf135dfad mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x01a7ccf4 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0416cd08 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0df975c1 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0ff19e21 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2b5e95b1 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2c17138d saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3908e49b saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x39cf79ef saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x403291c3 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4b606d65 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5adaa573 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x69681477 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6ced7ffc saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9742e72d saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb7576b78 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcdebca8d saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd14be2e3 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdccbb9b4 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf86030e8 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x51255158 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5ce33bd1 ttpci_budget_init_hooks EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7c706517 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xba483f33 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdc705c0f ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7e13566f ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xadad3323 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb3b92459 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc503b066 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf8a9cf7d ttpci_budget_deinit EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x38720c85 mccic_register EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x3c79a92c mccic_irq EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x5caa36b4 mccic_shutdown @@ -13139,10 +13133,21 @@ EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbef1458e rc_map_get EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc4da914a rc_allocate_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd7875151 rc_map_unregister EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe7dfa290 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0x5c410714 fc0011_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0x92e71e15 fc0012_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0x4e731470 fc0013_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0xc4a000f4 max2165_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0x5d6a1b65 mc44s803_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0x4f5f1e32 mt2060_attach EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xf45ad2b6 mt2063_attach EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xfa8b0d44 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0xc0907f9b mt2131_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0x79f7fc52 mt2266_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0xfcade6d3 mxl5005s_attach EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x6ee2a6fa mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0x545d3922 qt1010_attach EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x6301df76 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0xdcf7d6e7 tda18218_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x1d13bdee tda18271_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x73fbb30c tda827x_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x6e9d46b5 tda829x_attach @@ -13153,6 +13158,8 @@ EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xfa436b3f tea5761_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x12f06c00 tea5767_autodetection EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xc7845009 tea5767_attach EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x42de3dc7 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0xc88268a9 xc4000_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0x3fb6d284 xc5000_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x05d2c083 cx231xx_init_bulk EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x114038c4 cx231xx_get_i2c_adap @@ -13174,8 +13181,8 @@ EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd8f6c99b cx231xx_send_gpi EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf067494f cx231xx_init_isoc EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfadaf171 cx231xx_set_alt_setting EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfb82e2bf cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x25417aae mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x6c7c28af mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x5b1cb43b mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x69c08e7a mxl111sf_tuner_attach EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x079d76c5 em28xx_init_usb_xfer EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1b23ef4c em28xx_setup_xc3028 EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x24b57b09 em28xx_alloc_urbs @@ -13319,11 +13326,10 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xcfea9531 videobuf_d EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x5a7d33b1 videobuf_vmalloc_free EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x5b1cb3cc videobuf_queue_vmalloc_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x8269e146 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03928d09 __traceiter_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03a7ce33 v4l2_device_unregister_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x06da292e v4l_disable_media_source EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07ae7c40 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x08b504b8 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c4bed73 __traceiter_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d603d70 v4l2_i2c_subdev_set_name EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0dcd176c v4l2_subdev_notify_event EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0f0292fd v4l2_fh_is_singular @@ -13333,7 +13339,6 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1fc47d42 v4l2_event_wake_a EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x23058b1f v4l2_compat_ioctl32 EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x277d78b3 v4l2_pipeline_pm_get EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x27c788f4 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2868b23e __traceiter_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2c639336 v4l2_i2c_new_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32dd157d __v4l2_ctrl_handler_setup @@ -13348,9 +13353,11 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x554b6dba v4l2_pipeline_lin EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5aa5f143 v4l_vb2q_enable_media_source EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61bf3de3 v4l2_event_dequeue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x62dd40fb v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x635d77de __traceiter_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6651d566 v4l2_create_fwnode_links EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e3a739b __traceiter_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f3ab9e7 v4l2_fh_add EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x75d02202 v4l2_event_queue_fh @@ -13360,7 +13367,6 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7943de66 v4l2_device_disco EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7d617c14 v4l2_device_register EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x82580909 v4l2_i2c_subdev_addr EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8ab76c3c v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8f466cd8 __traceiter_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9266c43f v4l2_src_change_event_subdev_subscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x96541427 v4l2_pipeline_pm_put EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9c78279a v4l2_spi_subdev_init @@ -13377,6 +13383,7 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb10dd4fa v4l2_device_regis EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb92f0133 v4l2_get_link_freq EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe109d3e v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc0b16ba0 __traceiter_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc742d6e8 __tracepoint_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8c62ca0 v4l2_spi_new_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt @@ -13421,8 +13428,8 @@ EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd9649a68 arizona_dev_init EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdbd05437 cs47l24_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xebdc6162 arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x33a39c9b atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xb32a08ac atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x45495ecd atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xe622fe67 atc260x_device_probe EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3ea5f04c da9150_read_qif EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4ef23a41 da9150_bulk_write EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8817d4f8 da9150_reg_write @@ -13491,62 +13498,62 @@ EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd7a78a99 mc13xxx_common_init EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf3c9cbec mc13xxx_variant_mc13892 EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xfd55c79f mc13xxx_adc_do_conversion EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x222918ce pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3c1e5459 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x69eace31 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7d5ecdea pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8570f36f pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8596ddc2 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x913ee493 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xabfd501c pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb397c2aa pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc1385f80 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe2942586 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x67da9338 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xd9cdf191 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x534dcf58 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa7ae89ec pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc4d3a942 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xde760108 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe1df6548 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1851a7f5 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x24c14c76 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2fdd0abe pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x402f5821 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4654fe4e pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7c4c0901 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc82511a7 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd922bee0 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd9eec002 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe0ccb847 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf815a1b5 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x3f82abe4 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x4eb42318 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x59087797 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x653d255d pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7645d91c pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8d2b49d2 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf1518c63 pcf50633_gpio_invert_get EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x33d30ca5 devm_rave_sp_register_event_notifier EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d4a7b02 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c357772 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1cef04eb si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x27cd03d9 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2867ed46 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c6560cb si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x30336b78 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x32382c77 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x37542339 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x378b881d si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x45f7f36e si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4b1e4ac2 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6ee3cd29 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x73e9f917 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x75e1be1c si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x77d38f2a si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x78add5d5 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8ab22baf si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9f89fda1 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa0953f02 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa9e9e9d7 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaa21ca25 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xab9aa744 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xafee4c9d si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb3c185d9 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb7632934 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc2fd9d62 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc9e7fdc4 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb4150a6 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xddec9af7 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdfec87c4 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe1a1f14f si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe55f2af1 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf0437d07 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x01e7eebb si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0ca96116 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0cab8572 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2033c295 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24834776 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x25d1ad4d si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3906bc41 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x45290865 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4a0d2328 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4e1e1857 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4fe883a3 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5723f75f si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a14ca62 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x65a53f85 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6be0b97a si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7400406c devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8b35fb3f si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x946a8bff si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9c15119f si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9d250fe3 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xacd47936 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xadd95e72 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb0adc6aa si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb659787e si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb7cb3bed si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb987735e si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb557e3d si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd39bde02 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdf00b81b si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe5c95873 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe9651aa7 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf0ee7898 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf3f810c1 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfa5e25ea si476x_core_start EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x30754221 sm501_unit_power EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x5afc064f sm501_misc_control EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x5e53e7e6 sm501_modify_reg @@ -13554,10 +13561,10 @@ EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x82caf8f8 sm501_set_clock EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xbd890f47 sm501_find_clock EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x91cdbea1 stmfx_function_disable EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xbbd04704 stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x5e346ac4 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc6f0706d am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xcb9245eb am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xed82a9b3 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x12c91155 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x876f3e7a am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8a0d0bfc am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xaf7271b3 am335x_tsc_se_adc_done EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x465ed72e tps65218_clear_bits EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xad50e63c tps65218_set_bits EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xae81df77 tps65218_reg_write @@ -13569,30 +13576,30 @@ EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x530f0444 alcor_read8 EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xbafe87b4 alcor_write32 EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xdee5fbee alcor_write32be EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xfa782663 alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0032e203 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0867880f rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x122b0d11 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x20c76f41 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x26ece1a6 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x31776e26 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x38d28a14 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3dcc6801 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3f95f24d rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x40ee250e rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x478e3492 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4d97cf5f rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x598a2249 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x757aa76f rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x79740b57 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7d5ed51f rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9feced81 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa529ac4f rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb30fd5d2 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb49628b6 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd77f1628 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xef5f002e rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf2aaec0e rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf7f051d4 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1942c57d rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1c17bbf3 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x206472a4 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x27a21493 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4fbea8c6 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5fdf3032 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6f951d1c rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x757be908 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8261c3e3 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8a45b193 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x929c2224 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x97dc71d5 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa32c6850 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa4b59534 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xaac29994 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb7f54182 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc0bdfb34 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc50acd9b rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc64bc973 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc88e96c1 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd6244172 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd7dc0bcd rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe38fa17c rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xebdacb70 rtsx_pci_card_exist EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x13dd9fd5 rtsx_usb_read_ppbuf EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1e76f26a rtsx_usb_switch_clock EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3258738a rtsx_usb_add_cmd @@ -13606,47 +13613,47 @@ EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7750a7a1 rtsx_usb_ep0_read EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7d87aefc rtsx_usb_write_register EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8d1cebfc rtsx_usb_get_rsp EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xee4970e9 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x39410470 cb710_set_irq_handler EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x614454f7 cb710_sg_dwiter_read_next_block EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xaa6568d9 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xaac3db77 cb710_set_irq_handler EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb4e956d5 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x0fbcf5c2 cxl_context_events_pending EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x1035b054 cxl_fd_ioctl -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x238a51fb cxl_process_element -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x24b1d5d5 cxl_stop_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x25d34975 cxl_start_work +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x21b5a326 cxl_map_afu_irq EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x29049c8b cxl_fd_mmap EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x2c4e5542 cxllib_handle_fault -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x30e1f2fb cxl_get_priv -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x42377774 cxl_set_driver_ops -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4a1d84a6 cxl_pci_to_cfg_record -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4a9dd601 cxl_get_fd -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4ce7b7b4 cxllib_switch_phb_mode -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5e9ea1f0 cxl_read_adapter_vpd -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x62022aea cxl_fops_get_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7378e1aa cxl_set_priv -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7ca6e067 cxl_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x3356ed7b cxl_allocate_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x3b9444d2 cxl_get_priv +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x471f4f73 cxl_dev_context_init +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4db156f7 cxl_free_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x562d3b53 cxl_unmap_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x755d5b59 cxl_set_master +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x83792db0 cxl_afu_reset +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x86026213 cxl_set_driver_ops EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x883501b4 cxllib_slot_is_supported -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8a7123de cxl_release_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x92f005ad cxl_perst_reloads_same_image -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x937532c6 cxl_afu_reset -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x946221b9 cxllib_set_device_dma +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x918dc4f1 cxllib_get_xsl_config +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9d32765d cxl_get_fd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9e4789c6 cxllib_switch_phb_mode EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9ec41948 cxllib_get_PE_attributes -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xbf750c17 cxl_set_master +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa3bbb3de cxl_psa_map +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa5f1d78e cxl_stop_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xacd0c918 cxl_set_priv +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xade91cdc cxl_release_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb1e5a280 cxl_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb8279b71 cxl_start_context EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xbf9ecbfa cxl_fd_read EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc0674032 cxl_fd_release -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xcff0b2c5 cxl_allocate_afu_irqs -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xdb6561f2 cxl_free_afu_irqs -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xdc0e2e71 cxl_unmap_afu_irq -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe07e5e90 cxl_dev_context_init -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe776e2d8 cxl_pci_to_afu +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xcb051644 cxl_read_adapter_vpd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xcb16210f cxllib_slot_is_supported +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xcef18f81 cxl_context_events_pending +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe2b25c23 cxl_start_work +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe8fff828 cxl_perst_reloads_same_image EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe9630ef5 cxl_fd_poll +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xebefa23e cxl_fops_get_context EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xed605c13 cxl_fd_open -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf4380a4e cxl_start_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf994efda cxllib_get_xsl_config -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xfa9a04de cxl_map_afu_irq -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xfdfe2013 cxl_psa_map +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf4b6900d cxl_pci_to_cfg_record +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf5af70da cxllib_set_device_dma +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf5c0c218 cxl_pci_to_afu +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xfe54ccbf cxl_process_element 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 @@ -13668,14 +13675,14 @@ EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa73d4b6f enclosure_register EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd75d496c enclosure_component_register EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xdc391744 enclosure_find EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf9031a96 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x277cb0df lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6f748602 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa276bba1 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xae0a2603 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb181f5c3 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc7becdcf lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xef7ad1f7 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf87f4d7a lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x115a5cab lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2a9b7986 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3ee55ca9 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x44ebe9af lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa8d3e8cc lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb2f4f156 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb67427e5 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe41d8e44 lis3lv02d_joystick_disable EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x13c9c8b5 ocxl_global_mmio_clear32 EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x176b7dfa ocxl_config_set_actag EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x176d31dc ocxl_config_set_afu_actag @@ -13718,61 +13725,61 @@ EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xf2334949 ocxl_link_add_pe EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xfaa0159e ocxl_function_config EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xfc25675f ocxl_global_mmio_set32 EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xa5dca702 devm_pvpanic_probe -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xb7499403 st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xf594e8f7 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x32fbda5a st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xd4fbec46 st_unregister EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x1f93f575 uacce_remove EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x4246e7e8 uacce_alloc EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xa9cd7807 uacce_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0151f7a2 sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x01f5f4fe sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x05be1684 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x091fae8b sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x09b7b298 sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0d335636 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x14c2d65d sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x164abff8 sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1697f588 sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x21a37b14 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2da1dabd sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x43b9af82 sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x466a8ba7 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x52c4cbe0 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x59b02def sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x606290e0 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6437007d sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6cc8511c sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x70db1aef sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x772b2018 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x78bac26b sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x81a05ec2 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x99454276 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa5e90612 sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa8061f82 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xab9f5afb sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xabed5086 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb1709bf4 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb5a1f998 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbbf6d21e sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbf18977d sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd5b89004 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd64cebfb sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xde536cce sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe4ac65bb sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe6004131 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe9cfd0b8 __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeb4a51df sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf007b722 __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf2c225af sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf5a0840f sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x04534dcd sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x082ee345 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x12329619 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2ca3b28b sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x013af60e sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0eeade16 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x11e307cc sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1b1a82e1 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1ec055f5 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x201ee3a2 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x21e62f36 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x276ba772 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x282cc12b sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2d91cfb6 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3a82a8ed sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3f99a580 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x40b5c623 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x43863aff sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x56135b30 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5be4c77c sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x640fb863 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x685fef80 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x77baa7c6 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x79c2af76 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7a525d17 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7ad797bb sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x84a309bd sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x877d308d sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x89fc8f08 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9422e2c9 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9dea9497 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaa2e4a99 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb2ca9a69 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb842459e sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb9e0549a sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xba5979d6 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbb93b69e sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdece4c55 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe0c11ee6 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe6aa5674 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf0556783 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf860e1be sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf8bdf9d0 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfd72db42 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfe52b6eb sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x09935050 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1c8bd3b7 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2467aa79 sdhci_pltfm_free EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x43df1336 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4dc5ff5d sdhci_pltfm_clk_get_max_clock EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x716730fd sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7f763517 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x841e7d74 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9128e683 sdhci_pltfm_unregister EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa47106ec sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe7c93886 sdhci_get_property EXPORT_SYMBOL_GPL drivers/most/most_core 0x05ea1c68 most_deregister_configfs_subsys EXPORT_SYMBOL_GPL drivers/most/most_core 0x2a17c4fd most_stop_enqueue EXPORT_SYMBOL_GPL drivers/most/most_core 0x2db85531 most_get_mbo @@ -13947,358 +13954,358 @@ EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd3dcd246 devm_mux_chip_alloc EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd4b00327 devm_mux_control_get EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe0f94d40 mux_control_states EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe35460cb devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xb166d980 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xd6a27b89 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/bareudp 0x9c95829e bareudp_dev_create -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x562c375a alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x87a01c32 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9f317bae c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa4a333de unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xcae02b92 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xef80ec62 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x22302c61 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x3f04549c register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5276bd2e alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x71c827a8 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x03bebf8c can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x077e2e17 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0eb62585 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc0dd1e75 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xf5fab0b8 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/bareudp 0x18ed3140 bareudp_dev_create +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x09fcd4c3 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5d4fa6f5 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x650e615d alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x792a3316 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x95980213 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd01632c3 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x17eb88d8 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x744a9e8d unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xad662f15 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd91a3f02 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 0x110a7377 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x11ac143c can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x198f550d can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x244e1ef0 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x246ebbe6 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x24b6a927 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x272f0672 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4028ccc4 can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x47d3c370 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x50f61b2c can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x519d3b97 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x13e831f5 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x17b62145 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x184cc273 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2d2418f1 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3001f664 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x30fd8f52 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4bfc374f can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4d06efda can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x52feab35 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x54fcd8be of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5cbcccbb register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5f9d61fc can_rx_offload_queue_sorted EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x61244dfc close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x64fce1c0 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6b51f4f5 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x702769c3 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x70377479 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x90e2c7e6 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x93107d7b can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x95114c5c unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa0a88c84 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xad074365 can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbcb559a1 can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbdcaf297 of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc091f188 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc12d528e can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdad2fd5b open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe23dd26c alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x60ecfb57 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x72f95eec can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x739a78d3 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x786cf495 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x793a8966 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x849e512f can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x98a37c54 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa0959bf0 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa4a4b38f alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa50267ca can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb43b2562 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbc96da00 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd17da107 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd939cc64 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xeb59ebc8 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xed825efe safe_candev_priv EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x12fbfcce m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1ff67ba6 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4c309c6b m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x68e8fa2f m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6a3b7898 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6f73d097 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc0d180d5 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd8bd6a17 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x35090ec7 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x472f937a free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf2fd1930 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf7276011 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0b487214 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5286ef43 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5ef8960f m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7ef095c4 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9b9ccd23 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xaaa7dc9e m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb7702e0f m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe2c38d42 m_can_class_get_clocks EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x8fd964a1 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xcac5750d unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x173276ad lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1bfad936 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x32f17ec8 ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3a90b0e3 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3c729768 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5b2e4562 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x62ffb45e ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7702e295 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x77d843e3 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8bb7a6e8 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x94af67ab ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb34da806 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbc5d3f27 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbd87bd1b ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xed7cf502 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x11ad44a9 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x132587cf rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x29231ecc rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x41e74a15 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5217a02b rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x57d8e9e5 rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5ed82a16 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x62abf69d rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xaf7cc0e4 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc1151abd rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc3894602 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd56168ea rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe4a33bba rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe757fd50 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe8fa9274 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x282e7ed2 enetc_hw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x34432d7e enetc_mdio_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x46d7db21 enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9b8ca324 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xcab5dcab unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xcf4b868f free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd77f6601 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x736d2c0d lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x33e5626a ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3e0dc13e ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3e9a6b38 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6b3d7f02 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6c30cec8 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6e4a4dde ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x795adb21 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x952797f8 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9bd6da8f ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9c802d42 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xacf21fbb ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xae9170ea ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb4fc1231 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf819885f ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x09ecde4c rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0cc33259 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x22a6124f rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2394369a rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x265038da rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3c3a002f rtl8366_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4170b8b0 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x748854a9 realtek_smi_write_reg_noack +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7b091b4d rtl8366_init_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x87f2edb9 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x964e7d8a rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x99fa22dd rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa2115baf rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc7ae2ac1 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdb272ce3 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x097ba3ea 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 0xb8ee745c enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xcda30db3 enetc_mdio_read EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x70eff8f8 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xec747dbb i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4ac2ce2d ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x527093d6 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x652df6e1 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7379c84e ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x8ef29c7a ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00e108ce mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0122e0e4 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02f579af mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x053b76c0 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07d65f1d mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08a5cdbb mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bb446e1 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dbe10b4 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f7aa12a mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11e12aeb mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14aeb1eb mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14fb15f6 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16d48efd __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1792d152 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a28dd60 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b75141f mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c394d25 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cc837d6 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fdeb2cb mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23432d56 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24a47211 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x254c04d9 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26dd3133 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27eacf1a mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28b7bd7f mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c688e9e mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e9e97da mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x301bd378 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30e0a107 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30ff18e4 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33132679 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x334a3607 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34cc3ece mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x388aef3d mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bda5a3a mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d3cc1bc mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x403b9053 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x404c59c5 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x424d222a mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42c23213 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c3e172b mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x518d39d1 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x521af4a2 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x536e778b mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x590271f1 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59b47698 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e19d5ee mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e44fd76 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x601cdfb6 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62b607d4 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65a73216 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69013a50 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a3da31e mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6adc0c04 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e109014 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x701c58d7 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73a651b0 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x749a21a2 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x766d8f1e mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x767aa20b mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x775ed05c mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x788bd3d3 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78fe4721 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a2b7fa3 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x876c10e5 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b5fc126 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b6b24af mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e1a36f6 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f3061d2 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90ec8262 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x938aa356 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96f74b2e mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99f94467 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a0ea151 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bdf6c96 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa245cbcf mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa557a5ae mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5df4eee __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa61a6256 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6b64b07 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa819fb94 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac08b9f3 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb04f3e51 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1227c7d mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3f1bb9d mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb77747be mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb810eb6f mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbac3f996 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd888cc8 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc01aafd2 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc02764c8 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc08780cc mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc184952f mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb542217 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xced286d4 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1998146 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6a6f52e __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6e8e269 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd85f8e97 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9601d0d mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9cb61dd mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0062180 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe16d947a mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3162387 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5b96318 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6ee7654 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe915a5e1 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed866d0d mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee013f7c mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef73fa29 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2a0cd8a mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3bb2e7b mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6bc5754 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9447f50 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb03fc9b mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb83057b mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb974bda mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfba73e5a mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcedbd7c mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe52a38a mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff262b24 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x013bb26c mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04b3ee6b mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05c6827a mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x142666d9 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x6836473c i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x46c0afbb ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x64fb1ffc ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xa0cef0ea ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xce98e6f1 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xee9e9299 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x008a1a61 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01a7c8cf mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05d3a918 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08aad599 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08f1a885 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08f37059 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09e709aa mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c0d1a57 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ce189e1 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ed7a523 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12f42c08 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1308b16d mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13fb5f30 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15130823 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18cc7899 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b560852 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b84dfb3 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c0f2b9f mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c8eec9c mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cc489bd __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e026237 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x227f5ffe mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2433d160 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26b7a3c6 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bff38bf mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3034f388 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31996175 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x329ed9d5 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x335bdb48 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x349d6c1d mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34e57848 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35de2609 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39296774 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39949975 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f62d3d0 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f82adec mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ff421e8 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x441ff79d mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4625fd99 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46450660 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46f5b910 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4726506f mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49d0939d mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b629fea mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b717963 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e6b59c0 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x508637f9 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50f4bfcc mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x517d86d3 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x538a3146 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x553f7519 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5df2f528 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fae595b mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60845076 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6716b593 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67940642 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67c11a1f mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69c851ce mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b047adb mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b25099b mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b35eb6a mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e22f8e2 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f7a6347 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fadde68 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7543f7d6 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7547fca6 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7774f5f9 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78264c97 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79923d6e mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b1c5d66 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bd904e1 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c84791e mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e431cfd mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81419c8a mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85464963 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x888b1bda mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a3541bd mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b583782 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ca460b7 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d0a4d96 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ee89b29 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97c1b9c6 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b73c96a mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9baadd57 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d6d154c mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e5829b2 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f9bfcc4 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa59c0e51 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa884dace mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacc885c6 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2b181c3 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb40c18d9 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5ad034d mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6aeafba mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb742e73a mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb765036d mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb852af2f mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9ade8a0 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc0867c9 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc7f4530 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2f98043 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc698b222 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc827250b mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc92a2f88 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca1c9b8f mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbd322ce mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd072632b mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf5686af mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0ceccd8 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2b1bd01 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3070cab mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe41f1c40 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7125b46 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec92b4f3 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef6ba387 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefab82ef mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf07a3e1d mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1201b20 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf82713b5 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbc40d3d mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc085114 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03eb9a25 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06a8dc9c mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0718e36b mlx5_query_hca_vport_node_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 0x0aa41f3f mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cfdf8d3 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fa63dc8 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x178c890a mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18bcff4c mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23f251c1 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26cbe4ff mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29044167 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2952afc5 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b28d1ff mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b673763 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3608be75 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38d788bb mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39d4080e mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4498d577 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45cf6b0e mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a419fbc mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c871844 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5149d1d3 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x536b4c5e mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54adf075 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55a0b32b mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x577c16ea mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5875cd02 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59a4d946 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ccbb3dd mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62b5257d mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x653d54f6 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x694390c5 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ed9eb5e mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7547a230 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78489095 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7beed440 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7de60499 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0755c805 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09852019 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ec10b83 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x182ce602 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e3943ff mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2157e363 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21bf20c0 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26bd1afa mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2911e89e mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d0f988f mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2dbcc694 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x306d65e5 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30c91b28 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36908d7b mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37213aa4 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38ec0d4b mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d26b7a6 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e09891f mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4175afed mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45f88337 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51d456df mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54b7363c mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x571f6992 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5823b488 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a187faa mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ec27608 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60d8e2f1 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64f13ee8 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71324001 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x717142de mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71f38185 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77184568 mlx5_query_hca_vport_gid 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 0x88823cd3 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d7095b6 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8db7fd3d mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e317f23 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fadd53f mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9033cbb5 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92cda894 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93d8b562 mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x991e83c1 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9df0b0e7 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e11b45c mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa62ded96 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x886725bf mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88beff0b mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ac9a762 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa23572d3 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa25681aa mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa28e5778 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6d192c0 mlx5_query_port_ets_rate_limit 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 0xa7806a95 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb15af0ad mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2ce8daa mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3e909e6 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4bcb683 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb60ce22b mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb83f0da0 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfbd07ef mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc18dc41c mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4006935 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4e08cf0 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc76df0b7 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc777de92 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6de7f67 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe250e927 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8c54ee6 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec017c48 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef2c1085 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf088ad1e mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4263652 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf98139f1 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfea6ea00 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x4a424494 ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x6a3189d5 ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x7ed33eff ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xf8f9f5e4 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x1a8e43e7 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2af6b8f mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb457140d mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb68cea47 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb87f3ce3 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba23b723 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc431ca63 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc481aea6 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce2d16b9 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd23293cd mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6f25bbd mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd70daee7 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7576f90 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaddce56 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe17a2a82 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe24775a0 mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe26ad049 mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2f0e4e8 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3b52f1e mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9cd991f mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea764cfc mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea867f74 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeab67925 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeaf1d069 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1f7de28 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7cc4322 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa20aaa7 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa8998a4 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb3f8300 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdaf3a51 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x05665ce9 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x41656a31 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x6123901b ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x95e06e1b ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x1321f1ca 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 0x1a34f365 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x58919f3d ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6798ed4c ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73efae63 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x88943808 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9632702d ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8705142 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc11d3560 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe529e7ae ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe56a7a6b ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeac0d6f5 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf2bdeee9 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf4c4ea43 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16d2c5a0 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x29c2db76 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x32bb1714 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3bd1547a ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51a45554 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b28b876 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb234087c __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc26038fd ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0bfd0b6 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd2e4ee0a ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef4f1f29 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf001ed4d ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf5b382a9 ocelot_port_rmwl 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 0x421d8599 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x44e40493 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x489732f7 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545f0de0 stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6beb58be stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1950ecae stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1f2651fd stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7c2cc651 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 0xba8f2ea8 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb4313bce stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xcce4d04a 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-platform 0x1056bbbf stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa64c09fd stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc75b2697 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd6bae295 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xecb9826f stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x0ced103f w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x98425002 w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x9a6af455 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf5eed184 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/geneve 0x7561b44d geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x05b64889 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x25b267a5 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5696ccf0 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb052e948 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb56a3583 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/macsec 0xec81cf86 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0c8f2c7d macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x11b8f2ee macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xbcb79777 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc553589e macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe710fe22 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x39663f0b stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3a9c4a24 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc2ad3791 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf1599b27 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xffc7a488 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x09825bbb w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x31ad94b5 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf1b8c875 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf9c47ff7 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/geneve 0xfb161d1f geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x199ee303 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x1acbd3b7 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x26a7cac2 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5eaf8e7f ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x9ff8ebbf ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macsec 0x24a08d45 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x301ef354 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x327b0560 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xce2a2e11 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe9a2d214 macvlan_common_setup EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xea17e33c mdio_i2c_alloc EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0xd73c92e8 mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x2b9abe15 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xe6a875c5 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x9e0fb1f1 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xd7b9fa5d net_failover_destroy EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x126cdd34 xpcs_do_config EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x1604dd08 xpcs_validate EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x77377458 xpcs_create @@ -14306,849 +14313,849 @@ EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xca117b69 xpcs_config_eee EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xdb6b4039 xpcs_destroy EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe47d735d xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x09f89693 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0d9d7ecf bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x19737842 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1c4dad66 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2b7eb040 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3e56de1d bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3f4ed320 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x408644fa bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x54a88665 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5d608271 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x62f1a053 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6be64581 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x89141f9f bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x899a7f6a bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x89fc033d bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8cdb0949 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x934a3b6b bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaa65a739 bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb1c4eb02 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb51768fa __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc47544c5 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcdf6265e __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd2e3fa29 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd4caee7c bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdd30fa25 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xde064500 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe16c2dbc __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe74539e9 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf5c787b3 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf8488000 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfb6da9b4 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfc71be60 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xffca44c9 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfffbe733 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0a92efb1 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1e63071d bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x300716ce bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x34586a08 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x34e54dd2 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ae954f5 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x44f50a69 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x49c40aa4 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5374ac70 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x53d0c274 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6b16010d __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6ce140ca __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x72c00c3e bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x76219035 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8657c597 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x88c45bf3 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8f563d8b bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x968030b8 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x97848095 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9a402b99 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa5b2a00a bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa71aa57d bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbaf00f12 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbc7e54b6 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbdae650e bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc2442681 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc7292703 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc99819fe bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcb3486d5 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd0627f98 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd2fe928f bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda6b2f1d bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe137c7b4 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf0151496 bcm_phy_downshift_get EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x10a283d1 phylink_mii_c22_pcs_config 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 0x1f56c18b phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x1ccbb5ff phylink_mii_c22_pcs_config EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee 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 0x5cb88fa8 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x60b2ed8c phylink_mii_c45_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6518de37 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6d018515 phylink_connect_phy 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 0x85cd0ed3 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x82c2cf07 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8334d162 phylink_mii_c22_pcs_set_advertisement 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 0xa26bfd9c phylink_of_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb77e1b58 phylink_mii_c22_pcs_set_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9f06bf73 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa10e7a06 phylink_mii_c22_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 0xc47e738f phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc8629bff phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc942913f phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xda202da7 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 0x0b337a96 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x620abe68 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x69d8f87e tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x81e05b48 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x929dc719 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x9df76c7b tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x9f8144bb tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0xa1f45cb8 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0xfe252a3d tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x04710121 usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x31a7e8a4 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7b7c5da2 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7c57a7bd usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x99ba4c71 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfe4563ed usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x04f590bd cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x74722973 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8111ded9 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x82c225cf cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x98e1fde9 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc56e8b35 cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc96e3fe2 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcff7390f cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe13cf774 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe8cfaa86 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf751f7e7 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x778ef23a rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1f97705c rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2f9668dc rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x35fb6306 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4f7404f4 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5ecd928e rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6caf5db0 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x06131894 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0b2af5b8 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x176df5b4 usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1d1e4cdc usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1e7865b9 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x238cb603 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2a9da0e1 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2b1934b9 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2c2520ed usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x30fc50ce usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x355a796c usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x511c588a usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x52d99a22 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x58daf09c usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x69498327 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6a53b2ba usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6d1774a1 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6fd1f109 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7ae327c7 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7bc8e202 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x83580c36 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8785561d usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x89036b13 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x958f576d usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa885ff5f usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbceb7d66 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc1bd1935 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc785a684 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd88f299d usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe4a5e19a usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeeb6c408 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf4d6aa9f usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf7b69703 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xff8ad56e usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x4ebef9ac vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x5b07e723 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xd3456ab4 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xf8fcb1a9 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x77950f12 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ab5ee37 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b420507 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c265db4 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe723693e il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf381369a il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x020684c9 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x06280857 iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x06713c2e iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0734c893 iwl_fw_dbg_stop_sync -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0cede595 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x15cc7a27 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x18bc8e46 iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x192a3636 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ad95858 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1b63a034 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/tap 0x17d49610 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x51fb561f tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x88a1fd9b tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x96851cba tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x9ab091f1 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xbbf8c520 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xbe775102 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xd99ae37d tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xe2f7c48c tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x0c3a699e usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x244e4868 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x71ee7968 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8245a398 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa182d8b1 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd4dc9d92 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x12d5f690 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1ec9ee63 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4b2bbb27 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x52637b01 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6f6a854f cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8e618e00 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xab8a0b6f cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xabbbb62d cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe45dae3a cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe96abb5d cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf9b5a5c2 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x2914bc7a rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x018e9d7f rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x35270c9b rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4baee5c9 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x51b8f02d rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x53172391 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6a19857a rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x107bcaf8 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b10529b usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2c8cd4a3 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3228c036 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38129d2a usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x399f6b89 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4149da69 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x43690a89 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4a141ea5 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4d4c5213 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5ef02b70 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x628158be usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x660971da usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6ddf7db2 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x720fe3cd usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7cf12072 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x890a4577 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8f39d7c3 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x910ac3e1 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x94b00a07 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9dc421e6 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb5f1f738 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb6d813bc usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb716470e usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbbccaba1 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbcabe54a usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc7795c6d usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xce919cec usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdc60ac4f usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdfbf048d usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeb05a726 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf092a76f usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf32037f8 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf80f57fd usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x2538afac vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x691db4ba vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xd690c76e vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xef09485e vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x3e458254 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a02ac0d il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2ab1460 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4b7d018 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb13fbd6 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda8f2ed1 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x00e2f548 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0461ad72 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0e4576e0 iwl_read_external_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x119c9ba5 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x15a68416 _iwl_dbg_tlv_time_point +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x15ad1173 iwl_read_eeprom EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ee1c386 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20695565 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1f53365f iwl_get_shared_mem_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ffc1dae iwl_write_prph_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2079b756 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x22197ece iwl_clear_bits_prph EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x229d8b26 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2391871d iwl_trans_send_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x24720f54 iwl_force_nmi EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x28bc123d iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2cc69d1b __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2ec61cdd iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x27918eab iwl_get_cmd_string +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x299b832e iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2aa39580 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2ce2225f iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2d630ebc iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2f0957c2 iwl_cmd_groups_verify_sorted +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x301998d0 iwl_fw_dbg_error_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x30353f3b iwl_free_fw_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3172701e iwl_fw_dbg_collect_trig 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 0x3c6ad9ae iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x49ef6e09 iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x562303d0 iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x58f97627 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a8b5e20 iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3dd15e28 iwl_fw_dbg_read_d3_debug_data +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4b8f6257 iwl_read32 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5a39e754 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5b118fa4 iwl_opmode_register EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5db68d03 iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x659c4354 iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e466066 iwl_fw_dbg_collect_trig +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x604216c9 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x622f8c43 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x66873eaa iwl_fw_dbg_collect +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x675bb9b7 iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x67639bdc iwl_pnvm_load +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6b8fbc3e iwl_write_prph_no_grab EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e4a86d9 iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6f2a9f0e iwl_fw_runtime_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6f501eab iwl_read_prph EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x724e8822 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x72c70599 iwl_set_soc_latency EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7307e077 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7624765f iwl_write_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 0x7ac3fa81 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x835b70fe iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8a30c28a iwl_fw_runtime_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x88c3e942 iwl_write_direct64 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cd2f16c iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8f9fa5cc iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9331c759 iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x97659ef9 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x97af4e6f iwl_pnvm_load -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9e3d6f24 iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa252fbea iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa5c76ef9 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa8ca653c iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8d5cb184 iwl_write64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x95e7180c iwl_finish_nic_init +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x96760585 iwl_fwrt_dump_error_logs +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x97bf7b54 iwl_parse_eeprom_data EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaa0bde89 iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb0e06f5c iwl_write_direct64 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xac9a0e81 iwl_write8 EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1338340 iwl_fw_lookup_cmd_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb14b4006 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb16a0de4 iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xba247bba __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbcdf078c iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc2590489 _iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc4e80d72 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc7a3a9a7 iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb8b97fc1 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbd262707 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc7c08b5d iwl_fw_dbg_stop_sync +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xca9f0223 iwl_dbg_tlv_del_timers +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcb97b211 iwl_fw_runtime_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcced5aff iwl_configure_rxq EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce6194c2 iwl_write_prph_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd29bb6b8 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdca2c5d2 iwl_init_paging +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd2f10195 iwl_get_nvm +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd3a7bed2 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd3f7e809 iwl_set_soc_latency +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd9109b73 iwl_fw_dbg_collect_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0f11304 iwl_fw_runtime_resume EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xef262856 iwl_fwrt_dump_error_logs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf3cb3a3a iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf4bccb11 iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf6a068b1 iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf8b7cfdd iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf9fd1f60 iwl_configure_rxq -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfe56c82b iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xff70bdd2 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x05aebdaa p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x07468e8e p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0790e606 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0f81f0f7 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3682f2d2 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x788348e4 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x83756d88 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x92fed053 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xadea59a5 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0a4b5f88 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x157af79d lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1978c797 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3dd6dbab lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea376ca3 iwl_read_prph_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeae8f3d6 iwl_write_prph64_no_grab +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xee1cb169 iwl_fw_start_dbg_conf +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf708872b iwl_fw_dbg_stop_restart_recording +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfbadb7a1 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1c9e0f88 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x59694843 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5d3964f9 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x665fdff6 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x78a27a0a p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9a0a0c39 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc7898c7e p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd79d7222 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf2cbaef0 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0d1df8d2 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2fa42450 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x31d44bca lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x509b7596 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x521d3b95 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x55303d7d 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 0x61dee3df lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7af70892 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x81a2473f lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9911fe34 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb64508e0 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd3c2f1be lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd65d7b43 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe3102cc8 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xec0a62e0 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xec7f0f69 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf277948e lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf4dc9c44 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x639a2ddc lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6d936d1e lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x71554eab lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x869429ca __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xacd28844 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb2ce4814 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd6390846 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xda47a683 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf1277e15 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf1d1240f lbs_get_firmware_async EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1318461d lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x149f3416 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x482271eb __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x48d220d4 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa9e78cc2 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1f672323 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x3157b35a lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x3db452c8 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x427bcfcc lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x45f3487e lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4a6b9944 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5a7feed2 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 0xcba38d0e lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xcbab480a lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe115357f lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x03c3a694 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x07b89db1 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x07cd8488 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1124b2fd mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x122a824e mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x13f93720 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x14859702 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2df47f49 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x335ed458 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3542c3a8 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x55b3b8a0 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x61d960c4 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x81fd5cc6 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9005af74 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9539c39c mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9c7e1778 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xad7dbaaa mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc776a5e3 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xce302773 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd097db70 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd3cedc44 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf82cd9b0 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0ed87cec mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x34799aba mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3580aa47 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3a063289 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4ec4dc0e mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x60d42df4 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6ef60c0c mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7d9437ac mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8f486882 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x934c1119 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9507b618 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x95e9d77e mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaa36c52b _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xab556051 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb0da7454 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc5ab2a39 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc5af2e42 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd0d72bd0 mwifiex_drv_info_dump EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xda235d22 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdeb4f0f2 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf8894683 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x00d85a71 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x016e7de5 mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x06e12cfd mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0cd0ae12 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ef3bd5a mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0fa6dc67 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x111073f7 mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x11575377 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1437b0f1 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17b52cb5 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd9ae6f9b mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe15aa626 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf3494f7b mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf5e21f15 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf861606f mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfa5a718e mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02aec898 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ec2a643 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x105cb9ee mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x122adbef mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17baba53 mt76_dma_attach EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x186626e4 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1dc31cd1 mt76_queues_read 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 0x20b41430 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x225665fe mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x23208aa2 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2466a423 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x24c25122 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x24ec81e1 mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2ce0ab12 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x337dd4e0 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x396aedd2 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x396f7310 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3a665f50 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e00c45e mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x457957ed mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x491c6b0f mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x529471ec mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54d45241 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x56acc2a8 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x56d818f0 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x245bfe89 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2527cb8b mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28969daf mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2cf78c68 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x303cf4cf mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x329f8401 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x34656c51 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x36111394 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3be71ddb mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3beb8e53 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3cd68e23 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3fe2b3a9 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3fe33ccb mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4031d5e8 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x465f4356 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4c26eb2d __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5504191a mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x587665c5 mt76_seq_puts_array EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5dbfa88b mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6319d278 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x667f5d99 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6a74e826 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6ffc73e1 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x70e99b4a mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x76dab015 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x62a10467 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x63898297 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6df53a47 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6ee3e443 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x738423ef __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77c0152d mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b2cc260 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7ff225d2 mt76_set_stream_caps EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x80cc2c02 mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81291661 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x824c3e76 mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84908591 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x866dd917 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8794be0c mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8a98953c mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x815a0c95 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x815f1964 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81e0f6e3 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88435a28 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x89d214a4 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8ad67102 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8dab6cab __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8e3bad09 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8e90ee19 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f88632d mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x937389c0 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x93bb6494 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x949ef219 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x99f3cc86 mt76_tx_status_skb_get EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a5471af mt76_sar_capa -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b023502 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9eddac9a mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa1e961d1 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xad341b58 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xade03df5 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb4a820f9 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb76221c7 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xba1353e4 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbae67fd2 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbba7e360 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc146395f mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc1ecd78d mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc522dd09 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc56e1f4b mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c29faa1 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c66f73f mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa1275e16 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa79deced mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xacdef5f4 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1964fae mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb228cc57 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb2d36f65 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb4a52268 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb773fb9c mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbe982b19 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc21b0269 mt76_init_sar_power 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 0xcd1f426c mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce8d833a mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd1089c66 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd2dc5bd5 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd3c9b191 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd423bc88 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd4a9220a mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xddbf0719 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdea9e440 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdfcde2b8 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe1308446 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe2e84e07 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe39db247 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcbbbcfa1 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcce9ed2a mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd0ae0990 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd1454508 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd2cc393e mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd32ea3b2 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd5c3284f mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd98f5423 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdae30854 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xde210b00 mt76_mcu_msg_alloc EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe91f0ff0 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe9cf01c9 ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf2842881 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf69155ee __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfc7295e5 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfcb8d26c mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x05b11f7b mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0bd815bf mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1452fdab mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x14b2c990 mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x15b711e4 mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1a45f41b mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1b2aa278 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1b6c68d1 mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x26c34ace mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2acfb453 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2c4423ec mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3e57b1ed mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x481513f2 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5e1ecca3 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6393bb5f mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x651ebf29 mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x764d4251 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x777d4bba mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7c70a9ff mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7df6b3f4 mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8712e6ea mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x87819e16 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8d8647b1 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe8290dce mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xecd25ec9 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xed7e6074 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef81519f mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf5a687e3 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf656331c mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf9ad06d8 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfc52828f mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfd05bc55 ____mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff9f83a0 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x056864ed mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x060765dd mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0cad8ea0 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1daf75ff mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1ffd88e8 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2087fb40 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x218402ab mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x21e1cf88 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2b375611 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x31cf4af7 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x32b2909f mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x36b7eebf mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x44bf2a11 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4592e6c0 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x48d6e02f mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4ed4b298 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x52dfbce4 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x60df89ae mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6e55cc6b mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x70deff7c mt76_connac_mcu_sta_basic_tlv EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x92c3eb46 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x958fd649 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x97bfba57 mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9851b30a mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x99eae06c mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa9e120d7 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xae3f49c5 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbe7bfe2f mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc0a26301 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xca43b299 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcfdce6d3 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xda907b82 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe3c5abf1 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe440e6c1 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe5dcca8f mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xed2fcf33 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf863531c mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf8c1b754 mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf940dea1 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfbafb2e5 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x006ac948 mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0f9502e3 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x679f24ea mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x04f1301e mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6576358a mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6b99c536 mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x89244f46 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8d93aace mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x984feca5 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb7444959 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf37b1a66 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf75f157a mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0438651d mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x16d4ffeb mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1dcdf1a7 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3a4553d5 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x426d1fb6 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4a92dabd __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4eccdaff mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x70da4d1d mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7240e801 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x73f896dc mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8033493d mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x809431fa mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x84ab3ef6 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8c64a2d6 mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x93ac3797 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x96fcf17b mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x98d3f1f7 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x990d95f5 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9d7e8ec1 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa0b1c144 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa55c70fa mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa75d6d10 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xad234836 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xaf0674e5 mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcaee721e mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd22e6349 mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd286f7c5 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd566a1c9 mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd69f4f77 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x6fa5542a mt7615_dma_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x12d43860 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x92feb8ea mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa06bd1bf mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa21f6ac2 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa3755cc5 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa6a0ed03 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa72c89aa mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaa95a5ad mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xae33da2e mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xae9aa6ad mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb4fea50e mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb7ed0431 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb9295d01 mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xba2dad12 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc3236d73 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc3a0280d mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc48f8b14 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc861ee21 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd83b08a7 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe31a6c1e mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe8d9d15f mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeabc72df mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xed1b443c mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfaa62f01 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x61e84fc3 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x91ceac77 mt76s_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9fd2e9e0 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2300c80d mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x340f41c1 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x382382b6 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3ffdcceb mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x61e3ad14 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8bbc2e6c mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8e80b1d1 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9b18fd59 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa6bc1b8b mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0e6e0133 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x190ca84b mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1bb1c405 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1bb27c59 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x23172732 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x239df680 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x24d89c31 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3e847d30 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3f2c0cca mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4c790848 mt7615_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x50ef072f mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x570b89a2 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5bc33434 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5d3fcf03 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x605ce29f __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x620de07e mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x77e28926 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x809f2bc3 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x895c8904 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8c87141e mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x96d5a75e mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa8ad4ff2 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xab4cc33c mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc0fe3f54 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc14f8091 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd769d48c mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe37b083e mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf8b6e49b mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfdb8ca80 mt7615_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x3b28c2d5 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 0x48ace92a mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x7d10a2f8 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xa60f9de0 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0b89180c mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x1072eea8 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5ecb567c mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x644b1bfe mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6c6427cc mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xb7c33131 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x39b920ca mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x4f6872eb mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x51701f09 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x675ee385 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x20ee2de3 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x29b20878 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5f8236d2 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x8ba7e4d1 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9a6b3c80 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xec10876a mt76x0_register_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 0x08845afd mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0b628723 mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0c511f89 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0cb9294b mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x05998307 mt76x02_mac_set_beacon 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 0x0f94d68c mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x101ca21e mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1893d23b mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1a52751e mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1ec3adba mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x22264eff mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x240ef268 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x26ffa2dc mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x310ff5f3 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x358eeee8 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35c6e7f1 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x12283a62 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x12b30a41 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1bec705e mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x20016ee3 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x254fe922 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2b460f94 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x320f58a0 mt76x02_get_rx_gain 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 0x392a1c43 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x39661cbd mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3a4f0165 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3d8ff1f2 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3f6dc9ec mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x40a85a39 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x41fc4f4c mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x456f7bea mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4712d06b mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4e51447f mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x50b894e4 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x547dc5ab mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x57572f9c mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x57b97297 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x59de2e5a mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5b357541 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x37993e7e mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x456a3a99 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x45cb3f40 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x49059be0 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4eb67815 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4f564bc8 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5147121b mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x59417f32 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5aa30b4a 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 0x5d90af8f mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63415398 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x66139c5a mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fed1f73 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x808bf0aa mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x850c1394 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8701a428 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x88e6e7e8 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9056031e mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x61367841 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6353e32e mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x64f1c567 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x690a1838 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d4647bc mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6fd2f452 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6fdcc18d mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x791a9d72 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79334019 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7cc94d39 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7d75c183 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80bd24cd mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x81e95247 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8205609e mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x876ae8e4 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 0x934cadf3 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x935b536d mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x974a96a5 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99566bde mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa14e029c mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4f16317 mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa5f75cf0 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa6003341 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xabd7cc53 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb4b5d67b mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbbff0825 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc4169ea8 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc9cdb842 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcab35b62 mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xccb80e5a mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd03c8749 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd0c24802 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd37d9a42 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdc0120ad mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe97fd35e mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xea044d83 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeb25c9b3 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf77a164c mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf90c2718 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf98cb56b mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa764604 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x13e729eb mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x220bc90c mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x346f48fd mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x53f7db40 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x86445a5a mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa3360a22 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xad02287a mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xcdde7065 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x028609c9 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x06487c01 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x09b44d48 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0f873f1d mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1ba1e56e mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1cc37dc4 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1d1b7169 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2c04c16a mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x310c06f3 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x42500a25 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x561b32d1 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5b482581 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6d916101 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8b97a8e4 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa754a69c mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcaeb4afb mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xea60a135 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf40f84ce mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfc5d5430 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0b31f289 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7185dd2a host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8ad47735 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8f910184 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x927288cb chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb7f9a4b9 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc3fae974 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x1105524e qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x925787e9 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x92bcdfb6 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9da861e8 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa40f0dae mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa600dbed mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb2088e46 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb2b3cdd8 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb3f172e8 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xba0c6929 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1bac878 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc25e6018 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc3d46773 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc4123450 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc7ac402e mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xca266e36 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd572f54 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd275874f mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd4e28b17 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xda474894 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xda85e631 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde157499 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0b3b822 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe12a119c mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe208f2db mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe31b7a81 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xee1307b0 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xee8b3472 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf0df7f23 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf626da07 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf6e35ba3 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf98f897e mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa402d91 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfdc9c4e0 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xffb6abb1 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x11e27a77 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x14f74b32 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3c2b8bd5 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x59aea708 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x859904b1 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x973f9365 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa76d71ea mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xb83af35b mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0d05830d mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x144614f6 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x341e98dc mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x37209db7 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x37772a9b mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4ea329c6 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5d9e6ccb mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x610042f4 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x73f1d4d1 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8945f576 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9275fb37 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x941f84e8 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x971650b2 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9bf0253b mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9fbad9c4 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa2c5bcf9 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xae3dd965 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xafa0ce83 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xeb942c7a mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x529e8c46 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x5d8addd6 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x61ed178c host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x81981e6f chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb33dac38 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf0fcc7c1 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xff1e5796 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x10f3c18a 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 0x47ad87cf qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x643bcb95 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x8066c01c qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe6f31296 qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe77e78f9 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x02b1bcef rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x02ff3638 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0586d593 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x09491e66 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x11473cec rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x11efa54f rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x256ffedc rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2b563edd rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2f6f9934 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x372c13a8 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3754ac6c rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37ec5cd0 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3b52e48f rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3bc5134a rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3f93fdc2 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x45be090c rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4bf920ec rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5991cb4e rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5ab8e38a rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5b3d0c25 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5dc8d2de rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5deb954f rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6994a560 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x74c1031c rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x76b17389 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7e5b482c rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7ee65976 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8013b818 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8995e7f3 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x89a11ee3 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x89c3dcd6 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8a22b9be rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b387b8b rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8de80059 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e239ed4 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa7accf1d rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb5b2c4b4 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb8f784b5 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc92ec72e rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd1c7f286 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd5f610dc rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xee537070 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf871ab8a rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfb75864e rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x26b34780 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x691a0e2e qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x8ba143c3 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc3ff10b2 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd83b56df qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xfb8242fb qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x07e6536c rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0b930aa3 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0cb73cda rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0e0e0b3b rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x15bacc83 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x17ebef29 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1bcadd09 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f791c59 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x226d91d8 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2b3ab22a rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2b85cf75 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2c9975aa rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x32d810c6 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x36c6aff8 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x475ca9ac rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4c61aae3 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5a84df2f rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5ca0f039 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x71257594 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x737db0bf rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x867e3669 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x86f53c4f rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b74cd8c rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b7f2dcc rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9237ea43 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x994de508 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9a0e998c rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9ccfdd04 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa0e14793 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa82471b1 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb30cccf0 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb3dcd6ef rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb51a5194 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xccb238a6 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xccce88d5 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcd085b64 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcdf778cd rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd44c68fa rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xde770659 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe816e5ff rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf4388847 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfbdc5f68 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfc9a60fc rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xff85a933 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x24c77414 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x24f5f52d rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x28b5a912 rt2800mmio_queue_init 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 0x4ca5ea6e rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4fbd5ae2 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x46a4ae7b 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 0x553df00e rt2800mmio_kick_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x62e3e1f3 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6403fdf3 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x748f3250 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x76bff97d rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7c103711 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x80dabf72 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x81fcd464 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x84844714 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x85044f98 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8710d557 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5ffef092 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x63c7d78f rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6648d326 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7c64d4de rt2800mmio_init_queues EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x982d77c3 rt2800mmio_get_dma_done EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xabbddda1 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf3c4ac53 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x092ccffe rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x094e04cf rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0b1cd055 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x104f2ab2 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x124e50ae rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x12d322e1 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x19239f41 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1de1536c rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x240bedad rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2b7d583c rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2f9e0e00 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x312ffa12 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x32f854c8 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x33c64cfa rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3a5999e7 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x41868c0b rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4f7752b8 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x51ee582f rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x55ccab56 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x56ceed8f rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x571d6dfa rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x674eef6c rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6cfe51d8 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x74cacc1a rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7bc48929 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x87d07da2 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8b3b8042 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8cb5b567 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x914f0e7b rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x928b044b rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x946fd762 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9c2b42a7 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa4b5d587 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb111d37a rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbabc15f1 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc035c190 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc06fda60 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcd07d7c9 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcd28ca8b rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd21ec0e8 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd2ba487f rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd57b9e28 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe34860af rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf035e35f rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf70dded2 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf86dd3fb rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfe085d06 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x07de85e8 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x288f5770 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x4ca25bad rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa3f6f395 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xb6be38d5 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x949ba55a rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x9fb2f480 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xc20a7728 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x429d8a00 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5fcaaba8 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7d37f8a6 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x84fed8ea rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9b8e5ba0 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9e23f53d rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa75a2f2d rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb251b0d8 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb43f1187 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbb7694fa rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc2f5e8f1 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc96b6a70 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd208b610 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd7590e67 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdafdb119 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfe81a787 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x08f46756 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0976999e dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1dba0c60 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab44d759 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x000dd586 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x03a17472 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0a26910d rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x217a3369 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x35223b90 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x38320bd2 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa0196efd rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa9ebe28d rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc2c8a289 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd40130c2 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xda0b2784 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe8d222b4 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf64c1439 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x00e74976 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x01df62ed rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0245d7b6 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0ba4e27c rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0d094fa0 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x11f1ec5b rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x23094f5a rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x23bc80b7 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2dbd0249 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2e7c111e rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x394ed68b rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x43fdca93 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x47e7eefb rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4c068169 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4f6db2f6 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x53857c77 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x554ddc66 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x55f4c91d rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x58f5eed7 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x60ab9f58 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x63a18925 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7339bcd4 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x73568148 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x76e828e3 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x88332ed5 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8ed5f443 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa34b7ec9 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa72758c2 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xadcc3f7e rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb9e6169e rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbf9aefce rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc550be4e rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc675c6e0 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcd7e8142 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcdefbd8f rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd8337f78 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdca58569 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xddc53a09 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdea36987 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdf60995b rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe7699ba5 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xee116341 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf0061820 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf0a0b34d rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf4cce1a0 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf9ec0534 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfd53e7c0 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x0f708c12 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x34a0b268 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x539f11d7 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x66683119 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd0a505d4 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x3cebc1eb rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x694ba4cf rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x8ba5d075 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x03d7afc7 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x069f8816 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x21f5cc27 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x40e92b96 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x438e2a62 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x57bbe9e9 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x58b97d72 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5aa136eb rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5ca564f0 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6b7a2648 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x81a12e06 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9d86edd9 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa72c5f07 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xaf3282e6 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb25c2190 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb459fe07 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x117eab7a rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f96f137 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x94011595 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe793caa0 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x03a3bc50 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0c64253c rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1242d9f8 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1e05ea78 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2a9cd212 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x34adb63f rtl8723_dm_init_edca_turbo 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 0x47799271 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5004ab22 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x601d226a rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6824283f rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x68dcb31c rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x708b7a94 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x74affb1a rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x89dd0cc6 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x42d6222e rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x47ea2f53 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x49b7e410 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4c5a0839 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x541c0ec1 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5b9f4628 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6696c801 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x699954f7 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6a8a92de rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x703745ca rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x79ea04ff rtl8723_fw_free_to_go 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 0x9fd8950c rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa4b66aa7 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xab771981 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb1ae60a7 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc4fc8190 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xce4f66f6 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdf5ac4e3 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe05b47ed rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5f22943 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf591df57 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf69956e2 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0053e397 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x067135a8 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ab6c689 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8c44e8e6 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb1fe5fcf rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbddd8d5f rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcfbcb990 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd93099cf rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdcc61fbc rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xde29f187 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf16d95ef rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x053ce551 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b5b7065 rtl_get_hwinfo EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d2e000c rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0eb40517 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x195f789d rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d388699 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x232bc375 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x23bcf1be rtl_fw_page_write EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a8714e4 rtl_tx_ackqueue 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 0x4238703c rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f9b6d63 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f5f9b49 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6c369497 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x315f94c0 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3806c24b rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4189ef63 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x440c956d rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e8aab5f rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x67d11b8c rtl_recognize_peer EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7e58c706 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x85f46dd0 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x866bccb9 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e646901 rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x951880ac rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97561a96 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f4b153c rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x892b5a92 rtl_deinit_rfkill EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9d86a7dc rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9fb9b47b rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb786a56b rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc2c847e1 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcdddef62 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf7997a7 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd088300c rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xec3bae97 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6c20b32 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6c7e0c3 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9f1b6eb rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x98c5ef03 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9a1db64c rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0a6a57a rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc6231fe4 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcefaf07b rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf2d35a2 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdbf8f994 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeba9b076 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed8654df rtl_lps_enter EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x24f79cf8 rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9a107613 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xae0e24cc rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x19535d5d rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xaf7f7796 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc5a69452 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 0xd40d9829 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf3943e02 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x229b929e cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7452fda6 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9ac943a3 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xeb79cc99 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x86cd2d72 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd7bd2bfa wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xec989f17 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf1f56cf2 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf5451a45 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x17af7f04 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x89b8e214 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xb65e19c4 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xec11bbe4 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x6724c7fa wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xe96f58eb wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xfa5ee567 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x000c4e0d wl1271_cmd_data_path EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0728fdaf wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0a305d5c wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0a722bbe wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1147677d wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a052438 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0936a3c9 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c79c8a2 wl1271_tx_flush EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x23172515 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x26f60abe wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2726eff4 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2a0779cc wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2a6aa204 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x37dbda02 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3d622823 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e34b679 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x41fda04c wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4c4b9dfe wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4fbf797c wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5327f778 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5548d5f7 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ffa3304 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x74da5310 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7bafb5d5 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2e12808b wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3282db6c wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x353efe16 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x37639678 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x391955aa wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x39f0479c wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3c1e9051 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3c9237b5 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a239763 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e57bad7 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4ec5562e wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x610e82ca wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x630c9393 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x68572e78 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6c59ad7d wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6c86d7fa wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ceaa9c7 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7400a533 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76ae875c wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x83e997ea 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 0x8e700549 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9157049e wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x929f9371 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9804b708 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa0de4c9f wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9c61550 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb48ba0b6 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb52ab75d wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5fc8e11 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc2e9872a wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc321430e wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc70e2587 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc7cff1fb wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xce53b0e3 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd66eb45e wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd8672a0a wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdd6c17db wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdf60d8be wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe57b0ab3 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xed99b756 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf64f1dd8 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa472536 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x87ab781a wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8c47ad07 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x90cea08b wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x916b93fd wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x933ade46 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x97cf4f3c wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9e1212e9 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa0003785 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb1bd22e1 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbc1ea81b wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc272b790 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcaaa08ea wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcc1986cf wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcd738e8b wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdaf7400e wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe79ee612 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf2b62d6e wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf32a05c8 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf3de81b9 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf5fbaae4 wlcore_boot_run_firmware EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x0a4a031c nfcmrvl_parse_dt EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x71e0c7cf nfcmrvl_nci_unregister_dev EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xcd6a3002 nfcmrvl_nci_recv_frame EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe50327f8 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x0992e722 pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x245ad3e6 pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x4c130e46 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x59fae074 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5c3eccad pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x846a55fd pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd5960d8b pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x07d8a751 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x37ef5e1b pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x54d45f4b pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x90c78c23 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc0899398 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc53d8a95 pn53x_register_nfc EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe0bed96d pn53x_common_clean EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x04c20157 st_nci_enable_se EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x103b749a st_nci_probe EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2292c6fd st_nci_hci_load_session @@ -15177,55 +15184,55 @@ EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_c EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x35ee7d33 async_pmem_flush EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xf993b7a2 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x07f36b17 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0b335475 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0b4ab62f nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0f38aaa6 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x00301649 nvme_get_features EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x15aeb104 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x169a9574 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2815e630 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2a0b6f5a nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ec6c99d nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x36ef80b1 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3d376b86 nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41304a29 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1b3968ac nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1f72c2d3 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x21ba6751 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x22b8650f nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x237450b1 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2c694228 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2e8f4a21 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x334e03e3 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x38448359 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x40004e83 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46252ca4 nvme_wait_reset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4f727609 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x53b0c9bb nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5e1ba8da nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x62783b1b nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5d35a5f8 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x62c90233 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x63a027cf nvme_stop_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d04504e nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x706dbfc8 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x74533fde nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x794e5246 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7a4568d5 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x680843c0 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x71cf9c78 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fe4db9d nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x80309b1c nvme_shutdown_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x85f5a5ed __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x87d004f1 nvme_reset_ctrl 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 0x8ea46f7a nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x92d58d3c nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9677aa18 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x99ea9da7 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9b5b9fa6 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xae6d8260 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaf6b376c nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb8911a1f nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x91011778 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x997d3b80 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9a89261f nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9c8e639b nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa13e9f38 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa84dcbf5 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xab63000b nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb02a152e nvme_complete_rq EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb9361f68 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbd7268dc nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc48728f0 nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc4fd4c5c nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd3017809 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc139c678 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc1bef112 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc21f7bce nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc337a2e5 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcc1ab1f8 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd06f6ce5 nvme_init_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 0xd6471ad9 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdde35222 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe154a2cb nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe84e3603 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xed3386d4 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf038d974 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf16068c1 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe191baaf nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe5b257ab nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xec614786 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf22bdc4a nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf40fdb8e nvme_set_features EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x01b6d1d6 nvmf_should_reconnect EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0f3d6e9c nvmf_connect_admin_queue EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3ae3b384 nvmf_unregister_transport @@ -15238,24 +15245,24 @@ EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc4d7ce12 nvmf_reg_write32 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd3968c74 nvmf_reg_read32 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf5be2140 nvmf_reg_read64 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x338d42d1 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 0xd6844407 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1e8d7cb8 nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x33f5f729 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3d84e4d2 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0b08f645 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x15e06baf nvmet_register_transport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x71290266 nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x76a8fae0 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7f59778b nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xac69dd66 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb2a78186 nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbfdbf4ab nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd255f02a nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xedf8934f nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7b1fe569 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7f609dfa nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8c6e7970 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9159cb42 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9c0b089c nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa30c4b64 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbb0a65fd nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbf6b86ee nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc4e033a5 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 @@ -15279,9 +15286,9 @@ EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xc986cc95 reboot_mode_unregi EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x39511851 bq27xxx_battery_update EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xe6e09c21 bq27xxx_battery_teardown EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xffe952bd bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x2f77a2c3 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x361e49c6 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xd91f71ff pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x260789f8 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x7f3f17e5 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xd4319b29 pcf50633_mbc_get_status EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x3eaf69cb ptp_qoriq_free EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x4b2a406e ptp_qoriq_settime @@ -15293,89 +15300,89 @@ EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xe66ef8f1 ptp_qoriq_enable EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xfa92e918 extts_clean_up EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0b047860 mc13xxx_fixed_regulator_set_voltage EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x738559e5 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x85469d5b mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x991620e3 mc13xxx_parse_regulators_dt EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb3aef16a mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd6241817 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x06ced90c wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1e1ee9ca wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x47067411 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xcd2cdcd5 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xdd9153a5 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf5569245 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe19df664 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x03c219b2 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x06e35ab5 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x397d6fb4 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7ed65dc1 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x96531e34 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb2e494f4 wm8350_register_regulator EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xe95dc780 wm8400_register_regulator EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x1dbede00 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/rtc/rtc-ds1685 0x4d8fb55f ds1685_rtc_poweroff -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x001e65e3 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x01aee7c3 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02252636 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a13f956 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1268c433 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x13c727e0 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x206b9546 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x27f049b8 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e2f925e cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e28f16d cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x49d7136b cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4c560c6e cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5a2c3e6f cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5bd0f36e cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ff15ade cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x627348a2 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x676e294d cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74d53292 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x799c0e5d cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c92f9ee cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f728459 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f7fe3d5 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fb58ee6 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x1f44b6c3 ds1685_rtc_poweroff +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x05ed0620 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x06dc27e5 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e00b4fe cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x23b7bc18 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2b236b93 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2de2067d cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2fe13ec4 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3db0290a cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x477c8cc6 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x562f4a18 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x57bef716 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f0b88ce cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64f5e7c2 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x68f13eba cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6b4a084b cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6e0b070f cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6e539fcc cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x721acdee cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7800a8e6 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x78383a06 cxgbi_iscsi_cleanup EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x804ca41b cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b6036e2 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8cf5da66 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95b77d87 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9900f660 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa1e36a5e cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa6676803 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xafbab78b cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb6c847f4 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb8eabc43 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x88fb3ad4 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x947834bd cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9943f5c7 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99d300ec cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9d040247 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa788191c cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad0a1266 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad73d2ff cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad8b4b8f cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1868204 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb325e9a2 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb5b198b6 cxgbi_device_portmap_cleanup EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd04139d9 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd219c87d cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4679110 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4f85178 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd7c7d2f3 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdec1ed96 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe196d753 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1b73c0e cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc2453186 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc35992e1 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc551f330 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcce0dcdf cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf5e4a9d cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf9203d9 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd253426f cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0cec074 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe240bb0b cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xebdd7641 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xee5899dd cxgbi_ep_poll EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2eaef65 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf723efc7 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf8af2caf cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x22847b46 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x252ef90b fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x279684c1 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2e5c9cca fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x582c2225 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x633663d8 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x880520f6 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9c2d551e __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa729d54d fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb0da3670 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfaa7e3b4 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x03bba754 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x144dbd45 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1485806a fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1f3aa397 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5f271bf0 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x79565bbb fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa255433d fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa356b80a fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xac459d5f fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xae003631 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaebba659 fcoe_start_io EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc5b4b373 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcb57cff2 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd79ac9a8 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe1d23fe7 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xebe7f644 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xed68a220 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd9460f5b fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe2f76868 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe5e141c0 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe98e0c37 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xed8326a0 fcoe_fc_crc EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x8a1997af fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xc9e5c5e2 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x26a3aba1 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x52c47643 fdomain_create EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x046dbfe1 iscsi_boot_create_host_kset EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0fd62074 iscsi_boot_destroy_kset EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x17f5f637 iscsi_boot_create_target @@ -15384,203 +15391,203 @@ EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x48e452c5 iscsi_boot_create_in EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7d4fb71a iscsi_boot_create_ethernet EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x96db03fc iscsi_boot_create_kset EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x905b0a32 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x05e2d7b0 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x065d8d91 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x07893edd iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x08896118 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x08ede0c0 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c529fd0 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0dfa076f iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10586ac6 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10e8b0dc iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0257230b iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x029c98aa __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x07171ba3 iscsi_conn_get_param EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13af5699 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14991200 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16056d57 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c677c9b iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1db7f7fd iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21199d52 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a1ead3e iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b3078eb iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33d300f5 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39f66c4e iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b8a0a35 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x178a7638 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1ce29586 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1eeba231 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x237e54c5 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28dac14e iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ad14b12 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c6394f4 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3765001d iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x38beffcf iscsi_conn_stop EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3de93c26 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f6abb74 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4182a752 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x457eab40 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x475426f5 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x487419d2 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4aa44f25 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5816b61a iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a03ae2d iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65d52218 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6abbd475 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6f6de4d9 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x87cce5f5 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41f0659f iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x44822495 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4482c38d iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5176744c iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x51f657c4 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x544edf00 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x58bd11ae iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66e8de9c iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x670275be iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6ec8af14 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x708ab604 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x721bf949 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b8006be __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b973ab1 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7db98b4c iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x81e9d0d6 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x880a5c32 iscsi_conn_teardown EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9837707e __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa6879493 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb50efa04 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbaaa2d04 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbab5cb3f iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbde7a239 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd254e07a iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3c9f464 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdcf12ada iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe1245b96 iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9f20691 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8deae616 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f5c35e1 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c70878d iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa1fe62c3 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa438eff3 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4e46fa6 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa5a2174 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae79ff95 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf2836fa iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb344d940 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc009259b iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc67b7392 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca142692 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb700d86 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd137bc57 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe1e57712 iscsi_complete_pdu EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb2bc12f iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb3fabe9 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfbba1b57 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd02f914 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0bca5bd5 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1c648c6a iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x272451d4 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3af2a21d iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x49404544 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x527ba877 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5f6afc4b iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7f219c17 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x80d3e364 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa509bd82 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb0b6ef28 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbcc8d7ea iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc6b17675 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcae6f7bb iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcfc0affc iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeb45548e iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xef12d72f iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0680a62d sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x14d7297e sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2b9a444e sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2f7e3c0b sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x33ea2fa2 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b877171 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x42671985 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x47f4a3e1 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4ee0f697 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5a2bed4c sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf0dd556a iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf277d5be iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3c6d18a iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0b6ec30c iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x12d67a55 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x152c9b7e iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2dfb953e iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x32682f0f iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x475cbfba iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6f2d938a iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x70315ed5 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7316b0f6 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8ffbc9a4 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xac4a12f4 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xac4d9582 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcd14ae58 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdd6eaa23 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe2de9c12 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe45cab7c iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe63b0f2a iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x079a7639 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0a1134f1 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x139e2830 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x16a1ff6c sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x24258202 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2f9e6ac6 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x41e3ca8b sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x459da0c3 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4f1ee458 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x59608eb9 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x60bca538 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x72fcbe4f sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7bc27114 sas_domain_attach_transport EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7c71c1a5 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x86178daa sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8a6ff5bb sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a2522a0 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a763788 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc55b133e sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc6d939cc sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc8bb5cb4 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcb921379 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8a811e9a sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8c80ef57 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x903be308 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9c049a73 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa9e3fcc2 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb3586a2c sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb5c445a8 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb7d72958 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd18c5b44 sas_alloc_task EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd1e1c281 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd2ac20ea sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd687aec3 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe1525f3c sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xea07031b sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf593a610 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf6e8cca3 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfc1d9c46 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xb087e661 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf3165ee8 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf5b5fc24 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf73acc40 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xefd3b190 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0360e71f iscsi_get_port_speed_name EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0896dfd5 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b1a4b23 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a7ab839 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1af5f0ba iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a802f73 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x377e273a iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x094c01c8 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ad6ef0e iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15c70cf0 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1762b0b9 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x199861ec iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21dcf442 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x26061e41 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3170e3a2 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3223a6c7 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3625acf5 iscsi_recv_pdu EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x38775e70 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a45f7f3 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3c565916 iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f57df1f iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4206f74a iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x45e02d85 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49efadcc iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4a4ff54f iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54f700a9 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x390af6c8 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f933d90 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x409fdb83 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42d62678 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x451b6c94 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x45501c20 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47d187e2 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x549122bc iscsi_offload_mesg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5960355b iscsi_flashnode_bus_match EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d530e67 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x66975109 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x66e5b7ec iscsi_block_scsi_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6bc2cbba iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6c038218 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f0bec31 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7124072f __traceiter_iscsi_dbg_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x737df9eb iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75f60244 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x77ebf259 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f0c4233 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x77d03870 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ec36c53 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x81a501ae iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82df03cf iscsi_create_iface EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x87d7dd5d iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x869ab9b5 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 0x8eabdb42 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91202b9c iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x954bc92e iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e8e5b37 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f4f52c6 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a1e42b0 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x952108a3 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa61eef0f iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa633190b __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa914371f 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 0xb04904f0 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb39ab021 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7614771 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb60ecd0e iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9438ee7 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9b8ab3d iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbac05114 iscsi_unregister_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc0da07a iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2aae167 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8f8eebe iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcea6455b iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf7d5a80 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4a1d3d7 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbd39cc88 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc1aceebb iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1363027 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd35f1a6d 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 0xda512dad iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdda948bc __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf271dba iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2ac670c iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd96e3dc7 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf2bc04b iscsi_session_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe68fa047 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe729eaaa iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea1105aa iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2ee18a1 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf674d0b5 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7af3e62 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1c4a6dba sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4ea9cfaa sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd1195e39 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd26ae365 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee84515a iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf22800ae iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2803cfe iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4087383 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf89e7c43 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x000ee127 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2ee664a5 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x35004e65 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7cc41b6e sas_enable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x87b8259c 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 0xd46594a5 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x04b0d332 ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2dfd20e6 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x349f0f1f ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x3e7cc9f9 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x44ecc5ed ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x56a93e8e ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x65d000e7 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7044d32f ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7102943a ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x076a410d ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1b6d17db ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x20c56d9c ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x56192aff ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x58a5fa56 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x5d4b8f99 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6a565278 ufshcd_uic_hibern8_exit EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8199b26d ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8bed6a4e ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa64d0c12 ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa9109ac7 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc37f564b ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xcee69b41 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe778f1c8 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xecfcfdeb ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf1d11031 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfcda00ac ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfe7ebb29 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x48dba633 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x77a64755 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x93ad179d ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x980f414b ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9f8e72ee ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xad53e9e2 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb18e2000 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb583f48e ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc1a7aac1 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xca8b9ad3 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd9bc94c2 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe579bacb ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf301f5fe ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfd30977c ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x0596ceae ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x49331034 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 0xeb4f8287 ufshcd_pltfrm_init EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x097db0d6 siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x4bff5e86 __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5c30f309 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8af3fdcf siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb9be5ea1 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xead4e50d siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x0ffb2a2b __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x10d3fb3b siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1364f8d6 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2f7b770c siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x47174006 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa408b20e siox_device_connected EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x138b9418 __slim_driver_register EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x14a3f77e slim_register_controller EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x19fc062d slim_report_absent @@ -15630,24 +15637,24 @@ EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xfb965e90 dw_spi_set_cs EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x80199229 spi_test_run_test EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x9bfb49e8 spi_test_run_tests EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xe16486ee spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0024c99c spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0fabd0ff spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x13b7db19 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1d89c862 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x318be030 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x32c79ab7 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x54e60da9 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x667d0d40 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7dcdbabe spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x90a41aec spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb588ca27 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc7189d39 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd30fc5a3 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd60161be spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xde265761 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe29bee91 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe8e3ef8c spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf41743b9 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x11a5a103 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x225b6cb4 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x39478547 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x47de8a9c spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7321e034 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8924bed1 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9a039d79 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9ea4f9bb spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa2d00e72 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb414eba0 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc735eca1 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcc337da6 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xda79c099 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdfefd555 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe4b8739c spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xef396ea6 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf927f4f1 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfacb5bce spmi_controller_alloc EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xac665ae1 ssb_pmu_spuravoid_pllupdate EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3a177cb9 anybuss_finish_init EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3be63bc5 anybuss_read_fbctrl @@ -15705,10 +15712,11 @@ EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x5bf7a127 gb_gbphy_register EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x5f1058cb gb_spilib_master_init EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x884f5524 gb_spilib_master_exit EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x2a2c01e9 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x59be86e0 target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x924fbb2b target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x9a635400 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xcf4d083e target_init_cmd +EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0xb45c3116 sp8870_attach +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2bf2f9c2 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x9519e0f6 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe2215b90 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xfc2625f2 target_init_cmd EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x074685ee tb_xdomain_disable_paths EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0a063d71 tb_ring_start @@ -15750,21 +15758,22 @@ EXPORT_SYMBOL_GPL drivers/uio/uio 0x1b21aa45 uio_unregister_device EXPORT_SYMBOL_GPL drivers/uio/uio 0x1e96d980 __devm_uio_register_device EXPORT_SYMBOL_GPL drivers/uio/uio 0x248c3c72 __uio_register_device EXPORT_SYMBOL_GPL drivers/uio/uio 0xcce594f9 uio_event_notify -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xb648e045 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xc0f1650e usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x3d851df7 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x2558157f usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x2b08848c usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0660e8a5 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x3779ba87 cdns_set_active EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8063b3a4 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x81927675 cdns_resume EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x85282a54 cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x92d6d346 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa6af27b6 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8a84b672 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9bd8d7d7 cdns_remove EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa6e1d49e cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xc1ba7176 cdns_suspend EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe57250fa cdns_drd_gadget_on EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe747c38d cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5a5d4605 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa19c38ec ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x28f17338 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xc721f5c2 ci_hdrc_remove_device EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd47a13af hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xed2c7033 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xdb895635 ci_hdrc_add_device EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x3dc4cd16 imx_usbmisc_init EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x51807241 imx_usbmisc_hsic_set_connect EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7031025c imx_usbmisc_charger_detection @@ -15787,23 +15796,23 @@ EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xcfdf77e4 u_audio_get_vo EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd9dec7f8 u_audio_set_mute EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe77fe6fa g_audio_cleanup EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xfd5a6b31 u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x13bf4842 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1b9630b9 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2370a7cf gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2f780383 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x74269776 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7c1fc423 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8188b71a gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0bcd1830 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0e2af377 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x15f33426 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2c7a7d13 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x30b9a3a8 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3996a740 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x572fa828 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6a0cc4d0 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x70718b5f gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x83021fd9 gether_set_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8e1b6eb7 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8e94edc1 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x94849a4e gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9cc7f0af gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaa0cd0f8 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb3e4cb1a gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb41348b3 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbc31579b gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xeceacb4b gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x92223fac gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9520fc1f gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb6218d41 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd3b5ef23 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe13c8a58 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe3afe654 gether_get_dev_addr EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x099fa771 gserial_suspend EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x09e62123 gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line @@ -15856,21 +15865,21 @@ EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdc2aba51 fsg EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe538f931 fsg_show_ro EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe7e0995d fsg_store_cdrom EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0fffad0c rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x10e991d5 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x231cf898 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2533e08b rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x260fff12 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2634aa76 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3487281e rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4c5a5070 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x60b3c37e rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x621d8fc6 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8eea17b7 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xde4b4d02 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe534172e rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe7ea1007 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfc50faba rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3137a608 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x338f675f rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x369c433c rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x513c2649 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x59ca53b4 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x63eb4339 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x66f3ea7c rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x83d41274 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb4ac810e rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc3f12474 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc4f67418 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc9397d92 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xeb1a8bab rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xeb653565 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfb4e37eb rndis_add_hdr EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0180dd39 usb_add_config_only EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cb7e477 usb_ep_autoconfig_release @@ -15966,15 +15975,15 @@ EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfe3dcbc8 usb_gadget_check_c EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xe8414299 renesas_xhci_check_request_fw EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x2d4f214c ezusb_fx1_set_reset EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xcf758d7b ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1913f5a4 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1ecba3d4 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2ef94209 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3c79d714 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3dc2a1f5 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x50f5a088 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xaa2f418c usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xae0b4259 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc43ac46c usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x09a6ce6b usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0d2f3714 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x121a511a usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x502ef880 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5b33aa10 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6e60cc75 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa4c1df20 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf866d534 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfc1c05d4 usb_ftdi_elan_edset_setup EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x06f37341 musb_queue_resume_work EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb @@ -15992,9 +16001,9 @@ 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 0x110b3949 usb_gen_phy_init EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xa435e890 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xa86eb481 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xb7031e3f usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xcbfad63a usb_phy_generic_unregister EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xfd296950 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xfdf8fada usb_phy_generic_register EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x1d5faa93 isp1301_get_client EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x4f929c11 usb_wwan_port_probe EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x04ff4572 usb_serial_register_drivers @@ -16061,6 +16070,7 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x80930563 typec_mux_register EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8297543f typec_get_negotiated_svdm_version EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8eee6e1f typec_cable_is_active EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9145abb6 typec_altmode_attention EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x93278487 typec_port_register_altmode EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x94d9ab1c typec_mux_get_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9fa9b533 typec_partner_set_num_altmodes @@ -16079,7 +16089,6 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc3457396 typec_set_data_role EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc8a7ca9e typec_altmode2port EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd081e139 typec_mux_set EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd493a21e typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd4e6b8dc typec_altmode_attention EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdaa1bd57 typec_cable_get EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdc136931 typec_unregister_altmode EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdd85043c typec_switch_set @@ -16109,30 +16118,30 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x9811049f ucsi_resume EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf14d621f ucsi_register EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xfbcfc8cc ucsi_send_command EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1262cff5 usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4539b393 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x56cbb793 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x59cfa8e7 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6a845b49 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7383e427 dev_attr_usbip_debug EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x75d8852b usbip_event_happened EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x794a61d5 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7c608343 usbip_recv_xbuff EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7e30caf5 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x90b0cbef usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x886b52a6 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x99f6f3cd usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9f6af17d usbip_alloc_iso_desc_pdu EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa291f4e4 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa865070e dev_attr_usbip_debug EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa93625c7 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xabb0413c usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xacd860f6 usbip_pack_pdu EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x19a8be73 vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x27ee91b1 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3420988c __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x38a10c39 vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3fd6c710 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5f6c9a61 vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5fc5b1a3 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8b6ba3f5 _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xff654826 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf3c5b9bf usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xffe047cf usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0c83ce4b vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8e2fe3c2 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa9cfee5d vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb3cf487a _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xbba24e23 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc43d63ec __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe57cf78c _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xea316447 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xfe6145ab vdpa_unregister_driver EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xd0c41031 vdpasim_create EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x8fe5ea2d mdev_bus_type EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0102b0eb vhost_exceeds_weight @@ -16219,329 +16228,329 @@ EXPORT_SYMBOL_GPL fs/dlm/dlm 0xbcf17a0b 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/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x279caf26 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3f0cd699 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4e96100a nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x55581f64 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5ab51500 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x64012b14 lockd_up EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x827bd5bc nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x970b92f9 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa301e358 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xaca6609c nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb0802f98 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc5709948 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xedac3881 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf98e2cf3 nlmsvc_unlock_all_by_sb EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02eed3b7 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x037ad8b8 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a4bf191 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bdd1427 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c8ae0fb nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f94120f nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06277a04 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07dc4f07 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09d0cf92 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a0f4272 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d4368e6 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0de01416 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e29d3dd register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f6b52b7 nfs_show_options EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x123cb5a0 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12eab3ce nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13b2e69e nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18756a25 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1881a851 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e5b2868 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1edb697c nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f871f7a get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14781c1f nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17c306cf nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19ab3f64 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19f94b0d nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b526c54 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1be3d1d4 nfs_mknod EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x249ce2cf __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25105d91 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x263bc7b0 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26863aca nfs_commit_free EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27fa4233 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c386b15 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ce36d1d nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d26f60b nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d5b6fca __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e204cee nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28d2907d nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b94194b nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c14aa3b nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c855793 nfs_do_submount EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x308a130f nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32861d8f nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x345b4021 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x354638f6 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39b50846 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x307a127d nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x308bb2a1 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33a7ee26 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x342e51ef nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x345fd54a nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35cda683 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x384a48fd get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38f116c5 nfs_file_read EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a0a84ba nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c0b9c6a nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ebc634e nfs_commit_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fb13959 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ff6fe20 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x406366f3 nfs_client_for_each_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x413f83d8 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42a1efbe nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x407edd8b nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40b6c91d nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41b08942 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41cd6a73 nfs_initiate_commit 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 0x45289a2c nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45e3aa3c nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4617c4b3 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47c24686 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4547991e nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45e1372c nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49b10a03 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ae1b507 nfs_wait_on_request EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ea62d08 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ce0eb0d nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51246477 nfs_rename EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x526f20a1 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54a3a2e9 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57ec2b55 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x538f7cfd nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54c4c8a6 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x569a94df nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56f6c933 nfs_show_path EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58b8f958 nfs_client_for_each_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59e0c172 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a6b1f52 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ca90725 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f651ba7 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x600b5e2d nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x615d6264 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61e942ee nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63518920 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63840d39 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6392f2ab nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6408f6f3 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6522e232 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6764e5de nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59e3df94 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cea707d nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d9f8318 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e0abc42 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6026b372 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60d0a1fc nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x623b8302 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65326206 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x657b9d45 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66641e54 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bc41ce5 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6be5a90a nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c1d5ecc nfs_pageio_resend EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fe9cb24 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7068f8e4 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7148aed3 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ed134a6 nfs_access_get_cached EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x754c1b2d nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x760a43a7 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7841e16e nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7aaf6728 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74195104 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75567c00 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76afa90d nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76d1acec nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77d3b743 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bd002c9 nfs_show_stats EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f396e4a nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fa4025a nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7da93b43 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e243f54 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x827b4000 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8292cc2d nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832b830f nfs_kill_super EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x849c4199 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85088306 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x870a323c nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x873ee198 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87c1f9f5 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a8e4d02 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c5caeaa nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e144837 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90737941 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8356f8a9 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x838aca1b nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83d5bb94 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8450645a nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85038340 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x853aaa16 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x868a95d4 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x885d08e8 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x886d0c23 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x889513f7 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8980398f nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89bddd20 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c7e24fb nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f5271d5 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f6e8340 __traceiter_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90cfd1a4 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x911231f8 nfs_wait_client_init_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92d65ed3 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93e94abf nfs_fscache_open_file EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x964b48d3 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96307991 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x971aea8e nfs_put_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98ba1921 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99029cbd nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ac36c57 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c19717d nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b5acb2b nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9db426a5 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e4bb5c5 nfs_pgio_header_free EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0957841 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa111b84b nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa127352f nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa40d3385 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa601a348 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1a54526 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2b859fb nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3addd3b nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4a11b0a nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4ca4f44 nfs_clear_verifier_delegated EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa743837d nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8d21e5b nfs_link EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaadf9495 nfs4_fs_type EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacf8acd6 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae9fe7f8 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4b5a65c nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb69d64ef nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb86f7830 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8c27726 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9adc3ff nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9b6889c nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbde7e96 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf1a91a2 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfbe223d nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacb53468 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad239dab nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafa34f5f nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0192a53 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1d42fe6 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2f23835 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5c236f9 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7587ef1 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7aabdd5 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb895216f nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8b01a58 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfbb7c19 nfs_fs_type EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4a49d52 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4d0beef nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4f10cf4 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5588820 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc609dc26 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc742374b nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7a726f9 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7e6b1de nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc81f7c17 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc884eccd nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd97d4fd nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf1e2746 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd04ac744 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd491fb48 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8bfb6d7 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc88c3f6e nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd3d3c9a nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0162edc nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0afc5f5 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3640f05 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4496a79 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5a9960b nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9547c3c nfs_setattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd596e8f nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddeafd07 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0087714 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe08c4871 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0a6184c nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2a86134 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2f933f5 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe57b0b22 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfc67f65 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2afa371 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3033d96 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe31ff08b nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6e7a03f nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6eb2055 nfs_filemap_write_and_wait_range EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7f9486a nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb8b7cbf nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebe06b5d nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec62278f nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefcfd17e nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf231dc7a unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2ac311f nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4306411 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf47d98ab register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf50cfa1c nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf78908ca nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf908bdc0 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe80b46b4 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe80eead4 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9b53a58 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeeee3821 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1155b9d nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3b4e44b nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7aa5c1d nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8ecc5a8 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8fb6999 nfs_may_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb619e55 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfab5df30 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb86f357 nfs_alloc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd02c2bd nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x38438141 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0121e18d pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x7ac559c0 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02146677 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0253d968 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x043b0cc7 nfs41_sequence_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05d4519a pnfs_destroy_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08f19ed0 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a90c563 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0920bc19 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x092e3edf pnfs_generic_ds_cinfo_destroy EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fddfd1d pnfs_read_resend_pnfs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1074b439 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x119bbef4 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x146b71c6 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x151d04ea nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x181b261d pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18d508b6 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ab3821f __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20d256da pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2138f73b __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x147ef1da pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1605aa76 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c574b06 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ebf5a98 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ed7dcfc nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21376c97 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x270080c3 __traceiter_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28d0a88b nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b8d1d29 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2cf997c6 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30870338 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c0ac57a nfs_remove_bad_delegation EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32769d8b pnfs_generic_scan_commit_lists EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33f568f3 __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d8c6ee5 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e064c5e pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4287ab1d __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x441ae6f1 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x47b204f8 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4eddca50 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x385c7b76 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b2c1a48 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3db66b2e nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f31b0c6 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ee21155 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51ce5f78 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51f9f124 nfs4_init_ds_session EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57baaf09 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x597492c3 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58e60d16 nfs4_init_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c876ac0 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5bfeb889 nfs4_proc_getdeviceinfo EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cf19dac nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d93b647 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5dc365b9 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e9e740b pnfs_generic_prepare_to_resend_writes EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x60ac6e29 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64281a34 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x654e3f4d pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x688eabf0 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x637bf1be __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63b7229b nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x652b380a __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66a94df7 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69b66115 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69bac1a6 pnfs_generic_pg_check_range EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a940231 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e1b03c5 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x763525b4 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77690198 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c22f60b pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x729bc09d nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74d64ef1 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x761aa1d2 pnfs_layoutcommit_inode EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4ce637 pnfs_put_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a5305f8 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a91823b nfs4_schedule_migration_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ab7bcc6 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c5e49d2 nfs4_find_or_create_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x815d8e5a pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x821fe4ff pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7df9b2b3 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f0ee2e8 pnfs_read_resend_pnfs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8264875d pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x845565fb nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c3a7afa pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8dddbe21 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f306c5e nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f7d00bb nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90dd9dc5 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92b37819 __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95400f46 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96ef7379 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8442205b __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x852d774b nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85d5aed5 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87a5a65a nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87b37983 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90e776f6 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93a1c1b3 pnfs_generic_layout_insert_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97d99c86 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x993d571c pnfs_error_mark_layout_for_return EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d15677b pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e9c1d46 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9fe0f398 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa13f4502 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3ec5308 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa47fa403 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6693682 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa723115b pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac19e115 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb12eebc5 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3bbc49c nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb700a588 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb90ad6b0 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0168e0c __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa182f5c4 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa356658d nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa46ef5c6 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa645b48e pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae94f2ab pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6214713 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6a11c44 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb732b0cf nfs4_pnfs_ds_connect EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc22064e8 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6ee31b5 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6fd5be0 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb545ab9 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbed5ee5d __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc01deb7b pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5061f01 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5390008 pnfs_alloc_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9174143 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7f1f011 pnfs_generic_pg_init_write 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 0xd3fd9e71 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde72cd58 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde7d5b22 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd281e5ec pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3df5e19 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd77eeef4 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8b6595c nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9b1e25a nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdda7bb9e pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde43ca71 pnfs_generic_write_commit_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0dda573 nfs4_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5f70849 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9713421 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9c558f5 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2908e03 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5a60ca3 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9ad8be9 nfs4_find_get_deviceid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb35e875 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 0xeec80a54 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf72621f7 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef412f8c nfs4_schedule_stateid_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf85d04ae pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf8e35bc7 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9346c07 __traceiter_pnfs_mds_fallback_pg_get_mirror_count EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff4ffd56 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x0236899c locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb7f378d nfs4_pnfs_ds_add EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x2ded13d2 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe9154c74 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x4b819a50 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xdc20b177 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe0c72785 locks_start_grace EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x05a5817e nfs_stream_decode_acl EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x104f9376 nfsacl_encode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6a27b44e nfs_stream_encode_acl EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6ab7e7ee nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x8b0dfe19 nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1a9bf8ff o2nm_node_get +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x179aad16 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 0x2551e34c o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x38815e47 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x43903937 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x39525eea 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 0x72695514 o2nm_node_put EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x840fa99a o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8f9cbfb4 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa39d2d76 o2hb_setup_callback 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 0xc2935288 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 0xcaa562cf o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xeb0d1518 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe1ed9547 o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfad71c96 o2nm_get_node_by_num EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x29d37a14 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4f836d27 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2047e5e5 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x266224dd dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3d0d5d61 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x73c1542f dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7498cf42 dlm_register_eviction_cb EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x8895a7a4 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xae8dd179 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc71aff93 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd4c0de9e dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x81ec6b48 dlm_unregister_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname @@ -16602,1064 +16611,1064 @@ EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x63adbf92 encode_rs8 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 0x711060d8 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xa4cdfa07 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x071114e1 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x12f54bd8 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x27e9c717 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x4d010de0 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x8ce476ae garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xe46956a7 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x04b65f02 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x06a60434 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x1b22cfe2 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x25144f00 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x50c2a109 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xdfa4b6b8 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/stp 0x764b9fa3 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0xe8106b9c stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x18998423 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xcb35e8d4 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xa5f60eef lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xd339e7c8 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x2c4b9efe garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x62210863 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xbc680e63 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xc633b8a1 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xdbad7340 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xf47e8736 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x1b3bf723 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x381d8488 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x4142f2fd mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x786b5c8e mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xe81d2f91 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xfd65db5f mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x2f4244e3 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xa0c7ce0d stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x8af79581 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x8bc88213 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 0x64e1c6de 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 0xd0fd03e5 ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0c019cc2 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x166cac07 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x201bfbf6 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4f5f685e l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x586b481b l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x66e7fc6e l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6bc14958 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc81aa563 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd38d51b6 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xdd87a6ce hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x049da77d br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x09501043 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x30835aa0 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3ce69080 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x590bbd43 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x62612633 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x71f45f5b br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x76d6fd16 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7e0e980e br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8320818c br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8f84a25f nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x94a9fe6e br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9626aec3 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x97a0ce89 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa0c5d19d br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb313317a br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbad43d2d br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd71efdd5 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdc5d59d9 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe3346c92 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf27394e8 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xffe69263 br_multicast_enabled -EXPORT_SYMBOL_GPL net/core/failover 0x8cc0c5fc failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xae44ee0a failover_register -EXPORT_SYMBOL_GPL net/core/failover 0xe456f1f8 failover_slave_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0611cc19 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c8ac2dc dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x120a3f84 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1104ae45 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x411d837e l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4a913759 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x52be277c bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5e3acec6 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7502766f l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x84e3dfd3 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb711dfb9 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfeb3ec7b l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x1854828d hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x09f14854 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3778f372 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3cd413ed br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x45f42fac br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x49ef0e63 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4f86ebaa br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x68d6c0c5 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6e378032 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7435e0da br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x74c989c4 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x76aa2861 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x783ab4f9 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x88132e08 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa2132a1c br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb0b5bb4f nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb211ef6f br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe04cd423 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe55e0587 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe5acff94 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0xec2d2471 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xec58f9f7 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfd1a913d br_port_get_stp_state +EXPORT_SYMBOL_GPL net/core/failover 0x11fc410c failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x18e7ced9 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x7b20c33b failover_slave_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x108de605 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x160864a9 dccp_insert_option EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x24c8c42e dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x275d5027 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x294b09cd dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x33f97c51 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d9f0ccc dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x47617732 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4b2fb338 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x36dde2ac dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3761f6ce dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3a3f3879 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d225a73 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3ee5e9ed dccp_rcv_state_process EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cf0a568 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4df2c8d3 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x51062543 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x526465ca dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x560b04a0 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x590e81a2 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e88e07c dccp_sendmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x63914bbd dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x68f09130 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6d1e172a dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ddd4d7b dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7600c015 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59a65f88 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d1bafe0 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x63487b95 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x65722f0c dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6fec946e dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x728f4886 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x74528f6b dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7d60986e dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fddaf65 dccp_reqsk_init EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8346f8cc dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8304645f dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8325dc0d dccp_reqsk_send_ack EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8fd1f10d dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8763ab8a dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x88428730 inet_dccp_listen EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9927c29f dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa9c168f dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb44877db dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd65b356 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7487ced dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f042612 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa9fd7f17 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa3b5ec6 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xace8baf5 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad5bb67c dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd1b627b dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc19bdf09 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc755a584 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd0710cae dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd31396c1 dccp_parse_options EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd92705e4 dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0xda5e6ad4 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xeccd1a81 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf5080cfc dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf5cecfc3 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf8b5dd75 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x115eae4f dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x68a141d8 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7e70119b dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xef021646 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf2dcdecb dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf32bff66 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x04a09eda dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x05ab1e3a dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0b26633c dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x31f75094 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x368addc1 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe06e4f16 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4484067 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf27e74f6 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0894d53e dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1fc64a13 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x656a717e dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x80d38c8f dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbde3e2d9 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf0cc78c6 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x09b8d246 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0f99bfdb dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1648db9a dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1ca4a857 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1daae641 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x20884919 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2542591e dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x28849f9f dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2a89b8a2 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x37138284 dsa_8021q_rcv EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5040d94e dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5102d894 dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x551cb8f8 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5520a551 dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4d7c5ab0 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4ee9944e dsa_devlink_param_get EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5e65a477 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5ef04a50 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x68fb8120 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x691cfb6c dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6a0802cb dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6f05de59 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6facf5f3 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x732dfda0 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x75bf2cd5 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7ddfa530 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x87f8a1ec dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x89f09f70 dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8a0a3693 dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x93a149ef dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x996aa467 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5b2578b6 dsa_port_get_ethtool_phy_stats +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x61c3b0fd dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7078b9cb dsa_tag_8021q_bridge_tx_fwd_unoffload +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x79148999 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7b85c99e dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7ff55dfb dsa_8021q_rx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8ba5d324 dsa_tag_8021q_bridge_tx_fwd_offload EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaaa0feed dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xad32346b dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb22353eb dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb47ca56d dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb90249dc dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa8c2511a dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb7d32d3a dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbb7c76c7 dsa_port_get_phy_sset_count EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbeca5cb1 dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbffc50a3 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc1055307 dsa_devlink_region_create EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcad7d5bf dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe5394391 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc3a7486f dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd58fcd01 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd9744413 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdb0063da dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdc8b143f dsa_8021q_tx_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdd8218a7 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe70e2dd1 dsa_port_get_phy_strings +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe95aae82 dsa_devlink_resource_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf1d56bdf dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf23c81da dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf62ee27a dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6b7a09f dsa_switch_shutdown EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x29be070c ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x71a5b1bd ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0c2df804 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x34017e85 ieee802154_hdr_peek EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf09d7781 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf78c6c5c ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xba61cad3 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc1da8fd5 ieee802154_hdr_push EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode -EXPORT_SYMBOL_GPL net/ife/ife 0x727cac68 ife_decode -EXPORT_SYMBOL_GPL net/ife/ife 0xd79abf8b ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0x9cbb1733 ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x15f1e0a8 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x7010637f esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xad8afbd1 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0x593d6c52 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x98967e00 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4c3fd56c inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x52429992 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7c15171a inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x82879488 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x98ecd998 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xae213ba3 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbd3f63f0 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcc502ea0 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe5ed2189 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xf7e61cc4 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0d3024ff ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x364f1b5b ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x37424e7b ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x47674226 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x59c8343a ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6be58173 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x77aefc4f ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9792254e ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xae6e0dde ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc3b8482e ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc75a2ba3 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc7c61b9e ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xca451666 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcf7870f4 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfb4fd9c2 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xff8d3b7b ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfff4412f ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xe2ba41a0 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x3ac68adc ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x1c956a37 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x2e25e0b7 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x28ce56ed nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3623939d nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x53251de3 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5baf42c9 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5fea0758 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8bc73ce8 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbcce33e3 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbfa75c7c nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x34d03b3b nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x01d32e7a nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x41d94fe2 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xb039144f nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xccc6ee14 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xf67048c8 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x19720fd8 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x25885332 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x53e2d503 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x877464d0 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd2013f14 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x203ce571 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5b089d4d setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x74aa1cd2 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xad882d73 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb25badc7 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb70fab67 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbc5a4d9c udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfa9e635d udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x2cd5abbc esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x4cb76a48 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd95b4775 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x302b1d41 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x440c71d7 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xee476ab9 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x97339e9b udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xc8e653f5 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x75c5de14 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x0baef9ac nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xe7e8cee9 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf0037a0f nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x52e44bde nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x19061c60 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x28d225cc nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x45368c4f nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8b4d271a nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbe0d019a nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbf49178c nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfac2b245 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xb3b79a52 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x4fdccad0 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x68bf4584 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x7ca0c961 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x349bd91f nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x50332931 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x07674cb3 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0cbcb0f2 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0f20c282 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1a7139ea l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2374b617 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x26b61351 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2b54a492 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x31d6f2d7 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4255c29f l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x428025d1 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4e7f95c9 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5e50b776 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6e9175f0 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x754f5756 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9e0e9275 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xab39c627 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb5b16945 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc5c6b810 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcbeccfeb l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe87e68d4 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf8f1bedd l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x8969299c l2tp_ioctl +EXPORT_SYMBOL_GPL net/ife/ife 0xff0eeb33 ife_decode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa1c6ebb2 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xbf1f9020 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xd75cb049 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x06c0d9a2 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x371ac7c0 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x039669d6 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x15b2491f inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3b475891 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x422f3492 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4477d1ff inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5b2939a9 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5c54bc23 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xae956f47 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfca77478 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x78015a6e gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0a82a0d9 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x28b732b4 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2f396fe8 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x356f8771 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3c93f81c ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3cff7b85 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x667500ca ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7ffca5dd ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8ee1f4aa ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa0308eac ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa089af12 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xacd0f86b ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcd138d57 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcf746dab ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd127d634 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf1ff6097 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf959adcc ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xede0194d arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x4f726536 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x307f3280 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x70a8ee5c nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x2a71f951 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1a0ea516 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x49e8946d nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x77c1d35d nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x81ee2719 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x91ade8d9 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbc503c14 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfca4da9c nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x6bb82cdf nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x5e27fa5e nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x6134f5a1 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x8ee897f1 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xb6bdafa4 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xbc07ecd7 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x21f34648 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3dba75ce tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7a6e2420 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa2464b63 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcda2df35 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x005950da udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2bb78e2a udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x70bbd8bc udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa0f33053 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc8ab6461 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd5f90c10 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe1618a38 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe75cbc7e udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x57338840 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xa79db0ff esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xb5fc0b19 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x30b99564 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4a988b20 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf5be1979 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x02a800cf udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x19396d4d udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xe0de86a0 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x030c519c nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x25133578 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xe3c83746 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x7b1badd4 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x336ff234 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x73fe2da1 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7e73bf00 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9daaadfd nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xae803a06 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdbaf623d nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xee55af15 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xecdf8db6 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x1440ab5b nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x5176bce7 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x6c6eaa59 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x7d599c24 nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xf34bb209 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0b4272d2 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x13159970 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1b1693c1 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1c2aff70 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2da238ae l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x387a6145 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x40ad7b18 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4656286a l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4bb35ad9 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x57f7723d l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x589fa7ad l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5a56c630 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5fce8a1c l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6193cb56 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x651150f9 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8fe9071d l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9a74c1fe l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9ebb2247 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa5104f67 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc38cf41d l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf76bdb16 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x5683652d l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x0bca3797 l2tp_nl_register_ops EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x88194267 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0601d673 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x110c1f34 ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3617e37c ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x47eafcb8 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4a708275 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x06dc2ba1 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x13659c13 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d4f8082 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x40ce9886 ieee80211_ready_on_channel EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x560ab61c ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58ab3a7e ieee80211_update_mu_groups EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x79b4bb95 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9453790c ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x95aafdec ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9d6fb4a6 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5c358621 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x67e9812a ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x695cf8cb ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x76cc2ed2 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8c06749b ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x97c3bf4d ieee80211_gtk_rekey_notify EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa30e2941 ieee80211_iterate_active_interfaces_atomic EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb2bd322c ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb31c6829 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc30cdc3e ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc678dfab ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc8fb9622 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcee984e1 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa6f0559e ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb23fceaa ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb946a685 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc96803e5 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc989b26e ieee80211_iterate_active_interfaces_atomic EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe268f43e ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf0db3475 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0bd7f639 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3e797faf nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x735e8d2e mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe2bfe6d2 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xedf3442e ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf070f4ff ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf57cd711 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfa3c7999 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x049023e6 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x231d2fb3 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x255172ec mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6bebc4bf mpls_dev_mtu EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa4ceed9c mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd9de7253 mpls_output_possible -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x00874c15 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x00f97931 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x147591a5 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x195deeb5 ip_set_add +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb0976df5 nla_put_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0ce2d37a ip_set_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3194c57a ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x35048a2f ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x32d6b6ef ip_set_add EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3f52331d ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4e372910 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5663f2a5 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5ce719d3 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x544c0f0b ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5606585a ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5d29d624 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x76bcd80f 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 0x7a202c73 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x806d64a6 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81b8eb2f ip_set_nfnl_get_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x86acb35e ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x90132407 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x91bc4d50 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8d6e7ad8 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x937df8d0 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9a7a8319 ip_set_test EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa244f37d ip_set_put_flags EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa56c8a34 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc118cdee ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcde8ef6a ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd22ec654 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe14fd68a ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xae9d5aa5 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb7a14255 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbc473e9f ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbf45eeb6 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcaa51108 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xceb0abd5 ip_set_name_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1dec0780 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x30598e42 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x569d7b0d unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc2b4fd1e ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3cf7f31 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x25825351 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc344a743 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xca0edc33 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf2cdd68b unregister_ip_vs_pe EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x162e96f1 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x86c42153 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9d37aca7 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xaf4fbcef nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbb73e512 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xc320f027 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1c8bcdb4 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x57718812 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7506d456 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x82e84442 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf1943330 nf_conncount_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2728e70 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x011f8301 nf_ct_set_auto_assign_helper_warned -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x078317dd nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0133cd4d nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0139ce46 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09b5ef47 nf_conntrack_in EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1051e893 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1113e69b nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1227a010 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x143ac646 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18659ee1 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a79a2d0 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x229a2527 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x245ede00 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2870a006 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c000565 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d899706 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x112c3afa nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12b8cd7c nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13b107f8 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14d24cd8 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1625b9c4 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x178a9453 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17eb88dd nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a5eb172 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b93a5f2 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f7c6748 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ffc4e9a nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x222e2478 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23860d91 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x240711e4 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x268b1691 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27edf3d7 nf_connlabels_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 0x2ae22060 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3027d282 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30d8a463 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32b247ac nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32c87736 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x378c9f16 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ab8d47d nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b11d912 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b531f18 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3bcc64d5 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x402a8259 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x409d215c nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40bb9e02 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ffd1b6b nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53c15448 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5535e90a nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x562dc682 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61251a9e nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61b917c1 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61e4985c nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64510bfa nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66056030 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6651bb38 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x674f0e40 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67d3f9c9 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c6902cb nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2dce6c3b nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2de0d2b0 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e76ddcd nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3433dced nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39b27c38 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c1f7983 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41e20919 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47f0b5fa nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4cae3706 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52d34c39 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5404be8c nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5bb7d13e __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f06ec81 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6435b894 nf_connlabels_replace EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b4ab2ec nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6feb5420 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7711a7cb nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7822c6f5 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7dd08ebe __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ed4592a nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fc38efe nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82e5a323 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x855502a8 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x887e000c nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x69ca7293 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6dab7c94 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e5a8862 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71d65f3f nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x723c4b05 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7333466a nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74c2e13c nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x751d830e nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x760c37cd nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x774cbb42 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8637824d nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a6397fd nf_conntrack_alloc EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8dbb5524 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f00f5b7 nf_conntrack_eventmask_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x959b8c30 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99c1ad04 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e36b28e nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa009cb18 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa325439d nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa466cf9a nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa594e641 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5e3596c nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa947b6c1 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91b6cdf0 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x921678df nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x935e24d1 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ae8a832 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa168b350 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa343b897 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5d89c83 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8a588c7 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 0xb1a6693d nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1d8b904 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5fe9ef4 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba6e053f nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1288046 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0aaf1eb nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb23a44bc __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba292569 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb9bcaf8 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc06b6c32 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc174d905 nf_ct_acct_add EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc642b683 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6a57114 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8527f3a __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8ac9927 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8c0c3b9 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcdb98b29 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcfdab088 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd473d4a2 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc49c08f5 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7222b52 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7ab3a23 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc9a4886 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd254dd47 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd28e7247 nf_ct_netns_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda6e7a3f nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdaf5791b __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6dfbf6c nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8fc715a nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda199c59 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd6ab8e8 nf_ct_iterate_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec0b392a __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe12953c3 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe28fb86c nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe83efc5d __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb369522 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec376963 nf_ct_seqadj_set EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee525fbd nf_conntrack_alter_reply EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeebad536 nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeffb6680 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf23f2610 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf354d208 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3600cdf nf_ct_netns_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5f9c450 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa5ad6a9 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa748ec8 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfdcf9958 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb0da404 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd48f0c4 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe0f8be2 nf_ct_seq_offset EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x43d632fb nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x744a6659 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xd29bcb19 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1d98d121 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x28b5fca8 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2a9ee776 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4ab5d66d nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8045f93c nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa6307a47 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xab96be64 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbb2e268d nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf491f0ae get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfae1e7b7 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xf1cb0739 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x283fe325 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x413302a8 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x8021f939 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xccbe024d nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x11cf1cdc ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x49f02edf ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x68c4150e ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x86b53dc3 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xda7b3f8b ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe98bf227 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf431fb11 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x2d1934b1 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xb7042a20 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x00f2c40b nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xc841f2c7 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe24e6fe1 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x018492c1 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1ba8ffe7 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1e5b6ca8 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1f5694d9 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3b5b662b flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3b72d0ac nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4aa9ac9b nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5d92e21f flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x660c646b flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x68fb0710 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x89a75e97 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x94e2fafd nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x957675e1 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc30d71f4 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe06cb402 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe4a4333e nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf05c73d0 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x06909f39 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x11ea34ef nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x05e8a7de nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xb02804c7 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xbc864da0 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x233219f8 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2524fb72 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x34a7a916 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5676a7bd set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6450009c nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7785a57f nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xac5449e2 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd01ca507 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf3c983fc get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfbe99290 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xc480c848 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0ff81d96 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x2c695087 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x326aee2b nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x8f6b49ae nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0059717d ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x20ecf4a2 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3e443573 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x595df24b nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x91135cf9 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9ba2694f ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb73514f7 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x94ca61a2 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x23729c55 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x31b9d3bf nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x778d4944 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xec89138e nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0ec1e892 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x24db9f3a nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x308c475c nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x33f2921b nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x458904e9 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4d802c79 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4fcdafc8 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6363a449 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6b7b9052 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6cf99e8b flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9d103f6e nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc8b33df2 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdb1fb47e flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdfc2f7f0 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe5b39da2 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf15f7ecb nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfc6c8da9 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x15472c1d nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2f38a990 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x32a767ae nf_ct_nat_ext_add EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x49dfe3a9 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x519cb7b4 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x54111eb6 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5675131f nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x57f2e20d nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5db92d31 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x73c1027c nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8069c4b2 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8106bc78 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x81aae299 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa385d98c nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc2771135 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x40a6ec16 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4be6ee09 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x90d5e8eb nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x92192a69 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9f266e24 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa09d6d37 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa769b570 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xaee268cd nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb2a15fb1 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc5537487 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd8d52112 nf_nat_ipv4_unregister_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9f0bba1 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfb27fb78 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0aa9a733 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf07e9767 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfcd520f6 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x00a1b7a2 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x039e1ff9 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0464dedf nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0b6ae3c5 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1772f693 ipv4_synproxy_hook EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x204f1aa9 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2d0faba6 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x55e11b39 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x59e865eb synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x65332f8c synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7005265f synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7f07a6a3 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa2eff254 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbd99b7c9 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6cb2d666 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x83a75bcc nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8ca966d6 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x998e5541 synproxy_send_client_synack EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfcfd4e2b ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x052988b5 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd28d577f ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef0ae88a synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x050bb4a2 nft_obj_notify EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0ef99771 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x16d7d169 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x31d99d91 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1592d6cd nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x17191598 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x21512433 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a70f7a1 nft_request_module EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x34f6e6ef nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x36696e4f nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x366c490d nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3b0f421f nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3ebb42c0 nft_parse_register_store EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x45a51cac nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x485da3b5 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5188247c nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x59a104e7 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5cf8b71f nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4bd53226 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4d1fb06b nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5d387a90 nft_meta_set_eval EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5deee9df nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x660095a7 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x664c0efa nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6bc01965 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x66679c00 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x67ba8f2f nft_meta_set_validate EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6ceabdf5 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d92bb8f nft_flowtable_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e0e81b4 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e82f75e nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x709a6e78 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x79db58f8 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7d292204 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x807009e1 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x956eb14e nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9654e780 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa85ee758 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa87faad0 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xba85b87e nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbd24abb2 nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc82a1222 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdbb050b9 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdc93c981 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x71a655fb nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x82c4e678 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8752da1e nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8cc31269 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8ffab83c nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9673d170 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9857f74c __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9b6b51c9 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa3eecfd1 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb6d36128 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb9f1a425 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbb44663f nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbd3c197a nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe1b6732 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd0d695f5 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd412cb23 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd83a3aaf nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd946c739 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdbca5694 nft_unregister_chain_type EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdec117b7 nft_meta_get_init EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe95e1faf nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeab083f0 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf009febf nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf3a16589 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x06e569b9 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3b59e406 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3cda01ec nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x56d3c761 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf8f94acc nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa9de040 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc8d0e9d nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xff3d97ee nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x04fcef6f nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x281a9547 nfnetlink_send EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x607be0b0 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xaefffd53 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd63667b8 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x601b1238 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6acf0e00 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa3838ea5 nfnetlink_subsys_register EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa4f3a94c nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xab87c51c nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdd230baa nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf00f273c nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xaff8e1f1 nfnl_acct_update EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf757ab33 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xcf8ded39 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf687f19e nfnl_acct_overquota EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x7271a916 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x98267d99 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x1b8220d3 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2ba10845 nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe2972963 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xffcc80c4 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x56831643 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xfefba693 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x86493fdf nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xbd14ecff nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe18dd426 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe34506af nft_fib_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5bbcb1a3 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1ff2eaa0 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x47d6c490 nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7b63aba1 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x81501a62 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xd15108d3 nft_reject_dump EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x060610c3 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0cbf66f6 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x11bf458e xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x31af6de3 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x39fba8a3 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3e4087b7 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5c7e1059 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x66604681 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6a223f7b xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2c6ba771 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3280ce1f xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3829f06f xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3bbb8656 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5240910f xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7663f78a xt_compat_match_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7f1ded11 xt_check_target 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 0x89449803 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8a059d23 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8fc78e83 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x949a54c7 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x97b9587e xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9a965f1d xt_compat_target_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa73599a0 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa29c4ce2 xt_proto_fini EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xac541ba5 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xacc48dad xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb5e180fe xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb23bc1dc xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbbb95c69 xt_unregister_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc250635d xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc3fc2875 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc6deaf7a xt_request_find_target EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc8a9f9e1 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc82c69ee xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc93981ee xt_target_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xda2aeba5 xt_check_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe69ca54d xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xea724ec1 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeb1460d8 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf13f4426 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x8f29c744 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb3ca9974 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeb12fa18 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xef36878c xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xef49f0d6 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf5b544e3 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf7e37da9 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xffc4e872 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x1245b03a xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x754894e9 xt_rateest_lookup EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x211ff8c7 nci_spi_allocate_spi EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x4c4ee19d nci_spi_read EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xe6f07b99 nci_spi_send EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x4b0ec4a7 nci_uart_set_config EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x8c22e581 nci_uart_register EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xa0072b40 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nsh/nsh 0x0e0f8920 nsh_pop -EXPORT_SYMBOL_GPL net/nsh/nsh 0xd040c5c0 nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1f0821b5 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3782de17 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x385dee76 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7aa5258b ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xabaf4a67 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xfabf54c5 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/psample/psample 0x019cc9e2 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0x03891495 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0x6ebfe175 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xd9fb1166 psample_group_get -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x613344a9 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0xeeac3c77 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0xf9f12c77 nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x09cc57fc ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1c4ec466 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4e0fc4b6 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa3aad295 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb9edfe55 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf698756e __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/psample/psample 0x09752cd6 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x83cfcc59 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xd6767bf5 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xe990b227 psample_group_get +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x68859420 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x6c20837d qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8eef4dd3 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8e1a6c61 qrtr_endpoint_register EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xea7664af qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/rds/rds 0x0076c567 rds_send_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x1b95af77 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x22f82f26 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x282df381 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x049ccaf3 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x112516c5 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x1be05336 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x23da5f9a rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x2aa9e2cd rds_inc_put EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2c4ec189 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x2dbc1157 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x2f1f2b04 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x33ed6845 rds_recv_incoming EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x47170f4c rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x48129cb5 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x4ad48242 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x4e0904b7 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x4fb84f58 rds_message_addref EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x5847ddaa rds_conn_drop EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x5ba9b403 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x71899768 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x7247dc7e rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x7a5120c9 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x6483d681 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x6f7dc98f rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x78090e16 rds_connect_complete 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 0x8fdce562 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x92bff271 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x96fcce59 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x9d4de206 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xa86fc55d rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x98401896 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x98cb245b rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xa20ab30e rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xa72d28d6 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xad652cf9 rds_conn_path_connect_if_down EXPORT_SYMBOL_GPL net/rds/rds 0xb0612de0 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xb08a2a6a rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xc12e9f9d rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xb543b21f rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xbe4f3df7 rds_send_path_reset EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xcb4f922f rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xcbd89069 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xdd84f39d rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xe3051cd4 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xe843b487 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xeaa6f2cd rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xf329fbf6 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xfaa4570d rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xc54dd843 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xcf010d1b rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xd01d8124 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xd5148738 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xe52a3bb0 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xe9aa103d rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xf0a3b578 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xf4c0f851 rds_info_register_func +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x5b58a1c7 pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x7d30bca0 pie_process_dequeue -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xf97ede11 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xda47b53e 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 0x5232ea56 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0xacdea31b sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xb1d85c18 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0xb9bd6420 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/smc/smc 0x26c067ea smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x2cf1bc6d smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x57c00177 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x5a7e1809 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x777afbe4 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x8c72bc2e smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x933c63f6 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xa156fb40 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xc807e798 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xe40a74dd smcd_unregister_dev +EXPORT_SYMBOL_GPL net/sctp/sctp 0x56702508 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x69974e4f sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7ff0d71c sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x8ee4941e sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x01775321 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x1132342f smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x6a51aef1 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x84dd96c4 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x9869df44 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x9a410229 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xd619ae70 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xdc206ae3 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xe35cc839 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xf56eaec1 smcd_handle_event +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x154f0ec3 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2cfa78f5 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 0x3d3ebb0f svcauth_gss_flavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4df7cde4 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd344f061 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x94a971e4 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd20b0eb4 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 0xf477172b svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0160e21e svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0237c8f6 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02c87819 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03746f0f xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03e54838 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0015a105 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00666cb2 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0071fc98 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x023009aa rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03c0c772 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03fcec9a svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04293036 rpc_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0669f356 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x078cf296 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07c24ac1 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07cb543d xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09497cf0 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a579d34 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b70d70c rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0baca90a xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c8408d5 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d4496b2 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d53c080 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d836feb rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e26c831 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f752b75 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fd980ac svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1068e8db rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x114dc18c xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12582d1c xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1264524b xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x126cdd90 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1334f1e5 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13dd84c5 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x146e9d5d xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x081efacb rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0945c681 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x097cfb92 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a37dd5b xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f4998fe xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fe3b4eb xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11f0f114 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11ffaa6e svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x136225d5 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x138eff07 svc_rpcb_cleanup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14b462ac rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x150fa471 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15a29eac rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16b4c40d xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16b94fd3 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b6d5b6e xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c0ea9dd cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cc0676c rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x152049b8 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x156f0614 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15e6e98c rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1963166f rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19c597a2 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a43bf6f xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a5c79d7 xprt_alloc EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e1a7933 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e55846c rpc_wake_up_next EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fa20719 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20a9649c svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20e25a7e rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2154e07a _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21c9c245 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2480206d xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x248ac414 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24d2b2f1 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x262a9adc rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26d6048a rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2727133e rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2792eeb7 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fa1881c cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x207b2ba1 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20c1d09f svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20fdbe45 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2253e83f xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22a6c241 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22b186ee cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x235018b6 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x242ec0ec xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2445d1ad rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x249ab93e rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28d503e8 xprt_release_rqst_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2af495fe xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b827650 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2be134de sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c2278ce xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c64e390 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2caa9820 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2da72376 rpc_exit EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31fab00d svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3286a538 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x333d1acf sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33ecc7b8 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33a6741e svc_rqst_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34c25cc9 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3544bd38 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35545823 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37f58cc9 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37fe7ff4 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35153d09 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35c7a76a rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x361c1452 xprt_disconnect_done EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39cea53e xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a2834a7 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cae7254 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cbdb83d xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d96afee rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e969a65 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39b57a53 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3adb6b5c rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d86a8b0 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f807d77 xdr_reserve_space EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x412dfc57 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x415e51f6 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40f4c589 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4161f443 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x423b7922 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42c84d93 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4430227e svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x450f4142 svc_authenticate EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4607230e xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x478605e5 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48390a50 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x483fe4b9 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48bd03b2 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48f58bee xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x495ca536 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x495d56b6 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ad19fcd cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ae16464 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afcf0ec svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45696aac xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45928d40 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46e3b359 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4716b798 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aac92d6 svc_xprt_init EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c642091 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c854927 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b01935d svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bf4ea9a rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ca662f0 rpc_clnt_xprt_switch_has_addr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e30a1e9 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e6104bd xprt_lookup_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e99452f svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x513689e3 rpc_restart_call_prepare EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54819228 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55dcd3c2 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x564f79fb rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x569191da svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56a2b02d svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57e703c3 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59ea0505 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a2960c1 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x539a428b rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x565ed7ed rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x579019f6 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57e2239c rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x589cbda2 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58e8bad2 rpc_delay EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c1a1a43 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b066139 sunrpc_cache_lookup_rcu EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c543c40 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c72c9ac xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e32a6f8 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x608fa364 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61ab625c xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61b1890e rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x628d14ec xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63da3034 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66932f20 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x669a06c9 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66a3d9cc xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x676cbc89 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ad5f612 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bee4c10 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e06d73c rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70058d0a rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71ac8a38 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cac3ac1 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d6120c5 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f6149f2 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f8bb9f0 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60825313 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x616891e2 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62b84a27 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64fa13fe rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x650052f0 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x666c8866 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66df1509 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69abb88f svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bc87782 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e140f36 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e44cd05 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e4d470c csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x704c6bf9 rpc_put_task_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x766ffe5e svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x774d9c32 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79293544 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x795bc3a3 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79928848 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x720804fd xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7309cb61 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7538c28f rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a03410a svc_create_pooled 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 0x7b003e97 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b33b7cc xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ceb31e1 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7aa5761b svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7afb0dc8 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d61b897 rpc_count_iostats_metrics EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e4514c1 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7eedfeef sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ef44790 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fcb810b __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8129b598 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8174a1cd xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8183e416 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81c6ea4a svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82ea7ec8 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83c3f03c rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85c9c596 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8652249e xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86bdff16 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8984e892 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8af47a42 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bd02786 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d9240aa rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92811d49 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9299cd1d rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9435969a rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9543b4c7 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x961baa77 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96813aeb rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96e72d13 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96f68025 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9887ee66 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98fed0fb xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99931ecd rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9aaddaed rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c1b2ea1 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9caf1029 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ea2c294 svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f50bfb3 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa077b7d2 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80043b95 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8186902a xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8216818a sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x845f0443 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84b4c855 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x857762e1 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85ae1381 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x885e3160 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89732f51 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89a5ab46 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b24e4e7 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b5361b9 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c358746 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c4fc632 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x923d0f03 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92f05088 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x938d559e sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93b516f0 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94b16d33 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94ccf09f rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9686091c _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x987cca63 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98d3edac rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e00e4d2 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f48264b xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f8e7d58 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fc44868 svc_generic_init_request EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13ebf32 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2e5f5f5 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa31b4eb8 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa44880f9 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa497ad4b svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4e2fdb9 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5108665 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5193e9a rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5d52b52 xdr_stream_decode_opaque EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa60d45d7 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa68bd220 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa712fcd9 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa77b097b svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9d90ef7 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa852188 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaac668a9 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaacc9cc1 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabda6de5 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad209540 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae92ea93 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa672e648 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7ed4e49 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa84a5818 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9899ef1 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e09f74 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa2ac76a rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa397e34 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa5fac6f xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab1b8cf1 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaddd75a7 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae063ef9 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae1c1262 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae61365a xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaeed52a3 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf50cedd sunrpc_cache_update EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0d259eb cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1b5a682 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb029b70b xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb06901eb rpc_max_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3b9d9f0 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3c7f295 svc_seq_show EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb911995d xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaf392f3 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb590f1b svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbdefdba svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc6329c7 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdd00bff rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb58f4ccb xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb657bc8b rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb82028df rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb85f29c7 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb692f8a xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc60fd0d cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc92b646 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcac1b81 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd8995c6 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdb59442 rpc_clone_client_set_auth EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc031baff svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfb3be50 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfb9d124 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0af7129 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc10366c0 rpc_d_lookup_sb EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1689570 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1866e2f svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3536025 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3ca2f4d svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8043c89 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8716dc2 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8dc3644 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1fa90a2 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc20c97bb xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2376abd svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2dccccd svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4e07ef9 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc538268e xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc584b8eb rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc789b47c put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7b6f0bc rpc_pton EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc95de1b2 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb4ca48e rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd3a1605 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce0f3f9b rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcab183cd rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb4b9bf7 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc7e3594 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd569732 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdedbcbe rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdf4419a xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce0200f4 xprt_reserve_xprt_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce7cb4d4 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf0bca09 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf0f16b4 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd08fe6bf svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd271dd30 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2978463 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4a71e45 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4cf2bf6 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd50f1649 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd53bf6b9 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd551ddfb svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6881b0a read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6e700ba svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6fa2cda rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd88269c3 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9b15faf svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0472b96 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0e10477 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd25e125c rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2647c93 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2687037 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd28b988a svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2fc6f4f rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd414e4ea rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd54f844b svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6948d45 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd694a067 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda829dee xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb49a230 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc817f73 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdca0b94c rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcc004d7 svc_exit_thread EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdee87b32 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdffc790e rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe00d6a4d rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0193509 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe031df69 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2bf49a6 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3620d77 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3fe230e xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe450312d rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde498b60 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdeb777fe rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdefbc59a svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf57a09b svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0cc4303 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe109a928 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe143dc01 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4ed8d75 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5087ec2 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe51b0564 svc_alien_sock EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5e2334a xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe64b2849 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe70f1a28 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe73edf01 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe82f828b svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe86017a2 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8827f97 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5f05071 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe62ea0ad rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6b193bf rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6cda092 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6de408a svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8bb6885 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97cc821 svc_destroy EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea5cc28b xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb58366b svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec4e4cab rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec96a910 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed154c0d xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed41d84b svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea90423b svc_sock_update_bufs 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 0xefecf3b6 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeffe8ce5 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf09d4249 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1b8e505 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1b95c71 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf431ab45 xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf556dfe2 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8c436fb xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb58b946 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd6eb514 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeef7d3da svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf18b4363 svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1f006a5 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3fb009f rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf50c4776 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf94f821f cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa8ee203 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa9cfbdd xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa9d1777 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc299854 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd01ed46 rpc_proc_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe26476e rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff7ac057 rpc_localaddr -EXPORT_SYMBOL_GPL net/tls/tls 0x6f242e35 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x80835f07 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0xc5d0e1f1 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xd8f98737 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x02e8b25d virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe355d9a cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfef21f10 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff3092a2 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff6d3517 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff87a403 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff8bf956 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffb5d650 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffe57093 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/tls/tls 0x2f99956a tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x75d40b1e tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x890190ae tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x8c65c9e7 tls_device_sk_destruct EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1dc6507b virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1f5681fb virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x21454dc5 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x299db6d8 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x327cd9f8 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x351b00d0 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3ffc5471 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x42e24fd8 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4a81894b virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x513104d6 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x59e78345 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5fc94745 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x65db9897 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x668cd635 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x68594aba virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7be921ae virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x87eb5a3e virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x89b73d39 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8d1f8d9a virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9016deeb virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x91e605cc virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x97609887 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9e33cd39 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa89737a7 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaca54daf virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03d06935 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x07fcc472 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0b502a83 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1c7b9442 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x24f6f4c4 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2ade9db9 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3611488c virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5ab58e03 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x65dd7b40 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x68ace282 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x69bb725f virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e6544eb virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e96e350 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x70501ab7 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x73664c98 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x75f96056 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x786b9f1d virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7f11fe12 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa045746a virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa334e62f virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa69b04bb virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaa9c3870 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaaf9a899 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xae8aafe6 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb397cdec virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb623e989 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb840a3d0 virtio_transport_dgram_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 0xc34d6519 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc5498002 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc973eb2c virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xccaf429b virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd5c4ac3b virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xebc9a019 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfcb7514e virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xff72f206 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc4e176d1 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xceec6d8e virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd12a9299 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd13972d2 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd3477cbe virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xff15c93f virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xffa6fc08 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x01e5e6e0 vsock_add_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1b674b29 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1faf9adc vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2434616e vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2668bdf5 vsock_core_get_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x29d1cb5d vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2a1562e9 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x309b4e07 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x359b8e89 vsock_remove_tap 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 0x4691a401 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x483aad32 vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4adf3275 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4550acd7 vsock_remove_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x50642296 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5a25cd97 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5c6d6409 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5f62ef9d vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x67252e1b vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6cac62f5 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x70e61439 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7417f08f vsock_find_bound_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x79ad724d vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x787ce4a4 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7cf0c0ab vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8a4188cf vsock_core_register EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x937291bc vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x99ec45cf vsock_assign_transport 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 0xb8ceb2a9 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc48b7bcf vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd076f1e1 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdc49e69f vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe0c5f244 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeb62e5ee vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb5e91fa9 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb7341898 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb76d559c vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe0ac67f0 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe2e98bfc vsock_deliver_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf21e90c9 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x08347e83 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x32338793 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3b9f074e cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x478b54ea cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x51388a1a cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x53838d90 cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6f3f8505 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x71df8270 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa00f1cb3 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xac538797 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbe864ed6 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbecb009c cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd2a69cd5 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf30de453 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf50cd1f0 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfe1cda1d cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xff861169 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x07b0d4e4 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0d824fa5 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2465bc76 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3ee999cf cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6fd83b6f cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x839402b2 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8fbbe387 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x932f3588 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9bdea934 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa35434fd cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbe3837b7 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc02e8c3b cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xca034ad1 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd252acac cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe647361e cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfc0688f3 cfg80211_vendor_cmd_get_sender 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 @@ -17672,10 +17681,10 @@ EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname 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 0x0d0495d6 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xdbde8926 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe8eb1568 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfefedc21 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7123e752 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9913a367 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa11a662c ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa7582bdc 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 0xef05ca75 snd_ac97_reset @@ -17739,19 +17748,19 @@ EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd747fa77 snd_dmaengine_pcm_get EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf7039fac snd_dmaengine_pcm_pointer_no_residue EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x383132cf __snd_seq_driver_register EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xf5fdb16e snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x12c03bb8 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0765b27c amdtp_domain_init EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1e930f34 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x41e8bdf5 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x400b049d amdtp_domain_destroy EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x66a2340c amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x675404c6 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x69358cb6 amdtp_domain_stream_pcm_pointer EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x69c7b837 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7cd5607b amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x879391cb amdtp_domain_stream_pcm_pointer EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x91d80b38 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa68a4078 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa38b7f83 amdtp_domain_stop EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc2d0a6fd amdtp_am824_set_parameters EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc8c63e37 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfc434021 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xca72ad9d amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd0d01a36 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf6a73d52 amdtp_domain_start EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b3a1aa3 snd_hdac_dsp_trigger EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0daf121a snd_hdac_stream_sync_trigger EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11e11e54 snd_hdac_regmap_read_raw @@ -17853,34 +17862,33 @@ EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x774ae690 snd_ak4113_external_rat EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa5122ee1 snd_ak4113_check_rate_and_errors EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd86307fa snd_ak4113_reinit EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xee96906c snd_ak4113_create -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x008b3e1c azx_free_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00976c3f snd_hda_mixer_amp_volume_info EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01a5d28c snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05c67b34 azx_init_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ad57c92 azx_stop_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cb2cab4 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1031d88f azx_get_position EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10527ff4 snd_hda_detach_beep_device EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x125d0f5a snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x155997bc azx_probe_codecs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16669074 snd_hda_get_bool_hint EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x176ac53a snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17d3fee1 azx_get_pos_posbuf EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18001966 snd_hda_codec_update_widgets EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a2e9861 snd_hda_jack_tbl_get_from_tag EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b3c9e7b snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b83a784 azx_get_pos_lpib EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c0e80d8 snd_hda_codec_eapd_power_filter EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c7cc4a4 snd_hda_codec_amp_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f921804 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fd7fa41 snd_hda_codec_load_dsp_trigger EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21bb5ba1 hda_codec_driver_unregister EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21beb3f0 snd_hda_codec_new EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23acdb89 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24d4238c azx_get_pos_posbuf EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x290c4ae7 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29241617 snd_hda_codec_load_dsp_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a1bd230 snd_hda_multi_out_analog_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b67394b snd_hda_jack_poll_all EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ca5983d snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x314d09e1 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x309b6a28 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3541048a snd_hda_codec_load_dsp_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x356f5440 query_amp_caps EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3adcea8b snd_hda_codec_prepare @@ -17901,7 +17909,6 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x543de6d5 snd_hda_add_nid EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5740bde5 snd_hda_load_patch EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x592ec277 snd_hda_multi_out_dig_close EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x599bf838 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b86303b azx_init_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bc78550 snd_hda_multi_out_dig_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cc95fc5 snd_hda_apply_verbs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60841cab snd_hda_codec_get_pincfg @@ -17911,8 +17918,13 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62c94c08 snd_hda_create_spdif_s EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66bebb0f snd_hda_shutup_pins EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69a6af5e snd_hda_spdif_ctls_assign EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c7c5349 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e299037 azx_codec_configure EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6efa4f92 snd_hda_pick_pin_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74cf2a9a snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76adc7f0 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c07d49f azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f60d469 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8132ea3d azx_bus_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82fbc925 snd_hda_jack_tbl_get_mst EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83f71966 snd_hda_add_vmaster_hook EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x840042b0 snd_hda_create_spdif_in_ctls @@ -17921,13 +17933,12 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x878f121c snd_hda_codec_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89765bd0 snd_hda_mixer_amp_switch_get_beep EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89e597cc snd_hda_lock_devices EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c00e48b snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d8e66d0 azx_codec_configure EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x918ddf76 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x927da50f azx_init_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95d68a85 snd_hda_jack_pin_sense EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96c1082c snd_hda_correct_pin_ctl EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98694114 snd_hda_pick_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x999d2544 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ade7582 azx_get_pos_lpib EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b366ff9 snd_hda_get_connections EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bcf6491 snd_hda_apply_pincfgs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0348fe4 __snd_hda_apply_fixup @@ -17945,7 +17956,6 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae895229 snd_hda_get_pin_label EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf54667a __snd_hda_codec_cleanup_stream EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf655636 snd_hda_set_vmaster_tlv EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb03cf630 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2116658 snd_hda_codec_load_dsp_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4e53efd snd_hda_add_new_ctls EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6953e72 snd_hda_multi_out_dig_open EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9e6ddeb snd_hda_mixer_amp_switch_put @@ -17959,7 +17969,7 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc56a4449 snd_hda_parse_pin_defc EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb86015d snd_hda_sync_vmaster_hook EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb89fa62 snd_hda_codec_set_pin_target EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc34fb8a snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd8e4068 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc54444b azx_probe_codecs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd13ebd9f snd_hda_jack_set_button_state EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd32ae983 snd_hda_get_int_hint EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3592c72 __snd_hda_add_vmaster @@ -17976,13 +17986,12 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea0ca9bd snd_hda_get_default_vr EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeae318c9 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 0xef9ec44d _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3d054b6 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf54a942f azx_stop_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8860091 snd_hda_multi_out_analog_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9a84ddc snd_hda_get_num_devices EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd8817a0 snd_hda_get_conn_index EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe80e006 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfedf4027 azx_stop_all_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0413d415 snd_hda_gen_hp_automute EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1093bc49 snd_hda_gen_add_micmute_led_cdev EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1218356a snd_hda_activate_path @@ -18012,17 +18021,17 @@ EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x4df6ec2d adau1761_regmap_ EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xa82a5f8e adau1761_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x035b06d1 adau17x1_readable_register EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x20120110 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x514ce0ed adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9f407eb2 adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa11bf2c1 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xbb8823ff adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc24faf08 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x303d1108 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x355eda3f adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x824c6fcf adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc034f0aa adau17x1_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcabcc616 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd1dd5266 adau17x1_resume EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xdc50a1d5 adau17x1_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xfff48533 adau17x1_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x50c15c8d adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x36f2d791 cs35l41_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x5106ccbd cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x3b6b0d29 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x7360d2ec cs35l41_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x9a53af98 cs35l41_pm_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x1a4ca091 cs35l41_boost_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x2e41cdff cs35l41_test_key_lock @@ -18048,15 +18057,15 @@ EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xc9f8130b cs42xx8_pm EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x4c1a93b8 es8328_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xb21db944 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7a509fb0 soc_codec_dev_max98373 EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x992bd257 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xa10c2271 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xbc4cfa1e soc_codec_dev_max98373 EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xcd5d6b3d max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xd6d47f54 soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x2c85f71e mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x6ca229ce mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x8894ff0a mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xf93a2056 mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x6b36a7ec nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x2cf16f0e mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x7d0003a1 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x8139603d mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xeb4255f2 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x4d2638fc nau8824_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x171da3b5 pcm1789_common_exit EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x9b4080f0 pcm1789_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xda552f61 pcm1789_common_init @@ -18076,320 +18085,321 @@ 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 0x0e454dd6 rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x16f5abad rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x28b9908d rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x776d18cf rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x8748dafd rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xa25e8069 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xba291163 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xfeb0ea5d rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xa682b9da rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0481363b rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x3775c67a rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x42621d5a rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x6d6605e3 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc262ee33 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xdc360df5 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf6222413 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x1916b0a6 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xceb92874 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x68030211 rt5659_set_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2ab16127 rt5682_readable_register EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2f3a4c06 rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x36d9d1e5 rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x38a27ef4 rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x521902ab rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x453fbc05 rt5682_apply_patch_list EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5a9d19dc rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7e3e25ee rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa63f03bd rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb772abdf rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5c859009 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x63a7617f rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6a4fc26c rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x776fa539 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8061a1c2 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x90ce7a1e rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9c581e3a rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa2a43e1a rt5682_parse_dt EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd395c5f7 rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x1331e5af sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x60fa7603 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb1a9518a sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xca2590a8 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd8ca018c sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3523339a sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7df3e7df sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x93c766e4 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe35cb8f4 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xef4c24bd sigmadsp_attach EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x47bec058 devm_sigmadsp_init_i2c EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xbb4a85aa devm_sigmadsp_init_regmap EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x19136b37 ssm2602_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xb9b15406 ssm2602_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe0a56474 aic32x4_register_clocks EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x8ca102d0 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x045ef2f8 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xc13638b2 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 0x41a535da wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x832baf5e wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xa2949104 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xb9577d32 wcd938x_sdw_hw_params EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xcf97573c wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xe1eb401f wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xfb6c6099 wcd938x_sdw_set_sdw_stream EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xfcc125d1 wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0240e854 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x127b8b6b wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x14510c4b wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1e1fa4f5 wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3725df40 wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x42e7f6d5 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x002d2627 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x00c9e46b wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0314d46c wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0861cdf6 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x11b097af wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x169c954a wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3c287568 wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4580621f wm_adsp1_init EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x67f551c1 wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6b0a19a0 wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8fc58f97 wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9336c422 wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa620e7f5 wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa8230764 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5987cc42 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5ac58f50 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6ea2cdac wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7cd25d3d wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8e6745d3 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x932926cd wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9989708e wm_adsp2_set_dspclk EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xac60adff wm_adsp2_preloader_put EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaccbc3fc wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaee686cc wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb536de36 wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb6e7ba5e wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xad3adbfe wm_adsp_compr_pointer EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbe716a5d wm_adsp_fw_get EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbeda045e wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc628da3c wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc7b4053e wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcc7166db wm_halo_init 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 0xdf4cdb66 wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe0747773 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe9ac03be wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe9eb372b wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe1a964da 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 0xfe0fcbce wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xedeee463 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfc9376f5 wm_adsp_compr_open EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5e28ad1a wm8804_pm EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7dfde211 wm8804_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x94cd500a wm8804_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf6bc8e9f wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x7d184aad wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x4a49f7b4 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x223d4404 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x774cdf16 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xf64ddcd5 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x65fe3ee6 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 0xf5add405 audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x23dd14fa asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x31b695a4 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0xf3004000 audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1cc08705 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1f0dd126 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x248cc363 asoc_simple_be_hw_params_fixup EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x35cbac33 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x377b450a asoc_simple_parse_pin_switches EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3cfd9153 asoc_simple_parse_daifmt EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x411ce83b asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x62362bcf asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4eddee24 asoc_simple_parse_widgets EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x66181bc1 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x76079543 asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x978b5fa3 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xac38a556 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x661fd80b asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6b99428e asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7dfc5875 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x97a9fe5c asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9ac9db9f asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb6ad5d60 asoc_simple_dai_init EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbfad4e1b asoc_simple_startup EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc2bff7a1 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc623ff6a asoc_simple_parse_card_name EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc9f8a4dc asoc_simple_canonicalize_platform EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xca7cf7d4 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdf0616be asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe643455e asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe7bf95ec asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xea5c06e7 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe72ca7a3 asoc_simple_parse_pin_switches EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf3bafb75 asoc_simple_convert_fixup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0226941a snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf52d308f asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x004e712e dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0090c69b snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0208063c null_dailink_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0252b7d2 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x029d117a snd_soc_dapm_kcontrol_widget EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03958d63 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04295782 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x053b8774 snd_soc_add_component_controls EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05b25b84 snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x062ea7bd snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06a3bee7 snd_soc_jack_notifier_unregister EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07269727 snd_soc_put_volsw_sx EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x086d4f59 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09057e62 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a034099 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b3b06f2 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bf55e96 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b228b22 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b905264 snd_soc_dapm_kcontrol_dapm EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c4af77b snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cf6d613 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d08f9f4 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f40c3ff snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1055d6e9 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x112f0565 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x113d94e0 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0df4c284 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e94ff9d snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0edef8e5 snd_soc_dai_set_fmt EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11672b39 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1359192b snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x150411e8 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12383d68 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14883668 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x149a95f9 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x163c05d2 snd_soc_dpcm_can_be_free_stop EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17d66449 snd_soc_get_volsw_range EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x184703ca snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b238880 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b61a580 snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cfb6156 snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1dbadec0 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1dbf2495 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18a40eb3 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19907545 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bd9b33c snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c3d7a66 snd_soc_component_enable_pin_unlocked EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1dc0202c snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ded4c13 snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20a1330b snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23289b16 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x247881b5 snd_soc_component_disable_pin EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2818a022 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25df939e snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x260c92f5 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26e0219a snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x272b7603 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x272c3db8 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x284836a8 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b45cc48 snd_soc_dapm_nc_pin_unlocked EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e947d09 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3077b22c snd_soc_limit_volume EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30d935e4 snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3134ce01 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x335e03e6 snd_soc_dapm_enable_pin EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33a575e3 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34bd87d4 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x363abf51 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x377b223e snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36e21a92 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3715ea6a snd_soc_dpcm_be_can_update EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x378eb712 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e0b2e3e snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38a5f19a snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b3c7a38 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d4735c9 dapm_pinctrl_event EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e2b67d0 snd_soc_get_volsw_sx EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e832ef1 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ea0589c snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f138029 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3fc61da1 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3fcf0149 snd_soc_find_dai_with_mutex EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x406603ca snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41a7d7ed snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42b32101 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40f2dae2 snd_soc_component_set_pll EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42b3f315 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42b9dada snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43427da4 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4448d695 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x447d272b snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x451d17fd snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4352d328 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44463744 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44a25ed1 snd_soc_of_parse_card_name EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45fc02c0 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48ced26c snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48837c37 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a4a8f4b snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a837a7c snd_soc_dapm_sync_unlocked EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4adcdbc9 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ae4dd5e snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b1ffa4c snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d29677f snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e7f7144 snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4eb13357 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4cb4e15c snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4cf569a1 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4faf4106 snd_soc_of_get_dai_link_codecs EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51729ab3 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55cda9f5 snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c97f935 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cd561e9 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d56246a null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5db90cfe snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ec221b4 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5effa638 devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5effb725 snd_soc_dpcm_can_be_prepared +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5215d080 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5454a521 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56da51af snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57de2503 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x596c105e dapm_regulator_event EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f8ecc2a snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fc1074b snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60b88f17 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x610a5bc7 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6139fdd0 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x621cf358 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fc0ebc9 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x614233dc snd_soc_jack_notifier_unregister EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62846e82 snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x628e463e snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x629bf19e snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68937b9e snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69d05675 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6dcdd574 snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e79e447 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70d7470e snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7140add6 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7245486b snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73288d60 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73a682c6 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x631b4ac4 snd_soc_dpcm_can_be_prepared +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66ad2ac8 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66d6ad3c snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67766f0a snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67cae62c snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68d4ddf2 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69821324 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ae7b88d snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b1e2b9c snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bc92cf5 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x707a0bab snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70f9f322 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7333f08e snd_soc_pm_ops EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73ccb89c snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x761222df snd_soc_dai_compr_get_params EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76835781 snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7bb9de9e snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d89b50d snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7dbdb68e snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x774962b8 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77564ff1 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78741583 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x790b975c snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a20d294 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ba25856 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d8ab2e8 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e411a91 snd_soc_component_initialize EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ef82c1f snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ff5732f snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x806eecaa snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x841d029c snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8428c801 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84e466fb snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e815ba5 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f8ec483 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82478dd2 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x847f51e3 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84e8c7b8 snd_soc_component_nc_pin_unlocked EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x851cb8fa snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8739ff62 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x889718e6 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88ab2f22 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89aeceaa snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89e6288e snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8698ac72 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x876c7451 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x881d1793 snd_soc_dapm_disable_pin EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8aea4a20 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b4e7b62 snd_soc_dpcm_get_substream EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b96ce41 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bd0baff snd_soc_dapm_new_control EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c6ca104 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d3682ba snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fd6a299 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x905687b6 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d72b226 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f63b215 snd_soc_dpcm_runtime_update EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9104fa14 snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91ecbfdf snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x924a6e4d snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x916d36b1 snd_soc_dai_digital_mute EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93bc97f7 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94538325 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94a80c26 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95aa7e92 snd_soc_register_card EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x969becfc snd_soc_component_compr_get_codec_caps EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97a15876 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bc1c4fa snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a36a7e6 snd_soc_jack_get_type EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c3d70e6 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cc93d9d snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e8acc6a snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ed8ea84 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa20ee0f7 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2ef4ce9 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa382c704 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa44f9b35 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4ec4c4a snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa50f5588 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa593b611 snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5f3e51f snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6216685 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa698e0f5 snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7e28bb0 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa837a75f snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa900747c snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa99b2fb2 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9e0e26b snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad63970e snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9da9ae31 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4fda198 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa81d602e snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa7a3a28 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaadfa4d7 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaaeedd5e snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab7e9f42 snd_soc_unregister_card EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae68f7b2 snd_soc_dapm_get_volsw EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaeb3b643 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb34f1f2b snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5412d24 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaecc7470 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2b93085 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3668f68 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb52feaaa snd_soc_dapm_init EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb594a0cc snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5a8cdfd snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb726e116 snd_soc_find_dai EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb80accdb snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb873e750 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8c4d67b snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcbaa18a snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf4e40d1 snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4959e85 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5016afa snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc62a6ca6 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb88ab284 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb98df671 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd0dccb0 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe029090 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe1f37ce snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc09eeeb5 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc160cc8a snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc219ee9e snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc53cb717 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5e48ffe snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc64b51fa snd_soc_runtime_set_dai_fmt EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9de60bc snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca8ff33f snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc978264f snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb714bcc snd_soc_rtdcom_lookup EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbe1d355 snd_soc_put_enum_double EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd509c25 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce88a2f1 snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xceb7f1d0 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfdd8250 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce8e41b6 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1716ce4 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd18cf11f dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd19222b2 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd25725d3 snd_soc_dai_is_dummy EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2610ac1 snd_soc_get_strobe EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3c4264f snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd429969d snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3f25ab4 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4a6dc49 snd_soc_runtime_calc_hw EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd50861da soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd68508db snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6a083b2 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6f8fd79 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd82b3605 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbccfc59 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde67c38b snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5b0e499 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd60dcf5a snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7291eac snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd903715b snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9837159 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd98639e2 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbdf5c56 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd0418e8 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd771c81 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddd21b04 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe02eedd5 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0c8babb snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2c3baba devm_snd_soc_register_dai EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2f9ca33 snd_soc_dapm_info_pin_switch EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3317342 snd_soc_component_compr_ack EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe393f52b snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe403c333 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3b2900c snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe43662da dapm_clock_event EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4c019b9 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe59af8e6 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5e5f0c5 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6f0914d snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7560d6d snd_soc_dai_compr_trigger EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8443785 snd_soc_dapm_put_pin_switch EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe917132a snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9bab8b1 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeae9d358 snd_soc_new_ac97_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeaed0cb8 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb4ab65c snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb050ac4 snd_soc_dapm_new_controls EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb512df5 snd_soc_component_compr_trigger EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeba5b345 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee2205c3 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef20eaa0 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf03e2d29 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1e61877 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf26083a8 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2937e46 snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf338d9f4 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3b21210 snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf40979de snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf48b446a snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5e919e9 snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6702a3b snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf769259b snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xede19694 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedff0a38 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef0e1edd devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2e8aa38 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf731e614 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7b91123 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7f62857 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8c7cf7e snd_soc_component_force_enable_pin_unlocked EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd4f0b04 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe91e9d5 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff5d88d4 snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x3b165733 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x98c0ed72 snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xa0d50f43 snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xf2381f22 snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xfd86bd3e snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa698db3 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe6799d2 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffffd2dc snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x0d465f28 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x681c1000 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xbbe2f03f snd_sof_debugfs_io_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xccb78aa4 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xfea4bf3e snd_sof_free_debug EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x17839efa line6_probe EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1bfc10ee line6_init_pcm EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id @@ -18407,172 +18417,159 @@ EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xab4a3c8c line6_read_serial_nu EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdc43bc4d line6_suspend EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe1aea22f line6_pcm_release EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf6246eaf line6_pcm_acquire +EXPORT_SYMBOL_GPL vmlinux 0x000b9ff1 splice_to_pipe EXPORT_SYMBOL_GPL vmlinux 0x0019451c handle_fasteoi_nmi EXPORT_SYMBOL_GPL vmlinux 0x00263596 platform_msi_domain_free_irqs EXPORT_SYMBOL_GPL vmlinux 0x003a7cad pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x003ef26c sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x004f36d5 inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x0061667b clk_divider_ops EXPORT_SYMBOL_GPL vmlinux 0x006658bf blk_mq_start_stopped_hw_queue EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0091e0cd synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0x00a2edac wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x00aad717 wakeup_sources_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x00aee881 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x008d78cc crypto_skcipher_setkey EXPORT_SYMBOL_GPL vmlinux 0x00afe9f5 __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0x00b2eeaf inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x00bdab08 flush_vsx_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x00c6cfee crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x00d27097 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x00b60e9b i2c_add_numbered_adapter EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00da95ed regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x00dcd54b bio_start_io_acct EXPORT_SYMBOL_GPL vmlinux 0x00dde467 sysfs_remove_device_from_node -EXPORT_SYMBOL_GPL vmlinux 0x00ee48db spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0x0102adc4 __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0x01074a36 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x010b6894 clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0x011d3519 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x01410d52 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x013e65ac of_mpc8xxx_spi_probe EXPORT_SYMBOL_GPL vmlinux 0x01419dd2 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x01466489 bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0x0154a27f reset_control_get_count EXPORT_SYMBOL_GPL vmlinux 0x0159c819 usb_bus_idr EXPORT_SYMBOL_GPL vmlinux 0x016597fb devm_led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x0169fbcb clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x01781d1e ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0x0181475f of_i2c_get_board_info EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits EXPORT_SYMBOL_GPL vmlinux 0x018c02f9 eeh_pe_reset EXPORT_SYMBOL_GPL vmlinux 0x01907648 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x0190e7da device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x0191bb31 pci_host_common_remove EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01ad44a0 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x01a1075f cpufreq_generic_init EXPORT_SYMBOL_GPL vmlinux 0x01b42f7f dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0x01ba7b2c __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x01caeef8 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x01d34c2c acomp_request_free EXPORT_SYMBOL_GPL vmlinux 0x01d9e6d5 elv_unregister EXPORT_SYMBOL_GPL vmlinux 0x01dcba69 uprobe_unregister EXPORT_SYMBOL_GPL vmlinux 0x01dfb6f6 cpci_hp_register_controller EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e346c0 wait_on_page_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x01ea951f crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0x01efae50 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x01fd1c0f __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x01efe71e kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x020490a6 scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x020a76f7 nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x0233987c serdev_device_write_flush EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x02a0b548 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x02a26fe5 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x025a06b1 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x026dfdce crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0x02a81550 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x02b73a0b ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x02c6c6ef bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0x02ce7e9c mm_iommu_lookup -EXPORT_SYMBOL_GPL vmlinux 0x02f48e74 thermal_zone_bind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x02f676ec da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x02f8e8bb sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x02fa2be3 tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x03094f10 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x030f613b __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x03195ea0 crypto_unregister_shashes EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x0321fb7e xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x03305c68 __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list EXPORT_SYMBOL_GPL vmlinux 0x0349ab60 extcon_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x03584aeb pinmux_generic_get_function EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x037e76e7 wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x03731a68 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x037fde4a add_to_page_cache_lru EXPORT_SYMBOL_GPL vmlinux 0x0388f8ae dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x039162de is_skb_forwardable EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03aaead2 crypto_unregister_ahashes EXPORT_SYMBOL_GPL vmlinux 0x03adeb51 fork_usermode_driver EXPORT_SYMBOL_GPL vmlinux 0x03b71c0a spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x03bca71e __iptunnel_pull_header EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x03ce27d0 iommu_domain_free EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03dc5dcd tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x03deac2e strp_done +EXPORT_SYMBOL_GPL vmlinux 0x03dc6a55 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x03dc933b ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0x03f17b7e dev_pm_opp_put_regulators EXPORT_SYMBOL_GPL vmlinux 0x03f31c95 fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc EXPORT_SYMBOL_GPL vmlinux 0x041e64c1 clk_mux_val_to_index EXPORT_SYMBOL_GPL vmlinux 0x041e8b10 xas_find EXPORT_SYMBOL_GPL vmlinux 0x04258796 opal_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x04289254 __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x043b43d9 trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0x043eb2ab nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x04636618 blk_insert_cloned_request EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges EXPORT_SYMBOL_GPL vmlinux 0x046a745c blkcg_root EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x0470c975 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x0479a251 platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0x0481ee41 pinctrl_lookup_state EXPORT_SYMBOL_GPL vmlinux 0x04835528 extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk EXPORT_SYMBOL_GPL vmlinux 0x049139ef pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x049c7fcd ata_host_init EXPORT_SYMBOL_GPL vmlinux 0x04a3a082 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x04aba6bb nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x04a857e8 tcp_set_keepalive 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 0x04cc1b6e icst_clk_setup EXPORT_SYMBOL_GPL vmlinux 0x04d37698 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0x04d3becc inet_twsk_purge EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04ef062a inet6_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x04f6e014 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x04f791b1 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0x050116b3 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x0501f158 __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x0511d7e9 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x05196b49 __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x0528e961 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x0512d5fc inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x0525d4d1 __cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x052d4e91 ata_link_online EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x054133ed __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x05414a7a tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x054e5a37 crypto_unregister_aead EXPORT_SYMBOL_GPL vmlinux 0x054f12a1 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x055157a8 rtc_set_time 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 0x056e8fb8 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x05761b5e __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x0576308d blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x059c5bf4 crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0x05a0ab78 usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0x05b4df1a fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x05c3a6fa find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x05c4cf94 pci_epc_stop EXPORT_SYMBOL_GPL vmlinux 0x05d04326 pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x05d305fe switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0x05fb9bf0 pci_destroy_slot EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x061e8b18 usb_role_switch_find_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0620bee6 regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x06285d2a leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x063d3213 device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x064d69c9 pm_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x065d644c rtc_read_alarm EXPORT_SYMBOL_GPL vmlinux 0x06601c8b irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x0669cc89 devlink_region_snapshot_id_put EXPORT_SYMBOL_GPL vmlinux 0x066eb713 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x069d0d39 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x06a27edd __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x06b4740d virtqueue_enable_cb_prepare EXPORT_SYMBOL_GPL vmlinux 0x06b5829a __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x06b6dc9e crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0x06c27c99 _copy_mc_to_iter EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off EXPORT_SYMBOL_GPL vmlinux 0x06d4aace pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x06e00bed crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x06e2910f spi_sync_locked EXPORT_SYMBOL_GPL vmlinux 0x06e923a2 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x06f72d37 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x07050d60 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x070821b9 device_set_wakeup_capable EXPORT_SYMBOL_GPL vmlinux 0x070bc782 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x070f6fa5 devlink_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0x07174cbf mmu_interval_notifier_insert_locked EXPORT_SYMBOL_GPL vmlinux 0x071bbf52 of_usb_host_tpl_support EXPORT_SYMBOL_GPL vmlinux 0x071fb465 vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x071fce5c netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0x0723535d virtqueue_kick_prepare EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x0733e432 spi_finalize_current_transfer EXPORT_SYMBOL_GPL vmlinux 0x073d0c49 subsys_dev_iter_init EXPORT_SYMBOL_GPL vmlinux 0x074159a4 vp_modern_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0x07479c1b phy_power_off @@ -18580,555 +18577,578 @@ EXPORT_SYMBOL_GPL vmlinux 0x07481f82 pm_runtime_force_resume EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback EXPORT_SYMBOL_GPL vmlinux 0x074bfb4a fat_sync_inode EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x074ff07d ata_sas_port_destroy EXPORT_SYMBOL_GPL vmlinux 0x0753e78f subsys_system_register EXPORT_SYMBOL_GPL vmlinux 0x075aeb4b pci_find_next_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x0761d960 noop_direct_IO EXPORT_SYMBOL_GPL vmlinux 0x07627c9a fsnotify_put_group EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy EXPORT_SYMBOL_GPL vmlinux 0x076be658 auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0x076c9fab devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0x07777948 genphy_c45_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x077b18cc nvmem_cell_read_variable_le_u32 EXPORT_SYMBOL_GPL vmlinux 0x0790f2ac lp8788_update_bits EXPORT_SYMBOL_GPL vmlinux 0x079d25ae irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0x07a57898 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x07a409b2 srp_release_transport EXPORT_SYMBOL_GPL vmlinux 0x07acaea1 register_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x07b1a065 dma_alloc_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b8e60e ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07d6994d skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x07d8663f trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x07e60974 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x07e19eba ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0x07e96aee pseries_eeh_init_edev_recursive -EXPORT_SYMBOL_GPL vmlinux 0x07eeb857 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x07fa5bd3 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x0802e50a gpiod_direction_input EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x081a6c8a skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0x084470c0 tracepoint_srcu EXPORT_SYMBOL_GPL vmlinux 0x0844f739 tps6586x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x085015b2 dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0x0856da01 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x0878a7ef crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x085839f3 switchdev_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x0885fed1 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x088dd748 inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0x0890ce31 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0898cd58 fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0x08a66d10 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x08baa5cf regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x08be3d44 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x08c525c4 ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08ce56ab device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x08d87e0a __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0x08d8d99a dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x08f51393 regulator_set_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x08fe10bd pci_traverse_device_nodes -EXPORT_SYMBOL_GPL vmlinux 0x09047150 xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x092d2441 devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x092f9b7d ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x0925992d is_skb_forwardable EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str EXPORT_SYMBOL_GPL vmlinux 0x094af376 xas_load -EXPORT_SYMBOL_GPL vmlinux 0x095a7d59 wbt_enable_default EXPORT_SYMBOL_GPL vmlinux 0x09636e9b dma_buf_move_notify EXPORT_SYMBOL_GPL vmlinux 0x09664a30 dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x097f3ca6 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x097c1e6f bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0x09865d27 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x0989a59f platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x0990e159 ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0x0997d948 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x099b5bd6 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0x09a71d8d devfreq_event_disable_edev EXPORT_SYMBOL_GPL vmlinux 0x09af8caa balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x09b46af8 wm8350_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove EXPORT_SYMBOL_GPL vmlinux 0x09b5b2e8 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x09b7517c skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x09b96d04 rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x09ed97ee devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0x0a00ee53 device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x0a13fd0c xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x0a1e5a26 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a231a9f ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0x0a34ce88 auxiliary_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a467d2d pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0x0a4a7eb9 pwm_apply_state EXPORT_SYMBOL_GPL vmlinux 0x0a4ec99d tpm_pcr_read EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw -EXPORT_SYMBOL_GPL vmlinux 0x0a636f42 gpiochip_remove_pin_ranges EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a773177 regmap_fields_read EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x0a8810a7 devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0x0a94684a unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x0aa6c347 lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x0ac426cb fwnode_graph_get_remote_port_parent EXPORT_SYMBOL_GPL vmlinux 0x0adaefd0 gov_attr_set_put EXPORT_SYMBOL_GPL vmlinux 0x0aefc38f restore_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region EXPORT_SYMBOL_GPL vmlinux 0x0af4798b usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x0afa8103 pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b11077b scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0x0b1c2dca led_classdev_notify_brightness_hw_changed EXPORT_SYMBOL_GPL vmlinux 0x0b2094e0 usb_register_device_driver EXPORT_SYMBOL_GPL vmlinux 0x0b216ace clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x0b232ffd ohci_suspend EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b47a3b0 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x0b487b97 skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0x0b4c2e1b devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b52b79c mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x0b56e055 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0b5c6a69 dev_set_name EXPORT_SYMBOL_GPL vmlinux 0x0b69e06c irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x0b6ee00a device_store_ulong EXPORT_SYMBOL_GPL vmlinux 0x0b75aca0 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x0b8467f8 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x0b85b535 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x0b851100 ata_sas_queuecmd EXPORT_SYMBOL_GPL vmlinux 0x0b863e50 sysfs_remove_link EXPORT_SYMBOL_GPL vmlinux 0x0b94a310 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x0b99e742 ata_sas_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0x0b9dced4 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x0ba098d9 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x0bab3ca8 dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0x0bae7f95 dma_get_any_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x0bbd3051 __fscrypt_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bdcc5ee dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x0bdd343e watchdog_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x0bdd3626 dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0x0bf05ad6 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c014b82 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x0c23bd25 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x0c2bcbc2 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index EXPORT_SYMBOL_GPL vmlinux 0x0c3a2126 of_phandle_iterator_init EXPORT_SYMBOL_GPL vmlinux 0x0c3eae0d pinctrl_force_default EXPORT_SYMBOL_GPL vmlinux 0x0c402cac replay_system_reset EXPORT_SYMBOL_GPL vmlinux 0x0c48c46d usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x0c51369d device_link_del EXPORT_SYMBOL_GPL vmlinux 0x0c553964 usb_driver_set_configuration EXPORT_SYMBOL_GPL vmlinux 0x0c595fcd rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x0c5a12fb fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x0c6dc2c5 sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x0c70e7e7 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x0c7f4076 sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0x0c841765 usb_unanchor_urb EXPORT_SYMBOL_GPL vmlinux 0x0c855106 devm_pm_opp_register_set_opp_helper EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c97ebb2 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x0ca63156 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x0caa4a61 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0x0caba469 ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x0cad260b irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x0cb26c3c spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x0cb35392 lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cc07a82 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x0cd8ee8f bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0x0ce38fab rio_inb_pwrite_handler EXPORT_SYMBOL_GPL vmlinux 0x0ce3ee5a mmu_kernel_ssize EXPORT_SYMBOL_GPL vmlinux 0x0d107aad extcon_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x0d125ab6 trace_seq_putmem EXPORT_SYMBOL_GPL vmlinux 0x0d12c3ec devm_led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0x0d1f8f35 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x0d3a884e scsi_host_unblock EXPORT_SYMBOL_GPL vmlinux 0x0d3ea9dc pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d4e4f71 sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d7640f1 sdio_claim_irq EXPORT_SYMBOL_GPL vmlinux 0x0d7d1c97 ata_sff_pause EXPORT_SYMBOL_GPL vmlinux 0x0d7f0a73 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x0d954ced rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x0d97aa0d scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0x0dc3bdc5 securityfs_create_file EXPORT_SYMBOL_GPL vmlinux 0x0dc5602c pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x0dc76e03 br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0x0dcbedee kgdb_unregister_io_module EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0ddf4d57 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core -EXPORT_SYMBOL_GPL vmlinux 0x0de49331 sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0x0dec7949 usb_mon_register EXPORT_SYMBOL_GPL vmlinux 0x0df238c4 i2c_of_match_device EXPORT_SYMBOL_GPL vmlinux 0x0df8d4d2 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0x0e0788e0 devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x0e0a168b btree_insert EXPORT_SYMBOL_GPL vmlinux 0x0e0cc7e7 gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x0e0d07e0 __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0e0d5ea8 crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x0e165240 regulator_disable_regmap EXPORT_SYMBOL_GPL vmlinux 0x0e245e3e powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x0e27e0b3 scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0x0e29e7f4 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x0e2b4e18 perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0x0e2db4b0 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x0e333fc8 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x0e2e694c ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x0e426c1c usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0x0e45425c ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x0e4f0a12 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x0e513f66 __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0x0e521b82 btree_update EXPORT_SYMBOL_GPL vmlinux 0x0e546d94 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x0e5b9558 security_kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x0e61e39e pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x0e68c2ca rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e90ad75 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x0e9fc921 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x0e75e227 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x0e762fed spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x0e8c2f60 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x0e99923b wm8350_block_write EXPORT_SYMBOL_GPL vmlinux 0x0ea2a72b usb_scuttle_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x0eaeec62 of_pci_range_parser_one EXPORT_SYMBOL_GPL vmlinux 0x0ebdc830 devm_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x0ec2b71d usb_init_urb EXPORT_SYMBOL_GPL vmlinux 0x0ec5599f regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x0ecd7b89 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x0ed0c39e devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0ee55592 device_create_with_groups EXPORT_SYMBOL_GPL vmlinux 0x0ee8e400 kvmppc_h_set_xdabr EXPORT_SYMBOL_GPL vmlinux 0x0eecfcde of_get_videomode EXPORT_SYMBOL_GPL vmlinux 0x0efb5b57 of_thermal_get_ntrips EXPORT_SYMBOL_GPL vmlinux 0x0f097e24 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x0f0afe5a proc_create_net_data EXPORT_SYMBOL_GPL vmlinux 0x0f0d0cd2 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x0f10d564 cpufreq_freq_transition_begin EXPORT_SYMBOL_GPL vmlinux 0x0f11c064 edac_pci_handle_pe EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f34728a __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x0f2174e4 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x0f31b857 filemap_range_needs_writeback +EXPORT_SYMBOL_GPL vmlinux 0x0f5704d5 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x0f6416db regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0x0f788c08 pci_hp_destroy EXPORT_SYMBOL_GPL vmlinux 0x0f85e863 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0f870cfa nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0x0fb026aa serdev_device_get_tiocm EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x100bf08e crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0x100e1be6 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1011677e skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101c032f regulator_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x102ee6b8 pci_hp_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x102f02eb icc_put EXPORT_SYMBOL_GPL vmlinux 0x103473d0 devm_of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x103bb6ca scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x1035ffc4 trace_event_buffer_reserve EXPORT_SYMBOL_GPL vmlinux 0x103f9b4d pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x104697bd ata_msleep EXPORT_SYMBOL_GPL vmlinux 0x1057489d vas_register_api_pseries EXPORT_SYMBOL_GPL vmlinux 0x105f7930 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x106bd39f shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf EXPORT_SYMBOL_GPL vmlinux 0x10b77a09 kvmppc_p9_enter_guest EXPORT_SYMBOL_GPL vmlinux 0x10bbdf7b kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x10bc52b0 dst_blackhole_redirect EXPORT_SYMBOL_GPL vmlinux 0x10be11ee vfio_pci_core_write EXPORT_SYMBOL_GPL vmlinux 0x10bfcf97 get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x10ce37ff flush_altivec_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x10d458c0 devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0x10e347dc cpufreq_dbs_governor_init EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable EXPORT_SYMBOL_GPL vmlinux 0x10f8b322 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x10f8d402 inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x10fdd019 extcon_dev_unregister EXPORT_SYMBOL_GPL vmlinux 0x10fe219a __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x11058df5 gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0x110e8c86 pci_epc_get_features EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift EXPORT_SYMBOL_GPL vmlinux 0x111e6dfc pnv_get_supported_cpuidle_states EXPORT_SYMBOL_GPL vmlinux 0x112677cc dev_pm_opp_set_supported_hw EXPORT_SYMBOL_GPL vmlinux 0x11484593 devm_request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x114f84a9 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x1153e670 i2c_client_type EXPORT_SYMBOL_GPL vmlinux 0x1159d8ff rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x115b62c0 crypto_alloc_acomp EXPORT_SYMBOL_GPL vmlinux 0x115bc4be usb_get_urb EXPORT_SYMBOL_GPL vmlinux 0x11638a69 xive_native_alloc_vp_block -EXPORT_SYMBOL_GPL vmlinux 0x116db0a1 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x116bcd76 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x1170ea4f tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x1174b99e __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x11856a99 vring_create_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x118b539e blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0x119d7ba4 device_dma_supported EXPORT_SYMBOL_GPL vmlinux 0x119f51b2 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x11a264ce skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x11a289e8 l3mdev_update_flow EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11ac41b6 spi_replace_transfers -EXPORT_SYMBOL_GPL vmlinux 0x11ca122c regmap_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0x11e64277 devres_remove EXPORT_SYMBOL_GPL vmlinux 0x11ea4d9d of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0x11edcd5e bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x120c4512 i2c_new_scanned_device EXPORT_SYMBOL_GPL vmlinux 0x12138ff3 usb_unpoison_urb EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1228f9c8 strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0x12374739 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x1240dc26 crypto_stats_akcipher_verify EXPORT_SYMBOL_GPL vmlinux 0x12420814 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x124ba67a l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1252c3ce tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x125768fa pci_epc_get_msix EXPORT_SYMBOL_GPL vmlinux 0x12661fb6 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x12673b03 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x1266403a devlink_port_type_eth_set EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x126a470d __inode_attach_wb EXPORT_SYMBOL_GPL vmlinux 0x127da5e0 ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0x127e8d71 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x1287a6bf sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0x1289a7f3 call_srcu EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x12b610ec skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x129d91d7 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12a136ff inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x12b3a512 sched_trace_rq_nr_running EXPORT_SYMBOL_GPL vmlinux 0x12c078cd dmaengine_desc_set_metadata_len EXPORT_SYMBOL_GPL vmlinux 0x12c42928 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x12c99b3f pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x12d9b164 netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister EXPORT_SYMBOL_GPL vmlinux 0x12fa4367 irq_chip_set_vcpu_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0x12ff65a5 pm_runtime_enable EXPORT_SYMBOL_GPL vmlinux 0x1305b111 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x131509ab devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131cdbb4 ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x1337d3d4 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x131e3a36 bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x1351a446 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x1352ff97 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x13568238 gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x1371f7a2 devlink_params_publish EXPORT_SYMBOL_GPL vmlinux 0x1376982c __wake_up_locked_key EXPORT_SYMBOL_GPL vmlinux 0x13784f32 blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x137d5d7b device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x138524bd fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x138f9b96 cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0x13935b2e add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x139cadb6 crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0x139d830b input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x13abd094 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x13b3eae7 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x13a20f18 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x13a62233 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x13b393a1 generic_access_phys EXPORT_SYMBOL_GPL vmlinux 0x13bb4f33 dev_pm_opp_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x13c3dead ata_pci_bmdma_init_one EXPORT_SYMBOL_GPL vmlinux 0x13c53be3 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x13ca9634 crypto_shoot_alg EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder EXPORT_SYMBOL_GPL vmlinux 0x13d2ca0c dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x13db1b8d trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x13e8570d clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0x13e9414b pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x13ec0bf9 posix_clock_register EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13ef14bc pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x143a6b8b devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x143563b2 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x143e9fba crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0x144ea7fe dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0x144fa497 crypto_shash_tfm_digest EXPORT_SYMBOL_GPL vmlinux 0x1454f2a4 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x14560fda xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x145ce910 rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x147e413f wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x14969fe0 mmc_regulator_set_vqmmc EXPORT_SYMBOL_GPL vmlinux 0x14a1cb01 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x14a9f997 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x14ad0330 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x14bff60d ata_port_abort EXPORT_SYMBOL_GPL vmlinux 0x14cb34d8 __devres_alloc_node EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14fabbf9 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x14db31b7 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x14ed6c7d vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x14eda017 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x14ef5144 regulator_is_supported_voltage EXPORT_SYMBOL_GPL vmlinux 0x14fbf825 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x151470af devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0x152ddffd pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x152e933f devlink_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0x152eb1bf of_property_read_variable_u8_array EXPORT_SYMBOL_GPL vmlinux 0x152ffdbe __auxiliary_device_add EXPORT_SYMBOL_GPL vmlinux 0x1537c7f2 opal_ipmi_recv EXPORT_SYMBOL_GPL vmlinux 0x153a5fe6 serial8250_clear_and_reinit_fifos EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x1540bdf0 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put EXPORT_SYMBOL_GPL vmlinux 0x1556ae34 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x155b7489 icc_nodes_remove EXPORT_SYMBOL_GPL vmlinux 0x15600607 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x1587f1d6 ip_local_out EXPORT_SYMBOL_GPL vmlinux 0x1591ce77 dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0x159d2dcf nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0x159e9b83 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x159f3a51 crypto_stats_kpp_generate_public_key EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks EXPORT_SYMBOL_GPL vmlinux 0x15aebe78 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x15b33d8a device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x15bb594f cpufreq_register_driver EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x15d33a23 devm_pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0x15dcbf72 edac_pci_add_device EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask EXPORT_SYMBOL_GPL vmlinux 0x15ffeafd pci_ecam_free -EXPORT_SYMBOL_GPL vmlinux 0x160ca8cd sata_std_hardreset EXPORT_SYMBOL_GPL vmlinux 0x16193e5b regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x16238828 devm_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x1629020a pm_runtime_set_autosuspend_delay EXPORT_SYMBOL_GPL vmlinux 0x1629d8c0 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x162f51a3 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0x16369a27 xive_native_sync_queue EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x16551c21 xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x16681120 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x166e21e7 gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0x167248df kernel_kobj EXPORT_SYMBOL_GPL vmlinux 0x1672fb54 pci_enable_pasid EXPORT_SYMBOL_GPL vmlinux 0x167f9706 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x1684f285 ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x169a122e scsi_check_sense EXPORT_SYMBOL_GPL vmlinux 0x16a90252 pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0x16afafac usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x16bfe1a5 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x16bfedda tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x16c2cb5a sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x16ba8a2d __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0x16c5ec08 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x16c85403 gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x16d2855d __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x16d7279d __regmap_init EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness EXPORT_SYMBOL_GPL vmlinux 0x16ed82c0 fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0x16f3f2d2 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x16f6882b nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0x16fcf68c device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x16fb0685 sched_trace_rq_avg_dl EXPORT_SYMBOL_GPL vmlinux 0x16febabd usb_hcd_unlink_urb_from_ep EXPORT_SYMBOL_GPL vmlinux 0x170c43b7 vp_modern_set_features EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x1710b0d2 scsi_check_sense EXPORT_SYMBOL_GPL vmlinux 0x1714c013 pci_probe_reset_slot EXPORT_SYMBOL_GPL vmlinux 0x171874b2 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x171aa8a4 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x171aea24 crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0x1724c3b7 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x173d46d3 dax_iomap_rw EXPORT_SYMBOL_GPL vmlinux 0x1741d0a7 serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0x1744e9f4 devm_pinctrl_unregister EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x17528d89 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1755c32f fwnode_get_phy_node EXPORT_SYMBOL_GPL vmlinux 0x17571cd2 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x175879fe ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put EXPORT_SYMBOL_GPL vmlinux 0x1768f157 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x176a4b91 pcibios_finish_adding_to_bus EXPORT_SYMBOL_GPL vmlinux 0x176f4ccc ata_sff_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x177e7535 device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0x17b70701 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x17bb4d87 blk_trace_remove EXPORT_SYMBOL_GPL vmlinux 0x17bb4e14 kvmppc_find_table EXPORT_SYMBOL_GPL vmlinux 0x17c0d7bc led_init_core EXPORT_SYMBOL_GPL vmlinux 0x17c2cbfc hash__alloc_context_id EXPORT_SYMBOL_GPL vmlinux 0x17c4fa12 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x17c94612 devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x17ccf1dc ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0x17d3db4b irq_domain_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x17d710b9 dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x17d76418 synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0x17de78e2 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x17deb3bb stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x17e279d8 alloc_page_buffers EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x180d430b devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x18057422 devm_hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0x18125cc7 pinctrl_utils_free_map EXPORT_SYMBOL_GPL vmlinux 0x1817e05e devm_regulator_put EXPORT_SYMBOL_GPL vmlinux 0x1826c65a tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x18285344 l3mdev_ifindex_lookup_by_table_id EXPORT_SYMBOL_GPL vmlinux 0x18291a21 of_usb_get_dr_mode_by_phy EXPORT_SYMBOL_GPL vmlinux 0x1830e34e bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x183d92ed crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence EXPORT_SYMBOL_GPL vmlinux 0x1843e540 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x184c46f3 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x18463211 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x18527c6a mbox_chan_txdone EXPORT_SYMBOL_GPL vmlinux 0x1858542b loop_backing_file EXPORT_SYMBOL_GPL vmlinux 0x185b5ffe devm_devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x18654dea trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x1866e4a7 gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x18687ce2 of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0x18702792 dev_pm_qos_update_user_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x187a8229 md_bitmap_copy_from_slot EXPORT_SYMBOL_GPL vmlinux 0x18930e08 clk_hw_unregister_divider EXPORT_SYMBOL_GPL vmlinux 0x189b8218 ata_bmdma_port_ops EXPORT_SYMBOL_GPL vmlinux 0x189f874d powernv_get_random_long -EXPORT_SYMBOL_GPL vmlinux 0x18b1f234 gpiod_set_config -EXPORT_SYMBOL_GPL vmlinux 0x18cf79bb trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x18b3e91b platform_device_put EXPORT_SYMBOL_GPL vmlinux 0x18d9aca9 of_dma_router_register EXPORT_SYMBOL_GPL vmlinux 0x18da5130 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18f3596a blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x18fcd1a5 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x18fed64f ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0x1902178a srp_tmo_valid EXPORT_SYMBOL_GPL vmlinux 0x190fa7ce tty_mode_ioctl EXPORT_SYMBOL_GPL vmlinux 0x1918cc8a input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x19236c09 nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0x1927f154 rio_mport_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0x193c7be6 rio_pw_enable EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state EXPORT_SYMBOL_GPL vmlinux 0x194559b8 iommu_tce_xchg_no_kill -EXPORT_SYMBOL_GPL vmlinux 0x196dd2a5 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x195867ec devm_clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x196f0c8b badrange_init EXPORT_SYMBOL_GPL vmlinux 0x19746591 fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0x197f25bf xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0x1981558e md_stop EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x198740c6 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x198b2693 vfs_read EXPORT_SYMBOL_GPL vmlinux 0x198d6b40 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x19a08bb7 gpiochip_line_is_open_drain EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a75cc4 switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x19a81e33 sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x19b39e18 crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x19c541d2 powercap_unregister_zone EXPORT_SYMBOL_GPL vmlinux 0x19cb6247 vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0x19dc5f62 blk_rq_err_bytes EXPORT_SYMBOL_GPL vmlinux 0x19dd8076 power_supply_get_property_from_supplier EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19fc84af rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x19f4ae0f __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x1a08c0e0 init_user_ns EXPORT_SYMBOL_GPL vmlinux 0x1a0b3d9b devm_nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a1e8c7a platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0x1a2453e7 iomap_dio_iopoll EXPORT_SYMBOL_GPL vmlinux 0x1a3e7963 copro_handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x1a575041 devlink_region_create EXPORT_SYMBOL_GPL vmlinux 0x1a59c6cc devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1a5f4b52 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x1a628b2c wm8350_set_bits EXPORT_SYMBOL_GPL vmlinux 0x1a660456 pci_enable_ats EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie EXPORT_SYMBOL_GPL vmlinux 0x1a6fe092 ata_sff_thaw EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list -EXPORT_SYMBOL_GPL vmlinux 0x1a77f7c7 pskb_put EXPORT_SYMBOL_GPL vmlinux 0x1a782079 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x1a7947e8 regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1a8a15b2 sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x1a987ebc devfreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0x1a9c20b1 xive_cleanup_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x1a9d8d0b __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x1aa2a695 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1ab66dd5 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x1acaadc5 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x1a9e053e rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x1ab1425d wm8350_gpio_config EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ae936df fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x1aea9833 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1ad41fe3 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x1ad8d01f skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x1adcf824 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x1af14448 crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af7e2c3 crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0x1b1493da dev_pm_opp_free_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0x1b199529 ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0x1b1bcbbd simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0x1b320af7 pnv_pci_get_presence_state EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask EXPORT_SYMBOL_GPL vmlinux 0x1b5266dd devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x1b5a55da ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0x1b78ee3f of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0x1b7fddd3 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1b812aed crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b9538ba ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context -EXPORT_SYMBOL_GPL vmlinux 0x1ba8b8eb alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x1bad8403 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x1ba3825d register_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x1bb40a2d __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0x1bb6bc38 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x1bbdb79f crypto_aead_setauthsize EXPORT_SYMBOL_GPL vmlinux 0x1bbfc7fe of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x1bc16ba1 pcibios_free_controller EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bca4b30 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x1bc8b910 devm_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x1bcef770 __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0x1be09aab gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1bdd521a aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x1beaf7bc ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0x1bec4051 class_compat_create_link EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1c1b3f5e pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x1bef44f9 event_triggers_call EXPORT_SYMBOL_GPL vmlinux 0x1c257836 vfio_external_group_match_file +EXPORT_SYMBOL_GPL vmlinux 0x1c3100ea crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1c406d35 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x1c50f789 inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x1c53019a devm_regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5fda72 skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase EXPORT_SYMBOL_GPL vmlinux 0x1c62e34d opal_get_sensor_data EXPORT_SYMBOL_GPL vmlinux 0x1c7df74c kvm_hv_vm_activated EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c829001 cpufreq_register_governor EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up EXPORT_SYMBOL_GPL vmlinux 0x1c8bca8d emulate_vsx_store -EXPORT_SYMBOL_GPL vmlinux 0x1c8be7a2 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x1c8dcbe0 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x1c96118b __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x1c988728 uart_handle_dcd_change EXPORT_SYMBOL_GPL vmlinux 0x1ca78a6c __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x1cac775a fwnode_graph_get_remote_port_parent EXPORT_SYMBOL_GPL vmlinux 0x1cba334e dev_pm_opp_is_turbo EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off EXPORT_SYMBOL_GPL vmlinux 0x1cc1abf6 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x1cc3f491 wm8350_block_read EXPORT_SYMBOL_GPL vmlinux 0x1cc4acac devm_power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0x1cc69cc0 scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0x1cef3226 usb_bus_idr_lock EXPORT_SYMBOL_GPL vmlinux 0x1cf608ba pci_epf_destroy EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create EXPORT_SYMBOL_GPL vmlinux 0x1d0589c5 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x1d12e5c1 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x1d132416 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0x1d1922b3 mctrl_gpio_init EXPORT_SYMBOL_GPL vmlinux 0x1d1d54bf devm_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2a94db vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0x1d35f75b component_master_del EXPORT_SYMBOL_GPL vmlinux 0x1d379204 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x1d3da1cb device_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x1d48a39c anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1d537620 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1d55e8f2 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x1d585fb0 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x1d634290 crypto_shash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table EXPORT_SYMBOL_GPL vmlinux 0x1d7a72a2 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x1d8954fa phy_led_triggers_unregister EXPORT_SYMBOL_GPL vmlinux 0x1d8cf40f fuse_conn_init EXPORT_SYMBOL_GPL vmlinux 0x1d8ff047 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x1d93ade4 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x1db50277 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x1db0f623 regulator_bulk_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x1dbff27a fscrypt_ioctl_get_policy_ex EXPORT_SYMBOL_GPL vmlinux 0x1dc580a3 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x1dca64e2 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x1dd60758 fixed_phy_register_with_gpiod EXPORT_SYMBOL_GPL vmlinux 0x1de6adfd syscon_regmap_lookup_by_phandle_optional EXPORT_SYMBOL_GPL vmlinux 0x1df33284 opal_prd_msg EXPORT_SYMBOL_GPL vmlinux 0x1df4f884 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x1df80899 of_clk_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e077801 wait_on_page_writeback_killable EXPORT_SYMBOL_GPL vmlinux 0x1e0cf235 opal_get_sensor_data_u64 EXPORT_SYMBOL_GPL vmlinux 0x1e2e6a14 hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0x1e2ed60f debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x1e3147af __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0x1e366606 power_supply_class EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e4ef15d ping_rcv EXPORT_SYMBOL_GPL vmlinux 0x1e5ce877 sysfs_rename_link_ns EXPORT_SYMBOL_GPL vmlinux 0x1e5f7692 blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1e600ff0 trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0x1e6bee90 klp_get_state EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e816daf crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x1e85629e bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0x1e877901 nd_region_provider_data EXPORT_SYMBOL_GPL vmlinux 0x1e8d1fea uart_get_rs485_mode EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e93f7a4 security_path_chmod EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names @@ -19139,179 +19159,178 @@ EXPORT_SYMBOL_GPL vmlinux 0x1edac5c3 xive_native_enable_vp EXPORT_SYMBOL_GPL vmlinux 0x1eddb4b5 unregister_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x1ede493f generic_fh_to_parent EXPORT_SYMBOL_GPL vmlinux 0x1edfd0b0 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x1ee44af3 skb_gso_validate_mac_len EXPORT_SYMBOL_GPL vmlinux 0x1ee4d4fb ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x1ef36b7c inet_csk_reqsk_queue_hash_add 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 0x1f1d4f88 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x1f0dcab3 skb_complete_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x1f26fe15 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x1f28cd2c bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x1f28e1e1 get_kernel_pages EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f406bdb regulator_set_load EXPORT_SYMBOL_GPL vmlinux 0x1f41f50e srp_stop_rport_timers EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms EXPORT_SYMBOL_GPL vmlinux 0x1f4dafd3 usb_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x1f4f4417 irq_chip_set_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5647e4 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x1f56e96f page_cache_ra_unbounded EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8cbf30 ata_dev_pair EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x1fa3c488 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1fb57b1f devm_of_icc_get EXPORT_SYMBOL_GPL vmlinux 0x1fb6fb6a of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x1fb93be9 lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0x1fdb2659 proc_douintvec_minmax EXPORT_SYMBOL_GPL vmlinux 0x1fe3a8ef of_map_id EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1fe76175 rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x1fe83789 __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x1ff230e4 phy_led_triggers_unregister EXPORT_SYMBOL_GPL vmlinux 0x2005b703 ehci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x200bfb78 pcibios_scan_phb EXPORT_SYMBOL_GPL vmlinux 0x2017c10e iommu_aux_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x201df196 of_clk_parent_fill EXPORT_SYMBOL_GPL vmlinux 0x202b8e10 fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x2046df33 regmap_fields_read EXPORT_SYMBOL_GPL vmlinux 0x204c0d61 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x205bac95 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x207cacf0 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x206ced08 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x20733191 proc_create_net_single EXPORT_SYMBOL_GPL vmlinux 0x20810ee5 get_slice_psize EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame EXPORT_SYMBOL_GPL vmlinux 0x209aa4d8 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x20a587cb ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x20a79c8c blk_trace_setup EXPORT_SYMBOL_GPL vmlinux 0x20c55ffc of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x20e5301a fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0x20e9cca0 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x20f3f3cb gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x20ea9c36 root_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x20f95ab8 cpuidle_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x20f9ba00 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x210db71e proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask +EXPORT_SYMBOL_GPL vmlinux 0x2135df5b perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x21385152 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x213b3ecb regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x2142baf6 __devm_regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0x21467ef3 usb_asmedia_modifyflowcontrol EXPORT_SYMBOL_GPL vmlinux 0x215192a6 nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2152dea5 set_thread_tidr EXPORT_SYMBOL_GPL vmlinux 0x21532c97 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x21564fae gpiod_to_irq EXPORT_SYMBOL_GPL vmlinux 0x215a57db nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x21612db8 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2175eba5 mnt_want_write_file EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x2188e3a3 __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0x2188e98f devm_clk_get_prepared EXPORT_SYMBOL_GPL vmlinux 0x219e97ea sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x21a107cd lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy EXPORT_SYMBOL_GPL vmlinux 0x21a5e639 phy_create EXPORT_SYMBOL_GPL vmlinux 0x21aa1c45 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x21ab8a70 alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21b5b6f2 sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0x21b88c5f pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x21b93a17 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x21bea218 cpufreq_cpu_get_raw EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats EXPORT_SYMBOL_GPL vmlinux 0x21d78b12 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x21e389b8 devlink_net EXPORT_SYMBOL_GPL vmlinux 0x21e4d3f2 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x21f0f825 thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x2207325e extcon_get_property EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x2218d881 mnt_want_write_file EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x22213cce eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x22217339 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x22258fb1 gpiod_set_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x22341fa8 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x223dc757 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x224002b9 ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x22618624 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x225e1634 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x226b9395 dequeue_signal EXPORT_SYMBOL_GPL vmlinux 0x2276ec2f fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x22888573 stmpe_block_read EXPORT_SYMBOL_GPL vmlinux 0x2296b16b anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x22a69050 vas_rx_win_open -EXPORT_SYMBOL_GPL vmlinux 0x22ad78f7 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x22bfb293 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x22c8ed9e rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x22a3ee76 of_i2c_setup_smbus_alert EXPORT_SYMBOL_GPL vmlinux 0x22ca510b __pm_runtime_use_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x22ce09e3 pm_genpd_remove EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends EXPORT_SYMBOL_GPL vmlinux 0x22db1a2f da9052_free_irq EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x22f6a559 dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x2301371e ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0x231083a7 elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x231b61cd gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x23254d24 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x232a251a __mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x233c5e06 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0x233c8a13 ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x234a242d metadata_dst_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x23547996 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x234f3ee5 bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0x2358af18 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0x235d4507 fwnode_get_next_parent EXPORT_SYMBOL_GPL vmlinux 0x236d46d8 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x23746f81 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x237d2425 acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x237e0f2b ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x237a3c2e sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238e2c7b spi_alloc_device EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent EXPORT_SYMBOL_GPL vmlinux 0x23984f3c __traceiter_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0x23a732a6 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x23b88d56 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x23afcce6 ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0x23b9b3b0 iomap_seek_hole EXPORT_SYMBOL_GPL vmlinux 0x23bc6e2c driver_deferred_probe_check_state EXPORT_SYMBOL_GPL vmlinux 0x23c57fac mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x23d32b2b regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0x23d3e8cf __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x23d40d13 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x23db074e stmpe_enable EXPORT_SYMBOL_GPL vmlinux 0x23e67a8a nvdimm_region_notify EXPORT_SYMBOL_GPL vmlinux 0x23ebf1ed devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x23f60f2d crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0x23fe2480 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x2411414f security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0x241a5cb4 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x242204a0 crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0x242a6c64 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x242c3949 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x2448f76f l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x24537ed8 sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0x24579eaa synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x245ba436 __mnt_is_readonly EXPORT_SYMBOL_GPL vmlinux 0x24638e92 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x24686193 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x246e00ef devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x2477b89a dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x2481eedc regmap_get_val_endian EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x24a2ec18 sdio_f0_writeb EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24b178a6 devlink_param_register EXPORT_SYMBOL_GPL vmlinux 0x24b9f356 mmu_partition_table_set_entry -EXPORT_SYMBOL_GPL vmlinux 0x24c0a578 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x24ca4b32 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x24d5f201 ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0x24d6246a __devm_reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended EXPORT_SYMBOL_GPL vmlinux 0x24dda0db vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL vmlinux 0x24e09aad phy_package_leave EXPORT_SYMBOL_GPL vmlinux 0x24e58b8c net_rwsem EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list EXPORT_SYMBOL_GPL vmlinux 0x24ecb936 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x24eee48b lwtunnel_output 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 0x2508b0d4 __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x25114bc8 devm_regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate EXPORT_SYMBOL_GPL vmlinux 0x253ca847 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x254b2e41 blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0x2559d24d kvmppc_h_set_dabr -EXPORT_SYMBOL_GPL vmlinux 0x255d37c9 iterate_mounts +EXPORT_SYMBOL_GPL vmlinux 0x255c563b ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x25766625 of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x257cc95a rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x2589005f ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk EXPORT_SYMBOL_GPL vmlinux 0x2595090c usb_get_status EXPORT_SYMBOL_GPL vmlinux 0x259564eb __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x25a0982b sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x25a606af dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0x25ade3e7 ata_sff_tf_read EXPORT_SYMBOL_GPL vmlinux 0x25b8a39a nd_blk_region_to_dimm EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data EXPORT_SYMBOL_GPL vmlinux 0x25c315cb ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x25e71e22 phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0x25e95cc7 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x25edd3a4 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x25f4825d bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0x2602379e of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x260297d1 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x26136cd0 fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0x261cc863 usb_control_msg_send EXPORT_SYMBOL_GPL vmlinux 0x262cfc41 usb_of_get_companion_dev -EXPORT_SYMBOL_GPL vmlinux 0x2650f229 sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock @@ -19320,102 +19339,90 @@ EXPORT_SYMBOL_GPL vmlinux 0x267040b8 phy_restore_page EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu EXPORT_SYMBOL_GPL vmlinux 0x2682eb1f devm_thermal_zone_of_sensor_unregister EXPORT_SYMBOL_GPL vmlinux 0x26918054 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x269e94e2 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x26a3b2ac sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26b0f52b put_pid EXPORT_SYMBOL_GPL vmlinux 0x26b4ed2d fuse_fill_super_common EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense EXPORT_SYMBOL_GPL vmlinux 0x26cf4a9b spi_mem_adjust_op_size EXPORT_SYMBOL_GPL vmlinux 0x26d2dd49 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x26dd38e7 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x26dddfaf sdio_readl EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier EXPORT_SYMBOL_GPL vmlinux 0x27006525 phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0x272721ee unregister_kretprobe EXPORT_SYMBOL_GPL vmlinux 0x2732dfbc tty_ldisc_deref EXPORT_SYMBOL_GPL vmlinux 0x2732ec0a list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x273393a3 i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x273c1c7f blkcg_activate_policy EXPORT_SYMBOL_GPL vmlinux 0x27404eae virtqueue_kick EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained EXPORT_SYMBOL_GPL vmlinux 0x275d20dd user_update -EXPORT_SYMBOL_GPL vmlinux 0x2770794b __traceiter_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x27795ca8 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x277a3f89 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x277d6959 mmc_crypto_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x2784def1 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x278d5437 thermal_zone_get_zone_by_name EXPORT_SYMBOL_GPL vmlinux 0x279104ce pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0x279bc71b pinctrl_add_gpio_ranges EXPORT_SYMBOL_GPL vmlinux 0x27a2b423 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x27a3f217 device_match_any EXPORT_SYMBOL_GPL vmlinux 0x27a79eab __wake_up_pollfree EXPORT_SYMBOL_GPL vmlinux 0x27c126b6 init_phb_dynamic EXPORT_SYMBOL_GPL vmlinux 0x27c1414f handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x27ca7687 crypto_rng_reset EXPORT_SYMBOL_GPL vmlinux 0x27ce3ec0 cpu_latency_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x27cf568c sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0x27d812f7 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x27d907e1 scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0x27d98872 wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x27df1c4f of_pci_get_max_link_speed EXPORT_SYMBOL_GPL vmlinux 0x27e191f5 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x27ecd174 blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x280087ef crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0x28032af2 of_genpd_parse_idle_states -EXPORT_SYMBOL_GPL vmlinux 0x280f96f7 __lock_page_killable EXPORT_SYMBOL_GPL vmlinux 0x281c6c16 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0x2829d5f7 rtnl_af_unregister EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity EXPORT_SYMBOL_GPL vmlinux 0x28326121 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x28326534 __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x283ad74a regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0x283b40ee ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x28422771 pci_epf_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x284410d6 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x284ee1e8 get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0x28505003 usb_hcd_end_port_resume EXPORT_SYMBOL_GPL vmlinux 0x2864078a __reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x28660d8a regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x286922f9 unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x287f4e5b raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister EXPORT_SYMBOL_GPL vmlinux 0x2882d8ae pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x28894322 file_ra_state_init EXPORT_SYMBOL_GPL vmlinux 0x288ad410 debugfs_create_size_t EXPORT_SYMBOL_GPL vmlinux 0x28927b2a uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0x289914c4 tcp_reno_cong_avoid EXPORT_SYMBOL_GPL vmlinux 0x28a8f935 usb_anchor_suspend_wakeups EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28bebbe6 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x28bf8289 crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0x28c32f99 uart_console_device EXPORT_SYMBOL_GPL vmlinux 0x28c8a3db mmu_psize_defs -EXPORT_SYMBOL_GPL vmlinux 0x28cf5236 ptp_parse_header EXPORT_SYMBOL_GPL vmlinux 0x28d1ece1 led_sysfs_enable EXPORT_SYMBOL_GPL vmlinux 0x28d651af of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x28f352e8 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x28dd3d35 devm_regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x28f8bf45 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x28fbbf15 yield_to EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x29197f7a platform_get_irq_byname_optional EXPORT_SYMBOL_GPL vmlinux 0x2927eee4 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x29301d2e ptp_parse_header EXPORT_SYMBOL_GPL vmlinux 0x29378491 mm_iommu_get EXPORT_SYMBOL_GPL vmlinux 0x2940032d pnv_pci_get_power_state -EXPORT_SYMBOL_GPL vmlinux 0x29511c34 tcp_sendpage_locked EXPORT_SYMBOL_GPL vmlinux 0x29572c58 bpfilter_umh_cleanup EXPORT_SYMBOL_GPL vmlinux 0x297aacd1 nd_region_dev EXPORT_SYMBOL_GPL vmlinux 0x2986e853 iommu_tce_kill EXPORT_SYMBOL_GPL vmlinux 0x299002e7 irq_chip_set_parent_state EXPORT_SYMBOL_GPL vmlinux 0x29a28342 thermal_zone_get_temp EXPORT_SYMBOL_GPL vmlinux 0x29aa48d0 radix__flush_tlb_lpid_page -EXPORT_SYMBOL_GPL vmlinux 0x29ac323f xfrm_output EXPORT_SYMBOL_GPL vmlinux 0x29c89977 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x29cca56d akcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x29cda0ca watchdog_init_timeout EXPORT_SYMBOL_GPL vmlinux 0x29d3de96 dev_pm_opp_get_max_transition_latency EXPORT_SYMBOL_GPL vmlinux 0x29d6bae3 screen_pos EXPORT_SYMBOL_GPL vmlinux 0x29ddaeb8 cpufreq_dbs_governor_stop EXPORT_SYMBOL_GPL vmlinux 0x29e82aa6 devres_remove_group EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29fad21b modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x2a04f545 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x2a17e192 regulator_suspend_enable EXPORT_SYMBOL_GPL vmlinux 0x2a18b17d pinctrl_utils_reserve_map EXPORT_SYMBOL_GPL vmlinux 0x2a30f46d tpm_default_chip EXPORT_SYMBOL_GPL vmlinux 0x2a336698 opal_rtc_write @@ -19425,108 +19432,130 @@ EXPORT_SYMBOL_GPL vmlinux 0x2a611c79 dev_pm_genpd_resume EXPORT_SYMBOL_GPL vmlinux 0x2a61a357 cleanup_srcu_struct EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a6e8301 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x2a7007ec __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x2a76652e pci_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0x2a8f2699 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x2a914a2d wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x2aa3bf78 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x2aa454dc sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x2aadc36f iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x2abb4013 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x2ab42e52 ata_sas_port_stop EXPORT_SYMBOL_GPL vmlinux 0x2abbbf63 regcache_mark_dirty EXPORT_SYMBOL_GPL vmlinux 0x2abbd23c of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x2ac979c4 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2ace1c41 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x2ae301d7 spi_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0x2ae95b30 iomap_releasepage +EXPORT_SYMBOL_GPL vmlinux 0x2aeb6bb3 regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0x2aee7fc5 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x2aeed195 regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0x2aef741c pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x2afa0e86 dax_layout_busy_page_range EXPORT_SYMBOL_GPL vmlinux 0x2afda686 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x2b01f9d3 __mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x2b080d64 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0x2b0bc997 vas_tx_win_open EXPORT_SYMBOL_GPL vmlinux 0x2b1bae0e cpu_to_core_id EXPORT_SYMBOL_GPL vmlinux 0x2b1fba0f xive_native_disable_queue -EXPORT_SYMBOL_GPL vmlinux 0x2b2a1bb6 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2b2e2aeb perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x2b373c75 acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0x2b4147ed kvmppc_hcall_impl_hv_realmode EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b692fff ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init EXPORT_SYMBOL_GPL vmlinux 0x2b74f89c fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x2b792be5 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2b83b9f5 devlink_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0x2b878ef2 vfio_assign_device_set +EXPORT_SYMBOL_GPL vmlinux 0x2b947e98 fwnode_get_next_available_child_node EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2bab0675 hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0x2bb2075c rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x2bb71071 device_set_node EXPORT_SYMBOL_GPL vmlinux 0x2bb9095f radix__flush_pwc_lpid -EXPORT_SYMBOL_GPL vmlinux 0x2bcd9682 nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x2bd072b9 kvmppc_set_msr_hv EXPORT_SYMBOL_GPL vmlinux 0x2bec8857 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x2bf2de79 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x2bf54c5f __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x2bfa0831 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x2bffcfd7 perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied EXPORT_SYMBOL_GPL vmlinux 0x2c28c9f0 dm_put EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x2c375e02 ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0x2c38fe20 usb_get_role_switch_default_mode EXPORT_SYMBOL_GPL vmlinux 0x2c3f9d07 of_dma_xlate_by_chan_id EXPORT_SYMBOL_GPL vmlinux 0x2c41ac99 of_property_read_u64_index EXPORT_SYMBOL_GPL vmlinux 0x2c55bc28 pnv_pci_set_tunnel_bar EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c718098 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x2c783220 find_get_pid EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c7a80f0 devlink_rate_nodes_destroy EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c861cce dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x2c85f720 ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x2cbbc929 usb_anchor_urb EXPORT_SYMBOL_GPL vmlinux 0x2cd5df3a opal_ipmi_send EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2ce93e01 unregister_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram EXPORT_SYMBOL_GPL vmlinux 0x2cef6c11 usb_get_dev EXPORT_SYMBOL_GPL vmlinux 0x2cf1cba5 thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x2cf61b14 int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x2cf9ddce device_add +EXPORT_SYMBOL_GPL vmlinux 0x2d099183 tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait EXPORT_SYMBOL_GPL vmlinux 0x2d1d0587 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2d1dcaed devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x2d248bbb fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d312f57 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x2d35d339 task_user_regset_view EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d438130 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x2d4c5fcd rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2d554146 scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0x2d5d2da1 nd_blk_region_provider_data EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict EXPORT_SYMBOL_GPL vmlinux 0x2d60a14e subsys_virtual_register EXPORT_SYMBOL_GPL vmlinux 0x2d6b6e30 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x2d727978 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x2d7bdc62 sock_prot_inuse_add EXPORT_SYMBOL_GPL vmlinux 0x2d7c0189 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x2d9e2ebe cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0x2db988d6 thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0x2dbd52b5 i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0x2dd8cb36 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x2ddb634d dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x2dde84ab __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x2ddcce32 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x2df46758 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x2df96395 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x2dfb31b4 path_noexec EXPORT_SYMBOL_GPL vmlinux 0x2e0160a2 usb_of_has_combined_node EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e0578ac pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x2e073a8a icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x2e07a5ec sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0x2e0d654a devm_namespace_enable EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace EXPORT_SYMBOL_GPL vmlinux 0x2e36b363 vfio_init_group_dev EXPORT_SYMBOL_GPL vmlinux 0x2e59822f irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x2e5e9ef2 mmc_switch EXPORT_SYMBOL_GPL vmlinux 0x2e5ef9f3 devm_pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e6e879e ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0x2e8afb4f vfio_spapr_pci_eeh_open EXPORT_SYMBOL_GPL vmlinux 0x2e933e8b debugfs_create_atomic_t EXPORT_SYMBOL_GPL vmlinux 0x2e9c01e9 of_led_get EXPORT_SYMBOL_GPL vmlinux 0x2ea0eb00 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2ea299fb ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0x2ea798f2 pci_platform_power_transition EXPORT_SYMBOL_GPL vmlinux 0x2eace6e6 pci_msi_mask_irq EXPORT_SYMBOL_GPL vmlinux 0x2ead0b67 make_device_exclusive_range EXPORT_SYMBOL_GPL vmlinux 0x2eb56669 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x2eb59865 console_drivers EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable EXPORT_SYMBOL_GPL vmlinux 0x2ec4595d vp_modern_get_status EXPORT_SYMBOL_GPL vmlinux 0x2ee30672 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x2ee44b3d synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0x2ee615e0 pci_dev_lock EXPORT_SYMBOL_GPL vmlinux 0x2eedaa8c tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x2ef02b20 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x2ef43f92 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x2efee649 ata_scsi_queuecmd EXPORT_SYMBOL_GPL vmlinux 0x2f0070d0 blkcg_root_css EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string EXPORT_SYMBOL_GPL vmlinux 0x2f0ed1b8 ehci_setup @@ -19535,118 +19564,117 @@ EXPORT_SYMBOL_GPL vmlinux 0x2f267ac0 devm_pm_opp_set_clkname EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec EXPORT_SYMBOL_GPL vmlinux 0x2f49c46f sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0x2f89541d icc_disable -EXPORT_SYMBOL_GPL vmlinux 0x2f8aa83e of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x2f5a5fb5 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x2f649560 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x2f8c33c8 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x2f9242ae devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x2faedeef scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0x2fb1a1de gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj EXPORT_SYMBOL_GPL vmlinux 0x2fcaa211 dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x2fe56aa3 dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0x2fe5f4e0 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x2ff2045a ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x2ff31641 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x2ff5d164 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ffa185e sdio_readw EXPORT_SYMBOL_GPL vmlinux 0x2ffbd18c opal_message_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3005cdf3 nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x30091821 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x30117dfe devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3011b5e8 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x300e6fdd platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x30123eeb virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x3015db2f crypto_stats_init EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x3019a6bd vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0x3045578a usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x30457fbd devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x304d63a0 dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0x30589f0c ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x306175ad __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu EXPORT_SYMBOL_GPL vmlinux 0x3064d59e devm_led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x306684a7 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x308ad9bf gpiochip_unlock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x309a044c usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x30acce7a aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x30a789ef inet_hash EXPORT_SYMBOL_GPL vmlinux 0x30b0e245 ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x30b92254 tpm_get_timeouts EXPORT_SYMBOL_GPL vmlinux 0x30daa59a tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x30e6f8d5 spi_bus_unlock EXPORT_SYMBOL_GPL vmlinux 0x30e880fc __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x30f37fc4 dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3120637c tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x3123c3d4 crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave EXPORT_SYMBOL_GPL vmlinux 0x31269173 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x3126feba switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x312da858 clk_hw_set_rate_range EXPORT_SYMBOL_GPL vmlinux 0x31633b73 get_dev_pagemap EXPORT_SYMBOL_GPL vmlinux 0x3163583b __blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0x316b90ad regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x316c1d90 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x31708acc icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x316bd96a wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0x317aea3d virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x317b499a device_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x317cdcf4 dev_pm_domain_attach 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 0x31931c61 devm_phy_get EXPORT_SYMBOL_GPL vmlinux 0x319dddec is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x31a4487c crypto_stats_rng_seed EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu EXPORT_SYMBOL_GPL vmlinux 0x31acb59e scsi_register_device_handler EXPORT_SYMBOL_GPL vmlinux 0x31af8e8f dev_pm_opp_put_prop_name EXPORT_SYMBOL_GPL vmlinux 0x31b30ee4 iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0x31b580b3 regmap_field_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x31b64f69 mm_iommu_newdev +EXPORT_SYMBOL_GPL vmlinux 0x31b8daa1 scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0x31c58830 fsnotify_put_mark EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports EXPORT_SYMBOL_GPL vmlinux 0x31d320a6 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x31d38a78 clk_hw_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x31e3059f kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x31e37214 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x31e9a058 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x31ead1f1 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x31f634b2 ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x3226c23b clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x32318577 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x322ea7a6 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x322fa48d ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x323ebe07 dev_pm_qos_hide_flags EXPORT_SYMBOL_GPL vmlinux 0x3242cb1c of_property_read_u32_index EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x325c5a02 usb_control_msg_recv EXPORT_SYMBOL_GPL vmlinux 0x325c9448 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x325d9236 __raw_v4_lookup EXPORT_SYMBOL_GPL vmlinux 0x3262df7a edac_pci_handle_npe EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x327982af __page_file_mapping EXPORT_SYMBOL_GPL vmlinux 0x32804d31 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x3288bb90 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x32a11d55 wakeup_source_create EXPORT_SYMBOL_GPL vmlinux 0x32a1a805 remove_phb_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x32aad10d __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x32aecbb2 i2c_dw_prepare_clk EXPORT_SYMBOL_GPL vmlinux 0x32b395e5 serial8250_tx_chars EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32bddb01 device_change_owner EXPORT_SYMBOL_GPL vmlinux 0x32bf91bd dev_pm_opp_attach_genpd EXPORT_SYMBOL_GPL vmlinux 0x32c31790 hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register EXPORT_SYMBOL_GPL vmlinux 0x32c49f23 isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0x32c6616d raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0x32da9fe9 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x32dcc14e apply_to_existing_page_range EXPORT_SYMBOL_GPL vmlinux 0x32dd5458 fat_scan EXPORT_SYMBOL_GPL vmlinux 0x32e61558 blkg_rwstat_recursive_sum EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x330011df init_dummy_netdev EXPORT_SYMBOL_GPL vmlinux 0x3302b751 regmap_mmio_detach_clk EXPORT_SYMBOL_GPL vmlinux 0x33088858 md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0x3314e1db rio_request_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0x332ff6b3 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x3330a6ca cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x333f19f8 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x33491f9b fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x33518a24 __irq_resolve_mapping EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x3365235d regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x337af7d8 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x3361b45f devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0x33871734 dev_pm_opp_find_level_ceil EXPORT_SYMBOL_GPL vmlinux 0x3397e11c dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x33b5f8fc of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x33c85b9c gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x33a16e7a crypto_register_algs EXPORT_SYMBOL_GPL vmlinux 0x33cd9e97 of_pm_clk_add_clks EXPORT_SYMBOL_GPL vmlinux 0x33ce56e8 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x33d64545 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x33d79a88 __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x33dc80b1 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x33ebf18d device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local EXPORT_SYMBOL_GPL vmlinux 0x34089f13 iommu_map_atomic EXPORT_SYMBOL_GPL vmlinux 0x3412dda6 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x34132e8c modify_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x34180f84 dma_buf_dynamic_attach EXPORT_SYMBOL_GPL vmlinux 0x341b345d vfio_pci_core_match +EXPORT_SYMBOL_GPL vmlinux 0x341b4ccf regmap_multi_reg_write_bypassed EXPORT_SYMBOL_GPL vmlinux 0x34244500 mpc8xxx_spi_tx_buf_u32 EXPORT_SYMBOL_GPL vmlinux 0x342486fc virtqueue_is_broken EXPORT_SYMBOL_GPL vmlinux 0x34292819 kvmppc_add_revmap_chain @@ -19657,79 +19685,71 @@ EXPORT_SYMBOL_GPL vmlinux 0x3438547d invalidate_inode_pages2 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 0x344a472b do_xdp_generic EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x34515b46 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x345d4b66 skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0x3464eff4 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x346db54d devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x347f3636 devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0x348576ec udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x349c3dae add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x346f87fe receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x34a1e7fa switchdev_handle_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34c09401 sdio_retune_release EXPORT_SYMBOL_GPL vmlinux 0x34c0b6d4 clk_register_gate EXPORT_SYMBOL_GPL vmlinux 0x34ccd787 rio_get_comptag EXPORT_SYMBOL_GPL vmlinux 0x34d1cf20 tpm_tis_resume EXPORT_SYMBOL_GPL vmlinux 0x34d88e92 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x34d98c6b unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x34e6d08a crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0x34efb518 pci_cfg_access_lock EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split EXPORT_SYMBOL_GPL vmlinux 0x35028200 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x3502bf81 free_fib_info EXPORT_SYMBOL_GPL vmlinux 0x35083163 eeh_pe_mark_isolated EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352d19b9 crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x354ed1a6 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x35514762 scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0x35533d1f sdio_release_host EXPORT_SYMBOL_GPL vmlinux 0x355939ea usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x3560f41f fwnode_graph_get_next_endpoint EXPORT_SYMBOL_GPL vmlinux 0x35662c48 transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id EXPORT_SYMBOL_GPL vmlinux 0x356861b9 phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0x35743a50 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x3589e3d8 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x35876946 ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0x358ec49b dev_coredumpsg EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate EXPORT_SYMBOL_GPL vmlinux 0x35908885 pinctrl_count_index_with_args EXPORT_SYMBOL_GPL vmlinux 0x35abfd45 of_get_regulator_init_data EXPORT_SYMBOL_GPL vmlinux 0x35d75fd8 __clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x35dc85ac clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x35deff5e __mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x35f460dc kvm_free_hpt_cma EXPORT_SYMBOL_GPL vmlinux 0x35fb603c dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x36057e79 devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x36121514 __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x361ae40e devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0x361bc6fa mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x3622210b transport_setup_device EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x36419364 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x363098c6 regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0x36449940 device_add_software_node EXPORT_SYMBOL_GPL vmlinux 0x3650c66e fsverity_verify_bio EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x365f1ef0 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x365f5e38 mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0x3687041b nvmem_device_find EXPORT_SYMBOL_GPL vmlinux 0x368c2dbd irq_domain_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a5a020 tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0x36abfbbf fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x36b061e1 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0x36b1b84e ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x36b371fc tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0x36baa139 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x36c0c362 __traceiter_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x36c619d4 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x36cce1f9 devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x36dc3cdb __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x36fb98b9 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x36d83ede pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x36e8c6f3 bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0x3706b229 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x372ad326 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x373308a1 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x37262964 scsi_build_sense EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0x37536ee7 device_destroy EXPORT_SYMBOL_GPL vmlinux 0x375d047d of_get_fb_videomode EXPORT_SYMBOL_GPL vmlinux 0x3761dacf pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x37668b01 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x376ba83a set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x376d5300 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x37707bb4 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x3773f65f devm_mipi_dsi_attach EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x377caf97 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x378a617b strp_init EXPORT_SYMBOL_GPL vmlinux 0x379032bf devm_extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0x3797ea19 clk_hw_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0x37aa6831 dev_pm_opp_get_required_pstate @@ -19737,75 +19757,80 @@ EXPORT_SYMBOL_GPL vmlinux 0x37b7b408 regulator_map_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x37bba23a pin_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit EXPORT_SYMBOL_GPL vmlinux 0x37c08f9b pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x37e2fe08 stmpe_reg_read EXPORT_SYMBOL_GPL vmlinux 0x37e5458e fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x37e947c3 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x37e955ed skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0x37f09929 __pm_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy EXPORT_SYMBOL_GPL vmlinux 0x380793c5 pci_epc_put EXPORT_SYMBOL_GPL vmlinux 0x381ea60c clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x3823099e event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x3826dac7 nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x383e22d5 add_page_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x383fbffe blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x38432d1d l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3843eb0b gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x38445be4 devm_phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x38466ca1 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x385d4798 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x385a122a inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write EXPORT_SYMBOL_GPL vmlinux 0x386d6e41 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x386ed88d bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x3875f197 umd_unload_blob EXPORT_SYMBOL_GPL vmlinux 0x3877de16 dm_internal_suspend_noflush EXPORT_SYMBOL_GPL vmlinux 0x387b39e8 pci_find_next_capability EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x389fc589 mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38ab9c1c devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0x38ad0697 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x38b44ba9 dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x38b8361a pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x38bba588 page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0x38ced1eb iomap_readpage EXPORT_SYMBOL_GPL vmlinux 0x38d23562 badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x38d70d7a regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0x38d925f2 to_nd_blk_region EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38f9fead pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x390e58f6 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x3944ad1f cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x38eb4c8f perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x38fd1573 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0x391b0ab6 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x39296b9e mmc_send_tuning EXPORT_SYMBOL_GPL vmlinux 0x394c8dcd extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x395d5ccf platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x396efdd9 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x396ae90d __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x397ff843 kthread_cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x3995b83a blk_mark_disk_dead -EXPORT_SYMBOL_GPL vmlinux 0x3999cbfc kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x399d51d9 gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39bce17b rtc_class_open EXPORT_SYMBOL_GPL vmlinux 0x39bf242b dm_copy_name_and_uuid EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39c3d8e1 crypto_get_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0x39cc9ae8 component_del -EXPORT_SYMBOL_GPL vmlinux 0x39d70466 sdio_retune_crc_disable EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39ed718d xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0x39edbbfb __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x3a0b5390 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x3a095499 device_create EXPORT_SYMBOL_GPL vmlinux 0x3a0e43cb devm_release_action EXPORT_SYMBOL_GPL vmlinux 0x3a0ea7d4 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x3a1985c2 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x3a24027d scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a337bb1 crypto_unregister_kpp EXPORT_SYMBOL_GPL vmlinux 0x3a3fb1b3 query_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x3a413ff9 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x3a41d66a ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0x3a474ef1 led_update_brightness 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 0x3a56e812 trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0x3a62da66 nvdimm_cmd_mask EXPORT_SYMBOL_GPL vmlinux 0x3a64dedc kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x3a6963f0 crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0x3a6ad77c devm_power_supply_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a7cdd7c tcp_abort EXPORT_SYMBOL_GPL vmlinux 0x3a80f230 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3a8cb8aa sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x3a9b72b5 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x3a8b65e4 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x3a94e308 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial EXPORT_SYMBOL_GPL vmlinux 0x3ab87392 serial8250_read_char EXPORT_SYMBOL_GPL vmlinux 0x3abc486a split_page @@ -19814,38 +19839,36 @@ EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource EXPORT_SYMBOL_GPL vmlinux 0x3ad41689 usb_add_phy EXPORT_SYMBOL_GPL vmlinux 0x3adf3819 fuse_dev_fiq_ops EXPORT_SYMBOL_GPL vmlinux 0x3af333cd regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x3af5f43e __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x3b0a7159 pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0x3b10d735 icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0x3b14dbf1 virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0x3b162f90 devm_clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x3b1bb13e phy_pm_runtime_put EXPORT_SYMBOL_GPL vmlinux 0x3b1d9ae4 __srcu_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x3b2added led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0x3b2e3fb3 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x3b34d9dc devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3b320fe8 __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0x3b46ed05 tty_perform_flush EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b4c7da2 of_clk_add_provider EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x3b757ff3 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x3b7e8203 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x3b899a9a crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x3b8dd25f devm_i2c_add_adapter EXPORT_SYMBOL_GPL vmlinux 0x3b8f4788 rhashtable_walk_peek EXPORT_SYMBOL_GPL vmlinux 0x3b936ba8 i2c_dw_adjust_bus_speed EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset EXPORT_SYMBOL_GPL vmlinux 0x3ba2c049 __pci_epf_register_driver EXPORT_SYMBOL_GPL vmlinux 0x3ba47737 edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x3bbdec45 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x3bd5f95d __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x3bc5ed97 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x3bcbea11 inode_congested EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x3bdcd812 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x3beabb41 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x3beb75eb ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer EXPORT_SYMBOL_GPL vmlinux 0x3bfebc3d devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x3c0806de task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x3c13cfd0 genphy_c45_read_pma EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c29942b spi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply EXPORT_SYMBOL_GPL vmlinux 0x3c2ef33e usb_block_urb EXPORT_SYMBOL_GPL vmlinux 0x3c31e590 generic_fsdax_supported @@ -19854,187 +19877,187 @@ EXPORT_SYMBOL_GPL vmlinux 0x3c37cbf8 machine_check_print_event_info EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x3c46ce14 reset_controller_register EXPORT_SYMBOL_GPL vmlinux 0x3c472315 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x3c4b2d69 regmap_raw_write_async EXPORT_SYMBOL_GPL vmlinux 0x3c5efe55 extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0x3c611f06 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x3c66a556 regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable EXPORT_SYMBOL_GPL vmlinux 0x3c6dedda kernfs_find_and_get_ns EXPORT_SYMBOL_GPL vmlinux 0x3c75e9ca phy_pm_runtime_put_sync EXPORT_SYMBOL_GPL vmlinux 0x3c7b24df ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x3c7e7160 platform_get_irq EXPORT_SYMBOL_GPL vmlinux 0x3cb6a2fe eeh_pe_configure EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk EXPORT_SYMBOL_GPL vmlinux 0x3cd7a1bb debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x3cd7de54 phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0x3cdc70fe usb_clear_halt EXPORT_SYMBOL_GPL vmlinux 0x3cde3723 vfio_pci_core_sriov_configure EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0x3cfb796d kvmppc_save_tm_hv -EXPORT_SYMBOL_GPL vmlinux 0x3d128972 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x3d1690d2 cpufreq_unregister_governor EXPORT_SYMBOL_GPL vmlinux 0x3d26fbbd mm_iommu_preregistered EXPORT_SYMBOL_GPL vmlinux 0x3d293a36 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x3d31132a eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0x3d3351a5 mpc8xxx_spi_rx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d41b0ef strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x3d47e729 udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check EXPORT_SYMBOL_GPL vmlinux 0x3d59c076 blk_mq_virtio_map_queues EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm -EXPORT_SYMBOL_GPL vmlinux 0x3d615303 platform_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x3d6666d7 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x3d7feb00 icc_get_name EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x3d867dd0 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x3d8966b6 __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon EXPORT_SYMBOL_GPL vmlinux 0x3da26bb7 __devm_of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0x3da30714 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3da9dd6e __root_device_register EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3dac9e2f tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0x3daf8935 skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x3db31b1d inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x3db8fd17 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x3db601b6 i2c_adapter_depth EXPORT_SYMBOL_GPL vmlinux 0x3dc29b7f regulator_get_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df18fee call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x3df19035 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3df3c6c3 sdio_readb EXPORT_SYMBOL_GPL vmlinux 0x3df6efe6 pnv_ocxl_unmap_lpar +EXPORT_SYMBOL_GPL vmlinux 0x3e2135b0 akcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x3e35d0ac acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0x3e36077d inet_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x3e4c764f serial8250_do_get_mctrl EXPORT_SYMBOL_GPL vmlinux 0x3e6ed41e param_ops_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e7cc6fd sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0x3e7d62ca d_exchange -EXPORT_SYMBOL_GPL vmlinux 0x3e83f2aa __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x3e9b411c regulator_set_current_limit EXPORT_SYMBOL_GPL vmlinux 0x3ea09902 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x3eab65d9 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x3ebfd73d sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x3ea773d0 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x3eb4d11e inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x3eb70379 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x3eb72180 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x3ec86a34 bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0x3ecdaa2b __find_linux_pte +EXPORT_SYMBOL_GPL vmlinux 0x3ed143a0 tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0x3ee2a373 balloon_page_enqueue EXPORT_SYMBOL_GPL vmlinux 0x3ee8734e usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x3eec80ad crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3efef2b4 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x3f0b9ce7 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x3f0bef50 dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x3f2b98de percpu_up_write EXPORT_SYMBOL_GPL vmlinux 0x3f2fca68 list_lru_add EXPORT_SYMBOL_GPL vmlinux 0x3f43ae8c em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0x3f44ca28 device_remove_file EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f534e58 __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0x3f660011 iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x3f75959b ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x3f7697c4 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x3f7ed65e spi_res_add +EXPORT_SYMBOL_GPL vmlinux 0x3f6e9fcb regulator_force_disable EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put EXPORT_SYMBOL_GPL vmlinux 0x3fa40f08 i2c_dw_validate_speed EXPORT_SYMBOL_GPL vmlinux 0x3fb8e081 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x3fbcfdb2 pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x3fcd13c9 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x3fd4738a gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x3fdd5409 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x3fe141b1 xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL vmlinux 0x3fe49c6d devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3ff21f26 sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0x3ff4ef82 fscrypt_get_symlink EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free EXPORT_SYMBOL_GPL vmlinux 0x3ffd6879 vp_modern_map_vq_notify EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x4006c479 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x40021ef2 ata_cable_sata EXPORT_SYMBOL_GPL vmlinux 0x4036f99e synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x403b6d0c cpufreq_freq_transition_begin EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x403fa73d inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x404167d9 ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x404d309f crypto_register_skciphers 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 0x407df6e4 crypto_ahash_setkey EXPORT_SYMBOL_GPL vmlinux 0x4082bd17 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x4092b396 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x40946922 gpiochip_line_is_persistent EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free EXPORT_SYMBOL_GPL vmlinux 0x409df5cf bpfilter_ops EXPORT_SYMBOL_GPL vmlinux 0x40a21efe serdev_device_set_tiocm EXPORT_SYMBOL_GPL vmlinux 0x40b5be99 xive_native_populate_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x40cac087 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x40c941f3 xfrm_audit_state_replay_overflow EXPORT_SYMBOL_GPL vmlinux 0x40d22c09 genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0x40d410bd ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x40dac679 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x40db55f8 tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x40e466e6 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x40e7227d set_primary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x40f041ec param_set_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put EXPORT_SYMBOL_GPL vmlinux 0x40f48f16 pkcs7_validate_trust EXPORT_SYMBOL_GPL vmlinux 0x40f8a0e8 vfio_pci_core_ioctl EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x40fde8a3 nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle EXPORT_SYMBOL_GPL vmlinux 0x410f4957 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x4119687f gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x412f43ae devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x413ae5ca tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0x413cda4e sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x413e3407 cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x414617d9 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x414669bc put_device EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings EXPORT_SYMBOL_GPL vmlinux 0x414d7aae xive_native_get_queue_state EXPORT_SYMBOL_GPL vmlinux 0x4158d0f5 pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x415a9bb2 mptcp_get_reset_option EXPORT_SYMBOL_GPL vmlinux 0x416fdc08 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x41703d1c devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x4170f056 unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer EXPORT_SYMBOL_GPL vmlinux 0x4196a018 of_address_to_resource EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop EXPORT_SYMBOL_GPL vmlinux 0x41a29e5c devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x41b6922f perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x41a7e501 fib6_new_table EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41cbc76b fwnode_create_software_node EXPORT_SYMBOL_GPL vmlinux 0x41cd6846 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x41d0a21c skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x41db97c8 sched_trace_rq_nr_running EXPORT_SYMBOL_GPL vmlinux 0x41eb340c pinmux_generic_remove_function EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41ee3727 add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0x41f3e4d2 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x41fef287 skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420ba967 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x421496cc fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x422f0f85 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x42333e65 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x42345162 iterate_mounts EXPORT_SYMBOL_GPL vmlinux 0x42378add ftrace_set_filter_ip EXPORT_SYMBOL_GPL vmlinux 0x423c26f7 serdev_device_write_wakeup EXPORT_SYMBOL_GPL vmlinux 0x424b6fbe pm_clk_destroy EXPORT_SYMBOL_GPL vmlinux 0x425412da wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x425d2bd5 skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426d9fb3 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x42779b13 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x427a1c90 mptcp_get_reset_option EXPORT_SYMBOL_GPL vmlinux 0x427a1cc1 thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x427d701e security_file_permission EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active EXPORT_SYMBOL_GPL vmlinux 0x42876d14 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x42889062 devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4298ca7f gpiochip_free_own_desc EXPORT_SYMBOL_GPL vmlinux 0x429d1817 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x42a566a6 devm_platform_get_irqs_affinity EXPORT_SYMBOL_GPL vmlinux 0x42e80bca of_add_property EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit EXPORT_SYMBOL_GPL vmlinux 0x42ea12aa rio_map_inb_region EXPORT_SYMBOL_GPL vmlinux 0x42ef0bc4 stop_machine EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs EXPORT_SYMBOL_GPL vmlinux 0x42f782ff fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0x42ffbabb handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event EXPORT_SYMBOL_GPL vmlinux 0x430fdf91 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x431d2723 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x4326f70a tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x43226943 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x43234fb4 fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc +EXPORT_SYMBOL_GPL vmlinux 0x432cfc97 ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0x433332c8 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x4342b348 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x4366958b vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit EXPORT_SYMBOL_GPL vmlinux 0x43784175 devm_create_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4391f659 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x43923c91 wwan_register_ops EXPORT_SYMBOL_GPL vmlinux 0x43947791 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x43a43413 regulator_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43b0dab3 pcibios_claim_one_bus EXPORT_SYMBOL_GPL vmlinux 0x43b15e20 nvmem_cell_read_variable_le_u64 EXPORT_SYMBOL_GPL vmlinux 0x43e6b79b badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0x43effb63 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x43f1f660 do_truncate EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs @@ -20044,129 +20067,127 @@ EXPORT_SYMBOL_GPL vmlinux 0x440916eb dev_pm_opp_get_opp_table EXPORT_SYMBOL_GPL vmlinux 0x4424b1f8 __fat_fs_error EXPORT_SYMBOL_GPL vmlinux 0x442dd1a8 devm_fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x44303b77 tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0x4431faaf rdev_clear_badblocks EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x445742db tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write EXPORT_SYMBOL_GPL vmlinux 0x44622745 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x446b6a0c crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0x446cc2ee virtio_break_device EXPORT_SYMBOL_GPL vmlinux 0x446f0232 dm_hold EXPORT_SYMBOL_GPL vmlinux 0x446f1538 irq_of_parse_and_map EXPORT_SYMBOL_GPL vmlinux 0x446f3a49 fsnotify_get_group +EXPORT_SYMBOL_GPL vmlinux 0x4477e8b4 __ata_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x447f237f pnv_ocxl_unmap_xsl_regs EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe EXPORT_SYMBOL_GPL vmlinux 0x44898619 irq_domain_xlate_twocell EXPORT_SYMBOL_GPL vmlinux 0x449fa45d btree_remove EXPORT_SYMBOL_GPL vmlinux 0x44b09de0 iommu_tce_check_ioba -EXPORT_SYMBOL_GPL vmlinux 0x44b3bcb8 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x44b6b4c6 crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c5d913 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x44c9de52 __udp_gso_segment EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44e34dcc regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x44f44bdf device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x44ee4a63 devlink_param_unregister EXPORT_SYMBOL_GPL vmlinux 0x44ff3187 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0x450095b4 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x45005c60 of_clk_hw_simple_get EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen EXPORT_SYMBOL_GPL vmlinux 0x4511f171 mpc8xxx_spi_probe EXPORT_SYMBOL_GPL vmlinux 0x45171083 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x451a1772 platform_get_irq EXPORT_SYMBOL_GPL vmlinux 0x451b6fa6 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4523d0cc crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x452c3260 gpiod_set_transitory 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 0x45496b1d clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x454cb814 wwan_register_ops EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x45597170 inet_peer_base_init EXPORT_SYMBOL_GPL vmlinux 0x456b8770 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x456b9875 crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0x457105dd fs_dax_get_by_bdev EXPORT_SYMBOL_GPL vmlinux 0x457160ec irq_chip_eoi_parent EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x457a2a0c regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x457597a0 msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x457f0e2c pci_ecam_create EXPORT_SYMBOL_GPL vmlinux 0x458f7b59 dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0x45a00994 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x45a91e11 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x45ad6736 fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x45bc9e6f ohci_resume EXPORT_SYMBOL_GPL vmlinux 0x45e36b6b devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x45f541eb filemap_read -EXPORT_SYMBOL_GPL vmlinux 0x45f8a956 fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x460e4f75 ping_bind EXPORT_SYMBOL_GPL vmlinux 0x460f49d1 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x46122802 msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0x4618a6e0 screen_glyph_unicode EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x465db6dc dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x463c9fab sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x466254d8 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x467573f7 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x467a00cd page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0x467eb7de vas_unregister_api_pseries EXPORT_SYMBOL_GPL vmlinux 0x4681749a pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x4682098b fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46891c20 fib6_check_nexthop EXPORT_SYMBOL_GPL vmlinux 0x468d797a pinconf_generic_dt_free_map EXPORT_SYMBOL_GPL vmlinux 0x4690224b serdev_controller_alloc EXPORT_SYMBOL_GPL vmlinux 0x4692f673 copy_mc_generic EXPORT_SYMBOL_GPL vmlinux 0x469e2b5a rio_release_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0x46a229d0 devm_clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x46b29976 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x46c64e50 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x46bf7218 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x46c4d230 devlink_port_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0x46dcbd00 inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0x46e465de klist_init EXPORT_SYMBOL_GPL vmlinux 0x46eebfc7 exportfs_decode_fh_raw EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put EXPORT_SYMBOL_GPL vmlinux 0x4705c76c trace_seq_to_user EXPORT_SYMBOL_GPL vmlinux 0x470b591d power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x471e31c2 regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x471ebddf devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x471f92ab platform_device_register EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x473fe522 inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x47403805 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x474567fd ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x47464c5a device_initialize EXPORT_SYMBOL_GPL vmlinux 0x47496ce2 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x4749a880 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4750c290 __vfs_setxattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x4756e59d usb_autopm_put_interface_async EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier EXPORT_SYMBOL_GPL vmlinux 0x476425fe extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x4767c0b8 ehci_adjust_port_wakeup_flags EXPORT_SYMBOL_GPL vmlinux 0x476e65d4 __usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0x4786df3d tty_kopen_exclusive EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47898f1f rdev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x4789fe7b dev_pm_domain_detach EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count EXPORT_SYMBOL_GPL vmlinux 0x479a59a8 iommu_unregister_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a29494 vas_paste_crb EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy EXPORT_SYMBOL_GPL vmlinux 0x47b5bfa6 devm_phy_create EXPORT_SYMBOL_GPL vmlinux 0x47b7a692 cpu_feature_keys -EXPORT_SYMBOL_GPL vmlinux 0x47c77b35 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x47d451ae ata_pci_device_suspend EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux EXPORT_SYMBOL_GPL vmlinux 0x47e8d105 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x47f7abe0 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x47eefe85 srp_attach_transport +EXPORT_SYMBOL_GPL vmlinux 0x4800395f security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x4824bdd0 synth_event_trace EXPORT_SYMBOL_GPL vmlinux 0x4825ffc0 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x482a53a9 gpiochip_irq_unmap EXPORT_SYMBOL_GPL vmlinux 0x482c30de sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0x48461d40 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x484f39b2 devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0x4851d09d kvmppc_do_h_enter -EXPORT_SYMBOL_GPL vmlinux 0x48555f7b sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0x486dd20f regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0x487ac245 usb_poison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x48863d29 edac_pci_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x4887531b mbox_client_peek_data EXPORT_SYMBOL_GPL vmlinux 0x488f21f4 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x48907678 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x4898b58b ata_cable_80wire EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get EXPORT_SYMBOL_GPL vmlinux 0x48a9fc80 dev_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0x48bef036 devm_mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48c39551 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x48cbd5b0 clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x48d0a0cf crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0x48e2878c pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x4913affb vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x48e6615a regmap_get_raw_read_max EXPORT_SYMBOL_GPL vmlinux 0x49188d11 tps6586x_writes EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4934ade7 pinctrl_enable @@ -20177,176 +20198,185 @@ EXPORT_SYMBOL_GPL vmlinux 0x4954cbc7 iomap_writepages EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable EXPORT_SYMBOL_GPL vmlinux 0x496a6f35 simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0x4979d719 devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x4979ec5a ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x49803a03 vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue EXPORT_SYMBOL_GPL vmlinux 0x499a537d cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x49a042e5 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49cc0ce1 srp_release_transport +EXPORT_SYMBOL_GPL vmlinux 0x49b2249c skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49d9c83d regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x49cfce47 sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f36b37 icc_link_destroy EXPORT_SYMBOL_GPL vmlinux 0x49f3b073 irq_get_percpu_devid_partition EXPORT_SYMBOL_GPL vmlinux 0x49fac0d3 vring_transport_features EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec +EXPORT_SYMBOL_GPL vmlinux 0x4a097647 bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0x4a123bc1 irq_set_default_host EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a247739 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x4a1c091f tcp_twsk_unique EXPORT_SYMBOL_GPL vmlinux 0x4a2cb583 iommu_add_device EXPORT_SYMBOL_GPL vmlinux 0x4a3002f7 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x4a356309 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x4a358248 platform_irqchip_probe EXPORT_SYMBOL_GPL vmlinux 0x4a387a06 fsnotify_alloc_group EXPORT_SYMBOL_GPL vmlinux 0x4a39c6f5 pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0x4a3b06be regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x4a4d7533 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x4a4bfcb7 wm8350_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x4a52017e regulator_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0x4a58bef3 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x4a5e8f62 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x4a677a78 xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0x4a6dcfe6 pci_sriov_configure_simple EXPORT_SYMBOL_GPL vmlinux 0x4a78c3a1 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x4a78da87 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x4a896562 __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x4a9f047a tm_enable -EXPORT_SYMBOL_GPL vmlinux 0x4aa06c21 devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0x4aa71d51 xfrm_audit_state_replay_overflow EXPORT_SYMBOL_GPL vmlinux 0x4aaa6cb7 __xas_prev EXPORT_SYMBOL_GPL vmlinux 0x4aad3005 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x4ac5d052 __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x4ad993f6 pci_epf_remove_vepf EXPORT_SYMBOL_GPL vmlinux 0x4ae3dcd7 tps6586x_write EXPORT_SYMBOL_GPL vmlinux 0x4af40e79 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x4afb8e52 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x4afa4b70 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0x4afdd5e1 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x4aff4e34 tcp_get_info EXPORT_SYMBOL_GPL vmlinux 0x4afffe32 dm_start_time_ns_from_clone EXPORT_SYMBOL_GPL vmlinux 0x4b05feee __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x4b1165c6 crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0x4b180573 tty_port_default_client_ops EXPORT_SYMBOL_GPL vmlinux 0x4b254456 cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x4b340a2b __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x4b26ba69 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4b4449f3 shash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x4b449f3f usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x4b470def device_match_name EXPORT_SYMBOL_GPL vmlinux 0x4b48c1d4 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x4b4a7e0a crypto_alloc_acomp_node EXPORT_SYMBOL_GPL vmlinux 0x4b519793 pci_find_next_ht_capability EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x4b58cf83 udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0x4b6474e2 vas_init_tx_win_attr EXPORT_SYMBOL_GPL vmlinux 0x4b66facc phy_select_page EXPORT_SYMBOL_GPL vmlinux 0x4b68c8f9 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x4b6b88dd __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4b6dec4a srp_rport_add +EXPORT_SYMBOL_GPL vmlinux 0x4b714119 synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0x4b7b7f47 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x4b80f6e0 strp_done EXPORT_SYMBOL_GPL vmlinux 0x4b83da84 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0x4b8aa178 devlink_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x4ba24f35 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x4bb7f5e9 fixed_phy_change_carrier EXPORT_SYMBOL_GPL vmlinux 0x4bc90739 kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x4bd26412 fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x4bd63de7 debugfs_create_x16 EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4bea2972 kvmppc_h_read EXPORT_SYMBOL_GPL vmlinux 0x4bef0884 pgtable_cache_add -EXPORT_SYMBOL_GPL vmlinux 0x4c056dc9 wm8350_block_write EXPORT_SYMBOL_GPL vmlinux 0x4c125614 elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x4c2f57b7 rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c5ee5a2 fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0x4c65f49a tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x4c667e5f icc_put -EXPORT_SYMBOL_GPL vmlinux 0x4c68d697 of_find_spi_device_by_node -EXPORT_SYMBOL_GPL vmlinux 0x4c6a0c02 devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0x4c85bbca clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x4c7da7be regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb49fa3 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0x4cb75439 devm_nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cb9f328 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x4cbec625 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4cb8407f perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x4cc5160d fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4cccad82 bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x4cdb223b regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4ce138f7 device_show_bool EXPORT_SYMBOL_GPL vmlinux 0x4ce3a99b elv_register +EXPORT_SYMBOL_GPL vmlinux 0x4cea7857 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x4ceb1966 device_show_ulong EXPORT_SYMBOL_GPL vmlinux 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL vmlinux 0x4cfd4c83 __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable EXPORT_SYMBOL_GPL vmlinux 0x4d0d91f4 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x4d0e7f4e ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x4d2ee20e regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x4d303841 crypto_stats_akcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x4d3e05d0 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x4d4bdb80 page_endio EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d70e02d ata_sff_data_xfer EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d7ddc2d platform_device_add EXPORT_SYMBOL_GPL vmlinux 0x4d8a4097 fscrypt_ioctl_add_key EXPORT_SYMBOL_GPL vmlinux 0x4d91723e usb_put_dev EXPORT_SYMBOL_GPL vmlinux 0x4d9b1e27 iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0x4da50ab8 sbitmap_get EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf EXPORT_SYMBOL_GPL vmlinux 0x4dc52c09 pnv_power9_force_smt4_catch +EXPORT_SYMBOL_GPL vmlinux 0x4dcc96c9 sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0x4dd76a9d blk_req_needs_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4df12ee2 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x4df9bec4 of_pwm_xlate_with_flags EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff EXPORT_SYMBOL_GPL vmlinux 0x4e04ca7b iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x4e071b76 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x4e118488 fwnode_get_name EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e1cd6f5 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x4e27bac8 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x4e2b58f7 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4e3cd966 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4e31ed39 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x4e321d68 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x4e384f42 ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0x4e44d686 edac_device_handle_ue_count EXPORT_SYMBOL_GPL vmlinux 0x4e46aa18 rhashtable_walk_enter EXPORT_SYMBOL_GPL vmlinux 0x4e4e39f4 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4e604f68 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x4e56ef59 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x4e5a505c skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x4e5c7a85 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x4e62fc3a crypto_stats_akcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x4e633c7f hvc_alloc EXPORT_SYMBOL_GPL vmlinux 0x4e6dce24 vga_default_device EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x4e79058f da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x4eaac77c housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x4e8a7947 dax_layout_busy_page EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x4ec85cce crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x4edc5806 wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x4edf2aa6 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4ebdf129 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x4ed596d0 regulator_bulk_force_disable EXPORT_SYMBOL_GPL vmlinux 0x4ee36ea0 rio_mport_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0x4eed52c8 usb_phy_set_charger_state EXPORT_SYMBOL_GPL vmlinux 0x4ef29417 class_destroy EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f0fce91 pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0x4f0a7be6 crypto_stats_decompress EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f32711c wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4f4b178e unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x4f4fb2e4 bpf_prog_free EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6acf09 pcibios_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options EXPORT_SYMBOL_GPL vmlinux 0x4f75303c devfreq_event_reset_event EXPORT_SYMBOL_GPL vmlinux 0x4f818f23 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x4f84c4a6 clk_hw_get_parent_by_index EXPORT_SYMBOL_GPL vmlinux 0x4f8ddd99 of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0x4fa4425e kill_device +EXPORT_SYMBOL_GPL vmlinux 0x4f932351 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x4fa7bd08 of_clk_get_parent_name EXPORT_SYMBOL_GPL vmlinux 0x4fa836dc mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4fb83ba1 thermal_cooling_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x4fbe4ece debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x4fc51523 sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0x4fcc7e00 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x4fd23cb2 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x4fd9609b cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier EXPORT_SYMBOL_GPL vmlinux 0x4fe2f74d nvdimm_in_overwrite EXPORT_SYMBOL_GPL vmlinux 0x4fe69bdb trace_seq_path EXPORT_SYMBOL_GPL vmlinux 0x4fe9ff3b __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x4feaefc9 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x4ff0e37b gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x4ffea53f blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x50001793 regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x500160ed pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5040bb89 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x5045cca1 crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x50736374 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x5076f1b9 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x500e2491 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x506e36d1 ata_wait_register EXPORT_SYMBOL_GPL vmlinux 0x508377eb xive_native_free_irq EXPORT_SYMBOL_GPL vmlinux 0x50847226 to_nvdimm EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start EXPORT_SYMBOL_GPL vmlinux 0x509cebab vfio_pci_core_request EXPORT_SYMBOL_GPL vmlinux 0x50b658e6 syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0x50ba7676 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x50cd5812 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x50d492a6 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x50cbd85c espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x50d43de8 pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0x50dd1af5 blocking_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50eae977 scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0x50ee1c37 class_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x50f223ca dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x50f93fce icc_get EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510ccdbc ata_link_next EXPORT_SYMBOL_GPL vmlinux 0x5111a3d4 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x5126a955 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x512937c4 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x51177180 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x5122937e __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5126fb47 do_tcp_sendpages EXPORT_SYMBOL_GPL vmlinux 0x512c025f pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0x51390721 eeh_pe_set_option EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude @@ -20357,152 +20387,164 @@ EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x5162df49 fuse_dev_free EXPORT_SYMBOL_GPL vmlinux 0x51681be3 user_destroy EXPORT_SYMBOL_GPL vmlinux 0x5170c583 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x5172e0c3 device_del -EXPORT_SYMBOL_GPL vmlinux 0x517f4af7 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x5171047c __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x519bb124 dev_pm_qos_expose_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0x51a89105 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x51ad38d8 bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock -EXPORT_SYMBOL_GPL vmlinux 0x51f0fc2f gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x51f29ca5 do_splice_to EXPORT_SYMBOL_GPL vmlinux 0x51f92fdb power_supply_external_power_changed EXPORT_SYMBOL_GPL vmlinux 0x52194051 usb_hub_find_child EXPORT_SYMBOL_GPL vmlinux 0x521ab301 bio_associate_blkg EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x522664e8 iptunnel_metadata_reply EXPORT_SYMBOL_GPL vmlinux 0x522e180d wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x5233972d crypto_stats_kpp_set_secret EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x524516b4 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x5247b2f1 blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0x5253e0d9 blk_mq_freeze_queue EXPORT_SYMBOL_GPL vmlinux 0x52675eec rio_release_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x5270972d nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x52717aaa platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5274a3fd ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x52859d77 spi_res_add EXPORT_SYMBOL_GPL vmlinux 0x528e396b verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x52afef8c trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0x52c9a973 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x52ce357e tty_get_icount EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52e2b1be raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x52ebf57b security_path_link EXPORT_SYMBOL_GPL vmlinux 0x52f06f3e fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0x52fa6f46 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x52f79ebb regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x52fdefb8 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x53035ac1 fuse_request_end EXPORT_SYMBOL_GPL vmlinux 0x53291f6d iommu_tce_table_put EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x53347539 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x532fa926 devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5337bd87 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x5348d872 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x5352f6a5 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x5338d467 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5356012b sdio_memcpy_toio EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert EXPORT_SYMBOL_GPL vmlinux 0x536cf40c devm_hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x53820b63 perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x53827563 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x53841295 fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0x5386b3ba rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x5388122d fwnode_get_named_gpiod EXPORT_SYMBOL_GPL vmlinux 0x53884839 kvmhv_load_host_pmu +EXPORT_SYMBOL_GPL vmlinux 0x538bdc33 nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x5391261c mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0x53a0e57c nvdimm_name EXPORT_SYMBOL_GPL vmlinux 0x53abc483 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x53afffad proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup EXPORT_SYMBOL_GPL vmlinux 0x53c911ff set_selection_kernel EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0x53d9f73a sensor_group_enable +EXPORT_SYMBOL_GPL vmlinux 0x53e93c5f nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x53eac652 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x540e7318 icc_provider_add EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run EXPORT_SYMBOL_GPL vmlinux 0x541d6a58 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x54204c7d inet_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x54457516 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x544c0193 rq_flush_dcache_pages EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x5460f79f work_on_cpu_safe_key EXPORT_SYMBOL_GPL vmlinux 0x546bff86 pinctrl_parse_index_with_args EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq EXPORT_SYMBOL_GPL vmlinux 0x547279ce irq_domain_pop_irq EXPORT_SYMBOL_GPL vmlinux 0x547ce48f balloon_page_list_enqueue EXPORT_SYMBOL_GPL vmlinux 0x547d16fb irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x5480bd39 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x548471ba task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq EXPORT_SYMBOL_GPL vmlinux 0x54971060 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x54a11917 ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0x54a9fc07 sbitmap_resize EXPORT_SYMBOL_GPL vmlinux 0x54ac3907 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x54cf5745 skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0x54f13e5b regulator_set_pull_down_regmap EXPORT_SYMBOL_GPL vmlinux 0x54f3b745 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0x55038b48 devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x54fc4a3c devlink_reload_disable EXPORT_SYMBOL_GPL vmlinux 0x55057e8a dev_pm_domain_attach_by_name EXPORT_SYMBOL_GPL vmlinux 0x5505ad73 tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x55096b8c sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string EXPORT_SYMBOL_GPL vmlinux 0x551781c5 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x55219eb9 ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0x552fe6a1 is_xive_irq EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput EXPORT_SYMBOL_GPL vmlinux 0x55340513 of_hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55615b2d devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x554a3d4b device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x554d95aa __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x5568a178 __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x556a56f5 pci_generic_ecam_ops EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x556efc0b dev_pm_qos_flags EXPORT_SYMBOL_GPL vmlinux 0x5575d9cf dev_pm_genpd_suspend EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0x5588879e kvmppc_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x558e56bf __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0x559bd939 sysfs_remove_file_from_group EXPORT_SYMBOL_GPL vmlinux 0x559e967e transport_destroy_device EXPORT_SYMBOL_GPL vmlinux 0x55a0a038 xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x55a452e3 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x55c4945f get_governor_parent_kobj EXPORT_SYMBOL_GPL vmlinux 0x55c4c250 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x55c66108 __vfs_removexattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper 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 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x56205747 blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status EXPORT_SYMBOL_GPL vmlinux 0x563f96b2 __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x5648494c of_find_spi_device_by_node EXPORT_SYMBOL_GPL vmlinux 0x565ae0a1 iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0x565f8384 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x565c71d0 sched_trace_cfs_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0x56863ebc powercap_register_control_type EXPORT_SYMBOL_GPL vmlinux 0x56b0c5b3 pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x56c0d9af blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x56c94dce nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x56c99ef9 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x56e92f8f md_rdev_clear EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x571c4f78 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x57282ec8 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x57028146 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x57172563 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x572fcecf apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0x5736a330 mm_iommu_ua_to_hpa +EXPORT_SYMBOL_GPL vmlinux 0x573914a7 ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x5739eb79 fsverity_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options EXPORT_SYMBOL_GPL vmlinux 0x57476b66 thp_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0x57548ddd hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x57649059 crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0x5776adf7 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x57781160 __pm_relax EXPORT_SYMBOL_GPL vmlinux 0x5779a76d cpu_remove_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0x5789c1ac ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x578c23d6 xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579c7d11 wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57abccf8 nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0x57ad4be0 opal_int_eoi EXPORT_SYMBOL_GPL vmlinux 0x57b0978d power_supply_changed EXPORT_SYMBOL_GPL vmlinux 0x57b9a5d1 ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0x57bbebd2 balloon_aops EXPORT_SYMBOL_GPL vmlinux 0x57c66eae of_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0x57c8bb10 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x57c9a772 of_css -EXPORT_SYMBOL_GPL vmlinux 0x57d2feae inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57d47934 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x57e47f47 sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0x57e912ec perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x57dae617 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x57e4d664 sdio_retune_crc_enable EXPORT_SYMBOL_GPL vmlinux 0x57f1578a kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x57f20529 xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57ff69d8 crypto_register_aeads EXPORT_SYMBOL_GPL vmlinux 0x5803890f memremap_pages EXPORT_SYMBOL_GPL vmlinux 0x580821e1 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x581c1de6 __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x583c6848 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x58472637 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x5835ec1d gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x5838f0a7 crypto_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x584ecf67 usb_create_shared_hcd EXPORT_SYMBOL_GPL vmlinux 0x584f5ea4 cdrom_read_tocentry EXPORT_SYMBOL_GPL vmlinux 0x58661722 dev_pm_opp_sync_regulators @@ -20510,140 +20552,123 @@ EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware EXPORT_SYMBOL_GPL vmlinux 0x58a62ab3 devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x58a86106 dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x58b35cc9 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x58cdddb7 css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0x58d39abe fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0x58da3c38 __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x58dad86a dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x58dde0b0 ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove EXPORT_SYMBOL_GPL vmlinux 0x58e3176c __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0x5905b1e1 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x58ec2e41 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x58f730f1 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x5905be74 perf_event_create_kernel_counter EXPORT_SYMBOL_GPL vmlinux 0x5909fc18 opal_tpo_read EXPORT_SYMBOL_GPL vmlinux 0x59184c2f devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x594fb0c3 cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x59683bbe crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x59786849 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x591a6ccc crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x59210cd6 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x59535334 ata_host_register EXPORT_SYMBOL_GPL vmlinux 0x5985428a fscrypt_d_revalidate EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf EXPORT_SYMBOL_GPL vmlinux 0x598ded1a dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x59b07b6c device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x59a480df devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user EXPORT_SYMBOL_GPL vmlinux 0x59b8aa95 account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0x59be22bc kvmhv_save_guest_pmu EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59cf3375 ata_std_error_handler EXPORT_SYMBOL_GPL vmlinux 0x59d0d398 devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x59d43dd7 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x59e12b02 xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x59eba8f7 tty_put_char EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm EXPORT_SYMBOL_GPL vmlinux 0x59f6215c class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x5a0f53e1 crypto_unregister_shash EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x5a130a5b inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle EXPORT_SYMBOL_GPL vmlinux 0x5a1fbed9 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5a2a3ef0 bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0x5a2b5bdc dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x5a2b8cf8 find_vpid EXPORT_SYMBOL_GPL vmlinux 0x5a2ba61e rt_mutex_trylock EXPORT_SYMBOL_GPL vmlinux 0x5a3b6594 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a3e4c9e mmc_regulator_disable_vqmmc EXPORT_SYMBOL_GPL vmlinux 0x5a44c7cc cpu_remove_dev_attr EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a4b73ee dev_pm_qos_expose_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x5a500f02 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x5a5cb6a4 clk_hw_get_flags EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a78af88 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify EXPORT_SYMBOL_GPL vmlinux 0x5a7d60bd mbox_send_message EXPORT_SYMBOL_GPL vmlinux 0x5a812d94 blk_mq_complete_request_remote EXPORT_SYMBOL_GPL vmlinux 0x5a827a3f kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0x5a82e03e __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x5aa306d1 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x5aa72d86 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x5a95906d inet6_compat_ioctl EXPORT_SYMBOL_GPL vmlinux 0x5aad1064 page_mkclean EXPORT_SYMBOL_GPL vmlinux 0x5aaeefa1 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x5aafa52b dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner EXPORT_SYMBOL_GPL vmlinux 0x5ab0fb8d dev_pm_opp_get_opp_count EXPORT_SYMBOL_GPL vmlinux 0x5ab14c73 sysfs_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0x5ab47d9b __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x5ab6c7b5 netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0x5ab76cb2 dax_copy_to_iter EXPORT_SYMBOL_GPL vmlinux 0x5ac62a62 dm_bio_from_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x5ac7593b rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x5acce02c xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0x5ad5bfc5 devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x5ad9eae9 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x5ae6fbdc shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x5ada74ee shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0x5b19db9c virtio_add_status EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b2bb3d6 find_vpid EXPORT_SYMBOL_GPL vmlinux 0x5b2e7836 usb_phy_roothub_suspend EXPORT_SYMBOL_GPL vmlinux 0x5b349a2a kvmppc_h_get_tce EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm EXPORT_SYMBOL_GPL vmlinux 0x5b42d74c pci_intx EXPORT_SYMBOL_GPL vmlinux 0x5b4ed23d devres_find -EXPORT_SYMBOL_GPL vmlinux 0x5b534f3c sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x5b594ade clk_hw_get_parent EXPORT_SYMBOL_GPL vmlinux 0x5b62b8b5 set_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0x5b6aeabe usb_root_hub_lost_power EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment EXPORT_SYMBOL_GPL vmlinux 0x5b77f6d5 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x5b789bbe gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0x5b791116 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x5ba32c55 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x5b8b7886 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x5ba45eca inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x5badce58 devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x5bb01261 fsnotify_add_mark EXPORT_SYMBOL_GPL vmlinux 0x5bb288b4 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x5bb708b9 flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x5bb73d33 of_icc_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd41800 iptunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x5bd68324 bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5be3aeac regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x5be6188e tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x5be90407 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x5be483c8 security_inode_create EXPORT_SYMBOL_GPL vmlinux 0x5bf7b895 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x5c11d862 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x5c1bbe22 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x5c27671c security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x5c1ab660 key_type_trusted EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x5c385367 bus_set_iommu EXPORT_SYMBOL_GPL vmlinux 0x5c38c3a6 xas_store EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event EXPORT_SYMBOL_GPL vmlinux 0x5c41b181 blk_queue_set_zoned EXPORT_SYMBOL_GPL vmlinux 0x5c4af312 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x5c53013b regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x5c558a94 devm_gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features EXPORT_SYMBOL_GPL vmlinux 0x5c62d9da fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x5c6e46e7 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x5c73fac3 __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x5c78cb73 pinctrl_utils_add_map_configs EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c9d697b devlink_free EXPORT_SYMBOL_GPL vmlinux 0x5ca96920 md_allow_write EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple EXPORT_SYMBOL_GPL vmlinux 0x5cb99d97 kernstart_addr EXPORT_SYMBOL_GPL vmlinux 0x5cbbde60 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x5cc955e7 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x5cca8078 crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0x5cd305ed digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x5cec6a59 __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0x5ced30f2 inode_congested EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cf48a6b iptunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x5d03eb90 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x5d080d3c regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x5d149532 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x5d1b8fba unmap_mapping_pages EXPORT_SYMBOL_GPL vmlinux 0x5d205364 fat_flush_inodes EXPORT_SYMBOL_GPL vmlinux 0x5d229ced sysfs_remove_mount_point EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm EXPORT_SYMBOL_GPL vmlinux 0x5d44261b md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5d4797bd tracing_snapshot_cond EXPORT_SYMBOL_GPL vmlinux 0x5d507f04 led_trigger_write EXPORT_SYMBOL_GPL vmlinux 0x5d5219a3 securityfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x5d537e69 pm_generic_restore EXPORT_SYMBOL_GPL vmlinux 0x5d70a27f fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x5d75c80a __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0x5d7a1d8a gpiod_unexport EXPORT_SYMBOL_GPL vmlinux 0x5d8243ba usb_free_coherent EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc @@ -20651,129 +20676,113 @@ EXPORT_SYMBOL_GPL vmlinux 0x5d863f52 hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x5d8f84e5 fbcon_modechange_possible EXPORT_SYMBOL_GPL vmlinux 0x5da20a2e __rio_local_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db46130 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x5db95721 kern_mount EXPORT_SYMBOL_GPL vmlinux 0x5db95cbb vfio_pci_core_enable EXPORT_SYMBOL_GPL vmlinux 0x5dd40389 mpc8xxx_spi_rx_buf_u16 EXPORT_SYMBOL_GPL vmlinux 0x5e00aea4 ucall_norets EXPORT_SYMBOL_GPL vmlinux 0x5e0b16f3 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x5e0caea6 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x5e1a7f37 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x5e1c8ccb __traceiter_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x5e1ca0b5 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x5e1fe384 security_path_chown EXPORT_SYMBOL_GPL vmlinux 0x5e34e698 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e455fd7 skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0x5e45e685 pm_generic_poweroff_noirq EXPORT_SYMBOL_GPL vmlinux 0x5e510ebe dev_attr_ncq_prio_supported EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e52ce69 ata_scsi_unlock_native_capacity EXPORT_SYMBOL_GPL vmlinux 0x5e5682b5 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x5e5be0d3 netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0x5e5c1583 sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0x5e5ddc82 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x5e5fcf14 __ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x5e6233fb auxiliary_device_init EXPORT_SYMBOL_GPL vmlinux 0x5e68b990 sysfs_create_group EXPORT_SYMBOL_GPL vmlinux 0x5e762cf5 of_nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e7ec8f7 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e80517e cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume EXPORT_SYMBOL_GPL vmlinux 0x5e8897ea adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x5ea41e1e inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x5e9dee7b regmap_bulk_write 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 0x5ebde96e balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5ec03807 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x5eca109e dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0x5ecda98d gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x5ec7155d put_pid EXPORT_SYMBOL_GPL vmlinux 0x5ed0da6c tm_disable +EXPORT_SYMBOL_GPL vmlinux 0x5ed138a6 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0x5ed212e3 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x5ed762fc sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0x5edc0a42 irq_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x5ee0de20 skcipher_walk_async EXPORT_SYMBOL_GPL vmlinux 0x5ee2d6d6 debugfs_read_file_bool EXPORT_SYMBOL_GPL vmlinux 0x5ee82d1e debugfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0x5ee93bed usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x5eedc304 rdev_get_dev EXPORT_SYMBOL_GPL vmlinux 0x5ef0cd0d cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x5efd9081 of_clk_hw_simple_get EXPORT_SYMBOL_GPL vmlinux 0x5efeff14 ehci_hub_control EXPORT_SYMBOL_GPL vmlinux 0x5f093d25 sysfs_merge_group EXPORT_SYMBOL_GPL vmlinux 0x5f0afa84 rio_mport_get_physefb EXPORT_SYMBOL_GPL vmlinux 0x5f16698a cpufreq_generic_attr EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource EXPORT_SYMBOL_GPL vmlinux 0x5f2753ca ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x5f27b2a9 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x5f2cadb2 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x5f3d557f pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0x5f518ffa thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x5f58db42 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x5f5d5ec4 tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x5f612b45 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x5f66857a __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x5f6a303e blk_update_request EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private EXPORT_SYMBOL_GPL vmlinux 0x5f7aa6ab get_user_pages_fast_only EXPORT_SYMBOL_GPL vmlinux 0x5f84e4be dma_buf_attach EXPORT_SYMBOL_GPL vmlinux 0x5f85b17c devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5f99f80d nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f9e94cd pci_host_common_probe EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fb15fb1 cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0x5fb933ff __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0x5fbdc015 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x5fbb2ddd devlink_params_unpublish EXPORT_SYMBOL_GPL vmlinux 0x5fbf8028 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x5fccda8b fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0x5fd10333 pci_rescan_bus EXPORT_SYMBOL_GPL vmlinux 0x5fdbf45c of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x5fdbfda7 of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x5fe80b81 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x5fe6cdc2 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x5fe8bbc4 thermal_zone_device_update EXPORT_SYMBOL_GPL vmlinux 0x5fe919ab driver_remove_file EXPORT_SYMBOL_GPL vmlinux 0x5ff30c66 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x5ffdb3ae ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x5ff60af8 __traceiter_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x6000187c opal_check_token EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x600cc455 mmu_slb_size EXPORT_SYMBOL_GPL vmlinux 0x60163c4f pci_epc_add_epf EXPORT_SYMBOL_GPL vmlinux 0x6023fd46 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x602d98d0 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x602d16b4 xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x60477427 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x6048fb2b fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x604dd9f8 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x605bcff2 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x606cffc7 __traceiter_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x606f8a7c pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put EXPORT_SYMBOL_GPL vmlinux 0x6081884a usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x6086691a switchdev_handle_fdb_add_to_device EXPORT_SYMBOL_GPL vmlinux 0x608b294d bus_for_each_drv EXPORT_SYMBOL_GPL vmlinux 0x60902720 dma_buf_pin EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6099b71d device_set_wakeup_capable EXPORT_SYMBOL_GPL vmlinux 0x609e7dcf vfio_virqfd_disable EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add EXPORT_SYMBOL_GPL vmlinux 0x60b133c4 blk_mq_unquiesce_queue EXPORT_SYMBOL_GPL vmlinux 0x60c5edb6 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x60c75d28 perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x60df15d8 __page_mapcount EXPORT_SYMBOL_GPL vmlinux 0x60e32cdd debugfs_create_file_size EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare EXPORT_SYMBOL_GPL vmlinux 0x60f2fa3e rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x60fa965f l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0x6108cebc __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x6114be0e fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0x6116fbaf genphy_c45_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x611dd6f8 pm_generic_restore_noirq EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x612d201c regulator_set_suspend_voltage EXPORT_SYMBOL_GPL vmlinux 0x6146c01f hrtimer_active EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x614d6476 skcipher_walk_complete EXPORT_SYMBOL_GPL vmlinux 0x6155599d irq_alloc_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x6155a1f1 debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0x615d2d36 __spi_register_driver EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path EXPORT_SYMBOL_GPL vmlinux 0x6164f2a9 blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0x616dace3 dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0x6179f94f ata_link_online EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x6183c545 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x61953014 gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x6198ae61 dma_release_channel EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher @@ -20781,50 +20790,42 @@ EXPORT_SYMBOL_GPL vmlinux 0x619a8194 threads_core_mask EXPORT_SYMBOL_GPL vmlinux 0x61b6b6e6 fscrypt_set_context EXPORT_SYMBOL_GPL vmlinux 0x61bf1173 serial8250_get_port EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x61cbd812 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x61cc2553 ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0x61d8ea7b pinctrl_dev_get_devname EXPORT_SYMBOL_GPL vmlinux 0x61dc0032 of_device_request_module -EXPORT_SYMBOL_GPL vmlinux 0x61ec6b88 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x61e1a766 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x61ee1966 phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0x61fe8e7f uhci_reset_hc EXPORT_SYMBOL_GPL vmlinux 0x620ac155 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x620e51f7 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x621e349b __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x623005b0 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x6231e0af devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0x62332eef serial8250_init_port EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x624b5f1d xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x625ac8ff ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x625ad352 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x625e34d1 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x626a0a2c dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x626c77fd skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x627f7def inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x62772f0f pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0x628148be _kvmppc_restore_tm_pr -EXPORT_SYMBOL_GPL vmlinux 0x6284cfb7 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x62a21b2c devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0x62af18b6 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x6299d0c1 stmpe_disable EXPORT_SYMBOL_GPL vmlinux 0x62b99549 iomap_invalidatepage EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62c0986d wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x62c55c15 sdio_set_host_pm_flags EXPORT_SYMBOL_GPL vmlinux 0x62cad757 pci_stop_and_remove_bus_device_locked EXPORT_SYMBOL_GPL vmlinux 0x62e8d3af eeh_pe_get_state +EXPORT_SYMBOL_GPL vmlinux 0x62f607e8 dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0x63059a39 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x630d2f82 spi_alloc_device EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x63169dc0 rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x631c3c63 gpiochip_request_own_desc EXPORT_SYMBOL_GPL vmlinux 0x63245b18 fscrypt_set_bio_crypt_ctx EXPORT_SYMBOL_GPL vmlinux 0x632ca807 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x6336dc28 sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x634be1c3 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x635c5304 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x6361550b devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0x63785b2c tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x637e0fdd sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x637dca90 __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0x638928a7 kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0x638d2c3f crypto_hash_walk_done EXPORT_SYMBOL_GPL vmlinux 0x639405ab devm_gpiod_get_array_optional @@ -20833,204 +20834,217 @@ EXPORT_SYMBOL_GPL vmlinux 0x639fe83d is_software_node EXPORT_SYMBOL_GPL vmlinux 0x63b35777 public_key_subtype EXPORT_SYMBOL_GPL vmlinux 0x63b51445 fat_detach EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c9b639 spi_write_then_read EXPORT_SYMBOL_GPL vmlinux 0x63ce7d91 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x63d289b8 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0x63d436f6 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x63e21d5f sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x63e4d95f bio_start_io_acct EXPORT_SYMBOL_GPL vmlinux 0x63f38334 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x64148245 __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x6418789c xa_delete_node EXPORT_SYMBOL_GPL vmlinux 0x641f6d2f ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x642af196 nf_checksum EXPORT_SYMBOL_GPL vmlinux 0x642f1dab simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x6441eb56 cpufreq_generic_init EXPORT_SYMBOL_GPL vmlinux 0x64446cf3 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x644e2be8 device_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x6463e6da scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0x646597cd rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x6469c24a skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x646e298d set_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x6478c7f1 virtqueue_get_buf_ctx EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x6492e0b1 nvdimm_badblocks_populate EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x649a1b26 pcibios_scan_phb EXPORT_SYMBOL_GPL vmlinux 0x64a2544e kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x64a4df22 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x64b6bfb0 pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0x64c54520 crypto_register_akcipher EXPORT_SYMBOL_GPL vmlinux 0x64db95b2 disk_update_readahead EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete EXPORT_SYMBOL_GPL vmlinux 0x64e9a706 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x64f2e603 device_store_int EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x650531e0 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x6506cb44 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x64fb3871 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x6506604f perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x6511d736 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x652149ca iommu_group_add_device EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add EXPORT_SYMBOL_GPL vmlinux 0x653723f3 sbitmap_del_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x654d5ef9 ata_std_qc_defer EXPORT_SYMBOL_GPL vmlinux 0x6557756c pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x657ef69e skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x65737d9e devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x658cab43 sock_map_close EXPORT_SYMBOL_GPL vmlinux 0x65901137 nvmem_cell_read_u64 EXPORT_SYMBOL_GPL vmlinux 0x65af481f tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x65af9453 l3mdev_ifindex_lookup_by_table_id EXPORT_SYMBOL_GPL vmlinux 0x65b13053 fb_bl_default_curve EXPORT_SYMBOL_GPL vmlinux 0x65ba68eb serial8250_release_dma EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers EXPORT_SYMBOL_GPL vmlinux 0x65eac411 raw_v6_hashinfo EXPORT_SYMBOL_GPL vmlinux 0x65eb8d72 tps65912_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x65f5ad5a fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x65f5ad6a inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x6608273d ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x66128360 pm_wakeup_dev_event EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6617dc40 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x661ecf1f __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x66264e9d spi_async -EXPORT_SYMBOL_GPL vmlinux 0x66307b4f gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x6620a79f i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6637abbe blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end EXPORT_SYMBOL_GPL vmlinux 0x665712f6 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x665a55a4 device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x66707db5 __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng EXPORT_SYMBOL_GPL vmlinux 0x668f80b1 devm_hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x6692c367 do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0x669617b2 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x669affa6 inet_ehash_locks_alloc EXPORT_SYMBOL_GPL vmlinux 0x669efef8 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x66a8f676 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x66a23c27 gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up EXPORT_SYMBOL_GPL vmlinux 0x66bfeb29 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x66c06af8 mmc_app_cmd EXPORT_SYMBOL_GPL vmlinux 0x66c891c9 devm_hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66d8a7dd crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x66e3e1dd device_init_wakeup EXPORT_SYMBOL_GPL vmlinux 0x66f20a03 tty_kopen_shared EXPORT_SYMBOL_GPL vmlinux 0x6709bac7 nvdimm_bus_unregister EXPORT_SYMBOL_GPL vmlinux 0x670ce365 ftrace_set_filter EXPORT_SYMBOL_GPL vmlinux 0x67264690 of_reserved_mem_lookup EXPORT_SYMBOL_GPL vmlinux 0x672b0343 pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x673b70c6 ata_scsi_slave_config EXPORT_SYMBOL_GPL vmlinux 0x673bdb70 is_nvdimm_sync EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x674d13e7 tpm1_do_selftest EXPORT_SYMBOL_GPL vmlinux 0x676d2ee5 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x677f35e7 xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x678a81a9 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x679234fc devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x679544d1 spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits EXPORT_SYMBOL_GPL vmlinux 0x67a93659 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x67b3a497 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x67b19f15 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x67c8ee55 fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x67cff649 lp8788_read_byte EXPORT_SYMBOL_GPL vmlinux 0x67d52925 of_property_read_variable_u32_array EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67e32bc3 gpiod_toggle_active_low EXPORT_SYMBOL_GPL vmlinux 0x67f1a6a9 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x67f9cf3e gpiod_get_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x680209ce pnv_ocxl_get_tl_cap -EXPORT_SYMBOL_GPL vmlinux 0x680f8440 devm_of_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x6813b77c xhci_gen_setup EXPORT_SYMBOL_GPL vmlinux 0x6819448f governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x681a54fe ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x681ac763 usb_driver_release_interface EXPORT_SYMBOL_GPL vmlinux 0x68263a24 pcie_aspm_enabled EXPORT_SYMBOL_GPL vmlinux 0x682e12a4 ata_bmdma_error_handler EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x68376c0e clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x685133e7 shash_ahash_update EXPORT_SYMBOL_GPL vmlinux 0x68686f66 serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0x68786f2e xive_native_configure_queue +EXPORT_SYMBOL_GPL vmlinux 0x687a395f trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x688aa804 ata_sas_tport_add EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x6895b55d init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x68a529d4 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x68cacf6a ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0x68d6071d syscon_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0x68e16fb2 of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x68e87861 sdio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x68f431c4 of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x68ff6e15 scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0x69059c94 dev_pm_genpd_set_performance_state EXPORT_SYMBOL_GPL vmlinux 0x6909a38b opal_rtc_read EXPORT_SYMBOL_GPL vmlinux 0x690df23d phy_get +EXPORT_SYMBOL_GPL vmlinux 0x690eb0ff gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x6918225c inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x69214f73 crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0x6928269b xive_native_disable_vp -EXPORT_SYMBOL_GPL vmlinux 0x6936b37a br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x6935e3fd __raw_v6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x69372c61 gpiochip_line_is_irq EXPORT_SYMBOL_GPL vmlinux 0x6943dbfc iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x6946c924 regulator_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x69678dbb user_describe EXPORT_SYMBOL_GPL vmlinux 0x696a76d7 usb_alloc_streams EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init -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 0x697cd9bf pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x69806741 device_show_ulong EXPORT_SYMBOL_GPL vmlinux 0x698913a8 dma_buf_vmap EXPORT_SYMBOL_GPL vmlinux 0x699f57b3 mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0x69a02ae8 sata_scr_write_flush EXPORT_SYMBOL_GPL vmlinux 0x69aa1107 power_supply_get_property EXPORT_SYMBOL_GPL vmlinux 0x69af9b1a scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x69bcc5d9 ata_scsi_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d46be3 crypto_stats_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x69dc50e9 driver_create_file 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 0x69f90a8b devlink_port_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x6a011376 fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode EXPORT_SYMBOL_GPL vmlinux 0x6a0e7fd2 ata_sff_lost_interrupt EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a1a7090 console_drivers EXPORT_SYMBOL_GPL vmlinux 0x6a1ba0e5 __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x6a1f9e9f tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0x6a25e120 unregister_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0x6a367eba cpuidle_register_driver EXPORT_SYMBOL_GPL vmlinux 0x6a402abb uart_set_options EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout EXPORT_SYMBOL_GPL vmlinux 0x6a48e4f6 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x6a49157d crypto_create_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize EXPORT_SYMBOL_GPL vmlinux 0x6a53a8f6 iomap_file_unshare EXPORT_SYMBOL_GPL vmlinux 0x6a53bd7e rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x6a5845d3 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x6a5e4538 wakeup_sources_walk_next EXPORT_SYMBOL_GPL vmlinux 0x6a64510b rio_unregister_scan EXPORT_SYMBOL_GPL vmlinux 0x6a7219ff dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x6a789601 regulator_bulk_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start EXPORT_SYMBOL_GPL vmlinux 0x6a84eb27 led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0x6a893ab3 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x6a86af98 crypto_stats_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x6a8ccdf0 kill_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x6a9026f8 devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x6a98c22c devlink_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0x6a9bafb6 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6aa3c9b1 sk_msg_trim EXPORT_SYMBOL_GPL vmlinux 0x6aa6d7b1 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0x6aaf30cf nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x6abbad7d __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x6aee4c46 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x6ac8e17d devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ae5f68d __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x6af05102 usb_get_descriptor EXPORT_SYMBOL_GPL vmlinux 0x6b01ffb6 pinctrl_utils_add_config EXPORT_SYMBOL_GPL vmlinux 0x6b13eff9 pci_ats_supported EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b1b7c01 access_process_vm EXPORT_SYMBOL_GPL vmlinux 0x6b1d0018 ata_bmdma_port_intr EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b35b74c regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x6b35e520 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x6b40b19c crypto_register_rngs EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down EXPORT_SYMBOL_GPL vmlinux 0x6b646b8b dm_send_uevents EXPORT_SYMBOL_GPL vmlinux 0x6b6f67c7 adp5520_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier EXPORT_SYMBOL_GPL vmlinux 0x6b8634cc vfio_iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x6b93a305 posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value EXPORT_SYMBOL_GPL vmlinux 0x6ba8fb38 debugfs_real_fops EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bce9420 crypto_unregister_skciphers EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bea7c43 gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x6bedc53e devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x6bf0a58f free_fib_info EXPORT_SYMBOL_GPL vmlinux 0x6bfbb9c6 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x6c10599d perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0x6c10c3f7 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x6bfc2a4a sdio_f0_writeb EXPORT_SYMBOL_GPL vmlinux 0x6c15bf67 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6c1744ab clk_hw_round_rate EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c2f61c1 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6c3356fe fwnode_graph_get_remote_node EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register EXPORT_SYMBOL_GPL vmlinux 0x6c5f1a99 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x6c60c561 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x6c674add platform_add_devices EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work EXPORT_SYMBOL_GPL vmlinux 0x6c7ca20e irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x6c83a73c shmem_zero_setup EXPORT_SYMBOL_GPL vmlinux 0x6c90b2f9 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x6c92d2e9 xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cb4c116 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x6cc39f10 devlink_port_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0x6cc906d2 dev_coredumpv EXPORT_SYMBOL_GPL vmlinux 0x6ccae748 ata_bmdma_dumb_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x6cd7b574 of_genpd_add_provider_simple @@ -21040,114 +21054,108 @@ EXPORT_SYMBOL_GPL vmlinux 0x6cfbaaa2 __phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request EXPORT_SYMBOL_GPL vmlinux 0x6d0e43d8 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x6d165c5d pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x6d1bf880 devlink_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0x6d1fc57e usb_get_dr_mode EXPORT_SYMBOL_GPL vmlinux 0x6d28de7c mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list EXPORT_SYMBOL_GPL vmlinux 0x6d356f2c ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x6d376f79 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x6d529c34 sdio_writel EXPORT_SYMBOL_GPL vmlinux 0x6d60092c blkcg_policy_unregister EXPORT_SYMBOL_GPL vmlinux 0x6d6420ed virtqueue_get_vring_size EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7266ee ip6_input EXPORT_SYMBOL_GPL vmlinux 0x6d72b9aa pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d80144e regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0x6d88210d crypto_stats_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x6d8d503d cpu_latency_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x6d90569e blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x6d926298 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x6d9f919b regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 EXPORT_SYMBOL_GPL vmlinux 0x6dcaf7d2 dm_table_set_type EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id EXPORT_SYMBOL_GPL vmlinux 0x6ddea51f nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0x6de78ae3 lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0x6df05bce pci_set_cacheline_size EXPORT_SYMBOL_GPL vmlinux 0x6df47176 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x6df592a0 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x6df61e12 devlink_port_register EXPORT_SYMBOL_GPL vmlinux 0x6dfdf108 mddev_suspend EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e0caae3 thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x6e239f12 dma_vunmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x6e2c909c iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x6e2d17ff ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x6e2f8087 devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0x6e3250f6 firmware_request_cache EXPORT_SYMBOL_GPL vmlinux 0x6e3a9ffb kthread_func -EXPORT_SYMBOL_GPL vmlinux 0x6e3cb215 of_pwm_xlate_with_flags EXPORT_SYMBOL_GPL vmlinux 0x6e3d5406 software_node_fwnode EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free EXPORT_SYMBOL_GPL vmlinux 0x6e4ec9d2 store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0x6e578a72 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x6e57e712 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e5a9319 sata_link_debounce EXPORT_SYMBOL_GPL vmlinux 0x6e5e0db3 vfio_register_group_dev EXPORT_SYMBOL_GPL vmlinux 0x6e747957 nvdimm_blk_region_create EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id EXPORT_SYMBOL_GPL vmlinux 0x6e7affa4 of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x6e80d13d devlink_dpipe_table_unregister EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e95087e inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0x6eb3eb22 da9055_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x6eb65f2a irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6ed21d8a agp_add_bridge EXPORT_SYMBOL_GPL vmlinux 0x6ed43794 dma_get_required_mask EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x6eeb30d8 __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6f0088d9 xive_native_sync_source EXPORT_SYMBOL_GPL vmlinux 0x6f0f3a32 devm_gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity EXPORT_SYMBOL_GPL vmlinux 0x6f207d09 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x6f2df126 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x6f3a725b sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0x6f3b55b3 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0x6f4c4465 ata_pci_bmdma_clear_simplex EXPORT_SYMBOL_GPL vmlinux 0x6f4d6fbe genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x6f57ecd2 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f59e57e sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x6f610cd7 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x6f72c4cc device_move EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f8a1ad8 srp_attach_transport +EXPORT_SYMBOL_GPL vmlinux 0x6f9277c5 devm_platform_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read EXPORT_SYMBOL_GPL vmlinux 0x6f9f8724 usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x6fa3c914 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x6fa754e0 irq_domain_update_bus_token EXPORT_SYMBOL_GPL vmlinux 0x6fab3e92 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x6fab60bc ata_port_wait_eh EXPORT_SYMBOL_GPL vmlinux 0x6fc98831 iommu_uapi_sva_bind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x6fcb9682 ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset EXPORT_SYMBOL_GPL vmlinux 0x6fd582d5 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x6fdb6375 mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0x6fe66eac nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x6fe728b4 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x6fe242ff devlink_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng EXPORT_SYMBOL_GPL vmlinux 0x6ffcdf1f fscrypt_set_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x7002775e virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x7003d191 clk_hw_is_prepared EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x70167082 tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x701c8845 spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x701e71c3 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x70209701 devlink_param_publish EXPORT_SYMBOL_GPL vmlinux 0x702c6133 regulator_map_voltage_ascend EXPORT_SYMBOL_GPL vmlinux 0x702e4988 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x70497fda cxl_update_properties EXPORT_SYMBOL_GPL vmlinux 0x704c92ac bus_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x704f24ae kvmppc_restore_tm_hv EXPORT_SYMBOL_GPL vmlinux 0x7052f239 d_walk EXPORT_SYMBOL_GPL vmlinux 0x7057e63e bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x706ed3c9 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x706ad5ee bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array EXPORT_SYMBOL_GPL vmlinux 0x7078280a blk_mq_freeze_queue_wait EXPORT_SYMBOL_GPL vmlinux 0x70789a40 iommu_aux_attach_device EXPORT_SYMBOL_GPL vmlinux 0x7079db7c led_compose_name EXPORT_SYMBOL_GPL vmlinux 0x707c18ea fuse_dev_alloc_install EXPORT_SYMBOL_GPL vmlinux 0x707e4cf7 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x7093aa8c dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x7085e9e9 crypto_register_aead EXPORT_SYMBOL_GPL vmlinux 0x7096b79c of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x709f6652 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x709f8f46 vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0x70a0ab36 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x70a2a380 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x70bce8fa __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70c6a4e4 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x70c64516 trace_array_put EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70cf3473 ehci_handshake EXPORT_SYMBOL_GPL vmlinux 0x70d0e1a9 usb_interrupt_msg EXPORT_SYMBOL_GPL vmlinux 0x70ddf0d2 devm_clk_bulk_get_all EXPORT_SYMBOL_GPL vmlinux 0x70e026fd clk_gate_is_enabled @@ -21158,215 +21166,222 @@ EXPORT_SYMBOL_GPL vmlinux 0x7124c7b9 regulator_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x71542741 of_genpd_add_subdomain EXPORT_SYMBOL_GPL vmlinux 0x71549330 unregister_net_sysctl_table EXPORT_SYMBOL_GPL vmlinux 0x7157007c pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x71620f43 __traceiter_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized EXPORT_SYMBOL_GPL vmlinux 0x717b9e3e iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x718726d1 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x7191dee6 inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71adbf1c do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x71ae8323 devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0x71b0759c dev_pm_set_dedicated_wake_irq 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 0x71debfe3 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7203b5ac sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0x721a2d00 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x71e314b5 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x7206fe7b perf_aux_output_flag EXPORT_SYMBOL_GPL vmlinux 0x721e3b6c regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x72332a75 devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x72427950 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x7231cdfb ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x7248ff1b devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x72505563 devlink_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x7258a697 devm_regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x725b1c78 serdev_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x725cf59d mbox_request_channel_byname EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x726ae8cf replace_page_cache_page EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events EXPORT_SYMBOL_GPL vmlinux 0x727c03b0 blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0x727daa0f udp_abort EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x7292aef0 regmap_multi_reg_write_bypassed EXPORT_SYMBOL_GPL vmlinux 0x72953527 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x72a5b7da __traceiter_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x72a5b9fd dm_internal_resume EXPORT_SYMBOL_GPL vmlinux 0x72a8c376 edac_device_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x72b56f31 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x72b5e1fd ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x72c4d297 crypto_alloc_ahash EXPORT_SYMBOL_GPL vmlinux 0x72d0da8d dev_pm_opp_get_suspend_opp_freq EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72d3b736 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x72ecba71 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x72efafcb __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0x72f18c7b usb_phy_set_charger_current EXPORT_SYMBOL_GPL vmlinux 0x72f78c00 nd_blk_region_set_provider_data EXPORT_SYMBOL_GPL vmlinux 0x72fbff59 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x730b2ddd mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x731ccf9d kthread_queue_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x732a5ce2 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x733932dc __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7341f830 __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x73587f93 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x735c9a12 __vfs_setxattr_noperm EXPORT_SYMBOL_GPL vmlinux 0x737895e7 vas_init_rx_win_attr EXPORT_SYMBOL_GPL vmlinux 0x7378ca41 xas_nomem EXPORT_SYMBOL_GPL vmlinux 0x7382d0ee sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x7383e36d l3mdev_update_flow EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports EXPORT_SYMBOL_GPL vmlinux 0x73a5a37c poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x73b894f8 wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73cbec51 event_triggers_call EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73cfc104 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x73db9821 wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0x73e61fe8 badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0x74042771 device_remove_properties EXPORT_SYMBOL_GPL vmlinux 0x7404d6bc fat_alloc_new_dir EXPORT_SYMBOL_GPL vmlinux 0x74104f28 usb_wakeup_notification EXPORT_SYMBOL_GPL vmlinux 0x74199b26 opal_leds_set_ind -EXPORT_SYMBOL_GPL vmlinux 0x741f74b1 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x74329470 __regmap_init EXPORT_SYMBOL_GPL vmlinux 0x7432962b srp_rport_del +EXPORT_SYMBOL_GPL vmlinux 0x74366915 devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask EXPORT_SYMBOL_GPL vmlinux 0x7443f014 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x744f144e dev_pm_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x7460f3eb usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0x748fca3d ima_file_hash EXPORT_SYMBOL_GPL vmlinux 0x74aa450b dm_get_queue_limits EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c7b775 cpufreq_enable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0x74cc0369 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x74cc56e2 bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0x74cd4750 nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x74db4945 blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x74df7589 crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0x74e36c1a nvdimm_volatile_region_create EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74e96948 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x74fca0f4 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x750d0c45 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x75113aee ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status EXPORT_SYMBOL_GPL vmlinux 0x7525613a regulator_irq_helper EXPORT_SYMBOL_GPL vmlinux 0x753e67fb class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7541dadc ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x75483f2a vas_win_close EXPORT_SYMBOL_GPL vmlinux 0x754ba823 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x754ec398 devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x75579667 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x755a9672 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x755f7501 crypto_req_done EXPORT_SYMBOL_GPL vmlinux 0x7564e59e genphy_c45_pma_suspend EXPORT_SYMBOL_GPL vmlinux 0x756d56ba of_alias_get_id EXPORT_SYMBOL_GPL vmlinux 0x757cfe35 xive_native_get_vp_info EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x7596e8b9 platform_device_put EXPORT_SYMBOL_GPL vmlinux 0x7598b918 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x75be1280 __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x75c8c621 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x75c9a1ba device_property_read_u8_array 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 0x75ec1b0c hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x75f08295 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x75feaa8f xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0x7602f150 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x7607063c regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x7608a742 __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0x760c091c devres_close_group EXPORT_SYMBOL_GPL vmlinux 0x760ebf1a iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x7610d2aa wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0x7612743a srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x764175c4 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x762fe6ad regulator_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x7651d97e devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x7659a508 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x766502c2 devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x76686525 pci_host_common_probe -EXPORT_SYMBOL_GPL vmlinux 0x766c5d91 fwnode_property_get_reference_args EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7683c064 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x76851135 set_thread_tidr EXPORT_SYMBOL_GPL vmlinux 0x768dc2d2 ata_bmdma_stop EXPORT_SYMBOL_GPL vmlinux 0x768ea7c9 tpm_pm_suspend EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic EXPORT_SYMBOL_GPL vmlinux 0x76a57e0b devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x76a960ad ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x76a65c02 lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0x76af8460 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x76b6d5a7 gpiod_get_value EXPORT_SYMBOL_GPL vmlinux 0x76b994b7 vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0x76b9bfd7 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x76bada88 call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0x76c4dd35 dev_pm_clear_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x76d09d71 iomap_writepage -EXPORT_SYMBOL_GPL vmlinux 0x76d388cd dax_iomap_fault EXPORT_SYMBOL_GPL vmlinux 0x76d3e0a0 vfio_device_put EXPORT_SYMBOL_GPL vmlinux 0x76d6623e vp_modern_queue_address EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x76f02ba2 of_get_pci_domain_nr EXPORT_SYMBOL_GPL vmlinux 0x76f2abe0 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x76f4aad7 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x77264016 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x7726cc4e pwm_apply_state EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x773179ba rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0x77318e35 class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x773795ca divider_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x773a9114 dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x773ab1ae devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x77438b16 ehci_suspend EXPORT_SYMBOL_GPL vmlinux 0x77483641 kvmppc_host_rm_ops_hv EXPORT_SYMBOL_GPL vmlinux 0x774e49e7 rio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x77545d4b gpiod_set_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775b6449 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x7760c074 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x77653395 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x777bff92 ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0x77873f15 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x778f721f regulator_set_voltage EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x77937fa8 regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0x779da2af virtqueue_poll EXPORT_SYMBOL_GPL vmlinux 0x77ab6821 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x77ad227c crypto_register_aeads EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b14a74 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x77b6e5ec trace_output_call EXPORT_SYMBOL_GPL vmlinux 0x77d4df48 fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0x77d5c1b7 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x77e696aa ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key EXPORT_SYMBOL_GPL vmlinux 0x77f201eb ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x780196cb ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x78211be0 addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x783d26c5 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x783c6c84 ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0x78414777 mddev_init_writes_pending EXPORT_SYMBOL_GPL vmlinux 0x78426402 ata_sff_dma_pause EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available EXPORT_SYMBOL_GPL vmlinux 0x785dbd57 extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x785f28d9 devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0x78632b00 devfreq_cooling_em_register EXPORT_SYMBOL_GPL vmlinux 0x786815b7 dev_pm_opp_of_register_em -EXPORT_SYMBOL_GPL vmlinux 0x786cc698 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x7878aadd platform_get_mem_or_io EXPORT_SYMBOL_GPL vmlinux 0x787c0303 pci_sriov_get_totalvfs EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x7882d8ea __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x788c5af0 ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x789735de adp5520_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot EXPORT_SYMBOL_GPL vmlinux 0x789d0fde rio_release_dma EXPORT_SYMBOL_GPL vmlinux 0x78a4a3fd pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x78aeaa0e regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x78e4012e page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x78a89e52 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x78b83062 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x78ca7802 sdio_writew EXPORT_SYMBOL_GPL vmlinux 0x78e58a4e xive_native_has_single_escalation EXPORT_SYMBOL_GPL vmlinux 0x78f4870d pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x78f9b45e dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x790dae0b sched_trace_rq_avg_rt EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x792331ac devfreq_get_devfreq_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x7936a9fe blk_ksm_is_superset EXPORT_SYMBOL_GPL vmlinux 0x793d6203 rio_del_device 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 0x794a545d bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x794c2f03 spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x794edb5c device_match_of_node EXPORT_SYMBOL_GPL vmlinux 0x795483a7 blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x799cea1d sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x79a19adb dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x7955a6c9 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x79718f53 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x797804e4 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x79878b8e of_clk_get_parent_count EXPORT_SYMBOL_GPL vmlinux 0x79a7ca40 eeh_iommu_group_to_pe EXPORT_SYMBOL_GPL vmlinux 0x79ac92b1 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x79b04799 crypto_register_shashes EXPORT_SYMBOL_GPL vmlinux 0x79baad3c iommu_sva_get_pasid EXPORT_SYMBOL_GPL vmlinux 0x79c2fde5 pm_runtime_force_suspend EXPORT_SYMBOL_GPL vmlinux 0x79c48f21 badblocks_clear EXPORT_SYMBOL_GPL vmlinux 0x79dd48af iommu_device_link EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79ef1316 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress EXPORT_SYMBOL_GPL vmlinux 0x7a067833 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x7a0acaae i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0x7a13329f of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x7a2cc4fd crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x7a6a5fb5 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7a42020a device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x7a5a38f8 get_device +EXPORT_SYMBOL_GPL vmlinux 0x7a6676ef crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7a7115a4 ata_sas_port_suspend EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie EXPORT_SYMBOL_GPL vmlinux 0x7a8d8666 blk_mq_alloc_sq_tag_set EXPORT_SYMBOL_GPL vmlinux 0x7a8f11bb devm_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x7a8fa1c5 device_match_any EXPORT_SYMBOL_GPL vmlinux 0x7a90d965 rio_mport_get_efb EXPORT_SYMBOL_GPL vmlinux 0x7a91487f powercap_unregister_control_type EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter @@ -21380,15 +21395,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x7ac7a18a usb_submit_urb EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings EXPORT_SYMBOL_GPL vmlinux 0x7adc6e39 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x7adf2a1f register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x7ae31ab4 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x7af922d5 devfreq_get_devfreq_by_node EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0x7b1df89f pci_address_to_pio -EXPORT_SYMBOL_GPL vmlinux 0x7b375ab3 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x7b4d43d1 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x7b351c2a do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x7b485a1a mmc_regulator_get_supply EXPORT_SYMBOL_GPL vmlinux 0x7b4ff8f4 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x7b51677f __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b624a9f fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0x7b6fa4b4 vfio_pci_core_init_device EXPORT_SYMBOL_GPL vmlinux 0x7b783824 ppc_breakpoint_available EXPORT_SYMBOL_GPL vmlinux 0x7b8a49b7 __fscrypt_inode_uses_inline_crypto @@ -21397,62 +21414,83 @@ EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us EXPORT_SYMBOL_GPL vmlinux 0x7b99ed8d tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0x7bca6fbe devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x7bcfd45b unregister_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x7be0b5ae misc_cg_try_charge EXPORT_SYMBOL_GPL vmlinux 0x7be64545 tty_port_register_device_attr_serdev EXPORT_SYMBOL_GPL vmlinux 0x7be8f845 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x7c0c1608 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x7bebed97 vas_register_api_powernv +EXPORT_SYMBOL_GPL vmlinux 0x7c07a6ea spi_split_transfers_maxsize EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list +EXPORT_SYMBOL_GPL vmlinux 0x7c3c7022 __clk_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put EXPORT_SYMBOL_GPL vmlinux 0x7c3f09ba irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x7c46f93f check_move_unevictable_pages EXPORT_SYMBOL_GPL vmlinux 0x7c48722b devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x7c552f77 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x7c6b0269 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7c4abf05 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x7c50bf1c unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x7c5599ee device_rename +EXPORT_SYMBOL_GPL vmlinux 0x7c63693b regulator_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0x7c73a9e0 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x7c7ce770 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x7c8d1e01 regulator_get_hardware_vsel_register EXPORT_SYMBOL_GPL vmlinux 0x7c94d015 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7c975d41 fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca245c4 pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0x7ca47da8 regmap_raw_write EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x7cb77fc3 sched_trace_rq_avg_rt +EXPORT_SYMBOL_GPL vmlinux 0x7ca7a8a7 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x7caaf940 flush_vsx_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x7cb48aa6 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x7cb771e2 crypto_alloc_acomp_node EXPORT_SYMBOL_GPL vmlinux 0x7cbe97e0 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x7cc926ed gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x7cbfe3cf wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x7ccd0a41 clk_mux_determine_rate_flags EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver EXPORT_SYMBOL_GPL vmlinux 0x7cd98676 fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0x7cda9237 xfrm_output_resume EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cec4b22 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7ceffa0c sdio_align_size EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d048d67 __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0x7d084929 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x7d08e6c0 rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0x7d10e0d2 phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0x7d123901 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x7d14bf1d tcp_twsk_destructor EXPORT_SYMBOL_GPL vmlinux 0x7d1ad713 kobject_rename EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d1cbe06 inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0x7d1f8491 led_set_brightness_sync EXPORT_SYMBOL_GPL vmlinux 0x7d23c3de kernfs_path_from_node EXPORT_SYMBOL_GPL vmlinux 0x7d2c5877 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x7d2f7a52 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x7d30c45e security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7d3e4e3b __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7d40dccd scsi_host_complete_all_commands EXPORT_SYMBOL_GPL vmlinux 0x7d4356b4 io_cgrp_subsys EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d6e3500 __traceiter_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0x7d6fd019 dev_pm_opp_put EXPORT_SYMBOL_GPL vmlinux 0x7d8ad328 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x7d9028f0 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7d917a6d regulator_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x7da7de90 tps65912_device_exit EXPORT_SYMBOL_GPL vmlinux 0x7daebf79 pci_epf_create EXPORT_SYMBOL_GPL vmlinux 0x7daf194c irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x7db21b75 fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x7db8e9ff rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0x7dc13f31 pinctrl_select_state EXPORT_SYMBOL_GPL vmlinux 0x7dc5b209 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x7dd47af3 of_clk_src_simple_get 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 0x7df5d4fe of_rescan_bus EXPORT_SYMBOL_GPL vmlinux 0x7dff2a0c kvmhv_load_guest_pmu +EXPORT_SYMBOL_GPL vmlinux 0x7e006351 bpf_prog_inc EXPORT_SYMBOL_GPL vmlinux 0x7e07f6c7 reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x7e13fa2f ip_fib_metrics_init EXPORT_SYMBOL_GPL vmlinux 0x7e1e1bd3 iommu_tce_check_gpa +EXPORT_SYMBOL_GPL vmlinux 0x7e21dc27 rtc_update_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x7e253125 blk_ksm_intersect_modes EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e59f4e6 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type EXPORT_SYMBOL_GPL vmlinux 0x7e618071 devm_of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time @@ -21461,276 +21499,266 @@ EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu EXPORT_SYMBOL_GPL vmlinux 0x7e84fe20 fsl8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0x7e8be280 pm_genpd_add_subdomain EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7ea75cce sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x7eaaa3ae security_path_symlink EXPORT_SYMBOL_GPL vmlinux 0x7eab5ecf devres_release EXPORT_SYMBOL_GPL vmlinux 0x7eb0a6ff debugfs_attr_read EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x7eb245d7 irq_domain_translate_onecell EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ec649fd sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x7ecd4e8f regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x7ec5f68b __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x7ed02360 blk_mq_unfreeze_queue EXPORT_SYMBOL_GPL vmlinux 0x7ed82199 rio_mport_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7eed05d5 vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0x7f047e6e pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x7f05faad devlink_net EXPORT_SYMBOL_GPL vmlinux 0x7f0ddc19 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x7f1cc549 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x7f1359dd addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0x7f234a6f dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x7f2a53fa bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x7f34e18d bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x7f3774c2 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x7f3d4b69 crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0x7f524652 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x7f5ebb1f ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x7f607329 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x7f6ce74c bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0x7f715393 kobject_get_path EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata EXPORT_SYMBOL_GPL vmlinux 0x7f8a66fd genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x7f8af7ad ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0x7f8dc144 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x7f918f1b spi_async_locked EXPORT_SYMBOL_GPL vmlinux 0x7f979c34 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x7fa2223d srp_rport_add +EXPORT_SYMBOL_GPL vmlinux 0x7fa696d4 sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops EXPORT_SYMBOL_GPL vmlinux 0x7fc17b5c iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0x7fc516c6 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x7fcd6f34 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x7fdae0f9 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x7fe020fe regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x8006b8bc of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x800e5e71 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x7fe8d4f3 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x7ffccbc9 clk_hw_get_name EXPORT_SYMBOL_GPL vmlinux 0x801053d1 ata_sff_busy_sleep EXPORT_SYMBOL_GPL vmlinux 0x8014263a dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x802bb39c setfl +EXPORT_SYMBOL_GPL vmlinux 0x802de8bc xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x802ecd36 crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0x803347f6 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0x803b7c60 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x8052047a i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x8033fdd0 devlink_port_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x8072d229 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x80682e48 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x8068ce8c sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x806e608f regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x8082857e dev_pm_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x808bc2a2 usb_driver_claim_interface EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x8090b1a6 wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0x80915a38 mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0x80a1638b spi_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0x80b7e79e of_phy_put EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x8104de87 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x80e817cc __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x80f7b776 udp4_hwcsum EXPORT_SYMBOL_GPL vmlinux 0x810c5508 of_reserved_mem_device_init_by_name EXPORT_SYMBOL_GPL vmlinux 0x81117221 do_h_rpt_invalidate_prt +EXPORT_SYMBOL_GPL vmlinux 0x8113af25 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8113d9bb sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify EXPORT_SYMBOL_GPL vmlinux 0x81207d1a iommu_device_sysfs_add EXPORT_SYMBOL_GPL vmlinux 0x8134a00b nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x814086c1 nvdimm_has_flush EXPORT_SYMBOL_GPL vmlinux 0x81499716 to_software_node -EXPORT_SYMBOL_GPL vmlinux 0x814d79c1 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x814ea5f6 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x8152c0d0 ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable EXPORT_SYMBOL_GPL vmlinux 0x815a59c6 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x815d25d8 wm8350_gpio_config EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x816145a7 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x8165ca58 unregister_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x81674f78 btree_grim_visitor EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x8175c36c regulator_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence EXPORT_SYMBOL_GPL vmlinux 0x8191d075 ata_bmdma_post_internal_cmd EXPORT_SYMBOL_GPL vmlinux 0x81a6562c dw_pcie_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81e116fc early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x81d597cc devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x81e07d8c dax_iomap_fault EXPORT_SYMBOL_GPL vmlinux 0x81efd904 devm_request_pci_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x82082322 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x821eb17e skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x8200d73d stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x820e1b30 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x821dd2b4 inet6_destroy_sock EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x8232d783 evm_verifyxattr EXPORT_SYMBOL_GPL vmlinux 0x823be531 __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x82418f4f ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x826a3f53 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x82732008 gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0x8274c746 list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0x8281e3fb clockevents_unbind_device EXPORT_SYMBOL_GPL vmlinux 0x828ce2a5 fuse_dax_cancel_work EXPORT_SYMBOL_GPL vmlinux 0x829dc883 pm_generic_restore_early EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82b0174f device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map EXPORT_SYMBOL_GPL vmlinux 0x82c01ea6 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x82c52a5f devlink_param_publish -EXPORT_SYMBOL_GPL vmlinux 0x82c5f319 spi_res_alloc +EXPORT_SYMBOL_GPL vmlinux 0x82c11205 tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82e2901e device_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x82eac3fd dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x82f2c9ea switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x82f358a1 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x82f5c9dd lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x8300023b trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x830cc4b3 cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0x830e8e17 rhltable_init EXPORT_SYMBOL_GPL vmlinux 0x83116f1c vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0x8315abcc devlink_dpipe_table_resource_set EXPORT_SYMBOL_GPL vmlinux 0x831736fb sysfs_create_mount_point EXPORT_SYMBOL_GPL vmlinux 0x832c167b pci_check_and_unmask_intx EXPORT_SYMBOL_GPL vmlinux 0x83357d51 devm_clk_get_enabled EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind EXPORT_SYMBOL_GPL vmlinux 0x833b5211 mce_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x833d61a2 netdev_rx_handler_unregister EXPORT_SYMBOL_GPL vmlinux 0x83447d76 __clocksource_register_scale EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x834a5a45 ethnl_cable_test_fault_length -EXPORT_SYMBOL_GPL vmlinux 0x834b65ce fwnode_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0x8354a499 rio_mport_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x83723785 __traceiter_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x83743837 hash__has_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x83806d7c gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0x8392ecca tpm2_get_cc_attrs_tbl EXPORT_SYMBOL_GPL vmlinux 0x8399bbb9 pinctrl_pm_select_default_state EXPORT_SYMBOL_GPL vmlinux 0x839ce7db of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x83aaa3c5 acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0x83addc24 of_pci_address_to_resource EXPORT_SYMBOL_GPL vmlinux 0x83b3ea8d gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x83b4cefc netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x83b4667d devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x83b6b3f1 alarm_forward_now EXPORT_SYMBOL_GPL vmlinux 0x83bf396c of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x83c56b2e bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x83e00b44 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x83bfdd0f gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x83c1ba0c dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x83f93edc ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x8403f613 regulator_get_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x8405d752 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8408bdde sdio_align_size EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x84147d91 crypto_stats_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x841bb01e vring_new_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype EXPORT_SYMBOL_GPL vmlinux 0x84270e31 rio_attach_device EXPORT_SYMBOL_GPL vmlinux 0x84312360 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x843371a9 __traceiter_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x844c2f3d vfio_spapr_pci_eeh_release +EXPORT_SYMBOL_GPL vmlinux 0x844df970 ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno EXPORT_SYMBOL_GPL vmlinux 0x8450a6cf create_signature +EXPORT_SYMBOL_GPL vmlinux 0x8453cb37 skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x845f20c0 rq_flush_dcache_pages EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x847588e1 fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0x847ea089 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x846fec38 devlink_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0x8487e3c8 sysfs_remove_group EXPORT_SYMBOL_GPL vmlinux 0x8491a03e dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8492fd19 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x84a291da devm_device_add_group EXPORT_SYMBOL_GPL vmlinux 0x84a806cf xhci_suspend EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84afb614 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x84b0e85d skb_segment EXPORT_SYMBOL_GPL vmlinux 0x84bb1bef mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x84c3a58b regmap_exit EXPORT_SYMBOL_GPL vmlinux 0x84c4815d __mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x84d9b54a screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x84e33637 cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0x84e78e2d pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x84e8f168 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x84ea3228 cpufreq_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x84f4aa6c crypto_stats_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x84f57b77 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x84f91be1 tcp_ca_openreq_child EXPORT_SYMBOL_GPL vmlinux 0x84fe2e8b anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x8500f033 devlink_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0x8502928a usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x8504974f sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x8508b3ae noop_invalidatepage EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x854024ad clk_hw_set_parent EXPORT_SYMBOL_GPL vmlinux 0x85475cb5 device_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0x85484fe8 register_kretprobe EXPORT_SYMBOL_GPL vmlinux 0x854d24e4 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x854d3548 __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x854fa6bd spi_mem_default_supports_op EXPORT_SYMBOL_GPL vmlinux 0x85519dcb watchdog_notify_pretimeout EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x8557d83c xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x8558cc32 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x855b5543 dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0x855ca28f iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x855cc5d0 ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0x8571ead4 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x856ed08a ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x85799e90 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x857ec7c7 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x85828d23 br_fdb_test_addr_hook EXPORT_SYMBOL_GPL vmlinux 0x858600ca pci_hp_deregister EXPORT_SYMBOL_GPL vmlinux 0x85a528c7 pci_vfs_assigned EXPORT_SYMBOL_GPL vmlinux 0x85b4f55e xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x85c6cdc3 fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x85cdc67d proc_dou8vec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x85e375bb phy_driver_is_genphy_10g EXPORT_SYMBOL_GPL vmlinux 0x85f3b505 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x85f3fef2 ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0x86087056 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x8611459e __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x86114af6 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x861727aa wakeup_source_unregister EXPORT_SYMBOL_GPL vmlinux 0x86223484 pnv_ocxl_map_xsl_regs EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array EXPORT_SYMBOL_GPL vmlinux 0x8639fd83 tpm_calc_ordinal_duration EXPORT_SYMBOL_GPL vmlinux 0x863f8c64 extcon_sync EXPORT_SYMBOL_GPL vmlinux 0x864017bd devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x865457d1 wakeup_source_remove EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x865c5881 task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x865d84c8 relay_close EXPORT_SYMBOL_GPL vmlinux 0x865fed3a input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0x866a6db9 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x86714889 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x867346b7 udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0x86866efa __clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868842a1 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x86a996a5 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x86aef462 lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create EXPORT_SYMBOL_GPL vmlinux 0x86c10f6e bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x86c54e25 ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x86cd1acc bus_get_device_klist EXPORT_SYMBOL_GPL vmlinux 0x86d0c8fd regulator_enable_regmap EXPORT_SYMBOL_GPL vmlinux 0x86dcaab0 of_irq_find_parent EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto EXPORT_SYMBOL_GPL vmlinux 0x86e2c2ad serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x86e59d6b clk_register EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f6c39e usb_autopm_get_interface_async EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x87067625 vas_register_api_powernv EXPORT_SYMBOL_GPL vmlinux 0x8716c0b4 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x87180db0 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x872faed6 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x87337e63 regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0x87369052 dev_pm_opp_remove_all_dynamic EXPORT_SYMBOL_GPL vmlinux 0x873ddcea rio_add_net EXPORT_SYMBOL_GPL vmlinux 0x873eefff pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8741299d ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x8746b9ea crypto_stats_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x874ab7ca genphy_c45_read_mdix EXPORT_SYMBOL_GPL vmlinux 0x87517a2c dev_attr_sw_activity EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table EXPORT_SYMBOL_GPL vmlinux 0x87664168 pci_vpd_alloc -EXPORT_SYMBOL_GPL vmlinux 0x87736e2b generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x8779691e crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0x877c5a64 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x878c88ab ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0x8795e7d7 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x879da41b spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x87a219fc i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x87e66978 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x87f489bd sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x87a0ec32 devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x87b94b43 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x87d5c03b vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0x87f77435 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x88293b76 ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0x882d0525 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x88362c32 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x8815ba5b xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x88356e13 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8849bbbb nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit EXPORT_SYMBOL_GPL vmlinux 0x88639899 debugfs_create_u32 EXPORT_SYMBOL_GPL vmlinux 0x88667239 mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x886860b1 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x887fe8f1 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x886be575 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x887d5203 sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0x8883adcf nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x88871e8e of_usb_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x88879dc5 __class_register EXPORT_SYMBOL_GPL vmlinux 0x888a4589 devm_pm_runtime_enable EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer EXPORT_SYMBOL_GPL vmlinux 0x889120b5 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x8895ffec ata_sas_port_init EXPORT_SYMBOL_GPL vmlinux 0x8896df7d mm_unaccount_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0x889c754d genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x88a0c810 skcipher_alloc_instance_simple EXPORT_SYMBOL_GPL vmlinux 0x88a973d3 nd_blk_memremap_flags EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88c260f9 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x88d3ba4c clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x88db32db ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x88dcbe40 clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x88e87ddb dax_supported EXPORT_SYMBOL_GPL vmlinux 0x88f2f93e posix_acl_default_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0x88f435d3 securityfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0x88f4492c iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x88f729d8 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x88ff9bee devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x8900303d cpufreq_cpu_get_raw EXPORT_SYMBOL_GPL vmlinux 0x89019f8a devm_gpiod_get_from_of_node EXPORT_SYMBOL_GPL vmlinux 0x89031a8a usb_altnum_to_altsetting EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x891c1d80 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x892252f1 devm_pm_opp_of_add_table EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state EXPORT_SYMBOL_GPL vmlinux 0x89286561 __percpu_down_read @@ -21742,81 +21770,89 @@ EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x895dbd5f __clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0x8968bd32 kthread_mod_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x896af58e iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x896e3c49 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x8993a4cd get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x897511e0 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x898012d8 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x8990d127 __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0x899a039f vfio_device_get_from_dev EXPORT_SYMBOL_GPL vmlinux 0x89a5b4d2 da903x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x89ab1cfc register_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x89bb9dcb tcp_get_info EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify EXPORT_SYMBOL_GPL vmlinux 0x89c13a31 led_trigger_read EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x89c65f3f aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0x89caf6f3 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x89d16d18 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x89d30eb9 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x89e48daa crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x89fbcd0a sched_trace_cfs_rq_avg EXPORT_SYMBOL_GPL vmlinux 0x8a094793 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x8a15a755 ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0x8a175457 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x8a177ce9 inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0x8a1a631d fat_attach EXPORT_SYMBOL_GPL vmlinux 0x8a24fa53 extcon_get_state EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low EXPORT_SYMBOL_GPL vmlinux 0x8a40034d debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x8a45e9d0 icc_enable EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP EXPORT_SYMBOL_GPL vmlinux 0x8a470108 dev_pm_opp_set_rate EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a5bd5df trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop EXPORT_SYMBOL_GPL vmlinux 0x8a664141 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x8a777bc2 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a67fa75 nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a845fcd device_del EXPORT_SYMBOL_GPL vmlinux 0x8a9dbcad opal_message_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x8aabb020 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x8aaca0b2 kill_device +EXPORT_SYMBOL_GPL vmlinux 0x8ab1a133 mmc_regulator_enable_vqmmc EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ae7ad60 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x8ad43541 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x8ad52430 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x8ad7b294 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x8addf22f wm8350_reg_write EXPORT_SYMBOL_GPL vmlinux 0x8b032cb8 iomap_fiemap EXPORT_SYMBOL_GPL vmlinux 0x8b05ecc8 copro_flush_all_slbs +EXPORT_SYMBOL_GPL vmlinux 0x8b09f97e sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0x8b12c78d transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b14ccd0 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8b151159 ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x8b1887b3 dev_pm_set_dedicated_wake_irq_reverse EXPORT_SYMBOL_GPL vmlinux 0x8b363c17 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0x8b3d5bbb fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x8b3ad4f7 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x8b3b0634 gpiod_count EXPORT_SYMBOL_GPL vmlinux 0x8b40defb __fput_sync EXPORT_SYMBOL_GPL vmlinux 0x8b4100aa rhashtable_walk_next EXPORT_SYMBOL_GPL vmlinux 0x8b487f00 trace_seq_vprintf EXPORT_SYMBOL_GPL vmlinux 0x8b4b33c0 dma_run_dependencies EXPORT_SYMBOL_GPL vmlinux 0x8b50825c of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x8b5cf1d4 dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0x8b6c761a __xive_enabled EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x8b7aabbc __pm_relax EXPORT_SYMBOL_GPL vmlinux 0x8b7c51ba devfreq_event_get_edev_count EXPORT_SYMBOL_GPL vmlinux 0x8b7eb596 iommu_device_sysfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x8b84aa7b device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x8b8c1d02 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x8b94c93a devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x8be27e54 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x8bf6897d regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8b9e3fd6 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x8b9e8bd6 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x8ba23d68 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8ba666ca crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x8bcb67d6 thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c02d38d clk_fixed_rate_ops EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c130ddb spi_controller_resume EXPORT_SYMBOL_GPL vmlinux 0x8c1b4178 eeh_pe_state_mark +EXPORT_SYMBOL_GPL vmlinux 0x8c1f107a perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0x8c2fbbc2 extcon_set_state_sync EXPORT_SYMBOL_GPL vmlinux 0x8c3dcbf6 gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x8c55175e perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x8c4c3d85 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x8c5fda13 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x8c63ca74 gpiod_set_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c88765f inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off EXPORT_SYMBOL_GPL vmlinux 0x8c8ef129 pinconf_generic_dt_node_to_map EXPORT_SYMBOL_GPL vmlinux 0x8c9a36e2 bio_add_zone_append_page EXPORT_SYMBOL_GPL vmlinux 0x8cc24a9f usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x8cd537ee scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x8cc32bc3 dev_fwnode EXPORT_SYMBOL_GPL vmlinux 0x8cd94f86 pernet_ops_rwsem EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x8ceaac13 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x8ce52a60 rtnl_get_net_ns_capable EXPORT_SYMBOL_GPL vmlinux 0x8cf273fa pci_enable_rom EXPORT_SYMBOL_GPL vmlinux 0x8cf2cb1c rio_map_outb_region EXPORT_SYMBOL_GPL vmlinux 0x8cf8c00f of_usb_update_otg_caps @@ -21829,132 +21865,129 @@ EXPORT_SYMBOL_GPL vmlinux 0x8d1b3b59 pnv_ocxl_get_pasid_count EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x8d46774e dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0x8d4e993a gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0x8d5e4f75 devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x8d6dc201 ppc64_caches +EXPORT_SYMBOL_GPL vmlinux 0x8d745946 sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0x8d77a533 pinctrl_utils_add_map_mux EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d803492 fixed_phy_register_with_gpiod EXPORT_SYMBOL_GPL vmlinux 0x8d919e3b vfio_pci_core_finish_enable EXPORT_SYMBOL_GPL vmlinux 0x8d9a3910 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x8da02fcf sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0x8da04bb9 dev_pm_opp_find_freq_ceil EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline -EXPORT_SYMBOL_GPL vmlinux 0x8dc5f154 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8dc9cf23 ping_bind EXPORT_SYMBOL_GPL vmlinux 0x8dce32fd virtqueue_add_outbuf EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8dde5e77 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x8dd340aa dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x8deec1c6 ata_scsi_slave_destroy EXPORT_SYMBOL_GPL vmlinux 0x8df51555 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0x8df63418 metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0x8e0211c2 watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x8e0fcbcc virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x8e287373 sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0x8e2e2f74 xas_split +EXPORT_SYMBOL_GPL vmlinux 0x8e30b55f ata_port_wait_eh EXPORT_SYMBOL_GPL vmlinux 0x8e435084 extcon_set_property EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x8e4994e8 devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free EXPORT_SYMBOL_GPL vmlinux 0x8e515ac6 icst_clk_register EXPORT_SYMBOL_GPL vmlinux 0x8e52101a iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x8e52ed47 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x8e5423c1 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x8e55271e mmc_pwrseq_unregister EXPORT_SYMBOL_GPL vmlinux 0x8e574294 pci_epc_raise_irq EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count EXPORT_SYMBOL_GPL vmlinux 0x8e6c17e9 key_type_asymmetric EXPORT_SYMBOL_GPL vmlinux 0x8e6fca06 pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x8e706bd1 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x8e708824 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x8e876d74 __traceiter_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x8e8b2f3d max8997_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8eaa282b devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x8ea41ed8 regulator_set_current_limit EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse EXPORT_SYMBOL_GPL vmlinux 0x8eaf9db7 pinctrl_generic_get_group EXPORT_SYMBOL_GPL vmlinux 0x8eb62ea9 dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x8ec8bb66 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x8ed28b43 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x8ed67713 gpiod_get_direction 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 0x8effe5e1 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x8f005888 clk_hw_round_rate EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0c860b cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0x8f12e613 ata_scsi_slave_config EXPORT_SYMBOL_GPL vmlinux 0x8f1e4fcb regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x8f1fcd02 udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0x8f2efbf6 pnv_ocxl_get_xsl_irq +EXPORT_SYMBOL_GPL vmlinux 0x8f35923b shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x8f539743 get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x8f567f62 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x8f6c9841 gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x8f6fb0ba vfio_register_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0x8f72c5ec vfs_read EXPORT_SYMBOL_GPL vmlinux 0x8f75891a pci_hp_remove_module_link EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f7bdadc __put_net EXPORT_SYMBOL_GPL vmlinux 0x8f83638e housekeeping_cpumask EXPORT_SYMBOL_GPL vmlinux 0x8f8ac4b2 blk_mq_sched_mark_restart_hctx EXPORT_SYMBOL_GPL vmlinux 0x8f968c48 nvdimm_security_setup_events EXPORT_SYMBOL_GPL vmlinux 0x8f97e79c pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x8faa1141 fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0x8fb04d68 pnv_ocxl_spa_release EXPORT_SYMBOL_GPL vmlinux 0x8fbdedce ata_sff_prereset EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group EXPORT_SYMBOL_GPL vmlinux 0x8fc7d729 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x8fcb189e gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x8fccef59 cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ffbf06c __devm_spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x8ffd0069 bdev_disk_changed EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x900db3ab i2c_generic_scl_recovery EXPORT_SYMBOL_GPL vmlinux 0x90142ded handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x9032dde6 skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x9034c6a3 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x903acd93 skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903e2529 mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0x90477a8c spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x9067ed7f switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x903d4623 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x90553165 crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x9071c6ad cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x907bd7de debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x907df001 sched_set_normal EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes EXPORT_SYMBOL_GPL vmlinux 0x90ae58f2 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x90b941b8 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x90c9fbb3 switchdev_handle_fdb_add_to_device EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x9108f7da devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0x910d4738 devm_usb_get_phy_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x911d18ae dev_pm_opp_of_cpumask_add_table EXPORT_SYMBOL_GPL vmlinux 0x9122259b __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0x91921cd5 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x9193deaf pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x9130b8b1 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x91574699 crypto_stats_akcipher_sign EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x91a100f5 pci_hp_add EXPORT_SYMBOL_GPL vmlinux 0x91a9ca65 sysfs_group_change_owner EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91b8160e skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x91c26db4 mdiobus_modify EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91cebfa4 __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x91d80303 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0x91e0d18b fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean EXPORT_SYMBOL_GPL vmlinux 0x91f1a7cc iommu_release_ownership -EXPORT_SYMBOL_GPL vmlinux 0x92090259 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x91fd5ba4 cxl_afu_get +EXPORT_SYMBOL_GPL vmlinux 0x91fea14a sdio_enable_func EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl EXPORT_SYMBOL_GPL vmlinux 0x9211524a mpc8xxx_spi_rx_buf_u32 EXPORT_SYMBOL_GPL vmlinux 0x9212aa83 ata_sff_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x921543ef tpm_get_random EXPORT_SYMBOL_GPL vmlinux 0x921e5e97 bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0x921f38a0 devlink_port_register EXPORT_SYMBOL_GPL vmlinux 0x92238bcb xas_find_marked EXPORT_SYMBOL_GPL vmlinux 0x922e6955 sbitmap_queue_show EXPORT_SYMBOL_GPL vmlinux 0x92382f3c nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0x923bb127 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x923bf2ad spi_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x92498e31 device_show_int EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9267cd08 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x92571f5f spi_controller_suspend EXPORT_SYMBOL_GPL vmlinux 0x9269a509 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x9269df1a devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x9278b9ed gpiod_is_active_low EXPORT_SYMBOL_GPL vmlinux 0x9279b081 edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0x928997b6 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9286cb9c crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0x928f4e7d relay_open EXPORT_SYMBOL_GPL vmlinux 0x92a13e8e __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x92a60599 shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0x92aa373b idr_alloc_u32 EXPORT_SYMBOL_GPL vmlinux 0x92b38155 dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0x92ba1858 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x92b95152 nf_route EXPORT_SYMBOL_GPL vmlinux 0x92c925fb xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x92cfde7c icc_nodes_remove EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add EXPORT_SYMBOL_GPL vmlinux 0x92d80f45 decrypt_blob EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read @@ -21963,54 +21996,59 @@ EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work EXPORT_SYMBOL_GPL vmlinux 0x92f0aa28 opal_tpo_write EXPORT_SYMBOL_GPL vmlinux 0x92f88587 nd_cmd_out_size EXPORT_SYMBOL_GPL vmlinux 0x93016c77 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x93050cbf ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0x93090d3d driver_for_each_device 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 0x933b4be3 ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0x934a0aee kvmppc_subcore_exit_guest EXPORT_SYMBOL_GPL vmlinux 0x934a1357 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x9354acf4 ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x9362ba63 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9374db24 seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0x9385ca85 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x938aea56 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x9390e692 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x93964310 devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x93a5441b blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x93b838fe gpiochip_irq_map EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93ce5dc3 wwan_unregister_ops -EXPORT_SYMBOL_GPL vmlinux 0x93d92351 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x93dc4f98 sdio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report EXPORT_SYMBOL_GPL vmlinux 0x93f0c916 fb_deferred_io_open EXPORT_SYMBOL_GPL vmlinux 0x93f2de8f sbitmap_weight EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap EXPORT_SYMBOL_GPL vmlinux 0x94037469 cpufreq_freq_attr_scaling_available_freqs EXPORT_SYMBOL_GPL vmlinux 0x9406bac2 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x9410abae fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x9415bb7b device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x94100f79 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put EXPORT_SYMBOL_GPL vmlinux 0x942029dc nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x9423f88a gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0x94256533 sysfs_create_files EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x94307d3a xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x944a8f64 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x943fc520 bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0x945e5f81 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x94602eea devlink_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x94656128 __fscrypt_prepare_lookup EXPORT_SYMBOL_GPL vmlinux 0x9465b45e extcon_unregister_notifier_all EXPORT_SYMBOL_GPL vmlinux 0x9465b9cb mpic_subsys EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock EXPORT_SYMBOL_GPL vmlinux 0x946b9849 vmf_insert_pfn_pmd_prot EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x94824c0f get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x94704b3d i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x94730243 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x9483d331 __netpoll_cleanup EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949f5e94 gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a5800e icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x94acdd03 bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0x94b9757c tty_buffer_space_avail EXPORT_SYMBOL_GPL vmlinux 0x94bc6ee3 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x94ce6a1e ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x94d8e0ea dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x94c34470 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x94e6de0f crypto_spawn_tfm2 EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop EXPORT_SYMBOL_GPL vmlinux 0x94fae15d devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x94fd7012 security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0x94ff6cac dm_internal_suspend_fast EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread EXPORT_SYMBOL_GPL vmlinux 0x950e47f8 handle_fasteoi_irq @@ -22019,16 +22057,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit EXPORT_SYMBOL_GPL vmlinux 0x9529e376 bd_prepare_to_claim EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds EXPORT_SYMBOL_GPL vmlinux 0x95447ac2 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x954f04ab pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x95521297 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x95452903 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x9559e252 setfl EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x956ff4d8 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x95794c69 ip_valid_fib_dump_req EXPORT_SYMBOL_GPL vmlinux 0x95819975 bio_trim EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init -EXPORT_SYMBOL_GPL vmlinux 0x958d5b5b gpio_to_desc EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x95a221c3 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x95a83cb3 crypto_alloc_shash EXPORT_SYMBOL_GPL vmlinux 0x95a9bb23 phy_resolve_aneg_pause EXPORT_SYMBOL_GPL vmlinux 0x95ade473 of_property_read_u64 EXPORT_SYMBOL_GPL vmlinux 0x95b6fec4 xive_native_free_vp_block @@ -22036,88 +22075,86 @@ EXPORT_SYMBOL_GPL vmlinux 0x95b9ebd7 ata_sff_freeze EXPORT_SYMBOL_GPL vmlinux 0x95bb521d usb_add_hcd EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free EXPORT_SYMBOL_GPL vmlinux 0x95c7fe56 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x95c94467 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x95cb6639 __traceiter_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x95cc541d __devm_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x95cc67d0 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x95d0ba5b scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0x95e0e933 palmas_ext_control_req_config EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x95e91d4d net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x95f56c49 cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x960f2f84 user_read EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x962499e0 devm_regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x964d6282 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x964e05fe regulator_allow_bypass EXPORT_SYMBOL_GPL vmlinux 0x964e7cd4 dma_buf_unpin EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier EXPORT_SYMBOL_GPL vmlinux 0x9655e3c3 blk_req_zone_write_trylock EXPORT_SYMBOL_GPL vmlinux 0x9660f30d pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x9671b4b4 stmpe811_adc_common_init -EXPORT_SYMBOL_GPL vmlinux 0x9676649b crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x9675cc62 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x9677c104 sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0x96851a3a devm_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x9688f3b9 bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0x96ac3218 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x96b39b0b fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x96bc1140 __get_task_comm EXPORT_SYMBOL_GPL vmlinux 0x96bf336f irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x96c233a7 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x96c06503 pcibios_free_controller_deferred EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x96cb16e0 device_register EXPORT_SYMBOL_GPL vmlinux 0x96cc48b9 xive_native_default_eq_shift EXPORT_SYMBOL_GPL vmlinux 0x96cf784c vfio_group_iommu_domain +EXPORT_SYMBOL_GPL vmlinux 0x96eb59ed clk_hw_get_rate EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x97053efa smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x970da0b0 mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x9710431c __ata_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x971bdfb4 regmap_async_complete EXPORT_SYMBOL_GPL vmlinux 0x9724824d led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x972c499a crypto_stats_decompress EXPORT_SYMBOL_GPL vmlinux 0x973554d6 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x974e9e7f regulator_suspend_disable EXPORT_SYMBOL_GPL vmlinux 0x975049cc regulator_map_voltage_pickable_linear_range EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97558a2b regmap_attach_dev EXPORT_SYMBOL_GPL vmlinux 0x97645ab1 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x97671b49 stmpe_block_write EXPORT_SYMBOL_GPL vmlinux 0x976c3b16 iommu_uapi_cache_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x978555f9 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x978889a8 metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0x9795b021 mbox_chan_received_data EXPORT_SYMBOL_GPL vmlinux 0x9799e0b7 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x979a80e7 perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent EXPORT_SYMBOL_GPL vmlinux 0x97de3ed1 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x97e3eaa6 tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x97eb2144 serdev_device_set_baudrate EXPORT_SYMBOL_GPL vmlinux 0x97eb303b klp_enable_patch -EXPORT_SYMBOL_GPL vmlinux 0x9800551b wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x9805ffc1 clk_hw_get_rate EXPORT_SYMBOL_GPL vmlinux 0x980b6717 pnv_pci_get_slot_id EXPORT_SYMBOL_GPL vmlinux 0x980dff8d power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x980ebbde ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x98178e17 fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x982033db __devm_regmap_init_i2c EXPORT_SYMBOL_GPL vmlinux 0x98264c0d memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x98269732 eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0x9827bb4b pci_assign_unassigned_bridge_resources EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x98474a46 phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x9855a697 opal_xscom_read -EXPORT_SYMBOL_GPL vmlinux 0x9860d978 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x986358cb trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x9866cc15 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x98607965 crypto_unregister_aead EXPORT_SYMBOL_GPL vmlinux 0x986d5f43 da9052_adc_read_temp EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str EXPORT_SYMBOL_GPL vmlinux 0x9895f449 of_irq_get EXPORT_SYMBOL_GPL vmlinux 0x989b73b3 sbitmap_init_node EXPORT_SYMBOL_GPL vmlinux 0x98a57125 dax_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x98b04947 devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs EXPORT_SYMBOL_GPL vmlinux 0x98bc6ec1 phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x98c72427 tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0x98ca910b iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0x98d0ac82 device_for_each_child EXPORT_SYMBOL_GPL vmlinux 0x98ea05c0 pci_iomap_wc_range 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 0x9909f019 usb_for_each_port -EXPORT_SYMBOL_GPL vmlinux 0x9918bbad __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x99232e42 ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0x9927d7ee umd_load_blob EXPORT_SYMBOL_GPL vmlinux 0x99347c99 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x9946d1b4 trace_event_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x99490869 __kthread_init_worker EXPORT_SYMBOL_GPL vmlinux 0x994e1361 virtqueue_detach_unused_buf EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on @@ -22125,204 +22162,200 @@ EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg EXPORT_SYMBOL_GPL vmlinux 0x9986cabc hrtimer_init EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time EXPORT_SYMBOL_GPL vmlinux 0x99aa6cdd pci_find_bus_by_node -EXPORT_SYMBOL_GPL vmlinux 0x99baaf0e of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x99b3a509 netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x99ce1ecb clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x99d992b6 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x99d94a82 sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister EXPORT_SYMBOL_GPL vmlinux 0x99eac8ba __bio_crypt_clone EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99f5dfc6 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x99f55ef5 sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0x9a098651 usb_get_intf EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a122b04 __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x9a187a84 vfio_virqfd_enable -EXPORT_SYMBOL_GPL vmlinux 0x9a2ccd60 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x9a350b78 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x9a35ed2b sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x9a2c016f crypto_dequeue_request EXPORT_SYMBOL_GPL vmlinux 0x9a3af2b2 alloc_empty_file EXPORT_SYMBOL_GPL vmlinux 0x9a41c850 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x9a4950f2 __traceiter_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x9a4de20f phy_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x9a5a00ff devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x9a65cc89 filemap_range_needs_writeback -EXPORT_SYMBOL_GPL vmlinux 0x9a6b1c6a regulator_get_error_flags EXPORT_SYMBOL_GPL vmlinux 0x9a6dd745 kobj_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x9a722440 ata_bmdma_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x9a73bde9 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x9a88f0e4 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x9a9aa300 __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0x9a9dc431 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x9aa13815 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x9aae88ac mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x9a9ef50e xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x9aa1275f inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x9aaf3af3 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x9aafcac3 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x9ab3a083 pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0x9abedebb of_devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops EXPORT_SYMBOL_GPL vmlinux 0x9ad7462b devfreq_event_enable_edev EXPORT_SYMBOL_GPL vmlinux 0x9adf08c3 mmu_linear_psize EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af05b41 regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw EXPORT_SYMBOL_GPL vmlinux 0x9af61b3d irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x9b060869 lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0x9b130ca5 h_query_vas_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x9b367257 thermal_zone_bind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x9b3bf40b fsverity_file_open EXPORT_SYMBOL_GPL vmlinux 0x9b449447 generic_device_group EXPORT_SYMBOL_GPL vmlinux 0x9b472c83 pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0x9b501608 sched_trace_rq_avg_dl EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b634e9e regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9b8046ad crypto_stats_get EXPORT_SYMBOL_GPL vmlinux 0x9b84289a pci_scan_child_bus EXPORT_SYMBOL_GPL vmlinux 0x9b85e0cf __reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x9b86a65a spi_split_transfers_maxsize EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill EXPORT_SYMBOL_GPL vmlinux 0x9b8d0fc9 rio_mport_get_feature EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b90a8d8 class_dev_iter_next EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b92d6d9 vas_tx_win_open EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array EXPORT_SYMBOL_GPL vmlinux 0x9ba9f2f3 genphy_c45_check_and_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x9bb0760b pci_remove_device_node_info EXPORT_SYMBOL_GPL vmlinux 0x9bc3dcbb pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x9bc80b87 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x9bcf0532 gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled EXPORT_SYMBOL_GPL vmlinux 0x9bd11561 wm831x_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x9bddd842 rt_mutex_lock_interruptible EXPORT_SYMBOL_GPL vmlinux 0x9bde79bc xive_tima_os -EXPORT_SYMBOL_GPL vmlinux 0x9be167b0 regulator_bulk_force_disable EXPORT_SYMBOL_GPL vmlinux 0x9be267a1 md_find_rdev_nr_rcu EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range EXPORT_SYMBOL_GPL vmlinux 0x9be41d03 led_trigger_register_simple EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui EXPORT_SYMBOL_GPL vmlinux 0x9bf396da percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x9bfb7e52 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9c089286 __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x9c31fe1a da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x9c478299 tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0x9c51561b blk_mq_sched_try_insert_merge EXPORT_SYMBOL_GPL vmlinux 0x9c5b4e7e devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x9c5ef4e8 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x9c5e8830 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9c62ee94 devlink_port_params_register EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c71e74c clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x9c708f24 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x9c713b0d regmap_read EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on EXPORT_SYMBOL_GPL vmlinux 0x9c8905ab regulator_set_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0x9c8e8aa0 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cb0da54 devlink_port_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x9cb4d285 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x9cbcaeff ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x9cb9dd8e tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0x9cc046f3 linear_hugepage_index EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier EXPORT_SYMBOL_GPL vmlinux 0x9cc6abcb dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x9cf1ff44 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x9ce37bf7 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9d03f593 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x9cf8aacb crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d1ce964 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x9d0b718b ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x9d1d01c6 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x9d286e42 platform_device_add_resources EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x9d340c7a hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x9d363722 __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x9d3cbb0e devm_of_platform_populate EXPORT_SYMBOL_GPL vmlinux 0x9d4271bf xhci_update_hub_device -EXPORT_SYMBOL_GPL vmlinux 0x9d57b705 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0x9d7d7b8e devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x9d9101f0 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x9d940d26 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x9d4b4bb1 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x9d769a72 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9d7e1656 __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x9dad4fc6 iommu_tce_table_get EXPORT_SYMBOL_GPL vmlinux 0x9dba5286 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x9dd62e13 ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x9de618b6 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9decddb3 mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0x9e097d0b blocking_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x9e099308 dma_buf_get EXPORT_SYMBOL_GPL vmlinux 0x9e101d8d rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x9e1b7702 security_path_chown EXPORT_SYMBOL_GPL vmlinux 0x9e392588 usb_role_switch_register EXPORT_SYMBOL_GPL vmlinux 0x9e3d7527 watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x9e40e800 of_clk_parent_fill EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field EXPORT_SYMBOL_GPL vmlinux 0x9e4af3be of_reserved_mem_device_init_by_idx EXPORT_SYMBOL_GPL vmlinux 0x9e4d8adc __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x9e4ec240 switchdev_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x9e51ad42 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x9e732870 device_remove_properties EXPORT_SYMBOL_GPL vmlinux 0x9e7a0640 usb_string EXPORT_SYMBOL_GPL vmlinux 0x9e82c258 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x9e8f7971 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x9e93f8f3 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x9e9a8d99 ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x9eb7f057 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x9e9ddcc3 proc_create_net_data EXPORT_SYMBOL_GPL vmlinux 0x9ec1f364 kvmppc_subcore_enter_guest +EXPORT_SYMBOL_GPL vmlinux 0x9ed4b557 regulator_get EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier EXPORT_SYMBOL_GPL vmlinux 0x9edce279 cpuidle_get_cpu_driver EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9ef58bc5 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9f03e9a6 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0x9f1b038a crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x9ef1019f ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x9f08da10 gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0x9f39e09b bus_unregister EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns EXPORT_SYMBOL_GPL vmlinux 0x9f4eee0c badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0x9f53e6b8 regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x9f56f936 ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0x9f57a0bd soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x9f5922aa crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x9f5955cc dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check EXPORT_SYMBOL_GPL vmlinux 0x9f5c8338 genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0x9f5ebc7c pwm_free EXPORT_SYMBOL_GPL vmlinux 0x9f746cae iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x9fa66134 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x9f8c7b05 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9fcd9b67 fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9fed03f4 blk_trace_setup EXPORT_SYMBOL_GPL vmlinux 0x9ff54ae5 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x9ffcf2db crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xa00399e0 ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0xa0064958 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xa006bd95 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xa00802b0 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xa00dc36d gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa01fd48f gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0xa0209e42 device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0xa02a8f2b netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa03ccc26 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xa04f3b91 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xa0444858 crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async EXPORT_SYMBOL_GPL vmlinux 0xa08337ed btree_init -EXPORT_SYMBOL_GPL vmlinux 0xa088abb8 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xa089164b l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xa0a28d87 strp_stop -EXPORT_SYMBOL_GPL vmlinux 0xa0a54197 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa08dcd07 kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0xa0ad8f3f usb_deregister EXPORT_SYMBOL_GPL vmlinux 0xa0b87fc9 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0xa0c19c37 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xa0c3e91e perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0xa0c9067b devlink_remote_reload_actions_performed EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0d53fb5 thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0xa0f7d60b blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xa1092370 ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0xa11289e5 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xa1135a67 devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xa127ea9d regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa12a5e73 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xa1375866 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xa1201aa3 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xa1243a74 ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xa13b2962 pnv_ocxl_tlb_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xa1458f39 perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0xa145e757 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa14701cd security_file_permission EXPORT_SYMBOL_GPL vmlinux 0xa1474e62 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xa147754c vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xa14b00a9 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xa14f3cfc regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xa1575ae6 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xa18154ad devlink_resource_register EXPORT_SYMBOL_GPL vmlinux 0xa183c559 devm_gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0xa184d5f2 mmu_vmalloc_psize -EXPORT_SYMBOL_GPL vmlinux 0xa19b98db crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0xa1a88fa5 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xa1a6069e regulator_enable EXPORT_SYMBOL_GPL vmlinux 0xa1b2bc4d badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0xa1b771db crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xa1bda4a3 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xa1c18856 device_add EXPORT_SYMBOL_GPL vmlinux 0xa1c77d0f pinctrl_generic_add_group -EXPORT_SYMBOL_GPL vmlinux 0xa1d73705 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xa1cd126b platform_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing EXPORT_SYMBOL_GPL vmlinux 0xa1dbb104 __kthread_should_park EXPORT_SYMBOL_GPL vmlinux 0xa1e237db mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1ed3930 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xa1f477a1 nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk EXPORT_SYMBOL_GPL vmlinux 0xa21a4e36 serial8250_do_set_divisor EXPORT_SYMBOL_GPL vmlinux 0xa224faa9 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xa2378f05 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xa23ac8ef crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xa24eeafd crypto_shash_finup EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0xa25d2ddd cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0xa26340e2 key_type_trusted EXPORT_SYMBOL_GPL vmlinux 0xa2686fd8 thermal_zone_of_get_sensor_id EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2766de4 of_i2c_setup_smbus_alert EXPORT_SYMBOL_GPL vmlinux 0xa28cd8bc fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xa28d80b7 nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0xa295afd5 list_lru_destroy EXPORT_SYMBOL_GPL vmlinux 0xa298af95 xive_native_get_queue_info EXPORT_SYMBOL_GPL vmlinux 0xa299d1db __percpu_init_rwsem @@ -22331,24 +22364,23 @@ EXPORT_SYMBOL_GPL vmlinux 0xa2afa514 devm_namespace_disable EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers EXPORT_SYMBOL_GPL vmlinux 0xa2f067f3 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xa2fbd16e bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xa30a6498 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0xa30e0edd devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa2ff5e9e __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xa316e8b9 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0xa331e219 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xa33d383a regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xa31a3b6f sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xa31fed91 pwm_adjust_config EXPORT_SYMBOL_GPL vmlinux 0xa33d91a8 btree_get_prev EXPORT_SYMBOL_GPL vmlinux 0xa340afe0 usb_autopm_get_interface_no_resume EXPORT_SYMBOL_GPL vmlinux 0xa352c760 to_of_pinfo EXPORT_SYMBOL_GPL vmlinux 0xa354fa27 irq_set_chip_and_handler_name EXPORT_SYMBOL_GPL vmlinux 0xa368aa16 xhci_drop_endpoint EXPORT_SYMBOL_GPL vmlinux 0xa36be6b2 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xa36d08e3 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xa36e5d9c platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted EXPORT_SYMBOL_GPL vmlinux 0xa3844f6d led_trigger_set_default EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue EXPORT_SYMBOL_GPL vmlinux 0xa38999a0 usb_alloc_urb EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa38a16d8 skb_gso_validate_mac_len EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 EXPORT_SYMBOL_GPL vmlinux 0xa39d81fa tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 @@ -22356,9 +22388,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range EXPORT_SYMBOL_GPL vmlinux 0xa3ac1cd6 pci_epc_get_msi EXPORT_SYMBOL_GPL vmlinux 0xa3b56555 hpte_page_sizes EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3c2cb93 shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0xa3c998a0 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa3c9c8e7 devm_device_remove_group EXPORT_SYMBOL_GPL vmlinux 0xa3ce4a98 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xa3df86b8 ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0xa3e0205d pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor @@ -22366,64 +22399,66 @@ EXPORT_SYMBOL_GPL vmlinux 0xa4019e75 __blk_req_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port EXPORT_SYMBOL_GPL vmlinux 0xa4035f6d nvdimm_provider_data EXPORT_SYMBOL_GPL vmlinux 0xa40f3bb8 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xa40f5be8 ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa4185289 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xa413cf0a crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0xa430af08 kthread_flush_work EXPORT_SYMBOL_GPL vmlinux 0xa4330e2e pm_clk_init EXPORT_SYMBOL_GPL vmlinux 0xa442083c tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa4571c95 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xa45723e0 sdio_writeb_readb EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa467184a init_uts_ns EXPORT_SYMBOL_GPL vmlinux 0xa4695e7e dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0xa46c0a13 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xa47b050c pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xa47cfe10 scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx EXPORT_SYMBOL_GPL vmlinux 0xa483dc8e max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xa48612fa of_css +EXPORT_SYMBOL_GPL vmlinux 0xa4a75f73 vfs_kern_mount EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite EXPORT_SYMBOL_GPL vmlinux 0xa4ba71e2 rio_lock_device EXPORT_SYMBOL_GPL vmlinux 0xa4bb2f7e eeh_pe_inject_err -EXPORT_SYMBOL_GPL vmlinux 0xa4bdfdbe icc_sync_state EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis EXPORT_SYMBOL_GPL vmlinux 0xa4c31ace led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xa4cae7e3 of_clk_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0xa4e2db93 irq_chip_set_type_parent EXPORT_SYMBOL_GPL vmlinux 0xa4e9304c bsg_remove_queue EXPORT_SYMBOL_GPL vmlinux 0xa4eac9ce da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xa4ec762a rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa4ee13fd ping_get_port EXPORT_SYMBOL_GPL vmlinux 0xa4f3243c vfio_pci_core_disable EXPORT_SYMBOL_GPL vmlinux 0xa4fc1323 da903x_writes EXPORT_SYMBOL_GPL vmlinux 0xa4ff9790 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa4ff9990 cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0xa5149b6d cpu_add_dev_attr EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa5433352 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa545f39e tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0xa5482eca usb_set_configuration EXPORT_SYMBOL_GPL vmlinux 0xa54bcc72 devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xa55637e0 devlink_reload_enable +EXPORT_SYMBOL_GPL vmlinux 0xa54ecf17 cxl_afu_put EXPORT_SYMBOL_GPL vmlinux 0xa56886bc dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0xa56ae303 ata_host_register EXPORT_SYMBOL_GPL vmlinux 0xa57f19c5 fscrypt_ioctl_get_nonce EXPORT_SYMBOL_GPL vmlinux 0xa5833375 dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0xa59001a9 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa598e573 ping_close -EXPORT_SYMBOL_GPL vmlinux 0xa5a5a71d devlink_params_unpublish EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq -EXPORT_SYMBOL_GPL vmlinux 0xa5c2a5a4 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xa5d3d437 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xa5b03be3 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xa5c3059f __sync_filesystem EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name EXPORT_SYMBOL_GPL vmlinux 0xa5ef6344 of_get_required_opp_performance_state EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa60252bf devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xa602bc29 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa604cab1 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xa60763fc device_add_properties EXPORT_SYMBOL_GPL vmlinux 0xa613d599 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xa6146d81 sched_trace_cfs_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa626d84b __traceiter_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0xa63a0660 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xa64bd8e9 lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0xa64cc259 __pci_hp_initialize EXPORT_SYMBOL_GPL vmlinux 0xa65038c9 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0xa65ce9b2 ata_sas_port_stop EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xa6628df4 xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xa66a2d4b __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa676d725 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xa679c6af sdio_memcpy_fromio EXPORT_SYMBOL_GPL vmlinux 0xa68218eb of_platform_default_populate EXPORT_SYMBOL_GPL vmlinux 0xa68f18e6 iommu_take_ownership EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name @@ -22432,159 +22467,138 @@ EXPORT_SYMBOL_GPL vmlinux 0xa6a66e8e fat_search_long EXPORT_SYMBOL_GPL vmlinux 0xa6ae9e1c dm_report_zones EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xa6b089e7 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0xa6b0ffa3 devres_for_each_res EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b5884c xfrm_output_resume EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xa6cde8a7 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xa6d03f1c ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0xa6d1e06f splpar_spin_yield -EXPORT_SYMBOL_GPL vmlinux 0xa6d57198 gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0xa6dde540 mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6eb169e trace_event_buffer_reserve EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa70016ca __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xa704535d ata_pci_device_do_suspend EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa714d19e gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0xa73a6aa5 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa746682c devm_platform_ioremap_resource_byname EXPORT_SYMBOL_GPL vmlinux 0xa746bf57 unregister_cxl_calls -EXPORT_SYMBOL_GPL vmlinux 0xa74786c8 add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0xa748eb6b of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xa7562d47 xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0xa7569b15 sysfs_add_device_to_node EXPORT_SYMBOL_GPL vmlinux 0xa76715f7 is_pnv_opal_msi -EXPORT_SYMBOL_GPL vmlinux 0xa76e2203 vas_win_close +EXPORT_SYMBOL_GPL vmlinux 0xa779e8e1 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0xa77e60f4 serial8250_em485_start_tx EXPORT_SYMBOL_GPL vmlinux 0xa77e6a0b usb_alloc_coherent EXPORT_SYMBOL_GPL vmlinux 0xa780ec7d pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xa79af850 l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0xa79c906a of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xa7b18646 trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0xa7b22b2f attribute_container_classdev_to_container EXPORT_SYMBOL_GPL vmlinux 0xa7b96f53 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xa7bcad75 gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0xa7bd3e5c __pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0xa7c00558 proc_mkdir_data EXPORT_SYMBOL_GPL vmlinux 0xa7c9950b sysfs_create_link EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7cc33eb device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xa7d202b1 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xa7d589c7 ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0xa7e8fd86 pm_clk_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0xa7f642af msi_desc_to_pci_sysdata EXPORT_SYMBOL_GPL vmlinux 0xa802ffac serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xa818a4c1 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xa8037e6e __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0xa824bd66 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xa82e56e4 fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0xa83b0629 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xa8445990 __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8624024 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xa85d6728 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xa8792383 dev_pm_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xa87f7aec sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0xa87fb9e7 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xa8995017 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0xa8a88dca ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0xa8acc8d8 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0xa8c7701d filemap_read EXPORT_SYMBOL_GPL vmlinux 0xa8d599c1 of_reserved_mem_device_release EXPORT_SYMBOL_GPL vmlinux 0xa8d81c6e kvmhv_vcpu_entry_p9 EXPORT_SYMBOL_GPL vmlinux 0xa8e0ad85 firmware_request_nowarn EXPORT_SYMBOL_GPL vmlinux 0xa8e8ebb3 sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0xa8f14dc9 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa901c492 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0xa90aff68 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0xa91e0925 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xa925952e shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xa9315afc fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa93a758f __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0xa93e3689 usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xa945b81d cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0xa95165d5 pci_hp_del EXPORT_SYMBOL_GPL vmlinux 0xa95b26ee md_start EXPORT_SYMBOL_GPL vmlinux 0xa9658d58 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xa96f2c23 crypto_stats_kpp_set_secret EXPORT_SYMBOL_GPL vmlinux 0xa9773075 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0xa9779270 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xa994cebc lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xa98e4f11 blk_rq_err_bytes EXPORT_SYMBOL_GPL vmlinux 0xa99a83fe blk_next_bio EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xa99d1a65 debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put EXPORT_SYMBOL_GPL vmlinux 0xa9a0ee26 pnv_pci_get_device_tree -EXPORT_SYMBOL_GPL vmlinux 0xa9aea01d blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xa9b0d8ec crypto_inst_setname EXPORT_SYMBOL_GPL vmlinux 0xa9b62d31 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0xa9b81fd6 fwnode_graph_get_remote_node EXPORT_SYMBOL_GPL vmlinux 0xa9ba093c rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0xa9be3921 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0xa9bf35df tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xa9c32f37 __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids EXPORT_SYMBOL_GPL vmlinux 0xa9d48b1b virtqueue_get_buf EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e6ffbd __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa9ee7a8b gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xa9f26995 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xaa004d2e ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xaa015e22 tpm_is_tpm2 EXPORT_SYMBOL_GPL vmlinux 0xaa02acce component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xaa053644 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaa08f2ba sata_scr_write EXPORT_SYMBOL_GPL vmlinux 0xaa1758c5 gen_pool_avail EXPORT_SYMBOL_GPL vmlinux 0xaa1ce6ea fat_time_fat2unix EXPORT_SYMBOL_GPL vmlinux 0xaa1cef2a power_supply_put EXPORT_SYMBOL_GPL vmlinux 0xaa1de6cc n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xaa1fbb07 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0xaa21fb0c dev_pm_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa245ca0 regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xaa423316 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xaa4338d9 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xaa4963a2 cxl_update_properties -EXPORT_SYMBOL_GPL vmlinux 0xaa4dd3f2 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xaa6a219d msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xaa2f5946 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xaa3a1c45 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xaa3fa8ae sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xaa617735 strp_process EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa957fec device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xaa6c1d96 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xaa730256 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xaa73bf49 gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0xaa98aeec __rt_mutex_init EXPORT_SYMBOL_GPL vmlinux 0xaa99b859 serial8250_do_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump EXPORT_SYMBOL_GPL vmlinux 0xaaaa5ec9 cpu_latency_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0xaaab6ef8 of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0xaaafe6f5 rdev_get_id EXPORT_SYMBOL_GPL vmlinux 0xaab95e9e iomap_page_mkwrite EXPORT_SYMBOL_GPL vmlinux 0xaabbb151 hash_page_mm -EXPORT_SYMBOL_GPL vmlinux 0xaaccc8e0 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xaaea9a12 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xaaf71721 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xaaf9d25d is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0xaae88890 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xaaf2c023 sata_link_scr_lpm EXPORT_SYMBOL_GPL vmlinux 0xab05ab8e pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xab1f55e9 regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0xab201f39 cdrom_multisession EXPORT_SYMBOL_GPL vmlinux 0xab219c44 iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0xab2780fe trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0xab2781ea crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0xab2db600 aead_exit_geniv EXPORT_SYMBOL_GPL vmlinux 0xab30e856 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xab3ab8b3 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0xab31646c devlink_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0xab3e8f5f get_current_tty EXPORT_SYMBOL_GPL vmlinux 0xab46fc70 get_device_system_crosststamp EXPORT_SYMBOL_GPL vmlinux 0xab4ceb77 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xab4f3e7b of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xab5157d5 lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0xab59d29a pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xab6042d2 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xab61d873 sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0xab64d545 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xab653a03 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xab6f97e2 preempt_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xab714109 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0xab8c2dec mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xab96f4f1 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xab714188 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xab813417 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xab927127 bpf_trace_run3 EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks EXPORT_SYMBOL_GPL vmlinux 0xaba0208b led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0xabb3cad8 nvdimm_setup_pfn EXPORT_SYMBOL_GPL vmlinux 0xabb521cb sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xabb5e543 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xabbd99ed sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xabb71b58 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xabbe284a device_unregister EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabc788a9 crypto_stats_get EXPORT_SYMBOL_GPL vmlinux 0xabcd3d34 pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0xabdbd6b4 eeh_dev_open EXPORT_SYMBOL_GPL vmlinux 0xabdded81 __pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0xac0624b4 vfio_spapr_iommu_eeh_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xac1da767 bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0xac21898c bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xac277f00 udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0xac32915d devm_spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0xac32aa85 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xac5f48e5 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xac8b3772 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xac84533c switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xac850499 xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0xac96a511 pm_runtime_get_if_active EXPORT_SYMBOL_GPL vmlinux 0xaca302c2 misc_cg_uncharge EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put @@ -22593,160 +22607,148 @@ EXPORT_SYMBOL_GPL vmlinux 0xaccbd52d do_unregister_con_driver EXPORT_SYMBOL_GPL vmlinux 0xacd9f9b0 percpu_down_write EXPORT_SYMBOL_GPL vmlinux 0xace1f48d of_platform_populate EXPORT_SYMBOL_GPL vmlinux 0xacea9a4d tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xacf7c988 spi_controller_suspend EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features EXPORT_SYMBOL_GPL vmlinux 0xad12bb7a gen_pool_size EXPORT_SYMBOL_GPL vmlinux 0xad1bc30d md_bitmap_load EXPORT_SYMBOL_GPL vmlinux 0xad220230 usb_of_get_interface_node EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad2b3f29 dev_pm_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0xad3dfcd8 pinctrl_unregister EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xad43731e regmap_test_bits EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu EXPORT_SYMBOL_GPL vmlinux 0xad50f162 kvmppc_h_bulk_remove EXPORT_SYMBOL_GPL vmlinux 0xad58bb98 led_init_default_state_get -EXPORT_SYMBOL_GPL vmlinux 0xad6018d8 splice_to_pipe EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad7c6fb1 cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0xad8fe144 inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy EXPORT_SYMBOL_GPL vmlinux 0xada4c879 uart_handle_cts_change EXPORT_SYMBOL_GPL vmlinux 0xada77076 pci_epf_bind EXPORT_SYMBOL_GPL vmlinux 0xadaa9e82 xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xadad4468 crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0xadb75741 virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0xadb9b83d inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0xadbbdc13 iommu_sva_unbind_device EXPORT_SYMBOL_GPL vmlinux 0xadbebcce blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xadc3849d inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0xadc5c0d0 kernfs_get EXPORT_SYMBOL_GPL vmlinux 0xadd46af2 debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0xadeadcf0 nl_table EXPORT_SYMBOL_GPL vmlinux 0xadf67371 devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xadf9b8f3 devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0xadfea86f ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xae01ef61 regmap_noinc_read EXPORT_SYMBOL_GPL vmlinux 0xae04575b nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0xae046958 perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xae1498dc pci_user_read_config_word EXPORT_SYMBOL_GPL vmlinux 0xae22aca9 bio_release_pages EXPORT_SYMBOL_GPL vmlinux 0xae2684c8 serial8250_rx_dma_flush EXPORT_SYMBOL_GPL vmlinux 0xae26dddb fuse_get_unique EXPORT_SYMBOL_GPL vmlinux 0xae2b483d regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xae354fba scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae3b34f8 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xae41a55d strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0xae442152 dawr_force_enable -EXPORT_SYMBOL_GPL vmlinux 0xae45045e ata_platform_remove_one EXPORT_SYMBOL_GPL vmlinux 0xae5b5456 clk_hw_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0xae64f1dd __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xae658d09 wm8350_reg_read EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock EXPORT_SYMBOL_GPL vmlinux 0xae6c39d4 md_account_bio EXPORT_SYMBOL_GPL vmlinux 0xae70f225 dma_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp EXPORT_SYMBOL_GPL vmlinux 0xae87cad0 memstart_addr EXPORT_SYMBOL_GPL vmlinux 0xae8850f7 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xae8ab3b6 skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0xae8b6443 kvmppc_h_clear_mod +EXPORT_SYMBOL_GPL vmlinux 0xaeb91fe1 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0xaebe7ac6 devlink_params_unregister EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page EXPORT_SYMBOL_GPL vmlinux 0xaed91cb4 debugfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0xaedfd371 pnv_ocxl_get_actag -EXPORT_SYMBOL_GPL vmlinux 0xaeebe3a9 __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0xaeecfdef net_selftest EXPORT_SYMBOL_GPL vmlinux 0xaf03847b ata_sff_irq_on EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 EXPORT_SYMBOL_GPL vmlinux 0xaf1e10da opal_int_set_mfrr -EXPORT_SYMBOL_GPL vmlinux 0xaf2490fd __xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0xaf342f2a devlink_port_params_register 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 0xaf48c167 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0xaf519bc0 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xaf52ea20 hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0xaf534b2c rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xaf54d67c regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xaf6ef39d debugfs_create_bool EXPORT_SYMBOL_GPL vmlinux 0xaf724111 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xaf7370e5 dax_finish_sync_fault EXPORT_SYMBOL_GPL vmlinux 0xaf78e6d3 devfreq_event_get_event EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp EXPORT_SYMBOL_GPL vmlinux 0xaf843e69 pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf8be242 cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0xaf982554 devm_devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0xaf984953 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xafb75b7e regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xafb8ba0d nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0xafba96d8 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0xafbc7954 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xafbc80e9 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present -EXPORT_SYMBOL_GPL vmlinux 0xafca5e80 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xafd95d80 devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xaff8d34d sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xaff6721a bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0xaffb85ab led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0xb02c9319 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xb01538fd sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xb01f30cf __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0xb02e08f2 vmalloc_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb031a32c sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0xb03f3bc5 blk_ksm_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb040b6b5 devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0xb053fff0 blkcg_print_blkgs EXPORT_SYMBOL_GPL vmlinux 0xb063af49 xas_split_alloc EXPORT_SYMBOL_GPL vmlinux 0xb06634ec opal_xscom_write EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb081a3c9 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xb08cdd03 phy_driver_is_genphy_10g EXPORT_SYMBOL_GPL vmlinux 0xb08fb46c kvmppc_h_protect EXPORT_SYMBOL_GPL vmlinux 0xb09439fa __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xb0ac5582 dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bba338 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb0bedf52 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xb0bf92e8 l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0xb0c72782 i2c_dw_configure_master EXPORT_SYMBOL_GPL vmlinux 0xb0ce692e usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xb0cf9167 addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0dc8dfc xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0xb0f73f8e __wake_up_locked_sync_key EXPORT_SYMBOL_GPL vmlinux 0xb0f78d9c kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0xb0faa14c regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xb100259d i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0xb101790f uart_xchar_out EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0xb119f908 genphy_c45_loopback EXPORT_SYMBOL_GPL vmlinux 0xb11cb8bd __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb11d2538 phy_package_join EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb126a61c dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb13a3065 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xb131787b icc_enable +EXPORT_SYMBOL_GPL vmlinux 0xb1355dbf mmc_crypto_prepare_req EXPORT_SYMBOL_GPL vmlinux 0xb143fead blk_ksm_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xb157346b netdev_is_rx_handler_busy EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb16f6bcb platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xb1768a4e spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0xb183cf6d devm_bitmap_alloc EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs EXPORT_SYMBOL_GPL vmlinux 0xb18fc602 da903x_update EXPORT_SYMBOL_GPL vmlinux 0xb1b0cba1 usb_unlocked_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0xb1b936a6 rio_local_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c93ab5 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xb1e15929 __synth_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1e6a199 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xb1f44c77 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xb1f58e65 sock_prot_inuse_add EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb204476c gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xb205d405 ata_link_next EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert EXPORT_SYMBOL_GPL vmlinux 0xb2294ccd blkg_lookup_slowpath EXPORT_SYMBOL_GPL vmlinux 0xb23ed032 of_phy_get EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb240cc73 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb24202d9 security_path_truncate EXPORT_SYMBOL_GPL vmlinux 0xb24295c7 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xb242c828 gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0xb2432119 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xb2498174 crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xb24b4c4e rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0xb25a28d0 synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0xb25b55fe msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0xb2616225 devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr EXPORT_SYMBOL_GPL vmlinux 0xb26df7a7 fat_dir_empty EXPORT_SYMBOL_GPL vmlinux 0xb2750721 genphy_c45_read_link EXPORT_SYMBOL_GPL vmlinux 0xb2793126 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xb27fc898 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xb28968d7 xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0xb28eb1f6 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xb285cb73 sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0xb290fc52 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0xb2943fe0 regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb29537bf devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0xb296704f scsi_dh_set_params EXPORT_SYMBOL_GPL vmlinux 0xb29a73d8 dbs_update EXPORT_SYMBOL_GPL vmlinux 0xb29ce0ca devm_rtc_allocate_device @@ -22756,200 +22758,205 @@ EXPORT_SYMBOL_GPL vmlinux 0xb2b52a88 inverse_translate EXPORT_SYMBOL_GPL vmlinux 0xb2b67490 phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait EXPORT_SYMBOL_GPL vmlinux 0xb2c45e08 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb2e2bf51 locks_release_private EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2e85785 crypto_ahash_setkey EXPORT_SYMBOL_GPL vmlinux 0xb2edb0cc irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0xb2fef0ee perf_aux_output_skip EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb32b4695 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xb3294a5b pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xb3312c1e __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xb345800e regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xb3496d16 ata_sas_port_resume EXPORT_SYMBOL_GPL vmlinux 0xb34ac21a irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xb3616ba6 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0xb38f162b crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xb393aae7 crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0xb39aca9f blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb3a74a23 thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0xb3c647a4 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xb3a2e2c5 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0xb3b3747e netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0xb3c73180 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xb3f86999 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xb4026b27 gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0xb407da94 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xb3d96050 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb3f54286 set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0xb40f36fe pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xb41419df fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xb41c9a4f bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0xb427187c ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0xb43b08da security_path_truncate EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb4596d79 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xb453b402 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0xb46554ce dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xb46d1b66 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xb473163f spi_bus_lock EXPORT_SYMBOL_GPL vmlinux 0xb479e83d vfio_iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xb47eaed9 icc_node_del EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns EXPORT_SYMBOL_GPL vmlinux 0xb48c4e3c do_unbind_con_driver EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4e621be crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xb4e76054 bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length EXPORT_SYMBOL_GPL vmlinux 0xb4f1ac3c fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0xb4fe02fc pm_wakeup_ws_event EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0xb51322f4 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xb50c52ed rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0xb513f708 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0xb514284b thermal_zone_device_disable EXPORT_SYMBOL_GPL vmlinux 0xb51c4501 kvmppc_hpte_hv_fault EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state EXPORT_SYMBOL_GPL vmlinux 0xb520a835 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xb5229d6d of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0xb534e548 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0xb538c5e7 evm_verifyxattr EXPORT_SYMBOL_GPL vmlinux 0xb54ee8a8 tpm1_getcap EXPORT_SYMBOL_GPL vmlinux 0xb55c571a blk_mq_pci_map_queues EXPORT_SYMBOL_GPL vmlinux 0xb55d49ce pm_clk_add EXPORT_SYMBOL_GPL vmlinux 0xb55ef287 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0xb5610e3c sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xb568850e blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0xb571134b pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0xb575f99a devm_device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0xb5771ce9 usb_hcd_is_primary_hcd EXPORT_SYMBOL_GPL vmlinux 0xb598fe20 scsi_target_block EXPORT_SYMBOL_GPL vmlinux 0xb5a04f05 xive_native_has_save_restore EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xb5aa632e ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xb5aeadd9 __traceiter_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0xb5c17b18 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xb5c5060c tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0xb5cc23c0 sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0xb5e59fe2 led_put -EXPORT_SYMBOL_GPL vmlinux 0xb5f66c88 __traceiter_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0xb60758aa dev_pm_put_subsys_data EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq -EXPORT_SYMBOL_GPL vmlinux 0xb6168b50 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xb61553cc __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xb623871c serial8250_em485_destroy EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb62be0f3 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0xb63356ef cxl_afu_get EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb635c691 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0xb63884d2 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xb63f6603 regulator_put EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu +EXPORT_SYMBOL_GPL vmlinux 0xb643f2c8 crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0xb6490b11 pnv_power9_force_smt4_release EXPORT_SYMBOL_GPL vmlinux 0xb64ae121 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL vmlinux 0xb650ed7f unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb657ab2d sdio_f0_readb EXPORT_SYMBOL_GPL vmlinux 0xb65815e9 devm_regulator_get EXPORT_SYMBOL_GPL vmlinux 0xb66a5a0c regulator_bulk_set_supply_names EXPORT_SYMBOL_GPL vmlinux 0xb66b713c spi_mem_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xb66c81ff xhci_resume EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb6924320 preempt_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xb6a63c51 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xb6a8e48f perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0xb6ae9433 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xb6aec7be __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0xb6c07c3c hwpoison_filter EXPORT_SYMBOL_GPL vmlinux 0xb6c18cac spi_mem_dtr_supports_op EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable EXPORT_SYMBOL_GPL vmlinux 0xb6f70626 dev_pm_opp_put_opp_table EXPORT_SYMBOL_GPL vmlinux 0xb6f7bec1 hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb6fdabf7 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb6feae1b regmap_write EXPORT_SYMBOL_GPL vmlinux 0xb709c045 irq_chip_enable_parent EXPORT_SYMBOL_GPL vmlinux 0xb71f399c platform_msi_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb743726e dev_pm_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0xb74491fa serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xb7456cfb spi_async EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port EXPORT_SYMBOL_GPL vmlinux 0xb7526e4f dma_request_chan EXPORT_SYMBOL_GPL vmlinux 0xb75a5948 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xb77bd6ff crypto_grab_akcipher EXPORT_SYMBOL_GPL vmlinux 0xb77f5df6 xhci_add_endpoint EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg EXPORT_SYMBOL_GPL vmlinux 0xb78cc0d3 crypto_chain EXPORT_SYMBOL_GPL vmlinux 0xb7962914 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xb7971224 fwnode_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xb79dd397 kthread_park EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7b1643e __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0xb7bef634 of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0xb7c5aa34 dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xb7d17fa0 pgtable_cache +EXPORT_SYMBOL_GPL vmlinux 0xb7d20b7c regulator_list_voltage EXPORT_SYMBOL_GPL vmlinux 0xb7d53819 anon_inode_getfd_secure EXPORT_SYMBOL_GPL vmlinux 0xb7db8529 pci_probe_reset_bus EXPORT_SYMBOL_GPL vmlinux 0xb7dbb273 kvmppc_invalidate_hpte EXPORT_SYMBOL_GPL vmlinux 0xb7f15e49 clk_hw_unregister_mux EXPORT_SYMBOL_GPL vmlinux 0xb7f18b1e usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0xb7f8241d regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xb7f7ba7a gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0xb7f981d2 sched_trace_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0xb816e93f rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0xb81f89df __xas_next EXPORT_SYMBOL_GPL vmlinux 0xb820e6d7 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xb8270e29 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0xb8296332 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb82a6d95 sfp_bus_find_fwnode EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted EXPORT_SYMBOL_GPL vmlinux 0xb849e9dc __pm_runtime_idle EXPORT_SYMBOL_GPL vmlinux 0xb85dbd88 usb_check_int_endpoints +EXPORT_SYMBOL_GPL vmlinux 0xb85e989f __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xb87494ec vfio_pci_core_uninit_device EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb88e749f call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8ab66c1 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xb8bdc04d ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xb8c1e40a crypto_stats_compress EXPORT_SYMBOL_GPL vmlinux 0xb8c644ab mce_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put EXPORT_SYMBOL_GPL vmlinux 0xb8d06b0d vfio_pci_core_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xb8d1a11f rio_bus_type EXPORT_SYMBOL_GPL vmlinux 0xb8e1d313 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0xb8eb3593 clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0xb8ee3c0d fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xb8ffb7b2 __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xb90b01b2 hrtimer_forward EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb9151f4f lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0xb91ed88d usb_get_from_anchor EXPORT_SYMBOL_GPL vmlinux 0xb926349e led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0xb93bcd5b __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xb9539390 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb969f810 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xb97365f3 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0xb9832ded bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb9894e2e security_path_rmdir +EXPORT_SYMBOL_GPL vmlinux 0xb98a5c8a tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0xb9987fd0 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0xb99406b0 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb99732b1 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xb99b50ea ata_host_alloc EXPORT_SYMBOL_GPL vmlinux 0xb99bfe80 extcon_find_edev_by_node EXPORT_SYMBOL_GPL vmlinux 0xb99df747 xive_native_has_queue_state_support -EXPORT_SYMBOL_GPL vmlinux 0xb9a1f157 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xb9a13db5 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xb9a5eff8 thermal_zone_device_enable EXPORT_SYMBOL_GPL vmlinux 0xb9b42801 pci_epc_unmap_addr EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put EXPORT_SYMBOL_GPL vmlinux 0xb9bced81 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0xb9c0fc1b wm8350_device_init EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9c85101 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xb9c9291d skcipher_walk_complete EXPORT_SYMBOL_GPL vmlinux 0xb9cde94d devm_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first EXPORT_SYMBOL_GPL vmlinux 0xb9e00e37 vfio_unregister_group_dev -EXPORT_SYMBOL_GPL vmlinux 0xb9efd561 dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0xb9fe71e2 mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0xba031e80 nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan EXPORT_SYMBOL_GPL vmlinux 0xba1bafce iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba34eb6a zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xba2cf22e tcp_done EXPORT_SYMBOL_GPL vmlinux 0xba4058d8 dma_get_merge_boundary EXPORT_SYMBOL_GPL vmlinux 0xba4aaa6f iommu_aux_get_pasid EXPORT_SYMBOL_GPL vmlinux 0xba4b1b3d alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xba4ca889 mmput -EXPORT_SYMBOL_GPL vmlinux 0xba4cc84c bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0xba7b59ba perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0xba7d7875 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xba640643 sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0xba945ed9 mpc8xxx_spi_tx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0xba9ddbd6 led_trigger_blink EXPORT_SYMBOL_GPL vmlinux 0xba9e81eb usb_set_interface EXPORT_SYMBOL_GPL vmlinux 0xbaa63df4 iommu_unmap_fast EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents EXPORT_SYMBOL_GPL vmlinux 0xbabd56ca lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xbac36697 regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0xbad716cc device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xbae40ef3 hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbafa9358 wm8350_device_init EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb133f59 tracing_snapshot_cond EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb2c4b86 of_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xbb32c978 unregister_kretprobes EXPORT_SYMBOL_GPL vmlinux 0xbb36b84a of_pci_find_child_device EXPORT_SYMBOL_GPL vmlinux 0xbb3a9c29 dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0xbb4d637b l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbb5a7ea3 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0xbb5c7f10 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xbb53e66e register_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xbb6c30ee shash_register_instance EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn EXPORT_SYMBOL_GPL vmlinux 0xbbabf12d sysfs_remove_file_self @@ -22957,48 +22964,44 @@ EXPORT_SYMBOL_GPL vmlinux 0xbbac0d34 dax_region_put EXPORT_SYMBOL_GPL vmlinux 0xbbad57db of_phy_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0xbbaed456 dma_buf_vunmap EXPORT_SYMBOL_GPL vmlinux 0xbbc11b6e nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xbbc25920 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0xbbc9c879 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xbbc37ced sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0xbbde440a da903x_reads EXPORT_SYMBOL_GPL vmlinux 0xbbded991 ata_bmdma_qc_prep EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbe8d763 tcp_reno_cong_avoid EXPORT_SYMBOL_GPL vmlinux 0xbbea2356 ata_sff_exec_command EXPORT_SYMBOL_GPL vmlinux 0xbbebf3cf vas_unregister_api_powernv +EXPORT_SYMBOL_GPL vmlinux 0xbbf342e6 crypto_unregister_shash EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xbc0a9c64 alloc_page_buffers EXPORT_SYMBOL_GPL vmlinux 0xbc0bfa3c fsverity_verify_page EXPORT_SYMBOL_GPL vmlinux 0xbc23f3c7 dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0xbc2a52e4 devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time EXPORT_SYMBOL_GPL vmlinux 0xbc3f8107 led_trigger_unregister EXPORT_SYMBOL_GPL vmlinux 0xbc4244ff da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbc601d94 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xbc4d1bb9 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xbc5263e2 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xbc60836f spi_write_then_read EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc79db35 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xbc862156 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xbc6e02b0 clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0xbc9304f0 uart_try_toggle_sysrq EXPORT_SYMBOL_GPL vmlinux 0xbc957e68 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc99d5ed devm_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xbc9bfeff pci_ioremap_wc_bar EXPORT_SYMBOL_GPL vmlinux 0xbcb76537 key_set_timeout EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset EXPORT_SYMBOL_GPL vmlinux 0xbcc7d678 led_trigger_remove EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce49241 crypto_larval_kill EXPORT_SYMBOL_GPL vmlinux 0xbce87e27 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xbcef3874 inet6_cleanup_sock EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbd04d5c8 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xbd097dc8 ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0xbd0f64a0 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0xbd200f79 perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0xbd201f7c debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xbd23063b vfs_kern_mount EXPORT_SYMBOL_GPL vmlinux 0xbd2d8f02 klist_add_tail EXPORT_SYMBOL_GPL vmlinux 0xbd318c32 alloc_dax_region EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq EXPORT_SYMBOL_GPL vmlinux 0xbd4641fa dev_pm_opp_register_set_opp_helper EXPORT_SYMBOL_GPL vmlinux 0xbd4a26df update_numa_distance -EXPORT_SYMBOL_GPL vmlinux 0xbd5272c9 regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0xbd55d1ca dev_pm_opp_of_find_icc_paths EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0xbd681ff1 pinconf_generic_parse_dt_config @@ -23006,98 +23009,101 @@ EXPORT_SYMBOL_GPL vmlinux 0xbd6ef6db led_classdev_suspend EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory EXPORT_SYMBOL_GPL vmlinux 0xbd88bdf7 bd_unlink_disk_holder EXPORT_SYMBOL_GPL vmlinux 0xbd8c0c69 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xbd9604ff raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0xbd97c7d2 of_fdt_unflatten_tree EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xbdba0a50 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xbdbc9029 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xbdbf16c0 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xbdd42e5a trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0xbddb88f2 of_gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0xbdddb9a9 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xbde7f018 regulator_sync_voltage EXPORT_SYMBOL_GPL vmlinux 0xbdeb7ed2 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0xbded8640 gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0xbdefb8fb __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xbdfe1c3a fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xbe094262 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xbe11ab2c inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xbe19c718 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xbe070c4b __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xbe197331 bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0xbe1bd613 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0xbe580c33 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xbe4536ed tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0xbe5df5e1 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xbe62b1ec __mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus EXPORT_SYMBOL_GPL vmlinux 0xbe7054b5 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xbe73d404 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xbe75b004 __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0xbe7888c6 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xbe799037 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xbe7a98f0 inet6_sock_destruct EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbea0f7c2 msg_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbea18f27 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xbea2c181 lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized EXPORT_SYMBOL_GPL vmlinux 0xbea63e77 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xbeb7f13e switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xbeb83106 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xbebb0c25 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0xbec84d37 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xbee79237 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xbeeddd74 gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0xbef2d585 __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xbef679b4 crypto_stats_kpp_compute_shared_secret EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf082dc9 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xbf0dd7ae switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0xbf314b6a rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xbf48165c wakeup_sources_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xbf523b22 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xbf53e244 ata_ehi_clear_desc EXPORT_SYMBOL_GPL vmlinux 0xbf57ae7b kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xbf617a1d fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0xbf632b68 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xbf721dfe ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0xbf75292e mutex_lock_io EXPORT_SYMBOL_GPL vmlinux 0xbf865787 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xbf8c3289 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xbf8eb372 wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0xbf9866a5 dw_pcie_wait_for_link EXPORT_SYMBOL_GPL vmlinux 0xbf993e88 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xbf9c5b5d espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0xbf9e6e3f sysfs_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0xbfb9fcca adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbfbb3e9a platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xbfba1c03 tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports EXPORT_SYMBOL_GPL vmlinux 0xbfc57ef1 debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0xbfc91608 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xbfcd9c5a ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0xbfd3d99a dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0xbfd3e379 spi_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xbfd4f9a4 iommu_flush_tce +EXPORT_SYMBOL_GPL vmlinux 0xbfd52858 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xbfddf2dd ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xbfe533f2 crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbff26152 phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0xbff570fa gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xbffd5a3d sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0xc00bd828 i2c_recover_bus EXPORT_SYMBOL_GPL vmlinux 0xc0199533 dmaengine_unmap_put EXPORT_SYMBOL_GPL vmlinux 0xc0215c61 ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0xc022b4eb rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0xc0573e34 dev_pm_opp_of_add_table_noclk EXPORT_SYMBOL_GPL vmlinux 0xc059fcac tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc05a13f1 gpiochip_enable_irq EXPORT_SYMBOL_GPL vmlinux 0xc06198b1 hrtimer_start_range_ns EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread -EXPORT_SYMBOL_GPL vmlinux 0xc06e8c29 page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0xc086d91d bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xc0837697 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xc0873ff7 regmap_async_complete EXPORT_SYMBOL_GPL vmlinux 0xc08a6286 mmu_notifier_range_update_to_read_only EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc098c3a1 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xc0a4e8f7 bpf_offload_dev_match EXPORT_SYMBOL_GPL vmlinux 0xc0a62c76 ata_ncq_sdev_attrs EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0d5ce27 find_extend_vma EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name EXPORT_SYMBOL_GPL vmlinux 0xc0e1170b pinctrl_generic_get_group_name EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc1036606 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xc0f3dacc ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xc0f40a6e ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc0f84ca9 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xc103b872 int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t EXPORT_SYMBOL_GPL vmlinux 0xc1100ca1 pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0xc11bc2c2 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0xc125c280 pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0xc1263635 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc1416414 __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0xc14ff0ff mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xc1336e08 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xc1420a11 devlink_dpipe_table_resource_set EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc18d10b0 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0xc19cd700 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0xc1a5c1be init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xc1af6661 cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0xc1c49eea spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xc1af8755 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xc1cf0292 crypto_grab_shash EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension EXPORT_SYMBOL_GPL vmlinux 0xc1e8729f kvmppc_clear_ref_hpte EXPORT_SYMBOL_GPL vmlinux 0xc1ed9c89 cpu_latency_qos_add_request @@ -23106,11 +23112,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xc1f3e177 inode_dax EXPORT_SYMBOL_GPL vmlinux 0xc205529e sbitmap_queue_clear EXPORT_SYMBOL_GPL vmlinux 0xc20c1a50 devm_gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0xc20e12e8 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xc2147251 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xc225fa5f fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0xc2262e85 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0xc218c911 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xc22392ba regulator_unregister EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc24d9773 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xc2442cd6 sdio_readb EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock EXPORT_SYMBOL_GPL vmlinux 0xc26a13d2 edac_mc_add_mc_with_groups EXPORT_SYMBOL_GPL vmlinux 0xc2725936 irq_set_chained_handler_and_data @@ -23120,111 +23125,122 @@ EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify EXPORT_SYMBOL_GPL vmlinux 0xc28c0254 handle_irq_desc EXPORT_SYMBOL_GPL vmlinux 0xc29ad028 sysfs_remove_link_from_group EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2ab55b2 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc2b1ed68 skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xc2be191b ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc2bb29c1 gpiochip_irq_domain_activate EXPORT_SYMBOL_GPL vmlinux 0xc2be5cd5 dma_buf_export EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc2c275ff opal_poll_events -EXPORT_SYMBOL_GPL vmlinux 0xc2c3baf1 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xc2c3d870 __inode_attach_wb EXPORT_SYMBOL_GPL vmlinux 0xc2c4b3f0 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xc2d55962 work_on_cpu_key EXPORT_SYMBOL_GPL vmlinux 0xc2d81292 usb_put_intf EXPORT_SYMBOL_GPL vmlinux 0xc2e6aaae blk_queue_write_cache EXPORT_SYMBOL_GPL vmlinux 0xc2fde249 iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0xc2ff1535 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xc30225cc crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc302505f ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xc303118d mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0xc30cdad4 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xc311269e __devm_spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0xc3142c28 relay_buf_full EXPORT_SYMBOL_GPL vmlinux 0xc32f4ff3 badblocks_init EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc343b708 synth_event_add_next_val EXPORT_SYMBOL_GPL vmlinux 0xc34d1a48 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xc35f5b85 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0xc3505841 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xc363001e switchdev_handle_fdb_del_to_device EXPORT_SYMBOL_GPL vmlinux 0xc364d564 dev_pm_opp_detach_genpd EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk EXPORT_SYMBOL_GPL vmlinux 0xc3731bb6 of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0xc37510e6 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc3767562 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc38fb9d5 regmap_write_async EXPORT_SYMBOL_GPL vmlinux 0xc3916b15 shake_page EXPORT_SYMBOL_GPL vmlinux 0xc3944258 trace_seq_putmem_hex EXPORT_SYMBOL_GPL vmlinux 0xc3955cb0 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc3a3b137 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xc3ac1ca2 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xc3b7fda0 device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0xc3bf25c4 extcon_set_property_sync EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3c6695e crypto_unregister_instance EXPORT_SYMBOL_GPL vmlinux 0xc3cc049d ksm_madvise EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3de848d pwm_capture EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough EXPORT_SYMBOL_GPL vmlinux 0xc3f77c29 dw_pcie_host_init EXPORT_SYMBOL_GPL vmlinux 0xc3f9687c devm_kstrdup EXPORT_SYMBOL_GPL vmlinux 0xc40f490f dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xc41227fe crypto_unregister_skcipher EXPORT_SYMBOL_GPL vmlinux 0xc412fdf3 radix__flush_all_lpid +EXPORT_SYMBOL_GPL vmlinux 0xc41f363b sdio_claim_host EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long EXPORT_SYMBOL_GPL vmlinux 0xc42c1151 usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0xc42cd027 phy_exit EXPORT_SYMBOL_GPL vmlinux 0xc44a27c0 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xc44ffa33 crypto_enqueue_request EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create EXPORT_SYMBOL_GPL vmlinux 0xc46b5e00 btree_merge EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc47c1968 gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0xc47cad1e md_rdev_init EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48e839f devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xc48d7e1d devlink_register EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL vmlinux 0xc49af297 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xc49d0a8d crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc4a38938 kthread_use_mm EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send EXPORT_SYMBOL_GPL vmlinux 0xc4a86cdb usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xc4a8ce69 fwnode_graph_get_remote_endpoint EXPORT_SYMBOL_GPL vmlinux 0xc4a9ba57 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xc4aca1cf devlink_port_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0xc4afe6c6 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xc4b242e7 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xc4b1cdc0 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xc4ba1eb5 cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0xc4c61af1 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0xc4c7bcb3 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xc4c95a91 icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0xc4ce9f4e get_device EXPORT_SYMBOL_GPL vmlinux 0xc4d40cb2 tc3589x_reg_write EXPORT_SYMBOL_GPL vmlinux 0xc4d501ca disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0xc4dbb951 platform_irqchip_probe -EXPORT_SYMBOL_GPL vmlinux 0xc4e1c188 ata_msleep EXPORT_SYMBOL_GPL vmlinux 0xc4e967af kstrdup_quotable_file EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc5025024 device_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0xc50cde44 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0xc516b140 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xc52df2c5 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc513135e bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0xc531ea0b of_cpufreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc568aa3f __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name EXPORT_SYMBOL_GPL vmlinux 0xc56b5fa4 devres_destroy EXPORT_SYMBOL_GPL vmlinux 0xc5723c55 pnv_ocxl_set_tl_conf EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc57987b9 xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0xc580cb93 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xc586d29a spi_add_device EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc5964ac5 hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0xc59f6349 usb_reset_endpoint EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon EXPORT_SYMBOL_GPL vmlinux 0xc5a9a979 umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0xc5ae27f8 locks_release_private EXPORT_SYMBOL_GPL vmlinux 0xc5b7cdd6 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xc5c7d29f gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xc5cad1b8 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xc5d03ebc proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xc5d7e822 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xc5dd289b __clk_mux_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xc5e09b22 pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xc5fd9d89 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xc5e79e53 is_current_mnt_ns EXPORT_SYMBOL_GPL vmlinux 0xc5fe9e46 dm_get_md EXPORT_SYMBOL_GPL vmlinux 0xc6012208 dw_pcie_host_deinit EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid -EXPORT_SYMBOL_GPL vmlinux 0xc6165e85 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xc6171d1a devlink_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier EXPORT_SYMBOL_GPL vmlinux 0xc61982af extcon_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xc6299625 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xc63cb858 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xc63286ce inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xc64346bb fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0xc64693db __rio_local_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0xc64f44c5 irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0xc6528721 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0xc653fac5 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xc65876d1 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xc656b0c5 gpiod_set_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata EXPORT_SYMBOL_GPL vmlinux 0xc66fc0e3 bsg_setup_queue @@ -23232,7 +23248,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable EXPORT_SYMBOL_GPL vmlinux 0xc6790b4f regulator_set_ramp_delay_regmap EXPORT_SYMBOL_GPL vmlinux 0xc67944d0 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0xc6820bc0 __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xc68dcaec dma_get_slave_caps EXPORT_SYMBOL_GPL vmlinux 0xc69648fc led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read @@ -23241,274 +23256,270 @@ EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xc6beea0a blk_crypto_evict_key EXPORT_SYMBOL_GPL vmlinux 0xc6c495fc edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0xc6c6a733 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xc6d3b7ee mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0xc6d5d5af watchdog_set_restart_priority EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc7178acf crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xc6eabb54 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xc6f6ba78 crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc72cc45d device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc72c7988 srp_remove_host EXPORT_SYMBOL_GPL vmlinux 0xc72cd1a6 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xc73dfa69 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xc744b41c icc_set_tag EXPORT_SYMBOL_GPL vmlinux 0xc74b93ce divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xc74bfa31 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xc74ee767 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0xc7512802 regmap_fields_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xc75b6880 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xc769cfbc tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xc7857279 pnv_ocxl_spa_setup +EXPORT_SYMBOL_GPL vmlinux 0xc78a1e41 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xc78e07d2 ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0xc7901389 led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xc7915ce1 crypto_shash_setkey EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7a81177 put_device EXPORT_SYMBOL_GPL vmlinux 0xc7ac93a9 iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xc7c531a2 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xc7ca1998 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xc7af853b device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xc7e29672 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0xc7e376d4 klist_next EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7f86297 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xc7e8417c shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xc7f2e703 ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc7fe771c raw_abort EXPORT_SYMBOL_GPL vmlinux 0xc80405f9 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xc8072f9e vfs_inode_has_locks EXPORT_SYMBOL_GPL vmlinux 0xc81110db dev_pm_opp_find_level_exact EXPORT_SYMBOL_GPL vmlinux 0xc81a6025 debugfs_attr_write EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove EXPORT_SYMBOL_GPL vmlinux 0xc83e7a2b edac_device_handle_ce_count EXPORT_SYMBOL_GPL vmlinux 0xc84038e2 clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0xc84330f1 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0xc84a28ed check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xc846f258 udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0xc84cb696 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xc85413ea devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire EXPORT_SYMBOL_GPL vmlinux 0xc85de457 extcon_get_edev_name EXPORT_SYMBOL_GPL vmlinux 0xc85f56d1 vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0xc86f3f40 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xc870bb43 devm_spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0xc87f228a ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc8836db2 ata_sas_port_destroy EXPORT_SYMBOL_GPL vmlinux 0xc886e2fe tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xc88a7063 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xc89cd5ef sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0xc8b4753c usb_get_maximum_speed EXPORT_SYMBOL_GPL vmlinux 0xc8d4360f pm_schedule_suspend EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable EXPORT_SYMBOL_GPL vmlinux 0xc8ee9ea8 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0xc8f057ad nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8f3d2fa devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xc8fc1083 devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0xc904c323 to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0xc9165c6d crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xc91925ce cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0xc91e5386 bio_iov_iter_get_pages EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero EXPORT_SYMBOL_GPL vmlinux 0xc939a8ee ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc93c57ec __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc94e8282 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xc9538b3b crypto_alg_mod_lookup EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 EXPORT_SYMBOL_GPL vmlinux 0xc96efa26 __devm_pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0xc970d661 sysfs_chmod_file EXPORT_SYMBOL_GPL vmlinux 0xc973c006 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xc9818708 regmap_fields_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc989d55f skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xc99c58e2 device_register -EXPORT_SYMBOL_GPL vmlinux 0xc99c94ba gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xc9a19c2b crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xc99ef632 security_inode_permission EXPORT_SYMBOL_GPL vmlinux 0xc9a33140 sbitmap_show EXPORT_SYMBOL_GPL vmlinux 0xc9c17e9f start_poll_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0xc9c56873 perf_trace_buf_alloc EXPORT_SYMBOL_GPL vmlinux 0xc9c6a27a xive_native_set_queue_state -EXPORT_SYMBOL_GPL vmlinux 0xc9e1d406 device_move +EXPORT_SYMBOL_GPL vmlinux 0xc9cfb368 inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0xc9e5fcdd dev_pm_opp_get_freq EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca06df98 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xca0bb20f l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0xca0e01d1 pcibios_finish_adding_to_bus -EXPORT_SYMBOL_GPL vmlinux 0xca18055d regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc9fecd5e sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xca0e5d47 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0xca102c82 __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xca3c4d9f dw_pcie_write_dbi EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca4b5c51 idr_remove EXPORT_SYMBOL_GPL vmlinux 0xca590be9 iommu_present EXPORT_SYMBOL_GPL vmlinux 0xca64ba74 da903x_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xca7165fd dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0xca74c12e devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0xca76bbeb spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca8171f0 sdio_release_irq EXPORT_SYMBOL_GPL vmlinux 0xca8474d6 __rio_local_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0xca8804fb pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xca900368 icc_disable EXPORT_SYMBOL_GPL vmlinux 0xca94bf41 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xca962c8e fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free EXPORT_SYMBOL_GPL vmlinux 0xca9d5cb9 copro_calculate_slb EXPORT_SYMBOL_GPL vmlinux 0xcaa1df1e __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0xcaa4ecdd of_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xcaa940a9 fuse_sync_release EXPORT_SYMBOL_GPL vmlinux 0xcaacedee sbitmap_queue_min_shallow_depth EXPORT_SYMBOL_GPL vmlinux 0xcab21d4d tpm_send EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcac5d016 tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0xcadab7df blkg_rwstat_exit EXPORT_SYMBOL_GPL vmlinux 0xcaed72a8 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xcaf3ff06 __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xcaf65501 transport_add_device EXPORT_SYMBOL_GPL vmlinux 0xcaf67dc6 posix_acl_access_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0xcaff9be5 __fsnotify_parent EXPORT_SYMBOL_GPL vmlinux 0xcb0c6f43 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xcb0c7401 nl_table EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb4c2434 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0xcb5401ac phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0xcb3d6c4e skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xcb4fd8b5 mmc_get_ext_csd EXPORT_SYMBOL_GPL vmlinux 0xcb547ebd usb_sg_wait EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb872423 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xcb6a5b49 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xcb6bbf06 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb84ce81 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xcb914013 i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0xcb99535b syscon_regmap_lookup_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xcb9ce6c0 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xcb9ce824 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0xcb9fe1a9 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xcba9f283 inet6_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0xcbb5460f of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0xcbbf5898 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xcbd336d4 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcbce813f driver_set_override EXPORT_SYMBOL_GPL vmlinux 0xcbe51c1e pci_epc_remove_epf EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcc0107f8 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xcbeafccf sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xcbf50adb regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcc12f5e3 perf_get_aux EXPORT_SYMBOL_GPL vmlinux 0xcc295aa5 of_prop_next_string EXPORT_SYMBOL_GPL vmlinux 0xcc2cd1d8 dev_pm_enable_wake_irq EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap EXPORT_SYMBOL_GPL vmlinux 0xcc37ae9d __rio_local_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister EXPORT_SYMBOL_GPL vmlinux 0xcc460559 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0xcc555934 do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0xcc63ad0f pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xcc664b2e mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc61f154 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc6a2dc3 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xcc75d636 pwm_put EXPORT_SYMBOL_GPL vmlinux 0xcc765276 list_lru_walk_node EXPORT_SYMBOL_GPL vmlinux 0xcc85d4c0 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0xcc87b194 vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc992c7f device_match_devt EXPORT_SYMBOL_GPL vmlinux 0xcc9b3eb6 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0xcca33b7d sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0xccb3de6a clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xccb51c27 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0xccc13bb7 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xccb7c369 scsi_internal_device_unblock_nowait EXPORT_SYMBOL_GPL vmlinux 0xccc38469 tps6586x_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0xcccab035 sysfs_remove_groups EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string EXPORT_SYMBOL_GPL vmlinux 0xccdda2b6 pinmux_generic_get_function_count EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xcd0b69d5 receive_fd EXPORT_SYMBOL_GPL vmlinux 0xcd0e37e1 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xcd1e75de xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size EXPORT_SYMBOL_GPL vmlinux 0xcd2b249b spi_mem_dirmap_read EXPORT_SYMBOL_GPL vmlinux 0xcd2e0fc5 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xcd4adc5a rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xcd57fae1 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xcd6a847c __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0xcd6c3433 __list_lru_init EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add EXPORT_SYMBOL_GPL vmlinux 0xcd888d47 pci_hp_create_module_link EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd975ebd bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu EXPORT_SYMBOL_GPL vmlinux 0xcda45bd3 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xcda85c10 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xcdad11e3 spi_get_next_queued_message EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdbd0d9a netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xcdb9fe8e early_find_capability EXPORT_SYMBOL_GPL vmlinux 0xcdbf65ab devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xcdc69f13 msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdcd2342 scsi_flush_work EXPORT_SYMBOL_GPL vmlinux 0xcdd1a841 xive_tima +EXPORT_SYMBOL_GPL vmlinux 0xcdd4ab3a ptp_classify_raw EXPORT_SYMBOL_GPL vmlinux 0xcdd60470 register_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0xcddaf099 devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0xcde872bd crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xcde9e0e1 cpufreq_enable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0xcde9ea9e transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xce0bbe4a rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xce0406bc spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xce1236b1 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xce12c2bc housekeeping_affine EXPORT_SYMBOL_GPL vmlinux 0xce12dd7b usb_lock_device_for_reset EXPORT_SYMBOL_GPL vmlinux 0xce18ac0b fuse_dev_operations EXPORT_SYMBOL_GPL vmlinux 0xce1d9032 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xce256507 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xce3be282 crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0xce4f365d pcie_update_link_speed EXPORT_SYMBOL_GPL vmlinux 0xce5f7301 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xce6db1ea devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce727e34 lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0xce90a1a3 crypto_aes_set_key EXPORT_SYMBOL_GPL vmlinux 0xceabed7a to_nd_region EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xceb2d084 spi_sync EXPORT_SYMBOL_GPL vmlinux 0xceb4b99c klist_prev EXPORT_SYMBOL_GPL vmlinux 0xceb4bf10 regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xceba633e phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xcebadaf1 regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xcece7b0f gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xced6d60d mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee6330c wm8350_clear_bits EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply EXPORT_SYMBOL_GPL vmlinux 0xcef55e85 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xcef9b330 pwm_capture EXPORT_SYMBOL_GPL vmlinux 0xcf00988e phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0xcf0f859d switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xcf1185f1 phy_save_page EXPORT_SYMBOL_GPL vmlinux 0xcf133159 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xcf149ddc perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xcf3c4357 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xcf4a8031 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0xcf731c53 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xcf92547f synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0xcf2bde63 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xcf462ecf ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xcf482668 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xcf553971 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xcf6e7935 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xcfa6b52d ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xcfa8831e usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xcfbddf2e srp_remove_host EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfc97022 scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0xcfe4efc6 invalidate_inode_pages2_range EXPORT_SYMBOL_GPL vmlinux 0xcffe4ab5 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0xd0001b8c devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0xd0022595 mmc_sanitize EXPORT_SYMBOL_GPL vmlinux 0xd00d66a2 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xd016dbef sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xd016f983 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xd0190cdb pcibios_unmap_io_space EXPORT_SYMBOL_GPL vmlinux 0xd0250ec5 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xd02b2bc5 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xd02be282 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd02c12df crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd02eaf99 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd0394251 regulator_allow_bypass EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range EXPORT_SYMBOL_GPL vmlinux 0xd0411a38 of_irq_get_byname EXPORT_SYMBOL_GPL vmlinux 0xd04418d5 edac_mc_alloc EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event EXPORT_SYMBOL_GPL vmlinux 0xd05068de irq_chip_mask_ack_parent EXPORT_SYMBOL_GPL vmlinux 0xd0530c53 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xd0647381 cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd07e4caf skb_zerocopy_iter_dgram EXPORT_SYMBOL_GPL vmlinux 0xd08ba238 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xd0a33dc9 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd0a0e255 sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0xd0abbca6 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xd0b6773e cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd0b7af09 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xd0bb2111 wbt_enable_default EXPORT_SYMBOL_GPL vmlinux 0xd0bea361 irq_set_affinity_hint EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0dbcfde __put_net EXPORT_SYMBOL_GPL vmlinux 0xd0fa4c51 tc3589x_block_write EXPORT_SYMBOL_GPL vmlinux 0xd10118aa simple_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0xd10bed9d thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0xd116f7db fwnode_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0xd1229dad blk_ksm_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0xd1236e08 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd12c69e2 devlink_reload_enable EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xd139c156 vfs_submount EXPORT_SYMBOL_GPL vmlinux 0xd13b25b7 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xd147ff58 device_phy_find_device EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd1485cf6 trace_output_call EXPORT_SYMBOL_GPL vmlinux 0xd14fb577 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xd14fdff0 i2c_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xd15848dd of_scan_bus EXPORT_SYMBOL_GPL vmlinux 0xd158be1a alloc_dax EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd15f7a12 __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0xd15fa6cf usb_alloc_dev EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd16fba1d get_task_pid EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xd188849a ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0xd1909dfb pfn_to_online_page EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xd1a9ea82 dev_pm_opp_set_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0xd1b25a54 fat_update_time EXPORT_SYMBOL_GPL vmlinux 0xd1b41ea6 iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0xd1bbc9b1 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1e1474c bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xd1d5949f ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd1da9ada netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xd1ead855 mmc_send_abort_tuning EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd2006127 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xd2095118 sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0xd20a9b3b bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain @@ -23517,577 +23528,595 @@ EXPORT_SYMBOL_GPL vmlinux 0xd220bb2f blk_mq_quiesce_queue EXPORT_SYMBOL_GPL vmlinux 0xd229c5de blk_ksm_init_passthrough EXPORT_SYMBOL_GPL vmlinux 0xd230aa0c usb_queue_reset_device EXPORT_SYMBOL_GPL vmlinux 0xd23bb0b6 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd25fcec0 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xd2468475 inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write EXPORT_SYMBOL_GPL vmlinux 0xd2640fd4 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xd26a8bcf icc_node_create EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd28f297f net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xd282fdc9 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xd289d9e3 sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xd292886a fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0xd29aba0f fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xd2a08820 ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0xd2a14bf6 class_compat_remove_link EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2b8024d ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xd2b8c841 dev_pm_qos_update_user_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0xd2c58090 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0xd2d0769c switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xd2e534d3 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xd2c805c0 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xd2cd6f46 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xd2d0ffa1 do_truncate EXPORT_SYMBOL_GPL vmlinux 0xd2fda33d phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0xd313b6d7 ata_scsi_change_queue_depth 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 0xd347ce04 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xd351fd72 devlink_param_register EXPORT_SYMBOL_GPL vmlinux 0xd35a200c mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd37345a2 skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0xd3756392 dma_buf_fd EXPORT_SYMBOL_GPL vmlinux 0xd3893081 of_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0xd38eeef9 rio_route_get_entry EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3a2df19 stmpe_reg_read EXPORT_SYMBOL_GPL vmlinux 0xd3a3fecf adp5520_read EXPORT_SYMBOL_GPL vmlinux 0xd3a56143 uhci_check_and_reset_hc EXPORT_SYMBOL_GPL vmlinux 0xd3a5e9f8 xas_pause EXPORT_SYMBOL_GPL vmlinux 0xd3a77b85 handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0xd3ab0899 skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0xd3e2b5c3 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0xd3eb599d bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xd3ae93af i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd3b6f662 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xd3bb3623 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0xd3d0df1f switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xd3d6dbbb spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xd3ec5794 fwnode_property_get_reference_args EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0xd3ffdf9d __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40d3978 __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0xd41c3459 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xd41fba40 page_endio +EXPORT_SYMBOL_GPL vmlinux 0xd427370a __traceiter_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd43a8cd9 __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0xd4303f90 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xd4324692 netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console EXPORT_SYMBOL_GPL vmlinux 0xd4542d6a kvmppc_h_remove EXPORT_SYMBOL_GPL vmlinux 0xd458363c dm_set_target_max_io_len EXPORT_SYMBOL_GPL vmlinux 0xd46748ec __serdev_device_driver_register EXPORT_SYMBOL_GPL vmlinux 0xd46d02a3 pci_device_group EXPORT_SYMBOL_GPL vmlinux 0xd46dcb09 nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0xd47d6827 devlink_port_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0xd48f47e3 pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd49e5e06 rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0xd4a7c607 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xd4b305ba dev_pm_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done EXPORT_SYMBOL_GPL vmlinux 0xd4b91c0a fsnotify_destroy_mark EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4c0ba47 cpufreq_driver_fast_switch EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c6f403 ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd4cc3fbd crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd4cc16d3 fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0xd4e1c4b4 pm_generic_resume_early EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value EXPORT_SYMBOL_GPL vmlinux 0xd4ecb348 devm_usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0xd4fbf02d dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xd4fc0c89 xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0xd4fc2ff0 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xd503d685 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xd513884f hwmon_device_register EXPORT_SYMBOL_GPL vmlinux 0xd51ee445 pinctrl_remove_gpio_range EXPORT_SYMBOL_GPL vmlinux 0xd523cfac power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0xd52553b9 sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0xd525c6a6 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0xd52c113d xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value EXPORT_SYMBOL_GPL vmlinux 0xd5342b72 phy_validate EXPORT_SYMBOL_GPL vmlinux 0xd53e166a iommu_del_device EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role EXPORT_SYMBOL_GPL vmlinux 0xd55a2277 dw_pcie_read_dbi EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd5649fce crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xd5924a82 flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xd55daf83 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd55ffc5a skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd56940e8 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xd58dbf1b platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xd58f135f ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd59c05cf device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xd5a1dd91 inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0xd5a440c1 dma_buf_end_cpu_access EXPORT_SYMBOL_GPL vmlinux 0xd5afa49b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0xd5cf9d92 security_inode_permission +EXPORT_SYMBOL_GPL vmlinux 0xd5cb2189 ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0xd5da05a3 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd5f317e0 __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0xd602243f crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xd6034bee gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xd605f4fb vfio_pci_core_mmap EXPORT_SYMBOL_GPL vmlinux 0xd608676e tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd60b0aae rdev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xd62b92a4 usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0xd6376b3c led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xd6444c32 mmc_pwrseq_unregister EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock EXPORT_SYMBOL_GPL vmlinux 0xd65d0d9a dev_pm_genpd_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xd66cc38d usb_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0xd670c918 usb_hub_release_port EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd68be218 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xd68295c1 crypto_unregister_aeads EXPORT_SYMBOL_GPL vmlinux 0xd68f5eee ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xd690f377 __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0xd6930ef9 acct_bioset_init EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token EXPORT_SYMBOL_GPL vmlinux 0xd6a8f4f8 _proc_mkdir EXPORT_SYMBOL_GPL vmlinux 0xd6b633d9 mddev_init EXPORT_SYMBOL_GPL vmlinux 0xd6bf625a btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xd6d0e6c8 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xd6c86471 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xd6d94063 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd6e5b08f netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0xd6ec0a50 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xd6f049f0 device_set_node EXPORT_SYMBOL_GPL vmlinux 0xd6f07a35 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xd6f92629 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xd6f67698 inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd70c3783 proc_create_net_single EXPORT_SYMBOL_GPL vmlinux 0xd7164831 iomap_truncate_page EXPORT_SYMBOL_GPL vmlinux 0xd7190265 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xd71ac60c sdio_writew EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd73679b3 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xd73ccc12 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xd73fb09a sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0xd740f9d8 of_platform_device_destroy EXPORT_SYMBOL_GPL vmlinux 0xd7468650 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xd7482401 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xd74d24a5 fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key EXPORT_SYMBOL_GPL vmlinux 0xd75b54ed unregister_virtio_driver 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 0xd783f850 is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0xd78e50ff __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xd77d454a devm_hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0xd78eb961 led_sysfs_disable EXPORT_SYMBOL_GPL vmlinux 0xd793cd4d scsi_dh_attached_handler_name EXPORT_SYMBOL_GPL vmlinux 0xd796b1f7 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd798f44a platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xd79b2fe3 sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0xd7af2354 em_dev_unregister_perf_domain EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d13405 gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy EXPORT_SYMBOL_GPL vmlinux 0xd7db780d blk_mq_free_request EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xd7e1e052 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xd7e15728 devlink_region_create EXPORT_SYMBOL_GPL vmlinux 0xd7e7e56b ata_sff_postreset EXPORT_SYMBOL_GPL vmlinux 0xd7ec5b45 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0xd7f45b42 xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0xd8060a7e pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xd811d558 inet6_destroy_sock EXPORT_SYMBOL_GPL vmlinux 0xd81598c4 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xd83a2f69 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xd8414fbc tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd837ea8a crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd85c3a19 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd859857f netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0xd867dd09 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0xd8724283 crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0xd873aa40 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xd87aa650 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xd87ab7b4 cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk EXPORT_SYMBOL_GPL vmlinux 0xd8856dd2 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xd8bba73d xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xd8ec4ecc regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd895addc regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xd8c3628f device_property_present EXPORT_SYMBOL_GPL vmlinux 0xd8eef2ac iommu_dev_disable_feature EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd9148842 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0xd91b9f93 gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk EXPORT_SYMBOL_GPL vmlinux 0xd921a591 thermal_zone_of_sensor_register EXPORT_SYMBOL_GPL vmlinux 0xd92a6aca sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd93172ae kvmppc_check_need_tlb_flush EXPORT_SYMBOL_GPL vmlinux 0xd938664b pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0xd9428a28 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xd9689ce7 regmap_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next EXPORT_SYMBOL_GPL vmlinux 0xd9745f62 kvm_alloc_hpt_cma EXPORT_SYMBOL_GPL vmlinux 0xd9776946 phy_reset EXPORT_SYMBOL_GPL vmlinux 0xd9797028 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xd980e10e shmem_file_setup EXPORT_SYMBOL_GPL vmlinux 0xd997e8ac dev_attr_em_message_type EXPORT_SYMBOL_GPL vmlinux 0xd99ef41d set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9a72725 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xd9ac628e device_change_owner EXPORT_SYMBOL_GPL vmlinux 0xd9b3607c iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xd9cbe40f dax_writeback_mapping_range EXPORT_SYMBOL_GPL vmlinux 0xd9ccf89a usb_of_get_device_node -EXPORT_SYMBOL_GPL vmlinux 0xd9cdbdb3 sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek EXPORT_SYMBOL_GPL vmlinux 0xd9f0df21 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd9f4c040 vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister EXPORT_SYMBOL_GPL vmlinux 0xda09ddcf pci_find_ht_capability EXPORT_SYMBOL_GPL vmlinux 0xda2916d0 max8997_update_reg EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda3b5bfb inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0xda432887 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0xda437b75 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xda448fe4 fib_info_nh_uses_dev EXPORT_SYMBOL_GPL vmlinux 0xda49318f phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xda49d1dc fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xda6483f6 bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0xda7ad329 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xda80478b switchdev_handle_fdb_del_to_device EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda967184 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xda9e8aa4 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xda9fb209 synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0xdaa4e099 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xdaaac913 __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdabddc45 devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xdabd9726 udp_abort EXPORT_SYMBOL_GPL vmlinux 0xdad0fc4c rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0xdad21842 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xdadc43ca devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0xdae4666a vfio_pci_core_register_device EXPORT_SYMBOL_GPL vmlinux 0xdae73694 clk_gate_ops EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb1fa1a9 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xdafc2de8 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xdb0b2546 ata_sas_sync_probe EXPORT_SYMBOL_GPL vmlinux 0xdb3794ce emulate_vsx_load EXPORT_SYMBOL_GPL vmlinux 0xdb3f25b5 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xdb47b219 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xdb47fab9 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xdb4f3528 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xdb71984b net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xdb8795ae validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb97b864 pcibios_unmap_io_space EXPORT_SYMBOL_GPL vmlinux 0xdb9e7616 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0xdbb4cf99 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xdbc5fba5 device_wakeup_disable EXPORT_SYMBOL_GPL vmlinux 0xdbc72ac2 xive_native_alloc_irq_on_chip -EXPORT_SYMBOL_GPL vmlinux 0xdbcbeafa of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xdbd42119 ata_scsi_queuecmd EXPORT_SYMBOL_GPL vmlinux 0xdbd54bc0 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xdbd7bed3 ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0xdbd8159f phy_set_mode_ext EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq EXPORT_SYMBOL_GPL vmlinux 0xdbde1cd3 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xdbe714ed xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister EXPORT_SYMBOL_GPL vmlinux 0xdbf03861 pci_add_device_node_info EXPORT_SYMBOL_GPL vmlinux 0xdbf6cfb1 ftrace_ops_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc0927f1 crypto_get_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0xdc0b2b5b opal_flash_write -EXPORT_SYMBOL_GPL vmlinux 0xdc1a731e crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xdc196ba6 __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc5827b5 unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0xdc597082 usb_phy_roothub_alloc EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc6d2a54 pcibios_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdc84c3b1 bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0xdc8e24eb devm_gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca55632 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0xdcb0a9f5 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xdcb65e7c l3mdev_table_lookup_unregister EXPORT_SYMBOL_GPL vmlinux 0xdcbcffbf rhashtable_destroy EXPORT_SYMBOL_GPL vmlinux 0xdcc00c12 usb_reset_device EXPORT_SYMBOL_GPL vmlinux 0xdcc60d19 gov_attr_set_init EXPORT_SYMBOL_GPL vmlinux 0xdcc76f00 devm_pm_opp_attach_genpd EXPORT_SYMBOL_GPL vmlinux 0xdcc90008 of_platform_depopulate EXPORT_SYMBOL_GPL vmlinux 0xdcd610bb kvmppc_inject_interrupt_hv +EXPORT_SYMBOL_GPL vmlinux 0xdcea1949 ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc EXPORT_SYMBOL_GPL vmlinux 0xdd172afc dev_pm_opp_of_add_table EXPORT_SYMBOL_GPL vmlinux 0xdd231c66 tty_ldisc_receive_buf EXPORT_SYMBOL_GPL vmlinux 0xdd26a09a tpm_put_ops EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd421fcd usb_hcd_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0xdd59ba47 clk_hw_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd6809ed i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xdd74e098 lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0xdd7a2aa8 pci_generic_config_read32 EXPORT_SYMBOL_GPL vmlinux 0xdd801dc2 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xdd808bce spi_bus_unlock EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd8fdff5 devlink_unregister EXPORT_SYMBOL_GPL vmlinux 0xdd904f42 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd9c922f device_initialize EXPORT_SYMBOL_GPL vmlinux 0xdd9fe994 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xdda9ca03 tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove EXPORT_SYMBOL_GPL vmlinux 0xddd90569 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0xdde209ec devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xddf29775 vfs_submount EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xddf57ff5 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0xde113677 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xde13d028 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xddf5ae91 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xde0de227 i2c_match_id EXPORT_SYMBOL_GPL vmlinux 0xde1a67cc cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0xde4fc607 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xde1c952c rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xde245280 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xde2c96a4 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xde3574eb devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xde3a8a9b tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xde422369 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xde4e63e4 clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0xde5741c9 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0xde584331 device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0xde5ffb49 mmc_crypto_prepare_req EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde7675aa perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0xde803112 mm_iommu_new EXPORT_SYMBOL_GPL vmlinux 0xde8485d0 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0xdea8924b gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0xdea8f27d devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xdec8de4a devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdeb1deb8 mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0xded2bf9d usb_ifnum_to_if EXPORT_SYMBOL_GPL vmlinux 0xdee01ebe analyse_instr -EXPORT_SYMBOL_GPL vmlinux 0xdeec14c7 root_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xdef2d4d7 generic_online_page -EXPORT_SYMBOL_GPL vmlinux 0xdef55255 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xdef77a5e metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xdf0b008b sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal EXPORT_SYMBOL_GPL vmlinux 0xdf1e9cfa btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdf209420 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0xdf239591 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xdf4139f5 __blk_req_zone_write_unlock EXPORT_SYMBOL_GPL vmlinux 0xdf43e19b disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xdf47ecc4 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdf45a212 trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xdf4f80e4 debugfs_create_u64 EXPORT_SYMBOL_GPL vmlinux 0xdf64c704 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xdf6d957b handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0xdf6dece8 encrypt_blob EXPORT_SYMBOL_GPL vmlinux 0xdf7be7b0 posix_acl_create EXPORT_SYMBOL_GPL vmlinux 0xdf7d8ba9 serdev_controller_add EXPORT_SYMBOL_GPL vmlinux 0xdf8f779e pci_set_pcie_reset_state EXPORT_SYMBOL_GPL vmlinux 0xdf977e69 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xdfc791b7 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0xdfa64f5a trace_event_raw_init EXPORT_SYMBOL_GPL vmlinux 0xdfc94206 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xdfca278d bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfd7466e crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xdfcd04f8 register_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xdfd84809 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xdfdf4936 crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0xdfe018b1 __iomap_dio_rw EXPORT_SYMBOL_GPL vmlinux 0xdff568cb klist_iter_init EXPORT_SYMBOL_GPL vmlinux 0xe00205a3 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xe005bf62 crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0xe00bc1fa sbitmap_finish_wait EXPORT_SYMBOL_GPL vmlinux 0xe01cda4e phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe0224854 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe0209948 dax_writeback_mapping_range EXPORT_SYMBOL_GPL vmlinux 0xe02267a9 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xe034dbf4 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xe028d51e icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xe02ee997 l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0xe03b1700 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xe03c9427 tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0xe0429f84 vfio_pci_core_read +EXPORT_SYMBOL_GPL vmlinux 0xe042ae58 xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xe047a725 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe05002db dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xe057ea4d pm_wakeup_ws_event EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe0748046 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe064bb00 perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0xe0752d91 pci_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xe077f012 usb_deregister_dev EXPORT_SYMBOL_GPL vmlinux 0xe087cc9c init_srcu_struct EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved EXPORT_SYMBOL_GPL vmlinux 0xe0a28592 pci_epf_add_vepf EXPORT_SYMBOL_GPL vmlinux 0xe0a2cc62 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xe0a5c188 sock_map_destroy EXPORT_SYMBOL_GPL vmlinux 0xe0af1b8d dw_pcie_ep_linkup EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate EXPORT_SYMBOL_GPL vmlinux 0xe0b747cf sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xe0bae69f perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0xe0bb2c6c rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0bd5e18 gpio_to_desc EXPORT_SYMBOL_GPL vmlinux 0xe0c9fb8e usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xe0caa122 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xe0d9e3a6 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xe0d312c2 regulator_set_voltage_time EXPORT_SYMBOL_GPL vmlinux 0xe0dad259 i2c_dw_probe_master EXPORT_SYMBOL_GPL vmlinux 0xe0e5f5e1 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0xe0f2d2c9 devm_platform_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0xe0fb8cb4 component_add_typed EXPORT_SYMBOL_GPL vmlinux 0xe108d302 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0xe10b0a80 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0xe10dec1e stmpe_disable EXPORT_SYMBOL_GPL vmlinux 0xe122e1ea register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xe1309a40 lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0xe13451ab clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xe148fc9a __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0xe14ed9a7 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xe15451aa device_property_read_string EXPORT_SYMBOL_GPL vmlinux 0xe161b07b trace_seq_putc EXPORT_SYMBOL_GPL vmlinux 0xe166cbd1 tty_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios EXPORT_SYMBOL_GPL vmlinux 0xe17cc4e3 md_run EXPORT_SYMBOL_GPL vmlinux 0xe18bf575 iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0xe18cca82 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0xe19391d2 trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx EXPORT_SYMBOL_GPL vmlinux 0xe1d524fd pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0xe1de5cdd ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe1e0a044 synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0xe1e55b5d sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0xe1e59258 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xe1e3d119 platform_device_add EXPORT_SYMBOL_GPL vmlinux 0xe1e6c5bc genphy_c45_pma_read_abilities EXPORT_SYMBOL_GPL vmlinux 0xe1e75fa9 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xe1e9318a devlink_port_type_eth_set EXPORT_SYMBOL_GPL vmlinux 0xe1ef5ad0 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xe1f9e849 bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0xe20b550f icc_get EXPORT_SYMBOL_GPL vmlinux 0xe20baeb3 freq_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0xe210e6db bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0xe21dd69f usb_choose_configuration EXPORT_SYMBOL_GPL vmlinux 0xe2238756 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0xe22abf1f ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xe232e036 regmap_field_read EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user EXPORT_SYMBOL_GPL vmlinux 0xe238a336 serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0xe23f3dc8 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xe23f7c3c mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xe2482661 devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe25d8849 of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0xe277209f dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xe2417224 sdio_writeb EXPORT_SYMBOL_GPL vmlinux 0xe2773fde __dma_request_channel EXPORT_SYMBOL_GPL vmlinux 0xe296cc4c divider_ro_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xe298242e wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0xe2a4c205 unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0xe2abf324 usb_hcd_unmap_urb_setup_for_dma EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2b7864f fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0xe2b96e49 of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0xe2ca999c spi_controller_dma_unmap_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe30c0717 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0xe2e66007 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xe3002c25 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xe303ba1d vfs_setlease EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec EXPORT_SYMBOL_GPL vmlinux 0xe3142b8e power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xe31b0905 sata_link_hardreset EXPORT_SYMBOL_GPL vmlinux 0xe333b8f9 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xe33cd1c5 of_clk_get_parent_name EXPORT_SYMBOL_GPL vmlinux 0xe349487f phy_power_on EXPORT_SYMBOL_GPL vmlinux 0xe34fba24 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xe35f159e sdio_claim_irq EXPORT_SYMBOL_GPL vmlinux 0xe3674dab disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xe36d4ad3 vfs_write +EXPORT_SYMBOL_GPL vmlinux 0xe37be7ce regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xe3811ade tcp_sendpage_locked EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe3862771 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xe38da715 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0xe3960d20 debugfs_create_ulong EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0xe39c3f64 pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit EXPORT_SYMBOL_GPL vmlinux 0xe3aeaa03 freq_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete EXPORT_SYMBOL_GPL vmlinux 0xe3cd34eb vp_modern_remove EXPORT_SYMBOL_GPL vmlinux 0xe3d09c2b serdev_device_write_room EXPORT_SYMBOL_GPL vmlinux 0xe3da9e8c virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xe3dc415b perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0xe3e05565 fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0xe3eb8c8e dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xe3ed88a7 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xe3ef77d1 bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe3f850bf __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xe405b589 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xe3fe2273 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xe3fe367f shmem_read_mapping_page_gfp EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv EXPORT_SYMBOL_GPL vmlinux 0xe410e21f serdev_controller_remove EXPORT_SYMBOL_GPL vmlinux 0xe4288cf5 usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0xe429c942 access_process_vm EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume EXPORT_SYMBOL_GPL vmlinux 0xe43347d3 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe44101b7 devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0xe4484f8d pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xe4678714 ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0xe47c3340 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe4574669 mmput +EXPORT_SYMBOL_GPL vmlinux 0xe46cf0f2 bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0xe479d644 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xe480657e task_cgroup_path EXPORT_SYMBOL_GPL vmlinux 0xe484c9d6 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xe48db8a2 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xe48a8c89 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe48dce61 stmpe811_adc_common_init EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot EXPORT_SYMBOL_GPL vmlinux 0xe4a19670 pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0xe4a1d973 serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0xe4b042c1 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xe4a6beae device_link_del 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 0xe4bc86d3 dma_buf_begin_cpu_access EXPORT_SYMBOL_GPL vmlinux 0xe4c0e5ec mm_iommu_put EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4c62b91 vas_paste_crb -EXPORT_SYMBOL_GPL vmlinux 0xe4de4755 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xe4c546e7 device_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4f7e96a gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xe4f09c23 hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0xe5105609 devm_extcon_dev_allocate EXPORT_SYMBOL_GPL vmlinux 0xe51aef8c of_detach_node EXPORT_SYMBOL_GPL vmlinux 0xe51f336d of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xe52c140a trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0xe52f23cd xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xe5312508 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0xe532df1e usb_debug_root EXPORT_SYMBOL_GPL vmlinux 0xe540e6b0 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0xe55f0f58 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xe566327a raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xe5585b0a fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xe5699ecc validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0xe56dc682 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xe5757543 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xe57a7150 device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5908c90 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xe58eb740 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xe593ea1e netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0xe59e4f6a ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xe5b51052 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0xe5d5d240 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xe5e326f3 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0xe5a831f1 spi_res_release +EXPORT_SYMBOL_GPL vmlinux 0xe5cfd3d2 alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0xe5ec503b __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0xe5ed4fbd kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xe5f771c2 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xe5fc18e5 icc_provider_del EXPORT_SYMBOL_GPL vmlinux 0xe60218a6 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xe6039792 cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xe624c36d pci_host_probe EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe62a705b crypto_comp_decompress EXPORT_SYMBOL_GPL vmlinux 0xe6562bd1 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xe6602e31 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6648b2f clk_register EXPORT_SYMBOL_GPL vmlinux 0xe6658b50 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xe6790f4b fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xe6980eb7 crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0xe69db948 path_noexec +EXPORT_SYMBOL_GPL vmlinux 0xe67cf519 fwnode_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0xe6a13e7d xive_native_configure_irq -EXPORT_SYMBOL_GPL vmlinux 0xe6b0c942 fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0xe6bbeb96 of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0xe6c9b5b0 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0xe6ca8dae devlink_register -EXPORT_SYMBOL_GPL vmlinux 0xe6d0556b regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0xe6e398bf crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xe6c5cb42 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xe6da0e9e devlink_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq EXPORT_SYMBOL_GPL vmlinux 0xe6ea039f dev_pm_opp_add EXPORT_SYMBOL_GPL vmlinux 0xe6f3e82a dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe6f9b5f7 crypto_register_template EXPORT_SYMBOL_GPL vmlinux 0xe6fa8d47 devm_init_badblocks EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe701f8eb device_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0xe7112794 pm_generic_thaw_noirq EXPORT_SYMBOL_GPL vmlinux 0xe7153bf9 scsi_dh_activate EXPORT_SYMBOL_GPL vmlinux 0xe716c6bb devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xe71d33f4 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xe71ad6fb hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0xe71fe38a trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0xe733f621 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0xe7391a74 skb_zerocopy_iter_dgram EXPORT_SYMBOL_GPL vmlinux 0xe750985f relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xe7531a31 thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0xe75d7c2c request_firmware_direct EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe772de30 wm8400_reset_codec_reg_cache EXPORT_SYMBOL_GPL vmlinux 0xe781fa0a pci_sriov_set_totalvfs EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit EXPORT_SYMBOL_GPL vmlinux 0xe791a3f1 cpufreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0xe7978109 regulator_set_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get EXPORT_SYMBOL_GPL vmlinux 0xe79ee080 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xe7a628a9 dev_pm_qos_hide_latency_limit EXPORT_SYMBOL_GPL vmlinux 0xe7be906b xive_irq_free_data EXPORT_SYMBOL_GPL vmlinux 0xe7c3568a tps6586x_reads EXPORT_SYMBOL_GPL vmlinux 0xe7c9116a pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xe7d006bb devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xe7d04be4 ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0xe7d34db2 opal_async_wait_response EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7e04998 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xe7e09ab2 bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0xe7e2224e rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0xe7ea6219 find_mci_by_dev EXPORT_SYMBOL_GPL vmlinux 0xe7ec8ed2 pinconf_generic_dt_subnode_to_map EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7f1f59e devlink_remote_reload_actions_performed EXPORT_SYMBOL_GPL vmlinux 0xe7f70e6f serial8250_rpm_get_tx EXPORT_SYMBOL_GPL vmlinux 0xe7fbf0e6 iommu_uapi_sva_unbind_gpasid EXPORT_SYMBOL_GPL vmlinux 0xe7fe22cb devm_regulator_register EXPORT_SYMBOL_GPL vmlinux 0xe8052614 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xe80b1942 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xe80f9447 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81de1bb regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0xe81efa9d dw_pcie_find_capability EXPORT_SYMBOL_GPL vmlinux 0xe8271f35 regulator_is_equal EXPORT_SYMBOL_GPL vmlinux 0xe82861f6 pci_ecam_map_bus EXPORT_SYMBOL_GPL vmlinux 0xe8330622 tps6586x_get_version EXPORT_SYMBOL_GPL vmlinux 0xe83b5acd dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0xe842477e task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xe8424c62 spi_slave_abort EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe8509a2e regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe857a331 crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe8680de6 scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0xe86a4c84 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xe870dbc2 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xe87e37d6 xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xe8878c70 vfs_getxattr_alloc EXPORT_SYMBOL_GPL vmlinux 0xe8945fee rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe8a9f351 fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0xe8b194c2 debugfs_create_x8 EXPORT_SYMBOL_GPL vmlinux 0xe8b30efb serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0xe8b4b188 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe8bcdeac clk_gate_restore_context EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static EXPORT_SYMBOL_GPL vmlinux 0xe8c28864 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xe8c993ab sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xe8e0d1bc gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xe8e4b42e get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xe8f05912 device_create_file EXPORT_SYMBOL_GPL vmlinux 0xe8f33492 pinctrl_dev_get_name EXPORT_SYMBOL_GPL vmlinux 0xe8f41db5 pin_get_name EXPORT_SYMBOL_GPL vmlinux 0xe8f82517 regcache_sync_region EXPORT_SYMBOL_GPL vmlinux 0xe90557cb pci_hp_add_bridge EXPORT_SYMBOL_GPL vmlinux 0xe9069b14 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0xe9078140 phy_led_trigger_change_speed EXPORT_SYMBOL_GPL vmlinux 0xe909eee3 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read EXPORT_SYMBOL_GPL vmlinux 0xe917fa05 debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0xe9284284 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0xe92bfb96 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0xe93e0441 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xe93e3d44 fwnode_graph_get_remote_endpoint EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe94d8f06 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xe94c84c6 fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction EXPORT_SYMBOL_GPL vmlinux 0xe95e32b4 component_master_add_with_match EXPORT_SYMBOL_GPL vmlinux 0xe96892c8 sync_page_io EXPORT_SYMBOL_GPL vmlinux 0xe97ba164 pm_genpd_init EXPORT_SYMBOL_GPL vmlinux 0xe98061ab dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xe99d28c0 regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xe99ed486 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe9a09dc0 __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0xe9a9b831 ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0xe9c7f9d5 fat_getattr EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap EXPORT_SYMBOL_GPL vmlinux 0xe9d35796 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9eaaa0f ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit EXPORT_SYMBOL_GPL vmlinux 0xea0f92d4 pinctrl_pm_select_sleep_state EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea21439b blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xea24d0e6 bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0xea296a45 blk_mq_quiesce_queue_nowait EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea4c51b0 sdio_claim_host EXPORT_SYMBOL_GPL vmlinux 0xea4f0e31 pci_epc_map_msi_irq EXPORT_SYMBOL_GPL vmlinux 0xea50bc8e power_supply_am_i_supplied EXPORT_SYMBOL_GPL vmlinux 0xea573b64 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xea5cb0ec device_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0xea6d5748 bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0xea6e0ed0 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xea70a823 vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0xea88c866 copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xea8f871f i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xea97b662 spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0xeaa6db14 devm_clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeaaeb44c __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xea99b595 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xeaa61c27 crypto_unregister_kpp EXPORT_SYMBOL_GPL vmlinux 0xeab28b7a devm_usb_get_phy_by_node EXPORT_SYMBOL_GPL vmlinux 0xeab4007b devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0xeab428b1 ata_dev_next EXPORT_SYMBOL_GPL vmlinux 0xeab761cc irq_gc_mask_clr_bit EXPORT_SYMBOL_GPL vmlinux 0xeac6c543 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xeac83bf1 ata_sas_sync_probe EXPORT_SYMBOL_GPL vmlinux 0xeac8672a mm_iommu_is_devmem +EXPORT_SYMBOL_GPL vmlinux 0xeac9d1ac ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0xeacafd41 regulator_map_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency @@ -24095,81 +24124,87 @@ EXPORT_SYMBOL_GPL vmlinux 0xead486fd crypto_alg_sem EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare EXPORT_SYMBOL_GPL vmlinux 0xeadf72e1 tm_abort +EXPORT_SYMBOL_GPL vmlinux 0xeadfa4a2 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae1ab00 ehci_adjust_port_wakeup_flags EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xeaf1fa9d unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0xeb1a4f29 opal_error_code -EXPORT_SYMBOL_GPL vmlinux 0xeb55b5ce i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0xeb5607a8 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xeb1c62f0 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xeb394368 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xeb5ca16c regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0xeb5ed9c3 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xeb60249e device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xeb6586bd mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0xeb70b827 rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0xeb732487 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xeb8eb03a regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xeb93ee92 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xebb93ff2 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xeb824828 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb93317e bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xebb1f303 pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0xebc0d7c4 generic_handle_domain_irq EXPORT_SYMBOL_GPL vmlinux 0xebc1d7fb ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xebc2fa4b gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebd6afcd __trace_array_puts EXPORT_SYMBOL_GPL vmlinux 0xebda69bb iommu_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xebdde08a netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xebe164ba i2c_client_type EXPORT_SYMBOL_GPL vmlinux 0xebe7f3f5 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xebf6ce1c __trace_note_message EXPORT_SYMBOL_GPL vmlinux 0xec12c5eb input_class -EXPORT_SYMBOL_GPL vmlinux 0xec20435e wm8350_reg_lock EXPORT_SYMBOL_GPL vmlinux 0xec28eda2 virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0xec356c53 msr_check_and_set EXPORT_SYMBOL_GPL vmlinux 0xec40af8c key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xec54bae2 sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0xec54cafb pci_bus_add_device EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xec6a4b11 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xec696519 inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0xec718a15 kvmppc_do_h_remove +EXPORT_SYMBOL_GPL vmlinux 0xec71da0a vas_rx_win_open EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec842b7c follow_pte EXPORT_SYMBOL_GPL vmlinux 0xec84bfb9 opal_leds_get_ind -EXPORT_SYMBOL_GPL vmlinux 0xecadb309 udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xecb440cc tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0xecb6576d md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xecbec5d6 device_find_child EXPORT_SYMBOL_GPL vmlinux 0xecbedc37 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xeceb8e2d regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xecca54ea skb_partial_csum_set EXPORT_SYMBOL_GPL vmlinux 0xecfa4c4d device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xecfff42e task_cls_state EXPORT_SYMBOL_GPL vmlinux 0xed005dea usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xed0237cc of_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xed0975ce platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xed1b6d51 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xed0c02b5 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xed114acb raw_abort EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID EXPORT_SYMBOL_GPL vmlinux 0xed3a9d86 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xed4a5c7b devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xed42657f device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xed4984e1 __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0xed4ab6ed bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xed4c6719 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xed4fa18b crypto_stats_ahash_final EXPORT_SYMBOL_GPL vmlinux 0xed56936c power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed58ec41 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xed677225 ethnl_cable_test_finished EXPORT_SYMBOL_GPL vmlinux 0xed69102a of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xed6cf6e6 bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0xed7925ab crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xed83ce64 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0xed911b83 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0xed9f1243 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xedb4fda1 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xed7f68ec fwnode_device_is_available EXPORT_SYMBOL_GPL vmlinux 0xede4f09b dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0xee00d520 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xee00e284 get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0xee05fb5f dma_free_pages EXPORT_SYMBOL_GPL vmlinux 0xee0a1a0c irq_chip_ack_parent EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xee1fb92b xdp_return_frame EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee446e80 task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0xee462af9 agp_remove_bridge EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer EXPORT_SYMBOL_GPL vmlinux 0xee51a737 exportfs_encode_inode_fh EXPORT_SYMBOL_GPL vmlinux 0xee573d3b driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xee5b4665 devlink_dpipe_table_unregister EXPORT_SYMBOL_GPL vmlinux 0xee63d00c tty_buffer_set_limit EXPORT_SYMBOL_GPL vmlinux 0xee68c98e xhci_init_driver 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 0xee70f206 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xee7e053c l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0xee914b44 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xee91f61f devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0xee9332eb of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0xee93cc52 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0xeeb4e87c l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xeea82b1e devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xeeaaf623 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xeeb9a369 find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xeec82a20 dm_noflush_suspending EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd EXPORT_SYMBOL_GPL vmlinux 0xeed84afd lochnagar_update_config @@ -24177,176 +24212,159 @@ EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run EXPORT_SYMBOL_GPL vmlinux 0xeef52282 device_release_driver EXPORT_SYMBOL_GPL vmlinux 0xeef89167 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xef08e888 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0xef0943b9 kvmppc_h_enter -EXPORT_SYMBOL_GPL vmlinux 0xef096d1d thermal_cooling_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef33c2a6 ata_ehi_clear_desc EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef536ef6 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xef46d928 ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata 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 0xef7d5c31 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xef7af2af fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0xef85182b component_add -EXPORT_SYMBOL_GPL vmlinux 0xef9eb260 bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0xefa0765a devm_phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa81e98 regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0xefaa90ce vfio_uninit_group_dev -EXPORT_SYMBOL_GPL vmlinux 0xefb0ebb1 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xefb16a5f sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0xefb7fbd3 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xefbb73bd unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0xefbe8cd0 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xefd704cb sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs EXPORT_SYMBOL_GPL vmlinux 0xeff035dc dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xeff1699e nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xf00aae35 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0xf010b0a5 vfio_pci_core_close_device EXPORT_SYMBOL_GPL vmlinux 0xf0141485 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xf027deb1 ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0xf044b4c3 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xf04c4e19 sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid EXPORT_SYMBOL_GPL vmlinux 0xf05b341f sysfs_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0xf05c5496 phy_init EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address EXPORT_SYMBOL_GPL vmlinux 0xf0683a98 devm_gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0xf08638dc md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0xf088094c device_property_present EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf0b0543e __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xf0b4cadd usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf0bac83f stmpe_reg_write EXPORT_SYMBOL_GPL vmlinux 0xf0c42b6c tpm_chip_start EXPORT_SYMBOL_GPL vmlinux 0xf0d02a17 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xf0d0d31e wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xf0d918ce thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xf0e52db0 set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xf0ee86b2 crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0xf1045757 dev_pm_genpd_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0xf10c8a0f serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xf127d6a1 ata_host_init EXPORT_SYMBOL_GPL vmlinux 0xf12fb7a4 vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xf1317a3d ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0xf139f07d regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xf13f8788 regulator_set_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0xf154af55 pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0xf17882d5 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0xf160813b tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0xf16f81c6 fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0xf17fa64e dev_pm_domain_set EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf18b2b62 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xf191fa2c inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0xf19579af uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xf1a53da5 fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1ae275c device_match_of_node EXPORT_SYMBOL_GPL vmlinux 0xf1b69185 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0xf1bcb1b5 crypto_unregister_scomp EXPORT_SYMBOL_GPL vmlinux 0xf1c23ad5 sysfs_unmerge_group EXPORT_SYMBOL_GPL vmlinux 0xf1c2bafe irq_force_affinity EXPORT_SYMBOL_GPL vmlinux 0xf1e58c40 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0xf20bd11f platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf1fb9406 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xf20bd423 phy_package_join EXPORT_SYMBOL_GPL vmlinux 0xf20c841c devm_pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0xf2171779 bsg_register_queue EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf235efb8 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf24345e8 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0xf243c58a ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xf247664a regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xf22390fb ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xf259ccbe sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xf25ccba2 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0xf2631895 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xf2674bcf device_create +EXPORT_SYMBOL_GPL vmlinux 0xf272528b ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0xf27ce43b driver_find EXPORT_SYMBOL_GPL vmlinux 0xf2800817 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0xf2877dc2 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xf287d837 sdio_get_host_pm_caps EXPORT_SYMBOL_GPL vmlinux 0xf2886559 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf28d4088 icc_node_add EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf298ab4f __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xf29ea10e init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xf2a2612d bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0xf2a3d0ca fscrypt_set_bio_crypt_ctx_bh EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xf2bafe2d __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xf2c33196 crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0xf2c3f893 nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0xf2d024ae thermal_zone_get_zone_by_name EXPORT_SYMBOL_GPL vmlinux 0xf2d53a13 scsi_dh_attach EXPORT_SYMBOL_GPL vmlinux 0xf2d9b38f devm_hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0xf2e06929 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xf2ee5de4 devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0xf2f0b73a xive_native_get_vp_state EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf3073758 pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30ac772 apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0xf30ea4a9 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xf30f184e trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0xf3191434 perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0xf319c605 vas_copy_crb EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf32e6e9b fwnode_handle_put EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf340f806 get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0xf34733f7 blk_poll EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xf35626fe rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xf35f04e9 ata_scsi_slave_destroy EXPORT_SYMBOL_GPL vmlinux 0xf3659826 iommu_report_device_fault EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit -EXPORT_SYMBOL_GPL vmlinux 0xf379aab0 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf37ed94d wm8350_block_read EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0xf38d9d9b __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xf39562cd sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0xf39a2794 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0xf3a3eef6 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0xf3acf51e gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xf39c85fa fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf39fd2f8 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xf3aa6736 gpiod_get EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b6fbbd vfs_getxattr_alloc EXPORT_SYMBOL_GPL vmlinux 0xf3da2961 tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3df12d2 phy_driver_is_genphy EXPORT_SYMBOL_GPL vmlinux 0xf3f4bd62 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xf412c372 i2c_new_scanned_device EXPORT_SYMBOL_GPL vmlinux 0xf42e5383 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0xf43b2db1 of_icc_get EXPORT_SYMBOL_GPL vmlinux 0xf4549f47 blk_queue_rq_timeout EXPORT_SYMBOL_GPL vmlinux 0xf457801b vp_modern_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0xf463943f soc_device_register EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf46a3ff8 sdio_memcpy_toio EXPORT_SYMBOL_GPL vmlinux 0xf46f7c73 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xf4743da6 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xf4726a53 flush_altivec_to_thread EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit EXPORT_SYMBOL_GPL vmlinux 0xf481d7f1 da9052_disable_irq EXPORT_SYMBOL_GPL vmlinux 0xf48f03a1 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xf48ff217 iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4b327e9 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf4c38825 __lock_page_killable EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4f94c85 of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0xf4fe2a57 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xf5255a85 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf4f41cc8 kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0xf537b37b scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xf53ad153 xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0xf53c26e0 pci_msi_unmask_irq EXPORT_SYMBOL_GPL vmlinux 0xf54500ab iommu_fwspec_init EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock EXPORT_SYMBOL_GPL vmlinux 0xf567f588 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xf5873957 __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xf58e88b0 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xf58d0e18 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xf59cc989 strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus EXPORT_SYMBOL_GPL vmlinux 0xf5a739e1 edac_mc_del_mc EXPORT_SYMBOL_GPL vmlinux 0xf5be5ac1 irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xf5c4ae3a sdio_release_irq EXPORT_SYMBOL_GPL vmlinux 0xf5cd3243 pnv_ocxl_spa_remove_pe_from_cache -EXPORT_SYMBOL_GPL vmlinux 0xf5d45e14 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0xf5da8218 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xf5e9f800 gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xf5ed2bc4 smpboot_register_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5feb64d security_path_symlink +EXPORT_SYMBOL_GPL vmlinux 0xf617292c regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0xf61ad5af kernstart_virt_addr -EXPORT_SYMBOL_GPL vmlinux 0xf61aecde spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf61d0174 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xf6274fcd bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xf62b7a5b stmpe_set_altfunc EXPORT_SYMBOL_GPL vmlinux 0xf634d32e pci_hp_add_devices EXPORT_SYMBOL_GPL vmlinux 0xf63961c6 rhashtable_walk_start_check EXPORT_SYMBOL_GPL vmlinux 0xf63edba9 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xf6434430 scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0xf64c5bd9 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xf65b94dd br_fdb_test_addr_hook EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync EXPORT_SYMBOL_GPL vmlinux 0xf67ee37d of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xf689fa85 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xf68183f9 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xf6819c34 ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0xf68c24c6 device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0xf695a04c mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0xf695dc82 pnv_ocxl_map_lpar EXPORT_SYMBOL_GPL vmlinux 0xf69976f0 edac_pci_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects @@ -24355,112 +24373,117 @@ EXPORT_SYMBOL_GPL vmlinux 0xf6a661a0 usb_check_bulk_endpoints EXPORT_SYMBOL_GPL vmlinux 0xf6b566cf clk_divider_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xf6bc5dd5 xas_get_mark EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c72fad skb_morph EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d11982 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf6cdbee8 crypto_stats_kpp_generate_public_key EXPORT_SYMBOL_GPL vmlinux 0xf6e05d25 rhashtable_init EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge EXPORT_SYMBOL_GPL vmlinux 0xf700a7d0 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xf71b547d wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xf71df489 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xf7294e67 dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size EXPORT_SYMBOL_GPL vmlinux 0xf72ac9fe __sbitmap_queue_get_shallow EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf7496487 nfs42_ssc_register 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 0xf756c2c4 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xf7640d4b ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xf758ac16 ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0xf7650a9b iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xf768fd30 bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0xf77273b3 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xf775f98d locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xf77697ba gpiochip_unlock_as_irq EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync -EXPORT_SYMBOL_GPL vmlinux 0xf7977153 skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0xf7a3d42c __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xf79fdb8e __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xf7b456ea devm_gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0xf7b5790c alarm_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0xf7b83f61 dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7d09e13 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xf7ca4818 nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xf804d40b seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0xf80c2042 srcu_barrier EXPORT_SYMBOL_GPL vmlinux 0xf81e24e1 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu EXPORT_SYMBOL_GPL vmlinux 0xf838a975 led_stop_software_blink EXPORT_SYMBOL_GPL vmlinux 0xf83d5146 pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0xf83e51d9 kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0xf83e5cea pci_disable_pri EXPORT_SYMBOL_GPL vmlinux 0xf846e6bd badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0xf84f69d3 crypto_alloc_shash EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xf87ce931 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xf864cd1c tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xf87031dd fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0xf88c6b75 irq_chip_get_parent_state EXPORT_SYMBOL_GPL vmlinux 0xf89106cb bus_create_file EXPORT_SYMBOL_GPL vmlinux 0xf89cb7fc spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0xf8a66067 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0xf8b7ab88 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xf8baf1f0 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xf8c717c2 sched_show_task EXPORT_SYMBOL_GPL vmlinux 0xf8d0aa97 kvmppc_update_dirty_map EXPORT_SYMBOL_GPL vmlinux 0xf8d9bc68 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf8dce4af tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0xf8e4046c ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0xf8e420bd sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xf8e10691 platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xf8e84f1d fat_time_unix2fat EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a490 crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0xf8fad81e regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf8fa036c ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xf902ad49 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf9090ad7 inet_hashinfo2_init_mod EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf90fe757 vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0xf91e2c0a dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0xf938a38c pcibios_free_controller_deferred -EXPORT_SYMBOL_GPL vmlinux 0xf9415fb5 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0xf94efaf3 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xf923d695 ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf95623d9 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xf96d0774 device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0xf96dca63 eeh_dev_check_failure -EXPORT_SYMBOL_GPL vmlinux 0xf97391d7 crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0xf9741751 genphy_c45_read_lpa EXPORT_SYMBOL_GPL vmlinux 0xf97471ef opal_i2c_request +EXPORT_SYMBOL_GPL vmlinux 0xf98373f0 crypto_unregister_instance EXPORT_SYMBOL_GPL vmlinux 0xf98638ac clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0xf9868ad2 vfs_write +EXPORT_SYMBOL_GPL vmlinux 0xf98f943f sdio_get_host_pm_caps EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a078fb ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xf9bd1fa8 inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xf9c551ea dma_resv_test_signaled EXPORT_SYMBOL_GPL vmlinux 0xf9caa4ee subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xf9d7c2d3 devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf9d9515b dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0xf9e5d309 blk_ksm_register +EXPORT_SYMBOL_GPL vmlinux 0xf9e6ae0f ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0xf9f696a8 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0xfa13aaf0 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0xfa053a10 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfa080fd3 device_for_each_child EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa315be1 sched_trace_rq_cpu +EXPORT_SYMBOL_GPL vmlinux 0xfa265366 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xfa381cd5 devm_device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0xfa385bf7 uart_console_write EXPORT_SYMBOL_GPL vmlinux 0xfa450f92 regulator_get_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0xfa4bd99a cpufreq_freq_attr_scaling_boost_freqs EXPORT_SYMBOL_GPL vmlinux 0xfa5aa124 devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0xfa5f86fe __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xfa604e26 crypto_stats_akcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name EXPORT_SYMBOL_GPL vmlinux 0xfa7df8f6 iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xfa82c855 phy_check_downshift EXPORT_SYMBOL_GPL vmlinux 0xfa8603db power_supply_get_by_name EXPORT_SYMBOL_GPL vmlinux 0xfa90765f relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xfaa38448 sched_trace_cfs_rq_avg EXPORT_SYMBOL_GPL vmlinux 0xfaa86ce7 vfio_group_get_external_user_from_dev EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line EXPORT_SYMBOL_GPL vmlinux 0xfabb6aff opal_flash_erase +EXPORT_SYMBOL_GPL vmlinux 0xfac1917c spi_replace_transfers EXPORT_SYMBOL_GPL vmlinux 0xfad6ab1a dw_pcie_upconfig_setup EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax EXPORT_SYMBOL_GPL vmlinux 0xfae00ff8 usb_hcd_giveback_urb EXPORT_SYMBOL_GPL vmlinux 0xfae4dc49 vp_modern_queue_vector EXPORT_SYMBOL_GPL vmlinux 0xfae6ae7d driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xfaecd58f ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xfaed0b02 ata_host_put EXPORT_SYMBOL_GPL vmlinux 0xfaf164c4 md_new_event EXPORT_SYMBOL_GPL vmlinux 0xfaf66cb7 dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xfb021703 __raw_v4_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfaf772b2 sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xfb0ce20a dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xfb1d3f7f register_trace_event EXPORT_SYMBOL_GPL vmlinux 0xfb1fd458 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xfb236bb4 replace_page_cache_page EXPORT_SYMBOL_GPL vmlinux 0xfb28ba3f blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xfb2f7ceb synth_event_create EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb570548 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xfb383584 fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0xfb57e4b0 usb_set_device_state EXPORT_SYMBOL_GPL vmlinux 0xfb612aff of_thermal_is_trip_valid EXPORT_SYMBOL_GPL vmlinux 0xfb6e9951 dummy_con @@ -24470,56 +24493,49 @@ EXPORT_SYMBOL_GPL vmlinux 0xfb743830 class_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0xfb7f8928 irq_set_affinity_notifier EXPORT_SYMBOL_GPL vmlinux 0xfb802615 tpm_try_get_ops EXPORT_SYMBOL_GPL vmlinux 0xfb818ec2 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xfb94d27d event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0xfb9cfccf led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0xfbafc0ce gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0xfbb27e4f spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xfbb8b465 __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbdaeb51 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0xfbe18a0e dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0xfbebe334 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xfbc713ad thermal_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xfbecfa0c pci_ignore_hotplug EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xfbf3a483 perf_pmu_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 0xfc080028 tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key EXPORT_SYMBOL_GPL vmlinux 0xfc1d3e46 pinctrl_find_gpio_range_from_pin EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid EXPORT_SYMBOL_GPL vmlinux 0xfc234177 _kvmppc_save_tm_pr EXPORT_SYMBOL_GPL vmlinux 0xfc269d59 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xfc372be6 sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xfc481af3 cxl_afu_put -EXPORT_SYMBOL_GPL vmlinux 0xfc4aa7f2 __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xfc5bdac7 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xfc464a86 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0xfc574511 gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xfc614bda __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0xfc683b45 has_big_cores EXPORT_SYMBOL_GPL vmlinux 0xfc9ed97e pin_user_pages_fast_only EXPORT_SYMBOL_GPL vmlinux 0xfca9ab29 register_cxl_calls EXPORT_SYMBOL_GPL vmlinux 0xfcab370f led_trigger_set EXPORT_SYMBOL_GPL vmlinux 0xfcaf49b0 trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0xfcbb1b09 vfs_removexattr EXPORT_SYMBOL_GPL vmlinux 0xfcbe7439 pci_try_reset_function EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc1696f __blkg_prfill_u64 EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcc83165 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xfce18243 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xfcec303b cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xfce980d0 i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0xfceff2d4 dax_copy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown EXPORT_SYMBOL_GPL vmlinux 0xfd36335f wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xfd3ac379 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xfd7fec79 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0xfd8ec8ac scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xfd3dc567 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xfd564f64 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xfd72b549 bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0xfd933f41 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0xfd9bccba clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0xfda1beea hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfda59eae ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xfdb39eb7 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xfdb2015e msg_zerocopy_alloc EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdd457ae nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0xfde07095 crypto_skcipher_setkey EXPORT_SYMBOL_GPL vmlinux 0xfded4202 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xfe03a6ac crypto_stats_rng_seed EXPORT_SYMBOL_GPL vmlinux 0xfe068193 blkcg_deactivate_policy EXPORT_SYMBOL_GPL vmlinux 0xfe09ca4c usb_amd_pt_check_port EXPORT_SYMBOL_GPL vmlinux 0xfe1348a2 irq_remove_generic_chip @@ -24528,60 +24544,61 @@ EXPORT_SYMBOL_GPL vmlinux 0xfe1acd7e debugfs_remove EXPORT_SYMBOL_GPL vmlinux 0xfe2c3286 usb_anchor_resume_wakeups EXPORT_SYMBOL_GPL vmlinux 0xfe362659 dev_pm_opp_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0xfe3c629f pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xfe3d6d4e devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0xfe407a46 serdev_device_wait_until_sent EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns EXPORT_SYMBOL_GPL vmlinux 0xfe4943c1 kobject_move EXPORT_SYMBOL_GPL vmlinux 0xfe499c3a noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0xfe786ace nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xfe5f86c5 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xfe601505 __ndisc_fill_addr_option EXPORT_SYMBOL_GPL vmlinux 0xfe877fd5 xas_find_conflict EXPORT_SYMBOL_GPL vmlinux 0xfe87985a power_supply_property_is_writeable EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free EXPORT_SYMBOL_GPL vmlinux 0xfeaa1558 opal_async_wait_response_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xfeabc1d9 platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xfeacb43d serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xfeb9923a __traceiter_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xfebcfb27 of_remove_property -EXPORT_SYMBOL_GPL vmlinux 0xfec99664 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xfebf4a5c device_store_bool EXPORT_SYMBOL_GPL vmlinux 0xfecd2380 cpu_add_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0xfecda173 rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed449f2 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xfed624b6 of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0xfeeaeb1f transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xfeeba45d regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xfeff00b0 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xfef3b80d icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0xfef50dbe netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0d50b5 regmap_can_raw_write EXPORT_SYMBOL_GPL vmlinux 0xff140eb3 usb_hcd_map_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert EXPORT_SYMBOL_GPL vmlinux 0xff20dbe5 pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0xff27e4d0 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xff243c5b of_clk_del_provider EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff345794 spi_bus_lock EXPORT_SYMBOL_GPL vmlinux 0xff366d16 pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xff3c057e stmpe_reg_write EXPORT_SYMBOL_GPL vmlinux 0xff3d77d3 devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0xff3f4aff spi_mem_exec_op EXPORT_SYMBOL_GPL vmlinux 0xff40c748 serial8250_rx_chars EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role EXPORT_SYMBOL_GPL vmlinux 0xff4a6f00 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xff4e5479 nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0xff5d9dd7 usb_add_phy_dev EXPORT_SYMBOL_GPL vmlinux 0xff5dbdde input_ff_flush EXPORT_SYMBOL_GPL vmlinux 0xff5dc5ee pci_user_write_config_dword EXPORT_SYMBOL_GPL vmlinux 0xff6204c5 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xff758ced of_clk_add_provider EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff85de5f __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xff8b7758 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xff99e794 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xff8c02d0 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0xff94599f aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffa0a4fd crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0xffa92a17 uart_insert_char EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies EXPORT_SYMBOL_GPL vmlinux 0xffbb953c usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xffbf0e59 ata_platform_remove_one EXPORT_SYMBOL_GPL vmlinux 0xffc18da1 unregister_kprobes EXPORT_SYMBOL_GPL vmlinux 0xffdb3ad0 led_trigger_event EXPORT_SYMBOL_GPL vmlinux 0xffdde564 blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0xfff53030 regmap_get_device EXPORT_SYMBOL_GPL vmlinux 0xffff5313 pm_runtime_suspended_time FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux IIO_ADISLIB EXPORT_SYMBOL 0x08d1a4fa adis_debugfs_reg_access drivers/iio/imu/adis_lib @@ -24597,45 +24614,45 @@ IIO_ADISLIB EXPORT_SYMBOL_GPL 0xe4cab8d0 __adis_check_status drivers/iio/imu/adi IIO_ADISLIB EXPORT_SYMBOL_GPL 0xec7fca3f devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib IIO_ADISLIB EXPORT_SYMBOL_GPL 0xfdde0a85 __adis_initial_startup drivers/iio/imu/adis_lib IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x0603839b __adis_reset drivers/iio/imu/adis_lib -IIO_HID EXPORT_SYMBOL 0x05a549c1 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x20208c4b hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x4d747643 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x595c1db0 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x64583077 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x071a4495 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x0ebcea7c hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x11f3702c hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x22003d98 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x3c5f7d99 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x477e0f7c hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger IIO_HID EXPORT_SYMBOL 0x702632d8 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x78b4056d 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 0x9bf5ab76 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xa220a857 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xce40103f hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xd0a5939a hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xea200df7 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xf0a595c2 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x2e04e45c hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x61ab4301 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xcfd80d9d hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xd6176fa9 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9e74e302 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xacc53dcc hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xc0d833c9 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xdd22a96c hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x33c20be4 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x9fbec301 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xec8ed02b hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xede37639 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common LTC2497 EXPORT_SYMBOL 0x14b92610 ltc2497core_remove drivers/iio/adc/ltc2497-core LTC2497 EXPORT_SYMBOL 0x5a3d01df ltc2497core_probe drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x000d976c mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x092b3c17 mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x1efa664c mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x1f1a5823 mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x2597b76e mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x33afe0a4 mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x40b08a19 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x59c5e926 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x63df7b96 mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x7a9a0efa mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xaef2d109 chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xbd707f99 mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xbf40e65e mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xdca9c1d9 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x13b93b4e mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2bde1246 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x514aff20 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7c76aecb mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9e15f36a mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9e87e4a8 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa08945d0 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa7fe964b mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb2439eea mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc0ab0f78 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd963b8a5 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xdc7e35c6 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xdd3413dc __mcb_register_driver drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x9006ce93 nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa96665e2 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xab408f70 nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xcf041478 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xed24f041 nvme_find_get_ns drivers/nvme/host/nvme-core +MCB EXPORT_SYMBOL_GPL 0xedad7468 mcb_unregister_driver drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x551f9c5c nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xaa0d72c9 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb85be68c nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb9ad9e7c nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xbe3d5e17 nvme_ctrl_from_file drivers/nvme/host/nvme-core PMBUS EXPORT_SYMBOL_GPL 0x2e09cfa5 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core PMBUS EXPORT_SYMBOL_GPL 0x3b90b9ab pmbus_write_byte drivers/hwmon/pmbus/pmbus_core PMBUS EXPORT_SYMBOL_GPL 0x45a5698f pmbus_set_update drivers/hwmon/pmbus/pmbus_core @@ -24656,27 +24673,27 @@ PMBUS EXPORT_SYMBOL_GPL 0xf2c76dac pmbus_update_byte_data drivers/hwmon/pmbus/pm PMBUS EXPORT_SYMBOL_GPL 0xf6f40742 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core PMBUS EXPORT_SYMBOL_GPL 0xf758f06c pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core USB_STORAGE EXPORT_SYMBOL_GPL 0x04f2513e usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x08481792 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x14d65092 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0e0acde5 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0e12b91d usb_stor_set_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 0x26cb8f25 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x3b5f1e5a usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2d341a29 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3c8957f6 usb_stor_host_template_init drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x3e88a416 usb_stor_suspend drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x46e1e0e9 usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4b89a93f usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x518b93c6 usb_stor_Bulk_transport drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x51b552de usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x76c29b23 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7c86809b usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x56d8f5cd usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7cf47ff2 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x800ab0a9 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x838f7e78 usb_stor_probe2 drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x8854b390 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8b8bb41a usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8db4e92b usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8edc330e fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb0421272 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8d32ea1a usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8d6398a5 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x92cf8966 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa0ea4127 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa21402c8 usb_stor_probe1 drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0xc1d132eb usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe18a5583 usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe2ed01bb usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe5670013 usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf13bcd2e usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf388a09c usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf43c864d usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcaff2542 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd426daab usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe7e44c5a usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xea2f235e usb_stor_CB_transport drivers/usb/storage/usb-storage diff --git a/debian.master/abi/s390x/generic b/debian.master/abi/s390x/generic index 9df37fd3bb8e4..ed3c0bdd8f22e 100644 --- a/debian.master/abi/s390x/generic +++ b/debian.master/abi/s390x/generic @@ -1,6 +1,6 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x805a0d1f crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x861ae47e crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xcbf34943 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x076295f4 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xd7b16a6f crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xed75db12 crypto_cipher_setkey 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,19 +18,19 @@ EXPORT_SYMBOL crypto/ecc 0xd6315f31 ecc_gen_privkey 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 0x1462c710 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0x34c8d693 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x43759c0d crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x4502c149 crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0x60d98ede crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0xaa0d060b crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/sha3_generic 0x08df7eb8 crypto_sha3_init -EXPORT_SYMBOL crypto/sha3_generic 0x19838b64 crypto_sha3_final -EXPORT_SYMBOL crypto/sha3_generic 0x27d6f278 crypto_sha3_update -EXPORT_SYMBOL crypto/sm2_generic 0x264dfc53 sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0x20016a25 crypto_sm3_final -EXPORT_SYMBOL crypto/sm3_generic 0x7e4a2508 crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0xb42594c8 crypto_sm3_finup +EXPORT_SYMBOL crypto/nhpoly1305 0x18acc030 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x3ac5a03a crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x3dcf1ba0 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x79f512cf crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x908186dc crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xc7d5a67f crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/sha3_generic 0x127da932 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0x59abb806 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x6c73cfa9 crypto_sha3_init +EXPORT_SYMBOL crypto/sm2_generic 0x382c029c sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm3_generic 0x9f4709e8 crypto_sm3_finup +EXPORT_SYMBOL crypto/sm3_generic 0xbbef4ae9 crypto_sm3_update +EXPORT_SYMBOL crypto/sm3_generic 0xedef5095 crypto_sm3_final 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 @@ -888,373 +888,373 @@ EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfcbca2bb ttm_tt_fini EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x01facff1 i2c_bit_add_bus EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x02a0f045 i2c_bit_algo EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x3f72d26f i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/i2c-core 0x01e068a7 i2c_smbus_read_word_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x0b404e62 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x12d4ed4a i2c_smbus_write_word_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x14146666 i2c_transfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0x204c7035 i2c_del_driver -EXPORT_SYMBOL drivers/i2c/i2c-core 0x263c3f86 i2c_smbus_write_byte_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x2ea88984 i2c_get_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x02ea91cd i2c_clients_command +EXPORT_SYMBOL drivers/i2c/i2c-core 0x03be46ff i2c_verify_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0x05ee7fb8 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL drivers/i2c/i2c-core 0x0fc02fb1 i2c_add_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x141ceb3e i2c_smbus_read_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x1c311c67 __i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x2cb7d99e i2c_smbus_read_byte_data EXPORT_SYMBOL drivers/i2c/i2c-core 0x3491d1ae i2c_smbus_pec -EXPORT_SYMBOL drivers/i2c/i2c-core 0x355a0add i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x3db6d0b5 i2c_register_driver -EXPORT_SYMBOL drivers/i2c/i2c-core 0x46ab5e35 i2c_smbus_write_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x4a6779e1 i2c_add_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x4e0bad30 i2c_verify_client -EXPORT_SYMBOL drivers/i2c/i2c-core 0x51dd70b1 i2c_transfer_buffer_flags -EXPORT_SYMBOL drivers/i2c/i2c-core 0x873645da __i2c_smbus_xfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0x926ed960 __i2c_transfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0x954a2e2a i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL drivers/i2c/i2c-core 0x978b7cf5 i2c_clients_command -EXPORT_SYMBOL drivers/i2c/i2c-core 0x9fc99b17 i2c_put_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0xb2a00258 i2c_smbus_xfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0xb7877245 i2c_verify_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0xc035d33f i2c_smbus_write_byte -EXPORT_SYMBOL drivers/i2c/i2c-core 0xf4097977 i2c_smbus_read_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xf721dc51 i2c_smbus_read_byte_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xf7a40e39 i2c_smbus_read_byte -EXPORT_SYMBOL drivers/i2c/i2c-core 0xfff5b6a4 i2c_del_adapter -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0cef6788 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x223f3588 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x43c84d59 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x58788e84 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5dc3f69f ib_create_cm_id +EXPORT_SYMBOL drivers/i2c/i2c-core 0x3494e1ca i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x3750cd5b i2c_get_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x4ce1d35c i2c_smbus_read_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0x533c0591 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x6843f116 i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x7a204927 i2c_transfer_buffer_flags +EXPORT_SYMBOL drivers/i2c/i2c-core 0x8a0a0825 i2c_del_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x8c576206 i2c_smbus_write_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0x9e9cafdb i2c_smbus_write_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa7b8e4e9 i2c_del_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0xaa288028 i2c_verify_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xb08468e9 i2c_smbus_read_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xbadcd0e0 __i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xccda9b0a i2c_smbus_write_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xe512daed i2c_register_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0xf095f783 i2c_put_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xf13cbaaa i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xfc8cddd1 i2c_smbus_write_byte_data +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0410c431 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1a7bd1bd ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x39f6ed52 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5989a2fd ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5f99c520 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x629448c9 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x64e56356 ib_send_cm_mra EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7f3308a7 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x876a8472 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8a932ede ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8aaa7cfe ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8e267961 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x91976b21 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc78b3be6 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xce5d93b9 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf0b5d870 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf4d269e9 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x023090e8 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0500490f ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6f548102 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7b5ef596 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8169dbda ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa78fe666 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb03b8475 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb676568e ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbc5ce4e1 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf26490fe ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0298576d ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0525f2be ib_free_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06830b9a ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d466edd ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e02ee94 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f6007ba rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x101f0655 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10453f1b ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10aa9961 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x115c27b8 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12f8d679 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14c8845e ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1510957d rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x152a5f79 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17091448 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x175bf31f ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18b33853 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1918ed45 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19b99318 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b9d3cdf rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20a0ed4e ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x218b2ad7 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2231206c ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23bc5b6d ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23f65534 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24333beb ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x266ae059 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28c2456f ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f8f27e5 rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fb68117 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fb6c450 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3002f140 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0783f0e8 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x080bdd7a ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09d5d2a1 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a828e29 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b0d4af1 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bb20d44 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d03df46 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0efc0292 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1095e336 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10edb388 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x114f3d84 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x120cb92e ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14fb1614 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17f940a5 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x196b262b rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19b681f7 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a73572d _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1afed562 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f01a3a5 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ffcdfed rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x209c62c6 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20ed057a ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21a89d25 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x222815b5 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23847d08 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24dabf38 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x282c0589 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28d272da ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29f0d4a5 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2db5c47a rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fdea0e8 ib_set_device_ops EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3295b4ca ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32df5960 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3709805d rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e299a29 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fa3e012 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31933b8c rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x329bd989 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33854bc4 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3652710f ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37ca7ed1 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3846759f rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cabb58a ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cdeae80 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d429c71 ib_sa_guid_info_rec_query EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fece248 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40d33cf6 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40e9c64e ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x418ef95a rdma_query_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42212bdb ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x431ccb8d rdma_destroy_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45e5ec8d ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43efdca5 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45d07dde ibdev_warn EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47642c69 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48af28d3 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49202d55 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49ec065b ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4af7862d ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c9a703c ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46696866 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x489cdf19 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49c374ad rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a75bec4 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b06d84f ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b805447 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c06113f rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d056d7b ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d674b5d ib_set_client_data 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 0x502dcf5d ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x504af4ca ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5248d5a4 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x528b0a03 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5599cef7 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x502c2add ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51f9ff70 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5266cab6 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52e6bc79 ibnl_put_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5795a2ba rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57c6c970 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5974dc83 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b33ee68 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ec24311 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x567fd8cb ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56ad3520 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5741b7c6 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x584c5d51 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x598d0972 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59c8a033 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a1839e1 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f829885 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6082667d ib_map_mr_sg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x617032f4 ib_create_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x637c6967 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x676907f5 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a05c799 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a168a59 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ab81093 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62cf2a6e rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63e30bb1 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64a7264c __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6517844d rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x663e252e ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x681a0c1f ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x690866ba ib_sg_to_pages EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cda3b69 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e582aa7 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e6e8008 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c7639e3 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d02bcd5 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d038cf9 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ebe2bad ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f244d45 rdma_get_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fae9e3c rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x722c4bbe ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x712b1f0d ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7137930f rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7170c59f ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71b2dda2 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71ea03c2 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x722307d1 rdma_copy_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74767fe5 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7533b587 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7584f545 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x742efa79 rdma_copy_src_l2_addr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7745d52a rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x778df667 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77935178 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77f33640 ib_sa_get_mcmember_rec EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78c8e727 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a5cb3f6 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a8359cc ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bad33e7 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c264dc3 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c392b1b ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7deec975 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dfd5025 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f420d3e ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f7a5744 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80cb4cd8 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81bcc6ed rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82a12552 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83083bb9 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84834324 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a1cf082 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b68f3ca ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cf56bfd ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d62bcb1 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e177f64 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e78c805 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fca4bb1 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7feaa8d4 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80403924 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81470548 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81c14856 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x845186fb rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8494c754 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84ee537d ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x864c2ee2 ib_create_qp_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87e0b856 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88215116 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8857d014 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8897ce9c rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a3ee3c9 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a8c6e97 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b98dad5 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bf564ac ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c3e227c rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ec7abfc roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90294d64 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8884eb6a ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88cf7508 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a60be0a rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a940de9 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a9c0bb4 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b0be056 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c29acf9 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c830dd4 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d7c3aec ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f0e70bd ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90219882 ib_unregister_device_queued EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91726442 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9367f0e7 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91303825 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91359c60 rdma_nl_register EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9573ffe4 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95b197d5 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95f8a674 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a0c637c ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d42b54b rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d9c2e73 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9db1f047 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2953592 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2e9b3f1 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2f8cd32 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa320d7bb ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5de8828 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6233da5 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6289068 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6501ca1 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa65d1704 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6b4abb7 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa817660 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac0ac79b rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac63baea rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95dce48b ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96cd0815 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x993cffb8 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bc8c0aa ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0f46a03 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa25e02f9 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2d1e2c9 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa41b0a03 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa786869f ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa80183cc ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8a23c7f rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8c45b44 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa2e383a ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad84ce73 rdma_nl_multicast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2fcc582 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a1aba1 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1b6935a ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2e86698 ibdev_err EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb379eb6b rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb46f1ca5 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5282cc6 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb57b5f9e ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5a81267 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5eb17a5 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb47c78cc rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5771f05 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb642d700 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb724fafb ib_get_eth_speed EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb877a23d rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9313498 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb94e626d ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb21b172 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbc8c2b6 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf7701c4 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc080ca57 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1f12f27 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2709df0 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3b1caef ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9b5f2ba ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba45479b ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbcd7752 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbf7c34d __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcf426e1 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbeb7ecb4 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc08b306f ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0d27f37 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc152da6b ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1aef108 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc234d841 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc30870d8 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc390550e ib_find_cached_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4dba8ec ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc57976fb ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5e33c82 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc681eeca ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6d72844 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc536f62 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce2b49e5 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf055512 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf1638f5 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf7d29b0 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc55641e4 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc58b7ad0 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc81980f2 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8cf1625 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcaf42f45 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbadd434 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc08192c ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc7924fe rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf5c4180 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf87b388 rdma_restrack_get_byid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd00f9384 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd16c35f4 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2202510 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4cc755a rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd54491ed rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd15419d6 ib_query_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5f80f72 ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6307dd3 rdma_user_mmap_entry_insert_range EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7fd713a ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6d5fb0f ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8353a62 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd86400c8 __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8f96abb rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9516c88 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9c565e8 ib_create_ah_from_wc EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda256be9 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb0fcc8d ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcc13dbc rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcc36997 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdef33d96 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf40eb11 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfa43d06 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0e51d19 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe44ffd10 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe485517e ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe49afb34 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcdb0943 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd9eaccf ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdffc6478 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe07e3da2 ib_register_client 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 0xe68ba241 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe74cff70 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6fa3570 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7094abc ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe750aeda ib_post_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe91ca479 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe886aecd ib_create_srq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb3dbfdb rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed54ecad ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xede57e56 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef2ac155 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefa4027b rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0afc4b9 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf18527b2 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1dda973 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2a635a6 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf327de59 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3ee283f ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3fafaed rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebde651c rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf57997f0 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5b3a9c2 ib_create_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf661c86b rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6cc4973 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf65c1b33 rdma_read_gid_l2_fields EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8527bad ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf92eec77 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf742f8a0 ib_port_unregister_client_groups EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf96fc9de ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa54c072 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc900009 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcc38488 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcd2d07c ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe7eea34 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe9cd452 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0b5d12db uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0ed54098 ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0fa3d999 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9b75d54 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc1a61f5 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd02029d rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd43341f ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfefbfc9d __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x018c71f6 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x093b409a ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x10a80d06 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1230dc12 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1aff9677 ib_umem_copy_from EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x217ccd5a ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x223fa84a uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x27458ce6 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2aa47c7e ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2b89db0a ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2f8459d8 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3aa04143 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3ebcb9f6 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x41ae5c84 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4a24ab64 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x54236e4c ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c1f5307 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2bd79d06 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2cc49384 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3fc90cab _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x402edcb9 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x41d1b298 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4b50c417 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4bd60d0d uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4ff088f0 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5b0d17fb flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5dc6eb91 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5de455ab ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x61461664 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 0x63c9d123 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x684a8b03 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6cab34c8 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7bc8b37c ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7cf474af _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x86f4b1c6 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x911eef2b ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x94df90fc flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa1f12ec2 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xacf01dd6 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xad718784 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb9f47e41 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb9f480d8 ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbc1521a9 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x68426f9d ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6fdb29c3 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x72fa1a8d uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7672f88d ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x835a1d75 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x89637b1d uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8cdc44eb uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9d6e4824 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa198fa3d uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa213bb1b _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa59c1d11 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa9735393 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb2a72836 ib_umem_dmabuf_map_pages EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc59aed94 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd1f6cb65 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdc1f8e2a uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe31103de uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xebbeab24 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf8ec2706 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfb5a1a88 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1f17599d iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4435c37a iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x48e19c19 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4e6d58d6 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x53f934b2 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7cdf7379 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8d586d6e iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdb899595 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd05f2d9f ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe268acc7 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe2f4ee0a ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe98339f1 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf414d08b ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf424b415 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x03ebe6e8 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x05bfa993 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x05c14d41 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6f4f6a75 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8b51aa6b iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x970bf86c iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb47440d0 iw_cm_reject EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x03e55d85 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x07a51f65 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0a083ac1 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a28fe37 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1b5462a6 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1e0e4744 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1fc39716 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2e9fe23e rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x34e66503 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3b6d8db8 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41579283 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x46767457 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x48e862fe rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5485e76f rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x56799af3 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x60cea166 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e25f1d3 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x74c5a9f9 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x859b908d rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ddcaab4 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf46ad77f iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x004a00d1 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x053ce172 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x08f48f8c rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0932d763 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x093bd5a3 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x172b6f35 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a30e2d5 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23c2f5df rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x38c138ea rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x453fbfe0 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x45720671 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x47143e12 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4cf4313c rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4f60571f rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x50136554 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5560229e rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5f7292e1 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x854f094e rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x863e03a4 rdma_resolve_addr EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x972d4e06 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa593c9bb rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa707932c rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa8727fdc rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa9ecd82a __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb4b9d416 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbf870719 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc836c5ac rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd9a1b61e rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdc513929 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde290115 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdec447a8 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe48eec67 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfe47bd7c rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x44c0f712 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x69602759 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc12d6fbd rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc3bb73fb rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc8537a6c rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd7ffb4f2 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xde1565a8 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9ba6cacc rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9dbb734d rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb8e71e30 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbaaf02e6 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbd6d6cc4 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc8bb950f rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xce90c6b4 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd148b451 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd7dd1190 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd81150f1 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde86301c rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdf1cbd67 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdfe8bbc3 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xefe923bb rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeffd271e rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2e462130 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x39689aa4 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa1a6b3a5 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc510cf26 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc58778c3 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xcab7cd57 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xdd2f6e7a rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x021f3380 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x4d5bb08f rtrs_ib_dev_put EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x8f6c7edf rtrs_addr_to_str EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x99b7caed sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xa2e1052c rtrs_ib_dev_find_or_add EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc28750dd rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc2ebf948 rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xede58635 rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xeea752ee rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xfa7eab08 rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x19b55975 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3c596304 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x62a84089 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x6b8eab1d rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x70a7ed01 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xdc9de173 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe1652e64 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x921516fe rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x97c4c761 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9a26ffd7 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xae05b7a4 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc5444541 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xfb3df2b8 rtrs_srv_set_sess_priv EXPORT_SYMBOL drivers/md/dm-log 0x019b995e dm_dirty_log_type_unregister EXPORT_SYMBOL drivers/md/dm-log 0x6e10471f dm_dirty_log_create EXPORT_SYMBOL drivers/md/dm-log 0xa34eb3d7 dm_dirty_log_destroy @@ -1267,222 +1267,228 @@ EXPORT_SYMBOL drivers/md/dm-snapshot 0x77f15c39 dm_exception_store_type_registe EXPORT_SYMBOL drivers/md/dm-snapshot 0xb4334cb1 dm_snap_cow EXPORT_SYMBOL drivers/md/raid456 0x7b63af50 raid5_set_cache_size EXPORT_SYMBOL drivers/md/raid456 0xf0b7c4ee r5c_journal_mode_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02502b1d mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10244b27 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20835fbf mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21c3f64d mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29eb1d9a mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x343aaccc mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x386b5bb6 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x480fbafd mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c6f63a3 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5eb1cdbb mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d720c7d mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e7e55d9 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fdde120 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76642714 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d1b3ec2 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d9b9b14 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7eb36edd mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ecd1079 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00e2e94d mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03318f2b mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03e8d726 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08570cb7 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x121504a6 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15f39583 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d17d9e9 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21b1e57a mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x281fbcb5 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34691c8f mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x371a46c9 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x398a183a mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39bfa6da mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d1732e5 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e89da6d mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42854319 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57c80caf mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x582e843d mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65a3e772 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x711deb2e mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73ca8b27 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a8b9df9 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c43b246 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c60bcf7 mlx4_SET_PORT_user_mtu 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 0x86cc9ef8 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a7d2928 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e67009f mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x900e8db9 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x964ca8dd mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ac60bfa mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f5ad80b mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f7ab154 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac179a12 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4027c82 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4fc043a mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6af2621 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcf8ab9e mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe1918a5 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc116abe5 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc533ad74 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8e09c4d mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbd87b7d mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4c14875 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5015e4c mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8df10ad mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8e9f5df get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe47d62a8 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecb09983 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6a94db4 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfca9676a mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01d350bf mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x037c0886 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8317a38a mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x895ffb41 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x907fb03b mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99a23be1 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4cd3b6a mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadaf4822 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae7f546b mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb12e72bf mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1789086 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6100937 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3eb0d1a mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce10bec5 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfd4fc48 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda4e8070 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe01bfe40 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe523eb70 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecfa5254 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefb81864 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4b8116b mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9cbaa48 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03e020c2 mlx5_eq_destroy_generic 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 0x05da2792 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08964262 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08c7ede7 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a2a5916 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0daff586 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fa67f2a mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x108d9190 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x119e2815 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x146901da mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x147fea2a mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x175e4209 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x054f51dc mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x055a1c94 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0620c6df mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x062a06fa mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x075fac64 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07f97e80 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x095ebb69 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x098c986a mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09e1aba8 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d2b8936 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11e8819e mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x137b4719 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15a1d853 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15ea0ed3 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19289e89 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d235c90 mlx5_core_create_tir 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 0x1f70e90f mlx5_core_attach_mcg 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 0x2009ae85 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x209d2705 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22686246 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ffc2cdf mlx5_core_destroy_cq 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 0x24e1dfb3 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24f3c027 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2519545d mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2563d22e mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x268e5468 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2868d0a9 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24e9d409 mlx5_core_modify_cq 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 0x29ce901c __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b090117 mlx5_core_dealloc_transport_domain 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 0x2fb92f8e mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ff46616 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3028746e __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fb8e6b3 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3171b4e0 mlx5_lag_get_peer_mdev 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 0x352b20a1 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39c936cb mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a7d3582 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a8c5e4f mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b487298 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c606ab5 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c7924c7 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c7f40dc mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40b8c22b mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36c8f248 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cd54c09 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d6f9667 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ddd2405 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f2c26ea mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4090e288 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x417a512b mlx5_fpga_get_sbu_caps 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 0x438c33e4 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43c83b83 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44bad780 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46d99c7f mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4884c553 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49229c46 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x495c541a mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cd6d084 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d32ec50 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4277d246 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x443fb540 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44d2be00 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45dd8a2e mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45ead702 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46520289 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47d81bc4 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48e60f81 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48fe66b1 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a0fd015 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d24f864 mlx5_mpfs_del_mac 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 0x4e768223 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f2b69e1 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5375fd7d mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x543f6049 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d60d7b2 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5203bbe0 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x525963ac mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5444fe49 mlx5_lag_is_master 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 0x56bf6c36 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55b56bca mlx5_cmd_destroy_vport_lag 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 0x59e611ac mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5aaadf0c mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b0e52fc mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d5ad703 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58142a56 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cd875e7 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ee77246 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x608ac2cd mlx5_free_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6433e1c7 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6678a783 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66afdf37 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68290bf5 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a0e2447 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d29443c mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x723a7e68 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x687963cc mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a41a324 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b7507ee mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bfcb874 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c1dbaf9 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c6b1cd4 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7025e0fd mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7049a484 mlx5_rl_add_rate 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 0x7322f83f mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7404cb30 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x754591ea mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x733ecc0c mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74526fa5 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7511c51d mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75f5d797 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79b4cc00 mlx5_eswitch_get_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bbc902c __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7de4f327 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f1e91fe mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d18fe9b mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e01581c mlx5_cmd_init_async_ctx 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 0x80227b41 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81ff30af mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x821e65df mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82a9fe04 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83861786 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84faa6d2 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8564f8a4 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8707d7ac mlx5_eq_disable 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 0x87598c40 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x895573a6 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x897d3d6e mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89b959f2 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8deb1d78 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8867594c mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8877a599 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c557672 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ea1d327 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fed6623 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x902f54c0 mlx5_buf_alloc 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 0x95112583 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x945e840f mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9510f459 mlx5_debug_qp_remove 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 0x96b8d2e0 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x969b26af mlx5_core_attach_mcg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9735cf24 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9873a814 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x996df8ea mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d16113a mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a7e56a3 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cd3d227 mlx5_core_query_mkey EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ec7afdf mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1dd30da mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa28a05aa mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa28ff161 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3b115a6 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa57afe1f __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6652ff7 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6da7863 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d64849e mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ee954ed mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa519f3b3 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa67ad1e8 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6bf85d9 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7083966 mlx5_comp_irq_get_affinity_mask 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 0xaaea1eec mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab7cc869 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacf50ee8 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad44d558 mlx5_core_destroy_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad759b9e mlx5_qp_debugfs_init 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 0xb380266c mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4c9606b mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb17a9036 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1ad252d mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb247adc2 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4171da6 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb64b234a mlx5_get_flow_namespace 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 0xb8a71504 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8c0841b mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb1fdc07 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb830e8a3 mlx5_cmd_cleanup_async_ctx 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 0xc1e93946 mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc829a2f8 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc89c1898 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdecc7d5 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb5b7e5d mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe35ff1b __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc302995d mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc620858d mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc67fd61a mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6d76b69 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcadfb4aa mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb249f6c mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd5dbbad mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdef815a mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce677069 mlx5_put_uars_page 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 0xd068bbc0 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0fd4f04 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5e7804d mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0febe71 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd11946af mlx5_fpga_sbu_conn_create 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 0xdc57168b mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0e77ec1 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1c60a99 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde21f012 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde76e8a5 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0c8dc1e mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe19276e3 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3bc0b07 mlx5_rsc_dump_next EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe83dc677 mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe843ead4 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9770828 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe97849cf mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb17c5c2 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe53c707f mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7ce5802 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeaf53678 mlx5_core_destroy_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef32a66c mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2417be4 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5e9bc44 mlx5_modify_header_dealloc 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 0xf7e5d1c8 mlx5_get_fdb_sub_ns 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 0xfc444613 mlx5_core_roce_gid_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe690068 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x802f2063 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff4361d6 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff757cc8 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x1e2eafde 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 0x02e8857b mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x08b1236d mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x08c1f950 mlxsw_core_trap_state_set 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 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 0x1808bb82 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b2c8cf 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 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 0x2c1cc68d mlxsw_core_rx_listener_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 0x2f2add8e mlxsw_env_get_module_eeprom -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f429949 mlxsw_core_driver_unregister 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 0x36481b07 mlxsw_core_trap_unregister 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 0x3e0a3c5b mlxsw_core_port_devlink_port_get 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 @@ -1494,11 +1500,10 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_c 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 0x62f6653c mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x632314f1 mlxsw_cmd_exec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6870981a mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x67684031 mlxsw_core_trap_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 0x749556a2 mlxsw_afk_key_info_subset @@ -1507,6 +1512,8 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77768221 mlxsw_c 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 0x827eba06 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827fae6a mlxsw_core_port_eth_set 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 @@ -1514,207 +1521,200 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87b88710 mlxsw_c EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write 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 0x96061bf0 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 0x9724b493 mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97cf0ab9 mlxsw_core_port_is_xm -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x980967d9 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa53d83a1 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9f77060a mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7c568f4 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb292367f 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 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 0xbb70e2f6 mlxsw_core_port_eth_set 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 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 0xbfe58572 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc462f9a9 mlxsw_core_skb_transmit 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 0xd07da2c6 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcd3b5096 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 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd4874014 mlxsw_core_resources_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd544dc54 mlxsw_core_ptp_transmitted 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 0xd919c392 mlxsw_afa_block_append_mirror 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 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 0xeebbbb2a mlxsw_core_driver_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 0xf7bb00ed mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfeb28205 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x63622a7d mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xa6cde938 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xaef71bab bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/phy/libphy 0x018aeb49 genphy_setup_forced -EXPORT_SYMBOL drivers/net/phy/libphy 0x0287d84e genphy_soft_reset -EXPORT_SYMBOL drivers/net/phy/libphy 0x02b02cb4 phy_ethtool_get_stats -EXPORT_SYMBOL drivers/net/phy/libphy 0x075cfbf3 phy_print_status -EXPORT_SYMBOL drivers/net/phy/libphy 0x07e10773 phy_ethtool_ksettings_set -EXPORT_SYMBOL drivers/net/phy/libphy 0x09613c07 mdiobus_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x6feb5a21 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xf1721844 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x6b1ba451 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/phy/libphy 0x012f42a0 phy_loopback +EXPORT_SYMBOL drivers/net/phy/libphy 0x022a50c0 phy_ethtool_ksettings_set +EXPORT_SYMBOL drivers/net/phy/libphy 0x098e6d8d genphy_read_status EXPORT_SYMBOL drivers/net/phy/libphy 0x0b4889e0 mdio_device_remove -EXPORT_SYMBOL drivers/net/phy/libphy 0x0bae19be genphy_check_and_restart_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x0e38bbe7 phy_support_asym_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0x0cdc298a phy_set_asym_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0x118f5674 mdio_find_bus +EXPORT_SYMBOL drivers/net/phy/libphy 0x13122043 genphy_read_abilities +EXPORT_SYMBOL drivers/net/phy/libphy 0x14b31752 phy_trigger_machine EXPORT_SYMBOL drivers/net/phy/libphy 0x169327c8 mdio_device_free -EXPORT_SYMBOL drivers/net/phy/libphy 0x16d4bbc1 phy_mac_interrupt +EXPORT_SYMBOL drivers/net/phy/libphy 0x16ae12b9 phy_validate_pause EXPORT_SYMBOL drivers/net/phy/libphy 0x1878f9ab phy_write_paged -EXPORT_SYMBOL drivers/net/phy/libphy 0x1935dfc4 genphy_read_status_fixed -EXPORT_SYMBOL drivers/net/phy/libphy 0x197faf64 phy_drivers_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x1ac49f7d __mdiobus_write -EXPORT_SYMBOL drivers/net/phy/libphy 0x1bc469e2 genphy_restart_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x2011629c phy_attached_print +EXPORT_SYMBOL drivers/net/phy/libphy 0x1e6439c9 genphy_soft_reset +EXPORT_SYMBOL drivers/net/phy/libphy 0x1f141ed2 mdiobus_read +EXPORT_SYMBOL drivers/net/phy/libphy 0x1fb854e7 mdiobus_read_nested +EXPORT_SYMBOL drivers/net/phy/libphy 0x1fe59434 phy_register_fixup EXPORT_SYMBOL drivers/net/phy/libphy 0x205c43e9 phy_read_mmd -EXPORT_SYMBOL drivers/net/phy/libphy 0x21032cdb genphy_read_lpa EXPORT_SYMBOL drivers/net/phy/libphy 0x22dde058 __phy_read_mmd -EXPORT_SYMBOL drivers/net/phy/libphy 0x28d4a9ef genphy_update_link -EXPORT_SYMBOL drivers/net/phy/libphy 0x2a3a1d74 phy_device_free +EXPORT_SYMBOL drivers/net/phy/libphy 0x23aea837 genphy_restart_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0x26f459ad phy_attached_info +EXPORT_SYMBOL drivers/net/phy/libphy 0x27b7bb23 mdiobus_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0x28e2bec9 genphy_aneg_done EXPORT_SYMBOL drivers/net/phy/libphy 0x2a3ceff7 phy_set_max_speed -EXPORT_SYMBOL drivers/net/phy/libphy 0x2a747fe4 phy_config_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x2e676bdf phy_register_fixup_for_id -EXPORT_SYMBOL drivers/net/phy/libphy 0x307f4a65 phy_ethtool_get_strings -EXPORT_SYMBOL drivers/net/phy/libphy 0x3208a821 mdiobus_register_device -EXPORT_SYMBOL drivers/net/phy/libphy 0x340ae8a1 phy_connect_direct -EXPORT_SYMBOL drivers/net/phy/libphy 0x354323b9 mdiobus_is_registered_device -EXPORT_SYMBOL drivers/net/phy/libphy 0x3736fdee phy_init_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0x2d28316c mdiobus_alloc_size +EXPORT_SYMBOL drivers/net/phy/libphy 0x2f7c2d0b phy_attach +EXPORT_SYMBOL drivers/net/phy/libphy 0x2faac539 phy_free_interrupt +EXPORT_SYMBOL drivers/net/phy/libphy 0x3334b224 __phy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0x3343c0f4 genphy_read_status_fixed EXPORT_SYMBOL drivers/net/phy/libphy 0x37b171b1 mdio_device_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x383085d4 phy_ethtool_ksettings_get EXPORT_SYMBOL drivers/net/phy/libphy 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL drivers/net/phy/libphy 0x3bfb9815 phy_disconnect -EXPORT_SYMBOL drivers/net/phy/libphy 0x3ec6f19a phy_connect +EXPORT_SYMBOL drivers/net/phy/libphy 0x3a9ba056 phy_connect_direct +EXPORT_SYMBOL drivers/net/phy/libphy 0x3c6533e6 phy_ethtool_get_sset_count +EXPORT_SYMBOL drivers/net/phy/libphy 0x3e1e5adc phy_get_internal_delay EXPORT_SYMBOL drivers/net/phy/libphy 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL drivers/net/phy/libphy 0x4511c7ff phy_attach_direct -EXPORT_SYMBOL drivers/net/phy/libphy 0x487dd37a phy_do_ioctl_running -EXPORT_SYMBOL drivers/net/phy/libphy 0x49f26f08 phy_attached_info -EXPORT_SYMBOL drivers/net/phy/libphy 0x4a155bfd mdiobus_scan -EXPORT_SYMBOL drivers/net/phy/libphy 0x4a81b773 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/phy/libphy 0x4ab03ab6 phy_get_c45_ids -EXPORT_SYMBOL drivers/net/phy/libphy 0x4e727b0c mdiobus_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0x4f78b474 get_phy_device -EXPORT_SYMBOL drivers/net/phy/libphy 0x50ab22d2 phy_start_cable_test_tdr -EXPORT_SYMBOL drivers/net/phy/libphy 0x50cf204c genphy_handle_interrupt_no_ack -EXPORT_SYMBOL drivers/net/phy/libphy 0x517d83d1 phy_start +EXPORT_SYMBOL drivers/net/phy/libphy 0x41266ebb genphy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0x47fb19f1 phy_device_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x4f2edce9 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/phy/libphy 0x500b542d phy_driver_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0x50f63757 phy_device_remove EXPORT_SYMBOL drivers/net/phy/libphy 0x55918878 mdio_driver_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x565d19d0 phy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0x567df6b0 phy_detach EXPORT_SYMBOL drivers/net/phy/libphy 0x56873f77 mdio_driver_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0x56c1448e phy_register_fixup -EXPORT_SYMBOL drivers/net/phy/libphy 0x57795454 mdiobus_unregister_device -EXPORT_SYMBOL drivers/net/phy/libphy 0x57a19da5 phy_validate_pause -EXPORT_SYMBOL drivers/net/phy/libphy 0x597127b8 phy_register_fixup_for_uid -EXPORT_SYMBOL drivers/net/phy/libphy 0x5f654912 __mdiobus_read -EXPORT_SYMBOL drivers/net/phy/libphy 0x61caf732 genphy_aneg_done -EXPORT_SYMBOL drivers/net/phy/libphy 0x64c04d8a phy_device_create -EXPORT_SYMBOL drivers/net/phy/libphy 0x64d3e575 __mdiobus_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x64f0fe4b __genphy_config_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x668d10d2 phy_set_sym_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0x5878c35a phy_ethtool_nway_reset +EXPORT_SYMBOL drivers/net/phy/libphy 0x58ad4fe0 phy_get_c45_ids +EXPORT_SYMBOL drivers/net/phy/libphy 0x5a27b16a phy_find_first +EXPORT_SYMBOL drivers/net/phy/libphy 0x5a9639b8 mdiobus_write +EXPORT_SYMBOL drivers/net/phy/libphy 0x5aafe4a9 mdiobus_write_nested +EXPORT_SYMBOL drivers/net/phy/libphy 0x5bf86e15 mdiobus_scan +EXPORT_SYMBOL drivers/net/phy/libphy 0x5c561c81 phy_set_sym_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0x5dfd672e mdiobus_unregister_device +EXPORT_SYMBOL drivers/net/phy/libphy 0x5e858e03 phy_start_cable_test_tdr +EXPORT_SYMBOL drivers/net/phy/libphy 0x5fe45b34 genphy_read_lpa +EXPORT_SYMBOL drivers/net/phy/libphy 0x60ba3a2b phy_start_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0x6544fd5c phy_get_pause EXPORT_SYMBOL drivers/net/phy/libphy 0x6692b313 mdio_device_create -EXPORT_SYMBOL drivers/net/phy/libphy 0x69f7ec39 phy_start_cable_test +EXPORT_SYMBOL drivers/net/phy/libphy 0x6ad46fcd phy_print_status EXPORT_SYMBOL drivers/net/phy/libphy 0x6bcef67a phy_modify_paged_changed -EXPORT_SYMBOL drivers/net/phy/libphy 0x6cec7cc4 phy_do_ioctl -EXPORT_SYMBOL drivers/net/phy/libphy 0x6f2b46d8 mdiobus_write -EXPORT_SYMBOL drivers/net/phy/libphy 0x72efd8e4 mdiobus_get_phy +EXPORT_SYMBOL drivers/net/phy/libphy 0x6f9f6377 phy_suspend +EXPORT_SYMBOL drivers/net/phy/libphy 0x72c4a6df phy_remove_link_mode +EXPORT_SYMBOL drivers/net/phy/libphy 0x73a42b60 phy_drivers_register EXPORT_SYMBOL drivers/net/phy/libphy 0x75f59967 mdio_device_reset -EXPORT_SYMBOL drivers/net/phy/libphy 0x77fb3cf8 mdiobus_alloc_size -EXPORT_SYMBOL drivers/net/phy/libphy 0x79680a64 phy_start_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x7cab6c7c genphy_config_eee_advert -EXPORT_SYMBOL drivers/net/phy/libphy 0x7d52ed35 phy_driver_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x7ef36d73 fwnode_phy_find_device -EXPORT_SYMBOL drivers/net/phy/libphy 0x81a334c6 phy_ethtool_set_eee -EXPORT_SYMBOL drivers/net/phy/libphy 0x829f3ff5 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/phy/libphy 0x76f3cd2a phy_register_fixup_for_uid +EXPORT_SYMBOL drivers/net/phy/libphy 0x77e8c4e9 phy_attached_print +EXPORT_SYMBOL drivers/net/phy/libphy 0x7b1f8eb4 phy_init_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0x7d294126 phy_ethtool_set_wol +EXPORT_SYMBOL drivers/net/phy/libphy 0x80777085 phy_mac_interrupt +EXPORT_SYMBOL drivers/net/phy/libphy 0x827a0c2c phy_error EXPORT_SYMBOL drivers/net/phy/libphy 0x84782e46 phy_modify_paged +EXPORT_SYMBOL drivers/net/phy/libphy 0x84f6d847 genphy_write_mmd_unsupported EXPORT_SYMBOL drivers/net/phy/libphy 0x872ebbbb __phy_write_mmd -EXPORT_SYMBOL drivers/net/phy/libphy 0x8a6dd3bc phy_find_first -EXPORT_SYMBOL drivers/net/phy/libphy 0x8e25582c phy_driver_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0x8eaf2713 phy_set_asym_pause -EXPORT_SYMBOL drivers/net/phy/libphy 0x8ed229ab phy_loopback -EXPORT_SYMBOL drivers/net/phy/libphy 0x8f2b330e phy_trigger_machine -EXPORT_SYMBOL drivers/net/phy/libphy 0x8fa9d26c phy_aneg_done -EXPORT_SYMBOL drivers/net/phy/libphy 0x9634022a phy_detach -EXPORT_SYMBOL drivers/net/phy/libphy 0x966f422a genphy_write_mmd_unsupported -EXPORT_SYMBOL drivers/net/phy/libphy 0x97ed371b genphy_read_mmd_unsupported -EXPORT_SYMBOL drivers/net/phy/libphy 0x9961e67e phy_get_pause -EXPORT_SYMBOL drivers/net/phy/libphy 0x9bf2aab4 genphy_c37_read_status -EXPORT_SYMBOL drivers/net/phy/libphy 0x9db05703 mdiobus_write_nested -EXPORT_SYMBOL drivers/net/phy/libphy 0xa1471a23 mdiobus_read_nested -EXPORT_SYMBOL drivers/net/phy/libphy 0xa20a505a phy_free_interrupt -EXPORT_SYMBOL drivers/net/phy/libphy 0xa4ee5498 genphy_read_abilities -EXPORT_SYMBOL drivers/net/phy/libphy 0xa956807d genphy_suspend -EXPORT_SYMBOL drivers/net/phy/libphy 0xa99bac88 phy_init_hw -EXPORT_SYMBOL drivers/net/phy/libphy 0xab9546fe phy_mii_ioctl -EXPORT_SYMBOL drivers/net/phy/libphy 0xaf49cb7f __phy_resume -EXPORT_SYMBOL drivers/net/phy/libphy 0xb19e7609 genphy_read_status -EXPORT_SYMBOL drivers/net/phy/libphy 0xb1d76757 phy_sfp_probe -EXPORT_SYMBOL drivers/net/phy/libphy 0xb1f85e8e phy_ethtool_set_wol -EXPORT_SYMBOL drivers/net/phy/libphy 0xb4f28d14 phy_attach -EXPORT_SYMBOL drivers/net/phy/libphy 0xb578f779 phy_reset_after_clk_enable +EXPORT_SYMBOL drivers/net/phy/libphy 0x873eb2c4 genphy_update_link +EXPORT_SYMBOL drivers/net/phy/libphy 0x89c711bd mdio_bus_type +EXPORT_SYMBOL drivers/net/phy/libphy 0x89dc1e10 __mdiobus_write +EXPORT_SYMBOL drivers/net/phy/libphy 0x8bb7eba7 phy_connect +EXPORT_SYMBOL drivers/net/phy/libphy 0x8bf15cce phy_ethtool_get_strings +EXPORT_SYMBOL drivers/net/phy/libphy 0x93494d88 phy_do_ioctl_running +EXPORT_SYMBOL drivers/net/phy/libphy 0x95ae3700 phy_driver_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x9970bc89 phy_register_fixup_for_id +EXPORT_SYMBOL drivers/net/phy/libphy 0x99edda85 fwnode_phy_find_device +EXPORT_SYMBOL drivers/net/phy/libphy 0x9d71d836 phy_ethtool_ksettings_get +EXPORT_SYMBOL drivers/net/phy/libphy 0x9db8b106 genphy_read_mmd_unsupported +EXPORT_SYMBOL drivers/net/phy/libphy 0xa2355d5b genphy_c37_config_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0xa2622197 phy_support_asym_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0xa6b60b76 phy_start_cable_test +EXPORT_SYMBOL drivers/net/phy/libphy 0xa83bcec8 phy_ethtool_get_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0xa994059e mdiobus_get_phy +EXPORT_SYMBOL drivers/net/phy/libphy 0xab4dbce5 phy_config_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0xafce46c1 __mdiobus_register +EXPORT_SYMBOL drivers/net/phy/libphy 0xb1487612 phy_aneg_done +EXPORT_SYMBOL drivers/net/phy/libphy 0xb414d889 phy_ethtool_get_wol +EXPORT_SYMBOL drivers/net/phy/libphy 0xb438b017 phy_start +EXPORT_SYMBOL drivers/net/phy/libphy 0xb45efde4 __mdiobus_read EXPORT_SYMBOL drivers/net/phy/libphy 0xb6acaa13 phy_sfp_detach EXPORT_SYMBOL drivers/net/phy/libphy 0xb6f0e1de phy_read_paged -EXPORT_SYMBOL drivers/net/phy/libphy 0xb75dd8e5 phy_drivers_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0xb719a06a fwnode_mdio_find_device EXPORT_SYMBOL drivers/net/phy/libphy 0xb82bcd46 phy_write_mmd -EXPORT_SYMBOL drivers/net/phy/libphy 0xb86da736 phy_get_eee_err -EXPORT_SYMBOL drivers/net/phy/libphy 0xbb999c9a genphy_loopback -EXPORT_SYMBOL drivers/net/phy/libphy 0xbc78df61 phy_ethtool_nway_reset -EXPORT_SYMBOL drivers/net/phy/libphy 0xc23a7eb8 phy_get_internal_delay -EXPORT_SYMBOL drivers/net/phy/libphy 0xc48f2eca phy_device_remove -EXPORT_SYMBOL drivers/net/phy/libphy 0xc4e74937 fwnode_mdio_find_device +EXPORT_SYMBOL drivers/net/phy/libphy 0xbcd9c0e3 phy_request_interrupt +EXPORT_SYMBOL drivers/net/phy/libphy 0xbdd55ee4 phy_stop +EXPORT_SYMBOL drivers/net/phy/libphy 0xc2a31cb4 phy_sfp_probe +EXPORT_SYMBOL drivers/net/phy/libphy 0xc520f222 phy_resume EXPORT_SYMBOL drivers/net/phy/libphy 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL drivers/net/phy/libphy 0xc893f1ac phy_ethtool_get_wol -EXPORT_SYMBOL drivers/net/phy/libphy 0xca5df95e phy_queue_state_machine -EXPORT_SYMBOL drivers/net/phy/libphy 0xcaeccb1b phy_suspend -EXPORT_SYMBOL drivers/net/phy/libphy 0xcf229de4 phy_stop -EXPORT_SYMBOL drivers/net/phy/libphy 0xcf8723e2 phy_device_register -EXPORT_SYMBOL drivers/net/phy/libphy 0xcfdb4a63 phy_remove_link_mode -EXPORT_SYMBOL drivers/net/phy/libphy 0xd3836de6 fwnode_get_phy_id -EXPORT_SYMBOL drivers/net/phy/libphy 0xd70910e5 phy_ethtool_get_sset_count +EXPORT_SYMBOL drivers/net/phy/libphy 0xc81e6412 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/phy/libphy 0xccc67547 phy_advertise_supported +EXPORT_SYMBOL drivers/net/phy/libphy 0xce8f8ea7 phy_get_eee_err +EXPORT_SYMBOL drivers/net/phy/libphy 0xd3516dc8 phy_ethtool_set_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0xd547c505 phy_init_hw EXPORT_SYMBOL drivers/net/phy/libphy 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL drivers/net/phy/libphy 0xd806b66c phy_ethtool_get_eee -EXPORT_SYMBOL drivers/net/phy/libphy 0xdd3614b4 genphy_c37_config_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0xe35f52ea phy_support_sym_pause -EXPORT_SYMBOL drivers/net/phy/libphy 0xe4e1e955 phy_error -EXPORT_SYMBOL drivers/net/phy/libphy 0xe6b7d224 mdio_find_bus -EXPORT_SYMBOL drivers/net/phy/libphy 0xe7ba0077 phy_attached_info_irq -EXPORT_SYMBOL drivers/net/phy/libphy 0xea7aa6cd genphy_resume -EXPORT_SYMBOL drivers/net/phy/libphy 0xf1fe4048 mdio_bus_type -EXPORT_SYMBOL drivers/net/phy/libphy 0xfa56442c mdiobus_free -EXPORT_SYMBOL drivers/net/phy/libphy 0xffd9d931 phy_advertise_supported -EXPORT_SYMBOL drivers/net/phy/libphy 0xffee8c49 phy_request_interrupt +EXPORT_SYMBOL drivers/net/phy/libphy 0xd8026446 phy_mii_ioctl +EXPORT_SYMBOL drivers/net/phy/libphy 0xd9773054 phy_attached_info_irq +EXPORT_SYMBOL drivers/net/phy/libphy 0xdc93efbf __genphy_config_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0xe2df154b genphy_check_and_restart_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0xe2edd744 phy_reset_after_clk_enable +EXPORT_SYMBOL drivers/net/phy/libphy 0xe6c84e0b genphy_suspend +EXPORT_SYMBOL drivers/net/phy/libphy 0xe9e2457a get_phy_device +EXPORT_SYMBOL drivers/net/phy/libphy 0xeacbe7b8 mdiobus_free +EXPORT_SYMBOL drivers/net/phy/libphy 0xeb1d8a4d phy_device_create +EXPORT_SYMBOL drivers/net/phy/libphy 0xeb3faad6 phy_ethtool_get_stats +EXPORT_SYMBOL drivers/net/phy/libphy 0xec1ca706 mdiobus_is_registered_device +EXPORT_SYMBOL drivers/net/phy/libphy 0xed0a85c9 genphy_config_eee_advert +EXPORT_SYMBOL drivers/net/phy/libphy 0xf0225066 fwnode_get_phy_id +EXPORT_SYMBOL drivers/net/phy/libphy 0xf3746997 mdiobus_register_device +EXPORT_SYMBOL drivers/net/phy/libphy 0xf73ae6d7 phy_attach_direct +EXPORT_SYMBOL drivers/net/phy/libphy 0xf806990c phy_support_sym_pause +EXPORT_SYMBOL drivers/net/phy/libphy 0xf9c7748f genphy_loopback +EXPORT_SYMBOL drivers/net/phy/libphy 0xf9d0541b phy_drivers_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0xfb653c6b genphy_handle_interrupt_no_ack +EXPORT_SYMBOL drivers/net/phy/libphy 0xfbe86da4 genphy_c37_read_status +EXPORT_SYMBOL drivers/net/phy/libphy 0xfc240e55 genphy_setup_forced +EXPORT_SYMBOL drivers/net/phy/libphy 0xfcf8e852 phy_disconnect +EXPORT_SYMBOL drivers/net/phy/libphy 0xfd6489d3 phy_device_free +EXPORT_SYMBOL drivers/net/phy/libphy 0xff67bb1d phy_queue_state_machine +EXPORT_SYMBOL drivers/net/phy/libphy 0xffd644d8 phy_do_ioctl EXPORT_SYMBOL drivers/net/phy/mdio_devres 0x6d62c985 __devm_mdiobus_register EXPORT_SYMBOL drivers/net/phy/mdio_devres 0xdf86ff4a devm_mdiobus_alloc_size -EXPORT_SYMBOL drivers/net/team/team 0x07d679b3 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x3f19b096 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x4fdf3689 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x76f768c1 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x90bed1ca team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x9b6eb178 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x9c3888cb team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xbbd039df team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x39a15e35 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x4cd9a51e team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x54cdda7c team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x5fee61f1 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x69a7f171 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x977a2ce1 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x98fe6c46 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xcf8de94d team_option_inst_set_change EXPORT_SYMBOL drivers/pps/pps_core 0x25a8ef90 pps_unregister_source EXPORT_SYMBOL drivers/pps/pps_core 0x512e5786 pps_lookup_dev EXPORT_SYMBOL drivers/pps/pps_core 0x69423ff7 pps_event EXPORT_SYMBOL drivers/pps/pps_core 0xb1752510 pps_register_source -EXPORT_SYMBOL drivers/ptp/ptp 0x0913b95f ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0x25a01cd9 ptp_schedule_worker -EXPORT_SYMBOL drivers/ptp/ptp 0x4f6e9c47 ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0x5932c1d4 ptp_find_pin_unlocked -EXPORT_SYMBOL drivers/ptp/ptp 0x88680def ptp_cancel_worker_sync -EXPORT_SYMBOL drivers/ptp/ptp 0xb9b8ca3d ptp_clock_register -EXPORT_SYMBOL drivers/ptp/ptp 0xcf9593a9 ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0xe84943f2 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x0009dbd9 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0x105ce9ae ptp_cancel_worker_sync +EXPORT_SYMBOL drivers/ptp/ptp 0x1175fbf9 ptp_find_pin_unlocked +EXPORT_SYMBOL drivers/ptp/ptp 0x63eb0b75 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x8888639e ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0xcfe8e5b9 ptp_schedule_worker +EXPORT_SYMBOL drivers/ptp/ptp 0xe09a9667 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xfa307230 ptp_clock_index EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x00e36880 dasd_path_remove_kobjects EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x0b1129ed dasd_block_set_timer EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1c769dc0 dasd_term_IO @@ -1841,11 +1841,11 @@ EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x404502d2 __traceiter_s390_zcrypt_rep EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x4aad03c0 cca_gencipherkey EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x4c0e5353 cca_check_secaescipherkey EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x4d271025 zcrypt_queue_free -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x4e82cdc6 zcrypt_msgtype EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x51767a51 ep11_check_ecc_key_with_hdr EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x52190334 cca_sec2protkey EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5572d56d cca_check_secaeskeytoken EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5e050fdf cca_genseckey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5ea4de79 zcrypt_msgtype EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x67cedaeb zcrypt_rescan_req EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x7dd52fc2 ep11_clr2keyblob EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x85ca4e1d __traceiter_s390_zcrypt_req @@ -1887,272 +1887,272 @@ EXPORT_SYMBOL drivers/s390/net/fsm 0xab62b304 fsm_addtimer 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 0x12e735a3 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x32b41820 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x695871d4 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6bae43d4 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x73fcb958 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa3a37d2c fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa81c4807 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc7e3d6c5 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcc3600ce fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe0d5d256 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfc65cda5 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0081ebd0 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x01bcdb95 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0734ae4f fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4f9bff5e fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x752f8e63 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7ba49dea fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x839970e9 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x97010449 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc208ee19 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcc79c9de fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe8f80249 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xed0c11eb fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfc9f01fd fcoe_ctlr_link_up EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06a1e73f fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x07833f92 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x07cb9594 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0e449dc8 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13cf7edc fc_fcp_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13eeff69 fc_seq_set_resp EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13f4aae2 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x15c2320a fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18a5a33c fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1ed6c919 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x20b598eb fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f37311c fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x20e55c2f fc_lport_set_local_id EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2188ce48 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2239f40e fc_rport_login EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x282fe281 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b2e6061 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30bad2f7 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x33a77334 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26dfcade fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c93fab5 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d71dbec fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d949999 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ca9d18e fc_linkup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x45065188 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x513137cc fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x54cfd60b fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4708b6d3 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4b85268b fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4bfc1be9 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c1f36db fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c234d9a fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d148b37 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f62a644 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x510ed0e9 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55214dee fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x56d045f2 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e80f9ae fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5fee6d45 fc_lport_iterate EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61c8ff08 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x625e9c9d fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x62b9499c fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63e87027 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aadeb9c fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x70a374e6 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x67adaa64 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x67b868d3 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aea85da fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74400c60 fc_get_host_stats EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76d4e505 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77cb7ac6 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7b51dce4 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x781b8ead fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7add1048 fc_exch_mgr_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7b9a58ca fc_lport_bsg_request EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x805a0db3 fc_fc4_register_provider EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x825faadc fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d3aa990 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x92291def fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x952c4e12 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83f14185 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x84677779 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85f7563c fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x88256bca fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c3a70d2 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9367392e fc_elsct_send EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e73d723 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e7c87e1 fc_fc4_deregister_provider EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9fd2f61a fc_lport_logo_resp EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa2b6faff fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4da97be fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa63059f2 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaebb10b5 fc_exch_mgr_free EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb28d732c fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb49d4257 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbe012d6e fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc08f5ca7 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd03f59fa fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2d4c717 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3e5b99d fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd86f1815 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd874cae2 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe0d9f795 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1cbb60f fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5a4b4a9 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5ee2e77 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc717f759 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc201ac1 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd16f0690 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd19fd73b fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe074ed2d fc_exch_mgr_add EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe26981ed fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebed59b1 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed1f287b fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf03e79f6 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe35d7350 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeb17ba2c fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf08a6c86 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf17c087a fc_get_host_speed EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1e0571d fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf230080b fc_exch_mgr_add EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2ef259b fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf71d9537 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9476c91 fc_lport_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2c441031 sas_prep_resume_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa48d9332 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc3092459 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xabac9ebe sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xbdf2c2a0 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xebba4676 sas_prep_resume_ha EXPORT_SYMBOL drivers/scsi/raid_class 0x4fa09d49 raid_class_attach EXPORT_SYMBOL drivers/scsi/raid_class 0xb762b20d raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2843a567 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x01718497 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0ac9736e fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0facb587 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x152f7042 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1c7acc4c fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2325cff8 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x266f39e2 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2eab51a1 fc_host_post_event EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3f66a2df fc_host_fpin_rcv EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5154c83e fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x556ae597 fc_vport_terminate EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x56d9ff71 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x61aef371 fc_remove_host EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x62d9f314 fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x746c71f7 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x82d46921 fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x833d1e04 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9f29f6ee fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb7fd3d35 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcabf3840 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xceb37d8d fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x674ae39c fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6e581979 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa0cdedc9 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb215972b fc_remove_host EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd9bf912f fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xee82257f fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf1b125e9 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xda5c8024 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x04dc86e9 sas_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x064adedf sas_rphy_remove EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x09079b53 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0a9d19f4 sas_release_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0aff87a7 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0c91b017 sas_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0ecccdb1 sas_rphy_add EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x10c5066c sas_rphy_delete EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x18ef522b sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1d3da050 sas_remove_host EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2432ebd5 sas_port_get_phy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x31da8453 sas_port_alloc_num EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x334fe711 sas_port_delete_phy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5383174e sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x55eb17c3 sas_release_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x611916ba sas_remove_children EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6783d295 sas_port_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7899e56f scsi_is_sas_phy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c4c7518 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fadb515 sas_remove_host EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8f8f98c3 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x940c975b sas_read_port_mode_page EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9934b8c3 sas_phy_free EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9dc4fe85 scsi_is_sas_rphy EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb47b6022 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb6d4d8b5 sas_get_address EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xca66af96 scsi_is_sas_port EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd5c7cf03 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd6861c24 sas_read_port_mode_page EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd8fddbc3 sas_expander_alloc EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xea0d88fe sas_phy_delete EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xed8873cc sas_rphy_unlink EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf148d3cc sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfa39c1dc sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x34e1504b spi_release_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4d249da4 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x863fee15 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc3d2de7f spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcb642590 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe1c2f68c spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3deb2dcd spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x62c507ee spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc7a51895 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfbd240ff spi_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x65518498 srp_rport_get EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x72d49e39 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9ca5faab srp_timed_out EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xac41116c srp_rport_put EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd9235808 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xfda7b91b srp_timed_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x007feaa9 iscsit_build_datain_pdu EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0224ec50 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x12e0ae06 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x13fd2b29 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x04130fb3 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x041a879c iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x087d8ae3 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0defb4e9 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e26ea8b iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0f033936 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x10753ae5 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x138fbf63 iscsit_check_dataout_payload EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x299297ef iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x32ff51ac iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x36689f75 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40b7be0d iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x45d02bd9 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x377de1dd iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x385b6d83 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3a153041 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42a0c35b iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x437c155a iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x438a29de iscsit_release_cmd EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4af322d0 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c5d0852 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4d975f4f iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x540623a2 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5875cada iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5c89e79d iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5cc3bfca iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5eccbf6d iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5fed9b50 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61218fd5 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6314450c iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e7ba9b6 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54bb5b2d iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5c520e1b iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5e45fe10 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62355a11 iscsit_build_nopin_rsp EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6c66d849 iscsit_stop_dataout_timer EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6c6a7f3d iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x72372dcb __iscsit_check_dataout_hdr EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x738c772f iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8516ef92 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x85d39daa iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x89b4faba iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x89baf927 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7468745e iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x772277cb iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79adb269 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x80ba6960 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8115501e iscsit_free_cmd EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f5f30c0 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x915e2ce3 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x994ee231 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x99d1491a iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e3b6cbc iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9fb12288 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0b0b063 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb64a9c52 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb74c696a iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbbd73ca5 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc3d0be2e iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf9dba07 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdfe410ad iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5ab7a06 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe83450b2 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9eb52c23 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa95d3227 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad47e17c iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb3882457 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc731c9ff iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd9da9f16 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb00dd06 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe488dc0f iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf2671b6a iscsit_build_reject EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf77b7890 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf7d96f7e iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf8913e6a iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/target_core_mod 0x010a6c7d __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x0191ea0d target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf56d233e iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf71dd1b8 iscsit_response_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x009ec030 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x01bd4678 target_show_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x022dc1a5 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x041c2d1d transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x042c9970 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x05b01f51 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x02b59453 target_wait_for_sess_cmds EXPORT_SYMBOL drivers/target/target_core_mod 0x06f9097b spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x06fd7608 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x086d3fc6 transport_init_session EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0936f306 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x0a7c89e4 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d751a02 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x120f9e68 passthrough_pr_attrib_attrs EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x178dac4e target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x188c1ed5 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x1ac67a04 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x1ae42594 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x1b83d9ff transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x1bb8bda6 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x1ebb5664 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x264cc877 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x269205d1 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x291308b7 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x2dcffcca core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x2e050a92 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x1afb516b core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x1c0d8297 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x20355631 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x20630e12 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x21ab4261 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x27dfc143 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x29de574f target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2bf15273 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e9f4e2b transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x329f334e transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x33589344 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x36a9da3b core_tpg_set_initiator_node_queue_depth EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3ab6ac58 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x3fb0c5b8 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x446091ec transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x48efbef6 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x54442674 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x5b971d26 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x61f92a7c transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ad0d230 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x436afe63 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x43a295da transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x45229e49 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x4710e473 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a75586a target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x4cbf7009 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x58808a22 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5cf7e251 transport_lookup_cmd_lun EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x63b6524d target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x63de27c5 target_submit_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x64d22f9f core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x650c955b transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d456671 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e8cd2f0 transport_free_session EXPORT_SYMBOL drivers/target/target_core_mod 0x6f4c1950 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x70745c33 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x73651a60 target_send_busy EXPORT_SYMBOL drivers/target/target_core_mod 0x756c2c09 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x7573d07d target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x77ee1d4a transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x77d5d06b target_tpg_has_node_acl EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7bebb524 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x7bff9fe8 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x83998f56 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x85cb00a2 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fbd84fc target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x86e58681 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x86fbe96d __transport_register_session EXPORT_SYMBOL drivers/target/target_core_mod 0x8703df87 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x8a8b0545 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b84a272 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9244fd82 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x97f55665 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xa343a2a7 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xa6ada80f target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xad3777b5 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xb0be3152 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x8716720e transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a24ff8f core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x923d91e6 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x963d415f target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c9c680b passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3a69519 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa9d0ca77 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xafe0358f target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xb36a4436 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9cd3fc6 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9fc1920 transport_generic_free_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0xbae0d9a3 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xbba1b297 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc5e4592 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xbf85cb98 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc049ef1b passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xc1bc2e67 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xc1bde873 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbbbe7dc9 target_nacl_find_deve EXPORT_SYMBOL drivers/target/target_core_mod 0xc578ba2d sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xcbe04377 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xcbe650a9 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xcf608897 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xd4f99d8e target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xda03ccf2 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xdb88b217 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe3e746ce target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc78aca7e transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xc86935d7 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xce26fbc8 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd513994f target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd6e1d65a transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xdab28717 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xdcad2883 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xe008b371 core_tpg_register EXPORT_SYMBOL drivers/target/target_core_mod 0xe4c541ee spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5117ea4 target_show_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0xe8e4177a core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xea458042 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xee00fdcc transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xf14a2883 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xf207ab5d target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2c31ee7 target_put_sess_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xfad22491 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xfc22abe7 passthrough_attrib_attrs EXPORT_SYMBOL drivers/target/target_core_mod 0xfcdafc11 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xfe5eeeca transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd7959de target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xfe5ba899 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xffc216f3 target_backend_unregister EXPORT_SYMBOL drivers/tty/serial/serial_core 0x133dafb3 uart_match_port EXPORT_SYMBOL drivers/tty/serial/serial_core 0x7777f22b uart_resume_port EXPORT_SYMBOL drivers/tty/serial/serial_core 0x7f42b222 uart_write_wakeup @@ -2236,11 +2236,11 @@ EXPORT_SYMBOL fs/fscache/fscache 0xead39eb4 __fscache_read_or_alloc_pages EXPORT_SYMBOL fs/fscache/fscache 0xfa909eee fscache_put_operation EXPORT_SYMBOL fs/fscache/fscache 0xfbc646ab __fscache_disable_cookie EXPORT_SYMBOL fs/fscache/fscache 0xfcb172f8 fscache_mark_page_cached -EXPORT_SYMBOL fs/netfs/netfs 0x80e5c5de netfs_readpage -EXPORT_SYMBOL fs/netfs/netfs 0x937e8e0a netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0xab1127a6 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x10e9f5aa netfs_readpage +EXPORT_SYMBOL fs/netfs/netfs 0x14edd7e7 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0xa5d15e78 netfs_readahead EXPORT_SYMBOL fs/netfs/netfs 0xc826301e netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0xe21add39 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xf6d4bdb6 netfs_subreq_terminated EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active EXPORT_SYMBOL fs/quota/quota_tree 0x19eeaad4 qtree_entry_unused EXPORT_SYMBOL fs/quota/quota_tree 0x2051121c qtree_release_dquot @@ -2354,382 +2354,382 @@ EXPORT_SYMBOL lib/zstd/zstd_compress 0xe14f9e35 ZSTD_compressBlock 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 0xbadc33e9 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xf1264953 register_8022_client -EXPORT_SYMBOL net/802/psnap 0x6ce506a0 register_snap_client -EXPORT_SYMBOL net/802/psnap 0xd7d68e5c unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0075e740 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x091fc402 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x0c952f33 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x129808f0 p9_client_walk +EXPORT_SYMBOL net/802/p8022 0xf7ffa149 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xf856653a unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x0ba07b74 register_snap_client +EXPORT_SYMBOL net/802/psnap 0x40930531 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x027c5873 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x10e68272 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x12a61817 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x14d7dabe p9_tag_lookup EXPORT_SYMBOL net/9p/9pnet 0x16df3f8e p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x217aa3bc p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x291e11bb p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x2a2c1e45 p9_client_wstat EXPORT_SYMBOL net/9p/9pnet 0x2ab2c380 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x34ce3011 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x35470f53 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x3738488e p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x3960f16d p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x34ea94d1 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x36ebef9f p9_client_create_dotl EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x4a8b9d5c p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0x4f9fac2d p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x4fab50c5 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x40d6ce9d p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x4f868d18 p9_client_link EXPORT_SYMBOL net/9p/9pnet 0x518f3d6a p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x5954a031 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x61451a76 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x6f84e153 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x560bad79 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x62dd8795 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x6a38c876 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x6a83d9a5 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x6ea3a5c6 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x6ebab31a p9_client_walk EXPORT_SYMBOL net/9p/9pnet 0x7050985d v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x7326a25c p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x7c697bf4 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x7e50c673 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x81e0fd80 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x82c51d14 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x84a40e4f p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x8c1578ab p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x8c20153e p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x995e5bc6 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xa54823f2 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x91d8c107 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x954932dc p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x9794f16f p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xa266bfa0 p9_client_readlink EXPORT_SYMBOL net/9p/9pnet 0xa79514e5 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xa90ed0dc p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa9fab309 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xaa553234 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xaacb9a47 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xad53b1db p9_client_destroy EXPORT_SYMBOL net/9p/9pnet 0xaf71f0d4 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0xba553e4f p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xbb40130b p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xbc79ab59 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xb1d518bd p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xb49ca761 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbdbacf6b p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xc0ffdf87 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xc6b68bf1 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xc74746ee p9_client_clunk EXPORT_SYMBOL net/9p/9pnet 0xc7bad4fc p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0xcb4aef44 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0xccd7f983 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xce0259b6 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xd04cc66a p9_client_create EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd3ad3be9 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0xd667a361 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xdc78f231 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0xdf44ba3b p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xd673f26a p9_client_mknod_dotl EXPORT_SYMBOL net/9p/9pnet 0xdfba9edc v9fs_unregister_trans EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe5da77b5 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xe6113d0d p9_client_renameat EXPORT_SYMBOL net/9p/9pnet 0xe75b6738 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xe9de38e6 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xefc8f825 p9_client_clunk -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x23764f82 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2859e380 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3a146e17 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8631aeca ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xbb42b79b ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd4636690 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/ceph/libceph 0x02a29336 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x03c499d5 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x06456b25 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/9p/9pnet 0xec8cae29 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xefae685f p9_client_read_once +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x124e6570 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4b6634b3 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x73dfa211 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8f889dd3 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb733bb35 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe098dabd ebt_register_table +EXPORT_SYMBOL net/ceph/libceph 0x044b0a74 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x04ee9e2b ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x06a6a984 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x0a83f62a ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x0af6de30 ceph_create_client EXPORT_SYMBOL net/ceph/libceph 0x0ce74839 ceph_pagelist_set_cursor EXPORT_SYMBOL net/ceph/libceph 0x0e776b7e ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x0e9221b0 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x136efe1f ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x14924e88 ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0x150170da ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x18660fcb ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x1957e925 ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0x1b978a6f ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x1e097820 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x2041751b ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x12e2da2f ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x1a13d446 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1a162fc4 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x1dfef70c ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x1f1aaa36 ceph_check_fsid EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20d87279 ceph_osdc_abort_requests EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x24c6cf81 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x2632975d osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x264c3ee6 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x26c7934c ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0x29f24704 ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0x2ba9f40b ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x2d737289 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x323fc6ea ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x32dc3d08 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x250dc93a osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x25d741af osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x26056374 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x2815972e osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x2921df75 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x296b8b55 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x2ac7285c osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x3139227b ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x31772e23 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x32884a0d osd_req_op_alloc_hint_init EXPORT_SYMBOL net/ceph/libceph 0x3524c308 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x35f60ed5 ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0x3746c25c ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x38a8b8fe ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x37d5528f osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x38acbd90 ceph_osdc_unwatch EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x39888540 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x3b51220b ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x3baec8e3 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x3c0af2fb ceph_osdc_copy_from EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3cef7896 ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x3ebd2cbc ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x4001c50e osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x3da7ddac osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x3ec70bf4 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x40775515 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x4249fe14 ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4ddb1377 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x46c54651 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x48fd534f ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x49f70436 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x4c03c7c5 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x4fe34447 ceph_cls_assert_locked EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x51772084 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x517a2512 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x51586ce7 ceph_parse_mon_ips EXPORT_SYMBOL net/ceph/libceph 0x52e131f0 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x53e53ab2 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x56656904 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x56266cc0 ceph_cls_set_cookie EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x58d2cd13 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x5919fdf7 ceph_cls_lock_info EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5d4baecb ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x5e170071 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x5f953e0a ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x621057ad __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x5defaf61 ceph_cls_break_lock EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x645ad652 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x670dd956 ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x6762fc62 ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0x682c1c55 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x68f88b41 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x64821a33 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x64d27ab4 ceph_client_addr EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6c5849bb ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x6ebf0d2a ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x748b9c04 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0x7626ddc4 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x7781088b osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x6e92c150 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x71351264 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x72e0d0e3 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x7535fdc8 ceph_osdc_maybe_request_map EXPORT_SYMBOL net/ceph/libceph 0x7790a91c ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0x7fe5e592 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x789204d6 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x795dada0 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x7a701b9e ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x7e38f799 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x7e59d3f2 ceph_osdc_clear_abort_err EXPORT_SYMBOL net/ceph/libceph 0x8111e973 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x8175e998 ceph_msg_put EXPORT_SYMBOL net/ceph/libceph 0x81d82bea ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x8255e648 ceph_monc_stop EXPORT_SYMBOL net/ceph/libceph 0x8375650f ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0x85a2de51 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x84550998 ceph_auth_handle_bad_authorizer EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x8b0594c1 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x923fdd93 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x89ce8d88 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8e32f5e1 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x8e709bff ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x8ef6e7f9 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x92670db9 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x93a87c4f osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x9487f7c7 ceph_copy_to_page_vector EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x98f75512 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x9c0f2868 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x99d79f71 ceph_cls_unlock EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9d24db13 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x9d487495 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x9de445b4 ceph_osdc_flush_notifies EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping EXPORT_SYMBOL net/ceph/libceph 0xa376f5df ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xa3d0e357 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0xa3f4a2d8 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xa4645979 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xa57a5188 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xa51b23df ceph_monc_wait_osdmap EXPORT_SYMBOL net/ceph/libceph 0xa58b7e99 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0xa59a2e9f ceph_open_session EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa70cd461 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0xa828e32c ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xa9291e31 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xace2d279 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xa6afd622 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xa6d71409 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xa7702b12 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xa8188958 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xa8b4f379 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0xa9364af2 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xaa9a7845 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xacd5d2f0 ceph_put_page_vector EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xad814baf ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xae6fbffd osd_req_op_init EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb19952c2 ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0xb23b3c8a ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xaffd2576 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xb14d79b4 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xb36d84be ceph_osdc_watch EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb550d2ea ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xb6bac65a osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xb6cf1b2f ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0xb7215811 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xb6ac30be ceph_auth_handle_svc_reply_more 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 0xbb620fa8 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xbc07c820 ceph_msg_new EXPORT_SYMBOL net/ceph/libceph 0xbc98cee2 ceph_oloc_copy EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xc1376f7e ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xc1b199ad ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xc5c508c7 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0xc7b8fe0c ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xbf03089b osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xc2b6a21c ceph_parse_param EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcaa1c624 osd_req_op_cls_request_data_pages EXPORT_SYMBOL net/ceph/libceph 0xcab25d94 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xcd1ff11d ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0xcdc7c41a ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0xcffb78a0 ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xd0b473f5 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xd16464fa ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0xd259dad1 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0xd3e2b625 ceph_monc_blocklist_add EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd9c94640 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xdae3ecab ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xde66e71d ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xd5014c25 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xd53040fb ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xd7298446 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xdc75a7ae ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xdd400e19 osd_req_op_cls_init EXPORT_SYMBOL net/ceph/libceph 0xdeddd368 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xdf259e67 ceph_msg_dump EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe0f075e5 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xe125bca7 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xe17e22dd ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xe52bc893 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0xe7d2f801 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xe1dd195c ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0xe207ee50 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xe31869b5 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xe4e6b874 ceph_auth_verify_authorizer_reply EXPORT_SYMBOL net/ceph/libceph 0xe85108a4 ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xed4374be ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xe8690532 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xed910856 ceph_con_close EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string -EXPORT_SYMBOL net/ceph/libceph 0xeec94c5e ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xeeadbc6a ceph_wait_for_latest_osdmap EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents -EXPORT_SYMBOL net/ceph/libceph 0xf0f87208 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xefdfb148 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xf1a0faca osd_req_op_extent_update EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank -EXPORT_SYMBOL net/ceph/libceph 0xf2ce2bf9 ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xf46d7c6b ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0xf4b185b9 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0xf5a1937e osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xf6e60b12 ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0xfa3c2cf5 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0xfaed661b ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xff2e0ae3 ceph_parse_param -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x10e6fecd dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xba1f278b dccp_req_err +EXPORT_SYMBOL net/ceph/libceph 0xf5c5a3c3 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xfee396b2 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xff43af61 ceph_cls_lock +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xbb9ee102 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xc098f520 dccp_syn_ack_timeout EXPORT_SYMBOL net/ipv4/fou 0x3899cd11 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x8a6a4d62 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x5e42e103 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xb21f3940 __fou_build_header EXPORT_SYMBOL net/ipv4/fou 0xdef70806 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xf539a4ec __gue_build_header -EXPORT_SYMBOL net/ipv4/gre 0x847eeaf7 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x131c9a3e ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1d54e688 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc66b0cea ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe167f425 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x45d63941 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8a4504bf arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe5461fa3 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xfd61141e arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x01db8841 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x9fea9753 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa1a5dd2b ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf548ba2b ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x64783795 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xd46221e9 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xc64e10ce udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x067622cd ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x22baa018 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2e218467 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3ff77415 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5fd6abc3 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5fe8e6e6 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6a41775a ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe7229075 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf2ed145d ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x28c1d1f5 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3d4b32ba ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5aec1ceb ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xce0d7245 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x40a4d306 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xd6be58c8 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x40783a25 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x8f8b0632 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/llc/llc 0x17d090ba llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x272439df llc_mac_hdr_init +EXPORT_SYMBOL net/ipv4/gre 0xbfbc36f5 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x05886cdb ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x37f3b8b3 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x772e68c2 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xccd80f7b ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x415b172b arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x698c2c5c arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc6bad069 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe6b7b419 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2ab75dfb ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4e3954bb ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7149cc56 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe0ecdc0f ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0x1313aeb8 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xbf2e5eaf xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xb87bbecf udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x037f4070 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x31f9f2dc ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x37e71ceb ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4974c36a ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x54703fec ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7833aa65 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb1ad86ea ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb4970aa0 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc50a47b7 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x58ff16a0 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5adbd165 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8641c999 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb39961cf ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x997c5a3b xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x9ed2e769 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x700932c9 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x82463cb1 xfrm6_tunnel_spi_lookup EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x40764496 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x47f1ace4 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x3a92deeb llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x40e30db6 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x4d14cfc2 llc_sap_find EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0xd0e22de3 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xd11a9254 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0xd66db7e9 llc_set_station_handler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x03c2b3c7 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x13bcef86 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x222e25b4 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x37bff0d6 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3eded254 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x40b9393d unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x462cd128 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5dcf131b register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa52b5b63 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa76421c8 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb92cde79 ip_vs_conn_put +EXPORT_SYMBOL net/llc/llc 0x568a0a7a llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x62977cba llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xe66b9c9e llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xf50db97a llc_sap_open +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2c8153df register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3ac16b80 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x40ac8629 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x44efebb6 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x457f3c18 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x54bfd928 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x724fcc52 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x82320d9a ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8a388ce1 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb38b9844 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbd3012a7 register_ip_vs_scheduler EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xedd0fb34 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf1831267 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf37313aa ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf4b8d773 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe730b845 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf3b02223 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf8f3bf54 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xff82c64f register_ip_vs_app +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x2e1813d0 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xfcb3d7f6 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x3cdc3546 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x7f4299bb nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xc05e317a nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xe442c998 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x52d4df40 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x5b736b5a __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xabbea6df nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xbca81bda nf_nat_setup_info EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x0a38d06c xt_unregister_matches EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x25ee3bc6 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x2a449937 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x1e66f653 xt_find_match EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x68f2d149 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x6b487e20 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x6f250206 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x56d25bc3 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x5a8afa0d xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x6e1d78ad xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x75976d22 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x7e48512a xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x819cdb34 xt_unregister_target EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa3190cf9 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xad3a96df xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd5843f3d xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0xd694b928 xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xd977cff3 xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xea8a0217 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xfaf00148 xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0e43a40d rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1d618dda rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1ee30b72 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2aaf5c06 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3125db02 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x12532f38 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1367809d rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x13c04e7f rxrpc_kernel_get_reply_time EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x36a0703a rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5638a33a rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5664cc2e rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x620a9677 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6a907665 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa78900d5 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb5b7bad8 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc0145352 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc4e0a69e rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc70841fd rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe230177a key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf933d781 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xfe1a0b47 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/sctp/sctp 0xc3a47960 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x31a7079c gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x9353ffc9 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x98180d3b gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x45189ce6 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x50f29e0d get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0xd872b28f svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xf46cec85 xdr_truncate_encode -EXPORT_SYMBOL net/tipc/tipc 0x47d19dcc tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0x4a3f5812 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x68bb0e71 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0xfbb4ee10 tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0xf65e6f2a tls_get_record -EXPORT_SYMBOL vmlinux 0x0004a9c6 dev_addr_init +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3222ec33 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x342cb4b2 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3ec1fb7e rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4ecb7ec3 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6faa9000 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x83b4453d rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x853f11f6 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb00c8159 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc3973969 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcfa7e9b9 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe421fd61 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe4c8f70a rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xee649883 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfb24ac5f rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfc154283 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/sctp/sctp 0x14806d22 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x08d63f44 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x5fe101ba gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x891eff00 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x18664d0f svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x516ff505 get_srcport +EXPORT_SYMBOL net/sunrpc/sunrpc 0x63e3ff21 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xfce9f4d8 xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x29e73bc7 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xb4eb1c45 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xb8631474 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xff3972c8 tipc_dump_start +EXPORT_SYMBOL net/tls/tls 0x2f1adaec tls_get_record EXPORT_SYMBOL vmlinux 0x0008dc08 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x00322f07 security_path_rename -EXPORT_SYMBOL vmlinux 0x00423bf0 free_buffer_head -EXPORT_SYMBOL vmlinux 0x00458f31 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x000d40c8 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x000d6bd9 udp_pre_connect EXPORT_SYMBOL vmlinux 0x005eca05 reset_guest_reference_bit -EXPORT_SYMBOL vmlinux 0x006fb823 kern_path_create +EXPORT_SYMBOL vmlinux 0x00652365 tcp_enter_cwr EXPORT_SYMBOL vmlinux 0x00728cb2 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x009e49e4 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x00af1f4a fd_install EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00c124e4 free_task -EXPORT_SYMBOL vmlinux 0x00cabb7a ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0x00dc035f inet_frags_init -EXPORT_SYMBOL vmlinux 0x00ec4412 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x00d92949 xp_dma_unmap EXPORT_SYMBOL vmlinux 0x00f4a223 _ebc_toupper EXPORT_SYMBOL vmlinux 0x00fe4ccd padata_do_parallel EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x01002801 qdisc_put_unlocked EXPORT_SYMBOL vmlinux 0x014716eb hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x01471c8a security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x0147c484 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x0148bf71 dev_get_flags -EXPORT_SYMBOL vmlinux 0x0151e3ea generic_fillattr EXPORT_SYMBOL vmlinux 0x015af7f4 system_state EXPORT_SYMBOL vmlinux 0x0167a2b1 d_alloc_name -EXPORT_SYMBOL vmlinux 0x016fab9a _dev_info EXPORT_SYMBOL vmlinux 0x0174228c tty_port_tty_set EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete EXPORT_SYMBOL vmlinux 0x018b326e iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x0199b769 udp_push_pending_frames EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x01a0b1b1 tso_start EXPORT_SYMBOL vmlinux 0x01a20ede radix_tree_tag_set EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01c2410f blk_get_queue +EXPORT_SYMBOL vmlinux 0x01da3ecd vfs_create_mount EXPORT_SYMBOL vmlinux 0x01e1bd1a sb_set_blocksize EXPORT_SYMBOL vmlinux 0x01e1ec00 utf8_strncasecmp_folded EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x021b084a sock_create_kern EXPORT_SYMBOL vmlinux 0x0220450b dup_iter -EXPORT_SYMBOL vmlinux 0x0238855e __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x0226f357 km_policy_expired +EXPORT_SYMBOL vmlinux 0x02375d93 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x023f7a70 dev_uc_add +EXPORT_SYMBOL vmlinux 0x02484040 dev_get_flags EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x029dd0aa dev_addr_init +EXPORT_SYMBOL vmlinux 0x02a5e53c skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0x02a6878c request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x02a8528e security_sctp_bind_connect EXPORT_SYMBOL vmlinux 0x02ca22a8 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0x02dd6efd __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0x02f034a1 xz_dec_run EXPORT_SYMBOL vmlinux 0x02f4d77f __SCK__tp_func_s390_cio_tpi +EXPORT_SYMBOL vmlinux 0x03138d1f sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x03266d24 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x032a4260 scsi_remove_host EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl EXPORT_SYMBOL vmlinux 0x034a7afe idr_destroy EXPORT_SYMBOL vmlinux 0x03511a90 dquot_claim_space_nodirty @@ -2737,239 +2737,225 @@ EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x038762c8 idr_get_next_ul -EXPORT_SYMBOL vmlinux 0x0397eca7 has_capability EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs EXPORT_SYMBOL vmlinux 0x039ebf78 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x03a810cc inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x03d1cfac mark_buffer_write_io_error EXPORT_SYMBOL vmlinux 0x03d2240c add_virt_timer_periodic +EXPORT_SYMBOL vmlinux 0x03d6f4d6 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x03f0693e unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram EXPORT_SYMBOL vmlinux 0x0400706c iov_iter_revert EXPORT_SYMBOL vmlinux 0x040844cc inode_init_always +EXPORT_SYMBOL vmlinux 0x040fab04 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x043dfb19 follow_down EXPORT_SYMBOL vmlinux 0x04444662 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x0446c1c3 get_fs_type EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator EXPORT_SYMBOL vmlinux 0x044f286f dm_put_device -EXPORT_SYMBOL vmlinux 0x04739025 udp_read_sock +EXPORT_SYMBOL vmlinux 0x04569b5d flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu EXPORT_SYMBOL vmlinux 0x047f491a simple_recursive_removal -EXPORT_SYMBOL vmlinux 0x047ff72c tso_build_hdr -EXPORT_SYMBOL vmlinux 0x04b5c8a9 dev_trans_start -EXPORT_SYMBOL vmlinux 0x04c74376 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x048b65b4 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x04976d67 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x04a30ef1 dump_page +EXPORT_SYMBOL vmlinux 0x04bf9756 __netlink_kernel_create EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits EXPORT_SYMBOL vmlinux 0x04e5b9e2 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x04f96be9 __splice_from_pipe EXPORT_SYMBOL vmlinux 0x0505c4e3 fs_param_is_path EXPORT_SYMBOL vmlinux 0x050cce6a pcim_enable_device -EXPORT_SYMBOL vmlinux 0x051be0d1 inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible EXPORT_SYMBOL vmlinux 0x05471212 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x0556bda9 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x056dc509 tcp_check_req -EXPORT_SYMBOL vmlinux 0x0581cd41 flow_rule_alloc EXPORT_SYMBOL vmlinux 0x0584d4ac __traceiter_s390_cio_ssch EXPORT_SYMBOL vmlinux 0x058e9ad7 tty_register_device EXPORT_SYMBOL vmlinux 0x05934d68 generic_error_remove_page EXPORT_SYMBOL vmlinux 0x059b558f seq_puts +EXPORT_SYMBOL vmlinux 0x059bf9a0 sock_from_file +EXPORT_SYMBOL vmlinux 0x059c93aa skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x059d4cee __netlink_dump_start EXPORT_SYMBOL vmlinux 0x05a363c8 raw3270_request_set_data EXPORT_SYMBOL vmlinux 0x05a95917 blk_mq_unique_tag EXPORT_SYMBOL vmlinux 0x05ad8efa vmap +EXPORT_SYMBOL vmlinux 0x05af9e6b finish_no_open EXPORT_SYMBOL vmlinux 0x05dbdad0 pin_user_pages_remote EXPORT_SYMBOL vmlinux 0x05ea52a5 ccw_device_clear -EXPORT_SYMBOL vmlinux 0x0603c7e3 passthru_features_check EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x061744c3 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x06201731 dev_uc_add +EXPORT_SYMBOL vmlinux 0x06220c99 scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0x063015d4 gen_pool_first_fit_align EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x0634f8e3 __sk_mem_raise_allocated EXPORT_SYMBOL vmlinux 0x063a6b31 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x065b18b1 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x063d9d94 netdev_class_remove_file_ns EXPORT_SYMBOL vmlinux 0x065e9d96 single_open -EXPORT_SYMBOL vmlinux 0x06618ef5 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x0662ceed ipv6_dev_get_saddr EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul EXPORT_SYMBOL vmlinux 0x06764dd2 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0x06900552 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x06d349a3 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x06d4ac6f __neigh_event_send +EXPORT_SYMBOL vmlinux 0x068cb372 tso_start +EXPORT_SYMBOL vmlinux 0x06b1429b ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0x06dc6d66 unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x06e30f7b ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x06e491c6 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x06e73ae4 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x06fd379b page_get_link +EXPORT_SYMBOL vmlinux 0x070859a0 dev_change_proto_down EXPORT_SYMBOL vmlinux 0x07297511 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x072a0d9b inet_addr_type -EXPORT_SYMBOL vmlinux 0x072f7d6e scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x0734ce5c jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x072d73b8 gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0x0736c3ff fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0x07654b9a cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x077ec023 __ClearPageMovable EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07ab79ca rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0x07af96c7 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x07b09a11 dcb_getapp -EXPORT_SYMBOL vmlinux 0x07b2ae82 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x07b0f27e memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x07b57804 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x07bb47a4 eth_header_cache +EXPORT_SYMBOL vmlinux 0x07bead09 netif_device_detach +EXPORT_SYMBOL vmlinux 0x07bec6dd genl_register_family EXPORT_SYMBOL vmlinux 0x07bf9542 pin_user_pages_locked EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cdd9cf xfrm_input EXPORT_SYMBOL vmlinux 0x07d37cc7 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0x07dc99fd __xfrm_route_forward EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched -EXPORT_SYMBOL vmlinux 0x0803c335 tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x0809816f init_task -EXPORT_SYMBOL vmlinux 0x081f63d1 sock_enable_timestamps EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x082c8085 lease_get_mtime EXPORT_SYMBOL vmlinux 0x0835c264 from_kuid -EXPORT_SYMBOL vmlinux 0x08423307 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0x08456553 match_string -EXPORT_SYMBOL vmlinux 0x086e81e7 vfs_symlink -EXPORT_SYMBOL vmlinux 0x087199d2 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x0876205a tcp_poll -EXPORT_SYMBOL vmlinux 0x087c0c42 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x08497fe4 sock_recv_errqueue EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x088c96f6 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x088f2796 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x089708f6 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x08984503 sock_common_getsockopt EXPORT_SYMBOL vmlinux 0x0899ea58 seq_open EXPORT_SYMBOL vmlinux 0x08ad8521 register_adapter_interrupt -EXPORT_SYMBOL vmlinux 0x08b3c713 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x08cea64b skb_unlink +EXPORT_SYMBOL vmlinux 0x08bc93e0 tcp_prot +EXPORT_SYMBOL vmlinux 0x08d45693 genl_unregister_family EXPORT_SYMBOL vmlinux 0x08d790ba set_guest_storage_key -EXPORT_SYMBOL vmlinux 0x08dafb0a dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x08dbc873 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x08e9d420 skb_copy_header +EXPORT_SYMBOL vmlinux 0x08df3482 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x08ef023a udp_seq_stop EXPORT_SYMBOL vmlinux 0x09202968 unregister_framebuffer EXPORT_SYMBOL vmlinux 0x0920b173 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x0930a0d0 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x093c3ef5 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x093d497f fget_raw +EXPORT_SYMBOL vmlinux 0x094e96aa has_capability EXPORT_SYMBOL vmlinux 0x094effa5 __iucv_message_receive -EXPORT_SYMBOL vmlinux 0x0973def7 __icmp_send +EXPORT_SYMBOL vmlinux 0x096faa64 qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes EXPORT_SYMBOL vmlinux 0x097cc63e unregister_key_type +EXPORT_SYMBOL vmlinux 0x098112c0 sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap EXPORT_SYMBOL vmlinux 0x099656ae pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x09bea5fc kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x09a368a1 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0x09bf6fbe ZSTD_decompressDCtx EXPORT_SYMBOL vmlinux 0x09c45ecc ccw_device_start +EXPORT_SYMBOL vmlinux 0x09cdf3ac create_empty_buffers EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a022efb __dev_set_mtu EXPORT_SYMBOL vmlinux 0x0a10c70f sget -EXPORT_SYMBOL vmlinux 0x0a10eb96 inet6_add_offload EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key EXPORT_SYMBOL vmlinux 0x0a1e9bee security_binder_transaction +EXPORT_SYMBOL vmlinux 0x0a20c847 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0x0a24eb3d pci_disable_msi -EXPORT_SYMBOL vmlinux 0x0a36dd51 set_page_dirty EXPORT_SYMBOL vmlinux 0x0a3b0d94 raw_copy_from_user -EXPORT_SYMBOL vmlinux 0x0a5e245c pskb_expand_head -EXPORT_SYMBOL vmlinux 0x0a6c6294 udplite_prot -EXPORT_SYMBOL vmlinux 0x0a6cc61c submit_bh -EXPORT_SYMBOL vmlinux 0x0a7276ad scsi_add_device +EXPORT_SYMBOL vmlinux 0x0a524f93 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x0a528fbc tcf_qevent_handle EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a8a221b skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa49a03 nf_log_unregister EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace EXPORT_SYMBOL vmlinux 0x0aacd352 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x0aad12d3 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x0adad82f dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x0ae5ae47 inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x0ae60c27 utf8_normalize +EXPORT_SYMBOL vmlinux 0x0aeee170 dump_emit +EXPORT_SYMBOL vmlinux 0x0b0eb6cc scm_fp_dup EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b25179c vm_map_pages_zero EXPORT_SYMBOL vmlinux 0x0b2ced94 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x0b2d6a61 __bread_gfp EXPORT_SYMBOL vmlinux 0x0b4fffdf ap_queue_init_state -EXPORT_SYMBOL vmlinux 0x0b634e73 netdev_err +EXPORT_SYMBOL vmlinux 0x0b603ad0 __ClearPageMovable EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol EXPORT_SYMBOL vmlinux 0x0b7b260e iunique -EXPORT_SYMBOL vmlinux 0x0b8360d0 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x0b9a8dae tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x0b8b37a5 vfs_get_link +EXPORT_SYMBOL vmlinux 0x0b91b69a dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x0b9213a8 tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0bb8195a tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x0bbe230e vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bceef6e nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x0bd3e100 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x0bc98956 __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0x0bf358e6 fb_pan_display EXPORT_SYMBOL vmlinux 0x0c17a68e zlib_dfltcc_support -EXPORT_SYMBOL vmlinux 0x0c19319b blk_queue_flag_set EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c2cb832 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x0c2a6b23 fc_mount EXPORT_SYMBOL vmlinux 0x0c333a7f radix_tree_insert -EXPORT_SYMBOL vmlinux 0x0c36b3ca ip6_frag_init -EXPORT_SYMBOL vmlinux 0x0c46279a generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x0c568b5f vfs_fsync +EXPORT_SYMBOL vmlinux 0x0c371e3e sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0x0c6ccf20 s390_isolate_bp EXPORT_SYMBOL vmlinux 0x0c7cf7c6 zero_page_mask +EXPORT_SYMBOL vmlinux 0x0c84b202 tcp_sendpage EXPORT_SYMBOL vmlinux 0x0c8a431f debug_hex_ascii_view EXPORT_SYMBOL vmlinux 0x0c904c5b mempool_exit -EXPORT_SYMBOL vmlinux 0x0c957889 locks_free_lock +EXPORT_SYMBOL vmlinux 0x0c955139 sock_no_sendmsg_locked EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0cc0ba3a vfs_tmpfile EXPORT_SYMBOL vmlinux 0x0cc0f4c5 __genradix_prealloc EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0d04eacb skb_queue_purge +EXPORT_SYMBOL vmlinux 0x0cf2ed3b dev_load EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d16ea79 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x0d233d65 _dev_notice -EXPORT_SYMBOL vmlinux 0x0d31cd4b inet_select_addr EXPORT_SYMBOL vmlinux 0x0d31eaaa input_set_capability -EXPORT_SYMBOL vmlinux 0x0d32e83f skb_copy_expand EXPORT_SYMBOL vmlinux 0x0d4be975 param_ops_long EXPORT_SYMBOL vmlinux 0x0d511375 ccw_device_set_options_mask EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d6e8666 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x0d61f9c8 filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0x0d6fe393 kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x0d78440a pci_iomap -EXPORT_SYMBOL vmlinux 0x0d7e2c8e file_ns_capable -EXPORT_SYMBOL vmlinux 0x0d82b876 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0x0d987300 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x0d7ac1ac write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x0dc7b417 __hw_addr_ref_unsync_dev EXPORT_SYMBOL vmlinux 0x0dcddd88 bioset_exit +EXPORT_SYMBOL vmlinux 0x0de9777b __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x0df70789 load_nls EXPORT_SYMBOL vmlinux 0x0dfa838f md_handle_request +EXPORT_SYMBOL vmlinux 0x0dfb6086 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x0e02bbad user_path_at_empty EXPORT_SYMBOL vmlinux 0x0e109efa pci_ep_cfs_add_epc_group EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 EXPORT_SYMBOL vmlinux 0x0e1ee435 _copy_from_user_key -EXPORT_SYMBOL vmlinux 0x0e4cd00f tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x0e5254fe vfs_link EXPORT_SYMBOL vmlinux 0x0e56b80a __SCK__tp_func_s390_cio_tsch +EXPORT_SYMBOL vmlinux 0x0e667fac mmput_async +EXPORT_SYMBOL vmlinux 0x0e6e83d1 filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0x0e74f40f wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x0e7de27e inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init EXPORT_SYMBOL vmlinux 0x0ea763c3 sclp_sync_wait -EXPORT_SYMBOL vmlinux 0x0ea95b7b path_is_mountpoint EXPORT_SYMBOL vmlinux 0x0eab56fa __kfifo_max_r +EXPORT_SYMBOL vmlinux 0x0eaee1e0 __ip_queue_xmit EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0ed3c2e0 write_cache_pages +EXPORT_SYMBOL vmlinux 0x0ed8fb7b nf_hook_slow_list EXPORT_SYMBOL vmlinux 0x0ed97f36 touchscreen_parse_properties EXPORT_SYMBOL vmlinux 0x0ee61a9b airq_iv_free EXPORT_SYMBOL vmlinux 0x0effae9d blk_queue_max_discard_sectors EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f0a25b1 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x0f166523 udp_gro_complete EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f282f44 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x0f31e316 dev_change_carrier EXPORT_SYMBOL vmlinux 0x0f334417 sg_alloc_append_table_from_pages EXPORT_SYMBOL vmlinux 0x0f579d19 pci_claim_resource EXPORT_SYMBOL vmlinux 0x0f59acca __kernel_fpu_end -EXPORT_SYMBOL vmlinux 0x0f70926e mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0x0f70d0ec flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x0f72ca0b skb_headers_offset_update EXPORT_SYMBOL vmlinux 0x0f7ec57a param_set_short EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn EXPORT_SYMBOL vmlinux 0x0f8e2e5c security_binder_transfer_binder EXPORT_SYMBOL vmlinux 0x0f8ee51e ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0x0f926bab thread_group_exited -EXPORT_SYMBOL vmlinux 0x0f92dc2e udp_disconnect EXPORT_SYMBOL vmlinux 0x0fa8847b timestamp_truncate +EXPORT_SYMBOL vmlinux 0x0fb2109f vfs_iter_read EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 EXPORT_SYMBOL vmlinux 0x0fb4a31f _copy_to_iter EXPORT_SYMBOL vmlinux 0x0fbe3012 param_array_ops -EXPORT_SYMBOL vmlinux 0x0fc046a4 vlan_dev_vlan_id EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0ff8e38b flush_signals EXPORT_SYMBOL vmlinux 0x0ffc9609 ap_recv EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm EXPORT_SYMBOL vmlinux 0x10011138 blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0x10069160 dst_init -EXPORT_SYMBOL vmlinux 0x100a18a6 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0x10112f05 ZSTD_DStreamInSize EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region EXPORT_SYMBOL vmlinux 0x103922b7 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x103affc1 security_old_inode_init_security EXPORT_SYMBOL vmlinux 0x103bafd6 down_read EXPORT_SYMBOL vmlinux 0x10497616 memweight +EXPORT_SYMBOL vmlinux 0x104ba758 jbd2_journal_flush EXPORT_SYMBOL vmlinux 0x105ad8e9 kobject_get_unless_zero EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe EXPORT_SYMBOL vmlinux 0x1071c3df get_watch_queue @@ -2977,103 +2963,110 @@ EXPORT_SYMBOL vmlinux 0x10776fb9 xa_extract EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd EXPORT_SYMBOL vmlinux 0x1093b7a5 request_key_rcu EXPORT_SYMBOL vmlinux 0x10a5012a devm_of_iomap +EXPORT_SYMBOL vmlinux 0x10b89e9c kmem_cache_create +EXPORT_SYMBOL vmlinux 0x10b96ab4 pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0x10bba43a fb_firmware_edid EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10c4ce30 __page_symlink EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10da6302 skb_append EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x11027ecb tcp_select_initial_window EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x1112f8c8 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x1119479e ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x112121f7 __traceiter_s390_cio_chsc -EXPORT_SYMBOL vmlinux 0x1142432b sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0x11486ce9 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x114d3681 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x1157850c vfs_get_link +EXPORT_SYMBOL vmlinux 0x112de19d jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x11568305 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x11685788 audit_log +EXPORT_SYMBOL vmlinux 0x11687d14 inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11824700 page_get_link +EXPORT_SYMBOL vmlinux 0x118f3446 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x11b1617d netlink_set_err EXPORT_SYMBOL vmlinux 0x11b702f1 tty_port_lower_dtr_rts EXPORT_SYMBOL vmlinux 0x11c7d7a0 request_firmware -EXPORT_SYMBOL vmlinux 0x11c84951 scsi_print_command -EXPORT_SYMBOL vmlinux 0x11cc83aa filp_close EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x11dbdded skb_put EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic EXPORT_SYMBOL vmlinux 0x11f0f083 kernel_cpumcf_avail EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x1214e725 tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0x12320a5d ccw_driver_register EXPORT_SYMBOL vmlinux 0x1239fc2d sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x124a0725 posix_test_lock +EXPORT_SYMBOL vmlinux 0x12485b90 skb_eth_push EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x1250c752 security_req_classify_flow EXPORT_SYMBOL vmlinux 0x1251a12e console_mode EXPORT_SYMBOL vmlinux 0x1252a16e get_cached_acl_rcu EXPORT_SYMBOL vmlinux 0x125b8e56 pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0x12641250 get_phys_clock +EXPORT_SYMBOL vmlinux 0x1279d493 tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0x1283c813 from_kgid -EXPORT_SYMBOL vmlinux 0x129f1f8d __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x129e759d unix_destruct_scm EXPORT_SYMBOL vmlinux 0x12a23078 register_cdrom -EXPORT_SYMBOL vmlinux 0x12a5c0e2 sk_common_release -EXPORT_SYMBOL vmlinux 0x12a5d841 nf_log_set -EXPORT_SYMBOL vmlinux 0x12b018ba ip6tun_encaps EXPORT_SYMBOL vmlinux 0x12b75f9b kset_unregister -EXPORT_SYMBOL vmlinux 0x12c698e5 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x12c1692b bprm_change_interp EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 EXPORT_SYMBOL vmlinux 0x12cbea74 textsearch_find_continuous EXPORT_SYMBOL vmlinux 0x12eb033e param_get_string -EXPORT_SYMBOL vmlinux 0x12f38c44 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var EXPORT_SYMBOL vmlinux 0x12fe638d diag_stat_inc_norecursion EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x133d31b1 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x1322383b tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x136aeba7 register_console +EXPORT_SYMBOL vmlinux 0x136a6b24 xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0x136e39bf ccw_device_halt -EXPORT_SYMBOL vmlinux 0x1384c0dd tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x1376ada7 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x13a43e52 __sk_mem_reduce_allocated EXPORT_SYMBOL vmlinux 0x13b2ff13 dcache_readdir EXPORT_SYMBOL vmlinux 0x13bd4907 tty_flip_buffer_push 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 0x13da68f5 lock_sock_nested EXPORT_SYMBOL vmlinux 0x13e22a5e pci_dev_put -EXPORT_SYMBOL vmlinux 0x13ea831c freezing_slow_path -EXPORT_SYMBOL vmlinux 0x142b80fa vfs_readlink -EXPORT_SYMBOL vmlinux 0x142d7ba4 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x14348e44 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x13fc8f11 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x141b4f39 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x14260127 unix_attach_fds EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x144033a4 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x1445f7ac tcp_rcv_established EXPORT_SYMBOL vmlinux 0x145610aa from_kuid_munged EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146142c7 neigh_parms_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x147715a9 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x146416cc icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x14765eb6 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x14775f4e tcp_add_backlog EXPORT_SYMBOL vmlinux 0x14789bad ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x147ab246 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0x14b9548f dst_dev_put +EXPORT_SYMBOL vmlinux 0x14a59d7b skb_checksum_help +EXPORT_SYMBOL vmlinux 0x14a6c820 seg6_push_hmac EXPORT_SYMBOL vmlinux 0x14c5e5b3 segment_warning EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled EXPORT_SYMBOL vmlinux 0x14ced76e nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0x14d8d7fa key_task_permission -EXPORT_SYMBOL vmlinux 0x14f94f36 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x15056d51 eth_validate_addr EXPORT_SYMBOL vmlinux 0x150983e1 ZSTD_DStreamOutSize +EXPORT_SYMBOL vmlinux 0x150f9e03 __sock_create EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight EXPORT_SYMBOL vmlinux 0x1535c5a3 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x15360365 neigh_for_each +EXPORT_SYMBOL vmlinux 0x153c51b5 skb_flow_dissect_hash EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy EXPORT_SYMBOL vmlinux 0x156f00f3 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x15777411 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x1591a18d fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x1593cd75 nf_log_unset -EXPORT_SYMBOL vmlinux 0x15b1d6b5 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x159af946 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x15a5be60 tcf_idr_cleanup EXPORT_SYMBOL vmlinux 0x15b49bac vscnprintf +EXPORT_SYMBOL vmlinux 0x15bad5c3 kmem_cache_create_usercopy EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15cf35bb eth_header_cache +EXPORT_SYMBOL vmlinux 0x15cb5f97 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x15ccf065 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x15d03b2e security_sb_clone_mnt_opts EXPORT_SYMBOL vmlinux 0x15d8072d pci_ep_cfs_remove_epf_group EXPORT_SYMBOL vmlinux 0x15d85a57 down_trylock EXPORT_SYMBOL vmlinux 0x15e50bab input_enable_softrepeat EXPORT_SYMBOL vmlinux 0x1612a3e1 pci_request_selected_regions_exclusive EXPORT_SYMBOL vmlinux 0x16170964 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x16170abe page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x161b5bcc pci_bus_find_capability EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string EXPORT_SYMBOL vmlinux 0x1630a642 kbd_ascebc @@ -3082,327 +3075,331 @@ EXPORT_SYMBOL vmlinux 0x163306f2 md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0x16395a9b md_set_array_sectors EXPORT_SYMBOL vmlinux 0x163b0be6 __frontswap_load EXPORT_SYMBOL vmlinux 0x163e3bf5 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x16401b13 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x164475f8 __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0x165d15e2 down_interruptible +EXPORT_SYMBOL vmlinux 0x16674818 gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0x167f67c9 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x16811d4f sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x1697393c skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x168d4878 gro_cells_init +EXPORT_SYMBOL vmlinux 0x16908fa6 qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0x16a60a12 pcie_ptm_enabled EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait EXPORT_SYMBOL vmlinux 0x16f73516 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x17004494 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x16fdc9c2 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x16fdfdeb fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0x1700c8b2 config_item_init_type_name EXPORT_SYMBOL vmlinux 0x17086a42 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x1708b70b ethtool_notify -EXPORT_SYMBOL vmlinux 0x1730500d skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x17179917 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x17185c2f netdev_state_change +EXPORT_SYMBOL vmlinux 0x171d718d vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x172658a6 __netif_schedule +EXPORT_SYMBOL vmlinux 0x172909bc alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x1737385f md_flush_request -EXPORT_SYMBOL vmlinux 0x173a9b3e buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x17401b5f vlan_vid_add -EXPORT_SYMBOL vmlinux 0x174e0ad9 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x174fde61 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x17529cb9 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x175a80e0 wait_on_page_private_2_killable -EXPORT_SYMBOL vmlinux 0x17845ebe genl_unregister_family -EXPORT_SYMBOL vmlinux 0x1785db32 file_open_root -EXPORT_SYMBOL vmlinux 0x17b19c96 vfs_fileattr_get -EXPORT_SYMBOL vmlinux 0x17b64467 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x17cf4b38 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x17649beb tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x17893936 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x17916288 try_to_release_page +EXPORT_SYMBOL vmlinux 0x17b58a76 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x17bc1bbe trace_event_printf +EXPORT_SYMBOL vmlinux 0x17c0aaeb jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x17d2cc11 netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0x17d679f7 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x17ff4f92 generic_file_write_iter EXPORT_SYMBOL vmlinux 0x181ac4b0 ccw_device_is_pathgroup EXPORT_SYMBOL vmlinux 0x181df9fb thaw_bdev +EXPORT_SYMBOL vmlinux 0x18217968 xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x18412c6a neigh_ifdown -EXPORT_SYMBOL vmlinux 0x18617b55 inode_permission -EXPORT_SYMBOL vmlinux 0x187d1031 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x1846f42e skb_clone +EXPORT_SYMBOL vmlinux 0x18529a18 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x1858fcc3 scsi_device_get +EXPORT_SYMBOL vmlinux 0x186f3c43 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x1873dbe4 neigh_resolve_output EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189705e9 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x189b47fc sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x189b6bac memory_read_from_buffer EXPORT_SYMBOL vmlinux 0x189d17e7 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x18b823c1 tcf_em_register EXPORT_SYMBOL vmlinux 0x18b87cca sclp_deactivate EXPORT_SYMBOL vmlinux 0x18cc836b proc_set_user EXPORT_SYMBOL vmlinux 0x18d1cc4d dquot_quota_on -EXPORT_SYMBOL vmlinux 0x18e46eb7 devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18f9a830 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x191ab296 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x18e6dc99 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x18efde29 register_console +EXPORT_SYMBOL vmlinux 0x18f76a51 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x18fe1817 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x1908cee1 get_unmapped_area EXPORT_SYMBOL vmlinux 0x1927005b sg_miter_stop -EXPORT_SYMBOL vmlinux 0x193388d5 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x1944a87d __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x19626cab tcp_seq_start +EXPORT_SYMBOL vmlinux 0x192b5223 file_path EXPORT_SYMBOL vmlinux 0x19640641 mount_nodev -EXPORT_SYMBOL vmlinux 0x196e86e0 __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x19723eb0 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x197277f3 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x1979670c page_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x197ad7a1 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x19823ec9 io_uring_get_socket EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x198eb1fa starget_for_each_device -EXPORT_SYMBOL vmlinux 0x19951c14 unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x199fa223 path_put +EXPORT_SYMBOL vmlinux 0x19bc911f __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19d75e8c tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x19d941e9 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x19d87a46 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0x19e4688d param_ops_ushort EXPORT_SYMBOL vmlinux 0x19e53c98 seq_path +EXPORT_SYMBOL vmlinux 0x1a046c85 nf_log_bind_pf EXPORT_SYMBOL vmlinux 0x1a08d2ba VMALLOC_START EXPORT_SYMBOL vmlinux 0x1a12c1ce bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x1a2784ca disk_start_io_acct -EXPORT_SYMBOL vmlinux 0x1a3397fa __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x1a199c2b kernel_getsockname +EXPORT_SYMBOL vmlinux 0x1a7ea73a netpoll_setup +EXPORT_SYMBOL vmlinux 0x1a8e6820 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x1a91c20c inet_dev_addr_type EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1a9f6f7a __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x1aa6dae7 netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0x1aa7fb28 gen_pool_best_fit EXPORT_SYMBOL vmlinux 0x1abc6ebc scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x1ad0eb78 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x1ad1f39c tcf_exts_validate EXPORT_SYMBOL vmlinux 0x1ae8c18b param_set_invbool -EXPORT_SYMBOL vmlinux 0x1aec0bb4 fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0x1aed9d50 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x1af7a3f1 tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist EXPORT_SYMBOL vmlinux 0x1b0288d7 pci_enable_msi EXPORT_SYMBOL vmlinux 0x1b1645fa __tty_alloc_driver EXPORT_SYMBOL vmlinux 0x1b16e772 truncate_inode_pages_range EXPORT_SYMBOL vmlinux 0x1b18b6fa __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x1b2e1c95 _dev_alert EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device EXPORT_SYMBOL vmlinux 0x1b7b0698 thaw_super +EXPORT_SYMBOL vmlinux 0x1b8d698d skb_queue_purge EXPORT_SYMBOL vmlinux 0x1b8da471 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x1b8f9ce7 xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0x1ba04458 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x1bb2ef4e __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc EXPORT_SYMBOL vmlinux 0x1bc7873e configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x1bf6184e xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x1bfb3297 __scsi_add_device -EXPORT_SYMBOL vmlinux 0x1c0b9802 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x1bdff063 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x1c62452a skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0x1c65d1e3 ioremap_wt -EXPORT_SYMBOL vmlinux 0x1c8c3eeb vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0x1c9ab368 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x1c9bc1a1 unregister_netdev +EXPORT_SYMBOL vmlinux 0x1c94e903 __vfs_removexattr EXPORT_SYMBOL vmlinux 0x1cb21f53 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x1cb83c98 pipe_unlock EXPORT_SYMBOL vmlinux 0x1cbfb123 hdmi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cc718d6 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x1ccab0b4 qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0x1cd42e22 new_inode -EXPORT_SYMBOL vmlinux 0x1cd4d695 __dev_get_by_flags EXPORT_SYMBOL vmlinux 0x1cd9a676 param_ops_string EXPORT_SYMBOL vmlinux 0x1cdb5559 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x1cee3384 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x1cf2900b netdev_info -EXPORT_SYMBOL vmlinux 0x1cfae5bd __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x1ce4c58d page_cache_next_miss EXPORT_SYMBOL vmlinux 0x1d041a06 config_item_get_unless_zero EXPORT_SYMBOL vmlinux 0x1d216a6b mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x1d235f9b dev_set_alias +EXPORT_SYMBOL vmlinux 0x1d268150 flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d3c5cfe __SetPageMovable EXPORT_SYMBOL vmlinux 0x1d3e2765 iucv_path_quiesce +EXPORT_SYMBOL vmlinux 0x1d3f427c xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0x1d449b90 dfltcc_can_deflate -EXPORT_SYMBOL vmlinux 0x1d4b0336 locks_remove_posix EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x1d62693f dump_page EXPORT_SYMBOL vmlinux 0x1d64ad22 bio_uninit -EXPORT_SYMBOL vmlinux 0x1dabda54 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x1d824c7e dentry_path_raw +EXPORT_SYMBOL vmlinux 0x1d93748c netif_rx_any_context +EXPORT_SYMBOL vmlinux 0x1da9ece9 scsi_block_requests EXPORT_SYMBOL vmlinux 0x1dadd920 __kmalloc -EXPORT_SYMBOL vmlinux 0x1dc4c6bb jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x1db830b9 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x1dbc92eb inet_add_protocol EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1ddc028e jbd2_journal_init_inode EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr EXPORT_SYMBOL vmlinux 0x1de5127e kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x1de6e366 filp_close +EXPORT_SYMBOL vmlinux 0x1df396ca unregister_qdisc EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e22b0ad alloc_pages EXPORT_SYMBOL vmlinux 0x1e2b10b3 pci_remove_bus EXPORT_SYMBOL vmlinux 0x1e2ce602 d_lookup -EXPORT_SYMBOL vmlinux 0x1e415262 kernel_read -EXPORT_SYMBOL vmlinux 0x1e454c3b netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x1e52949e tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x1e5bd8cf keyring_clear EXPORT_SYMBOL vmlinux 0x1e6053e1 blkdev_get_by_path EXPORT_SYMBOL vmlinux 0x1e63fe69 vcalloc EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr EXPORT_SYMBOL vmlinux 0x1e8a161a crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x1e8d3ff5 ipv4_specific +EXPORT_SYMBOL vmlinux 0x1e8ed35c nonseekable_open EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ec3fede rtnl_notify +EXPORT_SYMBOL vmlinux 0x1eb9d9aa may_umount +EXPORT_SYMBOL vmlinux 0x1ec3b16a netdev_adjacent_change_commit EXPORT_SYMBOL vmlinux 0x1ec7f394 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x1ecf00b7 flow_rule_match_ip EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1f1309b2 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x1edffa6b mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x1f0ce8cd vlan_dev_vlan_id EXPORT_SYMBOL vmlinux 0x1f1dd020 md_cluster_ops EXPORT_SYMBOL vmlinux 0x1f237952 param_get_hexint -EXPORT_SYMBOL vmlinux 0x1f3aec97 path_is_under -EXPORT_SYMBOL vmlinux 0x1f3d5d4c xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x1f2417c2 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x1f35946e fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x1f4ceb42 __neigh_for_each_release EXPORT_SYMBOL vmlinux 0x1f4dc4f9 proc_create_data EXPORT_SYMBOL vmlinux 0x1f95657b mempool_resize -EXPORT_SYMBOL vmlinux 0x1f99b2a4 reuseport_attach_prog EXPORT_SYMBOL vmlinux 0x1fa87551 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x1fac312e tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0x1fb27078 tcw_get_tccb EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio EXPORT_SYMBOL vmlinux 0x1fcb720d tcp_sockets_allocated EXPORT_SYMBOL vmlinux 0x1fda8755 __memset32 +EXPORT_SYMBOL vmlinux 0x1fe3796f xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0x1fe73f5f con_is_bound EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul EXPORT_SYMBOL vmlinux 0x20050ce6 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x20073011 __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any EXPORT_SYMBOL vmlinux 0x2014a246 __siphash_unaligned EXPORT_SYMBOL vmlinux 0x2025e9e7 kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0x20326daf scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x203bdc65 netdev_adjacent_change_commit 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 0x204e1796 vfs_parse_fs_param EXPORT_SYMBOL vmlinux 0x20592c6f arch_write_lock_wait EXPORT_SYMBOL vmlinux 0x20645c50 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x20768c74 inet_register_protosw EXPORT_SYMBOL vmlinux 0x2085d576 bdevname -EXPORT_SYMBOL vmlinux 0x208ad90f eth_header EXPORT_SYMBOL vmlinux 0x208d150a set_security_override_from_ctx EXPORT_SYMBOL vmlinux 0x209048df scsi_remove_target EXPORT_SYMBOL vmlinux 0x20973b94 segment_unload EXPORT_SYMBOL vmlinux 0x209b82b7 get_acl EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data EXPORT_SYMBOL vmlinux 0x20aeaf25 vc_resize -EXPORT_SYMBOL vmlinux 0x20bc13ae sk_error_report EXPORT_SYMBOL vmlinux 0x20c587cc utf8nagemin EXPORT_SYMBOL vmlinux 0x20d0f3a1 input_register_handler EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20e0b6f9 ping_prot -EXPORT_SYMBOL vmlinux 0x20ec0cd2 neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0x20ee076e itcw_add_tidaw -EXPORT_SYMBOL vmlinux 0x20f7eaf2 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x20f1a410 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x2100ba69 ip_sock_set_tos EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x210ffda2 jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0x2119ce0b drop_super +EXPORT_SYMBOL vmlinux 0x211bb311 udp_gro_receive EXPORT_SYMBOL vmlinux 0x212485ee blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x214b0eb9 skb_realloc_headroom EXPORT_SYMBOL vmlinux 0x2160dae2 pcie_port_service_register EXPORT_SYMBOL vmlinux 0x2171b2e6 fs_bio_set -EXPORT_SYMBOL vmlinux 0x21732c88 ether_setup -EXPORT_SYMBOL vmlinux 0x2180e832 netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x219910cb nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0x219de862 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x219df2a3 dev_close +EXPORT_SYMBOL vmlinux 0x2190ca5c sock_setsockopt EXPORT_SYMBOL vmlinux 0x21affe80 pcie_capability_write_word EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21cb7550 tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0x21d42ce9 nla_append EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow EXPORT_SYMBOL vmlinux 0x21e6c07b dquot_set_dqinfo EXPORT_SYMBOL vmlinux 0x21e79641 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x21f16710 security_sb_remount -EXPORT_SYMBOL vmlinux 0x2202cb2b filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0x220f7edd netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x21efe96f ethtool_notify +EXPORT_SYMBOL vmlinux 0x2208d51a vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x220997ed tcf_unregister_action EXPORT_SYMBOL vmlinux 0x2210642c sclp_ap_deconfigure EXPORT_SYMBOL vmlinux 0x221567e6 __traceiter_s390_cio_tpi -EXPORT_SYMBOL vmlinux 0x22213bb2 close_fd_get_file EXPORT_SYMBOL vmlinux 0x22226d41 ccw_device_start_timeout EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x224916a9 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x224aa13d mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x224aeedd vfs_iter_write +EXPORT_SYMBOL vmlinux 0x223242ce __module_get +EXPORT_SYMBOL vmlinux 0x22843fc0 register_fib_notifier EXPORT_SYMBOL vmlinux 0x229484cd netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0x2298a8e3 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x229942c3 inet6_add_offload EXPORT_SYMBOL vmlinux 0x2299a2e2 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x22a6e830 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x22b143ca skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x22a13e65 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x22b30cc2 alloc_buffer_head EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound EXPORT_SYMBOL vmlinux 0x22b4ca2d dmam_pool_create -EXPORT_SYMBOL vmlinux 0x22c1ed45 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x22cae9e0 vm_insert_page EXPORT_SYMBOL vmlinux 0x22cb3831 security_cred_getsecid EXPORT_SYMBOL vmlinux 0x22cb907e fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x22d3ac38 netdev_name_node_alt_create EXPORT_SYMBOL vmlinux 0x22d86e86 complete_request_key EXPORT_SYMBOL vmlinux 0x22dd6d51 tccb_init +EXPORT_SYMBOL vmlinux 0x2301a834 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x2313282a skb_flow_dissect_meta EXPORT_SYMBOL vmlinux 0x2317c96e d_move -EXPORT_SYMBOL vmlinux 0x2345083e sk_alloc +EXPORT_SYMBOL vmlinux 0x2326b8cb netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x23300199 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x233164bb __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x233d87b8 ipv4_specific +EXPORT_SYMBOL vmlinux 0x23508015 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x235d85f5 blk_put_queue EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x236b32d6 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x23677373 dev_uc_flush EXPORT_SYMBOL vmlinux 0x236c8c64 memcpy EXPORT_SYMBOL vmlinux 0x2378f66e blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x237c6e99 netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x237f6d19 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x2382eee7 dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0x23924a48 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x239e5df7 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x23b58209 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x23b817e7 datagram_poll EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23ccb022 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x23d876c2 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x23e09804 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node EXPORT_SYMBOL vmlinux 0x24065036 pci_bus_read_config_dword EXPORT_SYMBOL vmlinux 0x2415ced1 register_service_level +EXPORT_SYMBOL vmlinux 0x241769a3 netif_skb_features EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24255d33 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x242f3562 irq_subclass_register EXPORT_SYMBOL vmlinux 0x243022da dm_table_get_md -EXPORT_SYMBOL vmlinux 0x2436a1c9 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x2439c243 reuseport_attach_prog EXPORT_SYMBOL vmlinux 0x243f02c8 param_ops_uint EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245ed45c dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x2463d7f7 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x2475b652 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x246cb2f9 udp_lib_unhash EXPORT_SYMBOL vmlinux 0x247a3fe4 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x247ab63d qdisc_warn_nonwc EXPORT_SYMBOL vmlinux 0x247c4704 current_time -EXPORT_SYMBOL vmlinux 0x247e629d ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x24848c65 inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0x2490d93d csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x249dbc42 put_cmsg EXPORT_SYMBOL vmlinux 0x24a6376e t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x24b2a92b inet_put_port EXPORT_SYMBOL vmlinux 0x24b8528f mutex_trylock -EXPORT_SYMBOL vmlinux 0x24b92160 netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0x24bc53b0 __traceiter_s390_cio_xsch +EXPORT_SYMBOL vmlinux 0x24bd274d scsi_device_set_state EXPORT_SYMBOL vmlinux 0x24c00f08 unpin_user_pages EXPORT_SYMBOL vmlinux 0x24c4fe67 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x24cf964c jbd2_journal_stop EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24e0c1ca invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0x25116492 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x25225c62 tcf_idr_search EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x2526512b __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0x252cf375 scsi_kmap_atomic_sg EXPORT_SYMBOL vmlinux 0x252fe7e4 down_read_interruptible +EXPORT_SYMBOL vmlinux 0x25340a46 udp_seq_next EXPORT_SYMBOL vmlinux 0x25365105 kthread_stop +EXPORT_SYMBOL vmlinux 0x2536c6cb sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x25395372 ping_prot +EXPORT_SYMBOL vmlinux 0x253c690d module_put +EXPORT_SYMBOL vmlinux 0x253d3af6 inet_frag_find EXPORT_SYMBOL vmlinux 0x25405fc0 registered_fb -EXPORT_SYMBOL vmlinux 0x2544d021 __getblk_gfp EXPORT_SYMBOL vmlinux 0x2548c032 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x254d46af skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x2581d508 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x255d7770 jbd2_journal_get_write_access EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid EXPORT_SYMBOL vmlinux 0x2588e7e2 jbd2__journal_start EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x25bbc4f2 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x2598878d fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x25c13a0b d_path EXPORT_SYMBOL vmlinux 0x25d0cfd4 device_add_disk -EXPORT_SYMBOL vmlinux 0x25d17df7 security_sk_clone -EXPORT_SYMBOL vmlinux 0x25d674b5 mr_table_alloc EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free EXPORT_SYMBOL vmlinux 0x25ec1b28 strlen EXPORT_SYMBOL vmlinux 0x25f087a7 blk_rq_count_integrity_sg EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x262172af inet6_bind EXPORT_SYMBOL vmlinux 0x2623adb3 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x262ca43d register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x26314c11 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x263abd63 try_module_get EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263fc052 __pskb_pull_tail EXPORT_SYMBOL vmlinux 0x2641a1c6 diag224 +EXPORT_SYMBOL vmlinux 0x265eb8dc gro_cells_receive +EXPORT_SYMBOL vmlinux 0x266bf229 _dev_emerg +EXPORT_SYMBOL vmlinux 0x267c16d6 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x26886683 kmem_cache_size EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x2699652f end_page_private_2 +EXPORT_SYMBOL vmlinux 0x2691f893 tcf_qevent_dump EXPORT_SYMBOL vmlinux 0x26a5b938 sclp_pci_configure -EXPORT_SYMBOL vmlinux 0x26a99315 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x26a612d9 sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0x26ae5430 pci_clear_master +EXPORT_SYMBOL vmlinux 0x26ba9901 dev_change_flags EXPORT_SYMBOL vmlinux 0x26c4acf3 bio_kmalloc -EXPORT_SYMBOL vmlinux 0x26c8309b __block_write_full_page EXPORT_SYMBOL vmlinux 0x26d8ac71 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x26dcea28 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x26e11e99 km_state_expired EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier EXPORT_SYMBOL vmlinux 0x26e47b01 param_get_charp EXPORT_SYMBOL vmlinux 0x26e71731 fault_in_iov_iter_readable -EXPORT_SYMBOL vmlinux 0x26ec9433 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x26f1d868 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x26f15c8d neigh_update EXPORT_SYMBOL vmlinux 0x26f9db3b __destroy_inode -EXPORT_SYMBOL vmlinux 0x270ac541 xfrm_state_delete_tunnel EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x2710efe5 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x2719442d writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x272a0ff6 input_grab_device EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x273026f8 sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x2736a5c8 __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp EXPORT_SYMBOL vmlinux 0x2759f2bf radix_tree_gang_lookup EXPORT_SYMBOL vmlinux 0x275c24a7 kvfree_sensitive @@ -3411,90 +3408,81 @@ EXPORT_SYMBOL vmlinux 0x27624b37 pci_request_regions EXPORT_SYMBOL vmlinux 0x276abf19 iov_iter_advance EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string EXPORT_SYMBOL vmlinux 0x2779e6fe __debug_sprintf_exception +EXPORT_SYMBOL vmlinux 0x277b4670 prepare_kernel_cred EXPORT_SYMBOL vmlinux 0x277d4035 gen_pool_has_addr EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x2799f36a xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x279d974f xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0x27a0ba90 ccw_driver_unregister EXPORT_SYMBOL vmlinux 0x27a5b051 kthread_create_on_cpu EXPORT_SYMBOL vmlinux 0x27a78731 param_get_uint EXPORT_SYMBOL vmlinux 0x27a8f51b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x27ae3c43 get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c4f3af audit_log_start -EXPORT_SYMBOL vmlinux 0x27cdc266 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x27c994ea set_page_dirty EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27e87724 vlan_vid_del EXPORT_SYMBOL vmlinux 0x27eb9cd1 tcw_set_intrg -EXPORT_SYMBOL vmlinux 0x27edd6e5 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x27f169ff __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x27f9b30a nf_getsockopt EXPORT_SYMBOL vmlinux 0x28021ed1 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x2813179f vfs_clone_file_range EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek EXPORT_SYMBOL vmlinux 0x2823efdc pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x2838d5e5 register_key_type -EXPORT_SYMBOL vmlinux 0x2848507e consume_skb +EXPORT_SYMBOL vmlinux 0x2845d8c7 xfrm_input_resume EXPORT_SYMBOL vmlinux 0x284a06c9 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x284fae8e netif_carrier_on EXPORT_SYMBOL vmlinux 0x2859fddb jbd2_journal_restart EXPORT_SYMBOL vmlinux 0x286a3661 airq_iv_scan -EXPORT_SYMBOL vmlinux 0x286a8b17 unlock_buffer EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x2878fef4 blk_put_request -EXPORT_SYMBOL vmlinux 0x2899f942 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x28bf95f7 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x28d9bb60 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x2889f28e dev_mc_init +EXPORT_SYMBOL vmlinux 0x28ac6a6f mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x28d528fe tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x28d6b7b4 inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x28ff40a6 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x2903aff7 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x28fcb442 skb_queue_tail EXPORT_SYMBOL vmlinux 0x290bf84a complete_and_exit -EXPORT_SYMBOL vmlinux 0x2924a0c7 xfrm6_rcv_tnl EXPORT_SYMBOL vmlinux 0x29391e7d vm_munmap EXPORT_SYMBOL vmlinux 0x2956cf37 sclp_remove_processed EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop EXPORT_SYMBOL vmlinux 0x29789394 empty_zero_page -EXPORT_SYMBOL vmlinux 0x298c3992 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x298f92fc __alloc_skb +EXPORT_SYMBOL vmlinux 0x29941517 xfrm_register_km EXPORT_SYMBOL vmlinux 0x29a1a50c make_kprojid +EXPORT_SYMBOL vmlinux 0x29a3bd9f scsi_target_quiesce EXPORT_SYMBOL vmlinux 0x29a929e7 get_tree_single_reconf EXPORT_SYMBOL vmlinux 0x29b4afbc blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x29b61533 tcp_release_cb EXPORT_SYMBOL vmlinux 0x29bccce2 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x29bf8f43 xfrm_register_km EXPORT_SYMBOL vmlinux 0x29c16836 pcim_iounmap_regions EXPORT_SYMBOL vmlinux 0x29e04d82 pci_set_master +EXPORT_SYMBOL vmlinux 0x2a0050e0 tcp_release_cb EXPORT_SYMBOL vmlinux 0x2a0474c4 input_handler_for_each_handle EXPORT_SYMBOL vmlinux 0x2a062f4a textsearch_prepare -EXPORT_SYMBOL vmlinux 0x2a166d63 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x2a3f42d5 ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0x2a41d203 dql_init -EXPORT_SYMBOL vmlinux 0x2a4ad230 follow_up +EXPORT_SYMBOL vmlinux 0x2a45e550 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x2a503e13 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x2a65d3e0 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0x2a71ebea dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x2a72f725 tcp_filter EXPORT_SYMBOL vmlinux 0x2a805563 __kernel_cpumcf_end -EXPORT_SYMBOL vmlinux 0x2a842659 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x2a9b9d41 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x2a95f57e ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0x2a9ca59f proc_create EXPORT_SYMBOL vmlinux 0x2aa71d0c proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x2ab9e3b2 dev_queue_xmit_accel EXPORT_SYMBOL vmlinux 0x2abfa952 kthread_bind -EXPORT_SYMBOL vmlinux 0x2ac3ad98 tcf_block_put_ext EXPORT_SYMBOL vmlinux 0x2acef6a5 is_subdir +EXPORT_SYMBOL vmlinux 0x2af3d4da km_policy_notify EXPORT_SYMBOL vmlinux 0x2af3f454 ssch -EXPORT_SYMBOL vmlinux 0x2b1269c8 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x2b3ca076 cad_pid -EXPORT_SYMBOL vmlinux 0x2b48fd27 sock_no_bind +EXPORT_SYMBOL vmlinux 0x2b08c281 security_sb_remount +EXPORT_SYMBOL vmlinux 0x2b387822 account_page_redirty +EXPORT_SYMBOL vmlinux 0x2b503dc9 scsi_remove_device EXPORT_SYMBOL vmlinux 0x2b64893a debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b78b6d1 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x2b8208c4 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x2b96707d jbd2_journal_check_available_features EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2b9dd2db finalize_exec -EXPORT_SYMBOL vmlinux 0x2ba1d9c6 tcp_sock_set_cork EXPORT_SYMBOL vmlinux 0x2bbe76f4 rps_sock_flow_table EXPORT_SYMBOL vmlinux 0x2bc21233 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x2bc4fe36 __block_write_begin EXPORT_SYMBOL vmlinux 0x2bd47c73 blk_queue_update_dma_pad EXPORT_SYMBOL vmlinux 0x2bec2579 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x2bedb7f3 generic_file_open EXPORT_SYMBOL vmlinux 0x2bf57579 bmap -EXPORT_SYMBOL vmlinux 0x2c07b275 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x2c161483 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x2c19bbb3 sock_init_data EXPORT_SYMBOL vmlinux 0x2c1bd9ed ccw_device_set_options EXPORT_SYMBOL vmlinux 0x2c24d700 ihold EXPORT_SYMBOL vmlinux 0x2c2529cc zpool_register_driver @@ -3503,261 +3491,266 @@ EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar EXPORT_SYMBOL vmlinux 0x2c359657 make_bad_inode EXPORT_SYMBOL vmlinux 0x2c522c10 ccw_device_tm_start_timeout EXPORT_SYMBOL vmlinux 0x2c55b5d1 user_revoke -EXPORT_SYMBOL vmlinux 0x2c7f0c67 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x2c61a9ee device_get_mac_address EXPORT_SYMBOL vmlinux 0x2c9e3ead forget_all_cached_acls EXPORT_SYMBOL vmlinux 0x2ca2227e kbd_alloc EXPORT_SYMBOL vmlinux 0x2cb75ff1 __tracepoint_s390_cio_tsch EXPORT_SYMBOL vmlinux 0x2cbd23af trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x2cbdf7c6 capable_wrt_inode_uidgid EXPORT_SYMBOL vmlinux 0x2cc45e20 seq_release_private EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top EXPORT_SYMBOL vmlinux 0x2cd39ba7 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x2ce262bf xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x2cf33716 config_item_get +EXPORT_SYMBOL vmlinux 0x2cfd0562 sock_kzfree_s EXPORT_SYMBOL vmlinux 0x2d08ffc1 d_add +EXPORT_SYMBOL vmlinux 0x2d0cc39c mroute6_is_socket EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock EXPORT_SYMBOL vmlinux 0x2d1a943b pci_scan_root_bus EXPORT_SYMBOL vmlinux 0x2d276715 neigh_proc_dointvec EXPORT_SYMBOL vmlinux 0x2d2d592a input_reset_device EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d390339 inet_unregister_protosw EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d3d5d97 bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0x2d439931 pci_scan_root_bus_bridge EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d6a0e44 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x2d71c8ec end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x2d73f064 dev_remove_pack EXPORT_SYMBOL vmlinux 0x2d7bb3ce mpage_readahead +EXPORT_SYMBOL vmlinux 0x2d84cad8 dev_queue_xmit EXPORT_SYMBOL vmlinux 0x2d8c8db2 seq_lseek EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2da3fd1a rt6_lookup -EXPORT_SYMBOL vmlinux 0x2dc1ac7a udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x2dc80040 inet_sock_destruct EXPORT_SYMBOL vmlinux 0x2ddb834b __xa_alloc EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2e0e115d flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x2e36a533 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x2df39315 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x2e35c829 blk_rq_init EXPORT_SYMBOL vmlinux 0x2e3c5950 radix_tree_gang_lookup_tag_slot EXPORT_SYMBOL vmlinux 0x2e4634c5 pci_disable_device EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e65452e neigh_direct_output +EXPORT_SYMBOL vmlinux 0x2e709d71 icmp6_send EXPORT_SYMBOL vmlinux 0x2e762665 tty_unlock -EXPORT_SYMBOL vmlinux 0x2e94358d call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x2e9e3f96 __sock_i_ino -EXPORT_SYMBOL vmlinux 0x2e9f84ee tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x2e893eb3 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x2e92cbf8 tcp_gro_complete EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ed79790 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x2ed9bec8 inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0x2edcab17 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x2ee7de9c ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x2edce06d capable_wrt_inode_uidgid EXPORT_SYMBOL vmlinux 0x2ef5661d segment_modify_shared -EXPORT_SYMBOL vmlinux 0x2efbcd9b skb_vlan_push +EXPORT_SYMBOL vmlinux 0x2ef7a688 udplite_prot EXPORT_SYMBOL vmlinux 0x2f011b1f vma_set_file EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f08164c eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0x2f0d2041 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x2f194479 __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0x2f1bc122 clocksource_change_rating EXPORT_SYMBOL vmlinux 0x2f235031 pci_enable_atomic_ops_to_root EXPORT_SYMBOL vmlinux 0x2f2afc8f watchdog_register_governor EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security EXPORT_SYMBOL vmlinux 0x2f305177 super_setup_bdi -EXPORT_SYMBOL vmlinux 0x2f4ee89e dev_add_offload -EXPORT_SYMBOL vmlinux 0x2f524f90 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x2f4e51d7 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x2f60a3c5 __mmap_lock_do_trace_released EXPORT_SYMBOL vmlinux 0x2f67c902 __traceiter_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x2f6df369 dquot_disable -EXPORT_SYMBOL vmlinux 0x2f6f9554 xfrm_policy_destroy EXPORT_SYMBOL vmlinux 0x2f72c218 fscrypt_ioctl_get_policy EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f997d57 unregister_console EXPORT_SYMBOL vmlinux 0x2fa5a500 memcmp EXPORT_SYMBOL vmlinux 0x2fbe3a2e import_iovec EXPORT_SYMBOL vmlinux 0x2fd09944 blake2s_update EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier EXPORT_SYMBOL vmlinux 0x2fea1ecb blk_queue_split EXPORT_SYMBOL vmlinux 0x2feaa728 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x2fed973d mr_table_dump EXPORT_SYMBOL vmlinux 0x2ffffb6f _ebc_tolower EXPORT_SYMBOL vmlinux 0x300b293f pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x301c467e sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x30273aca xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x3027f9f8 file_open_root EXPORT_SYMBOL vmlinux 0x302c91df pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x304fd299 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x3046c386 dev_get_iflink EXPORT_SYMBOL vmlinux 0x307fae6a __register_chrdev -EXPORT_SYMBOL vmlinux 0x3085877e bprm_change_interp -EXPORT_SYMBOL vmlinux 0x308a80da mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x3084dc53 dev_close EXPORT_SYMBOL vmlinux 0x308f7f29 configfs_unregister_group EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309713a0 kernel_sendmsg EXPORT_SYMBOL vmlinux 0x309f0e40 input_mt_report_finger_count EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30c9d94b __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x30cf003b ll_rw_block +EXPORT_SYMBOL vmlinux 0x30d12a65 reuseport_detach_sock EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x3114fb90 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x31073446 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x31259fbe tcp_disconnect EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x31317052 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x313474e2 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x312bff02 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x313190a8 dev_uc_init EXPORT_SYMBOL vmlinux 0x31352444 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x3138a2e1 mmput_async -EXPORT_SYMBOL vmlinux 0x3147a2ab xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x314f11a0 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x3152669e xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0x3154ccc2 md_write_inc -EXPORT_SYMBOL vmlinux 0x315d1ddf fd_install +EXPORT_SYMBOL vmlinux 0x317f2f9d generic_permission +EXPORT_SYMBOL vmlinux 0x3182ab55 xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0x318f4ed8 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x319c7c35 inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0x31a34dc6 dma_fence_match_context EXPORT_SYMBOL vmlinux 0x31c99399 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x31e02003 vmf_insert_pfn_prot EXPORT_SYMBOL vmlinux 0x31e7b349 key_create_or_update EXPORT_SYMBOL vmlinux 0x31fbbe92 bioset_integrity_create EXPORT_SYMBOL vmlinux 0x3204a1f3 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x320aed6d skb_copy EXPORT_SYMBOL vmlinux 0x32122b11 __debug_sprintf_event -EXPORT_SYMBOL vmlinux 0x3236da4e xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x3261d89d sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x3266d95a arp_create +EXPORT_SYMBOL vmlinux 0x32684b28 eth_type_trans +EXPORT_SYMBOL vmlinux 0x3271cb52 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x327b8aef sock_set_keepalive EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state EXPORT_SYMBOL vmlinux 0x32896ef2 padata_alloc +EXPORT_SYMBOL vmlinux 0x328dc235 netdev_master_upper_dev_get EXPORT_SYMBOL vmlinux 0x329c07ce fb_show_logo EXPORT_SYMBOL vmlinux 0x32a2ca05 pci_write_vpd EXPORT_SYMBOL vmlinux 0x32a4a7e3 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x32b7aea0 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x32c69126 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x32c3f8db udp6_seq_ops EXPORT_SYMBOL vmlinux 0x32c6a2d8 _ebcasc_500 EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32cf1613 __hw_addr_sync_dev EXPORT_SYMBOL vmlinux 0x32d3fedd scsi_register_interface -EXPORT_SYMBOL vmlinux 0x32e04228 __scm_destroy -EXPORT_SYMBOL vmlinux 0x32e16559 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x330f8c3e ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x32dd15e7 nf_ip6_checksum EXPORT_SYMBOL vmlinux 0x331ac3ff hash_and_copy_to_iter EXPORT_SYMBOL vmlinux 0x331de0b9 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0x331e1d26 from_kgid_munged EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down +EXPORT_SYMBOL vmlinux 0x333ea68e locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x334b2933 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x3350acf3 would_dump EXPORT_SYMBOL vmlinux 0x335cab26 param_set_int EXPORT_SYMBOL vmlinux 0x3362a5ac udp_table -EXPORT_SYMBOL vmlinux 0x33a8aa0e sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0x33af3a41 ccw_device_tm_start -EXPORT_SYMBOL vmlinux 0x33b20e52 vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x33cb2279 jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0x33e08ede dump_emit EXPORT_SYMBOL vmlinux 0x33f74de3 _ascebc_500 EXPORT_SYMBOL vmlinux 0x33fa677f rename_lock EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x3410eb5d nf_log_trace -EXPORT_SYMBOL vmlinux 0x342903ef icmp_ndo_send -EXPORT_SYMBOL vmlinux 0x342cfb76 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x340c20e9 jbd2_transaction_committed EXPORT_SYMBOL vmlinux 0x343b1bcf pci_save_state -EXPORT_SYMBOL vmlinux 0x343e9059 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x343eb6ef security_path_mknod EXPORT_SYMBOL vmlinux 0x34454d8d tty_kref_put -EXPORT_SYMBOL vmlinux 0x344a2083 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x346077ab touch_buffer EXPORT_SYMBOL vmlinux 0x346d802d give_up_console EXPORT_SYMBOL vmlinux 0x346f4f17 _copy_from_iter -EXPORT_SYMBOL vmlinux 0x34761508 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x3470a91e xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x3487ddc0 block_write_end EXPORT_SYMBOL vmlinux 0x349cba85 strchr EXPORT_SYMBOL vmlinux 0x34a35fc7 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0x34a62a93 send_sig_info -EXPORT_SYMBOL vmlinux 0x34c26f74 dev_get_by_name EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34dfb57d mark_page_accessed -EXPORT_SYMBOL vmlinux 0x34eabbaf generic_file_direct_write EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x350680c1 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x34fc70db softnet_data EXPORT_SYMBOL vmlinux 0x350e86e3 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x35118d62 netlink_capable EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x35240fed __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x352438d1 redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0x35645daa vc_cons +EXPORT_SYMBOL vmlinux 0x356fe9c5 sock_no_sendpage EXPORT_SYMBOL vmlinux 0x3581ad8f pci_set_mwi EXPORT_SYMBOL vmlinux 0x35844729 file_update_time +EXPORT_SYMBOL vmlinux 0x3584780b vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x358af6cd alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0x3590acc9 cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0x35a748ed inet_offloads EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 EXPORT_SYMBOL vmlinux 0x35ae2a16 tty_insert_flip_string_flags EXPORT_SYMBOL vmlinux 0x35bc83e2 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x35d67e15 cookie_ecn_ok EXPORT_SYMBOL vmlinux 0x35da72e8 __irq_regs EXPORT_SYMBOL vmlinux 0x35ef38fc bio_add_page EXPORT_SYMBOL vmlinux 0x35f63dd3 tty_port_destroy EXPORT_SYMBOL vmlinux 0x35fd5110 __devm_release_region EXPORT_SYMBOL vmlinux 0x3602aba9 raw3270_register_notifier -EXPORT_SYMBOL vmlinux 0x36545144 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x36033c9e dev_get_stats +EXPORT_SYMBOL vmlinux 0x362de383 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x36573fd2 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x3657ad5c ipv6_dev_find EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x36601b87 clean_bdev_aliases EXPORT_SYMBOL vmlinux 0x36671d7b md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x3675abfc security_inode_invalidate_secctx EXPORT_SYMBOL vmlinux 0x3681e1b5 input_get_timestamp -EXPORT_SYMBOL vmlinux 0x36ac866a inet_frag_pull_head EXPORT_SYMBOL vmlinux 0x36b1fef5 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x36d250a3 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x36d49d6c ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x36c7ad8e build_skb_around +EXPORT_SYMBOL vmlinux 0x36d187a0 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x36f2287f sock_recvmsg EXPORT_SYMBOL vmlinux 0x370756ff bitmap_print_bitmask_to_buf -EXPORT_SYMBOL vmlinux 0x37176bba vfs_mknod EXPORT_SYMBOL vmlinux 0x371adac3 pci_find_bus +EXPORT_SYMBOL vmlinux 0x37341fb4 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x3734726d devm_register_netdev EXPORT_SYMBOL vmlinux 0x3736d025 down_read_killable -EXPORT_SYMBOL vmlinux 0x3738cff0 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x374c2e58 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x374e3fca jbd2_journal_get_undo_access EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe EXPORT_SYMBOL vmlinux 0x375ac910 gen_pool_add_owner EXPORT_SYMBOL vmlinux 0x376e2db9 pci_release_regions -EXPORT_SYMBOL vmlinux 0x37856e0c nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x37bd47d4 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x378cd396 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x379958ef mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x37acb5e7 netdev_update_features EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs EXPORT_SYMBOL vmlinux 0x37c71e3e d_exact_alias -EXPORT_SYMBOL vmlinux 0x37cf2fcd sk_stop_timer EXPORT_SYMBOL vmlinux 0x37ea3124 dma_unmap_resource -EXPORT_SYMBOL vmlinux 0x37f08253 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x37f42c1d vfs_rename +EXPORT_SYMBOL vmlinux 0x380b9445 security_old_inode_init_security EXPORT_SYMBOL vmlinux 0x380cf96c get_tree_single EXPORT_SYMBOL vmlinux 0x380ec283 bit_waitqueue EXPORT_SYMBOL vmlinux 0x38145aaf zero_fill_bio EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381e4d8a vm_map_pages_zero EXPORT_SYMBOL vmlinux 0x382055f9 find_inode_rcu EXPORT_SYMBOL vmlinux 0x3832522f __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x383a9184 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x385148bc inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll EXPORT_SYMBOL vmlinux 0x38605291 __inc_node_page_state EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x389100fd kernel_accept EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok EXPORT_SYMBOL vmlinux 0x38a52db1 dma_fence_init EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38c7f968 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x38b2c8f8 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x38bae1cb jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x38c4fd1e locks_remove_posix EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x38f5f887 security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0x38fba77d ap_cancel_message -EXPORT_SYMBOL vmlinux 0x391bea62 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x39085ae6 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x390c42c1 inet6_del_protocol EXPORT_SYMBOL vmlinux 0x392a4e30 configfs_depend_item EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3951d10f neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x39777a79 __lock_page EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399f497b pgste_perform_essa EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and EXPORT_SYMBOL vmlinux 0x39c60ac5 ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0x39dce7c4 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x39cce65e ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x39db6c75 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x39e02af4 security_path_mkdir EXPORT_SYMBOL vmlinux 0x39e09a62 ap_flush_queue -EXPORT_SYMBOL vmlinux 0x39e8d5eb rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x39e3bf42 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x39e92503 __alloc_skb +EXPORT_SYMBOL vmlinux 0x39e957ec lookup_one_len +EXPORT_SYMBOL vmlinux 0x39f3058f trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x3a016612 __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc EXPORT_SYMBOL vmlinux 0x3a1733d0 dfltcc_inflate EXPORT_SYMBOL vmlinux 0x3a2eb45c tty_port_close EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a4cf448 do_clone_file_range EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized EXPORT_SYMBOL vmlinux 0x3a55dcfd dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0x3a57cf62 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x3a61fb99 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x3a824181 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x3a856d9e kernel_sendpage +EXPORT_SYMBOL vmlinux 0x3a8c196b default_llseek EXPORT_SYMBOL vmlinux 0x3a8f22ce gen_pool_alloc_algo_owner EXPORT_SYMBOL vmlinux 0x3a9f3a91 padata_free -EXPORT_SYMBOL vmlinux 0x3aa99394 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x3aaed372 flow_indr_dev_register EXPORT_SYMBOL vmlinux 0x3aaf7c77 blk_queue_max_segment_size EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3acc0ec9 __find_get_block EXPORT_SYMBOL vmlinux 0x3acc7dee mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0x3af2f657 tty_lock EXPORT_SYMBOL vmlinux 0x3afe12ac kill_litter_super -EXPORT_SYMBOL vmlinux 0x3b090c16 udp_push_pending_frames EXPORT_SYMBOL vmlinux 0x3b176ce7 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x3b337017 eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0x3b588442 devm_free_irq EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint EXPORT_SYMBOL vmlinux 0x3b756f6a crc32_le +EXPORT_SYMBOL vmlinux 0x3b9b95e7 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x3ba10f40 __breadahead EXPORT_SYMBOL vmlinux 0x3bbe0107 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x3bd11dc1 ip_route_input_noref EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free EXPORT_SYMBOL vmlinux 0x3beafe0a sclp EXPORT_SYMBOL vmlinux 0x3bf598da pci_wait_for_pending_transaction @@ -3765,32 +3758,36 @@ EXPORT_SYMBOL vmlinux 0x3bf741a6 devm_gen_pool_create EXPORT_SYMBOL vmlinux 0x3bfcd238 drop_nlink EXPORT_SYMBOL vmlinux 0x3bfd2e07 ns_capable_setid EXPORT_SYMBOL vmlinux 0x3c0b4eee __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x3c0e8a11 scm_detach_fds EXPORT_SYMBOL vmlinux 0x3c11ff08 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x3c142fa5 tcp_md5_do_add EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link EXPORT_SYMBOL vmlinux 0x3c26380b dqget -EXPORT_SYMBOL vmlinux 0x3c35a9e2 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x3c371620 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x3c3a6663 security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf EXPORT_SYMBOL vmlinux 0x3c4dbedb __dec_node_page_state EXPORT_SYMBOL vmlinux 0x3c50a20c mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x3c57364a iterate_dir EXPORT_SYMBOL vmlinux 0x3c5c78d6 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x3c5ef064 no_llseek EXPORT_SYMBOL vmlinux 0x3c6f77c9 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x3c6fc11a jbd2_fc_end_commit EXPORT_SYMBOL vmlinux 0x3c77bb26 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x3cc17d57 jbd2_journal_submit_inode_data_buffers EXPORT_SYMBOL vmlinux 0x3cc4e0f1 rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x3cce53f8 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x3cc860b1 netdev_lower_get_next EXPORT_SYMBOL vmlinux 0x3cd63155 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x3ce3b90d generic_write_checks EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq EXPORT_SYMBOL vmlinux 0x3d117a60 itcw_calc_size -EXPORT_SYMBOL vmlinux 0x3d3d79d3 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x3d429245 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x3d2af2df inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x3d3e416b fasync_helper +EXPORT_SYMBOL vmlinux 0x3d44411c sockfd_lookup EXPORT_SYMBOL vmlinux 0x3d4cb9d1 airq_iv_create EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d59de0e migrate_page_states EXPORT_SYMBOL vmlinux 0x3d67e492 proc_mkdir EXPORT_SYMBOL vmlinux 0x3d6b3755 empty_name -EXPORT_SYMBOL vmlinux 0x3d79e817 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x3d7180ba vfs_unlink EXPORT_SYMBOL vmlinux 0x3d7f5092 init_pseudo EXPORT_SYMBOL vmlinux 0x3da18693 blkdev_put EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key @@ -3802,573 +3799,600 @@ EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data EXPORT_SYMBOL vmlinux 0x3dcf7563 ptep_xchg_lazy EXPORT_SYMBOL vmlinux 0x3dd93834 insert_inode_locked EXPORT_SYMBOL vmlinux 0x3dde44a2 ap_send_config_uevent -EXPORT_SYMBOL vmlinux 0x3de4d55c udp_gro_complete -EXPORT_SYMBOL vmlinux 0x3deb166f dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x3ddf6be0 security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head EXPORT_SYMBOL vmlinux 0x3e0fa62d dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x3e1fd777 fget_raw +EXPORT_SYMBOL vmlinux 0x3e203d1b sock_bind_add +EXPORT_SYMBOL vmlinux 0x3e2cdcf9 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x3e322779 gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule EXPORT_SYMBOL vmlinux 0x3e555f37 debug_unregister EXPORT_SYMBOL vmlinux 0x3e572682 __wake_up +EXPORT_SYMBOL vmlinux 0x3e5c9e7d fifo_set_limit +EXPORT_SYMBOL vmlinux 0x3e854230 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x3ea41ac3 lookup_one_len_unlocked EXPORT_SYMBOL vmlinux 0x3eb94250 itcw_add_dcw -EXPORT_SYMBOL vmlinux 0x3f028e81 genl_notify +EXPORT_SYMBOL vmlinux 0x3ef81f75 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x3f15aa1c xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0x3f202860 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x3f23d0a7 inode_set_ctime_current EXPORT_SYMBOL vmlinux 0x3f3eb6ea pci_read_vpd EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f7d06d5 end_page_writeback EXPORT_SYMBOL vmlinux 0x3f86da14 elv_rb_find EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f8e7e73 vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0x3f940c8f textsearch_register EXPORT_SYMBOL vmlinux 0x3fa913da strspn EXPORT_SYMBOL vmlinux 0x3fad1cfa dput EXPORT_SYMBOL vmlinux 0x3fadb213 ZSTD_getFrameParams +EXPORT_SYMBOL vmlinux 0x3fb3c18f kern_unmount EXPORT_SYMBOL vmlinux 0x3fb8bac6 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x3fc3120f netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x3fca700c dev_load EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3febdd48 skb_dump EXPORT_SYMBOL vmlinux 0x40063bef d_invalidate +EXPORT_SYMBOL vmlinux 0x40135964 poll_freewait EXPORT_SYMBOL vmlinux 0x402a960a jiffies_64 -EXPORT_SYMBOL vmlinux 0x405ec93d flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x40820377 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x4031528e rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x403a07b2 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x405cbfa8 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x40676d3b jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x407e86fe unmap_mapping_range EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a79ff5 netlink_kernel_release EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40ab28b5 jbd2_journal_check_used_features EXPORT_SYMBOL vmlinux 0x40b77922 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x40c7203d mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d42c84 inet_del_offload EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d67875 scsi_ioctl EXPORT_SYMBOL vmlinux 0x40d7e45e d_drop -EXPORT_SYMBOL vmlinux 0x40e17593 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x40e54263 vlan_uses_dev EXPORT_SYMBOL vmlinux 0x40f37b03 nla_reserve +EXPORT_SYMBOL vmlinux 0x40fc2267 sock_sendmsg EXPORT_SYMBOL vmlinux 0x4105bf31 bio_copy_data +EXPORT_SYMBOL vmlinux 0x410cd35b netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0x41139680 __frontswap_test +EXPORT_SYMBOL vmlinux 0x411a20f3 sk_page_frag_refill EXPORT_SYMBOL vmlinux 0x412e9a5c mark_info_dirty EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x413e7da5 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x4136f7ac __pagevec_release EXPORT_SYMBOL vmlinux 0x4147aa02 __tracepoint_s390_cio_msch EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41484187 dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0x4149b396 s390_isolate_bp_guest EXPORT_SYMBOL vmlinux 0x4159fd89 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x415d7592 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x4181fa3c __lock_buffer EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time EXPORT_SYMBOL vmlinux 0x41988588 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x419edd6e neigh_table_clear EXPORT_SYMBOL vmlinux 0x41a752ee mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0x41a959e2 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x41bb028e skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x41d9168e generic_parse_monolithic EXPORT_SYMBOL vmlinux 0x41e31efd simple_open -EXPORT_SYMBOL vmlinux 0x4203666b tcf_qevent_handle EXPORT_SYMBOL vmlinux 0x4203fd2c ptep_xchg_direct EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse -EXPORT_SYMBOL vmlinux 0x420bb6f0 tag_pages_for_writeback EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue EXPORT_SYMBOL vmlinux 0x421c2c65 ap_driver_register +EXPORT_SYMBOL vmlinux 0x4222924d vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len EXPORT_SYMBOL vmlinux 0x423404aa __cleancache_invalidate_fs EXPORT_SYMBOL vmlinux 0x4243170d elv_rb_former_request EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424c459f jbd2_fc_wait_bufs EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4253791b kern_unmount_array -EXPORT_SYMBOL vmlinux 0x425a4fb8 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x425d5b38 tcp_ioctl EXPORT_SYMBOL vmlinux 0x425e9b25 pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x426182bd jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x42644900 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x42675e3a readahead_expand EXPORT_SYMBOL vmlinux 0x429dcdc0 xa_find_after EXPORT_SYMBOL vmlinux 0x42ae6d99 xa_find -EXPORT_SYMBOL vmlinux 0x42c0babb __nlmsg_put -EXPORT_SYMBOL vmlinux 0x42c46271 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x42e4bc25 brioctl_set +EXPORT_SYMBOL vmlinux 0x42bf2b60 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x42cbf456 rtnl_unicast EXPORT_SYMBOL vmlinux 0x42eec4f7 set_capacity EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer EXPORT_SYMBOL vmlinux 0x42f8d84f __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x42f9cc56 __dynamic_ibdev_dbg EXPORT_SYMBOL vmlinux 0x42fc23ac prepare_creds -EXPORT_SYMBOL vmlinux 0x43024e02 inet_pton_with_scope EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate EXPORT_SYMBOL vmlinux 0x433ad3d1 d_splice_alias -EXPORT_SYMBOL vmlinux 0x434d655b __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid EXPORT_SYMBOL vmlinux 0x43737fd1 __traceiter_dma_fence_signaled EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438758ab sock_i_uid +EXPORT_SYMBOL vmlinux 0x43915413 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x439f94d4 dst_dev_put EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x43b9b87a tcp_prot EXPORT_SYMBOL vmlinux 0x43bdfa20 console_irq EXPORT_SYMBOL vmlinux 0x43cf3bc3 dql_completed EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc EXPORT_SYMBOL vmlinux 0x43d9ba52 fault_in_readable -EXPORT_SYMBOL vmlinux 0x43da8597 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x43e966a3 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x43ddf760 secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0x440fcddf __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x441573ca sock_create_kern -EXPORT_SYMBOL vmlinux 0x443730a7 finish_swait -EXPORT_SYMBOL vmlinux 0x443e5724 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x44178870 xfrm_state_delete_tunnel EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table EXPORT_SYMBOL vmlinux 0x4449a6dd register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x444a1cfb scsi_device_get +EXPORT_SYMBOL vmlinux 0x444decf3 xp_can_alloc +EXPORT_SYMBOL vmlinux 0x446381fb seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0x4463b0ac bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x447176a2 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x4497fd75 jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add EXPORT_SYMBOL vmlinux 0x44b30fb5 csch EXPORT_SYMBOL vmlinux 0x44c1983f tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x44c929be kernel_bind -EXPORT_SYMBOL vmlinux 0x44c95e07 block_write_end +EXPORT_SYMBOL vmlinux 0x44c82719 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x44c8aeb6 jbd2_journal_ack_err EXPORT_SYMBOL vmlinux 0x44d6e188 generic_shutdown_super EXPORT_SYMBOL vmlinux 0x44e9a829 match_token EXPORT_SYMBOL vmlinux 0x44e9b7d0 __init_waitqueue_head EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x450098eb reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x450503e6 mark_page_accessed EXPORT_SYMBOL vmlinux 0x4513f1a4 dma_pool_create EXPORT_SYMBOL vmlinux 0x451647c7 I_BDEV -EXPORT_SYMBOL vmlinux 0x451968ad filemap_page_mkwrite EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x452ee8db __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4556fa2e netif_carrier_off EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x4580dfb6 sk_free +EXPORT_SYMBOL vmlinux 0x458fbecf tcp_close +EXPORT_SYMBOL vmlinux 0x45953d5e vm_insert_pages EXPORT_SYMBOL vmlinux 0x45b187d6 update_region EXPORT_SYMBOL vmlinux 0x45b9877f prepare_to_wait EXPORT_SYMBOL vmlinux 0x45d15ed2 simple_setattr EXPORT_SYMBOL vmlinux 0x45d3c773 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x45ed2b4d remove_arg_zero +EXPORT_SYMBOL vmlinux 0x45e8c629 bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0x45f17fb6 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x45f1ae94 tc_setup_flow_action +EXPORT_SYMBOL vmlinux 0x45fa49c2 tcf_exts_dump EXPORT_SYMBOL vmlinux 0x45fdb146 dma_fence_enable_sw_signaling EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x461d0eee skb_append EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x46500535 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x465131ce eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x46624d53 dev_set_promiscuity EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x4686781b fc_mount +EXPORT_SYMBOL vmlinux 0x4690508a jbd2_trans_will_send_data_barrier EXPORT_SYMBOL vmlinux 0x46a3eef1 d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x46ab06af udp_ioctl -EXPORT_SYMBOL vmlinux 0x46b5627b inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x46bd4ca3 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x46a83ada find_get_pages_contig EXPORT_SYMBOL vmlinux 0x46cd8fce iucv_message_send EXPORT_SYMBOL vmlinux 0x46d59f7d smp_cpu_mt_shift EXPORT_SYMBOL vmlinux 0x46e319aa tcw_set_data EXPORT_SYMBOL vmlinux 0x46e68ccb dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x46ee6ec0 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x46f803d5 sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0x46fac771 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x471a85ad trace_event_printf -EXPORT_SYMBOL vmlinux 0x4727b226 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x4707be35 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x4727ec6d follow_pfn EXPORT_SYMBOL vmlinux 0x47392e76 sclp_ocf_cpc_name_copy EXPORT_SYMBOL vmlinux 0x473bff7c dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x47500642 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x474bea25 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x4756df4b sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0x4757f929 setattr_should_drop_sgid -EXPORT_SYMBOL vmlinux 0x47586a0e mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x475c809c xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0x47608f61 param_ops_int EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev EXPORT_SYMBOL vmlinux 0x47758e45 validate_slab_cache EXPORT_SYMBOL vmlinux 0x47784cdf blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x477b2123 xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0x477ecaf8 scsi_rescan_device EXPORT_SYMBOL vmlinux 0x47805a05 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x4784da04 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x4785e178 inet_dev_addr_type EXPORT_SYMBOL vmlinux 0x4789fc74 set_anon_super -EXPORT_SYMBOL vmlinux 0x478ef46e sock_edemux EXPORT_SYMBOL vmlinux 0x4791c6ea gen_pool_create EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c267a7 _dev_crit EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47d11730 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x48040221 sock_alloc_file EXPORT_SYMBOL vmlinux 0x480e8a93 zpci_report_error EXPORT_SYMBOL vmlinux 0x48140511 inc_zone_page_state EXPORT_SYMBOL vmlinux 0x481428f1 pcie_set_readrq EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x4819f4ad __dst_destroy_metrics_generic EXPORT_SYMBOL vmlinux 0x4823819e raw3270_buffer_address EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work EXPORT_SYMBOL vmlinux 0x4829e34a ccw_device_set_offline +EXPORT_SYMBOL vmlinux 0x4832c2b2 dns_query EXPORT_SYMBOL vmlinux 0x48373c5b pci_request_irq -EXPORT_SYMBOL vmlinux 0x483c874c scsi_target_quiesce EXPORT_SYMBOL vmlinux 0x484a514c md_bitmap_end_sync EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 EXPORT_SYMBOL vmlinux 0x484fc1cb dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x48542291 eth_header_cache_update EXPORT_SYMBOL vmlinux 0x487370a2 fault_in_writeable -EXPORT_SYMBOL vmlinux 0x48841ee3 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x489a763e __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x487dca60 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x488c617c ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a297d0 ip_queue_xmit EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48bdc110 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x48d28eaf xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x48c5c872 tcp_parse_options EXPORT_SYMBOL vmlinux 0x48df7b6f remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x48fba2a9 vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert EXPORT_SYMBOL vmlinux 0x4905d280 devm_ioremap_resource EXPORT_SYMBOL vmlinux 0x4905ec18 pci_resize_resource EXPORT_SYMBOL vmlinux 0x490dddac dq_data_lock -EXPORT_SYMBOL vmlinux 0x49286750 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x492d046c kernel_accept -EXPORT_SYMBOL vmlinux 0x492d9bf2 ipv6_setsockopt EXPORT_SYMBOL vmlinux 0x4932011e gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x4932ede2 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x4937c8a5 qdisc_hash_del EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 EXPORT_SYMBOL vmlinux 0x495990f3 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x495e4ee0 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x4961dbce ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0x49672828 node_states -EXPORT_SYMBOL vmlinux 0x496d7017 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x496d768f __break_lease -EXPORT_SYMBOL vmlinux 0x49b4a949 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x4978eb39 keyring_alloc +EXPORT_SYMBOL vmlinux 0x4987bfa8 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x498d9c25 scsi_host_put +EXPORT_SYMBOL vmlinux 0x498f00bc ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x49b881ba rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0x49cd88a9 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x49cdf74c sock_no_mmap EXPORT_SYMBOL vmlinux 0x49e5e7f3 hdmi_drm_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x49e98330 setattr_copy +EXPORT_SYMBOL vmlinux 0x4a1fb58a unix_detach_fds EXPORT_SYMBOL vmlinux 0x4a34681e input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x4a3bc5fe skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x4a53a8e0 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x4a4ad506 pid_task EXPORT_SYMBOL vmlinux 0x4a572e3a swake_up_all EXPORT_SYMBOL vmlinux 0x4a7d669f inode_init_owner EXPORT_SYMBOL vmlinux 0x4a848e9f __quota_error -EXPORT_SYMBOL vmlinux 0x4a8d8fd5 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x4a904ebb netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4aa405bb noop_qdisc EXPORT_SYMBOL vmlinux 0x4ab5f2b1 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x4abd208a sk_reset_timer EXPORT_SYMBOL vmlinux 0x4ac06180 key_put -EXPORT_SYMBOL vmlinux 0x4ac44d4d rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x4ac63ed5 block_commit_write EXPORT_SYMBOL vmlinux 0x4addd63e jbd2_journal_free_reserved EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4b06ad8e udp_ioctl EXPORT_SYMBOL vmlinux 0x4b081d00 cred_fscmp EXPORT_SYMBOL vmlinux 0x4b0b019e add_device_randomness +EXPORT_SYMBOL vmlinux 0x4b11c50c sock_set_mark +EXPORT_SYMBOL vmlinux 0x4b17cbb7 xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x4b369167 __SCK__tp_func_s390_diagnose +EXPORT_SYMBOL vmlinux 0x4b372fb3 ipv6_chk_custom_prefix EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b66720a tcp_make_synack -EXPORT_SYMBOL vmlinux 0x4b739612 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0x4b82a962 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x4b63af40 unregister_netdev EXPORT_SYMBOL vmlinux 0x4b8bbb8a input_register_device EXPORT_SYMBOL vmlinux 0x4b8f4e7a down_read_trylock EXPORT_SYMBOL vmlinux 0x4ba833ac super_setup_bdi_name EXPORT_SYMBOL vmlinux 0x4ba897a2 param_set_bint -EXPORT_SYMBOL vmlinux 0x4bbf2ef0 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x4bc4334b crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x4c0ef88e wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0x4c3dddfa __ip_select_ident +EXPORT_SYMBOL vmlinux 0x4bb5b7a5 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x4be2c837 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x4bf492ad dev_uc_sync +EXPORT_SYMBOL vmlinux 0x4c243f0b netdev_notify_peers EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c472b1b lookup_one EXPORT_SYMBOL vmlinux 0x4c4c956e nla_memcmp -EXPORT_SYMBOL vmlinux 0x4c6fd9e4 kill_pgrp -EXPORT_SYMBOL vmlinux 0x4c731f48 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x4c7733bd eth_mac_addr -EXPORT_SYMBOL vmlinux 0x4cc03030 inet_getname -EXPORT_SYMBOL vmlinux 0x4cc3fb89 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x4c5df1c9 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x4c97913f dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x4c98813e __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x4cc83223 netdev_change_features EXPORT_SYMBOL vmlinux 0x4cd6949b input_release_device -EXPORT_SYMBOL vmlinux 0x4ce1f71f __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x4cefeb15 follow_down_one -EXPORT_SYMBOL vmlinux 0x4cfbecd0 arp_create -EXPORT_SYMBOL vmlinux 0x4d0f57cd path_put +EXPORT_SYMBOL vmlinux 0x4d07356b generic_file_mmap +EXPORT_SYMBOL vmlinux 0x4d0d5c2a inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x4d201027 put_fs_context +EXPORT_SYMBOL vmlinux 0x4d239d33 init_net EXPORT_SYMBOL vmlinux 0x4d370e9b simple_getattr -EXPORT_SYMBOL vmlinux 0x4d4af12c inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x4d3c2b09 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x4d52743c generic_file_llseek EXPORT_SYMBOL vmlinux 0x4d5fe525 percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0x4d605e19 key_move -EXPORT_SYMBOL vmlinux 0x4d67d0a5 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x4d97baac proc_set_size EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4da26873 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x4dad1790 inet_pton_with_scope EXPORT_SYMBOL vmlinux 0x4db3f113 input_get_keycode -EXPORT_SYMBOL vmlinux 0x4db895cd netpoll_setup EXPORT_SYMBOL vmlinux 0x4dda726b match_strlcpy -EXPORT_SYMBOL vmlinux 0x4ddfcebe sock_alloc_send_pskb EXPORT_SYMBOL vmlinux 0x4dea1053 memchr -EXPORT_SYMBOL vmlinux 0x4decd514 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x4df290b7 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x4df01a00 tcf_idr_release EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4e067953 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0x4e14fb7d __traceiter_s390_cio_msch +EXPORT_SYMBOL vmlinux 0x4e1bf4f9 finish_open EXPORT_SYMBOL vmlinux 0x4e23d57e uv_info +EXPORT_SYMBOL vmlinux 0x4e2756a6 xp_free +EXPORT_SYMBOL vmlinux 0x4e2bb1b9 tcp_sock_set_syncnt EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e3574f0 sock_i_ino EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow EXPORT_SYMBOL vmlinux 0x4e46c67f pci_free_irq EXPORT_SYMBOL vmlinux 0x4e4924ea init_virt_timer -EXPORT_SYMBOL vmlinux 0x4e49e42c xfrm6_rcv EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e7dcbaf page_zero_new_buffers EXPORT_SYMBOL vmlinux 0x4e89ce10 idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0x4e9e6a05 downgrade_write EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx EXPORT_SYMBOL vmlinux 0x4eb0dcf4 blk_mq_init_queue EXPORT_SYMBOL vmlinux 0x4ec1c9d8 __fs_parse EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ec6ada4 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x4ef19280 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x4ef8d678 skb_dequeue +EXPORT_SYMBOL vmlinux 0x4f098b67 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create EXPORT_SYMBOL vmlinux 0x4f2cd1b5 __cpcmd -EXPORT_SYMBOL vmlinux 0x4f3b76c4 sk_wait_data -EXPORT_SYMBOL vmlinux 0x4f570af6 skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0x4f5aa411 radix_tree_next_chunk EXPORT_SYMBOL vmlinux 0x4f9cbdae pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x4fa79b64 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x4fcb102b netdev_warn EXPORT_SYMBOL vmlinux 0x4fe623e5 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x4fe713d4 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0x4fed506d flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x4ff02cd1 scsi_block_when_processing_errors EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree EXPORT_SYMBOL vmlinux 0x5003d52a ap_perms_mutex EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x50137340 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x5017f3b5 kill_fasync +EXPORT_SYMBOL vmlinux 0x501c163f ip_check_defrag +EXPORT_SYMBOL vmlinux 0x50219f84 __page_cache_alloc EXPORT_SYMBOL vmlinux 0x5026440f pci_ep_cfs_add_epf_group EXPORT_SYMBOL vmlinux 0x504de4e8 param_ops_bool EXPORT_SYMBOL vmlinux 0x50624917 sha1_init EXPORT_SYMBOL vmlinux 0x50629f99 bio_clone_fast EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free EXPORT_SYMBOL vmlinux 0x507144f4 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x50742f18 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x507a274a security_unix_may_send EXPORT_SYMBOL vmlinux 0x507b25d0 kstrndup EXPORT_SYMBOL vmlinux 0x50863162 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x508b7251 udp_read_sock EXPORT_SYMBOL vmlinux 0x508fc3fd seq_put_decimal_ull EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x509f98b6 __skb_pad EXPORT_SYMBOL vmlinux 0x50a1f350 devm_ioremap_wc EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist EXPORT_SYMBOL vmlinux 0x50ac7f69 blk_queue_logical_block_size EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50c1f3bb vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0x50cc6697 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x50cfa91e page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d2508f __dev_remove_pack EXPORT_SYMBOL vmlinux 0x50e087dc radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x5128df12 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x513c8233 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x50f46d3e get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x51003a9d zap_page_range +EXPORT_SYMBOL vmlinux 0x5110d11c scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x511498f9 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x513c76d4 napi_complete_done EXPORT_SYMBOL vmlinux 0x51473316 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x5162600c skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x515e1a67 posix_test_lock EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend EXPORT_SYMBOL vmlinux 0x5166f1f7 task_work_add EXPORT_SYMBOL vmlinux 0x5168226b blk_queue_update_dma_alignment EXPORT_SYMBOL vmlinux 0x5182653c pci_request_region EXPORT_SYMBOL vmlinux 0x518bb9e6 diag204 -EXPORT_SYMBOL vmlinux 0x51bbcee9 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x51986e4d tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x51bdb5a9 __sk_dst_check EXPORT_SYMBOL vmlinux 0x51c027d3 unload_nls -EXPORT_SYMBOL vmlinux 0x51c6ca45 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0x51c747f4 PageMovable +EXPORT_SYMBOL vmlinux 0x51e0d594 ip6_err_gen_icmpv6_unreach EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x51fdd5eb km_state_notify EXPORT_SYMBOL vmlinux 0x5206d89a md_register_thread +EXPORT_SYMBOL vmlinux 0x5207bb48 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x52173248 vfs_mkdir EXPORT_SYMBOL vmlinux 0x522dff9a set_pgste_bits EXPORT_SYMBOL vmlinux 0x525b47d3 fb_blank EXPORT_SYMBOL vmlinux 0x5277300c fault_in_iov_iter_writeable -EXPORT_SYMBOL vmlinux 0x5279a08c security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0x527bd718 security_socket_socketpair EXPORT_SYMBOL vmlinux 0x52819990 kernel_cpumcf_alert -EXPORT_SYMBOL vmlinux 0x52a2df91 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x52869926 dev_mc_add +EXPORT_SYMBOL vmlinux 0x529e468c tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x52bcd663 netdev_features_change EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52e31491 tcf_block_get +EXPORT_SYMBOL vmlinux 0x52ee32ed tcp_setsockopt EXPORT_SYMBOL vmlinux 0x52f08a1c inode_nohighmem +EXPORT_SYMBOL vmlinux 0x52fc6172 brioctl_set EXPORT_SYMBOL vmlinux 0x52fef152 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x52fffd5d tcp_read_sock EXPORT_SYMBOL vmlinux 0x530bbc96 __hsiphash_unaligned EXPORT_SYMBOL vmlinux 0x5310f146 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x53122572 mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0x531625b6 wait_for_completion -EXPORT_SYMBOL vmlinux 0x5322e7ee tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x5333c7d7 pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x533fb208 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x535a7c18 tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0x535d2f61 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x53649964 wait_on_page_private_2 -EXPORT_SYMBOL vmlinux 0x536a9b45 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x537b4365 __breadahead -EXPORT_SYMBOL vmlinux 0x537e7ab8 dev_mc_add -EXPORT_SYMBOL vmlinux 0x537fc71a skb_copy_bits -EXPORT_SYMBOL vmlinux 0x538fe57d __brelse +EXPORT_SYMBOL vmlinux 0x538be869 vfs_path_lookup EXPORT_SYMBOL vmlinux 0x539b236e param_set_bool EXPORT_SYMBOL vmlinux 0x53a2e9d1 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x53b96d21 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x53af97c6 tcp_sendmsg EXPORT_SYMBOL vmlinux 0x53c24b01 mutex_is_locked -EXPORT_SYMBOL vmlinux 0x53c87c08 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x53d213ca tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0x53d563ac fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0x53dcb619 dquot_free_inode -EXPORT_SYMBOL vmlinux 0x53fa22c1 __skb_checksum +EXPORT_SYMBOL vmlinux 0x53e5500c scsi_command_normalize_sense EXPORT_SYMBOL vmlinux 0x53fd6dc9 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x54079382 page_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x540862e2 diag14 EXPORT_SYMBOL vmlinux 0x540ab508 kmem_cache_free_bulk EXPORT_SYMBOL vmlinux 0x540ee8a5 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x54181b9e sock_bindtoindex EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x545081d9 build_skb -EXPORT_SYMBOL vmlinux 0x545107b6 unix_detach_fds EXPORT_SYMBOL vmlinux 0x54513927 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x5459f335 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x547a1a12 tcf_get_next_chain EXPORT_SYMBOL vmlinux 0x548a9011 __frontswap_store EXPORT_SYMBOL vmlinux 0x548d17c4 airq_iv_alloc EXPORT_SYMBOL vmlinux 0x549926da address_space_init_once EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value -EXPORT_SYMBOL vmlinux 0x54be36b0 stream_open -EXPORT_SYMBOL vmlinux 0x54bf34e6 inet_add_protocol EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x54d3da3a dev_uc_add_excl EXPORT_SYMBOL vmlinux 0x54e5e464 redraw_screen +EXPORT_SYMBOL vmlinux 0x54e5fcf9 netdev_set_num_tc EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ed6a0e xp_dma_unmap -EXPORT_SYMBOL vmlinux 0x54f1caa0 prepare_to_swait_event EXPORT_SYMBOL vmlinux 0x54fd3619 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x54fd8382 dev_remove_offload EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x550e168b migrate_page +EXPORT_SYMBOL vmlinux 0x5510f040 mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0x551668bc kstrtoull_from_user EXPORT_SYMBOL vmlinux 0x551913d1 __invalidate_device -EXPORT_SYMBOL vmlinux 0x551a84d1 free_netdev EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551e4425 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x552490e8 netdev_master_upper_dev_get EXPORT_SYMBOL vmlinux 0x552556a8 gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0x55306cd9 ip6_output -EXPORT_SYMBOL vmlinux 0x553b71a0 xfrm_state_update EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched EXPORT_SYMBOL vmlinux 0x555ccb97 up_read +EXPORT_SYMBOL vmlinux 0x55765f53 __netdev_notify_peers EXPORT_SYMBOL vmlinux 0x55848e9f ap_driver_unregister -EXPORT_SYMBOL vmlinux 0x55895fa7 noop_qdisc EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x558fe011 mptcp_subflow_reqsk_alloc EXPORT_SYMBOL vmlinux 0x55a3f3e0 sclp_add_request -EXPORT_SYMBOL vmlinux 0x55c0594d set_create_files_as +EXPORT_SYMBOL vmlinux 0x55ad8121 module_refcount +EXPORT_SYMBOL vmlinux 0x55cbaee9 generic_setlease +EXPORT_SYMBOL vmlinux 0x55ce3698 skb_find_text EXPORT_SYMBOL vmlinux 0x55d63108 kstrtol_from_user EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 EXPORT_SYMBOL vmlinux 0x55eccdf5 mod_virt_timer +EXPORT_SYMBOL vmlinux 0x55f8975d netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x55fae436 napi_gro_receive EXPORT_SYMBOL vmlinux 0x55fbaf1d smsg_unregister_callback -EXPORT_SYMBOL vmlinux 0x5610b26c jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x5605b30d mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x56155049 copy_string_kernel EXPORT_SYMBOL vmlinux 0x562b9be5 ap_test_config_ctrl_domain EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56394ec6 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x563a0da6 in6_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x564405cb __cpu_online_mask EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk EXPORT_SYMBOL vmlinux 0x564de902 fscrypt_zeroout_range EXPORT_SYMBOL vmlinux 0x565671df posix_acl_to_xattr EXPORT_SYMBOL vmlinux 0x5660f88f raw3270_add_view EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x56a079a8 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x56a45a21 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x568c1d57 qdisc_put +EXPORT_SYMBOL vmlinux 0x5699307d dev_deactivate +EXPORT_SYMBOL vmlinux 0x56a75856 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x56ad9048 key_invalidate +EXPORT_SYMBOL vmlinux 0x56b43582 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x56c1d09c inet6_add_protocol EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56c93331 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x56cebd8d __udp_disconnect EXPORT_SYMBOL vmlinux 0x56d78870 chsc -EXPORT_SYMBOL vmlinux 0x56ff9d11 unregister_filesystem EXPORT_SYMBOL vmlinux 0x570cb253 d_instantiate_anon -EXPORT_SYMBOL vmlinux 0x572da81c sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x572f8e65 km_policy_expired +EXPORT_SYMBOL vmlinux 0x57253352 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x572e52cd xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x573db1f5 neigh_lookup EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57593f01 tcp_close EXPORT_SYMBOL vmlinux 0x575f6db5 devm_kvasprintf EXPORT_SYMBOL vmlinux 0x5764a8d5 dma_set_mask EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x577b981e xfrm_lookup -EXPORT_SYMBOL vmlinux 0x577fd9af flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x577e964c dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x5787dee6 inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0x5796805f seq_escape EXPORT_SYMBOL vmlinux 0x57985c86 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x579a50bb bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0x57a87b6d kill_pid -EXPORT_SYMBOL vmlinux 0x57abffaa inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x57aa3819 jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0x57c615ec cpumask_any_but -EXPORT_SYMBOL vmlinux 0x57e106e7 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x57efc53d tcf_idr_create EXPORT_SYMBOL vmlinux 0x57f18433 swake_up_one -EXPORT_SYMBOL vmlinux 0x58088042 keyring_search +EXPORT_SYMBOL vmlinux 0x57f2fe03 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x57ff973f sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x580dd917 mark_buffer_async_write EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x581e55f2 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x581f6fff unlock_page_memcg EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58254aac dev_mc_del_global EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x5839b573 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x5843d7b9 generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0x584a03cc pci_dev_driver -EXPORT_SYMBOL vmlinux 0x584c5920 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x585a0fd9 skb_store_bits EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf -EXPORT_SYMBOL vmlinux 0x58812408 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x58905f40 read_cache_page +EXPORT_SYMBOL vmlinux 0x587b8563 vfs_getattr +EXPORT_SYMBOL vmlinux 0x58948e00 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x58aa8e0f poll_initwait EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b1ae7f flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58baee04 pipe_lock EXPORT_SYMBOL vmlinux 0x58cd1b54 string_escape_mem +EXPORT_SYMBOL vmlinux 0x58d279bb may_umount_tree EXPORT_SYMBOL vmlinux 0x58dbed01 pcim_iomap_table EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io EXPORT_SYMBOL vmlinux 0x58eae9ec gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x58ee63b8 netdev_crit -EXPORT_SYMBOL vmlinux 0x58fc59a9 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x590b6d49 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x59344134 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x5909903d pagecache_get_page +EXPORT_SYMBOL vmlinux 0x5933b39f tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x5937c94a vlan_for_each EXPORT_SYMBOL vmlinux 0x5946dee2 request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x594956c2 skb_ext_add -EXPORT_SYMBOL vmlinux 0x595e1f5b writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x596ecb8b sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x597f6d4d xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x5975f421 __break_lease EXPORT_SYMBOL vmlinux 0x598f0a95 udplite_table EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59cf1623 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x59ba2fe9 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x59c41285 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x59dd183d tcp_peek_len EXPORT_SYMBOL vmlinux 0x59dff7e1 pci_pme_active -EXPORT_SYMBOL vmlinux 0x59f322f2 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x59fde586 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x59eb14a4 flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0x5a01c5dc get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x5a05efcc scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 EXPORT_SYMBOL vmlinux 0x5a10f98e del_virt_timer +EXPORT_SYMBOL vmlinux 0x5a19c798 rt6_lookup +EXPORT_SYMBOL vmlinux 0x5a3e42ac __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x5a473f0e nf_reinject 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 0x5a78a078 inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0x5a865966 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x5a8a1149 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x5a91e77d lease_modify +EXPORT_SYMBOL vmlinux 0x5a97d77b sk_alloc EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5aa9685d inet_put_port -EXPORT_SYMBOL vmlinux 0x5ad3d515 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x5ad742cb __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x5aab93b4 set_bh_page +EXPORT_SYMBOL vmlinux 0x5acb370c inetdev_by_index EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5b1a0b9a __napi_schedule EXPORT_SYMBOL vmlinux 0x5b1b0264 proc_symlink -EXPORT_SYMBOL vmlinux 0x5b1b0b76 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x5b1cb5ce sock_set_sndtimeo EXPORT_SYMBOL vmlinux 0x5b2b28ab tcw_add_tidaw EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax EXPORT_SYMBOL vmlinux 0x5b39db8a fsync_bdev -EXPORT_SYMBOL vmlinux 0x5b507132 xattr_full_name +EXPORT_SYMBOL vmlinux 0x5b3a7f86 dev_change_proto_down_reason EXPORT_SYMBOL vmlinux 0x5b604bd1 segment_type EXPORT_SYMBOL vmlinux 0x5b64205d dma_alloc_attrs EXPORT_SYMBOL vmlinux 0x5b64cc81 d_make_root EXPORT_SYMBOL vmlinux 0x5b66df18 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x5b68a267 submit_bio EXPORT_SYMBOL vmlinux 0x5b745a3d xa_load +EXPORT_SYMBOL vmlinux 0x5b756039 neigh_ifdown EXPORT_SYMBOL vmlinux 0x5b85e0d1 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x5b938801 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x5b935e16 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x5bb653c0 sock_no_linger +EXPORT_SYMBOL vmlinux 0x5bbab88b inet_ioctl EXPORT_SYMBOL vmlinux 0x5bbb9461 d_find_alias -EXPORT_SYMBOL vmlinux 0x5bcc8f27 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x5bc1c3d4 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x5bc43382 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x5bc87db1 skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5bd5ef53 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x5bd6b840 udp_lib_unhash EXPORT_SYMBOL vmlinux 0x5bdcabe7 gen_pool_first_fit_order_align EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5beb464b module_put EXPORT_SYMBOL vmlinux 0x5beff46b ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x5bfd4383 vfs_mkobj -EXPORT_SYMBOL vmlinux 0x5c2ad756 km_new_mapping +EXPORT_SYMBOL vmlinux 0x5bf05f4e sock_wfree +EXPORT_SYMBOL vmlinux 0x5c20b390 unregister_binfmt EXPORT_SYMBOL vmlinux 0x5c2d456c utf8_strncmp EXPORT_SYMBOL vmlinux 0x5c302236 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x5c3091ab __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0x5c3a0bcd simple_get_link EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c829758 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x5c9f02b4 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x5ca60f6e sock_set_priority +EXPORT_SYMBOL vmlinux 0x5c893751 kernel_write +EXPORT_SYMBOL vmlinux 0x5c8b61d2 tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0x5cb4090a raw3270_request_set_cmd EXPORT_SYMBOL vmlinux 0x5cbfc952 pci_disable_ptm EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le -EXPORT_SYMBOL vmlinux 0x5ccc8603 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x5cd201f0 dev_driver_string +EXPORT_SYMBOL vmlinux 0x5cc80b63 no_seek_end_llseek EXPORT_SYMBOL vmlinux 0x5cd6f99b completion_done -EXPORT_SYMBOL vmlinux 0x5cf0a0d1 block_write_begin -EXPORT_SYMBOL vmlinux 0x5cf21082 inet6_getname +EXPORT_SYMBOL vmlinux 0x5cdbf06a ipv6_setsockopt EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf973b3 ip_frag_init EXPORT_SYMBOL vmlinux 0x5cfe169b inode_update_time EXPORT_SYMBOL vmlinux 0x5d010635 tty_port_init +EXPORT_SYMBOL vmlinux 0x5d063307 scsi_free_host_dev EXPORT_SYMBOL vmlinux 0x5d16d8cd radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x5d2035a7 skb_put -EXPORT_SYMBOL vmlinux 0x5d2e80d4 inet6_release -EXPORT_SYMBOL vmlinux 0x5d4647cb security_unix_stream_connect EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d5138b3 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x5d60c410 ip_output +EXPORT_SYMBOL vmlinux 0x5d74273b set_page_dirty_lock EXPORT_SYMBOL vmlinux 0x5d7dee6b strscpy_pad EXPORT_SYMBOL vmlinux 0x5d8a53a3 md_reap_sync_thread EXPORT_SYMBOL vmlinux 0x5d8cdf50 __cleancache_invalidate_inode EXPORT_SYMBOL vmlinux 0x5d907943 param_get_invbool +EXPORT_SYMBOL vmlinux 0x5d91b27c blk_queue_flag_set EXPORT_SYMBOL vmlinux 0x5d94d89a blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x5d9e4816 jbd2_journal_start_commit EXPORT_SYMBOL vmlinux 0x5da84b31 unregister_adapter_interrupt EXPORT_SYMBOL vmlinux 0x5db23549 jbd2_submit_inode_data -EXPORT_SYMBOL vmlinux 0x5dcaee61 netif_rx_ni EXPORT_SYMBOL vmlinux 0x5df756d7 __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5e020aae skb_tx_error +EXPORT_SYMBOL vmlinux 0x5e043ac8 nobh_truncate_page EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e15953f neigh_resolve_output EXPORT_SYMBOL vmlinux 0x5e21cb82 ap_send -EXPORT_SYMBOL vmlinux 0x5e244517 sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e3a0d78 netdev_bind_sb_channel_queue EXPORT_SYMBOL vmlinux 0x5e441b3b input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x5e47732e skb_ensure_writable EXPORT_SYMBOL vmlinux 0x5e498e15 pcie_bandwidth_available EXPORT_SYMBOL vmlinux 0x5e64e218 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x5e6f740a ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0x5e7b8738 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x5e831339 jbd2_journal_blocks_per_page EXPORT_SYMBOL vmlinux 0x5e86171d raw3270_unregister_notifier -EXPORT_SYMBOL vmlinux 0x5e8737c6 sock_no_accept EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask EXPORT_SYMBOL vmlinux 0x5ea31004 arch_spin_trylock_retry +EXPORT_SYMBOL vmlinux 0x5eaebacb neigh_event_ns EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5eb7d81b sockfd_lookup EXPORT_SYMBOL vmlinux 0x5ec2ef0d tty_vhangup EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr EXPORT_SYMBOL vmlinux 0x5ec78252 bdi_alloc @@ -4379,16 +4403,20 @@ EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun EXPORT_SYMBOL vmlinux 0x5ee8aaf0 param_get_ushort EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f16cab2 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x5f160d1a udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x5f27f58a write_one_page +EXPORT_SYMBOL vmlinux 0x5f344ba1 sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0x5f4c4341 simple_dir_operations EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption EXPORT_SYMBOL vmlinux 0x5f59e43d set_posix_acl EXPORT_SYMBOL vmlinux 0x5f5def00 tty_port_put -EXPORT_SYMBOL vmlinux 0x5f936e48 neigh_destroy +EXPORT_SYMBOL vmlinux 0x5f6e90ec qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0x5f9b692f jbd2_journal_clear_features EXPORT_SYMBOL vmlinux 0x5f9ede6c proc_dostring -EXPORT_SYMBOL vmlinux 0x5fa09b57 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x5fa2aad0 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x5fa87f79 proto_unregister +EXPORT_SYMBOL vmlinux 0x5fab9c54 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x5fc59b30 skb_eth_pop EXPORT_SYMBOL vmlinux 0x5fd2298e strnstr EXPORT_SYMBOL vmlinux 0x5fda0adb ZSTD_DDictWorkspaceBound EXPORT_SYMBOL vmlinux 0x5fe1c0e7 blk_mq_requeue_request @@ -4396,168 +4424,158 @@ EXPORT_SYMBOL vmlinux 0x5fe447a9 bitmap_print_list_to_buf EXPORT_SYMBOL vmlinux 0x5ffc7a3f dm_kcopyd_copy EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x6016a45c no_seek_end_llseek EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6033ea64 sched_autogroup_detach EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x603ca97c migrate_page -EXPORT_SYMBOL vmlinux 0x604c02d6 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x604df07c inet_accept EXPORT_SYMBOL vmlinux 0x605444a5 iov_iter_kvec EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x6077bd02 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x60789be9 scsi_print_command EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x6091b963 xsk_set_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f17ab dump_skip_to EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a05518 netlink_unicast EXPORT_SYMBOL vmlinux 0x60ae6268 dm_get_device EXPORT_SYMBOL vmlinux 0x60b5c8dd register_external_irq +EXPORT_SYMBOL vmlinux 0x60b685b1 nf_log_packet EXPORT_SYMBOL vmlinux 0x60b7c9b8 fb_class EXPORT_SYMBOL vmlinux 0x60c311d6 raw3270_start -EXPORT_SYMBOL vmlinux 0x60cb6333 fiemap_prep +EXPORT_SYMBOL vmlinux 0x60c56e87 dev_activate +EXPORT_SYMBOL vmlinux 0x60cc4a78 inet_frag_destroy EXPORT_SYMBOL vmlinux 0x60cf0d39 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x60e7d10d sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x60eff0ea skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x60f7e34b ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x60f844aa netlink_unicast EXPORT_SYMBOL vmlinux 0x6108288f complete_all -EXPORT_SYMBOL vmlinux 0x610e94ae netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x613787cd sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x613a3b4e sock_no_accept +EXPORT_SYMBOL vmlinux 0x61505e12 key_link EXPORT_SYMBOL vmlinux 0x61590ea7 configfs_unregister_subsystem EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x615c485e ip6_route_me_harder EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x61710be6 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x616b0d74 audit_log_start +EXPORT_SYMBOL vmlinux 0x616c701b ipv6_select_ident EXPORT_SYMBOL vmlinux 0x61732021 ccw_device_is_multipath -EXPORT_SYMBOL vmlinux 0x61a05583 sock_i_uid -EXPORT_SYMBOL vmlinux 0x61a87817 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x61b2c0ef tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x617debd8 xfrm_state_delete EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final EXPORT_SYMBOL vmlinux 0x61e2fd24 input_set_timestamp -EXPORT_SYMBOL vmlinux 0x61e92b4d jbd2_journal_init_inode EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61f194ac dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0x6222b797 tty_name EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single EXPORT_SYMBOL vmlinux 0x6230ec9f ap_send_online_uevent +EXPORT_SYMBOL vmlinux 0x624646e8 jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0x624c45c1 trace_print_array_seq EXPORT_SYMBOL vmlinux 0x62666341 iov_iter_pipe EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister EXPORT_SYMBOL vmlinux 0x627bc1c4 smp_ctl_set_clear_bit -EXPORT_SYMBOL vmlinux 0x62800117 ndisc_mc_map EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62903b6c inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x62859150 jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin EXPORT_SYMBOL vmlinux 0x62f352b3 input_set_poll_interval EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled EXPORT_SYMBOL vmlinux 0x63199ddd d_find_any_alias EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x6336a5d7 end_buffer_write_sync EXPORT_SYMBOL vmlinux 0x636ace72 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x636deac0 kernel_getpeername EXPORT_SYMBOL vmlinux 0x6371e098 cio_irb -EXPORT_SYMBOL vmlinux 0x6383a617 __mmap_lock_do_trace_start_locking 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 0x63a8bad4 devm_ioremap -EXPORT_SYMBOL vmlinux 0x63bbd432 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x63bf14ac generic_setlease -EXPORT_SYMBOL vmlinux 0x63c08f60 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x63b2b27c sock_no_bind EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63e096b4 xattr_full_name EXPORT_SYMBOL vmlinux 0x63e213ef node_data EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x64001c82 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x6403d2bb scsi_set_medium_removal EXPORT_SYMBOL vmlinux 0x640ec259 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x6410a944 sock_set_reuseport EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x641306b3 __kfree_skb EXPORT_SYMBOL vmlinux 0x64270852 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x645afc61 xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x645ecebd sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x645ed2ed neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x64603cb7 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x644410ea wait_on_page_bit_killable EXPORT_SYMBOL vmlinux 0x646e20df cpumask_any_and_distribute EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x6482c97e kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x648891ad kill_fasync +EXPORT_SYMBOL vmlinux 0x6489aa51 tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x6491c8d2 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x64995594 dcb_setapp EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x6499ceb7 can_nice -EXPORT_SYMBOL vmlinux 0x649a47e6 f_setown EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64d4755a sock_recvmsg -EXPORT_SYMBOL vmlinux 0x64e0caf7 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x64e5af24 blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x64e7b6ee netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x6505adaa gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x64feb2ba sk_stream_wait_memory 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 0x651cf862 finalize_exec EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x6538b6d7 _dev_crit EXPORT_SYMBOL vmlinux 0x653c983b tty_unregister_device EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65821b30 sdev_disable_disk_events EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset EXPORT_SYMBOL vmlinux 0x658d3952 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x6599670a pagecache_write_end EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc EXPORT_SYMBOL vmlinux 0x65a6b3ce dm_io +EXPORT_SYMBOL vmlinux 0x65b25955 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x65c6e1a9 __filemap_set_wb_err EXPORT_SYMBOL vmlinux 0x65d5f163 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x65dadebd crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x65d7a51d pskb_expand_head EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65f83d74 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x66195128 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x661be3dc _dev_warn +EXPORT_SYMBOL vmlinux 0x65fa67d2 nexthop_set_hw_flags EXPORT_SYMBOL vmlinux 0x6623f2e3 vmalloc_array -EXPORT_SYMBOL vmlinux 0x66501427 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0x6656cd46 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x6626fab3 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x66449d88 tcp_seq_start EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x66c907e4 inet_release EXPORT_SYMBOL vmlinux 0x66e69897 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x67036ec9 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x6719fe07 sock_edemux +EXPORT_SYMBOL vmlinux 0x671e809f skb_try_coalesce EXPORT_SYMBOL vmlinux 0x672144bd strlcpy EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x6756e33f rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x6758de7a inet_stream_ops EXPORT_SYMBOL vmlinux 0x676155ff dotdot_name EXPORT_SYMBOL vmlinux 0x6762e507 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x67637cdc jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x676983bf netdev_features_change +EXPORT_SYMBOL vmlinux 0x6763471f buffer_migrate_page EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc EXPORT_SYMBOL vmlinux 0x678c62eb cpu_all_bits EXPORT_SYMBOL vmlinux 0x678f9aba page_pool_release_page -EXPORT_SYMBOL vmlinux 0x679eb182 unlock_page_memcg +EXPORT_SYMBOL vmlinux 0x67ae2657 udp_lib_getsockopt EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios EXPORT_SYMBOL vmlinux 0x67b4e1ee devm_iounmap EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu EXPORT_SYMBOL vmlinux 0x67ce597c unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x67dcae66 security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x67e2272e refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x67e368a6 __nla_reserve -EXPORT_SYMBOL vmlinux 0x67fbf3a3 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x67ff3edd dev_deactivate -EXPORT_SYMBOL vmlinux 0x6813ab90 tcf_idr_search -EXPORT_SYMBOL vmlinux 0x681afa84 sock_recv_errqueue EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0x684b62f9 raw3270_request_set_idal -EXPORT_SYMBOL vmlinux 0x684ff12e netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x686659ce nf_ct_attach EXPORT_SYMBOL vmlinux 0x687173de ZSTD_findDecompressedSize EXPORT_SYMBOL vmlinux 0x687855f4 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x68791d91 jbd2_journal_invalidatepage EXPORT_SYMBOL vmlinux 0x687e072e unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x688e79d1 __pskb_copy_fclone EXPORT_SYMBOL vmlinux 0x689a37bc kobject_add -EXPORT_SYMBOL vmlinux 0x68b861e2 dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0x68cb33c0 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x68dc37f9 flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x68e88fa9 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x68cde660 generic_listxattr +EXPORT_SYMBOL vmlinux 0x68db6f40 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x68ecb5ae filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0x68fe9e66 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x69040ec2 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x68ff5826 in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x69097457 crc32_be EXPORT_SYMBOL vmlinux 0x690f9dfa hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x691331d1 scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x693c6722 ip_route_me_harder EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features EXPORT_SYMBOL vmlinux 0x696e9665 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x6976b27b napi_enable +EXPORT_SYMBOL vmlinux 0x697f5f8d iterate_fd +EXPORT_SYMBOL vmlinux 0x6980d8bb fqdir_exit EXPORT_SYMBOL vmlinux 0x69816287 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x6983d82f nobh_writepage EXPORT_SYMBOL vmlinux 0x698de6ee simple_statfs -EXPORT_SYMBOL vmlinux 0x69a8c630 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x69a277a9 cad_pid EXPORT_SYMBOL vmlinux 0x69ac7494 ccw_device_resume EXPORT_SYMBOL vmlinux 0x69cf77c8 ZSTD_getDictID_fromDict EXPORT_SYMBOL vmlinux 0x69d7769c __tracepoint_s390_diagnose @@ -4565,282 +4583,263 @@ EXPORT_SYMBOL vmlinux 0x69f98d07 d_prune_aliases EXPORT_SYMBOL vmlinux 0x6a00318e mpage_writepages EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a15d7db disk_start_io_acct EXPORT_SYMBOL vmlinux 0x6a376585 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x6a3d31ab skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x6a419042 vfs_fileattr_get EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5d357a tty_port_block_til_ready EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a74098e scsi_scan_host -EXPORT_SYMBOL vmlinux 0x6a7d4630 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x6a9d8b7c page_symlink +EXPORT_SYMBOL vmlinux 0x6a81dad5 tcp_fastopen_defer_connect EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order EXPORT_SYMBOL vmlinux 0x6ab23aa1 load_fpu_regs EXPORT_SYMBOL vmlinux 0x6abf84f9 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x6ac7753d xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x6acafe9e __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x6add6fd9 dev_printk_emit EXPORT_SYMBOL vmlinux 0x6ae8d8cb drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x6aed4586 __set_page_dirty_buffers EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset EXPORT_SYMBOL vmlinux 0x6af76b71 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x6b2c65c4 try_module_get EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b530494 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x6b3347f7 kernel_bind +EXPORT_SYMBOL vmlinux 0x6b34a50d __set_page_dirty_no_writeback EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b5891c4 register_shrinker EXPORT_SYMBOL vmlinux 0x6b58b098 blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x6b5c3bd0 posix_lock_file -EXPORT_SYMBOL vmlinux 0x6b68a529 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x6b6dfd2b crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x6b6e09a3 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x6b80644b sock_no_listen EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list EXPORT_SYMBOL vmlinux 0x6b8d2325 s390_epoch_delta_notifier -EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x6ba16703 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x6ba5480b done_path_create -EXPORT_SYMBOL vmlinux 0x6ba7f9b8 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x6b987c03 nf_register_sockopt EXPORT_SYMBOL vmlinux 0x6bac671b __crc32c_le -EXPORT_SYMBOL vmlinux 0x6bb41623 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x6bb56817 generic_listxattr +EXPORT_SYMBOL vmlinux 0x6bbadb51 qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bdc1fdd dev_uc_init +EXPORT_SYMBOL vmlinux 0x6bc9291e ipmr_rule_default EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free EXPORT_SYMBOL vmlinux 0x6bfdfbf8 fscrypt_encrypt_block_inplace EXPORT_SYMBOL vmlinux 0x6bfe1653 iucv_message_receive EXPORT_SYMBOL vmlinux 0x6c041e19 __xa_insert -EXPORT_SYMBOL vmlinux 0x6c12c8d7 sock_create_lite EXPORT_SYMBOL vmlinux 0x6c1b859e seq_bprintf EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c4eb132 skb_eth_pop EXPORT_SYMBOL vmlinux 0x6c5149bb truncate_pagecache_range EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c71b6a7 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x6c72433e secpath_set EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x6c7e0aba bh_submit_read -EXPORT_SYMBOL vmlinux 0x6c7ee38b ip_frag_init EXPORT_SYMBOL vmlinux 0x6c8c4e45 request_key_tag EXPORT_SYMBOL vmlinux 0x6c9d319f __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x6ca4470a security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x6cada814 register_fib_notifier EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cb8afa7 sync_filesystem -EXPORT_SYMBOL vmlinux 0x6cbc41e5 ip_options_compile +EXPORT_SYMBOL vmlinux 0x6cbbccc3 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x6cc4877b tcp_select_initial_window EXPORT_SYMBOL vmlinux 0x6ccc34dd sort EXPORT_SYMBOL vmlinux 0x6cef9661 mount_single EXPORT_SYMBOL vmlinux 0x6cf192df kvrealloc -EXPORT_SYMBOL vmlinux 0x6d0d8889 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x6cf635cc find_vma +EXPORT_SYMBOL vmlinux 0x6d19c6e6 ipv6_mc_check_mld EXPORT_SYMBOL vmlinux 0x6d1ea6ec strlcat +EXPORT_SYMBOL vmlinux 0x6d289636 netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies EXPORT_SYMBOL vmlinux 0x6d2abaef pcim_iomap -EXPORT_SYMBOL vmlinux 0x6d31cf0b generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0x6d33228c unpin_user_page EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate EXPORT_SYMBOL vmlinux 0x6d5ff6a4 tty_hangup EXPORT_SYMBOL vmlinux 0x6d61969a input_unregister_handler -EXPORT_SYMBOL vmlinux 0x6d684b60 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x6d6dc40d flow_rule_match_ports EXPORT_SYMBOL vmlinux 0x6d72126a ccw_device_clear_options +EXPORT_SYMBOL vmlinux 0x6d73f701 xfrm_lookup EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut EXPORT_SYMBOL vmlinux 0x6d81b31a blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x6d88adaa scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x6d936141 free_task EXPORT_SYMBOL vmlinux 0x6daea280 crc32_le_shift EXPORT_SYMBOL vmlinux 0x6db28315 pci_get_class EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6dd3959c flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x6dd4a19a pcie_get_mps -EXPORT_SYMBOL vmlinux 0x6ddaa33f qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0x6ddcaea0 lock_rename EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction EXPORT_SYMBOL vmlinux 0x6e00b8cb _ebcasc -EXPORT_SYMBOL vmlinux 0x6e210fa3 sock_wake_async EXPORT_SYMBOL vmlinux 0x6e2562c3 do_SAK -EXPORT_SYMBOL vmlinux 0x6e2a3ea0 udp_sendmsg EXPORT_SYMBOL vmlinux 0x6e2da197 arch_read_lock_wait +EXPORT_SYMBOL vmlinux 0x6e2de938 skb_seq_read EXPORT_SYMBOL vmlinux 0x6e4b5f93 input_unregister_device +EXPORT_SYMBOL vmlinux 0x6e4c3473 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x6e56ddcb vfs_fsync_range EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7b0d18 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x6e847dbb dev_change_proto_down_generic +EXPORT_SYMBOL vmlinux 0x6e87f5a1 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x6e9595e6 __traceiter_module_get EXPORT_SYMBOL vmlinux 0x6e9ad290 cpu_have_feature EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put EXPORT_SYMBOL vmlinux 0x6ea6107b pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x6ea75a1e __skb_ext_del EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ec5028a napi_get_frags +EXPORT_SYMBOL vmlinux 0x6ec97779 nf_register_net_hooks EXPORT_SYMBOL vmlinux 0x6ede2f3c blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x6ef78fa5 arp_tbl EXPORT_SYMBOL vmlinux 0x6ef84303 kvmalloc_node -EXPORT_SYMBOL vmlinux 0x6f01880b filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x6f1430ec jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0x6f20e8a0 nla_strscpy -EXPORT_SYMBOL vmlinux 0x6f23770e begin_new_exec +EXPORT_SYMBOL vmlinux 0x6f228fa1 tcp_check_req EXPORT_SYMBOL vmlinux 0x6f2df3ef dma_fence_signal +EXPORT_SYMBOL vmlinux 0x6f3469a1 pneigh_enqueue EXPORT_SYMBOL vmlinux 0x6f365e44 ZSTD_decompressContinue EXPORT_SYMBOL vmlinux 0x6f39991b blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x6f3b7b2b scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x6f3f8af4 block_truncate_page EXPORT_SYMBOL vmlinux 0x6f427a52 iov_iter_single_seg_count EXPORT_SYMBOL vmlinux 0x6f454bf9 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x6f4bdb80 tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0x6f53043d wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x6f5330f0 __vfs_setxattr EXPORT_SYMBOL vmlinux 0x6f5ef93d memchr_inv EXPORT_SYMBOL vmlinux 0x6f689943 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x6f6961cf splice_direct_to_actor EXPORT_SYMBOL vmlinux 0x6f79375c mempool_free EXPORT_SYMBOL vmlinux 0x6f8420a3 ZSTD_findFrameCompressedSize EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6fa9fa2f vfs_parse_fs_param_source EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fbeff9b kmalloc_caches EXPORT_SYMBOL vmlinux 0x6fc0c58d dma_fence_default_wait EXPORT_SYMBOL vmlinux 0x6fc76b42 ccw_device_tm_intrg EXPORT_SYMBOL vmlinux 0x6ff9ad43 make_kuid EXPORT_SYMBOL vmlinux 0x6fff544e dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x6fff841b setup_new_exec EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x701488e0 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x7028ec19 neigh_update -EXPORT_SYMBOL vmlinux 0x7032f4ef reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x7027aa1f arp_send EXPORT_SYMBOL vmlinux 0x70336943 xa_set_mark -EXPORT_SYMBOL vmlinux 0x7038376c __get_hash_from_flowi6 EXPORT_SYMBOL vmlinux 0x703e36fe generic_update_time -EXPORT_SYMBOL vmlinux 0x7045dc13 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x704a20ff jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x705bf8f8 tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x707907e0 xp_raw_get_data EXPORT_SYMBOL vmlinux 0x7092c2a9 ccw_device_tm_start_timeout_key -EXPORT_SYMBOL vmlinux 0x70b55f26 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x70cfdd48 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x70d44851 put_cmsg +EXPORT_SYMBOL vmlinux 0x70e95d15 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x70f19aa1 flow_rule_match_mpls EXPORT_SYMBOL vmlinux 0x70f81b56 ap_max_msg_size -EXPORT_SYMBOL vmlinux 0x70fc72d0 scsi_device_set_state EXPORT_SYMBOL vmlinux 0x71062d74 jbd2__journal_restart EXPORT_SYMBOL vmlinux 0x7109f68c pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x7111ec6f lock_page_memcg EXPORT_SYMBOL vmlinux 0x7120f9bd LZ4_setStreamDecode EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x7139abe1 __dev_kfree_skb_any EXPORT_SYMBOL vmlinux 0x7145aef0 segment_load EXPORT_SYMBOL vmlinux 0x714c54d9 touch_atime +EXPORT_SYMBOL vmlinux 0x71502727 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x715711cb __inet6_lookup_established EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x7161ab65 keyring_alloc +EXPORT_SYMBOL vmlinux 0x7163576e tcp_poll +EXPORT_SYMBOL vmlinux 0x71638e49 blk_sync_queue EXPORT_SYMBOL vmlinux 0x716b9200 dcache_dir_open EXPORT_SYMBOL vmlinux 0x7171121c overflowgid EXPORT_SYMBOL vmlinux 0x718a39ae blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x71a09fd0 inet_frag_kill EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy EXPORT_SYMBOL vmlinux 0x71a67dec ilookup +EXPORT_SYMBOL vmlinux 0x71b1cb25 free_buffer_head EXPORT_SYMBOL vmlinux 0x71b6edf3 input_close_device -EXPORT_SYMBOL vmlinux 0x71c705cb tcp_seq_next +EXPORT_SYMBOL vmlinux 0x71b73a6d inet_getname EXPORT_SYMBOL vmlinux 0x71c9dee8 pudp_xchg_direct -EXPORT_SYMBOL vmlinux 0x71ddd7fd sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x71f07274 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x71fbcd80 inode_get_bytes EXPORT_SYMBOL vmlinux 0x7208d85c scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x720a15ad dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x720b1ccd dev_addr_add -EXPORT_SYMBOL vmlinux 0x72105293 tcp_hashinfo EXPORT_SYMBOL vmlinux 0x72297f25 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x722c3704 sk_error_report EXPORT_SYMBOL vmlinux 0x7242ddfb iucv_bus EXPORT_SYMBOL vmlinux 0x7242e96d strnchr +EXPORT_SYMBOL vmlinux 0x7246cae8 dev_addr_flush EXPORT_SYMBOL vmlinux 0x724d4343 param_ops_charp EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x725ab534 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x7262b8a0 mr_vif_seq_next EXPORT_SYMBOL vmlinux 0x72690314 kmem_cache_free EXPORT_SYMBOL vmlinux 0x72764cae __devm_request_region -EXPORT_SYMBOL vmlinux 0x72777b72 ip_output -EXPORT_SYMBOL vmlinux 0x7278adf9 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x727e61e5 xp_alloc -EXPORT_SYMBOL vmlinux 0x729e5bcc napi_build_skb -EXPORT_SYMBOL vmlinux 0x72a00746 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x72a51b7b crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x72a77758 netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0x72a90333 key_validate EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72bd2421 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0x72cb83e1 nobh_writepage +EXPORT_SYMBOL vmlinux 0x72bf2b8b tcf_classify +EXPORT_SYMBOL vmlinux 0x72c76243 proto_register EXPORT_SYMBOL vmlinux 0x72cfa9e7 dma_fence_chain_init EXPORT_SYMBOL vmlinux 0x72da70e2 gen_pool_for_each_chunk EXPORT_SYMBOL vmlinux 0x72dcad01 cdev_del EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type EXPORT_SYMBOL vmlinux 0x7303b94e cdev_init EXPORT_SYMBOL vmlinux 0x730b096c ap_apqn_in_matrix_owned_by_def_drv +EXPORT_SYMBOL vmlinux 0x730b1354 __mmap_lock_do_trace_start_locking EXPORT_SYMBOL vmlinux 0x73108ad4 iterate_supers_type EXPORT_SYMBOL vmlinux 0x731d27be blkdev_compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0x731eb778 seq_read EXPORT_SYMBOL vmlinux 0x732a949f config_group_find_item EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x7371c027 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x73318810 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x733e16e2 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x7341f1b6 mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x7380dffa argv_split EXPORT_SYMBOL vmlinux 0x7389706a __memset16 -EXPORT_SYMBOL vmlinux 0x7391db70 open_exec EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73ac86ee tcp_sendmsg EXPORT_SYMBOL vmlinux 0x73bf20c6 _ascebc -EXPORT_SYMBOL vmlinux 0x73e6def5 nvmem_get_mac_address +EXPORT_SYMBOL vmlinux 0x73d01ba5 inet_addr_type_table EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x741a578e netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0x741f70a9 debug_stop_all EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 EXPORT_SYMBOL vmlinux 0x744dec8e pci_free_host_bridge EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x746dc721 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x746d8f6e generic_fadvise EXPORT_SYMBOL vmlinux 0x7470b01a tsb_init -EXPORT_SYMBOL vmlinux 0x74798200 skb_store_bits EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x74884572 d_path EXPORT_SYMBOL vmlinux 0x749087f5 dquot_resume -EXPORT_SYMBOL vmlinux 0x74a1d8aa tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x74a47dbb dump_skip_to +EXPORT_SYMBOL vmlinux 0x7495f6e9 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 EXPORT_SYMBOL vmlinux 0x74cabcec kthread_destroy_worker EXPORT_SYMBOL vmlinux 0x74d858a7 on_each_cpu_cond_mask EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74ff2919 __scm_destroy EXPORT_SYMBOL vmlinux 0x74ffeb8b commit_creds -EXPORT_SYMBOL vmlinux 0x751d22b0 nonseekable_open -EXPORT_SYMBOL vmlinux 0x752429f6 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x753b94c7 dcb_setapp -EXPORT_SYMBOL vmlinux 0x75594cc6 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x75662de6 __skb_pad -EXPORT_SYMBOL vmlinux 0x75859d69 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x758e53d1 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x750cc481 neigh_xmit +EXPORT_SYMBOL vmlinux 0x75357a9d inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0x7599bf62 ww_mutex_unlock EXPORT_SYMBOL vmlinux 0x759a0416 __memset64 -EXPORT_SYMBOL vmlinux 0x759d0c90 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x75b347fb dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x75a96b66 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x75ae1e5f inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x75b85cbb dev_get_phys_port_id EXPORT_SYMBOL vmlinux 0x75b9cf29 hsch EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75d097c8 mntput EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75d4b579 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0x75debdef discard_new_inode +EXPORT_SYMBOL vmlinux 0x75fc0d9f __dev_get_by_index EXPORT_SYMBOL vmlinux 0x76009017 elv_rb_add -EXPORT_SYMBOL vmlinux 0x7603f69b __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x760a0f4f yield EXPORT_SYMBOL vmlinux 0x760a3eca ZSTD_decompressStream EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check EXPORT_SYMBOL vmlinux 0x761efb75 iucv_root EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired EXPORT_SYMBOL vmlinux 0x76426845 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x7643d04a dev_remove_offload EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq EXPORT_SYMBOL vmlinux 0x764775de kthread_create_on_node EXPORT_SYMBOL vmlinux 0x7663ce00 input_alloc_absinfo EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x76790c1c unregister_shrinker +EXPORT_SYMBOL vmlinux 0x76929c08 skb_ext_add EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76b755c9 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x76aea98d xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x76b71852 neigh_changeaddr EXPORT_SYMBOL vmlinux 0x76bf2ec8 iget5_locked -EXPORT_SYMBOL vmlinux 0x76c91124 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x76cab6cb gro_cells_receive EXPORT_SYMBOL vmlinux 0x76d174a8 sg_miter_skip EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76fd7089 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x76e7571a __set_page_dirty_nobuffers EXPORT_SYMBOL vmlinux 0x77081ee9 pci_disable_msix -EXPORT_SYMBOL vmlinux 0x771435af seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x771168fa mntget +EXPORT_SYMBOL vmlinux 0x7723736e ip6_frag_next EXPORT_SYMBOL vmlinux 0x77247c5e ap_bus_force_rescan EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x773d9839 ip_ct_attach -EXPORT_SYMBOL vmlinux 0x7743fd0b ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x775f694d sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x77666246 wake_up_process +EXPORT_SYMBOL vmlinux 0x773b366a seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x7756a1ca do_splice_direct EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 -EXPORT_SYMBOL vmlinux 0x777a3bd5 ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0x7790f105 block_invalidatepage -EXPORT_SYMBOL vmlinux 0x77942d94 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x778d7d8a xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x77bbc687 bd_abort_claiming EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77bfc975 skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x77c13e2a iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x77c574ba __xfrm_init_state EXPORT_SYMBOL vmlinux 0x77cf5695 page_pool_destroy -EXPORT_SYMBOL vmlinux 0x77d8bfa4 iptun_encaps -EXPORT_SYMBOL vmlinux 0x77e9af95 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x77d10392 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x77d49f2d xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x77e8459e filemap_page_mkwrite EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt EXPORT_SYMBOL vmlinux 0x77ff7981 input_mt_assign_slots EXPORT_SYMBOL vmlinux 0x7805d1a0 __put_cred @@ -4851,751 +4850,750 @@ EXPORT_SYMBOL vmlinux 0x7821df98 ram_aops EXPORT_SYMBOL vmlinux 0x782acba5 crc_t10dif EXPORT_SYMBOL vmlinux 0x78569adf ida_alloc_range EXPORT_SYMBOL vmlinux 0x785ff5a9 unregister_nls +EXPORT_SYMBOL vmlinux 0x7860d290 inet6_release EXPORT_SYMBOL vmlinux 0x78633cdf ilookup5 +EXPORT_SYMBOL vmlinux 0x7864fe56 ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a4a580 inet_accept EXPORT_SYMBOL vmlinux 0x78a70a1f param_set_byte EXPORT_SYMBOL vmlinux 0x78b2eec0 dma_supported EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78da6fcc qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x78de6958 __netif_napi_del EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices EXPORT_SYMBOL vmlinux 0x78e121cc elv_rb_latter_request EXPORT_SYMBOL vmlinux 0x78e1695a param_ops_invbool EXPORT_SYMBOL vmlinux 0x78f1475a __traceiter_s390_cio_rsch +EXPORT_SYMBOL vmlinux 0x790b76ef security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x79137046 iter_file_splice_write EXPORT_SYMBOL vmlinux 0x7914360b config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x792edf5d mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x7937528d nf_hook_slow EXPORT_SYMBOL vmlinux 0x79395e5a ccw_device_get_path_mask +EXPORT_SYMBOL vmlinux 0x795808c8 generic_splice_sendpage EXPORT_SYMBOL vmlinux 0x795c0588 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x795ff23c try_to_release_page +EXPORT_SYMBOL vmlinux 0x796e2d95 ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0x7970ef55 swake_up_locked -EXPORT_SYMBOL vmlinux 0x7971728e __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0x79816357 dma_fence_wait_timeout EXPORT_SYMBOL vmlinux 0x798191c6 remove_proc_entry EXPORT_SYMBOL vmlinux 0x79a708e9 d_instantiate EXPORT_SYMBOL vmlinux 0x79cd6498 down_write_killable -EXPORT_SYMBOL vmlinux 0x79dbe246 submit_bio_noacct EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug EXPORT_SYMBOL vmlinux 0x79ed40f7 cdev_add -EXPORT_SYMBOL vmlinux 0x79f0ff4f security_inode_copy_up EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute EXPORT_SYMBOL vmlinux 0x7a13ff61 dma_resv_add_excl_fence EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a2641ba __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x7a1fa28c pagecache_write_end EXPORT_SYMBOL vmlinux 0x7a29973a pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x7a2e4cf7 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x7a3dfef7 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x7a2ed103 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x7a3023c5 splice_direct_to_actor EXPORT_SYMBOL vmlinux 0x7a4b2c58 fscrypt_decrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a55fbf9 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x7a5c8ccf tcf_exts_num_actions EXPORT_SYMBOL vmlinux 0x7a5d9a71 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x7a6b12c2 vfs_statfs -EXPORT_SYMBOL vmlinux 0x7a70fcbd unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x7a71f3d3 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x7a68c139 inet_frags_init EXPORT_SYMBOL vmlinux 0x7a7d60e6 iucv_register EXPORT_SYMBOL vmlinux 0x7a82d26a bio_reset EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt EXPORT_SYMBOL vmlinux 0x7ac13f7e __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x7acc1f81 kmalloc_caches EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt EXPORT_SYMBOL vmlinux 0x7ad58813 kobject_get +EXPORT_SYMBOL vmlinux 0x7ad6debe tcf_block_get EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7addb9b8 ip6mr_rule_default EXPORT_SYMBOL vmlinux 0x7afc33a8 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0x7aff47b0 skb_find_text +EXPORT_SYMBOL vmlinux 0x7b0615bd noop_llseek EXPORT_SYMBOL vmlinux 0x7b09a35a pci_ep_cfs_remove_epc_group EXPORT_SYMBOL vmlinux 0x7b0f6b89 pcie_print_link_status EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit EXPORT_SYMBOL vmlinux 0x7b3c81f2 kobject_put +EXPORT_SYMBOL vmlinux 0x7b3d7abf xfrm_state_lookup EXPORT_SYMBOL vmlinux 0x7b420751 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0x7b52e8a8 finish_open -EXPORT_SYMBOL vmlinux 0x7b54c6a9 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x7b4ef5e1 dst_alloc EXPORT_SYMBOL vmlinux 0x7b5a7137 strncat EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update EXPORT_SYMBOL vmlinux 0x7b6e6aa4 __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0x7b8acf8d eth_header_parse -EXPORT_SYMBOL vmlinux 0x7bb7c309 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x7b75e203 __icmp_send EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids EXPORT_SYMBOL vmlinux 0x7bc087e1 clear_nlink EXPORT_SYMBOL vmlinux 0x7bd7dfd0 ap_test_config_usage_domain -EXPORT_SYMBOL vmlinux 0x7bd8b41a netdev_warn -EXPORT_SYMBOL vmlinux 0x7bebccfe softnet_data EXPORT_SYMBOL vmlinux 0x7bf02ac3 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x7bf1e0e8 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x7bf2f4fd scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x7bf2f419 qdisc_reset +EXPORT_SYMBOL vmlinux 0x7c0a5ecd inet_select_addr EXPORT_SYMBOL vmlinux 0x7c14f503 gen_pool_dma_alloc EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement EXPORT_SYMBOL vmlinux 0x7c2d91c1 d_alloc_anon EXPORT_SYMBOL vmlinux 0x7c3554fe dm_register_target EXPORT_SYMBOL vmlinux 0x7c3a5799 page_mapped +EXPORT_SYMBOL vmlinux 0x7c44779d generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x7c483b8d begin_new_exec EXPORT_SYMBOL vmlinux 0x7c5d4a3a sclp_reactivate EXPORT_SYMBOL vmlinux 0x7c5d7570 dquot_transfer -EXPORT_SYMBOL vmlinux 0x7c5ed7d7 register_filesystem +EXPORT_SYMBOL vmlinux 0x7c63fb78 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x7c747302 generic_perform_write EXPORT_SYMBOL vmlinux 0x7c78e3e7 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x7c908c9e dev_open +EXPORT_SYMBOL vmlinux 0x7c8c8465 dst_destroy EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next EXPORT_SYMBOL vmlinux 0x7cab823e pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x7cb0114f flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cc98962 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x7cdad015 xfrm_input EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid EXPORT_SYMBOL vmlinux 0x7cf382cc register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x7cf3cfb7 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x7cf8772c jbd2_journal_flush EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation EXPORT_SYMBOL vmlinux 0x7d092eb4 cdrom_mode_sense EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d2c555a napi_complete_done -EXPORT_SYMBOL vmlinux 0x7d31f6d4 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x7d160845 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x7d3ecc4e sk_capable EXPORT_SYMBOL vmlinux 0x7d42ab46 blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d4cc4a5 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x7d50abf4 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x7d50af11 can_nice EXPORT_SYMBOL vmlinux 0x7d522361 mempool_create_node -EXPORT_SYMBOL vmlinux 0x7d538791 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x7d59612b vfs_create_mount EXPORT_SYMBOL vmlinux 0x7d5c9767 dquot_alloc -EXPORT_SYMBOL vmlinux 0x7d6b3f5e kernel_sendpage -EXPORT_SYMBOL vmlinux 0x7d6bc8a4 skb_queue_tail EXPORT_SYMBOL vmlinux 0x7d6dcbc1 unregister_service_level -EXPORT_SYMBOL vmlinux 0x7d821e29 skb_queue_head EXPORT_SYMBOL vmlinux 0x7d8499f4 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x7d98f860 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x7d9bebcd kern_path -EXPORT_SYMBOL vmlinux 0x7da62641 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x7d875c2e sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x7d89550f tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x7d92c50e user_path_create +EXPORT_SYMBOL vmlinux 0x7d97dfb5 sock_wake_async +EXPORT_SYMBOL vmlinux 0x7da7ac53 sock_init_data_uid EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dc7a946 flow_indr_dev_unregister EXPORT_SYMBOL vmlinux 0x7dde8701 page_pool_return_skb_page EXPORT_SYMBOL vmlinux 0x7dec65ff mempool_init EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df89234 inet6_register_protosw EXPORT_SYMBOL vmlinux 0x7dfea9e5 dquot_release EXPORT_SYMBOL vmlinux 0x7e0307ee dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0x7e1c22fb sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x7e08d8c9 sk_dst_check EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e3eb5b7 eth_get_headlen -EXPORT_SYMBOL vmlinux 0x7e50c270 pagecache_get_page EXPORT_SYMBOL vmlinux 0x7e649d62 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x7e71b29b __test_set_page_writeback EXPORT_SYMBOL vmlinux 0x7e71ec2b dma_fence_allocate_private_stub EXPORT_SYMBOL vmlinux 0x7e76eb7c pci_bus_claim_resources EXPORT_SYMBOL vmlinux 0x7e821ba1 crc_ccitt EXPORT_SYMBOL vmlinux 0x7e82d7d0 __cleancache_get_page EXPORT_SYMBOL vmlinux 0x7e8e92f0 empty_aops +EXPORT_SYMBOL vmlinux 0x7e95ee49 jbd2_journal_extend EXPORT_SYMBOL vmlinux 0x7e963590 file_modified +EXPORT_SYMBOL vmlinux 0x7ea70cee dev_get_phys_port_name EXPORT_SYMBOL vmlinux 0x7eac6623 blk_mq_end_request EXPORT_SYMBOL vmlinux 0x7eccafdd tty_write_room -EXPORT_SYMBOL vmlinux 0x7ee3863d neigh_table_init +EXPORT_SYMBOL vmlinux 0x7edbecb7 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x7ee72df2 vmf_insert_pfn_prot EXPORT_SYMBOL vmlinux 0x7eee69a4 page_pool_create EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table EXPORT_SYMBOL vmlinux 0x7f0c4987 dquot_drop +EXPORT_SYMBOL vmlinux 0x7f16070d tcp_ioctl EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs EXPORT_SYMBOL vmlinux 0x7f26c9f8 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x7f3583c8 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x7f39c3a1 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x7f45f714 setup_new_exec EXPORT_SYMBOL vmlinux 0x7f4c565b add_wait_queue EXPORT_SYMBOL vmlinux 0x7f52071a net_dim EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f7692ab kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x7f6d2424 inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f86bfd1 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x7f8352b3 genlmsg_put EXPORT_SYMBOL vmlinux 0x7f957121 dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x7f966de4 fifo_set_limit EXPORT_SYMBOL vmlinux 0x7fb8cffc d_delete -EXPORT_SYMBOL vmlinux 0x7fc8541f reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x7fd962b2 ip_mc_check_igmp EXPORT_SYMBOL vmlinux 0x7fdf6f24 pcim_iounmap EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fef5e94 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x7ffb70ad skb_expand_head +EXPORT_SYMBOL vmlinux 0x8004650d xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x801bb517 generic_file_open EXPORT_SYMBOL vmlinux 0x80318b30 sg_copy_buffer EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x804b07a8 scsi_change_queue_depth 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 0x806a9140 proto_unregister EXPORT_SYMBOL vmlinux 0x806f2c92 tcw_set_tccb EXPORT_SYMBOL vmlinux 0x8071e9cd inc_node_page_state EXPORT_SYMBOL vmlinux 0x8072fb72 notify_change -EXPORT_SYMBOL vmlinux 0x808768e1 __zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x808b6a70 bio_chain -EXPORT_SYMBOL vmlinux 0x80a2def7 dst_discard_out +EXPORT_SYMBOL vmlinux 0x808f9891 file_fdatawait_range EXPORT_SYMBOL vmlinux 0x80abca8e dma_fence_array_create EXPORT_SYMBOL vmlinux 0x80b313dc utf8_casefold_hash EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80ccac64 __netif_schedule +EXPORT_SYMBOL vmlinux 0x80cfb1d9 __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client EXPORT_SYMBOL vmlinux 0x80d7f717 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x80e3fe81 __dev_kfree_skb_irq EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80eee5e5 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x81046315 tso_count_descs EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x81107f19 ip6_output EXPORT_SYMBOL vmlinux 0x8111826f d_tmpfile EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer EXPORT_SYMBOL vmlinux 0x81164daa __SCK__tp_func_s390_cio_rsch -EXPORT_SYMBOL vmlinux 0x811eb8c3 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x812678bb _dev_err EXPORT_SYMBOL vmlinux 0x8128c039 smsg_register_callback -EXPORT_SYMBOL vmlinux 0x812ee2de ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x812f78eb xxh64_update EXPORT_SYMBOL vmlinux 0x81389d52 blk_mq_stop_hw_queue EXPORT_SYMBOL vmlinux 0x814081f1 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0x81567888 locks_delete_block +EXPORT_SYMBOL vmlinux 0x8143c32d skb_copy_expand +EXPORT_SYMBOL vmlinux 0x815b404d pfifo_fast_ops EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal EXPORT_SYMBOL vmlinux 0x815dc7aa con_copy_unimap -EXPORT_SYMBOL vmlinux 0x81659b25 dentry_path_raw EXPORT_SYMBOL vmlinux 0x816ddb49 dquot_get_next_id EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information EXPORT_SYMBOL vmlinux 0x81844c9d vmemdup_user -EXPORT_SYMBOL vmlinux 0x81881d55 __register_binfmt +EXPORT_SYMBOL vmlinux 0x81871762 vlan_vids_del_by_dev EXPORT_SYMBOL vmlinux 0x81a58001 mempool_init_node -EXPORT_SYMBOL vmlinux 0x81b219a3 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x81b2bf7e jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0x81b433f2 down EXPORT_SYMBOL vmlinux 0x81c521ce proc_dobool +EXPORT_SYMBOL vmlinux 0x81d99cb5 jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81ea8e05 flow_rule_match_vlan EXPORT_SYMBOL vmlinux 0x82069911 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x8247dfe4 mr_table_dump -EXPORT_SYMBOL vmlinux 0x8248dc05 dst_destroy +EXPORT_SYMBOL vmlinux 0x820ae4ae follow_down_one +EXPORT_SYMBOL vmlinux 0x823b96df security_path_mknod +EXPORT_SYMBOL vmlinux 0x824c98ac inet_add_offload EXPORT_SYMBOL vmlinux 0x824d2417 noop_fsync +EXPORT_SYMBOL vmlinux 0x824e3fd9 tcp_v4_send_check EXPORT_SYMBOL vmlinux 0x826e3209 pci_back_from_sleep EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82a155c6 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x82806aba vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x828b94c0 ethtool_get_phc_vclocks EXPORT_SYMBOL vmlinux 0x82c2f005 kmalloc_order_trace EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82db7356 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x82fdc50c poll_initwait -EXPORT_SYMBOL vmlinux 0x8312796d page_cache_next_miss -EXPORT_SYMBOL vmlinux 0x8317102f rtnl_unicast +EXPORT_SYMBOL vmlinux 0x82d56f62 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x82e395f4 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync +EXPORT_SYMBOL vmlinux 0x82f2d6c8 inet_sk_set_state EXPORT_SYMBOL vmlinux 0x833c558c pcie_relaxed_ordering_enabled EXPORT_SYMBOL vmlinux 0x83525d93 __alloc_disk_node EXPORT_SYMBOL vmlinux 0x83538ba9 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x83579d1f rtnl_link_get_net EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x835a035d clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x83710e41 inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x837d019e jbd2_log_start_commit EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x83947f15 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x839eae01 qdisc_put EXPORT_SYMBOL vmlinux 0x83bdb3e1 gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0x83bff52e kmem_cache_shrink EXPORT_SYMBOL vmlinux 0x83cd7f4f freeze_super -EXPORT_SYMBOL vmlinux 0x83d4e251 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0x8400f905 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x83e5dbf6 inet_del_offload EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free EXPORT_SYMBOL vmlinux 0x8407f1b7 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x841c184b locks_init_lock EXPORT_SYMBOL vmlinux 0x841cc2f6 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x8425af6e unregister_console EXPORT_SYMBOL vmlinux 0x842a2e7d PDE_DATA EXPORT_SYMBOL vmlinux 0x843173eb input_inject_event -EXPORT_SYMBOL vmlinux 0x844226d7 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x8435f615 skb_tx_error +EXPORT_SYMBOL vmlinux 0x844b3b08 inet_protos EXPORT_SYMBOL vmlinux 0x845c0587 dec_node_page_state EXPORT_SYMBOL vmlinux 0x84609e60 seq_printf EXPORT_SYMBOL vmlinux 0x84636807 from_kprojid EXPORT_SYMBOL vmlinux 0x8467b9d7 mode_strip_sgid -EXPORT_SYMBOL vmlinux 0x8472c41f tcf_block_put -EXPORT_SYMBOL vmlinux 0x84785732 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x8482423d netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x84938d96 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x847cffb6 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x847f3fcf dev_mc_del_global EXPORT_SYMBOL vmlinux 0x8499b061 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x849a7209 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x84bc513c dev_set_threaded EXPORT_SYMBOL vmlinux 0x84c18f4f ZSTD_decompress_usingDDict +EXPORT_SYMBOL vmlinux 0x84c97495 sk_stream_error EXPORT_SYMBOL vmlinux 0x84d4c8cc crc16 EXPORT_SYMBOL vmlinux 0x84dcb60c pcim_pin_device -EXPORT_SYMBOL vmlinux 0x84e37db3 sock_from_file -EXPORT_SYMBOL vmlinux 0x84ee6ab4 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x85620cd1 mntput +EXPORT_SYMBOL vmlinux 0x84ec29a2 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x84f091a7 napi_build_skb +EXPORT_SYMBOL vmlinux 0x854e1c3b udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85882606 key_type_keyring +EXPORT_SYMBOL vmlinux 0x858a55b1 udp_set_csum +EXPORT_SYMBOL vmlinux 0x858a82d5 sock_queue_err_skb EXPORT_SYMBOL vmlinux 0x859bf03f key_payload_reserve EXPORT_SYMBOL vmlinux 0x859d3e48 jbd2_journal_start_reserved EXPORT_SYMBOL vmlinux 0x85abc85f strncmp +EXPORT_SYMBOL vmlinux 0x85b1e0b8 skb_checksum EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85bffcd5 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x85c6e7d2 bh_submit_read EXPORT_SYMBOL vmlinux 0x85d14264 trace_print_flags_seq EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85eb18c6 skb_abort_seq_read EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn EXPORT_SYMBOL vmlinux 0x85fdaa35 vfs_get_tree EXPORT_SYMBOL vmlinux 0x860efa2c mutex_lock -EXPORT_SYMBOL vmlinux 0x861e9534 tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0x86216acd __xa_set_mark EXPORT_SYMBOL vmlinux 0x862534a9 inc_nlink +EXPORT_SYMBOL vmlinux 0x86369bec __skb_gso_segment EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x86509c38 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x866bc907 module_layout +EXPORT_SYMBOL vmlinux 0x8675e173 vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0x8676db46 get_random_bytes +EXPORT_SYMBOL vmlinux 0x867b1ad6 register_netdev EXPORT_SYMBOL vmlinux 0x8689d3f6 ZSTD_decompressBlock EXPORT_SYMBOL vmlinux 0x868acba5 get_options EXPORT_SYMBOL vmlinux 0x868bde1d down_write_trylock -EXPORT_SYMBOL vmlinux 0x869db863 __sk_mem_schedule EXPORT_SYMBOL vmlinux 0x86a34793 _copy_to_user_key EXPORT_SYMBOL vmlinux 0x86a8fb71 mutex_unlock -EXPORT_SYMBOL vmlinux 0x86b6a56f vlan_vid_del EXPORT_SYMBOL vmlinux 0x86b785a4 fuse_dequeue_forget EXPORT_SYMBOL vmlinux 0x86bdbe46 __tracepoint_s390_cio_chsc +EXPORT_SYMBOL vmlinux 0x86d18a59 dev_set_allmulti EXPORT_SYMBOL vmlinux 0x86d2335e mempool_create EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant EXPORT_SYMBOL vmlinux 0x86f5ef9a iov_iter_discard EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user EXPORT_SYMBOL vmlinux 0x870bab9e utf8ncursor -EXPORT_SYMBOL vmlinux 0x8727d604 rt_dst_alloc -EXPORT_SYMBOL vmlinux 0x872e1a6d tcp_time_wait +EXPORT_SYMBOL vmlinux 0x8712e685 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x871e3091 dev_addr_del +EXPORT_SYMBOL vmlinux 0x87333f90 xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0x8746aeaf debug_exception_common EXPORT_SYMBOL vmlinux 0x87532703 raw3270_start_irq -EXPORT_SYMBOL vmlinux 0x875b6bf1 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x875db8bd __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0x875f73c1 input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x877edc49 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x878230ce sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x8787ca31 __inet_hash +EXPORT_SYMBOL vmlinux 0x8783ef12 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x8797f043 release_sock EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87aa6cf0 release_sock EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87fa3195 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x87b8e1bb netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x87d2e5ce jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x87da779e balance_dirty_pages_ratelimited EXPORT_SYMBOL vmlinux 0x87fcab48 hex2bin EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit EXPORT_SYMBOL vmlinux 0x881222a7 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x8832de91 tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x8833bc7e __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x8833cdd3 register_nexthop_notifier EXPORT_SYMBOL vmlinux 0x883c47fc set_blocksize +EXPORT_SYMBOL vmlinux 0x8840af0e filemap_fdatawrite_wbc EXPORT_SYMBOL vmlinux 0x8845d89a __kmalloc_track_caller -EXPORT_SYMBOL vmlinux 0x885bb74a ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0x885ddac6 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x88619754 fasync_helper EXPORT_SYMBOL vmlinux 0x887efc6f __traceiter_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8882950d dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x88b69559 tcf_get_next_proto EXPORT_SYMBOL vmlinux 0x88c48159 fs_lookup_param EXPORT_SYMBOL vmlinux 0x88c880b9 set_groups EXPORT_SYMBOL vmlinux 0x88db7d46 debug_register_view EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free EXPORT_SYMBOL vmlinux 0x88e52cdb idr_for_each -EXPORT_SYMBOL vmlinux 0x88f4f71e gro_cells_init +EXPORT_SYMBOL vmlinux 0x88ef5b7a __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x8910be4a netif_device_attach EXPORT_SYMBOL vmlinux 0x89192ae7 pcim_iomap_regions EXPORT_SYMBOL vmlinux 0x891eb7f1 pci_enable_device -EXPORT_SYMBOL vmlinux 0x892c93f8 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x893dec9c skb_page_frag_refill EXPORT_SYMBOL vmlinux 0x895184db __blkdev_issue_discard EXPORT_SYMBOL vmlinux 0x89621b96 __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0x899a9b41 jbd2_journal_lock_updates EXPORT_SYMBOL vmlinux 0x89a09837 ioremap_prot +EXPORT_SYMBOL vmlinux 0x89a1c590 lock_page_memcg EXPORT_SYMBOL vmlinux 0x89a72572 __tracepoint_s390_cio_hsch -EXPORT_SYMBOL vmlinux 0x89b08dd0 kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0x89d35235 fs_param_is_enum -EXPORT_SYMBOL vmlinux 0x89d8193f nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x89e074c7 __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0x8a002373 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x8a355d9f filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x8a42de2a delete_from_page_cache EXPORT_SYMBOL vmlinux 0x8a45212c blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x8a5a574d ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0x8a65338b percpu_counter_sync EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags -EXPORT_SYMBOL vmlinux 0x8a7c59ee xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x8a741eb8 scsi_report_device_reset EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8a9a1933 __module_get -EXPORT_SYMBOL vmlinux 0x8abb0fa2 dev_change_flags -EXPORT_SYMBOL vmlinux 0x8ac2ad57 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x8aa94435 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x8ab5aa9e mr_table_alloc EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation EXPORT_SYMBOL vmlinux 0x8ad8b97e pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x8adca34b netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x8ae94d3d zap_page_range +EXPORT_SYMBOL vmlinux 0x8ae0fdeb nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x8ae22183 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x8ae29bac dev_get_by_napi_id EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x8b1a7ed8 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x8b23a94b __ip_options_compile +EXPORT_SYMBOL vmlinux 0x8b3e2333 arp_tbl EXPORT_SYMBOL vmlinux 0x8b55fd4f hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x8b567868 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x8b5a06c7 sock_no_connect EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid EXPORT_SYMBOL vmlinux 0x8b649625 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x8b686643 xfrm_init_state EXPORT_SYMBOL vmlinux 0x8b6a06fa iov_iter_xarray EXPORT_SYMBOL vmlinux 0x8b70c42b iov_iter_npages -EXPORT_SYMBOL vmlinux 0x8b7da227 sock_bind_add EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b883100 dcb_ieee_delapp EXPORT_SYMBOL vmlinux 0x8b8cf871 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x8b8d207a dev_graft_qdisc EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx +EXPORT_SYMBOL vmlinux 0x8ba0066c jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x8bd1149d rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free EXPORT_SYMBOL vmlinux 0x8be5fea7 fs_param_is_bool -EXPORT_SYMBOL vmlinux 0x8bf5f0a4 follow_pfn -EXPORT_SYMBOL vmlinux 0x8c106d0c secpath_set +EXPORT_SYMBOL vmlinux 0x8c06ab31 qdisc_watchdog_init EXPORT_SYMBOL vmlinux 0x8c11a69d clocksource_unregister -EXPORT_SYMBOL vmlinux 0x8c28b766 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x8c1afc35 read_cache_page +EXPORT_SYMBOL vmlinux 0x8c38450c sock_register EXPORT_SYMBOL vmlinux 0x8c3bab0c fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0x8c40ab08 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x8c538109 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x8c5b615d tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0x8c60c8ec netdev_port_same_parent_id EXPORT_SYMBOL vmlinux 0x8c6592fc hdmi_avi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x8c816c50 override_creds EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint EXPORT_SYMBOL vmlinux 0x8c875be0 tcw_init EXPORT_SYMBOL vmlinux 0x8c8bd81c shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x8c92d6bd scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x8c9cfda0 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x8cac45b6 generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0x8cae3418 vmalloc_to_page EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid EXPORT_SYMBOL vmlinux 0x8cb062a8 iucv_message_reply EXPORT_SYMBOL vmlinux 0x8cbf7a26 put_watch_queue +EXPORT_SYMBOL vmlinux 0x8cc0b95e filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0x8cce474b param_set_charp +EXPORT_SYMBOL vmlinux 0x8cd885ef ip6_xmit EXPORT_SYMBOL vmlinux 0x8cdfc002 sclp_unregister +EXPORT_SYMBOL vmlinux 0x8cee7355 nobh_write_end EXPORT_SYMBOL vmlinux 0x8cef78c1 register_sysctl_table EXPORT_SYMBOL vmlinux 0x8d0fd4ef idr_replace EXPORT_SYMBOL vmlinux 0x8d176309 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x8d32ef90 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x8d4f8881 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x8d538dff inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x8d35fc16 filemap_fault EXPORT_SYMBOL vmlinux 0x8d54bf38 set_nlink -EXPORT_SYMBOL vmlinux 0x8d557d0f neigh_parms_release EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d627f90 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x8d708498 jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d73c12e generic_permission -EXPORT_SYMBOL vmlinux 0x8d9be2e7 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x8d97f326 pipe_unlock EXPORT_SYMBOL vmlinux 0x8da88d02 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x8dc02d04 netif_skb_features -EXPORT_SYMBOL vmlinux 0x8dd6482a tcp_connect -EXPORT_SYMBOL vmlinux 0x8ddcda1e __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x8db3b693 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x8dc4e786 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x8dd8fb7c scsi_print_result EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8dfe2cf8 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x8e205604 sk_stream_wait_close EXPORT_SYMBOL vmlinux 0x8e20a340 arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0x8e2686f4 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x8e32e634 ll_rw_block +EXPORT_SYMBOL vmlinux 0x8e2ebbe4 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x8e5ff957 gnet_stats_finish_copy EXPORT_SYMBOL vmlinux 0x8e682ca7 page_pool_update_nid -EXPORT_SYMBOL vmlinux 0x8e7220d6 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x8e6b1748 zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0x8e73ebce proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x8e9123c8 tcp_connect EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8e93c786 tcf_em_tree_validate EXPORT_SYMBOL vmlinux 0x8e9502a7 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x8e9c593e dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x8ea0167e scsi_device_quiesce EXPORT_SYMBOL vmlinux 0x8ea0d626 __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0x8eb113f8 scsi_free_host_dev EXPORT_SYMBOL vmlinux 0x8ec12869 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x8ec9ef27 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x8eddb8e7 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x8ecb50ec alloc_pages_vma +EXPORT_SYMBOL vmlinux 0x8ed1f50b block_invalidatepage EXPORT_SYMBOL vmlinux 0x8ee3dc5a setattr_prepare -EXPORT_SYMBOL vmlinux 0x8ee713b5 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x8ee47fd6 try_to_free_buffers EXPORT_SYMBOL vmlinux 0x8ef832bb current_in_userns +EXPORT_SYMBOL vmlinux 0x8f0ff062 dev_change_proto_down_generic EXPORT_SYMBOL vmlinux 0x8f101a80 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x8f123d72 generic_writepages -EXPORT_SYMBOL vmlinux 0x8f21de04 sock_pfree +EXPORT_SYMBOL vmlinux 0x8f14e098 dev_uc_del +EXPORT_SYMBOL vmlinux 0x8f17237b vm_map_pages EXPORT_SYMBOL vmlinux 0x8f2fcb1a init_special_inode -EXPORT_SYMBOL vmlinux 0x8f36aff8 tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0x8f3bc8f7 get_user_pages +EXPORT_SYMBOL vmlinux 0x8f3bca1c flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x8f428788 xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x8f456785 iput -EXPORT_SYMBOL vmlinux 0x8f4bc106 jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x8f57308d clear_inode +EXPORT_SYMBOL vmlinux 0x8f5c36ca sock_release EXPORT_SYMBOL vmlinux 0x8f83734c d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x8f8fc642 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x8f90d522 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x8f8b0cbe setup_arg_pages EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8f9b3fa0 udp_skb_destructor EXPORT_SYMBOL vmlinux 0x8f9efaf6 bdi_put -EXPORT_SYMBOL vmlinux 0x8fb27f95 tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0x8fda9205 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x8fe89e33 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x8fc51e48 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x8fde2e66 eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0x8fea5540 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x8ff7ee44 kernel_write EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit EXPORT_SYMBOL vmlinux 0x8ffc9d82 seq_pad EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush EXPORT_SYMBOL vmlinux 0x902013cb pcix_get_mmrbc EXPORT_SYMBOL vmlinux 0x90239bd6 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x903ba0e4 __inode_sub_bytes EXPORT_SYMBOL vmlinux 0x903f5148 irq_set_chip -EXPORT_SYMBOL vmlinux 0x90446995 scsi_host_put -EXPORT_SYMBOL vmlinux 0x904bb2ef sock_wfree EXPORT_SYMBOL vmlinux 0x904cee2d devm_release_resource +EXPORT_SYMBOL vmlinux 0x9053bb3b tcp_init_sock +EXPORT_SYMBOL vmlinux 0x906ac07f dev_loopback_xmit EXPORT_SYMBOL vmlinux 0x907484c8 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x9077fc64 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x907df186 flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0x908deeef dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x90a77162 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x908ec3f7 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x909e3211 console_stop EXPORT_SYMBOL vmlinux 0x90abb542 prepare_to_wait_exclusive EXPORT_SYMBOL vmlinux 0x90b268a1 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x90b630c0 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x90cf749a flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x90e9297d sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x90b8e98f skb_trim +EXPORT_SYMBOL vmlinux 0x90d2a29b wake_up_process +EXPORT_SYMBOL vmlinux 0x90f403a9 inet_offloads EXPORT_SYMBOL vmlinux 0x90f89ad8 find_inode_nowait EXPORT_SYMBOL vmlinux 0x90fdb59f devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x910202ba __brelse EXPORT_SYMBOL vmlinux 0x9104acd2 vmemmap EXPORT_SYMBOL vmlinux 0x910c7a0c alloc_pages_exact EXPORT_SYMBOL vmlinux 0x9116b417 save_fpu_regs EXPORT_SYMBOL vmlinux 0x911a4b80 vm_mmap -EXPORT_SYMBOL vmlinux 0x91243009 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x911e6b1b vfs_setpos EXPORT_SYMBOL vmlinux 0x912ac4ad param_set_copystring +EXPORT_SYMBOL vmlinux 0x914e89fe tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0x91699c78 fb_get_mode EXPORT_SYMBOL vmlinux 0x9184955c inode_owner_or_capable EXPORT_SYMBOL vmlinux 0x91918466 pci_match_id EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x91a168df udp_pre_connect EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91bce20f tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x91b3b954 unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0x91d0d7e5 dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0x91f498cb xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x91dcecd4 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x91e642e1 dst_discard_out EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x9217a3a4 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x91f73b02 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x92048d9e xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x9208c3dd security_d_instantiate +EXPORT_SYMBOL vmlinux 0x92115712 sync_mapping_buffers EXPORT_SYMBOL vmlinux 0x921add76 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x9228ee65 netlink_ns_capable EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear EXPORT_SYMBOL vmlinux 0x923cd3f2 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x9244835b nobh_write_end -EXPORT_SYMBOL vmlinux 0x924eb565 lookup_one_len +EXPORT_SYMBOL vmlinux 0x923dd883 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x92554d2e netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x925b415f io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x92670644 scsi_device_lookup EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool EXPORT_SYMBOL vmlinux 0x927e2955 xa_get_order -EXPORT_SYMBOL vmlinux 0x928ff81e neigh_for_each EXPORT_SYMBOL vmlinux 0x92997ed8 _printk EXPORT_SYMBOL vmlinux 0x92a16af7 lockref_get -EXPORT_SYMBOL vmlinux 0x92b7ca51 dump_skip +EXPORT_SYMBOL vmlinux 0x92a4ec26 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x92be4c08 inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0x92d371ab get_pgste EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq EXPORT_SYMBOL vmlinux 0x92d6ea76 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x92dbd361 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x92e7a5e8 tcp_make_synack EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs EXPORT_SYMBOL vmlinux 0x93021c01 ccw_device_get_mdc -EXPORT_SYMBOL vmlinux 0x931cb230 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x932ad724 tcp_filter -EXPORT_SYMBOL vmlinux 0x932ed33e jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x933707d0 page_readlink +EXPORT_SYMBOL vmlinux 0x9305a21f qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x9326e414 eth_gro_receive EXPORT_SYMBOL vmlinux 0x933afd98 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x935f6036 vfs_iter_write EXPORT_SYMBOL vmlinux 0x9368e321 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x93704adb __skb_recv_udp EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9377ef6a vfs_llseek EXPORT_SYMBOL vmlinux 0x939176a8 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x9394d43d __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x939ee979 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x93a3b156 neigh_xmit +EXPORT_SYMBOL vmlinux 0x93931351 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x939dc9e1 dev_set_mtu EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93abfc1c security_inet_conn_established EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93bdd76c tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x93d1ff25 input_setup_polling +EXPORT_SYMBOL vmlinux 0x93e67217 tcf_em_register +EXPORT_SYMBOL vmlinux 0x93f42fdd register_netdevice +EXPORT_SYMBOL vmlinux 0x93fa58e9 vfs_statfs EXPORT_SYMBOL vmlinux 0x94065f05 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x940f6c24 __traceiter_module_get EXPORT_SYMBOL vmlinux 0x941564cc pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x94233a86 generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0x94245f01 param_set_ullong EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn EXPORT_SYMBOL vmlinux 0x942f4c5c iucv_message_reject -EXPORT_SYMBOL vmlinux 0x943e8738 audit_log -EXPORT_SYMBOL vmlinux 0x943fee0e dev_printk_emit +EXPORT_SYMBOL vmlinux 0x9432f1fe generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x944e38a6 seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0x945775a5 segment_save EXPORT_SYMBOL vmlinux 0x945c1307 put_disk +EXPORT_SYMBOL vmlinux 0x946165f5 sync_inode_metadata EXPORT_SYMBOL vmlinux 0x947ec447 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x9483d55b vm_map_pages -EXPORT_SYMBOL vmlinux 0x9488e4e0 lease_modify -EXPORT_SYMBOL vmlinux 0x948ee275 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x94904cd0 build_skb_around +EXPORT_SYMBOL vmlinux 0x9490a964 register_qdisc EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b463c5 xsk_tx_release EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94d6764d skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94f23b67 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x94f24bcd __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0x9501da77 fb_set_suspend EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x950846ec jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x950d117b dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x950fd526 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x9510b2ec inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0x951a2dfe iucv_path_accept +EXPORT_SYMBOL vmlinux 0x951b7c95 add_to_pipe EXPORT_SYMBOL vmlinux 0x9530365d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0x95383fd3 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x953c2e83 inet_listen EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x954f20a4 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x9574fa46 __cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x955ba70f ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0x958c24a3 sync_blockdev EXPORT_SYMBOL vmlinux 0x959205be jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x9593e901 inet_bind -EXPORT_SYMBOL vmlinux 0x9594ef66 __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0x95981fe2 debug_register -EXPORT_SYMBOL vmlinux 0x9598fa92 netif_device_detach -EXPORT_SYMBOL vmlinux 0x959b123a vfs_setpos -EXPORT_SYMBOL vmlinux 0x95a49182 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x959a9651 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x959d9338 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x95a98858 security_inode_init_security EXPORT_SYMBOL vmlinux 0x95b38ccc resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x95b593ce __test_set_page_writeback EXPORT_SYMBOL vmlinux 0x95c95e6c tty_port_open EXPORT_SYMBOL vmlinux 0x95cd3301 pci_assign_resource EXPORT_SYMBOL vmlinux 0x95ceb864 key_update EXPORT_SYMBOL vmlinux 0x95e598d1 blk_rq_unmap_user EXPORT_SYMBOL vmlinux 0x95e63ced prot_virt_host -EXPORT_SYMBOL vmlinux 0x95f25240 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x96100d6a add_to_pipe +EXPORT_SYMBOL vmlinux 0x9610f391 __page_symlink EXPORT_SYMBOL vmlinux 0x961c796b md_done_sync -EXPORT_SYMBOL vmlinux 0x962765f5 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x96200fb7 reuseport_stop_listen_sock EXPORT_SYMBOL vmlinux 0x96404e39 itcw_set_data EXPORT_SYMBOL vmlinux 0x9658c979 pci_iomap_wc EXPORT_SYMBOL vmlinux 0x965ad76e fs_param_is_string EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg -EXPORT_SYMBOL vmlinux 0x9676c88d peernet2id EXPORT_SYMBOL vmlinux 0x967c5a05 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x968ba9b0 ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0x968d614a __cleancache_invalidate_page EXPORT_SYMBOL vmlinux 0x96a4b01c pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x96bf6889 xfrm_parse_spi EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode EXPORT_SYMBOL vmlinux 0x96c19ea1 pci_bus_write_config_dword EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d4a1de nf_log_set EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top EXPORT_SYMBOL vmlinux 0x96fb951d cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x9705d731 udp6_csum_init EXPORT_SYMBOL vmlinux 0x970f17a7 ap_parse_mask_str +EXPORT_SYMBOL vmlinux 0x97208f1b scsi_dma_unmap EXPORT_SYMBOL vmlinux 0x97247197 fb_set_cmap EXPORT_SYMBOL vmlinux 0x974d0924 __kernel_cpumcf_begin -EXPORT_SYMBOL vmlinux 0x974d2aeb sk_net_capable -EXPORT_SYMBOL vmlinux 0x976e886f jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x9777dbae fqdir_exit +EXPORT_SYMBOL vmlinux 0x9762d1d6 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x9769f617 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x977f21fd ip_sock_set_freebind EXPORT_SYMBOL vmlinux 0x9780c2d8 __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x97823904 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x9782ccf8 neigh_sysctl_register EXPORT_SYMBOL vmlinux 0x9788e2c5 __alloc_pages -EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync EXPORT_SYMBOL vmlinux 0x979b5887 raw3270_start_locked -EXPORT_SYMBOL vmlinux 0x97a5e8ce tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x97a6b9de skb_pull EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s EXPORT_SYMBOL vmlinux 0x97b0ae07 ccw_device_get_id EXPORT_SYMBOL vmlinux 0x97b67036 file_remove_privs EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97cf89d5 tcp_recvmsg EXPORT_SYMBOL vmlinux 0x97d0dde4 register_framebuffer -EXPORT_SYMBOL vmlinux 0x97ef0996 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x97efe2a5 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x97d50135 vfs_mknod +EXPORT_SYMBOL vmlinux 0x97dddfe3 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x98031387 ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0x98162a75 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x981fce5a dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x9826c137 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x98648db1 sock_no_shutdown EXPORT_SYMBOL vmlinux 0x987cb4a1 show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x989765bd xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x9895a832 neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0x989e1516 xa_destroy EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98c8c417 __scsi_execute +EXPORT_SYMBOL vmlinux 0x98d629eb remove_arg_zero EXPORT_SYMBOL vmlinux 0x98de1c15 snprintf EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98e64135 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x98ecc4c9 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x9907da4d ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0x99088040 pci_enable_wake -EXPORT_SYMBOL vmlinux 0x9920e02e inet6_protos -EXPORT_SYMBOL vmlinux 0x99229b12 sock_alloc EXPORT_SYMBOL vmlinux 0x992d6c42 input_register_handle -EXPORT_SYMBOL vmlinux 0x99301cf9 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x9930c3f0 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x993fdd75 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x9941db13 dev_addr_add EXPORT_SYMBOL vmlinux 0x9942ec77 itcw_finalize EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x996a376b tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x996bb289 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x9982ec08 netif_napi_add +EXPORT_SYMBOL vmlinux 0x99581799 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x997c1ff1 sock_pfree +EXPORT_SYMBOL vmlinux 0x99854d43 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a834c4 flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x99ab2238 filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0x99ae0b98 kthread_blkcg -EXPORT_SYMBOL vmlinux 0x99c5a62a sock_setsockopt EXPORT_SYMBOL vmlinux 0x99ca74a6 xa_erase EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99f02977 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x99f8b437 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x99e3f11e fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x99e41e85 mount_subtree EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x9a0a7ec1 register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a21007a flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0x9a305f4d tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x9a307cf1 scsi_print_sense_hdr EXPORT_SYMBOL vmlinux 0x9a400194 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x9a492be9 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x9a558a7a tso_count_descs EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a5a340b jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0x9a6365bd __dec_zone_page_state EXPORT_SYMBOL vmlinux 0x9a684448 do_wait_intr EXPORT_SYMBOL vmlinux 0x9a6f1c7b input_allocate_device EXPORT_SYMBOL vmlinux 0x9a7bed38 key_revoke -EXPORT_SYMBOL vmlinux 0x9a848e9c default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x9a7ccf43 sk_reset_timer EXPORT_SYMBOL vmlinux 0x9a906daf memscan EXPORT_SYMBOL vmlinux 0x9a97a4be pci_find_capability -EXPORT_SYMBOL vmlinux 0x9a9f78ed datagram_poll +EXPORT_SYMBOL vmlinux 0x9aab975c fget EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ab364cb blackhole_netdev EXPORT_SYMBOL vmlinux 0x9ad05e5c dma_sync_single_for_cpu EXPORT_SYMBOL vmlinux 0x9ad5e64f param_ops_hexint EXPORT_SYMBOL vmlinux 0x9adc9c67 vsnprintf EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9b24005e tcp_mmap EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x9b42ef0f dfltcc_reset EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b4e5e78 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x9b500504 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x9b7b653b __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x9b713a4a netpoll_poll_disable EXPORT_SYMBOL vmlinux 0x9b8d07aa strnlen -EXPORT_SYMBOL vmlinux 0x9b93eef1 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x9b97f97d tcf_exts_change +EXPORT_SYMBOL vmlinux 0x9b9b4844 vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0x9bc2760b register_quota_format +EXPORT_SYMBOL vmlinux 0x9bc4cad6 eth_header +EXPORT_SYMBOL vmlinux 0x9bcd341c xfrm4_protocol_register EXPORT_SYMBOL vmlinux 0x9bce1f69 fb_find_mode -EXPORT_SYMBOL vmlinux 0x9bd7c757 sk_capable -EXPORT_SYMBOL vmlinux 0x9bedb36c scsi_print_result EXPORT_SYMBOL vmlinux 0x9bedd673 dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x9bf08c86 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x9c02ad36 napi_disable -EXPORT_SYMBOL vmlinux 0x9c3e9b5b mount_subtree -EXPORT_SYMBOL vmlinux 0x9c48b9bb flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x9c5d0c51 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x9c5d8bf0 arp_xmit +EXPORT_SYMBOL vmlinux 0x9c224c23 unlock_rename EXPORT_SYMBOL vmlinux 0x9c60586c __dquot_free_space -EXPORT_SYMBOL vmlinux 0x9c6dc94c netdev_change_features -EXPORT_SYMBOL vmlinux 0x9c817fb2 xfrm_state_walk EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags EXPORT_SYMBOL vmlinux 0x9cadbd3b __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x9cc02eae unregister_qdisc -EXPORT_SYMBOL vmlinux 0x9cc9e7e1 __scsi_execute -EXPORT_SYMBOL vmlinux 0x9cdc0177 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x9cc79f90 netdev_crit EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net EXPORT_SYMBOL vmlinux 0x9ce57005 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x9cf01303 security_path_unlink EXPORT_SYMBOL vmlinux 0x9cf64ae8 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x9cf8fd9d write_inode_now EXPORT_SYMBOL vmlinux 0x9cf9f918 get_user_pages_remote -EXPORT_SYMBOL vmlinux 0x9d07f84b write_one_page EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d1865f6 ip_sock_set_tos EXPORT_SYMBOL vmlinux 0x9d1da73e raw3270_find_view EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d4713fe ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x9d509dca init_opal_dev -EXPORT_SYMBOL vmlinux 0x9d5ade06 ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x9d6321a4 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x9d6b22f8 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x9d80c498 tc_setup_flow_action EXPORT_SYMBOL vmlinux 0x9d8795db single_release EXPORT_SYMBOL vmlinux 0x9d926530 pcix_get_max_mmrbc EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context EXPORT_SYMBOL vmlinux 0x9d9bd927 param_get_ulong -EXPORT_SYMBOL vmlinux 0x9db2d16f prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0x9db7b5dc pci_bus_type -EXPORT_SYMBOL vmlinux 0x9dc37f6c seg6_push_hmac EXPORT_SYMBOL vmlinux 0x9dc729cd padata_free_shell -EXPORT_SYMBOL vmlinux 0x9e06e5a1 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x9dd1d2d0 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x9ddc453a dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x9e076284 skb_recv_datagram EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e2598c5 sock_alloc_send_pskb EXPORT_SYMBOL vmlinux 0x9e2be142 nmi_panic EXPORT_SYMBOL vmlinux 0x9e3ab96d iucv_if +EXPORT_SYMBOL vmlinux 0x9e40e46e reuseport_add_sock EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e580a94 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x9e575455 skb_set_owner_w EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e8d84c6 __starget_for_each_device EXPORT_SYMBOL vmlinux 0x9e9783e1 __tracepoint_s390_cio_ssch EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea6b34e wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x9ea8adfa inode_set_bytes -EXPORT_SYMBOL vmlinux 0x9eaf3ebf ___pskb_trim +EXPORT_SYMBOL vmlinux 0x9eb05d95 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x9eb45f3f lookup_one EXPORT_SYMBOL vmlinux 0x9ebed933 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x9ec39a7e filemap_flush EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ecb5197 inet_ioctl +EXPORT_SYMBOL vmlinux 0x9eebca13 logfc EXPORT_SYMBOL vmlinux 0x9eee8103 put_ipc_ns -EXPORT_SYMBOL vmlinux 0x9f087bf6 nf_log_register -EXPORT_SYMBOL vmlinux 0x9f08c07e xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x9f44d15c sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x9f1f16ed sock_gettstamp +EXPORT_SYMBOL vmlinux 0x9f214cf5 security_inode_setsecctx EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f5912db tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x9f5cd7dc xfrm_user_policy EXPORT_SYMBOL vmlinux 0x9f5d9393 utf8nagemax -EXPORT_SYMBOL vmlinux 0x9f6c4846 _dev_printk +EXPORT_SYMBOL vmlinux 0x9f7504bc tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x9f80058b dentry_open +EXPORT_SYMBOL vmlinux 0x9f8fdc84 follow_up +EXPORT_SYMBOL vmlinux 0x9f90cb0e sock_create EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f9b0f12 ip_mc_leave_group EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fc11316 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x9fc4ced0 skb_mac_gso_segment EXPORT_SYMBOL vmlinux 0x9fc96621 bdev_read_only -EXPORT_SYMBOL vmlinux 0x9fcf9a48 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x9fd18817 _dev_emerg +EXPORT_SYMBOL vmlinux 0x9fcefb8a inode_permission EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fdf942c fib_default_rule_add EXPORT_SYMBOL vmlinux 0x9fe229f2 d_genocide -EXPORT_SYMBOL vmlinux 0x9feb7966 dev_uc_add_excl EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce EXPORT_SYMBOL vmlinux 0x9feee7dc pci_scan_slot EXPORT_SYMBOL vmlinux 0x9ff3fe24 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x9ff6d370 crypto_sha1_update EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog EXPORT_SYMBOL vmlinux 0xa0021499 pci_iomap_wc_range -EXPORT_SYMBOL vmlinux 0xa00fbb3d netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0xa01cc75e truncate_setsize EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa0254f73 put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa037d47b netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0xa03d5004 misc_register EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes EXPORT_SYMBOL vmlinux 0xa054e8ed iucv_unregister @@ -5609,85 +5607,88 @@ EXPORT_SYMBOL vmlinux 0xa08b9f80 __traceiter_kmalloc_node EXPORT_SYMBOL vmlinux 0xa090478a arch_has_restricted_virtio_memory_access EXPORT_SYMBOL vmlinux 0xa0921d0f pci_restore_state EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa096f338 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xa098baed lock_rename EXPORT_SYMBOL vmlinux 0xa0a15b49 smp_call_function_many -EXPORT_SYMBOL vmlinux 0xa0a505b0 tcp_splice_read EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 EXPORT_SYMBOL vmlinux 0xa0b57825 generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0xa0c2a6e8 tc_cleanup_flow_action +EXPORT_SYMBOL vmlinux 0xa0b9d9d0 inet_del_protocol EXPORT_SYMBOL vmlinux 0xa0c8fc90 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xa0d2f089 inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0xa0d3d560 ksize EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e2cc98 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function -EXPORT_SYMBOL vmlinux 0xa0eb2224 skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check EXPORT_SYMBOL vmlinux 0xa0ebf60b cdev_alloc EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa1047de1 gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max EXPORT_SYMBOL vmlinux 0xa10a0439 kmalloc_order EXPORT_SYMBOL vmlinux 0xa12998d8 free_inode_nonrcu EXPORT_SYMBOL vmlinux 0xa1411038 elv_rb_del -EXPORT_SYMBOL vmlinux 0xa15512ec __lock_buffer +EXPORT_SYMBOL vmlinux 0xa1520cc8 rtnl_notify +EXPORT_SYMBOL vmlinux 0xa16969a6 inet_confirm_addr EXPORT_SYMBOL vmlinux 0xa173b111 dquot_commit EXPORT_SYMBOL vmlinux 0xa18dc5c5 tty_devnum -EXPORT_SYMBOL vmlinux 0xa19d2a9b tcf_qevent_dump EXPORT_SYMBOL vmlinux 0xa1a8cc6c crc_ccitt_false -EXPORT_SYMBOL vmlinux 0xa1becf06 gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0xa1c2d5d1 kbd_keycode -EXPORT_SYMBOL vmlinux 0xa1c6d827 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xa1d0934d flow_block_cb_incref EXPORT_SYMBOL vmlinux 0xa1d5979b find_first_bit_inv -EXPORT_SYMBOL vmlinux 0xa1ea5691 generic_fadvise EXPORT_SYMBOL vmlinux 0xa1ec8f1c __kfifo_to_user_r EXPORT_SYMBOL vmlinux 0xa1eeb4b1 con_is_visible -EXPORT_SYMBOL vmlinux 0xa1fb2e65 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xa1ef9269 dev_mc_add_global EXPORT_SYMBOL vmlinux 0xa1fee353 tcw_set_tsb -EXPORT_SYMBOL vmlinux 0xa202bdb3 dev_get_phys_port_name EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp EXPORT_SYMBOL vmlinux 0xa222adb4 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xa22b662a scsi_host_get EXPORT_SYMBOL vmlinux 0xa22c25c9 devm_ioremap_np EXPORT_SYMBOL vmlinux 0xa2365b27 get_tree_bdev +EXPORT_SYMBOL vmlinux 0xa2383639 udp6_set_csum EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa249bb63 get_task_cred EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa2551396 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xa25b2f33 skb_dequeue +EXPORT_SYMBOL vmlinux 0xa2521eaf napi_enable EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte +EXPORT_SYMBOL vmlinux 0xa25f5534 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xa266de63 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xa26890b5 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xa2697c5c release_pages EXPORT_SYMBOL vmlinux 0xa27030b3 __do_once_slow_done EXPORT_SYMBOL vmlinux 0xa271e48e md_integrity_register EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active EXPORT_SYMBOL vmlinux 0xa28e1b49 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0xa29400e1 flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0xa2ace2e2 bio_init -EXPORT_SYMBOL vmlinux 0xa2ae11fe netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xa2be075c unlock_page +EXPORT_SYMBOL vmlinux 0xa2be1b64 generic_block_bmap EXPORT_SYMBOL vmlinux 0xa2c5e6ed dquot_operations EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2d8c89b tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xa2d9ad2f __xfrm_state_delete EXPORT_SYMBOL vmlinux 0xa2e17323 pmdp_xchg_direct +EXPORT_SYMBOL vmlinux 0xa2eb6001 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xa2ed6f82 netdev_lower_state_changed EXPORT_SYMBOL vmlinux 0xa2f19080 may_setattr EXPORT_SYMBOL vmlinux 0xa2fc75e7 trace_print_hex_seq EXPORT_SYMBOL vmlinux 0xa31d1dea __xa_erase -EXPORT_SYMBOL vmlinux 0xa328f908 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xa34c687e write_cache_pages EXPORT_SYMBOL vmlinux 0xa3509ddc dev_base_lock -EXPORT_SYMBOL vmlinux 0xa3773cc6 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xa368ca55 tcp_rtx_synack EXPORT_SYMBOL vmlinux 0xa37b959b dquot_file_open -EXPORT_SYMBOL vmlinux 0xa37bc506 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xa3834183 __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0xa38624a9 seq_write -EXPORT_SYMBOL vmlinux 0xa388ff6e jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xa392c498 kfree_skb_partial EXPORT_SYMBOL vmlinux 0xa39989ae pci_release_resource EXPORT_SYMBOL vmlinux 0xa3a0cc12 raw3270_wait_queue EXPORT_SYMBOL vmlinux 0xa3a5be95 memmove EXPORT_SYMBOL vmlinux 0xa3b06dde percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xa3b7c331 key_type_keyring +EXPORT_SYMBOL vmlinux 0xa3b22e42 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xa3b74f9c finish_swait EXPORT_SYMBOL vmlinux 0xa3b89080 simple_empty +EXPORT_SYMBOL vmlinux 0xa3ba94ee kill_pid EXPORT_SYMBOL vmlinux 0xa3bde0ed pci_irq_vector EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3c41cef gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0xa3e60932 ccw_device_start_key EXPORT_SYMBOL vmlinux 0xa3e9ec4b nla_reserve_64bit EXPORT_SYMBOL vmlinux 0xa3f7aa51 __tracepoint_s390_cio_rsch @@ -5695,45 +5696,51 @@ EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final EXPORT_SYMBOL vmlinux 0xa404a7df make_kgid EXPORT_SYMBOL vmlinux 0xa4051bf6 LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0xa4137806 inet_csk_accept EXPORT_SYMBOL vmlinux 0xa416ce26 kobject_del -EXPORT_SYMBOL vmlinux 0xa432c0e2 sock_gettstamp +EXPORT_SYMBOL vmlinux 0xa43425c2 path_is_under +EXPORT_SYMBOL vmlinux 0xa4342827 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xa435bbdf udp_disconnect +EXPORT_SYMBOL vmlinux 0xa436e6f1 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0xa43bb446 page_mapping -EXPORT_SYMBOL vmlinux 0xa443fa7d sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0xa44b520a __scsi_format_command EXPORT_SYMBOL vmlinux 0xa45c59bd __SCK__tp_func_s390_cio_chsc -EXPORT_SYMBOL vmlinux 0xa467bcd6 xfrm_state_free +EXPORT_SYMBOL vmlinux 0xa48b50bf inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xa49004aa flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xa4a36d13 netif_napi_add EXPORT_SYMBOL vmlinux 0xa4bc31e8 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xa4c3bf3c scmd_printk EXPORT_SYMBOL vmlinux 0xa4c60056 kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0xa4dac775 locks_copy_conflock EXPORT_SYMBOL vmlinux 0xa4e188e7 strscpy +EXPORT_SYMBOL vmlinux 0xa4e4baec console_start EXPORT_SYMBOL vmlinux 0xa503dd04 wait_for_completion_killable_timeout EXPORT_SYMBOL vmlinux 0xa50483fe __ksize EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit -EXPORT_SYMBOL vmlinux 0xa512b484 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0xa518a74c find_vma EXPORT_SYMBOL vmlinux 0xa52011ab blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xa531a8fd passthru_features_check +EXPORT_SYMBOL vmlinux 0xa539422f __check_sticky EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa55ab636 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xa56f73da skb_unlink +EXPORT_SYMBOL vmlinux 0xa5705d53 dev_alloc_name EXPORT_SYMBOL vmlinux 0xa5715f57 d_obtain_root -EXPORT_SYMBOL vmlinux 0xa5878dd1 scsi_dma_map EXPORT_SYMBOL vmlinux 0xa58b31da __wait_on_bit -EXPORT_SYMBOL vmlinux 0xa58bbb4f blk_put_queue EXPORT_SYMBOL vmlinux 0xa5978bdc md_update_sb -EXPORT_SYMBOL vmlinux 0xa5c95c9b user_path_at_empty +EXPORT_SYMBOL vmlinux 0xa5bb8bac sock_alloc EXPORT_SYMBOL vmlinux 0xa5cef445 param_get_byte +EXPORT_SYMBOL vmlinux 0xa5e7531d udp_lib_get_port EXPORT_SYMBOL vmlinux 0xa5e859e4 raw3270_deactivate_view EXPORT_SYMBOL vmlinux 0xa5f93a84 watchdog_unregister_governor EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa6210b25 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xa62c2ee6 crypto_sha256_update EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds EXPORT_SYMBOL vmlinux 0xa64ccf09 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0xa65433b0 udp_prot EXPORT_SYMBOL vmlinux 0xa6583648 d_rehash -EXPORT_SYMBOL vmlinux 0xa659b103 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xa659bd08 inet6_offloads +EXPORT_SYMBOL vmlinux 0xa674cef8 skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0xa67d5921 dma_fence_free EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6b3c3b7 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xa6bfbcce __bforget +EXPORT_SYMBOL vmlinux 0xa6e5a904 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xa6e966a2 __scm_send EXPORT_SYMBOL vmlinux 0xa6e9c670 blake2s_compress_generic EXPORT_SYMBOL vmlinux 0xa6fbbe7b bio_advance EXPORT_SYMBOL vmlinux 0xa6ffd9d0 pci_bus_write_config_word @@ -5742,107 +5749,108 @@ EXPORT_SYMBOL vmlinux 0xa70ea6d7 ZSTD_DCtxWorkspaceBound EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector EXPORT_SYMBOL vmlinux 0xa743efd4 igrab EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa7571aa8 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xa7584ff4 tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0xa764295f textsearch_destroy EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa785efb6 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xa7992138 vm_insert_pages -EXPORT_SYMBOL vmlinux 0xa79f028a eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xa7a840e8 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xa78b53df mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xa7933506 file_write_and_wait_range EXPORT_SYMBOL vmlinux 0xa7a9cfe0 iucv_message_send2way -EXPORT_SYMBOL vmlinux 0xa7ac2ad8 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xa7b0cac9 tcf_action_dump_1 EXPORT_SYMBOL vmlinux 0xa7c5ac0d cond_set_guest_storage_key -EXPORT_SYMBOL vmlinux 0xa7eaba71 inet_frag_find +EXPORT_SYMBOL vmlinux 0xa7c6abba __wait_on_buffer EXPORT_SYMBOL vmlinux 0xa7ee99b9 request_key_with_auxdata EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7f7af4f nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xa801d3e6 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xa80f69aa flow_block_cb_setup_simple EXPORT_SYMBOL vmlinux 0xa824f02c debug_unregister_view +EXPORT_SYMBOL vmlinux 0xa8275fde __cancel_dirty_page EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work EXPORT_SYMBOL vmlinux 0xa86ef32c md_write_start EXPORT_SYMBOL vmlinux 0xa882d5de pci_alloc_dev -EXPORT_SYMBOL vmlinux 0xa885bb63 sock_create -EXPORT_SYMBOL vmlinux 0xa88fa1d5 pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0xa8b9961a __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0xa8bb7b6d __sock_create -EXPORT_SYMBOL vmlinux 0xa8c4f2d6 inet_protos +EXPORT_SYMBOL vmlinux 0xa8a3bbdf dev_remove_pack +EXPORT_SYMBOL vmlinux 0xa8b3574c __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0xa8e3fe19 radix_tree_tag_clear EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa9107da0 skb_copy_header +EXPORT_SYMBOL vmlinux 0xa9120376 security_inode_listsecurity EXPORT_SYMBOL vmlinux 0xa91f048c blkdev_issue_write_same EXPORT_SYMBOL vmlinux 0xa92c9f8d __traceiter_s390_cio_tsch EXPORT_SYMBOL vmlinux 0xa9392430 xa_clear_mark -EXPORT_SYMBOL vmlinux 0xa9473404 dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0xa950f4d0 fs_param_is_s32 EXPORT_SYMBOL vmlinux 0xa95c4dc1 proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa96e7056 filemap_fault EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa97cc015 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xa978c798 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0xa97a2ee8 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0xa9868eb2 __dev_get_by_name EXPORT_SYMBOL vmlinux 0xa98a143a single_open_size +EXPORT_SYMBOL vmlinux 0xa9940302 __netif_napi_del EXPORT_SYMBOL vmlinux 0xa9a0c997 param_get_ullong +EXPORT_SYMBOL vmlinux 0xa9a58522 __xfrm_init_state EXPORT_SYMBOL vmlinux 0xa9ac8ee1 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xa9b50faf dev_mc_del +EXPORT_SYMBOL vmlinux 0xa9b7c8da generic_ro_fops +EXPORT_SYMBOL vmlinux 0xa9b98b88 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xa9c7b1b5 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xa9e7edac inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xa9f94651 blk_get_request EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol EXPORT_SYMBOL vmlinux 0xaa1c6624 raw3270_request_reset EXPORT_SYMBOL vmlinux 0xaa1e246a xxh32_update EXPORT_SYMBOL vmlinux 0xaa2f5b74 elevator_alloc EXPORT_SYMBOL vmlinux 0xaa41ca5a dma_free_attrs +EXPORT_SYMBOL vmlinux 0xaa5234a9 __block_write_full_page +EXPORT_SYMBOL vmlinux 0xaa52d2d8 file_ns_capable EXPORT_SYMBOL vmlinux 0xaa53b33c gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0xaa54e0bf xfrm_trans_queue EXPORT_SYMBOL vmlinux 0xaa5c9395 dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0xaa6d702b udp_gro_receive +EXPORT_SYMBOL vmlinux 0xaa79cca9 xfrm_register_type EXPORT_SYMBOL vmlinux 0xaa7a1f77 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0xaa8db13c __kfree_skb +EXPORT_SYMBOL vmlinux 0xaa917d7f tcp_seq_next EXPORT_SYMBOL vmlinux 0xaa96dae0 dma_set_coherent_mask EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaaa5271b blk_queue_io_min EXPORT_SYMBOL vmlinux 0xaaa66739 ap_wait_init_apqn_bindings_complete -EXPORT_SYMBOL vmlinux 0xaaa7e97c netdev_name_node_alt_destroy EXPORT_SYMBOL vmlinux 0xaac94233 request_firmware_into_buf EXPORT_SYMBOL vmlinux 0xaacfeec0 pci_pme_capable EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function -EXPORT_SYMBOL vmlinux 0xaae802cd scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xaae9c252 register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0xaaf5734e dma_resv_reserve_shared EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab0bfb6b vfs_rmdir -EXPORT_SYMBOL vmlinux 0xab2cd544 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xab1147d0 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xab215910 __getblk_gfp EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3a0c57 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xab40c2d1 jbd2_journal_revoke EXPORT_SYMBOL vmlinux 0xab46c289 __SCK__tp_func_s390_cio_hsch EXPORT_SYMBOL vmlinux 0xab5fb93c mpage_readpage EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin -EXPORT_SYMBOL vmlinux 0xab75cc1f nf_register_sockopt EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7cc365 netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0xab874ec3 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0xab87f965 qdisc_hash_del EXPORT_SYMBOL vmlinux 0xab946b9a md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xabc43403 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xab9ad779 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xabbff03d __f_setown EXPORT_SYMBOL vmlinux 0xabcc4642 blk_queue_io_opt EXPORT_SYMBOL vmlinux 0xabe1431b trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xabe22692 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xabe3a261 udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabf5fad5 tcf_action_exec -EXPORT_SYMBOL vmlinux 0xac04debd ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0xac07fe50 xp_dma_sync_for_device_slow EXPORT_SYMBOL vmlinux 0xac13fdce dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xac13feaf sock_common_getsockopt EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac292d88 flow_rule_alloc EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd EXPORT_SYMBOL vmlinux 0xac37111f pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xac393922 skb_checksum_setup EXPORT_SYMBOL vmlinux 0xac526235 page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0xac5c2396 __d_lookup_done EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac656288 fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0xac7933ec sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xac81ccb2 unregister_filesystem EXPORT_SYMBOL vmlinux 0xaca0aef0 complete EXPORT_SYMBOL vmlinux 0xaca29223 dm_table_event EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacac7ae1 vfs_fadvise -EXPORT_SYMBOL vmlinux 0xacad3ccf device_get_mac_address -EXPORT_SYMBOL vmlinux 0xacbc02dc netlink_ack EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info @@ -5855,470 +5863,454 @@ EXPORT_SYMBOL vmlinux 0xad299b78 ioremap_wc EXPORT_SYMBOL vmlinux 0xad364f3c cdrom_number_of_slots EXPORT_SYMBOL vmlinux 0xad4aee39 strncpy EXPORT_SYMBOL vmlinux 0xad52e541 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xad588f2e skb_split EXPORT_SYMBOL vmlinux 0xad6c3f78 dqstats EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad8026d9 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xad81192c jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xad773d8c nlmsg_notify +EXPORT_SYMBOL vmlinux 0xad7cb7df eth_mac_addr +EXPORT_SYMBOL vmlinux 0xad83c76d vfs_rename EXPORT_SYMBOL vmlinux 0xad8bccad param_set_ulong -EXPORT_SYMBOL vmlinux 0xad94c054 crypto_sha1_update EXPORT_SYMBOL vmlinux 0xada09ad2 dfltcc_can_inflate -EXPORT_SYMBOL vmlinux 0xadae0630 dst_release EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadb23a73 ip6_frag_next EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed EXPORT_SYMBOL vmlinux 0xadd912a4 __d_drop -EXPORT_SYMBOL vmlinux 0xaddeb5c0 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0xade58b94 jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae002111 inet_frag_kill EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc EXPORT_SYMBOL vmlinux 0xae06002a kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xae0f7355 pskb_extract EXPORT_SYMBOL vmlinux 0xae1384dd pci_iounmap -EXPORT_SYMBOL vmlinux 0xae1e8d5b delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xae172566 dcb_ieee_setapp EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae6104aa netdev_notice -EXPORT_SYMBOL vmlinux 0xae682894 security_sock_graft -EXPORT_SYMBOL vmlinux 0xae6f6571 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xae6fbc91 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xae3936f7 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xae39a588 skb_mac_gso_segment EXPORT_SYMBOL vmlinux 0xae7789ad md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xae801159 call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0xae843798 ap_queue_message EXPORT_SYMBOL vmlinux 0xae8cb570 pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0xae941c9b xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xaea479d3 scsi_remove_device EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid EXPORT_SYMBOL vmlinux 0xaebdf85f refcount_dec_and_lock_irqsave EXPORT_SYMBOL vmlinux 0xaecb197b proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xaedbb777 nf_setsockopt EXPORT_SYMBOL vmlinux 0xaeee6136 debug_set_level EXPORT_SYMBOL vmlinux 0xaf016c67 get_tree_keyed -EXPORT_SYMBOL vmlinux 0xaf18a9ed jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xaf2d6149 sock_register +EXPORT_SYMBOL vmlinux 0xaf02a509 eth_header_parse +EXPORT_SYMBOL vmlinux 0xaf1c93b0 __skb_checksum_complete EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf49cf51 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xaf58ccd9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xaf8672fc __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xaf879511 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xaf9d1b83 neigh_table_init EXPORT_SYMBOL vmlinux 0xafe34f0d blk_mq_queue_stopped EXPORT_SYMBOL vmlinux 0xafe82e10 strcspn -EXPORT_SYMBOL vmlinux 0xaff8d355 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xb00518c5 kernel_read +EXPORT_SYMBOL vmlinux 0xb018acfd security_task_getsecid_subj EXPORT_SYMBOL vmlinux 0xb018f10f md_check_recovery EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq EXPORT_SYMBOL vmlinux 0xb0377cf1 blk_queue_chunk_sectors EXPORT_SYMBOL vmlinux 0xb0443902 kill_block_super EXPORT_SYMBOL vmlinux 0xb04b764b pci_get_subsys -EXPORT_SYMBOL vmlinux 0xb04b9b85 __scsi_device_lookup EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats +EXPORT_SYMBOL vmlinux 0xb05dd661 __cpuhp_remove_state_cpuslocked EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max EXPORT_SYMBOL vmlinux 0xb06598dc register_sysctl -EXPORT_SYMBOL vmlinux 0xb06fb1b5 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xb077ce88 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0xb0796164 read_cache_pages -EXPORT_SYMBOL vmlinux 0xb08bd7a0 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xb072930a ip_getsockopt EXPORT_SYMBOL vmlinux 0xb0b9f6c1 scsi_partsize -EXPORT_SYMBOL vmlinux 0xb0c5be39 write_dirty_buffer EXPORT_SYMBOL vmlinux 0xb0cf1384 add_watch_to_object EXPORT_SYMBOL vmlinux 0xb0d9f519 always_delete_dentry EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e3a549 find_get_pages_range_tag EXPORT_SYMBOL vmlinux 0xb0eda7e7 iucv_path_sever -EXPORT_SYMBOL vmlinux 0xb100579e eth_validate_addr EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare EXPORT_SYMBOL vmlinux 0xb1176e59 try_wait_for_completion EXPORT_SYMBOL vmlinux 0xb1203bb8 ap_perms -EXPORT_SYMBOL vmlinux 0xb12c5547 kernel_getpeername EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb12dc72a tcf_block_put +EXPORT_SYMBOL vmlinux 0xb136943d seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0xb13b69dc filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb158f2f3 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work +EXPORT_SYMBOL vmlinux 0xb159833d kern_path_create +EXPORT_SYMBOL vmlinux 0xb16a92a8 netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0xb16c78f9 param_set_ushort -EXPORT_SYMBOL vmlinux 0xb178e244 set_bh_page +EXPORT_SYMBOL vmlinux 0xb16cf83b gnet_stats_copy_rate_est EXPORT_SYMBOL vmlinux 0xb1874eb6 tty_check_change -EXPORT_SYMBOL vmlinux 0xb18e4258 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0xb19fe64d sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0xb1b7494c md_check_no_bitmap EXPORT_SYMBOL vmlinux 0xb1c0e366 start_tty EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c65f1b security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xb1ce42a1 inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug -EXPORT_SYMBOL vmlinux 0xb1d8cf00 tcp_rcv_established EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e4f51a release_pages EXPORT_SYMBOL vmlinux 0xb1e8126c down_timeout EXPORT_SYMBOL vmlinux 0xb1ee6a30 blk_mq_complete_request EXPORT_SYMBOL vmlinux 0xb1f945dd is_bad_inode EXPORT_SYMBOL vmlinux 0xb2024f7e kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0xb20624c8 dev_change_carrier -EXPORT_SYMBOL vmlinux 0xb2154977 tcp_peek_len EXPORT_SYMBOL vmlinux 0xb2240f46 sb_min_blocksize EXPORT_SYMBOL vmlinux 0xb227134c padata_alloc_shell EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb2494c5d tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xb23ba40d filemap_fdatawrite EXPORT_SYMBOL vmlinux 0xb24fa993 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xb256f2e9 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xb2633585 dump_align EXPORT_SYMBOL vmlinux 0xb2667863 iov_iter_get_pages EXPORT_SYMBOL vmlinux 0xb280facc pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xb2853b42 inode_io_list_del +EXPORT_SYMBOL vmlinux 0xb290733e scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xb2a7d96d reuseport_has_conns_set EXPORT_SYMBOL vmlinux 0xb2b0d772 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0xb2d69649 kfree_skb_list -EXPORT_SYMBOL vmlinux 0xb2d83172 dev_change_proto_down_reason +EXPORT_SYMBOL vmlinux 0xb2b46849 alloc_fcdev EXPORT_SYMBOL vmlinux 0xb2db7c35 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xb2efc49f sock_set_keepalive +EXPORT_SYMBOL vmlinux 0xb2def0c2 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xb2eef7b9 netpoll_print_options EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 -EXPORT_SYMBOL vmlinux 0xb3259826 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0xb3408a27 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0xb3408ffb sk_mc_loop -EXPORT_SYMBOL vmlinux 0xb3497c06 may_umount_tree -EXPORT_SYMBOL vmlinux 0xb34dd214 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xb34c95fa __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0xb35a44a9 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xb35cb78c napi_consume_skb EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb37787df logfc +EXPORT_SYMBOL vmlinux 0xb3705a05 _dev_printk EXPORT_SYMBOL vmlinux 0xb37b248e debug_register_mode EXPORT_SYMBOL vmlinux 0xb381ff9e ida_destroy EXPORT_SYMBOL vmlinux 0xb38beebf sync_file_get_fence EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0xb3c9f654 inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string EXPORT_SYMBOL vmlinux 0xb3ed0740 set_disk_ro -EXPORT_SYMBOL vmlinux 0xb3f4473e netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop EXPORT_SYMBOL vmlinux 0xb3ff1f69 free_pages_exact -EXPORT_SYMBOL vmlinux 0xb4210cfc __skb_ext_del EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked EXPORT_SYMBOL vmlinux 0xb4265fdf param_set_long EXPORT_SYMBOL vmlinux 0xb440e27c deactivate_locked_super EXPORT_SYMBOL vmlinux 0xb44746e1 pmdp_xchg_lazy -EXPORT_SYMBOL vmlinux 0xb450ed59 scsi_remove_host -EXPORT_SYMBOL vmlinux 0xb48324a5 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0xb48af7bf tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xb48cce26 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xb44d6eed ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xb45b4856 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xb4685ea0 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xb46ae72b inet_sendpage +EXPORT_SYMBOL vmlinux 0xb48185fb __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xb48afc8e locks_free_lock EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb4932baa flow_block_cb_priv EXPORT_SYMBOL vmlinux 0xb49c699d dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0xb4a64863 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xb4a8633c xfrm6_protocol_register EXPORT_SYMBOL vmlinux 0xb4e12171 pcie_port_service_unregister EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4feb89c udp_prot EXPORT_SYMBOL vmlinux 0xb50cc9cb ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xb5331cf9 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xb51ae881 inode_add_bytes EXPORT_SYMBOL vmlinux 0xb534f61f __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xb53b26c9 jbd2_journal_clear_features EXPORT_SYMBOL vmlinux 0xb56589eb pci_bus_read_dev_vendor_id EXPORT_SYMBOL vmlinux 0xb5704ced simple_release_fs EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink EXPORT_SYMBOL vmlinux 0xb57c184b blk_cleanup_disk EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb58eed3b nf_ip_checksum EXPORT_SYMBOL vmlinux 0xb596e30b __nla_reserve_64bit EXPORT_SYMBOL vmlinux 0xb5a19a0b csum_and_copy_from_iter EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a5a31d netdev_refcnt_read EXPORT_SYMBOL vmlinux 0xb5a6749b blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0xb5a7d049 xfrm6_protocol_register EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5ba7bad rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0xb5d3119d _atomic_dec_and_lock EXPORT_SYMBOL vmlinux 0xb5dae55d bio_split -EXPORT_SYMBOL vmlinux 0xb5dd999e kernel_connect EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5f1c1c2 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xb62531a1 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0xb62a53dc jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xb62d7f94 __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0xb6308446 __load_fpu_regs EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb64a147f mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0xb6653aaf km_query +EXPORT_SYMBOL vmlinux 0xb648c921 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xb65bc959 jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor +EXPORT_SYMBOL vmlinux 0xb67dace7 __zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6846114 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xb685d064 writeback_inodes_sb_nr EXPORT_SYMBOL vmlinux 0xb68a5cd4 blk_mq_run_hw_queues EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6aadb9f dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xb6ae6c28 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0xb6b8be92 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0xb6ba645e flush_signals EXPORT_SYMBOL vmlinux 0xb6c4f74e pci_msix_vec_count EXPORT_SYMBOL vmlinux 0xb6e1abc6 unregister_cdrom EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6eeaa62 eth_gro_complete EXPORT_SYMBOL vmlinux 0xb6f4dbfc ___ratelimit EXPORT_SYMBOL vmlinux 0xb6fbeefe xxh64 EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd EXPORT_SYMBOL vmlinux 0xb709b08a pci_find_resource EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb726b022 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xb71f60ba xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xb722be08 sk_ns_capable EXPORT_SYMBOL vmlinux 0xb748f971 dma_resv_add_shared_fence EXPORT_SYMBOL vmlinux 0xb74a1ceb t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xb74d315f inet_frags_fini EXPORT_SYMBOL vmlinux 0xb78700c3 kstrtou8_from_user EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb79a75aa kern_unmount EXPORT_SYMBOL vmlinux 0xb7a1ecd1 kbd_ioctl -EXPORT_SYMBOL vmlinux 0xb7a77fca tc_setup_cb_add EXPORT_SYMBOL vmlinux 0xb7af31db page_pool_put_page_bulk EXPORT_SYMBOL vmlinux 0xb7b507ea utf8nlen +EXPORT_SYMBOL vmlinux 0xb7b68c9d scsi_get_host_dev EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7ecbc70 eth_type_trans +EXPORT_SYMBOL vmlinux 0xb7e43cf9 netdev_err EXPORT_SYMBOL vmlinux 0xb7ee2a2c diag26c +EXPORT_SYMBOL vmlinux 0xb7efdc85 lookup_one_positive_unlocked EXPORT_SYMBOL vmlinux 0xb7fdc703 md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xb8074ce2 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0xb820a9b2 security_dentry_init_security EXPORT_SYMBOL vmlinux 0xb824f869 sync_file_create EXPORT_SYMBOL vmlinux 0xb827d331 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0xb83bb344 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xb84ff277 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xb8550488 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xb860f423 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xb8656a32 xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb86c5795 open_with_fake_path -EXPORT_SYMBOL vmlinux 0xb88abf73 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0xb89b4434 inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse EXPORT_SYMBOL vmlinux 0xb89f8e92 blk_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0xb8a13ef9 input_open_device -EXPORT_SYMBOL vmlinux 0xb8a9d301 udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link EXPORT_SYMBOL vmlinux 0xb8c5733c pci_map_rom +EXPORT_SYMBOL vmlinux 0xb8d7caf7 sk_free EXPORT_SYMBOL vmlinux 0xb8d7e41f dqput EXPORT_SYMBOL vmlinux 0xb8e97783 proc_douintvec -EXPORT_SYMBOL vmlinux 0xb8f75653 unlock_page +EXPORT_SYMBOL vmlinux 0xb8f0849d tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xb900cec7 tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max EXPORT_SYMBOL vmlinux 0xb915ceca itcw_init EXPORT_SYMBOL vmlinux 0xb928aa45 netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xb9290fa2 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0xb92dbd3d neigh_table_clear EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb94ad60f sock_efree EXPORT_SYMBOL vmlinux 0xb94f4d5d __kmalloc_node_track_caller EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb9785d68 tcp_req_err EXPORT_SYMBOL vmlinux 0xb97a1256 inode_needs_sync -EXPORT_SYMBOL vmlinux 0xb9ba7942 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xb9a2fff5 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xb9c8e7c6 __skb_checksum EXPORT_SYMBOL vmlinux 0xb9df5c0d ZSTD_nextSrcSizeToDecompress +EXPORT_SYMBOL vmlinux 0xb9e1450b jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters EXPORT_SYMBOL vmlinux 0xb9ee6380 get_ccwdev_by_busid -EXPORT_SYMBOL vmlinux 0xb9f0e9e4 account_page_redirty -EXPORT_SYMBOL vmlinux 0xb9f531cd __pagevec_release +EXPORT_SYMBOL vmlinux 0xba034e4c lease_get_mtime EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat EXPORT_SYMBOL vmlinux 0xba09ba01 vm_event_states EXPORT_SYMBOL vmlinux 0xba111d03 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xba2cf8a1 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xba28978c xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0xba435c3e dcache_dir_close EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba5ce1bc flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xba542b86 xfrm6_input_addr EXPORT_SYMBOL vmlinux 0xba687203 devm_memunmap -EXPORT_SYMBOL vmlinux 0xba6f0288 km_state_expired -EXPORT_SYMBOL vmlinux 0xba80245f mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xba6ecc87 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xbaa15593 tcp_stream_memory_free EXPORT_SYMBOL vmlinux 0xbaa1e161 dma_resv_init -EXPORT_SYMBOL vmlinux 0xbaaed910 default_llseek EXPORT_SYMBOL vmlinux 0xbab50628 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xbabda051 vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0xbaccf17b tcp_read_sock EXPORT_SYMBOL vmlinux 0xbad5fd0e ccw_device_dma_free +EXPORT_SYMBOL vmlinux 0xbaddafc7 flow_rule_match_ipv4_addrs EXPORT_SYMBOL vmlinux 0xbaecaa76 bio_devname +EXPORT_SYMBOL vmlinux 0xbaeec3a2 tcf_idrinfo_destroy EXPORT_SYMBOL vmlinux 0xbaef18a3 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xbaff05a8 neigh_seq_stop EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb128e1a vlan_vids_del_by_dev EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb345902 __find_get_block EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb3ba825 sock_set_sndtimeo EXPORT_SYMBOL vmlinux 0xbb489345 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xbb53d7f3 sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0xbb5934be __wake_up_bit -EXPORT_SYMBOL vmlinux 0xbb8cf99e nf_getsockopt +EXPORT_SYMBOL vmlinux 0xbb8d2c4a wait_on_page_private_2 +EXPORT_SYMBOL vmlinux 0xbb90f471 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0xbb91bc4b blk_integrity_unregister EXPORT_SYMBOL vmlinux 0xbb9d0dc5 bin2hex -EXPORT_SYMBOL vmlinux 0xbba91453 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xbbb4a361 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0xbbdc9a43 module_refcount -EXPORT_SYMBOL vmlinux 0xbc09bbe7 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0xbc107920 inet_recvmsg -EXPORT_SYMBOL vmlinux 0xbc180afc inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xbc624086 key_link -EXPORT_SYMBOL vmlinux 0xbc69d3b6 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xbba09c34 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xbbd71f1e page_readlink +EXPORT_SYMBOL vmlinux 0xbbd98ac3 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xbc099054 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xbc250064 end_page_private_2 +EXPORT_SYMBOL vmlinux 0xbc2a77ee __scsi_add_device +EXPORT_SYMBOL vmlinux 0xbc375128 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xbc38c1c9 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xbc48a99f genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xbc6cbc4f try_to_writeback_inodes_sb EXPORT_SYMBOL vmlinux 0xbc76641a __SCK__tp_func_s390_cio_ssch EXPORT_SYMBOL vmlinux 0xbc79da34 kobject_set_name +EXPORT_SYMBOL vmlinux 0xbc9b1baa __xfrm_policy_check EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcd8a781 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0xbce326d2 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0xbcea5c66 netif_rx_any_context -EXPORT_SYMBOL vmlinux 0xbd0781ed inet6_bind +EXPORT_SYMBOL vmlinux 0xbcb36257 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xbccc7e9c netdev_name_node_alt_destroy +EXPORT_SYMBOL vmlinux 0xbcd2a819 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xbd00836c xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0xbd136d49 dma_resv_fini -EXPORT_SYMBOL vmlinux 0xbd16a7a5 inet_shutdown -EXPORT_SYMBOL vmlinux 0xbd26dea5 tcp_setsockopt EXPORT_SYMBOL vmlinux 0xbd4c6a9b pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xbd532392 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xbd5bc72e dev_add_offload EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xbdc60d23 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xbd692b97 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xbd749493 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xbd9717b3 blk_put_request +EXPORT_SYMBOL vmlinux 0xbda47fec jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0xbdd59231 d_instantiate_new -EXPORT_SYMBOL vmlinux 0xbdf05b56 netlink_set_err -EXPORT_SYMBOL vmlinux 0xbe0b38fa tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0xbe1047e7 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xbdeb6503 xp_dma_sync_for_device_slow EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe38f8fb flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xbe358200 reuseport_detach_prog EXPORT_SYMBOL vmlinux 0xbe3b3cfa hmm_range_fault -EXPORT_SYMBOL vmlinux 0xbe48aee0 iterate_fd -EXPORT_SYMBOL vmlinux 0xbe4b6f04 tcf_idr_release EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe6f2a5f jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0xbe8651ef xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xbe89c8c7 netdev_printk EXPORT_SYMBOL vmlinux 0xbea28ca3 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0xbebf180e sync_dirty_buffer EXPORT_SYMBOL vmlinux 0xbec19dfe dquot_destroy EXPORT_SYMBOL vmlinux 0xbef2b256 copy_page_from_iter_atomic EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbef53f33 scnprintf -EXPORT_SYMBOL vmlinux 0xbef750bc tcp_child_process -EXPORT_SYMBOL vmlinux 0xbf192b49 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xbf357c88 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xbf0e3781 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xbf19e7df nf_register_net_hook EXPORT_SYMBOL vmlinux 0xbf49aafa percpu_counter_set EXPORT_SYMBOL vmlinux 0xbf4a0acf copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xbf560280 mark_buffer_dirty EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf6f9344 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xbf7737ff scm_detach_fds -EXPORT_SYMBOL vmlinux 0xbf77f48f netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xbf7a79a3 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xbf8cbe48 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xbf5df613 consume_skb +EXPORT_SYMBOL vmlinux 0xbf6974d2 __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0xbf9a5a1e __init_rwsem -EXPORT_SYMBOL vmlinux 0xbf9b2bc7 vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa67a50 netlink_ack EXPORT_SYMBOL vmlinux 0xbfaec767 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xbfc1090c scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xbfcac9f7 sock_wmalloc EXPORT_SYMBOL vmlinux 0xbfd5aa0a unpin_user_page_range_dirty_lock EXPORT_SYMBOL vmlinux 0xbfd9f046 remove_wait_queue EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbfff9d54 __lock_sock_fast EXPORT_SYMBOL vmlinux 0xc0116868 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xc026efeb generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0xc036908e md_unregister_thread EXPORT_SYMBOL vmlinux 0xc0661c8a path_has_submounts EXPORT_SYMBOL vmlinux 0xc06f0724 ZSTD_initDCtx EXPORT_SYMBOL vmlinux 0xc06fa7e0 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xc0757928 migrate_page_states EXPORT_SYMBOL vmlinux 0xc075a1ba n_tty_ioctl_helper EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc07ea331 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xc07ec001 _dev_warn EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 EXPORT_SYMBOL vmlinux 0xc0bfb9d4 VMALLOC_END EXPORT_SYMBOL vmlinux 0xc0c48f15 seq_release +EXPORT_SYMBOL vmlinux 0xc0dec65b __skb_free_datagram_locked EXPORT_SYMBOL vmlinux 0xc0e19543 lowcore_ptr EXPORT_SYMBOL vmlinux 0xc0e5e4e6 itcw_get_tcw -EXPORT_SYMBOL vmlinux 0xc0e99b7a generic_write_end EXPORT_SYMBOL vmlinux 0xc0fd237c xxh32 EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor EXPORT_SYMBOL vmlinux 0xc10a31f5 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xc10c92e9 gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0xc11e4c56 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xc11f878a flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0xc120caa6 diag_stat_inc -EXPORT_SYMBOL vmlinux 0xc12197e4 vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0xc12c07d8 setattr_should_drop_suidgid EXPORT_SYMBOL vmlinux 0xc133171b fscrypt_ioctl_set_policy EXPORT_SYMBOL vmlinux 0xc1369e69 zpool_unregister_driver EXPORT_SYMBOL vmlinux 0xc1394dbd mod_virt_timer_periodic -EXPORT_SYMBOL vmlinux 0xc13ac453 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xc14eff09 inet_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc151e291 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xc1630cbe ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0xc1550db7 qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc167e8c5 reuseport_detach_prog EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc19ebb48 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xc18b7bce done_path_create +EXPORT_SYMBOL vmlinux 0xc1a1687d xp_alloc EXPORT_SYMBOL vmlinux 0xc1b112c9 input_flush_device -EXPORT_SYMBOL vmlinux 0xc1b87928 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xc1bcda97 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xc1c715de alloc_pages EXPORT_SYMBOL vmlinux 0xc1c8f8be raw3270_activate_view -EXPORT_SYMBOL vmlinux 0xc1d184ca vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0xc1d19319 skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed -EXPORT_SYMBOL vmlinux 0xc1d646f9 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xc1d746eb __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e7a9d6 dev_set_group EXPORT_SYMBOL vmlinux 0xc212f2ab prandom_bytes EXPORT_SYMBOL vmlinux 0xc220cd5a configfs_register_subsystem EXPORT_SYMBOL vmlinux 0xc2211cb4 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xc23305cf dst_cow_metrics_generic EXPORT_SYMBOL vmlinux 0xc23bcada pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xc2432769 send_sig_mceerr EXPORT_SYMBOL vmlinux 0xc250590f strnlen_user -EXPORT_SYMBOL vmlinux 0xc250e79c km_policy_notify -EXPORT_SYMBOL vmlinux 0xc27e652e register_qdisc EXPORT_SYMBOL vmlinux 0xc27ee138 __SCK__tp_func_s390_cio_stsch EXPORT_SYMBOL vmlinux 0xc29a1878 abort_creds -EXPORT_SYMBOL vmlinux 0xc29cbbdf __pskb_pull_tail EXPORT_SYMBOL vmlinux 0xc2a720c3 generic_file_fsync -EXPORT_SYMBOL vmlinux 0xc2d78349 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xc2b549a3 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xc2dd70da block_write_full_page EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2e6d397 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xc2eef920 flow_rule_match_basic EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc3249bf2 tcp_getsockopt EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xc32eb3e3 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xc34a7404 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xc3636c6b tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0xc36ac0a0 security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0xc376f735 sock_rfree EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer EXPORT_SYMBOL vmlinux 0xc3a667d2 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xc3e3da22 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xc3cf44e3 sock_rfree +EXPORT_SYMBOL vmlinux 0xc3cf5a7f xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xc3de5af1 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xc3dea49f security_sb_mnt_opts_compat EXPORT_SYMBOL vmlinux 0xc3e45457 down_killable -EXPORT_SYMBOL vmlinux 0xc3ec9d79 put_fs_context -EXPORT_SYMBOL vmlinux 0xc40a34da vif_device_init -EXPORT_SYMBOL vmlinux 0xc40d09cc vlan_for_each +EXPORT_SYMBOL vmlinux 0xc4085120 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xc40ea728 fs_context_for_submount EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc431191a napi_schedule_prep -EXPORT_SYMBOL vmlinux 0xc443e26b add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xc424cf54 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xc458d5ad flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0xc458e159 tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0xc45eed06 __free_pages -EXPORT_SYMBOL vmlinux 0xc4681936 generic_block_bmap EXPORT_SYMBOL vmlinux 0xc468c056 __cleancache_put_page EXPORT_SYMBOL vmlinux 0xc46a63d4 cpumask_next -EXPORT_SYMBOL vmlinux 0xc46a713a jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xc46d80b8 no_llseek EXPORT_SYMBOL vmlinux 0xc46e9322 simple_rename -EXPORT_SYMBOL vmlinux 0xc4708206 lookup_one_len_unlocked EXPORT_SYMBOL vmlinux 0xc475471a raw3270_del_view EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc4a73da3 dentry_open +EXPORT_SYMBOL vmlinux 0xc4aba670 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xc4b15d0e scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0xc4b7235e tty_do_resize -EXPORT_SYMBOL vmlinux 0xc4c37c24 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xc4ceb544 devm_register_netdev +EXPORT_SYMBOL vmlinux 0xc4d5e2ed dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xc4e73366 ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0xc4fc7679 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xc50ea249 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xc51a486e sk_common_release EXPORT_SYMBOL vmlinux 0xc54561ed truncate_pagecache +EXPORT_SYMBOL vmlinux 0xc54f3734 unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0xc57b41f2 ZSTD_decompress_usingDict EXPORT_SYMBOL vmlinux 0xc57b8611 diag210 EXPORT_SYMBOL vmlinux 0xc584820c pci_alloc_irq_vectors_affinity EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59ad28d xfrm4_udp_encap_rcv EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xc5abcf77 neigh_parms_release EXPORT_SYMBOL vmlinux 0xc5abdb79 register_mii_timestamper EXPORT_SYMBOL vmlinux 0xc5ad93b8 sie_exit EXPORT_SYMBOL vmlinux 0xc5adb3f7 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xc5af3977 lru_cache_add EXPORT_SYMBOL vmlinux 0xc5b0d06f lockref_put_return EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5c226e5 udp_seq_stop +EXPORT_SYMBOL vmlinux 0xc5bf4af6 __neigh_create EXPORT_SYMBOL vmlinux 0xc5c8b56c raw_copy_to_user -EXPORT_SYMBOL vmlinux 0xc5d4a7d8 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xc5cc715e init_task +EXPORT_SYMBOL vmlinux 0xc5d61b81 gnet_stats_copy_basic_hw EXPORT_SYMBOL vmlinux 0xc5e0b142 vm_map_ram EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5f7abff scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xc5eebb17 prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last EXPORT_SYMBOL vmlinux 0xc60b140b sg_alloc_table_from_pages_segment EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc619cb0e prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xc61bacde __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0xc61d4009 jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0xc622ea97 stsi EXPORT_SYMBOL vmlinux 0xc62ab2bc mempool_destroy EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc640792a generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xc645462f shmem_aops EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc667e9ae cont_write_begin +EXPORT_SYMBOL vmlinux 0xc6681377 tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add EXPORT_SYMBOL vmlinux 0xc66eeca9 configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xc67d49ae ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xc672d6ff scsi_done +EXPORT_SYMBOL vmlinux 0xc6a02069 tcp_sock_set_keepidle EXPORT_SYMBOL vmlinux 0xc6abfdb1 seq_escape_mem +EXPORT_SYMBOL vmlinux 0xc6b1dd1a vfs_get_fsid EXPORT_SYMBOL vmlinux 0xc6c62554 scsicam_bios_param EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable EXPORT_SYMBOL vmlinux 0xc6cfe208 iget_failed +EXPORT_SYMBOL vmlinux 0xc6d7c778 scsi_report_bus_reset EXPORT_SYMBOL vmlinux 0xc6e31d02 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xc6ee873d xp_can_alloc 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 0xc71b5fe1 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xc7442938 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xc74b85fb dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0xc75e44e4 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xc7397437 tcp_seq_stop EXPORT_SYMBOL vmlinux 0xc7635b37 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xc77ec5b3 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xc7691df3 sock_set_priority +EXPORT_SYMBOL vmlinux 0xc76a96e4 security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc790fd26 skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0xc79f207e revert_creds EXPORT_SYMBOL vmlinux 0xc7a24d76 sysfs_format_mac EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock @@ -6326,59 +6318,48 @@ EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group EXPORT_SYMBOL vmlinux 0xc7d2cf1a kstrtoul_from_user EXPORT_SYMBOL vmlinux 0xc8106878 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0xc8163293 file_path -EXPORT_SYMBOL vmlinux 0xc832e89f ip_frag_next -EXPORT_SYMBOL vmlinux 0xc836e009 xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0xc841bcba input_free_device EXPORT_SYMBOL vmlinux 0xc8468349 _copy_from_iter_nocache EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu EXPORT_SYMBOL vmlinux 0xc84f6868 pci_get_domain_bus_and_slot EXPORT_SYMBOL vmlinux 0xc84fddf6 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0xc85898e1 console_start +EXPORT_SYMBOL vmlinux 0xc866a088 filemap_fdatawait_keep_errors EXPORT_SYMBOL vmlinux 0xc86773cf param_get_long EXPORT_SYMBOL vmlinux 0xc86a6174 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xc86de7c6 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc87345ae qdisc_watchdog_init EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd EXPORT_SYMBOL vmlinux 0xc8949980 sg_miter_next -EXPORT_SYMBOL vmlinux 0xc8a083f2 tso_build_data -EXPORT_SYMBOL vmlinux 0xc8a212fe tcf_exts_validate EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8c6681b netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xc8d24bcf free_netdev EXPORT_SYMBOL vmlinux 0xc8ea6622 generic_read_dir -EXPORT_SYMBOL vmlinux 0xc9016bc0 ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0xc908f076 xattr_supported_namespace EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc EXPORT_SYMBOL vmlinux 0xc921e1b8 inode_insert5 -EXPORT_SYMBOL vmlinux 0xc9258568 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xc92764c5 __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc937a59d inode_io_list_del EXPORT_SYMBOL vmlinux 0xc93f6a68 ccw_device_dma_zalloc EXPORT_SYMBOL vmlinux 0xc94fdebf __genradix_ptr -EXPORT_SYMBOL vmlinux 0xc96037b2 vm_insert_page +EXPORT_SYMBOL vmlinux 0xc95fe630 vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc977ad62 scsi_scan_host EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc9856522 dev_get_stats -EXPORT_SYMBOL vmlinux 0xc9afdd7d kmem_cache_size +EXPORT_SYMBOL vmlinux 0xc99302f9 cont_write_begin +EXPORT_SYMBOL vmlinux 0xc997835e sk_stop_timer EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e3045b vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xc9f23b7a dns_query +EXPORT_SYMBOL vmlinux 0xc9f304cd peernet2id EXPORT_SYMBOL vmlinux 0xc9f40780 pci_write_config_word -EXPORT_SYMBOL vmlinux 0xc9f85d2b __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0xca0a80c4 xp_free -EXPORT_SYMBOL vmlinux 0xca0f98d4 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xc9fd9a55 tcp_getsockopt EXPORT_SYMBOL vmlinux 0xca12e784 fput +EXPORT_SYMBOL vmlinux 0xca205cb3 seg6_hmac_info_add EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca290a98 jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0xca3534d1 sock_release +EXPORT_SYMBOL vmlinux 0xca23bc17 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xca37b273 sock_no_recvmsg EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca4df20a inet_csk_prepare_forced_close EXPORT_SYMBOL vmlinux 0xca5262ad component_match_add_release +EXPORT_SYMBOL vmlinux 0xca5921e9 ether_setup +EXPORT_SYMBOL vmlinux 0xca9272cf netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcaa0fcb5 migrate_page_move_mapping EXPORT_SYMBOL vmlinux 0xcac61cf4 seq_putc EXPORT_SYMBOL vmlinux 0xcae3a07a sg_copy_from_buffer EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain @@ -6386,787 +6367,800 @@ EXPORT_SYMBOL vmlinux 0xcb196b9d __vcalloc 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 0xcb4cf1a6 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0xcb5523c6 xsk_set_tx_need_wakeup EXPORT_SYMBOL vmlinux 0xcb5c7f1e dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0xcb61b275 class3270 -EXPORT_SYMBOL vmlinux 0xcb8923d3 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xcb6fd6c5 xfrm_state_update EXPORT_SYMBOL vmlinux 0xcba6550b __SCK__tp_func_s390_cio_xsch -EXPORT_SYMBOL vmlinux 0xcbaf5d80 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xcbbfb61f udp_seq_start EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbe549a3 tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0xcc2d8b17 kthread_create_worker EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc430be3 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xcc3b7993 tcp_child_process EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc53375e __netdev_notify_peers EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc713859 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0xcc74b55b blk_sync_queue -EXPORT_SYMBOL vmlinux 0xcca4fe10 user_path_create -EXPORT_SYMBOL vmlinux 0xccb43fe8 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xccaa8d17 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xccab6aba sock_i_ino EXPORT_SYMBOL vmlinux 0xccb491e8 bsearch -EXPORT_SYMBOL vmlinux 0xccbaef90 locks_init_lock +EXPORT_SYMBOL vmlinux 0xccc14209 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xccc5742d udp_poll +EXPORT_SYMBOL vmlinux 0xccc7a756 mr_dump EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start EXPORT_SYMBOL vmlinux 0xcce560c1 stop_tty -EXPORT_SYMBOL vmlinux 0xcceadd50 sock_no_sendpage EXPORT_SYMBOL vmlinux 0xccf11b68 iget_locked EXPORT_SYMBOL vmlinux 0xccf1f15d clear_bdi_congested +EXPORT_SYMBOL vmlinux 0xccfa1780 ip_sock_set_pktinfo EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xcd0596d5 __dynamic_ibdev_dbg EXPORT_SYMBOL vmlinux 0xcd0c29d2 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xcd13a755 would_dump EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed EXPORT_SYMBOL vmlinux 0xcd279169 nla_find EXPORT_SYMBOL vmlinux 0xcd37d97a dquot_quota_off -EXPORT_SYMBOL vmlinux 0xcd66c800 block_write_full_page +EXPORT_SYMBOL vmlinux 0xcd53d494 skb_push +EXPORT_SYMBOL vmlinux 0xcd56d791 __inet_hash EXPORT_SYMBOL vmlinux 0xcd8a4f8b t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xcd8c2c06 kernel_recvmsg EXPORT_SYMBOL vmlinux 0xcda786c5 __seq_open_private -EXPORT_SYMBOL vmlinux 0xcdac8b85 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xcdb274af scsi_host_busy EXPORT_SYMBOL vmlinux 0xcdc0db30 set_bdi_congested -EXPORT_SYMBOL vmlinux 0xcdc33715 dev_set_threaded EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc5a51d xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xcdc454f5 tso_build_data +EXPORT_SYMBOL vmlinux 0xcdc94181 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xcdd4aa23 inet_bind EXPORT_SYMBOL vmlinux 0xcddcf320 dma_mmap_attrs EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdea8208 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xcdf28404 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xce008eec pfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0xce0c1f34 dfltcc_deflate EXPORT_SYMBOL vmlinux 0xce118ac8 simple_rmdir +EXPORT_SYMBOL vmlinux 0xce19242b path_is_mountpoint EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce36b842 skb_expand_head EXPORT_SYMBOL vmlinux 0xce42f1ce hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xce49cb53 generic_fillattr EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce5439a5 path_get EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce6513a4 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xce6d97b1 dev_set_alias -EXPORT_SYMBOL vmlinux 0xce6e2fc4 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xce75bd8c ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xce8ab8f5 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xce615820 fwnode_irq_get EXPORT_SYMBOL vmlinux 0xce8b41eb mem_section -EXPORT_SYMBOL vmlinux 0xce94809c vfs_unlink -EXPORT_SYMBOL vmlinux 0xce9d97b3 __neigh_for_each_release EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceac82e5 dev_disable_lro EXPORT_SYMBOL vmlinux 0xcec04ca2 dquot_acquire EXPORT_SYMBOL vmlinux 0xcecde247 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xceefed98 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xceecf24a security_socket_socketpair EXPORT_SYMBOL vmlinux 0xcf10493a md_reload_sb -EXPORT_SYMBOL vmlinux 0xcf16f20b xfrm_state_delete EXPORT_SYMBOL vmlinux 0xcf180c35 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xcf2189ad grab_cache_page_write_begin EXPORT_SYMBOL vmlinux 0xcf38ec97 dm_table_get_size +EXPORT_SYMBOL vmlinux 0xcf3c8d02 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xcf470e45 netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0xcf488ae9 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xcf4903f5 netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0xcf5a5cb0 devm_request_resource -EXPORT_SYMBOL vmlinux 0xcf60f5fe block_truncate_page EXPORT_SYMBOL vmlinux 0xcf64b0d5 raw3270_request_free +EXPORT_SYMBOL vmlinux 0xcf70b0fa filemap_flush EXPORT_SYMBOL vmlinux 0xcf8f3b49 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xcf9b0a97 sk_wait_data EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfaa00ba gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xcfc733ef __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xd0140d83 km_state_notify +EXPORT_SYMBOL vmlinux 0xcfc3fabd stream_open +EXPORT_SYMBOL vmlinux 0xcfcb233e __ip_select_ident EXPORT_SYMBOL vmlinux 0xd0174c4a debug_sprintf_view -EXPORT_SYMBOL vmlinux 0xd01de92f tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xd02cea37 flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0xd034ea80 config_item_put +EXPORT_SYMBOL vmlinux 0xd04ba2fc __bread_gfp EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd064a7a5 tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd08bba56 mntget -EXPORT_SYMBOL vmlinux 0xd091f122 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xd09a07ba neigh_destroy EXPORT_SYMBOL vmlinux 0xd09d6809 page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0xd0a6adb3 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xd09e38ca vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0xd0a77bdd bioset_init EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock -EXPORT_SYMBOL vmlinux 0xd0c8dda8 ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0xd1055514 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xd0b8a419 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xd0f7db35 vfs_fsync EXPORT_SYMBOL vmlinux 0xd10a700c md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xd11839fb __ip_options_compile +EXPORT_SYMBOL vmlinux 0xd10d4da5 __dev_set_mtu EXPORT_SYMBOL vmlinux 0xd11aaafc tty_port_free_xmit_buf EXPORT_SYMBOL vmlinux 0xd11bac17 check_zeroed_user EXPORT_SYMBOL vmlinux 0xd133136a ns_capable -EXPORT_SYMBOL vmlinux 0xd142b9d7 sk_ns_capable -EXPORT_SYMBOL vmlinux 0xd1634a94 linkwatch_fire_event EXPORT_SYMBOL vmlinux 0xd164be8e tty_driver_flush_buffer EXPORT_SYMBOL vmlinux 0xd1667911 pci_iomap_range -EXPORT_SYMBOL vmlinux 0xd17b99ca udp6_set_csum +EXPORT_SYMBOL vmlinux 0xd1677787 xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0xd17de455 __kernel_fpu_begin EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough EXPORT_SYMBOL vmlinux 0xd187b791 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0xd18d03ed xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xd19246c8 xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0xd19bf18b inode_init_once -EXPORT_SYMBOL vmlinux 0xd1b289ed scm_fp_dup EXPORT_SYMBOL vmlinux 0xd1b4b419 tcw_get_intrg -EXPORT_SYMBOL vmlinux 0xd1d12d19 unix_attach_fds EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string EXPORT_SYMBOL vmlinux 0xd1dcda0b set_security_override -EXPORT_SYMBOL vmlinux 0xd1fb81bb security_inode_init_security +EXPORT_SYMBOL vmlinux 0xd1de562f put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xd1eae7e3 sync_filesystem EXPORT_SYMBOL vmlinux 0xd209e848 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0xd219d7c9 __fib6_flush_trees EXPORT_SYMBOL vmlinux 0xd2260096 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0xd24e0bdd dev_activate +EXPORT_SYMBOL vmlinux 0xd2351250 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xd2447e9f inet6_register_protosw EXPORT_SYMBOL vmlinux 0xd2504a8c arch_spin_lock_wait EXPORT_SYMBOL vmlinux 0xd2510a63 up_write EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd26d0675 __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd28148ef alloc_pages_vma EXPORT_SYMBOL vmlinux 0xd29ab094 d_alloc -EXPORT_SYMBOL vmlinux 0xd2a733a5 dev_get_iflink -EXPORT_SYMBOL vmlinux 0xd2aeea60 blk_get_queue -EXPORT_SYMBOL vmlinux 0xd2baa5e0 security_path_mkdir -EXPORT_SYMBOL vmlinux 0xd2c6f059 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xd2c9f13a load_nls -EXPORT_SYMBOL vmlinux 0xd2d54607 lru_cache_add +EXPORT_SYMBOL vmlinux 0xd2a25ea8 submit_bio +EXPORT_SYMBOL vmlinux 0xd2c558e7 nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2dac78c jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xd2ee6289 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xd2ee7db5 tcf_register_action EXPORT_SYMBOL vmlinux 0xd2f13af5 dquot_commit_info -EXPORT_SYMBOL vmlinux 0xd2f46166 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xd30a39ec tcp_shutdown -EXPORT_SYMBOL vmlinux 0xd336d895 sock_efree EXPORT_SYMBOL vmlinux 0xd338b5d2 dm_kcopyd_zero EXPORT_SYMBOL vmlinux 0xd339cee5 page_pool_put_page +EXPORT_SYMBOL vmlinux 0xd3484888 wait_on_page_bit EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key EXPORT_SYMBOL vmlinux 0xd3544a91 pci_reenable_device EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc EXPORT_SYMBOL vmlinux 0xd35e3b8b __register_nls -EXPORT_SYMBOL vmlinux 0xd36d6908 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xd36454bd nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xd36a2756 __set_page_dirty_buffers EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd37f0770 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xd391c25b __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xd39e34a5 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xd37b696f flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xd3979e35 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xd397c6f2 udp_seq_ops +EXPORT_SYMBOL vmlinux 0xd3a531d8 dst_init EXPORT_SYMBOL vmlinux 0xd3af979c memdup_user EXPORT_SYMBOL vmlinux 0xd3b228a7 regset_get EXPORT_SYMBOL vmlinux 0xd3b2f420 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xd3c85714 fqdir_init EXPORT_SYMBOL vmlinux 0xd3cf1c01 down_write EXPORT_SYMBOL vmlinux 0xd3db9037 fb_set_var EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd3ecd796 fs_context_for_submount EXPORT_SYMBOL vmlinux 0xd3f060ec cdrom_open -EXPORT_SYMBOL vmlinux 0xd3f4dbeb inet_add_offload EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd407edef skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xd40b7b2d vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xd41dbbaa security_sock_graft +EXPORT_SYMBOL vmlinux 0xd4425df7 security_path_unlink EXPORT_SYMBOL vmlinux 0xd443e5e6 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xd45bded4 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xd47f5a3d jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xd48a8def tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0xd48f69c8 tcw_get_tsb +EXPORT_SYMBOL vmlinux 0xd4935383 skb_copy_bits EXPORT_SYMBOL vmlinux 0xd4952cc0 cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0xd4998e68 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xd4b036a8 __skb_vlan_pop EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4d7bc2d __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xd4f09dc6 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xd4e1565d dev_pick_tx_cpu_id EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare EXPORT_SYMBOL vmlinux 0xd5078166 blk_mq_start_stopped_hw_queues EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd52641f1 udp_set_csum +EXPORT_SYMBOL vmlinux 0xd52fb02c disk_end_io_acct EXPORT_SYMBOL vmlinux 0xd534c56d pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0xd5379bd0 init_net EXPORT_SYMBOL vmlinux 0xd5473b08 kill_anon_super EXPORT_SYMBOL vmlinux 0xd566933c up -EXPORT_SYMBOL vmlinux 0xd56ca7b7 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xd57179fd __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xd5702b94 sock_no_getname EXPORT_SYMBOL vmlinux 0xd57673bb deactivate_super +EXPORT_SYMBOL vmlinux 0xd57fba0e ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0xd588ebe0 elv_bio_merge_ok EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise +EXPORT_SYMBOL vmlinux 0xd591b34b no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xd5a32f78 netlink_capable EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state EXPORT_SYMBOL vmlinux 0xd5c5717b find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0xd5c9341e mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0xd5d010c7 console_stop EXPORT_SYMBOL vmlinux 0xd5e22dc1 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xd5e3ffad vfs_rmdir EXPORT_SYMBOL vmlinux 0xd5e90454 ap_domain_index -EXPORT_SYMBOL vmlinux 0xd5fbdcac scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xd60048a3 end_page_writeback +EXPORT_SYMBOL vmlinux 0xd602b55c keyring_clear EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd60e28a8 page_symlink +EXPORT_SYMBOL vmlinux 0xd61cfeae __dst_destroy_metrics_generic EXPORT_SYMBOL vmlinux 0xd62f2cae pci_setup_cardbus EXPORT_SYMBOL vmlinux 0xd64426b5 __traceiter_s390_cio_hsch -EXPORT_SYMBOL vmlinux 0xd6575836 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xd646a2d6 scsi_report_opcode EXPORT_SYMBOL vmlinux 0xd65c1597 unregister_mii_timestamper EXPORT_SYMBOL vmlinux 0xd668c2bd fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xd66fff2a tcp_mtup_init -EXPORT_SYMBOL vmlinux 0xd686dfff __block_write_begin EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd691d911 tcp_md5_do_del EXPORT_SYMBOL vmlinux 0xd69b3c98 utf8_strncasecmp EXPORT_SYMBOL vmlinux 0xd69bf355 devm_request_threaded_irq EXPORT_SYMBOL vmlinux 0xd69d2788 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xd6ad5b97 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xd69dd6e7 __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0xd6d911b2 seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0xd6e1695a ccw_device_tm_start_key -EXPORT_SYMBOL vmlinux 0xd6e6a10f tcp_fastopen_defer_connect EXPORT_SYMBOL vmlinux 0xd6e72174 scsi_bios_ptable EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd71c8e5b xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0xd7217625 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xd73e6a98 bdi_set_max_ratio EXPORT_SYMBOL vmlinux 0xd74d6864 raw3270_request_add_data +EXPORT_SYMBOL vmlinux 0xd74d6bca inet6_offloads EXPORT_SYMBOL vmlinux 0xd74fb5c1 rdmacg_try_charge EXPORT_SYMBOL vmlinux 0xd754a172 del_gendisk EXPORT_SYMBOL vmlinux 0xd75dd226 cdev_set_parent -EXPORT_SYMBOL vmlinux 0xd7790c68 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xd76f66c0 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xd78b4b2b vfs_readlink EXPORT_SYMBOL vmlinux 0xd78f0771 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xd7a4d742 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xd7a9ea8f tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xd7d017c0 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xd78f8e96 kernel_connect +EXPORT_SYMBOL vmlinux 0xd7912ec9 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xd7ce6b70 __lock_page EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d317c2 kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0xd7e1c5e1 kstrtobool_from_user EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e99ce8 __ip_dev_find EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f0fa64 dump_align -EXPORT_SYMBOL vmlinux 0xd8134f7b xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xd81d0209 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xd80046a8 gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0xd827fff3 memremap +EXPORT_SYMBOL vmlinux 0xd8358c9a flow_block_cb_priv EXPORT_SYMBOL vmlinux 0xd83849e2 ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0xd8813fb3 unlock_rename +EXPORT_SYMBOL vmlinux 0xd84cf272 _dev_notice +EXPORT_SYMBOL vmlinux 0xd8862bb6 sk_mc_loop EXPORT_SYMBOL vmlinux 0xd88d6805 input_match_device_id EXPORT_SYMBOL vmlinux 0xd88dbbf4 refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0xd8900030 napi_schedule_prep EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone EXPORT_SYMBOL vmlinux 0xd89e513a tty_port_hangup EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8add422 inet6_csk_route_req EXPORT_SYMBOL vmlinux 0xd8adf0af mpage_writepage EXPORT_SYMBOL vmlinux 0xd8b3bd7b pci_enable_msix_range EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8b960e4 scmd_printk -EXPORT_SYMBOL vmlinux 0xd8ceb6c0 dev_set_promiscuity EXPORT_SYMBOL vmlinux 0xd8ed7319 seq_read_iter -EXPORT_SYMBOL vmlinux 0xd8f3f8d9 dev_get_mac_address EXPORT_SYMBOL vmlinux 0xd8fcb790 pci_bus_read_config_byte EXPORT_SYMBOL vmlinux 0xd8fcda72 cpcmd EXPORT_SYMBOL vmlinux 0xd8fea321 __xa_alloc_cyclic EXPORT_SYMBOL vmlinux 0xd93dd3c3 proc_dointvec -EXPORT_SYMBOL vmlinux 0xd9435d6b security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xd93fe339 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xd9412ea5 netlink_net_capable EXPORT_SYMBOL vmlinux 0xd9454bbc raw3270_reset EXPORT_SYMBOL vmlinux 0xd9573abc pci_select_bars -EXPORT_SYMBOL vmlinux 0xd95c9d97 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xd95f7bda xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xd960d4d2 filemap_map_pages EXPORT_SYMBOL vmlinux 0xd9662661 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xd966fbce netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0xd96de8cb __sysfs_match_string EXPORT_SYMBOL vmlinux 0xd972b66e dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xd9817987 __put_page EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98e9c06 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0xd9928561 skb_push +EXPORT_SYMBOL vmlinux 0xd98f3125 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xd9af7809 km_report EXPORT_SYMBOL vmlinux 0xd9b3f97d console_devno EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9beac4d skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xd9d6d5da netif_device_attach EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xda159575 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xda22809c __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0xda27ada7 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xd9e1b355 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xd9eb14b3 __sock_i_ino +EXPORT_SYMBOL vmlinux 0xda1fed52 scsi_device_put EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open EXPORT_SYMBOL vmlinux 0xda584d85 cdev_device_add -EXPORT_SYMBOL vmlinux 0xda65fc14 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xda5e7ac6 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0xda64cc6b __get_hash_from_flowi6 EXPORT_SYMBOL vmlinux 0xda6fa05c _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xda727061 netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0xda729d26 bio_add_pc_page EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve +EXPORT_SYMBOL vmlinux 0xda8ac1d2 inet_recvmsg EXPORT_SYMBOL vmlinux 0xdaa49232 seq_hex_dump -EXPORT_SYMBOL vmlinux 0xdaad85fa __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xdac2f32a tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xdabaeba0 seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad93a5e inet_listen EXPORT_SYMBOL vmlinux 0xdae162cb string_unescape -EXPORT_SYMBOL vmlinux 0xdae39848 skb_trim -EXPORT_SYMBOL vmlinux 0xdaee6d75 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xdafba2dd skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0xdb0210ed put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0xdb16f6eb icmp6_send -EXPORT_SYMBOL vmlinux 0xdb2ee44a seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xdb2c7aed unlock_buffer EXPORT_SYMBOL vmlinux 0xdb35f444 md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0xdb3a4640 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xdb377f13 file_check_and_advance_wb_err EXPORT_SYMBOL vmlinux 0xdb53981b ccw_device_start_timeout_key -EXPORT_SYMBOL vmlinux 0xdb6f4444 xsk_tx_completed EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb7cffd1 blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0xdb7de56b ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xdb8b9367 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xdb810ea9 read_cache_pages EXPORT_SYMBOL vmlinux 0xdb8e483f tty_unthrottle -EXPORT_SYMBOL vmlinux 0xdb90e417 unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xdb91a090 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xdb925ed6 crypto_sha512_update EXPORT_SYMBOL vmlinux 0xdb987ffc dquot_get_state +EXPORT_SYMBOL vmlinux 0xdb9c500e scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xdba60c92 netpoll_send_udp EXPORT_SYMBOL vmlinux 0xdbac0a41 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xdbc0816b dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0xdbcfe338 input_get_poll_interval EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbe59611 __put_page EXPORT_SYMBOL vmlinux 0xdbe67730 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xdc069fc8 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems EXPORT_SYMBOL vmlinux 0xdc39c8c0 dma_unmap_sg_attrs EXPORT_SYMBOL vmlinux 0xdc3b39c5 kbd_free EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc41ec76 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xdc4253b5 netif_schedule_queue EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv EXPORT_SYMBOL vmlinux 0xdc4fbe8e dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xdc543bd7 blk_get_request EXPORT_SYMBOL vmlinux 0xdc5b700f pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0xdc765253 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0xdc8b430d get_task_cred +EXPORT_SYMBOL vmlinux 0xdc5da49e jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xdc5e177c flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xdc78d0fe dev_driver_string EXPORT_SYMBOL vmlinux 0xdc96f398 __SCK__tp_func_s390_cio_csch -EXPORT_SYMBOL vmlinux 0xdc97c251 sk_stream_error +EXPORT_SYMBOL vmlinux 0xdc9d6106 skb_queue_head EXPORT_SYMBOL vmlinux 0xdcaace61 fs_param_is_u64 EXPORT_SYMBOL vmlinux 0xdcc409bc fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0xdcd7ed87 vfs_create +EXPORT_SYMBOL vmlinux 0xdcc5a710 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xdce4d6b5 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xdce66e1e ip_options_compile EXPORT_SYMBOL vmlinux 0xdcee6131 __next_node_in EXPORT_SYMBOL vmlinux 0xdcfe1ef0 iov_iter_init EXPORT_SYMBOL vmlinux 0xdd010113 __mod_node_page_state -EXPORT_SYMBOL vmlinux 0xdd250ccf mr_dump +EXPORT_SYMBOL vmlinux 0xdd17b320 set_create_files_as EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd3c4fa7 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0xdd5853b4 xsk_tx_release -EXPORT_SYMBOL vmlinux 0xdd5d4cc0 set_user_nice +EXPORT_SYMBOL vmlinux 0xdd4859b0 block_write_begin +EXPORT_SYMBOL vmlinux 0xdd5122fb open_exec EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld EXPORT_SYMBOL vmlinux 0xdd99653e bio_free_pages EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat -EXPORT_SYMBOL vmlinux 0xde06012c __scm_send +EXPORT_SYMBOL vmlinux 0xddc94196 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0xddcadaa3 nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0xde0bdcff memset EXPORT_SYMBOL vmlinux 0xde1371ce radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xde1b0d23 ip_getsockopt EXPORT_SYMBOL vmlinux 0xde2b4086 param_get_int -EXPORT_SYMBOL vmlinux 0xde2f1481 jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0xde405cd3 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xde4458a8 udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0xde50659a generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xde5d7725 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xde59f568 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xde623eda jbd2_journal_inode_ranged_wait EXPORT_SYMBOL vmlinux 0xde63216a seq_vprintf +EXPORT_SYMBOL vmlinux 0xde6621dc __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xde7ca276 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xde82583d kmem_cache_destroy EXPORT_SYMBOL vmlinux 0xde8a415c xor_block_xc -EXPORT_SYMBOL vmlinux 0xde8c2b1d tcp_init_sock -EXPORT_SYMBOL vmlinux 0xdeb2bf1a _dev_alert +EXPORT_SYMBOL vmlinux 0xde9598b0 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0xde972646 security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0xdebb8a67 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xdecf0017 ip_defrag +EXPORT_SYMBOL vmlinux 0xdec1a40a devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator EXPORT_SYMBOL vmlinux 0xdeda2ae2 tcw_get_data -EXPORT_SYMBOL vmlinux 0xdedcd62f __bforget -EXPORT_SYMBOL vmlinux 0xdee2d7c6 inet_stream_connect EXPORT_SYMBOL vmlinux 0xdee93fff dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xdeee2e81 reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode EXPORT_SYMBOL vmlinux 0xdef84f9f radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xdefe25b3 nf_log_register EXPORT_SYMBOL vmlinux 0xdf0439b0 input_set_abs_params EXPORT_SYMBOL vmlinux 0xdf0c82d6 sg_miter_start EXPORT_SYMBOL vmlinux 0xdf0cf5c5 seq_open_private -EXPORT_SYMBOL vmlinux 0xdf289ab6 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xdf20ec48 skb_split EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf3cb12a filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0xdf3e8182 security_task_getsecid_subj -EXPORT_SYMBOL vmlinux 0xdf3eae3d __check_sticky +EXPORT_SYMBOL vmlinux 0xdf30df71 ipv6_push_frag_opts EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier EXPORT_SYMBOL vmlinux 0xdf6d476e __percpu_counter_init -EXPORT_SYMBOL vmlinux 0xdf7679a0 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xdf7c34ed dev_open EXPORT_SYMBOL vmlinux 0xdf7ce5ec ccw_device_set_online +EXPORT_SYMBOL vmlinux 0xdf806254 register_filesystem EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf8ec4ea netif_rx_ni EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies EXPORT_SYMBOL vmlinux 0xdfa9acca smp_cpu_mtid -EXPORT_SYMBOL vmlinux 0xdfad79d0 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xdfad03ce dev_mc_del +EXPORT_SYMBOL vmlinux 0xdfb4a66d __register_binfmt EXPORT_SYMBOL vmlinux 0xdfbb6678 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xdfbcf105 skb_checksum -EXPORT_SYMBOL vmlinux 0xdfbcf9f2 neigh_app_ns EXPORT_SYMBOL vmlinux 0xdfc4c3dd bdev_dax_pgoff EXPORT_SYMBOL vmlinux 0xdfcc992c current_work EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi +EXPORT_SYMBOL vmlinux 0xdfe2467d vfs_symlink EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe00d96ee __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xe00eb5b1 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0xe01be919 udp_seq_start -EXPORT_SYMBOL vmlinux 0xe02e57ca sock_no_getname -EXPORT_SYMBOL vmlinux 0xe033a345 netdev_update_features -EXPORT_SYMBOL vmlinux 0xe03e34b8 register_netdev +EXPORT_SYMBOL vmlinux 0xe012d9dd reuseport_alloc +EXPORT_SYMBOL vmlinux 0xe02741f7 open_with_fake_path +EXPORT_SYMBOL vmlinux 0xe028a3b8 tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 EXPORT_SYMBOL vmlinux 0xe043e345 get_guest_storage_key -EXPORT_SYMBOL vmlinux 0xe054eb68 finish_no_open -EXPORT_SYMBOL vmlinux 0xe05a4027 kernel_listen EXPORT_SYMBOL vmlinux 0xe068a91c gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0xe07acb64 security_skb_classify_flow EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe0863df9 udp6_csum_init EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0982d79 netdev_info EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start -EXPORT_SYMBOL vmlinux 0xe0a9bc13 key_unlink EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free EXPORT_SYMBOL vmlinux 0xe0b9c79c __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0xe0baa1fa tcf_get_next_chain EXPORT_SYMBOL vmlinux 0xe0bc4fb2 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xe0c2ac5c __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xe0cfc013 tcp_mmap -EXPORT_SYMBOL vmlinux 0xe0e7dacd redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xe103b13f jbd2_journal_forget EXPORT_SYMBOL vmlinux 0xe10595c9 __tracepoint_s390_cio_tpi -EXPORT_SYMBOL vmlinux 0xe1119152 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xe111d277 dst_release EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release EXPORT_SYMBOL vmlinux 0xe1281ff6 get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0xe13a529c simple_transaction_set EXPORT_SYMBOL vmlinux 0xe13af26f sclp_pci_deconfigure EXPORT_SYMBOL vmlinux 0xe1580129 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0xe196f8ae dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0xe1aaaa24 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xe19f38cf ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xe1af8858 dev_lstats_read EXPORT_SYMBOL vmlinux 0xe1bc4fe5 vfs_get_super EXPORT_SYMBOL vmlinux 0xe1c8e022 proc_create_single_data EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1e7d65c inet_addr_type EXPORT_SYMBOL vmlinux 0xe1f5802b __do_once_done -EXPORT_SYMBOL vmlinux 0xe1ff6dc7 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xe21f862b __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xe2335d60 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0xe24b3b68 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xe20cd522 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xe2325cec xfrm_state_insert EXPORT_SYMBOL vmlinux 0xe254f4f8 xa_get_mark -EXPORT_SYMBOL vmlinux 0xe25ca318 skb_seq_read +EXPORT_SYMBOL vmlinux 0xe2566739 pskb_extract +EXPORT_SYMBOL vmlinux 0xe25aef2b filemap_check_errors +EXPORT_SYMBOL vmlinux 0xe26fca33 vif_device_init +EXPORT_SYMBOL vmlinux 0xe26ffaf4 dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap EXPORT_SYMBOL vmlinux 0xe2740e56 ZSTD_getFrameContentSize EXPORT_SYMBOL vmlinux 0xe27d87a4 gen_pool_first_fit EXPORT_SYMBOL vmlinux 0xe28da80b tccb_add_dcw -EXPORT_SYMBOL vmlinux 0xe298e476 km_report EXPORT_SYMBOL vmlinux 0xe29d2d02 __genradix_ptr_alloc EXPORT_SYMBOL vmlinux 0xe2d0126d mod_node_page_state EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2f251c8 napi_get_frags +EXPORT_SYMBOL vmlinux 0xe2e3b288 netpoll_poll_enable EXPORT_SYMBOL vmlinux 0xe2fc59b3 seq_file_path +EXPORT_SYMBOL vmlinux 0xe30a07f8 dev_set_group EXPORT_SYMBOL vmlinux 0xe30be315 hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe31da57b jbd2_journal_inode_ranged_write EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe33b3004 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xe34c8be5 sock_init_data_uid -EXPORT_SYMBOL vmlinux 0xe359cadb fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0xe35c0652 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xe340e253 dev_trans_start EXPORT_SYMBOL vmlinux 0xe35fb609 kmemdup -EXPORT_SYMBOL vmlinux 0xe3665377 pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0xe3672aaf qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0xe38076b8 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xe3648552 write_inode_now +EXPORT_SYMBOL vmlinux 0xe37a4a0f kill_pgrp EXPORT_SYMBOL vmlinux 0xe387d3b1 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xe38a83be shmem_aops +EXPORT_SYMBOL vmlinux 0xe38c0b90 keyring_search EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3aae368 xp_dma_map -EXPORT_SYMBOL vmlinux 0xe3bd4ea8 ip6_xmit -EXPORT_SYMBOL vmlinux 0xe3e54355 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xe3a1b6df jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3f60a1e scsi_device_put EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 EXPORT_SYMBOL vmlinux 0xe4294610 loop_register_transfer EXPORT_SYMBOL vmlinux 0xe43d9ab2 slash_name +EXPORT_SYMBOL vmlinux 0xe44aeb7c netlink_broadcast_filtered EXPORT_SYMBOL vmlinux 0xe44e641a textsearch_unregister EXPORT_SYMBOL vmlinux 0xe45df83a blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xe47f606a fget +EXPORT_SYMBOL vmlinux 0xe46c0a52 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xe47ef53e dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0xe48e1b73 param_ops_byte -EXPORT_SYMBOL vmlinux 0xe4910353 lock_sock_nested -EXPORT_SYMBOL vmlinux 0xe4a1c34d inet_sendpage -EXPORT_SYMBOL vmlinux 0xe4a26180 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xe4a9d6d1 nf_setsockopt -EXPORT_SYMBOL vmlinux 0xe4c26b6b call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xe4a8a3a7 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xe4b865a1 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xe4bd251e ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0xe4df9aec hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xe4ef8d36 vfs_create EXPORT_SYMBOL vmlinux 0xe4f9fc0f mount_bdev EXPORT_SYMBOL vmlinux 0xe5094832 page_table_allocate_pgste EXPORT_SYMBOL vmlinux 0xe50e87a5 forget_cached_acl EXPORT_SYMBOL vmlinux 0xe522c1bb simple_fill_super EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq EXPORT_SYMBOL vmlinux 0xe524e3e2 bcmp -EXPORT_SYMBOL vmlinux 0xe52b7d9f no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xe534319d ip_frag_next EXPORT_SYMBOL vmlinux 0xe5368fc1 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe53806c3 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xe5462412 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xe5484cf8 vfs_mkobj +EXPORT_SYMBOL vmlinux 0xe551eda6 build_skb EXPORT_SYMBOL vmlinux 0xe555c7ab radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0xe5641807 kmem_cache_alloc EXPORT_SYMBOL vmlinux 0xe5652e83 sie64a EXPORT_SYMBOL vmlinux 0xe56b0d0f stsch -EXPORT_SYMBOL vmlinux 0xe5713063 qdisc_reset EXPORT_SYMBOL vmlinux 0xe572da5f simple_write_begin -EXPORT_SYMBOL vmlinux 0xe58063c5 jbd2_journal_check_used_features EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet EXPORT_SYMBOL vmlinux 0xe5885d3e dquot_get_dqblk EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe595e81e netif_carrier_on EXPORT_SYMBOL vmlinux 0xe5a304bd dquot_initialize EXPORT_SYMBOL vmlinux 0xe5a56ecd idr_get_next -EXPORT_SYMBOL vmlinux 0xe5c3eec9 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xe5aaa92e skb_free_datagram EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5d49023 reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0xe5e134e6 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xe5dac8b9 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xe5e1830e cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0xe5ea6124 ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0xe5f13648 tcp_rcv_state_process EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe61dab7d xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0xe640cc89 netif_receive_skb +EXPORT_SYMBOL vmlinux 0xe63b8ca7 generic_writepages EXPORT_SYMBOL vmlinux 0xe6482feb __put_user_ns EXPORT_SYMBOL vmlinux 0xe64ff3f4 seq_dentry EXPORT_SYMBOL vmlinux 0xe662a55d simple_dentry_operations EXPORT_SYMBOL vmlinux 0xe665ec68 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xe69c13df read_cache_page_gfp EXPORT_SYMBOL vmlinux 0xe69d8126 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0xe6a1cca9 netif_rx EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack EXPORT_SYMBOL vmlinux 0xe6f1486d dql_reset +EXPORT_SYMBOL vmlinux 0xe6f84f51 sock_create_lite +EXPORT_SYMBOL vmlinux 0xe6fd7a78 unix_get_socket EXPORT_SYMBOL vmlinux 0xe704e76d bio_endio EXPORT_SYMBOL vmlinux 0xe70e184a xa_store EXPORT_SYMBOL vmlinux 0xe713a97a irq_subclass_unregister -EXPORT_SYMBOL vmlinux 0xe720bcdc block_read_full_page EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe76b119c xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xe73b3d0e tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xe7536048 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xe76caa3b nf_log_unset EXPORT_SYMBOL vmlinux 0xe76d7ccf pci_release_region +EXPORT_SYMBOL vmlinux 0xe7773141 skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0xe777e808 sclp_ap_configure -EXPORT_SYMBOL vmlinux 0xe7782874 pipe_lock EXPORT_SYMBOL vmlinux 0xe796f19a hdmi_audio_infoframe_pack EXPORT_SYMBOL vmlinux 0xe798236d jiffies EXPORT_SYMBOL vmlinux 0xe7a99d3f padata_do_serial -EXPORT_SYMBOL vmlinux 0xe7aea7db netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xe7b52ef0 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xe7ac5f47 nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0xe7c23666 kset_register -EXPORT_SYMBOL vmlinux 0xe7ca204d may_umount EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7ed19eb skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xe823b810 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xe7e2e18e end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xe7e474a9 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0xe8050deb jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xe81d5131 xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0xe8332b4b __tracepoint_s390_cio_stsch +EXPORT_SYMBOL vmlinux 0xe8390a84 fiemap_prep EXPORT_SYMBOL vmlinux 0xe8397778 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xe8433d3d netdev_emerg +EXPORT_SYMBOL vmlinux 0xe870223a fifo_create_dflt EXPORT_SYMBOL vmlinux 0xe871e236 pci_get_slot EXPORT_SYMBOL vmlinux 0xe87bab27 dget_parent +EXPORT_SYMBOL vmlinux 0xe88a3308 __fib6_flush_trees EXPORT_SYMBOL vmlinux 0xe8ad1a39 debug_dflt_header_fn EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get EXPORT_SYMBOL vmlinux 0xe8ba125d kmemdup_nul +EXPORT_SYMBOL vmlinux 0xe8ca1446 generic_file_readonly_mmap EXPORT_SYMBOL vmlinux 0xe8e32f76 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0xe8e70d48 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xe8e88e2c xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0xe9020709 trace_seq_hex_dump EXPORT_SYMBOL vmlinux 0xe907ba00 dquot_get_next_dqblk EXPORT_SYMBOL vmlinux 0xe90daeea tty_register_driver EXPORT_SYMBOL vmlinux 0xe914e41e strcpy EXPORT_SYMBOL vmlinux 0xe916ee74 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xe91b0d2f netdev_notice EXPORT_SYMBOL vmlinux 0xe947b2f0 __tracepoint_s390_cio_xsch EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe9704e50 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0xe973a224 filp_open EXPORT_SYMBOL vmlinux 0xe97d07f1 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xe984aa29 skb_clone_sk EXPORT_SYMBOL vmlinux 0xe98e1478 jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0xe991135f blk_rq_init +EXPORT_SYMBOL vmlinux 0xe9927823 kern_path EXPORT_SYMBOL vmlinux 0xe994130a __xa_store EXPORT_SYMBOL vmlinux 0xe995eee3 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xe9aae6ad mr_mfc_find_parent EXPORT_SYMBOL vmlinux 0xe9b9afbc d_set_d_op +EXPORT_SYMBOL vmlinux 0xe9c39bb4 ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0xe9c58a09 tcw_finalize EXPORT_SYMBOL vmlinux 0xe9cb4469 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xe9eb82ca nf_log_trace EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize EXPORT_SYMBOL vmlinux 0xe9fcb616 mempool_alloc EXPORT_SYMBOL vmlinux 0xea01b5fd remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xea0ce533 submit_bh EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea4a1bca file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0xea6885a6 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xea4e21ba qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xea56c6db ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xea579b45 arp_xmit EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea80956b jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0xea872313 find_next_bit_inv -EXPORT_SYMBOL vmlinux 0xea97d7f5 vfs_getattr EXPORT_SYMBOL vmlinux 0xeab1886a padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xeac66912 sock_sendmsg -EXPORT_SYMBOL vmlinux 0xead0dbdd __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xeabab053 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xeacf3648 sdev_prefix_printk EXPORT_SYMBOL vmlinux 0xead58fb9 print_hex_dump +EXPORT_SYMBOL vmlinux 0xeadb419d sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xeaeb0bf0 scsi_add_device EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeb16db98 scsi_host_lookup EXPORT_SYMBOL vmlinux 0xeb1ae2a9 md_write_end -EXPORT_SYMBOL vmlinux 0xeb24707d netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xeb2ccc2e scsi_eh_prep_cmnd EXPORT_SYMBOL vmlinux 0xeb2df9c3 cleancache_register_ops EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb4c5124 get_fs_type -EXPORT_SYMBOL vmlinux 0xeb546293 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xeb3a2b4d generic_file_read_iter EXPORT_SYMBOL vmlinux 0xeb61ab31 misc_deregister +EXPORT_SYMBOL vmlinux 0xeb6414be dev_get_by_index EXPORT_SYMBOL vmlinux 0xeb75268e md_finish_reshape EXPORT_SYMBOL vmlinux 0xeb786161 pci_dev_get -EXPORT_SYMBOL vmlinux 0xeb8ef116 xfrm_init_replay 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 0xeba16ca3 block_read_full_page EXPORT_SYMBOL vmlinux 0xeba87991 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xebba152f genl_notify EXPORT_SYMBOL vmlinux 0xebbf1dba strncasecmp -EXPORT_SYMBOL vmlinux 0xebc4993b generic_write_checks +EXPORT_SYMBOL vmlinux 0xebca362c kernel_listen EXPORT_SYMBOL vmlinux 0xebcb8bdc kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xebd10f21 netdev_printk EXPORT_SYMBOL vmlinux 0xebeb20ea __nla_put -EXPORT_SYMBOL vmlinux 0xebfc6a0f scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xebf60c81 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xec01825d path_get +EXPORT_SYMBOL vmlinux 0xec28edb6 iptun_encaps EXPORT_SYMBOL vmlinux 0xec374166 dquot_quota_on_mount EXPORT_SYMBOL vmlinux 0xec3c4034 configfs_register_group -EXPORT_SYMBOL vmlinux 0xec509005 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xec580563 nf_log_packet -EXPORT_SYMBOL vmlinux 0xec61357e nf_reinject -EXPORT_SYMBOL vmlinux 0xec8555a4 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xec4b10e4 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xec4cf7b6 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xec867dea udp_sendmsg +EXPORT_SYMBOL vmlinux 0xec8973ee netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0xec9d7c8a __traceiter_s390_diagnose EXPORT_SYMBOL vmlinux 0xecad330a fb_validate_mode -EXPORT_SYMBOL vmlinux 0xecb9dc3d security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xecbc1a1c tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xecbe2d2a km_query EXPORT_SYMBOL vmlinux 0xecde8f3e get_cached_acl EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecea4f11 set_binfmt -EXPORT_SYMBOL vmlinux 0xecf546a4 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xed0146b6 sock_no_linger +EXPORT_SYMBOL vmlinux 0xecf0cbca set_user_nice +EXPORT_SYMBOL vmlinux 0xed00ed31 xfrm4_rcv EXPORT_SYMBOL vmlinux 0xed1e09a9 sget_fc EXPORT_SYMBOL vmlinux 0xed20e95b dma_map_page_attrs EXPORT_SYMBOL vmlinux 0xed2ddcc4 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xed308ca7 netdev_name_node_alt_create EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock -EXPORT_SYMBOL vmlinux 0xed59c61e sock_no_connect +EXPORT_SYMBOL vmlinux 0xed5b712c netif_receive_skb EXPORT_SYMBOL vmlinux 0xed5d64c4 nla_put_64bit EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed888bf0 ip_local_deliver +EXPORT_SYMBOL vmlinux 0xed65ca42 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0xed791879 netif_rx EXPORT_SYMBOL vmlinux 0xed8c428b pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xed90cc18 tc_setup_cb_destroy EXPORT_SYMBOL vmlinux 0xed96b5b4 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xed97bac1 skb_copy EXPORT_SYMBOL vmlinux 0xeda797ab dma_map_resource EXPORT_SYMBOL vmlinux 0xedb9d6d8 fbcon_update_vcs EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc2f0d5 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xede04f77 __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0xee08cada iucv_message_purge EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee2e0d88 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xee497d21 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xee4cda63 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xee4d684a ip_generic_getfrag EXPORT_SYMBOL vmlinux 0xee4de4fb __traceiter_s390_cio_csch -EXPORT_SYMBOL vmlinux 0xee51f1ea skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xee4e5a89 filemap_range_has_page EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode EXPORT_SYMBOL vmlinux 0xee596ade cpu_rmap_update EXPORT_SYMBOL vmlinux 0xee6173ae load_nls_default -EXPORT_SYMBOL vmlinux 0xee6eaca6 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xee796407 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xee6bcc5a flow_rule_match_ct EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea99ce7 skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap EXPORT_SYMBOL vmlinux 0xeebf03c5 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xeecdc251 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xeed1740f inet_release EXPORT_SYMBOL vmlinux 0xeedff578 __traceiter_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xef164211 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xef1b503f __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xef1fd47b sock_init_data EXPORT_SYMBOL vmlinux 0xef45d32c __kfifo_init -EXPORT_SYMBOL vmlinux 0xef6c5ba8 __f_setown +EXPORT_SYMBOL vmlinux 0xef5c610b netdev_emerg +EXPORT_SYMBOL vmlinux 0xef62c778 nobh_write_begin +EXPORT_SYMBOL vmlinux 0xef85173d sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefc0b078 ip_defrag EXPORT_SYMBOL vmlinux 0xefc67050 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xefe76536 udp_lib_rehash EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit EXPORT_SYMBOL vmlinux 0xeff740bc pci_bus_add_devices EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf023deba sock_no_listen -EXPORT_SYMBOL vmlinux 0xf02b2cc8 dst_release_immediate -EXPORT_SYMBOL vmlinux 0xf035c906 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xf003cd6b end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xf01ce0c0 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xf05551e9 generic_write_end EXPORT_SYMBOL vmlinux 0xf05c64f8 iucv_path_connect +EXPORT_SYMBOL vmlinux 0xf05e1e7a netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xf05f0fae dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xf062e913 scsi_host_lookup EXPORT_SYMBOL vmlinux 0xf06482e0 atomic_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0xf06c3c10 param_get_short -EXPORT_SYMBOL vmlinux 0xf0852c97 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xf0932f28 __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xf09b5543 tso_build_hdr EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf09f8651 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xf0b23ee2 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xf0c496c1 filp_open -EXPORT_SYMBOL vmlinux 0xf0da9eae jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xf0b2ae2f f_setown EXPORT_SYMBOL vmlinux 0xf0ea2318 __mutex_init +EXPORT_SYMBOL vmlinux 0xf0eec6ef locks_delete_block +EXPORT_SYMBOL vmlinux 0xf0fa6cbd touch_buffer EXPORT_SYMBOL vmlinux 0xf0fbd2b7 call_usermodehelper_setup EXPORT_SYMBOL vmlinux 0xf0fc9aa8 sclp_cpi_set_data -EXPORT_SYMBOL vmlinux 0xf10ad24f udp_seq_ops EXPORT_SYMBOL vmlinux 0xf1146da1 pci_read_config_word EXPORT_SYMBOL vmlinux 0xf11ba053 __post_watch_notification EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf13da24a dev_addr_del -EXPORT_SYMBOL vmlinux 0xf13e6b8a xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xf11f3838 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xf1251008 skb_add_rx_frag EXPORT_SYMBOL vmlinux 0xf144794f pci_scan_bridge EXPORT_SYMBOL vmlinux 0xf14e2b25 md_bitmap_free -EXPORT_SYMBOL vmlinux 0xf14e6379 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xf15fdcd7 udp_seq_next +EXPORT_SYMBOL vmlinux 0xf155e5ee inet_sendmsg EXPORT_SYMBOL vmlinux 0xf1690224 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0xf1734eec dev_mc_flush EXPORT_SYMBOL vmlinux 0xf1808e2b call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xf187c2e5 register_netdevice EXPORT_SYMBOL vmlinux 0xf18cbd60 input_set_keycode EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies EXPORT_SYMBOL vmlinux 0xf19e7338 unregister_external_irq -EXPORT_SYMBOL vmlinux 0xf1ad1021 udp_poll EXPORT_SYMBOL vmlinux 0xf1adc6d2 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xf1b22de9 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xf1b35320 security_sk_classify_flow EXPORT_SYMBOL vmlinux 0xf1b96974 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xf1bd5da0 __cgroup_bpf_run_filter_skb 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 0xf1fe0aac ap_queue_init_reply -EXPORT_SYMBOL vmlinux 0xf2113d20 scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0xf21db033 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xf207f670 ip6_route_me_harder EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf245c95c ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0xf256ee19 vfs_llseek +EXPORT_SYMBOL vmlinux 0xf250cdd0 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0xf258142c radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xf2643ed1 __set_page_dirty_no_writeback EXPORT_SYMBOL vmlinux 0xf26e30cb pcie_get_speed_cap EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init EXPORT_SYMBOL vmlinux 0xf292770b param_get_bool -EXPORT_SYMBOL vmlinux 0xf29bf57e tcp_conn_request -EXPORT_SYMBOL vmlinux 0xf2aa0787 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xf29f739c nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xf2b83068 jbd2_journal_errno EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2ce67af fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts EXPORT_SYMBOL vmlinux 0xf2f62275 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xf2f952ac eth_get_headlen EXPORT_SYMBOL vmlinux 0xf2f9a8b0 param_set_uint EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf31332d2 dev_lstats_read EXPORT_SYMBOL vmlinux 0xf31c0d52 ioremap -EXPORT_SYMBOL vmlinux 0xf33a34b8 __neigh_create EXPORT_SYMBOL vmlinux 0xf33a9435 raw3270_request_alloc +EXPORT_SYMBOL vmlinux 0xf33c356e key_unlink EXPORT_SYMBOL vmlinux 0xf34490b1 radix_tree_iter_resume EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34f2524 devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0xf351e1df d_add_ci EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier EXPORT_SYMBOL vmlinux 0xf3540a41 import_single_range +EXPORT_SYMBOL vmlinux 0xf35a3769 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xf374351f __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused -EXPORT_SYMBOL vmlinux 0xf396ad9d module_layout -EXPORT_SYMBOL vmlinux 0xf39ec98a genl_register_family -EXPORT_SYMBOL vmlinux 0xf3a9b4ef tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xf396d6e3 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xf3b07e7e xp_dma_map EXPORT_SYMBOL vmlinux 0xf3b220a8 blk_integrity_compare EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest +EXPORT_SYMBOL vmlinux 0xf3b46c2f netdev_alert EXPORT_SYMBOL vmlinux 0xf3b74f79 __iucv_message_send -EXPORT_SYMBOL vmlinux 0xf3b8513f inet_get_local_port_range EXPORT_SYMBOL vmlinux 0xf3ca733b hdmi_drm_infoframe_pack EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3ed923c sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xf3f073fc skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0xf3f283c1 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xf400e90a inet6_getname EXPORT_SYMBOL vmlinux 0xf4102303 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xf41b070d skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xf431f2bb xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xf41b931a jbd2_journal_abort EXPORT_SYMBOL vmlinux 0xf43725fb s390_arch_random_counter -EXPORT_SYMBOL vmlinux 0xf43b04fe jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xf43b823e sock_set_mark EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf450014e wait_on_page_private_2_killable EXPORT_SYMBOL vmlinux 0xf4694943 component_match_add_typed EXPORT_SYMBOL vmlinux 0xf46fce11 unlock_two_nondirectories EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const EXPORT_SYMBOL vmlinux 0xf48a290b fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xf4aa97a1 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xf4b99f2f end_buffer_write_sync EXPORT_SYMBOL vmlinux 0xf4bb992f inetpeer_invalidate_tree EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4e40132 poll_freewait EXPORT_SYMBOL vmlinux 0xf4f0d850 pci_release_selected_regions EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock EXPORT_SYMBOL vmlinux 0xf4f1d73f __kfifo_out_peek_r EXPORT_SYMBOL vmlinux 0xf4faa3e6 ccw_device_get_ciw -EXPORT_SYMBOL vmlinux 0xf50d4fbb proto_register +EXPORT_SYMBOL vmlinux 0xf5169292 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xf51bdde7 lookup_one_unlocked EXPORT_SYMBOL vmlinux 0xf528f3ef param_ops_short +EXPORT_SYMBOL vmlinux 0xf538242b neigh_app_ns EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf54ef719 sk_dst_check +EXPORT_SYMBOL vmlinux 0xf542af87 kfree_skb_list EXPORT_SYMBOL vmlinux 0xf550909d utf8_validate +EXPORT_SYMBOL vmlinux 0xf55e8e1f xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xf5626bd9 tcp_time_wait EXPORT_SYMBOL vmlinux 0xf573e78d __vmalloc_array -EXPORT_SYMBOL vmlinux 0xf579eea7 block_commit_write -EXPORT_SYMBOL vmlinux 0xf585411c jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xf57bfce1 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0xf599ec7c __inode_add_bytes EXPORT_SYMBOL vmlinux 0xf5af3c06 get_user_pages_locked EXPORT_SYMBOL vmlinux 0xf5b10c80 register_md_personality -EXPORT_SYMBOL vmlinux 0xf5d908c5 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xf5dd65d3 rt_dst_clone -EXPORT_SYMBOL vmlinux 0xf5e6ae71 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xf5cd10fc _dev_info +EXPORT_SYMBOL vmlinux 0xf5d5ac78 skb_pull EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf600028a __scsi_iterate_devices EXPORT_SYMBOL vmlinux 0xf60ffffa ap_get_qdev +EXPORT_SYMBOL vmlinux 0xf61acb6e mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0xf62acf2e bdi_register EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf64a3ce1 scsi_target_resume EXPORT_SYMBOL vmlinux 0xf6567abb get_vm_area EXPORT_SYMBOL vmlinux 0xf65ca77e bioset_init_from_src +EXPORT_SYMBOL vmlinux 0xf663523c napi_gro_frags EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf6731a3f xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xf673b598 jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0xf6744696 cdev_device_del -EXPORT_SYMBOL vmlinux 0xf67ead12 vfs_ioctl +EXPORT_SYMBOL vmlinux 0xf678fd79 udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6a6032d fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xf6a5e6a3 xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0xf6b36d11 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xf6b41f2e tcp_mss_to_mtu EXPORT_SYMBOL vmlinux 0xf6c3e4aa wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xf6d163f3 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xf6ca2912 rtnl_create_link EXPORT_SYMBOL vmlinux 0xf6d71882 dm_table_run_md_queue_async EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f46347 __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0xf6f61a7e config_item_set_name EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fb846e xfrm_init_state EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor EXPORT_SYMBOL vmlinux 0xf6fdab2a inode_set_flags EXPORT_SYMBOL vmlinux 0xf6ff495a param_ops_bint -EXPORT_SYMBOL vmlinux 0xf700c822 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0xf7297020 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xf72dc8b7 xfrm4_udp_encap_rcv EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf73c1490 ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0xf74300d7 arch_vcpu_is_preempted EXPORT_SYMBOL vmlinux 0xf749baaa config_group_init -EXPORT_SYMBOL vmlinux 0xf74f3b1c neigh_lookup +EXPORT_SYMBOL vmlinux 0xf766f8dd dev_mc_sync EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check EXPORT_SYMBOL vmlinux 0xf7917c08 blkdev_issue_flush EXPORT_SYMBOL vmlinux 0xf79faab3 ip_send_check @@ -7176,179 +7170,188 @@ EXPORT_SYMBOL vmlinux 0xf7b92217 utf8_casefold EXPORT_SYMBOL vmlinux 0xf7ba4d16 blk_set_queue_depth EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node EXPORT_SYMBOL vmlinux 0xf7d71918 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0xf7fa79fa nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xf80dd10e xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xf7dc40c5 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xf7f8c781 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xf8080b1c tcp_sock_set_keepintvl EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf8171e37 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xf81c0dcf neigh_seq_next EXPORT_SYMBOL vmlinux 0xf81fd636 arch_spin_relax 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 0xf84bdfb4 arp_send -EXPORT_SYMBOL vmlinux 0xf8519e7d file_fdatawait_range -EXPORT_SYMBOL vmlinux 0xf85cc034 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xf85e6108 follow_down +EXPORT_SYMBOL vmlinux 0xf858ff96 xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0xf860e4ed key_alloc EXPORT_SYMBOL vmlinux 0xf869cf3b devm_memremap -EXPORT_SYMBOL vmlinux 0xf883d19b ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xf86c1c68 skb_vlan_untag EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf8903440 vfs_link EXPORT_SYMBOL vmlinux 0xf89442ac input_event EXPORT_SYMBOL vmlinux 0xf8998e5b cpumask_next_and +EXPORT_SYMBOL vmlinux 0xf8b2ecd4 default_qdisc_ops EXPORT_SYMBOL vmlinux 0xf8b9584d devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xf8cae251 flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8e4dd33 security_unix_may_send -EXPORT_SYMBOL vmlinux 0xf8e7660e mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0xf8f5f419 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xf8edb50e do_clone_file_range EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf90a5ff7 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xf90c8574 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xf90b3230 xfrm_user_policy EXPORT_SYMBOL vmlinux 0xf916d660 blk_execute_rq -EXPORT_SYMBOL vmlinux 0xf9291174 pid_task -EXPORT_SYMBOL vmlinux 0xf929ca90 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0xf924bf78 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xf93167fb set_binfmt EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt EXPORT_SYMBOL vmlinux 0xf94135c4 simple_unlink EXPORT_SYMBOL vmlinux 0xf9500d2f sort_r EXPORT_SYMBOL vmlinux 0xf95e5d70 simple_link -EXPORT_SYMBOL vmlinux 0xf9629531 unix_get_socket EXPORT_SYMBOL vmlinux 0xf96a60d7 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0xf9703c2b skb_eth_push +EXPORT_SYMBOL vmlinux 0xf97057bf pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0xf98c2585 sock_cmsg_send EXPORT_SYMBOL vmlinux 0xf9a06e0e ida_free EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a4cfcf skb_clone EXPORT_SYMBOL vmlinux 0xf9bc3579 cdrom_release -EXPORT_SYMBOL vmlinux 0xf9c0c636 readahead_expand -EXPORT_SYMBOL vmlinux 0xf9ea60e2 dev_add_pack -EXPORT_SYMBOL vmlinux 0xf9ee02c2 dev_mc_init +EXPORT_SYMBOL vmlinux 0xf9bc68e0 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xf9c1ec4a skb_dump +EXPORT_SYMBOL vmlinux 0xf9cacbe3 generic_file_direct_write EXPORT_SYMBOL vmlinux 0xf9f6a0ce pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xfa035ff1 send_sig EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa0e04ad mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0xfa1c059a proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xfa243274 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xfa298ba1 dst_alloc +EXPORT_SYMBOL vmlinux 0xfa1d3081 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xfa37f769 rt_dst_clone +EXPORT_SYMBOL vmlinux 0xfa3db260 ip_local_deliver EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa66631d inet_shutdown EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed EXPORT_SYMBOL vmlinux 0xfa98d245 debug_event_common EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled EXPORT_SYMBOL vmlinux 0xfaadb729 md_error -EXPORT_SYMBOL vmlinux 0xfab2fa07 scsi_host_get +EXPORT_SYMBOL vmlinux 0xfac11583 sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacab803 PageMovable EXPORT_SYMBOL vmlinux 0xfacd8c28 nla_put -EXPORT_SYMBOL vmlinux 0xfaef7d30 nf_ct_attach -EXPORT_SYMBOL vmlinux 0xfafe0e70 _dev_err +EXPORT_SYMBOL vmlinux 0xfad7d2f1 inet6_protos +EXPORT_SYMBOL vmlinux 0xfad80a32 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xfae366e5 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xfaecf02f thread_group_exited EXPORT_SYMBOL vmlinux 0xfb0177fe framebuffer_release -EXPORT_SYMBOL vmlinux 0xfb36b607 tcp_req_err +EXPORT_SYMBOL vmlinux 0xfb055db0 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xfb1e01ca sk_net_capable +EXPORT_SYMBOL vmlinux 0xfb2140c1 dump_skip EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb44181d vmf_insert_mixed EXPORT_SYMBOL vmlinux 0xfb482dd1 __traceiter_s390_cio_stsch +EXPORT_SYMBOL vmlinux 0xfb49fea3 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xfb4f9efa tcp_rcv_state_process EXPORT_SYMBOL vmlinux 0xfb503c18 generic_iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0xfb513cc2 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xfb646738 __udp_disconnect EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb8586bd scsi_host_busy -EXPORT_SYMBOL vmlinux 0xfb9783ff tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xfb75a1d4 fqdir_init +EXPORT_SYMBOL vmlinux 0xfb8f58db jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xfb9187e3 tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbaafb19 netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xfbb04f44 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xfbc410b4 __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbc7c170 dcb_getapp +EXPORT_SYMBOL vmlinux 0xfbde18eb sock_enable_timestamps EXPORT_SYMBOL vmlinux 0xfbf94365 param_set_hexint -EXPORT_SYMBOL vmlinux 0xfc0d048f security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xfc0c2c79 close_fd_get_file EXPORT_SYMBOL vmlinux 0xfc1fa662 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xfc26e982 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xfc20acda security_path_rename +EXPORT_SYMBOL vmlinux 0xfc32249c netdev_has_upper_dev_all_rcu EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc3a102e unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xfc4de238 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0xfc5409fb kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xfc57c0da netif_set_xps_queue EXPORT_SYMBOL vmlinux 0xfc5d8b5c pci_get_device -EXPORT_SYMBOL vmlinux 0xfc694ab8 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xfc603953 send_sig EXPORT_SYMBOL vmlinux 0xfc823d03 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xfc94a4cd rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0xfca19a41 simple_lookup +EXPORT_SYMBOL vmlinux 0xfca237ab iterate_dir EXPORT_SYMBOL vmlinux 0xfca4f442 proc_remove -EXPORT_SYMBOL vmlinux 0xfcada313 tcf_register_action -EXPORT_SYMBOL vmlinux 0xfcb1c226 generic_perform_write +EXPORT_SYMBOL vmlinux 0xfcb90524 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xfcca7750 km_new_mapping +EXPORT_SYMBOL vmlinux 0xfcca8057 tcp_sock_set_cork EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcd66c76 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0xfcdef681 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xfcd2d10f send_sig_info EXPORT_SYMBOL vmlinux 0xfce3ca84 set_cached_acl EXPORT_SYMBOL vmlinux 0xfce783af bio_put -EXPORT_SYMBOL vmlinux 0xfceb6226 dev_uc_del EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfceed35d filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xfd06a03f tcf_exts_destroy EXPORT_SYMBOL vmlinux 0xfd14aaa0 pci_choose_state -EXPORT_SYMBOL vmlinux 0xfd356f44 tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0xfd65f262 genlmsg_put -EXPORT_SYMBOL vmlinux 0xfd6f685b crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xfd2be46f inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0xfd76f166 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xfd880978 do_splice_direct +EXPORT_SYMBOL vmlinux 0xfd886f1c tcf_exts_change +EXPORT_SYMBOL vmlinux 0xfd8f6db4 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xfd997f2f tcp_recvmsg EXPORT_SYMBOL vmlinux 0xfd9a9866 stfle_fac_list +EXPORT_SYMBOL vmlinux 0xfda7c975 xfrm_lookup_route EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 +EXPORT_SYMBOL vmlinux 0xfdb4f9b4 lookup_positive_unlocked 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 0xfdeb7fac qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xfde6e68b __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xfdfd0aea napi_disable EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe255783 vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0xfe44c42c try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xfe0d4fd2 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xfe0e5566 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xfe11ee2d ip_setsockopt EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe5fc127 dev_add_pack EXPORT_SYMBOL vmlinux 0xfe66632a simple_transaction_get -EXPORT_SYMBOL vmlinux 0xfe740f6e __napi_schedule EXPORT_SYMBOL vmlinux 0xfe7600bc pcim_set_mwi EXPORT_SYMBOL vmlinux 0xfe771463 __tracepoint_s390_cio_csch EXPORT_SYMBOL vmlinux 0xfe8685b2 get_random_bytes_arch EXPORT_SYMBOL vmlinux 0xfea6b001 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xfeac52c1 disk_end_io_acct EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfeb73dcd scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xfed19f7c in6_dev_finish_destroy EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee79af9 create_empty_buffers -EXPORT_SYMBOL vmlinux 0xfef594ce jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xfef8dc8d dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0xff05a739 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0xff0b034d seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xff13f83f dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start EXPORT_SYMBOL vmlinux 0xff1f0ae2 add_virt_timer -EXPORT_SYMBOL vmlinux 0xff4908a1 noop_llseek -EXPORT_SYMBOL vmlinux 0xff4d3c17 tcf_classify -EXPORT_SYMBOL vmlinux 0xff5a7294 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xff5d1781 xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0xff65e3ba kobject_init EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap EXPORT_SYMBOL vmlinux 0xff68b632 fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0xff70af17 register_shrinker EXPORT_SYMBOL vmlinux 0xff7ad1b5 krealloc EXPORT_SYMBOL vmlinux 0xff7ec0ff dma_fence_get_stub EXPORT_SYMBOL vmlinux 0xff8b56a9 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xff9360b6 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xff964937 unregister_fib_notifier EXPORT_SYMBOL vmlinux 0xff9e28aa fs_param_is_fd -EXPORT_SYMBOL vmlinux 0xffa222df netdev_state_change +EXPORT_SYMBOL vmlinux 0xffa70a56 vfs_ioctl +EXPORT_SYMBOL vmlinux 0xffa74382 scsi_block_when_processing_errors EXPORT_SYMBOL vmlinux 0xffa94876 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xffb411c6 tcf_idr_create EXPORT_SYMBOL vmlinux 0xffb8b63f key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xffb9a458 posix_lock_file EXPORT_SYMBOL vmlinux 0xffbf5a41 wait_for_completion_killable EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffde8897 netdev_alert +EXPORT_SYMBOL vmlinux 0xffcd3645 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xffd8129f key_move +EXPORT_SYMBOL vmlinux 0xffdf3490 vfs_fadvise EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0x1b16ecd5 s390_sha_final -EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0x80bcdc63 s390_sha_update +EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0xa3e4eddd s390_sha_update +EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0xfbcb3707 s390_sha_final EXPORT_SYMBOL_GPL arch/s390/net/pnet 0x0e851b1e pnet_id_by_dev_port -EXPORT_SYMBOL_GPL crypto/af_alg 0x074949c1 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x12c0fdbc af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0x132c22aa af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x23be0a07 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x2eea6f8d af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x3ba44dca af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x48b59c0d af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x578f6cbd af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x5adf4dc2 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x77163aba af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x8d188b24 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x9b9cadaa af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0xae7578e7 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xaf92b927 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xb3a9e9ef af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xd92d23f7 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0xdcf61dd4 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xef5a3434 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x017a5fca af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x1d1bae50 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x2896af2a af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x3dead2df af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x4cb58940 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x4f1e32f4 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x56d46d4a af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x657195a8 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x68341c61 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x69c21bc5 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x69ef2c15 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x9b899838 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x9d61bf25 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xbbecf826 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xd94ed73c af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xe08fe915 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xe6ace66c af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xebe11c14 af_alg_free_resources EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x89b17e22 asym_tpm_subtype EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x64310c2e async_memcpy @@ -7376,32 +7379,32 @@ 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 0x1be5f328 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x5e733d9f cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x64d2bc04 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x781e8415 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x7eb6f2bb cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xb749a343 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xb8ec43c1 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xc079245b cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xc1306b4f cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xda63bbc3 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xdbc204a2 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xdee79021 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xe455ce07 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2a2dd656 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3725c2db crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3ec0db8b crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x50f6ce3c crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x74f93625 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7ab2efca crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7ebc4344 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7f30b3e8 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x84d7bbe5 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa311204e crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xad0e470a crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbe8bff98 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe8513bfa crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/cryptd 0x13eb64a2 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x3e9f38b6 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x524819cc cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x5b16c0d3 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x68852137 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x7f2d7981 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x8c98e4ea cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xacd16bf1 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xbf57cfd5 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xc0102e96 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xc83dd107 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xde1d5ab8 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xe282fd94 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x11a04e27 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x204c9d47 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x444cd992 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x45880525 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x753bd94c crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x80f0021d crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x830a68cc crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8c358b4e crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9a34dc00 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xada3c16b crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb106f61a crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe140245e crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe33fcc7d crypto_transfer_akcipher_request_to_engine EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key @@ -7481,54 +7484,53 @@ EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9550271d to_pdrv_policy_node EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xaa053da9 stm_register_protocol EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc3f705a3 stm_unregister_protocol EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe2253468 stm_data_write -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x0240b0b5 i2c_adapter_depth -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x053b52ed i2c_new_dummy_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x074dca82 i2c_for_each_dev -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x10a62f90 i2c_match_id -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x2d1688fe i2c_recover_bus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x36d45a9f i2c_bus_type -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4131c66f i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x1ee6bfdc i2c_adapter_depth +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x241fe276 i2c_recover_bus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x28ef869c i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x29a4c4fe i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x2bd7c965 i2c_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x334e2949 i2c_parse_fw_timings EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4c67b415 i2c_get_device_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x48219589 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 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x7888453e i2c_adapter_type -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x7a8f32a5 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x9affa6d4 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa7e98af3 devm_i2c_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xb89509f8 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc8c19303 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xced7d663 i2c_client_type -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe86eea55 i2c_new_client_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe9d70f97 i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xf15eb14d i2c_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xf3f063c9 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xf45f5477 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xfa008a03 i2c_new_scanned_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x5b3a526e i2c_get_device_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x8f594e35 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x92cab63a i2c_match_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x96f1adf2 i2c_client_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xa1458c5e i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xb5694c9c i2c_new_client_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc3703c9e i2c_for_each_dev +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xcf402bde i2c_new_scanned_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd043a4ef i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd8430e17 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe8464fa5 i2c_bus_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xebabd789 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xfc5492fe i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xffd8c097 i2c_adapter_type EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x1abe94f8 i2c_root_adapter EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8c8ada1e i2c_mux_del_adapters EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x95b2fb21 i2c_mux_add_adapter EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xaa6c617e i2c_mux_alloc EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x039127c4 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x05cb171e rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x12393259 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x25047fe0 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b0c87c3 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6607f9d2 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7d4376f7 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9693d569 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9994c2de rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xad9f6524 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc2501077 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc5ef6846 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0dd81913 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x28fb8bf1 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2f8ebdac rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7b35f2ae rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8abb3b6e rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x903abbcc rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x934e22a2 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa7296c01 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa9edb0d4 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb3d29201 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd2404bad rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xde7bdefe rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x01f01495 __traceiter_bcache_btree_node_compact 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 0x08aad669 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0b54a9ce __traceiter_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10f51d63 __traceiter_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15ef30c5 __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16ea7222 __tracepoint_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback @@ -7536,30 +7538,26 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_ 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 0x1baa4062 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b1b0bb7 __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c71a406 __tracepoint_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2416190c __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 0x467bd0cd __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x34aada34 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3520d9ba __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a1dbace __traceiter_bcache_read 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 0x4810fdf0 __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4d22cc12 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4fd820bf __traceiter_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x52a41227 __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x53b5e5e3 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x555703bb __traceiter_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x56e88dc9 __traceiter_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5beab038 __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 @@ -7567,54 +7565,59 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6026e276 __SCK__tp_func_bcache_byp 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 0x6ca53d3e __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6a56494b __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b4d3dbe __traceiter_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7102c4be __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a3c0ac3 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7dde3912 __traceiter_bcache_bypass_sequential 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 0x851e8d08 __traceiter_bcache_btree_write 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 0x8fc4c3f5 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8e57bc85 __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x903c00ef __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x91fd865c __traceiter_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9865dbc4 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a4847fb __traceiter_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9b5e870f __traceiter_bcache_gc_end 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 0xa6b93069 __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab5886ee __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa98268bd __traceiter_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb912ae0b __tracepoint_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc268695 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbce2fa5f __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc338ba53 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc7706168 __traceiter_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc78d7102 __tracepoint_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd2567c59 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd6fd64bf __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe1ab1e26 __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe202b8e6 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe5bff484 __traceiter_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe677c756 __traceiter_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeb816d04 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xea826686 __traceiter_bcache_btree_node_free 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 0xf2f74600 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xefbb7c9f __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 0xf835ffef __traceiter_bcache_alloc_fail 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/bcache/bcache 0xfe267852 __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x035f5876 dm_cell_get_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x174e40c5 dm_cell_put_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create @@ -7778,271 +7781,276 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf551114d dm_b EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5aada6c dm_tm_create_with_sm EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xb7499403 st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xf594e8f7 st_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0552b51f mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0572909b mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05a34148 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x065f0064 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08f1a251 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b063544 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x144aa699 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1502ca00 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x156a3bab mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17709881 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18b66bd3 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ae9ac01 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ff70ccb mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20167aa8 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x273e753f mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c1fe0a5 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ca56bfe mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d2b6dda mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30545705 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x318bf412 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37d53b8a mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x383a8980 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3acb718d mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b2735a0 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b4ccc8d mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3da8ffa9 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3db1427c mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e300553 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f3badf3 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4488774b mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a5956a6 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d0d5105 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e0d588f mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f3e5553 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53a490d1 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5442d87d mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5589f022 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x567999a8 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59c7d662 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5af3267d mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bb3b0a4 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bcc9a47 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cfed217 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d4b12f6 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60841469 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x618dbb03 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x669f9d75 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x693e7a52 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6acdcde7 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b535826 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c74b0e5 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f40dd98 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70abe799 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7151b19d mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7312d229 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75d6ce13 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75e56f26 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76aef0bd mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7919f393 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79d6121f mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c2d60af mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7dca208c mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x847bce19 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84fcfa2f mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89fb77ff mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bf31e30 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ce6433b mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8da581fe mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f5fee2a mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94510220 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94971593 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94eb0093 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x951a43dc mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95643ed8 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x957de210 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98357458 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a54bd12 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bcd025f mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0915a1b mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa33edc88 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa49ad3ca mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5a8594c mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8bffe02 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa95d7d05 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa982040f mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabb2e1fc mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac856863 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb02b0dbc mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb23c9b1a mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2518a29 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb41ed137 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb44ef716 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6cfafe7 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc90539e mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd62171d mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe32a854 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc484408b mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8dac604 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9e60af6 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcaba9c70 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcace5c3a mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce4dd129 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcea321ed mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1da7ed5 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7879dd2 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcb48251 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd69225f mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdda35913 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe220d4fa mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe648f590 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6c67531 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe810edfd mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea5374b7 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeac55daa mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeba62021 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee73b7cd mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf11179dd mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7c503ea mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8a12bb4 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfac7c382 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd7572e3 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x060de2ad mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x30c67659 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xd99971aa st_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04e6ca13 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x061e4fc7 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x062b1a70 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0992c76f mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c1b81a4 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1076d539 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11dd6e4a mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15fe6382 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17bf152d mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17f7c0ad mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x196fc33c mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e239ffa mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21a9bd26 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23a74368 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27fb08ba mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x294c1428 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x298d5110 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29b42bce mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d86917e mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ee578ba mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x318dd2f2 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33427d05 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34fb0a7b mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38536ff4 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3912311f mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b8576d5 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d995693 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f0736ec mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41686653 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41902986 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4272f704 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42a2729a mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a91412a mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b1dfd1e mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d18a4c5 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d56f45c mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e625535 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d64697f mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ebed7ff mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61a2d862 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62731c42 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6300a224 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x642dcf78 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67c63536 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68509d49 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x688a4c35 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d0b387c mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x710b07ec mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x712b174c mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73da142b mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x752abb62 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x776b3b94 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a71d205 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7af351a1 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b2c6281 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80d0c81f mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8391af11 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ab54dd6 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ad3ff9f mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cb43c10 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d5665fa mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f0b65df mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ff7d723 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x921cd01e mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x933c7f6f mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94b365f8 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x956bff20 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9582d61c mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96070fb6 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9651bda9 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b66f0cd mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d55785b mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f45da83 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa171ac63 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2a5161f mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa376eb0e mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa42f843a mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7699819 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7945853 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa82c7768 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8fdb92a mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaac8bf39 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab6e5081 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xace291ed mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad82217d mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb18b9612 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1bd3cd8 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3053a6f mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb689b5ff mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7a864bd mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb81cbf03 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9dc0ba3 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3dabdc5 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc81a1314 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb7d9b0e mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc23ce18 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf8a3c9c mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfec379b mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2554d43 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2689079 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd307b369 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd31b921e mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4b2e76a mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd722de76 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd81478dc mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbe56aca mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe24cea67 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe379fa26 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeab71351 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb15dc8f mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec4e7882 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefd5c0e4 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf219da5b mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf23c037d mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf396b389 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf49f59df mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf52c13c2 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6ea1dd1 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9290553 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa40ef97 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdce102c mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x010f20fb mlx5_accel_esp_destroy_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01c0e5d1 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x039317e0 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06412bb8 mlx5_query_nic_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 0x0a7caf74 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a9d5a19 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cadca36 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cf25aeb mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e05833c mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e4bfa77 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1641900b mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d931547 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22c38541 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a65c104 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cc70ef1 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30f045d2 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33259862 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3444bb17 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34f21582 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35d2529b mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x367d3249 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bad8301 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43a35b6f mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4536a103 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4de3f8c9 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f6313ad mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53ce8eef mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x550a1fd9 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x554a7e40 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59a132b8 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a762697 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6328c482 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6666bb26 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6952bd5b mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6deab30d mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f04f51b mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b4beeea mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c00f7a2 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c76ee47 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81131b04 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x097572dc mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cccf526 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cff69c0 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d0ffc9c mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15049cd0 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18010ecb mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1979d408 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e376359 mlx5_accel_esp_create_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x215d3602 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25381f8a mlx5_accel_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2664d302 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a40a232 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d00de08 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d967458 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e46dd6e mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x308f116a mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x341e6f00 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e84aea9 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41786804 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x487d655f mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cdcd278 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fa13c81 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50684995 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x517440fd mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x529d0947 mlx5_accel_esp_modify_xfrm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x549c8c9d mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5acac252 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63bb355c mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d8f1588 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72a939eb mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72d6818b mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73a5adcd mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7da4d58a 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 0x8319221d mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x841e4683 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84b87559 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eb1270a mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x918d5cba mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93352167 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x940e1d04 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x975e5f95 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cde692f mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d1f063f mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5778638 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x837b45b0 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85cec2f7 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x911ec1c1 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9362214f mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93954936 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96732bc1 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x973f79c0 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97a0f952 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x993c82e1 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99859393 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f74294f mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2b10f04 mlx5_db_free 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 0xa8af6cbf mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad42495c mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad897b9f mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae1c0aa8 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0b56bd7 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb458a24e mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe074a1d mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3129a90 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc42dd193 mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc63cd181 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd017354c mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd39f72fb mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbf2c482 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde084617 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde2a0966 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4ee6be1 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6f6bc44 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe71bb315 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeafb542e mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb3a716a mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec280b70 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf358b81e mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd0f6a9f mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/geneve 0x4b2593d4 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x39dfdf1a ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x45f506f8 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x6eb8d03a ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xa0416b73 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc5f69e9a ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/macsec 0x21f3bb9d macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x326cfbb7 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x49454e93 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x935a6ff3 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa292786c macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa1c6236 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabea95f8 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac12848b mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad013c54 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaeef2ae0 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8238e5a mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7b765f3 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcaf4590a mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd28724a6 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd788499e mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe501781a mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6dcaf11 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeab1302e mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0203cb9 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0965dfb mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf099b8f6 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4669968 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4e28d56 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf80329ad mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9a66e24 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfce8ef4c mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff364872 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/geneve 0x6468acca geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2dbcc042 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x33679c8d ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x562dacf3 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8374c759 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8f5212ec ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/macsec 0xa9bb4209 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0ed810cf macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x171dfe88 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xca3aa96f macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xdf166629 macvlan_link_register EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x61a4f2f6 mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x4cedd87d net_failover_create -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x5ed8505b net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x16ab46e1 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1b14e596 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1d1812da bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x22835b7b __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2d0a8889 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3b51ca5d bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4ab0590a bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4d712609 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x54377191 __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x669e3f08 bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x702cbf1f bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x728ed066 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7636086f bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x797418d8 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7d148591 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x85aa6a09 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x905bb16c bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x922ef9d2 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9e99b731 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaaf9a13e bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb3ef6d41 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc56f2bfe bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc8910b24 bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xca0f8a6e bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcaadceb4 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcad29459 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcb261e9a bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xceb9deb8 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcfd49336 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd95eb1f7 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe56b8798 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe8cba9bf bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xed6710d9 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfcf89513 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x539c2cd1 fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x6d3151ce fixed_phy_change_carrier +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x1ea79160 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x78f78aa3 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0b60934c bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x141f813c bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x175e6e6b bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x201f77ca __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x27bf607a bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x28499f27 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2dc55c1c bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x30e79c06 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3772bbc2 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x441f7e05 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x46de8f99 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x480490f0 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x48ea253c bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5052b0bc bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x51e36ce2 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x54c7fc29 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5b3df009 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x67a062b0 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x74eb2980 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x79a46fd7 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7d94e7e2 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x83b2aa48 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x850c2647 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x86cbc457 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x87b5ec03 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8db091a3 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb192aff4 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe3f73e40 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe97cee58 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe9c7696b bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xea9d2575 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf03986a8 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf6921660 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xff64560a bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x3cc07dc9 fixed_phy_register +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x4a9326b8 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 0x9360a408 fixed_phy_register -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xaffa6aef fixed_phy_set_link_update -EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xef3fdd9c fixed_phy_unregister +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xaa3d975b fixed_phy_unregister +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xd3ba08d9 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0xe5b6cae0 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x02a54f75 phy_package_leave EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x06209f49 phy_lookup_setting EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x08cd1267 __phy_modify_mmd EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x0fc084c1 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x1795876b mdiobus_modify +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x13f15222 device_phy_find_device EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x192892ef fwnode_get_phy_node EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x1dcb3e17 phy_restore_page -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x20b83f65 devm_phy_package_join EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x21a4fca4 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x28cbe07b phy_restart_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x266ffbda phy_driver_is_genphy +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x2c838e23 mdiobus_modify +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x2decb24d phy_restart_aneg EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x33a6f7ba phy_save_page EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x3ce650fd phy_10gbit_features EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x3f45cdcf genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x3f7dc27f phy_package_join EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x478debf5 phy_10gbit_fec_features EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x49ce07d0 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x4c9a547a phy_speed_up EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x538d073d phy_duplex_to_str EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x5c5c6826 phy_10gbit_full_features EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x61f67c92 phy_gbit_features_array @@ -8053,37 +8061,33 @@ EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x76e6a22b phy_modify EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x773e551e genphy_c45_config_aneg EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x77b7f7f5 genphy_c45_read_status EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x7c10941d phy_package_join +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x7dc0aa60 phy_speed_down EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x8effb505 phy_gbit_features EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x9072739b genphy_c45_read_lpa -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x92b802f3 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x91dc5f30 phy_driver_is_genphy_10g EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x936e1fb2 genphy_c45_read_link +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x98d41f87 __mdiobus_modify_changed EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x9e031e3b genphy_c45_read_mdix -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xa32cce6a phy_speed_down EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xa353b8e3 genphy_c45_read_pma -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xaac9337d device_phy_find_device EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb0b7c025 phy_modify_mmd -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb6e06e36 phy_speed_up EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb7a2c4f5 phy_select_page EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xb98bb315 phy_gbit_fibre_features EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xbadc8697 gen10g_config_aneg EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xbbf4dfbe phy_basic_t1_features EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xc480a0cb __phy_modify EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xc55ff962 phy_basic_t1_features_array -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xccc3887f __mdiobus_modify_changed -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xce618651 fwnode_get_phy_node +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xc6688f2f devm_phy_package_join EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xd17d2a22 phy_basic_features EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xd22a3e4f phy_modify_mmd_changed EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xd314451a phy_resolve_aneg_pause EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xd6082f8d phy_driver_is_genphy EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xd8a994b1 genphy_c45_pma_suspend EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xd9a470eb phy_modify_changed EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xdb2e781f phy_check_downshift 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 0xe63a11a4 phy_package_leave +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe8cb202e phy_start_machine EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xe9701021 genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xead449b8 genphy_c45_pma_resume EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xebfc61cd genphy_c45_an_config_aneg @@ -8092,105 +8096,104 @@ EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xef6a5a07 genphy_c45_pma_setup_forced EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xf4689d50 linkmode_set_pause EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xf61abf03 genphy_c45_loopback EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xf91a814b genphy_c45_aneg_done -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xfa9def78 phy_start_machine EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xfab30dc0 mdio_bus_exit EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xfbeeb13c phy_gbit_all_ports_features 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 0x1429caad phylink_mii_c22_pcs_config 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 0x2c402dff 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 0x326c61c5 phylink_connect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x34cfefdc phylink_mii_c22_pcs_get_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4394d51b phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2df498bb phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x44a439b5 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 0x69c8c7d9 phylink_connect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x97a7ebfc phylink_mii_c45_pcs_get_state 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 0xbb5a6219 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9d51e5c7 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xbc2858ba phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xbee9b383 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 0xc3c55565 phylink_mii_c22_pcs_set_advertisement -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc7530e2a phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc849bc5e 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 0xe8c137ed phylink_set_pcs EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xefbe329f phylink_mii_c22_pcs_an_restart -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xefda7b33 phylink_fwnode_phy_connect 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 0x4ccff73f tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x57005b29 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x6910ecfb tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x7411c555 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x7fe36abb tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x8a7c512d tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x9a9c014b tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0xd2ccaf20 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0xdf2365b3 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x47709f8d vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x73ae6f1f vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xd580d6f4 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xf73d95ea vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x04c4cb91 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0e7e1341 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0f759190 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1075df37 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/net/tap 0x0419d724 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x107e47d5 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x5b3a22fd tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x8caebee2 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xac810c76 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xb53d83cb tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xe4de9059 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xf02fae43 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xf3c2de1a tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x6a0212bc vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x77a78597 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xac03180b vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xef4f6c91 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x03c6a9a9 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0808e5ab nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0bb1d1ee nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0e137e54 nvme_shutdown_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1f9b7d1d nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2447c196 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2571173c nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x278f9244 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1de7db05 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1e465a05 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2925f624 nvme_stop_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2fa55ced nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x310f1b22 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3ad9e17d nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x476bc42a nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x488cd734 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x311dc065 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x388a5760 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3ae0c50f nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x413d5acf nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x43b992d8 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x43ba7076 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x48c40b31 nvme_disable_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4b4ea347 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x572465da nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x58887882 nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5cf1a029 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5daa8c64 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5deda51d nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x60757aa3 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4ce85251 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5299c223 nvme_alloc_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5996c6c2 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x61b72e7f nvme_get_features EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7006c40e nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x73f96383 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x79474a54 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7bd8be8e nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7e24a434 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64ec9c41 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d23e26f nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x77e18448 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7a7f38f0 nvme_wait_reset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x83690451 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a6867ba nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8d6a52a7 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x89ea469a nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8c9047b9 nvme_sync_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x95db2176 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9986f562 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9f228a0c nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa0580ca1 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa9d4574d nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc7011757 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc7ecfa7d nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xce6fd523 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9a239e71 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa0d9f71b nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaad419df nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xafaaa898 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb07c808b nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb5ca1d53 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb8cfb7bd nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbd4938d7 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbde494fe nvme_fail_nonready_command EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd4b02e68 nvme_init_ctrl_finish EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdd34f4e4 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe69ceee7 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xde511d8e nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe0e2f7f2 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe438a6a9 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf14219d8 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf2748dc4 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf3e7652c nvme_unfreeze EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf6504a83 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf71be589 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf876551c nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfe49a712 nvme_init_ctrl_finish EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x013eb993 nvmf_connect_io_queue EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0b7d0602 nvmf_ip_options_match EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x32bde526 nvmf_reg_read32 @@ -8203,24 +8206,24 @@ EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd84ad803 nvmf_should_reconne EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe7a10145 nvmf_connect_admin_queue EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xefa27230 nvmf_get_address EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0e36f744 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 0x5df3729b 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 0x3324e857 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3a0fe5f4 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x32c5f021 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x344e90d6 nvmet_unregister_transport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x441e869c nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x477324d4 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x50e63d9d nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x56a20b19 nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa4183c07 nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb9ab6032 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd83b1f37 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe0332cc7 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xff5ce306 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x44ad3500 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4d32e675 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x53caac12 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7042de08 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7a8c3a73 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7e30f866 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7f92b9ff nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8d9eab24 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc26a719c 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 @@ -8272,58 +8275,58 @@ EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xaeb8ce13 qdio_free EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xc4ee50af qdio_inspect_queue EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xc9a616f6 qdio_allocate_aob EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xca3a19e6 qdio_activate -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x00bf5fe4 qeth_set_offline -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x034c2f0c qeth_setadpparms_change_macaddr -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x073e99b5 qeth_vm_request_mac -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0e011736 qeth_get_diag_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0eb7b8d3 qeth_setadp_promisc_mode -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1c318965 qeth_setassparms_cb -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2a9582a7 qeth_get_setassparms_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x38167a3e qeth_iqd_select_queue -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x409d4d77 qeth_set_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6f68b505 qeth_stop -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8035a8a8 qeth_dbf -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x80c7a6a1 qeth_siocdevprivate -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x92a5b81d qeth_enable_hw_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa591cc6f qeth_send_ipa_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa71d7d05 qeth_threads_running -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb1547760 qeth_open -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb28b0f33 qeth_send_simple_setassparms_prot -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb5ade88f qeth_configure_cq -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xba546a83 qeth_tx_timeout -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbeacb708 qeth_get_stats64 -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xcb694a3d qeth_features_check -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd54100d1 qeth_dbf_longtext -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd6a6f6a2 qeth_ipa_alloc_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd777f317 qeth_set_allowed_threads -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xdb6e2679 qeth_resize_buffer_pool -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf356dfc4 qeth_do_ioctl -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf36c65a9 qeth_fix_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf3cbab5f qeth_xmit -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf9aca5ef qeth_get_priority_queue -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xfb508271 qeth_set_real_num_tx_queues -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xfbf5bb87 qeth_poll -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0xb49544a7 qeth_l2_discipline -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0x22e11e07 qeth_l3_discipline -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0322ef44 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1965d1c8 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1c2f8cc9 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1e8e5fab fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x29129bf4 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3233045b fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x36bd9039 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3c3bf78d fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4a7374eb fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x69e3b175 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x86f047d4 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x95bd180e fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xac56e73b fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xacfae4d0 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0cb51a06 qeth_enable_hw_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1ee72ee5 qeth_setadp_promisc_mode +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2654d994 qeth_siocdevprivate +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2da5cb6a qeth_setassparms_cb +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2e9b3193 qeth_configure_cq +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2ecc12f6 qeth_send_ipa_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3629ab28 qeth_setadpparms_change_macaddr +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x41cb4e59 qeth_features_check +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x42775cf3 qeth_set_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x57e6f517 qeth_dbf +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6a83d3bd qeth_stop +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6ddc54da qeth_get_setassparms_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x75209fcc qeth_send_simple_setassparms_prot +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x77cd6f71 qeth_set_real_num_tx_queues +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7bacf895 qeth_iqd_select_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x80c6523a qeth_poll +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x89fe8ed2 qeth_resize_buffer_pool +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x91e72ccd qeth_dbf_longtext +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x953153a7 qeth_tx_timeout +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9e9fc709 qeth_threads_running +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9f0157ce qeth_open +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xad82413a qeth_set_offline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb1383750 qeth_get_diag_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbc55d58f qeth_get_stats64 +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc3327ecb qeth_xmit +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc98222bb qeth_do_ioctl +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xca549a15 qeth_get_priority_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe651b4c4 qeth_set_allowed_threads +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xeae328b6 qeth_vm_request_mac +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xed71ac2a qeth_fix_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xff31d300 qeth_ipa_alloc_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0xdc3d0165 qeth_l2_discipline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0x973453fe qeth_l3_discipline +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x15958f5a fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x184e43e2 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2ad03e99 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2b153233 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2ed04739 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3ba75483 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x576a4154 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x592ae6c8 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x68d7d5eb fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x738e70d5 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa910cdca fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb21db9c4 __fcoe_get_lesb EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc7597088 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xee03a4e4 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xecca6297 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xeff5734c fcoe_ctlr_get_lesb EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf278f731 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf6191a3f fcoe_fc_crc EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x04ebe20e iscsi_boot_create_target EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0fe3cd89 iscsi_boot_destroy_kset EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3cf738f8 iscsi_boot_create_host_kset @@ -8332,184 +8335,184 @@ EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x764f4e19 iscsi_boot_create_ac EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb7ff66ff iscsi_boot_create_initiator EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc727c23c iscsi_boot_create_kset EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x905b0a32 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x049ee577 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06f76279 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x07a83141 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x127f3730 iscsi_session_recovery_timedout EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15b4af2a iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16e063ad iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1ab746c2 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d161555 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x272451f4 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27585883 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c8d8ddc iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3501cd08 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x382a8870 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3a8da0c6 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15a12598 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1601c986 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x169af298 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c7e7bba iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1e404882 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2176e3d6 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x223f19bb iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29d90608 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b6e34a8 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ed2a597 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x35404e01 iscsi_eh_abort EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40012592 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x496246c0 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5045da97 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c410572 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62f8acf5 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6c91f062 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78cd688e iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x819398a6 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x81d2c9f4 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x840fbaf3 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x88ee3358 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8c1d1e4b iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e7e8948 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3fc2a664 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x458a8788 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x53a769d3 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x589c8f8a iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x59d68b0a __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c5aeb73 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62642d1b iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65b29d1d __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x68bc8462 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69ca2435 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x728807d4 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86138db3 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8c190adf iscsi_requeue_task EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91c14447 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9286e592 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x92b30003 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa08f8c96 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7530f8b iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa95cc2da iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xad997b0c iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1ad5378 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb56aa9ac iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb6b3ac2e iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbb272bf9 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbb4f41f9 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbfa8380d iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc02f7390 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd194b5b2 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd26d967d iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb3fc096 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe043311d iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe29da167 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe96e38ca __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f48b18b iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8fe6e6de iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93dff21f iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x946ecc5f iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e28d850 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa797be96 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7f30329 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaad6d4ac iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1e38401 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb7e5dd59 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb9cc6cfa iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xba7c40d1 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf290cb3 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbffc0d92 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc1d4b091 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc35c2d50 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd56e29c2 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5a2cca5 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe40905a3 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe8c99c78 iscsi_host_alloc EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed4a3d58 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf04da381 iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2c76078 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x105d491d iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x10af92ff iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x17b82edd iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x34016fcd iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x53879b4f iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x55b0391d iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x75704dbb iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x796fcf8c iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7a1b1b9f iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8d3cff8e iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb143ffa9 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb5b0c442 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc392693b iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc60c8c21 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd1ef5780 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd45c8dbb iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf608c815 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0305f5a1 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x06649e24 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2d0bc0c iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf7d5c04d iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x04e4c44a iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0e431e82 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1c0b5638 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x29cb9e85 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x46430473 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4dcaffac iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x53782ae9 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x54ac31c9 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x65230512 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x77267421 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x812ea5eb iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb2b3c37c iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc4890036 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd063ad5e iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd3cd1c97 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd8e2196c iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeb227b40 iscsi_tcp_recv_skb EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0783a8b9 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0fa78e9e sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x19d75c99 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x28b0c3c0 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2c8e096f sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b2a55dd sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3c235b46 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d3e3379 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x59205905 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x74ef2bd7 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x77de09b3 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7853631c sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8490b97d sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x87e987ea sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x97c59ba8 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9f01b6f0 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa6ee16bf sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaa899c96 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaeb7e04b sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbc029f81 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0c868ec4 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1ad9843a sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1cd46941 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f082887 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x21923205 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x21cf3931 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x23d6e902 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2c745daa sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2d767abd sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x34addc36 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x47f0b20d sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x584a5068 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5e6a085f sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x68c8711e sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x832987db sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x85e00a05 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8abc4489 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8f8cbfe9 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb105244d sas_register_ha EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbcedbce3 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcb643d46 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcef181c6 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc52e5ea sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xd1195843 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x05b6fb6b iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc0a53d76 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc9ce58fc sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd2285bdc sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe59cff67 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xed6fc6e6 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xbe372ed0 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x00c7ab27 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0124cb9c iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03272bb5 iscsi_unblock_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0764f17d iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d6dc6c7 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x10a2dcc7 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x10d5db17 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1c8f5aa0 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1cf6d929 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2458baa5 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29eb7247 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b41e663 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0bec89f6 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2cfa139c iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ec1f64a iscsi_block_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x489a204f iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4df79c82 __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ed87b46 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x550f7da0 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4dd35722 iscsi_force_destroy_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x586a8102 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58d677c1 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bd6b736 iscsi_recv_pdu EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x63039bed iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6576403a iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d325f73 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d898ae6 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d97318d iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e54ada4 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x605a5d5d iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64b8cdf5 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x681ce808 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 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7e821bf0 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82c30708 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x841de191 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x750653a1 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c2877fe iscsi_is_session_dev EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86b957ea iscsi_destroy_iface EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x983ff246 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98c8f108 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c637594 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d265b6f iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e27e481 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9fc8a973 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x89a994b6 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a62460f iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f678e03 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x92ea3f8f iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9cf29264 iscsi_find_flashnode_conn 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 0xac34ebd3 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb2d78b6e __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba660ebd iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xabc8ab94 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb33f0aff iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb85a0a07 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8d0a200 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba4142b4 iscsi_ping_comp_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2a85e34 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6fdf892 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc9bb3be6 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd00f0b77 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd2c571b9 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe182aed iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc264fcfa iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc3dcb3d4 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8e2f744 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc03122f iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc847b74 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd30be4a2 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd36fdb4b iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd3ff0da2 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd410c589 iscsi_conn_error_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd86cf93e iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdc78e303 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdda6f230 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdb7d415b iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde1f4b69 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0203bd0 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe1a84ee9 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe35356a6 iscsi_free_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe63d0e85 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xec8c288b iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf0374e8a iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2a9c561 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf56366af iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6e1722d iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8bed129 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9348a18 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfe9aeabe iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff7679b1 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x33cf1b66 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3f1d8ab2 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x44a545d4 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x69829bf4 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x03636dc0 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea25e7ed iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xefde7581 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2df7a51 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf51ea2ef iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf59896a6 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4edf1e5d sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5ca21007 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xaf9a71e8 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc9208458 sas_enable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x1f68552f 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 0x07fd02c2 srp_rport_add EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x08479dfd srp_stop_rport_timers EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x48cf66ef srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x56cda06d srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x690c7f11 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7531834b srp_attach_transport -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x062d4bef siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x06d7ede5 __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x750f3974 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa80e9db1 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xdda5a203 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf03df2e7 siox_device_connected +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xbb7e4efc srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc43d2231 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe58b3604 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfff11ecf srp_rport_add +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x0af1fe07 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x33252d03 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8281b48b siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa84688ae siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xae945269 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xff41052a siox_master_unregister EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x098b2c93 slim_get_device EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0cb8b117 slim_do_transfer EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0cde46e1 slim_stream_disable @@ -8536,10 +8539,10 @@ EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xccfc13ed slim_device_report_present EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd03d3a9f slim_report_absent EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xde497324 slim_unregister_controller EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xed1db04b slim_write -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x12d2f169 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x3abde1bd target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x561818dc target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x7c3759d9 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1f427f6a target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x4c426fa5 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xa98de6ee target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xf3b99745 target_submit_prep EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x33e63449 uart_get_rs485_mode EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x4102289b uart_handle_cts_change EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x41e23c51 uart_try_toggle_sysrq @@ -8654,331 +8657,331 @@ EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0618fb78 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x658e4434 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77df4f28 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x30dda9dc lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5f94cef2 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x68acf3a7 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6c995080 nlmsvc_ops EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77f0506a nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7ed3e487 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xadf0a420 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf13872c0 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x80045431 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8cc51845 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf1b32e68 nlmclnt_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00ac9e24 nfs_fs_type EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04cfe36b nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06968ed6 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08cfc213 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09a3be8a nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b203460 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cdbeb89 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d08c3f2 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f8eadfb __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1049500f nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02df400a nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02ed728e nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x034fa065 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x053606bc nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06190a69 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a4efe47 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bbbdfb4 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bdd2568 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d334c64 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e8b7df5 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ecd26a8 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ed38695 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0edb3f10 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f2f0c7e nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1070b647 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x107cc65f nfs_init_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12be1129 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x147c801d nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14fa5fb3 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x173442c5 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x185f2907 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19edd5bd nfs_check_cache_invalid EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c4a377a nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ef22606 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fdc3714 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cfefc8f nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20a2125e nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20cdfa42 nfs_file_write EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash EXPORT_SYMBOL_GPL fs/nfs/nfs 0x231310cf nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x247f051c nfs_commitdata_release EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27cbdcb4 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28fd67ab nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e7ff485 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x268a713b nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a426b8f nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b6f4241 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3032a4ed nfs_mark_client_ready EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x332eaf7a nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33ae76b0 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34c7914c nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35a00f28 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x384339ad nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32565501 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33138901 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35e06b5a nfs_file_fsync EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b05114b nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d68cfbb nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a8333ac nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bf6e3aa nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c8a0d9f nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3dacc6b6 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e54ce78 nfs_create 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 0x41f43412 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41fba26f nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40851bba nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41426436 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x422702a5 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4270515b nfs_umount_begin EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43a738f2 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x439d24f4 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x444e58c2 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x444eb6bf nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44b78014 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44c83dd5 nfs_show_options EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45b5d9e6 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4626a11a nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x492f9130 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x494c755f nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4963a354 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bdc65d3 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c7a30a2 nfs_free_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cc1b86f nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50306370 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x510da337 nfs_commitdata_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55727f24 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52b7d653 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x543afdd4 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54d0c8f1 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57a95fd0 nfs_client_init_is_complete 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 0x5bd61716 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cb4980b nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f0e0054 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6025cab7 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x615b2ae9 nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66010d8f nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b9b013b nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c2caac0 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ab2a47b nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e41f197 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f9d169c nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x604b644b nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60eb6712 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x638aafbf nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69f43e46 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a48ef9f nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a77c382 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6abcc8f6 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6baaa0c1 nfs_free_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x701b7bc2 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x707b3f78 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70d794f3 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x724b8592 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73549c1e nfs_clear_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x749f6ace nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x756e6e07 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76012408 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7764dfff nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bc776bc nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7df917c1 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x809bf6a2 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82532d99 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78170800 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x787ea859 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78a075a1 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b2b9f4d nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ddeb568 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80b461b8 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80b82a78 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81fa6ec4 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832cdc34 nfs_try_get_tree EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x846d60d8 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x851c3944 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86998120 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8746d41b register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a2d5758 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cdef7f9 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8963fac9 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c10e1d8 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ce731dc nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8dbdcea7 unregister_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91c8594a nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91325f97 __traceiter_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x929c6f2d nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92fb03d3 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x947f516d nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92716112 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x944e1d84 nfs_statfs EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95d31ba0 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95d5d7be nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95f7a322 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x982de780 nfs_may_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99cff3c4 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9da9a5e0 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f2932d3 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fdbd871 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a9383cb nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cc5ab6d nfs4_dentry_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1ad945a nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3154b42 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5227b40 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa57d08df nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5b37f7e nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6eaed2e nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa723b622 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8d1db55 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e292b0 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa23fa96e nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3a0f2bd nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa48c1805 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa642de7d nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7947dcf nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa87bfc36 nfs_create_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa3f9d32 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9e2ec45 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa4d1c32 nfs_init_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaba7f208 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac25a80c nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae75ab90 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3c2ff37 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5b1bb69 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb66b5f91 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb935fd96 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9c75f7b nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb582e16 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbce84280 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd564c6e nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdd5971b nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc01ea97b nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2f11766 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2f249a2 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaba797bd nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacab3c0d nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadcc20be nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaefa3fdc nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafdc23bb nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb477f3b5 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb565e63e nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6329daf nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb882e09a nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba311136 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc52a31b nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd2274bf __traceiter_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6a7128a nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7f71631 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc83c86ac nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb0f53e5 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb5e5acb nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb78471a nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbf3b8cc nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdf521bd nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce13c83d nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd07c4ac8 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0bd04e0 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0fe6352 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4b64152 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd570e14c nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7f18728 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9dc64d2 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc485df7f nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c0eca4 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc91c3cc4 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb2e0b91 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcba72ca8 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcda3ffdd nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd447e1cf nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd462f460 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4f56587 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6102399 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd689e748 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6c137e0 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7c94763 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd99c8c62 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda85bb91 nfs_refresh_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdba848cd nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbf8f6c0 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdef007db nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfb4245f nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe451be04 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe50c5984 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5b0bd00 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd8c22bc nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddf7bb85 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde70e4b0 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfcdb273 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0efd05d nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe50d6f39 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6ffe3b4 nfs_request_remove_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb2c526f nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb820b5e nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebf1d613 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedef8b0b nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef39b077 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf49240f3 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf51b1097 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf556f070 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf85ff34e nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8bb593e nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe74b6b5a nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8fdd98f nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebb1429a nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec6483dd nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee009b2b nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf380adf2 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7c1bb57 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8a38fe9 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8ed437d nfs_unlink EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb66ab6f nfs_request_add_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe0284db nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff1e6976 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x31912269 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc6bb456 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x7a04c6a6 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0093c797 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01a13c21 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02e9051a nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03d4ae31 __traceiter_pnfs_mds_fallback_pg_get_mirror_count EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x062e2086 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x084d9110 nfs41_sequence_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0973f04b pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a01174c pnfs_generic_pg_check_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b850933 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e0a0b11 pnfs_generic_prepare_to_resend_writes 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 0x141da2ed __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14f8d8a6 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16fcf5c0 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x173e073f pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1934d711 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c612112 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f1ad86e pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f906284 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1fa3a5d1 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20fc26c0 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25275ae3 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16d059c4 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x182d4045 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b182a33 pnfs_generic_pg_writepages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d99df10 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30606abf nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a108dc9 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2cb5c0c8 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2cc26c3e pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x302af12e pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30306470 nfs4_mark_deviceid_available 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 0x3366a94d pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34a7585e pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36611093 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41600efa pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45e8b8a7 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c5af179 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34d169fe nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37e66993 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b8a0ad4 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c3c7055 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3dc4b581 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40c269ff pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45c8238c pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4886674e __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4baae305 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x502392cb __traceiter_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x543746fb nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55505bba __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5787a837 __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 0x58b39204 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x593fb8d0 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59ef099b pnfs_alloc_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b1b4738 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b510858 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cdcf636 pnfs_layoutcommit_inode EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cffab67 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ebf682a nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x637f5674 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x651afce9 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68db651b __traceiter_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6afb2e42 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d2b335f pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x712af0de pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x748e9fe1 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b90753b nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ba6dd44 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6bca2b95 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c31766e __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71172250 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x718a8c4a nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x726fccd7 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7754383d pnfs_generic_ds_cinfo_destroy EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785ce2a0 __traceiter_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ab7bcc6 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7bbd1515 pnfs_read_resend_pnfs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7dde2c50 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e72240c nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80bb8891 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f4e10a1 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fe841f6 pnfs_generic_ds_cinfo_release_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x831b15da pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c727981 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c96d12b __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d6d59fd nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f9a0589 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8fb7e741 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9025a1af pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9051dbeb pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93927c55 __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93e69e84 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8272191e pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82b0e78f __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x842a9af0 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f62c19c nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9240a41e nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92a7b1ff pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x934c3ec3 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95de2c4f nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9743478a pnfs_alloc_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97c26042 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x996334c4 pnfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c116425 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa068d058 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1b8f7cb pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3ab8b25 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa470ec21 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa641b32 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaba96682 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac281e8b nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb90dc472 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb943e52e pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02ad7c0 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0800a1a pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa52451a3 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7e4c139 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac22a890 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae3b938a __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb55c18a9 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb82dc460 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8724ec6 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8e37b2f __traceiter_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbced1ed1 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf876da6 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc2549e15 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0b64d42 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0e3f309 nfs4_test_session_trunk EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3331772 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc372a7bb nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3858a79 pnfs_destroy_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc8124a3 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf04e8ea pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce3b44c7 pnfs_set_layoutcommit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcfbafa15 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf4b62d9 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf553e09 __traceiter_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 0xd36175ab pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4515455 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4614a6c __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9d88969 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdba562e1 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc2a484b pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd3c4629 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd11dee31 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5404a7a nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd845ed19 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda1c69d4 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf312478 pnfs_generic_write_commit_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe015acb7 nfs4_schedule_stateid_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7752b5d nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5b44c9a pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe89de6bb pnfs_add_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede41327 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2c3dcf2 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2caabc8 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 0xfa094e26 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfbd19597 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9aa7600 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd05493b pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd9aac8f nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe07ab24 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x0c9a322b locks_start_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x403fe3a4 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x67145d48 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7ef66fe0 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x79152418 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa870a07b opens_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x1ddb642e nfsacl_encode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x51ddb0d8 nfsacl_decode EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x92b4ab93 nfs_stream_encode_acl EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xde8e7429 nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xfae08390 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x18b4d539 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0dd6e510 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 0x34138744 o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4e07933a o2nm_node_put EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x637d8760 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5ef3e2b9 o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7f2813f4 o2nm_node_put EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x94acc9ac o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9afb5259 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb4d265aa o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb94f11e8 o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd811a5b o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc2b9e9a7 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 0xcc6e581e o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd85db213 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 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 0x2fa8f5fb dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x343c68f9 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x60372ed9 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x13037dda dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1bbf50ce dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x212218fc dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4cef9abb dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x62564d57 dlm_register_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xaa978ea9 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd13d7a20 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 0xf0d99afb dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf0b1e2b7 dlmunlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic @@ -9022,952 +9025,952 @@ EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x5ad9a307 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 0x226f9f83 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x44ba284c garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x46980f1d garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x4a4c9e67 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x63752e91 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xf1f119ef garp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x25d89b72 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x3cbb53c5 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x849c7ef6 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xa2f4d5b9 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xc98ec573 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0xd884bc9c mrp_request_join -EXPORT_SYMBOL_GPL net/802/stp 0x0e04b709 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0x1a97272a stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x0ce3baec p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0x741ddc94 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/bridge/bridge 0x01c6066c br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x080f45b4 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x186e45da br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x36137a7d br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3e40e580 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x46c2be25 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x48cf70d7 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x51b905f3 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x537d0301 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5dff5cae br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x69c8be9c br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6be66a5e br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7ad187df br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x85e88e2c br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8b94cc55 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8c0e960b br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9c8539a2 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9f7aa017 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb8a4f14b br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc3bce65d br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd3d0b910 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf597530d br_handle_frame_finish -EXPORT_SYMBOL_GPL net/core/failover 0x2656a1d4 failover_register -EXPORT_SYMBOL_GPL net/core/failover 0x34757acc failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0x5235d2db failover_unregister -EXPORT_SYMBOL_GPL net/core/selftests 0x7b10cbd2 net_selftest +EXPORT_SYMBOL_GPL net/802/garp 0x1a48e3e8 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x56247506 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x7a917ac4 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xcc667621 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xe1e5dce8 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xe6d9cea7 garp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x3f3de301 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x8ecc36aa mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x9ac59513 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xc7bfb342 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xfa620c9d mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xfc72e320 mrp_register_application +EXPORT_SYMBOL_GPL net/802/stp 0x2153d052 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x600ae37e stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x1b73a68e p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x45de003c p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/bridge/bridge 0x11e45281 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x12ad7451 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x226fd9ff br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2410f5a2 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x26ac2d62 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x48bcf465 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4c4105c6 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5ff8a4ca br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x838f2b23 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x85a284db br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8e6e97bf br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9007141d br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x92ff8690 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa37b5bdc nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbbbce2a2 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc16fa15b br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd37206e8 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe194162a br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xec4d9069 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xeeb1f535 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf83aaa62 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xffbbb262 br_forward_finish +EXPORT_SYMBOL_GPL net/core/failover 0x86e07156 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0xc6b1edba failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xe5ef88cb failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/selftests 0x1352b315 net_selftest EXPORT_SYMBOL_GPL net/core/selftests 0x8e6b1a9e net_selftest_get_count EXPORT_SYMBOL_GPL net/core/selftests 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL net/dccp/dccp 0x008e7980 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x05bd1f6d dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x07df2cb4 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0f61ab71 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1172b4bf dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x11bc00c0 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x153dc7bf dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x163175d6 dccp_ioctl EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2069fec1 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x22efdfd1 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x317bfbff dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d02ce27 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d867041 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x490ecb51 dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4c4fe088 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x193b5fb2 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1e07fc96 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2e7d15e2 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2fb3f6b1 dccp_parse_options EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x53e82ef8 dccp_death_row EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5ef78341 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e1db5b8 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6cf38731 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6d817fe0 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x71ddc1fc dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x76eb3e41 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x778b01db dccp_setsockopt 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 0x93f37c00 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x880b027f dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x916d45e1 dccp_hashinfo EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9684319c dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x99a079f1 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0bd17a7 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa2da78a0 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4d62890 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa9422c0a dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa9795b93 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb5d2da41 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc087d22e dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc6bcb58b dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcd63fa70 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9955810a dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4cb872c dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad758943 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1d7cdeb dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb22734f4 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb9600559 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe7f2242 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xca38d454 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xca79a1bb dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xca974a92 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcae0c482 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd3db85a0 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7542b15 dccp_child_process EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd91006c1 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xda1f5f69 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe7ed0b40 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xedafb619 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf372ead4 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf737cc4f dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf8b7958f dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfaf9fab7 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfbb8c21c dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfcf98383 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x71868063 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8f2c7384 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa4593059 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb424bf91 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc62bb492 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcc11f5f8 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5b5efc5 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5bff714 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf7573ccc dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf7ca2e0c dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1e4e5529 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x28519976 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x55c71a33 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6b2e45e8 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xca3332f0 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd5a45e38 dccp_v4_connect 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 0x80e0d32b ife_encode -EXPORT_SYMBOL_GPL net/ife/ife 0x8ddc1011 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xa9db6564 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xaa458e2c ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x07851f4d esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x19ec7438 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa9717efd esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0x00477bf0 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x4c1c8406 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x00c36d06 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x15391068 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x18d2bbf6 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2a7d32dd inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4524128e inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x48588ac5 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5de763d4 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x60f9b13a inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb584451e inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xdc1adcc2 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x00dc34f2 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0d1d0699 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x116e42f5 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x18edc842 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x297071c4 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x372a6789 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x44ee457e ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4da7a4d7 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x591092cc ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x894d401d ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x945e2994 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x996c421b ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9cadc804 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc19b405e ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd2018526 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd71da80f ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xeef2f283 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xa4aee2ab arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xa7f946cc ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x1e4c2d35 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x54e1d606 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xe88eb607 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1ea21f73 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4389d777 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5d72af64 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9cc87ea6 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xad351b43 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb7fd447e nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xef85c4d1 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x928670ae nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x5aac31de nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa93857d9 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xd55171ba nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xe27145da nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xfc77caeb nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x67240a40 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8bc730b4 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xaac52ab2 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc90fb7a4 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdaa40f4e tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x00c264b2 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x022e775d udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0c0a9b09 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4f54965c udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7761bf31 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa54d70cb udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb570f111 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc96b5c60 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x2ca71602 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x351aa7b1 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc3f5978c esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8c249f3e ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf615a3bc ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf89dacc5 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x40f2960b udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe89b05ea udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x89ec4c79 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x65c1b3b4 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xb38cb89a nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xd4e43146 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x4d77359b nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x070d8a39 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0a53e8b0 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4f9b3c0f nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x59baa3d4 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb3bc6251 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbd8d6a98 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdafebdad nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x15e1d1c7 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xf70ebce8 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xf8483073 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xfcdddd6e nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x0b21549b nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xb80eb669 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x074742a8 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x08c391b0 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x180542dc l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2a3000e4 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x446d74a1 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4b56b387 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x51e52127 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x52399243 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x53d57be3 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x620d8604 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69b7ea94 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6e496f49 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x74cc9367 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x826866a5 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x84774f23 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8a9a2de7 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x955a443a l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaf39d567 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd5e8b1a5 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd7d2344f l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeb4ad855 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x7a9536b3 l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xc2fc5fec esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xd7f4c243 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xfd9efeeb esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0x089ea863 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xf5eb63f7 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5ad1179e inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x63d5fcf2 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6ffe943e inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x89548865 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9cb8e2c0 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa775420c inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xae5240a2 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xba20fabb inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xce6913aa inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x559e7b94 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0f934150 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x30f6f717 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3175bf2e ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x483d3664 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x62b1bff1 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x68a2e48b ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6bf3e614 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6ee44378 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7c868fc8 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x83f9ad55 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x98c215e9 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaffd3df3 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb8a62928 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd0bc0209 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd74db4e0 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe820a4ad ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xece60df4 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xab691eaa arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x79ad4f1f ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xa66d9ea6 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xfe49730b nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x6e7baac8 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x06305cee nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x353dd2d1 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x845258c0 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x92b7f7ed nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa0c87929 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe3d609f7 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf2a39f2a nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xa71de163 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x4fa24655 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x86d37ec6 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xca57a83a nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x2861a557 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xa79d0a67 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x058bf578 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x22aad1c7 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x68664f1b tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8e4ef3e7 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdaf1d714 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0f96c304 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x202413df setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5c99fef8 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x68c92569 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7dad4f81 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7dd705c1 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x97e0b36a udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc93b52d8 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x0fb8c3e6 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x23cc2510 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd4edb5e2 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x56120794 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9acdaf9b ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe1b8e1d6 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x550163ea udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe5c1b4f5 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x86d440f6 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x53c488ee nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x93ca3bd2 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xbc9e5d08 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x122a1e38 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x09a5bfc8 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0e637681 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x66f9c63e nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x817f83d5 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8349a2ef nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9041552b nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd8e630ec nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x207a400a nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x5336b47a nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x70811fce nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xcb7baf5a nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x52e05734 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xfb44f3f8 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x127fe8ff l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x221a6a8a l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3e812a94 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x41f1b5f0 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4464ef55 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x47bbd865 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x52378c4e l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5e98d387 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x86fb1158 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x921ed298 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9af69a5b l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa60874dc l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa756fab6 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb419df93 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb5995824 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb7deee02 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb92c2a9b l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbec3bc9c l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd24de2e7 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe95c81ed l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf03e660a l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xe47b5b72 l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xe8c64a5a l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x03d6381a nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x20e756ca mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x47b88c80 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5b59edab mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x51bb6944 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x2d8c3447 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x30b44497 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x536512b5 nla_put_labels EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbcc0d3ee mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa285155d mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf17581ba mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x06790cae ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0786eb58 ip_set_init_comment EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b2310aa ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0bee2beb ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1382ce5b ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1accbf2c ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0fdc23c7 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1e7de15c ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1f2b927c ip_set_nfnl_put EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3185c6fd ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x278dfb38 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x29bde00c ip_set_get_byname EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3a36aa22 ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3b07a089 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3e1eb0b0 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5a0e6605 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x679071e1 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x68acf371 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x71ca578a ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x46fb65d5 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4983278a ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x62221e24 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 0x8140c987 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 0x8531334a ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8c576cab ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9ddcfda4 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x825d0414 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8b49878c ip_set_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbf404e0b ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc7d0f83c ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc881b70b ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe65991d1 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeb2cdd7a ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1f87330c unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x34e5ac50 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8df26103 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd4a9a0ee ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa8ead8f5 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xac5aebf7 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xacdee028 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcb183eb1 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdac299fe ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf7469538 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7b64f6bb unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x808c490c ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa2e2c654 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc7eb9164 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x26522b51 nf_conncount_init EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x629d4c72 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x74ac0282 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7c89121f nf_conncount_gc_list EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x921f0f65 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x953e3c6a nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb564ef8f nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbb37f2d7 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbc425ab5 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xdc1a5eb9 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09652eb2 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0987835f nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd78b563f nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xff1f5d57 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02414041 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0716b79d nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x074bb76b nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b52f900 __nf_conntrack_helper_find EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0dc38506 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a20d5f1 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c982818 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d49e7be nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0cd9c23c nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11290016 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12c3a8e6 nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x146a2617 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15cae0ba nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17a2b5ba nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18c0c97a nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ad525c3 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c077367 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c4fde58 nf_ct_unconfirmed_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1cf019d2 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20fa8f74 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2218af28 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25c66bcb nf_ct_deliver_cached_events 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 0x2ac143a5 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2bc05372 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d1109f0 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30a0cc02 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3140f015 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31a5bbaa nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36b49af4 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x383797f2 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x391da525 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ace259f nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3bc74db3 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c4edf89 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e3e1e11 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x448775cd nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4790be2e nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47f95d68 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b7ae5d5 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x519f2780 nf_ct_set_auto_assign_helper_warned -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x520002b4 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x530a26fb nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5493e402 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55bdfb41 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56f0ec79 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58fc17a0 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d73b484 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29c835dc nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ce351d3 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2da30df9 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ebc2be3 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f770a83 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a36e255 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43f77412 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44397f98 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46154004 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x477bf31a nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c1cb584 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d836bfb nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5bcdd6d5 nf_ct_remove_expectations EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72096991 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72812cc1 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74688ab4 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x749d45f0 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b7a650b nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c20faca __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x804b7139 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81bba7a2 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85982fbe nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87368e57 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a235d03 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ba563a8 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d9f62ff nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7400d6ea nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76121798 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76955a6d nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x771b3103 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7dd6612c nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f6eb927 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84dfbd63 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x882ed607 nf_conntrack_hash_check_insert EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x900b3328 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91f089d2 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92156f35 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1e07a60 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3cacbee nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7766f2e nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8ed5e2b nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xabc0591a nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91d1e65c __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9492002b nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f767924 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f8884da nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1e852ac nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa446bf99 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa576ea37 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa84681a7 nf_ct_unexpect_related EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3acc515 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5ed7e17 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb663bdde nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7e6fe3f nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbcac8ae1 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe210184 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf22a88c nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb00854b0 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7844615 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8f2ccb8 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb2984d9 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc4bf69c __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf0faa62 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0fb920b nf_l4proto_log_invalid EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3b5aa38 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2ef66d8 nf_ct_netns_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7863160 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9137c9d nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca612cee nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcadfa2f8 nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd12e2d0 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc43ec3af nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc675b709 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcaf23f21 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb7e4bc8 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc77eac5 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce7b2568 nf_conntrack_helpers_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xceaaac37 nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf0a658b nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcee32bcc nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd221276a nf_conntrack_alloc EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd71de732 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd994999e nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9928cd6 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9c7ca06 nf_ct_expect_find_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9cc99d7 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd299198 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdde053d8 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc85b844 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xddf2b817 nf_ct_acct_add EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7afb080 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec79b103 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe24d8231 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe780ca6a nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe84fb0cd nf_ct_expect_init EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef029b0f nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0005163 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0c85886 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1806609 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8f8d80 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee36a5f3 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xefb80f8b nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf024dc8d nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0f8ab99 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2175c62 nf_conntrack_tuple_taken EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf24e79d8 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf28166aa nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf343c4f9 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2977cea nf_ct_expect_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf41bde9d nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf58e7e5f nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd448c2b nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd662398 nf_ct_helper_expectfn_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe7e8ddb nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfefdad7c __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff7cef5b nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x23bf0edf nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x28222d1d nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xfcdcfc81 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1b517964 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1f34190a get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5fc325a5 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8b4543a3 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9bbc6375 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc2f35ea2 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc9fd2425 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xde259323 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe0c32be3 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xef7b3b74 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x5b08e1e1 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x68d98759 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x69d16fd2 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x754697a8 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa435b43e nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0fa00ca3 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1ef33081 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x435abd10 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x62262710 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6ed62446 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xafe14941 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfe7ba7e3 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xac67f8e4 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x75e02a38 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x0f00a173 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x0f532b1d nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xf1736fe0 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x269ab54a flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x27051e3e nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x31b90f41 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x454c2f58 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4d6efd8a flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6e323737 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x82d8ec92 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x865d71b5 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8a499166 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9dc522e6 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb33f3978 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc3c13ecf flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc719ccb7 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc7a76ec3 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdd10fbca flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xec351a00 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfad39527 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x095e43f9 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0c92f6a0 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1fd98790 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x870aa35f nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x9afdcfb3 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x0ddd2f71 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x01f0057f nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x04e15470 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x32cced39 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3f2a33ef nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x51830ade set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa8b0e8c6 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb8c249b8 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd348cdd3 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe0d8ea40 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe5e5c18a set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x39cdbe3a nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0c80decf nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1ee248f1 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4f6eb81c nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6d506502 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x00dff9d0 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1dd66319 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x39493aed nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5cb1324b ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x87295aaf ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9384c4d6 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbe8d74af ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xbf1c59b1 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xe8539eaa nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x281446be nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x2c81c0c8 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe345aa6a nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x075a10e4 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x09768539 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x29e9fe09 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3ceb59ef nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3e7ecba9 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4bbe31fc flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4dd829c5 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5e6ab8ed nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6444265b nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6dda18bc flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7a665cbd nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x82ea2024 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x94815a7f nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb139bd74 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb18cc3cb nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcb836cd7 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd8952120 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0abd4ade nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2216cb42 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x29a7b82d nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x311176dd nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3466fa19 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x37c6867b 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 0x4199299d nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x443e0f6f nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7a8b5f0b nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x95b9e36c nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa72d6c3b nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa82a9589 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xacf11600 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb0e89e8f nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb5a83585 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xceb8f222 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3dd656a7 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x79534839 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa9ebbf35 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc47f1614 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcf29fa88 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd1ed9f0b nf_nat_ipv6_unregister_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdbccfc77 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe7429707 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf78ed44f nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x09613090 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x181e34b0 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf66d13c1 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf9cc5174 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfaebd6cb nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfdc4b4c9 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0c7d7938 synproxy_recv_client_ack_ipv6 EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4c9f73a8 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x65170a45 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6b7d676f nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7a02634f nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7bdd5c02 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa44d1497 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2a53c61e synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3164158e ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x32131ec4 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x64dcd8b4 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7a71d68d nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7dbefc8f synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7df25fa3 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8ca44874 synproxy_send_client_synack EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd1fcd463 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe86e37b8 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf7dcf609 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x01b8c432 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf31c5f90 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf49fd6be nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x01247af1 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0336af29 nft_unregister_flowtable_type EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x08761dc0 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a815605 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0b57409a nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0893c7fc nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1446a392 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x18b9baec nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x25af7f0d nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x294c40b7 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2995b5d5 nft_set_elem_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x38584822 nft_register_obj EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x46824d65 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41c4aa6b nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x45a8ca43 nft_meta_get_init EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x47ce078d nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4ce3e7ba nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5033c434 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x51888d26 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x51dcb68e nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x52dedafa nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x53943057 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x555db80f nft_do_chain EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fb50673 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6010c915 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6a0ce939 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6cce69a3 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e23c80a nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x71f0635a nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x752c3403 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x77db9b81 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7801822f nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c72f6fc nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x83769283 nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x84786cf2 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x86716da7 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x92d6ae49 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x962559a8 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa4e1550f nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa533de0c __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa96cd571 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb49a25c2 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb5632346 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb9134180 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc6b6cbfe nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x64463b8e nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6ab05d25 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d969982 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x75585508 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7e898ea3 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7f49376d nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x81fd11ee nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x83a5209b nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8446fee1 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f1fad5c nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9ce5babd nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9dd051ea nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa6482a56 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa8b863a5 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaeb9c1b1 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbbd5f83c nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc133d1d9 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc85dc9a7 nft_flowtable_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcace3f30 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde3db1f5 __nft_release_basechain EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe18c7d86 nft_meta_get_eval EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfcb2544e nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x189ed1f5 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x303399f7 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3ad3d326 nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3f361449 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x59fef04b nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeb841c24 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xebbf7b86 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf07a649c nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfae47605 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfeef72f4 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x32f6269e nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x443a0a2a nfnetlink_set_err EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x77935b24 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa4c9128c nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x70036c63 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7973b8f0 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x916c73ef nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbb2367e8 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcb3a2565 nfnetlink_has_listeners EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x042b8bf0 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x1c811ad3 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x72266db0 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x025fcbbb nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x346417a9 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa6455b92 nfnl_acct_overquota EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x337a4241 nf_osf_match EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x7196e89c nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2c12b010 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2fa17008 nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x76d1347d nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x834edc0a nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x515fe8d8 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xe4dbe25b nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0293c980 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x5a3aec46 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x85d907a8 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x8d755e35 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x01db599e nft_reject_dump EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x262e87df nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x4d09bfdb nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc030f63f nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x648887ad nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x95b47b78 nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x03ed722b xt_register_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04fee781 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x05471bbc xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x058d19d0 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24642fa1 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x27859b25 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3c3c0407 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5dd2fac5 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6d9fa699 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6e79ab48 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73bed086 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x076381ef xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0c2c34f3 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2b967a04 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x33519eec xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x339b2386 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5a1b71b9 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5b513ddb xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x60b4b54b xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7542c3cf xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x791e751b xt_check_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fe176fc xt_unregister_template 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 0x84d88971 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x868db282 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x87cfb73b xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8f4d7181 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x888cf7bd xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8d42fa52 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x91a4bb15 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x93dce2ba xt_request_find_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9f3acd0f xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa32e3f18 xt_unregister_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa8a7f436 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xadd0f623 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb13cf9ed xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbe214943 xt_table_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc5271696 xt_register_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcf1fd6af xt_replace_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd2394e75 xt_compat_match_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd4df1833 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd8d90190 xt_request_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xda0e63b1 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdc167c3c xt_compat_target_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdf2d0b90 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xffc13194 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x2b3c8910 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xdd348b64 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nsh/nsh 0x3b225b32 nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0xf62bf5eb nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1b1519d5 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2da12b96 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x64846bcf __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x65d43981 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6a80eabf ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9ca269d4 ovs_netdev_link -EXPORT_SYMBOL_GPL net/psample/psample 0x3a8f51ba psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0x98abeaf6 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0x9fd6c5ca psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xd2b1c660 psample_sample_packet +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf282d5e6 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x222668ad xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x59cf3a6c xt_rateest_put +EXPORT_SYMBOL_GPL net/nsh/nsh 0x20914a1f nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0x232a9a62 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4641911c ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x73128365 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa63d219e ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb191c268 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbe6eb9a6 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcb7b2d41 ovs_netdev_link +EXPORT_SYMBOL_GPL net/psample/psample 0x05cf86c7 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x7459586e psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xd81c7895 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xee763ed4 psample_group_put EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x073951e4 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x0b7a04d8 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x191bbee8 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x1ab66a55 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x1d4c48a3 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x1d66a835 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x24c483df rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x268d70ee rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x0667fa68 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x0711c312 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x0b1eede6 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x10384206 rds_info_deregister_func EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2efdb324 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x34008577 rds_rdma_send_complete EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x38512fdc rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x3ecdc0df rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x3de1f214 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x3ed3d7b7 rds_conn_drop EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x45f286fd rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x4938ac33 rds_inc_init EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x64f476de rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x671aa5b8 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x681577b1 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x6d270cbf rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x73f2a4ef rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x7608ba93 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x66d784cd rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x68c03056 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x7035d07c rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x73312a01 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x7430c4e3 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x777074ae rds_connect_path_complete EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x89fdcf2c rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x94390ac6 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x9fff8ba8 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xb99d4f38 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x8dcd5c7d rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x956205e6 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x95f50fd3 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x96526ada rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x9b0dc327 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x9da954a6 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x9f9488db rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xb6cc07a8 rds_conn_create_outgoing EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc5133b6d rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xc5c23b31 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xcb48172b rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xd3deba93 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xc9c19fae rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0xd1982d3b rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xd4668b5c rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xd5e99532 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xd7df06a7 rds_message_unmapped EXPORT_SYMBOL_GPL net/rds/rds 0xd949fdff rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xefc1264b rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xf13660d3 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xe6b54916 rds_trans_register EXPORT_SYMBOL_GPL net/rds/rds 0xf1bbab74 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x47fa7e45 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x39441157 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x4c9e1799 pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xa4934b22 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 0x3b44ce3d sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x484c29cc sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0xda383d9d sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xdb2ff894 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/smc/smc 0x0c4202e6 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x49c85907 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x5bfc3de1 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x67900e9b smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x6ff7bbe7 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x7e97eaef smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xa65c8330 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xac98719a smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xd38b16bd smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xf07e4539 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/sctp/sctp 0x1e0919dc sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x24e11edd sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xe3d2bb3d sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xfd75c3fd sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/smc/smc 0x063787ea smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x33d3a0a5 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x54400fa8 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x603d43c2 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x7673d2c8 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x8bfb077d smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x8f628209 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xbff717e2 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xdcb4cbbd smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xf967f89e smcd_handle_event +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x085ae658 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x10047f96 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 0x7fb05752 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x898fcf67 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa7e393f2 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa20ffa9c svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc8a48e3a 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 0xdbb09382 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0357dbf1 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05c79a33 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0260ebf5 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0293b69c xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03443254 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x040ecc53 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x044618dd xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04aa7d02 rpcauth_lookupcred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x070e0d85 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08d10ebd rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a50cf64 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d31898b svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06df1dab xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a5c176a csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aa6de37 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b402cb7 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c208033 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dbfe163 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dfb83fe rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10096aef sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x101fe839 sunrpc_cache_update EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x103944c1 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10a57d75 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1282da4a xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1635649c rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16e93655 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x171a042b rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x171b9288 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1767869f svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17cb5199 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1832805a rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b6925d2 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cfaa816 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d959a55 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e01fcd4 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x118f3004 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12a95f6f cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1561caee svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x178f5620 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x190616f1 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19afe863 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ce6e7d2 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d65bfd6 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d661cff svc_wake_up EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ea381e5 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21e6a9ad svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x231dc869 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x247ab023 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24888b27 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2512c010 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25d03b67 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x273c0b5a xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ecf302a write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f1dd4e9 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x213f563a xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21791b2c svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24bcc71e xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25872957 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25bd01c3 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25fdf67b xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x266560e0 xdr_decode_word EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2845c4ee rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28bac923 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28800169 xprt_wait_for_reply_request_rtt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2995ddf4 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a1cc85c cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b009bc1 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bc8458b rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cfb007e svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d295c06 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2da05b89 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e61445c svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30fa4a13 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29207a58 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b66d8da rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c60f2bb xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d40c6fd _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d561c6b rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d7fc224 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e4e2fc7 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f04724d rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f157ef8 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f1860b5 cache_seq_start_rcu EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3385cd28 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33c02bfa xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34ef372d xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x380eb9e0 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32427d64 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33f73863 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34a47329 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34b11652 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35610b0b rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3712d641 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x373d61ae rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x376bfd57 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x378146fd svc_reg_xprt_class EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bd81b61 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3de48ed2 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e5c6360 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387ed7ad rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39281038 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39660c05 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b25977e rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c1232b3 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c729b04 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e84726e put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f7b2c66 rpc_put_task_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x402aef9d sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40523a97 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40cbbba5 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4158f8ee sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x424bc8fe cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42cc88dd rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x430ec403 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43adeb80 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4460449c rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44ed12d4 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fc40053 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40166fd3 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40c94630 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41f41d31 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x426cc2d3 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42934be2 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42a2759c xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4313f0f9 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x438757d2 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43ea71cd xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44583039 rpc_call_start EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45e4151b cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x464be91d xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47931421 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x479440b6 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45ee3fba svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x468ab08f rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46fe649a svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x473fd118 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47aab689 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48540cf5 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48f4c590 svc_rqst_replace_page EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b5d2053 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d15d0aa rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b7476a7 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c282496 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d1b6816 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d4de842 rpc_sleep_on_priority EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4db8f0c0 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dfed746 xdr_stream_decode_opaque EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4eb44e7a rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5043bb7a rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50eb1989 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x520b9519 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52e37157 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x506bd3ad xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x521cf07f xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52870a96 xprt_complete_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5393625f xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54fa4d91 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x568beaa6 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57724622 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57d5bf6c xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59453503 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5371b4a2 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56f79105 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57cb5d54 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5895fb05 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a08f684 svc_xprt_received EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b125489 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b2bed59 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ba88eed svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ebdf410 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f2a1d9e cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fdb136f sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60abdf02 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60bcba31 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61a688d8 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61b7333c rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x632f2717 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63ac1bc4 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64bba8ca xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x652c3cd1 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65979237 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x662a46bb xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66f26029 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x681947ed xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x681a4066 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69ee4822 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a332bdb svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c8c7d6f xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a5b9c50 svc_set_num_threads_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a726faa svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ada6867 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5afdbb57 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b196076 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b2cd85b svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ba57b68 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5db3d5c0 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e9a5ce0 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fbb1bcb rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61ada515 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61fb8f90 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6273f1f7 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6553b1d8 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6567c489 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65bc7aa6 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65c74a13 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ca46fc rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67264c68 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6896ae37 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69675718 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e145f68 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e173bc3 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e18c6dc xdr_stream_subsegment EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e9516ec rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ea6c582 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eb08372 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ec9f40f xprt_wait_for_buffer_space EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f356271 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x703a2a6b rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fb41a5e xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7106ad6c svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7155432d rpc_clone_client_set_auth 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 0x769c7632 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76e9f175 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x778e2c4a svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77d41ab2 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x798c27ee rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a84a5af xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c434e5a rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d913e10 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75c0f201 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x762f07cb rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7671c63c xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76c7b815 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7805aa06 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x782cf4b6 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x792a61d5 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ae93fa8 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b5b66d9 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b8fee7d rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dac2aac xdr_encode_word EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8304bb7c svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8452e217 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8466ab49 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84dfa5fe rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85aee0aa cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ea25aef rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80281291 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80b8ad04 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8143d684 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81b17dc6 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83259dcb rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83354b7d svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83f850a4 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84554602 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x847a0fa2 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84f2ea40 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x857d10b2 xprt_unregister_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85cc37ad rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87a54b0c svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8872b629 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89b55bdc svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89d3747b sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d1656ca rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d2119d1 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fae0a1c rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9434788f rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x872237c7 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8818e7d3 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88299f8c rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x894e2d6b rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b9182a8 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bdde940 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e4e64eb rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e817d2e xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8eabb0d2 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f16ce92 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x921caf3d xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92406e8a svc_generic_rpcbind_set EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9472e08a rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94ab913c xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94dbda7a rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97ee64cd xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x999cbdf8 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a8b9ac1 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c90d039 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d5fce76 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e82a02c rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x960e4bb7 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99f44893 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ac419a8 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b59ad96 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b5de3d9 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9da2fee5 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0bf85e5 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa132ac09 xdr_read_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1863dcd xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa18bcd5f xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa219d5bc svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa243982c rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa256f562 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3015802 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3557b67 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa49a032b xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4ce4a27 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa51d202a rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7225414 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7a5e1a1 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa92f763e rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa97ff23b rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e2c33c rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa9b7a17 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacd0f813 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaed6884a xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf3dffd8 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa23e6bd4 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa35b874f rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3cce072 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3e3523c svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa590deef rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab8be39a xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabafefcf xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac276b5d xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xace733bb svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad37fa8a xprt_request_get_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb00fbe34 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb076c14b rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb243a999 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb252aee7 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb14dcef0 rpcauth_wrap_req_encode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3b185db xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3737341 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4414fd9 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4f2c9d0 rpc_clnt_xprt_switch_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb542d6e4 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb54a33bb sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb550efbe svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7f128aa svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbae0bea2 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaf22e6f rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd5d9789 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbde9867d xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbeca9186 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbee30340 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf7f6ddc rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb538c5bf auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6265d69 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6d1a02d svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7fb4ce7 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaf0a496 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc006395 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc94a253 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd082d28 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd09ce9e svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe1a1ab9 svc_unreg_xprt_class EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc095b1cb xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0ae604f xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfa19007 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfdfc706 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc018d093 rpc_restart_call EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1ded8fd xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2030047 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc47c6a5c xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5f0c320 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7919932 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc88c14d6 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc23bddf9 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3b10094 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc50d114f rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5988155 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6cf2439 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6d7f63d xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6de4369 rpc_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc98b18fe cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb289b2b svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc0de8a1 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc9061fc rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd034ef9 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd93a88e xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdd6e03f rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca88f114 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb087ffd auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce2e3be8 xprt_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce7987bd rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce7e87c9 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xceabd455 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf9c35fc cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd28e4ad0 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3f18c1f rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd45e4d88 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd66e04ef rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6a09da6 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd787579c rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda32fdc6 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbfa2498 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd1511b3 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1d6693f rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd23efb18 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6b4c023 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6cfdc32 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda668802 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda84e342 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb0bcd18 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb879f01 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc2a70c0 rpc_proc_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf9ad1d2 xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0033b24 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe06e839c xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe20af0a5 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe266a4a8 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2b50b08 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe35295bd rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3e4a0cb svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4245588 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde92ff1b rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xded23304 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfcb8c85 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdff8f5dd xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ed9f30 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe24f47cd svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe288efd8 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4622b63 svc_destroy EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe60953a9 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7bd0113 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8293382 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5dc3e00 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe69b4563 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7970593 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8cbd879 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8f4006f rpc_max_bc_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9b4a9ad xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb6684b6 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeca5ba4c rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecdd217c rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea779426 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec79f48d rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed2ce630 rpcauth_unwrap_resp_decode 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 0xeead9e4f rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef077372 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefc9309b rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeff4c444 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf107ab78 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf21ecbed rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4e735d8 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf536579e rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf595e635 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5bf33a6 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf62798c5 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6b3f5c9 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0efa09 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef7bdb01 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0f6f6e4 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4fd51f8 xprt_release_rqst_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7fca26f rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9704ea4 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa19ff0c svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb144452 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb1a4be3 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb2fb0f3 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb384bc9 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfba93277 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbc09059 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcf8997f xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe0cbd00 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfeab9ca9 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff44d7ae rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff45c308 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffc379a3 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/tls/tls 0x87c66481 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xb0fb8e4f tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0xb2e90af4 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xe90dc6fd tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x016a81bf virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb6f0134 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff2f9c95 svc_prepare_thread +EXPORT_SYMBOL_GPL net/tls/tls 0x03fb159c tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x555fc504 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x6af856d1 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x8603327f tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x007d82a4 virtio_transport_connect 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 0x174e7e03 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1f541682 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2db419ef virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x336ee815 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3c4bcdc7 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x54507718 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x572c6bb7 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6ba426cb virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e8943cd virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6ec50134 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6f349275 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7236bab9 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x784572d3 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7d0c7421 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x84d5ac61 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8889cb6b virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9a9a66fd virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa143d493 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa180c79b virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb341b8f1 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x09c1f084 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0fe20e6c virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1eaa145d virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x24c0202a virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2570b80a virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x45de46c9 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x57bcdb17 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5e5af40a virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6db90307 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7c4501ff virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7ca54854 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7e2fb3cf virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8ec84fc1 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x93aae5c7 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x96749f1f virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9b35872d virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb00508cc virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb0c3f9a1 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb2c2931e virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb7835835 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb8dcc9d0 virtio_transport_stream_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 0xbee5cfe6 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc0adb84e virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc3aa119e virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcde08c5d virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd0c564a9 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd8f38c44 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xda16e6cb virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdab6cb85 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdea21218 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdea7c21f virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe6d6617f virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf09beeff virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf1fa0f38 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd1d9d128 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd25f47fd virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd96ac537 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb215f1a virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb73be16 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe22fdf23 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe5155e9c virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe566d74f virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe79ca839 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeeb92300 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf81d76d7 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf85e448c virtio_transport_notify_send_pre_block EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1bd2925b vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x22b3ac21 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x19530ae7 vsock_add_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2df63221 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x324be813 vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3275334f vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x35e28b67 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3644597c vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x384a2f0d vsock_stream_has_space EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4728bcbc vsock_find_bound_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5503404a vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x64447c74 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6dc42a4a vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x700553ee vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x82612a62 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8bf08021 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4c3f4dfb vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4f38d52e vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x58569216 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d18fa4 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x687e7bc9 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6e383231 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x719991d4 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x83e3a24c vsock_remove_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90ac2f53 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x967c5099 vsock_remove_sock EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa709d0cc vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xad0416d0 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa424e49f vsock_core_get_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb844b677 vsock_addr_cast EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd00a591 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbdfe306b vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xca648c09 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc0a97825 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc10e9724 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc74178b4 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc764178a vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd49a58af vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe026c32f vsock_deliver_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf753f9c0 vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfbe8ab7e vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf45cb1e3 vsock_core_register 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 @@ -9980,178 +9983,151 @@ EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname 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 0x03ffdf29 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x619dcedc ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xbe48ce27 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe9639228 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x4928e3ef ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x53d6203b ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6fdff93b ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9b94b61c 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 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 0x000f7987 kvm_vcpu_is_visible_gfn EXPORT_SYMBOL_GPL vmlinux 0x00132d0e list_lru_count_node EXPORT_SYMBOL_GPL vmlinux 0x0029dcb7 srcu_init_notifier_head EXPORT_SYMBOL_GPL vmlinux 0x002c8869 tpm_chip_stop EXPORT_SYMBOL_GPL vmlinux 0x00380138 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x004d309a dev_fwnode EXPORT_SYMBOL_GPL vmlinux 0x004f4e21 __gmap_translate EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x009bdc66 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x005f566c ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x009cf1df bio_release_pages EXPORT_SYMBOL_GPL vmlinux 0x00ac8897 ptep_notify EXPORT_SYMBOL_GPL vmlinux 0x00b86d83 virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0x00bd7de4 init_user_ns EXPORT_SYMBOL_GPL vmlinux 0x00d28ba6 acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0x00f64c23 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x00e69ba7 device_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0x010f8983 gmap_register_pte_notifier EXPORT_SYMBOL_GPL vmlinux 0x011796d8 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x011b038f kvm_write_guest_cached EXPORT_SYMBOL_GPL vmlinux 0x01413c5f css_schedule_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x019406a0 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x01adbf65 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x01903c0d dax_writeback_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x01c7862c serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x01d0a9ba skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x01dd70a8 __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x01ec8e00 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x01fb5ada udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0x02096942 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x021cc041 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02289d62 fwnode_get_named_gpiod EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x024f8d7b device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x0252801e kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x025ba376 msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x025fcd88 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x0269857f __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x0276daa8 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x02b41dd4 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x02ab1b76 gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x02f422a2 inode_dax EXPORT_SYMBOL_GPL vmlinux 0x030a85be bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x0317c392 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x031a6bba lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x031c5a02 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x0328adc5 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x0326bee1 fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0x033cd998 fscrypt_set_context EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034c0c1b __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0352165b fwnode_get_next_available_child_node EXPORT_SYMBOL_GPL vmlinux 0x035cfc2f devres_destroy EXPORT_SYMBOL_GPL vmlinux 0x036a4f81 blkcg_policy_unregister EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x0376bfa8 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x038a6f8c bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0x039413dd pci_generic_config_write32 EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe EXPORT_SYMBOL_GPL vmlinux 0x039c10af pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x03a03233 fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x03acd8c8 inet_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x03b090c5 xas_init_marks EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present EXPORT_SYMBOL_GPL vmlinux 0x03d03c94 iommu_uapi_sva_unbind_gpasid EXPORT_SYMBOL_GPL vmlinux 0x03d4fc06 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x03e5e751 follow_pte EXPORT_SYMBOL_GPL vmlinux 0x03f800c7 add_hwgenerator_randomness EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x041a2097 gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0x04443d47 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x042b07a0 do_splice_from +EXPORT_SYMBOL_GPL vmlinux 0x042b7fe9 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x04338833 sched_trace_rq_cpu_capacity +EXPORT_SYMBOL_GPL vmlinux 0x0450875e devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x046069f6 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x0463629d __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x046431e0 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x047d7354 do_truncate +EXPORT_SYMBOL_GPL vmlinux 0x04751ada xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x04765cf9 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x047787f0 fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0x0486fc32 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x04a25138 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x04a6abfe __trace_array_puts EXPORT_SYMBOL_GPL vmlinux 0x04a6fee6 software_node_register EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x04c39c36 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose EXPORT_SYMBOL_GPL vmlinux 0x04ea8706 __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x04eda137 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x04ef01df sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0x04f346c9 debugfs_create_regset32 EXPORT_SYMBOL_GPL vmlinux 0x04f494eb sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x05196b49 __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x05298320 trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x05337ff1 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x0534562e get_task_pid EXPORT_SYMBOL_GPL vmlinux 0x0535a23d balloon_page_list_dequeue EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt EXPORT_SYMBOL_GPL vmlinux 0x0561cd24 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x0565a9ee __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x0566859a crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x0567193e skcipher_walk_async EXPORT_SYMBOL_GPL vmlinux 0x056d9d20 alloc_empty_file EXPORT_SYMBOL_GPL vmlinux 0x057012e0 debugfs_lookup_and_remove -EXPORT_SYMBOL_GPL vmlinux 0x05752e2e vfs_inode_has_locks EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x058c9c87 sched_set_normal EXPORT_SYMBOL_GPL vmlinux 0x058e2bc1 fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0x05cb0a54 ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x05e17844 __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x05ea928a device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x05f27b89 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x05fbb88f crypto_stats_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x0608bfd8 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x0617db1f tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0x061a6a17 rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0x06237141 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0x062f0cd2 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x064d5534 ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry EXPORT_SYMBOL_GPL vmlinux 0x065a7a23 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x065f31e5 access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0x066c9eed vfs_removexattr EXPORT_SYMBOL_GPL vmlinux 0x067553c6 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x06957ae3 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x06a05e15 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x06bb57f9 device_for_each_child EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06dac588 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x06f10b17 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x06f3e117 netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x072e7dd8 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0x073baa55 bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0x073d38af debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x073f33ae xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x07426cda crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0x0745e54b gmap_sync_dirty_log_pmd EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x0750c1e3 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x07489300 apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0x0757eede stack_trace_snprint EXPORT_SYMBOL_GPL vmlinux 0x0761ecc6 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x078a947d __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x0770a24d tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0x078f26b2 gmap_read_table EXPORT_SYMBOL_GPL vmlinux 0x07aacc33 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x07ae84ae inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0x07b2de60 hvc_instantiate EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue EXPORT_SYMBOL_GPL vmlinux 0x07cb7afb sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0x07cefdea kvm_io_bus_write EXPORT_SYMBOL_GPL vmlinux 0x07d10455 pci_epc_get_msix EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache EXPORT_SYMBOL_GPL vmlinux 0x08165fb9 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x081ecb79 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x0820e3ec css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x082c100a trace_event_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x083605c5 blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x08374579 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x083dbe25 fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0x08436119 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0845ce11 ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0x085001cb handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0862bb06 inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0x0863f519 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x086426dc raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x08760a98 __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x08a72f34 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x0899b23b sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0x08b2e9aa hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x08c32e39 iomap_truncate_page EXPORT_SYMBOL_GPL vmlinux 0x08c489ce is_hash_blacklisted EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory EXPORT_SYMBOL_GPL vmlinux 0x08f196bf transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x08fafbe3 rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0x09093a12 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x0917a2b3 __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09310059 sock_prot_inuse_add EXPORT_SYMBOL_GPL vmlinux 0x09380328 auxiliary_device_init EXPORT_SYMBOL_GPL vmlinux 0x094632c5 debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x096f035e sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x09484cb2 gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0x098f6852 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x09b016fa inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x099265dd devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09cd6ced preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x09ec5ec3 __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x0a37fb48 iommu_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x0a4a72e8 alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0x0a4de9fa firmware_request_platform EXPORT_SYMBOL_GPL vmlinux 0x0a54eef8 bd_prepare_to_claim EXPORT_SYMBOL_GPL vmlinux 0x0a604c8f blk_mq_update_nr_hw_queues @@ -10159,10 +10135,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send EXPORT_SYMBOL_GPL vmlinux 0x0a7784b9 iommu_fwspec_free EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x0a8c29aa sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x0a8e4c57 crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x0abf972b lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x0ac8d54b devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x0ae4129a ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x0a947bb6 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x0ac2043b nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0x0ae7be69 fscrypt_symlink_getattr EXPORT_SYMBOL_GPL vmlinux 0x0aed6f8b devm_kmalloc EXPORT_SYMBOL_GPL vmlinux 0x0af78203 sysfs_rename_link_ns @@ -10173,274 +10147,279 @@ EXPORT_SYMBOL_GPL vmlinux 0x0b11a171 klist_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource EXPORT_SYMBOL_GPL vmlinux 0x0b34d68e iomap_invalidatepage EXPORT_SYMBOL_GPL vmlinux 0x0b45cac1 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x0b5476e1 kvm_init EXPORT_SYMBOL_GPL vmlinux 0x0b5bea7b dma_buf_move_notify -EXPORT_SYMBOL_GPL vmlinux 0x0b9025d9 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0b66383a udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0b69c532 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x0b8203b7 sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0x0b9b444f __pci_hp_register EXPORT_SYMBOL_GPL vmlinux 0x0ba8403e relay_subbufs_consumed EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory EXPORT_SYMBOL_GPL vmlinux 0x0bc5481b clock_comparator_max +EXPORT_SYMBOL_GPL vmlinux 0x0bcd39e2 crypto_register_skciphers EXPORT_SYMBOL_GPL vmlinux 0x0be4c97b clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x0be6a11a scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit EXPORT_SYMBOL_GPL vmlinux 0x0c11f5d2 fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x0c1af991 __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0x0c1b0992 fscrypt_prepare_new_inode EXPORT_SYMBOL_GPL vmlinux 0x0c24933b __devm_pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x0c26bdd5 klist_next EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c3ad9e6 wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0x0c479a6e fuse_sync_release EXPORT_SYMBOL_GPL vmlinux 0x0c65d4e2 blk_mq_unquiesce_queue EXPORT_SYMBOL_GPL vmlinux 0x0c6bd4bf tpm_pm_suspend EXPORT_SYMBOL_GPL vmlinux 0x0c723f46 fsnotify_find_mark EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string EXPORT_SYMBOL_GPL vmlinux 0x0c8b32d6 __bio_try_merge_page +EXPORT_SYMBOL_GPL vmlinux 0x0c8e5a52 tcp_twsk_unique EXPORT_SYMBOL_GPL vmlinux 0x0c9ba2bd irq_find_matching_fwspec EXPORT_SYMBOL_GPL vmlinux 0x0ca09c9e sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0x0caa2f17 skb_morph EXPORT_SYMBOL_GPL vmlinux 0x0cad3639 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x0ce1964b page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x0cf95e8d lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x0caf0651 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x0cf1a3c9 fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0x0cfc1f35 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x0d3482a6 gpiod_set_config -EXPORT_SYMBOL_GPL vmlinux 0x0d3b2e9c udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d2cd3ae msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x0d2f7d9a __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x0d352582 gpiochip_free_own_desc EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open EXPORT_SYMBOL_GPL vmlinux 0x0d51c0eb debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x0d546c1c tcp_set_keepalive EXPORT_SYMBOL_GPL vmlinux 0x0d54756e vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x0d6666b7 devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0x0d6f0b99 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0d7d0406 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x0d8577dc sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0x0d9a00a1 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x0daa6358 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x0da41130 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x0dad5e76 inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0x0db1dc03 pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0x0db39a1a devm_gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order EXPORT_SYMBOL_GPL vmlinux 0x0e00894f kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x0e05820d put_device +EXPORT_SYMBOL_GPL vmlinux 0x0e11933f gpiod_to_irq EXPORT_SYMBOL_GPL vmlinux 0x0e2db7f0 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x0e4a300f crypto_aead_setauthsize EXPORT_SYMBOL_GPL vmlinux 0x0e4e04b1 pci_epc_stop EXPORT_SYMBOL_GPL vmlinux 0x0e541f71 __alloc_percpu_gfp EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e69d4ed ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e7fbc6b crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x0e867fb6 platform_get_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x0ea37a85 devm_gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x0ec07034 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x0ecd7d17 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x0f005c61 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x0f15475a perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f237b1b validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x0f191b23 ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0x0f3b8882 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0x0f40a65c netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x0f419551 bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x0f5bbe6a crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x0f5f16a0 sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0x0f611aa6 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0x0f65f5e9 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x0f6e8199 devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x0f6f2974 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x0f73f297 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x0f80398d __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x0f841cad serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0f921584 crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x0fb90be0 crypto_register_rngs EXPORT_SYMBOL_GPL vmlinux 0x0fbffec0 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x0fc35886 lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fdbd0e8 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x0ff5f546 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x0fe2cc34 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x0fee523f gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0x0ffaba23 dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x10005d39 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x100f205c crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x101bb7a8 ethnl_cable_test_finished EXPORT_SYMBOL_GPL vmlinux 0x10377646 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x10467ac8 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x107fb1fe blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x10814038 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x108e77f5 parse_OID EXPORT_SYMBOL_GPL vmlinux 0x109c8e8a kernfs_notify EXPORT_SYMBOL_GPL vmlinux 0x10a82f5d __pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x10caaa8e anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x10d36625 pskb_put EXPORT_SYMBOL_GPL vmlinux 0x11010bca __kthread_init_worker EXPORT_SYMBOL_GPL vmlinux 0x111f2c25 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0x112616c4 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x11265a3b fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x113cf81e sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x114300a1 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x11663547 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x1174b99e __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x11871cba bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11ae20fb __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x11a34e30 switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0x11ec5aca kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x11edce68 switchdev_handle_fdb_del_to_device EXPORT_SYMBOL_GPL vmlinux 0x120eebe9 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x1215fe42 mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x121ea4a2 metadata_dst_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x123a152c __unwind_start EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x125db923 __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x12670cca device_add_software_node EXPORT_SYMBOL_GPL vmlinux 0x126918e9 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x12c7adb0 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1293a407 __traceiter_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x12cdbd51 verify_pkcs7_signature EXPORT_SYMBOL_GPL vmlinux 0x12df5b55 fuse_conn_get EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq EXPORT_SYMBOL_GPL vmlinux 0x133488c8 blk_ksm_register EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x1360359f skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x13461e65 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x1356f5fe __traceiter_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x1366bdd2 netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x1367f561 virtqueue_enable_cb EXPORT_SYMBOL_GPL vmlinux 0x138b979f fuse_dax_cancel_work EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x13a6cb01 device_show_ulong EXPORT_SYMBOL_GPL vmlinux 0x13a86aa4 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x13ce760f register_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x13d56059 pci_epf_add_vepf EXPORT_SYMBOL_GPL vmlinux 0x13da2d79 blk_poll -EXPORT_SYMBOL_GPL vmlinux 0x13dac361 vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0x13e7fd83 __wake_up_pollfree EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13f44c5b call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0x1408ca2b driver_find_device EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x14452bc2 kvm_vcpu_map EXPORT_SYMBOL_GPL vmlinux 0x14455bd4 debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0x1452256d pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x1462d702 __trace_note_message EXPORT_SYMBOL_GPL vmlinux 0x146a962c irq_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x147c6f90 blkdev_ioctl EXPORT_SYMBOL_GPL vmlinux 0x148031f4 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x149b2121 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x14eaa29f scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0x14ebefb3 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x1493ec9a bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x14b8ff4c xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x15035afa mmput EXPORT_SYMBOL_GPL vmlinux 0x150a0561 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x151d7279 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x151f980e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x152ae166 tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0x153986c1 debugfs_create_ulong EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x1545a14e inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0x154fcb5e key_type_logon EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x155de667 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x15531680 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x156c9ecd fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x156e1b91 locks_release_private EXPORT_SYMBOL_GPL vmlinux 0x157bc422 s390_enable_skey -EXPORT_SYMBOL_GPL vmlinux 0x158847ff crypto_stats_rng_generate EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x15d47a62 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x15d3bc1f gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0x161b0e57 device_release_driver EXPORT_SYMBOL_GPL vmlinux 0x16399d0c md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x1640c8f1 desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x1645070b rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x1657ce25 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x165b18f0 skcipher_walk_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x1678f30c crypto_alg_sem EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size EXPORT_SYMBOL_GPL vmlinux 0x16914c96 s390_replace_asce +EXPORT_SYMBOL_GPL vmlinux 0x16914ec7 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x169482bf gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x16a47009 vfs_setlease EXPORT_SYMBOL_GPL vmlinux 0x16aa93c1 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x16b0c15e sched_trace_cfs_rq_avg EXPORT_SYMBOL_GPL vmlinux 0x16b69bc8 zpci_store EXPORT_SYMBOL_GPL vmlinux 0x16bdd98b tty_standard_install EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness EXPORT_SYMBOL_GPL vmlinux 0x16e5fba7 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x16e7566b security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0x16fdf8aa crypto_unregister_shashes EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x17149987 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x171e0039 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x172817ae kvm_read_guest_cached EXPORT_SYMBOL_GPL vmlinux 0x173dabb3 iommu_capable EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x174a8665 inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put EXPORT_SYMBOL_GPL vmlinux 0x1765f7de devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x177c4606 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x17914f51 devlink_param_unregister EXPORT_SYMBOL_GPL vmlinux 0x17a0e6ea kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x17a5f74a device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x17a1bc3e fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0x17afac71 pci_epc_mem_alloc_addr EXPORT_SYMBOL_GPL vmlinux 0x17b2e775 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x17ba56c8 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x17d89a3a raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x17f5a011 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x17f87d9b platform_device_add_resources EXPORT_SYMBOL_GPL vmlinux 0x17fe080c kernel_read_file_from_fd EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x1802cc77 ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0x180a9346 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x18182d4d __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x182b728a ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x183a1e4d xas_set_mark EXPORT_SYMBOL_GPL vmlinux 0x1843d848 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x18440772 find_vpid EXPORT_SYMBOL_GPL vmlinux 0x185069d2 devm_gpio_request EXPORT_SYMBOL_GPL vmlinux 0x186b50ec gmap_disable -EXPORT_SYMBOL_GPL vmlinux 0x18929260 nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0x1892992e xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0x18b27235 kobject_move EXPORT_SYMBOL_GPL vmlinux 0x18baae3c badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x18c77dc7 lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0x18dcbc02 securityfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x190c74e6 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x190fe889 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x191df988 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x191f0c5c __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x193ae220 unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state -EXPORT_SYMBOL_GPL vmlinux 0x1944c7f0 crypto_unregister_scomp EXPORT_SYMBOL_GPL vmlinux 0x19621985 subsys_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0x196d6221 sysfs_add_link_to_group EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x19928621 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x199f99b9 sock_diag_unregister_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x19ab39f1 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x19b36129 crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x19f0c12a devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x19bc0a6c akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x19fe6de8 devlink_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0x1a057e23 devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x1a0ac100 gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x1a0ded3e trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a18bf70 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x1a37b243 nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0x1a463a20 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x1a56391b l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1a56be3a device_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0x1a6a3aeb register_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a7c6bd5 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x1a80fdf1 sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1ab86ede device_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ae5b7e9 crypto_stats_compress EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1afaaa8e perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x1b132de6 xfrm_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x1b1f5ad0 gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x1b2a6fc9 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x1b3a36da mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0x1b4bf9a1 pci_scan_child_bus EXPORT_SYMBOL_GPL vmlinux 0x1b6c5a67 chsc_error_from_response -EXPORT_SYMBOL_GPL vmlinux 0x1b859395 ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0x1b884492 cpu_device_create EXPORT_SYMBOL_GPL vmlinux 0x1b895de9 iommu_iova_to_phys EXPORT_SYMBOL_GPL vmlinux 0x1b912f26 cio_enable_subchannel EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1bad9630 devlink_resource_register EXPORT_SYMBOL_GPL vmlinux 0x1bbb8c9d component_master_add_with_match EXPORT_SYMBOL_GPL vmlinux 0x1bc4d907 tty_port_tty_hangup EXPORT_SYMBOL_GPL vmlinux 0x1bc7b8bd software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0x1bc82886 tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0x1bce413e synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x1bdc5d52 dst_blackhole_redirect EXPORT_SYMBOL_GPL vmlinux 0x1bde474a disable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x1be20835 irq_chip_retrigger_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bee7a1f blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0x1bfad06e mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x1c1b0ce8 mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0x1c3e74c2 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x1c45ccdc kvm_clear_guest EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c832355 udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1caf4db5 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x1c8ef660 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1ca28121 get_pid_task EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cc3ccdb gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x1cfc22cc sysfs_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x1d059d36 serdev_device_write EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d233456 switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0x1d55c249 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1d642d0e bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x1d6ea1cf seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0x1d71cfb3 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0x1d7297e0 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table EXPORT_SYMBOL_GPL vmlinux 0x1d7cdbe0 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x1d80f596 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x1d97f7fb ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0x1d9b849b pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x1d9bbcd3 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x1da22948 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x1da505a0 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x1db48c57 gpiod_set_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x1db7ce9e to_software_node EXPORT_SYMBOL_GPL vmlinux 0x1dca8012 klist_prev EXPORT_SYMBOL_GPL vmlinux 0x1dcf023e devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x1dddb09f devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0x1df57b6d virtqueue_enable_cb_prepare EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm EXPORT_SYMBOL_GPL vmlinux 0x1dfab1bf blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0x1dffde4c skb_gso_validate_mac_len EXPORT_SYMBOL_GPL vmlinux 0x1e20f13f freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e4ddfb6 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x1e723df4 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x1e741ca0 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e36e7e7 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x1e745a0a fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0x1e76cd0e __fscrypt_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart @@ -10449,57 +10428,62 @@ EXPORT_SYMBOL_GPL vmlinux 0x1e806c52 open_related_ns EXPORT_SYMBOL_GPL vmlinux 0x1e9ec696 register_kretprobes EXPORT_SYMBOL_GPL vmlinux 0x1eafe531 poll_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebc59e8 security_path_rmdir EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec0ff39 crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1ee94e26 iterate_mounts EXPORT_SYMBOL_GPL vmlinux 0x1eec1238 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x1efc9945 devlink_resource_register EXPORT_SYMBOL_GPL vmlinux 0x1f035341 mmu_notifier_put EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f26d432 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x1f115b2c strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x1f2d801a alarm_forward_now EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit EXPORT_SYMBOL_GPL vmlinux 0x1f3f436f fat_free_clusters EXPORT_SYMBOL_GPL vmlinux 0x1f436eaf hrtimer_active EXPORT_SYMBOL_GPL vmlinux 0x1f51f667 generic_handle_domain_irq EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f6b4fa7 nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1f6d18b5 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x1f6cb49c gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x1f72e4ba perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x1f7d2ce5 ping_close EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f911213 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x1f9356c4 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x1f977d94 udp4_hwcsum EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x1fa60c1c css_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x1fa8fcf3 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x1fae520b peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0x1fcb3c48 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x1fd7fff9 devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs EXPORT_SYMBOL_GPL vmlinux 0x1ff130ec bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x1ff461e5 crypto_shash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x2001be45 irq_chip_request_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x200ed8e3 xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0x202af5fe attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x2039ec7c dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x202d1521 perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0x203f3fea blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0x205144d9 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x20591357 replace_page_cache_page EXPORT_SYMBOL_GPL vmlinux 0x205bbd2c screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x2073b19f register_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x20919708 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x20971e10 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x209a178f crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x20872219 tcp_twsk_destructor EXPORT_SYMBOL_GPL vmlinux 0x20bd9d26 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x20cee6eb dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x20e47c24 bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0x20e6176b freq_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x20e6f928 tnum_strn EXPORT_SYMBOL_GPL vmlinux 0x20f56ae0 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x21066f62 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x2116dc4f rtnl_af_register EXPORT_SYMBOL_GPL vmlinux 0x212789ef acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x2128ce29 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x212a53b1 udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0x2141f425 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x21451cfc ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x21649076 wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0x216885c9 fat_fill_super EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio EXPORT_SYMBOL_GPL vmlinux 0x216f07f1 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x217403b3 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x217a34d4 scsi_host_unblock EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b438de l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x21b8a62d skb_morph EXPORT_SYMBOL_GPL vmlinux 0x21bb316b irq_domain_associate_many EXPORT_SYMBOL_GPL vmlinux 0x21c30ae7 user_read EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher @@ -10511,93 +10495,88 @@ EXPORT_SYMBOL_GPL vmlinux 0x21e2b5f8 vring_new_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x21eb58b9 bio_alloc_kiocb EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x22141af3 crypto_req_done EXPORT_SYMBOL_GPL vmlinux 0x221de2ce virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x22202ce2 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x2222b09d inet6_compat_ioctl EXPORT_SYMBOL_GPL vmlinux 0x226034c1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x2268b374 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x226b722d trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0x226cf29c mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2275a22a fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x22a50f5e zpci_mod_fc EXPORT_SYMBOL_GPL vmlinux 0x22b8146b __wake_up_locked_key_bookmark EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends EXPORT_SYMBOL_GPL vmlinux 0x22e20b10 chsc_siosl -EXPORT_SYMBOL_GPL vmlinux 0x22e46a46 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0x22f203ca vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x2305203f ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x230b5350 task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x230bca5e key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x231830e4 nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0x231e9b1b iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x23348f27 security_path_link +EXPORT_SYMBOL_GPL vmlinux 0x23226bb7 crypto_comp_decompress EXPORT_SYMBOL_GPL vmlinux 0x233c4456 xas_find EXPORT_SYMBOL_GPL vmlinux 0x233f5316 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x234b3079 __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put EXPORT_SYMBOL_GPL vmlinux 0x234ea098 dma_buf_fd EXPORT_SYMBOL_GPL vmlinux 0x23589ec5 class_compat_remove_link EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x239c67f9 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x23b37024 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x23b3d879 fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0x23b8310f disk_uevent -EXPORT_SYMBOL_GPL vmlinux 0x23bb11db trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0x23d72af3 blk_queue_can_use_dma_map_merging EXPORT_SYMBOL_GPL vmlinux 0x23d9075b pci_epc_get_msi EXPORT_SYMBOL_GPL vmlinux 0x23e3d2cd fuse_conn_init EXPORT_SYMBOL_GPL vmlinux 0x24166649 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x24168037 bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0x241b1556 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x241c8b68 devlink_params_register EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x2424581a __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x24482ddf l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0x24a5192f vfs_write EXPORT_SYMBOL_GPL vmlinux 0x24a83d15 vma_kernel_pagesize EXPORT_SYMBOL_GPL vmlinux 0x24c14098 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x24cf8d37 scsi_mode_select EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24f63fb0 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x24f6da49 __kvm_set_memory_region EXPORT_SYMBOL_GPL vmlinux 0x250a8f96 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x250c4bd9 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x251acb1c crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x251b1d4c crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x251c4517 blkcg_root EXPORT_SYMBOL_GPL vmlinux 0x252ada5d tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x252fc91b gpiochip_lock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x25332b38 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x2563fd35 kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x2590ac6e trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x25446696 nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25a4e681 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x259edec5 bpf_prog_free EXPORT_SYMBOL_GPL vmlinux 0x25b926c3 __iomap_dio_rw EXPORT_SYMBOL_GPL vmlinux 0x25ba6df6 kthread_queue_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25e3b4b7 devlink_param_publish +EXPORT_SYMBOL_GPL vmlinux 0x25d6947a kvm_vcpu_read_guest EXPORT_SYMBOL_GPL vmlinux 0x25efe24a md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0x2611f89b __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x26149637 iommu_unregister_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x2615129a ccw_device_get_iid EXPORT_SYMBOL_GPL vmlinux 0x261f50a5 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x2622ae5d l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0x26257cce balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x2648e702 platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x264d56e0 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x2649f6cc kvm_release_page_clean EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu EXPORT_SYMBOL_GPL vmlinux 0x26857d9e rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x268b6bf1 device_rename EXPORT_SYMBOL_GPL vmlinux 0x268f10f8 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x268fd471 gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x26915d60 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x2698a45a fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x26a2f094 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x26a31ba4 hrtimer_init_sleeper EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26b95765 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x26bf4db6 device_add EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26d8fb57 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x26c9c2bf dax_iomap_rw EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit EXPORT_SYMBOL_GPL vmlinux 0x270dae42 iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0x2723c14d gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x2727a2ab gfn_to_hva EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained EXPORT_SYMBOL_GPL vmlinux 0x276c1389 virtqueue_get_buf_ctx EXPORT_SYMBOL_GPL vmlinux 0x2777d083 dm_report_zones EXPORT_SYMBOL_GPL vmlinux 0x278ee3ec pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0x27d710e0 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x27c249ea sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x27e537cc vp_modern_queue_vector EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter @@ -10605,176 +10584,179 @@ EXPORT_SYMBOL_GPL vmlinux 0x27f6dd09 irq_domain_translate_onecell EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages EXPORT_SYMBOL_GPL vmlinux 0x27fd4f87 gfn_to_hva_memslot EXPORT_SYMBOL_GPL vmlinux 0x2803a5c2 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x281ab5f4 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x282155cb devlink_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0x2834955f __fat_fs_error EXPORT_SYMBOL_GPL vmlinux 0x2849c663 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x2851da47 espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x286a49de kvm_vcpu_read_guest_page EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x288f5943 platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0x289baafc perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0x28a46a0c device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x2899a53c sched_trace_cfs_rq_avg +EXPORT_SYMBOL_GPL vmlinux 0x28a68ae5 skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28af5717 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x28c43e31 devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0x28cf9e51 blk_mq_freeze_queue EXPORT_SYMBOL_GPL vmlinux 0x28d0285c rhashtable_walk_exit EXPORT_SYMBOL_GPL vmlinux 0x28d8b49a chsc_scm_info +EXPORT_SYMBOL_GPL vmlinux 0x28f069cb device_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x28f1822e __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x2916f054 gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine EXPORT_SYMBOL_GPL vmlinux 0x2921024a debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0x2921074c hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x292c5cbc vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x2947ca54 __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x294cdb43 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x2990ea2f __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x29922379 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x299cc398 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x29acc123 inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0x29b8b204 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x29b923c7 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x29c587a1 __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x29c8570c unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0x29dd1087 crypto_register_rngs EXPORT_SYMBOL_GPL vmlinux 0x29deb0ac add_wait_queue_priority EXPORT_SYMBOL_GPL vmlinux 0x29eb2bed iomap_zero_range EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f5fff4 perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x29f6f2c2 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x2a0fb874 proc_create_net_data EXPORT_SYMBOL_GPL vmlinux 0x2a1538ca lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x2a360d05 task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0x2a498cda firmware_request_nowarn EXPORT_SYMBOL_GPL vmlinux 0x2a5ebaa5 debugfs_create_x16 EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2a7012c8 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x2a6c6f10 skcipher_alloc_instance_simple EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a7540f9 ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0x2a7f08b7 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x2a8b2f97 kvm_get_kvm_safe EXPORT_SYMBOL_GPL vmlinux 0x2a8b360f __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x2a9ece6c switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0x2aa23d97 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x2aa605b7 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x2abcfbe7 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x2ac6d8f2 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x2aac067e ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x2aac8319 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x2ab276cc netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ac64286 wbc_attach_and_unlock_inode EXPORT_SYMBOL_GPL vmlinux 0x2ac80c63 xas_split_alloc EXPORT_SYMBOL_GPL vmlinux 0x2acb9ac0 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x2b0a7985 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x2ad6496b vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0x2b0bc7de iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0x2b2dcb37 wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0x2b37dbdc irq_create_fwspec_mapping EXPORT_SYMBOL_GPL vmlinux 0x2b3fd666 kset_find_obj EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b4a79f8 kvm_flush_remote_tlbs EXPORT_SYMBOL_GPL vmlinux 0x2b550539 ccw_device_get_util_str +EXPORT_SYMBOL_GPL vmlinux 0x2b7681fe __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2b78a976 ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x2b884e2e pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x2b95a716 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x2ba685e4 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2baaf854 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x2bb62a83 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x2bd1b313 l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0x2bd2915e kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x2c0028d5 __traceiter_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x2c240c25 devm_gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x2c2f9b32 pci_find_next_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x2c33d0a2 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x2c348c53 tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x2c53d337 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x2c455a6a ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x2c46f722 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x2c51b3fb kvm_vcpu_gfn_to_hva EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c68293a kvm_arch_crypto_clear_masks EXPORT_SYMBOL_GPL vmlinux 0x2c7256dc synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x2c730c9d device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x2c74e92c crypto_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x2c7d13e2 __ioread32_copy EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c865ddc blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x2c9bed68 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x2c9f22b1 net_ns_type_operations EXPORT_SYMBOL_GPL vmlinux 0x2cca054a gmap_get -EXPORT_SYMBOL_GPL vmlinux 0x2cda018c crypto_aead_encrypt 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 0x2cff3d27 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x2d11eab7 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2d15b52d crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d24a729 sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts EXPORT_SYMBOL_GPL vmlinux 0x2d4ef933 __percpu_init_rwsem EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict -EXPORT_SYMBOL_GPL vmlinux 0x2d61f298 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x2d61004f preempt_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x2d796f52 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x2d7e87b3 mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0x2d8b4854 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x2d9721a9 shmem_zero_setup +EXPORT_SYMBOL_GPL vmlinux 0x2d98b7b8 bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0x2d9e1569 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x2da0aa2e crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x2df2b397 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x2df508a3 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x2def5b2c fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x2e0216c7 fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2e0d8875 fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0x2e1d43cf lzo1x_1_compress EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e237162 __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x2e2b4a01 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x2e3a33a7 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x2e3dc0da sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x2e24499b kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x2e3521fd crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x2e3b7d15 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x2e417c64 crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e783439 sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0x2e7f0499 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0x2e9a647c tcp_abort EXPORT_SYMBOL_GPL vmlinux 0x2ea337da find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x2ea6daab __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x2ea8dd5f ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ecb22ae device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x2ebf6b7d ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x2ecbbc33 device_match_devt EXPORT_SYMBOL_GPL vmlinux 0x2ecc5b29 sbitmap_weight EXPORT_SYMBOL_GPL vmlinux 0x2ecc71a6 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x2effc59c skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x2ed6b9a7 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x2ee274b7 filemap_read EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f224d0d fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f338760 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x2f3b101c gfn_to_memslot EXPORT_SYMBOL_GPL vmlinux 0x2f412ddb tty_get_icount EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec EXPORT_SYMBOL_GPL vmlinux 0x2f53eaa2 srcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2f5dfe6e vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0x2f62110e gpiod_set_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x2f64be23 alarm_start_relative EXPORT_SYMBOL_GPL vmlinux 0x2fb783e7 __class_register EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2ff1db71 l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0x2ff46106 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x2ffc274a gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x2ffe5bcf iomap_dio_iopoll EXPORT_SYMBOL_GPL vmlinux 0x300d926c enable_cmf +EXPORT_SYMBOL_GPL vmlinux 0x3024372b bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu EXPORT_SYMBOL_GPL vmlinux 0x30696079 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3078b0f0 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x30943ce5 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x30816bc8 cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x30b4f649 mddev_init EXPORT_SYMBOL_GPL vmlinux 0x30b50c7c scsi_target_unblock EXPORT_SYMBOL_GPL vmlinux 0x30ccb96d dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x30d2406a tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x30e68ffd device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0x30f1e138 __inode_attach_wb EXPORT_SYMBOL_GPL vmlinux 0x30f6c402 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x30f7346e platform_device_register EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3120f3c4 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x3111af0a skb_zerocopy_iter_dgram +EXPORT_SYMBOL_GPL vmlinux 0x3117e6ef device_initialize EXPORT_SYMBOL_GPL vmlinux 0x3121c51a cio_cancel EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31290f55 perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x31472c30 gmap_unmap_segment +EXPORT_SYMBOL_GPL vmlinux 0x31605ea0 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x316a385b fs_kobj EXPORT_SYMBOL_GPL vmlinux 0x317bdf52 pci_assign_unassigned_bridge_resources EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x318e654f kvm_write_guest_page EXPORT_SYMBOL_GPL vmlinux 0x3194d0d0 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x31a397c6 net_ns_type_operations EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu EXPORT_SYMBOL_GPL vmlinux 0x31a9c4e0 paste_selection EXPORT_SYMBOL_GPL vmlinux 0x31d3199b rhltable_init EXPORT_SYMBOL_GPL vmlinux 0x31d3ce5f param_set_uint_minmax EXPORT_SYMBOL_GPL vmlinux 0x31dce29c dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x31ef44b9 crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0x31ef9f02 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x31ed5e7b sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0x3200c1b9 generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0x3209f1b9 ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x32323e65 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x3235d7b5 kvm_map_gfn -EXPORT_SYMBOL_GPL vmlinux 0x3252867e bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x324393e7 ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x32630cae kthread_cancel_delayed_work_sync EXPORT_SYMBOL_GPL vmlinux 0x3283f499 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x328eaa61 platform_get_resource EXPORT_SYMBOL_GPL vmlinux 0x329de9d5 posix_acl_create EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x32b92d7d fsnotify_put_group EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register EXPORT_SYMBOL_GPL vmlinux 0x32f536af kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x32f9e1e8 devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x330770ef unix_table_lock EXPORT_SYMBOL_GPL vmlinux 0x33113e23 __fscrypt_prepare_rename @@ -10784,250 +10766,252 @@ EXPORT_SYMBOL_GPL vmlinux 0x33247dea pci_vfs_assigned EXPORT_SYMBOL_GPL vmlinux 0x334a72ce pci_epc_map_msi_irq EXPORT_SYMBOL_GPL vmlinux 0x3350bb76 fsnotify_init_mark EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x335ff079 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0x3379736d filemap_range_needs_writeback -EXPORT_SYMBOL_GPL vmlinux 0x3382745d bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0x3386ab83 generic_fsdax_supported EXPORT_SYMBOL_GPL vmlinux 0x339112b0 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x3398400b crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x339d295f add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x339e62e5 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x33912e95 scsi_check_sense EXPORT_SYMBOL_GPL vmlinux 0x33a29015 bus_sort_breadthfirst EXPORT_SYMBOL_GPL vmlinux 0x33b3a3b0 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x33b711a2 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x33bf89bb tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x33d74a2c perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0x33dbc4ae vmf_insert_pfn_pmd_prot EXPORT_SYMBOL_GPL vmlinux 0x33ded6d2 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x33e5f2ef kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0x33edf6ef devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local EXPORT_SYMBOL_GPL vmlinux 0x33f779c6 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0x340e3f8b security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0x342fdc18 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x343a8463 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x3420cdf4 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x343059fa kvm_get_dirty_log EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x3446f8df skcipher_walk_aead_encrypt 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 0x3456f783 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x345907b7 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x3474b3f6 devlink_params_publish EXPORT_SYMBOL_GPL vmlinux 0x348c6821 pci_load_saved_state EXPORT_SYMBOL_GPL vmlinux 0x348caa23 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x348ee85c fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0x349843d1 scm_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0x34bdfff5 devlink_region_create EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x3517bed6 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x3523c90a ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x352d241b fat_add_entries EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x35453f60 page_endio EXPORT_SYMBOL_GPL vmlinux 0x35525e73 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x35565190 crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0x3568f3cf pci_epc_linkup EXPORT_SYMBOL_GPL vmlinux 0x356ac0e7 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x3573f15e crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x357f29ac metadata_dst_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x3584114e alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x358431e0 vcpu_put EXPORT_SYMBOL_GPL vmlinux 0x3586d36c pci_rescan_bus EXPORT_SYMBOL_GPL vmlinux 0x35942567 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0x35984887 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x35dd922b devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x35a47f31 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x35d38095 crypto_unregister_shash EXPORT_SYMBOL_GPL vmlinux 0x35e000c2 pcie_flr EXPORT_SYMBOL_GPL vmlinux 0x35e7e88b mddev_init_writes_pending EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x3607c5d7 sthyi_fill EXPORT_SYMBOL_GPL vmlinux 0x36091908 tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0x360db30a tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x3611c62e sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x3627cd03 is_swiotlb_active EXPORT_SYMBOL_GPL vmlinux 0x362dd1c2 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x36401408 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x364189fd __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x364354ba rhashtable_destroy EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x36861d1c bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0x3686c035 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x3690bfd9 sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0x368a061f synth_event_trace EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a2c150 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x36b6525f lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0x36c80c36 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x36dc669b raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0x36e32b01 tty_prepare_flip_string EXPORT_SYMBOL_GPL vmlinux 0x36e4ccc1 tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0x36fcf73a blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0x36fe7671 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x36fe80e9 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x3707a0f7 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x370cd283 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0x371a237d crypto_create_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x3725b439 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x3725d1a0 __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x373a0494 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3743ca55 register_trace_event EXPORT_SYMBOL_GPL vmlinux 0x37458c32 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x37494edd devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x375e0516 strp_stop EXPORT_SYMBOL_GPL vmlinux 0x3761d215 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x378e044c netdev_is_rx_handler_busy EXPORT_SYMBOL_GPL vmlinux 0x378e5290 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x37925367 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x37a4feec set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37dc34af gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x37c23f02 crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0x37e00a8a blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x37e24a9b devlink_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0x37fef2f2 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0x380fa8ea crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x38163d95 event_triggers_call EXPORT_SYMBOL_GPL vmlinux 0x38238203 gmap_shadow_r2t EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection EXPORT_SYMBOL_GPL vmlinux 0x3844a4f0 ftrace_set_notrace EXPORT_SYMBOL_GPL vmlinux 0x38493a8b idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x386278ba tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0x386d6eff crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x38711a30 __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x38846835 alarm_init EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38b167a1 fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0x38c48f15 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x38dad495 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x38c4c2ff gfn_to_page_many_atomic EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38f4bfe5 sched_set_normal EXPORT_SYMBOL_GPL vmlinux 0x38fc20e0 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x3913b3ec xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0x39149831 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x391c1667 kvm_vcpu_mark_page_dirty EXPORT_SYMBOL_GPL vmlinux 0x393dcee1 dm_table_set_type EXPORT_SYMBOL_GPL vmlinux 0x393ffa6f asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0x394488d9 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x3945c130 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x3956b308 synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0x39579087 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x395ea582 cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0x397375ae pci_enable_sriov EXPORT_SYMBOL_GPL vmlinux 0x39791a24 start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x397b120c event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x39914b52 crypto_stats_akcipher_verify EXPORT_SYMBOL_GPL vmlinux 0x39a5ccf0 input_ff_flush EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x39c6241f kvm_get_running_vcpu EXPORT_SYMBOL_GPL vmlinux 0x39d00fd5 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x39dcebbf xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x39e79c93 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x39f68681 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x39fd666a msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL vmlinux 0x3a097e88 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x3a1d4ccc __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect EXPORT_SYMBOL_GPL vmlinux 0x3a2c70ba sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x3a476477 wait_on_page_writeback_killable EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish EXPORT_SYMBOL_GPL vmlinux 0x3a546794 class_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a5eec3f nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0x3a6995ff __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0x3a7075b4 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x3a7a96ff gpiod_set_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x3a930abb pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x3a9665d6 xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa56ca2 gpiochip_irq_unmap EXPORT_SYMBOL_GPL vmlinux 0x3aa61692 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3abf93d7 inet_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x3ad39de9 tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0x3afd9bd4 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x3adf6ba1 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x3aea92a9 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x3aed7a27 __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0x3b007050 blkcg_deactivate_policy EXPORT_SYMBOL_GPL vmlinux 0x3b068acb simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x3b0f6d7f gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x3b13516d get_kernel_pages EXPORT_SYMBOL_GPL vmlinux 0x3b2d0808 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3b59291b xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3b611fa4 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b632017 cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0x3b6cce8f serdev_device_write_flush EXPORT_SYMBOL_GPL vmlinux 0x3b72c087 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x3b8188f0 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x3b7be9bb mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x3b85df67 skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0x3b8663b3 tty_port_tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0x3b8cfbd4 zpci_aipb EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free +EXPORT_SYMBOL_GPL vmlinux 0x3b9ecc3b follow_pte EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset EXPORT_SYMBOL_GPL vmlinux 0x3bc7b144 pci_set_pcie_reset_state EXPORT_SYMBOL_GPL vmlinux 0x3bd4db7e tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x3bda89f1 perf_aux_output_flag EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x3bee25ef bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bfd2830 devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x3bfdb830 virtio_check_driver_offered_feature EXPORT_SYMBOL_GPL vmlinux 0x3c123cef fuse_get_unique EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c25ea63 security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0x3c36158e mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x3c2fffb5 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x3c306033 sock_gen_put EXPORT_SYMBOL_GPL vmlinux 0x3c3a0094 driver_register EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x3c3fa0d6 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x3c45757a skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x3c4ab345 blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c7567d5 sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0x3c85d74e class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x3c92a563 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3c8b8254 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x3c8cab6e crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x3c991d98 ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x3c9ead7e pci_remove_root_bus EXPORT_SYMBOL_GPL vmlinux 0x3ca4de56 sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0x3cb0a270 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x3cbb9ce8 gpiod_toggle_active_low 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 0x3cd2ce29 crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x3d157a15 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x3d2fc551 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x3ce84904 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x3d1b4d11 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3d229269 crypto_dequeue_request EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check EXPORT_SYMBOL_GPL vmlinux 0x3d69ea6d kthread_unuse_mm EXPORT_SYMBOL_GPL vmlinux 0x3d72236b bus_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x3d946970 disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0x3d94a500 device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3db63750 ip_valid_fib_dump_req EXPORT_SYMBOL_GPL vmlinux 0x3db85915 ima_file_hash EXPORT_SYMBOL_GPL vmlinux 0x3dca11ef invalidate_inode_pages2_range EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final EXPORT_SYMBOL_GPL vmlinux 0x3df79a5e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x3e04da83 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x3e144d2f sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x3e29201a irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x3e2cd34d inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x3e5275bf inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x3e58de87 skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x3e5ce910 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x3e60c977 dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer EXPORT_SYMBOL_GPL vmlinux 0x3e8219c9 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x3e889739 sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0x3ea01071 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0x3ea5b512 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0x3eb34b2a fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x3eb1a417 crypto_unregister_scomp EXPORT_SYMBOL_GPL vmlinux 0x3eb57f58 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x3eb5b6ec scsi_host_complete_all_commands EXPORT_SYMBOL_GPL vmlinux 0x3ee2b8ce irq_chip_set_type_parent EXPORT_SYMBOL_GPL vmlinux 0x3ee80b67 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x3eebd5c7 kvm_read_guest_page EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access EXPORT_SYMBOL_GPL vmlinux 0x3f06bbca param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x3f07d6bf tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x3f23b6a2 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x3f242352 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x3f283dfd devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x3f4cb1de __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x3f4e6630 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x3f1f2b95 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x3f2ea44b ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x3f79c55e fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x3f7dec46 __raw_v6_lookup EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f88aeca skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x3f8aaff3 device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put EXPORT_SYMBOL_GPL vmlinux 0x3fc004ad sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x3fe4fa51 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x3fcbfe83 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3fdc873b crypto_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free EXPORT_SYMBOL_GPL vmlinux 0x3ff98d85 fat_search_long EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next EXPORT_SYMBOL_GPL vmlinux 0x401393db serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x401dda6e validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x402e5a52 bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0x4037994a __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x4051e7e0 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4060939e skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout EXPORT_SYMBOL_GPL vmlinux 0x407b0bf5 relay_late_setup_files EXPORT_SYMBOL_GPL vmlinux 0x408b757c debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x4091c2bc fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x409483e3 ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free EXPORT_SYMBOL_GPL vmlinux 0x409ede42 debugfs_create_size_t EXPORT_SYMBOL_GPL vmlinux 0x40a13568 vbin_printf EXPORT_SYMBOL_GPL vmlinux 0x40a14e51 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0x40b9238b peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0x40bb7941 __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0x40bbf4f2 fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0x40bce208 serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x40bcffd8 scsi_build_sense EXPORT_SYMBOL_GPL vmlinux 0x40ca2820 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x40ccce38 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x40d6bd27 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x40e8e094 __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before EXPORT_SYMBOL_GPL vmlinux 0x410f47ef scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x4122b318 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x412b3831 shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x413c96fa set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4156c311 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x41613d49 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x4164e145 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x417d8076 dax_zero_page_range EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop @@ -11035,231 +11019,253 @@ EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41d2948d property_entries_dup EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x41fb68cb copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x42070b5e cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0x421559fc pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x423d46ed kvm_vcpu_block EXPORT_SYMBOL_GPL vmlinux 0x424b1c15 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x42651d9d fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x425a6a8d device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4277c68b devlink_sb_register EXPORT_SYMBOL_GPL vmlinux 0x427cd2ef elv_rqhash_del EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active EXPORT_SYMBOL_GPL vmlinux 0x428f79cd __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x42903134 blk_update_request EXPORT_SYMBOL_GPL vmlinux 0x42c00d62 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x42d2de46 nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x42fbfc5b devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0x43086515 platform_device_add_resources EXPORT_SYMBOL_GPL vmlinux 0x4309ee78 klp_enable_patch EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event EXPORT_SYMBOL_GPL vmlinux 0x430fa18b cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x431cb197 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x4321e2f4 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x432db1b7 devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x432e9abf simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x433275d7 ip6_input EXPORT_SYMBOL_GPL vmlinux 0x433f221a blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x434498fc synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0x435040b0 dma_buf_unpin EXPORT_SYMBOL_GPL vmlinux 0x43571d19 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x436b5f33 __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled EXPORT_SYMBOL_GPL vmlinux 0x4388497f xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x4392e77e tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x43a05b46 skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43b4dc63 shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0x43c2373d kvm_vcpu_gfn_to_pfn_atomic EXPORT_SYMBOL_GPL vmlinux 0x43c33665 isc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43c396cb __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x43e51704 ping_get_port EXPORT_SYMBOL_GPL vmlinux 0x43ed22e1 pci_ats_supported EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs EXPORT_SYMBOL_GPL vmlinux 0x440ade7d iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x440b3f78 gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0x440be4b9 trace_seq_putmem EXPORT_SYMBOL_GPL vmlinux 0x441a2e4e kthread_mod_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x442df159 fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x4468b3cc inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x446b9c9b ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x444685d1 devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x4492b3de gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x449875a3 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x448633e7 dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44cf8de8 device_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x44e0ccaa zpci_set_irq_ctrl EXPORT_SYMBOL_GPL vmlinux 0x44e55979 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x44f93772 gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0x44fd737e badblocks_set EXPORT_SYMBOL_GPL vmlinux 0x4501eb62 devm_gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x4511381a __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45860300 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x457d739c dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x45bc98b1 platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x45c04efa user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x45e5afa3 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x45ca3e79 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x45f24c22 add_swap_extent EXPORT_SYMBOL_GPL vmlinux 0x45f82b25 simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x46018a59 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x4601911d devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x4608fdbb __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x4615c733 switchdev_handle_fdb_add_to_device +EXPORT_SYMBOL_GPL vmlinux 0x461dd092 tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x4632b03e fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0x46705ce3 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x465627c4 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x466254d8 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x4688a701 __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x469fa0f5 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x468da620 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x4690cbce ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x46a98c17 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x46d99fdb nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x46dc74a4 devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x46e4e3f4 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x46cfe05f skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x46d96351 __traceiter_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x470083c3 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x47062560 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x47128bf6 inode_congested EXPORT_SYMBOL_GPL vmlinux 0x47201590 ccw_device_set_timeout EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4725e051 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x472bcf8e dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier EXPORT_SYMBOL_GPL vmlinux 0x477c47cf bus_for_each_drv EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count EXPORT_SYMBOL_GPL vmlinux 0x47913687 blk_mq_flush_busy_ctxs EXPORT_SYMBOL_GPL vmlinux 0x479258f5 dax_supported +EXPORT_SYMBOL_GPL vmlinux 0x479347af xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x47987873 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x47a5bd02 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x47ac3d3c raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0x47b2c90c devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x47dde837 bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0x47e7696d srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x47ed9589 ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x47f17cfe pci_try_reset_function EXPORT_SYMBOL_GPL vmlinux 0x47f6096e exportfs_decode_fh_raw EXPORT_SYMBOL_GPL vmlinux 0x47f70a10 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x47f7913e sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0x47fdc5d2 kvm_irq_has_notifier EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm EXPORT_SYMBOL_GPL vmlinux 0x482b9096 elv_register EXPORT_SYMBOL_GPL vmlinux 0x482c962c fat_dir_empty EXPORT_SYMBOL_GPL vmlinux 0x48307407 device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0x483d16e6 mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x484925eb ping_err EXPORT_SYMBOL_GPL vmlinux 0x484d1864 securityfs_create_file EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x48640c69 crypto_inst_setname EXPORT_SYMBOL_GPL vmlinux 0x487da82a cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0x4885f47f file_is_kvm -EXPORT_SYMBOL_GPL vmlinux 0x4895520a __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x487e1bd5 gpiod_count EXPORT_SYMBOL_GPL vmlinux 0x48a09202 pgprot_writethrough EXPORT_SYMBOL_GPL vmlinux 0x48aeacd2 sysfs_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x48b3935d class_dev_iter_next EXPORT_SYMBOL_GPL vmlinux 0x48bbb515 fsl_mc_device_group EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x48f488b3 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x48fe479e acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x490f4048 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x491bf03b fwnode_graph_get_remote_node +EXPORT_SYMBOL_GPL vmlinux 0x491e77c7 sfp_bus_find_fwnode 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 0x4941167c gpiochip_lock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x494cabe0 cio_start -EXPORT_SYMBOL_GPL vmlinux 0x494eca28 unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x49610af6 cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0x49613503 ccw_device_get_chid -EXPORT_SYMBOL_GPL vmlinux 0x49693cdb do_splice_to +EXPORT_SYMBOL_GPL vmlinux 0x4969a633 bpf_offload_dev_match EXPORT_SYMBOL_GPL vmlinux 0x498c2ebb dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x498e71c7 crypto_shash_update EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49b0f05a kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x49bb5039 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x499ad924 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x499ca58c skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x49a53afe l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d479ae tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0x49d7e9cf iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x49e52a0a switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x49e536e6 report_iommu_fault EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x49f0a5e8 kvm_s390_gisc_unregister EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a557d8e skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x4a5646bc lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x4a59e20c tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x4a27fbd5 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x4a6b878d iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x4a7a36d4 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x4a81b4ab kvm_vcpu_read_guest_atomic EXPORT_SYMBOL_GPL vmlinux 0x4a905363 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x4aa681d2 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x4ad2bb6f hypervisor_kobj EXPORT_SYMBOL_GPL vmlinux 0x4ad3cc53 tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x4ae726d5 appldata_register_ops -EXPORT_SYMBOL_GPL vmlinux 0x4af55f1b __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0x4b235336 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x4b2ea968 gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0x4b301ba7 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x4b31d5a6 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x4b5512c0 devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0x4b5b33ad crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x4b37bd9d switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x4b5e7ea4 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x4b725b74 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4b7c44bf xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0x4b8365db pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0x4ba88dcb chsc_sgib EXPORT_SYMBOL_GPL vmlinux 0x4bbcc847 dw_pcie_find_capability EXPORT_SYMBOL_GPL vmlinux 0x4bbf2f31 iommu_dev_disable_feature EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4bd89c5a css_chsc_characteristics -EXPORT_SYMBOL_GPL vmlinux 0x4bf3b832 get_net_ns EXPORT_SYMBOL_GPL vmlinux 0x4c14ff83 cio_tm_intrg -EXPORT_SYMBOL_GPL vmlinux 0x4c1a46ac __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4c264b64 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x4c50c774 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4c29c0ea file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x4c3d11a2 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x4c49b339 bpf_map_inc EXPORT_SYMBOL_GPL vmlinux 0x4c56bd15 stack_type_name EXPORT_SYMBOL_GPL vmlinux 0x4c5b87b2 cio_tm_start_key +EXPORT_SYMBOL_GPL vmlinux 0x4c66662f xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x4c7134b4 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x4c7b0476 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x4c7b79dd inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0x4c9297f1 gmap_map_segment EXPORT_SYMBOL_GPL vmlinux 0x4c99dc74 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x4caf3eeb cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x4cb1b142 kthread_flush_worker EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot EXPORT_SYMBOL_GPL vmlinux 0x4cb7d117 kernfs_get EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cb8eda0 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x4cbc903a shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x4cdb58b1 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x4ce30a93 __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0x4ce91483 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x4ceca0e3 __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x4ced3fdc blk_stat_enable_accounting EXPORT_SYMBOL_GPL vmlinux 0x4ced85e2 bus_register EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0a255e __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x4d24116e dax_iomap_fault EXPORT_SYMBOL_GPL vmlinux 0x4d2c623c vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0x4d3109af task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0x4d3cc909 inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d5d44b9 devlink_dpipe_table_unregister EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable EXPORT_SYMBOL_GPL vmlinux 0x4d7c5fad css_sch_is_valid EXPORT_SYMBOL_GPL vmlinux 0x4d7f9702 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x4d801e75 trace_event_raw_init EXPORT_SYMBOL_GPL vmlinux 0x4d80cba4 kmsg_dump_get_line EXPORT_SYMBOL_GPL vmlinux 0x4d91000e md_stop -EXPORT_SYMBOL_GPL vmlinux 0x4da26efd kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x4db9ec9a kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x4dc12411 crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0x4dcbd317 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x4dccf0f4 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult EXPORT_SYMBOL_GPL vmlinux 0x4ddabc37 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x4ddfa908 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x4de8b261 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x4e024b30 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x4e11bd1d kvm_write_guest_offset_cached EXPORT_SYMBOL_GPL vmlinux 0x4e28fb89 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x4e295fde netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x4e29ebc8 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x4e2d59a7 netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean EXPORT_SYMBOL_GPL vmlinux 0x4e4ff869 zpci_register_ioat -EXPORT_SYMBOL_GPL vmlinux 0x4e5490c1 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0x4e617228 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x4e51b424 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x4e64d9de xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x4e66583c rtnl_af_unregister EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4e8ac281 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x4ea6507e devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eacbcd7 addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4ec7559f kvm_map_gfn EXPORT_SYMBOL_GPL vmlinux 0x4eedd6f3 rhashtable_walk_stop EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize EXPORT_SYMBOL_GPL vmlinux 0x4f094029 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x4f218626 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x4f2eec77 gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x4f42b32a bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x4f4a4523 trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0x4f529894 dma_resv_get_fences EXPORT_SYMBOL_GPL vmlinux 0x4f58fe14 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x4f5c777d __traceiter_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f7ebca5 skb_segment EXPORT_SYMBOL_GPL vmlinux 0x4f91fd51 __wake_up_sync_key EXPORT_SYMBOL_GPL vmlinux 0x4fbc6ff3 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x4fbf8bea ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x4fc398f7 ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff8ca06 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x50208d98 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x502b0220 fib_info_nh_uses_dev EXPORT_SYMBOL_GPL vmlinux 0x50313ad3 scm_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x50429e89 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x5054c979 get_device -EXPORT_SYMBOL_GPL vmlinux 0x5069f7fc trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x503ff984 devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x504356e6 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x5078eed1 inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x507f0da1 fs_dax_get_by_bdev EXPORT_SYMBOL_GPL vmlinux 0x5080ca5d unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x508c2912 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x508e06e0 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x5091732f get_net_ns EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start EXPORT_SYMBOL_GPL vmlinux 0x50ab005e scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x50ad4556 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x50b4e428 crypto_stats_akcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x50ba3c9e dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x50c6862f call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num EXPORT_SYMBOL_GPL vmlinux 0x50eccf18 __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x50ef2759 netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0x50f9be85 gmap_unregister_pte_notifier EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up EXPORT_SYMBOL_GPL vmlinux 0x5103dd92 page_mkclean @@ -11267,49 +11273,51 @@ EXPORT_SYMBOL_GPL vmlinux 0x512693ef devres_release_group EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0x5139de80 vring_del_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x51435699 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x5159e3f0 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x51649bef vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0x516960bd klist_iter_init_node EXPORT_SYMBOL_GPL vmlinux 0x517a7975 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x5192f803 vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x51e899fd netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0x51eb8bac housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x51f6bb1b ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0x52194919 devm_gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0x5235bf89 devres_add EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x524bd146 __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x52520be9 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x52560ed3 __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x525ccb11 iommu_sva_unbind_gpasid EXPORT_SYMBOL_GPL vmlinux 0x526f4b5a fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x526f918b sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x527dc1e0 devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x528043f4 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5270c583 device_match_any EXPORT_SYMBOL_GPL vmlinux 0x52982d0e scm_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x529d51b6 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x52a35b80 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x52a5e895 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags EXPORT_SYMBOL_GPL vmlinux 0x52b52023 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x52c218f6 device_match_fwnode EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52d958e2 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x52f1a9d5 blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0x52f319a2 fat_update_time EXPORT_SYMBOL_GPL vmlinux 0x52f7a007 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x530bd69d devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x530cf4c1 ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x53148e05 blk_mark_disk_dead EXPORT_SYMBOL_GPL vmlinux 0x532a7d5f fsstack_copy_attr_all EXPORT_SYMBOL_GPL vmlinux 0x532eb7d7 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x5333d8d4 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x533f63f9 pci_aer_clear_nonfatal_status EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x5359a0be inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5371bd01 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x536c76cc fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x537322dd sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x537df86e fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x53b6dbb4 kvm_read_guest_offset_cached EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0x54034c2e securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x540f0776 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x540c1084 switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5426b944 security_path_link EXPORT_SYMBOL_GPL vmlinux 0x544f3709 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x5460f79f work_on_cpu_safe_key EXPORT_SYMBOL_GPL vmlinux 0x54752a65 devm_release_action EXPORT_SYMBOL_GPL vmlinux 0x5478827a debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x547882dc fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq EXPORT_SYMBOL_GPL vmlinux 0x54aee8b9 iommu_set_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x54aff09c iommu_map @@ -11317,233 +11325,240 @@ EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier EXPORT_SYMBOL_GPL vmlinux 0x5542ed14 device_attach EXPORT_SYMBOL_GPL vmlinux 0x5545e4ca bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x5548abee __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x554a8d1d kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x5557fe0d __sock_recv_ts_and_drops EXPORT_SYMBOL_GPL vmlinux 0x55657e83 s390_unlist_old_asce +EXPORT_SYMBOL_GPL vmlinux 0x5569754f proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0x556b4aab fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0x556ca896 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5585a2f3 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x55811291 gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0x559851e6 blk_ksm_is_superset EXPORT_SYMBOL_GPL vmlinux 0x55b0defb cio_commit_config EXPORT_SYMBOL_GPL vmlinux 0x55be114d iommu_device_sysfs_remove EXPORT_SYMBOL_GPL vmlinux 0x55c70e0a sbitmap_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x55d79d3d gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0x55d86790 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x55ea870f kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0x55eb90d6 device_reprobe EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout EXPORT_SYMBOL_GPL vmlinux 0x55f2580b __alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x55f91924 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x55fb4f3b fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x56136e00 device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x562511e2 irq_domain_disconnect_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562a8500 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x562d41aa tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x5638caee dw_pcie_ep_init EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x56504b88 udp_abort EXPORT_SYMBOL_GPL vmlinux 0x567b79ce generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x568f66b4 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0x56a31663 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x567f4fa2 devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x56aa518d serdev_device_write_buf EXPORT_SYMBOL_GPL vmlinux 0x56ca1166 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x56d12300 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x56d191f3 gpiod_is_active_low EXPORT_SYMBOL_GPL vmlinux 0x56f83947 sbitmap_queue_min_shallow_depth EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x56fc34a3 devlink_dpipe_headers_register EXPORT_SYMBOL_GPL vmlinux 0x56fe2c68 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x57348227 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x5707ae24 device_create_with_groups EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x57495fec blk_update_request EXPORT_SYMBOL_GPL vmlinux 0x575b1496 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x5767685c bpf_map_inc EXPORT_SYMBOL_GPL vmlinux 0x5767d7be class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x578a0df8 get_pid_task EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579c4b6b ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57c2ef8b nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x57b52384 crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57fc2d6f l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0x5801c74f devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x5814359f kvm_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x582ed3fa virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x582ef725 fwnode_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock EXPORT_SYMBOL_GPL vmlinux 0x5849d4d1 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x58746550 fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info EXPORT_SYMBOL_GPL vmlinux 0x588badaf ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0x589a06a4 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x589d0b7b crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x58bec22f __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x58a39265 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x58b8791e gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0x58d8c507 tty_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e98c91 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x590215cd inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x5912312b ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0x5916414d pci_generic_config_write EXPORT_SYMBOL_GPL vmlinux 0x59191ce9 generic_online_page EXPORT_SYMBOL_GPL vmlinux 0x59218836 iommu_uapi_cache_invalidate EXPORT_SYMBOL_GPL vmlinux 0x594fe160 tod_clock_base -EXPORT_SYMBOL_GPL vmlinux 0x59623a30 devlink_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0x596c5c0d tty_port_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0x596da29e vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0x59936c72 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0x599baa8a crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x59a1b980 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x59744b02 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x59996328 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x59aa9687 ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x59b3b20e kstrdup_quotable_cmdline EXPORT_SYMBOL_GPL vmlinux 0x59be7231 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x59c0ba04 dequeue_signal EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm 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 0x5a4309e8 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x5a456603 get_device EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del EXPORT_SYMBOL_GPL vmlinux 0x5a4e027b gmap_shadow_valid -EXPORT_SYMBOL_GPL vmlinux 0x5a5d8589 crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x5a67ae5a tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x5a641c13 kvm_vcpu_map EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5aa4b1f0 ping_unhash EXPORT_SYMBOL_GPL vmlinux 0x5aacdbcd tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x5b1015c1 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x5abede51 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x5ad466dd housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x5b15e848 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x5b1a564b get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek EXPORT_SYMBOL_GPL vmlinux 0x5b40041a scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x5b597e8b crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x5b4f754e ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x5b6938f9 device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b7c68d4 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x5b752cc1 ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x5b7f5f37 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x5b8a0d75 security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0x5b9b319a sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x5b83575d security_inode_permission EXPORT_SYMBOL_GPL vmlinux 0x5ba362a0 cpci_hp_unregister_bus EXPORT_SYMBOL_GPL vmlinux 0x5ba63bef property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x5baa84e8 shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0x5baeb6f0 ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd1d5e6 perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x5bd7fe4d pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x5bdab7ac xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5bdb5aa5 raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5be7883d device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x5c10368b __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x5c15a50b devm_gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x5c254082 kstrdup_quotable_file EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x5c361c57 sbitmap_del_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c50d503 tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x5c5f3b26 scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0x5c6813af scsi_host_busy_iter EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5ca0f429 kvm_is_visible_gfn EXPORT_SYMBOL_GPL vmlinux 0x5cb588c5 alarm_start EXPORT_SYMBOL_GPL vmlinux 0x5cc07a8f pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x5cec6a59 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x5cd16fe3 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5cd6e9a8 __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5cff2a65 sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x5d0237e9 get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0x5d2c940c chp_get_sch_opm EXPORT_SYMBOL_GPL vmlinux 0x5d323e89 anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0x5d396598 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x5d4336f5 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x5d4ff784 __mmdrop EXPORT_SYMBOL_GPL vmlinux 0x5d77d965 dma_vunmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x5d7ed0fe fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d856303 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x5da129ae fwnode_graph_get_next_endpoint EXPORT_SYMBOL_GPL vmlinux 0x5da51756 devm_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db51c37 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x5dc65477 strp_process EXPORT_SYMBOL_GPL vmlinux 0x5dd76e44 mutex_lock_io EXPORT_SYMBOL_GPL vmlinux 0x5ddc6460 kvm_s390_gisc_register +EXPORT_SYMBOL_GPL vmlinux 0x5deae7fb kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x5df92db8 nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x5e12ac61 debugfs_write_file_bool EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e48759c crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x5e2d2b27 devlink_reload_disable +EXPORT_SYMBOL_GPL vmlinux 0x5e501749 ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e6bed89 crypto_register_acomp EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume EXPORT_SYMBOL_GPL vmlinux 0x5eae3f7b pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x5eb1fd77 platform_get_irq_byname_optional EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x5ebd2e92 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x5ecacf49 ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0x5ed1a231 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x5ee87f22 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x5ee3202e device_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x5eee7b1f sbitmap_queue_clear EXPORT_SYMBOL_GPL vmlinux 0x5f000799 disk_update_readahead EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f3a381c inet_hash EXPORT_SYMBOL_GPL vmlinux 0x5f567994 pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x5f60fba6 gpiochip_request_own_desc EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f80ac38 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x5f777b06 sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0x5f81bc47 __pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0x5f82a631 pci_check_and_unmask_intx EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL vmlinux 0x5fba146a fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x5fc5baab crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5fc8a9b4 tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x5fcc4519 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x5fd23524 nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x5fe493ed kill_device -EXPORT_SYMBOL_GPL vmlinux 0x600ea7aa handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x6025b884 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x5fecb9a7 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x5fee2704 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x5ffa0080 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x60232dd4 crypto_register_alg EXPORT_SYMBOL_GPL vmlinux 0x6029efd5 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x6034194a task_cgroup_path EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x605e4c81 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x604effac sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x60549217 fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x609d492a do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off EXPORT_SYMBOL_GPL vmlinux 0x60c3c165 __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x60e1b1f7 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x60c74d74 kvm_write_guest EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f85601 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x60fae9a6 security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0x61036359 blkg_rwstat_recursive_sum EXPORT_SYMBOL_GPL vmlinux 0x61081e70 sysfs_remove_mount_point EXPORT_SYMBOL_GPL vmlinux 0x6110b890 pci_ioremap_bar EXPORT_SYMBOL_GPL vmlinux 0x6118dc39 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x611fd223 wbt_enable_default EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x613544ca tcp_done EXPORT_SYMBOL_GPL vmlinux 0x6142e2a3 bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x614ad784 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0x615008a8 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x616f257a kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x6163e0c5 gpiod_set_debounce EXPORT_SYMBOL_GPL vmlinux 0x6177373f rhashtable_walk_peek EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x61e4a398 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0x62187023 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x61cc8495 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x61d71aec kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0x621d3491 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x622577f3 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x622b7fa7 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x622fe331 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x6230187b ping_bind EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x62431905 xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0x6246f37c auxiliary_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x6252b2e4 virtqueue_get_vring EXPORT_SYMBOL_GPL vmlinux 0x62588364 ptep_test_and_clear_uc -EXPORT_SYMBOL_GPL vmlinux 0x625aab20 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x6260b84b root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x628d86f6 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x62939e22 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x62b053a0 shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62f16a27 netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x62fe6b57 ipl_info -EXPORT_SYMBOL_GPL vmlinux 0x6301e859 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x62fed117 kvm_vcpu_is_visible_gfn EXPORT_SYMBOL_GPL vmlinux 0x6314a4f7 dma_alloc_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x631ba529 software_node_unregister_node_group EXPORT_SYMBOL_GPL vmlinux 0x633ddb1c tpm_chip_start EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x634c6082 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x63709f50 switchdev_handle_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x6383a010 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x638afd98 device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0x638b4d3e bus_rescan_devices EXPORT_SYMBOL_GPL vmlinux 0x6397c8a3 kthread_flush_work EXPORT_SYMBOL_GPL vmlinux 0x63a23328 cpci_hp_register_bus EXPORT_SYMBOL_GPL vmlinux 0x63aa9999 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x63adc490 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x63b36c62 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x63cc1c73 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x63d32933 task_user_regset_view EXPORT_SYMBOL_GPL vmlinux 0x6420c50c input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x64230a3b aead_exit_geniv EXPORT_SYMBOL_GPL vmlinux 0x6454de85 loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0x645948c0 aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x64610e0c firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x64687a71 __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x64786375 kmsg_dump_get_buffer EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x6492f204 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x64b462d5 gfn_to_pfn_prot EXPORT_SYMBOL_GPL vmlinux 0x64c3ad06 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x64cdedc1 fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete EXPORT_SYMBOL_GPL vmlinux 0x64eba188 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x64f5fd3c fwnode_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x6513cbed relay_close EXPORT_SYMBOL_GPL vmlinux 0x652232a6 tty_ldisc_deref @@ -11551,132 +11566,145 @@ EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x656938c8 sbitmap_prepare_to_wait EXPORT_SYMBOL_GPL vmlinux 0x65743099 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6584d995 gpiod_set_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x65948d61 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x659dbd85 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x65a148e6 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x6596494b perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0x65b1969d pci_epc_get EXPORT_SYMBOL_GPL vmlinux 0x65b7efd9 fsnotify_get_group EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65db962a fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0x65e3a56a dma_can_mmap EXPORT_SYMBOL_GPL vmlinux 0x65effeff virtqueue_kick EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x662bd2d4 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x6635fb84 mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity EXPORT_SYMBOL_GPL vmlinux 0x6636e252 d_walk -EXPORT_SYMBOL_GPL vmlinux 0x663a7d19 crypto_enqueue_request EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end EXPORT_SYMBOL_GPL vmlinux 0x66611eee unregister_kprobe EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6684b7c1 device_show_bool EXPORT_SYMBOL_GPL vmlinux 0x66b8eb24 sysfs_file_change_owner EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66da15e8 devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x66df0d36 __cookie_v6_check EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x67378136 devlink_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x67734901 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x67799206 devlink_region_snapshot_id_put EXPORT_SYMBOL_GPL vmlinux 0x677d2054 is_software_node EXPORT_SYMBOL_GPL vmlinux 0x6782da56 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x6783463f crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x678a3fce bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0x67929379 arch_make_page_accessible EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67984718 perf_aux_output_skip EXPORT_SYMBOL_GPL vmlinux 0x67aebfb4 dax_attribute_group EXPORT_SYMBOL_GPL vmlinux 0x67b9105d blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x67c7cd04 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x67cfbf27 ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67dd3ded vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x68004c0a devm_device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x6826711e xas_nomem EXPORT_SYMBOL_GPL vmlinux 0x6826a182 pci_epc_start EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu EXPORT_SYMBOL_GPL vmlinux 0x68407ea9 sysfs_remove_link EXPORT_SYMBOL_GPL vmlinux 0x685d09ac __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x685d598b sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x68663777 fuse_dev_operations EXPORT_SYMBOL_GPL vmlinux 0x687cb74c software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6886777f set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x68918768 ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68a8df7d check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x68dfae6b gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x68e9bf72 pin_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0x68f5d450 pcie_bus_configure_settings EXPORT_SYMBOL_GPL vmlinux 0x68f7b411 dma_buf_dynamic_attach -EXPORT_SYMBOL_GPL vmlinux 0x68fba714 devlink_reload_disable EXPORT_SYMBOL_GPL vmlinux 0x69102195 handle_irq_desc EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x6923c26a crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x6939073a xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x694b05bc dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0x694f516e pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x695398e6 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x695e253f gpiochip_populate_parent_fwspec_twocell EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x696b180b fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0x69798d02 uprobe_register_refctr EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc EXPORT_SYMBOL_GPL vmlinux 0x698a2654 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0x69920194 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x69a60259 kvm_vcpu_destroy -EXPORT_SYMBOL_GPL vmlinux 0x69ae4332 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x69a58d14 crypto_unregister_ahash EXPORT_SYMBOL_GPL vmlinux 0x69c708e1 pci_epc_set_msi EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr EXPORT_SYMBOL_GPL vmlinux 0x69d1adb4 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x69db7282 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x69d98348 unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6a16ecfc gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x69ff58af espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a1d1224 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0x6a21beec watchdog_init_timeout EXPORT_SYMBOL_GPL vmlinux 0x6a2504fe kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x6a38e163 inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a681023 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x6a7dc721 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x6a82fec5 nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a8c0f36 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x6a9802e2 nf_checksum EXPORT_SYMBOL_GPL vmlinux 0x6a9c6eba serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0x6af9b7f5 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x6ac93747 ping_rcv EXPORT_SYMBOL_GPL vmlinux 0x6b0a7918 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0x6b2155e7 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x6b0cb7ab kvm_put_kvm 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 0x6b3b2ccd int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b595376 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x6b5a7dc8 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6b48b1dd device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6b50d7f1 msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x6b611a49 mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0x6b667897 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x6b871c2b __udp_gso_segment EXPORT_SYMBOL_GPL vmlinux 0x6b8f1b5e __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x6b9e3979 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x6b9d53e9 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x6bab79b9 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x6bcd6947 bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bcf1fc9 unregister_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save EXPORT_SYMBOL_GPL vmlinux 0x6bd7f99e crypto_hash_walk_done EXPORT_SYMBOL_GPL vmlinux 0x6be2bb72 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0x6be3c3f0 is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0x6be41c76 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x6bfc8886 devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0x6c02c1fa fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6c043ffb dev_set_name EXPORT_SYMBOL_GPL vmlinux 0x6c16e91a pci_disable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x6c3c8b6f mmu_notifier_range_update_to_read_only EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen EXPORT_SYMBOL_GPL vmlinux 0x6c45dc7a tpm_is_tpm2 EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c7edcb2 crypto_grab_ahash EXPORT_SYMBOL_GPL vmlinux 0x6c90aeeb iommu_sva_bind_device EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain EXPORT_SYMBOL_GPL vmlinux 0x6cde7f59 mmu_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x6ce2a40a pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x6ce98a64 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x6cf81ba0 platform_get_mem_or_io EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list EXPORT_SYMBOL_GPL vmlinux 0x6d5948b5 debugfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0x6d5ce483 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x6d6e1695 gpiod_direction_output EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d8a92e7 vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0x6db053dd ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x6da30615 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x6db3a3b9 crypto_stats_rng_seed EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 EXPORT_SYMBOL_GPL vmlinux 0x6dd1a53b component_add EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id EXPORT_SYMBOL_GPL vmlinux 0x6dfaa833 zpci_disable_device EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e0e21da xdp_convert_zc_to_xdp_frame EXPORT_SYMBOL_GPL vmlinux 0x6e213911 dma_buf_pin EXPORT_SYMBOL_GPL vmlinux 0x6e23cda9 ccw_device_siosl EXPORT_SYMBOL_GPL vmlinux 0x6e2f8293 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x6e39c737 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x6e4d4d7b device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x6e5bfe63 __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x6e64d9a6 pci_enable_rom EXPORT_SYMBOL_GPL vmlinux 0x6e66529f pci_add_dynid EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id @@ -11684,280 +11712,261 @@ EXPORT_SYMBOL_GPL vmlinux 0x6e7b5c7b fuse_do_open EXPORT_SYMBOL_GPL vmlinux 0x6e8d09cc pci_hp_add_bridge EXPORT_SYMBOL_GPL vmlinux 0x6eaaf5c8 platform_bus_type EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec1ddb3 trace_event_ignore_this_pid EXPORT_SYMBOL_GPL vmlinux 0x6ec73c11 pci_platform_power_transition EXPORT_SYMBOL_GPL vmlinux 0x6ec7b94c gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x6ede3408 mark_page_dirty EXPORT_SYMBOL_GPL vmlinux 0x6ee4e2d4 iommu_device_sysfs_add EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6f0b5a96 blocking_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f1d9418 crypto_alloc_acomp_node EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f250f88 devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0x6f46894f md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x6f6048db inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0x6f65513e devres_close_group EXPORT_SYMBOL_GPL vmlinux 0x6f723272 blk_ksm_init_passthrough -EXPORT_SYMBOL_GPL vmlinux 0x6f741fed kvm_read_guest_cached EXPORT_SYMBOL_GPL vmlinux 0x6f775f87 tpm2_probe EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action EXPORT_SYMBOL_GPL vmlinux 0x6f814a38 pci_intx EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read EXPORT_SYMBOL_GPL vmlinux 0x6fa19db3 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x6fa6d63c crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x6facb923 skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0x6fb41764 get_ccwdev_by_dev_id +EXPORT_SYMBOL_GPL vmlinux 0x6fcd9e0f rtnl_get_net_ns_capable EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fecd018 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x6fde9a13 gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ff614a9 crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0x6ff6ac11 vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x70097303 crypto_alloc_skcipher EXPORT_SYMBOL_GPL vmlinux 0x701674de fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0x70501741 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x7025aa0d xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x702e87f7 fwnode_graph_get_remote_port_parent EXPORT_SYMBOL_GPL vmlinux 0x7050f715 iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x70572dcc fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x70582966 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x7052af59 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x706e06e4 gpiod_set_raw_value EXPORT_SYMBOL_GPL vmlinux 0x707d2b50 blk_mq_quiesce_queue EXPORT_SYMBOL_GPL vmlinux 0x7086c311 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x70976a88 ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x70a70c66 iomap_migrate_page EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated EXPORT_SYMBOL_GPL vmlinux 0x70f89d53 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x71019de7 aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x71174ed8 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0x71273047 devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x712800f1 perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized EXPORT_SYMBOL_GPL vmlinux 0x7179c31c zpci_iomap_start EXPORT_SYMBOL_GPL vmlinux 0x71860826 fsverity_file_open EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now -EXPORT_SYMBOL_GPL vmlinux 0x71b9a658 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0x71cb355f __pci_epf_register_driver EXPORT_SYMBOL_GPL vmlinux 0x71cd9f6e auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x71da314b lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x71f69a66 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x72144a08 crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0x72297bd7 subsys_virtual_register EXPORT_SYMBOL_GPL vmlinux 0x723167a5 debugfs_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0x723990e6 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x725ecd75 scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x7268a3f8 devlink_rate_nodes_destroy EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7280c47e device_get_child_node_count EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu EXPORT_SYMBOL_GPL vmlinux 0x72969132 klp_get_state EXPORT_SYMBOL_GPL vmlinux 0x72b4ff11 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x72c62ca6 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x72c4d9f6 security_path_symlink EXPORT_SYMBOL_GPL vmlinux 0x72cdb590 sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x72db677a shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x72e7d8b6 crypto_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x72fd9f0b l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0x73443335 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x73514bdf gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x731c0020 xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0x7383e3ac handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x7386e172 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x739b582e perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x739e61bd virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x73a2c530 ip6_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x73a5c9cc blk_req_zone_write_trylock EXPORT_SYMBOL_GPL vmlinux 0x73a778e0 synchronize_srcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x73a99b06 virtqueue_disable_cb EXPORT_SYMBOL_GPL vmlinux 0x73b0763f iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x73c15f15 xfrm_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x73c93090 rhashtable_insert_slow EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap EXPORT_SYMBOL_GPL vmlinux 0x73ec4cd8 iommu_uapi_sva_bind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x73feeb9d gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x7407d6af get_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x742ab41b fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0x742fb9f3 platform_msi_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0x744b5b95 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x7468d48b nf_route -EXPORT_SYMBOL_GPL vmlinux 0x74742185 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x74836f20 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74749791 fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0x748ede42 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x74a6c764 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x74a936c1 __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74bec0aa crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x74ce362d tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0x74cfbdc2 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x74d8b522 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x74d3120b __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden EXPORT_SYMBOL_GPL vmlinux 0x74ea2567 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x74f225cd br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0x74f3ee3b devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x75008b92 ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x752655e5 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x7551a323 sched_trace_rq_avg_irq EXPORT_SYMBOL_GPL vmlinux 0x7554b896 zs_huge_class_size EXPORT_SYMBOL_GPL vmlinux 0x75552faa class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x7563254b gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0x7565b545 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x755ccc64 devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0x756c2655 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x757a7e92 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x758d4065 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x7596df00 __traceiter_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x759c774d cmf_readall -EXPORT_SYMBOL_GPL vmlinux 0x75b4dc94 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x75ababb7 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x75b698f5 gpiochip_enable_irq EXPORT_SYMBOL_GPL vmlinux 0x75c7e255 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x75cc6ce0 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x75e380e3 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x75d3f2f8 security_file_permission EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled EXPORT_SYMBOL_GPL vmlinux 0x75edf7b3 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x75f21e0a skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x764af8c8 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x7649ee0d crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register EXPORT_SYMBOL_GPL vmlinux 0x76642b8c dm_send_uevents EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key EXPORT_SYMBOL_GPL vmlinux 0x766dbb99 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x76726fe8 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x767a9d9f devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0x768efdcc mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic EXPORT_SYMBOL_GPL vmlinux 0x76affff5 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x76e58c5e task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x76bbae4e sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7724a24d tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x77252b50 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x77264ff6 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x7748890f gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x772cc0eb crypto_skcipher_setkey EXPORT_SYMBOL_GPL vmlinux 0x774e3e5a key_set_timeout EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77936ed1 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x7799377a apply_to_existing_page_range EXPORT_SYMBOL_GPL vmlinux 0x77b8c2e7 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x77d2bddb bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0x77dafa35 xdp_convert_zc_to_xdp_frame EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77f40273 skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x78151abe skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x78150b98 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x782b7b76 gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0x783eb530 irq_chip_enable_parent EXPORT_SYMBOL_GPL vmlinux 0x7845c4f1 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x7848004d ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x784ce2b8 sched_trace_cfs_rq_path +EXPORT_SYMBOL_GPL vmlinux 0x7859a92c crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x786cc698 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x787957b7 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x787ac4d0 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x78832b64 platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0x7884a7f1 gmap_remove EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x7899ecc2 lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot EXPORT_SYMBOL_GPL vmlinux 0x78a3548e tty_port_link_device EXPORT_SYMBOL_GPL vmlinux 0x78c078a5 bsg_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x78ca4e42 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x78cc7bb5 ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x78f96eaf bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x79015427 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x79164f27 crypto_stats_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x791a023a zpci_enable_device EXPORT_SYMBOL_GPL vmlinux 0x792af004 blk_freeze_queue_start EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac -EXPORT_SYMBOL_GPL vmlinux 0x794906f4 gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x796d3d82 crypto_register_aeads EXPORT_SYMBOL_GPL vmlinux 0x79739f1d s390_reset_cmma -EXPORT_SYMBOL_GPL vmlinux 0x7985f62a metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x7986dede iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0x7992bbd4 dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0x7993073b cio_clear EXPORT_SYMBOL_GPL vmlinux 0x79a074cd __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x79aad745 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x79cdf3f6 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x79c18ef3 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x79cb9119 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x79d25a8b crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0x79d60583 __gmap_zap EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79ea8046 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x7a2580f1 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x79e5158a gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7a0d67da device_find_child EXPORT_SYMBOL_GPL vmlinux 0x7a339361 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x7a42e866 __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x7a51b80c user_update EXPORT_SYMBOL_GPL vmlinux 0x7a5240c9 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x7a6e283f ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag EXPORT_SYMBOL_GPL vmlinux 0x7ad30a82 smp_yield_cpu EXPORT_SYMBOL_GPL vmlinux 0x7ae76cd4 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x7af58d26 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x7afbf6d3 nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow EXPORT_SYMBOL_GPL vmlinux 0x7aff88d1 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x7b011060 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x7b0be2a9 fwnode_get_next_parent EXPORT_SYMBOL_GPL vmlinux 0x7b23021e pci_proc_domain -EXPORT_SYMBOL_GPL vmlinux 0x7b342667 fwnode_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x7b4096a9 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7b40ffe7 __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x7b524a76 srcu_batches_completed EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b62b9ed fwnode_graph_get_next_endpoint EXPORT_SYMBOL_GPL vmlinux 0x7b74d632 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7b8d6044 gpiochip_find EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7ba78f4f raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bdd0a4f device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x7bb755f9 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x7bb8e97a unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x7bc202fd kvm_arch_crypto_set_masks EXPORT_SYMBOL_GPL vmlinux 0x7be224da blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0x7be57f27 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x7be83cc3 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x7beddb65 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x7c0239d8 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x7c02a836 splice_to_pipe EXPORT_SYMBOL_GPL vmlinux 0x7c15e3ca dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7c227a1f devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c16e954 scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0x7c2d392d trace_seq_bprintf EXPORT_SYMBOL_GPL vmlinux 0x7c35e60a stop_machine EXPORT_SYMBOL_GPL vmlinux 0x7c53a290 handle_untracked_irq EXPORT_SYMBOL_GPL vmlinux 0x7c63ba5e scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x7c645b44 tracing_snapshot_cond EXPORT_SYMBOL_GPL vmlinux 0x7c81730a pci_find_next_capability EXPORT_SYMBOL_GPL vmlinux 0x7c8ca431 pci_bus_max_busnr EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats EXPORT_SYMBOL_GPL vmlinux 0x7cd4e0b2 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x7cd91694 xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0x7cd9611c watchdog_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf07641 __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x7cf5e689 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x7cf64486 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0x7d17159d md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x7d1e5ed8 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x7d3cd870 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x7d589033 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x7d3da344 gpiochip_irq_map EXPORT_SYMBOL_GPL vmlinux 0x7d64bf7b blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x7d6adf6e crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x7d6cc326 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x7d683dea fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x7d7336d8 security_path_truncate +EXPORT_SYMBOL_GPL vmlinux 0x7d968341 scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0x7d96e0fe fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x7db1c005 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x7db28b6e skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0x7dbb6de3 xas_find_marked EXPORT_SYMBOL_GPL vmlinux 0x7dc724d2 irq_domain_alloc_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7ddfca26 devlink_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x7e0b8953 md_stop_writes EXPORT_SYMBOL_GPL vmlinux 0x7e155dc5 compat_only_sysfs_link_entry_to_kobj EXPORT_SYMBOL_GPL vmlinux 0x7e18f2d6 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x7e25b7c4 eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0x7e333246 irq_domain_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk EXPORT_SYMBOL_GPL vmlinux 0x7e464dd3 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x7e4fd497 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x7e52cea7 device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x7e5a42ae cio_update_schib -EXPORT_SYMBOL_GPL vmlinux 0x7e6463a8 device_move EXPORT_SYMBOL_GPL vmlinux 0x7e64f176 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x7e6a4e23 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x7e72a970 __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e866e48 trace_output_call EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap EXPORT_SYMBOL_GPL vmlinux 0x7e98d9c4 dm_accept_partial_bio EXPORT_SYMBOL_GPL vmlinux 0x7eaa9028 css_sch_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7eacf15b fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ec9ab1e __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x7ecaf5d1 crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0x7edfdb92 irq_set_affinity_notifier EXPORT_SYMBOL_GPL vmlinux 0x7f0ed5dc verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x7f10ee18 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x7f3e470c free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x7f50be86 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x7f21fb07 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f2f296d trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x7f3b88e0 xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0x7f5d8502 screen_glyph EXPORT_SYMBOL_GPL vmlinux 0x7f647878 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x7f751548 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x7f7a8e84 skb_segment EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f7f879d shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x7f803f5d crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x7f83c713 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x7f87fed0 tpm1_do_selftest EXPORT_SYMBOL_GPL vmlinux 0x7f8f91e8 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0x7fd1067e fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x7fb4bec9 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x7fcc7323 devlink_net EXPORT_SYMBOL_GPL vmlinux 0x803fae6a key_type_user EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put EXPORT_SYMBOL_GPL vmlinux 0x80744f85 noop_invalidatepage @@ -11965,375 +11974,377 @@ EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested EXPORT_SYMBOL_GPL vmlinux 0x809d57dd class_destroy EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x80c23325 sfp_bus_add_upstream EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80cc5405 gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free EXPORT_SYMBOL_GPL vmlinux 0x80eabcdc dma_buf_vmap EXPORT_SYMBOL_GPL vmlinux 0x80fb44b1 software_node_register_node_group EXPORT_SYMBOL_GPL vmlinux 0x8107dca3 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x810d772b sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0x8127d5c4 fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0x812ab9d0 kvm_read_guest_offset_cached EXPORT_SYMBOL_GPL vmlinux 0x812ea476 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x814fbee0 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x815b4276 bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x815dc700 devlink_port_register EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8162f46f hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x816a7834 gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0x81778aa9 ccw_device_get_chp_desc EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x819a1fb7 crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81ae88b1 perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0x81b2191c vp_modern_set_queue_size EXPORT_SYMBOL_GPL vmlinux 0x81b2bb34 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x81bd8e88 kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x81e4e8a0 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x81edf418 dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x81fe138c sysfs_remove_files EXPORT_SYMBOL_GPL vmlinux 0x8216774f balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0x823533ec clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x8246f5dc ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x825c02cb synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0x827168a4 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x8278ee1d crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0x827c8389 dw_pcie_setup_rc EXPORT_SYMBOL_GPL vmlinux 0x827d0288 fuse_request_end EXPORT_SYMBOL_GPL vmlinux 0x8281f3fe dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0x828e9c92 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0x828ebb3f kvm_vcpu_read_guest EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map EXPORT_SYMBOL_GPL vmlinux 0x82c68725 show_class_attr_string EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure EXPORT_SYMBOL_GPL vmlinux 0x82dcb5de tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x82f9edaa kick_process -EXPORT_SYMBOL_GPL vmlinux 0x83105fcb perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0x83166804 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x832d24fd devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8375333f __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x8389088c __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x83963529 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x839c6aa7 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x83849167 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x8392c976 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x8392f9f4 bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0x83aa84da ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x83b653d8 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x83c8dc7e device_show_ulong EXPORT_SYMBOL_GPL vmlinux 0x83cfa381 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x83d4859f sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x840444c1 __sync_filesystem EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv EXPORT_SYMBOL_GPL vmlinux 0x842134e9 __bio_crypt_clone EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x842e1858 device_change_owner EXPORT_SYMBOL_GPL vmlinux 0x84389b63 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x844e8d6e crypto_register_scomps EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno EXPORT_SYMBOL_GPL vmlinux 0x84562f44 irq_chip_release_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x84648b61 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8466dfbb crypto_grab_shash EXPORT_SYMBOL_GPL vmlinux 0x846fcefa iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0x84960219 lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x84cef4f6 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x84d2b7b1 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x84e99b3a devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x84eafa5d netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x849a4055 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x84d57aad nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x84ea7c1a inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0x84fb350e blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x84ffc303 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x8502e720 __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy EXPORT_SYMBOL_GPL vmlinux 0x850ff20a devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x85109b1c ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x85311ed4 __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0x853fc09f inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x8568df97 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x85413bcf tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x858e7e4d skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x85b2ad24 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x85b74926 strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0x85f5aba1 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x86219713 ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start EXPORT_SYMBOL_GPL vmlinux 0x866b2f8d dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x8671a1e4 shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x867d8873 crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get EXPORT_SYMBOL_GPL vmlinux 0x86b0b6ba zpci_barrier EXPORT_SYMBOL_GPL vmlinux 0x86b46673 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x86b66617 gpiod_set_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x86c5baf7 trace_seq_vprintf EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x86dbe7f1 trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto EXPORT_SYMBOL_GPL vmlinux 0x86e49e99 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x86ef0cd8 inet6_destroy_sock EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue EXPORT_SYMBOL_GPL vmlinux 0x870591bd linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0x870a41e9 gfn_to_pfn_prot EXPORT_SYMBOL_GPL vmlinux 0x870bc28e blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x870bf920 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x8711ec6e devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x871f75ad netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x87215a5d gmap_pmdp_idte_global EXPORT_SYMBOL_GPL vmlinux 0x8724641f fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x87518c7e security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0x87259fd8 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x8733f158 device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x877cfea0 ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0x87856b27 pci_epf_type_add_cfs EXPORT_SYMBOL_GPL vmlinux 0x878fffbd dm_post_suspending EXPORT_SYMBOL_GPL vmlinux 0x879239c1 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x87a55ac0 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x87c25f0f lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x87a28566 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x87dc3381 rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0x87e61496 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x8826b0a0 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x881cb1ed security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x88285dc1 device_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x882e9b54 blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0x8843c471 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x883678dd sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x883978f7 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x88541dbf crypto_spawn_tfm2 EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x8869e315 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x887032c5 __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x887b06b5 con_debug_enter EXPORT_SYMBOL_GPL vmlinux 0x887fb59d iommu_sva_unbind_device EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x88d1371c tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0x88dc3a08 alarm_expires_remaining EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89271267 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x8928d7be nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x893d226e skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0x893de5e7 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x893f1b9b security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x8944608a udp_abort EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put EXPORT_SYMBOL_GPL vmlinux 0x8954291d irq_chip_unmask_parent EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x89569873 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x896fac5a crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x89575dd0 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x8968ba77 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x8970a99d nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0x898e554f tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8990d127 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x89b539f0 crypto_shash_update EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x89cf838e skcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x89ea5521 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x89ebe6ba dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0x89ff3f02 ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0x8a2317ac wait_on_page_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0x8a2bf715 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x89f74380 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x8a0a3015 ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0x8a2fdf10 iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x8a3a1c39 gmap_put -EXPORT_SYMBOL_GPL vmlinux 0x8a57340d fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x8a5e98ef strp_init 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 0x8a724dd1 blk_ksm_destroy EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8aa3da61 __traceiter_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ae1995a unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0x8af7b309 ccw_device_pnso +EXPORT_SYMBOL_GPL vmlinux 0x8afa19f5 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x8afad24a inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x8afe75bc badblocks_check EXPORT_SYMBOL_GPL vmlinux 0x8b0da189 dma_resv_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x8b1a354d pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x8b1ccd40 dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x8b1d8a39 __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0x8b2d5764 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x8b4618f6 kvm_vcpu_gfn_to_pfn_atomic EXPORT_SYMBOL_GPL vmlinux 0x8b541f65 dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0x8b5bec6e rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8b5d455e device_del -EXPORT_SYMBOL_GPL vmlinux 0x8b6358e1 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x8b640954 ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x8b655ac7 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x8b68f70a bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x8b6d8c4e sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x8b94c3d6 dax_iomap_rw EXPORT_SYMBOL_GPL vmlinux 0x8b9e24c5 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x8ba98a70 sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0x8bad4ff4 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0x8bbc169c device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x8bdbf7fe rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x8bb274c0 perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0x8bded20f zpci_load +EXPORT_SYMBOL_GPL vmlinux 0x8bececb2 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x8bf2f162 devlink_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0x8bfba1bf blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x8bff11fa sock_map_close EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c0fbf62 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x8c314f3d fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x8c1197c9 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x8c1fa6a4 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x8c263e57 trace_array_put EXPORT_SYMBOL_GPL vmlinux 0x8c47afca idr_alloc EXPORT_SYMBOL_GPL vmlinux 0x8c61df02 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8c7cf212 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x8c9fc161 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x8c766776 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x8c76ed26 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x8c969333 __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x8caa75ac rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x8cc470ae apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x8ccf9a19 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x8cad0a97 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x8cd81cb9 lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0x8cd9dc3a devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x8ce0c04a nf_checksum EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x8ce3db2e key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x8ced2b67 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x8d088e50 perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x8d1f0256 fb_deferred_io_cleanup EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc EXPORT_SYMBOL_GPL vmlinux 0x8d240f75 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x8d264ded clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x8d33a455 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x8d54e183 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x8d73b4ae device_link_add -EXPORT_SYMBOL_GPL vmlinux 0x8da8ebd4 inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8dac86a4 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x8d46bf28 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x8d4cdc9e xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x8d659f5b posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d90909d skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x8d95cda4 crypto_stats_akcipher_sign EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8dba07d7 skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0x8dd1b0fe tracepoint_srcu EXPORT_SYMBOL_GPL vmlinux 0x8dd30e32 pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x8e2a04c6 bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0x8e2a14f7 driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x8e349d11 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x8e3ef7e3 acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x8e4597bd sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e68d6a6 __sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x8e63e7fc kick_process EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8e9ef562 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8eb70a3f aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8ec8e243 trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8f02edab bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f145932 crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0x8f22a31e dm_internal_resume_fast EXPORT_SYMBOL_GPL vmlinux 0x8f28ee6d driver_find EXPORT_SYMBOL_GPL vmlinux 0x8f2e5212 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x8f34ad5f sfp_bus_add_upstream EXPORT_SYMBOL_GPL vmlinux 0x8f3be383 fuse_send_init EXPORT_SYMBOL_GPL vmlinux 0x8f483c67 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x8f54cb6c netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x8f573274 vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0x8f5bf523 __zpci_load -EXPORT_SYMBOL_GPL vmlinux 0x8f62a56a dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f85592b netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0x8fbb1133 pci_epf_bind EXPORT_SYMBOL_GPL vmlinux 0x8fd67139 ccw_device_get_schid EXPORT_SYMBOL_GPL vmlinux 0x8fdd8f60 input_ff_erase EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x903af366 ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903c936a ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x905aac4c sock_map_destroy EXPORT_SYMBOL_GPL vmlinux 0x90658bcd kthread_use_mm EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put EXPORT_SYMBOL_GPL vmlinux 0x906c738d dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x9075aad8 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x907bd366 synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0x909a8abf nr_running EXPORT_SYMBOL_GPL vmlinux 0x909fda42 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x90a0b3d7 iterate_mounts EXPORT_SYMBOL_GPL vmlinux 0x90a1866b ccw_device_get_chpid +EXPORT_SYMBOL_GPL vmlinux 0x90c19f0c kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x90c90a36 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x90d699a6 scsi_host_complete_all_commands EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x90da1ae2 bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0x90ec60b7 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x90fc54cb ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9111453a put_pid +EXPORT_SYMBOL_GPL vmlinux 0x90f7d773 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x91110a41 skcipher_walk_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x913b700b kobj_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x915442a2 kthread_func -EXPORT_SYMBOL_GPL vmlinux 0x915bff1a __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x9161a23f tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x916b1fe3 kvm_write_guest_cached EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x91af651c devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x919de424 devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x91aa8f34 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x91b3ea3f sdev_evt_send_simple EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval EXPORT_SYMBOL_GPL vmlinux 0x91d53c63 gmap_shadow_sgt +EXPORT_SYMBOL_GPL vmlinux 0x91e259a5 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean EXPORT_SYMBOL_GPL vmlinux 0x91edbca8 component_del +EXPORT_SYMBOL_GPL vmlinux 0x91f278e2 fwnode_handle_put EXPORT_SYMBOL_GPL vmlinux 0x91f94a5e fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x92044b0e kvm_get_kvm_safe EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred EXPORT_SYMBOL_GPL vmlinux 0x9242bc8b iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x924bb394 gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object EXPORT_SYMBOL_GPL vmlinux 0x925195ce driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x925cf461 bpf_trace_run3 EXPORT_SYMBOL_GPL vmlinux 0x92614b3f irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0x92b6a9c8 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x9275d6bd devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92dbcd70 crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92eddbee l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x92fe323b iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x92f0d70e fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x930231b2 fscrypt_set_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x93087ba8 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x9318443d ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x931af1fc skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x93128ea4 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x9317df09 crypto_grab_skcipher EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x935d52bb find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x93b86709 nf_route EXPORT_SYMBOL_GPL vmlinux 0x93d35389 dm_get_md EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x94045e85 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x942392e5 __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x9439706f vfs_getxattr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x943e2ffc kvm_vcpu_unmap EXPORT_SYMBOL_GPL vmlinux 0x944acf90 clockevents_config_and_register EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x947ede97 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x949689ee devlink_port_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x94b2136e synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x949ef1f5 sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0x94c40912 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x94cbf428 __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x94d49083 gmap_convert_to_secure EXPORT_SYMBOL_GPL vmlinux 0x94e3ddfb dm_copy_name_and_uuid EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94fe8956 fwnode_property_get_reference_args EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x9515f846 xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952e64cf setfl EXPORT_SYMBOL_GPL vmlinux 0x95314a3d invalidate_inode_pages2 EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x95434523 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x95403ab7 eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x956f937f pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x957219bb device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x9577864c inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0x9578ddf7 mmu_interval_notifier_insert_locked 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 0x959f6ab4 gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0x95a49194 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x95a7db51 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x95ae47fd perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0x95b061d9 get_user_pages_fast_only EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x95ed7f96 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x95e3651b perf_aux_output_skip EXPORT_SYMBOL_GPL vmlinux 0x95f6b766 create_signature -EXPORT_SYMBOL_GPL vmlinux 0x960a4b33 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x960ede54 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x9606a55b fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x9628b5e8 virtqueue_get_used_addr EXPORT_SYMBOL_GPL vmlinux 0x962ece6b gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x962efe47 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x9641f15b sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x964293ec blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0x964956a6 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x964db8ea gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x964e94a2 __get_task_comm EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9672e1f4 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0x9690a7b6 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0x96a861a2 do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0x96addeaf tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x96b43ced platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x969eae61 device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0x96b734cf sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x96c31a99 __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x96c3f4c8 gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0x96c8041d serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x96c9ecb5 inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x96e1daa1 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x96e3436f kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0x96eff4d8 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x96f67448 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x96f7b73a of_css EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x96fa803b kvm_io_bus_write EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x97182da8 gpiochip_line_is_persistent EXPORT_SYMBOL_GPL vmlinux 0x9725cd7d bsg_remove_queue 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 0x976dab25 devlink_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x977f9782 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x97595fef blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x97cb1054 ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x97cc6ad2 exportfs_decode_fh EXPORT_SYMBOL_GPL vmlinux 0x97cfd18e pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x97da3de1 crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0x97dba0c8 sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97eefdbd fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x980e9e8a get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x9818b122 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x97e914e9 kvm_put_kvm_no_destroy EXPORT_SYMBOL_GPL vmlinux 0x982f2639 blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98454857 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x984756fe ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x986a6b12 md_find_rdev_nr_rcu EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9880af9c perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str EXPORT_SYMBOL_GPL vmlinux 0x98944c59 mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0x989d038d inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x98953423 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x989aa630 netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x98bbdbdd ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x98be94e4 devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x98cbdbb6 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x98b8a242 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x98d02847 devlink_flash_update_status_notify 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 0x98facb04 gpiod_set_raw_value EXPORT_SYMBOL_GPL vmlinux 0x991fa358 class_find_device EXPORT_SYMBOL_GPL vmlinux 0x9923a20c dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x9926d9fb crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x992d7234 device_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x993b263c unwind_get_return_address -EXPORT_SYMBOL_GPL vmlinux 0x9947fa62 wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x994e1244 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x9940e37c iptunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x99585a09 srcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x9975be89 nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x99b526eb bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x9973838e devlink_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99e3afe9 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x99e3ba9e __ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x99e44231 mddev_suspend EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at EXPORT_SYMBOL_GPL vmlinux 0x99f4591c key_type_trusted @@ -12342,150 +12353,156 @@ EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name EXPORT_SYMBOL_GPL vmlinux 0x9a2d3a01 driver_deferred_probe_check_state EXPORT_SYMBOL_GPL vmlinux 0x9a2d92ae debugfs_create_u32_array EXPORT_SYMBOL_GPL vmlinux 0x9a3c63e9 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x9a4b945a gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x9a4aa9b9 __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x9a635abe dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0x9a84d44b ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x9a7e0f2d __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x9a81bae8 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x9a929367 scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0x9a965747 pci_get_dsn EXPORT_SYMBOL_GPL vmlinux 0x9ad3de36 mm_account_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9b005c13 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x9b03b2e0 crypto_shash_finup EXPORT_SYMBOL_GPL vmlinux 0x9b18ec1b fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0x9b390f4d strp_init +EXPORT_SYMBOL_GPL vmlinux 0x9b3e8137 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x9b3eb723 tracing_snapshot_cond EXPORT_SYMBOL_GPL vmlinux 0x9b4f694d fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x9b639862 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6e2a96 gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio EXPORT_SYMBOL_GPL vmlinux 0x9b8447c4 pci_find_ht_capability EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9b972554 inet6_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x9ba68c62 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x9bad0633 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x9bcc5b1f __traceiter_xdp_exception 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 0x9bf4fbac devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x9bf6c9a6 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x9bedd5fb sched_trace_rq_avg_irq +EXPORT_SYMBOL_GPL vmlinux 0x9bf06f71 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x9c0c224a devlink_port_params_register EXPORT_SYMBOL_GPL vmlinux 0x9c154bb1 irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0x9c33eec0 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x9c3574cf iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x9c15889a skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x9c1aa97d dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0x9c3d6cd6 dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0x9c67b389 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x9c69c51d wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x9c6d26fb synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x9c6ef685 devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9ce42257 fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0x9cfcbce1 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9d060c3c gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data EXPORT_SYMBOL_GPL vmlinux 0x9d179312 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x9d1aa33b scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x9d1aec02 pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d2f8060 ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0x9d36ef33 kobject_get_path EXPORT_SYMBOL_GPL vmlinux 0x9d5ab365 iommu_dev_feature_enabled EXPORT_SYMBOL_GPL vmlinux 0x9d5ecca6 __dax_driver_register EXPORT_SYMBOL_GPL vmlinux 0x9d93f511 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0x9d94145c gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x9da6d8e5 gmap_create EXPORT_SYMBOL_GPL vmlinux 0x9da9351f gmap_shadow_r3t -EXPORT_SYMBOL_GPL vmlinux 0x9dabc9a8 crypto_unregister_ahashes EXPORT_SYMBOL_GPL vmlinux 0x9db88340 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x9dbed574 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x9dd73e87 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x9dd89794 skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0x9dec814f xas_get_mark EXPORT_SYMBOL_GPL vmlinux 0x9df4a2a8 idr_remove EXPORT_SYMBOL_GPL vmlinux 0x9e018752 pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0x9e0fe1e0 devm_platform_ioremap_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x9e197f84 chsc_scud -EXPORT_SYMBOL_GPL vmlinux 0x9e2f665b gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x9e3e3e97 inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field EXPORT_SYMBOL_GPL vmlinux 0x9e47b3a6 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x9e4ff16a strp_done EXPORT_SYMBOL_GPL vmlinux 0x9e527057 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x9e671741 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x9e6be567 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x9e729205 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x9e80bd31 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x9e8ef84a init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x9e974c70 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x9ead1272 gpiochip_line_is_open_drain EXPORT_SYMBOL_GPL vmlinux 0x9ec054d5 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x9eca4f4b kvm_is_visible_gfn EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9ef699d6 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x9efb09a1 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x9f0424f8 trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0x9f0db2c6 devres_open_group EXPORT_SYMBOL_GPL vmlinux 0x9f14cadd iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9f1d8177 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x9f203a42 __traceiter_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x9f2506e1 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x9f3418db fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0x9f4cb126 iomap_file_unshare EXPORT_SYMBOL_GPL vmlinux 0x9f4f6ac9 pci_hp_destroy EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x9f90313a pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x9f75c8b8 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x9f7a2364 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x9f8a152e inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x9fa1034c crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0x9fa2d164 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x9fc12c7e inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm EXPORT_SYMBOL_GPL vmlinux 0x9ff6ddcb fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0x9ff7eb1e security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa002485e crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xa00c0a4c switchdev_handle_fdb_del_to_device EXPORT_SYMBOL_GPL vmlinux 0xa011a507 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xa03a87fa sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0xa040cef4 class_for_each_device EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa06371a4 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xa06274ea shmem_read_mapping_page_gfp EXPORT_SYMBOL_GPL vmlinux 0xa068f3e3 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xa06c5cd5 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xa0697b70 gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async EXPORT_SYMBOL_GPL vmlinux 0xa082af2f class_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0xa0864a21 balloon_page_enqueue EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages EXPORT_SYMBOL_GPL vmlinux 0xa0d4d5e8 do_unregister_con_driver EXPORT_SYMBOL_GPL vmlinux 0xa0d99a03 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xa0f1b26c devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xa0f66dbc sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0xa111e665 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xa150feaf gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0xa15b776b pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xa15c9e61 gpiochip_generic_free EXPORT_SYMBOL_GPL vmlinux 0xa15f929b tty_get_pgrp EXPORT_SYMBOL_GPL vmlinux 0xa164bfa2 blk_ksm_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0xa1711661 sock_diag_unregister_inet_compat EXPORT_SYMBOL_GPL vmlinux 0xa171b7e2 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xa17d5644 synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0xa18a953a devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0xa18f7b14 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0xa19fdc66 kvm_arch_crypto_set_masks EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1d97791 gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0xa1ec20da clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xa1efcf2b strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0xa1f60014 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa1fe2402 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xa1fe6b08 __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0xa205c4a1 blk_mq_start_stopped_hw_queue EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa2319dac sfp_register_socket EXPORT_SYMBOL_GPL vmlinux 0xa24cb128 rt_mutex_trylock EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa2664b7b dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0xa2686b1c pci_host_probe EXPORT_SYMBOL_GPL vmlinux 0xa26bed8e bstr_printf EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested EXPORT_SYMBOL_GPL vmlinux 0xa2706ad1 fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0xa29bb0f5 skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0xa29cafb8 do_unbind_con_driver EXPORT_SYMBOL_GPL vmlinux 0xa2a3f112 devm_create_dev_dax EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xa2bb0db7 skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xa2c03698 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xa2c0122e kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xa2c1fd70 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xa2dad380 sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa3106754 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xa31092bb crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xa3345b7b inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xa34a0a25 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xa356fbbd inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0xa3687f21 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0xa37b1733 mark_page_dirty_in_slot 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 0xa3aeb9a0 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector EXPORT_SYMBOL_GPL vmlinux 0xa3b9b118 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa3ca229e devlink_port_register EXPORT_SYMBOL_GPL vmlinux 0xa3e4627f pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xa3ecdcc2 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa409a231 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa409b35d fwnode_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa4233b3c devlink_port_type_eth_set EXPORT_SYMBOL_GPL vmlinux 0xa42bd6f1 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xa43787ff filemap_range_needs_writeback EXPORT_SYMBOL_GPL vmlinux 0xa4429303 pci_debug_err_id EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa44a1526 scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa497b18e fscrypt_ioctl_remove_key_all_users EXPORT_SYMBOL_GPL vmlinux 0xa4a712df irq_set_chained_handler_and_data @@ -12494,31 +12511,36 @@ EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite EXPORT_SYMBOL_GPL vmlinux 0xa4b63b26 mddev_unlock EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4ce5429 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xa4deb94f dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0xa4f61a0d security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0xa4fcb560 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa50721ce __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xa50afb3a pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xa50df814 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xa5231498 devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0xa5554b47 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa5659abd clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0xa56ad923 set_capacity_and_notify EXPORT_SYMBOL_GPL vmlinux 0xa5710086 gmap_shadow_page EXPORT_SYMBOL_GPL vmlinux 0xa5745f0c gmap_mark_unmergeable EXPORT_SYMBOL_GPL vmlinux 0xa575a703 __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0xa591f13a crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xa5c7a9a7 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0xa5cbc7cf ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa58c661f crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa58e04bd crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xa592fbfe lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xa5a0755b addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xa5cf2088 crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0xa5d21a11 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xa5d893f3 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xa5e277ed udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full EXPORT_SYMBOL_GPL vmlinux 0xa6181d30 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xa64e0dd0 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xa64f0084 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xa627ff18 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xa651f825 platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0xa6673929 irq_domain_remove EXPORT_SYMBOL_GPL vmlinux 0xa66baf40 cio_start_key +EXPORT_SYMBOL_GPL vmlinux 0xa67d125d crypto_register_shashes EXPORT_SYMBOL_GPL vmlinux 0xa6802273 cio_halt +EXPORT_SYMBOL_GPL vmlinux 0xa6804a08 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xa6820b3e mnt_want_write_file EXPORT_SYMBOL_GPL vmlinux 0xa689b995 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xa6947d4e __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0xa699a076 bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0xa6ac1d86 crypto_ahash_setkey 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 0xa6bf0490 iommu_group_get @@ -12526,146 +12548,169 @@ EXPORT_SYMBOL_GPL vmlinux 0xa6d51679 fuse_do_ioctl EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync EXPORT_SYMBOL_GPL vmlinux 0xa7094b0e n_tty_inherit_ops EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa715fdfe inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0xa73387bd iommu_attach_group EXPORT_SYMBOL_GPL vmlinux 0xa737926b fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xa738bc23 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xa75fd3ab freq_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xa763bdc9 device_register EXPORT_SYMBOL_GPL vmlinux 0xa764bac8 pci_cfg_access_lock EXPORT_SYMBOL_GPL vmlinux 0xa7680cb6 __class_create -EXPORT_SYMBOL_GPL vmlinux 0xa77d1f01 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xa77b73d2 netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0xa78207c5 devm_krealloc EXPORT_SYMBOL_GPL vmlinux 0xa79c5953 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xa7c9d014 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xa7be0d2a task_cgroup_path EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu EXPORT_SYMBOL_GPL vmlinux 0xa7cf936d blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0xa7d6676d device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xa7eb97f1 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa7ee4f3d rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0xa7fdfb58 percpu_free_rwsem EXPORT_SYMBOL_GPL vmlinux 0xa8382b6d posix_acl_default_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xa852d4aa is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xa854a705 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xa86236ee __traceiter_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0xa889bd10 fscrypt_set_bio_crypt_ctx EXPORT_SYMBOL_GPL vmlinux 0xa8acd364 input_class EXPORT_SYMBOL_GPL vmlinux 0xa8b30600 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xa8b74040 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa8f41a50 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0xa8fc3a92 kvm_vcpu_wake_up EXPORT_SYMBOL_GPL vmlinux 0xa9154bb1 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xa91afe3a switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xa92976e7 bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9416b01 ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0xa95cbe8c dm_start_time_ns_from_clone EXPORT_SYMBOL_GPL vmlinux 0xa96476af virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xa9683be0 devlink_params_publish +EXPORT_SYMBOL_GPL vmlinux 0xa990b92a nfnl_ct_hook EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put EXPORT_SYMBOL_GPL vmlinux 0xa9b1599b pci_epc_multi_mem_init EXPORT_SYMBOL_GPL vmlinux 0xa9d0ab1f trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0xa9d0dd62 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xa9d9ceb1 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xa9e10c9f init_dummy_netdev EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9ebda84 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0xa9eef9c6 device_remove_file EXPORT_SYMBOL_GPL vmlinux 0xa9fd4b63 vp_modern_get_status EXPORT_SYMBOL_GPL vmlinux 0xa9ff15b9 s390_enable_sie +EXPORT_SYMBOL_GPL vmlinux 0xaa053554 security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0xaa105592 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xaa1d1079 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xaa1f179e blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa2dffda scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0xaa30d1a9 devlink_net EXPORT_SYMBOL_GPL vmlinux 0xaa545222 noop_direct_IO EXPORT_SYMBOL_GPL vmlinux 0xaa61de11 irq_stat EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa8a1374 blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0xaa9c1145 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xaa9f033b __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaad21f98 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0xaaddf5ee ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xaadf21ce devlink_port_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xaaf72d2b device_move EXPORT_SYMBOL_GPL vmlinux 0xaafa5482 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xab03a0e1 tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0xab149931 iommu_detach_device EXPORT_SYMBOL_GPL vmlinux 0xab3c4e56 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0xab5f820d sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xab4313aa tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xab571a0a __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xab591cb7 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xab6011a5 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xab60419f __raw_v4_lookup EXPORT_SYMBOL_GPL vmlinux 0xab8b6a03 virtio_max_dma_size EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks EXPORT_SYMBOL_GPL vmlinux 0xab9db946 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0xabbb4384 posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabd91b4c kvm_init -EXPORT_SYMBOL_GPL vmlinux 0xabdc9f81 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xabef8357 sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0xabf7a0a8 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xabf93464 bpf_prog_inc EXPORT_SYMBOL_GPL vmlinux 0xac1b9bff md_do_sync EXPORT_SYMBOL_GPL vmlinux 0xac231fd8 vtime_account_kernel EXPORT_SYMBOL_GPL vmlinux 0xac2c05b8 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xac36560f kvm_arch_crypto_clear_masks EXPORT_SYMBOL_GPL vmlinux 0xac38476b gmap_shadow_pgt +EXPORT_SYMBOL_GPL vmlinux 0xac3bb534 devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0xac405e1e is_transparent_hugepage EXPORT_SYMBOL_GPL vmlinux 0xac4a70ae iommu_aux_detach_device EXPORT_SYMBOL_GPL vmlinux 0xac5a789c trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xac6dc592 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xac6ee5f4 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xac81270e do_xdp_generic EXPORT_SYMBOL_GPL vmlinux 0xac957ad0 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xacd3df2c trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0xacd723cb put_device +EXPORT_SYMBOL_GPL vmlinux 0xacbfa4f5 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xacc2992f set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xacccbd89 put_pid EXPORT_SYMBOL_GPL vmlinux 0xacdcdbbb relay_flush EXPORT_SYMBOL_GPL vmlinux 0xacdf8d66 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xace3ee24 hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0xad0aca1b call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xad1d184a crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad2a614d gfn_to_hva EXPORT_SYMBOL_GPL vmlinux 0xad2cbc0c dma_need_sync EXPORT_SYMBOL_GPL vmlinux 0xad306ad6 subsys_dev_iter_next EXPORT_SYMBOL_GPL vmlinux 0xad3dfa13 lgr_info_log EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xad4a6a7e __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad72e584 sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy EXPORT_SYMBOL_GPL vmlinux 0xadaaa3ae diag308 -EXPORT_SYMBOL_GPL vmlinux 0xadb07637 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xadb854a4 crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0xadcb2fe9 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0xae0a78a9 kvm_vcpu_gfn_to_page EXPORT_SYMBOL_GPL vmlinux 0xae0ec973 elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xae116bf0 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0xae11b119 fib6_check_nexthop EXPORT_SYMBOL_GPL vmlinux 0xae282cf9 decrypt_blob EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init EXPORT_SYMBOL_GPL vmlinux 0xae4ef89f dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0xae610cfd crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xae64b41d nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xae5ccb06 kill_device EXPORT_SYMBOL_GPL vmlinux 0xae64f1dd __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xae66d9f0 kvm_make_all_cpus_request EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae7225d0 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xae6aa238 get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae7fecdc ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xae988695 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xae9a60fb ping_hash EXPORT_SYMBOL_GPL vmlinux 0xaeaaf3ab irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xaec8041a bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xaeb7261b bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0xaecb2d58 gmap_pmdp_csp EXPORT_SYMBOL_GPL vmlinux 0xaecea112 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xaeda1891 crypto_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0xaef4173e tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xaefd975c crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0xaf1385da crypto_stats_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xaf5f86d0 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xaf637e47 sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0xaf63e41d debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xaf694536 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xaf713c0f fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xaf75a751 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xafadd0aa find_get_pid EXPORT_SYMBOL_GPL vmlinux 0xafc7a41d hrtimer_start_range_ns EXPORT_SYMBOL_GPL vmlinux 0xafcd7ed9 iomap_releasepage EXPORT_SYMBOL_GPL vmlinux 0xafdbcee2 thp_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0xafde9db6 vp_modern_generation EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xb012f577 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0xb02e78e2 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xb0460630 gpiod_direction_output_raw EXPORT_SYMBOL_GPL vmlinux 0xb0479ef6 debugfs_rename EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb05d7dc5 devlink_params_unregister EXPORT_SYMBOL_GPL vmlinux 0xb064668b pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xb06a751a gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0xb06f590c __fscrypt_prepare_lookup EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb08b475c trace_event_raw_init EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0ba6288 platform_get_irq_byname_optional EXPORT_SYMBOL_GPL vmlinux 0xb0c9dab8 vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0xb0dca6b5 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xb0e8b166 __vfs_setxattr_noperm EXPORT_SYMBOL_GPL vmlinux 0xb0e938c4 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xb0f8b65f bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0xb0f9e704 xas_split -EXPORT_SYMBOL_GPL vmlinux 0xb0f9e84e fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0xb104517e inverse_translate EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb11ba756 xfrm_output EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb11efa33 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xb1255ddb locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0xb126a075 blk_ksm_intersect_modes EXPORT_SYMBOL_GPL vmlinux 0xb15b552a sfp_parse_support EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb177add6 path_noexec EXPORT_SYMBOL_GPL vmlinux 0xb1a56446 fat_setattr EXPORT_SYMBOL_GPL vmlinux 0xb1b1c93e atomic_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xb1c4df2e zpci_kvm_hook @@ -12673,121 +12718,130 @@ EXPORT_SYMBOL_GPL vmlinux 0xb1d4c766 fscrypt_ioctl_get_nonce EXPORT_SYMBOL_GPL vmlinux 0xb1df7db3 clockevents_register_device EXPORT_SYMBOL_GPL vmlinux 0xb1e00978 virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e2d5d6 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xb1f6196e sock_prot_inuse_add EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string EXPORT_SYMBOL_GPL vmlinux 0xb21cde14 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xb22a8098 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xb232310e xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb24ad9d0 security_path_chmod +EXPORT_SYMBOL_GPL vmlinux 0xb25fc6d3 synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb270ebb1 crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0xb27b8121 badblocks_init EXPORT_SYMBOL_GPL vmlinux 0xb27e971a serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0xb28f236a dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xb2a49b8c fwnode_property_present EXPORT_SYMBOL_GPL vmlinux 0xb2b74d6c dma_free_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait EXPORT_SYMBOL_GPL vmlinux 0xb2d80e50 devm_init_badblocks EXPORT_SYMBOL_GPL vmlinux 0xb2d919a1 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xb2f31f99 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xb2fc02f1 nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0xb302416d rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb31d0ed3 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xb34d1892 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xb3271bc0 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xb33ed3ed devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xb34dbe78 crypto_alloc_shash EXPORT_SYMBOL_GPL vmlinux 0xb357a852 iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xb35c54ac sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0xb3b6a54d scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xb38dea0e unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xb3a76822 gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xb3b95e44 tty_port_register_device EXPORT_SYMBOL_GPL vmlinux 0xb3ccc17c iommu_aux_get_pasid EXPORT_SYMBOL_GPL vmlinux 0xb3eb9d73 dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xb410adfd tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xb3f03ec2 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xb3fd6122 device_create EXPORT_SYMBOL_GPL vmlinux 0xb428de10 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb429c6d4 fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0xb4339edb iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0xb43bd6fe trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb4480fe8 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xb44cf0e1 nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled EXPORT_SYMBOL_GPL vmlinux 0xb46fbe0b klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb47d9e7b perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0xb480cd24 pci_epc_mem_exit EXPORT_SYMBOL_GPL vmlinux 0xb48c058d tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xb49f87ef ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xb49e40d1 posix_clock_register EXPORT_SYMBOL_GPL vmlinux 0xb4b1e5cf firmware_request_cache EXPORT_SYMBOL_GPL vmlinux 0xb4b7bfcf blk_queue_required_elevator_features EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4bfd218 __traceiter_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0xb4c6536a fsnotify_alloc_group EXPORT_SYMBOL_GPL vmlinux 0xb4cc2df0 fuse_simple_background EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length EXPORT_SYMBOL_GPL vmlinux 0xb4edb989 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xb51371ff cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb5122e72 devlink_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0xb517b237 md_new_event EXPORT_SYMBOL_GPL vmlinux 0xb51b5271 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0xb527c39e nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0xb53aa56b skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xb5577a94 kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0xb55a8321 dw_pcie_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xb588c21f pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0xb59dd5bf trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0xb5b48bf3 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0xb5b8d2d9 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xb5e52382 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0xb5b70e97 fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0xb607cc52 dma_buf_vunmap EXPORT_SYMBOL_GPL vmlinux 0xb6088146 __cookie_v4_init_sequence EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb6468563 gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0xb6633a59 cio_resume EXPORT_SYMBOL_GPL vmlinux 0xb675a7d7 dma_map_sgtable EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket EXPORT_SYMBOL_GPL vmlinux 0xb67d985d smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0xb691a878 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xb70e28ab register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xb6de68fe __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xb700e03b gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0xb730ef83 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0xb7762bee device_remove_properties +EXPORT_SYMBOL_GPL vmlinux 0xb741b6da lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb78f2879 devlink_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0xb7ab8988 md_bitmap_load EXPORT_SYMBOL_GPL vmlinux 0xb7b072d3 tpm_pm_resume EXPORT_SYMBOL_GPL vmlinux 0xb7b350ed klist_init +EXPORT_SYMBOL_GPL vmlinux 0xb7c2648d xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7c6df88 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0xb7c94e68 crypto_stats_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xb836768e crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xb7e69aae access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xb7ed956c bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xb7f16c2b security_path_rmdir EXPORT_SYMBOL_GPL vmlinux 0xb853003b iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xb8667128 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xb8643fd1 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xb870bdaa shmem_truncate_range EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state EXPORT_SYMBOL_GPL vmlinux 0xb896e725 sysfs_create_groups EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8a2b47a crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0xb8a2e77e kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xb8b03ed7 skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0xb8b6d346 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xb8ccab6e inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xb8cac0b2 vfs_write EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8f9d2f8 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xb902fa35 gfn_to_page EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable EXPORT_SYMBOL_GPL vmlinux 0xb922639a subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0xb922e122 css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0xb930ceb5 tpm_get_random EXPORT_SYMBOL_GPL vmlinux 0xb93a6a2e zpci_write_block -EXPORT_SYMBOL_GPL vmlinux 0xb9440326 ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9654334 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xb965bdb9 switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xb96806cf public_key_subtype EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb969ca2e trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb9b4ce30 __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first EXPORT_SYMBOL_GPL vmlinux 0xb9e68e83 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb9ea714e synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0xb9f03dc2 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0xba01454f pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0xba048ae5 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba141720 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xba1b02ca add_page_wait_queue EXPORT_SYMBOL_GPL vmlinux 0xba558602 pci_device_is_present EXPORT_SYMBOL_GPL vmlinux 0xba6b73f9 zpci_aif_sbv -EXPORT_SYMBOL_GPL vmlinux 0xba98ecb0 nl_table -EXPORT_SYMBOL_GPL vmlinux 0xbac6af9b tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0xbadec168 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xba6d2bbe inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0xbac54ad8 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbb07b45d __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks EXPORT_SYMBOL_GPL vmlinux 0xbb1769c1 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xbb2392d1 fib_nh_common_init EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb2c8f26 device_register EXPORT_SYMBOL_GPL vmlinux 0xbb32e49b css_general_characteristics -EXPORT_SYMBOL_GPL vmlinux 0xbb38ee09 cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0xbb48a860 tpm_calc_ordinal_duration EXPORT_SYMBOL_GPL vmlinux 0xbb5170c5 irq_get_percpu_devid_partition EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback @@ -12795,663 +12849,646 @@ EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xbb6be1e5 dm_bio_from_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn EXPORT_SYMBOL_GPL vmlinux 0xbb73e067 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xbb754960 devlink_port_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0xbb7b3f80 chp_ssd_get_mask EXPORT_SYMBOL_GPL vmlinux 0xbb82b09a iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0xbba56597 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xbba69257 vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0xbbabdf57 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xbbc25d2d crypto_unregister_kpp EXPORT_SYMBOL_GPL vmlinux 0xbbc40a71 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0xbbf15846 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xbbc6360a ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xbbc7f013 proc_create_net_data EXPORT_SYMBOL_GPL vmlinux 0xbc367872 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0xbc36a740 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xbc373e06 find_extend_vma EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time EXPORT_SYMBOL_GPL vmlinux 0xbc4c4bcc trace_seq_to_user EXPORT_SYMBOL_GPL vmlinux 0xbc558719 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xbc5b963f scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0xbc6395a3 x509_cert_parse EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0xbc783d10 blk_ksm_update_capabilities EXPORT_SYMBOL_GPL vmlinux 0xbc8d4da4 pci_ioremap_wc_bar EXPORT_SYMBOL_GPL vmlinux 0xbc91d7c0 gmap_shadow_pgt_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbc9fb919 switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcebc10b netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbce8cfe4 device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool EXPORT_SYMBOL_GPL vmlinux 0xbcfea9ba pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0xbd022929 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xbd172fac bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xbd1dc227 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xbd2c3da9 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xbd2f1078 __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xbd3e6421 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0xbd176e77 __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd465b6c ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xbd52efdd mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xbd455aa6 trace_define_field EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xbd739b67 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xbd74b5b0 devlink_params_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xbd652e90 receive_fd EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory EXPORT_SYMBOL_GPL vmlinux 0xbd8a8e5b rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0xbda21f0e sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xbdb2ec95 crypto_shash_tfm_digest EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xbdcdf031 setfl EXPORT_SYMBOL_GPL vmlinux 0xbdef6822 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0xbe1488d9 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xbe12c8f2 devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus EXPORT_SYMBOL_GPL vmlinux 0xbe6baf44 pci_epc_remove_epf EXPORT_SYMBOL_GPL vmlinux 0xbe75c5cf debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0xbe789b1b synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0xbe7a697b aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbe7ad712 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbed6844d crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xbeded196 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbeb2bcbe devlink_port_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbedda908 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0xbefcfefb devm_device_remove_group EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf36dcf7 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbf2efea5 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xbf3b0ebe crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xbf4c11fc __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xbf4dfd54 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0xbf580db5 fsstack_copy_inode_size EXPORT_SYMBOL_GPL vmlinux 0xbf5fa23f irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0xbf654baf css_sched_sch_todo -EXPORT_SYMBOL_GPL vmlinux 0xbfb3054c fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0xbfc780ad tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0xbf8415f4 l3mdev_table_lookup_unregister EXPORT_SYMBOL_GPL vmlinux 0xbfd13db9 vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0xbfe39cce ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xbfe4baa8 tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfe56fd9 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xbfef4c59 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xbff2bb22 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xbffa7ff4 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xc004765e xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xc00f5172 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc015953e ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0xc0397814 trace_seq_path EXPORT_SYMBOL_GPL vmlinux 0xc045988c rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xc0611806 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xc061af68 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0xc077938b platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0xc0861457 devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0xc097d261 kobject_init_and_add EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0b22ae3 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc0bff71d pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0xc0e6a9d8 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xc0e84e63 put_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xc0ee3686 fat_scan EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata EXPORT_SYMBOL_GPL vmlinux 0xc106fcf5 debugfs_attr_write EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc11e0cd2 mptcp_get_reset_option EXPORT_SYMBOL_GPL vmlinux 0xc11e74e4 anon_inode_getfile EXPORT_SYMBOL_GPL vmlinux 0xc132c453 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc13e58ed metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0xc15d2635 handle_simple_irq EXPORT_SYMBOL_GPL vmlinux 0xc15d6188 d_exchange -EXPORT_SYMBOL_GPL vmlinux 0xc15f375c devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xc1675293 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xc18db06b validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0xc1925bb2 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xc1a0c94d __traceiter_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0xc1b373e5 class_compat_create_link EXPORT_SYMBOL_GPL vmlinux 0xc1beb11d pci_d3cold_disable EXPORT_SYMBOL_GPL vmlinux 0xc1edf1ac freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc2001824 crypto_register_aeads EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc24c6aff ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xc252656c crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xc25cc5b9 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xc22e8fe0 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xc2306bca perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0xc26c9338 ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0xc272f885 irq_domain_add_legacy EXPORT_SYMBOL_GPL vmlinux 0xc27a0550 ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0xc27f31bf gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xc28a037d gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xc29a11f7 crypto_unregister_skciphers EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc2bc4120 do_truncate EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2ce42bd netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xc2cfa1c0 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xc2d55962 work_on_cpu_key EXPORT_SYMBOL_GPL vmlinux 0xc2d69ca6 gfn_to_pfn_memslot EXPORT_SYMBOL_GPL vmlinux 0xc2ff77f9 platform_find_device_by_driver EXPORT_SYMBOL_GPL vmlinux 0xc30833a1 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0xc3187488 kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xc33aa739 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xc334f7e4 crypto_unregister_instance EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object EXPORT_SYMBOL_GPL vmlinux 0xc3480da4 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0xc36ecfd8 bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk EXPORT_SYMBOL_GPL vmlinux 0xc3796e70 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc37c9ed2 mark_page_dirty_in_slot EXPORT_SYMBOL_GPL vmlinux 0xc37f3120 mddev_resume EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc3844f69 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xc391e7ba __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xc3a33045 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xc3ab9115 gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0xc3b845b9 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xc3ab5164 crypto_shash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3ea970a apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0xc401d3d9 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xc40c4321 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xc410c262 is_current_mnt_ns +EXPORT_SYMBOL_GPL vmlinux 0xc410e8c1 kvm_get_running_vcpu EXPORT_SYMBOL_GPL vmlinux 0xc419bbee blkcg_root_css EXPORT_SYMBOL_GPL vmlinux 0xc41a0c51 chsc_ssqd EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc4592ee2 inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc46601b1 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xc47c6d32 bpf_trace_run10 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 0xc4a31146 rdma_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc4c9c75a synth_event_cmd_init EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f63826 tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xc4fbd36e fscrypt_fname_siphash EXPORT_SYMBOL_GPL vmlinux 0xc4fd1b3a input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc50862bd ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xc51754cb int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0xc51a5886 alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0xc5230557 fwnode_get_named_gpiod EXPORT_SYMBOL_GPL vmlinux 0xc5256164 __xas_next EXPORT_SYMBOL_GPL vmlinux 0xc52bcdd8 s390_reset_acc EXPORT_SYMBOL_GPL vmlinux 0xc53ba24f atomic_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xc53ca176 tpm_get_timeouts EXPORT_SYMBOL_GPL vmlinux 0xc53cd7e4 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0xc569ad5b init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xc55ff678 __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0xc564a7b5 __traceiter_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc5905fd7 devlink_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0xc5a0ed40 debugfs_file_put EXPORT_SYMBOL_GPL vmlinux 0xc5b62bc4 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0xc5cb107b bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xc5d3d1b0 crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0xc5d610fe blkcg_policy_register EXPORT_SYMBOL_GPL vmlinux 0xc5d714b1 pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0xc6136202 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5e54e65 unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier EXPORT_SYMBOL_GPL vmlinux 0xc62ece5b iommu_set_pgtable_quirks EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc670209f devlink_port_params_register EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc67ce03b gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xc67d99ef xfrm_audit_state_replay_overflow EXPORT_SYMBOL_GPL vmlinux 0xc684a876 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xc684b51e xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xc69166a5 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xc6958e89 perf_get_aux EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a9ff76 sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0xc6ac1ce4 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0xc6cffd6f crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xc6ff5a7e dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0xc70c6b29 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xc6f76470 __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0xc70f7d52 devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0xc7143b33 sched_trace_rq_cpu_capacity EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0xc72e82fd skcipher_walk_done EXPORT_SYMBOL_GPL vmlinux 0xc731eb38 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xc74419fb fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xc7531254 skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0xc755c93f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0xc77464e8 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xc768bb4e perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0xc775fe7d dma_buf_map_attachment EXPORT_SYMBOL_GPL vmlinux 0xc77d8907 pci_dev_run_wake EXPORT_SYMBOL_GPL vmlinux 0xc78692d1 iommu_dev_enable_feature EXPORT_SYMBOL_GPL vmlinux 0xc78aa672 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xc790c9f5 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xc7a098bc devlink_port_params_unregister EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7ae1d2a skb_zerocopy_iter_dgram EXPORT_SYMBOL_GPL vmlinux 0xc7c5d0fa __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0xc7d8e50a crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xc7e5640e rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc7e5ea3f switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7ec5467 crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop EXPORT_SYMBOL_GPL vmlinux 0xc80acfca chsc_sadc -EXPORT_SYMBOL_GPL vmlinux 0xc80ae95b add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xc8184885 pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0xc824f9d8 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0xc8262011 __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc826721a tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xc8298e9c switchdev_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove EXPORT_SYMBOL_GPL vmlinux 0xc83361fc mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xc83f8626 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xc8630da9 sched_trace_rq_avg_dl +EXPORT_SYMBOL_GPL vmlinux 0xc83e5e7f ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0xc87ca69a io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc88965e5 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xc8a9470e do_tcp_sendpages EXPORT_SYMBOL_GPL vmlinux 0xc8c1cdcf bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xc8c1da3a tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable EXPORT_SYMBOL_GPL vmlinux 0xc8e08de2 watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0xc8e95995 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0xc8f59fa3 gfn_to_page_many_atomic EXPORT_SYMBOL_GPL vmlinux 0xc8ff4231 virtqueue_detach_unused_buf EXPORT_SYMBOL_GPL vmlinux 0xc9019ff4 fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0xc910d00d blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xc91441e1 crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc92d6737 zap_vma_ptes EXPORT_SYMBOL_GPL vmlinux 0xc946b657 sysfs_remove_file_from_group EXPORT_SYMBOL_GPL vmlinux 0xc9476d55 sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9637e76 xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc9997616 fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0xc9aa1215 irq_set_default_host EXPORT_SYMBOL_GPL vmlinux 0xc9b7bb94 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0xc9c595a2 rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0xc9c7d6de find_vpid EXPORT_SYMBOL_GPL vmlinux 0xc9cd77b9 get_cpu_device EXPORT_SYMBOL_GPL vmlinux 0xc9eaf039 pci_epc_mem_init EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu EXPORT_SYMBOL_GPL vmlinux 0xc9fa6023 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0xc9ff0107 sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0xca2496fd ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0xca29e99e trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xca307968 handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0xca4b7ab5 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xca52b071 __get_task_comm EXPORT_SYMBOL_GPL vmlinux 0xca541308 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xca586557 crypto_unregister_ahash EXPORT_SYMBOL_GPL vmlinux 0xca5bc585 pci_hp_add EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop EXPORT_SYMBOL_GPL vmlinux 0xca923415 attribute_container_classdev_to_container EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xcaa5178c bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xcaa1d3d0 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcaa3334f xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xcac54713 gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0xcad29180 pci_epc_get_next_free_bar EXPORT_SYMBOL_GPL vmlinux 0xcaefaae3 gmap_mprotect_notify -EXPORT_SYMBOL_GPL vmlinux 0xcb135034 bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0xcb20c9c7 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xcb41214c kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0xcb4f097f inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xcb149c17 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xcb53d0ee devlink_dpipe_table_resource_set EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj EXPORT_SYMBOL_GPL vmlinux 0xcb836993 iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0xcb8bf9e1 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xcbe2c465 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0xcbaac6e4 blk_rq_prep_clone EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbfa1d72 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xcc03fe68 tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0xcc29e05e irq_set_affinity EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap EXPORT_SYMBOL_GPL vmlinux 0xcc32e8f9 blk_queue_rq_timeout EXPORT_SYMBOL_GPL vmlinux 0xcc3f54e5 net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xcc4c7f90 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xcc4e481c __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xcc6b4af7 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xcc6f192d proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xcc719eba bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0xcc735d0a irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xcc7fd378 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xcc82d2ac wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0xcc8b15b6 device_property_match_string EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc EXPORT_SYMBOL_GPL vmlinux 0xcca11353 iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0xcca232d8 fwnode_get_name EXPORT_SYMBOL_GPL vmlinux 0xcca33c60 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xccb6fa2e bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0xcccec229 fork_usermode_driver EXPORT_SYMBOL_GPL vmlinux 0xccf04235 cmf_read EXPORT_SYMBOL_GPL vmlinux 0xccf29ed4 devm_serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xcd0050f7 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcd14479d crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd30f7a4 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xcd5607e5 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xcd57d870 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xcd5bacb9 __lock_page_killable EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add EXPORT_SYMBOL_GPL vmlinux 0xcd81a47a gmap_pmdp_idte_local EXPORT_SYMBOL_GPL vmlinux 0xcd86a9fe pci_user_write_config_word EXPORT_SYMBOL_GPL vmlinux 0xcd87aef8 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcd89c425 inet_hash_connect 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 0xcd9ded06 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0xcd9e252d device_create_file EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers EXPORT_SYMBOL_GPL vmlinux 0xcdbe89be synth_event_add_field_str EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdcb36c1 fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0xcdcde0ba iomap_is_partially_uptodate EXPORT_SYMBOL_GPL vmlinux 0xce14cb68 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xce263a09 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xce2df49f is_skb_forwardable EXPORT_SYMBOL_GPL vmlinux 0xce324f5b devm_pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0xce357759 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xce3870ad raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xce3ddc12 dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce9645a1 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xcea1378e scsi_flush_work EXPORT_SYMBOL_GPL vmlinux 0xcea41753 __hrtimer_get_remaining EXPORT_SYMBOL_GPL vmlinux 0xcec2ba47 dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0xcec30dad __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xced58534 kvm_flush_remote_tlbs EXPORT_SYMBOL_GPL vmlinux 0xced8666c sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xcee1ade4 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0xceea6f4b devlink_param_unpublish EXPORT_SYMBOL_GPL vmlinux 0xcf0afbfb copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xcf1b6e12 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xcf205469 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xcf20f4f6 br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0xcf259dfa irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xcf28656e devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global EXPORT_SYMBOL_GPL vmlinux 0xcf3f6455 sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xcf54077b __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xcf7d039d sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xcfa30418 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xcf48422b skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xcf99a8c2 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xcf9ff6b7 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xcfab463d gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0xcfaeadaf klist_add_head EXPORT_SYMBOL_GPL vmlinux 0xcfaf1fa4 pci_hp_remove_module_link EXPORT_SYMBOL_GPL vmlinux 0xcfb0d573 dm_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfd8fd9e devm_platform_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0xcfe19c89 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0xcfe3c0dc metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcfe52f8f gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0xcfefe883 badblocks_exit EXPORT_SYMBOL_GPL vmlinux 0xcff06887 gmap_shadow EXPORT_SYMBOL_GPL vmlinux 0xcffab0db sysfs_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0xd010e3d6 tpm_chip_register EXPORT_SYMBOL_GPL vmlinux 0xd0171606 gmap_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd0235e7e lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0xd031b589 asn1_ber_decoder EXPORT_SYMBOL_GPL vmlinux 0xd037929d vp_modern_remove EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd0402a9c crypto_register_algs EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event EXPORT_SYMBOL_GPL vmlinux 0xd04e401d tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd0769d91 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xd08088f0 crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0xd08a0e8c pci_epc_get_features EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c8af2a fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0xd0cb3ff4 look_up_OID EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0dc288c synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0xd0e13056 device_add EXPORT_SYMBOL_GPL vmlinux 0xd0f35fa6 dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xd10c5996 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0xd11d7f4b __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0xd12d1b22 dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0xd146bd11 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd130a1e0 crypto_create_tfm_node EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd1576d3d perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd15be290 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xd15f4c75 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xd184ebee ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd17bf708 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xd18f7dce skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xd194d6f8 cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1b3fb22 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xd1c8eb28 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd1a9d855 inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1e5bc88 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd1da72c6 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xd1e43975 crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get EXPORT_SYMBOL_GPL vmlinux 0xd2073226 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0xd20cae30 gpiochip_line_is_persistent 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 0xd22056be irq_chip_eoi_parent EXPORT_SYMBOL_GPL vmlinux 0xd23eae24 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0xd2402a1f switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0xd24b6145 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xd24d4cdb blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0xd2517076 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xd2525afb __root_device_register EXPORT_SYMBOL_GPL vmlinux 0xd2570cef ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0xd25aed6e ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xd25df734 __ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write EXPORT_SYMBOL_GPL vmlinux 0xd2664a2e debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xd2704f6e l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xd26b6b2f gfn_to_pfn EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd2923953 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xd297a630 __traceiter_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0xd2a1242d pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd2b106fc sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xd2a4dc09 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xd2a99183 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd2ad8cf7 msg_zerocopy_alloc EXPORT_SYMBOL_GPL vmlinux 0xd2b7b379 cio_disable_subchannel EXPORT_SYMBOL_GPL vmlinux 0xd2b7e85d pci_epc_map_addr EXPORT_SYMBOL_GPL vmlinux 0xd2c95579 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xd2ccaf89 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xd2e41d91 __ndisc_fill_addr_option EXPORT_SYMBOL_GPL vmlinux 0xd2e4bd44 umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0xd2e6fe60 sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0xd2e79416 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xd2e8e0f0 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xd2eede47 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xd2f0389b scsi_internal_device_unblock_nowait EXPORT_SYMBOL_GPL vmlinux 0xd30276c9 simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0xd3034428 __wake_up_locked_key EXPORT_SYMBOL_GPL vmlinux 0xd30988e6 user_describe EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts EXPORT_SYMBOL_GPL vmlinux 0xd3243ae8 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xd3537d58 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xd341607b add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0xd35a60e1 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0xd35c25a4 acomp_request_free EXPORT_SYMBOL_GPL vmlinux 0xd35f2f7e vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xd37624b0 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd37393cc __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0xd37d4cb1 __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0xd3927029 sched_trace_rq_avg_rt EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3b1cbb1 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0xd3b33cbb dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xd3ce78c6 devlink_sb_register EXPORT_SYMBOL_GPL vmlinux 0xd3d15a9d dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xd3eeb5f4 page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage EXPORT_SYMBOL_GPL vmlinux 0xd3f1f1ae pci_user_read_config_word EXPORT_SYMBOL_GPL vmlinux 0xd4033a1a s390_pci_dma_ops EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd42b857f locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xd428ef4c gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd4417e6e devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xd443eede console_drivers EXPORT_SYMBOL_GPL vmlinux 0xd44f0e79 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd468b2fe platform_get_resource EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0xd49dbbd5 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0xd4b1a2f7 get_task_mm EXPORT_SYMBOL_GPL vmlinux 0xd4b402a3 disable_cmf +EXPORT_SYMBOL_GPL vmlinux 0xd4b60008 udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4bc252b devlink_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0xd4bf483c inet_peer_base_init EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xd5157e76 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xd52f940c pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xd555c03b crypto_stats_kpp_set_secret EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd560a250 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xd565aaaf blk_trace_setup EXPORT_SYMBOL_GPL vmlinux 0xd565d46e sysfs_unbreak_active_protection EXPORT_SYMBOL_GPL vmlinux 0xd577ee61 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0xd59a5448 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xd5a7e423 __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xd5be4b47 proc_dou8vec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xd5c7d8ee crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0xd5f5d0ef pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd6017ca2 dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0xd60a44c7 blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0xd63d7900 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xd616a286 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd62c09f5 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xd63bb570 xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd67cecf5 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xd67f2516 ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0xd6b82b9f kthread_queue_work EXPORT_SYMBOL_GPL vmlinux 0xd6d1ad3b devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xd6e4724d fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xd6d9aed4 crypto_stats_decompress EXPORT_SYMBOL_GPL vmlinux 0xd7132cc4 tty_set_termios EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit EXPORT_SYMBOL_GPL vmlinux 0xd72adcfd gmap_pmdp_invalidate -EXPORT_SYMBOL_GPL vmlinux 0xd748dcd2 metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0xd748dee3 sysfs_create_link_nowarn EXPORT_SYMBOL_GPL vmlinux 0xd74ce644 iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0xd757620a trace_event_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0xd75f6bed param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xd764ca8b ptp_parse_header EXPORT_SYMBOL_GPL vmlinux 0xd7680e56 fsverity_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl EXPORT_SYMBOL_GPL vmlinux 0xd787a8f5 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0xd79b6748 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xd78994ab crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xd7b0c9cd crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0xd7c6e8d4 gmap_fault EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd7da9f31 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xd80070ea crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xd800c9b2 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xd7d9f8b6 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xd7df0753 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xd7e5abd2 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xd81512ab sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0xd81f7667 list_lru_count_one EXPORT_SYMBOL_GPL vmlinux 0xd84265ce hvc_poll EXPORT_SYMBOL_GPL vmlinux 0xd84bd950 tty_port_install EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock EXPORT_SYMBOL_GPL vmlinux 0xd8737b8b subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xd8745de5 crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0xd889467f transport_setup_device EXPORT_SYMBOL_GPL vmlinux 0xd88ed057 sysfs_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0xd8954ba7 irq_chip_get_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xd898a52e kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0xd8ada37c __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0xd8f0607d __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xd8b2095f raw_abort EXPORT_SYMBOL_GPL vmlinux 0xd8f0d2bc debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd9005809 device_del EXPORT_SYMBOL_GPL vmlinux 0xd90f79c2 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xd913c5a2 l3mdev_update_flow EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd92cc348 udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data -EXPORT_SYMBOL_GPL vmlinux 0xd94906e8 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0xd950b38b unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xd942296a device_rename +EXPORT_SYMBOL_GPL vmlinux 0xd94b6adf event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0xd9639761 blkcg_print_blkgs EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd973b88f of_css EXPORT_SYMBOL_GPL vmlinux 0xd97a203e mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xd9836e88 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xd987607d xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xd9a036f1 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xd9a40d2a tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xd9a57c31 sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0xd9b642e5 badblocks_show EXPORT_SYMBOL_GPL vmlinux 0xd9b8cfda alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0xd9d81fc9 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xd9dba847 fwnode_graph_get_remote_node EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek EXPORT_SYMBOL_GPL vmlinux 0xd9f440c6 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xda03b32e shash_register_instance EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister EXPORT_SYMBOL_GPL vmlinux 0xda097638 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xda2c722d scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xda0b9651 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0xda107a18 devlink_free EXPORT_SYMBOL_GPL vmlinux 0xda31039f alloc_dax_region EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda3c5846 __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0xda3f3e8a isc_register -EXPORT_SYMBOL_GPL vmlinux 0xda40f13b fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0xda63b9f5 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xda689294 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0xda89160d devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xda84a480 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xda8591ac ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0xdaa695bc pci_enable_ats EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdae11fca nf_queue EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option EXPORT_SYMBOL_GPL vmlinux 0xdafb264b _proc_mkdir EXPORT_SYMBOL_GPL vmlinux 0xdb0a89ef devm_kfree EXPORT_SYMBOL_GPL vmlinux 0xdb0d86dd split_page EXPORT_SYMBOL_GPL vmlinux 0xdb16fece tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0xdb25aab3 crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0xdb4c732e devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xdb2f3d38 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xdb5ba27f ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xdb657b08 debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0xdb83f6fd check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xdb705fcb __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb9d3205 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0xdbb1ec29 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xdbb65ed4 ipv6_proxy_select_ident 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 0xdbeb8aa5 bd_unlink_disk_holder EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdbf4a6af trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfa99eb crypto_stats_init EXPORT_SYMBOL_GPL vmlinux 0xdbff8bac __srcu_read_lock EXPORT_SYMBOL_GPL vmlinux 0xdc1795cc get_device_system_crosststamp EXPORT_SYMBOL_GPL vmlinux 0xdc2464d1 register_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0xdc39b487 vp_modern_map_vq_notify EXPORT_SYMBOL_GPL vmlinux 0xdc4208d7 cdrom_read_tocentry EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xdc5197ff __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xdc58f14d devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdc5d83af crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0xdc69193b synth_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0xdc6970be devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xdc7284cb cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdc94e63c crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xdc9c69a7 ping_hash EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca82efd fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xdcb1227a ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdcc635c4 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xdcd08a8a devlink_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd088e3c ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0xdd1d3be7 kvm_clear_guest EXPORT_SYMBOL_GPL vmlinux 0xdd1d465d iomap_seek_data EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd58d1d8 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xdd3dd01f perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xdd41b313 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xdd581a3f sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xdd616742 crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args EXPORT_SYMBOL_GPL vmlinux 0xdd63af2e pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xdd66d502 bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xdd79a45a __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xdd7180b3 platform_irq_count EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd8404cd udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0xdd8507fb iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0xdd90ec03 ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd4e9f6 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xddd6d14d perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xddd45c76 skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xddfa0003 vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0xddfa53be debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xde016512 nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0xde052e95 fanout_mutex EXPORT_SYMBOL_GPL vmlinux 0xde23a9f9 irq_domain_update_bus_token EXPORT_SYMBOL_GPL vmlinux 0xde2bd9dd pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0xde434dc8 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xde4a4c41 __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xde6143c2 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xde5e716e ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0xde68b2ff tty_kclose EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 EXPORT_SYMBOL_GPL vmlinux 0xde841657 ccw_device_get_cssid +EXPORT_SYMBOL_GPL vmlinux 0xdec41899 sched_trace_cfs_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0xdee07053 enable_kprobe EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf2569f7 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf313c47 sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdf37011d sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0xdf82d28d gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xdf39483f sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xdf43a512 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xdf7b5951 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xdf859a75 crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0xdf8dd21a blk_queue_max_zone_append_sectors EXPORT_SYMBOL_GPL vmlinux 0xdfa03f30 attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0xdfbbf758 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0xdfcc5381 device_property_present EXPORT_SYMBOL_GPL vmlinux 0xdfd68985 __blk_req_zone_write_unlock EXPORT_SYMBOL_GPL vmlinux 0xdfd9e718 relay_file_operations EXPORT_SYMBOL_GPL vmlinux 0xdff5da83 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0xe00cd30c devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xdffc3633 security_path_chown +EXPORT_SYMBOL_GPL vmlinux 0xdfff167a vfs_setxattr EXPORT_SYMBOL_GPL vmlinux 0xe0101256 serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xe022c1cb xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0xe02f047c xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0xe050b266 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xe05a4d9f crypto_stats_ahash_final EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu EXPORT_SYMBOL_GPL vmlinux 0xe083a92f irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0xe08f067d l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0xe0cd326e devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xe094c2fd trace_event_buffer_reserve EXPORT_SYMBOL_GPL vmlinux 0xe0d199d7 dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xe0f9fff4 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xe1206612 fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0xe127f858 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xe11ab126 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xe1253ee7 crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0xe1284fe6 irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xe14a0235 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xe165b218 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xe16e31b7 blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe17c8e00 netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0xe1909ebe devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xe194a694 synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0xe1a61caf cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0xe1aadb57 exportfs_encode_inode_fh EXPORT_SYMBOL_GPL vmlinux 0xe1b685e8 __percpu_down_read EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1e80d84 gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0xe1e9d86c platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xe21bbc09 addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0xe21ef622 fuse_free_conn EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe233869f vfs_removexattr EXPORT_SYMBOL_GPL vmlinux 0xe255ace0 irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0xe290c1b6 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xe2584149 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xe2643de5 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xe2770b59 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xe28259f9 tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0xe2b026e3 fuse_conn_put EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier EXPORT_SYMBOL_GPL vmlinux 0xe2b77605 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xe2f588aa kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xe2f98161 nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0xe307205a bprintf -EXPORT_SYMBOL_GPL vmlinux 0xe3156bc0 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xe313af7c nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0xe31d93a3 __cookie_v6_init_sequence EXPORT_SYMBOL_GPL vmlinux 0xe330852d msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0xe34f821f set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xe36aa1e7 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xe3339dba trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xe348151b gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xe34cf909 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xe35e948d devlink_param_unpublish +EXPORT_SYMBOL_GPL vmlinux 0xe36c4a41 file_is_kvm EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete EXPORT_SYMBOL_GPL vmlinux 0xe3c64432 query_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0xe3c64fb2 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xe3d0ccb4 platform_device_del EXPORT_SYMBOL_GPL vmlinux 0xe3df8a01 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xe3e0f10e nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xe3e89574 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xe3ef540d device_set_node EXPORT_SYMBOL_GPL vmlinux 0xe3f608a0 irq_create_mapping_affinity EXPORT_SYMBOL_GPL vmlinux 0xe407ce24 scsi_dh_attached_handler_name EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe42c8984 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xe43d995f ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0xe45b2f34 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xe46b9ae3 crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0xe4724811 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xe47e1c69 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xe47e86bf devlink_port_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0xe487a3d3 serdev_device_wait_until_sent EXPORT_SYMBOL_GPL vmlinux 0xe4927b1b pci_dev_lock EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a0388c l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0xe4a5accc devres_remove_group EXPORT_SYMBOL_GPL vmlinux 0xe4a95266 blocking_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xe4b6f1b1 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xe4b7c56b sched_trace_rq_cpu EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xe4ddebcb crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xe4c5dbf4 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xe4c65be4 ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0xe4e0214d fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0xe50cdf53 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xe4e617cb addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xe4eec6d8 do_splice_to EXPORT_SYMBOL_GPL vmlinux 0xe51802ba xas_store -EXPORT_SYMBOL_GPL vmlinux 0xe531e109 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0xe553c51b trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0xe5872f29 __page_file_index EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe59dbded nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0xe5a87518 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xe5aa5c15 kvm_unmap_gfn EXPORT_SYMBOL_GPL vmlinux 0xe5afc923 css_driver_register EXPORT_SYMBOL_GPL vmlinux 0xe5e0370f dax_copy_to_iter EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe60b6576 sched_trace_rq_nr_running +EXPORT_SYMBOL_GPL vmlinux 0xe61353ef crypto_inst_setname EXPORT_SYMBOL_GPL vmlinux 0xe628786f iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0xe6402ac0 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xe63f7d98 dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0xe642c797 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xe6485ad0 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xe665f9e1 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xe66f2aeb devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe693f9ea devlink_unregister EXPORT_SYMBOL_GPL vmlinux 0xe69824cb exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xe699477a sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0xe6aaae3e tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe6d9364c device_unregister EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq EXPORT_SYMBOL_GPL vmlinux 0xe6e5a0d5 pci_bus_resource_n EXPORT_SYMBOL_GPL vmlinux 0xe6e71bd2 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xe723d5b2 ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0xe72a120b pci_vpd_alloc EXPORT_SYMBOL_GPL vmlinux 0xe72e844b __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xe733ca6c crypto_stats_akcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0xe7352843 bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe76130fb aead_exit_geniv EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit EXPORT_SYMBOL_GPL vmlinux 0xe78fef5d blkdev_zone_mgmt @@ -13461,370 +13498,339 @@ EXPORT_SYMBOL_GPL vmlinux 0xe7b718df chsc_determine_channel_path_desc EXPORT_SYMBOL_GPL vmlinux 0xe7bbba40 fat_time_fat2unix EXPORT_SYMBOL_GPL vmlinux 0xe7d65c77 kobject_create_and_add EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe806ae5a sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0xe80b4792 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xe80b6051 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xe8337b10 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe7fbb867 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe8007092 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xe86c6d6d kvm_vcpu_write_guest EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue EXPORT_SYMBOL_GPL vmlinux 0xe89fc09a fat_attach EXPORT_SYMBOL_GPL vmlinux 0xe8a1ff2f list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xe8be8dd1 kvm_gfn_to_hva_cache_init EXPORT_SYMBOL_GPL vmlinux 0xe8bf1a40 watchdog_notify_pretimeout EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8e6cd8c xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe8fce22a bio_start_io_acct_time EXPORT_SYMBOL_GPL vmlinux 0xe900084e sysfs_create_group EXPORT_SYMBOL_GPL vmlinux 0xe904ef66 serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0xe909853f blk_revalidate_disk_zones EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe9315575 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe92a8abd device_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0xe936fcfc devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xe937f57d sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe96a4d25 kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xe97a57fa devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xe9403af7 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xe9545a18 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xe961636f bpf_trace_run3 EXPORT_SYMBOL_GPL vmlinux 0xe97e0719 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xe98bad4e crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xe9c4a4d7 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xe9cbea3f devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe99cea49 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xe9cb6061 gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0xe9d097fe devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xe9e36448 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0xe9e38a7e dm_hold EXPORT_SYMBOL_GPL vmlinux 0xe9f145f9 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0xe9fe64e9 fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit EXPORT_SYMBOL_GPL vmlinux 0xea066330 rhashtable_walk_enter EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea167335 filemap_read -EXPORT_SYMBOL_GPL vmlinux 0xea1d222c __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0xea26dad5 dma_buf_export EXPORT_SYMBOL_GPL vmlinux 0xea375449 bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0xea38d7cf inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free EXPORT_SYMBOL_GPL vmlinux 0xea440e04 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xea4cd71f __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xea9ac050 inet_ehash_locks_alloc EXPORT_SYMBOL_GPL vmlinux 0xeabcf3bf fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xeac06e8e xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0xeac74387 watchdog_set_last_hw_keepalive 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 0xeb03fde2 xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xeb2637fb __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0xeb2c2aad security_file_permission +EXPORT_SYMBOL_GPL vmlinux 0xeae1d822 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0xeae6778e synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0xeafb1f50 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0xeb072848 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xeb209ff2 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0xeb317ee6 __traceiter_unmap EXPORT_SYMBOL_GPL vmlinux 0xeb4772d0 relay_switch_subbuf EXPORT_SYMBOL_GPL vmlinux 0xeb7cfd78 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xeb82c2e8 __kernel_write EXPORT_SYMBOL_GPL vmlinux 0xeb907eeb __irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0xeb994b92 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0xeba48520 sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0xeba59814 net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0xebc63bc0 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xebf56885 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xeba84909 alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0xebff98db fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0xec12f884 skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0xec13c83c si_swapinfo -EXPORT_SYMBOL_GPL vmlinux 0xec5db091 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0xec74f104 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xec746ae1 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xec960e35 bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0xeca732f5 devm_gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0xeca9dc04 md_rdev_clear EXPORT_SYMBOL_GPL vmlinux 0xecb07a3e sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xecb19955 kvm_unmap_gfn EXPORT_SYMBOL_GPL vmlinux 0xecc6ead6 irq_chip_set_parent_state EXPORT_SYMBOL_GPL vmlinux 0xecdf9b9f blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xece88e3f sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0xecfd7be2 devres_get EXPORT_SYMBOL_GPL vmlinux 0xed24741d pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0xed265513 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed3ddeb9 __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xed440517 pci_restore_msi_state EXPORT_SYMBOL_GPL vmlinux 0xed48a163 __zpci_store_block -EXPORT_SYMBOL_GPL vmlinux 0xed4bd441 blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0xed4d1568 tcp_done EXPORT_SYMBOL_GPL vmlinux 0xed5437f9 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed9abd6f xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0xedaf6d88 gmap_make_secure -EXPORT_SYMBOL_GPL vmlinux 0xedbc4dc3 ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0xedc9af86 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xedcfba5c device_link_del EXPORT_SYMBOL_GPL vmlinux 0xede9371d dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xedf20973 crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0xedf55abb zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xee086449 ethnl_cable_test_finished EXPORT_SYMBOL_GPL vmlinux 0xee0e5384 smpboot_register_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0xee12b891 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xee1b7bd7 sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xee2759d0 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xee388679 ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee3f4de2 __mnt_is_readonly EXPORT_SYMBOL_GPL vmlinux 0xee433037 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0xee44b7c4 perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0xee480689 vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xee5cf66f bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xee92d58b mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0xeea834c0 kprobe_event_cmd_init EXPORT_SYMBOL_GPL vmlinux 0xeeb2cd64 bus_find_device EXPORT_SYMBOL_GPL vmlinux 0xeec3d427 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0xeec6f7da unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xeec7b4b9 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run EXPORT_SYMBOL_GPL vmlinux 0xeeeeff59 debugfs_remove EXPORT_SYMBOL_GPL vmlinux 0xeef3e8ac gmap_translate EXPORT_SYMBOL_GPL vmlinux 0xeefac407 pci_hp_del EXPORT_SYMBOL_GPL vmlinux 0xef13106c nr_threads EXPORT_SYMBOL_GPL vmlinux 0xef18cddc fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0xef1bdae6 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xef36b553 trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0xef3c1467 pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef51fde8 __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef74d23c gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0xef7adb9e fuse_init_fs_context_submount EXPORT_SYMBOL_GPL vmlinux 0xef90d2f4 irq_domain_simple_ops EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier EXPORT_SYMBOL_GPL vmlinux 0xefa66a37 fat_truncate_time EXPORT_SYMBOL_GPL vmlinux 0xefaf7b3c virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xefb461e4 platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0xefbba5c7 misc_cg_uncharge EXPORT_SYMBOL_GPL vmlinux 0xeff900a8 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xf0237992 is_swiotlb_active EXPORT_SYMBOL_GPL vmlinux 0xf032b3fe gmap_enable -EXPORT_SYMBOL_GPL vmlinux 0xf03dfb3a blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xf0381652 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xf04a0ee3 kvm_vcpu_destroy EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address -EXPORT_SYMBOL_GPL vmlinux 0xf086a275 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xf07c3024 udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0xf086e81a pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xf08e575d sock_map_close EXPORT_SYMBOL_GPL vmlinux 0xf08ee4c3 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf09ad97b crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0xf0af6833 gpiod_direction_input EXPORT_SYMBOL_GPL vmlinux 0xf0f2d8f1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0xf1009cb5 netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0xf101bed2 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xf10e8076 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0xf126b288 proc_douintvec_minmax EXPORT_SYMBOL_GPL vmlinux 0xf138bedf pci_probe_reset_slot EXPORT_SYMBOL_GPL vmlinux 0xf14aeec3 blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xf14b3fc6 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xf16226a4 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off EXPORT_SYMBOL_GPL vmlinux 0xf194b5a4 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xf1e09296 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xf1a8d406 lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0xf1e5a0b0 blk_mq_sched_try_insert_merge EXPORT_SYMBOL_GPL vmlinux 0xf1ed22dc __fsnotify_parent EXPORT_SYMBOL_GPL vmlinux 0xf1fcb8d5 __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0xf20fa6c1 inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0xf214ac86 sysfs_create_files EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0xf22bf78a simple_attr_open EXPORT_SYMBOL_GPL vmlinux 0xf25bab4e bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xf284248f gpiod_to_irq EXPORT_SYMBOL_GPL vmlinux 0xf2893c99 pci_find_next_ht_capability EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf29dde39 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xf2a9ec94 mmput +EXPORT_SYMBOL_GPL vmlinux 0xf29de2fa sched_trace_rq_avg_rt EXPORT_SYMBOL_GPL vmlinux 0xf2ae0c63 driver_create_file EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2d67870 msg_zerocopy_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf2c13019 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0xf2d87a62 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xf2d9153d __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0xf2dd25e1 fscrypt_show_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0xf2f1f1c1 vp_modern_queue_address EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for EXPORT_SYMBOL_GPL vmlinux 0xf3132c86 blk_mq_free_request EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf31dcd6c kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xf31e4873 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xf32dffb2 crypto_stats_kpp_compute_shared_secret EXPORT_SYMBOL_GPL vmlinux 0xf33e8356 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xf349cbf1 inet6_destroy_sock EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf36361ed devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit -EXPORT_SYMBOL_GPL vmlinux 0xf37b683e crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0xf37ffe05 dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf383a8f9 security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0xf391cca7 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf39bf9ed xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xf3a27792 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0xf3a77153 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xf3a0667f __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0xf3a96a21 pci_iov_virtfn_devfn EXPORT_SYMBOL_GPL vmlinux 0xf3b90484 transport_destroy_device EXPORT_SYMBOL_GPL vmlinux 0xf3dfc03c sched_trace_rd_span +EXPORT_SYMBOL_GPL vmlinux 0xf405b5a4 blk_mq_rdma_map_queues EXPORT_SYMBOL_GPL vmlinux 0xf440bc79 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xf46296bb pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xf464d6dc xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xf463a555 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf490fa9b gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xf4a16747 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xf4aa6455 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xf4a70308 vfs_read EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b1efdb ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0xf4d8d2a4 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xf4e00394 path_noexec EXPORT_SYMBOL_GPL vmlinux 0xf4e2bb92 umd_unload_blob EXPORT_SYMBOL_GPL vmlinux 0xf4f11633 pci_debug_msg_id -EXPORT_SYMBOL_GPL vmlinux 0xf4ffa7f8 __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xf5035ce2 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0xf504a03f devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xf53ab2af bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0xf5401d20 blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0xf5464376 sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf55a4f25 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0xf560ec04 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0xf56f26ed unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0xf5714a00 gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0xf580d115 __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0xf589a2df gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xf58bb308 perf_aux_output_end EXPORT_SYMBOL_GPL vmlinux 0xf59593a7 devm_hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5c2301b ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0xf5d4a1c4 dma_buf_unmap_attachment EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5fdbcde platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xf600f012 sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0xf61d01f7 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xf6254493 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0xf6320619 appldata_unregister_ops EXPORT_SYMBOL_GPL vmlinux 0xf645784f platform_msi_domain_free_irqs EXPORT_SYMBOL_GPL vmlinux 0xf657be8f __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xf65e7f64 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xf66965af crypto_register_templates EXPORT_SYMBOL_GPL vmlinux 0xf69a7069 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xf6afd331 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xf6bd9947 skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf7076a34 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xf7098fd9 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xf6ca47e8 nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0xf70f2300 fsnotify EXPORT_SYMBOL_GPL vmlinux 0xf7141195 gmap_discard +EXPORT_SYMBOL_GPL vmlinux 0xf7238fdd devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size 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 0xf7591a86 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xf75ea41a device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf782509d wb_writeout_inc EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync -EXPORT_SYMBOL_GPL vmlinux 0xf797da7f device_create EXPORT_SYMBOL_GPL vmlinux 0xf79da10e __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0xf7a6528c gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xf7aac115 housekeeping_affine EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7c29a9f crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xf7c4cd45 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xf7e548f7 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf7d23694 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xf7d23792 nd_tbl EXPORT_SYMBOL_GPL vmlinux 0xf7e73b0f bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0xf7ee5a51 gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0xf81881f2 tty_kopen_exclusive EXPORT_SYMBOL_GPL vmlinux 0xf81994a2 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0xf81cf710 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xf826f68e xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0xf82ebb8e find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf843fbd0 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xf825d908 crypto_alloc_ahash EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0xf855ccce __zpci_store -EXPORT_SYMBOL_GPL vmlinux 0xf858cb5e devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0xf87e7dc1 kvm_get_dirty_log EXPORT_SYMBOL_GPL vmlinux 0xf8811efc vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xf89a6c64 xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0xf89ce8a6 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xf8a4dca6 ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0xf8c3dc85 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xf8fe15a3 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xf901f85b seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xf9210aff blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0xf92220ce kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0xf935c49a tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xf9386ca6 devlink_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9573555 crypto_shoot_alg EXPORT_SYMBOL_GPL vmlinux 0xf96ecc78 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xf99d4eea gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xf97df397 crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies EXPORT_SYMBOL_GPL vmlinux 0xf9aa2d54 cio_cancel_halt_clear EXPORT_SYMBOL_GPL vmlinux 0xf9afec8a iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xf9bf7749 device_store_int EXPORT_SYMBOL_GPL vmlinux 0xf9cacb4b blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xf9d10504 lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0xf9d4b9d4 page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0xf9dc3971 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xf9e59535 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0xf9ea7dcf sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xf9e01ec6 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0xfa0a916d tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xfa1c55f5 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xfa0ba16e netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0xfa164954 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xfa169fe3 page_cache_ra_unbounded EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa284362 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0xfa4e06ce xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xfa4e14f8 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xfa286eb9 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xfa3706b0 perf_aux_output_end EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name EXPORT_SYMBOL_GPL vmlinux 0xfa694ad0 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xfa70ce2a __traceiter_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0xfa84c0b5 kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0xfab64983 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xfa6e715d ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xfa8aa637 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfab20190 device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfaf56fcd __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xfb0df3d9 devlink_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0xfb21b1b5 dma_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync EXPORT_SYMBOL_GPL vmlinux 0xfb4aaff1 fuse_dev_alloc EXPORT_SYMBOL_GPL vmlinux 0xfb4e503e iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xfb5cb000 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xfb6e6ced mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xfbac0350 rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xfbb89897 device_bind_driver EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbcd9cb1 dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xfbd69b1f switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xfbe2b98a devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfbdc4cf6 vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0xfbe70bd2 dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0xfbf0eb83 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xfbf24af9 crypto_enqueue_request_head EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc019195 add_to_page_cache_lru EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram 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 0xfc1f58d3 md_run -EXPORT_SYMBOL_GPL vmlinux 0xfc20f929 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xfc47a390 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0xfc88d7fc crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xfc9305e4 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xfc9bd641 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfc553987 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xfcb6e1d2 blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes EXPORT_SYMBOL_GPL vmlinux 0xfce179c9 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xfce5b8a6 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xfceb10a9 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0xfced70b9 tty_ldisc_ref_wait EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd0c54ad fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0xfd153e0c md_start +EXPORT_SYMBOL_GPL vmlinux 0xfd16ee8d fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xfd287335 devlink_reload_enable EXPORT_SYMBOL_GPL vmlinux 0xfd2a481e lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0xfd46a524 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xfd47d170 devlink_param_publish EXPORT_SYMBOL_GPL vmlinux 0xfd4ec49b fat_flush_inodes EXPORT_SYMBOL_GPL vmlinux 0xfd4fc328 set_selection_kernel EXPORT_SYMBOL_GPL vmlinux 0xfd4ff383 fat_alloc_new_dir EXPORT_SYMBOL_GPL vmlinux 0xfd5d44ab debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xfd5d9f59 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xfd7fb745 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xfda20e2f __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xfda21fd8 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xfd6f877a __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xfd96927e device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xfda49f1b validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdebb9ea __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xfdef7a4f crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xfdf687a2 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xfdec65d7 devlink_trap_policers_register EXPORT_SYMBOL_GPL vmlinux 0xfdfde1c9 xas_load EXPORT_SYMBOL_GPL vmlinux 0xfdfefb5e __cookie_v4_check EXPORT_SYMBOL_GPL vmlinux 0xfe01e7e2 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xfe0582c6 strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0xfe05bc82 dummy_con EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release -EXPORT_SYMBOL_GPL vmlinux 0xfe1fe93d wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0xfe22f46e skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0xfe250cbc transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xfe44bf02 skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns EXPORT_SYMBOL_GPL vmlinux 0xfe5f2fc7 md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0xfe62ff2e irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0xfe67aa09 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xfe6c2917 devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xfe8ae0ce __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfea5368a crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0xfeb6fb0e fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xfe9d5650 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0xfeaf24d2 event_triggers_call EXPORT_SYMBOL_GPL vmlinux 0xfed5139c pcie_aspm_capable -EXPORT_SYMBOL_GPL vmlinux 0xfed75330 sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfef73e83 gpiod_get_array_value EXPORT_SYMBOL_GPL vmlinux 0xfefa2adb input_ff_effect_from_user EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt EXPORT_SYMBOL_GPL vmlinux 0xff13d8c6 irq_set_affinity_hint EXPORT_SYMBOL_GPL vmlinux 0xff403774 region_intersects EXPORT_SYMBOL_GPL vmlinux 0xff4048f4 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xff44333b devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0xff648b0c crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xff71abc8 __pneigh_lookup 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 0xff920dc1 proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xffa90f95 fsverity_cleanup_inode EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffbab2b2 evm_verifyxattr EXPORT_SYMBOL_GPL vmlinux 0xffc9315b handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xffe93438 crypto_register_instance FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x0aeb19da nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x4127aef0 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x85be1328 nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xbe4196e7 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc221b864 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x11f4ec15 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x308b9ce3 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x309e109e nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7908247c nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x86096fe3 nvme_ctrl_from_file drivers/nvme/host/nvme-core diff --git a/debian.master/abi/version b/debian.master/abi/version index bd2c0a157062e..5caa8468cb902 100644 --- a/debian.master/abi/version +++ b/debian.master/abi/version @@ -1 +1 @@ -5.15.0-90.100 +5.15.0-100.110 diff --git a/debian.master/changelog b/debian.master/changelog index 3f0ac8c931728..7e87b618c45ba 100644 --- a/debian.master/changelog +++ b/debian.master/changelog @@ -1,3 +1,2306 @@ +linux (5.15.0-101.111) jammy; urgency=medium + + * jammy/linux: 5.15.0-101.111 -proposed tracker (LP: #2056026) + + * Packaging resync (LP: #1786013) + - [Packaging] update annotations scripts + - debian/dkms-versions -- update from kernel-versions (main/s2024.02.05) + + * CVE-2024-24855 + - scsi: lpfc: Fix a possible data race in lpfc_unregister_fcf_rescan() + + * CVE-2024-1086 + - netfilter: nf_tables: reject QUEUE/DROP verdict parameters + + * CVE-2024-1085 + - netfilter: nf_tables: check if catch-all set element is active in next + generation + + * CVE-2023-32247 + - ksmbd: destroy expired sessions + + * CVE-2023-23000 + - phy: tegra: xusb: Fix return value of tegra_xusb_find_port_node function + + -- Manuel Diewald Tue, 05 Mar 2024 19:23:25 +0100 + +linux (5.15.0-100.110) jammy; urgency=medium + + * jammy/linux: 5.15.0-100.110 -proposed tracker (LP: #2052616) + + * i915 regression introduced with 5.5 kernel (LP: #2044131) + - drm/i915: Skip some timing checks on BXT/GLK DSI transcoders + + * Audio balancing setting doesn't work with the cirrus codec (LP: #2051050) + - ALSA: hda/cs8409: Suppress vmaster control for Dolphin models + + * partproke is broken on empty loopback device (LP: #2049689) + - block: Move checking GENHD_FL_NO_PART to bdev_add_partition() + + * CVE-2023-0340 + - vhost: use kzalloc() instead of kmalloc() followed by memset() + + * CVE-2023-51780 + - atm: Fix Use-After-Free in do_vcc_ioctl + + * CVE-2023-6915 + - ida: Fix crash in ida_free when the bitmap is empty + + * CVE-2024-0646 + - net: tls, update curr on splice as well + + * CVE-2024-0565 + - smb: client: fix OOB in receive_encrypted_standard() + + * CVE-2023-51781 + - appletalk: Fix Use-After-Free in atalk_ioctl + + * Jammy update: v5.15.143 upstream stable release (LP: #2050858) + - vdpa/mlx5: preserve CVQ vringh index + - hrtimers: Push pending hrtimers away from outgoing CPU earlier + - i2c: designware: Fix corrupted memory seen in the ISR + - netfilter: ipset: fix race condition between swap/destroy and kernel side + add/del/test + - tg3: Move the [rt]x_dropped counters to tg3_napi + - tg3: Increment tx_dropped in tg3_tso_bug() + - kconfig: fix memory leak from range properties + - drm/amdgpu: correct chunk_ptr to a pointer to chunk. + - platform/x86: asus-wmi: Adjust tablet/lidflip handling to use enum + - platform/x86: asus-wmi: Add support for ROG X13 tablet mode + - platform/x86: asus-wmi: Simplify tablet-mode-switch probing + - platform/x86: asus-wmi: Simplify tablet-mode-switch handling + - platform/x86: asus-wmi: Move i8042 filter install to shared asus-wmi code + - of: dynamic: Fix of_reconfig_get_state_change() return value documentation + - platform/x86: wmi: Allow duplicate GUIDs for drivers that use struct + wmi_driver + - platform/x86: wmi: Skip blocks with zero instances + - ipv6: fix potential NULL deref in fib6_add() + - octeontx2-pf: Add missing mutex lock in otx2_get_pauseparam + - octeontx2-af: Check return value of nix_get_nixlf before using nixlf + - hv_netvsc: rndis_filter needs to select NLS + - r8152: Rename RTL8152_UNPLUG to RTL8152_INACCESSIBLE + - r8152: Add RTL8152_INACCESSIBLE checks to more loops + - r8152: Add RTL8152_INACCESSIBLE to r8156b_wait_loading_flash() + - r8152: Add RTL8152_INACCESSIBLE to r8153_pre_firmware_1() + - r8152: Add RTL8152_INACCESSIBLE to r8153_aldps_en() + - mlxbf-bootctl: correctly identify secure boot with development keys + - platform/mellanox: Add null pointer checks for devm_kasprintf() + - platform/mellanox: Check devm_hwmon_device_register_with_groups() return + value + - arcnet: restoring support for multiple Sohard Arcnet cards + - net: stmmac: fix FPE events losing + - octeontx2-af: fix a use-after-free in rvu_npa_register_reporters + - i40e: Fix unexpected MFS warning message + - net: bnxt: fix a potential use-after-free in bnxt_init_tc + - ionic: fix snprintf format length warning + - ionic: Fix dim work handling in split interrupt mode + - ipv4: ip_gre: Avoid skb_pull() failure in ipgre_xmit() + - net: hns: fix fake link up on xge port + - octeontx2-af: Update Tx link register range + - netfilter: nf_tables: validate family when identifying table via handle + - netfilter: xt_owner: Fix for unsafe access of sk->sk_socket + - tcp: do not accept ACK of bytes we never sent + - bpf: sockmap, updating the sg structure should also update curr + - psample: Require 'CAP_NET_ADMIN' when joining "packets" group + - net: add missing kdoc for struct genl_multicast_group::flags + - drop_monitor: Require 'CAP_SYS_ADMIN' when joining "events" group + - tee: optee: Fix supplicant based device enumeration + - RDMA/hns: Fix unnecessary err return when using invalid congest control + algorithm + - RDMA/irdma: Do not modify to SQD on error + - RDMA/irdma: Add wait for suspend on SQD + - arm64: dts: rockchip: Expand reg size of vdec node for RK3399 + - RDMA/rtrs-srv: Do not unconditionally enable irq + - RDMA/rtrs-clt: Start hb after path_up + - RDMA/rtrs-srv: Check return values while processing info request + - RDMA/rtrs-srv: Free srv_mr iu only when always_invalidate is true + - RDMA/rtrs-srv: Destroy path files after making sure no IOs in-flight + - RDMA/rtrs-clt: Fix the max_send_wr setting + - RDMA/rtrs-clt: Remove the warnings for req in_use check + - RDMA/bnxt_re: Correct module description string + - hwmon: (acpi_power_meter) Fix 4.29 MW bug + - hwmon: (nzxt-kraken2) Fix error handling path in kraken2_probe() + - ASoC: wm_adsp: fix memleak in wm_adsp_buffer_populate + - RDMA/core: Fix umem iterator when PAGE_SIZE is greater then HCA pgsz + - RDMA/irdma: Avoid free the non-cqp_request scratch + - arm64: dts: imx8mq: drop usb3-resume-missing-cas from usb + - arm64: dts: imx8mp: imx8mq: Add parkmode-disable-ss-quirk on DWC3 + - ARM: dts: imx6ul-pico: Describe the Ethernet PHY clock + - tracing: Fix a warning when allocating buffered events fails + - scsi: be2iscsi: Fix a memleak in beiscsi_init_wrb_handle() + - ARM: imx: Check return value of devm_kasprintf in imx_mmdc_perf_init + - ARM: dts: imx7: Declare timers compatible with fsl,imx6dl-gpt + - ARM: dts: imx28-xea: Pass the 'model' property + - riscv: fix misaligned access handling of C.SWSP and C.SDSP + - md: introduce md_ro_state + - md: don't leave 'MD_RECOVERY_FROZEN' in error path of md_set_readonly() + - kprobes: consistent rcu api usage for kretprobe holder + - nvme-pci: Add sleep quirk for Kingston drives + - io_uring: fix mutex_unlock with unreferenced ctx + - ALSA: usb-audio: Add Pioneer DJM-450 mixer controls + - ALSA: pcm: fix out-of-bounds in snd_pcm_state_names + - nilfs2: fix missing error check for sb_set_blocksize call + - nilfs2: prevent WARNING in nilfs_sufile_set_segment_usage() + - checkstack: fix printed address + - tracing: Always update snapshot buffer size + - tracing: Disable snapshot buffer when stopping instance tracers + - tracing: Fix incomplete locking when disabling buffered events + - tracing: Fix a possible race when disabling buffered events + - packet: Move reference count in packet_sock to atomic_long_t + - regmap: fix bogus error on regcache_sync success + - platform/surface: aggregator: fix recv_buf() return value + - arm64: dts: mediatek: mt7622: fix memory node warning check + - arm64: dts: mediatek: mt8183-kukui-jacuzzi: fix dsi unnecessary cells + properties + - arm64: dts: mediatek: mt8173-evb: Fix regulator-fixed node names + - arm64: dts: mediatek: mt8183: Fix unit address for scp reserved memory + - binder: fix memory leaks of spam and pending work + - kallsyms: Make kallsyms_on_each_symbol generally available + - coresight: etm4x: Make etm4_remove_dev() return void + - coresight: etm4x: Remove bogous __exit annotation for some functions + - misc: mei: client.c: return negative error code in mei_cl_write + - misc: mei: client.c: fix problem of return '-EOVERFLOW' in mei_cl_write + - ring-buffer: Force absolute timestamp on discard of event + - tracing: Set actual size after ring buffer resize + - tracing: Stop current tracer when resizing buffer + - r8169: fix rtl8125b PAUSE frames blasting when suspended + - mm: fix oops when filemap_map_pmd() without prealloc_pte + - io_uring/af_unix: disable sending io_uring over sockets + - platform/x86: asus-wmi: Fix kbd_dock_devid tablet-switch reporting + - docs/process/howto: Replace C89 with C11 + - tools headers UAPI: Sync linux/perf_event.h with the kernel sources + - arm64: dts: mediatek: align thermal zone node names with dtschema + - arm64: dts: mediatek: mt8183: Move thermal-zones to the root node + - arm64: dts: mediatek: add missing space before { + - arm64: dts: mt8183: kukui: Fix underscores in node names + - gpiolib: sysfs: Fix error handling on failed export + - drm/amd/amdgpu: Fix warnings in amdgpu/amdgpu_display.c + - drm/amdgpu: correct the amdgpu runtime dereference usage count + - usb: gadget: f_hid: fix report descriptor allocation + - parport: Add support for Brainboxes IX/UC/PX parallel cards + - usb: typec: class: fix typec_altmode_put_partner to put plugs + - ARM: PL011: Fix DMA support + - serial: sc16is7xx: address RX timeout interrupt errata + - serial: 8250: 8250_omap: Clear UART_HAS_RHR_IT_DIS bit + - serial: 8250: 8250_omap: Do not start RX DMA on THRI interrupt + - serial: 8250_omap: Add earlycon support for the AM654 UART controller + - x86/CPU/AMD: Check vendor in the AMD microcode callback + - KVM: s390/mm: Properly reset no-dat + - KVM: SVM: Update EFER software model on CR0 trap for SEV-ES + - MIPS: Loongson64: Reserve vgabios memory on boot + - MIPS: Loongson64: Enable DMA noncoherent support + - cifs: Fix non-availability of dedup breaking generic/304 + - smb: client: fix potential NULL deref in parse_dfs_referrals() + - devcoredump : Serialize devcd_del work + - devcoredump: Send uevent once devcd is ready + - Linux 5.15.143 + + * Intel E810-XXV - NETDEV WATCHDOG: (ice): transmit queue timed out + (LP: #2036239) + - ice: Add feature bitmap, helpers and a check for DSCP + - ice: Add driver support for firmware changes for LAG + - ice: alter feature support check for SRIOV and LAG + + * Don't WARN_ON_ONCE() for a broken discovery table (LP: #2048404) + - perf/x86/uncore: Don't WARN_ON_ONCE() for a broken discovery table + + * Reject connection when malformed L2CAP signal packet is received + (LP: #2047634) + - Bluetooth: L2CAP: Send reject on command corrupted request + + * Jammy update: v5.15.142 upstream stable release (LP: #2050849) + - pinctrl: avoid reload of p state in list iteration + - firewire: core: fix possible memory leak in create_units() + - mmc: cqhci: Increase recovery halt timeout + - mmc: cqhci: Warn of halt or task clear failure + - mmc: cqhci: Fix task clearing in CQE error recovery + - mmc: block: Retry commands in CQE error recovery + - mmc: block: Do not lose cache flush during CQE error recovery + - mmc: block: Be sure to wait while busy in CQE error recovery + - ALSA: hda: Disable power-save on KONTRON SinglePC + - ALSA: hda/realtek: Headset Mic VREF to 100% + - ALSA: hda/realtek: Add supported ALC257 for ChromeOS + - dm-verity: align struct dm_verity_fec_io properly + - dm verity: don't perform FEC for failed readahead IO + - bcache: revert replacing IS_ERR_OR_NULL with IS_ERR + - iommu/vt-d: Add MTL to quirk list to skip TE disabling + - powerpc: Don't clobber f0/vs0 during fp|altivec register save + - parisc: Drop the HP-UX ENOSYM and EREMOTERELEASE error codes + - btrfs: ref-verify: fix memory leaks in btrfs_ref_tree_mod() + - btrfs: fix off-by-one when checking chunk map includes logical address + - btrfs: send: ensure send_fd is writable + - btrfs: make error messages more clear when getting a chunk map + - Input: xpad - add HyperX Clutch Gladiate Support + - vlan: introduce vlan_dev_free_egress_priority + - vlan: move dev_put into vlan_dev_uninit + - rcu: Avoid tracing a few functions executed in stop machine + - hv_netvsc: fix race of netvsc and VF register_netdevice + - USB: core: Change configuration warnings to notices + - usb: config: fix iteration issue in 'usb_get_bos_descriptor()' + - dpaa2-eth: increase the needed headroom to account for alignment + - uapi: propagate __struct_group() attributes to the container union + - selftests/net: ipsec: fix constant out of range + - octeontx2-af: Fix possible buffer overflow + - net: stmmac: xgmac: Disable FPE MMC interrupts + - octeontx2-pf: Fix adding mbox work queue entry when num_vfs > 64 + - Revert "workqueue: remove unused cancel_work()" + - r8169: prevent potential deadlock in rtl8169_close + - ravb: Fix races between ravb_tx_timeout_work() and net related ops + - net: ravb: Check return value of reset_control_deassert() + - net: ravb: Use pm_runtime_resume_and_get() + - net: ravb: Start TX queues after HW initialization succeeded + - net: ravb: Stop DMA in case of failures on ravb_open() + - perf intel-pt: Fix async branch flags + - selftests/resctrl: Add missing SPDX license to Makefile + - selftests/resctrl: Move _GNU_SOURCE define into Makefile + - smb3: fix touch -h of symlink + - ASoC: Intel: Move soc_intel_is_foo() helpers to a generic header + - ASoC: SOF: sof-pci-dev: use community key on all Up boards + - ASoC: SOF: sof-pci-dev: add parameter to override topology filename + - ASoC: SOF: sof-pci-dev: don't use the community key on APL Chromebooks + - ASoC: SOF: sof-pci-dev: Fix community key quirk detection + - fbdev: stifb: Make the STI next font pointer a 32-bit signed offset + - fs: add ctime accessors infrastructure + - smb3: fix caching of ctime on setxattr + - cpufreq: imx6q: don't warn for disabling a non-existing frequency + - cpufreq: imx6q: Don't disable 792 Mhz OPP unnecessarily + - iommu/vt-d: Omit devTLB invalidation requests when TES=0 + - iommu/vt-d: Make context clearing consistent with context mapping + - mmc: core: add helpers mmc_regulator_enable/disable_vqmmc + - mmc: sdhci-sprd: Fix vqmmc not shutting down after the card was pulled + - r8169: disable ASPM in case of tx timeout + - r8169: fix deadlock on RTL8125 in jumbo mtu mode + - iomap: update ki_pos a little later in iomap_dio_complete + - Linux 5.15.142 + + * Jammy update: v5.15.141 upstream stable release (LP: #2050044) + - afs: Fix afs_server_list to be cleaned up with RCU + - afs: Make error on cell lookup failure consistent with OpenAFS + - drm/panel: boe-tv101wum-nl6: Fine tune the panel power sequence + - drm/panel: auo,b101uan08.3: Fine tune the panel power sequence + - drm/panel: simple: Fix Innolux G101ICE-L01 bus flags + - drm/panel: simple: Fix Innolux G101ICE-L01 timings + - wireguard: use DEV_STATS_INC() + - octeontx2-pf: Fix memory leak during interface down + - ata: pata_isapnp: Add missing error check for devm_ioport_map() + - drm/rockchip: vop: Fix color for RGB888/BGR888 format on VOP full + - HID: core: store the unique system identifier in hid_device + - HID: fix HID device resource race between HID core and debugging support + - ipv4: Correct/silence an endian warning in __ip_do_redirect + - net: usb: ax88179_178a: fix failed operations during ax88179_reset + - net/smc: avoid data corruption caused by decline + - arm/xen: fix xen_vcpu_info allocation alignment + - octeontx2-pf: Fix ntuple rule creation to direct packet to VF with higher Rx + queue than its PF + - amd-xgbe: handle corner-case during sfp hotplug + - amd-xgbe: handle the corner-case during tx completion + - amd-xgbe: propagate the correct speed and duplex status + - net: axienet: Fix check for partial TX checksum + - afs: Return ENOENT if no cell DNS record can be found + - afs: Fix file locking on R/O volumes to operate in local mode + - nvmet: nul-terminate the NQNs passed in the connect command + - USB: dwc3: qcom: fix resource leaks on probe deferral + - USB: dwc3: qcom: fix ACPI platform device leak + - lockdep: Fix block chain corruption + - MIPS: KVM: Fix a build warning about variable set but not used + - media: camss: Replace hard coded value with parameter + - media: camss: sm8250: Virtual channels for CSID + - media: qcom: camss: Fix set CSI2_RX_CFG1_VC_MODE when VC is greater than 3 + - media: qcom: camss: Fix csid-gen2 for test pattern generator + - ext4: add a new helper to check if es must be kept + - ext4: factor out __es_alloc_extent() and __es_free_extent() + - ext4: use pre-allocated es in __es_insert_extent() + - ext4: use pre-allocated es in __es_remove_extent() + - ext4: using nofail preallocation in ext4_es_remove_extent() + - ext4: using nofail preallocation in ext4_es_insert_delayed_block() + - ext4: using nofail preallocation in ext4_es_insert_extent() + - ext4: fix slab-use-after-free in ext4_es_insert_extent() + - ext4: make sure allocate pending entry not fail + - proc: sysctl: prevent aliased sysctls from getting passed to init + - ACPI: resource: Skip IRQ override on ASUS ExpertBook B1402CVA + - swiotlb-xen: provide the "max_mapping_size" method + - bcache: replace a mistaken IS_ERR() by IS_ERR_OR_NULL() in + btree_gc_coalesce() + - md: fix bi_status reporting in md_end_clone_io + - bcache: fixup multi-threaded bch_sectors_dirty_init() wake-up race + - io_uring/fs: consider link->flags when getting path for LINKAT + - s390/dasd: protect device queue against concurrent access + - USB: serial: option: add Luat Air72*U series products + - hv_netvsc: Fix race of register_netdevice_notifier and VF register + - hv_netvsc: Mark VF as slave before exposing it to user-mode + - dm-delay: fix a race between delay_presuspend and delay_bio + - bcache: check return value from btree_node_alloc_replacement() + - bcache: prevent potential division by zero error + - bcache: fixup init dirty data errors + - bcache: fixup lock c->root error + - usb: cdnsp: Fix deadlock issue during using NCM gadget + - USB: serial: option: add Fibocom L7xx modules + - USB: serial: option: fix FM101R-GL defines + - USB: serial: option: don't claim interface 4 for ZTE MF290 + - usb: typec: tcpm: Skip hard reset when in error recovery + - USB: dwc2: write HCINT with INTMASK applied + - usb: dwc3: Fix default mode initialization + - usb: dwc3: set the dma max_seg_size + - USB: dwc3: qcom: fix software node leak on probe errors + - USB: dwc3: qcom: fix wakeup after probe deferral + - io_uring: fix off-by one bvec index + - Linux 5.15.141 + + * Jammy update: v5.15.140 upstream stable release (LP: #2050038) + - locking/ww_mutex/test: Fix potential workqueue corruption + - perf/core: Bail out early if the request AUX area is out of bound + - clocksource/drivers/timer-imx-gpt: Fix potential memory leak + - clocksource/drivers/timer-atmel-tcb: Fix initialization on SAM9 hardware + - workqueue: Provide one lock class key per work_on_cpu() callsite + - x86/mm: Drop the 4 MB restriction on minimal NUMA node memory size + - wifi: mac80211_hwsim: fix clang-specific fortify warning + - wifi: mac80211: don't return unset power in ieee80211_get_tx_power() + - atl1c: Work around the DMA RX overflow issue + - bpf: Detect IP == ksym.end as part of BPF program + - wifi: ath9k: fix clang-specific fortify warnings + - wifi: ath10k: fix clang-specific fortify warning + - net: annotate data-races around sk->sk_tx_queue_mapping + - net: annotate data-races around sk->sk_dst_pending_confirm + - wifi: ath10k: Don't touch the CE interrupt registers after power up + - Bluetooth: btusb: Add date->evt_skb is NULL check + - Bluetooth: Fix double free in hci_conn_cleanup + - platform/x86: thinkpad_acpi: Add battery quirk for Thinkpad X120e + - drm/komeda: drop all currently held locks if deadlock happens + - drm/amdkfd: Fix a race condition of vram buffer unref in svm code + - drm/amd/display: use full update for clip size increase of large plane + source + - string.h: add array-wrappers for (v)memdup_user() + - kernel: kexec: copy user-array safely + - kernel: watch_queue: copy user-array safely + - drm: vmwgfx_surface.c: copy user-array safely + - drm/msm/dp: skip validity check for DP CTS EDID checksum + - drm/amd: Fix UBSAN array-index-out-of-bounds for SMU7 + - drm/amd: Fix UBSAN array-index-out-of-bounds for Polaris and Tonga + - drm/amdgpu: Fix potential null pointer derefernce + - drm/panel: fix a possible null pointer dereference + - drm/panel/panel-tpo-tpg110: fix a possible null pointer dereference + - drm/amdgpu/vkms: fix a possible null pointer dereference + - drm/panel: st7703: Pick different reset sequence + - drm/amdkfd: Fix shift out-of-bounds issue + - drm/amdgpu: Fix a null pointer access when the smc_rreg pointer is NULL + - arm64: dts: ls208xa: use a pseudo-bus to constrain usb dma size + - selftests/efivarfs: create-read: fix a resource leak + - ASoC: soc-card: Add storage for PCI SSID + - crypto: pcrypt - Fix hungtask for PADATA_RESET + - RDMA/hfi1: Use FIELD_GET() to extract Link Width + - scsi: hisi_sas: Set debugfs_dir pointer to NULL after removing debugfs + - scsi: ibmvfc: Remove BUG_ON in the case of an empty event pool + - fs/jfs: Add check for negative db_l2nbperpage + - fs/jfs: Add validity check for db_maxag and db_agpref + - jfs: fix array-index-out-of-bounds in dbFindLeaf + - jfs: fix array-index-out-of-bounds in diAlloc + - HID: lenovo: Detect quirk-free fw on cptkbd and stop applying workaround + - ARM: 9320/1: fix stack depot IRQ stack filter + - ALSA: hda: Fix possible null-ptr-deref when assigning a stream + - PCI: tegra194: Use FIELD_GET()/FIELD_PREP() with Link Width fields + - atm: iphase: Do PCI error checks on own line + - scsi: libfc: Fix potential NULL pointer dereference in fc_lport_ptp_setup() + - PCI: Use FIELD_GET() to extract Link Width + - PCI: Extract ATS disabling to a helper function + - PCI: Disable ATS for specific Intel IPU E2000 devices + - misc: pci_endpoint_test: Add Device ID for R-Car S4-8 PCIe controller + - PCI: Use FIELD_GET() in Sapphire RX 5600 XT Pulse quirk + - HID: Add quirk for Dell Pro Wireless Keyboard and Mouse KM5221W + - exfat: support handle zero-size directory + - tty: vcc: Add check for kstrdup() in vcc_probe() + - usb: gadget: f_ncm: Always set current gadget in ncm_bind() + - 9p/trans_fd: Annotate data-racy writes to file::f_flags + - 9p: v9fs_listxattr: fix %s null argument warning + - i3c: mipi-i3c-hci: Fix out of bounds access in hci_dma_irq_handler + - i2c: sun6i-p2wi: Prevent potential division by zero + - virtio-blk: fix implicit overflow on virtio_max_dma_size + - i3c: master: mipi-i3c-hci: Fix a kernel panic for accessing DAT_data. + - media: gspca: cpia1: shift-out-of-bounds in set_flicker + - media: vivid: avoid integer overflow + - gfs2: ignore negated quota changes + - gfs2: fix an oops in gfs2_permission + - media: cobalt: Use FIELD_GET() to extract Link Width + - media: ccs: Fix driver quirk struct documentation + - media: imon: fix access to invalid resource for the second interface + - drm/amd/display: Avoid NULL dereference of timing generator + - kgdb: Flush console before entering kgdb on panic + - i2c: dev: copy userspace array safely + - ASoC: ti: omap-mcbsp: Fix runtime PM underflow warnings + - drm/qxl: prevent memory leak + - drm/amdgpu: fix software pci_unplug on some chips + - pwm: Fix double shift bug + - wifi: iwlwifi: Use FW rate for non-data frames + - tracing: Reuse logic from perf's get_recursion_context() + - tracing/perf: Add interrupt_context_level() helper + - sched/core: Optimize in_task() and in_interrupt() a bit + - media: cadence: csi2rx: Unregister v4l2 async notifier + - media: cec: meson: always include meson sub-directory in Makefile + - SUNRPC: ECONNRESET might require a rebind + - SUNRPC: Add an IS_ERR() check back to where it was + - NFSv4.1: fix SP4_MACH_CRED protection for pnfs IO + - SUNRPC: Fix RPC client cleaned up the freed pipefs dentries + - gfs2: Silence "suspicious RCU usage in gfs2_permission" warning + - mptcp: diag: switch to context structure + - mptcp: listen diag dump support + - net: inet: Remove count from inet_listen_hashbucket + - net: inet: Open code inet_hash2 and inet_unhash2 + - net: inet: Retire port only listening_hash + - net: set SOCK_RCU_FREE before inserting socket into hashtable + - ipvlan: add ipvlan_route_v6_outbound() helper + - tty: Fix uninit-value access in ppp_sync_receive() + - net: hns3: fix add VLAN fail issue + - net: hns3: refine the definition for struct hclge_pf_to_vf_msg + - net: hns3: add byte order conversion for PF to VF mailbox message + - net: hns3: add barrier in vf mailbox reply process + - net: hns3: fix incorrect capability bit display for copper port + - net: hns3: fix variable may not initialized problem in hns3_init_mac_addr() + - net: hns3: fix VF reset fail issue + - net: hns3: fix VF wrong speed and duplex issue + - tipc: Fix kernel-infoleak due to uninitialized TLV value + - ppp: limit MRU to 64K + - xen/events: fix delayed eoi list handling + - ptp: annotate data-race around q->head and q->tail + - bonding: stop the device in bond_setup_by_slave() + - net: ethernet: cortina: Fix max RX frame define + - net: ethernet: cortina: Handle large frames + - net: ethernet: cortina: Fix MTU max setting + - af_unix: fix use-after-free in unix_stream_read_actor() + - netfilter: nf_conntrack_bridge: initialize err to 0 + - netfilter: nf_tables: use the correct get/put helpers + - netfilter: nf_tables: add and use BE register load-store helpers + - netfilter: nf_tables: fix pointer math issue in nft_byteorder_eval() + - net: stmmac: fix rx budget limit check + - net/mlx5e: Remove incorrect addition of action fwd flag + - net/mlx5e: Move mod hdr allocation to a single place + - net/mlx5e: Refactor mod header management API + - net/mlx5e: Fix pedit endianness + - net/mlx5e: Reduce the size of icosq_str + - net/mlx5e: Check return value of snprintf writing to fw_version buffer for + representors + - macvlan: Don't propagate promisc change to lower dev in passthru + - tools/power/turbostat: Fix a knl bug + - tools/power/turbostat: Enable the C-state Pre-wake printing + - cifs: spnego: add ';' in HOST_KEY_LEN + - cifs: fix check of rc in function generate_smb3signingkey + - xfs: refactor buffer cancellation table allocation + - xfs: don't leak xfs_buf_cancel structures when recovery fails + - xfs: convert buf_cancel_table allocation to kmalloc_array + - xfs: use invalidate_lock to check the state of mmap_lock + - xfs: prevent a UAF when log IO errors race with unmount + - xfs: flush inode gc workqueue before clearing agi bucket + - xfs: fix use-after-free in xattr node block inactivation + - xfs: don't leak memory when attr fork loading fails + - xfs: fix intermittent hang during quotacheck + - xfs: add missing cmap->br_state = XFS_EXT_NORM update + - xfs: Fix false ENOSPC when performing direct write on a delalloc extent in + cow fork + - xfs: fix inode reservation space for removing transaction + - xfs: avoid a UAF when log intent item recovery fails + - xfs: fix exception caused by unexpected illegal bestcount in leaf dir + - xfs: fix memory leak in xfs_errortag_init + - xfs: Fix unreferenced object reported by kmemleak in xfs_sysfs_init() + - i915/perf: Fix NULL deref bugs with drm_dbg() calls + - media: venus: hfi: add checks to perform sanity on queue pointers + - powerpc/perf: Fix disabling BHRB and instruction sampling + - randstruct: Fix gcc-plugin performance mode to stay in group + - bpf: Fix check_stack_write_fixed_off() to correctly spill imm + - bpf: Fix precision tracking for BPF_ALU | BPF_TO_BE | BPF_END + - scsi: mpt3sas: Fix loop logic + - scsi: megaraid_sas: Increase register read retry rount from 3 to 30 for + selected registers + - scsi: qla2xxx: Fix system crash due to bad pointer access + - crypto: x86/sha - load modules based on CPU features + - x86/cpu/hygon: Fix the CPU topology evaluation for real + - KVM: x86: hyper-v: Don't auto-enable stimer on write from user-space + - KVM: x86: Ignore MSR_AMD64_TW_CFG access + - audit: don't take task_lock() in audit_exe_compare() code path + - audit: don't WARN_ON_ONCE(!current->mm) in audit_exe_compare() + - tty/sysrq: replace smp_processor_id() with get_cpu() + - hvc/xen: fix console unplug + - hvc/xen: fix error path in xen_hvc_init() to always register frontend driver + - hvc/xen: fix event channel handling for secondary consoles + - PCI/sysfs: Protect driver's D3cold preference from user space + - watchdog: move softlockup_panic back to early_param + - ACPI: resource: Do IRQ override on TongFang GMxXGxx + - arm64: Restrict CPU_BIG_ENDIAN to GNU as or LLVM IAS 15.x or newer + - parisc/pdc: Add width field to struct pdc_model + - clk: socfpga: Fix undefined behavior bug in struct stratix10_clock_data + - clk: qcom: ipq8074: drop the CLK_SET_RATE_PARENT flag from PLL clocks + - clk: qcom: ipq6018: drop the CLK_SET_RATE_PARENT flag from PLL clocks + - mmc: vub300: fix an error code + - mmc: sdhci_am654: fix start loop index for TAP value parsing + - PCI/ASPM: Fix L1 substate handling in aspm_attr_store_common() + - PCI: exynos: Don't discard .remove() callback + - wifi: wilc1000: use vmm_table as array in wilc struct + - svcrdma: Drop connection after an RDMA Read error + - rcu/tree: Defer setting of jiffies during stall reset + - arm64: dts: qcom: ipq6018: Fix hwlock index for SMEM + - PM: hibernate: Use __get_safe_page() rather than touching the list + - PM: hibernate: Clean up sync_read handling in snapshot_write_next() + - rcu: kmemleak: Ignore kmemleak false positives when RCU-freeing objects + - btrfs: don't arbitrarily slow down delalloc if we're committing + - firmware: qcom_scm: use 64-bit calling convention only when client is 64-bit + - ACPI: FPDT: properly handle invalid FPDT subtables + - ima: annotate iint mutex to avoid lockdep false positive warnings + - ima: detect changes to the backing overlay file + - wifi: ath11k: fix temperature event locking + - wifi: ath11k: fix dfs radar event locking + - wifi: ath11k: fix htt pktlog locking + - mmc: meson-gx: Remove setting of CMD_CFG_ERROR + - genirq/generic_chip: Make irq_remove_generic_chip() irqdomain aware + - KEYS: trusted: Rollback init_trusted() consistently + - PCI: keystone: Don't discard .remove() callback + - PCI: keystone: Don't discard .probe() callback + - netfilter: nf_tables: split async and sync catchall in two functions + - selftests/resctrl: Remove duplicate feature check from CMT test + - selftests/resctrl: Reduce failures due to outliers in MBA/MBM tests + - ASoC: codecs: wsa-macro: fix uninitialized stack variables with name prefix + - jbd2: fix potential data lost in recovering journal raced with synchronizing + fs bdev + - quota: explicitly forbid quota files from being encrypted + - kernel/reboot: emergency_restart: Set correct system_state + - i2c: core: Run atomic i2c xfer when !preemptible + - tracing: Have the user copy of synthetic event address use correct context + - mcb: fix error handling for different scenarios when parsing + - dmaengine: stm32-mdma: correct desc prep when channel running + - s390/cmma: fix detection of DAT pages + - mm/cma: use nth_page() in place of direct struct page manipulation + - mm/memory_hotplug: use pfn math in place of direct struct page manipulation + - mtd: cfi_cmdset_0001: Byte swap OTP info + - i3c: master: cdns: Fix reading status register + - i3c: master: svc: fix race condition in ibi work thread + - i3c: master: svc: fix wrong data return when IBI happen during start frame + - i3c: master: svc: fix ibi may not return mandatory data byte + - i3c: master: svc: fix check wrong status register in irq handler + - i3c: master: svc: fix SDA keep low when polling IBIWON timeout happen + - parisc: Prevent booting 64-bit kernels on PA1.x machines + - parisc/pgtable: Do not drop upper 5 address bits of physical address + - xhci: Enable RPM on controllers that support low-power states + - ALSA: info: Fix potential deadlock at disconnection + - ALSA: hda/realtek - Add Dell ALC295 to pin fall back table + - ALSA: hda/realtek - Enable internal speaker of ASUS K6500ZC + - serial: meson: Use platform_get_irq() to get the interrupt + - tty: serial: meson: fix hard LOCKUP on crtscts mode + - regmap: Ensure range selector registers are updated after cache sync + - cpufreq: stats: Fix buffer overflow detection in trans_stats() + - Bluetooth: btusb: Add Realtek RTL8852BE support ID 0x0cb8:0xc559 + - bluetooth: Add device 0bda:887b to device tables + - bluetooth: Add device 13d3:3571 to device tables + - Bluetooth: btusb: Add RTW8852BE device 13d3:3570 to device tables + - Bluetooth: btusb: Add 0bda:b85b for Fn-Link RTL8852BE + - ksmbd: fix slab out of bounds write in smb_inherit_dacl() + - arm64: dts: qcom: ipq6018: switch TCSR mutex to MMIO + - arm64: dts: qcom: ipq6018: Fix tcsr_mutex register size + - powerpc/pseries/ddw: simplify enable_ddw() + - Revert ncsi: Propagate carrier gain/loss events to the NCSI controller + - Revert "i2c: pxa: move to generic GPIO recovery" + - lsm: fix default return value for vm_enough_memory + - lsm: fix default return value for inode_getsecctx + - sbsa_gwdt: Calculate timeout with 64-bit math + - i2c: designware: Disable TX_EMPTY irq while waiting for block length byte + - s390/ap: fix AP bus crash on early config change callback invocation + - net: ethtool: Fix documentation of ethtool_sprintf() + - net: dsa: lan9303: consequently nested-lock physical MDIO + - net: phylink: initialize carrier state at creation + - i2c: i801: fix potential race in i801_block_transaction_byte_by_byte + - f2fs: avoid format-overflow warning + - media: lirc: drop trailing space from scancode transmit + - media: sharp: fix sharp encoding + - media: venus: hfi_parser: Add check to keep the number of codecs within + range + - media: venus: hfi: fix the check to handle session buffer requirement + - media: venus: hfi: add checks to handle capabilities from firmware + - media: ccs: Correctly initialise try compose rectangle + - nfsd: fix file memleak on client_opens_release + - riscv: kprobes: allow writing to x0 + - mmc: sdhci-pci-gli: A workaround to allow GL9750 to enter ASPM L1.2 + - mm: kmem: drop __GFP_NOFAIL when allocating objcg vectors + - r8169: fix network lost after resume on DASH systems + - mmc: sdhci-pci-gli: GL9750: Mask the replay timer timeout of AER + - media: qcom: camss: Fix pm_domain_on sequence in probe + - media: qcom: camss: Fix vfe_get() error jump + - media: qcom: camss: Fix VFE-17x vfe_disable_output() + - media: qcom: camss: Fix missing vfe_lite clocks check + - ext4: apply umask if ACL support is disabled + - ext4: correct offset of gdb backup in non meta_bg group to update_backups + - ext4: correct return value of ext4_convert_meta_bg + - ext4: correct the start block of counting reserved clusters + - ext4: remove gdb backup copy for meta bg in setup_new_flex_group_blocks + - ext4: add missed brelse in update_backups + - drm/amd/pm: Handle non-terminated overdrive commands. + - drm/i915: Fix potential spectre vulnerability + - drm/amdgpu: don't use ATRM for external devices + - drm/amdgpu: fix error handling in amdgpu_bo_list_get() + - drm/amd/display: Change the DMCUB mailbox memory location from FB to inbox + - powerpc/powernv: Fix fortify source warnings in opal-prd.c + - tracing: Have trace_event_file have ref counters + - Input: xpad - add VID for Turtle Beach controllers + - driver core: Release all resources during unbind before updating device + links + - Linux 5.15.140 + + * CVE-2023-46862 + - io_uring/fdinfo: lock SQ thread while retrieving thread cpu/pid + + * Jammy update: v5.15.139 upstream stable release (LP: #2049432) + - iov_iter, x86: Be consistent about the __user tag on copy_mc_to_user() + - sched/uclamp: Ignore (util == 0) optimization in feec() when p_util_max = 0 + - sched: Fix stop_one_cpu_nowait() vs hotplug + - vfs: fix readahead(2) on block devices + - writeback, cgroup: switch inodes with dirty timestamps to release dying + cgwbs + - x86/srso: Fix SBPB enablement for (possible) future fixed HW + - futex: Don't include process MM in futex key on no-MMU + - x86: Share definition of __is_canonical_address() + - x86/sev-es: Allow copy_from_kernel_nofault() in earlier boot + - x86/boot: Fix incorrect startup_gdt_descr.size + - pstore/platform: Add check for kstrdup + - genirq/matrix: Exclude managed interrupts in irq_matrix_allocated() + - i40e: fix potential memory leaks in i40e_remove() + - selftests/bpf: Test tail call counting with bpf2bpf and data on stack + - selftests/bpf: Correct map_fd to data_fd in tailcalls + - udp: add missing WRITE_ONCE() around up->encap_rcv + - tcp: call tcp_try_undo_recovery when an RTOd TFO SYNACK is ACKed + - gve: Use size_add() in call to struct_size() + - mlxsw: Use size_mul() in call to struct_size() + - tipc: Use size_add() in calls to struct_size() + - net: spider_net: Use size_add() in call to struct_size() + - wifi: rtw88: debug: Fix the NULL vs IS_ERR() bug for debugfs_create_file() + - wifi: mt76: mt7603: rework/fix rx pse hang check + - mt76: dma: use kzalloc instead of devm_kzalloc for txwi + - mt76: add support for overriding the device used for DMA mapping + - mt76: pass original queue id from __mt76_tx_queue_skb to the driver + - wifi: mt76: mt7603: improve stuck beacon handling + - tcp_metrics: add missing barriers on delete + - tcp_metrics: properly set tp->snd_ssthresh in tcp_init_metrics() + - tcp_metrics: do not create an entry from tcp_init_metrics() + - wifi: rtlwifi: fix EDCA limit set by BT coexistence + - can: dev: can_restart(): don't crash kernel if carrier is OK + - can: dev: can_restart(): fix race condition between controller restart and + netif_carrier_on() + - can: dev: can_put_echo_skb(): don't crash kernel if can_priv::echo_skb is + accessed out of bounds + - PM / devfreq: rockchip-dfi: Make pmu regmap mandatory + - netfilter: nf_tables: Drop pointless memset when dumping rules + - thermal: core: prevent potential string overflow + - r8169: use tp_to_dev instead of open code + - r8169: fix rare issue with broken rx after link-down on RTL8125 + - chtls: fix tp->rcv_tstamp initialization + - tcp: fix cookie_init_timestamp() overflows + - iwlwifi: pcie: adjust to Bz completion descriptor + - wifi: iwlwifi: call napi_synchronize() before freeing rx/tx queues + - wifi: iwlwifi: pcie: synchronize IRQs before NAPI + - wifi: iwlwifi: empty overflow queue during flush + - ACPI: sysfs: Fix create_pnp_modalias() and create_of_modalias() + - ipv6: avoid atomic fragment on GSO packets + - net: add DEV_STATS_READ() helper + - ipvlan: properly track tx_errors + - regmap: debugfs: Fix a erroneous check after snprintf() + - spi: tegra: Fix missing IRQ check in tegra_slink_probe() + - clk: qcom: clk-rcg2: Fix clock rate overflow for high parent frequencies + - clk: qcom: mmcc-msm8998: Don't check halt bit on some branch clks + - clk: qcom: mmcc-msm8998: Fix the SMMU GDSC + - clk: qcom: gcc-sm8150: Fix gcc_sdcc2_apps_clk_src + - clk: imx: Select MXC_CLK for CLK_IMX8QXP + - clk: imx: imx8mq: correct error handling path + - clk: imx: imx8qxp: Fix elcdif_pll clock + - clk: renesas: rzg2l: Simplify multiplication/shift logic + - clk: renesas: rzg2l: Use FIELD_GET() for PLL register fields + - clk: renesas: rzg2l: Fix computation formula + - spi: nxp-fspi: use the correct ioremap function + - clk: keystone: pll: fix a couple NULL vs IS_ERR() checks + - clk: ti: Add ti_dt_clk_name() helper to use clock-output-names + - clk: ti: Update pll and clockdomain clocks to use ti_dt_clk_name() + - clk: ti: Update component clocks to use ti_dt_clk_name() + - clk: ti: change ti_clk_register[_omap_hw]() API + - clk: ti: fix double free in of_ti_divider_clk_setup() + - clk: npcm7xx: Fix incorrect kfree + - clk: mediatek: clk-mt6765: Add check for mtk_alloc_clk_data + - clk: mediatek: clk-mt6779: Add check for mtk_alloc_clk_data + - clk: mediatek: clk-mt6797: Add check for mtk_alloc_clk_data + - clk: mediatek: clk-mt7629-eth: Add check for mtk_alloc_clk_data + - clk: mediatek: clk-mt7629: Add check for mtk_alloc_clk_data + - clk: mediatek: clk-mt2701: Add check for mtk_alloc_clk_data + - clk: qcom: config IPQ_APSS_6018 should depend on QCOM_SMEM + - platform/x86: wmi: Fix probe failure when failing to register WMI devices + - platform/x86: wmi: remove unnecessary initializations + - platform/x86: wmi: Fix opening of char device + - hwmon: (axi-fan-control) Fix possible NULL pointer dereference + - hwmon: (coretemp) Fix potentially truncated sysfs attribute name + - drm/rockchip: vop: Fix reset of state in duplicate state crtc funcs + - drm/rockchip: vop: Fix call to crtc reset helper + - drm/radeon: possible buffer overflow + - drm/mipi-dsi: Create devm device registration + - drm/mipi-dsi: Create devm device attachment + - drm/bridge: lt8912b: Switch to devm MIPI-DSI helpers + - drm/bridge: lt8912b: Register and attach our DSI device at probe + - drm/bridge: lt8912b: Add hot plug detection + - drm/bridge: lt8912b: Fix bridge_detach + - drm/bridge: lt8912b: Fix crash on bridge detach + - drm/bridge: lt8912b: Manually disable HPD only if it was enabled + - drm/bridge: lt8912b: Add missing drm_bridge_attach call + - drm/bridge: tc358768: Fix use of uninitialized variable + - drm/bridge: tc358768: Disable non-continuous clock mode + - drm/bridge: tc358768: Fix bit updates + - drm/amdkfd: fix some race conditions in vram buffer alloc/free of svm code + - drm/mediatek: Fix iommu fault by swapping FBs after updating plane state + - drm/mediatek: Fix iommu fault during crtc enabling + - drm/rockchip: cdn-dp: Fix some error handling paths in cdn_dp_probe() + - arm64/arm: xen: enlighten: Fix KPTI checks + - drm/rockchip: Fix type promotion bug in rockchip_gem_iommu_map() + - xen-pciback: Consider INTx disabled when MSI/MSI-X is enabled + - drm/msm/dsi: use msm_gem_kernel_put to free TX buffer + - drm: mediatek: mtk_dsi: Fix NO_EOT_PACKET settings/handling + - perf: hisi: Fix use-after-free when register pmu fails + - ARM: dts: renesas: blanche: Fix typo in GP_11_2 pin name + - arm64: dts: qcom: msm8916: Fix iommu local address range + - arm64: dts: qcom: msm8992-libra: drop duplicated reserved memory + - arm64: dts: qcom: sc7280: Add missing LMH interrupts + - arm64: dts: qcom: sdm845-mtp: fix WiFi configuration + - ARM64: dts: marvell: cn9310: Use appropriate label for spi1 pins + - arm64: dts: qcom: apq8016-sbc: Add missing ADV7533 regulators + - ARM: dts: qcom: mdm9615: populate vsdcc fixed regulator + - soc: qcom: llcc: Handle a second device without data corruption + - firmware: ti_sci: Mark driver as non removable + - firmware: arm_ffa: Assign the missing IDR allocation ID to the FFA device + - clk: scmi: Free scmi_clk allocated when the clocks with invalid info are + skipped + - arm64: dts: imx8qm-ss-img: Fix jpegenc compatible entry + - arm64: dts: imx8mm: Add sound-dai-cells to micfil node + - arm64: dts: imx8mn: Add sound-dai-cells to micfil node + - selftests/pidfd: Fix ksft print formats + - selftests/resctrl: Ensure the benchmark commands fits to its array + - crypto: hisilicon/hpre - Fix a erroneous check after snprintf() + - hwrng: geode - fix accessing registers + - RDMA/core: Use size_{add,sub,mul}() in calls to struct_size() + - scsi: ibmvfc: Fix erroneous use of rtas_busy_delay with hcall return code + - libnvdimm/of_pmem: Use devm_kstrdup instead of kstrdup and check its return + value + - nd_btt: Make BTT lanes preemptible + - crypto: caam/qi2 - fix Chacha20 + Poly1305 self test failure + - crypto: caam/jr - fix Chacha20 + Poly1305 self test failure + - crypto: qat - increase size of buffers + - hid: cp2112: Fix duplicate workqueue initialization + - ARM: 9321/1: memset: cast the constant byte to unsigned char + - ext4: move 'ix' sanity check to corrent position + - ASoC: fsl: mpc5200_dma.c: Fix warning of Function parameter or member not + described + - IB/mlx5: Fix rdma counter binding for RAW QP + - RDMA/hns: Fix uninitialized ucmd in hns_roce_create_qp_common() + - RDMA/hns: Fix signed-unsigned mixed comparisons + - RDMA/hns: The UD mode can only be configured with DCQCN + - ASoC: fsl: Fix PM disable depth imbalance in fsl_easrc_probe + - scsi: ufs: core: Leave space for '\0' in utf8 desc string + - RDMA/hfi1: Workaround truncation compilation error + - hid: cp2112: Fix IRQ shutdown stopping polling for all IRQs on chip + - sh: bios: Revive earlyprintk support + - Revert "HID: logitech-hidpp: add a module parameter to keep firmware + gestures" + - HID: logitech-hidpp: Remove HIDPP_QUIRK_NO_HIDINPUT quirk + - HID: logitech-hidpp: Don't restart IO, instead defer hid_connect() only + - HID: logitech-hidpp: Revert "Don't restart communication if not necessary" + - HID: logitech-hidpp: Move get_wireless_feature_index() check to + hidpp_connect_event() + - ASoC: Intel: Skylake: Fix mem leak when parsing UUIDs fails + - padata: Fix refcnt handling in padata_free_shell() + - crypto: qat - fix deadlock in backlog processing + - ASoC: ams-delta.c: use component after check + - mfd: core: Un-constify mfd_cell.of_reg + - mfd: core: Ensure disabled devices are skipped without aborting + - mfd: dln2: Fix double put in dln2_probe + - mfd: arizona-spi: Set pdata.hpdet_channel for ACPI enumerated devs + - leds: turris-omnia: Drop unnecessary mutex locking + - leds: turris-omnia: Do not use SMBUS calls + - leds: pwm: Don't disable the PWM when the LED should be off + - leds: trigger: ledtrig-cpu:: Fix 'output may be truncated' issue for 'cpu' + - f2fs: compress: fix to avoid use-after-free on dic + - f2fs: compress: fix to avoid redundant compress extension + - tty: tty_jobctrl: fix pid memleak in disassociate_ctty() + - livepatch: Fix missing newline character in klp_resolve_symbols() + - dmaengine: idxd: Register dsa_bus_type before registering idxd sub-drivers + - usb: dwc2: fix possible NULL pointer dereference caused by driver + concurrency + - usb: chipidea: Fix DMA overwrite for Tegra + - usb: chipidea: Simplify Tegra DMA alignment code + - dmaengine: ti: edma: handle irq_of_parse_and_map() errors + - misc: st_core: Do not call kfree_skb() under spin_lock_irqsave() + - tools: iio: iio_generic_buffer ensure alignment + - USB: usbip: fix stub_dev hub disconnect + - dmaengine: pxa_dma: Remove an erroneous BUG_ON() in pxad_free_desc() + - f2fs: fix to initialize map.m_pblk in f2fs_precache_extents() + - powerpc: Only define __parse_fpscr() when required + - modpost: fix tee MODULE_DEVICE_TABLE built on big-endian host + - powerpc/40x: Remove stale PTE_ATOMIC_UPDATES macro + - powerpc/xive: Fix endian conversion size + - powerpc/imc-pmu: Use the correct spinlock initializer. + - powerpc/pseries: fix potential memory leak in init_cpu_associativity() + - usb: host: xhci-plat: fix possible kernel oops while resuming + - perf machine: Avoid out of bounds LBR memory read + - perf hist: Add missing puts to hist__account_cycles + - 9p/net: fix possible memory leak in p9_check_errors() + - i3c: Fix potential refcount leak in i3c_master_register_new_i3c_devs + - cxl/mem: Fix shutdown order + - rtc: pcf85363: fix wrong mask/val parameters in regmap_update_bits call + - pcmcia: cs: fix possible hung task and memory leak pccardd() + - pcmcia: ds: fix refcount leak in pcmcia_device_add() + - pcmcia: ds: fix possible name leak in error path in pcmcia_device_add() + - media: i2c: max9286: Fix some redundant of_node_put() calls + - media: bttv: fix use after free error due to btv->timeout timer + - media: s3c-camif: Avoid inappropriate kfree() + - media: vidtv: psi: Add check for kstrdup + - media: vidtv: mux: Add check and kfree for kstrdup + - media: cedrus: Fix clock/reset sequence + - media: dvb-usb-v2: af9035: fix missing unlock + - regmap: prevent noinc writes from clobbering cache + - pwm: sti: Reduce number of allocations and drop usage of chip_data + - pwm: brcmstb: Utilize appropriate clock APIs in suspend/resume + - Input: synaptics-rmi4 - fix use after free in rmi_unregister_function() + - llc: verify mac len before reading mac header + - hsr: Prevent use after free in prp_create_tagged_frame() + - tipc: Change nla_policy for bearer-related names to NLA_NUL_STRING + - bpf: Check map->usercnt after timer->timer is assigned + - inet: shrink struct flowi_common + - octeontx2-pf: Fix error codes + - octeontx2-pf: Fix holes in error code + - dccp: Call security_inet_conn_request() after setting IPv4 addresses. + - dccp/tcp: Call security_inet_conn_request() after setting IPv6 addresses. + - Fix termination state for idr_for_each_entry_ul() + - net: stmmac: xgmac: Enable support for multiple Flexible PPS outputs + - selftests: pmtu.sh: fix result checking + - net/smc: fix dangling sock under state SMC_APPFINCLOSEWAIT + - net/smc: allow cdc msg send rather than drop it with NULL sndbuf_desc + - net/smc: put sk reference if close work was canceled + - tg3: power down device only on SYSTEM_POWER_OFF + - block: remove unneeded return value of bio_check_ro() + - blk-core: use pr_warn_ratelimited() in bio_check_ro() + - r8169: respect userspace disabling IFF_MULTICAST + - i2c: iproc: handle invalid slave state + - netfilter: xt_recent: fix (increase) ipv6 literal buffer length + - netfilter: nft_redir: use `struct nf_nat_range2` throughout and deduplicate + eval call-backs + - netfilter: nat: fix ipv6 nat redirect with mapped and scoped addresses + - drm/syncobj: fix DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE + - ASoC: hdmi-codec: register hpd callback on component probe + - spi: spi-zynq-qspi: add spi-mem to driver kconfig dependencies + - fbdev: imsttfb: Fix error path of imsttfb_probe() + - fbdev: imsttfb: fix a resource leak in probe + - fbdev: fsl-diu-fb: mark wr_reg_wa() static + - tracing/kprobes: Fix the order of argument descriptions + - btrfs: use u64 for buffer sizes in the tree search ioctls + - Linux 5.15.139 + + * Jammy update: v5.15.138 upstream stable release (LP: #2049417) + - ASoC: codecs: wcd938x: fix resource leaks on bind errors + - ASoC: codecs: wcd938x: fix runtime PM imbalance on remove + - pinctrl: qcom: lpass-lpi: fix concurrent register updates + - tcp: remove dead code from tcp_sendmsg_locked() + - tcp: cleanup tcp_remove_empty_skb() use + - mptcp: more conservative check for zero probes + - mcb: Return actual parsed size when reading chameleon table + - mcb-lpc: Reallocate memory region to avoid memory overlapping + - virtio_balloon: Fix endless deflation and inflation on arm64 + - virtio-mmio: fix memory leak of vm_dev + - vhost: Allow null msg.size on VHOST_IOTLB_INVALIDATE + - mm/page_alloc: correct start page when guard page debug is enabled + - mm/migrate: fix do_pages_move for compat pointers + - nfsd: lock_rename() needs both directories to live on the same fs + - drm/i915/pmu: Check if pmu is closed before stopping event + - vsock/virtio: factor our the code to initialize and delete VQs + - vsock/virtio: add support for device suspend/resume + - vsock/virtio: initialize the_virtio_vsock before using VQs + - drm/dp_mst: Fix NULL deref in get_mst_branch_device_by_guid_helper() + - firmware/imx-dsp: Fix use_after_free in imx_dsp_setup_channels() + - r8169: fix the KCSAN reported data-race in rtl_tx() while reading tp->cur_tx + - r8169: fix the KCSAN reported data-race in rtl_tx while reading + TxDescArray[entry].opts1 + - r8169: fix the KCSAN reported data race in rtl_rx while reading desc->opts1 + - i40e: Fix I40E_FLAG_VF_VLAN_PRUNING value + - treewide: Spelling fix in comment + - igb: Fix potential memory leak in igb_add_ethtool_nfc_entry + - neighbour: fix various data-races + - igc: Fix ambiguity in the ethtool advertising + - net: ieee802154: adf7242: Fix some potential buffer overflow in + adf7242_stats_show() + - net: usb: smsc95xx: Fix uninit-value access in smsc95xx_read_reg + - r8152: Increase USB control msg timeout to 5000ms as per spec + - r8152: Run the unload routine if we have errors during probe + - r8152: Cancel hw_phy_work if we have an error in probe + - r8152: Release firmware if we have an error in probe + - tcp: fix wrong RTO timeout when received SACK reneging + - gtp: uapi: fix GTPA_MAX + - gtp: fix fragmentation needed check with gso + - i40e: Fix wrong check for I40E_TXR_FLAGS_WB_ON_ITR + - kasan: print the original fault addr when access invalid shadow + - iio: exynos-adc: request second interupt only when touchscreen mode is used + - iio: adc: xilinx-xadc: Don't clobber preset voltage/temperature thresholds + - iio: adc: xilinx-xadc: Correct temperature offset/scale for UltraScale + - i2c: muxes: i2c-mux-pinctrl: Use of_get_i2c_adapter_by_node() + - i2c: muxes: i2c-mux-gpmux: Use of_get_i2c_adapter_by_node() + - i2c: muxes: i2c-demux-pinctrl: Use of_get_i2c_adapter_by_node() + - i2c: stm32f7: Fix PEC handling in case of SMBUS transfers + - i2c: aspeed: Fix i2c bus hang in slave read + - tracing/kprobes: Fix the description of variable length arguments + - misc: fastrpc: Clean buffers on remote invocation failures + - nvmem: imx: correct nregs for i.MX6ULL + - nvmem: imx: correct nregs for i.MX6SLL + - nvmem: imx: correct nregs for i.MX6UL + - perf/core: Fix potential NULL deref + - sparc32: fix a braino in fault handling in csum_and_copy_..._user() + - clk: Sanitize possible_parent_show to Handle Return Value of + of_clk_get_parent_name + - iio: afe: rescale: reorder includes + - iio: afe: rescale: expose scale processing function + - iio: afe: rescale: add offset support + - iio: afe: rescale: Accept only offset channels + - gve: Fix GFP flags when allocing pages + - x86/i8259: Skip probing when ACPI/MADT advertises PCAT compatibility + - x86/mm: Simplify RESERVE_BRK() + - x86/mm: Fix RESERVE_BRK() for older binutils + - ext4: add two helper functions extent_logical_end() and pa_logical_end() + - ext4: fix BUG in ext4_mb_new_inode_pa() due to overflow + - ext4: avoid overlapping preallocations due to overflow + - objtool/x86: add missing embedded_insn check + - driver: platform: Add helper for safer setting of driver_override + - rpmsg: Constify local variable in field store macro + - rpmsg: Fix kfree() of static memory on setting driver_override + - rpmsg: Fix calling device_lock() on non-initialized device + - rpmsg: glink: Release driver_override + - rpmsg: Fix possible refcount leak in rpmsg_register_device_override() + - x86: Fix .brk attribute in linker script + - ASoC: simple-card: fixup asoc_simple_probe() error handling + - net: sched: cls_u32: Fix allocation size in u32_init() + - irqchip/riscv-intc: Mark all INTC nodes as initialized + - irqchip/stm32-exti: add missing DT IRQ flag translation + - dmaengine: ste_dma40: Fix PM disable depth imbalance in d40_probe + - powerpc/85xx: Fix math emulation exception + - Input: synaptics-rmi4 - handle reset delay when using SMBus trsnsport + - fbdev: atyfb: only use ioremap_uc() on i386 and ia64 + - fs/ntfs3: Add ckeck in ni_update_parent() + - fs/ntfs3: Write immediately updated ntfs state + - fs/ntfs3: Use kvmalloc instead of kmalloc(... __GFP_NOWARN) + - fs/ntfs3: Fix possible NULL-ptr-deref in ni_readpage_cmpr() + - fs/ntfs3: Fix NULL pointer dereference on error in attr_allocate_frame() + - fs/ntfs3: Fix directory element type detection + - fs/ntfs3: Avoid possible memory leak + - spi: npcm-fiu: Fix UMA reads when dummy.nbytes == 0 + - netfilter: nfnetlink_log: silence bogus compiler warning + - ASoC: rt5650: fix the wrong result of key button + - drm/ttm: Reorder sys manager cleanup step + - fbdev: uvesafb: Call cn_del_callback() at the end of uvesafb_exit() + - scsi: mpt3sas: Fix in error path + - platform/mellanox: mlxbf-tmfifo: Fix a warning message + - net: chelsio: cxgb4: add an error code check in t4_load_phy_fw + - r8152: Check for unplug in rtl_phy_patch_request() + - r8152: Check for unplug in r8153b_ups_en() / r8153c_ups_en() + - powerpc/mm: Fix boot crash with FLATMEM + - can: isotp: set max PDU size to 64 kByte + - can: isotp: isotp_bind(): return -EINVAL on incorrect CAN ID formatting + - can: isotp: check CAN address family in isotp_bind() + - can: isotp: handle wait_event_interruptible() return values + - can: isotp: add local echo tx processing and tx without FC + - can: isotp: isotp_bind(): do not validate unused address information + - can: isotp: isotp_sendmsg(): fix TX state detection and wait behavior + - drm/amd: Move helper for dynamic speed switch check out of smu13 + - drm/amd: Disable ASPM for VI w/ all Intel systems + - PCI: Prevent xHCI driver from claiming AMD VanGogh USB3 DRD device + - usb: storage: set 1.50 as the lower bcdDevice for older "Super Top" + compatibility + - usb: typec: tcpm: Fix NULL pointer dereference in tcpm_pd_svdm() + - usb: raw-gadget: properly handle interrupted requests + - tty: n_gsm: fix race condition in status line change on dead connections + - tty: 8250: Remove UC-257 and UC-431 + - tty: 8250: Add support for additional Brainboxes UC cards + - tty: 8250: Add support for Brainboxes UP cards + - tty: 8250: Add support for Intashield IS-100 + - tty: 8250: Fix port count of PX-257 + - tty: 8250: Fix up PX-803/PX-857 + - tty: 8250: Add support for additional Brainboxes PX cards + - tty: 8250: Add support for Intashield IX cards + - tty: 8250: Add Brainboxes Oxford Semiconductor-based quirks + - misc: pci_endpoint_test: Add deviceID for J721S2 PCIe EP device support + - ALSA: hda: intel-dsp-config: Fix JSL Chromebook quirk detection + - Linux 5.15.138 + + * Jammy update: v5.15.137 upstream stable release (LP: #2049350) + - lib/Kconfig.debug: do not enable DEBUG_PREEMPT by default + - Documentation: sysctl: align cells in second content column + - xfs: don't expose internal symlink metadata buffers to the vfs + - Bluetooth: hci_event: Ignore NULL link key + - Bluetooth: Reject connection with the device which has same BD_ADDR + - Bluetooth: Fix a refcnt underflow problem for hci_conn + - Bluetooth: vhci: Fix race when opening vhci device + - Bluetooth: hci_event: Fix coding style + - Bluetooth: avoid memcmp() out of bounds warning + - ice: fix over-shifted variable + - ice: reset first in crash dump kernels + - nfc: nci: fix possible NULL pointer dereference in send_acknowledge() + - regmap: fix NULL deref on lookup + - KVM: x86: Mask LVTPC when handling a PMI + - tcp: check mptcp-level constraints for backlog coalescing + - fs/ntfs3: Fix possible null-pointer dereference in hdr_find_e() + - fs/ntfs3: fix panic about slab-out-of-bounds caused by ntfs_list_ea() + - fs/ntfs3: fix deadlock in mark_as_free_ex + - netfilter: nft_payload: fix wrong mac header matching + - drm/i915: Retry gtt fault when out of fence registers + - ASoC: codecs: wcd938x-sdw: fix use after free on driver unbind + - ASoC: codecs: wcd938x-sdw: fix runtime PM imbalance on probe errors + - ASoC: codecs: wcd938x: drop bogus bind error handling + - ASoC: codecs: wcd938x: fix unbind tear down order + - qed: fix LL2 RX buffer allocation + - xfrm: fix a data-race in xfrm_gen_index() + - xfrm: interface: use DEV_STATS_INC() + - net: ipv4: fix return value check in esp_remove_trailer + - net: ipv6: fix return value check in esp_remove_trailer + - net: rfkill: gpio: prevent value glitch during probe + - tcp: fix excessive TLP and RACK timeouts from HZ rounding + - tcp: tsq: relax tcp_small_queue_check() when rtx queue contains a single skb + - tun: prevent negative ifindex + - ipv4: fib: annotate races around nh->nh_saddr_genid and nh->nh_saddr + - net: usb: smsc95xx: Fix an error code in smsc95xx_reset() + - i40e: prevent crash on probe if hw registers have invalid values + - net: dsa: bcm_sf2: Fix possible memory leak in bcm_sf2_mdio_register() + - bonding: Return pointer to data after pull on skb + - net/sched: sch_hfsc: upgrade 'rt' to 'sc' when it becomes a inner curve + - neighbor: tracing: Move pin6 inside CONFIG_IPV6=y section + - netfilter: nft_set_rbtree: .deactivate fails if element has expired + - netfilter: nf_tables: do not remove elements if set backend implements + .abort + - netfilter: nf_tables: revert do not remove elements if set backend + implements .abort + - net: pktgen: Fix interface flags printing + - selftests/mm: fix awk usage in charge_reserved_hugetlb.sh and + hugetlb_reparenting_test.sh that may cause error + - serial: 8250: omap: Fix imprecise external abort for omap_8250_pm() + - serial: 8250_omap: Fix errors with no_console_suspend + - iio: Un-inline iio_buffer_enabled() + - iio: core: Hide read accesses to iio_dev->currentmode + - iio: core: introduce iio_device_{claim|release}_buffer_mode() APIs + - iio: cros_ec: fix an use-after-free in cros_ec_sensors_push_data() + - iio: adc: ad7192: Correct reference voltage + - perf: Add irq and exception return branch types + - perf/x86: Move branch classifier + - perf/x86/lbr: Filter vsyscall addresses + - drm/atomic-helper: relax unregistered connector check + - powerpc/32s: Remove capability to disable KUEP at boottime + - powerpc/32s: Do kuep_lock() and kuep_unlock() in assembly + - powerpc/47x: Fix 47x syscall return crash + - mctp: Allow local delivery to the null EID + - mctp: perform route lookups under a RCU read-side lock + - nfp: flower: avoid rmmod nfp crash issues + - ksmbd: not allow to open file if delelete on close bit is set + - ARM: dts: ti: omap: Fix noisy serial with overrun-throttle-ms for mapphone + - fs-writeback: do not requeue a clean inode having skipped pages + - btrfs: return -EUCLEAN for delayed tree ref with a ref count not equals to 1 + - btrfs: initialize start_slot in btrfs_log_prealloc_extents + - i2c: mux: Avoid potential false error message in i2c_mux_add_adapter + - overlayfs: set ctime when setting mtime and atime + - gpio: timberdale: Fix potential deadlock on &tgpio->lock + - ata: libata-core: Fix compilation warning in ata_dev_config_ncq() + - ata: libata-eh: Fix compilation warning in ata_eh_link_report() + - tracing: relax trace_event_eval_update() execution with cond_resched() + - wifi: mwifiex: Sanity check tlv_len and tlv_bitmap_len + - wifi: iwlwifi: Ensure ack flag is properly cleared. + - HID: holtek: fix slab-out-of-bounds Write in holtek_kbd_input_event + - Bluetooth: btusb: add shutdown function for QCA6174 + - Bluetooth: Avoid redundant authentication + - Bluetooth: hci_core: Fix build warnings + - wifi: cfg80211: Fix 6GHz scan configuration + - wifi: mac80211: allow transmitting EAPOL frames with tainted key + - wifi: cfg80211: avoid leaking stack data into trace + - regulator/core: Revert "fix kobject release warning and memory leak in + regulator_register()" + - sky2: Make sure there is at least one frag_addr available + - ipv4/fib: send notify when delete source address routes + - drm: panel-orientation-quirks: Add quirk for One Mix 2S + - btrfs: fix some -Wmaybe-uninitialized warnings in ioctl.c + - btrfs: error out when COWing block using a stale transaction + - btrfs: error when COWing block from a root that is being deleted + - btrfs: error out when reallocating block for defrag using a stale + transaction + - HID: multitouch: Add required quirk for Synaptics 0xcd7e device + - platform/x86: touchscreen_dmi: Add info for the Positivo C4128B + - net/mlx5: Handle fw tracer change ownership event based on MTRC + - Bluetooth: hci_event: Fix using memcmp when comparing keys + - net: introduce a function to check if a netdev name is in use + - net: move from strlcpy with unused retval to strscpy + - net: fix ifname in netlink ntf during netns move + - mtd: rawnand: qcom: Unmap the right resource upon probe failure + - mtd: rawnand: pl353: Ensure program page operations are successful + - mtd: rawnand: marvell: Ensure program page operations are successful + - mtd: rawnand: arasan: Ensure program page operations are successful + - mtd: spinand: micron: correct bitmask for ecc status + - mtd: physmap-core: Restore map_rom fallback + - mmc: mtk-sd: Use readl_poll_timeout_atomic in msdc_reset_hw + - mmc: core: sdio: hold retuning if sdio in 1-bit mode + - pNFS: Fix a hang in nfs4_evict_inode() + - NFSv4.1: fixup use EXCHGID4_FLAG_USE_PNFS_DS for DS server + - ACPI: irq: Fix incorrect return value in acpi_register_gsi() + - nvme-pci: add BOGUS_NID for Intel 0a54 device + - nvme-rdma: do not try to stop unallocated queues + - USB: serial: option: add Telit LE910C4-WWX 0x1035 composition + - USB: serial: option: add entry for Sierra EM9191 with new firmware + - USB: serial: option: add Fibocom to DELL custom modem FM101R-GL + - s390/pci: fix iommu bitmap allocation + - selftests/ftrace: Add new test case which checks non unique symbol + - s390/cio: fix a memleak in css_alloc_subchannel + - platform/surface: platform_profile: Propagate error if profile registration + fails + - platform/x86: asus-wmi: Change ASUS_WMI_BRN_DOWN code from 0x20 to 0x2e + - platform/x86: asus-wmi: Map 0x2a code, Ignore 0x2b and 0x2c events + - gpio: vf610: set value before the direction to avoid a glitch + - ASoC: pxa: fix a memory leak in probe() + - serial: 8250: omap: Move uart_write() inside PM section + - phy: mapphone-mdm6600: Fix runtime disable on probe + - phy: mapphone-mdm6600: Fix runtime PM for remove + - phy: mapphone-mdm6600: Fix pinctrl_pm handling for sleep pins + - Bluetooth: hci_sock: fix slab oob read in create_monitor_event + - Bluetooth: hci_sock: Correctly bounds check and pad HCI_MON_NEW_INDEX name + - xfrm6: fix inet6_dev refcount underflow problem + - Linux 5.15.137 + + * CVE-2023-51782 + - net/rose: Fix Use-After-Free in rose_ioctl + + * CVE-2023-51779 + - Bluetooth: af_bluetooth: Fix Use-After-Free in bt_sock_recvmsg + + * CVE-2023-22995 + - usb: dwc3: dwc3-qcom: Add missing platform_device_put() in + dwc3_qcom_acpi_register_core + + * CVE-2023-4134 + - Input: cyttsp4_core - change del_timer_sync() to timer_shutdown_sync() + + * Packaging resync (LP: #1786013) + - [Packaging] update annotations scripts + + -- Stefan Bader Fri, 02 Feb 2024 14:05:20 +0100 + +linux (5.15.0-94.104) jammy; urgency=medium + + * jammy/linux: 5.15.0-94.104 -proposed tracker (LP: #2048777) + + * [SRU] Duplicate Device_dax ids Created and hence Probing is Failing. + (LP: #2028158) + - device-dax: Fix duplicate 'hmem' device registration + + * Add ODM driver f81604 usb-can (LP: #2045387) + - can: usb: f81604: add Fintek F81604 support + - [Config] updateconfigs for ODM drivers CONFIG_CAN_F81604 + + * Add ODM driver gpio-m058ssan (LP: #2045386) + - SAUCE: ODM: gpio: add M058SSAN gpio driver + - [Config] updateconfigs for ODM drivers CONFIG_GPIO_M058SSAN + + * Add ODM driver rtc-pcf85263 (LP: #2045385) + - SAUCE: ODM: rtc: add PCF85263 RTC driver + - [Config] updateconfigs for ODM drivers CONFIG_RTC_DRV_PCF85263 + + * AppArmor patch for mq-posix interface is missing in jammy (LP: #2045384) + - SAUCE: (no-up) apparmor: reserve mediation classes + - SAUCE: (no-up) apparmor: Add fine grained mediation of posix mqueues + + * Packaging resync (LP: #1786013) + - [Packaging] update annotations scripts + + -- Stefan Bader Tue, 09 Jan 2024 15:51:37 +0100 + +linux (5.15.0-93.103) jammy; urgency=medium + + * jammy/linux: 5.15.0-93.103 -proposed tracker (LP: #2048330) + + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] resync update-dkms-versions helper + - [Packaging] remove helper scripts + - [Packaging] update annotations scripts + - debian/dkms-versions -- update from kernel-versions (main/2024.01.08) + + * Hotplugging SCSI disk in QEMU VM fails (LP: #2047382) + - Revert "PCI: acpiphp: Reassign resources on bridge if necessary" + + * CVE-2023-6622 + - netfilter: nf_tables: bail out on mismatching dynset and set expressions + + * CVE-2024-0193 + - netfilter: nf_tables: skip set commit for deleted/destroyed sets + + * CVE-2023-6040 + - netfilter: nf_tables: Reject tables of unsupported family + + * Patches needed for AmpereOne (arm64) (LP: #2044192) + - clocksource/arm_arch_timer: Add build-time guards for unhandled register + accesses + - clocksource/drivers/arm_arch_timer: Drop CNT*_TVAL read accessors + - clocksource/drivers/arm_arch_timer: Extend write side of timer register + accessors to u64 + - clocksource/drivers/arm_arch_timer: Move system register timer programming + over to CVAL + - clocksource/drivers/arm_arch_timer: Move drop _tval from erratum function + names + - clocksource/drivers/arm_arch_timer: Fix MMIO base address vs callback + ordering issue + - clocksource/drivers/arm_arch_timer: Move MMIO timer programming over to CVAL + - clocksource/drivers/arm_arch_timer: Advertise 56bit timer to the core code + - clocksource/drivers/arm_arch_timer: Work around broken CVAL implementations + - clocksource/drivers/arm_arch_timer: Remove any trace of the TVAL programming + interface + - clocksource/drivers/arm_arch_timer: Drop unnecessary ISB on CVAL programming + - clocksource/drivers/arm_arch_timer: Fix masking for high freq counters + - clocksource/drivers/arch_arm_timer: Move workaround synchronisation around + + * Add quirk to disable i915 fastboot on B&R PC (LP: #2047630) + - SAUCE: i915: force disable fastboot quirk + + * Some machines can't pass the pm-graph test (LP: #2046217) + - wifi: iwlwifi: pcie: rescan bus if no parent + + * Sound: Add rtl quirk of M90-Gen5 (LP: #2046105) + - ALSA: hda/realtek: Enable headset on Lenovo M90 Gen5 + + * linux tools packages for derived kernels refuse to install simultaneously + due to libcpupower name collision (LP: #2035971) + - [Packaging] Statically link libcpupower into cpupower tool + + * [Debian] autoreconstruct - Do not generate chmod -x for deleted files + (LP: #2045562) + - [Debian] autoreconstruct - Do not generate chmod -x for deleted files + + * CVE-2023-6931 + - perf/core: Add a new read format to get a number of lost samples + - perf: Fix perf_event_validate_size() + - perf: Fix perf_event_validate_size() lockdep splat + + * CVE-2023-6932 + - ipv4: igmp: fix refcnt uaf issue when receiving igmp query packet + + * CVE-2023-6606 + - smb: client: fix OOB in smbCalcSize() + + * CVE-2023-6817 + - netfilter: nft_set_pipapo: skip inactive elements during set walk + + * Jammy update: v5.15.136 upstream stable release (LP: #2046008) + - iommu/vt-d: Avoid memory allocation in iommu_suspend() + - scsi: core: Use a structure member to track the SCSI command submitter + - scsi: core: Rename scsi_mq_done() into scsi_done() and export it + - scsi: ib_srp: Call scsi_done() directly + - RDMA/srp: Do not call scsi_done() from srp_abort() + - RDMA/cxgb4: Check skb value for failure to allocate + - perf/arm-cmn: Fix the unhandled overflow status of counter 4 to 7 + - of: overlay: Reorder struct fragment fields kerneldoc + - platform/x86: think-lmi: Fix reference leak + - platform/x86: hp-wmi:: Mark driver struct with __refdata to prevent section + mismatch warning + - lib/test_meminit: fix off-by-one error in test_pages() + - HID: logitech-hidpp: Fix kernel crash on receiver USB disconnect + - quota: Fix slow quotaoff + - net: prevent address rewrite in kernel_bind() + - ALSA: usb-audio: Fix microphone sound on Opencomm2 Headset + - KEYS: trusted: allow use of kernel RNG for key material + - KEYS: trusted: Remove redundant static calls usage + - drm/msm/dp: do not reinitialize phy unless retry during link training + - drm/msm/dsi: skip the wait for video mode done if not applicable + - drm/msm/dsi: fix irq_of_parse_and_map() error checking + - drm/msm/dpu: change _dpu_plane_calc_bw() to use u64 to avoid overflow + - ravb: Fix up dma_free_coherent() call in ravb_remove() + - ravb: Fix use-after-free issue in ravb_tx_timeout_work() + - ieee802154: ca8210: Fix a potential UAF in ca8210_probe + - mlxsw: fix mlxsw_sp2_nve_vxlan_learning_set() return type + - eth: remove copies of the NAPI_POLL_WEIGHT define + - xen-netback: use default TX queue size for vifs + - riscv, bpf: Factor out emit_call for kernel and bpf context + - riscv, bpf: Sign-extend return values + - drm/vmwgfx: fix typo of sizeof argument + - bpf: Fix verifier log for async callback return values + - net: macsec: indicate next pn update when offloading + - net: phy: mscc: macsec: reject PN update requests + - ixgbe: fix crash with empty VF macvlan list + - net/mlx5e: Again mutually exclude RX-FCS and RX-port-timestamp + - net: nfc: fix races in nfc_llcp_sock_get() and nfc_llcp_sock_get_sn() + - pinctrl: renesas: rzn1: Enable missing PINMUX + - nfc: nci: assert requested protocol is valid + - workqueue: Override implicit ordered attribute in + workqueue_apply_unbound_cpumask() + - net: add sysctl accept_ra_min_rtr_lft + - net: change accept_ra_min_rtr_lft to affect all RA lifetimes + - net: release reference to inet6_dev pointer + - media: mtk-jpeg: Fix use after free bug due to uncanceled work + - dmaengine: stm32-mdma: abort resume if no ongoing transfer + - xhci: Keep interrupt disabled in initialization until host is running. + - usb: xhci: xhci-ring: Use sysdev for mapping bounce buffer + - net: usb: dm9601: fix uninitialized variable use in dm9601_mdio_read + - usb: dwc3: Soft reset phy on probe for host + - usb: cdns3: Modify the return value of cdns_set_active () to void when + CONFIG_PM_SLEEP is disabled + - usb: musb: Get the musb_qh poniter after musb_giveback + - usb: musb: Modify the "HWVers" register address + - iio: pressure: bmp280: Fix NULL pointer exception + - iio: pressure: dps310: Adjust Timeout Settings + - iio: pressure: ms5611: ms5611_prom_is_valid false negative bug + - drm/amdgpu: add missing NULL check + - drm/amd/display: Don't set dpms_off for seamless boot + - ACPI: resource: Skip IRQ override on ASUS ExpertBook B1402CBA + - x86/cpu: Fix AMD erratum #1485 on Zen4-based CPUs + - mcb: remove is_added flag from mcb_device struct + - thunderbolt: Workaround an IOMMU fault on certain systems with Intel Maple + Ridge + - thunderbolt: Check that lane 1 is in CL0 before enabling lane bonding + - libceph: use kernel_connect() + - ceph: fix incorrect revoked caps assert in ceph_fill_file_size() + - ceph: fix type promotion bug on 32bit systems + - Input: powermate - fix use-after-free in powermate_config_complete + - Input: psmouse - fix fast_reconnect function for PS/2 mode + - Input: xpad - add PXN V900 support + - Input: i8042 - add Fujitsu Lifebook E5411 to i8042 quirk table + - Input: goodix - ensure int GPIO is in input for gpio_count == 1 && + gpio_int_idx == 0 case + - tee: amdtee: fix use-after-free vulnerability in amdtee_close_session + - cgroup: Remove duplicates in cgroup v1 tasks file + - counter: microchip-tcb-capture: Fix the use of internal GCLK logic + - usb: gadget: udc-xilinx: replace memcpy with memcpy_toio + - usb: gadget: ncm: Handle decoding of multiple NTB's in unwrap call + - usb: cdnsp: Fixes issue with dequeuing not queued requests + - x86/alternatives: Disable KASAN in apply_alternatives() + - dmaengine: idxd: use spin_lock_irqsave before wait_event_lock_irq + - dmaengine: mediatek: Fix deadlock caused by synchronize_irq() + - powerpc/8xx: Fix pte_access_permitted() for PAGE_NONE + - powerpc/64e: Fix wrong test in __ptep_test_and_clear_young() + - arm64: report EL1 UNDEFs better + - arm64: die(): pass 'err' as long + - arm64: consistently pass ESR_ELx to die() + - arm64: rework FPAC exception handling + - arm64: rework BTI exception handling + - arm64: allow kprobes on EL0 handlers + - arm64: split EL0/EL1 UNDEF handlers + - arm64: factor out EL1 SSBS emulation hook + - arm64: factor insn read out of call_undef_hook() + - arm64: rework EL0 MRS emulation + - arm64: armv8_deprecated: fold ops into insn_emulation + - arm64: armv8_deprecated move emulation functions + - arm64: armv8_deprecated: move aarch32 helper earlier + - arm64: armv8_deprecated: rework deprected instruction handling + - arm64: armv8_deprecated: fix unused-function error + - usb: hub: Guard against accesses to uninitialized BOS descriptors + - eth: remove remaining copies of the NAPI_POLL_WEIGHT define + - Linux 5.15.136 + + * Jammy update: v5.15.135 upstream stable release (LP: #2045809) + - spi: zynqmp-gqspi: Convert to platform remove callback returning void + - spi: zynqmp-gqspi: fix clock imbalance on probe failure + - ASoC: soc-utils: Export snd_soc_dai_is_dummy() symbol + - ASoC: tegra: Fix redundant PLLA and PLLA_OUT0 updates + - NFS: Cleanup unused rpc_clnt variable + - NFS: rename nfs_client_kset to nfs_kset + - NFSv4: Fix a state manager thread deadlock regression + - ring-buffer: remove obsolete comment for free_buffer_page() + - ring-buffer: Fix bytes info in per_cpu buffer stats + - arm64: Avoid repeated AA64MMFR1_EL1 register read on pagefault path + - iommu/arm-smmu-v3: Set TTL invalidation hint better + - iommu/arm-smmu-v3: Avoid constructing invalid range commands + - rbd: move rbd_dev_refresh() definition + - rbd: decouple header read-in from updating rbd_dev->header + - rbd: decouple parent info read-in from updating rbd_dev + - rbd: take header_rwsem in rbd_dev_refresh() only when updating + - block: fix use-after-free of q->q_usage_counter + - scsi: zfcp: Fix a double put in zfcp_port_enqueue() + - qed/red_ll2: Fix undefined behavior bug in struct qed_ll2_info + - wifi: mwifiex: Fix tlv_buf_left calculation + - net: replace calls to sock->ops->connect() with kernel_connect() + - net: prevent rewrite of msg_name in sock_sendmsg() + - drm/amd: Fix detection of _PR3 on the PCIe root port + - arm64: Add Cortex-A520 CPU part definition + - HID: sony: Fix a potential memory leak in sony_probe() + - ubi: Refuse attaching if mtd's erasesize is 0 + - wifi: iwlwifi: dbg_ini: fix structure packing + - iwlwifi: avoid void pointer arithmetic + - wifi: iwlwifi: mvm: Fix a memory corruption issue + - wifi: mwifiex: Fix oob check condition in mwifiex_process_rx_packet + - bpf: Fix tr dereferencing + - drivers/net: process the result of hdlc_open() and add call of hdlc_close() + in uhdlc_close() + - wifi: mt76: mt76x02: fix MT76x0 external LNA gain handling + - regmap: rbtree: Fix wrong register marked as in-cache when creating new node + - ima: Finish deprecation of IMA_TRUSTED_KEYRING Kconfig + - [Config] updateconfigs for IMA_BLACKLIST_KEYRING + - scsi: target: core: Fix deadlock due to recursive locking + - ima: rework CONFIG_IMA dependency block + - NFSv4: Fix a nfs4_state_manager() race + - bpf, sockmap: Reject sk_msg egress redirects to non-TCP sockets + - modpost: add missing else to the "of" check + - net: fix possible store tearing in neigh_periodic_work() + - ipv4, ipv6: Fix handling of transhdrlen in __ip{,6}_append_data() + - ptp: ocp: Fix error handling in ptp_ocp_device_init + - net: dsa: mv88e6xxx: Avoid EEPROM timeout when EEPROM is absent + - net: usb: smsc75xx: Fix uninit-value access in __smsc75xx_read_reg + - net: nfc: llcp: Add lock when modifying device list + - net: ethernet: ti: am65-cpsw: Fix error code in + am65_cpsw_nuss_init_tx_chns() + - ibmveth: Remove condition to recompute TCP header checksum. + - netfilter: handle the connecting collision properly in + nf_conntrack_proto_sctp + - netfilter: nf_tables: nft_set_rbtree: fix spurious insertion failure + - ipv4: Set offload_failed flag in fibmatch results + - net: stmmac: dwmac-stm32: fix resume on STM32 MCU + - tipc: fix a potential deadlock on &tx->lock + - tcp: fix quick-ack counting to count actual ACKs of new data + - tcp: fix delayed ACKs for MSS boundary condition + - sctp: update transport state when processing a dupcook packet + - sctp: update hb timer immediately after users change hb_interval + - HID: sony: remove duplicate NULL check before calling usb_free_urb() + - HID: intel-ish-hid: ipc: Disable and reenable ACPI GPE bit + - dm zoned: free dmz->ddev array in dmz_put_zoned_devices + - RDMA/core: Require admin capabilities to set system parameters + - of: dynamic: Fix potential memory leak in of_changeset_action() + - IB/mlx4: Fix the size of a buffer in add_port_entries() + - gpio: aspeed: fix the GPIO number passed to pinctrl_gpio_set_config() + - gpio: pxa: disable pinctrl calls for MMP_GPIO + - RDMA/cma: Initialize ib_sa_multicast structure to 0 when join + - RDMA/cma: Fix truncation compilation warning in make_cma_ports + - RDMA/uverbs: Fix typo of sizeof argument + - RDMA/siw: Fix connection failure handling + - RDMA/mlx5: Fix NULL string error + - ksmbd: fix uaf in smb20_oplock_break_ack + - parisc: Restore __ldcw_align for PA-RISC 2.0 processors + - xen/events: replace evtchn_rwlock with RCU + - Linux 5.15.135 + + * CVE-2023-46813 + - x86/sev: Disable MMIO emulation from user mode + - x86/sev: Check IOBM for IOIO exceptions from user-space + - x86/sev: Check for user-space IOIO pointing to kernel space + + * CVE-2023-6111 + - netfilter: nf_tables: remove catchall element in GC sync path + + * Change in trace file leads to test timeout in ftrace tests on 5.15 ARM64 + (LP: #2029405) + - selftests/ftrace: Stop tracing while reading the trace file by default + + * Fix ADL: System enabled AHCI can't get into s0ix when attached ODD + (LP: #2037493) + - ata: ahci: Add Intel Alder Lake-P AHCI controller to low power chipsets list + + * Kernel doesn't compile with CONFIG_IMA (LP: #2041842) + - SAUCE: LSM: Fix typo in ima_filter_rule_match struct argument + + * CVE-2023-32252 + - ksmbd: add smb-direct shutdown + - ksmbd: Implements sess->ksmbd_chann_list as xarray + - ksmbd: fix racy issue from session setup and logoff + + * Jammy update: v5.15.134 upstream stable release (LP: #2044023) + - NFS: Use the correct commit info in nfs_join_page_group() + - NFS: More fixes for nfs_direct_write_reschedule_io() + - NFS/pNFS: Report EINVAL errors from connect() to the server + - SUNRPC: Mark the cred for revalidation if the server rejects it + - NFSv4.1: use EXCHGID4_FLAG_USE_PNFS_DS for DS server + - NFSv4.1: fix pnfs MDS=DS session trunking + - tracing: Make trace_marker{,_raw} stream-like + - tracing: Increase trace array ref count on enable and filter files + - ata: ahci: Drop pointless VPRINTK() calls and convert the remaining ones + - ata: libahci: clear pending interrupt status + - ext4: scope ret locally in ext4_try_to_trim_range() + - ext4: change s_last_trim_minblks type to unsigned long + - ext4: replace the traditional ternary conditional operator with with + max()/min() + - ext4: move setting of trimmed bit into ext4_try_to_trim_range() + - ext4: do not let fstrim block system suspend + - tracing: Have event inject files inc the trace array ref count + - netfilter: nft_set_rbtree: use read spinlock to avoid datapath contention + - netfilter: nft_set_pipapo: call nft_trans_gc_queue_sync() in catchall GC + - netfilter: nft_set_pipapo: stop GC iteration if GC transaction allocation + fails + - netfilter: nft_set_hash: try later when GC hits EAGAIN on iteration + - netfilter: nf_tables: fix memleak when more than 255 elements expired + - ASoC: meson: spdifin: start hw on dai probe + - netfilter: nf_tables: disallow element removal on anonymous sets + - bpf: Avoid deadlock when using queue and stack maps from NMI + - selftests: tls: swap the TX and RX sockets in some tests + - net/core: Fix ETH_P_1588 flow dissector + - ASoC: imx-audmix: Fix return error with devm_clk_get() + - iavf: do not process adminq tasks when __IAVF_IN_REMOVE_TASK is set + - i40e: Add VF VLAN pruning + - i40e: Fix VF VLAN offloading when port VLAN is configured + - ionic: fix 16bit math issue when PAGE_SIZE >= 64KB + - igc: Fix infinite initialization loop with early XDP redirect + - powerpc/perf/hv-24x7: Update domain value check + - dccp: fix dccp_v4_err()/dccp_v6_err() again + - platform/x86: intel_scu_ipc: Check status after timeout in busy_loop() + - platform/x86: intel_scu_ipc: Check status upon timeout in + ipc_wait_for_interrupt() + - platform/x86: intel_scu_ipc: Don't override scu in + intel_scu_ipc_dev_simple_command() + - platform/x86: intel_scu_ipc: Fail IPC send if still busy + - x86/srso: Fix srso_show_state() side effect + - x86/srso: Fix SBPB enablement for spec_rstack_overflow=off + - net: hns3: fix GRE checksum offload issue + - net: hns3: only enable unicast promisc when mac table full + - net: hns3: fix fail to delete tc flower rules during reset issue + - net: hns3: add 5ms delay before clear firmware reset irq source + - net: bridge: use DEV_STATS_INC() + - team: fix null-ptr-deref when team device type is changed + - net: rds: Fix possible NULL-pointer dereference + - netfilter: nf_tables: disable toggling dormant table state more than once + - locking/seqlock: Do the lockdep annotation before locking in + do_write_seqcount_begin_nested() + - net: ena: Flush XDP packets on error. + - bnxt_en: Flush XDP for bnxt_poll_nitroa0()'s NAPI + - igc: Expose tx-usecs coalesce setting to user + - Fix up backport of 136191703038 ("interconnect: Teach lockdep about + icc_bw_lock order") + - gpio: tb10x: Fix an error handling path in tb10x_gpio_probe() + - i2c: mux: demux-pinctrl: check the return value of devm_kstrdup() + - i2c: mux: gpio: Replace custom acpi_get_local_address() + - i2c: mux: gpio: Add missing fwnode_handle_put() + - xfs: bound maximum wait time for inodegc work + - xfs: introduce xfs_inodegc_push() + - xfs: explicitly specify cpu when forcing inodegc delayed work to run + immediately + - xfs: check that per-cpu inodegc workers actually run on that cpu + - xfs: disable reaping in fscounters scrub + - xfs: fix xfs_inodegc_stop racing with mod_delayed_work + - Input: i8042 - rename i8042-x86ia64io.h to i8042-acpipnpio.h + - Input: i8042 - add quirk for TUXEDO Gemini 17 Gen1/Clevo PD70PN + - netfilter: exthdr: add support for tcp option removal + - netfilter: nft_exthdr: Fix non-linear header modification + - ata: libata: Rename link flag ATA_LFLAG_NO_DB_DELAY + - ata: ahci: Add support for AMD A85 FCH (Hudson D4) + - ata: ahci: Rename board_ahci_mobile + - ata: ahci: Add Elkhart Lake AHCI controller + - scsi: qla2xxx: Select qpair depending on which CPU post_cmd() gets called + - scsi: qla2xxx: Use raw_smp_processor_id() instead of smp_processor_id() + - btrfs: reset destination buffer when read_extent_buffer() gets invalid range + - MIPS: Alchemy: only build mmc support helpers if au1xmmc is enabled + - drm/bridge: ti-sn65dsi83: Do not generate HFP/HBP/HSA and EOT packet + - bus: ti-sysc: Use fsleep() instead of usleep_range() in sysc_reset() + - bus: ti-sysc: Fix missing AM35xx SoC matching + - clk: tegra: fix error return case for recalc_rate + - treewide: Replace GPLv2 boilerplate/reference with SPDX - gpl-2.0_56.RULE + (part 1) + - ARM: dts: omap: correct indentation + - ARM: dts: ti: omap: Fix bandgap thermal cells addressing for omap3/4 + - ARM: dts: ti: omap: motorola-mapphone: Fix abe_clkctrl warning on boot + - bus: ti-sysc: Fix SYSC_QUIRK_SWSUP_SIDLE_ACT handling for uart wake-up + - power: supply: ucs1002: fix error code in ucs1002_get_property() + - firmware: imx-dsp: Fix an error handling path in imx_dsp_setup_channels() + - xtensa: add default definition for XCHAL_HAVE_DIV32 + - xtensa: iss/network: make functions static + - xtensa: boot: don't add include-dirs + - xtensa: boot/lib: fix function prototypes + - soc: imx8m: Enable OCOTP clock for imx8mm before reading registers + - gpio: pmic-eic-sprd: Add can_sleep flag for PMIC EIC chip + - i2c: npcm7xx: Fix callback completion ordering + - dma-debug: don't call __dma_entry_alloc_check_leak() under free_entries_lock + - spi: sun6i: reduce DMA RX transfer width to single byte + - spi: sun6i: fix race between DMA RX transfer completion and RX FIFO drain + - parisc: sba: Fix compile warning wrt list of SBA devices + - parisc: iosapic.c: Fix sparse warnings + - parisc: drivers: Fix sparse warning + - parisc: irq: Make irq_stack_union static to avoid sparse warning + - scsi: qedf: Add synchronization between I/O completions and abort + - scsi: ufs: core: Move __ufshcd_send_uic_cmd() outside host_lock + - selftests/ftrace: Correctly enable event in instance-event.tc + - ring-buffer: Avoid softlockup in ring_buffer_resize() + - btrfs: improve error message after failure to add delayed dir index item + - selftests: fix dependency checker script + - ring-buffer: Do not attempt to read past "commit" + - platform/mellanox: mlxbf-bootctl: add NET dependency into Kconfig + - drm/amd/display: Don't check registers, if using AUX BL control + - drm/amdgpu: Handle null atom context in VBIOS info ioctl + - scsi: pm80xx: Use phy-specific SAS address when sending PHY_START command + - scsi: pm80xx: Avoid leaking tags when processing + OPC_INB_SET_CONTROLLER_CONFIG command + - smb3: correct places where ENOTSUPP is used instead of preferred EOPNOTSUPP + - ata: libata-eh: do not clear ATA_PFLAG_EH_PENDING in ata_eh_reset() + - spi: nxp-fspi: reset the FLSHxCR1 registers + - spi: stm32: add a delay before SPI disable + - ASoC: fsl: imx-pcm-rpmsg: Add SNDRV_PCM_INFO_BATCH flag + - bpf: Clarify error expectations from bpf_clone_redirect + - ASoC: imx-rpmsg: Set ignore_pmdown_time for dai_link + - media: vb2: frame_vector.c: replace WARN_ONCE with a comment + - powerpc/watchpoints: Disable preemption in thread_change_pc() + - powerpc/watchpoint: Disable pagefaults when getting user instruction + - powerpc/watchpoints: Annotate atomic context in more places + - ncsi: Propagate carrier gain/loss events to the NCSI controller + - fbdev/sh7760fb: Depend on FB=y + - perf build: Define YYNOMEM as YYNOABORT for bison < 3.81 + - sched/cpuacct: Optimize away RCU read lock + - cgroup: Fix suspicious rcu_dereference_check() usage warning + - nvme-pci: factor the iod mempool creation into a helper + - nvme-pci: factor out a nvme_pci_alloc_dev helper + - nvme-pci: do not set the NUMA node of device if it has none + - watchdog: iTCO_wdt: No need to stop the timer in probe + - watchdog: iTCO_wdt: Set NO_REBOOT if the watchdog is not already running + - i40e: fix potential NULL pointer dereferencing of pf->vf + i40e_sync_vsi_filters() + - scsi: qla2xxx: Fix NULL pointer dereference in target mode + - nvme-pci: always return an ERR_PTR from nvme_pci_alloc_dev + - smack: Record transmuting in smk_transmuted + - smack: Retrieve transmuting information in smack_inode_getsecurity() + - Smack:- Use overlay inode label in smack_inode_copy_up() + - iommu/arm-smmu-v3: Fix soft lockup triggered by arm_smmu_mm_invalidate_range + - x86/srso: Add SRSO mitigation for Hygon processors + - Revert "tty: n_gsm: fix UAF in gsm_cleanup_mux" + - serial: 8250_port: Check IRQ data before use + - nilfs2: fix potential use after free in nilfs_gccache_submit_read_data() + - ALSA: hda: Disable power save for solving pop issue on Lenovo ThinkCentre + M70q + - ata: libata-scsi: ignore reserved bits for REPORT SUPPORTED OPERATION CODES + - i2c: i801: unregister tco_pdev in i801_probe() error path + - sched/rt: Fix live lock between select_fallback_rq() and RT push + - io_uring/fs: remove sqe->rw_flags checking from LINKAT + - Revert "SUNRPC dont update timeout value on connection reset" + - proc: nommu: /proc//maps: release mmap read lock + - ring-buffer: Update "shortest_full" in polling + - btrfs: properly report 0 avail for very full file systems + - bpf: Fix BTF_ID symbol generation collision + - bpf: Fix BTF_ID symbol generation collision in tools/ + - net: thunderbolt: Fix TCPv6 GSO checksum calculation + - ata: libata-core: Fix ata_port_request_pm() locking + - ata: libata-core: Fix port and device removal + - ata: libata-core: Do not register PM operations for SAS ports + - ata: libata-sata: increase PMP SRST timeout to 10s + - fs: binfmt_elf_efpic: fix personality for ELF-FDPIC + - drm/meson: fix memory leak on ->hpd_notify callback + - Linux 5.15.134 + + * Jammy update: v5.15.133 upstream stable release (LP: #2043422) + - autofs: fix memory leak of waitqueues in autofs_catatonic_mode + - btrfs: output extra debug info if we failed to find an inline backref + - locks: fix KASAN: use-after-free in trace_event_raw_event_filelock_lock + - ACPICA: Add AML_NO_OPERAND_RESOLVE flag to Timer + - kernel/fork: beware of __put_task_struct() calling context + - rcuscale: Move rcu_scale_writer() schedule_timeout_uninterruptible() to + _idle() + - scftorture: Forgive memory-allocation failure if KASAN + - ACPI: video: Add backlight=native DMI quirk for Lenovo Ideapad Z470 + - perf/smmuv3: Enable HiSilicon Erratum 162001900 quirk for HIP08/09 + - perf/imx_ddr: speed up overflow frequency of cycle + - hw_breakpoint: fix single-stepping when using bpf_overflow_handler + - ACPI: x86: s2idle: Catch multiple ACPI_TYPE_PACKAGE objects + - devlink: remove reload failed checks in params get/set callbacks + - crypto: lrw,xts - Replace strlcpy with strscpy + - wifi: ath9k: fix fortify warnings + - wifi: ath9k: fix printk specifier + - wifi: mwifiex: fix fortify warning + - wifi: wil6210: fix fortify warnings + - crypto: lib/mpi - avoid null pointer deref in mpi_cmp_ui() + - tpm_tis: Resend command to recover from data transfer errors + - mmc: sdhci-esdhc-imx: improve ESDHC_FLAG_ERR010450 + - alx: fix OOB-read compiler warning + - wifi: mac80211: check S1G action frame size + - netfilter: ebtables: fix fortify warnings in size_entry_mwt() + - wifi: mac80211_hwsim: drop short frames + - drm/bridge: tc358762: Instruct DSI host to generate HSE packets + - arm64: dts: qcom: sm6125-pdx201: correct ramoops pmsg-size + - arm64: dts: qcom: sm8150-kumano: correct ramoops pmsg-size + - arm64: dts: qcom: sm8250-edo: correct ramoops pmsg-size + - samples/hw_breakpoint: Fix kernel BUG 'invalid opcode: 0000' + - ALSA: hda: intel-dsp-cfg: add LunarLake support + - drm/amd/display: Blocking invalid 420 modes on HDMI TMDS for DCN31 + - drm/exynos: fix a possible null-pointer dereference due to data race in + exynos_drm_crtc_atomic_disable() + - bus: ti-sysc: Configure uart quirks for k3 SoC + - md: raid1: fix potential OOB in raid1_remove_disk() + - ext2: fix datatype of block number in ext2_xattr_set2() + - fs/jfs: prevent double-free in dbUnmount() after failed jfs_remount() + - jfs: fix invalid free of JFS_IP(ipimap)->i_imap in diUnmount + - ARM: 9317/1: kexec: Make smp stop calls asynchronous + - powerpc/pseries: fix possible memory leak in ibmebus_bus_init() + - PCI: fu740: Set the number of MSI vectors + - media: dvb-usb-v2: af9035: Fix null-ptr-deref in af9035_i2c_master_xfer + - media: dw2102: Fix null-ptr-deref in dw2102_i2c_transfer() + - media: af9005: Fix null-ptr-deref in af9005_i2c_xfer + - media: anysee: fix null-ptr-deref in anysee_master_xfer + - media: az6007: Fix null-ptr-deref in az6007_i2c_xfer() + - media: dvb-usb-v2: gl861: Fix null-ptr-deref in gl861_i2c_master_xfer + - media: tuners: qt1010: replace BUG_ON with a regular error + - media: pci: cx23885: replace BUG with error return + - usb: cdns3: Put the cdns set active part outside the spin lock + - usb: gadget: fsl_qe_udc: validate endpoint index for ch9 udc + - tools: iio: iio_generic_buffer: Fix some integer type and calculation + - scsi: target: iscsi: Fix buffer overflow in lio_target_nacl_info_show() + - serial: cpm_uart: Avoid suspicious locking + - usb: ehci: add workaround for chipidea PORTSC.PEC bug + - media: pci: ipu3-cio2: Initialise timing struct to avoid a compiler warning + - kobject: Add sanity check for kset->kobj.ktype in kset_register() + - interconnect: Fix locking for runpm vs reclaim + - printk: Consolidate console deferred printing + - jbd2: refactor wait logic for transaction updates into a common function + - jbd2: fix use-after-free of transaction_t race + - jbd2: kill t_handle_lock transaction spinlock + - jbd2: rename jbd_debug() to jbd2_debug() + - jbd2: correct the end of the journal recovery scan range + - mtd: rawnand: brcmnand: Allow SoC to provide I/O operations + - mtd: rawnand: brcmnand: Fix ECC level field setting for v7.2 controller + - MIPS: Use "grep -E" instead of "egrep" + - perf test: Remove bash construct from stat_bpf_counters.sh test + - perf test shell stat_bpf_counters: Fix test on Intel + - btrfs: move btrfs_pinned_by_swapfile prototype into volumes.h + - btrfs: add a helper to read the superblock metadata_uuid + - btrfs: compare the correct fsid/metadata_uuid in btrfs_validate_super + - drm: gm12u320: Fix the timeout usage for usb_bulk_msg() + - scsi: qla2xxx: Fix NULL vs IS_ERR() bug for debugfs_create_dir() + - selftests: tracing: Fix to unmount tracefs for recovering environment + - scsi: lpfc: Fix the NULL vs IS_ERR() bug for debugfs_create_file() + - x86/boot/compressed: Reserve more memory for page tables + - x86/purgatory: Remove LTO flags + - samples/hw_breakpoint: fix building without module unloading + - md/raid1: fix error: ISO C90 forbids mixed declarations + - attr: block mode changes of symlinks + - ovl: fix failed copyup of fileattr on a symlink + - ovl: fix incorrect fdput() on aio completion + - btrfs: fix lockdep splat and potential deadlock after failure running + delayed items + - btrfs: release path before inode lookup during the ino lookup ioctl + - tracing: Have tracing_max_latency inc the trace array ref count + - tracing: Have current_trace inc the trace array ref count + - tracing: Have option files inc the trace array ref count + - nfsd: fix change_info in NFSv4 RENAME replies + - tracefs: Add missing lockdown check to tracefs_create_dir() + - i2c: aspeed: Reset the i2c controller when timeout occurs + - ata: libata: disallow dev-initiated LPM transitions to unsupported states + - scsi: megaraid_sas: Fix deadlock on firmware crashdump + - scsi: pm8001: Setup IRQs on resume + - ext4: fix rec_len verify error + - drm/amd/display: fix the white screen issue when >= 64GB DRAM + - drm/amdgpu: fix amdgpu_cs_p1_user_fence + - drm/amd/display: enable cursor degamma for DCN3+ DRM legacy gamma + - interconnect: Teach lockdep about icc_bw_lock order + - Linux 5.15.133 + + * Jammy update: v5.15.132 upstream stable release (LP: #2041702) + - ARM: dts: imx: update sdma node name format + - ARM: dts: imx7s: Drop dma-apb interrupt-names + - ARM: dts: imx: Adjust dma-apbh node name + - ARM: dts: imx: Set default tuning step for imx7d usdhc + - phy: qcom-snps-femto-v2: use qcom_snps_hsphy_suspend/resume error code + - media: pulse8-cec: handle possible ping error + - media: pci: cx23885: fix error handling for cx23885 ATSC boards + - 9p: virtio: make sure 'offs' is initialized in zc_request + - ksmbd: fix out of bounds in smb3_decrypt_req() + - ksmbd: no response from compound read + - ASoC: da7219: Flush pending AAD IRQ when suspending + - ASoC: da7219: Check for failure reading AAD IRQ events + - ethernet: atheros: fix return value check in atl1c_tso_csum() + - vxlan: generalize vxlan_parse_gpe_hdr and remove unused args + - m68k: Fix invalid .section syntax + - s390/dasd: use correct number of retries for ERP requests + - s390/dasd: fix hanging device after request requeue + - fs/nls: make load_nls() take a const parameter + - ASoC: rt5682-sdw: fix for JD event handling in ClockStop Mode0 + - ASoc: codecs: ES8316: Fix DMIC config + - ASoC: rt711: fix for JD event handling in ClockStop Mode0 + - ASoC: rt711-sdca: fix for JD event handling in ClockStop Mode0 + - ASoC: atmel: Fix the 8K sample parameter in I2SC master + - platform/x86: intel: hid: Always call BTNL ACPI method + - platform/x86/intel/hid: Add HP Dragonfly G2 to VGBS DMI quirks + - platform/x86: huawei-wmi: Silence ambient light sensor + - drm/amd/display: Exit idle optimizations before attempt to access PHY + - ovl: Always reevaluate the file signature for IMA + - ata: pata_arasan_cf: Use dev_err_probe() instead dev_err() in data_xfer() + - security: keys: perform capable check only on privileged operations + - kprobes: Prohibit probing on CFI preamble symbol + - clk: fixed-mmio: make COMMON_CLK_FIXED_MMIO depend on HAS_IOMEM + - vmbus_testing: fix wrong python syntax for integer value comparison + - net: usb: qmi_wwan: add Quectel EM05GV2 + - wifi: brcmfmac: Fix field-spanning write in brcmf_scan_params_v2_to_v1() + - idmaengine: make FSL_EDMA and INTEL_IDMA64 depends on HAS_IOMEM + - scsi: lpfc: Remove reftag check in DIF paths + - scsi: qedi: Fix potential deadlock on &qedi_percpu->p_work_lock + - net: hns3: restore user pause configure when disable autoneg + - drm/amdgpu: Match against exact bootloader status + - netlabel: fix shift wrapping bug in netlbl_catmap_setlong() + - bnx2x: fix page fault following EEH recovery + - sctp: handle invalid error codes without calling BUG() + - scsi: storvsc: Always set no_report_opcodes + - scsi: lpfc: Fix incorrect big endian type assignment in bsg loopback path + - ALSA: seq: oss: Fix racy open/close of MIDI devices + - tracing: Introduce pipe_cpumask to avoid race on trace_pipes + - platform/mellanox: Fix mlxbf-tmfifo not handling all virtio CONSOLE + notifications + - arm64: lib: Import latest version of Arm Optimized Routines' strncmp + - of: kexec: Mark ima_{free,stable}_kexec_buffer() as __init + - udf: Check consistency of Space Bitmap Descriptor + - udf: Handle error when adding extent to a file + - Revert "net: macsec: preserve ingress frame ordering" + - reiserfs: Check the return value from __getblk() + - eventfd: prevent underflow for eventfd semaphores + - fs: Fix error checking for d_hash_and_lookup() + - tmpfs: verify {g,u}id mount options correctly + - selftests/harness: Actually report SKIP for signal tests + - ARM: ptrace: Restore syscall restart tracing + - ARM: ptrace: Restore syscall skipping for tracers + - refscale: Fix uninitalized use of wait_queue_head_t + - OPP: Fix passing 0 to PTR_ERR in _opp_attach_genpd() + - selftests/resctrl: Make resctrl_tests run using kselftest framework + - selftests/resctrl: Add resctrl.h into build deps + - selftests/resctrl: Don't leak buffer in fill_cache() + - selftests/resctrl: Unmount resctrl FS if child fails to run benchmark + - selftests/resctrl: Close perf value read fd on errors + - x86/decompressor: Don't rely on upper 32 bits of GPRs being preserved + - perf/imx_ddr: don't enable counter0 if none of 4 counters are used + - selftests/futex: Order calls to futex_lock_pi + - s390/pkey: fix/harmonize internal keyblob headers + - s390/paes: fix PKEY_TYPE_EP11_AES handling for secure keyblobs + - ACPI: x86: s2idle: Post-increment variables when getting constraints + - ACPI: x86: s2idle: Fix a logic error parsing AMD constraints table + - x86/efistub: Fix PCI ROM preservation in mixed mode + - cpufreq: powernow-k8: Use related_cpus instead of cpus in driver.exit() + - bpftool: Use a local bpf_perf_event_value to fix accessing its fields + - bpf: Clear the probe_addr for uprobe + - tcp: tcp_enter_quickack_mode() should be static + - hwrng: nomadik - keep clock enabled while hwrng is registered + - hwrng: pic32 - use devm_clk_get_enabled + - regmap: rbtree: Use alloc_flags for memory allocations + - udp: re-score reuseport groups when connected sockets are present + - bpf: reject unhashed sockets in bpf_sk_assign + - ipv6: Add reasons for skb drops to __udp6_lib_rcv + - wifi: mt76: testmode: add nla_policy for MT76_TM_ATTR_TX_LENGTH + - spi: tegra20-sflash: fix to check return value of platform_get_irq() in + tegra_sflash_probe() + - can: gs_usb: gs_usb_receive_bulk_callback(): count RX overflow errors also + in case of OOM + - wifi: mt76: mt7915: fix power-limits while chan_switch + - wifi: mwifiex: Fix OOB and integer underflow when rx packets + - wifi: mwifiex: fix error recovery in PCIE buffer descriptor management + - crypto: stm32 - Properly handle pm_runtime_get failing + - crypto: api - Use work queue in crypto_destroy_instance + - Bluetooth: nokia: fix value check in nokia_bluetooth_serdev_probe() + - Bluetooth: Fix potential use-after-free when clear keys + - net: tcp: fix unexcepted socket die when snd_wnd is 0 + - selftests/bpf: Clean up fmod_ret in bench_rename test script + - net-memcg: Fix scope of sockmem pressure indicators + - ice: ice_aq_check_events: fix off-by-one check when filling buffer + - crypto: caam - fix unchecked return value error + - hwrng: iproc-rng200 - Implement suspend and resume calls + - lwt: Fix return values of BPF xmit ops + - lwt: Check LWTUNNEL_XMIT_CONTINUE strictly + - fs: ocfs2: namei: check return value of ocfs2_add_entry() + - wifi: mwifiex: fix memory leak in mwifiex_histogram_read() + - wifi: mwifiex: Fix missed return in oob checks failed path + - samples/bpf: fix broken map lookup probe + - wifi: ath9k: fix races between ath9k_wmi_cmd and ath9k_wmi_ctrl_rx + - wifi: ath9k: protect WMI command response buffer replacement with a lock + - wifi: nl80211/cfg80211: add forgotten nla_policy for BSS color attribute + - wifi: mwifiex: avoid possible NULL skb pointer dereference + - Bluetooth: btusb: Do not call kfree_skb() under spin_lock_irqsave() + - wifi: ath9k: use IS_ERR() with debugfs_create_dir() + - net: arcnet: Do not call kfree_skb() under local_irq_disable() + - mlxsw: i2c: Fix chunk size setting in output mailbox buffer + - mlxsw: i2c: Limit single transaction buffer size + - hwmon: (tmp513) Fix the channel number in tmp51x_is_visible() + - netrom: Deny concurrent connect(). + - drm/bridge: tc358764: Fix debug print parameter order + - quota: factor out dquot_write_dquot() + - quota: rename dquot_active() to inode_quota_active() + - quota: add new helper dquot_active() + - quota: fix dqput() to follow the guarantees dquot_srcu should provide + - ASoC: stac9766: fix build errors with REGMAP_AC97 + - soc: qcom: ocmem: Add OCMEM hardware version print + - soc: qcom: ocmem: Fix NUM_PORTS & NUM_MACROS macros + - arm64: dts: qcom: sm8250: correct dynamic power coefficients + - arm64: dts: qcom: sm8250-edo: Add gpio line names for TLMM + - arm64: dts: qcom: sm8250-edo: Add GPIO line names for PMIC GPIOs + - arm64: dts: qcom: sm8250-edo: Rectify gpio-keys + - arm64: dts: qcom: msm8996: Add missing interrupt to the USB2 controller + - arm64: dts: qcom: sm8350: Add missing LMH interrupts to cpufreq + - arm64: dts: qcom: sm8350: Use proper CPU compatibles + - arm64: dts: qcom: pmk8350: fix ADC-TM compatible string + - arm64: dts: qcom: sm8250: Mark PCIe hosts as DMA coherent + - drm/amdgpu: avoid integer overflow warning in amdgpu_device_resize_fb_bar() + - ARM: dts: BCM53573: Add cells sizes to PCIe node + - ARM: dts: BCM53573: Use updated "spi-gpio" binding properties + - arm64: dts: qcom: sm8250-sony-xperia: correct GPIO keys wakeup again + - arm64: dts: qcom: pmi8998: Add node for WLED + - arm64: dts: qcom: correct SPMI WLED register range encoding + - arm64: dts: qcom: pm660l: Add missing short interrupt + - arm64: dts: qcom: pmi8994: Remove hardcoded linear WLED enabled-strings + - arm64: dts: qcom: Move WLED num-strings from pmi8994 to sony-xperia-tone + - arm64: dts: qcom: pmi8994: Add missing OVP interrupt + - drm/etnaviv: fix dumping of active MMU context + - x86/mm: Fix PAT bit missing from page protection modify mask + - ARM: dts: s3c64xx: align pinctrl with dtschema + - ARM: dts: samsung: s3c6410-mini6410: correct ethernet reg addresses (split) + - ARM: dts: s5pv210: add dummy 5V regulator for backlight on SMDKv210 + - ARM: dts: samsung: s5pv210-smdkv210: correct ethernet reg addresses (split) + - drm: adv7511: Fix low refresh rate register for ADV7533/5 + - ARM: dts: BCM53573: Fix Ethernet info for Luxul devices + - arm64: dts: qcom: sdm845: Add missing RPMh power domain to GCC + - arm64: dts: qcom: sdm845: Fix the min frequency of "ice_core_clk" + - drm/amdgpu: Update min() to min_t() in 'amdgpu_info_ioctl' + - md/raid10: factor out dereference_rdev_and_rrdev() + - md/raid10: use dereference_rdev_and_rrdev() to get devices + - md/bitmap: don't set max_write_behind if there is no write mostly device + - md/md-bitmap: hold 'reconfig_mutex' in backlog_store() + - drm/msm: Update dev core dump to not print backwards + - drm/tegra: dpaux: Fix incorrect return value of platform_get_irq + - of: unittest: fix null pointer dereferencing in + of_unittest_find_node_by_name() + - arm64: dts: qcom: sm8150: Fix the I2C7 interrupt + - drm/armada: Fix off-by-one error in armada_overlay_get_property() + - drm/panel: simple: Add missing connector type and pixel format for AUO + T215HVN01 + - ima: Remove deprecated IMA_TRUSTED_KEYRING Kconfig + - [Config] updateconfigs for IMA_TRUSTED_KEYRING + - drm: xlnx: zynqmp_dpsub: Add missing check for dma_set_mask + - drm/msm/mdp5: Don't leak some plane state + - firmware: meson_sm: fix to avoid potential NULL pointer dereference + - smackfs: Prevent underflow in smk_set_cipso() + - drm/amd/pm: fix variable dereferenced issue in amdgpu_device_attr_create() + - drm/msm/a2xx: Call adreno_gpu_init() earlier + - audit: fix possible soft lockup in __audit_inode_child() + - io_uring: fix drain stalls by invalid SQE + - bus: ti-sysc: Fix build warning for 64-bit build + - drm/mediatek: Remove freeing not dynamic allocated memory + - drm/mediatek: Fix potential memory leak if vmap() fail + - arm64: dts: qcom: apq8016-sbc: Fix ov5640 regulator supply names + - bus: ti-sysc: Fix cast to enum warning + - md: Set MD_BROKEN for RAID1 and RAID10 + - md: add error_handlers for raid0 and linear + - md/raid0: Factor out helper for mapping and submitting a bio + - md/raid0: Fix performance regression for large sequential writes + - md: raid0: account for split bio in iostat accounting + - of: overlay: Call of_changeset_init() early + - of: unittest: Fix overlay type in apply/revert check + - ALSA: ac97: Fix possible error value of *rac97 + - ipmi:ssif: Add check for kstrdup + - ipmi:ssif: Fix a memory leak when scanning for an adapter + - drivers: clk: keystone: Fix parameter judgment in _of_pll_clk_init() + - clk: sunxi-ng: Modify mismatched function name + - clk: qcom: gcc-sc7180: Fix up gcc_sdcc2_apps_clk_src + - EDAC/igen6: Fix the issue of no error events + - ext4: correct grp validation in ext4_mb_good_group + - ext4: avoid potential data overflow in next_linear_group + - clk: qcom: gcc-sm8250: Fix gcc_sdcc2_apps_clk_src + - clk: qcom: reset: Use the correct type of sleep/delay based on length + - clk: qcom: gcc-sm6350: Fix gcc_sdcc2_apps_clk_src + - PCI: microchip: Correct the DED and SEC interrupt bit offsets + - PCI: Mark NVIDIA T4 GPUs to avoid bus reset + - pinctrl: mcp23s08: check return value of devm_kasprintf() + - PCI: pciehp: Use RMW accessors for changing LNKCTL + - PCI/ASPM: Use RMW accessors for changing LNKCTL + - clk: imx8mp: fix sai4 clock + - clk: imx: composite-8m: fix clock pauses when set_rate would be a no-op + - powerpc/radix: Move some functions into #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE + - vfio/type1: fix cap_migration information leak + - powerpc/fadump: reset dump area size if fadump memory reserve fails + - powerpc/perf: Convert fsl_emb notifier to state machine callbacks + - drm/amdgpu: Use RMW accessors for changing LNKCTL + - drm/radeon: Use RMW accessors for changing LNKCTL + - net/mlx5: Use RMW accessors for changing LNKCTL + - wifi: ath11k: Use RMW accessors for changing LNKCTL + - wifi: ath10k: Use RMW accessors for changing LNKCTL + - PCI: dwc: Add start_link/stop_link inlines + - PCI: layerscape: Add the endpoint linkup notifier support + - PCI: layerscape: Add workaround for lost link capabilities during reset + - powerpc: Don't include lppaca.h in paca.h + - powerpc/pseries: Rework lppaca_shared_proc() to avoid DEBUG_PREEMPT + - nfs/blocklayout: Use the passed in gfp flags + - powerpc/iommu: Fix notifiers being shared by PCI and VIO buses + - ext4: fix unttached inode after power cut with orphan file feature enabled + - jfs: validate max amount of blocks before allocation. + - fs: lockd: avoid possible wrong NULL parameter + - NFSD: da_addr_body field missing in some GETDEVICEINFO replies + - NFS: Guard against READDIR loop when entry names exceed MAXNAMELEN + - NFSv4.2: fix handling of COPY ERR_OFFLOAD_NO_REQ + - pNFS: Fix assignment of xprtdata.cred + - RDMA/qedr: Remove a duplicate assignment in irdma_query_ah() + - media: ad5820: Drop unsupported ad5823 from i2c_ and of_device_id tables + - media: i2c: tvp5150: check return value of devm_kasprintf() + - media: v4l2-core: Fix a potential resource leak in v4l2_fwnode_parse_link() + - iommu/amd/iommu_v2: Fix pasid_state refcount dec hit 0 warning on pasid + unbind + - iommu: rockchip: Fix directory table address encoding + - drivers: usb: smsusb: fix error handling code in smsusb_init_device + - media: dib7000p: Fix potential division by zero + - media: dvb-usb: m920x: Fix a potential memory leak in m920x_i2c_xfer() + - media: cx24120: Add retval check for cx24120_message_send() + - scsi: hisi_sas: Modify v3 HW SSP underflow error processing + - scsi: hisi_sas: Modify v3 HW SATA completion error processing + - scsi: hisi_sas: Fix warnings detected by sparse + - scsi: hisi_sas: Fix normally completed I/O analysed as failed + - media: rkvdec: increase max supported height for H.264 + - media: mediatek: vcodec: Return NULL if no vdec_fb is found + - usb: phy: mxs: fix getting wrong state with mxs_phy_is_otg_host() + - scsi: RDMA/srp: Fix residual handling + - scsi: iscsi: Rename iscsi_set_param() to iscsi_if_set_param() + - scsi: iscsi: Add length check for nlattr payload + - scsi: iscsi: Add strlen() check in iscsi_if_set{_host}_param() + - scsi: be2iscsi: Add length check when parsing nlattrs + - scsi: qla4xxx: Add length check when parsing nlattrs + - serial: sprd: Assign sprd_port after initialized to avoid wrong access + - serial: sprd: Fix DMA buffer leak issue + - x86/APM: drop the duplicate APM_MINOR_DEV macro + - scsi: qedf: Do not touch __user pointer in + qedf_dbg_stop_io_on_error_cmd_read() directly + - scsi: qedf: Do not touch __user pointer in qedf_dbg_debug_cmd_read() + directly + - scsi: qedf: Do not touch __user pointer in qedf_dbg_fp_int_cmd_read() + directly + - RDMA/irdma: Replace one-element array with flexible-array member + - coresight: tmc: Explicit type conversions to prevent integer overflow + - dma-buf/sync_file: Fix docs syntax + - driver core: test_async: fix an error code + - iommu/sprd: Add missing force_aperture + - RDMA/hns: Fix port active speed + - RDMA/hns: Fix incorrect post-send with direct wqe of wr-list + - RDMA/hns: Fix CQ and QP cache affinity + - IB/uverbs: Fix an potential error pointer dereference + - fsi: aspeed: Reset master errors after CFAM reset + - iommu/qcom: Disable and reset context bank before programming + - iommu/vt-d: Fix to flush cache of PASID directory table + - platform/x86: dell-sysman: Fix reference leak + - media: go7007: Remove redundant if statement + - media: venus: hfi_venus: Only consider sys_idle_indicator on V1 + - USB: gadget: f_mass_storage: Fix unused variable warning + - media: ov5640: Enable MIPI interface in ov5640_set_power_mipi() + - media: i2c: ov2680: Set V4L2_CTRL_FLAG_MODIFY_LAYOUT on flips + - media: ov2680: Remove auto-gain and auto-exposure controls + - media: ov2680: Fix ov2680_bayer_order() + - media: ov2680: Fix vflip / hflip set functions + - media: ov2680: Remove VIDEO_V4L2_SUBDEV_API ifdef-s + - media: ov2680: Don't take the lock for try_fmt calls + - media: ov2680: Add ov2680_fill_format() helper function + - media: ov2680: Fix ov2680_set_fmt() which == V4L2_SUBDEV_FORMAT_TRY not + working + - media: ov2680: Fix regulators being left enabled on ov2680_power_on() errors + - media: i2c: rdacm21: Fix uninitialized value + - cgroup:namespace: Remove unused cgroup_namespaces_init() + - scsi: core: Use 32-bit hostnum in scsi_host_lookup() + - scsi: fcoe: Fix potential deadlock on &fip->ctlr_lock + - serial: tegra: handle clk prepare error in tegra_uart_hw_init() + - amba: bus: fix refcount leak + - Revert "IB/isert: Fix incorrect release of isert connection" + - HID: logitech-dj: Fix error handling in logi_dj_recv_switch_to_dj_mode() + - HID: multitouch: Correct devm device reference for hidinput input_dev name + - x86/speculation: Mark all Skylake CPUs as vulnerable to GDS + - tracing: Remove extra space at the end of hwlat_detector/mode + - tracing: Fix race issue between cpu buffer write and swap + - mtd: rawnand: brcmnand: Fix mtd oobsize + - phy/rockchip: inno-hdmi: use correct vco_div_5 macro on rk3328 + - phy/rockchip: inno-hdmi: round fractal pixclock in rk3328 recalc_rate + - phy/rockchip: inno-hdmi: do not power on rk3328 post pll on reg write + - rpmsg: glink: Add check for kstrdup + - leds: pwm: Fix error code in led_pwm_create_fwnode() + - leds: multicolor: Use rounded division when calculating color components + - leds: trigger: tty: Do not use LED_ON/OFF constants, use + led_blink_set_oneshot instead + - mtd: spi-nor: Check bus width while setting QE bit + - mtd: rawnand: fsmc: handle clk prepare error in fsmc_nand_resume() + - um: Fix hostaudio build errors + - dmaengine: ste_dma40: Add missing IRQ check in d40_probe + - cpufreq: Fix the race condition while updating the transition_task of policy + - virtio_ring: fix avail_wrap_counter in virtqueue_add_packed + - skbuff: skb_segment, Call zero copy functions before using skbuff frags + - PM / devfreq: Fix leak in devfreq_dev_release() + - ALSA: pcm: Fix missing fixup call in compat hw_refine ioctl + - rcu: dump vmalloc memory info safely + - printk: ringbuffer: Fix truncating buffer size min_t cast + - scsi: core: Fix the scsi_set_resid() documentation + - mm/vmalloc: add a safer version of find_vm_area() for debug + - media: i2c: ccs: Check rules is non-NULL + - PCI: rockchip: Use 64-bit mask on MSI 64-bit PCI address + - ipmi_si: fix a memleak in try_smi_init() + - ARM: OMAP2+: Fix -Warray-bounds warning in _pwrdm_state_switch() + - backlight/gpio_backlight: Compare against struct fb_info.device + - backlight/bd6107: Compare against struct fb_info.device + - backlight/lv5207lp: Compare against struct fb_info.device + - xtensa: PMU: fix base address for the newer hardware + - i3c: master: svc: fix probe failure when no i3c device exist + - arm64: csum: Fix OoB access in IP checksum code for negative lengths + - media: dvb: symbol fixup for dvb_attach() + - media: venus: hfi_venus: Write to VIDC_CTRL_INIT after unmasking interrupts + - Revert "scsi: qla2xxx: Fix buffer overrun" + - scsi: mpt3sas: Perform additional retries if doorbell read returns 0 + - ntb: Drop packets when qp link is down + - ntb: Clean up tx tail index on link down + - ntb: Fix calculation ntb_transport_tx_free_entry() + - Revert "PCI: Mark NVIDIA T4 GPUs to avoid bus reset" + - procfs: block chmod on /proc/thread-self/comm + - parisc: Fix /proc/cpuinfo output for lscpu + - dlm: fix plock lookup when using multiple lockspaces + - dccp: Fix out of bounds access in DCCP error handler + - X.509: if signature is unsupported skip validation + - net: handle ARPHRD_PPP in dev_is_mac_header_xmit() + - fsverity: skip PKCS#7 parser when keyring is empty + - mmc: renesas_sdhi: register irqs before registering controller + - pstore/ram: Check start of empty przs during init + - arm64: sdei: abort running SDEI handlers during crash + - s390/ipl: add missing secure/has_secure file to ipl type 'unknown' + - crypto: stm32 - fix loop iterating through scatterlist for DMA + - cpufreq: brcmstb-avs-cpufreq: Fix -Warray-bounds bug + - usb: typec: tcpm: set initial svdm version based on pd revision + - usb: typec: bus: verify partner exists in typec_altmode_attention + - x86/sgx: Break up long non-preemptible delays in sgx_vepc_release() + - perf/x86/uncore: Correct the number of CHAs on EMR + - tracing: Zero the pipe cpumask on alloc to avoid spurious -EBUSY + - md/md-bitmap: remove unnecessary local variable in backlog_store() + - udf: initialize newblock to 0 + - net/ipv6: SKB symmetric hash should incorporate transport ports + - io_uring: always lock in io_apoll_task_func + - io_uring: break out of iowq iopoll on teardown + - io_uring: break iopolling on signal + - scsi: qla2xxx: Adjust IOCB resource on qpair create + - scsi: qla2xxx: Limit TMF to 8 per function + - scsi: qla2xxx: Fix deletion race condition + - scsi: qla2xxx: fix inconsistent TMF timeout + - scsi: qla2xxx: Fix command flush during TMF + - scsi: qla2xxx: Fix erroneous link up failure + - scsi: qla2xxx: Turn off noisy message log + - scsi: qla2xxx: Fix session hang in gnl + - scsi: qla2xxx: Fix TMF leak through + - scsi: qla2xxx: Remove unsupported ql2xenabledif option + - scsi: qla2xxx: Flush mailbox commands on chip reset + - scsi: qla2xxx: Fix smatch warn for qla_init_iocb_limit() + - scsi: qla2xxx: Error code did not return to upper layer + - scsi: qla2xxx: Fix firmware resource tracking + - fbdev/ep93xx-fb: Do not assign to struct fb_info.dev + - clk: qcom: camcc-sc7180: fix async resume during probe + - drm/ast: Fix DRAM init on AST2200 + - clk: qcom: turingcc-qcs404: fix missing resume during probe + - lib/test_meminit: allocate pages up to order MAX_ORDER + - parisc: led: Fix LAN receive and transmit LEDs + - parisc: led: Reduce CPU overhead for disk & lan LED computation + - pinctrl: cherryview: fix address_space_handler() argument + - dt-bindings: clock: xlnx,versal-clk: drop select:false + - clk: qcom: gcc-mdm9615: use proper parent for pll0_vote clock + - soc: qcom: qmi_encdec: Restrict string length in decode + - clk: qcom: q6sstop-qcs404: fix missing resume during probe + - clk: qcom: mss-sc7180: fix missing resume during probe + - NFS: Fix a potential data corruption + - NFSv4/pnfs: minor fix for cleanup path in nfs4_get_device_info + - bus: mhi: host: Skip MHI reset if device is in RDDM + - kbuild: do not run depmod for 'make modules_sign' + - gfs2: Switch to wait_event in gfs2_logd + - gfs2: low-memory forced flush fixes + - kconfig: fix possible buffer overflow + - perf trace: Use zfree() to reduce chances of use after free + - perf trace: Really free the evsel->priv area + - pwm: atmel-tcb: Convert to platform remove callback returning void + - pwm: atmel-tcb: Harmonize resource allocation order + - pwm: atmel-tcb: Fix resource freeing in error path and remove + - backlight: gpio_backlight: Drop output GPIO direction check for initial + power state + - Input: tca6416-keypad - always expect proper IRQ number in i2c client + - Input: tca6416-keypad - fix interrupt enable disbalance + - perf annotate bpf: Don't enclose non-debug code with an assert() + - x86/virt: Drop unnecessary check on extended CPUID level in cpu_has_svm() + - perf vendor events: Update the JSON/events descriptions for power10 platform + - perf vendor events: Drop some of the JSON/events for power10 platform + - perf top: Don't pass an ERR_PTR() directly to perf_session__delete() + - watchdog: intel-mid_wdt: add MODULE_ALIAS() to allow auto-load + - pwm: lpc32xx: Remove handling of PWM channels + - net/sched: fq_pie: avoid stalls in fq_pie_timer() + - sctp: annotate data-races around sk->sk_wmem_queued + - ipv4: annotate data-races around fi->fib_dead + - net: read sk->sk_family once in sk_mc_loop() + - net: fib: avoid warn splat in flow dissector + - xsk: Fix xsk_diag use-after-free error during socket cleanup + - drm/i915/gvt: Drop unused helper intel_vgpu_reset_gtt() + - ipv4: ignore dst hint for multipath routes + - igb: disable virtualization features on 82580 + - veth: Fixing transmit return status for dropped packets + - net: ipv6/addrconf: avoid integer underflow in ipv6_create_tempaddr + - net: phy: micrel: Correct bit assignments for phy_device flags + - af_unix: Fix data-races around user->unix_inflight. + - af_unix: Fix data-race around unix_tot_inflight. + - af_unix: Fix data-races around sk->sk_shutdown. + - af_unix: Fix data race around sk->sk_err. + - kcm: Destroy mutex in kcm_exit_net() + - octeontx2-af: Fix truncation of smq in CN10K NIX AQ enqueue mbox handler + - igc: Change IGC_MIN to allow set rx/tx value between 64 and 80 + - igbvf: Change IGBVF_MIN to allow set rx/tx value between 64 and 80 + - igb: Change IGB_MIN to allow set rx/tx value between 64 and 80 + - s390/zcrypt: don't leak memory if dev_set_name() fails + - idr: fix param name in idr_alloc_cyclic() doc + - ip_tunnels: use DEV_STATS_INC() + - net: dsa: sja1105: fix bandwidth discrepancy between tc-cbs software and + offload + - net: dsa: sja1105: fix -ENOSPC when replacing the same tc-cbs too many times + - net: dsa: sja1105: complete tc-cbs offload support on SJA1110 + - net: hns3: fix byte order conversion issue in hclge_dbg_fd_tcam_read() + - net: hns3: fix debugfs concurrency issue between kfree buffer and read + - net: hns3: fix invalid mutex between tc qdisc and dcb ets command issue + - net: hns3: fix the port information display when sfp is absent + - net: hns3: remove GSO partial feature bit + - sh: boards: Fix CEU buffer size passed to dma_declare_coherent_memory() + - net/mlx5: Free IRQ rmap and notifier on kernel shutdown + - ARC: atomics: Add compiler barrier to atomic operations... + - dmaengine: sh: rz-dmac: Fix destination and source data size setting + - jbd2: fix checkpoint cleanup performance regression + - jbd2: check 'jh->b_transaction' before removing it from checkpoint + - ext4: add correct group descriptors and reserved GDT blocks to system zone + - lib: test_scanf: Add explicit type cast to result initialization in + test_number_prefix() + - ata: pata_falcon: fix IO base selection for Q40 + - ata: sata_gemini: Add missing MODULE_DESCRIPTION + - ata: pata_ftide010: Add missing MODULE_DESCRIPTION + - fuse: nlookup missing decrement in fuse_direntplus_link + - btrfs: free qgroup rsv on io failure + - btrfs: don't start transaction when joining with TRANS_JOIN_NOSTART + - btrfs: use the correct superblock to compare fsid in btrfs_validate_super + - mtd: rawnand: brcmnand: Fix crash during the panic_write + - mtd: rawnand: brcmnand: Fix potential out-of-bounds access in oob write + - mtd: rawnand: brcmnand: Fix potential false time out warning + - drm/amd/display: prevent potential division by zero errors + - MIPS: Fix CONFIG_CPU_DADDI_WORKAROUNDS `modules_install' regression + - perf hists browser: Fix hierarchy mode header + - perf tools: Handle old data in PERF_RECORD_ATTR + - perf hists browser: Fix the number of entries for 'e' key + - pcd: move the identify buffer into pcd_identify + - pcd: cleanup initialization + - block: move GENHD_FL_NATIVE_CAPACITY to disk->state + - block: move GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE to disk->event_flags + - block: rename GENHD_FL_NO_PART_SCAN to GENHD_FL_NO_PART + - block: don't add or resize partition on the disk with GENHD_FL_NO_PART + - ARM: dts: samsung: exynos4210-i9100: Fix LCD screen's physical size + - ARM: dts: BCM5301X: Extend RAM to full 256MB for Linksys EA6500 V2 + - net: ipv4: fix one memleak in __inet_del_ifa() + - kselftest/runner.sh: Propagate SIGTERM to runner child + - net/smc: use smc_lgr_list.lock to protect smc_lgr_list.list iterate in + smcr_port_add + - net: ethernet: mvpp2_main: fix possible OOB write in + mvpp2_ethtool_get_rxnfc() + - net: ethernet: mtk_eth_soc: fix possible NULL pointer dereference in + mtk_hwlro_get_fdir_all() + - hsr: Fix uninit-value access in fill_frame_info() + - net: dsa: sja1105: hide all multicast addresses from "bridge fdb show" + - r8152: check budget for r8152_poll() + - kcm: Fix memory leak in error path of kcm_sendmsg() + - platform/mellanox: mlxbf-tmfifo: Drop the Rx packet if no more descriptors + - platform/mellanox: mlxbf-tmfifo: Drop jumbo frames + - platform/mellanox: mlxbf-pmc: Fix potential buffer overflows + - platform/mellanox: mlxbf-pmc: Fix reading of unprogrammed events + - ipv6: fix ip6_sock_set_addr_preferences() typo + - ixgbe: fix timestamp configuration code + - kcm: Fix error handling for SOCK_DGRAM in kcm_sendmsg(). + - MIPS: Only fiddle with CHECKFLAGS if `need-compiler' + - drm/amd/display: Fix a bug when searching for insert_above_mpcc + - pcd: fix error codes in pcd_init_unit() + - Linux 5.15.132 + + * CVE-2023-6176 + - net/tls: do not free tls_rec on async operation in bpf_exec_tx_verdict() + + * CVE-2023-6039 + - timers: Use del_timer_sync() even on UP + - timers: Update kernel-doc for various functions + - timers: Rename del_timer_sync() to timer_delete_sync() + - timers: Rename del_timer() to timer_delete() + - timers: Split [try_to_]del_timer[_sync]() to prepare for shutdown mode + - timers: Add shutdown mechanism to the internal functions + - timers: Provide timer_shutdown[_sync]() + - clocksource/drivers/arm_arch_timer: Do not use timer namespace for + timer_shutdown() function + - clocksource/drivers/sp804: Do not use timer namespace for timer_shutdown() + function + - ARM: spear: Do not use timer namespace for timer_shutdown() function + - net: usb: lan78xx: reorder cleanup operations to avoid UAF bugs + + -- Roxana Nicolescu Fri, 05 Jan 2024 15:11:36 +0100 + linux (5.15.0-91.101) jammy; urgency=medium * jammy/linux: 5.15.0-91.101 -proposed tracker (LP: #2043452) diff --git a/debian.master/config/annotations b/debian.master/config/annotations index 4b0c175d9e019..f27bbeca498b7 100644 --- a/debian.master/config/annotations +++ b/debian.master/config/annotations @@ -261,15 +261,9 @@ CONFIG_IMA note<'LP:1643652'> CONFIG_IMA_APPRAISE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> CONFIG_IMA_APPRAISE note<'LP:1643652'> -CONFIG_IMA_APPRAISE_SIGNED_INIT policy<{'ppc64el': 'n'}> -CONFIG_IMA_APPRAISE_SIGNED_INIT note<'LP:1667490'> - CONFIG_IMA_ARCH_POLICY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'y', 's390x': 'n'}> CONFIG_IMA_ARCH_POLICY note<'LP:1866909'> -CONFIG_IMA_BLACKLIST_KEYRING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> -CONFIG_IMA_BLACKLIST_KEYRING note<'LP:1667490'> - CONFIG_IMA_DEFAULT_HASH_SHA256 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'y', 's390x': 'n'}> CONFIG_IMA_DEFAULT_HASH_SHA256 note<'LP:1643652'> @@ -279,24 +273,15 @@ CONFIG_IMA_KEXEC note<'LP:1643652'> CONFIG_IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY note<'LP:1667490'> -CONFIG_IMA_LOAD_X509 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'y', 's390x': 'n'}> -CONFIG_IMA_LOAD_X509 note<'LP:1643652'> - CONFIG_IMA_READ_POLICY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'y', 's390x': 'n'}> CONFIG_IMA_READ_POLICY note<'LP:1866909'> CONFIG_IMA_SIG_TEMPLATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'y', 's390x': 'n'}> CONFIG_IMA_SIG_TEMPLATE note<'LP:1643652'> -CONFIG_IMA_TRUSTED_KEYRING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> -CONFIG_IMA_TRUSTED_KEYRING note<'LP:1643652'> - CONFIG_IMA_WRITE_POLICY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_IMA_WRITE_POLICY note<'LP:1667490'> -CONFIG_IMA_X509_PATH policy<{'ppc64el': '"/etc/keys/x509_ima.der"'}> -CONFIG_IMA_X509_PATH note<'LP:1643652'> - CONFIG_INPUT_UINPUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> CONFIG_INPUT_UINPUT note<'LP:584812'> @@ -2336,6 +2321,7 @@ CONFIG_CAN_EMS_USB policy<{'amd64': 'm', 'arm64': ' CONFIG_CAN_ESD_USB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_CAN_ETAS_ES58X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_CAN_F81601 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_CAN_F81604 policy<{'amd64': 'm', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> CONFIG_CAN_FLEXCAN policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_CAN_GRCAN policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_CAN_GS_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> @@ -4968,6 +4954,7 @@ CONFIG_GPIO_LOGICVC policy<{'arm64': 'm', 'armhf': ' CONFIG_GPIO_LP3943 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_GPIO_LP873X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_GPIO_LP87565 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_M058SSAN policy<{'amd64': 'm'}> CONFIG_GPIO_MADERA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_GPIO_MAX3191X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_GPIO_MAX7300 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> @@ -5804,11 +5791,13 @@ CONFIG_ILLEGAL_POINTER_VALUE policy<{'amd64': '0xdead00000000 CONFIG_IMA_APPRAISE_BOOTPARAM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> CONFIG_IMA_APPRAISE_BUILD_POLICY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_IMA_APPRAISE_MODSIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_IMA_BLACKLIST_KEYRING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_IMA_DEFAULT_HASH policy<{'amd64': '"sha1"', 'arm64': '"sha1"', 'armhf': '"sha1"', 'ppc64el': '"sha256"', 's390x': '"sha1"'}> CONFIG_IMA_DEFAULT_HASH_SHA1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'n', 's390x': 'y'}> CONFIG_IMA_DEFAULT_HASH_SHA512 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_IMA_DEFAULT_TEMPLATE policy<{'amd64': '"ima-ng"', 'arm64': '"ima-ng"', 'armhf': '"ima-ng"', 'ppc64el': '"ima-sig"', 's390x': '"ima-ng"'}> CONFIG_IMA_DISABLE_HTABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_IMA_LOAD_X509 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_IMA_LSM_RULES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> CONFIG_IMA_MEASURE_ASYMMETRIC_KEYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> CONFIG_IMA_MEASURE_PCR_IDX policy<{'amd64': '10', 'arm64': '10', 'armhf': '10', 'ppc64el': '10', 's390x': '10'}> @@ -10273,6 +10262,7 @@ CONFIG_RTC_DRV_PCF2127 policy<{'amd64': 'm', 'arm64': ' CONFIG_RTC_DRV_PCF50633 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_RTC_DRV_PCF85063 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_RTC_DRV_PCF8523 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic': 'y', 'armhf-generic-lpae': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_PCF85263 policy<{'amd64': 'm'}> CONFIG_RTC_DRV_PCF85363 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_RTC_DRV_PCF8563 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_RTC_DRV_PCF8583 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> diff --git a/debian.master/reconstruct b/debian.master/reconstruct index 152c714a20a4d..9dbbbefee6c55 100644 --- a/debian.master/reconstruct +++ b/debian.master/reconstruct @@ -1,4 +1,59 @@ # Recreate any symlinks created since the orig. +chmod +x 'arch/s390/tools/gcc-thunk-extern.sh' +chmod +x 'debian/cloud-tools/hv_get_dhcp_info' +chmod +x 'debian/cloud-tools/hv_get_dns_info' +chmod +x 'debian/cloud-tools/hv_set_ifconfig' +chmod +x 'debian/rules' +chmod +x 'debian/scripts/abi-check' +chmod +x 'debian/scripts/config-check' +chmod +x 'debian/scripts/control-create' +chmod +x 'debian/scripts/dkms-build' +chmod +x 'debian/scripts/dkms-build--nvidia-N' +chmod +x 'debian/scripts/dkms-build-configure--zfs' +chmod +x 'debian/scripts/file-downloader' +chmod +x 'debian/scripts/link-headers' +chmod +x 'debian/scripts/misc/annotations' +chmod +x 'debian/scripts/misc/arch-has-odm-enabled.sh' +chmod +x 'debian/scripts/misc/final-checks' +chmod +x 'debian/scripts/misc/find-missing-sauce.sh' +chmod +x 'debian/scripts/misc/fips-checks' +chmod +x 'debian/scripts/misc/fw-to-ihex.sh' +chmod +x 'debian/scripts/misc/gen-auto-reconstruct' +chmod +x 'debian/scripts/misc/getabis' +chmod +x 'debian/scripts/misc/git-ubuntu-log' +chmod +x 'debian/scripts/misc/insert-changes' +chmod +x 'debian/scripts/misc/insert-mainline-changes' +chmod +x 'debian/scripts/misc/insert-ubuntu-changes' +chmod +x 'debian/scripts/misc/kernelconfig' +chmod +x 'debian/scripts/misc/migrate-annotations' +chmod +x 'debian/scripts/misc/retag' +chmod +x 'debian/scripts/misc/splitconfig.pl' +chmod +x 'debian/scripts/misc/tristate.sh' +chmod +x 'debian/scripts/misc/update-aufs.sh' +chmod +x 'debian/scripts/module-check' +chmod +x 'debian/scripts/module-inclusion' +chmod +x 'debian/scripts/module-signature-check' +chmod +x 'debian/scripts/retpoline-check' +chmod +x 'debian/scripts/retpoline-extract' +chmod +x 'debian/scripts/retpoline-extract-one' +chmod +x 'debian/scripts/sign-module' +chmod +x 'debian/templates/extra.postinst.in' +chmod +x 'debian/templates/extra.postrm.in' +chmod +x 'debian/templates/headers.postinst.in' +chmod +x 'debian/templates/image.postinst.in' +chmod +x 'debian/templates/image.postrm.in' +chmod +x 'debian/templates/image.preinst.in' +chmod +x 'debian/templates/image.prerm.in' +chmod +x 'debian/tests-build/check-aliases' +chmod +x 'debian/tests/rebuild' +chmod +x 'debian/tests/ubuntu-regression-suite' +chmod +x 'drivers/watchdog/f71808e_wdt.c' +chmod +x 'scripts/pahole-flags.sh' +chmod +x 'scripts/pahole-version.sh' +chmod +x 'tools/testing/selftests/net/fib_nexthop_nongw.sh' +chmod +x 'tools/testing/selftests/netfilter/conntrack_vrf.sh' +chmod +x 'update-dkms-versions' +chmod +x 'update-version-dkms' # Remove any files deleted from the orig. rm -f 'Documentation/devicetree/bindings/ata/ahci-ceva.txt' rm -f 'Documentation/devicetree/bindings/phy/amlogic,meson-g12a-usb2-phy.yaml' @@ -43,6 +98,7 @@ rm -f 'drivers/gpu/drm/msm/hdmi/hdmi_connector.c' rm -f 'drivers/gpu/drm/vmwgfx/vmwgfx_thp.c' rm -f 'drivers/iio/adc/stx104.c' rm -f 'drivers/infiniband/hw/irdma/status.h' +rm -f 'drivers/input/serio/i8042-x86ia64io.h' rm -f 'drivers/net/vxlan.c' rm -f 'drivers/of/of_net.c' rm -f 'drivers/pinctrl/ralink/pinctrl-rt2880.c' @@ -99,63 +155,6 @@ rm -f 'net/xfrm/xfrm_interface.c' 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/pmu-events/arch/powerpc/power10/floating_point.json' rm -f 'tools/perf/util/bpf_skel/bperf.h' -chmod +x 'arch/s390/tools/gcc-thunk-extern.sh' -chmod +x 'debian/cloud-tools/hv_get_dhcp_info' -chmod +x 'debian/cloud-tools/hv_get_dns_info' -chmod +x 'debian/cloud-tools/hv_set_ifconfig' -chmod +x 'debian/rules' -chmod +x 'debian/scripts/abi-check' -chmod +x 'debian/scripts/config-check' -chmod +x 'debian/scripts/control-create' -chmod +x 'debian/scripts/dkms-build' -chmod +x 'debian/scripts/dkms-build--nvidia-N' -chmod +x 'debian/scripts/dkms-build-configure--zfs' -chmod +x 'debian/scripts/file-downloader' -chmod +x 'debian/scripts/helpers/close' -chmod +x 'debian/scripts/helpers/open' -chmod +x 'debian/scripts/helpers/rebase' -chmod +x 'debian/scripts/link-headers' -chmod +x 'debian/scripts/misc/annotations' -chmod +x 'debian/scripts/misc/arch-has-odm-enabled.sh' -chmod +x 'debian/scripts/misc/final-checks' -chmod +x 'debian/scripts/misc/find-missing-sauce.sh' -chmod +x 'debian/scripts/misc/fips-checks' -chmod +x 'debian/scripts/misc/fw-to-ihex.sh' -chmod +x 'debian/scripts/misc/gen-auto-reconstruct' -chmod +x 'debian/scripts/misc/getabis' -chmod +x 'debian/scripts/misc/git-ubuntu-log' -chmod +x 'debian/scripts/misc/insert-changes' -chmod +x 'debian/scripts/misc/insert-mainline-changes' -chmod +x 'debian/scripts/misc/insert-ubuntu-changes' -chmod +x 'debian/scripts/misc/kernelconfig' -chmod +x 'debian/scripts/misc/migrate-annotations' -chmod +x 'debian/scripts/misc/retag' -chmod +x 'debian/scripts/misc/splitconfig.pl' -chmod +x 'debian/scripts/misc/tristate.sh' -chmod +x 'debian/scripts/misc/update-aufs.sh' -chmod +x 'debian/scripts/module-check' -chmod +x 'debian/scripts/module-inclusion' -chmod +x 'debian/scripts/module-signature-check' -chmod +x 'debian/scripts/retpoline-check' -chmod +x 'debian/scripts/retpoline-extract' -chmod +x 'debian/scripts/retpoline-extract-one' -chmod +x 'debian/scripts/sign-module' -chmod +x 'debian/templates/extra.postinst.in' -chmod +x 'debian/templates/extra.postrm.in' -chmod +x 'debian/templates/headers.postinst.in' -chmod +x 'debian/templates/image.postinst.in' -chmod +x 'debian/templates/image.postrm.in' -chmod +x 'debian/templates/image.preinst.in' -chmod +x 'debian/templates/image.prerm.in' -chmod +x 'debian/tests-build/check-aliases' -chmod +x 'debian/tests/rebuild' -chmod +x 'debian/tests/ubuntu-regression-suite' -chmod +x 'drivers/watchdog/f71808e_wdt.c' -chmod +x 'scripts/pahole-flags.sh' -chmod +x 'scripts/pahole-version.sh' -chmod +x 'tools/testing/selftests/net/fib_nexthop_nongw.sh' -chmod +x 'tools/testing/selftests/netfilter/conntrack_vrf.sh' -chmod +x 'update-dkms-versions' -chmod +x 'update-version-dkms' exit 0 diff --git a/debian.master/tracking-bug b/debian.master/tracking-bug index 3bd15f62315d2..3f31e22206042 100644 --- a/debian.master/tracking-bug +++ b/debian.master/tracking-bug @@ -1 +1 @@ -2043452 2023.10.30-3 +2056026 s2024.02.05-1 diff --git a/debian.master/upstream-stable b/debian.master/upstream-stable index 566e2f5e40563..22187de59307b 100644 --- a/debian.master/upstream-stable +++ b/debian.master/upstream-stable @@ -1,3 +1,3 @@ # The following upstream stable releases have been ported: [upstream-stable] - linux-5.15.y = v5.15.131 + linux-5.15.y = v5.15.143 diff --git a/debian/debian.env b/debian/debian.env index be31a0c270197..86da044db1dba 100644 --- a/debian/debian.env +++ b/debian/debian.env @@ -1 +1 @@ -DEBIAN=debian.master +DEBIAN=debian.azure-5.15 diff --git a/debian/dkms-versions b/debian/dkms-versions index 8fb237a065ceb..cd8196e7f9a66 100644 --- a/debian/dkms-versions +++ b/debian/dkms-versions @@ -1,3 +1 @@ -zfs-linux 2.1.5-1ubuntu6~22.04.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.3 modulename=iwlwifi debpath=pool/universe/b/%package%/backport-iwlwifi-dkms_%version%_all.deb arch=amd64 rprovides=iwlwifi-modules rprovides=backport-iwlwifi-dkms type=standalone -v4l2loopback 0.12.7-2ubuntu2~22.04.1 modulename=v4l2loopback debpath=pool/universe/v/%package%/v4l2loopback-dkms_%version%_all.deb arch=amd64 rprovides=v4l2loopback-modules rprovides=v4l2loopback-dkms +zfs-linux 2.1.5-1ubuntu6~22.04.3 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 diff --git a/debian/rules.d/2-binary-arch.mk b/debian/rules.d/2-binary-arch.mk index 13d80c2a505f4..227e6bee6e315 100644 --- a/debian/rules.d/2-binary-arch.mk +++ b/debian/rules.d/2-binary-arch.mk @@ -20,7 +20,7 @@ shlibdeps_opts = $(if $(CROSS_COMPILE),-- -l$(CROSS_COMPILE:%-=/usr/%)/lib) debian/scripts/fix-filenames: debian/scripts/fix-filenames.c $(CC) -o $@ $^ -$(stampdir)/stamp-prepare-%: config-prepare-check-% +$(stampdir)/stamp-prepare-%: $(stampdir)/stamp-prepare-tree-% @echo Debug: $@ @touch $@ $(stampdir)/stamp-prepare-tree-%: target_flavour = $* @@ -731,13 +731,11 @@ ifeq ($(do_tools_acpidbg),true) cd $(builddirpa)/tools/power/acpi && make clean && make CFLAGS="-g -O2 -static -I$(builddirpa)/include" CROSS_COMPILE=$(CROSS_COMPILE) acpidbg endif ifeq ($(do_tools_cpupower),true) - # Allow for multiple installed versions of cpupower and libcpupower.so: - # Override LIB_MIN in order to to generate a versioned .so named - # libcpupower.so.$(abi_release) and link cpupower with that. make -C $(builddirpa)/tools/power/cpupower \ CROSS_COMPILE=$(CROSS_COMPILE) \ CROSS=$(CROSS_COMPILE) \ - LIB_MIN=$(abi_release) CPUFREQ_BENCH=false + STATIC=true \ + CPUFREQ_BENCH=false endif ifeq ($(do_tools_perf),true) cd $(builddirpa) && $(kmake) $(defconfig) @@ -786,10 +784,6 @@ endif ifeq ($(do_tools_cpupower),true) install -m755 $(builddirpa)/tools/power/cpupower/cpupower \ $(toolspkgdir)/usr/lib/$(src_pkg_name)-tools-$(abi_release) - # Install only the full versioned libcpupower.so.$(abi_release), not - # the usual symlinks to it. - install -m644 $(builddirpa)/tools/power/cpupower/libcpupower.so.$(abi_release) \ - $(toolspkgdir)/usr/lib/ endif ifeq ($(do_tools_perf),true) install -m755 $(builddirpa)/tools/perf/perf $(toolspkgdir)/usr/lib/$(src_pkg_name)-tools-$(abi_release) diff --git a/debian/rules.d/4-checks.mk b/debian/rules.d/4-checks.mk index 1671dba31f6bd..d52599fcea4d6 100644 --- a/debian/rules.d/4-checks.mk +++ b/debian/rules.d/4-checks.mk @@ -23,7 +23,7 @@ retpoline-check-%: $(stampdir)/stamp-install-% $(SHELL) $(DROOT)/scripts/retpoline-check "$*" \ "$(prev_abidir)" "$(abidir)" "$(skipretpoline)" "$(builddir)/build-$*" -checks-%: module-check-% module-signature-check-% abi-check-% retpoline-check-% +checks-%: abi-check-% retpoline-check-% @echo Debug: $@ # Check the config against the known options list. diff --git a/debian/scripts/helpers/close b/debian/scripts/helpers/close deleted file mode 100755 index f699cec41022d..0000000000000 --- a/debian/scripts/helpers/close +++ /dev/null @@ -1,195 +0,0 @@ -#!/bin/bash -eu -export LC_ALL=C.UTF-8 - -usage() { - cat << EOF -Usage: ${P:-$(basename "$0")} [-h|--help] [-d|--dry-run] [-c|--include-config] [-s|--skip-master] [-b BASE_VERSION] - -Prepare the closing release commit. Include all the changelog entries -in the current release, including the changes from the base -kernel. Also close the changelog entry and check for config changes. - -Optional arguments: - -d, --dry-run Perform a trial run with no changes made - printing the commands instead. - -c, --include-config Include config changes in the closing commit. - -s, --skip-master Skip master kernel changelog entries (used when - bootstraping new kernels). - -b BASE_VERSION For derivatives and backports, force the changelog - entries to have the base version as provided (used - when changing the base derivative version of a - backport). - -h, --help Show this help message and exit. - -Examples: - Simply close a release: - \$ cranky close - - Also include any config changes to the closing commit: - \$ cranky close -c - -EOF -} - -dry_run=0 -commit_configs=0 -skip_master_entries=0 -base_version= -while [ "$#" -gt 0 ]; do - case "$1" in - -h|--help) - usage - exit 0 - ;; - -d|--dry-run) - dry_run=1 - ;; - -c|--include-config) - commit_configs=1 - ;; - -s|--skip-master) - skip_master_entries=1 - ;; - -b) - shift - base_version="$1" - ;; - *) - usage - exit 1 - ;; - esac - shift -done - -hl() { echo -e "\e[1m$*\e[0m"; } - -run() { - # Quote args for echo or eval - local quoted=() - for token; do - quoted+=( "$(printf '%q' "$token")" ) - done - # Run - if [ "$dry_run" -eq 1 ]; then - hl "DRY RUN: ${quoted[*]}" - else - hl "${quoted[*]}" - "$@" - echo - fi -} - -# Trick shellcheck so it doesn't complain every time it's necessary to -# use `run $CHROOT`. Use `chroot_run` instead. -shopt -s expand_aliases -alias chroot_run='run ${CHROOT:-}' - -DEBIAN= -# shellcheck disable=SC1091 -. debian/debian.env - -# Check if the "$DEBIAN" directory exists. -if [ ! -d "$DEBIAN" ]; then - echo "You must run this script from the top directory of this repository." - exit 1 -fi - -CONF="$DEBIAN/etc/update.conf" -if [ -f "$CONF" ]; then - # shellcheck disable=SC1090 - . "$CONF" -fi - -# Check if changelog is open -series=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SDistribution) -if [ "$series" != 'UNRELEASED' ]; then - echo "The last entry of the changelog is already released." - exit 1 -fi - -# Update configs -if [ -d "$DEBIAN/config" ]; then - chroot_run fakeroot debian/rules clean updateconfigs - changes=$(git diff HEAD -- "./$DEBIAN/config/") - if [ "$commit_configs" -eq 0 ] && [ -n "$changes" ]; then - echo "Config has changed! please, review it and commit." - exit 1 - fi -fi - -# For normal trees the fact that the update.conf file exists means that they are rebase -# kernels. There are some special trees which started with uc20-efi, which have that -# file because they logically depend on another source but do not have the directory -# which DEBIAN_MASTER points to. -# Skip inserting parent source entries if this is not a rebase tree. -if [ ! -f "$DEBIAN/etc/update.conf" ]; then - skip_master_entries=1 -elif [ "$DEBIAN_MASTER" != "" -a ! -d "$DEBIAN_MASTER" ]; then - skip_master_entries=1 -fi -if [ $skip_master_entries == 0 ]; then - if [ "$DEBIAN_MASTER" = "" ]; then - echo "DEBIAN_MASTER should be defined either in $DEBIAN/etc/update.conf or the environment" - exit 1 - fi - - if [ -z "${base_version}" ]; then - offset=0 - # If not provided as an option, loop through each entry of the current changelog, - # searching for an entry that refers to the master version used as base - # (ie a line containing "[ Ubuntu: 4.15.0-39.42 ]"): - while true; do - changes=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SChanges -c1 -o"$offset") - if ! [ "$changes" ]; then - echo "Failed to retrieve base master version from changelog file: $DEBIAN/changelog" - exit 1 - fi - base_version=$(echo "$changes" | sed -n -r -e '/^\s.*\[ Ubuntu: ([~0-9.-]*) \]$/{s//\1/p;q}') - [ "$base_version" ] && break - offset=$(( offset + 1 )) - done - fi - - master_version=$(dpkg-parsechangelog -l${DEBIAN_MASTER}/changelog -SVersion) - if ! [ "$master_version" ]; then - echo "Failed to retrieve current master version from changelog: $DEBIAN/changelog" - exit 1 - fi - run ./debian/scripts/misc/insert-ubuntu-changes "$DEBIAN/changelog" "$base_version" "$master_version" \ - "$DEBIAN_MASTER/changelog" -fi - -# Insert local changes -run fakeroot debian/rules insertchanges - -# This should be the last step. If there were no changes to the -# changelog, there is nothing to release, so nothing to commit. -changes=$(git diff HEAD) -if [ -z "$changes" ] && [ "$dry_run" -eq 0 ]; then - hl "No changes to commit." - exit 1 -fi - -# Find the current series from previous changelog entries: -series='' -offset=0 -while true; do - series=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SDistribution -c1 -o"$offset") - if [ "$series" ] && [ "$series" != 'UNRELEASED' ]; then - break - fi - offset=$(( offset + 1 )) -done -if ! [ "$series" ]; then - echo "Failed to retrieve the package series from changelog: $DEBIAN/changelog" - exit 1 -fi -# Close the changelog -run dch --nomultimaint -c "$DEBIAN/changelog" -r -D "$series" '' - -# Commit changes -package=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SSource) -prefix="Ubuntu$(echo "$package" | sed -r -e 's/linux(-?)/\1/')-" -version=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SVersion) -run git commit -sam "UBUNTU: $prefix$version" diff --git a/debian/scripts/helpers/open b/debian/scripts/helpers/open deleted file mode 100755 index 797d778d29d1b..0000000000000 --- a/debian/scripts/helpers/open +++ /dev/null @@ -1,234 +0,0 @@ -#!/bin/bash -eu -export LC_ALL=C.UTF-8 - -out() -{ - local rc=${?} - - trap - EXIT INT TERM HUP - [ "${rc}" -eq 0 ] || echo "Error: Script failed" >&2 - - exit "${rc}" -} - -hl() { - echo -e "\e[1m$*\e[0m" -} - -run() { - # Quote args for echo or eval - local quoted=() - for token; do - quoted+=("$(printf '%q' "$token")") - done - # Run - if [ "$dry_run" -eq 1 ]; then - hl "DRY RUN: ${quoted[*]}" - else - hl "${quoted[*]}" - "$@" - echo - fi -} - -usage() { - cat << EOF -Usage: ${P:-$(basename "$0")} [-h|--help] [-d|--dry-run] [-r|--reuse-abi] - -Create a "start new release" commit. The new commit will contain ABI -changes and any customization required by backport kernels. - -Optional arguments: - -d, --dry-run Perform a trial run with no changes made - printing the commands instead. - -r, --reuse-abi Do not download the previous release ABI files - for the new release and just rename the - current ABI directory. This might cause the - build to fail if the module list or the - retpoline information has changed. - -h, --help Show this help message and exit. - -Environment variable: - CRANKY_MAILENFORCE Regular expression used to validate \$DEBEMAIL. If not - set, it defaults to "@canonical.com$". - -Examples: - Simply start a new release (that will fetch the ABI files from the - archieve repositories): - \$ cranky open - - Start a new release re-using the ABI files already present in the - tree: - \$ cranky open --reuse-abi - -EOF -} - -dry_run=0 -reuse_abi=0 -while [ "$#" -gt 0 ]; do - case "$1" in - -h|--help) - usage - exit 0 - ;; - -d|--dry-run) - dry_run=1 - ;; - -r|--reuse-abi) - reuse_abi=1 - ;; - *) - usage - exit 1 - ;; - esac - shift -done - -trap out EXIT INT TERM HUP - -# Trick shellcheck so it doesn't complain every time it's necessary to -# use `run $CHROOT`. Use `chroot_run` instead. -shopt -s expand_aliases -alias chroot_run='run ${CHROOT:-}' - -# Check DEBEMAIL (used to create the new changelog stanza): -DEBEMAIL="${DEBEMAIL:-}" -CRANKY_MAILENFORCE="${CRANKY_MAILENFORCE:-@canonical.com\$}" -if [ -z "$DEBEMAIL" ] || ! echo "$DEBEMAIL" | grep -qE "$CRANKY_MAILENFORCE"; then - echo "DEBEMAIL is unset, or does not contain \"$CRANKY_MAILENFORCE\": $DEBEMAIL" >&2 - exit 1 -fi - -# Requires a git repo -if [ ! -e .git ]; then - echo "Not a git repository!" >&2 - exit 1 -fi - -# Check the debian directory -if [ ! -e debian/debian.env ]; then - echo "Cannot find debian/debian.env!" >&2 - exit 1 -fi -DEBIAN= -# shellcheck disable=SC1091 -. debian/debian.env -if [ -z "$DEBIAN" ] || [ ! -d "$DEBIAN" ]; then - echo "Invalid DEBIAN directory: $DEBIAN" >&2 - exit 1 -fi - -# Abort if changes or untracked files are found in the debian -# directory (ie, in "debian.master/"). cranky open is expected to -# change and commit files in this directory. -if ! git diff-index --quiet HEAD -- "$DEBIAN/" || \ - [ -n "$(git ls-files --others -- "$DEBIAN/")" ]; then - echo "\"$DEBIAN/\" is not clean!" >&2 - exit 1 -fi - -# Check changelog -series=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SDistribution) -if [ "$series" == 'UNRELEASED' ]; then - echo "$DEBIAN/changelog is not closed!" >&2 - exit 1 -fi - -# Load the info about derivative -BACKPORT_SUFFIX= -BACKPORT_NO_SUFFIX= -derivative_conf="$DEBIAN/etc/update.conf" -if [ -f "$derivative_conf" ]; then - # shellcheck disable=SC1090 - . "$derivative_conf" -fi - -# Run the update script used for backport kernels -if [ -n "$BACKPORT_SUFFIX" ] || [ -n "$BACKPORT_NO_SUFFIX" ]; then - update_from_master_script="$DEBIAN/scripts/helpers/copy-files" - if [ ! -x "$update_from_master_script" ]; then - echo "Backport kernel is missing the"\ - "\"$update_from_master_script\" script!"; - exit 1 - fi - # The tree should be clean at this point, since that is enforced at - # the beginning of the script. Because of that, it's safe to git add - # "$DEBIAN/". - run env CHROOT="$CHROOT" "$update_from_master_script" - run git add "$DEBIAN" - # Update configs after the necessary files were copied from - # the base kernel. It's not expected that `fdr updateconfigs` - # will fail at this point, because the base kernel's - # configuration and annotations file are expected to be in a - # correct state. `fdr updateconfigs` should only change a few - # configuration options that depend on the userspace tooling - # version, such as gcc. - if ! chroot_run fakeroot debian/rules clean updateconfigs; then - echo "Failed to update configs. Please review the previous" \ - "rebase operation and \"$update_from_master_script\""; - exit 1 - fi - run git add "$DEBIAN/config" -fi - -# fdr clean should be called after copy-files, that way we can git add -# any changes in "debian./" (`fdr clean` in trusty will -# usually generate changes in "debian./). Also, fdr clean -# removes an ABI that matches the current version in the -# changelog. Since `fdr startnewrelease` requires `fdr clean`, we need -# to call it before getabis. -chroot_run fakeroot debian/rules clean - -# Update ABI -if [ -d "$DEBIAN/abi" ]; then - # The new ABI directory should use the current version in the - # changelog since `fdr startnewrelease` was't called at this - # point yet: - new=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SVersion) - - if [ "$reuse_abi" -ne 0 ]; then - if [ -f "$DEBIAN/abi/version" ]; then - # This is an unversioned ABI directory, so simply update the - # version file - echo "$new" | run tee "$DEBIAN/abi/version" >/dev/null - run git add "$DEBIAN/abi/version" - else - # Get the old ABI directory: - old=$(find "$DEBIAN/abi/" -mindepth 1 -maxdepth 1 -type d | \ - grep -P '/abi/[0-9]+\.[0-9]+\.[0-9]+-[0-9]+\.[0-9]+') - if [ -z "${old}" ] ; then - echo "Failed to find the previous ABI directory." \ - "Please check \"$DEBIAN/abi/\"!" >&2 - exit 1 - elif [ "$(echo "$old" | wc -l)" -gt 1 ]; then - echo "Failed to rename the current ABI directory." \ - "Multiple directories found. Please check \"$DEBIAN/abi/\"!" >&2 - exit 1 - fi - new="$DEBIAN/abi/$new" - # Rename the ABI directory - run git mv "$old" "$new" - fi - else - # Call in-tree getabis: - # Use the single argument form since getabis is now - # updated by cranky fix. - run debian/scripts/misc/getabis "${new}" - # getabis already handles the necessary git add/rm calls. - fi -fi - -# Create the new changelog entry: -run fakeroot debian/rules startnewrelease -run git add "$DEBIAN/changelog" - -# Create the commit -run git commit -s -F debian/commit-templates/newrelease - -# Mimic maint-startnewrelease -[ "$dry_run" -eq 0 ] && \ - hl "\n***** Now please inspect the commit before pushing *****" - -exit 0 diff --git a/debian/scripts/helpers/rebase b/debian/scripts/helpers/rebase deleted file mode 100755 index 925f163f57ac8..0000000000000 --- a/debian/scripts/helpers/rebase +++ /dev/null @@ -1,159 +0,0 @@ -#!/bin/bash -e -# -# This script is intended as a helper when rebasing from its master branch. -# - -LOCAL_BRANCH= -RELEASE_REPO= -SOURCE_RELEASE_BRANCH= -OWN= - -function out() -{ - local rc="${?}" - trap - EXIT INT TERM HUP - [ "${rc}" -eq 0 ] || echo "Error: Script failed" - exit "${rc}" -} - -trap out EXIT INT TERM HUP - -if [ -f debian/debian.env ]; then - # shellcheck disable=SC1091 - . debian/debian.env -fi - -if [ ! -d "${DEBIAN}" ]; then - echo You must run this script from the top directory of this repository. - exit 1 -fi - -CONF="${DEBIAN}"/etc/update.conf -if [ -f "${CONF}" ]; then - # shellcheck disable=SC1090 - . "${CONF}" -fi - -usage="$0 [-r RELEASE_REPO] [ -b REMOTE_BRANCH ] [-l LOCAL_BRANCH] [-d]"$'\n\n' -usage+="-r RELEASE_REPO Git repository to fetch the reference branch from."$'\n' -usage+="-b REMOTE_BRANCH Remote branch to fetch from."$'\n' -usage+="-l LOCAL_BRANCH Use LOCAL_BRANCH as the reference branch."$'\n' -usage+="-o Rebase against own kernel."$'\n' -usage+="-d,--dry-run Dry run (do not rebase)." - -# Convert long options to short options -for arg in "$@" -do - shift - case "$arg" in - '--dry-run') set -- "$@" '-d' ;; - '--'*) echo "usage: ${usage}"; exit ;; - *) set -- "$@" "$arg" ;; - esac -done - -# -# command line options: -# [-r RELEASE_REPO] - override default git repository. -# [-b REMOTE_BRANCH] - override default remote branch. -# [-l LOCAL_BRANCH] - do not fetch from remote repo, use a local branch. - -while getopts "r:b:l:od" opt; do - case $opt in - r ) RELEASE_REPO="$OPTARG" ;; - b ) SOURCE_RELEASE_BRANCH="$OPTARG" ;; - l ) LOCAL_BRANCH="$OPTARG" ;; - d ) DRY_RUN=1 ;; - o ) OWN=1 ;; - \? ) echo "usage: ${usage}"; exit ;; - esac -done -shift $((OPTIND - 1)) - -# For normal trees the fact that the update.conf file exists means that they are rebase -# kernels. There are some special trees which started with uc20-efi, which have that -# file because they logically depend on another source but do not have the directory -# which DEBIAN_MASTER points to. -IS_REBASE_KERNEL=true -if [ ! -f "$DEBIAN/etc/update.conf" ]; then - IS_REBASE_KERNEL=false -elif [ "$DEBIAN_MASTER" != "" -a ! -d "$DEBIAN_MASTER" ]; then - IS_REBASE_KERNEL=false -fi -if ! $IS_REBASE_KERNEL && [ -z "$OWN" ]; then - echo "This is not a rebase kernel, no rebase should be needed, please report if otherwise" - exit 0 -fi - -if [ "${OWN}" ] ; then - DEBIAN_MASTER="${DEBIAN}" -fi - -if [ "$DEBIAN_MASTER" = "" ]; then - echo "DEBIAN_MASTER should be defined either in ${DEBIAN}/etc/update.conf or the environment" - exit 1 -fi - -if [ -z "${LOCAL_BRANCH}" ]; then - if [ -z "${RELEASE_REPO}" ] || [ -z "${SOURCE_RELEASE_BRANCH}" ]; then - echo Missing update.conf or missing parameters for remote repo and branch. - exit 1 - fi - # - # Fetch the upstream branch. - # - git fetch "${RELEASE_REPO}" - git fetch "${RELEASE_REPO}" "${SOURCE_RELEASE_BRANCH}" - LOCAL_BRANCH=FETCH_HEAD -fi - -# -# Find the most recent tag on given upstream branch, then -# rebase against it. This avoids the case where there have been some -# commits since the last official tag. -# -MASTER_COMMIT=$(git log --pretty=one "${LOCAL_BRANCH}" "${DEBIAN_MASTER}" | \ - awk ' - /Ubuntu-/ { - if (match($0, /UBUNTU: Ubuntu-/)) { - print $1 - exit - } - } - ' -) -# -# Find the current merge point where current branch was based. -# -BASE_COMMIT=$(git log --pretty=one "${DEBIAN_MASTER}" | \ - awk ' - /Ubuntu-/ { - if (match($0, /UBUNTU: Ubuntu-/)) { - print $1 - exit - } - } - ' -) -if [ "${MASTER_COMMIT}" = "${BASE_COMMIT}" ]; then - echo Already up to date. - exit 0 -fi - -if [ -z "${MASTER_COMMIT}" ] || [ -z "${BASE_COMMIT}" ]; then - echo "Could not find either master or base commit." - echo "master commit: ${MASTER_COMMIT}" - echo "base commit: ${BASE_COMMIT}" - exit 1 -fi - -MASTER_VERSION=$(git show --format=%s -s "$MASTER_COMMIT" | sed 's/^UBUNTU: //') -BASE_VERSION=$(git show --format=%s -s "$BASE_COMMIT" | sed 's/^UBUNTU: //') -echo "Rebase still needed between $BASE_VERSION and $MASTER_VERSION." - -if [ "${DRY_RUN}" ]; then - echo "DRY RUN: git rebase --onto ${MASTER_COMMIT} ${BASE_COMMIT}" - exit 0 -fi - -git rebase --onto "${MASTER_COMMIT}" "${BASE_COMMIT}" diff --git a/debian/scripts/misc/annotations b/debian/scripts/misc/annotations index 86d858611780d..3a05fe96343e3 100755 --- a/debian/scripts/misc/annotations +++ b/debian/scripts/misc/annotations @@ -1,274 +1,34 @@ #!/usr/bin/env python3 # -*- mode: python -*- -# Manage Ubuntu kernel .config and annotations -# Copyright © 2022 Canonical Ltd. -import sys -sys.dont_write_bytecode = True -import os -import argparse -import json -from signal import signal, SIGPIPE, SIG_DFL - -from kconfig.annotations import Annotation, KConfig - -VERSION = '0.1' - -SKIP_CONFIGS = ( - # CONFIG_VERSION_SIGNATURE is dynamically set during the build - 'CONFIG_VERSION_SIGNATURE', - # Allow to use a different versions of toolchain tools - 'CONFIG_GCC_VERSION', - 'CONFIG_CC_VERSION_TEXT', - 'CONFIG_AS_VERSION', - 'CONFIG_LD_VERSION', - 'CONFIG_LLD_VERSION', - 'CONFIG_CLANG_VERSION', - 'CONFIG_PAHOLE_VERSION', - 'CONFIG_RUSTC_VERSION_TEXT', - 'CONFIG_BINDGEN_VERSION_TEXT', -) - - -def make_parser(): - parser = argparse.ArgumentParser( - description='Manage Ubuntu kernel .config and annotations', - ) - parser.add_argument('--version', '-v', action='version', version=f'%(prog)s {VERSION}') - - parser.add_argument('--file', '-f', action='store', - help='Pass annotations or .config file to be parsed') - parser.add_argument('--arch', '-a', action='store', - help='Select architecture') - parser.add_argument('--flavour', '-l', action='store', - help='Select flavour (default is "generic")') - parser.add_argument('--config', '-c', action='store', - help='Select a specific config option') - parser.add_argument('--query', '-q', action='store_true', - help='Query annotations') - parser.add_argument('--note', '-n', action='store', - help='Write a specific note to a config option in annotations') - parser.add_argument('--autocomplete', action='store_true', - help='Enable config bash autocomplete: `source <(annotations --autocomplete)`') - parser.add_argument('--source', '-t', action='store_true', - help='Jump to a config definition in the kernel source code') - - ga = parser.add_argument_group(title='Action').add_mutually_exclusive_group(required=False) - ga.add_argument('--write', '-w', action='store', - metavar='VALUE', dest='value', - help='Set a specific config value in annotations (use \'null\' to remove)') - ga.add_argument('--export', '-e', action='store_true', - help='Convert annotations to .config format') - ga.add_argument('--import', '-i', action='store', - metavar="FILE", dest='import_file', - help='Import a full .config for a specific arch and flavour into annotations') - ga.add_argument('--update', '-u', action='store', - metavar="FILE", dest='update_file', - help='Import a partial .config into annotations (only resync configs specified in FILE)') - ga.add_argument('--check', '-k', action='store', - metavar="FILE", dest='check_file', - help='Validate kernel .config with annotations') - return parser - - -_ARGPARSER = make_parser() - - -def arg_fail(message): - print(message) - _ARGPARSER.print_usage() - sys.exit(1) - - -def print_result(config, res): - if res is not None and config not in res: - res = {config or '*': res} - print(json.dumps(res, indent=4)) - - -def do_query(args): - if args.arch is None and args.flavour is not None: - arg_fail('error: --flavour requires --arch') - a = Annotation(args.file) - res = a.search_config(config=args.config, arch=args.arch, flavour=args.flavour) - print_result(args.config, res) - - -def do_autocomplete(args): - a = Annotation(args.file) - res = (c.removeprefix('CONFIG_') for c in a.search_config()) - res_str = ' '.join(res) - print(f'complete -W "{res_str}" annotations') - - -def do_source(args): - if args.config is None: - arg_fail('error: --source requires --config') - if not os.path.exists('tags'): - print('tags not found in the current directory, try: `make tags`') - sys.exit(1) - os.system(f'vim -t {args.config}') - - -def do_note(args): - if args.config is None: - arg_fail('error: --note requires --config') - - # Set the note in annotations - a = Annotation(args.file) - a.set(args.config, note=args.note) - - # Save back to annotations - a.save(args.file) - - # Query and print back the value - a = Annotation(args.file) - res = a.search_config(config=args.config) - print_result(args.config, res) - - -def do_write(args): - if args.config is None: - arg_fail('error: --write requires --config') - - # Set the value in annotations ('null' means remove) - a = Annotation(args.file) - if args.value == 'null': - a.remove(args.config, arch=args.arch, flavour=args.flavour) - else: - a.set(args.config, arch=args.arch, flavour=args.flavour, value=args.value, note=args.note) - - # Save back to annotations - a.save(args.file) - - # Query and print back the value - a = Annotation(args.file) - res = a.search_config(config=args.config) - print_result(args.config, res) - - -def do_export(args): - if args.arch is None: - arg_fail('error: --export requires --arch') - a = Annotation(args.file) - conf = a.search_config(config=args.config, arch=args.arch, flavour=args.flavour) - if conf: - print(a.to_config(conf)) - - -def do_import(args): - if args.arch is None: - arg_fail('error: --arch is required with --import') - if args.flavour is None: - arg_fail('error: --flavour is required with --import') - if args.config is not None: - arg_fail('error: --config cannot be used with --import (try --update)') - - # Merge with the current annotations - a = Annotation(args.file) - c = KConfig(args.import_file) - a.update(c, arch=args.arch, flavour=args.flavour) - - # Save back to annotations - a.save(args.file) - - -def do_update(args): - if args.arch is None: - arg_fail('error: --arch is required with --update') - - # Merge with the current annotations - a = Annotation(args.file) - c = KConfig(args.update_file) - if args.config is None: - configs = list(set(c.config.keys()) - set(SKIP_CONFIGS)) - if configs: - a.update(c, arch=args.arch, flavour=args.flavour, configs=configs) - - # Save back to annotations - a.save(args.file) - - -def do_check(args): - # Determine arch and flavour - if args.arch is None: - arg_fail('error: --arch is required with --check') - - print(f"check-config: loading annotations from {args.file}") - total = good = ret = 0 - - # Load annotations settings - a = Annotation(args.file) - a_configs = a.search_config(arch=args.arch, flavour=args.flavour).keys() - - # Parse target .config - c = KConfig(args.check_file) - c_configs = c.config.keys() - - # Validate .config against annotations - for conf in sorted(a_configs | c_configs): - if conf in SKIP_CONFIGS: - continue - entry = a.search_config(config=conf, arch=args.arch, flavour=args.flavour) - expected = entry[conf] if entry else '-' - value = c.config[conf] if conf in c.config else '-' - if value != expected: - policy = a.config[conf] if conf in a.config else 'undefined' - if 'policy' in policy: - policy = f"policy<{policy['policy']}>" - print(f"check-config: FAIL: ({value} != {expected}): {conf} {policy})") - ret = 1 - else: - good += 1 - total += 1 - - print(f"check-config: {good}/{total} checks passed -- exit {ret}") - sys.exit(ret) - - -def autodetect_annotations(args): - if args.file: - return - # If --file/-f isn't specified try to automatically determine the right - # location of the annotations file looking at debian/debian.env. - try: - with open('debian/debian.env', 'rt', encoding='utf-8') as fd: - args.file = fd.read().rstrip().split('=')[1] + '/config/annotations' - except (FileNotFoundError, IndexError): - arg_fail('error: could not determine DEBDIR, try using: --file/-f') +# This file is not installed; it's just to run annotations from inside a source +# distribution without installing it in the system. +import sys -def main(): - # Prevent broken pipe errors when showing output in pipe to other tools - # (less for example) - signal(SIGPIPE, SIG_DFL) +# Prevent generating .pyc files on import +# +# We may end up adding these files to our git repos by mistake, so simply +# prevent generating them in advance. +# +# There's a tiny performance penalty with this, because python needs to +# re-generate the bytecode on-the-fly every time the script is executed, but +# this overhead is absolutely negligible compared the rest of the kernel build +# time. +sys.dont_write_bytecode = True - # Main annotations program - args = _ARGPARSER.parse_args() - autodetect_annotations(args) +import os # noqa: E402 Import not at top of file +from kconfig import run # noqa: E402 Import not at top of file - if args.config and not args.config.startswith('CONFIG_'): - args.config = 'CONFIG_' + args.config - if args.value: - do_write(args) - elif args.note: - do_note(args) - elif args.export: - do_export(args) - elif args.import_file: - do_import(args) - elif args.update_file: - do_update(args) - elif args.check_file: - do_check(args) - elif args.autocomplete: - do_autocomplete(args) - elif args.source: - do_source(args) - else: - do_query(args) +# Update PATH to make sure that annotations can be executed directly from the +# source directory. +def update_path(): + script_dir = os.path.dirname(os.path.abspath(__file__)) + current_path = os.environ.get("PATH", "") + new_path = f"{script_dir}:{current_path}" + os.environ["PATH"] = new_path -if __name__ == '__main__': - main() +update_path() +exit(run.main()) diff --git a/debian/scripts/misc/gen-auto-reconstruct b/debian/scripts/misc/gen-auto-reconstruct index a50ceb619f176..2746d27d4c5f0 100755 --- a/debian/scripts/misc/gen-auto-reconstruct +++ b/debian/scripts/misc/gen-auto-reconstruct @@ -34,14 +34,6 @@ fi echo "[ ! -L '$name' ] && ln -sf '$link' '$name'" done - # Identify all removed files since the proffered tag. - echo "# Remove any files deleted from the orig." - git diff "$tag.." --raw --no-renames | awk '(/^:/ && $5 == "D") { print $NF }' | \ - while read name - do - echo "rm -f '$name'" - done - # Identify files with execute permissions added since the proffered tag. git diff "$tag.." --raw --no-renames | awk -F '[: \t]' '{print $2, $3, $NF }' | \ while IFS=" " read old new name @@ -53,12 +45,20 @@ fi added=$(( new & 0111 )) if [ "$added" -ne 0 ]; then echo "chmod +x '$name'" - else + elif [ "$new" -ne 0 ]; then echo "chmod -x '$name'" fi fi done + # Identify all removed files since the proffered tag. + echo "# Remove any files deleted from the orig." + git diff "$tag.." --raw --no-renames | awk '(/^:/ && $5 == "D") { print $NF }' | \ + while read name + do + echo "rm -f '$name'" + done + # All done, make sure this does not complete in error. echo "exit 0" ) >"$reconstruct" diff --git a/debian/scripts/misc/git-ubuntu-log b/debian/scripts/misc/git-ubuntu-log index 3700775a1e52e..8efdb404b5613 100755 --- a/debian/scripts/misc/git-ubuntu-log +++ b/debian/scripts/misc/git-ubuntu-log @@ -120,7 +120,7 @@ for key in keys: try: # urllib.request.urlcleanup() request = urllib.request.Request('https://api.launchpad.net/devel/bugs/' + bug) - request.add_header('Cache-Control', 'max-age=0') + request.add_header('Cache-Control', 'no-cache') with urllib.request.urlopen(request) as response: data = response.read() bug_info = json.loads(data.decode('utf-8')) diff --git a/debian/scripts/misc/kconfig/annotations.py b/debian/scripts/misc/kconfig/annotations.py index 1d5e40cb67de3..af9dbdfa2eb20 100644 --- a/debian/scripts/misc/kconfig/annotations.py +++ b/debian/scripts/misc/kconfig/annotations.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- mode: python -*- # python module to manage Ubuntu kernel .config and annotations # Copyright © 2022 Canonical Ltd. @@ -12,26 +11,29 @@ from ast import literal_eval from os.path import dirname, abspath +from kconfig.version import ANNOTATIONS_FORMAT_VERSION -class Config(): - def __init__(self, fname): + +class Config: + def __init__(self, fname, do_include=True): """ Basic configuration file object """ self.fname = fname self.config = {} + self.do_include = do_include raw_data = self._load(fname) self._parse(raw_data) @staticmethod def _load(fname: str) -> str: - with open(fname, 'rt', encoding='utf-8') as fd: + with open(fname, "rt", encoding="utf-8") as fd: data = fd.read() return data.rstrip() def __str__(self): - """ Return a JSON representation of the config """ + """Return a JSON representation of the config""" return json.dumps(self.config, indent=4) @abstractmethod @@ -44,14 +46,15 @@ class KConfig(Config): Parse a .config file, individual config options can be accessed via .config[] """ + def _parse(self, data: str): self.config = {} for line in data.splitlines(): - m = re.match(r'^# (CONFIG_.*) is not set$', line) + m = re.match(r"^# (CONFIG_.*) is not set$", line) if m: self.config[m.group(1)] = literal_eval("'n'") continue - m = re.match(r'^(CONFIG_[A-Za-z0-9_]+)=(.*)$', line) + m = re.match(r"^(CONFIG_[A-Za-z0-9_]+)=(.*)$", line) if m: self.config[m.group(1)] = literal_eval("'" + m.group(2) + "'") continue @@ -61,12 +64,17 @@ class Annotation(Config): """ Parse body of annotations file """ + + def __init__(self, fname, do_include=True, do_json=False): + self.do_json = do_json + super().__init__(fname, do_include=True) + def _parse_body(self, data: str, parent=True): for line in data.splitlines(): # Replace tabs with spaces, squeeze multiple into singles and # remove leading and trailing spaces - line = line.replace('\t', ' ') - line = re.sub(r' +', ' ', line) + line = line.replace("\t", " ") + line = re.sub(r" +", " ", line) line = line.strip() # Ignore empty lines @@ -74,12 +82,12 @@ def _parse_body(self, data: str, parent=True): continue # Catpure flavors of included files - if line.startswith('# FLAVOUR: '): - self.include_flavour += line.split(' ')[2:] + if line.startswith("# FLAVOUR: "): + self.include_flavour += line.split(" ")[2:] continue # Ignore comments - if line.startswith('#'): + if line.startswith("#"): continue # Handle includes (recursively) @@ -87,46 +95,59 @@ def _parse_body(self, data: str, parent=True): if m: if parent: self.include.append(m.group(1)) - include_fname = dirname(abspath(self.fname)) + '/' + m.group(1) - include_data = self._load(include_fname) - self._parse_body(include_data, parent=False) + if self.do_include: + include_fname = dirname(abspath(self.fname)) + "/" + m.group(1) + include_data = self._load(include_fname) + self._parse_body(include_data, parent=False) continue # Handle policy and note lines - if re.match(r'.* (policy|note)<', line): + if re.match(r".* (policy|note)<", line): try: - conf = line.split(' ')[0] + conf = line.split(" ")[0] if conf in self.config: entry = self.config[conf] else: - entry = {'policy': {}} + entry = {"policy": {}} match = False - m = re.match(r'.* policy<(.*?)>', line) + m = re.match(r".* policy<(.*?)>", line) if m: match = True - try: - entry['policy'] |= literal_eval(m.group(1)) - except TypeError: - entry['policy'] = {**entry['policy'], **literal_eval(m.group(1))} - - m = re.match(r'.* note<(.*?)>', line) + # Update the previous entry considering potential overrides: + # - if the new entry is adding a rule for a new + # arch/flavour, simply add that + # - if the new entry is overriding a previous + # arch-flavour item, then overwrite that item + # - if the new entry is overriding a whole arch, then + # remove all the previous flavour rules of that arch + new_entry = literal_eval(m.group(1)) + for key in new_entry: + if key in self.arch: + for flavour_key in list(entry["policy"].keys()): + if flavour_key.startswith(key): + del entry["policy"][flavour_key] + entry["policy"][key] = new_entry[key] + else: + entry["policy"][key] = new_entry[key] + + m = re.match(r".* note<(.*?)>", line) if m: - entry['oneline'] = match + entry["oneline"] = match match = True - entry['note'] = "'" + m.group(1).replace("'", '') + "'" + entry["note"] = "'" + m.group(1).replace("'", "") + "'" if not match: - raise SyntaxError('syntax error') + raise SyntaxError("syntax error") self.config[conf] = entry except Exception as e: - raise SyntaxError(str(e) + f', line = {line}') from e + raise SyntaxError(str(e) + f", line = {line}") from e continue # Invalid line - raise SyntaxError(f'invalid line: {line}') + raise SyntaxError(f"invalid line: {line}") - def _parse(self, data: str): + def _legacy_parse(self, data: str): """ Parse main annotations file, individual config options can be accessed via self.config[] @@ -136,35 +157,84 @@ def _parse(self, data: str): self.flavour = [] self.flavour_dep = {} self.include = [] - self.header = '' + self.header = "" self.include_flavour = [] # Parse header (only main header will considered, headers in includes # will be treated as comments) for line in data.splitlines(): - if re.match(r'^#.*', line): - m = re.match(r'^# ARCH: (.*)', line) + if re.match(r"^#.*", line): + m = re.match(r"^# ARCH: (.*)", line) if m: - self.arch = list(m.group(1).split(' ')) - m = re.match(r'^# FLAVOUR: (.*)', line) + self.arch = list(m.group(1).split(" ")) + m = re.match(r"^# FLAVOUR: (.*)", line) if m: - self.flavour = list(m.group(1).split(' ')) - m = re.match(r'^# FLAVOUR_DEP: (.*)', line) + self.flavour = list(m.group(1).split(" ")) + m = re.match(r"^# FLAVOUR_DEP: (.*)", line) if m: self.flavour_dep = literal_eval(m.group(1)) self.header += line + "\n" else: break - # Parse body (handle includes recursively) + # Return an error if architectures are not defined + if not self.arch: + raise SyntaxError("ARCH not defined in annotations") + # Return an error if flavours are not defined + if not self.flavour: + raise SyntaxError("FLAVOUR not defined in annotations") + + # Parse body self._parse_body(data) # Sanity check: Verify that all FLAVOUR_DEP flavors are valid - for src, tgt in self.flavour_dep.items(): - if src not in self.flavour: - raise SyntaxError(f'Invalid source flavour in FLAVOUR_DEP: {src}') - if tgt not in self.include_flavour: - raise SyntaxError(f'Invalid target flavour in FLAVOUR_DEP: {tgt}') + if self.do_include: + for src, tgt in self.flavour_dep.items(): + if src not in self.flavour: + raise SyntaxError(f"Invalid source flavour in FLAVOUR_DEP: {src}") + if tgt not in self.include_flavour: + raise SyntaxError(f"Invalid target flavour in FLAVOUR_DEP: {tgt}") + + def _json_parse(self, data, is_included=False): + data = json.loads(data) + + # Check if version is supported + version = data["attributes"]["_version"] + if version > ANNOTATIONS_FORMAT_VERSION: + raise SyntaxError(f"annotations format version {version} not supported") + + # Check for top-level annotations vs imported annotations + if not is_included: + self.config = data["config"] + self.arch = data["attributes"]["arch"] + self.flavour = data["attributes"]["flavour"] + self.flavour_dep = data["attributes"]["flavour_dep"] + self.include = data["attributes"]["include"] + self.include_flavour = [] + else: + # We are procesing an imported annotations, so merge all the + # configs and attributes. + try: + self.config = data["config"] | self.config + except TypeError: + self.config = {**self.config, **data["config"]} + self.arch = list(set(self.arch) | set(data["attributes"]["arch"])) + self.flavour = list(set(self.flavour) | set(data["attributes"]["flavour"])) + self.include_flavour = list(set(self.include_flavour) | set(data["attributes"]["flavour"])) + self.flavour_dep = self.flavour_dep | data["attributes"]["flavour_dep"] + + # Handle recursive inclusions + if self.do_include: + for f in data["attributes"]["include"]: + include_fname = dirname(abspath(self.fname)) + "/" + f + data = self._load(include_fname) + self._json_parse(data, is_included=True) + + def _parse(self, data: str): + if self.do_json: + self._json_parse(data, is_included=False) + else: + self._legacy_parse(data) def _remove_entry(self, config: str): if self.config[config]: @@ -175,34 +245,40 @@ def remove(self, config: str, arch: str = None, flavour: str = None): return if arch is not None: if flavour is not None: - flavour = f'{arch}-{flavour}' + flavour = f"{arch}-{flavour}" else: flavour = arch - del self.config[config]['policy'][flavour] - if not self.config[config]['policy']: + del self.config[config]["policy"][flavour] + if not self.config[config]["policy"]: self._remove_entry(config) else: self._remove_entry(config) - def set(self, config: str, arch: str = None, flavour: str = None, - value: str = None, note: str = None): + def set( + self, + config: str, + arch: str = None, + flavour: str = None, + value: str = None, + note: str = None, + ): if value is not None: if config not in self.config: - self.config[config] = {'policy': {}} + self.config[config] = {"policy": {}} if arch is not None: if flavour is not None: - flavour = f'{arch}-{flavour}' + flavour = f"{arch}-{flavour}" else: flavour = arch - self.config[config]['policy'][flavour] = value + self.config[config]["policy"][flavour] = value else: for a in self.arch: - self.config[config]['policy'][a] = value + self.config[config]["policy"][a] = value if note is not None: - self.config[config]['note'] = "'" + note.replace("'", '') + "'" + self.config[config]["note"] = "'" + note.replace("'", "") + "'" def update(self, c: KConfig, arch: str, flavour: str = None, configs: list = None): - """ Merge configs from a Kconfig object into Annotation object """ + """Merge configs from a Kconfig object into Annotation object""" # Determine if we need to import all configs or a single config if not configs: @@ -210,63 +286,75 @@ def update(self, c: KConfig, arch: str, flavour: str = None, configs: list = Non try: configs |= self.search_config(arch=arch, flavour=flavour).keys() except TypeError: - configs = {**configs, **self.search_config(arch=arch, flavour=flavour).keys()} + configs = { + **configs, + **self.search_config(arch=arch, flavour=flavour).keys(), + } # Import configs from the Kconfig object into Annotations + flavour_arg = flavour if flavour is not None: - flavour = arch + f'-{flavour}' + flavour = arch + f"-{flavour}" else: flavour = arch for conf in configs: if conf in c.config: val = c.config[conf] else: - val = '-' + val = "-" if conf in self.config: - if 'policy' in self.config[conf]: - self.config[conf]['policy'][flavour] = val + if "policy" in self.config[conf]: + # Add a TODO if a config with a note is changing and print + # a warning + old_val = self.search_config(config=conf, arch=arch, flavour=flavour_arg) + if old_val: + old_val = old_val[conf] + if val != old_val and "note" in self.config[conf]: + self.config[conf]["note"] = "TODO: update note" + print(f"WARNING: {conf} changed from {old_val} to {val}, updating note") + self.config[conf]["policy"][flavour] = val else: - self.config[conf]['policy'] = {flavour: val} + self.config[conf]["policy"] = {flavour: val} else: - self.config[conf] = {'policy': {flavour: val}} + self.config[conf] = {"policy": {flavour: val}} def _compact(self): # Try to remove redundant settings: if the config value of a flavour is # the same as the one of the main arch simply drop it. for conf in self.config.copy(): - if 'policy' not in self.config[conf]: + if "policy" not in self.config[conf]: continue for flavour in self.flavour: - if flavour not in self.config[conf]['policy']: + if flavour not in self.config[conf]["policy"]: continue - m = re.match(r'^(.*?)-(.*)$', flavour) + m = re.match(r"^(.*?)-(.*)$", flavour) if not m: continue arch = m.group(1) - if arch in self.config[conf]['policy']: - if self.config[conf]['policy'][flavour] == self.config[conf]['policy'][arch]: - del self.config[conf]['policy'][flavour] + if arch in self.config[conf]["policy"]: + if self.config[conf]["policy"][flavour] == self.config[conf]["policy"][arch]: + del self.config[conf]["policy"][flavour] continue if flavour not in self.flavour_dep: continue generic = self.flavour_dep[flavour] - if generic in self.config[conf]['policy']: - if self.config[conf]['policy'][flavour] == self.config[conf]['policy'][generic]: - del self.config[conf]['policy'][flavour] + if generic in self.config[conf]["policy"]: + if self.config[conf]["policy"][flavour] == self.config[conf]["policy"][generic]: + del self.config[conf]["policy"][flavour] continue # Remove rules for flavours / arches that are not supported (not # listed in the annotations header). - for flavour in self.config[conf]['policy'].copy(): + for flavour in self.config[conf]["policy"].copy(): if flavour not in list(set(self.arch + self.flavour)): - del self.config[conf]['policy'][flavour] + del self.config[conf]["policy"][flavour] # Remove configs that are all undefined across all arches/flavours # (unless we have includes) if not self.include: - if 'policy' in self.config[conf]: - if list(set(self.config[conf]['policy'].values())) == ['-']: - self.config[conf]['policy'] = {} + if "policy" in self.config[conf]: + if list(set(self.config[conf]["policy"].values())) == ["-"]: + self.config[conf]["policy"] = {} # Drop empty rules - if not self.config[conf]['policy']: + if not self.config[conf]["policy"]: del self.config[conf] else: # Compact same value across all flavour within the same arch @@ -274,16 +362,16 @@ def _compact(self): arch_flavours = [i for i in self.flavour if i.startswith(arch)] value = None for flavour in arch_flavours: - if flavour not in self.config[conf]['policy']: + if flavour not in self.config[conf]["policy"]: break if value is None: - value = self.config[conf]['policy'][flavour] - elif value != self.config[conf]['policy'][flavour]: + value = self.config[conf]["policy"][flavour] + elif value != self.config[conf]["policy"][flavour]: break else: for flavour in arch_flavours: - del self.config[conf]['policy'][flavour] - self.config[conf]['policy'][arch] = value + del self.config[conf]["policy"][flavour] + self.config[conf]["policy"][arch] = value # After the first round of compaction we may end up having configs that # are undefined across all arches, so do another round of compaction to # drop these settings that are not needed anymore @@ -291,34 +379,34 @@ def _compact(self): if not self.include: for conf in self.config.copy(): # Remove configs that are all undefined across all arches/flavours - if 'policy' in self.config[conf]: - if list(set(self.config[conf]['policy'].values())) == ['-']: - self.config[conf]['policy'] = {} + if "policy" in self.config[conf]: + if list(set(self.config[conf]["policy"].values())) == ["-"]: + self.config[conf]["policy"] = {} # Drop empty rules - if not self.config[conf]['policy']: + if not self.config[conf]["policy"]: del self.config[conf] @staticmethod def _sorted(config): - """ Sort configs alphabetically but return configs with a note first """ + """Sort configs alphabetically but return configs with a note first""" w_note = [] wo_note = [] for c in sorted(config): - if 'note' in config[c]: + if "note" in config[c]: w_note.append(c) else: wo_note.append(c) return w_note + wo_note def save(self, fname: str): - """ Save annotations data to the annotation file """ + """Save annotations data to the annotation file""" # Compact annotations structure self._compact() # Save annotations to disk - with tempfile.NamedTemporaryFile(mode='w+t', delete=False) as tmp: + with tempfile.NamedTemporaryFile(mode="w+t", delete=False) as tmp: # Write header - tmp.write(self.header + '\n') + tmp.write(self.header + "\n") # Write includes for i in self.include: @@ -335,40 +423,43 @@ def save(self, fname: str): marker = False for conf in self._sorted(self.config): new_val = self.config[conf] - if 'policy' not in new_val: + if "policy" not in new_val: continue # If new_val is a subset of old_val, skip it unless there are # new notes that are different than the old ones. old_val = tmp_a.config.get(conf) - if old_val and 'policy' in old_val: + if old_val and "policy" in old_val: try: - can_skip = old_val['policy'] == old_val['policy'] | new_val['policy'] + can_skip = old_val["policy"] == old_val["policy"] | new_val["policy"] except TypeError: - can_skip = old_val['policy'] == {**old_val['policy'], **new_val['policy']} + can_skip = old_val["policy"] == { + **old_val["policy"], + **new_val["policy"], + } if can_skip: - if 'note' not in new_val: + if "note" not in new_val: continue - if 'note' in old_val and 'note' in new_val: - if old_val['note'] == new_val['note']: + if "note" in old_val and "note" in new_val: + if old_val["note"] == new_val["note"]: continue # Write out the policy (and note) line(s) - val = dict(sorted(new_val['policy'].items())) + val = dict(sorted(new_val["policy"].items())) line = f"{conf : <47} policy<{val}>" - if 'note' in new_val: - val = new_val['note'] - if new_val.get('oneline', False): + if "note" in new_val: + val = new_val["note"] + if new_val.get("oneline", False): # Single line - line += f' note<{val}>' + line += f" note<{val}>" else: # Separate policy and note lines, # followed by an empty line - line += f'\n{conf : <47} note<{val}>\n' + line += f"\n{conf : <47} note<{val}>\n" elif not marker: # Write out a marker indicating the start of annotations # without notes - tmp.write('\n# ---- Annotations without notes ----\n\n') + tmp.write("\n# ---- Annotations without notes ----\n\n") marker = True tmp.write(line + "\n") @@ -377,10 +468,10 @@ def save(self, fname: str): shutil.move(tmp.name, fname) def search_config(self, config: str = None, arch: str = None, flavour: str = None) -> dict: - """ Return config value of a specific config option or architecture """ + """Return config value of a specific config option or architecture""" if flavour is None: - flavour = 'generic' - flavour = f'{arch}-{flavour}' + flavour = "generic" + flavour = f"{arch}-{flavour}" if flavour in self.flavour_dep: generic = self.flavour_dep[flavour] else: @@ -392,14 +483,14 @@ def search_config(self, config: str = None, arch: str = None, flavour: str = Non # Get config options of a specific architecture ret = {} for c, val in self.config.items(): - if 'policy' not in val: + if "policy" not in val: continue - if flavour in val['policy']: - ret[c] = val['policy'][flavour] - elif generic != flavour and generic in val['policy']: - ret[c] = val['policy'][generic] - elif arch in val['policy']: - ret[c] = val['policy'][arch] + if flavour in val["policy"]: + ret[c] = val["policy"][flavour] + elif generic != flavour and generic in val["policy"]: + ret[c] = val["policy"][generic] + elif arch in val["policy"]: + ret[c] = val["policy"][arch] return ret if config is not None and arch is None: # Get a specific config option for all architectures @@ -407,24 +498,24 @@ def search_config(self, config: str = None, arch: str = None, flavour: str = Non if config is not None and arch is not None: # Get a specific config option for a specific architecture if config in self.config: - if 'policy' in self.config[config]: - if flavour in self.config[config]['policy']: - return {config: self.config[config]['policy'][flavour]} - if generic != flavour and generic in self.config[config]['policy']: - return {config: self.config[config]['policy'][generic]} - if arch in self.config[config]['policy']: - return {config: self.config[config]['policy'][arch]} + if "policy" in self.config[config]: + if flavour in self.config[config]["policy"]: + return {config: self.config[config]["policy"][flavour]} + if generic != flavour and generic in self.config[config]["policy"]: + return {config: self.config[config]["policy"][generic]} + if arch in self.config[config]["policy"]: + return {config: self.config[config]["policy"][arch]} return None @staticmethod def to_config(data: dict) -> str: - """ Convert annotations data to .config format """ - s = '' + """Convert annotations data to .config format""" + s = "" for c in data: v = data[c] - if v == 'n': + if v == "n": s += f"# {c} is not set\n" - elif v == '-': + elif v == "-": pass else: s += f"{c}={v}\n" diff --git a/debian/scripts/misc/kconfig/run.py b/debian/scripts/misc/kconfig/run.py new file mode 100644 index 0000000000000..63b0c9435a5c6 --- /dev/null +++ b/debian/scripts/misc/kconfig/run.py @@ -0,0 +1,370 @@ +# -*- mode: python -*- +# Manage Ubuntu kernel .config and annotations +# Copyright © 2022 Canonical Ltd. + +import sys +import os +import argparse +import json +from signal import signal, SIGPIPE, SIG_DFL + +try: + from argcomplete import autocomplete +except ModuleNotFoundError: + # Allow to run this program also when argcomplete is not available + def autocomplete(_unused): + pass + + +from kconfig.annotations import Annotation, KConfig # noqa: E402 Import not at top of file +from kconfig.utils import autodetect_annotations, arg_fail # noqa: E402 Import not at top of file +from kconfig.version import VERSION, ANNOTATIONS_FORMAT_VERSION # noqa: E402 Import not at top of file + + +SKIP_CONFIGS = ( + # CONFIG_VERSION_SIGNATURE is dynamically set during the build + "CONFIG_VERSION_SIGNATURE", + # Allow to use a different versions of toolchain tools + "CONFIG_GCC_VERSION", + "CONFIG_CC_VERSION_TEXT", + "CONFIG_AS_VERSION", + "CONFIG_LD_VERSION", + "CONFIG_LLD_VERSION", + "CONFIG_CLANG_VERSION", + "CONFIG_PAHOLE_VERSION", + "CONFIG_RUSTC_VERSION_TEXT", + "CONFIG_BINDGEN_VERSION_TEXT", +) + + +def make_parser(): + parser = argparse.ArgumentParser( + description="Manage Ubuntu kernel .config and annotations", + ) + parser.add_argument("--version", "-v", action="version", version=f"%(prog)s {VERSION}") + + parser.add_argument( + "--file", + "-f", + action="store", + help="Pass annotations or .config file to be parsed", + ) + parser.add_argument("--arch", "-a", action="store", help="Select architecture") + parser.add_argument("--flavour", "-l", action="store", help='Select flavour (default is "generic")') + parser.add_argument("--config", "-c", action="store", help="Select a specific config option") + parser.add_argument("--query", "-q", action="store_true", help="Query annotations") + parser.add_argument( + "--note", + "-n", + action="store", + help="Write a specific note to a config option in annotations", + ) + parser.add_argument( + "--autocomplete", + action="store_true", + help="Enable config bash autocomplete: `source <(annotations --autocomplete)`", + ) + parser.add_argument( + "--source", + "-t", + action="store_true", + help="Jump to a config definition in the kernel source code", + ) + parser.add_argument( + "--no-include", + action="store_true", + help="Do not process included annotations (stop at the main file)", + ) + parser.add_argument( + "--json", + action="store_true", + help="Try to parse annotations file in pure JSON format", + ) + + ga = parser.add_argument_group(title="Action").add_mutually_exclusive_group(required=False) + ga.add_argument( + "--write", + "-w", + action="store", + metavar="VALUE", + dest="value", + help="Set a specific config value in annotations (use 'null' to remove)", + ) + ga.add_argument( + "--export", + "-e", + action="store_true", + help="Convert annotations to .config format", + ) + ga.add_argument( + "--import", + "-i", + action="store", + metavar="FILE", + dest="import_file", + help="Import a full .config for a specific arch and flavour into annotations", + ) + ga.add_argument( + "--update", + "-u", + action="store", + metavar="FILE", + dest="update_file", + help="Import a partial .config into annotations (only resync configs specified in FILE)", + ) + ga.add_argument( + "--check", + "-k", + action="store", + metavar="FILE", + dest="check_file", + help="Validate kernel .config with annotations", + ) + return parser + + +_ARGPARSER = make_parser() + + +def export_result(data): + # Dump metadata / attributes first + out = '{\n "attributes": {\n' + for key, value in sorted(data["attributes"].items()): + out += f' "{key}": {json.dumps(value)},\n' + out = out.rstrip(",\n") + out += "\n }," + print(out) + + configs_with_note = {key: value for key, value in data["config"].items() if "note" in value} + configs_without_note = {key: value for key, value in data["config"].items() if "note" not in value} + + # Dump configs, sorted alphabetically, showing items with a note first + out = ' "config": {\n' + for key in sorted(configs_with_note) + sorted(configs_without_note): + policy = data["config"][key]["policy"] + if "note" in data["config"][key]: + note = data["config"][key]["note"] + out += f' "{key}": {{"policy": {json.dumps(policy)}, "note": {json.dumps(note)}}},\n' + else: + out += f' "{key}": {{"policy": {json.dumps(policy)}}},\n' + out = out.rstrip(",\n") + out += "\n }\n}" + print(out) + + +def print_result(config, data): + if data is not None and config is not None and config not in data: + data = {config: data} + print(json.dumps(data, sort_keys=True, indent=2)) + + +def do_query(args): + if args.arch is None and args.flavour is not None: + arg_fail(_ARGPARSER, "error: --flavour requires --arch") + a = Annotation(args.file, do_include=(not args.no_include), do_json=args.json) + res = a.search_config(config=args.config, arch=args.arch, flavour=args.flavour) + # If no arguments are specified dump the whole annotations structure + if args.config is None and args.arch is None and args.flavour is None: + res = { + "attributes": { + "arch": a.arch, + "flavour": a.flavour, + "flavour_dep": a.flavour_dep, + "include": a.include, + "_version": ANNOTATIONS_FORMAT_VERSION, + }, + "config": res, + } + export_result(res) + else: + print_result(args.config, res) + + +def do_autocomplete(args): + a = Annotation(args.file) + res = (c.removeprefix("CONFIG_") for c in a.search_config()) + res_str = " ".join(res) + print(f'complete -W "{res_str}" annotations') + + +def do_source(args): + if args.config is None: + arg_fail(_ARGPARSER, "error: --source requires --config") + if not os.path.exists("tags"): + print("tags not found in the current directory, try: `make tags`") + sys.exit(1) + os.system(f"vim -t {args.config}") + + +def do_note(args): + if args.config is None: + arg_fail(_ARGPARSER, "error: --note requires --config") + + # Set the note in annotations + a = Annotation(args.file) + a.set(args.config, note=args.note) + + # Save back to annotations + a.save(args.file) + + # Query and print back the value + a = Annotation(args.file) + res = a.search_config(config=args.config) + print_result(args.config, res) + + +def do_write(args): + if args.config is None: + arg_fail(_ARGPARSER, "error: --write requires --config") + + # Set the value in annotations ('null' means remove) + a = Annotation(args.file) + if args.value == "null": + a.remove(args.config, arch=args.arch, flavour=args.flavour) + else: + a.set( + args.config, + arch=args.arch, + flavour=args.flavour, + value=args.value, + note=args.note, + ) + + # Save back to annotations + a.save(args.file) + + # Query and print back the value + a = Annotation(args.file) + res = a.search_config(config=args.config) + print_result(args.config, res) + + +def do_export(args): + if args.arch is None: + arg_fail(_ARGPARSER, "error: --export requires --arch") + a = Annotation(args.file) + conf = a.search_config(config=args.config, arch=args.arch, flavour=args.flavour) + if conf: + print(a.to_config(conf)) + + +def do_import(args): + if args.arch is None: + arg_fail(_ARGPARSER, "error: --arch is required with --import") + if args.flavour is None: + arg_fail(_ARGPARSER, "error: --flavour is required with --import") + if args.config is not None: + arg_fail(_ARGPARSER, "error: --config cannot be used with --import (try --update)") + + # Merge with the current annotations + a = Annotation(args.file) + c = KConfig(args.import_file) + a.update(c, arch=args.arch, flavour=args.flavour) + + # Save back to annotations + a.save(args.file) + + +def do_update(args): + if args.arch is None: + arg_fail(_ARGPARSER, "error: --arch is required with --update") + + # Merge with the current annotations + a = Annotation(args.file) + c = KConfig(args.update_file) + if args.config is None: + configs = list(set(c.config.keys()) - set(SKIP_CONFIGS)) + if configs: + a.update(c, arch=args.arch, flavour=args.flavour, configs=configs) + + # Save back to annotations + a.save(args.file) + + +def do_check(args): + # Determine arch and flavour + if args.arch is None: + arg_fail(_ARGPARSER, "error: --arch is required with --check") + + print(f"check-config: loading annotations from {args.file}") + total = good = ret = 0 + + # Load annotations settings + a = Annotation(args.file) + a_configs = a.search_config(arch=args.arch, flavour=args.flavour).keys() + + # Parse target .config + c = KConfig(args.check_file) + c_configs = c.config.keys() + + # Validate .config against annotations + for conf in sorted(a_configs | c_configs): + if conf in SKIP_CONFIGS: + continue + entry = a.search_config(config=conf, arch=args.arch, flavour=args.flavour) + expected = entry[conf] if entry else "-" + value = c.config[conf] if conf in c.config else "-" + if value != expected: + policy = a.config[conf] if conf in a.config else "undefined" + if "policy" in policy: + policy = f"policy<{policy['policy']}>" + print(f"check-config: {conf} changed from {expected} to {value}: {policy})") + ret = 1 + else: + good += 1 + total += 1 + + num = total - good + if ret: + if os.path.exists(".git"): + print(f"check-config: {num} config options have been changed, review them with `git diff`") + else: + print(f"check-config: {num} config options have changed") + else: + print("check-config: all good") + sys.exit(ret) + + +def main(): + # Prevent broken pipe errors when showing output in pipe to other tools + # (less for example) + signal(SIGPIPE, SIG_DFL) + + # Main annotations program + autocomplete(_ARGPARSER) + args = _ARGPARSER.parse_args() + + if args.file is None: + args.file = autodetect_annotations() + if args.file is None: + arg_fail( + _ARGPARSER, + "error: could not determine DEBDIR, try using: --file/-f", + show_usage=False, + ) + + if args.config and not args.config.startswith("CONFIG_"): + args.config = "CONFIG_" + args.config + + if args.value: + do_write(args) + elif args.note: + do_note(args) + elif args.export: + do_export(args) + elif args.import_file: + do_import(args) + elif args.update_file: + do_update(args) + elif args.check_file: + do_check(args) + elif args.autocomplete: + do_autocomplete(args) + elif args.source: + do_source(args) + else: + do_query(args) + + +if __name__ == "__main__": + main() diff --git a/debian/scripts/misc/kconfig/utils.py b/debian/scripts/misc/kconfig/utils.py new file mode 100644 index 0000000000000..f4ced6b33f4a0 --- /dev/null +++ b/debian/scripts/misc/kconfig/utils.py @@ -0,0 +1,20 @@ +# -*- mode: python -*- +# Misc helpers for Kconfig and annotations +# Copyright © 2023 Canonical Ltd. + +import sys + + +def autodetect_annotations(): + try: + with open("debian/debian.env", "rt", encoding="utf-8") as fd: + return fd.read().rstrip().split("=")[1] + "/config/annotations" + except (FileNotFoundError, IndexError): + return None + + +def arg_fail(parser, message, show_usage=True): + print(message) + if show_usage: + parser.print_usage() + sys.exit(1) diff --git a/debian/scripts/misc/kconfig/version.py b/debian/scripts/misc/kconfig/version.py new file mode 100644 index 0000000000000..833ffa34654bb --- /dev/null +++ b/debian/scripts/misc/kconfig/version.py @@ -0,0 +1,10 @@ +# -*- mode: python -*- +# version of annotations module +# Copyright © 2022 Canonical Ltd. + +VERSION = "0.1" + +ANNOTATIONS_FORMAT_VERSION = 5 + +if __name__ == "__main__": + print(VERSION) diff --git a/delphix b/delphix new file mode 100644 index 0000000000000..e69de29bb2d1d diff --git a/drivers/acpi/acpi_fpdt.c b/drivers/acpi/acpi_fpdt.c index a2056c4c8cb70..271092f2700a1 100644 --- a/drivers/acpi/acpi_fpdt.c +++ b/drivers/acpi/acpi_fpdt.c @@ -194,12 +194,19 @@ static int fpdt_process_subtable(u64 address, u32 subtable_type) record_header = (void *)subtable_header + offset; offset += record_header->length; + if (!record_header->length) { + pr_err(FW_BUG "Zero-length record found in FPTD.\n"); + result = -EINVAL; + goto err; + } + switch (record_header->type) { case RECORD_S3_RESUME: if (subtable_type != SUBTABLE_S3PT) { pr_err(FW_BUG "Invalid record %d for subtable %s\n", record_header->type, signature); - return -EINVAL; + result = -EINVAL; + goto err; } if (record_resume) { pr_err("Duplicate resume performance record found.\n"); @@ -208,7 +215,7 @@ static int fpdt_process_subtable(u64 address, u32 subtable_type) record_resume = (struct resume_performance_record *)record_header; result = sysfs_create_group(fpdt_kobj, &resume_attr_group); if (result) - return result; + goto err; break; case RECORD_S3_SUSPEND: if (subtable_type != SUBTABLE_S3PT) { @@ -223,13 +230,14 @@ static int fpdt_process_subtable(u64 address, u32 subtable_type) record_suspend = (struct suspend_performance_record *)record_header; result = sysfs_create_group(fpdt_kobj, &suspend_attr_group); if (result) - return result; + goto err; break; case RECORD_BOOT: if (subtable_type != SUBTABLE_FBPT) { pr_err(FW_BUG "Invalid %d for subtable %s\n", record_header->type, signature); - return -EINVAL; + result = -EINVAL; + goto err; } if (record_boot) { pr_err("Duplicate boot performance record found.\n"); @@ -238,7 +246,7 @@ static int fpdt_process_subtable(u64 address, u32 subtable_type) record_boot = (struct boot_performance_record *)record_header; result = sysfs_create_group(fpdt_kobj, &boot_attr_group); if (result) - return result; + goto err; break; default: @@ -247,6 +255,18 @@ static int fpdt_process_subtable(u64 address, u32 subtable_type) } } return 0; + +err: + if (record_boot) + sysfs_remove_group(fpdt_kobj, &boot_attr_group); + + if (record_suspend) + sysfs_remove_group(fpdt_kobj, &suspend_attr_group); + + if (record_resume) + sysfs_remove_group(fpdt_kobj, &resume_attr_group); + + return result; } static int __init acpi_init_fpdt(void) @@ -255,6 +275,7 @@ static int __init acpi_init_fpdt(void) struct acpi_table_header *header; struct fpdt_subtable_entry *subtable; u32 offset = sizeof(*header); + int result; status = acpi_get_table(ACPI_SIG_FPDT, 0, &header); @@ -263,8 +284,8 @@ static int __init acpi_init_fpdt(void) fpdt_kobj = kobject_create_and_add("fpdt", acpi_kobj); if (!fpdt_kobj) { - acpi_put_table(header); - return -ENOMEM; + result = -ENOMEM; + goto err_nomem; } while (offset < header->length) { @@ -272,8 +293,10 @@ static int __init acpi_init_fpdt(void) switch (subtable->type) { case SUBTABLE_FBPT: case SUBTABLE_S3PT: - fpdt_process_subtable(subtable->address, + result = fpdt_process_subtable(subtable->address, subtable->type); + if (result) + goto err_subtable; break; default: /* Other types are reserved in ACPI 6.4 spec. */ @@ -282,6 +305,12 @@ static int __init acpi_init_fpdt(void) offset += sizeof(*subtable); } return 0; +err_subtable: + kobject_put(fpdt_kobj); + +err_nomem: + acpi_put_table(header); + return result; } fs_initcall(acpi_init_fpdt); diff --git a/drivers/acpi/acpica/psopcode.c b/drivers/acpi/acpica/psopcode.c index 3e80eb1a5f35c..590326c200a28 100644 --- a/drivers/acpi/acpica/psopcode.c +++ b/drivers/acpi/acpica/psopcode.c @@ -603,7 +603,7 @@ const struct acpi_opcode_info acpi_gbl_aml_op_info[AML_NUM_OPCODES] = { /* 7E */ ACPI_OP("Timer", ARGP_TIMER_OP, ARGI_TIMER_OP, ACPI_TYPE_ANY, AML_CLASS_EXECUTE, AML_TYPE_EXEC_0A_0T_1R, - AML_FLAGS_EXEC_0A_0T_1R), + AML_FLAGS_EXEC_0A_0T_1R | AML_NO_OPERAND_RESOLVE), /* ACPI 5.0 opcodes */ diff --git a/drivers/acpi/arm64/iort.c b/drivers/acpi/arm64/iort.c index f2f8f05662deb..3dd74ad95d01b 100644 --- a/drivers/acpi/arm64/iort.c +++ b/drivers/acpi/arm64/iort.c @@ -1381,7 +1381,10 @@ static void __init arm_smmu_v3_pmcg_init_resources(struct resource *res, static struct acpi_platform_list pmcg_plat_info[] __initdata = { /* HiSilicon Hip08 Platform */ {"HISI ", "HIP08 ", 0, ACPI_SIG_IORT, greater_than_or_equal, - "Erratum #162001800", IORT_SMMU_V3_PMCG_HISI_HIP08}, + "Erratum #162001800, Erratum #162001900", IORT_SMMU_V3_PMCG_HISI_HIP08}, + /* HiSilicon Hip09 Platform */ + {"HISI ", "HIP09 ", 0, ACPI_SIG_IORT, greater_than_or_equal, + "Erratum #162001900", IORT_SMMU_V3_PMCG_HISI_HIP09}, { } }; diff --git a/drivers/acpi/device_sysfs.c b/drivers/acpi/device_sysfs.c index 61271e61c3073..da9cd11adfb56 100644 --- a/drivers/acpi/device_sysfs.c +++ b/drivers/acpi/device_sysfs.c @@ -157,8 +157,8 @@ static int create_pnp_modalias(struct acpi_device *acpi_dev, char *modalias, return 0; len = snprintf(modalias, size, "acpi:"); - if (len <= 0) - return len; + if (len >= size) + return -ENOMEM; size -= len; @@ -211,8 +211,10 @@ static int create_of_modalias(struct acpi_device *acpi_dev, char *modalias, len = snprintf(modalias, size, "of:N%sT", (char *)buf.pointer); ACPI_FREE(buf.pointer); - if (len <= 0) - return len; + if (len >= size) + return -ENOMEM; + + size -= len; of_compatible = acpi_dev->data.of_compatible; if (of_compatible->type == ACPI_TYPE_PACKAGE) { diff --git a/drivers/acpi/irq.c b/drivers/acpi/irq.c index c68e694fca261..12812319996f1 100644 --- a/drivers/acpi/irq.c +++ b/drivers/acpi/irq.c @@ -52,6 +52,7 @@ int acpi_register_gsi(struct device *dev, u32 gsi, int trigger, int polarity) { struct irq_fwspec fwspec; + unsigned int irq; if (WARN_ON(!acpi_gsi_domain_id)) { pr_warn("GSI: No registered irqchip, giving up\n"); @@ -63,7 +64,11 @@ int acpi_register_gsi(struct device *dev, u32 gsi, int trigger, fwspec.param[1] = acpi_dev_get_irq_type(trigger, polarity); fwspec.param_count = 2; - return irq_create_fwspec_mapping(&fwspec); + irq = irq_create_fwspec_mapping(&fwspec); + if (!irq) + return -EINVAL; + + return irq; } EXPORT_SYMBOL_GPL(acpi_register_gsi); diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c index 74d15cfba4037..4e1bba89bb8ff 100644 --- a/drivers/acpi/resource.c +++ b/drivers/acpi/resource.c @@ -439,6 +439,20 @@ static const struct dmi_system_id lenovo_laptop[] = { DMI_MATCH(DMI_PRODUCT_NAME, "82R9"), }, }, + { + .ident = "Asus ExpertBook B1402CBA", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_BOARD_NAME, "B1402CBA"), + }, + }, + { + /* Asus ExpertBook B1402CVA */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_BOARD_NAME, "B1402CVA"), + }, + }, { .ident = "LENOVO IdeaPad Flex 5 16ALC7", .matches = { @@ -467,6 +481,18 @@ static const struct dmi_system_id maingear_laptop[] = { DMI_MATCH(DMI_PRODUCT_NAME, "MG-VCP2-15A3070T"), } }, + { + /* TongFang GMxXGxx/TUXEDO Polaris 15 Gen5 AMD */ + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "GMxXGxx"), + }, + }, + { + /* TongFang GM6XGxX/TUXEDO Stellaris 16 Gen5 AMD */ + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "GM6XGxX"), + }, + }, { .ident = "MAINGEAR Vector Pro 2 17", .matches = { diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c index 2cdf6304c3393..632d3bb0030ec 100644 --- a/drivers/acpi/scan.c +++ b/drivers/acpi/scan.c @@ -1448,6 +1448,7 @@ enum dev_dma_attr acpi_get_dma_attr(struct acpi_device *adev) else return DEV_DMA_NON_COHERENT; } +EXPORT_SYMBOL_GPL(acpi_get_dma_attr); /** * acpi_dma_get_range() - Get device DMA parameters. diff --git a/drivers/acpi/video_detect.c b/drivers/acpi/video_detect.c index 038542b3a80a7..5afc42d52e49b 100644 --- a/drivers/acpi/video_detect.c +++ b/drivers/acpi/video_detect.c @@ -307,6 +307,15 @@ static const struct dmi_system_id video_detect_dmi_table[] = { DMI_MATCH(DMI_BOARD_NAME, "Lenovo IdeaPad S405"), }, }, + { + /* https://bugzilla.suse.com/show_bug.cgi?id=1208724 */ + .callback = video_detect_force_native, + /* Lenovo Ideapad Z470 */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "IdeaPad Z470"), + }, + }, { /* https://bugzilla.redhat.com/show_bug.cgi?id=1187004 */ .callback = video_detect_force_native, diff --git a/drivers/acpi/x86/s2idle.c b/drivers/acpi/x86/s2idle.c index 4a11a38764321..ada989670d9b8 100644 --- a/drivers/acpi/x86/s2idle.c +++ b/drivers/acpi/x86/s2idle.c @@ -111,6 +111,12 @@ static void lpi_device_get_constraints_amd(void) union acpi_object *package = &out_obj->package.elements[i]; if (package->type == ACPI_TYPE_PACKAGE) { + if (lpi_constraints_table) { + acpi_handle_err(lps0_device_handle, + "Duplicate constraints list\n"); + goto free_acpi_buffer; + } + lpi_constraints_table = kcalloc(package->package.count, sizeof(*lpi_constraints_table), GFP_KERNEL); @@ -121,17 +127,16 @@ static void lpi_device_get_constraints_amd(void) acpi_handle_debug(lps0_device_handle, "LPI: constraints list begin:\n"); - for (j = 0; j < package->package.count; ++j) { + for (j = 0; j < package->package.count; j++) { union acpi_object *info_obj = &package->package.elements[j]; struct lpi_device_constraint_amd dev_info = {}; struct lpi_constraints *list; acpi_status status; - for (k = 0; k < info_obj->package.count; ++k) { - union acpi_object *obj = &info_obj->package.elements[k]; + list = &lpi_constraints_table[lpi_constraints_table_size]; - list = &lpi_constraints_table[lpi_constraints_table_size]; - list->min_dstate = -1; + for (k = 0; k < info_obj->package.count; k++) { + union acpi_object *obj = &info_obj->package.elements[k]; switch (k) { case 0: @@ -147,27 +152,21 @@ static void lpi_device_get_constraints_amd(void) dev_info.min_dstate = obj->integer.value; break; } + } - if (!dev_info.enabled || !dev_info.name || - !dev_info.min_dstate) - continue; + if (!dev_info.enabled || !dev_info.name || + !dev_info.min_dstate) + continue; - status = acpi_get_handle(NULL, dev_info.name, - &list->handle); - if (ACPI_FAILURE(status)) - continue; + status = acpi_get_handle(NULL, dev_info.name, &list->handle); + if (ACPI_FAILURE(status)) + continue; - acpi_handle_debug(lps0_device_handle, - "Name:%s\n", dev_info.name); + acpi_handle_debug(lps0_device_handle, + "Name:%s\n", dev_info.name); - list->min_dstate = dev_info.min_dstate; + list->min_dstate = dev_info.min_dstate; - if (list->min_dstate < 0) { - acpi_handle_debug(lps0_device_handle, - "Incomplete constraint defined\n"); - continue; - } - } lpi_constraints_table_size++; } } @@ -212,7 +211,7 @@ static void lpi_device_get_constraints(void) if (!package) continue; - for (j = 0; j < package->package.count; ++j) { + for (j = 0; j < package->package.count; j++) { union acpi_object *element = &(package->package.elements[j]); @@ -244,7 +243,7 @@ static void lpi_device_get_constraints(void) constraint->min_dstate = -1; - for (j = 0; j < package_count; ++j) { + for (j = 0; j < package_count; j++) { union acpi_object *info_obj = &info.package[j]; union acpi_object *cnstr_pkg; union acpi_object *obj; diff --git a/drivers/amba/bus.c b/drivers/amba/bus.c index 6c0f7f4f7d1de..1af5ff9231eb0 100644 --- a/drivers/amba/bus.c +++ b/drivers/amba/bus.c @@ -366,6 +366,7 @@ static void amba_device_release(struct device *dev) { struct amba_device *d = to_amba_device(dev); + of_node_put(d->dev.of_node); if (d->res.parent) release_resource(&d->res); kfree(d); diff --git a/drivers/android/binder.c b/drivers/android/binder.c index 1760ec724b535..9ada98a9842c1 100644 --- a/drivers/android/binder.c +++ b/drivers/android/binder.c @@ -4627,6 +4627,7 @@ static void binder_release_work(struct binder_proc *proc, "undelivered TRANSACTION_ERROR: %u\n", e->cmd); } break; + case BINDER_WORK_TRANSACTION_ONEWAY_SPAM_SUSPECT: case BINDER_WORK_TRANSACTION_COMPLETE: { binder_debug(BINDER_DEBUG_DEAD_TRANSACTION, "undelivered TRANSACTION_COMPLETE\n"); diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index 149ee16fd0225..9331078323fea 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c @@ -50,7 +50,8 @@ enum board_ids { /* board IDs by feature in alphabetical order */ board_ahci, board_ahci_ign_iferr, - board_ahci_mobile, + board_ahci_low_power, + board_ahci_no_debounce_delay, board_ahci_nomsi, board_ahci_noncq, board_ahci_nosntf, @@ -135,13 +136,20 @@ static const struct ata_port_info ahci_port_info[] = { .udma_mask = ATA_UDMA6, .port_ops = &ahci_ops, }, - [board_ahci_mobile] = { + [board_ahci_low_power] = { AHCI_HFLAGS (AHCI_HFLAG_IS_MOBILE), .flags = AHCI_FLAG_COMMON, .pio_mask = ATA_PIO4, .udma_mask = ATA_UDMA6, .port_ops = &ahci_ops, }, + [board_ahci_no_debounce_delay] = { + .flags = AHCI_FLAG_COMMON, + .link_flags = ATA_LFLAG_NO_DEBOUNCE_DELAY, + .pio_mask = ATA_PIO4, + .udma_mask = ATA_UDMA6, + .port_ops = &ahci_ops, + }, [board_ahci_nomsi] = { AHCI_HFLAGS (AHCI_HFLAG_NO_MSI), .flags = AHCI_FLAG_COMMON, @@ -268,13 +276,13 @@ static const struct pci_device_id ahci_pci_tbl[] = { { PCI_VDEVICE(INTEL, 0x2924), board_ahci }, /* ICH9 */ { PCI_VDEVICE(INTEL, 0x2925), board_ahci }, /* ICH9 */ { PCI_VDEVICE(INTEL, 0x2927), board_ahci }, /* ICH9 */ - { PCI_VDEVICE(INTEL, 0x2929), board_ahci_mobile }, /* ICH9M */ - { PCI_VDEVICE(INTEL, 0x292a), board_ahci_mobile }, /* ICH9M */ - { PCI_VDEVICE(INTEL, 0x292b), board_ahci_mobile }, /* ICH9M */ - { PCI_VDEVICE(INTEL, 0x292c), board_ahci_mobile }, /* ICH9M */ - { PCI_VDEVICE(INTEL, 0x292f), board_ahci_mobile }, /* ICH9M */ + { PCI_VDEVICE(INTEL, 0x2929), board_ahci_low_power }, /* ICH9M */ + { PCI_VDEVICE(INTEL, 0x292a), board_ahci_low_power }, /* ICH9M */ + { PCI_VDEVICE(INTEL, 0x292b), board_ahci_low_power }, /* ICH9M */ + { PCI_VDEVICE(INTEL, 0x292c), board_ahci_low_power }, /* ICH9M */ + { PCI_VDEVICE(INTEL, 0x292f), board_ahci_low_power }, /* ICH9M */ { PCI_VDEVICE(INTEL, 0x294d), board_ahci }, /* ICH9 */ - { PCI_VDEVICE(INTEL, 0x294e), board_ahci_mobile }, /* ICH9M */ + { PCI_VDEVICE(INTEL, 0x294e), board_ahci_low_power }, /* ICH9M */ { PCI_VDEVICE(INTEL, 0x502a), board_ahci }, /* Tolapai */ { PCI_VDEVICE(INTEL, 0x502b), board_ahci }, /* Tolapai */ { PCI_VDEVICE(INTEL, 0x3a05), board_ahci }, /* ICH10 */ @@ -284,9 +292,9 @@ static const struct pci_device_id ahci_pci_tbl[] = { { PCI_VDEVICE(INTEL, 0x3b23), board_ahci }, /* PCH AHCI */ { PCI_VDEVICE(INTEL, 0x3b24), board_ahci }, /* PCH RAID */ { PCI_VDEVICE(INTEL, 0x3b25), board_ahci }, /* PCH RAID */ - { PCI_VDEVICE(INTEL, 0x3b29), board_ahci_mobile }, /* PCH M AHCI */ + { PCI_VDEVICE(INTEL, 0x3b29), board_ahci_low_power }, /* PCH M AHCI */ { PCI_VDEVICE(INTEL, 0x3b2b), board_ahci }, /* PCH RAID */ - { PCI_VDEVICE(INTEL, 0x3b2c), board_ahci_mobile }, /* PCH M RAID */ + { PCI_VDEVICE(INTEL, 0x3b2c), board_ahci_low_power }, /* PCH M RAID */ { PCI_VDEVICE(INTEL, 0x3b2f), board_ahci }, /* PCH AHCI */ { PCI_VDEVICE(INTEL, 0x19b0), board_ahci_pcs7 }, /* DNV AHCI */ { PCI_VDEVICE(INTEL, 0x19b1), board_ahci_pcs7 }, /* DNV AHCI */ @@ -309,9 +317,9 @@ static const struct pci_device_id ahci_pci_tbl[] = { { PCI_VDEVICE(INTEL, 0x19cE), board_ahci_pcs7 }, /* DNV AHCI */ { PCI_VDEVICE(INTEL, 0x19cF), board_ahci_pcs7 }, /* DNV AHCI */ { PCI_VDEVICE(INTEL, 0x1c02), board_ahci }, /* CPT AHCI */ - { PCI_VDEVICE(INTEL, 0x1c03), board_ahci_mobile }, /* CPT M AHCI */ + { PCI_VDEVICE(INTEL, 0x1c03), board_ahci_low_power }, /* CPT M AHCI */ { PCI_VDEVICE(INTEL, 0x1c04), board_ahci }, /* CPT RAID */ - { PCI_VDEVICE(INTEL, 0x1c05), board_ahci_mobile }, /* CPT M RAID */ + { PCI_VDEVICE(INTEL, 0x1c05), board_ahci_low_power }, /* CPT M RAID */ { PCI_VDEVICE(INTEL, 0x1c06), board_ahci }, /* CPT RAID */ { PCI_VDEVICE(INTEL, 0x1c07), board_ahci }, /* CPT RAID */ { PCI_VDEVICE(INTEL, 0x1d02), board_ahci }, /* PBG AHCI */ @@ -320,29 +328,29 @@ static const struct pci_device_id ahci_pci_tbl[] = { { PCI_VDEVICE(INTEL, 0x2826), board_ahci }, /* PBG RAID */ { PCI_VDEVICE(INTEL, 0x2323), board_ahci }, /* DH89xxCC AHCI */ { PCI_VDEVICE(INTEL, 0x1e02), board_ahci }, /* Panther Point AHCI */ - { PCI_VDEVICE(INTEL, 0x1e03), board_ahci_mobile }, /* Panther M AHCI */ + { PCI_VDEVICE(INTEL, 0x1e03), board_ahci_low_power }, /* Panther M AHCI */ { PCI_VDEVICE(INTEL, 0x1e04), board_ahci }, /* Panther Point RAID */ { PCI_VDEVICE(INTEL, 0x1e05), board_ahci }, /* Panther Point RAID */ { PCI_VDEVICE(INTEL, 0x1e06), board_ahci }, /* Panther Point RAID */ - { PCI_VDEVICE(INTEL, 0x1e07), board_ahci_mobile }, /* Panther M RAID */ + { PCI_VDEVICE(INTEL, 0x1e07), board_ahci_low_power }, /* Panther M RAID */ { PCI_VDEVICE(INTEL, 0x1e0e), board_ahci }, /* Panther Point RAID */ { PCI_VDEVICE(INTEL, 0x8c02), board_ahci }, /* Lynx Point AHCI */ - { PCI_VDEVICE(INTEL, 0x8c03), board_ahci_mobile }, /* Lynx M AHCI */ + { PCI_VDEVICE(INTEL, 0x8c03), board_ahci_low_power }, /* Lynx M AHCI */ { PCI_VDEVICE(INTEL, 0x8c04), board_ahci }, /* Lynx Point RAID */ - { PCI_VDEVICE(INTEL, 0x8c05), board_ahci_mobile }, /* Lynx M RAID */ + { PCI_VDEVICE(INTEL, 0x8c05), board_ahci_low_power }, /* Lynx M RAID */ { PCI_VDEVICE(INTEL, 0x8c06), board_ahci }, /* Lynx Point RAID */ - { PCI_VDEVICE(INTEL, 0x8c07), board_ahci_mobile }, /* Lynx M RAID */ + { PCI_VDEVICE(INTEL, 0x8c07), board_ahci_low_power }, /* Lynx M RAID */ { PCI_VDEVICE(INTEL, 0x8c0e), board_ahci }, /* Lynx Point RAID */ - { PCI_VDEVICE(INTEL, 0x8c0f), board_ahci_mobile }, /* Lynx M RAID */ - { PCI_VDEVICE(INTEL, 0x9c02), board_ahci_mobile }, /* Lynx LP AHCI */ - { PCI_VDEVICE(INTEL, 0x9c03), board_ahci_mobile }, /* Lynx LP AHCI */ - { PCI_VDEVICE(INTEL, 0x9c04), board_ahci_mobile }, /* Lynx LP RAID */ - { PCI_VDEVICE(INTEL, 0x9c05), board_ahci_mobile }, /* Lynx LP RAID */ - { PCI_VDEVICE(INTEL, 0x9c06), board_ahci_mobile }, /* Lynx LP RAID */ - { PCI_VDEVICE(INTEL, 0x9c07), board_ahci_mobile }, /* Lynx LP RAID */ - { PCI_VDEVICE(INTEL, 0x9c0e), board_ahci_mobile }, /* Lynx LP RAID */ - { PCI_VDEVICE(INTEL, 0x9c0f), board_ahci_mobile }, /* Lynx LP RAID */ - { PCI_VDEVICE(INTEL, 0x9dd3), board_ahci_mobile }, /* Cannon Lake PCH-LP AHCI */ + { PCI_VDEVICE(INTEL, 0x8c0f), board_ahci_low_power }, /* Lynx M RAID */ + { PCI_VDEVICE(INTEL, 0x9c02), board_ahci_low_power }, /* Lynx LP AHCI */ + { PCI_VDEVICE(INTEL, 0x9c03), board_ahci_low_power }, /* Lynx LP AHCI */ + { PCI_VDEVICE(INTEL, 0x9c04), board_ahci_low_power }, /* Lynx LP RAID */ + { PCI_VDEVICE(INTEL, 0x9c05), board_ahci_low_power }, /* Lynx LP RAID */ + { PCI_VDEVICE(INTEL, 0x9c06), board_ahci_low_power }, /* Lynx LP RAID */ + { PCI_VDEVICE(INTEL, 0x9c07), board_ahci_low_power }, /* Lynx LP RAID */ + { PCI_VDEVICE(INTEL, 0x9c0e), board_ahci_low_power }, /* Lynx LP RAID */ + { PCI_VDEVICE(INTEL, 0x9c0f), board_ahci_low_power }, /* Lynx LP RAID */ + { PCI_VDEVICE(INTEL, 0x9dd3), board_ahci_low_power }, /* Cannon Lake PCH-LP AHCI */ { PCI_VDEVICE(INTEL, 0x1f22), board_ahci }, /* Avoton AHCI */ { PCI_VDEVICE(INTEL, 0x1f23), board_ahci }, /* Avoton AHCI */ { PCI_VDEVICE(INTEL, 0x1f24), board_ahci }, /* Avoton RAID */ @@ -374,26 +382,26 @@ static const struct pci_device_id ahci_pci_tbl[] = { { PCI_VDEVICE(INTEL, 0x8d66), board_ahci }, /* Wellsburg RAID */ { PCI_VDEVICE(INTEL, 0x8d6e), board_ahci }, /* Wellsburg RAID */ { PCI_VDEVICE(INTEL, 0x23a3), board_ahci }, /* Coleto Creek AHCI */ - { PCI_VDEVICE(INTEL, 0x9c83), board_ahci_mobile }, /* Wildcat LP AHCI */ - { PCI_VDEVICE(INTEL, 0x9c85), board_ahci_mobile }, /* Wildcat LP RAID */ - { PCI_VDEVICE(INTEL, 0x9c87), board_ahci_mobile }, /* Wildcat LP RAID */ - { PCI_VDEVICE(INTEL, 0x9c8f), board_ahci_mobile }, /* Wildcat LP RAID */ + { PCI_VDEVICE(INTEL, 0x9c83), board_ahci_low_power }, /* Wildcat LP AHCI */ + { PCI_VDEVICE(INTEL, 0x9c85), board_ahci_low_power }, /* Wildcat LP RAID */ + { PCI_VDEVICE(INTEL, 0x9c87), board_ahci_low_power }, /* Wildcat LP RAID */ + { PCI_VDEVICE(INTEL, 0x9c8f), board_ahci_low_power }, /* Wildcat LP RAID */ { PCI_VDEVICE(INTEL, 0x8c82), board_ahci }, /* 9 Series AHCI */ - { PCI_VDEVICE(INTEL, 0x8c83), board_ahci_mobile }, /* 9 Series M AHCI */ + { PCI_VDEVICE(INTEL, 0x8c83), board_ahci_low_power }, /* 9 Series M AHCI */ { PCI_VDEVICE(INTEL, 0x8c84), board_ahci }, /* 9 Series RAID */ - { PCI_VDEVICE(INTEL, 0x8c85), board_ahci_mobile }, /* 9 Series M RAID */ + { PCI_VDEVICE(INTEL, 0x8c85), board_ahci_low_power }, /* 9 Series M RAID */ { PCI_VDEVICE(INTEL, 0x8c86), board_ahci }, /* 9 Series RAID */ - { PCI_VDEVICE(INTEL, 0x8c87), board_ahci_mobile }, /* 9 Series M RAID */ + { PCI_VDEVICE(INTEL, 0x8c87), board_ahci_low_power }, /* 9 Series M RAID */ { PCI_VDEVICE(INTEL, 0x8c8e), board_ahci }, /* 9 Series RAID */ - { PCI_VDEVICE(INTEL, 0x8c8f), board_ahci_mobile }, /* 9 Series M RAID */ - { PCI_VDEVICE(INTEL, 0x9d03), board_ahci_mobile }, /* Sunrise LP AHCI */ - { PCI_VDEVICE(INTEL, 0x9d05), board_ahci_mobile }, /* Sunrise LP RAID */ - { PCI_VDEVICE(INTEL, 0x9d07), board_ahci_mobile }, /* Sunrise LP RAID */ + { PCI_VDEVICE(INTEL, 0x8c8f), board_ahci_low_power }, /* 9 Series M RAID */ + { PCI_VDEVICE(INTEL, 0x9d03), board_ahci_low_power }, /* Sunrise LP AHCI */ + { PCI_VDEVICE(INTEL, 0x9d05), board_ahci_low_power }, /* Sunrise LP RAID */ + { PCI_VDEVICE(INTEL, 0x9d07), board_ahci_low_power }, /* Sunrise LP RAID */ { PCI_VDEVICE(INTEL, 0xa102), board_ahci }, /* Sunrise Point-H AHCI */ - { PCI_VDEVICE(INTEL, 0xa103), board_ahci_mobile }, /* Sunrise M AHCI */ + { PCI_VDEVICE(INTEL, 0xa103), board_ahci_low_power }, /* Sunrise M AHCI */ { PCI_VDEVICE(INTEL, 0xa105), board_ahci }, /* Sunrise Point-H RAID */ { PCI_VDEVICE(INTEL, 0xa106), board_ahci }, /* Sunrise Point-H RAID */ - { PCI_VDEVICE(INTEL, 0xa107), board_ahci_mobile }, /* Sunrise M RAID */ + { PCI_VDEVICE(INTEL, 0xa107), board_ahci_low_power }, /* Sunrise M RAID */ { PCI_VDEVICE(INTEL, 0xa10f), board_ahci }, /* Sunrise Point-H RAID */ { PCI_VDEVICE(INTEL, 0x2822), board_ahci }, /* Lewisburg RAID*/ { PCI_VDEVICE(INTEL, 0x2823), board_ahci }, /* Lewisburg AHCI*/ @@ -410,13 +418,16 @@ static const struct pci_device_id ahci_pci_tbl[] = { { PCI_VDEVICE(INTEL, 0xa356), board_ahci }, /* Cannon Lake PCH-H RAID */ { PCI_VDEVICE(INTEL, 0x06d7), board_ahci }, /* Comet Lake-H RAID */ { PCI_VDEVICE(INTEL, 0xa386), board_ahci }, /* Comet Lake PCH-V RAID */ - { PCI_VDEVICE(INTEL, 0x0f22), board_ahci_mobile }, /* Bay Trail AHCI */ - { PCI_VDEVICE(INTEL, 0x0f23), board_ahci_mobile }, /* Bay Trail AHCI */ - { PCI_VDEVICE(INTEL, 0x22a3), board_ahci_mobile }, /* Cherry Tr. AHCI */ - { PCI_VDEVICE(INTEL, 0x5ae3), board_ahci_mobile }, /* ApolloLake AHCI */ - { PCI_VDEVICE(INTEL, 0x34d3), board_ahci_mobile }, /* Ice Lake LP AHCI */ - { PCI_VDEVICE(INTEL, 0x02d3), board_ahci_mobile }, /* Comet Lake PCH-U AHCI */ - { PCI_VDEVICE(INTEL, 0x02d7), board_ahci_mobile }, /* Comet Lake PCH RAID */ + { PCI_VDEVICE(INTEL, 0x0f22), board_ahci_low_power }, /* Bay Trail AHCI */ + { PCI_VDEVICE(INTEL, 0x0f23), board_ahci_low_power }, /* Bay Trail AHCI */ + { PCI_VDEVICE(INTEL, 0x22a3), board_ahci_low_power }, /* Cherry Tr. AHCI */ + { PCI_VDEVICE(INTEL, 0x5ae3), board_ahci_low_power }, /* ApolloLake AHCI */ + { PCI_VDEVICE(INTEL, 0x34d3), board_ahci_low_power }, /* Ice Lake LP AHCI */ + { PCI_VDEVICE(INTEL, 0x02d3), board_ahci_low_power }, /* Comet Lake PCH-U AHCI */ + { PCI_VDEVICE(INTEL, 0x02d7), board_ahci_low_power }, /* Comet Lake PCH RAID */ + /* Elkhart Lake IDs 0x4b60 & 0x4b62 https://sata-io.org/product/8803 not tested yet */ + { PCI_VDEVICE(INTEL, 0x4b63), board_ahci_low_power }, /* Elkhart Lake AHCI */ + { PCI_VDEVICE(INTEL, 0x7ae2), board_ahci_low_power }, /* Alder Lake-P AHCI */ /* JMicron 360/1/3/5/6, match class to avoid IDE function */ { PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, @@ -442,8 +453,9 @@ static const struct pci_device_id ahci_pci_tbl[] = { board_ahci_al }, /* AMD */ { PCI_VDEVICE(AMD, 0x7800), board_ahci }, /* AMD Hudson-2 */ + { PCI_VDEVICE(AMD, 0x7801), board_ahci_no_debounce_delay }, /* AMD Hudson-2 (AHCI mode) */ { PCI_VDEVICE(AMD, 0x7900), board_ahci }, /* AMD CZ */ - { PCI_VDEVICE(AMD, 0x7901), board_ahci_mobile }, /* AMD Green Sardine */ + { PCI_VDEVICE(AMD, 0x7901), board_ahci_low_power }, /* AMD Green Sardine */ /* AMD is using RAID class only for ahci controllers */ { PCI_VENDOR_ID_AMD, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_STORAGE_RAID << 8, 0xffffff, board_ahci }, @@ -707,7 +719,7 @@ static void ahci_pci_init_controller(struct ata_host *host) /* clear port IRQ */ tmp = readl(port_mmio + PORT_IRQ_STAT); - VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp); + dev_dbg(&pdev->dev, "PORT_IRQ_STAT 0x%x\n", tmp); if (tmp) writel(tmp, port_mmio + PORT_IRQ_STAT); } @@ -1499,7 +1511,6 @@ static irqreturn_t ahci_thunderx_irq_handler(int irq, void *dev_instance) u32 irq_stat, irq_masked; unsigned int handled = 1; - VPRINTK("ENTER\n"); hpriv = host->private_data; mmio = hpriv->mmio; irq_stat = readl(mmio + HOST_IRQ_STAT); @@ -1516,7 +1527,6 @@ static irqreturn_t ahci_thunderx_irq_handler(int irq, void *dev_instance) irq_stat = readl(mmio + HOST_IRQ_STAT); spin_unlock(&host->lock); } while (irq_stat); - VPRINTK("EXIT\n"); return IRQ_RETVAL(handled); } @@ -1886,6 +1896,15 @@ static int ahci_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) else dev_info(&pdev->dev, "SSS flag set, parallel bus scan disabled\n"); + if (!(hpriv->cap & HOST_CAP_PART)) + host->flags |= ATA_HOST_NO_PART; + + if (!(hpriv->cap & HOST_CAP_SSC)) + host->flags |= ATA_HOST_NO_SSC; + + if (!(hpriv->cap2 & HOST_CAP2_SDS)) + host->flags |= ATA_HOST_NO_DEVSLP; + if (pi.flags & ATA_FLAG_EM) ahci_reset_em(host); diff --git a/drivers/ata/ahci_brcm.c b/drivers/ata/ahci_brcm.c index 6e9c5ade4c2ea..649815c196ed0 100644 --- a/drivers/ata/ahci_brcm.c +++ b/drivers/ata/ahci_brcm.c @@ -333,7 +333,7 @@ static struct ata_port_operations ahci_brcm_platform_ops = { static const struct ata_port_info ahci_brcm_port_info = { .flags = AHCI_FLAG_COMMON | ATA_FLAG_NO_DIPM, - .link_flags = ATA_LFLAG_NO_DB_DELAY, + .link_flags = ATA_LFLAG_NO_DEBOUNCE_DELAY, .pio_mask = ATA_PIO4, .udma_mask = ATA_UDMA6, .port_ops = &ahci_brcm_platform_ops, diff --git a/drivers/ata/ahci_xgene.c b/drivers/ata/ahci_xgene.c index 292099410cf68..c1f61d255bc31 100644 --- a/drivers/ata/ahci_xgene.c +++ b/drivers/ata/ahci_xgene.c @@ -588,8 +588,6 @@ static irqreturn_t xgene_ahci_irq_intr(int irq, void *dev_instance) void __iomem *mmio; u32 irq_stat, irq_masked; - VPRINTK("ENTER\n"); - hpriv = host->private_data; mmio = hpriv->mmio; @@ -612,8 +610,6 @@ static irqreturn_t xgene_ahci_irq_intr(int irq, void *dev_instance) spin_unlock(&host->lock); - VPRINTK("EXIT\n"); - return IRQ_RETVAL(rc); } diff --git a/drivers/ata/libahci.c b/drivers/ata/libahci.c index 192115a45dd78..e22d45fb8ebdc 100644 --- a/drivers/ata/libahci.c +++ b/drivers/ata/libahci.c @@ -1200,6 +1200,26 @@ static ssize_t ahci_activity_show(struct ata_device *dev, char *buf) return sprintf(buf, "%d\n", emp->blink_policy); } +static void ahci_port_clear_pending_irq(struct ata_port *ap) +{ + struct ahci_host_priv *hpriv = ap->host->private_data; + void __iomem *port_mmio = ahci_port_base(ap); + u32 tmp; + + /* clear SError */ + tmp = readl(port_mmio + PORT_SCR_ERR); + dev_dbg(ap->host->dev, "PORT_SCR_ERR 0x%x\n", tmp); + writel(tmp, port_mmio + PORT_SCR_ERR); + + /* clear port IRQ */ + tmp = readl(port_mmio + PORT_IRQ_STAT); + dev_dbg(ap->host->dev, "PORT_IRQ_STAT 0x%x\n", tmp); + if (tmp) + writel(tmp, port_mmio + PORT_IRQ_STAT); + + writel(1 << ap->port_no, hpriv->mmio + HOST_IRQ_STAT); +} + static void ahci_port_init(struct device *dev, struct ata_port *ap, int port_no, void __iomem *mmio, void __iomem *port_mmio) @@ -1214,18 +1234,7 @@ static void ahci_port_init(struct device *dev, struct ata_port *ap, if (rc) dev_warn(dev, "%s (%d)\n", emsg, rc); - /* clear SError */ - tmp = readl(port_mmio + PORT_SCR_ERR); - VPRINTK("PORT_SCR_ERR 0x%x\n", tmp); - writel(tmp, port_mmio + PORT_SCR_ERR); - - /* clear port IRQ */ - tmp = readl(port_mmio + PORT_IRQ_STAT); - VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp); - if (tmp) - writel(tmp, port_mmio + PORT_IRQ_STAT); - - writel(1 << port_no, mmio + HOST_IRQ_STAT); + ahci_port_clear_pending_irq(ap); /* mark esata ports */ tmp = readl(port_mmio + PORT_CMD); @@ -1252,10 +1261,10 @@ void ahci_init_controller(struct ata_host *host) } tmp = readl(mmio + HOST_CTL); - VPRINTK("HOST_CTL 0x%x\n", tmp); + dev_dbg(host->dev, "HOST_CTL 0x%x\n", tmp); writel(tmp | HOST_IRQ_EN, mmio + HOST_CTL); tmp = readl(mmio + HOST_CTL); - VPRINTK("HOST_CTL 0x%x\n", tmp); + dev_dbg(host->dev, "HOST_CTL 0x%x\n", tmp); } EXPORT_SYMBOL_GPL(ahci_init_controller); @@ -1555,6 +1564,8 @@ int ahci_do_hardreset(struct ata_link *link, unsigned int *class, tf.status = ATA_BUSY; ata_tf_to_fis(&tf, 0, 0, d2h_fis); + ahci_port_clear_pending_irq(ap); + rc = sata_link_hardreset(link, timing, deadline, online, ahci_check_ready); @@ -1906,8 +1917,6 @@ static irqreturn_t ahci_multi_irqs_intr_hard(int irq, void *dev_instance) void __iomem *port_mmio = ahci_port_base(ap); u32 status; - VPRINTK("ENTER\n"); - status = readl(port_mmio + PORT_IRQ_STAT); writel(status, port_mmio + PORT_IRQ_STAT); @@ -1915,8 +1924,6 @@ static irqreturn_t ahci_multi_irqs_intr_hard(int irq, void *dev_instance) ahci_handle_port_interrupt(ap, port_mmio, status); spin_unlock(ap->lock); - VPRINTK("EXIT\n"); - return IRQ_HANDLED; } @@ -1933,9 +1940,7 @@ u32 ahci_handle_port_intr(struct ata_host *host, u32 irq_masked) ap = host->ports[i]; if (ap) { ahci_port_intr(ap); - VPRINTK("port %u\n", i); } else { - VPRINTK("port %u (no irq)\n", i); if (ata_ratelimit()) dev_warn(host->dev, "interrupt on disabled port %u\n", i); @@ -1956,8 +1961,6 @@ static irqreturn_t ahci_single_level_irq_intr(int irq, void *dev_instance) void __iomem *mmio; u32 irq_stat, irq_masked; - VPRINTK("ENTER\n"); - hpriv = host->private_data; mmio = hpriv->mmio; @@ -1985,8 +1988,6 @@ static irqreturn_t ahci_single_level_irq_intr(int irq, void *dev_instance) spin_unlock(&host->lock); - VPRINTK("EXIT\n"); - return IRQ_RETVAL(rc); } diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c index 54505d9e0520b..29cd0682ade48 100644 --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c @@ -2382,7 +2382,7 @@ static int ata_dev_config_lba(struct ata_device *dev) struct ata_port *ap = dev->link->ap; const u16 *id = dev->id; const char *lba_desc; - char ncq_desc[24]; + char ncq_desc[32]; int ret; dev->flags |= ATA_DFLAG_LBA; @@ -4999,17 +4999,19 @@ static void ata_port_request_pm(struct ata_port *ap, pm_message_t mesg, struct ata_link *link; unsigned long flags; - /* Previous resume operation might still be in - * progress. Wait for PM_PENDING to clear. + spin_lock_irqsave(ap->lock, flags); + + /* + * A previous PM operation might still be in progress. Wait for + * ATA_PFLAG_PM_PENDING to clear. */ if (ap->pflags & ATA_PFLAG_PM_PENDING) { + spin_unlock_irqrestore(ap->lock, flags); ata_port_wait_eh(ap); - WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING); + spin_lock_irqsave(ap->lock, flags); } - /* request PM ops to EH */ - spin_lock_irqsave(ap->lock, flags); - + /* Request PM operation to EH */ ap->pm_mesg = mesg; ap->pflags |= ATA_PFLAG_PM_PENDING; ata_for_each_link(link, ap, HOST_FIRST) { @@ -5021,10 +5023,8 @@ static void ata_port_request_pm(struct ata_port *ap, pm_message_t mesg, spin_unlock_irqrestore(ap->lock, flags); - if (!async) { + if (!async) ata_port_wait_eh(ap); - WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING); - } } /* @@ -5192,7 +5192,7 @@ EXPORT_SYMBOL_GPL(ata_host_resume); #endif const struct device_type ata_port_type = { - .name = "ata_port", + .name = ATA_PORT_TYPE_NAME, #ifdef CONFIG_PM .pm = &ata_port_pm_ops, #endif @@ -5940,11 +5940,30 @@ static void ata_port_detach(struct ata_port *ap) if (!ap->ops->error_handler) goto skip_eh; - /* tell EH we're leaving & flush EH */ + /* Wait for any ongoing EH */ + ata_port_wait_eh(ap); + + mutex_lock(&ap->scsi_scan_mutex); spin_lock_irqsave(ap->lock, flags); + + /* Remove scsi devices */ + ata_for_each_link(link, ap, HOST_FIRST) { + ata_for_each_dev(dev, link, ALL) { + if (dev->sdev) { + spin_unlock_irqrestore(ap->lock, flags); + scsi_remove_device(dev->sdev); + spin_lock_irqsave(ap->lock, flags); + dev->sdev = NULL; + } + } + } + + /* Tell EH to disable all devices */ ap->pflags |= ATA_PFLAG_UNLOADING; ata_port_schedule_eh(ap); + spin_unlock_irqrestore(ap->lock, flags); + mutex_unlock(&ap->scsi_scan_mutex); /* wait till EH commits suicide */ ata_port_wait_eh(ap); diff --git a/drivers/ata/libata-eh.c b/drivers/ata/libata-eh.c index bbd87f47bc7c5..ff95a91ed2e8c 100644 --- a/drivers/ata/libata-eh.c +++ b/drivers/ata/libata-eh.c @@ -2223,7 +2223,7 @@ static void ata_eh_link_report(struct ata_link *link) struct ata_eh_context *ehc = &link->eh_context; struct ata_queued_cmd *qc; const char *frozen, *desc; - char tries_buf[6] = ""; + char tries_buf[16] = ""; int tag, nr_failed = 0; if (ehc->i.flags & ATA_EHI_QUIET) @@ -2703,18 +2703,11 @@ int ata_eh_reset(struct ata_link *link, int classify, postreset(slave, classes); } - /* - * Some controllers can't be frozen very well and may set spurious - * error conditions during reset. Clear accumulated error - * information and re-thaw the port if frozen. As reset is the - * final recovery action and we cross check link onlineness against - * device classification later, no hotplug event is lost by this. - */ + /* clear cached SError */ spin_lock_irqsave(link->ap->lock, flags); - memset(&link->eh_info, 0, sizeof(link->eh_info)); + link->eh_info.serror = 0; if (slave) - memset(&slave->eh_info, 0, sizeof(link->eh_info)); - ap->pflags &= ~ATA_PFLAG_EH_PENDING; + slave->eh_info.serror = 0; spin_unlock_irqrestore(link->ap->lock, flags); if (ap->pflags & ATA_PFLAG_FROZEN) diff --git a/drivers/ata/libata-sata.c b/drivers/ata/libata-sata.c index b5aa525d87603..04bdd53abf20b 100644 --- a/drivers/ata/libata-sata.c +++ b/drivers/ata/libata-sata.c @@ -317,7 +317,7 @@ int sata_link_resume(struct ata_link *link, const unsigned long *params, * immediately after resuming. Delay 200ms before * debouncing. */ - if (!(link->flags & ATA_LFLAG_NO_DB_DELAY)) + if (!(link->flags & ATA_LFLAG_NO_DEBOUNCE_DELAY)) ata_msleep(link->ap, 200); /* is SControl restored correctly? */ @@ -394,10 +394,23 @@ int sata_link_scr_lpm(struct ata_link *link, enum ata_lpm_policy policy, case ATA_LPM_MED_POWER_WITH_DIPM: case ATA_LPM_MIN_POWER_WITH_PARTIAL: case ATA_LPM_MIN_POWER: - if (ata_link_nr_enabled(link) > 0) - /* no restrictions on LPM transitions */ + if (ata_link_nr_enabled(link) > 0) { + /* assume no restrictions on LPM transitions */ scontrol &= ~(0x7 << 8); - else { + + /* + * If the controller does not support partial, slumber, + * or devsleep, then disallow these transitions. + */ + if (link->ap->host->flags & ATA_HOST_NO_PART) + scontrol |= (0x1 << 8); + + if (link->ap->host->flags & ATA_HOST_NO_SSC) + scontrol |= (0x2 << 8); + + if (link->ap->host->flags & ATA_HOST_NO_DEVSLP) + scontrol |= (0x4 << 8); + } else { /* empty port, power off */ scontrol &= ~0xf; scontrol |= (0x1 << 2); diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c index 01a6fc25c23b6..8ac44ad2c3d68 100644 --- a/drivers/ata/libata-scsi.c +++ b/drivers/ata/libata-scsi.c @@ -4214,7 +4214,7 @@ void ata_scsi_simulate(struct ata_device *dev, struct scsi_cmnd *cmd) break; case MAINTENANCE_IN: - if (scsicmd[1] == MI_REPORT_SUPPORTED_OPERATION_CODES) + if ((scsicmd[1] & 0x1f) == MI_REPORT_SUPPORTED_OPERATION_CODES) ata_scsi_rbuf_fill(&args, ata_scsiop_maint_in); else ata_scsi_set_invalid_field(dev, cmd, 1, 0xff); diff --git a/drivers/ata/libata-transport.c b/drivers/ata/libata-transport.c index 60f22e1a4943f..e180f63a035e2 100644 --- a/drivers/ata/libata-transport.c +++ b/drivers/ata/libata-transport.c @@ -266,6 +266,10 @@ void ata_tport_delete(struct ata_port *ap) put_device(dev); } +static const struct device_type ata_port_sas_type = { + .name = ATA_PORT_TYPE_NAME, +}; + /** ata_tport_add - initialize a transport ATA port structure * * @parent: parent device @@ -283,7 +287,10 @@ int ata_tport_add(struct device *parent, struct device *dev = &ap->tdev; device_initialize(dev); - dev->type = &ata_port_type; + if (ap->flags & ATA_FLAG_SAS_HOST) + dev->type = &ata_port_sas_type; + else + dev->type = &ata_port_type; dev->parent = parent; ata_host_get(ap->host); diff --git a/drivers/ata/libata.h b/drivers/ata/libata.h index 68cdd81d747c5..bf71bd9e66cd8 100644 --- a/drivers/ata/libata.h +++ b/drivers/ata/libata.h @@ -30,6 +30,8 @@ enum { ATA_DNXFER_QUIET = (1 << 31), }; +#define ATA_PORT_TYPE_NAME "ata_port" + extern atomic_t ata_print_id; extern int atapi_passthru16; extern int libata_fua; diff --git a/drivers/ata/pata_arasan_cf.c b/drivers/ata/pata_arasan_cf.c index 63f39440a9b42..4ba02f082f962 100644 --- a/drivers/ata/pata_arasan_cf.c +++ b/drivers/ata/pata_arasan_cf.c @@ -528,7 +528,8 @@ static void data_xfer(struct work_struct *work) /* dma_request_channel may sleep, so calling from process context */ acdev->dma_chan = dma_request_chan(acdev->host->dev, "data"); if (IS_ERR(acdev->dma_chan)) { - dev_err(acdev->host->dev, "Unable to get dma_chan\n"); + dev_err_probe(acdev->host->dev, PTR_ERR(acdev->dma_chan), + "Unable to get dma_chan\n"); acdev->dma_chan = NULL; goto chan_request_fail; } diff --git a/drivers/ata/pata_falcon.c b/drivers/ata/pata_falcon.c index 121635aa8c00c..a7745a2be9056 100644 --- a/drivers/ata/pata_falcon.c +++ b/drivers/ata/pata_falcon.c @@ -123,8 +123,8 @@ static int __init pata_falcon_init_one(struct platform_device *pdev) struct resource *base_res, *ctl_res, *irq_res; struct ata_host *host; struct ata_port *ap; - void __iomem *base; - int irq = 0; + void __iomem *base, *ctl_base; + int irq = 0, io_offset = 1, reg_shift = 2; /* Falcon defaults */ dev_info(&pdev->dev, "Atari Falcon and Q40/Q60 PATA controller\n"); @@ -165,26 +165,34 @@ static int __init pata_falcon_init_one(struct platform_device *pdev) ap->pio_mask = ATA_PIO4; ap->flags |= ATA_FLAG_SLAVE_POSS | ATA_FLAG_NO_IORDY; - base = (void __iomem *)base_mem_res->start; /* N.B. this assumes data_addr will be used for word-sized I/O only */ - ap->ioaddr.data_addr = base + 0 + 0 * 4; - ap->ioaddr.error_addr = base + 1 + 1 * 4; - ap->ioaddr.feature_addr = base + 1 + 1 * 4; - ap->ioaddr.nsect_addr = base + 1 + 2 * 4; - ap->ioaddr.lbal_addr = base + 1 + 3 * 4; - ap->ioaddr.lbam_addr = base + 1 + 4 * 4; - ap->ioaddr.lbah_addr = base + 1 + 5 * 4; - ap->ioaddr.device_addr = base + 1 + 6 * 4; - ap->ioaddr.status_addr = base + 1 + 7 * 4; - ap->ioaddr.command_addr = base + 1 + 7 * 4; - - base = (void __iomem *)ctl_mem_res->start; - ap->ioaddr.altstatus_addr = base + 1; - ap->ioaddr.ctl_addr = base + 1; - - ata_port_desc(ap, "cmd 0x%lx ctl 0x%lx", - (unsigned long)base_mem_res->start, - (unsigned long)ctl_mem_res->start); + ap->ioaddr.data_addr = (void __iomem *)base_mem_res->start; + + if (base_res) { /* only Q40 has IO resources */ + io_offset = 0x10000; + reg_shift = 0; + base = (void __iomem *)base_res->start; + ctl_base = (void __iomem *)ctl_res->start; + } else { + base = (void __iomem *)base_mem_res->start; + ctl_base = (void __iomem *)ctl_mem_res->start; + } + + ap->ioaddr.error_addr = base + io_offset + (1 << reg_shift); + ap->ioaddr.feature_addr = base + io_offset + (1 << reg_shift); + ap->ioaddr.nsect_addr = base + io_offset + (2 << reg_shift); + ap->ioaddr.lbal_addr = base + io_offset + (3 << reg_shift); + ap->ioaddr.lbam_addr = base + io_offset + (4 << reg_shift); + ap->ioaddr.lbah_addr = base + io_offset + (5 << reg_shift); + ap->ioaddr.device_addr = base + io_offset + (6 << reg_shift); + ap->ioaddr.status_addr = base + io_offset + (7 << reg_shift); + ap->ioaddr.command_addr = base + io_offset + (7 << reg_shift); + + ap->ioaddr.altstatus_addr = ctl_base + io_offset; + ap->ioaddr.ctl_addr = ctl_base + io_offset; + + ata_port_desc(ap, "cmd %px ctl %px data %px", + base, ctl_base, ap->ioaddr.data_addr); irq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); if (irq_res && irq_res->start > 0) { diff --git a/drivers/ata/pata_ftide010.c b/drivers/ata/pata_ftide010.c index 34cb104f6b43e..bc30e2f305beb 100644 --- a/drivers/ata/pata_ftide010.c +++ b/drivers/ata/pata_ftide010.c @@ -570,6 +570,7 @@ static struct platform_driver pata_ftide010_driver = { }; module_platform_driver(pata_ftide010_driver); +MODULE_DESCRIPTION("low level driver for Faraday Technology FTIDE010"); MODULE_AUTHOR("Linus Walleij "); MODULE_LICENSE("GPL"); MODULE_ALIAS("platform:" DRV_NAME); diff --git a/drivers/ata/pata_isapnp.c b/drivers/ata/pata_isapnp.c index 43bb224430d3c..8892931ea8676 100644 --- a/drivers/ata/pata_isapnp.c +++ b/drivers/ata/pata_isapnp.c @@ -82,6 +82,9 @@ static int isapnp_init_one(struct pnp_dev *idev, const struct pnp_device_id *dev if (pnp_port_valid(idev, 1)) { ctl_addr = devm_ioport_map(&idev->dev, pnp_port_start(idev, 1), 1); + if (!ctl_addr) + return -ENOMEM; + ap->ioaddr.altstatus_addr = ctl_addr; ap->ioaddr.ctl_addr = ctl_addr; ap->ops = &isapnp_port_ops; diff --git a/drivers/ata/sata_gemini.c b/drivers/ata/sata_gemini.c index f793564f3d787..6fd54e968d10a 100644 --- a/drivers/ata/sata_gemini.c +++ b/drivers/ata/sata_gemini.c @@ -435,6 +435,7 @@ static struct platform_driver gemini_sata_driver = { }; module_platform_driver(gemini_sata_driver); +MODULE_DESCRIPTION("low level driver for Cortina Systems Gemini SATA bridge"); MODULE_AUTHOR("Linus Walleij "); MODULE_LICENSE("GPL"); MODULE_ALIAS("platform:" DRV_NAME); diff --git a/drivers/atm/iphase.c b/drivers/atm/iphase.c index bc8e8d9f176b2..ce56306eeb6ce 100644 --- a/drivers/atm/iphase.c +++ b/drivers/atm/iphase.c @@ -2293,19 +2293,21 @@ static int get_esi(struct atm_dev *dev) static int reset_sar(struct atm_dev *dev) { IADEV *iadev; - int i, error = 1; + int i, error; unsigned int pci[64]; iadev = INPH_IA_DEV(dev); - for(i=0; i<64; i++) - if ((error = pci_read_config_dword(iadev->pci, - i*4, &pci[i])) != PCIBIOS_SUCCESSFUL) - return error; + for (i = 0; i < 64; i++) { + error = pci_read_config_dword(iadev->pci, i * 4, &pci[i]); + if (error != PCIBIOS_SUCCESSFUL) + return error; + } writel(0, iadev->reg+IPHASE5575_EXT_RESET); - for(i=0; i<64; i++) - if ((error = pci_write_config_dword(iadev->pci, - i*4, pci[i])) != PCIBIOS_SUCCESSFUL) - return error; + for (i = 0; i < 64; i++) { + error = pci_write_config_dword(iadev->pci, i * 4, pci[i]); + if (error != PCIBIOS_SUCCESSFUL) + return error; + } udelay(5); return 0; } diff --git a/drivers/base/dd.c b/drivers/base/dd.c index ab0b2eb5fa07f..0bd166ad6f130 100644 --- a/drivers/base/dd.c +++ b/drivers/base/dd.c @@ -1228,8 +1228,6 @@ static void __device_release_driver(struct device *dev, struct device *parent) else if (drv->remove) drv->remove(dev); - device_links_driver_cleanup(dev); - devres_release_all(dev); arch_teardown_dma_ops(dev); kfree(dev->dma_range_map); @@ -1241,6 +1239,8 @@ static void __device_release_driver(struct device *dev, struct device *parent) pm_runtime_reinit(dev); dev_pm_set_driver_flags(dev, 0); + device_links_driver_cleanup(dev); + klist_remove(&dev->p->knode_driver); device_pm_check_callbacks(dev); if (dev->bus) diff --git a/drivers/base/devcoredump.c b/drivers/base/devcoredump.c index f4d794d6bb859..f3bd9f104bd12 100644 --- a/drivers/base/devcoredump.c +++ b/drivers/base/devcoredump.c @@ -25,6 +25,47 @@ struct devcd_entry { struct device devcd_dev; void *data; size_t datalen; + /* + * Here, mutex is required to serialize the calls to del_wk work between + * user/kernel space which happens when devcd is added with device_add() + * and that sends uevent to user space. User space reads the uevents, + * and calls to devcd_data_write() which try to modify the work which is + * not even initialized/queued from devcoredump. + * + * + * + * cpu0(X) cpu1(Y) + * + * dev_coredump() uevent sent to user space + * device_add() ======================> user space process Y reads the + * uevents writes to devcd fd + * which results into writes to + * + * devcd_data_write() + * mod_delayed_work() + * try_to_grab_pending() + * del_timer() + * debug_assert_init() + * INIT_DELAYED_WORK() + * schedule_delayed_work() + * + * + * Also, mutex alone would not be enough to avoid scheduling of + * del_wk work after it get flush from a call to devcd_free() + * mentioned as below. + * + * disabled_store() + * devcd_free() + * mutex_lock() devcd_data_write() + * flush_delayed_work() + * mutex_unlock() + * mutex_lock() + * mod_delayed_work() + * mutex_unlock() + * So, delete_work flag is required. + */ + struct mutex mutex; + bool delete_work; struct module *owner; ssize_t (*read)(char *buffer, loff_t offset, size_t count, void *data, size_t datalen); @@ -84,7 +125,12 @@ static ssize_t devcd_data_write(struct file *filp, struct kobject *kobj, struct device *dev = kobj_to_dev(kobj); struct devcd_entry *devcd = dev_to_devcd(dev); - mod_delayed_work(system_wq, &devcd->del_wk, 0); + mutex_lock(&devcd->mutex); + if (!devcd->delete_work) { + devcd->delete_work = true; + mod_delayed_work(system_wq, &devcd->del_wk, 0); + } + mutex_unlock(&devcd->mutex); return count; } @@ -112,7 +158,12 @@ static int devcd_free(struct device *dev, void *data) { struct devcd_entry *devcd = dev_to_devcd(dev); + mutex_lock(&devcd->mutex); + if (!devcd->delete_work) + devcd->delete_work = true; + flush_delayed_work(&devcd->del_wk); + mutex_unlock(&devcd->mutex); return 0; } @@ -122,6 +173,30 @@ static ssize_t disabled_show(struct class *class, struct class_attribute *attr, return sysfs_emit(buf, "%d\n", devcd_disabled); } +/* + * + * disabled_store() worker() + * class_for_each_device(&devcd_class, + * NULL, NULL, devcd_free) + * ... + * ... + * while ((dev = class_dev_iter_next(&iter)) + * devcd_del() + * device_del() + * put_device() <- last reference + * error = fn(dev, data) devcd_dev_release() + * devcd_free(dev, data) kfree(devcd) + * mutex_lock(&devcd->mutex); + * + * + * In the above diagram, It looks like disabled_store() would be racing with parallely + * running devcd_del() and result in memory abort while acquiring devcd->mutex which + * is called after kfree of devcd memory after dropping its last reference with + * put_device(). However, this will not happens as fn(dev, data) runs + * with its own reference to device via klist_node so it is not its last reference. + * so, above situation would not occur. + */ + static ssize_t disabled_store(struct class *class, struct class_attribute *attr, const char *buf, size_t count) { @@ -278,13 +353,17 @@ void dev_coredumpm(struct device *dev, struct module *owner, devcd->read = read; devcd->free = free; devcd->failing_dev = get_device(dev); + devcd->delete_work = false; + mutex_init(&devcd->mutex); device_initialize(&devcd->devcd_dev); dev_set_name(&devcd->devcd_dev, "devcd%d", atomic_inc_return(&devcd_count)); devcd->devcd_dev.class = &devcd_class; + mutex_lock(&devcd->mutex); + dev_set_uevent_suppress(&devcd->devcd_dev, true); if (device_add(&devcd->devcd_dev)) goto put_device; @@ -299,12 +378,15 @@ void dev_coredumpm(struct device *dev, struct module *owner, "devcoredump")) dev_warn(dev, "devcoredump create_link failed\n"); + dev_set_uevent_suppress(&devcd->devcd_dev, false); + kobject_uevent(&devcd->devcd_dev.kobj, KOBJ_ADD); INIT_DELAYED_WORK(&devcd->del_wk, devcd_del); schedule_delayed_work(&devcd->del_wk, DEVCD_TIMEOUT); - + mutex_unlock(&devcd->mutex); return; put_device: put_device(&devcd->devcd_dev); + mutex_unlock(&devcd->mutex); put_module: module_put(owner); free: diff --git a/drivers/base/driver.c b/drivers/base/driver.c index 8c0d33e182fd5..1b9d47b10bd0a 100644 --- a/drivers/base/driver.c +++ b/drivers/base/driver.c @@ -30,6 +30,75 @@ static struct device *next_device(struct klist_iter *i) return dev; } +/** + * driver_set_override() - Helper to set or clear driver override. + * @dev: Device to change + * @override: Address of string to change (e.g. &device->driver_override); + * The contents will be freed and hold newly allocated override. + * @s: NUL-terminated string, new driver name to force a match, pass empty + * string to clear it ("" or "\n", where the latter is only for sysfs + * interface). + * @len: length of @s + * + * Helper to set or clear driver override in a device, intended for the cases + * when the driver_override field is allocated by driver/bus code. + * + * Returns: 0 on success or a negative error code on failure. + */ +int driver_set_override(struct device *dev, const char **override, + const char *s, size_t len) +{ + const char *new, *old; + char *cp; + + if (!override || !s) + return -EINVAL; + + /* + * The stored value will be used in sysfs show callback (sysfs_emit()), + * which has a length limit of PAGE_SIZE and adds a trailing newline. + * Thus we can store one character less to avoid truncation during sysfs + * show. + */ + if (len >= (PAGE_SIZE - 1)) + return -EINVAL; + + if (!len) { + /* Empty string passed - clear override */ + device_lock(dev); + old = *override; + *override = NULL; + device_unlock(dev); + kfree(old); + + return 0; + } + + cp = strnchr(s, len, '\n'); + if (cp) + len = cp - s; + + new = kstrndup(s, len, GFP_KERNEL); + if (!new) + return -ENOMEM; + + device_lock(dev); + old = *override; + if (cp != s) { + *override = new; + } else { + /* "\n" passed - clear override */ + kfree(new); + *override = NULL; + } + device_unlock(dev); + + kfree(old); + + return 0; +} +EXPORT_SYMBOL_GPL(driver_set_override); + /** * driver_for_each_device - Iterator for devices bound to a driver. * @drv: Driver we're iterating. diff --git a/drivers/base/platform.c b/drivers/base/platform.c index ac5cf1a8d79ab..596fbe6b701a5 100644 --- a/drivers/base/platform.c +++ b/drivers/base/platform.c @@ -1270,31 +1270,11 @@ static ssize_t driver_override_store(struct device *dev, const char *buf, size_t count) { struct platform_device *pdev = to_platform_device(dev); - char *driver_override, *old, *cp; - - /* We need to keep extra room for a newline */ - if (count >= (PAGE_SIZE - 1)) - return -EINVAL; - - driver_override = kstrndup(buf, count, GFP_KERNEL); - if (!driver_override) - return -ENOMEM; - - cp = strchr(driver_override, '\n'); - if (cp) - *cp = '\0'; - - device_lock(dev); - old = pdev->driver_override; - if (strlen(driver_override)) { - pdev->driver_override = driver_override; - } else { - kfree(driver_override); - pdev->driver_override = NULL; - } - device_unlock(dev); + int ret; - kfree(old); + ret = driver_set_override(dev, &pdev->driver_override, buf, count); + if (ret) + return ret; return count; } diff --git a/drivers/base/regmap/regcache-rbtree.c b/drivers/base/regmap/regcache-rbtree.c index fabf87058d80b..d65715b9e129e 100644 --- a/drivers/base/regmap/regcache-rbtree.c +++ b/drivers/base/regmap/regcache-rbtree.c @@ -277,7 +277,7 @@ static int regcache_rbtree_insert_to_block(struct regmap *map, blk = krealloc(rbnode->block, blklen * map->cache_word_size, - GFP_KERNEL); + map->alloc_flags); if (!blk) return -ENOMEM; @@ -286,7 +286,7 @@ static int regcache_rbtree_insert_to_block(struct regmap *map, if (BITS_TO_LONGS(blklen) > BITS_TO_LONGS(rbnode->blklen)) { present = krealloc(rbnode->cache_present, BITS_TO_LONGS(blklen) * sizeof(*present), - GFP_KERNEL); + map->alloc_flags); if (!present) return -ENOMEM; @@ -320,7 +320,7 @@ regcache_rbtree_node_alloc(struct regmap *map, unsigned int reg) const struct regmap_range *range; int i; - rbnode = kzalloc(sizeof(*rbnode), GFP_KERNEL); + rbnode = kzalloc(sizeof(*rbnode), map->alloc_flags); if (!rbnode) return NULL; @@ -346,13 +346,13 @@ regcache_rbtree_node_alloc(struct regmap *map, unsigned int reg) } rbnode->block = kmalloc_array(rbnode->blklen, map->cache_word_size, - GFP_KERNEL); + map->alloc_flags); if (!rbnode->block) goto err_free; rbnode->cache_present = kcalloc(BITS_TO_LONGS(rbnode->blklen), sizeof(*rbnode->cache_present), - GFP_KERNEL); + map->alloc_flags); if (!rbnode->cache_present) goto err_free_block; @@ -453,7 +453,8 @@ static int regcache_rbtree_write(struct regmap *map, unsigned int reg, if (!rbnode) return -ENOMEM; regcache_rbtree_set_register(map, rbnode, - reg - rbnode->base_reg, value); + (reg - rbnode->base_reg) / map->reg_stride, + value); regcache_rbtree_insert(map, &rbtree_ctx->root, rbnode); rbtree_ctx->cached_rbnode = rbnode; } diff --git a/drivers/base/regmap/regcache.c b/drivers/base/regmap/regcache.c index 0b517a83c4493..aff2cd48305fa 100644 --- a/drivers/base/regmap/regcache.c +++ b/drivers/base/regmap/regcache.c @@ -325,6 +325,11 @@ static int regcache_default_sync(struct regmap *map, unsigned int min, return 0; } +static int rbtree_all(const void *key, const struct rb_node *node) +{ + return 0; +} + /** * regcache_sync - Sync the register cache with the hardware. * @@ -342,6 +347,7 @@ int regcache_sync(struct regmap *map) unsigned int i; const char *name; bool bypass; + struct rb_node *node; if (WARN_ON(map->cache_type == REGCACHE_NONE)) return -EINVAL; @@ -386,6 +392,29 @@ int regcache_sync(struct regmap *map) map->async = false; map->cache_bypass = bypass; map->no_sync_defaults = false; + + /* + * If we did any paging with cache bypassed and a cached + * paging register then the register and cache state might + * have gone out of sync, force writes of all the paging + * registers. + */ + rb_for_each(node, 0, &map->range_tree, rbtree_all) { + struct regmap_range_node *this = + rb_entry(node, struct regmap_range_node, node); + + /* If there's nothing in the cache there's nothing to sync */ + if (regcache_read(map, this->selector_reg, &i) != 0) + continue; + + ret = _regmap_write(map, this->selector_reg, i); + if (ret != 0) { + dev_err(map->dev, "Failed to write %x = %x: %d\n", + this->selector_reg, i, ret); + break; + } + } + map->unlock(map->lock_arg); regmap_async_complete(map); diff --git a/drivers/base/regmap/regmap-debugfs.c b/drivers/base/regmap/regmap-debugfs.c index ad684d37c2dae..6caed4b556365 100644 --- a/drivers/base/regmap/regmap-debugfs.c +++ b/drivers/base/regmap/regmap-debugfs.c @@ -48,7 +48,7 @@ static ssize_t regmap_name_read_file(struct file *file, name = map->dev->driver->name; ret = snprintf(buf, PAGE_SIZE, "%s\n", name); - if (ret < 0) { + if (ret >= PAGE_SIZE) { kfree(buf); return ret; } diff --git a/drivers/base/regmap/regmap.c b/drivers/base/regmap/regmap.c index f7811641ed5ae..7621b54975b57 100644 --- a/drivers/base/regmap/regmap.c +++ b/drivers/base/regmap/regmap.c @@ -1551,7 +1551,7 @@ static int dev_get_regmap_match(struct device *dev, void *res, void *data) /* If the user didn't specify a name match any */ if (data) - return !strcmp((*r)->name, data); + return (*r)->name && !strcmp((*r)->name, data); else return 1; } @@ -1683,17 +1683,19 @@ static int _regmap_raw_write_impl(struct regmap *map, unsigned int reg, } if (!map->cache_bypass && map->format.parse_val) { - unsigned int ival; + unsigned int ival, offset; int val_bytes = map->format.val_bytes; - for (i = 0; i < val_len / val_bytes; i++) { - ival = map->format.parse_val(val + (i * val_bytes)); - ret = regcache_write(map, - reg + regmap_get_offset(map, i), - ival); + + /* Cache the last written value for noinc writes */ + i = noinc ? val_len - val_bytes : 0; + for (; i < val_len; i += val_bytes) { + ival = map->format.parse_val(val + i); + offset = noinc ? 0 : regmap_get_offset(map, i / val_bytes); + ret = regcache_write(map, reg + offset, ival); if (ret) { dev_err(map->dev, "Error in caching of register: %x ret: %d\n", - reg + regmap_get_offset(map, i), ret); + reg + offset, ret); return ret; } } diff --git a/drivers/base/test/test_async_driver_probe.c b/drivers/base/test/test_async_driver_probe.c index c157a912d6739..88336f093decd 100644 --- a/drivers/base/test/test_async_driver_probe.c +++ b/drivers/base/test/test_async_driver_probe.c @@ -84,7 +84,7 @@ test_platform_device_register_node(char *name, int id, int nid) pdev = platform_device_alloc(name, id); if (!pdev) - return NULL; + return ERR_PTR(-ENOMEM); if (nid != NUMA_NO_NODE) set_dev_node(&pdev->dev, nid); diff --git a/drivers/block/loop.c b/drivers/block/loop.c index 48c530b83000e..714c87900c546 100644 --- a/drivers/block/loop.c +++ b/drivers/block/loop.c @@ -1364,7 +1364,7 @@ static int loop_configure(struct loop_device *lo, fmode_t mode, lo->lo_flags |= LO_FLAGS_PARTSCAN; partscan = lo->lo_flags & LO_FLAGS_PARTSCAN; if (partscan) - lo->lo_disk->flags &= ~GENHD_FL_NO_PART_SCAN; + lo->lo_disk->flags &= ~GENHD_FL_NO_PART; /* enable and uncork uevent now that we are done */ dev_set_uevent_suppress(disk_to_dev(lo->lo_disk), 0); @@ -1517,7 +1517,7 @@ static int __loop_clr_fd(struct loop_device *lo, bool release) mutex_lock(&lo->lo_mutex); lo->lo_flags = 0; if (!part_shift) - lo->lo_disk->flags |= GENHD_FL_NO_PART_SCAN; + lo->lo_disk->flags |= GENHD_FL_NO_PART; lo->lo_state = Lo_unbound; mutex_unlock(&lo->lo_mutex); @@ -1636,7 +1636,7 @@ loop_set_status(struct loop_device *lo, const struct loop_info64 *info) if (!err && (lo->lo_flags & LO_FLAGS_PARTSCAN) && !(prev_lo_flags & LO_FLAGS_PARTSCAN)) { - lo->lo_disk->flags &= ~GENHD_FL_NO_PART_SCAN; + lo->lo_disk->flags &= ~GENHD_FL_NO_PART; partscan = true; } out_unlock: @@ -2489,7 +2489,7 @@ static int loop_add(int i) * userspace tools. Parameters like this in general should be avoided. */ if (!part_shift) - disk->flags |= GENHD_FL_NO_PART_SCAN; + disk->flags |= GENHD_FL_NO_PART; disk->flags |= GENHD_FL_EXT_DEVT; atomic_set(&lo->lo_refcnt, 0); mutex_init(&lo->lo_mutex); diff --git a/drivers/block/n64cart.c b/drivers/block/n64cart.c index bcaabf038947c..0bda4a468c660 100644 --- a/drivers/block/n64cart.c +++ b/drivers/block/n64cart.c @@ -137,7 +137,7 @@ static int __init n64cart_probe(struct platform_device *pdev) return -ENOMEM; disk->first_minor = 0; - disk->flags = GENHD_FL_NO_PART_SCAN; + disk->flags = GENHD_FL_NO_PART; disk->fops = &n64cart_fops; disk->private_data = &pdev->dev; strcpy(disk->disk_name, "n64cart"); diff --git a/drivers/block/paride/pcd.c b/drivers/block/paride/pcd.c index f9cdd11f02f58..91369084e1274 100644 --- a/drivers/block/paride/pcd.c +++ b/drivers/block/paride/pcd.c @@ -183,8 +183,6 @@ static int pcd_audio_ioctl(struct cdrom_device_info *cdi, static int pcd_packet(struct cdrom_device_info *cdi, struct packet_command *cgc); -static int pcd_detect(void); -static void pcd_probe_capabilities(void); static void do_pcd_read_drq(void); static blk_status_t pcd_queue_rq(struct blk_mq_hw_ctx *hctx, const struct blk_mq_queue_data *bd); @@ -302,53 +300,6 @@ static const struct blk_mq_ops pcd_mq_ops = { .queue_rq = pcd_queue_rq, }; -static void pcd_init_units(void) -{ - struct pcd_unit *cd; - int unit; - - pcd_drive_count = 0; - for (unit = 0, cd = pcd; unit < PCD_UNITS; unit++, cd++) { - struct gendisk *disk; - - if (blk_mq_alloc_sq_tag_set(&cd->tag_set, &pcd_mq_ops, 1, - BLK_MQ_F_SHOULD_MERGE)) - continue; - - disk = blk_mq_alloc_disk(&cd->tag_set, cd); - if (IS_ERR(disk)) { - blk_mq_free_tag_set(&cd->tag_set); - continue; - } - - INIT_LIST_HEAD(&cd->rq_list); - blk_queue_bounce_limit(disk->queue, BLK_BOUNCE_HIGH); - cd->disk = disk; - cd->pi = &cd->pia; - cd->present = 0; - cd->last_sense = 0; - cd->changed = 1; - cd->drive = (*drives[unit])[D_SLV]; - if ((*drives[unit])[D_PRT]) - pcd_drive_count++; - - cd->name = &cd->info.name[0]; - snprintf(cd->name, sizeof(cd->info.name), "%s%d", name, unit); - cd->info.ops = &pcd_dops; - cd->info.handle = cd; - cd->info.speed = 0; - cd->info.capacity = 1; - cd->info.mask = 0; - disk->major = major; - disk->first_minor = unit; - disk->minors = 1; - strcpy(disk->disk_name, cd->name); /* umm... */ - disk->fops = &pcd_bdops; - disk->flags = GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE; - disk->events = DISK_EVENT_MEDIA_CHANGE; - } -} - static int pcd_open(struct cdrom_device_info *cdi, int purpose) { struct pcd_unit *cd = cdi->handle; @@ -630,10 +581,11 @@ static int pcd_drive_status(struct cdrom_device_info *cdi, int slot_nr) return CDS_DISC_OK; } -static int pcd_identify(struct pcd_unit *cd, char *id) +static int pcd_identify(struct pcd_unit *cd) { - int k, s; char id_cmd[12] = { 0x12, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0 }; + char id[18]; + int k, s; pcd_bufblk = -1; @@ -661,108 +613,47 @@ static int pcd_identify(struct pcd_unit *cd, char *id) } /* - * returns 0, with id set if drive is detected - * -1, if drive detection failed + * returns 0, with id set if drive is detected, otherwise an error code. */ -static int pcd_probe(struct pcd_unit *cd, int ms, char *id) +static int pcd_probe(struct pcd_unit *cd, int ms) { if (ms == -1) { for (cd->drive = 0; cd->drive <= 1; cd->drive++) - if (!pcd_reset(cd) && !pcd_identify(cd, id)) + if (!pcd_reset(cd) && !pcd_identify(cd)) return 0; } else { cd->drive = ms; - if (!pcd_reset(cd) && !pcd_identify(cd, id)) + if (!pcd_reset(cd) && !pcd_identify(cd)) return 0; } - return -1; + return -ENODEV; } -static void pcd_probe_capabilities(void) +static int pcd_probe_capabilities(struct pcd_unit *cd) { - int unit, r; - char buffer[32]; char cmd[12] = { 0x5a, 1 << 3, 0x2a, 0, 0, 0, 0, 18, 0, 0, 0, 0 }; - struct pcd_unit *cd; - - for (unit = 0, cd = pcd; unit < PCD_UNITS; unit++, cd++) { - if (!cd->present) - continue; - r = pcd_atapi(cd, cmd, 18, buffer, "mode sense capabilities"); - if (r) - continue; - /* we should now have the cap page */ - if ((buffer[11] & 1) == 0) - cd->info.mask |= CDC_CD_R; - if ((buffer[11] & 2) == 0) - cd->info.mask |= CDC_CD_RW; - if ((buffer[12] & 1) == 0) - cd->info.mask |= CDC_PLAY_AUDIO; - if ((buffer[14] & 1) == 0) - cd->info.mask |= CDC_LOCK; - if ((buffer[14] & 8) == 0) - cd->info.mask |= CDC_OPEN_TRAY; - if ((buffer[14] >> 6) == 0) - cd->info.mask |= CDC_CLOSE_TRAY; - } -} - -static int pcd_detect(void) -{ - char id[18]; - int k, unit; - struct pcd_unit *cd; + char buffer[32]; + int ret; - printk("%s: %s version %s, major %d, nice %d\n", - name, name, PCD_VERSION, major, nice); + ret = pcd_atapi(cd, cmd, 18, buffer, "mode sense capabilities"); + if (ret) + return ret; + + /* we should now have the cap page */ + if ((buffer[11] & 1) == 0) + cd->info.mask |= CDC_CD_R; + if ((buffer[11] & 2) == 0) + cd->info.mask |= CDC_CD_RW; + if ((buffer[12] & 1) == 0) + cd->info.mask |= CDC_PLAY_AUDIO; + if ((buffer[14] & 1) == 0) + cd->info.mask |= CDC_LOCK; + if ((buffer[14] & 8) == 0) + cd->info.mask |= CDC_OPEN_TRAY; + if ((buffer[14] >> 6) == 0) + cd->info.mask |= CDC_CLOSE_TRAY; - par_drv = pi_register_driver(name); - if (!par_drv) { - pr_err("failed to register %s driver\n", name); - return -1; - } - - k = 0; - if (pcd_drive_count == 0) { /* nothing spec'd - so autoprobe for 1 */ - cd = pcd; - if (cd->disk && pi_init(cd->pi, 1, -1, -1, -1, -1, -1, - pcd_buffer, PI_PCD, verbose, cd->name)) { - if (!pcd_probe(cd, -1, id)) { - cd->present = 1; - k++; - } else - pi_release(cd->pi); - } - } else { - for (unit = 0, cd = pcd; unit < PCD_UNITS; unit++, cd++) { - int *conf = *drives[unit]; - if (!conf[D_PRT]) - continue; - if (!cd->disk) - continue; - if (!pi_init(cd->pi, 0, conf[D_PRT], conf[D_MOD], - conf[D_UNI], conf[D_PRO], conf[D_DLY], - pcd_buffer, PI_PCD, verbose, cd->name)) - continue; - if (!pcd_probe(cd, conf[D_SLV], id)) { - cd->present = 1; - k++; - } else - pi_release(cd->pi); - } - } - if (k) - return 0; - - printk("%s: No CD-ROM drive found\n", name); - for (unit = 0, cd = pcd; unit < PCD_UNITS; unit++, cd++) { - if (!cd->disk) - continue; - blk_cleanup_disk(cd->disk); - blk_mq_free_tag_set(&cd->tag_set); - } - pi_unregister_driver(par_drv); - return -1; + return 0; } /* I/O request processing */ @@ -999,43 +890,124 @@ static int pcd_get_mcn(struct cdrom_device_info *cdi, struct cdrom_mcn *mcn) return 0; } +static int pcd_init_unit(struct pcd_unit *cd, bool autoprobe, int port, + int mode, int unit, int protocol, int delay, int ms) +{ + struct gendisk *disk; + int ret; + + ret = blk_mq_alloc_sq_tag_set(&cd->tag_set, &pcd_mq_ops, 1, + BLK_MQ_F_SHOULD_MERGE); + if (ret) + return ret; + + disk = blk_mq_alloc_disk(&cd->tag_set, cd); + if (IS_ERR(disk)) { + ret = PTR_ERR(disk); + goto out_free_tag_set; + } + + INIT_LIST_HEAD(&cd->rq_list); + blk_queue_bounce_limit(disk->queue, BLK_BOUNCE_HIGH); + cd->disk = disk; + cd->pi = &cd->pia; + cd->present = 0; + cd->last_sense = 0; + cd->changed = 1; + cd->drive = (*drives[cd - pcd])[D_SLV]; + + cd->name = &cd->info.name[0]; + snprintf(cd->name, sizeof(cd->info.name), "%s%d", name, unit); + cd->info.ops = &pcd_dops; + cd->info.handle = cd; + cd->info.speed = 0; + cd->info.capacity = 1; + cd->info.mask = 0; + disk->major = major; + disk->first_minor = unit; + disk->minors = 1; + strcpy(disk->disk_name, cd->name); /* umm... */ + disk->fops = &pcd_bdops; + disk->events = DISK_EVENT_MEDIA_CHANGE; + disk->event_flags = DISK_EVENT_FLAG_BLOCK_ON_EXCL_WRITE; + + if (!pi_init(cd->pi, autoprobe, port, mode, unit, protocol, delay, + pcd_buffer, PI_PCD, verbose, cd->name)) { + ret = -ENODEV; + goto out_free_disk; + } + ret = pcd_probe(cd, ms); + if (ret) + goto out_pi_release; + + cd->present = 1; + pcd_probe_capabilities(cd); + register_cdrom(cd->disk, &cd->info); + add_disk(cd->disk); + return 0; + +out_pi_release: + pi_release(cd->pi); +out_free_disk: + blk_cleanup_disk(cd->disk); +out_free_tag_set: + blk_mq_free_tag_set(&cd->tag_set); + return ret; +} + static int __init pcd_init(void) { - struct pcd_unit *cd; - int unit; + int found = 0, unit; if (disable) return -EINVAL; - pcd_init_units(); + if (register_blkdev(major, name)) + return -EBUSY; - if (pcd_detect()) - return -ENODEV; + pr_info("%s: %s version %s, major %d, nice %d\n", + name, name, PCD_VERSION, major, nice); - /* get the atapi capabilities page */ - pcd_probe_capabilities(); + par_drv = pi_register_driver(name); + if (!par_drv) { + pr_err("failed to register %s driver\n", name); + goto out_unregister_blkdev; + } - if (register_blkdev(major, name)) { - for (unit = 0, cd = pcd; unit < PCD_UNITS; unit++, cd++) { - if (!cd->disk) - continue; + for (unit = 0; unit < PCD_UNITS; unit++) { + if ((*drives[unit])[D_PRT]) + pcd_drive_count++; + } + + if (pcd_drive_count == 0) { /* nothing spec'd - so autoprobe for 1 */ + if (!pcd_init_unit(pcd, 1, -1, -1, -1, -1, -1, -1)) + found++; + } else { + for (unit = 0; unit < PCD_UNITS; unit++) { + struct pcd_unit *cd = &pcd[unit]; + int *conf = *drives[unit]; - blk_cleanup_queue(cd->disk->queue); - blk_mq_free_tag_set(&cd->tag_set); - put_disk(cd->disk); + if (!conf[D_PRT]) + continue; + if (!pcd_init_unit(cd, 0, conf[D_PRT], conf[D_MOD], + conf[D_UNI], conf[D_PRO], conf[D_DLY], + conf[D_SLV])) + found++; } - return -EBUSY; } - for (unit = 0, cd = pcd; unit < PCD_UNITS; unit++, cd++) { - if (cd->present) { - register_cdrom(cd->disk, &cd->info); - cd->disk->private_data = cd; - add_disk(cd->disk); - } + if (!found) { + pr_info("%s: No CD-ROM drive found\n", name); + goto out_unregister_pi_driver; } return 0; + +out_unregister_pi_driver: + pi_unregister_driver(par_drv); +out_unregister_blkdev: + unregister_blkdev(major, name); + return -ENODEV; } static void __exit pcd_exit(void) @@ -1044,20 +1016,18 @@ static void __exit pcd_exit(void) int unit; for (unit = 0, cd = pcd; unit < PCD_UNITS; unit++, cd++) { - if (!cd->disk) + if (!cd->present) continue; - if (cd->present) { - del_gendisk(cd->disk); - pi_release(cd->pi); - unregister_cdrom(&cd->info); - } - blk_cleanup_queue(cd->disk->queue); + del_gendisk(cd->disk); + pi_release(cd->pi); + unregister_cdrom(&cd->info); + blk_cleanup_disk(cd->disk); + blk_mq_free_tag_set(&cd->tag_set); - put_disk(cd->disk); } - unregister_blkdev(major, name); pi_unregister_driver(par_drv); + unregister_blkdev(major, name); } MODULE_LICENSE("GPL"); diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c index fe8bdbf4616bc..16744a79a1783 100644 --- a/drivers/block/rbd.c +++ b/drivers/block/rbd.c @@ -632,9 +632,8 @@ void rbd_warn(struct rbd_device *rbd_dev, const char *fmt, ...) static void rbd_dev_remove_parent(struct rbd_device *rbd_dev); static int rbd_dev_refresh(struct rbd_device *rbd_dev); -static int rbd_dev_v2_header_onetime(struct rbd_device *rbd_dev); -static int rbd_dev_header_info(struct rbd_device *rbd_dev); -static int rbd_dev_v2_parent_info(struct rbd_device *rbd_dev); +static int rbd_dev_v2_header_onetime(struct rbd_device *rbd_dev, + struct rbd_image_header *header); static const char *rbd_dev_v2_snap_name(struct rbd_device *rbd_dev, u64 snap_id); static int _rbd_dev_v2_snap_size(struct rbd_device *rbd_dev, u64 snap_id, @@ -996,15 +995,24 @@ static void rbd_init_layout(struct rbd_device *rbd_dev) RCU_INIT_POINTER(rbd_dev->layout.pool_ns, NULL); } +static void rbd_image_header_cleanup(struct rbd_image_header *header) +{ + kfree(header->object_prefix); + ceph_put_snap_context(header->snapc); + kfree(header->snap_sizes); + kfree(header->snap_names); + + memset(header, 0, sizeof(*header)); +} + /* * Fill an rbd image header with information from the given format 1 * on-disk header. */ -static int rbd_header_from_disk(struct rbd_device *rbd_dev, - struct rbd_image_header_ondisk *ondisk) +static int rbd_header_from_disk(struct rbd_image_header *header, + struct rbd_image_header_ondisk *ondisk, + bool first_time) { - struct rbd_image_header *header = &rbd_dev->header; - bool first_time = header->object_prefix == NULL; struct ceph_snap_context *snapc; char *object_prefix = NULL; char *snap_names = NULL; @@ -1071,11 +1079,6 @@ static int rbd_header_from_disk(struct rbd_device *rbd_dev, if (first_time) { header->object_prefix = object_prefix; header->obj_order = ondisk->options.order; - rbd_init_layout(rbd_dev); - } else { - ceph_put_snap_context(header->snapc); - kfree(header->snap_names); - kfree(header->snap_sizes); } /* The remaining fields always get updated (when we refresh) */ @@ -4861,7 +4864,9 @@ static int rbd_obj_read_sync(struct rbd_device *rbd_dev, * return, the rbd_dev->header field will contain up-to-date * information about the image. */ -static int rbd_dev_v1_header_info(struct rbd_device *rbd_dev) +static int rbd_dev_v1_header_info(struct rbd_device *rbd_dev, + struct rbd_image_header *header, + bool first_time) { struct rbd_image_header_ondisk *ondisk = NULL; u32 snap_count = 0; @@ -4909,7 +4914,7 @@ static int rbd_dev_v1_header_info(struct rbd_device *rbd_dev) snap_count = le32_to_cpu(ondisk->snap_count); } while (snap_count != want_count); - ret = rbd_header_from_disk(rbd_dev, ondisk); + ret = rbd_header_from_disk(header, ondisk, first_time); out: kfree(ondisk); @@ -4933,39 +4938,6 @@ static void rbd_dev_update_size(struct rbd_device *rbd_dev) } } -static int rbd_dev_refresh(struct rbd_device *rbd_dev) -{ - u64 mapping_size; - int ret; - - down_write(&rbd_dev->header_rwsem); - mapping_size = rbd_dev->mapping.size; - - ret = rbd_dev_header_info(rbd_dev); - if (ret) - goto out; - - /* - * If there is a parent, see if it has disappeared due to the - * mapped image getting flattened. - */ - if (rbd_dev->parent) { - ret = rbd_dev_v2_parent_info(rbd_dev); - if (ret) - goto out; - } - - rbd_assert(!rbd_is_snap(rbd_dev)); - rbd_dev->mapping.size = rbd_dev->header.image_size; - -out: - up_write(&rbd_dev->header_rwsem); - if (!ret && mapping_size != rbd_dev->mapping.size) - rbd_dev_update_size(rbd_dev); - - return ret; -} - static const struct blk_mq_ops rbd_mq_ops = { .queue_rq = rbd_queue_rq, }; @@ -5508,17 +5480,12 @@ static int _rbd_dev_v2_snap_size(struct rbd_device *rbd_dev, u64 snap_id, return 0; } -static int rbd_dev_v2_image_size(struct rbd_device *rbd_dev) -{ - return _rbd_dev_v2_snap_size(rbd_dev, CEPH_NOSNAP, - &rbd_dev->header.obj_order, - &rbd_dev->header.image_size); -} - -static int rbd_dev_v2_object_prefix(struct rbd_device *rbd_dev) +static int rbd_dev_v2_object_prefix(struct rbd_device *rbd_dev, + char **pobject_prefix) { size_t size; void *reply_buf; + char *object_prefix; int ret; void *p; @@ -5536,16 +5503,16 @@ static int rbd_dev_v2_object_prefix(struct rbd_device *rbd_dev) goto out; p = reply_buf; - rbd_dev->header.object_prefix = ceph_extract_encoded_string(&p, - p + ret, NULL, GFP_NOIO); + object_prefix = ceph_extract_encoded_string(&p, p + ret, NULL, + GFP_NOIO); + if (IS_ERR(object_prefix)) { + ret = PTR_ERR(object_prefix); + goto out; + } ret = 0; - if (IS_ERR(rbd_dev->header.object_prefix)) { - ret = PTR_ERR(rbd_dev->header.object_prefix); - rbd_dev->header.object_prefix = NULL; - } else { - dout(" object_prefix = %s\n", rbd_dev->header.object_prefix); - } + *pobject_prefix = object_prefix; + dout(" object_prefix = %s\n", object_prefix); out: kfree(reply_buf); @@ -5596,13 +5563,6 @@ static int _rbd_dev_v2_snap_features(struct rbd_device *rbd_dev, u64 snap_id, return 0; } -static int rbd_dev_v2_features(struct rbd_device *rbd_dev) -{ - return _rbd_dev_v2_snap_features(rbd_dev, CEPH_NOSNAP, - rbd_is_ro(rbd_dev), - &rbd_dev->header.features); -} - /* * These are generic image flags, but since they are used only for * object map, store them in rbd_dev->object_map_flags. @@ -5639,6 +5599,14 @@ struct parent_image_info { u64 overlap; }; +static void rbd_parent_info_cleanup(struct parent_image_info *pii) +{ + kfree(pii->pool_ns); + kfree(pii->image_id); + + memset(pii, 0, sizeof(*pii)); +} + /* * The caller is responsible for @pii. */ @@ -5708,6 +5676,9 @@ static int __get_parent_info(struct rbd_device *rbd_dev, if (pii->has_overlap) ceph_decode_64_safe(&p, end, pii->overlap, e_inval); + dout("%s pool_id %llu pool_ns %s image_id %s snap_id %llu has_overlap %d overlap %llu\n", + __func__, pii->pool_id, pii->pool_ns, pii->image_id, pii->snap_id, + pii->has_overlap, pii->overlap); return 0; e_inval: @@ -5746,14 +5717,17 @@ static int __get_parent_info_legacy(struct rbd_device *rbd_dev, pii->has_overlap = true; ceph_decode_64_safe(&p, end, pii->overlap, e_inval); + dout("%s pool_id %llu pool_ns %s image_id %s snap_id %llu has_overlap %d overlap %llu\n", + __func__, pii->pool_id, pii->pool_ns, pii->image_id, pii->snap_id, + pii->has_overlap, pii->overlap); return 0; e_inval: return -EINVAL; } -static int get_parent_info(struct rbd_device *rbd_dev, - struct parent_image_info *pii) +static int rbd_dev_v2_parent_info(struct rbd_device *rbd_dev, + struct parent_image_info *pii) { struct page *req_page, *reply_page; void *p; @@ -5781,7 +5755,7 @@ static int get_parent_info(struct rbd_device *rbd_dev, return ret; } -static int rbd_dev_v2_parent_info(struct rbd_device *rbd_dev) +static int rbd_dev_setup_parent(struct rbd_device *rbd_dev) { struct rbd_spec *parent_spec; struct parent_image_info pii = { 0 }; @@ -5791,37 +5765,12 @@ static int rbd_dev_v2_parent_info(struct rbd_device *rbd_dev) if (!parent_spec) return -ENOMEM; - ret = get_parent_info(rbd_dev, &pii); + ret = rbd_dev_v2_parent_info(rbd_dev, &pii); if (ret) goto out_err; - dout("%s pool_id %llu pool_ns %s image_id %s snap_id %llu has_overlap %d overlap %llu\n", - __func__, pii.pool_id, pii.pool_ns, pii.image_id, pii.snap_id, - pii.has_overlap, pii.overlap); - - if (pii.pool_id == CEPH_NOPOOL || !pii.has_overlap) { - /* - * Either the parent never existed, or we have - * record of it but the image got flattened so it no - * longer has a parent. When the parent of a - * layered image disappears we immediately set the - * overlap to 0. The effect of this is that all new - * requests will be treated as if the image had no - * parent. - * - * If !pii.has_overlap, the parent image spec is not - * applicable. It's there to avoid duplication in each - * snapshot record. - */ - if (rbd_dev->parent_overlap) { - rbd_dev->parent_overlap = 0; - rbd_dev_parent_put(rbd_dev); - pr_info("%s: clone image has been flattened\n", - rbd_dev->disk->disk_name); - } - + if (pii.pool_id == CEPH_NOPOOL || !pii.has_overlap) goto out; /* No parent? No problem. */ - } /* The ceph file layout needs to fit pool id in 32 bits */ @@ -5833,58 +5782,46 @@ static int rbd_dev_v2_parent_info(struct rbd_device *rbd_dev) } /* - * The parent won't change (except when the clone is - * flattened, already handled that). So we only need to - * record the parent spec we have not already done so. + * The parent won't change except when the clone is flattened, + * so we only need to record the parent image spec once. */ - if (!rbd_dev->parent_spec) { - parent_spec->pool_id = pii.pool_id; - if (pii.pool_ns && *pii.pool_ns) { - parent_spec->pool_ns = pii.pool_ns; - pii.pool_ns = NULL; - } - parent_spec->image_id = pii.image_id; - pii.image_id = NULL; - parent_spec->snap_id = pii.snap_id; - - rbd_dev->parent_spec = parent_spec; - parent_spec = NULL; /* rbd_dev now owns this */ + parent_spec->pool_id = pii.pool_id; + if (pii.pool_ns && *pii.pool_ns) { + parent_spec->pool_ns = pii.pool_ns; + pii.pool_ns = NULL; } + parent_spec->image_id = pii.image_id; + pii.image_id = NULL; + parent_spec->snap_id = pii.snap_id; + + rbd_assert(!rbd_dev->parent_spec); + rbd_dev->parent_spec = parent_spec; + parent_spec = NULL; /* rbd_dev now owns this */ /* - * We always update the parent overlap. If it's zero we issue - * a warning, as we will proceed as if there was no parent. + * Record the parent overlap. If it's zero, issue a warning as + * we will proceed as if there is no parent. */ - if (!pii.overlap) { - if (parent_spec) { - /* refresh, careful to warn just once */ - if (rbd_dev->parent_overlap) - rbd_warn(rbd_dev, - "clone now standalone (overlap became 0)"); - } else { - /* initial probe */ - rbd_warn(rbd_dev, "clone is standalone (overlap 0)"); - } - } + if (!pii.overlap) + rbd_warn(rbd_dev, "clone is standalone (overlap 0)"); rbd_dev->parent_overlap = pii.overlap; out: ret = 0; out_err: - kfree(pii.pool_ns); - kfree(pii.image_id); + rbd_parent_info_cleanup(&pii); rbd_spec_put(parent_spec); return ret; } -static int rbd_dev_v2_striping_info(struct rbd_device *rbd_dev) +static int rbd_dev_v2_striping_info(struct rbd_device *rbd_dev, + u64 *stripe_unit, u64 *stripe_count) { struct { __le64 stripe_unit; __le64 stripe_count; } __attribute__ ((packed)) striping_info_buf = { 0 }; size_t size = sizeof (striping_info_buf); - void *p; int ret; ret = rbd_obj_method_sync(rbd_dev, &rbd_dev->header_oid, @@ -5896,27 +5833,33 @@ static int rbd_dev_v2_striping_info(struct rbd_device *rbd_dev) if (ret < size) return -ERANGE; - p = &striping_info_buf; - rbd_dev->header.stripe_unit = ceph_decode_64(&p); - rbd_dev->header.stripe_count = ceph_decode_64(&p); + *stripe_unit = le64_to_cpu(striping_info_buf.stripe_unit); + *stripe_count = le64_to_cpu(striping_info_buf.stripe_count); + dout(" stripe_unit = %llu stripe_count = %llu\n", *stripe_unit, + *stripe_count); + return 0; } -static int rbd_dev_v2_data_pool(struct rbd_device *rbd_dev) +static int rbd_dev_v2_data_pool(struct rbd_device *rbd_dev, s64 *data_pool_id) { - __le64 data_pool_id; + __le64 data_pool_buf; int ret; ret = rbd_obj_method_sync(rbd_dev, &rbd_dev->header_oid, &rbd_dev->header_oloc, "get_data_pool", - NULL, 0, &data_pool_id, sizeof(data_pool_id)); + NULL, 0, &data_pool_buf, + sizeof(data_pool_buf)); + dout("%s: rbd_obj_method_sync returned %d\n", __func__, ret); if (ret < 0) return ret; - if (ret < sizeof(data_pool_id)) + if (ret < sizeof(data_pool_buf)) return -EBADMSG; - rbd_dev->header.data_pool_id = le64_to_cpu(data_pool_id); - WARN_ON(rbd_dev->header.data_pool_id == CEPH_NOPOOL); + *data_pool_id = le64_to_cpu(data_pool_buf); + dout(" data_pool_id = %lld\n", *data_pool_id); + WARN_ON(*data_pool_id == CEPH_NOPOOL); + return 0; } @@ -6108,7 +6051,8 @@ static int rbd_spec_fill_names(struct rbd_device *rbd_dev) return ret; } -static int rbd_dev_v2_snap_context(struct rbd_device *rbd_dev) +static int rbd_dev_v2_snap_context(struct rbd_device *rbd_dev, + struct ceph_snap_context **psnapc) { size_t size; int ret; @@ -6169,9 +6113,7 @@ static int rbd_dev_v2_snap_context(struct rbd_device *rbd_dev) for (i = 0; i < snap_count; i++) snapc->snaps[i] = ceph_decode_64(&p); - ceph_put_snap_context(rbd_dev->header.snapc); - rbd_dev->header.snapc = snapc; - + *psnapc = snapc; dout(" snap context seq = %llu, snap_count = %u\n", (unsigned long long)seq, (unsigned int)snap_count); out: @@ -6220,38 +6162,42 @@ static const char *rbd_dev_v2_snap_name(struct rbd_device *rbd_dev, return snap_name; } -static int rbd_dev_v2_header_info(struct rbd_device *rbd_dev) +static int rbd_dev_v2_header_info(struct rbd_device *rbd_dev, + struct rbd_image_header *header, + bool first_time) { - bool first_time = rbd_dev->header.object_prefix == NULL; int ret; - ret = rbd_dev_v2_image_size(rbd_dev); + ret = _rbd_dev_v2_snap_size(rbd_dev, CEPH_NOSNAP, + first_time ? &header->obj_order : NULL, + &header->image_size); if (ret) return ret; if (first_time) { - ret = rbd_dev_v2_header_onetime(rbd_dev); + ret = rbd_dev_v2_header_onetime(rbd_dev, header); if (ret) return ret; } - ret = rbd_dev_v2_snap_context(rbd_dev); - if (ret && first_time) { - kfree(rbd_dev->header.object_prefix); - rbd_dev->header.object_prefix = NULL; - } + ret = rbd_dev_v2_snap_context(rbd_dev, &header->snapc); + if (ret) + return ret; - return ret; + return 0; } -static int rbd_dev_header_info(struct rbd_device *rbd_dev) +static int rbd_dev_header_info(struct rbd_device *rbd_dev, + struct rbd_image_header *header, + bool first_time) { rbd_assert(rbd_image_format_valid(rbd_dev->image_format)); + rbd_assert(!header->object_prefix && !header->snapc); if (rbd_dev->image_format == 1) - return rbd_dev_v1_header_info(rbd_dev); + return rbd_dev_v1_header_info(rbd_dev, header, first_time); - return rbd_dev_v2_header_info(rbd_dev); + return rbd_dev_v2_header_info(rbd_dev, header, first_time); } /* @@ -6738,60 +6684,49 @@ static int rbd_dev_image_id(struct rbd_device *rbd_dev) */ static void rbd_dev_unprobe(struct rbd_device *rbd_dev) { - struct rbd_image_header *header; - rbd_dev_parent_put(rbd_dev); rbd_object_map_free(rbd_dev); rbd_dev_mapping_clear(rbd_dev); /* Free dynamic fields from the header, then zero it out */ - header = &rbd_dev->header; - ceph_put_snap_context(header->snapc); - kfree(header->snap_sizes); - kfree(header->snap_names); - kfree(header->object_prefix); - memset(header, 0, sizeof (*header)); + rbd_image_header_cleanup(&rbd_dev->header); } -static int rbd_dev_v2_header_onetime(struct rbd_device *rbd_dev) +static int rbd_dev_v2_header_onetime(struct rbd_device *rbd_dev, + struct rbd_image_header *header) { int ret; - ret = rbd_dev_v2_object_prefix(rbd_dev); + ret = rbd_dev_v2_object_prefix(rbd_dev, &header->object_prefix); if (ret) - goto out_err; + return ret; /* * Get the and check features for the image. Currently the * features are assumed to never change. */ - ret = rbd_dev_v2_features(rbd_dev); + ret = _rbd_dev_v2_snap_features(rbd_dev, CEPH_NOSNAP, + rbd_is_ro(rbd_dev), &header->features); if (ret) - goto out_err; + return ret; /* If the image supports fancy striping, get its parameters */ - if (rbd_dev->header.features & RBD_FEATURE_STRIPINGV2) { - ret = rbd_dev_v2_striping_info(rbd_dev); - if (ret < 0) - goto out_err; + if (header->features & RBD_FEATURE_STRIPINGV2) { + ret = rbd_dev_v2_striping_info(rbd_dev, &header->stripe_unit, + &header->stripe_count); + if (ret) + return ret; } - if (rbd_dev->header.features & RBD_FEATURE_DATA_POOL) { - ret = rbd_dev_v2_data_pool(rbd_dev); + if (header->features & RBD_FEATURE_DATA_POOL) { + ret = rbd_dev_v2_data_pool(rbd_dev, &header->data_pool_id); if (ret) - goto out_err; + return ret; } - rbd_init_layout(rbd_dev); return 0; - -out_err: - rbd_dev->header.features = 0; - kfree(rbd_dev->header.object_prefix); - rbd_dev->header.object_prefix = NULL; - return ret; } /* @@ -6986,13 +6921,15 @@ static int rbd_dev_image_probe(struct rbd_device *rbd_dev, int depth) if (!depth) down_write(&rbd_dev->header_rwsem); - ret = rbd_dev_header_info(rbd_dev); + ret = rbd_dev_header_info(rbd_dev, &rbd_dev->header, true); if (ret) { if (ret == -ENOENT && !need_watch) rbd_print_dne(rbd_dev, false); goto err_out_probe; } + rbd_init_layout(rbd_dev); + /* * If this image is the one being mapped, we have pool name and * id, image name and id, and snap name - need to fill snap id. @@ -7021,7 +6958,7 @@ static int rbd_dev_image_probe(struct rbd_device *rbd_dev, int depth) } if (rbd_dev->header.features & RBD_FEATURE_LAYERING) { - ret = rbd_dev_v2_parent_info(rbd_dev); + ret = rbd_dev_setup_parent(rbd_dev); if (ret) goto err_out_probe; } @@ -7047,6 +6984,107 @@ static int rbd_dev_image_probe(struct rbd_device *rbd_dev, int depth) return ret; } +static void rbd_dev_update_header(struct rbd_device *rbd_dev, + struct rbd_image_header *header) +{ + rbd_assert(rbd_image_format_valid(rbd_dev->image_format)); + rbd_assert(rbd_dev->header.object_prefix); /* !first_time */ + + if (rbd_dev->header.image_size != header->image_size) { + rbd_dev->header.image_size = header->image_size; + + if (!rbd_is_snap(rbd_dev)) { + rbd_dev->mapping.size = header->image_size; + rbd_dev_update_size(rbd_dev); + } + } + + ceph_put_snap_context(rbd_dev->header.snapc); + rbd_dev->header.snapc = header->snapc; + header->snapc = NULL; + + if (rbd_dev->image_format == 1) { + kfree(rbd_dev->header.snap_names); + rbd_dev->header.snap_names = header->snap_names; + header->snap_names = NULL; + + kfree(rbd_dev->header.snap_sizes); + rbd_dev->header.snap_sizes = header->snap_sizes; + header->snap_sizes = NULL; + } +} + +static void rbd_dev_update_parent(struct rbd_device *rbd_dev, + struct parent_image_info *pii) +{ + if (pii->pool_id == CEPH_NOPOOL || !pii->has_overlap) { + /* + * Either the parent never existed, or we have + * record of it but the image got flattened so it no + * longer has a parent. When the parent of a + * layered image disappears we immediately set the + * overlap to 0. The effect of this is that all new + * requests will be treated as if the image had no + * parent. + * + * If !pii.has_overlap, the parent image spec is not + * applicable. It's there to avoid duplication in each + * snapshot record. + */ + if (rbd_dev->parent_overlap) { + rbd_dev->parent_overlap = 0; + rbd_dev_parent_put(rbd_dev); + pr_info("%s: clone has been flattened\n", + rbd_dev->disk->disk_name); + } + } else { + rbd_assert(rbd_dev->parent_spec); + + /* + * Update the parent overlap. If it became zero, issue + * a warning as we will proceed as if there is no parent. + */ + if (!pii->overlap && rbd_dev->parent_overlap) + rbd_warn(rbd_dev, + "clone has become standalone (overlap 0)"); + rbd_dev->parent_overlap = pii->overlap; + } +} + +static int rbd_dev_refresh(struct rbd_device *rbd_dev) +{ + struct rbd_image_header header = { 0 }; + struct parent_image_info pii = { 0 }; + int ret; + + dout("%s rbd_dev %p\n", __func__, rbd_dev); + + ret = rbd_dev_header_info(rbd_dev, &header, false); + if (ret) + goto out; + + /* + * If there is a parent, see if it has disappeared due to the + * mapped image getting flattened. + */ + if (rbd_dev->parent) { + ret = rbd_dev_v2_parent_info(rbd_dev, &pii); + if (ret) + goto out; + } + + down_write(&rbd_dev->header_rwsem); + rbd_dev_update_header(rbd_dev, &header); + if (rbd_dev->parent) + rbd_dev_update_parent(rbd_dev, &pii); + up_write(&rbd_dev->header_rwsem); + +out: + rbd_parent_info_cleanup(&pii); + rbd_image_header_cleanup(&header); + return ret; +} + static ssize_t do_rbd_add(struct bus_type *bus, const char *buf, size_t count) diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c index d2ba849bb8d19..affeca0dbc7ea 100644 --- a/drivers/block/virtio_blk.c +++ b/drivers/block/virtio_blk.c @@ -743,6 +743,7 @@ static int virtblk_probe(struct virtio_device *vdev) u16 min_io_size; u8 physical_block_exp, alignment_offset; unsigned int queue_depth; + size_t max_dma_size; if (!vdev->config->get) { dev_err(&vdev->dev, "%s failure: config access disabled\n", @@ -844,7 +845,8 @@ static int virtblk_probe(struct virtio_device *vdev) /* No real sector limit. */ blk_queue_max_hw_sectors(q, -1U); - max_size = virtio_max_dma_size(vdev); + max_dma_size = virtio_max_dma_size(vdev); + max_size = max_dma_size > U32_MAX ? U32_MAX : max_dma_size; /* Host can optionally specify maximum segment size and number of * segments. */ diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 5594c6f2a346d..e2af7e10e9da7 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -437,6 +437,18 @@ static const struct usb_device_id blacklist_table[] = { { USB_DEVICE(0x13d3, 0x3586), .driver_info = BTUSB_REALTEK | BTUSB_WIDEBAND_SPEECH }, + /* Realtek 8852BE Bluetooth devices */ + { USB_DEVICE(0x0cb8, 0xc559), .driver_info = BTUSB_REALTEK | + BTUSB_WIDEBAND_SPEECH }, + { USB_DEVICE(0x0bda, 0x887b), .driver_info = BTUSB_REALTEK | + BTUSB_WIDEBAND_SPEECH }, + { USB_DEVICE(0x0bda, 0xb85b), .driver_info = BTUSB_REALTEK | + BTUSB_WIDEBAND_SPEECH }, + { USB_DEVICE(0x13d3, 0x3570), .driver_info = BTUSB_REALTEK | + BTUSB_WIDEBAND_SPEECH }, + { USB_DEVICE(0x13d3, 0x3571), .driver_info = BTUSB_REALTEK | + BTUSB_WIDEBAND_SPEECH }, + /* Realtek Bluetooth devices */ { USB_VENDOR_AND_INTERFACE_INFO(0x0bda, 0xe0, 0x01, 0x01), .driver_info = BTUSB_REALTEK }, @@ -1766,7 +1778,7 @@ static int btusb_switch_alt_setting(struct hci_dev *hdev, int new_alts) * alternate setting. */ spin_lock_irqsave(&data->rxlock, flags); - kfree_skb(data->sco_skb); + dev_kfree_skb_irq(data->sco_skb); data->sco_skb = NULL; spin_unlock_irqrestore(&data->rxlock, flags); @@ -2507,6 +2519,9 @@ static int btusb_mtk_hci_wmt_sync(struct hci_dev *hdev, goto err_free_wc; } + if (data->evt_skb == NULL) + goto err_free_wc; + /* Parse and handle the return WMT event */ wmt_evt = (struct btmtk_hci_wmt_evt *)data->evt_skb->data; if (wmt_evt->whdr.op != hdr->op) { @@ -4042,6 +4057,7 @@ static int btusb_probe(struct usb_interface *intf, if (id->driver_info & BTUSB_QCA_ROME) { data->setup_on_usb = btusb_setup_qca; + hdev->shutdown = btusb_shutdown_qca; hdev->set_bdaddr = btusb_set_bdaddr_ath3012; hdev->cmd_timeout = btusb_qca_cmd_timeout; set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks); diff --git a/drivers/bluetooth/hci_nokia.c b/drivers/bluetooth/hci_nokia.c index 05f7f6de6863d..97da0b2bfd17e 100644 --- a/drivers/bluetooth/hci_nokia.c +++ b/drivers/bluetooth/hci_nokia.c @@ -734,7 +734,11 @@ static int nokia_bluetooth_serdev_probe(struct serdev_device *serdev) return err; } - clk_prepare_enable(sysclk); + err = clk_prepare_enable(sysclk); + if (err) { + dev_err(dev, "could not enable sysclk: %d", err); + return err; + } btdev->sysclk_speed = clk_get_rate(sysclk); clk_disable_unprepare(sysclk); diff --git a/drivers/bluetooth/hci_vhci.c b/drivers/bluetooth/hci_vhci.c index 8469f9876dd26..31d70bad83d29 100644 --- a/drivers/bluetooth/hci_vhci.c +++ b/drivers/bluetooth/hci_vhci.c @@ -67,7 +67,10 @@ static int vhci_send_frame(struct hci_dev *hdev, struct sk_buff *skb) struct vhci_data *data = hci_get_drvdata(hdev); memcpy(skb_push(skb, 1), &hci_skb_pkt_type(skb), 1); + + mutex_lock(&data->open_mutex); skb_queue_tail(&data->readq, skb); + mutex_unlock(&data->open_mutex); wake_up_interruptible(&data->read_wait); return 0; diff --git a/drivers/bus/mhi/host/pm.c b/drivers/bus/mhi/host/pm.c index 1a87b9c6c2f89..470dddca025dc 100644 --- a/drivers/bus/mhi/host/pm.c +++ b/drivers/bus/mhi/host/pm.c @@ -466,6 +466,10 @@ static void mhi_pm_disable_transition(struct mhi_controller *mhi_cntrl) /* Trigger MHI RESET so that the device will not access host memory */ if (!MHI_PM_IN_FATAL_STATE(mhi_cntrl->pm_state)) { + /* Skip MHI RESET if in RDDM state */ + if (mhi_cntrl->rddm_image && mhi_get_exec_env(mhi_cntrl) == MHI_EE_RDDM) + goto skip_mhi_reset; + dev_dbg(dev, "Triggering MHI Reset in device\n"); mhi_set_mhi_state(mhi_cntrl, MHI_STATE_RESET); @@ -483,6 +487,7 @@ static void mhi_pm_disable_transition(struct mhi_controller *mhi_cntrl) mhi_write_reg(mhi_cntrl, mhi_cntrl->bhi, BHI_INTVEC, 0); } +skip_mhi_reset: dev_dbg(dev, "Waiting for all pending event ring processing to complete\n"); mhi_event = mhi_cntrl->mhi_event; diff --git a/drivers/bus/ti-sysc.c b/drivers/bus/ti-sysc.c index 71b541538801e..0a159989c899a 100644 --- a/drivers/bus/ti-sysc.c +++ b/drivers/bus/ti-sysc.c @@ -38,6 +38,7 @@ enum sysc_soc { SOC_2420, SOC_2430, SOC_3430, + SOC_AM35, SOC_3630, SOC_4430, SOC_4460, @@ -1117,6 +1118,11 @@ static int sysc_enable_module(struct device *dev) if (ddata->cfg.quirks & (SYSC_QUIRK_SWSUP_SIDLE | SYSC_QUIRK_SWSUP_SIDLE_ACT)) { best_mode = SYSC_IDLE_NO; + + /* Clear WAKEUP */ + if (regbits->enwkup_shift >= 0 && + ddata->cfg.sysc_val & BIT(regbits->enwkup_shift)) + reg &= ~BIT(regbits->enwkup_shift); } else { best_mode = fls(ddata->cfg.sidlemodes) - 1; if (best_mode > SYSC_IDLE_MASK) { @@ -1237,6 +1243,13 @@ static int sysc_disable_module(struct device *dev) } } + if (ddata->cfg.quirks & SYSC_QUIRK_SWSUP_SIDLE_ACT) { + /* Set WAKEUP */ + if (regbits->enwkup_shift >= 0 && + ddata->cfg.sysc_val & BIT(regbits->enwkup_shift)) + reg |= BIT(regbits->enwkup_shift); + } + reg &= ~(SYSC_IDLE_MASK << regbits->sidle_shift); reg |= best_mode << regbits->sidle_shift; if (regbits->autoidle_shift >= 0 && @@ -1496,14 +1509,16 @@ static const struct sysc_revision_quirk sysc_revision_quirks[] = { SYSC_QUIRK("sham", 0, 0x100, 0x110, 0x114, 0x40000c03, 0xffffffff, SYSC_QUIRK_LEGACY_IDLE), SYSC_QUIRK("uart", 0, 0x50, 0x54, 0x58, 0x00000046, 0xffffffff, - SYSC_QUIRK_SWSUP_SIDLE | SYSC_QUIRK_LEGACY_IDLE), + SYSC_QUIRK_SWSUP_SIDLE_ACT | SYSC_QUIRK_LEGACY_IDLE), SYSC_QUIRK("uart", 0, 0x50, 0x54, 0x58, 0x00000052, 0xffffffff, - SYSC_QUIRK_SWSUP_SIDLE | SYSC_QUIRK_LEGACY_IDLE), + SYSC_QUIRK_SWSUP_SIDLE_ACT | SYSC_QUIRK_LEGACY_IDLE), /* Uarts on omap4 and later */ SYSC_QUIRK("uart", 0, 0x50, 0x54, 0x58, 0x50411e03, 0xffff00ff, - SYSC_QUIRK_SWSUP_SIDLE | SYSC_QUIRK_LEGACY_IDLE), + SYSC_QUIRK_SWSUP_SIDLE_ACT | SYSC_QUIRK_LEGACY_IDLE), SYSC_QUIRK("uart", 0, 0x50, 0x54, 0x58, 0x47422e03, 0xffffffff, - SYSC_QUIRK_SWSUP_SIDLE | SYSC_QUIRK_LEGACY_IDLE), + SYSC_QUIRK_SWSUP_SIDLE_ACT | SYSC_QUIRK_LEGACY_IDLE), + SYSC_QUIRK("uart", 0, 0x50, 0x54, 0x58, 0x47424e03, 0xffffffff, + SYSC_QUIRK_SWSUP_SIDLE_ACT | SYSC_QUIRK_LEGACY_IDLE), /* Quirks that need to be set based on the module address */ SYSC_QUIRK("mcpdm", 0x40132000, 0, 0x10, -ENODEV, 0x50000800, 0xffffffff, @@ -1827,7 +1842,7 @@ static void sysc_pre_reset_quirk_dss(struct sysc *ddata) dev_warn(ddata->dev, "%s: timed out %08x !+ %08x\n", __func__, val, irq_mask); - if (sysc_soc->soc == SOC_3430) { + if (sysc_soc->soc == SOC_3430 || sysc_soc->soc == SOC_AM35) { /* Clear DSS_SDI_CONTROL */ sysc_write(ddata, 0x44, 0); @@ -2094,8 +2109,7 @@ static int sysc_reset(struct sysc *ddata) } if (ddata->cfg.srst_udelay) - usleep_range(ddata->cfg.srst_udelay, - ddata->cfg.srst_udelay * 2); + fsleep(ddata->cfg.srst_udelay); if (ddata->post_reset_quirk) ddata->post_reset_quirk(ddata); @@ -2971,6 +2985,7 @@ static void ti_sysc_idle(struct work_struct *work) static const struct soc_device_attribute sysc_soc_match[] = { SOC_FLAG("OMAP242*", SOC_2420), SOC_FLAG("OMAP243*", SOC_2430), + SOC_FLAG("AM35*", SOC_AM35), SOC_FLAG("OMAP3[45]*", SOC_3430), SOC_FLAG("OMAP3[67]*", SOC_3630), SOC_FLAG("OMAP443*", SOC_4430), @@ -3055,7 +3070,7 @@ static int sysc_init_static_data(struct sysc *ddata) match = soc_device_match(sysc_soc_match); if (match && match->data) - sysc_soc->soc = (int)match->data; + sysc_soc->soc = (enum sysc_soc)(uintptr_t)match->data; /* * Check and warn about possible old incomplete dtb. We now want to see @@ -3177,7 +3192,7 @@ static int sysc_check_active_timer(struct sysc *ddata) * can be dropped if we stop supporting old beagleboard revisions * A to B4 at some point. */ - if (sysc_soc->soc == SOC_3430) + if (sysc_soc->soc == SOC_3430 || sysc_soc->soc == SOC_AM35) error = -ENXIO; else error = -EBUSY; diff --git a/drivers/char/agp/parisc-agp.c b/drivers/char/agp/parisc-agp.c index 514f9f287a781..c6f181702b9a7 100644 --- a/drivers/char/agp/parisc-agp.c +++ b/drivers/char/agp/parisc-agp.c @@ -394,8 +394,6 @@ find_quicksilver(struct device *dev, void *data) static int __init parisc_agp_init(void) { - extern struct sba_device *sba_list; - int err = -1; struct parisc_device *sba = NULL, *lba = NULL; struct lba_device *lbadev = NULL; diff --git a/drivers/char/hw_random/geode-rng.c b/drivers/char/hw_random/geode-rng.c index 12fbe80918319..159baf00a8675 100644 --- a/drivers/char/hw_random/geode-rng.c +++ b/drivers/char/hw_random/geode-rng.c @@ -58,7 +58,8 @@ struct amd_geode_priv { static int geode_rng_data_read(struct hwrng *rng, u32 *data) { - void __iomem *mem = (void __iomem *)rng->priv; + struct amd_geode_priv *priv = (struct amd_geode_priv *)rng->priv; + void __iomem *mem = priv->membase; *data = readl(mem + GEODE_RNG_DATA_REG); @@ -67,7 +68,8 @@ static int geode_rng_data_read(struct hwrng *rng, u32 *data) static int geode_rng_data_present(struct hwrng *rng, int wait) { - void __iomem *mem = (void __iomem *)rng->priv; + struct amd_geode_priv *priv = (struct amd_geode_priv *)rng->priv; + void __iomem *mem = priv->membase; int data, i; for (i = 0; i < 20; i++) { diff --git a/drivers/char/hw_random/iproc-rng200.c b/drivers/char/hw_random/iproc-rng200.c index a43743887db19..9142a63b92b30 100644 --- a/drivers/char/hw_random/iproc-rng200.c +++ b/drivers/char/hw_random/iproc-rng200.c @@ -189,6 +189,8 @@ static int iproc_rng200_probe(struct platform_device *pdev) return PTR_ERR(priv->base); } + dev_set_drvdata(dev, priv); + priv->rng.name = "iproc-rng200"; priv->rng.read = iproc_rng200_read; priv->rng.init = iproc_rng200_init; @@ -206,6 +208,28 @@ static int iproc_rng200_probe(struct platform_device *pdev) return 0; } +static int __maybe_unused iproc_rng200_suspend(struct device *dev) +{ + struct iproc_rng200_dev *priv = dev_get_drvdata(dev); + + iproc_rng200_cleanup(&priv->rng); + + return 0; +} + +static int __maybe_unused iproc_rng200_resume(struct device *dev) +{ + struct iproc_rng200_dev *priv = dev_get_drvdata(dev); + + iproc_rng200_init(&priv->rng); + + return 0; +} + +static const struct dev_pm_ops iproc_rng200_pm_ops = { + SET_SYSTEM_SLEEP_PM_OPS(iproc_rng200_suspend, iproc_rng200_resume) +}; + static const struct of_device_id iproc_rng200_of_match[] = { { .compatible = "brcm,bcm2711-rng200", }, { .compatible = "brcm,bcm7211-rng200", }, @@ -219,6 +243,7 @@ static struct platform_driver iproc_rng200_driver = { .driver = { .name = "iproc-rng200", .of_match_table = iproc_rng200_of_match, + .pm = &iproc_rng200_pm_ops, }, .probe = iproc_rng200_probe, }; diff --git a/drivers/char/hw_random/nomadik-rng.c b/drivers/char/hw_random/nomadik-rng.c index e8f9621e79541..3774adf903a83 100644 --- a/drivers/char/hw_random/nomadik-rng.c +++ b/drivers/char/hw_random/nomadik-rng.c @@ -13,8 +13,6 @@ #include #include -static struct clk *rng_clk; - static int nmk_rng_read(struct hwrng *rng, void *data, size_t max, bool wait) { void __iomem *base = (void __iomem *)rng->priv; @@ -36,21 +34,20 @@ static struct hwrng nmk_rng = { static int nmk_rng_probe(struct amba_device *dev, const struct amba_id *id) { + struct clk *rng_clk; void __iomem *base; int ret; - rng_clk = devm_clk_get(&dev->dev, NULL); + rng_clk = devm_clk_get_enabled(&dev->dev, NULL); if (IS_ERR(rng_clk)) { dev_err(&dev->dev, "could not get rng clock\n"); ret = PTR_ERR(rng_clk); return ret; } - clk_prepare_enable(rng_clk); - ret = amba_request_regions(dev, dev->dev.init_name); if (ret) - goto out_clk; + return ret; ret = -ENOMEM; base = devm_ioremap(&dev->dev, dev->res.start, resource_size(&dev->res)); @@ -64,15 +61,12 @@ static int nmk_rng_probe(struct amba_device *dev, const struct amba_id *id) out_release: amba_release_regions(dev); -out_clk: - clk_disable_unprepare(rng_clk); return ret; } static void nmk_rng_remove(struct amba_device *dev) { amba_release_regions(dev); - clk_disable_unprepare(rng_clk); } static const struct amba_id nmk_rng_ids[] = { diff --git a/drivers/char/hw_random/pic32-rng.c b/drivers/char/hw_random/pic32-rng.c index 99c8bd0859a14..e04a054e89307 100644 --- a/drivers/char/hw_random/pic32-rng.c +++ b/drivers/char/hw_random/pic32-rng.c @@ -36,7 +36,6 @@ struct pic32_rng { void __iomem *base; struct hwrng rng; - struct clk *clk; }; /* @@ -70,6 +69,7 @@ static int pic32_rng_read(struct hwrng *rng, void *buf, size_t max, static int pic32_rng_probe(struct platform_device *pdev) { struct pic32_rng *priv; + struct clk *clk; u32 v; int ret; @@ -81,13 +81,9 @@ static int pic32_rng_probe(struct platform_device *pdev) if (IS_ERR(priv->base)) return PTR_ERR(priv->base); - priv->clk = devm_clk_get(&pdev->dev, NULL); - if (IS_ERR(priv->clk)) - return PTR_ERR(priv->clk); - - ret = clk_prepare_enable(priv->clk); - if (ret) - return ret; + clk = devm_clk_get_enabled(&pdev->dev, NULL); + if (IS_ERR(clk)) + return PTR_ERR(clk); /* enable TRNG in enhanced mode */ v = TRNGEN | TRNGMOD; @@ -98,15 +94,11 @@ static int pic32_rng_probe(struct platform_device *pdev) ret = devm_hwrng_register(&pdev->dev, &priv->rng); if (ret) - goto err_register; + return ret; platform_set_drvdata(pdev, priv); return 0; - -err_register: - clk_disable_unprepare(priv->clk); - return ret; } static int pic32_rng_remove(struct platform_device *pdev) @@ -114,7 +106,6 @@ static int pic32_rng_remove(struct platform_device *pdev) struct pic32_rng *rng = platform_get_drvdata(pdev); writel(0, rng->base + RNGCON); - clk_disable_unprepare(rng->clk); return 0; } diff --git a/drivers/char/ipmi/ipmi_si_intf.c b/drivers/char/ipmi/ipmi_si_intf.c index 17255e705cb06..f4360fbddbffe 100644 --- a/drivers/char/ipmi/ipmi_si_intf.c +++ b/drivers/char/ipmi/ipmi_si_intf.c @@ -2081,6 +2081,11 @@ static int try_smi_init(struct smi_info *new_smi) new_smi->io.io_cleanup = NULL; } + if (rv && new_smi->si_sm) { + kfree(new_smi->si_sm); + new_smi->si_sm = NULL; + } + return rv; } diff --git a/drivers/char/ipmi/ipmi_ssif.c b/drivers/char/ipmi/ipmi_ssif.c index a3745fa643f3b..30f757249c5c0 100644 --- a/drivers/char/ipmi/ipmi_ssif.c +++ b/drivers/char/ipmi/ipmi_ssif.c @@ -1414,7 +1414,7 @@ static struct ssif_addr_info *ssif_info_find(unsigned short addr, restart: list_for_each_entry(info, &ssif_infos, link) { if (info->binfo.addr == addr) { - if (info->addr_src == SI_SMBIOS) + if (info->addr_src == SI_SMBIOS && !info->adapter_name) info->adapter_name = kstrdup(adapter_name, GFP_KERNEL); @@ -1614,6 +1614,11 @@ static int ssif_add_infos(struct i2c_client *client) info->addr_src = SI_ACPI; info->client = client; info->adapter_name = kstrdup(client->adapter->name, GFP_KERNEL); + if (!info->adapter_name) { + kfree(info); + return -ENOMEM; + } + info->binfo.addr = client->addr; list_add_tail(&info->link, &ssif_infos); return 0; diff --git a/drivers/char/tpm/tpm_tis_core.c b/drivers/char/tpm/tpm_tis_core.c index d7c440ac465f3..b3452259d6e0b 100644 --- a/drivers/char/tpm/tpm_tis_core.c +++ b/drivers/char/tpm/tpm_tis_core.c @@ -469,10 +469,17 @@ static int tpm_tis_send_main(struct tpm_chip *chip, const u8 *buf, size_t len) int rc; u32 ordinal; unsigned long dur; - - rc = tpm_tis_send_data(chip, buf, len); - if (rc < 0) - return rc; + unsigned int try; + + for (try = 0; try < TPM_RETRY; try++) { + rc = tpm_tis_send_data(chip, buf, len); + if (rc >= 0) + /* Data transfer done successfully */ + break; + else if (rc != -EIO) + /* Data transfer failed, not recoverable */ + return rc; + } /* go and do it */ rc = tpm_tis_write8(priv, TPM_STS(priv->locality), TPM_STS_GO); diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig index 100e474ff3dc5..d12465c227514 100644 --- a/drivers/clk/Kconfig +++ b/drivers/clk/Kconfig @@ -380,6 +380,7 @@ config COMMON_CLK_BD718XX config COMMON_CLK_FIXED_MMIO bool "Clock driver for Memory Mapped Fixed values" depends on COMMON_CLK && OF + depends on HAS_IOMEM help Support for Memory Mapped IO Fixed clocks diff --git a/drivers/clk/clk-npcm7xx.c b/drivers/clk/clk-npcm7xx.c index e677bb5a784b9..c10f04f9070a5 100644 --- a/drivers/clk/clk-npcm7xx.c +++ b/drivers/clk/clk-npcm7xx.c @@ -539,7 +539,7 @@ static void __init npcm7xx_clk_init(struct device_node *clk_np) return; npcm7xx_init_fail: - kfree(npcm7xx_clk_data->hws); + kfree(npcm7xx_clk_data); npcm7xx_init_np_err: iounmap(clk_base); npcm7xx_init_error: diff --git a/drivers/clk/clk-scmi.c b/drivers/clk/clk-scmi.c index 1e357d364ca26..a26027597a0ac 100644 --- a/drivers/clk/clk-scmi.c +++ b/drivers/clk/clk-scmi.c @@ -178,6 +178,7 @@ static int scmi_clocks_probe(struct scmi_device *sdev) sclk->info = scmi_proto_clk_ops->info_get(ph, idx); if (!sclk->info) { dev_dbg(dev, "invalid clock info for idx %d\n", idx); + devm_kfree(dev, sclk); continue; } diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index 5eba83745d8de..b37af6b27e9c6 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -3182,6 +3182,7 @@ static void possible_parent_show(struct seq_file *s, struct clk_core *core, unsigned int i, char terminator) { struct clk_core *parent; + const char *name = NULL; /* * Go through the following options to fetch a parent's name. @@ -3196,18 +3197,20 @@ static void possible_parent_show(struct seq_file *s, struct clk_core *core, * registered (yet). */ parent = clk_core_get_parent_by_index(core, i); - if (parent) + if (parent) { seq_puts(s, parent->name); - else if (core->parents[i].name) + } else if (core->parents[i].name) { seq_puts(s, core->parents[i].name); - else if (core->parents[i].fw_name) + } else if (core->parents[i].fw_name) { seq_printf(s, "<%s>(fw)", core->parents[i].fw_name); - else if (core->parents[i].index >= 0) - seq_puts(s, - of_clk_get_parent_name(core->of_node, - core->parents[i].index)); - else - seq_puts(s, "(missing)"); + } else { + if (core->parents[i].index >= 0) + name = of_clk_get_parent_name(core->of_node, core->parents[i].index); + if (!name) + name = "(missing)"; + + seq_puts(s, name); + } seq_putc(s, terminator); } diff --git a/drivers/clk/imx/Kconfig b/drivers/clk/imx/Kconfig index 47d9ec3abd2f7..d3d730610cb4f 100644 --- a/drivers/clk/imx/Kconfig +++ b/drivers/clk/imx/Kconfig @@ -96,5 +96,6 @@ config CLK_IMX8QXP depends on (ARCH_MXC && ARM64) || COMPILE_TEST depends on IMX_SCU && HAVE_ARM_SMCCC select MXC_CLK_SCU + select MXC_CLK help Build the driver for IMX8QXP SCU based clocks. diff --git a/drivers/clk/imx/clk-composite-8m.c b/drivers/clk/imx/clk-composite-8m.c index 04e728538cefe..75e05582cb24f 100644 --- a/drivers/clk/imx/clk-composite-8m.c +++ b/drivers/clk/imx/clk-composite-8m.c @@ -97,7 +97,7 @@ static int imx8m_clk_composite_divider_set_rate(struct clk_hw *hw, int prediv_value; int div_value; int ret; - u32 val; + u32 orig, val; ret = imx8m_clk_composite_compute_dividers(rate, parent_rate, &prediv_value, &div_value); @@ -106,13 +106,15 @@ static int imx8m_clk_composite_divider_set_rate(struct clk_hw *hw, spin_lock_irqsave(divider->lock, flags); - val = readl(divider->reg); - val &= ~((clk_div_mask(divider->width) << divider->shift) | - (clk_div_mask(PCG_DIV_WIDTH) << PCG_DIV_SHIFT)); + orig = readl(divider->reg); + val = orig & ~((clk_div_mask(divider->width) << divider->shift) | + (clk_div_mask(PCG_DIV_WIDTH) << PCG_DIV_SHIFT)); val |= (u32)(prediv_value - 1) << divider->shift; val |= (u32)(div_value - 1) << PCG_DIV_SHIFT; - writel(val, divider->reg); + + if (val != orig) + writel(val, divider->reg); spin_unlock_irqrestore(divider->lock, flags); diff --git a/drivers/clk/imx/clk-imx8mp.c b/drivers/clk/imx/clk-imx8mp.c index 0191457fb3cfc..2f898c0bc867c 100644 --- a/drivers/clk/imx/clk-imx8mp.c +++ b/drivers/clk/imx/clk-imx8mp.c @@ -176,10 +176,6 @@ static const char * const imx8mp_sai3_sels[] = {"osc_24m", "audio_pll1_out", "au "video_pll1_out", "sys_pll1_133m", "osc_hdmi", "clk_ext3", "clk_ext4", }; -static const char * const imx8mp_sai4_sels[] = {"osc_24m", "audio_pll1_out", "audio_pll2_out", - "video_pll1_out", "sys_pll1_133m", "osc_hdmi", - "clk_ext1", "clk_ext2", }; - static const char * const imx8mp_sai5_sels[] = {"osc_24m", "audio_pll1_out", "audio_pll2_out", "video_pll1_out", "sys_pll1_133m", "osc_hdmi", "clk_ext2", "clk_ext3", }; @@ -566,7 +562,6 @@ static int imx8mp_clocks_probe(struct platform_device *pdev) hws[IMX8MP_CLK_SAI1] = imx8m_clk_hw_composite("sai1", imx8mp_sai1_sels, ccm_base + 0xa580); hws[IMX8MP_CLK_SAI2] = imx8m_clk_hw_composite("sai2", imx8mp_sai2_sels, ccm_base + 0xa600); hws[IMX8MP_CLK_SAI3] = imx8m_clk_hw_composite("sai3", imx8mp_sai3_sels, ccm_base + 0xa680); - hws[IMX8MP_CLK_SAI4] = imx8m_clk_hw_composite("sai4", imx8mp_sai4_sels, ccm_base + 0xa700); hws[IMX8MP_CLK_SAI5] = imx8m_clk_hw_composite("sai5", imx8mp_sai5_sels, ccm_base + 0xa780); hws[IMX8MP_CLK_SAI6] = imx8m_clk_hw_composite("sai6", imx8mp_sai6_sels, ccm_base + 0xa800); hws[IMX8MP_CLK_ENET_QOS] = imx8m_clk_hw_composite("enet_qos", imx8mp_enet_qos_sels, ccm_base + 0xa880); diff --git a/drivers/clk/imx/clk-imx8mq.c b/drivers/clk/imx/clk-imx8mq.c index 83cc2b1c32947..791f6bdd88b8a 100644 --- a/drivers/clk/imx/clk-imx8mq.c +++ b/drivers/clk/imx/clk-imx8mq.c @@ -288,8 +288,7 @@ static int imx8mq_clocks_probe(struct platform_device *pdev) void __iomem *base; int err; - clk_hw_data = kzalloc(struct_size(clk_hw_data, hws, - IMX8MQ_CLK_END), GFP_KERNEL); + clk_hw_data = devm_kzalloc(dev, struct_size(clk_hw_data, hws, IMX8MQ_CLK_END), GFP_KERNEL); if (WARN_ON(!clk_hw_data)) return -ENOMEM; @@ -306,10 +305,12 @@ static int imx8mq_clocks_probe(struct platform_device *pdev) hws[IMX8MQ_CLK_EXT4] = imx_obtain_fixed_clk_hw(np, "clk_ext4"); np = of_find_compatible_node(NULL, NULL, "fsl,imx8mq-anatop"); - base = of_iomap(np, 0); + base = devm_of_iomap(dev, np, 0, NULL); of_node_put(np); - if (WARN_ON(!base)) - return -ENOMEM; + if (WARN_ON(IS_ERR(base))) { + err = PTR_ERR(base); + goto unregister_hws; + } hws[IMX8MQ_ARM_PLL_REF_SEL] = imx_clk_hw_mux("arm_pll_ref_sel", base + 0x28, 16, 2, pll_ref_sels, ARRAY_SIZE(pll_ref_sels)); hws[IMX8MQ_GPU_PLL_REF_SEL] = imx_clk_hw_mux("gpu_pll_ref_sel", base + 0x18, 16, 2, pll_ref_sels, ARRAY_SIZE(pll_ref_sels)); @@ -395,8 +396,10 @@ static int imx8mq_clocks_probe(struct platform_device *pdev) np = dev->of_node; base = devm_platform_ioremap_resource(pdev, 0); - if (WARN_ON(IS_ERR(base))) - return PTR_ERR(base); + if (WARN_ON(IS_ERR(base))) { + err = PTR_ERR(base); + goto unregister_hws; + } /* CORE */ hws[IMX8MQ_CLK_A53_DIV] = imx8m_clk_hw_composite_core("arm_a53_div", imx8mq_a53_sels, base + 0x8000); diff --git a/drivers/clk/imx/clk-imx8qxp.c b/drivers/clk/imx/clk-imx8qxp.c index 40a2efb1329be..32df47c56621a 100644 --- a/drivers/clk/imx/clk-imx8qxp.c +++ b/drivers/clk/imx/clk-imx8qxp.c @@ -148,10 +148,10 @@ static int imx8qxp_clk_probe(struct platform_device *pdev) imx_clk_scu("adc0_clk", IMX_SC_R_ADC_0, IMX_SC_PM_CLK_PER); imx_clk_scu("adc1_clk", IMX_SC_R_ADC_1, IMX_SC_PM_CLK_PER); imx_clk_scu("pwm_clk", IMX_SC_R_LCD_0_PWM_0, IMX_SC_PM_CLK_PER); + imx_clk_scu("elcdif_pll", IMX_SC_R_ELCDIF_PLL, IMX_SC_PM_CLK_PLL); imx_clk_scu2("lcd_clk", lcd_sels, ARRAY_SIZE(lcd_sels), IMX_SC_R_LCD_0, IMX_SC_PM_CLK_PER); imx_clk_scu2("lcd_pxl_clk", lcd_pxl_sels, ARRAY_SIZE(lcd_pxl_sels), IMX_SC_R_LCD_0, IMX_SC_PM_CLK_MISC0); imx_clk_scu("lcd_pxl_bypass_div_clk", IMX_SC_R_LCD_0, IMX_SC_PM_CLK_BYPASS); - imx_clk_scu("elcdif_pll", IMX_SC_R_ELCDIF_PLL, IMX_SC_PM_CLK_PLL); /* Audio SS */ imx_clk_scu("audio_pll0_clk", IMX_SC_R_AUDIO_PLL_0, IMX_SC_PM_CLK_PLL); diff --git a/drivers/clk/keystone/pll.c b/drivers/clk/keystone/pll.c index d59a7621bb204..6bbdd4705d71f 100644 --- a/drivers/clk/keystone/pll.c +++ b/drivers/clk/keystone/pll.c @@ -209,7 +209,7 @@ static void __init _of_pll_clk_init(struct device_node *node, bool pllctrl) } clk = clk_register_pll(NULL, node->name, parent_name, pll_data); - if (clk) { + if (!IS_ERR_OR_NULL(clk)) { of_clk_add_provider(node, of_clk_src_simple_get, clk); return; } @@ -281,12 +281,13 @@ static void __init of_pll_div_clk_init(struct device_node *node) clk = clk_register_divider(NULL, clk_name, parent_name, 0, reg, shift, mask, 0, NULL); - if (clk) { - of_clk_add_provider(node, of_clk_src_simple_get, clk); - } else { + if (IS_ERR(clk)) { pr_err("%s: error registering divider %s\n", __func__, clk_name); iounmap(reg); + return; } + + of_clk_add_provider(node, of_clk_src_simple_get, clk); } CLK_OF_DECLARE(pll_divider_clock, "ti,keystone,pll-divider-clock", of_pll_div_clk_init); @@ -328,10 +329,12 @@ static void __init of_pll_mux_clk_init(struct device_node *node) clk = clk_register_mux(NULL, clk_name, (const char **)&parents, ARRAY_SIZE(parents) , 0, reg, shift, mask, 0, NULL); - if (clk) - of_clk_add_provider(node, of_clk_src_simple_get, clk); - else + if (IS_ERR(clk)) { pr_err("%s: error registering mux %s\n", __func__, clk_name); + return; + } + + of_clk_add_provider(node, of_clk_src_simple_get, clk); } CLK_OF_DECLARE(pll_mux_clock, "ti,keystone,pll-mux-clock", of_pll_mux_clk_init); diff --git a/drivers/clk/mediatek/clk-mt2701.c b/drivers/clk/mediatek/clk-mt2701.c index 695be0f774270..c67cd73aca171 100644 --- a/drivers/clk/mediatek/clk-mt2701.c +++ b/drivers/clk/mediatek/clk-mt2701.c @@ -675,6 +675,8 @@ static int mtk_topckgen_init(struct platform_device *pdev) return PTR_ERR(base); clk_data = mtk_alloc_clk_data(CLK_TOP_NR); + if (!clk_data) + return -ENOMEM; mtk_clk_register_fixed_clks(top_fixed_clks, ARRAY_SIZE(top_fixed_clks), clk_data); @@ -742,6 +744,8 @@ static void __init mtk_infrasys_init_early(struct device_node *node) if (!infra_clk_data) { infra_clk_data = mtk_alloc_clk_data(CLK_INFRA_NR); + if (!infra_clk_data) + return; for (i = 0; i < CLK_INFRA_NR; i++) infra_clk_data->clks[i] = ERR_PTR(-EPROBE_DEFER); @@ -768,6 +772,8 @@ static int mtk_infrasys_init(struct platform_device *pdev) if (!infra_clk_data) { infra_clk_data = mtk_alloc_clk_data(CLK_INFRA_NR); + if (!infra_clk_data) + return -ENOMEM; } else { for (i = 0; i < CLK_INFRA_NR; i++) { if (infra_clk_data->clks[i] == ERR_PTR(-EPROBE_DEFER)) @@ -896,6 +902,8 @@ static int mtk_pericfg_init(struct platform_device *pdev) return PTR_ERR(base); clk_data = mtk_alloc_clk_data(CLK_PERI_NR); + if (!clk_data) + return -ENOMEM; mtk_clk_register_gates(node, peri_clks, ARRAY_SIZE(peri_clks), clk_data); diff --git a/drivers/clk/mediatek/clk-mt6765.c b/drivers/clk/mediatek/clk-mt6765.c index d77ea5aff2920..17352342b6989 100644 --- a/drivers/clk/mediatek/clk-mt6765.c +++ b/drivers/clk/mediatek/clk-mt6765.c @@ -785,6 +785,8 @@ static int clk_mt6765_apmixed_probe(struct platform_device *pdev) } clk_data = mtk_alloc_clk_data(CLK_APMIXED_NR_CLK); + if (!clk_data) + return -ENOMEM; mtk_clk_register_plls(node, plls, ARRAY_SIZE(plls), clk_data); @@ -820,6 +822,8 @@ static int clk_mt6765_top_probe(struct platform_device *pdev) } clk_data = mtk_alloc_clk_data(CLK_TOP_NR_CLK); + if (!clk_data) + return -ENOMEM; mtk_clk_register_fixed_clks(fixed_clks, ARRAY_SIZE(fixed_clks), clk_data); @@ -860,6 +864,8 @@ static int clk_mt6765_ifr_probe(struct platform_device *pdev) } clk_data = mtk_alloc_clk_data(CLK_IFR_NR_CLK); + if (!clk_data) + return -ENOMEM; mtk_clk_register_gates(node, ifr_clks, ARRAY_SIZE(ifr_clks), clk_data); diff --git a/drivers/clk/mediatek/clk-mt6779.c b/drivers/clk/mediatek/clk-mt6779.c index 6e0d3a1667291..cf720651fc536 100644 --- a/drivers/clk/mediatek/clk-mt6779.c +++ b/drivers/clk/mediatek/clk-mt6779.c @@ -1216,6 +1216,8 @@ static int clk_mt6779_apmixed_probe(struct platform_device *pdev) struct device_node *node = pdev->dev.of_node; clk_data = mtk_alloc_clk_data(CLK_APMIXED_NR_CLK); + if (!clk_data) + return -ENOMEM; mtk_clk_register_plls(node, plls, ARRAY_SIZE(plls), clk_data); @@ -1236,6 +1238,8 @@ static int clk_mt6779_top_probe(struct platform_device *pdev) return PTR_ERR(base); clk_data = mtk_alloc_clk_data(CLK_TOP_NR_CLK); + if (!clk_data) + return -ENOMEM; mtk_clk_register_fixed_clks(top_fixed_clks, ARRAY_SIZE(top_fixed_clks), clk_data); diff --git a/drivers/clk/mediatek/clk-mt6797.c b/drivers/clk/mediatek/clk-mt6797.c index 428eb24ffec55..98d456023f4e4 100644 --- a/drivers/clk/mediatek/clk-mt6797.c +++ b/drivers/clk/mediatek/clk-mt6797.c @@ -391,6 +391,8 @@ static int mtk_topckgen_init(struct platform_device *pdev) return PTR_ERR(base); clk_data = mtk_alloc_clk_data(CLK_TOP_NR); + if (!clk_data) + return -ENOMEM; mtk_clk_register_factors(top_fixed_divs, ARRAY_SIZE(top_fixed_divs), clk_data); @@ -563,6 +565,8 @@ static void mtk_infrasys_init_early(struct device_node *node) if (!infra_clk_data) { infra_clk_data = mtk_alloc_clk_data(CLK_INFRA_NR); + if (!infra_clk_data) + return; for (i = 0; i < CLK_INFRA_NR; i++) infra_clk_data->clks[i] = ERR_PTR(-EPROBE_DEFER); @@ -587,6 +591,8 @@ static int mtk_infrasys_init(struct platform_device *pdev) if (!infra_clk_data) { infra_clk_data = mtk_alloc_clk_data(CLK_INFRA_NR); + if (!infra_clk_data) + return -ENOMEM; } else { for (i = 0; i < CLK_INFRA_NR; i++) { if (infra_clk_data->clks[i] == ERR_PTR(-EPROBE_DEFER)) diff --git a/drivers/clk/mediatek/clk-mt7629-eth.c b/drivers/clk/mediatek/clk-mt7629-eth.c index 88279d0ea1a76..3ab7b672f8c70 100644 --- a/drivers/clk/mediatek/clk-mt7629-eth.c +++ b/drivers/clk/mediatek/clk-mt7629-eth.c @@ -83,6 +83,8 @@ static int clk_mt7629_ethsys_init(struct platform_device *pdev) int r; clk_data = mtk_alloc_clk_data(CLK_ETH_NR_CLK); + if (!clk_data) + return -ENOMEM; mtk_clk_register_gates(node, eth_clks, CLK_ETH_NR_CLK, clk_data); @@ -105,6 +107,8 @@ static int clk_mt7629_sgmiisys_init(struct platform_device *pdev) int r; clk_data = mtk_alloc_clk_data(CLK_SGMII_NR_CLK); + if (!clk_data) + return -ENOMEM; mtk_clk_register_gates(node, sgmii_clks[id++], CLK_SGMII_NR_CLK, clk_data); diff --git a/drivers/clk/mediatek/clk-mt7629.c b/drivers/clk/mediatek/clk-mt7629.c index a0ee079670c7e..f791e53b812ab 100644 --- a/drivers/clk/mediatek/clk-mt7629.c +++ b/drivers/clk/mediatek/clk-mt7629.c @@ -580,6 +580,8 @@ static int mtk_topckgen_init(struct platform_device *pdev) return PTR_ERR(base); clk_data = mtk_alloc_clk_data(CLK_TOP_NR_CLK); + if (!clk_data) + return -ENOMEM; mtk_clk_register_fixed_clks(top_fixed_clks, ARRAY_SIZE(top_fixed_clks), clk_data); @@ -603,6 +605,8 @@ static int mtk_infrasys_init(struct platform_device *pdev) struct clk_onecell_data *clk_data; clk_data = mtk_alloc_clk_data(CLK_INFRA_NR_CLK); + if (!clk_data) + return -ENOMEM; mtk_clk_register_gates(node, infra_clks, ARRAY_SIZE(infra_clks), clk_data); @@ -626,6 +630,8 @@ static int mtk_pericfg_init(struct platform_device *pdev) return PTR_ERR(base); clk_data = mtk_alloc_clk_data(CLK_PERI_NR_CLK); + if (!clk_data) + return -ENOMEM; mtk_clk_register_gates(node, peri_clks, ARRAY_SIZE(peri_clks), clk_data); diff --git a/drivers/clk/qcom/Kconfig b/drivers/clk/qcom/Kconfig index 6ba86cffc4135..4c8bb23ca7304 100644 --- a/drivers/clk/qcom/Kconfig +++ b/drivers/clk/qcom/Kconfig @@ -127,6 +127,7 @@ config IPQ_APSS_6018 tristate "IPQ APSS Clock Controller" select IPQ_APSS_PLL depends on QCOM_APCS_IPC || COMPILE_TEST + depends on QCOM_SMEM help Support for APSS clock controller on IPQ platforms. The APSS clock controller manages the Mux and enable block that feeds the diff --git a/drivers/clk/qcom/camcc-sc7180.c b/drivers/clk/qcom/camcc-sc7180.c index 4b3e3902b7eed..ee99e3a853125 100644 --- a/drivers/clk/qcom/camcc-sc7180.c +++ b/drivers/clk/qcom/camcc-sc7180.c @@ -1677,7 +1677,7 @@ static int cam_cc_sc7180_probe(struct platform_device *pdev) return ret; } - ret = pm_runtime_get(&pdev->dev); + ret = pm_runtime_resume_and_get(&pdev->dev); if (ret) return ret; diff --git a/drivers/clk/qcom/clk-rcg2.c b/drivers/clk/qcom/clk-rcg2.c index c3823cc32edc6..f3c225ed57377 100644 --- a/drivers/clk/qcom/clk-rcg2.c +++ b/drivers/clk/qcom/clk-rcg2.c @@ -148,17 +148,11 @@ static int clk_rcg2_set_parent(struct clk_hw *hw, u8 index) static unsigned long calc_rate(unsigned long rate, u32 m, u32 n, u32 mode, u32 hid_div) { - if (hid_div) { - rate *= 2; - rate /= hid_div + 1; - } + if (hid_div) + rate = mult_frac(rate, 2, hid_div + 1); - if (mode) { - u64 tmp = rate; - tmp *= m; - do_div(tmp, n); - rate = tmp; - } + if (mode) + rate = mult_frac(rate, m, n); return rate; } diff --git a/drivers/clk/qcom/gcc-ipq6018.c b/drivers/clk/qcom/gcc-ipq6018.c index cde62a11f5736..4c5c7a8f41d08 100644 --- a/drivers/clk/qcom/gcc-ipq6018.c +++ b/drivers/clk/qcom/gcc-ipq6018.c @@ -75,7 +75,6 @@ static struct clk_fixed_factor gpll0_out_main_div2 = { &gpll0_main.clkr.hw }, .num_parents = 1, .ops = &clk_fixed_factor_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -89,7 +88,6 @@ static struct clk_alpha_pll_postdiv gpll0 = { &gpll0_main.clkr.hw }, .num_parents = 1, .ops = &clk_alpha_pll_postdiv_ro_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -164,7 +162,6 @@ static struct clk_alpha_pll_postdiv gpll6 = { &gpll6_main.clkr.hw }, .num_parents = 1, .ops = &clk_alpha_pll_postdiv_ro_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -195,7 +192,6 @@ static struct clk_alpha_pll_postdiv gpll4 = { &gpll4_main.clkr.hw }, .num_parents = 1, .ops = &clk_alpha_pll_postdiv_ro_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -246,7 +242,6 @@ static struct clk_alpha_pll_postdiv gpll2 = { &gpll2_main.clkr.hw }, .num_parents = 1, .ops = &clk_alpha_pll_postdiv_ro_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -277,7 +272,6 @@ static struct clk_alpha_pll_postdiv nss_crypto_pll = { &nss_crypto_pll_main.clkr.hw }, .num_parents = 1, .ops = &clk_alpha_pll_postdiv_ro_ops, - .flags = CLK_SET_RATE_PARENT, }, }; diff --git a/drivers/clk/qcom/gcc-ipq8074.c b/drivers/clk/qcom/gcc-ipq8074.c index d6d5defb82c9f..0393154fea2f9 100644 --- a/drivers/clk/qcom/gcc-ipq8074.c +++ b/drivers/clk/qcom/gcc-ipq8074.c @@ -418,7 +418,6 @@ static struct clk_fixed_factor gpll0_out_main_div2 = { }, .num_parents = 1, .ops = &clk_fixed_factor_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -465,7 +464,6 @@ static struct clk_alpha_pll_postdiv gpll2 = { }, .num_parents = 1, .ops = &clk_alpha_pll_postdiv_ro_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -498,7 +496,6 @@ static struct clk_alpha_pll_postdiv gpll4 = { }, .num_parents = 1, .ops = &clk_alpha_pll_postdiv_ro_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -532,7 +529,6 @@ static struct clk_alpha_pll_postdiv gpll6 = { }, .num_parents = 1, .ops = &clk_alpha_pll_postdiv_ro_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -546,7 +542,6 @@ static struct clk_fixed_factor gpll6_out_main_div2 = { }, .num_parents = 1, .ops = &clk_fixed_factor_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -611,7 +606,6 @@ static struct clk_alpha_pll_postdiv nss_crypto_pll = { }, .num_parents = 1, .ops = &clk_alpha_pll_postdiv_ro_ops, - .flags = CLK_SET_RATE_PARENT, }, }; diff --git a/drivers/clk/qcom/gcc-mdm9615.c b/drivers/clk/qcom/gcc-mdm9615.c index 8bed02a748aba..470a277603a92 100644 --- a/drivers/clk/qcom/gcc-mdm9615.c +++ b/drivers/clk/qcom/gcc-mdm9615.c @@ -58,7 +58,7 @@ static struct clk_regmap pll0_vote = { .enable_mask = BIT(0), .hw.init = &(struct clk_init_data){ .name = "pll0_vote", - .parent_names = (const char *[]){ "pll8" }, + .parent_names = (const char *[]){ "pll0" }, .num_parents = 1, .ops = &clk_pll_vote_ops, }, diff --git a/drivers/clk/qcom/gcc-sc7180.c b/drivers/clk/qcom/gcc-sc7180.c index c2ea09945c472..a38394b4739a2 100644 --- a/drivers/clk/qcom/gcc-sc7180.c +++ b/drivers/clk/qcom/gcc-sc7180.c @@ -667,6 +667,7 @@ static struct clk_rcg2 gcc_sdcc2_apps_clk_src = { .name = "gcc_sdcc2_apps_clk_src", .parent_data = gcc_parent_data_5, .num_parents = ARRAY_SIZE(gcc_parent_data_5), + .flags = CLK_OPS_PARENT_ENABLE, .ops = &clk_rcg2_floor_ops, }, }; diff --git a/drivers/clk/qcom/gcc-sm6350.c b/drivers/clk/qcom/gcc-sm6350.c index 3236706771b11..e32ad7499285f 100644 --- a/drivers/clk/qcom/gcc-sm6350.c +++ b/drivers/clk/qcom/gcc-sm6350.c @@ -640,6 +640,7 @@ static struct clk_rcg2 gcc_sdcc2_apps_clk_src = { .name = "gcc_sdcc2_apps_clk_src", .parent_data = gcc_parent_data_8, .num_parents = ARRAY_SIZE(gcc_parent_data_8), + .flags = CLK_OPS_PARENT_ENABLE, .ops = &clk_rcg2_floor_ops, }, }; diff --git a/drivers/clk/qcom/gcc-sm8150.c b/drivers/clk/qcom/gcc-sm8150.c index 2457944857197..e9ed963f129da 100644 --- a/drivers/clk/qcom/gcc-sm8150.c +++ b/drivers/clk/qcom/gcc-sm8150.c @@ -792,7 +792,7 @@ static struct clk_rcg2 gcc_sdcc2_apps_clk_src = { .name = "gcc_sdcc2_apps_clk_src", .parent_data = gcc_parents_6, .num_parents = ARRAY_SIZE(gcc_parents_6), - .flags = CLK_SET_RATE_PARENT, + .flags = CLK_OPS_PARENT_ENABLE, .ops = &clk_rcg2_floor_ops, }, }; diff --git a/drivers/clk/qcom/gcc-sm8250.c b/drivers/clk/qcom/gcc-sm8250.c index a0ba37656b07b..30bd561461074 100644 --- a/drivers/clk/qcom/gcc-sm8250.c +++ b/drivers/clk/qcom/gcc-sm8250.c @@ -721,6 +721,7 @@ static struct clk_rcg2 gcc_sdcc2_apps_clk_src = { .name = "gcc_sdcc2_apps_clk_src", .parent_data = gcc_parent_data_4, .num_parents = ARRAY_SIZE(gcc_parent_data_4), + .flags = CLK_OPS_PARENT_ENABLE, .ops = &clk_rcg2_floor_ops, }, }; diff --git a/drivers/clk/qcom/mmcc-msm8998.c b/drivers/clk/qcom/mmcc-msm8998.c index 467dadccde026..a68764cfb7930 100644 --- a/drivers/clk/qcom/mmcc-msm8998.c +++ b/drivers/clk/qcom/mmcc-msm8998.c @@ -2487,6 +2487,7 @@ static struct clk_branch fd_ahb_clk = { static struct clk_branch mnoc_ahb_clk = { .halt_reg = 0x5024, + .halt_check = BRANCH_HALT_SKIP, .clkr = { .enable_reg = 0x5024, .enable_mask = BIT(0), @@ -2502,6 +2503,7 @@ static struct clk_branch mnoc_ahb_clk = { static struct clk_branch bimc_smmu_ahb_clk = { .halt_reg = 0xe004, + .halt_check = BRANCH_HALT_SKIP, .hwcg_reg = 0xe004, .hwcg_bit = 1, .clkr = { @@ -2519,6 +2521,7 @@ static struct clk_branch bimc_smmu_ahb_clk = { static struct clk_branch bimc_smmu_axi_clk = { .halt_reg = 0xe008, + .halt_check = BRANCH_HALT_SKIP, .hwcg_reg = 0xe008, .hwcg_bit = 1, .clkr = { @@ -2659,11 +2662,13 @@ static struct gdsc camss_cpp_gdsc = { static struct gdsc bimc_smmu_gdsc = { .gdscr = 0xe020, .gds_hw_ctrl = 0xe024, + .cxcs = (unsigned int []){ 0xe008 }, + .cxc_count = 1, .pd = { .name = "bimc_smmu", }, .pwrsts = PWRSTS_OFF_ON, - .flags = HW_CTRL | ALWAYS_ON, + .flags = VOTABLE, }; static struct clk_regmap *mmcc_msm8998_clocks[] = { diff --git a/drivers/clk/qcom/mss-sc7180.c b/drivers/clk/qcom/mss-sc7180.c index 5a14074406623..d106bc65470e1 100644 --- a/drivers/clk/qcom/mss-sc7180.c +++ b/drivers/clk/qcom/mss-sc7180.c @@ -87,11 +87,22 @@ static int mss_sc7180_probe(struct platform_device *pdev) return ret; } + ret = pm_runtime_resume_and_get(&pdev->dev); + if (ret) + return ret; + ret = qcom_cc_probe(pdev, &mss_sc7180_desc); if (ret < 0) - return ret; + goto err_put_rpm; + + pm_runtime_put(&pdev->dev); return 0; + +err_put_rpm: + pm_runtime_put_sync(&pdev->dev); + + return ret; } static const struct dev_pm_ops mss_sc7180_pm_ops = { diff --git a/drivers/clk/qcom/q6sstop-qcs404.c b/drivers/clk/qcom/q6sstop-qcs404.c index 507386bee07dc..eb86fec29927e 100644 --- a/drivers/clk/qcom/q6sstop-qcs404.c +++ b/drivers/clk/qcom/q6sstop-qcs404.c @@ -173,21 +173,32 @@ static int q6sstopcc_qcs404_probe(struct platform_device *pdev) return ret; } + ret = pm_runtime_resume_and_get(&pdev->dev); + if (ret) + return ret; + q6sstop_regmap_config.name = "q6sstop_tcsr"; desc = &tcsr_qcs404_desc; ret = qcom_cc_probe_by_index(pdev, 1, desc); if (ret) - return ret; + goto err_put_rpm; q6sstop_regmap_config.name = "q6sstop_cc"; desc = &q6sstop_qcs404_desc; ret = qcom_cc_probe_by_index(pdev, 0, desc); if (ret) - return ret; + goto err_put_rpm; + + pm_runtime_put(&pdev->dev); return 0; + +err_put_rpm: + pm_runtime_put_sync(&pdev->dev); + + return ret; } static const struct dev_pm_ops q6sstopcc_pm_ops = { diff --git a/drivers/clk/qcom/reset.c b/drivers/clk/qcom/reset.c index 0e914ec7aeae1..e45e32804d2c7 100644 --- a/drivers/clk/qcom/reset.c +++ b/drivers/clk/qcom/reset.c @@ -16,7 +16,8 @@ static int qcom_reset(struct reset_controller_dev *rcdev, unsigned long id) struct qcom_reset_controller *rst = to_qcom_reset_controller(rcdev); rcdev->ops->assert(rcdev, id); - udelay(rst->reset_map[id].udelay ?: 1); /* use 1 us as default */ + fsleep(rst->reset_map[id].udelay ?: 1); /* use 1 us as default */ + rcdev->ops->deassert(rcdev, id); return 0; } diff --git a/drivers/clk/qcom/turingcc-qcs404.c b/drivers/clk/qcom/turingcc-qcs404.c index 4543bda793f4f..c76d36a1fcfda 100644 --- a/drivers/clk/qcom/turingcc-qcs404.c +++ b/drivers/clk/qcom/turingcc-qcs404.c @@ -124,11 +124,22 @@ static int turingcc_probe(struct platform_device *pdev) return ret; } + ret = pm_runtime_resume_and_get(&pdev->dev); + if (ret) + return ret; + ret = qcom_cc_probe(pdev, &turingcc_desc); if (ret < 0) - return ret; + goto err_put_rpm; + + pm_runtime_put(&pdev->dev); return 0; + +err_put_rpm: + pm_runtime_put_sync(&pdev->dev); + + return ret; } static const struct dev_pm_ops turingcc_pm_ops = { diff --git a/drivers/clk/renesas/rzg2l-cpg.c b/drivers/clk/renesas/rzg2l-cpg.c index 1c92e73cd2b8c..79e4e977b23b1 100644 --- a/drivers/clk/renesas/rzg2l-cpg.c +++ b/drivers/clk/renesas/rzg2l-cpg.c @@ -11,6 +11,7 @@ * Copyright (C) 2015 Renesas Electronics Corp. */ +#include #include #include #include @@ -37,14 +38,13 @@ #define WARN_DEBUG(x) do { } while (0) #endif -#define DIV_RSMASK(v, s, m) ((v >> s) & m) #define GET_SHIFT(val) ((val >> 12) & 0xff) #define GET_WIDTH(val) ((val >> 8) & 0xf) -#define KDIV(val) DIV_RSMASK(val, 16, 0xffff) -#define MDIV(val) DIV_RSMASK(val, 6, 0x3ff) -#define PDIV(val) DIV_RSMASK(val, 0, 0x3f) -#define SDIV(val) DIV_RSMASK(val, 0, 0x7) +#define KDIV(val) ((s16)FIELD_GET(GENMASK(31, 16), val)) +#define MDIV(val) FIELD_GET(GENMASK(15, 6), val) +#define PDIV(val) FIELD_GET(GENMASK(5, 0), val) +#define SDIV(val) FIELD_GET(GENMASK(2, 0), val) #define CLK_ON_R(reg) (reg) #define CLK_MON_R(reg) (0x180 + (reg)) @@ -146,18 +146,18 @@ static unsigned long rzg2l_cpg_pll_clk_recalc_rate(struct clk_hw *hw, struct pll_clk *pll_clk = to_pll(hw); struct rzg2l_cpg_priv *priv = pll_clk->priv; unsigned int val1, val2; - unsigned int mult = 1; - unsigned int div = 1; + u64 rate; if (pll_clk->type != CLK_TYPE_SAM_PLL) return parent_rate; val1 = readl(priv->base + GET_REG_SAMPLL_CLK1(pll_clk->conf)); val2 = readl(priv->base + GET_REG_SAMPLL_CLK2(pll_clk->conf)); - mult = MDIV(val1) + KDIV(val1) / 65536; - div = PDIV(val1) * (1 << SDIV(val2)); - return DIV_ROUND_CLOSEST_ULL((u64)parent_rate * mult, div); + rate = mul_u64_u32_shr(parent_rate, (MDIV(val1) << 16) + KDIV(val1), + 16 + SDIV(val2)); + + return DIV_ROUND_CLOSEST_ULL(rate, PDIV(val1)); } static const struct clk_ops rzg2l_cpg_pll_ops = { diff --git a/drivers/clk/socfpga/stratix10-clk.h b/drivers/clk/socfpga/stratix10-clk.h index 75234e0783e1c..83fe4eb3133cb 100644 --- a/drivers/clk/socfpga/stratix10-clk.h +++ b/drivers/clk/socfpga/stratix10-clk.h @@ -7,8 +7,10 @@ #define __STRATIX10_CLK_H struct stratix10_clock_data { - struct clk_hw_onecell_data clk_data; void __iomem *base; + + /* Must be last */ + struct clk_hw_onecell_data clk_data; }; struct stratix10_pll_clock { diff --git a/drivers/clk/sunxi-ng/ccu_mmc_timing.c b/drivers/clk/sunxi-ng/ccu_mmc_timing.c index de33414fc5c28..c6a6ce98ca03a 100644 --- a/drivers/clk/sunxi-ng/ccu_mmc_timing.c +++ b/drivers/clk/sunxi-ng/ccu_mmc_timing.c @@ -43,7 +43,7 @@ int sunxi_ccu_set_mmc_timing_mode(struct clk *clk, bool new_mode) EXPORT_SYMBOL_GPL(sunxi_ccu_set_mmc_timing_mode); /** - * sunxi_ccu_set_mmc_timing_mode: Get the current MMC clock timing mode + * sunxi_ccu_get_mmc_timing_mode: Get the current MMC clock timing mode * @clk: clock to query * * Returns 0 if the clock is in old timing mode, > 0 if it is in diff --git a/drivers/clk/tegra/clk-bpmp.c b/drivers/clk/tegra/clk-bpmp.c index 6ecf18f71c329..f6721f1d40885 100644 --- a/drivers/clk/tegra/clk-bpmp.c +++ b/drivers/clk/tegra/clk-bpmp.c @@ -159,7 +159,7 @@ static unsigned long tegra_bpmp_clk_recalc_rate(struct clk_hw *hw, err = tegra_bpmp_clk_transfer(clk->bpmp, &msg); if (err < 0) - return err; + return 0; return response.rate; } diff --git a/drivers/clk/ti/apll.c b/drivers/clk/ti/apll.c index ac5bc8857a514..f921c6812852f 100644 --- a/drivers/clk/ti/apll.c +++ b/drivers/clk/ti/apll.c @@ -139,6 +139,7 @@ static void __init omap_clk_register_apll(void *user, struct clk_hw *hw = user; struct clk_hw_omap *clk_hw = to_clk_hw_omap(hw); struct dpll_data *ad = clk_hw->dpll_data; + const char *name; struct clk *clk; const struct clk_init_data *init = clk_hw->hw.init; @@ -166,7 +167,8 @@ static void __init omap_clk_register_apll(void *user, ad->clk_bypass = __clk_get_hw(clk); - clk = ti_clk_register_omap_hw(NULL, &clk_hw->hw, node->name); + name = ti_dt_clk_name(node); + clk = of_ti_clk_register_omap_hw(node, &clk_hw->hw, name); if (!IS_ERR(clk)) { of_clk_add_provider(node, of_clk_src_simple_get, clk); kfree(init->parent_names); @@ -198,7 +200,7 @@ static void __init of_dra7_apll_setup(struct device_node *node) clk_hw->dpll_data = ad; clk_hw->hw.init = init; - init->name = node->name; + init->name = ti_dt_clk_name(node); init->ops = &apll_ck_ops; init->num_parents = of_clk_get_parent_count(node); @@ -347,6 +349,7 @@ static void __init of_omap2_apll_setup(struct device_node *node) struct dpll_data *ad = NULL; struct clk_hw_omap *clk_hw = NULL; struct clk_init_data *init = NULL; + const char *name; struct clk *clk; const char *parent_name; u32 val; @@ -362,7 +365,8 @@ static void __init of_omap2_apll_setup(struct device_node *node) clk_hw->dpll_data = ad; clk_hw->hw.init = init; init->ops = &omap2_apll_ops; - init->name = node->name; + name = ti_dt_clk_name(node); + init->name = name; clk_hw->ops = &omap2_apll_hwops; init->num_parents = of_clk_get_parent_count(node); @@ -403,7 +407,8 @@ static void __init of_omap2_apll_setup(struct device_node *node) if (ret) goto cleanup; - clk = ti_clk_register_omap_hw(NULL, &clk_hw->hw, node->name); + name = ti_dt_clk_name(node); + clk = of_ti_clk_register_omap_hw(node, &clk_hw->hw, name); if (!IS_ERR(clk)) { of_clk_add_provider(node, of_clk_src_simple_get, clk); kfree(init); diff --git a/drivers/clk/ti/autoidle.c b/drivers/clk/ti/autoidle.c index f6f8a409f148f..d6e5f1511ace8 100644 --- a/drivers/clk/ti/autoidle.c +++ b/drivers/clk/ti/autoidle.c @@ -205,7 +205,7 @@ int __init of_ti_clk_autoidle_setup(struct device_node *node) return -ENOMEM; clk->shift = shift; - clk->name = node->name; + clk->name = ti_dt_clk_name(node); ret = ti_clk_get_reg_addr(node, 0, &clk->reg); if (ret) { kfree(clk); diff --git a/drivers/clk/ti/clk-dra7-atl.c b/drivers/clk/ti/clk-dra7-atl.c index e2e59d78c173f..62508e74a47a7 100644 --- a/drivers/clk/ti/clk-dra7-atl.c +++ b/drivers/clk/ti/clk-dra7-atl.c @@ -173,6 +173,7 @@ static void __init of_dra7_atl_clock_setup(struct device_node *node) struct dra7_atl_desc *clk_hw = NULL; struct clk_init_data init = { NULL }; const char **parent_names = NULL; + const char *name; struct clk *clk; clk_hw = kzalloc(sizeof(*clk_hw), GFP_KERNEL); @@ -183,7 +184,8 @@ static void __init of_dra7_atl_clock_setup(struct device_node *node) clk_hw->hw.init = &init; clk_hw->divider = 1; - init.name = node->name; + name = ti_dt_clk_name(node); + init.name = name; init.ops = &atl_clk_ops; init.flags = CLK_IGNORE_UNUSED; init.num_parents = of_clk_get_parent_count(node); @@ -203,7 +205,7 @@ static void __init of_dra7_atl_clock_setup(struct device_node *node) init.parent_names = parent_names; - clk = ti_clk_register(NULL, &clk_hw->hw, node->name); + clk = of_ti_clk_register(node, &clk_hw->hw, name); if (!IS_ERR(clk)) { of_clk_add_provider(node, of_clk_src_simple_get, clk); diff --git a/drivers/clk/ti/clk.c b/drivers/clk/ti/clk.c index 29eafab4353ef..6a39fb051b2ee 100644 --- a/drivers/clk/ti/clk.c +++ b/drivers/clk/ti/clk.c @@ -402,6 +402,24 @@ static const struct of_device_id simple_clk_match_table[] __initconst = { { } }; +/** + * ti_dt_clk_name - init clock name from first output name or node name + * @np: device node + * + * Use the first clock-output-name for the clock name if found. Fall back + * to legacy naming based on node name. + */ +const char *ti_dt_clk_name(struct device_node *np) +{ + const char *name; + + if (!of_property_read_string_index(np, "clock-output-names", 0, + &name)) + return name; + + return np->name; +} + /** * ti_clk_add_aliases - setup clock aliases * @@ -418,7 +436,7 @@ void __init ti_clk_add_aliases(void) clkspec.np = np; clk = of_clk_get_from_provider(&clkspec); - ti_clk_add_alias(NULL, clk, np->name); + ti_clk_add_alias(clk, ti_dt_clk_name(np)); } } @@ -471,7 +489,6 @@ void omap2_clk_enable_init_clocks(const char **clk_names, u8 num_clocks) /** * ti_clk_add_alias - add a clock alias for a TI clock - * @dev: device alias for this clock * @clk: clock handle to create alias for * @con: connection ID for this clock * @@ -479,7 +496,7 @@ void omap2_clk_enable_init_clocks(const char **clk_names, u8 num_clocks) * and assigns the data to it. Returns 0 if successful, negative error * value otherwise. */ -int ti_clk_add_alias(struct device *dev, struct clk *clk, const char *con) +int ti_clk_add_alias(struct clk *clk, const char *con) { struct clk_lookup *cl; @@ -493,8 +510,6 @@ int ti_clk_add_alias(struct device *dev, struct clk *clk, const char *con) if (!cl) return -ENOMEM; - if (dev) - cl->dev_id = dev_name(dev); cl->con_id = con; cl->clk = clk; @@ -504,8 +519,8 @@ int ti_clk_add_alias(struct device *dev, struct clk *clk, const char *con) } /** - * ti_clk_register - register a TI clock to the common clock framework - * @dev: device for this clock + * of_ti_clk_register - register a TI clock to the common clock framework + * @node: device node for this clock * @hw: hardware clock handle * @con: connection ID for this clock * @@ -513,17 +528,18 @@ int ti_clk_add_alias(struct device *dev, struct clk *clk, const char *con) * alias for it. Returns a handle to the registered clock if successful, * ERR_PTR value in failure. */ -struct clk *ti_clk_register(struct device *dev, struct clk_hw *hw, - const char *con) +struct clk *of_ti_clk_register(struct device_node *node, struct clk_hw *hw, + const char *con) { struct clk *clk; int ret; - clk = clk_register(dev, hw); - if (IS_ERR(clk)) - return clk; + ret = of_clk_hw_register(node, hw); + if (ret) + return ERR_PTR(ret); - ret = ti_clk_add_alias(dev, clk, con); + clk = hw->clk; + ret = ti_clk_add_alias(clk, con); if (ret) { clk_unregister(clk); return ERR_PTR(ret); @@ -533,8 +549,8 @@ struct clk *ti_clk_register(struct device *dev, struct clk_hw *hw, } /** - * ti_clk_register_omap_hw - register a clk_hw_omap to the clock framework - * @dev: device for this clock + * of_ti_clk_register_omap_hw - register a clk_hw_omap to the clock framework + * @node: device node for this clock * @hw: hardware clock handle * @con: connection ID for this clock * @@ -543,13 +559,13 @@ struct clk *ti_clk_register(struct device *dev, struct clk_hw *hw, * Returns a handle to the registered clock if successful, ERR_PTR value * in failure. */ -struct clk *ti_clk_register_omap_hw(struct device *dev, struct clk_hw *hw, - const char *con) +struct clk *of_ti_clk_register_omap_hw(struct device_node *node, + struct clk_hw *hw, const char *con) { struct clk *clk; struct clk_hw_omap *oclk; - clk = ti_clk_register(dev, hw, con); + clk = of_ti_clk_register(node, hw, con); if (IS_ERR(clk)) return clk; diff --git a/drivers/clk/ti/clkctrl.c b/drivers/clk/ti/clkctrl.c index 157abc46dcf44..1424b615a4cc5 100644 --- a/drivers/clk/ti/clkctrl.c +++ b/drivers/clk/ti/clkctrl.c @@ -317,7 +317,7 @@ _ti_clkctrl_clk_register(struct omap_clkctrl_provider *provider, init.ops = ops; init.flags = 0; - clk = ti_clk_register(NULL, clk_hw, init.name); + clk = of_ti_clk_register(node, clk_hw, init.name); if (IS_ERR_OR_NULL(clk)) { ret = -EINVAL; goto cleanup; @@ -701,7 +701,7 @@ static void __init _ti_omap4_clkctrl_setup(struct device_node *node) init.ops = &omap4_clkctrl_clk_ops; hw->hw.init = &init; - clk = ti_clk_register_omap_hw(NULL, &hw->hw, init.name); + clk = of_ti_clk_register_omap_hw(node, &hw->hw, init.name); if (IS_ERR_OR_NULL(clk)) goto cleanup; diff --git a/drivers/clk/ti/clock.h b/drivers/clk/ti/clock.h index f1dd62de2bfcb..821f33ee330e4 100644 --- a/drivers/clk/ti/clock.h +++ b/drivers/clk/ti/clock.h @@ -210,11 +210,12 @@ extern const struct omap_clkctrl_data dm816_clkctrl_data[]; typedef void (*ti_of_clk_init_cb_t)(void *, struct device_node *); -struct clk *ti_clk_register(struct device *dev, struct clk_hw *hw, - const char *con); -struct clk *ti_clk_register_omap_hw(struct device *dev, struct clk_hw *hw, - const char *con); -int ti_clk_add_alias(struct device *dev, struct clk *clk, const char *con); +struct clk *of_ti_clk_register(struct device_node *node, struct clk_hw *hw, + const char *con); +struct clk *of_ti_clk_register_omap_hw(struct device_node *node, + struct clk_hw *hw, const char *con); +const char *ti_dt_clk_name(struct device_node *np); +int ti_clk_add_alias(struct clk *clk, const char *con); void ti_clk_add_aliases(void); void ti_clk_latch(struct clk_omap_reg *reg, s8 shift); diff --git a/drivers/clk/ti/clockdomain.c b/drivers/clk/ti/clockdomain.c index 74831b2752b3b..24179c907774a 100644 --- a/drivers/clk/ti/clockdomain.c +++ b/drivers/clk/ti/clockdomain.c @@ -131,7 +131,7 @@ static void __init of_ti_clockdomain_setup(struct device_node *node) { struct clk *clk; struct clk_hw *clk_hw; - const char *clkdm_name = node->name; + const char *clkdm_name = ti_dt_clk_name(node); int i; unsigned int num_clks; diff --git a/drivers/clk/ti/composite.c b/drivers/clk/ti/composite.c index eaa43575cfa5e..78d44158fb7d9 100644 --- a/drivers/clk/ti/composite.c +++ b/drivers/clk/ti/composite.c @@ -125,6 +125,7 @@ static void __init _register_composite(void *user, struct component_clk *comp; int num_parents = 0; const char **parent_names = NULL; + const char *name; int i; int ret; @@ -172,7 +173,8 @@ static void __init _register_composite(void *user, goto cleanup; } - clk = clk_register_composite(NULL, node->name, + name = ti_dt_clk_name(node); + clk = clk_register_composite(NULL, name, parent_names, num_parents, _get_hw(cclk, CLK_COMPONENT_TYPE_MUX), &ti_clk_mux_ops, @@ -182,7 +184,7 @@ static void __init _register_composite(void *user, &ti_composite_gate_ops, 0); if (!IS_ERR(clk)) { - ret = ti_clk_add_alias(NULL, clk, node->name); + ret = ti_clk_add_alias(clk, name); if (ret) { clk_unregister(clk); goto cleanup; diff --git a/drivers/clk/ti/divider.c b/drivers/clk/ti/divider.c index 28080df92f722..4cc0aaa6cb139 100644 --- a/drivers/clk/ti/divider.c +++ b/drivers/clk/ti/divider.c @@ -317,13 +317,14 @@ static struct clk *_register_divider(struct device_node *node, u32 flags, struct clk_omap_divider *div) { - struct clk *clk; struct clk_init_data init; const char *parent_name; + const char *name; parent_name = of_clk_get_parent_name(node, 0); - init.name = node->name; + name = ti_dt_clk_name(node); + init.name = name; init.ops = &ti_clk_divider_ops; init.flags = flags; init.parent_names = (parent_name ? &parent_name : NULL); @@ -332,12 +333,7 @@ static struct clk *_register_divider(struct device_node *node, div->hw.init = &init; /* register the clock */ - clk = ti_clk_register(NULL, &div->hw, node->name); - - if (IS_ERR(clk)) - kfree(div); - - return clk; + return of_ti_clk_register(node, &div->hw, name); } int ti_clk_parse_divider_data(int *div_table, int num_dividers, int max_div, diff --git a/drivers/clk/ti/dpll.c b/drivers/clk/ti/dpll.c index e9f9aee936ae8..9ef7133f2f57b 100644 --- a/drivers/clk/ti/dpll.c +++ b/drivers/clk/ti/dpll.c @@ -164,6 +164,7 @@ static void __init _register_dpll(void *user, struct clk_hw *hw = user; struct clk_hw_omap *clk_hw = to_clk_hw_omap(hw); struct dpll_data *dd = clk_hw->dpll_data; + const char *name; struct clk *clk; const struct clk_init_data *init = hw->init; @@ -193,7 +194,8 @@ static void __init _register_dpll(void *user, dd->clk_bypass = __clk_get_hw(clk); /* register the clock */ - clk = ti_clk_register_omap_hw(NULL, &clk_hw->hw, node->name); + name = ti_dt_clk_name(node); + clk = of_ti_clk_register_omap_hw(node, &clk_hw->hw, name); if (!IS_ERR(clk)) { of_clk_add_provider(node, of_clk_src_simple_get, clk); @@ -227,7 +229,7 @@ static void _register_dpll_x2(struct device_node *node, struct clk *clk; struct clk_init_data init = { NULL }; struct clk_hw_omap *clk_hw; - const char *name = node->name; + const char *name = ti_dt_clk_name(node); const char *parent_name; parent_name = of_clk_get_parent_name(node, 0); @@ -265,7 +267,7 @@ static void _register_dpll_x2(struct device_node *node, #endif /* register the clock */ - clk = ti_clk_register_omap_hw(NULL, &clk_hw->hw, name); + clk = of_ti_clk_register_omap_hw(node, &clk_hw->hw, name); if (IS_ERR(clk)) kfree(clk_hw); @@ -304,7 +306,7 @@ static void __init of_ti_dpll_setup(struct device_node *node, clk_hw->ops = &clkhwops_omap3_dpll; clk_hw->hw.init = init; - init->name = node->name; + init->name = ti_dt_clk_name(node); init->ops = ops; init->num_parents = of_clk_get_parent_count(node); diff --git a/drivers/clk/ti/fapll.c b/drivers/clk/ti/fapll.c index 8024c6d2b9e95..749c6b73abff3 100644 --- a/drivers/clk/ti/fapll.c +++ b/drivers/clk/ti/fapll.c @@ -19,6 +19,8 @@ #include #include +#include "clock.h" + /* FAPLL Control Register PLL_CTRL */ #define FAPLL_MAIN_MULT_N_SHIFT 16 #define FAPLL_MAIN_DIV_P_SHIFT 8 @@ -542,6 +544,7 @@ static void __init ti_fapll_setup(struct device_node *node) struct clk_init_data *init = NULL; const char *parent_name[2]; struct clk *pll_clk; + const char *name; int i; fd = kzalloc(sizeof(*fd), GFP_KERNEL); @@ -559,7 +562,8 @@ static void __init ti_fapll_setup(struct device_node *node) goto free; init->ops = &ti_fapll_ops; - init->name = node->name; + name = ti_dt_clk_name(node); + init->name = name; init->num_parents = of_clk_get_parent_count(node); if (init->num_parents != 2) { @@ -591,7 +595,7 @@ static void __init ti_fapll_setup(struct device_node *node) if (fapll_is_ddr_pll(fd->base)) fd->bypass_bit_inverted = true; - fd->name = node->name; + fd->name = name; fd->hw.init = init; /* Register the parent PLL */ @@ -638,8 +642,7 @@ static void __init ti_fapll_setup(struct device_node *node) freq = NULL; } synth_clk = ti_fapll_synth_setup(fd, freq, div, output_instance, - output_name, node->name, - pll_clk); + output_name, name, pll_clk); if (IS_ERR(synth_clk)) continue; diff --git a/drivers/clk/ti/fixed-factor.c b/drivers/clk/ti/fixed-factor.c index 7cbe896db0716..a4f9c1c156137 100644 --- a/drivers/clk/ti/fixed-factor.c +++ b/drivers/clk/ti/fixed-factor.c @@ -36,7 +36,7 @@ static void __init of_ti_fixed_factor_clk_setup(struct device_node *node) { struct clk *clk; - const char *clk_name = node->name; + const char *clk_name = ti_dt_clk_name(node); const char *parent_name; u32 div, mult; u32 flags = 0; @@ -62,7 +62,7 @@ static void __init of_ti_fixed_factor_clk_setup(struct device_node *node) if (!IS_ERR(clk)) { of_clk_add_provider(node, of_clk_src_simple_get, clk); of_ti_clk_autoidle_setup(node); - ti_clk_add_alias(NULL, clk, clk_name); + ti_clk_add_alias(clk, clk_name); } } CLK_OF_DECLARE(ti_fixed_factor_clk, "ti,fixed-factor-clock", diff --git a/drivers/clk/ti/gate.c b/drivers/clk/ti/gate.c index b1d0fdb40a75a..b0d9d357861c2 100644 --- a/drivers/clk/ti/gate.c +++ b/drivers/clk/ti/gate.c @@ -93,7 +93,7 @@ static int omap36xx_gate_clk_enable_with_hsdiv_restore(struct clk_hw *hw) return ret; } -static struct clk *_register_gate(struct device *dev, const char *name, +static struct clk *_register_gate(struct device_node *node, const char *name, const char *parent_name, unsigned long flags, struct clk_omap_reg *reg, u8 bit_idx, u8 clk_gate_flags, const struct clk_ops *ops, @@ -123,7 +123,7 @@ static struct clk *_register_gate(struct device *dev, const char *name, init.flags = flags; - clk = ti_clk_register_omap_hw(NULL, &clk_hw->hw, name); + clk = of_ti_clk_register_omap_hw(node, &clk_hw->hw, name); if (IS_ERR(clk)) kfree(clk_hw); @@ -138,6 +138,7 @@ static void __init _of_ti_gate_clk_setup(struct device_node *node, struct clk *clk; const char *parent_name; struct clk_omap_reg reg; + const char *name; u8 enable_bit = 0; u32 val; u32 flags = 0; @@ -164,7 +165,8 @@ static void __init _of_ti_gate_clk_setup(struct device_node *node, if (of_property_read_bool(node, "ti,set-bit-to-disable")) clk_gate_flags |= INVERT_ENABLE; - clk = _register_gate(NULL, node->name, parent_name, flags, ®, + name = ti_dt_clk_name(node); + clk = _register_gate(node, name, parent_name, flags, ®, enable_bit, clk_gate_flags, ops, hw_ops); if (!IS_ERR(clk)) diff --git a/drivers/clk/ti/interface.c b/drivers/clk/ti/interface.c index 83e34429d3b10..1ccd5dbf2bb48 100644 --- a/drivers/clk/ti/interface.c +++ b/drivers/clk/ti/interface.c @@ -32,7 +32,8 @@ static const struct clk_ops ti_interface_clk_ops = { .is_enabled = &omap2_dflt_clk_is_enabled, }; -static struct clk *_register_interface(struct device *dev, const char *name, +static struct clk *_register_interface(struct device_node *node, + const char *name, const char *parent_name, struct clk_omap_reg *reg, u8 bit_idx, const struct clk_hw_omap_ops *ops) @@ -57,7 +58,7 @@ static struct clk *_register_interface(struct device *dev, const char *name, init.num_parents = 1; init.parent_names = &parent_name; - clk = ti_clk_register_omap_hw(NULL, &clk_hw->hw, name); + clk = of_ti_clk_register_omap_hw(node, &clk_hw->hw, name); if (IS_ERR(clk)) kfree(clk_hw); @@ -72,6 +73,7 @@ static void __init _of_ti_interface_clk_setup(struct device_node *node, const char *parent_name; struct clk_omap_reg reg; u8 enable_bit = 0; + const char *name; u32 val; if (ti_clk_get_reg_addr(node, 0, ®)) @@ -86,7 +88,8 @@ static void __init _of_ti_interface_clk_setup(struct device_node *node, return; } - clk = _register_interface(NULL, node->name, parent_name, ®, + name = ti_dt_clk_name(node); + clk = _register_interface(node, name, parent_name, ®, enable_bit, ops); if (!IS_ERR(clk)) diff --git a/drivers/clk/ti/mux.c b/drivers/clk/ti/mux.c index 0069e7cf3ebcc..4205ff4bad217 100644 --- a/drivers/clk/ti/mux.c +++ b/drivers/clk/ti/mux.c @@ -126,7 +126,7 @@ const struct clk_ops ti_clk_mux_ops = { .restore_context = clk_mux_restore_context, }; -static struct clk *_register_mux(struct device *dev, const char *name, +static struct clk *_register_mux(struct device_node *node, const char *name, const char * const *parent_names, u8 num_parents, unsigned long flags, struct clk_omap_reg *reg, u8 shift, u32 mask, @@ -156,7 +156,7 @@ static struct clk *_register_mux(struct device *dev, const char *name, mux->table = table; mux->hw.init = &init; - clk = ti_clk_register(dev, &mux->hw, name); + clk = of_ti_clk_register(node, &mux->hw, name); if (IS_ERR(clk)) kfree(mux); @@ -176,6 +176,7 @@ static void of_mux_clk_setup(struct device_node *node) struct clk_omap_reg reg; unsigned int num_parents; const char **parent_names; + const char *name; u8 clk_mux_flags = 0; u32 mask = 0; u32 shift = 0; @@ -213,7 +214,8 @@ static void of_mux_clk_setup(struct device_node *node) mask = (1 << fls(mask)) - 1; - clk = _register_mux(NULL, node->name, parent_names, num_parents, + name = ti_dt_clk_name(node); + clk = _register_mux(node, name, parent_names, num_parents, flags, ®, shift, mask, latch, clk_mux_flags, NULL); diff --git a/drivers/clocksource/arm_arch_timer.c b/drivers/clocksource/arm_arch_timer.c index be6d741d404c0..178e61223b415 100644 --- a/drivers/clocksource/arm_arch_timer.c +++ b/drivers/clocksource/arm_arch_timer.c @@ -44,23 +44,29 @@ #define CNTACR_RWVT BIT(4) #define CNTACR_RWPT BIT(5) -#define CNTVCT_LO 0x08 -#define CNTVCT_HI 0x0c +#define CNTVCT_LO 0x00 +#define CNTPCT_LO 0x08 #define CNTFRQ 0x10 -#define CNTP_TVAL 0x28 +#define CNTP_CVAL_LO 0x20 #define CNTP_CTL 0x2c -#define CNTV_TVAL 0x38 +#define CNTV_CVAL_LO 0x30 #define CNTV_CTL 0x3c -static unsigned arch_timers_present __initdata; +/* + * The minimum amount of time a generic counter is guaranteed to not roll over + * (40 years) + */ +#define MIN_ROLLOVER_SECS (40ULL * 365 * 24 * 3600) -static void __iomem *arch_counter_base __ro_after_init; +static unsigned arch_timers_present __initdata; struct arch_timer { void __iomem *base; struct clock_event_device evt; }; +static struct arch_timer *arch_timer_mem __ro_after_init; + #define to_arch_timer(e) container_of(e, struct arch_timer, evt) static u32 arch_timer_rate __ro_after_init; @@ -95,33 +101,58 @@ static int __init early_evtstrm_cfg(char *buf) } early_param("clocksource.arm_arch_timer.evtstrm", early_evtstrm_cfg); +/* + * Makes an educated guess at a valid counter width based on the Generic Timer + * specification. Of note: + * 1) the system counter is at least 56 bits wide + * 2) a roll-over time of not less than 40 years + * + * See 'ARM DDI 0487G.a D11.1.2 ("The system counter")' for more details. + */ +static int arch_counter_get_width(void) +{ + u64 min_cycles = MIN_ROLLOVER_SECS * arch_timer_rate; + + /* guarantee the returned width is within the valid range */ + return clamp_val(ilog2(min_cycles - 1) + 1, 56, 64); +} + /* * Architected system timer support. */ static __always_inline -void arch_timer_reg_write(int access, enum arch_timer_reg reg, u32 val, +void arch_timer_reg_write(int access, enum arch_timer_reg reg, u64 val, struct clock_event_device *clk) { if (access == ARCH_TIMER_MEM_PHYS_ACCESS) { struct arch_timer *timer = to_arch_timer(clk); switch (reg) { case ARCH_TIMER_REG_CTRL: - writel_relaxed(val, timer->base + CNTP_CTL); + writel_relaxed((u32)val, timer->base + CNTP_CTL); break; - case ARCH_TIMER_REG_TVAL: - writel_relaxed(val, timer->base + CNTP_TVAL); + case ARCH_TIMER_REG_CVAL: + /* + * Not guaranteed to be atomic, so the timer + * must be disabled at this point. + */ + writeq_relaxed(val, timer->base + CNTP_CVAL_LO); break; + default: + BUILD_BUG(); } } else if (access == ARCH_TIMER_MEM_VIRT_ACCESS) { struct arch_timer *timer = to_arch_timer(clk); switch (reg) { case ARCH_TIMER_REG_CTRL: - writel_relaxed(val, timer->base + CNTV_CTL); + writel_relaxed((u32)val, timer->base + CNTV_CTL); break; - case ARCH_TIMER_REG_TVAL: - writel_relaxed(val, timer->base + CNTV_TVAL); + case ARCH_TIMER_REG_CVAL: + /* Same restriction as above */ + writeq_relaxed(val, timer->base + CNTV_CVAL_LO); break; + default: + BUILD_BUG(); } } else { arch_timer_reg_write_cp15(access, reg, val); @@ -140,9 +171,8 @@ u32 arch_timer_reg_read(int access, enum arch_timer_reg reg, case ARCH_TIMER_REG_CTRL: val = readl_relaxed(timer->base + CNTP_CTL); break; - case ARCH_TIMER_REG_TVAL: - val = readl_relaxed(timer->base + CNTP_TVAL); - break; + default: + BUILD_BUG(); } } else if (access == ARCH_TIMER_MEM_VIRT_ACCESS) { struct arch_timer *timer = to_arch_timer(clk); @@ -150,9 +180,8 @@ u32 arch_timer_reg_read(int access, enum arch_timer_reg reg, case ARCH_TIMER_REG_CTRL: val = readl_relaxed(timer->base + CNTV_CTL); break; - case ARCH_TIMER_REG_TVAL: - val = readl_relaxed(timer->base + CNTV_TVAL); - break; + default: + BUILD_BUG(); } } else { val = arch_timer_reg_read_cp15(access, reg); @@ -205,13 +234,11 @@ static struct clocksource clocksource_counter = { .id = CSID_ARM_ARCH_COUNTER, .rating = 400, .read = arch_counter_read, - .mask = CLOCKSOURCE_MASK(56), .flags = CLOCK_SOURCE_IS_CONTINUOUS, }; static struct cyclecounter cyclecounter __ro_after_init = { .read = arch_counter_read_cc, - .mask = CLOCKSOURCE_MASK(56), }; struct ate_acpi_oem_info { @@ -239,16 +266,6 @@ struct ate_acpi_oem_info { _new; \ }) -static u32 notrace fsl_a008585_read_cntp_tval_el0(void) -{ - return __fsl_a008585_read_reg(cntp_tval_el0); -} - -static u32 notrace fsl_a008585_read_cntv_tval_el0(void) -{ - return __fsl_a008585_read_reg(cntv_tval_el0); -} - static u64 notrace fsl_a008585_read_cntpct_el0(void) { return __fsl_a008585_read_reg(cntpct_el0); @@ -285,16 +302,6 @@ static u64 notrace fsl_a008585_read_cntvct_el0(void) _new; \ }) -static u32 notrace hisi_161010101_read_cntp_tval_el0(void) -{ - return __hisi_161010101_read_reg(cntp_tval_el0); -} - -static u32 notrace hisi_161010101_read_cntv_tval_el0(void) -{ - return __hisi_161010101_read_reg(cntv_tval_el0); -} - static u64 notrace hisi_161010101_read_cntpct_el0(void) { return __hisi_161010101_read_reg(cntpct_el0); @@ -379,16 +386,6 @@ static u64 notrace sun50i_a64_read_cntvct_el0(void) { return __sun50i_a64_read_reg(cntvct_el0); } - -static u32 notrace sun50i_a64_read_cntp_tval_el0(void) -{ - return read_sysreg(cntp_cval_el0) - sun50i_a64_read_cntpct_el0(); -} - -static u32 notrace sun50i_a64_read_cntv_tval_el0(void) -{ - return read_sysreg(cntv_cval_el0) - sun50i_a64_read_cntvct_el0(); -} #endif #ifdef CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND @@ -397,7 +394,7 @@ EXPORT_SYMBOL_GPL(timer_unstable_counter_workaround); static atomic_t timer_unstable_counter_workaround_in_use = ATOMIC_INIT(0); -static void erratum_set_next_event_tval_generic(const int access, unsigned long evt, +static void erratum_set_next_event_generic(const int access, unsigned long evt, struct clock_event_device *clk) { unsigned long ctrl; @@ -418,17 +415,17 @@ static void erratum_set_next_event_tval_generic(const int access, unsigned long arch_timer_reg_write(access, ARCH_TIMER_REG_CTRL, ctrl, clk); } -static __maybe_unused int erratum_set_next_event_tval_virt(unsigned long evt, +static __maybe_unused int erratum_set_next_event_virt(unsigned long evt, struct clock_event_device *clk) { - erratum_set_next_event_tval_generic(ARCH_TIMER_VIRT_ACCESS, evt, clk); + erratum_set_next_event_generic(ARCH_TIMER_VIRT_ACCESS, evt, clk); return 0; } -static __maybe_unused int erratum_set_next_event_tval_phys(unsigned long evt, +static __maybe_unused int erratum_set_next_event_phys(unsigned long evt, struct clock_event_device *clk) { - erratum_set_next_event_tval_generic(ARCH_TIMER_PHYS_ACCESS, evt, clk); + erratum_set_next_event_generic(ARCH_TIMER_PHYS_ACCESS, evt, clk); return 0; } @@ -438,12 +435,10 @@ static const struct arch_timer_erratum_workaround ool_workarounds[] = { .match_type = ate_match_dt, .id = "fsl,erratum-a008585", .desc = "Freescale erratum a005858", - .read_cntp_tval_el0 = fsl_a008585_read_cntp_tval_el0, - .read_cntv_tval_el0 = fsl_a008585_read_cntv_tval_el0, .read_cntpct_el0 = fsl_a008585_read_cntpct_el0, .read_cntvct_el0 = fsl_a008585_read_cntvct_el0, - .set_next_event_phys = erratum_set_next_event_tval_phys, - .set_next_event_virt = erratum_set_next_event_tval_virt, + .set_next_event_phys = erratum_set_next_event_phys, + .set_next_event_virt = erratum_set_next_event_virt, }, #endif #ifdef CONFIG_HISILICON_ERRATUM_161010101 @@ -451,23 +446,19 @@ static const struct arch_timer_erratum_workaround ool_workarounds[] = { .match_type = ate_match_dt, .id = "hisilicon,erratum-161010101", .desc = "HiSilicon erratum 161010101", - .read_cntp_tval_el0 = hisi_161010101_read_cntp_tval_el0, - .read_cntv_tval_el0 = hisi_161010101_read_cntv_tval_el0, .read_cntpct_el0 = hisi_161010101_read_cntpct_el0, .read_cntvct_el0 = hisi_161010101_read_cntvct_el0, - .set_next_event_phys = erratum_set_next_event_tval_phys, - .set_next_event_virt = erratum_set_next_event_tval_virt, + .set_next_event_phys = erratum_set_next_event_phys, + .set_next_event_virt = erratum_set_next_event_virt, }, { .match_type = ate_match_acpi_oem_info, .id = hisi_161010101_oem_info, .desc = "HiSilicon erratum 161010101", - .read_cntp_tval_el0 = hisi_161010101_read_cntp_tval_el0, - .read_cntv_tval_el0 = hisi_161010101_read_cntv_tval_el0, .read_cntpct_el0 = hisi_161010101_read_cntpct_el0, .read_cntvct_el0 = hisi_161010101_read_cntvct_el0, - .set_next_event_phys = erratum_set_next_event_tval_phys, - .set_next_event_virt = erratum_set_next_event_tval_virt, + .set_next_event_phys = erratum_set_next_event_phys, + .set_next_event_virt = erratum_set_next_event_virt, }, #endif #ifdef CONFIG_ARM64_ERRATUM_858921 @@ -484,12 +475,10 @@ static const struct arch_timer_erratum_workaround ool_workarounds[] = { .match_type = ate_match_dt, .id = "allwinner,erratum-unknown1", .desc = "Allwinner erratum UNKNOWN1", - .read_cntp_tval_el0 = sun50i_a64_read_cntp_tval_el0, - .read_cntv_tval_el0 = sun50i_a64_read_cntv_tval_el0, .read_cntpct_el0 = sun50i_a64_read_cntpct_el0, .read_cntvct_el0 = sun50i_a64_read_cntvct_el0, - .set_next_event_phys = erratum_set_next_event_tval_phys, - .set_next_event_virt = erratum_set_next_event_tval_virt, + .set_next_event_phys = erratum_set_next_event_phys, + .set_next_event_virt = erratum_set_next_event_virt, }, #endif #ifdef CONFIG_ARM64_ERRATUM_1418040 @@ -691,8 +680,8 @@ static irqreturn_t arch_timer_handler_virt_mem(int irq, void *dev_id) return timer_handler(ARCH_TIMER_MEM_VIRT_ACCESS, evt); } -static __always_inline int timer_shutdown(const int access, - struct clock_event_device *clk) +static __always_inline int arch_timer_shutdown(const int access, + struct clock_event_device *clk) { unsigned long ctrl; @@ -705,32 +694,40 @@ static __always_inline int timer_shutdown(const int access, static int arch_timer_shutdown_virt(struct clock_event_device *clk) { - return timer_shutdown(ARCH_TIMER_VIRT_ACCESS, clk); + return arch_timer_shutdown(ARCH_TIMER_VIRT_ACCESS, clk); } static int arch_timer_shutdown_phys(struct clock_event_device *clk) { - return timer_shutdown(ARCH_TIMER_PHYS_ACCESS, clk); + return arch_timer_shutdown(ARCH_TIMER_PHYS_ACCESS, clk); } static int arch_timer_shutdown_virt_mem(struct clock_event_device *clk) { - return timer_shutdown(ARCH_TIMER_MEM_VIRT_ACCESS, clk); + return arch_timer_shutdown(ARCH_TIMER_MEM_VIRT_ACCESS, clk); } static int arch_timer_shutdown_phys_mem(struct clock_event_device *clk) { - return timer_shutdown(ARCH_TIMER_MEM_PHYS_ACCESS, clk); + return arch_timer_shutdown(ARCH_TIMER_MEM_PHYS_ACCESS, clk); } static __always_inline void set_next_event(const int access, unsigned long evt, struct clock_event_device *clk) { unsigned long ctrl; + u64 cnt; + ctrl = arch_timer_reg_read(access, ARCH_TIMER_REG_CTRL, clk); ctrl |= ARCH_TIMER_CTRL_ENABLE; ctrl &= ~ARCH_TIMER_CTRL_IT_MASK; - arch_timer_reg_write(access, ARCH_TIMER_REG_TVAL, evt, clk); + + if (access == ARCH_TIMER_PHYS_ACCESS) + cnt = __arch_counter_get_cntpct(); + else + cnt = __arch_counter_get_cntvct(); + + arch_timer_reg_write(access, ARCH_TIMER_REG_CVAL, evt + cnt, clk); arch_timer_reg_write(access, ARCH_TIMER_REG_CTRL, ctrl, clk); } @@ -748,23 +745,79 @@ static int arch_timer_set_next_event_phys(unsigned long evt, return 0; } +static u64 arch_counter_get_cnt_mem(struct arch_timer *t, int offset_lo) +{ + u32 cnt_lo, cnt_hi, tmp_hi; + + do { + cnt_hi = readl_relaxed(t->base + offset_lo + 4); + cnt_lo = readl_relaxed(t->base + offset_lo); + tmp_hi = readl_relaxed(t->base + offset_lo + 4); + } while (cnt_hi != tmp_hi); + + return ((u64) cnt_hi << 32) | cnt_lo; +} + +static __always_inline void set_next_event_mem(const int access, unsigned long evt, + struct clock_event_device *clk) +{ + struct arch_timer *timer = to_arch_timer(clk); + unsigned long ctrl; + u64 cnt; + + ctrl = arch_timer_reg_read(access, ARCH_TIMER_REG_CTRL, clk); + ctrl |= ARCH_TIMER_CTRL_ENABLE; + ctrl &= ~ARCH_TIMER_CTRL_IT_MASK; + + if (access == ARCH_TIMER_MEM_VIRT_ACCESS) + cnt = arch_counter_get_cnt_mem(timer, CNTVCT_LO); + else + cnt = arch_counter_get_cnt_mem(timer, CNTPCT_LO); + + arch_timer_reg_write(access, ARCH_TIMER_REG_CVAL, evt + cnt, clk); + arch_timer_reg_write(access, ARCH_TIMER_REG_CTRL, ctrl, clk); +} + static int arch_timer_set_next_event_virt_mem(unsigned long evt, struct clock_event_device *clk) { - set_next_event(ARCH_TIMER_MEM_VIRT_ACCESS, evt, clk); + set_next_event_mem(ARCH_TIMER_MEM_VIRT_ACCESS, evt, clk); return 0; } static int arch_timer_set_next_event_phys_mem(unsigned long evt, struct clock_event_device *clk) { - set_next_event(ARCH_TIMER_MEM_PHYS_ACCESS, evt, clk); + set_next_event_mem(ARCH_TIMER_MEM_PHYS_ACCESS, evt, clk); return 0; } +static u64 __arch_timer_check_delta(void) +{ +#ifdef CONFIG_ARM64 + const struct midr_range broken_cval_midrs[] = { + /* + * XGene-1 implements CVAL in terms of TVAL, meaning + * that the maximum timer range is 32bit. Shame on them. + */ + MIDR_ALL_VERSIONS(MIDR_CPU_MODEL(ARM_CPU_IMP_APM, + APM_CPU_PART_POTENZA)), + {}, + }; + + if (is_midr_in_range_list(read_cpuid_id(), broken_cval_midrs)) { + pr_warn_once("Broken CNTx_CVAL_EL1, limiting width to 32bits"); + return CLOCKSOURCE_MASK(32); + } +#endif + return CLOCKSOURCE_MASK(arch_counter_get_width()); +} + static void __arch_timer_setup(unsigned type, struct clock_event_device *clk) { + u64 max_delta; + clk->features = CLOCK_EVT_FEAT_ONESHOT; if (type == ARCH_TIMER_TYPE_CP15) { @@ -796,6 +849,7 @@ static void __arch_timer_setup(unsigned type, } clk->set_next_event = sne; + max_delta = __arch_timer_check_delta(); } else { clk->features |= CLOCK_EVT_FEAT_DYNIRQ; clk->name = "arch_mem_timer"; @@ -812,11 +866,13 @@ static void __arch_timer_setup(unsigned type, clk->set_next_event = arch_timer_set_next_event_phys_mem; } + + max_delta = CLOCKSOURCE_MASK(56); } clk->set_state_shutdown(clk); - clockevents_config_and_register(clk, arch_timer_rate, 0xf, 0x7fffffff); + clockevents_config_and_register(clk, arch_timer_rate, 0xf, max_delta); } static void arch_timer_evtstrm_enable(int divider) @@ -986,15 +1042,7 @@ bool arch_timer_evtstrm_available(void) static u64 arch_counter_get_cntvct_mem(void) { - u32 vct_lo, vct_hi, tmp_hi; - - do { - vct_hi = readl_relaxed(arch_counter_base + CNTVCT_HI); - vct_lo = readl_relaxed(arch_counter_base + CNTVCT_LO); - tmp_hi = readl_relaxed(arch_counter_base + CNTVCT_HI); - } while (vct_hi != tmp_hi); - - return ((u64) vct_hi << 32) | vct_lo; + return arch_counter_get_cnt_mem(arch_timer_mem, CNTVCT_LO); } static struct arch_timer_kvm_info arch_timer_kvm_info; @@ -1007,6 +1055,7 @@ struct arch_timer_kvm_info *arch_timer_get_kvm_info(void) static void __init arch_counter_register(unsigned type) { u64 start_count; + int width; /* Register the CP15 based counter if we have one */ if (type & ARCH_TIMER_TYPE_CP15) { @@ -1031,6 +1080,10 @@ static void __init arch_counter_register(unsigned type) arch_timer_read_counter = arch_counter_get_cntvct_mem; } + width = arch_counter_get_width(); + clocksource_counter.mask = CLOCKSOURCE_MASK(width); + cyclecounter.mask = CLOCKSOURCE_MASK(width); + if (!arch_counter_suspend_stop) clocksource_counter.flags |= CLOCK_SOURCE_SUSPEND_NONSTOP; start_count = arch_timer_read_counter(); @@ -1040,8 +1093,7 @@ static void __init arch_counter_register(unsigned type) timecounter_init(&arch_timer_kvm_info.timecounter, &cyclecounter, start_count); - /* 56 bits minimum, so we assume worst case rollover */ - sched_clock_register(arch_timer_read_counter, 56, arch_timer_rate); + sched_clock_register(arch_timer_read_counter, width, arch_timer_rate); } static void arch_timer_stop(struct clock_event_device *clk) @@ -1182,25 +1234,25 @@ static int __init arch_timer_mem_register(void __iomem *base, unsigned int irq) { int ret; irq_handler_t func; - struct arch_timer *t; - t = kzalloc(sizeof(*t), GFP_KERNEL); - if (!t) + arch_timer_mem = kzalloc(sizeof(*arch_timer_mem), GFP_KERNEL); + if (!arch_timer_mem) return -ENOMEM; - t->base = base; - t->evt.irq = irq; - __arch_timer_setup(ARCH_TIMER_TYPE_MEM, &t->evt); + arch_timer_mem->base = base; + arch_timer_mem->evt.irq = irq; + __arch_timer_setup(ARCH_TIMER_TYPE_MEM, &arch_timer_mem->evt); if (arch_timer_mem_use_virtual) func = arch_timer_handler_virt_mem; else func = arch_timer_handler_phys_mem; - ret = request_irq(irq, func, IRQF_TIMER, "arch_mem_timer", &t->evt); + ret = request_irq(irq, func, IRQF_TIMER, "arch_mem_timer", &arch_timer_mem->evt); if (ret) { pr_err("Failed to request mem timer irq\n"); - kfree(t); + kfree(arch_timer_mem); + arch_timer_mem = NULL; } return ret; @@ -1458,7 +1510,6 @@ arch_timer_mem_frame_register(struct arch_timer_mem_frame *frame) return ret; } - arch_counter_base = base; arch_timers_present |= ARCH_TIMER_TYPE_MEM; return 0; diff --git a/drivers/clocksource/timer-atmel-tcb.c b/drivers/clocksource/timer-atmel-tcb.c index 27af17c995900..2a90c92a9182a 100644 --- a/drivers/clocksource/timer-atmel-tcb.c +++ b/drivers/clocksource/timer-atmel-tcb.c @@ -315,6 +315,7 @@ static void __init tcb_setup_dual_chan(struct atmel_tc *tc, int mck_divisor_idx) writel(mck_divisor_idx /* likely divide-by-8 */ | ATMEL_TC_WAVE | ATMEL_TC_WAVESEL_UP /* free-run */ + | ATMEL_TC_ASWTRG_SET /* TIOA0 rises at software trigger */ | ATMEL_TC_ACPA_SET /* TIOA0 rises at 0 */ | ATMEL_TC_ACPC_CLEAR, /* (duty cycle 50%) */ tcaddr + ATMEL_TC_REG(0, CMR)); diff --git a/drivers/clocksource/timer-imx-gpt.c b/drivers/clocksource/timer-imx-gpt.c index 7b2c70f2f353b..fabff69e52e58 100644 --- a/drivers/clocksource/timer-imx-gpt.c +++ b/drivers/clocksource/timer-imx-gpt.c @@ -454,12 +454,16 @@ static int __init mxc_timer_init_dt(struct device_node *np, enum imx_gpt_type t return -ENOMEM; imxtm->base = of_iomap(np, 0); - if (!imxtm->base) - return -ENXIO; + if (!imxtm->base) { + ret = -ENXIO; + goto err_kfree; + } imxtm->irq = irq_of_parse_and_map(np, 0); - if (imxtm->irq <= 0) - return -EINVAL; + if (imxtm->irq <= 0) { + ret = -EINVAL; + goto err_kfree; + } imxtm->clk_ipg = of_clk_get_by_name(np, "ipg"); @@ -472,11 +476,15 @@ static int __init mxc_timer_init_dt(struct device_node *np, enum imx_gpt_type t ret = _mxc_timer_init(imxtm); if (ret) - return ret; + goto err_kfree; initialized = 1; return 0; + +err_kfree: + kfree(imxtm); + return ret; } static int __init imx1_timer_init_dt(struct device_node *np) diff --git a/drivers/clocksource/timer-sp804.c b/drivers/clocksource/timer-sp804.c index e6a87f4af2b50..cd1916c053250 100644 --- a/drivers/clocksource/timer-sp804.c +++ b/drivers/clocksource/timer-sp804.c @@ -155,14 +155,14 @@ static irqreturn_t sp804_timer_interrupt(int irq, void *dev_id) return IRQ_HANDLED; } -static inline void timer_shutdown(struct clock_event_device *evt) +static inline void evt_timer_shutdown(struct clock_event_device *evt) { writel(0, common_clkevt->ctrl); } static int sp804_shutdown(struct clock_event_device *evt) { - timer_shutdown(evt); + evt_timer_shutdown(evt); return 0; } @@ -171,7 +171,7 @@ static int sp804_set_periodic(struct clock_event_device *evt) unsigned long ctrl = TIMER_CTRL_32BIT | TIMER_CTRL_IE | TIMER_CTRL_PERIODIC | TIMER_CTRL_ENABLE; - timer_shutdown(evt); + evt_timer_shutdown(evt); writel(common_clkevt->reload, common_clkevt->load); writel(ctrl, common_clkevt->ctrl); return 0; diff --git a/drivers/counter/microchip-tcb-capture.c b/drivers/counter/microchip-tcb-capture.c index 4edfe1f8fff7a..96a9c32239c01 100644 --- a/drivers/counter/microchip-tcb-capture.c +++ b/drivers/counter/microchip-tcb-capture.c @@ -99,7 +99,7 @@ static int mchp_tc_count_function_write(struct counter_device *counter, priv->qdec_mode = 0; /* Set highest rate based on whether soc has gclk or not */ bmr &= ~(ATMEL_TC_QDEN | ATMEL_TC_POSEN); - if (priv->tc_cfg->has_gclk) + if (!priv->tc_cfg->has_gclk) cmr |= ATMEL_TC_TIMER_CLOCK2; else cmr |= ATMEL_TC_TIMER_CLOCK1; diff --git a/drivers/cpufreq/brcmstb-avs-cpufreq.c b/drivers/cpufreq/brcmstb-avs-cpufreq.c index 4153150e20db5..f644c5e325fb2 100644 --- a/drivers/cpufreq/brcmstb-avs-cpufreq.c +++ b/drivers/cpufreq/brcmstb-avs-cpufreq.c @@ -434,7 +434,11 @@ brcm_avs_get_freq_table(struct device *dev, struct private_data *priv) if (ret) return ERR_PTR(ret); - table = devm_kcalloc(dev, AVS_PSTATE_MAX + 1, sizeof(*table), + /* + * We allocate space for the 5 different P-STATES AVS, + * plus extra space for a terminating element. + */ + table = devm_kcalloc(dev, AVS_PSTATE_MAX + 1 + 1, sizeof(*table), GFP_KERNEL); if (!table) return ERR_PTR(-ENOMEM); diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index 6e3e279ea8fc3..e52af6f0f8493 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c @@ -450,8 +450,10 @@ void cpufreq_freq_transition_end(struct cpufreq_policy *policy, policy->cur, policy->cpuinfo.max_freq); + spin_lock(&policy->transition_lock); policy->transition_ongoing = false; policy->transition_task = NULL; + spin_unlock(&policy->transition_lock); wake_up(&policy->transition_wait); } diff --git a/drivers/cpufreq/cpufreq_stats.c b/drivers/cpufreq/cpufreq_stats.c index 1570d6f3e75d3..6e57df7a2249f 100644 --- a/drivers/cpufreq/cpufreq_stats.c +++ b/drivers/cpufreq/cpufreq_stats.c @@ -131,25 +131,25 @@ static ssize_t show_trans_table(struct cpufreq_policy *policy, char *buf) len += scnprintf(buf + len, PAGE_SIZE - len, " From : To\n"); len += scnprintf(buf + len, PAGE_SIZE - len, " : "); for (i = 0; i < stats->state_num; i++) { - if (len >= PAGE_SIZE) + if (len >= PAGE_SIZE - 1) break; len += scnprintf(buf + len, PAGE_SIZE - len, "%9u ", stats->freq_table[i]); } - if (len >= PAGE_SIZE) - return PAGE_SIZE; + if (len >= PAGE_SIZE - 1) + return PAGE_SIZE - 1; len += scnprintf(buf + len, PAGE_SIZE - len, "\n"); for (i = 0; i < stats->state_num; i++) { - if (len >= PAGE_SIZE) + if (len >= PAGE_SIZE - 1) break; len += scnprintf(buf + len, PAGE_SIZE - len, "%9u: ", stats->freq_table[i]); for (j = 0; j < stats->state_num; j++) { - if (len >= PAGE_SIZE) + if (len >= PAGE_SIZE - 1) break; if (pending) @@ -159,12 +159,12 @@ static ssize_t show_trans_table(struct cpufreq_policy *policy, char *buf) len += scnprintf(buf + len, PAGE_SIZE - len, "%9u ", count); } - if (len >= PAGE_SIZE) + if (len >= PAGE_SIZE - 1) break; len += scnprintf(buf + len, PAGE_SIZE - len, "\n"); } - if (len >= PAGE_SIZE) { + if (len >= PAGE_SIZE - 1) { pr_warn_once("cpufreq transition table exceeds PAGE_SIZE. Disabling\n"); return -EFBIG; } diff --git a/drivers/cpufreq/imx6q-cpufreq.c b/drivers/cpufreq/imx6q-cpufreq.c index 90beb26ed34e9..67f98a083d223 100644 --- a/drivers/cpufreq/imx6q-cpufreq.c +++ b/drivers/cpufreq/imx6q-cpufreq.c @@ -209,6 +209,14 @@ static struct cpufreq_driver imx6q_cpufreq_driver = { .suspend = cpufreq_generic_suspend, }; +static void imx6x_disable_freq_in_opp(struct device *dev, unsigned long freq) +{ + int ret = dev_pm_opp_disable(dev, freq); + + if (ret < 0 && ret != -ENODEV) + dev_warn(dev, "failed to disable %ldMHz OPP\n", freq / 1000000); +} + #define OCOTP_CFG3 0x440 #define OCOTP_CFG3_SPEED_SHIFT 16 #define OCOTP_CFG3_SPEED_1P2GHZ 0x3 @@ -254,17 +262,15 @@ static int imx6q_opp_check_speed_grading(struct device *dev) val &= 0x3; if (val < OCOTP_CFG3_SPEED_996MHZ) - if (dev_pm_opp_disable(dev, 996000000)) - dev_warn(dev, "failed to disable 996MHz OPP\n"); + imx6x_disable_freq_in_opp(dev, 996000000); if (of_machine_is_compatible("fsl,imx6q") || of_machine_is_compatible("fsl,imx6qp")) { if (val != OCOTP_CFG3_SPEED_852MHZ) - if (dev_pm_opp_disable(dev, 852000000)) - dev_warn(dev, "failed to disable 852MHz OPP\n"); + imx6x_disable_freq_in_opp(dev, 852000000); + if (val != OCOTP_CFG3_SPEED_1P2GHZ) - if (dev_pm_opp_disable(dev, 1200000000)) - dev_warn(dev, "failed to disable 1.2GHz OPP\n"); + imx6x_disable_freq_in_opp(dev, 1200000000); } return 0; @@ -316,20 +322,16 @@ static int imx6ul_opp_check_speed_grading(struct device *dev) val >>= OCOTP_CFG3_SPEED_SHIFT; val &= 0x3; - if (of_machine_is_compatible("fsl,imx6ul")) { + if (of_machine_is_compatible("fsl,imx6ul")) if (val != OCOTP_CFG3_6UL_SPEED_696MHZ) - if (dev_pm_opp_disable(dev, 696000000)) - dev_warn(dev, "failed to disable 696MHz OPP\n"); - } + imx6x_disable_freq_in_opp(dev, 696000000); if (of_machine_is_compatible("fsl,imx6ull")) { - if (val != OCOTP_CFG3_6ULL_SPEED_792MHZ) - if (dev_pm_opp_disable(dev, 792000000)) - dev_warn(dev, "failed to disable 792MHz OPP\n"); + if (val < OCOTP_CFG3_6ULL_SPEED_792MHZ) + imx6x_disable_freq_in_opp(dev, 792000000); if (val != OCOTP_CFG3_6ULL_SPEED_900MHZ) - if (dev_pm_opp_disable(dev, 900000000)) - dev_warn(dev, "failed to disable 900MHz OPP\n"); + imx6x_disable_freq_in_opp(dev, 900000000); } return ret; diff --git a/drivers/cpufreq/powernow-k8.c b/drivers/cpufreq/powernow-k8.c index 12ab4014af712..94fe0e15623e4 100644 --- a/drivers/cpufreq/powernow-k8.c +++ b/drivers/cpufreq/powernow-k8.c @@ -1101,7 +1101,8 @@ static int powernowk8_cpu_exit(struct cpufreq_policy *pol) kfree(data->powernow_table); kfree(data); - for_each_cpu(cpu, pol->cpus) + /* pol->cpus will be empty here, use related_cpus instead. */ + for_each_cpu(cpu, pol->related_cpus) per_cpu(powernow_data, cpu) = NULL; return 0; diff --git a/drivers/cpuidle/cpuidle-pseries.c b/drivers/cpuidle/cpuidle-pseries.c index 7e7ab5597d7ac..0590001db6532 100644 --- a/drivers/cpuidle/cpuidle-pseries.c +++ b/drivers/cpuidle/cpuidle-pseries.c @@ -410,13 +410,7 @@ static int __init pseries_idle_probe(void) return -ENODEV; if (firmware_has_feature(FW_FEATURE_SPLPAR)) { - /* - * Use local_paca instead of get_lppaca() since - * preemption is not disabled, and it is not required in - * fact, since lppaca_ptr does not need to be the value - * associated to the current CPU, it can be from any CPU. - */ - if (lppaca_shared_proc(local_paca->lppaca_ptr)) { + if (lppaca_shared_proc()) { cpuidle_state_table = shared_states; max_idle_state = ARRAY_SIZE(shared_states); } else { diff --git a/drivers/crypto/caam/caamalg.c b/drivers/crypto/caam/caamalg.c index d3d8bb0a69900..e156238b4da90 100644 --- a/drivers/crypto/caam/caamalg.c +++ b/drivers/crypto/caam/caamalg.c @@ -566,7 +566,8 @@ static int chachapoly_setkey(struct crypto_aead *aead, const u8 *key, if (keylen != CHACHA_KEY_SIZE + saltlen) return -EINVAL; - ctx->cdata.key_virt = key; + memcpy(ctx->key, key, keylen); + ctx->cdata.key_virt = ctx->key; ctx->cdata.keylen = keylen - saltlen; return chachapoly_set_sh_desc(aead); diff --git a/drivers/crypto/caam/caamalg_qi2.c b/drivers/crypto/caam/caamalg_qi2.c index 6753f0e6e55d1..35c4e29033d55 100644 --- a/drivers/crypto/caam/caamalg_qi2.c +++ b/drivers/crypto/caam/caamalg_qi2.c @@ -639,7 +639,8 @@ static int chachapoly_setkey(struct crypto_aead *aead, const u8 *key, if (keylen != CHACHA_KEY_SIZE + saltlen) return -EINVAL; - ctx->cdata.key_virt = key; + memcpy(ctx->key, key, keylen); + ctx->cdata.key_virt = ctx->key; ctx->cdata.keylen = keylen - saltlen; return chachapoly_set_sh_desc(aead); diff --git a/drivers/crypto/caam/caampkc.c b/drivers/crypto/caam/caampkc.c index 8867275767101..51b48b57266a6 100644 --- a/drivers/crypto/caam/caampkc.c +++ b/drivers/crypto/caam/caampkc.c @@ -223,7 +223,9 @@ static int caam_rsa_count_leading_zeros(struct scatterlist *sgl, if (len && *buff) break; - sg_miter_next(&miter); + if (!sg_miter_next(&miter)) + break; + buff = miter.addr; len = miter.length; diff --git a/drivers/crypto/hisilicon/hpre/hpre_main.c b/drivers/crypto/hisilicon/hpre/hpre_main.c index edc61e4105f30..08e56f1da365c 100644 --- a/drivers/crypto/hisilicon/hpre/hpre_main.c +++ b/drivers/crypto/hisilicon/hpre/hpre_main.c @@ -854,7 +854,7 @@ static int hpre_cluster_debugfs_init(struct hisi_qm *qm) for (i = 0; i < clusters_num; i++) { ret = snprintf(buf, HPRE_DBGFS_VAL_MAX_LEN, "cluster%d", i); - if (ret < 0) + if (ret >= HPRE_DBGFS_VAL_MAX_LEN) return -EINVAL; tmp_d = debugfs_create_dir(buf, qm->debug.debug_root); diff --git a/drivers/crypto/qat/qat_common/adf_accel_devices.h b/drivers/crypto/qat/qat_common/adf_accel_devices.h index 580566cfcb04c..3bb67b22edd6e 100644 --- a/drivers/crypto/qat/qat_common/adf_accel_devices.h +++ b/drivers/crypto/qat/qat_common/adf_accel_devices.h @@ -24,7 +24,7 @@ #define ADF_PCI_MAX_BARS 3 #define ADF_DEVICE_NAME_LENGTH 32 #define ADF_ETR_MAX_RINGS_PER_BANK 16 -#define ADF_MAX_MSIX_VECTOR_NAME 16 +#define ADF_MAX_MSIX_VECTOR_NAME 48 #define ADF_DEVICE_NAME_PREFIX "qat_" enum adf_accel_capabilities { diff --git a/drivers/crypto/qat/qat_common/adf_transport_debug.c b/drivers/crypto/qat/qat_common/adf_transport_debug.c index e69e5907f5950..006867f410bd3 100644 --- a/drivers/crypto/qat/qat_common/adf_transport_debug.c +++ b/drivers/crypto/qat/qat_common/adf_transport_debug.c @@ -90,7 +90,7 @@ DEFINE_SEQ_ATTRIBUTE(adf_ring_debug); int adf_ring_debugfs_add(struct adf_etr_ring_data *ring, const char *name) { struct adf_etr_ring_debug_entry *ring_debug; - char entry_name[8]; + char entry_name[16]; ring_debug = kzalloc(sizeof(*ring_debug), GFP_KERNEL); if (!ring_debug) @@ -192,7 +192,7 @@ int adf_bank_debugfs_add(struct adf_etr_bank_data *bank) { struct adf_accel_dev *accel_dev = bank->accel_dev; struct dentry *parent = accel_dev->transport->debug; - char name[8]; + char name[16]; snprintf(name, sizeof(name), "bank_%02d", bank->bank_number); bank->bank_debug_dir = debugfs_create_dir(name, parent); diff --git a/drivers/crypto/qat/qat_common/qat_algs_send.c b/drivers/crypto/qat/qat_common/qat_algs_send.c index ff5b4347f7831..607ed88f4b197 100644 --- a/drivers/crypto/qat/qat_common/qat_algs_send.c +++ b/drivers/crypto/qat/qat_common/qat_algs_send.c @@ -39,40 +39,44 @@ void qat_alg_send_backlog(struct qat_instance_backlog *backlog) spin_unlock_bh(&backlog->lock); } -static void qat_alg_backlog_req(struct qat_alg_req *req, - struct qat_instance_backlog *backlog) -{ - INIT_LIST_HEAD(&req->list); - - spin_lock_bh(&backlog->lock); - list_add_tail(&req->list, &backlog->list); - spin_unlock_bh(&backlog->lock); -} - -static int qat_alg_send_message_maybacklog(struct qat_alg_req *req) +static bool qat_alg_try_enqueue(struct qat_alg_req *req) { struct qat_instance_backlog *backlog = req->backlog; struct adf_etr_ring_data *tx_ring = req->tx_ring; u32 *fw_req = req->fw_req; - /* If any request is already backlogged, then add to backlog list */ + /* Check if any request is already backlogged */ if (!list_empty(&backlog->list)) - goto enqueue; + return false; - /* If ring is nearly full, then add to backlog list */ + /* Check if ring is nearly full */ if (adf_ring_nearly_full(tx_ring)) - goto enqueue; + return false; - /* If adding request to HW ring fails, then add to backlog list */ + /* Try to enqueue to HW ring */ if (adf_send_message(tx_ring, fw_req)) - goto enqueue; + return false; - return -EINPROGRESS; + return true; +} -enqueue: - qat_alg_backlog_req(req, backlog); - return -EBUSY; +static int qat_alg_send_message_maybacklog(struct qat_alg_req *req) +{ + struct qat_instance_backlog *backlog = req->backlog; + int ret = -EINPROGRESS; + + if (qat_alg_try_enqueue(req)) + return ret; + + spin_lock_bh(&backlog->lock); + if (!qat_alg_try_enqueue(req)) { + list_add_tail(&req->list, &backlog->list); + ret = -EBUSY; + } + spin_unlock_bh(&backlog->lock); + + return ret; } int qat_alg_send_message(struct qat_alg_req *req) diff --git a/drivers/crypto/stm32/stm32-hash.c b/drivers/crypto/stm32/stm32-hash.c index d33006d43f761..4df5330afaa1d 100644 --- a/drivers/crypto/stm32/stm32-hash.c +++ b/drivers/crypto/stm32/stm32-hash.c @@ -565,9 +565,9 @@ static int stm32_hash_dma_send(struct stm32_hash_dev *hdev) } for_each_sg(rctx->sg, tsg, rctx->nents, i) { + sg[0] = *tsg; len = sg->length; - sg[0] = *tsg; if (sg_is_last(sg)) { if (hdev->dma_mode == 1) { len = (ALIGN(sg->length, 16) - 16); @@ -1566,9 +1566,7 @@ static int stm32_hash_remove(struct platform_device *pdev) if (!hdev) return -ENODEV; - ret = pm_runtime_resume_and_get(hdev->dev); - if (ret < 0) - return ret; + ret = pm_runtime_get_sync(hdev->dev); stm32_hash_unregister_algs(hdev); @@ -1584,7 +1582,8 @@ static int stm32_hash_remove(struct platform_device *pdev) pm_runtime_disable(hdev->dev); pm_runtime_put_noidle(hdev->dev); - clk_disable_unprepare(hdev->clk); + if (ret >= 0) + clk_disable_unprepare(hdev->clk); return 0; } diff --git a/drivers/cxl/core/memdev.c b/drivers/cxl/core/memdev.c index a9c317e320107..6673198870fe1 100644 --- a/drivers/cxl/core/memdev.c +++ b/drivers/cxl/core/memdev.c @@ -139,10 +139,9 @@ static void cxl_memdev_unregister(void *_cxlmd) struct cdev *cdev = &cxlmd->cdev; const struct cdevm_file_operations *cdevm_fops; + cdev_device_del(&cxlmd->cdev, dev); cdevm_fops = container_of(cdev->ops, typeof(*cdevm_fops), fops); cdevm_fops->shutdown(dev); - - cdev_device_del(&cxlmd->cdev, dev); put_device(dev); } diff --git a/drivers/dax/hmem/device.c b/drivers/dax/hmem/device.c index acf31cc1dbcca..d0f897c7f52a4 100644 --- a/drivers/dax/hmem/device.c +++ b/drivers/dax/hmem/device.c @@ -8,6 +8,13 @@ static bool nohmem; module_param_named(disable, nohmem, bool, 0444); +static struct resource hmem_active = { + .name = "HMEM devices", + .start = 0, + .end = -1, + .flags = IORESOURCE_MEM, +}; + void hmem_register_device(int target_nid, struct resource *r) { /* define a clean / non-busy resource for the platform device */ @@ -41,6 +48,12 @@ void hmem_register_device(int target_nid, struct resource *r) goto out_pdev; } + if (!__request_region(&hmem_active, res.start, resource_size(&res), + dev_name(&pdev->dev), 0)) { + dev_dbg(&pdev->dev, "hmem range %pr already active\n", &res); + goto out_active; + } + pdev->dev.numa_node = numa_map_to_online_node(target_nid); info = (struct memregion_info) { .target_node = target_nid, @@ -66,22 +79,15 @@ void hmem_register_device(int target_nid, struct resource *r) return; out_resource: - put_device(&pdev->dev); + __release_region(&hmem_active, res.start, resource_size(&res)); +out_active: + platform_device_put(pdev); out_pdev: memregion_free(id); } static __init int hmem_register_one(struct resource *res, void *data) { - /* - * If the resource is not a top-level resource it was already - * assigned to a device by the HMAT parsing. - */ - if (res->parent != &iomem_resource) { - pr_info("HMEM: skip %pr, already claimed\n", res); - return 0; - } - hmem_register_device(phys_to_target_node(res->start), res); return 0; diff --git a/drivers/devfreq/devfreq.c b/drivers/devfreq/devfreq.c index a473b640c40ae..29a14b0ffe334 100644 --- a/drivers/devfreq/devfreq.c +++ b/drivers/devfreq/devfreq.c @@ -762,6 +762,7 @@ static void devfreq_dev_release(struct device *dev) dev_pm_opp_put_opp_table(devfreq->opp_table); mutex_destroy(&devfreq->lock); + srcu_cleanup_notifier_head(&devfreq->transition_notifier_list); kfree(devfreq); } diff --git a/drivers/devfreq/event/rockchip-dfi.c b/drivers/devfreq/event/rockchip-dfi.c index 9a88faaf8b27f..4dafdf23197b9 100644 --- a/drivers/devfreq/event/rockchip-dfi.c +++ b/drivers/devfreq/event/rockchip-dfi.c @@ -194,14 +194,15 @@ static int rockchip_dfi_probe(struct platform_device *pdev) return PTR_ERR(data->clk); } - /* try to find the optional reference to the pmu syscon */ node = of_parse_phandle(np, "rockchip,pmu", 0); - if (node) { - data->regmap_pmu = syscon_node_to_regmap(node); - of_node_put(node); - if (IS_ERR(data->regmap_pmu)) - return PTR_ERR(data->regmap_pmu); - } + if (!node) + return dev_err_probe(&pdev->dev, -ENODEV, "Can't find pmu_grf registers\n"); + + data->regmap_pmu = syscon_node_to_regmap(node); + of_node_put(node); + if (IS_ERR(data->regmap_pmu)) + return PTR_ERR(data->regmap_pmu); + data->dev = dev; desc = devm_kzalloc(dev, sizeof(*desc), GFP_KERNEL); diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig index 95344ae49e532..e1beddcc8c84a 100644 --- a/drivers/dma/Kconfig +++ b/drivers/dma/Kconfig @@ -202,6 +202,7 @@ config FSL_DMA config FSL_EDMA tristate "Freescale eDMA engine support" depends on OF + depends on HAS_IOMEM select DMA_ENGINE select DMA_VIRTUAL_CHANNELS help @@ -271,6 +272,7 @@ config IMX_SDMA config INTEL_IDMA64 tristate "Intel integrated DMA 64-bit support" + depends on HAS_IOMEM select DMA_ENGINE select DMA_VIRTUAL_CHANNELS help diff --git a/drivers/dma/idxd/Makefile b/drivers/dma/idxd/Makefile index a1e9f2b3a37cc..817ffa95a9b11 100644 --- a/drivers/dma/idxd/Makefile +++ b/drivers/dma/idxd/Makefile @@ -1,12 +1,12 @@ ccflags-y += -DDEFAULT_SYMBOL_NAMESPACE=IDXD +obj-$(CONFIG_INTEL_IDXD_BUS) += idxd_bus.o +idxd_bus-y := bus.o + obj-$(CONFIG_INTEL_IDXD) += idxd.o idxd-y := init.o irq.o device.o sysfs.o submit.o dma.o cdev.o idxd-$(CONFIG_INTEL_IDXD_PERFMON) += perfmon.o -obj-$(CONFIG_INTEL_IDXD_BUS) += idxd_bus.o -idxd_bus-y := bus.o - obj-$(CONFIG_INTEL_IDXD_COMPAT) += idxd_compat.o idxd_compat-y := compat.o diff --git a/drivers/dma/idxd/device.c b/drivers/dma/idxd/device.c index 535f021911c55..f2cfefc505a8c 100644 --- a/drivers/dma/idxd/device.c +++ b/drivers/dma/idxd/device.c @@ -490,6 +490,7 @@ static void idxd_cmd_exec(struct idxd_device *idxd, int cmd_code, u32 operand, union idxd_command_reg cmd; DECLARE_COMPLETION_ONSTACK(done); u32 stat; + unsigned long flags; if (idxd_device_is_halted(idxd)) { dev_warn(&idxd->pdev->dev, "Device is HALTED!\n"); @@ -503,7 +504,7 @@ static void idxd_cmd_exec(struct idxd_device *idxd, int cmd_code, u32 operand, cmd.operand = operand; cmd.int_req = 1; - spin_lock(&idxd->cmd_lock); + spin_lock_irqsave(&idxd->cmd_lock, flags); wait_event_lock_irq(idxd->cmd_waitq, !test_bit(IDXD_FLAG_CMD_RUNNING, &idxd->flags), idxd->cmd_lock); @@ -520,7 +521,7 @@ static void idxd_cmd_exec(struct idxd_device *idxd, int cmd_code, u32 operand, * After command submitted, release lock and go to sleep until * the command completes via interrupt. */ - spin_unlock(&idxd->cmd_lock); + spin_unlock_irqrestore(&idxd->cmd_lock, flags); wait_for_completion(&done); stat = ioread32(idxd->reg_base + IDXD_CMDSTS_OFFSET); spin_lock(&idxd->cmd_lock); diff --git a/drivers/dma/mediatek/mtk-uart-apdma.c b/drivers/dma/mediatek/mtk-uart-apdma.c index a1517ef1f4a01..0acf6a92a4ad3 100644 --- a/drivers/dma/mediatek/mtk-uart-apdma.c +++ b/drivers/dma/mediatek/mtk-uart-apdma.c @@ -451,9 +451,8 @@ static int mtk_uart_apdma_device_pause(struct dma_chan *chan) mtk_uart_apdma_write(c, VFF_EN, VFF_EN_CLR_B); mtk_uart_apdma_write(c, VFF_INT_EN, VFF_INT_EN_CLR_B); - synchronize_irq(c->irq); - spin_unlock_irqrestore(&c->vc.lock, flags); + synchronize_irq(c->irq); return 0; } diff --git a/drivers/dma/pxa_dma.c b/drivers/dma/pxa_dma.c index e613ace79ea83..2731dc27f9d71 100644 --- a/drivers/dma/pxa_dma.c +++ b/drivers/dma/pxa_dma.c @@ -722,7 +722,6 @@ static void pxad_free_desc(struct virt_dma_desc *vd) dma_addr_t dma; struct pxad_desc_sw *sw_desc = to_pxad_sw_desc(vd); - BUG_ON(sw_desc->nb_desc == 0); for (i = sw_desc->nb_desc - 1; i >= 0; i--) { if (i > 0) dma = sw_desc->hw_desc[i - 1]->ddadr; diff --git a/drivers/dma/sh/rz-dmac.c b/drivers/dma/sh/rz-dmac.c index f9f30cbeccbe7..941a7ef475f4e 100644 --- a/drivers/dma/sh/rz-dmac.c +++ b/drivers/dma/sh/rz-dmac.c @@ -9,6 +9,7 @@ * Copyright 2012 Javier Martin, Vista Silicon */ +#include #include #include #include @@ -143,8 +144,8 @@ struct rz_dmac { #define CHCFG_REQD BIT(3) #define CHCFG_SEL(bits) ((bits) & 0x07) #define CHCFG_MEM_COPY (0x80400008) -#define CHCFG_FILL_DDS(a) (((a) << 16) & GENMASK(19, 16)) -#define CHCFG_FILL_SDS(a) (((a) << 12) & GENMASK(15, 12)) +#define CHCFG_FILL_DDS_MASK GENMASK(19, 16) +#define CHCFG_FILL_SDS_MASK GENMASK(15, 12) #define CHCFG_FILL_TM(a) (((a) & BIT(5)) << 22) #define CHCFG_FILL_AM(a) (((a) & GENMASK(4, 2)) << 6) #define CHCFG_FILL_LVL(a) (((a) & BIT(1)) << 5) @@ -607,13 +608,15 @@ static int rz_dmac_config(struct dma_chan *chan, if (val == CHCFG_DS_INVALID) return -EINVAL; - channel->chcfg |= CHCFG_FILL_DDS(val); + channel->chcfg &= ~CHCFG_FILL_DDS_MASK; + channel->chcfg |= FIELD_PREP(CHCFG_FILL_DDS_MASK, val); val = rz_dmac_ds_to_val_mapping(config->src_addr_width); if (val == CHCFG_DS_INVALID) return -EINVAL; - channel->chcfg |= CHCFG_FILL_SDS(val); + channel->chcfg &= ~CHCFG_FILL_SDS_MASK; + channel->chcfg |= FIELD_PREP(CHCFG_FILL_SDS_MASK, val); return 0; } diff --git a/drivers/dma/ste_dma40.c b/drivers/dma/ste_dma40.c index e1827393143f1..0e9cb01682647 100644 --- a/drivers/dma/ste_dma40.c +++ b/drivers/dma/ste_dma40.c @@ -3597,6 +3597,10 @@ static int __init d40_probe(struct platform_device *pdev) spin_lock_init(&base->lcla_pool.lock); base->irq = platform_get_irq(pdev, 0); + if (base->irq < 0) { + ret = base->irq; + goto destroy_cache; + } ret = request_irq(base->irq, d40_handle_interrupt, 0, D40_NAME, base); if (ret) { @@ -3693,6 +3697,7 @@ static int __init d40_probe(struct platform_device *pdev) regulator_disable(base->lcpa_regulator); regulator_put(base->lcpa_regulator); } + pm_runtime_disable(base->dev); kfree(base->lcla_pool.alloc_map); kfree(base->lookup_log_chans); diff --git a/drivers/dma/stm32-mdma.c b/drivers/dma/stm32-mdma.c index 21a7bdc88970a..76202029a3f0c 100644 --- a/drivers/dma/stm32-mdma.c +++ b/drivers/dma/stm32-mdma.c @@ -509,7 +509,7 @@ static int stm32_mdma_set_xfer_param(struct stm32_mdma_chan *chan, src_maxburst = chan->dma_config.src_maxburst; dst_maxburst = chan->dma_config.dst_maxburst; - ccr = stm32_mdma_read(dmadev, STM32_MDMA_CCR(chan->id)); + ccr = stm32_mdma_read(dmadev, STM32_MDMA_CCR(chan->id)) & ~STM32_MDMA_CCR_EN; ctcr = stm32_mdma_read(dmadev, STM32_MDMA_CTCR(chan->id)); ctbr = stm32_mdma_read(dmadev, STM32_MDMA_CTBR(chan->id)); @@ -937,7 +937,7 @@ stm32_mdma_prep_dma_memcpy(struct dma_chan *c, dma_addr_t dest, dma_addr_t src, if (!desc) return NULL; - ccr = stm32_mdma_read(dmadev, STM32_MDMA_CCR(chan->id)); + ccr = stm32_mdma_read(dmadev, STM32_MDMA_CCR(chan->id)) & ~STM32_MDMA_CCR_EN; ctcr = stm32_mdma_read(dmadev, STM32_MDMA_CTCR(chan->id)); ctbr = stm32_mdma_read(dmadev, STM32_MDMA_CTBR(chan->id)); cbndtr = stm32_mdma_read(dmadev, STM32_MDMA_CBNDTR(chan->id)); @@ -1206,6 +1206,10 @@ static int stm32_mdma_resume(struct dma_chan *c) unsigned long flags; u32 status, reg; + /* Transfer can be terminated */ + if (!chan->desc || (stm32_mdma_read(dmadev, STM32_MDMA_CCR(chan->id)) & STM32_MDMA_CCR_EN)) + return -EPERM; + hwdesc = chan->desc->node[chan->curr_hwdesc].hwdesc; spin_lock_irqsave(&chan->vchan.lock, flags); diff --git a/drivers/dma/ti/edma.c b/drivers/dma/ti/edma.c index 35d81bd857f11..a1adc8d91fd8d 100644 --- a/drivers/dma/ti/edma.c +++ b/drivers/dma/ti/edma.c @@ -2459,7 +2459,7 @@ static int edma_probe(struct platform_device *pdev) if (irq < 0 && node) irq = irq_of_parse_and_map(node, 0); - if (irq >= 0) { + if (irq > 0) { irq_name = devm_kasprintf(dev, GFP_KERNEL, "%s_ccint", dev_name(dev)); ret = devm_request_irq(dev, irq, dma_irq_handler, 0, irq_name, @@ -2475,7 +2475,7 @@ static int edma_probe(struct platform_device *pdev) if (irq < 0 && node) irq = irq_of_parse_and_map(node, 2); - if (irq >= 0) { + if (irq > 0) { irq_name = devm_kasprintf(dev, GFP_KERNEL, "%s_ccerrint", dev_name(dev)); ret = devm_request_irq(dev, irq, dma_ccerr_handler, 0, irq_name, diff --git a/drivers/edac/igen6_edac.c b/drivers/edac/igen6_edac.c index a07bbfd075d06..8ec70da8d84fe 100644 --- a/drivers/edac/igen6_edac.c +++ b/drivers/edac/igen6_edac.c @@ -27,7 +27,7 @@ #include "edac_mc.h" #include "edac_module.h" -#define IGEN6_REVISION "v2.5" +#define IGEN6_REVISION "v2.5.1" #define EDAC_MOD_STR "igen6_edac" #define IGEN6_NMI_NAME "igen6_ibecc" @@ -1216,9 +1216,6 @@ static int igen6_probe(struct pci_dev *pdev, const struct pci_device_id *ent) INIT_WORK(&ecclog_work, ecclog_work_cb); init_irq_work(&ecclog_irq_work, ecclog_irq_work_cb); - /* Check if any pending errors before registering the NMI handler */ - ecclog_handler(); - rc = register_err_handler(); if (rc) goto fail3; @@ -1230,6 +1227,9 @@ static int igen6_probe(struct pci_dev *pdev, const struct pci_device_id *ent) goto fail4; } + /* Check if any pending errors before/during the registration of the error handler */ + ecclog_handler(); + igen6_debug_setup(); return 0; fail4: diff --git a/drivers/firewire/core-device.c b/drivers/firewire/core-device.c index 90ed8fdaba754..e820c36718ff1 100644 --- a/drivers/firewire/core-device.c +++ b/drivers/firewire/core-device.c @@ -719,14 +719,11 @@ static void create_units(struct fw_device *device) fw_unit_attributes, &unit->attribute_group); - if (device_register(&unit->device) < 0) - goto skip_unit; - fw_device_get(device); - continue; - - skip_unit: - kfree(unit); + if (device_register(&unit->device) < 0) { + put_device(&unit->device); + continue; + } } } diff --git a/drivers/firmware/arm_ffa/bus.c b/drivers/firmware/arm_ffa/bus.c index edef31c413123..f79ba6f733ba4 100644 --- a/drivers/firmware/arm_ffa/bus.c +++ b/drivers/firmware/arm_ffa/bus.c @@ -192,6 +192,7 @@ struct ffa_device *ffa_device_register(const uuid_t *uuid, int vm_id) dev->release = ffa_release_device; dev_set_name(&ffa_dev->dev, "arm-ffa-%d", id); + ffa_dev->id = id; ffa_dev->vm_id = vm_id; uuid_copy(&ffa_dev->uuid, uuid); diff --git a/drivers/firmware/arm_sdei.c b/drivers/firmware/arm_sdei.c index f9040bd610812..285fe7ad490d1 100644 --- a/drivers/firmware/arm_sdei.c +++ b/drivers/firmware/arm_sdei.c @@ -1095,3 +1095,22 @@ int sdei_event_handler(struct pt_regs *regs, return err; } NOKPROBE_SYMBOL(sdei_event_handler); + +void sdei_handler_abort(void) +{ + /* + * If the crash happened in an SDEI event handler then we need to + * finish the handler with the firmware so that we can have working + * interrupts in the crash kernel. + */ + if (__this_cpu_read(sdei_active_critical_event)) { + pr_warn("still in SDEI critical event context, attempting to finish handler.\n"); + __sdei_handler_abort(); + __this_cpu_write(sdei_active_critical_event, NULL); + } + if (__this_cpu_read(sdei_active_normal_event)) { + pr_warn("still in SDEI normal event context, attempting to finish handler.\n"); + __sdei_handler_abort(); + __this_cpu_write(sdei_active_normal_event, NULL); + } +} diff --git a/drivers/firmware/efi/libstub/x86-stub.c b/drivers/firmware/efi/libstub/x86-stub.c index 72162645b553e..1cb4466e3c108 100644 --- a/drivers/firmware/efi/libstub/x86-stub.c +++ b/drivers/firmware/efi/libstub/x86-stub.c @@ -60,7 +60,7 @@ preserve_pci_rom_image(efi_pci_io_protocol_t *pci, struct pci_setup_rom **__rom) rom->data.type = SETUP_PCI; rom->data.len = size - sizeof(struct setup_data); rom->data.next = 0; - rom->pcilen = pci->romsize; + rom->pcilen = romsize; *__rom = rom; status = efi_call_proto(pci, pci.read, EfiPciIoWidthUint16, diff --git a/drivers/firmware/imx/imx-dsp.c b/drivers/firmware/imx/imx-dsp.c index a6c06d7476c32..0f656e4191d5c 100644 --- a/drivers/firmware/imx/imx-dsp.c +++ b/drivers/firmware/imx/imx-dsp.c @@ -119,6 +119,7 @@ static int imx_dsp_setup_channels(struct imx_dsp_ipc *dsp_ipc) if (ret != -EPROBE_DEFER) dev_err(dev, "Failed to request mbox chan %s ret %d\n", chan_name, ret); + kfree(dsp_chan->name); goto out; } diff --git a/drivers/firmware/meson/meson_sm.c b/drivers/firmware/meson/meson_sm.c index 77aa5c6398aa6..d081a6312627b 100644 --- a/drivers/firmware/meson/meson_sm.c +++ b/drivers/firmware/meson/meson_sm.c @@ -292,6 +292,8 @@ static int __init meson_sm_probe(struct platform_device *pdev) return -ENOMEM; chip = of_match_device(meson_sm_ids, dev)->data; + if (!chip) + return -EINVAL; if (chip->cmd_shmem_in_base) { fw->sm_shmem_in_base = meson_sm_map_shmem(chip->cmd_shmem_in_base, diff --git a/drivers/firmware/qcom_scm.c b/drivers/firmware/qcom_scm.c index 18e1a4b80401c..139c8c4012542 100644 --- a/drivers/firmware/qcom_scm.c +++ b/drivers/firmware/qcom_scm.c @@ -136,6 +136,12 @@ static enum qcom_scm_convention __get_convention(void) if (likely(qcom_scm_convention != SMC_CONVENTION_UNKNOWN)) return qcom_scm_convention; + /* + * Per the "SMC calling convention specification", the 64-bit calling + * convention can only be used when the client is 64-bit, otherwise + * system will encounter the undefined behaviour. + */ +#if IS_ENABLED(CONFIG_ARM64) /* * Device isn't required as there is only one argument - no device * needed to dma_map_single to secure world @@ -156,6 +162,7 @@ static enum qcom_scm_convention __get_convention(void) forced = true; goto found; } +#endif probed_convention = SMC_CONVENTION_ARM_32; ret = __scm_smc_call(NULL, &desc, probed_convention, &res, true); diff --git a/drivers/firmware/ti_sci.c b/drivers/firmware/ti_sci.c index 235c7e7869aa7..c2fafe49c2e85 100644 --- a/drivers/firmware/ti_sci.c +++ b/drivers/firmware/ti_sci.c @@ -190,19 +190,6 @@ static int ti_sci_debugfs_create(struct platform_device *pdev, return 0; } -/** - * ti_sci_debugfs_destroy() - clean up log debug file - * @pdev: platform device pointer - * @info: Pointer to SCI entity information - */ -static void ti_sci_debugfs_destroy(struct platform_device *pdev, - struct ti_sci_info *info) -{ - if (IS_ERR(info->debug_region)) - return; - - debugfs_remove(info->d); -} #else /* CONFIG_DEBUG_FS */ static inline int ti_sci_debugfs_create(struct platform_device *dev, struct ti_sci_info *info) @@ -3435,43 +3422,12 @@ static int ti_sci_probe(struct platform_device *pdev) return ret; } -static int ti_sci_remove(struct platform_device *pdev) -{ - struct ti_sci_info *info; - struct device *dev = &pdev->dev; - int ret = 0; - - of_platform_depopulate(dev); - - info = platform_get_drvdata(pdev); - - if (info->nb.notifier_call) - unregister_restart_handler(&info->nb); - - mutex_lock(&ti_sci_list_mutex); - if (info->users) - ret = -EBUSY; - else - list_del(&info->node); - mutex_unlock(&ti_sci_list_mutex); - - if (!ret) { - ti_sci_debugfs_destroy(pdev, info); - - /* Safe to free channels since no more users */ - mbox_free_channel(info->chan_tx); - mbox_free_channel(info->chan_rx); - } - - return ret; -} - static struct platform_driver ti_sci_driver = { .probe = ti_sci_probe, - .remove = ti_sci_remove, .driver = { .name = "ti-sci", .of_match_table = of_match_ptr(ti_sci_of_match), + .suppress_bind_attrs = true, }, }; module_platform_driver(ti_sci_driver); diff --git a/drivers/fsi/fsi-master-aspeed.c b/drivers/fsi/fsi-master-aspeed.c index 0bed2fab80558..a3645da1f1bf3 100644 --- a/drivers/fsi/fsi-master-aspeed.c +++ b/drivers/fsi/fsi-master-aspeed.c @@ -453,6 +453,8 @@ static ssize_t cfam_reset_store(struct device *dev, struct device_attribute *att gpiod_set_value(aspeed->cfam_reset_gpio, 1); usleep_range(900, 1000); gpiod_set_value(aspeed->cfam_reset_gpio, 0); + usleep_range(900, 1000); + opb_writel(aspeed, ctrl_base + FSI_MRESP0, cpu_to_be32(FSI_MRESP_RST_ALL_MASTER)); mutex_unlock(&aspeed->lock); return count; diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index 1883277836f88..6af9b50f5ffa6 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -1030,6 +1030,12 @@ config GPIO_MAX732X_IRQ Say yes here to enable the max732x to be used as an interrupt controller. It requires the driver to be built in the kernel. +config GPIO_M058SSAN + tristate "M085 8-DI 8-DO I2C expander" + depends on UBUNTU_ODM_DRIVERS + help + Say yes here to enable the M058SSAN gpio driver. + config GPIO_PCA953X tristate "PCA95[357]x, PCA9698, TCA64xx, and MAX7310 I/O ports" select REGMAP_I2C diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile index 9ef8d56a62327..ed76dc626698b 100644 --- a/drivers/gpio/Makefile +++ b/drivers/gpio/Makefile @@ -84,6 +84,7 @@ obj-$(CONFIG_GPIO_LP873X) += gpio-lp873x.o obj-$(CONFIG_GPIO_LP87565) += gpio-lp87565.o obj-$(CONFIG_GPIO_LPC18XX) += gpio-lpc18xx.o obj-$(CONFIG_GPIO_LPC32XX) += gpio-lpc32xx.o +obj-$(CONFIG_GPIO_M058SSAN) += gpio-m058ssan.o obj-$(CONFIG_GPIO_MADERA) += gpio-madera.o obj-$(CONFIG_GPIO_MAX3191X) += gpio-max3191x.o obj-$(CONFIG_GPIO_MAX7300) += gpio-max7300.o diff --git a/drivers/gpio/gpio-aspeed.c b/drivers/gpio/gpio-aspeed.c index 318a7d95a1a8b..42d3e1cf73528 100644 --- a/drivers/gpio/gpio-aspeed.c +++ b/drivers/gpio/gpio-aspeed.c @@ -963,7 +963,7 @@ static int aspeed_gpio_set_config(struct gpio_chip *chip, unsigned int offset, else if (param == PIN_CONFIG_BIAS_DISABLE || param == PIN_CONFIG_BIAS_PULL_DOWN || param == PIN_CONFIG_DRIVE_STRENGTH) - return pinctrl_gpio_set_config(offset, config); + return pinctrl_gpio_set_config(chip->base + offset, config); else if (param == PIN_CONFIG_DRIVE_OPEN_DRAIN || param == PIN_CONFIG_DRIVE_OPEN_SOURCE) /* Return -ENOTSUPP to trigger emulation, as per datasheet */ diff --git a/drivers/gpio/gpio-m058ssan.c b/drivers/gpio/gpio-m058ssan.c new file mode 100644 index 0000000000000..44794daf9bd81 --- /dev/null +++ b/drivers/gpio/gpio-m058ssan.c @@ -0,0 +1,192 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * Driver for M058SSAN I2C GPO expander + * + * Copyright (C) 2023 Filippo Copetti + * + * Based on gpio-tpic2810.c + * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com/ + * Andrew F. Davis + */ + +#include +#include +#include +#include +#include + +/* + * GPIO bank #1 (offset 0...7) is configured as output + * GPIO bank #2 (offset 8...15) is configured as input + */ + +#define M058SSAN_OUTPUT_BANK 0x01 +#define M058SSAN_INPUT_BANK 0x02 +#define M058SSAN_INPUT_OUTPUT_OFFSET 0x07 + +/** + * m058ssan_read(gpio, &gpio->out, 0x02); + * o->out * struct m058ssan - GPIO driver data + * @chip: GPIO controller chip + * @lock: Protects write sequences + * @out: Buffer for device register + */ +struct m058ssan { + struct gpio_chip chip; + struct mutex lock; + u8 out; +}; + +static int m058ssan_read(struct m058ssan *gpio, u8 *value, u8 address) +{ + struct i2c_client *client = to_i2c_client(gpio->chip.parent); + int ret; + + ret = i2c_smbus_read_byte_data(client, address); + + if (ret < 0) + return ret; + + *value = ret; + + return 0; +} + +static int m058ssan_write(struct m058ssan *gpio, u8 value, u8 address) +{ + struct i2c_client *client = to_i2c_client(gpio->chip.parent); + + return i2c_smbus_write_byte_data(client, address, value); +} + +static int m058ssan_get_direction(struct gpio_chip *chip, unsigned int offset) +{ + if (offset > M058SSAN_INPUT_OUTPUT_OFFSET) + return GPIO_LINE_DIRECTION_IN; + else + return GPIO_LINE_DIRECTION_OUT; +} + +static int m058ssan_gpio_direction_input(struct gpio_chip *gc, unsigned int offset) +{ + if (offset > M058SSAN_INPUT_OUTPUT_OFFSET) + return 0; + else + return -1; +} + +static int m058ssan_gpio_direction_output(struct gpio_chip *gc, unsigned int offset, int value) +{ + if (offset > M058SSAN_INPUT_OUTPUT_OFFSET) + return -1; + else + return 0; +} + +static int m058ssan_get(struct gpio_chip *chip, unsigned int offset) +{ + struct m058ssan *gpio = gpiochip_get_data(chip); + u8 buffer; + int ret; + + if (offset > M058SSAN_INPUT_OUTPUT_OFFSET) { + ret = m058ssan_read(gpio, &buffer, M058SSAN_INPUT_BANK); + offset -= (M058SSAN_INPUT_OUTPUT_OFFSET + 1); + } else { + ret = m058ssan_read(gpio, &buffer, M058SSAN_OUTPUT_BANK); + } + if (ret) + return ret; + + return buffer & BIT(offset); +} + +static void m058ssan_set(struct gpio_chip *chip, unsigned int offset, int value) +{ + struct m058ssan *gpio = gpiochip_get_data(chip); + u8 buffer; + int ret; + + if (offset > M058SSAN_INPUT_OUTPUT_OFFSET) + return; + + mutex_lock(&gpio->lock); + + buffer = gpio->out; + + if (value) + buffer |= BIT(offset); + else + buffer &= ~BIT(offset); + + ret = m058ssan_write(gpio, buffer, M058SSAN_OUTPUT_BANK); + + if (ret) + goto out; + + gpio->out = buffer; + +out: + mutex_unlock(&gpio->lock); +} + +static int m058ssan_probe(struct i2c_client *client) +{ + struct m058ssan *gpio; + + gpio = devm_kzalloc(&client->dev, sizeof(*gpio), GFP_KERNEL); + + if (!gpio) + return -ENOMEM; + + gpio->chip.label = client->name; + gpio->chip.parent = &client->dev; + gpio->chip.owner = THIS_MODULE; + gpio->chip.get_direction = m058ssan_get_direction; + gpio->chip.direction_input = m058ssan_gpio_direction_input; + gpio->chip.direction_output = m058ssan_gpio_direction_output; + gpio->chip.get = m058ssan_get; + gpio->chip.set = m058ssan_set; + gpio->chip.base = -1; + gpio->chip.ngpio = 16; + gpio->chip.can_sleep = true; + + mutex_init(&gpio->lock); + + /* Read the current output level */ + if (gpio->out > M058SSAN_INPUT_OUTPUT_OFFSET) + m058ssan_read(gpio, &gpio->out, M058SSAN_INPUT_BANK); + else + m058ssan_read(gpio, &gpio->out, M058SSAN_OUTPUT_BANK); + + return devm_gpiochip_add_data(&client->dev, &gpio->chip, gpio); +} + +static const struct i2c_device_id m058ssan_id_table[] = { + {"m058ssan", 4}, + { /* sentinel */ } +}; + +MODULE_DEVICE_TABLE(i2c, m058ssan_id_table); + +static const struct of_device_id m058ssan_of_match_table[] = { + {.compatible = "nuvoton,m058ssan", .data = (void *)4}, + { /* sentinel */ } +}; + +MODULE_DEVICE_TABLE(of, m058ssan_of_match_table); + +static struct i2c_driver m058ssan_driver = { + .driver = { + .name = "m058ssan", + .of_match_table = m058ssan_of_match_table, + }, + .probe_new = m058ssan_probe, + .id_table = m058ssan_id_table, +}; + +module_i2c_driver(m058ssan_driver); + +MODULE_AUTHOR("Filippo Copetti "); +MODULE_DESCRIPTION("GPIO expander driver for M058SSAN"); +MODULE_LICENSE("GPL v2"); diff --git a/drivers/gpio/gpio-pmic-eic-sprd.c b/drivers/gpio/gpio-pmic-eic-sprd.c index 9382851905662..e969ce9131ddf 100644 --- a/drivers/gpio/gpio-pmic-eic-sprd.c +++ b/drivers/gpio/gpio-pmic-eic-sprd.c @@ -338,6 +338,7 @@ static int sprd_pmic_eic_probe(struct platform_device *pdev) pmic_eic->chip.set_config = sprd_pmic_eic_set_config; pmic_eic->chip.set = sprd_pmic_eic_set; pmic_eic->chip.get = sprd_pmic_eic_get; + pmic_eic->chip.can_sleep = true; pmic_eic->intc.name = dev_name(&pdev->dev); pmic_eic->intc.irq_mask = sprd_pmic_eic_irq_mask; diff --git a/drivers/gpio/gpio-pxa.c b/drivers/gpio/gpio-pxa.c index 382468e294e1a..d9abe7093efd7 100644 --- a/drivers/gpio/gpio-pxa.c +++ b/drivers/gpio/gpio-pxa.c @@ -243,6 +243,7 @@ static bool pxa_gpio_has_pinctrl(void) switch (gpio_type) { case PXA3XX_GPIO: case MMP2_GPIO: + case MMP_GPIO: return false; default: diff --git a/drivers/gpio/gpio-tb10x.c b/drivers/gpio/gpio-tb10x.c index de6afa3f97168..05357473d2a11 100644 --- a/drivers/gpio/gpio-tb10x.c +++ b/drivers/gpio/gpio-tb10x.c @@ -195,7 +195,7 @@ static int tb10x_gpio_probe(struct platform_device *pdev) handle_edge_irq, IRQ_NOREQUEST, IRQ_NOPROBE, IRQ_GC_INIT_MASK_CACHE); if (ret) - return ret; + goto err_remove_domain; gc = tb10x_gpio->domain->gc->gc[0]; gc->reg_base = tb10x_gpio->base; @@ -209,6 +209,10 @@ static int tb10x_gpio_probe(struct platform_device *pdev) } return 0; + +err_remove_domain: + irq_domain_remove(tb10x_gpio->domain); + return ret; } static int tb10x_gpio_remove(struct platform_device *pdev) diff --git a/drivers/gpio/gpio-timberdale.c b/drivers/gpio/gpio-timberdale.c index de14949a3fe5a..92c1f2baa4bff 100644 --- a/drivers/gpio/gpio-timberdale.c +++ b/drivers/gpio/gpio-timberdale.c @@ -43,9 +43,10 @@ static int timbgpio_update_bit(struct gpio_chip *gpio, unsigned index, unsigned offset, bool enabled) { struct timbgpio *tgpio = gpiochip_get_data(gpio); + unsigned long flags; u32 reg; - spin_lock(&tgpio->lock); + spin_lock_irqsave(&tgpio->lock, flags); reg = ioread32(tgpio->membase + offset); if (enabled) @@ -54,7 +55,7 @@ static int timbgpio_update_bit(struct gpio_chip *gpio, unsigned index, reg &= ~(1 << index); iowrite32(reg, tgpio->membase + offset); - spin_unlock(&tgpio->lock); + spin_unlock_irqrestore(&tgpio->lock, flags); return 0; } diff --git a/drivers/gpio/gpio-vf610.c b/drivers/gpio/gpio-vf610.c index edb28af7ba3b0..c3014f5f0faad 100644 --- a/drivers/gpio/gpio-vf610.c +++ b/drivers/gpio/gpio-vf610.c @@ -127,14 +127,14 @@ static int vf610_gpio_direction_output(struct gpio_chip *chip, unsigned gpio, unsigned long mask = BIT(gpio); u32 val; + vf610_gpio_set(chip, gpio, value); + 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); - return pinctrl_gpio_direction_output(chip->base + gpio); } diff --git a/drivers/gpio/gpiolib-sysfs.c b/drivers/gpio/gpiolib-sysfs.c index 44c1ad51b3fe9..95bd1a4a08d11 100644 --- a/drivers/gpio/gpiolib-sysfs.c +++ b/drivers/gpio/gpiolib-sysfs.c @@ -480,14 +480,17 @@ static ssize_t export_store(struct class *class, goto done; status = gpiod_set_transitory(desc, false); - if (!status) { - status = gpiod_export(desc, true); - if (status < 0) - gpiod_free(desc); - else - set_bit(FLAG_SYSFS, &desc->flags); + if (status) { + gpiod_free(desc); + goto done; } + status = gpiod_export(desc, true); + if (status < 0) + gpiod_free(desc); + else + set_bit(FLAG_SYSFS, &desc->flags); + done: if (status) pr_debug("%s: status %d\n", __func__, status); diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h index d90da384d1851..1f1e7966beb51 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h @@ -1285,6 +1285,7 @@ int amdgpu_device_gpu_recover(struct amdgpu_device *adev, void amdgpu_device_pci_config_reset(struct amdgpu_device *adev); int amdgpu_device_pci_reset(struct amdgpu_device *adev); bool amdgpu_device_need_post(struct amdgpu_device *adev); +bool amdgpu_device_pcie_dynamic_switching_supported(void); bool amdgpu_device_should_use_aspm(struct amdgpu_device *adev); bool amdgpu_device_aspm_support_quirk(void); diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_bios.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_bios.c index 71354f505b84b..1f916adf74dd9 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_bios.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_bios.c @@ -29,6 +29,7 @@ #include "amdgpu.h" #include "atom.h" +#include #include #include #include @@ -289,6 +290,10 @@ static bool amdgpu_atrm_get_bios(struct amdgpu_device *adev) if (adev->flags & AMD_IS_APU) return false; + /* ATRM is for on-platform devices only */ + if (dev_is_removable(&adev->pdev->dev)) + return false; + while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, pdev)) != NULL) { dhandle = ACPI_HANDLE(&pdev->dev); if (!dhandle) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.c index 714178f1b6c6e..9fb8012007e2e 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.c @@ -178,6 +178,7 @@ int amdgpu_bo_list_get(struct amdgpu_fpriv *fpriv, int id, } rcu_read_unlock(); + *result = NULL; return -ENOENT; } diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c index 4b01188385b28..f293d0dfec613 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c @@ -45,7 +45,6 @@ static int amdgpu_cs_user_fence_chunk(struct amdgpu_cs_parser *p, struct drm_gem_object *gobj; struct amdgpu_bo *bo; unsigned long size; - int r; gobj = drm_gem_object_lookup(p->filp, data->handle); if (gobj == NULL) @@ -60,23 +59,14 @@ static int amdgpu_cs_user_fence_chunk(struct amdgpu_cs_parser *p, drm_gem_object_put(gobj); size = amdgpu_bo_size(bo); - if (size != PAGE_SIZE || (data->offset + 8) > size) { - r = -EINVAL; - goto error_unref; - } + if (size != PAGE_SIZE || data->offset > (size - 8)) + return -EINVAL; - if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm)) { - r = -EINVAL; - goto error_unref; - } + if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm)) + return -EINVAL; *offset = data->offset; - return 0; - -error_unref: - amdgpu_bo_unref(&bo); - return r; } static int amdgpu_cs_bo_handles_chunk(struct amdgpu_cs_parser *p, @@ -152,7 +142,7 @@ static int amdgpu_cs_parser_init(struct amdgpu_cs_parser *p, union drm_amdgpu_cs } for (i = 0; i < p->nchunks; i++) { - struct drm_amdgpu_cs_chunk __user **chunk_ptr = NULL; + struct drm_amdgpu_cs_chunk __user *chunk_ptr = NULL; struct drm_amdgpu_cs_chunk user_chunk; uint32_t __user *cdata; diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c index 348629ea0e153..beb199d13451b 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c @@ -458,6 +458,9 @@ static ssize_t amdgpu_debugfs_regs_smc_read(struct file *f, char __user *buf, ssize_t result = 0; int r; + if (!adev->smc_rreg) + return -EPERM; + if (size & 0x3 || *pos & 0x3) return -EINVAL; @@ -517,6 +520,9 @@ static ssize_t amdgpu_debugfs_regs_smc_write(struct file *f, const char __user * ssize_t result = 0; int r; + if (!adev->smc_wreg) + return -EPERM; + if (size & 0x3 || *pos & 0x3) return -EINVAL; diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c index 2b5766d3789b2..19e32f38a4c45 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c @@ -1195,6 +1195,9 @@ int amdgpu_device_resize_fb_bar(struct amdgpu_device *adev) u16 cmd; int r; + if (!IS_ENABLED(CONFIG_PHYS_ADDR_T_64BIT)) + return 0; + /* Bypass for VF */ if (amdgpu_sriov_vf(adev)) return 0; @@ -1316,6 +1319,25 @@ bool amdgpu_device_need_post(struct amdgpu_device *adev) return true; } +/* + * Intel hosts such as Raptor Lake and Sapphire Rapids don't support dynamic + * speed switching. Until we have confirmation from Intel that a specific host + * supports it, it's safer that we keep it disabled for all. + * + * https://edc.intel.com/content/www/us/en/design/products/platforms/details/raptor-lake-s/13th-generation-core-processors-datasheet-volume-1-of-2/005/pci-express-support/ + * https://gitlab.freedesktop.org/drm/amd/-/issues/2663 + */ +bool amdgpu_device_pcie_dynamic_switching_supported(void) +{ +#if IS_ENABLED(CONFIG_X86) + struct cpuinfo_x86 *c = &cpu_data(0); + + if (c->x86_vendor == X86_VENDOR_INTEL) + return false; +#endif + return true; +} + /** * amdgpu_device_should_use_aspm - check if the device should program ASPM * @@ -2222,7 +2244,7 @@ static int amdgpu_device_ip_early_init(struct amdgpu_device *adev) adev->flags |= AMD_IS_PX; if (!(adev->flags & AMD_IS_APU)) { - parent = pci_upstream_bridge(adev->pdev); + parent = pcie_find_root_port(adev->pdev); adev->has_pr3 = parent ? pci_pr3_present(parent) : false; } @@ -5094,7 +5116,8 @@ int amdgpu_device_gpu_recover(struct amdgpu_device *adev, * Flush RAM to disk so that after reboot * the user can read log and see why the system rebooted. */ - if (need_emergency_restart && amdgpu_ras_get_context(adev)->reboot) { + if (need_emergency_restart && amdgpu_ras_get_context(adev) && + amdgpu_ras_get_context(adev)->reboot) { DRM_WARN("Emergency reboot."); ksys_sync_helper(); diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c index d2286a83e302f..11413b3e80c5b 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c @@ -80,7 +80,7 @@ static void amdgpu_display_flip_work_func(struct work_struct *__work) struct drm_crtc *crtc = &amdgpu_crtc->base; unsigned long flags; - unsigned i; + unsigned int i; int vpos, hpos; if (amdgpu_display_flip_handle_fence(work, &work->excl)) @@ -159,7 +159,7 @@ int amdgpu_display_crtc_page_flip_target(struct drm_crtc *crtc, u64 tiling_flags; int i, r; - work = kzalloc(sizeof *work, GFP_KERNEL); + work = kzalloc(sizeof(*work), GFP_KERNEL); if (work == NULL) return -ENOMEM; @@ -290,18 +290,17 @@ int amdgpu_display_crtc_set_config(struct drm_mode_set *set, adev = drm_to_adev(dev); /* if we have active crtcs and we don't have a power ref, - take the current one */ + * take the current one + */ if (active && !adev->have_disp_power_ref) { adev->have_disp_power_ref = true; return ret; } - /* if we have no active crtcs, then drop the power ref - we got before */ - if (!active && adev->have_disp_power_ref) { - pm_runtime_put_autosuspend(dev->dev); + /* if we have no active crtcs, then go to + * drop the power ref we got before + */ + if (!active && adev->have_disp_power_ref) adev->have_disp_power_ref = false; - } - out: /* drop the power reference we got coming in here */ pm_runtime_put_autosuspend(dev->dev); @@ -465,11 +464,10 @@ bool amdgpu_display_ddc_probe(struct amdgpu_connector *amdgpu_connector, if (amdgpu_connector->router.ddc_valid) amdgpu_i2c_router_select_ddc_port(amdgpu_connector); - if (use_aux) { + if (use_aux) ret = i2c_transfer(&amdgpu_connector->ddc_bus->aux.ddc, msgs, 2); - } else { + else ret = i2c_transfer(&amdgpu_connector->ddc_bus->adapter, msgs, 2); - } if (ret != 2) /* Couldn't find an accessible DDC on this connector */ @@ -478,10 +476,12 @@ bool amdgpu_display_ddc_probe(struct amdgpu_connector *amdgpu_connector, * EDID header starts with: * 0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00. * Only the first 6 bytes must be valid as - * drm_edid_block_valid() can fix the last 2 bytes */ + * drm_edid_block_valid() can fix the last 2 bytes + */ if (drm_edid_header_is_valid(buf) < 6) { /* Couldn't find an accessible EDID on this - * connector */ + * connector + */ return false; } return true; @@ -1189,8 +1189,10 @@ amdgpu_display_user_framebuffer_create(struct drm_device *dev, obj = drm_gem_object_lookup(file_priv, mode_cmd->handles[0]); if (obj == NULL) { - drm_dbg_kms(dev, "No GEM object associated to handle 0x%08X, " - "can't create framebuffer\n", mode_cmd->handles[0]); + drm_dbg_kms(dev, + "No GEM object associated to handle 0x%08X, can't create framebuffer\n", + mode_cmd->handles[0]); + return ERR_PTR(-ENOENT); } @@ -1384,6 +1386,7 @@ bool amdgpu_display_crtc_scaling_mode_fixup(struct drm_crtc *crtc, } if (amdgpu_crtc->rmx_type != RMX_OFF) { fixed20_12 a, b; + a.full = dfixed_const(src_v); b.full = dfixed_const(dst_v); amdgpu_crtc->vsc.full = dfixed_div(a, b); @@ -1403,7 +1406,7 @@ bool amdgpu_display_crtc_scaling_mode_fixup(struct drm_crtc *crtc, * * \param dev Device to query. * \param pipe Crtc to query. - * \param flags Flags from caller (DRM_CALLED_FROM_VBLIRQ or 0). + * \param flags from caller (DRM_CALLED_FROM_VBLIRQ or 0). * For driver internal use only also supports these flags: * * USE_REAL_VBLANKSTART to use the real start of vblank instead @@ -1479,8 +1482,8 @@ int amdgpu_display_get_crtc_scanoutpos(struct drm_device *dev, /* Called from driver internal vblank counter query code? */ if (flags & GET_DISTANCE_TO_VBLANKSTART) { - /* Caller wants distance from real vbl_start in *hpos */ - *hpos = *vpos - vbl_start; + /* Caller wants distance from real vbl_start in *hpos */ + *hpos = *vpos - vbl_start; } /* Fudge vblank to start a few scanlines earlier to handle the @@ -1502,7 +1505,7 @@ int amdgpu_display_get_crtc_scanoutpos(struct drm_device *dev, /* In vblank? */ if (in_vbl) - ret |= DRM_SCANOUTPOS_IN_VBLANK; + ret |= DRM_SCANOUTPOS_IN_VBLANK; /* Called from driver internal vblank counter query code? */ if (flags & GET_DISTANCE_TO_VBLANKSTART) { @@ -1593,6 +1596,7 @@ int amdgpu_display_suspend_helper(struct amdgpu_device *adev) if (amdgpu_crtc->cursor_bo && !adev->enable_virtual_display) { struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo); + r = amdgpu_bo_reserve(aobj, true); if (r == 0) { amdgpu_bo_unpin(aobj); @@ -1600,9 +1604,9 @@ int amdgpu_display_suspend_helper(struct amdgpu_device *adev) } } - if (fb == NULL || fb->obj[0] == NULL) { + if (!fb || !fb->obj[0]) continue; - } + robj = gem_to_amdgpu_bo(fb->obj[0]); /* don't unpin kernel fb objects */ if (!amdgpu_fbdev_robj_is_fb(adev, robj)) { @@ -1630,6 +1634,7 @@ int amdgpu_display_resume_helper(struct amdgpu_device *adev) if (amdgpu_crtc->cursor_bo && !adev->enable_virtual_display) { struct amdgpu_bo *aobj = gem_to_amdgpu_bo(amdgpu_crtc->cursor_bo); + r = amdgpu_bo_reserve(aobj, true); if (r == 0) { r = amdgpu_bo_pin(aobj, AMDGPU_GEM_DOMAIN_VRAM); diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c index 9d436865b908d..c76005a4a1c0b 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c @@ -38,6 +38,7 @@ #include #include #include +#include #include "amdgpu.h" #include "amdgpu_irq.h" @@ -2019,7 +2020,8 @@ static int amdgpu_pci_probe(struct pci_dev *pdev, * however, SME requires an indirect IOMMU mapping because the encryption * bit is beyond the DMA mask of the chip. */ - if (mem_encrypt_active() && ((flags & AMD_ASIC_MASK) == CHIP_RAVEN)) { + if (cc_platform_has(CC_ATTR_MEM_ENCRYPT) && + ((flags & AMD_ASIC_MASK) == CHIP_RAVEN)) { dev_info(&pdev->dev, "SME is not compatible with RAVEN\n"); return -ENOTSUPP; diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c index 43e30b9a2e024..70d49b998ee9e 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c @@ -582,6 +582,7 @@ int amdgpu_info_ioctl(struct drm_device *dev, void *data, struct drm_file *filp) crtc = (struct drm_crtc *)minfo->crtcs[i]; if (crtc && crtc->base.id == info->mode_crtc.id) { struct amdgpu_crtc *amdgpu_crtc = to_amdgpu_crtc(crtc); + ui32 = amdgpu_crtc->crtc_id; found = 1; break; @@ -600,7 +601,7 @@ int amdgpu_info_ioctl(struct drm_device *dev, void *data, struct drm_file *filp) if (ret) return ret; - ret = copy_to_user(out, &ip, min((size_t)size, sizeof(ip))); + ret = copy_to_user(out, &ip, min_t(size_t, size, sizeof(ip))); return ret ? -EFAULT : 0; } case AMDGPU_INFO_HW_IP_COUNT: { @@ -748,17 +749,18 @@ int amdgpu_info_ioctl(struct drm_device *dev, void *data, struct drm_file *filp) ? -EFAULT : 0; } case AMDGPU_INFO_READ_MMR_REG: { - unsigned n, alloc_size; + unsigned int n, alloc_size; uint32_t *regs; - unsigned se_num = (info->read_mmr_reg.instance >> + unsigned int se_num = (info->read_mmr_reg.instance >> AMDGPU_INFO_MMR_SE_INDEX_SHIFT) & AMDGPU_INFO_MMR_SE_INDEX_MASK; - unsigned sh_num = (info->read_mmr_reg.instance >> + unsigned int sh_num = (info->read_mmr_reg.instance >> AMDGPU_INFO_MMR_SH_INDEX_SHIFT) & AMDGPU_INFO_MMR_SH_INDEX_MASK; /* set full masks if the userspace set all bits - * in the bitfields */ + * in the bitfields + */ if (se_num == AMDGPU_INFO_MMR_SE_INDEX_MASK) se_num = 0xffffffff; else if (se_num >= AMDGPU_GFX_MAX_SE) @@ -882,7 +884,7 @@ int amdgpu_info_ioctl(struct drm_device *dev, void *data, struct drm_file *filp) return ret; } case AMDGPU_INFO_VCE_CLOCK_TABLE: { - unsigned i; + unsigned int i; struct drm_amdgpu_info_vce_clock_table vce_clk_table = {}; struct amd_vce_state *vce_state; @@ -924,12 +926,17 @@ int amdgpu_info_ioctl(struct drm_device *dev, void *data, struct drm_file *filp) struct atom_context *atom_context; atom_context = adev->mode_info.atom_context; - memcpy(vbios_info.name, atom_context->name, sizeof(atom_context->name)); - memcpy(vbios_info.vbios_pn, atom_context->vbios_pn, sizeof(atom_context->vbios_pn)); - vbios_info.version = atom_context->version; - memcpy(vbios_info.vbios_ver_str, atom_context->vbios_ver_str, - sizeof(atom_context->vbios_ver_str)); - memcpy(vbios_info.date, atom_context->date, sizeof(atom_context->date)); + if (atom_context) { + memcpy(vbios_info.name, atom_context->name, + sizeof(atom_context->name)); + memcpy(vbios_info.vbios_pn, atom_context->vbios_pn, + sizeof(atom_context->vbios_pn)); + vbios_info.version = atom_context->version; + memcpy(vbios_info.vbios_ver_str, atom_context->vbios_ver_str, + sizeof(atom_context->vbios_ver_str)); + memcpy(vbios_info.date, atom_context->date, + sizeof(atom_context->date)); + } return copy_to_user(out, &vbios_info, min((size_t)size, sizeof(vbios_info))) ? -EFAULT : 0; diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.h index d8ef8a53a562d..dc5b889828d9c 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.h @@ -221,7 +221,7 @@ static inline bool amdgpu_bo_in_cpu_visible_vram(struct amdgpu_bo *bo) struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev); struct amdgpu_res_cursor cursor; - if (bo->tbo.resource->mem_type != TTM_PL_VRAM) + if (!bo->tbo.resource || bo->tbo.resource->mem_type != TTM_PL_VRAM) return false; amdgpu_res_first(bo->tbo.resource, 0, amdgpu_bo_size(bo), &cursor); diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c index 96a8fd0ca1df3..439ea256ed252 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c @@ -1192,7 +1192,8 @@ static void amdgpu_ras_sysfs_remove_bad_page_node(struct amdgpu_device *adev) { struct amdgpu_ras *con = amdgpu_ras_get_context(adev); - sysfs_remove_file_from_group(&adev->dev->kobj, + if (adev->dev->kobj.sd) + sysfs_remove_file_from_group(&adev->dev->kobj, &con->badpages_attr.attr, RAS_FS_NAME); } @@ -1209,7 +1210,8 @@ static int amdgpu_ras_sysfs_remove_feature_node(struct amdgpu_device *adev) .attrs = attrs, }; - sysfs_remove_group(&adev->dev->kobj, &group); + if (adev->dev->kobj.sd) + sysfs_remove_group(&adev->dev->kobj, &group); return 0; } @@ -1257,7 +1259,8 @@ int amdgpu_ras_sysfs_remove(struct amdgpu_device *adev, if (!obj || !obj->attr_inuse) return -EINVAL; - sysfs_remove_file_from_group(&adev->dev->kobj, + if (adev->dev->kobj.sd) + sysfs_remove_file_from_group(&adev->dev->kobj, &obj->sysfs_attr.attr, RAS_FS_NAME); obj->attr_inuse = 0; diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_vkms.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_vkms.c index 4e8274de8fc0c..083f9c637a82e 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_vkms.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_vkms.c @@ -238,6 +238,8 @@ static int amdgpu_vkms_conn_get_modes(struct drm_connector *connector) for (i = 0; i < ARRAY_SIZE(common_modes); i++) { mode = drm_cvt_mode(dev, common_modes[i].w, common_modes[i].h, 60, false, false, false); + if (!mode) + continue; drm_mode_probed_add(connector, mode); } diff --git a/drivers/gpu/drm/amd/amdgpu/cik.c b/drivers/gpu/drm/amd/amdgpu/cik.c index de6d10390ab2f..9be6da37032a7 100644 --- a/drivers/gpu/drm/amd/amdgpu/cik.c +++ b/drivers/gpu/drm/amd/amdgpu/cik.c @@ -1574,17 +1574,8 @@ static void cik_pcie_gen3_enable(struct amdgpu_device *adev) u16 bridge_cfg2, gpu_cfg2; u32 max_lw, current_lw, tmp; - pcie_capability_read_word(root, PCI_EXP_LNKCTL, - &bridge_cfg); - pcie_capability_read_word(adev->pdev, PCI_EXP_LNKCTL, - &gpu_cfg); - - tmp16 = bridge_cfg | PCI_EXP_LNKCTL_HAWD; - pcie_capability_write_word(root, PCI_EXP_LNKCTL, tmp16); - - tmp16 = gpu_cfg | PCI_EXP_LNKCTL_HAWD; - pcie_capability_write_word(adev->pdev, PCI_EXP_LNKCTL, - tmp16); + pcie_capability_set_word(root, PCI_EXP_LNKCTL, PCI_EXP_LNKCTL_HAWD); + pcie_capability_set_word(adev->pdev, PCI_EXP_LNKCTL, PCI_EXP_LNKCTL_HAWD); tmp = RREG32_PCIE(ixPCIE_LC_STATUS1); max_lw = (tmp & PCIE_LC_STATUS1__LC_DETECTED_LINK_WIDTH_MASK) >> @@ -1637,21 +1628,14 @@ static void cik_pcie_gen3_enable(struct amdgpu_device *adev) msleep(100); /* linkctl */ - pcie_capability_read_word(root, PCI_EXP_LNKCTL, - &tmp16); - tmp16 &= ~PCI_EXP_LNKCTL_HAWD; - tmp16 |= (bridge_cfg & PCI_EXP_LNKCTL_HAWD); - pcie_capability_write_word(root, PCI_EXP_LNKCTL, - tmp16); - - pcie_capability_read_word(adev->pdev, - PCI_EXP_LNKCTL, - &tmp16); - tmp16 &= ~PCI_EXP_LNKCTL_HAWD; - tmp16 |= (gpu_cfg & PCI_EXP_LNKCTL_HAWD); - pcie_capability_write_word(adev->pdev, - PCI_EXP_LNKCTL, - tmp16); + pcie_capability_clear_and_set_word(root, PCI_EXP_LNKCTL, + PCI_EXP_LNKCTL_HAWD, + bridge_cfg & + PCI_EXP_LNKCTL_HAWD); + pcie_capability_clear_and_set_word(adev->pdev, PCI_EXP_LNKCTL, + PCI_EXP_LNKCTL_HAWD, + gpu_cfg & + PCI_EXP_LNKCTL_HAWD); /* linkctl2 */ pcie_capability_read_word(root, PCI_EXP_LNKCTL2, diff --git a/drivers/gpu/drm/amd/amdgpu/psp_v13_0.c b/drivers/gpu/drm/amd/amdgpu/psp_v13_0.c index 47a500f64db20..bcf356df1ef33 100644 --- a/drivers/gpu/drm/amd/amdgpu/psp_v13_0.c +++ b/drivers/gpu/drm/amd/amdgpu/psp_v13_0.c @@ -101,14 +101,15 @@ static int psp_v13_0_wait_for_bootloader(struct psp_context *psp) int ret; int retry_loop; + /* Wait for bootloader to signify that it is ready having bit 31 of + * C2PMSG_35 set to 1. All other bits are expected to be cleared. + * If there is an error in processing command, bits[7:0] will be set. + * This is applicable for PSP v13.0.6 and newer. + */ for (retry_loop = 0; retry_loop < 10; retry_loop++) { - /* Wait for bootloader to signify that is - ready having bit 31 of C2PMSG_35 set to 1 */ - ret = psp_wait_for(psp, - SOC15_REG_OFFSET(MP0, 0, regMP0_SMN_C2PMSG_35), - 0x80000000, - 0x80000000, - false); + ret = psp_wait_for( + psp, SOC15_REG_OFFSET(MP0, 0, regMP0_SMN_C2PMSG_35), + 0x80000000, 0xffffffff, false); if (ret == 0) return 0; diff --git a/drivers/gpu/drm/amd/amdgpu/si.c b/drivers/gpu/drm/amd/amdgpu/si.c index 7f99e130acd06..fd34c2100bd96 100644 --- a/drivers/gpu/drm/amd/amdgpu/si.c +++ b/drivers/gpu/drm/amd/amdgpu/si.c @@ -2276,17 +2276,8 @@ static void si_pcie_gen3_enable(struct amdgpu_device *adev) u16 bridge_cfg2, gpu_cfg2; u32 max_lw, current_lw, tmp; - pcie_capability_read_word(root, PCI_EXP_LNKCTL, - &bridge_cfg); - pcie_capability_read_word(adev->pdev, PCI_EXP_LNKCTL, - &gpu_cfg); - - tmp16 = bridge_cfg | PCI_EXP_LNKCTL_HAWD; - pcie_capability_write_word(root, PCI_EXP_LNKCTL, tmp16); - - tmp16 = gpu_cfg | PCI_EXP_LNKCTL_HAWD; - pcie_capability_write_word(adev->pdev, PCI_EXP_LNKCTL, - tmp16); + pcie_capability_set_word(root, PCI_EXP_LNKCTL, PCI_EXP_LNKCTL_HAWD); + pcie_capability_set_word(adev->pdev, PCI_EXP_LNKCTL, PCI_EXP_LNKCTL_HAWD); tmp = RREG32_PCIE(PCIE_LC_STATUS1); max_lw = (tmp & LC_DETECTED_LINK_WIDTH_MASK) >> LC_DETECTED_LINK_WIDTH_SHIFT; @@ -2331,21 +2322,14 @@ static void si_pcie_gen3_enable(struct amdgpu_device *adev) mdelay(100); - pcie_capability_read_word(root, PCI_EXP_LNKCTL, - &tmp16); - tmp16 &= ~PCI_EXP_LNKCTL_HAWD; - tmp16 |= (bridge_cfg & PCI_EXP_LNKCTL_HAWD); - pcie_capability_write_word(root, PCI_EXP_LNKCTL, - tmp16); - - pcie_capability_read_word(adev->pdev, - PCI_EXP_LNKCTL, - &tmp16); - tmp16 &= ~PCI_EXP_LNKCTL_HAWD; - tmp16 |= (gpu_cfg & PCI_EXP_LNKCTL_HAWD); - pcie_capability_write_word(adev->pdev, - PCI_EXP_LNKCTL, - tmp16); + pcie_capability_clear_and_set_word(root, PCI_EXP_LNKCTL, + PCI_EXP_LNKCTL_HAWD, + bridge_cfg & + PCI_EXP_LNKCTL_HAWD); + pcie_capability_clear_and_set_word(adev->pdev, PCI_EXP_LNKCTL, + PCI_EXP_LNKCTL_HAWD, + gpu_cfg & + PCI_EXP_LNKCTL_HAWD); pcie_capability_read_word(root, PCI_EXP_LNKCTL2, &tmp16); diff --git a/drivers/gpu/drm/amd/amdgpu/vi.c b/drivers/gpu/drm/amd/amdgpu/vi.c index b9555ba6d32fb..6d64d603a97a0 100644 --- a/drivers/gpu/drm/amd/amdgpu/vi.c +++ b/drivers/gpu/drm/amd/amdgpu/vi.c @@ -1147,7 +1147,7 @@ static void vi_program_aspm(struct amdgpu_device *adev) bool bL1SS = false; bool bClkReqSupport = true; - if (!amdgpu_device_should_use_aspm(adev) || !amdgpu_device_aspm_support_quirk()) + if (!amdgpu_device_should_use_aspm(adev) || !amdgpu_device_pcie_dynamic_switching_supported()) return; if (adev->flags & AMD_IS_APU || diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_svm.c b/drivers/gpu/drm/amd/amdkfd/kfd_svm.c index 22a70aaccf13c..2cbe8ea16f24a 100644 --- a/drivers/gpu/drm/amd/amdkfd/kfd_svm.c +++ b/drivers/gpu/drm/amd/amdkfd/kfd_svm.c @@ -433,11 +433,11 @@ svm_range_validate_svm_bo(struct amdgpu_device *adev, struct svm_range *prange) /* We need a new svm_bo. Spin-loop to wait for concurrent * svm_range_bo_release to finish removing this range from - * its range list. After this, it is safe to reuse the - * svm_bo pointer and svm_bo_list head. + * its range list and set prange->svm_bo to null. After this, + * it is safe to reuse the svm_bo pointer and svm_bo_list head. */ - while (!list_empty_careful(&prange->svm_bo_list)) - ; + while (!list_empty_careful(&prange->svm_bo_list) || prange->svm_bo) + cond_resched(); return false; } @@ -550,8 +550,15 @@ svm_range_vram_node_new(struct amdgpu_device *adev, struct svm_range *prange, void svm_range_vram_node_free(struct svm_range *prange) { - svm_range_bo_unref(prange->svm_bo); - prange->ttm_res = NULL; + /* serialize prange->svm_bo unref */ + mutex_lock(&prange->lock); + /* prange->svm_bo has not been unref */ + if (prange->ttm_res) { + prange->ttm_res = NULL; + mutex_unlock(&prange->lock); + svm_range_bo_unref(prange->svm_bo); + } else + mutex_unlock(&prange->lock); } struct amdgpu_device * @@ -691,7 +698,7 @@ svm_range_apply_attrs(struct kfd_process *p, struct svm_range *prange, prange->flags &= ~attrs[i].value; break; case KFD_IOCTL_SVM_ATTR_GRANULARITY: - prange->granularity = attrs[i].value; + prange->granularity = min_t(uint32_t, attrs[i].value, 0x3F); break; default: WARN_ONCE(1, "svm_range_check_attrs wasn't called?"); diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c index 2f467db329cce..b71abbf9ca09d 100644 --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c @@ -1244,11 +1244,15 @@ static void mmhub_read_system_context(struct amdgpu_device *adev, struct dc_phy_ agp_top = adev->gmc.agp_end >> 24; - page_table_start.high_part = (u32)(adev->gmc.gart_start >> 44) & 0xF; - page_table_start.low_part = (u32)(adev->gmc.gart_start >> 12); - page_table_end.high_part = (u32)(adev->gmc.gart_end >> 44) & 0xF; - page_table_end.low_part = (u32)(adev->gmc.gart_end >> 12); - page_table_base.high_part = upper_32_bits(pt_base) & 0xF; + page_table_start.high_part = upper_32_bits(adev->gmc.gart_start >> + AMDGPU_GPU_PAGE_SHIFT); + page_table_start.low_part = lower_32_bits(adev->gmc.gart_start >> + AMDGPU_GPU_PAGE_SHIFT); + page_table_end.high_part = upper_32_bits(adev->gmc.gart_end >> + AMDGPU_GPU_PAGE_SHIFT); + page_table_end.low_part = lower_32_bits(adev->gmc.gart_end >> + AMDGPU_GPU_PAGE_SHIFT); + page_table_base.high_part = upper_32_bits(pt_base); page_table_base.low_part = lower_32_bits(pt_base); pa_config->system_aperture.start_addr = (uint64_t)logical_addr_low << 18; @@ -1958,7 +1962,7 @@ static int dm_dmub_sw_init(struct amdgpu_device *adev) struct dmub_srv_create_params create_params; struct dmub_srv_region_params region_params; struct dmub_srv_region_info region_info; - struct dmub_srv_fb_params fb_params; + struct dmub_srv_memory_params memory_params; struct dmub_srv_fb_info *fb_info; struct dmub_srv *dmub_srv; const struct dmcub_firmware_header_v1_0 *hdr; @@ -2068,6 +2072,7 @@ static int dm_dmub_sw_init(struct amdgpu_device *adev) adev->dm.dmub_fw->data + le32_to_cpu(hdr->header.ucode_array_offset_bytes) + PSP_HEADER_BYTES; + region_params.is_mailbox_in_inbox = false; status = dmub_srv_calc_region_info(dmub_srv, ®ion_params, ®ion_info); @@ -2089,10 +2094,10 @@ static int dm_dmub_sw_init(struct amdgpu_device *adev) return r; /* Rebase the regions on the framebuffer address. */ - memset(&fb_params, 0, sizeof(fb_params)); - fb_params.cpu_addr = adev->dm.dmub_bo_cpu_addr; - fb_params.gpu_addr = adev->dm.dmub_bo_gpu_addr; - fb_params.region_info = ®ion_info; + memset(&memory_params, 0, sizeof(memory_params)); + memory_params.cpu_fb_addr = adev->dm.dmub_bo_cpu_addr; + memory_params.gpu_fb_addr = adev->dm.dmub_bo_gpu_addr; + memory_params.region_info = ®ion_info; adev->dm.dmub_fb_info = kzalloc(sizeof(*adev->dm.dmub_fb_info), GFP_KERNEL); @@ -2104,7 +2109,7 @@ static int dm_dmub_sw_init(struct amdgpu_device *adev) return -ENOMEM; } - status = dmub_srv_calc_fb_info(dmub_srv, &fb_params, fb_info); + status = dmub_srv_calc_mem_info(dmub_srv, &memory_params, fb_info); if (status != DMUB_STATUS_OK) { DRM_ERROR("Error calculating DMUB FB info: %d\n", status); return -EINVAL; @@ -8856,6 +8861,13 @@ static void handle_cursor_update(struct drm_plane *plane, attributes.rotation_angle = 0; attributes.attribute_flags.value = 0; + /* Enable cursor degamma ROM on DCN3+ for implicit sRGB degamma in DRM + * legacy gamma setup. + */ + if (crtc_state->cm_is_degamma_srgb && + adev->dm.dc->caps.color.dpp.gamma_corr) + attributes.attribute_flags.bits.ENABLE_CURSOR_DEGAMMA = 1; + attributes.pitch = afb->base.pitches[0] / afb->base.format->cpp[0]; if (crtc_state->stream) { diff --git a/drivers/gpu/drm/amd/display/dc/core/dc.c b/drivers/gpu/drm/amd/display/dc/core/dc.c index fced891203751..4fc6de1219cf8 100644 --- a/drivers/gpu/drm/amd/display/dc/core/dc.c +++ b/drivers/gpu/drm/amd/display/dc/core/dc.c @@ -978,7 +978,8 @@ static bool dc_construct(struct dc *dc, /* set i2c speed if not done by the respective dcnxxx__resource.c */ if (dc->caps.i2c_speed_in_khz_hdcp == 0) dc->caps.i2c_speed_in_khz_hdcp = dc->caps.i2c_speed_in_khz; - + if (dc->caps.max_optimizable_video_width == 0) + dc->caps.max_optimizable_video_width = 5120; dc->clk_mgr = dc_clk_mgr_create(dc->ctx, dc->res_pool->pp_smu, dc->res_pool->dccg); if (!dc->clk_mgr) goto fail; @@ -1118,6 +1119,9 @@ static void disable_vbios_mode_if_required( if (stream == NULL) continue; + if (stream->apply_seamless_boot_optimization) + continue; + // only looking for first odm pipe if (pipe->prev_odm_pipe) continue; @@ -2145,6 +2149,7 @@ static enum surface_update_type get_plane_info_update_type(const struct dc_surfa } static enum surface_update_type get_scaling_info_update_type( + const struct dc *dc, const struct dc_surface_update *u) { union surface_update_flags *update_flags = &u->surface->update_flags; @@ -2179,6 +2184,12 @@ static enum surface_update_type get_scaling_info_update_type( update_flags->bits.clock_change = 1; } + if (u->scaling_info->src_rect.width > dc->caps.max_optimizable_video_width && + (u->scaling_info->clip_rect.width > u->surface->clip_rect.width || + u->scaling_info->clip_rect.height > u->surface->clip_rect.height)) + /* Changing clip size of a large surface may result in MPC slice count change */ + update_flags->bits.bandwidth_change = 1; + if (u->scaling_info->src_rect.x != u->surface->src_rect.x || u->scaling_info->src_rect.y != u->surface->src_rect.y || u->scaling_info->clip_rect.x != u->surface->clip_rect.x @@ -2216,7 +2227,7 @@ static enum surface_update_type det_surface_update(const struct dc *dc, type = get_plane_info_update_type(u); elevate_update_type(&overall_type, type); - type = get_scaling_info_update_type(u); + type = get_scaling_info_update_type(dc, u); elevate_update_type(&overall_type, type); if (u->flip_addr) diff --git a/drivers/gpu/drm/amd/display/dc/core/dc_stream.c b/drivers/gpu/drm/amd/display/dc/core/dc_stream.c index f0f54f4d3d9bc..5dd57cf170f51 100644 --- a/drivers/gpu/drm/amd/display/dc/core/dc_stream.c +++ b/drivers/gpu/drm/amd/display/dc/core/dc_stream.c @@ -562,7 +562,7 @@ uint32_t dc_stream_get_vblank_counter(const struct dc_stream_state *stream) for (i = 0; i < MAX_PIPES; i++) { struct timing_generator *tg = res_ctx->pipe_ctx[i].stream_res.tg; - if (res_ctx->pipe_ctx[i].stream != stream) + if (res_ctx->pipe_ctx[i].stream != stream || !tg) continue; return tg->funcs->get_frame_count(tg); @@ -621,7 +621,7 @@ bool dc_stream_get_scanoutpos(const struct dc_stream_state *stream, for (i = 0; i < MAX_PIPES; i++) { struct timing_generator *tg = res_ctx->pipe_ctx[i].stream_res.tg; - if (res_ctx->pipe_ctx[i].stream != stream) + if (res_ctx->pipe_ctx[i].stream != stream || !tg) continue; tg->funcs->get_scanoutpos(tg, diff --git a/drivers/gpu/drm/amd/display/dc/dc.h b/drivers/gpu/drm/amd/display/dc/dc.h index 957e512a4a6b1..4801e603a2526 100644 --- a/drivers/gpu/drm/amd/display/dc/dc.h +++ b/drivers/gpu/drm/amd/display/dc/dc.h @@ -166,6 +166,11 @@ struct dc_caps { uint32_t dmdata_alloc_size; unsigned int max_cursor_size; unsigned int max_video_width; + /* + * max video plane width that can be safely assumed to be always + * supported by single DPP pipe. + */ + unsigned int max_optimizable_video_width; unsigned int min_horizontal_blanking_period; int linear_pitch_alignment; bool dcc_const_color; diff --git a/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c b/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c index 8fef01945c413..42a38ae463fec 100644 --- a/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c +++ b/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c @@ -982,7 +982,9 @@ void dce110_edp_backlight_control( return; } - if (link->panel_cntl) { + if (link->panel_cntl && !(link->dpcd_sink_ext_caps.bits.oled || + link->dpcd_sink_ext_caps.bits.hdr_aux_backlight_control == 1 || + link->dpcd_sink_ext_caps.bits.sdr_aux_backlight_control == 1)) { bool is_backlight_on = link->panel_cntl->funcs->is_panel_backlight_on(link->panel_cntl); if ((enable && is_backlight_on) || (!enable && !is_backlight_on)) { @@ -1757,10 +1759,13 @@ void dce110_enable_accelerated_mode(struct dc *dc, struct dc_state *context) hws->funcs.edp_backlight_control(edp_link_with_sink, false); } /*resume from S3, no vbios posting, no need to power down again*/ + clk_mgr_exit_optimized_pwr_state(dc, dc->clk_mgr); + power_down_all_hw_blocks(dc); disable_vga_and_power_gate_all_controllers(dc); if (edp_link_with_sink && !keep_edp_vdd_on) dc->hwss.edp_power_control(edp_link_with_sink, false); + clk_mgr_optimize_pwr_state(dc, dc->clk_mgr); } bios_set_scratch_acc_mode_change(dc->ctx->dc_bios, 1); } diff --git a/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_mpc.c b/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_mpc.c index 8192f1967e924..d3681db36c30b 100644 --- a/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_mpc.c +++ b/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_mpc.c @@ -207,8 +207,9 @@ struct mpcc *mpc1_insert_plane( /* check insert_above_mpcc exist in tree->opp_list */ struct mpcc *temp_mpcc = tree->opp_list; - while (temp_mpcc && temp_mpcc->mpcc_bot != insert_above_mpcc) - temp_mpcc = temp_mpcc->mpcc_bot; + if (temp_mpcc != insert_above_mpcc) + while (temp_mpcc && temp_mpcc->mpcc_bot != insert_above_mpcc) + temp_mpcc = temp_mpcc->mpcc_bot; if (temp_mpcc == NULL) return NULL; } diff --git a/drivers/gpu/drm/amd/display/dc/dml/dcn31/display_mode_vba_31.c b/drivers/gpu/drm/amd/display/dc/dml/dcn31/display_mode_vba_31.c index aa0507e017926..c5e0de4f77b31 100644 --- a/drivers/gpu/drm/amd/display/dc/dml/dcn31/display_mode_vba_31.c +++ b/drivers/gpu/drm/amd/display/dc/dml/dcn31/display_mode_vba_31.c @@ -4162,7 +4162,9 @@ void dml31_ModeSupportAndSystemConfigurationFull(struct display_mode_lib *mode_l } if (v->OutputFormat[k] == dm_420 && v->HActive[k] > DCN31_MAX_FMT_420_BUFFER_WIDTH && v->ODMCombineEnablePerState[i][k] != dm_odm_combine_mode_4to1) { - if (v->HActive[k] / 2 > DCN31_MAX_FMT_420_BUFFER_WIDTH) { + if (v->Output[k] == dm_hdmi) { + FMTBufferExceeded = true; + } else if (v->HActive[k] / 2 > DCN31_MAX_FMT_420_BUFFER_WIDTH) { v->ODMCombineEnablePerState[i][k] = dm_odm_combine_mode_4to1; v->PlaneRequiredDISPCLK = v->PlaneRequiredDISPCLKWithODMCombine4To1; diff --git a/drivers/gpu/drm/amd/display/dmub/dmub_srv.h b/drivers/gpu/drm/amd/display/dmub/dmub_srv.h index 827fa35c4ba15..337a08da232d1 100644 --- a/drivers/gpu/drm/amd/display/dmub/dmub_srv.h +++ b/drivers/gpu/drm/amd/display/dmub/dmub_srv.h @@ -168,6 +168,7 @@ struct dmub_srv_region_params { uint32_t vbios_size; const uint8_t *fw_inst_const; const uint8_t *fw_bss_data; + bool is_mailbox_in_inbox; }; /** @@ -187,20 +188,25 @@ struct dmub_srv_region_params { */ struct dmub_srv_region_info { uint32_t fb_size; + uint32_t inbox_size; uint8_t num_regions; struct dmub_region regions[DMUB_WINDOW_TOTAL]; }; /** - * struct dmub_srv_fb_params - parameters used for driver fb setup + * struct dmub_srv_memory_params - parameters used for driver fb setup * @region_info: region info calculated by dmub service - * @cpu_addr: base cpu address for the framebuffer - * @gpu_addr: base gpu virtual address for the framebuffer + * @cpu_fb_addr: base cpu address for the framebuffer + * @cpu_inbox_addr: base cpu address for the gart + * @gpu_fb_addr: base gpu virtual address for the framebuffer + * @gpu_inbox_addr: base gpu virtual address for the gart */ -struct dmub_srv_fb_params { +struct dmub_srv_memory_params { const struct dmub_srv_region_info *region_info; - void *cpu_addr; - uint64_t gpu_addr; + void *cpu_fb_addr; + void *cpu_inbox_addr; + uint64_t gpu_fb_addr; + uint64_t gpu_inbox_addr; }; /** @@ -501,8 +507,8 @@ dmub_srv_calc_region_info(struct dmub_srv *dmub, * DMUB_STATUS_OK - success * DMUB_STATUS_INVALID - unspecified error */ -enum dmub_status dmub_srv_calc_fb_info(struct dmub_srv *dmub, - const struct dmub_srv_fb_params *params, +enum dmub_status dmub_srv_calc_mem_info(struct dmub_srv *dmub, + const struct dmub_srv_memory_params *params, struct dmub_srv_fb_info *out); /** diff --git a/drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c b/drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c index 51a9bd36585d4..08fefbb05c826 100644 --- a/drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c +++ b/drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c @@ -319,7 +319,7 @@ dmub_srv_calc_region_info(struct dmub_srv *dmub, uint32_t fw_state_size = DMUB_FW_STATE_SIZE; uint32_t trace_buffer_size = DMUB_TRACE_BUFFER_SIZE; uint32_t scratch_mem_size = DMUB_SCRATCH_MEM_SIZE; - + uint32_t previous_top = 0; if (!dmub->sw_init) return DMUB_STATUS_INVALID; @@ -344,8 +344,15 @@ dmub_srv_calc_region_info(struct dmub_srv *dmub, bios->base = dmub_align(stack->top, 256); bios->top = bios->base + params->vbios_size; - mail->base = dmub_align(bios->top, 256); - mail->top = mail->base + DMUB_MAILBOX_SIZE; + if (params->is_mailbox_in_inbox) { + mail->base = 0; + mail->top = mail->base + DMUB_MAILBOX_SIZE; + previous_top = bios->top; + } else { + mail->base = dmub_align(bios->top, 256); + mail->top = mail->base + DMUB_MAILBOX_SIZE; + previous_top = mail->top; + } fw_info = dmub_get_fw_meta_info(params); @@ -364,7 +371,7 @@ dmub_srv_calc_region_info(struct dmub_srv *dmub, dmub->fw_version = fw_info->fw_version; } - trace_buff->base = dmub_align(mail->top, 256); + trace_buff->base = dmub_align(previous_top, 256); trace_buff->top = trace_buff->base + dmub_align(trace_buffer_size, 64); fw_state->base = dmub_align(trace_buff->top, 256); @@ -375,11 +382,14 @@ dmub_srv_calc_region_info(struct dmub_srv *dmub, out->fb_size = dmub_align(scratch_mem->top, 4096); + if (params->is_mailbox_in_inbox) + out->inbox_size = dmub_align(mail->top, 4096); + return DMUB_STATUS_OK; } -enum dmub_status dmub_srv_calc_fb_info(struct dmub_srv *dmub, - const struct dmub_srv_fb_params *params, +enum dmub_status dmub_srv_calc_mem_info(struct dmub_srv *dmub, + const struct dmub_srv_memory_params *params, struct dmub_srv_fb_info *out) { uint8_t *cpu_base; @@ -394,8 +404,8 @@ enum dmub_status dmub_srv_calc_fb_info(struct dmub_srv *dmub, if (params->region_info->num_regions != DMUB_NUM_WINDOWS) return DMUB_STATUS_INVALID; - cpu_base = (uint8_t *)params->cpu_addr; - gpu_base = params->gpu_addr; + cpu_base = (uint8_t *)params->cpu_fb_addr; + gpu_base = params->gpu_fb_addr; for (i = 0; i < DMUB_NUM_WINDOWS; ++i) { const struct dmub_region *reg = @@ -403,6 +413,12 @@ enum dmub_status dmub_srv_calc_fb_info(struct dmub_srv *dmub, out->fb[i].cpu_addr = cpu_base + reg->base; out->fb[i].gpu_addr = gpu_base + reg->base; + + if (i == DMUB_WINDOW_4_MAILBOX && params->cpu_inbox_addr != 0) { + out->fb[i].cpu_addr = (uint8_t *)params->cpu_inbox_addr + reg->base; + out->fb[i].gpu_addr = params->gpu_inbox_addr + reg->base; + } + out->fb[i].size = reg->top - reg->base; } diff --git a/drivers/gpu/drm/amd/display/modules/freesync/freesync.c b/drivers/gpu/drm/amd/display/modules/freesync/freesync.c index 4bee6d018bfa9..6230861e78d10 100644 --- a/drivers/gpu/drm/amd/display/modules/freesync/freesync.c +++ b/drivers/gpu/drm/amd/display/modules/freesync/freesync.c @@ -327,7 +327,9 @@ static void apply_below_the_range(struct core_freesync *core_freesync, * - Delta for CEIL: delta_from_mid_point_in_us_1 * - Delta for FLOOR: delta_from_mid_point_in_us_2 */ - if ((last_render_time_in_us / mid_point_frames_ceil) < in_out_vrr->min_duration_in_us) { + if (mid_point_frames_ceil && + (last_render_time_in_us / mid_point_frames_ceil) < + in_out_vrr->min_duration_in_us) { /* Check for out of range. * If using CEIL produces a value that is out of range, * then we are forced to use FLOOR. @@ -374,8 +376,9 @@ static void apply_below_the_range(struct core_freesync *core_freesync, /* Either we've calculated the number of frames to insert, * or we need to insert min duration frames */ - if (last_render_time_in_us / frames_to_insert < - in_out_vrr->min_duration_in_us){ + if (frames_to_insert && + (last_render_time_in_us / frames_to_insert) < + in_out_vrr->min_duration_in_us){ frames_to_insert -= (frames_to_insert > 1) ? 1 : 0; } diff --git a/drivers/gpu/drm/amd/include/pptable.h b/drivers/gpu/drm/amd/include/pptable.h index 0b6a057e0a4c4..5aac8d545bdc6 100644 --- a/drivers/gpu/drm/amd/include/pptable.h +++ b/drivers/gpu/drm/amd/include/pptable.h @@ -78,7 +78,7 @@ typedef struct _ATOM_PPLIB_THERMALCONTROLLER typedef struct _ATOM_PPLIB_STATE { UCHAR ucNonClockStateIndex; - UCHAR ucClockStateIndices[1]; // variable-sized + UCHAR ucClockStateIndices[]; // variable-sized } ATOM_PPLIB_STATE; @@ -473,7 +473,7 @@ typedef struct _ATOM_PPLIB_STATE_V2 /** * Driver will read the first ucNumDPMLevels in this array */ - UCHAR clockInfoIndex[1]; + UCHAR clockInfoIndex[]; } ATOM_PPLIB_STATE_V2; typedef struct _StateArray{ diff --git a/drivers/gpu/drm/amd/pm/amdgpu_pm.c b/drivers/gpu/drm/amd/pm/amdgpu_pm.c index 6aaf1230655f4..23f3cd9f2e8b0 100644 --- a/drivers/gpu/drm/amd/pm/amdgpu_pm.c +++ b/drivers/gpu/drm/amd/pm/amdgpu_pm.c @@ -807,7 +807,7 @@ static ssize_t amdgpu_set_pp_od_clk_voltage(struct device *dev, if (adev->in_suspend && !adev->in_runpm) return -EPERM; - if (count > 127) + if (count > 127 || count == 0) return -EINVAL; if (*buf == 's') @@ -827,7 +827,8 @@ static ssize_t amdgpu_set_pp_od_clk_voltage(struct device *dev, else return -EINVAL; - memcpy(buf_cpy, buf, count+1); + memcpy(buf_cpy, buf, count); + buf_cpy[count] = 0; tmp_str = buf_cpy; @@ -844,6 +845,9 @@ static ssize_t amdgpu_set_pp_od_clk_voltage(struct device *dev, return -EINVAL; parameter_size++; + if (!tmp_str) + break; + while (isspace(*tmp_str)) tmp_str++; } @@ -2134,15 +2138,19 @@ static int amdgpu_device_attr_create(struct amdgpu_device *adev, uint32_t mask, struct list_head *attr_list) { int ret = 0; - struct device_attribute *dev_attr = &attr->dev_attr; - const char *name = dev_attr->attr.name; enum amdgpu_device_attr_states attr_states = ATTR_STATE_SUPPORTED; struct amdgpu_device_attr_entry *attr_entry; + struct device_attribute *dev_attr; + const char *name; int (*attr_update)(struct amdgpu_device *adev, struct amdgpu_device_attr *attr, uint32_t mask, enum amdgpu_device_attr_states *states) = default_attr_update; - BUG_ON(!attr); + if (!attr) + return -EINVAL; + + dev_attr = &attr->dev_attr; + name = dev_attr->attr.name; attr_update = attr->attr_update ? attr->attr_update : default_attr_update; diff --git a/drivers/gpu/drm/amd/pm/powerplay/hwmgr/pptable_v1_0.h b/drivers/gpu/drm/amd/pm/powerplay/hwmgr/pptable_v1_0.h index b0ac4d121adca..e0e40b054c08b 100644 --- a/drivers/gpu/drm/amd/pm/powerplay/hwmgr/pptable_v1_0.h +++ b/drivers/gpu/drm/amd/pm/powerplay/hwmgr/pptable_v1_0.h @@ -164,7 +164,7 @@ typedef struct _ATOM_Tonga_State { typedef struct _ATOM_Tonga_State_Array { UCHAR ucRevId; UCHAR ucNumEntries; /* Number of entries. */ - ATOM_Tonga_State entries[1]; /* Dynamically allocate entries. */ + ATOM_Tonga_State entries[]; /* Dynamically allocate entries. */ } ATOM_Tonga_State_Array; typedef struct _ATOM_Tonga_MCLK_Dependency_Record { @@ -179,7 +179,7 @@ typedef struct _ATOM_Tonga_MCLK_Dependency_Record { typedef struct _ATOM_Tonga_MCLK_Dependency_Table { UCHAR ucRevId; UCHAR ucNumEntries; /* Number of entries. */ - ATOM_Tonga_MCLK_Dependency_Record entries[1]; /* Dynamically allocate entries. */ + ATOM_Tonga_MCLK_Dependency_Record entries[]; /* Dynamically allocate entries. */ } ATOM_Tonga_MCLK_Dependency_Table; typedef struct _ATOM_Tonga_SCLK_Dependency_Record { @@ -194,7 +194,7 @@ typedef struct _ATOM_Tonga_SCLK_Dependency_Record { typedef struct _ATOM_Tonga_SCLK_Dependency_Table { UCHAR ucRevId; UCHAR ucNumEntries; /* Number of entries. */ - ATOM_Tonga_SCLK_Dependency_Record entries[1]; /* Dynamically allocate entries. */ + ATOM_Tonga_SCLK_Dependency_Record entries[]; /* Dynamically allocate entries. */ } ATOM_Tonga_SCLK_Dependency_Table; typedef struct _ATOM_Polaris_SCLK_Dependency_Record { @@ -210,7 +210,7 @@ typedef struct _ATOM_Polaris_SCLK_Dependency_Record { typedef struct _ATOM_Polaris_SCLK_Dependency_Table { UCHAR ucRevId; UCHAR ucNumEntries; /* Number of entries. */ - ATOM_Polaris_SCLK_Dependency_Record entries[1]; /* Dynamically allocate entries. */ + ATOM_Polaris_SCLK_Dependency_Record entries[]; /* Dynamically allocate entries. */ } ATOM_Polaris_SCLK_Dependency_Table; typedef struct _ATOM_Tonga_PCIE_Record { @@ -222,7 +222,7 @@ typedef struct _ATOM_Tonga_PCIE_Record { typedef struct _ATOM_Tonga_PCIE_Table { UCHAR ucRevId; UCHAR ucNumEntries; /* Number of entries. */ - ATOM_Tonga_PCIE_Record entries[1]; /* Dynamically allocate entries. */ + ATOM_Tonga_PCIE_Record entries[]; /* Dynamically allocate entries. */ } ATOM_Tonga_PCIE_Table; typedef struct _ATOM_Polaris10_PCIE_Record { @@ -235,7 +235,7 @@ typedef struct _ATOM_Polaris10_PCIE_Record { typedef struct _ATOM_Polaris10_PCIE_Table { UCHAR ucRevId; UCHAR ucNumEntries; /* Number of entries. */ - ATOM_Polaris10_PCIE_Record entries[1]; /* Dynamically allocate entries. */ + ATOM_Polaris10_PCIE_Record entries[]; /* Dynamically allocate entries. */ } ATOM_Polaris10_PCIE_Table; @@ -252,7 +252,7 @@ typedef struct _ATOM_Tonga_MM_Dependency_Record { typedef struct _ATOM_Tonga_MM_Dependency_Table { UCHAR ucRevId; UCHAR ucNumEntries; /* Number of entries. */ - ATOM_Tonga_MM_Dependency_Record entries[1]; /* Dynamically allocate entries. */ + ATOM_Tonga_MM_Dependency_Record entries[]; /* Dynamically allocate entries. */ } ATOM_Tonga_MM_Dependency_Table; typedef struct _ATOM_Tonga_Voltage_Lookup_Record { @@ -265,7 +265,7 @@ typedef struct _ATOM_Tonga_Voltage_Lookup_Record { typedef struct _ATOM_Tonga_Voltage_Lookup_Table { UCHAR ucRevId; UCHAR ucNumEntries; /* Number of entries. */ - ATOM_Tonga_Voltage_Lookup_Record entries[1]; /* Dynamically allocate entries. */ + ATOM_Tonga_Voltage_Lookup_Record entries[]; /* Dynamically allocate entries. */ } ATOM_Tonga_Voltage_Lookup_Table; typedef struct _ATOM_Tonga_Fan_Table { diff --git a/drivers/gpu/drm/arm/display/komeda/komeda_pipeline_state.c b/drivers/gpu/drm/arm/display/komeda/komeda_pipeline_state.c index e672b9cffee3c..88b58153f9d66 100644 --- a/drivers/gpu/drm/arm/display/komeda/komeda_pipeline_state.c +++ b/drivers/gpu/drm/arm/display/komeda/komeda_pipeline_state.c @@ -1223,7 +1223,7 @@ int komeda_build_display_data_flow(struct komeda_crtc *kcrtc, return 0; } -static void +static int komeda_pipeline_unbound_components(struct komeda_pipeline *pipe, struct komeda_pipeline_state *new) { @@ -1243,8 +1243,12 @@ komeda_pipeline_unbound_components(struct komeda_pipeline *pipe, c = komeda_pipeline_get_component(pipe, id); c_st = komeda_component_get_state_and_set_user(c, drm_st, NULL, new->crtc); + if (PTR_ERR(c_st) == -EDEADLK) + return -EDEADLK; WARN_ON(IS_ERR(c_st)); } + + return 0; } /* release unclaimed pipeline resource */ @@ -1266,9 +1270,8 @@ int komeda_release_unclaimed_resources(struct komeda_pipeline *pipe, if (WARN_ON(IS_ERR_OR_NULL(st))) return -EINVAL; - komeda_pipeline_unbound_components(pipe, st); + return komeda_pipeline_unbound_components(pipe, st); - return 0; } /* Since standalong disabled components must be disabled separately and in the diff --git a/drivers/gpu/drm/armada/armada_overlay.c b/drivers/gpu/drm/armada/armada_overlay.c index 424250535fed9..0383deb970bbb 100644 --- a/drivers/gpu/drm/armada/armada_overlay.c +++ b/drivers/gpu/drm/armada/armada_overlay.c @@ -4,6 +4,8 @@ * Rewritten from the dovefb driver, and Armada510 manuals. */ +#include + #include #include #include @@ -451,8 +453,8 @@ static int armada_overlay_get_property(struct drm_plane *plane, drm_to_overlay_state(state)->colorkey_ug, drm_to_overlay_state(state)->colorkey_vb, 0); } else if (property == priv->colorkey_mode_prop) { - *val = (drm_to_overlay_state(state)->colorkey_mode & - CFG_CKMODE_MASK) >> ffs(CFG_CKMODE_MASK); + *val = FIELD_GET(CFG_CKMODE_MASK, + drm_to_overlay_state(state)->colorkey_mode); } else if (property == priv->brightness_prop) { *val = drm_to_overlay_state(state)->brightness + 256; } else if (property == priv->contrast_prop) { diff --git a/drivers/gpu/drm/ast/ast_post.c b/drivers/gpu/drm/ast/ast_post.c index b5d92f652fd85..1dac7f987a61d 100644 --- a/drivers/gpu/drm/ast/ast_post.c +++ b/drivers/gpu/drm/ast/ast_post.c @@ -291,7 +291,7 @@ static void ast_init_dram_reg(struct drm_device *dev) ; } while (ast_read32(ast, 0x10100) != 0xa8); } else {/* AST2100/1100 */ - if (ast->chip == AST2100 || ast->chip == 2200) + if (ast->chip == AST2100 || ast->chip == AST2200) dram_reg_info = ast2100_dram_table_data; else dram_reg_info = ast1100_dram_table_data; diff --git a/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c b/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c index 44762116aac97..ce40cd1ae1670 100644 --- a/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c +++ b/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c @@ -786,8 +786,13 @@ static void adv7511_mode_set(struct adv7511 *adv7511, else low_refresh_rate = ADV7511_LOW_REFRESH_RATE_NONE; - regmap_update_bits(adv7511->regmap, 0xfb, - 0x6, low_refresh_rate << 1); + if (adv7511->type == ADV7511) + regmap_update_bits(adv7511->regmap, 0xfb, + 0x6, low_refresh_rate << 1); + else + regmap_update_bits(adv7511->regmap, 0x4a, + 0xc, low_refresh_rate << 2); + regmap_update_bits(adv7511->regmap, 0x17, 0x60, (vsync_polarity << 6) | (hsync_polarity << 5)); diff --git a/drivers/gpu/drm/bridge/lontium-lt8912b.c b/drivers/gpu/drm/bridge/lontium-lt8912b.c index d3fd76a0a34ae..6891863ed5104 100644 --- a/drivers/gpu/drm/bridge/lontium-lt8912b.c +++ b/drivers/gpu/drm/bridge/lontium-lt8912b.c @@ -43,7 +43,6 @@ struct lt8912 { u8 data_lanes; bool is_power_on; - bool is_attached; }; static int lt8912_write_init_config(struct lt8912 *lt) @@ -481,11 +480,11 @@ static int lt8912_attach_dsi(struct lt8912 *lt) return -EPROBE_DEFER; } - dsi = mipi_dsi_device_register_full(host, &info); + dsi = devm_mipi_dsi_device_register_full(dev, host, &info); if (IS_ERR(dsi)) { ret = PTR_ERR(dsi); dev_err(dev, "failed to create dsi device (%d)\n", ret); - goto err_dsi_device; + return ret; } lt->dsi = dsi; @@ -497,24 +496,21 @@ static int lt8912_attach_dsi(struct lt8912 *lt) MIPI_DSI_MODE_LPM | MIPI_DSI_MODE_NO_EOT_PACKET; - ret = mipi_dsi_attach(dsi); + ret = devm_mipi_dsi_attach(dev, dsi); if (ret < 0) { dev_err(dev, "failed to attach dsi to host\n"); - goto err_dsi_attach; + return ret; } return 0; - -err_dsi_attach: - mipi_dsi_device_unregister(dsi); -err_dsi_device: - return ret; } -static void lt8912_detach_dsi(struct lt8912 *lt) +static void lt8912_bridge_hpd_cb(void *data, enum drm_connector_status status) { - mipi_dsi_detach(lt->dsi); - mipi_dsi_device_unregister(lt->dsi); + struct lt8912 *lt = data; + + if (lt->bridge.dev) + drm_helper_hpd_irq_event(lt->bridge.dev); } static int lt8912_bridge_connector_init(struct drm_bridge *bridge) @@ -523,8 +519,13 @@ static int lt8912_bridge_connector_init(struct drm_bridge *bridge) struct lt8912 *lt = bridge_to_lt8912(bridge); struct drm_connector *connector = <->connector; - connector->polled = DRM_CONNECTOR_POLL_CONNECT | - DRM_CONNECTOR_POLL_DISCONNECT; + if (lt->hdmi_port->ops & DRM_BRIDGE_OP_HPD) { + drm_bridge_hpd_enable(lt->hdmi_port, lt8912_bridge_hpd_cb, lt); + connector->polled = DRM_CONNECTOR_POLL_HPD; + } else { + connector->polled = DRM_CONNECTOR_POLL_CONNECT | + DRM_CONNECTOR_POLL_DISCONNECT; + } ret = drm_connector_init(bridge->dev, connector, <8912_connector_funcs, @@ -547,6 +548,13 @@ static int lt8912_bridge_attach(struct drm_bridge *bridge, struct lt8912 *lt = bridge_to_lt8912(bridge); int ret; + ret = drm_bridge_attach(bridge->encoder, lt->hdmi_port, bridge, + DRM_BRIDGE_ATTACH_NO_CONNECTOR); + if (ret < 0) { + dev_err(lt->dev, "Failed to attach next bridge (%d)\n", ret); + return ret; + } + if (!(flags & DRM_BRIDGE_ATTACH_NO_CONNECTOR)) { ret = lt8912_bridge_connector_init(bridge); if (ret) { @@ -563,12 +571,6 @@ static int lt8912_bridge_attach(struct drm_bridge *bridge, if (ret) goto error; - ret = lt8912_attach_dsi(lt); - if (ret) - goto error; - - lt->is_attached = true; - return 0; error: @@ -580,12 +582,10 @@ static void lt8912_bridge_detach(struct drm_bridge *bridge) { struct lt8912 *lt = bridge_to_lt8912(bridge); - if (lt->is_attached) { - lt8912_detach_dsi(lt); - lt8912_hard_power_off(lt); - drm_connector_unregister(<->connector); - drm_connector_cleanup(<->connector); - } + lt8912_hard_power_off(lt); + + if (lt->connector.dev && lt->hdmi_port->ops & DRM_BRIDGE_OP_HPD) + drm_bridge_hpd_disable(lt->hdmi_port); } static enum drm_connector_status @@ -726,8 +726,15 @@ static int lt8912_probe(struct i2c_client *client, drm_bridge_add(<->bridge); + ret = lt8912_attach_dsi(lt); + if (ret) + goto err_attach; + return 0; +err_attach: + drm_bridge_remove(<->bridge); + lt8912_free_i2c(lt); err_i2c: lt8912_put_dt(lt); err_dt_parse: @@ -738,7 +745,6 @@ static int lt8912_remove(struct i2c_client *client) { struct lt8912 *lt = i2c_get_clientdata(client); - lt8912_bridge_detach(<->bridge); drm_bridge_remove(<->bridge); lt8912_free_i2c(lt); lt8912_put_dt(lt); diff --git a/drivers/gpu/drm/bridge/tc358762.c b/drivers/gpu/drm/bridge/tc358762.c index 1bfdfc6affafe..21c57d3435687 100644 --- a/drivers/gpu/drm/bridge/tc358762.c +++ b/drivers/gpu/drm/bridge/tc358762.c @@ -224,7 +224,7 @@ static int tc358762_probe(struct mipi_dsi_device *dsi) dsi->lanes = 1; dsi->format = MIPI_DSI_FMT_RGB888; dsi->mode_flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_SYNC_PULSE | - MIPI_DSI_MODE_LPM; + MIPI_DSI_MODE_LPM | MIPI_DSI_MODE_VIDEO_HSE; ret = tc358762_parse_dt(ctx); if (ret < 0) diff --git a/drivers/gpu/drm/bridge/tc358764.c b/drivers/gpu/drm/bridge/tc358764.c index c1e35bdf9232a..ba4e869f58a4a 100644 --- a/drivers/gpu/drm/bridge/tc358764.c +++ b/drivers/gpu/drm/bridge/tc358764.c @@ -181,7 +181,7 @@ static void tc358764_read(struct tc358764 *ctx, u16 addr, u32 *val) if (ret >= 0) le32_to_cpus(val); - dev_dbg(ctx->dev, "read: %d, addr: %d\n", addr, *val); + dev_dbg(ctx->dev, "read: addr=0x%04x data=0x%08x\n", addr, *val); } static void tc358764_write(struct tc358764 *ctx, u16 addr, u32 val) diff --git a/drivers/gpu/drm/bridge/tc358768.c b/drivers/gpu/drm/bridge/tc358768.c index 8b1bdffc5005d..d81c35a85330b 100644 --- a/drivers/gpu/drm/bridge/tc358768.c +++ b/drivers/gpu/drm/bridge/tc358768.c @@ -217,6 +217,10 @@ static void tc358768_update_bits(struct tc358768_priv *priv, u32 reg, u32 mask, u32 tmp, orig; tc358768_read(priv, reg, &orig); + + if (priv->error) + return; + tmp = orig & ~mask; tmp |= val & mask; if (tmp != orig) @@ -633,6 +637,7 @@ static void tc358768_bridge_pre_enable(struct drm_bridge *bridge) { struct tc358768_priv *priv = bridge_to_tc358768(bridge); struct mipi_dsi_device *dsi_dev = priv->output.dev; + unsigned long mode_flags = dsi_dev->mode_flags; u32 val, val2, lptxcnt, hact, data_type; s32 raw_val; const struct drm_display_mode *mode; @@ -640,6 +645,11 @@ static void tc358768_bridge_pre_enable(struct drm_bridge *bridge) u32 dsiclk, dsibclk; int ret, i; + if (mode_flags & MIPI_DSI_CLOCK_NON_CONTINUOUS) { + dev_warn_once(priv->dev, "Non-continuous mode unimplemented, falling back to continuous\n"); + mode_flags &= ~MIPI_DSI_CLOCK_NON_CONTINUOUS; + } + tc358768_hw_enable(priv); ret = tc358768_sw_reset(priv); @@ -775,8 +785,8 @@ static void tc358768_bridge_pre_enable(struct drm_bridge *bridge) val |= BIT(i + 1); tc358768_write(priv, TC358768_HSTXVREGEN, val); - if (!(dsi_dev->mode_flags & MIPI_DSI_CLOCK_NON_CONTINUOUS)) - tc358768_write(priv, TC358768_TXOPTIONCNTRL, 0x1); + tc358768_write(priv, TC358768_TXOPTIONCNTRL, + (mode_flags & MIPI_DSI_CLOCK_NON_CONTINUOUS) ? 0 : BIT(0)); /* TXTAGOCNT[26:16] RXTASURECNT[10:0] */ val = tc358768_to_ns((lptxcnt + 1) * dsibclk_nsk * 4); @@ -812,11 +822,12 @@ static void tc358768_bridge_pre_enable(struct drm_bridge *bridge) tc358768_write(priv, TC358768_DSI_HACT, hact); /* VSYNC polarity */ - if (!(mode->flags & DRM_MODE_FLAG_NVSYNC)) - tc358768_update_bits(priv, TC358768_CONFCTL, BIT(5), BIT(5)); + tc358768_update_bits(priv, TC358768_CONFCTL, BIT(5), + (mode->flags & DRM_MODE_FLAG_PVSYNC) ? BIT(5) : 0); + /* HSYNC polarity */ - if (mode->flags & DRM_MODE_FLAG_PHSYNC) - tc358768_update_bits(priv, TC358768_PP_MISC, BIT(0), BIT(0)); + tc358768_update_bits(priv, TC358768_PP_MISC, BIT(0), + (mode->flags & DRM_MODE_FLAG_PHSYNC) ? BIT(0) : 0); /* Start DSI Tx */ tc358768_write(priv, TC358768_DSI_START, 0x1); @@ -832,7 +843,7 @@ static void tc358768_bridge_pre_enable(struct drm_bridge *bridge) val |= TC358768_DSI_CONTROL_TXMD; - if (!(dsi_dev->mode_flags & MIPI_DSI_CLOCK_NON_CONTINUOUS)) + if (!(mode_flags & MIPI_DSI_CLOCK_NON_CONTINUOUS)) val |= TC358768_DSI_CONTROL_HSCKMD; if (dsi_dev->mode_flags & MIPI_DSI_MODE_NO_EOT_PACKET) diff --git a/drivers/gpu/drm/bridge/ti-sn65dsi83.c b/drivers/gpu/drm/bridge/ti-sn65dsi83.c index b3cb910b30852..f96c0a89854b8 100644 --- a/drivers/gpu/drm/bridge/ti-sn65dsi83.c +++ b/drivers/gpu/drm/bridge/ti-sn65dsi83.c @@ -272,7 +272,9 @@ static int sn65dsi83_attach(struct drm_bridge *bridge, dsi->lanes = ctx->dsi_lanes; dsi->format = MIPI_DSI_FMT_RGB888; - dsi->mode_flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_BURST; + dsi->mode_flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_BURST | + MIPI_DSI_MODE_VIDEO_NO_HFP | MIPI_DSI_MODE_VIDEO_NO_HBP | + MIPI_DSI_MODE_VIDEO_NO_HSA | MIPI_DSI_MODE_NO_EOT_PACKET; ret = mipi_dsi_attach(dsi); if (ret < 0) { diff --git a/drivers/gpu/drm/drm_atomic_helper.c b/drivers/gpu/drm/drm_atomic_helper.c index 5ba316391381d..2c3883d79f531 100644 --- a/drivers/gpu/drm/drm_atomic_helper.c +++ b/drivers/gpu/drm/drm_atomic_helper.c @@ -285,7 +285,8 @@ static int update_connector_routing(struct drm_atomic_state *state, struct drm_connector *connector, struct drm_connector_state *old_connector_state, - struct drm_connector_state *new_connector_state) + struct drm_connector_state *new_connector_state, + bool added_by_user) { const struct drm_connector_helper_funcs *funcs; struct drm_encoder *new_encoder; @@ -336,9 +337,13 @@ update_connector_routing(struct drm_atomic_state *state, * there's a chance the connector may have been destroyed during the * process, but it's better to ignore that then cause * drm_atomic_helper_resume() to fail. + * + * Last, we want to ignore connector registration when the connector + * was not pulled in the atomic state by user-space (ie, was pulled + * in by the driver, e.g. when updating a DP-MST stream). */ if (!state->duplicated && drm_connector_is_unregistered(connector) && - crtc_state->active) { + added_by_user && crtc_state->active) { DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] is not registered\n", connector->base.id, connector->name); return -EINVAL; @@ -610,7 +615,10 @@ drm_atomic_helper_check_modeset(struct drm_device *dev, struct drm_connector *connector; struct drm_connector_state *old_connector_state, *new_connector_state; int i, ret; - unsigned int connectors_mask = 0; + unsigned int connectors_mask = 0, user_connectors_mask = 0; + + for_each_oldnew_connector_in_state(state, connector, old_connector_state, new_connector_state, i) + user_connectors_mask |= BIT(i); for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) { bool has_connectors = @@ -675,7 +683,8 @@ drm_atomic_helper_check_modeset(struct drm_device *dev, */ ret = update_connector_routing(state, connector, old_connector_state, - new_connector_state); + new_connector_state, + BIT(i) & user_connectors_mask); if (ret) return ret; if (old_connector_state->crtc) { diff --git a/drivers/gpu/drm/drm_cache.c b/drivers/gpu/drm/drm_cache.c index 30cc59fe6ef79..f19d9acbe9593 100644 --- a/drivers/gpu/drm/drm_cache.c +++ b/drivers/gpu/drm/drm_cache.c @@ -31,7 +31,7 @@ #include #include #include -#include +#include #include #include @@ -204,7 +204,7 @@ bool drm_need_swiotlb(int dma_bits) * Enforce dma_alloc_coherent when memory encryption is active as well * for the same reasons as for Xen paravirtual hosts. */ - if (mem_encrypt_active()) + if (cc_platform_has(CC_ATTR_MEM_ENCRYPT)) return true; for (tmp = iomem_resource.child; tmp; tmp = tmp->sibling) diff --git a/drivers/gpu/drm/drm_dp_mst_topology.c b/drivers/gpu/drm/drm_dp_mst_topology.c index d02e323a4ecde..865c7f39143ec 100644 --- a/drivers/gpu/drm/drm_dp_mst_topology.c +++ b/drivers/gpu/drm/drm_dp_mst_topology.c @@ -2615,14 +2615,14 @@ static struct drm_dp_mst_branch *get_mst_branch_device_by_guid_helper( struct drm_dp_mst_branch *found_mstb; struct drm_dp_mst_port *port; + if (!mstb) + return NULL; + if (memcmp(mstb->guid, guid, 16) == 0) return mstb; list_for_each_entry(port, &mstb->ports, next) { - if (!port->mstb) - continue; - found_mstb = get_mst_branch_device_by_guid_helper(port->mstb, guid); if (found_mstb) diff --git a/drivers/gpu/drm/drm_mipi_dsi.c b/drivers/gpu/drm/drm_mipi_dsi.c index 0c806e99e8690..d98b08c65db93 100644 --- a/drivers/gpu/drm/drm_mipi_dsi.c +++ b/drivers/gpu/drm/drm_mipi_dsi.c @@ -246,6 +246,52 @@ void mipi_dsi_device_unregister(struct mipi_dsi_device *dsi) } EXPORT_SYMBOL(mipi_dsi_device_unregister); +static void devm_mipi_dsi_device_unregister(void *arg) +{ + struct mipi_dsi_device *dsi = arg; + + mipi_dsi_device_unregister(dsi); +} + +/** + * devm_mipi_dsi_device_register_full - create a managed MIPI DSI device + * @dev: device to tie the MIPI-DSI device lifetime to + * @host: DSI host to which this device is connected + * @info: pointer to template containing DSI device information + * + * Create a MIPI DSI device by using the device information provided by + * mipi_dsi_device_info template + * + * This is the managed version of mipi_dsi_device_register_full() which + * automatically calls mipi_dsi_device_unregister() when @dev is + * unbound. + * + * Returns: + * A pointer to the newly created MIPI DSI device, or, a pointer encoded + * with an error + */ +struct mipi_dsi_device * +devm_mipi_dsi_device_register_full(struct device *dev, + struct mipi_dsi_host *host, + const struct mipi_dsi_device_info *info) +{ + struct mipi_dsi_device *dsi; + int ret; + + dsi = mipi_dsi_device_register_full(host, info); + if (IS_ERR(dsi)) + return dsi; + + ret = devm_add_action_or_reset(dev, + devm_mipi_dsi_device_unregister, + dsi); + if (ret) + return ERR_PTR(ret); + + return dsi; +} +EXPORT_SYMBOL_GPL(devm_mipi_dsi_device_register_full); + static DEFINE_MUTEX(host_lock); static LIST_HEAD(host_list); @@ -346,6 +392,41 @@ int mipi_dsi_detach(struct mipi_dsi_device *dsi) } EXPORT_SYMBOL(mipi_dsi_detach); +static void devm_mipi_dsi_detach(void *arg) +{ + struct mipi_dsi_device *dsi = arg; + + mipi_dsi_detach(dsi); +} + +/** + * devm_mipi_dsi_attach - Attach a MIPI-DSI device to its DSI Host + * @dev: device to tie the MIPI-DSI device attachment lifetime to + * @dsi: DSI peripheral + * + * This is the managed version of mipi_dsi_attach() which automatically + * calls mipi_dsi_detach() when @dev is unbound. + * + * Returns: + * 0 on success, a negative error code on failure. + */ +int devm_mipi_dsi_attach(struct device *dev, + struct mipi_dsi_device *dsi) +{ + int ret; + + ret = mipi_dsi_attach(dsi); + if (ret) + return ret; + + ret = devm_add_action_or_reset(dev, devm_mipi_dsi_detach, dsi); + if (ret) + return ret; + + return 0; +} +EXPORT_SYMBOL_GPL(devm_mipi_dsi_attach); + static ssize_t mipi_dsi_device_transfer(struct mipi_dsi_device *dsi, struct mipi_dsi_msg *msg) { diff --git a/drivers/gpu/drm/drm_panel_orientation_quirks.c b/drivers/gpu/drm/drm_panel_orientation_quirks.c index 6106fa7c43028..43de9dfcba19a 100644 --- a/drivers/gpu/drm/drm_panel_orientation_quirks.c +++ b/drivers/gpu/drm/drm_panel_orientation_quirks.c @@ -44,6 +44,14 @@ static const struct drm_dmi_panel_orientation_data gpd_micropc = { .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP, }; +static const struct drm_dmi_panel_orientation_data gpd_onemix2s = { + .width = 1200, + .height = 1920, + .bios_dates = (const char * const []){ "05/21/2018", "10/26/2018", + "03/04/2019", NULL }, + .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP, +}; + static const struct drm_dmi_panel_orientation_data gpd_pocket = { .width = 1200, .height = 1920, @@ -329,6 +337,14 @@ static const struct dmi_system_id orientation_data[] = { DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "LTH17"), }, .driver_data = (void *)&lcd800x1280_rightside_up, + }, { /* One Mix 2S (generic strings, also match on bios date) */ + .matches = { + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Default string"), + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Default string"), + DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Default string"), + DMI_EXACT_MATCH(DMI_BOARD_NAME, "Default string"), + }, + .driver_data = (void *)&gpd_onemix2s, }, {} }; diff --git a/drivers/gpu/drm/drm_syncobj.c b/drivers/gpu/drm/drm_syncobj.c index 7e48dcd1bee4d..c26f916996352 100644 --- a/drivers/gpu/drm/drm_syncobj.c +++ b/drivers/gpu/drm/drm_syncobj.c @@ -1056,7 +1056,8 @@ static signed long drm_syncobj_array_wait_timeout(struct drm_syncobj **syncobjs, fence = drm_syncobj_fence_get(syncobjs[i]); if (!fence || dma_fence_chain_find_seqno(&fence, points[i])) { dma_fence_put(fence); - if (flags & DRM_SYNCOBJ_WAIT_FLAGS_WAIT_FOR_SUBMIT) { + if (flags & (DRM_SYNCOBJ_WAIT_FLAGS_WAIT_FOR_SUBMIT | + DRM_SYNCOBJ_WAIT_FLAGS_WAIT_AVAILABLE)) { continue; } else { timeout = -EINVAL; diff --git a/drivers/gpu/drm/etnaviv/etnaviv_dump.c b/drivers/gpu/drm/etnaviv/etnaviv_dump.c index f418e0b75772e..0edcf8ceb4a78 100644 --- a/drivers/gpu/drm/etnaviv/etnaviv_dump.c +++ b/drivers/gpu/drm/etnaviv/etnaviv_dump.c @@ -125,9 +125,9 @@ void etnaviv_core_dump(struct etnaviv_gem_submit *submit) return; etnaviv_dump_core = false; - mutex_lock(&gpu->mmu_context->lock); + mutex_lock(&submit->mmu_context->lock); - mmu_size = etnaviv_iommu_dump_size(gpu->mmu_context); + mmu_size = etnaviv_iommu_dump_size(submit->mmu_context); /* We always dump registers, mmu, ring, hanging cmdbuf and end marker */ n_obj = 5; @@ -157,7 +157,7 @@ void etnaviv_core_dump(struct etnaviv_gem_submit *submit) iter.start = __vmalloc(file_size, GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY); if (!iter.start) { - mutex_unlock(&gpu->mmu_context->lock); + mutex_unlock(&submit->mmu_context->lock); dev_warn(gpu->dev, "failed to allocate devcoredump file\n"); return; } @@ -169,18 +169,18 @@ void etnaviv_core_dump(struct etnaviv_gem_submit *submit) memset(iter.hdr, 0, iter.data - iter.start); etnaviv_core_dump_registers(&iter, gpu); - etnaviv_core_dump_mmu(&iter, gpu->mmu_context, mmu_size); + etnaviv_core_dump_mmu(&iter, submit->mmu_context, mmu_size); etnaviv_core_dump_mem(&iter, ETDUMP_BUF_RING, gpu->buffer.vaddr, gpu->buffer.size, etnaviv_cmdbuf_get_va(&gpu->buffer, - &gpu->mmu_context->cmdbuf_mapping)); + &submit->mmu_context->cmdbuf_mapping)); etnaviv_core_dump_mem(&iter, ETDUMP_BUF_CMD, submit->cmdbuf.vaddr, submit->cmdbuf.size, etnaviv_cmdbuf_get_va(&submit->cmdbuf, - &gpu->mmu_context->cmdbuf_mapping)); + &submit->mmu_context->cmdbuf_mapping)); - mutex_unlock(&gpu->mmu_context->lock); + mutex_unlock(&submit->mmu_context->lock); /* Reserve space for the bomap */ if (n_bomap_pages) { diff --git a/drivers/gpu/drm/exynos/exynos_drm_crtc.c b/drivers/gpu/drm/exynos/exynos_drm_crtc.c index 4153f302de7c4..d19e796c20613 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_crtc.c +++ b/drivers/gpu/drm/exynos/exynos_drm_crtc.c @@ -39,13 +39,12 @@ static void exynos_drm_crtc_atomic_disable(struct drm_crtc *crtc, if (exynos_crtc->ops->atomic_disable) exynos_crtc->ops->atomic_disable(exynos_crtc); + spin_lock_irq(&crtc->dev->event_lock); if (crtc->state->event && !crtc->state->active) { - spin_lock_irq(&crtc->dev->event_lock); drm_crtc_send_vblank_event(crtc, crtc->state->event); - spin_unlock_irq(&crtc->dev->event_lock); - crtc->state->event = NULL; } + spin_unlock_irq(&crtc->dev->event_lock); } static int exynos_crtc_atomic_check(struct drm_crtc *crtc, diff --git a/drivers/gpu/drm/hyperv/hyperv_drm_drv.c b/drivers/gpu/drm/hyperv/hyperv_drm_drv.c index 584d3a73db96c..4a570800cfcc2 100644 --- a/drivers/gpu/drm/hyperv/hyperv_drm_drv.c +++ b/drivers/gpu/drm/hyperv/hyperv_drm_drv.c @@ -23,9 +23,6 @@ #define DRIVER_MAJOR 1 #define DRIVER_MINOR 0 -#define PCI_VENDOR_ID_MICROSOFT 0x1414 -#define PCI_DEVICE_ID_HYPERV_VIDEO 0x5353 - DEFINE_DRM_GEM_FOPS(hv_fops); static struct drm_driver hyperv_driver = { diff --git a/drivers/gpu/drm/hyperv/hyperv_drm_proto.c b/drivers/gpu/drm/hyperv/hyperv_drm_proto.c index c0155c6271bf8..f5aaa4a601066 100644 --- a/drivers/gpu/drm/hyperv/hyperv_drm_proto.c +++ b/drivers/gpu/drm/hyperv/hyperv_drm_proto.c @@ -208,7 +208,7 @@ static inline int hyperv_sendpacket(struct hv_device *hdev, struct synthvid_msg VM_PKT_DATA_INBAND, 0); if (ret) - drm_err(&hv->dev, "Unable to send packet via vmbus\n"); + drm_err_ratelimited(&hv->dev, "Unable to send packet via vmbus; error %d\n", ret); return ret; } diff --git a/drivers/gpu/drm/i915/display/icl_dsi.c b/drivers/gpu/drm/i915/display/icl_dsi.c index 26dd5a2bd5024..796e08de26b93 100644 --- a/drivers/gpu/drm/i915/display/icl_dsi.c +++ b/drivers/gpu/drm/i915/display/icl_dsi.c @@ -1485,6 +1485,13 @@ static void gen11_dsi_post_disable(struct intel_atomic_state *state, static enum drm_mode_status gen11_dsi_mode_valid(struct drm_connector *connector, struct drm_display_mode *mode) { + struct drm_i915_private *i915 = to_i915(connector->dev); + enum drm_mode_status status; + + status = intel_cpu_transcoder_mode_valid(i915, mode); + if (status != MODE_OK) + return status; + /* FIXME: DSC? */ return intel_dsi_mode_valid(connector, mode); } diff --git a/drivers/gpu/drm/i915/display/intel_crt.c b/drivers/gpu/drm/i915/display/intel_crt.c index 408f82b0dc7db..13ff3695a7b48 100644 --- a/drivers/gpu/drm/i915/display/intel_crt.c +++ b/drivers/gpu/drm/i915/display/intel_crt.c @@ -343,8 +343,13 @@ intel_crt_mode_valid(struct drm_connector *connector, struct drm_device *dev = connector->dev; struct drm_i915_private *dev_priv = to_i915(dev); int max_dotclk = dev_priv->max_dotclk_freq; + enum drm_mode_status status; int max_clock; + status = intel_cpu_transcoder_mode_valid(dev_priv, mode); + if (status != MODE_OK) + return status; + if (mode->flags & DRM_MODE_FLAG_DBLSCAN) return MODE_NO_DBLESCAN; diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c index 11695b4db3b31..1662a72647340 100644 --- a/drivers/gpu/drm/i915/display/intel_display.c +++ b/drivers/gpu/drm/i915/display/intel_display.c @@ -8133,6 +8133,9 @@ static bool fastboot_enabled(struct drm_i915_private *dev_priv) if (dev_priv->params.fastboot != -1) return dev_priv->params.fastboot; + if (dev_priv->quirks & QUIRK_FORCE_DISABLE_FASTBOOT) + return false; + /* Enable fastboot by default on Skylake and newer */ if (DISPLAY_VER(dev_priv) >= 9) return true; @@ -11775,6 +11778,16 @@ intel_mode_valid(struct drm_device *dev, mode->vtotal > vtotal_max) return MODE_V_ILLEGAL; + return MODE_OK; +} + +enum drm_mode_status intel_cpu_transcoder_mode_valid(struct drm_i915_private *dev_priv, + const struct drm_display_mode *mode) +{ + /* + * Additional transcoder timing limits, + * excluding BXT/GLK DSI transcoders. + */ if (DISPLAY_VER(dev_priv) >= 5) { if (mode->hdisplay < 64 || mode->htotal - mode->hdisplay < 32) diff --git a/drivers/gpu/drm/i915/display/intel_display.h b/drivers/gpu/drm/i915/display/intel_display.h index 8a59ecac174bd..b3e6deac077c9 100644 --- a/drivers/gpu/drm/i915/display/intel_display.h +++ b/drivers/gpu/drm/i915/display/intel_display.h @@ -528,6 +528,9 @@ enum drm_mode_status intel_mode_valid_max_plane_size(struct drm_i915_private *dev_priv, const struct drm_display_mode *mode, bool bigjoiner); +enum drm_mode_status +intel_cpu_transcoder_mode_valid(struct drm_i915_private *i915, + const struct drm_display_mode *mode); enum phy intel_port_to_phy(struct drm_i915_private *i915, enum port port); bool is_trans_port_sync_mode(const struct intel_crtc_state *state); diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c index 2125cc7c9a9e1..0ed5417aa8a5f 100644 --- a/drivers/gpu/drm/i915/display/intel_dp.c +++ b/drivers/gpu/drm/i915/display/intel_dp.c @@ -731,6 +731,10 @@ intel_dp_mode_valid(struct drm_connector *connector, enum drm_mode_status status; bool dsc = false, bigjoiner = false; + status = intel_cpu_transcoder_mode_valid(dev_priv, mode); + if (status != MODE_OK) + return status; + if (mode->flags & DRM_MODE_FLAG_DBLCLK) return MODE_H_ILLEGAL; diff --git a/drivers/gpu/drm/i915/display/intel_dp_mst.c b/drivers/gpu/drm/i915/display/intel_dp_mst.c index 2a20487effccd..73ecba8b5459d 100644 --- a/drivers/gpu/drm/i915/display/intel_dp_mst.c +++ b/drivers/gpu/drm/i915/display/intel_dp_mst.c @@ -697,6 +697,10 @@ intel_dp_mst_mode_valid_ctx(struct drm_connector *connector, return 0; } + *status = intel_cpu_transcoder_mode_valid(dev_priv, mode); + if (*status != MODE_OK) + return 0; + if (mode->flags & DRM_MODE_FLAG_DBLSCAN) { *status = MODE_NO_DBLESCAN; return 0; diff --git a/drivers/gpu/drm/i915/display/intel_dvo.c b/drivers/gpu/drm/i915/display/intel_dvo.c index 77419f8c05e9f..c32784aeb1ca0 100644 --- a/drivers/gpu/drm/i915/display/intel_dvo.c +++ b/drivers/gpu/drm/i915/display/intel_dvo.c @@ -220,14 +220,20 @@ static void intel_enable_dvo(struct intel_atomic_state *state, } static enum drm_mode_status -intel_dvo_mode_valid(struct drm_connector *connector, +intel_dvo_mode_valid(struct drm_connector *_connector, struct drm_display_mode *mode) { - struct intel_dvo *intel_dvo = intel_attached_dvo(to_intel_connector(connector)); - const struct drm_display_mode *fixed_mode = - to_intel_connector(connector)->panel.fixed_mode; - int max_dotclk = to_i915(connector->dev)->max_dotclk_freq; + struct intel_connector *connector = to_intel_connector(_connector); + struct drm_i915_private *i915 = to_i915(connector->base.dev); + struct intel_dvo *intel_dvo = intel_attached_dvo(connector); + const struct drm_display_mode *fixed_mode = connector->panel.fixed_mode; + int max_dotclk = i915->max_dotclk_freq; int target_clock = mode->clock; + enum drm_mode_status status; + + status = intel_cpu_transcoder_mode_valid(i915, mode); + if (status != MODE_OK) + return status; if (mode->flags & DRM_MODE_FLAG_DBLSCAN) return MODE_NO_DBLESCAN; diff --git a/drivers/gpu/drm/i915/display/intel_hdmi.c b/drivers/gpu/drm/i915/display/intel_hdmi.c index 999c1821d750e..bab105e6814e6 100644 --- a/drivers/gpu/drm/i915/display/intel_hdmi.c +++ b/drivers/gpu/drm/i915/display/intel_hdmi.c @@ -1962,6 +1962,10 @@ intel_hdmi_mode_valid(struct drm_connector *connector, bool has_hdmi_sink = intel_has_hdmi_sink(hdmi, connector->state); bool ycbcr_420_only; + status = intel_cpu_transcoder_mode_valid(dev_priv, mode); + if (status != MODE_OK) + return status; + if ((mode->flags & DRM_MODE_FLAG_3D_MASK) == DRM_MODE_FLAG_3D_FRAME_PACKING) clock *= 2; diff --git a/drivers/gpu/drm/i915/display/intel_lvds.c b/drivers/gpu/drm/i915/display/intel_lvds.c index 8f5741ebd58dd..b17bdb71be042 100644 --- a/drivers/gpu/drm/i915/display/intel_lvds.c +++ b/drivers/gpu/drm/i915/display/intel_lvds.c @@ -387,8 +387,14 @@ intel_lvds_mode_valid(struct drm_connector *connector, struct drm_display_mode *mode) { struct intel_connector *intel_connector = to_intel_connector(connector); + struct drm_i915_private *i915 = to_i915(intel_connector->base.dev); struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode; - int max_pixclk = to_i915(connector->dev)->max_dotclk_freq; + int max_pixclk = i915->max_dotclk_freq; + enum drm_mode_status status; + + status = intel_cpu_transcoder_mode_valid(i915, mode); + if (status != MODE_OK) + return status; if (mode->flags & DRM_MODE_FLAG_DBLSCAN) return MODE_NO_DBLESCAN; diff --git a/drivers/gpu/drm/i915/display/intel_quirks.c b/drivers/gpu/drm/i915/display/intel_quirks.c index 015e5b806b6d5..9c9ae04c38c3f 100644 --- a/drivers/gpu/drm/i915/display/intel_quirks.c +++ b/drivers/gpu/drm/i915/display/intel_quirks.c @@ -59,6 +59,12 @@ static void quirk_no_pps_backlight_power_hook(struct drm_i915_private *i915) drm_info(&i915->drm, "Applying no pps backlight power quirk\n"); } +static void quirk_force_disable_fastboot_hook(struct drm_i915_private *i915) +{ + i915->quirks |= QUIRK_FORCE_DISABLE_FASTBOOT; + drm_info(&i915->drm, "Applying force disable fastboot quirk\n"); +} + struct intel_quirk { int device; int subsystem_vendor; @@ -84,6 +90,12 @@ static int intel_dmi_no_pps_backlight(const struct dmi_system_id *id) return 1; } +static int intel_dmi_force_disable_fastboot(const struct dmi_system_id *id) +{ + DRM_INFO("Force disable fastboot on %s\n", id->ident); + return 1; +} + static const struct intel_dmi_quirk intel_dmi_quirks[] = { { .dmi_id_list = &(const struct dmi_system_id[]) { @@ -130,6 +142,19 @@ static const struct intel_dmi_quirk intel_dmi_quirks[] = { }, .hook = quirk_no_pps_backlight_power_hook, }, + { + .dmi_id_list = &(const struct dmi_system_id[]) { + { + .callback = intel_dmi_force_disable_fastboot, + .ident = "B&R Industrial Automation APC2200", + .matches = {DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "B&R Industrial Automation"), + DMI_EXACT_MATCH(DMI_BOARD_NAME, "APC2200"), + }, + }, + { } + }, + .hook = quirk_force_disable_fastboot_hook, + }, }; static struct intel_quirk intel_quirks[] = { diff --git a/drivers/gpu/drm/i915/display/intel_sdvo.c b/drivers/gpu/drm/i915/display/intel_sdvo.c index adb1693b15758..de2878f532e68 100644 --- a/drivers/gpu/drm/i915/display/intel_sdvo.c +++ b/drivers/gpu/drm/i915/display/intel_sdvo.c @@ -1863,13 +1863,19 @@ static enum drm_mode_status intel_sdvo_mode_valid(struct drm_connector *connector, struct drm_display_mode *mode) { + struct drm_i915_private *i915 = to_i915(connector->dev); struct intel_sdvo *intel_sdvo = intel_attached_sdvo(to_intel_connector(connector)); struct intel_sdvo_connector *intel_sdvo_connector = to_intel_sdvo_connector(connector); - int max_dotclk = to_i915(connector->dev)->max_dotclk_freq; + int max_dotclk = i915->max_dotclk_freq; bool has_hdmi_sink = intel_has_hdmi_sink(intel_sdvo, connector->state); + enum drm_mode_status status; int clock = mode->clock; + status = intel_cpu_transcoder_mode_valid(i915, mode); + if (status != MODE_OK) + return status; + if (mode->flags & DRM_MODE_FLAG_DBLSCAN) return MODE_NO_DBLESCAN; diff --git a/drivers/gpu/drm/i915/display/intel_tv.c b/drivers/gpu/drm/i915/display/intel_tv.c index d02f09f7e7501..0ca392d6ff798 100644 --- a/drivers/gpu/drm/i915/display/intel_tv.c +++ b/drivers/gpu/drm/i915/display/intel_tv.c @@ -955,8 +955,14 @@ static enum drm_mode_status intel_tv_mode_valid(struct drm_connector *connector, struct drm_display_mode *mode) { + struct drm_i915_private *i915 = to_i915(connector->dev); const struct tv_mode *tv_mode = intel_tv_mode_find(connector->state); - int max_dotclk = to_i915(connector->dev)->max_dotclk_freq; + int max_dotclk = i915->max_dotclk_freq; + enum drm_mode_status status; + + status = intel_cpu_transcoder_mode_valid(i915, mode); + if (status != MODE_OK) + return status; if (mode->flags & DRM_MODE_FLAG_DBLSCAN) return MODE_NO_DBLESCAN; diff --git a/drivers/gpu/drm/i915/display/vlv_dsi.c b/drivers/gpu/drm/i915/display/vlv_dsi.c index b27738df447d0..e25129ab915d7 100644 --- a/drivers/gpu/drm/i915/display/vlv_dsi.c +++ b/drivers/gpu/drm/i915/display/vlv_dsi.c @@ -1613,9 +1613,25 @@ static const struct drm_encoder_funcs intel_dsi_funcs = { .destroy = intel_dsi_encoder_destroy, }; +static enum drm_mode_status vlv_dsi_mode_valid(struct drm_connector *connector, + struct drm_display_mode *mode) +{ + struct drm_i915_private *i915 = to_i915(connector->dev); + + if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915)) { + enum drm_mode_status status; + + status = intel_cpu_transcoder_mode_valid(i915, mode); + if (status != MODE_OK) + return status; + } + + return intel_dsi_mode_valid(connector, mode); +} + static const struct drm_connector_helper_funcs intel_dsi_connector_helper_funcs = { .get_modes = intel_dsi_get_modes, - .mode_valid = intel_dsi_mode_valid, + .mode_valid = vlv_dsi_mode_valid, .atomic_check = intel_digital_connector_atomic_check, }; diff --git a/drivers/gpu/drm/i915/gem/i915_gem_context.c b/drivers/gpu/drm/i915/gem/i915_gem_context.c index 60f6a731f1bf6..0eb4a0739fa26 100644 --- a/drivers/gpu/drm/i915/gem/i915_gem_context.c +++ b/drivers/gpu/drm/i915/gem/i915_gem_context.c @@ -642,6 +642,7 @@ static int set_proto_ctx_sseu(struct drm_i915_file_private *fpriv, if (idx >= pc->num_user_engines) return -EINVAL; + idx = array_index_nospec(idx, pc->num_user_engines); pe = &pc->user_engines[idx]; /* Only render engine supports RPCS configuration. */ diff --git a/drivers/gpu/drm/i915/gem/i915_gem_mman.c b/drivers/gpu/drm/i915/gem/i915_gem_mman.c index 28e07040cf47a..5c6362a55cfa2 100644 --- a/drivers/gpu/drm/i915/gem/i915_gem_mman.c +++ b/drivers/gpu/drm/i915/gem/i915_gem_mman.c @@ -231,6 +231,7 @@ static vm_fault_t i915_error_to_vmf_fault(int err) case 0: case -EAGAIN: case -ENOSPC: /* transient failure to evict? */ + case -ENOBUFS: /* temporarily out of fences? */ case -ERESTARTSYS: case -EINTR: case -EBUSY: diff --git a/drivers/gpu/drm/i915/gvt/gtt.c b/drivers/gpu/drm/i915/gvt/gtt.c index 7ea7abef6143f..0344a0eef95c0 100644 --- a/drivers/gpu/drm/i915/gvt/gtt.c +++ b/drivers/gpu/drm/i915/gvt/gtt.c @@ -2864,24 +2864,6 @@ void intel_vgpu_reset_ggtt(struct intel_vgpu *vgpu, bool invalidate_old) ggtt_invalidate(gvt->gt); } -/** - * intel_vgpu_reset_gtt - reset the all GTT related status - * @vgpu: a vGPU - * - * This function is called from vfio core to reset reset all - * GTT related status, including GGTT, PPGTT, scratch page. - * - */ -void intel_vgpu_reset_gtt(struct intel_vgpu *vgpu) -{ - /* Shadow pages are only created when there is no page - * table tracking data, so remove page tracking data after - * removing the shadow pages. - */ - intel_vgpu_destroy_all_ppgtt_mm(vgpu); - intel_vgpu_reset_ggtt(vgpu, true); -} - /** * intel_gvt_restore_ggtt - restore all vGPU's ggtt entries * @gvt: intel gvt device diff --git a/drivers/gpu/drm/i915/gvt/gtt.h b/drivers/gpu/drm/i915/gvt/gtt.h index 3bf45672ef987..8e8fe21186243 100644 --- a/drivers/gpu/drm/i915/gvt/gtt.h +++ b/drivers/gpu/drm/i915/gvt/gtt.h @@ -224,7 +224,6 @@ void intel_vgpu_reset_ggtt(struct intel_vgpu *vgpu, bool invalidate_old); void intel_vgpu_invalidate_ppgtt(struct intel_vgpu *vgpu); int intel_gvt_init_gtt(struct intel_gvt *gvt); -void intel_vgpu_reset_gtt(struct intel_vgpu *vgpu); void intel_gvt_clean_gtt(struct intel_gvt *gvt); struct intel_vgpu_mm *intel_gvt_find_ppgtt_mm(struct intel_vgpu *vgpu, diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index 0e610715ec71a..e692111de6c7f 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -524,6 +524,7 @@ struct i915_drrs { #define QUIRK_INCREASE_T12_DELAY (1<<6) #define QUIRK_INCREASE_DDI_DISABLED_TIME (1<<7) #define QUIRK_NO_PPS_BACKLIGHT_POWER_HOOK (1<<8) +#define QUIRK_FORCE_DISABLE_FASTBOOT (1<<9) struct intel_fbdev; struct intel_fbc_work; diff --git a/drivers/gpu/drm/i915/i915_perf.c b/drivers/gpu/drm/i915/i915_perf.c index 774d45142091b..f4d27ceafdce8 100644 --- a/drivers/gpu/drm/i915/i915_perf.c +++ b/drivers/gpu/drm/i915/i915_perf.c @@ -3795,11 +3795,8 @@ int i915_perf_open_ioctl(struct drm_device *dev, void *data, u32 known_open_flags; int ret; - if (!perf->i915) { - drm_dbg(&perf->i915->drm, - "i915 perf interface not available for this system\n"); + if (!perf->i915) return -ENOTSUPP; - } known_open_flags = I915_PERF_FLAG_FD_CLOEXEC | I915_PERF_FLAG_FD_NONBLOCK | @@ -4090,11 +4087,8 @@ int i915_perf_add_config_ioctl(struct drm_device *dev, void *data, struct i915_oa_reg *regs; int err, id; - if (!perf->i915) { - drm_dbg(&perf->i915->drm, - "i915 perf interface not available for this system\n"); + if (!perf->i915) return -ENOTSUPP; - } if (!perf->metrics_kobj) { drm_dbg(&perf->i915->drm, @@ -4256,11 +4250,8 @@ int i915_perf_remove_config_ioctl(struct drm_device *dev, void *data, struct i915_oa_config *oa_config; int ret; - if (!perf->i915) { - drm_dbg(&perf->i915->drm, - "i915 perf interface not available for this system\n"); + if (!perf->i915) return -ENOTSUPP; - } if (i915_perf_stream_paranoid && !perfmon_capable()) { drm_dbg(&perf->i915->drm, diff --git a/drivers/gpu/drm/i915/i915_pmu.c b/drivers/gpu/drm/i915/i915_pmu.c index 0b488d49694ca..5fdaa2d36fdda 100644 --- a/drivers/gpu/drm/i915/i915_pmu.c +++ b/drivers/gpu/drm/i915/i915_pmu.c @@ -761,9 +761,18 @@ static void i915_pmu_event_start(struct perf_event *event, int flags) static void i915_pmu_event_stop(struct perf_event *event, int flags) { + struct drm_i915_private *i915 = + container_of(event->pmu, typeof(*i915), pmu.base); + struct i915_pmu *pmu = &i915->pmu; + + if (pmu->closed) + goto out; + if (flags & PERF_EF_UPDATE) i915_pmu_event_read(event); i915_pmu_disable(event); + +out: event->hw.state = PERF_HES_STOPPED; } diff --git a/drivers/gpu/drm/mediatek/mtk_drm_crtc.c b/drivers/gpu/drm/mediatek/mtk_drm_crtc.c index 6497c9fcd2af7..f2264633be1b7 100644 --- a/drivers/gpu/drm/mediatek/mtk_drm_crtc.c +++ b/drivers/gpu/drm/mediatek/mtk_drm_crtc.c @@ -116,10 +116,9 @@ static int mtk_drm_cmdq_pkt_create(struct cmdq_client *client, struct cmdq_pkt * dma_addr_t dma_addr; pkt->va_base = kzalloc(size, GFP_KERNEL); - if (!pkt->va_base) { - kfree(pkt); + if (!pkt->va_base) return -ENOMEM; - } + pkt->buf_size = size; pkt->cl = (void *)client; @@ -129,7 +128,6 @@ static int mtk_drm_cmdq_pkt_create(struct cmdq_client *client, struct cmdq_pkt * if (dma_mapping_error(dev, dma_addr)) { dev_err(dev, "dma map failed, size=%u\n", (u32)(u64)size); kfree(pkt->va_base); - kfree(pkt); return -ENOMEM; } @@ -145,7 +143,6 @@ static void mtk_drm_cmdq_pkt_destroy(struct cmdq_pkt *pkt) dma_unmap_single(client->chan->mbox->dev, pkt->pa_base, pkt->buf_size, DMA_TO_DEVICE); kfree(pkt->va_base); - kfree(pkt); } #endif @@ -365,6 +362,9 @@ static int mtk_crtc_ddp_hw_init(struct mtk_drm_crtc *mtk_crtc) unsigned int local_layer; plane_state = to_mtk_plane_state(plane->state); + + /* should not enable layer before crtc enabled */ + plane_state->pending.enable = false; comp = mtk_drm_ddp_comp_for_plane(crtc, plane, &local_layer); if (comp) mtk_ddp_comp_layer_config(comp, local_layer, diff --git a/drivers/gpu/drm/mediatek/mtk_drm_gem.c b/drivers/gpu/drm/mediatek/mtk_drm_gem.c index 726a34c4725c4..b983adffa3929 100644 --- a/drivers/gpu/drm/mediatek/mtk_drm_gem.c +++ b/drivers/gpu/drm/mediatek/mtk_drm_gem.c @@ -242,7 +242,11 @@ int mtk_drm_gem_prime_vmap(struct drm_gem_object *obj, struct dma_buf_map *map) mtk_gem->kvaddr = vmap(mtk_gem->pages, npages, VM_MAP, pgprot_writecombine(PAGE_KERNEL)); - + if (!mtk_gem->kvaddr) { + kfree(sgt); + kfree(mtk_gem->pages); + return -ENOMEM; + } out: kfree(sgt); dma_buf_map_set_vaddr(map, mtk_gem->kvaddr); diff --git a/drivers/gpu/drm/mediatek/mtk_drm_plane.c b/drivers/gpu/drm/mediatek/mtk_drm_plane.c index 734a1fb052dfd..eda072a3bf9ae 100644 --- a/drivers/gpu/drm/mediatek/mtk_drm_plane.c +++ b/drivers/gpu/drm/mediatek/mtk_drm_plane.c @@ -154,9 +154,9 @@ static void mtk_plane_atomic_async_update(struct drm_plane *plane, plane->state->src_y = new_state->src_y; plane->state->src_h = new_state->src_h; plane->state->src_w = new_state->src_w; - swap(plane->state->fb, new_state->fb); mtk_plane_update_new_state(new_state, new_plane_state); + swap(plane->state->fb, new_state->fb); wmb(); /* Make sure the above parameters are set before update */ new_plane_state->pending.async_dirty = true; mtk_drm_crtc_async_update(new_state->crtc, plane, state); diff --git a/drivers/gpu/drm/mediatek/mtk_dsi.c b/drivers/gpu/drm/mediatek/mtk_dsi.c index 98b1204c92906..57eaf111b6a8a 100644 --- a/drivers/gpu/drm/mediatek/mtk_dsi.c +++ b/drivers/gpu/drm/mediatek/mtk_dsi.c @@ -406,7 +406,7 @@ static void mtk_dsi_rxtx_control(struct mtk_dsi *dsi) if (dsi->mode_flags & MIPI_DSI_CLOCK_NON_CONTINUOUS) tmp_reg |= HSTX_CKLP_EN; - if (!(dsi->mode_flags & MIPI_DSI_MODE_NO_EOT_PACKET)) + if (dsi->mode_flags & MIPI_DSI_MODE_NO_EOT_PACKET) tmp_reg |= DIS_EOT; writel(tmp_reg, dsi->regs + DSI_TXRX_CTRL); @@ -483,7 +483,7 @@ static void mtk_dsi_config_vdo_timing(struct mtk_dsi *dsi) timing->da_hs_zero + timing->da_hs_exit + 3; delta = dsi->mode_flags & MIPI_DSI_MODE_VIDEO_BURST ? 18 : 12; - delta += dsi->mode_flags & MIPI_DSI_MODE_NO_EOT_PACKET ? 2 : 0; + delta += dsi->mode_flags & MIPI_DSI_MODE_NO_EOT_PACKET ? 0 : 2; horizontal_frontporch_byte = vm->hfront_porch * dsi_tmp_buf_bpp; horizontal_front_back_byte = horizontal_frontporch_byte + horizontal_backporch_byte; diff --git a/drivers/gpu/drm/meson/meson_encoder_hdmi.c b/drivers/gpu/drm/meson/meson_encoder_hdmi.c index a7692584487cc..b075c9bc3a500 100644 --- a/drivers/gpu/drm/meson/meson_encoder_hdmi.c +++ b/drivers/gpu/drm/meson/meson_encoder_hdmi.c @@ -326,6 +326,8 @@ static void meson_encoder_hdmi_hpd_notify(struct drm_bridge *bridge, return; cec_notifier_set_phys_addr_from_edid(encoder_hdmi->cec_notifier, edid); + + kfree(edid); } else cec_notifier_phys_addr_invalidate(encoder_hdmi->cec_notifier); } diff --git a/drivers/gpu/drm/msm/adreno/a2xx_gpu.c b/drivers/gpu/drm/msm/adreno/a2xx_gpu.c index bdc989183c648..17d6a1ecb1110 100644 --- a/drivers/gpu/drm/msm/adreno/a2xx_gpu.c +++ b/drivers/gpu/drm/msm/adreno/a2xx_gpu.c @@ -521,6 +521,10 @@ struct msm_gpu *a2xx_gpu_init(struct drm_device *dev) gpu->perfcntrs = perfcntrs; gpu->num_perfcntrs = ARRAY_SIZE(perfcntrs); + ret = adreno_gpu_init(dev, pdev, adreno_gpu, &funcs, 1); + if (ret) + goto fail; + if (adreno_is_a20x(adreno_gpu)) adreno_gpu->registers = a200_registers; else if (adreno_is_a225(adreno_gpu)) @@ -528,10 +532,6 @@ struct msm_gpu *a2xx_gpu_init(struct drm_device *dev) else adreno_gpu->registers = a220_registers; - ret = adreno_gpu_init(dev, pdev, adreno_gpu, &funcs, 1); - if (ret) - goto fail; - if (!gpu->aspace) { dev_err(dev->dev, "No memory protection without MMU\n"); if (!allow_vram_carveout) { diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_plane.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_plane.c index 59390dc3d1b8c..9c30ab106b0a1 100644 --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_plane.c +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_plane.c @@ -158,6 +158,7 @@ static void _dpu_plane_calc_bw(struct drm_plane *plane, const struct dpu_format *fmt = NULL; struct dpu_kms *dpu_kms = _dpu_plane_get_kms(plane); int src_width, src_height, dst_height, fps; + u64 plane_pixel_rate, plane_bit_rate; u64 plane_prefill_bw; u64 plane_bw; u32 hw_latency_lines; @@ -180,13 +181,12 @@ static void _dpu_plane_calc_bw(struct drm_plane *plane, scale_factor = src_height > dst_height ? mult_frac(src_height, 1, dst_height) : 1; - plane_bw = - src_width * mode->vtotal * fps * fmt->bpp * - scale_factor; + plane_pixel_rate = src_width * mode->vtotal * fps; + plane_bit_rate = plane_pixel_rate * fmt->bpp; - plane_prefill_bw = - src_width * hw_latency_lines * fps * fmt->bpp * - scale_factor * mode->vtotal; + plane_bw = plane_bit_rate * scale_factor; + + plane_prefill_bw = plane_bw * hw_latency_lines; if ((vbp+vpw) > hw_latency_lines) do_div(plane_prefill_bw, (vbp+vpw)); diff --git a/drivers/gpu/drm/msm/disp/mdp5/mdp5_plane.c b/drivers/gpu/drm/msm/disp/mdp5/mdp5_plane.c index 9c42776cb9a8a..f9cae6460c3be 100644 --- a/drivers/gpu/drm/msm/disp/mdp5/mdp5_plane.c +++ b/drivers/gpu/drm/msm/disp/mdp5/mdp5_plane.c @@ -128,8 +128,7 @@ static void mdp5_plane_destroy_state(struct drm_plane *plane, { struct mdp5_plane_state *pstate = to_mdp5_plane_state(state); - if (state->fb) - drm_framebuffer_put(state->fb); + __drm_atomic_helper_plane_destroy_state(state); kfree(pstate); } diff --git a/drivers/gpu/drm/msm/disp/msm_disp_snapshot_util.c b/drivers/gpu/drm/msm/disp/msm_disp_snapshot_util.c index 369e57f73a470..8746ceae8fca9 100644 --- a/drivers/gpu/drm/msm/disp/msm_disp_snapshot_util.c +++ b/drivers/gpu/drm/msm/disp/msm_disp_snapshot_util.c @@ -185,5 +185,5 @@ void msm_disp_snapshot_add_block(struct msm_disp_state *disp_state, u32 len, new_blk->base_addr = base_addr; msm_disp_state_dump_regs(&new_blk->state, new_blk->size, base_addr); - list_add(&new_blk->node, &disp_state->blocks); + list_add_tail(&new_blk->node, &disp_state->blocks); } diff --git a/drivers/gpu/drm/msm/dp/dp_ctrl.c b/drivers/gpu/drm/msm/dp/dp_ctrl.c index 6d9eec98e0d38..854173df67018 100644 --- a/drivers/gpu/drm/msm/dp/dp_ctrl.c +++ b/drivers/gpu/drm/msm/dp/dp_ctrl.c @@ -1682,13 +1682,6 @@ int dp_ctrl_on_link(struct dp_ctrl *dp_ctrl) return rc; while (--link_train_max_retries) { - rc = dp_ctrl_reinitialize_mainlink(ctrl); - if (rc) { - DRM_ERROR("Failed to reinitialize mainlink. rc=%d\n", - rc); - break; - } - training_step = DP_TRAINING_NONE; rc = dp_ctrl_setup_main_link(ctrl, &training_step); if (rc == 0) { @@ -1740,6 +1733,12 @@ int dp_ctrl_on_link(struct dp_ctrl *dp_ctrl) /* stop link training before start re training */ dp_ctrl_clear_training_pattern(ctrl); } + + rc = dp_ctrl_reinitialize_mainlink(ctrl); + if (rc) { + DRM_ERROR("Failed to reinitialize mainlink. rc=%d\n", rc); + break; + } } if (ctrl->link->sink_request & DP_TEST_LINK_PHY_TEST_PATTERN) diff --git a/drivers/gpu/drm/msm/dp/dp_panel.c b/drivers/gpu/drm/msm/dp/dp_panel.c index 62b742e701d2c..f9d31069f4848 100644 --- a/drivers/gpu/drm/msm/dp/dp_panel.c +++ b/drivers/gpu/drm/msm/dp/dp_panel.c @@ -263,26 +263,9 @@ int dp_panel_get_modes(struct dp_panel *dp_panel, static u8 dp_panel_get_edid_checksum(struct edid *edid) { - struct edid *last_block; - u8 *raw_edid; - bool is_edid_corrupt = false; + edid += edid->extensions; - if (!edid) { - DRM_ERROR("invalid edid input\n"); - return 0; - } - - raw_edid = (u8 *)edid; - raw_edid += (edid->extensions * EDID_LENGTH); - last_block = (struct edid *)raw_edid; - - /* block type extension */ - drm_edid_block_valid(raw_edid, 1, false, &is_edid_corrupt); - if (!is_edid_corrupt) - return last_block->checksum; - - DRM_ERROR("Invalid block, no checksum\n"); - return 0; + return edid->checksum; } void dp_panel_handle_sink_request(struct dp_panel *dp_panel) diff --git a/drivers/gpu/drm/msm/dsi/dsi_host.c b/drivers/gpu/drm/msm/dsi/dsi_host.c index d3ec4d67a9a35..8d0612caf6c21 100644 --- a/drivers/gpu/drm/msm/dsi/dsi_host.c +++ b/drivers/gpu/drm/msm/dsi/dsi_host.c @@ -1079,9 +1079,21 @@ static void dsi_wait4video_done(struct msm_dsi_host *msm_host) static void dsi_wait4video_eng_busy(struct msm_dsi_host *msm_host) { + u32 data; + if (!(msm_host->mode_flags & MIPI_DSI_MODE_VIDEO)) return; + data = dsi_read(msm_host, REG_DSI_STATUS0); + + /* if video mode engine is not busy, its because + * either timing engine was not turned on or the + * DSI controller has finished transmitting the video + * data already, so no need to wait in those cases + */ + if (!(data & DSI_STATUS0_VIDEO_MODE_ENGINE_BUSY)) + return; + if (msm_host->power_on && msm_host->enabled) { dsi_wait4video_done(msm_host); /* delay 4 ms to skip BLLP */ @@ -1142,8 +1154,7 @@ static void dsi_tx_buf_free(struct msm_dsi_host *msm_host) priv = dev->dev_private; if (msm_host->tx_gem_obj) { - msm_gem_unpin_iova(msm_host->tx_gem_obj, priv->kms->aspace); - drm_gem_object_put(msm_host->tx_gem_obj); + msm_gem_kernel_put(msm_host->tx_gem_obj, priv->kms->aspace); msm_host->tx_gem_obj = NULL; } @@ -1905,10 +1916,9 @@ int msm_dsi_host_init(struct msm_dsi *msm_dsi) } msm_host->irq = irq_of_parse_and_map(pdev->dev.of_node, 0); - if (msm_host->irq < 0) { - ret = msm_host->irq; - dev_err(&pdev->dev, "failed to get irq: %d\n", ret); - return ret; + if (!msm_host->irq) { + dev_err(&pdev->dev, "failed to get irq\n"); + return -EINVAL; } /* do not autoenable, will be enabled later */ diff --git a/drivers/gpu/drm/panel/panel-arm-versatile.c b/drivers/gpu/drm/panel/panel-arm-versatile.c index abb0788843c60..503ecea72c5ea 100644 --- a/drivers/gpu/drm/panel/panel-arm-versatile.c +++ b/drivers/gpu/drm/panel/panel-arm-versatile.c @@ -267,6 +267,8 @@ static int versatile_panel_get_modes(struct drm_panel *panel, connector->display_info.bus_flags = vpanel->panel_type->bus_flags; mode = drm_mode_duplicate(connector->dev, &vpanel->panel_type->mode); + if (!mode) + return -ENOMEM; drm_mode_set_name(mode); mode->type = DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED; diff --git a/drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c b/drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c index db9d0b86d5428..9e518213a54ff 100644 --- a/drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c +++ b/drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c @@ -36,6 +36,7 @@ struct panel_desc { const struct panel_init_cmd *init_cmds; unsigned int lanes; bool discharge_on_disable; + bool lp11_before_reset; }; struct boe_panel { @@ -551,6 +552,10 @@ static int boe_panel_prepare(struct drm_panel *panel) usleep_range(5000, 10000); + if (boe->desc->lp11_before_reset) { + mipi_dsi_dcs_nop(boe->dsi); + usleep_range(1000, 2000); + } gpiod_set_value(boe->enable_gpio, 1); usleep_range(1000, 2000); gpiod_set_value(boe->enable_gpio, 0); @@ -692,6 +697,7 @@ static const struct panel_desc auo_b101uan08_3_desc = { .mode_flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_SYNC_PULSE | MIPI_DSI_MODE_LPM, .init_cmds = auo_b101uan08_3_init_cmd, + .lp11_before_reset = true, }; static const struct drm_display_mode boe_tv105wum_nw0_default_mode = { @@ -719,6 +725,7 @@ static const struct panel_desc boe_tv105wum_nw0_desc = { .mode_flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_SYNC_PULSE | MIPI_DSI_MODE_LPM, .init_cmds = boe_init_cmd, + .lp11_before_reset = true, }; static int boe_panel_get_modes(struct drm_panel *panel, diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c index 7cf0af78b7bc9..d9f1675c348e5 100644 --- a/drivers/gpu/drm/panel/panel-simple.c +++ b/drivers/gpu/drm/panel/panel-simple.c @@ -1448,7 +1448,9 @@ static const struct panel_desc auo_t215hvn01 = { .delay = { .disable = 5, .unprepare = 1000, - } + }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, + .connector_type = DRM_MODE_CONNECTOR_LVDS, }; static const struct drm_display_mode avic_tm070ddh03_mode = { @@ -2530,13 +2532,13 @@ static const struct panel_desc innolux_g070y2_l01 = { static const struct display_timing innolux_g101ice_l01_timing = { .pixelclock = { 60400000, 71100000, 74700000 }, .hactive = { 1280, 1280, 1280 }, - .hfront_porch = { 41, 80, 100 }, - .hback_porch = { 40, 79, 99 }, - .hsync_len = { 1, 1, 1 }, + .hfront_porch = { 30, 60, 70 }, + .hback_porch = { 30, 60, 70 }, + .hsync_len = { 22, 40, 60 }, .vactive = { 800, 800, 800 }, - .vfront_porch = { 5, 11, 14 }, - .vback_porch = { 4, 11, 14 }, - .vsync_len = { 1, 1, 1 }, + .vfront_porch = { 3, 8, 14 }, + .vback_porch = { 3, 8, 14 }, + .vsync_len = { 4, 7, 12 }, .flags = DISPLAY_FLAGS_DE_HIGH, }; @@ -2553,6 +2555,7 @@ static const struct panel_desc innolux_g101ice_l01 = { .disable = 200, }, .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, + .bus_flags = DRM_BUS_FLAG_DE_HIGH, .connector_type = DRM_MODE_CONNECTOR_LVDS, }; diff --git a/drivers/gpu/drm/panel/panel-sitronix-st7703.c b/drivers/gpu/drm/panel/panel-sitronix-st7703.c index a2c303e5732c0..f50cc70e6337c 100644 --- a/drivers/gpu/drm/panel/panel-sitronix-st7703.c +++ b/drivers/gpu/drm/panel/panel-sitronix-st7703.c @@ -428,29 +428,30 @@ static int st7703_prepare(struct drm_panel *panel) return 0; dev_dbg(ctx->dev, "Resetting the panel\n"); - ret = regulator_enable(ctx->vcc); + gpiod_set_value_cansleep(ctx->reset_gpio, 1); + + ret = regulator_enable(ctx->iovcc); if (ret < 0) { - dev_err(ctx->dev, "Failed to enable vcc supply: %d\n", ret); + dev_err(ctx->dev, "Failed to enable iovcc supply: %d\n", ret); return ret; } - ret = regulator_enable(ctx->iovcc); + + ret = regulator_enable(ctx->vcc); if (ret < 0) { - dev_err(ctx->dev, "Failed to enable iovcc supply: %d\n", ret); - goto disable_vcc; + dev_err(ctx->dev, "Failed to enable vcc supply: %d\n", ret); + regulator_disable(ctx->iovcc); + return ret; } - gpiod_set_value_cansleep(ctx->reset_gpio, 1); - usleep_range(20, 40); + /* Give power supplies time to stabilize before deasserting reset. */ + usleep_range(10000, 20000); + gpiod_set_value_cansleep(ctx->reset_gpio, 0); - msleep(20); + usleep_range(15000, 20000); ctx->prepared = true; return 0; - -disable_vcc: - regulator_disable(ctx->vcc); - return ret; } static int st7703_get_modes(struct drm_panel *panel, diff --git a/drivers/gpu/drm/panel/panel-tpo-tpg110.c b/drivers/gpu/drm/panel/panel-tpo-tpg110.c index e3791dad6830c..3360e7ccb0a7d 100644 --- a/drivers/gpu/drm/panel/panel-tpo-tpg110.c +++ b/drivers/gpu/drm/panel/panel-tpo-tpg110.c @@ -379,6 +379,8 @@ static int tpg110_get_modes(struct drm_panel *panel, connector->display_info.bus_flags = tpg->panel_mode->bus_flags; mode = drm_mode_duplicate(connector->dev, &tpg->panel_mode->mode); + if (!mode) + return -ENOMEM; drm_mode_set_name(mode); mode->type = DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED; diff --git a/drivers/gpu/drm/qxl/qxl_display.c b/drivers/gpu/drm/qxl/qxl_display.c index 9e0a1e8360117..dc04412784a0d 100644 --- a/drivers/gpu/drm/qxl/qxl_display.c +++ b/drivers/gpu/drm/qxl/qxl_display.c @@ -1221,6 +1221,9 @@ int qxl_destroy_monitors_object(struct qxl_device *qdev) if (!qdev->monitors_config_bo) return 0; + kfree(qdev->dumb_heads); + qdev->dumb_heads = NULL; + qdev->monitors_config = NULL; qdev->ram_header->monitors_config = 0; diff --git a/drivers/gpu/drm/radeon/cik.c b/drivers/gpu/drm/radeon/cik.c index 81b4de7be9f2b..a42f29b6ed7cf 100644 --- a/drivers/gpu/drm/radeon/cik.c +++ b/drivers/gpu/drm/radeon/cik.c @@ -9534,17 +9534,8 @@ static void cik_pcie_gen3_enable(struct radeon_device *rdev) u16 bridge_cfg2, gpu_cfg2; u32 max_lw, current_lw, tmp; - pcie_capability_read_word(root, PCI_EXP_LNKCTL, - &bridge_cfg); - pcie_capability_read_word(rdev->pdev, PCI_EXP_LNKCTL, - &gpu_cfg); - - tmp16 = bridge_cfg | PCI_EXP_LNKCTL_HAWD; - pcie_capability_write_word(root, PCI_EXP_LNKCTL, tmp16); - - tmp16 = gpu_cfg | PCI_EXP_LNKCTL_HAWD; - pcie_capability_write_word(rdev->pdev, PCI_EXP_LNKCTL, - tmp16); + pcie_capability_set_word(root, PCI_EXP_LNKCTL, PCI_EXP_LNKCTL_HAWD); + pcie_capability_set_word(rdev->pdev, PCI_EXP_LNKCTL, PCI_EXP_LNKCTL_HAWD); tmp = RREG32_PCIE_PORT(PCIE_LC_STATUS1); max_lw = (tmp & LC_DETECTED_LINK_WIDTH_MASK) >> LC_DETECTED_LINK_WIDTH_SHIFT; @@ -9591,21 +9582,14 @@ static void cik_pcie_gen3_enable(struct radeon_device *rdev) msleep(100); /* linkctl */ - pcie_capability_read_word(root, PCI_EXP_LNKCTL, - &tmp16); - tmp16 &= ~PCI_EXP_LNKCTL_HAWD; - tmp16 |= (bridge_cfg & PCI_EXP_LNKCTL_HAWD); - pcie_capability_write_word(root, PCI_EXP_LNKCTL, - tmp16); - - pcie_capability_read_word(rdev->pdev, - PCI_EXP_LNKCTL, - &tmp16); - tmp16 &= ~PCI_EXP_LNKCTL_HAWD; - tmp16 |= (gpu_cfg & PCI_EXP_LNKCTL_HAWD); - pcie_capability_write_word(rdev->pdev, - PCI_EXP_LNKCTL, - tmp16); + pcie_capability_clear_and_set_word(root, PCI_EXP_LNKCTL, + PCI_EXP_LNKCTL_HAWD, + bridge_cfg & + PCI_EXP_LNKCTL_HAWD); + pcie_capability_clear_and_set_word(rdev->pdev, PCI_EXP_LNKCTL, + PCI_EXP_LNKCTL_HAWD, + gpu_cfg & + PCI_EXP_LNKCTL_HAWD); /* linkctl2 */ pcie_capability_read_word(root, PCI_EXP_LNKCTL2, diff --git a/drivers/gpu/drm/radeon/evergreen.c b/drivers/gpu/drm/radeon/evergreen.c index eeb590d2dec2e..e84596bb98f7a 100644 --- a/drivers/gpu/drm/radeon/evergreen.c +++ b/drivers/gpu/drm/radeon/evergreen.c @@ -4820,14 +4820,15 @@ int evergreen_irq_process(struct radeon_device *rdev) break; case 44: /* hdmi */ afmt_idx = src_data; - if (!(afmt_status[afmt_idx] & AFMT_AZ_FORMAT_WTRIG)) - DRM_DEBUG("IH: IH event w/o asserted irq bit?\n"); - if (afmt_idx > 5) { DRM_ERROR("Unhandled interrupt: %d %d\n", src_id, src_data); break; } + + if (!(afmt_status[afmt_idx] & AFMT_AZ_FORMAT_WTRIG)) + DRM_DEBUG("IH: IH event w/o asserted irq bit?\n"); + afmt_status[afmt_idx] &= ~AFMT_AZ_FORMAT_WTRIG; queue_hdmi = true; DRM_DEBUG("IH: HDMI%d\n", afmt_idx + 1); diff --git a/drivers/gpu/drm/radeon/si.c b/drivers/gpu/drm/radeon/si.c index 013e44ed0f39a..4679b798a0384 100644 --- a/drivers/gpu/drm/radeon/si.c +++ b/drivers/gpu/drm/radeon/si.c @@ -7131,17 +7131,8 @@ static void si_pcie_gen3_enable(struct radeon_device *rdev) u16 bridge_cfg2, gpu_cfg2; u32 max_lw, current_lw, tmp; - pcie_capability_read_word(root, PCI_EXP_LNKCTL, - &bridge_cfg); - pcie_capability_read_word(rdev->pdev, PCI_EXP_LNKCTL, - &gpu_cfg); - - tmp16 = bridge_cfg | PCI_EXP_LNKCTL_HAWD; - pcie_capability_write_word(root, PCI_EXP_LNKCTL, tmp16); - - tmp16 = gpu_cfg | PCI_EXP_LNKCTL_HAWD; - pcie_capability_write_word(rdev->pdev, PCI_EXP_LNKCTL, - tmp16); + pcie_capability_set_word(root, PCI_EXP_LNKCTL, PCI_EXP_LNKCTL_HAWD); + pcie_capability_set_word(rdev->pdev, PCI_EXP_LNKCTL, PCI_EXP_LNKCTL_HAWD); tmp = RREG32_PCIE(PCIE_LC_STATUS1); max_lw = (tmp & LC_DETECTED_LINK_WIDTH_MASK) >> LC_DETECTED_LINK_WIDTH_SHIFT; @@ -7188,22 +7179,14 @@ static void si_pcie_gen3_enable(struct radeon_device *rdev) msleep(100); /* linkctl */ - pcie_capability_read_word(root, PCI_EXP_LNKCTL, - &tmp16); - tmp16 &= ~PCI_EXP_LNKCTL_HAWD; - tmp16 |= (bridge_cfg & PCI_EXP_LNKCTL_HAWD); - pcie_capability_write_word(root, - PCI_EXP_LNKCTL, - tmp16); - - pcie_capability_read_word(rdev->pdev, - PCI_EXP_LNKCTL, - &tmp16); - tmp16 &= ~PCI_EXP_LNKCTL_HAWD; - tmp16 |= (gpu_cfg & PCI_EXP_LNKCTL_HAWD); - pcie_capability_write_word(rdev->pdev, - PCI_EXP_LNKCTL, - tmp16); + pcie_capability_clear_and_set_word(root, PCI_EXP_LNKCTL, + PCI_EXP_LNKCTL_HAWD, + bridge_cfg & + PCI_EXP_LNKCTL_HAWD); + pcie_capability_clear_and_set_word(rdev->pdev, PCI_EXP_LNKCTL, + PCI_EXP_LNKCTL_HAWD, + gpu_cfg & + PCI_EXP_LNKCTL_HAWD); /* linkctl2 */ pcie_capability_read_word(root, PCI_EXP_LNKCTL2, diff --git a/drivers/gpu/drm/rockchip/cdn-dp-core.c b/drivers/gpu/drm/rockchip/cdn-dp-core.c index 20e63cadec8c7..b9ef35a35c857 100644 --- a/drivers/gpu/drm/rockchip/cdn-dp-core.c +++ b/drivers/gpu/drm/rockchip/cdn-dp-core.c @@ -1146,6 +1146,7 @@ static int cdn_dp_probe(struct platform_device *pdev) struct cdn_dp_device *dp; struct extcon_dev *extcon; struct phy *phy; + int ret; int i; dp = devm_kzalloc(dev, sizeof(*dp), GFP_KERNEL); @@ -1186,9 +1187,19 @@ static int cdn_dp_probe(struct platform_device *pdev) mutex_init(&dp->lock); dev_set_drvdata(dev, dp); - cdn_dp_audio_codec_init(dp, dev); + ret = cdn_dp_audio_codec_init(dp, dev); + if (ret) + return ret; + + ret = component_add(dev, &cdn_dp_component_ops); + if (ret) + goto err_audio_deinit; - return component_add(dev, &cdn_dp_component_ops); + return 0; + +err_audio_deinit: + platform_device_unregister(dp->audio_pdev); + return ret; } static int cdn_dp_remove(struct platform_device *pdev) diff --git a/drivers/gpu/drm/rockchip/rockchip_drm_gem.c b/drivers/gpu/drm/rockchip/rockchip_drm_gem.c index 3b18b6a7acd3e..bde358d8309c3 100644 --- a/drivers/gpu/drm/rockchip/rockchip_drm_gem.c +++ b/drivers/gpu/drm/rockchip/rockchip_drm_gem.c @@ -39,7 +39,7 @@ static int rockchip_gem_iommu_map(struct rockchip_gem_object *rk_obj) ret = iommu_map_sgtable(private->domain, rk_obj->dma_addr, rk_obj->sgt, prot); - if (ret < rk_obj->base.size) { + if (ret < (ssize_t)rk_obj->base.size) { DRM_ERROR("failed to map buffer: size=%zd request_size=%zd\n", ret, rk_obj->base.size); ret = -ENOMEM; diff --git a/drivers/gpu/drm/rockchip/rockchip_drm_vop.c b/drivers/gpu/drm/rockchip/rockchip_drm_vop.c index cfe13b203b891..c7106f1165466 100644 --- a/drivers/gpu/drm/rockchip/rockchip_drm_vop.c +++ b/drivers/gpu/drm/rockchip/rockchip_drm_vop.c @@ -249,14 +249,22 @@ static inline void vop_cfg_done(struct vop *vop) VOP_REG_SET(vop, common, cfg_done, 1); } -static bool has_rb_swapped(uint32_t format) +static bool has_rb_swapped(uint32_t version, uint32_t format) { switch (format) { case DRM_FORMAT_XBGR8888: case DRM_FORMAT_ABGR8888: - case DRM_FORMAT_BGR888: case DRM_FORMAT_BGR565: return true; + /* + * full framework (IP version 3.x) only need rb swapped for RGB888 and + * little framework (IP version 2.x) only need rb swapped for BGR888, + * check for 3.x to also only rb swap BGR888 for unknown vop version + */ + case DRM_FORMAT_RGB888: + return VOP_MAJOR(version) == 3; + case DRM_FORMAT_BGR888: + return VOP_MAJOR(version) != 3; default: return false; } @@ -998,7 +1006,7 @@ static void vop_plane_atomic_update(struct drm_plane *plane, VOP_WIN_SET(vop, win, dsp_info, dsp_info); VOP_WIN_SET(vop, win, dsp_st, dsp_st); - rb_swap = has_rb_swapped(fb->format->format); + rb_swap = has_rb_swapped(vop->data->version, fb->format->format); VOP_WIN_SET(vop, win, rb_swap, rb_swap); /* @@ -1554,7 +1562,8 @@ static struct drm_crtc_state *vop_crtc_duplicate_state(struct drm_crtc *crtc) if (WARN_ON(!crtc->state)) return NULL; - rockchip_state = kzalloc(sizeof(*rockchip_state), GFP_KERNEL); + rockchip_state = kmemdup(to_rockchip_crtc_state(crtc->state), + sizeof(*rockchip_state), GFP_KERNEL); if (!rockchip_state) return NULL; @@ -1579,7 +1588,10 @@ static void vop_crtc_reset(struct drm_crtc *crtc) if (crtc->state) vop_crtc_destroy_state(crtc, crtc->state); - __drm_atomic_helper_crtc_reset(crtc, &crtc_state->base); + if (crtc_state) + __drm_atomic_helper_crtc_reset(crtc, &crtc_state->base); + else + __drm_atomic_helper_crtc_reset(crtc, NULL); } #ifdef CONFIG_DRM_ANALOGIX_DP diff --git a/drivers/gpu/drm/tegra/dpaux.c b/drivers/gpu/drm/tegra/dpaux.c index 1f96e416fa082..c96c07c6458c3 100644 --- a/drivers/gpu/drm/tegra/dpaux.c +++ b/drivers/gpu/drm/tegra/dpaux.c @@ -468,7 +468,7 @@ static int tegra_dpaux_probe(struct platform_device *pdev) dpaux->irq = platform_get_irq(pdev, 0); if (dpaux->irq < 0) - return -ENXIO; + return dpaux->irq; if (!pdev->dev.pm_domain) { dpaux->rst = devm_reset_control_get(&pdev->dev, "dpaux"); diff --git a/drivers/gpu/drm/tiny/gm12u320.c b/drivers/gpu/drm/tiny/gm12u320.c index 6bc0c298739cc..9985a4419bb0c 100644 --- a/drivers/gpu/drm/tiny/gm12u320.c +++ b/drivers/gpu/drm/tiny/gm12u320.c @@ -67,10 +67,10 @@ MODULE_PARM_DESC(eco_mode, "Turn on Eco mode (less bright, more silent)"); #define READ_STATUS_SIZE 13 #define MISC_VALUE_SIZE 4 -#define CMD_TIMEOUT msecs_to_jiffies(200) -#define DATA_TIMEOUT msecs_to_jiffies(1000) -#define IDLE_TIMEOUT msecs_to_jiffies(2000) -#define FIRST_FRAME_TIMEOUT msecs_to_jiffies(2000) +#define CMD_TIMEOUT 200 +#define DATA_TIMEOUT 1000 +#define IDLE_TIMEOUT 2000 +#define FIRST_FRAME_TIMEOUT 2000 #define MISC_REQ_GET_SET_ECO_A 0xff #define MISC_REQ_GET_SET_ECO_B 0x35 @@ -386,7 +386,7 @@ static void gm12u320_fb_update_work(struct work_struct *work) * switches back to showing its logo. */ queue_delayed_work(system_long_wq, &gm12u320->fb_update.work, - IDLE_TIMEOUT); + msecs_to_jiffies(IDLE_TIMEOUT)); return; err: diff --git a/drivers/gpu/drm/ttm/ttm_device.c b/drivers/gpu/drm/ttm/ttm_device.c index 2df59b3c2ea16..291cdd893fc50 100644 --- a/drivers/gpu/drm/ttm/ttm_device.c +++ b/drivers/gpu/drm/ttm/ttm_device.c @@ -234,10 +234,6 @@ void ttm_device_fini(struct ttm_device *bdev) struct ttm_resource_manager *man; unsigned i; - man = ttm_manager_type(bdev, TTM_PL_SYSTEM); - ttm_resource_manager_set_used(man, false); - ttm_set_driver_manager(bdev, TTM_PL_SYSTEM, NULL); - mutex_lock(&ttm_global_mutex); list_del(&bdev->device_list); mutex_unlock(&ttm_global_mutex); @@ -247,6 +243,10 @@ void ttm_device_fini(struct ttm_device *bdev) if (ttm_bo_delayed_delete(bdev, true)) pr_debug("Delayed destroy list was clean\n"); + man = ttm_manager_type(bdev, TTM_PL_SYSTEM); + ttm_resource_manager_set_used(man, false); + ttm_set_driver_manager(bdev, TTM_PL_SYSTEM, NULL); + spin_lock(&bdev->lru_lock); for (i = 0; i < TTM_MAX_BO_PRIORITY; ++i) if (list_empty(&man->lru[0])) diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c index 8449d09c06f7a..ab246cff209a1 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c @@ -29,7 +29,7 @@ #include #include #include -#include +#include #include #include @@ -666,7 +666,7 @@ static int vmw_dma_select_mode(struct vmw_private *dev_priv) [vmw_dma_map_bind] = "Giving up DMA mappings early."}; /* TTM currently doesn't fully support SEV encryption. */ - if (mem_encrypt_active()) + if (cc_platform_has(CC_ATTR_MEM_ENCRYPT)) return -EINVAL; if (vmw_force_coherent) diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c b/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c index ed75622bf7082..b91f8d17404d6 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c @@ -1632,7 +1632,7 @@ static int vmw_cmd_tex_state(struct vmw_private *dev_priv, { VMW_DECLARE_CMD_VAR(*cmd, SVGA3dCmdSetTextureState); SVGA3dTextureState *last_state = (SVGA3dTextureState *) - ((unsigned long) header + header->size + sizeof(header)); + ((unsigned long) header + header->size + sizeof(*header)); SVGA3dTextureState *cur_state = (SVGA3dTextureState *) ((unsigned long) header + sizeof(*cmd)); struct vmw_resource *ctx; diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_msg.c b/drivers/gpu/drm/vmwgfx/vmwgfx_msg.c index 8d2437fa6894b..50fa3df0bc0ca 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_msg.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_msg.c @@ -28,7 +28,7 @@ #include #include #include -#include +#include #include #include @@ -160,7 +160,7 @@ static unsigned long vmw_port_hb_out(struct rpc_channel *channel, unsigned long msg_len = strlen(msg); /* HB port can't access encrypted memory. */ - if (hb && !mem_encrypt_active()) { + if (hb && !cc_platform_has(CC_ATTR_MEM_ENCRYPT)) { unsigned long bp = channel->cookie_high; u32 channel_id = (channel->channel_id << 16); @@ -216,7 +216,7 @@ static unsigned long vmw_port_hb_in(struct rpc_channel *channel, char *reply, unsigned long si, di, eax, ebx, ecx, edx; /* HB port can't access encrypted memory */ - if (hb && !mem_encrypt_active()) { + if (hb && !cc_platform_has(CC_ATTR_MEM_ENCRYPT)) { unsigned long bp = channel->cookie_low; u32 channel_id = (channel->channel_id << 16); diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c b/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c index 5d53a5f9d1237..872af7d4b3fc9 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c @@ -807,9 +807,9 @@ int vmw_surface_define_ioctl(struct drm_device *dev, void *data, metadata->num_sizes = num_sizes; user_srf->size = size; metadata->sizes = - memdup_user((struct drm_vmw_size __user *)(unsigned long) + memdup_array_user((struct drm_vmw_size __user *)(unsigned long) req->size_addr, - sizeof(*metadata->sizes) * metadata->num_sizes); + metadata->num_sizes, sizeof(*metadata->sizes)); if (IS_ERR(metadata->sizes)) { ret = PTR_ERR(metadata->sizes); goto out_no_sizes; diff --git a/drivers/gpu/drm/xlnx/zynqmp_dpsub.c b/drivers/gpu/drm/xlnx/zynqmp_dpsub.c index ac37053412a13..5bb42d0a2de98 100644 --- a/drivers/gpu/drm/xlnx/zynqmp_dpsub.c +++ b/drivers/gpu/drm/xlnx/zynqmp_dpsub.c @@ -200,7 +200,9 @@ static int zynqmp_dpsub_probe(struct platform_device *pdev) dpsub->dev = &pdev->dev; platform_set_drvdata(pdev, dpsub); - dma_set_mask(dpsub->dev, DMA_BIT_MASK(ZYNQMP_DISP_MAX_DMA_BIT)); + ret = dma_set_mask(dpsub->dev, DMA_BIT_MASK(ZYNQMP_DISP_MAX_DMA_BIT)); + if (ret) + return ret; /* Try the reserved memory. Proceed if there's none. */ of_reserved_mem_device_init(&pdev->dev); diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c index d941023c56289..7b76405df8c47 100644 --- a/drivers/hid/hid-core.c +++ b/drivers/hid/hid-core.c @@ -702,15 +702,22 @@ static void hid_close_report(struct hid_device *device) * Free a device structure, all reports, and all fields. */ -static void hid_device_release(struct device *dev) +void hiddev_free(struct kref *ref) { - struct hid_device *hid = to_hid_device(dev); + struct hid_device *hid = container_of(ref, struct hid_device, ref); hid_close_report(hid); kfree(hid->dev_rdesc); kfree(hid); } +static void hid_device_release(struct device *dev) +{ + struct hid_device *hid = to_hid_device(dev); + + kref_put(&hid->ref, hiddev_free); +} + /* * Fetch a report description item from the data stream. We support long * items, though they are not used yet. @@ -2442,10 +2449,12 @@ int hid_add_device(struct hid_device *hdev) hid_warn(hdev, "bad device descriptor (%d)\n", ret); } + hdev->id = atomic_inc_return(&id); + /* XXX hack, any other cleaner solution after the driver core * is converted to allow more than 20 bytes as the device name? */ dev_set_name(&hdev->dev, "%04X:%04X:%04X.%04X", hdev->bus, - hdev->vendor, hdev->product, atomic_inc_return(&id)); + hdev->vendor, hdev->product, hdev->id); hid_debug_register(hdev, dev_name(&hdev->dev)); ret = device_add(&hdev->dev); @@ -2488,6 +2497,7 @@ struct hid_device *hid_allocate_device(void) spin_lock_init(&hdev->debug_list_lock); sema_init(&hdev->driver_input_lock, 1); mutex_init(&hdev->ll_open_lock); + kref_init(&hdev->ref); return hdev; } diff --git a/drivers/hid/hid-cp2112.c b/drivers/hid/hid-cp2112.c index d902fe43cb818..6a11b3a329aec 100644 --- a/drivers/hid/hid-cp2112.c +++ b/drivers/hid/hid-cp2112.c @@ -1157,8 +1157,6 @@ static unsigned int cp2112_gpio_irq_startup(struct irq_data *d) struct gpio_chip *gc = irq_data_get_irq_chip_data(d); struct cp2112_device *dev = gpiochip_get_data(gc); - INIT_DELAYED_WORK(&dev->gpio_poll_worker, cp2112_gpio_poll_callback); - if (!dev->gpio_poll) { dev->gpio_poll = true; schedule_delayed_work(&dev->gpio_poll_worker, 0); @@ -1173,7 +1171,10 @@ static void cp2112_gpio_irq_shutdown(struct irq_data *d) struct gpio_chip *gc = irq_data_get_irq_chip_data(d); struct cp2112_device *dev = gpiochip_get_data(gc); - cancel_delayed_work_sync(&dev->gpio_poll_worker); + if (!dev->irq_mask) { + dev->gpio_poll = false; + cancel_delayed_work_sync(&dev->gpio_poll_worker); + } } static int cp2112_gpio_irq_type(struct irq_data *d, unsigned int type) @@ -1354,6 +1355,8 @@ static int cp2112_probe(struct hid_device *hdev, const struct hid_device_id *id) girq->handler = handle_simple_irq; girq->threaded = true; + INIT_DELAYED_WORK(&dev->gpio_poll_worker, cp2112_gpio_poll_callback); + ret = gpiochip_add_data(&dev->gc, dev); if (ret < 0) { hid_err(hdev, "error registering gpio chip\n"); diff --git a/drivers/hid/hid-debug.c b/drivers/hid/hid-debug.c index 03da865e423c7..b8274bdd7d27f 100644 --- a/drivers/hid/hid-debug.c +++ b/drivers/hid/hid-debug.c @@ -1096,6 +1096,7 @@ static int hid_debug_events_open(struct inode *inode, struct file *file) goto out; } list->hdev = (struct hid_device *) inode->i_private; + kref_get(&list->hdev->ref); file->private_data = list; mutex_init(&list->read_mutex); @@ -1188,6 +1189,8 @@ static int hid_debug_events_release(struct inode *inode, struct file *file) list_del(&list->node); spin_unlock_irqrestore(&list->hdev->debug_list_lock, flags); kfifo_free(&list->hid_debug_fifo); + + kref_put(&list->hdev->ref, hiddev_free); kfree(list); return 0; diff --git a/drivers/hid/hid-holtek-kbd.c b/drivers/hid/hid-holtek-kbd.c index 403506b9697e7..b346d68a06f5a 100644 --- a/drivers/hid/hid-holtek-kbd.c +++ b/drivers/hid/hid-holtek-kbd.c @@ -130,6 +130,10 @@ static int holtek_kbd_input_event(struct input_dev *dev, unsigned int type, return -ENODEV; boot_hid = usb_get_intfdata(boot_interface); + if (list_empty(&boot_hid->inputs)) { + hid_err(hid, "no inputs found\n"); + return -ENODEV; + } boot_hid_input = list_first_entry(&boot_hid->inputs, struct hid_input, list); diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h index 5fceefb3c707e..caca5d6e95d64 100644 --- a/drivers/hid/hid-ids.h +++ b/drivers/hid/hid-ids.h @@ -349,6 +349,7 @@ #define USB_VENDOR_ID_DELL 0x413c #define USB_DEVICE_ID_DELL_PIXART_USB_OPTICAL_MOUSE 0x301a +#define USB_DEVICE_ID_DELL_PRO_WIRELESS_KM5221W 0x4503 #define USB_VENDOR_ID_DELORME 0x1163 #define USB_DEVICE_ID_DELORME_EARTHMATE 0x0100 diff --git a/drivers/hid/hid-lenovo.c b/drivers/hid/hid-lenovo.c index 93b1f935e526e..901c1959efed4 100644 --- a/drivers/hid/hid-lenovo.c +++ b/drivers/hid/hid-lenovo.c @@ -50,7 +50,12 @@ struct lenovo_drvdata { int select_right; int sensitivity; int press_speed; - u8 middlebutton_state; /* 0:Up, 1:Down (undecided), 2:Scrolling */ + /* 0: Up + * 1: Down (undecided) + * 2: Scrolling + * 3: Patched firmware, disable workaround + */ + u8 middlebutton_state; bool fn_lock; }; @@ -529,31 +534,48 @@ static int lenovo_event_cptkbd(struct hid_device *hdev, { struct lenovo_drvdata *cptkbd_data = hid_get_drvdata(hdev); - /* "wheel" scroll events */ - if (usage->type == EV_REL && (usage->code == REL_WHEEL || - usage->code == REL_HWHEEL)) { - /* Scroll events disable middle-click event */ - cptkbd_data->middlebutton_state = 2; - return 0; - } + if (cptkbd_data->middlebutton_state != 3) { + /* REL_X and REL_Y events during middle button pressed + * are only possible on patched, bug-free firmware + * so set middlebutton_state to 3 + * to never apply workaround anymore + */ + if (cptkbd_data->middlebutton_state == 1 && + usage->type == EV_REL && + (usage->code == REL_X || usage->code == REL_Y)) { + cptkbd_data->middlebutton_state = 3; + /* send middle button press which was hold before */ + input_event(field->hidinput->input, + EV_KEY, BTN_MIDDLE, 1); + input_sync(field->hidinput->input); + } - /* Middle click events */ - if (usage->type == EV_KEY && usage->code == BTN_MIDDLE) { - if (value == 1) { - cptkbd_data->middlebutton_state = 1; - } else if (value == 0) { - if (cptkbd_data->middlebutton_state == 1) { - /* No scrolling inbetween, send middle-click */ - input_event(field->hidinput->input, - EV_KEY, BTN_MIDDLE, 1); - input_sync(field->hidinput->input); - input_event(field->hidinput->input, - EV_KEY, BTN_MIDDLE, 0); - input_sync(field->hidinput->input); + /* "wheel" scroll events */ + if (usage->type == EV_REL && (usage->code == REL_WHEEL || + usage->code == REL_HWHEEL)) { + /* Scroll events disable middle-click event */ + cptkbd_data->middlebutton_state = 2; + return 0; + } + + /* Middle click events */ + if (usage->type == EV_KEY && usage->code == BTN_MIDDLE) { + if (value == 1) { + cptkbd_data->middlebutton_state = 1; + } else if (value == 0) { + if (cptkbd_data->middlebutton_state == 1) { + /* No scrolling inbetween, send middle-click */ + input_event(field->hidinput->input, + EV_KEY, BTN_MIDDLE, 1); + input_sync(field->hidinput->input); + input_event(field->hidinput->input, + EV_KEY, BTN_MIDDLE, 0); + input_sync(field->hidinput->input); + } + cptkbd_data->middlebutton_state = 0; } - cptkbd_data->middlebutton_state = 0; + return 1; } - return 1; } return 0; diff --git a/drivers/hid/hid-logitech-dj.c b/drivers/hid/hid-logitech-dj.c index c358778e070bc..08768e5accedc 100644 --- a/drivers/hid/hid-logitech-dj.c +++ b/drivers/hid/hid-logitech-dj.c @@ -1285,6 +1285,9 @@ static int logi_dj_recv_switch_to_dj_mode(struct dj_receiver_dev *djrcv_dev, * 50 msec should gives enough time to the receiver to be ready. */ msleep(50); + + if (retval) + return retval; } /* @@ -1306,7 +1309,7 @@ static int logi_dj_recv_switch_to_dj_mode(struct dj_receiver_dev *djrcv_dev, buf[5] = 0x09; buf[6] = 0x00; - hid_hw_raw_request(hdev, REPORT_ID_HIDPP_SHORT, buf, + retval = hid_hw_raw_request(hdev, REPORT_ID_HIDPP_SHORT, buf, HIDPP_REPORT_SHORT_LENGTH, HID_OUTPUT_REPORT, HID_REQ_SET_REPORT); diff --git a/drivers/hid/hid-logitech-hidpp.c b/drivers/hid/hid-logitech-hidpp.c index 0ac67dd76574e..fb287c4cbd5b8 100644 --- a/drivers/hid/hid-logitech-hidpp.c +++ b/drivers/hid/hid-logitech-hidpp.c @@ -31,11 +31,6 @@ MODULE_LICENSE("GPL"); MODULE_AUTHOR("Benjamin Tissoires "); MODULE_AUTHOR("Nestor Lopez Casado "); -static bool disable_raw_mode; -module_param(disable_raw_mode, bool, 0644); -MODULE_PARM_DESC(disable_raw_mode, - "Disable Raw mode reporting for touchpads and keep firmware gestures."); - static bool disable_tap_to_click; module_param(disable_tap_to_click, bool, 0644); MODULE_PARM_DESC(disable_tap_to_click, @@ -68,7 +63,7 @@ MODULE_PARM_DESC(disable_tap_to_click, /* bits 2..20 are reserved for classes */ /* #define HIDPP_QUIRK_CONNECT_EVENTS BIT(21) disabled */ #define HIDPP_QUIRK_WTP_PHYSICAL_BUTTONS BIT(22) -#define HIDPP_QUIRK_NO_HIDINPUT BIT(23) +#define HIDPP_QUIRK_DELAYED_INIT BIT(23) #define HIDPP_QUIRK_FORCE_OUTPUT_REPORTS BIT(24) #define HIDPP_QUIRK_UNIFYING BIT(25) #define HIDPP_QUIRK_HI_RES_SCROLL_1P0 BIT(26) @@ -87,8 +82,6 @@ MODULE_PARM_DESC(disable_tap_to_click, HIDPP_QUIRK_HI_RES_SCROLL_X2120 | \ HIDPP_QUIRK_HI_RES_SCROLL_X2121) -#define HIDPP_QUIRK_DELAYED_INIT HIDPP_QUIRK_NO_HIDINPUT - #define HIDPP_CAPABILITY_HIDPP10_BATTERY BIT(0) #define HIDPP_CAPABILITY_HIDPP20_BATTERY BIT(1) #define HIDPP_CAPABILITY_BATTERY_MILEAGE BIT(2) @@ -1760,15 +1753,14 @@ static int hidpp_battery_get_property(struct power_supply *psy, /* -------------------------------------------------------------------------- */ #define HIDPP_PAGE_WIRELESS_DEVICE_STATUS 0x1d4b -static int hidpp_set_wireless_feature_index(struct hidpp_device *hidpp) +static int hidpp_get_wireless_feature_index(struct hidpp_device *hidpp, u8 *feature_index) { u8 feature_type; int ret; ret = hidpp_root_get_feature(hidpp, HIDPP_PAGE_WIRELESS_DEVICE_STATUS, - &hidpp->wireless_feature_index, - &feature_type); + feature_index, &feature_type); return ret; } @@ -3957,6 +3949,13 @@ static void hidpp_connect_event(struct hidpp_device *hidpp) } } + if (hidpp->protocol_major >= 2) { + u8 feature_index; + + if (!hidpp_get_wireless_feature_index(hidpp, &feature_index)) + hidpp->wireless_feature_index = feature_index; + } + if (hidpp->name == hdev->name && hidpp->protocol_major >= 2) { name = hidpp_get_device_name(hidpp); if (name) { @@ -3993,7 +3992,7 @@ static void hidpp_connect_event(struct hidpp_device *hidpp) if (hidpp->quirks & HIDPP_QUIRK_HI_RES_SCROLL) hi_res_scroll_enable(hidpp); - if (!(hidpp->quirks & HIDPP_QUIRK_NO_HIDINPUT) || hidpp->delayed_input) + if (!(hidpp->quirks & HIDPP_QUIRK_DELAYED_INIT) || hidpp->delayed_input) /* if the input nodes are already created, we can stop now */ return; @@ -4096,7 +4095,6 @@ static int hidpp_probe(struct hid_device *hdev, const struct hid_device_id *id) bool connected; unsigned int connect_mask = HID_CONNECT_DEFAULT; struct hidpp_ff_private_data data; - bool will_restart = false; /* report_fixup needs drvdata to be set before we call hid_parse */ hidpp = devm_kzalloc(&hdev->dev, sizeof(*hidpp), GFP_KERNEL); @@ -4137,11 +4135,6 @@ static int hidpp_probe(struct hid_device *hdev, const struct hid_device_id *id) hidpp_application_equals(hdev, HID_GD_KEYBOARD)) hidpp->quirks |= HIDPP_QUIRK_HIDPP_CONSUMER_VENDOR_KEYS; - if (disable_raw_mode) { - hidpp->quirks &= ~HIDPP_QUIRK_CLASS_WTP; - hidpp->quirks &= ~HIDPP_QUIRK_NO_HIDINPUT; - } - if (hidpp->quirks & HIDPP_QUIRK_CLASS_WTP) { ret = wtp_allocate(hdev, id); if (ret) @@ -4152,10 +4145,6 @@ static int hidpp_probe(struct hid_device *hdev, const struct hid_device_id *id) return ret; } - if (hidpp->quirks & HIDPP_QUIRK_DELAYED_INIT || - hidpp->quirks & HIDPP_QUIRK_UNIFYING) - will_restart = true; - INIT_WORK(&hidpp->work, delayed_work_cb); mutex_init(&hidpp->send_mutex); init_waitqueue_head(&hidpp->wait); @@ -4167,10 +4156,12 @@ static int hidpp_probe(struct hid_device *hdev, const struct hid_device_id *id) hdev->name); /* - * Plain USB connections need to actually call start and open - * on the transport driver to allow incoming data. + * First call hid_hw_start(hdev, 0) to allow IO without connecting any + * hid subdrivers (hid-input, hidraw). This allows retrieving the dev's + * name and serial number and store these in hdev->name and hdev->uniq, + * before the hid-input and hidraw drivers expose these to userspace. */ - ret = hid_hw_start(hdev, will_restart ? 0 : connect_mask); + ret = hid_hw_start(hdev, 0); if (ret) { hid_err(hdev, "hw start failed\n"); goto hid_hw_start_fail; @@ -4203,15 +4194,6 @@ static int hidpp_probe(struct hid_device *hdev, const struct hid_device_id *id) hidpp_overwrite_name(hdev); } - if (connected && hidpp->protocol_major >= 2) { - ret = hidpp_set_wireless_feature_index(hidpp); - if (ret == -ENOENT) - hidpp->wireless_feature_index = 0; - else if (ret) - goto hid_hw_init_fail; - ret = 0; - } - if (connected && (hidpp->quirks & HIDPP_QUIRK_CLASS_WTP)) { ret = wtp_get_config(hidpp); if (ret) @@ -4222,23 +4204,17 @@ static int hidpp_probe(struct hid_device *hdev, const struct hid_device_id *id) goto hid_hw_init_fail; } - hidpp_connect_event(hidpp); + schedule_work(&hidpp->work); + flush_work(&hidpp->work); - if (will_restart) { - /* Reset the HID node state */ - hid_device_io_stop(hdev); - hid_hw_close(hdev); - hid_hw_stop(hdev); + if (hidpp->quirks & HIDPP_QUIRK_DELAYED_INIT) + connect_mask &= ~HID_CONNECT_HIDINPUT; - if (hidpp->quirks & HIDPP_QUIRK_NO_HIDINPUT) - connect_mask &= ~HID_CONNECT_HIDINPUT; - - /* Now export the actual inputs and hidraw nodes to the world */ - ret = hid_hw_start(hdev, connect_mask); - if (ret) { - hid_err(hdev, "%s:hid_hw_start returned error\n", __func__); - goto hid_hw_start_fail; - } + /* Now export the actual inputs and hidraw nodes to the world */ + ret = hid_connect(hdev, connect_mask); + if (ret) { + hid_err(hdev, "%s:hid_connect returned error %d\n", __func__, ret); + goto hid_hw_init_fail; } if (hidpp->quirks & HIDPP_QUIRK_CLASS_G920) { @@ -4249,6 +4225,11 @@ static int hidpp_probe(struct hid_device *hdev, const struct hid_device_id *id) ret); } + /* + * This relies on logi_dj_ll_close() being a no-op so that DJ connection + * events will still be received. + */ + hid_hw_close(hdev); return ret; hid_hw_init_fail: diff --git a/drivers/hid/hid-multitouch.c b/drivers/hid/hid-multitouch.c index 592ffdd546fb4..4ec8ca06a0bd0 100644 --- a/drivers/hid/hid-multitouch.c +++ b/drivers/hid/hid-multitouch.c @@ -1594,7 +1594,6 @@ static void mt_post_parse(struct mt_device *td, struct mt_application *app) static int mt_input_configured(struct hid_device *hdev, struct hid_input *hi) { struct mt_device *td = hid_get_drvdata(hdev); - char *name; const char *suffix = NULL; struct mt_report_data *rdata; struct mt_application *mt_application = NULL; @@ -1648,15 +1647,9 @@ static int mt_input_configured(struct hid_device *hdev, struct hid_input *hi) break; } - if (suffix) { - name = devm_kzalloc(&hi->input->dev, - strlen(hdev->name) + strlen(suffix) + 2, - GFP_KERNEL); - if (name) { - sprintf(name, "%s %s", hdev->name, suffix); - hi->input->name = name; - } - } + if (suffix) + hi->input->name = devm_kasprintf(&hdev->dev, GFP_KERNEL, + "%s %s", hdev->name, suffix); return 0; } @@ -2149,6 +2142,10 @@ static const struct hid_device_id mt_devices[] = { USB_DEVICE_ID_MTP_STM)}, /* Synaptics devices */ + { .driver_data = MT_CLS_WIN_8_FORCE_MULTI_INPUT, + HID_DEVICE(BUS_I2C, HID_GROUP_MULTITOUCH_WIN_8, + USB_VENDOR_ID_SYNAPTICS, 0xcd7e) }, + { .driver_data = MT_CLS_WIN_8_FORCE_MULTI_INPUT, HID_DEVICE(BUS_I2C, HID_GROUP_MULTITOUCH_WIN_8, USB_VENDOR_ID_SYNAPTICS, 0xce08) }, diff --git a/drivers/hid/hid-quirks.c b/drivers/hid/hid-quirks.c index 96ca7d981ee20..225138a39d323 100644 --- a/drivers/hid/hid-quirks.c +++ b/drivers/hid/hid-quirks.c @@ -66,6 +66,7 @@ static const struct hid_device_id hid_quirks[] = { { HID_USB_DEVICE(USB_VENDOR_ID_CORSAIR, USB_DEVICE_ID_CORSAIR_STRAFE), HID_QUIRK_NO_INIT_REPORTS | HID_QUIRK_ALWAYS_POLL }, { HID_USB_DEVICE(USB_VENDOR_ID_CREATIVELABS, USB_DEVICE_ID_CREATIVE_SB_OMNI_SURROUND_51), HID_QUIRK_NOGET }, { HID_USB_DEVICE(USB_VENDOR_ID_DELL, USB_DEVICE_ID_DELL_PIXART_USB_OPTICAL_MOUSE), HID_QUIRK_ALWAYS_POLL }, + { HID_USB_DEVICE(USB_VENDOR_ID_DELL, USB_DEVICE_ID_DELL_PRO_WIRELESS_KM5221W), HID_QUIRK_ALWAYS_POLL }, { HID_USB_DEVICE(USB_VENDOR_ID_DMI, USB_DEVICE_ID_DMI_ENC), HID_QUIRK_NOGET }, { HID_USB_DEVICE(USB_VENDOR_ID_DRACAL_RAPHNET, USB_DEVICE_ID_RAPHNET_2NES2SNES), HID_QUIRK_MULTI_INPUT }, { HID_USB_DEVICE(USB_VENDOR_ID_DRACAL_RAPHNET, USB_DEVICE_ID_RAPHNET_4NES4SNES), HID_QUIRK_MULTI_INPUT }, diff --git a/drivers/hid/hid-sony.c b/drivers/hid/hid-sony.c index 60ec2b29d54de..c330d5a20ca04 100644 --- a/drivers/hid/hid-sony.c +++ b/drivers/hid/hid-sony.c @@ -3074,6 +3074,8 @@ static int sony_probe(struct hid_device *hdev, const struct hid_device_id *id) return ret; err: + usb_free_urb(sc->ghl_urb); + hid_hw_stop(hdev); return ret; } diff --git a/drivers/hid/intel-ish-hid/ipc/pci-ish.c b/drivers/hid/intel-ish-hid/ipc/pci-ish.c index 8e9d9450cb835..5916ef2933e27 100644 --- a/drivers/hid/intel-ish-hid/ipc/pci-ish.c +++ b/drivers/hid/intel-ish-hid/ipc/pci-ish.c @@ -129,6 +129,14 @@ static int enable_gpe(struct device *dev) } wakeup = &adev->wakeup; + /* + * Call acpi_disable_gpe(), so that reference count + * gpe_event_info->runtime_count doesn't overflow. + * When gpe_event_info->runtime_count = 0, the call + * to acpi_disable_gpe() simply return. + */ + acpi_disable_gpe(wakeup->gpe_device, wakeup->gpe_number); + acpi_sts = acpi_enable_gpe(wakeup->gpe_device, wakeup->gpe_number); if (ACPI_FAILURE(acpi_sts)) { dev_err(dev, "enable ose_gpe failed\n"); diff --git a/drivers/hv/Kconfig b/drivers/hv/Kconfig index 9a074cbdef78c..8e13e2a688fc6 100644 --- a/drivers/hv/Kconfig +++ b/drivers/hv/Kconfig @@ -8,6 +8,7 @@ config HYPERV || (ARM64 && !CPU_BIG_ENDIAN)) select PARAVIRT select X86_HV_CALLBACK_VECTOR if X86 + select VMAP_PFN help Select this option to run Linux as a Hyper-V client operating system. @@ -29,4 +30,15 @@ config HYPERV_BALLOON help Select this option to enable Hyper-V Balloon driver. +config HYPERV_AZURE_BLOB + tristate "Microsoft Azure Blob driver" + depends on HYPERV && X86_64 + help + Select this option to enable Microsoft Azure Blob driver. + + This driver implements a fast datapath over Hyper-V to support + accelerated access to Microsoft Azure Blob services. + To compile this driver as a module, choose M here. The module will be + called azure_blob. + endmenu diff --git a/drivers/hv/Makefile b/drivers/hv/Makefile index d76df5c8c2a91..a2e882abf9ab9 100644 --- a/drivers/hv/Makefile +++ b/drivers/hv/Makefile @@ -2,6 +2,7 @@ obj-$(CONFIG_HYPERV) += hv_vmbus.o obj-$(CONFIG_HYPERV_UTILS) += hv_utils.o obj-$(CONFIG_HYPERV_BALLOON) += hv_balloon.o +obj-$(CONFIG_HYPERV_AZURE_BLOB) += hv_azure_blob.o CFLAGS_hv_trace.o = -I$(src) CFLAGS_hv_balloon.o = -I$(src) diff --git a/drivers/hv/channel.c b/drivers/hv/channel.c index 6b967bb386907..56f7e06c673e4 100644 --- a/drivers/hv/channel.c +++ b/drivers/hv/channel.c @@ -17,6 +17,7 @@ #include #include #include +#include #include #include @@ -456,7 +457,7 @@ static int create_gpadl_header(enum hv_gpadl_type type, void *kbuffer, static int __vmbus_establish_gpadl(struct vmbus_channel *channel, enum hv_gpadl_type type, void *kbuffer, u32 size, u32 send_offset, - u32 *gpadl_handle) + struct vmbus_gpadl *gpadl) { struct vmbus_channel_gpadl_header *gpadlmsg; struct vmbus_channel_gpadl_body *gpadl_body; @@ -474,6 +475,15 @@ static int __vmbus_establish_gpadl(struct vmbus_channel *channel, if (ret) return ret; + ret = set_memory_decrypted((unsigned long)kbuffer, + PFN_UP(size)); + if (ret) { + dev_warn(&channel->device_obj->device, + "Failed to set host visibility for new GPADL %d.\n", + ret); + return ret; + } + init_completion(&msginfo->waitevent); msginfo->waiting_channel = channel; @@ -537,7 +547,10 @@ static int __vmbus_establish_gpadl(struct vmbus_channel *channel, } /* At this point, we received the gpadl created msg */ - *gpadl_handle = gpadlmsg->gpadl; + gpadl->gpadl_handle = gpadlmsg->gpadl; + gpadl->buffer = kbuffer; + gpadl->size = size; + cleanup: spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); @@ -549,6 +562,11 @@ static int __vmbus_establish_gpadl(struct vmbus_channel *channel, } kfree(msginfo); + + if (ret) + set_memory_encrypted((unsigned long)kbuffer, + PFN_UP(size)); + return ret; } @@ -561,10 +579,10 @@ static int __vmbus_establish_gpadl(struct vmbus_channel *channel, * @gpadl_handle: some funky thing */ int vmbus_establish_gpadl(struct vmbus_channel *channel, void *kbuffer, - u32 size, u32 *gpadl_handle) + u32 size, struct vmbus_gpadl *gpadl) { return __vmbus_establish_gpadl(channel, HV_GPADL_BUFFER, kbuffer, size, - 0U, gpadl_handle); + 0U, gpadl); } EXPORT_SYMBOL_GPL(vmbus_establish_gpadl); @@ -665,17 +683,8 @@ static int __vmbus_open(struct vmbus_channel *newchannel, if (!newchannel->max_pkt_size) newchannel->max_pkt_size = VMBUS_DEFAULT_MAX_PKT_SIZE; - err = hv_ringbuffer_init(&newchannel->outbound, page, send_pages, 0); - if (err) - goto error_clean_ring; - - err = hv_ringbuffer_init(&newchannel->inbound, &page[send_pages], - recv_pages, newchannel->max_pkt_size); - if (err) - goto error_clean_ring; - /* Establish the gpadl for the ring buffer */ - newchannel->ringbuffer_gpadlhandle = 0; + newchannel->ringbuffer_gpadlhandle.gpadl_handle = 0; err = __vmbus_establish_gpadl(newchannel, HV_GPADL_RING, page_address(newchannel->ringbuffer_page), @@ -685,6 +694,16 @@ static int __vmbus_open(struct vmbus_channel *newchannel, if (err) goto error_clean_ring; + err = hv_ringbuffer_init(&newchannel->outbound, + page, send_pages, 0); + if (err) + goto error_free_gpadl; + + err = hv_ringbuffer_init(&newchannel->inbound, &page[send_pages], + recv_pages, newchannel->max_pkt_size); + if (err) + goto error_free_gpadl; + /* Create and init the channel open message */ open_info = kzalloc(sizeof(*open_info) + sizeof(struct vmbus_channel_open_channel), @@ -701,7 +720,8 @@ static int __vmbus_open(struct vmbus_channel *newchannel, open_msg->header.msgtype = CHANNELMSG_OPENCHANNEL; open_msg->openid = newchannel->offermsg.child_relid; open_msg->child_relid = newchannel->offermsg.child_relid; - open_msg->ringbuffer_gpadlhandle = newchannel->ringbuffer_gpadlhandle; + open_msg->ringbuffer_gpadlhandle + = newchannel->ringbuffer_gpadlhandle.gpadl_handle; /* * The unit of ->downstream_ringbuffer_pageoffset is HV_HYP_PAGE and * the unit of ->ringbuffer_send_offset (i.e. send_pages) is PAGE, so @@ -759,8 +779,7 @@ static int __vmbus_open(struct vmbus_channel *newchannel, error_free_info: kfree(open_info); error_free_gpadl: - vmbus_teardown_gpadl(newchannel, newchannel->ringbuffer_gpadlhandle); - newchannel->ringbuffer_gpadlhandle = 0; + vmbus_teardown_gpadl(newchannel, &newchannel->ringbuffer_gpadlhandle); error_clean_ring: hv_ringbuffer_cleanup(&newchannel->outbound); hv_ringbuffer_cleanup(&newchannel->inbound); @@ -806,7 +825,7 @@ EXPORT_SYMBOL_GPL(vmbus_open); /* * vmbus_teardown_gpadl -Teardown the specified GPADL handle */ -int vmbus_teardown_gpadl(struct vmbus_channel *channel, u32 gpadl_handle) +int vmbus_teardown_gpadl(struct vmbus_channel *channel, struct vmbus_gpadl *gpadl) { struct vmbus_channel_gpadl_teardown *msg; struct vmbus_channel_msginfo *info; @@ -825,7 +844,7 @@ int vmbus_teardown_gpadl(struct vmbus_channel *channel, u32 gpadl_handle) msg->header.msgtype = CHANNELMSG_GPADL_TEARDOWN; msg->child_relid = channel->offermsg.child_relid; - msg->gpadl = gpadl_handle; + msg->gpadl = gpadl->gpadl_handle; spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags); list_add_tail(&info->msglistentry, @@ -845,6 +864,8 @@ int vmbus_teardown_gpadl(struct vmbus_channel *channel, u32 gpadl_handle) wait_for_completion(&info->waitevent); + gpadl->gpadl_handle = 0; + post_msg_err: /* * If the channel has been rescinded; @@ -859,6 +880,12 @@ int vmbus_teardown_gpadl(struct vmbus_channel *channel, u32 gpadl_handle) spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags); kfree(info); + + ret = set_memory_encrypted((unsigned long)gpadl->buffer, + PFN_UP(gpadl->size)); + if (ret) + pr_warn("Fail to set mem host visibility in GPADL teardown %d.\n", ret); + return ret; } EXPORT_SYMBOL_GPL(vmbus_teardown_gpadl); @@ -933,9 +960,8 @@ static int vmbus_close_internal(struct vmbus_channel *channel) } /* Tear down the gpadl for the channel's ring buffer */ - else if (channel->ringbuffer_gpadlhandle) { - ret = vmbus_teardown_gpadl(channel, - channel->ringbuffer_gpadlhandle); + else if (channel->ringbuffer_gpadlhandle.gpadl_handle) { + ret = vmbus_teardown_gpadl(channel, &channel->ringbuffer_gpadlhandle); if (ret) { pr_err("Close failed: teardown gpadl return %d\n", ret); /* @@ -943,8 +969,6 @@ static int vmbus_close_internal(struct vmbus_channel *channel) * it is perhaps better to leak memory. */ } - - channel->ringbuffer_gpadlhandle = 0; } if (!ret) @@ -998,11 +1022,13 @@ void vmbus_close(struct vmbus_channel *channel) EXPORT_SYMBOL_GPL(vmbus_close); /** - * vmbus_sendpacket() - Send the specified buffer on the given channel + * vmbus_sendpacket_getid() - Send the specified buffer on the given channel * @channel: Pointer to vmbus_channel structure * @buffer: Pointer to the buffer you want to send the data from. * @bufferlen: Maximum size of what the buffer holds. * @requestid: Identifier of the request + * @trans_id: Identifier of the transaction associated to this request, if + * the send is successful; undefined, otherwise. * @type: Type of packet that is being sent e.g. negotiate, time * packet etc. * @flags: 0 or VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED @@ -1012,8 +1038,8 @@ EXPORT_SYMBOL_GPL(vmbus_close); * * Mainly used by Hyper-V drivers. */ -int vmbus_sendpacket(struct vmbus_channel *channel, void *buffer, - u32 bufferlen, u64 requestid, +int vmbus_sendpacket_getid(struct vmbus_channel *channel, void *buffer, + u32 bufferlen, u64 requestid, u64 *trans_id, enum vmbus_packet_type type, u32 flags) { struct vmpacket_descriptor desc; @@ -1039,7 +1065,31 @@ int vmbus_sendpacket(struct vmbus_channel *channel, void *buffer, bufferlist[2].iov_base = &aligned_data; bufferlist[2].iov_len = (packetlen_aligned - packetlen); - return hv_ringbuffer_write(channel, bufferlist, num_vecs, requestid); + return hv_ringbuffer_write(channel, bufferlist, num_vecs, requestid, trans_id); +} +EXPORT_SYMBOL(vmbus_sendpacket_getid); + +/** + * vmbus_sendpacket() - Send the specified buffer on the given channel + * @channel: Pointer to vmbus_channel structure + * @buffer: Pointer to the buffer you want to send the data from. + * @bufferlen: Maximum size of what the buffer holds. + * @requestid: Identifier of the request + * @type: Type of packet that is being sent e.g. negotiate, time + * packet etc. + * @flags: 0 or VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED + * + * Sends data in @buffer directly to Hyper-V via the vmbus. + * This will send the data unparsed to Hyper-V. + * + * Mainly used by Hyper-V drivers. + */ +int vmbus_sendpacket(struct vmbus_channel *channel, void *buffer, + u32 bufferlen, u64 requestid, + enum vmbus_packet_type type, u32 flags) +{ + return vmbus_sendpacket_getid(channel, buffer, bufferlen, + requestid, NULL, type, flags); } EXPORT_SYMBOL(vmbus_sendpacket); @@ -1098,7 +1148,7 @@ int vmbus_sendpacket_pagebuffer(struct vmbus_channel *channel, bufferlist[2].iov_base = &aligned_data; bufferlist[2].iov_len = (packetlen_aligned - packetlen); - return hv_ringbuffer_write(channel, bufferlist, 3, requestid); + return hv_ringbuffer_write(channel, bufferlist, 3, requestid, NULL); } EXPORT_SYMBOL_GPL(vmbus_sendpacket_pagebuffer); @@ -1136,7 +1186,7 @@ int vmbus_sendpacket_mpb_desc(struct vmbus_channel *channel, bufferlist[2].iov_base = &aligned_data; bufferlist[2].iov_len = (packetlen_aligned - packetlen); - return hv_ringbuffer_write(channel, bufferlist, 3, requestid); + return hv_ringbuffer_write(channel, bufferlist, 3, requestid, NULL); } EXPORT_SYMBOL_GPL(vmbus_sendpacket_mpb_desc); @@ -1202,12 +1252,12 @@ u64 vmbus_next_request_id(struct vmbus_channel *channel, u64 rqst_addr) if (!channel->rqstor_size) return VMBUS_NO_RQSTOR; - spin_lock_irqsave(&rqstor->req_lock, flags); + lock_requestor(channel, flags); current_id = rqstor->next_request_id; /* Requestor array is full */ if (current_id >= rqstor->size) { - spin_unlock_irqrestore(&rqstor->req_lock, flags); + unlock_requestor(channel, flags); return VMBUS_RQST_ERROR; } @@ -1217,7 +1267,7 @@ u64 vmbus_next_request_id(struct vmbus_channel *channel, u64 rqst_addr) /* The already held spin lock provides atomicity */ bitmap_set(rqstor->req_bitmap, current_id, 1); - spin_unlock_irqrestore(&rqstor->req_lock, flags); + unlock_requestor(channel, flags); /* * Cannot return an ID of 0, which is reserved for an unsolicited @@ -1229,17 +1279,11 @@ u64 vmbus_next_request_id(struct vmbus_channel *channel, u64 rqst_addr) } EXPORT_SYMBOL_GPL(vmbus_next_request_id); -/* - * vmbus_request_addr - Returns the memory address stored at @trans_id - * in @rqstor. Uses a spin lock to avoid race conditions. - * @channel: Pointer to the VMbus channel struct - * @trans_id: Request id sent back from Hyper-V. Becomes the requestor's - * next request id. - */ -u64 vmbus_request_addr(struct vmbus_channel *channel, u64 trans_id) +/* As in vmbus_request_addr_match() but without the requestor lock */ +u64 __vmbus_request_addr_match(struct vmbus_channel *channel, u64 trans_id, + u64 rqst_addr) { struct vmbus_requestor *rqstor = &channel->requestor; - unsigned long flags; u64 req_addr; /* Check rqstor has been initialized */ @@ -1250,25 +1294,59 @@ u64 vmbus_request_addr(struct vmbus_channel *channel, u64 trans_id) if (!trans_id) return VMBUS_RQST_ERROR; - spin_lock_irqsave(&rqstor->req_lock, flags); - /* Data corresponding to trans_id is stored at trans_id - 1 */ trans_id--; /* Invalid trans_id */ - if (trans_id >= rqstor->size || !test_bit(trans_id, rqstor->req_bitmap)) { - spin_unlock_irqrestore(&rqstor->req_lock, flags); + if (trans_id >= rqstor->size || !test_bit(trans_id, rqstor->req_bitmap)) return VMBUS_RQST_ERROR; - } req_addr = rqstor->req_arr[trans_id]; - rqstor->req_arr[trans_id] = rqstor->next_request_id; - rqstor->next_request_id = trans_id; + if (rqst_addr == VMBUS_RQST_ADDR_ANY || req_addr == rqst_addr) { + rqstor->req_arr[trans_id] = rqstor->next_request_id; + rqstor->next_request_id = trans_id; - /* The already held spin lock provides atomicity */ - bitmap_clear(rqstor->req_bitmap, trans_id, 1); + /* The already held spin lock provides atomicity */ + bitmap_clear(rqstor->req_bitmap, trans_id, 1); + } - spin_unlock_irqrestore(&rqstor->req_lock, flags); return req_addr; } +EXPORT_SYMBOL_GPL(__vmbus_request_addr_match); + +/* + * vmbus_request_addr_match - Clears/removes @trans_id from the @channel's + * requestor, provided the memory address stored at @trans_id equals @rqst_addr + * (or provided @rqst_addr matches the sentinel value VMBUS_RQST_ADDR_ANY). + * + * Returns the memory address stored at @trans_id, or VMBUS_RQST_ERROR if + * @trans_id is not contained in the requestor. + * + * Acquires and releases the requestor spin lock. + */ +u64 vmbus_request_addr_match(struct vmbus_channel *channel, u64 trans_id, + u64 rqst_addr) +{ + unsigned long flags; + u64 req_addr; + + lock_requestor(channel, flags); + req_addr = __vmbus_request_addr_match(channel, trans_id, rqst_addr); + unlock_requestor(channel, flags); + + return req_addr; +} +EXPORT_SYMBOL_GPL(vmbus_request_addr_match); + +/* + * vmbus_request_addr - Returns the memory address stored at @trans_id + * in @rqstor. Uses a spin lock to avoid race conditions. + * @channel: Pointer to the VMbus channel struct + * @trans_id: Request id sent back from Hyper-V. Becomes the requestor's + * next request id. + */ +u64 vmbus_request_addr(struct vmbus_channel *channel, u64 trans_id) +{ + return vmbus_request_addr_match(channel, trans_id, VMBUS_RQST_ADDR_ANY); +} EXPORT_SYMBOL_GPL(vmbus_request_addr); diff --git a/drivers/hv/channel_mgmt.c b/drivers/hv/channel_mgmt.c index 62c864f8d991b..3b0f412393da4 100644 --- a/drivers/hv/channel_mgmt.c +++ b/drivers/hv/channel_mgmt.c @@ -139,6 +139,12 @@ const struct vmbus_device vmbus_devs[] = { .allowed_in_isolated = false, }, + /* Azure Blob */ + { .dev_type = HV_AZURE_BLOB, + HV_AZURE_BLOB_GUID, + .perf_device = false, + }, + /* Unknown GUID */ { .dev_type = HV_UNKNOWN, .perf_device = false, @@ -1573,7 +1579,7 @@ int vmbus_request_offers(void) struct vmbus_channel_msginfo *msginfo; int ret; - msginfo = kmalloc(sizeof(*msginfo) + + msginfo = kzalloc(sizeof(*msginfo) + sizeof(struct vmbus_channel_message_header), GFP_KERNEL); if (!msginfo) diff --git a/drivers/hv/connection.c b/drivers/hv/connection.c index 47fb412eafd35..112cdab52f651 100644 --- a/drivers/hv/connection.c +++ b/drivers/hv/connection.c @@ -19,6 +19,8 @@ #include #include #include +#include +#include #include #include "hyperv_vmbus.h" @@ -102,8 +104,9 @@ int vmbus_negotiate_version(struct vmbus_channel_msginfo *msginfo, u32 version) vmbus_connection.msg_conn_id = VMBUS_MESSAGE_CONNECTION_ID; } - msg->monitor_page1 = virt_to_phys(vmbus_connection.monitor_pages[0]); - msg->monitor_page2 = virt_to_phys(vmbus_connection.monitor_pages[1]); + msg->monitor_page1 = vmbus_connection.monitor_pages_pa[0]; + msg->monitor_page2 = vmbus_connection.monitor_pages_pa[1]; + msg->target_vcpu = hv_cpu_number_to_vp_number(VMBUS_CONNECT_CPU); /* @@ -216,6 +219,65 @@ int vmbus_connect(void) goto cleanup; } + vmbus_connection.monitor_pages_original[0] + = vmbus_connection.monitor_pages[0]; + vmbus_connection.monitor_pages_original[1] + = vmbus_connection.monitor_pages[1]; + vmbus_connection.monitor_pages_pa[0] + = virt_to_phys(vmbus_connection.monitor_pages[0]); + vmbus_connection.monitor_pages_pa[1] + = virt_to_phys(vmbus_connection.monitor_pages[1]); + + if (hv_is_isolation_supported()) { + ret = set_memory_decrypted((unsigned long) + vmbus_connection.monitor_pages[0], + 1); + ret |= set_memory_decrypted((unsigned long) + vmbus_connection.monitor_pages[1], + 1); + if (ret) + goto cleanup; + + /* + * Isolation VM with AMD SNP needs to access monitor page via + * address space above shared gpa boundary. + */ + if (hv_isolation_type_snp()) { + vmbus_connection.monitor_pages_pa[0] += + ms_hyperv.shared_gpa_boundary; + vmbus_connection.monitor_pages_pa[1] += + ms_hyperv.shared_gpa_boundary; + + vmbus_connection.monitor_pages[0] + = memremap(vmbus_connection.monitor_pages_pa[0], + HV_HYP_PAGE_SIZE, + MEMREMAP_WB); + if (!vmbus_connection.monitor_pages[0]) { + ret = -ENOMEM; + goto cleanup; + } + + vmbus_connection.monitor_pages[1] + = memremap(vmbus_connection.monitor_pages_pa[1], + HV_HYP_PAGE_SIZE, + MEMREMAP_WB); + if (!vmbus_connection.monitor_pages[1]) { + ret = -ENOMEM; + goto cleanup; + } + } + + /* + * Set memory host visibility hvcall smears memory + * and so zero monitor pages here. + */ + memset(vmbus_connection.monitor_pages[0], 0x00, + HV_HYP_PAGE_SIZE); + memset(vmbus_connection.monitor_pages[1], 0x00, + HV_HYP_PAGE_SIZE); + + } + msginfo = kzalloc(sizeof(*msginfo) + sizeof(struct vmbus_channel_initiate_contact), GFP_KERNEL); @@ -303,10 +365,31 @@ void vmbus_disconnect(void) vmbus_connection.int_page = NULL; } - hv_free_hyperv_page((unsigned long)vmbus_connection.monitor_pages[0]); - hv_free_hyperv_page((unsigned long)vmbus_connection.monitor_pages[1]); - vmbus_connection.monitor_pages[0] = NULL; - vmbus_connection.monitor_pages[1] = NULL; + if (hv_is_isolation_supported()) { + /* + * memunmap() checks input address is ioremap address or not + * inside. It doesn't unmap any thing in the non-SNP CVM and + * so not check CVM type here. + */ + memunmap(vmbus_connection.monitor_pages[0]); + memunmap(vmbus_connection.monitor_pages[1]); + + set_memory_encrypted((unsigned long) + vmbus_connection.monitor_pages_original[0], + 1); + set_memory_encrypted((unsigned long) + vmbus_connection.monitor_pages_original[1], + 1); + } + + hv_free_hyperv_page((unsigned long) + vmbus_connection.monitor_pages_original[0]); + hv_free_hyperv_page((unsigned long) + vmbus_connection.monitor_pages_original[1]); + vmbus_connection.monitor_pages_original[0] = + vmbus_connection.monitor_pages[0] = NULL; + vmbus_connection.monitor_pages_original[1] = + vmbus_connection.monitor_pages[1] = NULL; } /* @@ -451,6 +534,10 @@ void vmbus_set_event(struct vmbus_channel *channel) ++channel->sig_events; - hv_do_fast_hypercall8(HVCALL_SIGNAL_EVENT, channel->sig_event); + if (hv_isolation_type_snp()) + hv_ghcb_hypercall(HVCALL_SIGNAL_EVENT, &channel->sig_event, + NULL, sizeof(channel->sig_event)); + else + hv_do_fast_hypercall8(HVCALL_SIGNAL_EVENT, channel->sig_event); } EXPORT_SYMBOL_GPL(vmbus_set_event); diff --git a/drivers/hv/hv.c b/drivers/hv/hv.c index e83507f49676d..4d6480d57546d 100644 --- a/drivers/hv/hv.c +++ b/drivers/hv/hv.c @@ -8,6 +8,7 @@ */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt +#include #include #include #include @@ -97,7 +98,13 @@ int hv_post_message(union hv_connection_id connection_id, aligned_msg->payload_size = payload_size; memcpy((void *)aligned_msg->payload, payload, payload_size); - status = hv_do_hypercall(HVCALL_POST_MESSAGE, aligned_msg, NULL); + if (hv_isolation_type_snp()) + status = hv_ghcb_hypercall(HVCALL_POST_MESSAGE, + (void *)aligned_msg, NULL, + sizeof(*aligned_msg)); + else + status = hv_do_hypercall(HVCALL_POST_MESSAGE, + aligned_msg, NULL); /* Preemption must remain disabled until after the hypercall * so some other thread can't get scheduled onto this cpu and @@ -136,17 +143,24 @@ int hv_synic_alloc(void) tasklet_init(&hv_cpu->msg_dpc, vmbus_on_msg_dpc, (unsigned long) hv_cpu); - hv_cpu->synic_message_page = - (void *)get_zeroed_page(GFP_ATOMIC); - if (hv_cpu->synic_message_page == NULL) { - pr_err("Unable to allocate SYNIC message page\n"); - goto err; - } + /* + * Synic message and event pages are allocated by paravisor. + * Skip these pages allocation here. + */ + if (!hv_isolation_type_snp()) { + hv_cpu->synic_message_page = + (void *)get_zeroed_page(GFP_ATOMIC); + if (hv_cpu->synic_message_page == NULL) { + pr_err("Unable to allocate SYNIC message page\n"); + goto err; + } - hv_cpu->synic_event_page = (void *)get_zeroed_page(GFP_ATOMIC); - if (hv_cpu->synic_event_page == NULL) { - pr_err("Unable to allocate SYNIC event page\n"); - goto err; + hv_cpu->synic_event_page = + (void *)get_zeroed_page(GFP_ATOMIC); + if (hv_cpu->synic_event_page == NULL) { + pr_err("Unable to allocate SYNIC event page\n"); + goto err; + } } hv_cpu->post_msg_page = (void *)get_zeroed_page(GFP_ATOMIC); @@ -201,16 +215,35 @@ void hv_synic_enable_regs(unsigned int cpu) /* Setup the Synic's message page */ simp.as_uint64 = hv_get_register(HV_REGISTER_SIMP); simp.simp_enabled = 1; - simp.base_simp_gpa = virt_to_phys(hv_cpu->synic_message_page) - >> HV_HYP_PAGE_SHIFT; + + if (hv_isolation_type_snp()) { + hv_cpu->synic_message_page + = memremap(simp.base_simp_gpa << HV_HYP_PAGE_SHIFT, + HV_HYP_PAGE_SIZE, MEMREMAP_WB); + if (!hv_cpu->synic_message_page) + pr_err("Fail to map syinc message page.\n"); + } else { + simp.base_simp_gpa = virt_to_phys(hv_cpu->synic_message_page) + >> HV_HYP_PAGE_SHIFT; + } hv_set_register(HV_REGISTER_SIMP, simp.as_uint64); /* Setup the Synic's event page */ siefp.as_uint64 = hv_get_register(HV_REGISTER_SIEFP); siefp.siefp_enabled = 1; - siefp.base_siefp_gpa = virt_to_phys(hv_cpu->synic_event_page) - >> HV_HYP_PAGE_SHIFT; + + if (hv_isolation_type_snp()) { + hv_cpu->synic_event_page = + memremap(siefp.base_siefp_gpa << HV_HYP_PAGE_SHIFT, + HV_HYP_PAGE_SIZE, MEMREMAP_WB); + + if (!hv_cpu->synic_event_page) + pr_err("Fail to map syinc event page.\n"); + } else { + siefp.base_siefp_gpa = virt_to_phys(hv_cpu->synic_event_page) + >> HV_HYP_PAGE_SHIFT; + } hv_set_register(HV_REGISTER_SIEFP, siefp.as_uint64); @@ -257,6 +290,8 @@ int hv_synic_init(unsigned int cpu) */ void hv_synic_disable_regs(unsigned int cpu) { + struct hv_per_cpu_context *hv_cpu + = per_cpu_ptr(hv_context.cpu_context, cpu); union hv_synic_sint shared_sint; union hv_synic_simp simp; union hv_synic_siefp siefp; @@ -273,14 +308,27 @@ void hv_synic_disable_regs(unsigned int cpu) shared_sint.as_uint64); simp.as_uint64 = hv_get_register(HV_REGISTER_SIMP); + /* + * In Isolation VM, sim and sief pages are allocated by + * paravisor. These pages also will be used by kdump + * kernel. So just reset enable bit here and keep page + * addresses. + */ simp.simp_enabled = 0; - simp.base_simp_gpa = 0; + if (hv_isolation_type_snp()) + memunmap(hv_cpu->synic_message_page); + else + simp.base_simp_gpa = 0; hv_set_register(HV_REGISTER_SIMP, simp.as_uint64); siefp.as_uint64 = hv_get_register(HV_REGISTER_SIEFP); siefp.siefp_enabled = 0; - siefp.base_siefp_gpa = 0; + + if (hv_isolation_type_snp()) + memunmap(hv_cpu->synic_event_page); + else + siefp.base_siefp_gpa = 0; hv_set_register(HV_REGISTER_SIEFP, siefp.as_uint64); diff --git a/drivers/hv/hv_azure_blob.c b/drivers/hv/hv_azure_blob.c new file mode 100644 index 0000000000000..82fc917338803 --- /dev/null +++ b/drivers/hv/hv_azure_blob.c @@ -0,0 +1,599 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* Copyright (c) 2021 Microsoft Corporation. */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +struct az_blob_device { + struct kref kref; + + struct hv_device *device; + struct miscdevice misc; + + /* Lock for protecting pending_requests */ + spinlock_t request_lock; + struct list_head pending_requests; + wait_queue_head_t waiting_to_drain; + + bool removing; +}; + +/* VSP messages */ +enum az_blob_vsp_request_type { + AZ_BLOB_DRIVER_REQUEST_FIRST = 0x100, + AZ_BLOB_DRIVER_USER_REQUEST = 0x100, + AZ_BLOB_DRIVER_REGISTER_BUFFER = 0x101, + AZ_BLOB_DRIVER_DEREGISTER_BUFFER = 0x102, +}; + +/* VSC->VSP request */ +struct az_blob_vsp_request { + u32 version; + u32 timeout_ms; + u32 data_buffer_offset; + u32 data_buffer_length; + u32 data_buffer_valid; + u32 operation_type; + u32 request_buffer_offset; + u32 request_buffer_length; + u32 response_buffer_offset; + u32 response_buffer_length; + guid_t transaction_id; +} __packed; + +/* VSP->VSC response */ +struct az_blob_vsp_response { + u32 length; + u32 error; + u32 response_len; +} __packed; + +struct az_blob_vsp_request_ctx { + struct list_head list_device; + struct completion wait_vsp; + struct az_blob_request_sync *request; +}; + +/* The maximum number of pages we can pass to VSP in a single packet */ +#define AZ_BLOB_MAX_PAGES 8192 + +/* Ring buffer size in bytes */ +#define AZ_BLOB_RING_SIZE (128 * 1024) + +/* System wide device queue depth */ +#define AZ_BLOB_QUEUE_DEPTH 1024 + +/* The VSP protocol version this driver understands */ +#define VSP_PROTOCOL_VERSION_V1 0 + +static const struct hv_vmbus_device_id id_table[] = { + { HV_AZURE_BLOB_GUID, + .driver_data = 0 + }, + { }, +}; + +static void az_blob_device_get(struct az_blob_device *dev) +{ + kref_get(&dev->kref); +} + +static void az_blob_release(struct kref *kref) +{ + struct az_blob_device *dev = + container_of(kref, struct az_blob_device, kref); + + kfree(dev); +} + +static void az_blob_device_put(struct az_blob_device *dev) +{ + kref_put(&dev->kref, az_blob_release); +} + +static void az_blob_on_channel_callback(void *context) +{ + struct vmbus_channel *channel = (struct vmbus_channel *)context; + const struct vmpacket_descriptor *desc; + + foreach_vmbus_pkt(desc, channel) { + struct az_blob_vsp_request_ctx *request_ctx; + struct az_blob_vsp_response *response; + u64 cmd_rqst = desc->trans_id; + + request_ctx = (struct az_blob_vsp_request_ctx *)cmd_rqst; + response = hv_pkt_data(desc); + + dev_dbg(&channel->device_obj->device, + "response for request %pUb status %u " + "response_len %u\n", + &request_ctx->request->guid, response->error, + response->response_len); + request_ctx->request->response.status = response->error; + request_ctx->request->response.response_len = + response->response_len; + complete(&request_ctx->wait_vsp); + } +} + +static int az_blob_fop_open(struct inode *inode, struct file *file) +{ + struct az_blob_device *dev = + container_of(file->private_data, struct az_blob_device, misc); + + az_blob_device_get(dev); + + return 0; +} + +static int az_blob_fop_release(struct inode *inode, struct file *file) +{ + struct az_blob_device *dev = + container_of(file->private_data, struct az_blob_device, misc); + + az_blob_device_put(dev); + + return 0; +} + +static inline bool az_blob_safe_file_access(struct file *file) +{ + return file->f_cred == current_cred() && !uaccess_kernel(); +} + +/* Pin the user buffer pages into memory for passing to VSP */ +static int get_buffer_pages(int rw, void __user *buffer, u32 buffer_len, + struct page ***ppages, size_t *start, + size_t *num_pages) +{ + struct iovec iov; + struct iov_iter iter; + int ret; + ssize_t result; + struct page **pages; + int i; + + ret = import_single_range(rw, buffer, buffer_len, &iov, &iter); + if (ret) + return ret; + + result = iov_iter_get_pages_alloc(&iter, &pages, buffer_len, start); + if (result < 0) + return result; + + *num_pages = (result + *start + PAGE_SIZE - 1) / PAGE_SIZE; + if (result != buffer_len) { + for (i = 0; i < *num_pages; i++) + put_page(pages[i]); + kvfree(pages); + return -EFAULT; + } + + *ppages = pages; + return 0; +} + +static void fill_in_page_buffer(u64 *pfn_array, int *index, + struct page **pages, unsigned long num_pages) +{ + int i, page_idx = *index; + + for (i = 0; i < num_pages; i++) + pfn_array[page_idx++] = page_to_pfn(pages[i]); + *index = page_idx; +} + +static void free_buffer_pages(size_t num_pages, struct page **pages) +{ + unsigned long i; + + for (i = 0; i < num_pages; i++) + if (pages && pages[i]) + put_page(pages[i]); + kvfree(pages); +} + +static long az_blob_ioctl_user_request(struct file *filp, unsigned long arg) +{ + struct az_blob_device *dev = + container_of(filp->private_data, struct az_blob_device, misc); + struct az_blob_request_sync __user *request_user = + (struct az_blob_request_sync __user *)arg; + struct az_blob_request_sync request; + struct az_blob_vsp_request_ctx request_ctx; + unsigned long flags; + int ret; + size_t request_start, request_num_pages = 0; + size_t response_start, response_num_pages = 0; + size_t data_start, data_num_pages = 0, total_num_pages; + struct page **request_pages = NULL, **response_pages = NULL; + struct page **data_pages = NULL; + struct vmbus_packet_mpb_array *desc; + u64 *pfn_array; + int desc_size; + int page_idx; + struct az_blob_vsp_request *vsp_request; + + if (dev->removing) + return -ENODEV; + + if (!az_blob_safe_file_access(filp)) { + dev_dbg(&dev->device->device, + "process %d(%s) changed security contexts after" + " opening file descriptor\n", + task_tgid_vnr(current), current->comm); + return -EACCES; + } + + if (copy_from_user(&request, request_user, sizeof(request))) { + dev_dbg(&dev->device->device, + "don't have permission to user provided buffer\n"); + return -EFAULT; + } + + dev_dbg(&dev->device->device, + "az_blob ioctl request guid %pUb timeout %u request_len %u" + " response_len %u data_len %u request_buffer %llx " + "response_buffer %llx data_buffer %llx\n", + &request.guid, request.timeout, request.request_len, + request.response_len, request.data_len, request.request_buffer, + request.response_buffer, request.data_buffer); + + if (!request.request_len || !request.response_len) + return -EINVAL; + + if (request.data_len && request.data_len < request.data_valid) + return -EINVAL; + + if (request.data_len > PAGE_SIZE * AZ_BLOB_MAX_PAGES || + request.request_len > PAGE_SIZE * AZ_BLOB_MAX_PAGES || + request.response_len > PAGE_SIZE * AZ_BLOB_MAX_PAGES) + return -EINVAL; + + init_completion(&request_ctx.wait_vsp); + request_ctx.request = &request; + + ret = get_buffer_pages(READ, (void __user *)request.request_buffer, + request.request_len, &request_pages, + &request_start, &request_num_pages); + if (ret) + goto get_user_page_failed; + + ret = get_buffer_pages(READ | WRITE, + (void __user *)request.response_buffer, + request.response_len, &response_pages, + &response_start, &response_num_pages); + if (ret) + goto get_user_page_failed; + + if (request.data_len) { + ret = get_buffer_pages(READ | WRITE, + (void __user *)request.data_buffer, + request.data_len, &data_pages, + &data_start, &data_num_pages); + if (ret) + goto get_user_page_failed; + } + + total_num_pages = request_num_pages + response_num_pages + + data_num_pages; + if (total_num_pages > AZ_BLOB_MAX_PAGES) { + dev_dbg(&dev->device->device, + "number of DMA pages %lu buffer exceeding %u\n", + total_num_pages, AZ_BLOB_MAX_PAGES); + ret = -EINVAL; + goto get_user_page_failed; + } + + /* Construct a VMBUS packet and send it over to VSP */ + desc_size = struct_size(desc, range.pfn_array, total_num_pages); + desc = kzalloc(desc_size, GFP_KERNEL); + vsp_request = kzalloc(sizeof(*vsp_request), GFP_KERNEL); + if (!desc || !vsp_request) { + kfree(desc); + kfree(vsp_request); + ret = -ENOMEM; + goto get_user_page_failed; + } + + desc->range.offset = 0; + desc->range.len = total_num_pages * PAGE_SIZE; + pfn_array = desc->range.pfn_array; + page_idx = 0; + + if (request.data_len) { + fill_in_page_buffer(pfn_array, &page_idx, data_pages, + data_num_pages); + vsp_request->data_buffer_offset = data_start; + vsp_request->data_buffer_length = request.data_len; + vsp_request->data_buffer_valid = request.data_valid; + } + + fill_in_page_buffer(pfn_array, &page_idx, request_pages, + request_num_pages); + vsp_request->request_buffer_offset = request_start + + data_num_pages * PAGE_SIZE; + vsp_request->request_buffer_length = request.request_len; + + fill_in_page_buffer(pfn_array, &page_idx, response_pages, + response_num_pages); + vsp_request->response_buffer_offset = response_start + + (data_num_pages + request_num_pages) * PAGE_SIZE; + vsp_request->response_buffer_length = request.response_len; + + vsp_request->version = VSP_PROTOCOL_VERSION_V1; + vsp_request->timeout_ms = request.timeout; + vsp_request->operation_type = AZ_BLOB_DRIVER_USER_REQUEST; + guid_copy(&vsp_request->transaction_id, &request.guid); + + spin_lock_irqsave(&dev->request_lock, flags); + list_add_tail(&request_ctx.list_device, &dev->pending_requests); + spin_unlock_irqrestore(&dev->request_lock, flags); + + dev_dbg(&dev->device->device, "sending request to VSP\n"); + dev_dbg(&dev->device->device, "desc_size %u desc->range.len %u " + "desc->range.offset %u\n", + desc_size, desc->range.len, desc->range.offset); + dev_dbg(&dev->device->device, "vsp_request data_buffer_offset %u " + "data_buffer_length %u " + "data_buffer_valid %u request_buffer_offset %u " + "request_buffer_length %u response_buffer_offset %u " + "response_buffer_length %u\n", + vsp_request->data_buffer_offset, + vsp_request->data_buffer_length, + vsp_request->data_buffer_valid, + vsp_request->request_buffer_offset, + vsp_request->request_buffer_length, + vsp_request->response_buffer_offset, + vsp_request->response_buffer_length); + + ret = vmbus_sendpacket_mpb_desc(dev->device->channel, desc, desc_size, + vsp_request, sizeof(*vsp_request), + (u64)&request_ctx); + + kfree(desc); + kfree(vsp_request); + if (ret) + goto vmbus_send_failed; + + wait_for_completion(&request_ctx.wait_vsp); + + /* + * At this point, the response is already written to request + * by VMBUS completion handler, copy them to user-mode buffers + * and return to user-mode + */ + if (copy_to_user(&request_user->response, &request.response, + sizeof(request.response))) + ret = -EFAULT; + +vmbus_send_failed: + + spin_lock_irqsave(&dev->request_lock, flags); + list_del(&request_ctx.list_device); + if (list_empty(&dev->pending_requests)) + wake_up(&dev->waiting_to_drain); + spin_unlock_irqrestore(&dev->request_lock, flags); + +get_user_page_failed: + free_buffer_pages(request_num_pages, request_pages); + free_buffer_pages(response_num_pages, response_pages); + free_buffer_pages(data_num_pages, data_pages); + + return ret; +} + +static long az_blob_fop_ioctl(struct file *filp, unsigned int cmd, + unsigned long arg) +{ + struct az_blob_device *dev = + container_of(filp->private_data, struct az_blob_device, misc); + + switch (cmd) { + case IOCTL_AZ_BLOB_DRIVER_USER_REQUEST: + return az_blob_ioctl_user_request(filp, arg); + + default: + dev_dbg(&dev->device->device, + "unrecognized IOCTL code %u\n", cmd); + } + + return -EINVAL; +} + +static const struct file_operations az_blob_client_fops = { + .owner = THIS_MODULE, + .open = az_blob_fop_open, + .unlocked_ioctl = az_blob_fop_ioctl, + .release = az_blob_fop_release, +}; + +#if defined(CONFIG_DEBUG_FS) +static int az_blob_show_pending_requests(struct seq_file *m, void *v) +{ + unsigned long flags; + struct az_blob_vsp_request_ctx *request_ctx; + struct az_blob_device *dev = m->private; + + seq_puts(m, "List of pending requests\n"); + seq_puts(m, "UUID request_len response_len data_len data_valid " + "request_buffer response_buffer data_buffer\n"); + spin_lock_irqsave(&dev->request_lock, flags); + list_for_each_entry(request_ctx, &dev->pending_requests, list_device) { + seq_printf(m, "%pUb ", &request_ctx->request->guid); + seq_printf(m, "%u ", request_ctx->request->request_len); + seq_printf(m, "%u ", request_ctx->request->response_len); + seq_printf(m, "%u ", request_ctx->request->data_len); + seq_printf(m, "%u ", request_ctx->request->data_valid); + seq_printf(m, "%llx ", request_ctx->request->request_buffer); + seq_printf(m, "%llx ", request_ctx->request->response_buffer); + seq_printf(m, "%llx\n", request_ctx->request->data_buffer); + } + spin_unlock_irqrestore(&dev->request_lock, flags); + + return 0; +} + +static int az_blob_debugfs_open(struct inode *inode, struct file *file) +{ + return single_open(file, az_blob_show_pending_requests, + inode->i_private); +} + +static const struct file_operations az_blob_debugfs_fops = { + .open = az_blob_debugfs_open, + .read = seq_read, + .llseek = seq_lseek, + .release = seq_release +}; +#endif + +static void az_blob_remove_device(struct az_blob_device *dev) +{ + struct dentry *debugfs_root = debugfs_lookup("az_blob", NULL); + + debugfs_remove_recursive(debugfs_root); + misc_deregister(&dev->misc); +} + +static int az_blob_create_device(struct az_blob_device *dev) +{ + int ret; + struct dentry *debugfs_root; + + dev->misc.minor = MISC_DYNAMIC_MINOR, + dev->misc.name = "azure_blob", + dev->misc.fops = &az_blob_client_fops, + + ret = misc_register(&dev->misc); + if (ret) + return ret; + + debugfs_root = debugfs_create_dir("az_blob", NULL); + debugfs_create_file("pending_requests", 0400, debugfs_root, dev, + &az_blob_debugfs_fops); + + return 0; +} + +static int az_blob_connect_to_vsp(struct hv_device *device, + struct az_blob_device *dev, u32 ring_size) +{ + int ret; + + dev->device = device; + + ret = vmbus_open(device->channel, ring_size, ring_size, NULL, 0, + az_blob_on_channel_callback, device->channel); + + if (ret) + return ret; + + hv_set_drvdata(device, dev); + + return ret; +} + +static void az_blob_remove_vmbus(struct hv_device *device) +{ + hv_set_drvdata(device, NULL); + vmbus_close(device->channel); +} + +static int az_blob_probe(struct hv_device *device, + const struct hv_vmbus_device_id *dev_id) +{ + int ret; + struct az_blob_device *dev; + + dev = kzalloc(sizeof(*dev), GFP_KERNEL); + if (!dev) + return -ENOMEM; + + spin_lock_init(&dev->request_lock); + INIT_LIST_HEAD(&dev->pending_requests); + init_waitqueue_head(&dev->waiting_to_drain); + + kref_init(&dev->kref); + + ret = az_blob_connect_to_vsp(device, dev, AZ_BLOB_RING_SIZE); + if (ret) { + dev_err(&dev->device->device, + "failed to connect to VSP ret %d\n", ret); + goto fail; + } + + /* create user-mode client library facing device */ + ret = az_blob_create_device(dev); + if (ret) { + dev_err(&dev->device->device, + "failed to create device ret=%d\n", ret); + az_blob_remove_vmbus(device); + goto fail; + } + + dev_info(&dev->device->device, "successfully probed\n"); + + return 0; + +fail: + az_blob_device_put(dev); + return ret; +} + +static int az_blob_remove(struct hv_device *device) +{ + struct az_blob_device *dev = hv_get_drvdata(device); + + dev->removing = true; + + az_blob_remove_device(dev); + + /* + * The Hyper-V VSP still owns the user buffers of those pending + * requests. Wait until all the user buffers are released to + * the original owner before proceeding to remove the bus device. + */ + dev_dbg(&device->device, "wait for vsp_pending_list\n"); + wait_event(dev->waiting_to_drain, list_empty(&dev->pending_requests)); + + az_blob_remove_vmbus(device); + az_blob_device_put(dev); + + dev_info(&device->device, "device removed\n"); + + return 0; +} + +static struct hv_driver az_blob_drv = { + .name = KBUILD_MODNAME, + .id_table = id_table, + .probe = az_blob_probe, + .remove = az_blob_remove, + .driver = { + .probe_type = PROBE_PREFER_ASYNCHRONOUS, + }, +}; + +static int __init az_blob_drv_init(void) +{ + return vmbus_driver_register(&az_blob_drv); +} + +static void __exit az_blob_drv_exit(void) +{ + vmbus_driver_unregister(&az_blob_drv); +} + +MODULE_LICENSE("GPL"); +MODULE_DESCRIPTION("Microsoft Azure Blob driver"); +module_init(az_blob_drv_init); +module_exit(az_blob_drv_exit); diff --git a/drivers/hv/hv_common.c b/drivers/hv/hv_common.c index c0d9048a41123..3c5cb1f703199 100644 --- a/drivers/hv/hv_common.c +++ b/drivers/hv/hv_common.c @@ -249,6 +249,12 @@ bool __weak hv_is_isolation_supported(void) } EXPORT_SYMBOL_GPL(hv_is_isolation_supported); +bool __weak hv_isolation_type_snp(void) +{ + return false; +} +EXPORT_SYMBOL_GPL(hv_isolation_type_snp); + void __weak hv_setup_vmbus_handler(void (*handler)(void)) { } @@ -283,3 +289,20 @@ void __weak hyperv_cleanup(void) { } EXPORT_SYMBOL_GPL(hyperv_cleanup); + +u64 __weak hv_ghcb_hypercall(u64 control, void *input, void *output, u32 input_size) +{ + return HV_STATUS_INVALID_PARAMETER; +} +EXPORT_SYMBOL_GPL(hv_ghcb_hypercall); + +void __weak *hv_map_memory(void *addr, unsigned long size) +{ + return NULL; +} +EXPORT_SYMBOL_GPL(hv_map_memory); + +void __weak hv_unmap_memory(void *addr) +{ +} +EXPORT_SYMBOL_GPL(hv_unmap_memory); diff --git a/drivers/hv/hyperv_vmbus.h b/drivers/hv/hyperv_vmbus.h index d030577ad6a2c..64c0b9cbe183b 100644 --- a/drivers/hv/hyperv_vmbus.h +++ b/drivers/hv/hyperv_vmbus.h @@ -181,7 +181,7 @@ void hv_ringbuffer_cleanup(struct hv_ring_buffer_info *ring_info); int hv_ringbuffer_write(struct vmbus_channel *channel, const struct kvec *kv_list, u32 kv_count, - u64 requestid); + u64 requestid, u64 *trans_id); int hv_ringbuffer_read(struct vmbus_channel *channel, void *buffer, u32 buflen, u32 *buffer_actual_len, @@ -241,6 +241,8 @@ struct vmbus_connection { * is child->parent notification */ struct hv_monitor_page *monitor_pages[2]; + void *monitor_pages_original[2]; + phys_addr_t monitor_pages_pa[2]; struct list_head chn_msg_list; spinlock_t channelmsg_lock; diff --git a/drivers/hv/ring_buffer.c b/drivers/hv/ring_buffer.c index 1475ea77351ef..b91705ebe8fe0 100644 --- a/drivers/hv/ring_buffer.c +++ b/drivers/hv/ring_buffer.c @@ -17,6 +17,8 @@ #include #include #include +#include +#include #include "hyperv_vmbus.h" @@ -183,8 +185,10 @@ void hv_ringbuffer_pre_init(struct vmbus_channel *channel) int hv_ringbuffer_init(struct hv_ring_buffer_info *ring_info, struct page *pages, u32 page_cnt, u32 max_pkt_size) { - int i; struct page **pages_wraparound; + unsigned long *pfns_wraparound; + u64 pfn; + int i; BUILD_BUG_ON((sizeof(struct hv_ring_buffer) != PAGE_SIZE)); @@ -192,23 +196,48 @@ int hv_ringbuffer_init(struct hv_ring_buffer_info *ring_info, * First page holds struct hv_ring_buffer, do wraparound mapping for * the rest. */ - pages_wraparound = kcalloc(page_cnt * 2 - 1, sizeof(struct page *), - GFP_KERNEL); - if (!pages_wraparound) - return -ENOMEM; + if (hv_isolation_type_snp()) { + pfn = page_to_pfn(pages) + + PFN_DOWN(ms_hyperv.shared_gpa_boundary); + + pfns_wraparound = kcalloc(page_cnt * 2 - 1, + sizeof(unsigned long), GFP_KERNEL); + if (!pfns_wraparound) + return -ENOMEM; + + pfns_wraparound[0] = pfn; + for (i = 0; i < 2 * (page_cnt - 1); i++) + pfns_wraparound[i + 1] = pfn + i % (page_cnt - 1) + 1; + + ring_info->ring_buffer = (struct hv_ring_buffer *) + vmap_pfn(pfns_wraparound, page_cnt * 2 - 1, + PAGE_KERNEL); + kfree(pfns_wraparound); - pages_wraparound[0] = pages; - for (i = 0; i < 2 * (page_cnt - 1); i++) - pages_wraparound[i + 1] = &pages[i % (page_cnt - 1) + 1]; + if (!ring_info->ring_buffer) + return -ENOMEM; + + /* Zero ring buffer after setting memory host visibility. */ + memset(ring_info->ring_buffer, 0x00, PAGE_SIZE * page_cnt); + } else { + pages_wraparound = kcalloc(page_cnt * 2 - 1, + sizeof(struct page *), + GFP_KERNEL); - ring_info->ring_buffer = (struct hv_ring_buffer *) - vmap(pages_wraparound, page_cnt * 2 - 1, VM_MAP, PAGE_KERNEL); + pages_wraparound[0] = pages; + for (i = 0; i < 2 * (page_cnt - 1); i++) + pages_wraparound[i + 1] = + &pages[i % (page_cnt - 1) + 1]; - kfree(pages_wraparound); + ring_info->ring_buffer = (struct hv_ring_buffer *) + vmap(pages_wraparound, page_cnt * 2 - 1, VM_MAP, + PAGE_KERNEL); + kfree(pages_wraparound); + if (!ring_info->ring_buffer) + return -ENOMEM; + } - if (!ring_info->ring_buffer) - return -ENOMEM; ring_info->ring_buffer->read_index = ring_info->ring_buffer->write_index = 0; @@ -265,7 +294,7 @@ EXPORT_SYMBOL_GPL(hv_ringbuffer_spinlock_busy); /* Write to the ring buffer. */ int hv_ringbuffer_write(struct vmbus_channel *channel, const struct kvec *kv_list, u32 kv_count, - u64 requestid) + u64 requestid, u64 *trans_id) { int i; u32 bytes_avail_towrite; @@ -276,7 +305,7 @@ int hv_ringbuffer_write(struct vmbus_channel *channel, unsigned long flags; struct hv_ring_buffer_info *outring_info = &channel->outbound; struct vmpacket_descriptor *desc = kv_list[0].iov_base; - u64 rqst_id = VMBUS_NO_RQSTOR; + u64 __trans_id, rqst_id = VMBUS_NO_RQSTOR; if (channel->rescind) return -ENODEV; @@ -335,7 +364,15 @@ int hv_ringbuffer_write(struct vmbus_channel *channel, } } desc = hv_get_ring_buffer(outring_info) + old_write; - desc->trans_id = (rqst_id == VMBUS_NO_RQSTOR) ? requestid : rqst_id; + __trans_id = (rqst_id == VMBUS_NO_RQSTOR) ? requestid : rqst_id; + /* + * Ensure the compiler doesn't generate code that reads the value of + * the transaction ID from the ring buffer, which is shared with the + * Hyper-V host and subject to being changed at any time. + */ + WRITE_ONCE(desc->trans_id, __trans_id); + if (trans_id) + *trans_id = __trans_id; /* Set previous packet start */ prev_indices = hv_get_ring_bufferindices(outring_info); diff --git a/drivers/hv/vmbus_drv.c b/drivers/hv/vmbus_drv.c index 115835bd562c7..3e6db9effd988 100644 --- a/drivers/hv/vmbus_drv.c +++ b/drivers/hv/vmbus_drv.c @@ -33,6 +33,7 @@ #include #include #include +#include #include #include "hyperv_vmbus.h" @@ -903,6 +904,21 @@ static int vmbus_probe(struct device *child_device) drv_to_hv_drv(child_device->driver); struct hv_device *dev = device_to_hv_device(child_device); const struct hv_vmbus_device_id *dev_id; + enum dev_dma_attr coherent; + + /* + * On ARM64, propagate the DMA coherence setting from the top level + * VMbus ACPI device to the child VMbus device being added here. + * Older Hyper-V ARM64 versions don't set the _CCA method on the + * top level VMbus ACPI device as they should. Treat these cases + * as DMA coherent since that's the assumption made by Hyper-V. + * + * On x86/x64 these calls assume coherence and have no effect. + */ + coherent = acpi_get_dma_attr(hv_acpi_dev); + if (coherent == DEV_DMA_NOT_SUPPORTED) + coherent = DEV_DMA_COHERENT; + acpi_dma_configure(child_device, coherent); dev_id = hv_vmbus_get_id(drv, dev); if (drv->probe) { @@ -2101,6 +2117,10 @@ int vmbus_device_register(struct hv_device *child_device_obj) child_device_obj->device.parent = &hv_acpi_dev->dev; child_device_obj->device.release = vmbus_device_release; + child_device_obj->device.dma_parms = &child_device_obj->dma_parms; + child_device_obj->device.dma_mask = &child_device_obj->dma_mask; + dma_set_mask(&child_device_obj->device, DMA_BIT_MASK(64)); + /* * Register with the LDM. This will kick off the driver/device * binding...which will eventually call vmbus_match() and vmbus_probe() diff --git a/drivers/hwmon/acpi_power_meter.c b/drivers/hwmon/acpi_power_meter.c index 014505b1faf74..1336f77106177 100644 --- a/drivers/hwmon/acpi_power_meter.c +++ b/drivers/hwmon/acpi_power_meter.c @@ -31,6 +31,7 @@ #define POWER_METER_CAN_NOTIFY (1 << 3) #define POWER_METER_IS_BATTERY (1 << 8) #define UNKNOWN_HYSTERESIS 0xFFFFFFFF +#define UNKNOWN_POWER 0xFFFFFFFF #define METER_NOTIFY_CONFIG 0x80 #define METER_NOTIFY_TRIP 0x81 @@ -348,6 +349,9 @@ static ssize_t show_power(struct device *dev, update_meter(resource); mutex_unlock(&resource->lock); + if (resource->power == UNKNOWN_POWER) + return -ENODATA; + return sprintf(buf, "%llu\n", resource->power * 1000); } diff --git a/drivers/hwmon/axi-fan-control.c b/drivers/hwmon/axi-fan-control.c index d2092c17d9935..7af18018a32ff 100644 --- a/drivers/hwmon/axi-fan-control.c +++ b/drivers/hwmon/axi-fan-control.c @@ -508,6 +508,21 @@ static int axi_fan_control_probe(struct platform_device *pdev) return -ENODEV; } + ret = axi_fan_control_init(ctl, pdev->dev.of_node); + if (ret) { + dev_err(&pdev->dev, "Failed to initialize device\n"); + return ret; + } + + ctl->hdev = devm_hwmon_device_register_with_info(&pdev->dev, + name, + ctl, + &axi_chip_info, + axi_fan_control_groups); + + if (IS_ERR(ctl->hdev)) + return PTR_ERR(ctl->hdev); + ctl->irq = platform_get_irq(pdev, 0); if (ctl->irq < 0) return ctl->irq; @@ -521,19 +536,7 @@ static int axi_fan_control_probe(struct platform_device *pdev) return ret; } - ret = axi_fan_control_init(ctl, pdev->dev.of_node); - if (ret) { - dev_err(&pdev->dev, "Failed to initialize device\n"); - return ret; - } - - ctl->hdev = devm_hwmon_device_register_with_info(&pdev->dev, - name, - ctl, - &axi_chip_info, - axi_fan_control_groups); - - return PTR_ERR_OR_ZERO(ctl->hdev); + return 0; } static struct platform_driver axi_fan_control_driver = { diff --git a/drivers/hwmon/coretemp.c b/drivers/hwmon/coretemp.c index eaae5de2ab616..5b2057ce5a59d 100644 --- a/drivers/hwmon/coretemp.c +++ b/drivers/hwmon/coretemp.c @@ -41,7 +41,7 @@ MODULE_PARM_DESC(tjmax, "TjMax value in degrees Celsius"); #define PKG_SYSFS_ATTR_NO 1 /* Sysfs attribute for package temp */ #define BASE_SYSFS_ATTR_NO 2 /* Sysfs Base attr no for coretemp */ #define NUM_REAL_CORES 128 /* Number of Real cores per cpu */ -#define CORETEMP_NAME_LENGTH 19 /* String Length of attrs */ +#define CORETEMP_NAME_LENGTH 28 /* String Length of attrs */ #define MAX_CORE_ATTRS 4 /* Maximum no of basic attrs */ #define TOTAL_ATTRS (MAX_CORE_ATTRS + 1) #define MAX_CORE_DATA (NUM_REAL_CORES + BASE_SYSFS_ATTR_NO) diff --git a/drivers/hwmon/nzxt-kraken2.c b/drivers/hwmon/nzxt-kraken2.c index 89f7ea4f42d47..badbcaf01f90b 100644 --- a/drivers/hwmon/nzxt-kraken2.c +++ b/drivers/hwmon/nzxt-kraken2.c @@ -161,13 +161,13 @@ static int kraken2_probe(struct hid_device *hdev, ret = hid_hw_start(hdev, HID_CONNECT_HIDRAW); if (ret) { hid_err(hdev, "hid hw start failed with %d\n", ret); - goto fail_and_stop; + return ret; } ret = hid_hw_open(hdev); if (ret) { hid_err(hdev, "hid hw open failed with %d\n", ret); - goto fail_and_close; + goto fail_and_stop; } priv->hwmon_dev = hwmon_device_register_with_info(&hdev->dev, "kraken2", diff --git a/drivers/hwmon/tmp513.c b/drivers/hwmon/tmp513.c index 7d5f7441aceb1..b9a93ee9c2364 100644 --- a/drivers/hwmon/tmp513.c +++ b/drivers/hwmon/tmp513.c @@ -434,7 +434,7 @@ static umode_t tmp51x_is_visible(const void *_data, switch (type) { case hwmon_temp: - if (data->id == tmp512 && channel == 4) + if (data->id == tmp512 && channel == 3) return 0; switch (attr) { case hwmon_temp_input: diff --git a/drivers/hwtracing/coresight/coresight-etm4x-core.c b/drivers/hwtracing/coresight/coresight-etm4x-core.c index 2b22343918d69..26d0d4485ae99 100644 --- a/drivers/hwtracing/coresight/coresight-etm4x-core.c +++ b/drivers/hwtracing/coresight/coresight-etm4x-core.c @@ -2041,7 +2041,7 @@ static void clear_etmdrvdata(void *info) etmdrvdata[cpu] = NULL; } -static int __exit etm4_remove_dev(struct etmv4_drvdata *drvdata) +static void etm4_remove_dev(struct etmv4_drvdata *drvdata) { etm_perf_symlink(drvdata->csdev, false); /* @@ -2062,11 +2062,9 @@ static int __exit etm4_remove_dev(struct etmv4_drvdata *drvdata) cscfg_unregister_csdev(drvdata->csdev); coresight_unregister(drvdata->csdev); - - return 0; } -static void __exit etm4_remove_amba(struct amba_device *adev) +static void etm4_remove_amba(struct amba_device *adev) { struct etmv4_drvdata *drvdata = dev_get_drvdata(&adev->dev); @@ -2074,15 +2072,14 @@ static void __exit etm4_remove_amba(struct amba_device *adev) etm4_remove_dev(drvdata); } -static int __exit etm4_remove_platform_dev(struct platform_device *pdev) +static int etm4_remove_platform_dev(struct platform_device *pdev) { - int ret = 0; struct etmv4_drvdata *drvdata = dev_get_drvdata(&pdev->dev); if (drvdata) - ret = etm4_remove_dev(drvdata); + etm4_remove_dev(drvdata); pm_runtime_disable(&pdev->dev); - return ret; + return 0; } static const struct amba_id etm4_ids[] = { diff --git a/drivers/hwtracing/coresight/coresight-tmc-etf.c b/drivers/hwtracing/coresight/coresight-tmc-etf.c index cd0fb7bfba684..e9c2b0796f372 100644 --- a/drivers/hwtracing/coresight/coresight-tmc-etf.c +++ b/drivers/hwtracing/coresight/coresight-tmc-etf.c @@ -428,7 +428,7 @@ static int tmc_set_etf_buffer(struct coresight_device *csdev, return -EINVAL; /* wrap head around to the amount of space we have */ - head = handle->head & ((buf->nr_pages << PAGE_SHIFT) - 1); + head = handle->head & (((unsigned long)buf->nr_pages << PAGE_SHIFT) - 1); /* find the page to write to */ buf->cur = head / PAGE_SIZE; diff --git a/drivers/hwtracing/coresight/coresight-tmc-etr.c b/drivers/hwtracing/coresight/coresight-tmc-etr.c index 0000d0c6068fd..b9cd1f9555523 100644 --- a/drivers/hwtracing/coresight/coresight-tmc-etr.c +++ b/drivers/hwtracing/coresight/coresight-tmc-etr.c @@ -47,7 +47,8 @@ struct etr_perf_buffer { }; /* Convert the perf index to an offset within the ETR buffer */ -#define PERF_IDX2OFF(idx, buf) ((idx) % ((buf)->nr_pages << PAGE_SHIFT)) +#define PERF_IDX2OFF(idx, buf) \ + ((idx) % ((unsigned long)(buf)->nr_pages << PAGE_SHIFT)) /* Lower limit for ETR hardware buffer */ #define TMC_ETR_PERF_MIN_BUF_SIZE SZ_1M @@ -1232,7 +1233,7 @@ alloc_etr_buf(struct tmc_drvdata *drvdata, struct perf_event *event, * than the size requested via sysfs. */ if ((nr_pages << PAGE_SHIFT) > drvdata->size) { - etr_buf = tmc_alloc_etr_buf(drvdata, (nr_pages << PAGE_SHIFT), + etr_buf = tmc_alloc_etr_buf(drvdata, ((ssize_t)nr_pages << PAGE_SHIFT), 0, node, NULL); if (!IS_ERR(etr_buf)) goto done; diff --git a/drivers/hwtracing/coresight/coresight-tmc.h b/drivers/hwtracing/coresight/coresight-tmc.h index b91ec7dde7bc9..3655b3bfb2e32 100644 --- a/drivers/hwtracing/coresight/coresight-tmc.h +++ b/drivers/hwtracing/coresight/coresight-tmc.h @@ -321,7 +321,7 @@ ssize_t tmc_sg_table_get_data(struct tmc_sg_table *sg_table, static inline unsigned long tmc_sg_table_buf_size(struct tmc_sg_table *sg_table) { - return sg_table->data_pages.nr_pages << PAGE_SHIFT; + return (unsigned long)sg_table->data_pages.nr_pages << PAGE_SHIFT; } struct coresight_device *tmc_etr_get_catu_device(struct tmc_drvdata *drvdata); diff --git a/drivers/i2c/busses/i2c-aspeed.c b/drivers/i2c/busses/i2c-aspeed.c index 67e8b97c0c950..b7cad1bed3dc1 100644 --- a/drivers/i2c/busses/i2c-aspeed.c +++ b/drivers/i2c/busses/i2c-aspeed.c @@ -693,13 +693,16 @@ static int aspeed_i2c_master_xfer(struct i2c_adapter *adap, if (time_left == 0) { /* - * If timed out and bus is still busy in a multi master - * environment, attempt recovery at here. + * In a multi-master setup, if a timeout occurs, attempt + * recovery. But if the bus is idle, we still need to reset the + * i2c controller to clear the remaining interrupts. */ if (bus->multi_master && (readl(bus->base + ASPEED_I2C_CMD_REG) & ASPEED_I2CD_BUS_BUSY_STS)) aspeed_i2c_recover_bus(bus); + else + aspeed_i2c_reset(bus); /* * If timed out and the state is still pending, drop the pending @@ -741,6 +744,8 @@ static void __aspeed_i2c_reg_slave(struct aspeed_i2c_bus *bus, u16 slave_addr) func_ctrl_reg_val = readl(bus->base + ASPEED_I2C_FUN_CTRL_REG); func_ctrl_reg_val |= ASPEED_I2CD_SLAVE_EN; writel(func_ctrl_reg_val, bus->base + ASPEED_I2C_FUN_CTRL_REG); + + bus->slave_state = ASPEED_I2C_SLAVE_INACTIVE; } static int aspeed_i2c_reg_slave(struct i2c_client *client) @@ -757,7 +762,6 @@ static int aspeed_i2c_reg_slave(struct i2c_client *client) __aspeed_i2c_reg_slave(bus, client->addr); bus->slave = client; - bus->slave_state = ASPEED_I2C_SLAVE_INACTIVE; spin_unlock_irqrestore(&bus->lock, flags); return 0; diff --git a/drivers/i2c/busses/i2c-bcm-iproc.c b/drivers/i2c/busses/i2c-bcm-iproc.c index ec6571b82fff4..299dbcd4c8292 100644 --- a/drivers/i2c/busses/i2c-bcm-iproc.c +++ b/drivers/i2c/busses/i2c-bcm-iproc.c @@ -326,26 +326,44 @@ static void bcm_iproc_i2c_slave_init( iproc_i2c_wr_reg(iproc_i2c, IE_OFFSET, val); } -static void bcm_iproc_i2c_check_slave_status( - struct bcm_iproc_i2c_dev *iproc_i2c) +static bool bcm_iproc_i2c_check_slave_status + (struct bcm_iproc_i2c_dev *iproc_i2c, u32 status) { u32 val; + bool recover = false; - val = iproc_i2c_rd_reg(iproc_i2c, S_CMD_OFFSET); - /* status is valid only when START_BUSY is cleared after it was set */ - if (val & BIT(S_CMD_START_BUSY_SHIFT)) - return; + /* check slave transmit status only if slave is transmitting */ + if (!iproc_i2c->slave_rx_only) { + val = iproc_i2c_rd_reg(iproc_i2c, S_CMD_OFFSET); + /* status is valid only when START_BUSY is cleared */ + if (!(val & BIT(S_CMD_START_BUSY_SHIFT))) { + val = (val >> S_CMD_STATUS_SHIFT) & S_CMD_STATUS_MASK; + if (val == S_CMD_STATUS_TIMEOUT || + val == S_CMD_STATUS_MASTER_ABORT) { + dev_warn(iproc_i2c->device, + (val == S_CMD_STATUS_TIMEOUT) ? + "slave random stretch time timeout\n" : + "Master aborted read transaction\n"); + recover = true; + } + } + } + + /* RX_EVENT is not valid when START_BUSY is set */ + if ((status & BIT(IS_S_RX_EVENT_SHIFT)) && + (status & BIT(IS_S_START_BUSY_SHIFT))) { + dev_warn(iproc_i2c->device, "Slave aborted read transaction\n"); + recover = true; + } - val = (val >> S_CMD_STATUS_SHIFT) & S_CMD_STATUS_MASK; - if (val == S_CMD_STATUS_TIMEOUT || val == S_CMD_STATUS_MASTER_ABORT) { - dev_err(iproc_i2c->device, (val == S_CMD_STATUS_TIMEOUT) ? - "slave random stretch time timeout\n" : - "Master aborted read transaction\n"); + if (recover) { /* re-initialize i2c for recovery */ bcm_iproc_i2c_enable_disable(iproc_i2c, false); bcm_iproc_i2c_slave_init(iproc_i2c, true); bcm_iproc_i2c_enable_disable(iproc_i2c, true); } + + return recover; } static void bcm_iproc_i2c_slave_read(struct bcm_iproc_i2c_dev *iproc_i2c) @@ -430,48 +448,6 @@ static bool bcm_iproc_i2c_slave_isr(struct bcm_iproc_i2c_dev *iproc_i2c, u32 val; u8 value; - /* - * Slave events in case of master-write, master-write-read and, - * master-read - * - * Master-write : only IS_S_RX_EVENT_SHIFT event - * Master-write-read: both IS_S_RX_EVENT_SHIFT and IS_S_RD_EVENT_SHIFT - * events - * Master-read : both IS_S_RX_EVENT_SHIFT and IS_S_RD_EVENT_SHIFT - * events or only IS_S_RD_EVENT_SHIFT - * - * iproc has a slave rx fifo size of 64 bytes. Rx fifo full interrupt - * (IS_S_RX_FIFO_FULL_SHIFT) will be generated when RX fifo becomes - * full. This can happen if Master issues write requests of more than - * 64 bytes. - */ - if (status & BIT(IS_S_RX_EVENT_SHIFT) || - status & BIT(IS_S_RD_EVENT_SHIFT) || - status & BIT(IS_S_RX_FIFO_FULL_SHIFT)) { - /* disable slave interrupts */ - val = iproc_i2c_rd_reg(iproc_i2c, IE_OFFSET); - val &= ~iproc_i2c->slave_int_mask; - iproc_i2c_wr_reg(iproc_i2c, IE_OFFSET, val); - - if (status & BIT(IS_S_RD_EVENT_SHIFT)) - /* Master-write-read request */ - iproc_i2c->slave_rx_only = false; - else - /* Master-write request only */ - iproc_i2c->slave_rx_only = true; - - /* schedule tasklet to read data later */ - tasklet_schedule(&iproc_i2c->slave_rx_tasklet); - - /* - * clear only IS_S_RX_EVENT_SHIFT and - * IS_S_RX_FIFO_FULL_SHIFT interrupt. - */ - val = BIT(IS_S_RX_EVENT_SHIFT); - if (status & BIT(IS_S_RX_FIFO_FULL_SHIFT)) - val |= BIT(IS_S_RX_FIFO_FULL_SHIFT); - iproc_i2c_wr_reg(iproc_i2c, IS_OFFSET, val); - } if (status & BIT(IS_S_TX_UNDERRUN_SHIFT)) { iproc_i2c->tx_underrun++; @@ -503,8 +479,9 @@ static bool bcm_iproc_i2c_slave_isr(struct bcm_iproc_i2c_dev *iproc_i2c, * less than PKT_LENGTH bytes were output on the SMBUS */ iproc_i2c->slave_int_mask &= ~BIT(IE_S_TX_UNDERRUN_SHIFT); - iproc_i2c_wr_reg(iproc_i2c, IE_OFFSET, - iproc_i2c->slave_int_mask); + val = iproc_i2c_rd_reg(iproc_i2c, IE_OFFSET); + val &= ~BIT(IE_S_TX_UNDERRUN_SHIFT); + iproc_i2c_wr_reg(iproc_i2c, IE_OFFSET, val); /* End of SMBUS for Master Read */ val = BIT(S_TX_WR_STATUS_SHIFT); @@ -525,9 +502,49 @@ static bool bcm_iproc_i2c_slave_isr(struct bcm_iproc_i2c_dev *iproc_i2c, BIT(IS_S_START_BUSY_SHIFT)); } - /* check slave transmit status only if slave is transmitting */ - if (!iproc_i2c->slave_rx_only) - bcm_iproc_i2c_check_slave_status(iproc_i2c); + /* if the controller has been reset, immediately return from the ISR */ + if (bcm_iproc_i2c_check_slave_status(iproc_i2c, status)) + return true; + + /* + * Slave events in case of master-write, master-write-read and, + * master-read + * + * Master-write : only IS_S_RX_EVENT_SHIFT event + * Master-write-read: both IS_S_RX_EVENT_SHIFT and IS_S_RD_EVENT_SHIFT + * events + * Master-read : both IS_S_RX_EVENT_SHIFT and IS_S_RD_EVENT_SHIFT + * events or only IS_S_RD_EVENT_SHIFT + * + * iproc has a slave rx fifo size of 64 bytes. Rx fifo full interrupt + * (IS_S_RX_FIFO_FULL_SHIFT) will be generated when RX fifo becomes + * full. This can happen if Master issues write requests of more than + * 64 bytes. + */ + if (status & BIT(IS_S_RX_EVENT_SHIFT) || + status & BIT(IS_S_RD_EVENT_SHIFT) || + status & BIT(IS_S_RX_FIFO_FULL_SHIFT)) { + /* disable slave interrupts */ + val = iproc_i2c_rd_reg(iproc_i2c, IE_OFFSET); + val &= ~iproc_i2c->slave_int_mask; + iproc_i2c_wr_reg(iproc_i2c, IE_OFFSET, val); + + if (status & BIT(IS_S_RD_EVENT_SHIFT)) + /* Master-write-read request */ + iproc_i2c->slave_rx_only = false; + else + /* Master-write request only */ + iproc_i2c->slave_rx_only = true; + + /* schedule tasklet to read data later */ + tasklet_schedule(&iproc_i2c->slave_rx_tasklet); + + /* clear IS_S_RX_FIFO_FULL_SHIFT interrupt */ + if (status & BIT(IS_S_RX_FIFO_FULL_SHIFT)) { + val = BIT(IS_S_RX_FIFO_FULL_SHIFT); + iproc_i2c_wr_reg(iproc_i2c, IS_OFFSET, val); + } + } return true; } diff --git a/drivers/i2c/busses/i2c-designware-common.c b/drivers/i2c/busses/i2c-designware-common.c index 4e752321b95e0..cb1d8d192ac0c 100644 --- a/drivers/i2c/busses/i2c-designware-common.c +++ b/drivers/i2c/busses/i2c-designware-common.c @@ -63,7 +63,7 @@ static int dw_reg_read(void *context, unsigned int reg, unsigned int *val) { struct dw_i2c_dev *dev = context; - *val = readl_relaxed(dev->base + reg); + *val = readl(dev->base + reg); return 0; } @@ -72,7 +72,7 @@ static int dw_reg_write(void *context, unsigned int reg, unsigned int val) { struct dw_i2c_dev *dev = context; - writel_relaxed(val, dev->base + reg); + writel(val, dev->base + reg); return 0; } @@ -81,7 +81,7 @@ static int dw_reg_read_swab(void *context, unsigned int reg, unsigned int *val) { struct dw_i2c_dev *dev = context; - *val = swab32(readl_relaxed(dev->base + reg)); + *val = swab32(readl(dev->base + reg)); return 0; } @@ -90,7 +90,7 @@ static int dw_reg_write_swab(void *context, unsigned int reg, unsigned int val) { struct dw_i2c_dev *dev = context; - writel_relaxed(swab32(val), dev->base + reg); + writel(swab32(val), dev->base + reg); return 0; } @@ -99,8 +99,8 @@ static int dw_reg_read_word(void *context, unsigned int reg, unsigned int *val) { struct dw_i2c_dev *dev = context; - *val = readw_relaxed(dev->base + reg) | - (readw_relaxed(dev->base + reg + 2) << 16); + *val = readw(dev->base + reg) | + (readw(dev->base + reg + 2) << 16); return 0; } @@ -109,8 +109,8 @@ static int dw_reg_write_word(void *context, unsigned int reg, unsigned int val) { struct dw_i2c_dev *dev = context; - writew_relaxed(val, dev->base + reg); - writew_relaxed(val >> 16, dev->base + reg + 2); + writew(val, dev->base + reg); + writew(val >> 16, dev->base + reg + 2); return 0; } diff --git a/drivers/i2c/busses/i2c-designware-master.c b/drivers/i2c/busses/i2c-designware-master.c index b79e1380ff68d..5ceb81319634e 100644 --- a/drivers/i2c/busses/i2c-designware-master.c +++ b/drivers/i2c/busses/i2c-designware-master.c @@ -456,10 +456,16 @@ i2c_dw_xfer_msg(struct dw_i2c_dev *dev) /* * Because we don't know the buffer length in the - * I2C_FUNC_SMBUS_BLOCK_DATA case, we can't stop - * the transaction here. + * I2C_FUNC_SMBUS_BLOCK_DATA case, we can't stop the + * transaction here. Also disable the TX_EMPTY IRQ + * while waiting for the data length byte to avoid the + * bogus interrupts flood. */ - if (buf_len > 0 || flags & I2C_M_RECV_LEN) { + if (flags & I2C_M_RECV_LEN) { + dev->status |= STATUS_WRITE_IN_PROGRESS; + intr_mask &= ~DW_IC_INTR_TX_EMPTY; + break; + } else if (buf_len > 0) { /* more bytes to be written */ dev->status |= STATUS_WRITE_IN_PROGRESS; break; @@ -495,6 +501,13 @@ i2c_dw_recv_len(struct dw_i2c_dev *dev, u8 len) msgs[dev->msg_read_idx].len = len; msgs[dev->msg_read_idx].flags &= ~I2C_M_RECV_LEN; + /* + * Received buffer length, re-enable TX_EMPTY interrupt + * to resume the SMBUS transaction. + */ + regmap_update_bits(dev->map, DW_IC_INTR_MASK, DW_IC_INTR_TX_EMPTY, + DW_IC_INTR_TX_EMPTY); + return len; } diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c index 74d343d1a36b8..30b725d11178b 100644 --- a/drivers/i2c/busses/i2c-i801.c +++ b/drivers/i2c/busses/i2c-i801.c @@ -702,15 +702,11 @@ static int i801_block_transaction_byte_by_byte(struct i801_priv *priv, return i801_check_post(priv, result ? priv->status : -ETIMEDOUT); } - for (i = 1; i <= len; i++) { - if (i == len && read_write == I2C_SMBUS_READ) - smbcmd |= SMBHSTCNT_LAST_BYTE; - outb_p(smbcmd, SMBHSTCNT(priv)); - - if (i == 1) - outb_p(inb(SMBHSTCNT(priv)) | SMBHSTCNT_START, - SMBHSTCNT(priv)); + if (len == 1 && read_write == I2C_SMBUS_READ) + smbcmd |= SMBHSTCNT_LAST_BYTE; + outb_p(smbcmd | SMBHSTCNT_START, SMBHSTCNT(priv)); + for (i = 1; i <= len; i++) { status = i801_wait_byte_done(priv); if (status) goto exit; @@ -733,9 +729,12 @@ static int i801_block_transaction_byte_by_byte(struct i801_priv *priv, data->block[0] = len; } - /* Retrieve/store value in SMBBLKDAT */ - if (read_write == I2C_SMBUS_READ) + if (read_write == I2C_SMBUS_READ) { data->block[i] = inb_p(SMBBLKDAT(priv)); + if (i == len - 1) + outb_p(smbcmd | SMBHSTCNT_LAST_BYTE, SMBHSTCNT(priv)); + } + if (read_write == I2C_SMBUS_WRITE && i+1 <= len) outb_p(data->block[i+1], SMBBLKDAT(priv)); @@ -1861,6 +1860,7 @@ static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id) "SMBus I801 adapter at %04lx", priv->smba); err = i2c_add_adapter(&priv->adapter); if (err) { + platform_device_unregister(priv->tco_pdev); i801_acpi_remove(priv); return err; } diff --git a/drivers/i2c/busses/i2c-npcm7xx.c b/drivers/i2c/busses/i2c-npcm7xx.c index c1b6797372409..73c808ef1bfe5 100644 --- a/drivers/i2c/busses/i2c-npcm7xx.c +++ b/drivers/i2c/busses/i2c-npcm7xx.c @@ -675,6 +675,7 @@ static void npcm_i2c_callback(struct npcm_i2c *bus, { struct i2c_msg *msgs; int msgs_num; + bool do_complete = false; msgs = bus->msgs; msgs_num = bus->msgs_num; @@ -701,23 +702,17 @@ static void npcm_i2c_callback(struct npcm_i2c *bus, msgs[1].flags & I2C_M_RD) msgs[1].len = info; } - if (completion_done(&bus->cmd_complete) == false) - complete(&bus->cmd_complete); - break; - + do_complete = true; + break; case I2C_NACK_IND: /* MASTER transmit got a NACK before tx all bytes */ bus->cmd_err = -ENXIO; - if (bus->master_or_slave == I2C_MASTER) - complete(&bus->cmd_complete); - + do_complete = true; break; case I2C_BUS_ERR_IND: /* Bus error */ bus->cmd_err = -EAGAIN; - if (bus->master_or_slave == I2C_MASTER) - complete(&bus->cmd_complete); - + do_complete = true; break; case I2C_WAKE_UP_IND: /* I2C wake up */ @@ -731,6 +726,8 @@ static void npcm_i2c_callback(struct npcm_i2c *bus, if (bus->slave) bus->master_or_slave = I2C_SLAVE; #endif + if (do_complete) + complete(&bus->cmd_complete); } static u8 npcm_i2c_fifo_usage(struct npcm_i2c *bus) diff --git a/drivers/i2c/busses/i2c-pxa.c b/drivers/i2c/busses/i2c-pxa.c index a636ea0eb50af..35ca2c02c9b9b 100644 --- a/drivers/i2c/busses/i2c-pxa.c +++ b/drivers/i2c/busses/i2c-pxa.c @@ -264,6 +264,9 @@ struct pxa_i2c { u32 hs_mask; struct i2c_bus_recovery_info recovery; + struct pinctrl *pinctrl; + struct pinctrl_state *pinctrl_default; + struct pinctrl_state *pinctrl_recovery; }; #define _IBMR(i2c) ((i2c)->reg_ibmr) @@ -1302,12 +1305,13 @@ static void i2c_pxa_prepare_recovery(struct i2c_adapter *adap) */ gpiod_set_value(i2c->recovery.scl_gpiod, ibmr & IBMR_SCLS); gpiod_set_value(i2c->recovery.sda_gpiod, ibmr & IBMR_SDAS); + + WARN_ON(pinctrl_select_state(i2c->pinctrl, i2c->pinctrl_recovery)); } static void i2c_pxa_unprepare_recovery(struct i2c_adapter *adap) { struct pxa_i2c *i2c = adap->algo_data; - struct i2c_bus_recovery_info *bri = adap->bus_recovery_info; u32 isr; /* @@ -1321,7 +1325,7 @@ static void i2c_pxa_unprepare_recovery(struct i2c_adapter *adap) i2c_pxa_do_reset(i2c); } - WARN_ON(pinctrl_select_state(bri->pinctrl, bri->pins_default)); + WARN_ON(pinctrl_select_state(i2c->pinctrl, i2c->pinctrl_default)); dev_dbg(&i2c->adap.dev, "recovery: IBMR 0x%08x ISR 0x%08x\n", readl(_IBMR(i2c)), readl(_ISR(i2c))); @@ -1343,20 +1347,76 @@ static int i2c_pxa_init_recovery(struct pxa_i2c *i2c) if (IS_ENABLED(CONFIG_I2C_PXA_SLAVE)) return 0; - bri->pinctrl = devm_pinctrl_get(dev); - if (PTR_ERR(bri->pinctrl) == -ENODEV) { - bri->pinctrl = NULL; + i2c->pinctrl = devm_pinctrl_get(dev); + if (PTR_ERR(i2c->pinctrl) == -ENODEV) + i2c->pinctrl = NULL; + if (IS_ERR(i2c->pinctrl)) + return PTR_ERR(i2c->pinctrl); + + if (!i2c->pinctrl) + return 0; + + i2c->pinctrl_default = pinctrl_lookup_state(i2c->pinctrl, + PINCTRL_STATE_DEFAULT); + i2c->pinctrl_recovery = pinctrl_lookup_state(i2c->pinctrl, "recovery"); + + if (IS_ERR(i2c->pinctrl_default) || IS_ERR(i2c->pinctrl_recovery)) { + dev_info(dev, "missing pinmux recovery information: %ld %ld\n", + PTR_ERR(i2c->pinctrl_default), + PTR_ERR(i2c->pinctrl_recovery)); + return 0; + } + + /* + * Claiming GPIOs can influence the pinmux state, and may glitch the + * I2C bus. Do this carefully. + */ + bri->scl_gpiod = devm_gpiod_get(dev, "scl", GPIOD_OUT_HIGH_OPEN_DRAIN); + if (bri->scl_gpiod == ERR_PTR(-EPROBE_DEFER)) + return -EPROBE_DEFER; + if (IS_ERR(bri->scl_gpiod)) { + dev_info(dev, "missing scl gpio recovery information: %pe\n", + bri->scl_gpiod); + return 0; + } + + /* + * We have SCL. Pull SCL low and wait a bit so that SDA glitches + * have no effect. + */ + gpiod_direction_output(bri->scl_gpiod, 0); + udelay(10); + bri->sda_gpiod = devm_gpiod_get(dev, "sda", GPIOD_OUT_HIGH_OPEN_DRAIN); + + /* Wait a bit in case of a SDA glitch, and then release SCL. */ + udelay(10); + gpiod_direction_output(bri->scl_gpiod, 1); + + if (bri->sda_gpiod == ERR_PTR(-EPROBE_DEFER)) + return -EPROBE_DEFER; + + if (IS_ERR(bri->sda_gpiod)) { + dev_info(dev, "missing sda gpio recovery information: %pe\n", + bri->sda_gpiod); return 0; } - if (IS_ERR(bri->pinctrl)) - return PTR_ERR(bri->pinctrl); bri->prepare_recovery = i2c_pxa_prepare_recovery; bri->unprepare_recovery = i2c_pxa_unprepare_recovery; + bri->recover_bus = i2c_generic_scl_recovery; i2c->adap.bus_recovery_info = bri; - return 0; + /* + * Claiming GPIOs can change the pinmux state, which confuses the + * pinctrl since pinctrl's idea of the current setting is unaffected + * by the pinmux change caused by claiming the GPIO. Work around that + * by switching pinctrl to the GPIO state here. We do it this way to + * avoid glitching the I2C bus. + */ + pinctrl_select_state(i2c->pinctrl, i2c->pinctrl_recovery); + + return pinctrl_select_state(i2c->pinctrl, i2c->pinctrl_default); } static int i2c_pxa_probe(struct platform_device *dev) diff --git a/drivers/i2c/busses/i2c-stm32f7.c b/drivers/i2c/busses/i2c-stm32f7.c index 50d5ae81d2271..b26c3ee636092 100644 --- a/drivers/i2c/busses/i2c-stm32f7.c +++ b/drivers/i2c/busses/i2c-stm32f7.c @@ -1063,9 +1063,10 @@ static int stm32f7_i2c_smbus_xfer_msg(struct stm32f7_i2c_dev *i2c_dev, /* Configure PEC */ if ((flags & I2C_CLIENT_PEC) && f7_msg->size != I2C_SMBUS_QUICK) { cr1 |= STM32F7_I2C_CR1_PECEN; - cr2 |= STM32F7_I2C_CR2_PECBYTE; - if (!f7_msg->read_write) + if (!f7_msg->read_write) { + cr2 |= STM32F7_I2C_CR2_PECBYTE; f7_msg->count++; + } } else { cr1 &= ~STM32F7_I2C_CR1_PECEN; cr2 &= ~STM32F7_I2C_CR2_PECBYTE; @@ -1153,8 +1154,10 @@ static void stm32f7_i2c_smbus_rep_start(struct stm32f7_i2c_dev *i2c_dev) f7_msg->stop = true; /* Add one byte for PEC if needed */ - if (cr1 & STM32F7_I2C_CR1_PECEN) + if (cr1 & STM32F7_I2C_CR1_PECEN) { + cr2 |= STM32F7_I2C_CR2_PECBYTE; f7_msg->count++; + } /* Set number of bytes to be transferred */ cr2 &= ~(STM32F7_I2C_CR2_NBYTES_MASK); diff --git a/drivers/i2c/busses/i2c-sun6i-p2wi.c b/drivers/i2c/busses/i2c-sun6i-p2wi.c index 9e3483f507ff5..f2ed13b551088 100644 --- a/drivers/i2c/busses/i2c-sun6i-p2wi.c +++ b/drivers/i2c/busses/i2c-sun6i-p2wi.c @@ -201,6 +201,11 @@ static int p2wi_probe(struct platform_device *pdev) return -EINVAL; } + if (clk_freq == 0) { + dev_err(dev, "clock-frequency is set to 0 in DT\n"); + return -EINVAL; + } + if (of_get_child_count(np) > 1) { dev_err(dev, "P2WI only supports one slave device\n"); return -EINVAL; diff --git a/drivers/i2c/i2c-core.h b/drivers/i2c/i2c-core.h index 8ce261167a2d3..ea17f13b44c84 100644 --- a/drivers/i2c/i2c-core.h +++ b/drivers/i2c/i2c-core.h @@ -29,7 +29,7 @@ int i2c_dev_irq_from_resources(const struct resource *resources, */ static inline bool i2c_in_atomic_xfer_mode(void) { - return system_state > SYSTEM_RUNNING && irqs_disabled(); + return system_state > SYSTEM_RUNNING && !preemptible(); } static inline int __i2c_lock_bus_helper(struct i2c_adapter *adap) diff --git a/drivers/i2c/i2c-dev.c b/drivers/i2c/i2c-dev.c index 6fd2b6718b086..9fefceb3a95d4 100644 --- a/drivers/i2c/i2c-dev.c +++ b/drivers/i2c/i2c-dev.c @@ -450,8 +450,8 @@ static long i2cdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg) if (rdwr_arg.nmsgs > I2C_RDWR_IOCTL_MAX_MSGS) return -EINVAL; - rdwr_pa = memdup_user(rdwr_arg.msgs, - rdwr_arg.nmsgs * sizeof(struct i2c_msg)); + rdwr_pa = memdup_array_user(rdwr_arg.msgs, + rdwr_arg.nmsgs, sizeof(struct i2c_msg)); if (IS_ERR(rdwr_pa)) return PTR_ERR(rdwr_pa); diff --git a/drivers/i2c/i2c-mux.c b/drivers/i2c/i2c-mux.c index 774507b54b57b..c90cec8d9656d 100644 --- a/drivers/i2c/i2c-mux.c +++ b/drivers/i2c/i2c-mux.c @@ -340,7 +340,7 @@ int i2c_mux_add_adapter(struct i2c_mux_core *muxc, priv->adap.lock_ops = &i2c_parent_lock_ops; /* Sanity check on class */ - if (i2c_mux_parent_classes(parent) & class) + if (i2c_mux_parent_classes(parent) & class & ~I2C_CLASS_DEPRECATED) dev_err(&parent->dev, "Segment %d behind mux can't share classes with ancestors\n", chan_id); diff --git a/drivers/i2c/muxes/i2c-demux-pinctrl.c b/drivers/i2c/muxes/i2c-demux-pinctrl.c index f7a7405d4350a..45a3f7e7b3f68 100644 --- a/drivers/i2c/muxes/i2c-demux-pinctrl.c +++ b/drivers/i2c/muxes/i2c-demux-pinctrl.c @@ -61,7 +61,7 @@ static int i2c_demux_activate_master(struct i2c_demux_pinctrl_priv *priv, u32 ne if (ret) goto err; - adap = of_find_i2c_adapter_by_node(priv->chan[new_chan].parent_np); + adap = of_get_i2c_adapter_by_node(priv->chan[new_chan].parent_np); if (!adap) { ret = -ENODEV; goto err_with_revert; @@ -243,6 +243,10 @@ static int i2c_demux_pinctrl_probe(struct platform_device *pdev) props[i].name = devm_kstrdup(&pdev->dev, "status", GFP_KERNEL); props[i].value = devm_kstrdup(&pdev->dev, "ok", GFP_KERNEL); + if (!props[i].name || !props[i].value) { + err = -ENOMEM; + goto err_rollback; + } props[i].length = 3; of_changeset_init(&priv->chan[i].chgset); diff --git a/drivers/i2c/muxes/i2c-mux-gpio.c b/drivers/i2c/muxes/i2c-mux-gpio.c index bac415a52b780..8bad785dce36f 100644 --- a/drivers/i2c/muxes/i2c-mux-gpio.c +++ b/drivers/i2c/muxes/i2c-mux-gpio.c @@ -49,45 +49,6 @@ static int i2c_mux_gpio_deselect(struct i2c_mux_core *muxc, u32 chan) return 0; } -#ifdef CONFIG_ACPI - -static int i2c_mux_gpio_get_acpi_adr(struct device *dev, - struct fwnode_handle *fwdev, - unsigned int *adr) - -{ - unsigned long long adr64; - acpi_status status; - - status = acpi_evaluate_integer(ACPI_HANDLE_FWNODE(fwdev), - METHOD_NAME__ADR, - NULL, &adr64); - - if (!ACPI_SUCCESS(status)) { - dev_err(dev, "Cannot get address\n"); - return -EINVAL; - } - - *adr = adr64; - if (*adr != adr64) { - dev_err(dev, "Address out of range\n"); - return -ERANGE; - } - - return 0; -} - -#else - -static int i2c_mux_gpio_get_acpi_adr(struct device *dev, - struct fwnode_handle *fwdev, - unsigned int *adr) -{ - return -EINVAL; -} - -#endif - static int i2c_mux_gpio_probe_fw(struct gpiomux *mux, struct platform_device *pdev) { @@ -141,9 +102,11 @@ static int i2c_mux_gpio_probe_fw(struct gpiomux *mux, fwnode_property_read_u32(child, "reg", values + i); } else if (is_acpi_node(child)) { - rc = i2c_mux_gpio_get_acpi_adr(dev, child, values + i); - if (rc) - return rc; + rc = acpi_get_local_address(ACPI_HANDLE_FWNODE(child), values + i); + if (rc) { + fwnode_handle_put(child); + return dev_err_probe(dev, rc, "Cannot get address\n"); + } } i++; diff --git a/drivers/i2c/muxes/i2c-mux-gpmux.c b/drivers/i2c/muxes/i2c-mux-gpmux.c index 33024acaac02b..0ebc12575081c 100644 --- a/drivers/i2c/muxes/i2c-mux-gpmux.c +++ b/drivers/i2c/muxes/i2c-mux-gpmux.c @@ -52,7 +52,7 @@ static struct i2c_adapter *mux_parent_adapter(struct device *dev) dev_err(dev, "Cannot parse i2c-parent\n"); return ERR_PTR(-ENODEV); } - parent = of_find_i2c_adapter_by_node(parent_np); + parent = of_get_i2c_adapter_by_node(parent_np); of_node_put(parent_np); if (!parent) return ERR_PTR(-EPROBE_DEFER); diff --git a/drivers/i2c/muxes/i2c-mux-pinctrl.c b/drivers/i2c/muxes/i2c-mux-pinctrl.c index f1bb00a11ad62..fc991cf002af4 100644 --- a/drivers/i2c/muxes/i2c-mux-pinctrl.c +++ b/drivers/i2c/muxes/i2c-mux-pinctrl.c @@ -62,7 +62,7 @@ static struct i2c_adapter *i2c_mux_pinctrl_parent_adapter(struct device *dev) dev_err(dev, "Cannot parse i2c-parent\n"); return ERR_PTR(-ENODEV); } - parent = of_find_i2c_adapter_by_node(parent_np); + parent = of_get_i2c_adapter_by_node(parent_np); of_node_put(parent_np); if (!parent) return ERR_PTR(-EPROBE_DEFER); diff --git a/drivers/i3c/master.c b/drivers/i3c/master.c index dfe18dcd008d4..b6abbb0acbbd3 100644 --- a/drivers/i3c/master.c +++ b/drivers/i3c/master.c @@ -1506,9 +1506,11 @@ i3c_master_register_new_i3c_devs(struct i3c_master_controller *master) desc->dev->dev.of_node = desc->boardinfo->of_node; ret = device_register(&desc->dev->dev); - if (ret) + if (ret) { dev_err(&master->dev, "Failed to add I3C device (err = %d)\n", ret); + put_device(&desc->dev->dev); + } } } diff --git a/drivers/i3c/master/i3c-master-cdns.c b/drivers/i3c/master/i3c-master-cdns.c index 5b37ffe5ad5be..4a49c75a9408c 100644 --- a/drivers/i3c/master/i3c-master-cdns.c +++ b/drivers/i3c/master/i3c-master-cdns.c @@ -192,7 +192,7 @@ #define SLV_STATUS1_HJ_DIS BIT(18) #define SLV_STATUS1_MR_DIS BIT(17) #define SLV_STATUS1_PROT_ERR BIT(16) -#define SLV_STATUS1_DA(x) (((s) & GENMASK(15, 9)) >> 9) +#define SLV_STATUS1_DA(s) (((s) & GENMASK(15, 9)) >> 9) #define SLV_STATUS1_HAS_DA BIT(8) #define SLV_STATUS1_DDR_RX_FULL BIT(7) #define SLV_STATUS1_DDR_TX_FULL BIT(6) @@ -1624,13 +1624,13 @@ static int cdns_i3c_master_probe(struct platform_device *pdev) /* Device ID0 is reserved to describe this master. */ master->maxdevs = CONF_STATUS0_DEVS_NUM(val); master->free_rr_slots = GENMASK(master->maxdevs, 1); + master->caps.ibirfifodepth = CONF_STATUS0_IBIR_DEPTH(val); + master->caps.cmdrfifodepth = CONF_STATUS0_CMDR_DEPTH(val); val = readl(master->regs + CONF_STATUS1); master->caps.cmdfifodepth = CONF_STATUS1_CMD_DEPTH(val); master->caps.rxfifodepth = CONF_STATUS1_RX_DEPTH(val); master->caps.txfifodepth = CONF_STATUS1_TX_DEPTH(val); - master->caps.ibirfifodepth = CONF_STATUS0_IBIR_DEPTH(val); - master->caps.cmdrfifodepth = CONF_STATUS0_CMDR_DEPTH(val); spin_lock_init(&master->ibi.lock); master->ibi.num_slots = CONF_STATUS1_IBI_HW_RES(val); diff --git a/drivers/i3c/master/mipi-i3c-hci/dat_v1.c b/drivers/i3c/master/mipi-i3c-hci/dat_v1.c index 97bb49ff5b53b..47b9b4d4ed3fc 100644 --- a/drivers/i3c/master/mipi-i3c-hci/dat_v1.c +++ b/drivers/i3c/master/mipi-i3c-hci/dat_v1.c @@ -64,15 +64,17 @@ static int hci_dat_v1_init(struct i3c_hci *hci) return -EOPNOTSUPP; } - /* use a bitmap for faster free slot search */ - hci->DAT_data = bitmap_zalloc(hci->DAT_entries, GFP_KERNEL); - if (!hci->DAT_data) - return -ENOMEM; - - /* clear them */ - for (dat_idx = 0; dat_idx < hci->DAT_entries; dat_idx++) { - dat_w0_write(dat_idx, 0); - dat_w1_write(dat_idx, 0); + if (!hci->DAT_data) { + /* use a bitmap for faster free slot search */ + hci->DAT_data = bitmap_zalloc(hci->DAT_entries, GFP_KERNEL); + if (!hci->DAT_data) + return -ENOMEM; + + /* clear them */ + for (dat_idx = 0; dat_idx < hci->DAT_entries; dat_idx++) { + dat_w0_write(dat_idx, 0); + dat_w1_write(dat_idx, 0); + } } return 0; @@ -87,7 +89,13 @@ static void hci_dat_v1_cleanup(struct i3c_hci *hci) static int hci_dat_v1_alloc_entry(struct i3c_hci *hci) { unsigned int dat_idx; + int ret; + if (!hci->DAT_data) { + ret = hci_dat_v1_init(hci); + if (ret) + return ret; + } dat_idx = find_first_zero_bit(hci->DAT_data, hci->DAT_entries); if (dat_idx >= hci->DAT_entries) return -ENOENT; @@ -103,7 +111,8 @@ static void hci_dat_v1_free_entry(struct i3c_hci *hci, unsigned int dat_idx) { dat_w0_write(dat_idx, 0); dat_w1_write(dat_idx, 0); - __clear_bit(dat_idx, hci->DAT_data); + if (hci->DAT_data) + __clear_bit(dat_idx, hci->DAT_data); } static void hci_dat_v1_set_dynamic_addr(struct i3c_hci *hci, diff --git a/drivers/i3c/master/mipi-i3c-hci/dma.c b/drivers/i3c/master/mipi-i3c-hci/dma.c index af873a9be0507..dd2dc00399600 100644 --- a/drivers/i3c/master/mipi-i3c-hci/dma.c +++ b/drivers/i3c/master/mipi-i3c-hci/dma.c @@ -734,7 +734,7 @@ static bool hci_dma_irq_handler(struct i3c_hci *hci, unsigned int mask) unsigned int i; bool handled = false; - for (i = 0; mask && i < 8; i++) { + for (i = 0; mask && i < rings->total; i++) { struct hci_rh_data *rh; u32 status; diff --git a/drivers/i3c/master/svc-i3c-master.c b/drivers/i3c/master/svc-i3c-master.c index 879e5a64acaf4..15a412e88dd55 100644 --- a/drivers/i3c/master/svc-i3c-master.c +++ b/drivers/i3c/master/svc-i3c-master.c @@ -165,6 +165,7 @@ struct svc_i3c_xfer { * @ibi.slots: Available IBI slots * @ibi.tbq_slot: To be queued IBI slot * @ibi.lock: IBI lock + * @lock: Transfer lock, protect between IBI work thread and callbacks from master */ struct svc_i3c_master { struct i3c_master_controller base; @@ -192,6 +193,7 @@ struct svc_i3c_master { /* Prevent races within IBI handlers */ spinlock_t lock; } ibi; + struct mutex lock; }; /** @@ -292,6 +294,7 @@ static int svc_i3c_master_handle_ibi(struct svc_i3c_master *master, struct i3c_ibi_slot *slot; unsigned int count; u32 mdatactrl; + int ret, val; u8 *buf; slot = i3c_generic_ibi_get_free_slot(data->ibi_pool); @@ -301,6 +304,13 @@ static int svc_i3c_master_handle_ibi(struct svc_i3c_master *master, slot->len = 0; buf = slot->data; + ret = readl_relaxed_poll_timeout(master->regs + SVC_I3C_MSTATUS, val, + SVC_I3C_MSTATUS_COMPLETE(val), 0, 1000); + if (ret) { + dev_err(master->dev, "Timeout when polling for COMPLETE\n"); + return ret; + } + while (SVC_I3C_MSTATUS_RXPEND(readl(master->regs + SVC_I3C_MSTATUS)) && slot->len < SVC_I3C_FIFO_SIZE) { mdatactrl = readl(master->regs + SVC_I3C_MDATACTRL); @@ -345,6 +355,7 @@ static void svc_i3c_master_ibi_work(struct work_struct *work) u32 status, val; int ret; + mutex_lock(&master->lock); /* Acknowledge the incoming interrupt with the AUTOIBI mechanism */ writel(SVC_I3C_MCTRL_REQUEST_AUTO_IBI | SVC_I3C_MCTRL_IBIRESP_AUTO, @@ -355,6 +366,7 @@ static void svc_i3c_master_ibi_work(struct work_struct *work) SVC_I3C_MSTATUS_IBIWON(val), 0, 1000); if (ret) { dev_err(master->dev, "Timeout when polling for IBIWON\n"); + svc_i3c_master_emit_stop(master); goto reenable_ibis; } @@ -421,12 +433,13 @@ static void svc_i3c_master_ibi_work(struct work_struct *work) reenable_ibis: svc_i3c_master_enable_interrupts(master, SVC_I3C_MINT_SLVSTART); + mutex_unlock(&master->lock); } static irqreturn_t svc_i3c_master_irq_handler(int irq, void *dev_id) { struct svc_i3c_master *master = (struct svc_i3c_master *)dev_id; - u32 active = readl(master->regs + SVC_I3C_MINTMASKED); + u32 active = readl(master->regs + SVC_I3C_MSTATUS); if (!SVC_I3C_MSTATUS_SLVSTART(active)) return IRQ_NONE; @@ -723,6 +736,10 @@ static int svc_i3c_master_do_daa_locked(struct svc_i3c_master *master, */ break; } else if (SVC_I3C_MSTATUS_NACKED(reg)) { + /* No I3C devices attached */ + if (dev_nb == 0) + break; + /* * A slave device nacked the address, this is * allowed only once, DAA will be stopped and @@ -922,6 +939,9 @@ static int svc_i3c_master_xfer(struct svc_i3c_master *master, u32 reg; int ret; + /* clean SVC_I3C_MINT_IBIWON w1c bits */ + writel(SVC_I3C_MINT_IBIWON, master->regs + SVC_I3C_MSTATUS); + writel(SVC_I3C_MCTRL_REQUEST_START_ADDR | xfer_type | SVC_I3C_MCTRL_IBIRESP_NACK | @@ -935,6 +955,23 @@ static int svc_i3c_master_xfer(struct svc_i3c_master *master, if (ret) goto emit_stop; + /* + * According to I3C spec ver 1.1.1, 5.1.2.2.3 Consequence of Controller Starting a Frame + * with I3C Target Address. + * + * The I3C Controller normally should start a Frame, the Address may be arbitrated, and so + * the Controller shall monitor to see whether an In-Band Interrupt request, a Controller + * Role Request (i.e., Secondary Controller requests to become the Active Controller), or + * a Hot-Join Request has been made. + * + * If missed IBIWON check, the wrong data will be return. When IBIWON happen, return failure + * and yield the above events handler. + */ + if (SVC_I3C_MSTATUS_IBIWON(reg)) { + ret = -ENXIO; + goto emit_stop; + } + if (rnw) ret = svc_i3c_master_read(master, in, xfer_len); else @@ -1091,9 +1128,11 @@ static int svc_i3c_master_send_bdcast_ccc_cmd(struct svc_i3c_master *master, cmd->read_len = 0; cmd->continued = false; + mutex_lock(&master->lock); svc_i3c_master_enqueue_xfer(master, xfer); if (!wait_for_completion_timeout(&xfer->comp, msecs_to_jiffies(1000))) svc_i3c_master_dequeue_xfer(master, xfer); + mutex_unlock(&master->lock); ret = xfer->ret; kfree(buf); @@ -1137,9 +1176,11 @@ static int svc_i3c_master_send_direct_ccc_cmd(struct svc_i3c_master *master, cmd->read_len = read_len; cmd->continued = false; + mutex_lock(&master->lock); svc_i3c_master_enqueue_xfer(master, xfer); if (!wait_for_completion_timeout(&xfer->comp, msecs_to_jiffies(1000))) svc_i3c_master_dequeue_xfer(master, xfer); + mutex_unlock(&master->lock); ret = xfer->ret; svc_i3c_master_free_xfer(xfer); @@ -1152,11 +1193,17 @@ static int svc_i3c_master_send_ccc_cmd(struct i3c_master_controller *m, { struct svc_i3c_master *master = to_svc_i3c_master(m); bool broadcast = cmd->id < 0x80; + int ret; if (broadcast) - return svc_i3c_master_send_bdcast_ccc_cmd(master, cmd); + ret = svc_i3c_master_send_bdcast_ccc_cmd(master, cmd); else - return svc_i3c_master_send_direct_ccc_cmd(master, cmd); + ret = svc_i3c_master_send_direct_ccc_cmd(master, cmd); + + if (ret) + cmd->err = I3C_ERROR_M2; + + return ret; } static int svc_i3c_master_priv_xfers(struct i3c_dev_desc *dev, @@ -1187,9 +1234,11 @@ static int svc_i3c_master_priv_xfers(struct i3c_dev_desc *dev, cmd->continued = (i + 1) < nxfers; } + mutex_lock(&master->lock); svc_i3c_master_enqueue_xfer(master, xfer); if (!wait_for_completion_timeout(&xfer->comp, msecs_to_jiffies(1000))) svc_i3c_master_dequeue_xfer(master, xfer); + mutex_unlock(&master->lock); ret = xfer->ret; svc_i3c_master_free_xfer(xfer); @@ -1225,9 +1274,11 @@ static int svc_i3c_master_i2c_xfers(struct i2c_dev_desc *dev, cmd->continued = (i + 1 < nxfers); } + mutex_lock(&master->lock); svc_i3c_master_enqueue_xfer(master, xfer); if (!wait_for_completion_timeout(&xfer->comp, msecs_to_jiffies(1000))) svc_i3c_master_dequeue_xfer(master, xfer); + mutex_unlock(&master->lock); ret = xfer->ret; svc_i3c_master_free_xfer(xfer); @@ -1397,6 +1448,8 @@ static int svc_i3c_master_probe(struct platform_device *pdev) INIT_WORK(&master->hj_work, svc_i3c_master_hj_work); INIT_WORK(&master->ibi_work, svc_i3c_master_ibi_work); + mutex_init(&master->lock); + ret = devm_request_irq(dev, master->irq, svc_i3c_master_irq_handler, IRQF_NO_SUSPEND, "svc-i3c-irq", master); if (ret) diff --git a/drivers/iio/accel/bmc150-accel-core.c b/drivers/iio/accel/bmc150-accel-core.c index 3af763b4a9737..9eabc4d1dd0f2 100644 --- a/drivers/iio/accel/bmc150-accel-core.c +++ b/drivers/iio/accel/bmc150-accel-core.c @@ -1525,7 +1525,7 @@ static int bmc150_accel_buffer_postenable(struct iio_dev *indio_dev) struct bmc150_accel_data *data = iio_priv(indio_dev); int ret = 0; - if (indio_dev->currentmode == INDIO_BUFFER_TRIGGERED) + if (iio_device_get_current_mode(indio_dev) == INDIO_BUFFER_TRIGGERED) return 0; mutex_lock(&data->mutex); @@ -1557,7 +1557,7 @@ static int bmc150_accel_buffer_predisable(struct iio_dev *indio_dev) { struct bmc150_accel_data *data = iio_priv(indio_dev); - if (indio_dev->currentmode == INDIO_BUFFER_TRIGGERED) + if (iio_device_get_current_mode(indio_dev) == INDIO_BUFFER_TRIGGERED) return 0; mutex_lock(&data->mutex); diff --git a/drivers/iio/adc/ad7192.c b/drivers/iio/adc/ad7192.c index 6df435e3c4218..31461d46c5941 100644 --- a/drivers/iio/adc/ad7192.c +++ b/drivers/iio/adc/ad7192.c @@ -177,6 +177,7 @@ struct ad7192_state { const struct ad7192_chip_info *chip_info; struct regulator *avdd; struct regulator *dvdd; + struct regulator *vref; struct clk *mclk; u16 int_vref_mv; u32 fclk; @@ -962,10 +963,30 @@ static int ad7192_probe(struct spi_device *spi) if (ret) return ret; - ret = regulator_get_voltage(st->avdd); - if (ret < 0) { - dev_err(&spi->dev, "Device tree error, reference voltage undefined\n"); - return ret; + st->vref = devm_regulator_get_optional(&spi->dev, "vref"); + if (IS_ERR(st->vref)) { + if (PTR_ERR(st->vref) != -ENODEV) + return PTR_ERR(st->vref); + + ret = regulator_get_voltage(st->avdd); + if (ret < 0) + return dev_err_probe(&spi->dev, ret, + "Device tree error, AVdd voltage undefined\n"); + } else { + ret = regulator_enable(st->vref); + if (ret) { + dev_err(&spi->dev, "Failed to enable specified Vref supply\n"); + return ret; + } + + ret = devm_add_action_or_reset(&spi->dev, ad7192_reg_disable, st->vref); + if (ret) + return ret; + + ret = regulator_get_voltage(st->vref); + if (ret < 0) + return dev_err_probe(&spi->dev, ret, + "Device tree error, Vref voltage undefined\n"); } st->int_vref_mv = ret / 1000; diff --git a/drivers/iio/adc/at91-sama5d2_adc.c b/drivers/iio/adc/at91-sama5d2_adc.c index ecb49bc452ae6..806fdcd79e64d 100644 --- a/drivers/iio/adc/at91-sama5d2_adc.c +++ b/drivers/iio/adc/at91-sama5d2_adc.c @@ -894,7 +894,7 @@ static int at91_adc_buffer_prepare(struct iio_dev *indio_dev) return at91_adc_configure_touch(st, true); /* if we are not in triggered mode, we cannot enable the buffer. */ - if (!(indio_dev->currentmode & INDIO_ALL_TRIGGERED_MODES)) + if (!(iio_device_get_current_mode(indio_dev) & INDIO_ALL_TRIGGERED_MODES)) return -EINVAL; /* we continue with the triggered buffer */ @@ -947,7 +947,7 @@ static int at91_adc_buffer_postdisable(struct iio_dev *indio_dev) return at91_adc_configure_touch(st, false); /* if we are not in triggered mode, nothing to do here */ - if (!(indio_dev->currentmode & INDIO_ALL_TRIGGERED_MODES)) + if (!(iio_device_get_current_mode(indio_dev) & INDIO_ALL_TRIGGERED_MODES)) return -EINVAL; /* diff --git a/drivers/iio/adc/exynos_adc.c b/drivers/iio/adc/exynos_adc.c index 3b3868aa25330..82dd148d76241 100644 --- a/drivers/iio/adc/exynos_adc.c +++ b/drivers/iio/adc/exynos_adc.c @@ -826,16 +826,26 @@ static int exynos_adc_probe(struct platform_device *pdev) } } + /* leave out any TS related code if unreachable */ + if (IS_REACHABLE(CONFIG_INPUT)) { + has_ts = of_property_read_bool(pdev->dev.of_node, + "has-touchscreen") || pdata; + } + irq = platform_get_irq(pdev, 0); if (irq < 0) return irq; info->irq = irq; - irq = platform_get_irq(pdev, 1); - if (irq == -EPROBE_DEFER) - return irq; + if (has_ts) { + irq = platform_get_irq(pdev, 1); + if (irq == -EPROBE_DEFER) + return irq; - info->tsirq = irq; + info->tsirq = irq; + } else { + info->tsirq = -1; + } info->dev = &pdev->dev; @@ -900,12 +910,6 @@ static int exynos_adc_probe(struct platform_device *pdev) if (info->data->init_hw) info->data->init_hw(info); - /* leave out any TS related code if unreachable */ - if (IS_REACHABLE(CONFIG_INPUT)) { - has_ts = of_property_read_bool(pdev->dev.of_node, - "has-touchscreen") || pdata; - } - if (pdata) info->delay = pdata->delay; else diff --git a/drivers/iio/adc/xilinx-xadc-core.c b/drivers/iio/adc/xilinx-xadc-core.c index 198d2916266df..9fa754b56b521 100644 --- a/drivers/iio/adc/xilinx-xadc-core.c +++ b/drivers/iio/adc/xilinx-xadc-core.c @@ -454,6 +454,9 @@ static const struct xadc_ops xadc_zynq_ops = { .interrupt_handler = xadc_zynq_interrupt_handler, .update_alarm = xadc_zynq_update_alarm, .type = XADC_TYPE_S7, + /* Temp in C = (val * 503.975) / 2**bits - 273.15 */ + .temp_scale = 503975, + .temp_offset = 273150, }; static const unsigned int xadc_axi_reg_offsets[] = { @@ -564,6 +567,9 @@ static const struct xadc_ops xadc_7s_axi_ops = { .interrupt_handler = xadc_axi_interrupt_handler, .flags = XADC_FLAGS_BUFFERED, .type = XADC_TYPE_S7, + /* Temp in C = (val * 503.975) / 2**bits - 273.15 */ + .temp_scale = 503975, + .temp_offset = 273150, }; static const struct xadc_ops xadc_us_axi_ops = { @@ -575,6 +581,12 @@ static const struct xadc_ops xadc_us_axi_ops = { .interrupt_handler = xadc_axi_interrupt_handler, .flags = XADC_FLAGS_BUFFERED, .type = XADC_TYPE_US, + /** + * Values below are for UltraScale+ (SYSMONE4) using internal reference. + * See https://docs.xilinx.com/v/u/en-US/ug580-ultrascale-sysmon + */ + .temp_scale = 509314, + .temp_offset = 280231, }; static int _xadc_update_adc_reg(struct xadc *xadc, unsigned int reg, @@ -946,8 +958,7 @@ static int xadc_read_raw(struct iio_dev *indio_dev, *val2 = chan->scan_type.realbits; return IIO_VAL_FRACTIONAL_LOG2; case IIO_TEMP: - /* Temp in C = (val * 503.975) / 2**bits - 273.15 */ - *val = 503975; + *val = xadc->ops->temp_scale; *val2 = bits; return IIO_VAL_FRACTIONAL_LOG2; default: @@ -955,7 +966,7 @@ static int xadc_read_raw(struct iio_dev *indio_dev, } case IIO_CHAN_INFO_OFFSET: /* Only the temperature channel has an offset */ - *val = -((273150 << bits) / 503975); + *val = -((xadc->ops->temp_offset << bits) / xadc->ops->temp_scale); return IIO_VAL_INT; case IIO_CHAN_INFO_SAMP_FREQ: ret = xadc_read_samplerate(xadc); @@ -1434,28 +1445,6 @@ static int xadc_probe(struct platform_device *pdev) if (ret) return ret; - /* Disable all alarms */ - ret = xadc_update_adc_reg(xadc, XADC_REG_CONF1, XADC_CONF1_ALARM_MASK, - XADC_CONF1_ALARM_MASK); - if (ret) - return ret; - - /* Set thresholds to min/max */ - for (i = 0; i < 16; i++) { - /* - * Set max voltage threshold and both temperature thresholds to - * 0xffff, min voltage threshold to 0. - */ - if (i % 8 < 4 || i == 7) - xadc->threshold[i] = 0xffff; - else - xadc->threshold[i] = 0; - ret = xadc_write_adc_reg(xadc, XADC_REG_THRESHOLD(i), - xadc->threshold[i]); - if (ret) - return ret; - } - /* Go to non-buffered mode */ xadc_postdisable(indio_dev); diff --git a/drivers/iio/adc/xilinx-xadc.h b/drivers/iio/adc/xilinx-xadc.h index 8b80195725e94..546c242953638 100644 --- a/drivers/iio/adc/xilinx-xadc.h +++ b/drivers/iio/adc/xilinx-xadc.h @@ -86,6 +86,8 @@ struct xadc_ops { unsigned int flags; enum xadc_type type; + int temp_scale; + int temp_offset; }; static inline int _xadc_read_adc_reg(struct xadc *xadc, unsigned int reg, diff --git a/drivers/iio/afe/iio-rescale.c b/drivers/iio/afe/iio-rescale.c index cc28713b0dc8b..ea0a39882eb25 100644 --- a/drivers/iio/afe/iio-rescale.c +++ b/drivers/iio/afe/iio-rescale.c @@ -3,43 +3,91 @@ * IIO rescale driver * * Copyright (C) 2018 Axentia Technologies AB + * Copyright (C) 2022 Liam Beguin * * Author: Peter Rosin */ #include #include -#include -#include #include #include #include #include #include -struct rescale; +#include +#include +#include -struct rescale_cfg { - enum iio_chan_type type; - int (*props)(struct device *dev, struct rescale *rescale); -}; +int rescale_process_scale(struct rescale *rescale, int scale_type, + int *val, int *val2) +{ + s64 tmp; -struct rescale { - const struct rescale_cfg *cfg; - struct iio_channel *source; - struct iio_chan_spec chan; - struct iio_chan_spec_ext_info *ext_info; - bool chan_processed; - s32 numerator; - s32 denominator; -}; + switch (scale_type) { + case IIO_VAL_FRACTIONAL: + *val *= rescale->numerator; + *val2 *= rescale->denominator; + return scale_type; + case IIO_VAL_INT: + *val *= rescale->numerator; + if (rescale->denominator == 1) + return scale_type; + *val2 = rescale->denominator; + return IIO_VAL_FRACTIONAL; + case IIO_VAL_FRACTIONAL_LOG2: + tmp = (s64)*val * 1000000000LL; + tmp = div_s64(tmp, rescale->denominator); + tmp *= rescale->numerator; + tmp = div_s64(tmp, 1000000000LL); + *val = tmp; + return scale_type; + default: + return -EOPNOTSUPP; + } +} + +int rescale_process_offset(struct rescale *rescale, int scale_type, + int scale, int scale2, int schan_off, + int *val, int *val2) +{ + s64 tmp, tmp2; + + switch (scale_type) { + case IIO_VAL_FRACTIONAL: + tmp = (s64)rescale->offset * scale2; + *val = div_s64(tmp, scale) + schan_off; + return IIO_VAL_INT; + case IIO_VAL_INT: + *val = div_s64(rescale->offset, scale) + schan_off; + return IIO_VAL_INT; + case IIO_VAL_FRACTIONAL_LOG2: + tmp = (s64)rescale->offset * (1 << scale2); + *val = div_s64(tmp, scale) + schan_off; + return IIO_VAL_INT; + case IIO_VAL_INT_PLUS_NANO: + tmp = (s64)rescale->offset * 1000000000LL; + tmp2 = ((s64)scale * 1000000000LL) + scale2; + *val = div64_s64(tmp, tmp2) + schan_off; + return IIO_VAL_INT; + case IIO_VAL_INT_PLUS_MICRO: + tmp = (s64)rescale->offset * 1000000LL; + tmp2 = ((s64)scale * 1000000LL) + scale2; + *val = div64_s64(tmp, tmp2) + schan_off; + return IIO_VAL_INT; + default: + return -EOPNOTSUPP; + } +} static int rescale_read_raw(struct iio_dev *indio_dev, struct iio_chan_spec const *chan, int *val, int *val2, long mask) { struct rescale *rescale = iio_priv(indio_dev); - s64 tmp; + int scale, scale2; + int schan_off = 0; int ret; switch (mask) { @@ -65,27 +113,58 @@ static int rescale_read_raw(struct iio_dev *indio_dev, } else { ret = iio_read_channel_scale(rescale->source, val, val2); } - switch (ret) { - case IIO_VAL_FRACTIONAL: - *val *= rescale->numerator; - *val2 *= rescale->denominator; - return ret; - case IIO_VAL_INT: - *val *= rescale->numerator; - if (rescale->denominator == 1) - return ret; - *val2 = rescale->denominator; - return IIO_VAL_FRACTIONAL; - case IIO_VAL_FRACTIONAL_LOG2: - tmp = (s64)*val * 1000000000LL; - tmp = div_s64(tmp, rescale->denominator); - tmp *= rescale->numerator; - tmp = div_s64(tmp, 1000000000LL); - *val = tmp; - return ret; - default: - return -EOPNOTSUPP; + return rescale_process_scale(rescale, ret, val, val2); + case IIO_CHAN_INFO_OFFSET: + /* + * Processed channels are scaled 1-to-1 and source offset is + * already taken into account. + * + * In other cases, real world measurement are expressed as: + * + * schan_scale * (raw + schan_offset) + * + * Given that the rescaler parameters are applied recursively: + * + * rescaler_scale * (schan_scale * (raw + schan_offset) + + * rescaler_offset) + * + * Or, + * + * (rescaler_scale * schan_scale) * (raw + + * (schan_offset + rescaler_offset / schan_scale) + * + * Thus, reusing the original expression the parameters exposed + * to userspace are: + * + * scale = schan_scale * rescaler_scale + * offset = schan_offset + rescaler_offset / schan_scale + */ + if (rescale->chan_processed) { + *val = rescale->offset; + return IIO_VAL_INT; + } + + if (iio_channel_has_info(rescale->source->channel, + IIO_CHAN_INFO_OFFSET)) { + ret = iio_read_channel_offset(rescale->source, + &schan_off, NULL); + if (ret != IIO_VAL_INT) + return ret < 0 ? ret : -EOPNOTSUPP; + } + + if (iio_channel_has_info(rescale->source->channel, + IIO_CHAN_INFO_SCALE)) { + ret = iio_read_channel_scale(rescale->source, &scale, &scale2); + return rescale_process_offset(rescale, ret, scale, scale2, + schan_off, val, val2); } + + /* + * If we get here we have no scale so scale 1:1 but apply + * rescaler and offset, if any. + */ + return rescale_process_offset(rescale, IIO_VAL_FRACTIONAL, 1, 1, + schan_off, val, val2); default: return -EINVAL; } @@ -149,8 +228,9 @@ static int rescale_configure_channel(struct device *dev, chan->type = rescale->cfg->type; if (iio_channel_has_info(schan, IIO_CHAN_INFO_RAW) && - iio_channel_has_info(schan, IIO_CHAN_INFO_SCALE)) { - dev_info(dev, "using raw+scale source channel\n"); + (iio_channel_has_info(schan, IIO_CHAN_INFO_SCALE) || + iio_channel_has_info(schan, IIO_CHAN_INFO_OFFSET))) { + dev_info(dev, "using raw+scale/offset source channel\n"); } else if (iio_channel_has_info(schan, IIO_CHAN_INFO_PROCESSED)) { dev_info(dev, "using processed channel\n"); rescale->chan_processed = true; @@ -162,6 +242,9 @@ static int rescale_configure_channel(struct device *dev, chan->info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | BIT(IIO_CHAN_INFO_SCALE); + if (rescale->offset) + chan->info_mask_separate |= BIT(IIO_CHAN_INFO_OFFSET); + /* * Using .read_avail() is fringe to begin with and makes no sense * whatsoever for processed channels, so we make sure that this cannot @@ -326,6 +409,7 @@ static int rescale_probe(struct platform_device *pdev) rescale->cfg = of_device_get_match_data(dev); rescale->numerator = 1; rescale->denominator = 1; + rescale->offset = 0; ret = rescale->cfg->props(dev, rescale); if (ret) diff --git a/drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.c b/drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.c index f529c01ac66b2..a600ad9ed8696 100644 --- a/drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.c +++ b/drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.c @@ -196,8 +196,11 @@ int cros_ec_sensors_push_data(struct iio_dev *indio_dev, /* * Ignore samples if the buffer is not set: it is needed if the ODR is * set but the buffer is not enabled yet. + * + * Note: iio_device_claim_buffer_mode() returns -EBUSY if the buffer + * is not enabled. */ - if (!iio_buffer_enabled(indio_dev)) + if (iio_device_claim_buffer_mode(indio_dev) < 0) return 0; out = (s16 *)st->samples; @@ -216,6 +219,7 @@ int cros_ec_sensors_push_data(struct iio_dev *indio_dev, iio_push_to_buffers_with_timestamp(indio_dev, st->samples, timestamp + delta); + iio_device_release_buffer_mode(indio_dev); return 0; } EXPORT_SYMBOL_GPL(cros_ec_sensors_push_data); diff --git a/drivers/iio/industrialio-core.c b/drivers/iio/industrialio-core.c index a7f5d432c95d9..78c780d1ab897 100644 --- a/drivers/iio/industrialio-core.c +++ b/drivers/iio/industrialio-core.c @@ -184,6 +184,18 @@ int iio_device_id(struct iio_dev *indio_dev) } EXPORT_SYMBOL_GPL(iio_device_id); +/** + * iio_buffer_enabled() - helper function to test if the buffer is enabled + * @indio_dev: IIO device structure for device + */ +bool iio_buffer_enabled(struct iio_dev *indio_dev) +{ + return indio_dev->currentmode + & (INDIO_BUFFER_TRIGGERED | INDIO_BUFFER_HARDWARE | + INDIO_BUFFER_SOFTWARE); +} +EXPORT_SYMBOL_GPL(iio_buffer_enabled); + /** * iio_sysfs_match_string_with_gaps - matches given string in an array with gaps * @array: array of strings @@ -2072,6 +2084,55 @@ void iio_device_release_direct_mode(struct iio_dev *indio_dev) } EXPORT_SYMBOL_GPL(iio_device_release_direct_mode); +/** + * iio_device_claim_buffer_mode - Keep device in buffer mode + * @indio_dev: the iio_dev associated with the device + * + * If the device is in buffer mode it is guaranteed to stay + * that way until iio_device_release_buffer_mode() is called. + * + * Use with iio_device_release_buffer_mode(). + * + * Returns: 0 on success, -EBUSY on failure. + */ +int iio_device_claim_buffer_mode(struct iio_dev *indio_dev) +{ + mutex_lock(&indio_dev->mlock); + + if (iio_buffer_enabled(indio_dev)) + return 0; + + mutex_unlock(&indio_dev->mlock); + return -EBUSY; +} +EXPORT_SYMBOL_GPL(iio_device_claim_buffer_mode); + +/** + * iio_device_release_buffer_mode - releases claim on buffer mode + * @indio_dev: the iio_dev associated with the device + * + * Release the claim. Device is no longer guaranteed to stay + * in buffer mode. + * + * Use with iio_device_claim_buffer_mode(). + */ +void iio_device_release_buffer_mode(struct iio_dev *indio_dev) +{ + mutex_unlock(&indio_dev->mlock); +} +EXPORT_SYMBOL_GPL(iio_device_release_buffer_mode); + +/** + * iio_device_get_current_mode() - helper function providing read-only access to + * the @currentmode variable + * @indio_dev: IIO device structure for device + */ +int iio_device_get_current_mode(struct iio_dev *indio_dev) +{ + return indio_dev->currentmode; +} +EXPORT_SYMBOL_GPL(iio_device_get_current_mode); + subsys_initcall(iio_init); module_exit(iio_exit); diff --git a/drivers/iio/pressure/bmp280-core.c b/drivers/iio/pressure/bmp280-core.c index 6b7da40f99c82..919a338d91814 100644 --- a/drivers/iio/pressure/bmp280-core.c +++ b/drivers/iio/pressure/bmp280-core.c @@ -1112,7 +1112,7 @@ int bmp280_common_probe(struct device *dev, * however as it happens, the BMP085 shares the chip ID of BMP180 * so we look for an IRQ if we have that. */ - if (irq > 0 || (chip_id == BMP180_CHIP_ID)) { + if (irq > 0 && (chip_id == BMP180_CHIP_ID)) { ret = bmp085_fetch_eoc_irq(dev, name, irq, data); if (ret) return ret; diff --git a/drivers/iio/pressure/dps310.c b/drivers/iio/pressure/dps310.c index cf8b92fae1b3d..1b6b9530f1662 100644 --- a/drivers/iio/pressure/dps310.c +++ b/drivers/iio/pressure/dps310.c @@ -57,8 +57,8 @@ #define DPS310_RESET_MAGIC 0x09 #define DPS310_COEF_BASE 0x10 -/* Make sure sleep time is <= 20ms for usleep_range */ -#define DPS310_POLL_SLEEP_US(t) min(20000, (t) / 8) +/* Make sure sleep time is <= 30ms for usleep_range */ +#define DPS310_POLL_SLEEP_US(t) min(30000, (t) / 8) /* Silently handle error in rate value here */ #define DPS310_POLL_TIMEOUT_US(rc) ((rc) <= 0 ? 1000000 : 1000000 / (rc)) @@ -402,8 +402,8 @@ static int dps310_reset_wait(struct dps310_data *data) if (rc) return rc; - /* Wait for device chip access: 2.5ms in specification */ - usleep_range(2500, 12000); + /* Wait for device chip access: 15ms in specification */ + usleep_range(15000, 55000); return 0; } diff --git a/drivers/iio/pressure/ms5611_core.c b/drivers/iio/pressure/ms5611_core.c index 874a73b3ea9d6..f88d8f2ce6102 100644 --- a/drivers/iio/pressure/ms5611_core.c +++ b/drivers/iio/pressure/ms5611_core.c @@ -76,7 +76,7 @@ static bool ms5611_prom_is_valid(u16 *prom, size_t len) crc = (crc >> 12) & 0x000F; - return crc_orig != 0x0000 && crc == crc_orig; + return crc == crc_orig; } static int ms5611_read_prom(struct iio_dev *indio_dev) diff --git a/drivers/infiniband/Kconfig b/drivers/infiniband/Kconfig index 33d3ce9c888ec..a062c662ecff6 100644 --- a/drivers/infiniband/Kconfig +++ b/drivers/infiniband/Kconfig @@ -83,6 +83,7 @@ source "drivers/infiniband/hw/qib/Kconfig" source "drivers/infiniband/hw/cxgb4/Kconfig" source "drivers/infiniband/hw/efa/Kconfig" source "drivers/infiniband/hw/irdma/Kconfig" +source "drivers/infiniband/hw/mana/Kconfig" source "drivers/infiniband/hw/mlx4/Kconfig" source "drivers/infiniband/hw/mlx5/Kconfig" source "drivers/infiniband/hw/ocrdma/Kconfig" diff --git a/drivers/infiniband/core/cma.c b/drivers/infiniband/core/cma.c index 044f9d44001bb..a204c738e9cf9 100644 --- a/drivers/infiniband/core/cma.c +++ b/drivers/infiniband/core/cma.c @@ -4751,7 +4751,7 @@ static int cma_iboe_join_multicast(struct rdma_id_private *id_priv, int err = 0; struct sockaddr *addr = (struct sockaddr *)&mc->addr; struct net_device *ndev = NULL; - struct ib_sa_multicast ib; + struct ib_sa_multicast ib = {}; enum ib_gid_type gid_type; bool send_only; diff --git a/drivers/infiniband/core/cma_configfs.c b/drivers/infiniband/core/cma_configfs.c index 9ac16e0db7611..5919f43a8a65f 100644 --- a/drivers/infiniband/core/cma_configfs.c +++ b/drivers/infiniband/core/cma_configfs.c @@ -218,7 +218,7 @@ static int make_cma_ports(struct cma_dev_group *cma_dev_group, return -ENOMEM; for (i = 0; i < ports_num; i++) { - char port_str[10]; + char port_str[11]; ports[i].port_num = i + 1; snprintf(port_str, sizeof(port_str), "%u", i + 1); diff --git a/drivers/infiniband/core/device.c b/drivers/infiniband/core/device.c index ab2106a09f9c6..2c2ac63b39c42 100644 --- a/drivers/infiniband/core/device.c +++ b/drivers/infiniband/core/device.c @@ -803,7 +803,7 @@ static int alloc_port_data(struct ib_device *device) * empty slots at the beginning. */ pdata_rcu = kzalloc(struct_size(pdata_rcu, pdata, - rdma_end_port(device) + 1), + size_add(rdma_end_port(device), 1)), GFP_KERNEL); if (!pdata_rcu) return -ENOMEM; diff --git a/drivers/infiniband/core/nldev.c b/drivers/infiniband/core/nldev.c index 7ad3ba7d5a0a1..050bafc7c52d7 100644 --- a/drivers/infiniband/core/nldev.c +++ b/drivers/infiniband/core/nldev.c @@ -2316,6 +2316,7 @@ static const struct rdma_nl_cbs nldev_cb_table[RDMA_NLDEV_NUM_OPS] = { }, [RDMA_NLDEV_CMD_SYS_SET] = { .doit = nldev_set_sys_set_doit, + .flags = RDMA_NL_ADMIN_PERM, }, [RDMA_NLDEV_CMD_STAT_SET] = { .doit = nldev_stat_set_doit, diff --git a/drivers/infiniband/core/sa_query.c b/drivers/infiniband/core/sa_query.c index c00f8e28aab75..1557c71dd152f 100644 --- a/drivers/infiniband/core/sa_query.c +++ b/drivers/infiniband/core/sa_query.c @@ -2132,7 +2132,9 @@ static int ib_sa_add_one(struct ib_device *device) s = rdma_start_port(device); e = rdma_end_port(device); - sa_dev = kzalloc(struct_size(sa_dev, port, e - s + 1), GFP_KERNEL); + sa_dev = kzalloc(struct_size(sa_dev, port, + size_add(size_sub(e, s), 1)), + GFP_KERNEL); if (!sa_dev) return -ENOMEM; diff --git a/drivers/infiniband/core/sysfs.c b/drivers/infiniband/core/sysfs.c index 253ccaf343f69..afc59048c40c8 100644 --- a/drivers/infiniband/core/sysfs.c +++ b/drivers/infiniband/core/sysfs.c @@ -902,7 +902,7 @@ alloc_hw_stats_device(struct ib_device *ibdev) * Two extra attribue elements here, one for the lifespan entry and * one to NULL terminate the list for the sysfs core code */ - data = kzalloc(struct_size(data, attrs, stats->num_counters + 1), + data = kzalloc(struct_size(data, attrs, size_add(stats->num_counters, 1)), GFP_KERNEL); if (!data) goto err_free_stats; @@ -1001,7 +1001,7 @@ alloc_hw_stats_port(struct ib_port *port, struct attribute_group *group) * Two extra attribue elements here, one for the lifespan entry and * one to NULL terminate the list for the sysfs core code */ - data = kzalloc(struct_size(data, attrs, stats->num_counters + 1), + data = kzalloc(struct_size(data, attrs, size_add(stats->num_counters, 1)), GFP_KERNEL); if (!data) goto err_free_stats; @@ -1125,7 +1125,7 @@ static int setup_gid_attrs(struct ib_port *port, int ret; gid_attr_group = kzalloc(struct_size(gid_attr_group, attrs_list, - attr->gid_tbl_len * 2), + size_mul(attr->gid_tbl_len, 2)), GFP_KERNEL); if (!gid_attr_group) return -ENOMEM; @@ -1190,8 +1190,8 @@ static struct ib_port *setup_port(struct ib_core_device *coredev, int port_num, int ret; p = kvzalloc(struct_size(p, attrs_list, - attr->gid_tbl_len + attr->pkey_tbl_len), - GFP_KERNEL); + size_add(attr->gid_tbl_len, attr->pkey_tbl_len)), + GFP_KERNEL); if (!p) return ERR_PTR(-ENOMEM); p->ibdev = device; diff --git a/drivers/infiniband/core/umem.c b/drivers/infiniband/core/umem.c index 82dc2c170062f..e6e1890f837ca 100644 --- a/drivers/infiniband/core/umem.c +++ b/drivers/infiniband/core/umem.c @@ -98,12 +98,6 @@ unsigned long ib_umem_find_best_pgsz(struct ib_umem *umem, return page_size; } - /* rdma_for_each_block() has a bug if the page size is smaller than the - * page size used to build the umem. For now prevent smaller page sizes - * from being returned. - */ - pgsz_bitmap &= GENMASK(BITS_PER_LONG - 1, PAGE_SHIFT); - /* The best result is the smallest page size that results in the minimum * number of required pages. Compute the largest page size that could * work based on VA address bits that don't change. diff --git a/drivers/infiniband/core/user_mad.c b/drivers/infiniband/core/user_mad.c index a61c9ede43387..5c284dfbe6923 100644 --- a/drivers/infiniband/core/user_mad.c +++ b/drivers/infiniband/core/user_mad.c @@ -1378,7 +1378,9 @@ static int ib_umad_add_one(struct ib_device *device) s = rdma_start_port(device); e = rdma_end_port(device); - umad_dev = kzalloc(struct_size(umad_dev, ports, e - s + 1), GFP_KERNEL); + umad_dev = kzalloc(struct_size(umad_dev, ports, + size_add(size_sub(e, s), 1)), + GFP_KERNEL); if (!umad_dev) return -ENOMEM; diff --git a/drivers/infiniband/core/uverbs_main.c b/drivers/infiniband/core/uverbs_main.c index fa937cd268219..6fe825800494c 100644 --- a/drivers/infiniband/core/uverbs_main.c +++ b/drivers/infiniband/core/uverbs_main.c @@ -535,7 +535,7 @@ static ssize_t verify_hdr(struct ib_uverbs_cmd_hdr *hdr, if (hdr->in_words * 4 != count) return -EINVAL; - if (count < method_elm->req_size + sizeof(hdr)) { + if (count < method_elm->req_size + sizeof(*hdr)) { /* * rdma-core v18 and v19 have a bug where they send DESTROY_CQ * with a 16 byte write instead of 24. Old kernels didn't diff --git a/drivers/infiniband/core/uverbs_std_types_counters.c b/drivers/infiniband/core/uverbs_std_types_counters.c index 999da9c798668..381aa57976417 100644 --- a/drivers/infiniband/core/uverbs_std_types_counters.c +++ b/drivers/infiniband/core/uverbs_std_types_counters.c @@ -107,6 +107,8 @@ static int UVERBS_HANDLER(UVERBS_METHOD_COUNTERS_READ)( return ret; uattr = uverbs_attr_get(attrs, UVERBS_ATTR_READ_COUNTERS_BUFF); + if (IS_ERR(uattr)) + return PTR_ERR(uattr); read_attr.ncounters = uattr->ptr_attr.len / sizeof(u64); read_attr.counters_buff = uverbs_zalloc( attrs, array_size(read_attr.ncounters, sizeof(u64))); diff --git a/drivers/infiniband/hw/Makefile b/drivers/infiniband/hw/Makefile index fba0b3be903e2..f62e9e00c7802 100644 --- a/drivers/infiniband/hw/Makefile +++ b/drivers/infiniband/hw/Makefile @@ -4,6 +4,7 @@ obj-$(CONFIG_INFINIBAND_QIB) += qib/ obj-$(CONFIG_INFINIBAND_CXGB4) += cxgb4/ obj-$(CONFIG_INFINIBAND_EFA) += efa/ obj-$(CONFIG_INFINIBAND_IRDMA) += irdma/ +obj-$(CONFIG_MANA_INFINIBAND) += mana/ obj-$(CONFIG_MLX4_INFINIBAND) += mlx4/ obj-$(CONFIG_MLX5_INFINIBAND) += mlx5/ obj-$(CONFIG_INFINIBAND_OCRDMA) += ocrdma/ diff --git a/drivers/infiniband/hw/bnxt_re/main.c b/drivers/infiniband/hw/bnxt_re/main.c index 7b85eef113fc0..c7ea2eedd60c6 100644 --- a/drivers/infiniband/hw/bnxt_re/main.c +++ b/drivers/infiniband/hw/bnxt_re/main.c @@ -70,7 +70,7 @@ static char version[] = BNXT_RE_DESC "\n"; MODULE_AUTHOR("Eddie Wai "); -MODULE_DESCRIPTION(BNXT_RE_DESC " Driver"); +MODULE_DESCRIPTION(BNXT_RE_DESC); MODULE_LICENSE("Dual BSD/GPL"); /* globals */ diff --git a/drivers/infiniband/hw/cxgb4/cm.c b/drivers/infiniband/hw/cxgb4/cm.c index a3e4913904b75..f159cbb6bb3ea 100644 --- a/drivers/infiniband/hw/cxgb4/cm.c +++ b/drivers/infiniband/hw/cxgb4/cm.c @@ -1965,6 +1965,9 @@ static int send_fw_act_open_req(struct c4iw_ep *ep, unsigned int atid) int win; skb = get_skb(NULL, sizeof(*req), GFP_KERNEL); + if (!skb) + return -ENOMEM; + req = __skb_put_zero(skb, sizeof(*req)); req->op_compl = htonl(WR_OP_V(FW_OFLD_CONNECTION_WR)); req->len16_pkd = htonl(FW_WR_LEN16_V(DIV_ROUND_UP(sizeof(*req), 16))); diff --git a/drivers/infiniband/hw/hfi1/efivar.c b/drivers/infiniband/hw/hfi1/efivar.c index f275dd1abed85..7a3caf2cd9071 100644 --- a/drivers/infiniband/hw/hfi1/efivar.c +++ b/drivers/infiniband/hw/hfi1/efivar.c @@ -110,7 +110,7 @@ int read_hfi1_efi_var(struct hfi1_devdata *dd, const char *kind, unsigned long *size, void **return_data) { char prefix_name[64]; - char name[64]; + char name[128]; int result; int i; diff --git a/drivers/infiniband/hw/hfi1/pcie.c b/drivers/infiniband/hw/hfi1/pcie.c index a0802332c8cb3..5395cf56fbd90 100644 --- a/drivers/infiniband/hw/hfi1/pcie.c +++ b/drivers/infiniband/hw/hfi1/pcie.c @@ -3,6 +3,7 @@ * Copyright(c) 2015 - 2019 Intel Corporation. */ +#include #include #include #include @@ -212,12 +213,6 @@ static u32 extract_speed(u16 linkstat) return speed; } -/* return the PCIe link speed from the given link status */ -static u32 extract_width(u16 linkstat) -{ - return (linkstat & PCI_EXP_LNKSTA_NLW) >> PCI_EXP_LNKSTA_NLW_SHIFT; -} - /* read the link status and set dd->{lbus_width,lbus_speed,lbus_info} */ static void update_lbus_info(struct hfi1_devdata *dd) { @@ -230,7 +225,7 @@ static void update_lbus_info(struct hfi1_devdata *dd) return; } - dd->lbus_width = extract_width(linkstat); + dd->lbus_width = FIELD_GET(PCI_EXP_LNKSTA_NLW, linkstat); dd->lbus_speed = extract_speed(linkstat); snprintf(dd->lbus_info, sizeof(dd->lbus_info), "PCIe,%uMHz,x%u", dd->lbus_speed, dd->lbus_width); diff --git a/drivers/infiniband/hw/hns/hns_roce_device.h b/drivers/infiniband/hw/hns/hns_roce_device.h index c94991356a2e8..e02107123c970 100644 --- a/drivers/infiniband/hw/hns/hns_roce_device.h +++ b/drivers/infiniband/hw/hns/hns_roce_device.h @@ -121,6 +121,7 @@ #define HNS_ROCE_CQ_BANK_NUM 4 #define CQ_BANKID_SHIFT 2 +#define CQ_BANKID_MASK GENMASK(1, 0) /* The chip implementation of the consumer index is calculated * according to twice the actual EQ depth diff --git a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c index 8c02b51c8bffc..6d8f3aa9d6aa9 100644 --- a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c +++ b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c @@ -244,7 +244,7 @@ static bool check_inl_data_len(struct hns_roce_qp *qp, unsigned int len) struct hns_roce_dev *hr_dev = to_hr_dev(qp->ibqp.device); int mtu = ib_mtu_enum_to_int(qp->path_mtu); - if (len > qp->max_inline_data || len > mtu) { + if (mtu < 0 || len > qp->max_inline_data || len > mtu) { ibdev_err(&hr_dev->ib_dev, "invalid length of data, data len = %u, max inline len = %u, path mtu = %d.\n", len, qp->max_inline_data, mtu); @@ -731,7 +731,8 @@ static int hns_roce_v2_post_send(struct ib_qp *ibqp, qp->sq.head += nreq; qp->next_sge = sge_idx; - if (nreq == 1 && (qp->en_flags & HNS_ROCE_QP_CAP_DIRECT_WQE)) + if (nreq == 1 && !ret && + (qp->en_flags & HNS_ROCE_QP_CAP_DIRECT_WQE)) write_dwqe(hr_dev, qp, wqe); else update_sq_db(hr_dev, qp); @@ -4555,6 +4556,9 @@ static int check_cong_type(struct ib_qp *ibqp, { struct hns_roce_dev *hr_dev = to_hr_dev(ibqp->device); + if (ibqp->qp_type == IB_QPT_UD) + hr_dev->caps.cong_type = CONG_TYPE_DCQCN; + /* different congestion types match different configurations */ switch (hr_dev->caps.cong_type) { case CONG_TYPE_DCQCN: @@ -4582,10 +4586,15 @@ static int check_cong_type(struct ib_qp *ibqp, cong_alg->wnd_mode_sel = WND_LIMIT; break; default: - ibdev_err(&hr_dev->ib_dev, - "error type(%u) for congestion selection.\n", - hr_dev->caps.cong_type); - return -EINVAL; + ibdev_warn(&hr_dev->ib_dev, + "invalid type(%u) for congestion selection.\n", + hr_dev->caps.cong_type); + hr_dev->caps.cong_type = CONG_TYPE_DCQCN; + cong_alg->alg_sel = CONG_DCQCN; + cong_alg->alg_sub_sel = UNSUPPORT_CONG_LEVEL; + cong_alg->dip_vld = DIP_INVALID; + cong_alg->wnd_mode_sel = WND_LIMIT; + break; } return 0; diff --git a/drivers/infiniband/hw/hns/hns_roce_main.c b/drivers/infiniband/hw/hns/hns_roce_main.c index 13c8195b5c3a6..80b9a9a45c68e 100644 --- a/drivers/infiniband/hw/hns/hns_roce_main.c +++ b/drivers/infiniband/hw/hns/hns_roce_main.c @@ -222,6 +222,7 @@ static int hns_roce_query_port(struct ib_device *ib_dev, u32 port_num, unsigned long flags; enum ib_mtu mtu; u32 port; + int ret; port = port_num - 1; @@ -234,8 +235,10 @@ static int hns_roce_query_port(struct ib_device *ib_dev, u32 port_num, IB_PORT_BOOT_MGMT_SUP; props->max_msg_sz = HNS_ROCE_MAX_MSG_LEN; props->pkey_tbl_len = 1; - props->active_width = IB_WIDTH_4X; - props->active_speed = 1; + ret = ib_get_eth_speed(ib_dev, port_num, &props->active_speed, + &props->active_width); + if (ret) + ibdev_warn(ib_dev, "failed to get speed, ret = %d.\n", ret); spin_lock_irqsave(&hr_dev->iboe.lock, flags); diff --git a/drivers/infiniband/hw/hns/hns_roce_qp.c b/drivers/infiniband/hw/hns/hns_roce_qp.c index 5d50d2d1deca9..d085998b19c87 100644 --- a/drivers/infiniband/hw/hns/hns_roce_qp.c +++ b/drivers/infiniband/hw/hns/hns_roce_qp.c @@ -172,14 +172,29 @@ static void hns_roce_ib_qp_event(struct hns_roce_qp *hr_qp, } } -static u8 get_least_load_bankid_for_qp(struct hns_roce_bank *bank) +static u8 get_affinity_cq_bank(u8 qp_bank) { - u32 least_load = bank[0].inuse; + return (qp_bank >> 1) & CQ_BANKID_MASK; +} + +static u8 get_least_load_bankid_for_qp(struct ib_qp_init_attr *init_attr, + struct hns_roce_bank *bank) +{ +#define INVALID_LOAD_QPNUM 0xFFFFFFFF + struct ib_cq *scq = init_attr->send_cq; + u32 least_load = INVALID_LOAD_QPNUM; + unsigned long cqn = 0; u8 bankid = 0; u32 bankcnt; u8 i; - for (i = 1; i < HNS_ROCE_QP_BANK_NUM; i++) { + if (scq) + cqn = to_hr_cq(scq)->cqn; + + for (i = 0; i < HNS_ROCE_QP_BANK_NUM; i++) { + if (scq && (get_affinity_cq_bank(i) != (cqn & CQ_BANKID_MASK))) + continue; + bankcnt = bank[i].inuse; if (bankcnt < least_load) { least_load = bankcnt; @@ -211,7 +226,8 @@ static int alloc_qpn_with_bankid(struct hns_roce_bank *bank, u8 bankid, return 0; } -static int alloc_qpn(struct hns_roce_dev *hr_dev, struct hns_roce_qp *hr_qp) +static int alloc_qpn(struct hns_roce_dev *hr_dev, struct hns_roce_qp *hr_qp, + struct ib_qp_init_attr *init_attr) { struct hns_roce_qp_table *qp_table = &hr_dev->qp_table; unsigned long num = 0; @@ -229,7 +245,7 @@ static int alloc_qpn(struct hns_roce_dev *hr_dev, struct hns_roce_qp *hr_qp) hr_qp->doorbell_qpn = 1; } else { mutex_lock(&qp_table->bank_mutex); - bankid = get_least_load_bankid_for_qp(qp_table->bank); + bankid = get_least_load_bankid_for_qp(init_attr, qp_table->bank); ret = alloc_qpn_with_bankid(&qp_table->bank[bankid], bankid, &num); @@ -1033,7 +1049,7 @@ static int hns_roce_create_qp_common(struct hns_roce_dev *hr_dev, { struct hns_roce_ib_create_qp_resp resp = {}; struct ib_device *ibdev = &hr_dev->ib_dev; - struct hns_roce_ib_create_qp ucmd; + struct hns_roce_ib_create_qp ucmd = {}; int ret; mutex_init(&hr_qp->mutex); @@ -1067,7 +1083,7 @@ static int hns_roce_create_qp_common(struct hns_roce_dev *hr_dev, goto err_buf; } - ret = alloc_qpn(hr_dev, hr_qp); + ret = alloc_qpn(hr_dev, hr_qp, init_attr); if (ret) { ibdev_err(ibdev, "failed to alloc QPN, ret = %d.\n", ret); goto err_qpn; diff --git a/drivers/infiniband/hw/irdma/hw.c b/drivers/infiniband/hw/irdma/hw.c index ddf4ae004dc53..a465756517e33 100644 --- a/drivers/infiniband/hw/irdma/hw.c +++ b/drivers/infiniband/hw/irdma/hw.c @@ -322,7 +322,11 @@ static void irdma_process_aeq(struct irdma_pci_f *rf) break; case IRDMA_AE_QP_SUSPEND_COMPLETE: if (iwqp->iwdev->vsi.tc_change_pending) { - atomic_dec(&iwqp->sc_qp.vsi->qp_suspend_reqs); + if (!atomic_dec_return(&qp->vsi->qp_suspend_reqs)) + wake_up(&iwqp->iwdev->suspend_wq); + } + if (iwqp->suspend_pending) { + iwqp->suspend_pending = false; wake_up(&iwqp->iwdev->suspend_wq); } break; @@ -1159,7 +1163,6 @@ static int irdma_create_ceq(struct irdma_pci_f *rf, struct irdma_ceq *iwceq, int status; struct irdma_ceq_init_info info = {}; struct irdma_sc_dev *dev = &rf->sc_dev; - u64 scratch; u32 ceq_size; info.ceq_id = ceq_id; @@ -1180,14 +1183,13 @@ static int irdma_create_ceq(struct irdma_pci_f *rf, struct irdma_ceq *iwceq, iwceq->sc_ceq.ceq_id = ceq_id; info.dev = dev; info.vsi = vsi; - scratch = (uintptr_t)&rf->cqp.sc_cqp; status = irdma_sc_ceq_init(&iwceq->sc_ceq, &info); if (!status) { if (dev->ceq_valid) status = irdma_cqp_ceq_cmd(&rf->sc_dev, &iwceq->sc_ceq, IRDMA_OP_CEQ_CREATE); else - status = irdma_sc_cceq_create(&iwceq->sc_ceq, scratch); + status = irdma_sc_cceq_create(&iwceq->sc_ceq, 0); } if (status) { diff --git a/drivers/infiniband/hw/irdma/main.c b/drivers/infiniband/hw/irdma/main.c index 0a527e9d8c3d9..17ba7bb80e653 100644 --- a/drivers/infiniband/hw/irdma/main.c +++ b/drivers/infiniband/hw/irdma/main.c @@ -48,7 +48,7 @@ static void irdma_prep_tc_change(struct irdma_device *iwdev) /* Wait for all qp's to suspend */ wait_event_timeout(iwdev->suspend_wq, !atomic_read(&iwdev->vsi.qp_suspend_reqs), - IRDMA_EVENT_TIMEOUT); + msecs_to_jiffies(IRDMA_EVENT_TIMEOUT_MS)); irdma_ws_reset(&iwdev->vsi); } diff --git a/drivers/infiniband/hw/irdma/main.h b/drivers/infiniband/hw/irdma/main.h index d23d60ba77dce..633c55015aceb 100644 --- a/drivers/infiniband/hw/irdma/main.h +++ b/drivers/infiniband/hw/irdma/main.h @@ -78,7 +78,7 @@ extern struct auxiliary_driver i40iw_auxiliary_drv; #define MAX_DPC_ITERATIONS 128 -#define IRDMA_EVENT_TIMEOUT 50000 +#define IRDMA_EVENT_TIMEOUT_MS 5000 #define IRDMA_VCHNL_EVENT_TIMEOUT 100000 #define IRDMA_RST_TIMEOUT_HZ 4 @@ -236,7 +236,7 @@ struct irdma_qv_info { struct irdma_qvlist_info { u32 num_vectors; - struct irdma_qv_info qv_info[1]; + struct irdma_qv_info qv_info[]; }; struct irdma_gen_ops { diff --git a/drivers/infiniband/hw/irdma/verbs.c b/drivers/infiniband/hw/irdma/verbs.c index 02b51b631a71d..b26b3627fdfa3 100644 --- a/drivers/infiniband/hw/irdma/verbs.c +++ b/drivers/infiniband/hw/irdma/verbs.c @@ -1080,6 +1080,21 @@ static int irdma_query_pkey(struct ib_device *ibdev, u32 port, u16 index, return 0; } +static int irdma_wait_for_suspend(struct irdma_qp *iwqp) +{ + if (!wait_event_timeout(iwqp->iwdev->suspend_wq, + !iwqp->suspend_pending, + msecs_to_jiffies(IRDMA_EVENT_TIMEOUT_MS))) { + iwqp->suspend_pending = false; + ibdev_warn(&iwqp->iwdev->ibdev, + "modify_qp timed out waiting for suspend. qp_id = %d, last_ae = 0x%x\n", + iwqp->ibqp.qp_num, iwqp->last_aeq); + return -EBUSY; + } + + return 0; +} + /** * irdma_modify_qp_roce - modify qp request * @ibqp: qp's pointer for modify @@ -1328,17 +1343,11 @@ int irdma_modify_qp_roce(struct ib_qp *ibqp, struct ib_qp_attr *attr, info.next_iwarp_state = IRDMA_QP_STATE_SQD; issue_modify_qp = 1; + iwqp->suspend_pending = true; break; case IB_QPS_SQE: case IB_QPS_ERR: case IB_QPS_RESET: - if (iwqp->iwarp_state == IRDMA_QP_STATE_RTS) { - spin_unlock_irqrestore(&iwqp->lock, flags); - info.next_iwarp_state = IRDMA_QP_STATE_SQD; - irdma_hw_modify_qp(iwdev, iwqp, &info, true); - spin_lock_irqsave(&iwqp->lock, flags); - } - if (iwqp->iwarp_state == IRDMA_QP_STATE_ERROR) { spin_unlock_irqrestore(&iwqp->lock, flags); if (udata) { @@ -1375,6 +1384,11 @@ int irdma_modify_qp_roce(struct ib_qp *ibqp, struct ib_qp_attr *attr, ctx_info->rem_endpoint_idx = udp_info->arp_idx; if (irdma_hw_modify_qp(iwdev, iwqp, &info, true)) return -EINVAL; + if (info.next_iwarp_state == IRDMA_QP_STATE_SQD) { + ret = irdma_wait_for_suspend(iwqp); + if (ret) + return ret; + } spin_lock_irqsave(&iwqp->lock, flags); if (iwqp->iwarp_state == info.curr_iwarp_state) { iwqp->iwarp_state = info.next_iwarp_state; @@ -4250,7 +4264,6 @@ static int irdma_query_ah(struct ib_ah *ibah, struct rdma_ah_attr *ah_attr) ah_attr->grh.traffic_class = ah->sc_ah.ah_info.tc_tos; ah_attr->grh.hop_limit = ah->sc_ah.ah_info.hop_ttl; ah_attr->grh.sgid_index = ah->sgid_index; - ah_attr->grh.sgid_index = ah->sgid_index; memcpy(&ah_attr->grh.dgid, &ah->dgid, sizeof(ah_attr->grh.dgid)); } diff --git a/drivers/infiniband/hw/irdma/verbs.h b/drivers/infiniband/hw/irdma/verbs.h index 5af3c8e9b3941..a934c985dbb4d 100644 --- a/drivers/infiniband/hw/irdma/verbs.h +++ b/drivers/infiniband/hw/irdma/verbs.h @@ -188,6 +188,7 @@ struct irdma_qp { u8 flush_issued : 1; u8 sig_all : 1; u8 pau_mode : 1; + u8 suspend_pending : 1; u8 rsvd : 1; u8 iwarp_state; u16 term_sq_flush_code; diff --git a/drivers/infiniband/hw/mana/Kconfig b/drivers/infiniband/hw/mana/Kconfig new file mode 100644 index 0000000000000..546640657bac2 --- /dev/null +++ b/drivers/infiniband/hw/mana/Kconfig @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: GPL-2.0-only +config MANA_INFINIBAND + tristate "Microsoft Azure Network Adapter support" + depends on NETDEVICES && ETHERNET && PCI && MICROSOFT_MANA + help + This driver provides low-level RDMA support for Microsoft Azure + Network Adapter (MANA). MANA supports RDMA features that can be used + for workloads (e.g. DPDK, MPI etc) that uses RDMA verbs to directly + access hardware from user-mode processes in Microsoft Azure cloud + environment. diff --git a/drivers/infiniband/hw/mana/Makefile b/drivers/infiniband/hw/mana/Makefile new file mode 100644 index 0000000000000..88655fe5e398a --- /dev/null +++ b/drivers/infiniband/hw/mana/Makefile @@ -0,0 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-only +obj-$(CONFIG_MANA_INFINIBAND) += mana_ib.o + +mana_ib-y := device.o main.o wq.o qp.o cq.o mr.o diff --git a/drivers/infiniband/hw/mana/cq.c b/drivers/infiniband/hw/mana/cq.c new file mode 100644 index 0000000000000..d141cab8a1e69 --- /dev/null +++ b/drivers/infiniband/hw/mana/cq.c @@ -0,0 +1,79 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * Copyright (c) 2022, Microsoft Corporation. All rights reserved. + */ + +#include "mana_ib.h" + +int mana_ib_create_cq(struct ib_cq *ibcq, const struct ib_cq_init_attr *attr, + struct ib_udata *udata) +{ + struct mana_ib_cq *cq = container_of(ibcq, struct mana_ib_cq, ibcq); + struct ib_device *ibdev = ibcq->device; + struct mana_ib_create_cq ucmd = {}; + struct mana_ib_dev *mdev; + int err; + + mdev = container_of(ibdev, struct mana_ib_dev, ib_dev); + + if (udata->inlen < sizeof(ucmd)) + return -EINVAL; + + err = ib_copy_from_udata(&ucmd, udata, min(sizeof(ucmd), udata->inlen)); + if (err) { + ibdev_dbg(ibdev, + "Failed to copy from udata for create cq, %d\n", err); + return err; + } + + if (attr->cqe > MAX_SEND_BUFFERS_PER_QUEUE) { + ibdev_dbg(ibdev, "CQE %d exceeding limit\n", attr->cqe); + return -EINVAL; + } + + cq->cqe = attr->cqe; + cq->umem = ib_umem_get(ibdev, ucmd.buf_addr, cq->cqe * COMP_ENTRY_SIZE, + IB_ACCESS_LOCAL_WRITE); + if (IS_ERR(cq->umem)) { + err = PTR_ERR(cq->umem); + ibdev_dbg(ibdev, "Failed to get umem for create cq, err %d\n", + err); + return err; + } + + err = mana_ib_gd_create_dma_region(mdev, cq->umem, &cq->gdma_region); + if (err) { + ibdev_dbg(ibdev, + "Failed to create dma region for create cq, %d\n", + err); + goto err_release_umem; + } + + ibdev_dbg(ibdev, + "mana_ib_gd_create_dma_region ret %d gdma_region 0x%llx\n", + err, cq->gdma_region); + + /* + * The CQ ID is not known at this time. The ID is generated at create_qp + */ + + return 0; + +err_release_umem: + ib_umem_release(cq->umem); + return err; +} + +int mana_ib_destroy_cq(struct ib_cq *ibcq, struct ib_udata *udata) +{ + struct mana_ib_cq *cq = container_of(ibcq, struct mana_ib_cq, ibcq); + struct ib_device *ibdev = ibcq->device; + struct mana_ib_dev *mdev; + + mdev = container_of(ibdev, struct mana_ib_dev, ib_dev); + + mana_ib_gd_destroy_dma_region(mdev, cq->gdma_region); + ib_umem_release(cq->umem); + + return 0; +} diff --git a/drivers/infiniband/hw/mana/device.c b/drivers/infiniband/hw/mana/device.c new file mode 100644 index 0000000000000..d4541b8707e4c --- /dev/null +++ b/drivers/infiniband/hw/mana/device.c @@ -0,0 +1,117 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * Copyright (c) 2022, Microsoft Corporation. All rights reserved. + */ + +#include "mana_ib.h" +#include + +MODULE_DESCRIPTION("Microsoft Azure Network Adapter IB driver"); +MODULE_LICENSE("GPL"); +MODULE_IMPORT_NS(NET_MANA); + +static const struct ib_device_ops mana_ib_dev_ops = { + .owner = THIS_MODULE, + .driver_id = RDMA_DRIVER_MANA, + .uverbs_abi_ver = MANA_IB_UVERBS_ABI_VERSION, + + .alloc_pd = mana_ib_alloc_pd, + .alloc_ucontext = mana_ib_alloc_ucontext, + .create_cq = mana_ib_create_cq, + .create_qp = mana_ib_create_qp, + .create_rwq_ind_table = mana_ib_create_rwq_ind_table, + .create_wq = mana_ib_create_wq, + .dealloc_pd = mana_ib_dealloc_pd, + .dealloc_ucontext = mana_ib_dealloc_ucontext, + .dereg_mr = mana_ib_dereg_mr, + .destroy_cq = mana_ib_destroy_cq, + .destroy_qp = mana_ib_destroy_qp, + .destroy_rwq_ind_table = mana_ib_destroy_rwq_ind_table, + .destroy_wq = mana_ib_destroy_wq, + .disassociate_ucontext = mana_ib_disassociate_ucontext, + .get_port_immutable = mana_ib_get_port_immutable, + .mmap = mana_ib_mmap, + .modify_qp = mana_ib_modify_qp, + .modify_wq = mana_ib_modify_wq, + .query_device = mana_ib_query_device, + .query_gid = mana_ib_query_gid, + .query_port = mana_ib_query_port, + .reg_user_mr = mana_ib_reg_user_mr, + + INIT_RDMA_OBJ_SIZE(ib_cq, mana_ib_cq, ibcq), + INIT_RDMA_OBJ_SIZE(ib_pd, mana_ib_pd, ibpd), + INIT_RDMA_OBJ_SIZE(ib_qp, mana_ib_qp, ibqp), + INIT_RDMA_OBJ_SIZE(ib_ucontext, mana_ib_ucontext, ibucontext), + INIT_RDMA_OBJ_SIZE(ib_rwq_ind_table, mana_ib_rwq_ind_table, + ib_ind_table), +}; + +static int mana_ib_probe(struct auxiliary_device *adev, + const struct auxiliary_device_id *id) +{ + struct mana_adev *madev = container_of(adev, struct mana_adev, adev); + struct gdma_dev *mdev = madev->mdev; + struct mana_context *mc; + struct mana_ib_dev *dev; + int ret; + + mc = mdev->driver_data; + + dev = ib_alloc_device(mana_ib_dev, ib_dev); + if (!dev) + return -ENOMEM; + + ib_set_device_ops(&dev->ib_dev, &mana_ib_dev_ops); + + dev->ib_dev.phys_port_cnt = mc->num_ports; + + ibdev_dbg(&dev->ib_dev, "mdev=%p id=%d num_ports=%d\n", mdev, + mdev->dev_id.as_uint32, dev->ib_dev.phys_port_cnt); + + dev->gdma_dev = mdev; + dev->ib_dev.node_type = RDMA_NODE_IB_CA; + + /* + * num_comp_vectors needs to set to the max MSIX index + * when interrupts and event queues are implemented + */ + dev->ib_dev.num_comp_vectors = 1; + dev->ib_dev.dev.parent = mdev->gdma_context->dev; + + ret = ib_register_device(&dev->ib_dev, "mana_%d", + mdev->gdma_context->dev); + if (ret) { + ib_dealloc_device(&dev->ib_dev); + return ret; + } + + dev_set_drvdata(&adev->dev, dev); + + return 0; +} + +static void mana_ib_remove(struct auxiliary_device *adev) +{ + struct mana_ib_dev *dev = dev_get_drvdata(&adev->dev); + + ib_unregister_device(&dev->ib_dev); + ib_dealloc_device(&dev->ib_dev); +} + +static const struct auxiliary_device_id mana_id_table[] = { + { + .name = "mana.rdma", + }, + {}, +}; + +MODULE_DEVICE_TABLE(auxiliary, mana_id_table); + +static struct auxiliary_driver mana_driver = { + .name = "rdma", + .probe = mana_ib_probe, + .remove = mana_ib_remove, + .id_table = mana_id_table, +}; + +module_auxiliary_driver(mana_driver); diff --git a/drivers/infiniband/hw/mana/main.c b/drivers/infiniband/hw/mana/main.c new file mode 100644 index 0000000000000..8b3bc302d6f3a --- /dev/null +++ b/drivers/infiniband/hw/mana/main.c @@ -0,0 +1,521 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * Copyright (c) 2022, Microsoft Corporation. All rights reserved. + */ + +#include "mana_ib.h" + +void mana_ib_uncfg_vport(struct mana_ib_dev *dev, struct mana_ib_pd *pd, + u32 port) +{ + struct gdma_dev *gd = dev->gdma_dev; + struct mana_port_context *mpc; + struct net_device *ndev; + struct mana_context *mc; + + mc = gd->driver_data; + ndev = mc->ports[port]; + mpc = netdev_priv(ndev); + + mutex_lock(&pd->vport_mutex); + + pd->vport_use_count--; + WARN_ON(pd->vport_use_count < 0); + + if (!pd->vport_use_count) + mana_uncfg_vport(mpc); + + mutex_unlock(&pd->vport_mutex); +} + +int mana_ib_cfg_vport(struct mana_ib_dev *dev, u32 port, struct mana_ib_pd *pd, + u32 doorbell_id) +{ + struct gdma_dev *mdev = dev->gdma_dev; + struct mana_port_context *mpc; + struct mana_context *mc; + struct net_device *ndev; + int err; + + mc = mdev->driver_data; + ndev = mc->ports[port]; + mpc = netdev_priv(ndev); + + mutex_lock(&pd->vport_mutex); + + pd->vport_use_count++; + if (pd->vport_use_count > 1) { + ibdev_dbg(&dev->ib_dev, + "Skip as this PD is already configured vport\n"); + mutex_unlock(&pd->vport_mutex); + return 0; + } + + err = mana_cfg_vport(mpc, pd->pdn, doorbell_id); + if (err) { + pd->vport_use_count--; + mutex_unlock(&pd->vport_mutex); + + ibdev_dbg(&dev->ib_dev, "Failed to configure vPort %d\n", err); + return err; + } + + mutex_unlock(&pd->vport_mutex); + + pd->tx_shortform_allowed = mpc->tx_shortform_allowed; + pd->tx_vp_offset = mpc->tx_vp_offset; + + ibdev_dbg(&dev->ib_dev, "vport handle %llx pdid %x doorbell_id %x\n", + mpc->port_handle, pd->pdn, doorbell_id); + + return 0; +} + +int mana_ib_alloc_pd(struct ib_pd *ibpd, struct ib_udata *udata) +{ + struct mana_ib_pd *pd = container_of(ibpd, struct mana_ib_pd, ibpd); + struct ib_device *ibdev = ibpd->device; + struct gdma_create_pd_resp resp = {}; + struct gdma_create_pd_req req = {}; + enum gdma_pd_flags flags = 0; + struct mana_ib_dev *dev; + struct gdma_dev *mdev; + int err; + + dev = container_of(ibdev, struct mana_ib_dev, ib_dev); + mdev = dev->gdma_dev; + + mana_gd_init_req_hdr(&req.hdr, GDMA_CREATE_PD, sizeof(req), + sizeof(resp)); + + req.flags = flags; + err = mana_gd_send_request(mdev->gdma_context, sizeof(req), &req, + sizeof(resp), &resp); + + if (err || resp.hdr.status) { + ibdev_dbg(&dev->ib_dev, + "Failed to get pd_id err %d status %u\n", err, + resp.hdr.status); + if (!err) + err = -EPROTO; + + return err; + } + + pd->pd_handle = resp.pd_handle; + pd->pdn = resp.pd_id; + ibdev_dbg(&dev->ib_dev, "pd_handle 0x%llx pd_id %d\n", + pd->pd_handle, pd->pdn); + + mutex_init(&pd->vport_mutex); + pd->vport_use_count = 0; + return 0; +} + +int mana_ib_dealloc_pd(struct ib_pd *ibpd, struct ib_udata *udata) +{ + struct mana_ib_pd *pd = container_of(ibpd, struct mana_ib_pd, ibpd); + struct ib_device *ibdev = ibpd->device; + struct gdma_destory_pd_resp resp = {}; + struct gdma_destroy_pd_req req = {}; + struct mana_ib_dev *dev; + struct gdma_dev *mdev; + int err; + + dev = container_of(ibdev, struct mana_ib_dev, ib_dev); + mdev = dev->gdma_dev; + + mana_gd_init_req_hdr(&req.hdr, GDMA_DESTROY_PD, sizeof(req), + sizeof(resp)); + + req.pd_handle = pd->pd_handle; + err = mana_gd_send_request(mdev->gdma_context, sizeof(req), &req, + sizeof(resp), &resp); + + if (err || resp.hdr.status) { + ibdev_dbg(&dev->ib_dev, + "Failed to destroy pd_handle 0x%llx err %d status %u", + pd->pd_handle, err, resp.hdr.status); + if (!err) + err = -EPROTO; + } + + return err; +} + +static int mana_gd_destroy_doorbell_page(struct gdma_context *gc, + int doorbell_page) +{ + struct gdma_destroy_resource_range_req req = {}; + struct gdma_resp_hdr resp = {}; + int err; + + mana_gd_init_req_hdr(&req.hdr, GDMA_DESTROY_RESOURCE_RANGE, + sizeof(req), sizeof(resp)); + + req.resource_type = GDMA_RESOURCE_DOORBELL_PAGE; + req.num_resources = 1; + req.allocated_resources = doorbell_page; + + err = mana_gd_send_request(gc, sizeof(req), &req, sizeof(resp), &resp); + if (err || resp.status) { + dev_err(gc->dev, + "Failed to destroy doorbell page: ret %d, 0x%x\n", + err, resp.status); + return err ?: -EPROTO; + } + + return 0; +} + +static int mana_gd_allocate_doorbell_page(struct gdma_context *gc, + int *doorbell_page) +{ + struct gdma_allocate_resource_range_req req = {}; + struct gdma_allocate_resource_range_resp resp = {}; + int err; + + mana_gd_init_req_hdr(&req.hdr, GDMA_ALLOCATE_RESOURCE_RANGE, + sizeof(req), sizeof(resp)); + + req.resource_type = GDMA_RESOURCE_DOORBELL_PAGE; + req.num_resources = 1; + req.alignment = 1; + + /* Have GDMA start searching from 0 */ + req.allocated_resources = 0; + + err = mana_gd_send_request(gc, sizeof(req), &req, sizeof(resp), &resp); + if (err || resp.hdr.status) { + dev_err(gc->dev, + "Failed to allocate doorbell page: ret %d, 0x%x\n", + err, resp.hdr.status); + return err ?: -EPROTO; + } + + *doorbell_page = resp.allocated_resources; + + return 0; +} + +int mana_ib_alloc_ucontext(struct ib_ucontext *ibcontext, + struct ib_udata *udata) +{ + struct mana_ib_ucontext *ucontext = + container_of(ibcontext, struct mana_ib_ucontext, ibucontext); + struct ib_device *ibdev = ibcontext->device; + struct mana_ib_dev *mdev; + struct gdma_context *gc; + struct gdma_dev *dev; + int doorbell_page; + int ret; + + mdev = container_of(ibdev, struct mana_ib_dev, ib_dev); + dev = mdev->gdma_dev; + gc = dev->gdma_context; + + /* Allocate a doorbell page index */ + ret = mana_gd_allocate_doorbell_page(gc, &doorbell_page); + if (ret) { + ibdev_dbg(ibdev, "Failed to allocate doorbell page %d\n", ret); + return ret; + } + + ibdev_dbg(ibdev, "Doorbell page allocated %d\n", doorbell_page); + + ucontext->doorbell = doorbell_page; + + return 0; +} + +void mana_ib_dealloc_ucontext(struct ib_ucontext *ibcontext) +{ + struct mana_ib_ucontext *mana_ucontext = + container_of(ibcontext, struct mana_ib_ucontext, ibucontext); + struct ib_device *ibdev = ibcontext->device; + struct mana_ib_dev *mdev; + struct gdma_context *gc; + int ret; + + mdev = container_of(ibdev, struct mana_ib_dev, ib_dev); + gc = mdev->gdma_dev->gdma_context; + + ret = mana_gd_destroy_doorbell_page(gc, mana_ucontext->doorbell); + if (ret) + ibdev_dbg(ibdev, "Failed to destroy doorbell page %d\n", ret); +} + +static int +mana_ib_gd_first_dma_region(struct mana_ib_dev *dev, + struct gdma_context *gc, + struct gdma_create_dma_region_req *create_req, + size_t num_pages, mana_handle_t *gdma_region) +{ + struct gdma_create_dma_region_resp create_resp = {}; + unsigned int create_req_msg_size; + int err; + + create_req_msg_size = + struct_size(create_req, page_addr_list, num_pages); + create_req->page_addr_list_len = num_pages; + + err = mana_gd_send_request(gc, create_req_msg_size, create_req, + sizeof(create_resp), &create_resp); + if (err || create_resp.hdr.status) { + ibdev_dbg(&dev->ib_dev, + "Failed to create DMA region: %d, 0x%x\n", + err, create_resp.hdr.status); + if (!err) + err = -EPROTO; + + return err; + } + + *gdma_region = create_resp.dma_region_handle; + ibdev_dbg(&dev->ib_dev, "Created DMA region handle 0x%llx\n", + *gdma_region); + + return 0; +} + +static int +mana_ib_gd_add_dma_region(struct mana_ib_dev *dev, struct gdma_context *gc, + struct gdma_dma_region_add_pages_req *add_req, + unsigned int num_pages, u32 expected_status) +{ + unsigned int add_req_msg_size = + struct_size(add_req, page_addr_list, num_pages); + struct gdma_general_resp add_resp = {}; + int err; + + mana_gd_init_req_hdr(&add_req->hdr, GDMA_DMA_REGION_ADD_PAGES, + add_req_msg_size, sizeof(add_resp)); + add_req->page_addr_list_len = num_pages; + + err = mana_gd_send_request(gc, add_req_msg_size, add_req, + sizeof(add_resp), &add_resp); + if (err || add_resp.hdr.status != expected_status) { + ibdev_dbg(&dev->ib_dev, + "Failed to create DMA region: %d, 0x%x\n", + err, add_resp.hdr.status); + + if (!err) + err = -EPROTO; + + return err; + } + + return 0; +} + +int mana_ib_gd_create_dma_region(struct mana_ib_dev *dev, struct ib_umem *umem, + mana_handle_t *gdma_region) +{ + struct gdma_dma_region_add_pages_req *add_req = NULL; + size_t num_pages_processed = 0, num_pages_to_handle; + struct gdma_create_dma_region_req *create_req; + unsigned int create_req_msg_size; + struct hw_channel_context *hwc; + struct ib_block_iter biter; + size_t max_pgs_add_cmd = 0; + size_t max_pgs_create_cmd; + struct gdma_context *gc; + size_t num_pages_total; + struct gdma_dev *mdev; + unsigned long page_sz; + unsigned int tail = 0; + u64 *page_addr_list; + void *request_buf; + int err; + + mdev = dev->gdma_dev; + gc = mdev->gdma_context; + hwc = gc->hwc.driver_data; + + /* Hardware requires dma region to align to chosen page size */ + page_sz = ib_umem_find_best_pgsz(umem, PAGE_SZ_BM, 0); + if (!page_sz) { + ibdev_dbg(&dev->ib_dev, "failed to find page size.\n"); + return -ENOMEM; + } + num_pages_total = ib_umem_num_dma_blocks(umem, page_sz); + + max_pgs_create_cmd = + (hwc->max_req_msg_size - sizeof(*create_req)) / sizeof(u64); + num_pages_to_handle = + min_t(size_t, num_pages_total, max_pgs_create_cmd); + create_req_msg_size = + struct_size(create_req, page_addr_list, num_pages_to_handle); + + request_buf = kzalloc(hwc->max_req_msg_size, GFP_KERNEL); + if (!request_buf) + return -ENOMEM; + + create_req = request_buf; + mana_gd_init_req_hdr(&create_req->hdr, GDMA_CREATE_DMA_REGION, + create_req_msg_size, + sizeof(struct gdma_create_dma_region_resp)); + + create_req->length = umem->length; + create_req->offset_in_page = umem->address & (page_sz - 1); + create_req->gdma_page_type = order_base_2(page_sz) - PAGE_SHIFT; + create_req->page_count = num_pages_total; + + ibdev_dbg(&dev->ib_dev, "size_dma_region %lu num_pages_total %lu\n", + umem->length, num_pages_total); + + ibdev_dbg(&dev->ib_dev, "page_sz %lu offset_in_page %u\n", + page_sz, create_req->offset_in_page); + + ibdev_dbg(&dev->ib_dev, "num_pages_to_handle %lu, gdma_page_type %u", + num_pages_to_handle, create_req->gdma_page_type); + + page_addr_list = create_req->page_addr_list; + rdma_umem_for_each_dma_block(umem, &biter, page_sz) { + page_addr_list[tail++] = rdma_block_iter_dma_address(&biter); + if (tail < num_pages_to_handle) + continue; + + if (!num_pages_processed) { + /* First create message */ + err = mana_ib_gd_first_dma_region(dev, gc, create_req, + tail, gdma_region); + if (err) + goto out; + + max_pgs_add_cmd = (hwc->max_req_msg_size - + sizeof(*add_req)) / sizeof(u64); + + add_req = request_buf; + add_req->dma_region_handle = *gdma_region; + add_req->reserved3 = 0; + page_addr_list = add_req->page_addr_list; + } else { + /* Subsequent create messages */ + u32 expected_s = 0; + + if (num_pages_processed + num_pages_to_handle < + num_pages_total) + expected_s = GDMA_STATUS_MORE_ENTRIES; + + err = mana_ib_gd_add_dma_region(dev, gc, add_req, tail, + expected_s); + if (err) + break; + } + + num_pages_processed += tail; + tail = 0; + + /* The remaining pages to create */ + num_pages_to_handle = + min_t(size_t, + num_pages_total - num_pages_processed, + max_pgs_add_cmd); + } + + if (err) + mana_ib_gd_destroy_dma_region(dev, *gdma_region); + +out: + kfree(request_buf); + return err; +} + +int mana_ib_gd_destroy_dma_region(struct mana_ib_dev *dev, u64 gdma_region) +{ + struct gdma_dev *mdev = dev->gdma_dev; + struct gdma_context *gc; + + gc = mdev->gdma_context; + ibdev_dbg(&dev->ib_dev, "destroy dma region 0x%llx\n", gdma_region); + + return mana_gd_destroy_dma_region(gc, gdma_region); +} + +int mana_ib_mmap(struct ib_ucontext *ibcontext, struct vm_area_struct *vma) +{ + struct mana_ib_ucontext *mana_ucontext = + container_of(ibcontext, struct mana_ib_ucontext, ibucontext); + struct ib_device *ibdev = ibcontext->device; + struct mana_ib_dev *mdev; + struct gdma_context *gc; + phys_addr_t pfn; + pgprot_t prot; + int ret; + + mdev = container_of(ibdev, struct mana_ib_dev, ib_dev); + gc = mdev->gdma_dev->gdma_context; + + if (vma->vm_pgoff != 0) { + ibdev_dbg(ibdev, "Unexpected vm_pgoff %lu\n", vma->vm_pgoff); + return -EINVAL; + } + + /* Map to the page indexed by ucontext->doorbell */ + pfn = (gc->phys_db_page_base + + gc->db_page_size * mana_ucontext->doorbell) >> + PAGE_SHIFT; + prot = pgprot_writecombine(vma->vm_page_prot); + + ret = rdma_user_mmap_io(ibcontext, vma, pfn, gc->db_page_size, prot, + NULL); + if (ret) + ibdev_dbg(ibdev, "can't rdma_user_mmap_io ret %d\n", ret); + else + ibdev_dbg(ibdev, "mapped I/O pfn 0x%llx page_size %u, ret %d\n", + pfn, gc->db_page_size, ret); + + return ret; +} + +int mana_ib_get_port_immutable(struct ib_device *ibdev, u32 port_num, + struct ib_port_immutable *immutable) +{ + /* + * This version only support RAW_PACKET + * other values need to be filled for other types + */ + immutable->core_cap_flags = RDMA_CORE_PORT_RAW_PACKET; + + return 0; +} + +int mana_ib_query_device(struct ib_device *ibdev, struct ib_device_attr *props, + struct ib_udata *uhw) +{ + props->max_qp = MANA_MAX_NUM_QUEUES; + props->max_qp_wr = MAX_SEND_BUFFERS_PER_QUEUE; + + /* + * max_cqe could be potentially much bigger. + * As this version of driver only support RAW QP, set it to the same + * value as max_qp_wr + */ + props->max_cqe = MAX_SEND_BUFFERS_PER_QUEUE; + + props->max_mr_size = MANA_IB_MAX_MR_SIZE; + props->max_mr = MANA_IB_MAX_MR; + props->max_send_sge = MAX_TX_WQE_SGL_ENTRIES; + props->max_recv_sge = MAX_RX_WQE_SGL_ENTRIES; + + return 0; +} + +int mana_ib_query_port(struct ib_device *ibdev, u32 port, + struct ib_port_attr *props) +{ + /* This version doesn't return port properties */ + return 0; +} + +int mana_ib_query_gid(struct ib_device *ibdev, u32 port, int index, + union ib_gid *gid) +{ + /* This version doesn't return GID properties */ + return 0; +} + +void mana_ib_disassociate_ucontext(struct ib_ucontext *ibcontext) +{ +} diff --git a/drivers/infiniband/hw/mana/mana_ib.h b/drivers/infiniband/hw/mana/mana_ib.h new file mode 100644 index 0000000000000..502cc8672eefa --- /dev/null +++ b/drivers/infiniband/hw/mana/mana_ib.h @@ -0,0 +1,162 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ +/* + * Copyright (c) 2022 Microsoft Corporation. All rights reserved. + */ + +#ifndef _MANA_IB_H_ +#define _MANA_IB_H_ + +#include +#include +#include +#include +#include + +#include + +#define PAGE_SZ_BM \ + (SZ_4K | SZ_8K | SZ_16K | SZ_32K | SZ_64K | SZ_128K | SZ_256K | \ + SZ_512K | SZ_1M | SZ_2M) + +/* MANA doesn't have any limit for MR size */ +#define MANA_IB_MAX_MR_SIZE U64_MAX + +/* + * The hardware limit of number of MRs is greater than maximum number of MRs + * that can possibly represent in 24 bits + */ +#define MANA_IB_MAX_MR 0xFFFFFFu + +struct mana_ib_dev { + struct ib_device ib_dev; + struct gdma_dev *gdma_dev; +}; + +struct mana_ib_wq { + struct ib_wq ibwq; + struct ib_umem *umem; + int wqe; + u32 wq_buf_size; + u64 gdma_region; + u64 id; + mana_handle_t rx_object; +}; + +struct mana_ib_pd { + struct ib_pd ibpd; + u32 pdn; + mana_handle_t pd_handle; + + /* Mutex for sharing access to vport_use_count */ + struct mutex vport_mutex; + int vport_use_count; + + bool tx_shortform_allowed; + u32 tx_vp_offset; +}; + +struct mana_ib_mr { + struct ib_mr ibmr; + struct ib_umem *umem; + mana_handle_t mr_handle; +}; + +struct mana_ib_cq { + struct ib_cq ibcq; + struct ib_umem *umem; + int cqe; + u64 gdma_region; + u64 id; +}; + +struct mana_ib_qp { + struct ib_qp ibqp; + + /* Work queue info */ + struct ib_umem *sq_umem; + int sqe; + u64 sq_gdma_region; + u64 sq_id; + mana_handle_t tx_object; + + /* The port on the IB device, starting with 1 */ + u32 port; +}; + +struct mana_ib_ucontext { + struct ib_ucontext ibucontext; + u32 doorbell; +}; + +struct mana_ib_rwq_ind_table { + struct ib_rwq_ind_table ib_ind_table; +}; + +int mana_ib_gd_create_dma_region(struct mana_ib_dev *dev, struct ib_umem *umem, + mana_handle_t *gdma_region); + +int mana_ib_gd_destroy_dma_region(struct mana_ib_dev *dev, + mana_handle_t gdma_region); + +struct ib_wq *mana_ib_create_wq(struct ib_pd *pd, + struct ib_wq_init_attr *init_attr, + struct ib_udata *udata); + +int mana_ib_modify_wq(struct ib_wq *wq, struct ib_wq_attr *wq_attr, + u32 wq_attr_mask, struct ib_udata *udata); + +int mana_ib_destroy_wq(struct ib_wq *ibwq, struct ib_udata *udata); + +int mana_ib_create_rwq_ind_table(struct ib_rwq_ind_table *ib_rwq_ind_table, + struct ib_rwq_ind_table_init_attr *init_attr, + struct ib_udata *udata); + +int mana_ib_destroy_rwq_ind_table(struct ib_rwq_ind_table *ib_rwq_ind_tbl); + +struct ib_mr *mana_ib_get_dma_mr(struct ib_pd *ibpd, int access_flags); + +struct ib_mr *mana_ib_reg_user_mr(struct ib_pd *pd, u64 start, u64 length, + u64 iova, int access_flags, + struct ib_udata *udata); + +int mana_ib_dereg_mr(struct ib_mr *ibmr, struct ib_udata *udata); + +int mana_ib_create_qp(struct ib_qp *qp, struct ib_qp_init_attr *qp_init_attr, + struct ib_udata *udata); + +int mana_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr, + int attr_mask, struct ib_udata *udata); + +int mana_ib_destroy_qp(struct ib_qp *ibqp, struct ib_udata *udata); + +int mana_ib_cfg_vport(struct mana_ib_dev *dev, u32 port_id, + struct mana_ib_pd *pd, u32 doorbell_id); +void mana_ib_uncfg_vport(struct mana_ib_dev *dev, struct mana_ib_pd *pd, + u32 port); + +int mana_ib_create_cq(struct ib_cq *ibcq, const struct ib_cq_init_attr *attr, + struct ib_udata *udata); + +int mana_ib_destroy_cq(struct ib_cq *ibcq, struct ib_udata *udata); + +int mana_ib_alloc_pd(struct ib_pd *ibpd, struct ib_udata *udata); +int mana_ib_dealloc_pd(struct ib_pd *ibpd, struct ib_udata *udata); + +int mana_ib_alloc_ucontext(struct ib_ucontext *ibcontext, + struct ib_udata *udata); +void mana_ib_dealloc_ucontext(struct ib_ucontext *ibcontext); + +int mana_ib_mmap(struct ib_ucontext *ibcontext, struct vm_area_struct *vma); + +int mana_ib_get_port_immutable(struct ib_device *ibdev, u32 port_num, + struct ib_port_immutable *immutable); +int mana_ib_query_device(struct ib_device *ibdev, struct ib_device_attr *props, + struct ib_udata *uhw); +int mana_ib_query_port(struct ib_device *ibdev, u32 port, + struct ib_port_attr *props); +int mana_ib_query_gid(struct ib_device *ibdev, u32 port, int index, + union ib_gid *gid); + +void mana_ib_disassociate_ucontext(struct ib_ucontext *ibcontext); + +#endif diff --git a/drivers/infiniband/hw/mana/mr.c b/drivers/infiniband/hw/mana/mr.c new file mode 100644 index 0000000000000..351207c60eb65 --- /dev/null +++ b/drivers/infiniband/hw/mana/mr.c @@ -0,0 +1,197 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * Copyright (c) 2022, Microsoft Corporation. All rights reserved. + */ + +#include "mana_ib.h" + +#define VALID_MR_FLAGS \ + (IB_ACCESS_LOCAL_WRITE | IB_ACCESS_REMOTE_WRITE | IB_ACCESS_REMOTE_READ) + +static enum gdma_mr_access_flags +mana_ib_verbs_to_gdma_access_flags(int access_flags) +{ + enum gdma_mr_access_flags flags = GDMA_ACCESS_FLAG_LOCAL_READ; + + if (access_flags & IB_ACCESS_LOCAL_WRITE) + flags |= GDMA_ACCESS_FLAG_LOCAL_WRITE; + + if (access_flags & IB_ACCESS_REMOTE_WRITE) + flags |= GDMA_ACCESS_FLAG_REMOTE_WRITE; + + if (access_flags & IB_ACCESS_REMOTE_READ) + flags |= GDMA_ACCESS_FLAG_REMOTE_READ; + + return flags; +} + +static int mana_ib_gd_create_mr(struct mana_ib_dev *dev, struct mana_ib_mr *mr, + struct gdma_create_mr_params *mr_params) +{ + struct gdma_create_mr_response resp = {}; + struct gdma_create_mr_request req = {}; + struct gdma_dev *mdev = dev->gdma_dev; + struct gdma_context *gc; + int err; + + gc = mdev->gdma_context; + + mana_gd_init_req_hdr(&req.hdr, GDMA_CREATE_MR, sizeof(req), + sizeof(resp)); + req.pd_handle = mr_params->pd_handle; + req.mr_type = mr_params->mr_type; + + switch (mr_params->mr_type) { + case GDMA_MR_TYPE_GVA: + req.gva.dma_region_handle = mr_params->gva.dma_region_handle; + req.gva.virtual_address = mr_params->gva.virtual_address; + req.gva.access_flags = mr_params->gva.access_flags; + break; + + default: + ibdev_dbg(&dev->ib_dev, + "invalid param (GDMA_MR_TYPE) passed, type %d\n", + req.mr_type); + return -EINVAL; + } + + err = mana_gd_send_request(gc, sizeof(req), &req, sizeof(resp), &resp); + + if (err || resp.hdr.status) { + ibdev_dbg(&dev->ib_dev, "Failed to create mr %d, %u", err, + resp.hdr.status); + if (!err) + err = -EPROTO; + + return err; + } + + mr->ibmr.lkey = resp.lkey; + mr->ibmr.rkey = resp.rkey; + mr->mr_handle = resp.mr_handle; + + return 0; +} + +static int mana_ib_gd_destroy_mr(struct mana_ib_dev *dev, u64 mr_handle) +{ + struct gdma_destroy_mr_response resp = {}; + struct gdma_destroy_mr_request req = {}; + struct gdma_dev *mdev = dev->gdma_dev; + struct gdma_context *gc; + int err; + + gc = mdev->gdma_context; + + mana_gd_init_req_hdr(&req.hdr, GDMA_DESTROY_MR, sizeof(req), + sizeof(resp)); + + req.mr_handle = mr_handle; + + err = mana_gd_send_request(gc, sizeof(req), &req, sizeof(resp), &resp); + if (err || resp.hdr.status) { + dev_err(gc->dev, "Failed to destroy MR: %d, 0x%x\n", err, + resp.hdr.status); + if (!err) + err = -EPROTO; + return err; + } + + return 0; +} + +struct ib_mr *mana_ib_reg_user_mr(struct ib_pd *ibpd, u64 start, u64 length, + u64 iova, int access_flags, + struct ib_udata *udata) +{ + struct mana_ib_pd *pd = container_of(ibpd, struct mana_ib_pd, ibpd); + struct gdma_create_mr_params mr_params = {}; + struct ib_device *ibdev = ibpd->device; + struct mana_ib_dev *dev; + struct mana_ib_mr *mr; + u64 dma_region_handle; + int err; + + dev = container_of(ibdev, struct mana_ib_dev, ib_dev); + + ibdev_dbg(ibdev, + "start 0x%llx, iova 0x%llx length 0x%llx access_flags 0x%x", + start, iova, length, access_flags); + + if (access_flags & ~VALID_MR_FLAGS) + return ERR_PTR(-EINVAL); + + mr = kzalloc(sizeof(*mr), GFP_KERNEL); + if (!mr) + return ERR_PTR(-ENOMEM); + + mr->umem = ib_umem_get(ibdev, start, length, access_flags); + if (IS_ERR(mr->umem)) { + err = PTR_ERR(mr->umem); + ibdev_dbg(ibdev, + "Failed to get umem for register user-mr, %d\n", err); + goto err_free; + } + + err = mana_ib_gd_create_dma_region(dev, mr->umem, &dma_region_handle); + if (err) { + ibdev_dbg(ibdev, "Failed create dma region for user-mr, %d\n", + err); + goto err_umem; + } + + ibdev_dbg(ibdev, + "mana_ib_gd_create_dma_region ret %d gdma_region %llx\n", err, + dma_region_handle); + + mr_params.pd_handle = pd->pd_handle; + mr_params.mr_type = GDMA_MR_TYPE_GVA; + mr_params.gva.dma_region_handle = dma_region_handle; + mr_params.gva.virtual_address = iova; + mr_params.gva.access_flags = + mana_ib_verbs_to_gdma_access_flags(access_flags); + + err = mana_ib_gd_create_mr(dev, mr, &mr_params); + if (err) + goto err_dma_region; + + /* + * There is no need to keep track of dma_region_handle after MR is + * successfully created. The dma_region_handle is tracked in the PF + * as part of the lifecycle of this MR. + */ + + return &mr->ibmr; + +err_dma_region: + mana_gd_destroy_dma_region(dev->gdma_dev->gdma_context, + dma_region_handle); + +err_umem: + ib_umem_release(mr->umem); + +err_free: + kfree(mr); + return ERR_PTR(err); +} + +int mana_ib_dereg_mr(struct ib_mr *ibmr, struct ib_udata *udata) +{ + struct mana_ib_mr *mr = container_of(ibmr, struct mana_ib_mr, ibmr); + struct ib_device *ibdev = ibmr->device; + struct mana_ib_dev *dev; + int err; + + dev = container_of(ibdev, struct mana_ib_dev, ib_dev); + + err = mana_ib_gd_destroy_mr(dev, mr->mr_handle); + if (err) + return err; + + if (mr->umem) + ib_umem_release(mr->umem); + + kfree(mr); + + return 0; +} diff --git a/drivers/infiniband/hw/mana/qp.c b/drivers/infiniband/hw/mana/qp.c new file mode 100644 index 0000000000000..54b61930a7fdb --- /dev/null +++ b/drivers/infiniband/hw/mana/qp.c @@ -0,0 +1,506 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * Copyright (c) 2022, Microsoft Corporation. All rights reserved. + */ + +#include "mana_ib.h" + +static int mana_ib_cfg_vport_steering(struct mana_ib_dev *dev, + struct net_device *ndev, + mana_handle_t default_rxobj, + mana_handle_t ind_table[], + u32 log_ind_tbl_size, u32 rx_hash_key_len, + u8 *rx_hash_key) +{ + struct mana_port_context *mpc = netdev_priv(ndev); + struct mana_cfg_rx_steer_req *req = NULL; + struct mana_cfg_rx_steer_resp resp = {}; + mana_handle_t *req_indir_tab; + struct gdma_context *gc; + struct gdma_dev *mdev; + u32 req_buf_size; + int i, err; + + mdev = dev->gdma_dev; + gc = mdev->gdma_context; + + req_buf_size = + sizeof(*req) + sizeof(mana_handle_t) * MANA_INDIRECT_TABLE_SIZE; + req = kzalloc(req_buf_size, GFP_KERNEL); + if (!req) + return -ENOMEM; + + mana_gd_init_req_hdr(&req->hdr, MANA_CONFIG_VPORT_RX, req_buf_size, + sizeof(resp)); + + req->vport = mpc->port_handle; + req->rx_enable = 1; + req->update_default_rxobj = 1; + req->default_rxobj = default_rxobj; + req->hdr.dev_id = mdev->dev_id; + + /* If there are more than 1 entries in indirection table, enable RSS */ + if (log_ind_tbl_size) + req->rss_enable = true; + + req->num_indir_entries = MANA_INDIRECT_TABLE_SIZE; + req->indir_tab_offset = sizeof(*req); + req->update_indir_tab = true; + + req_indir_tab = (mana_handle_t *)(req + 1); + /* The ind table passed to the hardware must have + * MANA_INDIRECT_TABLE_SIZE entries. Adjust the verb + * ind_table to MANA_INDIRECT_TABLE_SIZE if required + */ + ibdev_dbg(&dev->ib_dev, "ind table size %u\n", 1 << log_ind_tbl_size); + for (i = 0; i < MANA_INDIRECT_TABLE_SIZE; i++) { + req_indir_tab[i] = ind_table[i % (1 << log_ind_tbl_size)]; + ibdev_dbg(&dev->ib_dev, "index %u handle 0x%llx\n", i, + req_indir_tab[i]); + } + + req->update_hashkey = true; + if (rx_hash_key_len) + memcpy(req->hashkey, rx_hash_key, rx_hash_key_len); + else + netdev_rss_key_fill(req->hashkey, MANA_HASH_KEY_SIZE); + + ibdev_dbg(&dev->ib_dev, "vport handle %llu default_rxobj 0x%llx\n", + req->vport, default_rxobj); + + err = mana_gd_send_request(gc, req_buf_size, req, sizeof(resp), &resp); + if (err) { + netdev_err(ndev, "Failed to configure vPort RX: %d\n", err); + goto out; + } + + if (resp.hdr.status) { + netdev_err(ndev, "vPort RX configuration failed: 0x%x\n", + resp.hdr.status); + err = -EPROTO; + goto out; + } + + netdev_info(ndev, "Configured steering vPort %llu log_entries %u\n", + mpc->port_handle, log_ind_tbl_size); + +out: + kfree(req); + return err; +} + +static int mana_ib_create_qp_rss(struct ib_qp *ibqp, struct ib_pd *pd, + struct ib_qp_init_attr *attr, + struct ib_udata *udata) +{ + struct mana_ib_qp *qp = container_of(ibqp, struct mana_ib_qp, ibqp); + struct mana_ib_dev *mdev = + container_of(pd->device, struct mana_ib_dev, ib_dev); + struct ib_rwq_ind_table *ind_tbl = attr->rwq_ind_tbl; + struct mana_ib_create_qp_rss_resp resp = {}; + struct mana_ib_create_qp_rss ucmd = {}; + struct gdma_dev *gd = mdev->gdma_dev; + mana_handle_t *mana_ind_table; + struct mana_port_context *mpc; + struct mana_context *mc; + struct net_device *ndev; + struct mana_ib_cq *cq; + struct mana_ib_wq *wq; + unsigned int ind_tbl_size; + struct ib_cq *ibcq; + struct ib_wq *ibwq; + int i = 0; + u32 port; + int ret; + + mc = gd->driver_data; + + if (!udata || udata->inlen < sizeof(ucmd)) + return -EINVAL; + + ret = ib_copy_from_udata(&ucmd, udata, min(sizeof(ucmd), udata->inlen)); + if (ret) { + ibdev_dbg(&mdev->ib_dev, + "Failed copy from udata for create rss-qp, err %d\n", + ret); + return ret; + } + + if (attr->cap.max_recv_wr > MAX_SEND_BUFFERS_PER_QUEUE) { + ibdev_dbg(&mdev->ib_dev, + "Requested max_recv_wr %d exceeding limit\n", + attr->cap.max_recv_wr); + return -EINVAL; + } + + if (attr->cap.max_recv_sge > MAX_RX_WQE_SGL_ENTRIES) { + ibdev_dbg(&mdev->ib_dev, + "Requested max_recv_sge %d exceeding limit\n", + attr->cap.max_recv_sge); + return -EINVAL; + } + + ind_tbl_size = 1 << ind_tbl->log_ind_tbl_size; + if (ind_tbl_size > MANA_INDIRECT_TABLE_SIZE) { + ibdev_dbg(&mdev->ib_dev, + "Indirect table size %d exceeding limit\n", + ind_tbl_size); + return -EINVAL; + } + + if (ucmd.rx_hash_function != MANA_IB_RX_HASH_FUNC_TOEPLITZ) { + ibdev_dbg(&mdev->ib_dev, + "RX Hash function is not supported, %d\n", + ucmd.rx_hash_function); + return -EINVAL; + } + + /* IB ports start with 1, MANA start with 0 */ + port = ucmd.port; + if (port < 1 || port > mc->num_ports) { + ibdev_dbg(&mdev->ib_dev, "Invalid port %u in creating qp\n", + port); + return -EINVAL; + } + ndev = mc->ports[port - 1]; + mpc = netdev_priv(ndev); + + ibdev_dbg(&mdev->ib_dev, "rx_hash_function %d port %d\n", + ucmd.rx_hash_function, port); + + mana_ind_table = kcalloc(ind_tbl_size, sizeof(mana_handle_t), + GFP_KERNEL); + if (!mana_ind_table) { + ret = -ENOMEM; + goto fail; + } + + qp->port = port; + + for (i = 0; i < ind_tbl_size; i++) { + struct mana_obj_spec wq_spec = {}; + struct mana_obj_spec cq_spec = {}; + + ibwq = ind_tbl->ind_tbl[i]; + wq = container_of(ibwq, struct mana_ib_wq, ibwq); + + ibcq = ibwq->cq; + cq = container_of(ibcq, struct mana_ib_cq, ibcq); + + wq_spec.gdma_region = wq->gdma_region; + wq_spec.queue_size = wq->wq_buf_size; + + cq_spec.gdma_region = cq->gdma_region; + cq_spec.queue_size = cq->cqe * COMP_ENTRY_SIZE; + cq_spec.modr_ctx_id = 0; + cq_spec.attached_eq = GDMA_CQ_NO_EQ; + + ret = mana_create_wq_obj(mpc, mpc->port_handle, GDMA_RQ, + &wq_spec, &cq_spec, &wq->rx_object); + if (ret) + goto fail; + + /* The GDMA regions are now owned by the WQ object */ + wq->gdma_region = GDMA_INVALID_DMA_REGION; + cq->gdma_region = GDMA_INVALID_DMA_REGION; + + wq->id = wq_spec.queue_index; + cq->id = cq_spec.queue_index; + + ibdev_dbg(&mdev->ib_dev, + "ret %d rx_object 0x%llx wq id %llu cq id %llu\n", + ret, wq->rx_object, wq->id, cq->id); + + resp.entries[i].cqid = cq->id; + resp.entries[i].wqid = wq->id; + + mana_ind_table[i] = wq->rx_object; + } + resp.num_entries = i; + + ret = mana_ib_cfg_vport_steering(mdev, ndev, wq->rx_object, + mana_ind_table, + ind_tbl->log_ind_tbl_size, + ucmd.rx_hash_key_len, + ucmd.rx_hash_key); + if (ret) + goto fail; + + ret = ib_copy_to_udata(udata, &resp, sizeof(resp)); + if (ret) { + ibdev_dbg(&mdev->ib_dev, + "Failed to copy to udata create rss-qp, %d\n", + ret); + goto fail; + } + + kfree(mana_ind_table); + + return 0; + +fail: + while (i-- > 0) { + ibwq = ind_tbl->ind_tbl[i]; + wq = container_of(ibwq, struct mana_ib_wq, ibwq); + mana_destroy_wq_obj(mpc, GDMA_RQ, wq->rx_object); + } + + kfree(mana_ind_table); + + return ret; +} + +static int mana_ib_create_qp_raw(struct ib_qp *ibqp, struct ib_pd *ibpd, + struct ib_qp_init_attr *attr, + struct ib_udata *udata) +{ + struct mana_ib_pd *pd = container_of(ibpd, struct mana_ib_pd, ibpd); + struct mana_ib_qp *qp = container_of(ibqp, struct mana_ib_qp, ibqp); + struct mana_ib_dev *mdev = + container_of(ibpd->device, struct mana_ib_dev, ib_dev); + struct mana_ib_cq *send_cq = + container_of(attr->send_cq, struct mana_ib_cq, ibcq); + struct mana_ib_ucontext *mana_ucontext = + rdma_udata_to_drv_context(udata, struct mana_ib_ucontext, + ibucontext); + struct mana_ib_create_qp_resp resp = {}; + struct gdma_dev *gd = mdev->gdma_dev; + struct mana_ib_create_qp ucmd = {}; + struct mana_obj_spec wq_spec = {}; + struct mana_obj_spec cq_spec = {}; + struct mana_port_context *mpc; + struct mana_context *mc; + struct net_device *ndev; + struct ib_umem *umem; + int err; + u32 port; + + mc = gd->driver_data; + + if (!mana_ucontext || udata->inlen < sizeof(ucmd)) + return -EINVAL; + + err = ib_copy_from_udata(&ucmd, udata, min(sizeof(ucmd), udata->inlen)); + if (err) { + ibdev_dbg(&mdev->ib_dev, + "Failed to copy from udata create qp-raw, %d\n", err); + return err; + } + + /* IB ports start with 1, MANA Ethernet ports start with 0 */ + port = ucmd.port; + if (port < 1 || port > mc->num_ports) + return -EINVAL; + + if (attr->cap.max_send_wr > MAX_SEND_BUFFERS_PER_QUEUE) { + ibdev_dbg(&mdev->ib_dev, + "Requested max_send_wr %d exceeding limit\n", + attr->cap.max_send_wr); + return -EINVAL; + } + + if (attr->cap.max_send_sge > MAX_TX_WQE_SGL_ENTRIES) { + ibdev_dbg(&mdev->ib_dev, + "Requested max_send_sge %d exceeding limit\n", + attr->cap.max_send_sge); + return -EINVAL; + } + + ndev = mc->ports[port - 1]; + mpc = netdev_priv(ndev); + ibdev_dbg(&mdev->ib_dev, "port %u ndev %p mpc %p\n", port, ndev, mpc); + + err = mana_ib_cfg_vport(mdev, port - 1, pd, mana_ucontext->doorbell); + if (err) + return -ENODEV; + + qp->port = port; + + ibdev_dbg(&mdev->ib_dev, "ucmd sq_buf_addr 0x%llx port %u\n", + ucmd.sq_buf_addr, ucmd.port); + + umem = ib_umem_get(ibpd->device, ucmd.sq_buf_addr, ucmd.sq_buf_size, + IB_ACCESS_LOCAL_WRITE); + if (IS_ERR(umem)) { + err = PTR_ERR(umem); + ibdev_dbg(&mdev->ib_dev, + "Failed to get umem for create qp-raw, err %d\n", + err); + goto err_free_vport; + } + qp->sq_umem = umem; + + err = mana_ib_gd_create_dma_region(mdev, qp->sq_umem, + &qp->sq_gdma_region); + if (err) { + ibdev_dbg(&mdev->ib_dev, + "Failed to create dma region for create qp-raw, %d\n", + err); + goto err_release_umem; + } + + ibdev_dbg(&mdev->ib_dev, + "mana_ib_gd_create_dma_region ret %d gdma_region 0x%llx\n", + err, qp->sq_gdma_region); + + /* Create a WQ on the same port handle used by the Ethernet */ + wq_spec.gdma_region = qp->sq_gdma_region; + wq_spec.queue_size = ucmd.sq_buf_size; + + cq_spec.gdma_region = send_cq->gdma_region; + cq_spec.queue_size = send_cq->cqe * COMP_ENTRY_SIZE; + cq_spec.modr_ctx_id = 0; + cq_spec.attached_eq = GDMA_CQ_NO_EQ; + + err = mana_create_wq_obj(mpc, mpc->port_handle, GDMA_SQ, &wq_spec, + &cq_spec, &qp->tx_object); + if (err) { + ibdev_dbg(&mdev->ib_dev, + "Failed to create wq for create raw-qp, err %d\n", + err); + goto err_destroy_dma_region; + } + + /* The GDMA regions are now owned by the WQ object */ + qp->sq_gdma_region = GDMA_INVALID_DMA_REGION; + send_cq->gdma_region = GDMA_INVALID_DMA_REGION; + + qp->sq_id = wq_spec.queue_index; + send_cq->id = cq_spec.queue_index; + + ibdev_dbg(&mdev->ib_dev, + "ret %d qp->tx_object 0x%llx sq id %llu cq id %llu\n", err, + qp->tx_object, qp->sq_id, send_cq->id); + + resp.sqid = qp->sq_id; + resp.cqid = send_cq->id; + resp.tx_vp_offset = pd->tx_vp_offset; + + err = ib_copy_to_udata(udata, &resp, sizeof(resp)); + if (err) { + ibdev_dbg(&mdev->ib_dev, + "Failed copy udata for create qp-raw, %d\n", + err); + goto err_destroy_wq_obj; + } + + return 0; + +err_destroy_wq_obj: + mana_destroy_wq_obj(mpc, GDMA_SQ, qp->tx_object); + +err_destroy_dma_region: + mana_ib_gd_destroy_dma_region(mdev, qp->sq_gdma_region); + +err_release_umem: + ib_umem_release(umem); + +err_free_vport: + mana_ib_uncfg_vport(mdev, pd, port - 1); + + return err; +} + +int mana_ib_create_qp(struct ib_qp *ibqp, struct ib_qp_init_attr *attr, + struct ib_udata *udata) +{ + switch (attr->qp_type) { + case IB_QPT_RAW_PACKET: + /* When rwq_ind_tbl is used, it's for creating WQs for RSS */ + if (attr->rwq_ind_tbl) + return mana_ib_create_qp_rss(ibqp, ibqp->pd, attr, + udata); + + return mana_ib_create_qp_raw(ibqp, ibqp->pd, attr, udata); + default: + /* Creating QP other than IB_QPT_RAW_PACKET is not supported */ + ibdev_dbg(ibqp->device, "Creating QP type %u not supported\n", + attr->qp_type); + } + + return -EINVAL; +} + +int mana_ib_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr, + int attr_mask, struct ib_udata *udata) +{ + /* modify_qp is not supported by this version of the driver */ + return -EOPNOTSUPP; +} + +static int mana_ib_destroy_qp_rss(struct mana_ib_qp *qp, + struct ib_rwq_ind_table *ind_tbl, + struct ib_udata *udata) +{ + struct mana_ib_dev *mdev = + container_of(qp->ibqp.device, struct mana_ib_dev, ib_dev); + struct gdma_dev *gd = mdev->gdma_dev; + struct mana_port_context *mpc; + struct mana_context *mc; + struct net_device *ndev; + struct mana_ib_wq *wq; + struct ib_wq *ibwq; + int i; + + mc = gd->driver_data; + ndev = mc->ports[qp->port - 1]; + mpc = netdev_priv(ndev); + + for (i = 0; i < (1 << ind_tbl->log_ind_tbl_size); i++) { + ibwq = ind_tbl->ind_tbl[i]; + wq = container_of(ibwq, struct mana_ib_wq, ibwq); + ibdev_dbg(&mdev->ib_dev, "destroying wq->rx_object %llu\n", + wq->rx_object); + mana_destroy_wq_obj(mpc, GDMA_RQ, wq->rx_object); + } + + return 0; +} + +static int mana_ib_destroy_qp_raw(struct mana_ib_qp *qp, struct ib_udata *udata) +{ + struct mana_ib_dev *mdev = + container_of(qp->ibqp.device, struct mana_ib_dev, ib_dev); + struct gdma_dev *gd = mdev->gdma_dev; + struct ib_pd *ibpd = qp->ibqp.pd; + struct mana_port_context *mpc; + struct mana_context *mc; + struct net_device *ndev; + struct mana_ib_pd *pd; + + mc = gd->driver_data; + ndev = mc->ports[qp->port - 1]; + mpc = netdev_priv(ndev); + pd = container_of(ibpd, struct mana_ib_pd, ibpd); + + mana_destroy_wq_obj(mpc, GDMA_SQ, qp->tx_object); + + if (qp->sq_umem) { + mana_ib_gd_destroy_dma_region(mdev, qp->sq_gdma_region); + ib_umem_release(qp->sq_umem); + } + + mana_ib_uncfg_vport(mdev, pd, qp->port - 1); + + return 0; +} + +int mana_ib_destroy_qp(struct ib_qp *ibqp, struct ib_udata *udata) +{ + struct mana_ib_qp *qp = container_of(ibqp, struct mana_ib_qp, ibqp); + + switch (ibqp->qp_type) { + case IB_QPT_RAW_PACKET: + if (ibqp->rwq_ind_tbl) + return mana_ib_destroy_qp_rss(qp, ibqp->rwq_ind_tbl, + udata); + + return mana_ib_destroy_qp_raw(qp, udata); + + default: + ibdev_dbg(ibqp->device, "Unexpected QP type %u\n", + ibqp->qp_type); + } + + return -ENOENT; +} diff --git a/drivers/infiniband/hw/mana/wq.c b/drivers/infiniband/hw/mana/wq.c new file mode 100644 index 0000000000000..372d361510e0c --- /dev/null +++ b/drivers/infiniband/hw/mana/wq.c @@ -0,0 +1,115 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * Copyright (c) 2022, Microsoft Corporation. All rights reserved. + */ + +#include "mana_ib.h" + +struct ib_wq *mana_ib_create_wq(struct ib_pd *pd, + struct ib_wq_init_attr *init_attr, + struct ib_udata *udata) +{ + struct mana_ib_dev *mdev = + container_of(pd->device, struct mana_ib_dev, ib_dev); + struct mana_ib_create_wq ucmd = {}; + struct mana_ib_wq *wq; + struct ib_umem *umem; + int err; + + if (udata->inlen < sizeof(ucmd)) + return ERR_PTR(-EINVAL); + + err = ib_copy_from_udata(&ucmd, udata, min(sizeof(ucmd), udata->inlen)); + if (err) { + ibdev_dbg(&mdev->ib_dev, + "Failed to copy from udata for create wq, %d\n", err); + return ERR_PTR(err); + } + + wq = kzalloc(sizeof(*wq), GFP_KERNEL); + if (!wq) + return ERR_PTR(-ENOMEM); + + ibdev_dbg(&mdev->ib_dev, "ucmd wq_buf_addr 0x%llx\n", ucmd.wq_buf_addr); + + umem = ib_umem_get(pd->device, ucmd.wq_buf_addr, ucmd.wq_buf_size, + IB_ACCESS_LOCAL_WRITE); + if (IS_ERR(umem)) { + err = PTR_ERR(umem); + ibdev_dbg(&mdev->ib_dev, + "Failed to get umem for create wq, err %d\n", err); + goto err_free_wq; + } + + wq->umem = umem; + wq->wqe = init_attr->max_wr; + wq->wq_buf_size = ucmd.wq_buf_size; + wq->rx_object = INVALID_MANA_HANDLE; + + err = mana_ib_gd_create_dma_region(mdev, wq->umem, &wq->gdma_region); + if (err) { + ibdev_dbg(&mdev->ib_dev, + "Failed to create dma region for create wq, %d\n", + err); + goto err_release_umem; + } + + ibdev_dbg(&mdev->ib_dev, + "mana_ib_gd_create_dma_region ret %d gdma_region 0x%llx\n", + err, wq->gdma_region); + + /* WQ ID is returned at wq_create time, doesn't know the value yet */ + + return &wq->ibwq; + +err_release_umem: + ib_umem_release(umem); + +err_free_wq: + kfree(wq); + + return ERR_PTR(err); +} + +int mana_ib_modify_wq(struct ib_wq *wq, struct ib_wq_attr *wq_attr, + u32 wq_attr_mask, struct ib_udata *udata) +{ + /* modify_wq is not supported by this version of the driver */ + return -EOPNOTSUPP; +} + +int mana_ib_destroy_wq(struct ib_wq *ibwq, struct ib_udata *udata) +{ + struct mana_ib_wq *wq = container_of(ibwq, struct mana_ib_wq, ibwq); + struct ib_device *ib_dev = ibwq->device; + struct mana_ib_dev *mdev; + + mdev = container_of(ib_dev, struct mana_ib_dev, ib_dev); + + mana_ib_gd_destroy_dma_region(mdev, wq->gdma_region); + ib_umem_release(wq->umem); + + kfree(wq); + + return 0; +} + +int mana_ib_create_rwq_ind_table(struct ib_rwq_ind_table *ib_rwq_ind_table, + struct ib_rwq_ind_table_init_attr *init_attr, + struct ib_udata *udata) +{ + /* + * There is no additional data in ind_table to be maintained by this + * driver, do nothing + */ + return 0; +} + +int mana_ib_destroy_rwq_ind_table(struct ib_rwq_ind_table *ib_rwq_ind_tbl) +{ + /* + * There is no additional data in ind_table to be maintained by this + * driver, do nothing + */ + return 0; +} diff --git a/drivers/infiniband/hw/mlx4/sysfs.c b/drivers/infiniband/hw/mlx4/sysfs.c index 24ee79aa2122e..88f534cf690e9 100644 --- a/drivers/infiniband/hw/mlx4/sysfs.c +++ b/drivers/infiniband/hw/mlx4/sysfs.c @@ -223,7 +223,7 @@ void del_sysfs_port_mcg_attr(struct mlx4_ib_dev *device, int port_num, static int add_port_entries(struct mlx4_ib_dev *device, int port_num) { int i; - char buff[11]; + char buff[12]; struct mlx4_ib_iov_port *port = NULL; int ret = 0 ; struct ib_port_attr attr; diff --git a/drivers/infiniband/hw/mlx5/main.c b/drivers/infiniband/hw/mlx5/main.c index 0ebd3c7b2d2a3..aa7a44ea49faf 100644 --- a/drivers/infiniband/hw/mlx5/main.c +++ b/drivers/infiniband/hw/mlx5/main.c @@ -2095,7 +2095,7 @@ static inline char *mmap_cmd2str(enum mlx5_ib_mmap_cmd cmd) case MLX5_IB_MMAP_DEVICE_MEM: return "Device Memory"; default: - return NULL; + return "Unknown"; } } diff --git a/drivers/infiniband/hw/mlx5/mr.c b/drivers/infiniband/hw/mlx5/mr.c index b938093ffa3fb..f69e3c8db5391 100644 --- a/drivers/infiniband/hw/mlx5/mr.c +++ b/drivers/infiniband/hw/mlx5/mr.c @@ -69,7 +69,6 @@ static void set_mkc_access_pd_addr_fields(void *mkc, int acc, u64 start_addr, struct ib_pd *pd) { struct mlx5_ib_dev *dev = to_mdev(pd->device); - bool ro_pci_enabled = pcie_relaxed_ordering_enabled(dev->mdev->pdev); MLX5_SET(mkc, mkc, a, !!(acc & IB_ACCESS_REMOTE_ATOMIC)); MLX5_SET(mkc, mkc, rw, !!(acc & IB_ACCESS_REMOTE_WRITE)); @@ -77,12 +76,13 @@ static void set_mkc_access_pd_addr_fields(void *mkc, int acc, u64 start_addr, MLX5_SET(mkc, mkc, lw, !!(acc & IB_ACCESS_LOCAL_WRITE)); MLX5_SET(mkc, mkc, lr, 1); - if (MLX5_CAP_GEN(dev->mdev, relaxed_ordering_write)) - MLX5_SET(mkc, mkc, relaxed_ordering_write, - (acc & IB_ACCESS_RELAXED_ORDERING) && ro_pci_enabled); - if (MLX5_CAP_GEN(dev->mdev, relaxed_ordering_read)) - MLX5_SET(mkc, mkc, relaxed_ordering_read, - (acc & IB_ACCESS_RELAXED_ORDERING) && ro_pci_enabled); + if (acc & IB_ACCESS_RELAXED_ORDERING) { + if (MLX5_CAP_GEN(dev->mdev, relaxed_ordering_write)) + MLX5_SET(mkc, mkc, relaxed_ordering_write, 1); + if (MLX5_CAP_GEN(dev->mdev, relaxed_ordering_read) && + pcie_relaxed_ordering_enabled(dev->mdev->pdev)) + MLX5_SET(mkc, mkc, relaxed_ordering_read, 1); + } MLX5_SET(mkc, mkc, pd, to_mpd(pd)->pdn); MLX5_SET(mkc, mkc, qpn, 0xffffff); diff --git a/drivers/infiniband/hw/mlx5/qp.c b/drivers/infiniband/hw/mlx5/qp.c index 3d9afcd245b80..b71cfe1331aaf 100644 --- a/drivers/infiniband/hw/mlx5/qp.c +++ b/drivers/infiniband/hw/mlx5/qp.c @@ -3956,6 +3956,30 @@ static unsigned int get_tx_affinity(struct ib_qp *qp, return tx_affinity; } +static int __mlx5_ib_qp_set_raw_qp_counter(struct mlx5_ib_qp *qp, u32 set_id, + struct mlx5_core_dev *mdev) +{ + struct mlx5_ib_raw_packet_qp *raw_packet_qp = &qp->raw_packet_qp; + struct mlx5_ib_rq *rq = &raw_packet_qp->rq; + u32 in[MLX5_ST_SZ_DW(modify_rq_in)] = {}; + void *rqc; + + if (!qp->rq.wqe_cnt) + return 0; + + MLX5_SET(modify_rq_in, in, rq_state, rq->state); + MLX5_SET(modify_rq_in, in, uid, to_mpd(qp->ibqp.pd)->uid); + + rqc = MLX5_ADDR_OF(modify_rq_in, in, ctx); + MLX5_SET(rqc, rqc, state, MLX5_RQC_STATE_RDY); + + MLX5_SET64(modify_rq_in, in, modify_bitmask, + MLX5_MODIFY_RQ_IN_MODIFY_BITMASK_RQ_COUNTER_SET_ID); + MLX5_SET(rqc, rqc, counter_set_id, set_id); + + return mlx5_core_modify_rq(mdev, rq->base.mqp.qpn, in); +} + static int __mlx5_ib_qp_set_counter(struct ib_qp *qp, struct rdma_counter *counter) { @@ -3971,6 +3995,9 @@ static int __mlx5_ib_qp_set_counter(struct ib_qp *qp, else set_id = mlx5_ib_get_counters_id(dev, mqp->port - 1); + if (mqp->type == IB_QPT_RAW_PACKET) + return __mlx5_ib_qp_set_raw_qp_counter(mqp, set_id, dev->mdev); + base = &mqp->trans_qp.base; MLX5_SET(rts2rts_qp_in, in, opcode, MLX5_CMD_OP_RTS2RTS_QP); MLX5_SET(rts2rts_qp_in, in, qpn, base->mqp.qpn); diff --git a/drivers/infiniband/sw/siw/siw_cm.c b/drivers/infiniband/sw/siw/siw_cm.c index 69d639cab8985..ecd19a7408679 100644 --- a/drivers/infiniband/sw/siw/siw_cm.c +++ b/drivers/infiniband/sw/siw/siw_cm.c @@ -973,6 +973,7 @@ static void siw_accept_newconn(struct siw_cep *cep) siw_cep_put(cep); new_cep->listen_cep = NULL; if (rv) { + siw_cancel_mpatimer(new_cep); siw_cep_set_free(new_cep); goto error; } @@ -1097,9 +1098,12 @@ static void siw_cm_work_handler(struct work_struct *w) /* * Socket close before MPA request received. */ - siw_dbg_cep(cep, "no mpareq: drop listener\n"); - siw_cep_put(cep->listen_cep); - cep->listen_cep = NULL; + if (cep->listen_cep) { + siw_dbg_cep(cep, + "no mpareq: drop listener\n"); + siw_cep_put(cep->listen_cep); + cep->listen_cep = NULL; + } } } release_cep = 1; @@ -1222,7 +1226,11 @@ static void siw_cm_llp_data_ready(struct sock *sk) if (!cep) goto out; - siw_dbg_cep(cep, "state: %d\n", cep->state); + siw_dbg_cep(cep, "cep state: %d, socket state %d\n", + cep->state, sk->sk_state); + + if (sk->sk_state != TCP_ESTABLISHED) + goto out; switch (cep->state) { case SIW_EPSTATE_RDMA_MODE: diff --git a/drivers/infiniband/ulp/isert/ib_isert.c b/drivers/infiniband/ulp/isert/ib_isert.c index b71711defb81d..6082695a02d88 100644 --- a/drivers/infiniband/ulp/isert/ib_isert.c +++ b/drivers/infiniband/ulp/isert/ib_isert.c @@ -2570,6 +2570,8 @@ static void isert_wait_conn(struct iscsi_conn *conn) isert_put_unsol_pending_cmds(conn); isert_wait4cmds(conn); isert_wait4logout(isert_conn); + + queue_work(isert_release_wq, &isert_conn->release_work); } static void isert_free_conn(struct iscsi_conn *conn) diff --git a/drivers/infiniband/ulp/rtrs/rtrs-clt.c b/drivers/infiniband/ulp/rtrs/rtrs-clt.c index afe8670f9e555..3f4ef6e4a89be 100644 --- a/drivers/infiniband/ulp/rtrs/rtrs-clt.c +++ b/drivers/infiniband/ulp/rtrs/rtrs-clt.c @@ -383,7 +383,7 @@ static void complete_rdma_req(struct rtrs_clt_io_req *req, int errno, struct rtrs_clt_path *clt_path; int err; - if (WARN_ON(!req->in_use)) + if (!req->in_use) return; if (WARN_ON(!req->con)) return; @@ -1682,7 +1682,7 @@ static int create_con_cq_qp(struct rtrs_clt_con *con) clt_path->s.dev_ref++; max_send_wr = min_t(int, wr_limit, /* QD * (REQ + RSP + FR REGS or INVS) + drain */ - clt_path->queue_depth * 3 + 1); + clt_path->queue_depth * 4 + 1); max_recv_wr = min_t(int, wr_limit, clt_path->queue_depth * 3 + 1); max_send_sge = 2; @@ -2341,8 +2341,6 @@ static int init_conns(struct rtrs_clt_path *clt_path) if (err) goto destroy; - rtrs_start_hb(&clt_path->s); - return 0; destroy: @@ -2616,6 +2614,7 @@ static int init_path(struct rtrs_clt_path *clt_path) goto out; } rtrs_clt_path_up(clt_path); + rtrs_start_hb(&clt_path->s); out: mutex_unlock(&clt_path->init_mutex); diff --git a/drivers/infiniband/ulp/rtrs/rtrs-srv.c b/drivers/infiniband/ulp/rtrs/rtrs-srv.c index 733116554e0bc..27bf2b2da9fd6 100644 --- a/drivers/infiniband/ulp/rtrs/rtrs-srv.c +++ b/drivers/infiniband/ulp/rtrs/rtrs-srv.c @@ -72,8 +72,9 @@ static bool rtrs_srv_change_state(struct rtrs_srv_path *srv_path, { enum rtrs_srv_state old_state; bool changed = false; + unsigned long flags; - spin_lock_irq(&srv_path->state_lock); + spin_lock_irqsave(&srv_path->state_lock, flags); old_state = srv_path->state; switch (new_state) { case RTRS_SRV_CONNECTED: @@ -94,7 +95,7 @@ static bool rtrs_srv_change_state(struct rtrs_srv_path *srv_path, } if (changed) srv_path->state = new_state; - spin_unlock_irq(&srv_path->state_lock); + spin_unlock_irqrestore(&srv_path->state_lock, flags); return changed; } @@ -555,7 +556,10 @@ static void unmap_cont_bufs(struct rtrs_srv_path *srv_path) struct rtrs_srv_mr *srv_mr; srv_mr = &srv_path->mrs[i]; - rtrs_iu_free(srv_mr->iu, srv_path->s.dev->ib_dev, 1); + + if (always_invalidate) + rtrs_iu_free(srv_mr->iu, srv_path->s.dev->ib_dev, 1); + ib_dereg_mr(srv_mr->mr); ib_dma_unmap_sg(srv_path->s.dev->ib_dev, srv_mr->sgt.sgl, srv_mr->sgt.nents, DMA_BIDIRECTIONAL); @@ -721,20 +725,23 @@ static void rtrs_srv_info_rsp_done(struct ib_cq *cq, struct ib_wc *wc) WARN_ON(wc->opcode != IB_WC_SEND); } -static void rtrs_srv_path_up(struct rtrs_srv_path *srv_path) +static int rtrs_srv_path_up(struct rtrs_srv_path *srv_path) { struct rtrs_srv *srv = srv_path->srv; struct rtrs_srv_ctx *ctx = srv->ctx; - int up; + int up, ret = 0; mutex_lock(&srv->paths_ev_mutex); up = ++srv->paths_up; if (up == 1) - ctx->ops.link_ev(srv, RTRS_SRV_LINK_EV_CONNECTED, NULL); + ret = ctx->ops.link_ev(srv, RTRS_SRV_LINK_EV_CONNECTED, NULL); mutex_unlock(&srv->paths_ev_mutex); /* Mark session as established */ - srv_path->established = true; + if (!ret) + srv_path->established = true; + + return ret; } static void rtrs_srv_path_down(struct rtrs_srv_path *srv_path) @@ -863,7 +870,12 @@ static int process_info_req(struct rtrs_srv_con *con, goto iu_free; kobject_get(&srv_path->kobj); get_device(&srv_path->srv->dev); - rtrs_srv_change_state(srv_path, RTRS_SRV_CONNECTED); + err = rtrs_srv_change_state(srv_path, RTRS_SRV_CONNECTED); + if (!err) { + rtrs_err(s, "rtrs_srv_change_state(), err: %d\n", err); + goto iu_free; + } + rtrs_srv_start_hb(srv_path); /* @@ -872,7 +884,11 @@ static int process_info_req(struct rtrs_srv_con *con, * all connections are successfully established. Thus, simply notify * listener with a proper event if we are the first path. */ - rtrs_srv_path_up(srv_path); + err = rtrs_srv_path_up(srv_path); + if (err) { + rtrs_err(s, "rtrs_srv_path_up(), err: %d\n", err); + goto iu_free; + } ib_dma_sync_single_for_device(srv_path->s.dev->ib_dev, tx_iu->dma_addr, @@ -1525,7 +1541,6 @@ static void rtrs_srv_close_work(struct work_struct *work) srv_path = container_of(work, typeof(*srv_path), close_work); - rtrs_srv_destroy_path_files(srv_path); rtrs_srv_stop_hb(srv_path); for (i = 0; i < srv_path->s.con_num; i++) { @@ -1545,6 +1560,8 @@ static void rtrs_srv_close_work(struct work_struct *work) /* Wait for all completion */ wait_for_completion(&srv_path->complete_done); + rtrs_srv_destroy_path_files(srv_path); + /* Notify upper layer if we are the last path */ rtrs_srv_path_down(srv_path); diff --git a/drivers/infiniband/ulp/srp/ib_srp.c b/drivers/infiniband/ulp/srp/ib_srp.c index a6117a7d0ab17..2938d7040f907 100644 --- a/drivers/infiniband/ulp/srp/ib_srp.c +++ b/drivers/infiniband/ulp/srp/ib_srp.c @@ -1266,7 +1266,7 @@ static void srp_finish_req(struct srp_rdma_ch *ch, struct srp_request *req, if (scmnd) { srp_free_req(ch, req, scmnd, 0); scmnd->result = result; - scmnd->scsi_done(scmnd); + scsi_done(scmnd); } } @@ -1978,17 +1978,13 @@ static void srp_process_rsp(struct srp_rdma_ch *ch, struct srp_rsp *rsp) if (unlikely(rsp->flags & SRP_RSP_FLAG_DIUNDER)) scsi_set_resid(scmnd, be32_to_cpu(rsp->data_in_res_cnt)); - else if (unlikely(rsp->flags & SRP_RSP_FLAG_DIOVER)) - scsi_set_resid(scmnd, -be32_to_cpu(rsp->data_in_res_cnt)); else if (unlikely(rsp->flags & SRP_RSP_FLAG_DOUNDER)) scsi_set_resid(scmnd, be32_to_cpu(rsp->data_out_res_cnt)); - else if (unlikely(rsp->flags & SRP_RSP_FLAG_DOOVER)) - scsi_set_resid(scmnd, -be32_to_cpu(rsp->data_out_res_cnt)); srp_free_req(ch, req, scmnd, be32_to_cpu(rsp->req_lim_delta)); - scmnd->scsi_done(scmnd); + scsi_done(scmnd); } } @@ -2240,7 +2236,7 @@ static int srp_queuecommand(struct Scsi_Host *shost, struct scsi_cmnd *scmnd) err: if (scmnd->result) { - scmnd->scsi_done(scmnd); + scsi_done(scmnd); ret = 0; } else { ret = SCSI_MLQUEUE_HOST_BUSY; @@ -2787,7 +2783,6 @@ static int srp_abort(struct scsi_cmnd *scmnd) u32 tag; u16 ch_idx; struct srp_rdma_ch *ch; - int ret; shost_printk(KERN_ERR, target->scsi_host, "SRP abort called\n"); @@ -2801,19 +2796,14 @@ static int srp_abort(struct scsi_cmnd *scmnd) shost_printk(KERN_ERR, target->scsi_host, "Sending SRP abort for tag %#x\n", tag); if (srp_send_tsk_mgmt(ch, tag, scmnd->device->lun, - SRP_TSK_ABORT_TASK, NULL) == 0) - ret = SUCCESS; - else if (target->rport->state == SRP_RPORT_LOST) - ret = FAST_IO_FAIL; - else - ret = FAILED; - if (ret == SUCCESS) { + SRP_TSK_ABORT_TASK, NULL) == 0) { srp_free_req(ch, req, scmnd, 0); - scmnd->result = DID_ABORT << 16; - scmnd->scsi_done(scmnd); + return SUCCESS; } + if (target->rport->state == SRP_RPORT_LOST) + return FAST_IO_FAIL; - return ret; + return FAILED; } static int srp_reset_device(struct scsi_cmnd *scmnd) diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c index 57947874f26f3..3bf5c787f9149 100644 --- a/drivers/input/joystick/xpad.c +++ b/drivers/input/joystick/xpad.c @@ -120,6 +120,7 @@ static const struct xpad_device { { 0x044f, 0x0f07, "Thrustmaster, Inc. Controller", 0, XTYPE_XBOX }, { 0x044f, 0x0f10, "Thrustmaster Modena GT Wheel", 0, XTYPE_XBOX }, { 0x044f, 0xb326, "Thrustmaster Gamepad GP XID", 0, XTYPE_XBOX360 }, + { 0x03f0, 0x0495, "HyperX Clutch Gladiate", 0, XTYPE_XBOXONE }, { 0x045e, 0x0202, "Microsoft X-Box pad v1 (US)", 0, XTYPE_XBOX }, { 0x045e, 0x0285, "Microsoft X-Box pad (Japan)", 0, XTYPE_XBOX }, { 0x045e, 0x0287, "Microsoft Xbox Controller S", 0, XTYPE_XBOX }, @@ -254,6 +255,7 @@ static const struct xpad_device { { 0x1038, 0x1430, "SteelSeries Stratus Duo", 0, XTYPE_XBOX360 }, { 0x1038, 0x1431, "SteelSeries Stratus Duo", 0, XTYPE_XBOX360 }, { 0x11c9, 0x55f0, "Nacon GC-100XF", 0, XTYPE_XBOX360 }, + { 0x11ff, 0x0511, "PXN V900", 0, XTYPE_XBOX360 }, { 0x1209, 0x2882, "Ardwiino Controller", 0, XTYPE_XBOX360 }, { 0x12ab, 0x0004, "Honey Bee Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 }, { 0x12ab, 0x0301, "PDP AFTERGLOW AX.1", 0, XTYPE_XBOX360 }, @@ -433,6 +435,7 @@ static const struct usb_device_id xpad_table[] = { XPAD_XBOX360_VENDOR(0x0079), /* GPD Win 2 Controller */ XPAD_XBOX360_VENDOR(0x03eb), /* Wooting Keyboards (Legacy) */ XPAD_XBOX360_VENDOR(0x044f), /* Thrustmaster X-Box 360 controllers */ + XPAD_XBOXONE_VENDOR(0x03f0), /* HP HyperX Xbox One Controllers */ XPAD_XBOX360_VENDOR(0x045e), /* Microsoft X-Box 360 controllers */ XPAD_XBOXONE_VENDOR(0x045e), /* Microsoft X-Box One controllers */ XPAD_XBOX360_VENDOR(0x046d), /* Logitech X-Box 360 style controllers */ @@ -448,7 +451,9 @@ static const struct usb_device_id xpad_table[] = { XPAD_XBOX360_VENDOR(0x0f0d), /* Hori Controllers */ XPAD_XBOXONE_VENDOR(0x0f0d), /* Hori Controllers */ XPAD_XBOX360_VENDOR(0x1038), /* SteelSeries Controllers */ + XPAD_XBOXONE_VENDOR(0x10f5), /* Turtle Beach Controllers */ XPAD_XBOX360_VENDOR(0x11c9), /* Nacon GC100XF */ + XPAD_XBOX360_VENDOR(0x11ff), /* PXN V900 */ XPAD_XBOX360_VENDOR(0x1209), /* Ardwiino Controllers */ XPAD_XBOX360_VENDOR(0x12ab), /* X-Box 360 dance pads */ XPAD_XBOX360_VENDOR(0x1430), /* RedOctane X-Box 360 controllers */ diff --git a/drivers/input/keyboard/tca6416-keypad.c b/drivers/input/keyboard/tca6416-keypad.c index 2a97559100652..508d84f6d00cb 100644 --- a/drivers/input/keyboard/tca6416-keypad.c +++ b/drivers/input/keyboard/tca6416-keypad.c @@ -148,7 +148,7 @@ static int tca6416_keys_open(struct input_dev *dev) if (chip->use_polling) schedule_delayed_work(&chip->dwork, msecs_to_jiffies(100)); else - enable_irq(chip->irqnum); + enable_irq(chip->client->irq); return 0; } @@ -160,7 +160,7 @@ static void tca6416_keys_close(struct input_dev *dev) if (chip->use_polling) cancel_delayed_work_sync(&chip->dwork); else - disable_irq(chip->irqnum); + disable_irq(chip->client->irq); } static int tca6416_setup_registers(struct tca6416_keypad_chip *chip) @@ -266,12 +266,7 @@ static int tca6416_keypad_probe(struct i2c_client *client, goto fail1; if (!chip->use_polling) { - if (pdata->irq_is_gpio) - chip->irqnum = gpio_to_irq(client->irq); - else - chip->irqnum = client->irq; - - error = request_threaded_irq(chip->irqnum, NULL, + error = request_threaded_irq(client->irq, NULL, tca6416_keys_isr, IRQF_TRIGGER_FALLING | IRQF_ONESHOT | IRQF_NO_AUTOEN, @@ -279,7 +274,7 @@ static int tca6416_keypad_probe(struct i2c_client *client, if (error) { dev_dbg(&client->dev, "Unable to claim irq %d; error %d\n", - chip->irqnum, error); + client->irq, error); goto fail1; } } @@ -297,10 +292,8 @@ static int tca6416_keypad_probe(struct i2c_client *client, return 0; fail2: - if (!chip->use_polling) { - free_irq(chip->irqnum, chip); - enable_irq(chip->irqnum); - } + if (!chip->use_polling) + free_irq(client->irq, chip); fail1: input_free_device(input); kfree(chip); @@ -311,10 +304,8 @@ static int tca6416_keypad_remove(struct i2c_client *client) { struct tca6416_keypad_chip *chip = i2c_get_clientdata(client); - if (!chip->use_polling) { - free_irq(chip->irqnum, chip); - enable_irq(chip->irqnum); - } + if (!chip->use_polling) + free_irq(client->irq, chip); input_unregister_device(chip->input); kfree(chip); @@ -326,10 +317,9 @@ static int tca6416_keypad_remove(struct i2c_client *client) static int tca6416_keypad_suspend(struct device *dev) { struct i2c_client *client = to_i2c_client(dev); - struct tca6416_keypad_chip *chip = i2c_get_clientdata(client); if (device_may_wakeup(dev)) - enable_irq_wake(chip->irqnum); + enable_irq_wake(client->irq); return 0; } @@ -337,10 +327,9 @@ static int tca6416_keypad_suspend(struct device *dev) static int tca6416_keypad_resume(struct device *dev) { struct i2c_client *client = to_i2c_client(dev); - struct tca6416_keypad_chip *chip = i2c_get_clientdata(client); if (device_may_wakeup(dev)) - disable_irq_wake(chip->irqnum); + disable_irq_wake(client->irq); return 0; } diff --git a/drivers/input/misc/powermate.c b/drivers/input/misc/powermate.c index c4e0e1886061f..6b1b95d58e6b5 100644 --- a/drivers/input/misc/powermate.c +++ b/drivers/input/misc/powermate.c @@ -425,6 +425,7 @@ static void powermate_disconnect(struct usb_interface *intf) pm->requires_update = 0; usb_kill_urb(pm->irq); input_unregister_device(pm->input); + usb_kill_urb(pm->config); usb_free_urb(pm->irq); usb_free_urb(pm->config); powermate_free_buffers(interface_to_usbdev(intf), pm); diff --git a/drivers/input/mouse/elantech.c b/drivers/input/mouse/elantech.c index 2118b2075f437..4e38229404b4b 100644 --- a/drivers/input/mouse/elantech.c +++ b/drivers/input/mouse/elantech.c @@ -2114,6 +2114,7 @@ static int elantech_setup_ps2(struct psmouse *psmouse, psmouse->protocol_handler = elantech_process_byte; psmouse->disconnect = elantech_disconnect; psmouse->reconnect = elantech_reconnect; + psmouse->fast_reconnect = NULL; psmouse->pktsize = info->hw_version > 1 ? 6 : 4; return 0; diff --git a/drivers/input/mouse/synaptics.c b/drivers/input/mouse/synaptics.c index ffad142801b39..c3a341c16d45a 100644 --- a/drivers/input/mouse/synaptics.c +++ b/drivers/input/mouse/synaptics.c @@ -1622,6 +1622,7 @@ static int synaptics_init_ps2(struct psmouse *psmouse, psmouse->set_rate = synaptics_set_rate; psmouse->disconnect = synaptics_disconnect; psmouse->reconnect = synaptics_reconnect; + psmouse->fast_reconnect = NULL; psmouse->cleanup = synaptics_reset; /* Synaptics can usually stay in sync without extra help */ psmouse->resync_time = 0; @@ -1751,6 +1752,7 @@ static int synaptics_create_intertouch(struct psmouse *psmouse, psmouse_matches_pnp_id(psmouse, topbuttonpad_pnp_ids) && !SYN_CAP_EXT_BUTTONS_STICK(info->ext_cap_10); const struct rmi_device_platform_data pdata = { + .reset_delay_ms = 30, .sensor_pdata = { .sensor_type = rmi_sensor_touchpad, .axis_align.flip_y = true, diff --git a/drivers/input/rmi4/rmi_bus.c b/drivers/input/rmi4/rmi_bus.c index 24f31a5c0e04a..014bb40e84236 100644 --- a/drivers/input/rmi4/rmi_bus.c +++ b/drivers/input/rmi4/rmi_bus.c @@ -276,11 +276,11 @@ void rmi_unregister_function(struct rmi_function *fn) device_del(&fn->dev); of_node_put(fn->dev.of_node); - put_device(&fn->dev); for (i = 0; i < fn->num_of_irqs; i++) irq_dispose_mapping(fn->irq[i]); + put_device(&fn->dev); } /** diff --git a/drivers/input/rmi4/rmi_smbus.c b/drivers/input/rmi4/rmi_smbus.c index 2407ea43de59b..f38bf9a5f599d 100644 --- a/drivers/input/rmi4/rmi_smbus.c +++ b/drivers/input/rmi4/rmi_smbus.c @@ -235,12 +235,29 @@ static void rmi_smb_clear_state(struct rmi_smb_xport *rmi_smb) static int rmi_smb_enable_smbus_mode(struct rmi_smb_xport *rmi_smb) { - int retval; + struct i2c_client *client = rmi_smb->client; + int smbus_version; + + /* + * psmouse driver resets the controller, we only need to wait + * to give the firmware chance to fully reinitialize. + */ + if (rmi_smb->xport.pdata.reset_delay_ms) + msleep(rmi_smb->xport.pdata.reset_delay_ms); /* we need to get the smbus version to activate the touchpad */ - retval = rmi_smb_get_version(rmi_smb); - if (retval < 0) - return retval; + smbus_version = rmi_smb_get_version(rmi_smb); + if (smbus_version < 0) + return smbus_version; + + rmi_dbg(RMI_DEBUG_XPORT, &client->dev, "Smbus version is %d", + smbus_version); + + if (smbus_version != 2 && smbus_version != 3) { + dev_err(&client->dev, "Unrecognized SMB version %d\n", + smbus_version); + return -ENODEV; + } return 0; } @@ -253,11 +270,10 @@ static int rmi_smb_reset(struct rmi_transport_dev *xport, u16 reset_addr) rmi_smb_clear_state(rmi_smb); /* - * we do not call the actual reset command, it has to be handled in - * PS/2 or there will be races between PS/2 and SMBus. - * PS/2 should ensure that a psmouse_reset is called before - * intializing the device and after it has been removed to be in a known - * state. + * We do not call the actual reset command, it has to be handled in + * PS/2 or there will be races between PS/2 and SMBus. PS/2 should + * ensure that a psmouse_reset is called before initializing the + * device and after it has been removed to be in a known state. */ return rmi_smb_enable_smbus_mode(rmi_smb); } @@ -273,7 +289,6 @@ static int rmi_smb_probe(struct i2c_client *client, { struct rmi_device_platform_data *pdata = dev_get_platdata(&client->dev); struct rmi_smb_xport *rmi_smb; - int smbus_version; int error; if (!pdata) { @@ -312,18 +327,9 @@ static int rmi_smb_probe(struct i2c_client *client, rmi_smb->xport.proto_name = "smb"; rmi_smb->xport.ops = &rmi_smb_ops; - smbus_version = rmi_smb_get_version(rmi_smb); - if (smbus_version < 0) - return smbus_version; - - rmi_dbg(RMI_DEBUG_XPORT, &client->dev, "Smbus version is %d", - smbus_version); - - if (smbus_version != 2 && smbus_version != 3) { - dev_err(&client->dev, "Unrecognized SMB version %d\n", - smbus_version); - return -ENODEV; - } + error = rmi_smb_enable_smbus_mode(rmi_smb); + if (error) + return error; i2c_set_clientdata(client, rmi_smb); diff --git a/drivers/input/serio/i8042-x86ia64io.h b/drivers/input/serio/i8042-acpipnpio.h similarity index 98% rename from drivers/input/serio/i8042-x86ia64io.h rename to drivers/input/serio/i8042-acpipnpio.h index 339e765bcf5ae..3db87ee0b70c7 100644 --- a/drivers/input/serio/i8042-x86ia64io.h +++ b/drivers/input/serio/i8042-acpipnpio.h @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -#ifndef _I8042_X86IA64IO_H -#define _I8042_X86IA64IO_H +#ifndef _I8042_ACPIPNPIO_H +#define _I8042_ACPIPNPIO_H #ifdef CONFIG_X86 @@ -609,6 +609,14 @@ static const struct dmi_system_id i8042_dmi_quirk_table[] __initconst = { }, .driver_data = (void *)(SERIO_QUIRK_NOMUX) }, + { + /* Fujitsu Lifebook E5411 */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU CLIENT COMPUTING LIMITED"), + DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E5411"), + }, + .driver_data = (void *)(SERIO_QUIRK_NOAUX) + }, { /* Gigabyte M912 */ .matches = { @@ -1244,6 +1252,13 @@ static const struct dmi_system_id i8042_dmi_quirk_table[] __initconst = { .driver_data = (void *)(SERIO_QUIRK_NOMUX | SERIO_QUIRK_RESET_ALWAYS | SERIO_QUIRK_NOLOOP | SERIO_QUIRK_NOPNP) }, + /* See comment on TUXEDO InfinityBook S17 Gen6 / Clevo NS70MU above */ + { + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "PD5x_7xPNP_PNR_PNN_PNT"), + }, + .driver_data = (void *)(SERIO_QUIRK_NOAUX) + }, { .matches = { DMI_MATCH(DMI_BOARD_NAME, "X170SM"), @@ -1647,4 +1662,4 @@ static inline void i8042_platform_exit(void) i8042_pnp_exit(); } -#endif /* _I8042_X86IA64IO_H */ +#endif /* _I8042_ACPIPNPIO_H */ diff --git a/drivers/input/serio/i8042.h b/drivers/input/serio/i8042.h index 55381783dc82d..bf2592fa9a783 100644 --- a/drivers/input/serio/i8042.h +++ b/drivers/input/serio/i8042.h @@ -20,7 +20,7 @@ #elif defined(CONFIG_SPARC) #include "i8042-sparcio.h" #elif defined(CONFIG_X86) || defined(CONFIG_IA64) -#include "i8042-x86ia64io.h" +#include "i8042-acpipnpio.h" #else #include "i8042-io.h" #endif diff --git a/drivers/input/touchscreen/cyttsp4_core.c b/drivers/input/touchscreen/cyttsp4_core.c index dccbcb942fe59..f999265896f44 100644 --- a/drivers/input/touchscreen/cyttsp4_core.c +++ b/drivers/input/touchscreen/cyttsp4_core.c @@ -1263,9 +1263,8 @@ static void cyttsp4_stop_wd_timer(struct cyttsp4 *cd) * Ensure we wait until the watchdog timer * running on a different CPU finishes */ - del_timer_sync(&cd->watchdog_timer); + timer_shutdown_sync(&cd->watchdog_timer); cancel_work_sync(&cd->watchdog_work); - del_timer_sync(&cd->watchdog_timer); } static void cyttsp4_watchdog_timer(struct timer_list *t) diff --git a/drivers/input/touchscreen/goodix.c b/drivers/input/touchscreen/goodix.c index 166d36b2626e9..1492f051331ac 100644 --- a/drivers/input/touchscreen/goodix.c +++ b/drivers/input/touchscreen/goodix.c @@ -786,6 +786,25 @@ static int goodix_add_acpi_gpio_mappings(struct goodix_ts_data *ts) dev_info(dev, "No ACPI GpioInt resource, assuming that the GPIO order is reset, int\n"); ts->irq_pin_access_method = IRQ_PIN_ACCESS_ACPI_GPIO; gpio_mapping = acpi_goodix_int_last_gpios; + } else if (ts->gpio_count == 1 && ts->gpio_int_idx == 0) { + /* + * On newer devices there is only 1 GpioInt resource and _PS0 + * does the whole reset sequence for us. + */ + acpi_device_fix_up_power(ACPI_COMPANION(dev)); + + /* + * Before the _PS0 call the int GPIO may have been in output + * mode and the call should have put the int GPIO in input mode, + * but the GPIO subsys cached state may still think it is + * in output mode, causing gpiochip_lock_as_irq() failure. + * + * Add a mapping for the int GPIO to make the + * gpiod_int = gpiod_get(..., GPIOD_IN) call succeed, + * which will explicitly set the direction to input. + */ + ts->irq_pin_access_method = IRQ_PIN_ACCESS_NONE; + gpio_mapping = acpi_goodix_int_first_gpios; } else { dev_warn(dev, "Unexpected ACPI resources: gpio_count %d, gpio_int_idx %d\n", ts->gpio_count, ts->gpio_int_idx); diff --git a/drivers/interconnect/core.c b/drivers/interconnect/core.c index 14d785e5629e6..b7c41bd7409cd 100644 --- a/drivers/interconnect/core.c +++ b/drivers/interconnect/core.c @@ -13,6 +13,7 @@ #include #include #include +#include #include #include #include @@ -29,6 +30,7 @@ static LIST_HEAD(icc_providers); static int providers_count; static bool synced_state; static DEFINE_MUTEX(icc_lock); +static DEFINE_MUTEX(icc_bw_lock); static struct dentry *icc_debugfs_dir; static void icc_summary_show_one(struct seq_file *s, struct icc_node *n) @@ -632,7 +634,7 @@ int icc_set_bw(struct icc_path *path, u32 avg_bw, u32 peak_bw) if (WARN_ON(IS_ERR(path) || !path->num_nodes)) return -EINVAL; - mutex_lock(&icc_lock); + mutex_lock(&icc_bw_lock); old_avg = path->reqs[0].avg_bw; old_peak = path->reqs[0].peak_bw; @@ -664,7 +666,7 @@ int icc_set_bw(struct icc_path *path, u32 avg_bw, u32 peak_bw) apply_constraints(path); } - mutex_unlock(&icc_lock); + mutex_unlock(&icc_bw_lock); trace_icc_set_bw_end(path, ret); @@ -967,6 +969,7 @@ void icc_node_add(struct icc_node *node, struct icc_provider *provider) return; mutex_lock(&icc_lock); + mutex_lock(&icc_bw_lock); node->provider = provider; list_add_tail(&node->node_list, &provider->nodes); @@ -992,6 +995,7 @@ void icc_node_add(struct icc_node *node, struct icc_provider *provider) node->avg_bw = 0; node->peak_bw = 0; + mutex_unlock(&icc_bw_lock); mutex_unlock(&icc_lock); } EXPORT_SYMBOL_GPL(icc_node_add); @@ -1119,6 +1123,7 @@ void icc_sync_state(struct device *dev) return; mutex_lock(&icc_lock); + mutex_lock(&icc_bw_lock); synced_state = true; list_for_each_entry(p, &icc_providers, provider_list) { dev_dbg(p->dev, "interconnect provider is in synced state\n"); @@ -1131,13 +1136,21 @@ void icc_sync_state(struct device *dev) } } } + mutex_unlock(&icc_bw_lock); mutex_unlock(&icc_lock); } EXPORT_SYMBOL_GPL(icc_sync_state); static int __init icc_init(void) { - struct device_node *root = of_find_node_by_path("/"); + struct device_node *root; + + /* Teach lockdep about lock ordering wrt. shrinker: */ + fs_reclaim_acquire(GFP_KERNEL); + might_lock(&icc_bw_lock); + fs_reclaim_release(GFP_KERNEL); + + root = of_find_node_by_path("/"); providers_count = of_count_icc_providers(root); of_node_put(root); diff --git a/drivers/iommu/amd/iommu.c b/drivers/iommu/amd/iommu.c index d9251af7f3cf6..1394a84d2690c 100644 --- a/drivers/iommu/amd/iommu.c +++ b/drivers/iommu/amd/iommu.c @@ -31,6 +31,7 @@ #include #include #include +#include #include #include #include @@ -2240,7 +2241,7 @@ static int amd_iommu_def_domain_type(struct device *dev) * active, because some of those devices (AMD GPUs) don't have the * encryption bit in their DMA-mask and require remapping. */ - if (!mem_encrypt_active() && dev_data->iommu_v2) + if (!cc_platform_has(CC_ATTR_MEM_ENCRYPT) && dev_data->iommu_v2) return IOMMU_DOMAIN_IDENTITY; return 0; diff --git a/drivers/iommu/amd/iommu_v2.c b/drivers/iommu/amd/iommu_v2.c index c96cf9b217197..cb2632521e7b5 100644 --- a/drivers/iommu/amd/iommu_v2.c +++ b/drivers/iommu/amd/iommu_v2.c @@ -17,6 +17,7 @@ #include #include #include +#include #include "amd_iommu.h" @@ -264,8 +265,8 @@ static void put_pasid_state(struct pasid_state *pasid_state) static void put_pasid_state_wait(struct pasid_state *pasid_state) { - refcount_dec(&pasid_state->count); - wait_event(pasid_state->wq, !refcount_read(&pasid_state->count)); + if (!refcount_dec_and_test(&pasid_state->count)) + wait_event(pasid_state->wq, !refcount_read(&pasid_state->count)); free_pasid_state(pasid_state); } @@ -743,7 +744,7 @@ int amd_iommu_init_device(struct pci_dev *pdev, int pasids) * When memory encryption is active the device is likely not in a * direct-mapped domain. Forbid using IOMMUv2 functionality for now. */ - if (mem_encrypt_active()) + if (cc_platform_has(CC_ATTR_MEM_ENCRYPT)) return -ENODEV; if (!amd_iommu_v2_supported()) diff --git a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3-sva.c b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3-sva.c index e2e80eb2840ca..01748742c6842 100644 --- a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3-sva.c +++ b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3-sva.c @@ -186,6 +186,15 @@ static void arm_smmu_free_shared_cd(struct arm_smmu_ctx_desc *cd) } } +/* + * Cloned from the MAX_TLBI_OPS in arch/arm64/include/asm/tlbflush.h, this + * is used as a threshold to replace per-page TLBI commands to issue in the + * command queue with an address-space TLBI command, when SMMU w/o a range + * invalidation feature handles too many per-page TLBI commands, which will + * otherwise result in a soft lockup. + */ +#define CMDQ_MAX_TLBI_OPS (1 << (PAGE_SHIFT - 3)) + static void arm_smmu_mm_invalidate_range(struct mmu_notifier *mn, struct mm_struct *mm, unsigned long start, unsigned long end) @@ -200,10 +209,22 @@ static void arm_smmu_mm_invalidate_range(struct mmu_notifier *mn, * range. So do a simple translation here by calculating size correctly. */ size = end - start; + if (!(smmu_domain->smmu->features & ARM_SMMU_FEAT_RANGE_INV)) { + if (size >= CMDQ_MAX_TLBI_OPS * PAGE_SIZE) + size = 0; + } + + if (!(smmu_domain->smmu->features & ARM_SMMU_FEAT_BTM)) { + if (!size) + arm_smmu_tlb_inv_asid(smmu_domain->smmu, + smmu_mn->cd->asid); + else + arm_smmu_tlb_inv_range_asid(start, size, + smmu_mn->cd->asid, + PAGE_SIZE, false, + smmu_domain); + } - if (!(smmu_domain->smmu->features & ARM_SMMU_FEAT_BTM)) - arm_smmu_tlb_inv_range_asid(start, size, smmu_mn->cd->asid, - PAGE_SIZE, false, smmu_domain); arm_smmu_atc_inv_domain(smmu_domain, mm->pasid, start, size); } diff --git a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c index 340ef116d574a..761cb657f2561 100644 --- a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c +++ b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c @@ -1881,13 +1881,23 @@ static void __arm_smmu_tlb_inv_range(struct arm_smmu_cmdq_ent *cmd, /* Get the leaf page size */ tg = __ffs(smmu_domain->domain.pgsize_bitmap); + num_pages = size >> tg; + /* Convert page size of 12,14,16 (log2) to 1,2,3 */ cmd->tlbi.tg = (tg - 10) / 2; - /* Determine what level the granule is at */ - cmd->tlbi.ttl = 4 - ((ilog2(granule) - 3) / (tg - 3)); - - num_pages = size >> tg; + /* + * Determine what level the granule is at. For non-leaf, both + * io-pgtable and SVA pass a nominal last-level granule because + * they don't know what level(s) actually apply, so ignore that + * and leave TTL=0. However for various errata reasons we still + * want to use a range command, so avoid the SVA corner case + * where both scale and num could be 0 as well. + */ + if (cmd->tlbi.leaf) + cmd->tlbi.ttl = 4 - ((ilog2(granule) - 3) / (tg - 3)); + else if ((num_pages & CMDQ_TLBI_RANGE_NUM_MAX) == 1) + num_pages++; } cmds.num = 0; diff --git a/drivers/iommu/arm/arm-smmu/qcom_iommu.c b/drivers/iommu/arm/arm-smmu/qcom_iommu.c index a47cb654b7048..9438203f08de7 100644 --- a/drivers/iommu/arm/arm-smmu/qcom_iommu.c +++ b/drivers/iommu/arm/arm-smmu/qcom_iommu.c @@ -273,6 +273,13 @@ static int qcom_iommu_init_domain(struct iommu_domain *domain, ctx->secure_init = true; } + /* Disable context bank before programming */ + iommu_writel(ctx, ARM_SMMU_CB_SCTLR, 0); + + /* Clear context bank fault address fault status registers */ + iommu_writel(ctx, ARM_SMMU_CB_FAR, 0); + iommu_writel(ctx, ARM_SMMU_CB_FSR, ARM_SMMU_FSR_FAULT); + /* TTBRs */ iommu_writeq(ctx, ARM_SMMU_CB_TTBR0, pgtbl_cfg.arm_lpae_s1_cfg.ttbr | diff --git a/drivers/iommu/intel/dmar.c b/drivers/iommu/intel/dmar.c index 7c20083d4a798..0ad33d8d99d1f 100644 --- a/drivers/iommu/intel/dmar.c +++ b/drivers/iommu/intel/dmar.c @@ -1518,6 +1518,15 @@ void qi_flush_dev_iotlb(struct intel_iommu *iommu, u16 sid, u16 pfsid, { struct qi_desc desc; + /* + * VT-d spec, section 4.3: + * + * Software is recommended to not submit any Device-TLB invalidation + * requests while address remapping hardware is disabled. + */ + if (!(iommu->gcmd & DMA_GCMD_TE)) + return; + if (mask) { addr |= (1ULL << (VTD_PAGE_SHIFT + mask - 1)) - 1; desc.qw1 = QI_DEV_IOTLB_ADDR(addr) | QI_DEV_IOTLB_SIZE; @@ -1583,6 +1592,15 @@ void qi_flush_dev_iotlb_pasid(struct intel_iommu *iommu, u16 sid, u16 pfsid, unsigned long mask = 1UL << (VTD_PAGE_SHIFT + size_order - 1); struct qi_desc desc = {.qw1 = 0, .qw2 = 0, .qw3 = 0}; + /* + * VT-d spec, section 4.3: + * + * Software is recommended to not submit any Device-TLB invalidation + * requests while address remapping hardware is disabled. + */ + if (!(iommu->gcmd & DMA_GCMD_TE)) + return; + desc.qw0 = QI_DEV_EIOTLB_PASID(pasid) | QI_DEV_EIOTLB_SID(sid) | QI_DEV_EIOTLB_QDEP(qdep) | QI_DEIOTLB_TYPE | QI_DEV_IOTLB_PFSID(pfsid); diff --git a/drivers/iommu/intel/iommu.c b/drivers/iommu/intel/iommu.c index b7e4297551005..f96bc40ee0dca 100644 --- a/drivers/iommu/intel/iommu.c +++ b/drivers/iommu/intel/iommu.c @@ -3554,13 +3554,6 @@ static int iommu_suspend(void) struct intel_iommu *iommu = NULL; unsigned long flag; - for_each_active_iommu(iommu, drhd) { - iommu->iommu_state = kcalloc(MAX_SR_DMAR_REGS, sizeof(u32), - GFP_KERNEL); - if (!iommu->iommu_state) - goto nomem; - } - iommu_flush_all(); for_each_active_iommu(iommu, drhd) { @@ -3580,12 +3573,6 @@ static int iommu_suspend(void) raw_spin_unlock_irqrestore(&iommu->register_lock, flag); } return 0; - -nomem: - for_each_active_iommu(iommu, drhd) - kfree(iommu->iommu_state); - - return -ENOMEM; } static void iommu_resume(void) @@ -3617,9 +3604,6 @@ static void iommu_resume(void) raw_spin_unlock_irqrestore(&iommu->register_lock, flag); } - - for_each_active_iommu(iommu, drhd) - kfree(iommu->iommu_state); } static struct syscore_ops iommu_syscore_ops = { @@ -4471,8 +4455,8 @@ static int domain_context_clear_one_cb(struct pci_dev *pdev, u16 alias, void *op */ static void domain_context_clear(struct device_domain_info *info) { - if (!info->iommu || !info->dev || !dev_is_pci(info->dev)) - return; + if (!dev_is_pci(info->dev)) + domain_context_clear_one(info, info->bus, info->devfn); pci_for_each_dma_alias(to_pci_dev(info->dev), &domain_context_clear_one_cb, info); @@ -5770,7 +5754,7 @@ static void quirk_igfx_skip_te_disable(struct pci_dev *dev) ver = (dev->device >> 8) & 0xff; if (ver != 0x45 && ver != 0x46 && ver != 0x4c && ver != 0x4e && ver != 0x8a && ver != 0x98 && - ver != 0x9a && ver != 0xa7) + ver != 0x9a && ver != 0xa7 && ver != 0x7d) return; if (risky_device(dev)) diff --git a/drivers/iommu/intel/pasid.c b/drivers/iommu/intel/pasid.c index bfd6e5a04c99e..ad33547b75555 100644 --- a/drivers/iommu/intel/pasid.c +++ b/drivers/iommu/intel/pasid.c @@ -127,7 +127,7 @@ int intel_pasid_alloc_table(struct device *dev) info->pasid_table = pasid_table; if (!ecap_coherent(info->iommu->ecap)) - clflush_cache_range(pasid_table->table, size); + clflush_cache_range(pasid_table->table, (1 << order) * PAGE_SIZE); return 0; } diff --git a/drivers/iommu/iommu.c b/drivers/iommu/iommu.c index d06dbf035c7c7..d6726202283a9 100644 --- a/drivers/iommu/iommu.c +++ b/drivers/iommu/iommu.c @@ -25,6 +25,7 @@ #include #include #include +#include #include static struct kset *iommu_group_kset; @@ -130,7 +131,7 @@ static int __init iommu_subsys_init(void) else iommu_set_default_translated(false); - if (iommu_default_passthrough() && mem_encrypt_active()) { + if (iommu_default_passthrough() && cc_platform_has(CC_ATTR_MEM_ENCRYPT)) { pr_info("Memory encryption detected - Disabling default IOMMU Passthrough\n"); iommu_set_default_translated(false); } diff --git a/drivers/iommu/rockchip-iommu.c b/drivers/iommu/rockchip-iommu.c index e3557f8dc44ea..f9f6492c430df 100644 --- a/drivers/iommu/rockchip-iommu.c +++ b/drivers/iommu/rockchip-iommu.c @@ -98,8 +98,6 @@ struct rk_iommu_ops { phys_addr_t (*pt_address)(u32 dte); u32 (*mk_dtentries)(dma_addr_t pt_dma); u32 (*mk_ptentries)(phys_addr_t page, int prot); - phys_addr_t (*dte_addr_phys)(u32 addr); - u32 (*dma_addr_dte)(dma_addr_t dt_dma); u64 dma_bit_mask; }; @@ -277,8 +275,8 @@ static u32 rk_mk_pte(phys_addr_t page, int prot) /* * In v2: * 31:12 - Page address bit 31:0 - * 11:9 - Page address bit 34:32 - * 8:4 - Page address bit 39:35 + * 11: 8 - Page address bit 35:32 + * 7: 4 - Page address bit 39:36 * 3 - Security * 2 - Writable * 1 - Readable @@ -505,7 +503,7 @@ static int rk_iommu_force_reset(struct rk_iommu *iommu) /* * Check if register DTE_ADDR is working by writing DTE_ADDR_DUMMY - * and verifying that upper 5 nybbles are read back. + * and verifying that upper 5 (v1) or 7 (v2) nybbles are read back. */ for (i = 0; i < iommu->num_mmu; i++) { dte_addr = rk_ops->pt_address(DTE_ADDR_DUMMY); @@ -530,33 +528,6 @@ static int rk_iommu_force_reset(struct rk_iommu *iommu) return 0; } -static inline phys_addr_t rk_dte_addr_phys(u32 addr) -{ - return (phys_addr_t)addr; -} - -static inline u32 rk_dma_addr_dte(dma_addr_t dt_dma) -{ - return dt_dma; -} - -#define DT_HI_MASK GENMASK_ULL(39, 32) -#define DTE_BASE_HI_MASK GENMASK(11, 4) -#define DT_SHIFT 28 - -static inline phys_addr_t rk_dte_addr_phys_v2(u32 addr) -{ - u64 addr64 = addr; - return (phys_addr_t)(addr64 & RK_DTE_PT_ADDRESS_MASK) | - ((addr64 & DTE_BASE_HI_MASK) << DT_SHIFT); -} - -static inline u32 rk_dma_addr_dte_v2(dma_addr_t dt_dma) -{ - return (dt_dma & RK_DTE_PT_ADDRESS_MASK) | - ((dt_dma & DT_HI_MASK) >> DT_SHIFT); -} - static void log_iova(struct rk_iommu *iommu, int index, dma_addr_t iova) { void __iomem *base = iommu->bases[index]; @@ -576,7 +547,7 @@ static void log_iova(struct rk_iommu *iommu, int index, dma_addr_t iova) page_offset = rk_iova_page_offset(iova); mmu_dte_addr = rk_iommu_read(base, RK_MMU_DTE_ADDR); - mmu_dte_addr_phys = rk_ops->dte_addr_phys(mmu_dte_addr); + mmu_dte_addr_phys = rk_ops->pt_address(mmu_dte_addr); dte_addr_phys = mmu_dte_addr_phys + (4 * dte_index); dte_addr = phys_to_virt(dte_addr_phys); @@ -966,7 +937,7 @@ static int rk_iommu_enable(struct rk_iommu *iommu) for (i = 0; i < iommu->num_mmu; i++) { rk_iommu_write(iommu->bases[i], RK_MMU_DTE_ADDR, - rk_ops->dma_addr_dte(rk_domain->dt_dma)); + rk_ops->mk_dtentries(rk_domain->dt_dma)); rk_iommu_base_command(iommu->bases[i], RK_MMU_CMD_ZAP_CACHE); rk_iommu_write(iommu->bases[i], RK_MMU_INT_MASK, RK_MMU_IRQ_MASK); } @@ -1373,8 +1344,6 @@ static struct rk_iommu_ops iommu_data_ops_v1 = { .pt_address = &rk_dte_pt_address, .mk_dtentries = &rk_mk_dte, .mk_ptentries = &rk_mk_pte, - .dte_addr_phys = &rk_dte_addr_phys, - .dma_addr_dte = &rk_dma_addr_dte, .dma_bit_mask = DMA_BIT_MASK(32), }; @@ -1382,8 +1351,6 @@ static struct rk_iommu_ops iommu_data_ops_v2 = { .pt_address = &rk_dte_pt_address_v2, .mk_dtentries = &rk_mk_dte_v2, .mk_ptentries = &rk_mk_pte_v2, - .dte_addr_phys = &rk_dte_addr_phys_v2, - .dma_addr_dte = &rk_dma_addr_dte_v2, .dma_bit_mask = DMA_BIT_MASK(40), }; diff --git a/drivers/iommu/sprd-iommu.c b/drivers/iommu/sprd-iommu.c index 723940e841612..6b11770e3d75a 100644 --- a/drivers/iommu/sprd-iommu.c +++ b/drivers/iommu/sprd-iommu.c @@ -147,6 +147,7 @@ static struct iommu_domain *sprd_iommu_domain_alloc(unsigned int domain_type) dom->domain.geometry.aperture_start = 0; dom->domain.geometry.aperture_end = SZ_256M - 1; + dom->domain.geometry.force_aperture = true; return &dom->domain; } diff --git a/drivers/irqchip/irq-gic-v2m.c b/drivers/irqchip/irq-gic-v2m.c index 9349fc68b81a9..62cc78e0da784 100644 --- a/drivers/irqchip/irq-gic-v2m.c +++ b/drivers/irqchip/irq-gic-v2m.c @@ -88,7 +88,6 @@ static struct irq_chip gicv2m_msi_irq_chip = { .irq_mask = gicv2m_mask_msi_irq, .irq_unmask = gicv2m_unmask_msi_irq, .irq_eoi = irq_chip_eoi_parent, - .irq_write_msi_msg = pci_msi_domain_write_msg, }; static struct msi_domain_info gicv2m_msi_domain_info = { diff --git a/drivers/irqchip/irq-gic-v3-its-pci-msi.c b/drivers/irqchip/irq-gic-v3-its-pci-msi.c index ad2810c017ed1..93f77a8196da8 100644 --- a/drivers/irqchip/irq-gic-v3-its-pci-msi.c +++ b/drivers/irqchip/irq-gic-v3-its-pci-msi.c @@ -28,7 +28,6 @@ static struct irq_chip its_msi_irq_chip = { .irq_unmask = its_unmask_msi_irq, .irq_mask = its_mask_msi_irq, .irq_eoi = irq_chip_eoi_parent, - .irq_write_msi_msg = pci_msi_domain_write_msg, }; static int its_pci_msi_vec_count(struct pci_dev *pdev, void *data) diff --git a/drivers/irqchip/irq-gic-v3-mbi.c b/drivers/irqchip/irq-gic-v3-mbi.c index b84c9c2eccdc0..a2163d32f17d2 100644 --- a/drivers/irqchip/irq-gic-v3-mbi.c +++ b/drivers/irqchip/irq-gic-v3-mbi.c @@ -171,7 +171,6 @@ static struct irq_chip mbi_msi_irq_chip = { .irq_unmask = mbi_unmask_msi_irq, .irq_eoi = irq_chip_eoi_parent, .irq_compose_msi_msg = mbi_compose_msi_msg, - .irq_write_msi_msg = pci_msi_domain_write_msg, }; static struct msi_domain_info mbi_msi_domain_info = { diff --git a/drivers/irqchip/irq-riscv-intc.c b/drivers/irqchip/irq-riscv-intc.c index 8017f6d32d52b..54c99441c1b54 100644 --- a/drivers/irqchip/irq-riscv-intc.c +++ b/drivers/irqchip/irq-riscv-intc.c @@ -109,8 +109,16 @@ static int __init riscv_intc_init(struct device_node *node, * for each INTC DT node. We only need to do INTC initialization * for the INTC DT node belonging to boot CPU (or boot HART). */ - if (riscv_hartid_to_cpuid(hartid) != smp_processor_id()) + if (riscv_hartid_to_cpuid(hartid) != smp_processor_id()) { + /* + * The INTC nodes of each CPU are suppliers for downstream + * interrupt controllers (such as PLIC, IMSIC and APLIC + * direct-mode) so we should mark an INTC node as initialized + * if we are not creating IRQ domain for it. + */ + fwnode_dev_initialized(of_fwnode_handle(node), true); return 0; + } intc_domain = irq_domain_add_linear(node, BITS_PER_LONG, &riscv_intc_domain_ops, NULL); diff --git a/drivers/irqchip/irq-stm32-exti.c b/drivers/irqchip/irq-stm32-exti.c index 33c76710f845f..9c150c402f0ba 100644 --- a/drivers/irqchip/irq-stm32-exti.c +++ b/drivers/irqchip/irq-stm32-exti.c @@ -408,6 +408,7 @@ static const struct irq_domain_ops irq_exti_domain_ops = { .map = irq_map_generic_chip, .alloc = stm32_exti_alloc, .free = stm32_exti_free, + .xlate = irq_domain_xlate_twocell, }; static void stm32_irq_ack(struct irq_data *d) diff --git a/drivers/leds/led-class-multicolor.c b/drivers/leds/led-class-multicolor.c index e317408583df9..ec62a48116135 100644 --- a/drivers/leds/led-class-multicolor.c +++ b/drivers/leds/led-class-multicolor.c @@ -6,6 +6,7 @@ #include #include #include +#include #include #include #include @@ -19,9 +20,10 @@ int led_mc_calc_color_components(struct led_classdev_mc *mcled_cdev, int i; for (i = 0; i < mcled_cdev->num_colors; i++) - mcled_cdev->subled_info[i].brightness = brightness * - mcled_cdev->subled_info[i].intensity / - led_cdev->max_brightness; + mcled_cdev->subled_info[i].brightness = + DIV_ROUND_CLOSEST(brightness * + mcled_cdev->subled_info[i].intensity, + led_cdev->max_brightness); return 0; } diff --git a/drivers/leds/leds-pwm.c b/drivers/leds/leds-pwm.c index 6832180c1c54f..6d3e33e8b5f91 100644 --- a/drivers/leds/leds-pwm.c +++ b/drivers/leds/leds-pwm.c @@ -53,7 +53,7 @@ static int led_pwm_set(struct led_classdev *led_cdev, duty = led_dat->pwmstate.period - duty; led_dat->pwmstate.duty_cycle = duty; - led_dat->pwmstate.enabled = duty > 0; + led_dat->pwmstate.enabled = true; return pwm_apply_state(led_dat->pwm, &led_dat->pwmstate); } @@ -146,7 +146,7 @@ static int led_pwm_create_fwnode(struct device *dev, struct led_pwm_priv *priv) led.name = to_of_node(fwnode)->name; if (!led.name) { - ret = EINVAL; + ret = -EINVAL; goto err_child_out; } diff --git a/drivers/leds/leds-turris-omnia.c b/drivers/leds/leds-turris-omnia.c index 1adfed1c0619b..ebc6cf3ce3cad 100644 --- a/drivers/leds/leds-turris-omnia.c +++ b/drivers/leds/leds-turris-omnia.c @@ -2,7 +2,7 @@ /* * CZ.NIC's Turris Omnia LEDs driver * - * 2020 by Marek Behún + * 2020, 2023 by Marek Behún */ #include @@ -41,6 +41,37 @@ struct omnia_leds { struct omnia_led leds[]; }; +static int omnia_cmd_write_u8(const struct i2c_client *client, u8 cmd, u8 val) +{ + u8 buf[2] = { cmd, val }; + + return i2c_master_send(client, buf, sizeof(buf)); +} + +static int omnia_cmd_read_u8(const struct i2c_client *client, u8 cmd) +{ + struct i2c_msg msgs[2]; + u8 reply; + int ret; + + msgs[0].addr = client->addr; + msgs[0].flags = 0; + msgs[0].len = 1; + msgs[0].buf = &cmd; + msgs[1].addr = client->addr; + msgs[1].flags = I2C_M_RD; + msgs[1].len = 1; + msgs[1].buf = &reply; + + ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs)); + if (likely(ret == ARRAY_SIZE(msgs))) + return reply; + else if (ret < 0) + return ret; + else + return -EIO; +} + static int omnia_led_brightness_set_blocking(struct led_classdev *cdev, enum led_brightness brightness) { @@ -64,7 +95,7 @@ static int omnia_led_brightness_set_blocking(struct led_classdev *cdev, if (buf[2] || buf[3] || buf[4]) state |= CMD_LED_STATE_ON; - ret = i2c_smbus_write_byte_data(leds->client, CMD_LED_STATE, state); + ret = omnia_cmd_write_u8(leds->client, CMD_LED_STATE, state); if (ret >= 0 && (state & CMD_LED_STATE_ON)) ret = i2c_master_send(leds->client, buf, 5); @@ -114,9 +145,9 @@ static int omnia_led_register(struct i2c_client *client, struct omnia_led *led, cdev->brightness_set_blocking = omnia_led_brightness_set_blocking; /* put the LED into software mode */ - ret = i2c_smbus_write_byte_data(client, CMD_LED_MODE, - CMD_LED_MODE_LED(led->reg) | - CMD_LED_MODE_USER); + ret = omnia_cmd_write_u8(client, CMD_LED_MODE, + CMD_LED_MODE_LED(led->reg) | + CMD_LED_MODE_USER); if (ret < 0) { dev_err(dev, "Cannot set LED %pOF to software mode: %i\n", np, ret); @@ -124,8 +155,8 @@ static int omnia_led_register(struct i2c_client *client, struct omnia_led *led, } /* disable the LED */ - ret = i2c_smbus_write_byte_data(client, CMD_LED_STATE, - CMD_LED_STATE_LED(led->reg)); + ret = omnia_cmd_write_u8(client, CMD_LED_STATE, + CMD_LED_STATE_LED(led->reg)); if (ret < 0) { dev_err(dev, "Cannot set LED %pOF brightness: %i\n", np, ret); return ret; @@ -156,12 +187,9 @@ static ssize_t brightness_show(struct device *dev, struct device_attribute *a, char *buf) { struct i2c_client *client = to_i2c_client(dev); - struct omnia_leds *leds = i2c_get_clientdata(client); int ret; - mutex_lock(&leds->lock); - ret = i2c_smbus_read_byte_data(client, CMD_LED_GET_BRIGHTNESS); - mutex_unlock(&leds->lock); + ret = omnia_cmd_read_u8(client, CMD_LED_GET_BRIGHTNESS); if (ret < 0) return ret; @@ -173,7 +201,6 @@ static ssize_t brightness_store(struct device *dev, struct device_attribute *a, const char *buf, size_t count) { struct i2c_client *client = to_i2c_client(dev); - struct omnia_leds *leds = i2c_get_clientdata(client); unsigned long brightness; int ret; @@ -183,15 +210,9 @@ static ssize_t brightness_store(struct device *dev, struct device_attribute *a, if (brightness > 100) return -EINVAL; - mutex_lock(&leds->lock); - ret = i2c_smbus_write_byte_data(client, CMD_LED_SET_BRIGHTNESS, - (u8)brightness); - mutex_unlock(&leds->lock); - - if (ret < 0) - return ret; + ret = omnia_cmd_write_u8(client, CMD_LED_SET_BRIGHTNESS, brightness); - return count; + return ret < 0 ? ret : count; } static DEVICE_ATTR_RW(brightness); @@ -250,8 +271,8 @@ static int omnia_leds_remove(struct i2c_client *client) u8 buf[5]; /* put all LEDs into default (HW triggered) mode */ - i2c_smbus_write_byte_data(client, CMD_LED_MODE, - CMD_LED_MODE_LED(OMNIA_BOARD_LEDS)); + omnia_cmd_write_u8(client, CMD_LED_MODE, + CMD_LED_MODE_LED(OMNIA_BOARD_LEDS)); /* set all LEDs color to [255, 255, 255] */ buf[0] = CMD_LED_COLOR; diff --git a/drivers/leds/trigger/ledtrig-cpu.c b/drivers/leds/trigger/ledtrig-cpu.c index 8af4f9bb9cde8..05848a2fecff6 100644 --- a/drivers/leds/trigger/ledtrig-cpu.c +++ b/drivers/leds/trigger/ledtrig-cpu.c @@ -130,7 +130,7 @@ static int ledtrig_prepare_down_cpu(unsigned int cpu) static int __init ledtrig_cpu_init(void) { - int cpu; + unsigned int cpu; int ret; /* Supports up to 9999 cpu cores */ @@ -152,7 +152,7 @@ static int __init ledtrig_cpu_init(void) if (cpu >= 8) continue; - snprintf(trig->name, MAX_NAME_LEN, "cpu%d", cpu); + snprintf(trig->name, MAX_NAME_LEN, "cpu%u", cpu); led_trigger_register_simple(trig->name, &trig->_trig); } diff --git a/drivers/leds/trigger/ledtrig-tty.c b/drivers/leds/trigger/ledtrig-tty.c index f62db7e520b52..8ae0d2d284aff 100644 --- a/drivers/leds/trigger/ledtrig-tty.c +++ b/drivers/leds/trigger/ledtrig-tty.c @@ -7,6 +7,8 @@ #include #include +#define LEDTRIG_TTY_INTERVAL 50 + struct ledtrig_tty_data { struct led_classdev *led_cdev; struct delayed_work dwork; @@ -122,17 +124,19 @@ static void ledtrig_tty_work(struct work_struct *work) if (icount.rx != trigger_data->rx || icount.tx != trigger_data->tx) { - led_set_brightness_sync(trigger_data->led_cdev, LED_ON); + unsigned long interval = LEDTRIG_TTY_INTERVAL; + + led_blink_set_oneshot(trigger_data->led_cdev, &interval, + &interval, 0); trigger_data->rx = icount.rx; trigger_data->tx = icount.tx; - } else { - led_set_brightness_sync(trigger_data->led_cdev, LED_OFF); } out: mutex_unlock(&trigger_data->mutex); - schedule_delayed_work(&trigger_data->dwork, msecs_to_jiffies(100)); + schedule_delayed_work(&trigger_data->dwork, + msecs_to_jiffies(LEDTRIG_TTY_INTERVAL * 2)); } static struct attribute *ledtrig_tty_attrs[] = { diff --git a/drivers/mcb/mcb-core.c b/drivers/mcb/mcb-core.c index 0530db5482311..5f949e26d837f 100644 --- a/drivers/mcb/mcb-core.c +++ b/drivers/mcb/mcb-core.c @@ -246,6 +246,7 @@ int mcb_device_register(struct mcb_bus *bus, struct mcb_device *dev) return 0; out: + put_device(&dev->dev); return ret; } @@ -387,17 +388,13 @@ EXPORT_SYMBOL_NS_GPL(mcb_free_dev, MCB); static int __mcb_bus_add_devices(struct device *dev, void *data) { - struct mcb_device *mdev = to_mcb_device(dev); int retval; - if (mdev->is_added) - return 0; - retval = device_attach(dev); - if (retval < 0) + if (retval < 0) { dev_err(dev, "Error adding device (%d)\n", retval); - - mdev->is_added = true; + return retval; + } return 0; } diff --git a/drivers/mcb/mcb-lpc.c b/drivers/mcb/mcb-lpc.c index 53decd89876ee..a851e02364642 100644 --- a/drivers/mcb/mcb-lpc.c +++ b/drivers/mcb/mcb-lpc.c @@ -23,7 +23,7 @@ static int mcb_lpc_probe(struct platform_device *pdev) { struct resource *res; struct priv *priv; - int ret = 0; + int ret = 0, table_size; priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL); if (!priv) @@ -58,16 +58,43 @@ static int mcb_lpc_probe(struct platform_device *pdev) ret = chameleon_parse_cells(priv->bus, priv->mem->start, priv->base); if (ret < 0) { - mcb_release_bus(priv->bus); - return ret; + goto out_mcb_bus; } - dev_dbg(&pdev->dev, "Found %d cells\n", ret); + table_size = ret; + + if (table_size < CHAM_HEADER_SIZE) { + /* Release the previous resources */ + devm_iounmap(&pdev->dev, priv->base); + devm_release_mem_region(&pdev->dev, priv->mem->start, resource_size(priv->mem)); + + /* Then, allocate it again with the actual chameleon table size */ + res = devm_request_mem_region(&pdev->dev, priv->mem->start, + table_size, + KBUILD_MODNAME); + if (!res) { + dev_err(&pdev->dev, "Failed to request PCI memory\n"); + ret = -EBUSY; + goto out_mcb_bus; + } + + priv->base = devm_ioremap(&pdev->dev, priv->mem->start, table_size); + if (!priv->base) { + dev_err(&pdev->dev, "Cannot ioremap\n"); + ret = -ENOMEM; + goto out_mcb_bus; + } + + platform_set_drvdata(pdev, priv); + } mcb_bus_add_devices(priv->bus); return 0; +out_mcb_bus: + mcb_release_bus(priv->bus); + return ret; } static int mcb_lpc_remove(struct platform_device *pdev) diff --git a/drivers/mcb/mcb-parse.c b/drivers/mcb/mcb-parse.c index aa6938da0db85..1ae37e693de04 100644 --- a/drivers/mcb/mcb-parse.c +++ b/drivers/mcb/mcb-parse.c @@ -99,8 +99,6 @@ static int chameleon_parse_gdd(struct mcb_bus *bus, mdev->mem.end = mdev->mem.start + size - 1; mdev->mem.flags = IORESOURCE_MEM; - mdev->is_added = false; - ret = mcb_device_register(bus, mdev); if (ret < 0) goto err; @@ -108,7 +106,7 @@ static int chameleon_parse_gdd(struct mcb_bus *bus, return 0; err: - put_device(&mdev->dev); + mcb_free_dev(mdev); return ret; } @@ -130,7 +128,7 @@ static void chameleon_parse_bar(void __iomem *base, } } -static int chameleon_get_bar(char __iomem **base, phys_addr_t mapbase, +static int chameleon_get_bar(void __iomem **base, phys_addr_t mapbase, struct chameleon_bar **cb) { struct chameleon_bar *c; @@ -179,12 +177,13 @@ int chameleon_parse_cells(struct mcb_bus *bus, phys_addr_t mapbase, { struct chameleon_fpga_header *header; struct chameleon_bar *cb; - char __iomem *p = base; + void __iomem *p = base; int num_cells = 0; uint32_t dtype; int bar_count; int ret; u32 hsize; + u32 table_size; hsize = sizeof(struct chameleon_fpga_header); @@ -239,12 +238,16 @@ int chameleon_parse_cells(struct mcb_bus *bus, phys_addr_t mapbase, num_cells++; } - if (num_cells == 0) - num_cells = -EINVAL; + if (num_cells == 0) { + ret = -EINVAL; + goto free_bar; + } + table_size = p - base; + pr_debug("%d cell(s) found. Chameleon table size: 0x%04x bytes\n", num_cells, table_size); kfree(cb); kfree(header); - return num_cells; + return table_size; free_bar: kfree(cb); diff --git a/drivers/md/bcache/btree.c b/drivers/md/bcache/btree.c index 88097d1892ace..c7878ba35f3cc 100644 --- a/drivers/md/bcache/btree.c +++ b/drivers/md/bcache/btree.c @@ -1342,7 +1342,7 @@ static int btree_gc_coalesce(struct btree *b, struct btree_op *op, memset(new_nodes, 0, sizeof(new_nodes)); closure_init_stack(&cl); - while (nodes < GC_MERGE_NODES && !IS_ERR(r[nodes].b)) + while (nodes < GC_MERGE_NODES && !IS_ERR_OR_NULL(r[nodes].b)) keys += r[nodes++].keys; blocks = btree_default_blocks(b->c) * 2 / 3; @@ -1489,7 +1489,7 @@ static int btree_gc_coalesce(struct btree *b, struct btree_op *op, bch_keylist_free(&keylist); for (i = 0; i < nodes; i++) - if (!IS_ERR(new_nodes[i])) { + if (!IS_ERR_OR_NULL(new_nodes[i])) { btree_node_free(new_nodes[i]); rw_unlock(true, new_nodes[i]); } @@ -1506,6 +1506,8 @@ static int btree_gc_rewrite_node(struct btree *b, struct btree_op *op, return 0; n = btree_node_alloc_replacement(replace, NULL); + if (IS_ERR(n)) + return 0; /* recheck reserve after allocating replacement node */ if (btree_check_reserve(b, NULL)) { diff --git a/drivers/md/bcache/sysfs.c b/drivers/md/bcache/sysfs.c index 05ac1d6fbbf35..fa146012003df 100644 --- a/drivers/md/bcache/sysfs.c +++ b/drivers/md/bcache/sysfs.c @@ -1099,7 +1099,7 @@ SHOW(__bch_cache) sum += INITIAL_PRIO - cached[i]; if (n) - do_div(sum, n); + sum = div64_u64(sum, n); for (i = 0; i < ARRAY_SIZE(q); i++) q[i] = INITIAL_PRIO - cached[n * (i + 1) / diff --git a/drivers/md/bcache/writeback.c b/drivers/md/bcache/writeback.c index 4dcbaf9a2149d..3bc29ed633cb3 100644 --- a/drivers/md/bcache/writeback.c +++ b/drivers/md/bcache/writeback.c @@ -967,24 +967,35 @@ static int bch_btre_dirty_init_thread_nr(void) void bch_sectors_dirty_init(struct bcache_device *d) { int i; + struct btree *b = NULL; struct bkey *k = NULL; struct btree_iter iter; struct sectors_dirty_init op; struct cache_set *c = d->c; struct bch_dirty_init_state state; +retry_lock: + b = c->root; + rw_lock(0, b, b->level); + if (b != c->root) { + rw_unlock(0, b); + goto retry_lock; + } + /* 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; for_each_key_filter(&c->root->keys, - k, &iter, bch_ptr_invalid) + k, &iter, bch_ptr_invalid) { + if (KEY_INODE(k) != op.inode) + continue; sectors_dirty_init_fn(&op.op, c->root, k); + } - rw_unlock(0, c->root); + rw_unlock(0, b); return; } @@ -1004,23 +1015,24 @@ void bch_sectors_dirty_init(struct bcache_device *d) if (atomic_read(&state.enough)) break; + atomic_inc(&state.started); 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); + atomic_dec(&state.started); for (--i; i >= 0; i--) kthread_stop(state.infos[i].thread); goto out; } - atomic_inc(&state.started); } out: /* Must wait for all threads to stop. */ wait_event(state.wait, atomic_read(&state.started) == 0); - rw_unlock(0, c->root); + rw_unlock(0, b); } void bch_cached_dev_writeback_init(struct cached_dev *dc) diff --git a/drivers/md/dm-delay.c b/drivers/md/dm-delay.c index 59e51d285b0e5..238028056d0cc 100644 --- a/drivers/md/dm-delay.c +++ b/drivers/md/dm-delay.c @@ -30,7 +30,7 @@ struct delay_c { struct workqueue_struct *kdelayd_wq; struct work_struct flush_expired_bios; struct list_head delayed_bios; - atomic_t may_delay; + bool may_delay; struct delay_class read; struct delay_class write; @@ -191,7 +191,7 @@ static int delay_ctr(struct dm_target *ti, unsigned int argc, char **argv) INIT_WORK(&dc->flush_expired_bios, flush_expired_bios); INIT_LIST_HEAD(&dc->delayed_bios); mutex_init(&dc->timer_lock); - atomic_set(&dc->may_delay, 1); + dc->may_delay = true; dc->argc = argc; ret = delay_class_ctr(ti, &dc->read, argv); @@ -245,7 +245,7 @@ static int delay_bio(struct delay_c *dc, struct delay_class *c, struct bio *bio) struct dm_delay_info *delayed; unsigned long expires = 0; - if (!c->delay || !atomic_read(&dc->may_delay)) + if (!c->delay) return DM_MAPIO_REMAPPED; delayed = dm_per_bio_data(bio, sizeof(struct dm_delay_info)); @@ -254,6 +254,10 @@ static int delay_bio(struct delay_c *dc, struct delay_class *c, struct bio *bio) delayed->expires = expires = jiffies + msecs_to_jiffies(c->delay); mutex_lock(&delayed_bios_lock); + if (unlikely(!dc->may_delay)) { + mutex_unlock(&delayed_bios_lock); + return DM_MAPIO_REMAPPED; + } c->ops++; list_add_tail(&delayed->list, &dc->delayed_bios); mutex_unlock(&delayed_bios_lock); @@ -267,7 +271,10 @@ static void delay_presuspend(struct dm_target *ti) { struct delay_c *dc = ti->private; - atomic_set(&dc->may_delay, 0); + mutex_lock(&delayed_bios_lock); + dc->may_delay = false; + mutex_unlock(&delayed_bios_lock); + del_timer_sync(&dc->delay_timer); flush_bios(flush_delayed_bios(dc, 1)); } @@ -276,7 +283,7 @@ static void delay_resume(struct dm_target *ti) { struct delay_c *dc = ti->private; - atomic_set(&dc->may_delay, 1); + dc->may_delay = true; } static int delay_map(struct dm_target *ti, struct bio *bio) diff --git a/drivers/md/dm-verity-fec.c b/drivers/md/dm-verity-fec.c index cea2b37897367..442437e4e03ba 100644 --- a/drivers/md/dm-verity-fec.c +++ b/drivers/md/dm-verity-fec.c @@ -24,7 +24,8 @@ bool verity_fec_is_enabled(struct dm_verity *v) */ static inline struct dm_verity_fec_io *fec_io(struct dm_verity_io *io) { - return (struct dm_verity_fec_io *) verity_io_digest_end(io->v, io); + return (struct dm_verity_fec_io *) + ((char *)io + io->v->ti->per_io_data_size - sizeof(struct dm_verity_fec_io)); } /* diff --git a/drivers/md/dm-verity-target.c b/drivers/md/dm-verity-target.c index 1a2509623874f..905764e333e8f 100644 --- a/drivers/md/dm-verity-target.c +++ b/drivers/md/dm-verity-target.c @@ -583,7 +583,9 @@ static void verity_end_io(struct bio *bio) struct dm_verity_io *io = bio->bi_private; if (bio->bi_status && - (!verity_fec_is_enabled(io->v) || verity_is_system_shutting_down())) { + (!verity_fec_is_enabled(io->v) || + verity_is_system_shutting_down() || + (bio->bi_opf & REQ_RAHEAD))) { verity_finish_io(io, bio->bi_status); return; } diff --git a/drivers/md/dm-verity.h b/drivers/md/dm-verity.h index 4e769d13473a9..78d1e51195ada 100644 --- a/drivers/md/dm-verity.h +++ b/drivers/md/dm-verity.h @@ -111,12 +111,6 @@ static inline u8 *verity_io_want_digest(struct dm_verity *v, return (u8 *)(io + 1) + v->ahash_reqsize + v->digest_size; } -static inline u8 *verity_io_digest_end(struct dm_verity *v, - struct dm_verity_io *io) -{ - return verity_io_want_digest(v, io) + v->digest_size; -} - extern int verity_for_bv_block(struct dm_verity *v, struct dm_verity_io *io, struct bvec_iter *iter, int (*process)(struct dm_verity *v, diff --git a/drivers/md/dm-zoned-target.c b/drivers/md/dm-zoned-target.c index ae1bc48c0043d..48b56d6434f7a 100644 --- a/drivers/md/dm-zoned-target.c +++ b/drivers/md/dm-zoned-target.c @@ -750,17 +750,16 @@ static int dmz_get_zoned_device(struct dm_target *ti, char *path, /* * Cleanup zoned device information. */ -static void dmz_put_zoned_device(struct dm_target *ti) +static void dmz_put_zoned_devices(struct dm_target *ti) { struct dmz_target *dmz = ti->private; int i; - for (i = 0; i < dmz->nr_ddevs; i++) { - if (dmz->ddev[i]) { + for (i = 0; i < dmz->nr_ddevs; i++) + if (dmz->ddev[i]) dm_put_device(ti, dmz->ddev[i]); - dmz->ddev[i] = NULL; - } - } + + kfree(dmz->ddev); } static int dmz_fixup_devices(struct dm_target *ti) @@ -951,7 +950,7 @@ static int dmz_ctr(struct dm_target *ti, unsigned int argc, char **argv) err_meta: dmz_dtr_metadata(dmz->metadata); err_dev: - dmz_put_zoned_device(ti); + dmz_put_zoned_devices(ti); err: kfree(dmz->dev); kfree(dmz); @@ -982,7 +981,7 @@ static void dmz_dtr(struct dm_target *ti) bioset_exit(&dmz->bio_set); - dmz_put_zoned_device(ti); + dmz_put_zoned_devices(ti); mutex_destroy(&dmz->chunk_lock); diff --git a/drivers/md/md-bitmap.c b/drivers/md/md-bitmap.c index adada558a1b09..49c46f3aea573 100644 --- a/drivers/md/md-bitmap.c +++ b/drivers/md/md-bitmap.c @@ -2476,11 +2476,35 @@ backlog_store(struct mddev *mddev, const char *buf, size_t len) { unsigned long backlog; unsigned long old_mwb = mddev->bitmap_info.max_write_behind; + struct md_rdev *rdev; + bool has_write_mostly = false; int rv = kstrtoul(buf, 10, &backlog); if (rv) return rv; if (backlog > COUNTER_MAX) return -EINVAL; + + rv = mddev_lock(mddev); + if (rv) + return rv; + + /* + * Without write mostly device, it doesn't make sense to set + * backlog for max_write_behind. + */ + rdev_for_each(rdev, mddev) { + if (test_bit(WriteMostly, &rdev->flags)) { + has_write_mostly = true; + break; + } + } + if (!has_write_mostly) { + pr_warn_ratelimited("%s: can't set backlog, no write mostly device available\n", + mdname(mddev)); + mddev_unlock(mddev); + return -EINVAL; + } + mddev->bitmap_info.max_write_behind = backlog; if (!backlog && mddev->serial_info_pool) { /* serial_info_pool is not needed if backlog is zero */ @@ -2488,13 +2512,13 @@ backlog_store(struct mddev *mddev, const char *buf, size_t len) mddev_destroy_serial_pool(mddev, NULL, false); } else if (backlog && !mddev->serial_info_pool) { /* serial_info_pool is needed since backlog is not zero */ - struct md_rdev *rdev; - rdev_for_each(rdev, mddev) mddev_create_serial_pool(mddev, rdev, false); } if (old_mwb != backlog) md_bitmap_update_sb(mddev->bitmap); + + mddev_unlock(mddev); return len; } diff --git a/drivers/md/md-linear.c b/drivers/md/md-linear.c index 1ff51647a6822..c33cd28f1dba0 100644 --- a/drivers/md/md-linear.c +++ b/drivers/md/md-linear.c @@ -233,7 +233,8 @@ static bool linear_make_request(struct mddev *mddev, struct bio *bio) bio_sector < start_sector)) goto out_of_bounds; - if (unlikely(is_mddev_broken(tmp_dev->rdev, "linear"))) { + if (unlikely(is_rdev_broken(tmp_dev->rdev))) { + md_error(mddev, tmp_dev->rdev); bio_io_error(bio); return true; } @@ -281,6 +282,16 @@ static void linear_status (struct seq_file *seq, struct mddev *mddev) seq_printf(seq, " %dk rounding", mddev->chunk_sectors / 2); } +static void linear_error(struct mddev *mddev, struct md_rdev *rdev) +{ + if (!test_and_set_bit(MD_BROKEN, &mddev->flags)) { + char *md_name = mdname(mddev); + + pr_crit("md/linear%s: Disk failure on %pg detected, failing array.\n", + md_name, rdev->bdev); + } +} + static void linear_quiesce(struct mddev *mddev, int state) { } @@ -297,6 +308,7 @@ static struct md_personality linear_personality = .hot_add_disk = linear_add, .size = linear_size, .quiesce = linear_quiesce, + .error_handler = linear_error, }; static int __init linear_init (void) diff --git a/drivers/md/md.c b/drivers/md/md.c index 89a270d293698..aae9ec78c0e8c 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -92,6 +92,18 @@ static int remove_and_add_spares(struct mddev *mddev, struct md_rdev *this); static void mddev_detach(struct mddev *mddev); +enum md_ro_state { + MD_RDWR, + MD_RDONLY, + MD_AUTO_READ, + MD_MAX_STATE +}; + +static bool md_is_rdwr(struct mddev *mddev) +{ + return (mddev->ro == MD_RDWR); +} + /* * Default number of read corrections we'll attempt on an rdev * before ejecting it from the array. We divide the read error @@ -461,7 +473,7 @@ static blk_qc_t md_submit_bio(struct bio *bio) if (!bio) return BLK_QC_T_NONE; - if (mddev->ro == 1 && unlikely(rw == WRITE)) { + if (mddev->ro == MD_RDONLY && unlikely(rw == WRITE)) { if (bio_sectors(bio) != 0) bio->bi_status = BLK_STS_IOERR; bio_endio(bio); @@ -2680,7 +2692,7 @@ void md_update_sb(struct mddev *mddev, int force_change) int any_badblocks_changed = 0; int ret = -1; - if (mddev->ro) { + if (!md_is_rdwr(mddev)) { if (force_change) set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags); return; @@ -2992,10 +3004,11 @@ state_store(struct md_rdev *rdev, const char *buf, size_t len) if (cmd_match(buf, "faulty") && rdev->mddev->pers) { md_error(rdev->mddev, rdev); - if (test_bit(Faulty, &rdev->flags)) - err = 0; - else + + if (test_bit(MD_BROKEN, &rdev->mddev->flags)) err = -EBUSY; + else + err = 0; } else if (cmd_match(buf, "remove")) { if (rdev->mddev->pers) { clear_bit(Blocked, &rdev->flags); @@ -3952,7 +3965,7 @@ level_store(struct mddev *mddev, const char *buf, size_t len) goto out_unlock; } rv = -EROFS; - if (mddev->ro) + if (!md_is_rdwr(mddev)) goto out_unlock; /* request to change the personality. Need to ensure: @@ -4158,7 +4171,7 @@ layout_store(struct mddev *mddev, const char *buf, size_t len) if (mddev->pers) { if (mddev->pers->check_reshape == NULL) err = -EBUSY; - else if (mddev->ro) + else if (!md_is_rdwr(mddev)) err = -EROFS; else { mddev->new_layout = n; @@ -4267,7 +4280,7 @@ chunk_size_store(struct mddev *mddev, const char *buf, size_t len) if (mddev->pers) { if (mddev->pers->check_reshape == NULL) err = -EBUSY; - else if (mddev->ro) + else if (!md_is_rdwr(mddev)) err = -EROFS; else { mddev->new_chunk_sectors = n >> 9; @@ -4364,10 +4377,9 @@ __ATTR_PREALLOC(resync_start, S_IRUGO|S_IWUSR, * like active, but no writes have been seen for a while (100msec). * * broken - * RAID0/LINEAR-only: same as clean, but array is missing a member. - * It's useful because RAID0/LINEAR mounted-arrays aren't stopped - * when a member is gone, so this state will at least alert the - * user that something is wrong. +* Array is failed. It's useful because mounted-arrays aren't stopped +* when array is failed, so this state will at least alert the user that +* something is wrong. */ enum array_state { clear, inactive, suspended, readonly, read_auto, clean, active, write_pending, active_idle, broken, bad_word}; @@ -4391,13 +4403,13 @@ array_state_show(struct mddev *mddev, char *page) if (mddev->pers && !test_bit(MD_NOT_READY, &mddev->flags)) { switch(mddev->ro) { - case 1: + case MD_RDONLY: st = readonly; break; - case 2: + case MD_AUTO_READ: st = read_auto; break; - case 0: + case MD_RDWR: spin_lock(&mddev->lock); if (test_bit(MD_SB_CHANGE_PENDING, &mddev->sb_flags)) st = write_pending; @@ -4433,7 +4445,8 @@ array_state_store(struct mddev *mddev, const char *buf, size_t len) int err = 0; enum array_state st = match_word(buf, array_states); - if (mddev->pers && (st == active || st == clean) && mddev->ro != 1) { + if (mddev->pers && (st == active || st == clean) && + mddev->ro != MD_RDONLY) { /* don't take reconfig_mutex when toggling between * clean and active */ @@ -4477,23 +4490,23 @@ array_state_store(struct mddev *mddev, const char *buf, size_t len) if (mddev->pers) err = md_set_readonly(mddev, NULL); else { - mddev->ro = 1; + mddev->ro = MD_RDONLY; set_disk_ro(mddev->gendisk, 1); err = do_md_run(mddev); } break; case read_auto: if (mddev->pers) { - if (mddev->ro == 0) + if (md_is_rdwr(mddev)) err = md_set_readonly(mddev, NULL); - else if (mddev->ro == 1) + else if (mddev->ro == MD_RDONLY) err = restart_array(mddev); if (err == 0) { - mddev->ro = 2; + mddev->ro = MD_AUTO_READ; set_disk_ro(mddev->gendisk, 0); } } else { - mddev->ro = 2; + mddev->ro = MD_AUTO_READ; err = do_md_run(mddev); } break; @@ -4518,7 +4531,7 @@ array_state_store(struct mddev *mddev, const char *buf, size_t len) wake_up(&mddev->sb_wait); err = 0; } else { - mddev->ro = 0; + mddev->ro = MD_RDWR; set_disk_ro(mddev->gendisk, 0); err = do_md_run(mddev); } @@ -4819,7 +4832,7 @@ action_show(struct mddev *mddev, char *page) if (test_bit(MD_RECOVERY_FROZEN, &recovery)) type = "frozen"; else if (test_bit(MD_RECOVERY_RUNNING, &recovery) || - (!mddev->ro && test_bit(MD_RECOVERY_NEEDED, &recovery))) { + (md_is_rdwr(mddev) && test_bit(MD_RECOVERY_NEEDED, &recovery))) { if (test_bit(MD_RECOVERY_RESHAPE, &recovery)) type = "reshape"; else if (test_bit(MD_RECOVERY_SYNC, &recovery)) { @@ -4892,11 +4905,11 @@ action_store(struct mddev *mddev, const char *page, size_t len) set_bit(MD_RECOVERY_REQUESTED, &mddev->recovery); set_bit(MD_RECOVERY_SYNC, &mddev->recovery); } - if (mddev->ro == 2) { + if (mddev->ro == MD_AUTO_READ) { /* A write to sync_action is enough to justify * canceling read-auto mode */ - mddev->ro = 0; + mddev->ro = MD_RDWR; md_wakeup_thread(mddev->sync_thread); } set_bit(MD_RECOVERY_NEEDED, &mddev->recovery); @@ -5124,8 +5137,7 @@ max_sync_store(struct mddev *mddev, const char *buf, size_t len) goto out_unlock; err = -EBUSY; - if (max < mddev->resync_max && - mddev->ro == 0 && + if (max < mddev->resync_max && md_is_rdwr(mddev) && test_bit(MD_RECOVERY_RUNNING, &mddev->recovery)) goto out_unlock; @@ -5841,8 +5853,8 @@ int md_run(struct mddev *mddev) continue; sync_blockdev(rdev->bdev); invalidate_bdev(rdev->bdev); - if (mddev->ro != 1 && rdev_read_only(rdev)) { - mddev->ro = 1; + if (mddev->ro != MD_RDONLY && rdev_read_only(rdev)) { + mddev->ro = MD_RDONLY; if (mddev->gendisk) set_disk_ro(mddev->gendisk, 1); } @@ -5945,8 +5957,8 @@ int md_run(struct mddev *mddev) mddev->ok_start_degraded = start_dirty_degraded; - if (start_readonly && mddev->ro == 0) - mddev->ro = 2; /* read-only, but switch on first write */ + if (start_readonly && md_is_rdwr(mddev)) + mddev->ro = MD_AUTO_READ; /* read-only, but switch on first write */ err = pers->run(mddev); if (err) @@ -6021,8 +6033,8 @@ int md_run(struct mddev *mddev) mddev->sysfs_action = sysfs_get_dirent_safe(mddev->kobj.sd, "sync_action"); mddev->sysfs_completed = sysfs_get_dirent_safe(mddev->kobj.sd, "sync_completed"); mddev->sysfs_degraded = sysfs_get_dirent_safe(mddev->kobj.sd, "degraded"); - } else if (mddev->ro == 2) /* auto-readonly not meaningful */ - mddev->ro = 0; + } else if (mddev->ro == MD_AUTO_READ) + mddev->ro = MD_RDWR; atomic_set(&mddev->max_corr_read_errors, MD_DEFAULT_MAX_CORRECTED_READ_ERRORS); @@ -6040,7 +6052,7 @@ int md_run(struct mddev *mddev) if (rdev->raid_disk >= 0) sysfs_link_rdev(mddev, rdev); /* failure here is OK */ - if (mddev->degraded && !mddev->ro) + if (mddev->degraded && md_is_rdwr(mddev)) /* This ensures that recovering status is reported immediately * via sysfs - until a lack of spares is confirmed. */ @@ -6130,7 +6142,7 @@ static int restart_array(struct mddev *mddev) return -ENXIO; if (!mddev->pers) return -EINVAL; - if (!mddev->ro) + if (md_is_rdwr(mddev)) return -EBUSY; rcu_read_lock(); @@ -6149,7 +6161,7 @@ static int restart_array(struct mddev *mddev) return -EROFS; mddev->safemode = 0; - mddev->ro = 0; + mddev->ro = MD_RDWR; set_disk_ro(disk, 0); pr_debug("md: %s switched to read-write mode.\n", mdname(mddev)); /* Kick recovery or resync if necessary */ @@ -6176,7 +6188,7 @@ static void md_clean(struct mddev *mddev) mddev->clevel[0] = 0; mddev->flags = 0; mddev->sb_flags = 0; - mddev->ro = 0; + mddev->ro = MD_RDWR; mddev->metadata_type[0] = 0; mddev->chunk_sectors = 0; mddev->ctime = mddev->utime = 0; @@ -6227,7 +6239,7 @@ static void __md_stop_writes(struct mddev *mddev) } md_bitmap_flush(mddev); - if (mddev->ro == 0 && + if (md_is_rdwr(mddev) && ((!mddev->in_sync && !mddev_is_clustered(mddev)) || mddev->sb_flags)) { /* mark array as shutdown cleanly */ @@ -6299,6 +6311,9 @@ static int md_set_readonly(struct mddev *mddev, struct block_device *bdev) int err = 0; int did_freeze = 0; + if (mddev->external && test_bit(MD_SB_CHANGE_PENDING, &mddev->sb_flags)) + return -EBUSY; + if (!test_bit(MD_RECOVERY_FROZEN, &mddev->recovery)) { did_freeze = 1; set_bit(MD_RECOVERY_FROZEN, &mddev->recovery); @@ -6311,8 +6326,6 @@ static int md_set_readonly(struct mddev *mddev, struct block_device *bdev) * which will now never happen */ wake_up_process(mddev->sync_thread->tsk); - if (mddev->external && test_bit(MD_SB_CHANGE_PENDING, &mddev->sb_flags)) - return -EBUSY; mddev_unlock(mddev); wait_event(resync_wait, !test_bit(MD_RECOVERY_RUNNING, &mddev->recovery)); @@ -6325,29 +6338,30 @@ static int md_set_readonly(struct mddev *mddev, struct block_device *bdev) mddev->sync_thread || test_bit(MD_RECOVERY_RUNNING, &mddev->recovery)) { pr_warn("md: %s still in use.\n",mdname(mddev)); - if (did_freeze) { - clear_bit(MD_RECOVERY_FROZEN, &mddev->recovery); - set_bit(MD_RECOVERY_NEEDED, &mddev->recovery); - md_wakeup_thread(mddev->thread); - } err = -EBUSY; goto out; } + if (mddev->pers) { __md_stop_writes(mddev); - err = -ENXIO; - if (mddev->ro==1) + if (mddev->ro == MD_RDONLY) { + err = -ENXIO; goto out; - mddev->ro = 1; + } + + mddev->ro = MD_RDONLY; set_disk_ro(mddev->gendisk, 1); + } + +out: + if ((mddev->pers && !err) || did_freeze) { clear_bit(MD_RECOVERY_FROZEN, &mddev->recovery); set_bit(MD_RECOVERY_NEEDED, &mddev->recovery); md_wakeup_thread(mddev->thread); sysfs_notify_dirent_safe(mddev->sysfs_state); - err = 0; } -out: + mutex_unlock(&mddev->open_mutex); return err; } @@ -6396,7 +6410,7 @@ static int do_md_stop(struct mddev *mddev, int mode, return -EBUSY; } if (mddev->pers) { - if (mddev->ro) + if (!md_is_rdwr(mddev)) set_disk_ro(disk, 0); __md_stop_writes(mddev); @@ -6413,8 +6427,8 @@ static int do_md_stop(struct mddev *mddev, int mode, mutex_unlock(&mddev->open_mutex); mddev->changed = 1; - if (mddev->ro) - mddev->ro = 0; + if (!md_is_rdwr(mddev)) + mddev->ro = MD_RDWR; } else mutex_unlock(&mddev->open_mutex); /* @@ -7226,7 +7240,7 @@ static int update_size(struct mddev *mddev, sector_t num_sectors) if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery) || mddev->sync_thread) return -EBUSY; - if (mddev->ro) + if (!md_is_rdwr(mddev)) return -EROFS; rdev_for_each(rdev, mddev) { @@ -7256,7 +7270,7 @@ static int update_raid_disks(struct mddev *mddev, int raid_disks) /* change the number of raid disks */ if (mddev->pers->check_reshape == NULL) return -EINVAL; - if (mddev->ro) + if (!md_is_rdwr(mddev)) return -EROFS; if (raid_disks <= 0 || (mddev->max_disks && raid_disks >= mddev->max_disks)) @@ -7439,7 +7453,7 @@ static int set_disk_faulty(struct mddev *mddev, dev_t dev) err = -ENODEV; else { md_error(mddev, rdev); - if (!test_bit(Faulty, &rdev->flags)) + if (test_bit(MD_BROKEN, &mddev->flags)) err = -EBUSY; } rcu_read_unlock(); @@ -7680,26 +7694,25 @@ static int md_ioctl(struct block_device *bdev, fmode_t mode, * The remaining ioctls are changing the state of the * superblock, so we do not allow them on read-only arrays. */ - if (mddev->ro && mddev->pers) { - if (mddev->ro == 2) { - mddev->ro = 0; - sysfs_notify_dirent_safe(mddev->sysfs_state); - set_bit(MD_RECOVERY_NEEDED, &mddev->recovery); - /* mddev_unlock will wake thread */ - /* If a device failed while we were read-only, we - * need to make sure the metadata is updated now. - */ - if (test_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags)) { - mddev_unlock(mddev); - wait_event(mddev->sb_wait, - !test_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags) && - !test_bit(MD_SB_CHANGE_PENDING, &mddev->sb_flags)); - mddev_lock_nointr(mddev); - } - } else { + if (!md_is_rdwr(mddev) && mddev->pers) { + if (mddev->ro != MD_AUTO_READ) { err = -EROFS; goto unlock; } + mddev->ro = MD_RDWR; + sysfs_notify_dirent_safe(mddev->sysfs_state); + set_bit(MD_RECOVERY_NEEDED, &mddev->recovery); + /* mddev_unlock will wake thread */ + /* If a device failed while we were read-only, we + * need to make sure the metadata is updated now. + */ + if (test_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags)) { + mddev_unlock(mddev); + wait_event(mddev->sb_wait, + !test_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags) && + !test_bit(MD_SB_CHANGE_PENDING, &mddev->sb_flags)); + mddev_lock_nointr(mddev); + } } switch (cmd) { @@ -7785,11 +7798,11 @@ static int md_set_read_only(struct block_device *bdev, bool ro) * Transitioning to read-auto need only happen for arrays that call * md_write_start and which are not ready for writes yet. */ - if (!ro && mddev->ro == 1 && mddev->pers) { + if (!ro && mddev->ro == MD_RDONLY && mddev->pers) { err = restart_array(mddev); if (err) goto out_unlock; - mddev->ro = 2; + mddev->ro = MD_AUTO_READ; } out_unlock: @@ -7985,13 +7998,19 @@ void md_error(struct mddev *mddev, struct md_rdev *rdev) if (!mddev->pers || !mddev->pers->error_handler) return; - mddev->pers->error_handler(mddev,rdev); - if (mddev->degraded) + mddev->pers->error_handler(mddev, rdev); + + if (mddev->pers->level == 0 || mddev->pers->level == LEVEL_LINEAR) + return; + + if (mddev->degraded && !test_bit(MD_BROKEN, &mddev->flags)) set_bit(MD_RECOVERY_RECOVER, &mddev->recovery); sysfs_notify_dirent_safe(rdev->sysfs_state); set_bit(MD_RECOVERY_INTR, &mddev->recovery); - set_bit(MD_RECOVERY_NEEDED, &mddev->recovery); - md_wakeup_thread(mddev->thread); + if (!test_bit(MD_BROKEN, &mddev->flags)) { + set_bit(MD_RECOVERY_NEEDED, &mddev->recovery); + md_wakeup_thread(mddev->thread); + } if (mddev->event_work.func) queue_work(md_misc_wq, &mddev->event_work); md_new_event(mddev); @@ -8241,9 +8260,9 @@ static int md_seq_show(struct seq_file *seq, void *v) seq_printf(seq, "%s : %sactive", mdname(mddev), mddev->pers ? "" : "in"); if (mddev->pers) { - if (mddev->ro==1) + if (mddev->ro == MD_RDONLY) seq_printf(seq, " (read-only)"); - if (mddev->ro==2) + if (mddev->ro == MD_AUTO_READ) seq_printf(seq, " (auto-read-only)"); seq_printf(seq, " %s", mddev->pers->name); } @@ -8503,10 +8522,10 @@ bool md_write_start(struct mddev *mddev, struct bio *bi) if (bio_data_dir(bi) != WRITE) return true; - BUG_ON(mddev->ro == 1); - if (mddev->ro == 2) { + BUG_ON(mddev->ro == MD_RDONLY); + if (mddev->ro == MD_AUTO_READ) { /* need to switch to read/write */ - mddev->ro = 0; + mddev->ro = MD_RDWR; set_bit(MD_RECOVERY_NEEDED, &mddev->recovery); md_wakeup_thread(mddev->thread); md_wakeup_thread(mddev->sync_thread); @@ -8557,7 +8576,7 @@ void md_write_inc(struct mddev *mddev, struct bio *bi) { if (bio_data_dir(bi) != WRITE) return; - WARN_ON_ONCE(mddev->in_sync || mddev->ro); + WARN_ON_ONCE(mddev->in_sync || !md_is_rdwr(mddev)); percpu_ref_get(&mddev->writes_pending); } EXPORT_SYMBOL(md_write_inc); @@ -8621,7 +8640,8 @@ static void md_end_io_acct(struct bio *bio) struct md_io_acct *md_io_acct = bio->bi_private; struct bio *orig_bio = md_io_acct->orig_bio; - orig_bio->bi_status = bio->bi_status; + if (bio->bi_status && !orig_bio->bi_status) + orig_bio->bi_status = bio->bi_status; bio_end_io_acct(orig_bio, md_io_acct->start_time); bio_put(bio); @@ -8661,7 +8681,7 @@ void md_allow_write(struct mddev *mddev) { if (!mddev->pers) return; - if (mddev->ro) + if (!md_is_rdwr(mddev)) return; if (!mddev->pers->sync_request) return; @@ -8710,7 +8730,7 @@ void md_do_sync(struct md_thread *thread) if (test_bit(MD_RECOVERY_DONE, &mddev->recovery) || test_bit(MD_RECOVERY_WAIT, &mddev->recovery)) return; - if (mddev->ro) {/* never try to sync a read-only array */ + if (!md_is_rdwr(mddev)) {/* never try to sync a read-only array */ set_bit(MD_RECOVERY_INTR, &mddev->recovery); return; } @@ -9178,9 +9198,9 @@ static int remove_and_add_spares(struct mddev *mddev, if (test_bit(Faulty, &rdev->flags)) continue; if (!test_bit(Journal, &rdev->flags)) { - if (mddev->ro && - ! (rdev->saved_raid_disk >= 0 && - !test_bit(Bitmap_sync, &rdev->flags))) + if (!md_is_rdwr(mddev) && + !(rdev->saved_raid_disk >= 0 && + !test_bit(Bitmap_sync, &rdev->flags))) continue; rdev->recovery_offset = 0; @@ -9278,7 +9298,8 @@ void md_check_recovery(struct mddev *mddev) flush_signals(current); } - if (mddev->ro && !test_bit(MD_RECOVERY_NEEDED, &mddev->recovery)) + if (!md_is_rdwr(mddev) && + !test_bit(MD_RECOVERY_NEEDED, &mddev->recovery)) return; if ( ! ( (mddev->sb_flags & ~ (1<external && mddev->safemode == 1) mddev->safemode = 0; - if (mddev->ro) { + if (!md_is_rdwr(mddev)) { struct md_rdev *rdev; if (!mddev->external && mddev->in_sync) /* 'Blocked' flag not needed as failed devices diff --git a/drivers/md/md.h b/drivers/md/md.h index 62852d7011457..99780e89531e5 100644 --- a/drivers/md/md.h +++ b/drivers/md/md.h @@ -234,34 +234,42 @@ extern int rdev_clear_badblocks(struct md_rdev *rdev, sector_t s, int sectors, int is_new); struct md_cluster_info; -/* change UNSUPPORTED_MDDEV_FLAGS for each array type if new flag is added */ +/** + * enum mddev_flags - md device flags. + * @MD_ARRAY_FIRST_USE: First use of array, needs initialization. + * @MD_CLOSING: If set, we are closing the array, do not open it then. + * @MD_JOURNAL_CLEAN: A raid with journal is already clean. + * @MD_HAS_JOURNAL: The raid array has journal feature set. + * @MD_CLUSTER_RESYNC_LOCKED: cluster raid only, which means node, already took + * resync lock, need to release the lock. + * @MD_FAILFAST_SUPPORTED: Using MD_FAILFAST on metadata writes is supported as + * calls to md_error() will never cause the array to + * become failed. + * @MD_HAS_PPL: The raid array has PPL feature set. + * @MD_HAS_MULTIPLE_PPLS: The raid array has multiple PPLs feature set. + * @MD_ALLOW_SB_UPDATE: md_check_recovery is allowed to update the metadata + * without taking reconfig_mutex. + * @MD_UPDATING_SB: md_check_recovery is updating the metadata without + * explicitly holding reconfig_mutex. + * @MD_NOT_READY: do_md_run() is active, so 'array_state', ust not report that + * array is ready yet. + * @MD_BROKEN: This is used to stop writes and mark array as failed. + * + * change UNSUPPORTED_MDDEV_FLAGS for each array type if new flag is added + */ enum mddev_flags { - MD_ARRAY_FIRST_USE, /* First use of array, needs initialization */ - MD_CLOSING, /* If set, we are closing the array, do not open - * it then */ - MD_JOURNAL_CLEAN, /* A raid with journal is already clean */ - MD_HAS_JOURNAL, /* The raid array has journal feature set */ - MD_CLUSTER_RESYNC_LOCKED, /* cluster raid only, which means node - * already took resync lock, need to - * release the lock */ - MD_FAILFAST_SUPPORTED, /* Using MD_FAILFAST on metadata writes is - * supported as calls to md_error() will - * never cause the array to become failed. - */ - MD_HAS_PPL, /* The raid array has PPL feature set */ - MD_HAS_MULTIPLE_PPLS, /* The raid array has multiple PPLs feature set */ - MD_ALLOW_SB_UPDATE, /* md_check_recovery is allowed to update - * the metadata without taking reconfig_mutex. - */ - MD_UPDATING_SB, /* md_check_recovery is updating the metadata - * without explicitly holding reconfig_mutex. - */ - MD_NOT_READY, /* do_md_run() is active, so 'array_state' - * must not report that array is ready yet - */ - MD_BROKEN, /* This is used in RAID-0/LINEAR only, to stop - * I/O in case an array member is gone/failed. - */ + MD_ARRAY_FIRST_USE, + MD_CLOSING, + MD_JOURNAL_CLEAN, + MD_HAS_JOURNAL, + MD_CLUSTER_RESYNC_LOCKED, + MD_FAILFAST_SUPPORTED, + MD_HAS_PPL, + MD_HAS_MULTIPLE_PPLS, + MD_ALLOW_SB_UPDATE, + MD_UPDATING_SB, + MD_NOT_READY, + MD_BROKEN, }; enum mddev_sb_flags { @@ -764,15 +772,9 @@ extern void mddev_destroy_serial_pool(struct mddev *mddev, struct md_rdev *rdev, struct md_rdev *md_find_rdev_nr_rcu(struct mddev *mddev, int nr); struct md_rdev *md_find_rdev_rcu(struct mddev *mddev, dev_t dev); -static inline bool is_mddev_broken(struct md_rdev *rdev, const char *md_type) +static inline bool is_rdev_broken(struct md_rdev *rdev) { - if (!disk_live(rdev->bdev->bd_disk)) { - if (!test_and_set_bit(MD_BROKEN, &rdev->mddev->flags)) - pr_warn("md: %s: %s array has a missing/failed member\n", - mdname(rdev->mddev), md_type); - return true; - } - return false; + return !disk_live(rdev->bdev->bd_disk); } static inline void rdev_dec_pending(struct md_rdev *rdev, struct mddev *mddev) diff --git a/drivers/md/raid0.c b/drivers/md/raid0.c index 4bc3f31c088db..210c743f2968f 100644 --- a/drivers/md/raid0.c +++ b/drivers/md/raid0.c @@ -572,54 +572,20 @@ static void raid0_handle_discard(struct mddev *mddev, struct bio *bio) bio_endio(bio); } -static bool raid0_make_request(struct mddev *mddev, struct bio *bio) +static void raid0_map_submit_bio(struct mddev *mddev, struct bio *bio) { struct r0conf *conf = mddev->private; struct strip_zone *zone; struct md_rdev *tmp_dev; - sector_t bio_sector; - sector_t sector; - sector_t orig_sector; - unsigned chunk_sects; - unsigned sectors; - - if (unlikely(bio->bi_opf & REQ_PREFLUSH) - && md_flush_request(mddev, bio)) - return true; - - if (unlikely((bio_op(bio) == REQ_OP_DISCARD))) { - raid0_handle_discard(mddev, bio); - return true; - } - - bio_sector = bio->bi_iter.bi_sector; - sector = bio_sector; - chunk_sects = mddev->chunk_sectors; - - sectors = chunk_sects - - (likely(is_power_of_2(chunk_sects)) - ? (sector & (chunk_sects-1)) - : sector_div(sector, chunk_sects)); + sector_t bio_sector = bio->bi_iter.bi_sector; + sector_t sector = bio_sector; - /* Restore due to sector_div */ - sector = bio_sector; + md_account_bio(mddev, &bio); - if (sectors < bio_sectors(bio)) { - struct bio *split = bio_split(bio, sectors, GFP_NOIO, - &mddev->bio_set); - bio_chain(split, bio); - submit_bio_noacct(bio); - bio = split; - } - - if (bio->bi_pool != &mddev->bio_set) - md_account_bio(mddev, &bio); - - orig_sector = sector; zone = find_zone(mddev->private, §or); switch (conf->layout) { case RAID0_ORIG_LAYOUT: - tmp_dev = map_sector(mddev, zone, orig_sector, §or); + tmp_dev = map_sector(mddev, zone, bio_sector, §or); break; case RAID0_ALT_MULTIZONE_LAYOUT: tmp_dev = map_sector(mddev, zone, sector, §or); @@ -627,12 +593,13 @@ static bool raid0_make_request(struct mddev *mddev, struct bio *bio) default: WARN(1, "md/raid0:%s: Invalid layout\n", mdname(mddev)); bio_io_error(bio); - return true; + return; } - if (unlikely(is_mddev_broken(tmp_dev, "raid0"))) { + if (unlikely(is_rdev_broken(tmp_dev))) { bio_io_error(bio); - return true; + md_error(mddev, tmp_dev); + return; } bio_set_dev(bio, tmp_dev->bdev); @@ -645,6 +612,40 @@ static bool raid0_make_request(struct mddev *mddev, struct bio *bio) mddev_check_writesame(mddev, bio); mddev_check_write_zeroes(mddev, bio); submit_bio_noacct(bio); +} + +static bool raid0_make_request(struct mddev *mddev, struct bio *bio) +{ + sector_t sector; + unsigned chunk_sects; + unsigned sectors; + + if (unlikely(bio->bi_opf & REQ_PREFLUSH) + && md_flush_request(mddev, bio)) + return true; + + if (unlikely((bio_op(bio) == REQ_OP_DISCARD))) { + raid0_handle_discard(mddev, bio); + return true; + } + + sector = bio->bi_iter.bi_sector; + chunk_sects = mddev->chunk_sectors; + + sectors = chunk_sects - + (likely(is_power_of_2(chunk_sects)) + ? (sector & (chunk_sects-1)) + : sector_div(sector, chunk_sects)); + + if (sectors < bio_sectors(bio)) { + struct bio *split = bio_split(bio, sectors, GFP_NOIO, + &mddev->bio_set); + bio_chain(split, bio); + raid0_map_submit_bio(mddev, bio); + bio = split; + } + + raid0_map_submit_bio(mddev, bio); return true; } @@ -654,6 +655,16 @@ static void raid0_status(struct seq_file *seq, struct mddev *mddev) return; } +static void raid0_error(struct mddev *mddev, struct md_rdev *rdev) +{ + if (!test_and_set_bit(MD_BROKEN, &mddev->flags)) { + char *md_name = mdname(mddev); + + pr_crit("md/raid0%s: Disk failure on %pg detected, failing array.\n", + md_name, rdev->bdev); + } +} + static void *raid0_takeover_raid45(struct mddev *mddev) { struct md_rdev *rdev; @@ -829,6 +840,7 @@ static struct md_personality raid0_personality= .size = raid0_size, .takeover = raid0_takeover, .quiesce = raid0_quiesce, + .error_handler = raid0_error, }; static int __init raid0_init (void) diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c index 47997a9a3ca18..8427c9767a61b 100644 --- a/drivers/md/raid1.c +++ b/drivers/md/raid1.c @@ -1611,30 +1611,39 @@ static void raid1_status(struct seq_file *seq, struct mddev *mddev) seq_printf(seq, "]"); } +/** + * raid1_error() - RAID1 error handler. + * @mddev: affected md device. + * @rdev: member device to fail. + * + * The routine acknowledges &rdev failure and determines new @mddev state. + * If it failed, then: + * - &MD_BROKEN flag is set in &mddev->flags. + * - recovery is disabled. + * Otherwise, it must be degraded: + * - recovery is interrupted. + * - &mddev->degraded is bumped. + * + * @rdev is marked as &Faulty excluding case when array is failed and + * &mddev->fail_last_dev is off. + */ static void raid1_error(struct mddev *mddev, struct md_rdev *rdev) { char b[BDEVNAME_SIZE]; struct r1conf *conf = mddev->private; unsigned long flags; - /* - * If it is not operational, then we have already marked it as dead - * else if it is the last working disks with "fail_last_dev == false", - * ignore the error, let the next level up know. - * else mark the drive as failed - */ spin_lock_irqsave(&conf->device_lock, flags); - if (test_bit(In_sync, &rdev->flags) && !mddev->fail_last_dev - && (conf->raid_disks - mddev->degraded) == 1) { - /* - * Don't fail the drive, act as though we were just a - * normal single drive. - * However don't try a recovery from this drive as - * it is very likely to fail. - */ - conf->recovery_disabled = mddev->recovery_disabled; - spin_unlock_irqrestore(&conf->device_lock, flags); - return; + + if (test_bit(In_sync, &rdev->flags) && + (conf->raid_disks - mddev->degraded) == 1) { + set_bit(MD_BROKEN, &mddev->flags); + + if (!mddev->fail_last_dev) { + conf->recovery_disabled = mddev->recovery_disabled; + spin_unlock_irqrestore(&conf->device_lock, flags); + return; + } } set_bit(Blocked, &rdev->flags); if (test_and_clear_bit(In_sync, &rdev->flags)) @@ -1813,6 +1822,9 @@ static int raid1_remove_disk(struct mddev *mddev, struct md_rdev *rdev) int number = rdev->raid_disk; struct raid1_info *p = conf->mirrors + number; + if (unlikely(number >= conf->raid_disks)) + goto abort; + if (rdev != p->rdev) p = conf->mirrors + conf->raid_disks + number; diff --git a/drivers/md/raid10.c b/drivers/md/raid10.c index edd3b65c447db..910e7db7d5736 100644 --- a/drivers/md/raid10.c +++ b/drivers/md/raid10.c @@ -1316,6 +1316,25 @@ static void raid10_write_one_disk(struct mddev *mddev, struct r10bio *r10_bio, } } +static struct md_rdev *dereference_rdev_and_rrdev(struct raid10_info *mirror, + struct md_rdev **prrdev) +{ + struct md_rdev *rdev, *rrdev; + + rrdev = rcu_dereference(mirror->replacement); + /* + * Read replacement first to prevent reading both rdev and + * replacement as NULL during replacement replace rdev. + */ + smp_mb(); + rdev = rcu_dereference(mirror->rdev); + if (rdev == rrdev) + rrdev = NULL; + + *prrdev = rrdev; + return rdev; +} + static void wait_blocked_dev(struct mddev *mddev, struct r10bio *r10_bio) { int i; @@ -1326,11 +1345,9 @@ static void wait_blocked_dev(struct mddev *mddev, struct r10bio *r10_bio) blocked_rdev = NULL; rcu_read_lock(); for (i = 0; i < conf->copies; i++) { - struct md_rdev *rdev = rcu_dereference(conf->mirrors[i].rdev); - struct md_rdev *rrdev = rcu_dereference( - conf->mirrors[i].replacement); - if (rdev == rrdev) - rrdev = NULL; + struct md_rdev *rdev, *rrdev; + + rdev = dereference_rdev_and_rrdev(&conf->mirrors[i], &rrdev); if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) { atomic_inc(&rdev->nr_pending); blocked_rdev = rdev; @@ -1459,15 +1476,7 @@ static void raid10_write_request(struct mddev *mddev, struct bio *bio, int d = r10_bio->devs[i].devnum; struct md_rdev *rdev, *rrdev; - rrdev = rcu_dereference(conf->mirrors[d].replacement); - /* - * Read replacement first to prevent reading both rdev and - * replacement as NULL during replacement replace rdev. - */ - smp_mb(); - rdev = rcu_dereference(conf->mirrors[d].rdev); - if (rdev == rrdev) - rrdev = NULL; + rdev = dereference_rdev_and_rrdev(&conf->mirrors[d], &rrdev); if (rdev && (test_bit(Faulty, &rdev->flags))) rdev = NULL; if (rrdev && (test_bit(Faulty, &rrdev->flags))) @@ -1774,10 +1783,9 @@ static int raid10_handle_discard(struct mddev *mddev, struct bio *bio) */ rcu_read_lock(); for (disk = 0; disk < geo->raid_disks; disk++) { - struct md_rdev *rdev = rcu_dereference(conf->mirrors[disk].rdev); - struct md_rdev *rrdev = rcu_dereference( - conf->mirrors[disk].replacement); + struct md_rdev *rdev, *rrdev; + rdev = dereference_rdev_and_rrdev(&conf->mirrors[disk], &rrdev); r10_bio->devs[disk].bio = NULL; r10_bio->devs[disk].repl_bio = NULL; @@ -2000,32 +2008,40 @@ static int enough(struct r10conf *conf, int ignore) _enough(conf, 1, ignore); } +/** + * raid10_error() - RAID10 error handler. + * @mddev: affected md device. + * @rdev: member device to fail. + * + * The routine acknowledges &rdev failure and determines new @mddev state. + * If it failed, then: + * - &MD_BROKEN flag is set in &mddev->flags. + * Otherwise, it must be degraded: + * - recovery is interrupted. + * - &mddev->degraded is bumped. + + * @rdev is marked as &Faulty excluding case when array is failed and + * &mddev->fail_last_dev is off. + */ static void raid10_error(struct mddev *mddev, struct md_rdev *rdev) { char b[BDEVNAME_SIZE]; struct r10conf *conf = mddev->private; unsigned long flags; - /* - * If it is not operational, then we have already marked it as dead - * else if it is the last working disks with "fail_last_dev == false", - * ignore the error, let the next level up know. - * else mark the drive as failed - */ spin_lock_irqsave(&conf->device_lock, flags); - if (test_bit(In_sync, &rdev->flags) && !mddev->fail_last_dev - && !enough(conf, rdev->raid_disk)) { - /* - * Don't fail the drive, just return an IO error. - */ - spin_unlock_irqrestore(&conf->device_lock, flags); - return; + + if (test_bit(In_sync, &rdev->flags) && !enough(conf, rdev->raid_disk)) { + set_bit(MD_BROKEN, &mddev->flags); + + if (!mddev->fail_last_dev) { + spin_unlock_irqrestore(&conf->device_lock, flags); + return; + } } if (test_and_clear_bit(In_sync, &rdev->flags)) mddev->degraded++; - /* - * If recovery is running, make sure it aborts. - */ + set_bit(MD_RECOVERY_INTR, &mddev->recovery); set_bit(Blocked, &rdev->flags); set_bit(Faulty, &rdev->flags); diff --git a/drivers/media/cec/platform/Makefile b/drivers/media/cec/platform/Makefile index ea6f8ee8161c9..e5e441faa0baa 100644 --- a/drivers/media/cec/platform/Makefile +++ b/drivers/media/cec/platform/Makefile @@ -6,7 +6,7 @@ # Please keep it in alphabetic order obj-$(CONFIG_CEC_CROS_EC) += cros-ec/ obj-$(CONFIG_CEC_GPIO) += cec-gpio/ -obj-$(CONFIG_CEC_MESON_AO) += meson/ +obj-y += meson/ obj-$(CONFIG_CEC_SAMSUNG_S5P) += s5p/ obj-$(CONFIG_CEC_SECO) += seco/ obj-$(CONFIG_CEC_STI) += sti/ diff --git a/drivers/media/cec/usb/pulse8/pulse8-cec.c b/drivers/media/cec/usb/pulse8/pulse8-cec.c index 04b13cdc38d2c..ba67587bd43ec 100644 --- a/drivers/media/cec/usb/pulse8/pulse8-cec.c +++ b/drivers/media/cec/usb/pulse8/pulse8-cec.c @@ -809,8 +809,11 @@ static void pulse8_ping_eeprom_work_handler(struct work_struct *work) mutex_lock(&pulse8->lock); cmd = MSGCODE_PING; - pulse8_send_and_wait(pulse8, &cmd, 1, - MSGCODE_COMMAND_ACCEPTED, 0); + if (pulse8_send_and_wait(pulse8, &cmd, 1, + MSGCODE_COMMAND_ACCEPTED, 0)) { + dev_warn(pulse8->dev, "failed to ping EEPROM\n"); + goto unlock; + } if (pulse8->vers < 2) goto unlock; diff --git a/drivers/media/common/videobuf2/frame_vector.c b/drivers/media/common/videobuf2/frame_vector.c index 144027035892a..07ebe4424df3a 100644 --- a/drivers/media/common/videobuf2/frame_vector.c +++ b/drivers/media/common/videobuf2/frame_vector.c @@ -30,6 +30,10 @@ * different type underlying the specified range of virtual addresses. * When the function isn't able to map a single page, it returns error. * + * Note that get_vaddr_frames() cannot follow VM_IO mappings. It used + * to be able to do that, but that could (racily) return non-refcounted + * pfns. + * * This function takes care of grabbing mmap_lock as necessary. */ int get_vaddr_frames(unsigned long start, unsigned int nr_frames, @@ -55,8 +59,6 @@ int get_vaddr_frames(unsigned long start, unsigned int nr_frames, if (likely(ret > 0)) return ret; - /* This used to (racily) return non-refcounted pfns. Let people know */ - WARN_ONCE(1, "get_vaddr_frames() cannot follow VM_IO mapping"); vec->nr_frames = 0; return ret ? ret : -EFAULT; } diff --git a/drivers/media/dvb-frontends/ascot2e.c b/drivers/media/dvb-frontends/ascot2e.c index 9b00b56230b61..cf8e5f1bd1018 100644 --- a/drivers/media/dvb-frontends/ascot2e.c +++ b/drivers/media/dvb-frontends/ascot2e.c @@ -533,7 +533,7 @@ struct dvb_frontend *ascot2e_attach(struct dvb_frontend *fe, priv->i2c_address, priv->i2c); return fe; } -EXPORT_SYMBOL(ascot2e_attach); +EXPORT_SYMBOL_GPL(ascot2e_attach); MODULE_DESCRIPTION("Sony ASCOT2E terr/cab tuner driver"); MODULE_AUTHOR("info@netup.ru"); diff --git a/drivers/media/dvb-frontends/atbm8830.c b/drivers/media/dvb-frontends/atbm8830.c index bdd16b9c58244..778c865085bf9 100644 --- a/drivers/media/dvb-frontends/atbm8830.c +++ b/drivers/media/dvb-frontends/atbm8830.c @@ -489,7 +489,7 @@ struct dvb_frontend *atbm8830_attach(const struct atbm8830_config *config, return NULL; } -EXPORT_SYMBOL(atbm8830_attach); +EXPORT_SYMBOL_GPL(atbm8830_attach); MODULE_DESCRIPTION("AltoBeam ATBM8830/8831 GB20600 demodulator driver"); MODULE_AUTHOR("David T. L. Wong "); diff --git a/drivers/media/dvb-frontends/au8522_dig.c b/drivers/media/dvb-frontends/au8522_dig.c index 78cafdf279618..230436bf6cbd9 100644 --- a/drivers/media/dvb-frontends/au8522_dig.c +++ b/drivers/media/dvb-frontends/au8522_dig.c @@ -879,7 +879,7 @@ struct dvb_frontend *au8522_attach(const struct au8522_config *config, au8522_release_state(state); return NULL; } -EXPORT_SYMBOL(au8522_attach); +EXPORT_SYMBOL_GPL(au8522_attach); static const struct dvb_frontend_ops au8522_ops = { .delsys = { SYS_ATSC, SYS_DVBC_ANNEX_B }, diff --git a/drivers/media/dvb-frontends/bcm3510.c b/drivers/media/dvb-frontends/bcm3510.c index 68b92b4419cff..b3f5c49accafd 100644 --- a/drivers/media/dvb-frontends/bcm3510.c +++ b/drivers/media/dvb-frontends/bcm3510.c @@ -835,7 +835,7 @@ struct dvb_frontend* bcm3510_attach(const struct bcm3510_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(bcm3510_attach); +EXPORT_SYMBOL_GPL(bcm3510_attach); static const struct dvb_frontend_ops bcm3510_ops = { .delsys = { SYS_ATSC, SYS_DVBC_ANNEX_B }, diff --git a/drivers/media/dvb-frontends/cx22700.c b/drivers/media/dvb-frontends/cx22700.c index b39ff516271b2..1d04c0a652b26 100644 --- a/drivers/media/dvb-frontends/cx22700.c +++ b/drivers/media/dvb-frontends/cx22700.c @@ -432,4 +432,4 @@ MODULE_DESCRIPTION("Conexant CX22700 DVB-T Demodulator driver"); MODULE_AUTHOR("Holger Waechtler"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(cx22700_attach); +EXPORT_SYMBOL_GPL(cx22700_attach); diff --git a/drivers/media/dvb-frontends/cx22702.c b/drivers/media/dvb-frontends/cx22702.c index cc6acbf6393d4..61ad34b7004b5 100644 --- a/drivers/media/dvb-frontends/cx22702.c +++ b/drivers/media/dvb-frontends/cx22702.c @@ -604,7 +604,7 @@ struct dvb_frontend *cx22702_attach(const struct cx22702_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(cx22702_attach); +EXPORT_SYMBOL_GPL(cx22702_attach); static const struct dvb_frontend_ops cx22702_ops = { .delsys = { SYS_DVBT }, diff --git a/drivers/media/dvb-frontends/cx24110.c b/drivers/media/dvb-frontends/cx24110.c index 6f99d6a27be2d..9aeea089756fe 100644 --- a/drivers/media/dvb-frontends/cx24110.c +++ b/drivers/media/dvb-frontends/cx24110.c @@ -653,4 +653,4 @@ MODULE_DESCRIPTION("Conexant CX24110 DVB-S Demodulator driver"); MODULE_AUTHOR("Peter Hettkamp"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(cx24110_attach); +EXPORT_SYMBOL_GPL(cx24110_attach); diff --git a/drivers/media/dvb-frontends/cx24113.c b/drivers/media/dvb-frontends/cx24113.c index 60a9f70275f75..619df8329fbbc 100644 --- a/drivers/media/dvb-frontends/cx24113.c +++ b/drivers/media/dvb-frontends/cx24113.c @@ -590,7 +590,7 @@ struct dvb_frontend *cx24113_attach(struct dvb_frontend *fe, return NULL; } -EXPORT_SYMBOL(cx24113_attach); +EXPORT_SYMBOL_GPL(cx24113_attach); module_param(debug, int, 0644); MODULE_PARM_DESC(debug, "Activates frontend debugging (default:0)"); diff --git a/drivers/media/dvb-frontends/cx24116.c b/drivers/media/dvb-frontends/cx24116.c index ea8264ccbb4e8..8b978a9f74a4e 100644 --- a/drivers/media/dvb-frontends/cx24116.c +++ b/drivers/media/dvb-frontends/cx24116.c @@ -1133,7 +1133,7 @@ struct dvb_frontend *cx24116_attach(const struct cx24116_config *config, state->frontend.demodulator_priv = state; return &state->frontend; } -EXPORT_SYMBOL(cx24116_attach); +EXPORT_SYMBOL_GPL(cx24116_attach); /* * Initialise or wake up device diff --git a/drivers/media/dvb-frontends/cx24120.c b/drivers/media/dvb-frontends/cx24120.c index d8acd582c7111..44515fdbe91d4 100644 --- a/drivers/media/dvb-frontends/cx24120.c +++ b/drivers/media/dvb-frontends/cx24120.c @@ -305,7 +305,7 @@ struct dvb_frontend *cx24120_attach(const struct cx24120_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(cx24120_attach); +EXPORT_SYMBOL_GPL(cx24120_attach); static int cx24120_test_rom(struct cx24120_state *state) { @@ -973,7 +973,9 @@ static void cx24120_set_clock_ratios(struct dvb_frontend *fe) cmd.arg[8] = (clock_ratios_table[idx].rate >> 8) & 0xff; cmd.arg[9] = (clock_ratios_table[idx].rate >> 0) & 0xff; - cx24120_message_send(state, &cmd); + ret = cx24120_message_send(state, &cmd); + if (ret != 0) + return; /* Calculate ber window rates for stat work */ cx24120_calculate_ber_window(state, clock_ratios_table[idx].rate); diff --git a/drivers/media/dvb-frontends/cx24123.c b/drivers/media/dvb-frontends/cx24123.c index 3d84ee17e54c6..539889e638ccc 100644 --- a/drivers/media/dvb-frontends/cx24123.c +++ b/drivers/media/dvb-frontends/cx24123.c @@ -1096,7 +1096,7 @@ struct dvb_frontend *cx24123_attach(const struct cx24123_config *config, return NULL; } -EXPORT_SYMBOL(cx24123_attach); +EXPORT_SYMBOL_GPL(cx24123_attach); static const struct dvb_frontend_ops cx24123_ops = { .delsys = { SYS_DVBS }, diff --git a/drivers/media/dvb-frontends/cxd2820r_core.c b/drivers/media/dvb-frontends/cxd2820r_core.c index b1618339eec0e..b0e6343ea5911 100644 --- a/drivers/media/dvb-frontends/cxd2820r_core.c +++ b/drivers/media/dvb-frontends/cxd2820r_core.c @@ -536,7 +536,7 @@ struct dvb_frontend *cxd2820r_attach(const struct cxd2820r_config *config, return pdata.get_dvb_frontend(client); } -EXPORT_SYMBOL(cxd2820r_attach); +EXPORT_SYMBOL_GPL(cxd2820r_attach); static struct dvb_frontend *cxd2820r_get_dvb_frontend(struct i2c_client *client) { diff --git a/drivers/media/dvb-frontends/cxd2841er.c b/drivers/media/dvb-frontends/cxd2841er.c index 5431f922f55e4..e9d1eef40c627 100644 --- a/drivers/media/dvb-frontends/cxd2841er.c +++ b/drivers/media/dvb-frontends/cxd2841er.c @@ -3930,14 +3930,14 @@ struct dvb_frontend *cxd2841er_attach_s(struct cxd2841er_config *cfg, { return cxd2841er_attach(cfg, i2c, SYS_DVBS); } -EXPORT_SYMBOL(cxd2841er_attach_s); +EXPORT_SYMBOL_GPL(cxd2841er_attach_s); struct dvb_frontend *cxd2841er_attach_t_c(struct cxd2841er_config *cfg, struct i2c_adapter *i2c) { return cxd2841er_attach(cfg, i2c, 0); } -EXPORT_SYMBOL(cxd2841er_attach_t_c); +EXPORT_SYMBOL_GPL(cxd2841er_attach_t_c); static const struct dvb_frontend_ops cxd2841er_dvbs_s2_ops = { .delsys = { SYS_DVBS, SYS_DVBS2 }, diff --git a/drivers/media/dvb-frontends/cxd2880/cxd2880_top.c b/drivers/media/dvb-frontends/cxd2880/cxd2880_top.c index d5b1b3788e392..09d31c368741d 100644 --- a/drivers/media/dvb-frontends/cxd2880/cxd2880_top.c +++ b/drivers/media/dvb-frontends/cxd2880/cxd2880_top.c @@ -1950,7 +1950,7 @@ struct dvb_frontend *cxd2880_attach(struct dvb_frontend *fe, return fe; } -EXPORT_SYMBOL(cxd2880_attach); +EXPORT_SYMBOL_GPL(cxd2880_attach); MODULE_DESCRIPTION("Sony CXD2880 DVB-T2/T tuner + demod driver"); MODULE_AUTHOR("Sony Semiconductor Solutions Corporation"); diff --git a/drivers/media/dvb-frontends/dib0070.c b/drivers/media/dvb-frontends/dib0070.c index cafb41dba861c..9a8e7cdd2a247 100644 --- a/drivers/media/dvb-frontends/dib0070.c +++ b/drivers/media/dvb-frontends/dib0070.c @@ -762,7 +762,7 @@ struct dvb_frontend *dib0070_attach(struct dvb_frontend *fe, struct i2c_adapter fe->tuner_priv = NULL; return NULL; } -EXPORT_SYMBOL(dib0070_attach); +EXPORT_SYMBOL_GPL(dib0070_attach); MODULE_AUTHOR("Patrick Boettcher "); MODULE_DESCRIPTION("Driver for the DiBcom 0070 base-band RF Tuner"); diff --git a/drivers/media/dvb-frontends/dib0090.c b/drivers/media/dvb-frontends/dib0090.c index 903da33642dff..c958bcff026ec 100644 --- a/drivers/media/dvb-frontends/dib0090.c +++ b/drivers/media/dvb-frontends/dib0090.c @@ -2634,7 +2634,7 @@ struct dvb_frontend *dib0090_register(struct dvb_frontend *fe, struct i2c_adapte return NULL; } -EXPORT_SYMBOL(dib0090_register); +EXPORT_SYMBOL_GPL(dib0090_register); struct dvb_frontend *dib0090_fw_register(struct dvb_frontend *fe, struct i2c_adapter *i2c, const struct dib0090_config *config) { @@ -2660,7 +2660,7 @@ struct dvb_frontend *dib0090_fw_register(struct dvb_frontend *fe, struct i2c_ada fe->tuner_priv = NULL; return NULL; } -EXPORT_SYMBOL(dib0090_fw_register); +EXPORT_SYMBOL_GPL(dib0090_fw_register); MODULE_AUTHOR("Patrick Boettcher "); MODULE_AUTHOR("Olivier Grenie "); diff --git a/drivers/media/dvb-frontends/dib3000mb.c b/drivers/media/dvb-frontends/dib3000mb.c index a6c2fc4586eb3..c598b2a633256 100644 --- a/drivers/media/dvb-frontends/dib3000mb.c +++ b/drivers/media/dvb-frontends/dib3000mb.c @@ -815,4 +815,4 @@ MODULE_AUTHOR(DRIVER_AUTHOR); MODULE_DESCRIPTION(DRIVER_DESC); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(dib3000mb_attach); +EXPORT_SYMBOL_GPL(dib3000mb_attach); diff --git a/drivers/media/dvb-frontends/dib3000mc.c b/drivers/media/dvb-frontends/dib3000mc.c index 692600ce5f230..c69665024330c 100644 --- a/drivers/media/dvb-frontends/dib3000mc.c +++ b/drivers/media/dvb-frontends/dib3000mc.c @@ -935,7 +935,7 @@ struct dvb_frontend * dib3000mc_attach(struct i2c_adapter *i2c_adap, u8 i2c_addr kfree(st); return NULL; } -EXPORT_SYMBOL(dib3000mc_attach); +EXPORT_SYMBOL_GPL(dib3000mc_attach); static const struct dvb_frontend_ops dib3000mc_ops = { .delsys = { SYS_DVBT }, diff --git a/drivers/media/dvb-frontends/dib7000m.c b/drivers/media/dvb-frontends/dib7000m.c index 97ce97789c9e3..fdb22f32e3a11 100644 --- a/drivers/media/dvb-frontends/dib7000m.c +++ b/drivers/media/dvb-frontends/dib7000m.c @@ -1434,7 +1434,7 @@ struct dvb_frontend * dib7000m_attach(struct i2c_adapter *i2c_adap, u8 i2c_addr, kfree(st); return NULL; } -EXPORT_SYMBOL(dib7000m_attach); +EXPORT_SYMBOL_GPL(dib7000m_attach); static const struct dvb_frontend_ops dib7000m_ops = { .delsys = { SYS_DVBT }, diff --git a/drivers/media/dvb-frontends/dib7000p.c b/drivers/media/dvb-frontends/dib7000p.c index 55bee50aa8716..8c426baf76ee3 100644 --- a/drivers/media/dvb-frontends/dib7000p.c +++ b/drivers/media/dvb-frontends/dib7000p.c @@ -497,7 +497,7 @@ static int dib7000p_update_pll(struct dvb_frontend *fe, struct dibx000_bandwidth prediv = reg_1856 & 0x3f; loopdiv = (reg_1856 >> 6) & 0x3f; - if ((bw != NULL) && (bw->pll_prediv != prediv || bw->pll_ratio != loopdiv)) { + if (loopdiv && bw && (bw->pll_prediv != prediv || bw->pll_ratio != loopdiv)) { dprintk("Updating pll (prediv: old = %d new = %d ; loopdiv : old = %d new = %d)\n", prediv, bw->pll_prediv, loopdiv, bw->pll_ratio); reg_1856 &= 0xf000; reg_1857 = dib7000p_read_word(state, 1857); @@ -2822,7 +2822,7 @@ void *dib7000p_attach(struct dib7000p_ops *ops) return ops; } -EXPORT_SYMBOL(dib7000p_attach); +EXPORT_SYMBOL_GPL(dib7000p_attach); static const struct dvb_frontend_ops dib7000p_ops = { .delsys = { SYS_DVBT }, diff --git a/drivers/media/dvb-frontends/dib8000.c b/drivers/media/dvb-frontends/dib8000.c index d67f2dd997d06..02cb48223dc67 100644 --- a/drivers/media/dvb-frontends/dib8000.c +++ b/drivers/media/dvb-frontends/dib8000.c @@ -4527,7 +4527,7 @@ void *dib8000_attach(struct dib8000_ops *ops) return ops; } -EXPORT_SYMBOL(dib8000_attach); +EXPORT_SYMBOL_GPL(dib8000_attach); MODULE_AUTHOR("Olivier Grenie "); MODULE_DESCRIPTION("Driver for the DiBcom 8000 ISDB-T demodulator"); diff --git a/drivers/media/dvb-frontends/dib9000.c b/drivers/media/dvb-frontends/dib9000.c index 04d92d6142797..24f7f7a7598d4 100644 --- a/drivers/media/dvb-frontends/dib9000.c +++ b/drivers/media/dvb-frontends/dib9000.c @@ -2546,7 +2546,7 @@ struct dvb_frontend *dib9000_attach(struct i2c_adapter *i2c_adap, u8 i2c_addr, c kfree(st); return NULL; } -EXPORT_SYMBOL(dib9000_attach); +EXPORT_SYMBOL_GPL(dib9000_attach); static const struct dvb_frontend_ops dib9000_ops = { .delsys = { SYS_DVBT }, diff --git a/drivers/media/dvb-frontends/drx39xyj/drxj.c b/drivers/media/dvb-frontends/drx39xyj/drxj.c index bf9e4ef35684b..88860d08f9c12 100644 --- a/drivers/media/dvb-frontends/drx39xyj/drxj.c +++ b/drivers/media/dvb-frontends/drx39xyj/drxj.c @@ -12368,7 +12368,7 @@ struct dvb_frontend *drx39xxj_attach(struct i2c_adapter *i2c) return NULL; } -EXPORT_SYMBOL(drx39xxj_attach); +EXPORT_SYMBOL_GPL(drx39xxj_attach); static const struct dvb_frontend_ops drx39xxj_ops = { .delsys = { SYS_ATSC, SYS_DVBC_ANNEX_B }, diff --git a/drivers/media/dvb-frontends/drxd_hard.c b/drivers/media/dvb-frontends/drxd_hard.c index a7eb81df88c2c..45487d1080b7d 100644 --- a/drivers/media/dvb-frontends/drxd_hard.c +++ b/drivers/media/dvb-frontends/drxd_hard.c @@ -2947,7 +2947,7 @@ struct dvb_frontend *drxd_attach(const struct drxd_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(drxd_attach); +EXPORT_SYMBOL_GPL(drxd_attach); MODULE_DESCRIPTION("DRXD driver"); MODULE_AUTHOR("Micronas"); diff --git a/drivers/media/dvb-frontends/drxk_hard.c b/drivers/media/dvb-frontends/drxk_hard.c index efe92eef67db6..e8afd5305b541 100644 --- a/drivers/media/dvb-frontends/drxk_hard.c +++ b/drivers/media/dvb-frontends/drxk_hard.c @@ -6846,7 +6846,7 @@ struct dvb_frontend *drxk_attach(const struct drxk_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(drxk_attach); +EXPORT_SYMBOL_GPL(drxk_attach); MODULE_DESCRIPTION("DRX-K driver"); MODULE_AUTHOR("Ralph Metzler"); diff --git a/drivers/media/dvb-frontends/ds3000.c b/drivers/media/dvb-frontends/ds3000.c index 20fcf31af1658..515aa7c7baf2a 100644 --- a/drivers/media/dvb-frontends/ds3000.c +++ b/drivers/media/dvb-frontends/ds3000.c @@ -859,7 +859,7 @@ struct dvb_frontend *ds3000_attach(const struct ds3000_config *config, ds3000_set_voltage(&state->frontend, SEC_VOLTAGE_OFF); return &state->frontend; } -EXPORT_SYMBOL(ds3000_attach); +EXPORT_SYMBOL_GPL(ds3000_attach); static int ds3000_set_carrier_offset(struct dvb_frontend *fe, s32 carrier_offset_khz) diff --git a/drivers/media/dvb-frontends/dvb-pll.c b/drivers/media/dvb-frontends/dvb-pll.c index d45b4ddc8f912..846bfe7ef30eb 100644 --- a/drivers/media/dvb-frontends/dvb-pll.c +++ b/drivers/media/dvb-frontends/dvb-pll.c @@ -866,7 +866,7 @@ struct dvb_frontend *dvb_pll_attach(struct dvb_frontend *fe, int pll_addr, return NULL; } -EXPORT_SYMBOL(dvb_pll_attach); +EXPORT_SYMBOL_GPL(dvb_pll_attach); static int diff --git a/drivers/media/dvb-frontends/ec100.c b/drivers/media/dvb-frontends/ec100.c index 03bd80666cf83..2ad0a3c2f7567 100644 --- a/drivers/media/dvb-frontends/ec100.c +++ b/drivers/media/dvb-frontends/ec100.c @@ -299,7 +299,7 @@ struct dvb_frontend *ec100_attach(const struct ec100_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(ec100_attach); +EXPORT_SYMBOL_GPL(ec100_attach); static const struct dvb_frontend_ops ec100_ops = { .delsys = { SYS_DVBT }, diff --git a/drivers/media/dvb-frontends/helene.c b/drivers/media/dvb-frontends/helene.c index 8c1310c6b0bc2..c299d31dc7d27 100644 --- a/drivers/media/dvb-frontends/helene.c +++ b/drivers/media/dvb-frontends/helene.c @@ -1025,7 +1025,7 @@ struct dvb_frontend *helene_attach_s(struct dvb_frontend *fe, priv->i2c_address, priv->i2c); return fe; } -EXPORT_SYMBOL(helene_attach_s); +EXPORT_SYMBOL_GPL(helene_attach_s); struct dvb_frontend *helene_attach(struct dvb_frontend *fe, const struct helene_config *config, @@ -1061,7 +1061,7 @@ struct dvb_frontend *helene_attach(struct dvb_frontend *fe, priv->i2c_address, priv->i2c); return fe; } -EXPORT_SYMBOL(helene_attach); +EXPORT_SYMBOL_GPL(helene_attach); static int helene_probe(struct i2c_client *client, const struct i2c_device_id *id) diff --git a/drivers/media/dvb-frontends/horus3a.c b/drivers/media/dvb-frontends/horus3a.c index 24bf5cbcc1846..0330b78a5b3f2 100644 --- a/drivers/media/dvb-frontends/horus3a.c +++ b/drivers/media/dvb-frontends/horus3a.c @@ -395,7 +395,7 @@ struct dvb_frontend *horus3a_attach(struct dvb_frontend *fe, priv->i2c_address, priv->i2c); return fe; } -EXPORT_SYMBOL(horus3a_attach); +EXPORT_SYMBOL_GPL(horus3a_attach); MODULE_DESCRIPTION("Sony HORUS3A satellite tuner driver"); MODULE_AUTHOR("Sergey Kozlov "); diff --git a/drivers/media/dvb-frontends/isl6405.c b/drivers/media/dvb-frontends/isl6405.c index 2cd69b4ff82cb..7d28a743f97eb 100644 --- a/drivers/media/dvb-frontends/isl6405.c +++ b/drivers/media/dvb-frontends/isl6405.c @@ -141,7 +141,7 @@ struct dvb_frontend *isl6405_attach(struct dvb_frontend *fe, struct i2c_adapter return fe; } -EXPORT_SYMBOL(isl6405_attach); +EXPORT_SYMBOL_GPL(isl6405_attach); MODULE_DESCRIPTION("Driver for lnb supply and control ic isl6405"); MODULE_AUTHOR("Hartmut Hackmann & Oliver Endriss"); diff --git a/drivers/media/dvb-frontends/isl6421.c b/drivers/media/dvb-frontends/isl6421.c index 43b0dfc6f453e..2e9f6f12f849e 100644 --- a/drivers/media/dvb-frontends/isl6421.c +++ b/drivers/media/dvb-frontends/isl6421.c @@ -213,7 +213,7 @@ struct dvb_frontend *isl6421_attach(struct dvb_frontend *fe, struct i2c_adapter return fe; } -EXPORT_SYMBOL(isl6421_attach); +EXPORT_SYMBOL_GPL(isl6421_attach); MODULE_DESCRIPTION("Driver for lnb supply and control ic isl6421"); MODULE_AUTHOR("Andrew de Quincey & Oliver Endriss"); diff --git a/drivers/media/dvb-frontends/isl6423.c b/drivers/media/dvb-frontends/isl6423.c index 8cd1bb88ce6e7..a0d0a38340574 100644 --- a/drivers/media/dvb-frontends/isl6423.c +++ b/drivers/media/dvb-frontends/isl6423.c @@ -289,7 +289,7 @@ struct dvb_frontend *isl6423_attach(struct dvb_frontend *fe, fe->sec_priv = NULL; return NULL; } -EXPORT_SYMBOL(isl6423_attach); +EXPORT_SYMBOL_GPL(isl6423_attach); MODULE_DESCRIPTION("ISL6423 SEC"); MODULE_AUTHOR("Manu Abraham"); diff --git a/drivers/media/dvb-frontends/itd1000.c b/drivers/media/dvb-frontends/itd1000.c index 1b33478653d16..f8f362f50e78d 100644 --- a/drivers/media/dvb-frontends/itd1000.c +++ b/drivers/media/dvb-frontends/itd1000.c @@ -389,7 +389,7 @@ struct dvb_frontend *itd1000_attach(struct dvb_frontend *fe, struct i2c_adapter return fe; } -EXPORT_SYMBOL(itd1000_attach); +EXPORT_SYMBOL_GPL(itd1000_attach); MODULE_AUTHOR("Patrick Boettcher "); MODULE_DESCRIPTION("Integrant ITD1000 driver"); diff --git a/drivers/media/dvb-frontends/ix2505v.c b/drivers/media/dvb-frontends/ix2505v.c index 73f27105c139d..3212e333d472b 100644 --- a/drivers/media/dvb-frontends/ix2505v.c +++ b/drivers/media/dvb-frontends/ix2505v.c @@ -302,7 +302,7 @@ struct dvb_frontend *ix2505v_attach(struct dvb_frontend *fe, kfree(state); return NULL; } -EXPORT_SYMBOL(ix2505v_attach); +EXPORT_SYMBOL_GPL(ix2505v_attach); module_param_named(debug, ix2505v_debug, int, 0644); MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off)."); diff --git a/drivers/media/dvb-frontends/l64781.c b/drivers/media/dvb-frontends/l64781.c index c5106a1ea1cd0..fe5af2453d559 100644 --- a/drivers/media/dvb-frontends/l64781.c +++ b/drivers/media/dvb-frontends/l64781.c @@ -593,4 +593,4 @@ MODULE_DESCRIPTION("LSI L64781 DVB-T Demodulator driver"); MODULE_AUTHOR("Holger Waechtler, Marko Kohtala"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(l64781_attach); +EXPORT_SYMBOL_GPL(l64781_attach); diff --git a/drivers/media/dvb-frontends/lg2160.c b/drivers/media/dvb-frontends/lg2160.c index f343066c297e2..fe700aa56bff3 100644 --- a/drivers/media/dvb-frontends/lg2160.c +++ b/drivers/media/dvb-frontends/lg2160.c @@ -1426,7 +1426,7 @@ struct dvb_frontend *lg2160_attach(const struct lg2160_config *config, return &state->frontend; } -EXPORT_SYMBOL(lg2160_attach); +EXPORT_SYMBOL_GPL(lg2160_attach); MODULE_DESCRIPTION("LG Electronics LG216x ATSC/MH Demodulator Driver"); MODULE_AUTHOR("Michael Krufky "); diff --git a/drivers/media/dvb-frontends/lgdt3305.c b/drivers/media/dvb-frontends/lgdt3305.c index 62d7439889196..60a97f1cc74e5 100644 --- a/drivers/media/dvb-frontends/lgdt3305.c +++ b/drivers/media/dvb-frontends/lgdt3305.c @@ -1148,7 +1148,7 @@ struct dvb_frontend *lgdt3305_attach(const struct lgdt3305_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(lgdt3305_attach); +EXPORT_SYMBOL_GPL(lgdt3305_attach); static const struct dvb_frontend_ops lgdt3304_ops = { .delsys = { SYS_ATSC, SYS_DVBC_ANNEX_B }, diff --git a/drivers/media/dvb-frontends/lgdt3306a.c b/drivers/media/dvb-frontends/lgdt3306a.c index 136b76cb48077..f6e83a38738dd 100644 --- a/drivers/media/dvb-frontends/lgdt3306a.c +++ b/drivers/media/dvb-frontends/lgdt3306a.c @@ -1859,7 +1859,7 @@ struct dvb_frontend *lgdt3306a_attach(const struct lgdt3306a_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(lgdt3306a_attach); +EXPORT_SYMBOL_GPL(lgdt3306a_attach); #ifdef DBG_DUMP diff --git a/drivers/media/dvb-frontends/lgdt330x.c b/drivers/media/dvb-frontends/lgdt330x.c index da3a8c5e18d8e..53b1443ba0220 100644 --- a/drivers/media/dvb-frontends/lgdt330x.c +++ b/drivers/media/dvb-frontends/lgdt330x.c @@ -928,7 +928,7 @@ struct dvb_frontend *lgdt330x_attach(const struct lgdt330x_config *_config, return lgdt330x_get_dvb_frontend(client); } -EXPORT_SYMBOL(lgdt330x_attach); +EXPORT_SYMBOL_GPL(lgdt330x_attach); static const struct dvb_frontend_ops lgdt3302_ops = { .delsys = { SYS_ATSC, SYS_DVBC_ANNEX_B }, diff --git a/drivers/media/dvb-frontends/lgs8gxx.c b/drivers/media/dvb-frontends/lgs8gxx.c index 30014979b985b..ffaf60e16ecd4 100644 --- a/drivers/media/dvb-frontends/lgs8gxx.c +++ b/drivers/media/dvb-frontends/lgs8gxx.c @@ -1043,7 +1043,7 @@ struct dvb_frontend *lgs8gxx_attach(const struct lgs8gxx_config *config, return NULL; } -EXPORT_SYMBOL(lgs8gxx_attach); +EXPORT_SYMBOL_GPL(lgs8gxx_attach); MODULE_DESCRIPTION("Legend Silicon LGS8913/LGS8GXX DMB-TH demodulator driver"); MODULE_AUTHOR("David T. L. Wong "); diff --git a/drivers/media/dvb-frontends/lnbh25.c b/drivers/media/dvb-frontends/lnbh25.c index 9ffe06cd787dd..41bec050642b5 100644 --- a/drivers/media/dvb-frontends/lnbh25.c +++ b/drivers/media/dvb-frontends/lnbh25.c @@ -173,7 +173,7 @@ struct dvb_frontend *lnbh25_attach(struct dvb_frontend *fe, __func__, priv->i2c_address); return fe; } -EXPORT_SYMBOL(lnbh25_attach); +EXPORT_SYMBOL_GPL(lnbh25_attach); MODULE_DESCRIPTION("ST LNBH25 driver"); MODULE_AUTHOR("info@netup.ru"); diff --git a/drivers/media/dvb-frontends/lnbp21.c b/drivers/media/dvb-frontends/lnbp21.c index e564974162d65..32593b1f75a38 100644 --- a/drivers/media/dvb-frontends/lnbp21.c +++ b/drivers/media/dvb-frontends/lnbp21.c @@ -155,7 +155,7 @@ struct dvb_frontend *lnbh24_attach(struct dvb_frontend *fe, return lnbx2x_attach(fe, i2c, override_set, override_clear, i2c_addr, LNBH24_TTX); } -EXPORT_SYMBOL(lnbh24_attach); +EXPORT_SYMBOL_GPL(lnbh24_attach); struct dvb_frontend *lnbp21_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c, u8 override_set, @@ -164,7 +164,7 @@ struct dvb_frontend *lnbp21_attach(struct dvb_frontend *fe, return lnbx2x_attach(fe, i2c, override_set, override_clear, 0x08, LNBP21_ISEL); } -EXPORT_SYMBOL(lnbp21_attach); +EXPORT_SYMBOL_GPL(lnbp21_attach); MODULE_DESCRIPTION("Driver for lnb supply and control ic lnbp21, lnbh24"); MODULE_AUTHOR("Oliver Endriss, Igor M. Liplianin"); diff --git a/drivers/media/dvb-frontends/lnbp22.c b/drivers/media/dvb-frontends/lnbp22.c index b8c7145d4cefe..cb4ea5d3fad4a 100644 --- a/drivers/media/dvb-frontends/lnbp22.c +++ b/drivers/media/dvb-frontends/lnbp22.c @@ -125,7 +125,7 @@ struct dvb_frontend *lnbp22_attach(struct dvb_frontend *fe, return fe; } -EXPORT_SYMBOL(lnbp22_attach); +EXPORT_SYMBOL_GPL(lnbp22_attach); MODULE_DESCRIPTION("Driver for lnb supply and control ic lnbp22"); MODULE_AUTHOR("Dominik Kuhlen"); diff --git a/drivers/media/dvb-frontends/m88ds3103.c b/drivers/media/dvb-frontends/m88ds3103.c index 02e8aa11e36e7..e03fac025b512 100644 --- a/drivers/media/dvb-frontends/m88ds3103.c +++ b/drivers/media/dvb-frontends/m88ds3103.c @@ -1699,7 +1699,7 @@ struct dvb_frontend *m88ds3103_attach(const struct m88ds3103_config *cfg, *tuner_i2c_adapter = pdata.get_i2c_adapter(client); return pdata.get_dvb_frontend(client); } -EXPORT_SYMBOL(m88ds3103_attach); +EXPORT_SYMBOL_GPL(m88ds3103_attach); static const struct dvb_frontend_ops m88ds3103_ops = { .delsys = {SYS_DVBS, SYS_DVBS2}, diff --git a/drivers/media/dvb-frontends/m88rs2000.c b/drivers/media/dvb-frontends/m88rs2000.c index b294ba87e934f..2aa98203cd659 100644 --- a/drivers/media/dvb-frontends/m88rs2000.c +++ b/drivers/media/dvb-frontends/m88rs2000.c @@ -808,7 +808,7 @@ struct dvb_frontend *m88rs2000_attach(const struct m88rs2000_config *config, return NULL; } -EXPORT_SYMBOL(m88rs2000_attach); +EXPORT_SYMBOL_GPL(m88rs2000_attach); MODULE_DESCRIPTION("M88RS2000 DVB-S Demodulator driver"); MODULE_AUTHOR("Malcolm Priestley tvboxspy@gmail.com"); diff --git a/drivers/media/dvb-frontends/mb86a16.c b/drivers/media/dvb-frontends/mb86a16.c index 2505f1e5794e7..ed08e0c2cf512 100644 --- a/drivers/media/dvb-frontends/mb86a16.c +++ b/drivers/media/dvb-frontends/mb86a16.c @@ -1848,6 +1848,6 @@ struct dvb_frontend *mb86a16_attach(const struct mb86a16_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(mb86a16_attach); +EXPORT_SYMBOL_GPL(mb86a16_attach); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Manu Abraham"); diff --git a/drivers/media/dvb-frontends/mb86a20s.c b/drivers/media/dvb-frontends/mb86a20s.c index a7faf0cf8788b..8a333af9e176f 100644 --- a/drivers/media/dvb-frontends/mb86a20s.c +++ b/drivers/media/dvb-frontends/mb86a20s.c @@ -2081,7 +2081,7 @@ struct dvb_frontend *mb86a20s_attach(const struct mb86a20s_config *config, dev_info(&i2c->dev, "Detected a Fujitsu mb86a20s frontend\n"); return &state->frontend; } -EXPORT_SYMBOL(mb86a20s_attach); +EXPORT_SYMBOL_GPL(mb86a20s_attach); static const struct dvb_frontend_ops mb86a20s_ops = { .delsys = { SYS_ISDBT }, diff --git a/drivers/media/dvb-frontends/mt312.c b/drivers/media/dvb-frontends/mt312.c index d43a67045dbe7..fb867dd8a26be 100644 --- a/drivers/media/dvb-frontends/mt312.c +++ b/drivers/media/dvb-frontends/mt312.c @@ -827,7 +827,7 @@ struct dvb_frontend *mt312_attach(const struct mt312_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(mt312_attach); +EXPORT_SYMBOL_GPL(mt312_attach); module_param(debug, int, 0644); MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off)."); diff --git a/drivers/media/dvb-frontends/mt352.c b/drivers/media/dvb-frontends/mt352.c index 399d5c519027e..1b2889f5cf67d 100644 --- a/drivers/media/dvb-frontends/mt352.c +++ b/drivers/media/dvb-frontends/mt352.c @@ -593,4 +593,4 @@ MODULE_DESCRIPTION("Zarlink MT352 DVB-T Demodulator driver"); MODULE_AUTHOR("Holger Waechtler, Daniel Mack, Antonio Mancuso"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(mt352_attach); +EXPORT_SYMBOL_GPL(mt352_attach); diff --git a/drivers/media/dvb-frontends/nxt200x.c b/drivers/media/dvb-frontends/nxt200x.c index 200b6dbc75f81..1c549ada6ebf9 100644 --- a/drivers/media/dvb-frontends/nxt200x.c +++ b/drivers/media/dvb-frontends/nxt200x.c @@ -1216,5 +1216,5 @@ MODULE_DESCRIPTION("NXT200X (ATSC 8VSB & ITU-T J.83 AnnexB 64/256 QAM) Demodulat MODULE_AUTHOR("Kirk Lapray, Michael Krufky, Jean-Francois Thibert, and Taylor Jacob"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(nxt200x_attach); +EXPORT_SYMBOL_GPL(nxt200x_attach); diff --git a/drivers/media/dvb-frontends/nxt6000.c b/drivers/media/dvb-frontends/nxt6000.c index 136918f82dda0..e8d4940370ddf 100644 --- a/drivers/media/dvb-frontends/nxt6000.c +++ b/drivers/media/dvb-frontends/nxt6000.c @@ -621,4 +621,4 @@ MODULE_DESCRIPTION("NxtWave NXT6000 DVB-T demodulator driver"); MODULE_AUTHOR("Florian Schirmer"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(nxt6000_attach); +EXPORT_SYMBOL_GPL(nxt6000_attach); diff --git a/drivers/media/dvb-frontends/or51132.c b/drivers/media/dvb-frontends/or51132.c index 24de1b1151583..144a1f25dec0a 100644 --- a/drivers/media/dvb-frontends/or51132.c +++ b/drivers/media/dvb-frontends/or51132.c @@ -605,4 +605,4 @@ MODULE_AUTHOR("Kirk Lapray"); MODULE_AUTHOR("Trent Piepho"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(or51132_attach); +EXPORT_SYMBOL_GPL(or51132_attach); diff --git a/drivers/media/dvb-frontends/or51211.c b/drivers/media/dvb-frontends/or51211.c index ddcaea5c9941f..dc60482162c54 100644 --- a/drivers/media/dvb-frontends/or51211.c +++ b/drivers/media/dvb-frontends/or51211.c @@ -551,5 +551,5 @@ MODULE_DESCRIPTION("Oren OR51211 VSB [pcHDTV HD-2000] Demodulator Driver"); MODULE_AUTHOR("Kirk Lapray"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(or51211_attach); +EXPORT_SYMBOL_GPL(or51211_attach); diff --git a/drivers/media/dvb-frontends/s5h1409.c b/drivers/media/dvb-frontends/s5h1409.c index 3089cc174a6f5..28b1dca077ead 100644 --- a/drivers/media/dvb-frontends/s5h1409.c +++ b/drivers/media/dvb-frontends/s5h1409.c @@ -981,7 +981,7 @@ struct dvb_frontend *s5h1409_attach(const struct s5h1409_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(s5h1409_attach); +EXPORT_SYMBOL_GPL(s5h1409_attach); static const struct dvb_frontend_ops s5h1409_ops = { .delsys = { SYS_ATSC, SYS_DVBC_ANNEX_B }, diff --git a/drivers/media/dvb-frontends/s5h1411.c b/drivers/media/dvb-frontends/s5h1411.c index c1334d7eb4420..ae2b391af9039 100644 --- a/drivers/media/dvb-frontends/s5h1411.c +++ b/drivers/media/dvb-frontends/s5h1411.c @@ -900,7 +900,7 @@ struct dvb_frontend *s5h1411_attach(const struct s5h1411_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(s5h1411_attach); +EXPORT_SYMBOL_GPL(s5h1411_attach); static const struct dvb_frontend_ops s5h1411_ops = { .delsys = { SYS_ATSC, SYS_DVBC_ANNEX_B }, diff --git a/drivers/media/dvb-frontends/s5h1420.c b/drivers/media/dvb-frontends/s5h1420.c index 6bdec2898bc81..d700de1ea6c24 100644 --- a/drivers/media/dvb-frontends/s5h1420.c +++ b/drivers/media/dvb-frontends/s5h1420.c @@ -918,7 +918,7 @@ struct dvb_frontend *s5h1420_attach(const struct s5h1420_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(s5h1420_attach); +EXPORT_SYMBOL_GPL(s5h1420_attach); static const struct dvb_frontend_ops s5h1420_ops = { .delsys = { SYS_DVBS }, diff --git a/drivers/media/dvb-frontends/s5h1432.c b/drivers/media/dvb-frontends/s5h1432.c index 956e8ee4b388e..ff5d3bdf3bc67 100644 --- a/drivers/media/dvb-frontends/s5h1432.c +++ b/drivers/media/dvb-frontends/s5h1432.c @@ -355,7 +355,7 @@ struct dvb_frontend *s5h1432_attach(const struct s5h1432_config *config, return &state->frontend; } -EXPORT_SYMBOL(s5h1432_attach); +EXPORT_SYMBOL_GPL(s5h1432_attach); static const struct dvb_frontend_ops s5h1432_ops = { .delsys = { SYS_DVBT }, diff --git a/drivers/media/dvb-frontends/s921.c b/drivers/media/dvb-frontends/s921.c index f118d8e641030..7e461ac159fc1 100644 --- a/drivers/media/dvb-frontends/s921.c +++ b/drivers/media/dvb-frontends/s921.c @@ -495,7 +495,7 @@ struct dvb_frontend *s921_attach(const struct s921_config *config, return &state->frontend; } -EXPORT_SYMBOL(s921_attach); +EXPORT_SYMBOL_GPL(s921_attach); static const struct dvb_frontend_ops s921_ops = { .delsys = { SYS_ISDBT }, diff --git a/drivers/media/dvb-frontends/si21xx.c b/drivers/media/dvb-frontends/si21xx.c index e31eb2c5cc4c9..a35ab007a0b34 100644 --- a/drivers/media/dvb-frontends/si21xx.c +++ b/drivers/media/dvb-frontends/si21xx.c @@ -936,7 +936,7 @@ struct dvb_frontend *si21xx_attach(const struct si21xx_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(si21xx_attach); +EXPORT_SYMBOL_GPL(si21xx_attach); module_param(debug, int, 0644); MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off)."); diff --git a/drivers/media/dvb-frontends/sp887x.c b/drivers/media/dvb-frontends/sp887x.c index c89a91a3daf40..72f58626475c4 100644 --- a/drivers/media/dvb-frontends/sp887x.c +++ b/drivers/media/dvb-frontends/sp887x.c @@ -626,4 +626,4 @@ MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off)."); MODULE_DESCRIPTION("Spase sp887x DVB-T demodulator driver"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(sp887x_attach); +EXPORT_SYMBOL_GPL(sp887x_attach); diff --git a/drivers/media/dvb-frontends/stb0899_drv.c b/drivers/media/dvb-frontends/stb0899_drv.c index 4ee6c1e1e9f7d..2f4d8fb400cd6 100644 --- a/drivers/media/dvb-frontends/stb0899_drv.c +++ b/drivers/media/dvb-frontends/stb0899_drv.c @@ -1638,7 +1638,7 @@ struct dvb_frontend *stb0899_attach(struct stb0899_config *config, struct i2c_ad kfree(state); return NULL; } -EXPORT_SYMBOL(stb0899_attach); +EXPORT_SYMBOL_GPL(stb0899_attach); MODULE_PARM_DESC(verbose, "Set Verbosity level"); MODULE_AUTHOR("Manu Abraham"); MODULE_DESCRIPTION("STB0899 Multi-Std frontend"); diff --git a/drivers/media/dvb-frontends/stb6000.c b/drivers/media/dvb-frontends/stb6000.c index 8c9800d577e03..d74e34677b925 100644 --- a/drivers/media/dvb-frontends/stb6000.c +++ b/drivers/media/dvb-frontends/stb6000.c @@ -232,7 +232,7 @@ struct dvb_frontend *stb6000_attach(struct dvb_frontend *fe, int addr, return fe; } -EXPORT_SYMBOL(stb6000_attach); +EXPORT_SYMBOL_GPL(stb6000_attach); module_param(debug, int, 0644); MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off)."); diff --git a/drivers/media/dvb-frontends/stb6100.c b/drivers/media/dvb-frontends/stb6100.c index d541d66136107..9f92760256cf5 100644 --- a/drivers/media/dvb-frontends/stb6100.c +++ b/drivers/media/dvb-frontends/stb6100.c @@ -557,7 +557,7 @@ static void stb6100_release(struct dvb_frontend *fe) kfree(state); } -EXPORT_SYMBOL(stb6100_attach); +EXPORT_SYMBOL_GPL(stb6100_attach); MODULE_PARM_DESC(verbose, "Set Verbosity level"); MODULE_AUTHOR("Manu Abraham"); diff --git a/drivers/media/dvb-frontends/stv0288.c b/drivers/media/dvb-frontends/stv0288.c index 3ae1f3a2f1420..a5581bd60f9e8 100644 --- a/drivers/media/dvb-frontends/stv0288.c +++ b/drivers/media/dvb-frontends/stv0288.c @@ -590,7 +590,7 @@ struct dvb_frontend *stv0288_attach(const struct stv0288_config *config, return NULL; } -EXPORT_SYMBOL(stv0288_attach); +EXPORT_SYMBOL_GPL(stv0288_attach); module_param(debug_legacy_dish_switch, int, 0444); MODULE_PARM_DESC(debug_legacy_dish_switch, diff --git a/drivers/media/dvb-frontends/stv0297.c b/drivers/media/dvb-frontends/stv0297.c index 6d5962d5697ac..9d4dbd99a5a79 100644 --- a/drivers/media/dvb-frontends/stv0297.c +++ b/drivers/media/dvb-frontends/stv0297.c @@ -710,4 +710,4 @@ MODULE_DESCRIPTION("ST STV0297 DVB-C Demodulator driver"); MODULE_AUTHOR("Dennis Noermann and Andrew de Quincey"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(stv0297_attach); +EXPORT_SYMBOL_GPL(stv0297_attach); diff --git a/drivers/media/dvb-frontends/stv0299.c b/drivers/media/dvb-frontends/stv0299.c index 421395ea33343..0a1b57e9e2281 100644 --- a/drivers/media/dvb-frontends/stv0299.c +++ b/drivers/media/dvb-frontends/stv0299.c @@ -751,4 +751,4 @@ MODULE_DESCRIPTION("ST STV0299 DVB Demodulator driver"); MODULE_AUTHOR("Ralph Metzler, Holger Waechtler, Peter Schildmann, Felix Domke, Andreas Oberritter, Andrew de Quincey, Kenneth Aafly"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(stv0299_attach); +EXPORT_SYMBOL_GPL(stv0299_attach); diff --git a/drivers/media/dvb-frontends/stv0367.c b/drivers/media/dvb-frontends/stv0367.c index 6c2b05fae1c55..0bfca1174e9e7 100644 --- a/drivers/media/dvb-frontends/stv0367.c +++ b/drivers/media/dvb-frontends/stv0367.c @@ -1750,7 +1750,7 @@ struct dvb_frontend *stv0367ter_attach(const struct stv0367_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(stv0367ter_attach); +EXPORT_SYMBOL_GPL(stv0367ter_attach); static int stv0367cab_gate_ctrl(struct dvb_frontend *fe, int enable) { @@ -2923,7 +2923,7 @@ struct dvb_frontend *stv0367cab_attach(const struct stv0367_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(stv0367cab_attach); +EXPORT_SYMBOL_GPL(stv0367cab_attach); /* * Functions for operation on Digital Devices hardware @@ -3344,7 +3344,7 @@ struct dvb_frontend *stv0367ddb_attach(const struct stv0367_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(stv0367ddb_attach); +EXPORT_SYMBOL_GPL(stv0367ddb_attach); MODULE_PARM_DESC(debug, "Set debug"); MODULE_PARM_DESC(i2c_debug, "Set i2c debug"); diff --git a/drivers/media/dvb-frontends/stv0900_core.c b/drivers/media/dvb-frontends/stv0900_core.c index 212312d20ff62..e7b9b9b11d7df 100644 --- a/drivers/media/dvb-frontends/stv0900_core.c +++ b/drivers/media/dvb-frontends/stv0900_core.c @@ -1957,7 +1957,7 @@ struct dvb_frontend *stv0900_attach(const struct stv0900_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(stv0900_attach); +EXPORT_SYMBOL_GPL(stv0900_attach); MODULE_PARM_DESC(debug, "Set debug"); diff --git a/drivers/media/dvb-frontends/stv090x.c b/drivers/media/dvb-frontends/stv090x.c index 90d24131d335f..799dbefb9eef7 100644 --- a/drivers/media/dvb-frontends/stv090x.c +++ b/drivers/media/dvb-frontends/stv090x.c @@ -5073,7 +5073,7 @@ struct dvb_frontend *stv090x_attach(struct stv090x_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(stv090x_attach); +EXPORT_SYMBOL_GPL(stv090x_attach); static const struct i2c_device_id stv090x_id_table[] = { {"stv090x", 0}, diff --git a/drivers/media/dvb-frontends/stv6110.c b/drivers/media/dvb-frontends/stv6110.c index 963f6a896102a..1cf9c095dbff0 100644 --- a/drivers/media/dvb-frontends/stv6110.c +++ b/drivers/media/dvb-frontends/stv6110.c @@ -427,7 +427,7 @@ struct dvb_frontend *stv6110_attach(struct dvb_frontend *fe, return fe; } -EXPORT_SYMBOL(stv6110_attach); +EXPORT_SYMBOL_GPL(stv6110_attach); module_param(debug, int, 0644); MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off)."); diff --git a/drivers/media/dvb-frontends/stv6110x.c b/drivers/media/dvb-frontends/stv6110x.c index 5012d02316522..b08c7536a69fb 100644 --- a/drivers/media/dvb-frontends/stv6110x.c +++ b/drivers/media/dvb-frontends/stv6110x.c @@ -469,7 +469,7 @@ const struct stv6110x_devctl *stv6110x_attach(struct dvb_frontend *fe, dev_info(&stv6110x->i2c->dev, "Attaching STV6110x\n"); return stv6110x->devctl; } -EXPORT_SYMBOL(stv6110x_attach); +EXPORT_SYMBOL_GPL(stv6110x_attach); static const struct i2c_device_id stv6110x_id_table[] = { {"stv6110x", 0}, diff --git a/drivers/media/dvb-frontends/tda10021.c b/drivers/media/dvb-frontends/tda10021.c index faa6e54b33729..462e12ab6bd14 100644 --- a/drivers/media/dvb-frontends/tda10021.c +++ b/drivers/media/dvb-frontends/tda10021.c @@ -523,4 +523,4 @@ MODULE_DESCRIPTION("Philips TDA10021 DVB-C demodulator driver"); MODULE_AUTHOR("Ralph Metzler, Holger Waechtler, Markus Schulz"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(tda10021_attach); +EXPORT_SYMBOL_GPL(tda10021_attach); diff --git a/drivers/media/dvb-frontends/tda10023.c b/drivers/media/dvb-frontends/tda10023.c index 8f32edf6b700e..4c2541ecd7433 100644 --- a/drivers/media/dvb-frontends/tda10023.c +++ b/drivers/media/dvb-frontends/tda10023.c @@ -594,4 +594,4 @@ MODULE_DESCRIPTION("Philips TDA10023 DVB-C demodulator driver"); MODULE_AUTHOR("Georg Acher, Hartmut Birr"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(tda10023_attach); +EXPORT_SYMBOL_GPL(tda10023_attach); diff --git a/drivers/media/dvb-frontends/tda10048.c b/drivers/media/dvb-frontends/tda10048.c index d1d206ebdedd7..f1d5e77d5dcce 100644 --- a/drivers/media/dvb-frontends/tda10048.c +++ b/drivers/media/dvb-frontends/tda10048.c @@ -1138,7 +1138,7 @@ struct dvb_frontend *tda10048_attach(const struct tda10048_config *config, kfree(state); return NULL; } -EXPORT_SYMBOL(tda10048_attach); +EXPORT_SYMBOL_GPL(tda10048_attach); static const struct dvb_frontend_ops tda10048_ops = { .delsys = { SYS_DVBT }, diff --git a/drivers/media/dvb-frontends/tda1004x.c b/drivers/media/dvb-frontends/tda1004x.c index 83a798ca9b002..6f306db6c615f 100644 --- a/drivers/media/dvb-frontends/tda1004x.c +++ b/drivers/media/dvb-frontends/tda1004x.c @@ -1378,5 +1378,5 @@ MODULE_DESCRIPTION("Philips TDA10045H & TDA10046H DVB-T Demodulator"); MODULE_AUTHOR("Andrew de Quincey & Robert Schlabbach"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(tda10045_attach); -EXPORT_SYMBOL(tda10046_attach); +EXPORT_SYMBOL_GPL(tda10045_attach); +EXPORT_SYMBOL_GPL(tda10046_attach); diff --git a/drivers/media/dvb-frontends/tda10086.c b/drivers/media/dvb-frontends/tda10086.c index cdcf97664bba8..b449514ae5854 100644 --- a/drivers/media/dvb-frontends/tda10086.c +++ b/drivers/media/dvb-frontends/tda10086.c @@ -764,4 +764,4 @@ MODULE_DESCRIPTION("Philips TDA10086 DVB-S Demodulator"); MODULE_AUTHOR("Andrew de Quincey"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(tda10086_attach); +EXPORT_SYMBOL_GPL(tda10086_attach); diff --git a/drivers/media/dvb-frontends/tda665x.c b/drivers/media/dvb-frontends/tda665x.c index 13e8969da7f89..346be5011fb73 100644 --- a/drivers/media/dvb-frontends/tda665x.c +++ b/drivers/media/dvb-frontends/tda665x.c @@ -227,7 +227,7 @@ struct dvb_frontend *tda665x_attach(struct dvb_frontend *fe, return fe; } -EXPORT_SYMBOL(tda665x_attach); +EXPORT_SYMBOL_GPL(tda665x_attach); MODULE_DESCRIPTION("TDA665x driver"); MODULE_AUTHOR("Manu Abraham"); diff --git a/drivers/media/dvb-frontends/tda8083.c b/drivers/media/dvb-frontends/tda8083.c index 5be11fd65e3b1..9fc16e917f342 100644 --- a/drivers/media/dvb-frontends/tda8083.c +++ b/drivers/media/dvb-frontends/tda8083.c @@ -481,4 +481,4 @@ MODULE_DESCRIPTION("Philips TDA8083 DVB-S Demodulator"); MODULE_AUTHOR("Ralph Metzler, Holger Waechtler"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(tda8083_attach); +EXPORT_SYMBOL_GPL(tda8083_attach); diff --git a/drivers/media/dvb-frontends/tda8261.c b/drivers/media/dvb-frontends/tda8261.c index 0d576d41c67d8..8b06f92745dca 100644 --- a/drivers/media/dvb-frontends/tda8261.c +++ b/drivers/media/dvb-frontends/tda8261.c @@ -188,7 +188,7 @@ struct dvb_frontend *tda8261_attach(struct dvb_frontend *fe, return NULL; } -EXPORT_SYMBOL(tda8261_attach); +EXPORT_SYMBOL_GPL(tda8261_attach); MODULE_AUTHOR("Manu Abraham"); MODULE_DESCRIPTION("TDA8261 8PSK/QPSK Tuner"); diff --git a/drivers/media/dvb-frontends/tda826x.c b/drivers/media/dvb-frontends/tda826x.c index f9703a1dd758c..eafcf5f7da3dc 100644 --- a/drivers/media/dvb-frontends/tda826x.c +++ b/drivers/media/dvb-frontends/tda826x.c @@ -164,7 +164,7 @@ struct dvb_frontend *tda826x_attach(struct dvb_frontend *fe, int addr, struct i2 return fe; } -EXPORT_SYMBOL(tda826x_attach); +EXPORT_SYMBOL_GPL(tda826x_attach); module_param(debug, int, 0644); MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off)."); diff --git a/drivers/media/dvb-frontends/ts2020.c b/drivers/media/dvb-frontends/ts2020.c index 3e383912bcfd8..4e89193f8e6a9 100644 --- a/drivers/media/dvb-frontends/ts2020.c +++ b/drivers/media/dvb-frontends/ts2020.c @@ -525,7 +525,7 @@ struct dvb_frontend *ts2020_attach(struct dvb_frontend *fe, return fe; } -EXPORT_SYMBOL(ts2020_attach); +EXPORT_SYMBOL_GPL(ts2020_attach); /* * We implement own regmap locking due to legacy DVB attach which uses frontend diff --git a/drivers/media/dvb-frontends/tua6100.c b/drivers/media/dvb-frontends/tua6100.c index 2483f614d0e7d..41dd9b6d31908 100644 --- a/drivers/media/dvb-frontends/tua6100.c +++ b/drivers/media/dvb-frontends/tua6100.c @@ -186,7 +186,7 @@ struct dvb_frontend *tua6100_attach(struct dvb_frontend *fe, int addr, struct i2 fe->tuner_priv = priv; return fe; } -EXPORT_SYMBOL(tua6100_attach); +EXPORT_SYMBOL_GPL(tua6100_attach); MODULE_DESCRIPTION("DVB tua6100 driver"); MODULE_AUTHOR("Andrew de Quincey"); diff --git a/drivers/media/dvb-frontends/ves1820.c b/drivers/media/dvb-frontends/ves1820.c index 9df14d0be1c1a..ee5620e731e9b 100644 --- a/drivers/media/dvb-frontends/ves1820.c +++ b/drivers/media/dvb-frontends/ves1820.c @@ -434,4 +434,4 @@ MODULE_DESCRIPTION("VLSI VES1820 DVB-C Demodulator driver"); MODULE_AUTHOR("Ralph Metzler, Holger Waechtler"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(ves1820_attach); +EXPORT_SYMBOL_GPL(ves1820_attach); diff --git a/drivers/media/dvb-frontends/ves1x93.c b/drivers/media/dvb-frontends/ves1x93.c index b747272863025..c60e21d26b881 100644 --- a/drivers/media/dvb-frontends/ves1x93.c +++ b/drivers/media/dvb-frontends/ves1x93.c @@ -540,4 +540,4 @@ MODULE_DESCRIPTION("VLSI VES1x93 DVB-S Demodulator driver"); MODULE_AUTHOR("Ralph Metzler"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(ves1x93_attach); +EXPORT_SYMBOL_GPL(ves1x93_attach); diff --git a/drivers/media/dvb-frontends/zl10036.c b/drivers/media/dvb-frontends/zl10036.c index d392c7cce2ce0..7ba575e9c55f4 100644 --- a/drivers/media/dvb-frontends/zl10036.c +++ b/drivers/media/dvb-frontends/zl10036.c @@ -496,7 +496,7 @@ struct dvb_frontend *zl10036_attach(struct dvb_frontend *fe, kfree(state); return NULL; } -EXPORT_SYMBOL(zl10036_attach); +EXPORT_SYMBOL_GPL(zl10036_attach); module_param_named(debug, zl10036_debug, int, 0644); MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off)."); diff --git a/drivers/media/dvb-frontends/zl10039.c b/drivers/media/dvb-frontends/zl10039.c index 1335bf78d5b7f..a3e4d219400ce 100644 --- a/drivers/media/dvb-frontends/zl10039.c +++ b/drivers/media/dvb-frontends/zl10039.c @@ -295,7 +295,7 @@ struct dvb_frontend *zl10039_attach(struct dvb_frontend *fe, kfree(state); return NULL; } -EXPORT_SYMBOL(zl10039_attach); +EXPORT_SYMBOL_GPL(zl10039_attach); module_param(debug, int, 0644); MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off)."); diff --git a/drivers/media/dvb-frontends/zl10353.c b/drivers/media/dvb-frontends/zl10353.c index 2a2cf20a73d61..8849d05475c27 100644 --- a/drivers/media/dvb-frontends/zl10353.c +++ b/drivers/media/dvb-frontends/zl10353.c @@ -665,4 +665,4 @@ MODULE_DESCRIPTION("Zarlink ZL10353 DVB-T demodulator driver"); MODULE_AUTHOR("Chris Pascoe"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(zl10353_attach); +EXPORT_SYMBOL_GPL(zl10353_attach); diff --git a/drivers/media/i2c/ad5820.c b/drivers/media/i2c/ad5820.c index 07639ecc85aa8..63b5bf1fae761 100644 --- a/drivers/media/i2c/ad5820.c +++ b/drivers/media/i2c/ad5820.c @@ -357,7 +357,6 @@ static int ad5820_remove(struct i2c_client *client) static const struct i2c_device_id ad5820_id_table[] = { { "ad5820", 0 }, { "ad5821", 0 }, - { "ad5823", 0 }, { } }; MODULE_DEVICE_TABLE(i2c, ad5820_id_table); @@ -365,7 +364,6 @@ MODULE_DEVICE_TABLE(i2c, ad5820_id_table); static const struct of_device_id ad5820_of_table[] = { { .compatible = "adi,ad5820" }, { .compatible = "adi,ad5821" }, - { .compatible = "adi,ad5823" }, { } }; MODULE_DEVICE_TABLE(of, ad5820_of_table); diff --git a/drivers/media/i2c/ccs/ccs-core.c b/drivers/media/i2c/ccs/ccs-core.c index 67bb770ed63fa..9dc5d42b31993 100644 --- a/drivers/media/i2c/ccs/ccs-core.c +++ b/drivers/media/i2c/ccs/ccs-core.c @@ -3089,7 +3089,7 @@ static int ccs_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh) try_fmt->code = sensor->internal_csi_format->code; try_fmt->field = V4L2_FIELD_NONE; - if (ssd != sensor->pixel_array) + if (ssd == sensor->pixel_array) continue; try_comp = v4l2_subdev_get_try_compose(sd, fh->state, i); diff --git a/drivers/media/i2c/ccs/ccs-data.c b/drivers/media/i2c/ccs/ccs-data.c index 45f2b2f55ec5c..08400edf77ced 100644 --- a/drivers/media/i2c/ccs/ccs-data.c +++ b/drivers/media/i2c/ccs/ccs-data.c @@ -464,8 +464,7 @@ static int ccs_data_parse_rules(struct bin_container *bin, rule_payload = __rule_type + 1; rule_plen2 = rule_plen - sizeof(*__rule_type); - switch (*__rule_type) { - case CCS_DATA_BLOCK_RULE_ID_IF: { + if (*__rule_type == CCS_DATA_BLOCK_RULE_ID_IF) { const struct __ccs_data_block_rule_if *__if_rules = rule_payload; const size_t __num_if_rules = @@ -514,49 +513,61 @@ static int ccs_data_parse_rules(struct bin_container *bin, rules->if_rules = if_rule; rules->num_if_rules = __num_if_rules; } - break; - } - case CCS_DATA_BLOCK_RULE_ID_READ_ONLY_REGS: - rval = ccs_data_parse_reg_rules(bin, &rules->read_only_regs, - &rules->num_read_only_regs, - rule_payload, - rule_payload + rule_plen2, - dev); - if (rval) - return rval; - break; - case CCS_DATA_BLOCK_RULE_ID_FFD: - rval = ccs_data_parse_ffd(bin, &rules->frame_format, - rule_payload, - rule_payload + rule_plen2, - dev); - if (rval) - return rval; - break; - case CCS_DATA_BLOCK_RULE_ID_MSR: - rval = ccs_data_parse_reg_rules(bin, - &rules->manufacturer_regs, - &rules->num_manufacturer_regs, - rule_payload, - rule_payload + rule_plen2, - dev); - if (rval) - return rval; - break; - case CCS_DATA_BLOCK_RULE_ID_PDAF_READOUT: - rval = ccs_data_parse_pdaf_readout(bin, - &rules->pdaf_readout, - rule_payload, - rule_payload + rule_plen2, - dev); - if (rval) - return rval; - break; - default: - dev_dbg(dev, - "Don't know how to handle rule type %u!\n", - *__rule_type); - return -EINVAL; + } else { + /* Check there was an if rule before any other rules */ + if (bin->base && !rules) + return -EINVAL; + + switch (*__rule_type) { + case CCS_DATA_BLOCK_RULE_ID_READ_ONLY_REGS: + rval = ccs_data_parse_reg_rules(bin, + rules ? + &rules->read_only_regs : NULL, + rules ? + &rules->num_read_only_regs : NULL, + rule_payload, + rule_payload + rule_plen2, + dev); + if (rval) + return rval; + break; + case CCS_DATA_BLOCK_RULE_ID_FFD: + rval = ccs_data_parse_ffd(bin, rules ? + &rules->frame_format : NULL, + rule_payload, + rule_payload + rule_plen2, + dev); + if (rval) + return rval; + break; + case CCS_DATA_BLOCK_RULE_ID_MSR: + rval = ccs_data_parse_reg_rules(bin, + rules ? + &rules->manufacturer_regs : NULL, + rules ? + &rules->num_manufacturer_regs : NULL, + rule_payload, + rule_payload + rule_plen2, + dev); + if (rval) + return rval; + break; + case CCS_DATA_BLOCK_RULE_ID_PDAF_READOUT: + rval = ccs_data_parse_pdaf_readout(bin, + rules ? + &rules->pdaf_readout : NULL, + rule_payload, + rule_payload + rule_plen2, + dev); + if (rval) + return rval; + break; + default: + dev_dbg(dev, + "Don't know how to handle rule type %u!\n", + *__rule_type); + return -EINVAL; + } } __next_rule = __next_rule + rule_hlen + rule_plen; } diff --git a/drivers/media/i2c/ccs/ccs-quirk.h b/drivers/media/i2c/ccs/ccs-quirk.h index 5838fcda92fd4..0b1a64958d714 100644 --- a/drivers/media/i2c/ccs/ccs-quirk.h +++ b/drivers/media/i2c/ccs/ccs-quirk.h @@ -32,12 +32,10 @@ struct ccs_sensor; * @reg: Pointer to the register to access * @value: Register value, set by the caller on write, or * by the quirk on read - * - * @flags: Quirk flags - * * @return: 0 on success, -ENOIOCTLCMD if no register * access may be done by the caller (default read * value is zero), else negative error code on error + * @flags: Quirk flags */ struct ccs_quirk { int (*limits)(struct ccs_sensor *sensor); diff --git a/drivers/media/i2c/max9286.c b/drivers/media/i2c/max9286.c index 404a03f48b976..1b9beaee6bea7 100644 --- a/drivers/media/i2c/max9286.c +++ b/drivers/media/i2c/max9286.c @@ -1231,7 +1231,6 @@ static int max9286_parse_dt(struct max9286_priv *priv) i2c_mux_mask |= BIT(id); } - of_node_put(node); of_node_put(i2c_mux); /* Parse the endpoints */ @@ -1295,7 +1294,6 @@ static int max9286_parse_dt(struct max9286_priv *priv) priv->source_mask |= BIT(ep.port); priv->nsources++; } - of_node_put(node); /* * Parse the initial value of the reverse channel amplitude from diff --git a/drivers/media/i2c/ov2680.c b/drivers/media/i2c/ov2680.c index 906c711f6821b..3059d1157bac3 100644 --- a/drivers/media/i2c/ov2680.c +++ b/drivers/media/i2c/ov2680.c @@ -54,6 +54,9 @@ #define OV2680_WIDTH_MAX 1600 #define OV2680_HEIGHT_MAX 1200 +#define OV2680_DEFAULT_WIDTH 800 +#define OV2680_DEFAULT_HEIGHT 600 + enum ov2680_mode_id { OV2680_MODE_QUXGA_800_600, OV2680_MODE_720P_1280_720, @@ -85,15 +88,8 @@ struct ov2680_mode_info { struct ov2680_ctrls { struct v4l2_ctrl_handler handler; - struct { - struct v4l2_ctrl *auto_exp; - struct v4l2_ctrl *exposure; - }; - struct { - struct v4l2_ctrl *auto_gain; - struct v4l2_ctrl *gain; - }; - + struct v4l2_ctrl *exposure; + struct v4l2_ctrl *gain; struct v4l2_ctrl *hflip; struct v4l2_ctrl *vflip; struct v4l2_ctrl *test_pattern; @@ -143,6 +139,7 @@ static const struct reg_value ov2680_setting_30fps_QUXGA_800_600[] = { {0x380e, 0x02}, {0x380f, 0x84}, {0x3811, 0x04}, {0x3813, 0x04}, {0x3814, 0x31}, {0x3815, 0x31}, {0x3820, 0xc0}, {0x4008, 0x00}, {0x4009, 0x03}, {0x4837, 0x1e}, {0x3501, 0x4e}, {0x3502, 0xe0}, + {0x3503, 0x03}, }; static const struct reg_value ov2680_setting_30fps_720P_1280_720[] = { @@ -321,70 +318,62 @@ static void ov2680_power_down(struct ov2680_dev *sensor) usleep_range(5000, 10000); } -static int ov2680_bayer_order(struct ov2680_dev *sensor) +static void ov2680_set_bayer_order(struct ov2680_dev *sensor, + struct v4l2_mbus_framefmt *fmt) { - u32 format1; - u32 format2; - u32 hv_flip; - int ret; - - ret = ov2680_read_reg(sensor, OV2680_REG_FORMAT1, &format1); - if (ret < 0) - return ret; - - ret = ov2680_read_reg(sensor, OV2680_REG_FORMAT2, &format2); - if (ret < 0) - return ret; + int hv_flip = 0; - hv_flip = (format2 & BIT(2) << 1) | (format1 & BIT(2)); + if (sensor->ctrls.vflip && sensor->ctrls.vflip->val) + hv_flip += 1; - sensor->fmt.code = ov2680_hv_flip_bayer_order[hv_flip]; + if (sensor->ctrls.hflip && sensor->ctrls.hflip->val) + hv_flip += 2; - return 0; + fmt->code = ov2680_hv_flip_bayer_order[hv_flip]; } -static int ov2680_vflip_enable(struct ov2680_dev *sensor) +static void ov2680_fill_format(struct ov2680_dev *sensor, + struct v4l2_mbus_framefmt *fmt, + unsigned int width, unsigned int height) { - int ret; - - ret = ov2680_mod_reg(sensor, OV2680_REG_FORMAT1, BIT(2), BIT(2)); - if (ret < 0) - return ret; - - return ov2680_bayer_order(sensor); + memset(fmt, 0, sizeof(*fmt)); + fmt->width = width; + fmt->height = height; + fmt->field = V4L2_FIELD_NONE; + fmt->colorspace = V4L2_COLORSPACE_SRGB; + ov2680_set_bayer_order(sensor, fmt); } -static int ov2680_vflip_disable(struct ov2680_dev *sensor) +static int ov2680_set_vflip(struct ov2680_dev *sensor, s32 val) { int ret; - ret = ov2680_mod_reg(sensor, OV2680_REG_FORMAT1, BIT(2), BIT(0)); - if (ret < 0) - return ret; - - return ov2680_bayer_order(sensor); -} - -static int ov2680_hflip_enable(struct ov2680_dev *sensor) -{ - int ret; + if (sensor->is_streaming) + return -EBUSY; - ret = ov2680_mod_reg(sensor, OV2680_REG_FORMAT2, BIT(2), BIT(2)); + ret = ov2680_mod_reg(sensor, OV2680_REG_FORMAT1, + BIT(2), val ? BIT(2) : 0); if (ret < 0) return ret; - return ov2680_bayer_order(sensor); + ov2680_set_bayer_order(sensor, &sensor->fmt); + return 0; } -static int ov2680_hflip_disable(struct ov2680_dev *sensor) +static int ov2680_set_hflip(struct ov2680_dev *sensor, s32 val) { int ret; - ret = ov2680_mod_reg(sensor, OV2680_REG_FORMAT2, BIT(2), BIT(0)); + if (sensor->is_streaming) + return -EBUSY; + + ret = ov2680_mod_reg(sensor, OV2680_REG_FORMAT2, + BIT(2), val ? BIT(2) : 0); if (ret < 0) return ret; - return ov2680_bayer_order(sensor); + ov2680_set_bayer_order(sensor, &sensor->fmt); + return 0; } static int ov2680_test_pattern_set(struct ov2680_dev *sensor, int value) @@ -405,69 +394,15 @@ static int ov2680_test_pattern_set(struct ov2680_dev *sensor, int value) return 0; } -static int ov2680_gain_set(struct ov2680_dev *sensor, bool auto_gain) +static int ov2680_gain_set(struct ov2680_dev *sensor, u32 gain) { - struct ov2680_ctrls *ctrls = &sensor->ctrls; - u32 gain; - int ret; - - ret = ov2680_mod_reg(sensor, OV2680_REG_R_MANUAL, BIT(1), - auto_gain ? 0 : BIT(1)); - if (ret < 0) - return ret; - - if (auto_gain || !ctrls->gain->is_new) - return 0; - - gain = ctrls->gain->val; - - ret = ov2680_write_reg16(sensor, OV2680_REG_GAIN_PK, gain); - - return 0; -} - -static int ov2680_gain_get(struct ov2680_dev *sensor) -{ - u32 gain; - int ret; - - ret = ov2680_read_reg16(sensor, OV2680_REG_GAIN_PK, &gain); - if (ret) - return ret; - - return gain; -} - -static int ov2680_exposure_set(struct ov2680_dev *sensor, bool auto_exp) -{ - struct ov2680_ctrls *ctrls = &sensor->ctrls; - u32 exp; - int ret; - - ret = ov2680_mod_reg(sensor, OV2680_REG_R_MANUAL, BIT(0), - auto_exp ? 0 : BIT(0)); - if (ret < 0) - return ret; - - if (auto_exp || !ctrls->exposure->is_new) - return 0; - - exp = (u32)ctrls->exposure->val; - exp <<= 4; - - return ov2680_write_reg24(sensor, OV2680_REG_EXPOSURE_PK_HIGH, exp); + return ov2680_write_reg16(sensor, OV2680_REG_GAIN_PK, gain); } -static int ov2680_exposure_get(struct ov2680_dev *sensor) +static int ov2680_exposure_set(struct ov2680_dev *sensor, u32 exp) { - int ret; - u32 exp; - - ret = ov2680_read_reg24(sensor, OV2680_REG_EXPOSURE_PK_HIGH, &exp); - if (ret) - return ret; - - return exp >> 4; + return ov2680_write_reg24(sensor, OV2680_REG_EXPOSURE_PK_HIGH, + exp << 4); } static int ov2680_stream_enable(struct ov2680_dev *sensor) @@ -482,33 +417,17 @@ static int ov2680_stream_disable(struct ov2680_dev *sensor) static int ov2680_mode_set(struct ov2680_dev *sensor) { - struct ov2680_ctrls *ctrls = &sensor->ctrls; int ret; - ret = ov2680_gain_set(sensor, false); - if (ret < 0) - return ret; - - ret = ov2680_exposure_set(sensor, false); + ret = ov2680_load_regs(sensor, sensor->current_mode); if (ret < 0) return ret; - ret = ov2680_load_regs(sensor, sensor->current_mode); + /* Restore value of all ctrls */ + ret = __v4l2_ctrl_handler_setup(&sensor->ctrls.handler); if (ret < 0) return ret; - if (ctrls->auto_gain->val) { - ret = ov2680_gain_set(sensor, true); - if (ret < 0) - return ret; - } - - if (ctrls->auto_exp->val == V4L2_EXPOSURE_AUTO) { - ret = ov2680_exposure_set(sensor, true); - if (ret < 0) - return ret; - } - sensor->mode_pending_changes = false; return 0; @@ -556,7 +475,7 @@ static int ov2680_power_on(struct ov2680_dev *sensor) ret = ov2680_write_reg(sensor, OV2680_REG_SOFT_RESET, 0x01); if (ret != 0) { dev_err(dev, "sensor soft reset failed\n"); - return ret; + goto err_disable_regulators; } usleep_range(1000, 2000); } else { @@ -566,7 +485,7 @@ static int ov2680_power_on(struct ov2680_dev *sensor) ret = clk_prepare_enable(sensor->xvclk); if (ret < 0) - return ret; + goto err_disable_regulators; sensor->is_enabled = true; @@ -576,6 +495,10 @@ static int ov2680_power_on(struct ov2680_dev *sensor) ov2680_stream_disable(sensor); return 0; + +err_disable_regulators: + regulator_bulk_disable(OV2680_NUM_SUPPLIES, sensor->supplies); + return ret; } static int ov2680_s_power(struct v4l2_subdev *sd, int on) @@ -590,15 +513,10 @@ static int ov2680_s_power(struct v4l2_subdev *sd, int on) else ret = ov2680_power_off(sensor); - mutex_unlock(&sensor->lock); - - if (on && ret == 0) { - ret = v4l2_ctrl_handler_setup(&sensor->ctrls.handler); - if (ret < 0) - return ret; - + if (on && ret == 0) ret = ov2680_mode_restore(sensor); - } + + mutex_unlock(&sensor->lock); return ret; } @@ -664,7 +582,6 @@ static int ov2680_get_fmt(struct v4l2_subdev *sd, { struct ov2680_dev *sensor = to_ov2680_dev(sd); struct v4l2_mbus_framefmt *fmt = NULL; - int ret = 0; if (format->pad != 0) return -EINVAL; @@ -672,22 +589,17 @@ static int ov2680_get_fmt(struct v4l2_subdev *sd, mutex_lock(&sensor->lock); if (format->which == V4L2_SUBDEV_FORMAT_TRY) { -#ifdef CONFIG_VIDEO_V4L2_SUBDEV_API fmt = v4l2_subdev_get_try_format(&sensor->sd, sd_state, format->pad); -#else - ret = -EINVAL; -#endif } else { fmt = &sensor->fmt; } - if (fmt) - format->format = *fmt; + format->format = *fmt; mutex_unlock(&sensor->lock); - return ret; + return 0; } static int ov2680_set_fmt(struct v4l2_subdev *sd, @@ -695,43 +607,35 @@ static int ov2680_set_fmt(struct v4l2_subdev *sd, struct v4l2_subdev_format *format) { struct ov2680_dev *sensor = to_ov2680_dev(sd); - struct v4l2_mbus_framefmt *fmt = &format->format; -#ifdef CONFIG_VIDEO_V4L2_SUBDEV_API struct v4l2_mbus_framefmt *try_fmt; -#endif const struct ov2680_mode_info *mode; int ret = 0; if (format->pad != 0) return -EINVAL; - mutex_lock(&sensor->lock); - - if (sensor->is_streaming) { - ret = -EBUSY; - goto unlock; - } - mode = v4l2_find_nearest_size(ov2680_mode_data, - ARRAY_SIZE(ov2680_mode_data), width, - height, fmt->width, fmt->height); - if (!mode) { - ret = -EINVAL; - goto unlock; - } + ARRAY_SIZE(ov2680_mode_data), + width, height, + format->format.width, + format->format.height); + if (!mode) + return -EINVAL; + + ov2680_fill_format(sensor, &format->format, mode->width, mode->height); if (format->which == V4L2_SUBDEV_FORMAT_TRY) { -#ifdef CONFIG_VIDEO_V4L2_SUBDEV_API try_fmt = v4l2_subdev_get_try_format(sd, sd_state, 0); - format->format = *try_fmt; -#endif - goto unlock; + *try_fmt = format->format; + return 0; } - fmt->width = mode->width; - fmt->height = mode->height; - fmt->code = sensor->fmt.code; - fmt->colorspace = sensor->fmt.colorspace; + mutex_lock(&sensor->lock); + + if (sensor->is_streaming) { + ret = -EBUSY; + goto unlock; + } sensor->current_mode = mode; sensor->fmt = format->format; @@ -746,16 +650,11 @@ static int ov2680_set_fmt(struct v4l2_subdev *sd, static int ov2680_init_cfg(struct v4l2_subdev *sd, struct v4l2_subdev_state *sd_state) { - struct v4l2_subdev_format fmt = { - .which = sd_state ? V4L2_SUBDEV_FORMAT_TRY - : V4L2_SUBDEV_FORMAT_ACTIVE, - .format = { - .width = 800, - .height = 600, - } - }; + struct ov2680_dev *sensor = to_ov2680_dev(sd); - return ov2680_set_fmt(sd, sd_state, &fmt); + ov2680_fill_format(sensor, &sd_state->pads[0].try_fmt, + OV2680_DEFAULT_WIDTH, OV2680_DEFAULT_HEIGHT); + return 0; } static int ov2680_enum_frame_size(struct v4l2_subdev *sd, @@ -794,66 +693,23 @@ static int ov2680_enum_frame_interval(struct v4l2_subdev *sd, return 0; } -static int ov2680_g_volatile_ctrl(struct v4l2_ctrl *ctrl) -{ - struct v4l2_subdev *sd = ctrl_to_sd(ctrl); - struct ov2680_dev *sensor = to_ov2680_dev(sd); - struct ov2680_ctrls *ctrls = &sensor->ctrls; - int val; - - if (!sensor->is_enabled) - return 0; - - switch (ctrl->id) { - case V4L2_CID_GAIN: - val = ov2680_gain_get(sensor); - if (val < 0) - return val; - ctrls->gain->val = val; - break; - case V4L2_CID_EXPOSURE: - val = ov2680_exposure_get(sensor); - if (val < 0) - return val; - ctrls->exposure->val = val; - break; - } - - return 0; -} - static int ov2680_s_ctrl(struct v4l2_ctrl *ctrl) { struct v4l2_subdev *sd = ctrl_to_sd(ctrl); struct ov2680_dev *sensor = to_ov2680_dev(sd); - struct ov2680_ctrls *ctrls = &sensor->ctrls; if (!sensor->is_enabled) return 0; switch (ctrl->id) { - case V4L2_CID_AUTOGAIN: - return ov2680_gain_set(sensor, !!ctrl->val); case V4L2_CID_GAIN: - return ov2680_gain_set(sensor, !!ctrls->auto_gain->val); - case V4L2_CID_EXPOSURE_AUTO: - return ov2680_exposure_set(sensor, !!ctrl->val); + return ov2680_gain_set(sensor, ctrl->val); case V4L2_CID_EXPOSURE: - return ov2680_exposure_set(sensor, !!ctrls->auto_exp->val); + return ov2680_exposure_set(sensor, ctrl->val); case V4L2_CID_VFLIP: - if (sensor->is_streaming) - return -EBUSY; - if (ctrl->val) - return ov2680_vflip_enable(sensor); - else - return ov2680_vflip_disable(sensor); + return ov2680_set_vflip(sensor, ctrl->val); case V4L2_CID_HFLIP: - if (sensor->is_streaming) - return -EBUSY; - if (ctrl->val) - return ov2680_hflip_enable(sensor); - else - return ov2680_hflip_disable(sensor); + return ov2680_set_hflip(sensor, ctrl->val); case V4L2_CID_TEST_PATTERN: return ov2680_test_pattern_set(sensor, ctrl->val); default: @@ -864,7 +720,6 @@ static int ov2680_s_ctrl(struct v4l2_ctrl *ctrl) } static const struct v4l2_ctrl_ops ov2680_ctrl_ops = { - .g_volatile_ctrl = ov2680_g_volatile_ctrl, .s_ctrl = ov2680_s_ctrl, }; @@ -898,11 +753,8 @@ static int ov2680_mode_init(struct ov2680_dev *sensor) const struct ov2680_mode_info *init_mode; /* set initial mode */ - sensor->fmt.code = MEDIA_BUS_FMT_SBGGR10_1X10; - sensor->fmt.width = 800; - sensor->fmt.height = 600; - sensor->fmt.field = V4L2_FIELD_NONE; - sensor->fmt.colorspace = V4L2_COLORSPACE_SRGB; + ov2680_fill_format(sensor, &sensor->fmt, + OV2680_DEFAULT_WIDTH, OV2680_DEFAULT_HEIGHT); sensor->frame_interval.denominator = OV2680_FRAME_RATE; sensor->frame_interval.numerator = 1; @@ -926,9 +778,7 @@ static int ov2680_v4l2_register(struct ov2680_dev *sensor) v4l2_i2c_subdev_init(&sensor->sd, sensor->i2c_client, &ov2680_subdev_ops); -#ifdef CONFIG_VIDEO_V4L2_SUBDEV_API sensor->sd.flags = V4L2_SUBDEV_FL_HAS_DEVNODE; -#endif sensor->pad.flags = MEDIA_PAD_FL_SOURCE; sensor->sd.entity.function = MEDIA_ENT_F_CAM_SENSOR; @@ -936,7 +786,7 @@ static int ov2680_v4l2_register(struct ov2680_dev *sensor) if (ret < 0) return ret; - v4l2_ctrl_handler_init(hdl, 7); + v4l2_ctrl_handler_init(hdl, 5); hdl->lock = &sensor->lock; @@ -948,16 +798,9 @@ static int ov2680_v4l2_register(struct ov2680_dev *sensor) ARRAY_SIZE(test_pattern_menu) - 1, 0, 0, test_pattern_menu); - ctrls->auto_exp = v4l2_ctrl_new_std_menu(hdl, ops, - V4L2_CID_EXPOSURE_AUTO, - V4L2_EXPOSURE_MANUAL, 0, - V4L2_EXPOSURE_AUTO); - ctrls->exposure = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_EXPOSURE, 0, 32767, 1, 0); - ctrls->auto_gain = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_AUTOGAIN, - 0, 1, 1, 1); ctrls->gain = v4l2_ctrl_new_std(hdl, ops, V4L2_CID_GAIN, 0, 2047, 1, 0); if (hdl->error) { @@ -965,11 +808,8 @@ static int ov2680_v4l2_register(struct ov2680_dev *sensor) goto cleanup_entity; } - ctrls->gain->flags |= V4L2_CTRL_FLAG_VOLATILE; - ctrls->exposure->flags |= V4L2_CTRL_FLAG_VOLATILE; - - v4l2_ctrl_auto_cluster(2, &ctrls->auto_gain, 0, true); - v4l2_ctrl_auto_cluster(2, &ctrls->auto_exp, 1, true); + ctrls->vflip->flags |= V4L2_CTRL_FLAG_MODIFY_LAYOUT; + ctrls->hflip->flags |= V4L2_CTRL_FLAG_MODIFY_LAYOUT; sensor->sd.ctrl_handler = hdl; diff --git a/drivers/media/i2c/ov5640.c b/drivers/media/i2c/ov5640.c index a141552531f7e..13144e87f47a1 100644 --- a/drivers/media/i2c/ov5640.c +++ b/drivers/media/i2c/ov5640.c @@ -1968,9 +1968,9 @@ static int ov5640_set_power_mipi(struct ov5640_dev *sensor, bool on) * "ov5640_set_stream_mipi()") * [4] = 0 : Power up MIPI HS Tx * [3] = 0 : Power up MIPI LS Rx - * [2] = 0 : MIPI interface disabled + * [2] = 1 : MIPI interface enabled */ - ret = ov5640_write_reg(sensor, OV5640_REG_IO_MIPI_CTRL00, 0x40); + ret = ov5640_write_reg(sensor, OV5640_REG_IO_MIPI_CTRL00, 0x44); if (ret) return ret; diff --git a/drivers/media/i2c/rdacm21.c b/drivers/media/i2c/rdacm21.c index ef31cf5f23cac..7995cb956aa7f 100644 --- a/drivers/media/i2c/rdacm21.c +++ b/drivers/media/i2c/rdacm21.c @@ -351,7 +351,7 @@ static void ov10640_power_up(struct rdacm21_device *dev) static int ov10640_check_id(struct rdacm21_device *dev) { unsigned int i; - u8 val; + u8 val = 0; /* Read OV10640 ID to test communications. */ for (i = 0; i < OV10640_PID_TIMEOUT; ++i) { diff --git a/drivers/media/i2c/tvp5150.c b/drivers/media/i2c/tvp5150.c index 4b16ffcaef98a..b0dc21ba25c31 100644 --- a/drivers/media/i2c/tvp5150.c +++ b/drivers/media/i2c/tvp5150.c @@ -2066,6 +2066,10 @@ static int tvp5150_parse_dt(struct tvp5150 *decoder, struct device_node *np) tvpc->ent.name = devm_kasprintf(dev, GFP_KERNEL, "%s %s", v4l2c->name, v4l2c->label ? v4l2c->label : ""); + if (!tvpc->ent.name) { + ret = -ENOMEM; + goto err_free; + } } ep_np = of_graph_get_endpoint_by_regs(np, TVP5150_PAD_VID_OUT, 0); diff --git a/drivers/media/pci/bt8xx/bttv-driver.c b/drivers/media/pci/bt8xx/bttv-driver.c index 661ebfa7bf3f5..c4bf7b7109ce4 100644 --- a/drivers/media/pci/bt8xx/bttv-driver.c +++ b/drivers/media/pci/bt8xx/bttv-driver.c @@ -4250,6 +4250,7 @@ static void bttv_remove(struct pci_dev *pci_dev) /* free resources */ free_irq(btv->c.pci->irq,btv); + del_timer_sync(&btv->timeout); iounmap(btv->bt848_mmio); release_mem_region(pci_resource_start(btv->c.pci,0), pci_resource_len(btv->c.pci,0)); diff --git a/drivers/media/pci/bt8xx/dst.c b/drivers/media/pci/bt8xx/dst.c index 3e52a51982d76..110651e478314 100644 --- a/drivers/media/pci/bt8xx/dst.c +++ b/drivers/media/pci/bt8xx/dst.c @@ -1722,7 +1722,7 @@ struct dst_state *dst_attach(struct dst_state *state, struct dvb_adapter *dvb_ad return state; /* Manu (DST is a card not a frontend) */ } -EXPORT_SYMBOL(dst_attach); +EXPORT_SYMBOL_GPL(dst_attach); static const struct dvb_frontend_ops dst_dvbt_ops = { .delsys = { SYS_DVBT }, diff --git a/drivers/media/pci/bt8xx/dst_ca.c b/drivers/media/pci/bt8xx/dst_ca.c index 85fcdc59f0d18..571392d80ccc6 100644 --- a/drivers/media/pci/bt8xx/dst_ca.c +++ b/drivers/media/pci/bt8xx/dst_ca.c @@ -668,7 +668,7 @@ struct dvb_device *dst_ca_attach(struct dst_state *dst, struct dvb_adapter *dvb_ return NULL; } -EXPORT_SYMBOL(dst_ca_attach); +EXPORT_SYMBOL_GPL(dst_ca_attach); MODULE_DESCRIPTION("DST DVB-S/T/C Combo CA driver"); MODULE_AUTHOR("Manu Abraham"); diff --git a/drivers/media/pci/cobalt/cobalt-driver.c b/drivers/media/pci/cobalt/cobalt-driver.c index 16af58f2f93cc..f9cee061517bd 100644 --- a/drivers/media/pci/cobalt/cobalt-driver.c +++ b/drivers/media/pci/cobalt/cobalt-driver.c @@ -8,6 +8,7 @@ * All rights reserved. */ +#include #include #include #include @@ -210,17 +211,17 @@ void cobalt_pcie_status_show(struct cobalt *cobalt) pcie_capability_read_word(pci_dev, PCI_EXP_LNKSTA, &stat); cobalt_info("PCIe link capability 0x%08x: %s per lane and %u lanes\n", capa, get_link_speed(capa), - (capa & PCI_EXP_LNKCAP_MLW) >> 4); + FIELD_GET(PCI_EXP_LNKCAP_MLW, capa)); cobalt_info("PCIe link control 0x%04x\n", ctrl); cobalt_info("PCIe link status 0x%04x: %s per lane and %u lanes\n", stat, get_link_speed(stat), - (stat & PCI_EXP_LNKSTA_NLW) >> 4); + FIELD_GET(PCI_EXP_LNKSTA_NLW, stat)); /* Bus */ pcie_capability_read_dword(pci_bus_dev, PCI_EXP_LNKCAP, &capa); cobalt_info("PCIe bus link capability 0x%08x: %s per lane and %u lanes\n", capa, get_link_speed(capa), - (capa & PCI_EXP_LNKCAP_MLW) >> 4); + FIELD_GET(PCI_EXP_LNKCAP_MLW, capa)); /* Slot */ pcie_capability_read_dword(pci_dev, PCI_EXP_SLTCAP, &capa); @@ -239,7 +240,7 @@ static unsigned pcie_link_get_lanes(struct cobalt *cobalt) if (!pci_is_pcie(pci_dev)) return 0; pcie_capability_read_word(pci_dev, PCI_EXP_LNKSTA, &link); - return (link & PCI_EXP_LNKSTA_NLW) >> 4; + return FIELD_GET(PCI_EXP_LNKSTA_NLW, link); } static unsigned pcie_bus_link_get_lanes(struct cobalt *cobalt) @@ -250,7 +251,7 @@ static unsigned pcie_bus_link_get_lanes(struct cobalt *cobalt) if (!pci_is_pcie(pci_dev)) return 0; pcie_capability_read_dword(pci_dev, PCI_EXP_LNKCAP, &link); - return (link & PCI_EXP_LNKCAP_MLW) >> 4; + return FIELD_GET(PCI_EXP_LNKCAP_MLW, link); } static void msi_config_show(struct cobalt *cobalt, struct pci_dev *pci_dev) diff --git a/drivers/media/pci/cx23885/cx23885-dvb.c b/drivers/media/pci/cx23885/cx23885-dvb.c index 45c2f4afceb82..9b437faf2c3f6 100644 --- a/drivers/media/pci/cx23885/cx23885-dvb.c +++ b/drivers/media/pci/cx23885/cx23885-dvb.c @@ -2459,16 +2459,10 @@ static int dvb_register(struct cx23885_tsport *port) request_module("%s", info.type); client_tuner = i2c_new_client_device(&dev->i2c_bus[1].i2c_adap, &info); if (!i2c_client_has_driver(client_tuner)) { - module_put(client_demod->dev.driver->owner); - i2c_unregister_device(client_demod); - port->i2c_client_demod = NULL; goto frontend_detach; } if (!try_module_get(client_tuner->dev.driver->owner)) { i2c_unregister_device(client_tuner); - module_put(client_demod->dev.driver->owner); - i2c_unregister_device(client_demod); - port->i2c_client_demod = NULL; goto frontend_detach; } port->i2c_client_tuner = client_tuner; @@ -2505,16 +2499,10 @@ static int dvb_register(struct cx23885_tsport *port) request_module("%s", info.type); client_tuner = i2c_new_client_device(&dev->i2c_bus[1].i2c_adap, &info); if (!i2c_client_has_driver(client_tuner)) { - module_put(client_demod->dev.driver->owner); - i2c_unregister_device(client_demod); - port->i2c_client_demod = NULL; goto frontend_detach; } if (!try_module_get(client_tuner->dev.driver->owner)) { i2c_unregister_device(client_tuner); - module_put(client_demod->dev.driver->owner); - i2c_unregister_device(client_demod); - port->i2c_client_demod = NULL; goto frontend_detach; } port->i2c_client_tuner = client_tuner; diff --git a/drivers/media/pci/cx23885/cx23885-video.c b/drivers/media/pci/cx23885/cx23885-video.c index b01499f810697..6851e01da1c5b 100644 --- a/drivers/media/pci/cx23885/cx23885-video.c +++ b/drivers/media/pci/cx23885/cx23885-video.c @@ -413,7 +413,7 @@ static int buffer_prepare(struct vb2_buffer *vb) dev->height >> 1); break; default: - BUG(); + return -EINVAL; /* should not happen */ } dprintk(2, "[%p/%d] buffer_init - %dx%d %dbpp 0x%08x - dma=0x%08lx\n", buf, buf->vb.vb2_buf.index, diff --git a/drivers/media/pci/ddbridge/ddbridge-dummy-fe.c b/drivers/media/pci/ddbridge/ddbridge-dummy-fe.c index 6868a0c4fc82a..520ebd16b0c44 100644 --- a/drivers/media/pci/ddbridge/ddbridge-dummy-fe.c +++ b/drivers/media/pci/ddbridge/ddbridge-dummy-fe.c @@ -112,7 +112,7 @@ struct dvb_frontend *ddbridge_dummy_fe_qam_attach(void) state->frontend.demodulator_priv = state; return &state->frontend; } -EXPORT_SYMBOL(ddbridge_dummy_fe_qam_attach); +EXPORT_SYMBOL_GPL(ddbridge_dummy_fe_qam_attach); static const struct dvb_frontend_ops ddbridge_dummy_fe_qam_ops = { .delsys = { SYS_DVBC_ANNEX_A }, diff --git a/drivers/media/pci/intel/ipu3/ipu3-cio2-main.c b/drivers/media/pci/intel/ipu3/ipu3-cio2-main.c index 3a8af3936e93a..162ab089124f3 100644 --- a/drivers/media/pci/intel/ipu3/ipu3-cio2-main.c +++ b/drivers/media/pci/intel/ipu3/ipu3-cio2-main.c @@ -345,7 +345,7 @@ static int cio2_hw_init(struct cio2_device *cio2, struct cio2_queue *q) void __iomem *const base = cio2->base; u8 lanes, csi2bus = q->csi2.port; u8 sensor_vc = SENSOR_VIR_CH_DFLT; - struct cio2_csi2_timing timing; + struct cio2_csi2_timing timing = { 0 }; int i, r; fmt = cio2_find_format(NULL, &q->subdev_fmt.code); diff --git a/drivers/media/platform/cadence/cdns-csi2rx.c b/drivers/media/platform/cadence/cdns-csi2rx.c index f2b4ddd31177b..2920610904441 100644 --- a/drivers/media/platform/cadence/cdns-csi2rx.c +++ b/drivers/media/platform/cadence/cdns-csi2rx.c @@ -407,8 +407,10 @@ static int csi2rx_parse_dt(struct csi2rx_priv *csi2rx) fwh, struct v4l2_async_subdev); of_node_put(ep); - if (IS_ERR(asd)) + if (IS_ERR(asd)) { + v4l2_async_notifier_cleanup(&csi2rx->notifier); return PTR_ERR(asd); + } csi2rx->notifier.ops = &csi2rx_notifier_ops; @@ -471,6 +473,7 @@ static int csi2rx_probe(struct platform_device *pdev) return 0; err_cleanup: + v4l2_async_notifier_unregister(&csi2rx->notifier); v4l2_async_notifier_cleanup(&csi2rx->notifier); err_free_priv: kfree(csi2rx); @@ -481,6 +484,8 @@ static int csi2rx_remove(struct platform_device *pdev) { struct csi2rx_priv *csi2rx = platform_get_drvdata(pdev); + v4l2_async_notifier_unregister(&csi2rx->notifier); + v4l2_async_notifier_cleanup(&csi2rx->notifier); v4l2_async_unregister_subdev(&csi2rx->subdev); kfree(csi2rx); diff --git a/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c b/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c index 470f8f1677448..bc84274ba87aa 100644 --- a/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c +++ b/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c @@ -1455,6 +1455,7 @@ static int mtk_jpeg_remove(struct platform_device *pdev) { struct mtk_jpeg_dev *jpeg = platform_get_drvdata(pdev); + cancel_delayed_work_sync(&jpeg->job_timeout_work); pm_runtime_disable(&pdev->dev); video_unregister_device(jpeg->vdev); v4l2_m2m_release(jpeg->m2m_dev); diff --git a/drivers/media/platform/mtk-vcodec/vdec/vdec_vp9_if.c b/drivers/media/platform/mtk-vcodec/vdec/vdec_vp9_if.c index 71cdc3ddafcbb..0b2cde3b3439a 100644 --- a/drivers/media/platform/mtk-vcodec/vdec/vdec_vp9_if.c +++ b/drivers/media/platform/mtk-vcodec/vdec/vdec_vp9_if.c @@ -226,10 +226,11 @@ static struct vdec_fb *vp9_rm_from_fb_use_list(struct vdec_vp9_inst if (fb->base_y.va == addr) { list_move_tail(&node->list, &inst->available_fb_node_list); - break; + return fb; } } - return fb; + + return NULL; } static void vp9_add_to_fb_free_list(struct vdec_vp9_inst *inst, diff --git a/drivers/media/platform/qcom/camss/camss-csid-170.c b/drivers/media/platform/qcom/camss/camss-csid-170.c index 82f59933ad7b3..f7839e994bda6 100644 --- a/drivers/media/platform/qcom/camss/camss-csid-170.c +++ b/drivers/media/platform/qcom/camss/camss-csid-170.c @@ -327,13 +327,14 @@ static const struct csid_format csid_formats[] = { }, }; -static void csid_configure_stream(struct csid_device *csid, u8 enable) +static void __csid_configure_stream(struct csid_device *csid, u8 enable, u8 vc) { struct csid_testgen_config *tg = &csid->testgen; u32 val; u32 phy_sel = 0; u8 lane_cnt = csid->phy.lane_cnt; - struct v4l2_mbus_framefmt *input_format = &csid->fmt[MSM_CSID_PAD_SRC]; + /* Source pads matching RDI channels on hardware. Pad 1 -> RDI0, Pad 2 -> RDI1, etc. */ + struct v4l2_mbus_framefmt *input_format = &csid->fmt[MSM_CSID_PAD_FIRST_SRC + vc]; const struct csid_format *format = csid_get_fmt_entry(csid->formats, csid->nformats, input_format->code); @@ -344,13 +345,9 @@ static void csid_configure_stream(struct csid_device *csid, u8 enable) phy_sel = csid->phy.csiphy_id; if (enable) { - u8 vc = 0; /* Virtual Channel 0 */ - u8 dt_id = vc * 4; + u8 dt_id = vc; if (tg->enabled) { - /* Config Test Generator */ - vc = 0xa; - /* configure one DT, infinite frames */ val = vc << TPG_VC_CFG0_VC_NUM; val |= INTELEAVING_MODE_ONE_SHOT << TPG_VC_CFG0_LINE_INTERLEAVING_MODE; @@ -363,14 +360,14 @@ static void csid_configure_stream(struct csid_device *csid, u8 enable) writel_relaxed(0x12345678, csid->base + CSID_TPG_LFSR_SEED); - val = input_format->height & 0x1fff << TPG_DT_n_CFG_0_FRAME_HEIGHT; - val |= input_format->width & 0x1fff << TPG_DT_n_CFG_0_FRAME_WIDTH; + val = (input_format->height & 0x1fff) << TPG_DT_n_CFG_0_FRAME_HEIGHT; + val |= (input_format->width & 0x1fff) << TPG_DT_n_CFG_0_FRAME_WIDTH; writel_relaxed(val, csid->base + CSID_TPG_DT_n_CFG_0(0)); val = format->data_type << TPG_DT_n_CFG_1_DATA_TYPE; writel_relaxed(val, csid->base + CSID_TPG_DT_n_CFG_1(0)); - val = tg->mode << TPG_DT_n_CFG_2_PAYLOAD_MODE; + val = (tg->mode - 1) << TPG_DT_n_CFG_2_PAYLOAD_MODE; val |= 0xBE << TPG_DT_n_CFG_2_USER_SPECIFIED_PAYLOAD; val |= format->decode_format << TPG_DT_n_CFG_2_ENCODE_FORMAT; writel_relaxed(val, csid->base + CSID_TPG_DT_n_CFG_2(0)); @@ -388,42 +385,42 @@ static void csid_configure_stream(struct csid_device *csid, u8 enable) val |= format->data_type << RDI_CFG0_DATA_TYPE; val |= vc << RDI_CFG0_VIRTUAL_CHANNEL; val |= dt_id << RDI_CFG0_DT_ID; - writel_relaxed(val, csid->base + CSID_RDI_CFG0(0)); + writel_relaxed(val, csid->base + CSID_RDI_CFG0(vc)); /* CSID_TIMESTAMP_STB_POST_IRQ */ val = 2 << RDI_CFG1_TIMESTAMP_STB_SEL; - writel_relaxed(val, csid->base + CSID_RDI_CFG1(0)); + writel_relaxed(val, csid->base + CSID_RDI_CFG1(vc)); val = 1; - writel_relaxed(val, csid->base + CSID_RDI_FRM_DROP_PERIOD(0)); + writel_relaxed(val, csid->base + CSID_RDI_FRM_DROP_PERIOD(vc)); val = 0; - writel_relaxed(0, csid->base + CSID_RDI_FRM_DROP_PATTERN(0)); + writel_relaxed(val, csid->base + CSID_RDI_FRM_DROP_PATTERN(vc)); val = 1; - writel_relaxed(val, csid->base + CSID_RDI_IRQ_SUBSAMPLE_PERIOD(0)); + writel_relaxed(val, csid->base + CSID_RDI_IRQ_SUBSAMPLE_PERIOD(vc)); val = 0; - writel_relaxed(val, csid->base + CSID_RDI_IRQ_SUBSAMPLE_PATTERN(0)); + writel_relaxed(val, csid->base + CSID_RDI_IRQ_SUBSAMPLE_PATTERN(vc)); val = 1; - writel_relaxed(val, csid->base + CSID_RDI_RPP_PIX_DROP_PERIOD(0)); + writel_relaxed(val, csid->base + CSID_RDI_RPP_PIX_DROP_PERIOD(vc)); val = 0; - writel_relaxed(val, csid->base + CSID_RDI_RPP_PIX_DROP_PATTERN(0)); + writel_relaxed(val, csid->base + CSID_RDI_RPP_PIX_DROP_PATTERN(vc)); val = 1; - writel_relaxed(val, csid->base + CSID_RDI_RPP_LINE_DROP_PERIOD(0)); + writel_relaxed(val, csid->base + CSID_RDI_RPP_LINE_DROP_PERIOD(vc)); val = 0; - writel_relaxed(val, csid->base + CSID_RDI_RPP_LINE_DROP_PATTERN(0)); + writel_relaxed(val, csid->base + CSID_RDI_RPP_LINE_DROP_PATTERN(vc)); val = 0; - writel_relaxed(val, csid->base + CSID_RDI_CTRL(0)); + writel_relaxed(val, csid->base + CSID_RDI_CTRL(vc)); - val = readl_relaxed(csid->base + CSID_RDI_CFG0(0)); + val = readl_relaxed(csid->base + CSID_RDI_CFG0(vc)); val |= 1 << RDI_CFG0_ENABLE; - writel_relaxed(val, csid->base + CSID_RDI_CFG0(0)); + writel_relaxed(val, csid->base + CSID_RDI_CFG0(vc)); } if (tg->enabled) { @@ -442,6 +439,8 @@ static void csid_configure_stream(struct csid_device *csid, u8 enable) writel_relaxed(val, csid->base + CSID_CSI2_RX_CFG0); val = 1 << CSI2_RX_CFG1_PACKET_ECC_CORRECTION_EN; + if (vc > 3) + val |= 1 << CSI2_RX_CFG1_VC_MODE; val |= 1 << CSI2_RX_CFG1_MISR_EN; writel_relaxed(val, csid->base + CSID_CSI2_RX_CFG1); // csi2_vc_mode_shift_val ? @@ -449,7 +448,16 @@ static void csid_configure_stream(struct csid_device *csid, u8 enable) val = HALT_CMD_RESUME_AT_FRAME_BOUNDARY << RDI_CTRL_HALT_CMD; else val = HALT_CMD_HALT_AT_FRAME_BOUNDARY << RDI_CTRL_HALT_CMD; - writel_relaxed(val, csid->base + CSID_RDI_CTRL(0)); + writel_relaxed(val, csid->base + CSID_RDI_CTRL(vc)); +} + +static void csid_configure_stream(struct csid_device *csid, u8 enable) +{ + u8 i; + /* Loop through all enabled VCs and configure stream for each */ + for (i = 0; i < MSM_CSID_MAX_SRC_STREAMS; i++) + if (csid->phy.en_vc & BIT(i)) + __csid_configure_stream(csid, enable, i); } static int csid_configure_testgen_pattern(struct csid_device *csid, s32 val) @@ -495,6 +503,7 @@ static irqreturn_t csid_isr(int irq, void *dev) struct csid_device *csid = dev; u32 val; u8 reset_done; + int i; val = readl_relaxed(csid->base + CSID_TOP_IRQ_STATUS); writel_relaxed(val, csid->base + CSID_TOP_IRQ_CLEAR); @@ -503,8 +512,12 @@ static irqreturn_t csid_isr(int irq, void *dev) val = readl_relaxed(csid->base + CSID_CSI2_RX_IRQ_STATUS); writel_relaxed(val, csid->base + CSID_CSI2_RX_IRQ_CLEAR); - val = readl_relaxed(csid->base + CSID_CSI2_RDIN_IRQ_STATUS(0)); - writel_relaxed(val, csid->base + CSID_CSI2_RDIN_IRQ_CLEAR(0)); + /* Read and clear IRQ status for each enabled RDI channel */ + for (i = 0; i < MSM_CSID_MAX_SRC_STREAMS; i++) + if (csid->phy.en_vc & BIT(i)) { + val = readl_relaxed(csid->base + CSID_CSI2_RDIN_IRQ_STATUS(i)); + writel_relaxed(val, csid->base + CSID_CSI2_RDIN_IRQ_CLEAR(i)); + } val = 1 << IRQ_CMD_CLEAR; writel_relaxed(val, csid->base + CSID_IRQ_CMD); diff --git a/drivers/media/platform/qcom/camss/camss-csid.c b/drivers/media/platform/qcom/camss/camss-csid.c index a1637b78568b2..2a294587ec9d9 100644 --- a/drivers/media/platform/qcom/camss/camss-csid.c +++ b/drivers/media/platform/qcom/camss/camss-csid.c @@ -180,6 +180,8 @@ static int csid_set_power(struct v4l2_subdev *sd, int on) return ret; } + csid->phy.need_vc_update = true; + enable_irq(csid->irq); ret = csid->ops->reset(csid); @@ -229,7 +231,10 @@ static int csid_set_stream(struct v4l2_subdev *sd, int enable) return -ENOLINK; } - csid->ops->configure_stream(csid, enable); + if (csid->phy.need_vc_update) { + csid->ops->configure_stream(csid, enable); + csid->phy.need_vc_update = false; + } return 0; } @@ -440,6 +445,7 @@ static int csid_set_format(struct v4l2_subdev *sd, { struct csid_device *csid = v4l2_get_subdevdata(sd); struct v4l2_mbus_framefmt *format; + int i; format = __csid_get_format(csid, sd_state, fmt->pad, fmt->which); if (format == NULL) @@ -448,14 +454,14 @@ static int csid_set_format(struct v4l2_subdev *sd, csid_try_format(csid, sd_state, fmt->pad, &fmt->format, fmt->which); *format = fmt->format; - /* Propagate the format from sink to source */ + /* Propagate the format from sink to source pads */ if (fmt->pad == MSM_CSID_PAD_SINK) { - format = __csid_get_format(csid, sd_state, MSM_CSID_PAD_SRC, - fmt->which); + for (i = MSM_CSID_PAD_FIRST_SRC; i < MSM_CSID_PADS_NUM; ++i) { + format = __csid_get_format(csid, sd_state, i, fmt->which); - *format = fmt->format; - csid_try_format(csid, sd_state, MSM_CSID_PAD_SRC, format, - fmt->which); + *format = fmt->format; + csid_try_format(csid, sd_state, i, format, fmt->which); + } } return 0; @@ -695,7 +701,6 @@ static int csid_link_setup(struct media_entity *entity, struct csid_device *csid; struct csiphy_device *csiphy; struct csiphy_lanes_cfg *lane_cfg; - struct v4l2_subdev_format format = { 0 }; sd = media_entity_to_v4l2_subdev(entity); csid = v4l2_get_subdevdata(sd); @@ -718,11 +723,22 @@ static int csid_link_setup(struct media_entity *entity, lane_cfg = &csiphy->cfg.csi2->lane_cfg; csid->phy.lane_cnt = lane_cfg->num_data; csid->phy.lane_assign = csid_get_lane_assign(lane_cfg); + } + /* Decide which virtual channels to enable based on which source pads are enabled */ + if (local->flags & MEDIA_PAD_FL_SOURCE) { + struct v4l2_subdev *sd = media_entity_to_v4l2_subdev(entity); + struct csid_device *csid = v4l2_get_subdevdata(sd); + struct device *dev = csid->camss->dev; + + if (flags & MEDIA_LNK_FL_ENABLED) + csid->phy.en_vc |= BIT(local->index - 1); + else + csid->phy.en_vc &= ~BIT(local->index - 1); - /* Reset format on source pad to sink pad format */ - format.pad = MSM_CSID_PAD_SRC; - format.which = V4L2_SUBDEV_FORMAT_ACTIVE; - csid_set_format(&csid->subdev, NULL, &format); + csid->phy.need_vc_update = true; + + dev_dbg(dev, "%s: Enabled CSID virtual channels mask 0x%x\n", + __func__, csid->phy.en_vc); } return 0; @@ -773,6 +789,7 @@ int msm_csid_register_entity(struct csid_device *csid, struct v4l2_subdev *sd = &csid->subdev; struct media_pad *pads = csid->pads; struct device *dev = csid->camss->dev; + int i; int ret; v4l2_subdev_init(sd, &csid_v4l2_ops); @@ -809,7 +826,8 @@ int msm_csid_register_entity(struct csid_device *csid, } pads[MSM_CSID_PAD_SINK].flags = MEDIA_PAD_FL_SINK; - pads[MSM_CSID_PAD_SRC].flags = MEDIA_PAD_FL_SOURCE; + for (i = MSM_CSID_PAD_FIRST_SRC; i < MSM_CSID_PADS_NUM; ++i) + pads[i].flags = MEDIA_PAD_FL_SOURCE; sd->entity.function = MEDIA_ENT_F_PROC_VIDEO_PIXEL_FORMATTER; sd->entity.ops = &csid_media_ops; diff --git a/drivers/media/platform/qcom/camss/camss-csid.h b/drivers/media/platform/qcom/camss/camss-csid.h index 814ebc7c29d65..6b5485fe18332 100644 --- a/drivers/media/platform/qcom/camss/camss-csid.h +++ b/drivers/media/platform/qcom/camss/camss-csid.h @@ -19,8 +19,13 @@ #include #define MSM_CSID_PAD_SINK 0 -#define MSM_CSID_PAD_SRC 1 -#define MSM_CSID_PADS_NUM 2 +#define MSM_CSID_PAD_FIRST_SRC 1 +#define MSM_CSID_PADS_NUM 5 + +#define MSM_CSID_PAD_SRC (MSM_CSID_PAD_FIRST_SRC) + +/* CSID hardware can demultiplex up to 4 outputs */ +#define MSM_CSID_MAX_SRC_STREAMS 4 #define DATA_TYPE_EMBEDDED_DATA_8BIT 0x12 #define DATA_TYPE_YUV420_8BIT 0x18 @@ -81,6 +86,8 @@ struct csid_phy_config { u8 csiphy_id; u8 lane_cnt; u32 lane_assign; + u32 en_vc; + u8 need_vc_update; }; struct csid_device; diff --git a/drivers/media/platform/qcom/camss/camss-vfe-170.c b/drivers/media/platform/qcom/camss/camss-vfe-170.c index 02cb8005504a2..af264c1f7b0eb 100644 --- a/drivers/media/platform/qcom/camss/camss-vfe-170.c +++ b/drivers/media/platform/qcom/camss/camss-vfe-170.c @@ -7,7 +7,6 @@ * Copyright (C) 2020-2021 Linaro Ltd. */ -#include #include #include #include @@ -498,35 +497,20 @@ static int vfe_enable_output(struct vfe_line *line) return 0; } -static int vfe_disable_output(struct vfe_line *line) +static void vfe_disable_output(struct vfe_line *line) { struct vfe_device *vfe = to_vfe(line); struct vfe_output *output = &line->output; unsigned long flags; unsigned int i; - bool done; - int timeout = 0; - - do { - spin_lock_irqsave(&vfe->output_lock, flags); - done = !output->gen2.active_num; - spin_unlock_irqrestore(&vfe->output_lock, flags); - usleep_range(10000, 20000); - - if (timeout++ == 100) { - dev_err(vfe->camss->dev, "VFE idle timeout - resetting\n"); - vfe_reset(vfe); - output->gen2.active_num = 0; - return 0; - } - } while (!done); spin_lock_irqsave(&vfe->output_lock, flags); for (i = 0; i < output->wm_num; i++) vfe_wm_stop(vfe, output->wm_idx[i]); + output->gen2.active_num = 0; spin_unlock_irqrestore(&vfe->output_lock, flags); - return 0; + vfe_reset(vfe); } /* diff --git a/drivers/media/platform/qcom/camss/camss-vfe.c b/drivers/media/platform/qcom/camss/camss-vfe.c index e0f3a36f3f3f9..8beea27004ca3 100644 --- a/drivers/media/platform/qcom/camss/camss-vfe.c +++ b/drivers/media/platform/qcom/camss/camss-vfe.c @@ -533,7 +533,8 @@ static int vfe_check_clock_rates(struct vfe_device *vfe) struct camss_clock *clock = &vfe->clock[i]; if (!strcmp(clock->name, "vfe0") || - !strcmp(clock->name, "vfe1")) { + !strcmp(clock->name, "vfe1") || + !strcmp(clock->name, "vfe_lite")) { u64 min_rate = 0; unsigned long rate; @@ -607,7 +608,7 @@ static int vfe_get(struct vfe_device *vfe) } else { ret = vfe_check_clock_rates(vfe); if (ret < 0) - goto error_pm_runtime_get; + goto error_pm_domain; } vfe->power_count++; diff --git a/drivers/media/platform/qcom/camss/camss.c b/drivers/media/platform/qcom/camss/camss.c index ef100d5f77636..e53f575b32f55 100644 --- a/drivers/media/platform/qcom/camss/camss.c +++ b/drivers/media/platform/qcom/camss/camss.c @@ -1369,6 +1369,12 @@ static int camss_probe(struct platform_device *pdev) goto err_cleanup; } + ret = camss_configure_pd(camss); + if (ret < 0) { + dev_err(dev, "Failed to configure power domains: %d\n", ret); + goto err_cleanup; + } + ret = camss_init_subdevices(camss); if (ret < 0) goto err_cleanup; @@ -1421,12 +1427,6 @@ static int camss_probe(struct platform_device *pdev) } } - ret = camss_configure_pd(camss); - if (ret < 0) { - dev_err(dev, "Failed to configure power domains: %d\n", ret); - return ret; - } - pm_runtime_enable(dev); return 0; diff --git a/drivers/media/platform/qcom/venus/hfi_msgs.c b/drivers/media/platform/qcom/venus/hfi_msgs.c index 9a2bdb002edcc..68f208e3071d0 100644 --- a/drivers/media/platform/qcom/venus/hfi_msgs.c +++ b/drivers/media/platform/qcom/venus/hfi_msgs.c @@ -367,7 +367,7 @@ session_get_prop_buf_req(struct hfi_msg_session_property_info_pkt *pkt, memcpy(&bufreq[idx], buf_req, sizeof(*bufreq)); idx++; - if (idx > HFI_BUFFER_TYPE_MAX) + if (idx >= HFI_BUFFER_TYPE_MAX) return HFI_ERR_SESSION_INVALID_PARAMETER; req_bytes -= sizeof(struct hfi_buffer_requirements); diff --git a/drivers/media/platform/qcom/venus/hfi_parser.c b/drivers/media/platform/qcom/venus/hfi_parser.c index 5b8389b982993..a04673d2c3ed3 100644 --- a/drivers/media/platform/qcom/venus/hfi_parser.c +++ b/drivers/media/platform/qcom/venus/hfi_parser.c @@ -19,6 +19,9 @@ static void init_codecs(struct venus_core *core) struct hfi_plat_caps *caps = core->caps, *cap; unsigned long bit; + if (hweight_long(core->dec_codecs) + hweight_long(core->enc_codecs) > MAX_CODEC_NUM) + return; + for_each_set_bit(bit, &core->dec_codecs, MAX_CODEC_NUM) { cap = &caps[core->codecs_count++]; cap->codec = BIT(bit); @@ -86,6 +89,9 @@ static void fill_profile_level(struct hfi_plat_caps *cap, const void *data, { const struct hfi_profile_level *pl = data; + if (cap->num_pl + num >= HFI_MAX_PROFILE_COUNT) + return; + memcpy(&cap->pl[cap->num_pl], pl, num * sizeof(*pl)); cap->num_pl += num; } @@ -111,6 +117,9 @@ fill_caps(struct hfi_plat_caps *cap, const void *data, unsigned int num) { const struct hfi_capability *caps = data; + if (cap->num_caps + num >= MAX_CAP_ENTRIES) + return; + memcpy(&cap->caps[cap->num_caps], caps, num * sizeof(*caps)); cap->num_caps += num; } @@ -137,6 +146,9 @@ static void fill_raw_fmts(struct hfi_plat_caps *cap, const void *fmts, { const struct raw_formats *formats = fmts; + if (cap->num_fmts + num_fmts >= MAX_FMT_ENTRIES) + return; + memcpy(&cap->fmts[cap->num_fmts], formats, num_fmts * sizeof(*formats)); cap->num_fmts += num_fmts; } @@ -159,6 +171,9 @@ parse_raw_formats(struct venus_core *core, u32 codecs, u32 domain, void *data) rawfmts[i].buftype = fmt->buffer_type; i++; + if (i >= MAX_FMT_ENTRIES) + return; + if (pinfo->num_planes > MAX_PLANES) break; diff --git a/drivers/media/platform/qcom/venus/hfi_venus.c b/drivers/media/platform/qcom/venus/hfi_venus.c index ce98c523b3c68..9dd715af23793 100644 --- a/drivers/media/platform/qcom/venus/hfi_venus.c +++ b/drivers/media/platform/qcom/venus/hfi_venus.c @@ -131,7 +131,6 @@ struct venus_hfi_device { static bool venus_pkt_debug; int venus_fw_debug = HFI_DEBUG_MSG_ERROR | HFI_DEBUG_MSG_FATAL; -static bool venus_sys_idle_indicator; static bool venus_fw_low_power_mode = true; static int venus_hw_rsp_timeout = 1000; static bool venus_fw_coverage; @@ -206,6 +205,11 @@ static int venus_write_queue(struct venus_hfi_device *hdev, new_wr_idx = wr_idx + dwords; wr_ptr = (u32 *)(queue->qmem.kva + (wr_idx << 2)); + + if (wr_ptr < (u32 *)queue->qmem.kva || + wr_ptr > (u32 *)(queue->qmem.kva + queue->qmem.size - sizeof(*wr_ptr))) + return -EINVAL; + if (new_wr_idx < qsize) { memcpy(wr_ptr, packet, dwords << 2); } else { @@ -273,6 +277,11 @@ static int venus_read_queue(struct venus_hfi_device *hdev, } rd_ptr = (u32 *)(queue->qmem.kva + (rd_idx << 2)); + + if (rd_ptr < (u32 *)queue->qmem.kva || + rd_ptr > (u32 *)(queue->qmem.kva + queue->qmem.size - sizeof(*rd_ptr))) + return -EINVAL; + dwords = *rd_ptr >> 2; if (!dwords) return -EINVAL; @@ -454,7 +463,6 @@ static int venus_boot_core(struct venus_hfi_device *hdev) void __iomem *wrapper_base = hdev->core->wrapper_base; int ret = 0; - writel(BIT(VIDC_CTRL_INIT_CTRL_SHIFT), cpu_cs_base + VIDC_CTRL_INIT); if (IS_V6(hdev->core)) { mask_val = readl(wrapper_base + WRAPPER_INTR_MASK); mask_val &= ~(WRAPPER_INTR_MASK_A2HWD_BASK_V6 | @@ -465,6 +473,7 @@ static int venus_boot_core(struct venus_hfi_device *hdev) writel(mask_val, wrapper_base + WRAPPER_INTR_MASK); writel(1, cpu_cs_base + CPU_CS_SCIACMDARG3); + writel(BIT(VIDC_CTRL_INIT_CTRL_SHIFT), cpu_cs_base + VIDC_CTRL_INIT); while (!ctrl_status && count < max_tries) { ctrl_status = readl(cpu_cs_base + CPU_CS_SCIACMDARG0); if ((ctrl_status & CPU_CS_SCIACMDARG0_ERROR_STATUS_MASK) == 4) { @@ -924,17 +933,12 @@ static int venus_sys_set_default_properties(struct venus_hfi_device *hdev) if (ret) dev_warn(dev, "setting fw debug msg ON failed (%d)\n", ret); - /* - * Idle indicator is disabled by default on some 4xx firmware versions, - * enable it explicitly in order to make suspend functional by checking - * WFI (wait-for-interrupt) bit. - */ - if (IS_V4(hdev->core) || IS_V6(hdev->core)) - venus_sys_idle_indicator = true; - - ret = venus_sys_set_idle_message(hdev, venus_sys_idle_indicator); - if (ret) - dev_warn(dev, "setting idle response ON failed (%d)\n", ret); + /* HFI_PROPERTY_SYS_IDLE_INDICATOR is not supported beyond 8916 (HFI V1) */ + if (IS_V1(hdev->core)) { + ret = venus_sys_set_idle_message(hdev, false); + if (ret) + dev_warn(dev, "setting idle response ON failed (%d)\n", ret); + } ret = venus_sys_set_power_control(hdev, venus_fw_low_power_mode); if (ret) diff --git a/drivers/media/platform/s3c-camif/camif-capture.c b/drivers/media/platform/s3c-camif/camif-capture.c index 140854ab4dd8c..d6b7fbd49a5cc 100644 --- a/drivers/media/platform/s3c-camif/camif-capture.c +++ b/drivers/media/platform/s3c-camif/camif-capture.c @@ -1132,12 +1132,12 @@ int s3c_camif_register_video_node(struct camif_dev *camif, int idx) ret = vb2_queue_init(q); if (ret) - goto err_vd_rel; + return ret; vp->pad.flags = MEDIA_PAD_FL_SINK; ret = media_entity_pads_init(&vfd->entity, 1, &vp->pad); if (ret) - goto err_vd_rel; + return ret; video_set_drvdata(vfd, vp); @@ -1170,8 +1170,6 @@ int s3c_camif_register_video_node(struct camif_dev *camif, int idx) v4l2_ctrl_handler_free(&vp->ctrl_handler); err_me_cleanup: media_entity_cleanup(&vfd->entity); -err_vd_rel: - video_device_release(vfd); return ret; } diff --git a/drivers/media/rc/imon.c b/drivers/media/rc/imon.c index 72e4bb0fb71ec..4e7c3d889d5ce 100644 --- a/drivers/media/rc/imon.c +++ b/drivers/media/rc/imon.c @@ -2427,6 +2427,12 @@ static int imon_probe(struct usb_interface *interface, goto fail; } + if (first_if->dev.driver != interface->dev.driver) { + dev_err(&interface->dev, "inconsistent driver matching\n"); + ret = -EINVAL; + goto fail; + } + if (ifnum == 0) { ictx = imon_init_intf0(interface, id); if (!ictx) { diff --git a/drivers/media/rc/ir-sharp-decoder.c b/drivers/media/rc/ir-sharp-decoder.c index d09c38c07dbdb..053151cd8f214 100644 --- a/drivers/media/rc/ir-sharp-decoder.c +++ b/drivers/media/rc/ir-sharp-decoder.c @@ -15,7 +15,9 @@ #define SHARP_UNIT 40 /* us */ #define SHARP_BIT_PULSE (8 * SHARP_UNIT) /* 320us */ #define SHARP_BIT_0_PERIOD (25 * SHARP_UNIT) /* 1ms (680us space) */ -#define SHARP_BIT_1_PERIOD (50 * SHARP_UNIT) /* 2ms (1680ms space) */ +#define SHARP_BIT_1_PERIOD (50 * SHARP_UNIT) /* 2ms (1680us space) */ +#define SHARP_BIT_0_SPACE (17 * SHARP_UNIT) /* 680us space */ +#define SHARP_BIT_1_SPACE (42 * SHARP_UNIT) /* 1680us space */ #define SHARP_ECHO_SPACE (1000 * SHARP_UNIT) /* 40 ms */ #define SHARP_TRAILER_SPACE (125 * SHARP_UNIT) /* 5 ms (even longer) */ @@ -168,8 +170,8 @@ static const struct ir_raw_timings_pd ir_sharp_timings = { .header_pulse = 0, .header_space = 0, .bit_pulse = SHARP_BIT_PULSE, - .bit_space[0] = SHARP_BIT_0_PERIOD, - .bit_space[1] = SHARP_BIT_1_PERIOD, + .bit_space[0] = SHARP_BIT_0_SPACE, + .bit_space[1] = SHARP_BIT_1_SPACE, .trailer_pulse = SHARP_BIT_PULSE, .trailer_space = SHARP_ECHO_SPACE, .msb_first = 1, diff --git a/drivers/media/rc/lirc_dev.c b/drivers/media/rc/lirc_dev.c index 7f591ff5269d2..888177b911525 100644 --- a/drivers/media/rc/lirc_dev.c +++ b/drivers/media/rc/lirc_dev.c @@ -287,7 +287,11 @@ static ssize_t lirc_transmit(struct file *file, const char __user *buf, if (ret < 0) goto out_kfree_raw; - count = ret; + /* drop trailing space */ + if (!(ret % 2)) + count = ret - 1; + else + count = ret; txbuf = kmalloc_array(count, sizeof(unsigned int), GFP_KERNEL); if (!txbuf) { diff --git a/drivers/media/test-drivers/vidtv/vidtv_mux.c b/drivers/media/test-drivers/vidtv/vidtv_mux.c index b51e6a3b8cbeb..f99878eff7ace 100644 --- a/drivers/media/test-drivers/vidtv/vidtv_mux.c +++ b/drivers/media/test-drivers/vidtv/vidtv_mux.c @@ -504,13 +504,16 @@ struct vidtv_mux *vidtv_mux_init(struct dvb_frontend *fe, m->priv = args->priv; m->network_id = args->network_id; m->network_name = kstrdup(args->network_name, GFP_KERNEL); + if (!m->network_name) + goto free_mux_buf; + m->timing.current_jiffies = get_jiffies_64(); if (args->channels) m->channels = args->channels; else if (vidtv_channels_init(m) < 0) - goto free_mux_buf; + goto free_mux_network_name; /* will alloc data for pmt_sections after initializing pat */ if (vidtv_channel_si_init(m) < 0) @@ -527,6 +530,8 @@ struct vidtv_mux *vidtv_mux_init(struct dvb_frontend *fe, vidtv_channel_si_destroy(m); free_channels: vidtv_channels_destroy(m); +free_mux_network_name: + kfree(m->network_name); free_mux_buf: vfree(m->mux_buf); free_mux: diff --git a/drivers/media/test-drivers/vidtv/vidtv_psi.c b/drivers/media/test-drivers/vidtv/vidtv_psi.c index c11ac8dca73df..988324587c4ed 100644 --- a/drivers/media/test-drivers/vidtv/vidtv_psi.c +++ b/drivers/media/test-drivers/vidtv/vidtv_psi.c @@ -307,16 +307,29 @@ struct vidtv_psi_desc_service *vidtv_psi_service_desc_init(struct vidtv_psi_desc desc->service_name_len = service_name_len; - if (service_name && service_name_len) + if (service_name && service_name_len) { desc->service_name = kstrdup(service_name, GFP_KERNEL); + if (!desc->service_name) + goto free_desc; + } desc->provider_name_len = provider_name_len; - if (provider_name && provider_name_len) + if (provider_name && provider_name_len) { desc->provider_name = kstrdup(provider_name, GFP_KERNEL); + if (!desc->provider_name) + goto free_desc_service_name; + } vidtv_psi_desc_chain(head, (struct vidtv_psi_desc *)desc); return desc; + +free_desc_service_name: + if (service_name && service_name_len) + kfree(desc->service_name); +free_desc: + kfree(desc); + return NULL; } struct vidtv_psi_desc_registration @@ -361,8 +374,13 @@ struct vidtv_psi_desc_network_name desc->length = network_name_len; - if (network_name && network_name_len) + if (network_name && network_name_len) { desc->network_name = kstrdup(network_name, GFP_KERNEL); + if (!desc->network_name) { + kfree(desc); + return NULL; + } + } vidtv_psi_desc_chain(head, (struct vidtv_psi_desc *)desc); return desc; @@ -448,15 +466,32 @@ struct vidtv_psi_desc_short_event iso_language_code = "eng"; desc->iso_language_code = kstrdup(iso_language_code, GFP_KERNEL); + if (!desc->iso_language_code) + goto free_desc; - if (event_name && event_name_len) + if (event_name && event_name_len) { desc->event_name = kstrdup(event_name, GFP_KERNEL); + if (!desc->event_name) + goto free_desc_language_code; + } - if (text && text_len) + if (text && text_len) { desc->text = kstrdup(text, GFP_KERNEL); + if (!desc->text) + goto free_desc_event_name; + } vidtv_psi_desc_chain(head, (struct vidtv_psi_desc *)desc); return desc; + +free_desc_event_name: + if (event_name && event_name_len) + kfree(desc->event_name); +free_desc_language_code: + kfree(desc->iso_language_code); +free_desc: + kfree(desc); + return NULL; } struct vidtv_psi_desc *vidtv_psi_desc_clone(struct vidtv_psi_desc *desc) diff --git a/drivers/media/test-drivers/vivid/vivid-rds-gen.c b/drivers/media/test-drivers/vivid/vivid-rds-gen.c index b5b104ee64c99..c57771119a34b 100644 --- a/drivers/media/test-drivers/vivid/vivid-rds-gen.c +++ b/drivers/media/test-drivers/vivid/vivid-rds-gen.c @@ -145,7 +145,7 @@ void vivid_rds_gen_fill(struct vivid_rds_gen *rds, unsigned freq, rds->ta = alt; rds->ms = true; snprintf(rds->psname, sizeof(rds->psname), "%6d.%1d", - freq / 16, ((freq & 0xf) * 10) / 16); + (freq / 16) % 1000000, (((freq & 0xf) * 10) / 16) % 10); if (alt) strscpy(rds->radiotext, " The Radio Data System can switch between different Radio Texts ", diff --git a/drivers/media/tuners/fc0011.c b/drivers/media/tuners/fc0011.c index eaa3bbc903d7e..3d3b54be29557 100644 --- a/drivers/media/tuners/fc0011.c +++ b/drivers/media/tuners/fc0011.c @@ -499,7 +499,7 @@ struct dvb_frontend *fc0011_attach(struct dvb_frontend *fe, return fe; } -EXPORT_SYMBOL(fc0011_attach); +EXPORT_SYMBOL_GPL(fc0011_attach); MODULE_DESCRIPTION("Fitipower FC0011 silicon tuner driver"); MODULE_AUTHOR("Michael Buesch "); diff --git a/drivers/media/tuners/fc0012.c b/drivers/media/tuners/fc0012.c index 4429d5e8c5796..81e65acbdb170 100644 --- a/drivers/media/tuners/fc0012.c +++ b/drivers/media/tuners/fc0012.c @@ -495,7 +495,7 @@ struct dvb_frontend *fc0012_attach(struct dvb_frontend *fe, return fe; } -EXPORT_SYMBOL(fc0012_attach); +EXPORT_SYMBOL_GPL(fc0012_attach); MODULE_DESCRIPTION("Fitipower FC0012 silicon tuner driver"); MODULE_AUTHOR("Hans-Frieder Vogt "); diff --git a/drivers/media/tuners/fc0013.c b/drivers/media/tuners/fc0013.c index 29dd9b55ff333..1006a2798eefc 100644 --- a/drivers/media/tuners/fc0013.c +++ b/drivers/media/tuners/fc0013.c @@ -608,7 +608,7 @@ struct dvb_frontend *fc0013_attach(struct dvb_frontend *fe, return fe; } -EXPORT_SYMBOL(fc0013_attach); +EXPORT_SYMBOL_GPL(fc0013_attach); MODULE_DESCRIPTION("Fitipower FC0013 silicon tuner driver"); MODULE_AUTHOR("Hans-Frieder Vogt "); diff --git a/drivers/media/tuners/max2165.c b/drivers/media/tuners/max2165.c index 1c746bed51fee..1575ab94e1c8b 100644 --- a/drivers/media/tuners/max2165.c +++ b/drivers/media/tuners/max2165.c @@ -410,7 +410,7 @@ struct dvb_frontend *max2165_attach(struct dvb_frontend *fe, return fe; } -EXPORT_SYMBOL(max2165_attach); +EXPORT_SYMBOL_GPL(max2165_attach); MODULE_AUTHOR("David T. L. Wong "); MODULE_DESCRIPTION("Maxim MAX2165 silicon tuner driver"); diff --git a/drivers/media/tuners/mc44s803.c b/drivers/media/tuners/mc44s803.c index 0c9161516abdf..ed8bdf7ebd99d 100644 --- a/drivers/media/tuners/mc44s803.c +++ b/drivers/media/tuners/mc44s803.c @@ -356,7 +356,7 @@ struct dvb_frontend *mc44s803_attach(struct dvb_frontend *fe, kfree(priv); return NULL; } -EXPORT_SYMBOL(mc44s803_attach); +EXPORT_SYMBOL_GPL(mc44s803_attach); MODULE_AUTHOR("Jochen Friedrich"); MODULE_DESCRIPTION("Freescale MC44S803 silicon tuner driver"); diff --git a/drivers/media/tuners/mt2060.c b/drivers/media/tuners/mt2060.c index 204e6186bf715..907c06224e5ae 100644 --- a/drivers/media/tuners/mt2060.c +++ b/drivers/media/tuners/mt2060.c @@ -440,7 +440,7 @@ struct dvb_frontend * mt2060_attach(struct dvb_frontend *fe, struct i2c_adapter return fe; } -EXPORT_SYMBOL(mt2060_attach); +EXPORT_SYMBOL_GPL(mt2060_attach); static int mt2060_probe(struct i2c_client *client, const struct i2c_device_id *id) diff --git a/drivers/media/tuners/mt2131.c b/drivers/media/tuners/mt2131.c index 37f50ff6c0bd2..eebc060883414 100644 --- a/drivers/media/tuners/mt2131.c +++ b/drivers/media/tuners/mt2131.c @@ -274,7 +274,7 @@ struct dvb_frontend * mt2131_attach(struct dvb_frontend *fe, fe->tuner_priv = priv; return fe; } -EXPORT_SYMBOL(mt2131_attach); +EXPORT_SYMBOL_GPL(mt2131_attach); MODULE_AUTHOR("Steven Toth"); MODULE_DESCRIPTION("Microtune MT2131 silicon tuner driver"); diff --git a/drivers/media/tuners/mt2266.c b/drivers/media/tuners/mt2266.c index 6136f20fa9b7f..2e92885a6bcb9 100644 --- a/drivers/media/tuners/mt2266.c +++ b/drivers/media/tuners/mt2266.c @@ -336,7 +336,7 @@ struct dvb_frontend * mt2266_attach(struct dvb_frontend *fe, struct i2c_adapter mt2266_calibrate(priv); return fe; } -EXPORT_SYMBOL(mt2266_attach); +EXPORT_SYMBOL_GPL(mt2266_attach); MODULE_AUTHOR("Olivier DANET"); MODULE_DESCRIPTION("Microtune MT2266 silicon tuner driver"); diff --git a/drivers/media/tuners/mxl5005s.c b/drivers/media/tuners/mxl5005s.c index f6e82a8e7d37d..f50fc161a80df 100644 --- a/drivers/media/tuners/mxl5005s.c +++ b/drivers/media/tuners/mxl5005s.c @@ -4128,7 +4128,7 @@ struct dvb_frontend *mxl5005s_attach(struct dvb_frontend *fe, fe->tuner_priv = state; return fe; } -EXPORT_SYMBOL(mxl5005s_attach); +EXPORT_SYMBOL_GPL(mxl5005s_attach); MODULE_DESCRIPTION("MaxLinear MXL5005S silicon tuner driver"); MODULE_AUTHOR("Steven Toth"); diff --git a/drivers/media/tuners/qt1010.c b/drivers/media/tuners/qt1010.c index 3853a3d43d4f2..48fc79cd40273 100644 --- a/drivers/media/tuners/qt1010.c +++ b/drivers/media/tuners/qt1010.c @@ -345,11 +345,12 @@ static int qt1010_init(struct dvb_frontend *fe) else valptr = &tmpval; - BUG_ON(i >= ARRAY_SIZE(i2c_data) - 1); - - err = qt1010_init_meas1(priv, i2c_data[i+1].reg, - i2c_data[i].reg, - i2c_data[i].val, valptr); + if (i >= ARRAY_SIZE(i2c_data) - 1) + err = -EIO; + else + err = qt1010_init_meas1(priv, i2c_data[i + 1].reg, + i2c_data[i].reg, + i2c_data[i].val, valptr); i++; break; } @@ -440,7 +441,7 @@ struct dvb_frontend * qt1010_attach(struct dvb_frontend *fe, fe->tuner_priv = priv; return fe; } -EXPORT_SYMBOL(qt1010_attach); +EXPORT_SYMBOL_GPL(qt1010_attach); MODULE_DESCRIPTION("Quantek QT1010 silicon tuner driver"); MODULE_AUTHOR("Antti Palosaari "); diff --git a/drivers/media/tuners/tda18218.c b/drivers/media/tuners/tda18218.c index 4ed94646116fa..7d8d84dcb2459 100644 --- a/drivers/media/tuners/tda18218.c +++ b/drivers/media/tuners/tda18218.c @@ -336,7 +336,7 @@ struct dvb_frontend *tda18218_attach(struct dvb_frontend *fe, return fe; } -EXPORT_SYMBOL(tda18218_attach); +EXPORT_SYMBOL_GPL(tda18218_attach); MODULE_DESCRIPTION("NXP TDA18218HN silicon tuner driver"); MODULE_AUTHOR("Antti Palosaari "); diff --git a/drivers/media/tuners/xc4000.c b/drivers/media/tuners/xc4000.c index d9606738ce432..ef9af052007cb 100644 --- a/drivers/media/tuners/xc4000.c +++ b/drivers/media/tuners/xc4000.c @@ -1744,7 +1744,7 @@ struct dvb_frontend *xc4000_attach(struct dvb_frontend *fe, xc4000_release(fe); return NULL; } -EXPORT_SYMBOL(xc4000_attach); +EXPORT_SYMBOL_GPL(xc4000_attach); MODULE_AUTHOR("Steven Toth, Davide Ferri"); MODULE_DESCRIPTION("Xceive xc4000 silicon tuner driver"); diff --git a/drivers/media/tuners/xc5000.c b/drivers/media/tuners/xc5000.c index 7b7d9fe4f9453..2182e5b7b6064 100644 --- a/drivers/media/tuners/xc5000.c +++ b/drivers/media/tuners/xc5000.c @@ -1460,7 +1460,7 @@ struct dvb_frontend *xc5000_attach(struct dvb_frontend *fe, xc5000_release(fe); return NULL; } -EXPORT_SYMBOL(xc5000_attach); +EXPORT_SYMBOL_GPL(xc5000_attach); MODULE_AUTHOR("Steven Toth"); MODULE_DESCRIPTION("Xceive xc5000 silicon tuner driver"); diff --git a/drivers/media/usb/dvb-usb-v2/af9035.c b/drivers/media/usb/dvb-usb-v2/af9035.c index 5eef37b00a520..dabfe9b332226 100644 --- a/drivers/media/usb/dvb-usb-v2/af9035.c +++ b/drivers/media/usb/dvb-usb-v2/af9035.c @@ -270,6 +270,7 @@ static int af9035_i2c_master_xfer(struct i2c_adapter *adap, struct dvb_usb_device *d = i2c_get_adapdata(adap); struct state *state = d_to_priv(d); int ret; + u32 reg; if (mutex_lock_interruptible(&d->i2c_mutex) < 0) return -EAGAIN; @@ -322,8 +323,12 @@ static int af9035_i2c_master_xfer(struct i2c_adapter *adap, ret = -EOPNOTSUPP; } else if ((msg[0].addr == state->af9033_i2c_addr[0]) || (msg[0].addr == state->af9033_i2c_addr[1])) { + if (msg[0].len < 3 || msg[1].len < 1) { + ret = -EOPNOTSUPP; + goto unlock; + } /* demod access via firmware interface */ - u32 reg = msg[0].buf[0] << 16 | msg[0].buf[1] << 8 | + reg = msg[0].buf[0] << 16 | msg[0].buf[1] << 8 | msg[0].buf[2]; if (msg[0].addr == state->af9033_i2c_addr[1]) @@ -381,17 +386,18 @@ static int af9035_i2c_master_xfer(struct i2c_adapter *adap, ret = -EOPNOTSUPP; } else if ((msg[0].addr == state->af9033_i2c_addr[0]) || (msg[0].addr == state->af9033_i2c_addr[1])) { + if (msg[0].len < 3) { + ret = -EOPNOTSUPP; + goto unlock; + } /* demod access via firmware interface */ - u32 reg = msg[0].buf[0] << 16 | msg[0].buf[1] << 8 | + reg = msg[0].buf[0] << 16 | msg[0].buf[1] << 8 | msg[0].buf[2]; if (msg[0].addr == state->af9033_i2c_addr[1]) reg |= 0x100000; - ret = (msg[0].len >= 3) ? af9035_wr_regs(d, reg, - &msg[0].buf[3], - msg[0].len - 3) - : -EOPNOTSUPP; + ret = af9035_wr_regs(d, reg, &msg[0].buf[3], msg[0].len - 3); } else { /* I2C write */ u8 buf[MAX_XFER_SIZE]; @@ -458,6 +464,7 @@ static int af9035_i2c_master_xfer(struct i2c_adapter *adap, ret = -EOPNOTSUPP; } +unlock: mutex_unlock(&d->i2c_mutex); if (ret < 0) diff --git a/drivers/media/usb/dvb-usb-v2/anysee.c b/drivers/media/usb/dvb-usb-v2/anysee.c index aa45b5d263f6b..a1235d0cce92f 100644 --- a/drivers/media/usb/dvb-usb-v2/anysee.c +++ b/drivers/media/usb/dvb-usb-v2/anysee.c @@ -202,7 +202,7 @@ static int anysee_master_xfer(struct i2c_adapter *adap, struct i2c_msg *msg, while (i < num) { if (num > i + 1 && (msg[i+1].flags & I2C_M_RD)) { - if (msg[i].len > 2 || msg[i+1].len > 60) { + if (msg[i].len != 2 || msg[i + 1].len > 60) { ret = -EOPNOTSUPP; break; } diff --git a/drivers/media/usb/dvb-usb-v2/az6007.c b/drivers/media/usb/dvb-usb-v2/az6007.c index 7524c90f5da61..6cbfe75791c21 100644 --- a/drivers/media/usb/dvb-usb-v2/az6007.c +++ b/drivers/media/usb/dvb-usb-v2/az6007.c @@ -788,6 +788,10 @@ static int az6007_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], if (az6007_xfer_debug) printk(KERN_DEBUG "az6007: I2C W addr=0x%x len=%d\n", addr, msgs[i].len); + if (msgs[i].len < 1) { + ret = -EIO; + goto err; + } req = AZ6007_I2C_WR; index = msgs[i].buf[0]; value = addr | (1 << 8); @@ -802,6 +806,10 @@ static int az6007_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], if (az6007_xfer_debug) printk(KERN_DEBUG "az6007: I2C R addr=0x%x len=%d\n", addr, msgs[i].len); + if (msgs[i].len < 1) { + ret = -EIO; + goto err; + } req = AZ6007_I2C_RD; index = msgs[i].buf[0]; value = addr; diff --git a/drivers/media/usb/dvb-usb-v2/gl861.c b/drivers/media/usb/dvb-usb-v2/gl861.c index 0c434259c36f1..c71e7b93476de 100644 --- a/drivers/media/usb/dvb-usb-v2/gl861.c +++ b/drivers/media/usb/dvb-usb-v2/gl861.c @@ -120,7 +120,7 @@ static int gl861_i2c_master_xfer(struct i2c_adapter *adap, struct i2c_msg msg[], } else if (num == 2 && !(msg[0].flags & I2C_M_RD) && (msg[1].flags & I2C_M_RD)) { /* I2C write + read */ - if (msg[0].len > 1 || msg[1].len > sizeof(ctx->buf)) { + if (msg[0].len != 1 || msg[1].len > sizeof(ctx->buf)) { ret = -EOPNOTSUPP; goto err; } diff --git a/drivers/media/usb/dvb-usb/af9005.c b/drivers/media/usb/dvb-usb/af9005.c index b6a2436d16e97..9af54fcbed1de 100644 --- a/drivers/media/usb/dvb-usb/af9005.c +++ b/drivers/media/usb/dvb-usb/af9005.c @@ -422,6 +422,10 @@ static int af9005_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[], if (ret == 0) ret = 2; } else { + if (msg[0].len < 2) { + ret = -EOPNOTSUPP; + goto unlock; + } /* write one or more registers */ reg = msg[0].buf[0]; addr = msg[0].addr; @@ -431,6 +435,7 @@ static int af9005_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[], ret = 1; } +unlock: mutex_unlock(&d->i2c_mutex); return ret; } diff --git a/drivers/media/usb/dvb-usb/dw2102.c b/drivers/media/usb/dvb-usb/dw2102.c index 1ed62a80067c6..253d13bdb63e5 100644 --- a/drivers/media/usb/dvb-usb/dw2102.c +++ b/drivers/media/usb/dvb-usb/dw2102.c @@ -128,6 +128,10 @@ static int dw2102_i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[], switch (num) { case 2: + if (msg[0].len < 1) { + num = -EOPNOTSUPP; + break; + } /* read stv0299 register */ value = msg[0].buf[0];/* register */ for (i = 0; i < msg[1].len; i++) { @@ -139,6 +143,10 @@ static int dw2102_i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[], case 1: switch (msg[0].addr) { case 0x68: + if (msg[0].len < 2) { + num = -EOPNOTSUPP; + break; + } /* write to stv0299 register */ buf6[0] = 0x2a; buf6[1] = msg[0].buf[0]; @@ -148,6 +156,10 @@ static int dw2102_i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[], break; case 0x60: if (msg[0].flags == 0) { + if (msg[0].len < 4) { + num = -EOPNOTSUPP; + break; + } /* write to tuner pll */ buf6[0] = 0x2c; buf6[1] = 5; @@ -159,6 +171,10 @@ static int dw2102_i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[], dw210x_op_rw(d->udev, 0xb2, 0, 0, buf6, 7, DW210X_WRITE_MSG); } else { + if (msg[0].len < 1) { + num = -EOPNOTSUPP; + break; + } /* read from tuner */ dw210x_op_rw(d->udev, 0xb5, 0, 0, buf6, 1, DW210X_READ_MSG); @@ -166,12 +182,20 @@ static int dw2102_i2c_transfer(struct i2c_adapter *adap, struct i2c_msg msg[], } break; case (DW2102_RC_QUERY): + if (msg[0].len < 2) { + num = -EOPNOTSUPP; + break; + } dw210x_op_rw(d->udev, 0xb8, 0, 0, buf6, 2, DW210X_READ_MSG); msg[0].buf[0] = buf6[0]; msg[0].buf[1] = buf6[1]; break; case (DW2102_VOLTAGE_CTRL): + if (msg[0].len < 1) { + num = -EOPNOTSUPP; + break; + } buf6[0] = 0x30; buf6[1] = msg[0].buf[0]; dw210x_op_rw(d->udev, 0xb2, 0, 0, diff --git a/drivers/media/usb/dvb-usb/m920x.c b/drivers/media/usb/dvb-usb/m920x.c index 691e05833db19..da81fa189b5d5 100644 --- a/drivers/media/usb/dvb-usb/m920x.c +++ b/drivers/media/usb/dvb-usb/m920x.c @@ -277,7 +277,6 @@ static int m920x_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[], int nu char *read = kmalloc(1, GFP_KERNEL); if (!read) { ret = -ENOMEM; - kfree(read); goto unlock; } @@ -288,8 +287,10 @@ static int m920x_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[], int nu if ((ret = m920x_read(d->udev, M9206_I2C, 0x0, 0x20 | stop, - read, 1)) != 0) + read, 1)) != 0) { + kfree(read); goto unlock; + } msg[i].buf[j] = read[0]; } diff --git a/drivers/media/usb/go7007/go7007-i2c.c b/drivers/media/usb/go7007/go7007-i2c.c index 38339dd2f83f7..2880370e45c8b 100644 --- a/drivers/media/usb/go7007/go7007-i2c.c +++ b/drivers/media/usb/go7007/go7007-i2c.c @@ -165,8 +165,6 @@ static int go7007_i2c_master_xfer(struct i2c_adapter *adapter, } else if (msgs[i].len == 3) { if (msgs[i].flags & I2C_M_RD) return -EIO; - if (msgs[i].len != 3) - return -EIO; if (go7007_i2c_xfer(go, msgs[i].addr, 0, (msgs[i].buf[0] << 8) | msgs[i].buf[1], 0x01, &msgs[i].buf[2]) < 0) diff --git a/drivers/media/usb/gspca/cpia1.c b/drivers/media/usb/gspca/cpia1.c index 46ed95483e222..5f5fa851ca640 100644 --- a/drivers/media/usb/gspca/cpia1.c +++ b/drivers/media/usb/gspca/cpia1.c @@ -18,6 +18,7 @@ #include #include +#include #include "gspca.h" @@ -1028,6 +1029,8 @@ static int set_flicker(struct gspca_dev *gspca_dev, int on, int apply) sd->params.exposure.expMode = 2; sd->exposure_status = EXPOSURE_NORMAL; } + if (sd->params.exposure.gain >= BITS_PER_TYPE(currentexp)) + return -EINVAL; currentexp = currentexp << sd->params.exposure.gain; sd->params.exposure.gain = 0; /* round down current exposure to nearest value */ diff --git a/drivers/media/usb/siano/smsusb.c b/drivers/media/usb/siano/smsusb.c index 5c223b5498b4b..6036ad3b15681 100644 --- a/drivers/media/usb/siano/smsusb.c +++ b/drivers/media/usb/siano/smsusb.c @@ -455,12 +455,7 @@ static int smsusb_init_device(struct usb_interface *intf, int board_id) rc = smscore_register_device(¶ms, &dev->coredev, 0, mdev); if (rc < 0) { pr_err("smscore_register_device(...) failed, rc %d\n", rc); - smsusb_term_device(intf); -#ifdef CONFIG_MEDIA_CONTROLLER_DVB - media_device_unregister(mdev); -#endif - kfree(mdev); - return rc; + goto err_unregister_device; } smscore_set_board_id(dev->coredev, board_id); @@ -477,8 +472,7 @@ static int smsusb_init_device(struct usb_interface *intf, int board_id) rc = smsusb_start_streaming(dev); if (rc < 0) { pr_err("smsusb_start_streaming(...) failed\n"); - smsusb_term_device(intf); - return rc; + goto err_unregister_device; } dev->state = SMSUSB_ACTIVE; @@ -486,13 +480,20 @@ static int smsusb_init_device(struct usb_interface *intf, int board_id) rc = smscore_start_device(dev->coredev); if (rc < 0) { pr_err("smscore_start_device(...) failed\n"); - smsusb_term_device(intf); - return rc; + goto err_unregister_device; } pr_debug("device 0x%p created\n", dev); return rc; + +err_unregister_device: + smsusb_term_device(intf); +#ifdef CONFIG_MEDIA_CONTROLLER_DVB + media_device_unregister(mdev); +#endif + kfree(mdev); + return rc; } static int smsusb_probe(struct usb_interface *intf, diff --git a/drivers/media/v4l2-core/v4l2-fwnode.c b/drivers/media/v4l2-core/v4l2-fwnode.c index 843259c304bb5..5d2eaad1fa684 100644 --- a/drivers/media/v4l2-core/v4l2-fwnode.c +++ b/drivers/media/v4l2-core/v4l2-fwnode.c @@ -549,19 +549,29 @@ int v4l2_fwnode_parse_link(struct fwnode_handle *fwnode, link->local_id = fwep.id; link->local_port = fwep.port; link->local_node = fwnode_graph_get_port_parent(fwnode); + if (!link->local_node) + return -ENOLINK; fwnode = fwnode_graph_get_remote_endpoint(fwnode); - if (!fwnode) { - fwnode_handle_put(fwnode); - return -ENOLINK; - } + if (!fwnode) + goto err_put_local_node; fwnode_graph_parse_endpoint(fwnode, &fwep); link->remote_id = fwep.id; link->remote_port = fwep.port; link->remote_node = fwnode_graph_get_port_parent(fwnode); + if (!link->remote_node) + goto err_put_remote_endpoint; return 0; + +err_put_remote_endpoint: + fwnode_handle_put(fwnode); + +err_put_local_node: + fwnode_handle_put(link->local_node); + + return -ENOLINK; } EXPORT_SYMBOL_GPL(v4l2_fwnode_parse_link); diff --git a/drivers/mfd/arizona-spi.c b/drivers/mfd/arizona-spi.c index aa1d6f94ae532..8d826b58732dc 100644 --- a/drivers/mfd/arizona-spi.c +++ b/drivers/mfd/arizona-spi.c @@ -118,6 +118,9 @@ static int arizona_spi_acpi_probe(struct arizona *arizona) arizona->pdata.micd_ranges = arizona_micd_aosp_ranges; arizona->pdata.num_micd_ranges = ARRAY_SIZE(arizona_micd_aosp_ranges); + /* Use left headphone speaker for HP vs line-out detection */ + arizona->pdata.hpdet_channel = ARIZONA_ACCDET_MODE_HPL; + return 0; } diff --git a/drivers/mfd/dln2.c b/drivers/mfd/dln2.c index fc65f9e25fda8..852129ea07666 100644 --- a/drivers/mfd/dln2.c +++ b/drivers/mfd/dln2.c @@ -836,7 +836,6 @@ static int dln2_probe(struct usb_interface *interface, dln2_stop_rx_urbs(dln2); out_free: - usb_put_dev(dln2->usb_dev); dln2_free(dln2); return ret; diff --git a/drivers/mfd/mfd-core.c b/drivers/mfd/mfd-core.c index 684a011a63968..53ea3fab66a46 100644 --- a/drivers/mfd/mfd-core.c +++ b/drivers/mfd/mfd-core.c @@ -159,6 +159,7 @@ static int mfd_add_device(struct device *parent, int id, struct platform_device *pdev; struct device_node *np = NULL; struct mfd_of_node_entry *of_entry, *tmp; + bool disabled = false; int ret = -ENOMEM; int platform_id; int r; @@ -196,11 +197,10 @@ static int mfd_add_device(struct device *parent, int id, if (IS_ENABLED(CONFIG_OF) && parent->of_node && cell->of_compatible) { for_each_child_of_node(parent->of_node, np) { if (of_device_is_compatible(np, cell->of_compatible)) { - /* Ignore 'disabled' devices error free */ + /* Skip 'disabled' devices */ if (!of_device_is_available(np)) { - of_node_put(np); - ret = 0; - goto fail_alias; + disabled = true; + continue; } ret = mfd_match_of_node_to_dev(pdev, np, cell); @@ -210,10 +210,17 @@ static int mfd_add_device(struct device *parent, int id, if (ret) goto fail_alias; - break; + goto match; } } + if (disabled) { + /* Ignore 'disabled' devices error free */ + ret = 0; + goto fail_alias; + } + +match: if (!pdev->dev.of_node) pr_warn("%s: Failed to locate of_node [id: %d]\n", cell->name, platform_id); diff --git a/drivers/misc/fastrpc.c b/drivers/misc/fastrpc.c index 24dfc069dbc65..b121f9081e5eb 100644 --- a/drivers/misc/fastrpc.c +++ b/drivers/misc/fastrpc.c @@ -992,11 +992,6 @@ static int fastrpc_internal_invoke(struct fastrpc_user *fl, u32 kernel, err = wait_for_completion_interruptible(&ctx->work); } - if (err) - goto bail; - - /* Check the response from remote dsp */ - err = ctx->retval; if (err) goto bail; @@ -1009,6 +1004,11 @@ static int fastrpc_internal_invoke(struct fastrpc_user *fl, u32 kernel, goto bail; } + /* Check the response from remote dsp */ + err = ctx->retval; + if (err) + goto bail; + bail: if (err != -ERESTARTSYS && err != -ETIMEDOUT) { /* We are done with this compute context */ diff --git a/drivers/misc/mei/client.c b/drivers/misc/mei/client.c index 96f4e59c32a54..d179273586be8 100644 --- a/drivers/misc/mei/client.c +++ b/drivers/misc/mei/client.c @@ -1975,7 +1975,7 @@ ssize_t mei_cl_write(struct mei_cl *cl, struct mei_cl_cb *cb) mei_hdr = mei_msg_hdr_init(cb); if (IS_ERR(mei_hdr)) { - rets = -PTR_ERR(mei_hdr); + rets = PTR_ERR(mei_hdr); mei_hdr = NULL; goto err; } @@ -1999,7 +1999,7 @@ ssize_t mei_cl_write(struct mei_cl *cl, struct mei_cl_cb *cb) hbuf_slots = mei_hbuf_empty_slots(dev); if (hbuf_slots < 0) { - rets = -EOVERFLOW; + buf_len = -EOVERFLOW; goto out; } diff --git a/drivers/misc/pci_endpoint_test.c b/drivers/misc/pci_endpoint_test.c index 2ad28f1b1461c..0223e96aae47c 100644 --- a/drivers/misc/pci_endpoint_test.c +++ b/drivers/misc/pci_endpoint_test.c @@ -71,6 +71,7 @@ #define PCI_DEVICE_ID_TI_AM654 0xb00c #define PCI_DEVICE_ID_TI_J7200 0xb00f #define PCI_DEVICE_ID_TI_AM64 0xb010 +#define PCI_DEVICE_ID_TI_J721S2 0xb013 #define PCI_DEVICE_ID_LS1088A 0x80c0 #define is_am654_pci_dev(pdev) \ @@ -80,6 +81,7 @@ #define PCI_DEVICE_ID_RENESAS_R8A774B1 0x002b #define PCI_DEVICE_ID_RENESAS_R8A774C0 0x002d #define PCI_DEVICE_ID_RENESAS_R8A774E1 0x0025 +#define PCI_DEVICE_ID_RENESAS_R8A779F0 0x0031 static DEFINE_IDA(pci_endpoint_test_ida); @@ -995,6 +997,9 @@ static const struct pci_device_id pci_endpoint_test_tbl[] = { { PCI_DEVICE(PCI_VENDOR_ID_RENESAS, PCI_DEVICE_ID_RENESAS_R8A774B1),}, { PCI_DEVICE(PCI_VENDOR_ID_RENESAS, PCI_DEVICE_ID_RENESAS_R8A774C0),}, { PCI_DEVICE(PCI_VENDOR_ID_RENESAS, PCI_DEVICE_ID_RENESAS_R8A774E1),}, + { PCI_DEVICE(PCI_VENDOR_ID_RENESAS, PCI_DEVICE_ID_RENESAS_R8A779F0), + .driver_data = (kernel_ulong_t)&default_data, + }, { PCI_DEVICE(PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_J721E), .driver_data = (kernel_ulong_t)&j721e_data, }, @@ -1004,6 +1009,9 @@ static const struct pci_device_id pci_endpoint_test_tbl[] = { { PCI_DEVICE(PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_AM64), .driver_data = (kernel_ulong_t)&j721e_data, }, + { PCI_DEVICE(PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_J721S2), + .driver_data = (kernel_ulong_t)&j721e_data, + }, { } }; MODULE_DEVICE_TABLE(pci, pci_endpoint_test_tbl); diff --git a/drivers/misc/ti-st/st_core.c b/drivers/misc/ti-st/st_core.c index 7f6976a9f508b..48e0f8377e659 100644 --- a/drivers/misc/ti-st/st_core.c +++ b/drivers/misc/ti-st/st_core.c @@ -15,6 +15,7 @@ #include #include +#include extern void st_kim_recv(void *, const unsigned char *, long); void st_int_recv(void *, const unsigned char *, long); @@ -435,7 +436,7 @@ static void st_int_enqueue(struct st_data_s *st_gdata, struct sk_buff *skb) case ST_LL_AWAKE_TO_ASLEEP: pr_err("ST LL is illegal state(%ld)," "purging received skb.", st_ll_getstate(st_gdata)); - kfree_skb(skb); + dev_kfree_skb_irq(skb); break; case ST_LL_ASLEEP: skb_queue_tail(&st_gdata->tx_waitq, skb); @@ -444,7 +445,7 @@ static void st_int_enqueue(struct st_data_s *st_gdata, struct sk_buff *skb) default: pr_err("ST LL is illegal state(%ld)," "purging received skb.", st_ll_getstate(st_gdata)); - kfree_skb(skb); + dev_kfree_skb_irq(skb); break; } @@ -498,7 +499,7 @@ void st_tx_wakeup(struct st_data_s *st_data) spin_unlock_irqrestore(&st_data->lock, flags); break; } - kfree_skb(skb); + dev_kfree_skb_irq(skb); spin_unlock_irqrestore(&st_data->lock, flags); } /* if wake-up is set in another context- restart sending */ diff --git a/drivers/mmc/core/block.c b/drivers/mmc/core/block.c index 965b44a095077..206bd5523ab79 100644 --- a/drivers/mmc/core/block.c +++ b/drivers/mmc/core/block.c @@ -1465,6 +1465,8 @@ static void mmc_blk_cqe_complete_rq(struct mmc_queue *mq, struct request *req) blk_mq_requeue_request(req, true); else __blk_mq_end_request(req, BLK_STS_OK); + } else if (mq->in_recovery) { + blk_mq_requeue_request(req, true); } else { blk_mq_end_request(req, BLK_STS_OK); } @@ -2447,8 +2449,8 @@ static struct mmc_blk_data *mmc_blk_alloc_req(struct mmc_card *card, set_disk_ro(md->disk, md->read_only || default_ro); md->disk->flags = GENHD_FL_EXT_DEVT; if (area_type & (MMC_BLK_DATA_AREA_RPMB | MMC_BLK_DATA_AREA_BOOT)) - md->disk->flags |= GENHD_FL_NO_PART_SCAN - | GENHD_FL_SUPPRESS_PARTITION_INFO; + md->disk->flags |= GENHD_FL_NO_PART | + GENHD_FL_SUPPRESS_PARTITION_INFO; /* * As discussed on lkml, GENHD_FL_REMOVABLE should: diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c index 07eda6cc6767b..a6dcc68d68eec 100644 --- a/drivers/mmc/core/core.c +++ b/drivers/mmc/core/core.c @@ -552,7 +552,9 @@ int mmc_cqe_recovery(struct mmc_host *host) cmd.flags = MMC_RSP_R1B | MMC_CMD_AC; cmd.flags &= ~MMC_RSP_CRC; /* Ignore CRC */ cmd.busy_timeout = MMC_CQE_RECOVERY_TIMEOUT; - mmc_wait_for_cmd(host, &cmd, 0); + mmc_wait_for_cmd(host, &cmd, MMC_CMD_RETRIES); + + mmc_poll_for_busy(host->card, MMC_CQE_RECOVERY_TIMEOUT, true, MMC_BUSY_IO); memset(&cmd, 0, sizeof(cmd)); cmd.opcode = MMC_CMDQ_TASK_MGMT; @@ -560,10 +562,13 @@ int mmc_cqe_recovery(struct mmc_host *host) cmd.flags = MMC_RSP_R1B | MMC_CMD_AC; cmd.flags &= ~MMC_RSP_CRC; /* Ignore CRC */ cmd.busy_timeout = MMC_CQE_RECOVERY_TIMEOUT; - err = mmc_wait_for_cmd(host, &cmd, 0); + err = mmc_wait_for_cmd(host, &cmd, MMC_CMD_RETRIES); host->cqe_ops->cqe_recovery_finish(host); + if (err) + err = mmc_wait_for_cmd(host, &cmd, MMC_CMD_RETRIES); + mmc_retune_release(host); return err; diff --git a/drivers/mmc/core/regulator.c b/drivers/mmc/core/regulator.c index 609201a467ef9..4dcbc2281d2b5 100644 --- a/drivers/mmc/core/regulator.c +++ b/drivers/mmc/core/regulator.c @@ -271,3 +271,44 @@ int mmc_regulator_get_supply(struct mmc_host *mmc) return 0; } EXPORT_SYMBOL_GPL(mmc_regulator_get_supply); + +/** + * mmc_regulator_enable_vqmmc - enable VQMMC regulator for a host + * @mmc: the host to regulate + * + * Returns 0 or errno. Enables the regulator for vqmmc. + * Keeps track of the enable status for ensuring that calls to + * regulator_enable/disable are balanced. + */ +int mmc_regulator_enable_vqmmc(struct mmc_host *mmc) +{ + int ret = 0; + + if (!IS_ERR(mmc->supply.vqmmc) && !mmc->vqmmc_enabled) { + ret = regulator_enable(mmc->supply.vqmmc); + if (ret < 0) + dev_err(mmc_dev(mmc), "enabling vqmmc regulator failed\n"); + else + mmc->vqmmc_enabled = true; + } + + return ret; +} +EXPORT_SYMBOL_GPL(mmc_regulator_enable_vqmmc); + +/** + * mmc_regulator_disable_vqmmc - disable VQMMC regulator for a host + * @mmc: the host to regulate + * + * Returns 0 or errno. Disables the regulator for vqmmc. + * Keeps track of the enable status for ensuring that calls to + * regulator_enable/disable are balanced. + */ +void mmc_regulator_disable_vqmmc(struct mmc_host *mmc) +{ + if (!IS_ERR(mmc->supply.vqmmc) && mmc->vqmmc_enabled) { + regulator_disable(mmc->supply.vqmmc); + mmc->vqmmc_enabled = false; + } +} +EXPORT_SYMBOL_GPL(mmc_regulator_disable_vqmmc); diff --git a/drivers/mmc/core/sdio.c b/drivers/mmc/core/sdio.c index 5447c47157aa5..eda2dbd965392 100644 --- a/drivers/mmc/core/sdio.c +++ b/drivers/mmc/core/sdio.c @@ -1073,8 +1073,14 @@ static int mmc_sdio_resume(struct mmc_host *host) } err = mmc_sdio_reinit_card(host); } else if (mmc_card_wake_sdio_irq(host)) { - /* We may have switched to 1-bit mode during suspend */ + /* + * We may have switched to 1-bit mode during suspend, + * need to hold retuning, because tuning only supprt + * 4-bit mode or 8 bit mode. + */ + mmc_retune_hold_now(host); err = sdio_enable_4bit_bus(host->card); + mmc_retune_release(host); } if (err) diff --git a/drivers/mmc/host/cqhci-core.c b/drivers/mmc/host/cqhci-core.c index 31f841231609a..961442e9a6c10 100644 --- a/drivers/mmc/host/cqhci-core.c +++ b/drivers/mmc/host/cqhci-core.c @@ -935,8 +935,8 @@ static bool cqhci_clear_all_tasks(struct mmc_host *mmc, unsigned int timeout) ret = cqhci_tasks_cleared(cq_host); if (!ret) - pr_debug("%s: cqhci: Failed to clear tasks\n", - mmc_hostname(mmc)); + pr_warn("%s: cqhci: Failed to clear tasks\n", + mmc_hostname(mmc)); return ret; } @@ -969,7 +969,7 @@ static bool cqhci_halt(struct mmc_host *mmc, unsigned int timeout) ret = cqhci_halted(cq_host); if (!ret) - pr_debug("%s: cqhci: Failed to halt\n", mmc_hostname(mmc)); + pr_warn("%s: cqhci: Failed to halt\n", mmc_hostname(mmc)); return ret; } @@ -977,10 +977,10 @@ static bool cqhci_halt(struct mmc_host *mmc, unsigned int timeout) /* * After halting we expect to be able to use the command line. We interpret the * failure to halt to mean the data lines might still be in use (and the upper - * layers will need to send a STOP command), so we set the timeout based on a - * generous command timeout. + * layers will need to send a STOP command), however failing to halt complicates + * the recovery, so set a timeout that would reasonably allow I/O to complete. */ -#define CQHCI_START_HALT_TIMEOUT 5 +#define CQHCI_START_HALT_TIMEOUT 500 static void cqhci_recovery_start(struct mmc_host *mmc) { @@ -1068,28 +1068,28 @@ static void cqhci_recovery_finish(struct mmc_host *mmc) ok = cqhci_halt(mmc, CQHCI_FINISH_HALT_TIMEOUT); - if (!cqhci_clear_all_tasks(mmc, CQHCI_CLEAR_TIMEOUT)) - ok = false; - /* * The specification contradicts itself, by saying that tasks cannot be * cleared if CQHCI does not halt, but if CQHCI does not halt, it should * be disabled/re-enabled, but not to disable before clearing tasks. * Have a go anyway. */ - if (!ok) { - pr_debug("%s: cqhci: disable / re-enable\n", mmc_hostname(mmc)); - cqcfg = cqhci_readl(cq_host, CQHCI_CFG); - cqcfg &= ~CQHCI_ENABLE; - cqhci_writel(cq_host, cqcfg, CQHCI_CFG); - cqcfg |= CQHCI_ENABLE; - cqhci_writel(cq_host, cqcfg, CQHCI_CFG); - /* Be sure that there are no tasks */ - ok = cqhci_halt(mmc, CQHCI_FINISH_HALT_TIMEOUT); - if (!cqhci_clear_all_tasks(mmc, CQHCI_CLEAR_TIMEOUT)) - ok = false; - WARN_ON(!ok); - } + if (!cqhci_clear_all_tasks(mmc, CQHCI_CLEAR_TIMEOUT)) + ok = false; + + /* Disable to make sure tasks really are cleared */ + cqcfg = cqhci_readl(cq_host, CQHCI_CFG); + cqcfg &= ~CQHCI_ENABLE; + cqhci_writel(cq_host, cqcfg, CQHCI_CFG); + + cqcfg = cqhci_readl(cq_host, CQHCI_CFG); + cqcfg |= CQHCI_ENABLE; + cqhci_writel(cq_host, cqcfg, CQHCI_CFG); + + cqhci_halt(mmc, CQHCI_FINISH_HALT_TIMEOUT); + + if (!ok) + cqhci_clear_all_tasks(mmc, CQHCI_CLEAR_TIMEOUT); cqhci_recover_mrqs(cq_host); diff --git a/drivers/mmc/host/meson-gx-mmc.c b/drivers/mmc/host/meson-gx-mmc.c index 287705729064c..db2491d9a95cf 100644 --- a/drivers/mmc/host/meson-gx-mmc.c +++ b/drivers/mmc/host/meson-gx-mmc.c @@ -811,7 +811,6 @@ static void meson_mmc_start_cmd(struct mmc_host *mmc, struct mmc_command *cmd) cmd_cfg |= FIELD_PREP(CMD_CFG_CMD_INDEX_MASK, cmd->opcode); cmd_cfg |= CMD_CFG_OWNER; /* owned by CPU */ - cmd_cfg |= CMD_CFG_ERROR; /* stop in case of error */ meson_mmc_set_response_bits(cmd, &cmd_cfg); diff --git a/drivers/mmc/host/mtk-sd.c b/drivers/mmc/host/mtk-sd.c index 6d0fc247bddb3..12ab7417937e7 100644 --- a/drivers/mmc/host/mtk-sd.c +++ b/drivers/mmc/host/mtk-sd.c @@ -628,11 +628,11 @@ static void msdc_reset_hw(struct msdc_host *host) u32 val; sdr_set_bits(host->base + MSDC_CFG, MSDC_CFG_RST); - readl_poll_timeout(host->base + MSDC_CFG, val, !(val & MSDC_CFG_RST), 0, 0); + readl_poll_timeout_atomic(host->base + MSDC_CFG, val, !(val & MSDC_CFG_RST), 0, 0); sdr_set_bits(host->base + MSDC_FIFOCS, MSDC_FIFOCS_CLR); - readl_poll_timeout(host->base + MSDC_FIFOCS, val, - !(val & MSDC_FIFOCS_CLR), 0, 0); + readl_poll_timeout_atomic(host->base + MSDC_FIFOCS, val, + !(val & MSDC_FIFOCS_CLR), 0, 0); val = readl(host->base + MSDC_INT); writel(val, host->base + MSDC_INT); diff --git a/drivers/mmc/host/renesas_sdhi_core.c b/drivers/mmc/host/renesas_sdhi_core.c index 12921fba4f52b..3ff95ed8513a3 100644 --- a/drivers/mmc/host/renesas_sdhi_core.c +++ b/drivers/mmc/host/renesas_sdhi_core.c @@ -975,6 +975,8 @@ int renesas_sdhi_probe(struct platform_device *pdev, host->sdcard_irq_setbit_mask = TMIO_STAT_ALWAYS_SET_27; host->sdcard_irq_mask_all = TMIO_MASK_ALL_RCAR2; host->reset = renesas_sdhi_reset; + } else { + host->sdcard_irq_mask_all = TMIO_MASK_ALL; } /* Orginally registers were 16 bit apart, could be 32 or 64 nowadays */ @@ -1071,9 +1073,7 @@ int renesas_sdhi_probe(struct platform_device *pdev, host->ops.hs400_complete = renesas_sdhi_hs400_complete; } - ret = tmio_mmc_host_probe(host); - if (ret < 0) - goto edisclk; + sd_ctrl_write32_as_16_and_16(host, CTL_IRQ_MASK, host->sdcard_irq_mask_all); num_irqs = platform_irq_count(pdev); if (num_irqs < 0) { @@ -1100,6 +1100,10 @@ int renesas_sdhi_probe(struct platform_device *pdev, goto eirq; } + ret = tmio_mmc_host_probe(host); + if (ret < 0) + goto edisclk; + dev_info(&pdev->dev, "%s base at %pa, max clock rate %u MHz\n", mmc_hostname(host->mmc), &res->start, host->mmc->f_max / 1000000); diff --git a/drivers/mmc/host/sdhci-esdhc-imx.c b/drivers/mmc/host/sdhci-esdhc-imx.c index a6aa33dcd2a2e..d8a4080712365 100644 --- a/drivers/mmc/host/sdhci-esdhc-imx.c +++ b/drivers/mmc/host/sdhci-esdhc-imx.c @@ -171,8 +171,8 @@ #define ESDHC_FLAG_HS400 BIT(9) /* * The IP has errata ERR010450 - * uSDHC: Due to the I/O timing limit, for SDR mode, SD card clock can't - * exceed 150MHz, for DDR mode, SD card clock can't exceed 45MHz. + * uSDHC: At 1.8V due to the I/O timing limit, for SDR mode, SD card + * clock can't exceed 150MHz, for DDR mode, SD card clock can't exceed 45MHz. */ #define ESDHC_FLAG_ERR010450 BIT(10) /* The IP supports HS400ES mode */ @@ -917,7 +917,8 @@ static inline void esdhc_pltfm_set_clock(struct sdhci_host *host, | ESDHC_CLOCK_MASK); sdhci_writel(host, temp, ESDHC_SYSTEM_CONTROL); - if (imx_data->socdata->flags & ESDHC_FLAG_ERR010450) { + if ((imx_data->socdata->flags & ESDHC_FLAG_ERR010450) && + (!(host->quirks2 & SDHCI_QUIRK2_NO_1_8_V))) { unsigned int max_clock; max_clock = imx_data->is_ddr ? 45000000 : 150000000; diff --git a/drivers/mmc/host/sdhci-pci-gli.c b/drivers/mmc/host/sdhci-pci-gli.c index ad50f16658fe2..c40dec3da8902 100644 --- a/drivers/mmc/host/sdhci-pci-gli.c +++ b/drivers/mmc/host/sdhci-pci-gli.c @@ -23,6 +23,12 @@ #define GLI_9750_WT_EN_ON 0x1 #define GLI_9750_WT_EN_OFF 0x0 +#define PCI_GLI_9750_PM_CTRL 0xFC +#define PCI_GLI_9750_PM_STATE GENMASK(1, 0) + +#define PCI_GLI_9750_CORRERR_MASK 0x214 +#define PCI_GLI_9750_CORRERR_MASK_REPLAY_TIMER_TIMEOUT BIT(12) + #define SDHCI_GLI_9750_CFG2 0x848 #define SDHCI_GLI_9750_CFG2_L1DLY GENMASK(28, 24) #define GLI_9750_CFG2_L1DLY_VALUE 0x1F @@ -421,8 +427,12 @@ static void sdhci_gl9750_set_clock(struct sdhci_host *host, unsigned int clock) static void gl9750_hw_setting(struct sdhci_host *host) { + struct sdhci_pci_slot *slot = sdhci_priv(host); + struct pci_dev *pdev; u32 value; + pdev = slot->chip->pdev; + gl9750_wt_on(host); value = sdhci_readl(host, SDHCI_GLI_9750_CFG2); @@ -432,6 +442,18 @@ static void gl9750_hw_setting(struct sdhci_host *host) GLI_9750_CFG2_L1DLY_VALUE); sdhci_writel(host, value, SDHCI_GLI_9750_CFG2); + /* toggle PM state to allow GL9750 to enter ASPM L1.2 */ + pci_read_config_dword(pdev, PCI_GLI_9750_PM_CTRL, &value); + value |= PCI_GLI_9750_PM_STATE; + pci_write_config_dword(pdev, PCI_GLI_9750_PM_CTRL, value); + value &= ~PCI_GLI_9750_PM_STATE; + pci_write_config_dword(pdev, PCI_GLI_9750_PM_CTRL, value); + + /* mask the replay timer timeout of AER */ + pci_read_config_dword(pdev, PCI_GLI_9750_CORRERR_MASK, &value); + value |= PCI_GLI_9750_CORRERR_MASK_REPLAY_TIMER_TIMEOUT; + pci_write_config_dword(pdev, PCI_GLI_9750_CORRERR_MASK, value); + gl9750_wt_off(host); } diff --git a/drivers/mmc/host/sdhci-sprd.c b/drivers/mmc/host/sdhci-sprd.c index 256260339f692..1cfc1aed44528 100644 --- a/drivers/mmc/host/sdhci-sprd.c +++ b/drivers/mmc/host/sdhci-sprd.c @@ -392,12 +392,33 @@ static void sdhci_sprd_request_done(struct sdhci_host *host, mmc_request_done(host->mmc, mrq); } +static void sdhci_sprd_set_power(struct sdhci_host *host, unsigned char mode, + unsigned short vdd) +{ + struct mmc_host *mmc = host->mmc; + + switch (mode) { + case MMC_POWER_OFF: + mmc_regulator_set_ocr(host->mmc, mmc->supply.vmmc, 0); + + mmc_regulator_disable_vqmmc(mmc); + break; + case MMC_POWER_ON: + mmc_regulator_enable_vqmmc(mmc); + break; + case MMC_POWER_UP: + mmc_regulator_set_ocr(host->mmc, mmc->supply.vmmc, vdd); + break; + } +} + static struct sdhci_ops sdhci_sprd_ops = { .read_l = sdhci_sprd_readl, .write_l = sdhci_sprd_writel, .write_w = sdhci_sprd_writew, .write_b = sdhci_sprd_writeb, .set_clock = sdhci_sprd_set_clock, + .set_power = sdhci_sprd_set_power, .get_max_clock = sdhci_sprd_get_max_clock, .get_min_clock = sdhci_sprd_get_min_clock, .set_bus_width = sdhci_set_bus_width, @@ -663,6 +684,10 @@ static int sdhci_sprd_probe(struct platform_device *pdev) host->caps1 &= ~(SDHCI_SUPPORT_SDR50 | SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_DDR50); + ret = mmc_regulator_get_supply(host->mmc); + if (ret) + goto pm_runtime_disable; + ret = sdhci_setup_host(host); if (ret) goto pm_runtime_disable; diff --git a/drivers/mmc/host/sdhci_am654.c b/drivers/mmc/host/sdhci_am654.c index 0158b2b1507d4..210701e4fc137 100644 --- a/drivers/mmc/host/sdhci_am654.c +++ b/drivers/mmc/host/sdhci_am654.c @@ -600,7 +600,7 @@ static int sdhci_am654_get_otap_delay(struct sdhci_host *host, return 0; } - for (i = MMC_TIMING_MMC_HS; i <= MMC_TIMING_MMC_HS400; i++) { + for (i = MMC_TIMING_LEGACY; i <= MMC_TIMING_MMC_HS400; i++) { ret = device_property_read_u32(dev, td[i].otap_binding, &sdhci_am654->otap_del_sel[i]); diff --git a/drivers/mmc/host/vub300.c b/drivers/mmc/host/vub300.c index 7dc0e91dabfc7..05ffd5bf5a6f0 100644 --- a/drivers/mmc/host/vub300.c +++ b/drivers/mmc/host/vub300.c @@ -2311,6 +2311,7 @@ static int vub300_probe(struct usb_interface *interface, vub300->read_only = (0x0010 & vub300->system_port_status.port_flags) ? 1 : 0; } else { + retval = -EINVAL; goto error5; } usb_set_intfdata(interface, vub300); diff --git a/drivers/mtd/chips/cfi_cmdset_0001.c b/drivers/mtd/chips/cfi_cmdset_0001.c index 54f92d09d9cf4..02aaf09d6f5cd 100644 --- a/drivers/mtd/chips/cfi_cmdset_0001.c +++ b/drivers/mtd/chips/cfi_cmdset_0001.c @@ -421,9 +421,25 @@ read_pri_intelext(struct map_info *map, __u16 adr) extra_size = 0; /* Protection Register info */ - if (extp->NumProtectionFields) + if (extp->NumProtectionFields) { + struct cfi_intelext_otpinfo *otp = + (struct cfi_intelext_otpinfo *)&extp->extra[0]; + extra_size += (extp->NumProtectionFields - 1) * - sizeof(struct cfi_intelext_otpinfo); + sizeof(struct cfi_intelext_otpinfo); + + if (extp_size >= sizeof(*extp) + extra_size) { + int i; + + /* Do some byteswapping if necessary */ + for (i = 0; i < extp->NumProtectionFields - 1; i++) { + otp->ProtRegAddr = le32_to_cpu(otp->ProtRegAddr); + otp->FactGroups = le16_to_cpu(otp->FactGroups); + otp->UserGroups = le16_to_cpu(otp->UserGroups); + otp++; + } + } + } } if (extp->MinorVersion >= '1') { diff --git a/drivers/mtd/maps/physmap-core.c b/drivers/mtd/maps/physmap-core.c index 4f63b8430c710..9ab795f03c546 100644 --- a/drivers/mtd/maps/physmap-core.c +++ b/drivers/mtd/maps/physmap-core.c @@ -556,6 +556,17 @@ static int physmap_flash_probe(struct platform_device *dev) if (info->probe_type) { info->mtds[i] = do_map_probe(info->probe_type, &info->maps[i]); + + /* Fall back to mapping region as ROM */ + if (!info->mtds[i] && IS_ENABLED(CONFIG_MTD_ROM) && + strcmp(info->probe_type, "map_rom")) { + dev_warn(&dev->dev, + "map_probe() failed for type %s\n", + info->probe_type); + + info->mtds[i] = do_map_probe("map_rom", + &info->maps[i]); + } } else { int j; diff --git a/drivers/mtd/nand/raw/arasan-nand-controller.c b/drivers/mtd/nand/raw/arasan-nand-controller.c index 296fb16c8dc3c..1b4ebceee1e0b 100644 --- a/drivers/mtd/nand/raw/arasan-nand-controller.c +++ b/drivers/mtd/nand/raw/arasan-nand-controller.c @@ -515,6 +515,7 @@ static int anfc_write_page_hw_ecc(struct nand_chip *chip, const u8 *buf, struct mtd_info *mtd = nand_to_mtd(chip); unsigned int len = mtd->writesize + (oob_required ? mtd->oobsize : 0); dma_addr_t dma_addr; + u8 status; int ret; struct anfc_op nfc_op = { .pkt_reg = @@ -561,10 +562,21 @@ static int anfc_write_page_hw_ecc(struct nand_chip *chip, const u8 *buf, } /* Spare data is not protected */ - if (oob_required) + if (oob_required) { ret = nand_write_oob_std(chip, page); + if (ret) + return ret; + } - return ret; + /* Check write status on the chip side */ + ret = nand_status_op(chip, &status); + if (ret) + return ret; + + if (status & NAND_STATUS_FAIL) + return -EIO; + + return 0; } static int anfc_sel_write_page_hw_ecc(struct nand_chip *chip, const u8 *buf, diff --git a/drivers/mtd/nand/raw/brcmnand/brcmnand.c b/drivers/mtd/nand/raw/brcmnand/brcmnand.c index aee78f5f4f156..c1e7ab13e7773 100644 --- a/drivers/mtd/nand/raw/brcmnand/brcmnand.c +++ b/drivers/mtd/nand/raw/brcmnand/brcmnand.c @@ -25,6 +25,7 @@ #include #include #include +#include #include #include @@ -207,6 +208,8 @@ enum { struct brcmnand_host; +static DEFINE_STATIC_KEY_FALSE(brcmnand_soc_has_ops_key); + struct brcmnand_controller { struct device *dev; struct nand_controller controller; @@ -268,6 +271,7 @@ struct brcmnand_controller { const unsigned int *page_sizes; unsigned int page_size_shift; unsigned int max_oob; + u32 ecc_level_shift; u32 features; /* for low-power standby/resume only */ @@ -592,15 +596,53 @@ enum { INTFC_CTLR_READY = BIT(31), }; +/*********************************************************************** + * NAND ACC CONTROL bitfield + * + * Some bits have remained constant throughout hardware revision, while + * others have shifted around. + ***********************************************************************/ + +/* Constant for all versions (where supported) */ +enum { + /* See BRCMNAND_HAS_CACHE_MODE */ + ACC_CONTROL_CACHE_MODE = BIT(22), + + /* See BRCMNAND_HAS_PREFETCH */ + ACC_CONTROL_PREFETCH = BIT(23), + + ACC_CONTROL_PAGE_HIT = BIT(24), + ACC_CONTROL_WR_PREEMPT = BIT(25), + ACC_CONTROL_PARTIAL_PAGE = BIT(26), + ACC_CONTROL_RD_ERASED = BIT(27), + ACC_CONTROL_FAST_PGM_RDIN = BIT(28), + ACC_CONTROL_WR_ECC = BIT(30), + ACC_CONTROL_RD_ECC = BIT(31), +}; + +#define ACC_CONTROL_ECC_SHIFT 16 +/* Only for v7.2 */ +#define ACC_CONTROL_ECC_EXT_SHIFT 13 + +static inline bool brcmnand_non_mmio_ops(struct brcmnand_controller *ctrl) +{ + return static_branch_unlikely(&brcmnand_soc_has_ops_key); +} + static inline u32 nand_readreg(struct brcmnand_controller *ctrl, u32 offs) { + if (brcmnand_non_mmio_ops(ctrl)) + return brcmnand_soc_read(ctrl->soc, offs); return brcmnand_readl(ctrl->nand_base + offs); } static inline void nand_writereg(struct brcmnand_controller *ctrl, u32 offs, u32 val) { - brcmnand_writel(val, ctrl->nand_base + offs); + if (brcmnand_non_mmio_ops(ctrl)) + brcmnand_soc_write(ctrl->soc, val, offs); + else + brcmnand_writel(val, ctrl->nand_base + offs); } static int brcmnand_revision_init(struct brcmnand_controller *ctrl) @@ -719,6 +761,12 @@ static int brcmnand_revision_init(struct brcmnand_controller *ctrl) else if (of_property_read_bool(ctrl->dev->of_node, "brcm,nand-has-wp")) ctrl->features |= BRCMNAND_HAS_WP; + /* v7.2 has different ecc level shift in the acc register */ + if (ctrl->nand_version == 0x0702) + ctrl->ecc_level_shift = ACC_CONTROL_ECC_EXT_SHIFT; + else + ctrl->ecc_level_shift = ACC_CONTROL_ECC_SHIFT; + return 0; } @@ -766,13 +814,18 @@ static inline void brcmnand_rmw_reg(struct brcmnand_controller *ctrl, static inline u32 brcmnand_read_fc(struct brcmnand_controller *ctrl, int word) { + if (brcmnand_non_mmio_ops(ctrl)) + return brcmnand_soc_read(ctrl->soc, BRCMNAND_NON_MMIO_FC_ADDR); return __raw_readl(ctrl->nand_fc + word * 4); } static inline void brcmnand_write_fc(struct brcmnand_controller *ctrl, int word, u32 val) { - __raw_writel(val, ctrl->nand_fc + word * 4); + if (brcmnand_non_mmio_ops(ctrl)) + brcmnand_soc_write(ctrl->soc, val, BRCMNAND_NON_MMIO_FC_ADDR); + else + __raw_writel(val, ctrl->nand_fc + word * 4); } static inline void edu_writel(struct brcmnand_controller *ctrl, @@ -902,30 +955,6 @@ static inline int brcmnand_cmd_shift(struct brcmnand_controller *ctrl) return 0; } -/*********************************************************************** - * NAND ACC CONTROL bitfield - * - * Some bits have remained constant throughout hardware revision, while - * others have shifted around. - ***********************************************************************/ - -/* Constant for all versions (where supported) */ -enum { - /* See BRCMNAND_HAS_CACHE_MODE */ - ACC_CONTROL_CACHE_MODE = BIT(22), - - /* See BRCMNAND_HAS_PREFETCH */ - ACC_CONTROL_PREFETCH = BIT(23), - - ACC_CONTROL_PAGE_HIT = BIT(24), - ACC_CONTROL_WR_PREEMPT = BIT(25), - ACC_CONTROL_PARTIAL_PAGE = BIT(26), - ACC_CONTROL_RD_ERASED = BIT(27), - ACC_CONTROL_FAST_PGM_RDIN = BIT(28), - ACC_CONTROL_WR_ECC = BIT(30), - ACC_CONTROL_RD_ECC = BIT(31), -}; - static inline u32 brcmnand_spare_area_mask(struct brcmnand_controller *ctrl) { if (ctrl->nand_version == 0x0702) @@ -938,18 +967,15 @@ static inline u32 brcmnand_spare_area_mask(struct brcmnand_controller *ctrl) return GENMASK(4, 0); } -#define NAND_ACC_CONTROL_ECC_SHIFT 16 -#define NAND_ACC_CONTROL_ECC_EXT_SHIFT 13 - static inline u32 brcmnand_ecc_level_mask(struct brcmnand_controller *ctrl) { u32 mask = (ctrl->nand_version >= 0x0600) ? 0x1f : 0x0f; - mask <<= NAND_ACC_CONTROL_ECC_SHIFT; + mask <<= ACC_CONTROL_ECC_SHIFT; /* v7.2 includes additional ECC levels */ - if (ctrl->nand_version >= 0x0702) - mask |= 0x7 << NAND_ACC_CONTROL_ECC_EXT_SHIFT; + if (ctrl->nand_version == 0x0702) + mask |= 0x7 << ACC_CONTROL_ECC_EXT_SHIFT; return mask; } @@ -963,8 +989,8 @@ static void brcmnand_set_ecc_enabled(struct brcmnand_host *host, int en) if (en) { acc_control |= ecc_flags; /* enable RD/WR ECC */ - acc_control |= host->hwcfg.ecc_level - << NAND_ACC_CONTROL_ECC_SHIFT; + acc_control &= ~brcmnand_ecc_level_mask(ctrl); + acc_control |= host->hwcfg.ecc_level << ctrl->ecc_level_shift; } else { acc_control &= ~ecc_flags; /* disable RD/WR ECC */ acc_control &= ~brcmnand_ecc_level_mask(ctrl); @@ -1043,6 +1069,14 @@ static int bcmnand_ctrl_poll_status(struct brcmnand_controller *ctrl, cpu_relax(); } while (time_after(limit, jiffies)); + /* + * do a final check after time out in case the CPU was busy and the driver + * did not get enough time to perform the polling to avoid false alarms + */ + val = brcmnand_read_reg(ctrl, BRCMNAND_INTFC_STATUS); + if ((val & mask) == expected_val) + return 0; + dev_warn(ctrl->dev, "timeout on status poll (expected %x got %x)\n", expected_val, val & mask); @@ -1432,19 +1466,33 @@ static int write_oob_to_regs(struct brcmnand_controller *ctrl, int i, const u8 *oob, int sas, int sector_1k) { int tbytes = sas << sector_1k; - int j; + int j, k = 0; + u32 last = 0xffffffff; + u8 *plast = (u8 *)&last; /* Adjust OOB values for 1K sector size */ if (sector_1k && (i & 0x01)) tbytes = max(0, tbytes - (int)ctrl->max_oob); tbytes = min_t(int, tbytes, ctrl->max_oob); - for (j = 0; j < tbytes; j += 4) + /* + * tbytes may not be multiple of words. Make sure we don't read out of + * the boundary and stop at last word. + */ + for (j = 0; (j + 3) < tbytes; j += 4) oob_reg_write(ctrl, j, (oob[j + 0] << 24) | (oob[j + 1] << 16) | (oob[j + 2] << 8) | (oob[j + 3] << 0)); + + /* handle the remaing bytes */ + while (j < tbytes) + plast[k++] = oob[j++]; + + if (tbytes & 0x3) + oob_reg_write(ctrl, (tbytes & ~0x3), (__force u32)cpu_to_be32(last)); + return tbytes; } @@ -1563,7 +1611,17 @@ static void brcmnand_send_cmd(struct brcmnand_host *host, int cmd) dev_dbg(ctrl->dev, "send native cmd %d addr 0x%llx\n", cmd, cmd_addr); - BUG_ON(ctrl->cmd_pending != 0); + /* + * If we came here through _panic_write and there is a pending + * command, try to wait for it. If it times out, rather than + * hitting BUG_ON, just return so we don't crash while crashing. + */ + if (oops_in_progress) { + if (ctrl->cmd_pending && + bcmnand_ctrl_poll_status(ctrl, NAND_CTRL_RDY, NAND_CTRL_RDY, 0)) + return; + } else + BUG_ON(ctrl->cmd_pending != 0); ctrl->cmd_pending = cmd; ret = bcmnand_ctrl_poll_status(ctrl, NAND_CTRL_RDY, NAND_CTRL_RDY, 0); @@ -2532,7 +2590,7 @@ static int brcmnand_set_cfg(struct brcmnand_host *host, tmp &= ~brcmnand_ecc_level_mask(ctrl); tmp &= ~brcmnand_spare_area_mask(ctrl); if (ctrl->nand_version >= 0x0302) { - tmp |= cfg->ecc_level << NAND_ACC_CONTROL_ECC_SHIFT; + tmp |= cfg->ecc_level << ctrl->ecc_level_shift; tmp |= cfg->spare_area_size; } nand_writereg(ctrl, acc_control_offs, tmp); @@ -2583,6 +2641,8 @@ static int brcmnand_setup_dev(struct brcmnand_host *host) struct nand_chip *chip = &host->chip; const struct nand_ecc_props *requirements = nanddev_get_ecc_requirements(&chip->base); + struct nand_memory_organization *memorg = + nanddev_get_memorg(&chip->base); struct brcmnand_controller *ctrl = host->ctrl; struct brcmnand_cfg *cfg = &host->hwcfg; char msg[128]; @@ -2604,10 +2664,11 @@ static int brcmnand_setup_dev(struct brcmnand_host *host) if (cfg->spare_area_size > ctrl->max_oob) cfg->spare_area_size = ctrl->max_oob; /* - * Set oobsize to be consistent with controller's spare_area_size, as - * the rest is inaccessible. + * Set mtd and memorg oobsize to be consistent with controller's + * spare_area_size, as the rest is inaccessible. */ mtd->oobsize = cfg->spare_area_size * (mtd->writesize >> FC_SHIFT); + memorg->oobsize = mtd->oobsize; cfg->device_size = mtd->size; cfg->block_size = mtd->erasesize; @@ -2999,6 +3060,12 @@ int brcmnand_probe(struct platform_device *pdev, struct brcmnand_soc *soc) dev_set_drvdata(dev, ctrl); ctrl->dev = dev; + /* Enable the static key if the soc provides I/O operations indicating + * that a non-memory mapped IO access path must be used + */ + if (brcmnand_soc_has_ops(ctrl->soc)) + static_branch_enable(&brcmnand_soc_has_ops_key); + init_completion(&ctrl->done); init_completion(&ctrl->dma_done); init_completion(&ctrl->edu_done); diff --git a/drivers/mtd/nand/raw/brcmnand/brcmnand.h b/drivers/mtd/nand/raw/brcmnand/brcmnand.h index eb498fbe505ec..f1f93d85f50d2 100644 --- a/drivers/mtd/nand/raw/brcmnand/brcmnand.h +++ b/drivers/mtd/nand/raw/brcmnand/brcmnand.h @@ -11,12 +11,25 @@ struct platform_device; struct dev_pm_ops; +struct brcmnand_io_ops; + +/* Special register offset constant to intercept a non-MMIO access + * to the flash cache register space. This is intentionally large + * not to overlap with an existing offset. + */ +#define BRCMNAND_NON_MMIO_FC_ADDR 0xffffffff struct brcmnand_soc { bool (*ctlrdy_ack)(struct brcmnand_soc *soc); void (*ctlrdy_set_enabled)(struct brcmnand_soc *soc, bool en); void (*prepare_data_bus)(struct brcmnand_soc *soc, bool prepare, bool is_param); + const struct brcmnand_io_ops *ops; +}; + +struct brcmnand_io_ops { + u32 (*read_reg)(struct brcmnand_soc *soc, u32 offset); + void (*write_reg)(struct brcmnand_soc *soc, u32 val, u32 offset); }; static inline void brcmnand_soc_data_bus_prepare(struct brcmnand_soc *soc, @@ -58,6 +71,22 @@ static inline void brcmnand_writel(u32 val, void __iomem *addr) writel_relaxed(val, addr); } +static inline bool brcmnand_soc_has_ops(struct brcmnand_soc *soc) +{ + return soc && soc->ops && soc->ops->read_reg && soc->ops->write_reg; +} + +static inline u32 brcmnand_soc_read(struct brcmnand_soc *soc, u32 offset) +{ + return soc->ops->read_reg(soc, offset); +} + +static inline void brcmnand_soc_write(struct brcmnand_soc *soc, u32 val, + u32 offset) +{ + soc->ops->write_reg(soc, val, offset); +} + int brcmnand_probe(struct platform_device *pdev, struct brcmnand_soc *soc); int brcmnand_remove(struct platform_device *pdev); diff --git a/drivers/mtd/nand/raw/fsmc_nand.c b/drivers/mtd/nand/raw/fsmc_nand.c index 6b2bda815b880..17786e1331e6d 100644 --- a/drivers/mtd/nand/raw/fsmc_nand.c +++ b/drivers/mtd/nand/raw/fsmc_nand.c @@ -1202,9 +1202,14 @@ static int fsmc_nand_suspend(struct device *dev) static int fsmc_nand_resume(struct device *dev) { struct fsmc_nand_data *host = dev_get_drvdata(dev); + int ret; if (host) { - clk_prepare_enable(host->clk); + ret = clk_prepare_enable(host->clk); + if (ret) { + dev_err(dev, "failed to enable clk\n"); + return ret; + } if (host->dev_timings) fsmc_nand_setup(host, host->dev_timings); nand_reset(&host->nand, 0); diff --git a/drivers/mtd/nand/raw/marvell_nand.c b/drivers/mtd/nand/raw/marvell_nand.c index 9f662d5cf7fac..15a2a09c7ae23 100644 --- a/drivers/mtd/nand/raw/marvell_nand.c +++ b/drivers/mtd/nand/raw/marvell_nand.c @@ -1148,6 +1148,7 @@ static int marvell_nfc_hw_ecc_hmg_do_write_page(struct nand_chip *chip, .ndcb[2] = NDCB2_ADDR5_PAGE(page), }; unsigned int oob_bytes = lt->spare_bytes + (raw ? lt->ecc_bytes : 0); + u8 status; int ret; /* NFCv2 needs more information about the operation being executed */ @@ -1181,7 +1182,18 @@ static int marvell_nfc_hw_ecc_hmg_do_write_page(struct nand_chip *chip, ret = marvell_nfc_wait_op(chip, PSEC_TO_MSEC(sdr->tPROG_max)); - return ret; + if (ret) + return ret; + + /* Check write status on the chip side */ + ret = nand_status_op(chip, &status); + if (ret) + return ret; + + if (status & NAND_STATUS_FAIL) + return -EIO; + + return 0; } static int marvell_nfc_hw_ecc_hmg_write_page_raw(struct nand_chip *chip, @@ -1610,6 +1622,7 @@ static int marvell_nfc_hw_ecc_bch_write_page(struct nand_chip *chip, int data_len = lt->data_bytes; int spare_len = lt->spare_bytes; int chunk, ret; + u8 status; marvell_nfc_select_target(chip, chip->cur_cs); @@ -1646,6 +1659,14 @@ static int marvell_nfc_hw_ecc_bch_write_page(struct nand_chip *chip, if (ret) return ret; + /* Check write status on the chip side */ + ret = nand_status_op(chip, &status); + if (ret) + return ret; + + if (status & NAND_STATUS_FAIL) + return -EIO; + return 0; } diff --git a/drivers/mtd/nand/raw/pl35x-nand-controller.c b/drivers/mtd/nand/raw/pl35x-nand-controller.c index 3c6f6aff649f8..7bcece135715d 100644 --- a/drivers/mtd/nand/raw/pl35x-nand-controller.c +++ b/drivers/mtd/nand/raw/pl35x-nand-controller.c @@ -513,6 +513,7 @@ static int pl35x_nand_write_page_hwecc(struct nand_chip *chip, u32 addr1 = 0, addr2 = 0, row; u32 cmd_addr; int i, ret; + u8 status; ret = pl35x_smc_set_ecc_mode(nfc, chip, PL35X_SMC_ECC_CFG_MODE_APB); if (ret) @@ -565,6 +566,14 @@ static int pl35x_nand_write_page_hwecc(struct nand_chip *chip, if (ret) goto disable_ecc_engine; + /* Check write status on the chip side */ + ret = nand_status_op(chip, &status); + if (ret) + goto disable_ecc_engine; + + if (status & NAND_STATUS_FAIL) + ret = -EIO; + disable_ecc_engine: pl35x_smc_set_ecc_mode(nfc, chip, PL35X_SMC_ECC_CFG_MODE_BYPASS); diff --git a/drivers/mtd/nand/raw/qcom_nandc.c b/drivers/mtd/nand/raw/qcom_nandc.c index e972bee60e7c8..a171df54de85d 100644 --- a/drivers/mtd/nand/raw/qcom_nandc.c +++ b/drivers/mtd/nand/raw/qcom_nandc.c @@ -3093,7 +3093,7 @@ static int qcom_nandc_probe(struct platform_device *pdev) err_aon_clk: clk_disable_unprepare(nandc->core_clk); err_core_clk: - dma_unmap_resource(dev, res->start, resource_size(res), + dma_unmap_resource(dev, nandc->base_dma, resource_size(res), DMA_BIDIRECTIONAL, 0); return ret; } diff --git a/drivers/mtd/nand/spi/micron.c b/drivers/mtd/nand/spi/micron.c index 50b7295bc9222..12601bc4227a7 100644 --- a/drivers/mtd/nand/spi/micron.c +++ b/drivers/mtd/nand/spi/micron.c @@ -12,7 +12,7 @@ #define SPINAND_MFR_MICRON 0x2c -#define MICRON_STATUS_ECC_MASK GENMASK(7, 4) +#define MICRON_STATUS_ECC_MASK GENMASK(6, 4) #define MICRON_STATUS_ECC_NO_BITFLIPS (0 << 4) #define MICRON_STATUS_ECC_1TO3_BITFLIPS (1 << 4) #define MICRON_STATUS_ECC_4TO6_BITFLIPS (3 << 4) diff --git a/drivers/mtd/spi-nor/core.c b/drivers/mtd/spi-nor/core.c index 1e61c2364622f..e115aab7243e1 100644 --- a/drivers/mtd/spi-nor/core.c +++ b/drivers/mtd/spi-nor/core.c @@ -980,21 +980,22 @@ static int spi_nor_write_16bit_sr_and_check(struct spi_nor *nor, u8 sr1) ret = spi_nor_read_cr(nor, &sr_cr[1]); if (ret) return ret; - } else if (nor->params->quad_enable) { + } else if (spi_nor_get_protocol_width(nor->read_proto) == 4 && + spi_nor_get_protocol_width(nor->write_proto) == 4 && + nor->params->quad_enable) { /* * If the Status Register 2 Read command (35h) is not * supported, we should at least be sure we don't * change the value of the SR2 Quad Enable bit. * - * We can safely assume that when the Quad Enable method is - * set, the value of the QE bit is one, as a consequence of the - * nor->params->quad_enable() call. + * When the Quad Enable method is set and the buswidth is 4, we + * can safely assume that the value of the QE bit is one, as a + * consequence of the nor->params->quad_enable() call. * - * We can safely assume that the Quad Enable bit is present in - * the Status Register 2 at BIT(1). According to the JESD216 - * revB standard, BFPT DWORDS[15], bits 22:20, the 16-bit - * Write Status (01h) command is available just for the cases - * in which the QE bit is described in SR2 at BIT(1). + * According to the JESD216 revB standard, BFPT DWORDS[15], + * bits 22:20, the 16-bit Write Status (01h) command is + * available just for the cases in which the QE bit is + * described in SR2 at BIT(1). */ sr_cr[1] = SR2_QUAD_EN_BIT1; } else { diff --git a/drivers/mtd/ubi/build.c b/drivers/mtd/ubi/build.c index 8b247ce73bb6e..63a524584b481 100644 --- a/drivers/mtd/ubi/build.c +++ b/drivers/mtd/ubi/build.c @@ -895,6 +895,13 @@ int ubi_attach_mtd_dev(struct mtd_info *mtd, int ubi_num, return -EINVAL; } + /* UBI cannot work on flashes with zero erasesize. */ + if (!mtd->erasesize) { + pr_err("ubi: refuse attaching mtd%d - zero erasesize flash is not supported\n", + mtd->index); + return -EINVAL; + } + if (ubi_num == UBI_DEV_NUM_AUTO) { /* Search for an empty slot in the @ubi_devices array */ for (ubi_num = 0; ubi_num < UBI_MAX_DEVICES; ubi_num++) diff --git a/drivers/net/arcnet/arcdevice.h b/drivers/net/arcnet/arcdevice.h index 5d4a4c7efbbff..deeabd6ec2e81 100644 --- a/drivers/net/arcnet/arcdevice.h +++ b/drivers/net/arcnet/arcdevice.h @@ -186,6 +186,8 @@ do { \ #define ARC_IS_5MBIT 1 /* card default speed is 5MBit */ #define ARC_CAN_10MBIT 2 /* card uses COM20022, supporting 10MBit, but default is 2.5MBit. */ +#define ARC_HAS_LED 4 /* card has software controlled LEDs */ +#define ARC_HAS_ROTARY 8 /* card has rotary encoder */ /* information needed to define an encapsulation driver */ struct ArcProto { diff --git a/drivers/net/arcnet/arcnet.c b/drivers/net/arcnet/arcnet.c index 1bad1866ae462..a48220f91a2df 100644 --- a/drivers/net/arcnet/arcnet.c +++ b/drivers/net/arcnet/arcnet.c @@ -468,7 +468,7 @@ static void arcnet_reply_tasklet(struct tasklet_struct *t) ret = sock_queue_err_skb(sk, ackskb); if (ret) - kfree_skb(ackskb); + dev_kfree_skb_irq(ackskb); local_irq_enable(); }; diff --git a/drivers/net/arcnet/com20020-pci.c b/drivers/net/arcnet/com20020-pci.c index 28dccbc0e8d8f..9d9e4200064f9 100644 --- a/drivers/net/arcnet/com20020-pci.c +++ b/drivers/net/arcnet/com20020-pci.c @@ -213,12 +213,13 @@ static int com20020pci_probe(struct pci_dev *pdev, if (!strncmp(ci->name, "EAE PLX-PCI FB2", 15)) lp->backplane = 1; - /* Get the dev_id from the PLX rotary coder */ - if (!strncmp(ci->name, "EAE PLX-PCI MA1", 15)) - dev_id_mask = 0x3; - dev->dev_id = (inb(priv->misc + ci->rotary) >> 4) & dev_id_mask; - - snprintf(dev->name, sizeof(dev->name), "arc%d-%d", dev->dev_id, i); + if (ci->flags & ARC_HAS_ROTARY) { + /* Get the dev_id from the PLX rotary coder */ + if (!strncmp(ci->name, "EAE PLX-PCI MA1", 15)) + dev_id_mask = 0x3; + dev->dev_id = (inb(priv->misc + ci->rotary) >> 4) & dev_id_mask; + snprintf(dev->name, sizeof(dev->name), "arc%d-%d", dev->dev_id, i); + } if (arcnet_inb(ioaddr, COM20020_REG_R_STATUS) == 0xFF) { pr_err("IO address %Xh is empty!\n", ioaddr); @@ -230,6 +231,10 @@ static int com20020pci_probe(struct pci_dev *pdev, goto err_free_arcdev; } + ret = com20020_found(dev, IRQF_SHARED); + if (ret) + goto err_free_arcdev; + card = devm_kzalloc(&pdev->dev, sizeof(struct com20020_dev), GFP_KERNEL); if (!card) { @@ -239,41 +244,39 @@ static int com20020pci_probe(struct pci_dev *pdev, card->index = i; card->pci_priv = priv; - card->tx_led.brightness_set = led_tx_set; - card->tx_led.default_trigger = devm_kasprintf(&pdev->dev, - GFP_KERNEL, "arc%d-%d-tx", - dev->dev_id, i); - card->tx_led.name = devm_kasprintf(&pdev->dev, GFP_KERNEL, - "pci:green:tx:%d-%d", - dev->dev_id, i); - - card->tx_led.dev = &dev->dev; - card->recon_led.brightness_set = led_recon_set; - card->recon_led.default_trigger = devm_kasprintf(&pdev->dev, - GFP_KERNEL, "arc%d-%d-recon", - dev->dev_id, i); - card->recon_led.name = devm_kasprintf(&pdev->dev, GFP_KERNEL, - "pci:red:recon:%d-%d", - dev->dev_id, i); - card->recon_led.dev = &dev->dev; - card->dev = dev; - - ret = devm_led_classdev_register(&pdev->dev, &card->tx_led); - if (ret) - goto err_free_arcdev; - ret = devm_led_classdev_register(&pdev->dev, &card->recon_led); - if (ret) - goto err_free_arcdev; - - dev_set_drvdata(&dev->dev, card); - - ret = com20020_found(dev, IRQF_SHARED); - if (ret) - goto err_free_arcdev; - - devm_arcnet_led_init(dev, dev->dev_id, i); + if (ci->flags & ARC_HAS_LED) { + card->tx_led.brightness_set = led_tx_set; + card->tx_led.default_trigger = devm_kasprintf(&pdev->dev, + GFP_KERNEL, "arc%d-%d-tx", + dev->dev_id, i); + card->tx_led.name = devm_kasprintf(&pdev->dev, GFP_KERNEL, + "pci:green:tx:%d-%d", + dev->dev_id, i); + + card->tx_led.dev = &dev->dev; + card->recon_led.brightness_set = led_recon_set; + card->recon_led.default_trigger = devm_kasprintf(&pdev->dev, + GFP_KERNEL, "arc%d-%d-recon", + dev->dev_id, i); + card->recon_led.name = devm_kasprintf(&pdev->dev, GFP_KERNEL, + "pci:red:recon:%d-%d", + dev->dev_id, i); + card->recon_led.dev = &dev->dev; + + ret = devm_led_classdev_register(&pdev->dev, &card->tx_led); + if (ret) + goto err_free_arcdev; + + ret = devm_led_classdev_register(&pdev->dev, &card->recon_led); + if (ret) + goto err_free_arcdev; + + dev_set_drvdata(&dev->dev, card); + devm_arcnet_led_init(dev, dev->dev_id, i); + } + card->dev = dev; list_add(&card->list, &priv->list_dev); continue; @@ -329,7 +332,7 @@ static struct com20020_pci_card_info card_info_5mbit = { }; static struct com20020_pci_card_info card_info_sohard = { - .name = "PLX-PCI", + .name = "SOHARD SH ARC-PCI", .devcount = 1, /* SOHARD needs PCI base addr 4 */ .chan_map_tbl = { @@ -364,7 +367,7 @@ static struct com20020_pci_card_info card_info_eae_arc1 = { }, }, .rotary = 0x0, - .flags = ARC_CAN_10MBIT, + .flags = ARC_HAS_ROTARY | ARC_HAS_LED | ARC_CAN_10MBIT, }; static struct com20020_pci_card_info card_info_eae_ma1 = { @@ -396,7 +399,7 @@ static struct com20020_pci_card_info card_info_eae_ma1 = { }, }, .rotary = 0x0, - .flags = ARC_CAN_10MBIT, + .flags = ARC_HAS_ROTARY | ARC_HAS_LED | ARC_CAN_10MBIT, }; static struct com20020_pci_card_info card_info_eae_fb2 = { @@ -421,7 +424,7 @@ static struct com20020_pci_card_info card_info_eae_fb2 = { }, }, .rotary = 0x0, - .flags = ARC_CAN_10MBIT, + .flags = ARC_HAS_ROTARY | ARC_HAS_LED | ARC_CAN_10MBIT, }; static const struct pci_device_id com20020pci_id_table[] = { diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index e64c652b78f03..9aed194d308d6 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c @@ -1473,6 +1473,10 @@ static void bond_compute_features(struct bonding *bond) static void bond_setup_by_slave(struct net_device *bond_dev, struct net_device *slave_dev) { + bool was_up = !!(bond_dev->flags & IFF_UP); + + dev_close(bond_dev); + bond_dev->header_ops = slave_dev->header_ops; bond_dev->type = slave_dev->type; @@ -1487,6 +1491,8 @@ static void bond_setup_by_slave(struct net_device *bond_dev, bond_dev->flags &= ~(IFF_BROADCAST | IFF_MULTICAST); bond_dev->flags |= (IFF_POINTOPOINT | IFF_NOARP); } + if (was_up) + dev_open(bond_dev, NULL); } /* On bonding slaves other than the currently active slave, suppress @@ -3722,7 +3728,7 @@ static inline const void *bond_pull_data(struct sk_buff *skb, if (likely(n <= hlen)) return data; else if (skb && likely(pskb_may_pull(skb, n))) - return skb->head; + return skb->data; return NULL; } diff --git a/drivers/net/can/dev/dev.c b/drivers/net/can/dev/dev.c index e3d840b81357d..94916f2d24d41 100644 --- a/drivers/net/can/dev/dev.c +++ b/drivers/net/can/dev/dev.c @@ -141,7 +141,8 @@ static void can_restart(struct net_device *dev) struct can_frame *cf; int err; - BUG_ON(netif_carrier_ok(dev)); + if (netif_carrier_ok(dev)) + netdev_err(dev, "Attempt to restart for bus-off recovery, but carrier is OK?\n"); /* No synchronization needed because the device is bus-off and * no messages can come in or go out. @@ -165,11 +166,12 @@ static void can_restart(struct net_device *dev) priv->can_stats.restarts++; /* Now restart the device */ - err = priv->do_set_mode(dev, CAN_MODE_START); - netif_carrier_on(dev); - if (err) + err = priv->do_set_mode(dev, CAN_MODE_START); + if (err) { netdev_err(dev, "Error %d during restart", err); + netif_carrier_off(dev); + } } static void can_restart_work(struct work_struct *work) diff --git a/drivers/net/can/dev/skb.c b/drivers/net/can/dev/skb.c index 61660248c69ef..e59d5cbb644a1 100644 --- a/drivers/net/can/dev/skb.c +++ b/drivers/net/can/dev/skb.c @@ -42,7 +42,11 @@ int can_put_echo_skb(struct sk_buff *skb, struct net_device *dev, { struct can_priv *priv = netdev_priv(dev); - BUG_ON(idx >= priv->echo_skb_max); + if (idx >= priv->echo_skb_max) { + netdev_err(dev, "%s: BUG! Trying to access can_priv::echo_skb out of bounds (%u/max %u)\n", + __func__, idx, priv->echo_skb_max); + return -EINVAL; + } /* check flag whether this packet has to be looped back */ if (!(dev->flags & IFF_ECHO) || diff --git a/drivers/net/can/usb/Kconfig b/drivers/net/can/usb/Kconfig index f959215c9d53a..e208e4e432864 100644 --- a/drivers/net/can/usb/Kconfig +++ b/drivers/net/can/usb/Kconfig @@ -30,6 +30,18 @@ config CAN_ETAS_ES58X To compile this driver as a module, choose M here: the module will be called etas_es58x. +config CAN_F81604 + tristate "Fintek F81604 USB to 2CAN interface" + help + This driver supports the Fintek F81604 USB to 2CAN interface. + The device can support CAN2.0A/B protocol and also support + 2 output pins to control external terminator (optional). + + To compile this driver as a module, choose M here: the module will + be called f81604. + + (see also https://www.fintek.com.tw). + config CAN_GS_USB tristate "Geschwister Schneider UG interfaces" help diff --git a/drivers/net/can/usb/Makefile b/drivers/net/can/usb/Makefile index 748cf31a0d534..deacf970d404e 100644 --- a/drivers/net/can/usb/Makefile +++ b/drivers/net/can/usb/Makefile @@ -7,6 +7,7 @@ obj-$(CONFIG_CAN_8DEV_USB) += usb_8dev.o obj-$(CONFIG_CAN_EMS_USB) += ems_usb.o obj-$(CONFIG_CAN_ESD_USB2) += esd_usb2.o obj-$(CONFIG_CAN_ETAS_ES58X) += etas_es58x/ +obj-$(CONFIG_CAN_F81604) += f81604.o obj-$(CONFIG_CAN_GS_USB) += gs_usb.o obj-$(CONFIG_CAN_KVASER_USB) += kvaser_usb/ obj-$(CONFIG_CAN_MCBA_USB) += mcba_usb.o diff --git a/drivers/net/can/usb/f81604.c b/drivers/net/can/usb/f81604.c new file mode 100644 index 0000000000000..7b0de76646ef6 --- /dev/null +++ b/drivers/net/can/usb/f81604.c @@ -0,0 +1,1204 @@ +// SPDX-License-Identifier: GPL-2.0 +/* Fintek F81604 USB-to-2CAN controller driver. + * + * Copyright (C) 2023 Ji-Ze Hong (Peter Hong) + */ +#include +#include +#include +#include + +#include + +#include +#include +#include +#include + +#include + +/* vendor and product id */ +#define F81604_VENDOR_ID 0x2c42 +#define F81604_PRODUCT_ID 0x1709 +#define F81604_CAN_CLOCK (12 * MEGA) +#define F81604_MAX_DEV 2 +#define F81604_SET_DEVICE_RETRY 10 + +#define F81604_USB_TIMEOUT 2000 +#define F81604_SET_GET_REGISTER 0xA0 +#define F81604_PORT_OFFSET 0x1000 +#define F81604_MAX_RX_URBS 4 + +#define F81604_CMD_DATA 0x00 + +#define F81604_DLC_LEN_MASK GENMASK(3, 0) +#define F81604_DLC_EFF_BIT BIT(7) +#define F81604_DLC_RTR_BIT BIT(6) + +#define F81604_SFF_SHIFT 5 +#define F81604_EFF_SHIFT 3 + +#define F81604_BRP_MASK GENMASK(5, 0) +#define F81604_SJW_MASK GENMASK(7, 6) + +#define F81604_SEG1_MASK GENMASK(3, 0) +#define F81604_SEG2_MASK GENMASK(6, 4) + +#define F81604_CLEAR_ALC 0 +#define F81604_CLEAR_ECC 1 +#define F81604_CLEAR_OVERRUN 2 + +/* device setting */ +#define F81604_CTRL_MODE_REG 0x80 +#define F81604_TX_ONESHOT (0x03 << 3) +#define F81604_TX_NORMAL (0x01 << 3) +#define F81604_RX_AUTO_RELEASE_BUF BIT(1) +#define F81604_INT_WHEN_CHANGE BIT(0) + +#define F81604_TERMINATOR_REG 0x105 +#define F81604_CAN0_TERM BIT(2) +#define F81604_CAN1_TERM BIT(3) + +#define F81604_TERMINATION_DISABLED CAN_TERMINATION_DISABLED +#define F81604_TERMINATION_ENABLED 120 + +/* SJA1000 registers - manual section 6.4 (Pelican Mode) */ +#define F81604_SJA1000_MOD 0x00 +#define F81604_SJA1000_CMR 0x01 +#define F81604_SJA1000_IR 0x03 +#define F81604_SJA1000_IER 0x04 +#define F81604_SJA1000_ALC 0x0B +#define F81604_SJA1000_ECC 0x0C +#define F81604_SJA1000_RXERR 0x0E +#define F81604_SJA1000_TXERR 0x0F +#define F81604_SJA1000_ACCC0 0x10 +#define F81604_SJA1000_ACCM0 0x14 +#define F81604_MAX_FILTER_CNT 4 + +/* Common registers - manual section 6.5 */ +#define F81604_SJA1000_BTR0 0x06 +#define F81604_SJA1000_BTR1 0x07 +#define F81604_SJA1000_BTR1_SAMPLE_TRIPLE BIT(7) +#define F81604_SJA1000_OCR 0x08 +#define F81604_SJA1000_CDR 0x1F + +/* mode register */ +#define F81604_SJA1000_MOD_RM 0x01 +#define F81604_SJA1000_MOD_LOM 0x02 +#define F81604_SJA1000_MOD_STM 0x04 + +/* commands */ +#define F81604_SJA1000_CMD_CDO 0x08 + +/* interrupt sources */ +#define F81604_SJA1000_IRQ_BEI 0x80 +#define F81604_SJA1000_IRQ_ALI 0x40 +#define F81604_SJA1000_IRQ_EPI 0x20 +#define F81604_SJA1000_IRQ_DOI 0x08 +#define F81604_SJA1000_IRQ_EI 0x04 +#define F81604_SJA1000_IRQ_TI 0x02 +#define F81604_SJA1000_IRQ_RI 0x01 +#define F81604_SJA1000_IRQ_ALL 0xFF +#define F81604_SJA1000_IRQ_OFF 0x00 + +/* status register content */ +#define F81604_SJA1000_SR_BS 0x80 +#define F81604_SJA1000_SR_ES 0x40 +#define F81604_SJA1000_SR_TCS 0x08 + +/* ECC register */ +#define F81604_SJA1000_ECC_SEG 0x1F +#define F81604_SJA1000_ECC_DIR 0x20 +#define F81604_SJA1000_ECC_BIT 0x00 +#define F81604_SJA1000_ECC_FORM 0x40 +#define F81604_SJA1000_ECC_STUFF 0x80 +#define F81604_SJA1000_ECC_MASK 0xc0 + +/* ALC register */ +#define F81604_SJA1000_ALC_MASK 0x1f +#define CAN_ERR_CNT 0x00000200U + +/* table of devices that work with this driver */ +static const struct usb_device_id f81604_table[] = { + { USB_DEVICE(F81604_VENDOR_ID, F81604_PRODUCT_ID) }, + {} /* Terminating entry */ +}; + +MODULE_DEVICE_TABLE(usb, f81604_table); + +static const struct ethtool_ops f81604_ethtool_ops = { + .get_ts_info = ethtool_op_get_ts_info, +}; + +static const u16 f81604_termination[] = { F81604_TERMINATION_DISABLED, + F81604_TERMINATION_ENABLED }; + +struct f81604_priv { + struct net_device *netdev[F81604_MAX_DEV]; +}; + +struct f81604_port_priv { + struct can_priv can; + struct net_device *netdev; + struct sk_buff *echo_skb; + + unsigned long clear_flags; + struct work_struct clear_reg_work; + + struct usb_device *dev; + struct usb_interface *intf; + + struct usb_anchor urbs_anchor; +}; + +/* Interrupt endpoint data format: + * Byte 0: Status register. + * Byte 1: Interrupt register. + * Byte 2: Interrupt enable register. + * Byte 3: Arbitration lost capture(ALC) register. + * Byte 4: Error code capture(ECC) register. + * Byte 5: Error warning limit register. + * Byte 6: RX error counter register. + * Byte 7: TX error counter register. + * Byte 8: Reserved. + */ +struct f81604_int_data { + u8 sr; + u8 isrc; + u8 ier; + u8 alc; + u8 ecc; + u8 ewlr; + u8 rxerr; + u8 txerr; + u8 val; +} __packed __aligned(4); + +struct f81604_sff { + __be16 id; + u8 data[CAN_MAX_DLEN]; +} __packed __aligned(2); + +struct f81604_eff { + __be32 id; + u8 data[CAN_MAX_DLEN]; +} __packed __aligned(2); + +struct f81604_can_frame { + u8 cmd; + + /* According for F81604 DLC define: + * bit 3~0: data length (0~8) + * bit6: is RTR flag. + * bit7: is EFF frame. + */ + u8 dlc; + + union { + struct f81604_sff sff; + struct f81604_eff eff; + }; +} __packed __aligned(2); + +static const u8 bulk_in_addr[F81604_MAX_DEV] = { 2, 4 }; +static const u8 bulk_out_addr[F81604_MAX_DEV] = { 1, 3 }; +static const u8 int_in_addr[F81604_MAX_DEV] = { 1, 3 }; + +static int f81604_write(struct usb_device *dev, u16 reg, u8 data) +{ + int ret; + + ret = usb_control_msg_send(dev, 0, F81604_SET_GET_REGISTER, + USB_TYPE_VENDOR | USB_DIR_OUT, 0, reg, + &data, sizeof(data), F81604_USB_TIMEOUT, + GFP_KERNEL); + if (ret) + dev_err(&dev->dev, "%s: reg: %x data: %x failed: %pe\n", + __func__, reg, data, ERR_PTR(ret)); + + return ret; +} + +static int f81604_read(struct usb_device *dev, u16 reg, u8 *data) +{ + int ret; + + ret = usb_control_msg_recv(dev, 0, F81604_SET_GET_REGISTER, + USB_TYPE_VENDOR | USB_DIR_IN, 0, reg, data, + sizeof(*data), F81604_USB_TIMEOUT, + GFP_KERNEL); + + if (ret < 0) + dev_err(&dev->dev, "%s: reg: %x failed: %pe\n", __func__, reg, + ERR_PTR(ret)); + + return ret; +} + +static int f81604_update_bits(struct usb_device *dev, u16 reg, u8 mask, + u8 data) +{ + int ret; + u8 tmp; + + ret = f81604_read(dev, reg, &tmp); + if (ret) + return ret; + + tmp &= ~mask; + tmp |= (mask & data); + + return f81604_write(dev, reg, tmp); +} + +static int f81604_sja1000_write(struct f81604_port_priv *priv, u16 reg, + u8 data) +{ + int port = priv->netdev->dev_port; + int real_reg; + + real_reg = reg + F81604_PORT_OFFSET * port + F81604_PORT_OFFSET; + return f81604_write(priv->dev, real_reg, data); +} + +static int f81604_sja1000_read(struct f81604_port_priv *priv, u16 reg, + u8 *data) +{ + int port = priv->netdev->dev_port; + int real_reg; + + real_reg = reg + F81604_PORT_OFFSET * port + F81604_PORT_OFFSET; + return f81604_read(priv->dev, real_reg, data); +} + +static int f81604_set_reset_mode(struct f81604_port_priv *priv) +{ + int ret, i; + u8 tmp; + + /* disable interrupts */ + ret = f81604_sja1000_write(priv, F81604_SJA1000_IER, + F81604_SJA1000_IRQ_OFF); + if (ret) + return ret; + + for (i = 0; i < F81604_SET_DEVICE_RETRY; i++) { + ret = f81604_sja1000_read(priv, F81604_SJA1000_MOD, &tmp); + if (ret) + return ret; + + /* check reset bit */ + if (tmp & F81604_SJA1000_MOD_RM) { + priv->can.state = CAN_STATE_STOPPED; + return 0; + } + + /* reset chip */ + ret = f81604_sja1000_write(priv, F81604_SJA1000_MOD, + F81604_SJA1000_MOD_RM); + if (ret) + return ret; + } + + return -EPERM; +} + +static int f81604_set_normal_mode(struct f81604_port_priv *priv) +{ + u8 tmp, ier = 0; + u8 mod_reg = 0; + int ret, i; + + for (i = 0; i < F81604_SET_DEVICE_RETRY; i++) { + ret = f81604_sja1000_read(priv, F81604_SJA1000_MOD, &tmp); + if (ret) + return ret; + + /* check reset bit */ + if ((tmp & F81604_SJA1000_MOD_RM) == 0) { + priv->can.state = CAN_STATE_ERROR_ACTIVE; + /* enable interrupts, RI handled by bulk-in */ + ier = F81604_SJA1000_IRQ_ALL & ~F81604_SJA1000_IRQ_RI; + if (!(priv->can.ctrlmode & + CAN_CTRLMODE_BERR_REPORTING)) + ier &= ~F81604_SJA1000_IRQ_BEI; + + return f81604_sja1000_write(priv, F81604_SJA1000_IER, + ier); + } + + /* set chip to normal mode */ + if (priv->can.ctrlmode & CAN_CTRLMODE_LISTENONLY) + mod_reg |= F81604_SJA1000_MOD_LOM; + if (priv->can.ctrlmode & CAN_CTRLMODE_PRESUME_ACK) + mod_reg |= F81604_SJA1000_MOD_STM; + + ret = f81604_sja1000_write(priv, F81604_SJA1000_MOD, mod_reg); + if (ret) + return ret; + } + + return -EPERM; +} + +static int f81604_chipset_init(struct f81604_port_priv *priv) +{ + int i, ret; + + /* set clock divider and output control register */ + ret = f81604_sja1000_write(priv, F81604_SJA1000_CDR, + CDR_CBP | CDR_PELICAN); + if (ret) + return ret; + + /* set acceptance filter (accept all) */ + for (i = 0; i < F81604_MAX_FILTER_CNT; ++i) { + ret = f81604_sja1000_write(priv, F81604_SJA1000_ACCC0 + i, 0); + if (ret) + return ret; + } + + for (i = 0; i < F81604_MAX_FILTER_CNT; ++i) { + ret = f81604_sja1000_write(priv, F81604_SJA1000_ACCM0 + i, + 0xFF); + if (ret) + return ret; + } + + return f81604_sja1000_write(priv, F81604_SJA1000_OCR, + OCR_TX0_PUSHPULL | OCR_TX1_PUSHPULL | + OCR_MODE_NORMAL); +} + +static void f81604_process_rx_packet(struct net_device *netdev, + struct f81604_can_frame *frame) +{ + struct net_device_stats *stats = &netdev->stats; + struct can_frame *cf; + struct sk_buff *skb; + + if (frame->cmd != F81604_CMD_DATA) + return; + + skb = alloc_can_skb(netdev, &cf); + if (!skb) { + stats->rx_dropped++; + return; + } + + cf->len = can_cc_dlc2len(frame->dlc & F81604_DLC_LEN_MASK); + + if (frame->dlc & F81604_DLC_EFF_BIT) { + cf->can_id = get_unaligned_be32(&frame->eff.id) >> + F81604_EFF_SHIFT; + cf->can_id |= CAN_EFF_FLAG; + + if (!(frame->dlc & F81604_DLC_RTR_BIT)) + memcpy(cf->data, frame->eff.data, cf->len); + } else { + cf->can_id = get_unaligned_be16(&frame->sff.id) >> + F81604_SFF_SHIFT; + + if (!(frame->dlc & F81604_DLC_RTR_BIT)) + memcpy(cf->data, frame->sff.data, cf->len); + } + + if (frame->dlc & F81604_DLC_RTR_BIT) + cf->can_id |= CAN_RTR_FLAG; + else + stats->rx_bytes += cf->len; + + stats->rx_packets++; + netif_rx(skb); +} + +static void f81604_read_bulk_callback(struct urb *urb) +{ + struct f81604_can_frame *frame = urb->transfer_buffer; + struct net_device *netdev = urb->context; + int ret; + + if (!netif_device_present(netdev)) + return; + + if (urb->status) + netdev_info(netdev, "%s: URB aborted %pe\n", __func__, + ERR_PTR(urb->status)); + + switch (urb->status) { + case 0: /* success */ + break; + + case -ENOENT: + case -EPIPE: + case -EPROTO: + case -ESHUTDOWN: + return; + + default: + goto resubmit_urb; + } + + if (urb->actual_length != sizeof(*frame)) { + netdev_warn(netdev, "URB length %u not equal to %zu\n", + urb->actual_length, sizeof(*frame)); + goto resubmit_urb; + } + + f81604_process_rx_packet(netdev, frame); + +resubmit_urb: + ret = usb_submit_urb(urb, GFP_ATOMIC); + if (ret == -ENODEV) + netif_device_detach(netdev); + else if (ret) + netdev_err(netdev, + "%s: failed to resubmit read bulk urb: %pe\n", + __func__, ERR_PTR(ret)); +} + +static void f81604_handle_tx(struct f81604_port_priv *priv, + struct f81604_int_data *data) +{ + struct net_device *netdev = priv->netdev; + struct net_device_stats *stats = &netdev->stats; + + /* transmission buffer released */ + if (priv->can.ctrlmode & CAN_CTRLMODE_ONE_SHOT && + !(data->sr & F81604_SJA1000_SR_TCS)) { + stats->tx_errors++; + can_free_echo_skb(netdev, 0, NULL); + } else { + /* transmission complete */ + stats->tx_bytes += can_get_echo_skb(netdev, 0, NULL); + stats->tx_packets++; + } + + netif_wake_queue(netdev); +} + +static void f81604_handle_can_bus_errors(struct f81604_port_priv *priv, + struct f81604_int_data *data) +{ + enum can_state can_state = priv->can.state; + struct net_device *netdev = priv->netdev; + struct net_device_stats *stats = &netdev->stats; + struct can_frame *cf; + struct sk_buff *skb; + + /* Note: ALC/ECC will not auto clear by read here, must be cleared by + * read register (via clear_reg_work). + */ + + skb = alloc_can_err_skb(netdev, &cf); + if (skb) { + cf->can_id |= CAN_ERR_CNT; + cf->data[6] = data->txerr; + cf->data[7] = data->rxerr; + } + + if (data->isrc & F81604_SJA1000_IRQ_DOI) { + /* data overrun interrupt */ + netdev_dbg(netdev, "data overrun interrupt\n"); + + if (skb) { + cf->can_id |= CAN_ERR_CRTL; + cf->data[1] = CAN_ERR_CRTL_RX_OVERFLOW; + } + + stats->rx_over_errors++; + stats->rx_errors++; + + set_bit(F81604_CLEAR_OVERRUN, &priv->clear_flags); + } + + if (data->isrc & F81604_SJA1000_IRQ_EI) { + /* error warning interrupt */ + netdev_dbg(netdev, "error warning interrupt\n"); + + if (data->sr & F81604_SJA1000_SR_BS) + can_state = CAN_STATE_BUS_OFF; + else if (data->sr & F81604_SJA1000_SR_ES) + can_state = CAN_STATE_ERROR_WARNING; + else + can_state = CAN_STATE_ERROR_ACTIVE; + } + + if (data->isrc & F81604_SJA1000_IRQ_BEI) { + /* bus error interrupt */ + netdev_dbg(netdev, "bus error interrupt\n"); + + priv->can.can_stats.bus_error++; + stats->rx_errors++; + + if (skb) { + cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR; + + /* set error type */ + switch (data->ecc & F81604_SJA1000_ECC_MASK) { + case F81604_SJA1000_ECC_BIT: + cf->data[2] |= CAN_ERR_PROT_BIT; + break; + case F81604_SJA1000_ECC_FORM: + cf->data[2] |= CAN_ERR_PROT_FORM; + break; + case F81604_SJA1000_ECC_STUFF: + cf->data[2] |= CAN_ERR_PROT_STUFF; + break; + default: + break; + } + + /* set error location */ + cf->data[3] = data->ecc & F81604_SJA1000_ECC_SEG; + + /* Error occurred during transmission? */ + if ((data->ecc & F81604_SJA1000_ECC_DIR) == 0) + cf->data[2] |= CAN_ERR_PROT_TX; + } + + set_bit(F81604_CLEAR_ECC, &priv->clear_flags); + } + + if (data->isrc & F81604_SJA1000_IRQ_EPI) { + if (can_state == CAN_STATE_ERROR_PASSIVE) + can_state = CAN_STATE_ERROR_WARNING; + else + can_state = CAN_STATE_ERROR_PASSIVE; + + /* error passive interrupt */ + netdev_dbg(netdev, "error passive interrupt: %d\n", can_state); + } + + if (data->isrc & F81604_SJA1000_IRQ_ALI) { + /* arbitration lost interrupt */ + netdev_dbg(netdev, "arbitration lost interrupt\n"); + + priv->can.can_stats.arbitration_lost++; + + if (skb) { + cf->can_id |= CAN_ERR_LOSTARB; + cf->data[0] = data->alc & F81604_SJA1000_ALC_MASK; + } + + set_bit(F81604_CLEAR_ALC, &priv->clear_flags); + } + + if (can_state != priv->can.state) { + enum can_state tx_state, rx_state; + + tx_state = data->txerr >= data->rxerr ? can_state : 0; + rx_state = data->txerr <= data->rxerr ? can_state : 0; + + can_change_state(netdev, cf, tx_state, rx_state); + + if (can_state == CAN_STATE_BUS_OFF) + can_bus_off(netdev); + } + + if (priv->clear_flags) + schedule_work(&priv->clear_reg_work); + + if (skb) + netif_rx(skb); +} + +static void f81604_read_int_callback(struct urb *urb) +{ + struct f81604_int_data *data = urb->transfer_buffer; + struct net_device *netdev = urb->context; + struct f81604_port_priv *priv; + int ret; + + priv = netdev_priv(netdev); + + if (!netif_device_present(netdev)) + return; + + if (urb->status) + netdev_info(netdev, "%s: Int URB aborted: %pe\n", __func__, + ERR_PTR(urb->status)); + + switch (urb->status) { + case 0: /* success */ + break; + + case -ENOENT: + case -EPIPE: + case -EPROTO: + case -ESHUTDOWN: + return; + + default: + goto resubmit_urb; + } + + /* handle Errors */ + if (data->isrc & (F81604_SJA1000_IRQ_DOI | F81604_SJA1000_IRQ_EI | + F81604_SJA1000_IRQ_BEI | F81604_SJA1000_IRQ_EPI | + F81604_SJA1000_IRQ_ALI)) + f81604_handle_can_bus_errors(priv, data); + + /* handle TX */ + if (priv->can.state != CAN_STATE_BUS_OFF && + (data->isrc & F81604_SJA1000_IRQ_TI)) + f81604_handle_tx(priv, data); + +resubmit_urb: + ret = usb_submit_urb(urb, GFP_ATOMIC); + if (ret == -ENODEV) + netif_device_detach(netdev); + else if (ret) + netdev_err(netdev, "%s: failed to resubmit int urb: %pe\n", + __func__, ERR_PTR(ret)); +} + +static void f81604_unregister_urbs(struct f81604_port_priv *priv) +{ + usb_kill_anchored_urbs(&priv->urbs_anchor); +} + +static int f81604_register_urbs(struct f81604_port_priv *priv) +{ + struct net_device *netdev = priv->netdev; + struct f81604_int_data *int_data; + int id = netdev->dev_port; + struct urb *int_urb; + int rx_urb_cnt; + int ret; + + for (rx_urb_cnt = 0; rx_urb_cnt < F81604_MAX_RX_URBS; ++rx_urb_cnt) { + struct f81604_can_frame *frame; + struct urb *rx_urb; + + rx_urb = usb_alloc_urb(0, GFP_KERNEL); + if (!rx_urb) { + ret = -ENOMEM; + break; + } + + frame = kmalloc(sizeof(*frame), GFP_KERNEL); + if (!frame) { + usb_free_urb(rx_urb); + ret = -ENOMEM; + break; + } + + usb_fill_bulk_urb(rx_urb, priv->dev, + usb_rcvbulkpipe(priv->dev, bulk_in_addr[id]), + frame, sizeof(*frame), + f81604_read_bulk_callback, netdev); + + rx_urb->transfer_flags |= URB_FREE_BUFFER; + usb_anchor_urb(rx_urb, &priv->urbs_anchor); + + ret = usb_submit_urb(rx_urb, GFP_KERNEL); + if (ret) { + usb_unanchor_urb(rx_urb); + usb_free_urb(rx_urb); + break; + } + + /* Drop reference, USB core will take care of freeing it */ + usb_free_urb(rx_urb); + } + + if (rx_urb_cnt == 0) { + netdev_warn(netdev, "%s: submit rx urb failed: %pe\n", + __func__, ERR_PTR(ret)); + + goto error; + } + + int_urb = usb_alloc_urb(0, GFP_KERNEL); + if (!int_urb) { + ret = -ENOMEM; + goto error; + } + + int_data = kmalloc(sizeof(*int_data), GFP_KERNEL); + if (!int_data) { + usb_free_urb(int_urb); + ret = -ENOMEM; + goto error; + } + + usb_fill_int_urb(int_urb, priv->dev, + usb_rcvintpipe(priv->dev, int_in_addr[id]), int_data, + sizeof(*int_data), f81604_read_int_callback, netdev, + 1); + + int_urb->transfer_flags |= URB_FREE_BUFFER; + usb_anchor_urb(int_urb, &priv->urbs_anchor); + + ret = usb_submit_urb(int_urb, GFP_KERNEL); + if (ret) { + usb_unanchor_urb(int_urb); + usb_free_urb(int_urb); + + netdev_warn(netdev, "%s: submit int urb failed: %pe\n", + __func__, ERR_PTR(ret)); + goto error; + } + + /* Drop reference, USB core will take care of freeing it */ + usb_free_urb(int_urb); + + return 0; + +error: + f81604_unregister_urbs(priv); + return ret; +} + +static int f81604_start(struct net_device *netdev) +{ + struct f81604_port_priv *priv = netdev_priv(netdev); + int ret; + u8 mode; + u8 tmp; + + mode = F81604_RX_AUTO_RELEASE_BUF | F81604_INT_WHEN_CHANGE; + + /* Set TR/AT mode */ + if (priv->can.ctrlmode & CAN_CTRLMODE_ONE_SHOT) + mode |= F81604_TX_ONESHOT; + else + mode |= F81604_TX_NORMAL; + + ret = f81604_sja1000_write(priv, F81604_CTRL_MODE_REG, mode); + if (ret) + return ret; + + /* set reset mode */ + ret = f81604_set_reset_mode(priv); + if (ret) + return ret; + + ret = f81604_chipset_init(priv); + if (ret) + return ret; + + /* Clear error counters and error code capture */ + ret = f81604_sja1000_write(priv, F81604_SJA1000_TXERR, 0); + if (ret) + return ret; + + ret = f81604_sja1000_write(priv, F81604_SJA1000_RXERR, 0); + if (ret) + return ret; + + /* Read clear for ECC/ALC/IR register */ + ret = f81604_sja1000_read(priv, F81604_SJA1000_ECC, &tmp); + if (ret) + return ret; + + ret = f81604_sja1000_read(priv, F81604_SJA1000_ALC, &tmp); + if (ret) + return ret; + + ret = f81604_sja1000_read(priv, F81604_SJA1000_IR, &tmp); + if (ret) + return ret; + + ret = f81604_register_urbs(priv); + if (ret) + return ret; + + ret = f81604_set_normal_mode(priv); + if (ret) { + f81604_unregister_urbs(priv); + return ret; + } + + return 0; +} + +static int f81604_set_bittiming(struct net_device *dev) +{ + struct f81604_port_priv *priv = netdev_priv(dev); + struct can_bittiming *bt = &priv->can.bittiming; + u8 btr0, btr1; + int ret; + + btr0 = FIELD_PREP(F81604_BRP_MASK, bt->brp - 1) | + FIELD_PREP(F81604_SJW_MASK, bt->sjw - 1); + + btr1 = FIELD_PREP(F81604_SEG1_MASK, + bt->prop_seg + bt->phase_seg1 - 1) | + FIELD_PREP(F81604_SEG2_MASK, bt->phase_seg2 - 1); + + if (priv->can.ctrlmode & CAN_CTRLMODE_3_SAMPLES) + btr1 |= F81604_SJA1000_BTR1_SAMPLE_TRIPLE; + + ret = f81604_sja1000_write(priv, F81604_SJA1000_BTR0, btr0); + if (ret) { + netdev_warn(dev, "%s: Set BTR0 failed: %pe\n", __func__, + ERR_PTR(ret)); + return ret; + } + + ret = f81604_sja1000_write(priv, F81604_SJA1000_BTR1, btr1); + if (ret) { + netdev_warn(dev, "%s: Set BTR1 failed: %pe\n", __func__, + ERR_PTR(ret)); + return ret; + } + + return 0; +} + +static int f81604_set_mode(struct net_device *netdev, enum can_mode mode) +{ + int ret; + + switch (mode) { + case CAN_MODE_START: + ret = f81604_start(netdev); + if (!ret && netif_queue_stopped(netdev)) + netif_wake_queue(netdev); + break; + + default: + ret = -EOPNOTSUPP; + } + + return ret; +} + +static void f81604_write_bulk_callback(struct urb *urb) +{ + struct net_device *netdev = urb->context; + + if (!netif_device_present(netdev)) + return; + + if (urb->status) + netdev_info(netdev, "%s: Tx URB error: %pe\n", __func__, + ERR_PTR(urb->status)); +} + +static void f81604_clear_reg_work(struct work_struct *work) +{ + struct f81604_port_priv *priv; + u8 tmp; + + priv = container_of(work, struct f81604_port_priv, clear_reg_work); + + /* dummy read for clear Arbitration lost capture(ALC) register. */ + if (test_and_clear_bit(F81604_CLEAR_ALC, &priv->clear_flags)) + f81604_sja1000_read(priv, F81604_SJA1000_ALC, &tmp); + + /* dummy read for clear Error code capture(ECC) register. */ + if (test_and_clear_bit(F81604_CLEAR_ECC, &priv->clear_flags)) + f81604_sja1000_read(priv, F81604_SJA1000_ECC, &tmp); + + /* dummy write for clear data overrun flag. */ + if (test_and_clear_bit(F81604_CLEAR_OVERRUN, &priv->clear_flags)) + f81604_sja1000_write(priv, F81604_SJA1000_CMR, + F81604_SJA1000_CMD_CDO); +} + +static netdev_tx_t f81604_start_xmit(struct sk_buff *skb, + struct net_device *netdev) +{ + struct can_frame *cf = (struct can_frame *)skb->data; + struct f81604_port_priv *priv = netdev_priv(netdev); + struct net_device_stats *stats = &netdev->stats; + struct f81604_can_frame *frame; + struct urb *write_urb; + int ret; + + if (can_dropped_invalid_skb(netdev, skb)) + return NETDEV_TX_OK; + + netif_stop_queue(netdev); + + write_urb = usb_alloc_urb(0, GFP_ATOMIC); + if (!write_urb) + goto nomem_urb; + + frame = kzalloc(sizeof(*frame), GFP_ATOMIC); + if (!frame) + goto nomem_buf; + + usb_fill_bulk_urb(write_urb, priv->dev, + usb_sndbulkpipe(priv->dev, + bulk_out_addr[netdev->dev_port]), + frame, sizeof(*frame), f81604_write_bulk_callback, + priv->netdev); + + write_urb->transfer_flags |= URB_FREE_BUFFER; + + frame->cmd = F81604_CMD_DATA; + frame->dlc = cf->len; + + if (cf->can_id & CAN_RTR_FLAG) + frame->dlc |= F81604_DLC_RTR_BIT; + + if (cf->can_id & CAN_EFF_FLAG) { + u32 id = (cf->can_id & CAN_EFF_MASK) << F81604_EFF_SHIFT; + + put_unaligned_be32(id, &frame->eff.id); + + frame->dlc |= F81604_DLC_EFF_BIT; + + if (!(cf->can_id & CAN_RTR_FLAG)) + memcpy(&frame->eff.data, cf->data, cf->len); + } else { + u32 id = (cf->can_id & CAN_SFF_MASK) << F81604_SFF_SHIFT; + + put_unaligned_be16(id, &frame->sff.id); + + if (!(cf->can_id & CAN_RTR_FLAG)) + memcpy(&frame->sff.data, cf->data, cf->len); + } + + can_put_echo_skb(skb, netdev, 0, 0); + + ret = usb_submit_urb(write_urb, GFP_ATOMIC); + if (ret) { + netdev_err(netdev, "%s: failed to resubmit tx bulk urb: %pe\n", + __func__, ERR_PTR(ret)); + + can_free_echo_skb(netdev, 0, NULL); + stats->tx_dropped++; + stats->tx_errors++; + + if (ret == -ENODEV) + netif_device_detach(netdev); + else + netif_wake_queue(netdev); + } + + /* let usb core take care of this urb */ + usb_free_urb(write_urb); + + return NETDEV_TX_OK; + +nomem_buf: + usb_free_urb(write_urb); + +nomem_urb: + dev_kfree_skb(skb); + stats->tx_dropped++; + stats->tx_errors++; + netif_wake_queue(netdev); + + return NETDEV_TX_OK; +} + +static int f81604_get_berr_counter(const struct net_device *netdev, + struct can_berr_counter *bec) +{ + struct f81604_port_priv *priv = netdev_priv(netdev); + u8 txerr, rxerr; + int ret; + + ret = f81604_sja1000_read(priv, F81604_SJA1000_TXERR, &txerr); + if (ret) + return ret; + + ret = f81604_sja1000_read(priv, F81604_SJA1000_RXERR, &rxerr); + if (ret) + return ret; + + bec->txerr = txerr; + bec->rxerr = rxerr; + + return 0; +} + +/* Open USB device */ +static int f81604_open(struct net_device *netdev) +{ + int ret; + + ret = open_candev(netdev); + if (ret) + return ret; + + ret = f81604_start(netdev); + if (ret) { + if (ret == -ENODEV) + netif_device_detach(netdev); + + close_candev(netdev); + return ret; + } + + netif_start_queue(netdev); + return 0; +} + +/* Close USB device */ +static int f81604_close(struct net_device *netdev) +{ + struct f81604_port_priv *priv = netdev_priv(netdev); + + f81604_set_reset_mode(priv); + + netif_stop_queue(netdev); + cancel_work_sync(&priv->clear_reg_work); + close_candev(netdev); + + f81604_unregister_urbs(priv); + + return 0; +} + +static const struct net_device_ops f81604_netdev_ops = { + .ndo_open = f81604_open, + .ndo_stop = f81604_close, + .ndo_start_xmit = f81604_start_xmit, + .ndo_change_mtu = can_change_mtu, +}; + +static const struct can_bittiming_const f81604_bittiming_const = { + .name = KBUILD_MODNAME, + .tseg1_min = 1, + .tseg1_max = 16, + .tseg2_min = 1, + .tseg2_max = 8, + .sjw_max = 4, + .brp_min = 1, + .brp_max = 64, + .brp_inc = 1, +}; + +/* Called by the usb core when driver is unloaded or device is removed */ +static void f81604_disconnect(struct usb_interface *intf) +{ + struct f81604_priv *priv = usb_get_intfdata(intf); + int i; + + for (i = 0; i < ARRAY_SIZE(priv->netdev); ++i) { + if (!priv->netdev[i]) + continue; + + unregister_netdev(priv->netdev[i]); + free_candev(priv->netdev[i]); + } +} + +static int __f81604_set_termination(struct usb_device *dev, int idx, u16 term) +{ + u8 mask, data = 0; + + if (idx == 0) + mask = F81604_CAN0_TERM; + else + mask = F81604_CAN1_TERM; + + if (term) + data = mask; + + return f81604_update_bits(dev, F81604_TERMINATOR_REG, mask, data); +} + +static int f81604_set_termination(struct net_device *netdev, u16 term) +{ + struct f81604_port_priv *port_priv = netdev_priv(netdev); + + ASSERT_RTNL(); + + return __f81604_set_termination(port_priv->dev, netdev->dev_port, + term); +} + +static int f81604_probe(struct usb_interface *intf, + const struct usb_device_id *id) +{ + struct usb_device *dev = interface_to_usbdev(intf); + struct net_device *netdev; + struct f81604_priv *priv; + int i, ret; + + priv = devm_kzalloc(&intf->dev, sizeof(*priv), GFP_KERNEL); + if (!priv) + return -ENOMEM; + + usb_set_intfdata(intf, priv); + + for (i = 0; i < ARRAY_SIZE(priv->netdev); ++i) { + ret = __f81604_set_termination(dev, i, 0); + if (ret) { + dev_err(&intf->dev, + "Setting termination of CH#%d failed: %pe\n", + i, ERR_PTR(ret)); + return ret; + } + } + + for (i = 0; i < ARRAY_SIZE(priv->netdev); ++i) { + struct f81604_port_priv *port_priv; + + netdev = alloc_candev(sizeof(*port_priv), 1); + if (!netdev) { + dev_err(&intf->dev, "Couldn't alloc candev: %d\n", i); + ret = -ENOMEM; + + goto failure_cleanup; + } + + port_priv = netdev_priv(netdev); + + INIT_WORK(&port_priv->clear_reg_work, f81604_clear_reg_work); + init_usb_anchor(&port_priv->urbs_anchor); + + port_priv->intf = intf; + port_priv->dev = dev; + port_priv->netdev = netdev; + port_priv->can.clock.freq = F81604_CAN_CLOCK; + + port_priv->can.termination_const = f81604_termination; + port_priv->can.termination_const_cnt = + ARRAY_SIZE(f81604_termination); + port_priv->can.bittiming_const = &f81604_bittiming_const; + port_priv->can.do_set_bittiming = f81604_set_bittiming; + port_priv->can.do_set_mode = f81604_set_mode; + port_priv->can.do_set_termination = f81604_set_termination; + port_priv->can.do_get_berr_counter = f81604_get_berr_counter; + port_priv->can.ctrlmode_supported = + CAN_CTRLMODE_LISTENONLY | CAN_CTRLMODE_3_SAMPLES | + CAN_CTRLMODE_ONE_SHOT | CAN_CTRLMODE_BERR_REPORTING | + CAN_CTRLMODE_PRESUME_ACK; + + netdev->ethtool_ops = &f81604_ethtool_ops; + netdev->netdev_ops = &f81604_netdev_ops; + netdev->flags |= IFF_ECHO; + netdev->dev_port = i; + + SET_NETDEV_DEV(netdev, &intf->dev); + + ret = register_candev(netdev); + if (ret) { + netdev_err(netdev, "register CAN device failed: %pe\n", + ERR_PTR(ret)); + free_candev(netdev); + + goto failure_cleanup; + } + + priv->netdev[i] = netdev; + } + + return 0; + +failure_cleanup: + f81604_disconnect(intf); + return ret; +} + +static struct usb_driver f81604_driver = { + .name = KBUILD_MODNAME, + .probe = f81604_probe, + .disconnect = f81604_disconnect, + .id_table = f81604_table, +}; + +module_usb_driver(f81604_driver); + +MODULE_AUTHOR("Ji-Ze Hong (Peter Hong) "); +MODULE_DESCRIPTION("Fintek F81604 USB to 2xCANBUS"); +MODULE_LICENSE("GPL"); diff --git a/drivers/net/can/usb/gs_usb.c b/drivers/net/can/usb/gs_usb.c index 5d6062fbebfcc..7dc4fb574e459 100644 --- a/drivers/net/can/usb/gs_usb.c +++ b/drivers/net/can/usb/gs_usb.c @@ -382,6 +382,9 @@ static void gs_usb_receive_bulk_callback(struct urb *urb) } if (hf->flags & GS_CAN_FLAG_OVERFLOW) { + stats->rx_over_errors++; + stats->rx_errors++; + skb = alloc_can_err_skb(netdev, &cf); if (!skb) goto resubmit_urb; @@ -389,8 +392,6 @@ static void gs_usb_receive_bulk_callback(struct urb *urb) cf->can_id |= CAN_ERR_CRTL; cf->len = CAN_ERR_DLC; cf->data[1] = CAN_ERR_CRTL_RX_OVERFLOW; - stats->rx_over_errors++; - stats->rx_errors++; netif_rx(skb); } diff --git a/drivers/net/dsa/bcm_sf2.c b/drivers/net/dsa/bcm_sf2.c index 773d751ef169f..1fa392aee52de 100644 --- a/drivers/net/dsa/bcm_sf2.c +++ b/drivers/net/dsa/bcm_sf2.c @@ -577,17 +577,16 @@ static int bcm_sf2_mdio_register(struct dsa_switch *ds) dn = of_find_compatible_node(NULL, NULL, "brcm,unimac-mdio"); priv->master_mii_bus = of_mdio_find_bus(dn); if (!priv->master_mii_bus) { - of_node_put(dn); - return -EPROBE_DEFER; + err = -EPROBE_DEFER; + goto err_of_node_put; } - get_device(&priv->master_mii_bus->dev); priv->master_mii_dn = dn; priv->slave_mii_bus = mdiobus_alloc(); if (!priv->slave_mii_bus) { - of_node_put(dn); - return -ENOMEM; + err = -ENOMEM; + goto err_put_master_mii_bus_dev; } priv->slave_mii_bus->priv = priv; @@ -644,11 +643,17 @@ static int bcm_sf2_mdio_register(struct dsa_switch *ds) } err = mdiobus_register(priv->slave_mii_bus); - if (err && dn) { - mdiobus_free(priv->slave_mii_bus); - of_node_put(dn); - } + if (err && dn) + goto err_free_slave_mii_bus; + return 0; + +err_free_slave_mii_bus: + mdiobus_free(priv->slave_mii_bus); +err_put_master_mii_bus_dev: + put_device(&priv->master_mii_bus->dev); +err_of_node_put: + of_node_put(dn); return err; } @@ -656,6 +661,7 @@ static void bcm_sf2_mdio_unregister(struct bcm_sf2_priv *priv) { mdiobus_unregister(priv->slave_mii_bus); mdiobus_free(priv->slave_mii_bus); + put_device(&priv->master_mii_bus->dev); of_node_put(priv->master_mii_dn); } diff --git a/drivers/net/dsa/lan9303_mdio.c b/drivers/net/dsa/lan9303_mdio.c index bbb7032409baa..25c55fba58030 100644 --- a/drivers/net/dsa/lan9303_mdio.c +++ b/drivers/net/dsa/lan9303_mdio.c @@ -32,7 +32,7 @@ static int lan9303_mdio_write(void *ctx, uint32_t reg, uint32_t val) struct lan9303_mdio *sw_dev = (struct lan9303_mdio *)ctx; reg <<= 2; /* reg num to offset */ - mutex_lock(&sw_dev->device->bus->mdio_lock); + mutex_lock_nested(&sw_dev->device->bus->mdio_lock, MDIO_MUTEX_NESTED); lan9303_mdio_real_write(sw_dev->device, reg, val & 0xffff); lan9303_mdio_real_write(sw_dev->device, reg + 2, (val >> 16) & 0xffff); mutex_unlock(&sw_dev->device->bus->mdio_lock); @@ -50,7 +50,7 @@ static int lan9303_mdio_read(void *ctx, uint32_t reg, uint32_t *val) struct lan9303_mdio *sw_dev = (struct lan9303_mdio *)ctx; reg <<= 2; /* reg num to offset */ - mutex_lock(&sw_dev->device->bus->mdio_lock); + mutex_lock_nested(&sw_dev->device->bus->mdio_lock, MDIO_MUTEX_NESTED); *val = lan9303_mdio_real_read(sw_dev->device, reg); *val |= (lan9303_mdio_real_read(sw_dev->device, reg + 2) << 16); mutex_unlock(&sw_dev->device->bus->mdio_lock); diff --git a/drivers/net/dsa/mv88e6xxx/chip.c b/drivers/net/dsa/mv88e6xxx/chip.c index 7e93b72f9b541..30fba1ea933e3 100644 --- a/drivers/net/dsa/mv88e6xxx/chip.c +++ b/drivers/net/dsa/mv88e6xxx/chip.c @@ -2594,14 +2594,16 @@ static void mv88e6xxx_hardware_reset(struct mv88e6xxx_chip *chip) * from the wrong location resulting in the switch booting * to wrong mode and inoperable. */ - mv88e6xxx_g1_wait_eeprom_done(chip); + if (chip->info->ops->get_eeprom) + mv88e6xxx_g2_eeprom_wait(chip); gpiod_set_value_cansleep(gpiod, 1); usleep_range(10000, 20000); gpiod_set_value_cansleep(gpiod, 0); usleep_range(10000, 20000); - mv88e6xxx_g1_wait_eeprom_done(chip); + if (chip->info->ops->get_eeprom) + mv88e6xxx_g2_eeprom_wait(chip); } } diff --git a/drivers/net/dsa/mv88e6xxx/global1.c b/drivers/net/dsa/mv88e6xxx/global1.c index 5848112036b08..964928285782c 100644 --- a/drivers/net/dsa/mv88e6xxx/global1.c +++ b/drivers/net/dsa/mv88e6xxx/global1.c @@ -75,37 +75,6 @@ static int mv88e6xxx_g1_wait_init_ready(struct mv88e6xxx_chip *chip) return mv88e6xxx_g1_wait_bit(chip, MV88E6XXX_G1_STS, bit, 1); } -void mv88e6xxx_g1_wait_eeprom_done(struct mv88e6xxx_chip *chip) -{ - const unsigned long timeout = jiffies + 1 * HZ; - u16 val; - int err; - - /* Wait up to 1 second for the switch to finish reading the - * EEPROM. - */ - while (time_before(jiffies, timeout)) { - err = mv88e6xxx_g1_read(chip, MV88E6XXX_G1_STS, &val); - if (err) { - dev_err(chip->dev, "Error reading status"); - return; - } - - /* If the switch is still resetting, it may not - * respond on the bus, and so MDIO read returns - * 0xffff. Differentiate between that, and waiting for - * the EEPROM to be done by bit 0 being set. - */ - if (val != 0xffff && - val & BIT(MV88E6XXX_G1_STS_IRQ_EEPROM_DONE)) - return; - - usleep_range(1000, 2000); - } - - dev_err(chip->dev, "Timeout waiting for EEPROM done"); -} - /* Offset 0x01: Switch MAC Address Register Bytes 0 & 1 * Offset 0x02: Switch MAC Address Register Bytes 2 & 3 * Offset 0x03: Switch MAC Address Register Bytes 4 & 5 diff --git a/drivers/net/dsa/mv88e6xxx/global1.h b/drivers/net/dsa/mv88e6xxx/global1.h index 4f3dbb015f77b..6f41762eff3e6 100644 --- a/drivers/net/dsa/mv88e6xxx/global1.h +++ b/drivers/net/dsa/mv88e6xxx/global1.h @@ -280,7 +280,6 @@ int mv88e6xxx_g1_set_switch_mac(struct mv88e6xxx_chip *chip, u8 *addr); int mv88e6185_g1_reset(struct mv88e6xxx_chip *chip); int mv88e6352_g1_reset(struct mv88e6xxx_chip *chip); int mv88e6250_g1_reset(struct mv88e6xxx_chip *chip); -void mv88e6xxx_g1_wait_eeprom_done(struct mv88e6xxx_chip *chip); int mv88e6185_g1_ppu_enable(struct mv88e6xxx_chip *chip); int mv88e6185_g1_ppu_disable(struct mv88e6xxx_chip *chip); diff --git a/drivers/net/dsa/mv88e6xxx/global2.c b/drivers/net/dsa/mv88e6xxx/global2.c index ec49939968fac..ac302a935ce69 100644 --- a/drivers/net/dsa/mv88e6xxx/global2.c +++ b/drivers/net/dsa/mv88e6xxx/global2.c @@ -340,7 +340,7 @@ int mv88e6xxx_g2_pot_clear(struct mv88e6xxx_chip *chip) * Offset 0x15: EEPROM Addr (for 8-bit data access) */ -static int mv88e6xxx_g2_eeprom_wait(struct mv88e6xxx_chip *chip) +int mv88e6xxx_g2_eeprom_wait(struct mv88e6xxx_chip *chip) { int bit = __bf_shf(MV88E6XXX_G2_EEPROM_CMD_BUSY); int err; diff --git a/drivers/net/dsa/mv88e6xxx/global2.h b/drivers/net/dsa/mv88e6xxx/global2.h index 89ba09b663a26..f492048db0c13 100644 --- a/drivers/net/dsa/mv88e6xxx/global2.h +++ b/drivers/net/dsa/mv88e6xxx/global2.h @@ -357,6 +357,7 @@ int mv88e6xxx_g2_trunk_clear(struct mv88e6xxx_chip *chip); int mv88e6xxx_g2_device_mapping_write(struct mv88e6xxx_chip *chip, int target, int port); +int mv88e6xxx_g2_eeprom_wait(struct mv88e6xxx_chip *chip); extern const struct mv88e6xxx_irq_ops mv88e6097_watchdog_ops; extern const struct mv88e6xxx_irq_ops mv88e6250_watchdog_ops; diff --git a/drivers/net/dsa/sja1105/sja1105.h b/drivers/net/dsa/sja1105/sja1105.h index 5e5d24e7c02b2..548d585256fbb 100644 --- a/drivers/net/dsa/sja1105/sja1105.h +++ b/drivers/net/dsa/sja1105/sja1105.h @@ -111,6 +111,8 @@ struct sja1105_info { int max_frame_mem; int num_ports; bool multiple_cascade_ports; + /* Every {port, TXQ} has its own CBS shaper */ + bool fixed_cbs_mapping; enum dsa_tag_protocol tag_proto; const struct sja1105_dynamic_table_ops *dyn_ops; const struct sja1105_table_ops *static_ops; diff --git a/drivers/net/dsa/sja1105/sja1105_main.c b/drivers/net/dsa/sja1105/sja1105_main.c index ef4d8d6c2bd7a..493192a8000c8 100644 --- a/drivers/net/dsa/sja1105/sja1105_main.c +++ b/drivers/net/dsa/sja1105/sja1105_main.c @@ -1794,13 +1794,14 @@ static int sja1105_fdb_dump(struct dsa_switch *ds, int port, if (!(l2_lookup.destports & BIT(port))) continue; - /* We need to hide the FDB entry for unknown multicast */ - if (l2_lookup.macaddr == SJA1105_UNKNOWN_MULTICAST && - l2_lookup.mask_macaddr == SJA1105_UNKNOWN_MULTICAST) - continue; - u64_to_ether_addr(l2_lookup.macaddr, macaddr); + /* Hardware FDB is shared for fdb and mdb, "bridge fdb show" + * only wants to see unicast + */ + if (is_multicast_ether_addr(macaddr)) + continue; + /* We need to hide the dsa_8021q VLANs from the user. */ if (!priv->vlan_aware) l2_lookup.vlanid = 0; @@ -2014,11 +2015,36 @@ static void sja1105_bridge_leave(struct dsa_switch *ds, int port, } #define BYTES_PER_KBIT (1000LL / 8) +/* Port 0 (the uC port) does not have CBS shapers */ +#define SJA1110_FIXED_CBS(port, prio) ((((port) - 1) * SJA1105_NUM_TC) + (prio)) + +static int sja1105_find_cbs_shaper(struct sja1105_private *priv, + int port, int prio) +{ + int i; + + if (priv->info->fixed_cbs_mapping) { + i = SJA1110_FIXED_CBS(port, prio); + if (i >= 0 && i < priv->info->num_cbs_shapers) + return i; + + return -1; + } + + for (i = 0; i < priv->info->num_cbs_shapers; i++) + if (priv->cbs[i].port == port && priv->cbs[i].prio == prio) + return i; + + return -1; +} static int sja1105_find_unused_cbs_shaper(struct sja1105_private *priv) { int i; + if (priv->info->fixed_cbs_mapping) + return -1; + for (i = 0; i < priv->info->num_cbs_shapers; i++) if (!priv->cbs[i].idle_slope && !priv->cbs[i].send_slope) return i; @@ -2049,14 +2075,20 @@ static int sja1105_setup_tc_cbs(struct dsa_switch *ds, int port, { struct sja1105_private *priv = ds->priv; struct sja1105_cbs_entry *cbs; + s64 port_transmit_rate_kbps; int index; if (!offload->enable) return sja1105_delete_cbs_shaper(priv, port, offload->queue); - index = sja1105_find_unused_cbs_shaper(priv); - if (index < 0) - return -ENOSPC; + /* The user may be replacing an existing shaper */ + index = sja1105_find_cbs_shaper(priv, port, offload->queue); + if (index < 0) { + /* That isn't the case - see if we can allocate a new one */ + index = sja1105_find_unused_cbs_shaper(priv); + if (index < 0) + return -ENOSPC; + } cbs = &priv->cbs[index]; cbs->port = port; @@ -2066,9 +2098,17 @@ static int sja1105_setup_tc_cbs(struct dsa_switch *ds, int port, */ cbs->credit_hi = offload->hicredit; cbs->credit_lo = abs(offload->locredit); - /* User space is in kbits/sec, hardware in bytes/sec */ - cbs->idle_slope = offload->idleslope * BYTES_PER_KBIT; - cbs->send_slope = abs(offload->sendslope * BYTES_PER_KBIT); + /* User space is in kbits/sec, while the hardware in bytes/sec times + * link speed. Since the given offload->sendslope is good only for the + * current link speed anyway, and user space is likely to reprogram it + * when that changes, don't even bother to track the port's link speed, + * but deduce the port transmit rate from idleslope - sendslope. + */ + port_transmit_rate_kbps = offload->idleslope - offload->sendslope; + cbs->idle_slope = div_s64(offload->idleslope * BYTES_PER_KBIT, + port_transmit_rate_kbps); + cbs->send_slope = div_s64(abs(offload->sendslope * BYTES_PER_KBIT), + port_transmit_rate_kbps); /* Convert the negative values from 64-bit 2's complement * to 32-bit 2's complement (for the case of 0x80000000 whose * negative is still negative). diff --git a/drivers/net/dsa/sja1105/sja1105_spi.c b/drivers/net/dsa/sja1105/sja1105_spi.c index d3c9ad6d39d46..e6b61aef4127c 100644 --- a/drivers/net/dsa/sja1105/sja1105_spi.c +++ b/drivers/net/dsa/sja1105/sja1105_spi.c @@ -781,6 +781,7 @@ const struct sja1105_info sja1110a_info = { .tag_proto = DSA_TAG_PROTO_SJA1110, .can_limit_mcast_flood = true, .multiple_cascade_ports = true, + .fixed_cbs_mapping = true, .ptp_ts_bits = 32, .ptpegr_ts_bytes = 8, .max_frame_mem = SJA1110_MAX_FRAME_MEMORY, @@ -831,6 +832,7 @@ const struct sja1105_info sja1110b_info = { .tag_proto = DSA_TAG_PROTO_SJA1110, .can_limit_mcast_flood = true, .multiple_cascade_ports = true, + .fixed_cbs_mapping = true, .ptp_ts_bits = 32, .ptpegr_ts_bytes = 8, .max_frame_mem = SJA1110_MAX_FRAME_MEMORY, @@ -881,6 +883,7 @@ const struct sja1105_info sja1110c_info = { .tag_proto = DSA_TAG_PROTO_SJA1110, .can_limit_mcast_flood = true, .multiple_cascade_ports = true, + .fixed_cbs_mapping = true, .ptp_ts_bits = 32, .ptpegr_ts_bytes = 8, .max_frame_mem = SJA1110_MAX_FRAME_MEMORY, @@ -931,6 +934,7 @@ const struct sja1105_info sja1110d_info = { .tag_proto = DSA_TAG_PROTO_SJA1110, .can_limit_mcast_flood = true, .multiple_cascade_ports = true, + .fixed_cbs_mapping = true, .ptp_ts_bits = 32, .ptpegr_ts_bytes = 8, .max_frame_mem = SJA1110_MAX_FRAME_MEMORY, diff --git a/drivers/net/ethernet/amazon/ena/ena_netdev.c b/drivers/net/ethernet/amazon/ena/ena_netdev.c index f3673be4fc087..419d920897ef3 100644 --- a/drivers/net/ethernet/amazon/ena/ena_netdev.c +++ b/drivers/net/ethernet/amazon/ena/ena_netdev.c @@ -31,8 +31,6 @@ MODULE_LICENSE("GPL"); #define ENA_MAX_RINGS min_t(unsigned int, ENA_MAX_NUM_IO_QUEUES, num_possible_cpus()) -#define ENA_NAPI_BUDGET 64 - #define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | \ NETIF_MSG_TX_DONE | NETIF_MSG_TX_ERR | NETIF_MSG_RX_ERR) @@ -439,7 +437,7 @@ static int ena_xdp_execute(struct ena_ring *rx_ring, struct xdp_buff *xdp) verdict = ENA_XDP_PASS; break; default: - bpf_warn_invalid_xdp_action(verdict); + bpf_warn_invalid_xdp_action(rx_ring->netdev, xdp_prog, verdict); xdp_stat = &rx_ring->rx_stats.xdp_invalid; verdict = ENA_XDP_DROP; } @@ -1788,6 +1786,9 @@ static int ena_clean_rx_irq(struct ena_ring *rx_ring, struct napi_struct *napi, return work_done; error: + if (xdp_flags & ENA_XDP_REDIRECT) + xdp_do_flush(); + adapter = netdev_priv(rx_ring->netdev); if (rc == -ENOSPC) { @@ -2300,7 +2301,7 @@ static void ena_init_napi_in_range(struct ena_adapter *adapter, netif_napi_add(adapter->netdev, &napi->napi, ENA_IS_XDP_INDEX(adapter, i) ? ena_xdp_io_poll : ena_io_poll, - ENA_NAPI_BUDGET); + NAPI_POLL_WEIGHT); if (!ENA_IS_XDP_INDEX(adapter, i)) { napi->rx_ring = &adapter->rx_ring[i]; diff --git a/drivers/net/ethernet/amazon/ena/ena_netdev.h b/drivers/net/ethernet/amazon/ena/ena_netdev.h index bf2a39c91c00d..4d2705eb79da4 100644 --- a/drivers/net/ethernet/amazon/ena/ena_netdev.h +++ b/drivers/net/ethernet/amazon/ena/ena_netdev.h @@ -14,6 +14,7 @@ #include #include #include +#include #include "ena_com.h" #include "ena_eth_com.h" diff --git a/drivers/net/ethernet/amd/xgbe/xgbe-drv.c b/drivers/net/ethernet/amd/xgbe/xgbe-drv.c index 555db1871ec9f..8d823bc147001 100644 --- a/drivers/net/ethernet/amd/xgbe/xgbe-drv.c +++ b/drivers/net/ethernet/amd/xgbe/xgbe-drv.c @@ -682,10 +682,24 @@ static void xgbe_service(struct work_struct *work) static void xgbe_service_timer(struct timer_list *t) { struct xgbe_prv_data *pdata = from_timer(pdata, t, service_timer); + struct xgbe_channel *channel; + unsigned int i; queue_work(pdata->dev_workqueue, &pdata->service_work); mod_timer(&pdata->service_timer, jiffies + HZ); + + if (!pdata->tx_usecs) + return; + + for (i = 0; i < pdata->channel_count; i++) { + channel = pdata->channel[i]; + if (!channel->tx_ring || channel->tx_timer_active) + break; + channel->tx_timer_active = 1; + mod_timer(&channel->tx_timer, + jiffies + usecs_to_jiffies(pdata->tx_usecs)); + } } static void xgbe_init_timers(struct xgbe_prv_data *pdata) diff --git a/drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c b/drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c index bafc51c34e0be..5bb7b2210b811 100644 --- a/drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c +++ b/drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c @@ -314,10 +314,15 @@ static int xgbe_get_link_ksettings(struct net_device *netdev, cmd->base.phy_address = pdata->phy.address; - cmd->base.autoneg = pdata->phy.autoneg; - cmd->base.speed = pdata->phy.speed; - cmd->base.duplex = pdata->phy.duplex; + if (netif_carrier_ok(netdev)) { + cmd->base.speed = pdata->phy.speed; + cmd->base.duplex = pdata->phy.duplex; + } else { + cmd->base.speed = SPEED_UNKNOWN; + cmd->base.duplex = DUPLEX_UNKNOWN; + } + cmd->base.autoneg = pdata->phy.autoneg; cmd->base.port = PORT_NONE; XGBE_LM_COPY(cmd, supported, lks, supported); diff --git a/drivers/net/ethernet/amd/xgbe/xgbe-mdio.c b/drivers/net/ethernet/amd/xgbe/xgbe-mdio.c index ca7372369b3e6..60be836b294bb 100644 --- a/drivers/net/ethernet/amd/xgbe/xgbe-mdio.c +++ b/drivers/net/ethernet/amd/xgbe/xgbe-mdio.c @@ -1178,7 +1178,19 @@ static int xgbe_phy_config_fixed(struct xgbe_prv_data *pdata) if (pdata->phy.duplex != DUPLEX_FULL) return -EINVAL; - xgbe_set_mode(pdata, mode); + /* Force the mode change for SFI in Fixed PHY config. + * Fixed PHY configs needs PLL to be enabled while doing mode set. + * When the SFP module isn't connected during boot, driver assumes + * AN is ON and attempts autonegotiation. However, if the connected + * SFP comes up in Fixed PHY config, the link will not come up as + * PLL isn't enabled while the initial mode set command is issued. + * So, force the mode change for SFI in Fixed PHY configuration to + * fix link issues. + */ + if (mode == XGBE_MODE_SFI) + xgbe_change_mode(pdata, mode); + else + xgbe_set_mode(pdata, mode); return 0; } diff --git a/drivers/net/ethernet/atheros/alx/ethtool.c b/drivers/net/ethernet/atheros/alx/ethtool.c index b716adacd8159..7f6b69a523676 100644 --- a/drivers/net/ethernet/atheros/alx/ethtool.c +++ b/drivers/net/ethernet/atheros/alx/ethtool.c @@ -292,9 +292,8 @@ static void alx_get_ethtool_stats(struct net_device *netdev, spin_lock(&alx->stats_lock); alx_update_hw_stats(hw); - BUILD_BUG_ON(sizeof(hw->stats) - offsetof(struct alx_hw_stats, rx_ok) < - ALX_NUM_STATS * sizeof(u64)); - memcpy(data, &hw->stats.rx_ok, ALX_NUM_STATS * sizeof(u64)); + BUILD_BUG_ON(sizeof(hw->stats) != ALX_NUM_STATS * sizeof(u64)); + memcpy(data, &hw->stats, sizeof(hw->stats)); spin_unlock(&alx->stats_lock); } diff --git a/drivers/net/ethernet/atheros/atl1c/atl1c.h b/drivers/net/ethernet/atheros/atl1c/atl1c.h index 43d821fe7a542..63ba64dbb7310 100644 --- a/drivers/net/ethernet/atheros/atl1c/atl1c.h +++ b/drivers/net/ethernet/atheros/atl1c/atl1c.h @@ -504,15 +504,12 @@ struct atl1c_rrd_ring { u16 next_to_use; u16 next_to_clean; struct napi_struct napi; - struct page *rx_page; - unsigned int rx_page_offset; }; /* board specific private data structure */ struct atl1c_adapter { struct net_device *netdev; struct pci_dev *pdev; - unsigned int rx_frag_size; struct atl1c_hw hw; struct atl1c_hw_stats hw_stats; struct mii_if_info mii; /* MII interface info */ diff --git a/drivers/net/ethernet/atheros/atl1c/atl1c_main.c b/drivers/net/ethernet/atheros/atl1c/atl1c_main.c index 5cbd815c737e7..c6f621c0ca836 100644 --- a/drivers/net/ethernet/atheros/atl1c/atl1c_main.c +++ b/drivers/net/ethernet/atheros/atl1c/atl1c_main.c @@ -493,15 +493,10 @@ static int atl1c_set_mac_addr(struct net_device *netdev, void *p) static void atl1c_set_rxbufsize(struct atl1c_adapter *adapter, struct net_device *dev) { - unsigned int head_size; int mtu = dev->mtu; adapter->rx_buffer_len = mtu > AT_RX_BUF_SIZE ? roundup(mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN, 8) : AT_RX_BUF_SIZE; - - head_size = SKB_DATA_ALIGN(adapter->rx_buffer_len + NET_SKB_PAD + NET_IP_ALIGN) + - SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); - adapter->rx_frag_size = roundup_pow_of_two(head_size); } static netdev_features_t atl1c_fix_features(struct net_device *netdev, @@ -974,7 +969,6 @@ static void atl1c_init_ring_ptrs(struct atl1c_adapter *adapter) static void atl1c_free_ring_resources(struct atl1c_adapter *adapter) { struct pci_dev *pdev = adapter->pdev; - int i; dma_free_coherent(&pdev->dev, adapter->ring_header.size, adapter->ring_header.desc, adapter->ring_header.dma); @@ -987,12 +981,6 @@ static void atl1c_free_ring_resources(struct atl1c_adapter *adapter) kfree(adapter->tpd_ring[0].buffer_info); adapter->tpd_ring[0].buffer_info = NULL; } - for (i = 0; i < adapter->rx_queue_count; ++i) { - if (adapter->rrd_ring[i].rx_page) { - put_page(adapter->rrd_ring[i].rx_page); - adapter->rrd_ring[i].rx_page = NULL; - } - } } /** @@ -1764,48 +1752,11 @@ static inline void atl1c_rx_checksum(struct atl1c_adapter *adapter, skb_checksum_none_assert(skb); } -static struct sk_buff *atl1c_alloc_skb(struct atl1c_adapter *adapter, - u32 queue, bool napi_mode) -{ - struct atl1c_rrd_ring *rrd_ring = &adapter->rrd_ring[queue]; - struct sk_buff *skb; - struct page *page; - - if (adapter->rx_frag_size > PAGE_SIZE) { - if (likely(napi_mode)) - return napi_alloc_skb(&rrd_ring->napi, - adapter->rx_buffer_len); - else - return netdev_alloc_skb_ip_align(adapter->netdev, - adapter->rx_buffer_len); - } - - page = rrd_ring->rx_page; - if (!page) { - page = alloc_page(GFP_ATOMIC); - if (unlikely(!page)) - return NULL; - rrd_ring->rx_page = page; - rrd_ring->rx_page_offset = 0; - } - - skb = build_skb(page_address(page) + rrd_ring->rx_page_offset, - adapter->rx_frag_size); - if (likely(skb)) { - skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN); - rrd_ring->rx_page_offset += adapter->rx_frag_size; - if (rrd_ring->rx_page_offset >= PAGE_SIZE) - rrd_ring->rx_page = NULL; - else - get_page(page); - } - return skb; -} - static int atl1c_alloc_rx_buffer(struct atl1c_adapter *adapter, u32 queue, bool napi_mode) { struct atl1c_rfd_ring *rfd_ring = &adapter->rfd_ring[queue]; + struct atl1c_rrd_ring *rrd_ring = &adapter->rrd_ring[queue]; struct pci_dev *pdev = adapter->pdev; struct atl1c_buffer *buffer_info, *next_info; struct sk_buff *skb; @@ -1824,13 +1775,27 @@ static int atl1c_alloc_rx_buffer(struct atl1c_adapter *adapter, u32 queue, while (next_info->flags & ATL1C_BUFFER_FREE) { rfd_desc = ATL1C_RFD_DESC(rfd_ring, rfd_next_to_use); - skb = atl1c_alloc_skb(adapter, queue, napi_mode); + /* When DMA RX address is set to something like + * 0x....fc0, it will be very likely to cause DMA + * RFD overflow issue. + * + * To work around it, we apply rx skb with 64 bytes + * longer space, and offset the address whenever + * 0x....fc0 is detected. + */ + if (likely(napi_mode)) + skb = napi_alloc_skb(&rrd_ring->napi, adapter->rx_buffer_len + 64); + else + skb = netdev_alloc_skb(adapter->netdev, adapter->rx_buffer_len + 64); if (unlikely(!skb)) { if (netif_msg_rx_err(adapter)) dev_warn(&pdev->dev, "alloc rx buffer failed\n"); break; } + if (((unsigned long)skb->data & 0xfff) == 0xfc0) + skb_reserve(skb, 64); + /* * Make buffer alignment 2 beyond a 16 byte boundary * this will result in a 16 byte aligned IP header after @@ -2104,8 +2069,11 @@ static int atl1c_tso_csum(struct atl1c_adapter *adapter, real_len = (((unsigned char *)ip_hdr(skb) - skb->data) + ntohs(ip_hdr(skb)->tot_len)); - if (real_len < skb->len) - pskb_trim(skb, real_len); + if (real_len < skb->len) { + err = pskb_trim(skb, real_len); + if (err) + return err; + } hdr_len = (skb_transport_offset(skb) + tcp_hdrlen(skb)); if (unlikely(skb->len == hdr_len)) { diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c index 553f3de939574..9c26c46771f5e 100644 --- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c +++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c @@ -14317,11 +14317,16 @@ static void bnx2x_io_resume(struct pci_dev *pdev) bp->fw_seq = SHMEM_RD(bp, func_mb[BP_FW_MB_IDX(bp)].drv_mb_header) & DRV_MSG_SEQ_NUMBER_MASK; - if (netif_running(dev)) - bnx2x_nic_load(bp, LOAD_NORMAL); + if (netif_running(dev)) { + if (bnx2x_nic_load(bp, LOAD_NORMAL)) { + netdev_err(bp->dev, "Error during driver initialization, try unloading/reloading the driver\n"); + goto done; + } + } netif_device_attach(dev); +done: rtnl_unlock(); } diff --git a/drivers/net/ethernet/broadcom/bnxt/bnxt.c b/drivers/net/ethernet/broadcom/bnxt/bnxt.c index 931bb40ac05b5..4cb22e4060520 100644 --- a/drivers/net/ethernet/broadcom/bnxt/bnxt.c +++ b/drivers/net/ethernet/broadcom/bnxt/bnxt.c @@ -2520,6 +2520,7 @@ static int bnxt_poll_nitroa0(struct napi_struct *napi, int budget) struct rx_cmp_ext *rxcmp1; u32 cp_cons, tmp_raw_cons; u32 raw_cons = cpr->cp_raw_cons; + bool flush_xdp = false; u32 rx_pkts = 0; u8 event = 0; @@ -2554,6 +2555,8 @@ static int bnxt_poll_nitroa0(struct napi_struct *napi, int budget) rx_pkts++; else if (rc == -EBUSY) /* partial completion */ break; + if (event & BNXT_REDIRECT_EVENT) + flush_xdp = true; } else if (unlikely(TX_CMP_TYPE(txcmp) == CMPL_BASE_TYPE_HWRM_DONE)) { bnxt_hwrm_handler(bp, txcmp); @@ -2573,6 +2576,8 @@ static int bnxt_poll_nitroa0(struct napi_struct *napi, int budget) if (event & BNXT_AGG_EVENT) bnxt_db_write(bp, &rxr->rx_agg_db, rxr->rx_agg_prod); + if (flush_xdp) + xdp_do_flush(); if (!bnxt_has_work(bp, cpr) && rx_pkts < budget) { napi_complete_done(napi, rx_pkts); diff --git a/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c b/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c index 1471b6130a2b9..b3473883eae6b 100644 --- a/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c +++ b/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c @@ -2075,6 +2075,7 @@ int bnxt_init_tc(struct bnxt *bp) rhashtable_destroy(&tc_info->flow_table); free_tc_info: kfree(tc_info); + bp->tc_info = NULL; return rc; } diff --git a/drivers/net/ethernet/broadcom/bnxt/bnxt_xdp.c b/drivers/net/ethernet/broadcom/bnxt/bnxt_xdp.c index 148b58f3468b3..03b1d6c045048 100644 --- a/drivers/net/ethernet/broadcom/bnxt/bnxt_xdp.c +++ b/drivers/net/ethernet/broadcom/bnxt/bnxt_xdp.c @@ -197,7 +197,7 @@ bool bnxt_rx_xdp(struct bnxt *bp, struct bnxt_rx_ring_info *rxr, u16 cons, *event |= BNXT_REDIRECT_EVENT; break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(bp->dev, xdp_prog, act); fallthrough; case XDP_ABORTED: trace_xdp_exception(bp->dev, xdp_prog, act); diff --git a/drivers/net/ethernet/broadcom/tg3.c b/drivers/net/ethernet/broadcom/tg3.c index 70b1a855273e4..fc487a6f050a2 100644 --- a/drivers/net/ethernet/broadcom/tg3.c +++ b/drivers/net/ethernet/broadcom/tg3.c @@ -6854,7 +6854,7 @@ static int tg3_rx(struct tg3_napi *tnapi, int budget) desc_idx, *post_ptr); drop_it_no_recycle: /* Other statistics kept track of by card. */ - tp->rx_dropped++; + tnapi->rx_dropped++; goto next_pkt; } @@ -7880,8 +7880,10 @@ static int tg3_tso_bug(struct tg3 *tp, struct tg3_napi *tnapi, segs = skb_gso_segment(skb, tp->dev->features & ~(NETIF_F_TSO | NETIF_F_TSO6)); - if (IS_ERR(segs) || !segs) + if (IS_ERR(segs) || !segs) { + tnapi->tx_dropped++; goto tg3_tso_bug_end; + } skb_list_walk_safe(segs, seg, next) { skb_mark_not_on_list(seg); @@ -8152,7 +8154,7 @@ static netdev_tx_t tg3_start_xmit(struct sk_buff *skb, struct net_device *dev) drop: dev_kfree_skb_any(skb); drop_nofree: - tp->tx_dropped++; + tnapi->tx_dropped++; return NETDEV_TX_OK; } @@ -9331,7 +9333,7 @@ static void __tg3_set_rx_mode(struct net_device *); /* tp->lock is held. */ static int tg3_halt(struct tg3 *tp, int kind, bool silent) { - int err; + int err, i; tg3_stop_fw(tp); @@ -9352,6 +9354,13 @@ static int tg3_halt(struct tg3 *tp, int kind, bool silent) /* And make sure the next sample is new data */ memset(tp->hw_stats, 0, sizeof(struct tg3_hw_stats)); + + for (i = 0; i < TG3_IRQ_MAX_VECS; ++i) { + struct tg3_napi *tnapi = &tp->napi[i]; + + tnapi->rx_dropped = 0; + tnapi->tx_dropped = 0; + } } return err; @@ -11906,6 +11915,9 @@ static void tg3_get_nstats(struct tg3 *tp, struct rtnl_link_stats64 *stats) { struct rtnl_link_stats64 *old_stats = &tp->net_stats_prev; struct tg3_hw_stats *hw_stats = tp->hw_stats; + unsigned long rx_dropped; + unsigned long tx_dropped; + int i; stats->rx_packets = old_stats->rx_packets + get_stat64(&hw_stats->rx_ucast_packets) + @@ -11952,8 +11964,26 @@ static void tg3_get_nstats(struct tg3 *tp, struct rtnl_link_stats64 *stats) stats->rx_missed_errors = old_stats->rx_missed_errors + get_stat64(&hw_stats->rx_discards); - stats->rx_dropped = tp->rx_dropped; - stats->tx_dropped = tp->tx_dropped; + /* Aggregate per-queue counters. The per-queue counters are updated + * by a single writer, race-free. The result computed by this loop + * might not be 100% accurate (counters can be updated in the middle of + * the loop) but the next tg3_get_nstats() will recompute the current + * value so it is acceptable. + * + * Note that these counters wrap around at 4G on 32bit machines. + */ + rx_dropped = (unsigned long)(old_stats->rx_dropped); + tx_dropped = (unsigned long)(old_stats->tx_dropped); + + for (i = 0; i < tp->irq_cnt; i++) { + struct tg3_napi *tnapi = &tp->napi[i]; + + rx_dropped += tnapi->rx_dropped; + tx_dropped += tnapi->tx_dropped; + } + + stats->rx_dropped = rx_dropped; + stats->tx_dropped = tx_dropped; } static int tg3_get_regs_len(struct net_device *dev) @@ -18088,7 +18118,8 @@ static void tg3_shutdown(struct pci_dev *pdev) if (netif_running(dev)) dev_close(dev); - tg3_power_down(tp); + if (system_state == SYSTEM_POWER_OFF) + tg3_power_down(tp); rtnl_unlock(); diff --git a/drivers/net/ethernet/broadcom/tg3.h b/drivers/net/ethernet/broadcom/tg3.h index 1000c894064f0..8d753f8c5b065 100644 --- a/drivers/net/ethernet/broadcom/tg3.h +++ b/drivers/net/ethernet/broadcom/tg3.h @@ -3018,6 +3018,7 @@ struct tg3_napi { u16 *rx_rcb_prod_idx; struct tg3_rx_prodring_set prodring; struct tg3_rx_buffer_desc *rx_rcb; + unsigned long rx_dropped; u32 tx_prod ____cacheline_aligned; u32 tx_cons; @@ -3026,6 +3027,7 @@ struct tg3_napi { u32 prodmbox; struct tg3_tx_buffer_desc *tx_ring; struct tg3_tx_ring_info *tx_buffers; + unsigned long tx_dropped; dma_addr_t status_mapping; dma_addr_t rx_rcb_mapping; @@ -3219,8 +3221,6 @@ struct tg3 { /* begin "everything else" cacheline(s) section */ - unsigned long rx_dropped; - unsigned long tx_dropped; struct rtnl_link_stats64 net_stats_prev; struct tg3_ethtool_stats estats_prev; diff --git a/drivers/net/ethernet/brocade/bna/bnad.c b/drivers/net/ethernet/brocade/bna/bnad.c index b1947fd9a07cc..0347c9d3aff32 100644 --- a/drivers/net/ethernet/brocade/bna/bnad.c +++ b/drivers/net/ethernet/brocade/bna/bnad.c @@ -1881,7 +1881,6 @@ bnad_napi_poll_rx(struct napi_struct *napi, int budget) return rcvd; } -#define BNAD_NAPI_POLL_QUOTA 64 static void bnad_napi_add(struct bnad *bnad, u32 rx_id) { @@ -1892,7 +1891,7 @@ bnad_napi_add(struct bnad *bnad, u32 rx_id) for (i = 0; i < bnad->num_rxp_per_rx; i++) { rx_ctrl = &bnad->rx_info[rx_id].rx_ctrl[i]; netif_napi_add(bnad->netdev, &rx_ctrl->napi, - bnad_napi_poll_rx, BNAD_NAPI_POLL_QUOTA); + bnad_napi_poll_rx, NAPI_POLL_WEIGHT); } } diff --git a/drivers/net/ethernet/cavium/thunder/nicvf_main.c b/drivers/net/ethernet/cavium/thunder/nicvf_main.c index 8418797be205e..0fb7775d0f412 100644 --- a/drivers/net/ethernet/cavium/thunder/nicvf_main.c +++ b/drivers/net/ethernet/cavium/thunder/nicvf_main.c @@ -590,7 +590,7 @@ static inline bool nicvf_xdp_rx(struct nicvf *nic, struct bpf_prog *prog, nicvf_xdp_sq_append_pkt(nic, sq, (u64)xdp.data, dma_addr, len); return true; default: - bpf_warn_invalid_xdp_action(action); + bpf_warn_invalid_xdp_action(nic->netdev, prog, action); fallthrough; case XDP_ABORTED: trace_xdp_exception(nic->netdev, prog, action); diff --git a/drivers/net/ethernet/cavium/thunder/nicvf_queues.c b/drivers/net/ethernet/cavium/thunder/nicvf_queues.c index 50bbe79fb93df..4367edbdd5797 100644 --- a/drivers/net/ethernet/cavium/thunder/nicvf_queues.c +++ b/drivers/net/ethernet/cavium/thunder/nicvf_queues.c @@ -10,6 +10,7 @@ #include #include #include +#include #include "nic_reg.h" #include "nic.h" diff --git a/drivers/net/ethernet/chelsio/cxgb4/t4_hw.c b/drivers/net/ethernet/chelsio/cxgb4/t4_hw.c index b1c9f65ab10f6..c99f5920c957c 100644 --- a/drivers/net/ethernet/chelsio/cxgb4/t4_hw.c +++ b/drivers/net/ethernet/chelsio/cxgb4/t4_hw.c @@ -3816,6 +3816,8 @@ int t4_load_phy_fw(struct adapter *adap, int win, FW_PARAMS_PARAM_Z_V(FW_PARAMS_PARAM_DEV_PHYFW_DOWNLOAD)); ret = t4_set_params_timeout(adap, adap->mbox, adap->pf, 0, 1, ¶m, &val, 30000); + if (ret) + return ret; /* If we have version number support, then check to see that the new * firmware got loaded properly. diff --git a/drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_cm.c b/drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_cm.c index ddfe9208529a5..65d4a39634be4 100644 --- a/drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_cm.c +++ b/drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_cm.c @@ -2260,7 +2260,7 @@ static void chtls_rx_ack(struct sock *sk, struct sk_buff *skb) if (tp->snd_una != snd_una) { tp->snd_una = snd_una; - tp->rcv_tstamp = tcp_time_stamp(tp); + tp->rcv_tstamp = tcp_jiffies32; if (tp->snd_una == tp->snd_nxt && !csk_flag_nochk(csk, CSK_TX_FAILOVER)) csk_reset_flag(csk, CSK_TX_WAIT_IDLE); diff --git a/drivers/net/ethernet/cortina/gemini.c b/drivers/net/ethernet/cortina/gemini.c index 8361faf03e429..675c6dda45e24 100644 --- a/drivers/net/ethernet/cortina/gemini.c +++ b/drivers/net/ethernet/cortina/gemini.c @@ -68,7 +68,6 @@ MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)"); #define DEFAULT_GMAC_RXQ_ORDER 9 #define DEFAULT_GMAC_TXQ_ORDER 8 #define DEFAULT_RX_BUF_ORDER 11 -#define DEFAULT_NAPI_WEIGHT 64 #define TX_MAX_FRAGS 16 #define TX_QUEUE_NUM 1 /* max: 6 */ #define RX_MAX_ALLOC_ORDER 2 @@ -433,8 +432,8 @@ static const struct gmac_max_framelen gmac_maxlens[] = { .val = CONFIG0_MAXLEN_1536, }, { - .max_l3_len = 1542, - .val = CONFIG0_MAXLEN_1542, + .max_l3_len = 1548, + .val = CONFIG0_MAXLEN_1548, }, { .max_l3_len = 9212, @@ -1146,6 +1145,7 @@ static int gmac_map_tx_bufs(struct net_device *netdev, struct sk_buff *skb, dma_addr_t mapping; unsigned short mtu; void *buffer; + int ret; mtu = ETH_HLEN; mtu += netdev->mtu; @@ -1160,9 +1160,30 @@ static int gmac_map_tx_bufs(struct net_device *netdev, struct sk_buff *skb, word3 |= mtu; } - if (skb->ip_summed != CHECKSUM_NONE) { + if (skb->len >= ETH_FRAME_LEN) { + /* Hardware offloaded checksumming isn't working on frames + * bigger than 1514 bytes. A hypothesis about this is that the + * checksum buffer is only 1518 bytes, so when the frames get + * bigger they get truncated, or the last few bytes get + * overwritten by the FCS. + * + * Just use software checksumming and bypass on bigger frames. + */ + if (skb->ip_summed == CHECKSUM_PARTIAL) { + ret = skb_checksum_help(skb); + if (ret) + return ret; + } + word1 |= TSS_BYPASS_BIT; + } else if (skb->ip_summed == CHECKSUM_PARTIAL) { int tcp = 0; + /* We do not switch off the checksumming on non TCP/UDP + * frames: as is shown from tests, the checksumming engine + * is smart enough to see that a frame is not actually TCP + * or UDP and then just pass it through without any changes + * to the frame. + */ if (skb->protocol == htons(ETH_P_IP)) { word1 |= TSS_IP_CHKSUM_BIT; tcp = ip_hdr(skb)->protocol == IPPROTO_TCP; @@ -1979,15 +2000,6 @@ static int gmac_change_mtu(struct net_device *netdev, int new_mtu) return 0; } -static netdev_features_t gmac_fix_features(struct net_device *netdev, - netdev_features_t features) -{ - if (netdev->mtu + ETH_HLEN + VLAN_HLEN > MTU_SIZE_BIT_MASK) - features &= ~GMAC_OFFLOAD_FEATURES; - - return features; -} - static int gmac_set_features(struct net_device *netdev, netdev_features_t features) { @@ -2209,7 +2221,6 @@ static const struct net_device_ops gmac_351x_ops = { .ndo_set_mac_address = gmac_set_mac_address, .ndo_get_stats64 = gmac_get_stats64, .ndo_change_mtu = gmac_change_mtu, - .ndo_fix_features = gmac_fix_features, .ndo_set_features = gmac_set_features, }; @@ -2459,15 +2470,15 @@ static int gemini_ethernet_port_probe(struct platform_device *pdev) netdev->hw_features = GMAC_OFFLOAD_FEATURES; netdev->features |= GMAC_OFFLOAD_FEATURES | NETIF_F_GRO; - /* We can handle jumbo frames up to 10236 bytes so, let's accept - * payloads of 10236 bytes minus VLAN and ethernet header + /* We can receive jumbo frames up to 10236 bytes but only + * transmit 2047 bytes so, let's accept payloads of 2047 + * bytes minus VLAN and ethernet header */ netdev->min_mtu = ETH_MIN_MTU; - netdev->max_mtu = 10236 - VLAN_ETH_HLEN; + netdev->max_mtu = MTU_SIZE_BIT_MASK - VLAN_ETH_HLEN; port->freeq_refill = 0; - netif_napi_add(netdev, &port->napi, gmac_napi_poll, - DEFAULT_NAPI_WEIGHT); + netif_napi_add(netdev, &port->napi, gmac_napi_poll, NAPI_POLL_WEIGHT); if (is_valid_ether_addr((void *)port->mac_addr)) { memcpy(netdev->dev_addr, port->mac_addr, ETH_ALEN); diff --git a/drivers/net/ethernet/cortina/gemini.h b/drivers/net/ethernet/cortina/gemini.h index 9fdf77d5eb374..24bb989981f23 100644 --- a/drivers/net/ethernet/cortina/gemini.h +++ b/drivers/net/ethernet/cortina/gemini.h @@ -502,7 +502,7 @@ union gmac_txdesc_3 { #define SOF_BIT 0x80000000 #define EOF_BIT 0x40000000 #define EOFIE_BIT BIT(29) -#define MTU_SIZE_BIT_MASK 0x1fff +#define MTU_SIZE_BIT_MASK 0x7ff /* Max MTU 2047 bytes */ /* GMAC Tx Descriptor */ struct gmac_txdesc { @@ -787,7 +787,7 @@ union gmac_config0 { #define CONFIG0_MAXLEN_1536 0 #define CONFIG0_MAXLEN_1518 1 #define CONFIG0_MAXLEN_1522 2 -#define CONFIG0_MAXLEN_1542 3 +#define CONFIG0_MAXLEN_1548 3 #define CONFIG0_MAXLEN_9k 4 /* 9212 */ #define CONFIG0_MAXLEN_10k 5 /* 10236 */ #define CONFIG0_MAXLEN_1518__6 6 diff --git a/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c b/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c index fe5fc2b3406f9..d8ee6da5c6886 100644 --- a/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c +++ b/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c @@ -2623,7 +2623,7 @@ static u32 dpaa_run_xdp(struct dpaa_priv *priv, struct qm_fd *fd, void *vaddr, } break; default: - bpf_warn_invalid_xdp_action(xdp_act); + bpf_warn_invalid_xdp_action(priv->net_dev, xdp_prog, xdp_act); fallthrough; case XDP_ABORTED: trace_xdp_exception(priv->net_dev, xdp_prog, xdp_act); diff --git a/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c b/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c index c48d410936517..be2e667c26f17 100644 --- a/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c +++ b/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c @@ -374,7 +374,7 @@ static u32 dpaa2_eth_run_xdp(struct dpaa2_eth_priv *priv, dpaa2_eth_xdp_enqueue(priv, ch, fd, vaddr, rx_fq->flowid); break; default: - bpf_warn_invalid_xdp_action(xdp_act); + bpf_warn_invalid_xdp_action(priv->net_dev, xdp_prog, xdp_act); fallthrough; case XDP_ABORTED: trace_xdp_exception(priv->net_dev, xdp_prog, xdp_act); @@ -952,14 +952,12 @@ static int dpaa2_eth_build_single_fd(struct dpaa2_eth_priv *priv, dma_addr_t addr; buffer_start = skb->data - dpaa2_eth_needed_headroom(skb); - - /* If there's enough room to align the FD address, do it. - * It will help hardware optimize accesses. - */ aligned_start = PTR_ALIGN(buffer_start - DPAA2_ETH_TX_BUF_ALIGN, DPAA2_ETH_TX_BUF_ALIGN); if (aligned_start >= skb->head) buffer_start = aligned_start; + else + return -ENOMEM; /* Store a backpointer to the skb at the beginning of the buffer * (in the private data area) such that we can release it @@ -4446,6 +4444,8 @@ static int dpaa2_eth_probe(struct fsl_mc_device *dpni_dev) if (err) goto err_dl_port_add; + net_dev->needed_headroom = DPAA2_ETH_SWA_SIZE + DPAA2_ETH_TX_BUF_ALIGN; + err = register_netdev(net_dev); if (err < 0) { dev_err(dev, "register_netdev() failed\n"); diff --git a/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.h b/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.h index cdb623d5f2c1a..67fd926331fed 100644 --- a/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.h +++ b/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.h @@ -670,7 +670,7 @@ static inline bool dpaa2_eth_rx_pause_enabled(u64 link_options) static inline unsigned int dpaa2_eth_needed_headroom(struct sk_buff *skb) { - unsigned int headroom = DPAA2_ETH_SWA_SIZE; + unsigned int headroom = DPAA2_ETH_SWA_SIZE + DPAA2_ETH_TX_BUF_ALIGN; /* If we don't have an skb (e.g. XDP buffer), we only need space for * the software annotation area diff --git a/drivers/net/ethernet/freescale/enetc/enetc.c b/drivers/net/ethernet/freescale/enetc/enetc.c index e16bd2b7692f3..ea9993834deb8 100644 --- a/drivers/net/ethernet/freescale/enetc/enetc.c +++ b/drivers/net/ethernet/freescale/enetc/enetc.c @@ -1273,7 +1273,7 @@ static int enetc_clean_rx_ring_xdp(struct enetc_bdr *rx_ring, switch (xdp_act) { default: - bpf_warn_invalid_xdp_action(xdp_act); + bpf_warn_invalid_xdp_action(rx_ring->ndev, prog, xdp_act); fallthrough; case XDP_ABORTED: trace_xdp_exception(rx_ring->ndev, prog, xdp_act); diff --git a/drivers/net/ethernet/google/gve/gve_main.c b/drivers/net/ethernet/google/gve/gve_main.c index c0ea1b185e1bd..4327d66878976 100644 --- a/drivers/net/ethernet/google/gve/gve_main.c +++ b/drivers/net/ethernet/google/gve/gve_main.c @@ -139,7 +139,7 @@ static int gve_alloc_stats_report(struct gve_priv *priv) rx_stats_num = (GVE_RX_STATS_REPORT_NUM + NIC_RX_STATS_REPORT_NUM) * priv->rx_cfg.num_queues; priv->stats_report_len = struct_size(priv->stats_report, stats, - tx_stats_num + rx_stats_num); + size_add(tx_stats_num, rx_stats_num)); priv->stats_report = dma_alloc_coherent(&priv->pdev->dev, priv->stats_report_len, &priv->stats_report_bus, GFP_KERNEL); diff --git a/drivers/net/ethernet/google/gve/gve_rx_dqo.c b/drivers/net/ethernet/google/gve/gve_rx_dqo.c index 7b18b4fd9e548..d947c2c334128 100644 --- a/drivers/net/ethernet/google/gve/gve_rx_dqo.c +++ b/drivers/net/ethernet/google/gve/gve_rx_dqo.c @@ -157,7 +157,7 @@ static int gve_alloc_page_dqo(struct gve_priv *priv, int err; err = gve_alloc_page(priv, &priv->pdev->dev, &buf_state->page_info.page, - &buf_state->addr, DMA_FROM_DEVICE, GFP_KERNEL); + &buf_state->addr, DMA_FROM_DEVICE, GFP_ATOMIC); if (err) return err; diff --git a/drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.c b/drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.c index f41379de21865..ec9a02495df47 100644 --- a/drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.c +++ b/drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.c @@ -66,6 +66,27 @@ static enum mac_mode hns_get_enet_interface(const struct hns_mac_cb *mac_cb) } } +static u32 hns_mac_link_anti_shake(struct mac_driver *mac_ctrl_drv) +{ +#define HNS_MAC_LINK_WAIT_TIME 5 +#define HNS_MAC_LINK_WAIT_CNT 40 + + u32 link_status = 0; + int i; + + if (!mac_ctrl_drv->get_link_status) + return link_status; + + for (i = 0; i < HNS_MAC_LINK_WAIT_CNT; i++) { + msleep(HNS_MAC_LINK_WAIT_TIME); + mac_ctrl_drv->get_link_status(mac_ctrl_drv, &link_status); + if (!link_status) + break; + } + + return link_status; +} + void hns_mac_get_link_status(struct hns_mac_cb *mac_cb, u32 *link_status) { struct mac_driver *mac_ctrl_drv; @@ -83,6 +104,14 @@ void hns_mac_get_link_status(struct hns_mac_cb *mac_cb, u32 *link_status) &sfp_prsnt); if (!ret) *link_status = *link_status && sfp_prsnt; + + /* for FIBER port, it may have a fake link up. + * when the link status changes from down to up, we need to do + * anti-shake. the anti-shake time is base on tests. + * only FIBER port need to do this. + */ + if (*link_status && !mac_cb->link) + *link_status = hns_mac_link_anti_shake(mac_ctrl_drv); } mac_cb->link = *link_status; diff --git a/drivers/net/ethernet/hisilicon/hns3/hclge_mbx.h b/drivers/net/ethernet/hisilicon/hns3/hclge_mbx.h index c2bd2584201f8..277d6d657c429 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hclge_mbx.h +++ b/drivers/net/ethernet/hisilicon/hns3/hclge_mbx.h @@ -131,11 +131,20 @@ struct hclge_vf_to_pf_msg { }; struct hclge_pf_to_vf_msg { - u16 code; - u16 vf_mbx_msg_code; - u16 vf_mbx_msg_subcode; - u16 resp_status; - u8 resp_data[HCLGE_MBX_MAX_RESP_DATA_SIZE]; + __le16 code; + union { + /* used for mbx response */ + struct { + __le16 vf_mbx_msg_code; + __le16 vf_mbx_msg_subcode; + __le16 resp_status; + u8 resp_data[HCLGE_MBX_MAX_RESP_DATA_SIZE]; + }; + /* used for general mbx */ + struct { + u8 msg_data[HCLGE_MBX_MAX_MSG_SIZE]; + }; + }; }; struct hclge_mbx_vf_to_pf_cmd { @@ -145,7 +154,7 @@ struct hclge_mbx_vf_to_pf_cmd { u8 rsv1[1]; u8 msg_len; u8 rsv2; - u16 match_id; + __le16 match_id; struct hclge_vf_to_pf_msg msg; }; @@ -156,7 +165,7 @@ struct hclge_mbx_pf_to_vf_cmd { u8 rsv[3]; u8 msg_len; u8 rsv1; - u16 match_id; + __le16 match_id; struct hclge_pf_to_vf_msg msg; }; @@ -166,6 +175,28 @@ struct hclge_vf_rst_cmd { u8 rsv[22]; }; +#pragma pack(1) +struct hclge_mbx_link_status { + __le16 link_status; + __le32 speed; + __le16 duplex; + u8 flag; +}; + +struct hclge_mbx_link_mode { + __le16 idx; + __le64 link_mode; +}; + +struct hclge_mbx_port_base_vlan { + __le16 state; + __le16 vlan_proto; + __le16 qos; + __le16 vlan_tag; +}; + +#pragma pack() + /* used by VF to store the received Async responses from PF */ struct hclgevf_mbx_arq_ring { #define HCLGE_MBX_MAX_ARQ_MSG_SIZE 8 @@ -174,7 +205,7 @@ struct hclgevf_mbx_arq_ring { u32 head; u32 tail; atomic_t count; - u16 msg_q[HCLGE_MBX_MAX_ARQ_MSG_NUM][HCLGE_MBX_MAX_ARQ_MSG_SIZE]; + __le16 msg_q[HCLGE_MBX_MAX_ARQ_MSG_NUM][HCLGE_MBX_MAX_ARQ_MSG_SIZE]; }; #define hclge_mbx_ring_ptr_move_crq(crq) \ diff --git a/drivers/net/ethernet/hisilicon/hns3/hnae3.h b/drivers/net/ethernet/hisilicon/hns3/hnae3.h index 9204f5ecd4151..695e299f534d5 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hnae3.h +++ b/drivers/net/ethernet/hisilicon/hns3/hnae3.h @@ -757,6 +757,7 @@ struct hnae3_tc_info { u16 tqp_offset[HNAE3_MAX_TC]; u8 num_tc; /* Total number of enabled TCs */ bool mqprio_active; + bool dcb_ets_active; }; struct hnae3_knic_private_info { diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3_debugfs.c b/drivers/net/ethernet/hisilicon/hns3/hns3_debugfs.c index 3158c08a3aa9c..45f245b1d331c 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3_debugfs.c +++ b/drivers/net/ethernet/hisilicon/hns3/hns3_debugfs.c @@ -1171,9 +1171,9 @@ int hns3_dbg_init(struct hnae3_handle *handle) return 0; out: - mutex_destroy(&handle->dbgfs_lock); debugfs_remove_recursive(handle->hnae3_dbgfs); handle->hnae3_dbgfs = NULL; + mutex_destroy(&handle->dbgfs_lock); return ret; } @@ -1181,6 +1181,9 @@ void hns3_dbg_uninit(struct hnae3_handle *handle) { u32 i; + debugfs_remove_recursive(handle->hnae3_dbgfs); + handle->hnae3_dbgfs = NULL; + for (i = 0; i < ARRAY_SIZE(hns3_dbg_cmd); i++) if (handle->dbgfs_buf[i]) { kvfree(handle->dbgfs_buf[i]); @@ -1188,8 +1191,6 @@ void hns3_dbg_uninit(struct hnae3_handle *handle) } mutex_destroy(&handle->dbgfs_lock); - debugfs_remove_recursive(handle->hnae3_dbgfs); - handle->hnae3_dbgfs = NULL; } void hns3_dbg_register_debugfs(const char *debugfs_dir_name) diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c b/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c index 2acf50ed6025a..60e610ab976d4 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c +++ b/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c @@ -3118,8 +3118,6 @@ static void hns3_set_default_feature(struct net_device *netdev) netdev->priv_flags |= IFF_UNICAST_FLT; - netdev->gso_partial_features |= NETIF_F_GSO_GRE_CSUM; - netdev->features |= NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_RXCSUM | NETIF_F_SG | NETIF_F_GSO | @@ -3158,6 +3156,15 @@ static void hns3_set_default_feature(struct net_device *netdev) NETIF_F_HW_TC); netdev->hw_enc_features |= netdev->vlan_features | NETIF_F_TSO_MANGLEID; + + /* The device_version V3 hardware can't offload the checksum for IP in + * GRE packets, but can do it for NvGRE. So default to disable the + * checksum and GSO offload for GRE. + */ + if (ae_dev->dev_version > HNAE3_DEVICE_VERSION_V2) { + netdev->features &= ~NETIF_F_GSO_GRE; + netdev->features &= ~NETIF_F_GSO_GRE_CSUM; + } } static int hns3_alloc_buffer(struct hns3_enet_ring *ring, @@ -4908,7 +4915,7 @@ static int hns3_init_mac_addr(struct net_device *netdev) struct hns3_nic_priv *priv = netdev_priv(netdev); char format_mac_addr[HNAE3_FORMAT_MAC_ADDR_LEN]; struct hnae3_handle *h = priv->ae_handle; - u8 mac_addr_temp[ETH_ALEN]; + u8 mac_addr_temp[ETH_ALEN] = {0}; int ret = 0; if (h->ae_algo->ops->get_mac_addr) diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3_ethtool.c b/drivers/net/ethernet/hisilicon/hns3/hns3_ethtool.c index 526fb56c84f24..17fa4e7684cd2 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3_ethtool.c +++ b/drivers/net/ethernet/hisilicon/hns3/hns3_ethtool.c @@ -739,7 +739,9 @@ static int hns3_get_link_ksettings(struct net_device *netdev, hns3_get_ksettings(h, cmd); break; case HNAE3_MEDIA_TYPE_FIBER: - if (module_type == HNAE3_MODULE_TYPE_CR) + if (module_type == HNAE3_MODULE_TYPE_UNKNOWN) + cmd->base.port = PORT_OTHER; + else if (module_type == HNAE3_MODULE_TYPE_CR) cmd->base.port = PORT_DA; else cmd->base.port = PORT_FIBRE; diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_dcb.c b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_dcb.c index 87640a2e1794b..a15f2ed268a8d 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_dcb.c +++ b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_dcb.c @@ -251,7 +251,7 @@ static int hclge_ieee_setets(struct hnae3_handle *h, struct ieee_ets *ets) int ret; if (!(hdev->dcbx_cap & DCB_CAP_DCBX_VER_IEEE) || - hdev->flag & HCLGE_FLAG_MQPRIO_ENABLE) + h->kinfo.tc_info.mqprio_active) return -EINVAL; ret = hclge_ets_validate(hdev, ets, &num_tc, &map_changed); @@ -267,10 +267,7 @@ static int hclge_ieee_setets(struct hnae3_handle *h, struct ieee_ets *ets) } hclge_tm_schd_info_update(hdev, num_tc); - if (num_tc > 1) - hdev->flag |= HCLGE_FLAG_DCB_ENABLE; - else - hdev->flag &= ~HCLGE_FLAG_DCB_ENABLE; + h->kinfo.tc_info.dcb_ets_active = num_tc > 1; ret = hclge_ieee_ets_to_tm_info(hdev, ets); if (ret) @@ -376,7 +373,7 @@ static u8 hclge_getdcbx(struct hnae3_handle *h) struct hclge_vport *vport = hclge_get_vport(h); struct hclge_dev *hdev = vport->back; - if (hdev->flag & HCLGE_FLAG_MQPRIO_ENABLE) + if (h->kinfo.tc_info.mqprio_active) return 0; return hdev->dcbx_cap; @@ -500,7 +497,8 @@ static int hclge_setup_tc(struct hnae3_handle *h, if (!test_bit(HCLGE_STATE_NIC_REGISTERED, &hdev->state)) return -EBUSY; - if (hdev->flag & HCLGE_FLAG_DCB_ENABLE) + kinfo = &vport->nic.kinfo; + if (kinfo->tc_info.dcb_ets_active) return -EINVAL; ret = hclge_mqprio_qopt_check(hdev, mqprio_qopt); @@ -514,7 +512,6 @@ static int hclge_setup_tc(struct hnae3_handle *h, if (ret) return ret; - kinfo = &vport->nic.kinfo; memcpy(&old_tc_info, &kinfo->tc_info, sizeof(old_tc_info)); hclge_sync_mqprio_qopt(&kinfo->tc_info, mqprio_qopt); kinfo->tc_info.mqprio_active = tc > 0; @@ -523,13 +520,6 @@ static int hclge_setup_tc(struct hnae3_handle *h, if (ret) goto err_out; - hdev->flag &= ~HCLGE_FLAG_DCB_ENABLE; - - if (tc > 1) - hdev->flag |= HCLGE_FLAG_MQPRIO_ENABLE; - else - hdev->flag &= ~HCLGE_FLAG_MQPRIO_ENABLE; - return hclge_notify_init_up(hdev); err_out: diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_debugfs.c b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_debugfs.c index dd8b73aebe6a5..63665e8a7c718 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_debugfs.c +++ b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_debugfs.c @@ -1450,7 +1450,7 @@ static int hclge_dbg_fd_tcam_read(struct hclge_dev *hdev, bool sel_x, struct hclge_desc desc[3]; int pos = 0; int ret, i; - u32 *req; + __le32 *req; hclge_cmd_setup_basic_desc(&desc[0], HCLGE_OPC_FD_TCAM_OP, true); desc[0].flag |= cpu_to_le16(HCLGE_CMD_FLAG_NEXT); @@ -1475,22 +1475,22 @@ static int hclge_dbg_fd_tcam_read(struct hclge_dev *hdev, bool sel_x, tcam_msg.loc); /* tcam_data0 ~ tcam_data1 */ - req = (u32 *)req1->tcam_data; + req = (__le32 *)req1->tcam_data; for (i = 0; i < 2; i++) pos += scnprintf(tcam_buf + pos, HCLGE_DBG_TCAM_BUF_SIZE - pos, - "%08x\n", *req++); + "%08x\n", le32_to_cpu(*req++)); /* tcam_data2 ~ tcam_data7 */ - req = (u32 *)req2->tcam_data; + req = (__le32 *)req2->tcam_data; for (i = 0; i < 6; i++) pos += scnprintf(tcam_buf + pos, HCLGE_DBG_TCAM_BUF_SIZE - pos, - "%08x\n", *req++); + "%08x\n", le32_to_cpu(*req++)); /* tcam_data8 ~ tcam_data12 */ - req = (u32 *)req3->tcam_data; + req = (__le32 *)req3->tcam_data; for (i = 0; i < 5; i++) pos += scnprintf(tcam_buf + pos, HCLGE_DBG_TCAM_BUF_SIZE - pos, - "%08x\n", *req++); + "%08x\n", le32_to_cpu(*req++)); return ret; } diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c index 847ebb31d4701..9e33f0f0b75dd 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c +++ b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c @@ -72,6 +72,7 @@ static void hclge_sync_promisc_mode(struct hclge_dev *hdev); static void hclge_sync_fd_table(struct hclge_dev *hdev); static int hclge_mac_link_status_wait(struct hclge_dev *hdev, int link_ret, int wait_cnt); +static int hclge_update_port_info(struct hclge_dev *hdev); static struct hnae3_ae_algo ae_algo; @@ -2950,6 +2951,9 @@ static void hclge_update_link_status(struct hclge_dev *hdev) if (state != hdev->hw.mac.link) { hdev->hw.mac.link = state; + if (state == HCLGE_LINK_STATUS_UP) + hclge_update_port_info(hdev); + client->ops->link_status_change(handle, state); hclge_config_mac_tnl_int(hdev, state); if (rclient && rclient->ops->link_status_change) @@ -3391,9 +3395,14 @@ static u32 hclge_check_event_cause(struct hclge_dev *hdev, u32 *clearval) static void hclge_clear_event_cause(struct hclge_dev *hdev, u32 event_type, u32 regclr) { +#define HCLGE_IMP_RESET_DELAY 5 + switch (event_type) { case HCLGE_VECTOR0_EVENT_PTP: case HCLGE_VECTOR0_EVENT_RST: + if (regclr == BIT(HCLGE_VECTOR0_IMPRESET_INT_B)) + mdelay(HCLGE_IMP_RESET_DELAY); + hclge_write_dev(&hdev->hw, HCLGE_MISC_RESET_STS_REG, regclr); break; case HCLGE_VECTOR0_EVENT_MBX: @@ -7546,6 +7555,12 @@ static int hclge_del_cls_flower(struct hnae3_handle *handle, ret = hclge_fd_tcam_config(hdev, HCLGE_FD_STAGE_1, true, rule->location, NULL, false); if (ret) { + /* if tcam config fail, set rule state to TO_DEL, + * so the rule will be deleted when periodic + * task being scheduled. + */ + hclge_update_fd_list(hdev, HCLGE_FD_TO_DEL, rule->location, NULL); + set_bit(HCLGE_STATE_FD_TBL_CHANGED, &hdev->state); spin_unlock_bh(&hdev->fd_rule_lock); return ret; } @@ -8967,7 +8982,7 @@ static void hclge_update_overflow_flags(struct hclge_vport *vport, if (mac_type == HCLGE_MAC_ADDR_UC) { if (is_all_added) vport->overflow_promisc_flags &= ~HNAE3_OVERFLOW_UPE; - else + else if (hclge_is_umv_space_full(vport, true)) vport->overflow_promisc_flags |= HNAE3_OVERFLOW_UPE; } else { if (is_all_added) @@ -10185,8 +10200,6 @@ static void hclge_rm_vport_vlan_table(struct hclge_vport *vport, u16 vlan_id, struct hclge_vport_vlan_cfg *vlan, *tmp; struct hclge_dev *hdev = vport->back; - mutex_lock(&hdev->vport_lock); - list_for_each_entry_safe(vlan, tmp, &vport->vlan_list, node) { if (vlan->vlan_id == vlan_id) { if (is_write_tbl && vlan->hd_tbl_status) @@ -10201,8 +10214,6 @@ static void hclge_rm_vport_vlan_table(struct hclge_vport *vport, u16 vlan_id, break; } } - - mutex_unlock(&hdev->vport_lock); } void hclge_rm_vport_all_vlan_table(struct hclge_vport *vport, bool is_del_list) @@ -10607,11 +10618,16 @@ int hclge_set_vlan_filter(struct hnae3_handle *handle, __be16 proto, * handle mailbox. Just record the vlan id, and remove it after * reset finished. */ + mutex_lock(&hdev->vport_lock); if ((test_bit(HCLGE_STATE_RST_HANDLING, &hdev->state) || test_bit(HCLGE_STATE_RST_FAIL, &hdev->state)) && is_kill) { set_bit(vlan_id, vport->vlan_del_fail_bmap); + mutex_unlock(&hdev->vport_lock); return -EBUSY; + } else if (!is_kill && test_bit(vlan_id, vport->vlan_del_fail_bmap)) { + clear_bit(vlan_id, vport->vlan_del_fail_bmap); } + mutex_unlock(&hdev->vport_lock); /* when port base vlan enabled, we use port base vlan as the vlan * filter entry. In this case, we don't update vlan filter table @@ -10626,17 +10642,22 @@ int hclge_set_vlan_filter(struct hnae3_handle *handle, __be16 proto, } if (!ret) { - if (!is_kill) + if (!is_kill) { hclge_add_vport_vlan_table(vport, vlan_id, writen_to_tbl); - else if (is_kill && vlan_id != 0) + } else if (is_kill && vlan_id != 0) { + mutex_lock(&hdev->vport_lock); hclge_rm_vport_vlan_table(vport, vlan_id, false); + mutex_unlock(&hdev->vport_lock); + } } else if (is_kill) { /* when remove hw vlan filter failed, record the vlan id, * and try to remove it from hw later, to be consistence * with stack */ + mutex_lock(&hdev->vport_lock); set_bit(vlan_id, vport->vlan_del_fail_bmap); + mutex_unlock(&hdev->vport_lock); } hclge_set_vport_vlan_fltr_change(vport); @@ -10676,6 +10697,7 @@ static void hclge_sync_vlan_filter(struct hclge_dev *hdev) int i, ret, sync_cnt = 0; u16 vlan_id; + mutex_lock(&hdev->vport_lock); /* start from vport 1 for PF is always alive */ for (i = 0; i < hdev->num_alloc_vport; i++) { struct hclge_vport *vport = &hdev->vport[i]; @@ -10686,21 +10708,26 @@ static void hclge_sync_vlan_filter(struct hclge_dev *hdev) ret = hclge_set_vlan_filter_hw(hdev, htons(ETH_P_8021Q), vport->vport_id, vlan_id, true); - if (ret && ret != -EINVAL) + if (ret && ret != -EINVAL) { + mutex_unlock(&hdev->vport_lock); return; + } clear_bit(vlan_id, vport->vlan_del_fail_bmap); hclge_rm_vport_vlan_table(vport, vlan_id, false); hclge_set_vport_vlan_fltr_change(vport); sync_cnt++; - if (sync_cnt >= HCLGE_MAX_SYNC_COUNT) + if (sync_cnt >= HCLGE_MAX_SYNC_COUNT) { + mutex_unlock(&hdev->vport_lock); return; + } vlan_id = find_first_bit(vport->vlan_del_fail_bmap, VLAN_N_VID); } } + mutex_unlock(&hdev->vport_lock); hclge_sync_vlan_fltr_state(hdev); } @@ -10993,9 +11020,12 @@ int hclge_cfg_flowctrl(struct hclge_dev *hdev) u32 rx_pause, tx_pause; u8 flowctl; - if (!phydev->link || !phydev->autoneg) + if (!phydev->link) return 0; + if (!phydev->autoneg) + return hclge_mac_pause_setup_hw(hdev); + local_advertising = linkmode_adv_to_lcl_adv_t(phydev->advertising); if (phydev->pause) @@ -11184,6 +11214,7 @@ static void hclge_get_mdix_mode(struct hnae3_handle *handle, static void hclge_info_show(struct hclge_dev *hdev) { + struct hnae3_handle *handle = &hdev->vport->nic; struct device *dev = &hdev->pdev->dev; dev_info(dev, "PF info begin:\n"); @@ -11200,9 +11231,9 @@ static void hclge_info_show(struct hclge_dev *hdev) dev_info(dev, "This is %s PF\n", hdev->flag & HCLGE_FLAG_MAIN ? "main" : "not main"); dev_info(dev, "DCB %s\n", - hdev->flag & HCLGE_FLAG_DCB_ENABLE ? "enable" : "disable"); + handle->kinfo.tc_info.dcb_ets_active ? "enable" : "disable"); dev_info(dev, "MQPRIO %s\n", - hdev->flag & HCLGE_FLAG_MQPRIO_ENABLE ? "enable" : "disable"); + handle->kinfo.tc_info.mqprio_active ? "enable" : "disable"); dev_info(dev, "Default tx spare buffer size: %u\n", hdev->tx_spare_buf_size); @@ -11686,6 +11717,7 @@ static int hclge_init_ae_dev(struct hnae3_ae_dev *ae_dev) goto err_msi_irq_uninit; if (hdev->hw.mac.media_type == HNAE3_MEDIA_TYPE_COPPER) { + clear_bit(HNAE3_DEV_SUPPORT_FEC_B, ae_dev->caps); if (hnae3_dev_phy_imp_supported(hdev)) ret = hclge_update_tp_port_info(hdev); else diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.h b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.h index 4d6dbfe0be7a2..a716027df0ed1 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.h +++ b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.h @@ -902,8 +902,6 @@ struct hclge_dev { #define HCLGE_FLAG_MAIN BIT(0) #define HCLGE_FLAG_DCB_CAPABLE BIT(1) -#define HCLGE_FLAG_DCB_ENABLE BIT(2) -#define HCLGE_FLAG_MQPRIO_ENABLE BIT(3) u32 flag; u32 pkt_buf_size; /* Total pf buf size for tx/rx */ diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c index 4a5b11b6fed3f..5182051e5414d 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c +++ b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c @@ -56,17 +56,19 @@ static int hclge_gen_resp_to_vf(struct hclge_vport *vport, resp_pf_to_vf->msg_len = vf_to_pf_req->msg_len; resp_pf_to_vf->match_id = vf_to_pf_req->match_id; - resp_pf_to_vf->msg.code = HCLGE_MBX_PF_VF_RESP; - resp_pf_to_vf->msg.vf_mbx_msg_code = vf_to_pf_req->msg.code; - resp_pf_to_vf->msg.vf_mbx_msg_subcode = vf_to_pf_req->msg.subcode; + resp_pf_to_vf->msg.code = cpu_to_le16(HCLGE_MBX_PF_VF_RESP); + resp_pf_to_vf->msg.vf_mbx_msg_code = + cpu_to_le16(vf_to_pf_req->msg.code); + resp_pf_to_vf->msg.vf_mbx_msg_subcode = + cpu_to_le16(vf_to_pf_req->msg.subcode); resp = hclge_errno_to_resp(resp_msg->status); if (resp < SHRT_MAX) { - resp_pf_to_vf->msg.resp_status = resp; + resp_pf_to_vf->msg.resp_status = cpu_to_le16(resp); } else { dev_warn(&hdev->pdev->dev, "failed to send response to VF, response status %u is out-of-bound\n", resp); - resp_pf_to_vf->msg.resp_status = EIO; + resp_pf_to_vf->msg.resp_status = cpu_to_le16(EIO); } if (resp_msg->len > 0) @@ -106,9 +108,9 @@ static int hclge_send_mbx_msg(struct hclge_vport *vport, u8 *msg, u16 msg_len, resp_pf_to_vf->dest_vfid = dest_vfid; resp_pf_to_vf->msg_len = msg_len; - resp_pf_to_vf->msg.code = mbx_opcode; + resp_pf_to_vf->msg.code = cpu_to_le16(mbx_opcode); - memcpy(&resp_pf_to_vf->msg.vf_mbx_msg_code, msg, msg_len); + memcpy(resp_pf_to_vf->msg.msg_data, msg, msg_len); trace_hclge_pf_mbx_send(hdev, resp_pf_to_vf); @@ -124,8 +126,8 @@ static int hclge_send_mbx_msg(struct hclge_vport *vport, u8 *msg, u16 msg_len, int hclge_inform_reset_assert_to_vf(struct hclge_vport *vport) { struct hclge_dev *hdev = vport->back; + __le16 msg_data; u16 reset_type; - u8 msg_data[2]; u8 dest_vfid; BUILD_BUG_ON(HNAE3_MAX_RESET > U16_MAX); @@ -139,10 +141,10 @@ int hclge_inform_reset_assert_to_vf(struct hclge_vport *vport) else reset_type = HNAE3_VF_FUNC_RESET; - memcpy(&msg_data[0], &reset_type, sizeof(u16)); + msg_data = cpu_to_le16(reset_type); /* send this requested info to VF */ - return hclge_send_mbx_msg(vport, msg_data, sizeof(msg_data), + return hclge_send_mbx_msg(vport, (u8 *)&msg_data, sizeof(msg_data), HCLGE_MBX_ASSERTING_RESET, dest_vfid); } @@ -338,16 +340,14 @@ int hclge_push_vf_port_base_vlan_info(struct hclge_vport *vport, u8 vfid, u16 state, struct hclge_vlan_info *vlan_info) { -#define MSG_DATA_SIZE 8 + struct hclge_mbx_port_base_vlan base_vlan; - u8 msg_data[MSG_DATA_SIZE]; + base_vlan.state = cpu_to_le16(state); + base_vlan.vlan_proto = cpu_to_le16(vlan_info->vlan_proto); + base_vlan.qos = cpu_to_le16(vlan_info->qos); + base_vlan.vlan_tag = cpu_to_le16(vlan_info->vlan_tag); - memcpy(&msg_data[0], &state, sizeof(u16)); - memcpy(&msg_data[2], &vlan_info->vlan_proto, sizeof(u16)); - memcpy(&msg_data[4], &vlan_info->qos, sizeof(u16)); - memcpy(&msg_data[6], &vlan_info->vlan_tag, sizeof(u16)); - - return hclge_send_mbx_msg(vport, msg_data, sizeof(msg_data), + return hclge_send_mbx_msg(vport, (u8 *)&base_vlan, sizeof(base_vlan), HCLGE_MBX_PUSH_VLAN_INFO, vfid); } @@ -487,10 +487,9 @@ int hclge_push_vf_link_status(struct hclge_vport *vport) #define HCLGE_VF_LINK_STATE_UP 1U #define HCLGE_VF_LINK_STATE_DOWN 0U + struct hclge_mbx_link_status link_info; struct hclge_dev *hdev = vport->back; u16 link_status; - u8 msg_data[9]; - u16 duplex; /* mac.link can only be 0 or 1 */ switch (vport->vf_info.link_state) { @@ -506,14 +505,13 @@ int hclge_push_vf_link_status(struct hclge_vport *vport) break; } - duplex = hdev->hw.mac.duplex; - memcpy(&msg_data[0], &link_status, sizeof(u16)); - memcpy(&msg_data[2], &hdev->hw.mac.speed, sizeof(u32)); - memcpy(&msg_data[6], &duplex, sizeof(u16)); - msg_data[8] = HCLGE_MBX_PUSH_LINK_STATUS_EN; + link_info.link_status = cpu_to_le16(link_status); + link_info.speed = cpu_to_le32(hdev->hw.mac.speed); + link_info.duplex = cpu_to_le16(hdev->hw.mac.duplex); + link_info.flag = HCLGE_MBX_PUSH_LINK_STATUS_EN; /* send this requested info to VF */ - return hclge_send_mbx_msg(vport, msg_data, sizeof(msg_data), + return hclge_send_mbx_msg(vport, (u8 *)&link_info, sizeof(link_info), HCLGE_MBX_LINK_STAT_CHANGE, vport->vport_id); } @@ -521,22 +519,22 @@ static void hclge_get_link_mode(struct hclge_vport *vport, struct hclge_mbx_vf_to_pf_cmd *mbx_req) { #define HCLGE_SUPPORTED 1 + struct hclge_mbx_link_mode link_mode; struct hclge_dev *hdev = vport->back; unsigned long advertising; unsigned long supported; unsigned long send_data; - u8 msg_data[10] = {}; u8 dest_vfid; advertising = hdev->hw.mac.advertising[0]; supported = hdev->hw.mac.supported[0]; dest_vfid = mbx_req->mbx_src_vfid; - msg_data[0] = mbx_req->msg.data[0]; - - send_data = msg_data[0] == HCLGE_SUPPORTED ? supported : advertising; + send_data = mbx_req->msg.data[0] == HCLGE_SUPPORTED ? supported : + advertising; + link_mode.idx = cpu_to_le16((u16)mbx_req->msg.data[0]); + link_mode.link_mode = cpu_to_le64(send_data); - memcpy(&msg_data[2], &send_data, sizeof(unsigned long)); - hclge_send_mbx_msg(vport, msg_data, sizeof(msg_data), + hclge_send_mbx_msg(vport, (u8 *)&link_mode, sizeof(link_mode), HCLGE_MBX_LINK_STAT_MODE, dest_vfid); } diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c index e7cb6a81e5b67..f5fe5e437bcd1 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c +++ b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c @@ -1429,7 +1429,7 @@ static int hclge_bp_setup_hw(struct hclge_dev *hdev, u8 tc) return 0; } -static int hclge_mac_pause_setup_hw(struct hclge_dev *hdev) +int hclge_mac_pause_setup_hw(struct hclge_dev *hdev) { bool tx_en, rx_en; diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.h b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.h index 2c5256d7f9962..e1f2feaba5454 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.h +++ b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.h @@ -233,6 +233,7 @@ int hclge_pfc_pause_en_cfg(struct hclge_dev *hdev, u8 tx_rx_bitmap, u8 pfc_bitmap); int hclge_mac_pause_en_cfg(struct hclge_dev *hdev, bool tx, bool rx); int hclge_pause_addr_cfg(struct hclge_dev *hdev, const u8 *mac_addr); +int hclge_mac_pause_setup_hw(struct hclge_dev *hdev); void hclge_pfc_rx_stats_get(struct hclge_dev *hdev, u64 *stats); void hclge_pfc_tx_stats_get(struct hclge_dev *hdev, u64 *stats); int hclge_tm_qs_shaper_cfg(struct hclge_vport *vport, int max_tx_rate); diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_trace.h b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_trace.h index 5b0b71bd61200..8510b88d49820 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_trace.h +++ b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_trace.h @@ -62,7 +62,7 @@ TRACE_EVENT(hclge_pf_mbx_send, TP_fast_assign( __entry->vfid = req->dest_vfid; - __entry->code = req->msg.code; + __entry->code = le16_to_cpu(req->msg.code); __assign_str(pciname, pci_name(hdev->pdev)); __assign_str(devname, &hdev->vport[0].nic.kinfo.netdev->name); memcpy(__entry->mbx_data, req, diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c b/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c index bc140e3620d6c..880feeac06375 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c +++ b/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c @@ -1710,6 +1710,8 @@ static int hclgevf_set_vlan_filter(struct hnae3_handle *handle, test_bit(HCLGEVF_STATE_RST_FAIL, &hdev->state)) && is_kill) { set_bit(vlan_id, hdev->vlan_del_fail_bmap); return -EBUSY; + } else if (!is_kill && test_bit(vlan_id, hdev->vlan_del_fail_bmap)) { + clear_bit(vlan_id, hdev->vlan_del_fail_bmap); } hclgevf_build_send_msg(&send_msg, HCLGE_MBX_SET_VLAN, @@ -1737,20 +1739,25 @@ static void hclgevf_sync_vlan_filter(struct hclgevf_dev *hdev) int ret, sync_cnt = 0; u16 vlan_id; + if (bitmap_empty(hdev->vlan_del_fail_bmap, VLAN_N_VID)) + return; + + rtnl_lock(); vlan_id = find_first_bit(hdev->vlan_del_fail_bmap, VLAN_N_VID); while (vlan_id != VLAN_N_VID) { ret = hclgevf_set_vlan_filter(handle, htons(ETH_P_8021Q), vlan_id, true); if (ret) - return; + break; clear_bit(vlan_id, hdev->vlan_del_fail_bmap); sync_cnt++; if (sync_cnt >= HCLGEVF_MAX_SYNC_COUNT) - return; + break; vlan_id = find_first_bit(hdev->vlan_del_fail_bmap, VLAN_N_VID); } + rtnl_unlock(); } static int hclgevf_en_hw_strip_rxvtag(struct hnae3_handle *handle, bool enable) @@ -2480,8 +2487,18 @@ static enum hclgevf_evt_cause hclgevf_check_evt_cause(struct hclgevf_dev *hdev, return HCLGEVF_VECTOR0_EVENT_OTHER; } +static void hclgevf_reset_timer(struct timer_list *t) +{ + struct hclgevf_dev *hdev = from_timer(hdev, t, reset_timer); + + hclgevf_clear_event_cause(hdev, HCLGEVF_VECTOR0_EVENT_RST); + hclgevf_reset_task_schedule(hdev); +} + static irqreturn_t hclgevf_misc_irq_handle(int irq, void *data) { +#define HCLGEVF_RESET_DELAY 5 + enum hclgevf_evt_cause event_cause; struct hclgevf_dev *hdev = data; u32 clearval; @@ -2493,7 +2510,8 @@ static irqreturn_t hclgevf_misc_irq_handle(int irq, void *data) switch (event_cause) { case HCLGEVF_VECTOR0_EVENT_RST: - hclgevf_reset_task_schedule(hdev); + mod_timer(&hdev->reset_timer, + jiffies + msecs_to_jiffies(HCLGEVF_RESET_DELAY)); break; case HCLGEVF_VECTOR0_EVENT_MBX: hclgevf_mbx_handler(hdev); @@ -3470,6 +3488,7 @@ static int hclgevf_init_hdev(struct hclgevf_dev *hdev) HCLGEVF_DRIVER_NAME); hclgevf_task_schedule(hdev, round_jiffies_relative(HZ)); + timer_setup(&hdev->reset_timer, hclgevf_reset_timer, 0); return 0; @@ -3809,7 +3828,7 @@ static void hclgevf_get_regs(struct hnae3_handle *handle, u32 *version, } void hclgevf_update_port_base_vlan_info(struct hclgevf_dev *hdev, u16 state, - u8 *port_base_vlan_info, u8 data_size) + struct hclge_mbx_port_base_vlan *port_base_vlan) { struct hnae3_handle *nic = &hdev->nic; struct hclge_vf_to_pf_msg send_msg; @@ -3834,7 +3853,7 @@ void hclgevf_update_port_base_vlan_info(struct hclgevf_dev *hdev, u16 state, /* send msg to PF and wait update port based vlan info */ hclgevf_build_send_msg(&send_msg, HCLGE_MBX_SET_VLAN, HCLGE_MBX_PORT_BASE_VLAN_CFG); - memcpy(send_msg.data, port_base_vlan_info, data_size); + memcpy(send_msg.data, port_base_vlan, sizeof(*port_base_vlan)); ret = hclgevf_send_mbx_msg(hdev, &send_msg, false, NULL, 0); if (!ret) { if (state == HNAE3_PORT_BASE_VLAN_DISABLE) diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.h b/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.h index f6f736c0091c0..5c7538ca36a76 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.h +++ b/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.h @@ -281,6 +281,7 @@ struct hclgevf_dev { enum hnae3_reset_type reset_level; unsigned long reset_pending; enum hnae3_reset_type reset_type; + struct timer_list reset_timer; #define HCLGEVF_RESET_REQUESTED 0 #define HCLGEVF_RESET_PENDING 1 @@ -355,5 +356,5 @@ void hclgevf_update_speed_duplex(struct hclgevf_dev *hdev, u32 speed, void hclgevf_reset_task_schedule(struct hclgevf_dev *hdev); void hclgevf_mbx_task_schedule(struct hclgevf_dev *hdev); void hclgevf_update_port_base_vlan_info(struct hclgevf_dev *hdev, u16 state, - u8 *port_base_vlan_info, u8 data_size); + struct hclge_mbx_port_base_vlan *port_base_vlan); #endif diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_mbx.c b/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_mbx.c index c5ac6ecf36e10..608a14fc27acc 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_mbx.c +++ b/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_mbx.c @@ -60,6 +60,9 @@ static int hclgevf_get_mbx_resp(struct hclgevf_dev *hdev, u16 code0, u16 code1, i++; } + /* ensure additional_info will be seen after received_resp */ + smp_rmb(); + if (i >= HCLGEVF_MAX_TRY_TIMES) { dev_err(&hdev->pdev->dev, "VF could not get mbx(%u,%u) resp(=%d) from PF in %d tries\n", @@ -121,7 +124,7 @@ int hclgevf_send_mbx_msg(struct hclgevf_dev *hdev, if (need_resp) { mutex_lock(&hdev->mbx_resp.mbx_mutex); hclgevf_reset_mbx_resp_status(hdev); - req->match_id = hdev->mbx_resp.match_id; + req->match_id = cpu_to_le16(hdev->mbx_resp.match_id); status = hclgevf_cmd_send(&hdev->hw, &desc, 1); if (status) { dev_err(&hdev->pdev->dev, @@ -159,27 +162,33 @@ static bool hclgevf_cmd_crq_empty(struct hclgevf_hw *hw) static void hclgevf_handle_mbx_response(struct hclgevf_dev *hdev, struct hclge_mbx_pf_to_vf_cmd *req) { + u16 vf_mbx_msg_subcode = le16_to_cpu(req->msg.vf_mbx_msg_subcode); + u16 vf_mbx_msg_code = le16_to_cpu(req->msg.vf_mbx_msg_code); struct hclgevf_mbx_resp_status *resp = &hdev->mbx_resp; + u16 resp_status = le16_to_cpu(req->msg.resp_status); + u16 match_id = le16_to_cpu(req->match_id); if (resp->received_resp) dev_warn(&hdev->pdev->dev, - "VF mbx resp flag not clear(%u)\n", - req->msg.vf_mbx_msg_code); - - resp->origin_mbx_msg = - (req->msg.vf_mbx_msg_code << 16); - resp->origin_mbx_msg |= req->msg.vf_mbx_msg_subcode; - resp->resp_status = - hclgevf_resp_to_errno(req->msg.resp_status); + "VF mbx resp flag not clear(%u)\n", + vf_mbx_msg_code); + + resp->origin_mbx_msg = (vf_mbx_msg_code << 16); + resp->origin_mbx_msg |= vf_mbx_msg_subcode; + resp->resp_status = hclgevf_resp_to_errno(resp_status); memcpy(resp->additional_info, req->msg.resp_data, HCLGE_MBX_MAX_RESP_DATA_SIZE * sizeof(u8)); - if (req->match_id) { + + /* ensure additional_info will be seen before setting received_resp */ + smp_wmb(); + + if (match_id) { /* If match_id is not zero, it means PF support match_id. * if the match_id is right, VF get the right response, or * ignore the response. and driver will clear hdev->mbx_resp * when send next message which need response. */ - if (req->match_id == resp->match_id) + if (match_id == resp->match_id) resp->received_resp = true; } else { resp->received_resp = true; @@ -196,7 +205,7 @@ static void hclgevf_handle_mbx_msg(struct hclgevf_dev *hdev, HCLGE_MBX_MAX_ARQ_MSG_NUM) { dev_warn(&hdev->pdev->dev, "Async Q full, dropping msg(%u)\n", - req->msg.code); + le16_to_cpu(req->msg.code)); return; } @@ -215,6 +224,7 @@ void hclgevf_mbx_handler(struct hclgevf_dev *hdev) struct hclgevf_cmq_ring *crq; struct hclgevf_desc *desc; u16 flag; + u16 code; crq = &hdev->hw.cmq.crq; @@ -228,10 +238,11 @@ void hclgevf_mbx_handler(struct hclgevf_dev *hdev) req = (struct hclge_mbx_pf_to_vf_cmd *)desc->data; flag = le16_to_cpu(crq->desc[crq->next_to_use].flag); + code = le16_to_cpu(req->msg.code); if (unlikely(!hnae3_get_bit(flag, HCLGEVF_CMDQ_RX_OUTVLD_B))) { dev_warn(&hdev->pdev->dev, "dropped invalid mailbox message, code = %u\n", - req->msg.code); + code); /* dropping/not processing this invalid message */ crq->desc[crq->next_to_use].flag = 0; @@ -247,7 +258,7 @@ void hclgevf_mbx_handler(struct hclgevf_dev *hdev) * timeout and simultaneously queue the async messages for later * prcessing in context of mailbox task i.e. the slow path. */ - switch (req->msg.code) { + switch (code) { case HCLGE_MBX_PF_VF_RESP: hclgevf_handle_mbx_response(hdev, req); break; @@ -261,7 +272,7 @@ void hclgevf_mbx_handler(struct hclgevf_dev *hdev) default: dev_err(&hdev->pdev->dev, "VF received unsupported(%u) mbx msg from PF\n", - req->msg.code); + code); break; } crq->desc[crq->next_to_use].flag = 0; @@ -283,14 +294,18 @@ static void hclgevf_parse_promisc_info(struct hclgevf_dev *hdev, void hclgevf_mbx_async_handler(struct hclgevf_dev *hdev) { + struct hclge_mbx_port_base_vlan *vlan_info; + struct hclge_mbx_link_status *link_info; + struct hclge_mbx_link_mode *link_mode; enum hnae3_reset_type reset_type; u16 link_status, state; - u16 *msg_q, *vlan_info; + __le16 *msg_q; + u16 opcode; u8 duplex; u32 speed; u32 tail; u8 flag; - u8 idx; + u16 idx; tail = hdev->arq.tail; @@ -303,13 +318,14 @@ void hclgevf_mbx_async_handler(struct hclgevf_dev *hdev) } msg_q = hdev->arq.msg_q[hdev->arq.head]; - - switch (msg_q[0]) { + opcode = le16_to_cpu(msg_q[0]); + switch (opcode) { case HCLGE_MBX_LINK_STAT_CHANGE: - link_status = msg_q[1]; - memcpy(&speed, &msg_q[2], sizeof(speed)); - duplex = (u8)msg_q[4]; - flag = (u8)msg_q[5]; + link_info = (struct hclge_mbx_link_status *)(msg_q + 1); + link_status = le16_to_cpu(link_info->link_status); + speed = le32_to_cpu(link_info->speed); + duplex = (u8)le16_to_cpu(link_info->duplex); + flag = link_info->flag; /* update upper layer with new link link status */ hclgevf_update_speed_duplex(hdev, speed, duplex); @@ -321,13 +337,14 @@ void hclgevf_mbx_async_handler(struct hclgevf_dev *hdev) break; case HCLGE_MBX_LINK_STAT_MODE: - idx = (u8)msg_q[1]; + link_mode = (struct hclge_mbx_link_mode *)(msg_q + 1); + idx = le16_to_cpu(link_mode->idx); if (idx) - memcpy(&hdev->hw.mac.supported, &msg_q[2], - sizeof(unsigned long)); + hdev->hw.mac.supported = + le64_to_cpu(link_mode->link_mode); else - memcpy(&hdev->hw.mac.advertising, &msg_q[2], - sizeof(unsigned long)); + hdev->hw.mac.advertising = + le64_to_cpu(link_mode->link_mode); break; case HCLGE_MBX_ASSERTING_RESET: /* PF has asserted reset hence VF should go in pending @@ -335,25 +352,27 @@ void hclgevf_mbx_async_handler(struct hclgevf_dev *hdev) * has been completely reset. After this stack should * eventually be re-initialized. */ - reset_type = (enum hnae3_reset_type)msg_q[1]; + reset_type = + (enum hnae3_reset_type)le16_to_cpu(msg_q[1]); set_bit(reset_type, &hdev->reset_pending); set_bit(HCLGEVF_RESET_PENDING, &hdev->reset_state); hclgevf_reset_task_schedule(hdev); break; case HCLGE_MBX_PUSH_VLAN_INFO: - state = msg_q[1]; - vlan_info = &msg_q[1]; + vlan_info = + (struct hclge_mbx_port_base_vlan *)(msg_q + 1); + state = le16_to_cpu(vlan_info->state); hclgevf_update_port_base_vlan_info(hdev, state, - (u8 *)vlan_info, 8); + vlan_info); break; case HCLGE_MBX_PUSH_PROMISC_INFO: - hclgevf_parse_promisc_info(hdev, msg_q[1]); + hclgevf_parse_promisc_info(hdev, le16_to_cpu(msg_q[1])); break; default: dev_err(&hdev->pdev->dev, "fetched unsupported(%u) message from arq\n", - msg_q[0]); + opcode); break; } diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_trace.h b/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_trace.h index e4bfb6191fef5..5d4895bb57a17 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_trace.h +++ b/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_trace.h @@ -29,7 +29,7 @@ TRACE_EVENT(hclge_vf_mbx_get, TP_fast_assign( __entry->vfid = req->dest_vfid; - __entry->code = req->msg.code; + __entry->code = le16_to_cpu(req->msg.code); __assign_str(pciname, pci_name(hdev->pdev)); __assign_str(devname, &hdev->nic.kinfo.netdev->name); memcpy(__entry->mbx_data, req, diff --git a/drivers/net/ethernet/ibm/ibmveth.c b/drivers/net/ethernet/ibm/ibmveth.c index 05759f690e1fd..67ea2cb21e849 100644 --- a/drivers/net/ethernet/ibm/ibmveth.c +++ b/drivers/net/ethernet/ibm/ibmveth.c @@ -1297,24 +1297,23 @@ static void ibmveth_rx_csum_helper(struct sk_buff *skb, * the user space for finding a flow. During this process, OVS computes * checksum on the first packet when CHECKSUM_PARTIAL flag is set. * - * So, re-compute TCP pseudo header checksum when configured for - * trunk mode. + * So, re-compute TCP pseudo header checksum. */ + if (iph_proto == IPPROTO_TCP) { struct tcphdr *tcph = (struct tcphdr *)(skb->data + iphlen); + if (tcph->check == 0x0000) { /* Recompute TCP pseudo header checksum */ - if (adapter->is_active_trunk) { - tcphdrlen = skb->len - iphlen; - if (skb_proto == ETH_P_IP) - tcph->check = - ~csum_tcpudp_magic(iph->saddr, - iph->daddr, tcphdrlen, iph_proto, 0); - else if (skb_proto == ETH_P_IPV6) - tcph->check = - ~csum_ipv6_magic(&iph6->saddr, - &iph6->daddr, tcphdrlen, iph_proto, 0); - } + tcphdrlen = skb->len - iphlen; + if (skb_proto == ETH_P_IP) + tcph->check = + ~csum_tcpudp_magic(iph->saddr, + iph->daddr, tcphdrlen, iph_proto, 0); + else if (skb_proto == ETH_P_IPV6) + tcph->check = + ~csum_ipv6_magic(&iph6->saddr, + &iph6->daddr, tcphdrlen, iph_proto, 0); /* Setup SKB fields for checksum offload */ skb_partial_csum_set(skb, iphlen, offsetof(struct tcphdr, check)); diff --git a/drivers/net/ethernet/intel/i40e/i40e.h b/drivers/net/ethernet/intel/i40e/i40e.h index a42ca847c8f86..22802222d34d1 100644 --- a/drivers/net/ethernet/intel/i40e/i40e.h +++ b/drivers/net/ethernet/intel/i40e/i40e.h @@ -588,6 +588,7 @@ struct i40e_pf { * in abilities field of i40e_aq_set_phy_config structure */ #define I40E_FLAG_TOTAL_PORT_SHUTDOWN_ENABLED BIT(27) +#define I40E_FLAG_VF_VLAN_PRUNING BIT(28) struct i40e_client_instance *cinst; bool stat_offsets_loaded; diff --git a/drivers/net/ethernet/intel/i40e/i40e_common.c b/drivers/net/ethernet/intel/i40e/i40e_common.c index 7f91e04d75b8c..99dd8187476ba 100644 --- a/drivers/net/ethernet/intel/i40e/i40e_common.c +++ b/drivers/net/ethernet/intel/i40e/i40e_common.c @@ -1080,7 +1080,7 @@ void i40e_clear_hw(struct i40e_hw *hw) I40E_PFLAN_QALLOC_FIRSTQ_SHIFT; j = (val & I40E_PFLAN_QALLOC_LASTQ_MASK) >> I40E_PFLAN_QALLOC_LASTQ_SHIFT; - if (val & I40E_PFLAN_QALLOC_VALID_MASK) + if (val & I40E_PFLAN_QALLOC_VALID_MASK && j >= base_queue) num_queues = (j - base_queue) + 1; else num_queues = 0; @@ -1090,7 +1090,7 @@ void i40e_clear_hw(struct i40e_hw *hw) I40E_PF_VT_PFALLOC_FIRSTVF_SHIFT; j = (val & I40E_PF_VT_PFALLOC_LASTVF_MASK) >> I40E_PF_VT_PFALLOC_LASTVF_SHIFT; - if (val & I40E_PF_VT_PFALLOC_VALID_MASK) + if (val & I40E_PF_VT_PFALLOC_VALID_MASK && j >= i) num_vfs = (j - i) + 1; else num_vfs = 0; diff --git a/drivers/net/ethernet/intel/i40e/i40e_ethtool.c b/drivers/net/ethernet/intel/i40e/i40e_ethtool.c index d124cb947ffa5..d0b9ee756b306 100644 --- a/drivers/net/ethernet/intel/i40e/i40e_ethtool.c +++ b/drivers/net/ethernet/intel/i40e/i40e_ethtool.c @@ -451,6 +451,8 @@ static const struct i40e_priv_flags i40e_gstrings_priv_flags[] = { I40E_PRIV_FLAG("disable-fw-lldp", I40E_FLAG_DISABLE_FW_LLDP, 0), I40E_PRIV_FLAG("rs-fec", I40E_FLAG_RS_FEC, 0), I40E_PRIV_FLAG("base-r-fec", I40E_FLAG_BASE_R_FEC, 0), + I40E_PRIV_FLAG("vf-vlan-pruning", + I40E_FLAG_VF_VLAN_PRUNING, 0), }; #define I40E_PRIV_FLAGS_STR_LEN ARRAY_SIZE(i40e_gstrings_priv_flags) @@ -5293,6 +5295,13 @@ static int i40e_set_priv_flags(struct net_device *dev, u32 flags) return -EOPNOTSUPP; } + if ((changed_flags & I40E_FLAG_VF_VLAN_PRUNING) && + pf->num_alloc_vfs) { + dev_warn(&pf->pdev->dev, + "Changing vf-vlan-pruning flag while VF(s) are active is not supported\n"); + return -EOPNOTSUPP; + } + if ((changed_flags & new_flags & I40E_FLAG_LINK_DOWN_ON_CLOSE_ENABLED) && (new_flags & I40E_FLAG_MFP_ENABLED)) diff --git a/drivers/net/ethernet/intel/i40e/i40e_main.c b/drivers/net/ethernet/intel/i40e/i40e_main.c index d3f3874220a31..cf085bd8d790f 100644 --- a/drivers/net/ethernet/intel/i40e/i40e_main.c +++ b/drivers/net/ethernet/intel/i40e/i40e_main.c @@ -1426,6 +1426,114 @@ static int i40e_correct_mac_vlan_filters(struct i40e_vsi *vsi, return 0; } +/** + * i40e_get_vf_new_vlan - Get new vlan id on a vf + * @vsi: the vsi to configure + * @new_mac: new mac filter to be added + * @f: existing mac filter, replaced with new_mac->f if new_mac is not NULL + * @vlan_filters: the number of active VLAN filters + * @trusted: flag if the VF is trusted + * + * Get new VLAN id based on current VLAN filters, trust, PVID + * and vf-vlan-prune-disable flag. + * + * Returns the value of the new vlan filter or + * the old value if no new filter is needed. + */ +static s16 i40e_get_vf_new_vlan(struct i40e_vsi *vsi, + struct i40e_new_mac_filter *new_mac, + struct i40e_mac_filter *f, + int vlan_filters, + bool trusted) +{ + s16 pvid = le16_to_cpu(vsi->info.pvid); + struct i40e_pf *pf = vsi->back; + bool is_any; + + if (new_mac) + f = new_mac->f; + + if (pvid && f->vlan != pvid) + return pvid; + + is_any = (trusted || + !(pf->flags & I40E_FLAG_VF_VLAN_PRUNING)); + + if ((vlan_filters && f->vlan == I40E_VLAN_ANY) || + (!is_any && !vlan_filters && f->vlan == I40E_VLAN_ANY) || + (is_any && !vlan_filters && f->vlan == 0)) { + if (is_any) + return I40E_VLAN_ANY; + else + return 0; + } + + return f->vlan; +} + +/** + * i40e_correct_vf_mac_vlan_filters - Correct non-VLAN VF filters if necessary + * @vsi: the vsi to configure + * @tmp_add_list: list of filters ready to be added + * @tmp_del_list: list of filters ready to be deleted + * @vlan_filters: the number of active VLAN filters + * @trusted: flag if the VF is trusted + * + * Correct VF VLAN filters based on current VLAN filters, trust, PVID + * and vf-vlan-prune-disable flag. + * + * In case of memory allocation failure return -ENOMEM. Otherwise, return 0. + * + * This function is only expected to be called from within + * i40e_sync_vsi_filters. + * + * NOTE: This function expects to be called while under the + * mac_filter_hash_lock + */ +static int i40e_correct_vf_mac_vlan_filters(struct i40e_vsi *vsi, + struct hlist_head *tmp_add_list, + struct hlist_head *tmp_del_list, + int vlan_filters, + bool trusted) +{ + struct i40e_mac_filter *f, *add_head; + struct i40e_new_mac_filter *new_mac; + struct hlist_node *h; + int bkt, new_vlan; + + hlist_for_each_entry(new_mac, tmp_add_list, hlist) { + new_mac->f->vlan = i40e_get_vf_new_vlan(vsi, new_mac, NULL, + vlan_filters, trusted); + } + + hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist) { + new_vlan = i40e_get_vf_new_vlan(vsi, NULL, f, vlan_filters, + trusted); + if (new_vlan != f->vlan) { + add_head = i40e_add_filter(vsi, f->macaddr, new_vlan); + if (!add_head) + return -ENOMEM; + /* Create a temporary i40e_new_mac_filter */ + new_mac = kzalloc(sizeof(*new_mac), GFP_ATOMIC); + if (!new_mac) + return -ENOMEM; + new_mac->f = add_head; + new_mac->state = add_head->state; + + /* Add the new filter to the tmp list */ + hlist_add_head(&new_mac->hlist, tmp_add_list); + + /* Put the original filter into the delete list */ + f->state = I40E_FILTER_REMOVE; + hash_del(&f->hlist); + hlist_add_head(&f->hlist, tmp_del_list); + } + } + + vsi->has_vlan_filter = !!vlan_filters; + return 0; +} + /** * i40e_rm_default_mac_filter - Remove the default MAC filter set by NVM * @vsi: the PF Main VSI - inappropriate for any other VSI @@ -2483,10 +2591,14 @@ int i40e_sync_vsi_filters(struct i40e_vsi *vsi) vlan_filters++; } - retval = i40e_correct_mac_vlan_filters(vsi, - &tmp_add_list, - &tmp_del_list, - vlan_filters); + if (vsi->type != I40E_VSI_SRIOV) + retval = i40e_correct_mac_vlan_filters + (vsi, &tmp_add_list, &tmp_del_list, + vlan_filters); + else if (pf->vf) + retval = i40e_correct_vf_mac_vlan_filters + (vsi, &tmp_add_list, &tmp_del_list, + vlan_filters, pf->vf[vsi->vf_id].trusted); hlist_for_each_entry(new, &tmp_add_list, hlist) netdev_hw_addr_refcnt(new->f, vsi->netdev, 1); @@ -2656,7 +2768,8 @@ int i40e_sync_vsi_filters(struct i40e_vsi *vsi) } /* if the VF is not trusted do not do promisc */ - if ((vsi->type == I40E_VSI_SRIOV) && !pf->vf[vsi->vf_id].trusted) { + if (vsi->type == I40E_VSI_SRIOV && pf->vf && + !pf->vf[vsi->vf_id].trusted) { clear_bit(__I40E_VSI_OVERFLOW_PROMISC, vsi->state); goto out; } @@ -2915,8 +3028,21 @@ int i40e_add_vlan_all_mac(struct i40e_vsi *vsi, s16 vid) int bkt; hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist) { - if (f->state == I40E_FILTER_REMOVE) + /* If we're asked to add a filter that has been marked for + * removal, it is safe to simply restore it to active state. + * __i40e_del_filter will have simply deleted any filters which + * were previously marked NEW or FAILED, so if it is currently + * marked REMOVE it must have previously been ACTIVE. Since we + * haven't yet run the sync filters task, just restore this + * filter to the ACTIVE state so that the sync task leaves it + * in place. + */ + if (f->state == I40E_FILTER_REMOVE && f->vlan == vid) { + f->state = I40E_FILTER_ACTIVE; continue; + } else if (f->state == I40E_FILTER_REMOVE) { + continue; + } add_f = i40e_add_filter(vsi, f->macaddr, vid); if (!add_f) { dev_info(&vsi->back->pdev->dev, @@ -16006,7 +16132,7 @@ static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent) I40E_PRTGL_SAH_MFS_MASK) >> I40E_PRTGL_SAH_MFS_SHIFT; if (val < MAX_FRAME_SIZE_DEFAULT) dev_warn(&pdev->dev, "MFS for port %x has been set below the default: %x\n", - i, val); + pf->hw.port, val); /* Add a filter to drop all Flow control frames from any VSI from being * transmitted. By doing so we stop a malicious VF from sending out @@ -16132,11 +16258,15 @@ static void i40e_remove(struct pci_dev *pdev) i40e_switch_branch_release(pf->veb[i]); } - /* Now we can shutdown the PF's VSI, just before we kill + /* Now we can shutdown the PF's VSIs, just before we kill * adminq and hmc. */ - if (pf->vsi[pf->lan_vsi]) - i40e_vsi_release(pf->vsi[pf->lan_vsi]); + for (i = pf->num_alloc_vsi; i--;) + if (pf->vsi[i]) { + i40e_vsi_close(pf->vsi[i]); + i40e_vsi_release(pf->vsi[i]); + pf->vsi[i] = NULL; + } i40e_cloud_filter_exit(pf); diff --git a/drivers/net/ethernet/intel/i40e/i40e_txrx.c b/drivers/net/ethernet/intel/i40e/i40e_txrx.c index 9787e794eeda6..c0de02e9c6502 100644 --- a/drivers/net/ethernet/intel/i40e/i40e_txrx.c +++ b/drivers/net/ethernet/intel/i40e/i40e_txrx.c @@ -2308,7 +2308,7 @@ static int i40e_run_xdp(struct i40e_ring *rx_ring, struct xdp_buff *xdp) result = I40E_XDP_REDIR; break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(rx_ring->netdev, xdp_prog, act); fallthrough; case XDP_ABORTED: out_failure: @@ -2759,7 +2759,7 @@ int i40e_napi_poll(struct napi_struct *napi, int budget) return budget; } - if (vsi->back->flags & I40E_TXR_FLAGS_WB_ON_ITR) + if (q_vector->tx.ring[0].flags & I40E_TXR_FLAGS_WB_ON_ITR) q_vector->arm_wb_state = false; /* Exit the polling mode, but don't re-enable interrupts if stack might diff --git a/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c b/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c index 46758bbcb04f4..7950b18cb7a41 100644 --- a/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c +++ b/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c @@ -4372,9 +4372,8 @@ int i40e_ndo_set_vf_port_vlan(struct net_device *netdev, int vf_id, /* duplicate request, so just return success */ goto error_pvid; - i40e_vc_reset_vf(vf, true); - /* During reset the VF got a new VSI, so refresh a pointer. */ - vsi = pf->vsi[vf->lan_vsi_idx]; + i40e_vlan_stripping_enable(vsi); + /* Locked once because multiple functions below iterate list */ spin_lock_bh(&vsi->mac_filter_hash_lock); @@ -4387,7 +4386,7 @@ int i40e_ndo_set_vf_port_vlan(struct net_device *netdev, int vf_id, * MAC addresses deleted. */ if ((!(vlan_id || qos) || - vlanprio != le16_to_cpu(vsi->info.pvid)) && + vlanprio != le16_to_cpu(vsi->info.pvid)) && vsi->info.pvid) { ret = i40e_add_vlan_all_mac(vsi, I40E_VLAN_ANY); if (ret) { @@ -4460,6 +4459,10 @@ int i40e_ndo_set_vf_port_vlan(struct net_device *netdev, int vf_id, */ vf->port_vlan_id = le16_to_cpu(vsi->info.pvid); + i40e_vc_reset_vf(vf, true); + /* During reset the VF got a new VSI, so refresh a pointer. */ + vsi = pf->vsi[vf->lan_vsi_idx]; + ret = i40e_config_vf_promiscuous_mode(vf, vsi->id, allmulti, alluni); if (ret) { dev_err(&pf->pdev->dev, "Unable to config vf promiscuous mode\n"); @@ -4750,6 +4753,11 @@ int i40e_ndo_set_vf_trust(struct net_device *netdev, int vf_id, bool setting) goto out; vf->trusted = setting; + + /* request PF to sync mac/vlan filters for the VF */ + set_bit(__I40E_MACVLAN_SYNC_PENDING, pf->state); + pf->vsi[vf->lan_vsi_idx]->flags |= I40E_VSI_FLAG_FILTER_CHANGED; + i40e_vc_reset_vf(vf, true); dev_info(&pf->pdev->dev, "VF %u is now %strusted\n", vf_id, setting ? "" : "un"); diff --git a/drivers/net/ethernet/intel/i40e/i40e_xsk.c b/drivers/net/ethernet/intel/i40e/i40e_xsk.c index 7e50b8fff9b59..fc56d5e4756fe 100644 --- a/drivers/net/ethernet/intel/i40e/i40e_xsk.c +++ b/drivers/net/ethernet/intel/i40e/i40e_xsk.c @@ -227,7 +227,7 @@ static int i40e_run_xdp_zc(struct i40e_ring *rx_ring, struct xdp_buff *xdp) goto out_failure; break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(rx_ring->netdev, xdp_prog, act); fallthrough; case XDP_ABORTED: out_failure: diff --git a/drivers/net/ethernet/intel/iavf/iavf_main.c b/drivers/net/ethernet/intel/iavf/iavf_main.c index a87f4f1ae6845..41b8ff0d4df5e 100644 --- a/drivers/net/ethernet/intel/iavf/iavf_main.c +++ b/drivers/net/ethernet/intel/iavf/iavf_main.c @@ -1142,7 +1142,8 @@ void iavf_down(struct iavf_adapter *adapter) iavf_clear_fdir_filters(adapter); iavf_clear_adv_rss_conf(adapter); - if (!(adapter->flags & IAVF_FLAG_PF_COMMS_FAILED)) { + if (!(adapter->flags & IAVF_FLAG_PF_COMMS_FAILED) && + !(test_bit(__IAVF_IN_REMOVE_TASK, &adapter->crit_section))) { /* cancel any current operation */ adapter->current_op = VIRTCHNL_OP_UNKNOWN; /* Schedule operations to close down the HW. Don't wait diff --git a/drivers/net/ethernet/intel/ice/ice.h b/drivers/net/ethernet/intel/ice/ice.h index 43fe91213aa58..2d5612f3639d3 100644 --- a/drivers/net/ethernet/intel/ice/ice.h +++ b/drivers/net/ethernet/intel/ice/ice.h @@ -155,6 +155,13 @@ #define ice_pf_to_dev(pf) (&((pf)->pdev->dev)) +enum ice_feature { + ICE_F_DSCP, + ICE_F_ROCE_LAG, + ICE_F_SRIOV_LAG, + ICE_F_MAX +}; + struct ice_txq_meta { u32 q_teid; /* Tx-scheduler element identifier */ u16 q_id; /* Entry in VSI's txq_map bitmap */ @@ -442,6 +449,7 @@ struct ice_pf { /* used to ratelimit the MDD event logging */ unsigned long last_printed_mdd_jiffies; DECLARE_BITMAP(malvfs, ICE_MAX_VF_COUNT); + DECLARE_BITMAP(features, ICE_F_MAX); DECLARE_BITMAP(state, ICE_STATE_NBITS); DECLARE_BITMAP(flags, ICE_PF_FLAGS_NBITS); unsigned long *avail_txqs; /* bitmap to track PF Tx queue usage */ diff --git a/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h b/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h index 21b4c7cd6f050..9a721f9d38ee0 100644 --- a/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h +++ b/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h @@ -118,6 +118,9 @@ struct ice_aqc_list_caps_elem { #define ICE_AQC_CAPS_PENDING_NET_VER 0x004D #define ICE_AQC_CAPS_RDMA 0x0051 #define ICE_AQC_CAPS_NVM_MGMT 0x0080 +#define ICE_AQC_CAPS_FW_LAG_SUPPORT 0x0092 +#define ICE_AQC_BIT_ROCEV2_LAG 0x01 +#define ICE_AQC_BIT_SRIOV_LAG 0x02 u8 major_ver; u8 minor_ver; diff --git a/drivers/net/ethernet/intel/ice/ice_common.c b/drivers/net/ethernet/intel/ice/ice_common.c index 3de6f16f985ab..f8d9b2be26c8c 100644 --- a/drivers/net/ethernet/intel/ice/ice_common.c +++ b/drivers/net/ethernet/intel/ice/ice_common.c @@ -2022,6 +2022,14 @@ ice_parse_common_caps(struct ice_hw *hw, struct ice_hw_common_caps *caps, ice_debug(hw, ICE_DBG_INIT, "%s: max_mtu = %d\n", prefix, caps->max_mtu); break; + case ICE_AQC_CAPS_FW_LAG_SUPPORT: + caps->roce_lag = !!(number & ICE_AQC_BIT_ROCEV2_LAG); + ice_debug(hw, ICE_DBG_INIT, "%s: roce_lag = %u\n", + prefix, caps->roce_lag); + caps->sriov_lag = !!(number & ICE_AQC_BIT_SRIOV_LAG); + ice_debug(hw, ICE_DBG_INIT, "%s: sriov_lag = %u\n", + prefix, caps->sriov_lag); + break; default: /* Not one of the recognized common capabilities */ found = false; diff --git a/drivers/net/ethernet/intel/ice/ice_lag.c b/drivers/net/ethernet/intel/ice/ice_lag.c index 4f954db01b929..8869077506675 100644 --- a/drivers/net/ethernet/intel/ice/ice_lag.c +++ b/drivers/net/ethernet/intel/ice/ice_lag.c @@ -4,6 +4,7 @@ /* Link Aggregation code */ #include "ice.h" +#include "ice_lib.h" #include "ice_lag.h" /** @@ -237,6 +238,26 @@ static void ice_lag_unregister(struct ice_lag *lag, struct net_device *netdev) lag->role = ICE_LAG_NONE; } +/** + * ice_lag_init_feature_support_flag - Check for NVM support for LAG + * @pf: PF struct + */ +static void ice_lag_init_feature_support_flag(struct ice_pf *pf) +{ + struct ice_hw_common_caps *caps; + + caps = &pf->hw.dev_caps.common_cap; + if (caps->roce_lag) + ice_set_feature_support(pf, ICE_F_ROCE_LAG); + else + clear_bit(ICE_F_ROCE_LAG, pf->features); + + if (caps->sriov_lag) + ice_set_feature_support(pf, ICE_F_SRIOV_LAG); + else + clear_bit(ICE_F_SRIOV_LAG, pf->features); +} + /** * ice_lag_changeupper_event - handle LAG changeupper event * @lag: LAG info struct @@ -276,26 +297,6 @@ static void ice_lag_changeupper_event(struct ice_lag *lag, void *ptr) ice_display_lag_info(lag); } -/** - * ice_lag_changelower_event - handle LAG changelower event - * @lag: LAG info struct - * @ptr: opaque data pointer - * - * ptr to be cast to netdev_notifier_changelowerstate_info - */ -static void ice_lag_changelower_event(struct ice_lag *lag, void *ptr) -{ - struct net_device *netdev = netdev_notifier_info_to_dev(ptr); - - if (netdev != lag->netdev) - return; - - netdev_dbg(netdev, "bonding info\n"); - - if (!netif_is_lag_port(netdev)) - netdev_dbg(netdev, "CHANGELOWER rcvd, but netdev not in LAG. Bail\n"); -} - /** * ice_lag_event_handler - handle LAG events from netdev * @notif_blk: notifier block registered by this netdev @@ -322,9 +323,6 @@ ice_lag_event_handler(struct notifier_block *notif_blk, unsigned long event, case NETDEV_CHANGEUPPER: ice_lag_changeupper_event(lag, ptr); break; - case NETDEV_CHANGELOWERSTATE: - ice_lag_changelower_event(lag, ptr); - break; case NETDEV_BONDING_INFO: ice_lag_info_event(lag, ptr); break; @@ -391,6 +389,10 @@ int ice_init_lag(struct ice_pf *pf) struct ice_vsi *vsi; int err; + ice_lag_init_feature_support_flag(pf); + if (!ice_is_feature_supported(pf, ICE_F_SRIOV_LAG)) + return 0; + pf->lag = kzalloc(sizeof(*lag), GFP_KERNEL); if (!pf->lag) return -ENOMEM; diff --git a/drivers/net/ethernet/intel/ice/ice_lib.c b/drivers/net/ethernet/intel/ice/ice_lib.c index 4417238b0e64f..702890fd77c81 100644 --- a/drivers/net/ethernet/intel/ice/ice_lib.c +++ b/drivers/net/ethernet/intel/ice/ice_lib.c @@ -954,8 +954,7 @@ static void ice_set_rss_vsi_ctx(struct ice_vsi_ctx *ctxt, struct ice_vsi *vsi) ctxt->info.q_opt_rss = ((lut_type << ICE_AQ_VSI_Q_OPT_RSS_LUT_S) & ICE_AQ_VSI_Q_OPT_RSS_LUT_M) | - ((hash_type << ICE_AQ_VSI_Q_OPT_RSS_HASH_S) & - ICE_AQ_VSI_Q_OPT_RSS_HASH_M); + (hash_type & ICE_AQ_VSI_Q_OPT_RSS_HASH_M); } /** @@ -3597,3 +3596,50 @@ int ice_set_link(struct ice_vsi *vsi, bool ena) return 0; } + +/** + * ice_is_feature_supported + * @pf: pointer to the struct ice_pf instance + * @f: feature enum to be checked + * + * returns true if feature is supported, false otherwise + */ +bool ice_is_feature_supported(struct ice_pf *pf, enum ice_feature f) +{ + if (f < 0 || f >= ICE_F_MAX) + return false; + + return test_bit(f, pf->features); +} + +/** + * ice_set_feature_support + * @pf: pointer to the struct ice_pf instance + * @f: feature enum to set + */ +void ice_set_feature_support(struct ice_pf *pf, enum ice_feature f) +{ + if (f < 0 || f >= ICE_F_MAX) + return; + + set_bit(f, pf->features); +} + +/** + * ice_init_feature_support + * @pf: pointer to the struct ice_pf instance + * + * called during init to setup supported feature + */ +void ice_init_feature_support(struct ice_pf *pf) +{ + switch (pf->hw.device_id) { + case ICE_DEV_ID_E810C_BACKPLANE: + case ICE_DEV_ID_E810C_QSFP: + case ICE_DEV_ID_E810C_SFP: + ice_set_feature_support(pf, ICE_F_DSCP); + break; + default: + break; + } +} diff --git a/drivers/net/ethernet/intel/ice/ice_lib.h b/drivers/net/ethernet/intel/ice/ice_lib.h index d5a28bf0fc2cc..2662745c93105 100644 --- a/drivers/net/ethernet/intel/ice/ice_lib.h +++ b/drivers/net/ethernet/intel/ice/ice_lib.h @@ -116,4 +116,7 @@ bool ice_is_vsi_dflt_vsi(struct ice_sw *sw, struct ice_vsi *vsi); int ice_set_dflt_vsi(struct ice_sw *sw, struct ice_vsi *vsi); int ice_clear_dflt_vsi(struct ice_sw *sw); +bool ice_is_feature_supported(struct ice_pf *pf, enum ice_feature f); +void ice_set_feature_support(struct ice_pf *pf, enum ice_feature f); +void ice_init_feature_support(struct ice_pf *pf); #endif /* !_ICE_LIB_H_ */ diff --git a/drivers/net/ethernet/intel/ice/ice_main.c b/drivers/net/ethernet/intel/ice/ice_main.c index dc0ee907f1333..975ccca510239 100644 --- a/drivers/net/ethernet/intel/ice/ice_main.c +++ b/drivers/net/ethernet/intel/ice/ice_main.c @@ -6,6 +6,7 @@ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include +#include #include "ice.h" #include "ice_base.h" #include "ice_lib.h" @@ -1177,6 +1178,7 @@ int ice_aq_wait_for_event(struct ice_pf *pf, u16 opcode, unsigned long timeout, static void ice_aq_check_events(struct ice_pf *pf, u16 opcode, struct ice_rq_event_info *event) { + struct ice_rq_event_info *task_ev; struct ice_aq_task *task; bool found = false; @@ -1185,15 +1187,15 @@ static void ice_aq_check_events(struct ice_pf *pf, u16 opcode, if (task->state || task->opcode != opcode) continue; - memcpy(&task->event->desc, &event->desc, sizeof(event->desc)); - task->event->msg_len = event->msg_len; + task_ev = task->event; + memcpy(&task_ev->desc, &event->desc, sizeof(event->desc)); + task_ev->msg_len = event->msg_len; /* Only copy the data buffer if a destination was set */ - if (task->event->msg_buf && - task->event->buf_len > event->buf_len) { - memcpy(task->event->msg_buf, event->msg_buf, + if (task_ev->msg_buf && task_ev->buf_len >= event->buf_len) { + memcpy(task_ev->msg_buf, event->msg_buf, event->buf_len); - task->event->buf_len = event->buf_len; + task_ev->buf_len = event->buf_len; } task->state = ICE_AQ_TASK_COMPLETE; @@ -4273,6 +4275,20 @@ ice_probe(struct pci_dev *pdev, const struct pci_device_id __always_unused *ent) return -EINVAL; } + /* when under a kdump kernel initiate a reset before enabling the + * device in order to clear out any pending DMA transactions. These + * transactions can cause some systems to machine check when doing + * the pcim_enable_device() below. + */ + if (is_kdump_kernel()) { + pci_save_state(pdev); + pci_clear_master(pdev); + err = pcie_flr(pdev); + if (err) + return err; + pci_restore_state(pdev); + } + /* this driver uses devres, see * Documentation/driver-api/driver-model/devres.rst */ @@ -4345,6 +4361,8 @@ ice_probe(struct pci_dev *pdev, const struct pci_device_id __always_unused *ent) goto err_exit_unroll; } + ice_init_feature_support(pf); + ice_request_fw(pf); /* if ice_request_fw fails, ICE_FLAG_ADV_FEATURES bit won't be diff --git a/drivers/net/ethernet/intel/ice/ice_txrx.c b/drivers/net/ethernet/intel/ice/ice_txrx.c index 6ee8e0032d52c..56024a7800567 100644 --- a/drivers/net/ethernet/intel/ice/ice_txrx.c +++ b/drivers/net/ethernet/intel/ice/ice_txrx.c @@ -546,7 +546,7 @@ ice_run_xdp(struct ice_ring *rx_ring, struct xdp_buff *xdp, goto out_failure; return ICE_XDP_REDIR; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(rx_ring->netdev, xdp_prog, act); fallthrough; case XDP_ABORTED: out_failure: diff --git a/drivers/net/ethernet/intel/ice/ice_type.h b/drivers/net/ethernet/intel/ice/ice_type.h index d33d1906103c7..fcee84c6fa6e0 100644 --- a/drivers/net/ethernet/intel/ice/ice_type.h +++ b/drivers/net/ethernet/intel/ice/ice_type.h @@ -268,6 +268,8 @@ struct ice_hw_common_caps { u8 dcb; u8 ieee_1588; u8 rdma; + u8 roce_lag; + u8 sriov_lag; bool nvm_update_pending_nvm; bool nvm_update_pending_orom; diff --git a/drivers/net/ethernet/intel/ice/ice_xsk.c b/drivers/net/ethernet/intel/ice/ice_xsk.c index 070be30cbaa91..5aa79d73a59b5 100644 --- a/drivers/net/ethernet/intel/ice/ice_xsk.c +++ b/drivers/net/ethernet/intel/ice/ice_xsk.c @@ -506,7 +506,7 @@ ice_run_xdp_zc(struct ice_ring *rx_ring, struct xdp_buff *xdp) goto out_failure; break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(rx_ring->netdev, xdp_prog, act); fallthrough; case XDP_ABORTED: out_failure: diff --git a/drivers/net/ethernet/intel/igb/igb.h b/drivers/net/ethernet/intel/igb/igb.h index 015b781441149..a2b759531cb7b 100644 --- a/drivers/net/ethernet/intel/igb/igb.h +++ b/drivers/net/ethernet/intel/igb/igb.h @@ -34,11 +34,11 @@ struct igb_adapter; /* TX/RX descriptor defines */ #define IGB_DEFAULT_TXD 256 #define IGB_DEFAULT_TX_WORK 128 -#define IGB_MIN_TXD 80 +#define IGB_MIN_TXD 64 #define IGB_MAX_TXD 4096 #define IGB_DEFAULT_RXD 256 -#define IGB_MIN_RXD 80 +#define IGB_MIN_RXD 64 #define IGB_MAX_RXD 4096 #define IGB_DEFAULT_ITR 3 /* dynamic */ diff --git a/drivers/net/ethernet/intel/igb/igb_ethtool.c b/drivers/net/ethernet/intel/igb/igb_ethtool.c index b2f46004a3d0f..39c7bdf8c0e2d 100644 --- a/drivers/net/ethernet/intel/igb/igb_ethtool.c +++ b/drivers/net/ethernet/intel/igb/igb_ethtool.c @@ -2974,11 +2974,15 @@ static int igb_add_ethtool_nfc_entry(struct igb_adapter *adapter, if (err) goto err_out_w_lock; - igb_update_ethtool_nfc_entry(adapter, input, input->sw_idx); + err = igb_update_ethtool_nfc_entry(adapter, input, input->sw_idx); + if (err) + goto err_out_input_filter; spin_unlock(&adapter->nfc_lock); return 0; +err_out_input_filter: + igb_erase_filter(adapter, input); err_out_w_lock: spin_unlock(&adapter->nfc_lock); err_out: diff --git a/drivers/net/ethernet/intel/igb/igb_main.c b/drivers/net/ethernet/intel/igb/igb_main.c index d456cec5b500d..f5978558df6c7 100644 --- a/drivers/net/ethernet/intel/igb/igb_main.c +++ b/drivers/net/ethernet/intel/igb/igb_main.c @@ -3856,8 +3856,9 @@ static void igb_probe_vfs(struct igb_adapter *adapter) struct pci_dev *pdev = adapter->pdev; struct e1000_hw *hw = &adapter->hw; - /* Virtualization features not supported on i210 family. */ - if ((hw->mac.type == e1000_i210) || (hw->mac.type == e1000_i211)) + /* Virtualization features not supported on i210 and 82580 family. */ + if ((hw->mac.type == e1000_i210) || (hw->mac.type == e1000_i211) || + (hw->mac.type == e1000_82580)) return; /* Of the below we really only want the effect of getting @@ -8441,7 +8442,7 @@ static struct sk_buff *igb_run_xdp(struct igb_adapter *adapter, result = IGB_XDP_REDIR; break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(adapter->netdev, xdp_prog, act); fallthrough; case XDP_ABORTED: out_failure: diff --git a/drivers/net/ethernet/intel/igbvf/igbvf.h b/drivers/net/ethernet/intel/igbvf/igbvf.h index 975eb47ee04df..b39fca9827dc2 100644 --- a/drivers/net/ethernet/intel/igbvf/igbvf.h +++ b/drivers/net/ethernet/intel/igbvf/igbvf.h @@ -39,11 +39,11 @@ enum latency_range { /* Tx/Rx descriptor defines */ #define IGBVF_DEFAULT_TXD 256 #define IGBVF_MAX_TXD 4096 -#define IGBVF_MIN_TXD 80 +#define IGBVF_MIN_TXD 64 #define IGBVF_DEFAULT_RXD 256 #define IGBVF_MAX_RXD 4096 -#define IGBVF_MIN_RXD 80 +#define IGBVF_MIN_RXD 64 #define IGBVF_MIN_ITR_USECS 10 /* 100000 irq/sec */ #define IGBVF_MAX_ITR_USECS 10000 /* 100 irq/sec */ diff --git a/drivers/net/ethernet/intel/igc/igc.h b/drivers/net/ethernet/intel/igc/igc.h index 192fee9e72b05..e09ca21b8e3fe 100644 --- a/drivers/net/ethernet/intel/igc/igc.h +++ b/drivers/net/ethernet/intel/igc/igc.h @@ -359,11 +359,11 @@ static inline u32 igc_rss_type(const union igc_adv_rx_desc *rx_desc) /* TX/RX descriptor defines */ #define IGC_DEFAULT_TXD 256 #define IGC_DEFAULT_TX_WORK 128 -#define IGC_MIN_TXD 80 +#define IGC_MIN_TXD 64 #define IGC_MAX_TXD 4096 #define IGC_DEFAULT_RXD 256 -#define IGC_MIN_RXD 80 +#define IGC_MIN_RXD 64 #define IGC_MAX_RXD 4096 /* Supported Rx Buffer Sizes */ diff --git a/drivers/net/ethernet/intel/igc/igc_ethtool.c b/drivers/net/ethernet/intel/igc/igc_ethtool.c index 859ddc07fbbfe..3bffd2729a439 100644 --- a/drivers/net/ethernet/intel/igc/igc_ethtool.c +++ b/drivers/net/ethernet/intel/igc/igc_ethtool.c @@ -861,6 +861,18 @@ static void igc_ethtool_get_stats(struct net_device *netdev, spin_unlock(&adapter->stats64_lock); } +static int igc_ethtool_get_previous_rx_coalesce(struct igc_adapter *adapter) +{ + return (adapter->rx_itr_setting <= 3) ? + adapter->rx_itr_setting : adapter->rx_itr_setting >> 2; +} + +static int igc_ethtool_get_previous_tx_coalesce(struct igc_adapter *adapter) +{ + return (adapter->tx_itr_setting <= 3) ? + adapter->tx_itr_setting : adapter->tx_itr_setting >> 2; +} + static int igc_ethtool_get_coalesce(struct net_device *netdev, struct ethtool_coalesce *ec, struct kernel_ethtool_coalesce *kernel_coal, @@ -868,17 +880,8 @@ static int igc_ethtool_get_coalesce(struct net_device *netdev, { struct igc_adapter *adapter = netdev_priv(netdev); - if (adapter->rx_itr_setting <= 3) - ec->rx_coalesce_usecs = adapter->rx_itr_setting; - else - ec->rx_coalesce_usecs = adapter->rx_itr_setting >> 2; - - if (!(adapter->flags & IGC_FLAG_QUEUE_PAIRS)) { - if (adapter->tx_itr_setting <= 3) - ec->tx_coalesce_usecs = adapter->tx_itr_setting; - else - ec->tx_coalesce_usecs = adapter->tx_itr_setting >> 2; - } + ec->rx_coalesce_usecs = igc_ethtool_get_previous_rx_coalesce(adapter); + ec->tx_coalesce_usecs = igc_ethtool_get_previous_tx_coalesce(adapter); return 0; } @@ -903,8 +906,12 @@ static int igc_ethtool_set_coalesce(struct net_device *netdev, ec->tx_coalesce_usecs == 2) return -EINVAL; - if ((adapter->flags & IGC_FLAG_QUEUE_PAIRS) && ec->tx_coalesce_usecs) + if ((adapter->flags & IGC_FLAG_QUEUE_PAIRS) && + ec->tx_coalesce_usecs != igc_ethtool_get_previous_tx_coalesce(adapter)) { + NL_SET_ERR_MSG_MOD(extack, + "Queue Pair mode enabled, both Rx and Tx coalescing controlled by rx-usecs"); return -EINVAL; + } /* If ITR is disabled, disable DMAC */ if (ec->rx_coalesce_usecs == 0) { @@ -1803,7 +1810,7 @@ igc_ethtool_set_link_ksettings(struct net_device *netdev, struct igc_adapter *adapter = netdev_priv(netdev); struct net_device *dev = adapter->netdev; struct igc_hw *hw = &adapter->hw; - u32 advertising; + u16 advertised = 0; /* When adapter in resetting mode, autoneg/speed/duplex * cannot be changed @@ -1828,18 +1835,33 @@ igc_ethtool_set_link_ksettings(struct net_device *netdev, while (test_and_set_bit(__IGC_RESETTING, &adapter->state)) usleep_range(1000, 2000); - ethtool_convert_link_mode_to_legacy_u32(&advertising, - cmd->link_modes.advertising); - /* Converting to legacy u32 drops ETHTOOL_LINK_MODE_2500baseT_Full_BIT. - * We have to check this and convert it to ADVERTISE_2500_FULL - * (aka ETHTOOL_LINK_MODE_2500baseX_Full_BIT) explicitly. - */ - if (ethtool_link_ksettings_test_link_mode(cmd, advertising, 2500baseT_Full)) - advertising |= ADVERTISE_2500_FULL; + if (ethtool_link_ksettings_test_link_mode(cmd, advertising, + 2500baseT_Full)) + advertised |= ADVERTISE_2500_FULL; + + if (ethtool_link_ksettings_test_link_mode(cmd, advertising, + 1000baseT_Full)) + advertised |= ADVERTISE_1000_FULL; + + if (ethtool_link_ksettings_test_link_mode(cmd, advertising, + 100baseT_Full)) + advertised |= ADVERTISE_100_FULL; + + if (ethtool_link_ksettings_test_link_mode(cmd, advertising, + 100baseT_Half)) + advertised |= ADVERTISE_100_HALF; + + if (ethtool_link_ksettings_test_link_mode(cmd, advertising, + 10baseT_Full)) + advertised |= ADVERTISE_10_FULL; + + if (ethtool_link_ksettings_test_link_mode(cmd, advertising, + 10baseT_Half)) + advertised |= ADVERTISE_10_HALF; if (cmd->base.autoneg == AUTONEG_ENABLE) { hw->mac.autoneg = 1; - hw->phy.autoneg_advertised = advertising; + hw->phy.autoneg_advertised = advertised; if (adapter->fc_autoneg) hw->fc.requested_mode = igc_fc_default; } else { diff --git a/drivers/net/ethernet/intel/igc/igc_main.c b/drivers/net/ethernet/intel/igc/igc_main.c index 607d0467b5a50..fe281ce130d0e 100644 --- a/drivers/net/ethernet/intel/igc/igc_main.c +++ b/drivers/net/ethernet/intel/igc/igc_main.c @@ -2412,7 +2412,7 @@ static int __igc_xdp_run_prog(struct igc_adapter *adapter, return IGC_XDP_REDIRECT; break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(adapter->netdev, prog, act); fallthrough; case XDP_ABORTED: out_failure: @@ -6271,7 +6271,7 @@ static int igc_xdp_xmit(struct net_device *dev, int num_frames, struct igc_ring *ring; int i, drops; - if (unlikely(test_bit(__IGC_DOWN, &adapter->state))) + if (unlikely(!netif_carrier_ok(dev))) return -ENETDOWN; if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c index 8218ba0f7ce7f..a71cc0d22cd2a 100644 --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c @@ -2226,7 +2226,7 @@ static struct sk_buff *ixgbe_run_xdp(struct ixgbe_adapter *adapter, result = IXGBE_XDP_REDIR; break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(rx_ring->netdev, xdp_prog, act); fallthrough; case XDP_ABORTED: out_failure: diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c index 29be1d6eca436..affd132534eab 100644 --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c @@ -989,6 +989,7 @@ static int ixgbe_ptp_set_timestamp_mode(struct ixgbe_adapter *adapter, u32 tsync_tx_ctl = IXGBE_TSYNCTXCTL_ENABLED; u32 tsync_rx_ctl = IXGBE_TSYNCRXCTL_ENABLED; u32 tsync_rx_mtrl = PTP_EV_PORT << 16; + u32 aflags = adapter->flags; bool is_l2 = false; u32 regval; @@ -1010,20 +1011,20 @@ static int ixgbe_ptp_set_timestamp_mode(struct ixgbe_adapter *adapter, case HWTSTAMP_FILTER_NONE: tsync_rx_ctl = 0; tsync_rx_mtrl = 0; - adapter->flags &= ~(IXGBE_FLAG_RX_HWTSTAMP_ENABLED | - IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER); + aflags &= ~(IXGBE_FLAG_RX_HWTSTAMP_ENABLED | + IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER); break; case HWTSTAMP_FILTER_PTP_V1_L4_SYNC: tsync_rx_ctl |= IXGBE_TSYNCRXCTL_TYPE_L4_V1; tsync_rx_mtrl |= IXGBE_RXMTRL_V1_SYNC_MSG; - adapter->flags |= (IXGBE_FLAG_RX_HWTSTAMP_ENABLED | - IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER); + aflags |= (IXGBE_FLAG_RX_HWTSTAMP_ENABLED | + IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER); break; case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ: tsync_rx_ctl |= IXGBE_TSYNCRXCTL_TYPE_L4_V1; tsync_rx_mtrl |= IXGBE_RXMTRL_V1_DELAY_REQ_MSG; - adapter->flags |= (IXGBE_FLAG_RX_HWTSTAMP_ENABLED | - IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER); + aflags |= (IXGBE_FLAG_RX_HWTSTAMP_ENABLED | + IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER); break; case HWTSTAMP_FILTER_PTP_V2_EVENT: case HWTSTAMP_FILTER_PTP_V2_L2_EVENT: @@ -1037,8 +1038,8 @@ static int ixgbe_ptp_set_timestamp_mode(struct ixgbe_adapter *adapter, tsync_rx_ctl |= IXGBE_TSYNCRXCTL_TYPE_EVENT_V2; is_l2 = true; config->rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT; - adapter->flags |= (IXGBE_FLAG_RX_HWTSTAMP_ENABLED | - IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER); + aflags |= (IXGBE_FLAG_RX_HWTSTAMP_ENABLED | + IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER); break; case HWTSTAMP_FILTER_PTP_V1_L4_EVENT: case HWTSTAMP_FILTER_NTP_ALL: @@ -1049,7 +1050,7 @@ static int ixgbe_ptp_set_timestamp_mode(struct ixgbe_adapter *adapter, if (hw->mac.type >= ixgbe_mac_X550) { tsync_rx_ctl |= IXGBE_TSYNCRXCTL_TYPE_ALL; config->rx_filter = HWTSTAMP_FILTER_ALL; - adapter->flags |= IXGBE_FLAG_RX_HWTSTAMP_ENABLED; + aflags |= IXGBE_FLAG_RX_HWTSTAMP_ENABLED; break; } fallthrough; @@ -1060,8 +1061,6 @@ static int ixgbe_ptp_set_timestamp_mode(struct ixgbe_adapter *adapter, * Delay_Req messages and hardware does not support * timestamping all packets => return error */ - adapter->flags &= ~(IXGBE_FLAG_RX_HWTSTAMP_ENABLED | - IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER); config->rx_filter = HWTSTAMP_FILTER_NONE; return -ERANGE; } @@ -1093,8 +1092,8 @@ static int ixgbe_ptp_set_timestamp_mode(struct ixgbe_adapter *adapter, IXGBE_TSYNCRXCTL_TYPE_ALL | IXGBE_TSYNCRXCTL_TSIP_UT_EN; config->rx_filter = HWTSTAMP_FILTER_ALL; - adapter->flags |= IXGBE_FLAG_RX_HWTSTAMP_ENABLED; - adapter->flags &= ~IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER; + aflags |= IXGBE_FLAG_RX_HWTSTAMP_ENABLED; + aflags &= ~IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER; is_l2 = true; break; default: @@ -1127,6 +1126,9 @@ static int ixgbe_ptp_set_timestamp_mode(struct ixgbe_adapter *adapter, IXGBE_WRITE_FLUSH(hw); + /* configure adapter flags only when HW is actually configured */ + adapter->flags = aflags; + /* clear TX/RX time stamp registers, just to be sure */ ixgbe_ptp_clear_tx_timestamp(adapter); IXGBE_READ_REG(hw, IXGBE_RXSTMPH); diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c index a1e69c7348632..70a22f809b392 100644 --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c @@ -28,6 +28,9 @@ static inline void ixgbe_alloc_vf_macvlans(struct ixgbe_adapter *adapter, struct vf_macvlans *mv_list; int num_vf_macvlans, i; + /* Initialize list of VF macvlans */ + INIT_LIST_HEAD(&adapter->vf_mvs.l); + num_vf_macvlans = hw->mac.num_rar_entries - (IXGBE_MAX_PF_MACVLANS + 1 + num_vfs); if (!num_vf_macvlans) @@ -36,8 +39,6 @@ static inline void ixgbe_alloc_vf_macvlans(struct ixgbe_adapter *adapter, mv_list = kcalloc(num_vf_macvlans, sizeof(struct vf_macvlans), GFP_KERNEL); if (mv_list) { - /* Initialize list of VF macvlans */ - INIT_LIST_HEAD(&adapter->vf_mvs.l); for (i = 0; i < num_vf_macvlans; i++) { mv_list[i].vf = -1; mv_list[i].free = true; diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.c index b399b9c147172..80085015a690e 100644 --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.c +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.c @@ -125,7 +125,7 @@ static int ixgbe_run_xdp_zc(struct ixgbe_adapter *adapter, goto out_failure; break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(rx_ring->netdev, xdp_prog, act); fallthrough; case XDP_ABORTED: out_failure: diff --git a/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c b/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c index 8aa3e8d630f2f..5790f862ca625 100644 --- a/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c +++ b/drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c @@ -1070,7 +1070,7 @@ static struct sk_buff *ixgbevf_run_xdp(struct ixgbevf_adapter *adapter, goto out_failure; break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(rx_ring->netdev, xdp_prog, act); fallthrough; case XDP_ABORTED: out_failure: diff --git a/drivers/net/ethernet/marvell/mvneta.c b/drivers/net/ethernet/marvell/mvneta.c index 5fa81322a44be..6e170fe0be019 100644 --- a/drivers/net/ethernet/marvell/mvneta.c +++ b/drivers/net/ethernet/marvell/mvneta.c @@ -2212,7 +2212,7 @@ mvneta_run_xdp(struct mvneta_port *pp, struct mvneta_rx_queue *rxq, mvneta_xdp_put_buff(pp, rxq, xdp, sinfo, sync); break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(pp->dev, prog, act); fallthrough; case XDP_ABORTED: trace_xdp_exception(pp->dev, prog, act); diff --git a/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c b/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c index ddd4ed34b0f20..69111ac227b78 100644 --- a/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c +++ b/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c @@ -3820,7 +3820,7 @@ mvpp2_run_xdp(struct mvpp2_port *port, struct bpf_prog *prog, } break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(port->dev, prog, act); fallthrough; case XDP_ABORTED: trace_xdp_exception(port->dev, prog, act); @@ -5572,6 +5572,11 @@ static int mvpp2_ethtool_get_rxnfc(struct net_device *dev, break; case ETHTOOL_GRXCLSRLALL: for (i = 0; i < MVPP2_N_RFS_ENTRIES_PER_FLOW; i++) { + if (loc == info->rule_cnt) { + ret = -EMSGSIZE; + break; + } + if (port->rfs_rules[i]) rules[loc++] = i; } diff --git a/drivers/net/ethernet/marvell/octeontx2/af/rvu_devlink.c b/drivers/net/ethernet/marvell/octeontx2/af/rvu_devlink.c index 274d3abe30eb4..ba7ff776760d3 100644 --- a/drivers/net/ethernet/marvell/octeontx2/af/rvu_devlink.c +++ b/drivers/net/ethernet/marvell/octeontx2/af/rvu_devlink.c @@ -1284,7 +1284,7 @@ static int rvu_npa_register_reporters(struct rvu_devlink *rvu_dl) rvu_dl->devlink_wq = create_workqueue("rvu_devlink_wq"); if (!rvu_dl->devlink_wq) - goto err; + return -ENOMEM; INIT_WORK(&rvu_reporters->intr_work, rvu_npa_intr_work); INIT_WORK(&rvu_reporters->err_work, rvu_npa_err_work); @@ -1292,9 +1292,6 @@ static int rvu_npa_register_reporters(struct rvu_devlink *rvu_dl) INIT_WORK(&rvu_reporters->ras_work, rvu_npa_ras_work); return 0; -err: - rvu_npa_health_reporters_destroy(rvu_dl); - return -ENOMEM; } static int rvu_npa_health_reporters_create(struct rvu_devlink *rvu_dl) diff --git a/drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c b/drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c index f5922d63e33e4..5f9f6da5c45bb 100644 --- a/drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c +++ b/drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c @@ -841,6 +841,21 @@ static int nix_aq_enqueue_wait(struct rvu *rvu, struct rvu_block *block, return 0; } +static void nix_get_aq_req_smq(struct rvu *rvu, struct nix_aq_enq_req *req, + u16 *smq, u16 *smq_mask) +{ + struct nix_cn10k_aq_enq_req *aq_req; + + if (!is_rvu_otx2(rvu)) { + aq_req = (struct nix_cn10k_aq_enq_req *)req; + *smq = aq_req->sq.smq; + *smq_mask = aq_req->sq_mask.smq; + } else { + *smq = req->sq.smq; + *smq_mask = req->sq_mask.smq; + } +} + static int rvu_nix_blk_aq_enq_inst(struct rvu *rvu, struct nix_hw *nix_hw, struct nix_aq_enq_req *req, struct nix_aq_enq_rsp *rsp) @@ -852,6 +867,7 @@ static int rvu_nix_blk_aq_enq_inst(struct rvu *rvu, struct nix_hw *nix_hw, struct rvu_block *block; struct admin_queue *aq; struct rvu_pfvf *pfvf; + u16 smq, smq_mask; void *ctx, *mask; bool ena; u64 cfg; @@ -923,13 +939,14 @@ static int rvu_nix_blk_aq_enq_inst(struct rvu *rvu, struct nix_hw *nix_hw, if (rc) return rc; + nix_get_aq_req_smq(rvu, req, &smq, &smq_mask); /* Check if SQ pointed SMQ belongs to this PF/VF or not */ if (req->ctype == NIX_AQ_CTYPE_SQ && ((req->op == NIX_AQ_INSTOP_INIT && req->sq.ena) || (req->op == NIX_AQ_INSTOP_WRITE && - req->sq_mask.ena && req->sq_mask.smq && req->sq.ena))) { + req->sq_mask.ena && req->sq.ena && smq_mask))) { if (!is_valid_txschq(rvu, blkaddr, NIX_TXSCH_LVL_SMQ, - pcifunc, req->sq.smq)) + pcifunc, smq)) return NIX_AF_ERR_AQ_ENQUEUE; } @@ -5028,6 +5045,8 @@ int rvu_mbox_handler_nix_bandprof_free(struct rvu *rvu, ipolicer = &nix_hw->ipolicer[layer]; for (idx = 0; idx < req->prof_count[layer]; idx++) { + if (idx == MAX_BANDPROF_PER_PFFUNC) + break; prof_idx = req->prof_idx[layer][idx]; if (prof_idx >= ipolicer->band_prof.max || ipolicer->pfvf_map[prof_idx] != pcifunc) @@ -5041,8 +5060,6 @@ int rvu_mbox_handler_nix_bandprof_free(struct rvu *rvu, ipolicer->pfvf_map[prof_idx] = 0x00; ipolicer->match_id[prof_idx] = 0; rvu_free_rsrc(&ipolicer->band_prof, prof_idx); - if (idx == MAX_BANDPROF_PER_PFFUNC) - break; } } mutex_unlock(&rvu->rsrc_lock); diff --git a/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c b/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c index d1249da7a18fb..a3fd20d26b942 100644 --- a/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c +++ b/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c @@ -388,7 +388,13 @@ static u64 npc_get_default_entry_action(struct rvu *rvu, struct npc_mcam *mcam, int bank, nixlf, index; /* get ucast entry rule entry index */ - nix_get_nixlf(rvu, pf_func, &nixlf, NULL); + if (nix_get_nixlf(rvu, pf_func, &nixlf, NULL)) { + dev_err(rvu->dev, "%s: nixlf not attached to pcifunc:0x%x\n", + __func__, pf_func); + /* Action 0 is drop */ + return 0; + } + index = npc_get_nixlf_mcam_index(mcam, pf_func, nixlf, NIXLF_UCAST_ENTRY); bank = npc_get_bank(mcam, index); diff --git a/drivers/net/ethernet/marvell/octeontx2/af/rvu_reg.c b/drivers/net/ethernet/marvell/octeontx2/af/rvu_reg.c index b3150f0532919..d46ac29adb966 100644 --- a/drivers/net/ethernet/marvell/octeontx2/af/rvu_reg.c +++ b/drivers/net/ethernet/marvell/octeontx2/af/rvu_reg.c @@ -31,8 +31,8 @@ static struct hw_reg_map txsch_reg_map[NIX_TXSCH_LVL_CNT] = { {NIX_TXSCH_LVL_TL4, 3, 0xFFFF, {{0x0B00, 0x0B08}, {0x0B10, 0x0B18}, {0x1200, 0x12E0} } }, {NIX_TXSCH_LVL_TL3, 4, 0xFFFF, {{0x1000, 0x10E0}, {0x1600, 0x1608}, - {0x1610, 0x1618}, {0x1700, 0x17B0} } }, - {NIX_TXSCH_LVL_TL2, 2, 0xFFFF, {{0x0E00, 0x0EE0}, {0x1700, 0x17B0} } }, + {0x1610, 0x1618}, {0x1700, 0x17C8} } }, + {NIX_TXSCH_LVL_TL2, 2, 0xFFFF, {{0x0E00, 0x0EE0}, {0x1700, 0x17C8} } }, {NIX_TXSCH_LVL_TL1, 1, 0xFFFF, {{0x0C00, 0x0D98} } }, }; diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_ethtool.c b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_ethtool.c index dbfa3bc39e34e..fa4b2d833d77b 100644 --- a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_ethtool.c +++ b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_ethtool.c @@ -316,9 +316,12 @@ static void otx2_get_pauseparam(struct net_device *netdev, if (is_otx2_lbkvf(pfvf->pdev)) return; + mutex_lock(&pfvf->mbox.lock); req = otx2_mbox_alloc_msg_cgx_cfg_pause_frm(&pfvf->mbox); - if (!req) + if (!req) { + mutex_unlock(&pfvf->mbox.lock); return; + } if (!otx2_sync_mbox_msg(&pfvf->mbox)) { rsp = (struct cgx_pause_frm_cfg *) @@ -326,6 +329,7 @@ static void otx2_get_pauseparam(struct net_device *netdev, pause->rx_pause = rsp->rx_pause; pause->tx_pause = rsp->tx_pause; } + mutex_unlock(&pfvf->mbox.lock); } static int otx2_set_pauseparam(struct net_device *netdev, diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_flows.c b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_flows.c index 483f660cebc40..c3e5ebc416676 100644 --- a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_flows.c +++ b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_flows.c @@ -1002,6 +1002,7 @@ int otx2_add_flow(struct otx2_nic *pfvf, struct ethtool_rxnfc *nfc) struct ethhdr *eth_hdr; bool new = false; int err = 0; + u64 vf_num; u32 ring; if (!flow_cfg->max_flows) { @@ -1014,7 +1015,21 @@ int otx2_add_flow(struct otx2_nic *pfvf, struct ethtool_rxnfc *nfc) if (!(pfvf->flags & OTX2_FLAG_NTUPLE_SUPPORT)) return -ENOMEM; - if (ring >= pfvf->hw.rx_queues && fsp->ring_cookie != RX_CLS_FLOW_DISC) + /* Number of queues on a VF can be greater or less than + * the PF's queue. Hence no need to check for the + * queue count. Hence no need to check queue count if PF + * is installing for its VF. Below is the expected vf_num value + * based on the ethtool commands. + * + * e.g. + * 1. ethtool -U ... action -1 ==> vf_num:255 + * 2. ethtool -U ... action ==> vf_num:0 + * 3. ethtool -U ... vf queue ==> + * vf_num:vf_idx+1 + */ + vf_num = ethtool_get_flow_spec_ring_vf(fsp->ring_cookie); + if (!is_otx2_vf(pfvf->pcifunc) && !vf_num && + ring >= pfvf->hw.rx_queues && fsp->ring_cookie != RX_CLS_FLOW_DISC) return -EINVAL; if (fsp->location >= otx2_get_maxflows(flow_cfg)) @@ -1096,6 +1111,9 @@ int otx2_add_flow(struct otx2_nic *pfvf, struct ethtool_rxnfc *nfc) flow_cfg->nr_flows++; } + if (flow->is_vf) + netdev_info(pfvf->netdev, + "Make sure that VF's queue number is within its queue limit\n"); return 0; } diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c index 8fc4ecc4f7140..4eec574631c7e 100644 --- a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c +++ b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c @@ -557,7 +557,9 @@ static irqreturn_t otx2_pfvf_mbox_intr_handler(int irq, void *pf_irq) otx2_write64(pf, RVU_PF_VFPF_MBOX_INTX(1), intr); otx2_queue_work(mbox, pf->mbox_pfvf_wq, 64, vfs, intr, TYPE_PFVF); - vfs -= 64; + if (intr) + trace_otx2_msg_interrupt(mbox->mbox.pdev, "VF(s) to PF", intr); + vfs = 64; } intr = otx2_read64(pf, RVU_PF_VFPF_MBOX_INTX(0)); @@ -565,7 +567,8 @@ static irqreturn_t otx2_pfvf_mbox_intr_handler(int irq, void *pf_irq) otx2_queue_work(mbox, pf->mbox_pfvf_wq, 0, vfs, intr, TYPE_PFVF); - trace_otx2_msg_interrupt(mbox->mbox.pdev, "VF(s) to PF", intr); + if (intr) + trace_otx2_msg_interrupt(mbox->mbox.pdev, "VF(s) to PF", intr); return IRQ_HANDLED; } @@ -1180,31 +1183,32 @@ static char *nix_mnqerr_e_str[NIX_MNQERR_MAX] = { }; static char *nix_snd_status_e_str[NIX_SND_STATUS_MAX] = { - "NIX_SND_STATUS_GOOD", - "NIX_SND_STATUS_SQ_CTX_FAULT", - "NIX_SND_STATUS_SQ_CTX_POISON", - "NIX_SND_STATUS_SQB_FAULT", - "NIX_SND_STATUS_SQB_POISON", - "NIX_SND_STATUS_HDR_ERR", - "NIX_SND_STATUS_EXT_ERR", - "NIX_SND_STATUS_JUMP_FAULT", - "NIX_SND_STATUS_JUMP_POISON", - "NIX_SND_STATUS_CRC_ERR", - "NIX_SND_STATUS_IMM_ERR", - "NIX_SND_STATUS_SG_ERR", - "NIX_SND_STATUS_MEM_ERR", - "NIX_SND_STATUS_INVALID_SUBDC", - "NIX_SND_STATUS_SUBDC_ORDER_ERR", - "NIX_SND_STATUS_DATA_FAULT", - "NIX_SND_STATUS_DATA_POISON", - "NIX_SND_STATUS_NPC_DROP_ACTION", - "NIX_SND_STATUS_LOCK_VIOL", - "NIX_SND_STATUS_NPC_UCAST_CHAN_ERR", - "NIX_SND_STATUS_NPC_MCAST_CHAN_ERR", - "NIX_SND_STATUS_NPC_MCAST_ABORT", - "NIX_SND_STATUS_NPC_VTAG_PTR_ERR", - "NIX_SND_STATUS_NPC_VTAG_SIZE_ERR", - "NIX_SND_STATUS_SEND_STATS_ERR", + [NIX_SND_STATUS_GOOD] = "NIX_SND_STATUS_GOOD", + [NIX_SND_STATUS_SQ_CTX_FAULT] = "NIX_SND_STATUS_SQ_CTX_FAULT", + [NIX_SND_STATUS_SQ_CTX_POISON] = "NIX_SND_STATUS_SQ_CTX_POISON", + [NIX_SND_STATUS_SQB_FAULT] = "NIX_SND_STATUS_SQB_FAULT", + [NIX_SND_STATUS_SQB_POISON] = "NIX_SND_STATUS_SQB_POISON", + [NIX_SND_STATUS_HDR_ERR] = "NIX_SND_STATUS_HDR_ERR", + [NIX_SND_STATUS_EXT_ERR] = "NIX_SND_STATUS_EXT_ERR", + [NIX_SND_STATUS_JUMP_FAULT] = "NIX_SND_STATUS_JUMP_FAULT", + [NIX_SND_STATUS_JUMP_POISON] = "NIX_SND_STATUS_JUMP_POISON", + [NIX_SND_STATUS_CRC_ERR] = "NIX_SND_STATUS_CRC_ERR", + [NIX_SND_STATUS_IMM_ERR] = "NIX_SND_STATUS_IMM_ERR", + [NIX_SND_STATUS_SG_ERR] = "NIX_SND_STATUS_SG_ERR", + [NIX_SND_STATUS_MEM_ERR] = "NIX_SND_STATUS_MEM_ERR", + [NIX_SND_STATUS_INVALID_SUBDC] = "NIX_SND_STATUS_INVALID_SUBDC", + [NIX_SND_STATUS_SUBDC_ORDER_ERR] = "NIX_SND_STATUS_SUBDC_ORDER_ERR", + [NIX_SND_STATUS_DATA_FAULT] = "NIX_SND_STATUS_DATA_FAULT", + [NIX_SND_STATUS_DATA_POISON] = "NIX_SND_STATUS_DATA_POISON", + [NIX_SND_STATUS_NPC_DROP_ACTION] = "NIX_SND_STATUS_NPC_DROP_ACTION", + [NIX_SND_STATUS_LOCK_VIOL] = "NIX_SND_STATUS_LOCK_VIOL", + [NIX_SND_STATUS_NPC_UCAST_CHAN_ERR] = "NIX_SND_STAT_NPC_UCAST_CHAN_ERR", + [NIX_SND_STATUS_NPC_MCAST_CHAN_ERR] = "NIX_SND_STAT_NPC_MCAST_CHAN_ERR", + [NIX_SND_STATUS_NPC_MCAST_ABORT] = "NIX_SND_STATUS_NPC_MCAST_ABORT", + [NIX_SND_STATUS_NPC_VTAG_PTR_ERR] = "NIX_SND_STATUS_NPC_VTAG_PTR_ERR", + [NIX_SND_STATUS_NPC_VTAG_SIZE_ERR] = "NIX_SND_STATUS_NPC_VTAG_SIZE_ERR", + [NIX_SND_STATUS_SEND_MEM_FAULT] = "NIX_SND_STATUS_SEND_MEM_FAULT", + [NIX_SND_STATUS_SEND_STATS_ERR] = "NIX_SND_STATUS_SEND_STATS_ERR", }; static irqreturn_t otx2_q_intr_handler(int irq, void *data) @@ -1224,14 +1228,16 @@ static irqreturn_t otx2_q_intr_handler(int irq, void *data) continue; if (val & BIT_ULL(42)) { - netdev_err(pf->netdev, "CQ%lld: error reading NIX_LF_CQ_OP_INT, NIX_LF_ERR_INT 0x%llx\n", + netdev_err(pf->netdev, + "CQ%lld: error reading NIX_LF_CQ_OP_INT, NIX_LF_ERR_INT 0x%llx\n", qidx, otx2_read64(pf, NIX_LF_ERR_INT)); } else { if (val & BIT_ULL(NIX_CQERRINT_DOOR_ERR)) netdev_err(pf->netdev, "CQ%lld: Doorbell error", qidx); if (val & BIT_ULL(NIX_CQERRINT_CQE_FAULT)) - netdev_err(pf->netdev, "CQ%lld: Memory fault on CQE write to LLC/DRAM", + netdev_err(pf->netdev, + "CQ%lld: Memory fault on CQE write to LLC/DRAM", qidx); } @@ -1254,7 +1260,8 @@ static irqreturn_t otx2_q_intr_handler(int irq, void *data) (val & NIX_SQINT_BITS)); if (val & BIT_ULL(42)) { - netdev_err(pf->netdev, "SQ%lld: error reading NIX_LF_SQ_OP_INT, NIX_LF_ERR_INT 0x%llx\n", + netdev_err(pf->netdev, + "SQ%lld: error reading NIX_LF_SQ_OP_INT, NIX_LF_ERR_INT 0x%llx\n", qidx, otx2_read64(pf, NIX_LF_ERR_INT)); goto done; } @@ -1264,8 +1271,11 @@ static irqreturn_t otx2_q_intr_handler(int irq, void *data) goto chk_mnq_err_dbg; sq_op_err_code = FIELD_GET(GENMASK(7, 0), sq_op_err_dbg); - netdev_err(pf->netdev, "SQ%lld: NIX_LF_SQ_OP_ERR_DBG(%llx) err=%s\n", - qidx, sq_op_err_dbg, nix_sqoperr_e_str[sq_op_err_code]); + netdev_err(pf->netdev, + "SQ%lld: NIX_LF_SQ_OP_ERR_DBG(0x%llx) err=%s(%#x)\n", + qidx, sq_op_err_dbg, + nix_sqoperr_e_str[sq_op_err_code], + sq_op_err_code); otx2_write64(pf, NIX_LF_SQ_OP_ERR_DBG, BIT_ULL(44)); @@ -1282,16 +1292,21 @@ static irqreturn_t otx2_q_intr_handler(int irq, void *data) goto chk_snd_err_dbg; mnq_err_code = FIELD_GET(GENMASK(7, 0), mnq_err_dbg); - netdev_err(pf->netdev, "SQ%lld: NIX_LF_MNQ_ERR_DBG(%llx) err=%s\n", - qidx, mnq_err_dbg, nix_mnqerr_e_str[mnq_err_code]); + netdev_err(pf->netdev, + "SQ%lld: NIX_LF_MNQ_ERR_DBG(0x%llx) err=%s(%#x)\n", + qidx, mnq_err_dbg, nix_mnqerr_e_str[mnq_err_code], + mnq_err_code); otx2_write64(pf, NIX_LF_MNQ_ERR_DBG, BIT_ULL(44)); chk_snd_err_dbg: snd_err_dbg = otx2_read64(pf, NIX_LF_SEND_ERR_DBG); if (snd_err_dbg & BIT(44)) { snd_err_code = FIELD_GET(GENMASK(7, 0), snd_err_dbg); - netdev_err(pf->netdev, "SQ%lld: NIX_LF_SND_ERR_DBG:0x%llx err=%s\n", - qidx, snd_err_dbg, nix_snd_status_e_str[snd_err_code]); + netdev_err(pf->netdev, + "SQ%lld: NIX_LF_SND_ERR_DBG:0x%llx err=%s(%#x)\n", + qidx, snd_err_dbg, + nix_snd_status_e_str[snd_err_code], + snd_err_code); otx2_write64(pf, NIX_LF_SEND_ERR_DBG, BIT_ULL(44)); } @@ -1826,6 +1841,8 @@ int otx2_stop(struct net_device *netdev) /* Clear RSS enable flag */ rss = &pf->hw.rss_info; rss->enable = false; + if (!netif_is_rxfh_configured(netdev)) + kfree(rss->rss_ctx[DEFAULT_RSS_CONTEXT_GROUP]); /* Cleanup Queue IRQ */ vec = pci_irq_vector(pf->pdev, diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_struct.h b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_struct.h index e5f30fd778fc1..e7fd9d955d650 100644 --- a/drivers/net/ethernet/marvell/octeontx2/nic/otx2_struct.h +++ b/drivers/net/ethernet/marvell/octeontx2/nic/otx2_struct.h @@ -311,23 +311,23 @@ enum nix_snd_status_e { NIX_SND_STATUS_EXT_ERR = 0x6, NIX_SND_STATUS_JUMP_FAULT = 0x7, NIX_SND_STATUS_JUMP_POISON = 0x8, - NIX_SND_STATUS_CRC_ERR = 0x9, - NIX_SND_STATUS_IMM_ERR = 0x10, - NIX_SND_STATUS_SG_ERR = 0x11, - NIX_SND_STATUS_MEM_ERR = 0x12, - NIX_SND_STATUS_INVALID_SUBDC = 0x13, - NIX_SND_STATUS_SUBDC_ORDER_ERR = 0x14, - NIX_SND_STATUS_DATA_FAULT = 0x15, - NIX_SND_STATUS_DATA_POISON = 0x16, - NIX_SND_STATUS_NPC_DROP_ACTION = 0x17, - NIX_SND_STATUS_LOCK_VIOL = 0x18, - NIX_SND_STATUS_NPC_UCAST_CHAN_ERR = 0x19, - NIX_SND_STATUS_NPC_MCAST_CHAN_ERR = 0x20, - NIX_SND_STATUS_NPC_MCAST_ABORT = 0x21, - NIX_SND_STATUS_NPC_VTAG_PTR_ERR = 0x22, - NIX_SND_STATUS_NPC_VTAG_SIZE_ERR = 0x23, - NIX_SND_STATUS_SEND_MEM_FAULT = 0x24, - NIX_SND_STATUS_SEND_STATS_ERR = 0x25, + NIX_SND_STATUS_CRC_ERR = 0x10, + NIX_SND_STATUS_IMM_ERR = 0x11, + NIX_SND_STATUS_SG_ERR = 0x12, + NIX_SND_STATUS_MEM_ERR = 0x13, + NIX_SND_STATUS_INVALID_SUBDC = 0x14, + NIX_SND_STATUS_SUBDC_ORDER_ERR = 0x15, + NIX_SND_STATUS_DATA_FAULT = 0x16, + NIX_SND_STATUS_DATA_POISON = 0x17, + NIX_SND_STATUS_NPC_DROP_ACTION = 0x20, + NIX_SND_STATUS_LOCK_VIOL = 0x21, + NIX_SND_STATUS_NPC_UCAST_CHAN_ERR = 0x22, + NIX_SND_STATUS_NPC_MCAST_CHAN_ERR = 0x23, + NIX_SND_STATUS_NPC_MCAST_ABORT = 0x24, + NIX_SND_STATUS_NPC_VTAG_PTR_ERR = 0x25, + NIX_SND_STATUS_NPC_VTAG_SIZE_ERR = 0x26, + NIX_SND_STATUS_SEND_MEM_FAULT = 0x27, + NIX_SND_STATUS_SEND_STATS_ERR = 0x28, NIX_SND_STATUS_MAX, }; diff --git a/drivers/net/ethernet/marvell/skge.c b/drivers/net/ethernet/marvell/skge.c index 051dd3fb5b038..791a209158cd1 100644 --- a/drivers/net/ethernet/marvell/skge.c +++ b/drivers/net/ethernet/marvell/skge.c @@ -50,7 +50,6 @@ #define PHY_RETRIES 1000 #define ETH_JUMBO_MTU 9000 #define TX_WATCHDOG (5 * HZ) -#define NAPI_WEIGHT 64 #define BLINK_MS 250 #define LINK_HZ HZ @@ -3828,7 +3827,7 @@ static struct net_device *skge_devinit(struct skge_hw *hw, int port, dev->features |= NETIF_F_HIGHDMA; skge = netdev_priv(dev); - netif_napi_add(dev, &skge->napi, skge_poll, NAPI_WEIGHT); + netif_napi_add(dev, &skge->napi, skge_poll, NAPI_POLL_WEIGHT); skge->netdev = dev; skge->hw = hw; skge->msg_enable = netif_msg_init(debug, default_msg); diff --git a/drivers/net/ethernet/marvell/sky2.c b/drivers/net/ethernet/marvell/sky2.c index ac0dbf1b97437..a1a182bb47c77 100644 --- a/drivers/net/ethernet/marvell/sky2.c +++ b/drivers/net/ethernet/marvell/sky2.c @@ -63,7 +63,6 @@ #define TX_DEF_PENDING 63 #define TX_WATCHDOG (5 * HZ) -#define NAPI_WEIGHT 64 #define PHY_RETRIES 1000 #define SKY2_EEPROM_MAGIC 0x9955aabb @@ -5073,7 +5072,7 @@ static int sky2_probe(struct pci_dev *pdev, const struct pci_device_id *ent) } } - netif_napi_add(dev, &hw->napi, sky2_poll, NAPI_WEIGHT); + netif_napi_add(dev, &hw->napi, sky2_poll, NAPI_POLL_WEIGHT); err = register_netdev(dev); if (err) { diff --git a/drivers/net/ethernet/marvell/sky2.h b/drivers/net/ethernet/marvell/sky2.h index ddec1627f1a7b..8d0bacf4e49cc 100644 --- a/drivers/net/ethernet/marvell/sky2.h +++ b/drivers/net/ethernet/marvell/sky2.h @@ -2195,7 +2195,7 @@ struct rx_ring_info { struct sk_buff *skb; dma_addr_t data_addr; DEFINE_DMA_UNMAP_LEN(data_size); - dma_addr_t frag_addr[ETH_JUMBO_MTU >> PAGE_SHIFT]; + dma_addr_t frag_addr[ETH_JUMBO_MTU >> PAGE_SHIFT ?: 1]; }; enum flow_control { diff --git a/drivers/net/ethernet/mediatek/mtk_eth_soc.c b/drivers/net/ethernet/mediatek/mtk_eth_soc.c index 50ee9d3d4c841..139dfdb1e58bd 100644 --- a/drivers/net/ethernet/mediatek/mtk_eth_soc.c +++ b/drivers/net/ethernet/mediatek/mtk_eth_soc.c @@ -2038,6 +2038,9 @@ static int mtk_hwlro_get_fdir_all(struct net_device *dev, int i; for (i = 0; i < MTK_MAX_LRO_IP_CNT; i++) { + if (cnt == cmd->rule_cnt) + return -EMSGSIZE; + if (mac->hwlro_ip[i]) { rule_locs[cnt] = i; cnt++; diff --git a/drivers/net/ethernet/mediatek/mtk_star_emac.c b/drivers/net/ethernet/mediatek/mtk_star_emac.c index 1d5dd2015453f..8f3493e146e50 100644 --- a/drivers/net/ethernet/mediatek/mtk_star_emac.c +++ b/drivers/net/ethernet/mediatek/mtk_star_emac.c @@ -30,7 +30,6 @@ #define MTK_STAR_WAIT_TIMEOUT 300 #define MTK_STAR_MAX_FRAME_SIZE 1514 #define MTK_STAR_SKB_ALIGNMENT 16 -#define MTK_STAR_NAPI_WEIGHT 64 #define MTK_STAR_HASHTABLE_MC_LIMIT 256 #define MTK_STAR_HASHTABLE_SIZE_MAX 512 @@ -1551,7 +1550,7 @@ static int mtk_star_probe(struct platform_device *pdev) ndev->netdev_ops = &mtk_star_netdev_ops; ndev->ethtool_ops = &mtk_star_ethtool_ops; - netif_napi_add(ndev, &priv->napi, mtk_star_poll, MTK_STAR_NAPI_WEIGHT); + netif_napi_add(ndev, &priv->napi, mtk_star_poll, NAPI_POLL_WEIGHT); return devm_register_netdev(dev, ndev); } diff --git a/drivers/net/ethernet/mellanox/mlx4/en_rx.c b/drivers/net/ethernet/mellanox/mlx4/en_rx.c index 7f6d3b82c29b2..a719a39c51169 100644 --- a/drivers/net/ethernet/mellanox/mlx4/en_rx.c +++ b/drivers/net/ethernet/mellanox/mlx4/en_rx.c @@ -800,7 +800,7 @@ int mlx4_en_process_rx_cq(struct net_device *dev, struct mlx4_en_cq *cq, int bud trace_xdp_exception(dev, xdp_prog, act); goto xdp_drop_no_cnt; /* Drop on xmit failure */ default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(dev, xdp_prog, act); fallthrough; case XDP_ABORTED: trace_xdp_exception(dev, xdp_prog, act); diff --git a/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c b/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c index 958cdb9755598..b69ab30ecf03b 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c @@ -821,7 +821,7 @@ static void mlx5_fw_tracer_ownership_change(struct work_struct *work) mlx5_core_dbg(tracer->dev, "FWTracer: ownership changed, current=(%d)\n", tracer->owner); if (tracer->owner) { - tracer->owner = false; + mlx5_fw_tracer_ownership_acquire(tracer); return; } diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en/mod_hdr.c b/drivers/net/ethernet/mellanox/mlx5/core/en/mod_hdr.c index 7edde4d536fda..19d05fb4aab2e 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/en/mod_hdr.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/en/mod_hdr.c @@ -155,3 +155,50 @@ struct mlx5_modify_hdr *mlx5e_mod_hdr_get(struct mlx5e_mod_hdr_handle *mh) return mh->modify_hdr; } +char * +mlx5e_mod_hdr_alloc(struct mlx5_core_dev *mdev, int namespace, + struct mlx5e_tc_mod_hdr_acts *mod_hdr_acts) +{ + int new_num_actions, max_hw_actions; + size_t new_sz, old_sz; + void *ret; + + if (mod_hdr_acts->num_actions < mod_hdr_acts->max_actions) + goto out; + + max_hw_actions = mlx5e_mod_hdr_max_actions(mdev, namespace); + new_num_actions = min(max_hw_actions, + mod_hdr_acts->actions ? + mod_hdr_acts->max_actions * 2 : 1); + if (mod_hdr_acts->max_actions == new_num_actions) + return ERR_PTR(-ENOSPC); + + new_sz = MLX5_MH_ACT_SZ * new_num_actions; + old_sz = mod_hdr_acts->max_actions * MLX5_MH_ACT_SZ; + + ret = krealloc(mod_hdr_acts->actions, new_sz, GFP_KERNEL); + if (!ret) + return ERR_PTR(-ENOMEM); + + memset(ret + old_sz, 0, new_sz - old_sz); + mod_hdr_acts->actions = ret; + mod_hdr_acts->max_actions = new_num_actions; + +out: + return mod_hdr_acts->actions + (mod_hdr_acts->num_actions * MLX5_MH_ACT_SZ); +} + +void +mlx5e_mod_hdr_dealloc(struct mlx5e_tc_mod_hdr_acts *mod_hdr_acts) +{ + kfree(mod_hdr_acts->actions); + mod_hdr_acts->actions = NULL; + mod_hdr_acts->num_actions = 0; + mod_hdr_acts->max_actions = 0; +} + +char * +mlx5e_mod_hdr_get_item(struct mlx5e_tc_mod_hdr_acts *mod_hdr_acts, int pos) +{ + return mod_hdr_acts->actions + (pos * MLX5_MH_ACT_SZ); +} diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en/mod_hdr.h b/drivers/net/ethernet/mellanox/mlx5/core/en/mod_hdr.h index 33b23d8f91828..b8cd1a7a31be6 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/en/mod_hdr.h +++ b/drivers/net/ethernet/mellanox/mlx5/core/en/mod_hdr.h @@ -15,6 +15,11 @@ struct mlx5e_tc_mod_hdr_acts { void *actions; }; +char *mlx5e_mod_hdr_alloc(struct mlx5_core_dev *mdev, int namespace, + struct mlx5e_tc_mod_hdr_acts *mod_hdr_acts); +void mlx5e_mod_hdr_dealloc(struct mlx5e_tc_mod_hdr_acts *mod_hdr_acts); +char *mlx5e_mod_hdr_get_item(struct mlx5e_tc_mod_hdr_acts *mod_hdr_acts, int pos); + struct mlx5e_mod_hdr_handle * mlx5e_mod_hdr_attach(struct mlx5_core_dev *mdev, struct mod_hdr_tbl *tbl, @@ -28,4 +33,12 @@ struct mlx5_modify_hdr *mlx5e_mod_hdr_get(struct mlx5e_mod_hdr_handle *mh); void mlx5e_mod_hdr_tbl_init(struct mod_hdr_tbl *tbl); void mlx5e_mod_hdr_tbl_destroy(struct mod_hdr_tbl *tbl); +static inline int mlx5e_mod_hdr_max_actions(struct mlx5_core_dev *mdev, int namespace) +{ + if (namespace == MLX5_FLOW_NAMESPACE_FDB) /* FDB offloading */ + return MLX5_CAP_ESW_FLOWTABLE_FDB(mdev, max_modify_header_actions); + else /* namespace is MLX5_FLOW_NAMESPACE_KERNEL - NIC offloading */ + return MLX5_CAP_FLOWTABLE_NIC_RX(mdev, max_modify_header_actions); +} + #endif /* __MLX5E_EN_MOD_HDR_H__ */ diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en/params.c b/drivers/net/ethernet/mellanox/mlx5/core/en/params.c index 15f441a1b80c2..fedb8782b9a04 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/en/params.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/en/params.c @@ -476,8 +476,7 @@ static void mlx5e_build_rx_cq_param(struct mlx5_core_dev *mdev, static u8 rq_end_pad_mode(struct mlx5_core_dev *mdev, struct mlx5e_params *params) { bool lro_en = params->packet_merge.type == MLX5E_PACKET_MERGE_LRO; - bool ro = pcie_relaxed_ordering_enabled(mdev->pdev) && - MLX5_CAP_GEN(mdev, relaxed_ordering_write); + bool ro = MLX5_CAP_GEN(mdev, relaxed_ordering_write); return ro && lro_en ? MLX5_WQ_END_PAD_MODE_NONE : MLX5_WQ_END_PAD_MODE_ALIGN; diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en/reporter_rx.c b/drivers/net/ethernet/mellanox/mlx5/core/en/reporter_rx.c index 899a9a73eef68..a4c12c5bb0dc5 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/en/reporter_rx.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/en/reporter_rx.c @@ -655,11 +655,11 @@ static int mlx5e_rx_reporter_dump(struct devlink_health_reporter *reporter, void mlx5e_reporter_rx_timeout(struct mlx5e_rq *rq) { - char icosq_str[MLX5E_REPORTER_PER_Q_MAX_LEN] = {}; char err_str[MLX5E_REPORTER_PER_Q_MAX_LEN]; struct mlx5e_icosq *icosq = rq->icosq; struct mlx5e_priv *priv = rq->priv; struct mlx5e_err_ctx err_ctx = {}; + char icosq_str[32] = {}; err_ctx.ctx = rq; err_ctx.recover = mlx5e_rx_reporter_timeout_recover; @@ -668,7 +668,7 @@ void mlx5e_reporter_rx_timeout(struct mlx5e_rq *rq) if (icosq) snprintf(icosq_str, sizeof(icosq_str), "ICOSQ: 0x%x, ", icosq->sqn); snprintf(err_str, sizeof(err_str), - "RX timeout on channel: %d, %sRQ: 0x%x, CQ: 0x%x", + "RX timeout on channel: %d, %s RQ: 0x%x, CQ: 0x%x", rq->ix, icosq_str, rq->rqn, rq->cq.mcq.cqn); mlx5e_health_report(priv, priv->rx_reporter, err_str, &err_ctx); diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en/tc/sample.c b/drivers/net/ethernet/mellanox/mlx5/core/en/tc/sample.c index 6552ecee3f9b9..d08723a444e3f 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/en/tc/sample.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/en/tc/sample.c @@ -5,6 +5,7 @@ #include #include "en/mapping.h" #include "en/tc/post_act.h" +#include "en/mod_hdr.h" #include "sample.h" #include "eswitch.h" #include "en_tc.h" @@ -255,12 +256,12 @@ sample_modify_hdr_get(struct mlx5_core_dev *mdev, u32 obj_id, goto err_modify_hdr; } - dealloc_mod_hdr_actions(&mod_acts); + mlx5e_mod_hdr_dealloc(&mod_acts); return modify_hdr; err_modify_hdr: err_post_act: - dealloc_mod_hdr_actions(&mod_acts); + mlx5e_mod_hdr_dealloc(&mod_acts); err_set_regc0: return ERR_PTR(err); } diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c b/drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c index 94200f2dd92b0..80a49d7af05d6 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c @@ -609,22 +609,15 @@ mlx5_tc_ct_entry_create_nat(struct mlx5_tc_ct_priv *ct_priv, struct flow_action *flow_action = &flow_rule->action; struct mlx5_core_dev *mdev = ct_priv->dev; struct flow_action_entry *act; - size_t action_size; char *modact; int err, i; - action_size = MLX5_UN_SZ_BYTES(set_add_copy_action_in_auto); - flow_action_for_each(i, act, flow_action) { switch (act->id) { case FLOW_ACTION_MANGLE: { - err = alloc_mod_hdr_actions(mdev, ct_priv->ns_type, - mod_acts); - if (err) - return err; - - modact = mod_acts->actions + - mod_acts->num_actions * action_size; + modact = mlx5e_mod_hdr_alloc(mdev, ct_priv->ns_type, mod_acts); + if (IS_ERR(modact)) + return PTR_ERR(modact); err = mlx5_tc_ct_parse_mangle_to_mod_act(act, modact); if (err) @@ -707,11 +700,11 @@ mlx5_tc_ct_entry_create_mod_hdr(struct mlx5_tc_ct_priv *ct_priv, attr->modify_hdr = mlx5e_mod_hdr_get(*mh); } - dealloc_mod_hdr_actions(&mod_acts); + mlx5e_mod_hdr_dealloc(&mod_acts); return 0; err_mapping: - dealloc_mod_hdr_actions(&mod_acts); + mlx5e_mod_hdr_dealloc(&mod_acts); mlx5_put_label_mapping(ct_priv, attr->ct_attr.ct_labels_id); return err; } @@ -1463,7 +1456,7 @@ static int tc_ct_pre_ct_add_rules(struct mlx5_ct_ft *ct_ft, } pre_ct->miss_rule = rule; - dealloc_mod_hdr_actions(&pre_mod_acts); + mlx5e_mod_hdr_dealloc(&pre_mod_acts); kvfree(spec); return 0; @@ -1472,7 +1465,7 @@ static int tc_ct_pre_ct_add_rules(struct mlx5_ct_ft *ct_ft, err_flow_rule: mlx5_modify_header_dealloc(dev, pre_ct->modify_hdr); err_mapping: - dealloc_mod_hdr_actions(&pre_mod_acts); + mlx5e_mod_hdr_dealloc(&pre_mod_acts); kvfree(spec); return err; } @@ -1872,14 +1865,14 @@ __mlx5_tc_ct_flow_offload(struct mlx5_tc_ct_priv *ct_priv, } attr->ct_attr.ct_flow = ct_flow; - dealloc_mod_hdr_actions(&pre_mod_acts); + mlx5e_mod_hdr_dealloc(&pre_mod_acts); return ct_flow->pre_ct_rule; err_insert_orig: mlx5_modify_header_dealloc(priv->mdev, pre_ct_attr->modify_hdr); err_mapping: - dealloc_mod_hdr_actions(&pre_mod_acts); + mlx5e_mod_hdr_dealloc(&pre_mod_acts); mlx5_chains_put_chain_mapping(ct_priv->chains, ct_flow->chain_mapping); err_get_chain: kfree(ct_flow->pre_ct_attr); diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en/xdp.c b/drivers/net/ethernet/mellanox/mlx5/core/en/xdp.c index 2f0df5cc1a2d9..338d65e2c9ce8 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/en/xdp.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/en/xdp.c @@ -151,7 +151,7 @@ bool mlx5e_xdp_handle(struct mlx5e_rq *rq, struct mlx5e_dma_info *di, rq->stats->xdp_redirect++; return true; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(rq->netdev, prog, act); fallthrough; case XDP_ABORTED: xdp_abort: diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_common.c b/drivers/net/ethernet/mellanox/mlx5/core/en_common.c index 9a28ea165236b..15f6145b77148 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/en_common.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/en_common.c @@ -43,7 +43,7 @@ void mlx5e_mkey_set_relaxed_ordering(struct mlx5_core_dev *mdev, void *mkc) bool ro_read = MLX5_CAP_GEN(mdev, relaxed_ordering_read); MLX5_SET(mkc, mkc, relaxed_ordering_read, ro_pci_enable && ro_read); - MLX5_SET(mkc, mkc, relaxed_ordering_write, ro_pci_enable && ro_write); + MLX5_SET(mkc, mkc, relaxed_ordering_write, ro_write); } static int mlx5e_create_mkey(struct mlx5_core_dev *mdev, u32 pdn, diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_main.c b/drivers/net/ethernet/mellanox/mlx5/core/en_main.c index fdc4a5a80da41..923be5fb7d216 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/en_main.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/en_main.c @@ -3373,13 +3373,14 @@ static int set_feature_rx_fcs(struct net_device *netdev, bool enable) struct mlx5e_channels *chs = &priv->channels; struct mlx5e_params new_params; int err; + bool rx_ts_over_crc = !enable; mutex_lock(&priv->state_lock); new_params = chs->params; new_params.scatter_fcs_en = enable; err = mlx5e_safe_switch_params(priv, &new_params, mlx5e_set_rx_port_ts_wrap, - &new_params.scatter_fcs_en, true); + &rx_ts_over_crc, true); mutex_unlock(&priv->state_lock); return err; } diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c b/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c index a934deff996a2..2d79c8fb08ea2 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c @@ -67,13 +67,17 @@ static void mlx5e_rep_get_drvinfo(struct net_device *dev, { struct mlx5e_priv *priv = netdev_priv(dev); struct mlx5_core_dev *mdev = priv->mdev; + int count; strlcpy(drvinfo->driver, mlx5e_rep_driver_name, sizeof(drvinfo->driver)); - snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version), - "%d.%d.%04d (%.16s)", - fw_rev_maj(mdev), fw_rev_min(mdev), - fw_rev_sub(mdev), mdev->board_id); + count = snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version), + "%d.%d.%04d (%.16s)", fw_rev_maj(mdev), + fw_rev_min(mdev), fw_rev_sub(mdev), mdev->board_id); + if (count == sizeof(drvinfo->fw_version)) + snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version), + "%d.%d.%04d", fw_rev_maj(mdev), + fw_rev_min(mdev), fw_rev_sub(mdev)); } static const struct counter_desc sw_rep_stats_desc[] = { diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c b/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c index 009b8ec5850dd..f53af3cfd0e30 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c @@ -70,7 +70,6 @@ #include "lag_mp.h" #define nic_chains(priv) ((priv)->fs.tc.chains) -#define MLX5_MH_ACT_SZ MLX5_UN_SZ_BYTES(set_add_copy_action_in_auto) #define MLX5E_TC_TABLE_NUM_GROUPS 4 #define MLX5E_TC_TABLE_MAX_GROUP_SIZE BIT(18) @@ -208,12 +207,9 @@ mlx5e_tc_match_to_reg_set_and_get_id(struct mlx5_core_dev *mdev, char *modact; int err; - err = alloc_mod_hdr_actions(mdev, ns, mod_hdr_acts); - if (err) - return err; - - modact = mod_hdr_acts->actions + - (mod_hdr_acts->num_actions * MLX5_MH_ACT_SZ); + modact = mlx5e_mod_hdr_alloc(mdev, ns, mod_hdr_acts); + if (IS_ERR(modact)) + return PTR_ERR(modact); /* Firmware has 5bit length field and 0 means 32bits */ if (mlen == 32) @@ -332,7 +328,7 @@ void mlx5e_tc_match_to_reg_mod_hdr_change(struct mlx5_core_dev *mdev, int mlen = mlx5e_tc_attr_to_reg_mappings[type].mlen; char *modact; - modact = mod_hdr_acts->actions + (act_id * MLX5_MH_ACT_SZ); + modact = mlx5e_mod_hdr_get_item(mod_hdr_acts, act_id); /* Firmware has 5bit length field and 0 means 32bits */ if (mlen == 32) @@ -1075,7 +1071,7 @@ mlx5e_tc_add_nic_flow(struct mlx5e_priv *priv, if (attr->action & MLX5_FLOW_CONTEXT_ACTION_MOD_HDR) { err = mlx5e_attach_mod_hdr(priv, flow, parse_attr); - dealloc_mod_hdr_actions(&parse_attr->mod_hdr_acts); + mlx5e_mod_hdr_dealloc(&parse_attr->mod_hdr_acts); if (err) return err; } @@ -1626,7 +1622,7 @@ static void mlx5e_tc_del_fdb_flow(struct mlx5e_priv *priv, mlx5_tc_ct_match_del(get_ct_priv(priv), &flow->attr->ct_attr); if (attr->action & MLX5_FLOW_CONTEXT_ACTION_MOD_HDR) { - dealloc_mod_hdr_actions(&attr->parse_attr->mod_hdr_acts); + mlx5e_mod_hdr_dealloc(&attr->parse_attr->mod_hdr_acts); if (vf_tun && attr->modify_hdr) mlx5_modify_header_dealloc(priv->mdev, attr->modify_hdr); else @@ -2843,7 +2839,7 @@ static struct mlx5_fields fields[] = { OFFLOAD(DIPV6_31_0, 32, U32_MAX, ip6.daddr.s6_addr32[3], 0, dst_ipv4_dst_ipv6.ipv6_layout.ipv6[12]), OFFLOAD(IPV6_HOPLIMIT, 8, U8_MAX, ip6.hop_limit, 0, ttl_hoplimit), - OFFLOAD(IP_DSCP, 16, 0xc00f, ip6, 0, ip_dscp), + OFFLOAD(IP_DSCP, 16, 0x0fc0, ip6, 0, ip_dscp), OFFLOAD(TCP_SPORT, 16, U16_MAX, tcp.source, 0, tcp_sport), OFFLOAD(TCP_DPORT, 16, U16_MAX, tcp.dest, 0, tcp_dport), @@ -2854,21 +2850,31 @@ static struct mlx5_fields fields[] = { OFFLOAD(UDP_DPORT, 16, U16_MAX, udp.dest, 0, udp_dport), }; -static unsigned long mask_to_le(unsigned long mask, int size) +static u32 mask_field_get(void *mask, struct mlx5_fields *f) { - __be32 mask_be32; - __be16 mask_be16; - - if (size == 32) { - mask_be32 = (__force __be32)(mask); - mask = (__force unsigned long)cpu_to_le32(be32_to_cpu(mask_be32)); - } else if (size == 16) { - mask_be32 = (__force __be32)(mask); - mask_be16 = *(__be16 *)&mask_be32; - mask = (__force unsigned long)cpu_to_le16(be16_to_cpu(mask_be16)); + switch (f->field_bsize) { + case 32: + return be32_to_cpu(*(__be32 *)mask) & f->field_mask; + case 16: + return be16_to_cpu(*(__be16 *)mask) & (u16)f->field_mask; + default: + return *(u8 *)mask & (u8)f->field_mask; } +} - return mask; +static void mask_field_clear(void *mask, struct mlx5_fields *f) +{ + switch (f->field_bsize) { + case 32: + *(__be32 *)mask &= ~cpu_to_be32(f->field_mask); + break; + case 16: + *(__be16 *)mask &= ~cpu_to_be16((u16)f->field_mask); + break; + default: + *(u8 *)mask &= ~(u8)f->field_mask; + break; + } } static int offload_pedit_fields(struct mlx5e_priv *priv, int namespace, @@ -2878,13 +2884,13 @@ static int offload_pedit_fields(struct mlx5e_priv *priv, struct netlink_ext_ack *extack) { struct pedit_headers *set_masks, *add_masks, *set_vals, *add_vals; - int i, action_size, first, last, next_z; void *headers_c, *headers_v, *action, *vals_p; - u32 *s_masks_p, *a_masks_p, s_mask, a_mask; struct mlx5e_tc_mod_hdr_acts *mod_acts; + void *s_masks_p, *a_masks_p; + int i, first, last, next_z; struct mlx5_fields *f; - unsigned long mask, field_mask; - int err; + unsigned long mask; + u32 s_mask, a_mask; u8 cmd; mod_acts = &parse_attr->mod_hdr_acts; @@ -2896,21 +2902,15 @@ static int offload_pedit_fields(struct mlx5e_priv *priv, set_vals = &hdrs[0].vals; add_vals = &hdrs[1].vals; - action_size = MLX5_UN_SZ_BYTES(set_add_copy_action_in_auto); - for (i = 0; i < ARRAY_SIZE(fields); i++) { bool skip; f = &fields[i]; - /* avoid seeing bits set from previous iterations */ - s_mask = 0; - a_mask = 0; - s_masks_p = (void *)set_masks + f->offset; a_masks_p = (void *)add_masks + f->offset; - s_mask = *s_masks_p & f->field_mask; - a_mask = *a_masks_p & f->field_mask; + s_mask = mask_field_get(s_masks_p, f); + a_mask = mask_field_get(a_masks_p, f); if (!s_mask && !a_mask) /* nothing to offload here */ continue; @@ -2937,22 +2937,20 @@ static int offload_pedit_fields(struct mlx5e_priv *priv, match_mask, f->field_bsize)) skip = true; /* clear to denote we consumed this field */ - *s_masks_p &= ~f->field_mask; + mask_field_clear(s_masks_p, f); } else { cmd = MLX5_ACTION_TYPE_ADD; mask = a_mask; vals_p = (void *)add_vals + f->offset; /* add 0 is no change */ - if ((*(u32 *)vals_p & f->field_mask) == 0) + if (!mask_field_get(vals_p, f)) skip = true; /* clear to denote we consumed this field */ - *a_masks_p &= ~f->field_mask; + mask_field_clear(a_masks_p, f); } if (skip) continue; - mask = mask_to_le(mask, f->field_bsize); - first = find_first_bit(&mask, f->field_bsize); next_z = find_next_zero_bit(&mask, f->field_bsize, first); last = find_last_bit(&mask, f->field_bsize); @@ -2965,26 +2963,23 @@ static int offload_pedit_fields(struct mlx5e_priv *priv, return -EOPNOTSUPP; } - err = alloc_mod_hdr_actions(priv->mdev, namespace, mod_acts); - if (err) { + action = mlx5e_mod_hdr_alloc(priv->mdev, namespace, mod_acts); + if (IS_ERR(action)) { NL_SET_ERR_MSG_MOD(extack, "too many pedit actions, can't offload"); mlx5_core_warn(priv->mdev, "mlx5: parsed %d pedit actions, can't do more\n", mod_acts->num_actions); - return err; + return PTR_ERR(action); } - action = mod_acts->actions + - (mod_acts->num_actions * action_size); MLX5_SET(set_action_in, action, action_type, cmd); MLX5_SET(set_action_in, action, field, f->field); if (cmd == MLX5_ACTION_TYPE_SET) { + unsigned long field_mask = f->field_mask; int start; - field_mask = mask_to_le(f->field_mask, f->field_bsize); - /* if field is bit sized it can start not from first bit */ start = find_first_bit(&field_mask, f->field_bsize); @@ -3006,57 +3001,6 @@ static int offload_pedit_fields(struct mlx5e_priv *priv, return 0; } -static int mlx5e_flow_namespace_max_modify_action(struct mlx5_core_dev *mdev, - int namespace) -{ - if (namespace == MLX5_FLOW_NAMESPACE_FDB) /* FDB offloading */ - return MLX5_CAP_ESW_FLOWTABLE_FDB(mdev, max_modify_header_actions); - else /* namespace is MLX5_FLOW_NAMESPACE_KERNEL - NIC offloading */ - return MLX5_CAP_FLOWTABLE_NIC_RX(mdev, max_modify_header_actions); -} - -int alloc_mod_hdr_actions(struct mlx5_core_dev *mdev, - int namespace, - struct mlx5e_tc_mod_hdr_acts *mod_hdr_acts) -{ - int action_size, new_num_actions, max_hw_actions; - size_t new_sz, old_sz; - void *ret; - - if (mod_hdr_acts->num_actions < mod_hdr_acts->max_actions) - return 0; - - action_size = MLX5_UN_SZ_BYTES(set_add_copy_action_in_auto); - - max_hw_actions = mlx5e_flow_namespace_max_modify_action(mdev, - namespace); - new_num_actions = min(max_hw_actions, - mod_hdr_acts->actions ? - mod_hdr_acts->max_actions * 2 : 1); - if (mod_hdr_acts->max_actions == new_num_actions) - return -ENOSPC; - - new_sz = action_size * new_num_actions; - old_sz = mod_hdr_acts->max_actions * action_size; - ret = krealloc(mod_hdr_acts->actions, new_sz, GFP_KERNEL); - if (!ret) - return -ENOMEM; - - memset(ret + old_sz, 0, new_sz - old_sz); - mod_hdr_acts->actions = ret; - mod_hdr_acts->max_actions = new_num_actions; - - return 0; -} - -void dealloc_mod_hdr_actions(struct mlx5e_tc_mod_hdr_acts *mod_hdr_acts) -{ - kfree(mod_hdr_acts->actions); - mod_hdr_acts->actions = NULL; - mod_hdr_acts->num_actions = 0; - mod_hdr_acts->max_actions = 0; -} - static const struct pedit_headers zero_masks = {}; static int @@ -3079,7 +3023,7 @@ parse_pedit_to_modify_hdr(struct mlx5e_priv *priv, goto out_err; } - if (!mlx5e_flow_namespace_max_modify_action(priv->mdev, namespace)) { + if (!mlx5e_mod_hdr_max_actions(priv->mdev, namespace)) { NL_SET_ERR_MSG_MOD(extack, "The pedit offload action is not supported"); goto out_err; @@ -3171,7 +3115,7 @@ static int alloc_tc_pedit_action(struct mlx5e_priv *priv, int namespace, return 0; out_dealloc_parsed_actions: - dealloc_mod_hdr_actions(&parse_attr->mod_hdr_acts); + mlx5e_mod_hdr_dealloc(&parse_attr->mod_hdr_acts); return err; } @@ -3577,10 +3521,50 @@ static int validate_goto_chain(struct mlx5e_priv *priv, return 0; } -static int parse_tc_nic_actions(struct mlx5e_priv *priv, - struct flow_action *flow_action, +static int +actions_prepare_mod_hdr_actions(struct mlx5e_priv *priv, struct mlx5e_tc_flow *flow, + struct mlx5_flow_attr *attr, + struct pedit_headers_action *hdrs, struct netlink_ext_ack *extack) +{ + struct mlx5e_tc_flow_parse_attr *parse_attr = attr->parse_attr; + enum mlx5_flow_namespace_type ns_type; + int err; + + if (!hdrs[TCA_PEDIT_KEY_EX_CMD_SET].pedits && + !hdrs[TCA_PEDIT_KEY_EX_CMD_ADD].pedits) + return 0; + + ns_type = get_flow_name_space(flow); + + err = alloc_tc_pedit_action(priv, ns_type, parse_attr, hdrs, + &attr->action, extack); + if (err) + return err; + + /* In case all pedit actions are skipped, remove the MOD_HDR flag. */ + if (parse_attr->mod_hdr_acts.num_actions > 0) + return 0; + + attr->action &= ~MLX5_FLOW_CONTEXT_ACTION_MOD_HDR; + mlx5e_mod_hdr_dealloc(&parse_attr->mod_hdr_acts); + + if (ns_type != MLX5_FLOW_NAMESPACE_FDB) + return 0; + + if (!((attr->action & MLX5_FLOW_CONTEXT_ACTION_VLAN_POP) || + (attr->action & MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH))) + attr->esw_attr->split_count = 0; + + return 0; +} + +static int +parse_tc_nic_actions(struct mlx5e_priv *priv, + struct flow_action *flow_action, + struct mlx5e_tc_flow *flow, + struct netlink_ext_ack *extack) { struct mlx5e_tc_flow_parse_attr *parse_attr; struct mlx5_flow_attr *attr = flow->attr; @@ -3692,21 +3676,6 @@ static int parse_tc_nic_actions(struct mlx5e_priv *priv, } } - if (hdrs[TCA_PEDIT_KEY_EX_CMD_SET].pedits || - hdrs[TCA_PEDIT_KEY_EX_CMD_ADD].pedits) { - err = alloc_tc_pedit_action(priv, MLX5_FLOW_NAMESPACE_KERNEL, - parse_attr, hdrs, &action, extack); - if (err) - return err; - /* in case all pedit actions are skipped, remove the MOD_HDR - * flag. - */ - if (parse_attr->mod_hdr_acts.num_actions == 0) { - action &= ~MLX5_FLOW_CONTEXT_ACTION_MOD_HDR; - dealloc_mod_hdr_actions(&parse_attr->mod_hdr_acts); - } - } - attr->action = action; if (attr->dest_chain && parse_attr->mirred_ifindex[0]) { @@ -3714,8 +3683,9 @@ static int parse_tc_nic_actions(struct mlx5e_priv *priv, return -EOPNOTSUPP; } - if (attr->action & MLX5_FLOW_CONTEXT_ACTION_MOD_HDR) - attr->action |= MLX5_FLOW_CONTEXT_ACTION_FWD_DEST; + err = actions_prepare_mod_hdr_actions(priv, flow, attr, hdrs, extack); + if (err) + return err; if (!actions_match_supported(priv, flow_action, parse_attr, flow, extack)) return -EOPNOTSUPP; @@ -4386,26 +4356,12 @@ static int parse_tc_fdb_actions(struct mlx5e_priv *priv, return err; } - if (hdrs[TCA_PEDIT_KEY_EX_CMD_SET].pedits || - hdrs[TCA_PEDIT_KEY_EX_CMD_ADD].pedits) { - err = alloc_tc_pedit_action(priv, MLX5_FLOW_NAMESPACE_FDB, - parse_attr, hdrs, &action, extack); - if (err) - return err; - /* in case all pedit actions are skipped, remove the MOD_HDR - * flag. we might have set split_count either by pedit or - * pop/push. if there is no pop/push either, reset it too. - */ - if (parse_attr->mod_hdr_acts.num_actions == 0) { - action &= ~MLX5_FLOW_CONTEXT_ACTION_MOD_HDR; - dealloc_mod_hdr_actions(&parse_attr->mod_hdr_acts); - if (!((action & MLX5_FLOW_CONTEXT_ACTION_VLAN_POP) || - (action & MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH))) - esw_attr->split_count = 0; - } - } - attr->action = action; + + err = actions_prepare_mod_hdr_actions(priv, flow, attr, hdrs, extack); + if (err) + return err; + if (!actions_match_supported(priv, flow_action, parse_attr, flow, extack)) return -EOPNOTSUPP; @@ -4792,7 +4748,7 @@ mlx5e_add_nic_flow(struct mlx5e_priv *priv, err_free: flow_flag_set(flow, FAILED); - dealloc_mod_hdr_actions(&parse_attr->mod_hdr_acts); + mlx5e_mod_hdr_dealloc(&parse_attr->mod_hdr_acts); mlx5e_flow_put(priv, flow); out: return err; diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_tc.h b/drivers/net/ethernet/mellanox/mlx5/core/en_tc.h index 11732db28a9f0..2866b3d22188e 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/en_tc.h +++ b/drivers/net/ethernet/mellanox/mlx5/core/en_tc.h @@ -247,11 +247,6 @@ int mlx5e_tc_add_flow_mod_hdr(struct mlx5e_priv *priv, struct mlx5e_tc_flow *flow, struct mlx5_flow_attr *attr); -int alloc_mod_hdr_actions(struct mlx5_core_dev *mdev, - int namespace, - struct mlx5e_tc_mod_hdr_acts *mod_hdr_acts); -void dealloc_mod_hdr_actions(struct mlx5e_tc_mod_hdr_acts *mod_hdr_acts); - struct mlx5e_tc_flow; u32 mlx5e_tc_get_flow_tun_id(struct mlx5e_tc_flow *flow); diff --git a/drivers/net/ethernet/mellanox/mlx5/core/esw/indir_table.c b/drivers/net/ethernet/mellanox/mlx5/core/esw/indir_table.c index 425c91814b34f..c275fe028b6d8 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/esw/indir_table.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/esw/indir_table.c @@ -14,6 +14,7 @@ #include "fs_core.h" #include "esw/indir_table.h" #include "lib/fs_chains.h" +#include "en/mod_hdr.h" #define MLX5_ESW_INDIR_TABLE_SIZE 128 #define MLX5_ESW_INDIR_TABLE_RECIRC_IDX_MAX (MLX5_ESW_INDIR_TABLE_SIZE - 2) @@ -226,7 +227,7 @@ static int mlx5_esw_indir_table_rule_get(struct mlx5_eswitch *esw, goto err_handle; } - dealloc_mod_hdr_actions(&mod_acts); + mlx5e_mod_hdr_dealloc(&mod_acts); rule->handle = handle; rule->vni = esw_attr->rx_tun_attr->vni; rule->mh = flow_act.modify_hdr; @@ -243,7 +244,7 @@ static int mlx5_esw_indir_table_rule_get(struct mlx5_eswitch *esw, mlx5_modify_header_dealloc(esw->dev, flow_act.modify_hdr); err_mod_hdr_alloc: err_mod_hdr_regc1: - dealloc_mod_hdr_actions(&mod_acts); + mlx5e_mod_hdr_dealloc(&mod_acts); err_mod_hdr_regc0: err_ethertype: kfree(rule); diff --git a/drivers/net/ethernet/mellanox/mlx5/core/fs_counters.c b/drivers/net/ethernet/mellanox/mlx5/core/fs_counters.c index 18e5aec14641f..920cb6f096a8f 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/fs_counters.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/fs_counters.c @@ -38,8 +38,10 @@ #include "fs_cmd.h" #define MLX5_FC_STATS_PERIOD msecs_to_jiffies(1000) +#define MLX5_FC_BULK_QUERY_ALLOC_PERIOD msecs_to_jiffies(180 * 1000) /* Max number of counters to query in bulk read is 32K */ #define MLX5_SW_MAX_COUNTERS_BULK BIT(15) +#define MLX5_INIT_COUNTERS_BULK 8 #define MLX5_FC_POOL_MAX_THRESHOLD BIT(18) #define MLX5_FC_POOL_USED_BUFF_RATIO 10 @@ -144,10 +146,16 @@ static void mlx5_fc_stats_remove(struct mlx5_core_dev *dev, spin_unlock(&fc_stats->counters_idr_lock); } +static int get_init_bulk_query_len(struct mlx5_core_dev *dev) +{ + return min_t(int, MLX5_INIT_COUNTERS_BULK, + (1 << MLX5_CAP_GEN(dev, log_max_flow_counter_bulk))); +} + static int get_max_bulk_query_len(struct mlx5_core_dev *dev) { return min_t(int, MLX5_SW_MAX_COUNTERS_BULK, - (1 << MLX5_CAP_GEN(dev, log_max_flow_counter_bulk))); + (1 << MLX5_CAP_GEN(dev, log_max_flow_counter_bulk))); } static void update_counter_cache(int index, u32 *bulk_raw_data, @@ -172,7 +180,7 @@ static void mlx5_fc_stats_query_counter_range(struct mlx5_core_dev *dev, { struct mlx5_fc_stats *fc_stats = &dev->priv.fc_stats; bool query_more_counters = (first->id <= last_id); - int max_bulk_len = get_max_bulk_query_len(dev); + int cur_bulk_len = fc_stats->bulk_query_len; u32 *data = fc_stats->bulk_query_out; struct mlx5_fc *counter = first; u32 bulk_base_id; @@ -184,7 +192,7 @@ static void mlx5_fc_stats_query_counter_range(struct mlx5_core_dev *dev, bulk_base_id = counter->id & ~0x3; /* number of counters to query inc. the last counter */ - bulk_len = min_t(int, max_bulk_len, + bulk_len = min_t(int, cur_bulk_len, ALIGN(last_id - bulk_base_id + 1, 4)); err = mlx5_cmd_fc_bulk_query(dev, bulk_base_id, bulk_len, @@ -225,6 +233,41 @@ static void mlx5_fc_release(struct mlx5_core_dev *dev, struct mlx5_fc *counter) mlx5_fc_free(dev, counter); } +static void mlx5_fc_stats_bulk_query_size_increase(struct mlx5_core_dev *dev) +{ + struct mlx5_fc_stats *fc_stats = &dev->priv.fc_stats; + int max_bulk_len = get_max_bulk_query_len(dev); + unsigned long now = jiffies; + u32 *bulk_query_out_tmp; + int max_out_len; + + if (fc_stats->bulk_query_alloc_failed && + time_before(now, fc_stats->next_bulk_query_alloc)) + return; + + max_out_len = mlx5_cmd_fc_get_bulk_query_out_len(max_bulk_len); + bulk_query_out_tmp = kzalloc(max_out_len, GFP_KERNEL); + if (!bulk_query_out_tmp) { + mlx5_core_warn_once(dev, + "Can't increase flow counters bulk query buffer size, insufficient memory, bulk_size(%d)\n", + max_bulk_len); + fc_stats->bulk_query_alloc_failed = true; + fc_stats->next_bulk_query_alloc = + now + MLX5_FC_BULK_QUERY_ALLOC_PERIOD; + return; + } + + kfree(fc_stats->bulk_query_out); + fc_stats->bulk_query_out = bulk_query_out_tmp; + fc_stats->bulk_query_len = max_bulk_len; + if (fc_stats->bulk_query_alloc_failed) { + mlx5_core_info(dev, + "Flow counters bulk query buffer size increased, bulk_size(%d)\n", + max_bulk_len); + fc_stats->bulk_query_alloc_failed = false; + } +} + static void mlx5_fc_stats_work(struct work_struct *work) { struct mlx5_core_dev *dev = container_of(work, struct mlx5_core_dev, @@ -242,15 +285,22 @@ static void mlx5_fc_stats_work(struct work_struct *work) queue_delayed_work(fc_stats->wq, &fc_stats->work, fc_stats->sampling_interval); - llist_for_each_entry(counter, addlist, addlist) + llist_for_each_entry(counter, addlist, addlist) { mlx5_fc_stats_insert(dev, counter); + fc_stats->num_counters++; + } llist_for_each_entry_safe(counter, tmp, dellist, dellist) { mlx5_fc_stats_remove(dev, counter); mlx5_fc_release(dev, counter); + fc_stats->num_counters--; } + if (fc_stats->bulk_query_len < get_max_bulk_query_len(dev) && + fc_stats->num_counters > get_init_bulk_query_len(dev)) + mlx5_fc_stats_bulk_query_size_increase(dev); + if (time_before(now, fc_stats->next_query) || list_empty(&fc_stats->counters)) return; @@ -365,8 +415,8 @@ EXPORT_SYMBOL(mlx5_fc_destroy); int mlx5_init_fc_stats(struct mlx5_core_dev *dev) { struct mlx5_fc_stats *fc_stats = &dev->priv.fc_stats; - int max_bulk_len; - int max_out_len; + int init_bulk_len; + int init_out_len; spin_lock_init(&fc_stats->counters_idr_lock); idr_init(&fc_stats->counters_idr); @@ -374,11 +424,12 @@ int mlx5_init_fc_stats(struct mlx5_core_dev *dev) init_llist_head(&fc_stats->addlist); init_llist_head(&fc_stats->dellist); - max_bulk_len = get_max_bulk_query_len(dev); - max_out_len = mlx5_cmd_fc_get_bulk_query_out_len(max_bulk_len); - fc_stats->bulk_query_out = kzalloc(max_out_len, GFP_KERNEL); + init_bulk_len = get_init_bulk_query_len(dev); + init_out_len = mlx5_cmd_fc_get_bulk_query_out_len(init_bulk_len); + fc_stats->bulk_query_out = kzalloc(init_out_len, GFP_KERNEL); if (!fc_stats->bulk_query_out) return -ENOMEM; + fc_stats->bulk_query_len = init_bulk_len; fc_stats->wq = create_singlethread_workqueue("mlx5_fc"); if (!fc_stats->wq) diff --git a/drivers/net/ethernet/mellanox/mlx5/core/fw_reset.c b/drivers/net/ethernet/mellanox/mlx5/core/fw_reset.c index 8c2b249949b97..8ed1549a99c42 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/fw_reset.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/fw_reset.c @@ -274,16 +274,11 @@ static int mlx5_pci_link_toggle(struct mlx5_core_dev *dev) pci_cfg_access_lock(sdev); } /* PCI link toggle */ - err = pci_read_config_word(bridge, cap + PCI_EXP_LNKCTL, ®16); - if (err) - return err; - reg16 |= PCI_EXP_LNKCTL_LD; - err = pci_write_config_word(bridge, cap + PCI_EXP_LNKCTL, reg16); + err = pcie_capability_set_word(bridge, PCI_EXP_LNKCTL, PCI_EXP_LNKCTL_LD); if (err) return err; msleep(500); - reg16 &= ~PCI_EXP_LNKCTL_LD; - err = pci_write_config_word(bridge, cap + PCI_EXP_LNKCTL, reg16); + err = pcie_capability_clear_word(bridge, PCI_EXP_LNKCTL, PCI_EXP_LNKCTL_LD); if (err) return err; diff --git a/drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c b/drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c index df16dc35bb04c..2fa84556bc20e 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c @@ -138,18 +138,23 @@ int mlx5_set_msix_vec_count(struct mlx5_core_dev *dev, int function_id, return ret; } -static void irq_release(struct mlx5_irq *irq) +static void mlx5_system_free_irq(struct mlx5_irq *irq) { - struct mlx5_irq_pool *pool = irq->pool; - - xa_erase(&pool->irqs, irq->index); /* free_irq requires that affinity and rmap will be cleared * before calling it. This is why there is asymmetry with set_rmap * which should be called after alloc_irq but before request_irq. */ irq_set_affinity_hint(irq->irqn, NULL); - free_cpumask_var(irq->mask); free_irq(irq->irqn, &irq->nh); +} + +static void irq_release(struct mlx5_irq *irq) +{ + struct mlx5_irq_pool *pool = irq->pool; + + xa_erase(&pool->irqs, irq->index); + mlx5_system_free_irq(irq); + free_cpumask_var(irq->mask); kfree(irq); } @@ -556,7 +561,7 @@ static void mlx5_irq_pool_free_irqs(struct mlx5_irq_pool *pool) unsigned long index; xa_for_each(&pool->irqs, index, irq) - free_irq(irq->irqn, &irq->nh); + mlx5_system_free_irq(irq); } static void mlx5_irq_pools_free_irqs(struct mlx5_irq_table *table) diff --git a/drivers/net/ethernet/mellanox/mlxsw/i2c.c b/drivers/net/ethernet/mellanox/mlxsw/i2c.c index ce843ea914646..61d2f621d65fc 100644 --- a/drivers/net/ethernet/mellanox/mlxsw/i2c.c +++ b/drivers/net/ethernet/mellanox/mlxsw/i2c.c @@ -47,6 +47,7 @@ #define MLXSW_I2C_MBOX_SIZE_BITS 12 #define MLXSW_I2C_ADDR_BUF_SIZE 4 #define MLXSW_I2C_BLK_DEF 32 +#define MLXSW_I2C_BLK_MAX 100 #define MLXSW_I2C_RETRY 5 #define MLXSW_I2C_TIMEOUT_MSECS 5000 #define MLXSW_I2C_MAX_DATA_SIZE 256 @@ -428,7 +429,7 @@ mlxsw_i2c_cmd(struct device *dev, u16 opcode, u32 in_mod, size_t in_mbox_size, } else { /* No input mailbox is case of initialization query command. */ reg_size = MLXSW_I2C_MAX_DATA_SIZE; - num = reg_size / mlxsw_i2c->block_size; + num = DIV_ROUND_UP(reg_size, mlxsw_i2c->block_size); if (mutex_lock_interruptible(&mlxsw_i2c->cmd.lock) < 0) { dev_err(&client->dev, "Could not acquire lock"); @@ -576,7 +577,7 @@ static int mlxsw_i2c_probe(struct i2c_client *client, return -EOPNOTSUPP; } - mlxsw_i2c->block_size = max_t(u16, MLXSW_I2C_BLK_DEF, + mlxsw_i2c->block_size = min_t(u16, MLXSW_I2C_BLK_MAX, min_t(u16, quirks->max_read_len, quirks->max_write_len)); } else { diff --git a/drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_bloom_filter.c b/drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_bloom_filter.c index dbd3bebf11eca..2e8b17e3b9358 100644 --- a/drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_bloom_filter.c +++ b/drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_bloom_filter.c @@ -251,7 +251,7 @@ mlxsw_sp_acl_bf_init(struct mlxsw_sp *mlxsw_sp, unsigned int num_erp_banks) * is 2^ACL_MAX_BF_LOG */ bf_bank_size = 1 << MLXSW_CORE_RES_GET(mlxsw_sp->core, ACL_MAX_BF_LOG); - bf = kzalloc(struct_size(bf, refcnt, bf_bank_size * num_erp_banks), + bf = kzalloc(struct_size(bf, refcnt, size_mul(bf_bank_size, num_erp_banks)), GFP_KERNEL); if (!bf) return ERR_PTR(-ENOMEM); diff --git a/drivers/net/ethernet/mellanox/mlxsw/spectrum_nve_vxlan.c b/drivers/net/ethernet/mellanox/mlxsw/spectrum_nve_vxlan.c index d018d2da59499..5e020d0addc67 100644 --- a/drivers/net/ethernet/mellanox/mlxsw/spectrum_nve_vxlan.c +++ b/drivers/net/ethernet/mellanox/mlxsw/spectrum_nve_vxlan.c @@ -245,8 +245,8 @@ const struct mlxsw_sp_nve_ops mlxsw_sp1_nve_vxlan_ops = { .fdb_clear_offload = mlxsw_sp_nve_vxlan_clear_offload, }; -static bool mlxsw_sp2_nve_vxlan_learning_set(struct mlxsw_sp *mlxsw_sp, - bool learning_en) +static int mlxsw_sp2_nve_vxlan_learning_set(struct mlxsw_sp *mlxsw_sp, + bool learning_en) { char tnpc_pl[MLXSW_REG_TNPC_LEN]; diff --git a/drivers/net/ethernet/microsoft/Kconfig b/drivers/net/ethernet/microsoft/Kconfig index fe4e7a7d9c0b5..090e6b9832431 100644 --- a/drivers/net/ethernet/microsoft/Kconfig +++ b/drivers/net/ethernet/microsoft/Kconfig @@ -19,6 +19,7 @@ config MICROSOFT_MANA tristate "Microsoft Azure Network Adapter (MANA) support" depends on PCI_MSI && X86_64 depends on PCI_HYPERV + select AUXILIARY_BUS help This driver supports Microsoft Azure Network Adapter (MANA). So far, the driver is only supported on X86_64. diff --git a/drivers/net/ethernet/microsoft/mana/Makefile b/drivers/net/ethernet/microsoft/mana/Makefile index 0edd5bb685f3c..e16a4221f571d 100644 --- a/drivers/net/ethernet/microsoft/mana/Makefile +++ b/drivers/net/ethernet/microsoft/mana/Makefile @@ -3,4 +3,4 @@ # Makefile for the Microsoft Azure Network Adapter driver obj-$(CONFIG_MICROSOFT_MANA) += mana.o -mana-objs := gdma_main.o shm_channel.o hw_channel.o mana_en.o mana_ethtool.o +mana-objs := gdma_main.o shm_channel.o hw_channel.o mana_en.o mana_ethtool.o mana_bpf.o diff --git a/drivers/net/ethernet/microsoft/mana/gdma_main.c b/drivers/net/ethernet/microsoft/mana/gdma_main.c index 0fb42193643dc..5768bef963d6e 100644 --- a/drivers/net/ethernet/microsoft/mana/gdma_main.c +++ b/drivers/net/ethernet/microsoft/mana/gdma_main.c @@ -3,8 +3,10 @@ #include #include +#include +#include -#include "mana.h" +#include static u32 mana_gd_r32(struct gdma_context *g, u64 offset) { @@ -16,7 +18,24 @@ static u64 mana_gd_r64(struct gdma_context *g, u64 offset) return readq(g->bar0_va + offset); } -static void mana_gd_init_registers(struct pci_dev *pdev) +static void mana_gd_init_pf_regs(struct pci_dev *pdev) +{ + struct gdma_context *gc = pci_get_drvdata(pdev); + void __iomem *sriov_base_va; + u64 sriov_base_off; + + gc->db_page_size = mana_gd_r32(gc, GDMA_PF_REG_DB_PAGE_SIZE) & 0xFFFF; + gc->db_page_base = gc->bar0_va + + mana_gd_r64(gc, GDMA_PF_REG_DB_PAGE_OFF); + + sriov_base_off = mana_gd_r64(gc, GDMA_SRIOV_REG_CFG_BASE_OFF); + + sriov_base_va = gc->bar0_va + sriov_base_off; + gc->shm_base = sriov_base_va + + mana_gd_r64(gc, sriov_base_off + GDMA_PF_REG_SHM_OFF); +} + +static void mana_gd_init_vf_regs(struct pci_dev *pdev) { struct gdma_context *gc = pci_get_drvdata(pdev); @@ -25,9 +44,22 @@ static void mana_gd_init_registers(struct pci_dev *pdev) gc->db_page_base = gc->bar0_va + mana_gd_r64(gc, GDMA_REG_DB_PAGE_OFFSET); + gc->phys_db_page_base = gc->bar0_pa + + mana_gd_r64(gc, GDMA_REG_DB_PAGE_OFFSET); + gc->shm_base = gc->bar0_va + mana_gd_r64(gc, GDMA_REG_SHM_OFFSET); } +static void mana_gd_init_registers(struct pci_dev *pdev) +{ + struct gdma_context *gc = pci_get_drvdata(pdev); + + if (gc->is_pf) + mana_gd_init_pf_regs(pdev); + else + mana_gd_init_vf_regs(pdev); +} + static int mana_gd_query_max_resources(struct pci_dev *pdev) { struct gdma_context *gc = pci_get_drvdata(pdev); @@ -120,6 +152,7 @@ int mana_gd_send_request(struct gdma_context *gc, u32 req_len, const void *req, return mana_hwc_send_request(hwc, req_len, req, resp_len, resp); } +EXPORT_SYMBOL_NS(mana_gd_send_request, NET_MANA); int mana_gd_alloc_memory(struct gdma_context *gc, unsigned int length, struct gdma_mem_info *gmi) @@ -165,7 +198,7 @@ static int mana_gd_create_hw_eq(struct gdma_context *gc, req.type = queue->type; req.pdid = queue->gdma_dev->pdid; req.doolbell_id = queue->gdma_dev->doorbell; - req.gdma_region = queue->mem_info.gdma_region; + req.gdma_region = queue->mem_info.dma_region_handle; req.queue_size = queue->queue_size; req.log2_throttle_limit = queue->eq.log2_throttle_limit; req.eq_pci_msix_index = queue->eq.msix_index; @@ -179,7 +212,7 @@ static int mana_gd_create_hw_eq(struct gdma_context *gc, queue->id = resp.queue_index; queue->eq.disable_needed = true; - queue->mem_info.gdma_region = GDMA_INVALID_DMA_REGION; + queue->mem_info.dma_region_handle = GDMA_INVALID_DMA_REGION; return 0; } @@ -267,8 +300,11 @@ static void mana_gd_ring_doorbell(struct gdma_context *gc, u32 db_index, void mana_gd_wq_ring_doorbell(struct gdma_context *gc, struct gdma_queue *queue) { + /* Hardware Spec specifies that software client should set 0 for + * wqe_cnt for Receive Queues. This value is not used in Send Queues. + */ mana_gd_ring_doorbell(gc, queue->gdma_dev->doorbell, queue->type, - queue->id, queue->head * GDMA_WQE_BU_SIZE, 1); + queue->id, queue->head * GDMA_WQE_BU_SIZE, 0); } void mana_gd_ring_cq(struct gdma_queue *cq, u8 arm_bit) @@ -638,24 +674,29 @@ int mana_gd_create_hwc_queue(struct gdma_dev *gd, return err; } -static void mana_gd_destroy_dma_region(struct gdma_context *gc, u64 gdma_region) +int mana_gd_destroy_dma_region(struct gdma_context *gc, u64 dma_region_handle) { struct gdma_destroy_dma_region_req req = {}; struct gdma_general_resp resp = {}; int err; - if (gdma_region == GDMA_INVALID_DMA_REGION) - return; + if (dma_region_handle == GDMA_INVALID_DMA_REGION) + return 0; mana_gd_init_req_hdr(&req.hdr, GDMA_DESTROY_DMA_REGION, sizeof(req), sizeof(resp)); - req.gdma_region = gdma_region; + req.dma_region_handle = dma_region_handle; err = mana_gd_send_request(gc, sizeof(req), &req, sizeof(resp), &resp); - if (err || resp.hdr.status) + if (err || resp.hdr.status) { dev_err(gc->dev, "Failed to destroy DMA region: %d, 0x%x\n", err, resp.hdr.status); + return -EPROTO; + } + + return 0; } +EXPORT_SYMBOL_NS(mana_gd_destroy_dma_region, NET_MANA); static int mana_gd_create_dma_region(struct gdma_dev *gd, struct gdma_mem_info *gmi) @@ -666,7 +707,7 @@ static int mana_gd_create_dma_region(struct gdma_dev *gd, struct gdma_context *gc = gd->gdma_context; struct hw_channel_context *hwc; u32 length = gmi->length; - u32 req_msg_size; + size_t req_msg_size; int err; int i; @@ -677,7 +718,7 @@ static int mana_gd_create_dma_region(struct gdma_dev *gd, return -EINVAL; hwc = gc->hwc.driver_data; - req_msg_size = sizeof(*req) + num_page * sizeof(u64); + req_msg_size = struct_size(req, page_addr_list, num_page); if (req_msg_size > hwc->max_req_msg_size) return -EINVAL; @@ -700,14 +741,15 @@ static int mana_gd_create_dma_region(struct gdma_dev *gd, if (err) goto out; - if (resp.hdr.status || resp.gdma_region == GDMA_INVALID_DMA_REGION) { + if (resp.hdr.status || + resp.dma_region_handle == GDMA_INVALID_DMA_REGION) { dev_err(gc->dev, "Failed to create DMA region: 0x%x\n", resp.hdr.status); err = -EPROTO; goto out; } - gmi->gdma_region = resp.gdma_region; + gmi->dma_region_handle = resp.dma_region_handle; out: kfree(req); return err; @@ -830,7 +872,7 @@ void mana_gd_destroy_queue(struct gdma_context *gc, struct gdma_queue *queue) return; } - mana_gd_destroy_dma_region(gc, gmi->gdma_region); + mana_gd_destroy_dma_region(gc, gmi->dma_region_handle); mana_gd_free_memory(gmi); kfree(queue); } @@ -853,6 +895,15 @@ int mana_gd_verify_vf_version(struct pci_dev *pdev) req.gd_drv_cap_flags3 = GDMA_DRV_CAP_FLAGS3; req.gd_drv_cap_flags4 = GDMA_DRV_CAP_FLAGS4; + req.drv_ver = 0; /* Unused*/ + req.os_type = 0x10; /* Linux */ + req.os_ver_major = LINUX_VERSION_MAJOR; + req.os_ver_minor = LINUX_VERSION_PATCHLEVEL; + req.os_ver_build = LINUX_VERSION_SUBLEVEL; + strscpy(req.os_ver_str1, utsname()->sysname, sizeof(req.os_ver_str1)); + strscpy(req.os_ver_str2, utsname()->release, sizeof(req.os_ver_str2)); + strscpy(req.os_ver_str3, utsname()->version, sizeof(req.os_ver_str3)); + err = mana_gd_send_request(gc, sizeof(req), &req, sizeof(resp), &resp); if (err || resp.hdr.status) { dev_err(gc->dev, "VfVerifyVersionOutput: %d, status=0x%x\n", @@ -1169,9 +1220,9 @@ static int mana_gd_setup_irqs(struct pci_dev *pdev) unsigned int max_queues_per_port = num_online_cpus(); struct gdma_context *gc = pci_get_drvdata(pdev); struct gdma_irq_context *gic; - unsigned int max_irqs; + unsigned int max_irqs, cpu; int nvec, irq; - int err, i, j; + int err, i = 0, j; if (max_queues_per_port > MANA_MAX_NUM_QUEUES) max_queues_per_port = MANA_MAX_NUM_QUEUES; @@ -1211,6 +1262,9 @@ static int mana_gd_setup_irqs(struct pci_dev *pdev) err = request_irq(irq, mana_gd_intr, 0, gic->name, gic); if (err) goto free_irq; + + cpu = cpumask_local_spread(i, gc->numa_node); + irq_set_affinity_hint(irq, cpumask_of(cpu)); } err = mana_gd_alloc_res_map(nvec, &gc->msix_resource); @@ -1226,6 +1280,8 @@ static int mana_gd_setup_irqs(struct pci_dev *pdev) for (j = i - 1; j >= 0; j--) { irq = pci_irq_vector(pdev, j); gic = &gc->irq_contexts[j]; + + irq_set_affinity_hint(irq, NULL); free_irq(irq, gic); } @@ -1253,6 +1309,9 @@ static void mana_gd_remove_irqs(struct pci_dev *pdev) continue; gic = &gc->irq_contexts[i]; + + /* Need to clear the hint before free_irq */ + irq_set_affinity_hint(irq, NULL); free_irq(irq, gic); } @@ -1264,6 +1323,57 @@ static void mana_gd_remove_irqs(struct pci_dev *pdev) gc->irq_contexts = NULL; } +static int mana_gd_setup(struct pci_dev *pdev) +{ + struct gdma_context *gc = pci_get_drvdata(pdev); + int err; + + mana_gd_init_registers(pdev); + mana_smc_init(&gc->shm_channel, gc->dev, gc->shm_base); + + err = mana_gd_setup_irqs(pdev); + if (err) + return err; + + err = mana_hwc_create_channel(gc); + if (err) + goto remove_irq; + + err = mana_gd_verify_vf_version(pdev); + if (err) + goto destroy_hwc; + + err = mana_gd_query_max_resources(pdev); + if (err) + goto destroy_hwc; + + err = mana_gd_detect_devices(pdev); + if (err) + goto destroy_hwc; + + return 0; + +destroy_hwc: + mana_hwc_destroy_channel(gc); +remove_irq: + mana_gd_remove_irqs(pdev); + return err; +} + +static void mana_gd_cleanup(struct pci_dev *pdev) +{ + struct gdma_context *gc = pci_get_drvdata(pdev); + + mana_hwc_destroy_channel(gc); + + mana_gd_remove_irqs(pdev); +} + +static bool mana_is_pf(unsigned short dev_id) +{ + return dev_id == MANA_PF_DEVICE_ID; +} + static int mana_gd_probe(struct pci_dev *pdev, const struct pci_device_id *ent) { struct gdma_context *gc; @@ -1288,61 +1398,46 @@ static int mana_gd_probe(struct pci_dev *pdev, const struct pci_device_id *ent) if (err) goto release_region; + err = dma_set_max_seg_size(&pdev->dev, UINT_MAX); + if (err) { + dev_err(&pdev->dev, "Failed to set dma device segment size\n"); + goto release_region; + } + err = -ENOMEM; gc = vzalloc(sizeof(*gc)); if (!gc) goto release_region; + mutex_init(&gc->eq_test_event_mutex); + pci_set_drvdata(pdev, gc); + gc->bar0_pa = pci_resource_start(pdev, 0); + bar0_va = pci_iomap(pdev, bar, 0); if (!bar0_va) goto free_gc; + gc->numa_node = dev_to_node(&pdev->dev); + gc->is_pf = mana_is_pf(pdev->device); gc->bar0_va = bar0_va; gc->dev = &pdev->dev; - pci_set_drvdata(pdev, gc); - - mana_gd_init_registers(pdev); - - mana_smc_init(&gc->shm_channel, gc->dev, gc->shm_base); - - err = mana_gd_setup_irqs(pdev); + err = mana_gd_setup(pdev); if (err) goto unmap_bar; - mutex_init(&gc->eq_test_event_mutex); - - err = mana_hwc_create_channel(gc); + err = mana_probe(&gc->mana, false); if (err) - goto remove_irq; - - err = mana_gd_verify_vf_version(pdev); - if (err) - goto remove_irq; - - err = mana_gd_query_max_resources(pdev); - if (err) - goto remove_irq; - - err = mana_gd_detect_devices(pdev); - if (err) - goto remove_irq; - - err = mana_probe(&gc->mana); - if (err) - goto clean_up_gdma; + goto cleanup_gd; return 0; -clean_up_gdma: - mana_hwc_destroy_channel(gc); - vfree(gc->cq_table); - gc->cq_table = NULL; -remove_irq: - mana_gd_remove_irqs(pdev); +cleanup_gd: + mana_gd_cleanup(pdev); unmap_bar: pci_iounmap(pdev, bar0_va); free_gc: + pci_set_drvdata(pdev, NULL); vfree(gc); release_region: pci_release_regions(pdev); @@ -1357,13 +1452,9 @@ static void mana_gd_remove(struct pci_dev *pdev) { struct gdma_context *gc = pci_get_drvdata(pdev); - mana_remove(&gc->mana); + mana_remove(&gc->mana, false); - mana_hwc_destroy_channel(gc); - vfree(gc->cq_table); - gc->cq_table = NULL; - - mana_gd_remove_irqs(pdev); + mana_gd_cleanup(pdev); pci_iounmap(pdev, gc->bar0_va); @@ -1374,12 +1465,55 @@ static void mana_gd_remove(struct pci_dev *pdev) pci_disable_device(pdev); } -#ifndef PCI_VENDOR_ID_MICROSOFT -#define PCI_VENDOR_ID_MICROSOFT 0x1414 -#endif +/* The 'state' parameter is not used. */ +static int mana_gd_suspend(struct pci_dev *pdev, pm_message_t state) +{ + struct gdma_context *gc = pci_get_drvdata(pdev); + + mana_remove(&gc->mana, true); + + mana_gd_cleanup(pdev); + + return 0; +} + +/* In case the NIC hardware stops working, the suspend and resume callbacks will + * fail -- if this happens, it's safer to just report an error than try to undo + * what has been done. + */ +static int mana_gd_resume(struct pci_dev *pdev) +{ + struct gdma_context *gc = pci_get_drvdata(pdev); + int err; + + err = mana_gd_setup(pdev); + if (err) + return err; + + err = mana_probe(&gc->mana, true); + if (err) + return err; + + return 0; +} + +/* Quiesce the device for kexec. This is also called upon reboot/shutdown. */ +static void mana_gd_shutdown(struct pci_dev *pdev) +{ + struct gdma_context *gc = pci_get_drvdata(pdev); + + dev_info(&pdev->dev, "Shutdown was called\n"); + + mana_remove(&gc->mana, true); + + mana_gd_cleanup(pdev); + + pci_disable_device(pdev); +} static const struct pci_device_id mana_id_table[] = { - { PCI_DEVICE(PCI_VENDOR_ID_MICROSOFT, 0x00BA) }, + { PCI_DEVICE(PCI_VENDOR_ID_MICROSOFT, MANA_PF_DEVICE_ID) }, + { PCI_DEVICE(PCI_VENDOR_ID_MICROSOFT, MANA_VF_DEVICE_ID) }, { } }; @@ -1388,6 +1522,9 @@ static struct pci_driver mana_driver = { .id_table = mana_id_table, .probe = mana_gd_probe, .remove = mana_gd_remove, + .suspend = mana_gd_suspend, + .resume = mana_gd_resume, + .shutdown = mana_gd_shutdown, }; module_pci_driver(mana_driver); diff --git a/drivers/net/ethernet/microsoft/mana/hw_channel.c b/drivers/net/ethernet/microsoft/mana/hw_channel.c index d5c485a6d2845..9d1507eba5b90 100644 --- a/drivers/net/ethernet/microsoft/mana/hw_channel.c +++ b/drivers/net/ethernet/microsoft/mana/hw_channel.c @@ -1,8 +1,8 @@ // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause /* Copyright (c) 2021, Microsoft Corporation. */ -#include "gdma.h" -#include "hw_channel.h" +#include +#include static int mana_hwc_get_msg_index(struct hw_channel_context *hwc, u16 *msg_id) { @@ -158,6 +158,14 @@ static void mana_hwc_init_event_handler(void *ctx, struct gdma_queue *q_self, hwc->rxq->msg_buf->gpa_mkey = val; hwc->txq->msg_buf->gpa_mkey = val; break; + + case HWC_INIT_DATA_PF_DEST_RQ_ID: + hwc->pf_dest_vrq_id = val; + break; + + case HWC_INIT_DATA_PF_DEST_CQ_ID: + hwc->pf_dest_vrcq_id = val; + break; } break; @@ -309,9 +317,6 @@ static void mana_hwc_comp_event(void *ctx, struct gdma_queue *q_self) static void mana_hwc_destroy_cq(struct gdma_context *gc, struct hwc_cq *hwc_cq) { - if (!hwc_cq) - return; - kfree(hwc_cq->comp_buf); if (hwc_cq->gdma_cq) @@ -363,7 +368,7 @@ static int mana_hwc_create_cq(struct hw_channel_context *hwc, u16 q_depth, } hwc_cq->gdma_cq = cq; - comp_buf = kcalloc(q_depth, sizeof(struct gdma_comp), GFP_KERNEL); + comp_buf = kcalloc(q_depth, sizeof(*comp_buf), GFP_KERNEL); if (!comp_buf) { err = -ENOMEM; goto out; @@ -446,9 +451,6 @@ static void mana_hwc_dealloc_dma_buf(struct hw_channel_context *hwc, static void mana_hwc_destroy_wq(struct hw_channel_context *hwc, struct hwc_wq *hwc_wq) { - if (!hwc_wq) - return; - mana_hwc_dealloc_dma_buf(hwc, hwc_wq->msg_buf); if (hwc_wq->gdma_wq) @@ -486,16 +488,16 @@ static int mana_hwc_create_wq(struct hw_channel_context *hwc, if (err) goto out; - err = mana_hwc_alloc_dma_buf(hwc, q_depth, max_msg_size, - &hwc_wq->msg_buf); - if (err) - goto out; - hwc_wq->hwc = hwc; hwc_wq->gdma_wq = queue; hwc_wq->queue_depth = q_depth; hwc_wq->hwc_cq = hwc_cq; + err = mana_hwc_alloc_dma_buf(hwc, q_depth, max_msg_size, + &hwc_wq->msg_buf); + if (err) + goto out; + *hwc_wq_ptr = hwc_wq; return 0; out: @@ -580,7 +582,7 @@ static int mana_hwc_test_channel(struct hw_channel_context *hwc, u16 q_depth, return err; } - ctx = kzalloc(q_depth * sizeof(struct hwc_caller_ctx), GFP_KERNEL); + ctx = kcalloc(q_depth, sizeof(*ctx), GFP_KERNEL); if (!ctx) return -ENOMEM; @@ -621,6 +623,7 @@ static int mana_hwc_establish_channel(struct gdma_context *gc, u16 *q_depth, *max_req_msg_size = hwc->hwc_init_max_req_msg_size; *max_resp_msg_size = hwc->hwc_init_max_resp_msg_size; + /* Both were set in mana_hwc_init_event_handler(). */ if (WARN_ON(cq->id >= gc->max_num_cqs)) return -EPROTO; @@ -636,9 +639,6 @@ static int mana_hwc_establish_channel(struct gdma_context *gc, u16 *q_depth, static int mana_hwc_init_queues(struct hw_channel_context *hwc, u16 q_depth, u32 max_req_msg_size, u32 max_resp_msg_size) { - struct hwc_wq *hwc_rxq = NULL; - struct hwc_wq *hwc_txq = NULL; - struct hwc_cq *hwc_cq = NULL; int err; err = mana_hwc_init_inflight_msg(hwc, q_depth); @@ -651,44 +651,32 @@ static int mana_hwc_init_queues(struct hw_channel_context *hwc, u16 q_depth, err = mana_hwc_create_cq(hwc, q_depth * 2, mana_hwc_init_event_handler, hwc, mana_hwc_rx_event_handler, hwc, - mana_hwc_tx_event_handler, hwc, &hwc_cq); + mana_hwc_tx_event_handler, hwc, &hwc->cq); if (err) { dev_err(hwc->dev, "Failed to create HWC CQ: %d\n", err); goto out; } - hwc->cq = hwc_cq; err = mana_hwc_create_wq(hwc, GDMA_RQ, q_depth, max_req_msg_size, - hwc_cq, &hwc_rxq); + hwc->cq, &hwc->rxq); if (err) { dev_err(hwc->dev, "Failed to create HWC RQ: %d\n", err); goto out; } - hwc->rxq = hwc_rxq; err = mana_hwc_create_wq(hwc, GDMA_SQ, q_depth, max_resp_msg_size, - hwc_cq, &hwc_txq); + hwc->cq, &hwc->txq); if (err) { dev_err(hwc->dev, "Failed to create HWC SQ: %d\n", err); goto out; } - hwc->txq = hwc_txq; hwc->num_inflight_msg = q_depth; hwc->max_req_msg_size = max_req_msg_size; return 0; out: - if (hwc_txq) - mana_hwc_destroy_wq(hwc, hwc_txq); - - if (hwc_rxq) - mana_hwc_destroy_wq(hwc, hwc_rxq); - - if (hwc_cq) - mana_hwc_destroy_cq(hwc->gdma_dev->gdma_context, hwc_cq); - - mana_gd_free_res_map(&hwc->inflight_msg_res); + /* mana_hwc_create_channel() will do the cleanup.*/ return err; } @@ -716,6 +704,9 @@ int mana_hwc_create_channel(struct gdma_context *gc) gd->pdid = INVALID_PDID; gd->doorbell = INVALID_DOORBELL; + /* mana_hwc_init_queues() only creates the required data structures, + * and doesn't touch the HWC device. + */ err = mana_hwc_init_queues(hwc, HW_CHANNEL_VF_BOOTSTRAP_QUEUE_DEPTH, HW_CHANNEL_MAX_REQUEST_SIZE, HW_CHANNEL_MAX_RESPONSE_SIZE); @@ -741,51 +732,62 @@ int mana_hwc_create_channel(struct gdma_context *gc) return 0; out: - kfree(hwc); + mana_hwc_destroy_channel(gc); return err; } void mana_hwc_destroy_channel(struct gdma_context *gc) { struct hw_channel_context *hwc = gc->hwc.driver_data; - struct hwc_caller_ctx *ctx; - mana_smc_teardown_hwc(&gc->shm_channel, false); + if (!hwc) + return; + + /* gc->max_num_cqs is set in mana_hwc_init_event_handler(). If it's + * non-zero, the HWC worked and we should tear down the HWC here. + */ + if (gc->max_num_cqs > 0) { + mana_smc_teardown_hwc(&gc->shm_channel, false); + gc->max_num_cqs = 0; + } - ctx = hwc->caller_ctx; - kfree(ctx); + kfree(hwc->caller_ctx); hwc->caller_ctx = NULL; - mana_hwc_destroy_wq(hwc, hwc->txq); - hwc->txq = NULL; + if (hwc->txq) + mana_hwc_destroy_wq(hwc, hwc->txq); - mana_hwc_destroy_wq(hwc, hwc->rxq); - hwc->rxq = NULL; + if (hwc->rxq) + mana_hwc_destroy_wq(hwc, hwc->rxq); - mana_hwc_destroy_cq(hwc->gdma_dev->gdma_context, hwc->cq); - hwc->cq = NULL; + if (hwc->cq) + mana_hwc_destroy_cq(hwc->gdma_dev->gdma_context, hwc->cq); mana_gd_free_res_map(&hwc->inflight_msg_res); hwc->num_inflight_msg = 0; - if (hwc->gdma_dev->pdid != INVALID_PDID) { - hwc->gdma_dev->doorbell = INVALID_DOORBELL; - hwc->gdma_dev->pdid = INVALID_PDID; - } + hwc->gdma_dev->doorbell = INVALID_DOORBELL; + hwc->gdma_dev->pdid = INVALID_PDID; kfree(hwc); gc->hwc.driver_data = NULL; gc->hwc.gdma_context = NULL; + + vfree(gc->cq_table); + gc->cq_table = NULL; } int mana_hwc_send_request(struct hw_channel_context *hwc, u32 req_len, const void *req, u32 resp_len, void *resp) { + struct gdma_context *gc = hwc->gdma_dev->gdma_context; struct hwc_work_request *tx_wr; struct hwc_wq *txq = hwc->txq; struct gdma_req_hdr *req_msg; struct hwc_caller_ctx *ctx; + u32 dest_vrcq = 0; + u32 dest_vrq = 0; u16 msg_id; int err; @@ -812,7 +814,12 @@ int mana_hwc_send_request(struct hw_channel_context *hwc, u32 req_len, tx_wr->msg_size = req_len; - err = mana_hwc_post_tx_wqe(txq, tx_wr, 0, 0, false); + if (gc->is_pf) { + dest_vrq = hwc->pf_dest_vrq_id; + dest_vrcq = hwc->pf_dest_vrcq_id; + } + + err = mana_hwc_post_tx_wqe(txq, tx_wr, dest_vrq, dest_vrcq, false); if (err) { dev_err(hwc->dev, "HWC: Failed to post send WQE: %d\n", err); goto out; @@ -829,7 +836,7 @@ int mana_hwc_send_request(struct hw_channel_context *hwc, u32 req_len, goto out; } - if (ctx->status_code) { + if (ctx->status_code && ctx->status_code != GDMA_STATUS_MORE_ENTRIES) { dev_err(hwc->dev, "HWC: Failed hw_channel req: 0x%x\n", ctx->status_code); err = -EPROTO; diff --git a/drivers/net/ethernet/microsoft/mana/mana_bpf.c b/drivers/net/ethernet/microsoft/mana/mana_bpf.c new file mode 100644 index 0000000000000..23b1521c0df96 --- /dev/null +++ b/drivers/net/ethernet/microsoft/mana/mana_bpf.c @@ -0,0 +1,226 @@ +// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause +/* Copyright (c) 2021, Microsoft Corporation. */ + +#include +#include +#include +#include +#include +#include + +#include + +void mana_xdp_tx(struct sk_buff *skb, struct net_device *ndev) +{ + u16 txq_idx = skb_get_queue_mapping(skb); + struct netdev_queue *ndevtxq; + int rc; + + __skb_push(skb, ETH_HLEN); + + ndevtxq = netdev_get_tx_queue(ndev, txq_idx); + __netif_tx_lock(ndevtxq, smp_processor_id()); + + rc = mana_start_xmit(skb, ndev); + + __netif_tx_unlock(ndevtxq); + + if (dev_xmit_complete(rc)) + return; + + dev_kfree_skb_any(skb); + ndev->stats.tx_dropped++; +} + +static int mana_xdp_xmit_fm(struct net_device *ndev, struct xdp_frame *frame, + u16 q_idx) +{ + struct sk_buff *skb; + + skb = xdp_build_skb_from_frame(frame, ndev); + if (unlikely(!skb)) + return -ENOMEM; + + skb_set_queue_mapping(skb, q_idx); + + mana_xdp_tx(skb, ndev); + + return 0; +} + +int mana_xdp_xmit(struct net_device *ndev, int n, struct xdp_frame **frames, + u32 flags) +{ + struct mana_port_context *apc = netdev_priv(ndev); + struct mana_stats_tx *tx_stats; + int i, count = 0; + u16 q_idx; + + if (unlikely(!apc->port_is_up)) + return 0; + + q_idx = smp_processor_id() % ndev->real_num_tx_queues; + + for (i = 0; i < n; i++) { + if (mana_xdp_xmit_fm(ndev, frames[i], q_idx)) + break; + + count++; + } + + tx_stats = &apc->tx_qp[q_idx].txq.stats; + + u64_stats_update_begin(&tx_stats->syncp); + tx_stats->xdp_xmit += count; + u64_stats_update_end(&tx_stats->syncp); + + return count; +} + +u32 mana_run_xdp(struct net_device *ndev, struct mana_rxq *rxq, + struct xdp_buff *xdp, void *buf_va, uint pkt_len) +{ + struct mana_stats_rx *rx_stats; + struct bpf_prog *prog; + u32 act = XDP_PASS; + + rcu_read_lock(); + prog = rcu_dereference(rxq->bpf_prog); + + if (!prog) + goto out; + + xdp_init_buff(xdp, PAGE_SIZE, &rxq->xdp_rxq); + xdp_prepare_buff(xdp, buf_va, XDP_PACKET_HEADROOM, pkt_len, false); + + act = bpf_prog_run_xdp(prog, xdp); + + rx_stats = &rxq->stats; + + switch (act) { + case XDP_PASS: + case XDP_TX: + case XDP_DROP: + break; + + case XDP_REDIRECT: + rxq->xdp_rc = xdp_do_redirect(ndev, xdp, prog); + if (!rxq->xdp_rc) { + rxq->xdp_flush = true; + + u64_stats_update_begin(&rx_stats->syncp); + rx_stats->packets++; + rx_stats->bytes += pkt_len; + rx_stats->xdp_redirect++; + u64_stats_update_end(&rx_stats->syncp); + + break; + } + + fallthrough; + + case XDP_ABORTED: + trace_xdp_exception(ndev, prog, act); + break; + + default: + bpf_warn_invalid_xdp_action(ndev, prog, act); + } + +out: + rcu_read_unlock(); + + return act; +} + +struct bpf_prog *mana_xdp_get(struct mana_port_context *apc) +{ + ASSERT_RTNL(); + + return apc->bpf_prog; +} + +static struct bpf_prog *mana_chn_xdp_get(struct mana_port_context *apc) +{ + return rtnl_dereference(apc->rxqs[0]->bpf_prog); +} + +/* Set xdp program on channels */ +void mana_chn_setxdp(struct mana_port_context *apc, struct bpf_prog *prog) +{ + struct bpf_prog *old_prog = mana_chn_xdp_get(apc); + unsigned int num_queues = apc->num_queues; + int i; + + ASSERT_RTNL(); + + if (old_prog == prog) + return; + + if (prog) + bpf_prog_add(prog, num_queues); + + for (i = 0; i < num_queues; i++) + rcu_assign_pointer(apc->rxqs[i]->bpf_prog, prog); + + if (old_prog) + for (i = 0; i < num_queues; i++) + bpf_prog_put(old_prog); +} + +static int mana_xdp_set(struct net_device *ndev, struct bpf_prog *prog, + struct netlink_ext_ack *extack) +{ + struct mana_port_context *apc = netdev_priv(ndev); + struct bpf_prog *old_prog; + struct gdma_context *gc; + + gc = apc->ac->gdma_dev->gdma_context; + + old_prog = mana_xdp_get(apc); + + if (!old_prog && !prog) + return 0; + + if (prog && ndev->mtu > MANA_XDP_MTU_MAX) { + netdev_err(ndev, "XDP: mtu:%u too large, mtu_max:%lu\n", + ndev->mtu, MANA_XDP_MTU_MAX); + NL_SET_ERR_MSG_MOD(extack, "XDP: mtu too large"); + + return -EOPNOTSUPP; + } + + /* One refcnt of the prog is hold by the caller already, so + * don't increase refcnt for this one. + */ + apc->bpf_prog = prog; + + if (old_prog) + bpf_prog_put(old_prog); + + if (apc->port_is_up) + mana_chn_setxdp(apc, prog); + + if (prog) + ndev->max_mtu = MANA_XDP_MTU_MAX; + else + ndev->max_mtu = gc->adapter_mtu - ETH_HLEN; + + return 0; +} + +int mana_bpf(struct net_device *ndev, struct netdev_bpf *bpf) +{ + struct netlink_ext_ack *extack = bpf->extack; + int ret; + + switch (bpf->command) { + case XDP_SETUP_PROG: + return mana_xdp_set(ndev, bpf->prog, extack); + + default: + return -EOPNOTSUPP; + } + + return ret; +} diff --git a/drivers/net/ethernet/microsoft/mana/mana_en.c b/drivers/net/ethernet/microsoft/mana/mana_en.c index 6224b7c21e0af..73af36db54c79 100644 --- a/drivers/net/ethernet/microsoft/mana/mana_en.c +++ b/drivers/net/ethernet/microsoft/mana/mana_en.c @@ -1,15 +1,32 @@ // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause /* Copyright (c) 2021, Microsoft Corporation. */ +#include + #include #include #include +#include #include +#include #include #include -#include "mana.h" +#include +#include + +static DEFINE_IDA(mana_adev_ida); + +static int mana_adev_idx_alloc(void) +{ + return ida_alloc(&mana_adev_ida, GFP_KERNEL); +} + +static void mana_adev_idx_free(int idx) +{ + ida_free(&mana_adev_ida, idx); +} /* Microsoft Azure Network Adapter (MANA) functions */ @@ -125,7 +142,7 @@ static int mana_map_skb(struct sk_buff *skb, struct mana_port_context *apc, return -ENOMEM; } -static int mana_start_xmit(struct sk_buff *skb, struct net_device *ndev) +netdev_tx_t mana_start_xmit(struct sk_buff *skb, struct net_device *ndev) { enum mana_tx_pkt_format pkt_fmt = MANA_SHORT_PKT_FMT; struct mana_port_context *apc = netdev_priv(ndev); @@ -134,7 +151,7 @@ static int mana_start_xmit(struct sk_buff *skb, struct net_device *ndev) bool ipv4 = false, ipv6 = false; struct mana_tx_package pkg = {}; struct netdev_queue *net_txq; - struct mana_stats *tx_stats; + struct mana_stats_tx *tx_stats; struct gdma_queue *gdma_sq; unsigned int csum_type; struct mana_txq *txq; @@ -161,6 +178,14 @@ static int mana_start_xmit(struct sk_buff *skb, struct net_device *ndev) pkg.tx_oob.s_oob.short_vp_offset = txq->vp_offset; } + if (skb_vlan_tag_present(skb)) { + pkt_fmt = MANA_LONG_PKT_FMT; + pkg.tx_oob.l_oob.inject_vlan_pri_tag = 1; + pkg.tx_oob.l_oob.pcp = skb_vlan_tag_get_prio(skb); + pkg.tx_oob.l_oob.dei = skb_vlan_tag_get_cfi(skb); + pkg.tx_oob.l_oob.vlan_id = skb_vlan_tag_get_id(skb); + } + pkg.tx_oob.s_oob.pkt_fmt = pkt_fmt; if (pkt_fmt == MANA_SHORT_PKT_FMT) @@ -173,7 +198,7 @@ static int mana_start_xmit(struct sk_buff *skb, struct net_device *ndev) pkg.wqe_req.client_data_unit = 0; pkg.wqe_req.num_sge = 1 + skb_shinfo(skb)->nr_frags; - WARN_ON_ONCE(pkg.wqe_req.num_sge > 30); + WARN_ON_ONCE(pkg.wqe_req.num_sge > MAX_TX_WQE_SGL_ENTRIES); if (pkg.wqe_req.num_sge <= ARRAY_SIZE(pkg.sgl_array)) { pkg.wqe_req.sgl = pkg.sgl_array; @@ -297,7 +322,8 @@ static void mana_get_stats64(struct net_device *ndev, { struct mana_port_context *apc = netdev_priv(ndev); unsigned int num_queues = apc->num_queues; - struct mana_stats *stats; + struct mana_stats_rx *rx_stats; + struct mana_stats_tx *tx_stats; unsigned int start; u64 packets, bytes; int q; @@ -308,26 +334,26 @@ static void mana_get_stats64(struct net_device *ndev, netdev_stats_to_stats64(st, &ndev->stats); for (q = 0; q < num_queues; q++) { - stats = &apc->rxqs[q]->stats; + rx_stats = &apc->rxqs[q]->stats; do { - start = u64_stats_fetch_begin_irq(&stats->syncp); - packets = stats->packets; - bytes = stats->bytes; - } while (u64_stats_fetch_retry_irq(&stats->syncp, start)); + start = u64_stats_fetch_begin_irq(&rx_stats->syncp); + packets = rx_stats->packets; + bytes = rx_stats->bytes; + } while (u64_stats_fetch_retry_irq(&rx_stats->syncp, start)); st->rx_packets += packets; st->rx_bytes += bytes; } for (q = 0; q < num_queues; q++) { - stats = &apc->tx_qp[q].txq.stats; + tx_stats = &apc->tx_qp[q].txq.stats; do { - start = u64_stats_fetch_begin_irq(&stats->syncp); - packets = stats->packets; - bytes = stats->bytes; - } while (u64_stats_fetch_retry_irq(&stats->syncp, start)); + start = u64_stats_fetch_begin_irq(&tx_stats->syncp); + packets = tx_stats->packets; + bytes = tx_stats->bytes; + } while (u64_stats_fetch_retry_irq(&tx_stats->syncp, start)); st->tx_packets += packets; st->tx_bytes += bytes; @@ -371,6 +397,199 @@ static u16 mana_select_queue(struct net_device *ndev, struct sk_buff *skb, return txq; } +/* Release pre-allocated RX buffers */ +static void mana_pre_dealloc_rxbufs(struct mana_port_context *mpc) +{ + struct device *dev; + int i; + + dev = mpc->ac->gdma_dev->gdma_context->dev; + + if (!mpc->rxbufs_pre) + goto out1; + + if (!mpc->das_pre) + goto out2; + + while (mpc->rxbpre_total) { + i = --mpc->rxbpre_total; + dma_unmap_single(dev, mpc->das_pre[i], mpc->rxbpre_datasize, + DMA_FROM_DEVICE); + put_page(virt_to_head_page(mpc->rxbufs_pre[i])); + } + + kfree(mpc->das_pre); + mpc->das_pre = NULL; + +out2: + kfree(mpc->rxbufs_pre); + mpc->rxbufs_pre = NULL; + +out1: + mpc->rxbpre_datasize = 0; + mpc->rxbpre_alloc_size = 0; + mpc->rxbpre_headroom = 0; +} + +/* Get a buffer from the pre-allocated RX buffers */ +static void *mana_get_rxbuf_pre(struct mana_rxq *rxq, dma_addr_t *da) +{ + struct net_device *ndev = rxq->ndev; + struct mana_port_context *mpc; + void *va; + + mpc = netdev_priv(ndev); + + if (!mpc->rxbufs_pre || !mpc->das_pre || !mpc->rxbpre_total) { + netdev_err(ndev, "No RX pre-allocated bufs\n"); + return NULL; + } + + /* Check sizes to catch unexpected coding error */ + if (mpc->rxbpre_datasize != rxq->datasize) { + netdev_err(ndev, "rxbpre_datasize mismatch: %u: %u\n", + mpc->rxbpre_datasize, rxq->datasize); + return NULL; + } + + if (mpc->rxbpre_alloc_size != rxq->alloc_size) { + netdev_err(ndev, "rxbpre_alloc_size mismatch: %u: %u\n", + mpc->rxbpre_alloc_size, rxq->alloc_size); + return NULL; + } + + if (mpc->rxbpre_headroom != rxq->headroom) { + netdev_err(ndev, "rxbpre_headroom mismatch: %u: %u\n", + mpc->rxbpre_headroom, rxq->headroom); + return NULL; + } + + mpc->rxbpre_total--; + + *da = mpc->das_pre[mpc->rxbpre_total]; + va = mpc->rxbufs_pre[mpc->rxbpre_total]; + mpc->rxbufs_pre[mpc->rxbpre_total] = NULL; + + /* Deallocate the array after all buffers are gone */ + if (!mpc->rxbpre_total) + mana_pre_dealloc_rxbufs(mpc); + + return va; +} + +/* Get RX buffer's data size, alloc size, XDP headroom based on MTU */ +static void mana_get_rxbuf_cfg(int mtu, u32 *datasize, u32 *alloc_size, + u32 *headroom) +{ + if (mtu > MANA_XDP_MTU_MAX) + *headroom = 0; /* no support for XDP */ + else + *headroom = XDP_PACKET_HEADROOM; + + *alloc_size = mtu + MANA_RXBUF_PAD + *headroom; + + *datasize = ALIGN(mtu + ETH_HLEN, MANA_RX_DATA_ALIGN); +} + +static int mana_pre_alloc_rxbufs(struct mana_port_context *mpc, int new_mtu) +{ + struct device *dev; + struct page *page; + dma_addr_t da; + int num_rxb; + void *va; + int i; + + mana_get_rxbuf_cfg(new_mtu, &mpc->rxbpre_datasize, + &mpc->rxbpre_alloc_size, &mpc->rxbpre_headroom); + + dev = mpc->ac->gdma_dev->gdma_context->dev; + + num_rxb = mpc->num_queues * RX_BUFFERS_PER_QUEUE; + + WARN(mpc->rxbufs_pre, "mana rxbufs_pre exists\n"); + mpc->rxbufs_pre = kmalloc_array(num_rxb, sizeof(void *), GFP_KERNEL); + if (!mpc->rxbufs_pre) + goto error; + + mpc->das_pre = kmalloc_array(num_rxb, sizeof(dma_addr_t), GFP_KERNEL); + if (!mpc->das_pre) + goto error; + + mpc->rxbpre_total = 0; + + for (i = 0; i < num_rxb; i++) { + if (mpc->rxbpre_alloc_size > PAGE_SIZE) { + va = netdev_alloc_frag(mpc->rxbpre_alloc_size); + if (!va) + goto error; + + page = virt_to_head_page(va); + /* Check if the frag falls back to single page */ + if (compound_order(page) < + get_order(mpc->rxbpre_alloc_size)) { + put_page(page); + goto error; + } + } else { + page = dev_alloc_page(); + if (!page) + goto error; + + va = page_to_virt(page); + } + + da = dma_map_single(dev, va + mpc->rxbpre_headroom, + mpc->rxbpre_datasize, DMA_FROM_DEVICE); + if (dma_mapping_error(dev, da)) { + put_page(virt_to_head_page(va)); + goto error; + } + + mpc->rxbufs_pre[i] = va; + mpc->das_pre[i] = da; + mpc->rxbpre_total = i + 1; + } + + return 0; + +error: + mana_pre_dealloc_rxbufs(mpc); + return -ENOMEM; +} + +static int mana_change_mtu(struct net_device *ndev, int new_mtu) +{ + struct mana_port_context *mpc = netdev_priv(ndev); + unsigned int old_mtu = ndev->mtu; + int err; + + /* Pre-allocate buffers to prevent failure in mana_attach later */ + err = mana_pre_alloc_rxbufs(mpc, new_mtu); + if (err) { + netdev_err(ndev, "Insufficient memory for new MTU\n"); + return err; + } + + err = mana_detach(ndev, false); + if (err) { + netdev_err(ndev, "mana_detach failed: %d\n", err); + goto out; + } + + ndev->mtu = new_mtu; + + err = mana_attach(ndev); + if (err) { + netdev_err(ndev, "mana_attach failed: %d\n", err); + ndev->mtu = old_mtu; + } + +out: + mana_pre_dealloc_rxbufs(mpc); + return err; +} + static const struct net_device_ops mana_devops = { .ndo_open = mana_open, .ndo_stop = mana_close, @@ -378,6 +597,9 @@ static const struct net_device_ops mana_devops = { .ndo_start_xmit = mana_start_xmit, .ndo_validate_addr = eth_validate_addr, .ndo_get_stats64 = mana_get_stats64, + .ndo_bpf = mana_bpf, + .ndo_xdp_xmit = mana_xdp_xmit, + .ndo_change_mtu = mana_change_mtu, }; static void mana_cleanup_port_context(struct mana_port_context *apc) @@ -442,6 +664,119 @@ static int mana_verify_resp_hdr(const struct gdma_resp_hdr *resp_hdr, return 0; } +static int mana_pf_register_hw_vport(struct mana_port_context *apc) +{ + struct mana_register_hw_vport_resp resp = {}; + struct mana_register_hw_vport_req req = {}; + int err; + + mana_gd_init_req_hdr(&req.hdr, MANA_REGISTER_HW_PORT, + sizeof(req), sizeof(resp)); + req.attached_gfid = 1; + req.is_pf_default_vport = 1; + req.allow_all_ether_types = 1; + + err = mana_send_request(apc->ac, &req, sizeof(req), &resp, + sizeof(resp)); + if (err) { + netdev_err(apc->ndev, "Failed to register hw vPort: %d\n", err); + return err; + } + + err = mana_verify_resp_hdr(&resp.hdr, MANA_REGISTER_HW_PORT, + sizeof(resp)); + if (err || resp.hdr.status) { + netdev_err(apc->ndev, "Failed to register hw vPort: %d, 0x%x\n", + err, resp.hdr.status); + return err ? err : -EPROTO; + } + + apc->port_handle = resp.hw_vport_handle; + return 0; +} + +static void mana_pf_deregister_hw_vport(struct mana_port_context *apc) +{ + struct mana_deregister_hw_vport_resp resp = {}; + struct mana_deregister_hw_vport_req req = {}; + int err; + + mana_gd_init_req_hdr(&req.hdr, MANA_DEREGISTER_HW_PORT, + sizeof(req), sizeof(resp)); + req.hw_vport_handle = apc->port_handle; + + err = mana_send_request(apc->ac, &req, sizeof(req), &resp, + sizeof(resp)); + if (err) { + netdev_err(apc->ndev, "Failed to unregister hw vPort: %d\n", + err); + return; + } + + err = mana_verify_resp_hdr(&resp.hdr, MANA_DEREGISTER_HW_PORT, + sizeof(resp)); + if (err || resp.hdr.status) + netdev_err(apc->ndev, + "Failed to deregister hw vPort: %d, 0x%x\n", + err, resp.hdr.status); +} + +static int mana_pf_register_filter(struct mana_port_context *apc) +{ + struct mana_register_filter_resp resp = {}; + struct mana_register_filter_req req = {}; + int err; + + mana_gd_init_req_hdr(&req.hdr, MANA_REGISTER_FILTER, + sizeof(req), sizeof(resp)); + req.vport = apc->port_handle; + memcpy(req.mac_addr, apc->mac_addr, ETH_ALEN); + + err = mana_send_request(apc->ac, &req, sizeof(req), &resp, + sizeof(resp)); + if (err) { + netdev_err(apc->ndev, "Failed to register filter: %d\n", err); + return err; + } + + err = mana_verify_resp_hdr(&resp.hdr, MANA_REGISTER_FILTER, + sizeof(resp)); + if (err || resp.hdr.status) { + netdev_err(apc->ndev, "Failed to register filter: %d, 0x%x\n", + err, resp.hdr.status); + return err ? err : -EPROTO; + } + + apc->pf_filter_handle = resp.filter_handle; + return 0; +} + +static void mana_pf_deregister_filter(struct mana_port_context *apc) +{ + struct mana_deregister_filter_resp resp = {}; + struct mana_deregister_filter_req req = {}; + int err; + + mana_gd_init_req_hdr(&req.hdr, MANA_DEREGISTER_FILTER, + sizeof(req), sizeof(resp)); + req.filter_handle = apc->pf_filter_handle; + + err = mana_send_request(apc->ac, &req, sizeof(req), &resp, + sizeof(resp)); + if (err) { + netdev_err(apc->ndev, "Failed to unregister filter: %d\n", + err); + return; + } + + err = mana_verify_resp_hdr(&resp.hdr, MANA_DEREGISTER_FILTER, + sizeof(resp)); + if (err || resp.hdr.status) + netdev_err(apc->ndev, + "Failed to deregister filter: %d, 0x%x\n", + err, resp.hdr.status); +} + static int mana_query_device_cfg(struct mana_context *ac, u32 proto_major_ver, u32 proto_minor_ver, u32 proto_micro_ver, u16 *max_num_vports) @@ -454,6 +789,9 @@ static int mana_query_device_cfg(struct mana_context *ac, u32 proto_major_ver, mana_gd_init_req_hdr(&req.hdr, MANA_QUERY_DEV_CONFIG, sizeof(req), sizeof(resp)); + + req.hdr.resp.msg_version = GDMA_MESSAGE_V2; + req.proto_major_ver = proto_major_ver; req.proto_minor_ver = proto_minor_ver; req.proto_micro_ver = proto_micro_ver; @@ -476,6 +814,11 @@ static int mana_query_device_cfg(struct mana_context *ac, u32 proto_major_ver, *max_num_vports = resp.max_num_vports; + if (resp.hdr.response.msg_version == GDMA_MESSAGE_V2) + gc->adapter_mtu = resp.adapter_mtu; + else + gc->adapter_mtu = ETH_FRAME_LEN; + return 0; } @@ -514,13 +857,48 @@ static int mana_query_vport_cfg(struct mana_port_context *apc, u32 vport_index, return 0; } -static int mana_cfg_vport(struct mana_port_context *apc, u32 protection_dom_id, - u32 doorbell_pg_id) +void mana_uncfg_vport(struct mana_port_context *apc) +{ + mutex_lock(&apc->vport_mutex); + apc->vport_use_count--; + WARN_ON(apc->vport_use_count < 0); + mutex_unlock(&apc->vport_mutex); +} +EXPORT_SYMBOL_NS(mana_uncfg_vport, NET_MANA); + +int mana_cfg_vport(struct mana_port_context *apc, u32 protection_dom_id, + u32 doorbell_pg_id) { struct mana_config_vport_resp resp = {}; struct mana_config_vport_req req = {}; int err; + /* This function is used to program the Ethernet port in the hardware + * table. It can be called from the Ethernet driver or the RDMA driver. + * + * For Ethernet usage, the hardware supports only one active user on a + * physical port. The driver checks on the port usage before programming + * the hardware when creating the RAW QP (RDMA driver) or exposing the + * device to kernel NET layer (Ethernet driver). + * + * Because the RDMA driver doesn't know in advance which QP type the + * user will create, it exposes the device with all its ports. The user + * may not be able to create RAW QP on a port if this port is already + * in used by the Ethernet driver from the kernel. + * + * This physical port limitation only applies to the RAW QP. For RC QP, + * the hardware doesn't have this limitation. The user can create RC + * QPs on a physical port up to the hardware limits independent of the + * Ethernet usage on the same port. + */ + mutex_lock(&apc->vport_mutex); + if (apc->vport_use_count > 0) { + mutex_unlock(&apc->vport_mutex); + return -EBUSY; + } + apc->vport_use_count++; + mutex_unlock(&apc->vport_mutex); + mana_gd_init_req_hdr(&req.hdr, MANA_CONFIG_VPORT_TX, sizeof(req), sizeof(resp)); req.vport = apc->port_handle; @@ -547,9 +925,16 @@ static int mana_cfg_vport(struct mana_port_context *apc, u32 protection_dom_id, apc->tx_shortform_allowed = resp.short_form_allowed; apc->tx_vp_offset = resp.tx_vport_offset; + + netdev_info(apc->ndev, "Configured vPort %llu PD %u DB %u\n", + apc->port_handle, protection_dom_id, doorbell_pg_id); out: + if (err) + mana_uncfg_vport(apc); + return err; } +EXPORT_SYMBOL_NS(mana_cfg_vport, NET_MANA); static int mana_cfg_vport_steering(struct mana_port_context *apc, enum TRI_STATE rx, @@ -610,16 +995,19 @@ static int mana_cfg_vport_steering(struct mana_port_context *apc, resp.hdr.status); err = -EPROTO; } + + netdev_info(ndev, "Configured steering vPort %llu entries %u\n", + apc->port_handle, num_entries); out: kfree(req); return err; } -static int mana_create_wq_obj(struct mana_port_context *apc, - mana_handle_t vport, - u32 wq_type, struct mana_obj_spec *wq_spec, - struct mana_obj_spec *cq_spec, - mana_handle_t *wq_obj) +int mana_create_wq_obj(struct mana_port_context *apc, + mana_handle_t vport, + u32 wq_type, struct mana_obj_spec *wq_spec, + struct mana_obj_spec *cq_spec, + mana_handle_t *wq_obj) { struct mana_create_wqobj_resp resp = {}; struct mana_create_wqobj_req req = {}; @@ -668,9 +1056,10 @@ static int mana_create_wq_obj(struct mana_port_context *apc, out: return err; } +EXPORT_SYMBOL_NS(mana_create_wq_obj, NET_MANA); -static void mana_destroy_wq_obj(struct mana_port_context *apc, u32 wq_type, - mana_handle_t wq_obj) +void mana_destroy_wq_obj(struct mana_port_context *apc, u32 wq_type, + mana_handle_t wq_obj) { struct mana_destroy_wqobj_resp resp = {}; struct mana_destroy_wqobj_req req = {}; @@ -695,6 +1084,7 @@ static void mana_destroy_wq_obj(struct mana_port_context *apc, u32 wq_type, netdev_err(ndev, "Failed to destroy WQ object: %d, 0x%x\n", err, resp.hdr.status); } +EXPORT_SYMBOL_NS(mana_destroy_wq_obj, NET_MANA); static void mana_destroy_eq(struct mana_context *ac) { @@ -749,6 +1139,61 @@ static int mana_create_eq(struct mana_context *ac) return err; } +static int mana_fence_rq(struct mana_port_context *apc, struct mana_rxq *rxq) +{ + struct mana_fence_rq_resp resp = {}; + struct mana_fence_rq_req req = {}; + int err; + + init_completion(&rxq->fence_event); + + mana_gd_init_req_hdr(&req.hdr, MANA_FENCE_RQ, + sizeof(req), sizeof(resp)); + req.wq_obj_handle = rxq->rxobj; + + err = mana_send_request(apc->ac, &req, sizeof(req), &resp, + sizeof(resp)); + if (err) { + netdev_err(apc->ndev, "Failed to fence RQ %u: %d\n", + rxq->rxq_idx, err); + return err; + } + + err = mana_verify_resp_hdr(&resp.hdr, MANA_FENCE_RQ, sizeof(resp)); + if (err || resp.hdr.status) { + netdev_err(apc->ndev, "Failed to fence RQ %u: %d, 0x%x\n", + rxq->rxq_idx, err, resp.hdr.status); + if (!err) + err = -EPROTO; + + return err; + } + + if (wait_for_completion_timeout(&rxq->fence_event, 10 * HZ) == 0) { + netdev_err(apc->ndev, "Failed to fence RQ %u: timed out\n", + rxq->rxq_idx); + return -ETIMEDOUT; + } + + return 0; +} + +static void mana_fence_rqs(struct mana_port_context *apc) +{ + unsigned int rxq_idx; + struct mana_rxq *rxq; + int err; + + for (rxq_idx = 0; rxq_idx < apc->num_queues; rxq_idx++) { + rxq = apc->rxqs[rxq_idx]; + err = mana_fence_rq(apc, rxq); + + /* In case of any error, use sleep instead. */ + if (err) + msleep(100); + } +} + static int mana_move_wq_tail(struct gdma_queue *wq, u32 num_units) { u32 used_space_old; @@ -898,24 +1343,46 @@ static void mana_post_pkt_rxq(struct mana_rxq *rxq) recv_buf_oob = &rxq->rx_oobs[curr_index]; - err = mana_gd_post_and_ring(rxq->gdma_rq, &recv_buf_oob->wqe_req, - &recv_buf_oob->wqe_inf); + err = mana_gd_post_work_request(rxq->gdma_rq, &recv_buf_oob->wqe_req, + &recv_buf_oob->wqe_inf); if (WARN_ON_ONCE(err)) return; WARN_ON_ONCE(recv_buf_oob->wqe_inf.wqe_size_in_bu != 1); } -static void mana_rx_skb(void *buf_va, struct mana_rxcomp_oob *cqe, - struct mana_rxq *rxq) +static struct sk_buff *mana_build_skb(struct mana_rxq *rxq, void *buf_va, + uint pkt_len, struct xdp_buff *xdp) { - struct mana_stats *rx_stats = &rxq->stats; + struct sk_buff *skb = napi_build_skb(buf_va, rxq->alloc_size); + + if (!skb) + return NULL; + + if (xdp->data_hard_start) { + skb_reserve(skb, xdp->data - xdp->data_hard_start); + skb_put(skb, xdp->data_end - xdp->data); + return skb; + } + + skb_reserve(skb, rxq->headroom); + skb_put(skb, pkt_len); + + return skb; +} + +static void mana_rx_skb(void *buf_va, bool from_pool, + struct mana_rxcomp_oob *cqe, struct mana_rxq *rxq) +{ + struct mana_stats_rx *rx_stats = &rxq->stats; struct net_device *ndev = rxq->ndev; uint pkt_len = cqe->ppi[0].pkt_len; u16 rxq_idx = rxq->rxq_idx; struct napi_struct *napi; + struct xdp_buff xdp = {}; struct sk_buff *skb; u32 hash_value; + u32 act; rxq->rx_cq.work_done++; napi = &rxq->rx_cq.napi; @@ -925,15 +1392,22 @@ static void mana_rx_skb(void *buf_va, struct mana_rxcomp_oob *cqe, return; } - skb = build_skb(buf_va, PAGE_SIZE); + act = mana_run_xdp(ndev, rxq, &xdp, buf_va, pkt_len); - if (!skb) { - free_page((unsigned long)buf_va); - ++ndev->stats.rx_dropped; + if (act == XDP_REDIRECT && !rxq->xdp_rc) return; - } - skb_put(skb, pkt_len); + if (act != XDP_PASS && act != XDP_TX) + goto drop_xdp; + + skb = mana_build_skb(rxq, buf_va, pkt_len, &xdp); + + if (!skb) + goto drop; + + if (from_pool) + skb_mark_for_recycle(skb); + skb->dev = napi->dev; skb->protocol = eth_type_trans(skb, ndev); @@ -954,12 +1428,121 @@ static void mana_rx_skb(void *buf_va, struct mana_rxcomp_oob *cqe, skb_set_hash(skb, hash_value, PKT_HASH_TYPE_L3); } - napi_gro_receive(napi, skb); + if (cqe->rx_vlantag_present) { + u16 vlan_tci = cqe->rx_vlan_id; + + __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vlan_tci); + } u64_stats_update_begin(&rx_stats->syncp); rx_stats->packets++; rx_stats->bytes += pkt_len; + + if (act == XDP_TX) + rx_stats->xdp_tx++; + u64_stats_update_end(&rx_stats->syncp); + + if (act == XDP_TX) { + skb_set_queue_mapping(skb, rxq_idx); + mana_xdp_tx(skb, ndev); + return; + } + + napi_gro_receive(napi, skb); + + return; + +drop_xdp: + u64_stats_update_begin(&rx_stats->syncp); + rx_stats->xdp_drop++; u64_stats_update_end(&rx_stats->syncp); + +drop: + if (from_pool) { + page_pool_recycle_direct(rxq->page_pool, + virt_to_head_page(buf_va)); + } else { + WARN_ON_ONCE(rxq->xdp_save_va); + /* Save for reuse */ + rxq->xdp_save_va = buf_va; + } + + ++ndev->stats.rx_dropped; + + return; +} + +static void *mana_get_rxfrag(struct mana_rxq *rxq, struct device *dev, + dma_addr_t *da, bool *from_pool, bool is_napi) +{ + struct page *page; + void *va; + + *from_pool = false; + + /* Reuse XDP dropped page if available */ + if (rxq->xdp_save_va) { + va = rxq->xdp_save_va; + rxq->xdp_save_va = NULL; + } else if (rxq->alloc_size > PAGE_SIZE) { + if (is_napi) + va = napi_alloc_frag(rxq->alloc_size); + else + va = netdev_alloc_frag(rxq->alloc_size); + + if (!va) + return NULL; + + page = virt_to_head_page(va); + /* Check if the frag falls back to single page */ + if (compound_order(page) < get_order(rxq->alloc_size)) { + put_page(page); + return NULL; + } + } else { + page = page_pool_dev_alloc_pages(rxq->page_pool); + if (!page) + return NULL; + + *from_pool = true; + va = page_to_virt(page); + } + + *da = dma_map_single(dev, va + rxq->headroom, rxq->datasize, + DMA_FROM_DEVICE); + if (dma_mapping_error(dev, *da)) { + if (*from_pool) + page_pool_put_full_page(rxq->page_pool, page, false); + else + put_page(virt_to_head_page(va)); + + return NULL; + } + + return va; +} + +/* Allocate frag for rx buffer, and save the old buf */ +static void mana_refill_rx_oob(struct device *dev, struct mana_rxq *rxq, + struct mana_recv_buf_oob *rxoob, void **old_buf, + bool *old_fp) +{ + bool from_pool; + dma_addr_t da; + void *va; + + va = mana_get_rxfrag(rxq, dev, &da, &from_pool, true); + if (!va) + return; + + dma_unmap_single(dev, rxoob->sgl[0].address, rxq->datasize, + DMA_FROM_DEVICE); + *old_buf = rxoob->buf_va; + *old_fp = rxoob->from_pool; + + rxoob->buf_va = va; + rxoob->sgl[0].address = da; + rxoob->from_pool = from_pool; } static void mana_process_rx_cqe(struct mana_rxq *rxq, struct mana_cq *cq, @@ -970,10 +1553,9 @@ static void mana_process_rx_cqe(struct mana_rxq *rxq, struct mana_cq *cq, struct net_device *ndev = rxq->ndev; struct mana_recv_buf_oob *rxbuf_oob; struct device *dev = gc->dev; - void *new_buf, *old_buf; - struct page *new_page; + void *old_buf = NULL; u32 curr, pktlen; - dma_addr_t da; + bool old_fp; switch (oob->cqe_hdr.cqe_type) { case CQE_RX_OKAY: @@ -990,7 +1572,7 @@ static void mana_process_rx_cqe(struct mana_rxq *rxq, struct mana_cq *cq, return; case CQE_RX_OBJECT_FENCE: - netdev_err(ndev, "RX Fencing is unsupported\n"); + complete(&rxq->fence_event); return; default: @@ -999,9 +1581,6 @@ static void mana_process_rx_cqe(struct mana_rxq *rxq, struct mana_cq *cq, return; } - if (oob->cqe_hdr.cqe_type != CQE_RX_OKAY) - return; - pktlen = oob->ppi[0].pkt_len; if (pktlen == 0) { @@ -1015,35 +1594,12 @@ static void mana_process_rx_cqe(struct mana_rxq *rxq, struct mana_cq *cq, rxbuf_oob = &rxq->rx_oobs[curr]; WARN_ON_ONCE(rxbuf_oob->wqe_inf.wqe_size_in_bu != 1); - new_page = alloc_page(GFP_ATOMIC); - - if (new_page) { - da = dma_map_page(dev, new_page, 0, rxq->datasize, - DMA_FROM_DEVICE); - - if (dma_mapping_error(dev, da)) { - __free_page(new_page); - new_page = NULL; - } - } - - new_buf = new_page ? page_to_virt(new_page) : NULL; - - if (new_buf) { - dma_unmap_page(dev, rxbuf_oob->buf_dma_addr, rxq->datasize, - DMA_FROM_DEVICE); + mana_refill_rx_oob(dev, rxq, rxbuf_oob, &old_buf, &old_fp); - old_buf = rxbuf_oob->buf_va; - - /* refresh the rxbuf_oob with the new page */ - rxbuf_oob->buf_va = new_buf; - rxbuf_oob->buf_dma_addr = da; - rxbuf_oob->sgl[0].address = rxbuf_oob->buf_dma_addr; - } else { - old_buf = NULL; /* drop the packet if no memory */ - } - - mana_rx_skb(old_buf, oob, rxq); + /* Unsuccessful refill will have old_buf == NULL. + * In this case, mana_rx_skb() will drop the packet. + */ + mana_rx_skb(old_buf, old_fp, oob, rxq); drop: mana_move_wq_tail(rxq->gdma_rq, rxbuf_oob->wqe_inf.wqe_size_in_bu); @@ -1054,11 +1610,14 @@ static void mana_process_rx_cqe(struct mana_rxq *rxq, struct mana_cq *cq, static void mana_poll_rx_cq(struct mana_cq *cq) { struct gdma_comp *comp = cq->gdma_comp_buf; + struct mana_rxq *rxq = cq->rxq; int comp_read, i; comp_read = mana_gd_poll_cq(cq->gdma_cq, comp, CQE_POLLING_BUFFER); WARN_ON_ONCE(comp_read > CQE_POLLING_BUFFER); + rxq->xdp_flush = false; + for (i = 0; i < comp_read; i++) { if (WARN_ON_ONCE(comp[i].is_sq)) return; @@ -1067,8 +1626,17 @@ static void mana_poll_rx_cq(struct mana_cq *cq) if (WARN_ON_ONCE(comp[i].wq_num != cq->rxq->gdma_id)) return; - mana_process_rx_cqe(cq->rxq, cq, &comp[i]); + mana_process_rx_cqe(rxq, cq, &comp[i]); + } + + if (comp_read > 0) { + struct gdma_context *gc = rxq->gdma_rq->gdma_dev->gdma_context; + + mana_gd_wq_ring_doorbell(gc, rxq->gdma_rq); } + + if (rxq->xdp_flush) + xdp_do_flush(); } static int mana_cq_handler(void *context, struct gdma_queue *gdma_queue) @@ -1237,10 +1805,10 @@ static int mana_create_txq(struct mana_port_context *apc, memset(&wq_spec, 0, sizeof(wq_spec)); memset(&cq_spec, 0, sizeof(cq_spec)); - wq_spec.gdma_region = txq->gdma_sq->mem_info.gdma_region; + wq_spec.gdma_region = txq->gdma_sq->mem_info.dma_region_handle; wq_spec.queue_size = txq->gdma_sq->queue_size; - cq_spec.gdma_region = cq->gdma_cq->mem_info.gdma_region; + cq_spec.gdma_region = cq->gdma_cq->mem_info.dma_region_handle; cq_spec.queue_size = cq->gdma_cq->queue_size; cq_spec.modr_ctx_id = 0; cq_spec.attached_eq = cq->gdma_cq->cq.parent->id; @@ -1255,8 +1823,10 @@ static int mana_create_txq(struct mana_port_context *apc, txq->gdma_sq->id = wq_spec.queue_index; cq->gdma_cq->id = cq_spec.queue_index; - txq->gdma_sq->mem_info.gdma_region = GDMA_INVALID_DMA_REGION; - cq->gdma_cq->mem_info.gdma_region = GDMA_INVALID_DMA_REGION; + txq->gdma_sq->mem_info.dma_region_handle = + GDMA_INVALID_DMA_REGION; + cq->gdma_cq->mem_info.dma_region_handle = + GDMA_INVALID_DMA_REGION; txq->gdma_txq_id = txq->gdma_sq->id; @@ -1289,6 +1859,7 @@ static void mana_destroy_rxq(struct mana_port_context *apc, struct mana_recv_buf_oob *rx_oob; struct device *dev = gc->dev; struct napi_struct *napi; + struct page *page; int i; if (!rxq) @@ -1300,31 +1871,71 @@ static void mana_destroy_rxq(struct mana_port_context *apc, napi_synchronize(napi); napi_disable(napi); + + xdp_rxq_info_unreg(&rxq->xdp_rxq); + netif_napi_del(napi); mana_destroy_wq_obj(apc, GDMA_RQ, rxq->rxobj); mana_deinit_cq(apc, &rxq->rx_cq); + if (rxq->xdp_save_va) + put_page(virt_to_head_page(rxq->xdp_save_va)); + for (i = 0; i < rxq->num_rx_buf; i++) { rx_oob = &rxq->rx_oobs[i]; if (!rx_oob->buf_va) continue; - dma_unmap_page(dev, rx_oob->buf_dma_addr, rxq->datasize, - DMA_FROM_DEVICE); + dma_unmap_single(dev, rx_oob->sgl[0].address, + rx_oob->sgl[0].size, DMA_FROM_DEVICE); + + page = virt_to_head_page(rx_oob->buf_va); + + if (rx_oob->from_pool) + page_pool_put_full_page(rxq->page_pool, page, false); + else + put_page(page); - free_page((unsigned long)rx_oob->buf_va); rx_oob->buf_va = NULL; } + page_pool_destroy(rxq->page_pool); + if (rxq->gdma_rq) mana_gd_destroy_queue(gc, rxq->gdma_rq); kfree(rxq); } +static int mana_fill_rx_oob(struct mana_recv_buf_oob *rx_oob, u32 mem_key, + struct mana_rxq *rxq, struct device *dev) +{ + struct mana_port_context *mpc = netdev_priv(rxq->ndev); + bool from_pool = false; + dma_addr_t da; + void *va; + + if (mpc->rxbufs_pre) + va = mana_get_rxbuf_pre(rxq, &da); + else + va = mana_get_rxfrag(rxq, dev, &da, &from_pool, false); + + if (!va) + return -ENOMEM; + + rx_oob->buf_va = va; + rx_oob->from_pool = from_pool; + + rx_oob->sgl[0].address = da; + rx_oob->sgl[0].size = rxq->datasize; + rx_oob->sgl[0].mem_key = mem_key; + + return 0; +} + #define MANA_WQE_HEADER_SIZE 16 #define MANA_WQE_SGE_SIZE 16 @@ -1334,11 +1945,10 @@ static int mana_alloc_rx_wqe(struct mana_port_context *apc, struct gdma_context *gc = apc->ac->gdma_dev->gdma_context; struct mana_recv_buf_oob *rx_oob; struct device *dev = gc->dev; - struct page *page; - dma_addr_t da; u32 buf_idx; + int ret; - WARN_ON(rxq->datasize == 0 || rxq->datasize > PAGE_SIZE); + WARN_ON(rxq->datasize == 0); *rxq_size = 0; *cq_size = 0; @@ -1347,24 +1957,12 @@ static int mana_alloc_rx_wqe(struct mana_port_context *apc, rx_oob = &rxq->rx_oobs[buf_idx]; memset(rx_oob, 0, sizeof(*rx_oob)); - page = alloc_page(GFP_KERNEL); - if (!page) - return -ENOMEM; - - da = dma_map_page(dev, page, 0, rxq->datasize, DMA_FROM_DEVICE); - - if (dma_mapping_error(dev, da)) { - __free_page(page); - return -ENOMEM; - } - - rx_oob->buf_va = page_to_virt(page); - rx_oob->buf_dma_addr = da; - rx_oob->num_sge = 1; - rx_oob->sgl[0].address = rx_oob->buf_dma_addr; - rx_oob->sgl[0].size = rxq->datasize; - rx_oob->sgl[0].mem_key = apc->ac->gdma_dev->gpa_mkey; + + ret = mana_fill_rx_oob(rx_oob, apc->ac->gdma_dev->gpa_mkey, rxq, + dev); + if (ret) + return ret; rx_oob->wqe_req.sgl = rx_oob->sgl; rx_oob->wqe_req.num_sge = rx_oob->num_sge; @@ -1399,6 +1997,25 @@ static int mana_push_wqe(struct mana_rxq *rxq) return 0; } +static int mana_create_page_pool(struct mana_rxq *rxq, struct gdma_context *gc) +{ + struct page_pool_params pprm = {}; + int ret; + + pprm.pool_size = RX_BUFFERS_PER_QUEUE; + pprm.nid = gc->numa_node; + + rxq->page_pool = page_pool_create(&pprm); + + if (IS_ERR(rxq->page_pool)) { + ret = PTR_ERR(rxq->page_pool); + rxq->page_pool = NULL; + return ret; + } + + return 0; +} + static struct mana_rxq *mana_create_rxq(struct mana_port_context *apc, u32 rxq_idx, struct mana_eq *eq, struct net_device *ndev) @@ -1423,9 +2040,18 @@ static struct mana_rxq *mana_create_rxq(struct mana_port_context *apc, rxq->ndev = ndev; rxq->num_rx_buf = RX_BUFFERS_PER_QUEUE; rxq->rxq_idx = rxq_idx; - rxq->datasize = ALIGN(MAX_FRAME_SIZE, 64); rxq->rxobj = INVALID_MANA_HANDLE; + mana_get_rxbuf_cfg(ndev->mtu, &rxq->datasize, &rxq->alloc_size, + &rxq->headroom); + + /* Create page pool for RX queue */ + err = mana_create_page_pool(rxq, gc); + if (err) { + netdev_err(ndev, "Create page pool err:%d\n", err); + goto out; + } + err = mana_alloc_rx_wqe(apc, rxq, &rq_size, &cq_size); if (err) goto out; @@ -1460,10 +2086,10 @@ static struct mana_rxq *mana_create_rxq(struct mana_port_context *apc, memset(&wq_spec, 0, sizeof(wq_spec)); memset(&cq_spec, 0, sizeof(cq_spec)); - wq_spec.gdma_region = rxq->gdma_rq->mem_info.gdma_region; + wq_spec.gdma_region = rxq->gdma_rq->mem_info.dma_region_handle; wq_spec.queue_size = rxq->gdma_rq->queue_size; - cq_spec.gdma_region = cq->gdma_cq->mem_info.gdma_region; + cq_spec.gdma_region = cq->gdma_cq->mem_info.dma_region_handle; cq_spec.queue_size = cq->gdma_cq->queue_size; cq_spec.modr_ctx_id = 0; cq_spec.attached_eq = cq->gdma_cq->cq.parent->id; @@ -1476,8 +2102,8 @@ static struct mana_rxq *mana_create_rxq(struct mana_port_context *apc, rxq->gdma_rq->id = wq_spec.queue_index; cq->gdma_cq->id = cq_spec.queue_index; - rxq->gdma_rq->mem_info.gdma_region = GDMA_INVALID_DMA_REGION; - cq->gdma_cq->mem_info.gdma_region = GDMA_INVALID_DMA_REGION; + rxq->gdma_rq->mem_info.dma_region_handle = GDMA_INVALID_DMA_REGION; + cq->gdma_cq->mem_info.dma_region_handle = GDMA_INVALID_DMA_REGION; rxq->gdma_id = rxq->gdma_rq->id; cq->gdma_id = cq->gdma_cq->id; @@ -1494,6 +2120,12 @@ static struct mana_rxq *mana_create_rxq(struct mana_port_context *apc, gc->cq_table[cq->gdma_id] = cq->gdma_cq; netif_napi_add(ndev, &cq->napi, mana_poll, 1); + + WARN_ON(xdp_rxq_info_reg(&rxq->xdp_rxq, ndev, rxq_idx, + cq->napi.napi_id)); + WARN_ON(xdp_rxq_info_reg_mem_model(&rxq->xdp_rxq, MEM_TYPE_PAGE_POOL, + rxq->page_pool)); + napi_enable(&cq->napi); mana_gd_ring_cq(cq->gdma_cq, SET_ARM_BIT); @@ -1538,6 +2170,7 @@ static int mana_add_rx_queues(struct mana_port_context *apc, static void mana_destroy_vport(struct mana_port_context *apc) { + struct gdma_dev *gd = apc->ac->gdma_dev; struct mana_rxq *rxq; u32 rxq_idx; @@ -1551,6 +2184,10 @@ static void mana_destroy_vport(struct mana_port_context *apc) } mana_destroy_txq(apc); + mana_uncfg_vport(apc); + + if (gd->gdma_context->is_pf) + mana_pf_deregister_hw_vport(apc); } static int mana_create_vport(struct mana_port_context *apc, @@ -1561,6 +2198,12 @@ static int mana_create_vport(struct mana_port_context *apc, apc->default_rxobj = INVALID_MANA_HANDLE; + if (gd->gdma_context->is_pf) { + err = mana_pf_register_hw_vport(apc); + if (err) + return err; + } + err = mana_cfg_vport(apc, gd->pdid, gd->doorbell); if (err) return err; @@ -1581,6 +2224,7 @@ int mana_config_rss(struct mana_port_context *apc, enum TRI_STATE rx, bool update_hash, bool update_tab) { u32 queue_idx; + int err; int i; if (update_tab) { @@ -1590,7 +2234,13 @@ int mana_config_rss(struct mana_port_context *apc, enum TRI_STATE rx, } } - return mana_cfg_vport_steering(apc, rx, true, update_hash, update_tab); + err = mana_cfg_vport_steering(apc, rx, true, update_hash, update_tab); + if (err) + return err; + + mana_fence_rqs(apc); + + return 0; } static int mana_init_port(struct net_device *ndev) @@ -1608,7 +2258,8 @@ static int mana_init_port(struct net_device *ndev) err = mana_query_vport_cfg(apc, port_idx, &max_txq, &max_rxq, &num_indirect_entries); if (err) { - netdev_err(ndev, "Failed to query info for vPort 0\n"); + netdev_err(ndev, "Failed to query info for vPort %d\n", + port_idx); goto reset_apc; } @@ -1632,6 +2283,7 @@ static int mana_init_port(struct net_device *ndev) int mana_alloc_queues(struct net_device *ndev) { struct mana_port_context *apc = netdev_priv(ndev); + struct gdma_dev *gd = apc->ac->gdma_dev; int err; err = mana_create_vport(apc, ndev); @@ -1658,6 +2310,14 @@ int mana_alloc_queues(struct net_device *ndev) if (err) goto destroy_vport; + if (gd->gdma_context->is_pf) { + err = mana_pf_register_filter(apc); + if (err) + goto destroy_vport; + } + + mana_chn_setxdp(apc, mana_xdp_get(apc)); + return 0; destroy_vport: @@ -1676,24 +2336,23 @@ int mana_attach(struct net_device *ndev) if (err) return err; - err = mana_alloc_queues(ndev); - if (err) { - kfree(apc->rxqs); - apc->rxqs = NULL; - return err; + if (apc->port_st_save) { + err = mana_alloc_queues(ndev); + if (err) { + mana_cleanup_port_context(apc); + return err; + } } - netif_device_attach(ndev); - apc->port_is_up = apc->port_st_save; /* Ensure port state updated before txq state */ smp_wmb(); - if (apc->port_is_up) { + if (apc->port_is_up) netif_carrier_on(ndev); - netif_tx_wake_all_queues(ndev); - } + + netif_device_attach(ndev); return 0; } @@ -1701,27 +2360,61 @@ int mana_attach(struct net_device *ndev) static int mana_dealloc_queues(struct net_device *ndev) { struct mana_port_context *apc = netdev_priv(ndev); + unsigned long timeout = jiffies + 120 * HZ; + struct gdma_dev *gd = apc->ac->gdma_dev; struct mana_txq *txq; + struct sk_buff *skb; int i, err; + u32 tsleep; if (apc->port_is_up) return -EINVAL; + mana_chn_setxdp(apc, NULL); + + if (gd->gdma_context->is_pf) + mana_pf_deregister_filter(apc); + /* No packet can be transmitted now since apc->port_is_up is false. * There is still a tiny chance that mana_poll_tx_cq() can re-enable * a txq because it may not timely see apc->port_is_up being cleared * to false, but it doesn't matter since mana_start_xmit() drops any * new packets due to apc->port_is_up being false. * - * Drain all the in-flight TX packets + * Drain all the in-flight TX packets. + * A timeout of 120 seconds for all the queues is used. + * This will break the while loop when h/w is not responding. + * This value of 120 has been decided here considering max + * number of queues. */ + for (i = 0; i < apc->num_queues; i++) { txq = &apc->tx_qp[i].txq; - - while (atomic_read(&txq->pending_sends) > 0) - usleep_range(1000, 2000); + tsleep = 1000; + while (atomic_read(&txq->pending_sends) > 0 && + time_before(jiffies, timeout)) { + usleep_range(tsleep, tsleep + 1000); + tsleep <<= 1; + } + if (atomic_read(&txq->pending_sends)) { + err = pcie_flr(to_pci_dev(gd->gdma_context->dev)); + if (err) { + netdev_err(ndev, "flr failed %d with %d pkts pending in txq %u\n", + err, atomic_read(&txq->pending_sends), + txq->gdma_txq_id); + } + break; + } } + for (i = 0; i < apc->num_queues; i++) { + txq = &apc->tx_qp[i].txq; + while ((skb = skb_dequeue(&txq->pending_skbs))) { + mana_unmap_skb(skb, apc); + dev_kfree_skb_any(skb); + } + atomic_set(&txq->pending_sends, 0); + } /* We're 100% sure the queues can no longer be woken up, because * we're sure now mana_poll_tx_cq() can't be running. */ @@ -1733,9 +2426,6 @@ static int mana_dealloc_queues(struct net_device *ndev) return err; } - /* TODO: Implement RX fencing */ - ssleep(1); - mana_destroy_vport(apc); return 0; @@ -1792,14 +2482,19 @@ static int mana_probe_port(struct mana_context *ac, int port_idx, apc->max_queues = gc->max_num_queues; apc->num_queues = gc->max_num_queues; apc->port_handle = INVALID_MANA_HANDLE; + apc->pf_filter_handle = INVALID_MANA_HANDLE; apc->port_idx = port_idx; + mutex_init(&apc->vport_mutex); + apc->vport_use_count = 0; + ndev->netdev_ops = &mana_devops; ndev->ethtool_ops = &mana_ethtool_ops; ndev->mtu = ETH_DATA_LEN; - ndev->max_mtu = ndev->mtu; - ndev->min_mtu = ndev->mtu; + ndev->max_mtu = gc->adapter_mtu - ETH_HLEN; + ndev->min_mtu = ETH_MIN_MTU; ndev->needed_headroom = MANA_HEADROOM; + ndev->dev_port = port_idx; SET_NETDEV_DEV(ndev, gc->dev); netif_carrier_off(ndev); @@ -1816,8 +2511,9 @@ static int mana_probe_port(struct mana_context *ac, int port_idx, ndev->hw_features |= NETIF_F_RXCSUM; ndev->hw_features |= NETIF_F_TSO | NETIF_F_TSO6; ndev->hw_features |= NETIF_F_RXHASH; - ndev->features = ndev->hw_features; - ndev->vlan_features = 0; + ndev->features = ndev->hw_features | NETIF_F_HW_VLAN_CTAG_TX | + NETIF_F_HW_VLAN_CTAG_RX; + ndev->vlan_features = ndev->features; err = register_netdev(ndev); if (err) { @@ -1837,11 +2533,75 @@ static int mana_probe_port(struct mana_context *ac, int port_idx, return err; } -int mana_probe(struct gdma_dev *gd) +static void adev_release(struct device *dev) +{ + struct mana_adev *madev = container_of(dev, struct mana_adev, adev.dev); + + kfree(madev); +} + +static void remove_adev(struct gdma_dev *gd) +{ + struct auxiliary_device *adev = gd->adev; + int id = adev->id; + + auxiliary_device_delete(adev); + auxiliary_device_uninit(adev); + + mana_adev_idx_free(id); + gd->adev = NULL; +} + +static int add_adev(struct gdma_dev *gd) +{ + struct auxiliary_device *adev; + struct mana_adev *madev; + int ret; + + madev = kzalloc(sizeof(*madev), GFP_KERNEL); + if (!madev) + return -ENOMEM; + + adev = &madev->adev; + ret = mana_adev_idx_alloc(); + if (ret < 0) + goto idx_fail; + adev->id = ret; + + adev->name = "rdma"; + adev->dev.parent = gd->gdma_context->dev; + adev->dev.release = adev_release; + madev->mdev = gd; + + ret = auxiliary_device_init(adev); + if (ret) + goto init_fail; + + ret = auxiliary_device_add(adev); + if (ret) + goto add_fail; + + gd->adev = adev; + return 0; + +add_fail: + auxiliary_device_uninit(adev); + +init_fail: + mana_adev_idx_free(adev->id); + +idx_fail: + kfree(madev); + + return ret; +} + +int mana_probe(struct gdma_dev *gd, bool resuming) { struct gdma_context *gc = gd->gdma_context; + struct mana_context *ac = gd->driver_data; struct device *dev = gc->dev; - struct mana_context *ac; + u16 num_ports = 0; int err; int i; @@ -1853,46 +2613,78 @@ int mana_probe(struct gdma_dev *gd) if (err) return err; - ac = kzalloc(sizeof(*ac), GFP_KERNEL); - if (!ac) - return -ENOMEM; + if (!resuming) { + ac = kzalloc(sizeof(*ac), GFP_KERNEL); + if (!ac) + return -ENOMEM; - ac->gdma_dev = gd; - ac->num_ports = 1; - gd->driver_data = ac; + ac->gdma_dev = gd; + gd->driver_data = ac; + } err = mana_create_eq(ac); if (err) goto out; err = mana_query_device_cfg(ac, MANA_MAJOR_VERSION, MANA_MINOR_VERSION, - MANA_MICRO_VERSION, &ac->num_ports); + MANA_MICRO_VERSION, &num_ports); if (err) goto out; + if (!resuming) { + ac->num_ports = num_ports; + } else { + if (ac->num_ports != num_ports) { + dev_err(dev, "The number of vPorts changed: %d->%d\n", + ac->num_ports, num_ports); + err = -EPROTO; + goto out; + } + } + + if (ac->num_ports == 0) + dev_err(dev, "Failed to detect any vPort\n"); + if (ac->num_ports > MAX_PORTS_IN_MANA_DEV) ac->num_ports = MAX_PORTS_IN_MANA_DEV; - for (i = 0; i < ac->num_ports; i++) { - err = mana_probe_port(ac, i, &ac->ports[i]); - if (err) - break; + if (!resuming) { + for (i = 0; i < ac->num_ports; i++) { + err = mana_probe_port(ac, i, &ac->ports[i]); + if (err) + break; + } + } else { + for (i = 0; i < ac->num_ports; i++) { + rtnl_lock(); + err = mana_attach(ac->ports[i]); + rtnl_unlock(); + if (err) + break; + } } + + err = add_adev(gd); out: if (err) - mana_remove(gd); + mana_remove(gd, false); return err; } -void mana_remove(struct gdma_dev *gd) +void mana_remove(struct gdma_dev *gd, bool suspending) { struct gdma_context *gc = gd->gdma_context; struct mana_context *ac = gd->driver_data; struct device *dev = gc->dev; struct net_device *ndev; + int err; int i; + /* adev currently doesn't support suspending, always remove it */ + if (gd->adev) + remove_adev(gd); + for (i = 0; i < ac->num_ports; i++) { ndev = ac->ports[i]; if (!ndev) { @@ -1906,7 +2698,16 @@ void mana_remove(struct gdma_dev *gd) */ rtnl_lock(); - mana_detach(ndev, false); + err = mana_detach(ndev, false); + if (err) + netdev_err(ndev, "Failed to detach vPort %d: %d\n", + i, err); + + if (suspending) { + /* No need to unregister the ndev. */ + rtnl_unlock(); + continue; + } unregister_netdevice(ndev); @@ -1916,9 +2717,12 @@ void mana_remove(struct gdma_dev *gd) } mana_destroy_eq(ac); - out: mana_gd_deregister_device(gd); + + if (suspending) + return; + gd->driver_data = NULL; gd->gdma_context = NULL; kfree(ac); diff --git a/drivers/net/ethernet/microsoft/mana/mana_ethtool.c b/drivers/net/ethernet/microsoft/mana/mana_ethtool.c index 7e74339f39ae3..6f98de6d74406 100644 --- a/drivers/net/ethernet/microsoft/mana/mana_ethtool.c +++ b/drivers/net/ethernet/microsoft/mana/mana_ethtool.c @@ -5,7 +5,7 @@ #include #include -#include "mana.h" +#include static const struct { char name[ETH_GSTRING_LEN]; @@ -23,7 +23,7 @@ static int mana_get_sset_count(struct net_device *ndev, int stringset) if (stringset != ETH_SS_STATS) return -EINVAL; - return ARRAY_SIZE(mana_eth_stats) + num_queues * 4; + return ARRAY_SIZE(mana_eth_stats) + num_queues * 8; } static void mana_get_strings(struct net_device *ndev, u32 stringset, u8 *data) @@ -46,6 +46,12 @@ static void mana_get_strings(struct net_device *ndev, u32 stringset, u8 *data) p += ETH_GSTRING_LEN; sprintf(p, "rx_%d_bytes", i); p += ETH_GSTRING_LEN; + sprintf(p, "rx_%d_xdp_drop", i); + p += ETH_GSTRING_LEN; + sprintf(p, "rx_%d_xdp_tx", i); + p += ETH_GSTRING_LEN; + sprintf(p, "rx_%d_xdp_redirect", i); + p += ETH_GSTRING_LEN; } for (i = 0; i < num_queues; i++) { @@ -53,6 +59,8 @@ static void mana_get_strings(struct net_device *ndev, u32 stringset, u8 *data) p += ETH_GSTRING_LEN; sprintf(p, "tx_%d_bytes", i); p += ETH_GSTRING_LEN; + sprintf(p, "tx_%d_xdp_xmit", i); + p += ETH_GSTRING_LEN; } } @@ -62,9 +70,14 @@ static void mana_get_ethtool_stats(struct net_device *ndev, struct mana_port_context *apc = netdev_priv(ndev); unsigned int num_queues = apc->num_queues; void *eth_stats = &apc->eth_stats; - struct mana_stats *stats; + struct mana_stats_rx *rx_stats; + struct mana_stats_tx *tx_stats; unsigned int start; u64 packets, bytes; + u64 xdp_redirect; + u64 xdp_xmit; + u64 xdp_drop; + u64 xdp_tx; int q, i = 0; if (!apc->port_is_up) @@ -74,29 +87,37 @@ static void mana_get_ethtool_stats(struct net_device *ndev, data[i++] = *(u64 *)(eth_stats + mana_eth_stats[q].offset); for (q = 0; q < num_queues; q++) { - stats = &apc->rxqs[q]->stats; + rx_stats = &apc->rxqs[q]->stats; do { - start = u64_stats_fetch_begin_irq(&stats->syncp); - packets = stats->packets; - bytes = stats->bytes; - } while (u64_stats_fetch_retry_irq(&stats->syncp, start)); + start = u64_stats_fetch_begin_irq(&rx_stats->syncp); + packets = rx_stats->packets; + bytes = rx_stats->bytes; + xdp_drop = rx_stats->xdp_drop; + xdp_tx = rx_stats->xdp_tx; + xdp_redirect = rx_stats->xdp_redirect; + } while (u64_stats_fetch_retry_irq(&rx_stats->syncp, start)); data[i++] = packets; data[i++] = bytes; + data[i++] = xdp_drop; + data[i++] = xdp_tx; + data[i++] = xdp_redirect; } for (q = 0; q < num_queues; q++) { - stats = &apc->tx_qp[q].txq.stats; + tx_stats = &apc->tx_qp[q].txq.stats; do { - start = u64_stats_fetch_begin_irq(&stats->syncp); - packets = stats->packets; - bytes = stats->bytes; - } while (u64_stats_fetch_retry_irq(&stats->syncp, start)); + start = u64_stats_fetch_begin_irq(&tx_stats->syncp); + packets = tx_stats->packets; + bytes = tx_stats->bytes; + xdp_xmit = tx_stats->xdp_xmit; + } while (u64_stats_fetch_retry_irq(&tx_stats->syncp, start)); data[i++] = packets; data[i++] = bytes; + data[i++] = xdp_xmit; } } @@ -211,9 +232,6 @@ static int mana_set_channels(struct net_device *ndev, unsigned int old_count = apc->num_queues; int err, err2; - if (!apc->port_is_up) - return -EOPNOTSUPP; - err = mana_detach(ndev, false); if (err) { netdev_err(ndev, "mana_detach failed: %d\n", err); diff --git a/drivers/net/ethernet/microsoft/mana/shm_channel.c b/drivers/net/ethernet/microsoft/mana/shm_channel.c index da255da62176a..5553af9c8085a 100644 --- a/drivers/net/ethernet/microsoft/mana/shm_channel.c +++ b/drivers/net/ethernet/microsoft/mana/shm_channel.c @@ -6,7 +6,7 @@ #include #include -#include "shm_channel.h" +#include #define PAGE_FRAME_L48_WIDTH_BYTES 6 #define PAGE_FRAME_L48_WIDTH_BITS (PAGE_FRAME_L48_WIDTH_BYTES * 8) diff --git a/drivers/net/ethernet/netronome/nfp/flower/cmsg.c b/drivers/net/ethernet/netronome/nfp/flower/cmsg.c index f21cf1f40f987..153533cd8f086 100644 --- a/drivers/net/ethernet/netronome/nfp/flower/cmsg.c +++ b/drivers/net/ethernet/netronome/nfp/flower/cmsg.c @@ -210,6 +210,7 @@ nfp_flower_cmsg_merge_hint_rx(struct nfp_app *app, struct sk_buff *skb) unsigned int msg_len = nfp_flower_cmsg_get_data_len(skb); struct nfp_flower_cmsg_merge_hint *msg; struct nfp_fl_payload *sub_flows[2]; + struct nfp_flower_priv *priv; int err, i, flow_cnt; msg = nfp_flower_cmsg_get_data(skb); @@ -228,14 +229,15 @@ nfp_flower_cmsg_merge_hint_rx(struct nfp_app *app, struct sk_buff *skb) return; } - rtnl_lock(); + priv = app->priv; + mutex_lock(&priv->nfp_fl_lock); for (i = 0; i < flow_cnt; i++) { u32 ctx = be32_to_cpu(msg->flow[i].host_ctx); sub_flows[i] = nfp_flower_get_fl_payload_from_ctx(app, ctx); if (!sub_flows[i]) { nfp_flower_cmsg_warn(app, "Invalid flow in merge hint\n"); - goto err_rtnl_unlock; + goto err_mutex_unlock; } } @@ -244,8 +246,8 @@ nfp_flower_cmsg_merge_hint_rx(struct nfp_app *app, struct sk_buff *skb) if (err == -ENOMEM) nfp_flower_cmsg_warn(app, "Flow merge memory fail.\n"); -err_rtnl_unlock: - rtnl_unlock(); +err_mutex_unlock: + mutex_unlock(&priv->nfp_fl_lock); } static void diff --git a/drivers/net/ethernet/netronome/nfp/flower/conntrack.c b/drivers/net/ethernet/netronome/nfp/flower/conntrack.c index 7e9fcc16286e2..fc17e9b11d19d 100644 --- a/drivers/net/ethernet/netronome/nfp/flower/conntrack.c +++ b/drivers/net/ethernet/netronome/nfp/flower/conntrack.c @@ -1665,8 +1665,6 @@ nfp_fl_ct_offload_nft_flow(struct nfp_fl_ct_zone_entry *zt, struct flow_cls_offl struct nfp_fl_ct_flow_entry *ct_entry; struct netlink_ext_ack *extack = NULL; - ASSERT_RTNL(); - extack = flow->common.extack; switch (flow->command) { case FLOW_CLS_REPLACE: @@ -1709,9 +1707,13 @@ int nfp_fl_ct_handle_nft_flow(enum tc_setup_type type, void *type_data, void *cb switch (type) { case TC_SETUP_CLSFLOWER: - rtnl_lock(); + while (!mutex_trylock(&zt->priv->nfp_fl_lock)) { + if (!zt->nft) /* avoid deadlock */ + return err; + msleep(20); + } err = nfp_fl_ct_offload_nft_flow(zt, flow); - rtnl_unlock(); + mutex_unlock(&zt->priv->nfp_fl_lock); break; default: return -EOPNOTSUPP; @@ -1739,6 +1741,7 @@ int nfp_fl_ct_del_flow(struct nfp_fl_ct_map_entry *ct_map_ent) struct nfp_fl_ct_flow_entry *ct_entry; struct nfp_fl_ct_zone_entry *zt; struct rhashtable *m_table; + struct nf_flowtable *nft; if (!ct_map_ent) return -ENOENT; @@ -1755,8 +1758,12 @@ int nfp_fl_ct_del_flow(struct nfp_fl_ct_map_entry *ct_map_ent) nfp_fl_ct_clean_flow_entry(ct_entry); kfree(ct_map_ent); - if (!zt->pre_ct_count) { - zt->nft = NULL; + if (!zt->pre_ct_count && zt->nft) { + nft = zt->nft; + zt->nft = NULL; /* avoid deadlock */ + nf_flow_table_offload_del_cb(nft, + nfp_fl_ct_handle_nft_flow, + zt); nfp_fl_ct_clean_nft_entries(zt); } break; diff --git a/drivers/net/ethernet/netronome/nfp/flower/main.h b/drivers/net/ethernet/netronome/nfp/flower/main.h index 917c450a7aadd..f5222e3c8ce56 100644 --- a/drivers/net/ethernet/netronome/nfp/flower/main.h +++ b/drivers/net/ethernet/netronome/nfp/flower/main.h @@ -196,6 +196,7 @@ struct nfp_fl_internal_ports { * @ct_zone_table: Hash table used to store the different zones * @ct_zone_wc: Special zone entry for wildcarded zone matches * @ct_map_table: Hash table used to referennce ct flows + * @nfp_fl_lock: Lock to protect the flow offload operation */ struct nfp_flower_priv { struct nfp_app *app; @@ -233,6 +234,7 @@ struct nfp_flower_priv { struct rhashtable ct_zone_table; struct nfp_fl_ct_zone_entry *ct_zone_wc; struct rhashtable ct_map_table; + struct mutex nfp_fl_lock; /* Protect the flow operation */ }; /** diff --git a/drivers/net/ethernet/netronome/nfp/flower/metadata.c b/drivers/net/ethernet/netronome/nfp/flower/metadata.c index 2af9faee96c5c..a515bd89defea 100644 --- a/drivers/net/ethernet/netronome/nfp/flower/metadata.c +++ b/drivers/net/ethernet/netronome/nfp/flower/metadata.c @@ -530,6 +530,8 @@ int nfp_flower_metadata_init(struct nfp_app *app, u64 host_ctx_count, if (err) goto err_free_stats_ctx_table; + mutex_init(&priv->nfp_fl_lock); + err = rhashtable_init(&priv->ct_zone_table, &nfp_zone_table_params); if (err) goto err_free_merge_table; diff --git a/drivers/net/ethernet/netronome/nfp/flower/offload.c b/drivers/net/ethernet/netronome/nfp/flower/offload.c index 64c0ef57ad426..d165098c457e7 100644 --- a/drivers/net/ethernet/netronome/nfp/flower/offload.c +++ b/drivers/net/ethernet/netronome/nfp/flower/offload.c @@ -1009,8 +1009,6 @@ int nfp_flower_merge_offloaded_flows(struct nfp_app *app, u64 parent_ctx = 0; int err; - ASSERT_RTNL(); - if (sub_flow1 == sub_flow2 || nfp_flower_is_merge_flow(sub_flow1) || nfp_flower_is_merge_flow(sub_flow2)) @@ -1662,19 +1660,30 @@ static int nfp_flower_repr_offload(struct nfp_app *app, struct net_device *netdev, struct flow_cls_offload *flower) { + struct nfp_flower_priv *priv = app->priv; + int ret; + if (!eth_proto_is_802_3(flower->common.protocol)) return -EOPNOTSUPP; + mutex_lock(&priv->nfp_fl_lock); switch (flower->command) { case FLOW_CLS_REPLACE: - return nfp_flower_add_offload(app, netdev, flower); + ret = nfp_flower_add_offload(app, netdev, flower); + break; case FLOW_CLS_DESTROY: - return nfp_flower_del_offload(app, netdev, flower); + ret = nfp_flower_del_offload(app, netdev, flower); + break; case FLOW_CLS_STATS: - return nfp_flower_get_stats(app, netdev, flower); + ret = nfp_flower_get_stats(app, netdev, flower); + break; default: - return -EOPNOTSUPP; + ret = -EOPNOTSUPP; + break; } + mutex_unlock(&priv->nfp_fl_lock); + + return ret; } static int nfp_flower_setup_tc_block_cb(enum tc_setup_type type, @@ -1713,6 +1722,7 @@ static int nfp_flower_setup_tc_block(struct net_device *netdev, repr_priv = repr->app_priv; repr_priv->block_shared = f->block_shared; f->driver_block_list = &nfp_block_cb_list; + f->unlocked_driver_cb = true; switch (f->command) { case FLOW_BLOCK_BIND: @@ -1811,6 +1821,8 @@ nfp_flower_setup_indr_tc_block(struct net_device *netdev, struct Qdisc *sch, str nfp_flower_internal_port_can_offload(app, netdev))) return -EOPNOTSUPP; + f->unlocked_driver_cb = true; + switch (f->command) { case FLOW_BLOCK_BIND: cb_priv = nfp_flower_indr_block_cb_priv_lookup(app, netdev); diff --git a/drivers/net/ethernet/netronome/nfp/flower/qos_conf.c b/drivers/net/ethernet/netronome/nfp/flower/qos_conf.c index 784c6dbf8bc47..577a7a534b472 100644 --- a/drivers/net/ethernet/netronome/nfp/flower/qos_conf.c +++ b/drivers/net/ethernet/netronome/nfp/flower/qos_conf.c @@ -421,23 +421,29 @@ int nfp_flower_setup_qos_offload(struct nfp_app *app, struct net_device *netdev, { struct netlink_ext_ack *extack = flow->common.extack; struct nfp_flower_priv *fl_priv = app->priv; + int ret; if (!(fl_priv->flower_ext_feats & NFP_FL_FEATS_VF_RLIM)) { NL_SET_ERR_MSG_MOD(extack, "unsupported offload: loaded firmware does not support qos rate limit offload"); return -EOPNOTSUPP; } + mutex_lock(&fl_priv->nfp_fl_lock); switch (flow->command) { case TC_CLSMATCHALL_REPLACE: - return nfp_flower_install_rate_limiter(app, netdev, flow, - extack); + ret = nfp_flower_install_rate_limiter(app, netdev, flow, extack); + break; case TC_CLSMATCHALL_DESTROY: - return nfp_flower_remove_rate_limiter(app, netdev, flow, - extack); + ret = nfp_flower_remove_rate_limiter(app, netdev, flow, extack); + break; case TC_CLSMATCHALL_STATS: - return nfp_flower_stats_rate_limiter(app, netdev, flow, - extack); + ret = nfp_flower_stats_rate_limiter(app, netdev, flow, extack); + break; default: - return -EOPNOTSUPP; + ret = -EOPNOTSUPP; + break; } + mutex_unlock(&fl_priv->nfp_fl_lock); + + return ret; } diff --git a/drivers/net/ethernet/netronome/nfp/nfp_net_common.c b/drivers/net/ethernet/netronome/nfp/nfp_net_common.c index 69ac205bbdbd0..8a24c67d33341 100644 --- a/drivers/net/ethernet/netronome/nfp/nfp_net_common.c +++ b/drivers/net/ethernet/netronome/nfp/nfp_net_common.c @@ -1944,7 +1944,7 @@ static int nfp_net_rx(struct nfp_net_rx_ring *rx_ring, int budget) xdp_prog, act); continue; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(dp->netdev, xdp_prog, act); fallthrough; case XDP_ABORTED: trace_xdp_exception(dp->netdev, xdp_prog, act); diff --git a/drivers/net/ethernet/nvidia/forcedeth.c b/drivers/net/ethernet/nvidia/forcedeth.c index d350c1ef9e0be..e7be0710220e5 100644 --- a/drivers/net/ethernet/nvidia/forcedeth.c +++ b/drivers/net/ethernet/nvidia/forcedeth.c @@ -56,8 +56,8 @@ #include -#define TX_WORK_PER_LOOP 64 -#define RX_WORK_PER_LOOP 64 +#define TX_WORK_PER_LOOP NAPI_POLL_WEIGHT +#define RX_WORK_PER_LOOP NAPI_POLL_WEIGHT /* * Hardware access: @@ -5869,7 +5869,7 @@ static int nv_probe(struct pci_dev *pci_dev, const struct pci_device_id *id) else dev->netdev_ops = &nv_netdev_ops_optimized; - netif_napi_add(dev, &np->napi, nv_napi_poll, RX_WORK_PER_LOOP); + netif_napi_add(dev, &np->napi, nv_napi_poll, NAPI_POLL_WEIGHT); dev->ethtool_ops = &ops; dev->watchdog_timeo = NV_WATCHDOG_TIMEO; diff --git a/drivers/net/ethernet/pensando/ionic/ionic_dev.h b/drivers/net/ethernet/pensando/ionic/ionic_dev.h index 922bb6c9e01d5..38f38fe8f21d9 100644 --- a/drivers/net/ethernet/pensando/ionic/ionic_dev.h +++ b/drivers/net/ethernet/pensando/ionic/ionic_dev.h @@ -174,6 +174,7 @@ typedef void (*ionic_desc_cb)(struct ionic_queue *q, struct ionic_desc_info *desc_info, struct ionic_cq_info *cq_info, void *cb_arg); +#define IONIC_MAX_BUF_LEN ((u16)-1) #define IONIC_PAGE_SIZE PAGE_SIZE #define IONIC_PAGE_SPLIT_SZ (PAGE_SIZE / 2) #define IONIC_PAGE_GFP_MASK (GFP_ATOMIC | __GFP_NOWARN |\ @@ -207,7 +208,7 @@ struct ionic_desc_info { void *cb_arg; }; -#define IONIC_QUEUE_NAME_MAX_SZ 32 +#define IONIC_QUEUE_NAME_MAX_SZ 16 struct ionic_queue { struct device *dev; diff --git a/drivers/net/ethernet/pensando/ionic/ionic_lif.c b/drivers/net/ethernet/pensando/ionic/ionic_lif.c index 2cc126d378353..63181866809fd 100644 --- a/drivers/net/ethernet/pensando/ionic/ionic_lif.c +++ b/drivers/net/ethernet/pensando/ionic/ionic_lif.c @@ -44,24 +44,24 @@ static void ionic_lif_queue_identify(struct ionic_lif *lif); static void ionic_dim_work(struct work_struct *work) { struct dim *dim = container_of(work, struct dim, work); + struct ionic_intr_info *intr; struct dim_cq_moder cur_moder; struct ionic_qcq *qcq; + struct ionic_lif *lif; u32 new_coal; cur_moder = net_dim_get_rx_moderation(dim->mode, dim->profile_ix); qcq = container_of(dim, struct ionic_qcq, dim); - new_coal = ionic_coal_usec_to_hw(qcq->q.lif->ionic, cur_moder.usec); + lif = qcq->q.lif; + new_coal = ionic_coal_usec_to_hw(lif->ionic, cur_moder.usec); new_coal = new_coal ? new_coal : 1; - if (qcq->intr.dim_coal_hw != new_coal) { - unsigned int qi = qcq->cq.bound_q->index; - struct ionic_lif *lif = qcq->q.lif; - - qcq->intr.dim_coal_hw = new_coal; + intr = &qcq->intr; + if (intr->dim_coal_hw != new_coal) { + intr->dim_coal_hw = new_coal; ionic_intr_coal_init(lif->ionic->idev.intr_ctrl, - lif->rxqcqs[qi]->intr.index, - qcq->intr.dim_coal_hw); + intr->index, intr->dim_coal_hw); } dim->state = DIM_START_MEASURE; diff --git a/drivers/net/ethernet/pensando/ionic/ionic_txrx.c b/drivers/net/ethernet/pensando/ionic/ionic_txrx.c index 376f97b4008bb..6604f5862f892 100644 --- a/drivers/net/ethernet/pensando/ionic/ionic_txrx.c +++ b/drivers/net/ethernet/pensando/ionic/ionic_txrx.c @@ -151,7 +151,8 @@ static struct sk_buff *ionic_rx_frags(struct ionic_queue *q, return NULL; } - frag_len = min_t(u16, len, IONIC_PAGE_SIZE - buf_info->page_offset); + frag_len = min_t(u16, len, min_t(u32, IONIC_MAX_BUF_LEN, + IONIC_PAGE_SIZE - buf_info->page_offset)); len -= frag_len; dma_sync_single_for_cpu(dev, @@ -388,7 +389,8 @@ void ionic_rx_fill(struct ionic_queue *q) /* fill main descriptor - buf[0] */ desc->addr = cpu_to_le64(buf_info->dma_addr + buf_info->page_offset); - frag_len = min_t(u16, len, IONIC_PAGE_SIZE - buf_info->page_offset); + frag_len = min_t(u16, len, min_t(u32, IONIC_MAX_BUF_LEN, + IONIC_PAGE_SIZE - buf_info->page_offset)); desc->len = cpu_to_le16(frag_len); remain_len -= frag_len; buf_info++; @@ -407,7 +409,9 @@ void ionic_rx_fill(struct ionic_queue *q) } sg_elem->addr = cpu_to_le64(buf_info->dma_addr + buf_info->page_offset); - frag_len = min_t(u16, remain_len, IONIC_PAGE_SIZE - buf_info->page_offset); + frag_len = min_t(u16, remain_len, min_t(u32, IONIC_MAX_BUF_LEN, + IONIC_PAGE_SIZE - + buf_info->page_offset)); sg_elem->len = cpu_to_le16(frag_len); remain_len -= frag_len; buf_info++; diff --git a/drivers/net/ethernet/qlogic/qed/qed_ll2.c b/drivers/net/ethernet/qlogic/qed/qed_ll2.c index c46a7f756ed5f..08710ba9db744 100644 --- a/drivers/net/ethernet/qlogic/qed/qed_ll2.c +++ b/drivers/net/ethernet/qlogic/qed/qed_ll2.c @@ -87,7 +87,10 @@ static void qed_ll2b_complete_tx_packet(void *cxt, static int qed_ll2_alloc_buffer(struct qed_dev *cdev, u8 **data, dma_addr_t *phys_addr) { - *data = kmalloc(cdev->ll2->rx_size, GFP_ATOMIC); + size_t size = cdev->ll2->rx_size + NET_SKB_PAD + + SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); + + *data = kmalloc(size, GFP_ATOMIC); if (!(*data)) { DP_INFO(cdev, "Failed to allocate LL2 buffer data\n"); return -ENOMEM; @@ -2548,7 +2551,7 @@ static int qed_ll2_start(struct qed_dev *cdev, struct qed_ll2_params *params) INIT_LIST_HEAD(&cdev->ll2->list); spin_lock_init(&cdev->ll2->lock); - cdev->ll2->rx_size = NET_SKB_PAD + ETH_HLEN + + cdev->ll2->rx_size = PRM_DMA_PAD_BYTES_NUM + ETH_HLEN + L1_CACHE_BYTES + params->mtu; /* Allocate memory for LL2. diff --git a/drivers/net/ethernet/qlogic/qed/qed_ll2.h b/drivers/net/ethernet/qlogic/qed/qed_ll2.h index f80f7739ff8d6..3570513d58ade 100644 --- a/drivers/net/ethernet/qlogic/qed/qed_ll2.h +++ b/drivers/net/ethernet/qlogic/qed/qed_ll2.h @@ -111,9 +111,9 @@ struct qed_ll2_info { enum core_tx_dest tx_dest; u8 tx_stats_en; bool main_func_queue; + struct qed_ll2_cbs cbs; struct qed_ll2_rx_queue rx_queue; struct qed_ll2_tx_queue tx_queue; - struct qed_ll2_cbs cbs; }; extern const struct qed_ll2_ops qed_ll2_ops_pass; diff --git a/drivers/net/ethernet/qlogic/qede/qede_fp.c b/drivers/net/ethernet/qlogic/qede/qede_fp.c index d67d4e74b326d..f6a1e765e3d8b 100644 --- a/drivers/net/ethernet/qlogic/qede/qede_fp.c +++ b/drivers/net/ethernet/qlogic/qede/qede_fp.c @@ -1155,7 +1155,7 @@ static bool qede_rx_xdp(struct qede_dev *edev, qede_rx_bd_ring_consume(rxq); break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(edev->ndev, prog, act); fallthrough; case XDP_ABORTED: trace_xdp_exception(edev->ndev, prog, act); diff --git a/drivers/net/ethernet/realtek/r8169_main.c b/drivers/net/ethernet/realtek/r8169_main.c index 7cf91ae1d5b40..5a82143147ca4 100644 --- a/drivers/net/ethernet/realtek/r8169_main.c +++ b/drivers/net/ethernet/realtek/r8169_main.c @@ -205,6 +205,7 @@ enum rtl_registers { /* No threshold before first PCI xfer */ #define RX_FIFO_THRESH (7 << RXCFG_FIFO_SHIFT) #define RX_EARLY_OFF (1 << 11) +#define RX_PAUSE_SLOT_ON (1 << 11) /* 8125b and later */ #define RXCFG_DMA_SHIFT 8 /* Unlimited maximum PCI burst. */ #define RX_DMA_BURST (7 << RXCFG_DMA_SHIFT) @@ -588,6 +589,8 @@ struct rtl8169_tc_offsets { enum rtl_flag { RTL_FLAG_TASK_ENABLED = 0, RTL_FLAG_TASK_RESET_PENDING, + RTL_FLAG_TASK_RESET_NO_QUEUE_WAKE, + RTL_FLAG_TASK_TX_TIMEOUT, RTL_FLAG_MAX }; @@ -2272,9 +2275,13 @@ static void rtl_init_rxcfg(struct rtl8169_private *tp) case RTL_GIGA_MAC_VER_40 ... RTL_GIGA_MAC_VER_53: RTL_W32(tp, RxConfig, RX128_INT_EN | RX_MULTI_EN | RX_DMA_BURST | RX_EARLY_OFF); break; - case RTL_GIGA_MAC_VER_60 ... RTL_GIGA_MAC_VER_63: + case RTL_GIGA_MAC_VER_61: RTL_W32(tp, RxConfig, RX_FETCH_DFLT_8125 | RX_DMA_BURST); break; + case RTL_GIGA_MAC_VER_63: + RTL_W32(tp, RxConfig, RX_FETCH_DFLT_8125 | RX_DMA_BURST | + RX_PAUSE_SLOT_ON); + break; default: RTL_W32(tp, RxConfig, RX128_INT_EN | RX_DMA_BURST); break; @@ -2555,6 +2562,8 @@ static void rtl_set_rx_mode(struct net_device *dev) if (dev->flags & IFF_PROMISC) { rx_mode |= AcceptAllPhys; + } else if (!(dev->flags & IFF_MULTICAST)) { + rx_mode &= ~AcceptMulticast; } else if (netdev_mc_count(dev) > MC_FILTER_LIMIT || dev->flags & IFF_ALLMULTI || tp->mac_version == RTL_GIGA_MAC_VER_35) { @@ -4041,7 +4050,7 @@ static void rtl8169_tx_timeout(struct net_device *dev, unsigned int txqueue) { struct rtl8169_private *tp = netdev_priv(dev); - rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_PENDING); + rtl_schedule_task(tp, RTL_FLAG_TASK_TX_TIMEOUT); } static int rtl8169_tx_map(struct rtl8169_private *tp, const u32 *opts, u32 len, @@ -4458,7 +4467,7 @@ static void rtl_tx(struct net_device *dev, struct rtl8169_private *tp, unsigned int entry = dirty_tx % NUM_TX_DESC; u32 status; - status = le32_to_cpu(tp->TxDescArray[entry].opts1); + status = le32_to_cpu(READ_ONCE(tp->TxDescArray[entry].opts1)); if (status & DescOwn) break; @@ -4495,7 +4504,7 @@ static void rtl_tx(struct net_device *dev, struct rtl8169_private *tp, * If skb is NULL then we come here again once a tx irq is * triggered after the last fragment is marked transmitted. */ - if (tp->cur_tx != dirty_tx && skb) + if (READ_ONCE(tp->cur_tx) != dirty_tx && skb) rtl8169_doorbell(tp); } } @@ -4528,7 +4537,7 @@ static int rtl_rx(struct net_device *dev, struct rtl8169_private *tp, int budget dma_addr_t addr; u32 status; - status = le32_to_cpu(desc->opts1); + status = le32_to_cpu(READ_ONCE(desc->opts1)); if (status & DescOwn) break; @@ -4639,6 +4648,7 @@ static void rtl_task(struct work_struct *work) { struct rtl8169_private *tp = container_of(work, struct rtl8169_private, wk.work); + int ret; rtnl_lock(); @@ -4646,9 +4656,21 @@ static void rtl_task(struct work_struct *work) !test_bit(RTL_FLAG_TASK_ENABLED, tp->wk.flags)) goto out_unlock; + if (test_and_clear_bit(RTL_FLAG_TASK_TX_TIMEOUT, tp->wk.flags)) { + /* ASPM compatibility issues are a typical reason for tx timeouts */ + ret = pci_disable_link_state(tp->pci_dev, PCIE_LINK_STATE_L1 | + PCIE_LINK_STATE_L0S); + if (!ret) + netdev_warn_once(tp->dev, "ASPM disabled on Tx timeout\n"); + goto reset; + } + if (test_and_clear_bit(RTL_FLAG_TASK_RESET_PENDING, tp->wk.flags)) { +reset: rtl_reset_work(tp); netif_wake_queue(tp->dev); + } else if (test_and_clear_bit(RTL_FLAG_TASK_RESET_NO_QUEUE_WAKE, tp->wk.flags)) { + rtl_reset_work(tp); } out_unlock: rtnl_unlock(); @@ -4673,12 +4695,17 @@ static int rtl8169_poll(struct napi_struct *napi, int budget) static void r8169_phylink_handler(struct net_device *ndev) { struct rtl8169_private *tp = netdev_priv(ndev); + struct device *d = tp_to_dev(tp); if (netif_carrier_ok(ndev)) { rtl_link_chg_patch(tp); - pm_request_resume(&tp->pci_dev->dev); + pm_request_resume(d); + netif_wake_queue(tp->dev); } else { - pm_runtime_idle(&tp->pci_dev->dev); + /* In few cases rx is broken after link-down otherwise */ + if (rtl_is_8125(tp)) + rtl_schedule_task(tp, RTL_FLAG_TASK_RESET_NO_QUEUE_WAKE); + pm_runtime_idle(d); } if (net_ratelimit()) @@ -4753,10 +4780,16 @@ static void rtl8169_down(struct rtl8169_private *tp) rtl8169_cleanup(tp, true); rtl_prepare_power_down(tp); + + if (tp->dash_type != RTL_DASH_NONE) + rtl8168_driver_stop(tp); } static void rtl8169_up(struct rtl8169_private *tp) { + if (tp->dash_type != RTL_DASH_NONE) + rtl8168_driver_start(tp); + pci_set_master(tp->pci_dev); phy_init_hw(tp->phydev); phy_resume(tp->phydev); @@ -4783,7 +4816,7 @@ static int rtl8169_close(struct net_device *dev) rtl8169_down(tp); rtl8169_rx_clear(tp); - cancel_work_sync(&tp->wk.work); + cancel_work(&tp->wk.work); free_irq(pci_irq_vector(pdev, 0), tp); @@ -5039,6 +5072,8 @@ static void rtl_remove_one(struct pci_dev *pdev) if (pci_dev_run_wake(pdev)) pm_runtime_get_noresume(&pdev->dev); + cancel_work_sync(&tp->wk.work); + unregister_netdev(tp->dev); if (tp->dash_type != RTL_DASH_NONE) diff --git a/drivers/net/ethernet/renesas/ravb_main.c b/drivers/net/ethernet/renesas/ravb_main.c index 4ee72d33e9cb7..1fa002c42c889 100644 --- a/drivers/net/ethernet/renesas/ravb_main.c +++ b/drivers/net/ethernet/renesas/ravb_main.c @@ -1448,19 +1448,20 @@ static int ravb_open(struct net_device *ndev) if (info->gptp) ravb_ptp_init(ndev, priv->pdev); - netif_tx_start_all_queues(ndev); - /* PHY control start */ error = ravb_phy_start(ndev); if (error) goto out_ptp_stop; + netif_tx_start_all_queues(ndev); + return 0; out_ptp_stop: /* Stop PTP Clock driver */ if (info->gptp) ravb_ptp_stop(ndev); + ravb_stop_dma(ndev); out_free_irq_nc_tx: if (!info->multi_irqs) goto out_free_irq; @@ -1504,6 +1505,12 @@ static void ravb_tx_timeout_work(struct work_struct *work) struct net_device *ndev = priv->ndev; int error; + if (!rtnl_trylock()) { + usleep_range(1000, 2000); + schedule_work(&priv->work); + return; + } + netif_tx_stop_all_queues(ndev); /* Stop PTP Clock driver */ @@ -1536,7 +1543,7 @@ static void ravb_tx_timeout_work(struct work_struct *work) */ netdev_err(ndev, "%s: ravb_dmac_init() failed, error %d\n", __func__, error); - return; + goto out_unlock; } ravb_emac_init(ndev); @@ -1546,6 +1553,9 @@ static void ravb_tx_timeout_work(struct work_struct *work) ravb_ptp_init(ndev, priv->pdev); netif_tx_start_all_queues(ndev); + +out_unlock: + rtnl_unlock(); } /* Packet transmit function for Ethernet AVB */ @@ -1774,6 +1784,8 @@ static int ravb_close(struct net_device *ndev) of_phy_deregister_fixed_link(np); } + cancel_work_sync(&priv->work); + if (info->multi_irqs) { free_irq(priv->tx_irqs[RAVB_NC], ndev); free_irq(priv->rx_irqs[RAVB_NC], ndev); @@ -2177,9 +2189,14 @@ static int ravb_probe(struct platform_device *pdev) ndev->features = info->net_features; ndev->hw_features = info->net_hw_features; - reset_control_deassert(rstc); + error = reset_control_deassert(rstc); + if (error) + goto out_free_netdev; + pm_runtime_enable(&pdev->dev); - pm_runtime_get_sync(&pdev->dev); + error = pm_runtime_resume_and_get(&pdev->dev); + if (error < 0) + goto out_rpm_disable; if (info->multi_irqs) irq = platform_get_irq_byname(pdev, "ch22"); @@ -2362,11 +2379,12 @@ static int ravb_probe(struct platform_device *pdev) out_disable_refclk: clk_disable_unprepare(priv->refclk); out_release: - free_netdev(ndev); - pm_runtime_put(&pdev->dev); +out_rpm_disable: pm_runtime_disable(&pdev->dev); reset_control_assert(rstc); +out_free_netdev: + free_netdev(ndev); return error; } @@ -2382,14 +2400,14 @@ static int ravb_remove(struct platform_device *pdev) clk_disable_unprepare(priv->refclk); - dma_free_coherent(ndev->dev.parent, priv->desc_bat_size, priv->desc_bat, - priv->desc_bat_dma); /* Set reset mode */ ravb_write(ndev, CCC_OPC_RESET, CCC); unregister_netdev(ndev); netif_napi_del(&priv->napi[RAVB_NC]); netif_napi_del(&priv->napi[RAVB_BE]); ravb_mdio_release(priv); + dma_free_coherent(ndev->dev.parent, priv->desc_bat_size, priv->desc_bat, + priv->desc_bat_dma); pm_runtime_put_sync(&pdev->dev); pm_runtime_disable(&pdev->dev); reset_control_assert(priv->rstc); diff --git a/drivers/net/ethernet/sfc/rx.c b/drivers/net/ethernet/sfc/rx.c index 606750938b890..2375cef577e44 100644 --- a/drivers/net/ethernet/sfc/rx.c +++ b/drivers/net/ethernet/sfc/rx.c @@ -338,7 +338,7 @@ static bool efx_do_xdp(struct efx_nic *efx, struct efx_channel *channel, break; default: - bpf_warn_invalid_xdp_action(xdp_act); + bpf_warn_invalid_xdp_action(efx->net_dev, xdp_prog, xdp_act); efx_free_rx_buffers(rx_queue, rx_buf, 1); channel->n_rx_xdp_bad_drops++; trace_xdp_exception(efx->net_dev, xdp_prog, xdp_act); diff --git a/drivers/net/ethernet/socionext/netsec.c b/drivers/net/ethernet/socionext/netsec.c index eb59e8abe6915..cba980510af94 100644 --- a/drivers/net/ethernet/socionext/netsec.c +++ b/drivers/net/ethernet/socionext/netsec.c @@ -933,7 +933,7 @@ static u32 netsec_run_xdp(struct netsec_priv *priv, struct bpf_prog *prog, } break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(priv->ndev, prog, act); fallthrough; case XDP_ABORTED: trace_xdp_exception(priv->ndev, prog, act); diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-stm32.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-stm32.c index 2b38a499a4045..533f5245ad945 100644 --- a/drivers/net/ethernet/stmicro/stmmac/dwmac-stm32.c +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-stm32.c @@ -105,6 +105,7 @@ struct stm32_ops { int (*parse_data)(struct stm32_dwmac *dwmac, struct device *dev); u32 syscfg_eth_mask; + bool clk_rx_enable_in_suspend; }; static int stm32_dwmac_init(struct plat_stmmacenet_data *plat_dat) @@ -122,7 +123,8 @@ static int stm32_dwmac_init(struct plat_stmmacenet_data *plat_dat) if (ret) return ret; - if (!dwmac->dev->power.is_suspended) { + if (!dwmac->ops->clk_rx_enable_in_suspend || + !dwmac->dev->power.is_suspended) { ret = clk_prepare_enable(dwmac->clk_rx); if (ret) { clk_disable_unprepare(dwmac->clk_tx); @@ -515,7 +517,8 @@ static struct stm32_ops stm32mp1_dwmac_data = { .suspend = stm32mp1_suspend, .resume = stm32mp1_resume, .parse_data = stm32mp1_parse_data, - .syscfg_eth_mask = SYSCFG_MP1_ETH_MASK + .syscfg_eth_mask = SYSCFG_MP1_ETH_MASK, + .clk_rx_enable_in_suspend = true }; static const struct of_device_id stm32_dwmac_match[] = { diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac5.c b/drivers/net/ethernet/stmicro/stmmac/dwmac5.c index e95d35f1e5a0c..8fd167501fa0e 100644 --- a/drivers/net/ethernet/stmicro/stmmac/dwmac5.c +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac5.c @@ -710,28 +710,22 @@ void dwmac5_est_irq_status(void __iomem *ioaddr, struct net_device *dev, } } -void dwmac5_fpe_configure(void __iomem *ioaddr, u32 num_txq, u32 num_rxq, +void dwmac5_fpe_configure(void __iomem *ioaddr, struct stmmac_fpe_cfg *cfg, + u32 num_txq, u32 num_rxq, bool enable) { u32 value; - if (!enable) { - value = readl(ioaddr + MAC_FPE_CTRL_STS); - - value &= ~EFPE; - - writel(value, ioaddr + MAC_FPE_CTRL_STS); - return; + if (enable) { + cfg->fpe_csr = EFPE; + value = readl(ioaddr + GMAC_RXQ_CTRL1); + value &= ~GMAC_RXQCTRL_FPRQ; + value |= (num_rxq - 1) << GMAC_RXQCTRL_FPRQ_SHIFT; + writel(value, ioaddr + GMAC_RXQ_CTRL1); + } else { + cfg->fpe_csr = 0; } - - value = readl(ioaddr + GMAC_RXQ_CTRL1); - value &= ~GMAC_RXQCTRL_FPRQ; - value |= (num_rxq - 1) << GMAC_RXQCTRL_FPRQ_SHIFT; - writel(value, ioaddr + GMAC_RXQ_CTRL1); - - value = readl(ioaddr + MAC_FPE_CTRL_STS); - value |= EFPE; - writel(value, ioaddr + MAC_FPE_CTRL_STS); + writel(cfg->fpe_csr, ioaddr + MAC_FPE_CTRL_STS); } int dwmac5_fpe_irq_status(void __iomem *ioaddr, struct net_device *dev) @@ -741,6 +735,9 @@ int dwmac5_fpe_irq_status(void __iomem *ioaddr, struct net_device *dev) status = FPE_EVENT_UNKNOWN; + /* Reads from the MAC_FPE_CTRL_STS register should only be performed + * here, since the status flags of MAC_FPE_CTRL_STS are "clear on read" + */ value = readl(ioaddr + MAC_FPE_CTRL_STS); if (value & TRSP) { @@ -766,19 +763,15 @@ int dwmac5_fpe_irq_status(void __iomem *ioaddr, struct net_device *dev) return status; } -void dwmac5_fpe_send_mpacket(void __iomem *ioaddr, enum stmmac_mpacket_type type) +void dwmac5_fpe_send_mpacket(void __iomem *ioaddr, struct stmmac_fpe_cfg *cfg, + enum stmmac_mpacket_type type) { - u32 value; + u32 value = cfg->fpe_csr; - value = readl(ioaddr + MAC_FPE_CTRL_STS); - - if (type == MPACKET_VERIFY) { - value &= ~SRSP; + if (type == MPACKET_VERIFY) value |= SVER; - } else { - value &= ~SVER; + else if (type == MPACKET_RESPONSE) value |= SRSP; - } writel(value, ioaddr + MAC_FPE_CTRL_STS); } diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac5.h b/drivers/net/ethernet/stmicro/stmmac/dwmac5.h index 53c138d0ff480..34e620790eb37 100644 --- a/drivers/net/ethernet/stmicro/stmmac/dwmac5.h +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac5.h @@ -153,9 +153,11 @@ int dwmac5_est_configure(void __iomem *ioaddr, struct stmmac_est *cfg, unsigned int ptp_rate); void dwmac5_est_irq_status(void __iomem *ioaddr, struct net_device *dev, struct stmmac_extra_stats *x, u32 txqcnt); -void dwmac5_fpe_configure(void __iomem *ioaddr, u32 num_txq, u32 num_rxq, +void dwmac5_fpe_configure(void __iomem *ioaddr, struct stmmac_fpe_cfg *cfg, + u32 num_txq, u32 num_rxq, bool enable); void dwmac5_fpe_send_mpacket(void __iomem *ioaddr, + struct stmmac_fpe_cfg *cfg, enum stmmac_mpacket_type type); int dwmac5_fpe_irq_status(void __iomem *ioaddr, struct net_device *dev); diff --git a/drivers/net/ethernet/stmicro/stmmac/dwxgmac2.h b/drivers/net/ethernet/stmicro/stmmac/dwxgmac2.h index 1913385df6856..880a75bf2eb1f 100644 --- a/drivers/net/ethernet/stmicro/stmmac/dwxgmac2.h +++ b/drivers/net/ethernet/stmicro/stmmac/dwxgmac2.h @@ -222,7 +222,7 @@ ((val) << XGMAC_PPS_MINIDX(x)) #define XGMAC_PPSCMD_START 0x2 #define XGMAC_PPSCMD_STOP 0x5 -#define XGMAC_PPSEN0 BIT(4) +#define XGMAC_PPSENx(x) BIT(4 + (x) * 8) #define XGMAC_PPSx_TARGET_TIME_SEC(x) (0x00000d80 + (x) * 0x10) #define XGMAC_PPSx_TARGET_TIME_NSEC(x) (0x00000d84 + (x) * 0x10) #define XGMAC_TRGTBUSY0 BIT(31) diff --git a/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_core.c b/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_core.c index c4d78fa93663b..3568bf3ccfbe7 100644 --- a/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_core.c +++ b/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_core.c @@ -1134,7 +1134,19 @@ static int dwxgmac2_flex_pps_config(void __iomem *ioaddr, int index, val |= XGMAC_PPSCMDx(index, XGMAC_PPSCMD_START); val |= XGMAC_TRGTMODSELx(index, XGMAC_PPSCMD_START); - val |= XGMAC_PPSEN0; + + /* XGMAC Core has 4 PPS outputs at most. + * + * Prior XGMAC Core 3.20, Fixed mode or Flexible mode are selectable for + * PPS0 only via PPSEN0. PPS{1,2,3} are in Flexible mode by default, + * and can not be switched to Fixed mode, since PPSEN{1,2,3} are + * read-only reserved to 0. + * But we always set PPSEN{1,2,3} do not make things worse ;-) + * + * From XGMAC Core 3.20 and later, PPSEN{0,1,2,3} are writable and must + * be set, or the PPS outputs stay in Fixed PPS mode by default. + */ + val |= XGMAC_PPSENx(index); writel(cfg->start.tv_sec, ioaddr + XGMAC_PPSx_TARGET_TIME_SEC(index)); @@ -1428,7 +1440,8 @@ static int dwxgmac3_est_configure(void __iomem *ioaddr, struct stmmac_est *cfg, return 0; } -static void dwxgmac3_fpe_configure(void __iomem *ioaddr, u32 num_txq, +static void dwxgmac3_fpe_configure(void __iomem *ioaddr, struct stmmac_fpe_cfg *cfg, + u32 num_txq, u32 num_rxq, bool enable) { u32 value; diff --git a/drivers/net/ethernet/stmicro/stmmac/hwif.h b/drivers/net/ethernet/stmicro/stmmac/hwif.h index fe2660d5694d7..cc229ccd5d81d 100644 --- a/drivers/net/ethernet/stmicro/stmmac/hwif.h +++ b/drivers/net/ethernet/stmicro/stmmac/hwif.h @@ -395,9 +395,11 @@ struct stmmac_ops { unsigned int ptp_rate); void (*est_irq_status)(void __iomem *ioaddr, struct net_device *dev, struct stmmac_extra_stats *x, u32 txqcnt); - void (*fpe_configure)(void __iomem *ioaddr, u32 num_txq, u32 num_rxq, + void (*fpe_configure)(void __iomem *ioaddr, struct stmmac_fpe_cfg *cfg, + u32 num_txq, u32 num_rxq, bool enable); void (*fpe_send_mpacket)(void __iomem *ioaddr, + struct stmmac_fpe_cfg *cfg, enum stmmac_mpacket_type type); int (*fpe_irq_status)(void __iomem *ioaddr, struct net_device *dev); }; diff --git a/drivers/net/ethernet/stmicro/stmmac/mmc_core.c b/drivers/net/ethernet/stmicro/stmmac/mmc_core.c index a57b0fa815aba..a510bac0b825b 100644 --- a/drivers/net/ethernet/stmicro/stmmac/mmc_core.c +++ b/drivers/net/ethernet/stmicro/stmmac/mmc_core.c @@ -177,8 +177,10 @@ #define MMC_XGMAC_RX_DISCARD_OCT_GB 0x1b4 #define MMC_XGMAC_RX_ALIGN_ERR_PKT 0x1bc +#define MMC_XGMAC_TX_FPE_INTR_MASK 0x204 #define MMC_XGMAC_TX_FPE_FRAG 0x208 #define MMC_XGMAC_TX_HOLD_REQ 0x20c +#define MMC_XGMAC_RX_FPE_INTR_MASK 0x224 #define MMC_XGMAC_RX_PKT_ASSEMBLY_ERR 0x228 #define MMC_XGMAC_RX_PKT_SMD_ERR 0x22c #define MMC_XGMAC_RX_PKT_ASSEMBLY_OK 0x230 @@ -352,6 +354,8 @@ static void dwxgmac_mmc_intr_all_mask(void __iomem *mmcaddr) { writel(0x0, mmcaddr + MMC_RX_INTR_MASK); writel(0x0, mmcaddr + MMC_TX_INTR_MASK); + writel(MMC_DEFAULT_MASK, mmcaddr + MMC_XGMAC_TX_FPE_INTR_MASK); + writel(MMC_DEFAULT_MASK, mmcaddr + MMC_XGMAC_RX_FPE_INTR_MASK); writel(MMC_DEFAULT_MASK, mmcaddr + MMC_XGMAC_RX_IPC_INTR_MASK); } diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac.h b/drivers/net/ethernet/stmicro/stmmac/stmmac.h index f03779205ade4..b296c2bdf535a 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac.h +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac.h @@ -23,6 +23,7 @@ #include #include #include +#include struct stmmac_resources { void __iomem *addr; diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c index a43628dd1f4c2..ecf75891adb8e 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c @@ -1054,7 +1054,8 @@ static void stmmac_fpe_link_state_handle(struct stmmac_priv *priv, bool is_up) bool *hs_enable = &fpe_cfg->hs_enable; if (is_up && *hs_enable) { - stmmac_fpe_send_mpacket(priv, priv->ioaddr, MPACKET_VERIFY); + stmmac_fpe_send_mpacket(priv, priv->ioaddr, fpe_cfg, + MPACKET_VERIFY); } else { *lo_state = FPE_STATE_OFF; *lp_state = FPE_STATE_OFF; @@ -4764,7 +4765,7 @@ static int __stmmac_xdp_run_prog(struct stmmac_priv *priv, res = STMMAC_XDP_REDIRECT; break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(priv->dev, prog, act); fallthrough; case XDP_ABORTED: trace_xdp_exception(priv->dev, prog, act); @@ -5165,10 +5166,10 @@ static int stmmac_rx(struct stmmac_priv *priv, int limit, u32 queue) len = 0; } +read_again: if (count >= limit) break; -read_again: buf1_len = 0; buf2_len = 0; entry = next_entry; @@ -5621,6 +5622,7 @@ static void stmmac_fpe_event_status(struct stmmac_priv *priv, int status) /* If user has requested FPE enable, quickly response */ if (*hs_enable) stmmac_fpe_send_mpacket(priv, priv->ioaddr, + fpe_cfg, MPACKET_RESPONSE); } @@ -6958,6 +6960,7 @@ static void stmmac_fpe_lp_task(struct work_struct *work) if (*lo_state == FPE_STATE_ENTERING_ON && *lp_state == FPE_STATE_ENTERING_ON) { stmmac_fpe_configure(priv, priv->ioaddr, + fpe_cfg, priv->plat->tx_queues_to_use, priv->plat->rx_queues_to_use, *enable); @@ -6976,6 +6979,7 @@ static void stmmac_fpe_lp_task(struct work_struct *work) netdev_info(priv->dev, SEND_VERIFY_MPAKCET_FMT, *lo_state, *lp_state); stmmac_fpe_send_mpacket(priv, priv->ioaddr, + fpe_cfg, MPACKET_VERIFY); } /* Sleep then retry */ @@ -6990,6 +6994,7 @@ void stmmac_fpe_handshake(struct stmmac_priv *priv, bool enable) if (priv->plat->fpe_cfg->hs_enable != enable) { if (enable) { stmmac_fpe_send_mpacket(priv, priv->ioaddr, + priv->plat->fpe_cfg, MPACKET_VERIFY); } else { priv->plat->fpe_cfg->lo_fpe_state = FPE_STATE_OFF; @@ -7399,6 +7404,7 @@ int stmmac_suspend(struct device *dev) if (priv->dma_cap.fpesel) { /* Disable FPE */ stmmac_fpe_configure(priv, priv->ioaddr, + priv->plat->fpe_cfg, priv->plat->tx_queues_to_use, priv->plat->rx_queues_to_use, false); diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c index d0a2b289f4603..08cffc0558743 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c @@ -952,6 +952,7 @@ static int tc_setup_taprio(struct stmmac_priv *priv, priv->plat->fpe_cfg->enable = false; stmmac_fpe_configure(priv, priv->ioaddr, + priv->plat->fpe_cfg, priv->plat->tx_queues_to_use, priv->plat->rx_queues_to_use, false); diff --git a/drivers/net/ethernet/ti/am65-cpsw-nuss.c b/drivers/net/ethernet/ti/am65-cpsw-nuss.c index daf0779261f3e..4aa9477ac5977 100644 --- a/drivers/net/ethernet/ti/am65-cpsw-nuss.c +++ b/drivers/net/ethernet/ti/am65-cpsw-nuss.c @@ -1619,6 +1619,7 @@ static int am65_cpsw_nuss_init_tx_chns(struct am65_cpsw_common *common) if (tx_chn->irq <= 0) { dev_err(dev, "Failed to get tx dma irq %d\n", tx_chn->irq); + ret = tx_chn->irq ?: -ENXIO; goto err; } diff --git a/drivers/net/ethernet/ti/cpsw_priv.c b/drivers/net/ethernet/ti/cpsw_priv.c index f8e591d69d2cb..43efcb9712380 100644 --- a/drivers/net/ethernet/ti/cpsw_priv.c +++ b/drivers/net/ethernet/ti/cpsw_priv.c @@ -1360,7 +1360,7 @@ int cpsw_run_xdp(struct cpsw_priv *priv, int ch, struct xdp_buff *xdp, xdp_do_flush_map(); break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(ndev, prog, act); fallthrough; case XDP_ABORTED: trace_xdp_exception(ndev, prog, act); diff --git a/drivers/net/ethernet/ti/cpsw_priv.h b/drivers/net/ethernet/ti/cpsw_priv.h index 435668ee542d1..0b900a9e7ea15 100644 --- a/drivers/net/ethernet/ti/cpsw_priv.h +++ b/drivers/net/ethernet/ti/cpsw_priv.h @@ -6,6 +6,8 @@ #ifndef DRIVERS_NET_ETHERNET_TI_CPSW_PRIV_H_ #define DRIVERS_NET_ETHERNET_TI_CPSW_PRIV_H_ +#include + #include "davinci_cpdma.h" #define CPSW_DEBUG (NETIF_MSG_HW | NETIF_MSG_WOL | \ diff --git a/drivers/net/ethernet/ti/davinci_emac.c b/drivers/net/ethernet/ti/davinci_emac.c index fbd6bd80f51f4..305779f9685a7 100644 --- a/drivers/net/ethernet/ti/davinci_emac.c +++ b/drivers/net/ethernet/ti/davinci_emac.c @@ -113,7 +113,6 @@ static const char emac_version_string[] = "TI DaVinci EMAC Linux v6.1"; #define EMAC_DEF_RX_NUM_DESC (128) #define EMAC_DEF_MAX_TX_CH (1) /* Max TX channels configured */ #define EMAC_DEF_MAX_RX_CH (1) /* Max RX channels configured */ -#define EMAC_POLL_WEIGHT (64) /* Default NAPI poll weight */ /* Buffer descriptor parameters */ #define EMAC_DEF_TX_MAX_SERVICE (32) /* TX max service BD's */ @@ -1923,7 +1922,7 @@ static int davinci_emac_probe(struct platform_device *pdev) ndev->netdev_ops = &emac_netdev_ops; ndev->ethtool_ops = ðtool_ops; - netif_napi_add(ndev, &priv->napi, emac_poll, EMAC_POLL_WEIGHT); + netif_napi_add(ndev, &priv->napi, emac_poll, NAPI_POLL_WEIGHT); pm_runtime_enable(&pdev->dev); rc = pm_runtime_get_sync(&pdev->dev); diff --git a/drivers/net/ethernet/ti/netcp_core.c b/drivers/net/ethernet/ti/netcp_core.c index a6450055908db..2f00be789a8a9 100644 --- a/drivers/net/ethernet/ti/netcp_core.c +++ b/drivers/net/ethernet/ti/netcp_core.c @@ -24,7 +24,6 @@ #include "netcp.h" #define NETCP_SOP_OFFSET (NET_IP_ALIGN + NET_SKB_PAD) -#define NETCP_NAPI_WEIGHT 64 #define NETCP_TX_TIMEOUT (5 * HZ) #define NETCP_PACKET_SIZE (ETH_FRAME_LEN + ETH_FCS_LEN) #define NETCP_MIN_PACKET_SIZE ETH_ZLEN @@ -2096,8 +2095,8 @@ static int netcp_create_interface(struct netcp_device *netcp_device, } /* NAPI register */ - netif_napi_add(ndev, &netcp->rx_napi, netcp_rx_poll, NETCP_NAPI_WEIGHT); - netif_tx_napi_add(ndev, &netcp->tx_napi, netcp_tx_poll, NETCP_NAPI_WEIGHT); + netif_napi_add(ndev, &netcp->rx_napi, netcp_rx_poll, NAPI_POLL_WEIGHT); + netif_tx_napi_add(ndev, &netcp->tx_napi, netcp_tx_poll, NAPI_POLL_WEIGHT); /* Register the network device */ ndev->dev_id = 0; diff --git a/drivers/net/ethernet/toshiba/ps3_gelic_wireless.c b/drivers/net/ethernet/toshiba/ps3_gelic_wireless.c index dc14a66583ff3..44488c153ea25 100644 --- a/drivers/net/ethernet/toshiba/ps3_gelic_wireless.c +++ b/drivers/net/ethernet/toshiba/ps3_gelic_wireless.c @@ -1217,7 +1217,7 @@ static int gelic_wl_set_encodeext(struct net_device *netdev, key_index = wl->current_key; if (!enc->length && (ext->ext_flags & IW_ENCODE_EXT_SET_TX_KEY)) { - /* reques to change default key index */ + /* request to change default key index */ pr_debug("%s: request to change default key to %d\n", __func__, key_index); wl->current_key = key_index; diff --git a/drivers/net/ethernet/toshiba/spider_net.c b/drivers/net/ethernet/toshiba/spider_net.c index 66d4e024d11e9..f62fbb1087a9e 100644 --- a/drivers/net/ethernet/toshiba/spider_net.c +++ b/drivers/net/ethernet/toshiba/spider_net.c @@ -2332,7 +2332,7 @@ spider_net_alloc_card(void) struct spider_net_card *card; netdev = alloc_etherdev(struct_size(card, darray, - tx_descriptors + rx_descriptors)); + size_add(tx_descriptors, rx_descriptors))); if (!netdev) return NULL; diff --git a/drivers/net/ethernet/xilinx/xilinx_axienet_main.c b/drivers/net/ethernet/xilinx/xilinx_axienet_main.c index e7f6c29b8dd82..63f33126d02fe 100644 --- a/drivers/net/ethernet/xilinx/xilinx_axienet_main.c +++ b/drivers/net/ethernet/xilinx/xilinx_axienet_main.c @@ -763,7 +763,7 @@ axienet_start_xmit(struct sk_buff *skb, struct net_device *ndev) if (lp->features & XAE_FEATURE_FULL_TX_CSUM) { /* Tx Full Checksum Offload Enabled */ cur_p->app0 |= 2; - } else if (lp->features & XAE_FEATURE_PARTIAL_RX_CSUM) { + } else if (lp->features & XAE_FEATURE_PARTIAL_TX_CSUM) { csum_start_off = skb_transport_offset(skb); csum_index_off = csum_start_off + skb->csum_offset; /* Tx Partial Checksum Offload Enabled */ diff --git a/drivers/net/gtp.c b/drivers/net/gtp.c index a3878aef0ea4a..69bbc868b9477 100644 --- a/drivers/net/gtp.c +++ b/drivers/net/gtp.c @@ -543,8 +543,9 @@ static int gtp_build_skb_ip4(struct sk_buff *skb, struct net_device *dev, rt->dst.ops->update_pmtu(&rt->dst, NULL, skb, mtu, false); - if (!skb_is_gso(skb) && (iph->frag_off & htons(IP_DF)) && - mtu < ntohs(iph->tot_len)) { + if (iph->frag_off & htons(IP_DF) && + ((!skb_is_gso(skb) && skb->len > mtu) || + (skb_is_gso(skb) && !skb_gso_validate_network_len(skb, mtu)))) { netdev_dbg(dev, "packet too big, fragmentation needed\n"); icmp_ndo_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED, htonl(mtu)); diff --git a/drivers/net/hyperv/Kconfig b/drivers/net/hyperv/Kconfig index ca7bf7f897d36..c8cbd85adcf99 100644 --- a/drivers/net/hyperv/Kconfig +++ b/drivers/net/hyperv/Kconfig @@ -3,5 +3,6 @@ config HYPERV_NET tristate "Microsoft Hyper-V virtual network driver" depends on HYPERV select UCS2_STRING + select NLS help Select this option to enable the Hyper-V virtual network driver. diff --git a/drivers/net/hyperv/hyperv_net.h b/drivers/net/hyperv/hyperv_net.h index aab6cb5163fea..dd5919ec408bf 100644 --- a/drivers/net/hyperv/hyperv_net.h +++ b/drivers/net/hyperv/hyperv_net.h @@ -15,6 +15,7 @@ #include #include #include +#include /* RSS related */ #define OID_GEN_RECEIVE_SCALE_CAPABILITIES 0x00010203 /* query only */ @@ -164,6 +165,7 @@ struct hv_netvsc_packet { u32 total_bytes; u32 send_buf_index; u32 total_data_buflen; + struct hv_dma_range *dma_range; }; #define NETVSC_HASH_KEYLEN 40 @@ -236,6 +238,7 @@ int netvsc_recv_callback(struct net_device *net, void netvsc_channel_cb(void *context); int netvsc_poll(struct napi_struct *napi, int budget); +void netvsc_xdp_xmit(struct sk_buff *skb, struct net_device *ndev); u32 netvsc_run_xdp(struct net_device *ndev, struct netvsc_channel *nvchan, struct xdp_buff *xdp); unsigned int netvsc_xdp_fraglen(unsigned int len); @@ -245,6 +248,8 @@ int netvsc_xdp_set(struct net_device *dev, struct bpf_prog *prog, struct netvsc_device *nvdev); int netvsc_vf_setxdp(struct net_device *vf_netdev, struct bpf_prog *prog); int netvsc_bpf(struct net_device *dev, struct netdev_bpf *bpf); +int netvsc_ndoxdp_xmit(struct net_device *ndev, int n, + struct xdp_frame **frames, u32 flags); int rndis_set_subchannel(struct net_device *ndev, struct netvsc_device *nvdev, @@ -941,12 +946,21 @@ struct nvsc_rsc { #define NVSC_RSC_CSUM_INFO BIT(1) /* valid/present bit for 'csum_info' */ #define NVSC_RSC_HASH_INFO BIT(2) /* valid/present bit for 'hash_info' */ -struct netvsc_stats { +struct netvsc_stats_tx { + u64 packets; + u64 bytes; + u64 xdp_xmit; + struct u64_stats_sync syncp; +}; + +struct netvsc_stats_rx { u64 packets; u64 bytes; u64 broadcast; u64 multicast; u64 xdp_drop; + u64 xdp_redirect; + u64 xdp_tx; struct u64_stats_sync syncp; }; @@ -1046,6 +1060,55 @@ struct net_device_context { struct netvsc_device_info *saved_netvsc_dev_info; }; +/* Azure hosts don't support non-TCP port numbers in hashing for fragmented + * packets. We can use ethtool to change UDP hash level when necessary. + */ +static inline u32 netvsc_get_hash(struct sk_buff *skb, + const struct net_device_context *ndc) +{ + struct flow_keys flow; + u32 hash, pkt_proto = 0; + static u32 hashrnd __read_mostly; + + net_get_random_once(&hashrnd, sizeof(hashrnd)); + + if (!skb_flow_dissect_flow_keys(skb, &flow, 0)) + return 0; + + switch (flow.basic.ip_proto) { + case IPPROTO_TCP: + if (flow.basic.n_proto == htons(ETH_P_IP)) + pkt_proto = HV_TCP4_L4HASH; + else if (flow.basic.n_proto == htons(ETH_P_IPV6)) + pkt_proto = HV_TCP6_L4HASH; + + break; + + case IPPROTO_UDP: + if (flow.basic.n_proto == htons(ETH_P_IP)) + pkt_proto = HV_UDP4_L4HASH; + else if (flow.basic.n_proto == htons(ETH_P_IPV6)) + pkt_proto = HV_UDP6_L4HASH; + + break; + } + + if (pkt_proto & ndc->l4_hash) { + return skb_get_hash(skb); + } else { + if (flow.basic.n_proto == htons(ETH_P_IP)) + hash = jhash2((u32 *)&flow.addrs.v4addrs, 2, hashrnd); + else if (flow.basic.n_proto == htons(ETH_P_IPV6)) + hash = jhash2((u32 *)&flow.addrs.v6addrs, 8, hashrnd); + else + return 0; + + __skb_set_sw_hash(skb, hash, false); + } + + return hash; +} + /* Per channel data */ struct netvsc_channel { struct vmbus_channel *channel; @@ -1060,9 +1123,10 @@ struct netvsc_channel { struct bpf_prog __rcu *bpf_prog; struct xdp_rxq_info xdp_rxq; + bool xdp_flush; - struct netvsc_stats tx_stats; - struct netvsc_stats rx_stats; + struct netvsc_stats_tx tx_stats; + struct netvsc_stats_rx rx_stats; }; /* Per netvsc device */ @@ -1075,15 +1139,18 @@ struct netvsc_device { /* Receive buffer allocated by us but manages by NetVSP */ void *recv_buf; + void *recv_original_buf; u32 recv_buf_size; /* allocated bytes */ - u32 recv_buf_gpadl_handle; + struct vmbus_gpadl recv_buf_gpadl_handle; u32 recv_section_cnt; u32 recv_section_size; u32 recv_completion_cnt; /* Send buffer allocated by us */ void *send_buf; - u32 send_buf_gpadl_handle; + void *send_original_buf; + u32 send_buf_size; + struct vmbus_gpadl send_buf_gpadl_handle; u32 send_section_cnt; u32 send_section_size; unsigned long *send_section_map; @@ -1731,4 +1798,6 @@ struct rndis_message { #define RETRY_US_HI 10000 #define RETRY_MAX 2000 /* >10 sec */ +void netvsc_dma_unmap(struct hv_device *hv_dev, + struct hv_netvsc_packet *packet); #endif /* _HYPERV_NET_H */ diff --git a/drivers/net/hyperv/netvsc.c b/drivers/net/hyperv/netvsc.c index 4156299e039d8..41cb611383566 100644 --- a/drivers/net/hyperv/netvsc.c +++ b/drivers/net/hyperv/netvsc.c @@ -20,6 +20,7 @@ #include #include #include +#include #include #include @@ -153,8 +154,17 @@ static void free_netvsc_device(struct rcu_head *head) int i; kfree(nvdev->extension); - vfree(nvdev->recv_buf); - vfree(nvdev->send_buf); + + if (nvdev->recv_original_buf) + vfree(nvdev->recv_original_buf); + else + vfree(nvdev->recv_buf); + + if (nvdev->send_original_buf) + vfree(nvdev->send_original_buf); + else + vfree(nvdev->send_buf); + kfree(nvdev->send_section_map); for (i = 0; i < VRSS_CHANNEL_MAX; i++) { @@ -278,9 +288,9 @@ static void netvsc_teardown_recv_gpadl(struct hv_device *device, { int ret; - if (net_device->recv_buf_gpadl_handle) { + if (net_device->recv_buf_gpadl_handle.gpadl_handle) { ret = vmbus_teardown_gpadl(device->channel, - net_device->recv_buf_gpadl_handle); + &net_device->recv_buf_gpadl_handle); /* If we failed here, we might as well return and have a leak * rather than continue and a bugchk @@ -290,7 +300,6 @@ static void netvsc_teardown_recv_gpadl(struct hv_device *device, "unable to teardown receive buffer's gpadl\n"); return; } - net_device->recv_buf_gpadl_handle = 0; } } @@ -300,9 +309,9 @@ static void netvsc_teardown_send_gpadl(struct hv_device *device, { int ret; - if (net_device->send_buf_gpadl_handle) { + if (net_device->send_buf_gpadl_handle.gpadl_handle) { ret = vmbus_teardown_gpadl(device->channel, - net_device->send_buf_gpadl_handle); + &net_device->send_buf_gpadl_handle); /* If we failed here, we might as well return and have a leak * rather than continue and a bugchk @@ -312,7 +321,6 @@ static void netvsc_teardown_send_gpadl(struct hv_device *device, "unable to teardown send buffer's gpadl\n"); return; } - net_device->send_buf_gpadl_handle = 0; } } @@ -340,6 +348,7 @@ static int netvsc_init_buf(struct hv_device *device, unsigned int buf_size; size_t map_words; int i, ret = 0; + void *vaddr; /* Get receive buffer area. */ buf_size = device_info->recv_sections * device_info->recv_section_size; @@ -375,12 +384,23 @@ static int netvsc_init_buf(struct hv_device *device, goto cleanup; } + if (hv_isolation_type_snp()) { + vaddr = hv_map_memory(net_device->recv_buf, buf_size); + if (!vaddr) { + ret = -ENOMEM; + goto cleanup; + } + + net_device->recv_original_buf = net_device->recv_buf; + net_device->recv_buf = vaddr; + } + /* Notify the NetVsp of the gpadl handle */ init_packet = &net_device->channel_init_pkt; memset(init_packet, 0, sizeof(struct nvsp_message)); init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_RECV_BUF; init_packet->msg.v1_msg.send_recv_buf. - gpadl_handle = net_device->recv_buf_gpadl_handle; + gpadl_handle = net_device->recv_buf_gpadl_handle.gpadl_handle; init_packet->msg.v1_msg. send_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID; @@ -463,6 +483,7 @@ static int netvsc_init_buf(struct hv_device *device, ret = -ENOMEM; goto cleanup; } + net_device->send_buf_size = buf_size; /* Establish the gpadl handle for this buffer on this * channel. Note: This call uses the vmbus connection rather @@ -477,12 +498,23 @@ static int netvsc_init_buf(struct hv_device *device, goto cleanup; } + if (hv_isolation_type_snp()) { + vaddr = hv_map_memory(net_device->send_buf, buf_size); + if (!vaddr) { + ret = -ENOMEM; + goto cleanup; + } + + net_device->send_original_buf = net_device->send_buf; + net_device->send_buf = vaddr; + } + /* Notify the NetVsp of the gpadl handle */ init_packet = &net_device->channel_init_pkt; memset(init_packet, 0, sizeof(struct nvsp_message)); init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_SEND_BUF; init_packet->msg.v1_msg.send_send_buf.gpadl_handle = - net_device->send_buf_gpadl_handle; + net_device->send_buf_gpadl_handle.gpadl_handle; init_packet->msg.v1_msg.send_send_buf.id = NETVSC_SEND_BUFFER_ID; trace_nvsp_send(ndev, init_packet); @@ -710,7 +742,10 @@ void netvsc_device_remove(struct hv_device *device) /* Disable NAPI and disassociate its context from the device. */ for (i = 0; i < net_device->num_chn; i++) { /* See also vmbus_reset_channel_cb(). */ - napi_disable(&net_device->chan_table[i].napi); + /* only disable enabled NAPI channel */ + if (i < ndev->real_num_rx_queues) + napi_disable(&net_device->chan_table[i].napi); + netif_napi_del(&net_device->chan_table[i].napi); } @@ -732,6 +767,12 @@ void netvsc_device_remove(struct hv_device *device) netvsc_teardown_send_gpadl(device, net_device, ndev); } + if (net_device->recv_original_buf) + hv_unmap_memory(net_device->recv_buf); + + if (net_device->send_original_buf) + hv_unmap_memory(net_device->send_buf); + /* Release all resources */ free_netvsc_device_rcu(net_device); } @@ -767,10 +808,10 @@ static void netvsc_send_tx_complete(struct net_device *ndev, /* Notify the layer above us */ if (likely(skb)) { - const struct hv_netvsc_packet *packet + struct hv_netvsc_packet *packet = (struct hv_netvsc_packet *)skb->cb; u32 send_index = packet->send_buf_index; - struct netvsc_stats *tx_stats; + struct netvsc_stats_tx *tx_stats; if (send_index != NETVSC_INVALID_INDEX) netvsc_free_send_slot(net_device, send_index); @@ -783,6 +824,7 @@ static void netvsc_send_tx_complete(struct net_device *ndev, tx_stats->bytes += packet->total_bytes; u64_stats_update_end(&tx_stats->syncp); + netvsc_dma_unmap(ndev_ctx->device_ctx, packet); napi_consume_skb(skb, budget); } @@ -965,6 +1007,88 @@ static void netvsc_copy_to_send_buf(struct netvsc_device *net_device, memset(dest, 0, padding); } +void netvsc_dma_unmap(struct hv_device *hv_dev, + struct hv_netvsc_packet *packet) +{ + u32 page_count = packet->cp_partial ? + packet->page_buf_cnt - packet->rmsg_pgcnt : + packet->page_buf_cnt; + int i; + + if (!hv_is_isolation_supported()) + return; + + if (!packet->dma_range) + return; + + for (i = 0; i < page_count; i++) + dma_unmap_single(&hv_dev->device, packet->dma_range[i].dma, + packet->dma_range[i].mapping_size, + DMA_TO_DEVICE); + + kfree(packet->dma_range); +} + +/* netvsc_dma_map - Map swiotlb bounce buffer with data page of + * packet sent by vmbus_sendpacket_pagebuffer() in the Isolation + * VM. + * + * In isolation VM, netvsc send buffer has been marked visible to + * host and so the data copied to send buffer doesn't need to use + * bounce buffer. The data pages handled by vmbus_sendpacket_pagebuffer() + * may not be copied to send buffer and so these pages need to be + * mapped with swiotlb bounce buffer. netvsc_dma_map() is to do + * that. The pfns in the struct hv_page_buffer need to be converted + * to bounce buffer's pfn. The loop here is necessary because the + * entries in the page buffer array are not necessarily full + * pages of data. Each entry in the array has a separate offset and + * len that may be non-zero, even for entries in the middle of the + * array. And the entries are not physically contiguous. So each + * entry must be individually mapped rather than as a contiguous unit. + * So not use dma_map_sg() here. + */ +static int netvsc_dma_map(struct hv_device *hv_dev, + struct hv_netvsc_packet *packet, + struct hv_page_buffer *pb) +{ + u32 page_count = packet->cp_partial ? + packet->page_buf_cnt - packet->rmsg_pgcnt : + packet->page_buf_cnt; + dma_addr_t dma; + int i; + + if (!hv_is_isolation_supported()) + return 0; + + packet->dma_range = kcalloc(page_count, + sizeof(*packet->dma_range), + GFP_KERNEL); + if (!packet->dma_range) + return -ENOMEM; + + for (i = 0; i < page_count; i++) { + char *src = phys_to_virt((pb[i].pfn << HV_HYP_PAGE_SHIFT) + + pb[i].offset); + u32 len = pb[i].len; + + dma = dma_map_single(&hv_dev->device, src, len, + DMA_TO_DEVICE); + if (dma_mapping_error(&hv_dev->device, dma)) { + kfree(packet->dma_range); + return -ENOMEM; + } + + /* pb[].offset and pb[].len are not changed during dma mapping + * and so not reassign. + */ + packet->dma_range[i].dma = dma; + packet->dma_range[i].mapping_size = len; + pb[i].pfn = dma >> HV_HYP_PAGE_SHIFT; + } + + return 0; +} + static inline int netvsc_send_pkt( struct hv_device *device, struct hv_netvsc_packet *packet, @@ -1005,14 +1129,24 @@ static inline int netvsc_send_pkt( trace_nvsp_send_pkt(ndev, out_channel, rpkt); + packet->dma_range = NULL; if (packet->page_buf_cnt) { if (packet->cp_partial) pb += packet->rmsg_pgcnt; + ret = netvsc_dma_map(ndev_ctx->device_ctx, packet, pb); + if (ret) { + ret = -EAGAIN; + goto exit; + } + ret = vmbus_sendpacket_pagebuffer(out_channel, pb, packet->page_buf_cnt, &nvmsg, sizeof(nvmsg), req_id); + + if (ret) + netvsc_dma_unmap(ndev_ctx->device_ctx, packet); } else { ret = vmbus_sendpacket(out_channel, &nvmsg, sizeof(nvmsg), @@ -1020,6 +1154,7 @@ static inline int netvsc_send_pkt( VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); } +exit: if (ret == 0) { atomic_inc_return(&nvchan->queue_sends); @@ -1564,12 +1699,17 @@ int netvsc_poll(struct napi_struct *napi, int budget) if (!nvchan->desc) nvchan->desc = hv_pkt_iter_first(channel); + nvchan->xdp_flush = false; + while (nvchan->desc && work_done < budget) { work_done += netvsc_process_raw_pkt(device, nvchan, net_device, ndev, nvchan->desc, budget); nvchan->desc = hv_pkt_iter_next(channel, nvchan->desc); } + if (nvchan->xdp_flush) + xdp_do_flush(); + /* Send any pending receive completions */ ret = send_recv_completions(ndev, net_device, nvchan); @@ -1716,6 +1856,12 @@ struct netvsc_device *netvsc_device_add(struct hv_device *device, netif_napi_del(&net_device->chan_table[0].napi); cleanup2: + if (net_device->recv_original_buf) + hv_unmap_memory(net_device->recv_buf); + + if (net_device->send_original_buf) + hv_unmap_memory(net_device->send_buf); + free_netvsc_device(&net_device->rcu); return ERR_PTR(ret); diff --git a/drivers/net/hyperv/netvsc_bpf.c b/drivers/net/hyperv/netvsc_bpf.c index aa877da113f8e..d0c8e54d4b1f9 100644 --- a/drivers/net/hyperv/netvsc_bpf.c +++ b/drivers/net/hyperv/netvsc_bpf.c @@ -10,6 +10,7 @@ #include #include #include +#include #include #include #include @@ -23,11 +24,13 @@ u32 netvsc_run_xdp(struct net_device *ndev, struct netvsc_channel *nvchan, struct xdp_buff *xdp) { + struct netvsc_stats_rx *rx_stats = &nvchan->rx_stats; void *data = nvchan->rsc.data[0]; u32 len = nvchan->rsc.len[0]; struct page *page = NULL; struct bpf_prog *prog; u32 act = XDP_PASS; + bool drop = true; xdp->data_hard_start = NULL; @@ -60,21 +63,46 @@ u32 netvsc_run_xdp(struct net_device *ndev, struct netvsc_channel *nvchan, switch (act) { case XDP_PASS: case XDP_TX: + drop = false; + break; + case XDP_DROP: break; + case XDP_REDIRECT: + if (!xdp_do_redirect(ndev, xdp, prog)) { + nvchan->xdp_flush = true; + drop = false; + + u64_stats_update_begin(&rx_stats->syncp); + + rx_stats->xdp_redirect++; + rx_stats->packets++; + rx_stats->bytes += nvchan->rsc.pktlen; + + u64_stats_update_end(&rx_stats->syncp); + + break; + } else { + u64_stats_update_begin(&rx_stats->syncp); + rx_stats->xdp_drop++; + u64_stats_update_end(&rx_stats->syncp); + } + + fallthrough; + case XDP_ABORTED: trace_xdp_exception(ndev, prog, act); break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(ndev, prog, act); } out: rcu_read_unlock(); - if (page && act != XDP_PASS && act != XDP_TX) { + if (page && drop) { __free_page(page); xdp->data_hard_start = NULL; } @@ -199,3 +227,68 @@ int netvsc_bpf(struct net_device *dev, struct netdev_bpf *bpf) return -EINVAL; } } + +static int netvsc_ndoxdp_xmit_fm(struct net_device *ndev, + struct xdp_frame *frame, u16 q_idx) +{ + struct sk_buff *skb; + + skb = xdp_build_skb_from_frame(frame, ndev); + if (unlikely(!skb)) + return -ENOMEM; + + netvsc_get_hash(skb, netdev_priv(ndev)); + + skb_record_rx_queue(skb, q_idx); + + netvsc_xdp_xmit(skb, ndev); + + return 0; +} + +int netvsc_ndoxdp_xmit(struct net_device *ndev, int n, + struct xdp_frame **frames, u32 flags) +{ + struct net_device_context *ndev_ctx = netdev_priv(ndev); + const struct net_device_ops *vf_ops; + struct netvsc_stats_tx *tx_stats; + struct netvsc_device *nvsc_dev; + struct net_device *vf_netdev; + int i, count = 0; + u16 q_idx; + + /* Don't transmit if netvsc_device is gone */ + nvsc_dev = rcu_dereference_bh(ndev_ctx->nvdev); + if (unlikely(!nvsc_dev || nvsc_dev->destroy)) + return 0; + + /* If VF is present and up then redirect packets to it. + * Skip the VF if it is marked down or has no carrier. + * If netpoll is in uses, then VF can not be used either. + */ + vf_netdev = rcu_dereference_bh(ndev_ctx->vf_netdev); + if (vf_netdev && netif_running(vf_netdev) && + netif_carrier_ok(vf_netdev) && !netpoll_tx_running(ndev) && + vf_netdev->netdev_ops->ndo_xdp_xmit && + ndev_ctx->data_path_is_vf) { + vf_ops = vf_netdev->netdev_ops; + return vf_ops->ndo_xdp_xmit(vf_netdev, n, frames, flags); + } + + q_idx = smp_processor_id() % ndev->real_num_tx_queues; + + for (i = 0; i < n; i++) { + if (netvsc_ndoxdp_xmit_fm(ndev, frames[i], q_idx)) + break; + + count++; + } + + tx_stats = &nvsc_dev->chan_table[q_idx].tx_stats; + + u64_stats_update_begin(&tx_stats->syncp); + tx_stats->xdp_xmit += count; + u64_stats_update_end(&tx_stats->syncp); + + return count; +} diff --git a/drivers/net/hyperv/netvsc_drv.c b/drivers/net/hyperv/netvsc_drv.c index ec622e909a685..d042b0111c2bc 100644 --- a/drivers/net/hyperv/netvsc_drv.c +++ b/drivers/net/hyperv/netvsc_drv.c @@ -42,6 +42,10 @@ #define LINKCHANGE_INT (2 * HZ) #define VF_TAKEOVER_INT (HZ / 10) +/* Macros to define the context of vf registration */ +#define VF_REG_IN_PROBE 1 +#define VF_REG_IN_NOTIFIER 2 + static unsigned int ring_size __ro_after_init = 128; module_param(ring_size, uint, 0444); MODULE_PARM_DESC(ring_size, "Ring buffer size (# of pages)"); @@ -242,56 +246,6 @@ static inline void *init_ppi_data(struct rndis_message *msg, return ppi + 1; } -/* Azure hosts don't support non-TCP port numbers in hashing for fragmented - * packets. We can use ethtool to change UDP hash level when necessary. - */ -static inline u32 netvsc_get_hash( - struct sk_buff *skb, - const struct net_device_context *ndc) -{ - struct flow_keys flow; - u32 hash, pkt_proto = 0; - static u32 hashrnd __read_mostly; - - net_get_random_once(&hashrnd, sizeof(hashrnd)); - - if (!skb_flow_dissect_flow_keys(skb, &flow, 0)) - return 0; - - switch (flow.basic.ip_proto) { - case IPPROTO_TCP: - if (flow.basic.n_proto == htons(ETH_P_IP)) - pkt_proto = HV_TCP4_L4HASH; - else if (flow.basic.n_proto == htons(ETH_P_IPV6)) - pkt_proto = HV_TCP6_L4HASH; - - break; - - case IPPROTO_UDP: - if (flow.basic.n_proto == htons(ETH_P_IP)) - pkt_proto = HV_UDP4_L4HASH; - else if (flow.basic.n_proto == htons(ETH_P_IPV6)) - pkt_proto = HV_UDP6_L4HASH; - - break; - } - - if (pkt_proto & ndc->l4_hash) { - return skb_get_hash(skb); - } else { - if (flow.basic.n_proto == htons(ETH_P_IP)) - hash = jhash2((u32 *)&flow.addrs.v4addrs, 2, hashrnd); - else if (flow.basic.n_proto == htons(ETH_P_IPV6)) - hash = jhash2((u32 *)&flow.addrs.v6addrs, 8, hashrnd); - else - return 0; - - __skb_set_sw_hash(skb, hash, false); - } - - return hash; -} - static inline int netvsc_get_tx_queue(struct net_device *ndev, struct sk_buff *skb, int old_idx) { @@ -803,7 +757,8 @@ void netvsc_linkstatus_callback(struct net_device *net, schedule_delayed_work(&ndev_ctx->dwork, 0); } -static void netvsc_xdp_xmit(struct sk_buff *skb, struct net_device *ndev) +/* This function should only be called after skb_record_rx_queue() */ +void netvsc_xdp_xmit(struct sk_buff *skb, struct net_device *ndev) { int rc; @@ -924,7 +879,7 @@ int netvsc_recv_callback(struct net_device *net, struct vmbus_channel *channel = nvchan->channel; u16 q_idx = channel->offermsg.offer.sub_channel_index; struct sk_buff *skb; - struct netvsc_stats *rx_stats = &nvchan->rx_stats; + struct netvsc_stats_rx *rx_stats = &nvchan->rx_stats; struct xdp_buff xdp; u32 act; @@ -933,6 +888,9 @@ int netvsc_recv_callback(struct net_device *net, act = netvsc_run_xdp(net, nvchan, &xdp); + if (act == XDP_REDIRECT) + return NVSP_STAT_SUCCESS; + if (act != XDP_PASS && act != XDP_TX) { u64_stats_update_begin(&rx_stats->syncp); rx_stats->xdp_drop++; @@ -957,6 +915,9 @@ int netvsc_recv_callback(struct net_device *net, * statistics will not work correctly. */ u64_stats_update_begin(&rx_stats->syncp); + if (act == XDP_TX) + rx_stats->xdp_tx++; + rx_stats->packets++; rx_stats->bytes += nvchan->rsc.pktlen; @@ -1352,28 +1313,29 @@ static void netvsc_get_pcpu_stats(struct net_device *net, /* fetch percpu stats of netvsc */ for (i = 0; i < nvdev->num_chn; i++) { const struct netvsc_channel *nvchan = &nvdev->chan_table[i]; - const struct netvsc_stats *stats; + const struct netvsc_stats_tx *tx_stats; + const struct netvsc_stats_rx *rx_stats; struct netvsc_ethtool_pcpu_stats *this_tot = &pcpu_tot[nvchan->channel->target_cpu]; u64 packets, bytes; unsigned int start; - stats = &nvchan->tx_stats; + tx_stats = &nvchan->tx_stats; do { - start = u64_stats_fetch_begin_irq(&stats->syncp); - packets = stats->packets; - bytes = stats->bytes; - } while (u64_stats_fetch_retry_irq(&stats->syncp, start)); + start = u64_stats_fetch_begin_irq(&tx_stats->syncp); + packets = tx_stats->packets; + bytes = tx_stats->bytes; + } while (u64_stats_fetch_retry_irq(&tx_stats->syncp, start)); this_tot->tx_bytes += bytes; this_tot->tx_packets += packets; - stats = &nvchan->rx_stats; + rx_stats = &nvchan->rx_stats; do { - start = u64_stats_fetch_begin_irq(&stats->syncp); - packets = stats->packets; - bytes = stats->bytes; - } while (u64_stats_fetch_retry_irq(&stats->syncp, start)); + start = u64_stats_fetch_begin_irq(&rx_stats->syncp); + packets = rx_stats->packets; + bytes = rx_stats->bytes; + } while (u64_stats_fetch_retry_irq(&rx_stats->syncp, start)); this_tot->rx_bytes += bytes; this_tot->rx_packets += packets; @@ -1405,27 +1367,28 @@ static void netvsc_get_stats64(struct net_device *net, for (i = 0; i < nvdev->num_chn; i++) { const struct netvsc_channel *nvchan = &nvdev->chan_table[i]; - const struct netvsc_stats *stats; + const struct netvsc_stats_tx *tx_stats; + const struct netvsc_stats_rx *rx_stats; u64 packets, bytes, multicast; unsigned int start; - stats = &nvchan->tx_stats; + tx_stats = &nvchan->tx_stats; do { - start = u64_stats_fetch_begin_irq(&stats->syncp); - packets = stats->packets; - bytes = stats->bytes; - } while (u64_stats_fetch_retry_irq(&stats->syncp, start)); + start = u64_stats_fetch_begin_irq(&tx_stats->syncp); + packets = tx_stats->packets; + bytes = tx_stats->bytes; + } while (u64_stats_fetch_retry_irq(&tx_stats->syncp, start)); t->tx_bytes += bytes; t->tx_packets += packets; - stats = &nvchan->rx_stats; + rx_stats = &nvchan->rx_stats; do { - start = u64_stats_fetch_begin_irq(&stats->syncp); - packets = stats->packets; - bytes = stats->bytes; - multicast = stats->multicast + stats->broadcast; - } while (u64_stats_fetch_retry_irq(&stats->syncp, start)); + start = u64_stats_fetch_begin_irq(&rx_stats->syncp); + packets = rx_stats->packets; + bytes = rx_stats->bytes; + multicast = rx_stats->multicast + rx_stats->broadcast; + } while (u64_stats_fetch_retry_irq(&rx_stats->syncp, start)); t->rx_bytes += bytes; t->rx_packets += packets; @@ -1514,8 +1477,8 @@ static const struct { /* statistics per queue (rx/tx packets/bytes) */ #define NETVSC_PCPU_STATS_LEN (num_present_cpus() * ARRAY_SIZE(pcpu_stats)) -/* 5 statistics per queue (rx/tx packets/bytes, rx xdp_drop) */ -#define NETVSC_QUEUE_STATS_LEN(dev) ((dev)->num_chn * 5) +/* 8 statistics per queue (rx/tx packets/bytes, XDP actions) */ +#define NETVSC_QUEUE_STATS_LEN(dev) ((dev)->num_chn * 8) static int netvsc_get_sset_count(struct net_device *dev, int string_set) { @@ -1542,12 +1505,16 @@ static void netvsc_get_ethtool_stats(struct net_device *dev, struct net_device_context *ndc = netdev_priv(dev); struct netvsc_device *nvdev = rtnl_dereference(ndc->nvdev); const void *nds = &ndc->eth_stats; - const struct netvsc_stats *qstats; + const struct netvsc_stats_tx *tx_stats; + const struct netvsc_stats_rx *rx_stats; struct netvsc_vf_pcpu_stats sum; struct netvsc_ethtool_pcpu_stats *pcpu_sum; unsigned int start; u64 packets, bytes; u64 xdp_drop; + u64 xdp_redirect; + u64 xdp_tx; + u64 xdp_xmit; int i, j, cpu; if (!nvdev) @@ -1561,26 +1528,32 @@ static void netvsc_get_ethtool_stats(struct net_device *dev, data[i++] = *(u64 *)((void *)&sum + vf_stats[j].offset); for (j = 0; j < nvdev->num_chn; j++) { - qstats = &nvdev->chan_table[j].tx_stats; + tx_stats = &nvdev->chan_table[j].tx_stats; do { - start = u64_stats_fetch_begin_irq(&qstats->syncp); - packets = qstats->packets; - bytes = qstats->bytes; - } while (u64_stats_fetch_retry_irq(&qstats->syncp, start)); + start = u64_stats_fetch_begin_irq(&tx_stats->syncp); + packets = tx_stats->packets; + bytes = tx_stats->bytes; + xdp_xmit = tx_stats->xdp_xmit; + } while (u64_stats_fetch_retry_irq(&tx_stats->syncp, start)); data[i++] = packets; data[i++] = bytes; + data[i++] = xdp_xmit; - qstats = &nvdev->chan_table[j].rx_stats; + rx_stats = &nvdev->chan_table[j].rx_stats; do { - start = u64_stats_fetch_begin_irq(&qstats->syncp); - packets = qstats->packets; - bytes = qstats->bytes; - xdp_drop = qstats->xdp_drop; - } while (u64_stats_fetch_retry_irq(&qstats->syncp, start)); + start = u64_stats_fetch_begin_irq(&rx_stats->syncp); + packets = rx_stats->packets; + bytes = rx_stats->bytes; + xdp_drop = rx_stats->xdp_drop; + xdp_redirect = rx_stats->xdp_redirect; + xdp_tx = rx_stats->xdp_tx; + } while (u64_stats_fetch_retry_irq(&rx_stats->syncp, start)); data[i++] = packets; data[i++] = bytes; data[i++] = xdp_drop; + data[i++] = xdp_redirect; + data[i++] = xdp_tx; } pcpu_sum = kvmalloc_array(num_possible_cpus(), @@ -1621,9 +1594,12 @@ static void netvsc_get_strings(struct net_device *dev, u32 stringset, u8 *data) for (i = 0; i < nvdev->num_chn; i++) { ethtool_sprintf(&p, "tx_queue_%u_packets", i); ethtool_sprintf(&p, "tx_queue_%u_bytes", i); + ethtool_sprintf(&p, "tx_queue_%u_xdp_xmit", i); ethtool_sprintf(&p, "rx_queue_%u_packets", i); ethtool_sprintf(&p, "rx_queue_%u_bytes", i); ethtool_sprintf(&p, "rx_queue_%u_xdp_drop", i); + ethtool_sprintf(&p, "rx_queue_%u_xdp_redirect", i); + ethtool_sprintf(&p, "rx_queue_%u_xdp_tx", i); } for_each_present_cpu(cpu) { @@ -2052,6 +2028,7 @@ static const struct net_device_ops device_ops = { .ndo_select_queue = netvsc_select_queue, .ndo_get_stats64 = netvsc_get_stats64, .ndo_bpf = netvsc_bpf, + .ndo_xdp_xmit = netvsc_ndoxdp_xmit, }; /* @@ -2204,7 +2181,7 @@ static rx_handler_result_t netvsc_vf_handle_frame(struct sk_buff **pskb) } static int netvsc_vf_join(struct net_device *vf_netdev, - struct net_device *ndev) + struct net_device *ndev, int context) { struct net_device_context *ndev_ctx = netdev_priv(ndev); int ret; @@ -2227,10 +2204,11 @@ static int netvsc_vf_join(struct net_device *vf_netdev, goto upper_link_failed; } - /* set slave flag before open to prevent IPv6 addrconf */ - vf_netdev->flags |= IFF_SLAVE; - - schedule_delayed_work(&ndev_ctx->vf_takeover, VF_TAKEOVER_INT); + /* If this registration is called from probe context vf_takeover + * is taken care of later in probe itself. + */ + if (context == VF_REG_IN_NOTIFIER) + schedule_delayed_work(&ndev_ctx->vf_takeover, VF_TAKEOVER_INT); call_netdevice_notifiers(NETDEV_JOIN, vf_netdev); @@ -2336,16 +2314,18 @@ static struct net_device *get_netvsc_byslot(const struct net_device *vf_netdev) } - /* Fallback path to check synthetic vf with - * help of mac addr + /* Fallback path to check synthetic vf with help of mac addr. + * Because this function can be called before vf_netdev is + * initialized (NETDEV_POST_INIT) when its perm_addr has not been copied + * from dev_addr, also try to match to its dev_addr. + * Note: On Hyper-V and Azure, it's not possible to set a MAC address + * on a VF that matches to the MAC of a unrelated NETVSC device. */ list_for_each_entry(ndev_ctx, &netvsc_dev_list, list) { ndev = hv_get_drvdata(ndev_ctx->device_ctx); - if (ether_addr_equal(vf_netdev->perm_addr, ndev->perm_addr)) { - netdev_notice(vf_netdev, - "falling back to mac addr based matching\n"); + if (ether_addr_equal(vf_netdev->perm_addr, ndev->perm_addr) || + ether_addr_equal(vf_netdev->dev_addr, ndev->perm_addr)) return ndev; - } } netdev_notice(vf_netdev, @@ -2353,7 +2333,20 @@ static struct net_device *get_netvsc_byslot(const struct net_device *vf_netdev) return NULL; } -static int netvsc_register_vf(struct net_device *vf_netdev) +static int netvsc_prepare_bonding(struct net_device *vf_netdev) +{ + struct net_device *ndev; + + ndev = get_netvsc_byslot(vf_netdev); + if (!ndev) + return NOTIFY_DONE; + + /* set slave flag before open to prevent IPv6 addrconf */ + vf_netdev->flags |= IFF_SLAVE; + return NOTIFY_DONE; +} + +static int netvsc_register_vf(struct net_device *vf_netdev, int context) { struct net_device_context *net_device_ctx; struct netvsc_device *netvsc_dev; @@ -2393,7 +2386,7 @@ static int netvsc_register_vf(struct net_device *vf_netdev) netdev_info(ndev, "VF registering: %s\n", vf_netdev->name); - if (netvsc_vf_join(vf_netdev, ndev) != 0) + if (netvsc_vf_join(vf_netdev, ndev, context) != 0) return NOTIFY_DONE; dev_hold(vf_netdev); @@ -2491,10 +2484,31 @@ static int netvsc_unregister_vf(struct net_device *vf_netdev) return NOTIFY_OK; } +static int check_dev_is_matching_vf(struct net_device *event_ndev) +{ + /* Skip NetVSC interfaces */ + if (event_ndev->netdev_ops == &device_ops) + return -ENODEV; + + /* Avoid non-Ethernet type devices */ + if (event_ndev->type != ARPHRD_ETHER) + return -ENODEV; + + /* Avoid Vlan dev with same MAC registering as VF */ + if (is_vlan_dev(event_ndev)) + return -ENODEV; + + /* Avoid Bonding master dev with same MAC registering as VF */ + if (netif_is_bond_master(event_ndev)) + return -ENODEV; + + return 0; +} + static int netvsc_probe(struct hv_device *dev, const struct hv_vmbus_device_id *dev_id) { - struct net_device *net = NULL; + struct net_device *net = NULL, *vf_netdev; struct net_device_context *net_device_ctx; struct netvsc_device_info *device_info = NULL; struct netvsc_device *nvdev; @@ -2533,6 +2547,7 @@ static int netvsc_probe(struct hv_device *dev, net->netdev_ops = &device_ops; net->ethtool_ops = ðtool_ops; SET_NETDEV_DEV(net, &dev->device); + dma_set_min_align_mask(&dev->device, HV_HYP_PAGE_SIZE - 1); /* We always need headroom for rndis header */ net->needed_headroom = RNDIS_AND_PPI_SIZE; @@ -2551,15 +2566,6 @@ static int netvsc_probe(struct hv_device *dev, goto devinfo_failed; } - nvdev = rndis_filter_device_add(dev, device_info); - if (IS_ERR(nvdev)) { - ret = PTR_ERR(nvdev); - netdev_err(net, "unable to add netvsc device (ret %d)\n", ret); - goto rndis_failed; - } - - memcpy(net->dev_addr, device_info->mac_adr, ETH_ALEN); - /* We must get rtnl lock before scheduling nvdev->subchan_work, * otherwise netvsc_subchan_work() can get rtnl lock first and wait * all subchannels to show up, but that may not happen because @@ -2567,9 +2573,23 @@ static int netvsc_probe(struct hv_device *dev, * -> ... -> device_add() -> ... -> __device_attach() can't get * the device lock, so all the subchannels can't be processed -- * finally netvsc_subchan_work() hangs forever. + * + * The rtnl lock also needs to be held before rndis_filter_device_add() + * which advertises nvsp_2_vsc_capability / sriov bit, and triggers + * VF NIC offering and registering. If VF NIC finished register_netdev() + * earlier it may cause name based config failure. */ rtnl_lock(); + nvdev = rndis_filter_device_add(dev, device_info); + if (IS_ERR(nvdev)) { + ret = PTR_ERR(nvdev); + netdev_err(net, "unable to add netvsc device (ret %d)\n", ret); + goto rndis_failed; + } + + memcpy(net->dev_addr, device_info->mac_adr, ETH_ALEN); + if (nvdev->num_chn > 1) schedule_work(&nvdev->subchan_work); @@ -2597,15 +2617,39 @@ static int netvsc_probe(struct hv_device *dev, } list_add(&net_device_ctx->list, &netvsc_dev_list); + + /* When the hv_netvsc driver is unloaded and reloaded, the + * NET_DEVICE_REGISTER for the vf device is replayed before probe + * is complete. This is because register_netdevice_notifier() gets + * registered before vmbus_driver_register() so that callback func + * is set before probe and we don't miss events like NETDEV_POST_INIT + * So, in this section we try to register the matching vf device that + * is present as a netdevice, knowing that its register call is not + * processed in the netvsc_netdev_notifier(as probing is progress and + * get_netvsc_byslot fails). + */ + for_each_netdev(dev_net(net), vf_netdev) { + ret = check_dev_is_matching_vf(vf_netdev); + if (ret != 0) + continue; + + if (net != get_netvsc_byslot(vf_netdev)) + continue; + + netvsc_prepare_bonding(vf_netdev); + netvsc_register_vf(vf_netdev, VF_REG_IN_PROBE); + __netvsc_vf_setup(net, vf_netdev); + break; + } rtnl_unlock(); netvsc_devinfo_put(device_info); return 0; register_failed: - rtnl_unlock(); rndis_filter_device_remove(dev, nvdev); rndis_failed: + rtnl_unlock(); netvsc_devinfo_put(device_info); devinfo_failed: free_percpu(net_device_ctx->vf_stats); @@ -2753,27 +2797,17 @@ static int netvsc_netdev_event(struct notifier_block *this, unsigned long event, void *ptr) { struct net_device *event_dev = netdev_notifier_info_to_dev(ptr); + int ret = 0; - /* Skip our own events */ - if (event_dev->netdev_ops == &device_ops) - return NOTIFY_DONE; - - /* Avoid non-Ethernet type devices */ - if (event_dev->type != ARPHRD_ETHER) - return NOTIFY_DONE; - - /* Avoid Vlan dev with same MAC registering as VF */ - if (is_vlan_dev(event_dev)) - return NOTIFY_DONE; - - /* Avoid Bonding master dev with same MAC registering as VF */ - if ((event_dev->priv_flags & IFF_BONDING) && - (event_dev->flags & IFF_MASTER)) + ret = check_dev_is_matching_vf(event_dev); + if (ret != 0) return NOTIFY_DONE; switch (event) { + case NETDEV_POST_INIT: + return netvsc_prepare_bonding(event_dev); case NETDEV_REGISTER: - return netvsc_register_vf(event_dev); + return netvsc_register_vf(event_dev, VF_REG_IN_NOTIFIER); case NETDEV_UNREGISTER: return netvsc_unregister_vf(event_dev); case NETDEV_UP: @@ -2807,12 +2841,17 @@ static int __init netvsc_drv_init(void) } netvsc_ring_bytes = ring_size * PAGE_SIZE; + register_netdevice_notifier(&netvsc_netdev_notifier); + ret = vmbus_driver_register(&netvsc_drv); if (ret) - return ret; + goto err_vmbus_reg; - register_netdevice_notifier(&netvsc_netdev_notifier); return 0; + +err_vmbus_reg: + unregister_netdevice_notifier(&netvsc_netdev_notifier); + return ret; } MODULE_LICENSE("GPL"); diff --git a/drivers/net/hyperv/rndis_filter.c b/drivers/net/hyperv/rndis_filter.c index f6c9c2a670f96..448fcc325ed75 100644 --- a/drivers/net/hyperv/rndis_filter.c +++ b/drivers/net/hyperv/rndis_filter.c @@ -361,6 +361,8 @@ static void rndis_filter_receive_response(struct net_device *ndev, } } + netvsc_dma_unmap(((struct net_device_context *) + netdev_priv(ndev))->device_ctx, &request->pkt); complete(&request->wait_event); } else { netdev_err(ndev, diff --git a/drivers/net/ieee802154/adf7242.c b/drivers/net/ieee802154/adf7242.c index 07adbeec19787..14cf8b0dfad90 100644 --- a/drivers/net/ieee802154/adf7242.c +++ b/drivers/net/ieee802154/adf7242.c @@ -1162,9 +1162,10 @@ static int adf7242_stats_show(struct seq_file *file, void *offset) static void adf7242_debugfs_init(struct adf7242_local *lp) { - char debugfs_dir_name[DNAME_INLINE_LEN + 1] = "adf7242-"; + char debugfs_dir_name[DNAME_INLINE_LEN + 1]; - strncat(debugfs_dir_name, dev_name(&lp->spi->dev), DNAME_INLINE_LEN); + snprintf(debugfs_dir_name, sizeof(debugfs_dir_name), + "adf7242-%s", dev_name(&lp->spi->dev)); lp->debugfs_root = debugfs_create_dir(debugfs_dir_name, NULL); diff --git a/drivers/net/ieee802154/ca8210.c b/drivers/net/ieee802154/ca8210.c index 5834d3ed6dcf5..dc786c3bbccf8 100644 --- a/drivers/net/ieee802154/ca8210.c +++ b/drivers/net/ieee802154/ca8210.c @@ -2783,7 +2783,6 @@ static int ca8210_register_ext_clock(struct spi_device *spi) struct device_node *np = spi->dev.of_node; struct ca8210_priv *priv = spi_get_drvdata(spi); struct ca8210_platform_data *pdata = spi->dev.platform_data; - int ret = 0; if (!np) return -EFAULT; @@ -2800,18 +2799,8 @@ static int ca8210_register_ext_clock(struct spi_device *spi) dev_crit(&spi->dev, "Failed to register external clk\n"); return PTR_ERR(priv->clk); } - ret = of_clk_add_provider(np, of_clk_src_simple_get, priv->clk); - if (ret) { - clk_unregister(priv->clk); - dev_crit( - &spi->dev, - "Failed to register external clock as clock provider\n" - ); - } else { - dev_info(&spi->dev, "External clock set as clock provider\n"); - } - return ret; + return of_clk_add_provider(np, of_clk_src_simple_get, priv->clk); } /** @@ -2823,8 +2812,8 @@ static void ca8210_unregister_ext_clock(struct spi_device *spi) { struct ca8210_priv *priv = spi_get_drvdata(spi); - if (!priv->clk) - return + if (IS_ERR_OR_NULL(priv->clk)) + return; of_clk_del_provider(spi->dev.of_node); clk_unregister(priv->clk); diff --git a/drivers/net/ipvlan/ipvlan_core.c b/drivers/net/ipvlan/ipvlan_core.c index e10cb98b0f4f5..5aa9217240d53 100644 --- a/drivers/net/ipvlan/ipvlan_core.c +++ b/drivers/net/ipvlan/ipvlan_core.c @@ -412,7 +412,7 @@ struct ipvl_addr *ipvlan_addr_lookup(struct ipvl_port *port, void *lyr3h, return addr; } -static int ipvlan_process_v4_outbound(struct sk_buff *skb) +static noinline_for_stack int ipvlan_process_v4_outbound(struct sk_buff *skb) { const struct iphdr *ip4h = ip_hdr(skb); struct net_device *dev = skb->dev; @@ -442,25 +442,23 @@ static int ipvlan_process_v4_outbound(struct sk_buff *skb) err = ip_local_out(net, skb->sk, skb); if (unlikely(net_xmit_eval(err))) - dev->stats.tx_errors++; + DEV_STATS_INC(dev, tx_errors); else ret = NET_XMIT_SUCCESS; goto out; err: - dev->stats.tx_errors++; + DEV_STATS_INC(dev, tx_errors); kfree_skb(skb); out: return ret; } #if IS_ENABLED(CONFIG_IPV6) -static int ipvlan_process_v6_outbound(struct sk_buff *skb) + +static noinline_for_stack int +ipvlan_route_v6_outbound(struct net_device *dev, struct sk_buff *skb) { const struct ipv6hdr *ip6h = ipv6_hdr(skb); - struct net_device *dev = skb->dev; - struct net *net = dev_net(dev); - struct dst_entry *dst; - int err, ret = NET_XMIT_DROP; struct flowi6 fl6 = { .flowi6_oif = dev->ifindex, .daddr = ip6h->daddr, @@ -470,27 +468,38 @@ static int ipvlan_process_v6_outbound(struct sk_buff *skb) .flowi6_mark = skb->mark, .flowi6_proto = ip6h->nexthdr, }; + struct dst_entry *dst; + int err; - dst = ip6_route_output(net, NULL, &fl6); - if (dst->error) { - ret = dst->error; + dst = ip6_route_output(dev_net(dev), NULL, &fl6); + err = dst->error; + if (err) { dst_release(dst); - goto err; + return err; } skb_dst_set(skb, dst); + return 0; +} + +static int ipvlan_process_v6_outbound(struct sk_buff *skb) +{ + struct net_device *dev = skb->dev; + int err, ret = NET_XMIT_DROP; + + err = ipvlan_route_v6_outbound(dev, skb); + if (unlikely(err)) { + DEV_STATS_INC(dev, tx_errors); + kfree_skb(skb); + return err; + } memset(IP6CB(skb), 0, sizeof(*IP6CB(skb))); - err = ip6_local_out(net, skb->sk, skb); + err = ip6_local_out(dev_net(dev), skb->sk, skb); if (unlikely(net_xmit_eval(err))) - dev->stats.tx_errors++; + DEV_STATS_INC(dev, tx_errors); else ret = NET_XMIT_SUCCESS; - goto out; -err: - dev->stats.tx_errors++; - kfree_skb(skb); -out: return ret; } #else diff --git a/drivers/net/ipvlan/ipvlan_main.c b/drivers/net/ipvlan/ipvlan_main.c index c199f0b465cd0..8660d452f642b 100644 --- a/drivers/net/ipvlan/ipvlan_main.c +++ b/drivers/net/ipvlan/ipvlan_main.c @@ -324,6 +324,7 @@ static void ipvlan_get_stats64(struct net_device *dev, s->rx_dropped = rx_errs; s->tx_dropped = tx_drps; } + s->tx_errors = DEV_STATS_READ(dev, tx_errors); } static int ipvlan_vlan_rx_add_vid(struct net_device *dev, __be16 proto, u16 vid) diff --git a/drivers/net/macsec.c b/drivers/net/macsec.c index 98ce24422424c..ab134fe1fda62 100644 --- a/drivers/net/macsec.c +++ b/drivers/net/macsec.c @@ -1343,8 +1343,7 @@ static struct crypto_aead *macsec_alloc_tfm(char *key, int key_len, int icv_len) struct crypto_aead *tfm; int ret; - /* Pick a sync gcm(aes) cipher to ensure order is preserved. */ - tfm = crypto_alloc_aead("gcm(aes)", 0, CRYPTO_ALG_ASYNC); + tfm = crypto_alloc_aead("gcm(aes)", 0, 0); if (IS_ERR(tfm)) return tfm; @@ -2411,6 +2410,7 @@ static int macsec_upd_txsa(struct sk_buff *skb, struct genl_info *info) ctx.sa.assoc_num = assoc_num; ctx.sa.tx_sa = tx_sa; + ctx.sa.update_pn = !!prev_pn.full64; ctx.secy = secy; ret = macsec_offload(ops->mdo_upd_txsa, &ctx); @@ -2504,6 +2504,7 @@ static int macsec_upd_rxsa(struct sk_buff *skb, struct genl_info *info) ctx.sa.assoc_num = assoc_num; ctx.sa.rx_sa = rx_sa; + ctx.sa.update_pn = !!prev_pn.full64; ctx.secy = secy; ret = macsec_offload(ops->mdo_upd_rxsa, &ctx); @@ -3680,9 +3681,9 @@ static void macsec_get_stats64(struct net_device *dev, dev_fetch_sw_netstats(s, dev->tstats); - s->rx_dropped = atomic_long_read(&dev->stats.__rx_dropped); - s->tx_dropped = atomic_long_read(&dev->stats.__tx_dropped); - s->rx_errors = atomic_long_read(&dev->stats.__rx_errors); + s->rx_dropped = DEV_STATS_READ(dev, rx_dropped); + s->tx_dropped = DEV_STATS_READ(dev, tx_dropped); + s->rx_errors = DEV_STATS_READ(dev, rx_errors); } static int macsec_get_iflink(const struct net_device *dev) diff --git a/drivers/net/macvlan.c b/drivers/net/macvlan.c index 3dd1528dde028..6f0b6c924d724 100644 --- a/drivers/net/macvlan.c +++ b/drivers/net/macvlan.c @@ -770,7 +770,7 @@ static void macvlan_change_rx_flags(struct net_device *dev, int change) if (dev->flags & IFF_UP) { if (change & IFF_ALLMULTI) dev_set_allmulti(lowerdev, dev->flags & IFF_ALLMULTI ? 1 : -1); - if (change & IFF_PROMISC) + if (!macvlan_passthru(vlan->port) && change & IFF_PROMISC) dev_set_promiscuity(lowerdev, dev->flags & IFF_PROMISC ? 1 : -1); diff --git a/drivers/net/phy/mscc/mscc_macsec.c b/drivers/net/phy/mscc/mscc_macsec.c index c00eef457b850..bec270785c594 100644 --- a/drivers/net/phy/mscc/mscc_macsec.c +++ b/drivers/net/phy/mscc/mscc_macsec.c @@ -880,6 +880,9 @@ static int vsc8584_macsec_upd_rxsa(struct macsec_context *ctx) { struct macsec_flow *flow; + if (ctx->sa.update_pn) + return -EINVAL; + flow = vsc8584_macsec_find_flow(ctx, MACSEC_INGR); if (IS_ERR(flow)) return PTR_ERR(flow); @@ -929,6 +932,9 @@ static int vsc8584_macsec_upd_txsa(struct macsec_context *ctx) { struct macsec_flow *flow; + if (ctx->sa.update_pn) + return -EINVAL; + flow = vsc8584_macsec_find_flow(ctx, MACSEC_EGR); if (IS_ERR(flow)) return PTR_ERR(flow); diff --git a/drivers/net/phy/phylink.c b/drivers/net/phy/phylink.c index 422dc92ecac94..514e7f9e0339c 100644 --- a/drivers/net/phy/phylink.c +++ b/drivers/net/phy/phylink.c @@ -853,6 +853,7 @@ struct phylink *phylink_create(struct phylink_config *config, pl->config = config; if (config->type == PHYLINK_NETDEV) { pl->netdev = to_net_dev(config->dev); + netif_carrier_off(pl->netdev); } else if (config->type == PHYLINK_DEV) { pl->dev = config->dev; } else { diff --git a/drivers/net/ppp/ppp_synctty.c b/drivers/net/ppp/ppp_synctty.c index af3e048695b66..692c558beed54 100644 --- a/drivers/net/ppp/ppp_synctty.c +++ b/drivers/net/ppp/ppp_synctty.c @@ -464,6 +464,10 @@ ppp_sync_ioctl(struct ppp_channel *chan, unsigned int cmd, unsigned long arg) case PPPIOCSMRU: if (get_user(val, (int __user *) argp)) break; + if (val > U16_MAX) { + err = -EINVAL; + break; + } if (val < PPP_MRU) val = PPP_MRU; ap->mru = val; @@ -699,7 +703,7 @@ ppp_sync_input(struct syncppp *ap, const unsigned char *buf, /* strip address/control field if present */ p = skb->data; - if (p[0] == PPP_ALLSTATIONS && p[1] == PPP_UI) { + if (skb->len >= 2 && p[0] == PPP_ALLSTATIONS && p[1] == PPP_UI) { /* chop off address/control */ if (skb->len < 3) goto err; diff --git a/drivers/net/team/team.c b/drivers/net/team/team.c index f99df92d211e2..44275094906c0 100644 --- a/drivers/net/team/team.c +++ b/drivers/net/team/team.c @@ -2122,7 +2122,12 @@ static const struct ethtool_ops team_ethtool_ops = { static void team_setup_by_port(struct net_device *dev, struct net_device *port_dev) { - dev->header_ops = port_dev->header_ops; + struct team *team = netdev_priv(dev); + + if (port_dev->type == ARPHRD_ETHER) + dev->header_ops = team->header_ops_cache; + else + dev->header_ops = port_dev->header_ops; dev->type = port_dev->type; dev->hard_header_len = port_dev->hard_header_len; dev->needed_headroom = port_dev->needed_headroom; @@ -2169,8 +2174,11 @@ static int team_dev_type_check_change(struct net_device *dev, static void team_setup(struct net_device *dev) { + struct team *team = netdev_priv(dev); + ether_setup(dev); dev->max_mtu = ETH_MAX_MTU; + team->header_ops_cache = dev->header_ops; dev->netdev_ops = &team_netdev_ops; dev->ethtool_ops = &team_ethtool_ops; diff --git a/drivers/net/thunderbolt.c b/drivers/net/thunderbolt.c index 3395dcb0b262b..470852f7a64d1 100644 --- a/drivers/net/thunderbolt.c +++ b/drivers/net/thunderbolt.c @@ -993,12 +993,11 @@ static bool tbnet_xmit_csum_and_map(struct tbnet *net, struct sk_buff *skb, *tucso = ~csum_tcpudp_magic(ip_hdr(skb)->saddr, ip_hdr(skb)->daddr, 0, ip_hdr(skb)->protocol, 0); - } else if (skb_is_gso_v6(skb)) { + } else if (skb_is_gso(skb) && skb_is_gso_v6(skb)) { tucso = dest + ((void *)&(tcp_hdr(skb)->check) - data); *tucso = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr, 0, IPPROTO_TCP, 0); - return false; } else if (protocol == htons(ETH_P_IPV6)) { tucso = dest + skb_checksum_start_offset(skb) + skb->csum_offset; *tucso = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, diff --git a/drivers/net/tun.c b/drivers/net/tun.c index e685c84ebe3a3..2d75e7f38a893 100644 --- a/drivers/net/tun.c +++ b/drivers/net/tun.c @@ -1619,7 +1619,7 @@ static int tun_xdp_act(struct tun_struct *tun, struct bpf_prog *xdp_prog, case XDP_PASS: break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(tun->dev, xdp_prog, act); fallthrough; case XDP_ABORTED: trace_xdp_exception(tun->dev, xdp_prog, act); @@ -3010,10 +3010,11 @@ static long __tun_chr_ioctl(struct file *file, unsigned int cmd, struct net *net = sock_net(&tfile->sk); struct tun_struct *tun; void __user* argp = (void __user*)arg; - unsigned int ifindex, carrier; + unsigned int carrier; struct ifreq ifr; kuid_t owner; kgid_t group; + int ifindex; int sndbuf; int vnet_hdr_sz; int le; @@ -3069,7 +3070,9 @@ static long __tun_chr_ioctl(struct file *file, unsigned int cmd, ret = -EFAULT; if (copy_from_user(&ifindex, argp, sizeof(ifindex))) goto unlock; - + ret = -EINVAL; + if (ifindex < 0) + goto unlock; ret = 0; tfile->ifindex = ifindex; goto unlock; diff --git a/drivers/net/usb/ax88179_178a.c b/drivers/net/usb/ax88179_178a.c index 0a2c3860179e7..c419baf478134 100644 --- a/drivers/net/usb/ax88179_178a.c +++ b/drivers/net/usb/ax88179_178a.c @@ -1700,11 +1700,11 @@ static int ax88179_reset(struct usbnet *dev) *tmp16 = AX_PHYPWR_RSTCTL_IPRL; ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_PHYPWR_RSTCTL, 2, 2, tmp16); - msleep(200); + msleep(500); *tmp = AX_CLK_SELECT_ACS | AX_CLK_SELECT_BCS; ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_CLK_SELECT, 1, 1, tmp); - msleep(100); + msleep(200); /* Ethernet PHY Auto Detach*/ ax88179_auto_detach(dev, 0); diff --git a/drivers/net/usb/dm9601.c b/drivers/net/usb/dm9601.c index 907f98b1eefee..56f1c334cdd29 100644 --- a/drivers/net/usb/dm9601.c +++ b/drivers/net/usb/dm9601.c @@ -221,13 +221,18 @@ static int dm9601_mdio_read(struct net_device *netdev, int phy_id, int loc) struct usbnet *dev = netdev_priv(netdev); __le16 res; + int err; if (phy_id) { netdev_dbg(dev->net, "Only internal phy supported\n"); return 0; } - dm_read_shared_word(dev, 1, loc, &res); + err = dm_read_shared_word(dev, 1, loc, &res); + if (err < 0) { + netdev_err(dev->net, "MDIO read error: %d\n", err); + return err; + } netdev_dbg(dev->net, "dm9601_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n", diff --git a/drivers/net/usb/lan78xx.c b/drivers/net/usb/lan78xx.c index 5700c9d20a3e2..64f3b403116f7 100644 --- a/drivers/net/usb/lan78xx.c +++ b/drivers/net/usb/lan78xx.c @@ -3912,13 +3912,13 @@ static void lan78xx_disconnect(struct usb_interface *intf) if (!dev) return; - set_bit(EVENT_DEV_DISCONNECT, &dev->flags); - udev = interface_to_usbdev(intf); net = dev->net; unregister_netdev(net); + timer_shutdown_sync(&dev->stat_monitor); + set_bit(EVENT_DEV_DISCONNECT, &dev->flags); cancel_delayed_work_sync(&dev->wq); phydev = net->phydev; @@ -3933,9 +3933,6 @@ static void lan78xx_disconnect(struct usb_interface *intf) usb_scuttle_anchored_urbs(&dev->deferred); - if (timer_pending(&dev->stat_monitor)) - del_timer_sync(&dev->stat_monitor); - lan78xx_unbind(dev, intf); usb_kill_urb(dev->urb_intr); diff --git a/drivers/net/usb/qmi_wwan.c b/drivers/net/usb/qmi_wwan.c index 9dde1f8358e3f..5c516bf4d3a5f 100644 --- a/drivers/net/usb/qmi_wwan.c +++ b/drivers/net/usb/qmi_wwan.c @@ -1412,6 +1412,7 @@ static const struct usb_device_id products[] = { {QMI_QUIRK_SET_DTR(0x2c7c, 0x0191, 4)}, /* Quectel EG91 */ {QMI_QUIRK_SET_DTR(0x2c7c, 0x0195, 4)}, /* Quectel EG95 */ {QMI_FIXED_INTF(0x2c7c, 0x0296, 4)}, /* Quectel BG96 */ + {QMI_QUIRK_SET_DTR(0x2c7c, 0x030e, 4)}, /* Quectel EM05GV2 */ {QMI_QUIRK_SET_DTR(0x2cb7, 0x0104, 4)}, /* Fibocom NL678 series */ {QMI_FIXED_INTF(0x0489, 0xe0b4, 0)}, /* Foxconn T77W968 LTE */ {QMI_FIXED_INTF(0x0489, 0xe0b5, 0)}, /* Foxconn T77W968 LTE with eSIM support*/ diff --git a/drivers/net/usb/r8152.c b/drivers/net/usb/r8152.c index 1049d8a61829c..bcf7492bcf540 100644 --- a/drivers/net/usb/r8152.c +++ b/drivers/net/usb/r8152.c @@ -763,7 +763,7 @@ enum rtl_register_content { /* rtl8152 flags */ enum rtl8152_flags { - RTL8152_UNPLUG = 0, + RTL8152_INACCESSIBLE = 0, RTL8152_SET_RX_MODE, WORK_ENABLE, RTL8152_LINK_CHG, @@ -1208,7 +1208,7 @@ int get_registers(struct r8152 *tp, u16 value, u16 index, u16 size, void *data) ret = usb_control_msg(tp->udev, tp->pipe_ctrl_in, RTL8152_REQ_GET_REGS, RTL8152_REQT_READ, - value, index, tmp, size, 500); + value, index, tmp, size, USB_CTRL_GET_TIMEOUT); if (ret < 0) memset(data, 0xff, size); else @@ -1231,7 +1231,7 @@ int set_registers(struct r8152 *tp, u16 value, u16 index, u16 size, void *data) ret = usb_control_msg(tp->udev, tp->pipe_ctrl_out, RTL8152_REQ_SET_REGS, RTL8152_REQT_WRITE, - value, index, tmp, size, 500); + value, index, tmp, size, USB_CTRL_SET_TIMEOUT); kfree(tmp); @@ -1241,7 +1241,7 @@ int set_registers(struct r8152 *tp, u16 value, u16 index, u16 size, void *data) static void rtl_set_unplug(struct r8152 *tp) { if (tp->udev->state == USB_STATE_NOTATTACHED) { - set_bit(RTL8152_UNPLUG, &tp->flags); + set_bit(RTL8152_INACCESSIBLE, &tp->flags); smp_mb__after_atomic(); } } @@ -1252,7 +1252,7 @@ static int generic_ocp_read(struct r8152 *tp, u16 index, u16 size, u16 limit = 64; int ret = 0; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return -ENODEV; /* both size and indix must be 4 bytes align */ @@ -1296,7 +1296,7 @@ static int generic_ocp_write(struct r8152 *tp, u16 index, u16 byteen, u16 byteen_start, byteen_end, byen; u16 limit = 512; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return -ENODEV; /* both size and indix must be 4 bytes align */ @@ -1526,7 +1526,7 @@ static int read_mii_word(struct net_device *netdev, int phy_id, int reg) struct r8152 *tp = netdev_priv(netdev); int ret; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return -ENODEV; if (phy_id != R8152_PHY_ID) @@ -1542,7 +1542,7 @@ void write_mii_word(struct net_device *netdev, int phy_id, int reg, int val) { struct r8152 *tp = netdev_priv(netdev); - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; if (phy_id != R8152_PHY_ID) @@ -1747,7 +1747,7 @@ static void read_bulk_callback(struct urb *urb) if (!tp) return; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; if (!test_bit(WORK_ENABLE, &tp->flags)) @@ -1839,7 +1839,7 @@ static void write_bulk_callback(struct urb *urb) if (!test_bit(WORK_ENABLE, &tp->flags)) return; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; if (!skb_queue_empty(&tp->tx_queue)) @@ -1860,7 +1860,7 @@ static void intr_callback(struct urb *urb) if (!test_bit(WORK_ENABLE, &tp->flags)) return; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; switch (status) { @@ -2604,7 +2604,7 @@ static void bottom_half(struct tasklet_struct *t) { struct r8152 *tp = from_tasklet(tp, t, tx_tl); - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; if (!test_bit(WORK_ENABLE, &tp->flags)) @@ -2625,6 +2625,9 @@ static int r8152_poll(struct napi_struct *napi, int budget) struct r8152 *tp = container_of(napi, struct r8152, napi); int work_done; + if (!budget) + return 0; + work_done = rx_bottom(tp, budget); if (work_done < budget) { @@ -2644,7 +2647,7 @@ int r8152_submit_rx(struct r8152 *tp, struct rx_agg *agg, gfp_t mem_flags) int ret; /* The rx would be stopped, so skip submitting */ - if (test_bit(RTL8152_UNPLUG, &tp->flags) || + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags) || !test_bit(WORK_ENABLE, &tp->flags) || !netif_carrier_ok(tp->netdev)) return 0; @@ -2847,6 +2850,8 @@ static void rtl8152_nic_reset(struct r8152 *tp) ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, CR_RST); for (i = 0; i < 1000; i++) { + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) + break; if (!(ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CR) & CR_RST)) break; usleep_range(100, 400); @@ -3040,7 +3045,7 @@ static int rtl_enable(struct r8152 *tp) static int rtl8152_enable(struct r8152 *tp) { - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return -ENODEV; set_tx_qlen(tp); @@ -3127,7 +3132,7 @@ static int rtl8153_enable(struct r8152 *tp) { u32 ocp_data; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return -ENODEV; set_tx_qlen(tp); @@ -3159,7 +3164,7 @@ static void rtl_disable(struct r8152 *tp) u32 ocp_data; int i; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) { + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) { rtl_drop_queued_tx(tp); return; } @@ -3176,6 +3181,8 @@ static void rtl_disable(struct r8152 *tp) rxdy_gated_en(tp, true); for (i = 0; i < 1000; i++) { + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) + break; ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL); if ((ocp_data & FIFO_EMPTY) == FIFO_EMPTY) break; @@ -3183,6 +3190,8 @@ static void rtl_disable(struct r8152 *tp) } for (i = 0; i < 1000; i++) { + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) + break; if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0) & TCR0_TX_EMPTY) break; usleep_range(1000, 2000); @@ -3613,7 +3622,7 @@ static u16 r8153_phy_status(struct r8152 *tp, u16 desired) } msleep(20); - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) break; } @@ -3645,6 +3654,8 @@ static void r8153b_ups_en(struct r8152 *tp, bool enable) int i; for (i = 0; i < 500; i++) { + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) + return; if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_BOOT_CTRL) & AUTOLOAD_DONE) break; @@ -3685,6 +3696,8 @@ static void r8153c_ups_en(struct r8152 *tp, bool enable) int i; for (i = 0; i < 500; i++) { + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) + return; if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_BOOT_CTRL) & AUTOLOAD_DONE) break; @@ -4048,6 +4061,9 @@ static int rtl_phy_patch_request(struct r8152 *tp, bool request, bool wait) for (i = 0; wait && i < 5000; i++) { u32 ocp_data; + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) + return -ENODEV; + usleep_range(1000, 2000); ocp_data = ocp_reg_read(tp, OCP_PHY_PATCH_STAT); if ((ocp_data & PATCH_READY) ^ check) @@ -5364,6 +5380,8 @@ static void wait_oob_link_list_ready(struct r8152 *tp) int i; for (i = 0; i < 1000; i++) { + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) + break; ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL); if (ocp_data & LINK_LIST_READY) break; @@ -5378,6 +5396,8 @@ static void r8156b_wait_loading_flash(struct r8152 *tp) int i; for (i = 0; i < 100; i++) { + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) + break; if (ocp_read_word(tp, MCU_TYPE_USB, USB_GPHY_CTRL) & GPHY_PATCH_DONE) break; usleep_range(1000, 2000); @@ -5500,6 +5520,8 @@ static int r8153_pre_firmware_1(struct r8152 *tp) for (i = 0; i < 104; i++) { u32 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_WDT1_CTRL); + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) + return -ENODEV; if (!(ocp_data & WTD1_EN)) break; usleep_range(1000, 2000); @@ -5656,6 +5678,8 @@ static void r8153_aldps_en(struct r8152 *tp, bool enable) data &= ~EN_ALDPS; ocp_reg_write(tp, OCP_POWER_CFG, data); for (i = 0; i < 20; i++) { + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) + return; usleep_range(1000, 2000); if (ocp_read_word(tp, MCU_TYPE_PLA, 0xe000) & 0x0100) break; @@ -6009,7 +6033,7 @@ static int rtl8156_enable(struct r8152 *tp) u32 ocp_data; u16 speed; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return -ENODEV; r8156_fc_parameter(tp); @@ -6067,7 +6091,7 @@ static int rtl8156b_enable(struct r8152 *tp) u32 ocp_data; u16 speed; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return -ENODEV; set_tx_qlen(tp); @@ -6253,7 +6277,7 @@ static int rtl8152_set_speed(struct r8152 *tp, u8 autoneg, u32 speed, u8 duplex, static void rtl8152_up(struct r8152 *tp) { - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; r8152_aldps_en(tp, false); @@ -6263,7 +6287,7 @@ static void rtl8152_up(struct r8152 *tp) static void rtl8152_down(struct r8152 *tp) { - if (test_bit(RTL8152_UNPLUG, &tp->flags)) { + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) { rtl_drop_queued_tx(tp); return; } @@ -6278,7 +6302,7 @@ static void rtl8153_up(struct r8152 *tp) { u32 ocp_data; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; r8153_u1u2en(tp, false); @@ -6318,7 +6342,7 @@ static void rtl8153_down(struct r8152 *tp) { u32 ocp_data; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) { + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) { rtl_drop_queued_tx(tp); return; } @@ -6339,7 +6363,7 @@ static void rtl8153b_up(struct r8152 *tp) { u32 ocp_data; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; r8153b_u1u2en(tp, false); @@ -6363,7 +6387,7 @@ static void rtl8153b_down(struct r8152 *tp) { u32 ocp_data; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) { + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) { rtl_drop_queued_tx(tp); return; } @@ -6400,7 +6424,7 @@ static void rtl8153c_up(struct r8152 *tp) { u32 ocp_data; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; r8153b_u1u2en(tp, false); @@ -6481,7 +6505,7 @@ static void rtl8156_up(struct r8152 *tp) { u32 ocp_data; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; r8153b_u1u2en(tp, false); @@ -6554,7 +6578,7 @@ static void rtl8156_down(struct r8152 *tp) { u32 ocp_data; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) { + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) { rtl_drop_queued_tx(tp); return; } @@ -6692,7 +6716,7 @@ static void rtl_work_func_t(struct work_struct *work) /* If the device is unplugged or !netif_running(), the workqueue * doesn't need to wake the device, and could return directly. */ - if (test_bit(RTL8152_UNPLUG, &tp->flags) || !netif_running(tp->netdev)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags) || !netif_running(tp->netdev)) return; if (usb_autopm_get_interface(tp->intf) < 0) @@ -6731,7 +6755,7 @@ static void rtl_hw_phy_work_func_t(struct work_struct *work) { struct r8152 *tp = container_of(work, struct r8152, hw_phy_work.work); - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; if (usb_autopm_get_interface(tp->intf) < 0) @@ -6858,7 +6882,7 @@ static int rtl8152_close(struct net_device *netdev) netif_stop_queue(netdev); res = usb_autopm_get_interface(tp->intf); - if (res < 0 || test_bit(RTL8152_UNPLUG, &tp->flags)) { + if (res < 0 || test_bit(RTL8152_INACCESSIBLE, &tp->flags)) { rtl_drop_queued_tx(tp); rtl_stop_rx(tp); } else { @@ -6891,7 +6915,7 @@ static void r8152b_init(struct r8152 *tp) u32 ocp_data; u16 data; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; data = r8152_mdio_read(tp, MII_BMCR); @@ -6935,7 +6959,7 @@ static void r8153_init(struct r8152 *tp) u16 data; int i; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; r8153_u1u2en(tp, false); @@ -6946,7 +6970,7 @@ static void r8153_init(struct r8152 *tp) break; msleep(20); - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) break; } @@ -7075,7 +7099,7 @@ static void r8153b_init(struct r8152 *tp) u16 data; int i; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; r8153b_u1u2en(tp, false); @@ -7086,7 +7110,7 @@ static void r8153b_init(struct r8152 *tp) break; msleep(20); - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) break; } @@ -7157,7 +7181,7 @@ static void r8153c_init(struct r8152 *tp) u16 data; int i; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; r8153b_u1u2en(tp, false); @@ -7177,7 +7201,7 @@ static void r8153c_init(struct r8152 *tp) break; msleep(20); - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; } @@ -8006,7 +8030,7 @@ static void r8156_init(struct r8152 *tp) u16 data; int i; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_ECM_OP); @@ -8027,7 +8051,7 @@ static void r8156_init(struct r8152 *tp) break; msleep(20); - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; } @@ -8102,7 +8126,7 @@ static void r8156b_init(struct r8152 *tp) u16 data; int i; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_ECM_OP); @@ -8136,7 +8160,7 @@ static void r8156b_init(struct r8152 *tp) break; msleep(20); - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; } @@ -9198,7 +9222,7 @@ static int rtl8152_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd) struct mii_ioctl_data *data = if_mii(rq); int res; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return -ENODEV; res = usb_autopm_get_interface(tp->intf); @@ -9300,7 +9324,7 @@ static const struct net_device_ops rtl8152_netdev_ops = { static void rtl8152_unload(struct r8152 *tp) { - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; if (tp->version != RTL_VER_01) @@ -9309,7 +9333,7 @@ static void rtl8152_unload(struct r8152 *tp) static void rtl8153_unload(struct r8152 *tp) { - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; r8153_power_cut_en(tp, false); @@ -9317,7 +9341,7 @@ static void rtl8153_unload(struct r8152 *tp) static void rtl8153b_unload(struct r8152 *tp) { - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; r8153b_power_cut_en(tp, false); @@ -9535,7 +9559,8 @@ u8 rtl8152_get_version(struct usb_interface *intf) ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), RTL8152_REQ_GET_REGS, RTL8152_REQT_READ, - PLA_TCR0, MCU_TYPE_PLA, tmp, sizeof(*tmp), 500); + PLA_TCR0, MCU_TYPE_PLA, tmp, sizeof(*tmp), + USB_CTRL_GET_TIMEOUT); if (ret > 0) ocp_data = (__le32_to_cpu(*tmp) >> 16) & VERSION_MASK; @@ -9798,6 +9823,10 @@ static int rtl8152_probe(struct usb_interface *intf, out1: tasklet_kill(&tp->tx_tl); + cancel_delayed_work_sync(&tp->hw_phy_work); + if (tp->rtl_ops.unload) + tp->rtl_ops.unload(tp); + rtl8152_release_firmware(tp); usb_set_intfdata(intf, NULL); out: free_netdev(netdev); diff --git a/drivers/net/usb/smsc75xx.c b/drivers/net/usb/smsc75xx.c index 7c3e866514199..301d979d0d08c 100644 --- a/drivers/net/usb/smsc75xx.c +++ b/drivers/net/usb/smsc75xx.c @@ -90,7 +90,9 @@ static int __must_check __smsc75xx_read_reg(struct usbnet *dev, u32 index, ret = fn(dev, USB_VENDOR_REQUEST_READ_REGISTER, USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE, 0, index, &buf, 4); - if (unlikely(ret < 0)) { + if (unlikely(ret < 4)) { + ret = ret < 0 ? ret : -ENODATA; + netdev_warn(dev->net, "Failed to read reg index 0x%08x: %d\n", index, ret); return ret; diff --git a/drivers/net/usb/smsc95xx.c b/drivers/net/usb/smsc95xx.c index 649d9f9af6e67..5f962f58ff496 100644 --- a/drivers/net/usb/smsc95xx.c +++ b/drivers/net/usb/smsc95xx.c @@ -84,7 +84,9 @@ static int __must_check __smsc95xx_read_reg(struct usbnet *dev, u32 index, ret = fn(dev, USB_VENDOR_REQUEST_READ_REGISTER, USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE, 0, index, &buf, 4); - if (ret < 0) { + if (ret < 4) { + ret = ret < 0 ? ret : -ENODATA; + if (ret != -ENODEV) netdev_warn(dev->net, "Failed to read reg index 0x%08x: %d\n", index, ret); @@ -860,7 +862,7 @@ static int smsc95xx_reset(struct usbnet *dev) if (timeout >= 100) { netdev_warn(dev->net, "timeout waiting for completion of Lite Reset\n"); - return ret; + return -ETIMEDOUT; } ret = smsc95xx_write_reg(dev, PM_CTRL, PM_CTL_PHY_RST_); diff --git a/drivers/net/veth.c b/drivers/net/veth.c index 45ee44f66e77d..c0bcb4cb46f34 100644 --- a/drivers/net/veth.c +++ b/drivers/net/veth.c @@ -320,6 +320,7 @@ static netdev_tx_t veth_xmit(struct sk_buff *skb, struct net_device *dev) { struct veth_priv *rcv_priv, *priv = netdev_priv(dev); struct veth_rq *rq = NULL; + int ret = NETDEV_TX_OK; struct net_device *rcv; int length = skb->len; bool use_napi = false; @@ -352,6 +353,7 @@ static netdev_tx_t veth_xmit(struct sk_buff *skb, struct net_device *dev) } else { drop: atomic64_inc(&priv->dropped); + ret = NET_XMIT_DROP; } if (use_napi) @@ -359,7 +361,7 @@ static netdev_tx_t veth_xmit(struct sk_buff *skb, struct net_device *dev) rcu_read_unlock(); - return NETDEV_TX_OK; + return ret; } static u64 veth_stats_tx(struct net_device *dev, u64 *packets, u64 *bytes) @@ -651,7 +653,7 @@ static struct xdp_frame *veth_xdp_rcv_one(struct veth_rq *rq, rcu_read_unlock(); goto xdp_xmit; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(rq->dev, xdp_prog, act); fallthrough; case XDP_ABORTED: trace_xdp_exception(rq->dev, xdp_prog, act); @@ -801,7 +803,7 @@ static struct sk_buff *veth_xdp_rcv_skb(struct veth_rq *rq, rcu_read_unlock(); goto xdp_xmit; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(rq->dev, xdp_prog, act); fallthrough; case XDP_ABORTED: trace_xdp_exception(rq->dev, xdp_prog, act); diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c index 3eefe81719254..857b719ecf9a9 100644 --- a/drivers/net/virtio_net.c +++ b/drivers/net/virtio_net.c @@ -827,7 +827,7 @@ static struct sk_buff *receive_small(struct net_device *dev, rcu_read_unlock(); goto xdp_xmit; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(vi->dev, xdp_prog, act); fallthrough; case XDP_ABORTED: trace_xdp_exception(vi->dev, xdp_prog, act); @@ -1054,7 +1054,7 @@ static struct sk_buff *receive_mergeable(struct net_device *dev, rcu_read_unlock(); goto xdp_xmit; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(vi->dev, xdp_prog, act); fallthrough; case XDP_ABORTED: trace_xdp_exception(vi->dev, xdp_prog, act); diff --git a/drivers/net/vxlan/vxlan_core.c b/drivers/net/vxlan/vxlan_core.c index 143c7e7d85178..d798fe81f8470 100644 --- a/drivers/net/vxlan/vxlan_core.c +++ b/drivers/net/vxlan/vxlan_core.c @@ -892,6 +892,32 @@ static int vxlan_fdb_append(struct vxlan_fdb *f, return 1; } +static bool vxlan_parse_gpe_proto(struct vxlanhdr *hdr, __be16 *protocol) +{ + struct vxlanhdr_gpe *gpe = (struct vxlanhdr_gpe *)hdr; + + /* Need to have Next Protocol set for interfaces in GPE mode. */ + if (!gpe->np_applied) + return false; + /* "The initial version is 0. If a receiver does not support the + * version indicated it MUST drop the packet. + */ + if (gpe->version != 0) + return false; + /* "When the O bit is set to 1, the packet is an OAM packet and OAM + * processing MUST occur." However, we don't implement OAM + * processing, thus drop the packet. + */ + if (gpe->oam_flag) + return false; + + *protocol = tun_p_to_eth_p(gpe->next_protocol); + if (!*protocol) + return false; + + return true; +} + static struct vxlanhdr *vxlan_gro_remcsum(struct sk_buff *skb, unsigned int off, struct vxlanhdr *vh, size_t hdrlen, @@ -1900,35 +1926,6 @@ static void vxlan_parse_gbp_hdr(struct vxlanhdr *unparsed, unparsed->vx_flags &= ~VXLAN_GBP_USED_BITS; } -static bool vxlan_parse_gpe_hdr(struct vxlanhdr *unparsed, - __be16 *protocol, - struct sk_buff *skb, u32 vxflags) -{ - struct vxlanhdr_gpe *gpe = (struct vxlanhdr_gpe *)unparsed; - - /* Need to have Next Protocol set for interfaces in GPE mode. */ - if (!gpe->np_applied) - return false; - /* "The initial version is 0. If a receiver does not support the - * version indicated it MUST drop the packet. - */ - if (gpe->version != 0) - return false; - /* "When the O bit is set to 1, the packet is an OAM packet and OAM - * processing MUST occur." However, we don't implement OAM - * processing, thus drop the packet. - */ - if (gpe->oam_flag) - return false; - - *protocol = tun_p_to_eth_p(gpe->next_protocol); - if (!*protocol) - return false; - - unparsed->vx_flags &= ~VXLAN_GPE_USED_BITS; - return true; -} - static bool vxlan_set_mac(struct vxlan_dev *vxlan, struct vxlan_sock *vs, struct sk_buff *skb, __be32 vni) @@ -2029,8 +2026,9 @@ static int vxlan_rcv(struct sock *sk, struct sk_buff *skb) * used by VXLAN extensions if explicitly requested. */ if (vs->flags & VXLAN_F_GPE) { - if (!vxlan_parse_gpe_hdr(&unparsed, &protocol, skb, vs->flags)) + if (!vxlan_parse_gpe_proto(&unparsed, &protocol)) goto drop; + unparsed.vx_flags &= ~VXLAN_GPE_USED_BITS; raw_proto = true; } diff --git a/drivers/net/wan/fsl_ucc_hdlc.c b/drivers/net/wan/fsl_ucc_hdlc.c index 8305df1a3008a..44348e2dd95ea 100644 --- a/drivers/net/wan/fsl_ucc_hdlc.c +++ b/drivers/net/wan/fsl_ucc_hdlc.c @@ -34,6 +34,8 @@ #define TDM_PPPOHT_SLIC_MAXIN #define RX_BD_ERRORS (R_CD_S | R_OV_S | R_CR_S | R_AB_S | R_NO_S | R_LG_S) +static int uhdlc_close(struct net_device *dev); + static struct ucc_tdm_info utdm_primary_info = { .uf_info = { .tsa = 0, @@ -705,6 +707,7 @@ static int uhdlc_open(struct net_device *dev) hdlc_device *hdlc = dev_to_hdlc(dev); struct ucc_hdlc_private *priv = hdlc->priv; struct ucc_tdm *utdm = priv->utdm; + int rc = 0; if (priv->hdlc_busy != 1) { if (request_irq(priv->ut_info->uf_info.irq, @@ -728,10 +731,13 @@ static int uhdlc_open(struct net_device *dev) napi_enable(&priv->napi); netdev_reset_queue(dev); netif_start_queue(dev); - hdlc_open(dev); + + rc = hdlc_open(dev); + if (rc) + uhdlc_close(dev); } - return 0; + return rc; } static void uhdlc_memclean(struct ucc_hdlc_private *priv) @@ -821,6 +827,8 @@ static int uhdlc_close(struct net_device *dev) netdev_reset_queue(dev); priv->hdlc_busy = 0; + hdlc_close(dev); + return 0; } diff --git a/drivers/net/wireguard/device.c b/drivers/net/wireguard/device.c index 5eaef79c06e16..e5e344af34237 100644 --- a/drivers/net/wireguard/device.c +++ b/drivers/net/wireguard/device.c @@ -193,7 +193,7 @@ static netdev_tx_t wg_xmit(struct sk_buff *skb, struct net_device *dev) */ while (skb_queue_len(&peer->staged_packet_queue) > MAX_STAGED_PACKETS) { dev_kfree_skb(__skb_dequeue(&peer->staged_packet_queue)); - ++dev->stats.tx_dropped; + DEV_STATS_INC(dev, tx_dropped); } skb_queue_splice_tail(&packets, &peer->staged_packet_queue); spin_unlock_bh(&peer->staged_packet_queue.lock); @@ -211,7 +211,7 @@ static netdev_tx_t wg_xmit(struct sk_buff *skb, struct net_device *dev) else if (skb->protocol == htons(ETH_P_IPV6)) icmpv6_ndo_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_ADDR_UNREACH, 0); err: - ++dev->stats.tx_errors; + DEV_STATS_INC(dev, tx_errors); kfree_skb(skb); return ret; } diff --git a/drivers/net/wireguard/receive.c b/drivers/net/wireguard/receive.c index f500aaf678370..d38b24339a1f9 100644 --- a/drivers/net/wireguard/receive.c +++ b/drivers/net/wireguard/receive.c @@ -423,20 +423,20 @@ static void wg_packet_consume_data_done(struct wg_peer *peer, net_dbg_skb_ratelimited("%s: Packet has unallowed src IP (%pISc) from peer %llu (%pISpfsc)\n", dev->name, skb, peer->internal_id, &peer->endpoint.addr); - ++dev->stats.rx_errors; - ++dev->stats.rx_frame_errors; + DEV_STATS_INC(dev, rx_errors); + DEV_STATS_INC(dev, rx_frame_errors); goto packet_processed; dishonest_packet_type: net_dbg_ratelimited("%s: Packet is neither ipv4 nor ipv6 from peer %llu (%pISpfsc)\n", dev->name, peer->internal_id, &peer->endpoint.addr); - ++dev->stats.rx_errors; - ++dev->stats.rx_frame_errors; + DEV_STATS_INC(dev, rx_errors); + DEV_STATS_INC(dev, rx_frame_errors); goto packet_processed; dishonest_packet_size: net_dbg_ratelimited("%s: Packet has incorrect size from peer %llu (%pISpfsc)\n", dev->name, peer->internal_id, &peer->endpoint.addr); - ++dev->stats.rx_errors; - ++dev->stats.rx_length_errors; + DEV_STATS_INC(dev, rx_errors); + DEV_STATS_INC(dev, rx_length_errors); goto packet_processed; packet_processed: dev_kfree_skb(skb); diff --git a/drivers/net/wireguard/send.c b/drivers/net/wireguard/send.c index 95c853b59e1da..0d48e0f4a1ba3 100644 --- a/drivers/net/wireguard/send.c +++ b/drivers/net/wireguard/send.c @@ -333,7 +333,8 @@ static void wg_packet_create_data(struct wg_peer *peer, struct sk_buff *first) void wg_packet_purge_staged_packets(struct wg_peer *peer) { spin_lock_bh(&peer->staged_packet_queue.lock); - peer->device->dev->stats.tx_dropped += peer->staged_packet_queue.qlen; + DEV_STATS_ADD(peer->device->dev, tx_dropped, + peer->staged_packet_queue.qlen); __skb_queue_purge(&peer->staged_packet_queue); spin_unlock_bh(&peer->staged_packet_queue.lock); } diff --git a/drivers/net/wireless/ath/ath10k/debug.c b/drivers/net/wireless/ath/ath10k/debug.c index 39378e3f9b2bb..6e1b65b8ae656 100644 --- a/drivers/net/wireless/ath/ath10k/debug.c +++ b/drivers/net/wireless/ath/ath10k/debug.c @@ -1139,7 +1139,7 @@ void ath10k_debug_get_et_strings(struct ieee80211_hw *hw, u32 sset, u8 *data) { if (sset == ETH_SS_STATS) - memcpy(data, *ath10k_gstrings_stats, + memcpy(data, ath10k_gstrings_stats, sizeof(ath10k_gstrings_stats)); } diff --git a/drivers/net/wireless/ath/ath10k/pci.c b/drivers/net/wireless/ath/ath10k/pci.c index 85a30c301dad7..3a62f66973137 100644 --- a/drivers/net/wireless/ath/ath10k/pci.c +++ b/drivers/net/wireless/ath/ath10k/pci.c @@ -1963,8 +1963,9 @@ static int ath10k_pci_hif_start(struct ath10k *ar) ath10k_pci_irq_enable(ar); ath10k_pci_rx_post(ar); - pcie_capability_write_word(ar_pci->pdev, PCI_EXP_LNKCTL, - ar_pci->link_ctl); + pcie_capability_clear_and_set_word(ar_pci->pdev, PCI_EXP_LNKCTL, + PCI_EXP_LNKCTL_ASPMC, + ar_pci->link_ctl & PCI_EXP_LNKCTL_ASPMC); return 0; } @@ -2821,8 +2822,8 @@ static int ath10k_pci_hif_power_up(struct ath10k *ar, pcie_capability_read_word(ar_pci->pdev, PCI_EXP_LNKCTL, &ar_pci->link_ctl); - pcie_capability_write_word(ar_pci->pdev, PCI_EXP_LNKCTL, - ar_pci->link_ctl & ~PCI_EXP_LNKCTL_ASPMC); + pcie_capability_clear_word(ar_pci->pdev, PCI_EXP_LNKCTL, + PCI_EXP_LNKCTL_ASPMC); /* * Bring the target up cleanly. diff --git a/drivers/net/wireless/ath/ath10k/snoc.c b/drivers/net/wireless/ath/ath10k/snoc.c index 73fe77e7824b4..439df8a404d86 100644 --- a/drivers/net/wireless/ath/ath10k/snoc.c +++ b/drivers/net/wireless/ath/ath10k/snoc.c @@ -828,12 +828,20 @@ static void ath10k_snoc_hif_get_default_pipe(struct ath10k *ar, static inline void ath10k_snoc_irq_disable(struct ath10k *ar) { - ath10k_ce_disable_interrupts(ar); + struct ath10k_snoc *ar_snoc = ath10k_snoc_priv(ar); + int id; + + for (id = 0; id < CE_COUNT_MAX; id++) + disable_irq(ar_snoc->ce_irqs[id].irq_line); } static inline void ath10k_snoc_irq_enable(struct ath10k *ar) { - ath10k_ce_enable_interrupts(ar); + struct ath10k_snoc *ar_snoc = ath10k_snoc_priv(ar); + int id; + + for (id = 0; id < CE_COUNT_MAX; id++) + enable_irq(ar_snoc->ce_irqs[id].irq_line); } static void ath10k_snoc_rx_pipe_cleanup(struct ath10k_snoc_pipe *snoc_pipe) @@ -1089,6 +1097,8 @@ static int ath10k_snoc_hif_power_up(struct ath10k *ar, goto err_free_rri; } + ath10k_ce_enable_interrupts(ar); + return 0; err_free_rri: @@ -1253,8 +1263,8 @@ static int ath10k_snoc_request_irq(struct ath10k *ar) for (id = 0; id < CE_COUNT_MAX; id++) { ret = request_irq(ar_snoc->ce_irqs[id].irq_line, - ath10k_snoc_per_engine_handler, 0, - ce_name[id], ar); + ath10k_snoc_per_engine_handler, + IRQF_NO_AUTOEN, ce_name[id], ar); if (ret) { ath10k_err(ar, "failed to register IRQ handler for CE %d: %d\n", diff --git a/drivers/net/wireless/ath/ath11k/dp_rx.c b/drivers/net/wireless/ath/ath11k/dp_rx.c index 357abd87d5491..dfdb2eeaf040a 100644 --- a/drivers/net/wireless/ath/ath11k/dp_rx.c +++ b/drivers/net/wireless/ath/ath11k/dp_rx.c @@ -1603,14 +1603,20 @@ static void ath11k_htt_pktlog(struct ath11k_base *ab, struct sk_buff *skb) u8 pdev_id; pdev_id = FIELD_GET(HTT_T2H_PPDU_STATS_INFO_PDEV_ID, data->hdr); + + rcu_read_lock(); + ar = ath11k_mac_get_ar_by_pdev_id(ab, pdev_id); if (!ar) { ath11k_warn(ab, "invalid pdev id %d on htt pktlog\n", pdev_id); - return; + goto out; } trace_ath11k_htt_pktlog(ar, data->payload, hdr->size, ar->ab->pktlog_defs_checksum); + +out: + rcu_read_unlock(); } static void ath11k_htt_backpressure_event_handler(struct ath11k_base *ab, diff --git a/drivers/net/wireless/ath/ath11k/pci.c b/drivers/net/wireless/ath/ath11k/pci.c index c071e0de5983e..722500444a27e 100644 --- a/drivers/net/wireless/ath/ath11k/pci.c +++ b/drivers/net/wireless/ath/ath11k/pci.c @@ -893,7 +893,7 @@ static int ath11k_pci_enable_msi(struct ath11k_pci *ab_pci) } ab_pci->msi_ep_base_data = msi_desc->msg.data; - if (msi_desc->msi_attrib.is_64) + if (msi_desc->pci.msi_attrib.is_64) set_bit(ATH11K_PCI_FLAG_IS_MSI_64, &ab_pci->flags); ath11k_dbg(ab, ATH11K_DBG_PCI, "msi base data is %d\n", ab_pci->msi_ep_base_data); @@ -1000,8 +1000,8 @@ static void ath11k_pci_aspm_disable(struct ath11k_pci *ab_pci) u16_get_bits(ab_pci->link_ctl, PCI_EXP_LNKCTL_ASPM_L1)); /* disable L0s and L1 */ - pcie_capability_write_word(ab_pci->pdev, PCI_EXP_LNKCTL, - ab_pci->link_ctl & ~PCI_EXP_LNKCTL_ASPMC); + pcie_capability_clear_word(ab_pci->pdev, PCI_EXP_LNKCTL, + PCI_EXP_LNKCTL_ASPMC); set_bit(ATH11K_PCI_ASPM_RESTORE, &ab_pci->flags); } @@ -1009,8 +1009,10 @@ static void ath11k_pci_aspm_disable(struct ath11k_pci *ab_pci) static void ath11k_pci_aspm_restore(struct ath11k_pci *ab_pci) { if (test_and_clear_bit(ATH11K_PCI_ASPM_RESTORE, &ab_pci->flags)) - pcie_capability_write_word(ab_pci->pdev, PCI_EXP_LNKCTL, - ab_pci->link_ctl); + pcie_capability_clear_and_set_word(ab_pci->pdev, PCI_EXP_LNKCTL, + PCI_EXP_LNKCTL_ASPMC, + ab_pci->link_ctl & + PCI_EXP_LNKCTL_ASPMC); } static int ath11k_pci_power_up(struct ath11k_base *ab) diff --git a/drivers/net/wireless/ath/ath11k/wmi.c b/drivers/net/wireless/ath/ath11k/wmi.c index b11070cf159cc..28b4527b993fe 100644 --- a/drivers/net/wireless/ath/ath11k/wmi.c +++ b/drivers/net/wireless/ath/ath11k/wmi.c @@ -6809,6 +6809,8 @@ ath11k_wmi_pdev_dfs_radar_detected_event(struct ath11k_base *ab, struct sk_buff ev->detector_id, ev->segment_id, ev->timestamp, ev->is_chirp, ev->freq_offset, ev->sidx); + rcu_read_lock(); + ar = ath11k_mac_get_ar_by_pdev_id(ab, ev->pdev_id); if (!ar) { @@ -6826,6 +6828,8 @@ ath11k_wmi_pdev_dfs_radar_detected_event(struct ath11k_base *ab, struct sk_buff ieee80211_radar_detected(ar->hw); exit: + rcu_read_unlock(); + kfree(tb); } @@ -6855,15 +6859,19 @@ ath11k_wmi_pdev_temperature_event(struct ath11k_base *ab, ath11k_dbg(ab, ATH11K_DBG_WMI, "pdev temperature ev temp %d pdev_id %d\n", ev->temp, ev->pdev_id); + rcu_read_lock(); + ar = ath11k_mac_get_ar_by_pdev_id(ab, ev->pdev_id); if (!ar) { ath11k_warn(ab, "invalid pdev id in pdev temperature ev %d", ev->pdev_id); - kfree(tb); - return; + goto exit; } ath11k_thermal_event_temperature(ar, ev->temp); +exit: + rcu_read_unlock(); + kfree(tb); } diff --git a/drivers/net/wireless/ath/ath9k/ahb.c b/drivers/net/wireless/ath/ath9k/ahb.c index cdefb8e2daf14..05fb76a4e144e 100644 --- a/drivers/net/wireless/ath/ath9k/ahb.c +++ b/drivers/net/wireless/ath/ath9k/ahb.c @@ -136,8 +136,8 @@ static int ath_ahb_probe(struct platform_device *pdev) ah = sc->sc_ah; ath9k_hw_name(ah, hw_name, sizeof(hw_name)); - wiphy_info(hw->wiphy, "%s mem=0x%lx, irq=%d\n", - hw_name, (unsigned long)mem, irq); + wiphy_info(hw->wiphy, "%s mem=0x%p, irq=%d\n", + hw_name, mem, irq); return 0; diff --git a/drivers/net/wireless/ath/ath9k/debug.c b/drivers/net/wireless/ath/ath9k/debug.c index 4c81b1d7f4171..6a043a49dfe6f 100644 --- a/drivers/net/wireless/ath/ath9k/debug.c +++ b/drivers/net/wireless/ath/ath9k/debug.c @@ -1284,7 +1284,7 @@ void ath9k_get_et_strings(struct ieee80211_hw *hw, u32 sset, u8 *data) { if (sset == ETH_SS_STATS) - memcpy(data, *ath9k_gstrings_stats, + memcpy(data, ath9k_gstrings_stats, sizeof(ath9k_gstrings_stats)); } diff --git a/drivers/net/wireless/ath/ath9k/htc_drv_debug.c b/drivers/net/wireless/ath/ath9k/htc_drv_debug.c index b3ed65e5c4da8..e79bbcd3279af 100644 --- a/drivers/net/wireless/ath/ath9k/htc_drv_debug.c +++ b/drivers/net/wireless/ath/ath9k/htc_drv_debug.c @@ -428,7 +428,7 @@ void ath9k_htc_get_et_strings(struct ieee80211_hw *hw, u32 sset, u8 *data) { if (sset == ETH_SS_STATS) - memcpy(data, *ath9k_htc_gstrings_stats, + memcpy(data, ath9k_htc_gstrings_stats, sizeof(ath9k_htc_gstrings_stats)); } @@ -491,7 +491,7 @@ int ath9k_htc_init_debug(struct ath_hw *ah) priv->debug.debugfs_phy = debugfs_create_dir(KBUILD_MODNAME, priv->hw->wiphy->debugfsdir); - if (!priv->debug.debugfs_phy) + if (IS_ERR(priv->debug.debugfs_phy)) return -ENOMEM; ath9k_cmn_spectral_init_debug(&priv->spec_priv, priv->debug.debugfs_phy); diff --git a/drivers/net/wireless/ath/ath9k/mac.h b/drivers/net/wireless/ath/ath9k/mac.h index fd6aa49adadfe..9b00e77a6fc3c 100644 --- a/drivers/net/wireless/ath/ath9k/mac.h +++ b/drivers/net/wireless/ath/ath9k/mac.h @@ -113,8 +113,10 @@ struct ath_tx_status { u8 qid; u16 desc_id; u8 tid; - u32 ba_low; - u32 ba_high; + struct_group(ba, + u32 ba_low; + u32 ba_high; + ); u32 evm0; u32 evm1; u32 evm2; diff --git a/drivers/net/wireless/ath/ath9k/pci.c b/drivers/net/wireless/ath/ath9k/pci.c index a074e23013c58..f0e3901e8182a 100644 --- a/drivers/net/wireless/ath/ath9k/pci.c +++ b/drivers/net/wireless/ath/ath9k/pci.c @@ -988,8 +988,8 @@ static int ath_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id) sc->sc_ah->msi_reg = 0; ath9k_hw_name(sc->sc_ah, hw_name, sizeof(hw_name)); - wiphy_info(hw->wiphy, "%s mem=0x%lx, irq=%d\n", - hw_name, (unsigned long)sc->mem, pdev->irq); + wiphy_info(hw->wiphy, "%s mem=0x%p, irq=%d\n", + hw_name, sc->mem, pdev->irq); return 0; diff --git a/drivers/net/wireless/ath/ath9k/wmi.c b/drivers/net/wireless/ath/ath9k/wmi.c index d652c647d56b5..1476b42b52a91 100644 --- a/drivers/net/wireless/ath/ath9k/wmi.c +++ b/drivers/net/wireless/ath/ath9k/wmi.c @@ -242,10 +242,10 @@ static void ath9k_wmi_ctrl_rx(void *priv, struct sk_buff *skb, spin_unlock_irqrestore(&wmi->wmi_lock, flags); goto free_skb; } - spin_unlock_irqrestore(&wmi->wmi_lock, flags); /* WMI command response */ ath9k_wmi_rsp_callback(wmi, skb); + spin_unlock_irqrestore(&wmi->wmi_lock, flags); free_skb: kfree_skb(skb); @@ -283,7 +283,8 @@ int ath9k_wmi_connect(struct htc_target *htc, struct wmi *wmi, static int ath9k_wmi_cmd_issue(struct wmi *wmi, struct sk_buff *skb, - enum wmi_cmd_id cmd, u16 len) + enum wmi_cmd_id cmd, u16 len, + u8 *rsp_buf, u32 rsp_len) { struct wmi_cmd_hdr *hdr; unsigned long flags; @@ -293,6 +294,11 @@ static int ath9k_wmi_cmd_issue(struct wmi *wmi, hdr->seq_no = cpu_to_be16(++wmi->tx_seq_id); spin_lock_irqsave(&wmi->wmi_lock, flags); + + /* record the rsp buffer and length */ + wmi->cmd_rsp_buf = rsp_buf; + wmi->cmd_rsp_len = rsp_len; + wmi->last_seq_id = wmi->tx_seq_id; spin_unlock_irqrestore(&wmi->wmi_lock, flags); @@ -308,8 +314,8 @@ int ath9k_wmi_cmd(struct wmi *wmi, enum wmi_cmd_id cmd_id, struct ath_common *common = ath9k_hw_common(ah); u16 headroom = sizeof(struct htc_frame_hdr) + sizeof(struct wmi_cmd_hdr); + unsigned long time_left, flags; struct sk_buff *skb; - unsigned long time_left; int ret = 0; if (ah->ah_flags & AH_UNPLUGGED) @@ -333,11 +339,7 @@ int ath9k_wmi_cmd(struct wmi *wmi, enum wmi_cmd_id cmd_id, goto out; } - /* record the rsp buffer and length */ - wmi->cmd_rsp_buf = rsp_buf; - wmi->cmd_rsp_len = rsp_len; - - ret = ath9k_wmi_cmd_issue(wmi, skb, cmd_id, cmd_len); + ret = ath9k_wmi_cmd_issue(wmi, skb, cmd_id, cmd_len, rsp_buf, rsp_len); if (ret) goto out; @@ -345,7 +347,9 @@ int ath9k_wmi_cmd(struct wmi *wmi, enum wmi_cmd_id cmd_id, if (!time_left) { ath_dbg(common, WMI, "Timeout waiting for WMI command: %s\n", wmi_cmd_to_name(cmd_id)); + spin_lock_irqsave(&wmi->wmi_lock, flags); wmi->last_seq_id = 0; + spin_unlock_irqrestore(&wmi->wmi_lock, flags); mutex_unlock(&wmi->op_mutex); return -ETIMEDOUT; } diff --git a/drivers/net/wireless/ath/ath9k/xmit.c b/drivers/net/wireless/ath/ath9k/xmit.c index 6555abf02f18b..84c68aefc171a 100644 --- a/drivers/net/wireless/ath/ath9k/xmit.c +++ b/drivers/net/wireless/ath/ath9k/xmit.c @@ -421,7 +421,7 @@ static void ath_tx_count_frames(struct ath_softc *sc, struct ath_buf *bf, isaggr = bf_isaggr(bf); if (isaggr) { seq_st = ts->ts_seqnum; - memcpy(ba, &ts->ba_low, WME_BA_BMP_SIZE >> 3); + memcpy(ba, &ts->ba, WME_BA_BMP_SIZE >> 3); } while (bf) { @@ -504,7 +504,7 @@ static void ath_tx_complete_aggr(struct ath_softc *sc, struct ath_txq *txq, if (isaggr && txok) { if (ts->ts_flags & ATH9K_TX_BA) { seq_st = ts->ts_seqnum; - memcpy(ba, &ts->ba_low, WME_BA_BMP_SIZE >> 3); + memcpy(ba, &ts->ba, WME_BA_BMP_SIZE >> 3); } else { /* * AR5416 can become deaf/mute when BA diff --git a/drivers/net/wireless/ath/wil6210/txrx.c b/drivers/net/wireless/ath/wil6210/txrx.c index cc830c795b33c..5b2de4f3fa0bd 100644 --- a/drivers/net/wireless/ath/wil6210/txrx.c +++ b/drivers/net/wireless/ath/wil6210/txrx.c @@ -666,7 +666,7 @@ static int wil_rx_crypto_check(struct wil6210_priv *wil, struct sk_buff *skb) struct wil_tid_crypto_rx *c = mc ? &s->group_crypto_rx : &s->tid_crypto_rx[tid]; struct wil_tid_crypto_rx_single *cc = &c->key_id[key_id]; - const u8 *pn = (u8 *)&d->mac.pn_15_0; + const u8 *pn = (u8 *)&d->mac.pn; if (!cc->key_set) { wil_err_ratelimited(wil, diff --git a/drivers/net/wireless/ath/wil6210/txrx.h b/drivers/net/wireless/ath/wil6210/txrx.h index 1f4c8ec75be87..0f6f6b62bfc9a 100644 --- a/drivers/net/wireless/ath/wil6210/txrx.h +++ b/drivers/net/wireless/ath/wil6210/txrx.h @@ -343,8 +343,10 @@ struct vring_rx_mac { u32 d0; u32 d1; u16 w4; - u16 pn_15_0; - u32 pn_47_16; + struct_group_attr(pn, __packed, + u16 pn_15_0; + u32 pn_47_16; + ); } __packed; /* Rx descriptor - DMA part diff --git a/drivers/net/wireless/ath/wil6210/txrx_edma.c b/drivers/net/wireless/ath/wil6210/txrx_edma.c index 201c8c35e0c9e..1ba1f21ebea26 100644 --- a/drivers/net/wireless/ath/wil6210/txrx_edma.c +++ b/drivers/net/wireless/ath/wil6210/txrx_edma.c @@ -548,7 +548,7 @@ static int wil_rx_crypto_check_edma(struct wil6210_priv *wil, s = &wil->sta[cid]; c = mc ? &s->group_crypto_rx : &s->tid_crypto_rx[tid]; cc = &c->key_id[key_id]; - pn = (u8 *)&st->ext.pn_15_0; + pn = (u8 *)&st->ext.pn; if (!cc->key_set) { wil_err_ratelimited(wil, diff --git a/drivers/net/wireless/ath/wil6210/txrx_edma.h b/drivers/net/wireless/ath/wil6210/txrx_edma.h index c736f7413a35f..ee90e225bb050 100644 --- a/drivers/net/wireless/ath/wil6210/txrx_edma.h +++ b/drivers/net/wireless/ath/wil6210/txrx_edma.h @@ -330,8 +330,10 @@ struct wil_rx_status_extension { u32 d0; u32 d1; __le16 seq_num; /* only lower 12 bits */ - u16 pn_15_0; - u32 pn_47_16; + struct_group_attr(pn, __packed, + u16 pn_15_0; + u32 pn_47_16; + ); } __packed; struct wil_rx_status_extended { diff --git a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwil_types.h b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwil_types.h index ff2ef557f0ead..2a1590cc73ab2 100644 --- a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwil_types.h +++ b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwil_types.h @@ -383,7 +383,12 @@ struct brcmf_scan_params_le { * fixed parameter portion is assumed, otherwise * ssid in the fixed portion is ignored */ - __le16 channel_list[1]; /* list of chanspecs */ + union { + __le16 padding; /* Reserve space for at least 1 entry for abort + * which uses an on stack brcmf_scan_params_le + */ + DECLARE_FLEX_ARRAY(__le16, channel_list); /* chanspecs */ + }; }; struct brcmf_scan_results { diff --git a/drivers/net/wireless/intel/iwlwifi/dvm/tx.c b/drivers/net/wireless/intel/iwlwifi/dvm/tx.c index 847b8e07f81c5..a6999ca75377c 100644 --- a/drivers/net/wireless/intel/iwlwifi/dvm/tx.c +++ b/drivers/net/wireless/intel/iwlwifi/dvm/tx.c @@ -3,6 +3,7 @@ * * Copyright(c) 2008 - 2014 Intel Corporation. All rights reserved. * Copyright (C) 2019 Intel Corporation + * Copyright (C) 2023 Intel Corporation * * Contact Information: * Intel Linux Wireless @@ -1174,7 +1175,7 @@ void iwlagn_rx_reply_tx(struct iwl_priv *priv, struct iwl_rx_cmd_buffer *rxb) iwlagn_check_ratid_empty(priv, sta_id, tid); } - iwl_trans_reclaim(priv->trans, txq_id, ssn, &skbs); + iwl_trans_reclaim(priv->trans, txq_id, ssn, &skbs, false); freed = 0; @@ -1320,7 +1321,7 @@ void iwlagn_rx_reply_compressed_ba(struct iwl_priv *priv, * block-ack window (we assume that they've been successfully * transmitted ... if not, it's too late anyway). */ iwl_trans_reclaim(priv->trans, scd_flow, ba_resp_scd_ssn, - &reclaimed_skbs); + &reclaimed_skbs, false); IWL_DEBUG_TX_REPLY(priv, "REPLY_COMPRESSED_BA [%d] Received from %pM, " "sta_id = %d\n", diff --git a/drivers/net/wireless/intel/iwlwifi/fw/dbg.c b/drivers/net/wireless/intel/iwlwifi/fw/dbg.c index c69f3fb833327..f34a02b33ccd4 100644 --- a/drivers/net/wireless/intel/iwlwifi/fw/dbg.c +++ b/drivers/net/wireless/intel/iwlwifi/fw/dbg.c @@ -1960,7 +1960,7 @@ static u32 iwl_dump_ini_mem(struct iwl_fw_runtime *fwrt, struct list_head *list, struct iwl_fw_ini_error_dump_header *header; u32 type = le32_to_cpu(reg->type), id = le32_to_cpu(reg->id); u32 num_of_ranges, i, size; - void *range; + u8 *range; /* * The higher part of the ID in version 2 is irrelevant for diff --git a/drivers/net/wireless/intel/iwlwifi/fw/error-dump.h b/drivers/net/wireless/intel/iwlwifi/fw/error-dump.h index 521ca2bb0e928..2cdc3caf7740d 100644 --- a/drivers/net/wireless/intel/iwlwifi/fw/error-dump.h +++ b/drivers/net/wireless/intel/iwlwifi/fw/error-dump.h @@ -277,9 +277,9 @@ struct iwl_fw_ini_fifo_hdr { struct iwl_fw_ini_error_dump_range { __le32 range_data_size; union { - __le32 internal_base_addr; - __le64 dram_base_addr; - __le32 page_num; + __le32 internal_base_addr __packed; + __le64 dram_base_addr __packed; + __le32 page_num __packed; struct iwl_fw_ini_fifo_hdr fifo_hdr; struct iwl_cmd_header fw_pkt_hdr; }; diff --git a/drivers/net/wireless/intel/iwlwifi/iwl-trans.h b/drivers/net/wireless/intel/iwlwifi/iwl-trans.h index 8f0ff540f4398..a2919a32d7081 100644 --- a/drivers/net/wireless/intel/iwlwifi/iwl-trans.h +++ b/drivers/net/wireless/intel/iwlwifi/iwl-trans.h @@ -539,7 +539,7 @@ struct iwl_trans_ops { int (*tx)(struct iwl_trans *trans, struct sk_buff *skb, struct iwl_device_tx_cmd *dev_cmd, int queue); void (*reclaim)(struct iwl_trans *trans, int queue, int ssn, - struct sk_buff_head *skbs); + struct sk_buff_head *skbs, bool is_flush); void (*set_q_ptrs)(struct iwl_trans *trans, int queue, int ptr); @@ -1122,14 +1122,15 @@ static inline int iwl_trans_tx(struct iwl_trans *trans, struct sk_buff *skb, } static inline void iwl_trans_reclaim(struct iwl_trans *trans, int queue, - int ssn, struct sk_buff_head *skbs) + int ssn, struct sk_buff_head *skbs, + bool is_flush) { if (WARN_ON_ONCE(trans->state != IWL_TRANS_FW_ALIVE)) { IWL_ERR(trans, "%s bad state = %d\n", __func__, trans->state); return; } - trans->ops->reclaim(trans, queue, ssn, skbs); + trans->ops->reclaim(trans, queue, ssn, skbs, is_flush); } static inline void iwl_trans_set_q_ptrs(struct iwl_trans *trans, int queue, diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/d3.c b/drivers/net/wireless/intel/iwlwifi/mvm/d3.c index 6dde3bd8f4416..27756e47f7caf 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/d3.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/d3.c @@ -1090,7 +1090,7 @@ static int iwl_mvm_wowlan_config_key_params(struct iwl_mvm *mvm, sizeof(struct iwl_wowlan_kek_kck_material_cmd_v2); /* skip the sta_id at the beginning */ _kek_kck_cmd = (void *) - ((u8 *)_kek_kck_cmd) + sizeof(kek_kck_cmd.sta_id); + ((u8 *)_kek_kck_cmd + sizeof(kek_kck_cmd.sta_id)); } IWL_DEBUG_WOWLAN(mvm, "setting akm %d\n", diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c b/drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c index 0f5c4c2510ef1..3c8eeb565135a 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c @@ -1950,7 +1950,7 @@ static ssize_t iwl_dbgfs_mem_read(struct file *file, char __user *user_buf, goto out; } - ret = len - copy_to_user(user_buf, (void *)rsp->data + delta, len); + ret = len - copy_to_user(user_buf, (u8 *)rsp->data + delta, len); *ppos += ret; out: diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/fw.c b/drivers/net/wireless/intel/iwlwifi/mvm/fw.c index a7d4c67009c27..a8189b7fc1257 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/fw.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/fw.c @@ -686,7 +686,7 @@ int iwl_run_init_mvm_ucode(struct iwl_mvm *mvm) mvm->nvm_data->bands[0].n_channels = 1; mvm->nvm_data->bands[0].n_bitrates = 1; mvm->nvm_data->bands[0].bitrates = - (void *)mvm->nvm_data->channels + 1; + (void *)(mvm->nvm_data->channels + 1); mvm->nvm_data->bands[0].bitrates->hw_value = 10; } diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/rx.c b/drivers/net/wireless/intel/iwlwifi/mvm/rx.c index 8ef5399ad9be6..d779e5e19568b 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/rx.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/rx.c @@ -83,8 +83,8 @@ static void iwl_mvm_pass_packet_to_mac80211(struct iwl_mvm *mvm, fraglen = len - hdrlen; if (fraglen) { - int offset = (void *)hdr + hdrlen - - rxb_addr(rxb) + rxb_offset(rxb); + int offset = (u8 *)hdr + hdrlen - + (u8 *)rxb_addr(rxb) + rxb_offset(rxb); skb_add_rx_frag(skb, 0, rxb_steal_page(rxb), offset, fraglen, rxb->truesize); diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c b/drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c index 411254e9e603f..2e3eb7402197f 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c @@ -220,8 +220,8 @@ static int iwl_mvm_create_skb(struct iwl_mvm *mvm, struct sk_buff *skb, fraglen = len - headlen; if (fraglen) { - int offset = (void *)hdr + headlen + pad_len - - rxb_addr(rxb) + rxb_offset(rxb); + int offset = (u8 *)hdr + headlen + pad_len - + (u8 *)rxb_addr(rxb) + rxb_offset(rxb); skb_add_rx_frag(skb, 0, rxb_steal_page(rxb), offset, fraglen, rxb->truesize); diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/scan.c b/drivers/net/wireless/intel/iwlwifi/mvm/scan.c index 65e382756de68..e4fd58f043ce2 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/scan.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/scan.c @@ -2150,7 +2150,7 @@ static int iwl_mvm_scan_umac(struct iwl_mvm *mvm, struct ieee80211_vif *vif, struct iwl_scan_req_umac *cmd = mvm->scan_cmd; struct iwl_scan_umac_chan_param *chan_param; void *cmd_data = iwl_mvm_get_scan_req_umac_data(mvm); - void *sec_part = cmd_data + sizeof(struct iwl_scan_channel_cfg_umac) * + void *sec_part = (u8 *)cmd_data + sizeof(struct iwl_scan_channel_cfg_umac) * mvm->fw->ucode_capa.n_scan_channels; struct iwl_scan_req_umac_tail_v2 *tail_v2 = (struct iwl_scan_req_umac_tail_v2 *)sec_part; diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/tx.c b/drivers/net/wireless/intel/iwlwifi/mvm/tx.c index e354918c2480f..08dd227bad4b1 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/tx.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/tx.c @@ -479,16 +479,20 @@ iwl_mvm_set_tx_params(struct iwl_mvm *mvm, struct sk_buff *skb, flags |= IWL_TX_FLAGS_ENCRYPT_DIS; /* - * For data packets rate info comes from the fw. Only - * set rate/antenna during connection establishment or in case - * no station is given. + * For data and mgmt packets rate info comes from the fw. Only + * set rate/antenna for injected frames with fixed rate, or + * when no sta is given. */ - if (!sta || !ieee80211_is_data(hdr->frame_control) || - mvmsta->sta_state < IEEE80211_STA_AUTHORIZED) { + if (unlikely(!sta || + info->control.flags & IEEE80211_TX_CTRL_RATE_INJECT)) { flags |= IWL_TX_FLAGS_CMD_RATE; rate_n_flags = iwl_mvm_get_tx_rate_n_flags(mvm, info, sta, hdr->frame_control); + } else if (!ieee80211_is_data(hdr->frame_control) || + mvmsta->sta_state < IEEE80211_STA_AUTHORIZED) { + /* These are important frames */ + flags |= IWL_TX_FLAGS_HIGH_PRI; } if (mvm->trans->trans_cfg->device_family >= @@ -1432,7 +1436,7 @@ static void iwl_mvm_rx_tx_cmd_single(struct iwl_mvm *mvm, seq_ctl = le16_to_cpu(tx_resp->seq_ctl); /* we can free until ssn % q.n_bd not inclusive */ - iwl_trans_reclaim(mvm->trans, txq_id, ssn, &skbs); + iwl_trans_reclaim(mvm->trans, txq_id, ssn, &skbs, false); while (!skb_queue_empty(&skbs)) { struct sk_buff *skb = __skb_dequeue(&skbs); @@ -1445,6 +1449,7 @@ static void iwl_mvm_rx_tx_cmd_single(struct iwl_mvm *mvm, iwl_trans_free_tx_cmd(mvm->trans, info->driver_data[1]); memset(&info->status, 0, sizeof(info->status)); + info->flags &= ~(IEEE80211_TX_STAT_ACK | IEEE80211_TX_STAT_TX_FILTERED); /* inform mac80211 about what happened with the frame */ switch (status & TX_STATUS_MSK) { @@ -1776,7 +1781,7 @@ static void iwl_mvm_tx_reclaim(struct iwl_mvm *mvm, int sta_id, int tid, * block-ack window (we assume that they've been successfully * transmitted ... if not, it's too late anyway). */ - iwl_trans_reclaim(mvm->trans, txq, index, &reclaimed_skbs); + iwl_trans_reclaim(mvm->trans, txq, index, &reclaimed_skbs, is_flush); skb_queue_walk(&reclaimed_skbs, skb) { struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); @@ -1790,6 +1795,8 @@ static void iwl_mvm_tx_reclaim(struct iwl_mvm *mvm, int sta_id, int tid, */ if (!is_flush) info->flags |= IEEE80211_TX_STAT_ACK; + else + info->flags &= ~IEEE80211_TX_STAT_ACK; } /* diff --git a/drivers/net/wireless/intel/iwlwifi/pcie/internal.h b/drivers/net/wireless/intel/iwlwifi/pcie/internal.h index a43e56c7689f3..74959de9d7002 100644 --- a/drivers/net/wireless/intel/iwlwifi/pcie/internal.h +++ b/drivers/net/wireless/intel/iwlwifi/pcie/internal.h @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */ /* - * Copyright (C) 2003-2015, 2018-2021 Intel Corporation + * Copyright (C) 2003-2015, 2018-2022 Intel Corporation * Copyright (C) 2013-2015 Intel Mobile Communications GmbH * Copyright (C) 2016-2017 Intel Deutschland GmbH */ @@ -103,6 +103,18 @@ struct iwl_rx_completion_desc { u8 reserved2[25]; } __packed; +/** + * struct iwl_rx_completion_desc_bz - Bz completion descriptor + * @rbid: unique tag of the received buffer + * @flags: flags (0: fragmented, all others: reserved) + * @reserved: reserved + */ +struct iwl_rx_completion_desc_bz { + __le16 rbid; + u8 flags; + u8 reserved[1]; +} __packed; + /** * struct iwl_rxq - Rx queue * @id: queue index @@ -133,11 +145,7 @@ struct iwl_rxq { int id; void *bd; dma_addr_t bd_dma; - union { - void *used_bd; - __le32 *bd_32; - struct iwl_rx_completion_desc *cd; - }; + void *used_bd; dma_addr_t used_bd_dma; u32 read; u32 write; @@ -363,7 +371,7 @@ struct iwl_trans_pcie { /* PCI bus related data */ struct pci_dev *pci_dev; - void __iomem *hw_base; + u8 __iomem *hw_base; bool ucode_write_complete; bool sx_complete; @@ -472,6 +480,7 @@ int iwl_pcie_rx_stop(struct iwl_trans *trans); void iwl_pcie_rx_free(struct iwl_trans *trans); void iwl_pcie_free_rbs_pool(struct iwl_trans *trans); void iwl_pcie_rx_init_rxb_lists(struct iwl_rxq *rxq); +void iwl_pcie_rx_napi_sync(struct iwl_trans *trans); void iwl_pcie_rxq_alloc_rbs(struct iwl_trans *trans, gfp_t priority, struct iwl_rxq *rxq); diff --git a/drivers/net/wireless/intel/iwlwifi/pcie/rx.c b/drivers/net/wireless/intel/iwlwifi/pcie/rx.c index 6c6512158813b..df201d40f6c95 100644 --- a/drivers/net/wireless/intel/iwlwifi/pcie/rx.c +++ b/drivers/net/wireless/intel/iwlwifi/pcie/rx.c @@ -1,6 +1,6 @@ // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause /* - * Copyright (C) 2003-2014, 2018-2021 Intel Corporation + * Copyright (C) 2003-2014, 2018-2023 Intel Corporation * Copyright (C) 2013-2015 Intel Mobile Communications GmbH * Copyright (C) 2016-2017 Intel Deutschland GmbH */ @@ -652,23 +652,30 @@ void iwl_pcie_rx_allocator_work(struct work_struct *data) iwl_pcie_rx_allocator(trans_pcie->trans); } -static int iwl_pcie_free_bd_size(struct iwl_trans *trans, bool use_rx_td) +static int iwl_pcie_free_bd_size(struct iwl_trans *trans) { - struct iwl_rx_transfer_desc *rx_td; + if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_AX210) + return sizeof(struct iwl_rx_transfer_desc); - if (use_rx_td) - return sizeof(*rx_td); - else - return trans->trans_cfg->mq_rx_supported ? sizeof(__le64) : - sizeof(__le32); + return trans->trans_cfg->mq_rx_supported ? + sizeof(__le64) : sizeof(__le32); +} + +static int iwl_pcie_used_bd_size(struct iwl_trans *trans) +{ + if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_BZ) + return sizeof(struct iwl_rx_completion_desc_bz); + + if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_AX210) + return sizeof(struct iwl_rx_completion_desc); + + return sizeof(__le32); } static void iwl_pcie_free_rxq_dma(struct iwl_trans *trans, struct iwl_rxq *rxq) { - bool use_rx_td = (trans->trans_cfg->device_family >= - IWL_DEVICE_FAMILY_AX210); - int free_size = iwl_pcie_free_bd_size(trans, use_rx_td); + int free_size = iwl_pcie_free_bd_size(trans); if (rxq->bd) dma_free_coherent(trans->dev, @@ -682,8 +689,8 @@ static void iwl_pcie_free_rxq_dma(struct iwl_trans *trans, if (rxq->used_bd) dma_free_coherent(trans->dev, - (use_rx_td ? sizeof(*rxq->cd) : - sizeof(__le32)) * rxq->queue_size, + iwl_pcie_used_bd_size(trans) * + rxq->queue_size, rxq->used_bd, rxq->used_bd_dma); rxq->used_bd_dma = 0; rxq->used_bd = NULL; @@ -707,7 +714,7 @@ static int iwl_pcie_alloc_rxq_dma(struct iwl_trans *trans, else rxq->queue_size = RX_QUEUE_SIZE; - free_size = iwl_pcie_free_bd_size(trans, use_rx_td); + free_size = iwl_pcie_free_bd_size(trans); /* * Allocate the circular buffer of Read Buffer Descriptors @@ -720,14 +727,15 @@ static int iwl_pcie_alloc_rxq_dma(struct iwl_trans *trans, if (trans->trans_cfg->mq_rx_supported) { rxq->used_bd = dma_alloc_coherent(dev, - (use_rx_td ? sizeof(*rxq->cd) : sizeof(__le32)) * rxq->queue_size, + iwl_pcie_used_bd_size(trans) * + rxq->queue_size, &rxq->used_bd_dma, GFP_KERNEL); if (!rxq->used_bd) goto err; } - rxq->rb_stts = trans_pcie->base_rb_stts + rxq->id * rb_stts_size; + rxq->rb_stts = (u8 *)trans_pcie->base_rb_stts + rxq->id * rb_stts_size; rxq->rb_stts_dma = trans_pcie->base_rb_stts_dma + rxq->id * rb_stts_size; @@ -1042,6 +1050,22 @@ static int iwl_pcie_napi_poll_msix(struct napi_struct *napi, int budget) return ret; } +void iwl_pcie_rx_napi_sync(struct iwl_trans *trans) +{ + struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); + int i; + + if (unlikely(!trans_pcie->rxq)) + return; + + for (i = 0; i < trans->num_rx_queues; i++) { + struct iwl_rxq *rxq = &trans_pcie->rxq[i]; + + if (rxq && rxq->napi.poll) + napi_synchronize(&rxq->napi); + } +} + static int _iwl_pcie_rx_init(struct iwl_trans *trans) { struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); @@ -1419,6 +1443,7 @@ static struct iwl_rx_mem_buffer *iwl_pcie_get_rxb(struct iwl_trans *trans, u16 vid; BUILD_BUG_ON(sizeof(struct iwl_rx_completion_desc) != 32); + BUILD_BUG_ON(sizeof(struct iwl_rx_completion_desc_bz) != 4); if (!trans->trans_cfg->mq_rx_supported) { rxb = rxq->queue[i]; @@ -1426,11 +1451,20 @@ static struct iwl_rx_mem_buffer *iwl_pcie_get_rxb(struct iwl_trans *trans, return rxb; } - if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_AX210) { - vid = le16_to_cpu(rxq->cd[i].rbid); - *join = rxq->cd[i].flags & IWL_RX_CD_FLAGS_FRAGMENTED; + if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_BZ) { + struct iwl_rx_completion_desc_bz *cd = rxq->used_bd; + + vid = le16_to_cpu(cd[i].rbid); + *join = cd[i].flags & IWL_RX_CD_FLAGS_FRAGMENTED; + } else if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_AX210) { + struct iwl_rx_completion_desc *cd = rxq->used_bd; + + vid = le16_to_cpu(cd[i].rbid); + *join = cd[i].flags & IWL_RX_CD_FLAGS_FRAGMENTED; } else { - vid = le32_to_cpu(rxq->bd_32[i]) & 0x0FFF; /* 12-bit VID */ + __le32 *cd = rxq->used_bd; + + vid = le32_to_cpu(cd[i]) & 0x0FFF; /* 12-bit VID */ } if (!vid || vid > RX_POOL_SIZE(trans_pcie->num_rx_bufs)) diff --git a/drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.c b/drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.c index a9c19be29e92e..1b25a6627e5c7 100644 --- a/drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.c +++ b/drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.c @@ -165,6 +165,8 @@ void _iwl_trans_pcie_gen2_stop_device(struct iwl_trans *trans) if (test_and_clear_bit(STATUS_DEVICE_ENABLED, &trans->status)) { IWL_DEBUG_INFO(trans, "DEVICE_ENABLED bit was set and is now cleared\n"); + iwl_pcie_synchronize_irqs(trans); + iwl_pcie_rx_napi_sync(trans); iwl_txq_gen2_tx_free(trans); iwl_pcie_rx_stop(trans); } diff --git a/drivers/net/wireless/intel/iwlwifi/pcie/trans.c b/drivers/net/wireless/intel/iwlwifi/pcie/trans.c index 04e1f3829e96b..b97c461f5af66 100644 --- a/drivers/net/wireless/intel/iwlwifi/pcie/trans.c +++ b/drivers/net/wireless/intel/iwlwifi/pcie/trans.c @@ -1197,6 +1197,8 @@ static void _iwl_trans_pcie_stop_device(struct iwl_trans *trans) if (test_and_clear_bit(STATUS_DEVICE_ENABLED, &trans->status)) { IWL_DEBUG_INFO(trans, "DEVICE_ENABLED bit was set and is now cleared\n"); + iwl_pcie_synchronize_irqs(trans); + iwl_pcie_rx_napi_sync(trans); iwl_pcie_tx_stop(trans); iwl_pcie_rx_stop(trans); @@ -1987,12 +1989,18 @@ static void iwl_trans_pcie_removal_wk(struct work_struct *wk) container_of(wk, struct iwl_trans_pcie_removal, work); struct pci_dev *pdev = removal->pdev; static char *prop[] = {"EVENT=INACCESSIBLE", NULL}; + struct pci_bus *bus = pdev->bus; dev_err(&pdev->dev, "Device gone - attempting removal\n"); kobject_uevent_env(&pdev->dev.kobj, KOBJ_CHANGE, prop); pci_lock_rescan_remove(); pci_dev_put(pdev); pci_stop_and_remove_bus_device(pdev); + if (bus) { + if (bus->parent) + bus = bus->parent; + pci_rescan_bus(bus); + } pci_unlock_rescan_remove(); kfree(removal); @@ -2798,7 +2806,7 @@ static ssize_t iwl_dbgfs_monitor_data_read(struct file *file, { struct iwl_trans *trans = file->private_data; struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); - void *cpu_addr = (void *)trans->dbg.fw_mon.block, *curr_buf; + u8 *cpu_addr = (void *)trans->dbg.fw_mon.block, *curr_buf; struct cont_rec *data = &trans_pcie->fw_mon_data; u32 write_ptr_addr, wrap_cnt_addr, write_ptr, wrap_cnt; ssize_t size, bytes_copied = 0; diff --git a/drivers/net/wireless/intel/iwlwifi/pcie/tx.c b/drivers/net/wireless/intel/iwlwifi/pcie/tx.c index 4f6c187eed69c..76d25c62a28e2 100644 --- a/drivers/net/wireless/intel/iwlwifi/pcie/tx.c +++ b/drivers/net/wireless/intel/iwlwifi/pcie/tx.c @@ -154,7 +154,7 @@ static int iwl_pcie_txq_build_tfd(struct iwl_trans *trans, struct iwl_txq *txq, void *tfd; u32 num_tbs; - tfd = txq->tfds + trans->txqs.tfd.size * txq->write_ptr; + tfd = (u8 *)txq->tfds + trans->txqs.tfd.size * txq->write_ptr; if (reset) memset(tfd, 0, trans->txqs.tfd.size); diff --git a/drivers/net/wireless/intel/iwlwifi/queue/tx.c b/drivers/net/wireless/intel/iwlwifi/queue/tx.c index 0f3526b0c5b00..cd852b95d8125 100644 --- a/drivers/net/wireless/intel/iwlwifi/queue/tx.c +++ b/drivers/net/wireless/intel/iwlwifi/queue/tx.c @@ -189,7 +189,7 @@ static struct page *get_workaround_page(struct iwl_trans *trans, return NULL; /* set the chaining pointer to the previous page if there */ - *(void **)(page_address(ret) + PAGE_SIZE - sizeof(void *)) = *page_ptr; + *(void **)((u8 *)page_address(ret) + PAGE_SIZE - sizeof(void *)) = *page_ptr; *page_ptr = ret; return ret; @@ -314,7 +314,7 @@ struct iwl_tso_hdr_page *get_page_hdr(struct iwl_trans *trans, size_t len, return NULL; p->pos = page_address(p->page); /* set the chaining pointer to NULL */ - *(void **)(page_address(p->page) + PAGE_SIZE - sizeof(void *)) = NULL; + *(void **)((u8 *)page_address(p->page) + PAGE_SIZE - sizeof(void *)) = NULL; out: *page_ptr = p->page; get_page(p->page); @@ -963,7 +963,7 @@ void iwl_txq_free_tso_page(struct iwl_trans *trans, struct sk_buff *skb) while (next) { struct page *tmp = next; - next = *(void **)(page_address(next) + PAGE_SIZE - + next = *(void **)((u8 *)page_address(next) + PAGE_SIZE - sizeof(void *)); __free_page(tmp); } @@ -1520,7 +1520,7 @@ void iwl_txq_progress(struct iwl_txq *txq) /* Frees buffers until index _not_ inclusive */ void iwl_txq_reclaim(struct iwl_trans *trans, int txq_id, int ssn, - struct sk_buff_head *skbs) + struct sk_buff_head *skbs, bool is_flush) { struct iwl_txq *txq = trans->txqs.txq[txq_id]; int tfd_num = iwl_txq_get_cmd_index(txq, ssn); @@ -1591,9 +1591,11 @@ void iwl_txq_reclaim(struct iwl_trans *trans, int txq_id, int ssn, if (iwl_txq_space(trans, txq) > txq->low_mark && test_bit(txq_id, trans->txqs.queue_stopped)) { struct sk_buff_head overflow_skbs; + struct sk_buff *skb; __skb_queue_head_init(&overflow_skbs); - skb_queue_splice_init(&txq->overflow_q, &overflow_skbs); + skb_queue_splice_init(&txq->overflow_q, + is_flush ? skbs : &overflow_skbs); /* * We are going to transmit from the overflow queue. @@ -1613,8 +1615,7 @@ void iwl_txq_reclaim(struct iwl_trans *trans, int txq_id, int ssn, */ spin_unlock_bh(&txq->lock); - while (!skb_queue_empty(&overflow_skbs)) { - struct sk_buff *skb = __skb_dequeue(&overflow_skbs); + while ((skb = __skb_dequeue(&overflow_skbs))) { struct iwl_device_tx_cmd *dev_cmd_ptr; dev_cmd_ptr = *(void **)((u8 *)skb->cb + diff --git a/drivers/net/wireless/intel/iwlwifi/queue/tx.h b/drivers/net/wireless/intel/iwlwifi/queue/tx.h index 20efc62acf133..f488fc9f6b83e 100644 --- a/drivers/net/wireless/intel/iwlwifi/queue/tx.h +++ b/drivers/net/wireless/intel/iwlwifi/queue/tx.h @@ -41,7 +41,7 @@ static inline void *iwl_txq_get_tfd(struct iwl_trans *trans, if (trans->trans_cfg->use_tfh) idx = iwl_txq_get_cmd_index(txq, idx); - return txq->tfds + trans->txqs.tfd.size * idx; + return (u8 *)txq->tfds + trans->txqs.tfd.size * idx; } int iwl_txq_alloc(struct iwl_trans *trans, struct iwl_txq *txq, int slots_num, @@ -174,7 +174,7 @@ void iwl_txq_gen1_update_byte_cnt_tbl(struct iwl_trans *trans, struct iwl_txq *txq, u16 byte_cnt, int num_tbs); void iwl_txq_reclaim(struct iwl_trans *trans, int txq_id, int ssn, - struct sk_buff_head *skbs); + struct sk_buff_head *skbs, bool is_flush); void iwl_txq_set_q_ptrs(struct iwl_trans *trans, int txq_id, int ptr); void iwl_trans_txq_freeze_timer(struct iwl_trans *trans, unsigned long txqs, bool freeze); diff --git a/drivers/net/wireless/mac80211_hwsim.c b/drivers/net/wireless/mac80211_hwsim.c index c3c3b5aa87b0d..7d73502586839 100644 --- a/drivers/net/wireless/mac80211_hwsim.c +++ b/drivers/net/wireless/mac80211_hwsim.c @@ -2615,7 +2615,7 @@ static void mac80211_hwsim_get_et_strings(struct ieee80211_hw *hw, u32 sset, u8 *data) { if (sset == ETH_SS_STATS) - memcpy(data, *mac80211_hwsim_gstrings_stats, + memcpy(data, mac80211_hwsim_gstrings_stats, sizeof(mac80211_hwsim_gstrings_stats)); } @@ -3693,14 +3693,15 @@ static int hwsim_cloned_frame_received_nl(struct sk_buff *skb_2, frame_data_len = nla_len(info->attrs[HWSIM_ATTR_FRAME]); frame_data = (void *)nla_data(info->attrs[HWSIM_ATTR_FRAME]); + if (frame_data_len < sizeof(struct ieee80211_hdr_3addr) || + frame_data_len > IEEE80211_MAX_DATA_LEN) + goto err; + /* Allocate new skb here */ skb = alloc_skb(frame_data_len, GFP_KERNEL); if (skb == NULL) goto err; - if (frame_data_len > IEEE80211_MAX_DATA_LEN) - goto err; - /* Copy the data */ skb_put_data(skb, frame_data, frame_data_len); diff --git a/drivers/net/wireless/marvell/mwifiex/11n_rxreorder.c b/drivers/net/wireless/marvell/mwifiex/11n_rxreorder.c index 1046b59647f52..e5f34805c92cc 100644 --- a/drivers/net/wireless/marvell/mwifiex/11n_rxreorder.c +++ b/drivers/net/wireless/marvell/mwifiex/11n_rxreorder.c @@ -933,6 +933,14 @@ void mwifiex_11n_rxba_sync_event(struct mwifiex_private *priv, while (tlv_buf_left >= sizeof(*tlv_rxba)) { tlv_type = le16_to_cpu(tlv_rxba->header.type); tlv_len = le16_to_cpu(tlv_rxba->header.len); + if (size_add(sizeof(tlv_rxba->header), tlv_len) > tlv_buf_left) { + mwifiex_dbg(priv->adapter, WARN, + "TLV size (%zu) overflows event_buf buf_left=%d\n", + size_add(sizeof(tlv_rxba->header), tlv_len), + tlv_buf_left); + return; + } + if (tlv_type != TLV_TYPE_RXBA_SYNC) { mwifiex_dbg(priv->adapter, ERROR, "Wrong TLV id=0x%x\n", tlv_type); @@ -941,6 +949,14 @@ void mwifiex_11n_rxba_sync_event(struct mwifiex_private *priv, tlv_seq_num = le16_to_cpu(tlv_rxba->seq_num); tlv_bitmap_len = le16_to_cpu(tlv_rxba->bitmap_len); + if (size_add(sizeof(*tlv_rxba), tlv_bitmap_len) > tlv_buf_left) { + mwifiex_dbg(priv->adapter, WARN, + "TLV size (%zu) overflows event_buf buf_left=%d\n", + size_add(sizeof(*tlv_rxba), tlv_bitmap_len), + tlv_buf_left); + return; + } + mwifiex_dbg(priv->adapter, INFO, "%pM tid=%d seq_num=%d bitmap_len=%d\n", tlv_rxba->mac, tlv_rxba->tid, tlv_seq_num, @@ -977,8 +993,8 @@ void mwifiex_11n_rxba_sync_event(struct mwifiex_private *priv, } } - tlv_buf_left -= (sizeof(*tlv_rxba) + tlv_len); - tmp = (u8 *)tlv_rxba + tlv_len + sizeof(*tlv_rxba); + tlv_buf_left -= (sizeof(tlv_rxba->header) + tlv_len); + tmp = (u8 *)tlv_rxba + sizeof(tlv_rxba->header) + tlv_len; tlv_rxba = (struct mwifiex_ie_types_rxba_sync *)tmp; } } diff --git a/drivers/net/wireless/marvell/mwifiex/debugfs.c b/drivers/net/wireless/marvell/mwifiex/debugfs.c index dded92db1f373..1e7dc724c6a94 100644 --- a/drivers/net/wireless/marvell/mwifiex/debugfs.c +++ b/drivers/net/wireless/marvell/mwifiex/debugfs.c @@ -265,8 +265,11 @@ mwifiex_histogram_read(struct file *file, char __user *ubuf, if (!p) return -ENOMEM; - if (!priv || !priv->hist_data) - return -EFAULT; + if (!priv || !priv->hist_data) { + ret = -EFAULT; + goto free_and_exit; + } + phist_data = priv->hist_data; p += sprintf(p, "\n" @@ -321,6 +324,8 @@ mwifiex_histogram_read(struct file *file, char __user *ubuf, ret = simple_read_from_buffer(ubuf, count, ppos, (char *)page, (unsigned long)p - page); +free_and_exit: + free_page(page); return ret; } diff --git a/drivers/net/wireless/marvell/mwifiex/pcie.c b/drivers/net/wireless/marvell/mwifiex/pcie.c index 0f947f7a9a5bf..691625909854e 100644 --- a/drivers/net/wireless/marvell/mwifiex/pcie.c +++ b/drivers/net/wireless/marvell/mwifiex/pcie.c @@ -201,6 +201,8 @@ static int mwifiex_pcie_probe_of(struct device *dev) } static void mwifiex_pcie_work(struct work_struct *work); +static int mwifiex_pcie_delete_rxbd_ring(struct mwifiex_adapter *adapter); +static int mwifiex_pcie_delete_evtbd_ring(struct mwifiex_adapter *adapter); static int mwifiex_map_pci_memory(struct mwifiex_adapter *adapter, struct sk_buff *skb, @@ -814,14 +816,15 @@ static int mwifiex_init_rxq_ring(struct mwifiex_adapter *adapter) if (!skb) { mwifiex_dbg(adapter, ERROR, "Unable to allocate skb for RX ring.\n"); - kfree(card->rxbd_ring_vbase); return -ENOMEM; } if (mwifiex_map_pci_memory(adapter, skb, MWIFIEX_RX_DATA_BUF_SIZE, - DMA_FROM_DEVICE)) - return -1; + DMA_FROM_DEVICE)) { + kfree_skb(skb); + return -ENOMEM; + } buf_pa = MWIFIEX_SKB_DMA_ADDR(skb); @@ -871,7 +874,6 @@ static int mwifiex_pcie_init_evt_ring(struct mwifiex_adapter *adapter) if (!skb) { mwifiex_dbg(adapter, ERROR, "Unable to allocate skb for EVENT buf.\n"); - kfree(card->evtbd_ring_vbase); return -ENOMEM; } skb_put(skb, MAX_EVENT_SIZE); @@ -879,8 +881,7 @@ static int mwifiex_pcie_init_evt_ring(struct mwifiex_adapter *adapter) if (mwifiex_map_pci_memory(adapter, skb, MAX_EVENT_SIZE, DMA_FROM_DEVICE)) { kfree_skb(skb); - kfree(card->evtbd_ring_vbase); - return -1; + return -ENOMEM; } buf_pa = MWIFIEX_SKB_DMA_ADDR(skb); @@ -1080,6 +1081,7 @@ static int mwifiex_pcie_delete_txbd_ring(struct mwifiex_adapter *adapter) */ static int mwifiex_pcie_create_rxbd_ring(struct mwifiex_adapter *adapter) { + int ret; struct pcie_service_card *card = adapter->card; const struct mwifiex_pcie_card_reg *reg = card->pcie.reg; @@ -1118,7 +1120,10 @@ static int mwifiex_pcie_create_rxbd_ring(struct mwifiex_adapter *adapter) (u32)((u64)card->rxbd_ring_pbase >> 32), card->rxbd_ring_size); - return mwifiex_init_rxq_ring(adapter); + ret = mwifiex_init_rxq_ring(adapter); + if (ret) + mwifiex_pcie_delete_rxbd_ring(adapter); + return ret; } /* @@ -1149,6 +1154,7 @@ static int mwifiex_pcie_delete_rxbd_ring(struct mwifiex_adapter *adapter) */ static int mwifiex_pcie_create_evtbd_ring(struct mwifiex_adapter *adapter) { + int ret; struct pcie_service_card *card = adapter->card; const struct mwifiex_pcie_card_reg *reg = card->pcie.reg; @@ -1183,7 +1189,10 @@ static int mwifiex_pcie_create_evtbd_ring(struct mwifiex_adapter *adapter) (u32)((u64)card->evtbd_ring_pbase >> 32), card->evtbd_ring_size); - return mwifiex_pcie_init_evt_ring(adapter); + ret = mwifiex_pcie_init_evt_ring(adapter); + if (ret) + mwifiex_pcie_delete_evtbd_ring(adapter); + return ret; } /* diff --git a/drivers/net/wireless/marvell/mwifiex/sta_rx.c b/drivers/net/wireless/marvell/mwifiex/sta_rx.c index 0d2adf8879005..5b16e330014ac 100644 --- a/drivers/net/wireless/marvell/mwifiex/sta_rx.c +++ b/drivers/net/wireless/marvell/mwifiex/sta_rx.c @@ -98,12 +98,23 @@ int mwifiex_process_rx_packet(struct mwifiex_private *priv, rx_pkt_len = le16_to_cpu(local_rx_pd->rx_pkt_length); rx_pkt_hdr = (void *)local_rx_pd + rx_pkt_off; - if ((!memcmp(&rx_pkt_hdr->rfc1042_hdr, bridge_tunnel_header, - sizeof(bridge_tunnel_header))) || - (!memcmp(&rx_pkt_hdr->rfc1042_hdr, rfc1042_header, - sizeof(rfc1042_header)) && - ntohs(rx_pkt_hdr->rfc1042_hdr.snap_type) != ETH_P_AARP && - ntohs(rx_pkt_hdr->rfc1042_hdr.snap_type) != ETH_P_IPX)) { + if (sizeof(rx_pkt_hdr->eth803_hdr) + sizeof(rfc1042_header) + + rx_pkt_off > skb->len) { + mwifiex_dbg(priv->adapter, ERROR, + "wrong rx packet offset: len=%d, rx_pkt_off=%d\n", + skb->len, rx_pkt_off); + priv->stats.rx_dropped++; + dev_kfree_skb_any(skb); + return -1; + } + + if (sizeof(*rx_pkt_hdr) + rx_pkt_off <= skb->len && + ((!memcmp(&rx_pkt_hdr->rfc1042_hdr, bridge_tunnel_header, + sizeof(bridge_tunnel_header))) || + (!memcmp(&rx_pkt_hdr->rfc1042_hdr, rfc1042_header, + sizeof(rfc1042_header)) && + ntohs(rx_pkt_hdr->rfc1042_hdr.snap_type) != ETH_P_AARP && + ntohs(rx_pkt_hdr->rfc1042_hdr.snap_type) != ETH_P_IPX))) { /* * Replace the 803 header and rfc1042 header (llc/snap) with an * EthernetII header, keep the src/dst and snap_type @@ -206,7 +217,8 @@ int mwifiex_process_sta_rx_packet(struct mwifiex_private *priv, rx_pkt_hdr = (void *)local_rx_pd + rx_pkt_offset; - if ((rx_pkt_offset + rx_pkt_length) > (u16) skb->len) { + if ((rx_pkt_offset + rx_pkt_length) > skb->len || + sizeof(rx_pkt_hdr->eth803_hdr) + rx_pkt_offset > skb->len) { mwifiex_dbg(adapter, ERROR, "wrong rx packet: len=%d, rx_pkt_offset=%d, rx_pkt_length=%d\n", skb->len, rx_pkt_offset, rx_pkt_length); diff --git a/drivers/net/wireless/marvell/mwifiex/tdls.c b/drivers/net/wireless/marvell/mwifiex/tdls.c index 97bb87c3676bb..6c60621b6cccb 100644 --- a/drivers/net/wireless/marvell/mwifiex/tdls.c +++ b/drivers/net/wireless/marvell/mwifiex/tdls.c @@ -735,6 +735,7 @@ mwifiex_construct_tdls_action_frame(struct mwifiex_private *priv, int ret; u16 capab; struct ieee80211_ht_cap *ht_cap; + unsigned int extra; u8 radio, *pos; capab = priv->curr_bss_params.bss_descriptor.cap_info_bitmap; @@ -753,7 +754,10 @@ mwifiex_construct_tdls_action_frame(struct mwifiex_private *priv, switch (action_code) { case WLAN_PUB_ACTION_TDLS_DISCOVER_RES: - skb_put(skb, sizeof(mgmt->u.action.u.tdls_discover_resp) + 1); + /* See the layout of 'struct ieee80211_mgmt'. */ + extra = sizeof(mgmt->u.action.u.tdls_discover_resp) + + sizeof(mgmt->u.action.category); + skb_put(skb, extra); mgmt->u.action.category = WLAN_CATEGORY_PUBLIC; mgmt->u.action.u.tdls_discover_resp.action_code = WLAN_PUB_ACTION_TDLS_DISCOVER_RES; @@ -762,8 +766,7 @@ mwifiex_construct_tdls_action_frame(struct mwifiex_private *priv, mgmt->u.action.u.tdls_discover_resp.capability = cpu_to_le16(capab); /* move back for addr4 */ - memmove(pos + ETH_ALEN, &mgmt->u.action.category, - sizeof(mgmt->u.action.u.tdls_discover_resp)); + memmove(pos + ETH_ALEN, &mgmt->u.action, extra); /* init address 4 */ eth_broadcast_addr(pos); diff --git a/drivers/net/wireless/marvell/mwifiex/uap_txrx.c b/drivers/net/wireless/marvell/mwifiex/uap_txrx.c index 245ff644f81e3..8a5d0125a1abd 100644 --- a/drivers/net/wireless/marvell/mwifiex/uap_txrx.c +++ b/drivers/net/wireless/marvell/mwifiex/uap_txrx.c @@ -115,6 +115,16 @@ static void mwifiex_uap_queue_bridged_pkt(struct mwifiex_private *priv, return; } + if (sizeof(*rx_pkt_hdr) + + le16_to_cpu(uap_rx_pd->rx_pkt_offset) > skb->len) { + mwifiex_dbg(adapter, ERROR, + "wrong rx packet offset: len=%d,rx_pkt_offset=%d\n", + skb->len, le16_to_cpu(uap_rx_pd->rx_pkt_offset)); + priv->stats.rx_dropped++; + dev_kfree_skb_any(skb); + return; + } + if ((!memcmp(&rx_pkt_hdr->rfc1042_hdr, bridge_tunnel_header, sizeof(bridge_tunnel_header))) || (!memcmp(&rx_pkt_hdr->rfc1042_hdr, rfc1042_header, @@ -255,7 +265,15 @@ int mwifiex_handle_uap_rx_forward(struct mwifiex_private *priv, if (is_multicast_ether_addr(ra)) { skb_uap = skb_copy(skb, GFP_ATOMIC); - mwifiex_uap_queue_bridged_pkt(priv, skb_uap); + if (likely(skb_uap)) { + mwifiex_uap_queue_bridged_pkt(priv, skb_uap); + } else { + mwifiex_dbg(adapter, ERROR, + "failed to copy skb for uAP\n"); + priv->stats.rx_dropped++; + dev_kfree_skb_any(skb); + return -1; + } } else { if (mwifiex_get_sta_entry(priv, ra)) { /* Requeue Intra-BSS packet */ @@ -379,6 +397,16 @@ int mwifiex_process_uap_rx_packet(struct mwifiex_private *priv, rx_pkt_type = le16_to_cpu(uap_rx_pd->rx_pkt_type); rx_pkt_hdr = (void *)uap_rx_pd + le16_to_cpu(uap_rx_pd->rx_pkt_offset); + if (le16_to_cpu(uap_rx_pd->rx_pkt_offset) + + sizeof(rx_pkt_hdr->eth803_hdr) > skb->len) { + mwifiex_dbg(adapter, ERROR, + "wrong rx packet for struct ethhdr: len=%d, offset=%d\n", + skb->len, le16_to_cpu(uap_rx_pd->rx_pkt_offset)); + priv->stats.rx_dropped++; + dev_kfree_skb_any(skb); + return 0; + } + ether_addr_copy(ta, rx_pkt_hdr->eth803_hdr.h_source); if ((le16_to_cpu(uap_rx_pd->rx_pkt_offset) + diff --git a/drivers/net/wireless/marvell/mwifiex/util.c b/drivers/net/wireless/marvell/mwifiex/util.c index d583fa600a296..1f5a6dab9ce55 100644 --- a/drivers/net/wireless/marvell/mwifiex/util.c +++ b/drivers/net/wireless/marvell/mwifiex/util.c @@ -405,11 +405,15 @@ mwifiex_process_mgmt_packet(struct mwifiex_private *priv, } rx_pd = (struct rxpd *)skb->data; + pkt_len = le16_to_cpu(rx_pd->rx_pkt_length); + if (pkt_len < sizeof(struct ieee80211_hdr) + sizeof(pkt_len)) { + mwifiex_dbg(priv->adapter, ERROR, "invalid rx_pkt_length"); + return -1; + } skb_pull(skb, le16_to_cpu(rx_pd->rx_pkt_offset)); skb_pull(skb, sizeof(pkt_len)); - - pkt_len = le16_to_cpu(rx_pd->rx_pkt_length); + pkt_len -= sizeof(pkt_len); ieee_hdr = (void *)skb->data; if (ieee80211_is_mgmt(ieee_hdr->frame_control)) { @@ -422,7 +426,7 @@ mwifiex_process_mgmt_packet(struct mwifiex_private *priv, skb->data + sizeof(struct ieee80211_hdr), pkt_len - sizeof(struct ieee80211_hdr)); - pkt_len -= ETH_ALEN + sizeof(pkt_len); + pkt_len -= ETH_ALEN; rx_pd->rx_pkt_length = cpu_to_le16(pkt_len); cfg80211_rx_mgmt(&priv->wdev, priv->roc_cfg.chan.center_freq, diff --git a/drivers/net/wireless/mediatek/mt76/dma.c b/drivers/net/wireless/mediatek/mt76/dma.c index 69e0e68757f53..f225a34e21861 100644 --- a/drivers/net/wireless/mediatek/mt76/dma.c +++ b/drivers/net/wireless/mediatek/mt76/dma.c @@ -16,11 +16,11 @@ mt76_alloc_txwi(struct mt76_dev *dev) int size; size = L1_CACHE_ALIGN(dev->drv->txwi_size + sizeof(*t)); - txwi = devm_kzalloc(dev->dev, size, GFP_ATOMIC); + txwi = kzalloc(size, GFP_ATOMIC); if (!txwi) return NULL; - addr = dma_map_single(dev->dev, txwi, dev->drv->txwi_size, + addr = dma_map_single(dev->dma_dev, txwi, dev->drv->txwi_size, DMA_TO_DEVICE); t = (struct mt76_txwi_cache *)(txwi + dev->drv->txwi_size); t->dma_addr = addr; @@ -73,9 +73,11 @@ mt76_free_pending_txwi(struct mt76_dev *dev) struct mt76_txwi_cache *t; local_bh_disable(); - while ((t = __mt76_get_txwi(dev)) != NULL) - dma_unmap_single(dev->dev, t->dma_addr, dev->drv->txwi_size, + while ((t = __mt76_get_txwi(dev)) != NULL) { + dma_unmap_single(dev->dma_dev, t->dma_addr, dev->drv->txwi_size, DMA_TO_DEVICE); + kfree(mt76_get_txwi_ptr(dev, t)); + } local_bh_enable(); } @@ -121,7 +123,7 @@ mt76_dma_alloc_queue(struct mt76_dev *dev, struct mt76_queue *q, q->hw_idx = idx; size = q->ndesc * sizeof(struct mt76_desc); - q->desc = dmam_alloc_coherent(dev->dev, size, &q->desc_dma, GFP_KERNEL); + q->desc = dmam_alloc_coherent(dev->dma_dev, size, &q->desc_dma, GFP_KERNEL); if (!q->desc) return -ENOMEM; @@ -203,11 +205,11 @@ mt76_dma_tx_cleanup_idx(struct mt76_dev *dev, struct mt76_queue *q, int idx, struct mt76_queue_entry *e = &q->entry[idx]; if (!e->skip_buf0) - dma_unmap_single(dev->dev, e->dma_addr[0], e->dma_len[0], + dma_unmap_single(dev->dma_dev, e->dma_addr[0], e->dma_len[0], DMA_TO_DEVICE); if (!e->skip_buf1) - dma_unmap_single(dev->dev, e->dma_addr[1], e->dma_len[1], + dma_unmap_single(dev->dma_dev, e->dma_addr[1], e->dma_len[1], DMA_TO_DEVICE); if (e->txwi == DMA_DUMMY_DATA) @@ -288,7 +290,7 @@ mt76_dma_get_buf(struct mt76_dev *dev, struct mt76_queue *q, int idx, if (info) *info = le32_to_cpu(desc->info); - dma_unmap_single(dev->dev, buf_addr, buf_len, DMA_FROM_DEVICE); + dma_unmap_single(dev->dma_dev, buf_addr, buf_len, DMA_FROM_DEVICE); e->buf = NULL; return buf; @@ -325,9 +327,9 @@ mt76_dma_tx_queue_skb_raw(struct mt76_dev *dev, struct mt76_queue *q, if (q->queued + 1 >= q->ndesc - 1) goto error; - addr = dma_map_single(dev->dev, skb->data, skb->len, + addr = dma_map_single(dev->dma_dev, skb->data, skb->len, DMA_TO_DEVICE); - if (unlikely(dma_mapping_error(dev->dev, addr))) + if (unlikely(dma_mapping_error(dev->dma_dev, addr))) goto error; buf.addr = addr; @@ -347,8 +349,8 @@ mt76_dma_tx_queue_skb_raw(struct mt76_dev *dev, struct mt76_queue *q, static int mt76_dma_tx_queue_skb(struct mt76_dev *dev, struct mt76_queue *q, - struct sk_buff *skb, struct mt76_wcid *wcid, - struct ieee80211_sta *sta) + enum mt76_txq_id qid, struct sk_buff *skb, + struct mt76_wcid *wcid, struct ieee80211_sta *sta) { struct ieee80211_tx_status status = { .sta = sta, @@ -374,8 +376,8 @@ mt76_dma_tx_queue_skb(struct mt76_dev *dev, struct mt76_queue *q, mt76_insert_hdr_pad(skb); len = skb_headlen(skb); - addr = dma_map_single(dev->dev, skb->data, len, DMA_TO_DEVICE); - if (unlikely(dma_mapping_error(dev->dev, addr))) + addr = dma_map_single(dev->dma_dev, skb->data, len, DMA_TO_DEVICE); + if (unlikely(dma_mapping_error(dev->dma_dev, addr))) goto free; tx_info.buf[n].addr = t->dma_addr; @@ -387,9 +389,9 @@ mt76_dma_tx_queue_skb(struct mt76_dev *dev, struct mt76_queue *q, if (n == ARRAY_SIZE(tx_info.buf)) goto unmap; - addr = dma_map_single(dev->dev, iter->data, iter->len, + addr = dma_map_single(dev->dma_dev, iter->data, iter->len, DMA_TO_DEVICE); - if (unlikely(dma_mapping_error(dev->dev, addr))) + if (unlikely(dma_mapping_error(dev->dma_dev, addr))) goto unmap; tx_info.buf[n].addr = addr; @@ -402,10 +404,10 @@ mt76_dma_tx_queue_skb(struct mt76_dev *dev, struct mt76_queue *q, goto unmap; } - dma_sync_single_for_cpu(dev->dev, t->dma_addr, dev->drv->txwi_size, + dma_sync_single_for_cpu(dev->dma_dev, t->dma_addr, dev->drv->txwi_size, DMA_TO_DEVICE); - ret = dev->drv->tx_prepare_skb(dev, txwi, q->qid, wcid, sta, &tx_info); - dma_sync_single_for_device(dev->dev, t->dma_addr, dev->drv->txwi_size, + ret = dev->drv->tx_prepare_skb(dev, txwi, qid, wcid, sta, &tx_info); + dma_sync_single_for_device(dev->dma_dev, t->dma_addr, dev->drv->txwi_size, DMA_TO_DEVICE); if (ret < 0) goto unmap; @@ -415,7 +417,7 @@ mt76_dma_tx_queue_skb(struct mt76_dev *dev, struct mt76_queue *q, unmap: for (n--; n > 0; n--) - dma_unmap_single(dev->dev, tx_info.buf[n].addr, + dma_unmap_single(dev->dma_dev, tx_info.buf[n].addr, tx_info.buf[n].len, DMA_TO_DEVICE); free: @@ -459,8 +461,8 @@ mt76_dma_rx_fill(struct mt76_dev *dev, struct mt76_queue *q) if (!buf) break; - addr = dma_map_single(dev->dev, buf, len, DMA_FROM_DEVICE); - if (unlikely(dma_mapping_error(dev->dev, addr))) { + addr = dma_map_single(dev->dma_dev, buf, len, DMA_FROM_DEVICE); + if (unlikely(dma_mapping_error(dev->dma_dev, addr))) { skb_free_frag(buf); break; } diff --git a/drivers/net/wireless/mediatek/mt76/mac80211.c b/drivers/net/wireless/mediatek/mt76/mac80211.c index 9d644eb921f47..d2634020d6e8c 100644 --- a/drivers/net/wireless/mediatek/mt76/mac80211.c +++ b/drivers/net/wireless/mediatek/mt76/mac80211.c @@ -449,6 +449,7 @@ mt76_alloc_device(struct device *pdev, unsigned int size, dev->hw = hw; dev->dev = pdev; dev->drv = drv_ops; + dev->dma_dev = pdev; phy = &dev->phy; phy->dev = dev; diff --git a/drivers/net/wireless/mediatek/mt76/mt76.h b/drivers/net/wireless/mediatek/mt76/mt76.h index 130b6f7e44ae9..6430e76e1559b 100644 --- a/drivers/net/wireless/mediatek/mt76/mt76.h +++ b/drivers/net/wireless/mediatek/mt76/mt76.h @@ -195,8 +195,8 @@ struct mt76_queue_ops { u32 ring_base); int (*tx_queue_skb)(struct mt76_dev *dev, struct mt76_queue *q, - struct sk_buff *skb, struct mt76_wcid *wcid, - struct ieee80211_sta *sta); + enum mt76_txq_id qid, struct sk_buff *skb, + struct mt76_wcid *wcid, struct ieee80211_sta *sta); int (*tx_queue_skb_raw)(struct mt76_dev *dev, struct mt76_queue *q, struct sk_buff *skb, u32 tx_info); @@ -667,6 +667,7 @@ struct mt76_dev { const struct mt76_driver_ops *drv; const struct mt76_mcu_ops *mcu_ops; struct device *dev; + struct device *dma_dev; struct mt76_mcu mcu; diff --git a/drivers/net/wireless/mediatek/mt76/mt7603/beacon.c b/drivers/net/wireless/mediatek/mt76/mt7603/beacon.c index 5d4522f440b74..7fa6b0ed9d478 100644 --- a/drivers/net/wireless/mediatek/mt76/mt7603/beacon.c +++ b/drivers/net/wireless/mediatek/mt76/mt7603/beacon.c @@ -9,6 +9,23 @@ struct beacon_bc_data { int count[MT7603_MAX_INTERFACES]; }; +static void +mt7603_mac_stuck_beacon_recovery(struct mt7603_dev *dev) +{ + if (dev->beacon_check % 5 != 4) + return; + + mt76_clear(dev, MT_WPDMA_GLO_CFG, MT_WPDMA_GLO_CFG_TX_DMA_EN); + mt76_set(dev, MT_SCH_4, MT_SCH_4_RESET); + mt76_clear(dev, MT_SCH_4, MT_SCH_4_RESET); + mt76_set(dev, MT_WPDMA_GLO_CFG, MT_WPDMA_GLO_CFG_TX_DMA_EN); + + mt76_set(dev, MT_WF_CFG_OFF_WOCCR, MT_WF_CFG_OFF_WOCCR_TMAC_GC_DIS); + mt76_set(dev, MT_ARB_SCR, MT_ARB_SCR_TX_DISABLE); + mt76_clear(dev, MT_ARB_SCR, MT_ARB_SCR_TX_DISABLE); + mt76_clear(dev, MT_WF_CFG_OFF_WOCCR, MT_WF_CFG_OFF_WOCCR_TMAC_GC_DIS); +} + static void mt7603_update_beacon_iter(void *priv, u8 *mac, struct ieee80211_vif *vif) { @@ -16,6 +33,8 @@ mt7603_update_beacon_iter(void *priv, u8 *mac, struct ieee80211_vif *vif) struct mt76_dev *mdev = &dev->mt76; struct mt7603_vif *mvif = (struct mt7603_vif *)vif->drv_priv; struct sk_buff *skb = NULL; + u32 om_idx = mvif->idx; + u32 val; if (!(mdev->beacon_mask & BIT(mvif->idx))) return; @@ -24,20 +43,33 @@ mt7603_update_beacon_iter(void *priv, u8 *mac, struct ieee80211_vif *vif) if (!skb) return; - mt76_tx_queue_skb(dev, dev->mphy.q_tx[MT_TXQ_BEACON], skb, - &mvif->sta.wcid, NULL); + if (om_idx) + om_idx |= 0x10; + val = MT_DMA_FQCR0_BUSY | MT_DMA_FQCR0_MODE | + FIELD_PREP(MT_DMA_FQCR0_TARGET_BSS, om_idx) | + FIELD_PREP(MT_DMA_FQCR0_DEST_PORT_ID, 3) | + FIELD_PREP(MT_DMA_FQCR0_DEST_QUEUE_ID, 8); spin_lock_bh(&dev->ps_lock); - mt76_wr(dev, MT_DMA_FQCR0, MT_DMA_FQCR0_BUSY | - FIELD_PREP(MT_DMA_FQCR0_TARGET_WCID, mvif->sta.wcid.idx) | - FIELD_PREP(MT_DMA_FQCR0_TARGET_QID, - dev->mphy.q_tx[MT_TXQ_CAB]->hw_idx) | - FIELD_PREP(MT_DMA_FQCR0_DEST_PORT_ID, 3) | - FIELD_PREP(MT_DMA_FQCR0_DEST_QUEUE_ID, 8)); - if (!mt76_poll(dev, MT_DMA_FQCR0, MT_DMA_FQCR0_BUSY, 0, 5000)) + mt76_wr(dev, MT_DMA_FQCR0, val | + FIELD_PREP(MT_DMA_FQCR0_TARGET_QID, MT_TX_HW_QUEUE_BCN)); + if (!mt76_poll(dev, MT_DMA_FQCR0, MT_DMA_FQCR0_BUSY, 0, 5000)) { dev->beacon_check = MT7603_WATCHDOG_TIMEOUT; + goto out; + } + + mt76_wr(dev, MT_DMA_FQCR0, val | + FIELD_PREP(MT_DMA_FQCR0_TARGET_QID, MT_TX_HW_QUEUE_BMC)); + if (!mt76_poll(dev, MT_DMA_FQCR0, MT_DMA_FQCR0_BUSY, 0, 5000)) { + dev->beacon_check = MT7603_WATCHDOG_TIMEOUT; + goto out; + } + mt76_tx_queue_skb(dev, dev->mphy.q_tx[MT_TXQ_BEACON], + MT_TXQ_BEACON, skb, &mvif->sta.wcid, NULL); + +out: spin_unlock_bh(&dev->ps_lock); } @@ -81,6 +113,18 @@ void mt7603_pre_tbtt_tasklet(struct tasklet_struct *t) data.dev = dev; __skb_queue_head_init(&data.q); + /* Flush all previous CAB queue packets and beacons */ + mt76_wr(dev, MT_WF_ARB_CAB_FLUSH, GENMASK(30, 16) | BIT(0)); + + mt76_queue_tx_cleanup(dev, dev->mphy.q_tx[MT_TXQ_CAB], false); + mt76_queue_tx_cleanup(dev, dev->mphy.q_tx[MT_TXQ_BEACON], false); + + if (dev->mphy.q_tx[MT_TXQ_BEACON]->queued > 0) + dev->beacon_check++; + else + dev->beacon_check = 0; + mt7603_mac_stuck_beacon_recovery(dev); + q = dev->mphy.q_tx[MT_TXQ_BEACON]; spin_lock_bh(&q->lock); ieee80211_iterate_active_interfaces_atomic(mt76_hw(dev), @@ -89,14 +133,9 @@ void mt7603_pre_tbtt_tasklet(struct tasklet_struct *t) mt76_queue_kick(dev, q); spin_unlock_bh(&q->lock); - /* Flush all previous CAB queue packets */ - mt76_wr(dev, MT_WF_ARB_CAB_FLUSH, GENMASK(30, 16) | BIT(0)); - - mt76_queue_tx_cleanup(dev, dev->mphy.q_tx[MT_TXQ_CAB], false); - mt76_csa_check(mdev); if (mdev->csa_complete) - goto out; + return; q = dev->mphy.q_tx[MT_TXQ_CAB]; do { @@ -108,7 +147,7 @@ void mt7603_pre_tbtt_tasklet(struct tasklet_struct *t) skb_queue_len(&data.q) < 8); if (skb_queue_empty(&data.q)) - goto out; + return; for (i = 0; i < ARRAY_SIZE(data.tail); i++) { if (!data.tail[i]) @@ -123,7 +162,7 @@ void mt7603_pre_tbtt_tasklet(struct tasklet_struct *t) struct ieee80211_vif *vif = info->control.vif; struct mt7603_vif *mvif = (struct mt7603_vif *)vif->drv_priv; - mt76_tx_queue_skb(dev, q, skb, &mvif->sta.wcid, NULL); + mt76_tx_queue_skb(dev, q, MT_TXQ_CAB, skb, &mvif->sta.wcid, NULL); } mt76_queue_kick(dev, q); spin_unlock_bh(&q->lock); @@ -136,11 +175,6 @@ void mt7603_pre_tbtt_tasklet(struct tasklet_struct *t) MT_WF_ARB_CAB_START_BSSn(0) | (MT_WF_ARB_CAB_START_BSS0n(1) * ((1 << (MT7603_MAX_INTERFACES - 1)) - 1))); - -out: - mt76_queue_tx_cleanup(dev, dev->mphy.q_tx[MT_TXQ_BEACON], false); - if (dev->mphy.q_tx[MT_TXQ_BEACON]->queued > hweight8(mdev->beacon_mask)) - dev->beacon_check++; } void mt7603_beacon_set_timer(struct mt7603_dev *dev, int idx, int intval) diff --git a/drivers/net/wireless/mediatek/mt76/mt7603/core.c b/drivers/net/wireless/mediatek/mt76/mt7603/core.c index 60a996b63c0c0..915b8349146af 100644 --- a/drivers/net/wireless/mediatek/mt76/mt7603/core.c +++ b/drivers/net/wireless/mediatek/mt76/mt7603/core.c @@ -42,11 +42,13 @@ irqreturn_t mt7603_irq_handler(int irq, void *dev_instance) } if (intr & MT_INT_RX_DONE(0)) { + dev->rx_pse_check = 0; mt7603_irq_disable(dev, MT_INT_RX_DONE(0)); napi_schedule(&dev->mt76.napi[0]); } if (intr & MT_INT_RX_DONE(1)) { + dev->rx_pse_check = 0; mt7603_irq_disable(dev, MT_INT_RX_DONE(1)); napi_schedule(&dev->mt76.napi[1]); } diff --git a/drivers/net/wireless/mediatek/mt76/mt7603/mac.c b/drivers/net/wireless/mediatek/mt76/mt7603/mac.c index 3745512b1eb3c..915a1043c869e 100644 --- a/drivers/net/wireless/mediatek/mt76/mt7603/mac.c +++ b/drivers/net/wireless/mediatek/mt76/mt7603/mac.c @@ -1561,20 +1561,29 @@ static bool mt7603_rx_pse_busy(struct mt7603_dev *dev) { u32 addr, val; - if (mt76_rr(dev, MT_MCU_DEBUG_RESET) & MT_MCU_DEBUG_RESET_QUEUES) - return true; - if (mt7603_rx_fifo_busy(dev)) - return false; + goto out; addr = mt7603_reg_map(dev, MT_CLIENT_BASE_PHYS_ADDR + MT_CLIENT_STATUS); mt76_wr(dev, addr, 3); val = mt76_rr(dev, addr) >> 16; - if (is_mt7628(dev) && (val & 0x4001) == 0x4001) - return true; + if (!(val & BIT(0))) + return false; + + if (is_mt7628(dev)) + val &= 0xa000; + else + val &= 0x8000; + if (!val) + return false; + +out: + if (mt76_rr(dev, MT_INT_SOURCE_CSR) & + (MT_INT_RX_DONE(0) | MT_INT_RX_DONE(1))) + return false; - return (val & 0x8001) == 0x8001 || (val & 0xe001) == 0xe001; + return true; } static bool diff --git a/drivers/net/wireless/mediatek/mt76/mt7603/regs.h b/drivers/net/wireless/mediatek/mt76/mt7603/regs.h index 3b901090b29c6..9b84db233aceb 100644 --- a/drivers/net/wireless/mediatek/mt76/mt7603/regs.h +++ b/drivers/net/wireless/mediatek/mt76/mt7603/regs.h @@ -462,6 +462,11 @@ enum { #define MT_WF_SEC_BASE 0x21a00 #define MT_WF_SEC(ofs) (MT_WF_SEC_BASE + (ofs)) +#define MT_WF_CFG_OFF_BASE 0x21e00 +#define MT_WF_CFG_OFF(ofs) (MT_WF_CFG_OFF_BASE + (ofs)) +#define MT_WF_CFG_OFF_WOCCR MT_WF_CFG_OFF(0x004) +#define MT_WF_CFG_OFF_WOCCR_TMAC_GC_DIS BIT(4) + #define MT_SEC_SCR MT_WF_SEC(0x004) #define MT_SEC_SCR_MASK_ORDER GENMASK(1, 0) diff --git a/drivers/net/wireless/mediatek/mt76/mt76x02_eeprom.c b/drivers/net/wireless/mediatek/mt76/mt76x02_eeprom.c index 0acabba2d1a50..5d402cf2951cb 100644 --- a/drivers/net/wireless/mediatek/mt76/mt76x02_eeprom.c +++ b/drivers/net/wireless/mediatek/mt76/mt76x02_eeprom.c @@ -131,15 +131,8 @@ u8 mt76x02_get_lna_gain(struct mt76x02_dev *dev, s8 *lna_2g, s8 *lna_5g, struct ieee80211_channel *chan) { - u16 val; u8 lna; - val = mt76x02_eeprom_get(dev, MT_EE_NIC_CONF_1); - if (val & MT_EE_NIC_CONF_1_LNA_EXT_2G) - *lna_2g = 0; - if (val & MT_EE_NIC_CONF_1_LNA_EXT_5G) - memset(lna_5g, 0, sizeof(s8) * 3); - if (chan->band == NL80211_BAND_2GHZ) lna = *lna_2g; else if (chan->hw_value <= 64) diff --git a/drivers/net/wireless/mediatek/mt76/mt76x02_mmio.c b/drivers/net/wireless/mediatek/mt76/mt76x02_mmio.c index b50084bbe83de..6ba3a7975e1bf 100644 --- a/drivers/net/wireless/mediatek/mt76/mt76x02_mmio.c +++ b/drivers/net/wireless/mediatek/mt76/mt76x02_mmio.c @@ -59,7 +59,8 @@ static void mt76x02_pre_tbtt_tasklet(struct tasklet_struct *t) struct ieee80211_vif *vif = info->control.vif; struct mt76x02_vif *mvif = (struct mt76x02_vif *)vif->drv_priv; - mt76_tx_queue_skb(dev, q, skb, &mvif->group_wcid, NULL); + mt76_tx_queue_skb(dev, q, MT_TXQ_PSD, skb, &mvif->group_wcid, + NULL); } spin_unlock_bh(&q->lock); } diff --git a/drivers/net/wireless/mediatek/mt76/mt76x2/eeprom.c b/drivers/net/wireless/mediatek/mt76/mt76x2/eeprom.c index c57e05a5c65e4..91807bf662dde 100644 --- a/drivers/net/wireless/mediatek/mt76/mt76x2/eeprom.c +++ b/drivers/net/wireless/mediatek/mt76/mt76x2/eeprom.c @@ -256,7 +256,8 @@ void mt76x2_read_rx_gain(struct mt76x02_dev *dev) struct ieee80211_channel *chan = dev->mphy.chandef.chan; int channel = chan->hw_value; s8 lna_5g[3], lna_2g; - u8 lna; + bool use_lna; + u8 lna = 0; u16 val; if (chan->band == NL80211_BAND_2GHZ) @@ -275,7 +276,15 @@ void mt76x2_read_rx_gain(struct mt76x02_dev *dev) dev->cal.rx.mcu_gain |= (lna_5g[1] & 0xff) << 16; dev->cal.rx.mcu_gain |= (lna_5g[2] & 0xff) << 24; - lna = mt76x02_get_lna_gain(dev, &lna_2g, lna_5g, chan); + val = mt76x02_eeprom_get(dev, MT_EE_NIC_CONF_1); + if (chan->band == NL80211_BAND_2GHZ) + use_lna = !(val & MT_EE_NIC_CONF_1_LNA_EXT_2G); + else + use_lna = !(val & MT_EE_NIC_CONF_1_LNA_EXT_5G); + + if (use_lna) + lna = mt76x02_get_lna_gain(dev, &lna_2g, lna_5g, chan); + dev->cal.rx.lna_gain = mt76x02_sign_extend(lna, 8); } EXPORT_SYMBOL_GPL(mt76x2_read_rx_gain); diff --git a/drivers/net/wireless/mediatek/mt76/mt7915/main.c b/drivers/net/wireless/mediatek/mt76/mt7915/main.c index 7a4f277a16223..09ea97a81fb4f 100644 --- a/drivers/net/wireless/mediatek/mt76/mt7915/main.c +++ b/drivers/net/wireless/mediatek/mt76/mt7915/main.c @@ -441,7 +441,8 @@ static int mt7915_config(struct ieee80211_hw *hw, u32 changed) ieee80211_wake_queues(hw); } - if (changed & IEEE80211_CONF_CHANGE_POWER) { + if (changed & (IEEE80211_CONF_CHANGE_POWER | + IEEE80211_CONF_CHANGE_CHANNEL)) { ret = mt7915_mcu_set_txpower_sku(phy); if (ret) return ret; diff --git a/drivers/net/wireless/mediatek/mt76/sdio.c b/drivers/net/wireless/mediatek/mt76/sdio.c index 9e639d0b9c631..4964f19558be2 100644 --- a/drivers/net/wireless/mediatek/mt76/sdio.c +++ b/drivers/net/wireless/mediatek/mt76/sdio.c @@ -243,8 +243,8 @@ static void mt76s_tx_status_data(struct work_struct *work) static int mt76s_tx_queue_skb(struct mt76_dev *dev, struct mt76_queue *q, - struct sk_buff *skb, struct mt76_wcid *wcid, - struct ieee80211_sta *sta) + enum mt76_txq_id qid, struct sk_buff *skb, + struct mt76_wcid *wcid, struct ieee80211_sta *sta) { struct mt76_tx_info tx_info = { .skb = skb, @@ -256,7 +256,7 @@ mt76s_tx_queue_skb(struct mt76_dev *dev, struct mt76_queue *q, return -ENOSPC; skb->prev = skb->next = NULL; - err = dev->drv->tx_prepare_skb(dev, NULL, q->qid, wcid, sta, &tx_info); + err = dev->drv->tx_prepare_skb(dev, NULL, qid, wcid, sta, &tx_info); if (err < 0) return err; diff --git a/drivers/net/wireless/mediatek/mt76/testmode.c b/drivers/net/wireless/mediatek/mt76/testmode.c index f73ffbd6e622d..12b13946fba18 100644 --- a/drivers/net/wireless/mediatek/mt76/testmode.c +++ b/drivers/net/wireless/mediatek/mt76/testmode.c @@ -6,6 +6,7 @@ static const struct nla_policy mt76_tm_policy[NUM_MT76_TM_ATTRS] = { [MT76_TM_ATTR_RESET] = { .type = NLA_FLAG }, [MT76_TM_ATTR_STATE] = { .type = NLA_U8 }, [MT76_TM_ATTR_TX_COUNT] = { .type = NLA_U32 }, + [MT76_TM_ATTR_TX_LENGTH] = { .type = NLA_U32 }, [MT76_TM_ATTR_TX_RATE_MODE] = { .type = NLA_U8 }, [MT76_TM_ATTR_TX_RATE_NSS] = { .type = NLA_U8 }, [MT76_TM_ATTR_TX_RATE_IDX] = { .type = NLA_U8 }, @@ -48,8 +49,8 @@ void mt76_testmode_tx_pending(struct mt76_phy *phy) q->queued < q->ndesc / 2) { int ret; - ret = dev->queue_ops->tx_queue_skb(dev, q, skb_get(skb), wcid, - NULL); + ret = dev->queue_ops->tx_queue_skb(dev, q, qid, skb_get(skb), + wcid, NULL); if (ret < 0) break; diff --git a/drivers/net/wireless/mediatek/mt76/tx.c b/drivers/net/wireless/mediatek/mt76/tx.c index 7d126634547f1..134a735a06329 100644 --- a/drivers/net/wireless/mediatek/mt76/tx.c +++ b/drivers/net/wireless/mediatek/mt76/tx.c @@ -259,7 +259,7 @@ __mt76_tx_queue_skb(struct mt76_phy *phy, int qid, struct sk_buff *skb, int idx; non_aql = !info->tx_time_est; - idx = dev->queue_ops->tx_queue_skb(dev, q, skb, wcid, sta); + idx = dev->queue_ops->tx_queue_skb(dev, q, qid, skb, wcid, sta); if (idx < 0 || !sta) return idx; diff --git a/drivers/net/wireless/mediatek/mt76/usb.c b/drivers/net/wireless/mediatek/mt76/usb.c index b47343e321b81..392632c3f1b1d 100644 --- a/drivers/net/wireless/mediatek/mt76/usb.c +++ b/drivers/net/wireless/mediatek/mt76/usb.c @@ -901,8 +901,8 @@ mt76u_tx_setup_buffers(struct mt76_dev *dev, struct sk_buff *skb, static int mt76u_tx_queue_skb(struct mt76_dev *dev, struct mt76_queue *q, - struct sk_buff *skb, struct mt76_wcid *wcid, - struct ieee80211_sta *sta) + enum mt76_txq_id qid, struct sk_buff *skb, + struct mt76_wcid *wcid, struct ieee80211_sta *sta) { struct mt76_tx_info tx_info = { .skb = skb, @@ -914,7 +914,7 @@ mt76u_tx_queue_skb(struct mt76_dev *dev, struct mt76_queue *q, return -ENOSPC; skb->prev = skb->next = NULL; - err = dev->drv->tx_prepare_skb(dev, NULL, q->qid, wcid, sta, &tx_info); + err = dev->drv->tx_prepare_skb(dev, NULL, qid, wcid, sta, &tx_info); if (err < 0) return err; diff --git a/drivers/net/wireless/microchip/wilc1000/wlan.c b/drivers/net/wireless/microchip/wilc1000/wlan.c index 380699983a75b..e2cd1589818f0 100644 --- a/drivers/net/wireless/microchip/wilc1000/wlan.c +++ b/drivers/net/wireless/microchip/wilc1000/wlan.c @@ -1458,7 +1458,7 @@ int wilc_wlan_init(struct net_device *dev) } if (!wilc->vmm_table) - wilc->vmm_table = kzalloc(WILC_VMM_TBL_SIZE, GFP_KERNEL); + wilc->vmm_table = kcalloc(WILC_VMM_TBL_SIZE, sizeof(u32), GFP_KERNEL); if (!wilc->vmm_table) { ret = -ENOBUFS; diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/dm.c b/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/dm.c index 6f61d6a106272..5a34894a533be 100644 --- a/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/dm.c +++ b/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/dm.c @@ -799,7 +799,7 @@ static void rtl88e_dm_check_edca_turbo(struct ieee80211_hw *hw) } if (rtlpriv->btcoexist.bt_edca_dl != 0) { - edca_be_ul = rtlpriv->btcoexist.bt_edca_dl; + edca_be_dl = rtlpriv->btcoexist.bt_edca_dl; bt_change_edca = true; } diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8192c/dm_common.c b/drivers/net/wireless/realtek/rtlwifi/rtl8192c/dm_common.c index 0b6a15c2e5ccd..d92aad60edfe9 100644 --- a/drivers/net/wireless/realtek/rtlwifi/rtl8192c/dm_common.c +++ b/drivers/net/wireless/realtek/rtlwifi/rtl8192c/dm_common.c @@ -640,7 +640,7 @@ static void rtl92c_dm_check_edca_turbo(struct ieee80211_hw *hw) } if (rtlpriv->btcoexist.bt_edca_dl != 0) { - edca_be_ul = rtlpriv->btcoexist.bt_edca_dl; + edca_be_dl = rtlpriv->btcoexist.bt_edca_dl; bt_change_edca = true; } diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/dm.c b/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/dm.c index 8ada31380efa4..0ff8e355c23a4 100644 --- a/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/dm.c +++ b/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/dm.c @@ -466,7 +466,7 @@ static void rtl8723e_dm_check_edca_turbo(struct ieee80211_hw *hw) } if (rtlpriv->btcoexist.bt_edca_dl != 0) { - edca_be_ul = rtlpriv->btcoexist.bt_edca_dl; + edca_be_dl = rtlpriv->btcoexist.bt_edca_dl; bt_change_edca = true; } diff --git a/drivers/net/wireless/realtek/rtw88/debug.c b/drivers/net/wireless/realtek/rtw88/debug.c index dfd52cff5d02f..1cc2b7b948044 100644 --- a/drivers/net/wireless/realtek/rtw88/debug.c +++ b/drivers/net/wireless/realtek/rtw88/debug.c @@ -1061,9 +1061,9 @@ static struct rtw_debugfs_priv rtw_debug_priv_dm_cap = { #define rtw_debugfs_add_core(name, mode, fopname, parent) \ do { \ rtw_debug_priv_ ##name.rtwdev = rtwdev; \ - if (!debugfs_create_file(#name, mode, \ + if (IS_ERR(debugfs_create_file(#name, mode, \ parent, &rtw_debug_priv_ ##name,\ - &file_ops_ ##fopname)) \ + &file_ops_ ##fopname))) \ pr_debug("Unable to initialize debugfs:%s\n", \ #name); \ } while (0) diff --git a/drivers/net/xen-netback/interface.c b/drivers/net/xen-netback/interface.c index e1a5610b1747e..f20ddaaa24518 100644 --- a/drivers/net/xen-netback/interface.c +++ b/drivers/net/xen-netback/interface.c @@ -41,9 +41,6 @@ #include #include -#define XENVIF_QUEUE_LENGTH 32 -#define XENVIF_NAPI_WEIGHT 64 - /* Number of bytes allowed on the internal guest Rx queue. */ #define XENVIF_RX_QUEUE_BYTES (XEN_NETIF_RX_RING_SIZE/2 * PAGE_SIZE) @@ -528,8 +525,6 @@ struct xenvif *xenvif_alloc(struct device *parent, domid_t domid, dev->features = dev->hw_features | NETIF_F_RXCSUM; dev->ethtool_ops = &xenvif_ethtool_ops; - dev->tx_queue_len = XENVIF_QUEUE_LENGTH; - dev->min_mtu = ETH_MIN_MTU; dev->max_mtu = ETH_MAX_MTU - VLAN_ETH_HLEN; @@ -725,7 +720,7 @@ int xenvif_connect_data(struct xenvif_queue *queue, atomic_set(&queue->inflight_packets, 0); netif_napi_add(queue->vif->dev, &queue->napi, xenvif_poll, - XENVIF_NAPI_WEIGHT); + NAPI_POLL_WEIGHT); queue->stalled = true; diff --git a/drivers/net/xen-netfront.c b/drivers/net/xen-netfront.c index 6e73d3a00eecd..8d544118c9a47 100644 --- a/drivers/net/xen-netfront.c +++ b/drivers/net/xen-netfront.c @@ -1007,7 +1007,7 @@ static u32 xennet_run_xdp(struct netfront_queue *queue, struct page *pdata, break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(queue->info->netdev, prog, act); } return act; diff --git a/drivers/ntb/ntb_transport.c b/drivers/ntb/ntb_transport.c index 2abd2235bbcab..9532108d2dce1 100644 --- a/drivers/ntb/ntb_transport.c +++ b/drivers/ntb/ntb_transport.c @@ -909,7 +909,7 @@ static int ntb_set_mw(struct ntb_transport_ctx *nt, int num_mw, return 0; } -static void ntb_qp_link_down_reset(struct ntb_transport_qp *qp) +static void ntb_qp_link_context_reset(struct ntb_transport_qp *qp) { qp->link_is_up = false; qp->active = false; @@ -932,6 +932,13 @@ static void ntb_qp_link_down_reset(struct ntb_transport_qp *qp) qp->tx_async = 0; } +static void ntb_qp_link_down_reset(struct ntb_transport_qp *qp) +{ + ntb_qp_link_context_reset(qp); + if (qp->remote_rx_info) + qp->remote_rx_info->entry = qp->rx_max_entry - 1; +} + static void ntb_qp_link_cleanup(struct ntb_transport_qp *qp) { struct ntb_transport_ctx *nt = qp->transport; @@ -1174,7 +1181,7 @@ static int ntb_transport_init_queue(struct ntb_transport_ctx *nt, qp->ndev = nt->ndev; qp->client_ready = false; qp->event_handler = NULL; - ntb_qp_link_down_reset(qp); + ntb_qp_link_context_reset(qp); if (mw_num < qp_count % mw_count) num_qps_mw = qp_count / mw_count + 1; @@ -2276,9 +2283,13 @@ int ntb_transport_tx_enqueue(struct ntb_transport_qp *qp, void *cb, void *data, struct ntb_queue_entry *entry; int rc; - if (!qp || !qp->link_is_up || !len) + if (!qp || !len) return -EINVAL; + /* If the qp link is down already, just ignore. */ + if (!qp->link_is_up) + return 0; + entry = ntb_list_rm(&qp->ntb_tx_free_q_lock, &qp->tx_free_q); if (!entry) { qp->tx_err_no_buf++; @@ -2418,7 +2429,7 @@ unsigned int ntb_transport_tx_free_entry(struct ntb_transport_qp *qp) unsigned int head = qp->tx_index; unsigned int tail = qp->remote_rx_info->entry; - return tail > head ? tail - head : qp->tx_max_entry + tail - head; + return tail >= head ? tail - head : qp->tx_max_entry + tail - head; } EXPORT_SYMBOL_GPL(ntb_transport_tx_free_entry); diff --git a/drivers/nvdimm/of_pmem.c b/drivers/nvdimm/of_pmem.c index 10dbdcdfb9ce9..0243789ba914b 100644 --- a/drivers/nvdimm/of_pmem.c +++ b/drivers/nvdimm/of_pmem.c @@ -30,7 +30,13 @@ static int of_pmem_region_probe(struct platform_device *pdev) if (!priv) return -ENOMEM; - priv->bus_desc.provider_name = kstrdup(pdev->name, GFP_KERNEL); + priv->bus_desc.provider_name = devm_kstrdup(&pdev->dev, pdev->name, + GFP_KERNEL); + if (!priv->bus_desc.provider_name) { + kfree(priv); + return -ENOMEM; + } + priv->bus_desc.module = THIS_MODULE; priv->bus_desc.of_node = np; diff --git a/drivers/nvdimm/region_devs.c b/drivers/nvdimm/region_devs.c index 70ad891a76bae..c2d3343b5596b 100644 --- a/drivers/nvdimm/region_devs.c +++ b/drivers/nvdimm/region_devs.c @@ -966,7 +966,8 @@ unsigned int nd_region_acquire_lane(struct nd_region *nd_region) { unsigned int cpu, lane; - cpu = get_cpu(); + migrate_disable(); + cpu = smp_processor_id(); if (nd_region->num_lanes < nr_cpu_ids) { struct nd_percpu_lane *ndl_lock, *ndl_count; @@ -985,16 +986,15 @@ EXPORT_SYMBOL(nd_region_acquire_lane); void nd_region_release_lane(struct nd_region *nd_region, unsigned int lane) { if (nd_region->num_lanes < nr_cpu_ids) { - unsigned int cpu = get_cpu(); + unsigned int cpu = smp_processor_id(); struct nd_percpu_lane *ndl_lock, *ndl_count; ndl_count = per_cpu_ptr(nd_region->lane, cpu); ndl_lock = per_cpu_ptr(nd_region->lane, lane); if (--ndl_count->count == 0) spin_unlock(&ndl_lock->lock); - put_cpu(); } - put_cpu(); + migrate_enable(); } EXPORT_SYMBOL(nd_region_release_lane); diff --git a/drivers/nvme/host/nvme.h b/drivers/nvme/host/nvme.h index b4ce2a5c47080..04b7498b05db2 100644 --- a/drivers/nvme/host/nvme.h +++ b/drivers/nvme/host/nvme.h @@ -154,6 +154,11 @@ enum nvme_quirks { * No temperature thresholds for channels other than 0 (Composite). */ NVME_QUIRK_NO_SECONDARY_TEMP_THRESH = (1 << 19), + + /* + * Disables simple suspend/resume path. + */ + NVME_QUIRK_FORCE_NO_SIMPLE_SUSPEND = (1 << 20), }; /* diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c index bb3813e8474f4..fd20f3fdb1592 100644 --- a/drivers/nvme/host/pci.c +++ b/drivers/nvme/host/pci.c @@ -384,14 +384,6 @@ static int nvme_pci_npages_sgl(void) NVME_CTRL_PAGE_SIZE); } -static size_t nvme_pci_iod_alloc_size(void) -{ - size_t npages = max(nvme_pci_npages_prp(), nvme_pci_npages_sgl()); - - return sizeof(__le64 *) * npages + - sizeof(struct scatterlist) * NVME_MAX_SEGS; -} - static int nvme_admin_init_hctx(struct blk_mq_hw_ctx *hctx, void *data, unsigned int hctx_idx) { @@ -2662,6 +2654,22 @@ static void nvme_release_prp_pools(struct nvme_dev *dev) dma_pool_destroy(dev->prp_small_pool); } +static int nvme_pci_alloc_iod_mempool(struct nvme_dev *dev) +{ + size_t npages = max(nvme_pci_npages_prp(), nvme_pci_npages_sgl()); + size_t alloc_size = sizeof(__le64 *) * npages + + sizeof(struct scatterlist) * NVME_MAX_SEGS; + + WARN_ON_ONCE(alloc_size > PAGE_SIZE); + dev->iod_mempool = mempool_create_node(1, + mempool_kmalloc, mempool_kfree, + (void *)alloc_size, GFP_KERNEL, + dev_to_node(dev->dev)); + if (!dev->iod_mempool) + return -ENOMEM; + return 0; +} + static void nvme_free_tagset(struct nvme_dev *dev) { if (dev->tagset.tags) @@ -2669,6 +2677,7 @@ static void nvme_free_tagset(struct nvme_dev *dev) dev->ctrl.tagset = NULL; } +/* pairs with nvme_pci_alloc_dev */ static void nvme_pci_free_ctrl(struct nvme_ctrl *ctrl) { struct nvme_dev *dev = to_nvme_dev(ctrl); @@ -2944,6 +2953,18 @@ static unsigned long check_vendor_combination_bug(struct pci_dev *pdev) if ((dmi_match(DMI_BOARD_VENDOR, "LENOVO")) && dmi_match(DMI_BOARD_NAME, "LNVNB161216")) return NVME_QUIRK_SIMPLE_SUSPEND; + } else if (pdev->vendor == 0x2646 && (pdev->device == 0x2263 || + pdev->device == 0x500f)) { + /* + * Exclude some Kingston NV1 and A2000 devices from + * NVME_QUIRK_SIMPLE_SUSPEND. Do a full suspend to save a + * lot fo energy with s2idle sleep on some TUXEDO platforms. + */ + if (dmi_match(DMI_BOARD_NAME, "NS5X_NS7XAU") || + dmi_match(DMI_BOARD_NAME, "NS5x_7xAU") || + dmi_match(DMI_BOARD_NAME, "NS5x_7xPU") || + dmi_match(DMI_BOARD_NAME, "PH4PRX1_PH6PRX1")) + return NVME_QUIRK_FORCE_NO_SIMPLE_SUSPEND; } return 0; @@ -2958,20 +2979,20 @@ static void nvme_async_probe(void *data, async_cookie_t cookie) nvme_put_ctrl(&dev->ctrl); } -static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id) +static struct nvme_dev *nvme_pci_alloc_dev(struct pci_dev *pdev, + const struct pci_device_id *id) { - int node, result = -ENOMEM; - struct nvme_dev *dev; unsigned long quirks = id->driver_data; - size_t alloc_size; - - node = dev_to_node(&pdev->dev); - if (node == NUMA_NO_NODE) - set_dev_node(&pdev->dev, first_memory_node); + int node = dev_to_node(&pdev->dev); + struct nvme_dev *dev; + int ret = -ENOMEM; dev = kzalloc_node(sizeof(*dev), GFP_KERNEL, node); if (!dev) - return -ENOMEM; + return ERR_PTR(-ENOMEM); + INIT_WORK(&dev->ctrl.reset_work, nvme_reset_work); + INIT_WORK(&dev->remove_work, nvme_remove_dead_ctrl_work); + mutex_init(&dev->shutdown_lock); dev->nr_write_queues = write_queues; dev->nr_poll_queues = poll_queues; @@ -2979,26 +3000,14 @@ static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id) dev->queues = kcalloc_node(dev->nr_allocated_queues, sizeof(struct nvme_queue), GFP_KERNEL, node); if (!dev->queues) - goto free; + goto out_free_dev; dev->dev = get_device(&pdev->dev); - pci_set_drvdata(pdev, dev); - - result = nvme_dev_map(dev); - if (result) - goto put_pci; - - INIT_WORK(&dev->ctrl.reset_work, nvme_reset_work); - INIT_WORK(&dev->remove_work, nvme_remove_dead_ctrl_work); - mutex_init(&dev->shutdown_lock); - - result = nvme_setup_prp_pools(dev); - if (result) - goto unmap; quirks |= check_vendor_combination_bug(pdev); - - if (!noacpi && acpi_storage_d3(&pdev->dev)) { + if (!noacpi && + !(quirks & NVME_QUIRK_FORCE_NO_SIMPLE_SUSPEND) && + acpi_storage_d3(&pdev->dev)) { /* * Some systems use a bios work around to ask for D3 on * platforms that support kernel managed suspend. @@ -3007,46 +3016,54 @@ static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id) "platform quirk: setting simple suspend\n"); quirks |= NVME_QUIRK_SIMPLE_SUSPEND; } + ret = nvme_init_ctrl(&dev->ctrl, &pdev->dev, &nvme_pci_ctrl_ops, + quirks); + if (ret) + goto out_put_device; + return dev; - /* - * Double check that our mempool alloc size will cover the biggest - * command we support. - */ - alloc_size = nvme_pci_iod_alloc_size(); - WARN_ON_ONCE(alloc_size > PAGE_SIZE); +out_put_device: + put_device(dev->dev); + kfree(dev->queues); +out_free_dev: + kfree(dev); + return ERR_PTR(ret); +} - dev->iod_mempool = mempool_create_node(1, mempool_kmalloc, - mempool_kfree, - (void *) alloc_size, - GFP_KERNEL, node); - if (!dev->iod_mempool) { - result = -ENOMEM; - goto release_pools; - } +static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id) +{ + struct nvme_dev *dev; + int result = -ENOMEM; - result = nvme_init_ctrl(&dev->ctrl, &pdev->dev, &nvme_pci_ctrl_ops, - quirks); + dev = nvme_pci_alloc_dev(pdev, id); + if (IS_ERR(dev)) + return PTR_ERR(dev); + + result = nvme_dev_map(dev); + if (result) + goto out_uninit_ctrl; + + result = nvme_setup_prp_pools(dev); + if (result) + goto out_dev_unmap; + + result = nvme_pci_alloc_iod_mempool(dev); if (result) - goto release_mempool; + goto out_release_prp_pools; dev_info(dev->ctrl.device, "pci function %s\n", dev_name(&pdev->dev)); + pci_set_drvdata(pdev, dev); nvme_reset_ctrl(&dev->ctrl); async_schedule(nvme_async_probe, dev); - return 0; - release_mempool: - mempool_destroy(dev->iod_mempool); - release_pools: +out_release_prp_pools: nvme_release_prp_pools(dev); - unmap: +out_dev_unmap: nvme_dev_unmap(dev); - put_pci: - put_device(dev->dev); - free: - kfree(dev->queues); - kfree(dev); +out_uninit_ctrl: + nvme_uninit_ctrl(&dev->ctrl); return result; } @@ -3304,7 +3321,8 @@ static const struct pci_device_id nvme_id_table[] = { { PCI_VDEVICE(INTEL, 0x0a54), /* Intel P4500/P4600 */ .driver_data = NVME_QUIRK_STRIPE_SIZE | NVME_QUIRK_DEALLOCATE_ZEROES | - NVME_QUIRK_IGNORE_DEV_SUBNQN, }, + NVME_QUIRK_IGNORE_DEV_SUBNQN | + NVME_QUIRK_BOGUS_NID, }, { PCI_VDEVICE(INTEL, 0x0a55), /* Dell Express Flash P4600 */ .driver_data = NVME_QUIRK_STRIPE_SIZE | NVME_QUIRK_DEALLOCATE_ZEROES, }, diff --git a/drivers/nvme/host/rdma.c b/drivers/nvme/host/rdma.c index 061a6026771cc..dd7573ff6d5ee 100644 --- a/drivers/nvme/host/rdma.c +++ b/drivers/nvme/host/rdma.c @@ -645,6 +645,9 @@ static void __nvme_rdma_stop_queue(struct nvme_rdma_queue *queue) static void nvme_rdma_stop_queue(struct nvme_rdma_queue *queue) { + if (!test_bit(NVME_RDMA_Q_ALLOCATED, &queue->flags)) + return; + mutex_lock(&queue->queue_lock); if (test_and_clear_bit(NVME_RDMA_Q_LIVE, &queue->flags)) __nvme_rdma_stop_queue(queue); diff --git a/drivers/nvme/target/fabrics-cmd.c b/drivers/nvme/target/fabrics-cmd.c index 7d0454cee9205..e5ee3d3ce1649 100644 --- a/drivers/nvme/target/fabrics-cmd.c +++ b/drivers/nvme/target/fabrics-cmd.c @@ -206,6 +206,8 @@ static void nvmet_execute_admin_connect(struct nvmet_req *req) goto out; } + d->subsysnqn[NVMF_NQN_FIELD_LEN - 1] = '\0'; + d->hostnqn[NVMF_NQN_FIELD_LEN - 1] = '\0'; status = nvmet_alloc_ctrl(d->subsysnqn, d->hostnqn, req, le32_to_cpu(c->kato), &ctrl); if (status) @@ -263,6 +265,8 @@ static void nvmet_execute_io_connect(struct nvmet_req *req) goto out; } + d->subsysnqn[NVMF_NQN_FIELD_LEN - 1] = '\0'; + d->hostnqn[NVMF_NQN_FIELD_LEN - 1] = '\0'; ctrl = nvmet_ctrl_find_get(d->subsysnqn, d->hostnqn, le16_to_cpu(d->cntlid), req); if (!ctrl) { diff --git a/drivers/nvmem/imx-ocotp.c b/drivers/nvmem/imx-ocotp.c index 08f41328cc711..73eea9d0c11bd 100644 --- a/drivers/nvmem/imx-ocotp.c +++ b/drivers/nvmem/imx-ocotp.c @@ -485,7 +485,7 @@ static const struct ocotp_params imx6sl_params = { }; static const struct ocotp_params imx6sll_params = { - .nregs = 128, + .nregs = 80, .bank_address_words = 0, .set_timing = imx_ocotp_set_imx6_timing, .ctrl = IMX_OCOTP_BM_CTRL_DEFAULT, @@ -499,14 +499,14 @@ static const struct ocotp_params imx6sx_params = { }; static const struct ocotp_params imx6ul_params = { - .nregs = 128, + .nregs = 144, .bank_address_words = 0, .set_timing = imx_ocotp_set_imx6_timing, .ctrl = IMX_OCOTP_BM_CTRL_DEFAULT, }; static const struct ocotp_params imx6ull_params = { - .nregs = 64, + .nregs = 80, .bank_address_words = 0, .set_timing = imx_ocotp_set_imx6_timing, .ctrl = IMX_OCOTP_BM_CTRL_DEFAULT, diff --git a/drivers/of/dynamic.c b/drivers/of/dynamic.c index 4e436f2d13aeb..ffb7b0446afde 100644 --- a/drivers/of/dynamic.c +++ b/drivers/of/dynamic.c @@ -104,8 +104,9 @@ int of_reconfig_notify(unsigned long action, struct of_reconfig_data *p) * * Returns the new state of a device based on the notifier used. * - * Return: 0 on device going from enabled to disabled, 1 on device - * going from disabled to enabled and -1 on no change. + * Return: OF_RECONFIG_CHANGE_REMOVE on device going from enabled to + * disabled, OF_RECONFIG_CHANGE_ADD on device going from disabled to + * enabled and OF_RECONFIG_NO_CHANGE on no change. */ int of_reconfig_get_state_change(unsigned long action, struct of_reconfig_data *pr) { @@ -901,13 +902,13 @@ int of_changeset_action(struct of_changeset *ocs, unsigned long action, { struct of_changeset_entry *ce; + if (WARN_ON(action >= ARRAY_SIZE(action_names))) + return -EINVAL; + ce = kzalloc(sizeof(*ce), GFP_KERNEL); if (!ce) return -ENOMEM; - if (WARN_ON(action >= ARRAY_SIZE(action_names))) - return -EINVAL; - /* get a reference to the node */ ce->action = action; ce->np = of_node_get(np); diff --git a/drivers/of/kexec.c b/drivers/of/kexec.c index 3a07cc58e7d7a..d10fd54415c2c 100644 --- a/drivers/of/kexec.c +++ b/drivers/of/kexec.c @@ -165,7 +165,7 @@ int ima_get_kexec_buffer(void **addr, size_t *size) /** * ima_free_kexec_buffer - free memory used by the IMA buffer */ -int ima_free_kexec_buffer(void) +int __init ima_free_kexec_buffer(void) { int ret; unsigned long addr; diff --git a/drivers/of/overlay.c b/drivers/of/overlay.c index 8f2ddba3947e5..cea5ad907235e 100644 --- a/drivers/of/overlay.c +++ b/drivers/of/overlay.c @@ -45,8 +45,8 @@ struct target { /** * struct fragment - info about fragment nodes in overlay expanded device tree - * @target: target of the overlay operation * @overlay: pointer to the __overlay__ node + * @target: target of the overlay operation */ struct fragment { struct device_node *overlay; @@ -752,8 +752,6 @@ static int init_overlay_changeset(struct overlay_changeset *ovcs) if (!of_node_is_root(ovcs->overlay_root)) pr_debug("%s() ovcs->overlay_root is not root\n", __func__); - of_changeset_init(&ovcs->cset); - cnt = 0; /* fragment nodes */ @@ -995,6 +993,7 @@ int of_overlay_fdt_apply(const void *overlay_fdt, u32 overlay_fdt_size, INIT_LIST_HEAD(&ovcs->ovcs_list); list_add_tail(&ovcs->ovcs_list, &ovcs_list); + of_changeset_init(&ovcs->cset); /* * Must create permanent copy of FDT because of_fdt_unflatten_tree() diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c index a9871e2f0a0bb..073a3f44c4049 100644 --- a/drivers/of/unittest.c +++ b/drivers/of/unittest.c @@ -70,7 +70,7 @@ static void __init of_unittest_find_node_by_name(void) np = of_find_node_by_path("/testcase-data"); name = kasprintf(GFP_KERNEL, "%pOF", np); - unittest(np && !strcmp("/testcase-data", name), + unittest(np && name && !strcmp("/testcase-data", name), "find /testcase-data failed\n"); of_node_put(np); kfree(name); @@ -81,14 +81,14 @@ static void __init of_unittest_find_node_by_name(void) np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a"); name = kasprintf(GFP_KERNEL, "%pOF", np); - unittest(np && !strcmp("/testcase-data/phandle-tests/consumer-a", name), + unittest(np && name && !strcmp("/testcase-data/phandle-tests/consumer-a", name), "find /testcase-data/phandle-tests/consumer-a failed\n"); of_node_put(np); kfree(name); np = of_find_node_by_path("testcase-alias"); name = kasprintf(GFP_KERNEL, "%pOF", np); - unittest(np && !strcmp("/testcase-data", name), + unittest(np && name && !strcmp("/testcase-data", name), "find testcase-alias failed\n"); of_node_put(np); kfree(name); @@ -99,7 +99,7 @@ static void __init of_unittest_find_node_by_name(void) np = of_find_node_by_path("testcase-alias/phandle-tests/consumer-a"); name = kasprintf(GFP_KERNEL, "%pOF", np); - unittest(np && !strcmp("/testcase-data/phandle-tests/consumer-a", name), + unittest(np && name && !strcmp("/testcase-data/phandle-tests/consumer-a", name), "find testcase-alias/phandle-tests/consumer-a failed\n"); of_node_put(np); kfree(name); @@ -1373,6 +1373,8 @@ static void attach_node_and_children(struct device_node *np) const char *full_name; full_name = kasprintf(GFP_KERNEL, "%pOF", np); + if (!full_name) + return; if (!strcmp(full_name, "/__local_fixups__") || !strcmp(full_name, "/__fixups__")) { @@ -2071,7 +2073,7 @@ static int __init of_unittest_apply_revert_overlay_check(int overlay_nr, of_unittest_untrack_overlay(save_id); /* unittest device must be again in before state */ - if (of_unittest_device_exists(unittest_nr, PDEV_OVERLAY) != before) { + if (of_unittest_device_exists(unittest_nr, ovtype) != before) { unittest(0, "%s with device @\"%s\" %s\n", overlay_name_from_nr(overlay_nr), unittest_path(unittest_nr, ovtype), diff --git a/drivers/opp/core.c b/drivers/opp/core.c index 4960d5f8c8bcb..dbd69d8e44e42 100644 --- a/drivers/opp/core.c +++ b/drivers/opp/core.c @@ -2392,7 +2392,7 @@ struct opp_table *dev_pm_opp_attach_genpd(struct device *dev, virt_dev = dev_pm_domain_attach_by_name(dev, *name); if (IS_ERR_OR_NULL(virt_dev)) { - ret = PTR_ERR(virt_dev) ? : -ENODEV; + ret = virt_dev ? PTR_ERR(virt_dev) : -ENODEV; dev_err(dev, "Couldn't attach to pm_domain: %d\n", ret); goto err; } diff --git a/drivers/parisc/iosapic.c b/drivers/parisc/iosapic.c index 93ea922618c3d..56562ae99f683 100644 --- a/drivers/parisc/iosapic.c +++ b/drivers/parisc/iosapic.c @@ -202,9 +202,9 @@ static inline void iosapic_write(void __iomem *iosapic, unsigned int reg, u32 va static DEFINE_SPINLOCK(iosapic_lock); -static inline void iosapic_eoi(void __iomem *addr, unsigned int data) +static inline void iosapic_eoi(__le32 __iomem *addr, __le32 data) { - __raw_writel(data, addr); + __raw_writel((__force u32)data, addr); } /* diff --git a/drivers/parisc/iosapic_private.h b/drivers/parisc/iosapic_private.h index 73ecc657ad954..bd8ff40162b4b 100644 --- a/drivers/parisc/iosapic_private.h +++ b/drivers/parisc/iosapic_private.h @@ -118,8 +118,8 @@ struct iosapic_irt { struct vector_info { struct iosapic_info *iosapic; /* I/O SAPIC this vector is on */ struct irt_entry *irte; /* IRT entry */ - u32 __iomem *eoi_addr; /* precalculate EOI reg address */ - u32 eoi_data; /* IA64: ? PA: swapped txn_data */ + __le32 __iomem *eoi_addr; /* precalculate EOI reg address */ + __le32 eoi_data; /* IA64: ? PA: swapped txn_data */ int txn_irq; /* virtual IRQ number for processor */ ulong txn_addr; /* IA64: id_eid PA: partial HPA */ u32 txn_data; /* CPU interrupt bit */ diff --git a/drivers/parisc/led.c b/drivers/parisc/led.c index 4c0551f89c449..d4dc7f6addf26 100644 --- a/drivers/parisc/led.c +++ b/drivers/parisc/led.c @@ -56,8 +56,8 @@ static int led_type __read_mostly = -1; static unsigned char lastleds; /* LED state from most recent update */ static unsigned int led_heartbeat __read_mostly = 1; -static unsigned int led_diskio __read_mostly = 1; -static unsigned int led_lanrxtx __read_mostly = 1; +static unsigned int led_diskio __read_mostly; +static unsigned int led_lanrxtx __read_mostly; static char lcd_text[32] __read_mostly; static char lcd_text_default[32] __read_mostly; static int lcd_no_led_support __read_mostly = 0; /* KittyHawk doesn't support LED on its LCD */ diff --git a/drivers/parport/parport_pc.c b/drivers/parport/parport_pc.c index 925be41eeebec..de5a823f30310 100644 --- a/drivers/parport/parport_pc.c +++ b/drivers/parport/parport_pc.c @@ -2613,6 +2613,8 @@ enum parport_pc_pci_cards { netmos_9865, quatech_sppxp100, wch_ch382l, + brainboxes_uc146, + brainboxes_px203, }; @@ -2676,6 +2678,8 @@ static struct parport_pc_pci { /* netmos_9865 */ { 1, { { 0, -1 }, } }, /* quatech_sppxp100 */ { 1, { { 0, 1 }, } }, /* wch_ch382l */ { 1, { { 2, -1 }, } }, + /* brainboxes_uc146 */ { 1, { { 3, -1 }, } }, + /* brainboxes_px203 */ { 1, { { 0, -1 }, } }, }; static const struct pci_device_id parport_pc_pci_tbl[] = { @@ -2767,6 +2771,23 @@ static const struct pci_device_id parport_pc_pci_tbl[] = { PCI_ANY_ID, PCI_ANY_ID, 0, 0, quatech_sppxp100 }, /* WCH CH382L PCI-E single parallel port card */ { 0x1c00, 0x3050, 0x1c00, 0x3050, 0, 0, wch_ch382l }, + /* Brainboxes IX-500/550 */ + { PCI_VENDOR_ID_INTASHIELD, 0x402a, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport }, + /* Brainboxes UC-146/UC-157 */ + { PCI_VENDOR_ID_INTASHIELD, 0x0be1, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, brainboxes_uc146 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0be2, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, brainboxes_uc146 }, + /* Brainboxes PX-146/PX-257 */ + { PCI_VENDOR_ID_INTASHIELD, 0x401c, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport }, + /* Brainboxes PX-203 */ + { PCI_VENDOR_ID_INTASHIELD, 0x4007, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, brainboxes_px203 }, + /* Brainboxes PX-475 */ + { PCI_VENDOR_ID_INTASHIELD, 0x401f, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, oxsemi_pcie_pport }, { 0, } /* terminate list */ }; MODULE_DEVICE_TABLE(pci, parport_pc_pci_tbl); diff --git a/drivers/pci/Kconfig b/drivers/pci/Kconfig index 43e615aa12ffa..d98fafdd0f99d 100644 --- a/drivers/pci/Kconfig +++ b/drivers/pci/Kconfig @@ -184,7 +184,7 @@ config PCI_LABEL config PCI_HYPERV tristate "Hyper-V PCI Frontend" - depends on X86_64 && HYPERV && PCI_MSI && PCI_MSI_IRQ_DOMAIN && SYSFS + depends on ((X86 && X86_64) || ARM64) && HYPERV && PCI_MSI && PCI_MSI_IRQ_DOMAIN && SYSFS select PCI_HYPERV_INTERFACE help The PCI device frontend driver allows the kernel to import arbitrary diff --git a/drivers/pci/controller/Kconfig b/drivers/pci/controller/Kconfig index 326f7d13024f9..b24edba0b870e 100644 --- a/drivers/pci/controller/Kconfig +++ b/drivers/pci/controller/Kconfig @@ -280,7 +280,7 @@ config PCIE_BRCMSTB config PCI_HYPERV_INTERFACE tristate "Hyper-V PCI Interface" - depends on X86 && HYPERV && PCI_MSI && PCI_MSI_IRQ_DOMAIN && X86_64 + depends on ((X86 && X86_64) || ARM64) && HYPERV && PCI_MSI && PCI_MSI_IRQ_DOMAIN help The Hyper-V PCI Interface is a helper driver allows other drivers to have a common interface with the Hyper-V PCI frontend driver. diff --git a/drivers/pci/controller/dwc/pci-exynos.c b/drivers/pci/controller/dwc/pci-exynos.c index c24dab383654b..2696a4544f102 100644 --- a/drivers/pci/controller/dwc/pci-exynos.c +++ b/drivers/pci/controller/dwc/pci-exynos.c @@ -377,7 +377,7 @@ static int exynos_pcie_probe(struct platform_device *pdev) return ret; } -static int __exit exynos_pcie_remove(struct platform_device *pdev) +static int exynos_pcie_remove(struct platform_device *pdev) { struct exynos_pcie *ep = platform_get_drvdata(pdev); @@ -433,7 +433,7 @@ static const struct of_device_id exynos_pcie_of_match[] = { static struct platform_driver exynos_pcie_driver = { .probe = exynos_pcie_probe, - .remove = __exit_p(exynos_pcie_remove), + .remove = exynos_pcie_remove, .driver = { .name = "exynos-pcie", .of_match_table = exynos_pcie_of_match, diff --git a/drivers/pci/controller/dwc/pci-keystone.c b/drivers/pci/controller/dwc/pci-keystone.c index 865258d8c53c1..eacdcb0a87719 100644 --- a/drivers/pci/controller/dwc/pci-keystone.c +++ b/drivers/pci/controller/dwc/pci-keystone.c @@ -1080,7 +1080,7 @@ static const struct of_device_id ks_pcie_of_match[] = { { }, }; -static int __init ks_pcie_probe(struct platform_device *pdev) +static int ks_pcie_probe(struct platform_device *pdev) { const struct dw_pcie_host_ops *host_ops; const struct dw_pcie_ep_ops *ep_ops; @@ -1284,7 +1284,7 @@ static int __init ks_pcie_probe(struct platform_device *pdev) return ret; } -static int __exit ks_pcie_remove(struct platform_device *pdev) +static int ks_pcie_remove(struct platform_device *pdev) { struct keystone_pcie *ks_pcie = platform_get_drvdata(pdev); struct device_link **link = ks_pcie->link; @@ -1300,9 +1300,9 @@ static int __exit ks_pcie_remove(struct platform_device *pdev) return 0; } -static struct platform_driver ks_pcie_driver __refdata = { +static struct platform_driver ks_pcie_driver = { .probe = ks_pcie_probe, - .remove = __exit_p(ks_pcie_remove), + .remove = ks_pcie_remove, .driver = { .name = "keystone-pcie", .of_match_table = of_match_ptr(ks_pcie_of_match), diff --git a/drivers/pci/controller/dwc/pci-layerscape-ep.c b/drivers/pci/controller/dwc/pci-layerscape-ep.c index 39f4664bd84c7..dd7d74fecc48e 100644 --- a/drivers/pci/controller/dwc/pci-layerscape-ep.c +++ b/drivers/pci/controller/dwc/pci-layerscape-ep.c @@ -18,6 +18,20 @@ #include "pcie-designware.h" +#define PEX_PF0_CONFIG 0xC0014 +#define PEX_PF0_CFG_READY BIT(0) + +/* PEX PFa PCIE PME and message interrupt registers*/ +#define PEX_PF0_PME_MES_DR 0xC0020 +#define PEX_PF0_PME_MES_DR_LUD BIT(7) +#define PEX_PF0_PME_MES_DR_LDD BIT(9) +#define PEX_PF0_PME_MES_DR_HRD BIT(10) + +#define PEX_PF0_PME_MES_IER 0xC0028 +#define PEX_PF0_PME_MES_IER_LUDIE BIT(7) +#define PEX_PF0_PME_MES_IER_LDDIE BIT(9) +#define PEX_PF0_PME_MES_IER_HRDIE BIT(10) + #define to_ls_pcie_ep(x) dev_get_drvdata((x)->dev) struct ls_pcie_ep_drvdata { @@ -30,16 +44,98 @@ struct ls_pcie_ep { struct dw_pcie *pci; struct pci_epc_features *ls_epc; const struct ls_pcie_ep_drvdata *drvdata; + int irq; + u32 lnkcap; + bool big_endian; }; -static int ls_pcie_establish_link(struct dw_pcie *pci) +static u32 ls_lut_readl(struct ls_pcie_ep *pcie, u32 offset) { - return 0; + struct dw_pcie *pci = pcie->pci; + + if (pcie->big_endian) + return ioread32be(pci->dbi_base + offset); + else + return ioread32(pci->dbi_base + offset); } -static const struct dw_pcie_ops dw_ls_pcie_ep_ops = { - .start_link = ls_pcie_establish_link, -}; +static void ls_lut_writel(struct ls_pcie_ep *pcie, u32 offset, u32 value) +{ + struct dw_pcie *pci = pcie->pci; + + if (pcie->big_endian) + iowrite32be(value, pci->dbi_base + offset); + else + iowrite32(value, pci->dbi_base + offset); +} + +static irqreturn_t ls_pcie_ep_event_handler(int irq, void *dev_id) +{ + struct ls_pcie_ep *pcie = dev_id; + struct dw_pcie *pci = pcie->pci; + u32 val, cfg; + u8 offset; + + val = ls_lut_readl(pcie, PEX_PF0_PME_MES_DR); + ls_lut_writel(pcie, PEX_PF0_PME_MES_DR, val); + + if (!val) + return IRQ_NONE; + + if (val & PEX_PF0_PME_MES_DR_LUD) { + + offset = dw_pcie_find_capability(pci, PCI_CAP_ID_EXP); + + /* + * The values of the Maximum Link Width and Supported Link + * Speed from the Link Capabilities Register will be lost + * during link down or hot reset. Restore initial value + * that configured by the Reset Configuration Word (RCW). + */ + dw_pcie_dbi_ro_wr_en(pci); + dw_pcie_writel_dbi(pci, offset + PCI_EXP_LNKCAP, pcie->lnkcap); + dw_pcie_dbi_ro_wr_dis(pci); + + cfg = ls_lut_readl(pcie, PEX_PF0_CONFIG); + cfg |= PEX_PF0_CFG_READY; + ls_lut_writel(pcie, PEX_PF0_CONFIG, cfg); + dw_pcie_ep_linkup(&pci->ep); + + dev_dbg(pci->dev, "Link up\n"); + } else if (val & PEX_PF0_PME_MES_DR_LDD) { + dev_dbg(pci->dev, "Link down\n"); + } else if (val & PEX_PF0_PME_MES_DR_HRD) { + dev_dbg(pci->dev, "Hot reset\n"); + } + + return IRQ_HANDLED; +} + +static int ls_pcie_ep_interrupt_init(struct ls_pcie_ep *pcie, + struct platform_device *pdev) +{ + u32 val; + int ret; + + pcie->irq = platform_get_irq_byname(pdev, "pme"); + if (pcie->irq < 0) + return pcie->irq; + + ret = devm_request_irq(&pdev->dev, pcie->irq, ls_pcie_ep_event_handler, + IRQF_SHARED, pdev->name, pcie); + if (ret) { + dev_err(&pdev->dev, "Can't register PCIe IRQ\n"); + return ret; + } + + /* Enable interrupts */ + val = ls_lut_readl(pcie, PEX_PF0_PME_MES_IER); + val |= PEX_PF0_PME_MES_IER_LDDIE | PEX_PF0_PME_MES_IER_HRDIE | + PEX_PF0_PME_MES_IER_LUDIE; + ls_lut_writel(pcie, PEX_PF0_PME_MES_IER, val); + + return 0; +} static const struct pci_epc_features* ls_pcie_ep_get_features(struct dw_pcie_ep *ep) @@ -106,19 +202,16 @@ static const struct dw_pcie_ep_ops ls_pcie_ep_ops = { static const struct ls_pcie_ep_drvdata ls1_ep_drvdata = { .ops = &ls_pcie_ep_ops, - .dw_pcie_ops = &dw_ls_pcie_ep_ops, }; static const struct ls_pcie_ep_drvdata ls2_ep_drvdata = { .func_offset = 0x20000, .ops = &ls_pcie_ep_ops, - .dw_pcie_ops = &dw_ls_pcie_ep_ops, }; static const struct ls_pcie_ep_drvdata lx2_ep_drvdata = { .func_offset = 0x8000, .ops = &ls_pcie_ep_ops, - .dw_pcie_ops = &dw_ls_pcie_ep_ops, }; static const struct of_device_id ls_pcie_ep_of_match[] = { @@ -136,6 +229,8 @@ static int __init ls_pcie_ep_probe(struct platform_device *pdev) struct ls_pcie_ep *pcie; struct pci_epc_features *ls_epc; struct resource *dbi_base; + u8 offset; + int ret; pcie = devm_kzalloc(dev, sizeof(*pcie), GFP_KERNEL); if (!pcie) @@ -155,6 +250,7 @@ static int __init ls_pcie_ep_probe(struct platform_device *pdev) pci->ops = pcie->drvdata->dw_pcie_ops; ls_epc->bar_fixed_64bit = (1 << BAR_2) | (1 << BAR_4); + ls_epc->linkup_notifier = true; pcie->pci = pci; pcie->ls_epc = ls_epc; @@ -166,9 +262,18 @@ static int __init ls_pcie_ep_probe(struct platform_device *pdev) pci->ep.ops = &ls_pcie_ep_ops; + pcie->big_endian = of_property_read_bool(dev->of_node, "big-endian"); + platform_set_drvdata(pdev, pcie); - return dw_pcie_ep_init(&pci->ep); + offset = dw_pcie_find_capability(pci, PCI_CAP_ID_EXP); + pcie->lnkcap = dw_pcie_readl_dbi(pci, offset + PCI_EXP_LNKCAP); + + ret = dw_pcie_ep_init(&pci->ep); + if (ret) + return ret; + + return ls_pcie_ep_interrupt_init(pcie, pdev); } static struct platform_driver ls_pcie_ep_driver = { diff --git a/drivers/pci/controller/dwc/pcie-designware-ep.c b/drivers/pci/controller/dwc/pcie-designware-ep.c index 2af4ed90e12b3..5023b7f704d2f 100644 --- a/drivers/pci/controller/dwc/pcie-designware-ep.c +++ b/drivers/pci/controller/dwc/pcie-designware-ep.c @@ -434,8 +434,7 @@ static void dw_pcie_ep_stop(struct pci_epc *epc) struct dw_pcie_ep *ep = epc_get_drvdata(epc); struct dw_pcie *pci = to_dw_pcie_from_ep(ep); - if (pci->ops && pci->ops->stop_link) - pci->ops->stop_link(pci); + dw_pcie_stop_link(pci); } static int dw_pcie_ep_start(struct pci_epc *epc) @@ -443,10 +442,7 @@ static int dw_pcie_ep_start(struct pci_epc *epc) struct dw_pcie_ep *ep = epc_get_drvdata(epc); struct dw_pcie *pci = to_dw_pcie_from_ep(ep); - if (!pci->ops || !pci->ops->start_link) - return -EINVAL; - - return pci->ops->start_link(pci); + return dw_pcie_start_link(pci); } static const struct pci_epc_features* diff --git a/drivers/pci/controller/dwc/pcie-designware-host.c b/drivers/pci/controller/dwc/pcie-designware-host.c index 7cd4593ad12fa..f561e87cd5f6e 100644 --- a/drivers/pci/controller/dwc/pcie-designware-host.c +++ b/drivers/pci/controller/dwc/pcie-designware-host.c @@ -402,8 +402,8 @@ int dw_pcie_host_init(struct pcie_port *pp) dw_pcie_setup_rc(pp); - if (!dw_pcie_link_up(pci) && pci->ops && pci->ops->start_link) { - ret = pci->ops->start_link(pci); + if (!dw_pcie_link_up(pci)) { + ret = dw_pcie_start_link(pci); if (ret) goto err_free_msi; } @@ -420,8 +420,7 @@ int dw_pcie_host_init(struct pcie_port *pp) return 0; err_stop_link: - if (pci->ops && pci->ops->stop_link) - pci->ops->stop_link(pci); + dw_pcie_stop_link(pci); err_free_msi: if (pp->has_msi_ctrl) @@ -437,8 +436,7 @@ void dw_pcie_host_deinit(struct pcie_port *pp) pci_stop_root_bus(pp->bridge->bus); pci_remove_root_bus(pp->bridge->bus); - if (pci->ops && pci->ops->stop_link) - pci->ops->stop_link(pci); + dw_pcie_stop_link(pci); if (pp->has_msi_ctrl) dw_pcie_free_msi(pp); diff --git a/drivers/pci/controller/dwc/pcie-designware-plat.c b/drivers/pci/controller/dwc/pcie-designware-plat.c index 8851eb161a0eb..107318ad22817 100644 --- a/drivers/pci/controller/dwc/pcie-designware-plat.c +++ b/drivers/pci/controller/dwc/pcie-designware-plat.c @@ -36,15 +36,6 @@ static const struct of_device_id dw_plat_pcie_of_match[]; static const struct dw_pcie_host_ops dw_plat_pcie_host_ops = { }; -static int dw_plat_pcie_establish_link(struct dw_pcie *pci) -{ - return 0; -} - -static const struct dw_pcie_ops dw_pcie_ops = { - .start_link = dw_plat_pcie_establish_link, -}; - static void dw_plat_pcie_ep_init(struct dw_pcie_ep *ep) { struct dw_pcie *pci = to_dw_pcie_from_ep(ep); @@ -142,7 +133,6 @@ static int dw_plat_pcie_probe(struct platform_device *pdev) return -ENOMEM; pci->dev = dev; - pci->ops = &dw_pcie_ops; dw_plat_pcie->pci = pci; dw_plat_pcie->mode = mode; diff --git a/drivers/pci/controller/dwc/pcie-designware.h b/drivers/pci/controller/dwc/pcie-designware.h index 7d6e9b7576be5..8ba2392926346 100644 --- a/drivers/pci/controller/dwc/pcie-designware.h +++ b/drivers/pci/controller/dwc/pcie-designware.h @@ -365,6 +365,20 @@ static inline void dw_pcie_dbi_ro_wr_dis(struct dw_pcie *pci) dw_pcie_writel_dbi(pci, reg, val); } +static inline int dw_pcie_start_link(struct dw_pcie *pci) +{ + if (pci->ops && pci->ops->start_link) + return pci->ops->start_link(pci); + + return 0; +} + +static inline void dw_pcie_stop_link(struct dw_pcie *pci) +{ + if (pci->ops && pci->ops->stop_link) + pci->ops->stop_link(pci); +} + #ifdef CONFIG_PCIE_DW_HOST irqreturn_t dw_handle_msi_irq(struct pcie_port *pp); void dw_pcie_setup_rc(struct pcie_port *pp); diff --git a/drivers/pci/controller/dwc/pcie-fu740.c b/drivers/pci/controller/dwc/pcie-fu740.c index 78d002be4f821..f6c71c1b657b6 100644 --- a/drivers/pci/controller/dwc/pcie-fu740.c +++ b/drivers/pci/controller/dwc/pcie-fu740.c @@ -301,6 +301,7 @@ static int fu740_pcie_probe(struct platform_device *pdev) pci->dev = dev; pci->ops = &dw_pcie_ops; pci->pp.ops = &fu740_pcie_host_ops; + pci->pp.num_vectors = MAX_MSI_IRQS; /* SiFive specific region: mgmt */ afp->mgmt_base = devm_platform_ioremap_resource_byname(pdev, "mgmt"); diff --git a/drivers/pci/controller/dwc/pcie-tegra194.c b/drivers/pci/controller/dwc/pcie-tegra194.c index 765abe0732282..2f82da76e3711 100644 --- a/drivers/pci/controller/dwc/pcie-tegra194.c +++ b/drivers/pci/controller/dwc/pcie-tegra194.c @@ -7,6 +7,7 @@ * Author: Vidya Sagar */ +#include #include #include #include @@ -328,8 +329,7 @@ static void apply_bad_link_workaround(struct pcie_port *pp) */ val = dw_pcie_readw_dbi(pci, pcie->pcie_cap_base + PCI_EXP_LNKSTA); if (val & PCI_EXP_LNKSTA_LBMS) { - current_link_width = (val & PCI_EXP_LNKSTA_NLW) >> - PCI_EXP_LNKSTA_NLW_SHIFT; + current_link_width = FIELD_GET(PCI_EXP_LNKSTA_NLW, val); if (pcie->init_link_width > current_link_width) { dev_warn(pci->dev, "PCIe link is bad, width reduced\n"); val = dw_pcie_readw_dbi(pci, pcie->pcie_cap_base + @@ -731,8 +731,7 @@ static void tegra_pcie_enable_system_interrupts(struct pcie_port *pp) val_w = dw_pcie_readw_dbi(&pcie->pci, pcie->pcie_cap_base + PCI_EXP_LNKSTA); - pcie->init_link_width = (val_w & PCI_EXP_LNKSTA_NLW) >> - PCI_EXP_LNKSTA_NLW_SHIFT; + pcie->init_link_width = FIELD_GET(PCI_EXP_LNKSTA_NLW, val_w); val_w = dw_pcie_readw_dbi(&pcie->pci, pcie->pcie_cap_base + PCI_EXP_LNKCTL); @@ -889,7 +888,7 @@ static int tegra_pcie_dw_host_init(struct pcie_port *pp) /* Configure Max lane width from DT */ val = dw_pcie_readl_dbi(pci, pcie->pcie_cap_base + PCI_EXP_LNKCAP); val &= ~PCI_EXP_LNKCAP_MLW; - val |= (pcie->num_lanes << PCI_EXP_LNKSTA_NLW_SHIFT); + val |= FIELD_PREP(PCI_EXP_LNKCAP_MLW, pcie->num_lanes); dw_pcie_writel_dbi(pci, pcie->pcie_cap_base + PCI_EXP_LNKCAP, val); config_gen3_gen4_eq_presets(pcie); diff --git a/drivers/pci/controller/pci-hyperv.c b/drivers/pci/controller/pci-hyperv.c index 9b15c0130bbbd..bc986967b1260 100644 --- a/drivers/pci/controller/pci-hyperv.c +++ b/drivers/pci/controller/pci-hyperv.c @@ -43,13 +43,13 @@ #include #include #include -#include -#include -#include #include #include #include #include +#include +#include +#include #include /* @@ -92,6 +92,13 @@ static enum pci_protocol_version_t pci_protocol_versions[] = { /* space for 32bit serial number as string */ #define SLOT_NAME_SIZE 11 +/* + * Size of requestor for VMbus; the value is based on the observation + * that having more than one request outstanding is 'rare', and so 64 + * should be generous in ensuring that we don't ever run out. + */ +#define HV_PCI_RQSTOR_SIZE 64 + /* * Message Types */ @@ -577,6 +584,388 @@ struct hv_pci_compl { static void hv_pci_onchannelcallback(void *context); +#ifdef CONFIG_X86 +#define DELIVERY_MODE APIC_DELIVERY_MODE_FIXED +#define FLOW_HANDLER handle_edge_irq +#define FLOW_NAME "edge" + +static int hv_pci_irqchip_init(void) +{ + return 0; +} + +static struct irq_domain *hv_pci_get_root_domain(void) +{ + return x86_vector_domain; +} + +static unsigned int hv_msi_get_int_vector(struct irq_data *data) +{ + struct irq_cfg *cfg = irqd_cfg(data); + + return cfg->vector; +} + +static int hv_msi_prepare(struct irq_domain *domain, struct device *dev, + int nvec, msi_alloc_info_t *info) +{ + int ret = pci_msi_prepare(domain, dev, nvec, info); + + /* + * By using the interrupt remapper in the hypervisor IOMMU, contiguous + * CPU vectors is not needed for multi-MSI + */ + if (info->type == X86_IRQ_ALLOC_TYPE_PCI_MSI) + info->flags &= ~X86_IRQ_ALLOC_CONTIGUOUS_VECTORS; + + return ret; +} + +/** + * hv_arch_irq_unmask() - "Unmask" the IRQ by setting its current + * affinity. + * @data: Describes the IRQ + * + * Build new a destination for the MSI and make a hypercall to + * update the Interrupt Redirection Table. "Device Logical ID" + * is built out of this PCI bus's instance GUID and the function + * number of the device. + */ +static void hv_arch_irq_unmask(struct irq_data *data) +{ + struct msi_desc *msi_desc = irq_data_get_msi_desc(data); + struct hv_retarget_device_interrupt *params; + struct tran_int_desc *int_desc; + struct hv_pcibus_device *hbus; + struct cpumask *dest; + cpumask_var_t tmp; + struct pci_bus *pbus; + struct pci_dev *pdev; + unsigned long flags; + u32 var_size = 0; + int cpu, nr_bank; + u64 res; + + dest = irq_data_get_effective_affinity_mask(data); + pdev = msi_desc_to_pci_dev(msi_desc); + pbus = pdev->bus; + hbus = container_of(pbus->sysdata, struct hv_pcibus_device, sysdata); + int_desc = data->chip_data; + if (!int_desc) { + dev_warn(&hbus->hdev->device, "%s() can not unmask irq %u\n", + __func__, data->irq); + return; + } + + spin_lock_irqsave(&hbus->retarget_msi_interrupt_lock, flags); + + params = &hbus->retarget_msi_interrupt_params; + memset(params, 0, sizeof(*params)); + params->partition_id = HV_PARTITION_ID_SELF; + params->int_entry.source = HV_INTERRUPT_SOURCE_MSI; + params->int_entry.msi_entry.address.as_uint32 = int_desc->address & 0xffffffff; + params->int_entry.msi_entry.data.as_uint32 = int_desc->data; + params->device_id = (hbus->hdev->dev_instance.b[5] << 24) | + (hbus->hdev->dev_instance.b[4] << 16) | + (hbus->hdev->dev_instance.b[7] << 8) | + (hbus->hdev->dev_instance.b[6] & 0xf8) | + PCI_FUNC(pdev->devfn); + params->int_target.vector = hv_msi_get_int_vector(data); + + /* + * Honoring apic->delivery_mode set to APIC_DELIVERY_MODE_FIXED by + * setting the HV_DEVICE_INTERRUPT_TARGET_MULTICAST flag results in a + * spurious interrupt storm. Not doing so does not seem to have a + * negative effect (yet?). + */ + + if (hbus->protocol_version >= PCI_PROTOCOL_VERSION_1_2) { + /* + * PCI_PROTOCOL_VERSION_1_2 supports the VP_SET version of the + * HVCALL_RETARGET_INTERRUPT hypercall, which also coincides + * with >64 VP support. + * ms_hyperv.hints & HV_X64_EX_PROCESSOR_MASKS_RECOMMENDED + * is not sufficient for this hypercall. + */ + params->int_target.flags |= + HV_DEVICE_INTERRUPT_TARGET_PROCESSOR_SET; + + if (!alloc_cpumask_var(&tmp, GFP_ATOMIC)) { + res = 1; + goto exit_unlock; + } + + cpumask_and(tmp, dest, cpu_online_mask); + nr_bank = cpumask_to_vpset(¶ms->int_target.vp_set, tmp); + free_cpumask_var(tmp); + + if (nr_bank <= 0) { + res = 1; + goto exit_unlock; + } + + /* + * var-sized hypercall, var-size starts after vp_mask (thus + * vp_set.format does not count, but vp_set.valid_bank_mask + * does). + */ + var_size = 1 + nr_bank; + } else { + for_each_cpu_and(cpu, dest, cpu_online_mask) { + params->int_target.vp_mask |= + (1ULL << hv_cpu_number_to_vp_number(cpu)); + } + } + + res = hv_do_hypercall(HVCALL_RETARGET_INTERRUPT | (var_size << 17), + params, NULL); + +exit_unlock: + spin_unlock_irqrestore(&hbus->retarget_msi_interrupt_lock, flags); + + /* + * During hibernation, when a CPU is offlined, the kernel tries + * to move the interrupt to the remaining CPUs that haven't + * been offlined yet. In this case, the below hv_do_hypercall() + * always fails since the vmbus channel has been closed: + * refer to cpu_disable_common() -> fixup_irqs() -> + * irq_migrate_all_off_this_cpu() -> migrate_one_irq(). + * + * Suppress the error message for hibernation because the failure + * during hibernation does not matter (at this time all the devices + * have been frozen). Note: the correct affinity info is still updated + * into the irqdata data structure in migrate_one_irq() -> + * irq_do_set_affinity() -> hv_set_affinity(), so later when the VM + * resumes, hv_pci_restore_msi_state() is able to correctly restore + * the interrupt with the correct affinity. + */ + if (!hv_result_success(res) && hbus->state != hv_pcibus_removing) + dev_err(&hbus->hdev->device, + "%s() failed: %#llx", __func__, res); +} +#elif defined(CONFIG_ARM64) +/* + * SPI vectors to use for vPCI; arch SPIs range is [32, 1019], but leaving a bit + * of room at the start to allow for SPIs to be specified through ACPI and + * starting with a power of two to satisfy power of 2 multi-MSI requirement. + */ +#define HV_PCI_MSI_SPI_START 64 +#define HV_PCI_MSI_SPI_NR (1020 - HV_PCI_MSI_SPI_START) +#define DELIVERY_MODE 0 +#define FLOW_HANDLER NULL +#define FLOW_NAME NULL +#define hv_msi_prepare NULL + +struct hv_pci_chip_data { + DECLARE_BITMAP(spi_map, HV_PCI_MSI_SPI_NR); + struct mutex map_lock; +}; + +/* Hyper-V vPCI MSI GIC IRQ domain */ +static struct irq_domain *hv_msi_gic_irq_domain; + +/* Hyper-V PCI MSI IRQ chip */ +static struct irq_chip hv_arm64_msi_irq_chip = { + .name = "MSI", + .irq_set_affinity = irq_chip_set_affinity_parent, + .irq_eoi = irq_chip_eoi_parent, + .irq_mask = irq_chip_mask_parent, + .irq_unmask = irq_chip_unmask_parent +}; + +static unsigned int hv_msi_get_int_vector(struct irq_data *irqd) +{ + return irqd->parent_data->hwirq; +} + +/* + * @nr_bm_irqs: Indicates the number of IRQs that were allocated from + * the bitmap. + * @nr_dom_irqs: Indicates the number of IRQs that were allocated from + * the parent domain. + */ +static void hv_pci_vec_irq_free(struct irq_domain *domain, + unsigned int virq, + unsigned int nr_bm_irqs, + unsigned int nr_dom_irqs) +{ + struct hv_pci_chip_data *chip_data = domain->host_data; + struct irq_data *d = irq_domain_get_irq_data(domain, virq); + int first = d->hwirq - HV_PCI_MSI_SPI_START; + int i; + + mutex_lock(&chip_data->map_lock); + bitmap_release_region(chip_data->spi_map, + first, + get_count_order(nr_bm_irqs)); + mutex_unlock(&chip_data->map_lock); + for (i = 0; i < nr_dom_irqs; i++) { + if (i) + d = irq_domain_get_irq_data(domain, virq + i); + irq_domain_reset_irq_data(d); + } + + irq_domain_free_irqs_parent(domain, virq, nr_dom_irqs); +} + +static void hv_pci_vec_irq_domain_free(struct irq_domain *domain, + unsigned int virq, + unsigned int nr_irqs) +{ + hv_pci_vec_irq_free(domain, virq, nr_irqs, nr_irqs); +} + +static int hv_pci_vec_alloc_device_irq(struct irq_domain *domain, + unsigned int nr_irqs, + irq_hw_number_t *hwirq) +{ + struct hv_pci_chip_data *chip_data = domain->host_data; + int index; + + /* Find and allocate region from the SPI bitmap */ + mutex_lock(&chip_data->map_lock); + index = bitmap_find_free_region(chip_data->spi_map, + HV_PCI_MSI_SPI_NR, + get_count_order(nr_irqs)); + mutex_unlock(&chip_data->map_lock); + if (index < 0) + return -ENOSPC; + + *hwirq = index + HV_PCI_MSI_SPI_START; + + return 0; +} + +static int hv_pci_vec_irq_gic_domain_alloc(struct irq_domain *domain, + unsigned int virq, + irq_hw_number_t hwirq) +{ + struct irq_fwspec fwspec; + struct irq_data *d; + int ret; + + fwspec.fwnode = domain->parent->fwnode; + fwspec.param_count = 2; + fwspec.param[0] = hwirq; + fwspec.param[1] = IRQ_TYPE_EDGE_RISING; + + ret = irq_domain_alloc_irqs_parent(domain, virq, 1, &fwspec); + if (ret) + return ret; + + /* + * Since the interrupt specifier is not coming from ACPI or DT, the + * trigger type will need to be set explicitly. Otherwise, it will be + * set to whatever is in the GIC configuration. + */ + d = irq_domain_get_irq_data(domain->parent, virq); + + return d->chip->irq_set_type(d, IRQ_TYPE_EDGE_RISING); +} + +static int hv_pci_vec_irq_domain_alloc(struct irq_domain *domain, + unsigned int virq, unsigned int nr_irqs, + void *args) +{ + irq_hw_number_t hwirq; + unsigned int i; + int ret; + + ret = hv_pci_vec_alloc_device_irq(domain, nr_irqs, &hwirq); + if (ret) + return ret; + + for (i = 0; i < nr_irqs; i++) { + ret = hv_pci_vec_irq_gic_domain_alloc(domain, virq + i, + hwirq + i); + if (ret) { + hv_pci_vec_irq_free(domain, virq, nr_irqs, i); + return ret; + } + + irq_domain_set_hwirq_and_chip(domain, virq + i, + hwirq + i, + &hv_arm64_msi_irq_chip, + domain->host_data); + pr_debug("pID:%d vID:%u\n", (int)(hwirq + i), virq + i); + } + + return 0; +} + +/* + * Pick the first cpu as the irq affinity that can be temporarily used for + * composing MSI from the hypervisor. GIC will eventually set the right + * affinity for the irq and the 'unmask' will retarget the interrupt to that + * cpu. + */ +static int hv_pci_vec_irq_domain_activate(struct irq_domain *domain, + struct irq_data *irqd, bool reserve) +{ + int cpu = cpumask_first(cpu_present_mask); + + irq_data_update_effective_affinity(irqd, cpumask_of(cpu)); + + return 0; +} + +static const struct irq_domain_ops hv_pci_domain_ops = { + .alloc = hv_pci_vec_irq_domain_alloc, + .free = hv_pci_vec_irq_domain_free, + .activate = hv_pci_vec_irq_domain_activate, +}; + +static int hv_pci_irqchip_init(void) +{ + static struct hv_pci_chip_data *chip_data; + struct fwnode_handle *fn = NULL; + int ret = -ENOMEM; + + chip_data = kzalloc(sizeof(*chip_data), GFP_KERNEL); + if (!chip_data) + return ret; + + mutex_init(&chip_data->map_lock); + fn = irq_domain_alloc_named_fwnode("hv_vpci_arm64"); + if (!fn) + goto free_chip; + + /* + * IRQ domain once enabled, should not be removed since there is no + * way to ensure that all the corresponding devices are also gone and + * no interrupts will be generated. + */ + hv_msi_gic_irq_domain = acpi_irq_create_hierarchy(0, HV_PCI_MSI_SPI_NR, + fn, &hv_pci_domain_ops, + chip_data); + + if (!hv_msi_gic_irq_domain) { + pr_err("Failed to create Hyper-V arm64 vPCI MSI IRQ domain\n"); + goto free_chip; + } + + return 0; + +free_chip: + kfree(chip_data); + if (fn) + irq_domain_free_fwnode(fn); + + return ret; +} + +static struct irq_domain *hv_pci_get_root_domain(void) +{ + return hv_msi_gic_irq_domain; +} + +/* + * SPIs are used for interrupts of PCI devices and SPIs is managed via GICD + * registers which Hyper-V already supports, so no hypercall needed. + */ +static void hv_arch_irq_unmask(struct irq_data *data) { } +#endif /* CONFIG_ARM64 */ + /** * hv_pci_generic_compl() - Invoked for a completion packet * @context: Set up by the sender of the packet. @@ -1147,7 +1536,7 @@ static void hv_int_desc_free(struct hv_pci_dev *hpdev, int_pkt->wslot.slot = hpdev->desc.win_slot.slot; int_pkt->int_desc = *int_desc; vmbus_sendpacket(hpdev->hbus->hdev->channel, int_pkt, sizeof(*int_pkt), - (unsigned long)&ctxt.pkt, VM_PKT_DATA_INBAND, 0); + 0, VM_PKT_DATA_INBAND, 0); kfree(int_desc); } @@ -1189,164 +1578,19 @@ static void hv_msi_free(struct irq_domain *domain, struct msi_domain_info *info, put_pcichild(hpdev); } -static int hv_set_affinity(struct irq_data *data, const struct cpumask *dest, - bool force) -{ - struct irq_data *parent = data->parent_data; - - return parent->chip->irq_set_affinity(parent, dest, force); -} - static void hv_irq_mask(struct irq_data *data) { pci_msi_mask_irq(data); + if (data->parent_data->chip->irq_mask) + irq_chip_mask_parent(data); } -static unsigned int hv_msi_get_int_vector(struct irq_data *data) -{ - struct irq_cfg *cfg = irqd_cfg(data); - - return cfg->vector; -} - -static int hv_msi_prepare(struct irq_domain *domain, struct device *dev, - int nvec, msi_alloc_info_t *info) -{ - int ret = pci_msi_prepare(domain, dev, nvec, info); - - /* - * By using the interrupt remapper in the hypervisor IOMMU, contiguous - * CPU vectors is not needed for multi-MSI - */ - if (info->type == X86_IRQ_ALLOC_TYPE_PCI_MSI) - info->flags &= ~X86_IRQ_ALLOC_CONTIGUOUS_VECTORS; - - return ret; -} - -/** - * hv_irq_unmask() - "Unmask" the IRQ by setting its current - * affinity. - * @data: Describes the IRQ - * - * Build new a destination for the MSI and make a hypercall to - * update the Interrupt Redirection Table. "Device Logical ID" - * is built out of this PCI bus's instance GUID and the function - * number of the device. - */ static void hv_irq_unmask(struct irq_data *data) { - struct msi_desc *msi_desc = irq_data_get_msi_desc(data); - struct irq_cfg *cfg = irqd_cfg(data); - struct hv_retarget_device_interrupt *params; - struct tran_int_desc *int_desc; - struct hv_pcibus_device *hbus; - struct cpumask *dest; - cpumask_var_t tmp; - struct pci_bus *pbus; - struct pci_dev *pdev; - unsigned long flags; - u32 var_size = 0; - int cpu, nr_bank; - u64 res; - - dest = irq_data_get_effective_affinity_mask(data); - pdev = msi_desc_to_pci_dev(msi_desc); - pbus = pdev->bus; - hbus = container_of(pbus->sysdata, struct hv_pcibus_device, sysdata); - int_desc = data->chip_data; - if (!int_desc) { - dev_warn(&hbus->hdev->device, "%s() can not unmask irq %u\n", - __func__, data->irq); - return; - } - - spin_lock_irqsave(&hbus->retarget_msi_interrupt_lock, flags); - - params = &hbus->retarget_msi_interrupt_params; - memset(params, 0, sizeof(*params)); - params->partition_id = HV_PARTITION_ID_SELF; - params->int_entry.source = HV_INTERRUPT_SOURCE_MSI; - params->int_entry.msi_entry.address.as_uint32 = int_desc->address & 0xffffffff; - params->int_entry.msi_entry.data.as_uint32 = int_desc->data; - params->device_id = (hbus->hdev->dev_instance.b[5] << 24) | - (hbus->hdev->dev_instance.b[4] << 16) | - (hbus->hdev->dev_instance.b[7] << 8) | - (hbus->hdev->dev_instance.b[6] & 0xf8) | - PCI_FUNC(pdev->devfn); - params->int_target.vector = cfg->vector; - - /* - * Honoring apic->delivery_mode set to APIC_DELIVERY_MODE_FIXED by - * setting the HV_DEVICE_INTERRUPT_TARGET_MULTICAST flag results in a - * spurious interrupt storm. Not doing so does not seem to have a - * negative effect (yet?). - */ - - if (hbus->protocol_version >= PCI_PROTOCOL_VERSION_1_2) { - /* - * PCI_PROTOCOL_VERSION_1_2 supports the VP_SET version of the - * HVCALL_RETARGET_INTERRUPT hypercall, which also coincides - * with >64 VP support. - * ms_hyperv.hints & HV_X64_EX_PROCESSOR_MASKS_RECOMMENDED - * is not sufficient for this hypercall. - */ - params->int_target.flags |= - HV_DEVICE_INTERRUPT_TARGET_PROCESSOR_SET; - - if (!alloc_cpumask_var(&tmp, GFP_ATOMIC)) { - res = 1; - goto exit_unlock; - } - - cpumask_and(tmp, dest, cpu_online_mask); - nr_bank = cpumask_to_vpset(¶ms->int_target.vp_set, tmp); - free_cpumask_var(tmp); - - if (nr_bank <= 0) { - res = 1; - goto exit_unlock; - } - - /* - * var-sized hypercall, var-size starts after vp_mask (thus - * vp_set.format does not count, but vp_set.valid_bank_mask - * does). - */ - var_size = 1 + nr_bank; - } else { - for_each_cpu_and(cpu, dest, cpu_online_mask) { - params->int_target.vp_mask |= - (1ULL << hv_cpu_number_to_vp_number(cpu)); - } - } - - res = hv_do_hypercall(HVCALL_RETARGET_INTERRUPT | (var_size << 17), - params, NULL); - -exit_unlock: - spin_unlock_irqrestore(&hbus->retarget_msi_interrupt_lock, flags); - - /* - * During hibernation, when a CPU is offlined, the kernel tries - * to move the interrupt to the remaining CPUs that haven't - * been offlined yet. In this case, the below hv_do_hypercall() - * always fails since the vmbus channel has been closed: - * refer to cpu_disable_common() -> fixup_irqs() -> - * irq_migrate_all_off_this_cpu() -> migrate_one_irq(). - * - * Suppress the error message for hibernation because the failure - * during hibernation does not matter (at this time all the devices - * have been frozen). Note: the correct affinity info is still updated - * into the irqdata data structure in migrate_one_irq() -> - * irq_do_set_affinity() -> hv_set_affinity(), so later when the VM - * resumes, hv_pci_restore_msi_state() is able to correctly restore - * the interrupt with the correct affinity. - */ - if (!hv_result_success(res) && hbus->state != hv_pcibus_removing) - dev_err(&hbus->hdev->device, - "%s() failed: %#llx", __func__, res); + hv_arch_irq_unmask(data); + if (data->parent_data->chip->irq_unmask) + irq_chip_unmask_parent(data); pci_msi_unmask_irq(data); } @@ -1369,13 +1613,13 @@ static void hv_pci_compose_compl(void *context, struct pci_response *resp, static u32 hv_compose_msi_req_v1( struct pci_create_interrupt *int_pkt, struct cpumask *affinity, - u32 slot, u8 vector, u8 vector_count) + u32 slot, u8 vector, u16 vector_count) { int_pkt->message_type.type = PCI_CREATE_INTERRUPT_MESSAGE; int_pkt->wslot.slot = slot; int_pkt->int_desc.vector = vector; int_pkt->int_desc.vector_count = vector_count; - int_pkt->int_desc.delivery_mode = APIC_DELIVERY_MODE_FIXED; + int_pkt->int_desc.delivery_mode = DELIVERY_MODE; /* * Create MSI w/ dummy vCPU set, overwritten by subsequent retarget in @@ -1397,7 +1641,7 @@ static int hv_compose_msi_req_get_cpu(struct cpumask *affinity) static u32 hv_compose_msi_req_v2( struct pci_create_interrupt2 *int_pkt, struct cpumask *affinity, - u32 slot, u8 vector, u8 vector_count) + u32 slot, u8 vector, u16 vector_count) { int cpu; @@ -1405,7 +1649,7 @@ static u32 hv_compose_msi_req_v2( int_pkt->wslot.slot = slot; int_pkt->int_desc.vector = vector; int_pkt->int_desc.vector_count = vector_count; - int_pkt->int_desc.delivery_mode = APIC_DELIVERY_MODE_FIXED; + int_pkt->int_desc.delivery_mode = DELIVERY_MODE; cpu = hv_compose_msi_req_get_cpu(affinity); int_pkt->int_desc.processor_array[0] = hv_cpu_number_to_vp_number(cpu); @@ -1416,7 +1660,7 @@ static u32 hv_compose_msi_req_v2( static u32 hv_compose_msi_req_v3( struct pci_create_interrupt3 *int_pkt, struct cpumask *affinity, - u32 slot, u32 vector, u8 vector_count) + u32 slot, u32 vector, u16 vector_count) { int cpu; @@ -1425,7 +1669,7 @@ static u32 hv_compose_msi_req_v3( int_pkt->int_desc.vector = vector; int_pkt->int_desc.reserved = 0; int_pkt->int_desc.vector_count = vector_count; - int_pkt->int_desc.delivery_mode = APIC_DELIVERY_MODE_FIXED; + int_pkt->int_desc.delivery_mode = DELIVERY_MODE; cpu = hv_compose_msi_req_get_cpu(affinity); int_pkt->int_desc.processor_array[0] = hv_cpu_number_to_vp_number(cpu); @@ -1456,7 +1700,13 @@ static void hv_compose_msi_msg(struct irq_data *data, struct msi_msg *msg) struct compose_comp_ctxt comp; struct tran_int_desc *int_desc; struct msi_desc *msi_desc; - u8 vector, vector_count; + bool multi_msi; + /* + * vector_count should be u16: see hv_msi_desc, hv_msi_desc2 + * and hv_msi_desc3. vector must be u32: see hv_msi_desc3. + */ + u16 vector_count; + u32 vector; struct { struct pci_packet pci_pkt; union { @@ -1465,12 +1715,20 @@ static void hv_compose_msi_msg(struct irq_data *data, struct msi_msg *msg) struct pci_create_interrupt3 v3; } int_pkts; } __packed ctxt; - + u64 trans_id; u32 size; int ret; - /* Reuse the previous allocation */ - if (data->chip_data) { + msi_desc = irq_data_get_msi_desc(data); + multi_msi = !msi_desc->pci.msi_attrib.is_msix && + msi_desc->nvec_used > 1; + /* + * Reuse the previous allocation for Multi-MSI. This is required for + * Multi-MSI and is optional for single-MSI and MSI-X. Note: for now, + * don't reuse the previous allocation for MSI-X because this causes + * unreliable interrupt delivery for some NVMe devices. + */ + if (data->chip_data && multi_msi) { int_desc = data->chip_data; msg->address_hi = int_desc->address >> 32; msg->address_lo = int_desc->address & 0xffffffff; @@ -1478,7 +1736,6 @@ static void hv_compose_msi_msg(struct irq_data *data, struct msi_msg *msg) return; } - msi_desc = irq_data_get_msi_desc(data); pdev = msi_desc_to_pci_dev(msi_desc); dest = irq_data_get_effective_affinity_mask(data); pbus = pdev->bus; @@ -1488,11 +1745,18 @@ static void hv_compose_msi_msg(struct irq_data *data, struct msi_msg *msg) if (!hpdev) goto return_null_message; + /* Free any previous message that might have already been composed. */ + if (data->chip_data && !multi_msi) { + int_desc = data->chip_data; + data->chip_data = NULL; + hv_int_desc_free(hpdev, int_desc); + } + int_desc = kzalloc(sizeof(*int_desc), GFP_ATOMIC); if (!int_desc) goto drop_reference; - if (!msi_desc->msi_attrib.is_msix && msi_desc->nvec_used > 1) { + if (multi_msi) { /* * If this is not the first MSI of Multi MSI, we already have * a mapping. Can exit early. @@ -1522,6 +1786,11 @@ static void hv_compose_msi_msg(struct irq_data *data, struct msi_msg *msg) vector_count = 1; } + /* + * hv_compose_msi_req_v1 and v2 are for x86 only, meaning 'vector' + * can't exceed u8. Cast 'vector' down to u8 for v1/v2 explicitly + * for better readability. + */ memset(&ctxt, 0, sizeof(ctxt)); init_completion(&comp.comp_pkt.host_event); ctxt.pci_pkt.completion_func = hv_pci_compose_compl; @@ -1532,7 +1801,7 @@ static void hv_compose_msi_msg(struct irq_data *data, struct msi_msg *msg) size = hv_compose_msi_req_v1(&ctxt.int_pkts.v1, dest, hpdev->desc.win_slot.slot, - vector, + (u8)vector, vector_count); break; @@ -1541,7 +1810,7 @@ static void hv_compose_msi_msg(struct irq_data *data, struct msi_msg *msg) size = hv_compose_msi_req_v2(&ctxt.int_pkts.v2, dest, hpdev->desc.win_slot.slot, - vector, + (u8)vector, vector_count); break; @@ -1563,10 +1832,10 @@ static void hv_compose_msi_msg(struct irq_data *data, struct msi_msg *msg) goto free_int_desc; } - ret = vmbus_sendpacket(hpdev->hbus->hdev->channel, &ctxt.int_pkts, - size, (unsigned long)&ctxt.pci_pkt, - VM_PKT_DATA_INBAND, - VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); + ret = vmbus_sendpacket_getid(hpdev->hbus->hdev->channel, &ctxt.int_pkts, + size, (unsigned long)&ctxt.pci_pkt, + &trans_id, VM_PKT_DATA_INBAND, + VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); if (ret) { dev_err(&hbus->hdev->device, "Sending request for interrupt failed: 0x%x", @@ -1639,6 +1908,15 @@ static void hv_compose_msi_msg(struct irq_data *data, struct msi_msg *msg) enable_tasklet: tasklet_enable(&channel->callback_event); + /* + * The completion packet on the stack becomes invalid after 'return'; + * remove the ID from the VMbus requestor if the identifier is still + * mapped to/associated with the packet. (The identifier could have + * been 're-used', i.e., already removed and (re-)mapped.) + * + * Cf. hv_pci_onchannelcallback(). + */ + vmbus_request_addr_match(channel, trans_id, (unsigned long)&ctxt.pci_pkt); free_int_desc: kfree(int_desc); drop_reference: @@ -1653,8 +1931,12 @@ static void hv_compose_msi_msg(struct irq_data *data, struct msi_msg *msg) static struct irq_chip hv_msi_irq_chip = { .name = "Hyper-V PCIe MSI", .irq_compose_msi_msg = hv_compose_msi_msg, - .irq_set_affinity = hv_set_affinity, + .irq_set_affinity = irq_chip_set_affinity_parent, +#ifdef CONFIG_X86 .irq_ack = irq_chip_ack_parent, +#elif defined(CONFIG_ARM64) + .irq_eoi = irq_chip_eoi_parent, +#endif .irq_mask = hv_irq_mask, .irq_unmask = hv_irq_unmask, }; @@ -1684,12 +1966,12 @@ static int hv_pcie_init_irq_domain(struct hv_pcibus_device *hbus) hbus->msi_info.flags = (MSI_FLAG_USE_DEF_DOM_OPS | MSI_FLAG_USE_DEF_CHIP_OPS | MSI_FLAG_MULTI_PCI_MSI | MSI_FLAG_PCI_MSIX); - hbus->msi_info.handler = handle_edge_irq; - hbus->msi_info.handler_name = "edge"; + hbus->msi_info.handler = FLOW_HANDLER; + hbus->msi_info.handler_name = FLOW_NAME; hbus->msi_info.data = hbus; hbus->irq_domain = pci_msi_create_irq_domain(hbus->fwnode, &hbus->msi_info, - x86_vector_domain); + hv_pci_get_root_domain()); if (!hbus->irq_domain) { dev_err(&hbus->hdev->device, "Failed to build an MSI IRQ domain\n"); @@ -1882,12 +2164,17 @@ static void prepopulate_bars(struct hv_pcibus_device *hbus) } } if (high_size <= 1 && low_size <= 1) { - /* Set the memory enable bit. */ - _hv_pcifront_read_config(hpdev, PCI_COMMAND, 2, - &command); - command |= PCI_COMMAND_MEMORY; - _hv_pcifront_write_config(hpdev, PCI_COMMAND, 2, - command); + /* + * No need to set the PCI_COMMAND_MEMORY bit as + * the core PCI driver doesn't require the bit + * to be pre-set. Actually here we intentionally + * keep the bit off so that the PCI BAR probing + * in the core PCI driver doesn't cause Hyper-V + * to unnecessarily unmap/map the virtual BARs + * from/to the physical BARs multiple times. + * This reduces the VM boot time significantly + * if the BAR sizes are huge. + */ break; } } @@ -1945,9 +2232,9 @@ static void hv_pci_remove_slots(struct hv_pcibus_device *hbus) } /* - * Set NUMA node for the devices on the bus + * Set NUMA node and DMA coherence for the devices on the bus */ -static void hv_pci_assign_numa_node(struct hv_pcibus_device *hbus) +static void hv_pci_assign_properties(struct hv_pcibus_device *hbus) { struct pci_dev *dev; struct pci_bus *bus = hbus->bridge->bus; @@ -1970,6 +2257,14 @@ static void hv_pci_assign_numa_node(struct hv_pcibus_device *hbus) numa_map_to_online_node( hv_dev->desc.virtual_numa_node)); + /* + * On ARM64, propagate the DMA coherence from the VMbus device + * to the corresponding PCI device. On x86/x64, these calls + * have no effect because DMA is always hardware coherent. + */ + dev_set_dma_coherent(&dev->dev, + dev_is_dma_coherent(&hbus->hdev->device)); + put_pcichild(hv_dev); } } @@ -1994,7 +2289,7 @@ static int create_root_hv_pci_bus(struct hv_pcibus_device *hbus) return error; pci_lock_rescan_remove(); - hv_pci_assign_numa_node(hbus); + hv_pci_assign_properties(hbus); pci_bus_assign_resources(bridge->bus); hv_pci_assign_slots(hbus); pci_bus_add_devices(bridge->bus); @@ -2263,7 +2558,7 @@ static void pci_devices_present_work(struct work_struct *work) */ pci_lock_rescan_remove(); pci_scan_child_bus(hbus->bridge->bus); - hv_pci_assign_numa_node(hbus); + hv_pci_assign_properties(hbus); hv_pci_assign_slots(hbus); pci_unlock_rescan_remove(); break; @@ -2456,7 +2751,7 @@ static void hv_eject_device_work(struct work_struct *work) ejct_pkt->message_type.type = PCI_EJECTION_COMPLETE; ejct_pkt->wslot.slot = hpdev->desc.win_slot.slot; vmbus_sendpacket(hbus->hdev->channel, ejct_pkt, - sizeof(*ejct_pkt), (unsigned long)&ctxt.pkt, + sizeof(*ejct_pkt), 0, VM_PKT_DATA_INBAND, 0); /* For the get_pcichild() in hv_pci_eject_device() */ @@ -2504,8 +2799,9 @@ static void hv_pci_onchannelcallback(void *context) const int packet_size = 0x100; int ret; struct hv_pcibus_device *hbus = context; + struct vmbus_channel *chan = hbus->hdev->channel; u32 bytes_recvd; - u64 req_id; + u64 req_id, req_addr; struct vmpacket_descriptor *desc; unsigned char *buffer; int bufferlen = packet_size; @@ -2517,14 +2813,15 @@ static void hv_pci_onchannelcallback(void *context) struct pci_dev_inval_block *inval; struct pci_dev_incoming *dev_message; struct hv_pci_dev *hpdev; + unsigned long flags; buffer = kmalloc(bufferlen, GFP_ATOMIC); if (!buffer) return; while (1) { - ret = vmbus_recvpacket_raw(hbus->hdev->channel, buffer, - bufferlen, &bytes_recvd, &req_id); + ret = vmbus_recvpacket_raw(chan, buffer, bufferlen, + &bytes_recvd, &req_id); if (ret == -ENOBUFS) { kfree(buffer); @@ -2551,15 +2848,29 @@ static void hv_pci_onchannelcallback(void *context) switch (desc->type) { case VM_PKT_COMP: + lock_requestor(chan, flags); + req_addr = __vmbus_request_addr_match(chan, req_id, + VMBUS_RQST_ADDR_ANY); + if (req_addr == VMBUS_RQST_ERROR) { + unlock_requestor(chan, flags); + dev_err(&hbus->hdev->device, + "Invalid transaction ID %llx\n", + req_id); + break; + } + comp_packet = (struct pci_packet *)req_addr; + response = (struct pci_response *)buffer; /* - * The host is trusted, and thus it's safe to interpret - * this transaction ID as a pointer. + * Call ->completion_func() within the critical section to make + * sure that the packet pointer is still valid during the call: + * here 'valid' means that there's a task still waiting for the + * completion, and that the packet data is still on the waiting + * task's stack. Cf. hv_compose_msi_msg(). */ - comp_packet = (struct pci_packet *)req_id; - response = (struct pci_response *)buffer; comp_packet->completion_func(comp_packet->compl_ctxt, response, bytes_recvd); + unlock_requestor(chan, flags); break; case VM_PKT_DATA_INBAND: @@ -3288,6 +3599,10 @@ static int hv_pci_probe(struct hv_device *hdev, goto free_dom; } + hdev->channel->next_request_id_callback = vmbus_next_request_id; + hdev->channel->request_addr_callback = vmbus_request_addr; + hdev->channel->rqstor_size = HV_PCI_RQSTOR_SIZE; + ret = vmbus_open(hdev->channel, pci_ring_size, pci_ring_size, NULL, 0, hv_pci_onchannelcallback, hbus); if (ret) @@ -3387,6 +3702,7 @@ static int hv_pci_probe(struct hv_device *hdev, static int hv_pci_bus_exit(struct hv_device *hdev, bool keep_devs) { struct hv_pcibus_device *hbus = hv_get_drvdata(hdev); + struct vmbus_channel *chan = hdev->channel; struct { struct pci_packet teardown_packet; u8 buffer[sizeof(struct pci_message)]; @@ -3394,13 +3710,14 @@ static int hv_pci_bus_exit(struct hv_device *hdev, bool keep_devs) struct hv_pci_compl comp_pkt; struct hv_pci_dev *hpdev, *tmp; unsigned long flags; + u64 trans_id; int ret; /* * After the host sends the RESCIND_CHANNEL message, it doesn't * access the per-channel ringbuffer any longer. */ - if (hdev->channel->rescind) + if (chan->rescind) return 0; if (!keep_devs) { @@ -3437,16 +3754,26 @@ static int hv_pci_bus_exit(struct hv_device *hdev, bool keep_devs) pkt.teardown_packet.compl_ctxt = &comp_pkt; pkt.teardown_packet.message[0].type = PCI_BUS_D0EXIT; - ret = vmbus_sendpacket(hdev->channel, &pkt.teardown_packet.message, - sizeof(struct pci_message), - (unsigned long)&pkt.teardown_packet, - VM_PKT_DATA_INBAND, - VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); + ret = vmbus_sendpacket_getid(chan, &pkt.teardown_packet.message, + sizeof(struct pci_message), + (unsigned long)&pkt.teardown_packet, + &trans_id, VM_PKT_DATA_INBAND, + VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); if (ret) return ret; - if (wait_for_completion_timeout(&comp_pkt.host_event, 10 * HZ) == 0) + if (wait_for_completion_timeout(&comp_pkt.host_event, 10 * HZ) == 0) { + /* + * The completion packet on the stack becomes invalid after + * 'return'; remove the ID from the VMbus requestor if the + * identifier is still mapped to/associated with the packet. + * + * Cf. hv_pci_onchannelcallback(). + */ + vmbus_request_addr_match(chan, trans_id, + (unsigned long)&pkt.teardown_packet); return -ETIMEDOUT; + } return 0; } @@ -3582,6 +3909,10 @@ static int hv_pci_resume(struct hv_device *hdev) hbus->state = hv_pcibus_init; + hdev->channel->next_request_id_callback = vmbus_next_request_id; + hdev->channel->request_addr_callback = vmbus_request_addr; + hdev->channel->rqstor_size = HV_PCI_RQSTOR_SIZE; + ret = vmbus_open(hdev->channel, pci_ring_size, pci_ring_size, NULL, 0, hv_pci_onchannelcallback, hbus); if (ret) @@ -3651,9 +3982,15 @@ static void __exit exit_hv_pci_drv(void) static int __init init_hv_pci_drv(void) { + int ret; + if (!hv_is_hyperv_initialized()) return -ENODEV; + ret = hv_pci_irqchip_init(); + if (ret) + return ret; + /* Set the invalid domain number's bit, so it will not be used */ set_bit(HVPCI_DOM_INVALID, hvpci_dom_map); diff --git a/drivers/pci/controller/pcie-microchip-host.c b/drivers/pci/controller/pcie-microchip-host.c index 6e8a6540b377b..8eb049c839ca7 100644 --- a/drivers/pci/controller/pcie-microchip-host.c +++ b/drivers/pci/controller/pcie-microchip-host.c @@ -167,12 +167,12 @@ #define EVENT_PCIE_DLUP_EXIT 2 #define EVENT_SEC_TX_RAM_SEC_ERR 3 #define EVENT_SEC_RX_RAM_SEC_ERR 4 -#define EVENT_SEC_AXI2PCIE_RAM_SEC_ERR 5 -#define EVENT_SEC_PCIE2AXI_RAM_SEC_ERR 6 +#define EVENT_SEC_PCIE2AXI_RAM_SEC_ERR 5 +#define EVENT_SEC_AXI2PCIE_RAM_SEC_ERR 6 #define EVENT_DED_TX_RAM_DED_ERR 7 #define EVENT_DED_RX_RAM_DED_ERR 8 -#define EVENT_DED_AXI2PCIE_RAM_DED_ERR 9 -#define EVENT_DED_PCIE2AXI_RAM_DED_ERR 10 +#define EVENT_DED_PCIE2AXI_RAM_DED_ERR 9 +#define EVENT_DED_AXI2PCIE_RAM_DED_ERR 10 #define EVENT_LOCAL_DMA_END_ENGINE_0 11 #define EVENT_LOCAL_DMA_END_ENGINE_1 12 #define EVENT_LOCAL_DMA_ERROR_ENGINE_0 13 diff --git a/drivers/pci/controller/pcie-rockchip.h b/drivers/pci/controller/pcie-rockchip.h index 88e2bf65e433a..e3a9292f2dbe5 100644 --- a/drivers/pci/controller/pcie-rockchip.h +++ b/drivers/pci/controller/pcie-rockchip.h @@ -159,7 +159,9 @@ #define PCIE_RC_CONFIG_THP_CAP (PCIE_RC_CONFIG_BASE + 0x274) #define PCIE_RC_CONFIG_THP_CAP_NEXT_MASK GENMASK(31, 20) -#define PCIE_ADDR_MASK 0xffffff00 +#define MAX_AXI_IB_ROOTPORT_REGION_NUM 3 +#define MIN_AXI_ADDR_BITS_PASSED 8 +#define PCIE_ADDR_MASK GENMASK_ULL(63, MIN_AXI_ADDR_BITS_PASSED) #define PCIE_CORE_AXI_CONF_BASE 0xc00000 #define PCIE_CORE_OB_REGION_ADDR0 (PCIE_CORE_AXI_CONF_BASE + 0x0) #define PCIE_CORE_OB_REGION_ADDR0_NUM_BITS 0x3f @@ -186,8 +188,6 @@ #define AXI_WRAPPER_TYPE1_CFG 0xb #define AXI_WRAPPER_NOR_MSG 0xc -#define MAX_AXI_IB_ROOTPORT_REGION_NUM 3 -#define MIN_AXI_ADDR_BITS_PASSED 8 #define PCIE_RC_SEND_PME_OFF 0x11960 #define ROCKCHIP_VENDOR_ID 0x1d87 #define PCIE_LINK_IS_L2(x) \ diff --git a/drivers/pci/hotplug/acpiphp_glue.c b/drivers/pci/hotplug/acpiphp_glue.c index 0a37967b0a939..f031302ad4019 100644 --- a/drivers/pci/hotplug/acpiphp_glue.c +++ b/drivers/pci/hotplug/acpiphp_glue.c @@ -503,15 +503,12 @@ static void enable_slot(struct acpiphp_slot *slot, bool bridge) if (pass && dev->subordinate) { check_hotplug_bridge(slot, dev); pcibios_resource_survey_bus(dev->subordinate); - if (pci_is_root_bus(bus)) - __pci_bus_size_bridges(dev->subordinate, &add_list); + __pci_bus_size_bridges(dev->subordinate, + &add_list); } } } - if (pci_is_root_bus(bus)) - __pci_bus_assign_resources(bus, &add_list, NULL); - else - pci_assign_unassigned_bridge_resources(bus->self); + __pci_bus_assign_resources(bus, &add_list, NULL); } acpiphp_sanitize_bus(bus); diff --git a/drivers/pci/hotplug/pciehp_hpc.c b/drivers/pci/hotplug/pciehp_hpc.c index 60098a701e83a..7773009b8b32e 100644 --- a/drivers/pci/hotplug/pciehp_hpc.c +++ b/drivers/pci/hotplug/pciehp_hpc.c @@ -332,17 +332,11 @@ int pciehp_check_link_status(struct controller *ctrl) static int __pciehp_link_set(struct controller *ctrl, bool enable) { struct pci_dev *pdev = ctrl_dev(ctrl); - u16 lnk_ctrl; - pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &lnk_ctrl); + pcie_capability_clear_and_set_word(pdev, PCI_EXP_LNKCTL, + PCI_EXP_LNKCTL_LD, + enable ? 0 : PCI_EXP_LNKCTL_LD); - if (enable) - lnk_ctrl &= ~PCI_EXP_LNKCTL_LD; - else - lnk_ctrl |= PCI_EXP_LNKCTL_LD; - - pcie_capability_write_word(pdev, PCI_EXP_LNKCTL, lnk_ctrl); - ctrl_dbg(ctrl, "%s: lnk_ctrl = %x\n", __func__, lnk_ctrl); return 0; } diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c index 96132d68be1ed..f69c00a0242b2 100644 --- a/drivers/pci/msi.c +++ b/drivers/pci/msi.c @@ -138,9 +138,9 @@ void __weak arch_restore_msi_irqs(struct pci_dev *dev) static inline __attribute_const__ u32 msi_multi_mask(struct msi_desc *desc) { /* Don't shift by >= width of type */ - if (desc->msi_attrib.multi_cap >= 5) + if (desc->pci.msi_attrib.multi_cap >= 5) return 0xffffffff; - return (1 << (1 << desc->msi_attrib.multi_cap)) - 1; + return (1 << (1 << desc->pci.msi_attrib.multi_cap)) - 1; } static noinline void pci_msi_update_mask(struct msi_desc *desc, u32 clear, u32 set) @@ -148,14 +148,14 @@ static noinline void pci_msi_update_mask(struct msi_desc *desc, u32 clear, u32 s raw_spinlock_t *lock = &desc->dev->msi_lock; unsigned long flags; - if (!desc->msi_attrib.can_mask) + if (!desc->pci.msi_attrib.can_mask) return; raw_spin_lock_irqsave(lock, flags); - desc->msi_mask &= ~clear; - desc->msi_mask |= set; - pci_write_config_dword(msi_desc_to_pci_dev(desc), desc->mask_pos, - desc->msi_mask); + desc->pci.msi_mask &= ~clear; + desc->pci.msi_mask |= set; + pci_write_config_dword(msi_desc_to_pci_dev(desc), desc->pci.mask_pos, + desc->pci.msi_mask); raw_spin_unlock_irqrestore(lock, flags); } @@ -171,7 +171,7 @@ static inline void pci_msi_unmask(struct msi_desc *desc, u32 mask) static inline void __iomem *pci_msix_desc_addr(struct msi_desc *desc) { - return desc->mask_base + desc->msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE; + return desc->pci.mask_base + desc->pci.msi_attrib.entry_nr * PCI_MSIX_ENTRY_SIZE; } /* @@ -184,27 +184,27 @@ static void pci_msix_write_vector_ctrl(struct msi_desc *desc, u32 ctrl) { void __iomem *desc_addr = pci_msix_desc_addr(desc); - if (desc->msi_attrib.can_mask) + if (desc->pci.msi_attrib.can_mask) writel(ctrl, desc_addr + PCI_MSIX_ENTRY_VECTOR_CTRL); } static inline void pci_msix_mask(struct msi_desc *desc) { - desc->msix_ctrl |= PCI_MSIX_ENTRY_CTRL_MASKBIT; - pci_msix_write_vector_ctrl(desc, desc->msix_ctrl); + desc->pci.msix_ctrl |= PCI_MSIX_ENTRY_CTRL_MASKBIT; + pci_msix_write_vector_ctrl(desc, desc->pci.msix_ctrl); /* Flush write to device */ - readl(desc->mask_base); + readl(desc->pci.mask_base); } static inline void pci_msix_unmask(struct msi_desc *desc) { - desc->msix_ctrl &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT; - pci_msix_write_vector_ctrl(desc, desc->msix_ctrl); + desc->pci.msix_ctrl &= ~PCI_MSIX_ENTRY_CTRL_MASKBIT; + pci_msix_write_vector_ctrl(desc, desc->pci.msix_ctrl); } static void __pci_msi_mask_desc(struct msi_desc *desc, u32 mask) { - if (desc->msi_attrib.is_msix) + if (desc->pci.msi_attrib.is_msix) pci_msix_mask(desc); else pci_msi_mask(desc, mask); @@ -212,7 +212,7 @@ static void __pci_msi_mask_desc(struct msi_desc *desc, u32 mask) static void __pci_msi_unmask_desc(struct msi_desc *desc, u32 mask) { - if (desc->msi_attrib.is_msix) + if (desc->pci.msi_attrib.is_msix) pci_msix_unmask(desc); else pci_msi_unmask(desc, mask); @@ -256,10 +256,10 @@ void __pci_read_msi_msg(struct msi_desc *entry, struct msi_msg *msg) BUG_ON(dev->current_state != PCI_D0); - if (entry->msi_attrib.is_msix) { + if (entry->pci.msi_attrib.is_msix) { void __iomem *base = pci_msix_desc_addr(entry); - if (WARN_ON_ONCE(entry->msi_attrib.is_virtual)) + if (WARN_ON_ONCE(entry->pci.msi_attrib.is_virtual)) return; msg->address_lo = readl(base + PCI_MSIX_ENTRY_LOWER_ADDR); @@ -271,7 +271,7 @@ void __pci_read_msi_msg(struct msi_desc *entry, struct msi_msg *msg) pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO, &msg->address_lo); - if (entry->msi_attrib.is_64) { + if (entry->pci.msi_attrib.is_64) { pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI, &msg->address_hi); pci_read_config_word(dev, pos + PCI_MSI_DATA_64, &data); @@ -289,12 +289,12 @@ void __pci_write_msi_msg(struct msi_desc *entry, struct msi_msg *msg) if (dev->current_state != PCI_D0 || pci_dev_is_disconnected(dev)) { /* Don't touch the hardware now */ - } else if (entry->msi_attrib.is_msix) { + } else if (entry->pci.msi_attrib.is_msix) { void __iomem *base = pci_msix_desc_addr(entry); - u32 ctrl = entry->msix_ctrl; + u32 ctrl = entry->pci.msix_ctrl; bool unmasked = !(ctrl & PCI_MSIX_ENTRY_CTRL_MASKBIT); - if (entry->msi_attrib.is_virtual) + if (entry->pci.msi_attrib.is_virtual) goto skip; /* @@ -323,12 +323,12 @@ void __pci_write_msi_msg(struct msi_desc *entry, struct msi_msg *msg) pci_read_config_word(dev, pos + PCI_MSI_FLAGS, &msgctl); msgctl &= ~PCI_MSI_FLAGS_QSIZE; - msgctl |= entry->msi_attrib.multiple << 4; + msgctl |= entry->pci.msi_attrib.multiple << 4; pci_write_config_word(dev, pos + PCI_MSI_FLAGS, msgctl); pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO, msg->address_lo); - if (entry->msi_attrib.is_64) { + if (entry->pci.msi_attrib.is_64) { pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI, msg->address_hi); pci_write_config_word(dev, pos + PCI_MSI_DATA_64, @@ -376,9 +376,9 @@ static void free_msi_irqs(struct pci_dev *dev) pci_msi_teardown_msi_irqs(dev); list_for_each_entry_safe(entry, tmp, msi_list, list) { - if (entry->msi_attrib.is_msix) { + if (entry->pci.msi_attrib.is_msix) { if (list_is_last(&entry->list, msi_list)) - iounmap(entry->mask_base); + iounmap(entry->pci.mask_base); } list_del(&entry->list); @@ -420,7 +420,7 @@ static void __pci_restore_msi_state(struct pci_dev *dev) pci_read_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, &control); pci_msi_update_mask(entry, 0, 0); control &= ~PCI_MSI_FLAGS_QSIZE; - control |= (entry->msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE; + control |= (entry->pci.msi_attrib.multiple << 4) | PCI_MSI_FLAGS_ENABLE; pci_write_config_word(dev, dev->msi_cap + PCI_MSI_FLAGS, control); } @@ -449,7 +449,7 @@ static void __pci_restore_msix_state(struct pci_dev *dev) arch_restore_msi_irqs(dev); for_each_pci_msi_entry(entry, dev) - pci_msix_write_vector_ctrl(entry, entry->msix_ctrl); + pci_msix_write_vector_ctrl(entry, entry->pci.msix_ctrl); pci_msix_clear_and_set_ctrl(dev, PCI_MSIX_FLAGS_MASKALL, 0); } @@ -481,24 +481,24 @@ msi_setup_entry(struct pci_dev *dev, int nvec, struct irq_affinity *affd) if (dev->dev_flags & PCI_DEV_FLAGS_HAS_MSI_MASKING) control |= PCI_MSI_FLAGS_MASKBIT; - entry->msi_attrib.is_msix = 0; - entry->msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT); - entry->msi_attrib.is_virtual = 0; - entry->msi_attrib.entry_nr = 0; - entry->msi_attrib.can_mask = !pci_msi_ignore_mask && + entry->pci.msi_attrib.is_msix = 0; + entry->pci.msi_attrib.is_64 = !!(control & PCI_MSI_FLAGS_64BIT); + entry->pci.msi_attrib.is_virtual = 0; + entry->pci.msi_attrib.entry_nr = 0; + entry->pci.msi_attrib.can_mask = !pci_msi_ignore_mask && !!(control & PCI_MSI_FLAGS_MASKBIT); - entry->msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */ - entry->msi_attrib.multi_cap = (control & PCI_MSI_FLAGS_QMASK) >> 1; - entry->msi_attrib.multiple = ilog2(__roundup_pow_of_two(nvec)); + entry->pci.msi_attrib.default_irq = dev->irq; /* Save IOAPIC IRQ */ + entry->pci.msi_attrib.multi_cap = (control & PCI_MSI_FLAGS_QMASK) >> 1; + entry->pci.msi_attrib.multiple = ilog2(__roundup_pow_of_two(nvec)); if (control & PCI_MSI_FLAGS_64BIT) - entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_64; + entry->pci.mask_pos = dev->msi_cap + PCI_MSI_MASK_64; else - entry->mask_pos = dev->msi_cap + PCI_MSI_MASK_32; + entry->pci.mask_pos = dev->msi_cap + PCI_MSI_MASK_32; /* Save the initial mask status */ - if (entry->msi_attrib.can_mask) - pci_read_config_dword(dev, entry->mask_pos, &entry->msi_mask); + if (entry->pci.msi_attrib.can_mask) + pci_read_config_dword(dev, entry->pci.mask_pos, &entry->pci.msi_mask); out: kfree(masks); @@ -629,26 +629,26 @@ static int msix_setup_entries(struct pci_dev *dev, void __iomem *base, goto out; } - entry->msi_attrib.is_msix = 1; - entry->msi_attrib.is_64 = 1; + entry->pci.msi_attrib.is_msix = 1; + entry->pci.msi_attrib.is_64 = 1; if (entries) - entry->msi_attrib.entry_nr = entries[i].entry; + entry->pci.msi_attrib.entry_nr = entries[i].entry; else - entry->msi_attrib.entry_nr = i; + entry->pci.msi_attrib.entry_nr = i; - entry->msi_attrib.is_virtual = - entry->msi_attrib.entry_nr >= vec_count; + entry->pci.msi_attrib.is_virtual = + entry->pci.msi_attrib.entry_nr >= vec_count; - entry->msi_attrib.can_mask = !pci_msi_ignore_mask && - !entry->msi_attrib.is_virtual; + entry->pci.msi_attrib.can_mask = !pci_msi_ignore_mask && + !entry->pci.msi_attrib.is_virtual; - entry->msi_attrib.default_irq = dev->irq; - entry->mask_base = base; + entry->pci.msi_attrib.default_irq = dev->irq; + entry->pci.mask_base = base; - if (entry->msi_attrib.can_mask) { + if (entry->pci.msi_attrib.can_mask) { addr = pci_msix_desc_addr(entry); - entry->msix_ctrl = readl(addr + PCI_MSIX_ENTRY_VECTOR_CTRL); + entry->pci.msix_ctrl = readl(addr + PCI_MSIX_ENTRY_VECTOR_CTRL); } list_add_tail(&entry->list, dev_to_msi_list(&dev->dev)); @@ -873,7 +873,7 @@ static void pci_msi_shutdown(struct pci_dev *dev) pci_msi_unmask(desc, msi_multi_mask(desc)); /* Restore dev->irq to its default pin-assertion IRQ */ - dev->irq = desc->msi_attrib.default_irq; + dev->irq = desc->pci.msi_attrib.default_irq; pcibios_alloc_irq(dev); } @@ -1202,7 +1202,7 @@ int pci_irq_vector(struct pci_dev *dev, unsigned int nr) struct msi_desc *entry; for_each_pci_msi_entry(entry, dev) { - if (entry->msi_attrib.entry_nr == nr) + if (entry->pci.msi_attrib.entry_nr == nr) return entry->irq; } WARN_ON_ONCE(1); @@ -1241,7 +1241,7 @@ const struct cpumask *pci_irq_get_affinity(struct pci_dev *dev, int nr) struct msi_desc *entry; for_each_pci_msi_entry(entry, dev) { - if (entry->msi_attrib.entry_nr == nr) + if (entry->pci.msi_attrib.entry_nr == nr) return &entry->affinity->mask; } WARN_ON_ONCE(1); @@ -1266,21 +1266,13 @@ struct pci_dev *msi_desc_to_pci_dev(struct msi_desc *desc) } EXPORT_SYMBOL(msi_desc_to_pci_dev); -void *msi_desc_to_pci_sysdata(struct msi_desc *desc) -{ - struct pci_dev *dev = msi_desc_to_pci_dev(desc); - - return dev->bus->sysdata; -} -EXPORT_SYMBOL_GPL(msi_desc_to_pci_sysdata); - #ifdef CONFIG_PCI_MSI_IRQ_DOMAIN /** * pci_msi_domain_write_msg - Helper to write MSI message to PCI config space * @irq_data: Pointer to interrupt data of the MSI interrupt * @msg: Pointer to the message */ -void pci_msi_domain_write_msg(struct irq_data *irq_data, struct msi_msg *msg) +static void pci_msi_domain_write_msg(struct irq_data *irq_data, struct msi_msg *msg) { struct msi_desc *desc = irq_data_get_msi_desc(irq_data); @@ -1302,14 +1294,14 @@ static irq_hw_number_t pci_msi_domain_calc_hwirq(struct msi_desc *desc) { struct pci_dev *dev = msi_desc_to_pci_dev(desc); - return (irq_hw_number_t)desc->msi_attrib.entry_nr | + return (irq_hw_number_t)desc->pci.msi_attrib.entry_nr | pci_dev_id(dev) << 11 | (pci_domain_nr(dev->bus) & 0xFFFFFFFF) << 27; } static inline bool pci_msi_desc_is_multi_msi(struct msi_desc *desc) { - return !desc->msi_attrib.is_msix && desc->nvec_used > 1; + return !desc->pci.msi_attrib.is_msix && desc->nvec_used > 1; } /** @@ -1333,7 +1325,7 @@ int pci_msi_domain_check_cap(struct irq_domain *domain, if (pci_msi_desc_is_multi_msi(desc) && !(info->flags & MSI_FLAG_MULTI_PCI_MSI)) return 1; - else if (desc->msi_attrib.is_msix && !(info->flags & MSI_FLAG_PCI_MSIX)) + else if (desc->pci.msi_attrib.is_msix && !(info->flags & MSI_FLAG_PCI_MSIX)) return -ENOTSUPP; return 0; diff --git a/drivers/pci/pci-acpi.c b/drivers/pci/pci-acpi.c index 813e0d25e841e..8f4a4fc48efa0 100644 --- a/drivers/pci/pci-acpi.c +++ b/drivers/pci/pci-acpi.c @@ -910,7 +910,7 @@ static pci_power_t acpi_pci_choose_state(struct pci_dev *pdev) { int acpi_state, d_max; - if (pdev->no_d3cold) + if (pdev->no_d3cold || !pdev->d3cold_allowed) d_max = ACPI_STATE_D3_HOT; else d_max = ACPI_STATE_D3_COLD; diff --git a/drivers/pci/pci-sysfs.c b/drivers/pci/pci-sysfs.c index f2909ae93f2f8..9cf79afc0ec7d 100644 --- a/drivers/pci/pci-sysfs.c +++ b/drivers/pci/pci-sysfs.c @@ -12,7 +12,7 @@ * Modeled after usb's driverfs.c */ - +#include #include #include #include @@ -208,8 +208,7 @@ static ssize_t current_link_width_show(struct device *dev, if (err) return -EINVAL; - return sysfs_emit(buf, "%u\n", - (linkstat & PCI_EXP_LNKSTA_NLW) >> PCI_EXP_LNKSTA_NLW_SHIFT); + return sysfs_emit(buf, "%u\n", FIELD_GET(PCI_EXP_LNKSTA_NLW, linkstat)); } static DEVICE_ATTR_RO(current_link_width); @@ -509,10 +508,7 @@ static ssize_t d3cold_allowed_store(struct device *dev, return -EINVAL; pdev->d3cold_allowed = !!val; - if (pdev->d3cold_allowed) - pci_d3cold_enable(pdev); - else - pci_d3cold_disable(pdev); + pci_bridge_d3_update(pdev); pm_runtime_resume(dev); diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index c91b68fac44a2..7b4fad4ce7c71 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -3679,14 +3679,14 @@ u32 pci_rebar_get_possible_sizes(struct pci_dev *pdev, int bar) return 0; pci_read_config_dword(pdev, pos + PCI_REBAR_CAP, &cap); - cap &= PCI_REBAR_CAP_SIZES; + cap = FIELD_GET(PCI_REBAR_CAP_SIZES, cap); /* Sapphire RX 5600 XT Pulse has an invalid cap dword for BAR 0 */ if (pdev->vendor == PCI_VENDOR_ID_ATI && pdev->device == 0x731f && - bar == 0 && cap == 0x7000) - cap = 0x3f000; + bar == 0 && cap == 0x700) + return 0x3f00; - return cap >> 4; + return cap; } EXPORT_SYMBOL(pci_rebar_get_possible_sizes); @@ -6102,8 +6102,7 @@ u32 pcie_bandwidth_available(struct pci_dev *dev, struct pci_dev **limiting_dev, pcie_capability_read_word(dev, PCI_EXP_LNKSTA, &lnksta); next_speed = pcie_link_speed[lnksta & PCI_EXP_LNKSTA_CLS]; - next_width = (lnksta & PCI_EXP_LNKSTA_NLW) >> - PCI_EXP_LNKSTA_NLW_SHIFT; + next_width = FIELD_GET(PCI_EXP_LNKSTA_NLW, lnksta); next_bw = next_width * PCIE_SPEED2MBS_ENC(next_speed); @@ -6175,7 +6174,7 @@ enum pcie_link_width pcie_get_width_cap(struct pci_dev *dev) pcie_capability_read_dword(dev, PCI_EXP_LNKCAP, &lnkcap); if (lnkcap) - return (lnkcap & PCI_EXP_LNKCAP_MLW) >> 4; + return FIELD_GET(PCI_EXP_LNKCAP_MLW, lnkcap); return PCIE_LNK_WIDTH_UNKNOWN; } diff --git a/drivers/pci/pcie/aspm.c b/drivers/pci/pcie/aspm.c index f04ab0e9695b8..15f325d27acd4 100644 --- a/drivers/pci/pcie/aspm.c +++ b/drivers/pci/pcie/aspm.c @@ -249,7 +249,7 @@ static int pcie_retrain_link(struct pcie_link_state *link) static void pcie_aspm_configure_common_clock(struct pcie_link_state *link) { int same_clock = 1; - u16 reg16, parent_reg, child_reg[8]; + u16 reg16, ccc, parent_old_ccc, child_old_ccc[8]; struct pci_dev *child, *parent = link->pdev; struct pci_bus *linkbus = parent->subordinate; /* @@ -271,6 +271,7 @@ static void pcie_aspm_configure_common_clock(struct pcie_link_state *link) /* Port might be already in common clock mode */ pcie_capability_read_word(parent, PCI_EXP_LNKCTL, ®16); + parent_old_ccc = reg16 & PCI_EXP_LNKCTL_CCC; if (same_clock && (reg16 & PCI_EXP_LNKCTL_CCC)) { bool consistent = true; @@ -287,34 +288,29 @@ static void pcie_aspm_configure_common_clock(struct pcie_link_state *link) pci_info(parent, "ASPM: current common clock configuration is inconsistent, reconfiguring\n"); } + ccc = same_clock ? PCI_EXP_LNKCTL_CCC : 0; /* Configure downstream component, all functions */ list_for_each_entry(child, &linkbus->devices, bus_list) { pcie_capability_read_word(child, PCI_EXP_LNKCTL, ®16); - child_reg[PCI_FUNC(child->devfn)] = reg16; - if (same_clock) - reg16 |= PCI_EXP_LNKCTL_CCC; - else - reg16 &= ~PCI_EXP_LNKCTL_CCC; - pcie_capability_write_word(child, PCI_EXP_LNKCTL, reg16); + child_old_ccc[PCI_FUNC(child->devfn)] = reg16 & PCI_EXP_LNKCTL_CCC; + pcie_capability_clear_and_set_word(child, PCI_EXP_LNKCTL, + PCI_EXP_LNKCTL_CCC, ccc); } /* Configure upstream component */ - pcie_capability_read_word(parent, PCI_EXP_LNKCTL, ®16); - parent_reg = reg16; - if (same_clock) - reg16 |= PCI_EXP_LNKCTL_CCC; - else - reg16 &= ~PCI_EXP_LNKCTL_CCC; - pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16); + pcie_capability_clear_and_set_word(parent, PCI_EXP_LNKCTL, + PCI_EXP_LNKCTL_CCC, ccc); if (pcie_retrain_link(link)) { /* Training failed. Restore common clock configurations */ pci_err(parent, "ASPM: Could not configure common clock\n"); list_for_each_entry(child, &linkbus->devices, bus_list) - pcie_capability_write_word(child, PCI_EXP_LNKCTL, - child_reg[PCI_FUNC(child->devfn)]); - pcie_capability_write_word(parent, PCI_EXP_LNKCTL, parent_reg); + pcie_capability_clear_and_set_word(child, PCI_EXP_LNKCTL, + PCI_EXP_LNKCTL_CCC, + child_old_ccc[PCI_FUNC(child->devfn)]); + pcie_capability_clear_and_set_word(parent, PCI_EXP_LNKCTL, + PCI_EXP_LNKCTL_CCC, parent_old_ccc); } } @@ -1291,6 +1287,8 @@ static ssize_t aspm_attr_store_common(struct device *dev, link->aspm_disable &= ~ASPM_STATE_L1; } else { link->aspm_disable |= state; + if (state & ASPM_STATE_L1) + link->aspm_disable |= ASPM_STATE_L1SS; } pcie_config_aspm_link(link, policy_to_aspm_state(link)); diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index c50eb9cb78d64..68bbd9a45529c 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c @@ -607,7 +607,7 @@ DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_RS100, quirk_ati_ /* * In the AMD NL platform, this device ([1022:7912]) has a class code of * PCI_CLASS_SERIAL_USB_XHCI (0x0c0330), which means the xhci driver will - * claim it. + * claim it. The same applies on the VanGogh platform device ([1022:163a]). * * But the dwc3 driver is a more specific driver for this device, and we'd * prefer to use it instead of xhci. To prevent xhci from claiming the @@ -615,7 +615,7 @@ DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_RS100, quirk_ati_ * defines as "USB device (not host controller)". The dwc3 driver can then * claim it based on its Vendor and Device ID. */ -static void quirk_amd_nl_class(struct pci_dev *pdev) +static void quirk_amd_dwc_class(struct pci_dev *pdev) { u32 class = pdev->class; @@ -625,7 +625,9 @@ static void quirk_amd_nl_class(struct pci_dev *pdev) class, pdev->class); } DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_NL_USB, - quirk_amd_nl_class); + quirk_amd_dwc_class); +DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_VANGOGH_USB, + quirk_amd_dwc_class); /* * Synopsys USB 3.x host HAPS platform has a class code of @@ -5392,6 +5394,12 @@ DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_SERVERWORKS, 0x0420, quirk_no_ext_tags); DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_SERVERWORKS, 0x0422, quirk_no_ext_tags); #ifdef CONFIG_PCI_ATS +static void quirk_no_ats(struct pci_dev *pdev) +{ + pci_info(pdev, "disabling ATS\n"); + pdev->ats_cap = 0; +} + /* * Some devices require additional driver setup to enable ATS. Don't use * ATS for those devices as ATS will be enabled before the driver has had a @@ -5405,14 +5413,10 @@ static void quirk_amd_harvest_no_ats(struct pci_dev *pdev) (pdev->subsystem_device == 0xce19 || pdev->subsystem_device == 0xcc10 || pdev->subsystem_device == 0xcc08)) - goto no_ats; - else - return; + quirk_no_ats(pdev); + } else { + quirk_no_ats(pdev); } - -no_ats: - pci_info(pdev, "disabling ATS\n"); - pdev->ats_cap = 0; } /* AMD Stoney platform GPU */ @@ -5435,6 +5439,25 @@ DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, 0x7347, quirk_amd_harvest_no_ats); DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, 0x734f, quirk_amd_harvest_no_ats); /* AMD Raven platform iGPU */ DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, 0x15d8, quirk_amd_harvest_no_ats); + +/* + * Intel IPU E2000 revisions before C0 implement incorrect endianness + * in ATS Invalidate Request message body. Disable ATS for those devices. + */ +static void quirk_intel_e2000_no_ats(struct pci_dev *pdev) +{ + if (pdev->revision < 0x20) + quirk_no_ats(pdev); +} +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x1451, quirk_intel_e2000_no_ats); +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x1452, quirk_intel_e2000_no_ats); +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x1453, quirk_intel_e2000_no_ats); +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x1454, quirk_intel_e2000_no_ats); +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x1455, quirk_intel_e2000_no_ats); +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x1457, quirk_intel_e2000_no_ats); +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x1459, quirk_intel_e2000_no_ats); +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x145a, quirk_intel_e2000_no_ats); +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x145c, quirk_intel_e2000_no_ats); #endif /* CONFIG_PCI_ATS */ /* Freescale PCIe doesn't support MSI in RC mode */ diff --git a/drivers/pci/xen-pcifront.c b/drivers/pci/xen-pcifront.c index 2156c632524d7..7229b32472cd3 100644 --- a/drivers/pci/xen-pcifront.c +++ b/drivers/pci/xen-pcifront.c @@ -263,7 +263,7 @@ static int pci_frontend_enable_msix(struct pci_dev *dev, i = 0; for_each_pci_msi_entry(entry, dev) { - op.msix_entries[i].entry = entry->msi_attrib.entry_nr; + op.msix_entries[i].entry = entry->pci.msi_attrib.entry_nr; /* Vector is useless at this point. */ op.msix_entries[i].vector = -1; i++; diff --git a/drivers/pcmcia/cs.c b/drivers/pcmcia/cs.c index f70197154a362..820cce7c8b400 100644 --- a/drivers/pcmcia/cs.c +++ b/drivers/pcmcia/cs.c @@ -605,6 +605,7 @@ static int pccardd(void *__skt) dev_warn(&skt->dev, "PCMCIA: unable to register socket\n"); skt->thread = NULL; complete(&skt->thread_done); + put_device(&skt->dev); return 0; } ret = pccard_sysfs_add_socket(&skt->dev); diff --git a/drivers/pcmcia/ds.c b/drivers/pcmcia/ds.c index 5bd1b80424e72..f8baf178ef3c6 100644 --- a/drivers/pcmcia/ds.c +++ b/drivers/pcmcia/ds.c @@ -513,9 +513,6 @@ static struct pcmcia_device *pcmcia_device_add(struct pcmcia_socket *s, /* by default don't allow DMA */ p_dev->dma_mask = 0; p_dev->dev.dma_mask = &p_dev->dma_mask; - dev_set_name(&p_dev->dev, "%d.%d", p_dev->socket->sock, p_dev->device_no); - if (!dev_name(&p_dev->dev)) - goto err_free; p_dev->devname = kasprintf(GFP_KERNEL, "pcmcia%s", dev_name(&p_dev->dev)); if (!p_dev->devname) goto err_free; @@ -573,8 +570,15 @@ static struct pcmcia_device *pcmcia_device_add(struct pcmcia_socket *s, pcmcia_device_query(p_dev); - if (device_register(&p_dev->dev)) - goto err_unreg; + dev_set_name(&p_dev->dev, "%d.%d", p_dev->socket->sock, p_dev->device_no); + if (device_register(&p_dev->dev)) { + mutex_lock(&s->ops_mutex); + list_del(&p_dev->socket_device_list); + s->device_count--; + mutex_unlock(&s->ops_mutex); + put_device(&p_dev->dev); + return NULL; + } return p_dev; diff --git a/drivers/perf/arm-cmn.c b/drivers/perf/arm-cmn.c index 40945343c4cc1..e2a055ba0b7a8 100644 --- a/drivers/perf/arm-cmn.c +++ b/drivers/perf/arm-cmn.c @@ -1177,7 +1177,7 @@ static irqreturn_t arm_cmn_handle_irq(int irq, void *dev_id) u64 delta; int i; - for (i = 0; i < CMN_DTM_NUM_COUNTERS; i++) { + for (i = 0; i < CMN_DT_NUM_COUNTERS; i++) { if (status & (1U << i)) { ret = IRQ_HANDLED; if (WARN_ON(!dtc->counters[i])) diff --git a/drivers/perf/arm_smmuv3_pmu.c b/drivers/perf/arm_smmuv3_pmu.c index 5933ad151f869..1ef683bb40b64 100644 --- a/drivers/perf/arm_smmuv3_pmu.c +++ b/drivers/perf/arm_smmuv3_pmu.c @@ -96,6 +96,7 @@ #define SMMU_PMCG_PA_SHIFT 12 #define SMMU_PMCG_EVCNTR_RDONLY BIT(0) +#define SMMU_PMCG_HARDEN_DISABLE BIT(1) static int cpuhp_state_num; @@ -140,6 +141,20 @@ static inline void smmu_pmu_enable(struct pmu *pmu) writel(SMMU_PMCG_CR_ENABLE, smmu_pmu->reg_base + SMMU_PMCG_CR); } +static int smmu_pmu_apply_event_filter(struct smmu_pmu *smmu_pmu, + struct perf_event *event, int idx); + +static inline void smmu_pmu_enable_quirk_hip08_09(struct pmu *pmu) +{ + struct smmu_pmu *smmu_pmu = to_smmu_pmu(pmu); + unsigned int idx; + + for_each_set_bit(idx, smmu_pmu->used_counters, smmu_pmu->num_counters) + smmu_pmu_apply_event_filter(smmu_pmu, smmu_pmu->events[idx], idx); + + smmu_pmu_enable(pmu); +} + static inline void smmu_pmu_disable(struct pmu *pmu) { struct smmu_pmu *smmu_pmu = to_smmu_pmu(pmu); @@ -148,6 +163,22 @@ static inline void smmu_pmu_disable(struct pmu *pmu) writel(0, smmu_pmu->reg_base + SMMU_PMCG_IRQ_CTRL); } +static inline void smmu_pmu_disable_quirk_hip08_09(struct pmu *pmu) +{ + struct smmu_pmu *smmu_pmu = to_smmu_pmu(pmu); + unsigned int idx; + + /* + * The global disable of PMU sometimes fail to stop the counting. + * Harden this by writing an invalid event type to each used counter + * to forcibly stop counting. + */ + for_each_set_bit(idx, smmu_pmu->used_counters, smmu_pmu->num_counters) + writel(0xffff, smmu_pmu->reg_base + SMMU_PMCG_EVTYPER(idx)); + + smmu_pmu_disable(pmu); +} + static inline void smmu_pmu_counter_set_value(struct smmu_pmu *smmu_pmu, u32 idx, u64 value) { @@ -747,7 +778,10 @@ static void smmu_pmu_get_acpi_options(struct smmu_pmu *smmu_pmu) switch (model) { case IORT_SMMU_V3_PMCG_HISI_HIP08: /* HiSilicon Erratum 162001800 */ - smmu_pmu->options |= SMMU_PMCG_EVCNTR_RDONLY; + smmu_pmu->options |= SMMU_PMCG_EVCNTR_RDONLY | SMMU_PMCG_HARDEN_DISABLE; + break; + case IORT_SMMU_V3_PMCG_HISI_HIP09: + smmu_pmu->options |= SMMU_PMCG_HARDEN_DISABLE; break; } @@ -836,6 +870,16 @@ static int smmu_pmu_probe(struct platform_device *pdev) smmu_pmu_get_acpi_options(smmu_pmu); + /* + * For platforms suffer this quirk, the PMU disable sometimes fails to + * stop the counters. This will leads to inaccurate or error counting. + * Forcibly disable the counters with these quirk handler. + */ + if (smmu_pmu->options & SMMU_PMCG_HARDEN_DISABLE) { + smmu_pmu->pmu.pmu_enable = smmu_pmu_enable_quirk_hip08_09; + smmu_pmu->pmu.pmu_disable = smmu_pmu_disable_quirk_hip08_09; + } + /* Pick one CPU to be the preferred one to use */ smmu_pmu->on_cpu = raw_smp_processor_id(); WARN_ON(irq_set_affinity(smmu_pmu->irq, cpumask_of(smmu_pmu->on_cpu))); diff --git a/drivers/perf/fsl_imx8_ddr_perf.c b/drivers/perf/fsl_imx8_ddr_perf.c index b1b2a55de77fc..6f6bc0a446ff6 100644 --- a/drivers/perf/fsl_imx8_ddr_perf.c +++ b/drivers/perf/fsl_imx8_ddr_perf.c @@ -28,6 +28,8 @@ #define CNTL_CLEAR_MASK 0xFFFFFFFD #define CNTL_OVER_MASK 0xFFFFFFFE +#define CNTL_CP_SHIFT 16 +#define CNTL_CP_MASK (0xFF << CNTL_CP_SHIFT) #define CNTL_CSV_SHIFT 24 #define CNTL_CSV_MASK (0xFFU << CNTL_CSV_SHIFT) @@ -35,6 +37,8 @@ #define EVENT_CYCLES_COUNTER 0 #define NUM_COUNTERS 4 +/* For removing bias if cycle counter CNTL.CP is set to 0xf0 */ +#define CYCLES_COUNTER_MASK 0x0FFFFFFF #define AXI_MASKING_REVERT 0xffff0000 /* AXI_MASKING(MSB 16bits) + AXI_ID(LSB 16bits) */ #define to_ddr_pmu(p) container_of(p, struct ddr_pmu, pmu) @@ -102,6 +106,7 @@ struct ddr_pmu { const struct fsl_ddr_devtype_data *devtype_data; int irq; int id; + int active_counter; }; static ssize_t ddr_perf_identifier_show(struct device *dev, @@ -428,6 +433,17 @@ static void ddr_perf_counter_enable(struct ddr_pmu *pmu, int config, writel(0, pmu->base + reg); val = CNTL_EN | CNTL_CLEAR; val |= FIELD_PREP(CNTL_CSV_MASK, config); + + /* + * On i.MX8MP we need to bias the cycle counter to overflow more often. + * We do this by initializing bits [23:16] of the counter value via the + * COUNTER_CTRL Counter Parameter (CP) field. + */ + if (pmu->devtype_data->quirks & DDR_CAP_AXI_ID_FILTER_ENHANCED) { + if (counter == EVENT_CYCLES_COUNTER) + val |= FIELD_PREP(CNTL_CP_MASK, 0xf0); + } + writel(val, pmu->base + reg); } else { /* Disable counter */ @@ -467,6 +483,12 @@ static void ddr_perf_event_update(struct perf_event *event) int ret; new_raw_count = ddr_perf_read_counter(pmu, counter); + /* Remove the bias applied in ddr_perf_counter_enable(). */ + if (pmu->devtype_data->quirks & DDR_CAP_AXI_ID_FILTER_ENHANCED) { + if (counter == EVENT_CYCLES_COUNTER) + new_raw_count &= CYCLES_COUNTER_MASK; + } + local64_add(new_raw_count, &event->count); /* @@ -496,6 +518,10 @@ static void ddr_perf_event_start(struct perf_event *event, int flags) ddr_perf_counter_enable(pmu, event->attr.config, counter, true); + if (!pmu->active_counter++) + ddr_perf_counter_enable(pmu, EVENT_CYCLES_ID, + EVENT_CYCLES_COUNTER, true); + hwc->state = 0; } @@ -550,6 +576,10 @@ static void ddr_perf_event_stop(struct perf_event *event, int flags) ddr_perf_counter_enable(pmu, event->attr.config, counter, false); ddr_perf_event_update(event); + if (!--pmu->active_counter) + ddr_perf_counter_enable(pmu, EVENT_CYCLES_ID, + EVENT_CYCLES_COUNTER, false); + hwc->state |= PERF_HES_STOPPED; } @@ -568,25 +598,10 @@ static void ddr_perf_event_del(struct perf_event *event, int flags) static void ddr_perf_pmu_enable(struct pmu *pmu) { - struct ddr_pmu *ddr_pmu = to_ddr_pmu(pmu); - - /* enable cycle counter if cycle is not active event list */ - if (ddr_pmu->events[EVENT_CYCLES_COUNTER] == NULL) - ddr_perf_counter_enable(ddr_pmu, - EVENT_CYCLES_ID, - EVENT_CYCLES_COUNTER, - true); } static void ddr_perf_pmu_disable(struct pmu *pmu) { - struct ddr_pmu *ddr_pmu = to_ddr_pmu(pmu); - - if (ddr_pmu->events[EVENT_CYCLES_COUNTER] == NULL) - ddr_perf_counter_enable(ddr_pmu, - EVENT_CYCLES_ID, - EVENT_CYCLES_COUNTER, - false); } static int ddr_perf_init(struct ddr_pmu *pmu, void __iomem *base, diff --git a/drivers/perf/hisilicon/hisi_uncore_pa_pmu.c b/drivers/perf/hisilicon/hisi_uncore_pa_pmu.c index 83264ec0a9573..7b096f1dc9eb1 100644 --- a/drivers/perf/hisilicon/hisi_uncore_pa_pmu.c +++ b/drivers/perf/hisilicon/hisi_uncore_pa_pmu.c @@ -434,8 +434,8 @@ static int hisi_pa_pmu_probe(struct platform_device *pdev) ret = perf_pmu_register(&pa_pmu->pmu, name, -1); if (ret) { dev_err(pa_pmu->dev, "PMU register failed, ret = %d\n", ret); - cpuhp_state_remove_instance(CPUHP_AP_PERF_ARM_HISI_PA_ONLINE, - &pa_pmu->node); + cpuhp_state_remove_instance_nocalls(CPUHP_AP_PERF_ARM_HISI_PA_ONLINE, + &pa_pmu->node); return ret; } diff --git a/drivers/perf/hisilicon/hisi_uncore_sllc_pmu.c b/drivers/perf/hisilicon/hisi_uncore_sllc_pmu.c index 6aedc303ff56a..f3cd00fc9bbe6 100644 --- a/drivers/perf/hisilicon/hisi_uncore_sllc_pmu.c +++ b/drivers/perf/hisilicon/hisi_uncore_sllc_pmu.c @@ -463,8 +463,8 @@ static int hisi_sllc_pmu_probe(struct platform_device *pdev) ret = perf_pmu_register(&sllc_pmu->pmu, name, -1); if (ret) { dev_err(sllc_pmu->dev, "PMU register failed, ret = %d\n", ret); - cpuhp_state_remove_instance(CPUHP_AP_PERF_ARM_HISI_SLLC_ONLINE, - &sllc_pmu->node); + cpuhp_state_remove_instance_nocalls(CPUHP_AP_PERF_ARM_HISI_SLLC_ONLINE, + &sllc_pmu->node); return ret; } diff --git a/drivers/phy/motorola/phy-mapphone-mdm6600.c b/drivers/phy/motorola/phy-mapphone-mdm6600.c index 3cd4d51c247c3..67802f9e40ba0 100644 --- a/drivers/phy/motorola/phy-mapphone-mdm6600.c +++ b/drivers/phy/motorola/phy-mapphone-mdm6600.c @@ -122,16 +122,10 @@ static int phy_mdm6600_power_on(struct phy *x) { struct phy_mdm6600 *ddata = phy_get_drvdata(x); struct gpio_desc *enable_gpio = ddata->ctrl_gpios[PHY_MDM6600_ENABLE]; - int error; if (!ddata->enabled) return -ENODEV; - error = pinctrl_pm_select_default_state(ddata->dev); - if (error) - dev_warn(ddata->dev, "%s: error with default_state: %i\n", - __func__, error); - gpiod_set_value_cansleep(enable_gpio, 1); /* Allow aggressive PM for USB, it's only needed for n_gsm port */ @@ -160,11 +154,6 @@ static int phy_mdm6600_power_off(struct phy *x) gpiod_set_value_cansleep(enable_gpio, 0); - error = pinctrl_pm_select_sleep_state(ddata->dev); - if (error) - dev_warn(ddata->dev, "%s: error with sleep_state: %i\n", - __func__, error); - return 0; } @@ -456,6 +445,7 @@ static void phy_mdm6600_device_power_off(struct phy_mdm6600 *ddata) { struct gpio_desc *reset_gpio = ddata->ctrl_gpios[PHY_MDM6600_RESET]; + int error; ddata->enabled = false; phy_mdm6600_cmd(ddata, PHY_MDM6600_CMD_BP_SHUTDOWN_REQ); @@ -471,6 +461,17 @@ static void phy_mdm6600_device_power_off(struct phy_mdm6600 *ddata) } else { dev_err(ddata->dev, "Timed out powering down\n"); } + + /* + * Keep reset gpio high with padconf internal pull-up resistor to + * prevent modem from waking up during deeper SoC idle states. The + * gpio bank lines can have glitches if not in the always-on wkup + * domain. + */ + error = pinctrl_pm_select_sleep_state(ddata->dev); + if (error) + dev_warn(ddata->dev, "%s: error with sleep_state: %i\n", + __func__, error); } static void phy_mdm6600_deferred_power_on(struct work_struct *work) @@ -571,12 +572,6 @@ static int phy_mdm6600_probe(struct platform_device *pdev) ddata->dev = &pdev->dev; platform_set_drvdata(pdev, ddata); - /* Active state selected in phy_mdm6600_power_on() */ - error = pinctrl_pm_select_sleep_state(ddata->dev); - if (error) - dev_warn(ddata->dev, "%s: error with sleep_state: %i\n", - __func__, error); - error = phy_mdm6600_init_lines(ddata); if (error) return error; @@ -627,10 +622,12 @@ static int phy_mdm6600_probe(struct platform_device *pdev) pm_runtime_put_autosuspend(ddata->dev); cleanup: - if (error < 0) + if (error < 0) { phy_mdm6600_device_power_off(ddata); - pm_runtime_disable(ddata->dev); - pm_runtime_dont_use_autosuspend(ddata->dev); + pm_runtime_disable(ddata->dev); + pm_runtime_dont_use_autosuspend(ddata->dev); + } + return error; } @@ -639,6 +636,7 @@ static int phy_mdm6600_remove(struct platform_device *pdev) struct phy_mdm6600 *ddata = platform_get_drvdata(pdev); struct gpio_desc *reset_gpio = ddata->ctrl_gpios[PHY_MDM6600_RESET]; + pm_runtime_get_noresume(ddata->dev); pm_runtime_dont_use_autosuspend(ddata->dev); pm_runtime_put_sync(ddata->dev); pm_runtime_disable(ddata->dev); diff --git a/drivers/phy/qualcomm/phy-qcom-snps-femto-v2.c b/drivers/phy/qualcomm/phy-qcom-snps-femto-v2.c index abb9264569336..173d166ed8295 100644 --- a/drivers/phy/qualcomm/phy-qcom-snps-femto-v2.c +++ b/drivers/phy/qualcomm/phy-qcom-snps-femto-v2.c @@ -171,8 +171,7 @@ static int __maybe_unused qcom_snps_hsphy_runtime_suspend(struct device *dev) if (!hsphy->phy_initialized) return 0; - qcom_snps_hsphy_suspend(hsphy); - return 0; + return qcom_snps_hsphy_suspend(hsphy); } static int __maybe_unused qcom_snps_hsphy_runtime_resume(struct device *dev) @@ -182,8 +181,7 @@ static int __maybe_unused qcom_snps_hsphy_runtime_resume(struct device *dev) if (!hsphy->phy_initialized) return 0; - qcom_snps_hsphy_resume(hsphy); - return 0; + return qcom_snps_hsphy_resume(hsphy); } static int qcom_snps_hsphy_set_mode(struct phy *phy, enum phy_mode mode, diff --git a/drivers/phy/rockchip/phy-rockchip-inno-hdmi.c b/drivers/phy/rockchip/phy-rockchip-inno-hdmi.c index 80acca4e9e146..2556caf475c0c 100644 --- a/drivers/phy/rockchip/phy-rockchip-inno-hdmi.c +++ b/drivers/phy/rockchip/phy-rockchip-inno-hdmi.c @@ -745,10 +745,12 @@ unsigned long inno_hdmi_phy_rk3328_clk_recalc_rate(struct clk_hw *hw, do_div(vco, (nd * (no_a == 1 ? no_b : no_a) * no_d * 2)); } - inno->pixclock = vco; - dev_dbg(inno->dev, "%s rate %lu\n", __func__, inno->pixclock); + inno->pixclock = DIV_ROUND_CLOSEST((unsigned long)vco, 1000) * 1000; - return vco; + dev_dbg(inno->dev, "%s rate %lu vco %llu\n", + __func__, inno->pixclock, vco); + + return inno->pixclock; } static long inno_hdmi_phy_rk3328_clk_round_rate(struct clk_hw *hw, @@ -790,8 +792,8 @@ static int inno_hdmi_phy_rk3328_clk_set_rate(struct clk_hw *hw, RK3328_PRE_PLL_POWER_DOWN); /* Configure pre-pll */ - inno_update_bits(inno, 0xa0, RK3228_PCLK_VCO_DIV_5_MASK, - RK3228_PCLK_VCO_DIV_5(cfg->vco_div_5_en)); + inno_update_bits(inno, 0xa0, RK3328_PCLK_VCO_DIV_5_MASK, + RK3328_PCLK_VCO_DIV_5(cfg->vco_div_5_en)); inno_write(inno, 0xa1, RK3328_PRE_PLL_PRE_DIV(cfg->prediv)); val = RK3328_SPREAD_SPECTRUM_MOD_DISABLE; @@ -1021,9 +1023,10 @@ inno_hdmi_phy_rk3328_power_on(struct inno_hdmi_phy *inno, inno_write(inno, 0xac, RK3328_POST_PLL_FB_DIV_7_0(cfg->fbdiv)); if (cfg->postdiv == 1) { - inno_write(inno, 0xaa, RK3328_POST_PLL_REFCLK_SEL_TMDS); inno_write(inno, 0xab, RK3328_POST_PLL_FB_DIV_8(cfg->fbdiv) | RK3328_POST_PLL_PRE_DIV(cfg->prediv)); + inno_write(inno, 0xaa, RK3328_POST_PLL_REFCLK_SEL_TMDS | + RK3328_POST_PLL_POWER_DOWN); } else { v = (cfg->postdiv / 2) - 1; v &= RK3328_POST_PLL_POST_DIV_MASK; @@ -1031,7 +1034,8 @@ inno_hdmi_phy_rk3328_power_on(struct inno_hdmi_phy *inno, inno_write(inno, 0xab, RK3328_POST_PLL_FB_DIV_8(cfg->fbdiv) | RK3328_POST_PLL_PRE_DIV(cfg->prediv)); inno_write(inno, 0xaa, RK3328_POST_PLL_POST_DIV_ENABLE | - RK3328_POST_PLL_REFCLK_SEL_TMDS); + RK3328_POST_PLL_REFCLK_SEL_TMDS | + RK3328_POST_PLL_POWER_DOWN); } for (v = 0; v < 14; v++) diff --git a/drivers/phy/tegra/xusb.c b/drivers/phy/tegra/xusb.c index 119e2c039225f..6869d82e9ac96 100644 --- a/drivers/phy/tegra/xusb.c +++ b/drivers/phy/tegra/xusb.c @@ -455,7 +455,7 @@ tegra_xusb_find_port_node(struct tegra_xusb_padctl *padctl, const char *type, name = kasprintf(GFP_KERNEL, "%s-%u", type, index); if (!name) { of_node_put(ports); - return ERR_PTR(-ENOMEM); + return NULL; } np = of_get_child_by_name(ports, name); kfree(name); diff --git a/drivers/pinctrl/core.c b/drivers/pinctrl/core.c index ffe39336fcaca..456b72041c34f 100644 --- a/drivers/pinctrl/core.c +++ b/drivers/pinctrl/core.c @@ -1239,17 +1239,17 @@ static void pinctrl_link_add(struct pinctrl_dev *pctldev, static int pinctrl_commit_state(struct pinctrl *p, struct pinctrl_state *state) { struct pinctrl_setting *setting, *setting2; - struct pinctrl_state *old_state = p->state; + struct pinctrl_state *old_state = READ_ONCE(p->state); int ret; - if (p->state) { + if (old_state) { /* * For each pinmux setting in the old state, forget SW's record * of mux owner for that pingroup. Any pingroups which are * still owned by the new state will be re-acquired by the call * to pinmux_enable_setting() in the loop below. */ - list_for_each_entry(setting, &p->state->settings, node) { + list_for_each_entry(setting, &old_state->settings, node) { if (setting->type != PIN_MAP_TYPE_MUX_GROUP) continue; pinmux_disable_setting(setting); diff --git a/drivers/pinctrl/intel/pinctrl-cherryview.c b/drivers/pinctrl/intel/pinctrl-cherryview.c index 34f0ec784dbe2..1b993b33d60f0 100644 --- a/drivers/pinctrl/intel/pinctrl-cherryview.c +++ b/drivers/pinctrl/intel/pinctrl-cherryview.c @@ -1624,7 +1624,6 @@ static int chv_pinctrl_probe(struct platform_device *pdev) const struct intel_pinctrl_soc_data *soc_data; struct intel_community *community; struct device *dev = &pdev->dev; - struct acpi_device *adev = ACPI_COMPANION(dev); struct intel_pinctrl *pctrl; acpi_status status; int ret, irq; @@ -1687,7 +1686,7 @@ static int chv_pinctrl_probe(struct platform_device *pdev) if (ret) return ret; - status = acpi_install_address_space_handler(adev->handle, + status = acpi_install_address_space_handler(ACPI_HANDLE(dev), community->acpi_space_id, chv_pinctrl_mmio_access_handler, NULL, pctrl); @@ -1704,7 +1703,7 @@ static int chv_pinctrl_remove(struct platform_device *pdev) struct intel_pinctrl *pctrl = platform_get_drvdata(pdev); const struct intel_community *community = &pctrl->communities[0]; - acpi_remove_address_space_handler(ACPI_COMPANION(&pdev->dev), + acpi_remove_address_space_handler(ACPI_HANDLE(&pdev->dev), community->acpi_space_id, chv_pinctrl_mmio_access_handler); diff --git a/drivers/pinctrl/pinctrl-mcp23s08_spi.c b/drivers/pinctrl/pinctrl-mcp23s08_spi.c index 9ae10318f6f35..ea059b9c5542e 100644 --- a/drivers/pinctrl/pinctrl-mcp23s08_spi.c +++ b/drivers/pinctrl/pinctrl-mcp23s08_spi.c @@ -91,18 +91,28 @@ static int mcp23s08_spi_regmap_init(struct mcp23s08 *mcp, struct device *dev, mcp->reg_shift = 0; mcp->chip.ngpio = 8; mcp->chip.label = devm_kasprintf(dev, GFP_KERNEL, "mcp23s08.%d", addr); + if (!mcp->chip.label) + return -ENOMEM; config = &mcp23x08_regmap; name = devm_kasprintf(dev, GFP_KERNEL, "%d", addr); + if (!name) + return -ENOMEM; + break; case MCP_TYPE_S17: mcp->reg_shift = 1; mcp->chip.ngpio = 16; mcp->chip.label = devm_kasprintf(dev, GFP_KERNEL, "mcp23s17.%d", addr); + if (!mcp->chip.label) + return -ENOMEM; config = &mcp23x17_regmap; name = devm_kasprintf(dev, GFP_KERNEL, "%d", addr); + if (!name) + return -ENOMEM; + break; case MCP_TYPE_S18: diff --git a/drivers/pinctrl/qcom/pinctrl-lpass-lpi.c b/drivers/pinctrl/qcom/pinctrl-lpass-lpi.c index dd1c9fd733c8f..ec37ad43a6364 100644 --- a/drivers/pinctrl/qcom/pinctrl-lpass-lpi.c +++ b/drivers/pinctrl/qcom/pinctrl-lpass-lpi.c @@ -102,7 +102,8 @@ struct lpi_pinctrl { char __iomem *tlmm_base; char __iomem *slew_base; struct clk_bulk_data clks[MAX_LPI_NUM_CLKS]; - struct mutex slew_access_lock; + /* Protects from concurrent register updates */ + struct mutex lock; const struct lpi_pinctrl_variant_data *data; }; @@ -330,9 +331,11 @@ static int lpi_gpio_set_mux(struct pinctrl_dev *pctldev, unsigned int function, if (WARN_ON(i == g->nfuncs)) return -EINVAL; + mutex_lock(&pctrl->lock); val = lpi_gpio_read(pctrl, pin, LPI_GPIO_CFG_REG); u32p_replace_bits(&val, i, LPI_GPIO_FUNCTION_MASK); lpi_gpio_write(pctrl, pin, LPI_GPIO_CFG_REG, val); + mutex_unlock(&pctrl->lock); return 0; } @@ -438,14 +441,14 @@ static int lpi_config_set(struct pinctrl_dev *pctldev, unsigned int group, if (slew_offset == NO_SLEW) break; - mutex_lock(&pctrl->slew_access_lock); + mutex_lock(&pctrl->lock); sval = ioread32(pctrl->slew_base + LPI_SLEW_RATE_CTL_REG); sval &= ~(LPI_SLEW_RATE_MASK << slew_offset); sval |= arg << slew_offset; iowrite32(sval, pctrl->slew_base + LPI_SLEW_RATE_CTL_REG); - mutex_unlock(&pctrl->slew_access_lock); + mutex_unlock(&pctrl->lock); break; default: return -EINVAL; @@ -461,6 +464,7 @@ static int lpi_config_set(struct pinctrl_dev *pctldev, unsigned int group, lpi_gpio_write(pctrl, group, LPI_GPIO_VALUE_REG, val); } + mutex_lock(&pctrl->lock); val = lpi_gpio_read(pctrl, group, LPI_GPIO_CFG_REG); u32p_replace_bits(&val, pullup, LPI_GPIO_PULL_MASK); @@ -469,6 +473,7 @@ static int lpi_config_set(struct pinctrl_dev *pctldev, unsigned int group, u32p_replace_bits(&val, output_enabled, LPI_GPIO_OE_MASK); lpi_gpio_write(pctrl, group, LPI_GPIO_CFG_REG, val); + mutex_unlock(&pctrl->lock); return 0; } @@ -642,7 +647,7 @@ static int lpi_pinctrl_probe(struct platform_device *pdev) pctrl->chip.of_gpio_n_cells = 2; pctrl->chip.can_sleep = false; - mutex_init(&pctrl->slew_access_lock); + mutex_init(&pctrl->lock); pctrl->ctrl = devm_pinctrl_register(dev, &pctrl->desc, pctrl); if (IS_ERR(pctrl->ctrl)) { @@ -660,7 +665,7 @@ static int lpi_pinctrl_probe(struct platform_device *pdev) return 0; err_pinctrl: - mutex_destroy(&pctrl->slew_access_lock); + mutex_destroy(&pctrl->lock); clk_bulk_disable_unprepare(MAX_LPI_NUM_CLKS, pctrl->clks); return ret; @@ -670,7 +675,7 @@ static int lpi_pinctrl_remove(struct platform_device *pdev) { struct lpi_pinctrl *pctrl = platform_get_drvdata(pdev); - mutex_destroy(&pctrl->slew_access_lock); + mutex_destroy(&pctrl->lock); clk_bulk_disable_unprepare(MAX_LPI_NUM_CLKS, pctrl->clks); return 0; diff --git a/drivers/pinctrl/renesas/Kconfig b/drivers/pinctrl/renesas/Kconfig index 9a72999084b36..ba7224a4c352d 100644 --- a/drivers/pinctrl/renesas/Kconfig +++ b/drivers/pinctrl/renesas/Kconfig @@ -228,6 +228,7 @@ config PINCTRL_RZN1 depends on OF depends on ARCH_RZN1 || COMPILE_TEST select GENERIC_PINCONF + select PINMUX help This selects pinctrl driver for Renesas RZ/N1 devices. diff --git a/drivers/platform/mellanox/Kconfig b/drivers/platform/mellanox/Kconfig index edd17e1a1f88f..a57ae5cbc00a8 100644 --- a/drivers/platform/mellanox/Kconfig +++ b/drivers/platform/mellanox/Kconfig @@ -48,6 +48,7 @@ config MLXBF_BOOTCTL tristate "Mellanox BlueField Firmware Boot Control driver" depends on ARM64 depends on ACPI + depends on NET help The Mellanox BlueField firmware implements functionality to request swapping the primary and alternate eMMC boot partition, diff --git a/drivers/platform/mellanox/mlxbf-bootctl.c b/drivers/platform/mellanox/mlxbf-bootctl.c index 1c7a288b59a5c..6a171a4f9dc68 100644 --- a/drivers/platform/mellanox/mlxbf-bootctl.c +++ b/drivers/platform/mellanox/mlxbf-bootctl.c @@ -17,6 +17,7 @@ #define MLXBF_BOOTCTL_SB_SECURE_MASK 0x03 #define MLXBF_BOOTCTL_SB_TEST_MASK 0x0c +#define MLXBF_BOOTCTL_SB_DEV_MASK BIT(4) #define MLXBF_SB_KEY_NUM 4 @@ -37,11 +38,18 @@ static struct mlxbf_bootctl_name boot_names[] = { { MLXBF_BOOTCTL_NONE, "none" }, }; +enum { + MLXBF_BOOTCTL_SB_LIFECYCLE_PRODUCTION = 0, + MLXBF_BOOTCTL_SB_LIFECYCLE_GA_SECURE = 1, + MLXBF_BOOTCTL_SB_LIFECYCLE_GA_NON_SECURE = 2, + MLXBF_BOOTCTL_SB_LIFECYCLE_RMA = 3 +}; + static const char * const mlxbf_bootctl_lifecycle_states[] = { - [0] = "Production", - [1] = "GA Secured", - [2] = "GA Non-Secured", - [3] = "RMA", + [MLXBF_BOOTCTL_SB_LIFECYCLE_PRODUCTION] = "Production", + [MLXBF_BOOTCTL_SB_LIFECYCLE_GA_SECURE] = "GA Secured", + [MLXBF_BOOTCTL_SB_LIFECYCLE_GA_NON_SECURE] = "GA Non-Secured", + [MLXBF_BOOTCTL_SB_LIFECYCLE_RMA] = "RMA", }; /* ARM SMC call which is atomic and no need for lock. */ @@ -165,25 +173,30 @@ static ssize_t second_reset_action_store(struct device *dev, static ssize_t lifecycle_state_show(struct device *dev, struct device_attribute *attr, char *buf) { + int status_bits; + int use_dev_key; + int test_state; int lc_state; - lc_state = mlxbf_bootctl_smc(MLXBF_BOOTCTL_GET_TBB_FUSE_STATUS, - MLXBF_BOOTCTL_FUSE_STATUS_LIFECYCLE); - if (lc_state < 0) - return lc_state; + status_bits = mlxbf_bootctl_smc(MLXBF_BOOTCTL_GET_TBB_FUSE_STATUS, + MLXBF_BOOTCTL_FUSE_STATUS_LIFECYCLE); + if (status_bits < 0) + return status_bits; - lc_state &= - MLXBF_BOOTCTL_SB_TEST_MASK | MLXBF_BOOTCTL_SB_SECURE_MASK; + use_dev_key = status_bits & MLXBF_BOOTCTL_SB_DEV_MASK; + test_state = status_bits & MLXBF_BOOTCTL_SB_TEST_MASK; + lc_state = status_bits & MLXBF_BOOTCTL_SB_SECURE_MASK; /* * If the test bits are set, we specify that the current state may be * due to using the test bits. */ - if (lc_state & MLXBF_BOOTCTL_SB_TEST_MASK) { - lc_state &= MLXBF_BOOTCTL_SB_SECURE_MASK; - + if (test_state) { return sprintf(buf, "%s(test)\n", mlxbf_bootctl_lifecycle_states[lc_state]); + } else if (use_dev_key && + (lc_state == MLXBF_BOOTCTL_SB_LIFECYCLE_GA_SECURE)) { + return sprintf(buf, "Secured (development)\n"); } return sprintf(buf, "%s\n", mlxbf_bootctl_lifecycle_states[lc_state]); diff --git a/drivers/platform/mellanox/mlxbf-pmc.c b/drivers/platform/mellanox/mlxbf-pmc.c index be967d797c28e..db7a1d360cd2c 100644 --- a/drivers/platform/mellanox/mlxbf-pmc.c +++ b/drivers/platform/mellanox/mlxbf-pmc.c @@ -191,6 +191,7 @@ static const struct mlxbf_pmc_events mlxbf_pmc_smgen_events[] = { }; static const struct mlxbf_pmc_events mlxbf_pmc_trio_events_1[] = { + { 0x0, "DISABLE" }, { 0xa0, "TPIO_DATA_BEAT" }, { 0xa1, "TDMA_DATA_BEAT" }, { 0xa2, "MAP_DATA_BEAT" }, @@ -214,6 +215,7 @@ static const struct mlxbf_pmc_events mlxbf_pmc_trio_events_1[] = { }; static const struct mlxbf_pmc_events mlxbf_pmc_trio_events_2[] = { + { 0x0, "DISABLE" }, { 0xa0, "TPIO_DATA_BEAT" }, { 0xa1, "TDMA_DATA_BEAT" }, { 0xa2, "MAP_DATA_BEAT" }, @@ -246,6 +248,7 @@ static const struct mlxbf_pmc_events mlxbf_pmc_trio_events_2[] = { }; static const struct mlxbf_pmc_events mlxbf_pmc_ecc_events[] = { + { 0x0, "DISABLE" }, { 0x100, "ECC_SINGLE_ERROR_CNT" }, { 0x104, "ECC_DOUBLE_ERROR_CNT" }, { 0x114, "SERR_INJ" }, @@ -258,6 +261,7 @@ static const struct mlxbf_pmc_events mlxbf_pmc_ecc_events[] = { }; static const struct mlxbf_pmc_events mlxbf_pmc_mss_events[] = { + { 0x0, "DISABLE" }, { 0xc0, "RXREQ_MSS" }, { 0xc1, "RXDAT_MSS" }, { 0xc2, "TXRSP_MSS" }, @@ -265,6 +269,7 @@ static const struct mlxbf_pmc_events mlxbf_pmc_mss_events[] = { }; static const struct mlxbf_pmc_events mlxbf_pmc_hnf_events[] = { + { 0x0, "DISABLE" }, { 0x45, "HNF_REQUESTS" }, { 0x46, "HNF_REJECTS" }, { 0x47, "ALL_BUSY" }, @@ -323,6 +328,7 @@ static const struct mlxbf_pmc_events mlxbf_pmc_hnf_events[] = { }; static const struct mlxbf_pmc_events mlxbf_pmc_hnfnet_events[] = { + { 0x0, "DISABLE" }, { 0x12, "CDN_REQ" }, { 0x13, "DDN_REQ" }, { 0x14, "NDN_REQ" }, @@ -892,7 +898,7 @@ static int mlxbf_pmc_read_event(int blk_num, uint32_t cnt_num, bool is_l3, uint64_t *result) { uint32_t perfcfg_offset, perfval_offset; - uint64_t perfmon_cfg, perfevt, perfctl; + uint64_t perfmon_cfg, perfevt; if (cnt_num >= pmc->block[blk_num].counters) return -EINVAL; @@ -904,25 +910,6 @@ static int mlxbf_pmc_read_event(int blk_num, uint32_t cnt_num, bool is_l3, perfval_offset = perfcfg_offset + pmc->block[blk_num].counters * MLXBF_PMC_REG_SIZE; - /* Set counter in "read" mode */ - perfmon_cfg = FIELD_PREP(MLXBF_PMC_PERFMON_CONFIG_ADDR, - MLXBF_PMC_PERFCTL); - perfmon_cfg |= FIELD_PREP(MLXBF_PMC_PERFMON_CONFIG_STROBE, 1); - perfmon_cfg |= FIELD_PREP(MLXBF_PMC_PERFMON_CONFIG_WR_R_B, 0); - - if (mlxbf_pmc_write(pmc->block[blk_num].mmio_base + perfcfg_offset, - MLXBF_PMC_WRITE_REG_64, perfmon_cfg)) - return -EFAULT; - - /* Check if the counter is enabled */ - - if (mlxbf_pmc_read(pmc->block[blk_num].mmio_base + perfval_offset, - MLXBF_PMC_READ_REG_64, &perfctl)) - return -EFAULT; - - if (!FIELD_GET(MLXBF_PMC_PERFCTL_EN0, perfctl)) - return -EINVAL; - /* Set counter in "read" mode */ perfmon_cfg = FIELD_PREP(MLXBF_PMC_PERFMON_CONFIG_ADDR, MLXBF_PMC_PERFEVT); @@ -1008,7 +995,7 @@ static ssize_t mlxbf_pmc_counter_show(struct device *dev, } else return -EINVAL; - return sprintf(buf, "0x%llx\n", value); + return sysfs_emit(buf, "0x%llx\n", value); } /* Store function for "counter" sysfs files */ @@ -1078,13 +1065,13 @@ static ssize_t mlxbf_pmc_event_show(struct device *dev, err = mlxbf_pmc_read_event(blk_num, cnt_num, is_l3, &evt_num); if (err) - return sprintf(buf, "No event being monitored\n"); + return sysfs_emit(buf, "No event being monitored\n"); evt_name = mlxbf_pmc_get_event_name(pmc->block_name[blk_num], evt_num); if (!evt_name) return -EINVAL; - return sprintf(buf, "0x%llx: %s\n", evt_num, evt_name); + return sysfs_emit(buf, "0x%llx: %s\n", evt_num, evt_name); } /* Store function for "event" sysfs files */ @@ -1139,9 +1126,9 @@ static ssize_t mlxbf_pmc_event_list_show(struct device *dev, return -EINVAL; for (i = 0, buf[0] = '\0'; i < size; ++i) { - len += sprintf(e_info, "0x%x: %s\n", events[i].evt_num, - events[i].evt_name); - if (len > PAGE_SIZE) + len += snprintf(e_info, sizeof(e_info), "0x%x: %s\n", + events[i].evt_num, events[i].evt_name); + if (len >= PAGE_SIZE) break; strcat(buf, e_info); ret = len; @@ -1168,7 +1155,7 @@ static ssize_t mlxbf_pmc_enable_show(struct device *dev, value = FIELD_GET(MLXBF_PMC_L3C_PERF_CNT_CFG_EN, perfcnt_cfg); - return sprintf(buf, "%d\n", value); + return sysfs_emit(buf, "%d\n", value); } /* Store function for "enable" sysfs files - only for l3cache */ @@ -1215,6 +1202,8 @@ static int mlxbf_pmc_init_perftype_counter(struct device *dev, int blk_num) attr->dev_attr.show = mlxbf_pmc_event_list_show; attr->nr = blk_num; attr->dev_attr.attr.name = devm_kasprintf(dev, GFP_KERNEL, "event_list"); + if (!attr->dev_attr.attr.name) + return -ENOMEM; pmc->block[blk_num].block_attr[i] = &attr->dev_attr.attr; attr = NULL; @@ -1227,6 +1216,8 @@ static int mlxbf_pmc_init_perftype_counter(struct device *dev, int blk_num) attr->nr = blk_num; attr->dev_attr.attr.name = devm_kasprintf(dev, GFP_KERNEL, "enable"); + if (!attr->dev_attr.attr.name) + return -ENOMEM; pmc->block[blk_num].block_attr[++i] = &attr->dev_attr.attr; attr = NULL; } @@ -1253,6 +1244,8 @@ static int mlxbf_pmc_init_perftype_counter(struct device *dev, int blk_num) attr->nr = blk_num; attr->dev_attr.attr.name = devm_kasprintf(dev, GFP_KERNEL, "counter%d", j); + if (!attr->dev_attr.attr.name) + return -ENOMEM; pmc->block[blk_num].block_attr[++i] = &attr->dev_attr.attr; attr = NULL; @@ -1264,6 +1257,8 @@ static int mlxbf_pmc_init_perftype_counter(struct device *dev, int blk_num) attr->nr = blk_num; attr->dev_attr.attr.name = devm_kasprintf(dev, GFP_KERNEL, "event%d", j); + if (!attr->dev_attr.attr.name) + return -ENOMEM; pmc->block[blk_num].block_attr[++i] = &attr->dev_attr.attr; attr = NULL; } @@ -1296,6 +1291,8 @@ static int mlxbf_pmc_init_perftype_reg(struct device *dev, int blk_num) attr->nr = blk_num; attr->dev_attr.attr.name = devm_kasprintf(dev, GFP_KERNEL, events[j].evt_name); + if (!attr->dev_attr.attr.name) + return -ENOMEM; pmc->block[blk_num].block_attr[i] = &attr->dev_attr.attr; attr = NULL; i++; @@ -1324,6 +1321,8 @@ static int mlxbf_pmc_create_groups(struct device *dev, int blk_num) pmc->block[blk_num].block_attr_grp.attrs = pmc->block[blk_num].block_attr; pmc->block[blk_num].block_attr_grp.name = devm_kasprintf( dev, GFP_KERNEL, pmc->block_name[blk_num]); + if (!pmc->block[blk_num].block_attr_grp.name) + return -ENOMEM; pmc->groups[blk_num] = &pmc->block[blk_num].block_attr_grp; return 0; @@ -1455,6 +1454,8 @@ static int mlxbf_pmc_probe(struct platform_device *pdev) pmc->hwmon_dev = devm_hwmon_device_register_with_groups( dev, "bfperf", pmc, pmc->groups); + if (IS_ERR(pmc->hwmon_dev)) + return PTR_ERR(pmc->hwmon_dev); platform_set_drvdata(pdev, pmc); return 0; diff --git a/drivers/platform/mellanox/mlxbf-tmfifo.c b/drivers/platform/mellanox/mlxbf-tmfifo.c index 38800e86ed8ad..767f4406e55f1 100644 --- a/drivers/platform/mellanox/mlxbf-tmfifo.c +++ b/drivers/platform/mellanox/mlxbf-tmfifo.c @@ -56,6 +56,7 @@ struct mlxbf_tmfifo; * @vq: pointer to the virtio virtqueue * @desc: current descriptor of the pending packet * @desc_head: head descriptor of the pending packet + * @drop_desc: dummy desc for packet dropping * @cur_len: processed length of the current descriptor * @rem_len: remaining length of the pending packet * @pkt_len: total length of the pending packet @@ -72,6 +73,7 @@ struct mlxbf_tmfifo_vring { struct virtqueue *vq; struct vring_desc *desc; struct vring_desc *desc_head; + struct vring_desc drop_desc; int cur_len; int rem_len; u32 pkt_len; @@ -83,6 +85,14 @@ struct mlxbf_tmfifo_vring { struct mlxbf_tmfifo *fifo; }; +/* Check whether vring is in drop mode. */ +#define IS_VRING_DROP(_r) ({ \ + typeof(_r) (r) = (_r); \ + (r->desc_head == &r->drop_desc ? true : false); }) + +/* A stub length to drop maximum length packet. */ +#define VRING_DROP_DESC_MAX_LEN GENMASK(15, 0) + /* Interrupt types. */ enum { MLXBF_TM_RX_LWM_IRQ, @@ -195,7 +205,7 @@ static u8 mlxbf_tmfifo_net_default_mac[ETH_ALEN] = { static efi_char16_t mlxbf_tmfifo_efi_name[] = L"RshimMacAddr"; /* Maximum L2 header length. */ -#define MLXBF_TMFIFO_NET_L2_OVERHEAD 36 +#define MLXBF_TMFIFO_NET_L2_OVERHEAD (ETH_HLEN + VLAN_HLEN) /* Supported virtio-net features. */ #define MLXBF_TMFIFO_NET_FEATURES \ @@ -243,6 +253,7 @@ static int mlxbf_tmfifo_alloc_vrings(struct mlxbf_tmfifo *fifo, vring->align = SMP_CACHE_BYTES; vring->index = i; vring->vdev_id = tm_vdev->vdev.id.device; + vring->drop_desc.len = VRING_DROP_DESC_MAX_LEN; dev = &tm_vdev->vdev.dev; size = vring_size(vring->num, vring->align); @@ -348,7 +359,7 @@ static u32 mlxbf_tmfifo_get_pkt_len(struct mlxbf_tmfifo_vring *vring, return len; } -static void mlxbf_tmfifo_release_pending_pkt(struct mlxbf_tmfifo_vring *vring) +static void mlxbf_tmfifo_release_pkt(struct mlxbf_tmfifo_vring *vring) { struct vring_desc *desc_head; u32 len = 0; @@ -577,19 +588,26 @@ static void mlxbf_tmfifo_rxtx_word(struct mlxbf_tmfifo_vring *vring, if (vring->cur_len + sizeof(u64) <= len) { /* The whole word. */ - if (is_rx) - memcpy(addr + vring->cur_len, &data, sizeof(u64)); - else - memcpy(&data, addr + vring->cur_len, sizeof(u64)); + if (is_rx) { + if (!IS_VRING_DROP(vring)) + memcpy(addr + vring->cur_len, &data, + sizeof(u64)); + } else { + memcpy(&data, addr + vring->cur_len, + sizeof(u64)); + } vring->cur_len += sizeof(u64); } else { /* Leftover bytes. */ - if (is_rx) - memcpy(addr + vring->cur_len, &data, - len - vring->cur_len); - else + if (is_rx) { + if (!IS_VRING_DROP(vring)) + memcpy(addr + vring->cur_len, &data, + len - vring->cur_len); + } else { + data = 0; memcpy(&data, addr + vring->cur_len, len - vring->cur_len); + } vring->cur_len = len; } @@ -606,13 +624,14 @@ static void mlxbf_tmfifo_rxtx_word(struct mlxbf_tmfifo_vring *vring, * flag is set. */ static void mlxbf_tmfifo_rxtx_header(struct mlxbf_tmfifo_vring *vring, - struct vring_desc *desc, + struct vring_desc **desc, bool is_rx, bool *vring_change) { struct mlxbf_tmfifo *fifo = vring->fifo; struct virtio_net_config *config; struct mlxbf_tmfifo_msg_hdr hdr; int vdev_id, hdr_len; + bool drop_rx = false; /* Read/Write packet header. */ if (is_rx) { @@ -632,8 +651,8 @@ static void mlxbf_tmfifo_rxtx_header(struct mlxbf_tmfifo_vring *vring, if (ntohs(hdr.len) > __virtio16_to_cpu(virtio_legacy_is_little_endian(), config->mtu) + - MLXBF_TMFIFO_NET_L2_OVERHEAD) - return; + MLXBF_TMFIFO_NET_L2_OVERHEAD) + drop_rx = true; } else { vdev_id = VIRTIO_ID_CONSOLE; hdr_len = 0; @@ -648,16 +667,25 @@ static void mlxbf_tmfifo_rxtx_header(struct mlxbf_tmfifo_vring *vring, if (!tm_dev2) return; - vring->desc = desc; + vring->desc = *desc; vring = &tm_dev2->vrings[MLXBF_TMFIFO_VRING_RX]; *vring_change = true; } + + if (drop_rx && !IS_VRING_DROP(vring)) { + if (vring->desc_head) + mlxbf_tmfifo_release_pkt(vring); + *desc = &vring->drop_desc; + vring->desc_head = *desc; + vring->desc = *desc; + } + vring->pkt_len = ntohs(hdr.len) + hdr_len; } else { /* Network virtio has an extra header. */ hdr_len = (vring->vdev_id == VIRTIO_ID_NET) ? sizeof(struct virtio_net_hdr) : 0; - vring->pkt_len = mlxbf_tmfifo_get_pkt_len(vring, desc); + vring->pkt_len = mlxbf_tmfifo_get_pkt_len(vring, *desc); hdr.type = (vring->vdev_id == VIRTIO_ID_NET) ? VIRTIO_ID_NET : VIRTIO_ID_CONSOLE; hdr.len = htons(vring->pkt_len - hdr_len); @@ -690,15 +718,23 @@ static bool mlxbf_tmfifo_rxtx_one_desc(struct mlxbf_tmfifo_vring *vring, /* Get the descriptor of the next packet. */ if (!vring->desc) { desc = mlxbf_tmfifo_get_next_pkt(vring, is_rx); - if (!desc) - return false; + if (!desc) { + /* Drop next Rx packet to avoid stuck. */ + if (is_rx) { + desc = &vring->drop_desc; + vring->desc_head = desc; + vring->desc = desc; + } else { + return false; + } + } } else { desc = vring->desc; } /* Beginning of a packet. Start to Rx/Tx packet header. */ if (vring->pkt_len == 0) { - mlxbf_tmfifo_rxtx_header(vring, desc, is_rx, &vring_change); + mlxbf_tmfifo_rxtx_header(vring, &desc, is_rx, &vring_change); (*avail)--; /* Return if new packet is for another ring. */ @@ -724,17 +760,24 @@ static bool mlxbf_tmfifo_rxtx_one_desc(struct mlxbf_tmfifo_vring *vring, vring->rem_len -= len; /* Get the next desc on the chain. */ - if (vring->rem_len > 0 && + if (!IS_VRING_DROP(vring) && vring->rem_len > 0 && (virtio16_to_cpu(vdev, desc->flags) & VRING_DESC_F_NEXT)) { idx = virtio16_to_cpu(vdev, desc->next); desc = &vr->desc[idx]; goto mlxbf_tmfifo_desc_done; } - /* Done and release the pending packet. */ - mlxbf_tmfifo_release_pending_pkt(vring); + /* Done and release the packet. */ desc = NULL; fifo->vring[is_rx] = NULL; + if (!IS_VRING_DROP(vring)) { + mlxbf_tmfifo_release_pkt(vring); + } else { + vring->pkt_len = 0; + vring->desc_head = NULL; + vring->desc = NULL; + return false; + } /* * Make sure the load/store are in order before @@ -868,6 +911,7 @@ static bool mlxbf_tmfifo_virtio_notify(struct virtqueue *vq) tm_vdev = fifo->vdev[VIRTIO_ID_CONSOLE]; mlxbf_tmfifo_console_output(tm_vdev, vring); spin_unlock_irqrestore(&fifo->spin_lock[0], flags); + set_bit(MLXBF_TM_TX_LWM_IRQ, &fifo->pend_events); } else if (test_and_set_bit(MLXBF_TM_TX_LWM_IRQ, &fifo->pend_events)) { return true; @@ -913,7 +957,7 @@ static void mlxbf_tmfifo_virtio_del_vqs(struct virtio_device *vdev) /* Release the pending packet. */ if (vring->desc) - mlxbf_tmfifo_release_pending_pkt(vring); + mlxbf_tmfifo_release_pkt(vring); vq = vring->vq; if (vq) { vring->vq = NULL; diff --git a/drivers/platform/surface/aggregator/core.c b/drivers/platform/surface/aggregator/core.c index 54f86df77a37b..b14e368717939 100644 --- a/drivers/platform/surface/aggregator/core.c +++ b/drivers/platform/surface/aggregator/core.c @@ -230,9 +230,12 @@ static int ssam_receive_buf(struct serdev_device *dev, const unsigned char *buf, size_t n) { struct ssam_controller *ctrl; + int ret; ctrl = serdev_device_get_drvdata(dev); - return ssam_controller_receive_buf(ctrl, buf, n); + ret = ssam_controller_receive_buf(ctrl, buf, n); + + return ret < 0 ? 0 : ret; } static void ssam_write_wakeup(struct serdev_device *dev) diff --git a/drivers/platform/surface/surface_platform_profile.c b/drivers/platform/surface/surface_platform_profile.c index 6373d3b5eb7f8..dadcf8c7d7905 100644 --- a/drivers/platform/surface/surface_platform_profile.c +++ b/drivers/platform/surface/surface_platform_profile.c @@ -159,8 +159,7 @@ static int surface_platform_profile_probe(struct ssam_device *sdev) set_bit(PLATFORM_PROFILE_BALANCED_PERFORMANCE, tpd->handler.choices); set_bit(PLATFORM_PROFILE_PERFORMANCE, tpd->handler.choices); - platform_profile_register(&tpd->handler); - return 0; + return platform_profile_register(&tpd->handler); } static void surface_platform_profile_remove(struct ssam_device *sdev) diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig index 9a4fb935ffeea..e3f6e9d86e6a5 100644 --- a/drivers/platform/x86/Kconfig +++ b/drivers/platform/x86/Kconfig @@ -272,6 +272,7 @@ config ASUS_WMI depends on RFKILL || RFKILL = n depends on HOTPLUG_PCI depends on ACPI_VIDEO || ACPI_VIDEO = n + depends on SERIO_I8042 || SERIO_I8042 = n select INPUT_SPARSEKMAP select LEDS_CLASS select NEW_LEDS @@ -286,7 +287,6 @@ config ASUS_WMI config ASUS_NB_WMI tristate "Asus Notebook WMI Driver" depends on ASUS_WMI - depends on SERIO_I8042 || SERIO_I8042 = n help This is a driver for newer Asus notebooks. It adds extra features like wireless radio and bluetooth control, leds, hotkeys, backlight... diff --git a/drivers/platform/x86/asus-nb-wmi.c b/drivers/platform/x86/asus-nb-wmi.c index 2c43801a18a28..49505939352ae 100644 --- a/drivers/platform/x86/asus-nb-wmi.c +++ b/drivers/platform/x86/asus-nb-wmi.c @@ -115,12 +115,17 @@ static struct quirk_entry quirk_asus_forceals = { }; static struct quirk_entry quirk_asus_use_kbd_dock_devid = { - .use_kbd_dock_devid = true, + .tablet_switch_mode = asus_wmi_kbd_dock_devid, }; static struct quirk_entry quirk_asus_use_lid_flip_devid = { .wmi_backlight_set_devstate = true, - .use_lid_flip_devid = true, + .tablet_switch_mode = asus_wmi_lid_flip_devid, +}; + +static struct quirk_entry quirk_asus_tablet_mode = { + .wmi_backlight_set_devstate = true, + .tablet_switch_mode = asus_wmi_lid_flip_rog_devid, }; static int dmi_matched(const struct dmi_system_id *dmi) @@ -471,13 +476,20 @@ static const struct dmi_system_id asus_quirks[] = { }, .driver_data = &quirk_asus_use_lid_flip_devid, }, + { + .callback = dmi_matched, + .ident = "ASUS ROG FLOW X13", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "GV301Q"), + }, + .driver_data = &quirk_asus_tablet_mode, + }, {}, }; static void asus_nb_wmi_quirks(struct asus_wmi_driver *driver) { - int ret; - quirks = &quirk_asus_unknown; dmi_check_system(asus_quirks); @@ -490,34 +502,16 @@ static void asus_nb_wmi_quirks(struct asus_wmi_driver *driver) else wapf = quirks->wapf; - switch (tablet_mode_sw) { - case 0: - quirks->use_kbd_dock_devid = false; - quirks->use_lid_flip_devid = false; - break; - case 1: - quirks->use_kbd_dock_devid = true; - quirks->use_lid_flip_devid = false; - break; - case 2: - quirks->use_kbd_dock_devid = false; - quirks->use_lid_flip_devid = true; - break; - } - - if (quirks->i8042_filter) { - ret = i8042_install_filter(quirks->i8042_filter); - if (ret) { - pr_warn("Unable to install key filter\n"); - return; - } - pr_info("Using i8042 filter function for receiving events\n"); - } + if (tablet_mode_sw != -1) + quirks->tablet_switch_mode = tablet_mode_sw; } static const struct key_entry asus_nb_wmi_keymap[] = { { KE_KEY, ASUS_WMI_BRN_DOWN, { KEY_BRIGHTNESSDOWN } }, { KE_KEY, ASUS_WMI_BRN_UP, { KEY_BRIGHTNESSUP } }, + { KE_KEY, 0x2a, { KEY_SELECTIVE_SCREENSHOT } }, + { KE_IGNORE, 0x2b, }, /* PrintScreen (also send via PS/2) on newer models */ + { KE_IGNORE, 0x2c, }, /* CapsLock (also send via PS/2) on newer models */ { KE_KEY, 0x30, { KEY_VOLUMEUP } }, { KE_KEY, 0x31, { KEY_VOLUMEDOWN } }, { KE_KEY, 0x32, { KEY_MUTE } }, @@ -581,6 +575,7 @@ static const struct key_entry asus_nb_wmi_keymap[] = { { KE_KEY, 0xC5, { KEY_KBDILLUMDOWN } }, { KE_IGNORE, 0xC6, }, /* Ambient Light Sensor notification */ { KE_KEY, 0xFA, { KEY_PROG2 } }, /* Lid flip action */ + { KE_KEY, 0xBD, { KEY_PROG2 } }, /* Lid flip action on ROG xflow laptops */ { KE_END, 0}, }; diff --git a/drivers/platform/x86/asus-wmi.c b/drivers/platform/x86/asus-wmi.c index f030ea97f1266..a34d0f53ad16f 100644 --- a/drivers/platform/x86/asus-wmi.c +++ b/drivers/platform/x86/asus-wmi.c @@ -68,6 +68,7 @@ module_param(fnlock_default, bool, 0444); #define NOTIFY_KBD_FBM 0x99 #define NOTIFY_KBD_TTP 0xae #define NOTIFY_LID_FLIP 0xfa +#define NOTIFY_LID_FLIP_ROG 0xbd #define ASUS_WMI_FNLOCK_BIOS_DISABLED BIT(0) @@ -203,6 +204,10 @@ struct asus_wmi { struct asus_rfkill gps; struct asus_rfkill uwb; + int tablet_switch_event_code; + u32 tablet_switch_dev_id; + bool tablet_switch_inverted; + enum fan_type fan_type; int fan_pwm_mode; int agfn_pwm; @@ -363,10 +368,35 @@ static bool asus_wmi_dev_is_present(struct asus_wmi *asus, u32 dev_id) } /* Input **********************************************************************/ +static void asus_wmi_tablet_sw_report(struct asus_wmi *asus, bool value) +{ + input_report_switch(asus->inputdev, SW_TABLET_MODE, + asus->tablet_switch_inverted ? !value : value); + input_sync(asus->inputdev); +} + +static void asus_wmi_tablet_sw_init(struct asus_wmi *asus, u32 dev_id, int event_code) +{ + struct device *dev = &asus->platform_device->dev; + int result; + + result = asus_wmi_get_devstate_simple(asus, dev_id); + if (result >= 0) { + input_set_capability(asus->inputdev, EV_SW, SW_TABLET_MODE); + asus_wmi_tablet_sw_report(asus, result); + asus->tablet_switch_dev_id = dev_id; + asus->tablet_switch_event_code = event_code; + } else if (result == -ENODEV) { + dev_err(dev, "This device has tablet-mode-switch quirk but got ENODEV checking it. This is a bug."); + } else { + dev_err(dev, "Error checking for tablet-mode-switch: %d\n", result); + } +} static int asus_wmi_input_init(struct asus_wmi *asus) { - int err, result; + struct device *dev = &asus->platform_device->dev; + int err; asus->inputdev = input_allocate_device(); if (!asus->inputdev) @@ -375,35 +405,26 @@ static int asus_wmi_input_init(struct asus_wmi *asus) asus->inputdev->name = asus->driver->input_name; asus->inputdev->phys = asus->driver->input_phys; asus->inputdev->id.bustype = BUS_HOST; - asus->inputdev->dev.parent = &asus->platform_device->dev; + asus->inputdev->dev.parent = dev; set_bit(EV_REP, asus->inputdev->evbit); err = sparse_keymap_setup(asus->inputdev, asus->driver->keymap, NULL); if (err) goto err_free_dev; - if (asus->driver->quirks->use_kbd_dock_devid) { - result = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_KBD_DOCK); - if (result >= 0) { - input_set_capability(asus->inputdev, EV_SW, SW_TABLET_MODE); - input_report_switch(asus->inputdev, SW_TABLET_MODE, !result); - } else if (result != -ENODEV) { - pr_err("Error checking for keyboard-dock: %d\n", result); - } - } - - if (asus->driver->quirks->use_lid_flip_devid) { - result = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_LID_FLIP); - if (result < 0) - asus->driver->quirks->use_lid_flip_devid = 0; - if (result >= 0) { - input_set_capability(asus->inputdev, EV_SW, SW_TABLET_MODE); - input_report_switch(asus->inputdev, SW_TABLET_MODE, result); - } else if (result == -ENODEV) { - pr_err("This device has lid_flip quirk but got ENODEV checking it. This is a bug."); - } else { - pr_err("Error checking for lid-flip: %d\n", result); - } + switch (asus->driver->quirks->tablet_switch_mode) { + case asus_wmi_no_tablet_switch: + break; + case asus_wmi_kbd_dock_devid: + asus->tablet_switch_inverted = true; + asus_wmi_tablet_sw_init(asus, ASUS_WMI_DEVID_KBD_DOCK, NOTIFY_KBD_DOCK_CHANGE); + break; + case asus_wmi_lid_flip_devid: + asus_wmi_tablet_sw_init(asus, ASUS_WMI_DEVID_LID_FLIP, NOTIFY_LID_FLIP); + break; + case asus_wmi_lid_flip_rog_devid: + asus_wmi_tablet_sw_init(asus, ASUS_WMI_DEVID_LID_FLIP_ROG, NOTIFY_LID_FLIP_ROG); + break; } err = input_register_device(asus->inputdev); @@ -427,14 +448,16 @@ static void asus_wmi_input_exit(struct asus_wmi *asus) /* Tablet mode ****************************************************************/ -static void lid_flip_tablet_mode_get_state(struct asus_wmi *asus) +static void asus_wmi_tablet_mode_get_state(struct asus_wmi *asus) { - int result = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_LID_FLIP); + int result; - if (result >= 0) { - input_report_switch(asus->inputdev, SW_TABLET_MODE, result); - input_sync(asus->inputdev); - } + if (!asus->tablet_switch_dev_id) + return; + + result = asus_wmi_get_devstate_simple(asus, asus->tablet_switch_dev_id); + if (result >= 0) + asus_wmi_tablet_sw_report(asus, result); } /* dGPU ********************************************************************/ @@ -2486,9 +2509,7 @@ static void asus_wmi_handle_event_code(int code, struct asus_wmi *asus) { unsigned int key_value = 1; bool autorelease = 1; - int result, orig_code; - - orig_code = code; + int orig_code = code; if (asus->driver->key_filter) { asus->driver->key_filter(asus->driver, &code, &key_value, @@ -2531,19 +2552,8 @@ static void asus_wmi_handle_event_code(int code, struct asus_wmi *asus) return; } - if (asus->driver->quirks->use_kbd_dock_devid && code == NOTIFY_KBD_DOCK_CHANGE) { - result = asus_wmi_get_devstate_simple(asus, - ASUS_WMI_DEVID_KBD_DOCK); - if (result >= 0) { - input_report_switch(asus->inputdev, SW_TABLET_MODE, - !result); - input_sync(asus->inputdev); - } - return; - } - - if (asus->driver->quirks->use_lid_flip_devid && code == NOTIFY_LID_FLIP) { - lid_flip_tablet_mode_get_state(asus); + if (code == asus->tablet_switch_event_code) { + asus_wmi_tablet_mode_get_state(asus); return; } @@ -3089,6 +3099,12 @@ static int asus_wmi_add(struct platform_device *pdev) goto fail_wmi_handler; } + if (asus->driver->quirks->i8042_filter) { + err = i8042_install_filter(asus->driver->quirks->i8042_filter); + if (err) + pr_warn("Unable to install key filter - %d\n", err); + } + asus_wmi_battery_init(asus); asus_wmi_debugfs_init(asus); @@ -3125,6 +3141,8 @@ static int asus_wmi_remove(struct platform_device *device) struct asus_wmi *asus; asus = platform_get_drvdata(device); + if (asus->driver->quirks->i8042_filter) + i8042_remove_filter(asus->driver->quirks->i8042_filter); wmi_remove_notify_handler(asus->driver->event_guid); asus_wmi_backlight_exit(asus); asus_wmi_input_exit(asus); @@ -3173,9 +3191,7 @@ static int asus_hotk_resume(struct device *device) if (asus_wmi_has_fnlock_key(asus)) asus_wmi_fnlock_update(asus); - if (asus->driver->quirks->use_lid_flip_devid) - lid_flip_tablet_mode_get_state(asus); - + asus_wmi_tablet_mode_get_state(asus); return 0; } @@ -3215,9 +3231,7 @@ static int asus_hotk_restore(struct device *device) if (asus_wmi_has_fnlock_key(asus)) asus_wmi_fnlock_update(asus); - if (asus->driver->quirks->use_lid_flip_devid) - lid_flip_tablet_mode_get_state(asus); - + asus_wmi_tablet_mode_get_state(asus); return 0; } diff --git a/drivers/platform/x86/asus-wmi.h b/drivers/platform/x86/asus-wmi.h index b302415bf1d95..b817a312f2e1a 100644 --- a/drivers/platform/x86/asus-wmi.h +++ b/drivers/platform/x86/asus-wmi.h @@ -18,13 +18,20 @@ #include #define ASUS_WMI_KEY_IGNORE (-1) -#define ASUS_WMI_BRN_DOWN 0x20 +#define ASUS_WMI_BRN_DOWN 0x2e #define ASUS_WMI_BRN_UP 0x2f struct module; struct key_entry; struct asus_wmi; +enum asus_wmi_tablet_switch_mode { + asus_wmi_no_tablet_switch, + asus_wmi_kbd_dock_devid, + asus_wmi_lid_flip_devid, + asus_wmi_lid_flip_rog_devid, +}; + struct quirk_entry { bool hotplug_wireless; bool scalar_panel_brightness; @@ -33,8 +40,7 @@ struct quirk_entry { bool wmi_backlight_native; bool wmi_backlight_set_devstate; bool wmi_force_als_set; - bool use_kbd_dock_devid; - bool use_lid_flip_devid; + enum asus_wmi_tablet_switch_mode tablet_switch_mode; int wapf; /* * For machines with AMD graphic chips, it will send out WMI event diff --git a/drivers/platform/x86/dell/dell-wmi-sysman/sysman.c b/drivers/platform/x86/dell/dell-wmi-sysman/sysman.c index 636bdfa83284d..907fde53e95c4 100644 --- a/drivers/platform/x86/dell/dell-wmi-sysman/sysman.c +++ b/drivers/platform/x86/dell/dell-wmi-sysman/sysman.c @@ -396,6 +396,7 @@ static int init_bios_attributes(int attr_type, const char *guid) struct kobject *attr_name_kobj; //individual attribute names union acpi_object *obj = NULL; union acpi_object *elements; + struct kobject *duplicate; struct kset *tmp_set; int min_elements; @@ -454,9 +455,11 @@ static int init_bios_attributes(int attr_type, const char *guid) else tmp_set = wmi_priv.main_dir_kset; - if (kset_find_obj(tmp_set, elements[ATTR_NAME].string.pointer)) { - pr_debug("duplicate attribute name found - %s\n", - elements[ATTR_NAME].string.pointer); + duplicate = kset_find_obj(tmp_set, elements[ATTR_NAME].string.pointer); + if (duplicate) { + pr_debug("Duplicate attribute name found - %s\n", + elements[ATTR_NAME].string.pointer); + kobject_put(duplicate); goto nextobj; } diff --git a/drivers/platform/x86/hp/hp-wmi.c b/drivers/platform/x86/hp/hp-wmi.c index 3b472bf396f39..fd3ea491d66ec 100644 --- a/drivers/platform/x86/hp/hp-wmi.c +++ b/drivers/platform/x86/hp/hp-wmi.c @@ -1076,7 +1076,13 @@ static const struct dev_pm_ops hp_wmi_pm_ops = { .restore = hp_wmi_resume_handler, }; -static struct platform_driver hp_wmi_driver = { +/* + * hp_wmi_bios_remove() lives in .exit.text. For drivers registered via + * module_platform_driver_probe() this is ok because they cannot get unbound at + * runtime. So mark the driver struct with __refdata to prevent modpost + * triggering a section mismatch warning. + */ +static struct platform_driver hp_wmi_driver __refdata = { .driver = { .name = "hp-wmi", .pm = &hp_wmi_pm_ops, diff --git a/drivers/platform/x86/huawei-wmi.c b/drivers/platform/x86/huawei-wmi.c index 935562c870c3d..23ebd0c046e16 100644 --- a/drivers/platform/x86/huawei-wmi.c +++ b/drivers/platform/x86/huawei-wmi.c @@ -86,6 +86,8 @@ static const struct key_entry huawei_wmi_keymap[] = { { KE_IGNORE, 0x293, { KEY_KBDILLUMTOGGLE } }, { KE_IGNORE, 0x294, { KEY_KBDILLUMUP } }, { KE_IGNORE, 0x295, { KEY_KBDILLUMUP } }, + // Ignore Ambient Light Sensoring + { KE_KEY, 0x2c1, { KEY_RESERVED } }, { KE_END, 0 } }; diff --git a/drivers/platform/x86/intel/hid.c b/drivers/platform/x86/intel/hid.c index 4d1c78635114e..f59a3cc9767b9 100644 --- a/drivers/platform/x86/intel/hid.c +++ b/drivers/platform/x86/intel/hid.c @@ -138,6 +138,12 @@ static const struct dmi_system_id dmi_vgbs_allow_list[] = { DMI_MATCH(DMI_PRODUCT_NAME, "Surface Go"), }, }, + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "HP"), + DMI_MATCH(DMI_PRODUCT_NAME, "HP Elite Dragonfly G2 Notebook PC"), + }, + }, { } }; @@ -608,7 +614,7 @@ static bool button_array_present(struct platform_device *device) static int intel_hid_probe(struct platform_device *device) { acpi_handle handle = ACPI_HANDLE(&device->dev); - unsigned long long mode; + unsigned long long mode, dummy; struct intel_hid_priv *priv; acpi_status status; int err; @@ -673,18 +679,15 @@ static int intel_hid_probe(struct platform_device *device) if (err) goto err_remove_notify; - if (priv->array) { - unsigned long long dummy; + intel_button_array_enable(&device->dev, true); - intel_button_array_enable(&device->dev, true); - - /* Call button load method to enable HID power button */ - if (!intel_hid_evaluate_method(handle, INTEL_HID_DSM_BTNL_FN, - &dummy)) { - dev_warn(&device->dev, - "failed to enable HID power button\n"); - } - } + /* + * Call button load method to enable HID power button + * Always do this since it activates events on some devices without + * a button array too. + */ + if (!intel_hid_evaluate_method(handle, INTEL_HID_DSM_BTNL_FN, &dummy)) + dev_warn(&device->dev, "failed to enable HID power button\n"); device_init_wakeup(&device->dev, true); /* diff --git a/drivers/platform/x86/intel_scu_ipc.c b/drivers/platform/x86/intel_scu_ipc.c index e7a3e34028178..189c5460edd81 100644 --- a/drivers/platform/x86/intel_scu_ipc.c +++ b/drivers/platform/x86/intel_scu_ipc.c @@ -19,6 +19,7 @@ #include #include #include +#include #include #include @@ -232,19 +233,15 @@ static inline u32 ipc_data_readl(struct intel_scu_ipc_dev *scu, u32 offset) /* Wait till scu status is busy */ static inline int busy_loop(struct intel_scu_ipc_dev *scu) { - unsigned long end = jiffies + IPC_TIMEOUT; - - do { - u32 status; - - status = ipc_read_status(scu); - if (!(status & IPC_STATUS_BUSY)) - return (status & IPC_STATUS_ERR) ? -EIO : 0; + u8 status; + int err; - usleep_range(50, 100); - } while (time_before(jiffies, end)); + err = readx_poll_timeout(ipc_read_status, scu, status, !(status & IPC_STATUS_BUSY), + 100, jiffies_to_usecs(IPC_TIMEOUT)); + if (err) + return err; - return -ETIMEDOUT; + return (status & IPC_STATUS_ERR) ? -EIO : 0; } /* Wait till ipc ioc interrupt is received or timeout in 10 HZ */ @@ -252,10 +249,12 @@ static inline int ipc_wait_for_interrupt(struct intel_scu_ipc_dev *scu) { int status; - if (!wait_for_completion_timeout(&scu->cmd_complete, IPC_TIMEOUT)) - return -ETIMEDOUT; + wait_for_completion_timeout(&scu->cmd_complete, IPC_TIMEOUT); status = ipc_read_status(scu); + if (status & IPC_STATUS_BUSY) + return -ETIMEDOUT; + if (status & IPC_STATUS_ERR) return -EIO; @@ -267,6 +266,24 @@ static int intel_scu_ipc_check_status(struct intel_scu_ipc_dev *scu) return scu->irq > 0 ? ipc_wait_for_interrupt(scu) : busy_loop(scu); } +static struct intel_scu_ipc_dev *intel_scu_ipc_get(struct intel_scu_ipc_dev *scu) +{ + u8 status; + + if (!scu) + scu = ipcdev; + if (!scu) + return ERR_PTR(-ENODEV); + + status = ipc_read_status(scu); + if (status & IPC_STATUS_BUSY) { + dev_dbg(&scu->dev, "device is busy\n"); + return ERR_PTR(-EBUSY); + } + + return scu; +} + /* Read/Write power control(PMIC in Langwell, MSIC in PenWell) registers */ static int pwr_reg_rdwr(struct intel_scu_ipc_dev *scu, u16 *addr, u8 *data, u32 count, u32 op, u32 id) @@ -280,11 +297,10 @@ static int pwr_reg_rdwr(struct intel_scu_ipc_dev *scu, u16 *addr, u8 *data, memset(cbuf, 0, sizeof(cbuf)); mutex_lock(&ipclock); - if (!scu) - scu = ipcdev; - if (!scu) { + scu = intel_scu_ipc_get(scu); + if (IS_ERR(scu)) { mutex_unlock(&ipclock); - return -ENODEV; + return PTR_ERR(scu); } for (nc = 0; nc < count; nc++, offset += 2) { @@ -439,13 +455,12 @@ int intel_scu_ipc_dev_simple_command(struct intel_scu_ipc_dev *scu, int cmd, int err; mutex_lock(&ipclock); - if (!scu) - scu = ipcdev; - if (!scu) { + scu = intel_scu_ipc_get(scu); + if (IS_ERR(scu)) { mutex_unlock(&ipclock); - return -ENODEV; + return PTR_ERR(scu); } - scu = ipcdev; + cmdval = sub << 12 | cmd; ipc_command(scu, cmdval); err = intel_scu_ipc_check_status(scu); @@ -485,11 +500,10 @@ int intel_scu_ipc_dev_command_with_size(struct intel_scu_ipc_dev *scu, int cmd, return -EINVAL; mutex_lock(&ipclock); - if (!scu) - scu = ipcdev; - if (!scu) { + scu = intel_scu_ipc_get(scu); + if (IS_ERR(scu)) { mutex_unlock(&ipclock); - return -ENODEV; + return PTR_ERR(scu); } memcpy(inbuf, in, inlen); diff --git a/drivers/platform/x86/think-lmi.c b/drivers/platform/x86/think-lmi.c index 76f0d04e17f30..154b1b26d03f8 100644 --- a/drivers/platform/x86/think-lmi.c +++ b/drivers/platform/x86/think-lmi.c @@ -787,6 +787,24 @@ static void tlmi_release_attr(void) kset_unregister(tlmi_priv.authentication_kset); } +static int tlmi_validate_setting_name(struct kset *attribute_kset, char *name) +{ + struct kobject *duplicate; + + if (!strcmp(name, "Reserved")) + return -EINVAL; + + duplicate = kset_find_obj(attribute_kset, name); + if (duplicate) { + pr_debug("Duplicate attribute name found - %s\n", name); + /* kset_find_obj() returns a reference */ + kobject_put(duplicate); + return -EBUSY; + } + + return 0; +} + static int tlmi_sysfs_init(void) { int i, ret; @@ -815,10 +833,8 @@ static int tlmi_sysfs_init(void) continue; /* check for duplicate or reserved values */ - if (kset_find_obj(tlmi_priv.attribute_kset, tlmi_priv.setting[i]->display_name) || - !strcmp(tlmi_priv.setting[i]->display_name, "Reserved")) { - pr_debug("duplicate or reserved attribute name found - %s\n", - tlmi_priv.setting[i]->display_name); + if (tlmi_validate_setting_name(tlmi_priv.attribute_kset, + tlmi_priv.setting[i]->display_name) < 0) { kfree(tlmi_priv.setting[i]->possible_values); kfree(tlmi_priv.setting[i]); tlmi_priv.setting[i] = NULL; diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c index 3dc055ce6e61b..99c19a0b91513 100644 --- a/drivers/platform/x86/thinkpad_acpi.c +++ b/drivers/platform/x86/thinkpad_acpi.c @@ -9766,6 +9766,7 @@ static const struct tpacpi_quirk battery_quirk_table[] __initconst = { * Individual addressing is broken on models that expose the * primary battery as BAT1. */ + TPACPI_Q_LNV('8', 'F', true), /* Thinkpad X120e */ TPACPI_Q_LNV('J', '7', true), /* B5400 */ TPACPI_Q_LNV('J', 'I', true), /* Thinkpad 11e */ TPACPI_Q_LNV3('R', '0', 'B', true), /* Thinkpad 11e gen 3 */ diff --git a/drivers/platform/x86/touchscreen_dmi.c b/drivers/platform/x86/touchscreen_dmi.c index 90aee8b87bbe0..f129e29b295d9 100644 --- a/drivers/platform/x86/touchscreen_dmi.c +++ b/drivers/platform/x86/touchscreen_dmi.c @@ -743,6 +743,21 @@ static const struct ts_dmi_data pipo_w11_data = { .properties = pipo_w11_props, }; +static const struct property_entry positivo_c4128b_props[] = { + PROPERTY_ENTRY_U32("touchscreen-min-x", 4), + PROPERTY_ENTRY_U32("touchscreen-min-y", 13), + PROPERTY_ENTRY_U32("touchscreen-size-x", 1915), + PROPERTY_ENTRY_U32("touchscreen-size-y", 1269), + PROPERTY_ENTRY_STRING("firmware-name", "gsl1680-positivo-c4128b.fw"), + PROPERTY_ENTRY_U32("silead,max-fingers", 10), + { } +}; + +static const struct ts_dmi_data positivo_c4128b_data = { + .acpi_name = "MSSL1680:00", + .properties = positivo_c4128b_props, +}; + static const struct property_entry pov_mobii_wintab_p800w_v20_props[] = { PROPERTY_ENTRY_U32("touchscreen-min-x", 32), PROPERTY_ENTRY_U32("touchscreen-min-y", 16), @@ -1442,6 +1457,14 @@ const struct dmi_system_id touchscreen_dmi_table[] = { DMI_MATCH(DMI_BIOS_VERSION, "MOMO.G.WI71C.MABMRBA02"), }, }, + { + /* Positivo C4128B */ + .driver_data = (void *)&positivo_c4128b_data, + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Positivo Tecnologia SA"), + DMI_MATCH(DMI_PRODUCT_NAME, "C4128B-1"), + }, + }, { /* Point of View mobii wintab p800w (v2.0) */ .driver_data = (void *)&pov_mobii_wintab_p800w_v20_data, diff --git a/drivers/platform/x86/wmi.c b/drivers/platform/x86/wmi.c index 7ce0408d3bfdd..b1cbe280d2a6a 100644 --- a/drivers/platform/x86/wmi.c +++ b/drivers/platform/x86/wmi.c @@ -99,6 +99,12 @@ static const struct acpi_device_id wmi_device_ids[] = { }; MODULE_DEVICE_TABLE(acpi, wmi_device_ids); +/* allow duplicate GUIDs as these device drivers use struct wmi_driver */ +static const char * const allow_duplicates[] = { + "05901221-D566-11D1-B2F0-00A0C9062910", /* wmi-bmof */ + NULL +}; + static struct platform_driver acpi_wmi_driver = { .driver = { .name = "acpi-wmi", @@ -188,7 +194,7 @@ static int get_subobj_info(acpi_handle handle, const char *pathname, static acpi_status wmi_method_enable(struct wmi_block *wblock, int enable) { - struct guid_block *block = NULL; + struct guid_block *block; char method[5]; acpi_status status; acpi_handle handle; @@ -262,8 +268,8 @@ EXPORT_SYMBOL_GPL(wmi_evaluate_method); acpi_status wmidev_evaluate_method(struct wmi_device *wdev, u8 instance, u32 method_id, const struct acpi_buffer *in, struct acpi_buffer *out) { - struct guid_block *block = NULL; - struct wmi_block *wblock = NULL; + struct guid_block *block; + struct wmi_block *wblock; acpi_handle handle; acpi_status status; struct acpi_object_list input; @@ -310,7 +316,7 @@ EXPORT_SYMBOL_GPL(wmidev_evaluate_method); static acpi_status __query_block(struct wmi_block *wblock, u8 instance, struct acpi_buffer *out) { - struct guid_block *block = NULL; + struct guid_block *block; acpi_handle handle; acpi_status status, wc_status = AE_ERROR; struct acpi_object_list input; @@ -423,8 +429,8 @@ EXPORT_SYMBOL_GPL(wmidev_block_query); acpi_status wmi_set_block(const char *guid_string, u8 instance, const struct acpi_buffer *in) { - struct guid_block *block = NULL; struct wmi_block *wblock = NULL; + struct guid_block *block; acpi_handle handle; struct acpi_object_list input; union acpi_object params[2]; @@ -827,21 +833,13 @@ static int wmi_dev_match(struct device *dev, struct device_driver *driver) } static int wmi_char_open(struct inode *inode, struct file *filp) { - const char *driver_name = filp->f_path.dentry->d_iname; - struct wmi_block *wblock = NULL; - struct wmi_block *next = NULL; - - list_for_each_entry_safe(wblock, next, &wmi_block_list, list) { - if (!wblock->dev.dev.driver) - continue; - if (strcmp(driver_name, wblock->dev.dev.driver->name) == 0) { - filp->private_data = wblock; - break; - } - } + /* + * The miscdevice already stores a pointer to itself + * inside filp->private_data + */ + struct wmi_block *wblock = container_of(filp->private_data, struct wmi_block, char_dev); - if (!filp->private_data) - return -ENODEV; + filp->private_data = wblock; return nonseekable_open(inode, filp); } @@ -861,8 +859,8 @@ static long wmi_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) struct wmi_ioctl_buffer __user *input = (struct wmi_ioctl_buffer __user *) arg; struct wmi_block *wblock = filp->private_data; - struct wmi_ioctl_buffer *buf = NULL; - struct wmi_driver *wdriver = NULL; + struct wmi_ioctl_buffer *buf; + struct wmi_driver *wdriver; int ret; if (_IOC_TYPE(cmd) != WMI_IOC) @@ -1047,6 +1045,23 @@ static const struct device_type wmi_type_data = { .release = wmi_dev_release, }; +/* + * _WDG is a static list that is only parsed at startup, + * so it's safe to count entries without extra protection. + */ +static int guid_count(const guid_t *guid) +{ + struct wmi_block *wblock; + int count = 0; + + list_for_each_entry(wblock, &wmi_block_list, list) { + if (guid_equal(&wblock->gblock.guid, guid)) + count++; + } + + return count; +} + static int wmi_create_device(struct device *wmi_bus_dev, struct wmi_block *wblock, struct acpi_device *device) @@ -1054,6 +1069,7 @@ static int wmi_create_device(struct device *wmi_bus_dev, struct acpi_device_info *info; char method[5]; int result; + uint count; if (wblock->gblock.flags & ACPI_WMI_EVENT) { wblock->dev.dev.type = &wmi_type_event; @@ -1110,7 +1126,11 @@ static int wmi_create_device(struct device *wmi_bus_dev, wblock->dev.dev.bus = &wmi_bus_type; wblock->dev.dev.parent = wmi_bus_dev; - dev_set_name(&wblock->dev.dev, "%pUL", &wblock->gblock.guid); + count = guid_count(&wblock->gblock.guid); + if (count) + dev_set_name(&wblock->dev.dev, "%pUL-%d", &wblock->gblock.guid, count); + else + dev_set_name(&wblock->dev.dev, "%pUL", &wblock->gblock.guid); device_initialize(&wblock->dev.dev); @@ -1130,11 +1150,22 @@ static void wmi_free_devices(struct acpi_device *device) } } -static bool guid_already_parsed(struct acpi_device *device, const guid_t *guid) +static bool guid_already_parsed_for_legacy(struct acpi_device *device, const guid_t *guid) { struct wmi_block *wblock; list_for_each_entry(wblock, &wmi_block_list, list) { + int i; + + /* skip warning and register if we know the driver will use struct wmi_driver */ + for (i = 0; allow_duplicates[i] != NULL; i++) { + guid_t tmp; + + if (guid_parse(allow_duplicates[i], &tmp)) + continue; + if (guid_equal(&tmp, guid)) + return false; + } if (guid_equal(&wblock->gblock.guid, guid)) { /* * Because we historically didn't track the relationship @@ -1161,8 +1192,8 @@ static int parse_wdg(struct device *wmi_bus_dev, struct acpi_device *device) struct wmi_block *wblock, *next; union acpi_object *obj; acpi_status status; - int retval = 0; u32 i, total; + int retval; status = acpi_evaluate_object(device->handle, "_WDG", NULL, &out); if (ACPI_FAILURE(status)) @@ -1173,8 +1204,8 @@ static int parse_wdg(struct device *wmi_bus_dev, struct acpi_device *device) return -ENXIO; if (obj->type != ACPI_TYPE_BUFFER) { - retval = -ENXIO; - goto out_free_pointer; + kfree(obj); + return -ENXIO; } gblock = (const struct guid_block *)obj->buffer.pointer; @@ -1184,19 +1215,18 @@ static int parse_wdg(struct device *wmi_bus_dev, struct acpi_device *device) if (debug_dump_wdg) wmi_dump_wdg(&gblock[i]); - /* - * Some WMI devices, like those for nVidia hooks, have a - * duplicate GUID. It's not clear what we should do in this - * case yet, so for now, we'll just ignore the duplicate - * for device creation. - */ - if (guid_already_parsed(device, &gblock[i].guid)) + if (!gblock[i].instance_count) { + dev_info(wmi_bus_dev, FW_INFO "%pUL has zero instances\n", &gblock[i].guid); + continue; + } + + if (guid_already_parsed_for_legacy(device, &gblock[i].guid)) continue; wblock = kzalloc(sizeof(struct wmi_block), GFP_KERNEL); if (!wblock) { - retval = -ENOMEM; - break; + dev_err(wmi_bus_dev, "Failed to allocate %pUL\n", &gblock[i].guid); + continue; } wblock->acpi_device = device; @@ -1235,9 +1265,9 @@ static int parse_wdg(struct device *wmi_bus_dev, struct acpi_device *device) } } -out_free_pointer: - kfree(out.pointer); - return retval; + kfree(obj); + + return 0; } /* diff --git a/drivers/power/supply/ucs1002_power.c b/drivers/power/supply/ucs1002_power.c index ef673ec3db568..332cb50d9fb4f 100644 --- a/drivers/power/supply/ucs1002_power.c +++ b/drivers/power/supply/ucs1002_power.c @@ -384,7 +384,8 @@ static int ucs1002_get_property(struct power_supply *psy, case POWER_SUPPLY_PROP_USB_TYPE: return ucs1002_get_usb_type(info, val); case POWER_SUPPLY_PROP_HEALTH: - return val->intval = info->health; + val->intval = info->health; + return 0; case POWER_SUPPLY_PROP_PRESENT: val->intval = info->present; return 0; diff --git a/drivers/ptp/ptp_chardev.c b/drivers/ptp/ptp_chardev.c index af3bc65c4595d..9311f3d09c8fc 100644 --- a/drivers/ptp/ptp_chardev.c +++ b/drivers/ptp/ptp_chardev.c @@ -487,7 +487,8 @@ ssize_t ptp_read(struct posix_clock *pc, for (i = 0; i < cnt; i++) { event[i] = queue->buf[queue->head]; - queue->head = (queue->head + 1) % PTP_MAX_TIMESTAMPS; + /* Paired with READ_ONCE() in queue_cnt() */ + WRITE_ONCE(queue->head, (queue->head + 1) % PTP_MAX_TIMESTAMPS); } spin_unlock_irqrestore(&queue->lock, flags); diff --git a/drivers/ptp/ptp_clock.c b/drivers/ptp/ptp_clock.c index 507dcc8fd524a..577dff5db386a 100644 --- a/drivers/ptp/ptp_clock.c +++ b/drivers/ptp/ptp_clock.c @@ -56,10 +56,11 @@ static void enqueue_external_timestamp(struct timestamp_event_queue *queue, dst->t.sec = seconds; dst->t.nsec = remainder; + /* Both WRITE_ONCE() are paired with READ_ONCE() in queue_cnt() */ if (!queue_free(queue)) - queue->head = (queue->head + 1) % PTP_MAX_TIMESTAMPS; + WRITE_ONCE(queue->head, (queue->head + 1) % PTP_MAX_TIMESTAMPS); - queue->tail = (queue->tail + 1) % PTP_MAX_TIMESTAMPS; + WRITE_ONCE(queue->tail, (queue->tail + 1) % PTP_MAX_TIMESTAMPS); spin_unlock_irqrestore(&queue->lock, flags); } diff --git a/drivers/ptp/ptp_ocp.c b/drivers/ptp/ptp_ocp.c index e238ae8e94709..7a4a06148515a 100644 --- a/drivers/ptp/ptp_ocp.c +++ b/drivers/ptp/ptp_ocp.c @@ -1292,7 +1292,6 @@ ptp_ocp_device_init(struct ptp_ocp *bp, struct pci_dev *pdev) return 0; out: - ptp_ocp_dev_release(&bp->dev); put_device(&bp->dev); return err; } diff --git a/drivers/ptp/ptp_private.h b/drivers/ptp/ptp_private.h index dba6be4770670..b336c12bb6976 100644 --- a/drivers/ptp/ptp_private.h +++ b/drivers/ptp/ptp_private.h @@ -74,9 +74,13 @@ struct ptp_vclock { * that a writer might concurrently increment the tail does not * matter, since the queue remains nonempty nonetheless. */ -static inline int queue_cnt(struct timestamp_event_queue *q) +static inline int queue_cnt(const struct timestamp_event_queue *q) { - int cnt = q->tail - q->head; + /* + * Paired with WRITE_ONCE() in enqueue_external_timestamp(), + * ptp_read(), extts_fifo_show(). + */ + int cnt = READ_ONCE(q->tail) - READ_ONCE(q->head); return cnt < 0 ? PTP_MAX_TIMESTAMPS + cnt : cnt; } diff --git a/drivers/ptp/ptp_sysfs.c b/drivers/ptp/ptp_sysfs.c index 9233bfedeb174..0bdfdd4bb0fa2 100644 --- a/drivers/ptp/ptp_sysfs.c +++ b/drivers/ptp/ptp_sysfs.c @@ -79,7 +79,8 @@ static ssize_t extts_fifo_show(struct device *dev, qcnt = queue_cnt(queue); if (qcnt) { event = queue->buf[queue->head]; - queue->head = (queue->head + 1) % PTP_MAX_TIMESTAMPS; + /* Paired with READ_ONCE() in queue_cnt() */ + WRITE_ONCE(queue->head, (queue->head + 1) % PTP_MAX_TIMESTAMPS); } spin_unlock_irqrestore(&queue->lock, flags); diff --git a/drivers/pwm/pwm-atmel-tcb.c b/drivers/pwm/pwm-atmel-tcb.c index 36f7ea381838d..bb415be73bbe4 100644 --- a/drivers/pwm/pwm-atmel-tcb.c +++ b/drivers/pwm/pwm-atmel-tcb.c @@ -422,13 +422,14 @@ static int atmel_tcb_pwm_probe(struct platform_device *pdev) struct atmel_tcb_pwm_chip *tcbpwm; const struct atmel_tcb_config *config; struct device_node *np = pdev->dev.of_node; - struct regmap *regmap; - struct clk *clk, *gclk = NULL; - struct clk *slow_clk; char clk_name[] = "t0_clk"; int err; int channel; + tcbpwm = devm_kzalloc(&pdev->dev, sizeof(*tcbpwm), GFP_KERNEL); + if (tcbpwm == NULL) + return -ENOMEM; + err = of_property_read_u32(np, "reg", &channel); if (err < 0) { dev_err(&pdev->dev, @@ -437,49 +438,43 @@ static int atmel_tcb_pwm_probe(struct platform_device *pdev) return err; } - regmap = syscon_node_to_regmap(np->parent); - if (IS_ERR(regmap)) - return PTR_ERR(regmap); + tcbpwm->regmap = syscon_node_to_regmap(np->parent); + if (IS_ERR(tcbpwm->regmap)) + return PTR_ERR(tcbpwm->regmap); - slow_clk = of_clk_get_by_name(np->parent, "slow_clk"); - if (IS_ERR(slow_clk)) - return PTR_ERR(slow_clk); + tcbpwm->slow_clk = of_clk_get_by_name(np->parent, "slow_clk"); + if (IS_ERR(tcbpwm->slow_clk)) + return PTR_ERR(tcbpwm->slow_clk); clk_name[1] += channel; - clk = of_clk_get_by_name(np->parent, clk_name); - if (IS_ERR(clk)) - clk = of_clk_get_by_name(np->parent, "t0_clk"); - if (IS_ERR(clk)) - return PTR_ERR(clk); + tcbpwm->clk = of_clk_get_by_name(np->parent, clk_name); + if (IS_ERR(tcbpwm->clk)) + tcbpwm->clk = of_clk_get_by_name(np->parent, "t0_clk"); + if (IS_ERR(tcbpwm->clk)) { + err = PTR_ERR(tcbpwm->clk); + goto err_slow_clk; + } match = of_match_node(atmel_tcb_of_match, np->parent); config = match->data; if (config->has_gclk) { - gclk = of_clk_get_by_name(np->parent, "gclk"); - if (IS_ERR(gclk)) - return PTR_ERR(gclk); - } - - tcbpwm = devm_kzalloc(&pdev->dev, sizeof(*tcbpwm), GFP_KERNEL); - if (tcbpwm == NULL) { - err = -ENOMEM; - goto err_slow_clk; + tcbpwm->gclk = of_clk_get_by_name(np->parent, "gclk"); + if (IS_ERR(tcbpwm->gclk)) { + err = PTR_ERR(tcbpwm->gclk); + goto err_clk; + } } tcbpwm->chip.dev = &pdev->dev; tcbpwm->chip.ops = &atmel_tcb_pwm_ops; tcbpwm->chip.npwm = NPWM; tcbpwm->channel = channel; - tcbpwm->regmap = regmap; - tcbpwm->clk = clk; - tcbpwm->gclk = gclk; - tcbpwm->slow_clk = slow_clk; tcbpwm->width = config->counter_width; - err = clk_prepare_enable(slow_clk); + err = clk_prepare_enable(tcbpwm->slow_clk); if (err) - goto err_slow_clk; + goto err_gclk; spin_lock_init(&tcbpwm->lock); @@ -494,23 +489,28 @@ static int atmel_tcb_pwm_probe(struct platform_device *pdev) err_disable_clk: clk_disable_unprepare(tcbpwm->slow_clk); +err_gclk: + clk_put(tcbpwm->gclk); + +err_clk: + clk_put(tcbpwm->clk); + err_slow_clk: - clk_put(slow_clk); + clk_put(tcbpwm->slow_clk); return err; } -static int atmel_tcb_pwm_remove(struct platform_device *pdev) +static void atmel_tcb_pwm_remove(struct platform_device *pdev) { struct atmel_tcb_pwm_chip *tcbpwm = platform_get_drvdata(pdev); pwmchip_remove(&tcbpwm->chip); clk_disable_unprepare(tcbpwm->slow_clk); - clk_put(tcbpwm->slow_clk); + clk_put(tcbpwm->gclk); clk_put(tcbpwm->clk); - - return 0; + clk_put(tcbpwm->slow_clk); } static const struct of_device_id atmel_tcb_pwm_dt_ids[] = { @@ -564,7 +564,7 @@ static struct platform_driver atmel_tcb_pwm_driver = { .pm = &atmel_tcb_pwm_pm_ops, }, .probe = atmel_tcb_pwm_probe, - .remove = atmel_tcb_pwm_remove, + .remove_new = atmel_tcb_pwm_remove, }; module_platform_driver(atmel_tcb_pwm_driver); diff --git a/drivers/pwm/pwm-brcmstb.c b/drivers/pwm/pwm-brcmstb.c index 3b529f82b97c9..202e2d013685f 100644 --- a/drivers/pwm/pwm-brcmstb.c +++ b/drivers/pwm/pwm-brcmstb.c @@ -294,7 +294,7 @@ static int brcmstb_pwm_suspend(struct device *dev) { struct brcmstb_pwm *p = dev_get_drvdata(dev); - clk_disable(p->clk); + clk_disable_unprepare(p->clk); return 0; } @@ -303,7 +303,7 @@ static int brcmstb_pwm_resume(struct device *dev) { struct brcmstb_pwm *p = dev_get_drvdata(dev); - clk_enable(p->clk); + clk_prepare_enable(p->clk); return 0; } diff --git a/drivers/pwm/pwm-lpc32xx.c b/drivers/pwm/pwm-lpc32xx.c index ddeab5687cb81..45b613dbc1c7b 100644 --- a/drivers/pwm/pwm-lpc32xx.c +++ b/drivers/pwm/pwm-lpc32xx.c @@ -51,10 +51,10 @@ static int lpc32xx_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm, if (duty_cycles > 255) duty_cycles = 255; - val = readl(lpc32xx->base + (pwm->hwpwm << 2)); + val = readl(lpc32xx->base); val &= ~0xFFFF; val |= (period_cycles << 8) | duty_cycles; - writel(val, lpc32xx->base + (pwm->hwpwm << 2)); + writel(val, lpc32xx->base); return 0; } @@ -69,9 +69,9 @@ static int lpc32xx_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm) if (ret) return ret; - val = readl(lpc32xx->base + (pwm->hwpwm << 2)); + val = readl(lpc32xx->base); val |= PWM_ENABLE; - writel(val, lpc32xx->base + (pwm->hwpwm << 2)); + writel(val, lpc32xx->base); return 0; } @@ -81,9 +81,9 @@ static void lpc32xx_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm) struct lpc32xx_pwm_chip *lpc32xx = to_lpc32xx_pwm_chip(chip); u32 val; - val = readl(lpc32xx->base + (pwm->hwpwm << 2)); + val = readl(lpc32xx->base); val &= ~PWM_ENABLE; - writel(val, lpc32xx->base + (pwm->hwpwm << 2)); + writel(val, lpc32xx->base); clk_disable_unprepare(lpc32xx->clk); } @@ -118,9 +118,9 @@ static int lpc32xx_pwm_probe(struct platform_device *pdev) lpc32xx->chip.npwm = 1; /* If PWM is disabled, configure the output to the default value */ - val = readl(lpc32xx->base + (lpc32xx->chip.pwms[0].hwpwm << 2)); + val = readl(lpc32xx->base); val &= ~PWM_PIN_LEVEL; - writel(val, lpc32xx->base + (lpc32xx->chip.pwms[0].hwpwm << 2)); + writel(val, lpc32xx->base); ret = devm_pwmchip_add(&pdev->dev, &lpc32xx->chip); if (ret < 0) { diff --git a/drivers/pwm/pwm-sti.c b/drivers/pwm/pwm-sti.c index f491d56254d7c..f8a3f30e54dd5 100644 --- a/drivers/pwm/pwm-sti.c +++ b/drivers/pwm/pwm-sti.c @@ -79,6 +79,7 @@ struct sti_pwm_compat_data { unsigned int cpt_num_devs; unsigned int max_pwm_cnt; unsigned int max_prescale; + struct sti_cpt_ddata *ddata; }; struct sti_pwm_chip { @@ -314,7 +315,7 @@ static int sti_pwm_capture(struct pwm_chip *chip, struct pwm_device *pwm, { struct sti_pwm_chip *pc = to_sti_pwmchip(chip); struct sti_pwm_compat_data *cdata = pc->cdata; - struct sti_cpt_ddata *ddata = pwm_get_chip_data(pwm); + struct sti_cpt_ddata *ddata = &cdata->ddata[pwm->hwpwm]; struct device *dev = pc->dev; unsigned int effective_ticks; unsigned long long high, low; @@ -417,7 +418,7 @@ static irqreturn_t sti_pwm_interrupt(int irq, void *data) while (cpt_int_stat) { devicenum = ffs(cpt_int_stat) - 1; - ddata = pwm_get_chip_data(&pc->chip.pwms[devicenum]); + ddata = &pc->cdata->ddata[devicenum]; /* * Capture input: @@ -615,30 +616,28 @@ static int sti_pwm_probe(struct platform_device *pdev) dev_err(dev, "failed to prepare clock\n"); return ret; } + + cdata->ddata = devm_kzalloc(dev, cdata->cpt_num_devs * sizeof(*cdata->ddata), GFP_KERNEL); + if (!cdata->ddata) + return -ENOMEM; } pc->chip.dev = dev; pc->chip.ops = &sti_pwm_ops; pc->chip.npwm = pc->cdata->pwm_num_devs; - ret = pwmchip_add(&pc->chip); - if (ret < 0) { - clk_unprepare(pc->pwm_clk); - clk_unprepare(pc->cpt_clk); - return ret; - } - for (i = 0; i < cdata->cpt_num_devs; i++) { - struct sti_cpt_ddata *ddata; - - ddata = devm_kzalloc(dev, sizeof(*ddata), GFP_KERNEL); - if (!ddata) - return -ENOMEM; + struct sti_cpt_ddata *ddata = &cdata->ddata[i]; init_waitqueue_head(&ddata->wait); mutex_init(&ddata->lock); + } - pwm_set_chip_data(&pc->chip.pwms[i], ddata); + ret = pwmchip_add(&pc->chip); + if (ret < 0) { + clk_unprepare(pc->pwm_clk); + clk_unprepare(pc->cpt_clk); + return ret; } platform_set_drvdata(pdev, pc); diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c index ebde10e744343..8ad50dc8fb356 100644 --- a/drivers/regulator/core.c +++ b/drivers/regulator/core.c @@ -5649,15 +5649,11 @@ regulator_register(const struct regulator_desc *regulator_desc, mutex_lock(®ulator_list_mutex); regulator_ena_gpio_free(rdev); mutex_unlock(®ulator_list_mutex); - put_device(&rdev->dev); - rdev = NULL; clean: if (dangling_of_gpiod) gpiod_put(config->ena_gpiod); - if (rdev && rdev->dev.of_node) - of_node_put(rdev->dev.of_node); - kfree(rdev); kfree(config); + put_device(&rdev->dev); rinse: if (dangling_cfg_gpiod) gpiod_put(cfg->ena_gpiod); diff --git a/drivers/rpmsg/qcom_glink_native.c b/drivers/rpmsg/qcom_glink_native.c index fd4c2f0fa4b1f..35e7291aa9696 100644 --- a/drivers/rpmsg/qcom_glink_native.c +++ b/drivers/rpmsg/qcom_glink_native.c @@ -222,6 +222,10 @@ static struct glink_channel *qcom_glink_alloc_channel(struct qcom_glink *glink, channel->glink = glink; channel->name = kstrdup(name, GFP_KERNEL); + if (!channel->name) { + kfree(channel); + return ERR_PTR(-ENOMEM); + } init_completion(&channel->open_req); init_completion(&channel->open_ack); @@ -1391,6 +1395,7 @@ static void qcom_glink_rpdev_release(struct device *dev) struct glink_channel *channel = to_glink_channel(rpdev->ept); channel->rpdev = NULL; + kfree(rpdev->driver_override); kfree(rpdev); } @@ -1619,6 +1624,7 @@ static void qcom_glink_device_release(struct device *dev) /* Release qcom_glink_alloc_channel() reference */ kref_put(&channel->refcount, qcom_glink_channel_release); + kfree(rpdev->driver_override); kfree(rpdev); } diff --git a/drivers/rpmsg/rpmsg_core.c b/drivers/rpmsg/rpmsg_core.c index a71de08acc7b9..8bb78c747e30c 100644 --- a/drivers/rpmsg/rpmsg_core.c +++ b/drivers/rpmsg/rpmsg_core.c @@ -376,7 +376,8 @@ field##_store(struct device *dev, struct device_attribute *attr, \ const char *buf, size_t sz) \ { \ struct rpmsg_device *rpdev = to_rpmsg_device(dev); \ - char *new, *old; \ + const char *old; \ + char *new; \ \ new = kstrndup(buf, sz, GFP_KERNEL); \ if (!new) \ @@ -568,24 +569,52 @@ static struct bus_type rpmsg_bus = { .remove = rpmsg_dev_remove, }; -int rpmsg_register_device(struct rpmsg_device *rpdev) +/* + * A helper for registering rpmsg device with driver override and name. + * Drivers should not be using it, but instead rpmsg_register_device(). + */ +int rpmsg_register_device_override(struct rpmsg_device *rpdev, + const char *driver_override) { struct device *dev = &rpdev->dev; int ret; + if (driver_override) + strcpy(rpdev->id.name, driver_override); + dev_set_name(&rpdev->dev, "%s.%s.%d.%d", dev_name(dev->parent), rpdev->id.name, rpdev->src, rpdev->dst); rpdev->dev.bus = &rpmsg_bus; - ret = device_register(&rpdev->dev); + device_initialize(dev); + if (driver_override) { + ret = driver_set_override(dev, &rpdev->driver_override, + driver_override, + strlen(driver_override)); + if (ret) { + dev_err(dev, "device_set_override failed: %d\n", ret); + put_device(dev); + return ret; + } + } + + ret = device_add(dev); if (ret) { - dev_err(dev, "device_register failed: %d\n", ret); + dev_err(dev, "device_add failed: %d\n", ret); + kfree(rpdev->driver_override); + rpdev->driver_override = NULL; put_device(&rpdev->dev); } return ret; } +EXPORT_SYMBOL(rpmsg_register_device_override); + +int rpmsg_register_device(struct rpmsg_device *rpdev) +{ + return rpmsg_register_device_override(rpdev, NULL); +} EXPORT_SYMBOL(rpmsg_register_device); /* diff --git a/drivers/rpmsg/rpmsg_internal.h b/drivers/rpmsg/rpmsg_internal.h index a76c344253bf5..7985af92aa489 100644 --- a/drivers/rpmsg/rpmsg_internal.h +++ b/drivers/rpmsg/rpmsg_internal.h @@ -90,10 +90,7 @@ int rpmsg_release_channel(struct rpmsg_device *rpdev, */ static inline int rpmsg_chrdev_register_device(struct rpmsg_device *rpdev) { - strcpy(rpdev->id.name, "rpmsg_chrdev"); - rpdev->driver_override = "rpmsg_chrdev"; - - return rpmsg_register_device(rpdev); + return rpmsg_register_device_override(rpdev, "rpmsg_ctrl"); } #endif diff --git a/drivers/rpmsg/rpmsg_ns.c b/drivers/rpmsg/rpmsg_ns.c index 762ff1ae279f2..c70ad03ff2e90 100644 --- a/drivers/rpmsg/rpmsg_ns.c +++ b/drivers/rpmsg/rpmsg_ns.c @@ -20,12 +20,10 @@ */ int rpmsg_ns_register_device(struct rpmsg_device *rpdev) { - strcpy(rpdev->id.name, "rpmsg_ns"); - rpdev->driver_override = "rpmsg_ns"; rpdev->src = RPMSG_NS_ADDR; rpdev->dst = RPMSG_NS_ADDR; - return rpmsg_register_device(rpdev); + return rpmsg_register_device_override(rpdev, "rpmsg_ns"); } EXPORT_SYMBOL(rpmsg_ns_register_device); diff --git a/drivers/rtc/Kconfig b/drivers/rtc/Kconfig index e1bc5214494e2..23ea95cbd2bc5 100644 --- a/drivers/rtc/Kconfig +++ b/drivers/rtc/Kconfig @@ -457,6 +457,16 @@ config RTC_DRV_PCF85063 This driver can also be built as a module. If so, the module will be called rtc-pcf85063. +config RTC_DRV_PCF85263 + tristate "NXP PCF85263" + depends on UBUNTU_ODM_DRIVERS + select REGMAP_I2C + help + If you say yes here you get support for the PCF85263 RTC chip. + + This driver can also be built as a module. If so, the module + will be called rtc-pcf85263. + config RTC_DRV_PCF85363 tristate "NXP PCF85363" select REGMAP_I2C diff --git a/drivers/rtc/Makefile b/drivers/rtc/Makefile index 5ceeafe4d5b23..be44ee12c7726 100644 --- a/drivers/rtc/Makefile +++ b/drivers/rtc/Makefile @@ -120,6 +120,7 @@ obj-$(CONFIG_RTC_DRV_PCF2127) += rtc-pcf2127.o obj-$(CONFIG_RTC_DRV_PCF50633) += rtc-pcf50633.o obj-$(CONFIG_RTC_DRV_PCF85063) += rtc-pcf85063.o obj-$(CONFIG_RTC_DRV_PCF8523) += rtc-pcf8523.o +obj-$(CONFIG_RTC_DRV_PCF85263) += rtc-pcf85263.o obj-$(CONFIG_RTC_DRV_PCF85363) += rtc-pcf85363.o obj-$(CONFIG_RTC_DRV_PCF8563) += rtc-pcf8563.o obj-$(CONFIG_RTC_DRV_PCF8583) += rtc-pcf8583.o diff --git a/drivers/rtc/rtc-pcf85263.c b/drivers/rtc/rtc-pcf85263.c new file mode 100644 index 0000000000000..3635a1715af69 --- /dev/null +++ b/drivers/rtc/rtc-pcf85263.c @@ -0,0 +1,1784 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * NXP PCF85263 RTC driver + * Copyright (C) 2015 Eurotech Ltd Fabrizio Castro + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; If not, see + */ +#define DEBUG 0 + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "rtc-pcf85263.h" + +/* + * This driver implements only a subset of the HW capabilities: + * - RTC + * - Alarm 1 + * - watchdog + * - timestamps + * - RAM byte + * - Battery management + * - Oscillator + */ +/* + * workaround for the sleep/wakeup issue + * resuming from sleep we need to set the gpio0_19 bit + * in this registers. Due to pcb routing there is no need + * to configure something + */ +#define GPIO0_IRQSTATUS_0_ADDR 0x44E0702C +#define GPIO0_IRQSTATUS_1_ADDR 0x44E07030 +#define GPIO0_19_SET_BIT_ACK 0x00080000 + +#define RTC_WAIT_FOR_INTERRUPTS _IOW('p', 0x15, unsigned char) +#define RTC_WAIT_FOR_ANY_INTERRUPT _IOR('p', 0x16, unsigned char) +#define RTC_CLEAR_INTERRUPT_FLAGS _IOW('p', 0x17, unsigned char) + +#define WATCHDOG_TIMEOUT 60 +#define TAMPER_LEVEL 1 +#define VOLTAGE_THRE 0 +#define WDT_ENABLE 0 +#define WAKE_ENABLE 1 +#define INT_BATT_DEF "INTA" +#define INT_WDT_DEF "NO_INTERRUPT" +#define INT_TST_DEF "INTB" +#define INT_APM_DEF "INTAPM_INTA" +#define TSPM_DEF "TSPM_INPUT_MODE" + +static int timeout = WATCHDOG_TIMEOUT; +module_param(timeout, int, 0); +MODULE_PARM_DESC(timeout, + "Watchdog timeout in seconds. (1<=timeout<=124, default=" + __MODULE_STRING(WATCHDOG_TIMEOUT) ")"); + +static bool nowayout = WATCHDOG_NOWAYOUT; +module_param(nowayout, bool, 0); +MODULE_PARM_DESC(nowayout, + "Watchdog cannot be stopped once started (default=" + __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); + +static bool tsl = TAMPER_LEVEL; +module_param(tsl, bool, 0); +MODULE_PARM_DESC(tsl, + "Tamper level, 0 low, 1 high (default=" + __MODULE_STRING(TAMPER_LEVEL) ")"); + +static bool vth = VOLTAGE_THRE; +module_param(vth, bool, 0); +MODULE_PARM_DESC(vth, + "Voltage threshold level, 0 -> 1.5V, 1 -> 2.8V (default=" + __MODULE_STRING(VOLTAGE_THRE) ")"); + +static bool wdten = WDT_ENABLE; +module_param(wdten, bool, 0); +MODULE_PARM_DESC(wdten, + "Watchdog timer enable, 0 disabled, 1 enabled (default=" + __MODULE_STRING(WDT_ENABLE) ")"); + +static bool wakeen = WAKE_ENABLE; +module_param(wakeen, bool, 0); +MODULE_PARM_DESC(wakeen, + "Wakeup function enable, 0 disabled, 1 enabled (default=" + __MODULE_STRING(WAKE_ENABLE) ")"); + +static char *int_batt = INT_BATT_DEF; +module_param(int_batt, charp, 0); +MODULE_PARM_DESC(int_batt, + "Battery connection configuration, INTA, INTB, NO_INTERRUPT (default=" + __MODULE_STRING(INT_BATT_DEF) ")"); + +static char *int_wdt = INT_WDT_DEF; +module_param(int_wdt, charp, 0); +MODULE_PARM_DESC(int_wdt, + "Watchdog connection configuration, INTA, INTB, NO_INTERRUPT (default=" + __MODULE_STRING(INT_WDT_DEF) ")"); + +static char *int_tst = INT_TST_DEF; +module_param(int_tst, charp, 0); +MODULE_PARM_DESC(int_tst, + "Timestamp connection configuration, INTA, INTB, NO_INTERRUPT (default=" + __MODULE_STRING(INT_TST_DEF) ")"); + +static char *intapm_conf = INT_APM_DEF; +module_param(intapm_conf, charp, 0); +MODULE_PARM_DESC(intapm_conf, + "INTA Pin mode, INTAPM_CLK_OUTPUT, INTAPM_BATTERY_MODE_INDICATION, INTAPM_INTA, INTAPM_HIGH_IMPEDANCE (default=" + __MODULE_STRING(INT_APM_DEF) ")"); + +static char *tspm = TSPM_DEF; +module_param(tspm, charp, 0); +MODULE_PARM_DESC(tspm, + "Timestamp pin mode, TSPM_DISABLED, TSPM_INT, TSPM_CLK_OUTPUT, TSPM_INPUT_MODE (default=" + __MODULE_STRING(TSPM_DEF) ")"); + +static struct i2c_driver pcf85263_driver; + +struct pcf85263 { + struct i2c_client *client; + struct rtc_device *rtc; + struct mutex mutex; + int ram_byte_file_created; + int registers_file_created; + int resets_file_created; + int inta_gpio; + int intb_gpio; + int inta_irq; + int intb_irq; + int interrupt_alarm; + int clock_frequency; + int clk_pin; + int inta_pin; + int ts_pin; + int ts_pin_pull; + int ts_pin_level; + int ts_pin_input_type; + int watchdog_timeout; + int watchdog_disable_on_boot; + int interrupt_watchdog; + int flags_file_created; + int timestamp1_file_created; + int timestamp2_file_created; + int timestamp3_file_created; + int timestamp1_mode; + int timestamp2_mode; + int timestamp3_mode; + int interrupt_timestamp; + int battery_switch; + int battery_vth; + int interrupt_battery; + wait_queue_head_t event_queue; + unsigned char event_interrupt; + struct work_struct work; + int irq; +}; + +/******************************************************************************* + * Utils + */ +static int pcf85263_read_register(struct i2c_client *client, + unsigned char address, + unsigned char *value) +{ + int err; + + err = i2c_master_send(client, &address, sizeof(address)); + if (err != sizeof(address)) + return err; + err = i2c_master_recv(client, value, sizeof(unsigned char)); + if (err != sizeof(unsigned char)) + return err; + return 0; +} + +static int pcf85263_read_registers(struct i2c_client *client, + unsigned char address, + unsigned char *values, int count) +{ + int err; + + err = i2c_master_send(client, &address, sizeof(address)); + if (err != sizeof(address)) + return err; + err = i2c_master_recv(client, values, count); + if (err != count) + return err; + return 0; +} + +static int pcf85263_write_register(struct i2c_client *client, + unsigned char address, + unsigned char value) +{ + int err; + unsigned char data[2] = { address, value }; + + err = i2c_master_send(client, data, sizeof(data)); + if (err != sizeof(data)) + return err; + return 0; +} + +static int pcf85263_first_one_index(unsigned char value) +{ + int first_one_index = 0; + + if (value == 0) + return -EINVAL; + while ((value & 0x01) == 0) { + value = value >> 1; + first_one_index++; + } + return first_one_index; +} + +/******************************************************************************* + * Watchdog + */ + +static int pcf85263_watchdog_enable(struct i2c_client *client, int enable) +{ + int err = 0; + unsigned char value; + struct pcf85263 *pcf85263; + + pcf85263 = i2c_get_clientdata(client); + if (pcf85263->interrupt_watchdog == INTA) { + err = + pcf85263_read_register(client, REGISTER_INTA_ENABLE, + &value); + if (err) + return err; + value &= ~WDIEA; + value |= (enable ? WDIEA_ENABLE : WDIEA_DISABLE); + err = + pcf85263_write_register(client, REGISTER_INTA_ENABLE, + value); + } else if (pcf85263->interrupt_watchdog == INTB) { + err = + pcf85263_read_register(client, REGISTER_INTB_ENABLE, + &value); + if (err) + return err; + value &= ~WDIEB; + value |= (enable ? WDIEB_ENABLE : WDIEB_DISABLE); + err = + pcf85263_write_register(client, REGISTER_INTB_ENABLE, + value); + } else { + dev_dbg(&client->dev, "[%s] no interrupt registered\n", + __func__); + } + return err; +} + +static int pcf85263_watchdog_compute_seconds(int *seconds, + unsigned char *_wdr_value, + unsigned char *_wds_value) +{ + unsigned char wdr_value, wds_value; + + /* WatchDog-duration = WDR x stepsize */ + if (*seconds > 120) { + wdr_value = 31; + wds_value = WDS_4_SECONDS; + } else if (*seconds > 31) { + wdr_value = (unsigned char)(*seconds / 4); + if (((int)wdr_value * 4) != *seconds) + wdr_value++; + wds_value = WDS_4_SECONDS; + } else if (*seconds >= 0) { + wdr_value = (unsigned char)*seconds; + wds_value = WDS_1_SECOND; + } else { + return -EINVAL; + } + if (wds_value == WDS_4_SECONDS) + *seconds = (int)wdr_value * 4; + else + *seconds = wdr_value; + if (_wdr_value) + *_wdr_value = wdr_value; + + if (_wds_value) + *_wds_value = wds_value; + return 0; +} + +static int pcf85263_watchdog_set_time(struct i2c_client *client, + int *seconds) +{ + int err; + unsigned char wdr_value, wds_value, value; + struct pcf85263 *pcf85263; + + dev_dbg(&client->dev, "[%s] [input] seconds = %d\n", __func__, + *seconds); + pcf85263 = i2c_get_clientdata(client); + err = + pcf85263_watchdog_compute_seconds(seconds, &wdr_value, + &wds_value); + if (err) { + dev_dbg(&client->dev, + "[%s] problems while computing actual timeout\n", + __func__); + return err; + } + err = pcf85263_read_register(client, REGISTER_WATCHDOG, &value); + if (err) + return err; + value &= ~WDR; + value |= (wdr_value << pcf85263_first_one_index(WDR)); + value &= ~WDS; + value |= (wds_value << pcf85263_first_one_index(WDS)); + err = pcf85263_write_register(client, REGISTER_WATCHDOG, value); + if (err) + return err; + dev_dbg(&client->dev, "[%s] [output] seconds = %d\n", __func__, + *seconds); + return 0; +} + +static int pcf85263_watchdog_get_current_time(struct i2c_client *client, + int *seconds) +{ + int err = 0; + unsigned char wdr_value, wds_value, value; + struct pcf85263 *pcf85263; + + pcf85263 = i2c_get_clientdata(client); + err = pcf85263_read_register(client, REGISTER_WATCHDOG, &value); + if (err) + return err; + wdr_value = (value & WDR) >> pcf85263_first_one_index(WDR); + wds_value = (value & WDS) >> pcf85263_first_one_index(WDS); + if (wds_value == WDS_4_SECONDS) + *seconds = wdr_value * 4; + else if (wds_value == WDS_1_SECOND) + *seconds = wdr_value; + else + err = -EILSEQ; + + return err; +} + +static int pcf85263_watchdog_ping(struct i2c_client *client) +{ + struct pcf85263 *pcf85263 = i2c_get_clientdata(client); + + return pcf85263_watchdog_set_time(client, + &pcf85263->watchdog_timeout); +} + +/* + * Watchdog subsystem + */ +static int pcf85263_watchdog_start_op(struct watchdog_device *device) +{ + int err; + struct i2c_client *client; + struct pcf85263 *pcf85263; + + client = watchdog_get_drvdata(device); + pcf85263 = i2c_get_clientdata(client); + + mutex_lock(&pcf85263->mutex); + err = + pcf85263_watchdog_set_time(client, + &pcf85263->watchdog_timeout); + if (err) + goto exit; + err = pcf85263_watchdog_enable(client, 1); +exit: + mutex_unlock(&pcf85263->mutex); + return err; +} + +static int pcf85263_watchdog_stop_op(struct watchdog_device *device) +{ + int err, seconds = 0; + struct i2c_client *client; + struct pcf85263 *pcf85263; + + client = watchdog_get_drvdata(device); + pcf85263 = i2c_get_clientdata(client); + + mutex_lock(&pcf85263->mutex); + err = pcf85263_watchdog_enable(client, 0); + if (err) + goto exit; + err = pcf85263_watchdog_set_time(client, &seconds); +exit: + mutex_unlock(&pcf85263->mutex); + return err; +} + +static int pcf85263_watchdog_ping_op(struct watchdog_device *device) +{ + int err; + struct i2c_client *client; + struct pcf85263 *pcf85263; + + client = watchdog_get_drvdata(device); + pcf85263 = i2c_get_clientdata(client); + mutex_lock(&pcf85263->mutex); + err = pcf85263_watchdog_ping(client); + mutex_unlock(&pcf85263->mutex); + return err; +} + +static int pcf85263_watchdog_set_timeout_op(struct watchdog_device *device, + unsigned int timeout) +{ + int seconds, err; + struct i2c_client *client; + struct pcf85263 *pcf85263; + + client = watchdog_get_drvdata(device); + pcf85263 = i2c_get_clientdata(client); + seconds = (int)timeout; + mutex_lock(&pcf85263->mutex); + err = pcf85263_watchdog_compute_seconds(&seconds, NULL, NULL); + if (!err) { + device->timeout = (unsigned int)seconds; + pcf85263->watchdog_timeout = seconds; + } + mutex_unlock(&pcf85263->mutex); + return 0; +} + +static unsigned int pcf85263_watchdog_get_timeleft_op(struct + watchdog_device + * device) +{ + int err, seconds = 0; + struct i2c_client *client; + struct pcf85263 *pcf85263; + + client = watchdog_get_drvdata(device); + pcf85263 = i2c_get_clientdata(client); + mutex_lock(&pcf85263->mutex); + err = pcf85263_watchdog_get_current_time(client, &seconds); + mutex_unlock(&pcf85263->mutex); + return (unsigned int)seconds; +} + +static struct watchdog_info pcf85263_watchdog_info = { + .options = + WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE, + .identity = "PCF85263 Watchdog", +}; + +static struct watchdog_ops pcf85263_watchdog_ops = { + .owner = THIS_MODULE, + .start = pcf85263_watchdog_start_op, + .stop = pcf85263_watchdog_stop_op, + .ping = pcf85263_watchdog_ping_op, + .set_timeout = pcf85263_watchdog_set_timeout_op, + .get_timeleft = pcf85263_watchdog_get_timeleft_op, +}; + +static struct watchdog_device pcf85263_watchdog_device = { + .info = &pcf85263_watchdog_info, + .ops = &pcf85263_watchdog_ops, + .timeout = WATCHDOG_TIMEOUT, + .min_timeout = 1, + .max_timeout = 124, +}; + +/******************************************************************************* + * Timestamps + */ +static int pcf85263_read_timestamp(struct device *dev, int tsr_number, + int *seconds, int *minutes, int *hours, + int *days, int *months, int *years) +{ + int err; + unsigned char tsr_register, values[6]; + struct i2c_client *client = to_i2c_client(dev); + + if (tsr_number < 1 || tsr_number > 3) + return -EINVAL; + if (tsr_number == 1) + tsr_register = REGISTER_TSR1_SECONDS; + else if (tsr_number == 2) + tsr_register = REGISTER_TSR2_SECONDS; + else + tsr_register = REGISTER_TSR3_SECONDS; + err = + pcf85263_read_registers(client, tsr_register, values, + sizeof(values)); + if (err) + return err; + *seconds = bcd2bin(values[0] & SECONDS_BITS); + *minutes = bcd2bin(values[1] & MINUTES_BITS); + *hours = bcd2bin(values[2] & HOURS_BITS); + *days = bcd2bin(values[3] & DAYS_BITS); + *months = bcd2bin(values[4] & MONTHS_BITS); + *years = bcd2bin(values[5] & YEARS_BITS) + 2000; + return 0; +} + +static ssize_t pcf85263_timestamp_show(struct device *dev, + struct device_attribute *attr, + char *buf, int tsr_number) +{ + int err, seconds = 0, minutes = 0, hours = 0, days = 0, months = 0, + years = 0; + struct i2c_client *client; + struct pcf85263 *pcf85263; + unsigned char value; + char *event_message; + char *no_timestamp_defined = "No timestamp defined"; + char *first_ts_event = "First TS event"; + char *last_ts_event = "Last TS event"; + char *first_switch_to_battery = "First switch to battery"; + char *last_switch_to_battery = "Last switch to battery"; + char *last_switch_to_vdd = "Last switch to Vdd"; + + client = to_i2c_client(dev); + pcf85263 = i2c_get_clientdata(client); + dev_dbg(&client->dev, "[%s] timestamp %d\n", __func__, tsr_number); + + mutex_lock(&pcf85263->mutex); + err = + pcf85263_read_timestamp(dev, tsr_number, &seconds, &minutes, + &hours, &days, &months, &years); + if (!err) + err = + pcf85263_read_register(client, REGISTER_TSR_MODE, + &value); + mutex_unlock(&pcf85263->mutex); + if (err) + return err; + if (tsr_number == 1) { + switch (value & TSR1M) { + case TSR1M_FIRST_TS_EVENT: + event_message = first_ts_event; + break; + case TSR1M_LAST_TS_EVENT: + event_message = last_ts_event; + break; + default: + event_message = no_timestamp_defined; + } + } else if (tsr_number == 2) { + switch (value & TSR2M) { + case TSR2M_FIRST_TS_EVENT: + event_message = first_ts_event; + break; + case TSR2M_LAST_TS_EVENT: + event_message = last_ts_event; + break; + case TSR2M_FIRST_SWITCH_TO_BATTERY: + event_message = first_switch_to_battery; + break; + case TSR2M_LAST_SWITCH_TO_BATTERY: + event_message = last_switch_to_battery; + break; + case TSR2M_LAST_SWITCH_TO_VDD: + event_message = last_switch_to_vdd; + break; + default: + event_message = no_timestamp_defined; + } + } else { + switch (value & TSR3M) { + case TSR3M_FIRST_SWITCH_TO_BATTERY: + event_message = first_switch_to_battery; + break; + case TSR3M_LAST_SWITCH_TO_BATTERY: + event_message = last_switch_to_battery; + break; + case TSR3M_LAST_SWITCH_TO_VDD: + event_message = last_switch_to_vdd; + break; + default: + event_message = no_timestamp_defined; + } + } + + if (days == 0) { + return sprintf(buf, + "yyyy/mm/dd hh:mm:ss Event\n----/--/-- --:--:-- %s\n", + event_message); + } else { + return sprintf(buf, + "yyyy/mm/dd hh:mm:ss Event\n%04d/%02d/%02d %02d:%02d:%02d %s\n", + years, months, days, hours, minutes, + seconds, event_message); + } +} + +//================================================================================================ +static ssize_t pcf85263_flags_show(struct device *dev, + struct device_attribute *attr, + char *buf) +{ + unsigned char value; + struct i2c_client *client; + + client = to_i2c_client(dev); + + if (pcf85263_read_register(client, REGISTER_FLAGS, &value) == 0) + return sprintf(buf, "%d\n", value); + + return -1; +} + +static ssize_t pcf85263_flags_store(struct device *dev, + struct device_attribute *attr, + const char *buf, size_t count) +{ + int n; + unsigned char value; + struct i2c_client *client; + struct pcf85263 *pcf85263; + + value = 0; + for (n = 0; n < count; n++) { + if ((*buf >= '0') && (*buf <= '9')) + value = (value * 10) + (*buf++ - '0'); + } + + client = to_i2c_client(dev); + pcf85263 = i2c_get_clientdata(client); + if (value != 0) { + mutex_lock(&pcf85263->mutex); + if (pcf85263_write_register(client, REGISTER_FLAGS, value ^ 0xff) == 0) { + mutex_unlock(&pcf85263->mutex); + return count; + } + mutex_unlock(&pcf85263->mutex); + } + return -1; +} + +static const struct device_attribute pcf85263_flags_attribute = { + .attr.name = "flags", + .attr.mode = 0600, + .show = pcf85263_flags_show, + .store = pcf85263_flags_store, +}; + +static ssize_t pcf85263_timestamp1_show(struct device *dev, + struct device_attribute *attr, + char *buf) +{ + return pcf85263_timestamp_show(dev, attr, buf, 1); +} + +static const struct device_attribute pcf85263_timestamp1_attribute = { + .attr.name = "timestamp1", + .attr.mode = 0400, + .show = pcf85263_timestamp1_show, +}; + +static ssize_t pcf85263_timestamp2_show(struct device *dev, + struct device_attribute *attr, + char *buf) +{ + return pcf85263_timestamp_show(dev, attr, buf, 2); +} + +static const struct device_attribute pcf85263_timestamp2_attribute = { + .attr.name = "timestamp2", + .attr.mode = 0400, + .show = pcf85263_timestamp2_show, +}; + +static ssize_t pcf85263_timestamp3_show(struct device *dev, + struct device_attribute *attr, + char *buf) +{ + return pcf85263_timestamp_show(dev, attr, buf, 3); +} + +static const struct device_attribute pcf85263_timestamp3_attribute = { + .attr.name = "timestamp3", + .attr.mode = 0400, + .show = pcf85263_timestamp3_show, + +}; + +/******************************************************************************* + * Resets + */ +static ssize_t pcf85263_resets_show(struct device *dev, + struct device_attribute *attr, + char *buf) +{ + return sprintf(buf, "software prescaler timestamps\n"); +} + +static ssize_t pcf85263_resets_store(struct device *dev, + struct device_attribute *attr, + const char *buf, size_t count) +{ + int err = 0; + struct i2c_client *client; + struct pcf85263 *pcf85263; + char buffer[11]; + size_t chars_count; + + client = to_i2c_client(dev); + pcf85263 = i2c_get_clientdata(client); + if (count < 8 || count > 11 || (count == 11 && buf[count - 1] != '\n')) + return -EINVAL; + + chars_count = count; + if (buf[count - 1] == '\n') + chars_count--; + memcpy(buffer, buf, chars_count); + buffer[chars_count] = '\0'; + mutex_lock(&pcf85263->mutex); + if (strcmp(buffer, "software") == 0) { + err = + pcf85263_write_register(client, REGISTER_RESETS, + SR_CMD); + } else if (strcmp(buffer, "prescaler") == 0) { + err = + pcf85263_write_register(client, REGISTER_RESETS, + CPR_CMD); + } else if (strcmp(buffer, "timestamps") == 0) { + err = + pcf85263_write_register(client, REGISTER_RESETS, + CTS_CMD); + } else { + err = -EINVAL; + } + mutex_unlock(&pcf85263->mutex); + if (err) + return err; + return count; +} + +static const struct device_attribute pcf85263_resets_attribute = { + .attr.name = "resets", + .attr.mode = S_IRUSR | S_IWUSR, + .show = pcf85263_resets_show, + .store = pcf85263_resets_store, +}; + +/******************************************************************************* + * RTC + */ +static int pcf85263_rtc_read_time(struct device *dev, struct rtc_time *tm) +{ + int err; + unsigned char data[8]; + struct i2c_client *client; + struct pcf85263 *pcf85263; + + client = to_i2c_client(dev); + pcf85263 = i2c_get_clientdata(client); + + mutex_lock(&pcf85263->mutex); + err = + pcf85263_read_registers(client, REGISTER_CENTS_OF_SECOND, data, + sizeof(data)); + mutex_unlock(&pcf85263->mutex); + if (err) + return err; + tm->tm_sec = bcd2bin(data[REGISTER_SECONDS] & SECONDS_BITS); + tm->tm_min = bcd2bin(data[REGISTER_MINUTES] & MINUTES_BITS); + tm->tm_hour = bcd2bin(data[REGISTER_HOURS] & HOURS_BITS); + tm->tm_mday = bcd2bin(data[REGISTER_DAYS] & DAYS_BITS); + tm->tm_mon = bcd2bin(data[REGISTER_MONTHS] & MONTHS_BITS) - 1; + tm->tm_year = bcd2bin(data[REGISTER_YEARS] & YEARS_BITS) + 100; + tm->tm_wday = bcd2bin(data[REGISTER_WEEKDAYS] & WEEKDAYS_BITS); + tm->tm_yday = rtc_year_days(tm->tm_mday, tm->tm_mon, tm->tm_year); + /* Daylight Saving Time */ + tm->tm_isdst = -1; + if (rtc_valid_tm(tm) < 0) + dev_err(dev, "retrieved date/time is not valid.\n"); + return 0; +} + +static int pcf85263_rtc_set_time(struct device *dev, struct rtc_time *tm) +{ + int err; + unsigned char data[11]; + struct i2c_client *client; + struct pcf85263 *pcf85263; + + client = to_i2c_client(dev); + pcf85263 = i2c_get_clientdata(client); + if (tm->tm_year < 100) + return -EINVAL; + data[0] = REGISTER_STOP_ENABLE; + data[1] = STOP_RTC_STOPPED; + data[2] = CPR_CMD; + data[3] = 0; // cents of second + data[4] = bin2bcd(tm->tm_sec); // this will clear OS bit as well, + // which makes the oscillator start + // if it was stopped + data[5] = bin2bcd(tm->tm_min); + data[6] = bin2bcd(tm->tm_hour); + data[7] = bin2bcd(tm->tm_mday); + data[8] = bin2bcd(tm->tm_wday); + data[9] = bin2bcd(tm->tm_mon + 1); + data[10] = bin2bcd(tm->tm_year - 100); + mutex_lock(&pcf85263->mutex); + err = i2c_master_send(client, data, sizeof(data)); + if (err != sizeof(data)) + err = -EIO; + else + err = + pcf85263_write_register(client, REGISTER_STOP_ENABLE, + STOP_RTC_RUN); + mutex_unlock(&pcf85263->mutex); + return err; +} + +/******************************************************************************* + * Alarm + */ + +static int pcf85263_rtc_alarm_irq_enable(struct device *dev, + unsigned int enabled) +{ + int err = 0; + unsigned char value; + struct i2c_client *client; + struct pcf85263 *pcf85263; + + client = to_i2c_client(dev); + pcf85263 = i2c_get_clientdata(client); + dev_dbg(&client->dev, "[%s] enabled = %u\n", __func__, enabled); + mutex_lock(&pcf85263->mutex); + if (pcf85263->interrupt_alarm != NO_INTERRUPT) { + /* enable/disable alarm1 */ + if (pcf85263_read_register + (client, REGISTER_ALARM_ENABLES, &value)) + goto exit; + if (enabled) + value = (value & ~(ALARM1_BITS)) | ALARM1_ENABLE; + else + value = (value & ~(ALARM1_BITS)) | ALARM1_DISABLE; + if (pcf85263_write_register + (client, REGISTER_ALARM_ENABLES, value)) + goto exit; + /* enabled/disable irq for alarm1 */ + if (pcf85263->interrupt_alarm == INTA) { + if (pcf85263_read_register + (client, REGISTER_INTA_ENABLE, &value)) + goto exit; + value &= ~A1IEA; + value |= (enabled ? A1IEA_ENABLE : A1IEA_DISABLE); + value &= ~ILPA; + value |= ILPA_PERMANENT_SIGNAL; + if (pcf85263_write_register + (client, REGISTER_INTA_ENABLE, value)) + goto exit; + } else { + if (pcf85263_read_register + (client, REGISTER_INTB_ENABLE, &value)) + goto exit; + value &= ~A1IEB; + value |= (enabled ? A1IEB_ENABLE : A1IEB_DISABLE); + value &= ~ILPB; + value |= ILPB_PERMANENT_SIGNAL; + if (pcf85263_write_register + (client, REGISTER_INTB_ENABLE, value)) + goto exit; + } + /* clean up interrupt flag when disabling */ + if (!enabled) { + if (pcf85263_read_register + (client, REGISTER_FLAGS, &value)) + goto exit; + value = + (value & ~(ALARM1_FLAG)) | ALARM1_FLAG_CLEAR; + if (pcf85263_write_register + (client, REGISTER_FLAGS, value)) + goto exit; + } + } +exit: + mutex_unlock(&pcf85263->mutex); + return err; +} + +static int pcf85263_rtc_read_alarm(struct device *dev, + struct rtc_wkalrm *alarm) +{ + int err; + unsigned char data[5]; + unsigned char value; + struct i2c_client *client; + struct pcf85263 *pcf85263; + + client = to_i2c_client(dev); + pcf85263 = i2c_get_clientdata(client); + mutex_lock(&pcf85263->mutex); + err = pcf85263_read_registers(client, REGISTER_SECOND_ALARM1, data, + sizeof(data)); + if (err) + goto exit; + alarm->time.tm_sec = bcd2bin(data[0] & SECONDS_BITS); + alarm->time.tm_min = bcd2bin(data[1] & MINUTES_BITS); + alarm->time.tm_hour = bcd2bin(data[2] & HOURS_BITS); + alarm->time.tm_mday = bcd2bin(data[3] & DAYS_BITS); + alarm->time.tm_mon = bcd2bin(data[4] & MONTHS_BITS) - 1; + err = + pcf85263_read_register(client, REGISTER_ALARM_ENABLES, &value); + if (err) + goto exit; + alarm->enabled = ((value & ALARM1_BITS) == ALARM1_ENABLE) ? + ALARM_ENABLED : ALARM_DISABLED; +exit: + mutex_unlock(&pcf85263->mutex); + return err; +} + +static int pcf85263_rtc_set_alarm(struct device *dev, + struct rtc_wkalrm *alarm) +{ + int err; + unsigned char data[6]; + unsigned char value; + struct i2c_client *client; + struct pcf85263 *pcf85263; + + client = to_i2c_client(dev); + pcf85263 = i2c_get_clientdata(client); + data[0] = REGISTER_SECOND_ALARM1; + data[1] = bin2bcd(alarm->time.tm_sec); + data[2] = bin2bcd(alarm->time.tm_min); + data[3] = bin2bcd(alarm->time.tm_hour); + data[4] = bin2bcd(alarm->time.tm_mday); + data[5] = bin2bcd(alarm->time.tm_mon + 1); + mutex_lock(&pcf85263->mutex); + err = i2c_master_send(client, data, sizeof(data)); + if (err != sizeof(data)) { + err = -EIO; + goto exit; + } + if (alarm->enabled) { + err = + pcf85263_write_register(client, REGISTER_ALARM_ENABLES, + ALARM1_ENABLE | + ALARM2_DISABLE); + } else { + err = + pcf85263_write_register(client, REGISTER_ALARM_ENABLES, + ALARM1_DISABLE | + ALARM2_DISABLE); + } + if (err) + goto exit; + + /* enabled/disable irq for alarm1 */ + if (pcf85263->interrupt_alarm == INTA) { + if (pcf85263_read_register + (client, REGISTER_INTA_ENABLE, &value)) + goto exit; + value &= ~A1IEA; + value |= (alarm->enabled ? A1IEA_ENABLE : A1IEA_DISABLE); + value &= ~ILPA; + value |= ILPA_PERMANENT_SIGNAL; + if (pcf85263_write_register + (client, REGISTER_INTA_ENABLE, value)) + goto exit; + } else if (pcf85263->interrupt_alarm == INTB) { + if (pcf85263_read_register + (client, REGISTER_INTB_ENABLE, &value)) + goto exit; + value &= ~A1IEB; + value |= (alarm->enabled ? A1IEB_ENABLE : A1IEB_DISABLE); + value &= ~ILPB; + value |= ILPB_PERMANENT_SIGNAL; + if (pcf85263_write_register + (client, REGISTER_INTB_ENABLE, value)) + goto exit; + } + /* clean up interrupt flag when disabling */ + if (!alarm->enabled) { + if (pcf85263_read_register(client, REGISTER_FLAGS, &value)) + goto exit; + value = (value & ~(ALARM1_FLAG)) | ALARM1_FLAG_CLEAR; + if (pcf85263_write_register(client, REGISTER_FLAGS, value)) + goto exit; + } + +exit: + mutex_unlock(&pcf85263->mutex); + return err; +} + +static int pcf85263_rtc_ioctl(struct device *dev, + unsigned int cmd, unsigned long arg) +{ + int ret; + struct i2c_client *client; + struct pcf85263 *pcf85263; + unsigned char user_value; + + client = to_i2c_client(dev); + pcf85263 = i2c_get_clientdata(client); + switch (cmd) { + case RTC_WAIT_FOR_INTERRUPTS: + if (copy_from_user + (&user_value, (unsigned char __user *)arg, + sizeof(unsigned char))) + return -EFAULT; + ret = wait_event_interruptible(pcf85263->event_queue, + ((user_value & + pcf85263->event_interrupt) + == user_value)); + if (ret) + return -ERESTARTSYS; + mutex_lock(&pcf85263->mutex); + pcf85263->event_interrupt &= ~user_value; + mutex_unlock(&pcf85263->mutex); + return 0; + case RTC_WAIT_FOR_ANY_INTERRUPT: + ret = wait_event_interruptible(pcf85263->event_queue, + (pcf85263->event_interrupt + != 0)); + if (ret) + return -ERESTARTSYS; + mutex_lock(&pcf85263->mutex); + user_value = pcf85263->event_interrupt; + pcf85263->event_interrupt = 0; + mutex_unlock(&pcf85263->mutex); + if (copy_to_user((unsigned char __user *)arg, &user_value, + sizeof(unsigned char))) + return -EFAULT; + return 0; + case RTC_CLEAR_INTERRUPT_FLAGS: + if (copy_from_user + (&user_value, (unsigned char __user *)arg, + sizeof(unsigned char))) + return -EFAULT; + mutex_lock(&pcf85263->mutex); + pcf85263->event_interrupt &= ~user_value; + mutex_unlock(&pcf85263->mutex); + return 0; + default: + return -ENOIOCTLCMD; + } +} + +static const struct rtc_class_ops pcf85263_rtc_ops = { + /* RTC callbacks */ + .set_time = pcf85263_rtc_set_time, + .read_time = pcf85263_rtc_read_time, + /* alarm callbacks */ + .set_alarm = pcf85263_rtc_set_alarm, + .read_alarm = pcf85263_rtc_read_alarm, + .alarm_irq_enable = pcf85263_rtc_alarm_irq_enable, + /* custom APIs */ + .ioctl = pcf85263_rtc_ioctl, +}; + +/******************************************************************************* + * RAM byte + */ +static ssize_t pcf85263_ram_byte_show(struct device *dev, + struct device_attribute *attr, + char *buf) +{ + int err; + unsigned char ram_byte; + struct i2c_client *client; + struct pcf85263 *pcf85263; + + client = to_i2c_client(dev); + pcf85263 = i2c_get_clientdata(client); + mutex_lock(&pcf85263->mutex); + err = pcf85263_read_register(client, REGISTER_RAM_BYTE, &ram_byte); + mutex_unlock(&pcf85263->mutex); + if (err) + return err; + return sprintf(buf, "%hhu\n", ram_byte); +} + +static ssize_t pcf85263_ram_byte_store(struct device *dev, + struct device_attribute *attr, + const char *buf, size_t count) +{ + int err; + unsigned char ram_byte; + struct i2c_client *client; + struct pcf85263 *pcf85263; + + client = to_i2c_client(dev); + pcf85263 = i2c_get_clientdata(client); + err = kstrtou8(buf, 10, &ram_byte); + if (err) + return err; + mutex_lock(&pcf85263->mutex); + err = pcf85263_write_register(client, REGISTER_RAM_BYTE, ram_byte); + mutex_unlock(&pcf85263->mutex); + if (err) + return err; + return count; +} + +static const struct device_attribute pcf85263_ram_byte_device_attribute = { + .attr.name = "ram_byte", + .attr.mode = S_IRUSR | S_IWUSR, + .show = pcf85263_ram_byte_show, + .store = pcf85263_ram_byte_store, +}; + +/******************************************************************************* + * REGISTERS utility + */ +static ssize_t pcf85263_registers_show(struct device *dev, + struct device_attribute *attr, + char *buf) +{ + int err; + unsigned char i, data[48]; + size_t printed_chars = 0; + struct i2c_client *client; + struct pcf85263 *pcf85263; + + client = to_i2c_client(dev); + pcf85263 = i2c_get_clientdata(client); + mutex_lock(&pcf85263->mutex); + err = pcf85263_read_registers(client, REGISTER_CENTS_OF_SECOND, + data, sizeof(data)); + mutex_unlock(&pcf85263->mutex); + if (err) + return err; + err = sprintf(buf, "Reg Val\n"); + if (err < 0) + return err; + printed_chars += err; + for (i = 0; i < sizeof(data); i++) { + err = + sprintf(&buf[printed_chars], "0x%02hhx 0x%02hhx\n", i, + data[i]); + if (err < 0) + return err; + printed_chars += err; + } + return printed_chars; +} + +static ssize_t pcf85263_registers_store(struct device *dev, + struct device_attribute *attr, + const char *buf, size_t count) +{ + int err; + unsigned char address, value; + char address_string[3], value_string[3]; + struct i2c_client *client; + struct pcf85263 *pcf85263; + + client = to_i2c_client(dev); + pcf85263 = i2c_get_clientdata(client); +#define is_hexadecimal(x) ((x >= '0' && x <= '9') || \ + (x >= 'a' && x <= 'f') || \ + (x >= 'A' && x <= 'F')) + if (count != 10) + return -EINVAL; + if (!(buf[0] == '0' && (buf[1] == 'x' || buf[1] == 'X') && + buf[5] == '0' && (buf[6] == 'x' || buf[6] == 'X') && + is_hexadecimal(buf[2]) && + is_hexadecimal(buf[3]) && + is_hexadecimal(buf[7]) && is_hexadecimal(buf[8]))) + return -EINVAL; + address_string[0] = buf[2]; + address_string[1] = buf[3]; + address_string[2] = '\0'; + value_string[0] = buf[7]; + value_string[1] = buf[8]; + value_string[2] = '\0'; + err = kstrtou8(address_string, 16, &address); + if (err) + return err; + err = kstrtou8(value_string, 16, &value); + if (err) + return err; + if (address > REGISTER_RESETS) + return -EINVAL; + mutex_lock(&pcf85263->mutex); + err = pcf85263_write_register(client, address, value); + mutex_unlock(&pcf85263->mutex); + if (err) + return err; + return count; +} + +static const struct device_attribute pcf85263_registers_device_attribute = { + .attr.name = "registers", + .attr.mode = S_IRUSR | S_IWUSR, + .show = pcf85263_registers_show, + .store = pcf85263_registers_store, +}; + +/******************************************************************************* + * HW initialization + */ +static int pcf85263_init(struct i2c_client *client) +{ + int err; + unsigned char value; + struct pcf85263 *pcf85263; + + pcf85263 = i2c_get_clientdata(client); + /* + * Start the OSC if required. This operation can tamper with time. + */ + err = pcf85263_read_register(client, REGISTER_SECONDS, &value); + if (err) + return err; + + // We should only write to this register if the OS bit is high otherwise we risk the + // SECONDS changing between the read and the write which will cause us to lose a second. + if (value & OS_SET) { + //If the OS bit is high, clear the bit to start the Oscillator + value &= ~OS; + + err = pcf85263_write_register(client, REGISTER_SECONDS, value); + if (err) + return err; + } + + /* + * Initializing function register + */ + err = pcf85263_read_register(client, REGISTER_FUNCTION, &value); + if (err) + return err; + /* We don't support stop-watch mode, setting RTC mode. */ + value &= ~RTCM; + value |= RTCM_RTC_MODE; + value &= ~COF; + value |= (unsigned char)pcf85263->clock_frequency; + err = pcf85263_write_register(client, REGISTER_FUNCTION, value); + if (err) + return err; + + /* + * We don't support 12 hour mode, setting 24 hour mode. + */ + err = pcf85263_read_register(client, REGISTER_OSCILLATOR, &value); + if (err) + return err; + value &= ~AMPM_12_24; + value |= AMPM_24_HOUR_MODE; + value &= ~XTAL_CAP_LOAD; + value |= XTAL_CAP_12_5_pf; //We use a 12.5pF load capacitance + err = pcf85263_write_register(client, REGISTER_OSCILLATOR, value); + if (err) + return err; + + /* + * Initializing battery switch register + */ + err = + pcf85263_read_register(client, REGISTER_BATTERY_SWITCH, + &value); + if (err) + return err; + value &= ~BSRR; + value |= BSRR_LOW; + value &= ~BSOFF; + if (pcf85263->battery_switch == BATTERY_SWITCH_OFF) { + value |= BSOFF_DISABLE; + } else { + value |= BSOFF_ENABLE; + value &= ~BSM; + if (pcf85263->battery_switch == BATTERY_SWITCH_VTH) + value |= BSM_VTH; + else if (pcf85263->battery_switch == BATTERY_SWITCH_VBAT) + value |= BSM_VBAT; + else if (pcf85263->battery_switch == BATTERY_SWITCH_HIGHER) + value |= BSM_HIGHER; + else + value |= BSM_LOWER; + value &= ~BSTH; + if (pcf85263->battery_vth == BATTERY_VTH_1_5) + value |= BSTH_1_5; + else + value |= BSTH_2_8; + } + err = pcf85263_write_register(client, REGISTER_BATTERY_SWITCH, value); + if (err) + return err; + + /* + * Timestamps initialization + */ + err = pcf85263_read_register(client, REGISTER_TSR_MODE, &value); + if (err) + return err; + value &= ~TSR1M; + value |= (unsigned char)pcf85263->timestamp1_mode; + value &= ~TSR2M; + value |= (unsigned char)pcf85263->timestamp2_mode; + value &= ~TSR3M; + value |= (unsigned char)pcf85263->timestamp3_mode; + err = pcf85263_write_register(client, REGISTER_TSR_MODE, value); + if (err) + return err; + + /* + * INTA enable register initialization + */ + err = pcf85263_read_register(client, REGISTER_INTA_ENABLE, &value); + if (err) + return err; + if (pcf85263->watchdog_disable_on_boot) { + dev_info(&client->dev, "disabling watchdog interrupt\n"); + value &= ~WDIEA; + value |= WDIEA_DISABLE; + } + value &= ~BSIEA; + if (pcf85263->interrupt_battery == INTA) + value |= BSIEA_ENABLE; + else + value |= BSIEA_DISABLE; + value &= ~TSRIEA; + if (pcf85263->interrupt_timestamp == INTA) + value |= TSRIEA_ENABLE; + else + value |= TSRIEA_DISABLE; + err = pcf85263_write_register(client, REGISTER_INTA_ENABLE, value); + if (err) + return err; + + /* + * INTB enable register initialization + */ + err = pcf85263_read_register(client, REGISTER_INTB_ENABLE, &value); + if (err) + return err; + if (pcf85263->watchdog_disable_on_boot) { + value &= ~WDIEB; + value |= WDIEB_DISABLE; + } + value &= ~BSIEB; + if (pcf85263->interrupt_battery == INTB) + value |= BSIEB_ENABLE; + else + value |= BSIEB_DISABLE; + value &= ~TSRIEB; + if (pcf85263->interrupt_timestamp == INTB) + value |= TSRIEB_ENABLE; + else + value |= TSRIEB_DISABLE; + err = pcf85263_write_register(client, REGISTER_INTB_ENABLE, value); + if (err) + return err; + + /* + * Watchdog register initialization + */ + err = pcf85263_read_register(client, REGISTER_WATCHDOG, &value); + if (err) + return err; + value &= ~WDM; + value |= WDM_SINGLE_SHOT; + err = pcf85263_write_register(client, REGISTER_WATCHDOG, value); + if (err) + return err; + + /* + * Initializing Pin I/O + */ + err = pcf85263_read_register(client, REGISTER_PIN_IO, &value); + if (err) + return err; + /* CLKPM */ + value &= ~CLKPM; + value |= (unsigned char)pcf85263->clk_pin; + /* TSPULL */ + value &= ~TSPULL; + value |= (unsigned char)pcf85263->ts_pin_pull; + /* TSL */ + value &= ~TSL; + value |= (unsigned char)pcf85263->ts_pin_level; + /* TSIM */ + value &= ~TSIM; + value |= (unsigned char)pcf85263->ts_pin_input_type; + /* TSPM */ + value &= ~TSPM; + value |= (unsigned char)pcf85263->ts_pin; + /* INTAPM */ + value &= ~INTAPM; + value |= (unsigned char)pcf85263->inta_pin; + err = pcf85263_write_register(client, REGISTER_PIN_IO, value); + if (err) + return err; + +// Clear interrupt flags, but leave the time stamp flags + err = pcf85263_write_register(client, REGISTER_FLAGS, 0x07); + + return err; +} + +static void pcf85263_unload(struct i2c_client *client) +{ + struct pcf85263 *pcf85263; + int err; + + pcf85263 = i2c_get_clientdata(client); + if (pcf85263->ram_byte_file_created) { + sysfs_remove_file(&client->dev.kobj, + &pcf85263_ram_byte_device_attribute.attr); + } + + if (pcf85263->flags_file_created) { + sysfs_remove_file(&client->dev.kobj, + &pcf85263_flags_attribute.attr); + } + + if (pcf85263->registers_file_created) { + sysfs_remove_file(&client->dev.kobj, + &pcf85263_registers_device_attribute.attr); + } + if (pcf85263->timestamp1_file_created) { + sysfs_remove_file(&client->dev.kobj, + &pcf85263_timestamp1_attribute.attr); + pcf85263->timestamp1_file_created = 0; + } + if (pcf85263->timestamp2_file_created) { + sysfs_remove_file(&client->dev.kobj, + &pcf85263_timestamp2_attribute.attr); + pcf85263->timestamp2_file_created = 0; + } + if (pcf85263->timestamp3_file_created) { + sysfs_remove_file(&client->dev.kobj, + &pcf85263_timestamp3_attribute.attr); + pcf85263->timestamp3_file_created = 0; + } + if (pcf85263->resets_file_created) { + sysfs_remove_file(&client->dev.kobj, + &pcf85263_resets_attribute.attr); + pcf85263->resets_file_created = 0; + } + if (wdten == 1) { + dev_dbg(&client->dev, "[%s] watchdog unregister\n", + __func__); + watchdog_unregister_device(&pcf85263_watchdog_device); + } + dev_dbg(&client->dev, "[%s] pinctrl sleep state\n", __func__); + pinctrl_pm_select_sleep_state(&client->dev); + dev_dbg(&client->dev, "[%s] devm_kfree\n", __func__); + err = device_init_wakeup(&client->dev, false); + if (err) + dev_err(&client->dev, "dev_init_wakeup [%d] FAIL\n", err); + devm_kfree(&client->dev, pcf85263); +} + +/* + * Driver hooks + */ +static int pcf85263_probe(struct i2c_client *client, + const struct i2c_device_id *id) +{ + int err; + struct pcf85263 *pcf85263; + + if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) + return -ENODEV; + + pcf85263 = + devm_kzalloc(&client->dev, sizeof(struct pcf85263), + GFP_KERNEL); + if (!pcf85263) { + dev_dbg(&client->dev, + "[%s] Impossible to allocate memory\n", __func__); + return -ENOMEM; + } + pcf85263->ram_byte_file_created = 0; + pcf85263->registers_file_created = 0; + pcf85263->timestamp1_file_created = 0; + pcf85263->timestamp2_file_created = 0; + pcf85263->timestamp3_file_created = 0; + pcf85263->resets_file_created = 0; + pcf85263->inta_irq = -1; + pcf85263->intb_irq = -1; + pcf85263->battery_switch = BATTERY_SWITCH_OFF; + pcf85263->battery_vth = BATTERY_VTH_1_5; + init_waitqueue_head(&pcf85263->event_queue); + if (timeout < 1 || timeout > 124) { + dev_dbg(&client->dev, + "[%s] timeout (= %d) out of bounds ([1,124])\n", + __func__, timeout); + timeout = WATCHDOG_TIMEOUT; + } + pcf85263->watchdog_timeout = timeout; + mutex_init(&pcf85263->mutex); + + dev_info(&client->dev, + "chip found, driver version " DRIVER_VERSION "\n"); + + i2c_set_clientdata(client, pcf85263); + pcf85263->client = client; + pcf85263->rtc = devm_rtc_device_register(&client->dev, + pcf85263_driver.driver.name, + &pcf85263_rtc_ops, + THIS_MODULE); + err = PTR_ERR_OR_ZERO(pcf85263->rtc); + if (err) { + dev_err(&client->dev, "unable to register RTC device\n"); + goto exit; + } + + pcf85263->rtc->uie_unsupported = 1; + /* RAM byte initialization */ + err = sysfs_create_file(&client->dev.kobj, + &pcf85263_ram_byte_device_attribute.attr); + if (err) { + dev_err(&client->dev, + "unable to create sysfs file \"%s\"\n", + pcf85263_ram_byte_device_attribute.attr.name); + goto exit; + } + pcf85263->ram_byte_file_created = 1; + + /* Registers debug initialization */ + err = sysfs_create_file(&client->dev.kobj, + &pcf85263_registers_device_attribute.attr); + if (err) { + dev_err(&client->dev, + "unable to create sysfs file \"%s\"\n", + pcf85263_registers_device_attribute.attr.name); + goto exit; + } + pcf85263->registers_file_created = 1; + + /* flags initialization */ + err = + sysfs_create_file(&client->dev.kobj, + &pcf85263_flags_attribute.attr); + if (err) { + dev_err(&client->dev, + "unable to create sysfs file \"%s\"\n", + pcf85263_flags_attribute.attr.name); + goto exit; + } + pcf85263->flags_file_created = 1; + + /* Timestamp 1 initialization */ + err = sysfs_create_file(&client->dev.kobj, + &pcf85263_timestamp1_attribute.attr); + if (err) { + dev_err(&client->dev, + "unable to create sysfs file \"%s\"\n", + pcf85263_timestamp1_attribute.attr.name); + goto exit; + } + pcf85263->timestamp1_file_created = 1; + + /* Timestamp 2 initialization */ + err = sysfs_create_file(&client->dev.kobj, + &pcf85263_timestamp2_attribute.attr); + if (err) { + dev_err(&client->dev, + "unable to create sysfs file \"%s\"\n", + pcf85263_timestamp2_attribute.attr.name); + goto exit; + } + pcf85263->timestamp2_file_created = 1; + + /* Timestamp 3 initialization */ + err = sysfs_create_file(&client->dev.kobj, + &pcf85263_timestamp3_attribute.attr); + if (err) { + dev_err(&client->dev, + "unable to create sysfs file \"%s\"\n", + pcf85263_timestamp3_attribute.attr.name); + goto exit; + } + pcf85263->timestamp3_file_created = 1; + + /* Create resets file */ + err = sysfs_create_file(&client->dev.kobj, + &pcf85263_resets_attribute.attr); + if (err) { + dev_err(&client->dev, + "unable to create sysfs file \"%s\"\n", + pcf85263_resets_attribute.attr.name); + } + pcf85263->resets_file_created = 1; + + /* Battery switch specific device tree properties */ + pcf85263->battery_switch = BATTERY_SWITCH_VTH; + if (vth == 0) + pcf85263->battery_vth = BATTERY_VTH_1_5; + else + pcf85263->battery_vth = BATTERY_VTH_2_8; + /* Battery switch interrupt initialization */ + + pcf85263->interrupt_battery = INTA; + if (strcmp(int_batt, "INTA")) + pcf85263->interrupt_battery = INTA; + else if (strcmp(int_batt, "INTB")) + pcf85263->interrupt_battery = INTB; + else if (strcmp(int_batt, "NO_INTERRUPT")) + pcf85263->interrupt_battery = NO_INTERRUPT; + + /* Timestamps specific device tree properties setup */ + pcf85263->timestamp1_mode = TSR1M_LAST_TS_EVENT; + pcf85263->timestamp2_mode = TSR2M_LAST_SWITCH_TO_BATTERY; + pcf85263->timestamp3_mode = TSR3M_LAST_SWITCH_TO_VDD; + pcf85263->interrupt_timestamp = INTB; + if (strcmp(int_tst, "INTA")) + pcf85263->interrupt_timestamp = INTA; + else if (strcmp(int_tst, "INTB")) + pcf85263->interrupt_timestamp = INTB; + else if (strcmp(int_tst, "NO_INTERRUPT")) + pcf85263->interrupt_timestamp = NO_INTERRUPT; + + pcf85263->interrupt_watchdog = NO_INTERRUPT; + if (strcmp(int_wdt, "INTA")) + pcf85263->interrupt_watchdog = INTA; + else if (strcmp(int_wdt, "INTB")) + pcf85263->interrupt_watchdog = INTB; + else if (strcmp(int_wdt, "NO_INTERRUPT")) + pcf85263->interrupt_watchdog = NO_INTERRUPT; + + /* INTA pin configuration */ + + pcf85263->inta_pin = INTAPM_INTA; + if (strcmp(intapm_conf, "INTAPM_CLK_OUTPUT")) + pcf85263->inta_pin = INTA; + else if (strcmp(intapm_conf, "INTAPM_BATTERY_MODE_INDICATION")) + pcf85263->inta_pin = INTB; + else if (strcmp(intapm_conf, "INTAPM_INTA")) + pcf85263->inta_pin = INTAPM_INTA; + else if (strcmp(intapm_conf, "INTAPM_HIGH_IMPEDANCE")) + pcf85263->inta_pin = INTAPM_HIGH_IMPEDANCE; + + pcf85263->ts_pin = TSPM_DISABLED; + if (strcmp(tspm, "TSPM_DISABLED") == 0) + pcf85263->ts_pin = TSPM_DISABLED; + else if (strcmp(tspm, "TSPM_INT") == 0) + pcf85263->ts_pin = TSPM_INTB; + else if (strcmp(tspm, "TSPM_CLK_OUTPUT") == 0) + pcf85263->ts_pin = TSPM_CLK_OUTPUT; + else if (strcmp(tspm, "TSPM_INPUT_MODE") == 0) + pcf85263->ts_pin = TSPM_INPUT_MODE; + + pcf85263->clock_frequency = COF_32768; + pcf85263->clk_pin = CLKPM_ENABLE; + + /* TS pin configuration */ + pcf85263->ts_pin_pull = TSPULL_80_K_OHM; + + if (tsl == 0) + pcf85263->ts_pin_level = TSL_ACTIVE_LOW; + else + pcf85263->ts_pin_level = TSL_ACTIVE_HIGH; + + pcf85263->ts_pin_input_type = TSIM_MECHANICAL_SWITCH_MODE; + /* Watchdog specific device tree properties setup */ + pcf85263->watchdog_disable_on_boot = 0; + /* Init the chip with the desired configuration */ + err = pcf85263_init(client); + if (err) { + dev_err(&client->dev, "unable to init RTC device\n"); + goto exit; + } + + if (pinctrl_pm_select_default_state(&client->dev)) + goto exit; + + if (wakeen == 1) { + err = device_init_wakeup(&client->dev, true); + if (err) + dev_err(&client->dev, + "dev_init_wakeup [%d] FAIL\n", err); + } + + if (wdten == 1) { + watchdog_set_drvdata(&pcf85263_watchdog_device, client); + watchdog_init_timeout(&pcf85263_watchdog_device, + pcf85263->watchdog_timeout, NULL); + watchdog_set_nowayout(&pcf85263_watchdog_device, nowayout); + err = watchdog_register_device(&pcf85263_watchdog_device); + if (err) + goto exit; + dev_info(&client->dev, "registered %s as watchdog%d\n", + pcf85263_driver.driver.name, + pcf85263_watchdog_device.id); + } + dev_info(&client->dev, "probe_end, init OK\n"); + return 0; +exit: + pcf85263_unload(client); + return err; +} + +static int pcf85263_remove(struct i2c_client *client) +{ + pcf85263_unload(client); + return 0; +} + +static const struct i2c_device_id pcf85263_id[] = { + {"pcf85263", 0}, + {} +}; + +MODULE_DEVICE_TABLE(i2c, pcf85263_id); + +static struct of_device_id pcf85263_of_match[] = { + {.compatible = "nxp,pcf85263"}, + {} +}; + +MODULE_DEVICE_TABLE(of, pcf85263_of_match); + +#ifdef CONFIG_PM_SLEEP +static int pcf85263_suspend(struct device *dev) +{ + struct i2c_client *client = to_i2c_client(dev); + struct pcf85263 *pcf85263; + + pcf85263 = i2c_get_clientdata(client); + + if (pcf85263->inta_irq >= 0 && device_may_wakeup(&client->dev)) + enable_irq_wake(pcf85263->inta_irq); + + return 0; +} + +static int pcf85263_resume(struct device *dev) +{ + struct i2c_client *client = to_i2c_client(dev); + struct pcf85263 *pcf85263; + void __iomem *reg0 = ioremap(GPIO0_IRQSTATUS_0_ADDR, 4); + void __iomem *reg1 = ioremap(GPIO0_IRQSTATUS_1_ADDR, 4); + + pcf85263 = i2c_get_clientdata(client); + + if (pcf85263->inta_irq >= 0 && device_may_wakeup(&client->dev)) { + disable_irq_wake(pcf85263->inta_irq); + writel(GPIO0_19_SET_BIT_ACK, reg0); + writel(GPIO0_19_SET_BIT_ACK, reg1); + } + return 0; +} +#endif + +static SIMPLE_DEV_PM_OPS(pcf85263_pm, pcf85263_suspend, pcf85263_resume); + +static struct i2c_driver pcf85263_driver = { + .driver = { + .name = "rtc-pcf85263", + .owner = THIS_MODULE, + .pm = &pcf85263_pm, + .of_match_table = of_match_ptr(pcf85263_of_match), + }, + .probe = pcf85263_probe, + .remove = pcf85263_remove, + .id_table = pcf85263_id, +}; + +module_i2c_driver(pcf85263_driver); + +MODULE_AUTHOR("Fabrizio Castro "); +MODULE_DESCRIPTION("NXP PCF85263 driver"); +MODULE_LICENSE("GPL"); +MODULE_VERSION(DRIVER_VERSION); diff --git a/drivers/rtc/rtc-pcf85263.h b/drivers/rtc/rtc-pcf85263.h new file mode 100644 index 0000000000000..59375c2633069 --- /dev/null +++ b/drivers/rtc/rtc-pcf85263.h @@ -0,0 +1,387 @@ +/* SPDX-License-Identifier: GPL-2.0 + * NXP PCF85263 RTC driver + * Copyright (C) 2015 Eurotech Ltd Fabrizio Castro + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; If not, see + */ + +#ifndef __RTC_PCF85263_H__ +#define __RTC_PCF85263_H__ + +#define DRIVER_VERSION "0.1" + +#define BIT0 0x01 +#define BIT1 0x02 +#define BIT2 0x04 +#define BIT3 0x08 +#define BIT4 0x10 +#define BIT5 0x20 +#define BIT6 0x40 +#define BIT7 0x80 + +/* + * RTC mode time registers + * RTCM = 0 + */ + +// RTC time and date registers +#define REGISTER_CENTS_OF_SECOND 0x00 +#define CENTS_OF_SECONDS_BITS 0xFF + +#define REGISTER_SECONDS 0x01 +#define SECONDS_BITS 0x7F +#define OS BIT7 +#define OS_SET BIT7 +#define OS_CLEAR 0x00 + +#define REGISTER_MINUTES 0x02 +#define MINUTES_BITS 0x7F +#define EMON BIT7 + +#define REGISTER_HOURS 0x03 +#define HOURS_BITS 0x3F + +#define REGISTER_DAYS 0x04 +#define DAYS_BITS 0x3F + +#define REGISTER_WEEKDAYS 0x05 +#define WEEKDAYS_BITS 0x03 + +#define REGISTER_MONTHS 0x06 +#define MONTHS_BITS 0x1F + +#define REGISTER_YEARS 0x07 +#define YEARS_BITS 0xFF + +// RTC alarm1 +#define REGISTER_SECOND_ALARM1 0x08 + +#define REGISTER_MINUTE_ALARM1 0x09 + +#define REGISTER_HOUR_ALARM1 0x0A + +#define REGISTER_DAY_ALARM1 0x0B + +#define REGISTER_MONTH_ALARM1 0x0C + +// RTC alarm2 +#define REGISTER_MINUTE_ALARM2 0x0D + +#define REGISTER_HOUR_ALARM2 0x0E + +#define REGISTER_WEEKDAY_ALARM2 0x0F + +// RTC alarm enables +#define REGISTER_ALARM_ENABLES 0x10 +#define WDAY_A2E BIT7 +#define WDAY_A2E_ENABLE BIT7 +#define WDAY_A2E_DISABLE 0x00 +#define HR_A2E BIT6 +#define HR_A2E_ENABLE BIT6 +#define HR_A2E_DISABLE 0x00 +#define MIN_A2E BIT5 +#define MIN_A2E_ENABLE BIT5 +#define MIN_A2E_DISABLE 0x00 +#define MON_A1E BIT4 +#define MON_A1E_ENABLE BIT4 +#define MON_A1E_DISABLE 0x00 +#define DAY_A1E BIT3 +#define DAY_A1E_ENABLE BIT3 +#define DAY_A1E_DISABLE 0x00 +#define HR_A1E BIT2 +#define HR_A1E_ENABLE BIT2 +#define HR_A1E_DISABLE 0x00 +#define MIN_A1E BIT1 +#define MIN_A1E_ENABLE BIT1 +#define MIN_A1E_DISABLE 0x00 +#define SEC_A1E BIT0 +#define SEC_A1E_ENABLE BIT0 +#define SEC_A1E_DISABLE 0x00 +#define ALARM1_BITS (MON_A1E | \ + DAY_A1E | \ + HR_A1E | \ + MIN_A1E | \ + SEC_A1E) +#define ALARM1_ENABLE (MON_A1E_ENABLE | \ + DAY_A1E_ENABLE | \ + HR_A1E_ENABLE | \ + MIN_A1E_ENABLE | \ + SEC_A1E_ENABLE) +#define ALARM1_DISABLE (MON_A1E_DISABLE | \ + DAY_A1E_DISABLE | \ + HR_A1E_DISABLE | \ + MIN_A1E_DISABLE | \ + SEC_A1E_DISABLE) +#define ALARM2_ENABLE (WDAY_A2E_ENABLE | \ + HR_A2E_ENABLE | \ + MIN_A2E_ENABLE) +#define ALARM2_DISABLE (WDAY_A2E_DISABLE | \ + HR_A2E_DISABLE | \ + MIN_A2E_DISABLE) + +// RTC timestamp1 (TSR1) +#define REGISTER_TSR1_SECONDS 0x11 + +#define REGISTER_TSR1_MINUTES 0x12 + +#define REGISTER_TSR1_HOURS 0x13 + +#define REGISTER_TSR1_DAYS 0x14 + +#define REGISTER_TSR1_MONTHS 0x15 + +#define REGISTER_TSR1_YEARS 0x16 + +// RTC timestamp2 (TSR2) +#define REGISTER_TSR2_SECONDS 0x17 + +#define REGISTER_TSR2_MINUTES 0x18 + +#define REGISTER_TSR2_HOURS 0x19 + +#define REGISTER_TSR2_DAYS 0x1A + +#define REGISTER_TSR2_MONTHS 0x1B + +#define REGISTER_TSR2_YEARS 0x1C + +// RTC timestamp3 (TSR3) +#define REGISTER_TSR3_SECONDS 0x1D + +#define REGISTER_TSR3_MINUTES 0x1E + +#define REGISTER_TSR3_HOURS 0x1F + +#define REGISTER_TSR3_DAYS 0x20 + +#define REGISTER_TSR3_MONTHS 0x21 + +#define REGISTER_TSR3_YEARS 0x22 + +// RTC timestamp mode control +#define REGISTER_TSR_MODE 0x23 +#define TSR1M (BIT1 | BIT0) +#define TSR1M_NO_TIMESTAMP 0x00 +#define TSR1M_FIRST_TS_EVENT BIT0 +#define TSR1M_LAST_TS_EVENT BIT1 +#define TSR2M (BIT4 | BIT3 | BIT2) +#define TSR2M_NO_TIMESTAMP 0x00 +#define TSR2M_FIRST_SWITCH_TO_BATTERY BIT2 +#define TSR2M_LAST_SWITCH_TO_BATTERY BIT3 +#define TSR2M_LAST_SWITCH_TO_VDD (BIT3 | BIT2) +#define TSR2M_FIRST_TS_EVENT BIT4 +#define TSR2M_LAST_TS_EVENT (BIT4 | BIT2) +#define TSR3M (BIT7 | BIT6) +#define TSR3M_NO_TIMESTAMP 0x00 +#define TSR3M_FIRST_SWITCH_TO_BATTERY BIT6 +#define TSR3M_LAST_SWITCH_TO_BATTERY BIT7 +#define TSR3M_LAST_SWITCH_TO_VDD (BIT7 | BIT6) + +/* + * Control and function registers overview + */ + +// Offset register +#define REGISTER_OFFSET 0x24 + +// Control registers +#define REGISTER_OSCILLATOR 0x25 +#define AMPM_12_24 BIT5 +#define AMPM_12_HOUR_MODE BIT5 +#define AMPM_24_HOUR_MODE 0x00 +#define XTAL_CAP_LOAD 0x03 //BIT0 & BIT1 +#define XTAL_CAP_7_0pf 0x00 +#define XTAL_CAP_6_0pf 0x01 +#define XTAL_CAP_12_5pf 0x02 +#define XTAL_CAP_12_5_pf 0x03 //Datasheet says 12.5pF for both 0x02 & 0x03 + +#define REGISTER_BATTERY_SWITCH 0x26 +#define BSOFF BIT4 +#define BSOFF_ENABLE 0X00 +#define BSOFF_DISABLE BIT4 +#define BSRR BIT3 +#define BSRR_LOW 0x00 +#define BSRR_HIGH BIT3 +#define BSM (BIT2 | BIT1) +#define BSM_VTH 0X00 +#define BSM_VBAT BIT1 +#define BSM_HIGHER BIT2 +#define BSM_LOWER (BIT2 | BIT1) +#define BSTH BIT0 +#define BSTH_1_5 0x00 +#define BSTH_2_8 BIT0 + +#define BATTERY_SWITCH_OFF 0 +#define BATTERY_SWITCH_VTH 1 +#define BATTERY_SWITCH_VBAT 2 +#define BATTERY_SWITCH_HIGHER 3 +#define BATTERY_SWITCH_LOWER 4 + +#define BATTERY_VTH_1_5 0 +#define BATTERY_VTH_2_8 1 + +#define REGISTER_PIN_IO 0x27 +#define CLKPM BIT7 +#define CLKPM_ENABLE 0x00 +#define CLKPM_DISABLE BIT7 +#define TSPULL BIT6 +#define TSPULL_80_K_OHM 0x00 +#define TSPULL_40_K_OHM BIT6 +#define TSL BIT5 +#define TSL_ACTIVE_HIGH 0x00 +#define TSL_ACTIVE_LOW BIT5 +#define TSIM BIT4 +#define TSIM_CMOS_INPUT 0x00 +#define TSIM_MECHANICAL_SWITCH_MODE BIT4 +#define TSPM (BIT3 | BIT2) +#define TSPM_DISABLED 0x00 +#define TSPM_INTB BIT2 +#define TSPM_CLK_OUTPUT BIT3 +#define TSPM_INPUT_MODE (BIT3 | BIT2) +#define INTAPM (BIT1 | BIT0) +#define INTAPM_CLK_OUTPUT 0x00 +#define INTAPM_BATTERY_MODE_INDICATION BIT0 +#define INTAPM_INTA BIT1 +#define INTAPM_HIGH_IMPEDANCE (BIT1 | BIT0) + +#define REGISTER_FUNCTION 0x28 +#define RTCM BIT4 +#define RTCM_RTC_MODE 0x00 +#define RTCM_STOP_WATCH_MODE BIT4 +#define COF (BIT2 | BIT1 | BIT0) +#define COF_32768 0x00 +#define COF_16384 BIT0 +#define COF_8192 BIT1 +#define COF_4096 (BIT1 | BIT0) +#define COF_2048 BIT2 +#define COF_1024 (BIT2 | BIT0) +#define COF_1 (BIT2 | BIT1) +#define COF_LOW (BIT2 | BIT1 | BIT0) + +#define REGISTER_INTA_ENABLE 0x29 +#define ILPA BIT7 +#define ILPA_PULSE_SIGNAL 0x00 +#define ILPA_PERMANENT_SIGNAL BIT7 +#define PIEA BIT6 +#define PIEA_ENABLE BIT6 +#define PIEA_DISABLE 0x00 +#define OIEA BIT5 +#define OIEA_ENABLE BIT5 +#define OIEA_DISABLE 0x00 +#define A1IEA BIT4 +#define A1IEA_ENABLE BIT4 +#define A1IEA_DISABLE 0x00 +#define A2IEA BIT3 +#define A2IEA_ENABLE BIT3 +#define A2IEA_DISABLE 0x00 +#define TSRIEA BIT2 +#define TSRIEA_ENABLE BIT2 +#define TSRIEA_DISABLE 0x00 +#define BSIEA BIT1 +#define BSIEA_ENABLE BIT1 +#define BSIEA_DISABLE 0x00 +#define WDIEA BIT0 +#define WDIEA_ENABLE BIT0 +#define WDIEA_DISABLE 0x00 + +#define REGISTER_INTB_ENABLE 0x2A +#define ILPB BIT7 +#define ILPB_PULSE_SIGNAL 0x00 +#define ILPB_PERMANENT_SIGNAL BIT7 +#define PIEB BIT6 +#define PIEB_ENABLE BIT6 +#define PIEB_DISABLE 0x00 +#define OIEB BIT5 +#define OIEB_ENABLE BIT5 +#define OIEB_DISABLE 0x00 +#define A1IEB BIT4 +#define A1IEB_ENABLE BIT4 +#define A1IEB_DISABLE 0x00 +#define A2IEB BIT3 +#define A2IEB_ENABLE BIT3 +#define A2IEB_DISABLE 0x00 +#define TSRIEB BIT2 +#define TSRIEB_ENABLE BIT2 +#define TSRIEB_DISABLE 0x00 +#define BSIEB BIT1 +#define BSIEB_ENABLE BIT1 +#define BSIEB_DISABLE 0x00 +#define WDIEB BIT0 +#define WDIEB_ENABLE BIT0 +#define WDIEB_DISABLE 0x00 + +#define REGISTER_FLAGS 0x2B +#define PERIODIC_INTERRUPT_FLAG BIT7 +#define PERIODIC_INTERRUPT_FLAG_ACTIVE BIT7 +#define PERIODIC_INTERRUPT_FLAG_CLEAR 0x00 +#define ALARM2_FLAG BIT6 +#define ALARM2_FLAG_ACTIVE BIT6 +#define ALARM2_FLAG_CLEAR 0x00 +#define ALARM1_FLAG BIT5 +#define ALARM1_FLAG_ACTIVE BIT5 +#define ALARM1_FLAG_CLEAR 0x00 +#define WATCHDOG_FLAG BIT4 +#define WATCHDOG_FLAG_ACTIVE BIT4 +#define WATCHDOG_FLAG_CLEAR 0x00 +#define BATTERY_SWITCH_FLAG BIT3 +#define BATTERY_SWITCH_FLAG_ACTIVE BIT3 +#define BATTERY_SWITCH_FLAG_CLEAR 0x00 +#define TIMESTAMP_3_FLAG BIT2 +#define TIMESTAMP_3_FLAG_ACTIVE BIT2 +#define TIMESTAMP_3_FLAG_CLEAR 0x00 +#define TIMESTAMP_2_FLAG BIT1 +#define TIMESTAMP_2_FLAG_ACTIVE BIT1 +#define TIMESTAMP_2_FLAG_CLEAR 0x00 +#define TIMESTAMP_1_FLAG BIT0 +#define TIMESTAMP_1_FLAG_ACTIVE BIT0 +#define TIMESTAMP_1_FLAG_CLEAR 0x00 + +// RAM byte +#define REGISTER_RAM_BYTE 0x2C + +// WatchDog registers +#define REGISTER_WATCHDOG 0x2D +#define WDM BIT7 +#define WDM_SINGLE_SHOT 0x00 +#define WDM_REPEAT_MODE BIT7 +#define WDR (BIT6 | BIT5 | BIT4 | BIT3 | BIT2) +#define WDS (BIT1 | BIT0) +#define WDS_4_SECONDS 0x00 +#define WDS_1_SECOND BIT0 +#define WDS_1_OVER_4_SECOND BIT1 +#define WDS_1_OVER_16_SECOND (BIT1 | BIT0) + +// Stop +#define REGISTER_STOP_ENABLE 0x2E +#define STOP BIT0 +#define STOP_RTC_RUN 0x00 +#define STOP_RTC_STOPPED BIT0 + +// Reset +#define REGISTER_RESETS 0x2F +#define SR_CMD 0x2C /* Software Reset, it also triggers CPR and CTS */ +#define CPR_CMD 0xA4 /* Clear PRescaler */ +#define CTS_CMD 0x25 /* Clear TimeStamps */ +#define CPR_CTS_CMD 0xA5 /* Combines CPR and CTS commands */ + +#define ALARM_ENABLED 1 +#define ALARM_DISABLED 0 +#define ALARM_PENDING 1 +#define ALARM_NOT_PENDING 0 + +#define NO_INTERRUPT -1 +#define INTA 0 +#define INTB 1 + +#endif /* __RTC_PCF85263_H__ */ diff --git a/drivers/rtc/rtc-pcf85363.c b/drivers/rtc/rtc-pcf85363.c index bb3e9ba75f6c6..80e3839e1e86a 100644 --- a/drivers/rtc/rtc-pcf85363.c +++ b/drivers/rtc/rtc-pcf85363.c @@ -403,7 +403,7 @@ static int pcf85363_probe(struct i2c_client *client, if (client->irq > 0) { regmap_write(pcf85363->regmap, CTRL_FLAGS, 0); regmap_update_bits(pcf85363->regmap, CTRL_PIN_IO, - PIN_IO_INTA_OUT, PIN_IO_INTAPM); + PIN_IO_INTAPM, PIN_IO_INTA_OUT); ret = devm_request_threaded_irq(&client->dev, client->irq, NULL, pcf85363_rtc_handle_irq, IRQF_TRIGGER_LOW | IRQF_ONESHOT, diff --git a/drivers/s390/block/dasd.c b/drivers/s390/block/dasd.c index ed897dc499ff6..dc73b20e7424f 100644 --- a/drivers/s390/block/dasd.c +++ b/drivers/s390/block/dasd.c @@ -697,18 +697,20 @@ static void dasd_profile_start(struct dasd_block *block, * we count each request only once. */ device = cqr->startdev; - if (device->profile.data) { - counter = 1; /* request is not yet queued on the start device */ - list_for_each(l, &device->ccw_queue) - if (++counter >= 31) - break; - } + if (!device->profile.data) + return; + + spin_lock(get_ccwdev_lock(device->cdev)); + counter = 1; /* request is not yet queued on the start device */ + list_for_each(l, &device->ccw_queue) + if (++counter >= 31) + break; + spin_unlock(get_ccwdev_lock(device->cdev)); + spin_lock(&device->profile.lock); - if (device->profile.data) { - device->profile.data->dasd_io_nr_req[counter]++; - if (rq_data_dir(req) == READ) - device->profile.data->dasd_read_nr_req[counter]++; - } + device->profile.data->dasd_io_nr_req[counter]++; + if (rq_data_dir(req) == READ) + device->profile.data->dasd_read_nr_req[counter]++; spin_unlock(&device->profile.lock); } @@ -2948,41 +2950,32 @@ static void _dasd_wake_block_flush_cb(struct dasd_ccw_req *cqr, void *data) * Requeue a request back to the block request queue * only works for block requests */ -static int _dasd_requeue_request(struct dasd_ccw_req *cqr) +static void _dasd_requeue_request(struct dasd_ccw_req *cqr) { - struct dasd_block *block = cqr->block; struct request *req; - if (!block) - return -EINVAL; /* * If the request is an ERP request there is nothing to requeue. * This will be done with the remaining original request. */ if (cqr->refers) - return 0; + return; spin_lock_irq(&cqr->dq->lock); req = (struct request *) cqr->callback_data; blk_mq_requeue_request(req, true); spin_unlock_irq(&cqr->dq->lock); - return 0; + return; } -/* - * Go through all request on the dasd_block request queue, cancel them - * on the respective dasd_device, and return them to the generic - * block layer. - */ -static int dasd_flush_block_queue(struct dasd_block *block) +static int _dasd_requests_to_flushqueue(struct dasd_block *block, + struct list_head *flush_queue) { struct dasd_ccw_req *cqr, *n; - int rc, i; - struct list_head flush_queue; unsigned long flags; + int rc, i; - INIT_LIST_HEAD(&flush_queue); - spin_lock_bh(&block->queue_lock); + spin_lock_irqsave(&block->queue_lock, flags); rc = 0; restart: list_for_each_entry_safe(cqr, n, &block->ccw_queue, blocklist) { @@ -2997,13 +2990,32 @@ static int dasd_flush_block_queue(struct dasd_block *block) * is returned from the dasd_device layer. */ cqr->callback = _dasd_wake_block_flush_cb; - for (i = 0; cqr != NULL; cqr = cqr->refers, i++) - list_move_tail(&cqr->blocklist, &flush_queue); + for (i = 0; cqr; cqr = cqr->refers, i++) + list_move_tail(&cqr->blocklist, flush_queue); if (i > 1) /* moved more than one request - need to restart */ goto restart; } - spin_unlock_bh(&block->queue_lock); + spin_unlock_irqrestore(&block->queue_lock, flags); + + return rc; +} + +/* + * Go through all request on the dasd_block request queue, cancel them + * on the respective dasd_device, and return them to the generic + * block layer. + */ +static int dasd_flush_block_queue(struct dasd_block *block) +{ + struct dasd_ccw_req *cqr, *n; + struct list_head flush_queue; + unsigned long flags; + int rc; + + INIT_LIST_HEAD(&flush_queue); + rc = _dasd_requests_to_flushqueue(block, &flush_queue); + /* Now call the callback function of flushed requests */ restart_cb: list_for_each_entry_safe(cqr, n, &flush_queue, blocklist) { @@ -3926,75 +3938,36 @@ EXPORT_SYMBOL_GPL(dasd_generic_space_avail); */ static int dasd_generic_requeue_all_requests(struct dasd_device *device) { + struct dasd_block *block = device->block; struct list_head requeue_queue; struct dasd_ccw_req *cqr, *n; - struct dasd_ccw_req *refers; int rc; - INIT_LIST_HEAD(&requeue_queue); - spin_lock_irq(get_ccwdev_lock(device->cdev)); - rc = 0; - list_for_each_entry_safe(cqr, n, &device->ccw_queue, devlist) { - /* Check status and move request to flush_queue */ - if (cqr->status == DASD_CQR_IN_IO) { - rc = device->discipline->term_IO(cqr); - if (rc) { - /* unable to terminate requeust */ - dev_err(&device->cdev->dev, - "Unable to terminate request %p " - "on suspend\n", cqr); - spin_unlock_irq(get_ccwdev_lock(device->cdev)); - dasd_put_device(device); - return rc; - } - } - list_move_tail(&cqr->devlist, &requeue_queue); - } - spin_unlock_irq(get_ccwdev_lock(device->cdev)); - - list_for_each_entry_safe(cqr, n, &requeue_queue, devlist) { - wait_event(dasd_flush_wq, - (cqr->status != DASD_CQR_CLEAR_PENDING)); + if (!block) + return 0; - /* - * requeue requests to blocklayer will only work - * for block device requests - */ - if (_dasd_requeue_request(cqr)) - continue; + INIT_LIST_HEAD(&requeue_queue); + rc = _dasd_requests_to_flushqueue(block, &requeue_queue); - /* remove requests from device and block queue */ - list_del_init(&cqr->devlist); - while (cqr->refers != NULL) { - refers = cqr->refers; - /* remove the request from the block queue */ - list_del(&cqr->blocklist); - /* free the finished erp request */ - dasd_free_erp_request(cqr, cqr->memdev); - cqr = refers; + /* Now call the callback function of flushed requests */ +restart_cb: + list_for_each_entry_safe(cqr, n, &requeue_queue, blocklist) { + wait_event(dasd_flush_wq, (cqr->status < DASD_CQR_QUEUED)); + /* Process finished ERP request. */ + if (cqr->refers) { + spin_lock_bh(&block->queue_lock); + __dasd_process_erp(block->base, cqr); + spin_unlock_bh(&block->queue_lock); + /* restart list_for_xx loop since dasd_process_erp + * might remove multiple elements + */ + goto restart_cb; } - - /* - * _dasd_requeue_request already checked for a valid - * blockdevice, no need to check again - * all erp requests (cqr->refers) have a cqr->block - * pointer copy from the original cqr - */ + _dasd_requeue_request(cqr); list_del_init(&cqr->blocklist); cqr->block->base->discipline->free_cp( cqr, (struct request *) cqr->callback_data); } - - /* - * if requests remain then they are internal request - * and go back to the device queue - */ - if (!list_empty(&requeue_queue)) { - /* move freeze_queue to start of the ccw_queue */ - spin_lock_irq(get_ccwdev_lock(device->cdev)); - list_splice_tail(&requeue_queue, &device->ccw_queue); - spin_unlock_irq(get_ccwdev_lock(device->cdev)); - } dasd_schedule_device_bh(device); return rc; } diff --git a/drivers/s390/block/dasd_3990_erp.c b/drivers/s390/block/dasd_3990_erp.c index 4691a3c35d725..c2d4ea74e0d00 100644 --- a/drivers/s390/block/dasd_3990_erp.c +++ b/drivers/s390/block/dasd_3990_erp.c @@ -2436,7 +2436,7 @@ static struct dasd_ccw_req *dasd_3990_erp_add_erp(struct dasd_ccw_req *cqr) erp->block = cqr->block; erp->magic = cqr->magic; erp->expires = cqr->expires; - erp->retries = 256; + erp->retries = device->default_retries; erp->buildclk = get_tod_clock(); erp->status = DASD_CQR_FILLED; diff --git a/drivers/s390/cio/css.c b/drivers/s390/cio/css.c index 2ba9e01355659..3c499136af657 100644 --- a/drivers/s390/cio/css.c +++ b/drivers/s390/cio/css.c @@ -233,17 +233,19 @@ struct subchannel *css_alloc_subchannel(struct subchannel_id schid, */ ret = dma_set_coherent_mask(&sch->dev, DMA_BIT_MASK(31)); if (ret) - goto err; + goto err_lock; /* * But we don't have such restrictions imposed on the stuff that * is handled by the streaming API. */ ret = dma_set_mask(&sch->dev, DMA_BIT_MASK(64)); if (ret) - goto err; + goto err_lock; return sch; +err_lock: + kfree(sch->lock); err: kfree(sch); return ERR_PTR(ret); diff --git a/drivers/s390/crypto/ap_bus.c b/drivers/s390/crypto/ap_bus.c index 16901ab85c524..74e4e2a18a857 100644 --- a/drivers/s390/crypto/ap_bus.c +++ b/drivers/s390/crypto/ap_bus.c @@ -959,6 +959,10 @@ EXPORT_SYMBOL(ap_driver_unregister); void ap_bus_force_rescan(void) { + /* Only trigger AP bus scans after the initial scan is done */ + if (atomic64_read(&ap_scan_bus_count) <= 0) + return; + /* processing a asynchronous bus rescan */ del_timer(&ap_config_timer); queue_work(system_long_wq, &ap_scan_work); diff --git a/drivers/s390/crypto/pkey_api.c b/drivers/s390/crypto/pkey_api.c index 83b335f962c89..34e1d1b339c12 100644 --- a/drivers/s390/crypto/pkey_api.c +++ b/drivers/s390/crypto/pkey_api.c @@ -744,7 +744,7 @@ static int pkey_verifykey2(const u8 *key, size_t keylen, if (ktype) *ktype = PKEY_TYPE_EP11; if (ksize) - *ksize = kb->head.keybitlen; + *ksize = kb->head.bitlen; rc = ep11_findcard2(&_apqns, &_nr_apqns, *cardnr, *domain, ZCRYPT_CEX7, EP11_API_V, kb->wkvp); diff --git a/drivers/s390/crypto/zcrypt_api.c b/drivers/s390/crypto/zcrypt_api.c index bedb1f395bacf..cd3f92e188101 100644 --- a/drivers/s390/crypto/zcrypt_api.c +++ b/drivers/s390/crypto/zcrypt_api.c @@ -398,6 +398,7 @@ static int zcdn_create(const char *name) ZCRYPT_NAME "_%d", (int) MINOR(devt)); nodename[sizeof(nodename)-1] = '\0'; if (dev_set_name(&zcdndev->device, nodename)) { + kfree(zcdndev); rc = -EINVAL; goto unlockout; } diff --git a/drivers/s390/crypto/zcrypt_ep11misc.c b/drivers/s390/crypto/zcrypt_ep11misc.c index 9ce5a71da69b8..3daf259ba10e7 100644 --- a/drivers/s390/crypto/zcrypt_ep11misc.c +++ b/drivers/s390/crypto/zcrypt_ep11misc.c @@ -788,7 +788,7 @@ int ep11_genaeskey(u16 card, u16 domain, u32 keybitsize, u32 keygenflags, kb->head.type = TOKTYPE_NON_CCA; kb->head.len = rep_pl->data_len; kb->head.version = TOKVER_EP11_AES; - kb->head.keybitlen = keybitsize; + kb->head.bitlen = keybitsize; out: kfree(req); @@ -1056,7 +1056,7 @@ static int ep11_unwrapkey(u16 card, u16 domain, kb->head.type = TOKTYPE_NON_CCA; kb->head.len = rep_pl->data_len; kb->head.version = TOKVER_EP11_AES; - kb->head.keybitlen = keybitsize; + kb->head.bitlen = keybitsize; out: kfree(req); diff --git a/drivers/s390/crypto/zcrypt_ep11misc.h b/drivers/s390/crypto/zcrypt_ep11misc.h index 1e02b197c0035..d424fa901f1b0 100644 --- a/drivers/s390/crypto/zcrypt_ep11misc.h +++ b/drivers/s390/crypto/zcrypt_ep11misc.h @@ -29,14 +29,7 @@ struct ep11keyblob { union { u8 session[32]; /* only used for PKEY_TYPE_EP11: */ - struct { - u8 type; /* 0x00 (TOKTYPE_NON_CCA) */ - u8 res0; /* unused */ - u16 len; /* total length in bytes of this blob */ - u8 version; /* 0x03 (TOKVER_EP11_AES) */ - u8 res1; /* unused */ - u16 keybitlen; /* clear key bit len, 0 for unknown */ - } head; + struct ep11kblob_header head; }; u8 wkvp[16]; /* wrapping key verification pattern */ u64 attr; /* boolean key attributes */ diff --git a/drivers/s390/scsi/zfcp_aux.c b/drivers/s390/scsi/zfcp_aux.c index fd2f1c31bd219..2e29121f96fa3 100644 --- a/drivers/s390/scsi/zfcp_aux.c +++ b/drivers/s390/scsi/zfcp_aux.c @@ -518,12 +518,12 @@ struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn, if (port) { put_device(&port->dev); retval = -EEXIST; - goto err_out; + goto err_put; } port = kzalloc(sizeof(struct zfcp_port), GFP_KERNEL); if (!port) - goto err_out; + goto err_put; rwlock_init(&port->unit_list_lock); INIT_LIST_HEAD(&port->unit_list); @@ -546,7 +546,7 @@ struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn, if (dev_set_name(&port->dev, "0x%016llx", (unsigned long long)wwpn)) { kfree(port); - goto err_out; + goto err_put; } retval = -EINVAL; @@ -563,7 +563,8 @@ struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn, return port; -err_out: +err_put: zfcp_ccw_adapter_put(adapter); +err_out: return ERR_PTR(retval); } diff --git a/drivers/scsi/be2iscsi/be_iscsi.c b/drivers/scsi/be2iscsi/be_iscsi.c index 8aeaddc93b167..8d374ae863ba2 100644 --- a/drivers/scsi/be2iscsi/be_iscsi.c +++ b/drivers/scsi/be2iscsi/be_iscsi.c @@ -450,6 +450,10 @@ int beiscsi_iface_set_param(struct Scsi_Host *shost, } nla_for_each_attr(attrib, data, dt_len, rm_len) { + /* ignore nla_type as it is never used */ + if (nla_len(attrib) < sizeof(*iface_param)) + return -EINVAL; + iface_param = nla_data(attrib); if (iface_param->param_type != ISCSI_NET_PARAM) diff --git a/drivers/scsi/be2iscsi/be_main.c b/drivers/scsi/be2iscsi/be_main.c index 7974c1326d461..27e73cd54beaa 100644 --- a/drivers/scsi/be2iscsi/be_main.c +++ b/drivers/scsi/be2iscsi/be_main.c @@ -2691,6 +2691,7 @@ static int beiscsi_init_wrb_handle(struct beiscsi_hba *phba) kfree(pwrb_context->pwrb_handle_base); kfree(pwrb_context->pwrb_handle_basestd); } + kfree(phwi_ctxt->be_wrbq); return -ENOMEM; } diff --git a/drivers/scsi/fcoe/fcoe_ctlr.c b/drivers/scsi/fcoe/fcoe_ctlr.c index 558f3f4e18593..303ecbd86b68a 100644 --- a/drivers/scsi/fcoe/fcoe_ctlr.c +++ b/drivers/scsi/fcoe/fcoe_ctlr.c @@ -319,16 +319,17 @@ static void fcoe_ctlr_announce(struct fcoe_ctlr *fip) { struct fcoe_fcf *sel; struct fcoe_fcf *fcf; + unsigned long flags; mutex_lock(&fip->ctlr_mutex); - spin_lock_bh(&fip->ctlr_lock); + spin_lock_irqsave(&fip->ctlr_lock, flags); kfree_skb(fip->flogi_req); fip->flogi_req = NULL; list_for_each_entry(fcf, &fip->fcfs, list) fcf->flogi_sent = 0; - spin_unlock_bh(&fip->ctlr_lock); + spin_unlock_irqrestore(&fip->ctlr_lock, flags); sel = fip->sel_fcf; if (sel && ether_addr_equal(sel->fcf_mac, fip->dest_addr)) @@ -699,6 +700,7 @@ int fcoe_ctlr_els_send(struct fcoe_ctlr *fip, struct fc_lport *lport, { struct fc_frame *fp; struct fc_frame_header *fh; + unsigned long flags; u16 old_xid; u8 op; u8 mac[ETH_ALEN]; @@ -732,11 +734,11 @@ int fcoe_ctlr_els_send(struct fcoe_ctlr *fip, struct fc_lport *lport, op = FIP_DT_FLOGI; if (fip->mode == FIP_MODE_VN2VN) break; - spin_lock_bh(&fip->ctlr_lock); + spin_lock_irqsave(&fip->ctlr_lock, flags); kfree_skb(fip->flogi_req); fip->flogi_req = skb; fip->flogi_req_send = 1; - spin_unlock_bh(&fip->ctlr_lock); + spin_unlock_irqrestore(&fip->ctlr_lock, flags); schedule_work(&fip->timer_work); return -EINPROGRESS; case ELS_FDISC: @@ -1713,10 +1715,11 @@ static int fcoe_ctlr_flogi_send_locked(struct fcoe_ctlr *fip) static int fcoe_ctlr_flogi_retry(struct fcoe_ctlr *fip) { struct fcoe_fcf *fcf; + unsigned long flags; int error; mutex_lock(&fip->ctlr_mutex); - spin_lock_bh(&fip->ctlr_lock); + spin_lock_irqsave(&fip->ctlr_lock, flags); LIBFCOE_FIP_DBG(fip, "re-sending FLOGI - reselect\n"); fcf = fcoe_ctlr_select(fip); if (!fcf || fcf->flogi_sent) { @@ -1727,7 +1730,7 @@ static int fcoe_ctlr_flogi_retry(struct fcoe_ctlr *fip) fcoe_ctlr_solicit(fip, NULL); error = fcoe_ctlr_flogi_send_locked(fip); } - spin_unlock_bh(&fip->ctlr_lock); + spin_unlock_irqrestore(&fip->ctlr_lock, flags); mutex_unlock(&fip->ctlr_mutex); return error; } @@ -1744,8 +1747,9 @@ static int fcoe_ctlr_flogi_retry(struct fcoe_ctlr *fip) static void fcoe_ctlr_flogi_send(struct fcoe_ctlr *fip) { struct fcoe_fcf *fcf; + unsigned long flags; - spin_lock_bh(&fip->ctlr_lock); + spin_lock_irqsave(&fip->ctlr_lock, flags); fcf = fip->sel_fcf; if (!fcf || !fip->flogi_req_send) goto unlock; @@ -1772,7 +1776,7 @@ static void fcoe_ctlr_flogi_send(struct fcoe_ctlr *fip) } else /* XXX */ LIBFCOE_FIP_DBG(fip, "No FCF selected - defer send\n"); unlock: - spin_unlock_bh(&fip->ctlr_lock); + spin_unlock_irqrestore(&fip->ctlr_lock, flags); } /** diff --git a/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c b/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c index b0b2361e63fef..c40588ed68a54 100644 --- a/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c +++ b/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c @@ -2026,6 +2026,11 @@ static void slot_err_v2_hw(struct hisi_hba *hisi_hba, u16 dma_tx_err_type = le16_to_cpu(err_record->dma_tx_err_type); u16 sipc_rx_err_type = le16_to_cpu(err_record->sipc_rx_err_type); u32 dma_rx_err_type = le32_to_cpu(err_record->dma_rx_err_type); + struct hisi_sas_complete_v2_hdr *complete_queue = + hisi_hba->complete_hdr[slot->cmplt_queue]; + struct hisi_sas_complete_v2_hdr *complete_hdr = + &complete_queue[slot->cmplt_queue_slot]; + u32 dw0 = le32_to_cpu(complete_hdr->dw0); int error = -1; if (err_phase == 1) { @@ -2310,7 +2315,8 @@ static void slot_err_v2_hw(struct hisi_hba *hisi_hba, break; } } - hisi_sas_sata_done(task, slot); + if (dw0 & CMPLT_HDR_RSPNS_XFRD_MSK) + hisi_sas_sata_done(task, slot); } break; default: @@ -2442,7 +2448,8 @@ static void slot_complete_v2_hw(struct hisi_hba *hisi_hba, case SAS_PROTOCOL_SATA | SAS_PROTOCOL_STP: { ts->stat = SAS_SAM_STAT_GOOD; - hisi_sas_sata_done(task, slot); + if (dw0 & CMPLT_HDR_RSPNS_XFRD_MSK) + hisi_sas_sata_done(task, slot); break; } default: diff --git a/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c b/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c index c07bebe3d8458..53ae078e1d200 100644 --- a/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c +++ b/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c @@ -405,6 +405,8 @@ #define CMPLT_HDR_ERROR_PHASE_MSK (0xff << CMPLT_HDR_ERROR_PHASE_OFF) #define CMPLT_HDR_RSPNS_XFRD_OFF 10 #define CMPLT_HDR_RSPNS_XFRD_MSK (0x1 << CMPLT_HDR_RSPNS_XFRD_OFF) +#define CMPLT_HDR_RSPNS_GOOD_OFF 11 +#define CMPLT_HDR_RSPNS_GOOD_MSK (0x1 << CMPLT_HDR_RSPNS_GOOD_OFF) #define CMPLT_HDR_ERX_OFF 12 #define CMPLT_HDR_ERX_MSK (0x1 << CMPLT_HDR_ERX_OFF) #define CMPLT_HDR_ABORT_STAT_OFF 13 @@ -478,6 +480,9 @@ struct hisi_sas_err_record_v3 { #define RX_DATA_LEN_UNDERFLOW_OFF 6 #define RX_DATA_LEN_UNDERFLOW_MSK (1 << RX_DATA_LEN_UNDERFLOW_OFF) +#define RX_FIS_STATUS_ERR_OFF 0 +#define RX_FIS_STATUS_ERR_MSK (1 << RX_FIS_STATUS_ERR_OFF) + #define HISI_SAS_COMMAND_ENTRIES_V3_HW 4096 #define HISI_SAS_MSI_COUNT_V3_HW 32 @@ -2136,7 +2141,7 @@ static irqreturn_t fatal_axi_int_v3_hw(int irq_no, void *p) return IRQ_HANDLED; } -static void +static bool slot_err_v3_hw(struct hisi_hba *hisi_hba, struct sas_task *task, struct hisi_sas_slot *slot) { @@ -2149,11 +2154,22 @@ slot_err_v3_hw(struct hisi_hba *hisi_hba, struct sas_task *task, hisi_sas_status_buf_addr_mem(slot); u32 dma_rx_err_type = le32_to_cpu(record->dma_rx_err_type); u32 trans_tx_fail_type = le32_to_cpu(record->trans_tx_fail_type); + u16 sipc_rx_err_type = le16_to_cpu(record->sipc_rx_err_type); u32 dw3 = le32_to_cpu(complete_hdr->dw3); + u32 dw0 = le32_to_cpu(complete_hdr->dw0); switch (task->task_proto) { case SAS_PROTOCOL_SSP: if (dma_rx_err_type & RX_DATA_LEN_UNDERFLOW_MSK) { + /* + * If returned response frame is incorrect because of data underflow, + * but I/O information has been written to the host memory, we examine + * response IU. + */ + if (!(dw0 & CMPLT_HDR_RSPNS_GOOD_MSK) && + (dw0 & CMPLT_HDR_RSPNS_XFRD_MSK)) + return false; + ts->residual = trans_tx_fail_type; ts->stat = SAS_DATA_UNDERRUN; } else if (dw3 & CMPLT_HDR_IO_IN_TARGET_MSK) { @@ -2167,7 +2183,10 @@ slot_err_v3_hw(struct hisi_hba *hisi_hba, struct sas_task *task, case SAS_PROTOCOL_SATA: case SAS_PROTOCOL_STP: case SAS_PROTOCOL_SATA | SAS_PROTOCOL_STP: - if (dma_rx_err_type & RX_DATA_LEN_UNDERFLOW_MSK) { + if ((dw0 & CMPLT_HDR_RSPNS_XFRD_MSK) && + (sipc_rx_err_type & RX_FIS_STATUS_ERR_MSK)) { + ts->stat = SAS_PROTO_RESPONSE; + } else if (dma_rx_err_type & RX_DATA_LEN_UNDERFLOW_MSK) { ts->residual = trans_tx_fail_type; ts->stat = SAS_DATA_UNDERRUN; } else if (dw3 & CMPLT_HDR_IO_IN_TARGET_MSK) { @@ -2177,7 +2196,8 @@ slot_err_v3_hw(struct hisi_hba *hisi_hba, struct sas_task *task, ts->stat = SAS_OPEN_REJECT; ts->open_rej_reason = SAS_OREJ_RSVD_RETRY; } - hisi_sas_sata_done(task, slot); + if (dw0 & CMPLT_HDR_RSPNS_XFRD_MSK) + hisi_sas_sata_done(task, slot); break; case SAS_PROTOCOL_SMP: ts->stat = SAS_SAM_STAT_CHECK_CONDITION; @@ -2185,6 +2205,7 @@ slot_err_v3_hw(struct hisi_hba *hisi_hba, struct sas_task *task, default: break; } + return true; } static void slot_complete_v3_hw(struct hisi_hba *hisi_hba, @@ -2259,19 +2280,20 @@ static void slot_complete_v3_hw(struct hisi_hba *hisi_hba, if ((dw0 & CMPLT_HDR_CMPLT_MSK) == 0x3) { u32 *error_info = hisi_sas_status_buf_addr_mem(slot); - slot_err_v3_hw(hisi_hba, task, slot); - if (ts->stat != SAS_DATA_UNDERRUN) - dev_info(dev, "erroneous completion iptt=%d task=%pK dev id=%d addr=%016llx CQ hdr: 0x%x 0x%x 0x%x 0x%x Error info: 0x%x 0x%x 0x%x 0x%x\n", - slot->idx, task, sas_dev->device_id, - SAS_ADDR(device->sas_addr), - dw0, dw1, complete_hdr->act, dw3, - error_info[0], error_info[1], - error_info[2], error_info[3]); - if (unlikely(slot->abort)) { - sas_task_abort(task); - return; + if (slot_err_v3_hw(hisi_hba, task, slot)) { + if (ts->stat != SAS_DATA_UNDERRUN) + dev_info(dev, "erroneous completion iptt=%d task=%pK dev id=%d addr=%016llx CQ hdr: 0x%x 0x%x 0x%x 0x%x Error info: 0x%x 0x%x 0x%x 0x%x\n", + slot->idx, task, sas_dev->device_id, + SAS_ADDR(device->sas_addr), + dw0, dw1, complete_hdr->act, dw3, + error_info[0], error_info[1], + error_info[2], error_info[3]); + if (unlikely(slot->abort)) { + sas_task_abort(task); + return; + } + goto out; } - goto out; } switch (task->task_proto) { @@ -2301,7 +2323,8 @@ static void slot_complete_v3_hw(struct hisi_hba *hisi_hba, case SAS_PROTOCOL_STP: case SAS_PROTOCOL_SATA | SAS_PROTOCOL_STP: ts->stat = SAS_SAM_STAT_GOOD; - hisi_sas_sata_done(task, slot); + if (dw0 & CMPLT_HDR_RSPNS_XFRD_MSK) + hisi_sas_sata_done(task, slot); break; default: ts->stat = SAS_SAM_STAT_CHECK_CONDITION; @@ -4695,6 +4718,12 @@ static void debugfs_bist_init_v3_hw(struct hisi_hba *hisi_hba) hisi_hba->debugfs_bist_linkrate = SAS_LINK_RATE_1_5_GBPS; } +static void debugfs_exit_v3_hw(struct hisi_hba *hisi_hba) +{ + debugfs_remove_recursive(hisi_hba->debugfs_dir); + hisi_hba->debugfs_dir = NULL; +} + static void debugfs_init_v3_hw(struct hisi_hba *hisi_hba) { struct device *dev = hisi_hba->dev; @@ -4718,18 +4747,13 @@ static void debugfs_init_v3_hw(struct hisi_hba *hisi_hba) for (i = 0; i < hisi_sas_debugfs_dump_count; i++) { if (debugfs_alloc_v3_hw(hisi_hba, i)) { - debugfs_remove_recursive(hisi_hba->debugfs_dir); + debugfs_exit_v3_hw(hisi_hba); dev_dbg(dev, "failed to init debugfs!\n"); break; } } } -static void debugfs_exit_v3_hw(struct hisi_hba *hisi_hba) -{ - debugfs_remove_recursive(hisi_hba->debugfs_dir); -} - static int hisi_sas_v3_probe(struct pci_dev *pdev, const struct pci_device_id *id) { diff --git a/drivers/scsi/hosts.c b/drivers/scsi/hosts.c index 7dc42d0e2a0dd..1b285ce62f8ae 100644 --- a/drivers/scsi/hosts.c +++ b/drivers/scsi/hosts.c @@ -518,7 +518,7 @@ EXPORT_SYMBOL(scsi_host_alloc); static int __scsi_host_match(struct device *dev, const void *data) { struct Scsi_Host *p; - const unsigned short *hostnum = data; + const unsigned int *hostnum = data; p = class_to_shost(dev); return p->host_no == *hostnum; @@ -535,7 +535,7 @@ static int __scsi_host_match(struct device *dev, const void *data) * that scsi_host_get() took. The put_device() below dropped * the reference from class_find_device(). **/ -struct Scsi_Host *scsi_host_lookup(unsigned short hostnum) +struct Scsi_Host *scsi_host_lookup(unsigned int hostnum) { struct device *cdev; struct Scsi_Host *shost = NULL; diff --git a/drivers/scsi/ibmvscsi/ibmvfc.c b/drivers/scsi/ibmvscsi/ibmvfc.c index 45ef78f388dc9..85444ca1ae21b 100644 --- a/drivers/scsi/ibmvscsi/ibmvfc.c +++ b/drivers/scsi/ibmvscsi/ibmvfc.c @@ -22,7 +22,6 @@ #include #include #include -#include #include #include #include @@ -1519,7 +1518,11 @@ static struct ibmvfc_event *ibmvfc_get_event(struct ibmvfc_queue *queue) unsigned long flags; spin_lock_irqsave(&queue->l_lock, flags); - BUG_ON(list_empty(&queue->free)); + if (list_empty(&queue->free)) { + ibmvfc_log(queue->vhost, 4, "empty event pool on queue:%ld\n", queue->hwq_id); + spin_unlock_irqrestore(&queue->l_lock, flags); + return NULL; + } evt = list_entry(queue->free.next, struct ibmvfc_event, queue_list); atomic_set(&evt->free, 0); list_del(&evt->queue_list); @@ -1948,9 +1951,15 @@ static int ibmvfc_queuecommand(struct Scsi_Host *shost, struct scsi_cmnd *cmnd) if (vhost->using_channels) { scsi_channel = hwq % vhost->scsi_scrqs.active_queues; evt = ibmvfc_get_event(&vhost->scsi_scrqs.scrqs[scsi_channel]); + if (!evt) + return SCSI_MLQUEUE_HOST_BUSY; + evt->hwq = hwq % vhost->scsi_scrqs.active_queues; - } else + } else { evt = ibmvfc_get_event(&vhost->crq); + if (!evt) + return SCSI_MLQUEUE_HOST_BUSY; + } ibmvfc_init_event(evt, ibmvfc_scsi_done, IBMVFC_CMD_FORMAT); evt->cmnd = cmnd; @@ -2038,6 +2047,11 @@ static int ibmvfc_bsg_timeout(struct bsg_job *job) vhost->aborting_passthru = 1; evt = ibmvfc_get_event(&vhost->crq); + if (!evt) { + spin_unlock_irqrestore(vhost->host->host_lock, flags); + return -ENOMEM; + } + ibmvfc_init_event(evt, ibmvfc_bsg_timeout_done, IBMVFC_MAD_FORMAT); tmf = &evt->iu.tmf; @@ -2096,6 +2110,10 @@ static int ibmvfc_bsg_plogi(struct ibmvfc_host *vhost, unsigned int port_id) goto unlock_out; evt = ibmvfc_get_event(&vhost->crq); + if (!evt) { + rc = -ENOMEM; + goto unlock_out; + } ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_MAD_FORMAT); plogi = &evt->iu.plogi; memset(plogi, 0, sizeof(*plogi)); @@ -2214,6 +2232,11 @@ static int ibmvfc_bsg_request(struct bsg_job *job) } evt = ibmvfc_get_event(&vhost->crq); + if (!evt) { + spin_unlock_irqrestore(vhost->host->host_lock, flags); + rc = -ENOMEM; + goto out; + } ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_MAD_FORMAT); mad = &evt->iu.passthru; @@ -2302,6 +2325,11 @@ static int ibmvfc_reset_device(struct scsi_device *sdev, int type, char *desc) else evt = ibmvfc_get_event(&vhost->crq); + if (!evt) { + spin_unlock_irqrestore(vhost->host->host_lock, flags); + return -ENOMEM; + } + ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_CMD_FORMAT); tmf = ibmvfc_init_vfc_cmd(evt, sdev); iu = ibmvfc_get_fcp_iu(vhost, tmf); @@ -2505,6 +2533,8 @@ static struct ibmvfc_event *ibmvfc_init_tmf(struct ibmvfc_queue *queue, struct ibmvfc_tmf *tmf; evt = ibmvfc_get_event(queue); + if (!evt) + return NULL; ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_MAD_FORMAT); tmf = &evt->iu.tmf; @@ -2561,6 +2591,11 @@ static int ibmvfc_cancel_all_mq(struct scsi_device *sdev, int type) if (found_evt && vhost->logged_in) { evt = ibmvfc_init_tmf(&queues[i], sdev, type); + if (!evt) { + spin_unlock(queues[i].q_lock); + spin_unlock_irqrestore(vhost->host->host_lock, flags); + return -ENOMEM; + } evt->sync_iu = &queues[i].cancel_rsp; ibmvfc_send_event(evt, vhost, default_timeout); list_add_tail(&evt->cancel, &cancelq); @@ -2774,6 +2809,10 @@ static int ibmvfc_abort_task_set(struct scsi_device *sdev) if (vhost->state == IBMVFC_ACTIVE) { evt = ibmvfc_get_event(&vhost->crq); + if (!evt) { + spin_unlock_irqrestore(vhost->host->host_lock, flags); + return -ENOMEM; + } ibmvfc_init_event(evt, ibmvfc_sync_completion, IBMVFC_CMD_FORMAT); tmf = ibmvfc_init_vfc_cmd(evt, sdev); iu = ibmvfc_get_fcp_iu(vhost, tmf); @@ -4030,6 +4069,12 @@ static void ibmvfc_tgt_send_prli(struct ibmvfc_target *tgt) kref_get(&tgt->kref); evt = ibmvfc_get_event(&vhost->crq); + if (!evt) { + ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE); + kref_put(&tgt->kref, ibmvfc_release_tgt); + __ibmvfc_reset_host(vhost); + return; + } vhost->discovery_threads++; ibmvfc_init_event(evt, ibmvfc_tgt_prli_done, IBMVFC_MAD_FORMAT); evt->tgt = tgt; @@ -4137,6 +4182,12 @@ static void ibmvfc_tgt_send_plogi(struct ibmvfc_target *tgt) kref_get(&tgt->kref); tgt->logo_rcvd = 0; evt = ibmvfc_get_event(&vhost->crq); + if (!evt) { + ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE); + kref_put(&tgt->kref, ibmvfc_release_tgt); + __ibmvfc_reset_host(vhost); + return; + } vhost->discovery_threads++; ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT); ibmvfc_init_event(evt, ibmvfc_tgt_plogi_done, IBMVFC_MAD_FORMAT); @@ -4213,6 +4264,8 @@ static struct ibmvfc_event *__ibmvfc_tgt_get_implicit_logout_evt(struct ibmvfc_t kref_get(&tgt->kref); evt = ibmvfc_get_event(&vhost->crq); + if (!evt) + return NULL; ibmvfc_init_event(evt, done, IBMVFC_MAD_FORMAT); evt->tgt = tgt; mad = &evt->iu.implicit_logout; @@ -4240,6 +4293,13 @@ static void ibmvfc_tgt_implicit_logout(struct ibmvfc_target *tgt) vhost->discovery_threads++; evt = __ibmvfc_tgt_get_implicit_logout_evt(tgt, ibmvfc_tgt_implicit_logout_done); + if (!evt) { + vhost->discovery_threads--; + ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE); + kref_put(&tgt->kref, ibmvfc_release_tgt); + __ibmvfc_reset_host(vhost); + return; + } ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT); if (ibmvfc_send_event(evt, vhost, default_timeout)) { @@ -4379,6 +4439,12 @@ static void ibmvfc_tgt_move_login(struct ibmvfc_target *tgt) kref_get(&tgt->kref); evt = ibmvfc_get_event(&vhost->crq); + if (!evt) { + ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_DEL_RPORT); + kref_put(&tgt->kref, ibmvfc_release_tgt); + __ibmvfc_reset_host(vhost); + return; + } vhost->discovery_threads++; ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_INIT_WAIT); ibmvfc_init_event(evt, ibmvfc_tgt_move_login_done, IBMVFC_MAD_FORMAT); @@ -4545,6 +4611,14 @@ static void ibmvfc_adisc_timeout(struct timer_list *t) vhost->abort_threads++; kref_get(&tgt->kref); evt = ibmvfc_get_event(&vhost->crq); + if (!evt) { + tgt_err(tgt, "Failed to get cancel event for ADISC.\n"); + vhost->abort_threads--; + kref_put(&tgt->kref, ibmvfc_release_tgt); + __ibmvfc_reset_host(vhost); + spin_unlock_irqrestore(vhost->host->host_lock, flags); + return; + } ibmvfc_init_event(evt, ibmvfc_tgt_adisc_cancel_done, IBMVFC_MAD_FORMAT); evt->tgt = tgt; @@ -4595,6 +4669,12 @@ static void ibmvfc_tgt_adisc(struct ibmvfc_target *tgt) kref_get(&tgt->kref); evt = ibmvfc_get_event(&vhost->crq); + if (!evt) { + ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE); + kref_put(&tgt->kref, ibmvfc_release_tgt); + __ibmvfc_reset_host(vhost); + return; + } vhost->discovery_threads++; ibmvfc_init_event(evt, ibmvfc_tgt_adisc_done, IBMVFC_MAD_FORMAT); evt->tgt = tgt; @@ -4698,6 +4778,12 @@ static void ibmvfc_tgt_query_target(struct ibmvfc_target *tgt) kref_get(&tgt->kref); evt = ibmvfc_get_event(&vhost->crq); + if (!evt) { + ibmvfc_set_tgt_action(tgt, IBMVFC_TGT_ACTION_NONE); + kref_put(&tgt->kref, ibmvfc_release_tgt); + __ibmvfc_reset_host(vhost); + return; + } vhost->discovery_threads++; evt->tgt = tgt; ibmvfc_init_event(evt, ibmvfc_tgt_query_target_done, IBMVFC_MAD_FORMAT); @@ -4870,6 +4956,13 @@ static void ibmvfc_discover_targets(struct ibmvfc_host *vhost) { struct ibmvfc_discover_targets *mad; struct ibmvfc_event *evt = ibmvfc_get_event(&vhost->crq); + int level = IBMVFC_DEFAULT_LOG_LEVEL; + + if (!evt) { + ibmvfc_log(vhost, level, "Discover Targets failed: no available events\n"); + ibmvfc_hard_reset_host(vhost); + return; + } ibmvfc_init_event(evt, ibmvfc_discover_targets_done, IBMVFC_MAD_FORMAT); mad = &evt->iu.discover_targets; @@ -4947,8 +5040,15 @@ static void ibmvfc_channel_setup(struct ibmvfc_host *vhost) struct ibmvfc_scsi_channels *scrqs = &vhost->scsi_scrqs; unsigned int num_channels = min(vhost->client_scsi_channels, vhost->max_vios_scsi_channels); + int level = IBMVFC_DEFAULT_LOG_LEVEL; int i; + if (!evt) { + ibmvfc_log(vhost, level, "Channel Setup failed: no available events\n"); + ibmvfc_hard_reset_host(vhost); + return; + } + memset(setup_buf, 0, sizeof(*setup_buf)); if (num_channels == 0) setup_buf->flags = cpu_to_be32(IBMVFC_CANCEL_CHANNELS); @@ -5010,6 +5110,13 @@ static void ibmvfc_channel_enquiry(struct ibmvfc_host *vhost) { struct ibmvfc_channel_enquiry *mad; struct ibmvfc_event *evt = ibmvfc_get_event(&vhost->crq); + int level = IBMVFC_DEFAULT_LOG_LEVEL; + + if (!evt) { + ibmvfc_log(vhost, level, "Channel Enquiry failed: no available events\n"); + ibmvfc_hard_reset_host(vhost); + return; + } ibmvfc_init_event(evt, ibmvfc_channel_enquiry_done, IBMVFC_MAD_FORMAT); mad = &evt->iu.channel_enquiry; @@ -5132,6 +5239,12 @@ static void ibmvfc_npiv_login(struct ibmvfc_host *vhost) struct ibmvfc_npiv_login_mad *mad; struct ibmvfc_event *evt = ibmvfc_get_event(&vhost->crq); + if (!evt) { + ibmvfc_dbg(vhost, "NPIV Login failed: no available events\n"); + ibmvfc_hard_reset_host(vhost); + return; + } + ibmvfc_gather_partition_info(vhost); ibmvfc_set_login_info(vhost); ibmvfc_init_event(evt, ibmvfc_npiv_login_done, IBMVFC_MAD_FORMAT); @@ -5196,6 +5309,12 @@ static void ibmvfc_npiv_logout(struct ibmvfc_host *vhost) struct ibmvfc_event *evt; evt = ibmvfc_get_event(&vhost->crq); + if (!evt) { + ibmvfc_dbg(vhost, "NPIV Logout failed: no available events\n"); + ibmvfc_hard_reset_host(vhost); + return; + } + ibmvfc_init_event(evt, ibmvfc_npiv_logout_done, IBMVFC_MAD_FORMAT); mad = &evt->iu.npiv_logout; @@ -5802,7 +5921,7 @@ static int ibmvfc_register_scsi_channel(struct ibmvfc_host *vhost, irq_failed: do { rc = plpar_hcall_norets(H_FREE_SUB_CRQ, vdev->unit_address, scrq->cookie); - } while (rtas_busy_delay(rc)); + } while (rc == H_BUSY || H_IS_LONG_BUSY(rc)); reg_failed: LEAVE; return rc; diff --git a/drivers/scsi/libfc/fc_lport.c b/drivers/scsi/libfc/fc_lport.c index 19cd4a95d354d..d158c5eff059b 100644 --- a/drivers/scsi/libfc/fc_lport.c +++ b/drivers/scsi/libfc/fc_lport.c @@ -241,6 +241,12 @@ static void fc_lport_ptp_setup(struct fc_lport *lport, } mutex_lock(&lport->disc.disc_mutex); lport->ptp_rdata = fc_rport_create(lport, remote_fid); + if (!lport->ptp_rdata) { + printk(KERN_WARNING "libfc: Failed to setup lport 0x%x\n", + lport->port_id); + mutex_unlock(&lport->disc.disc_mutex); + return; + } kref_get(&lport->ptp_rdata->kref); lport->ptp_rdata->ids.port_name = remote_wwpn; lport->ptp_rdata->ids.node_name = remote_wwnn; diff --git a/drivers/scsi/lpfc/lpfc_bsg.c b/drivers/scsi/lpfc/lpfc_bsg.c index fdf08cb572071..ed827f198cb68 100644 --- a/drivers/scsi/lpfc/lpfc_bsg.c +++ b/drivers/scsi/lpfc/lpfc_bsg.c @@ -911,7 +911,7 @@ lpfc_bsg_ct_unsol_event(struct lpfc_hba *phba, struct lpfc_sli_ring *pring, struct lpfc_iocbq *piocbq) { uint32_t evt_req_id = 0; - uint32_t cmd; + u16 cmd; struct lpfc_dmabuf *dmabuf = NULL; struct lpfc_bsg_event *evt; struct event_data *evt_dat = NULL; @@ -936,7 +936,7 @@ lpfc_bsg_ct_unsol_event(struct lpfc_hba *phba, struct lpfc_sli_ring *pring, ct_req = (struct lpfc_sli_ct_request *)bdeBuf1->virt; evt_req_id = ct_req->FsType; - cmd = ct_req->CommandResponse.bits.CmdRsp; + cmd = be16_to_cpu(ct_req->CommandResponse.bits.CmdRsp); spin_lock_irqsave(&phba->ct_ev_lock, flags); list_for_each_entry(evt, &phba->ct_ev_waiters, node) { @@ -3243,8 +3243,8 @@ lpfc_bsg_diag_loopback_run(struct bsg_job *job) ctreq->RevisionId.bits.InId = 0; ctreq->FsType = SLI_CT_ELX_LOOPBACK; ctreq->FsSubType = 0; - ctreq->CommandResponse.bits.CmdRsp = ELX_LOOPBACK_DATA; - ctreq->CommandResponse.bits.Size = size; + ctreq->CommandResponse.bits.CmdRsp = cpu_to_be16(ELX_LOOPBACK_DATA); + ctreq->CommandResponse.bits.Size = cpu_to_be16(size); segment_offset = ELX_LOOPBACK_HEADER_SZ; } else segment_offset = 0; diff --git a/drivers/scsi/lpfc/lpfc_debugfs.c b/drivers/scsi/lpfc/lpfc_debugfs.c index 6f1bf36ac6174..3129b8707cb18 100644 --- a/drivers/scsi/lpfc/lpfc_debugfs.c +++ b/drivers/scsi/lpfc/lpfc_debugfs.c @@ -6069,7 +6069,7 @@ lpfc_debugfs_initialize(struct lpfc_vport *vport) phba->hba_debugfs_root, phba, &lpfc_debugfs_op_multixripools); - if (!phba->debug_multixri_pools) { + if (IS_ERR(phba->debug_multixri_pools)) { lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, "0527 Cannot create debugfs multixripools\n"); goto debug_failed; @@ -6081,7 +6081,7 @@ lpfc_debugfs_initialize(struct lpfc_vport *vport) debugfs_create_file(name, S_IFREG | 0644, phba->hba_debugfs_root, phba, &lpfc_cgn_buffer_op); - if (!phba->debug_cgn_buffer) { + if (IS_ERR(phba->debug_cgn_buffer)) { lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, "6527 Cannot create debugfs " "cgn_buffer\n"); @@ -6094,7 +6094,7 @@ lpfc_debugfs_initialize(struct lpfc_vport *vport) debugfs_create_file(name, S_IFREG | 0644, phba->hba_debugfs_root, phba, &lpfc_rx_monitor_op); - if (!phba->debug_rx_monitor) { + if (IS_ERR(phba->debug_rx_monitor)) { lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, "6528 Cannot create debugfs " "rx_monitor\n"); @@ -6107,7 +6107,7 @@ lpfc_debugfs_initialize(struct lpfc_vport *vport) debugfs_create_file(name, 0644, phba->hba_debugfs_root, phba, &lpfc_debugfs_ras_log); - if (!phba->debug_ras_log) { + if (IS_ERR(phba->debug_ras_log)) { lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, "6148 Cannot create debugfs" " ras_log\n"); @@ -6128,7 +6128,7 @@ lpfc_debugfs_initialize(struct lpfc_vport *vport) debugfs_create_file(name, S_IFREG | 0644, phba->hba_debugfs_root, phba, &lpfc_debugfs_op_lockstat); - if (!phba->debug_lockstat) { + if (IS_ERR(phba->debug_lockstat)) { lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, "4610 Can't create debugfs lockstat\n"); goto debug_failed; @@ -6357,7 +6357,7 @@ lpfc_debugfs_initialize(struct lpfc_vport *vport) debugfs_create_file(name, 0644, vport->vport_debugfs_root, vport, &lpfc_debugfs_op_scsistat); - if (!vport->debug_scsistat) { + if (IS_ERR(vport->debug_scsistat)) { lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, "4611 Cannot create debugfs scsistat\n"); goto debug_failed; @@ -6368,7 +6368,7 @@ lpfc_debugfs_initialize(struct lpfc_vport *vport) debugfs_create_file(name, 0644, vport->vport_debugfs_root, vport, &lpfc_debugfs_op_ioktime); - if (!vport->debug_ioktime) { + if (IS_ERR(vport->debug_ioktime)) { lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, "0815 Cannot create debugfs ioktime\n"); goto debug_failed; diff --git a/drivers/scsi/lpfc/lpfc_hbadisc.c b/drivers/scsi/lpfc/lpfc_hbadisc.c index 816fc406135b3..e01a5f30e4e5c 100644 --- a/drivers/scsi/lpfc/lpfc_hbadisc.c +++ b/drivers/scsi/lpfc/lpfc_hbadisc.c @@ -6967,7 +6967,9 @@ lpfc_unregister_fcf_rescan(struct lpfc_hba *phba) if (rc) return; /* Reset HBA FCF states after successful unregister FCF */ + spin_lock_irq(&phba->hbalock); phba->fcf.fcf_flag = 0; + spin_unlock_irq(&phba->hbalock); phba->fcf.current_rec.flag = 0; /* diff --git a/drivers/scsi/lpfc/lpfc_scsi.c b/drivers/scsi/lpfc/lpfc_scsi.c index 5a9feb6150dad..189cffd239efd 100644 --- a/drivers/scsi/lpfc/lpfc_scsi.c +++ b/drivers/scsi/lpfc/lpfc_scsi.c @@ -117,8 +117,6 @@ lpfc_sli4_set_rsp_sgl_last(struct lpfc_hba *phba, } } -#define LPFC_INVALID_REFTAG ((u32)-1) - /** * lpfc_update_stats - Update statistical data for the command completion * @vport: The virtual port on which this call is executing. @@ -1042,8 +1040,6 @@ lpfc_bg_err_inject(struct lpfc_hba *phba, struct scsi_cmnd *sc, sgpe = scsi_prot_sglist(sc); lba = scsi_prot_ref_tag(sc); - if (lba == LPFC_INVALID_REFTAG) - return 0; /* First check if we need to match the LBA */ if (phba->lpfc_injerr_lba != LPFC_INJERR_LBA_OFF) { @@ -1624,8 +1620,6 @@ lpfc_bg_setup_bpl(struct lpfc_hba *phba, struct scsi_cmnd *sc, /* extract some info from the scsi command for pde*/ reftag = scsi_prot_ref_tag(sc); - if (reftag == LPFC_INVALID_REFTAG) - goto out; #ifdef CONFIG_SCSI_LPFC_DEBUG_FS rc = lpfc_bg_err_inject(phba, sc, &reftag, NULL, 1); @@ -1787,8 +1781,6 @@ lpfc_bg_setup_bpl_prot(struct lpfc_hba *phba, struct scsi_cmnd *sc, /* extract some info from the scsi command */ blksize = scsi_prot_interval(sc); reftag = scsi_prot_ref_tag(sc); - if (reftag == LPFC_INVALID_REFTAG) - goto out; #ifdef CONFIG_SCSI_LPFC_DEBUG_FS rc = lpfc_bg_err_inject(phba, sc, &reftag, NULL, 1); @@ -2018,8 +2010,6 @@ lpfc_bg_setup_sgl(struct lpfc_hba *phba, struct scsi_cmnd *sc, /* extract some info from the scsi command for pde*/ reftag = scsi_prot_ref_tag(sc); - if (reftag == LPFC_INVALID_REFTAG) - goto out; #ifdef CONFIG_SCSI_LPFC_DEBUG_FS rc = lpfc_bg_err_inject(phba, sc, &reftag, NULL, 1); @@ -2219,8 +2209,6 @@ lpfc_bg_setup_sgl_prot(struct lpfc_hba *phba, struct scsi_cmnd *sc, /* extract some info from the scsi command */ blksize = scsi_prot_interval(sc); reftag = scsi_prot_ref_tag(sc); - if (reftag == LPFC_INVALID_REFTAG) - goto out; #ifdef CONFIG_SCSI_LPFC_DEBUG_FS rc = lpfc_bg_err_inject(phba, sc, &reftag, NULL, 1); @@ -2812,8 +2800,6 @@ lpfc_calc_bg_err(struct lpfc_hba *phba, struct lpfc_io_buf *lpfc_cmd) src = (struct scsi_dif_tuple *)sg_virt(sgpe); start_ref_tag = scsi_prot_ref_tag(cmd); - if (start_ref_tag == LPFC_INVALID_REFTAG) - goto out; start_app_tag = src->app_tag; len = sgpe->length; while (src && protsegcnt) { @@ -3660,11 +3646,11 @@ lpfc_bg_scsi_prep_dma_buf_s4(struct lpfc_hba *phba, scsi_cmnd->sc_data_direction); lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT, - "9084 Cannot setup S/G List for HBA" - "IO segs %d/%d SGL %d SCSI %d: %d %d\n", + "9084 Cannot setup S/G List for HBA " + "IO segs %d/%d SGL %d SCSI %d: %d %d %d\n", lpfc_cmd->seg_cnt, lpfc_cmd->prot_seg_cnt, phba->cfg_total_seg_cnt, phba->cfg_sg_seg_cnt, - prot_group_type, num_sge); + prot_group_type, num_sge, ret); lpfc_cmd->seg_cnt = 0; lpfc_cmd->prot_seg_cnt = 0; diff --git a/drivers/scsi/megaraid/megaraid_sas.h b/drivers/scsi/megaraid/megaraid_sas.h index 02d7ab119f806..acc14568bef57 100644 --- a/drivers/scsi/megaraid/megaraid_sas.h +++ b/drivers/scsi/megaraid/megaraid_sas.h @@ -2330,7 +2330,7 @@ struct megasas_instance { u32 support_morethan256jbod; /* FW support for more than 256 PD/JBOD */ bool use_seqnum_jbod_fp; /* Added for PD sequence */ bool smp_affinity_enable; - spinlock_t crashdump_lock; + struct mutex crashdump_lock; struct megasas_register_set __iomem *reg_set; u32 __iomem *reply_post_host_index_addr[MR_MAX_MSIX_REG_ARRAY]; diff --git a/drivers/scsi/megaraid/megaraid_sas_base.c b/drivers/scsi/megaraid/megaraid_sas_base.c index 403302b81647a..4bfafbd169357 100644 --- a/drivers/scsi/megaraid/megaraid_sas_base.c +++ b/drivers/scsi/megaraid/megaraid_sas_base.c @@ -263,13 +263,13 @@ u32 megasas_readl(struct megasas_instance *instance, * Fusion registers could intermittently return all zeroes. * This behavior is transient in nature and subsequent reads will * return valid value. As a workaround in driver, retry readl for - * upto three times until a non-zero value is read. + * up to thirty times until a non-zero value is read. */ if (instance->adapter_type == AERO_SERIES) { do { ret_val = readl(addr); i++; - } while (ret_val == 0 && i < 3); + } while (ret_val == 0 && i < 30); return ret_val; } else { return readl(addr); @@ -3275,14 +3275,13 @@ fw_crash_buffer_store(struct device *cdev, struct megasas_instance *instance = (struct megasas_instance *) shost->hostdata; int val = 0; - unsigned long flags; if (kstrtoint(buf, 0, &val) != 0) return -EINVAL; - spin_lock_irqsave(&instance->crashdump_lock, flags); + mutex_lock(&instance->crashdump_lock); instance->fw_crash_buffer_offset = val; - spin_unlock_irqrestore(&instance->crashdump_lock, flags); + mutex_unlock(&instance->crashdump_lock); return strlen(buf); } @@ -3297,24 +3296,23 @@ fw_crash_buffer_show(struct device *cdev, unsigned long dmachunk = CRASH_DMA_BUF_SIZE; unsigned long chunk_left_bytes; unsigned long src_addr; - unsigned long flags; u32 buff_offset; - spin_lock_irqsave(&instance->crashdump_lock, flags); + mutex_lock(&instance->crashdump_lock); buff_offset = instance->fw_crash_buffer_offset; if (!instance->crash_dump_buf || !((instance->fw_crash_state == AVAILABLE) || (instance->fw_crash_state == COPYING))) { dev_err(&instance->pdev->dev, "Firmware crash dump is not available\n"); - spin_unlock_irqrestore(&instance->crashdump_lock, flags); + mutex_unlock(&instance->crashdump_lock); return -EINVAL; } if (buff_offset > (instance->fw_crash_buffer_size * dmachunk)) { dev_err(&instance->pdev->dev, "Firmware crash dump offset is out of range\n"); - spin_unlock_irqrestore(&instance->crashdump_lock, flags); + mutex_unlock(&instance->crashdump_lock); return 0; } @@ -3326,7 +3324,7 @@ fw_crash_buffer_show(struct device *cdev, src_addr = (unsigned long)instance->crash_buf[buff_offset / dmachunk] + (buff_offset % dmachunk); memcpy(buf, (void *)src_addr, size); - spin_unlock_irqrestore(&instance->crashdump_lock, flags); + mutex_unlock(&instance->crashdump_lock); return size; } @@ -3351,7 +3349,6 @@ fw_crash_state_store(struct device *cdev, struct megasas_instance *instance = (struct megasas_instance *) shost->hostdata; int val = 0; - unsigned long flags; if (kstrtoint(buf, 0, &val) != 0) return -EINVAL; @@ -3365,9 +3362,9 @@ fw_crash_state_store(struct device *cdev, instance->fw_crash_state = val; if ((val == COPIED) || (val == COPY_ERROR)) { - spin_lock_irqsave(&instance->crashdump_lock, flags); + mutex_lock(&instance->crashdump_lock); megasas_free_host_crash_buffer(instance); - spin_unlock_irqrestore(&instance->crashdump_lock, flags); + mutex_unlock(&instance->crashdump_lock); if (val == COPY_ERROR) dev_info(&instance->pdev->dev, "application failed to " "copy Firmware crash dump\n"); @@ -7432,7 +7429,7 @@ static inline void megasas_init_ctrl_params(struct megasas_instance *instance) init_waitqueue_head(&instance->int_cmd_wait_q); init_waitqueue_head(&instance->abort_cmd_wait_q); - spin_lock_init(&instance->crashdump_lock); + mutex_init(&instance->crashdump_lock); spin_lock_init(&instance->mfi_pool_lock); spin_lock_init(&instance->hba_lock); spin_lock_init(&instance->stream_lock); diff --git a/drivers/scsi/mpt3sas/mpt3sas_base.c b/drivers/scsi/mpt3sas/mpt3sas_base.c index 5aa4ae0b06076..e524e1fc53fa3 100644 --- a/drivers/scsi/mpt3sas/mpt3sas_base.c +++ b/drivers/scsi/mpt3sas/mpt3sas_base.c @@ -139,6 +139,9 @@ _base_get_ioc_facts(struct MPT3SAS_ADAPTER *ioc); static void _base_clear_outstanding_commands(struct MPT3SAS_ADAPTER *ioc); +static u32 +_base_readl_ext_retry(const volatile void __iomem *addr); + /** * mpt3sas_base_check_cmd_timeout - Function * to check timeout and command termination due @@ -214,6 +217,20 @@ _base_readl_aero(const volatile void __iomem *addr) return ret_val; } +static u32 +_base_readl_ext_retry(const volatile void __iomem *addr) +{ + u32 i, ret_val; + + for (i = 0 ; i < 30 ; i++) { + ret_val = readl(addr); + if (ret_val != 0) + break; + } + + return ret_val; +} + static inline u32 _base_readl(const volatile void __iomem *addr) { @@ -941,7 +958,7 @@ mpt3sas_halt_firmware(struct MPT3SAS_ADAPTER *ioc) dump_stack(); - doorbell = ioc->base_readl(&ioc->chip->Doorbell); + doorbell = ioc->base_readl_ext_retry(&ioc->chip->Doorbell); if ((doorbell & MPI2_IOC_STATE_MASK) == MPI2_IOC_STATE_FAULT) { mpt3sas_print_fault_code(ioc, doorbell & MPI2_DOORBELL_DATA_MASK); @@ -6537,7 +6554,7 @@ mpt3sas_base_get_iocstate(struct MPT3SAS_ADAPTER *ioc, int cooked) { u32 s, sc; - s = ioc->base_readl(&ioc->chip->Doorbell); + s = ioc->base_readl_ext_retry(&ioc->chip->Doorbell); sc = s & MPI2_IOC_STATE_MASK; return cooked ? sc : s; } @@ -6682,7 +6699,7 @@ _base_wait_for_doorbell_ack(struct MPT3SAS_ADAPTER *ioc, int timeout) __func__, count, timeout)); return 0; } else if (int_status & MPI2_HIS_IOC2SYS_DB_STATUS) { - doorbell = ioc->base_readl(&ioc->chip->Doorbell); + doorbell = ioc->base_readl_ext_retry(&ioc->chip->Doorbell); if ((doorbell & MPI2_IOC_STATE_MASK) == MPI2_IOC_STATE_FAULT) { mpt3sas_print_fault_code(ioc, doorbell); @@ -6722,7 +6739,7 @@ _base_wait_for_doorbell_not_used(struct MPT3SAS_ADAPTER *ioc, int timeout) count = 0; cntdn = 1000 * timeout; do { - doorbell_reg = ioc->base_readl(&ioc->chip->Doorbell); + doorbell_reg = ioc->base_readl_ext_retry(&ioc->chip->Doorbell); if (!(doorbell_reg & MPI2_DOORBELL_USED)) { dhsprintk(ioc, ioc_info(ioc, "%s: successful count(%d), timeout(%d)\n", @@ -6870,7 +6887,7 @@ _base_handshake_req_reply_wait(struct MPT3SAS_ADAPTER *ioc, int request_bytes, __le32 *mfp; /* make sure doorbell is not in use */ - if ((ioc->base_readl(&ioc->chip->Doorbell) & MPI2_DOORBELL_USED)) { + if ((ioc->base_readl_ext_retry(&ioc->chip->Doorbell) & MPI2_DOORBELL_USED)) { ioc_err(ioc, "doorbell is in use (line=%d)\n", __LINE__); return -EFAULT; } @@ -6919,7 +6936,7 @@ _base_handshake_req_reply_wait(struct MPT3SAS_ADAPTER *ioc, int request_bytes, } /* read the first two 16-bits, it gives the total length of the reply */ - reply[0] = le16_to_cpu(ioc->base_readl(&ioc->chip->Doorbell) + reply[0] = le16_to_cpu(ioc->base_readl_ext_retry(&ioc->chip->Doorbell) & MPI2_DOORBELL_DATA_MASK); writel(0, &ioc->chip->HostInterruptStatus); if ((_base_wait_for_doorbell_int(ioc, 5))) { @@ -6927,7 +6944,7 @@ _base_handshake_req_reply_wait(struct MPT3SAS_ADAPTER *ioc, int request_bytes, __LINE__); return -EFAULT; } - reply[1] = le16_to_cpu(ioc->base_readl(&ioc->chip->Doorbell) + reply[1] = le16_to_cpu(ioc->base_readl_ext_retry(&ioc->chip->Doorbell) & MPI2_DOORBELL_DATA_MASK); writel(0, &ioc->chip->HostInterruptStatus); @@ -6938,10 +6955,10 @@ _base_handshake_req_reply_wait(struct MPT3SAS_ADAPTER *ioc, int request_bytes, return -EFAULT; } if (i >= reply_bytes/2) /* overflow case */ - ioc->base_readl(&ioc->chip->Doorbell); + ioc->base_readl_ext_retry(&ioc->chip->Doorbell); else reply[i] = le16_to_cpu( - ioc->base_readl(&ioc->chip->Doorbell) + ioc->base_readl_ext_retry(&ioc->chip->Doorbell) & MPI2_DOORBELL_DATA_MASK); writel(0, &ioc->chip->HostInterruptStatus); } @@ -7800,7 +7817,7 @@ _base_diag_reset(struct MPT3SAS_ADAPTER *ioc) goto out; } - host_diagnostic = ioc->base_readl(&ioc->chip->HostDiagnostic); + host_diagnostic = ioc->base_readl_ext_retry(&ioc->chip->HostDiagnostic); drsprintk(ioc, ioc_info(ioc, "wrote magic sequence: count(%d), host_diagnostic(0x%08x)\n", count, host_diagnostic)); @@ -7820,7 +7837,7 @@ _base_diag_reset(struct MPT3SAS_ADAPTER *ioc) for (count = 0; count < (300000000 / MPI2_HARD_RESET_PCIE_SECOND_READ_DELAY_MICRO_SEC); count++) { - host_diagnostic = ioc->base_readl(&ioc->chip->HostDiagnostic); + host_diagnostic = ioc->base_readl_ext_retry(&ioc->chip->HostDiagnostic); if (host_diagnostic == 0xFFFFFFFF) { ioc_info(ioc, @@ -8210,10 +8227,13 @@ mpt3sas_base_attach(struct MPT3SAS_ADAPTER *ioc) ioc->rdpq_array_enable_assigned = 0; ioc->use_32bit_dma = false; ioc->dma_mask = 64; - if (ioc->is_aero_ioc) + if (ioc->is_aero_ioc) { ioc->base_readl = &_base_readl_aero; - else + ioc->base_readl_ext_retry = &_base_readl_ext_retry; + } else { ioc->base_readl = &_base_readl; + ioc->base_readl_ext_retry = &_base_readl; + } r = mpt3sas_base_map_resources(ioc); if (r) goto out_free_resources; diff --git a/drivers/scsi/mpt3sas/mpt3sas_base.h b/drivers/scsi/mpt3sas/mpt3sas_base.h index 3826d8b7ba83a..09580aeb35817 100644 --- a/drivers/scsi/mpt3sas/mpt3sas_base.h +++ b/drivers/scsi/mpt3sas/mpt3sas_base.h @@ -1618,6 +1618,7 @@ struct MPT3SAS_ADAPTER { u8 diag_trigger_active; u8 atomic_desc_capable; BASE_READ_REG base_readl; + BASE_READ_REG base_readl_ext_retry; struct SL_WH_MASTER_TRIGGER_T diag_trigger_master; struct SL_WH_EVENT_TRIGGERS_T diag_trigger_event; struct SL_WH_SCSI_TRIGGERS_T diag_trigger_scsi; diff --git a/drivers/scsi/mpt3sas/mpt3sas_scsih.c b/drivers/scsi/mpt3sas/mpt3sas_scsih.c index 9eb3d0b4891dd..c9f85605349bf 100644 --- a/drivers/scsi/mpt3sas/mpt3sas_scsih.c +++ b/drivers/scsi/mpt3sas/mpt3sas_scsih.c @@ -12899,8 +12899,10 @@ _mpt3sas_init(void) mpt3sas_ctl_init(hbas_to_enumerate); error = pci_register_driver(&mpt3sas_driver); - if (error) + if (error) { + mpt3sas_ctl_exit(hbas_to_enumerate); scsih_exit(); + } return error; } diff --git a/drivers/scsi/pm8001/pm8001_hwi.c b/drivers/scsi/pm8001/pm8001_hwi.c index 32fc450bf84b4..352705e023c83 100644 --- a/drivers/scsi/pm8001/pm8001_hwi.c +++ b/drivers/scsi/pm8001/pm8001_hwi.c @@ -4402,7 +4402,7 @@ pm8001_chip_phy_start_req(struct pm8001_hba_info *pm8001_ha, u8 phy_id) payload.sas_identify.dev_type = SAS_END_DEVICE; payload.sas_identify.initiator_bits = SAS_PROTOCOL_ALL; memcpy(payload.sas_identify.sas_addr, - pm8001_ha->sas_addr, SAS_ADDR_SIZE); + &pm8001_ha->phy[phy_id].dev_sas_addr, SAS_ADDR_SIZE); payload.sas_identify.phy_id = phy_id; ret = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opcode, &payload, sizeof(payload), 0); diff --git a/drivers/scsi/pm8001/pm8001_init.c b/drivers/scsi/pm8001/pm8001_init.c index a25a34535b7a4..a54460fe86300 100644 --- a/drivers/scsi/pm8001/pm8001_init.c +++ b/drivers/scsi/pm8001/pm8001_init.c @@ -255,7 +255,6 @@ static irqreturn_t pm8001_interrupt_handler_intx(int irq, void *dev_id) return ret; } -static u32 pm8001_setup_irq(struct pm8001_hba_info *pm8001_ha); static u32 pm8001_request_irq(struct pm8001_hba_info *pm8001_ha); /** @@ -276,13 +275,6 @@ static int pm8001_alloc(struct pm8001_hba_info *pm8001_ha, pm8001_dbg(pm8001_ha, INIT, "pm8001_alloc: PHY:%x\n", pm8001_ha->chip->n_phy); - /* Setup Interrupt */ - rc = pm8001_setup_irq(pm8001_ha); - if (rc) { - pm8001_dbg(pm8001_ha, FAIL, - "pm8001_setup_irq failed [ret: %d]\n", rc); - goto err_out; - } /* Request Interrupt */ rc = pm8001_request_irq(pm8001_ha); if (rc) @@ -1002,47 +994,38 @@ static u32 pm8001_request_msix(struct pm8001_hba_info *pm8001_ha) } #endif -static u32 pm8001_setup_irq(struct pm8001_hba_info *pm8001_ha) -{ - struct pci_dev *pdev; - - pdev = pm8001_ha->pdev; - -#ifdef PM8001_USE_MSIX - if (pci_find_capability(pdev, PCI_CAP_ID_MSIX)) - return pm8001_setup_msix(pm8001_ha); - pm8001_dbg(pm8001_ha, INIT, "MSIX not supported!!!\n"); -#endif - return 0; -} - /** * pm8001_request_irq - register interrupt * @pm8001_ha: our ha struct. */ static u32 pm8001_request_irq(struct pm8001_hba_info *pm8001_ha) { - struct pci_dev *pdev; + struct pci_dev *pdev = pm8001_ha->pdev; +#ifdef PM8001_USE_MSIX int rc; - pdev = pm8001_ha->pdev; + if (pci_find_capability(pdev, PCI_CAP_ID_MSIX)) { + rc = pm8001_setup_msix(pm8001_ha); + if (rc) { + pm8001_dbg(pm8001_ha, FAIL, + "pm8001_setup_irq failed [ret: %d]\n", rc); + return rc; + } -#ifdef PM8001_USE_MSIX - if (pdev->msix_cap && pci_msi_enabled()) - return pm8001_request_msix(pm8001_ha); - else { - pm8001_dbg(pm8001_ha, INIT, "MSIX not supported!!!\n"); - goto intx; + if (pdev->msix_cap && pci_msi_enabled()) + return pm8001_request_msix(pm8001_ha); } + + pm8001_dbg(pm8001_ha, INIT, "MSIX not supported!!!\n"); #endif -intx: /* initialize the INT-X interrupt */ pm8001_ha->irq_vector[0].irq_id = 0; pm8001_ha->irq_vector[0].drv_inst = pm8001_ha; - rc = request_irq(pdev->irq, pm8001_interrupt_handler_intx, IRQF_SHARED, - pm8001_ha->name, SHOST_TO_SAS_HA(pm8001_ha->shost)); - return rc; + + return request_irq(pdev->irq, pm8001_interrupt_handler_intx, + IRQF_SHARED, pm8001_ha->name, + SHOST_TO_SAS_HA(pm8001_ha->shost)); } /** diff --git a/drivers/scsi/pm8001/pm80xx_hwi.c b/drivers/scsi/pm8001/pm80xx_hwi.c index 04746df26c6c9..d37b1bdb29b49 100644 --- a/drivers/scsi/pm8001/pm80xx_hwi.c +++ b/drivers/scsi/pm8001/pm80xx_hwi.c @@ -3793,10 +3793,12 @@ static int mpi_set_controller_config_resp(struct pm8001_hba_info *pm8001_ha, (struct set_ctrl_cfg_resp *)(piomb + 4); u32 status = le32_to_cpu(pPayload->status); u32 err_qlfr_pgcd = le32_to_cpu(pPayload->err_qlfr_pgcd); + u32 tag = le32_to_cpu(pPayload->tag); pm8001_dbg(pm8001_ha, MSG, "SET CONTROLLER RESP: status 0x%x qlfr_pgcd 0x%x\n", status, err_qlfr_pgcd); + pm8001_tag_free(pm8001_ha, tag); return 0; } @@ -4814,7 +4816,7 @@ pm80xx_chip_phy_start_req(struct pm8001_hba_info *pm8001_ha, u8 phy_id) payload.sas_identify.dev_type = SAS_END_DEVICE; payload.sas_identify.initiator_bits = SAS_PROTOCOL_ALL; memcpy(payload.sas_identify.sas_addr, - &pm8001_ha->sas_addr, SAS_ADDR_SIZE); + &pm8001_ha->phy[phy_id].dev_sas_addr, SAS_ADDR_SIZE); payload.sas_identify.phy_id = phy_id; ret = pm8001_mpi_build_cmd(pm8001_ha, circularQ, opcode, &payload, sizeof(payload), 0); diff --git a/drivers/scsi/qedf/qedf_dbg.h b/drivers/scsi/qedf/qedf_dbg.h index f4d81127239eb..5ec2b817c694a 100644 --- a/drivers/scsi/qedf/qedf_dbg.h +++ b/drivers/scsi/qedf/qedf_dbg.h @@ -59,6 +59,8 @@ extern uint qedf_debug; #define QEDF_LOG_NOTICE 0x40000000 /* Notice logs */ #define QEDF_LOG_WARN 0x80000000 /* Warning logs */ +#define QEDF_DEBUGFS_LOG_LEN (2 * PAGE_SIZE) + /* Debug context structure */ struct qedf_dbg_ctx { unsigned int host_no; diff --git a/drivers/scsi/qedf/qedf_debugfs.c b/drivers/scsi/qedf/qedf_debugfs.c index a3ed681c8ce3f..451fd236bfd05 100644 --- a/drivers/scsi/qedf/qedf_debugfs.c +++ b/drivers/scsi/qedf/qedf_debugfs.c @@ -8,6 +8,7 @@ #include #include #include +#include #include "qedf.h" #include "qedf_dbg.h" @@ -98,7 +99,9 @@ static ssize_t qedf_dbg_fp_int_cmd_read(struct file *filp, char __user *buffer, size_t count, loff_t *ppos) { + ssize_t ret; size_t cnt = 0; + char *cbuf; int id; struct qedf_fastpath *fp = NULL; struct qedf_dbg_ctx *qedf_dbg = @@ -108,19 +111,25 @@ qedf_dbg_fp_int_cmd_read(struct file *filp, char __user *buffer, size_t count, QEDF_INFO(qedf_dbg, QEDF_LOG_DEBUGFS, "entered\n"); - cnt = sprintf(buffer, "\nFastpath I/O completions\n\n"); + cbuf = vmalloc(QEDF_DEBUGFS_LOG_LEN); + if (!cbuf) + return 0; + + cnt += scnprintf(cbuf + cnt, QEDF_DEBUGFS_LOG_LEN - cnt, "\nFastpath I/O completions\n\n"); for (id = 0; id < qedf->num_queues; id++) { fp = &(qedf->fp_array[id]); if (fp->sb_id == QEDF_SB_ID_NULL) continue; - cnt += sprintf((buffer + cnt), "#%d: %lu\n", id, - fp->completions); + cnt += scnprintf(cbuf + cnt, QEDF_DEBUGFS_LOG_LEN - cnt, + "#%d: %lu\n", id, fp->completions); } - cnt = min_t(int, count, cnt - *ppos); - *ppos += cnt; - return cnt; + ret = simple_read_from_buffer(buffer, count, ppos, cbuf, cnt); + + vfree(cbuf); + + return ret; } static ssize_t @@ -138,15 +147,14 @@ qedf_dbg_debug_cmd_read(struct file *filp, char __user *buffer, size_t count, loff_t *ppos) { int cnt; + char cbuf[32]; struct qedf_dbg_ctx *qedf_dbg = (struct qedf_dbg_ctx *)filp->private_data; QEDF_INFO(qedf_dbg, QEDF_LOG_DEBUGFS, "debug mask=0x%x\n", qedf_debug); - cnt = sprintf(buffer, "debug mask = 0x%x\n", qedf_debug); + cnt = scnprintf(cbuf, sizeof(cbuf), "debug mask = 0x%x\n", qedf_debug); - cnt = min_t(int, count, cnt - *ppos); - *ppos += cnt; - return cnt; + return simple_read_from_buffer(buffer, count, ppos, cbuf, cnt); } static ssize_t @@ -185,18 +193,17 @@ qedf_dbg_stop_io_on_error_cmd_read(struct file *filp, char __user *buffer, size_t count, loff_t *ppos) { int cnt; + char cbuf[7]; struct qedf_dbg_ctx *qedf_dbg = (struct qedf_dbg_ctx *)filp->private_data; struct qedf_ctx *qedf = container_of(qedf_dbg, struct qedf_ctx, dbg_ctx); QEDF_INFO(qedf_dbg, QEDF_LOG_DEBUGFS, "entered\n"); - cnt = sprintf(buffer, "%s\n", + cnt = scnprintf(cbuf, sizeof(cbuf), "%s\n", qedf->stop_io_on_error ? "true" : "false"); - cnt = min_t(int, count, cnt - *ppos); - *ppos += cnt; - return cnt; + return simple_read_from_buffer(buffer, count, ppos, cbuf, cnt); } static ssize_t diff --git a/drivers/scsi/qedf/qedf_io.c b/drivers/scsi/qedf/qedf_io.c index bb5761ed3f511..a1a1f4e466609 100644 --- a/drivers/scsi/qedf/qedf_io.c +++ b/drivers/scsi/qedf/qedf_io.c @@ -1913,6 +1913,7 @@ int qedf_initiate_abts(struct qedf_ioreq *io_req, bool return_scsi_cmd_on_abts) goto drop_rdata_kref; } + spin_lock_irqsave(&fcport->rport_lock, flags); if (!test_bit(QEDF_CMD_OUTSTANDING, &io_req->flags) || test_bit(QEDF_CMD_IN_CLEANUP, &io_req->flags) || test_bit(QEDF_CMD_IN_ABORT, &io_req->flags)) { @@ -1920,17 +1921,20 @@ int qedf_initiate_abts(struct qedf_ioreq *io_req, bool return_scsi_cmd_on_abts) "io_req xid=0x%x sc_cmd=%p already in cleanup or abort processing or already completed.\n", io_req->xid, io_req->sc_cmd); rc = 1; + spin_unlock_irqrestore(&fcport->rport_lock, flags); goto drop_rdata_kref; } + /* Set the command type to abort */ + io_req->cmd_type = QEDF_ABTS; + spin_unlock_irqrestore(&fcport->rport_lock, flags); + kref_get(&io_req->refcount); xid = io_req->xid; qedf->control_requests++; qedf->packet_aborts++; - /* Set the command type to abort */ - io_req->cmd_type = QEDF_ABTS; io_req->return_scsi_cmd_on_abts = return_scsi_cmd_on_abts; set_bit(QEDF_CMD_IN_ABORT, &io_req->flags); @@ -2219,7 +2223,9 @@ int qedf_initiate_cleanup(struct qedf_ioreq *io_req, refcount, fcport, fcport->rdata->ids.port_id); /* Cleanup cmds re-use the same TID as the original I/O */ + spin_lock_irqsave(&fcport->rport_lock, flags); io_req->cmd_type = QEDF_CLEANUP; + spin_unlock_irqrestore(&fcport->rport_lock, flags); io_req->return_scsi_cmd_on_abts = return_scsi_cmd_on_abts; init_completion(&io_req->cleanup_done); diff --git a/drivers/scsi/qedf/qedf_main.c b/drivers/scsi/qedf/qedf_main.c index 61959dd2237fc..18380a932ab61 100644 --- a/drivers/scsi/qedf/qedf_main.c +++ b/drivers/scsi/qedf/qedf_main.c @@ -2807,6 +2807,8 @@ void qedf_process_cqe(struct qedf_ctx *qedf, struct fcoe_cqe *cqe) struct qedf_ioreq *io_req; struct qedf_rport *fcport; u32 comp_type; + u8 io_comp_type; + unsigned long flags; comp_type = (cqe->cqe_data >> FCOE_CQE_CQE_TYPE_SHIFT) & FCOE_CQE_CQE_TYPE_MASK; @@ -2840,11 +2842,14 @@ void qedf_process_cqe(struct qedf_ctx *qedf, struct fcoe_cqe *cqe) return; } + spin_lock_irqsave(&fcport->rport_lock, flags); + io_comp_type = io_req->cmd_type; + spin_unlock_irqrestore(&fcport->rport_lock, flags); switch (comp_type) { case FCOE_GOOD_COMPLETION_CQE_TYPE: atomic_inc(&fcport->free_sqes); - switch (io_req->cmd_type) { + switch (io_comp_type) { case QEDF_SCSI_CMD: qedf_scsi_completion(qedf, cqe, io_req); break; diff --git a/drivers/scsi/qedi/qedi_main.c b/drivers/scsi/qedi/qedi_main.c index d2fe8ae97abc9..b36edbef5b82f 100644 --- a/drivers/scsi/qedi/qedi_main.c +++ b/drivers/scsi/qedi/qedi_main.c @@ -1979,8 +1979,9 @@ static int qedi_cpu_offline(unsigned int cpu) struct qedi_percpu_s *p = this_cpu_ptr(&qedi_percpu); struct qedi_work *work, *tmp; struct task_struct *thread; + unsigned long flags; - spin_lock_bh(&p->p_work_lock); + spin_lock_irqsave(&p->p_work_lock, flags); thread = p->iothread; p->iothread = NULL; @@ -1991,7 +1992,7 @@ static int qedi_cpu_offline(unsigned int cpu) kfree(work); } - spin_unlock_bh(&p->p_work_lock); + spin_unlock_irqrestore(&p->p_work_lock, flags); if (thread) kthread_stop(thread); return 0; diff --git a/drivers/scsi/qla2xxx/qla_attr.c b/drivers/scsi/qla2xxx/qla_attr.c index 4a5df867057bc..fe0e8b23a805e 100644 --- a/drivers/scsi/qla2xxx/qla_attr.c +++ b/drivers/scsi/qla2xxx/qla_attr.c @@ -3084,8 +3084,6 @@ qla24xx_vport_create(struct fc_vport *fc_vport, bool disable) vha->flags.difdix_supported = 1; ql_dbg(ql_dbg_user, vha, 0x7082, "Registered for DIF/DIX type 1 and 3 protection.\n"); - if (ql2xenabledif == 1) - prot = SHOST_DIX_TYPE0_PROTECTION; scsi_host_set_prot(vha->host, prot | SHOST_DIF_TYPE1_PROTECTION | SHOST_DIF_TYPE2_PROTECTION diff --git a/drivers/scsi/qla2xxx/qla_dbg.c b/drivers/scsi/qla2xxx/qla_dbg.c index 7cf1f78cbaeee..8e9ffbec6643f 100644 --- a/drivers/scsi/qla2xxx/qla_dbg.c +++ b/drivers/scsi/qla2xxx/qla_dbg.c @@ -18,7 +18,7 @@ * | Queue Command and IO tracing | 0x3074 | 0x300b | * | | | 0x3027-0x3028 | * | | | 0x303d-0x3041 | - * | | | 0x302d,0x3033 | + * | | | 0x302e,0x3033 | * | | | 0x3036,0x3038 | * | | | 0x303a | * | DPC Thread | 0x4023 | 0x4002,0x4013 | diff --git a/drivers/scsi/qla2xxx/qla_def.h b/drivers/scsi/qla2xxx/qla_def.h index 83228ce822af3..3c876967e8b16 100644 --- a/drivers/scsi/qla2xxx/qla_def.h +++ b/drivers/scsi/qla2xxx/qla_def.h @@ -453,6 +453,7 @@ static inline be_id_t port_id_to_be_id(port_id_t port_id) } struct tmf_arg { + struct list_head tmf_elem; struct qla_qpair *qpair; struct fc_port *fcport; struct scsi_qla_host *vha; @@ -2523,7 +2524,6 @@ enum rscn_addr_format { typedef struct fc_port { struct list_head list; struct scsi_qla_host *vha; - struct list_head tmf_pending; unsigned int conf_compl_supported:1; unsigned int deleted:2; @@ -2544,9 +2544,6 @@ typedef struct fc_port { unsigned int do_prli_nvme:1; uint8_t nvme_flag; - uint8_t active_tmf; -#define MAX_ACTIVE_TMF 8 - uint8_t node_name[WWN_SIZE]; uint8_t port_name[WWN_SIZE]; port_id_t d_id; @@ -3464,6 +3461,7 @@ struct qla_msix_entry { int have_irq; int in_use; uint32_t vector; + uint32_t vector_base0; uint16_t entry; char name[30]; void *handle; @@ -3729,6 +3727,16 @@ struct qla_fw_resources { u16 pad; }; +struct qla_fw_res { + u16 iocb_total; + u16 iocb_limit; + atomic_t iocb_used; + + u16 exch_total; + u16 exch_limit; + atomic_t exch_used; +}; + #define QLA_IOCB_PCT_LIMIT 95 /*Queue pair data structure */ @@ -3783,6 +3791,7 @@ struct qla_qpair { uint64_t retry_term_jiff; struct qla_tgt_counters tgt_counters; uint16_t cpuid; + bool cpu_mapped; struct qla_fw_resources fwres ____cacheline_aligned; u32 cmd_cnt; u32 cmd_completion_cnt; @@ -4112,6 +4121,7 @@ struct qla_hw_data { struct req_que **req_q_map; struct rsp_que **rsp_q_map; struct qla_qpair **queue_pair_map; + struct qla_qpair **qp_cpu_map; unsigned long req_qid_map[(QLA_MAX_QUEUES / 8) / sizeof(unsigned long)]; unsigned long rsp_qid_map[(QLA_MAX_QUEUES / 8) / sizeof(unsigned long)]; unsigned long qpair_qid_map[(QLA_MAX_QUEUES / 8) @@ -4356,7 +4366,6 @@ struct qla_hw_data { uint8_t aen_mbx_count; atomic_t num_pend_mbx_stage1; atomic_t num_pend_mbx_stage2; - atomic_t num_pend_mbx_stage3; uint16_t frame_payload_size; uint32_t login_retry_count; @@ -4626,6 +4635,8 @@ struct qla_hw_data { uint32_t flt_region_aux_img_status_sec; }; uint8_t active_image; + uint8_t active_tmf; +#define MAX_ACTIVE_TMF 8 /* Needed for BEACON */ uint16_t beacon_blink_led; @@ -4640,6 +4651,8 @@ struct qla_hw_data { struct qla_msix_entry *msix_entries; + struct list_head tmf_pending; + struct list_head tmf_active; struct list_head vp_list; /* list of VP */ unsigned long vp_idx_map[(MAX_MULTI_ID_FABRIC / 8) / sizeof(unsigned long)]; @@ -4768,6 +4781,7 @@ struct qla_hw_data { spinlock_t sadb_lock; /* protects list */ struct els_reject elsrej; u8 edif_post_stop_cnt_down; + struct qla_fw_res fwres ____cacheline_aligned; }; #define RX_ELS_SIZE (roundup(sizeof(struct enode) + ELS_MAX_PAYLOAD, SMP_CACHE_BYTES)) diff --git a/drivers/scsi/qla2xxx/qla_dfs.c b/drivers/scsi/qla2xxx/qla_dfs.c index 8f6f56c9584ce..af921fd150d1e 100644 --- a/drivers/scsi/qla2xxx/qla_dfs.c +++ b/drivers/scsi/qla2xxx/qla_dfs.c @@ -116,7 +116,7 @@ qla2x00_dfs_create_rport(scsi_qla_host_t *vha, struct fc_port *fp) sprintf(wwn, "pn-%016llx", wwn_to_u64(fp->port_name)); fp->dfs_rport_dir = debugfs_create_dir(wwn, vha->dfs_rport_root); - if (!fp->dfs_rport_dir) + if (IS_ERR(fp->dfs_rport_dir)) return; if (NVME_TARGET(vha->hw, fp)) debugfs_create_file("dev_loss_tmo", 0600, fp->dfs_rport_dir, @@ -276,6 +276,16 @@ qla_dfs_fw_resource_cnt_show(struct seq_file *s, void *unused) seq_printf(s, "estimate exchange used[%d] high water limit [%d] n", exch_used, ha->base_qpair->fwres.exch_limit); + + if (ql2xenforce_iocb_limit == 2) { + iocbs_used = atomic_read(&ha->fwres.iocb_used); + exch_used = atomic_read(&ha->fwres.exch_used); + seq_printf(s, " estimate iocb2 used [%d] high water limit [%d]\n", + iocbs_used, ha->fwres.iocb_limit); + + seq_printf(s, " estimate exchange2 used[%d] high water limit [%d] \n", + exch_used, ha->fwres.exch_limit); + } } return 0; @@ -605,14 +615,14 @@ qla2x00_dfs_setup(scsi_qla_host_t *vha) if (IS_QLA27XX(ha) || IS_QLA83XX(ha) || IS_QLA28XX(ha)) { ha->tgt.dfs_naqp = debugfs_create_file("naqp", 0400, ha->dfs_dir, vha, &dfs_naqp_ops); - if (!ha->tgt.dfs_naqp) { + if (IS_ERR(ha->tgt.dfs_naqp)) { ql_log(ql_log_warn, vha, 0xd011, "Unable to create debugFS naqp node.\n"); goto out; } } vha->dfs_rport_root = debugfs_create_dir("rports", ha->dfs_dir); - if (!vha->dfs_rport_root) { + if (IS_ERR(vha->dfs_rport_root)) { ql_log(ql_log_warn, vha, 0xd012, "Unable to create debugFS rports node.\n"); goto out; diff --git a/drivers/scsi/qla2xxx/qla_gbl.h b/drivers/scsi/qla2xxx/qla_gbl.h index 9e467262c0f17..3861e41a8d2cd 100644 --- a/drivers/scsi/qla2xxx/qla_gbl.h +++ b/drivers/scsi/qla2xxx/qla_gbl.h @@ -143,6 +143,7 @@ void qla_edif_sess_down(struct scsi_qla_host *vha, struct fc_port *sess); void qla_edif_clear_appdata(struct scsi_qla_host *vha, struct fc_port *fcport); const char *sc_to_str(uint16_t cmd); +void qla_adjust_iocb_limit(scsi_qla_host_t *vha); /* * Global Data in qla_os.c source file. diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index a97872b6350ca..b59d5b560a278 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c @@ -503,6 +503,7 @@ static void qla24xx_handle_adisc_event(scsi_qla_host_t *vha, struct event_arg *ea) { struct fc_port *fcport = ea->fcport; + unsigned long flags; ql_dbg(ql_dbg_disc, vha, 0x20d2, "%s %8phC DS %d LS %d rc %d login %d|%d rscn %d|%d lid %d\n", @@ -517,9 +518,15 @@ void qla24xx_handle_adisc_event(scsi_qla_host_t *vha, struct event_arg *ea) ql_dbg(ql_dbg_disc, vha, 0x2066, "%s %8phC: adisc fail: post delete\n", __func__, ea->fcport->port_name); + + spin_lock_irqsave(&vha->work_lock, flags); /* deleted = 0 & logout_on_delete = force fw cleanup */ - fcport->deleted = 0; + if (fcport->deleted == QLA_SESS_DELETED) + fcport->deleted = 0; + fcport->logout_on_delete = 1; + spin_unlock_irqrestore(&vha->work_lock, flags); + qlt_schedule_sess_for_deletion(ea->fcport); return; } @@ -1129,7 +1136,7 @@ int qla24xx_async_gnl(struct scsi_qla_host *vha, fc_port_t *fcport) u16 *mb; if (!vha->flags.online || (fcport->flags & FCF_ASYNC_SENT)) - return rval; + goto done; ql_dbg(ql_dbg_disc, vha, 0x20d9, "Async-gnlist WWPN %8phC \n", fcport->port_name); @@ -1183,8 +1190,9 @@ int qla24xx_async_gnl(struct scsi_qla_host *vha, fc_port_t *fcport) done_free_sp: /* ref: INIT */ kref_put(&sp->cmd_kref, qla2x00_sp_release); + fcport->flags &= ~(FCF_ASYNC_SENT); done: - fcport->flags &= ~(FCF_ASYNC_ACTIVE | FCF_ASYNC_SENT); + fcport->flags &= ~(FCF_ASYNC_ACTIVE); return rval; } @@ -1441,7 +1449,6 @@ void __qla24xx_handle_gpdb_event(scsi_qla_host_t *vha, struct event_arg *ea) spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags); ea->fcport->login_gen++; - ea->fcport->deleted = 0; ea->fcport->logout_on_delete = 1; if (!ea->fcport->login_succ && !IS_SW_RESV_ADDR(ea->fcport->d_id)) { @@ -1998,12 +2005,11 @@ qla2x00_tmf_iocb_timeout(void *data) int rc, h; unsigned long flags; - if (sp->type == SRB_MARKER) { - complete(&tmf->u.tmf.comp); - return; - } + if (sp->type == SRB_MARKER) + rc = QLA_FUNCTION_FAILED; + else + rc = qla24xx_async_abort_cmd(sp, false); - rc = qla24xx_async_abort_cmd(sp, false); if (rc) { spin_lock_irqsave(sp->qpair->qp_lock_ptr, flags); for (h = 1; h < sp->qpair->req->num_outstanding_cmds; h++) { @@ -2034,10 +2040,14 @@ static void qla_marker_sp_done(srb_t *sp, int res) complete(&tmf->u.tmf.comp); } -#define START_SP_W_RETRIES(_sp, _rval) \ +#define START_SP_W_RETRIES(_sp, _rval, _chip_gen, _login_gen) \ {\ int cnt = 5; \ do { \ + if (_chip_gen != sp->vha->hw->chip_reset || _login_gen != sp->fcport->login_gen) {\ + _rval = EINVAL; \ + break; \ + } \ _rval = qla2x00_start_sp(_sp); \ if (_rval == EAGAIN) \ msleep(1); \ @@ -2060,6 +2070,7 @@ qla26xx_marker(struct tmf_arg *arg) srb_t *sp; int rval = QLA_FUNCTION_FAILED; fc_port_t *fcport = arg->fcport; + u32 chip_gen, login_gen; if (TMF_NOT_READY(arg->fcport)) { ql_dbg(ql_dbg_taskm, vha, 0x8039, @@ -2069,6 +2080,9 @@ qla26xx_marker(struct tmf_arg *arg) return QLA_SUSPENDED; } + chip_gen = vha->hw->chip_reset; + login_gen = fcport->login_gen; + /* ref: INIT */ sp = qla2xxx_get_qpair_sp(vha, arg->qpair, fcport, GFP_KERNEL); if (!sp) @@ -2086,7 +2100,7 @@ qla26xx_marker(struct tmf_arg *arg) tm_iocb->u.tmf.loop_id = fcport->loop_id; tm_iocb->u.tmf.vp_index = vha->vp_idx; - START_SP_W_RETRIES(sp, rval); + START_SP_W_RETRIES(sp, rval, chip_gen, login_gen); ql_dbg(ql_dbg_taskm, vha, 0x8006, "Async-marker hdl=%x loop-id=%x portid=%06x modifier=%x lun=%lld qp=%d rval %d.\n", @@ -2125,6 +2139,17 @@ static void qla2x00_tmf_sp_done(srb_t *sp, int res) complete(&tmf->u.tmf.comp); } +static int qla_tmf_wait(struct tmf_arg *arg) +{ + /* there are only 2 types of error handling that reaches here, lun or target reset */ + if (arg->flags & (TCF_LUN_RESET | TCF_ABORT_TASK_SET | TCF_CLEAR_TASK_SET)) + return qla2x00_eh_wait_for_pending_commands(arg->vha, + arg->fcport->d_id.b24, arg->lun, WAIT_LUN); + else + return qla2x00_eh_wait_for_pending_commands(arg->vha, + arg->fcport->d_id.b24, arg->lun, WAIT_TARGET); +} + static int __qla2x00_async_tm_cmd(struct tmf_arg *arg) { @@ -2132,8 +2157,9 @@ __qla2x00_async_tm_cmd(struct tmf_arg *arg) struct srb_iocb *tm_iocb; srb_t *sp; int rval = QLA_FUNCTION_FAILED; - fc_port_t *fcport = arg->fcport; + u32 chip_gen, login_gen; + u64 jif; if (TMF_NOT_READY(arg->fcport)) { ql_dbg(ql_dbg_taskm, vha, 0x8032, @@ -2143,6 +2169,9 @@ __qla2x00_async_tm_cmd(struct tmf_arg *arg) return QLA_SUSPENDED; } + chip_gen = vha->hw->chip_reset; + login_gen = fcport->login_gen; + /* ref: INIT */ sp = qla2xxx_get_qpair_sp(vha, arg->qpair, fcport, GFP_KERNEL); if (!sp) @@ -2160,7 +2189,7 @@ __qla2x00_async_tm_cmd(struct tmf_arg *arg) tm_iocb->u.tmf.flags = arg->flags; tm_iocb->u.tmf.lun = arg->lun; - START_SP_W_RETRIES(sp, rval); + START_SP_W_RETRIES(sp, rval, chip_gen, login_gen); ql_dbg(ql_dbg_taskm, vha, 0x802f, "Async-tmf hdl=%x loop-id=%x portid=%06x ctrl=%x lun=%lld qp=%d rval=%x.\n", @@ -2178,8 +2207,26 @@ __qla2x00_async_tm_cmd(struct tmf_arg *arg) "TM IOCB failed (%x).\n", rval); } - if (!test_bit(UNLOADING, &vha->dpc_flags) && !IS_QLAFX00(vha->hw)) - rval = qla26xx_marker(arg); + if (!test_bit(UNLOADING, &vha->dpc_flags) && !IS_QLAFX00(vha->hw)) { + jif = jiffies; + if (qla_tmf_wait(arg)) { + ql_log(ql_log_info, vha, 0x803e, + "Waited %u ms Nexus=%ld:%06x:%llu.\n", + jiffies_to_msecs(jiffies - jif), vha->host_no, + fcport->d_id.b24, arg->lun); + } + + if (chip_gen == vha->hw->chip_reset && login_gen == fcport->login_gen) { + rval = qla26xx_marker(arg); + } else { + ql_log(ql_log_info, vha, 0x803e, + "Skip Marker due to disruption. Nexus=%ld:%06x:%llu.\n", + vha->host_no, fcport->d_id.b24, arg->lun); + rval = QLA_FUNCTION_FAILED; + } + } + if (tm_iocb->u.tmf.data) + rval = tm_iocb->u.tmf.data; done_free_sp: /* ref: INIT */ @@ -2188,30 +2235,42 @@ __qla2x00_async_tm_cmd(struct tmf_arg *arg) return rval; } -static void qla_put_tmf(fc_port_t *fcport) +static void qla_put_tmf(struct tmf_arg *arg) { - struct scsi_qla_host *vha = fcport->vha; + struct scsi_qla_host *vha = arg->vha; struct qla_hw_data *ha = vha->hw; unsigned long flags; spin_lock_irqsave(&ha->tgt.sess_lock, flags); - fcport->active_tmf--; + ha->active_tmf--; + list_del(&arg->tmf_elem); spin_unlock_irqrestore(&ha->tgt.sess_lock, flags); } static -int qla_get_tmf(fc_port_t *fcport) +int qla_get_tmf(struct tmf_arg *arg) { - struct scsi_qla_host *vha = fcport->vha; + struct scsi_qla_host *vha = arg->vha; struct qla_hw_data *ha = vha->hw; unsigned long flags; + fc_port_t *fcport = arg->fcport; int rc = 0; - LIST_HEAD(tmf_elem); + struct tmf_arg *t; spin_lock_irqsave(&ha->tgt.sess_lock, flags); - list_add_tail(&tmf_elem, &fcport->tmf_pending); + list_for_each_entry(t, &ha->tmf_active, tmf_elem) { + if (t->fcport == arg->fcport && t->lun == arg->lun) { + /* reject duplicate TMF */ + ql_log(ql_log_warn, vha, 0x802c, + "found duplicate TMF. Nexus=%ld:%06x:%llu.\n", + vha->host_no, fcport->d_id.b24, arg->lun); + spin_unlock_irqrestore(&ha->tgt.sess_lock, flags); + return -EINVAL; + } + } - while (fcport->active_tmf >= MAX_ACTIVE_TMF) { + list_add_tail(&arg->tmf_elem, &ha->tmf_pending); + while (ha->active_tmf >= MAX_ACTIVE_TMF) { spin_unlock_irqrestore(&ha->tgt.sess_lock, flags); msleep(1); @@ -2223,15 +2282,17 @@ int qla_get_tmf(fc_port_t *fcport) rc = EIO; break; } - if (fcport->active_tmf < MAX_ACTIVE_TMF && - list_is_first(&tmf_elem, &fcport->tmf_pending)) + if (ha->active_tmf < MAX_ACTIVE_TMF && + list_is_first(&arg->tmf_elem, &ha->tmf_pending)) break; } - list_del(&tmf_elem); + list_del(&arg->tmf_elem); - if (!rc) - fcport->active_tmf++; + if (!rc) { + ha->active_tmf++; + list_add_tail(&arg->tmf_elem, &ha->tmf_active); + } spin_unlock_irqrestore(&ha->tgt.sess_lock, flags); @@ -2243,9 +2304,8 @@ qla2x00_async_tm_cmd(fc_port_t *fcport, uint32_t flags, uint64_t lun, uint32_t tag) { struct scsi_qla_host *vha = fcport->vha; - struct qla_qpair *qpair; struct tmf_arg a; - int i, rval = QLA_SUCCESS; + int rval = QLA_SUCCESS; if (TMF_NOT_READY(fcport)) return QLA_SUSPENDED; @@ -2253,47 +2313,22 @@ qla2x00_async_tm_cmd(fc_port_t *fcport, uint32_t flags, uint64_t lun, a.vha = fcport->vha; a.fcport = fcport; a.lun = lun; + a.flags = flags; + INIT_LIST_HEAD(&a.tmf_elem); + if (flags & (TCF_LUN_RESET|TCF_ABORT_TASK_SET|TCF_CLEAR_TASK_SET|TCF_CLEAR_ACA)) { a.modifier = MK_SYNC_ID_LUN; - - if (qla_get_tmf(fcport)) - return QLA_FUNCTION_FAILED; } else { a.modifier = MK_SYNC_ID; } - if (vha->hw->mqenable) { - for (i = 0; i < vha->hw->num_qpairs; i++) { - qpair = vha->hw->queue_pair_map[i]; - if (!qpair) - continue; - - if (TMF_NOT_READY(fcport)) { - ql_log(ql_log_warn, vha, 0x8026, - "Unable to send TM due to disruption.\n"); - rval = QLA_SUSPENDED; - break; - } - - a.qpair = qpair; - a.flags = flags|TCF_NOTMCMD_TO_TARGET; - rval = __qla2x00_async_tm_cmd(&a); - if (rval) - break; - } - } - - if (rval) - goto bailout; + if (qla_get_tmf(&a)) + return QLA_FUNCTION_FAILED; a.qpair = vha->hw->base_qpair; - a.flags = flags; rval = __qla2x00_async_tm_cmd(&a); -bailout: - if (a.modifier == MK_SYNC_ID_LUN) - qla_put_tmf(fcport); - + qla_put_tmf(&a); return rval; } @@ -4149,39 +4184,61 @@ qla24xx_detect_sfp(scsi_qla_host_t *vha) return ha->flags.lr_detected; } -void qla_init_iocb_limit(scsi_qla_host_t *vha) +static void __qla_adjust_iocb_limit(struct qla_qpair *qpair) { - u16 i, num_qps; - u32 limit; - struct qla_hw_data *ha = vha->hw; + u8 num_qps; + u16 limit; + struct qla_hw_data *ha = qpair->vha->hw; num_qps = ha->num_qpairs + 1; limit = (ha->orig_fw_iocb_count * QLA_IOCB_PCT_LIMIT) / 100; - ha->base_qpair->fwres.iocbs_total = ha->orig_fw_iocb_count; - ha->base_qpair->fwres.iocbs_limit = limit; - ha->base_qpair->fwres.iocbs_qp_limit = limit / num_qps; - ha->base_qpair->fwres.iocbs_used = 0; + qpair->fwres.iocbs_total = ha->orig_fw_iocb_count; + qpair->fwres.iocbs_limit = limit; + qpair->fwres.iocbs_qp_limit = limit / num_qps; - ha->base_qpair->fwres.exch_total = ha->orig_fw_xcb_count; - ha->base_qpair->fwres.exch_limit = (ha->orig_fw_xcb_count * - QLA_IOCB_PCT_LIMIT) / 100; + qpair->fwres.exch_total = ha->orig_fw_xcb_count; + qpair->fwres.exch_limit = (ha->orig_fw_xcb_count * + QLA_IOCB_PCT_LIMIT) / 100; +} + +void qla_init_iocb_limit(scsi_qla_host_t *vha) +{ + u8 i; + struct qla_hw_data *ha = vha->hw; + + __qla_adjust_iocb_limit(ha->base_qpair); + ha->base_qpair->fwres.iocbs_used = 0; ha->base_qpair->fwres.exch_used = 0; for (i = 0; i < ha->max_qpairs; i++) { if (ha->queue_pair_map[i]) { - ha->queue_pair_map[i]->fwres.iocbs_total = - ha->orig_fw_iocb_count; - ha->queue_pair_map[i]->fwres.iocbs_limit = limit; - ha->queue_pair_map[i]->fwres.iocbs_qp_limit = - limit / num_qps; + __qla_adjust_iocb_limit(ha->queue_pair_map[i]); ha->queue_pair_map[i]->fwres.iocbs_used = 0; - ha->queue_pair_map[i]->fwres.exch_total = ha->orig_fw_xcb_count; - ha->queue_pair_map[i]->fwres.exch_limit = - (ha->orig_fw_xcb_count * QLA_IOCB_PCT_LIMIT) / 100; ha->queue_pair_map[i]->fwres.exch_used = 0; } } + + ha->fwres.iocb_total = ha->orig_fw_iocb_count; + ha->fwres.iocb_limit = (ha->orig_fw_iocb_count * QLA_IOCB_PCT_LIMIT) / 100; + ha->fwres.exch_total = ha->orig_fw_xcb_count; + ha->fwres.exch_limit = (ha->orig_fw_xcb_count * QLA_IOCB_PCT_LIMIT) / 100; + + atomic_set(&ha->fwres.iocb_used, 0); + atomic_set(&ha->fwres.exch_used, 0); +} + +void qla_adjust_iocb_limit(scsi_qla_host_t *vha) +{ + u8 i; + struct qla_hw_data *ha = vha->hw; + + __qla_adjust_iocb_limit(ha->base_qpair); + + for (i = 0; i < ha->max_qpairs; i++) { + if (ha->queue_pair_map[i]) + __qla_adjust_iocb_limit(ha->queue_pair_map[i]); + } } /** @@ -4779,15 +4836,16 @@ qla2x00_init_rings(scsi_qla_host_t *vha) if (ha->flags.edif_enabled) mid_init_cb->init_cb.frame_payload_size = cpu_to_le16(ELS_MAX_PAYLOAD); + QLA_FW_STARTED(ha); rval = qla2x00_init_firmware(vha, ha->init_cb_size); next_check: if (rval) { + QLA_FW_STOPPED(ha); ql_log(ql_log_fatal, vha, 0x00d2, "Init Firmware **** FAILED ****.\n"); } else { ql_dbg(ql_dbg_init, vha, 0x00d3, "Init Firmware -- success.\n"); - QLA_FW_STARTED(ha); vha->u_ql2xexchoffld = vha->u_ql2xiniexchg = 0; } @@ -5529,7 +5587,6 @@ qla2x00_alloc_fcport(scsi_qla_host_t *vha, gfp_t flags) INIT_WORK(&fcport->reg_work, qla_register_fcport_fn); INIT_LIST_HEAD(&fcport->gnl_entry); INIT_LIST_HEAD(&fcport->list); - INIT_LIST_HEAD(&fcport->tmf_pending); INIT_LIST_HEAD(&fcport->sess_cmd_list); spin_lock_init(&fcport->sess_cmd_lock); @@ -5575,7 +5632,7 @@ static void qla_get_login_template(scsi_qla_host_t *vha) __be32 *q; memset(ha->init_cb, 0, ha->init_cb_size); - sz = min_t(int, sizeof(struct fc_els_csp), ha->init_cb_size); + sz = min_t(int, sizeof(struct fc_els_flogi), ha->init_cb_size); rval = qla24xx_get_port_login_templ(vha, ha->init_cb_dma, ha->init_cb, sz); if (rval != QLA_SUCCESS) { @@ -6120,6 +6177,8 @@ qla2x00_reg_remote_port(scsi_qla_host_t *vha, fc_port_t *fcport) void qla2x00_update_fcport(scsi_qla_host_t *vha, fc_port_t *fcport) { + unsigned long flags; + if (IS_SW_RESV_ADDR(fcport->d_id)) return; @@ -6129,7 +6188,11 @@ qla2x00_update_fcport(scsi_qla_host_t *vha, fc_port_t *fcport) qla2x00_set_fcport_disc_state(fcport, DSC_UPD_FCPORT); fcport->login_retry = vha->hw->login_retry_count; fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT); + + spin_lock_irqsave(&vha->work_lock, flags); fcport->deleted = 0; + spin_unlock_irqrestore(&vha->work_lock, flags); + if (vha->hw->current_topology == ISP_CFG_NL) fcport->logout_on_delete = 0; else @@ -7419,14 +7482,15 @@ qla2x00_abort_isp_cleanup(scsi_qla_host_t *vha) } /* purge MBox commands */ - if (atomic_read(&ha->num_pend_mbx_stage3)) { + spin_lock_irqsave(&ha->hardware_lock, flags); + if (test_bit(MBX_INTR_WAIT, &ha->mbx_cmd_flags)) { clear_bit(MBX_INTR_WAIT, &ha->mbx_cmd_flags); complete(&ha->mbx_intr_comp); } + spin_unlock_irqrestore(&ha->hardware_lock, flags); i = 0; - while (atomic_read(&ha->num_pend_mbx_stage3) || - atomic_read(&ha->num_pend_mbx_stage2) || + while (atomic_read(&ha->num_pend_mbx_stage2) || atomic_read(&ha->num_pend_mbx_stage1)) { msleep(20); i++; @@ -9715,8 +9779,9 @@ struct qla_qpair *qla2xxx_create_qpair(struct scsi_qla_host *vha, int qos, qpair->req = ha->req_q_map[req_id]; qpair->rsp->req = qpair->req; qpair->rsp->qpair = qpair; - /* init qpair to this cpu. Will adjust at run time. */ - qla_cpu_update(qpair, raw_smp_processor_id()); + + if (!qpair->cpu_mapped) + qla_cpu_update(qpair, raw_smp_processor_id()); if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) { if (ha->fw_attributes & BIT_4) diff --git a/drivers/scsi/qla2xxx/qla_inline.h b/drivers/scsi/qla2xxx/qla_inline.h index a034699e58ae9..a4a56ab0ba747 100644 --- a/drivers/scsi/qla2xxx/qla_inline.h +++ b/drivers/scsi/qla2xxx/qla_inline.h @@ -386,6 +386,7 @@ enum { RESOURCE_IOCB = BIT_0, RESOURCE_EXCH = BIT_1, /* exchange */ RESOURCE_FORCE = BIT_2, + RESOURCE_HA = BIT_3, }; static inline int @@ -393,7 +394,7 @@ qla_get_fw_resources(struct qla_qpair *qp, struct iocb_resource *iores) { u16 iocbs_used, i; u16 exch_used; - struct qla_hw_data *ha = qp->vha->hw; + struct qla_hw_data *ha = qp->hw; if (!ql2xenforce_iocb_limit) { iores->res_type = RESOURCE_NONE; @@ -428,15 +429,69 @@ qla_get_fw_resources(struct qla_qpair *qp, struct iocb_resource *iores) return -ENOSPC; } } + + if (ql2xenforce_iocb_limit == 2) { + if ((iores->iocb_cnt + atomic_read(&ha->fwres.iocb_used)) >= + ha->fwres.iocb_limit) { + iores->res_type = RESOURCE_NONE; + return -ENOSPC; + } + + if (iores->res_type & RESOURCE_EXCH) { + if ((iores->exch_cnt + atomic_read(&ha->fwres.exch_used)) >= + ha->fwres.exch_limit) { + iores->res_type = RESOURCE_NONE; + return -ENOSPC; + } + } + } + force: qp->fwres.iocbs_used += iores->iocb_cnt; qp->fwres.exch_used += iores->exch_cnt; + if (ql2xenforce_iocb_limit == 2) { + atomic_add(iores->iocb_cnt, &ha->fwres.iocb_used); + atomic_add(iores->exch_cnt, &ha->fwres.exch_used); + iores->res_type |= RESOURCE_HA; + } return 0; } +/* + * decrement to zero. This routine will not decrement below zero + * @v: pointer of type atomic_t + * @amount: amount to decrement from v + */ +static void qla_atomic_dtz(atomic_t *v, int amount) +{ + int c, old, dec; + + c = atomic_read(v); + for (;;) { + dec = c - amount; + if (unlikely(dec < 0)) + dec = 0; + + old = atomic_cmpxchg((v), c, dec); + if (likely(old == c)) + break; + c = old; + } +} + static inline void qla_put_fw_resources(struct qla_qpair *qp, struct iocb_resource *iores) { + struct qla_hw_data *ha = qp->hw; + + if (iores->res_type & RESOURCE_HA) { + if (iores->res_type & RESOURCE_IOCB) + qla_atomic_dtz(&ha->fwres.iocb_used, iores->iocb_cnt); + + if (iores->res_type & RESOURCE_EXCH) + qla_atomic_dtz(&ha->fwres.exch_used, iores->exch_cnt); + } + if (iores->res_type & RESOURCE_IOCB) { if (qp->fwres.iocbs_used >= iores->iocb_cnt) { qp->fwres.iocbs_used -= iores->iocb_cnt; @@ -518,3 +573,61 @@ fcport_is_bigger(fc_port_t *fcport) { return !fcport_is_smaller(fcport); } + +static inline struct qla_qpair * +qla_mapq_nvme_select_qpair(struct qla_hw_data *ha, struct qla_qpair *qpair) +{ + int cpuid = raw_smp_processor_id(); + + if (qpair->cpuid != cpuid && + ha->qp_cpu_map[cpuid]) { + qpair = ha->qp_cpu_map[cpuid]; + } + return qpair; +} + +static inline void +qla_mapq_init_qp_cpu_map(struct qla_hw_data *ha, + struct qla_msix_entry *msix, + struct qla_qpair *qpair) +{ + const struct cpumask *mask; + unsigned int cpu; + + if (!ha->qp_cpu_map) + return; + mask = pci_irq_get_affinity(ha->pdev, msix->vector_base0); + if (!mask) + return; + qpair->cpuid = cpumask_first(mask); + for_each_cpu(cpu, mask) { + ha->qp_cpu_map[cpu] = qpair; + } + msix->cpuid = qpair->cpuid; + qpair->cpu_mapped = true; +} + +static inline void +qla_mapq_free_qp_cpu_map(struct qla_hw_data *ha) +{ + if (ha->qp_cpu_map) { + kfree(ha->qp_cpu_map); + ha->qp_cpu_map = NULL; + } +} + +static inline int qla_mapq_alloc_qp_cpu_map(struct qla_hw_data *ha) +{ + scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev); + + if (!ha->qp_cpu_map) { + ha->qp_cpu_map = kcalloc(NR_CPUS, sizeof(struct qla_qpair *), + GFP_KERNEL); + if (!ha->qp_cpu_map) { + ql_log(ql_log_fatal, vha, 0x0180, + "Unable to allocate memory for qp_cpu_map ptrs.\n"); + return -1; + } + } + return 0; +} diff --git a/drivers/scsi/qla2xxx/qla_iocb.c b/drivers/scsi/qla2xxx/qla_iocb.c index c9a686f06d29d..9e524d52dc862 100644 --- a/drivers/scsi/qla2xxx/qla_iocb.c +++ b/drivers/scsi/qla2xxx/qla_iocb.c @@ -3887,6 +3887,7 @@ qla_marker_iocb(srb_t *sp, struct mrk_entry_24xx *mrk) { mrk->entry_type = MARKER_TYPE; mrk->modifier = sp->u.iocb_cmd.u.tmf.modifier; + mrk->handle = make_handle(sp->qpair->req->id, sp->handle); if (sp->u.iocb_cmd.u.tmf.modifier != MK_SYNC_ALL) { mrk->nport_handle = cpu_to_le16(sp->u.iocb_cmd.u.tmf.loop_id); int_to_scsilun(sp->u.iocb_cmd.u.tmf.lun, (struct scsi_lun *)&mrk->lun); diff --git a/drivers/scsi/qla2xxx/qla_isr.c b/drivers/scsi/qla2xxx/qla_isr.c index 08d43f43995ef..51e906fa8694e 100644 --- a/drivers/scsi/qla2xxx/qla_isr.c +++ b/drivers/scsi/qla2xxx/qla_isr.c @@ -1121,8 +1121,12 @@ qla2x00_async_event(scsi_qla_host_t *vha, struct rsp_que *rsp, uint16_t *mb) unsigned long flags; fc_port_t *fcport = NULL; - if (!vha->hw->flags.fw_started) + if (!vha->hw->flags.fw_started) { + ql_log(ql_log_warn, vha, 0x50ff, + "Dropping AEN - %04x %04x %04x %04x.\n", + mb[0], mb[1], mb[2], mb[3]); return; + } /* Setup to process RIO completion. */ handle_cnt = 0; @@ -2513,7 +2517,6 @@ qla24xx_tm_iocb_entry(scsi_qla_host_t *vha, struct req_que *req, void *tsk) case CS_PORT_BUSY: case CS_INCOMPLETE: case CS_PORT_UNAVAILABLE: - case CS_TIMEOUT: case CS_RESET: if (atomic_read(&fcport->state) == FCS_ONLINE) { ql_dbg(ql_dbg_disc, fcport->vha, 0x3021, @@ -3777,9 +3780,11 @@ void qla24xx_process_response_queue(struct scsi_qla_host *vha, if (!ha->flags.fw_started) return; - if (rsp->qpair->cpuid != smp_processor_id() || !rsp->qpair->rcv_intr) { + if (rsp->qpair->cpuid != raw_smp_processor_id() || !rsp->qpair->rcv_intr) { rsp->qpair->rcv_intr = 1; - qla_cpu_update(rsp->qpair, smp_processor_id()); + + if (!rsp->qpair->cpu_mapped) + qla_cpu_update(rsp->qpair, raw_smp_processor_id()); } #define __update_rsp_in(_update, _is_shadow_hba, _rsp, _rsp_in) \ @@ -4274,7 +4279,7 @@ qla2xxx_msix_rsp_q(int irq, void *dev_id) } ha = qpair->hw; - queue_work_on(smp_processor_id(), ha->wq, &qpair->q_work); + queue_work(ha->wq, &qpair->q_work); return IRQ_HANDLED; } @@ -4300,7 +4305,7 @@ qla2xxx_msix_rsp_q_hs(int irq, void *dev_id) wrt_reg_dword(®->hccr, HCCRX_CLR_RISC_INT); spin_unlock_irqrestore(&ha->hardware_lock, flags); - queue_work_on(smp_processor_id(), ha->wq, &qpair->q_work); + queue_work(ha->wq, &qpair->q_work); return IRQ_HANDLED; } @@ -4393,6 +4398,7 @@ qla24xx_enable_msix(struct qla_hw_data *ha, struct rsp_que *rsp) for (i = 0; i < ha->msix_count; i++) { qentry = &ha->msix_entries[i]; qentry->vector = pci_irq_vector(ha->pdev, i); + qentry->vector_base0 = i; qentry->entry = i; qentry->have_irq = 0; qentry->in_use = 0; @@ -4620,5 +4626,6 @@ int qla25xx_request_irq(struct qla_hw_data *ha, struct qla_qpair *qpair, } msix->have_irq = 1; msix->handle = qpair; + qla_mapq_init_qp_cpu_map(ha, msix, qpair); return ret; } diff --git a/drivers/scsi/qla2xxx/qla_mbx.c b/drivers/scsi/qla2xxx/qla_mbx.c index 5bcb8da4360f2..511f31611aede 100644 --- a/drivers/scsi/qla2xxx/qla_mbx.c +++ b/drivers/scsi/qla2xxx/qla_mbx.c @@ -273,7 +273,6 @@ qla2x00_mailbox_command(scsi_qla_host_t *vha, mbx_cmd_t *mcp) spin_unlock_irqrestore(&ha->hardware_lock, flags); wait_time = jiffies; - atomic_inc(&ha->num_pend_mbx_stage3); if (!wait_for_completion_timeout(&ha->mbx_intr_comp, mcp->tov * HZ)) { ql_dbg(ql_dbg_mbx, vha, 0x117a, @@ -290,7 +289,6 @@ qla2x00_mailbox_command(scsi_qla_host_t *vha, mbx_cmd_t *mcp) spin_unlock_irqrestore(&ha->hardware_lock, flags); atomic_dec(&ha->num_pend_mbx_stage2); - atomic_dec(&ha->num_pend_mbx_stage3); rval = QLA_ABORTED; goto premature_exit; } @@ -302,11 +300,9 @@ qla2x00_mailbox_command(scsi_qla_host_t *vha, mbx_cmd_t *mcp) ha->flags.mbox_busy = 0; spin_unlock_irqrestore(&ha->hardware_lock, flags); atomic_dec(&ha->num_pend_mbx_stage2); - atomic_dec(&ha->num_pend_mbx_stage3); rval = QLA_ABORTED; goto premature_exit; } - atomic_dec(&ha->num_pend_mbx_stage3); if (time_after(jiffies, wait_time + 5 * HZ)) ql_log(ql_log_warn, vha, 0x1015, "cmd=0x%x, waited %d msecs\n", @@ -2207,6 +2203,9 @@ qla2x00_get_firmware_state(scsi_qla_host_t *vha, uint16_t *states) ql_dbg(ql_dbg_mbx + ql_dbg_verbose, vha, 0x1054, "Entered %s.\n", __func__); + if (!ha->flags.fw_started) + return QLA_FUNCTION_FAILED; + mcp->mb[0] = MBC_GET_FIRMWARE_STATE; mcp->out_mb = MBX_0; if (IS_FWI2_CAPABLE(vha->hw)) diff --git a/drivers/scsi/qla2xxx/qla_nvme.c b/drivers/scsi/qla2xxx/qla_nvme.c index 53a54e8a4d97f..088e84042efc7 100644 --- a/drivers/scsi/qla2xxx/qla_nvme.c +++ b/drivers/scsi/qla2xxx/qla_nvme.c @@ -127,6 +127,7 @@ static int qla_nvme_alloc_queue(struct nvme_fc_local_port *lport, "Failed to allocate qpair\n"); return -EINVAL; } + qla_adjust_iocb_limit(vha); } *handle = qpair; @@ -597,6 +598,7 @@ static int qla_nvme_post_cmd(struct nvme_fc_local_port *lport, fc_port_t *fcport; struct srb_iocb *nvme; struct scsi_qla_host *vha; + struct qla_hw_data *ha; int rval; srb_t *sp; struct qla_qpair *qpair = hw_queue_handle; @@ -617,6 +619,7 @@ static int qla_nvme_post_cmd(struct nvme_fc_local_port *lport, return -ENODEV; vha = fcport->vha; + ha = vha->hw; if (test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) return -EBUSY; @@ -631,6 +634,8 @@ static int qla_nvme_post_cmd(struct nvme_fc_local_port *lport, if (fcport->nvme_flag & NVME_FLAG_RESETTING) return -EBUSY; + qpair = qla_mapq_nvme_select_qpair(ha, qpair); + /* Alloc SRB structure */ sp = qla2xxx_get_qpair_sp(vha, qpair, fcport, GFP_ATOMIC); if (!sp) @@ -652,7 +657,7 @@ static int qla_nvme_post_cmd(struct nvme_fc_local_port *lport, rval = qla2x00_start_nvme_mq(sp); if (rval != QLA_SUCCESS) { - ql_log(ql_log_warn, vha, 0x212d, + ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x212d, "qla2x00_start_nvme_mq failed = %d\n", rval); sp->priv = NULL; priv->sp = NULL; diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi/qla2xxx/qla_os.c index 30325fd4c1204..a2d3f8bb63a01 100644 --- a/drivers/scsi/qla2xxx/qla_os.c +++ b/drivers/scsi/qla2xxx/qla_os.c @@ -40,10 +40,11 @@ module_param(ql2xfulldump_on_mpifail, int, S_IRUGO | S_IWUSR); MODULE_PARM_DESC(ql2xfulldump_on_mpifail, "Set this to take full dump on MPI hang."); -int ql2xenforce_iocb_limit = 1; +int ql2xenforce_iocb_limit = 2; module_param(ql2xenforce_iocb_limit, int, S_IRUGO | S_IWUSR); MODULE_PARM_DESC(ql2xenforce_iocb_limit, - "Enforce IOCB throttling, to avoid FW congestion. (default: 1)"); + "Enforce IOCB throttling, to avoid FW congestion. (default: 2) " + "1: track usage per queue, 2: track usage per adapter"); /* * CT6 CTX allocation cache @@ -466,6 +467,11 @@ static int qla2x00_alloc_queues(struct qla_hw_data *ha, struct req_que *req, "Unable to allocate memory for queue pair ptrs.\n"); goto fail_qpair_map; } + if (qla_mapq_alloc_qp_cpu_map(ha) != 0) { + kfree(ha->queue_pair_map); + ha->queue_pair_map = NULL; + goto fail_qpair_map; + } } /* @@ -540,6 +546,7 @@ static void qla2x00_free_queues(struct qla_hw_data *ha) ha->base_qpair = NULL; } + qla_mapq_free_qp_cpu_map(ha); spin_lock_irqsave(&ha->hardware_lock, flags); for (cnt = 0; cnt < ha->max_req_queues; cnt++) { if (!test_bit(cnt, ha->req_qid_map)) @@ -1470,8 +1477,9 @@ qla2xxx_eh_device_reset(struct scsi_cmnd *cmd) goto eh_reset_failed; } err = 3; - if (qla2x00_eh_wait_for_pending_commands(vha, sdev->id, - sdev->lun, WAIT_LUN) != QLA_SUCCESS) { + if (qla2x00_eh_wait_for_pending_commands(vha, fcport->d_id.b24, + cmd->device->lun, + WAIT_LUN) != QLA_SUCCESS) { ql_log(ql_log_warn, vha, 0x800d, "wait for pending cmds failed for cmd=%p.\n", cmd); goto eh_reset_failed; @@ -1537,8 +1545,8 @@ qla2xxx_eh_target_reset(struct scsi_cmnd *cmd) goto eh_reset_failed; } err = 3; - if (qla2x00_eh_wait_for_pending_commands(vha, sdev->id, - 0, WAIT_TARGET) != QLA_SUCCESS) { + if (qla2x00_eh_wait_for_pending_commands(vha, fcport->d_id.b24, 0, + WAIT_TARGET) != QLA_SUCCESS) { ql_log(ql_log_warn, vha, 0x800d, "wait for pending cmds failed for cmd=%p.\n", cmd); goto eh_reset_failed; @@ -1815,8 +1823,16 @@ static void qla2x00_abort_srb(struct qla_qpair *qp, srb_t *sp, const int res, } spin_lock_irqsave(qp->qp_lock_ptr, *flags); - if (ret_cmd && blk_mq_request_started(scsi_cmd_to_rq(cmd))) - sp->done(sp, res); + switch (sp->type) { + case SRB_SCSI_CMD: + if (ret_cmd && blk_mq_request_started(scsi_cmd_to_rq(cmd))) + sp->done(sp, res); + break; + default: + if (ret_cmd) + sp->done(sp, res); + break; + } } else { sp->done(sp, res); } @@ -2970,9 +2986,10 @@ qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) ha->max_exchg = FW_MAX_EXCHANGES_CNT; atomic_set(&ha->num_pend_mbx_stage1, 0); atomic_set(&ha->num_pend_mbx_stage2, 0); - atomic_set(&ha->num_pend_mbx_stage3, 0); atomic_set(&ha->zio_threshold, DEFAULT_ZIO_THRESHOLD); ha->last_zio_threshold = DEFAULT_ZIO_THRESHOLD; + INIT_LIST_HEAD(&ha->tmf_pending); + INIT_LIST_HEAD(&ha->tmf_active); /* Assign ISP specific operations. */ if (IS_QLA2100(ha)) { @@ -3249,6 +3266,13 @@ qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) host->max_id = ha->max_fibre_devices; host->cmd_per_lun = 3; host->unique_id = host->host_no; + + if (ql2xenabledif && ql2xenabledif != 2) { + ql_log(ql_log_warn, base_vha, 0x302d, + "Invalid value for ql2xenabledif, resetting it to default (2)\n"); + ql2xenabledif = 2; + } + if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) host->max_cmd_len = 32; else @@ -3482,8 +3506,6 @@ qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) base_vha->flags.difdix_supported = 1; ql_dbg(ql_dbg_init, base_vha, 0x00f1, "Registering for DIF/DIX type 1 and 3 protection.\n"); - if (ql2xenabledif == 1) - prot = SHOST_DIX_TYPE0_PROTECTION; if (ql2xprotmask) scsi_host_set_prot(host, ql2xprotmask); else diff --git a/drivers/scsi/qla2xxx/qla_target.c b/drivers/scsi/qla2xxx/qla_target.c index 4b4ca2a9524d9..ef46dce73978a 100644 --- a/drivers/scsi/qla2xxx/qla_target.c +++ b/drivers/scsi/qla2xxx/qla_target.c @@ -1089,10 +1089,6 @@ void qlt_free_session_done(struct work_struct *work) (struct imm_ntfy_from_isp *)sess->iocb, SRB_NACK_LOGO); } - spin_lock_irqsave(&vha->work_lock, flags); - sess->flags &= ~FCF_ASYNC_SENT; - spin_unlock_irqrestore(&vha->work_lock, flags); - spin_lock_irqsave(&ha->tgt.sess_lock, flags); if (sess->se_sess) { sess->se_sess = NULL; @@ -1102,7 +1098,6 @@ void qlt_free_session_done(struct work_struct *work) qla2x00_set_fcport_disc_state(sess, DSC_DELETED); sess->fw_login_state = DSC_LS_PORT_UNAVAIL; - sess->deleted = QLA_SESS_DELETED; if (sess->login_succ && !IS_SW_RESV_ADDR(sess->d_id)) { vha->fcport_count--; @@ -1154,10 +1149,15 @@ void qlt_free_session_done(struct work_struct *work) sess->explicit_logout = 0; spin_unlock_irqrestore(&ha->tgt.sess_lock, flags); - sess->free_pending = 0; qla2x00_dfs_remove_rport(vha, sess); + spin_lock_irqsave(&vha->work_lock, flags); + sess->flags &= ~FCF_ASYNC_SENT; + sess->deleted = QLA_SESS_DELETED; + sess->free_pending = 0; + spin_unlock_irqrestore(&vha->work_lock, flags); + ql_dbg(ql_dbg_disc, vha, 0xf001, "Unregistration of sess %p %8phC finished fcp_cnt %d\n", sess, sess->port_name, vha->fcport_count); @@ -1206,12 +1206,12 @@ void qlt_unreg_sess(struct fc_port *sess) * management from being sent. */ sess->flags |= FCF_ASYNC_SENT; + sess->deleted = QLA_SESS_DELETION_IN_PROGRESS; spin_unlock_irqrestore(&sess->vha->work_lock, flags); if (sess->se_sess) vha->hw->tgt.tgt_ops->clear_nacl_from_fcport_map(sess); - sess->deleted = QLA_SESS_DELETION_IN_PROGRESS; qla2x00_set_fcport_disc_state(sess, DSC_DELETE_PEND); sess->last_rscn_gen = sess->rscn_gen; sess->last_login_gen = sess->login_gen; @@ -4459,8 +4459,7 @@ static int qlt_handle_cmd_for_atio(struct scsi_qla_host *vha, queue_work_on(cmd->se_cmd.cpuid, qla_tgt_wq, &cmd->work); } else if (ha->msix_count) { if (cmd->atio.u.isp24.fcp_cmnd.rddata) - queue_work_on(smp_processor_id(), qla_tgt_wq, - &cmd->work); + queue_work(qla_tgt_wq, &cmd->work); else queue_work_on(cmd->se_cmd.cpuid, qla_tgt_wq, &cmd->work); diff --git a/drivers/scsi/qla2xxx/tcm_qla2xxx.c b/drivers/scsi/qla2xxx/tcm_qla2xxx.c index 03de1bcf1461d..b3852be971e46 100644 --- a/drivers/scsi/qla2xxx/tcm_qla2xxx.c +++ b/drivers/scsi/qla2xxx/tcm_qla2xxx.c @@ -310,7 +310,7 @@ static void tcm_qla2xxx_free_cmd(struct qla_tgt_cmd *cmd) cmd->trc_flags |= TRC_CMD_DONE; INIT_WORK(&cmd->work, tcm_qla2xxx_complete_free); - queue_work_on(smp_processor_id(), tcm_qla2xxx_free_wq, &cmd->work); + queue_work(tcm_qla2xxx_free_wq, &cmd->work); } /* @@ -557,7 +557,7 @@ static void tcm_qla2xxx_handle_data(struct qla_tgt_cmd *cmd) cmd->trc_flags |= TRC_DATA_IN; cmd->cmd_in_wq = 1; INIT_WORK(&cmd->work, tcm_qla2xxx_handle_data_work); - queue_work_on(smp_processor_id(), tcm_qla2xxx_free_wq, &cmd->work); + queue_work(tcm_qla2xxx_free_wq, &cmd->work); } static int tcm_qla2xxx_chk_dif_tags(uint32_t tag) diff --git a/drivers/scsi/qla4xxx/ql4_os.c b/drivers/scsi/qla4xxx/ql4_os.c index f1ea65c6e5f5d..dc466a364fb1f 100644 --- a/drivers/scsi/qla4xxx/ql4_os.c +++ b/drivers/scsi/qla4xxx/ql4_os.c @@ -968,6 +968,11 @@ static int qla4xxx_set_chap_entry(struct Scsi_Host *shost, void *data, int len) memset(&chap_rec, 0, sizeof(chap_rec)); nla_for_each_attr(attr, data, len, rem) { + if (nla_len(attr) < sizeof(*param_info)) { + rc = -EINVAL; + goto exit_set_chap; + } + param_info = nla_data(attr); switch (param_info->param) { @@ -2750,6 +2755,11 @@ qla4xxx_iface_set_param(struct Scsi_Host *shost, void *data, uint32_t len) } nla_for_each_attr(attr, data, len, rem) { + if (nla_len(attr) < sizeof(*iface_param)) { + rval = -EINVAL; + goto exit_init_fw_cb; + } + iface_param = nla_data(attr); if (iface_param->param_type == ISCSI_NET_PARAM) { @@ -8105,6 +8115,11 @@ qla4xxx_sysfs_ddb_set_param(struct iscsi_bus_flash_session *fnode_sess, memset((void *)&chap_tbl, 0, sizeof(chap_tbl)); nla_for_each_attr(attr, data, len, rem) { + if (nla_len(attr) < sizeof(*fnode_param)) { + rc = -EINVAL; + goto exit_set_param; + } + fnode_param = nla_data(attr); switch (fnode_param->param) { diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c index dd9f5778f687d..18b99240a9062 100644 --- a/drivers/scsi/scsi_error.c +++ b/drivers/scsi/scsi_error.c @@ -50,8 +50,6 @@ #include -static void scsi_eh_done(struct scsi_cmnd *scmd); - /* * These should *probably* be handled by the host itself. * Since it is allowed to sleep, it probably should. @@ -542,7 +540,8 @@ enum scsi_disposition scsi_check_sense(struct scsi_cmnd *scmd) /* handler does not care. Drop down to default handling */ } - if (scmd->cmnd[0] == TEST_UNIT_READY && scmd->scsi_done != scsi_eh_done) + if (scmd->cmnd[0] == TEST_UNIT_READY && + scmd->submitter != SUBMITTED_BY_SCSI_ERROR_HANDLER) /* * nasty: for mid-layer issued TURs, we need to return the * actual sense data without any recovery attempt. For eh @@ -804,7 +803,7 @@ static enum scsi_disposition scsi_eh_completed_normally(struct scsi_cmnd *scmd) * scsi_eh_done - Completion function for error handling. * @scmd: Cmd that is done. */ -static void scsi_eh_done(struct scsi_cmnd *scmd) +void scsi_eh_done(struct scsi_cmnd *scmd) { struct completion *eh_action; @@ -1104,7 +1103,7 @@ static enum scsi_disposition scsi_send_eh_cmnd(struct scsi_cmnd *scmd, shost->eh_action = &done; scsi_log_send(scmd); - scmd->scsi_done = scsi_eh_done; + scmd->submitter = SUBMITTED_BY_SCSI_ERROR_HANDLER; /* * Lock sdev->state_mutex to avoid that scsi_device_quiesce() can @@ -1131,6 +1130,7 @@ static enum scsi_disposition scsi_send_eh_cmnd(struct scsi_cmnd *scmd, if (rtn) { if (timeleft > stall_for) { scsi_eh_restore_cmnd(scmd, &ses); + timeleft -= stall_for; msleep(jiffies_to_msecs(stall_for)); goto retry; @@ -2360,11 +2360,6 @@ void scsi_report_device_reset(struct Scsi_Host *shost, int channel, int target) } EXPORT_SYMBOL(scsi_report_device_reset); -static void -scsi_reset_provider_done_command(struct scsi_cmnd *scmd) -{ -} - /** * scsi_ioctl_reset: explicitly reset a host/bus/target/device * @dev: scsi_device to operate on @@ -2401,7 +2396,7 @@ scsi_ioctl_reset(struct scsi_device *dev, int __user *arg) scsi_init_command(dev, scmd); scmd->cmnd = scsi_req(rq)->cmd; - scmd->scsi_done = scsi_reset_provider_done_command; + scmd->submitter = SUBMITTED_BY_SCSI_RESET_IOCTL; memset(&scmd->sdb, 0, sizeof(scmd->sdb)); scmd->cmd_len = 0; diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c index 5525e6ffee537..3dbfd15e6fe79 100644 --- a/drivers/scsi/scsi_lib.c +++ b/drivers/scsi/scsi_lib.c @@ -1576,8 +1576,17 @@ static blk_status_t scsi_prepare_cmd(struct request *req) return scsi_cmd_to_driver(cmd)->init_command(cmd); } -static void scsi_mq_done(struct scsi_cmnd *cmd) +void scsi_done(struct scsi_cmnd *cmd) { + switch (cmd->submitter) { + case SUBMITTED_BY_BLOCK_LAYER: + break; + case SUBMITTED_BY_SCSI_ERROR_HANDLER: + return scsi_eh_done(cmd); + case SUBMITTED_BY_SCSI_RESET_IOCTL: + return; + } + if (unlikely(blk_should_fake_timeout(scsi_cmd_to_rq(cmd)->q))) return; if (unlikely(test_and_set_bit(SCMD_STATE_COMPLETE, &cmd->state))) @@ -1585,6 +1594,7 @@ static void scsi_mq_done(struct scsi_cmnd *cmd) trace_scsi_dispatch_cmd_done(cmd); blk_mq_complete_request(scsi_cmd_to_rq(cmd)); } +EXPORT_SYMBOL(scsi_done); static void scsi_mq_put_budget(struct request_queue *q, int budget_token) { @@ -1684,7 +1694,8 @@ static blk_status_t scsi_queue_rq(struct blk_mq_hw_ctx *hctx, scsi_set_resid(cmd, 0); memset(cmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE); - cmd->scsi_done = scsi_mq_done; + cmd->submitter = SUBMITTED_BY_BLOCK_LAYER; + cmd->scsi_done = scsi_done; blk_mq_start_request(req); reason = scsi_dispatch_cmd(cmd); diff --git a/drivers/scsi/scsi_priv.h b/drivers/scsi/scsi_priv.h index 6d9152031a403..b7f9631493522 100644 --- a/drivers/scsi/scsi_priv.h +++ b/drivers/scsi/scsi_priv.h @@ -84,6 +84,7 @@ void scsi_eh_ready_devs(struct Scsi_Host *shost, int scsi_eh_get_sense(struct list_head *work_q, struct list_head *done_q); int scsi_noretry_cmd(struct scsi_cmnd *scmd); +void scsi_eh_done(struct scsi_cmnd *scmd); /* scsi_lib.c */ extern int scsi_maybe_unblock_host(struct scsi_device *sdev); diff --git a/drivers/scsi/scsi_transport_iscsi.c b/drivers/scsi/scsi_transport_iscsi.c index 4d23e5af20d30..e044b65ee0d08 100644 --- a/drivers/scsi/scsi_transport_iscsi.c +++ b/drivers/scsi/scsi_transport_iscsi.c @@ -3034,14 +3034,15 @@ iscsi_if_destroy_conn(struct iscsi_transport *transport, struct iscsi_uevent *ev } static int -iscsi_set_param(struct iscsi_transport *transport, struct iscsi_uevent *ev) +iscsi_if_set_param(struct iscsi_transport *transport, struct iscsi_uevent *ev, u32 rlen) { char *data = (char*)ev + sizeof(*ev); struct iscsi_cls_conn *conn; struct iscsi_cls_session *session; int err = 0, value = 0, state; - if (ev->u.set_param.len > PAGE_SIZE) + if (ev->u.set_param.len > rlen || + ev->u.set_param.len > PAGE_SIZE) return -EINVAL; session = iscsi_session_lookup(ev->u.set_param.sid); @@ -3049,6 +3050,10 @@ iscsi_set_param(struct iscsi_transport *transport, struct iscsi_uevent *ev) if (!conn || !session) return -EINVAL; + /* data will be regarded as NULL-ended string, do length check */ + if (strlen(data) > ev->u.set_param.len) + return -EINVAL; + switch (ev->u.set_param.param) { case ISCSI_PARAM_SESS_RECOVERY_TMO: sscanf(data, "%d", &value); @@ -3138,7 +3143,7 @@ static int iscsi_if_ep_disconnect(struct iscsi_transport *transport, static int iscsi_if_transport_ep(struct iscsi_transport *transport, - struct iscsi_uevent *ev, int msg_type) + struct iscsi_uevent *ev, int msg_type, u32 rlen) { struct iscsi_endpoint *ep; int rc = 0; @@ -3146,7 +3151,10 @@ iscsi_if_transport_ep(struct iscsi_transport *transport, switch (msg_type) { case ISCSI_UEVENT_TRANSPORT_EP_CONNECT_THROUGH_HOST: case ISCSI_UEVENT_TRANSPORT_EP_CONNECT: - rc = iscsi_if_ep_connect(transport, ev, msg_type); + if (rlen < sizeof(struct sockaddr)) + rc = -EINVAL; + else + rc = iscsi_if_ep_connect(transport, ev, msg_type); break; case ISCSI_UEVENT_TRANSPORT_EP_POLL: if (!transport->ep_poll) @@ -3170,12 +3178,15 @@ iscsi_if_transport_ep(struct iscsi_transport *transport, static int iscsi_tgt_dscvr(struct iscsi_transport *transport, - struct iscsi_uevent *ev) + struct iscsi_uevent *ev, u32 rlen) { struct Scsi_Host *shost; struct sockaddr *dst_addr; int err; + if (rlen < sizeof(*dst_addr)) + return -EINVAL; + if (!transport->tgt_dscvr) return -EINVAL; @@ -3196,7 +3207,7 @@ iscsi_tgt_dscvr(struct iscsi_transport *transport, static int iscsi_set_host_param(struct iscsi_transport *transport, - struct iscsi_uevent *ev) + struct iscsi_uevent *ev, u32 rlen) { char *data = (char*)ev + sizeof(*ev); struct Scsi_Host *shost; @@ -3205,7 +3216,8 @@ iscsi_set_host_param(struct iscsi_transport *transport, if (!transport->set_host_param) return -ENOSYS; - if (ev->u.set_host_param.len > PAGE_SIZE) + if (ev->u.set_host_param.len > rlen || + ev->u.set_host_param.len > PAGE_SIZE) return -EINVAL; shost = scsi_host_lookup(ev->u.set_host_param.host_no); @@ -3215,6 +3227,10 @@ iscsi_set_host_param(struct iscsi_transport *transport, return -ENODEV; } + /* see similar check in iscsi_if_set_param() */ + if (strlen(data) > ev->u.set_host_param.len) + return -EINVAL; + err = transport->set_host_param(shost, ev->u.set_host_param.param, data, ev->u.set_host_param.len); scsi_host_put(shost); @@ -3222,12 +3238,15 @@ iscsi_set_host_param(struct iscsi_transport *transport, } static int -iscsi_set_path(struct iscsi_transport *transport, struct iscsi_uevent *ev) +iscsi_set_path(struct iscsi_transport *transport, struct iscsi_uevent *ev, u32 rlen) { struct Scsi_Host *shost; struct iscsi_path *params; int err; + if (rlen < sizeof(*params)) + return -EINVAL; + if (!transport->set_path) return -ENOSYS; @@ -3287,12 +3306,15 @@ iscsi_set_iface_params(struct iscsi_transport *transport, } static int -iscsi_send_ping(struct iscsi_transport *transport, struct iscsi_uevent *ev) +iscsi_send_ping(struct iscsi_transport *transport, struct iscsi_uevent *ev, u32 rlen) { struct Scsi_Host *shost; struct sockaddr *dst_addr; int err; + if (rlen < sizeof(*dst_addr)) + return -EINVAL; + if (!transport->send_ping) return -ENOSYS; @@ -3790,13 +3812,12 @@ iscsi_get_host_stats(struct iscsi_transport *transport, struct nlmsghdr *nlh) } static int iscsi_if_transport_conn(struct iscsi_transport *transport, - struct nlmsghdr *nlh) + struct nlmsghdr *nlh, u32 pdu_len) { struct iscsi_uevent *ev = nlmsg_data(nlh); struct iscsi_cls_session *session; struct iscsi_cls_conn *conn = NULL; struct iscsi_endpoint *ep; - uint32_t pdu_len; int err = 0; switch (nlh->nlmsg_type) { @@ -3881,8 +3902,6 @@ static int iscsi_if_transport_conn(struct iscsi_transport *transport, break; case ISCSI_UEVENT_SEND_PDU: - pdu_len = nlh->nlmsg_len - sizeof(*nlh) - sizeof(*ev); - if ((ev->u.send_pdu.hdr_size > pdu_len) || (ev->u.send_pdu.data_size > (pdu_len - ev->u.send_pdu.hdr_size))) { err = -EINVAL; @@ -3912,6 +3931,7 @@ iscsi_if_recv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, uint32_t *group) struct iscsi_internal *priv; struct iscsi_cls_session *session; struct iscsi_endpoint *ep = NULL; + u32 rlen; if (!netlink_capable(skb, CAP_SYS_ADMIN)) return -EPERM; @@ -3931,6 +3951,13 @@ iscsi_if_recv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, uint32_t *group) portid = NETLINK_CB(skb).portid; + /* + * Even though the remaining payload may not be regarded as nlattr, + * (like address or something else), calculate the remaining length + * here to ease following length checks. + */ + rlen = nlmsg_attrlen(nlh, sizeof(*ev)); + switch (nlh->nlmsg_type) { case ISCSI_UEVENT_CREATE_SESSION: err = iscsi_if_create_session(priv, ep, ev, @@ -3988,7 +4015,7 @@ iscsi_if_recv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, uint32_t *group) err = -EINVAL; break; case ISCSI_UEVENT_SET_PARAM: - err = iscsi_set_param(transport, ev); + err = iscsi_if_set_param(transport, ev, rlen); break; case ISCSI_UEVENT_CREATE_CONN: case ISCSI_UEVENT_DESTROY_CONN: @@ -3996,7 +4023,7 @@ iscsi_if_recv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, uint32_t *group) case ISCSI_UEVENT_START_CONN: case ISCSI_UEVENT_BIND_CONN: case ISCSI_UEVENT_SEND_PDU: - err = iscsi_if_transport_conn(transport, nlh); + err = iscsi_if_transport_conn(transport, nlh, rlen); break; case ISCSI_UEVENT_GET_STATS: err = iscsi_if_get_stats(transport, nlh); @@ -4005,23 +4032,22 @@ iscsi_if_recv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, uint32_t *group) case ISCSI_UEVENT_TRANSPORT_EP_POLL: case ISCSI_UEVENT_TRANSPORT_EP_DISCONNECT: case ISCSI_UEVENT_TRANSPORT_EP_CONNECT_THROUGH_HOST: - err = iscsi_if_transport_ep(transport, ev, nlh->nlmsg_type); + err = iscsi_if_transport_ep(transport, ev, nlh->nlmsg_type, rlen); break; case ISCSI_UEVENT_TGT_DSCVR: - err = iscsi_tgt_dscvr(transport, ev); + err = iscsi_tgt_dscvr(transport, ev, rlen); break; case ISCSI_UEVENT_SET_HOST_PARAM: - err = iscsi_set_host_param(transport, ev); + err = iscsi_set_host_param(transport, ev, rlen); break; case ISCSI_UEVENT_PATH_UPDATE: - err = iscsi_set_path(transport, ev); + err = iscsi_set_path(transport, ev, rlen); break; case ISCSI_UEVENT_SET_IFACE_PARAMS: - err = iscsi_set_iface_params(transport, ev, - nlmsg_attrlen(nlh, sizeof(*ev))); + err = iscsi_set_iface_params(transport, ev, rlen); break; case ISCSI_UEVENT_PING: - err = iscsi_send_ping(transport, ev); + err = iscsi_send_ping(transport, ev, rlen); break; case ISCSI_UEVENT_GET_CHAP: err = iscsi_get_chap(transport, nlh); @@ -4030,13 +4056,10 @@ iscsi_if_recv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, uint32_t *group) err = iscsi_delete_chap(transport, ev); break; case ISCSI_UEVENT_SET_FLASHNODE_PARAMS: - err = iscsi_set_flashnode_param(transport, ev, - nlmsg_attrlen(nlh, - sizeof(*ev))); + err = iscsi_set_flashnode_param(transport, ev, rlen); break; case ISCSI_UEVENT_NEW_FLASHNODE: - err = iscsi_new_flashnode(transport, ev, - nlmsg_attrlen(nlh, sizeof(*ev))); + err = iscsi_new_flashnode(transport, ev, rlen); break; case ISCSI_UEVENT_DEL_FLASHNODE: err = iscsi_del_flashnode(transport, ev); @@ -4051,8 +4074,7 @@ iscsi_if_recv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, uint32_t *group) err = iscsi_logout_flashnode_sid(transport, ev); break; case ISCSI_UEVENT_SET_CHAP: - err = iscsi_set_chap(transport, ev, - nlmsg_attrlen(nlh, sizeof(*ev))); + err = iscsi_set_chap(transport, ev, rlen); break; case ISCSI_UEVENT_GET_HOST_STATS: err = iscsi_get_host_stats(transport, nlh); diff --git a/drivers/scsi/sr.c b/drivers/scsi/sr.c index 652cd81d77753..af210910dadf2 100644 --- a/drivers/scsi/sr.c +++ b/drivers/scsi/sr.c @@ -684,9 +684,10 @@ static int sr_probe(struct device *dev) disk->minors = 1; sprintf(disk->disk_name, "sr%d", minor); disk->fops = &sr_bdops; - disk->flags = GENHD_FL_CD | GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE; + disk->flags = GENHD_FL_CD; disk->events = DISK_EVENT_MEDIA_CHANGE | DISK_EVENT_EJECT_REQUEST; - disk->event_flags = DISK_EVENT_FLAG_POLL | DISK_EVENT_FLAG_UEVENT; + disk->event_flags = DISK_EVENT_FLAG_POLL | DISK_EVENT_FLAG_UEVENT | + DISK_EVENT_FLAG_BLOCK_ON_EXCL_WRITE; blk_queue_rq_timeout(sdev->request_queue, SR_TIMEOUT); diff --git a/drivers/scsi/storvsc_drv.c b/drivers/scsi/storvsc_drv.c index 9f8ebbec7bc39..2a6d9169abaad 100644 --- a/drivers/scsi/storvsc_drv.c +++ b/drivers/scsi/storvsc_drv.c @@ -21,6 +21,8 @@ #include #include #include +#include + #include #include #include @@ -1352,6 +1354,7 @@ static void storvsc_on_channel_callback(void *context) continue; } request = (struct storvsc_cmd_request *)scsi_cmd_priv(scmnd); + scsi_dma_unmap(scmnd); } storvsc_on_receive(stor_device, packet, request); @@ -1627,6 +1630,8 @@ static int storvsc_device_configure(struct scsi_device *sdevice) { blk_queue_rq_timeout(sdevice->request_queue, (storvsc_timeout * HZ)); + /* storvsc devices don't support MAINTENANCE_IN SCSI cmd */ + sdevice->no_report_opcodes = 1; sdevice->no_write_same = 1; /* @@ -1761,9 +1766,7 @@ static int storvsc_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *scmnd) struct hv_host_device *host_dev = shost_priv(host); struct hv_device *dev = host_dev->dev; struct storvsc_cmd_request *cmd_request = scsi_cmd_priv(scmnd); - int i; struct scatterlist *sgl; - unsigned int sg_count; struct vmscsi_request *vm_srb; struct vmbus_packet_mpb_array *payload; u32 payload_sz; @@ -1836,17 +1839,17 @@ static int storvsc_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *scmnd) memcpy(vm_srb->cdb, scmnd->cmnd, vm_srb->cdb_length); sgl = (struct scatterlist *)scsi_sglist(scmnd); - sg_count = scsi_sg_count(scmnd); length = scsi_bufflen(scmnd); payload = (struct vmbus_packet_mpb_array *)&cmd_request->mpb; payload_sz = 0; - if (sg_count) { - unsigned int hvpgoff, hvpfns_to_add; + if (scsi_sg_count(scmnd)) { unsigned long offset_in_hvpg = offset_in_hvpage(sgl->offset); unsigned int hvpg_count = HVPFN_UP(offset_in_hvpg + length); - u64 hvpfn; + struct scatterlist *sg; + unsigned long hvpfn, hvpfns_to_add; + int j, i = 0, sg_count; payload_sz = (hvpg_count * sizeof(u64) + sizeof(struct vmbus_packet_mpb_array)); @@ -1860,21 +1863,24 @@ static int storvsc_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *scmnd) payload->range.len = length; payload->range.offset = offset_in_hvpg; + sg_count = scsi_dma_map(scmnd); + if (sg_count < 0) { + ret = SCSI_MLQUEUE_DEVICE_BUSY; + goto err_free_payload; + } - for (i = 0; sgl != NULL; sgl = sg_next(sgl)) { + for_each_sg(sgl, sg, sg_count, j) { /* - * Init values for the current sgl entry. hvpgoff - * and hvpfns_to_add are in units of Hyper-V size - * pages. Handling the PAGE_SIZE != HV_HYP_PAGE_SIZE - * case also handles values of sgl->offset that are - * larger than PAGE_SIZE. Such offsets are handled - * even on other than the first sgl entry, provided - * they are a multiple of PAGE_SIZE. + * Init values for the current sgl entry. hvpfns_to_add + * is in units of Hyper-V size pages. Handling the + * PAGE_SIZE != HV_HYP_PAGE_SIZE case also handles + * values of sgl->offset that are larger than PAGE_SIZE. + * Such offsets are handled even on other than the first + * sgl entry, provided they are a multiple of PAGE_SIZE. */ - hvpgoff = HVPFN_DOWN(sgl->offset); - hvpfn = page_to_hvpfn(sg_page(sgl)) + hvpgoff; - hvpfns_to_add = HVPFN_UP(sgl->offset + sgl->length) - - hvpgoff; + hvpfn = HVPFN_DOWN(sg_dma_address(sg)); + hvpfns_to_add = HVPFN_UP(sg_dma_address(sg) + + sg_dma_len(sg)) - hvpfn; /* * Fill the next portion of the PFN array with @@ -1884,7 +1890,7 @@ static int storvsc_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *scmnd) * the PFN array is filled. */ while (hvpfns_to_add--) - payload->range.pfn_array[i++] = hvpfn++; + payload->range.pfn_array[i++] = hvpfn++; } } @@ -1895,14 +1901,22 @@ static int storvsc_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *scmnd) ret = storvsc_do_io(dev, cmd_request, get_cpu()); put_cpu(); + if (ret) + scsi_dma_unmap(scmnd); + if (ret == -EAGAIN) { - if (payload_sz > sizeof(cmd_request->mpb)) - kfree(payload); /* no more space */ - return SCSI_MLQUEUE_DEVICE_BUSY; + ret = SCSI_MLQUEUE_DEVICE_BUSY; + goto err_free_payload; } return 0; + +err_free_payload: + if (payload_sz > sizeof(cmd_request->mpb)) + kfree(payload); + + return ret; } static struct scsi_host_template scsi_driver = { @@ -2029,6 +2043,7 @@ static int storvsc_probe(struct hv_device *device, stor_device->vmscsi_size_delta = sizeof(struct vmscsi_win8_extension); spin_lock_init(&stor_device->lock); hv_set_drvdata(device, stor_device); + dma_set_min_align_mask(&device->device, HV_HYP_PAGE_SIZE - 1); stor_device->port_number = host->host_no; ret = storvsc_connect_to_vsp(device, storvsc_ringbuffer_size, is_fc); diff --git a/drivers/scsi/ufs/ufshcd.c b/drivers/scsi/ufs/ufshcd.c index d00d263705e15..e78461f66400c 100644 --- a/drivers/scsi/ufs/ufshcd.c +++ b/drivers/scsi/ufs/ufshcd.c @@ -2309,7 +2309,6 @@ __ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd, bool completion) { lockdep_assert_held(&hba->uic_cmd_mutex); - lockdep_assert_held(hba->host->host_lock); if (!ufshcd_ready_for_uic_cmd(hba)) { dev_err(hba->dev, @@ -2336,15 +2335,12 @@ __ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd, int ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd) { int ret; - unsigned long flags; ufshcd_hold(hba, false); mutex_lock(&hba->uic_cmd_mutex); ufshcd_add_delay_before_dme_cmd(hba); - spin_lock_irqsave(hba->host->host_lock, flags); ret = __ufshcd_send_uic_cmd(hba, uic_cmd, true); - spin_unlock_irqrestore(hba->host->host_lock, flags); if (!ret) ret = ufshcd_wait_for_uic_cmd(hba, uic_cmd); @@ -3469,7 +3465,7 @@ int ufshcd_read_string_desc(struct ufs_hba *hba, u8 desc_index, */ ret = utf16s_to_utf8s(uc_str->uc, uc_str->len - QUERY_DESC_HDR_SIZE, - UTF16_BIG_ENDIAN, str, ascii_len); + UTF16_BIG_ENDIAN, str, ascii_len - 1); /* replace non-printable or non-ASCII characters with spaces */ for (i = 0; i < ret; i++) @@ -3967,8 +3963,8 @@ static int ufshcd_uic_pwr_ctrl(struct ufs_hba *hba, struct uic_command *cmd) wmb(); reenable_intr = true; } - ret = __ufshcd_send_uic_cmd(hba, cmd, false); spin_unlock_irqrestore(hba->host->host_lock, flags); + ret = __ufshcd_send_uic_cmd(hba, cmd, false); if (ret) { dev_err(hba->dev, "pwr ctrl cmd 0x%x with mode 0x%x uic error %d\n", diff --git a/drivers/soc/imx/soc-imx8m.c b/drivers/soc/imx/soc-imx8m.c index 32ed9dc88e455..08197b03955dd 100644 --- a/drivers/soc/imx/soc-imx8m.c +++ b/drivers/soc/imx/soc-imx8m.c @@ -100,6 +100,7 @@ static void __init imx8mm_soc_uid(void) { void __iomem *ocotp_base; struct device_node *np; + struct clk *clk; u32 offset = of_machine_is_compatible("fsl,imx8mp") ? IMX8MP_OCOTP_UID_OFFSET : 0; @@ -109,11 +110,20 @@ static void __init imx8mm_soc_uid(void) ocotp_base = of_iomap(np, 0); WARN_ON(!ocotp_base); + clk = of_clk_get_by_name(np, NULL); + if (IS_ERR(clk)) { + WARN_ON(IS_ERR(clk)); + return; + } + + clk_prepare_enable(clk); soc_uid = readl_relaxed(ocotp_base + OCOTP_UID_HIGH + offset); soc_uid <<= 32; soc_uid |= readl_relaxed(ocotp_base + OCOTP_UID_LOW + offset); + clk_disable_unprepare(clk); + clk_put(clk); iounmap(ocotp_base); of_node_put(np); } diff --git a/drivers/soc/qcom/llcc-qcom.c b/drivers/soc/qcom/llcc-qcom.c index 47d41804fdf67..fabc5ce828af3 100644 --- a/drivers/soc/qcom/llcc-qcom.c +++ b/drivers/soc/qcom/llcc-qcom.c @@ -537,6 +537,9 @@ static int qcom_llcc_probe(struct platform_device *pdev) u32 sz; u32 version; + if (!IS_ERR(drv_data)) + return -EBUSY; + drv_data = devm_kzalloc(dev, sizeof(*drv_data), GFP_KERNEL); if (!drv_data) { ret = -ENOMEM; diff --git a/drivers/soc/qcom/ocmem.c b/drivers/soc/qcom/ocmem.c index 1dfdd0b9ba24d..8b80c8e94c77a 100644 --- a/drivers/soc/qcom/ocmem.c +++ b/drivers/soc/qcom/ocmem.c @@ -76,8 +76,12 @@ struct ocmem { #define OCMEM_REG_GFX_MPU_START 0x00001004 #define OCMEM_REG_GFX_MPU_END 0x00001008 -#define OCMEM_HW_PROFILE_NUM_PORTS(val) FIELD_PREP(0x0000000f, (val)) -#define OCMEM_HW_PROFILE_NUM_MACROS(val) FIELD_PREP(0x00003f00, (val)) +#define OCMEM_HW_VERSION_MAJOR(val) FIELD_GET(GENMASK(31, 28), val) +#define OCMEM_HW_VERSION_MINOR(val) FIELD_GET(GENMASK(27, 16), val) +#define OCMEM_HW_VERSION_STEP(val) FIELD_GET(GENMASK(15, 0), val) + +#define OCMEM_HW_PROFILE_NUM_PORTS(val) FIELD_GET(0x0000000f, (val)) +#define OCMEM_HW_PROFILE_NUM_MACROS(val) FIELD_GET(0x00003f00, (val)) #define OCMEM_HW_PROFILE_LAST_REGN_HALFSIZE 0x00010000 #define OCMEM_HW_PROFILE_INTERLEAVING 0x00020000 @@ -357,6 +361,12 @@ static int ocmem_dev_probe(struct platform_device *pdev) } } + reg = ocmem_read(ocmem, OCMEM_REG_HW_VERSION); + dev_dbg(dev, "OCMEM hardware version: %lu.%lu.%lu\n", + OCMEM_HW_VERSION_MAJOR(reg), + OCMEM_HW_VERSION_MINOR(reg), + OCMEM_HW_VERSION_STEP(reg)); + reg = ocmem_read(ocmem, OCMEM_REG_HW_PROFILE); ocmem->num_ports = OCMEM_HW_PROFILE_NUM_PORTS(reg); ocmem->num_macros = OCMEM_HW_PROFILE_NUM_MACROS(reg); diff --git a/drivers/soc/qcom/qmi_encdec.c b/drivers/soc/qcom/qmi_encdec.c index 328cc82371919..9f9a5ad3eb22d 100644 --- a/drivers/soc/qcom/qmi_encdec.c +++ b/drivers/soc/qcom/qmi_encdec.c @@ -534,8 +534,8 @@ static int qmi_decode_string_elem(struct qmi_elem_info *ei_array, decoded_bytes += rc; } - if (string_len > temp_ei->elem_len) { - pr_err("%s: String len %d > Max Len %d\n", + if (string_len >= temp_ei->elem_len) { + pr_err("%s: String len %d >= Max Len %d\n", __func__, string_len, temp_ei->elem_len); return -ETOOSMALL; } else if (string_len > tlv_len) { diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig index 080df27621466..dc9f38e96d1e7 100644 --- a/drivers/spi/Kconfig +++ b/drivers/spi/Kconfig @@ -986,6 +986,7 @@ config SPI_XTENSA_XTFPGA config SPI_ZYNQ_QSPI tristate "Xilinx Zynq QSPI controller" depends on ARCH_ZYNQ || COMPILE_TEST + depends on SPI_MEM help This enables support for the Zynq Quad SPI controller in master mode. diff --git a/drivers/spi/spi-npcm-fiu.c b/drivers/spi/spi-npcm-fiu.c index b62471ab6d7f2..1edaf22e265bf 100644 --- a/drivers/spi/spi-npcm-fiu.c +++ b/drivers/spi/spi-npcm-fiu.c @@ -334,8 +334,9 @@ static int npcm_fiu_uma_read(struct spi_mem *mem, uma_cfg |= ilog2(op->cmd.buswidth); uma_cfg |= ilog2(op->addr.buswidth) << NPCM_FIU_UMA_CFG_ADBPCK_SHIFT; - uma_cfg |= ilog2(op->dummy.buswidth) - << NPCM_FIU_UMA_CFG_DBPCK_SHIFT; + if (op->dummy.nbytes) + uma_cfg |= ilog2(op->dummy.buswidth) + << NPCM_FIU_UMA_CFG_DBPCK_SHIFT; uma_cfg |= ilog2(op->data.buswidth) << NPCM_FIU_UMA_CFG_RDBPCK_SHIFT; uma_cfg |= op->dummy.nbytes << NPCM_FIU_UMA_CFG_DBSIZ_SHIFT; diff --git a/drivers/spi/spi-nxp-fspi.c b/drivers/spi/spi-nxp-fspi.c index 2b0301fc971c6..45961249c976e 100644 --- a/drivers/spi/spi-nxp-fspi.c +++ b/drivers/spi/spi-nxp-fspi.c @@ -708,7 +708,7 @@ static int nxp_fspi_read_ahb(struct nxp_fspi *f, const struct spi_mem_op *op) f->memmap_len = len > NXP_FSPI_MIN_IOMAP ? len : NXP_FSPI_MIN_IOMAP; - f->ahb_addr = ioremap_wc(f->memmap_phy + f->memmap_start, + f->ahb_addr = ioremap(f->memmap_phy + f->memmap_start, f->memmap_len); if (!f->ahb_addr) { @@ -1029,6 +1029,13 @@ static int nxp_fspi_default_setup(struct nxp_fspi *f) fspi_writel(f, FSPI_AHBCR_PREF_EN | FSPI_AHBCR_RDADDROPT, base + FSPI_AHBCR); + /* Reset the FLSHxCR1 registers. */ + reg = FSPI_FLSHXCR1_TCSH(0x3) | FSPI_FLSHXCR1_TCSS(0x3); + fspi_writel(f, reg, base + FSPI_FLSHA1CR1); + fspi_writel(f, reg, base + FSPI_FLSHA2CR1); + fspi_writel(f, reg, base + FSPI_FLSHB1CR1); + fspi_writel(f, reg, base + FSPI_FLSHB2CR1); + /* AHB Read - Set lut sequence ID for all CS. */ fspi_writel(f, SEQID_LUT, base + FSPI_FLSHA1CR2); fspi_writel(f, SEQID_LUT, base + FSPI_FLSHA2CR2); diff --git a/drivers/spi/spi-stm32.c b/drivers/spi/spi-stm32.c index 3c6f201b5dd85..191baa6e45c08 100644 --- a/drivers/spi/spi-stm32.c +++ b/drivers/spi/spi-stm32.c @@ -268,6 +268,7 @@ struct stm32_spi_cfg { * @fifo_size: size of the embedded fifo in bytes * @cur_midi: master inter-data idleness in ns * @cur_speed: speed configured in Hz + * @cur_half_period: time of a half bit in us * @cur_bpw: number of bits in a single SPI data frame * @cur_fthlv: fifo threshold level (data frames in a single data packet) * @cur_comm: SPI communication mode @@ -294,6 +295,7 @@ struct stm32_spi { unsigned int cur_midi; unsigned int cur_speed; + unsigned int cur_half_period; unsigned int cur_bpw; unsigned int cur_fthlv; unsigned int cur_comm; @@ -454,6 +456,8 @@ static int stm32_spi_prepare_mbr(struct stm32_spi *spi, u32 speed_hz, spi->cur_speed = spi->clk_rate / (1 << mbrdiv); + spi->cur_half_period = DIV_ROUND_CLOSEST(USEC_PER_SEC, 2 * spi->cur_speed); + return mbrdiv - 1; } @@ -695,6 +699,10 @@ static void stm32h7_spi_disable(struct stm32_spi *spi) return; } + /* Add a delay to make sure that transmission is ended. */ + if (spi->cur_half_period) + udelay(spi->cur_half_period); + if (spi->cur_usedma && spi->dma_tx) dmaengine_terminate_all(spi->dma_tx); if (spi->cur_usedma && spi->dma_rx) diff --git a/drivers/spi/spi-sun6i.c b/drivers/spi/spi-sun6i.c index 23ad052528dbe..d79853ba7792a 100644 --- a/drivers/spi/spi-sun6i.c +++ b/drivers/spi/spi-sun6i.c @@ -95,6 +95,7 @@ struct sun6i_spi { struct reset_control *rstc; struct completion done; + struct completion dma_rx_done; const u8 *tx_buf; u8 *rx_buf; @@ -189,6 +190,13 @@ static size_t sun6i_spi_max_transfer_size(struct spi_device *spi) return SUN6I_MAX_XFER_SIZE - 1; } +static void sun6i_spi_dma_rx_cb(void *param) +{ + struct sun6i_spi *sspi = param; + + complete(&sspi->dma_rx_done); +} + static int sun6i_spi_prepare_dma(struct sun6i_spi *sspi, struct spi_transfer *tfr) { @@ -200,7 +208,7 @@ static int sun6i_spi_prepare_dma(struct sun6i_spi *sspi, struct dma_slave_config rxconf = { .direction = DMA_DEV_TO_MEM, .src_addr = sspi->dma_addr_rx, - .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES, + .src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE, .src_maxburst = 8, }; @@ -213,6 +221,8 @@ static int sun6i_spi_prepare_dma(struct sun6i_spi *sspi, DMA_PREP_INTERRUPT); if (!rxdesc) return -EINVAL; + rxdesc->callback_param = sspi; + rxdesc->callback = sun6i_spi_dma_rx_cb; } txdesc = NULL; @@ -268,6 +278,7 @@ static int sun6i_spi_transfer_one(struct spi_master *master, return -EINVAL; reinit_completion(&sspi->done); + reinit_completion(&sspi->dma_rx_done); sspi->tx_buf = tfr->tx_buf; sspi->rx_buf = tfr->rx_buf; sspi->len = tfr->len; @@ -426,6 +437,22 @@ static int sun6i_spi_transfer_one(struct spi_master *master, start = jiffies; timeout = wait_for_completion_timeout(&sspi->done, msecs_to_jiffies(tx_time)); + + if (!use_dma) { + sun6i_spi_drain_fifo(sspi); + } else { + if (timeout && rx_len) { + /* + * Even though RX on the peripheral side has finished + * RX DMA might still be in flight + */ + timeout = wait_for_completion_timeout(&sspi->dma_rx_done, + timeout); + if (!timeout) + dev_warn(&master->dev, "RX DMA timeout\n"); + } + } + end = jiffies; if (!timeout) { dev_warn(&master->dev, @@ -453,7 +480,6 @@ static irqreturn_t sun6i_spi_handler(int irq, void *dev_id) /* Transfer complete */ if (status & SUN6I_INT_CTL_TC) { sun6i_spi_write(sspi, SUN6I_INT_STA_REG, SUN6I_INT_CTL_TC); - sun6i_spi_drain_fifo(sspi); complete(&sspi->done); return IRQ_HANDLED; } @@ -611,6 +637,7 @@ static int sun6i_spi_probe(struct platform_device *pdev) } init_completion(&sspi->done); + init_completion(&sspi->dma_rx_done); sspi->rstc = devm_reset_control_get_exclusive(&pdev->dev, NULL); if (IS_ERR(sspi->rstc)) { diff --git a/drivers/spi/spi-tegra20-sflash.c b/drivers/spi/spi-tegra20-sflash.c index 2888d8a8dc6d5..6915451cc93e2 100644 --- a/drivers/spi/spi-tegra20-sflash.c +++ b/drivers/spi/spi-tegra20-sflash.c @@ -455,7 +455,11 @@ static int tegra_sflash_probe(struct platform_device *pdev) goto exit_free_master; } - tsd->irq = platform_get_irq(pdev, 0); + ret = platform_get_irq(pdev, 0); + if (ret < 0) + goto exit_free_master; + tsd->irq = ret; + ret = request_irq(tsd->irq, tegra_sflash_isr, 0, dev_name(&pdev->dev), tsd); if (ret < 0) { diff --git a/drivers/spi/spi-tegra20-slink.c b/drivers/spi/spi-tegra20-slink.c index cf61bf302a059..c611fedda7de9 100644 --- a/drivers/spi/spi-tegra20-slink.c +++ b/drivers/spi/spi-tegra20-slink.c @@ -1087,6 +1087,8 @@ static int tegra_slink_probe(struct platform_device *pdev) reset_control_deassert(tspi->rst); spi_irq = platform_get_irq(pdev, 0); + if (spi_irq < 0) + return spi_irq; tspi->irq = spi_irq; ret = request_threaded_irq(tspi->irq, tegra_slink_isr, tegra_slink_isr_thread, IRQF_ONESHOT, diff --git a/drivers/spi/spi-zynqmp-gqspi.c b/drivers/spi/spi-zynqmp-gqspi.c index 2b5afae8ff7fc..237979daf9e67 100644 --- a/drivers/spi/spi-zynqmp-gqspi.c +++ b/drivers/spi/spi-zynqmp-gqspi.c @@ -1199,9 +1199,9 @@ static int zynqmp_qspi_probe(struct platform_device *pdev) return 0; clk_dis_all: - pm_runtime_put_sync(&pdev->dev); - pm_runtime_set_suspended(&pdev->dev); pm_runtime_disable(&pdev->dev); + pm_runtime_put_noidle(&pdev->dev); + pm_runtime_set_suspended(&pdev->dev); clk_disable_unprepare(xqspi->refclk); clk_dis_pclk: clk_disable_unprepare(xqspi->pclk); @@ -1221,17 +1221,19 @@ static int zynqmp_qspi_probe(struct platform_device *pdev) * * Return: 0 Always */ -static int zynqmp_qspi_remove(struct platform_device *pdev) +static void zynqmp_qspi_remove(struct platform_device *pdev) { struct zynqmp_qspi *xqspi = platform_get_drvdata(pdev); + pm_runtime_get_sync(&pdev->dev); + zynqmp_gqspi_write(xqspi, GQSPI_EN_OFST, 0x0); + + pm_runtime_disable(&pdev->dev); + pm_runtime_put_noidle(&pdev->dev); + pm_runtime_set_suspended(&pdev->dev); clk_disable_unprepare(xqspi->refclk); clk_disable_unprepare(xqspi->pclk); - pm_runtime_set_suspended(&pdev->dev); - pm_runtime_disable(&pdev->dev); - - return 0; } static const struct of_device_id zynqmp_qspi_of_match[] = { @@ -1243,7 +1245,7 @@ MODULE_DEVICE_TABLE(of, zynqmp_qspi_of_match); static struct platform_driver zynqmp_qspi_driver = { .probe = zynqmp_qspi_probe, - .remove = zynqmp_qspi_remove, + .remove_new = zynqmp_qspi_remove, .driver = { .name = "zynqmp-qspi", .of_match_table = zynqmp_qspi_of_match, diff --git a/drivers/staging/media/av7110/sp8870.c b/drivers/staging/media/av7110/sp8870.c index 9767159aeb9b2..abf5c72607b64 100644 --- a/drivers/staging/media/av7110/sp8870.c +++ b/drivers/staging/media/av7110/sp8870.c @@ -606,4 +606,4 @@ MODULE_DESCRIPTION("Spase SP8870 DVB-T Demodulator driver"); MODULE_AUTHOR("Juergen Peitz"); MODULE_LICENSE("GPL"); -EXPORT_SYMBOL(sp8870_attach); +EXPORT_SYMBOL_GPL(sp8870_attach); diff --git a/drivers/staging/media/rkvdec/rkvdec.c b/drivers/staging/media/rkvdec/rkvdec.c index bc4683a75e61f..29b68a13674ee 100644 --- a/drivers/staging/media/rkvdec/rkvdec.c +++ b/drivers/staging/media/rkvdec/rkvdec.c @@ -111,7 +111,7 @@ static const struct rkvdec_coded_fmt_desc rkvdec_coded_fmts[] = { .max_width = 4096, .step_width = 16, .min_height = 48, - .max_height = 2304, + .max_height = 2560, .step_height = 16, }, .ctrls = &rkvdec_h264_ctrls, diff --git a/drivers/staging/media/sunxi/cedrus/cedrus_hw.c b/drivers/staging/media/sunxi/cedrus/cedrus_hw.c index e2f2ff609c7e6..0904aea782b1e 100644 --- a/drivers/staging/media/sunxi/cedrus/cedrus_hw.c +++ b/drivers/staging/media/sunxi/cedrus/cedrus_hw.c @@ -147,12 +147,12 @@ int cedrus_hw_suspend(struct device *device) { struct cedrus_dev *dev = dev_get_drvdata(device); - reset_control_assert(dev->rstc); - clk_disable_unprepare(dev->ram_clk); clk_disable_unprepare(dev->mod_clk); clk_disable_unprepare(dev->ahb_clk); + reset_control_assert(dev->rstc); + return 0; } @@ -161,11 +161,18 @@ int cedrus_hw_resume(struct device *device) struct cedrus_dev *dev = dev_get_drvdata(device); int ret; + ret = reset_control_reset(dev->rstc); + if (ret) { + dev_err(dev->dev, "Failed to apply reset\n"); + + return ret; + } + ret = clk_prepare_enable(dev->ahb_clk); if (ret) { dev_err(dev->dev, "Failed to enable AHB clock\n"); - return ret; + goto err_rst; } ret = clk_prepare_enable(dev->mod_clk); @@ -182,21 +189,14 @@ int cedrus_hw_resume(struct device *device) goto err_mod_clk; } - ret = reset_control_reset(dev->rstc); - if (ret) { - dev_err(dev->dev, "Failed to apply reset\n"); - - goto err_ram_clk; - } - return 0; -err_ram_clk: - clk_disable_unprepare(dev->ram_clk); err_mod_clk: clk_disable_unprepare(dev->mod_clk); err_ahb_clk: clk_disable_unprepare(dev->ahb_clk); +err_rst: + reset_control_assert(dev->rstc); return ret; } diff --git a/drivers/target/iscsi/iscsi_target.c b/drivers/target/iscsi/iscsi_target.c index 686a9e5918e21..347159235dfe9 100644 --- a/drivers/target/iscsi/iscsi_target.c +++ b/drivers/target/iscsi/iscsi_target.c @@ -3815,6 +3815,7 @@ int iscsi_target_tx_thread(void *arg) * connection recovery / failure event can be triggered externally. */ allow_signal(SIGINT); + complete(&conn->kthr_start_comp); while (!kthread_should_stop()) { /* @@ -4043,6 +4044,7 @@ int iscsi_target_rx_thread(void *arg) * connection recovery / failure event can be triggered externally. */ allow_signal(SIGINT); + complete(&conn->kthr_start_comp); /* * Wait for iscsi_post_login_handler() to complete before allowing * incoming iscsi/tcp socket I/O, and/or failing the connection. diff --git a/drivers/target/iscsi/iscsi_target_configfs.c b/drivers/target/iscsi/iscsi_target_configfs.c index f4a24fa5058e6..df399110fbf11 100644 --- a/drivers/target/iscsi/iscsi_target_configfs.c +++ b/drivers/target/iscsi/iscsi_target_configfs.c @@ -507,102 +507,102 @@ static ssize_t lio_target_nacl_info_show(struct config_item *item, char *page) spin_lock_bh(&se_nacl->nacl_sess_lock); se_sess = se_nacl->nacl_sess; if (!se_sess) { - rb += sprintf(page+rb, "No active iSCSI Session for Initiator" + rb += sysfs_emit_at(page, rb, "No active iSCSI Session for Initiator" " Endpoint: %s\n", se_nacl->initiatorname); } else { sess = se_sess->fabric_sess_ptr; - rb += sprintf(page+rb, "InitiatorName: %s\n", + rb += sysfs_emit_at(page, rb, "InitiatorName: %s\n", sess->sess_ops->InitiatorName); - rb += sprintf(page+rb, "InitiatorAlias: %s\n", + rb += sysfs_emit_at(page, rb, "InitiatorAlias: %s\n", sess->sess_ops->InitiatorAlias); - rb += sprintf(page+rb, + rb += sysfs_emit_at(page, rb, "LIO Session ID: %u ISID: 0x%6ph TSIH: %hu ", sess->sid, sess->isid, sess->tsih); - rb += sprintf(page+rb, "SessionType: %s\n", + rb += sysfs_emit_at(page, rb, "SessionType: %s\n", (sess->sess_ops->SessionType) ? "Discovery" : "Normal"); - rb += sprintf(page+rb, "Session State: "); + rb += sysfs_emit_at(page, rb, "Session State: "); switch (sess->session_state) { case TARG_SESS_STATE_FREE: - rb += sprintf(page+rb, "TARG_SESS_FREE\n"); + rb += sysfs_emit_at(page, rb, "TARG_SESS_FREE\n"); break; case TARG_SESS_STATE_ACTIVE: - rb += sprintf(page+rb, "TARG_SESS_STATE_ACTIVE\n"); + rb += sysfs_emit_at(page, rb, "TARG_SESS_STATE_ACTIVE\n"); break; case TARG_SESS_STATE_LOGGED_IN: - rb += sprintf(page+rb, "TARG_SESS_STATE_LOGGED_IN\n"); + rb += sysfs_emit_at(page, rb, "TARG_SESS_STATE_LOGGED_IN\n"); break; case TARG_SESS_STATE_FAILED: - rb += sprintf(page+rb, "TARG_SESS_STATE_FAILED\n"); + rb += sysfs_emit_at(page, rb, "TARG_SESS_STATE_FAILED\n"); break; case TARG_SESS_STATE_IN_CONTINUE: - rb += sprintf(page+rb, "TARG_SESS_STATE_IN_CONTINUE\n"); + rb += sysfs_emit_at(page, rb, "TARG_SESS_STATE_IN_CONTINUE\n"); break; default: - rb += sprintf(page+rb, "ERROR: Unknown Session" + rb += sysfs_emit_at(page, rb, "ERROR: Unknown Session" " State!\n"); break; } - rb += sprintf(page+rb, "---------------------[iSCSI Session" + rb += sysfs_emit_at(page, rb, "---------------------[iSCSI Session" " Values]-----------------------\n"); - rb += sprintf(page+rb, " CmdSN/WR : CmdSN/WC : ExpCmdSN" + rb += sysfs_emit_at(page, rb, " CmdSN/WR : CmdSN/WC : ExpCmdSN" " : MaxCmdSN : ITT : TTT\n"); max_cmd_sn = (u32) atomic_read(&sess->max_cmd_sn); - rb += sprintf(page+rb, " 0x%08x 0x%08x 0x%08x 0x%08x" + rb += sysfs_emit_at(page, rb, " 0x%08x 0x%08x 0x%08x 0x%08x" " 0x%08x 0x%08x\n", sess->cmdsn_window, (max_cmd_sn - sess->exp_cmd_sn) + 1, sess->exp_cmd_sn, max_cmd_sn, sess->init_task_tag, sess->targ_xfer_tag); - rb += sprintf(page+rb, "----------------------[iSCSI" + rb += sysfs_emit_at(page, rb, "----------------------[iSCSI" " Connections]-------------------------\n"); spin_lock(&sess->conn_lock); list_for_each_entry(conn, &sess->sess_conn_list, conn_list) { - rb += sprintf(page+rb, "CID: %hu Connection" + rb += sysfs_emit_at(page, rb, "CID: %hu Connection" " State: ", conn->cid); switch (conn->conn_state) { case TARG_CONN_STATE_FREE: - rb += sprintf(page+rb, + rb += sysfs_emit_at(page, rb, "TARG_CONN_STATE_FREE\n"); break; case TARG_CONN_STATE_XPT_UP: - rb += sprintf(page+rb, + rb += sysfs_emit_at(page, rb, "TARG_CONN_STATE_XPT_UP\n"); break; case TARG_CONN_STATE_IN_LOGIN: - rb += sprintf(page+rb, + rb += sysfs_emit_at(page, rb, "TARG_CONN_STATE_IN_LOGIN\n"); break; case TARG_CONN_STATE_LOGGED_IN: - rb += sprintf(page+rb, + rb += sysfs_emit_at(page, rb, "TARG_CONN_STATE_LOGGED_IN\n"); break; case TARG_CONN_STATE_IN_LOGOUT: - rb += sprintf(page+rb, + rb += sysfs_emit_at(page, rb, "TARG_CONN_STATE_IN_LOGOUT\n"); break; case TARG_CONN_STATE_LOGOUT_REQUESTED: - rb += sprintf(page+rb, + rb += sysfs_emit_at(page, rb, "TARG_CONN_STATE_LOGOUT_REQUESTED\n"); break; case TARG_CONN_STATE_CLEANUP_WAIT: - rb += sprintf(page+rb, + rb += sysfs_emit_at(page, rb, "TARG_CONN_STATE_CLEANUP_WAIT\n"); break; default: - rb += sprintf(page+rb, + rb += sysfs_emit_at(page, rb, "ERROR: Unknown Connection State!\n"); break; } - rb += sprintf(page+rb, " Address %pISc %s", &conn->login_sockaddr, + rb += sysfs_emit_at(page, rb, " Address %pISc %s", &conn->login_sockaddr, (conn->network_transport == ISCSI_TCP) ? "TCP" : "SCTP"); - rb += sprintf(page+rb, " StatSN: 0x%08x\n", + rb += sysfs_emit_at(page, rb, " StatSN: 0x%08x\n", conn->stat_sn); } spin_unlock(&sess->conn_lock); diff --git a/drivers/target/iscsi/iscsi_target_erl1.c b/drivers/target/iscsi/iscsi_target_erl1.c index 0dd52f484fec3..10291b9bb708b 100644 --- a/drivers/target/iscsi/iscsi_target_erl1.c +++ b/drivers/target/iscsi/iscsi_target_erl1.c @@ -1102,6 +1102,18 @@ void iscsit_handle_dataout_timeout(struct timer_list *t) iscsit_inc_conn_usage_count(conn); + /* + * If the command was aborted, for instance following a LUN RESET, + * a dataout timeout might be normal. + */ + if (target_cmd_interrupted(&cmd->se_cmd)) { + pr_debug("DataOut timeout on interrupted cmd with" + " ITT[0x%08llx]\n", cmd->se_cmd.tag); + cmd->dataout_timer_flags &= ~ISCSI_TF_RUNNING; + iscsit_dec_conn_usage_count(conn); + return; + } + spin_lock_bh(&cmd->dataout_timeout_lock); if (cmd->dataout_timer_flags & ISCSI_TF_STOP) { spin_unlock_bh(&cmd->dataout_timeout_lock); @@ -1115,19 +1127,22 @@ void iscsit_handle_dataout_timeout(struct timer_list *t) if (!sess->sess_ops->ErrorRecoveryLevel) { pr_err("Unable to recover from DataOut timeout while" " in ERL=0, closing iSCSI connection for I_T Nexus" - " %s,i,0x%6phN,%s,t,0x%02x\n", + " %s,i,0x%6phN,%s,t,0x%02x, cmd ITT[0x%08llx]\n", sess->sess_ops->InitiatorName, sess->isid, - sess->tpg->tpg_tiqn->tiqn, (u32)sess->tpg->tpgt); + sess->tpg->tpg_tiqn->tiqn, (u32)sess->tpg->tpgt, + cmd->se_cmd.tag); goto failure; } if (++cmd->dataout_timeout_retries == na->dataout_timeout_retries) { pr_err("Command ITT: 0x%08x exceeded max retries" " for DataOUT timeout %u, closing iSCSI connection for" - " I_T Nexus %s,i,0x%6phN,%s,t,0x%02x\n", + " I_T Nexus %s,i,0x%6phN,%s,t,0x%02x," + " cmd ITT[0x%08llx]\n", cmd->init_task_tag, na->dataout_timeout_retries, sess->sess_ops->InitiatorName, sess->isid, - sess->tpg->tpg_tiqn->tiqn, (u32)sess->tpg->tpgt); + sess->tpg->tpg_tiqn->tiqn, (u32)sess->tpg->tpgt, + cmd->se_cmd.tag); goto failure; } diff --git a/drivers/target/iscsi/iscsi_target_login.c b/drivers/target/iscsi/iscsi_target_login.c index 1a9c50401bdb5..628d3eb5360e3 100644 --- a/drivers/target/iscsi/iscsi_target_login.c +++ b/drivers/target/iscsi/iscsi_target_login.c @@ -647,6 +647,7 @@ int iscsit_start_kthreads(struct iscsi_conn *conn) ret = PTR_ERR(conn->tx_thread); goto out_bitmap; } + wait_for_completion(&conn->kthr_start_comp); conn->tx_thread_active = true; conn->rx_thread = kthread_run(iscsi_target_rx_thread, conn, @@ -656,6 +657,7 @@ int iscsit_start_kthreads(struct iscsi_conn *conn) ret = PTR_ERR(conn->rx_thread); goto out_tx; } + wait_for_completion(&conn->kthr_start_comp); conn->rx_thread_active = true; return 0; @@ -1104,6 +1106,7 @@ static struct iscsi_conn *iscsit_alloc_conn(struct iscsi_np *np) init_completion(&conn->rx_half_close_comp); init_completion(&conn->tx_half_close_comp); init_completion(&conn->rx_login_comp); + init_completion(&conn->kthr_start_comp); spin_lock_init(&conn->cmd_lock); spin_lock_init(&conn->conn_usage_lock); spin_lock_init(&conn->immed_queue_lock); @@ -1114,6 +1117,7 @@ static struct iscsi_conn *iscsit_alloc_conn(struct iscsi_np *np) timer_setup(&conn->nopin_response_timer, iscsit_handle_nopin_response_timeout, 0); timer_setup(&conn->nopin_timer, iscsit_handle_nopin_timeout, 0); + timer_setup(&conn->login_timer, iscsit_login_timeout, 0); if (iscsit_conn_set_transport(conn, np->np_transport) < 0) goto free_conn; @@ -1154,7 +1158,7 @@ void iscsi_target_login_sess_out(struct iscsi_conn *conn, if (!new_sess) goto old_sess_out; - pr_err("iSCSI Login negotiation failed.\n"); + pr_debug("iSCSI Login negotiation failed.\n"); iscsit_collect_login_stats(conn, ISCSI_STATUS_CLS_INITIATOR_ERR, ISCSI_LOGIN_STATUS_INIT_ERR); if (!zero_tsih || !conn->sess) diff --git a/drivers/target/iscsi/iscsi_target_nego.c b/drivers/target/iscsi/iscsi_target_nego.c index 32a2852352db1..1d360f213e98c 100644 --- a/drivers/target/iscsi/iscsi_target_nego.c +++ b/drivers/target/iscsi/iscsi_target_nego.c @@ -471,12 +471,18 @@ static int iscsi_target_do_login(struct iscsi_conn *, struct iscsi_login *); static bool __iscsi_target_sk_check_close(struct sock *sk) { - if (sk->sk_state == TCP_CLOSE_WAIT || sk->sk_state == TCP_CLOSE) { - pr_debug("__iscsi_target_sk_check_close: TCP_CLOSE_WAIT|TCP_CLOSE," + switch (sk->sk_state) { + case TCP_FIN_WAIT1: + case TCP_FIN_WAIT2: + case TCP_CLOSE_WAIT: + case TCP_LAST_ACK: + case TCP_CLOSE: + pr_debug("__iscsi_target_sk_check_close: socket closing," "returning TRUE\n"); return true; + default: + return false; } - return false; } static bool iscsi_target_sk_check_close(struct iscsi_conn *conn) @@ -534,25 +540,6 @@ static void iscsi_target_login_drop(struct iscsi_conn *conn, struct iscsi_login iscsi_target_login_sess_out(conn, zero_tsih, true); } -struct conn_timeout { - struct timer_list timer; - struct iscsi_conn *conn; -}; - -static void iscsi_target_login_timeout(struct timer_list *t) -{ - struct conn_timeout *timeout = from_timer(timeout, t, timer); - struct iscsi_conn *conn = timeout->conn; - - pr_debug("Entering iscsi_target_login_timeout >>>>>>>>>>>>>>>>>>>\n"); - - if (conn->login_kworker) { - pr_debug("Sending SIGINT to conn->login_kworker %s/%d\n", - conn->login_kworker->comm, conn->login_kworker->pid); - send_sig(SIGINT, conn->login_kworker, 1); - } -} - static void iscsi_target_do_login_rx(struct work_struct *work) { struct iscsi_conn *conn = container_of(work, @@ -561,7 +548,6 @@ static void iscsi_target_do_login_rx(struct work_struct *work) struct iscsi_np *np = login->np; struct iscsi_portal_group *tpg = conn->tpg; struct iscsi_tpg_np *tpg_np = conn->tpg_np; - struct conn_timeout timeout; int rc, zero_tsih = login->zero_tsih; bool state; @@ -599,14 +585,7 @@ static void iscsi_target_do_login_rx(struct work_struct *work) conn->login_kworker = current; allow_signal(SIGINT); - timeout.conn = conn; - timer_setup_on_stack(&timeout.timer, iscsi_target_login_timeout, 0); - mod_timer(&timeout.timer, jiffies + TA_LOGIN_TIMEOUT * HZ); - pr_debug("Starting login timer for %s/%d\n", current->comm, current->pid); - rc = conn->conn_transport->iscsit_get_login_rx(conn, login); - del_timer_sync(&timeout.timer); - destroy_timer_on_stack(&timeout.timer); flush_signals(current); conn->login_kworker = NULL; @@ -647,6 +626,7 @@ static void iscsi_target_do_login_rx(struct work_struct *work) goto err; } else if (rc == 1) { cancel_delayed_work(&conn->login_work); + iscsit_stop_login_timer(conn); iscsi_target_nego_release(conn); iscsi_post_login_handler(np, conn, zero_tsih); iscsit_deaccess_np(np, tpg, tpg_np); @@ -656,6 +636,7 @@ static void iscsi_target_do_login_rx(struct work_struct *work) err: iscsi_target_restore_sock_callbacks(conn); cancel_delayed_work(&conn->login_work); + iscsit_stop_login_timer(conn); iscsi_target_login_drop(conn, login); iscsit_deaccess_np(np, tpg, tpg_np); } @@ -1183,7 +1164,7 @@ int iscsi_target_locate_portal( */ tiqn = iscsit_get_tiqn_for_login(t_buf); if (!tiqn) { - pr_err("Unable to locate Target IQN: %s in" + pr_debug("Unable to locate Target IQN: %s in" " Storage Node\n", t_buf); iscsit_tx_login_rsp(conn, ISCSI_STATUS_CLS_TARGET_ERR, ISCSI_LOGIN_STATUS_SVC_UNAVAILABLE); @@ -1301,6 +1282,9 @@ int iscsi_target_start_negotiation( set_bit(LOGIN_FLAGS_INITIAL_PDU, &conn->login_flags); write_unlock_bh(&sk->sk_callback_lock); } + + iscsit_start_login_timer(conn); + /* * If iscsi_target_do_login returns zero to signal more PDU * exchanges are required to complete the login, go ahead and @@ -1319,8 +1303,10 @@ int iscsi_target_start_negotiation( iscsi_target_restore_sock_callbacks(conn); iscsi_remove_failed_auth_entry(conn); } - if (ret != 0) + if (ret != 0) { + iscsit_stop_login_timer(conn); iscsi_target_nego_release(conn); + } return ret; } diff --git a/drivers/target/iscsi/iscsi_target_util.c b/drivers/target/iscsi/iscsi_target_util.c index 6dd5810e2af16..799d3f34a34f0 100644 --- a/drivers/target/iscsi/iscsi_target_util.c +++ b/drivers/target/iscsi/iscsi_target_util.c @@ -1040,6 +1040,34 @@ void iscsit_stop_nopin_timer(struct iscsi_conn *conn) spin_unlock_bh(&conn->nopin_timer_lock); } +void iscsit_login_timeout(struct timer_list *t) +{ + struct iscsi_conn *conn = from_timer(conn, t, login_timer); + + pr_debug("Entering iscsi_target_login_timeout >>>>>>>>>>>>>>>>>>>\n"); + + if (conn->login_kworker) { + pr_debug("Sending SIGINT to conn->login_kworker %s/%d\n", + conn->login_kworker->comm, conn->login_kworker->pid); + send_sig(SIGINT, conn->login_kworker, 1); + } else { + pr_debug("Shutting down the socket.\n"); + kernel_sock_shutdown(conn->sock, SHUT_RDWR); + } +} + +void iscsit_start_login_timer(struct iscsi_conn *conn) +{ + pr_debug("Login timer started\n"); + mod_timer(&conn->login_timer, jiffies + TA_LOGIN_TIMEOUT * HZ); +} + +void iscsit_stop_login_timer(struct iscsi_conn *conn) +{ + pr_debug("Login timer stopped\n"); + del_timer_sync(&conn->login_timer); +} + int iscsit_send_tx_data( struct iscsi_cmd *cmd, struct iscsi_conn *conn, diff --git a/drivers/target/iscsi/iscsi_target_util.h b/drivers/target/iscsi/iscsi_target_util.h index 8ee1c133a9b7b..3246caa7fa9b8 100644 --- a/drivers/target/iscsi/iscsi_target_util.h +++ b/drivers/target/iscsi/iscsi_target_util.h @@ -56,6 +56,9 @@ extern void iscsit_handle_nopin_timeout(struct timer_list *t); extern void __iscsit_start_nopin_timer(struct iscsi_conn *); extern void iscsit_start_nopin_timer(struct iscsi_conn *); extern void iscsit_stop_nopin_timer(struct iscsi_conn *); +extern void iscsit_login_timeout(struct timer_list *t); +extern void iscsit_start_login_timer(struct iscsi_conn *); +extern void iscsit_stop_login_timer(struct iscsi_conn *); extern int iscsit_send_tx_data(struct iscsi_cmd *, struct iscsi_conn *, int); extern int iscsit_fe_sendpage_sg(struct iscsi_cmd *, struct iscsi_conn *); extern int iscsit_tx_login_rsp(struct iscsi_conn *, u8, u8); diff --git a/drivers/target/target_core_device.c b/drivers/target/target_core_device.c index e18617371a9b2..813de805f815a 100644 --- a/drivers/target/target_core_device.c +++ b/drivers/target/target_core_device.c @@ -875,7 +875,6 @@ sector_t target_to_linux_sector(struct se_device *dev, sector_t lb) EXPORT_SYMBOL(target_to_linux_sector); struct devices_idr_iter { - struct config_item *prev_item; int (*fn)(struct se_device *dev, void *data); void *data; }; @@ -885,11 +884,9 @@ static int target_devices_idr_iter(int id, void *p, void *data) { struct devices_idr_iter *iter = data; struct se_device *dev = p; + struct config_item *item; int ret; - config_item_put(iter->prev_item); - iter->prev_item = NULL; - /* * We add the device early to the idr, so it can be used * by backend modules during configuration. We do not want @@ -899,12 +896,13 @@ static int target_devices_idr_iter(int id, void *p, void *data) if (!target_dev_configured(dev)) return 0; - iter->prev_item = config_item_get_unless_zero(&dev->dev_group.cg_item); - if (!iter->prev_item) + item = config_item_get_unless_zero(&dev->dev_group.cg_item); + if (!item) return 0; mutex_unlock(&device_mutex); ret = iter->fn(dev, iter->data); + config_item_put(item); mutex_lock(&device_mutex); return ret; @@ -927,7 +925,6 @@ int target_for_each_device(int (*fn)(struct se_device *dev, void *data), mutex_lock(&device_mutex); ret = idr_for_each(&devices_idr, target_devices_idr_iter, &iter); mutex_unlock(&device_mutex); - config_item_put(iter.prev_item); return ret; } diff --git a/drivers/target/target_core_transport.c b/drivers/target/target_core_transport.c index 72edf5bd75ee6..725f3c3d79f5d 100644 --- a/drivers/target/target_core_transport.c +++ b/drivers/target/target_core_transport.c @@ -849,7 +849,7 @@ static void target_abort_work(struct work_struct *work) target_handle_abort(cmd); } -static bool target_cmd_interrupted(struct se_cmd *cmd) +bool target_cmd_interrupted(struct se_cmd *cmd) { int post_ret; @@ -868,6 +868,7 @@ static bool target_cmd_interrupted(struct se_cmd *cmd) return false; } +EXPORT_SYMBOL(target_cmd_interrupted); /* May be called from interrupt context so must not sleep. */ void target_complete_cmd_with_sense(struct se_cmd *cmd, u8 scsi_status, diff --git a/drivers/tee/amdtee/core.c b/drivers/tee/amdtee/core.c index 372d64756ed64..3c15f6a9e91c0 100644 --- a/drivers/tee/amdtee/core.c +++ b/drivers/tee/amdtee/core.c @@ -217,12 +217,12 @@ static int copy_ta_binary(struct tee_context *ctx, void *ptr, void **ta, return rc; } +/* mutex must be held by caller */ static void destroy_session(struct kref *ref) { struct amdtee_session *sess = container_of(ref, struct amdtee_session, refcount); - mutex_lock(&session_list_mutex); list_del(&sess->list_node); mutex_unlock(&session_list_mutex); kfree(sess); @@ -272,7 +272,8 @@ int amdtee_open_session(struct tee_context *ctx, if (arg->ret != TEEC_SUCCESS) { pr_err("open_session failed %d\n", arg->ret); handle_unload_ta(ta_handle); - kref_put(&sess->refcount, destroy_session); + kref_put_mutex(&sess->refcount, destroy_session, + &session_list_mutex); goto out; } @@ -290,7 +291,8 @@ int amdtee_open_session(struct tee_context *ctx, pr_err("reached maximum session count %d\n", TEE_NUM_SESSIONS); handle_close_session(ta_handle, session_info); handle_unload_ta(ta_handle); - kref_put(&sess->refcount, destroy_session); + kref_put_mutex(&sess->refcount, destroy_session, + &session_list_mutex); rc = -ENOMEM; goto out; } @@ -331,7 +333,7 @@ int amdtee_close_session(struct tee_context *ctx, u32 session) handle_close_session(ta_handle, session_info); handle_unload_ta(ta_handle); - kref_put(&sess->refcount, destroy_session); + kref_put_mutex(&sess->refcount, destroy_session, &session_list_mutex); return 0; } diff --git a/drivers/tee/optee/device.c b/drivers/tee/optee/device.c index a74d82e230e36..8957065ea7307 100644 --- a/drivers/tee/optee/device.c +++ b/drivers/tee/optee/device.c @@ -60,7 +60,16 @@ static void optee_release_device(struct device *dev) kfree(optee_device); } -static int optee_register_device(const uuid_t *device_uuid) +static ssize_t need_supplicant_show(struct device *dev, + struct device_attribute *attr, + char *buf) +{ + return 0; +} + +static DEVICE_ATTR_RO(need_supplicant); + +static int optee_register_device(const uuid_t *device_uuid, u32 func) { struct tee_client_device *optee_device = NULL; int rc; @@ -83,6 +92,10 @@ static int optee_register_device(const uuid_t *device_uuid) put_device(&optee_device->dev); } + if (func == PTA_CMD_GET_DEVICES_SUPP) + device_create_file(&optee_device->dev, + &dev_attr_need_supplicant); + return rc; } @@ -143,7 +156,7 @@ static int __optee_enumerate_devices(u32 func) num_devices = shm_size / sizeof(uuid_t); for (idx = 0; idx < num_devices; idx++) { - rc = optee_register_device(&device_uuid[idx]); + rc = optee_register_device(&device_uuid[idx], func); if (rc) goto out_shm; } diff --git a/drivers/thermal/thermal_core.c b/drivers/thermal/thermal_core.c index 052e8e8fbb21e..ce748e03e4331 100644 --- a/drivers/thermal/thermal_core.c +++ b/drivers/thermal/thermal_core.c @@ -671,7 +671,8 @@ int thermal_zone_bind_cooling_device(struct thermal_zone_device *tz, if (result) goto release_ida; - sprintf(dev->attr_name, "cdev%d_trip_point", dev->id); + snprintf(dev->attr_name, sizeof(dev->attr_name), "cdev%d_trip_point", + dev->id); sysfs_attr_init(&dev->attr.attr); dev->attr.attr.name = dev->attr_name; dev->attr.attr.mode = 0444; @@ -680,7 +681,8 @@ int thermal_zone_bind_cooling_device(struct thermal_zone_device *tz, if (result) goto remove_symbol_link; - sprintf(dev->weight_attr_name, "cdev%d_weight", dev->id); + snprintf(dev->weight_attr_name, sizeof(dev->weight_attr_name), + "cdev%d_weight", dev->id); sysfs_attr_init(&dev->weight_attr.attr); dev->weight_attr.attr.name = dev->weight_attr_name; dev->weight_attr.attr.mode = S_IWUSR | S_IRUGO; diff --git a/drivers/thunderbolt/icm.c b/drivers/thunderbolt/icm.c index 69eead8a6015c..11c0207ebd7e4 100644 --- a/drivers/thunderbolt/icm.c +++ b/drivers/thunderbolt/icm.c @@ -41,6 +41,7 @@ #define PHY_PORT_CS1_LINK_STATE_SHIFT 26 #define ICM_TIMEOUT 5000 /* ms */ +#define ICM_RETRIES 3 #define ICM_APPROVE_TIMEOUT 10000 /* ms */ #define ICM_MAX_LINK 4 @@ -296,10 +297,9 @@ static bool icm_copy(struct tb_cfg_request *req, const struct ctl_pkg *pkg) static int icm_request(struct tb *tb, const void *request, size_t request_size, void *response, size_t response_size, size_t npackets, - unsigned int timeout_msec) + int retries, unsigned int timeout_msec) { struct icm *icm = tb_priv(tb); - int retries = 3; do { struct tb_cfg_request *req; @@ -410,7 +410,7 @@ static int icm_fr_get_route(struct tb *tb, u8 link, u8 depth, u64 *route) return -ENOMEM; ret = icm_request(tb, &request, sizeof(request), switches, - sizeof(*switches), npackets, ICM_TIMEOUT); + sizeof(*switches), npackets, ICM_RETRIES, ICM_TIMEOUT); if (ret) goto err_free; @@ -463,7 +463,7 @@ icm_fr_driver_ready(struct tb *tb, enum tb_security_level *security_level, memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -488,7 +488,7 @@ static int icm_fr_approve_switch(struct tb *tb, struct tb_switch *sw) memset(&reply, 0, sizeof(reply)); /* Use larger timeout as establishing tunnels can take some time */ ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_APPROVE_TIMEOUT); + 1, ICM_RETRIES, ICM_APPROVE_TIMEOUT); if (ret) return ret; @@ -515,7 +515,7 @@ static int icm_fr_add_switch_key(struct tb *tb, struct tb_switch *sw) memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -543,7 +543,7 @@ static int icm_fr_challenge_switch_key(struct tb *tb, struct tb_switch *sw, memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -577,7 +577,7 @@ static int icm_fr_approve_xdomain_paths(struct tb *tb, struct tb_xdomain *xd, memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -1022,7 +1022,7 @@ icm_tr_driver_ready(struct tb *tb, enum tb_security_level *security_level, memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, 20000); + 1, 10, 2000); if (ret) return ret; @@ -1055,7 +1055,7 @@ static int icm_tr_approve_switch(struct tb *tb, struct tb_switch *sw) memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_APPROVE_TIMEOUT); + 1, ICM_RETRIES, ICM_APPROVE_TIMEOUT); if (ret) return ret; @@ -1083,7 +1083,7 @@ static int icm_tr_add_switch_key(struct tb *tb, struct tb_switch *sw) memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -1112,7 +1112,7 @@ static int icm_tr_challenge_switch_key(struct tb *tb, struct tb_switch *sw, memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -1146,7 +1146,7 @@ static int icm_tr_approve_xdomain_paths(struct tb *tb, struct tb_xdomain *xd, memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -1172,7 +1172,7 @@ static int icm_tr_xdomain_tear_down(struct tb *tb, struct tb_xdomain *xd, memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -1498,7 +1498,7 @@ icm_ar_driver_ready(struct tb *tb, enum tb_security_level *security_level, memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -1524,7 +1524,7 @@ static int icm_ar_get_route(struct tb *tb, u8 link, u8 depth, u64 *route) memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -1545,7 +1545,7 @@ static int icm_ar_get_boot_acl(struct tb *tb, uuid_t *uuids, size_t nuuids) memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -1606,7 +1606,7 @@ static int icm_ar_set_boot_acl(struct tb *tb, const uuid_t *uuids, memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -1628,7 +1628,7 @@ icm_icl_driver_ready(struct tb *tb, enum tb_security_level *security_level, memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, 20000); + 1, ICM_RETRIES, 20000); if (ret) return ret; @@ -2295,7 +2295,7 @@ static int icm_usb4_switch_op(struct tb_switch *sw, u16 opcode, u32 *metadata, memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; diff --git a/drivers/thunderbolt/switch.c b/drivers/thunderbolt/switch.c index db905206c43b7..5c5519c2c8d21 100644 --- a/drivers/thunderbolt/switch.c +++ b/drivers/thunderbolt/switch.c @@ -2560,6 +2560,13 @@ int tb_switch_lane_bonding_enable(struct tb_switch *sw) !tb_port_is_width_supported(down, 2)) return 0; + /* + * Both lanes need to be in CL0. Here we assume lane 0 already be in + * CL0 and check just for lane 1. + */ + if (tb_wait_for_port(down->dual_link_port, false) <= 0) + return -ENOTCONN; + ret = tb_port_lane_bonding_enable(up); if (ret) { tb_port_warn(up, "failed to enable lane bonding\n"); diff --git a/drivers/tty/hvc/hvc_xen.c b/drivers/tty/hvc/hvc_xen.c index f2f066ce8d9ef..141acc662eba9 100644 --- a/drivers/tty/hvc/hvc_xen.c +++ b/drivers/tty/hvc/hvc_xen.c @@ -377,18 +377,21 @@ void xen_console_resume(void) #ifdef CONFIG_HVC_XEN_FRONTEND static void xencons_disconnect_backend(struct xencons_info *info) { - if (info->irq > 0) - unbind_from_irqhandler(info->irq, NULL); - info->irq = 0; + if (info->hvc != NULL) + hvc_remove(info->hvc); + info->hvc = NULL; + if (info->irq > 0) { + evtchn_put(info->evtchn); + info->irq = 0; + info->evtchn = 0; + } + /* evtchn_put() will also close it so this is only an error path */ if (info->evtchn > 0) xenbus_free_evtchn(info->xbdev, info->evtchn); info->evtchn = 0; if (info->gntref > 0) gnttab_free_grant_references(info->gntref); info->gntref = 0; - if (info->hvc != NULL) - hvc_remove(info->hvc); - info->hvc = NULL; } static void xencons_free(struct xencons_info *info) @@ -433,7 +436,7 @@ static int xencons_connect_backend(struct xenbus_device *dev, if (ret) return ret; info->evtchn = evtchn; - irq = bind_interdomain_evtchn_to_irq_lateeoi(dev, evtchn); + irq = bind_evtchn_to_irq_lateeoi(evtchn); if (irq < 0) return irq; info->irq = irq; @@ -553,10 +556,23 @@ static void xencons_backend_changed(struct xenbus_device *dev, if (dev->state == XenbusStateClosed) break; fallthrough; /* Missed the backend's CLOSING state */ - case XenbusStateClosing: + case XenbusStateClosing: { + struct xencons_info *info = dev_get_drvdata(&dev->dev);; + + /* + * Don't tear down the evtchn and grant ref before the other + * end has disconnected, but do stop userspace from trying + * to use the device before we allow the backend to close. + */ + if (info->hvc) { + hvc_remove(info->hvc); + info->hvc = NULL; + } + xenbus_frontend_closed(dev); break; } + } } static const struct xenbus_device_id xencons_ids[] = { @@ -587,7 +603,7 @@ static int __init xen_hvc_init(void) ops = &dom0_hvc_ops; r = xen_initial_domain_console_init(); if (r < 0) - return r; + goto register_fe; info = vtermno_to_xencons(HVC_COOKIE); } else { ops = &domU_hvc_ops; @@ -596,7 +612,7 @@ static int __init xen_hvc_init(void) else r = xen_pv_console_init(); if (r < 0) - return r; + goto register_fe; info = vtermno_to_xencons(HVC_COOKIE); info->irq = bind_evtchn_to_irq_lateeoi(info->evtchn); @@ -615,12 +631,13 @@ static int __init xen_hvc_init(void) list_del(&info->list); spin_unlock_irqrestore(&xencons_lock, flags); if (info->irq) - unbind_from_irqhandler(info->irq, NULL); + evtchn_put(info->evtchn); kfree(info); return r; } r = 0; + register_fe: #ifdef CONFIG_HVC_XEN_FRONTEND r = xenbus_register_frontend(&xencons_driver); #endif diff --git a/drivers/tty/n_gsm.c b/drivers/tty/n_gsm.c index 67889c0144142..2337402f95df7 100644 --- a/drivers/tty/n_gsm.c +++ b/drivers/tty/n_gsm.c @@ -2412,10 +2412,8 @@ static void gsm_cleanup_mux(struct gsm_mux *gsm, bool disc) gsm->has_devices = false; } for (i = NUM_DLCI - 1; i >= 0; i--) - if (gsm->dlci[i]) { + if (gsm->dlci[i]) gsm_dlci_release(gsm->dlci[i]); - gsm->dlci[i] = NULL; - } mutex_unlock(&gsm->mutex); /* Now wipe the queues */ tty_ldisc_flush(gsm->tty); @@ -3275,6 +3273,8 @@ static int gsm_modem_upd_via_msc(struct gsm_dlci *dlci, u8 brk) static int gsm_modem_update(struct gsm_dlci *dlci, u8 brk) { + if (dlci->gsm->dead) + return -EL2HLT; if (dlci->adaption == 2) { /* Send convergence layer type 2 empty data frame. */ gsm_modem_upd_via_data(dlci, brk); diff --git a/drivers/tty/serial/8250/8250_early.c b/drivers/tty/serial/8250/8250_early.c index c171ce6db6910..8a16510d086b6 100644 --- a/drivers/tty/serial/8250/8250_early.c +++ b/drivers/tty/serial/8250/8250_early.c @@ -199,6 +199,7 @@ static int __init early_omap8250_setup(struct earlycon_device *device, OF_EARLYCON_DECLARE(omap8250, "ti,omap2-uart", early_omap8250_setup); OF_EARLYCON_DECLARE(omap8250, "ti,omap3-uart", early_omap8250_setup); OF_EARLYCON_DECLARE(omap8250, "ti,omap4-uart", early_omap8250_setup); +OF_EARLYCON_DECLARE(omap8250, "ti,am654-uart", early_omap8250_setup); #endif diff --git a/drivers/tty/serial/8250/8250_omap.c b/drivers/tty/serial/8250/8250_omap.c index a6b374c026a87..20e0703f1def1 100644 --- a/drivers/tty/serial/8250/8250_omap.c +++ b/drivers/tty/serial/8250/8250_omap.c @@ -32,6 +32,7 @@ #include "8250.h" #define DEFAULT_CLK_SPEED 48000000 +#define OMAP_UART_REGSHIFT 2 #define UART_ERRATA_i202_MDR1_ACCESS (1 << 0) #define OMAP_UART_WER_HAS_TX_WAKEUP (1 << 1) @@ -109,6 +110,7 @@ #define UART_OMAP_RX_LVL 0x19 struct omap8250_priv { + void __iomem *membase; int line; u8 habit; u8 mdr1; @@ -152,9 +154,9 @@ static void omap_8250_rx_dma_flush(struct uart_8250_port *p); static inline void omap_8250_rx_dma_flush(struct uart_8250_port *p) { } #endif -static u32 uart_read(struct uart_8250_port *up, u32 reg) +static u32 uart_read(struct omap8250_priv *priv, u32 reg) { - return readl(up->port.membase + (reg << up->port.regshift)); + return readl(priv->membase + (reg << OMAP_UART_REGSHIFT)); } /* @@ -552,7 +554,7 @@ static void omap_serial_fill_features_erratas(struct uart_8250_port *up, u32 mvr, scheme; u16 revision, major, minor; - mvr = uart_read(up, UART_OMAP_MVER); + mvr = uart_read(priv, UART_OMAP_MVER); /* Check revision register scheme */ scheme = mvr >> OMAP_UART_MVR_SCHEME_SHIFT; @@ -837,7 +839,7 @@ static void __dma_rx_do_complete(struct uart_8250_port *p) if (priv->habit & UART_HAS_RHR_IT_DIS) { reg = serial_in(p, UART_OMAP_IER2); reg &= ~UART_OMAP_IER2_RHR_IT_DIS; - serial_out(p, UART_OMAP_IER2, UART_OMAP_IER2_RHR_IT_DIS); + serial_out(p, UART_OMAP_IER2, reg); } dmaengine_tx_status(rxchan, cookie, &state); @@ -979,7 +981,7 @@ static int omap_8250_rx_dma(struct uart_8250_port *p) if (priv->habit & UART_HAS_RHR_IT_DIS) { reg = serial_in(p, UART_OMAP_IER2); reg |= UART_OMAP_IER2_RHR_IT_DIS; - serial_out(p, UART_OMAP_IER2, UART_OMAP_IER2_RHR_IT_DIS); + serial_out(p, UART_OMAP_IER2, reg); } dma_async_issue_pending(dma->rxchan); @@ -1201,10 +1203,12 @@ static int omap_8250_dma_handle_irq(struct uart_port *port) status = serial_port_in(port, UART_LSR); - if (priv->habit & UART_HAS_EFR2) - am654_8250_handle_rx_dma(up, iir, status); - else - status = omap_8250_handle_rx_dma(up, iir, status); + if ((iir & 0x3f) != UART_IIR_THRI) { + if (priv->habit & UART_HAS_EFR2) + am654_8250_handle_rx_dma(up, iir, status); + else + status = omap_8250_handle_rx_dma(up, iir, status); + } serial8250_modem_status(up); if (status & UART_LSR_THRE && up->dma->tx_err) { @@ -1336,7 +1340,7 @@ static int omap8250_probe(struct platform_device *pdev) UPF_HARD_FLOW; up.port.private_data = priv; - up.port.regshift = 2; + up.port.regshift = OMAP_UART_REGSHIFT; up.port.fifosize = 64; up.tx_loadsz = 64; up.capabilities = UART_CAP_FIFO; @@ -1397,6 +1401,8 @@ static int omap8250_probe(struct platform_device *pdev) DEFAULT_CLK_SPEED); } + priv->membase = membase; + priv->line = -ENODEV; priv->latency = PM_QOS_CPU_LATENCY_DEFAULT_VALUE; priv->calc_latency = PM_QOS_CPU_LATENCY_DEFAULT_VALUE; cpu_latency_qos_add_request(&priv->pm_qos_request, priv->latency); @@ -1404,6 +1410,8 @@ static int omap8250_probe(struct platform_device *pdev) spin_lock_init(&priv->rx_dma_lock); + platform_set_drvdata(pdev, priv); + device_init_wakeup(&pdev->dev, true); pm_runtime_enable(&pdev->dev); pm_runtime_use_autosuspend(&pdev->dev); @@ -1465,7 +1473,6 @@ static int omap8250_probe(struct platform_device *pdev) goto err; } priv->line = ret; - platform_set_drvdata(pdev, priv); pm_runtime_mark_last_busy(&pdev->dev); pm_runtime_put_autosuspend(&pdev->dev); return 0; @@ -1487,11 +1494,12 @@ static int omap8250_remove(struct platform_device *pdev) if (err) return err; + serial8250_unregister_port(priv->line); + priv->line = -ENODEV; pm_runtime_dont_use_autosuspend(&pdev->dev); pm_runtime_put_sync(&pdev->dev); flush_work(&priv->qos_work); pm_runtime_disable(&pdev->dev); - serial8250_unregister_port(priv->line); cpu_latency_qos_remove_request(&priv->pm_qos_request); device_init_wakeup(&pdev->dev, false); return 0; @@ -1521,7 +1529,7 @@ static int omap8250_suspend(struct device *dev) { struct omap8250_priv *priv = dev_get_drvdata(dev); struct uart_8250_port *up = serial8250_get_port(priv->line); - int err; + int err = 0; serial8250_suspend_port(priv->line); @@ -1531,7 +1539,8 @@ static int omap8250_suspend(struct device *dev) if (!device_may_wakeup(dev)) priv->wer = 0; serial_out(up, UART_OMAP_WER, priv->wer); - err = pm_runtime_force_suspend(dev); + if (uart_console(&up->port) && console_suspend_enabled) + err = pm_runtime_force_suspend(dev); flush_work(&priv->qos_work); return err; @@ -1540,11 +1549,15 @@ static int omap8250_suspend(struct device *dev) static int omap8250_resume(struct device *dev) { struct omap8250_priv *priv = dev_get_drvdata(dev); + struct uart_8250_port *up = serial8250_get_port(priv->line); int err; - err = pm_runtime_force_resume(dev); - if (err) - return err; + if (uart_console(&up->port) && console_suspend_enabled) { + err = pm_runtime_force_resume(dev); + if (err) + return err; + } + serial8250_resume_port(priv->line); /* Paired with pm_runtime_resume_and_get() in omap8250_suspend() */ pm_runtime_mark_last_busy(dev); @@ -1573,11 +1586,15 @@ static int omap8250_lost_context(struct uart_8250_port *up) return 0; } +static void uart_write(struct omap8250_priv *priv, u32 reg, u32 val) +{ + writel(val, priv->membase + (reg << OMAP_UART_REGSHIFT)); +} + /* TODO: in future, this should happen via API in drivers/reset/ */ static int omap8250_soft_reset(struct device *dev) { struct omap8250_priv *priv = dev_get_drvdata(dev); - struct uart_8250_port *up = serial8250_get_port(priv->line); int timeout = 100; int sysc; int syss; @@ -1591,20 +1608,20 @@ static int omap8250_soft_reset(struct device *dev) * needing omap8250_soft_reset() quirk. Do it in two writes as * recommended in the comment for omap8250_update_scr(). */ - serial_out(up, UART_OMAP_SCR, OMAP_UART_SCR_DMAMODE_1); - serial_out(up, UART_OMAP_SCR, + uart_write(priv, UART_OMAP_SCR, OMAP_UART_SCR_DMAMODE_1); + uart_write(priv, UART_OMAP_SCR, OMAP_UART_SCR_DMAMODE_1 | OMAP_UART_SCR_DMAMODE_CTL); - sysc = serial_in(up, UART_OMAP_SYSC); + sysc = uart_read(priv, UART_OMAP_SYSC); /* softreset the UART */ sysc |= OMAP_UART_SYSC_SOFTRESET; - serial_out(up, UART_OMAP_SYSC, sysc); + uart_write(priv, UART_OMAP_SYSC, sysc); /* By experiments, 1us enough for reset complete on AM335x */ do { udelay(1); - syss = serial_in(up, UART_OMAP_SYSS); + syss = uart_read(priv, UART_OMAP_SYSS); } while (--timeout && !(syss & OMAP_UART_SYSS_RESETDONE)); if (!timeout) { @@ -1618,23 +1635,10 @@ static int omap8250_soft_reset(struct device *dev) static int omap8250_runtime_suspend(struct device *dev) { struct omap8250_priv *priv = dev_get_drvdata(dev); - struct uart_8250_port *up; + struct uart_8250_port *up = NULL; - /* In case runtime-pm tries this before we are setup */ - if (!priv) - return 0; - - up = serial8250_get_port(priv->line); - /* - * When using 'no_console_suspend', the console UART must not be - * suspended. Since driver suspend is managed by runtime suspend, - * preventing runtime suspend (by returning error) will keep device - * active during suspend. - */ - if (priv->is_suspending && !console_suspend_enabled) { - if (uart_console(&up->port)) - return -EBUSY; - } + if (priv->line >= 0) + up = serial8250_get_port(priv->line); if (priv->habit & UART_ERRATA_CLOCK_DISABLE) { int ret; @@ -1643,13 +1647,15 @@ static int omap8250_runtime_suspend(struct device *dev) if (ret) return ret; - /* Restore to UART mode after reset (for wakeup) */ - omap8250_update_mdr1(up, priv); - /* Restore wakeup enable register */ - serial_out(up, UART_OMAP_WER, priv->wer); + if (up) { + /* Restore to UART mode after reset (for wakeup) */ + omap8250_update_mdr1(up, priv); + /* Restore wakeup enable register */ + serial_out(up, UART_OMAP_WER, priv->wer); + } } - if (up->dma && up->dma->rxchan) + if (up && up->dma && up->dma->rxchan) omap_8250_rx_dma_flush(up); priv->latency = PM_QOS_CPU_LATENCY_DEFAULT_VALUE; @@ -1661,18 +1667,15 @@ static int omap8250_runtime_suspend(struct device *dev) static int omap8250_runtime_resume(struct device *dev) { struct omap8250_priv *priv = dev_get_drvdata(dev); - struct uart_8250_port *up; - - /* In case runtime-pm tries this before we are setup */ - if (!priv) - return 0; + struct uart_8250_port *up = NULL; - up = serial8250_get_port(priv->line); + if (priv->line >= 0) + up = serial8250_get_port(priv->line); - if (omap8250_lost_context(up)) + if (up && omap8250_lost_context(up)) omap8250_restore_regs(up); - if (up->dma && up->dma->rxchan && !(priv->habit & UART_HAS_EFR2)) + if (up && up->dma && up->dma->rxchan && !(priv->habit & UART_HAS_EFR2)) omap_8250_rx_dma(up); priv->latency = priv->calc_latency; diff --git a/drivers/tty/serial/8250/8250_pci.c b/drivers/tty/serial/8250/8250_pci.c index 5f0daa0d1dd0e..1d842bb8d9469 100644 --- a/drivers/tty/serial/8250/8250_pci.c +++ b/drivers/tty/serial/8250/8250_pci.c @@ -2719,6 +2719,153 @@ static struct pci_serial_quirk pci_serial_quirks[] = { .init = pci_oxsemi_tornado_init, .setup = pci_oxsemi_tornado_setup, }, + /* + * Brainboxes devices - all Oxsemi based + */ + { + .vendor = PCI_VENDOR_ID_INTASHIELD, + .device = 0x4027, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .init = pci_oxsemi_tornado_init, + .setup = pci_oxsemi_tornado_setup, + }, + { + .vendor = PCI_VENDOR_ID_INTASHIELD, + .device = 0x4028, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .init = pci_oxsemi_tornado_init, + .setup = pci_oxsemi_tornado_setup, + }, + { + .vendor = PCI_VENDOR_ID_INTASHIELD, + .device = 0x4029, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .init = pci_oxsemi_tornado_init, + .setup = pci_oxsemi_tornado_setup, + }, + { + .vendor = PCI_VENDOR_ID_INTASHIELD, + .device = 0x4019, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .init = pci_oxsemi_tornado_init, + .setup = pci_oxsemi_tornado_setup, + }, + { + .vendor = PCI_VENDOR_ID_INTASHIELD, + .device = 0x4016, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .init = pci_oxsemi_tornado_init, + .setup = pci_oxsemi_tornado_setup, + }, + { + .vendor = PCI_VENDOR_ID_INTASHIELD, + .device = 0x4015, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .init = pci_oxsemi_tornado_init, + .setup = pci_oxsemi_tornado_setup, + }, + { + .vendor = PCI_VENDOR_ID_INTASHIELD, + .device = 0x400A, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .init = pci_oxsemi_tornado_init, + .setup = pci_oxsemi_tornado_setup, + }, + { + .vendor = PCI_VENDOR_ID_INTASHIELD, + .device = 0x400E, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .init = pci_oxsemi_tornado_init, + .setup = pci_oxsemi_tornado_setup, + }, + { + .vendor = PCI_VENDOR_ID_INTASHIELD, + .device = 0x400C, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .init = pci_oxsemi_tornado_init, + .setup = pci_oxsemi_tornado_setup, + }, + { + .vendor = PCI_VENDOR_ID_INTASHIELD, + .device = 0x400B, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .init = pci_oxsemi_tornado_init, + .setup = pci_oxsemi_tornado_setup, + }, + { + .vendor = PCI_VENDOR_ID_INTASHIELD, + .device = 0x400F, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .init = pci_oxsemi_tornado_init, + .setup = pci_oxsemi_tornado_setup, + }, + { + .vendor = PCI_VENDOR_ID_INTASHIELD, + .device = 0x4010, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .init = pci_oxsemi_tornado_init, + .setup = pci_oxsemi_tornado_setup, + }, + { + .vendor = PCI_VENDOR_ID_INTASHIELD, + .device = 0x4011, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .init = pci_oxsemi_tornado_init, + .setup = pci_oxsemi_tornado_setup, + }, + { + .vendor = PCI_VENDOR_ID_INTASHIELD, + .device = 0x401D, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .init = pci_oxsemi_tornado_init, + .setup = pci_oxsemi_tornado_setup, + }, + { + .vendor = PCI_VENDOR_ID_INTASHIELD, + .device = 0x401E, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .init = pci_oxsemi_tornado_init, + .setup = pci_oxsemi_tornado_setup, + }, + { + .vendor = PCI_VENDOR_ID_INTASHIELD, + .device = 0x4013, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .init = pci_oxsemi_tornado_init, + .setup = pci_oxsemi_tornado_setup, + }, + { + .vendor = PCI_VENDOR_ID_INTASHIELD, + .device = 0x4017, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .init = pci_oxsemi_tornado_init, + .setup = pci_oxsemi_tornado_setup, + }, + { + .vendor = PCI_VENDOR_ID_INTASHIELD, + .device = 0x4018, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .init = pci_oxsemi_tornado_init, + .setup = pci_oxsemi_tornado_setup, + }, { .vendor = PCI_VENDOR_ID_INTEL, .device = 0x8811, @@ -5340,6 +5487,12 @@ static const struct pci_device_id serial_pci_tbl[] = { 0, 0, pbn_b1_bt_1_115200 }, + /* + * IntaShield IS-100 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x0D60, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, + pbn_b2_1_115200 }, /* * IntaShield IS-200 */ @@ -5352,6 +5505,27 @@ static const struct pci_device_id serial_pci_tbl[] = { { PCI_VENDOR_ID_INTASHIELD, PCI_DEVICE_ID_INTASHIELD_IS400, PCI_ANY_ID, PCI_ANY_ID, 0, 0, /* 135a.0dc0 */ pbn_b2_4_115200 }, + /* + * IntaShield IX-100 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x4027, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_oxsemi_1_15625000 }, + /* + * IntaShield IX-200 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x4028, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_oxsemi_2_15625000 }, + /* + * IntaShield IX-400 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x4029, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_oxsemi_4_15625000 }, /* Brainboxes Devices */ /* * Brainboxes UC-101 @@ -5367,10 +5541,14 @@ static const struct pci_device_id serial_pci_tbl[] = { PCI_ANY_ID, PCI_ANY_ID, 0, 0, pbn_b2_1_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0AA2, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_1_115200 }, /* - * Brainboxes UC-257 + * Brainboxes UC-253/UC-734 */ - { PCI_VENDOR_ID_INTASHIELD, 0x0861, + { PCI_VENDOR_ID_INTASHIELD, 0x0CA1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, pbn_b2_2_115200 }, @@ -5406,6 +5584,14 @@ static const struct pci_device_id serial_pci_tbl[] = { PCI_ANY_ID, PCI_ANY_ID, 0, 0, pbn_b2_2_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x08E2, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x08E3, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, /* * Brainboxes UC-310 */ @@ -5416,6 +5602,14 @@ static const struct pci_device_id serial_pci_tbl[] = { /* * Brainboxes UC-313 */ + { PCI_VENDOR_ID_INTASHIELD, 0x08A1, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x08A2, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, { PCI_VENDOR_ID_INTASHIELD, 0x08A3, PCI_ANY_ID, PCI_ANY_ID, 0, 0, @@ -5430,6 +5624,10 @@ static const struct pci_device_id serial_pci_tbl[] = { /* * Brainboxes UC-346 */ + { PCI_VENDOR_ID_INTASHIELD, 0x0B01, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_4_115200 }, { PCI_VENDOR_ID_INTASHIELD, 0x0B02, PCI_ANY_ID, PCI_ANY_ID, 0, 0, @@ -5441,6 +5639,10 @@ static const struct pci_device_id serial_pci_tbl[] = { PCI_ANY_ID, PCI_ANY_ID, 0, 0, pbn_b2_2_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0A82, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, { PCI_VENDOR_ID_INTASHIELD, 0x0A83, PCI_ANY_ID, PCI_ANY_ID, 0, 0, @@ -5453,12 +5655,94 @@ static const struct pci_device_id serial_pci_tbl[] = { 0, 0, pbn_b2_4_115200 }, /* - * Brainboxes UC-420/431 + * Brainboxes UC-420 */ { PCI_VENDOR_ID_INTASHIELD, 0x0921, PCI_ANY_ID, PCI_ANY_ID, 0, 0, pbn_b2_4_115200 }, + /* + * Brainboxes UC-607 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x09A1, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x09A2, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x09A3, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + /* + * Brainboxes UC-836 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x0D41, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_4_115200 }, + /* + * Brainboxes UP-189 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x0AC1, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0AC2, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0AC3, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + /* + * Brainboxes UP-200 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x0B21, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0B22, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0B23, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + /* + * Brainboxes UP-869 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x0C01, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0C02, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0C03, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + /* + * Brainboxes UP-880 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x0C21, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0C22, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0C23, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, /* * Brainboxes PX-101 */ @@ -5491,7 +5775,7 @@ static const struct pci_device_id serial_pci_tbl[] = { { PCI_VENDOR_ID_INTASHIELD, 0x4015, PCI_ANY_ID, PCI_ANY_ID, 0, 0, - pbn_oxsemi_4_15625000 }, + pbn_oxsemi_2_15625000 }, /* * Brainboxes PX-260/PX-701 */ @@ -5499,6 +5783,13 @@ static const struct pci_device_id serial_pci_tbl[] = { PCI_ANY_ID, PCI_ANY_ID, 0, 0, pbn_oxsemi_4_15625000 }, + /* + * Brainboxes PX-275/279 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x0E41, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_8_115200 }, /* * Brainboxes PX-310 */ @@ -5546,16 +5837,38 @@ static const struct pci_device_id serial_pci_tbl[] = { 0, 0, pbn_oxsemi_4_15625000 }, /* - * Brainboxes PX-803 + * Brainboxes PX-475 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x401D, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_oxsemi_1_15625000 }, + /* + * Brainboxes PX-803/PX-857 */ { PCI_VENDOR_ID_INTASHIELD, 0x4009, PCI_ANY_ID, PCI_ANY_ID, 0, 0, - pbn_b0_1_115200 }, + pbn_b0_2_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x4018, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_oxsemi_2_15625000 }, { PCI_VENDOR_ID_INTASHIELD, 0x401E, PCI_ANY_ID, PCI_ANY_ID, 0, 0, - pbn_oxsemi_1_15625000 }, + pbn_oxsemi_2_15625000 }, + /* + * Brainboxes PX-820 + */ + { PCI_VENDOR_ID_INTASHIELD, 0x4002, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b0_4_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x4013, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_oxsemi_4_15625000 }, /* * Brainboxes PX-846 */ diff --git a/drivers/tty/serial/8250/8250_port.c b/drivers/tty/serial/8250/8250_port.c index 74e477016f255..45a8f76f562e7 100644 --- a/drivers/tty/serial/8250/8250_port.c +++ b/drivers/tty/serial/8250/8250_port.c @@ -1930,7 +1930,10 @@ int serial8250_handle_irq(struct uart_port *port, unsigned int iir) skip_rx = true; if (status & (UART_LSR_DR | UART_LSR_BI) && !skip_rx) { - if (irqd_is_wakeup_set(irq_get_irq_data(port->irq))) + struct irq_data *d; + + d = irq_get_irq_data(port->irq); + if (d && irqd_is_wakeup_set(d)) pm_wakeup_event(tport->tty->dev, 0); if (!up->dma || handle_rx_dma(up, iir)) status = serial8250_rx_chars(up, status); diff --git a/drivers/tty/serial/amba-pl011.c b/drivers/tty/serial/amba-pl011.c index b91fe25a64a18..39c711afe4cdd 100644 --- a/drivers/tty/serial/amba-pl011.c +++ b/drivers/tty/serial/amba-pl011.c @@ -222,17 +222,18 @@ static struct vendor_data vendor_zte = { /* Deals with DMA transactions */ -struct pl011_sgbuf { - struct scatterlist sg; - char *buf; +struct pl011_dmabuf { + dma_addr_t dma; + size_t len; + char *buf; }; struct pl011_dmarx_data { struct dma_chan *chan; struct completion complete; bool use_buf_b; - struct pl011_sgbuf sgbuf_a; - struct pl011_sgbuf sgbuf_b; + struct pl011_dmabuf dbuf_a; + struct pl011_dmabuf dbuf_b; dma_cookie_t cookie; bool running; struct timer_list timer; @@ -245,7 +246,8 @@ struct pl011_dmarx_data { struct pl011_dmatx_data { struct dma_chan *chan; - struct scatterlist sg; + dma_addr_t dma; + size_t len; char *buf; bool queued; }; @@ -370,32 +372,24 @@ static int pl011_fifo_to_tty(struct uart_amba_port *uap) #define PL011_DMA_BUFFER_SIZE PAGE_SIZE -static int pl011_sgbuf_init(struct dma_chan *chan, struct pl011_sgbuf *sg, +static int pl011_dmabuf_init(struct dma_chan *chan, struct pl011_dmabuf *db, enum dma_data_direction dir) { - dma_addr_t dma_addr; - - sg->buf = dma_alloc_coherent(chan->device->dev, - PL011_DMA_BUFFER_SIZE, &dma_addr, GFP_KERNEL); - if (!sg->buf) + db->buf = dma_alloc_coherent(chan->device->dev, PL011_DMA_BUFFER_SIZE, + &db->dma, GFP_KERNEL); + if (!db->buf) return -ENOMEM; - - sg_init_table(&sg->sg, 1); - sg_set_page(&sg->sg, phys_to_page(dma_addr), - PL011_DMA_BUFFER_SIZE, offset_in_page(dma_addr)); - sg_dma_address(&sg->sg) = dma_addr; - sg_dma_len(&sg->sg) = PL011_DMA_BUFFER_SIZE; + db->len = PL011_DMA_BUFFER_SIZE; return 0; } -static void pl011_sgbuf_free(struct dma_chan *chan, struct pl011_sgbuf *sg, +static void pl011_dmabuf_free(struct dma_chan *chan, struct pl011_dmabuf *db, enum dma_data_direction dir) { - if (sg->buf) { + if (db->buf) { dma_free_coherent(chan->device->dev, - PL011_DMA_BUFFER_SIZE, sg->buf, - sg_dma_address(&sg->sg)); + PL011_DMA_BUFFER_SIZE, db->buf, db->dma); } } @@ -556,8 +550,8 @@ static void pl011_dma_tx_callback(void *data) spin_lock_irqsave(&uap->port.lock, flags); if (uap->dmatx.queued) - dma_unmap_sg(dmatx->chan->device->dev, &dmatx->sg, 1, - DMA_TO_DEVICE); + dma_unmap_single(dmatx->chan->device->dev, dmatx->dma, + dmatx->len, DMA_TO_DEVICE); dmacr = uap->dmacr; uap->dmacr = dmacr & ~UART011_TXDMAE; @@ -643,18 +637,19 @@ static int pl011_dma_tx_refill(struct uart_amba_port *uap) memcpy(&dmatx->buf[first], &xmit->buf[0], second); } - dmatx->sg.length = count; - - if (dma_map_sg(dma_dev->dev, &dmatx->sg, 1, DMA_TO_DEVICE) != 1) { + dmatx->len = count; + dmatx->dma = dma_map_single(dma_dev->dev, dmatx->buf, count, + DMA_TO_DEVICE); + if (dmatx->dma == DMA_MAPPING_ERROR) { uap->dmatx.queued = false; dev_dbg(uap->port.dev, "unable to map TX DMA\n"); return -EBUSY; } - desc = dmaengine_prep_slave_sg(chan, &dmatx->sg, 1, DMA_MEM_TO_DEV, + desc = dmaengine_prep_slave_single(chan, dmatx->dma, dmatx->len, DMA_MEM_TO_DEV, DMA_PREP_INTERRUPT | DMA_CTRL_ACK); if (!desc) { - dma_unmap_sg(dma_dev->dev, &dmatx->sg, 1, DMA_TO_DEVICE); + dma_unmap_single(dma_dev->dev, dmatx->dma, dmatx->len, DMA_TO_DEVICE); uap->dmatx.queued = false; /* * If DMA cannot be used right now, we complete this @@ -818,8 +813,8 @@ __acquires(&uap->port.lock) dmaengine_terminate_async(uap->dmatx.chan); if (uap->dmatx.queued) { - dma_unmap_sg(uap->dmatx.chan->device->dev, &uap->dmatx.sg, 1, - DMA_TO_DEVICE); + dma_unmap_single(uap->dmatx.chan->device->dev, uap->dmatx.dma, + uap->dmatx.len, DMA_TO_DEVICE); uap->dmatx.queued = false; uap->dmacr &= ~UART011_TXDMAE; pl011_write(uap->dmacr, uap, REG_DMACR); @@ -833,15 +828,15 @@ static int pl011_dma_rx_trigger_dma(struct uart_amba_port *uap) struct dma_chan *rxchan = uap->dmarx.chan; struct pl011_dmarx_data *dmarx = &uap->dmarx; struct dma_async_tx_descriptor *desc; - struct pl011_sgbuf *sgbuf; + struct pl011_dmabuf *dbuf; if (!rxchan) return -EIO; /* Start the RX DMA job */ - sgbuf = uap->dmarx.use_buf_b ? - &uap->dmarx.sgbuf_b : &uap->dmarx.sgbuf_a; - desc = dmaengine_prep_slave_sg(rxchan, &sgbuf->sg, 1, + dbuf = uap->dmarx.use_buf_b ? + &uap->dmarx.dbuf_b : &uap->dmarx.dbuf_a; + desc = dmaengine_prep_slave_single(rxchan, dbuf->dma, dbuf->len, DMA_DEV_TO_MEM, DMA_PREP_INTERRUPT | DMA_CTRL_ACK); /* @@ -881,8 +876,8 @@ static void pl011_dma_rx_chars(struct uart_amba_port *uap, bool readfifo) { struct tty_port *port = &uap->port.state->port; - struct pl011_sgbuf *sgbuf = use_buf_b ? - &uap->dmarx.sgbuf_b : &uap->dmarx.sgbuf_a; + struct pl011_dmabuf *dbuf = use_buf_b ? + &uap->dmarx.dbuf_b : &uap->dmarx.dbuf_a; int dma_count = 0; u32 fifotaken = 0; /* only used for vdbg() */ @@ -891,7 +886,7 @@ static void pl011_dma_rx_chars(struct uart_amba_port *uap, if (uap->dmarx.poll_rate) { /* The data can be taken by polling */ - dmataken = sgbuf->sg.length - dmarx->last_residue; + dmataken = dbuf->len - dmarx->last_residue; /* Recalculate the pending size */ if (pending >= dmataken) pending -= dmataken; @@ -905,7 +900,7 @@ static void pl011_dma_rx_chars(struct uart_amba_port *uap, * Note that tty_insert_flip_buf() tries to take as many chars * as it can. */ - dma_count = tty_insert_flip_string(port, sgbuf->buf + dmataken, + dma_count = tty_insert_flip_string(port, dbuf->buf + dmataken, pending); uap->port.icount.rx += dma_count; @@ -916,7 +911,7 @@ static void pl011_dma_rx_chars(struct uart_amba_port *uap, /* Reset the last_residue for Rx DMA poll */ if (uap->dmarx.poll_rate) - dmarx->last_residue = sgbuf->sg.length; + dmarx->last_residue = dbuf->len; /* * Only continue with trying to read the FIFO if all DMA chars have @@ -951,8 +946,8 @@ static void pl011_dma_rx_irq(struct uart_amba_port *uap) { struct pl011_dmarx_data *dmarx = &uap->dmarx; struct dma_chan *rxchan = dmarx->chan; - struct pl011_sgbuf *sgbuf = dmarx->use_buf_b ? - &dmarx->sgbuf_b : &dmarx->sgbuf_a; + struct pl011_dmabuf *dbuf = dmarx->use_buf_b ? + &dmarx->dbuf_b : &dmarx->dbuf_a; size_t pending; struct dma_tx_state state; enum dma_status dmastat; @@ -974,7 +969,7 @@ static void pl011_dma_rx_irq(struct uart_amba_port *uap) pl011_write(uap->dmacr, uap, REG_DMACR); uap->dmarx.running = false; - pending = sgbuf->sg.length - state.residue; + pending = dbuf->len - state.residue; BUG_ON(pending > PL011_DMA_BUFFER_SIZE); /* Then we terminate the transfer - we now know our residue */ dmaengine_terminate_all(rxchan); @@ -1001,8 +996,8 @@ static void pl011_dma_rx_callback(void *data) struct pl011_dmarx_data *dmarx = &uap->dmarx; struct dma_chan *rxchan = dmarx->chan; bool lastbuf = dmarx->use_buf_b; - struct pl011_sgbuf *sgbuf = dmarx->use_buf_b ? - &dmarx->sgbuf_b : &dmarx->sgbuf_a; + struct pl011_dmabuf *dbuf = dmarx->use_buf_b ? + &dmarx->dbuf_b : &dmarx->dbuf_a; size_t pending; struct dma_tx_state state; int ret; @@ -1020,7 +1015,7 @@ static void pl011_dma_rx_callback(void *data) * the DMA irq handler. So we check the residue here. */ rxchan->device->device_tx_status(rxchan, dmarx->cookie, &state); - pending = sgbuf->sg.length - state.residue; + pending = dbuf->len - state.residue; BUG_ON(pending > PL011_DMA_BUFFER_SIZE); /* Then we terminate the transfer - we now know our residue */ dmaengine_terminate_all(rxchan); @@ -1072,16 +1067,16 @@ static void pl011_dma_rx_poll(struct timer_list *t) unsigned long flags; unsigned int dmataken = 0; unsigned int size = 0; - struct pl011_sgbuf *sgbuf; + struct pl011_dmabuf *dbuf; int dma_count; struct dma_tx_state state; - sgbuf = dmarx->use_buf_b ? &uap->dmarx.sgbuf_b : &uap->dmarx.sgbuf_a; + dbuf = dmarx->use_buf_b ? &uap->dmarx.dbuf_b : &uap->dmarx.dbuf_a; rxchan->device->device_tx_status(rxchan, dmarx->cookie, &state); if (likely(state.residue < dmarx->last_residue)) { - dmataken = sgbuf->sg.length - dmarx->last_residue; + dmataken = dbuf->len - dmarx->last_residue; size = dmarx->last_residue - state.residue; - dma_count = tty_insert_flip_string(port, sgbuf->buf + dmataken, + dma_count = tty_insert_flip_string(port, dbuf->buf + dmataken, size); if (dma_count == size) dmarx->last_residue = state.residue; @@ -1128,7 +1123,7 @@ static void pl011_dma_startup(struct uart_amba_port *uap) return; } - sg_init_one(&uap->dmatx.sg, uap->dmatx.buf, PL011_DMA_BUFFER_SIZE); + uap->dmatx.len = PL011_DMA_BUFFER_SIZE; /* The DMA buffer is now the FIFO the TTY subsystem can use */ uap->port.fifosize = PL011_DMA_BUFFER_SIZE; @@ -1138,7 +1133,7 @@ static void pl011_dma_startup(struct uart_amba_port *uap) goto skip_rx; /* Allocate and map DMA RX buffers */ - ret = pl011_sgbuf_init(uap->dmarx.chan, &uap->dmarx.sgbuf_a, + ret = pl011_dmabuf_init(uap->dmarx.chan, &uap->dmarx.dbuf_a, DMA_FROM_DEVICE); if (ret) { dev_err(uap->port.dev, "failed to init DMA %s: %d\n", @@ -1146,12 +1141,12 @@ static void pl011_dma_startup(struct uart_amba_port *uap) goto skip_rx; } - ret = pl011_sgbuf_init(uap->dmarx.chan, &uap->dmarx.sgbuf_b, + ret = pl011_dmabuf_init(uap->dmarx.chan, &uap->dmarx.dbuf_b, DMA_FROM_DEVICE); if (ret) { dev_err(uap->port.dev, "failed to init DMA %s: %d\n", "RX buffer B", ret); - pl011_sgbuf_free(uap->dmarx.chan, &uap->dmarx.sgbuf_a, + pl011_dmabuf_free(uap->dmarx.chan, &uap->dmarx.dbuf_a, DMA_FROM_DEVICE); goto skip_rx; } @@ -1205,8 +1200,9 @@ static void pl011_dma_shutdown(struct uart_amba_port *uap) /* In theory, this should already be done by pl011_dma_flush_buffer */ dmaengine_terminate_all(uap->dmatx.chan); if (uap->dmatx.queued) { - dma_unmap_sg(uap->dmatx.chan->device->dev, &uap->dmatx.sg, 1, - DMA_TO_DEVICE); + dma_unmap_single(uap->dmatx.chan->device->dev, + uap->dmatx.dma, uap->dmatx.len, + DMA_TO_DEVICE); uap->dmatx.queued = false; } @@ -1217,8 +1213,8 @@ static void pl011_dma_shutdown(struct uart_amba_port *uap) if (uap->using_rx_dma) { dmaengine_terminate_all(uap->dmarx.chan); /* Clean up the RX DMA */ - pl011_sgbuf_free(uap->dmarx.chan, &uap->dmarx.sgbuf_a, DMA_FROM_DEVICE); - pl011_sgbuf_free(uap->dmarx.chan, &uap->dmarx.sgbuf_b, DMA_FROM_DEVICE); + pl011_dmabuf_free(uap->dmarx.chan, &uap->dmarx.dbuf_a, DMA_FROM_DEVICE); + pl011_dmabuf_free(uap->dmarx.chan, &uap->dmarx.dbuf_b, DMA_FROM_DEVICE); if (uap->dmarx.poll_rate) del_timer_sync(&uap->dmarx.timer); uap->using_rx_dma = false; diff --git a/drivers/tty/serial/cpm_uart/cpm_uart_core.c b/drivers/tty/serial/cpm_uart/cpm_uart_core.c index db07d6a5d764d..2335edd516847 100644 --- a/drivers/tty/serial/cpm_uart/cpm_uart_core.c +++ b/drivers/tty/serial/cpm_uart/cpm_uart_core.c @@ -1276,19 +1276,14 @@ static void cpm_uart_console_write(struct console *co, const char *s, { struct uart_cpm_port *pinfo = &cpm_uart_ports[co->index]; unsigned long flags; - int nolock = oops_in_progress; - if (unlikely(nolock)) { + if (unlikely(oops_in_progress)) { local_irq_save(flags); - } else { - spin_lock_irqsave(&pinfo->port.lock, flags); - } - - cpm_uart_early_write(pinfo, s, count, true); - - if (unlikely(nolock)) { + cpm_uart_early_write(pinfo, s, count, true); local_irq_restore(flags); } else { + spin_lock_irqsave(&pinfo->port.lock, flags); + cpm_uart_early_write(pinfo, s, count, true); spin_unlock_irqrestore(&pinfo->port.lock, flags); } } diff --git a/drivers/tty/serial/meson_uart.c b/drivers/tty/serial/meson_uart.c index 62e6c1af13445..7e653d681ac01 100644 --- a/drivers/tty/serial/meson_uart.c +++ b/drivers/tty/serial/meson_uart.c @@ -368,10 +368,14 @@ static void meson_uart_set_termios(struct uart_port *port, else val |= AML_UART_STOP_BIT_1SB; - if (cflags & CRTSCTS) - val &= ~AML_UART_TWO_WIRE_EN; - else + if (cflags & CRTSCTS) { + if (port->flags & UPF_HARD_FLOW) + val &= ~AML_UART_TWO_WIRE_EN; + else + termios->c_cflag &= ~CRTSCTS; + } else { val |= AML_UART_TWO_WIRE_EN; + } writel(val, port->membase + AML_UART_CONTROL); @@ -726,10 +730,12 @@ static int meson_uart_probe_clocks(struct platform_device *pdev, static int meson_uart_probe(struct platform_device *pdev) { - struct resource *res_mem, *res_irq; + struct resource *res_mem; struct uart_port *port; u32 fifosize = 64; /* Default is 64, 128 for EE UART_0 */ int ret = 0; + int irq; + bool has_rtscts; if (pdev->dev.of_node) pdev->id = of_alias_get_id(pdev->dev.of_node, "serial"); @@ -752,11 +758,12 @@ static int meson_uart_probe(struct platform_device *pdev) if (!res_mem) return -ENODEV; - res_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0); - if (!res_irq) - return -ENODEV; + irq = platform_get_irq(pdev, 0); + if (irq < 0) + return irq; of_property_read_u32(pdev->dev.of_node, "fifo-size", &fifosize); + has_rtscts = of_property_read_bool(pdev->dev.of_node, "uart-has-rtscts"); if (meson_ports[pdev->id]) { dev_err(&pdev->dev, "port %d already allocated\n", pdev->id); @@ -779,8 +786,10 @@ static int meson_uart_probe(struct platform_device *pdev) port->iotype = UPIO_MEM; port->mapbase = res_mem->start; port->mapsize = resource_size(res_mem); - port->irq = res_irq->start; + port->irq = irq; port->flags = UPF_BOOT_AUTOCONF | UPF_LOW_LATENCY; + if (has_rtscts) + port->flags |= UPF_HARD_FLOW; port->has_sysrq = IS_ENABLED(CONFIG_SERIAL_MESON_CONSOLE); port->dev = &pdev->dev; port->line = pdev->id; diff --git a/drivers/tty/serial/sc16is7xx.c b/drivers/tty/serial/sc16is7xx.c index e8f8a94ad606f..adaccbdc10c36 100644 --- a/drivers/tty/serial/sc16is7xx.c +++ b/drivers/tty/serial/sc16is7xx.c @@ -694,6 +694,18 @@ static bool sc16is7xx_port_irq(struct sc16is7xx_port *s, int portno) case SC16IS7XX_IIR_RTOI_SRC: case SC16IS7XX_IIR_XOFFI_SRC: rxlen = sc16is7xx_port_read(port, SC16IS7XX_RXLVL_REG); + + /* + * There is a silicon bug that makes the chip report a + * time-out interrupt but no data in the FIFO. This is + * described in errata section 18.1.4. + * + * When this happens, read one byte from the FIFO to + * clear the interrupt. + */ + if (iir == SC16IS7XX_IIR_RTOI_SRC && !rxlen) + rxlen = 1; + if (rxlen) sc16is7xx_handle_rx(port, rxlen, iir); break; diff --git a/drivers/tty/serial/serial-tegra.c b/drivers/tty/serial/serial-tegra.c index 25f34f86a0852..52d5c72227e79 100644 --- a/drivers/tty/serial/serial-tegra.c +++ b/drivers/tty/serial/serial-tegra.c @@ -999,7 +999,11 @@ static int tegra_uart_hw_init(struct tegra_uart_port *tup) tup->ier_shadow = 0; tup->current_baud = 0; - clk_prepare_enable(tup->uart_clk); + ret = clk_prepare_enable(tup->uart_clk); + if (ret) { + dev_err(tup->uport.dev, "could not enable clk\n"); + return ret; + } /* Reset the UART controller to clear all previous status.*/ reset_control_assert(tup->rst); diff --git a/drivers/tty/serial/sprd_serial.c b/drivers/tty/serial/sprd_serial.c index 9a7ae6384edfa..a1952e4f1fcbb 100644 --- a/drivers/tty/serial/sprd_serial.c +++ b/drivers/tty/serial/sprd_serial.c @@ -367,7 +367,7 @@ static void sprd_rx_free_buf(struct sprd_uart_port *sp) if (sp->rx_dma.virt) dma_free_coherent(sp->port.dev, SPRD_UART_RX_SIZE, sp->rx_dma.virt, sp->rx_dma.phys_addr); - + sp->rx_dma.virt = NULL; } static int sprd_rx_dma_config(struct uart_port *port, u32 burst) @@ -1133,7 +1133,7 @@ static bool sprd_uart_is_console(struct uart_port *uport) static int sprd_clk_init(struct uart_port *uport) { struct clk *clk_uart, *clk_parent; - struct sprd_uart_port *u = sprd_port[uport->line]; + struct sprd_uart_port *u = container_of(uport, struct sprd_uart_port, port); clk_uart = devm_clk_get(uport->dev, "uart"); if (IS_ERR(clk_uart)) { @@ -1176,22 +1176,22 @@ static int sprd_probe(struct platform_device *pdev) { struct resource *res; struct uart_port *up; + struct sprd_uart_port *sport; int irq; int index; int ret; index = of_alias_get_id(pdev->dev.of_node, "serial"); - if (index < 0 || index >= ARRAY_SIZE(sprd_port)) { + if (index < 0 || index >= UART_NR_MAX) { dev_err(&pdev->dev, "got a wrong serial alias id %d\n", index); return -EINVAL; } - sprd_port[index] = devm_kzalloc(&pdev->dev, sizeof(*sprd_port[index]), - GFP_KERNEL); - if (!sprd_port[index]) + sport = devm_kzalloc(&pdev->dev, sizeof(*sport), GFP_KERNEL); + if (!sport) return -ENOMEM; - up = &sprd_port[index]->port; + up = &sport->port; up->dev = &pdev->dev; up->line = index; up->type = PORT_SPRD; @@ -1222,7 +1222,7 @@ static int sprd_probe(struct platform_device *pdev) * Allocate one dma buffer to prepare for receive transfer, in case * memory allocation failure at runtime. */ - ret = sprd_rx_alloc_buf(sprd_port[index]); + ret = sprd_rx_alloc_buf(sport); if (ret) return ret; @@ -1230,17 +1230,27 @@ static int sprd_probe(struct platform_device *pdev) ret = uart_register_driver(&sprd_uart_driver); if (ret < 0) { pr_err("Failed to register SPRD-UART driver\n"); - return ret; + goto free_rx_buf; } } + sprd_ports_num++; + sprd_port[index] = sport; ret = uart_add_one_port(&sprd_uart_driver, up); if (ret) - sprd_remove(pdev); + goto clean_port; platform_set_drvdata(pdev, up); + return 0; + +clean_port: + sprd_port[index] = NULL; + if (--sprd_ports_num == 0) + uart_unregister_driver(&sprd_uart_driver); +free_rx_buf: + sprd_rx_free_buf(sport); return ret; } diff --git a/drivers/tty/sysrq.c b/drivers/tty/sysrq.c index 4ffed77f80018..a3d54a1bd8ac2 100644 --- a/drivers/tty/sysrq.c +++ b/drivers/tty/sysrq.c @@ -263,13 +263,14 @@ static void sysrq_handle_showallcpus(int key) if (in_hardirq()) regs = get_irq_regs(); - pr_info("CPU%d:\n", smp_processor_id()); + pr_info("CPU%d:\n", get_cpu()); if (regs) show_regs(regs); else show_stack(NULL, NULL, KERN_INFO); schedule_work(&sysrq_showallcpus); + put_cpu(); } } diff --git a/drivers/tty/tty_jobctrl.c b/drivers/tty/tty_jobctrl.c index 80b86a7992b50..8ede78488c5b0 100644 --- a/drivers/tty/tty_jobctrl.c +++ b/drivers/tty/tty_jobctrl.c @@ -300,12 +300,7 @@ void disassociate_ctty(int on_exit) return; } - spin_lock_irq(¤t->sighand->siglock); - put_pid(current->signal->tty_old_pgrp); - current->signal->tty_old_pgrp = NULL; - tty = tty_kref_get(current->signal->tty); - spin_unlock_irq(¤t->sighand->siglock); - + tty = get_current_tty(); if (tty) { unsigned long flags; @@ -320,6 +315,16 @@ void disassociate_ctty(int on_exit) tty_kref_put(tty); } + /* If tty->ctrl.pgrp is not NULL, it may be assigned to + * current->signal->tty_old_pgrp in a race condition, and + * cause pid memleak. Release current->signal->tty_old_pgrp + * after tty->ctrl.pgrp set to NULL. + */ + spin_lock_irq(¤t->sighand->siglock); + put_pid(current->signal->tty_old_pgrp); + current->signal->tty_old_pgrp = NULL; + spin_unlock_irq(¤t->sighand->siglock); + /* Now clear signal->tty under the lock */ read_lock(&tasklist_lock); session_clear_tty(task_session(current)); diff --git a/drivers/tty/vcc.c b/drivers/tty/vcc.c index e11383ae1e7e3..71356d9684bac 100644 --- a/drivers/tty/vcc.c +++ b/drivers/tty/vcc.c @@ -578,18 +578,22 @@ static int vcc_probe(struct vio_dev *vdev, const struct vio_device_id *id) return -ENOMEM; name = kstrdup(dev_name(&vdev->dev), GFP_KERNEL); + if (!name) { + rv = -ENOMEM; + goto free_port; + } rv = vio_driver_init(&port->vio, vdev, VDEV_CONSOLE_CON, vcc_versions, ARRAY_SIZE(vcc_versions), NULL, name); if (rv) - goto free_port; + goto free_name; port->vio.debug = vcc_dbg_vio; vcc_ldc_cfg.debug = vcc_dbg_ldc; rv = vio_ldc_alloc(&port->vio, &vcc_ldc_cfg, port); if (rv) - goto free_port; + goto free_name; spin_lock_init(&port->lock); @@ -623,6 +627,11 @@ static int vcc_probe(struct vio_dev *vdev, const struct vio_device_id *id) goto unreg_tty; } port->domain = kstrdup(domain, GFP_KERNEL); + if (!port->domain) { + rv = -ENOMEM; + goto unreg_tty; + } + mdesc_release(hp); @@ -652,8 +661,9 @@ static int vcc_probe(struct vio_dev *vdev, const struct vio_device_id *id) vcc_table_remove(port->index); free_ldc: vio_ldc_free(&port->vio); -free_port: +free_name: kfree(name); +free_port: kfree(port); return rv; diff --git a/drivers/uio/uio_hv_generic.c b/drivers/uio/uio_hv_generic.c index 652fe25475878..c08a6cfd119f2 100644 --- a/drivers/uio/uio_hv_generic.c +++ b/drivers/uio/uio_hv_generic.c @@ -58,11 +58,11 @@ struct hv_uio_private_data { atomic_t refcnt; void *recv_buf; - u32 recv_gpadl; + struct vmbus_gpadl recv_gpadl; char recv_name[32]; /* "recv_4294967295" */ void *send_buf; - u32 send_gpadl; + struct vmbus_gpadl send_gpadl; char send_name[32]; }; @@ -179,15 +179,13 @@ hv_uio_new_channel(struct vmbus_channel *new_sc) static void hv_uio_cleanup(struct hv_device *dev, struct hv_uio_private_data *pdata) { - if (pdata->send_gpadl) { - vmbus_teardown_gpadl(dev->channel, pdata->send_gpadl); - pdata->send_gpadl = 0; + if (pdata->send_gpadl.gpadl_handle) { + vmbus_teardown_gpadl(dev->channel, &pdata->send_gpadl); vfree(pdata->send_buf); } - if (pdata->recv_gpadl) { - vmbus_teardown_gpadl(dev->channel, pdata->recv_gpadl); - pdata->recv_gpadl = 0; + if (pdata->recv_gpadl.gpadl_handle) { + vmbus_teardown_gpadl(dev->channel, &pdata->recv_gpadl); vfree(pdata->recv_buf); } } @@ -303,7 +301,7 @@ hv_uio_probe(struct hv_device *dev, /* put Global Physical Address Label in name */ snprintf(pdata->recv_name, sizeof(pdata->recv_name), - "recv:%u", pdata->recv_gpadl); + "recv:%u", pdata->recv_gpadl.gpadl_handle); pdata->info.mem[RECV_BUF_MAP].name = pdata->recv_name; pdata->info.mem[RECV_BUF_MAP].addr = (uintptr_t)pdata->recv_buf; @@ -324,7 +322,7 @@ hv_uio_probe(struct hv_device *dev, } snprintf(pdata->send_name, sizeof(pdata->send_name), - "send:%u", pdata->send_gpadl); + "send:%u", pdata->send_gpadl.gpadl_handle); pdata->info.mem[SEND_BUF_MAP].name = pdata->send_name; pdata->info.mem[SEND_BUF_MAP].addr = (uintptr_t)pdata->send_buf; diff --git a/drivers/usb/cdns3/cdns3-plat.c b/drivers/usb/cdns3/cdns3-plat.c index 4d0f027e5bd3a..9cb647203dcf2 100644 --- a/drivers/usb/cdns3/cdns3-plat.c +++ b/drivers/usb/cdns3/cdns3-plat.c @@ -256,9 +256,10 @@ static int cdns3_controller_resume(struct device *dev, pm_message_t msg) cdns3_set_platform_suspend(cdns->dev, false, false); spin_lock_irqsave(&cdns->lock, flags); - cdns_resume(cdns, !PMSG_IS_AUTO(msg)); + cdns_resume(cdns); cdns->in_lpm = false; spin_unlock_irqrestore(&cdns->lock, flags); + cdns_set_active(cdns, !PMSG_IS_AUTO(msg)); if (cdns->wakeup_pending) { cdns->wakeup_pending = false; enable_irq(cdns->wakeup_irq); diff --git a/drivers/usb/cdns3/cdnsp-gadget.c b/drivers/usb/cdns3/cdnsp-gadget.c index 068ccbd144b24..d9fb29eb99db1 100644 --- a/drivers/usb/cdns3/cdnsp-gadget.c +++ b/drivers/usb/cdns3/cdnsp-gadget.c @@ -1125,6 +1125,9 @@ static int cdnsp_gadget_ep_dequeue(struct usb_ep *ep, unsigned long flags; int ret; + if (request->status != -EINPROGRESS) + return 0; + if (!pep->endpoint.desc) { dev_err(pdev->dev, "%s: can't dequeue to disabled endpoint\n", diff --git a/drivers/usb/cdns3/cdnsp-pci.c b/drivers/usb/cdns3/cdnsp-pci.c index 29f433c5a6f3f..a85db23fa19f2 100644 --- a/drivers/usb/cdns3/cdnsp-pci.c +++ b/drivers/usb/cdns3/cdnsp-pci.c @@ -210,8 +210,9 @@ static int __maybe_unused cdnsp_pci_resume(struct device *dev) int ret; spin_lock_irqsave(&cdns->lock, flags); - ret = cdns_resume(cdns, 1); + ret = cdns_resume(cdns); spin_unlock_irqrestore(&cdns->lock, flags); + cdns_set_active(cdns, 1); return ret; } diff --git a/drivers/usb/cdns3/cdnsp-ring.c b/drivers/usb/cdns3/cdnsp-ring.c index b23e543b3a3d5..8a2cc0405a4ad 100644 --- a/drivers/usb/cdns3/cdnsp-ring.c +++ b/drivers/usb/cdns3/cdnsp-ring.c @@ -1522,6 +1522,7 @@ irqreturn_t cdnsp_thread_irq_handler(int irq, void *data) unsigned long flags; int counter = 0; + local_bh_disable(); spin_lock_irqsave(&pdev->lock, flags); if (pdev->cdnsp_state & (CDNSP_STATE_HALTED | CDNSP_STATE_DYING)) { @@ -1534,6 +1535,7 @@ irqreturn_t cdnsp_thread_irq_handler(int irq, void *data) cdnsp_died(pdev); spin_unlock_irqrestore(&pdev->lock, flags); + local_bh_enable(); return IRQ_HANDLED; } @@ -1550,6 +1552,7 @@ irqreturn_t cdnsp_thread_irq_handler(int irq, void *data) cdnsp_update_erst_dequeue(pdev, event_ring_deq, 1); spin_unlock_irqrestore(&pdev->lock, flags); + local_bh_enable(); return IRQ_HANDLED; } diff --git a/drivers/usb/cdns3/core.c b/drivers/usb/cdns3/core.c index dbcdf3b24b477..7b20d2d5c262e 100644 --- a/drivers/usb/cdns3/core.c +++ b/drivers/usb/cdns3/core.c @@ -522,9 +522,8 @@ int cdns_suspend(struct cdns *cdns) } EXPORT_SYMBOL_GPL(cdns_suspend); -int cdns_resume(struct cdns *cdns, u8 set_active) +int cdns_resume(struct cdns *cdns) { - struct device *dev = cdns->dev; enum usb_role real_role; bool role_changed = false; int ret = 0; @@ -556,15 +555,23 @@ int cdns_resume(struct cdns *cdns, u8 set_active) if (cdns->roles[cdns->role]->resume) cdns->roles[cdns->role]->resume(cdns, cdns_power_is_lost(cdns)); + return 0; +} +EXPORT_SYMBOL_GPL(cdns_resume); + +void cdns_set_active(struct cdns *cdns, u8 set_active) +{ + struct device *dev = cdns->dev; + if (set_active) { pm_runtime_disable(dev); pm_runtime_set_active(dev); pm_runtime_enable(dev); } - return 0; + return; } -EXPORT_SYMBOL_GPL(cdns_resume); +EXPORT_SYMBOL_GPL(cdns_set_active); #endif /* CONFIG_PM_SLEEP */ MODULE_AUTHOR("Peter Chen "); diff --git a/drivers/usb/cdns3/core.h b/drivers/usb/cdns3/core.h index ab0cb68acd239..1726799367d19 100644 --- a/drivers/usb/cdns3/core.h +++ b/drivers/usb/cdns3/core.h @@ -125,11 +125,13 @@ int cdns_init(struct cdns *cdns); int cdns_remove(struct cdns *cdns); #ifdef CONFIG_PM_SLEEP -int cdns_resume(struct cdns *cdns, u8 set_active); +int cdns_resume(struct cdns *cdns); int cdns_suspend(struct cdns *cdns); +void cdns_set_active(struct cdns *cdns, u8 set_active); #else /* CONFIG_PM_SLEEP */ -static inline int cdns_resume(struct cdns *cdns, u8 set_active) +static inline int cdns_resume(struct cdns *cdns) { return 0; } +static inline void cdns_set_active(struct cdns *cdns, u8 set_active) { } static inline int cdns_suspend(struct cdns *cdns) { return 0; } #endif /* CONFIG_PM_SLEEP */ diff --git a/drivers/usb/chipidea/host.c b/drivers/usb/chipidea/host.c index bdc3885c0d493..786ddb3c32899 100644 --- a/drivers/usb/chipidea/host.c +++ b/drivers/usb/chipidea/host.c @@ -30,8 +30,7 @@ struct ehci_ci_priv { }; struct ci_hdrc_dma_aligned_buffer { - void *kmalloc_ptr; - void *old_xfer_buffer; + void *original_buffer; u8 data[]; }; @@ -372,59 +371,52 @@ static int ci_ehci_bus_suspend(struct usb_hcd *hcd) return 0; } -static void ci_hdrc_free_dma_aligned_buffer(struct urb *urb) +static void ci_hdrc_free_dma_aligned_buffer(struct urb *urb, bool copy_back) { struct ci_hdrc_dma_aligned_buffer *temp; - size_t length; if (!(urb->transfer_flags & URB_ALIGNED_TEMP_BUFFER)) return; + urb->transfer_flags &= ~URB_ALIGNED_TEMP_BUFFER; temp = container_of(urb->transfer_buffer, struct ci_hdrc_dma_aligned_buffer, data); + urb->transfer_buffer = temp->original_buffer; + + if (copy_back && usb_urb_dir_in(urb)) { + size_t length; - if (usb_urb_dir_in(urb)) { if (usb_pipeisoc(urb->pipe)) length = urb->transfer_buffer_length; else length = urb->actual_length; - memcpy(temp->old_xfer_buffer, temp->data, length); + memcpy(temp->original_buffer, temp->data, length); } - urb->transfer_buffer = temp->old_xfer_buffer; - kfree(temp->kmalloc_ptr); - urb->transfer_flags &= ~URB_ALIGNED_TEMP_BUFFER; + kfree(temp); } static int ci_hdrc_alloc_dma_aligned_buffer(struct urb *urb, gfp_t mem_flags) { - struct ci_hdrc_dma_aligned_buffer *temp, *kmalloc_ptr; - const unsigned int ci_hdrc_usb_dma_align = 32; - size_t kmalloc_size; + struct ci_hdrc_dma_aligned_buffer *temp; - if (urb->num_sgs || urb->sg || urb->transfer_buffer_length == 0 || - !((uintptr_t)urb->transfer_buffer & (ci_hdrc_usb_dma_align - 1))) + if (urb->num_sgs || urb->sg || urb->transfer_buffer_length == 0) + return 0; + if (IS_ALIGNED((uintptr_t)urb->transfer_buffer, 4) + && IS_ALIGNED(urb->transfer_buffer_length, 4)) return 0; - /* Allocate a buffer with enough padding for alignment */ - kmalloc_size = urb->transfer_buffer_length + - sizeof(struct ci_hdrc_dma_aligned_buffer) + - ci_hdrc_usb_dma_align - 1; - - kmalloc_ptr = kmalloc(kmalloc_size, mem_flags); - if (!kmalloc_ptr) + temp = kmalloc(sizeof(*temp) + ALIGN(urb->transfer_buffer_length, 4), mem_flags); + if (!temp) return -ENOMEM; - /* Position our struct dma_aligned_buffer such that data is aligned */ - temp = PTR_ALIGN(kmalloc_ptr + 1, ci_hdrc_usb_dma_align) - 1; - temp->kmalloc_ptr = kmalloc_ptr; - temp->old_xfer_buffer = urb->transfer_buffer; if (usb_urb_dir_out(urb)) memcpy(temp->data, urb->transfer_buffer, urb->transfer_buffer_length); - urb->transfer_buffer = temp->data; + temp->original_buffer = urb->transfer_buffer; + urb->transfer_buffer = temp->data; urb->transfer_flags |= URB_ALIGNED_TEMP_BUFFER; return 0; @@ -441,7 +433,7 @@ static int ci_hdrc_map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb, ret = usb_hcd_map_urb_for_dma(hcd, urb, mem_flags); if (ret) - ci_hdrc_free_dma_aligned_buffer(urb); + ci_hdrc_free_dma_aligned_buffer(urb, false); return ret; } @@ -449,7 +441,7 @@ static int ci_hdrc_map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb, static void ci_hdrc_unmap_urb_for_dma(struct usb_hcd *hcd, struct urb *urb) { usb_hcd_unmap_urb_for_dma(hcd, urb); - ci_hdrc_free_dma_aligned_buffer(urb); + ci_hdrc_free_dma_aligned_buffer(urb, true); } int ci_hdrc_host_init(struct ci_hdrc *ci) diff --git a/drivers/usb/core/config.c b/drivers/usb/core/config.c index 00e28456e4cc2..5f190bfe88000 100644 --- a/drivers/usb/core/config.c +++ b/drivers/usb/core/config.c @@ -61,7 +61,7 @@ static void usb_parse_ssp_isoc_endpoint_companion(struct device *ddev, desc = (struct usb_ssp_isoc_ep_comp_descriptor *) buffer; if (desc->bDescriptorType != USB_DT_SSP_ISOC_ENDPOINT_COMP || size < USB_DT_SSP_ISOC_EP_COMP_SIZE) { - dev_warn(ddev, "Invalid SuperSpeedPlus isoc endpoint companion" + dev_notice(ddev, "Invalid SuperSpeedPlus isoc endpoint companion" "for config %d interface %d altsetting %d ep %d.\n", cfgno, inum, asnum, ep->desc.bEndpointAddress); return; @@ -83,7 +83,7 @@ static void usb_parse_ss_endpoint_companion(struct device *ddev, int cfgno, if (desc->bDescriptorType != USB_DT_SS_ENDPOINT_COMP || size < USB_DT_SS_EP_COMP_SIZE) { - dev_warn(ddev, "No SuperSpeed endpoint companion for config %d " + dev_notice(ddev, "No SuperSpeed endpoint companion for config %d " " interface %d altsetting %d ep %d: " "using minimum values\n", cfgno, inum, asnum, ep->desc.bEndpointAddress); @@ -109,13 +109,13 @@ static void usb_parse_ss_endpoint_companion(struct device *ddev, int cfgno, /* Check the various values */ if (usb_endpoint_xfer_control(&ep->desc) && desc->bMaxBurst != 0) { - dev_warn(ddev, "Control endpoint with bMaxBurst = %d in " + dev_notice(ddev, "Control endpoint with bMaxBurst = %d in " "config %d interface %d altsetting %d ep %d: " "setting to zero\n", desc->bMaxBurst, cfgno, inum, asnum, ep->desc.bEndpointAddress); ep->ss_ep_comp.bMaxBurst = 0; } else if (desc->bMaxBurst > 15) { - dev_warn(ddev, "Endpoint with bMaxBurst = %d in " + dev_notice(ddev, "Endpoint with bMaxBurst = %d in " "config %d interface %d altsetting %d ep %d: " "setting to 15\n", desc->bMaxBurst, cfgno, inum, asnum, ep->desc.bEndpointAddress); @@ -125,7 +125,7 @@ static void usb_parse_ss_endpoint_companion(struct device *ddev, int cfgno, if ((usb_endpoint_xfer_control(&ep->desc) || usb_endpoint_xfer_int(&ep->desc)) && desc->bmAttributes != 0) { - dev_warn(ddev, "%s endpoint with bmAttributes = %d in " + dev_notice(ddev, "%s endpoint with bmAttributes = %d in " "config %d interface %d altsetting %d ep %d: " "setting to zero\n", usb_endpoint_xfer_control(&ep->desc) ? "Control" : "Bulk", @@ -134,7 +134,7 @@ static void usb_parse_ss_endpoint_companion(struct device *ddev, int cfgno, ep->ss_ep_comp.bmAttributes = 0; } else if (usb_endpoint_xfer_bulk(&ep->desc) && desc->bmAttributes > 16) { - dev_warn(ddev, "Bulk endpoint with more than 65536 streams in " + dev_notice(ddev, "Bulk endpoint with more than 65536 streams in " "config %d interface %d altsetting %d ep %d: " "setting to max\n", cfgno, inum, asnum, ep->desc.bEndpointAddress); @@ -142,7 +142,7 @@ static void usb_parse_ss_endpoint_companion(struct device *ddev, int cfgno, } else if (usb_endpoint_xfer_isoc(&ep->desc) && !USB_SS_SSP_ISOC_COMP(desc->bmAttributes) && USB_SS_MULT(desc->bmAttributes) > 3) { - dev_warn(ddev, "Isoc endpoint has Mult of %d in " + dev_notice(ddev, "Isoc endpoint has Mult of %d in " "config %d interface %d altsetting %d ep %d: " "setting to 3\n", USB_SS_MULT(desc->bmAttributes), @@ -160,7 +160,7 @@ static void usb_parse_ss_endpoint_companion(struct device *ddev, int cfgno, else max_tx = 999999; if (le16_to_cpu(desc->wBytesPerInterval) > max_tx) { - dev_warn(ddev, "%s endpoint with wBytesPerInterval of %d in " + dev_notice(ddev, "%s endpoint with wBytesPerInterval of %d in " "config %d interface %d altsetting %d ep %d: " "setting to %d\n", usb_endpoint_xfer_isoc(&ep->desc) ? "Isoc" : "Int", @@ -273,7 +273,7 @@ static int usb_parse_endpoint(struct device *ddev, int cfgno, else if (d->bLength >= USB_DT_ENDPOINT_SIZE) n = USB_DT_ENDPOINT_SIZE; else { - dev_warn(ddev, "config %d interface %d altsetting %d has an " + dev_notice(ddev, "config %d interface %d altsetting %d has an " "invalid endpoint descriptor of length %d, skipping\n", cfgno, inum, asnum, d->bLength); goto skip_to_next_endpoint_or_interface_descriptor; @@ -281,7 +281,7 @@ static int usb_parse_endpoint(struct device *ddev, int cfgno, i = d->bEndpointAddress & ~USB_ENDPOINT_DIR_MASK; if (i >= 16 || i == 0) { - dev_warn(ddev, "config %d interface %d altsetting %d has an " + dev_notice(ddev, "config %d interface %d altsetting %d has an " "invalid endpoint with address 0x%X, skipping\n", cfgno, inum, asnum, d->bEndpointAddress); goto skip_to_next_endpoint_or_interface_descriptor; @@ -293,7 +293,7 @@ static int usb_parse_endpoint(struct device *ddev, int cfgno, /* Check for duplicate endpoint addresses */ if (config_endpoint_is_duplicate(config, inum, asnum, d)) { - dev_warn(ddev, "config %d interface %d altsetting %d has a duplicate endpoint with address 0x%X, skipping\n", + dev_notice(ddev, "config %d interface %d altsetting %d has a duplicate endpoint with address 0x%X, skipping\n", cfgno, inum, asnum, d->bEndpointAddress); goto skip_to_next_endpoint_or_interface_descriptor; } @@ -301,7 +301,7 @@ static int usb_parse_endpoint(struct device *ddev, int cfgno, /* Ignore some endpoints */ if (udev->quirks & USB_QUIRK_ENDPOINT_IGNORE) { if (usb_endpoint_is_ignored(udev, ifp, d)) { - dev_warn(ddev, "config %d interface %d altsetting %d has an ignored endpoint with address 0x%X, skipping\n", + dev_notice(ddev, "config %d interface %d altsetting %d has an ignored endpoint with address 0x%X, skipping\n", cfgno, inum, asnum, d->bEndpointAddress); goto skip_to_next_endpoint_or_interface_descriptor; @@ -378,7 +378,7 @@ static int usb_parse_endpoint(struct device *ddev, int cfgno, } } if (d->bInterval < i || d->bInterval > j) { - dev_warn(ddev, "config %d interface %d altsetting %d " + dev_notice(ddev, "config %d interface %d altsetting %d " "endpoint 0x%X has an invalid bInterval %d, " "changing to %d\n", cfgno, inum, asnum, @@ -391,7 +391,7 @@ static int usb_parse_endpoint(struct device *ddev, int cfgno, * them usable, we will try treating them as Interrupt endpoints. */ if (udev->speed == USB_SPEED_LOW && usb_endpoint_xfer_bulk(d)) { - dev_warn(ddev, "config %d interface %d altsetting %d " + dev_notice(ddev, "config %d interface %d altsetting %d " "endpoint 0x%X is Bulk; changing to Interrupt\n", cfgno, inum, asnum, d->bEndpointAddress); endpoint->desc.bmAttributes = USB_ENDPOINT_XFER_INT; @@ -408,7 +408,7 @@ static int usb_parse_endpoint(struct device *ddev, int cfgno, */ maxp = le16_to_cpu(endpoint->desc.wMaxPacketSize); if (maxp == 0 && !(usb_endpoint_xfer_isoc(d) && asnum == 0)) { - dev_warn(ddev, "config %d interface %d altsetting %d endpoint 0x%X has invalid wMaxPacketSize 0\n", + dev_notice(ddev, "config %d interface %d altsetting %d endpoint 0x%X has invalid wMaxPacketSize 0\n", cfgno, inum, asnum, d->bEndpointAddress); } @@ -439,7 +439,7 @@ static int usb_parse_endpoint(struct device *ddev, int cfgno, j = maxpacket_maxes[usb_endpoint_type(&endpoint->desc)]; if (maxp > j) { - dev_warn(ddev, "config %d interface %d altsetting %d endpoint 0x%X has invalid maxpacket %d, setting to %d\n", + dev_notice(ddev, "config %d interface %d altsetting %d endpoint 0x%X has invalid maxpacket %d, setting to %d\n", cfgno, inum, asnum, d->bEndpointAddress, maxp, j); maxp = j; endpoint->desc.wMaxPacketSize = cpu_to_le16(i | maxp); @@ -452,7 +452,7 @@ static int usb_parse_endpoint(struct device *ddev, int cfgno, */ if (udev->speed == USB_SPEED_HIGH && usb_endpoint_xfer_bulk(d)) { if (maxp != 512) - dev_warn(ddev, "config %d interface %d altsetting %d " + dev_notice(ddev, "config %d interface %d altsetting %d " "bulk endpoint 0x%X has invalid maxpacket %d\n", cfgno, inum, asnum, d->bEndpointAddress, maxp); @@ -533,7 +533,7 @@ static int usb_parse_interface(struct device *ddev, int cfgno, i < intfc->num_altsetting; (++i, ++alt)) { if (alt->desc.bAlternateSetting == asnum) { - dev_warn(ddev, "Duplicate descriptor for config %d " + dev_notice(ddev, "Duplicate descriptor for config %d " "interface %d altsetting %d, skipping\n", cfgno, inum, asnum); goto skip_to_next_interface_descriptor; @@ -559,7 +559,7 @@ static int usb_parse_interface(struct device *ddev, int cfgno, num_ep = num_ep_orig = alt->desc.bNumEndpoints; alt->desc.bNumEndpoints = 0; /* Use as a counter */ if (num_ep > USB_MAXENDPOINTS) { - dev_warn(ddev, "too many endpoints for config %d interface %d " + dev_notice(ddev, "too many endpoints for config %d interface %d " "altsetting %d: %d, using maximum allowed: %d\n", cfgno, inum, asnum, num_ep, USB_MAXENDPOINTS); num_ep = USB_MAXENDPOINTS; @@ -590,7 +590,7 @@ static int usb_parse_interface(struct device *ddev, int cfgno, } if (n != num_ep_orig) - dev_warn(ddev, "config %d interface %d altsetting %d has %d " + dev_notice(ddev, "config %d interface %d altsetting %d has %d " "endpoint descriptor%s, different from the interface " "descriptor's value: %d\n", cfgno, inum, asnum, n, plural(n), num_ep_orig); @@ -625,7 +625,7 @@ static int usb_parse_configuration(struct usb_device *dev, int cfgidx, if (config->desc.bDescriptorType != USB_DT_CONFIG || config->desc.bLength < USB_DT_CONFIG_SIZE || config->desc.bLength > size) { - dev_err(ddev, "invalid descriptor for config index %d: " + dev_notice(ddev, "invalid descriptor for config index %d: " "type = 0x%X, length = %d\n", cfgidx, config->desc.bDescriptorType, config->desc.bLength); return -EINVAL; @@ -636,7 +636,7 @@ static int usb_parse_configuration(struct usb_device *dev, int cfgidx, size -= config->desc.bLength; if (nintf > USB_MAXINTERFACES) { - dev_warn(ddev, "config %d has too many interfaces: %d, " + dev_notice(ddev, "config %d has too many interfaces: %d, " "using maximum allowed: %d\n", cfgno, nintf, USB_MAXINTERFACES); nintf = USB_MAXINTERFACES; @@ -650,7 +650,7 @@ static int usb_parse_configuration(struct usb_device *dev, int cfgidx, (buffer2 += header->bLength, size2 -= header->bLength)) { if (size2 < sizeof(struct usb_descriptor_header)) { - dev_warn(ddev, "config %d descriptor has %d excess " + dev_notice(ddev, "config %d descriptor has %d excess " "byte%s, ignoring\n", cfgno, size2, plural(size2)); break; @@ -658,7 +658,7 @@ static int usb_parse_configuration(struct usb_device *dev, int cfgidx, header = (struct usb_descriptor_header *) buffer2; if ((header->bLength > size2) || (header->bLength < 2)) { - dev_warn(ddev, "config %d has an invalid descriptor " + dev_notice(ddev, "config %d has an invalid descriptor " "of length %d, skipping remainder of the config\n", cfgno, header->bLength); break; @@ -670,7 +670,7 @@ static int usb_parse_configuration(struct usb_device *dev, int cfgidx, d = (struct usb_interface_descriptor *) header; if (d->bLength < USB_DT_INTERFACE_SIZE) { - dev_warn(ddev, "config %d has an invalid " + dev_notice(ddev, "config %d has an invalid " "interface descriptor of length %d, " "skipping\n", cfgno, d->bLength); continue; @@ -680,7 +680,7 @@ static int usb_parse_configuration(struct usb_device *dev, int cfgidx, if ((dev->quirks & USB_QUIRK_HONOR_BNUMINTERFACES) && n >= nintf_orig) { - dev_warn(ddev, "config %d has more interface " + dev_notice(ddev, "config %d has more interface " "descriptors, than it declares in " "bNumInterfaces, ignoring interface " "number: %d\n", cfgno, inum); @@ -688,7 +688,7 @@ static int usb_parse_configuration(struct usb_device *dev, int cfgidx, } if (inum >= nintf_orig) - dev_warn(ddev, "config %d has an invalid " + dev_notice(ddev, "config %d has an invalid " "interface number: %d but max is %d\n", cfgno, inum, nintf_orig - 1); @@ -713,14 +713,14 @@ static int usb_parse_configuration(struct usb_device *dev, int cfgidx, d = (struct usb_interface_assoc_descriptor *)header; if (d->bLength < USB_DT_INTERFACE_ASSOCIATION_SIZE) { - dev_warn(ddev, + dev_notice(ddev, "config %d has an invalid interface association descriptor of length %d, skipping\n", cfgno, d->bLength); continue; } if (iad_num == USB_MAXIADS) { - dev_warn(ddev, "found more Interface " + dev_notice(ddev, "found more Interface " "Association Descriptors " "than allocated for in " "configuration %d\n", cfgno); @@ -731,7 +731,7 @@ static int usb_parse_configuration(struct usb_device *dev, int cfgidx, } else if (header->bDescriptorType == USB_DT_DEVICE || header->bDescriptorType == USB_DT_CONFIG) - dev_warn(ddev, "config %d contains an unexpected " + dev_notice(ddev, "config %d contains an unexpected " "descriptor of type 0x%X, skipping\n", cfgno, header->bDescriptorType); @@ -740,11 +740,11 @@ static int usb_parse_configuration(struct usb_device *dev, int cfgidx, config->desc.wTotalLength = cpu_to_le16(buffer2 - buffer0); if (n != nintf) - dev_warn(ddev, "config %d has %d interface%s, different from " + dev_notice(ddev, "config %d has %d interface%s, different from " "the descriptor's value: %d\n", cfgno, n, plural(n), nintf_orig); else if (n == 0) - dev_warn(ddev, "config %d has no interfaces?\n", cfgno); + dev_notice(ddev, "config %d has no interfaces?\n", cfgno); config->desc.bNumInterfaces = nintf = n; /* Check for missing interface numbers */ @@ -754,7 +754,7 @@ static int usb_parse_configuration(struct usb_device *dev, int cfgidx, break; } if (j >= nintf) - dev_warn(ddev, "config %d has no interface number " + dev_notice(ddev, "config %d has no interface number " "%d\n", cfgno, i); } @@ -762,7 +762,7 @@ static int usb_parse_configuration(struct usb_device *dev, int cfgidx, for (i = 0; i < nintf; ++i) { j = nalts[i]; if (j > USB_MAXALTSETTING) { - dev_warn(ddev, "too many alternate settings for " + dev_notice(ddev, "too many alternate settings for " "config %d interface %d: %d, " "using maximum allowed: %d\n", cfgno, inums[i], j, USB_MAXALTSETTING); @@ -811,7 +811,7 @@ static int usb_parse_configuration(struct usb_device *dev, int cfgidx, break; } if (n >= intfc->num_altsetting) - dev_warn(ddev, "config %d interface %d has no " + dev_notice(ddev, "config %d interface %d has no " "altsetting %d\n", cfgno, inums[i], j); } } @@ -868,7 +868,7 @@ int usb_get_configuration(struct usb_device *dev) int result; if (ncfg > USB_MAXCONFIG) { - dev_warn(ddev, "too many configurations: %d, " + dev_notice(ddev, "too many configurations: %d, " "using maximum allowed: %d\n", ncfg, USB_MAXCONFIG); dev->descriptor.bNumConfigurations = ncfg = USB_MAXCONFIG; } @@ -902,7 +902,7 @@ int usb_get_configuration(struct usb_device *dev) "descriptor/%s: %d\n", cfgno, "start", result); if (result != -EPIPE) goto err; - dev_err(ddev, "chopping to %d config(s)\n", cfgno); + dev_notice(ddev, "chopping to %d config(s)\n", cfgno); dev->descriptor.bNumConfigurations = cfgno; break; } else if (result < 4) { @@ -934,7 +934,7 @@ int usb_get_configuration(struct usb_device *dev) goto err; } if (result < length) { - dev_warn(ddev, "config index %d descriptor too short " + dev_notice(ddev, "config index %d descriptor too short " "(expected %i, got %i)\n", cfgno, length, result); length = result; } @@ -993,7 +993,7 @@ int usb_get_bos_descriptor(struct usb_device *dev) /* Get BOS descriptor */ ret = usb_get_descriptor(dev, USB_DT_BOS, 0, bos, USB_DT_BOS_SIZE); if (ret < USB_DT_BOS_SIZE || bos->bLength < USB_DT_BOS_SIZE) { - dev_err(ddev, "unable to get BOS descriptor or descriptor too short\n"); + dev_notice(ddev, "unable to get BOS descriptor or descriptor too short\n"); if (ret >= 0) ret = -ENOMSG; kfree(bos); @@ -1021,7 +1021,7 @@ int usb_get_bos_descriptor(struct usb_device *dev) ret = usb_get_descriptor(dev, USB_DT_BOS, 0, buffer, total_len); if (ret < total_len) { - dev_err(ddev, "unable to get BOS descriptor set\n"); + dev_notice(ddev, "unable to get BOS descriptor set\n"); if (ret >= 0) ret = -ENOMSG; goto err; @@ -1046,8 +1046,8 @@ int usb_get_bos_descriptor(struct usb_device *dev) } if (cap->bDescriptorType != USB_DT_DEVICE_CAPABILITY) { - dev_warn(ddev, "descriptor type invalid, skip\n"); - continue; + dev_notice(ddev, "descriptor type invalid, skip\n"); + goto skip_to_next_descriptor; } switch (cap_type) { @@ -1081,6 +1081,7 @@ int usb_get_bos_descriptor(struct usb_device *dev) break; } +skip_to_next_descriptor: total_len -= length; buffer += length; } diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c index 307e79daa7d29..da6ffa0a47a64 100644 --- a/drivers/usb/core/hub.c +++ b/drivers/usb/core/hub.c @@ -150,6 +150,10 @@ int usb_device_supports_lpm(struct usb_device *udev) if (udev->quirks & USB_QUIRK_NO_LPM) return 0; + /* Skip if the device BOS descriptor couldn't be read */ + if (!udev->bos) + return 0; + /* USB 2.1 (and greater) devices indicate LPM support through * their USB 2.0 Extended Capabilities BOS descriptor. */ @@ -326,6 +330,10 @@ static void usb_set_lpm_parameters(struct usb_device *udev) if (!udev->lpm_capable || udev->speed < USB_SPEED_SUPER) return; + /* Skip if the device BOS descriptor couldn't be read */ + if (!udev->bos) + return; + hub = usb_hub_to_struct_hub(udev->parent); /* It doesn't take time to transition the roothub into U0, since it * doesn't have an upstream link. @@ -2698,13 +2706,17 @@ int usb_authorize_device(struct usb_device *usb_dev) static enum usb_ssp_rate get_port_ssp_rate(struct usb_device *hdev, u32 ext_portstatus) { - struct usb_ssp_cap_descriptor *ssp_cap = hdev->bos->ssp_cap; + struct usb_ssp_cap_descriptor *ssp_cap; u32 attr; u8 speed_id; u8 ssac; u8 lanes; int i; + if (!hdev->bos) + goto out; + + ssp_cap = hdev->bos->ssp_cap; if (!ssp_cap) goto out; @@ -4223,8 +4235,15 @@ static void usb_enable_link_state(struct usb_hcd *hcd, struct usb_device *udev, enum usb3_link_state state) { int timeout, ret; - __u8 u1_mel = udev->bos->ss_cap->bU1devExitLat; - __le16 u2_mel = udev->bos->ss_cap->bU2DevExitLat; + __u8 u1_mel; + __le16 u2_mel; + + /* Skip if the device BOS descriptor couldn't be read */ + if (!udev->bos) + return; + + u1_mel = udev->bos->ss_cap->bU1devExitLat; + u2_mel = udev->bos->ss_cap->bU2DevExitLat; /* If the device says it doesn't have *any* exit latency to come out of * U1 or U2, it's probably lying. Assume it doesn't implement that link diff --git a/drivers/usb/core/hub.h b/drivers/usb/core/hub.h index 2d09298adcaff..c4528ebc0dd9b 100644 --- a/drivers/usb/core/hub.h +++ b/drivers/usb/core/hub.h @@ -140,7 +140,7 @@ static inline int hub_is_superspeedplus(struct usb_device *hdev) { return (hdev->descriptor.bDeviceProtocol == USB_HUB_PR_SS && le16_to_cpu(hdev->descriptor.bcdUSB) >= 0x0310 && - hdev->bos->ssp_cap); + hdev->bos && hdev->bos->ssp_cap); } static inline unsigned hub_power_on_good_delay(struct usb_hub *hub) diff --git a/drivers/usb/dwc2/hcd.c b/drivers/usb/dwc2/hcd.c index 82322696b903b..d17a1dd6d0d93 100644 --- a/drivers/usb/dwc2/hcd.c +++ b/drivers/usb/dwc2/hcd.c @@ -4802,8 +4802,8 @@ static int _dwc2_hcd_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, if (qh_allocated && qh->channel && qh->channel->qh == qh) qh->channel->qh = NULL; fail2: - spin_unlock_irqrestore(&hsotg->lock, flags); urb->hcpriv = NULL; + spin_unlock_irqrestore(&hsotg->lock, flags); kfree(qtd); fail1: if (qh_allocated) { diff --git a/drivers/usb/dwc2/hcd_intr.c b/drivers/usb/dwc2/hcd_intr.c index d5f4ec1b73b15..08e2792cb7323 100644 --- a/drivers/usb/dwc2/hcd_intr.c +++ b/drivers/usb/dwc2/hcd_intr.c @@ -2045,15 +2045,17 @@ static void dwc2_hc_n_intr(struct dwc2_hsotg *hsotg, int chnum) { struct dwc2_qtd *qtd; struct dwc2_host_chan *chan; - u32 hcint, hcintmsk; + u32 hcint, hcintraw, hcintmsk; chan = hsotg->hc_ptr_array[chnum]; - hcint = dwc2_readl(hsotg, HCINT(chnum)); + hcintraw = dwc2_readl(hsotg, HCINT(chnum)); hcintmsk = dwc2_readl(hsotg, HCINTMSK(chnum)); + hcint = hcintraw & hcintmsk; + dwc2_writel(hsotg, hcint, HCINT(chnum)); + if (!chan) { dev_err(hsotg->dev, "## hc_ptr_array for channel is NULL ##\n"); - dwc2_writel(hsotg, hcint, HCINT(chnum)); return; } @@ -2062,11 +2064,9 @@ static void dwc2_hc_n_intr(struct dwc2_hsotg *hsotg, int chnum) chnum); dev_vdbg(hsotg->dev, " hcint 0x%08x, hcintmsk 0x%08x, hcint&hcintmsk 0x%08x\n", - hcint, hcintmsk, hcint & hcintmsk); + hcintraw, hcintmsk, hcint); } - dwc2_writel(hsotg, hcint, HCINT(chnum)); - /* * If we got an interrupt after someone called * dwc2_hcd_endpoint_disable() we don't want to crash below @@ -2076,8 +2076,7 @@ static void dwc2_hc_n_intr(struct dwc2_hsotg *hsotg, int chnum) return; } - chan->hcint = hcint; - hcint &= hcintmsk; + chan->hcint = hcintraw; /* * If the channel was halted due to a dequeue, the qtd list might diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c index 6377b9cf81a59..9e42023e2962a 100644 --- a/drivers/usb/dwc3/core.c +++ b/drivers/usb/dwc3/core.c @@ -277,9 +277,46 @@ int dwc3_core_soft_reset(struct dwc3 *dwc) * XHCI driver will reset the host block. If dwc3 was configured for * host-only mode or current role is host, then we can return early. */ - if (dwc->dr_mode == USB_DR_MODE_HOST || dwc->current_dr_role == DWC3_GCTL_PRTCAP_HOST) + if (dwc->current_dr_role == DWC3_GCTL_PRTCAP_HOST) return 0; + /* + * If the dr_mode is host and the dwc->current_dr_role is not the + * corresponding DWC3_GCTL_PRTCAP_HOST, then the dwc3_core_init_mode + * isn't executed yet. Ensure the phy is ready before the controller + * updates the GCTL.PRTCAPDIR or other settings by soft-resetting + * the phy. + * + * Note: GUSB3PIPECTL[n] and GUSB2PHYCFG[n] are port settings where n + * is port index. If this is a multiport host, then we need to reset + * all active ports. + */ + if (dwc->dr_mode == USB_DR_MODE_HOST) { + u32 usb3_port; + u32 usb2_port; + + usb3_port = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0)); + usb3_port |= DWC3_GUSB3PIPECTL_PHYSOFTRST; + dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), usb3_port); + + usb2_port = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0)); + usb2_port |= DWC3_GUSB2PHYCFG_PHYSOFTRST; + dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), usb2_port); + + /* Small delay for phy reset assertion */ + usleep_range(1000, 2000); + + usb3_port &= ~DWC3_GUSB3PIPECTL_PHYSOFTRST; + dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), usb3_port); + + usb2_port &= ~DWC3_GUSB2PHYCFG_PHYSOFTRST; + dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), usb2_port); + + /* Wait for clock synchronization */ + msleep(50); + return 0; + } + reg = dwc3_readl(dwc->regs, DWC3_DCTL); reg |= DWC3_DCTL_CSFTRST; reg &= ~DWC3_DCTL_RUN_STOP; @@ -1664,6 +1701,8 @@ static int dwc3_probe(struct platform_device *pdev) pm_runtime_put(dev); + dma_set_max_seg_size(dev, UINT_MAX); + return 0; err5: diff --git a/drivers/usb/dwc3/drd.c b/drivers/usb/dwc3/drd.c index 81ff21bd405a8..ba37bc72a2205 100644 --- a/drivers/usb/dwc3/drd.c +++ b/drivers/usb/dwc3/drd.c @@ -545,6 +545,7 @@ static int dwc3_setup_role_switch(struct dwc3 *dwc) dwc->role_switch_default_mode = USB_DR_MODE_PERIPHERAL; mode = DWC3_GCTL_PRTCAP_DEVICE; } + dwc3_set_mode(dwc, mode); dwc3_role_switch.fwnode = dev_fwnode(dwc->dev); dwc3_role_switch.set = dwc3_usb_role_switch_set; @@ -554,7 +555,6 @@ static int dwc3_setup_role_switch(struct dwc3 *dwc) if (IS_ERR(dwc->role_sw)) return PTR_ERR(dwc->role_sw); - dwc3_set_mode(dwc, mode); return 0; } #else diff --git a/drivers/usb/dwc3/dwc3-qcom.c b/drivers/usb/dwc3/dwc3-qcom.c index 0180350a2c95c..8d994aa1e83db 100644 --- a/drivers/usb/dwc3/dwc3-qcom.c +++ b/drivers/usb/dwc3/dwc3-qcom.c @@ -492,7 +492,7 @@ static int dwc3_qcom_setup_irq(struct platform_device *pdev) irq_set_status_flags(irq, IRQ_NOAUTOEN); ret = devm_request_threaded_irq(qcom->dev, irq, NULL, qcom_dwc3_resume_irq, - IRQF_TRIGGER_HIGH | IRQF_ONESHOT, + IRQF_ONESHOT, "qcom_dwc3 HS", qcom); if (ret) { dev_err(qcom->dev, "hs_phy_irq failed: %d\n", ret); @@ -507,7 +507,7 @@ static int dwc3_qcom_setup_irq(struct platform_device *pdev) irq_set_status_flags(irq, IRQ_NOAUTOEN); ret = devm_request_threaded_irq(qcom->dev, irq, NULL, qcom_dwc3_resume_irq, - IRQF_TRIGGER_HIGH | IRQF_ONESHOT, + IRQF_ONESHOT, "qcom_dwc3 DP_HS", qcom); if (ret) { dev_err(qcom->dev, "dp_hs_phy_irq failed: %d\n", ret); @@ -522,7 +522,7 @@ static int dwc3_qcom_setup_irq(struct platform_device *pdev) irq_set_status_flags(irq, IRQ_NOAUTOEN); ret = devm_request_threaded_irq(qcom->dev, irq, NULL, qcom_dwc3_resume_irq, - IRQF_TRIGGER_HIGH | IRQF_ONESHOT, + IRQF_ONESHOT, "qcom_dwc3 DM_HS", qcom); if (ret) { dev_err(qcom->dev, "dm_hs_phy_irq failed: %d\n", ret); @@ -537,7 +537,7 @@ static int dwc3_qcom_setup_irq(struct platform_device *pdev) irq_set_status_flags(irq, IRQ_NOAUTOEN); ret = devm_request_threaded_irq(qcom->dev, irq, NULL, qcom_dwc3_resume_irq, - IRQF_TRIGGER_HIGH | IRQF_ONESHOT, + IRQF_ONESHOT, "qcom_dwc3 SS", qcom); if (ret) { dev_err(qcom->dev, "ss_phy_irq failed: %d\n", ret); @@ -626,8 +626,10 @@ static int dwc3_qcom_acpi_register_core(struct platform_device *pdev) qcom->dwc3->dev.coherent_dma_mask = dev->coherent_dma_mask; child_res = kcalloc(2, sizeof(*child_res), GFP_KERNEL); - if (!child_res) + if (!child_res) { + platform_device_put(qcom->dwc3); return -ENOMEM; + } res = platform_get_resource(pdev, IORESOURCE_MEM, 0); if (!res) { @@ -665,9 +667,13 @@ static int dwc3_qcom_acpi_register_core(struct platform_device *pdev) if (ret) { dev_err(&pdev->dev, "failed to add device\n"); device_remove_software_node(&qcom->dwc3->dev); + goto out; } + kfree(child_res); + return 0; out: + platform_device_put(qcom->dwc3); kfree(child_res); return ret; } @@ -695,6 +701,7 @@ static int dwc3_qcom_of_register_core(struct platform_device *pdev) if (!qcom->dwc3) { ret = -ENODEV; dev_err(dev, "failed to get dwc3 platform device\n"); + of_platform_depopulate(dev); } node_put: @@ -703,9 +710,9 @@ static int dwc3_qcom_of_register_core(struct platform_device *pdev) return ret; } -static struct platform_device * -dwc3_qcom_create_urs_usb_platdev(struct device *dev) +static struct platform_device *dwc3_qcom_create_urs_usb_platdev(struct device *dev) { + struct platform_device *urs_usb = NULL; struct fwnode_handle *fwh; struct acpi_device *adev; char name[8]; @@ -725,9 +732,26 @@ dwc3_qcom_create_urs_usb_platdev(struct device *dev) adev = to_acpi_device_node(fwh); if (!adev) - return NULL; + goto err_put_handle; + + urs_usb = acpi_create_platform_device(adev, NULL); + if (IS_ERR_OR_NULL(urs_usb)) + goto err_put_handle; + + return urs_usb; - return acpi_create_platform_device(adev, NULL); +err_put_handle: + fwnode_handle_put(fwh); + + return urs_usb; +} + +static void dwc3_qcom_destroy_urs_usb_platdev(struct platform_device *urs_usb) +{ + struct fwnode_handle *fwh = urs_usb->dev.fwnode; + + platform_device_unregister(urs_usb); + fwnode_handle_put(fwh); } static int dwc3_qcom_probe(struct platform_device *pdev) @@ -811,13 +835,13 @@ static int dwc3_qcom_probe(struct platform_device *pdev) qcom->qscratch_base = devm_ioremap_resource(dev, parent_res); if (IS_ERR(qcom->qscratch_base)) { ret = PTR_ERR(qcom->qscratch_base); - goto clk_disable; + goto free_urs; } ret = dwc3_qcom_setup_irq(pdev); if (ret) { dev_err(dev, "failed to setup IRQs, err=%d\n", ret); - goto clk_disable; + goto free_urs; } /* @@ -836,7 +860,7 @@ static int dwc3_qcom_probe(struct platform_device *pdev) if (ret) { dev_err(dev, "failed to register DWC3 Core, err=%d\n", ret); - goto depopulate; + goto free_urs; } ret = dwc3_qcom_interconnect_init(qcom); @@ -865,10 +889,16 @@ static int dwc3_qcom_probe(struct platform_device *pdev) interconnect_exit: dwc3_qcom_interconnect_exit(qcom); depopulate: - if (np) + if (np) { of_platform_depopulate(&pdev->dev); - else - platform_device_put(pdev); + } else { + device_remove_software_node(&qcom->dwc3->dev); + platform_device_del(qcom->dwc3); + } + platform_device_put(qcom->dwc3); +free_urs: + if (qcom->urs_usb) + dwc3_qcom_destroy_urs_usb_platdev(qcom->urs_usb); clk_disable: for (i = qcom->num_clocks - 1; i >= 0; i--) { clk_disable_unprepare(qcom->clks[i]); @@ -887,11 +917,16 @@ static int dwc3_qcom_remove(struct platform_device *pdev) struct device *dev = &pdev->dev; int i; - device_remove_software_node(&qcom->dwc3->dev); - if (np) + if (np) { of_platform_depopulate(&pdev->dev); - else - platform_device_put(pdev); + } else { + device_remove_software_node(&qcom->dwc3->dev); + platform_device_del(qcom->dwc3); + } + platform_device_put(qcom->dwc3); + + if (qcom->urs_usb) + dwc3_qcom_destroy_urs_usb_platdev(qcom->urs_usb); for (i = qcom->num_clocks - 1; i >= 0; i--) { clk_disable_unprepare(qcom->clks[i]); diff --git a/drivers/usb/gadget/function/f_hid.c b/drivers/usb/gadget/function/f_hid.c index 6be6009f911e1..f1ca9250cad96 100644 --- a/drivers/usb/gadget/function/f_hid.c +++ b/drivers/usb/gadget/function/f_hid.c @@ -88,6 +88,7 @@ static void hidg_release(struct device *dev) { struct f_hidg *hidg = container_of(dev, struct f_hidg, dev); + kfree(hidg->report_desc); kfree(hidg->set_report_buf); kfree(hidg); } @@ -1287,9 +1288,9 @@ static struct usb_function *hidg_alloc(struct usb_function_instance *fi) hidg->report_length = opts->report_length; hidg->report_desc_length = opts->report_desc_length; if (opts->report_desc) { - hidg->report_desc = devm_kmemdup(&hidg->dev, opts->report_desc, - opts->report_desc_length, - GFP_KERNEL); + hidg->report_desc = kmemdup(opts->report_desc, + opts->report_desc_length, + GFP_KERNEL); if (!hidg->report_desc) { put_device(&hidg->dev); --opts->refcnt; diff --git a/drivers/usb/gadget/function/f_mass_storage.c b/drivers/usb/gadget/function/f_mass_storage.c index 3cabf7692ee1c..d434b8639b68c 100644 --- a/drivers/usb/gadget/function/f_mass_storage.c +++ b/drivers/usb/gadget/function/f_mass_storage.c @@ -925,7 +925,7 @@ static void invalidate_sub(struct fsg_lun *curlun) { struct file *filp = curlun->filp; struct inode *inode = file_inode(filp); - unsigned long rc; + unsigned long __maybe_unused rc; rc = invalidate_mapping_pages(inode->i_mapping, 0, -1); VLDBG(curlun, "invalidate_mapping_pages -> %ld\n", rc); diff --git a/drivers/usb/gadget/function/f_ncm.c b/drivers/usb/gadget/function/f_ncm.c index e0c1832342838..bd095ae569edd 100644 --- a/drivers/usb/gadget/function/f_ncm.c +++ b/drivers/usb/gadget/function/f_ncm.c @@ -1175,7 +1175,8 @@ static int ncm_unwrap_ntb(struct gether *port, struct sk_buff_head *list) { struct f_ncm *ncm = func_to_ncm(&port->func); - __le16 *tmp = (void *) skb->data; + unsigned char *ntb_ptr = skb->data; + __le16 *tmp; unsigned index, index2; int ndp_index; unsigned dg_len, dg_len2; @@ -1188,6 +1189,10 @@ static int ncm_unwrap_ntb(struct gether *port, const struct ndp_parser_opts *opts = ncm->parser_opts; unsigned crc_len = ncm->is_crc ? sizeof(uint32_t) : 0; int dgram_counter; + int to_process = skb->len; + +parse_ntb: + tmp = (__le16 *)ntb_ptr; /* dwSignature */ if (get_unaligned_le32(tmp) != opts->nth_sign) { @@ -1234,7 +1239,7 @@ static int ncm_unwrap_ntb(struct gether *port, * walk through NDP * dwSignature */ - tmp = (void *)(skb->data + ndp_index); + tmp = (__le16 *)(ntb_ptr + ndp_index); if (get_unaligned_le32(tmp) != ncm->ndp_sign) { INFO(port->func.config->cdev, "Wrong NDP SIGN\n"); goto err; @@ -1291,11 +1296,11 @@ static int ncm_unwrap_ntb(struct gether *port, if (ncm->is_crc) { uint32_t crc, crc2; - crc = get_unaligned_le32(skb->data + + crc = get_unaligned_le32(ntb_ptr + index + dg_len - crc_len); crc2 = ~crc32_le(~0, - skb->data + index, + ntb_ptr + index, dg_len - crc_len); if (crc != crc2) { INFO(port->func.config->cdev, @@ -1322,7 +1327,7 @@ static int ncm_unwrap_ntb(struct gether *port, dg_len - crc_len); if (skb2 == NULL) goto err; - skb_put_data(skb2, skb->data + index, + skb_put_data(skb2, ntb_ptr + index, dg_len - crc_len); skb_queue_tail(list, skb2); @@ -1335,10 +1340,17 @@ static int ncm_unwrap_ntb(struct gether *port, } while (ndp_len > 2 * (opts->dgram_item_len * 2)); } while (ndp_index); - dev_consume_skb_any(skb); - VDBG(port->func.config->cdev, "Parsed NTB with %d frames\n", dgram_counter); + + to_process -= block_len; + if (to_process != 0) { + ntb_ptr = (unsigned char *)(ntb_ptr + block_len); + goto parse_ntb; + } + + dev_consume_skb_any(skb); + return 0; err: skb_queue_purge(list); @@ -1417,7 +1429,7 @@ static int ncm_bind(struct usb_configuration *c, struct usb_function *f) struct usb_composite_dev *cdev = c->cdev; struct f_ncm *ncm = func_to_ncm(f); struct usb_string *us; - int status; + int status = 0; struct usb_ep *ep; struct f_ncm_opts *ncm_opts; @@ -1435,22 +1447,17 @@ static int ncm_bind(struct usb_configuration *c, struct usb_function *f) f->os_desc_table[0].os_desc = &ncm_opts->ncm_os_desc; } - /* - * in drivers/usb/gadget/configfs.c:configfs_composite_bind() - * configurations are bound in sequence with list_for_each_entry, - * in each configuration its functions are bound in sequence - * with list_for_each_entry, so we assume no race condition - * with regard to ncm_opts->bound access - */ - if (!ncm_opts->bound) { - mutex_lock(&ncm_opts->lock); - gether_set_gadget(ncm_opts->net, cdev->gadget); + mutex_lock(&ncm_opts->lock); + gether_set_gadget(ncm_opts->net, cdev->gadget); + if (!ncm_opts->bound) status = gether_register_netdev(ncm_opts->net); - mutex_unlock(&ncm_opts->lock); - if (status) - goto fail; - ncm_opts->bound = true; - } + mutex_unlock(&ncm_opts->lock); + + if (status) + goto fail; + + ncm_opts->bound = true; + us = usb_gstrings_attach(cdev, ncm_strings, ARRAY_SIZE(ncm_string_defs)); if (IS_ERR(us)) { diff --git a/drivers/usb/gadget/legacy/raw_gadget.c b/drivers/usb/gadget/legacy/raw_gadget.c index 9d13f22743986..e65aec99f894f 100644 --- a/drivers/usb/gadget/legacy/raw_gadget.c +++ b/drivers/usb/gadget/legacy/raw_gadget.c @@ -663,12 +663,12 @@ static int raw_process_ep0_io(struct raw_dev *dev, struct usb_raw_ep_io *io, if (WARN_ON(in && dev->ep0_out_pending)) { ret = -ENODEV; dev->state = STATE_DEV_FAILED; - goto out_done; + goto out_unlock; } if (WARN_ON(!in && dev->ep0_in_pending)) { ret = -ENODEV; dev->state = STATE_DEV_FAILED; - goto out_done; + goto out_unlock; } dev->req->buf = data; @@ -683,7 +683,7 @@ static int raw_process_ep0_io(struct raw_dev *dev, struct usb_raw_ep_io *io, "fail, usb_ep_queue returned %d\n", ret); spin_lock_irqsave(&dev->lock, flags); dev->state = STATE_DEV_FAILED; - goto out_done; + goto out_queue_failed; } ret = wait_for_completion_interruptible(&dev->ep0_done); @@ -692,13 +692,16 @@ static int raw_process_ep0_io(struct raw_dev *dev, struct usb_raw_ep_io *io, usb_ep_dequeue(dev->gadget->ep0, dev->req); wait_for_completion(&dev->ep0_done); spin_lock_irqsave(&dev->lock, flags); - goto out_done; + if (dev->ep0_status == -ECONNRESET) + dev->ep0_status = -EINTR; + goto out_interrupted; } spin_lock_irqsave(&dev->lock, flags); - ret = dev->ep0_status; -out_done: +out_interrupted: + ret = dev->ep0_status; +out_queue_failed: dev->ep0_urb_queued = false; out_unlock: spin_unlock_irqrestore(&dev->lock, flags); @@ -1060,7 +1063,7 @@ static int raw_process_ep_io(struct raw_dev *dev, struct usb_raw_ep_io *io, "fail, usb_ep_queue returned %d\n", ret); spin_lock_irqsave(&dev->lock, flags); dev->state = STATE_DEV_FAILED; - goto out_done; + goto out_queue_failed; } ret = wait_for_completion_interruptible(&done); @@ -1069,13 +1072,16 @@ static int raw_process_ep_io(struct raw_dev *dev, struct usb_raw_ep_io *io, usb_ep_dequeue(ep->ep, ep->req); wait_for_completion(&done); spin_lock_irqsave(&dev->lock, flags); - goto out_done; + if (ep->status == -ECONNRESET) + ep->status = -EINTR; + goto out_interrupted; } spin_lock_irqsave(&dev->lock, flags); - ret = ep->status; -out_done: +out_interrupted: + ret = ep->status; +out_queue_failed: ep->urb_queued = false; out_unlock: spin_unlock_irqrestore(&dev->lock, flags); diff --git a/drivers/usb/gadget/udc/fsl_qe_udc.c b/drivers/usb/gadget/udc/fsl_qe_udc.c index 15db7a3868fe4..8bf767a80dd42 100644 --- a/drivers/usb/gadget/udc/fsl_qe_udc.c +++ b/drivers/usb/gadget/udc/fsl_qe_udc.c @@ -1956,9 +1956,13 @@ static void ch9getstatus(struct qe_udc *udc, u8 request_type, u16 value, } else if ((request_type & USB_RECIP_MASK) == USB_RECIP_ENDPOINT) { /* Get endpoint status */ int pipe = index & USB_ENDPOINT_NUMBER_MASK; - struct qe_ep *target_ep = &udc->eps[pipe]; + struct qe_ep *target_ep; u16 usep; + if (pipe >= USB_MAX_ENDPOINTS) + goto stall; + target_ep = &udc->eps[pipe]; + /* stall if endpoint doesn't exist */ if (!target_ep->ep.desc) goto stall; diff --git a/drivers/usb/gadget/udc/udc-xilinx.c b/drivers/usb/gadget/udc/udc-xilinx.c index 9cf43731bcd18..c941bfdaa0170 100644 --- a/drivers/usb/gadget/udc/udc-xilinx.c +++ b/drivers/usb/gadget/udc/udc-xilinx.c @@ -496,11 +496,13 @@ static int xudc_eptxrx(struct xusb_ep *ep, struct xusb_req *req, /* Get the Buffer address and copy the transmit data.*/ eprambase = (u32 __force *)(udc->addr + ep->rambase); if (ep->is_in) { - memcpy(eprambase, bufferptr, bytestosend); + memcpy_toio((void __iomem *)eprambase, bufferptr, + bytestosend); udc->write_fn(udc->addr, ep->offset + XUSB_EP_BUF0COUNT_OFFSET, bufferlen); } else { - memcpy(bufferptr, eprambase, bytestosend); + memcpy_toio((void __iomem *)bufferptr, eprambase, + bytestosend); } /* * Enable the buffer for transmission. @@ -514,11 +516,13 @@ static int xudc_eptxrx(struct xusb_ep *ep, struct xusb_req *req, eprambase = (u32 __force *)(udc->addr + ep->rambase + ep->ep_usb.maxpacket); if (ep->is_in) { - memcpy(eprambase, bufferptr, bytestosend); + memcpy_toio((void __iomem *)eprambase, bufferptr, + bytestosend); udc->write_fn(udc->addr, ep->offset + XUSB_EP_BUF1COUNT_OFFSET, bufferlen); } else { - memcpy(bufferptr, eprambase, bytestosend); + memcpy_toio((void __iomem *)bufferptr, eprambase, + bytestosend); } /* * Enable the buffer for transmission. @@ -1020,7 +1024,7 @@ static int __xudc_ep0_queue(struct xusb_ep *ep0, struct xusb_req *req) udc->addr); length = req->usb_req.actual = min_t(u32, length, EP0_MAX_PACKET); - memcpy(corebuf, req->usb_req.buf, length); + memcpy_toio((void __iomem *)corebuf, req->usb_req.buf, length); udc->write_fn(udc->addr, XUSB_EP_BUF0COUNT_OFFSET, length); udc->write_fn(udc->addr, XUSB_BUFFREADY_OFFSET, 1); } else { @@ -1746,7 +1750,7 @@ static void xudc_handle_setup(struct xusb_udc *udc) /* Load up the chapter 9 command buffer.*/ ep0rambase = (u32 __force *) (udc->addr + XUSB_SETUP_PKT_ADDR_OFFSET); - memcpy(&setup, ep0rambase, 8); + memcpy_toio((void __iomem *)&setup, ep0rambase, 8); udc->setup = setup; udc->setup.wValue = cpu_to_le16(setup.wValue); @@ -1833,7 +1837,7 @@ static void xudc_ep0_out(struct xusb_udc *udc) (ep0->rambase << 2)); buffer = req->usb_req.buf + req->usb_req.actual; req->usb_req.actual = req->usb_req.actual + bytes_to_rx; - memcpy(buffer, ep0rambase, bytes_to_rx); + memcpy_toio((void __iomem *)buffer, ep0rambase, bytes_to_rx); if (req->usb_req.length == req->usb_req.actual) { /* Data transfer completed get ready for Status stage */ @@ -1909,7 +1913,7 @@ static void xudc_ep0_in(struct xusb_udc *udc) (ep0->rambase << 2)); buffer = req->usb_req.buf + req->usb_req.actual; req->usb_req.actual = req->usb_req.actual + length; - memcpy(ep0rambase, buffer, length); + memcpy_toio((void __iomem *)ep0rambase, buffer, length); } udc->write_fn(udc->addr, XUSB_EP_BUF0COUNT_OFFSET, count); udc->write_fn(udc->addr, XUSB_BUFFREADY_OFFSET, 1); diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c index 1440803216297..02044d45edded 100644 --- a/drivers/usb/host/ehci-hcd.c +++ b/drivers/usb/host/ehci-hcd.c @@ -755,10 +755,14 @@ static irqreturn_t ehci_irq (struct usb_hcd *hcd) /* normal [4.15.1.2] or error [4.15.1.1] completion */ if (likely ((status & (STS_INT|STS_ERR)) != 0)) { - if (likely ((status & STS_ERR) == 0)) + if (likely ((status & STS_ERR) == 0)) { INCR(ehci->stats.normal); - else + } else { + /* Force to check port status */ + if (ehci->has_ci_pec_bug) + status |= STS_PCD; INCR(ehci->stats.error); + } bh = 1; } diff --git a/drivers/usb/host/ehci-hub.c b/drivers/usb/host/ehci-hub.c index c4f6a2559a987..0350c03dc97a1 100644 --- a/drivers/usb/host/ehci-hub.c +++ b/drivers/usb/host/ehci-hub.c @@ -674,7 +674,8 @@ ehci_hub_status_data (struct usb_hcd *hcd, char *buf) if ((temp & mask) != 0 || test_bit(i, &ehci->port_c_suspend) || (ehci->reset_done[i] && time_after_eq( - jiffies, ehci->reset_done[i]))) { + jiffies, ehci->reset_done[i])) + || ehci_has_ci_pec_bug(ehci, temp)) { if (i < 7) buf [0] |= 1 << (i + 1); else @@ -874,6 +875,13 @@ int ehci_hub_control( if (temp & PORT_PEC) status |= USB_PORT_STAT_C_ENABLE << 16; + if (ehci_has_ci_pec_bug(ehci, temp)) { + status |= USB_PORT_STAT_C_ENABLE << 16; + ehci_info(ehci, + "PE is cleared by HW port:%d PORTSC:%08x\n", + wIndex + 1, temp); + } + if ((temp & PORT_OCC) && (!ignore_oc && !ehci->spurious_oc)){ status |= USB_PORT_STAT_C_OVERCURRENT << 16; diff --git a/drivers/usb/host/ehci.h b/drivers/usb/host/ehci.h index fdd073cc053b8..9888ca5f5f36f 100644 --- a/drivers/usb/host/ehci.h +++ b/drivers/usb/host/ehci.h @@ -207,6 +207,7 @@ struct ehci_hcd { /* one per controller */ unsigned has_fsl_port_bug:1; /* FreeScale */ unsigned has_fsl_hs_errata:1; /* Freescale HS quirk */ unsigned has_fsl_susp_errata:1; /* NXP SUSP quirk */ + unsigned has_ci_pec_bug:1; /* ChipIdea PEC bug */ unsigned big_endian_mmio:1; unsigned big_endian_desc:1; unsigned big_endian_capbase:1; @@ -706,6 +707,15 @@ ehci_port_speed(struct ehci_hcd *ehci, unsigned int portsc) */ #define ehci_has_fsl_susp_errata(e) ((e)->has_fsl_susp_errata) +/* + * Some Freescale/NXP processors using ChipIdea IP have a bug in which + * disabling the port (PE is cleared) does not cause PEC to be asserted + * when frame babble is detected. + */ +#define ehci_has_ci_pec_bug(e, portsc) \ + ((e)->has_ci_pec_bug && ((e)->command & CMD_PSE) \ + && !(portsc & PORT_PEC) && !(portsc & PORT_PE)) + /* * While most USB host controllers implement their registers in * little-endian format, a minority (celleb companion chip) implement diff --git a/drivers/usb/host/xhci-pci.c b/drivers/usb/host/xhci-pci.c index a197109b33390..0b223a7d619df 100644 --- a/drivers/usb/host/xhci-pci.c +++ b/drivers/usb/host/xhci-pci.c @@ -516,7 +516,9 @@ static int xhci_pci_probe(struct pci_dev *dev, const struct pci_device_id *id) /* USB-2 and USB-3 roothubs initialized, allow runtime pm suspend */ pm_runtime_put_noidle(&dev->dev); - if (xhci->quirks & XHCI_DEFAULT_PM_RUNTIME_ALLOW) + if (pci_choose_state(dev, PMSG_SUSPEND) == PCI_D0) + pm_runtime_forbid(&dev->dev); + else if (xhci->quirks & XHCI_DEFAULT_PM_RUNTIME_ALLOW) pm_runtime_allow(&dev->dev); dma_set_max_seg_size(&dev->dev, UINT_MAX); diff --git a/drivers/usb/host/xhci-plat.c b/drivers/usb/host/xhci-plat.c index 972a44b2a7f12..e56a1fb9715a7 100644 --- a/drivers/usb/host/xhci-plat.c +++ b/drivers/usb/host/xhci-plat.c @@ -466,23 +466,38 @@ static int __maybe_unused xhci_plat_resume(struct device *dev) int ret; if (!device_may_wakeup(dev) && (xhci->quirks & XHCI_SUSPEND_RESUME_CLKS)) { - clk_prepare_enable(xhci->clk); - clk_prepare_enable(xhci->reg_clk); + ret = clk_prepare_enable(xhci->clk); + if (ret) + return ret; + + ret = clk_prepare_enable(xhci->reg_clk); + if (ret) { + clk_disable_unprepare(xhci->clk); + return ret; + } } ret = xhci_priv_resume_quirk(hcd); if (ret) - return ret; + goto disable_clks; ret = xhci_resume(xhci, 0); if (ret) - return ret; + goto disable_clks; pm_runtime_disable(dev); pm_runtime_set_active(dev); pm_runtime_enable(dev); return 0; + +disable_clks: + if (!device_may_wakeup(dev) && (xhci->quirks & XHCI_SUSPEND_RESUME_CLKS)) { + clk_disable_unprepare(xhci->clk); + clk_disable_unprepare(xhci->reg_clk); + } + + return ret; } static int __maybe_unused xhci_plat_runtime_suspend(struct device *dev) diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c index 15e44045230e1..945ed5f3e8588 100644 --- a/drivers/usb/host/xhci-ring.c +++ b/drivers/usb/host/xhci-ring.c @@ -772,7 +772,7 @@ static void xhci_giveback_urb_in_irq(struct xhci_hcd *xhci, static void xhci_unmap_td_bounce_buffer(struct xhci_hcd *xhci, struct xhci_ring *ring, struct xhci_td *td) { - struct device *dev = xhci_to_hcd(xhci)->self.controller; + struct device *dev = xhci_to_hcd(xhci)->self.sysdev; struct xhci_segment *seg = td->bounce_seg; struct urb *urb = td->urb; size_t len; @@ -3521,7 +3521,7 @@ static u32 xhci_td_remainder(struct xhci_hcd *xhci, int transferred, static int xhci_align_td(struct xhci_hcd *xhci, struct urb *urb, u32 enqd_len, u32 *trb_buff_len, struct xhci_segment *seg) { - struct device *dev = xhci_to_hcd(xhci)->self.controller; + struct device *dev = xhci_to_hcd(xhci)->self.sysdev; unsigned int unalign; unsigned int max_pkt; u32 new_buff_len; diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c index 1fd2f6a850ebc..5c9d3be136d2c 100644 --- a/drivers/usb/host/xhci.c +++ b/drivers/usb/host/xhci.c @@ -611,8 +611,27 @@ static int xhci_init(struct usb_hcd *hcd) static int xhci_run_finished(struct xhci_hcd *xhci) { + unsigned long flags; + u32 temp; + + /* + * Enable interrupts before starting the host (xhci 4.2 and 5.5.2). + * Protect the short window before host is running with a lock + */ + spin_lock_irqsave(&xhci->lock, flags); + + xhci_dbg_trace(xhci, trace_xhci_dbg_init, "Enable interrupts"); + temp = readl(&xhci->op_regs->command); + temp |= (CMD_EIE); + writel(temp, &xhci->op_regs->command); + + xhci_dbg_trace(xhci, trace_xhci_dbg_init, "Enable primary interrupter"); + temp = readl(&xhci->ir_set->irq_pending); + writel(ER_IRQ_ENABLE(temp), &xhci->ir_set->irq_pending); + if (xhci_start(xhci)) { xhci_halt(xhci); + spin_unlock_irqrestore(&xhci->lock, flags); return -ENODEV; } xhci->shared_hcd->state = HC_STATE_RUNNING; @@ -623,6 +642,9 @@ static int xhci_run_finished(struct xhci_hcd *xhci) xhci_dbg_trace(xhci, trace_xhci_dbg_init, "Finished xhci_run for USB3 roothub"); + + spin_unlock_irqrestore(&xhci->lock, flags); + return 0; } @@ -671,19 +693,6 @@ int xhci_run(struct usb_hcd *hcd) temp |= (xhci->imod_interval / 250) & ER_IRQ_INTERVAL_MASK; writel(temp, &xhci->ir_set->irq_control); - /* Set the HCD state before we enable the irqs */ - temp = readl(&xhci->op_regs->command); - temp |= (CMD_EIE); - xhci_dbg_trace(xhci, trace_xhci_dbg_init, - "// Enable interrupts, cmd = 0x%x.", temp); - writel(temp, &xhci->op_regs->command); - - temp = readl(&xhci->ir_set->irq_pending); - xhci_dbg_trace(xhci, trace_xhci_dbg_init, - "// Enabling event ring interrupter %p by writing 0x%x to irq_pending", - xhci->ir_set, (unsigned int) ER_IRQ_ENABLE(temp)); - writel(ER_IRQ_ENABLE(temp), &xhci->ir_set->irq_pending); - if (xhci->quirks & XHCI_NEC_HOST) { struct xhci_command *command; diff --git a/drivers/usb/musb/musb_debugfs.c b/drivers/usb/musb/musb_debugfs.c index 30a89aa8a3e7a..5401ae66894eb 100644 --- a/drivers/usb/musb/musb_debugfs.c +++ b/drivers/usb/musb/musb_debugfs.c @@ -39,7 +39,7 @@ static const struct musb_register_map musb_regmap[] = { { "IntrUsbE", MUSB_INTRUSBE, 8 }, { "DevCtl", MUSB_DEVCTL, 8 }, { "VControl", 0x68, 32 }, - { "HWVers", 0x69, 16 }, + { "HWVers", MUSB_HWVERS, 16 }, { "LinkInfo", MUSB_LINKINFO, 8 }, { "VPLen", MUSB_VPLEN, 8 }, { "HS_EOF1", MUSB_HS_EOF1, 8 }, diff --git a/drivers/usb/musb/musb_host.c b/drivers/usb/musb/musb_host.c index 9ff7d891b4b76..ef0b1589b10eb 100644 --- a/drivers/usb/musb/musb_host.c +++ b/drivers/usb/musb/musb_host.c @@ -321,10 +321,16 @@ static void musb_advance_schedule(struct musb *musb, struct urb *urb, musb_giveback(musb, urb, status); qh->is_ready = ready; + /* + * musb->lock had been unlocked in musb_giveback, so qh may + * be freed, need to get it again + */ + qh = musb_ep_get_qh(hw_ep, is_in); + /* reclaim resources (and bandwidth) ASAP; deschedule it, and * invalidate qh as soon as list_empty(&hep->urb_list) */ - if (list_empty(&qh->hep->urb_list)) { + if (qh && list_empty(&qh->hep->urb_list)) { struct list_head *head; struct dma_controller *dma = musb->dma_controller; @@ -2398,6 +2404,7 @@ static int musb_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status) * and its URB list has emptied, recycle this qh. */ if (ready && list_empty(&qh->hep->urb_list)) { + musb_ep_set_qh(qh->hw_ep, is_in, NULL); qh->hep->hcpriv = NULL; list_del(&qh->ring); kfree(qh); diff --git a/drivers/usb/phy/phy-mxs-usb.c b/drivers/usb/phy/phy-mxs-usb.c index 8a262c5a0408f..7a7eb8af60448 100644 --- a/drivers/usb/phy/phy-mxs-usb.c +++ b/drivers/usb/phy/phy-mxs-usb.c @@ -388,14 +388,8 @@ static void __mxs_phy_disconnect_line(struct mxs_phy *mxs_phy, bool disconnect) static bool mxs_phy_is_otg_host(struct mxs_phy *mxs_phy) { - void __iomem *base = mxs_phy->phy.io_priv; - u32 phyctrl = readl(base + HW_USBPHY_CTRL); - - if (IS_ENABLED(CONFIG_USB_OTG) && - !(phyctrl & BM_USBPHY_CTRL_OTG_ID_VALUE)) - return true; - - return false; + return IS_ENABLED(CONFIG_USB_OTG) && + mxs_phy->phy.last_event == USB_EVENT_ID; } static void mxs_phy_disconnect_line(struct mxs_phy *mxs_phy, bool on) diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index f13930b4534c1..7f2aa72d52e65 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c @@ -203,6 +203,9 @@ static void option_instat_callback(struct urb *urb); #define DELL_PRODUCT_5829E_ESIM 0x81e4 #define DELL_PRODUCT_5829E 0x81e6 +#define DELL_PRODUCT_FM101R_ESIM 0x8213 +#define DELL_PRODUCT_FM101R 0x8215 + #define KYOCERA_VENDOR_ID 0x0c88 #define KYOCERA_PRODUCT_KPC650 0x17da #define KYOCERA_PRODUCT_KPC680 0x180a @@ -606,6 +609,8 @@ static void option_instat_callback(struct urb *urb); #define UNISOC_VENDOR_ID 0x1782 /* TOZED LT70-C based on UNISOC SL8563 uses UNISOC's vendor ID */ #define TOZED_PRODUCT_LT70C 0x4055 +/* Luat Air72*U series based on UNISOC UIS8910 uses UNISOC's vendor ID */ +#define LUAT_PRODUCT_AIR720U 0x4e00 /* Device flags */ @@ -1108,6 +1113,8 @@ static const struct usb_device_id option_ids[] = { .driver_info = RSVD(0) | RSVD(6) }, { USB_DEVICE(DELL_VENDOR_ID, DELL_PRODUCT_5829E_ESIM), .driver_info = RSVD(0) | RSVD(6) }, + { USB_DEVICE_INTERFACE_CLASS(DELL_VENDOR_ID, DELL_PRODUCT_FM101R, 0xff) }, + { USB_DEVICE_INTERFACE_CLASS(DELL_VENDOR_ID, DELL_PRODUCT_FM101R_ESIM, 0xff) }, { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_E100A) }, /* ADU-E100, ADU-310 */ { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_500A) }, { USB_DEVICE(ANYDATA_VENDOR_ID, ANYDATA_PRODUCT_ADU_620UW) }, @@ -1290,6 +1297,7 @@ static const struct usb_device_id option_ids[] = { .driver_info = NCTRL(0) | RSVD(3) }, { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1033, 0xff), /* Telit LE910C1-EUX (ECM) */ .driver_info = NCTRL(0) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1035, 0xff) }, /* Telit LE910C4-WWX (ECM) */ { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE922_USBCFG0), .driver_info = RSVD(0) | RSVD(1) | NCTRL(2) | RSVD(3) }, { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE922_USBCFG1), @@ -1540,7 +1548,8 @@ static const struct usb_device_id option_ids[] = { { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0165, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0167, 0xff, 0xff, 0xff), .driver_info = RSVD(4) }, - { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0189, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0189, 0xff, 0xff, 0xff), + .driver_info = RSVD(4) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0191, 0xff, 0xff, 0xff), /* ZTE EuFi890 */ .driver_info = RSVD(4) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0196, 0xff, 0xff, 0xff) }, @@ -2243,6 +2252,7 @@ static const struct usb_device_id option_ids[] = { .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_AND_INTERFACE_INFO(0x2cb7, 0x0001, 0xff, 0xff, 0xff) }, /* Fibocom L716-EU (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 */ @@ -2262,8 +2272,10 @@ static const struct usb_device_id option_ids[] = { { USB_DEVICE_INTERFACE_CLASS(0x305a, 0x1406, 0xff) }, /* GosunCn GM500 ECM/NCM */ { USB_DEVICE_AND_INTERFACE_INFO(OPPO_VENDOR_ID, OPPO_PRODUCT_R11, 0xff, 0xff, 0x30) }, { USB_DEVICE_AND_INTERFACE_INFO(SIERRA_VENDOR_ID, SIERRA_PRODUCT_EM9191, 0xff, 0xff, 0x30) }, + { USB_DEVICE_AND_INTERFACE_INFO(SIERRA_VENDOR_ID, SIERRA_PRODUCT_EM9191, 0xff, 0xff, 0x40) }, { USB_DEVICE_AND_INTERFACE_INFO(SIERRA_VENDOR_ID, SIERRA_PRODUCT_EM9191, 0xff, 0, 0) }, { USB_DEVICE_AND_INTERFACE_INFO(UNISOC_VENDOR_ID, TOZED_PRODUCT_LT70C, 0xff, 0, 0) }, + { USB_DEVICE_AND_INTERFACE_INFO(UNISOC_VENDOR_ID, LUAT_PRODUCT_AIR720U, 0xff, 0, 0) }, { } /* Terminating entry */ }; MODULE_DEVICE_TABLE(usb, option_ids); diff --git a/drivers/usb/storage/unusual_cypress.h b/drivers/usb/storage/unusual_cypress.h index 0547daf116a26..5df40759d77ad 100644 --- a/drivers/usb/storage/unusual_cypress.h +++ b/drivers/usb/storage/unusual_cypress.h @@ -19,7 +19,7 @@ UNUSUAL_DEV( 0x04b4, 0x6831, 0x0000, 0x9999, "Cypress ISD-300LP", USB_SC_CYP_ATACB, USB_PR_DEVICE, NULL, 0), -UNUSUAL_DEV( 0x14cd, 0x6116, 0x0160, 0x0160, +UNUSUAL_DEV( 0x14cd, 0x6116, 0x0150, 0x0160, "Super Top", "USB 2.0 SATA BRIDGE", USB_SC_CYP_ATACB, USB_PR_DEVICE, NULL, 0), diff --git a/drivers/usb/typec/bus.c b/drivers/usb/typec/bus.c index 0aefb9e14f228..407d2a84633a8 100644 --- a/drivers/usb/typec/bus.c +++ b/drivers/usb/typec/bus.c @@ -154,12 +154,20 @@ EXPORT_SYMBOL_GPL(typec_altmode_exit); * * Notifies the partner of @adev about Attention command. */ -void typec_altmode_attention(struct typec_altmode *adev, u32 vdo) +int typec_altmode_attention(struct typec_altmode *adev, u32 vdo) { - struct typec_altmode *pdev = &to_altmode(adev)->partner->adev; + struct altmode *partner = to_altmode(adev)->partner; + struct typec_altmode *pdev; + + if (!partner) + return -ENODEV; + + pdev = &partner->adev; if (pdev->ops && pdev->ops->attention) pdev->ops->attention(pdev, vdo); + + return 0; } EXPORT_SYMBOL_GPL(typec_altmode_attention); diff --git a/drivers/usb/typec/class.c b/drivers/usb/typec/class.c index 339752fef65e0..ea86195c75b83 100644 --- a/drivers/usb/typec/class.c +++ b/drivers/usb/typec/class.c @@ -265,7 +265,7 @@ static void typec_altmode_put_partner(struct altmode *altmode) if (!partner) return; - adev = &partner->adev; + adev = &altmode->adev; if (is_typec_plug(adev->dev.parent)) { struct typec_plug *plug = to_typec_plug(adev->dev.parent); @@ -495,7 +495,8 @@ static void typec_altmode_release(struct device *dev) { struct altmode *alt = to_altmode(to_typec_altmode(dev)); - typec_altmode_put_partner(alt); + if (!is_typec_port(dev->parent)) + typec_altmode_put_partner(alt); altmode_id_remove(alt->adev.dev.parent, alt->id); kfree(alt); diff --git a/drivers/usb/typec/tcpm/tcpm.c b/drivers/usb/typec/tcpm/tcpm.c index 4f38b2d609f19..359c9bd7848fb 100644 --- a/drivers/usb/typec/tcpm/tcpm.c +++ b/drivers/usb/typec/tcpm/tcpm.c @@ -1608,6 +1608,9 @@ static int tcpm_pd_svdm(struct tcpm_port *port, struct typec_altmode *adev, if (PD_VDO_VID(p[0]) != USB_SID_PD) break; + if (IS_ERR_OR_NULL(port->partner)) + break; + if (PD_VDO_SVDM_VER(p[0]) < svdm_version) { typec_partner_set_svdm_version(port->partner, PD_VDO_SVDM_VER(p[0])); @@ -1863,7 +1866,8 @@ static void tcpm_handle_vdm_request(struct tcpm_port *port, } break; case ADEV_ATTENTION: - typec_altmode_attention(adev, p[1]); + if (typec_altmode_attention(adev, p[1])) + tcpm_log(port, "typec_altmode_attention no port partner altmode"); break; } } @@ -3862,6 +3866,29 @@ static enum typec_cc_status tcpm_pwr_opmode_to_rp(enum typec_pwr_opmode opmode) } } +static void tcpm_set_initial_svdm_version(struct tcpm_port *port) +{ + switch (port->negotiated_rev) { + case PD_REV30: + break; + /* + * 6.4.4.2.3 Structured VDM Version + * 2.0 states "At this time, there is only one version (1.0) defined. + * This field Shall be set to zero to indicate Version 1.0." + * 3.0 states "This field Shall be set to 01b to indicate Version 2.0." + * To ensure that we follow the Power Delivery revision we are currently + * operating on, downgrade the SVDM version to the highest one supported + * by the Power Delivery revision. + */ + case PD_REV20: + typec_partner_set_svdm_version(port->partner, SVDM_VER_1_0); + break; + default: + typec_partner_set_svdm_version(port->partner, SVDM_VER_1_0); + break; + } +} + static void run_state_machine(struct tcpm_port *port) { int ret; @@ -4086,10 +4113,12 @@ static void run_state_machine(struct tcpm_port *port) * For now, this driver only supports SOP for DISCOVER_IDENTITY, thus using * port->explicit_contract to decide whether to send the command. */ - if (port->explicit_contract) + if (port->explicit_contract) { + tcpm_set_initial_svdm_version(port); mod_send_discover_delayed_work(port, 0); - else + } else { port->send_discover = false; + } /* * 6.3.5 @@ -4372,10 +4401,12 @@ static void run_state_machine(struct tcpm_port *port) * For now, this driver only supports SOP for DISCOVER_IDENTITY, thus using * port->explicit_contract. */ - if (port->explicit_contract) + if (port->explicit_contract) { + tcpm_set_initial_svdm_version(port); mod_send_discover_delayed_work(port, 0); - else + } else { port->send_discover = false; + } power_supply_changed(port->psy); break; @@ -5319,6 +5350,15 @@ static void _tcpm_pd_hard_reset(struct tcpm_port *port) if (port->bist_request == BDO_MODE_TESTDATA && port->tcpc->set_bist_data) port->tcpc->set_bist_data(port->tcpc, false); + switch (port->state) { + case ERROR_RECOVERY: + case PORT_RESET: + case PORT_RESET_WAIT_OFF: + return; + default: + break; + } + if (port->ams != NONE_AMS) port->ams = NONE_AMS; if (port->hard_reset_count < PD_N_HARD_RESET_COUNT) diff --git a/drivers/usb/usbip/stub_dev.c b/drivers/usb/usbip/stub_dev.c index 3c6d452e3bf40..4104eea03e806 100644 --- a/drivers/usb/usbip/stub_dev.c +++ b/drivers/usb/usbip/stub_dev.c @@ -462,8 +462,13 @@ static void stub_disconnect(struct usb_device *udev) /* release port */ rc = usb_hub_release_port(udev->parent, udev->portnum, (struct usb_dev_state *) udev); - if (rc) { - dev_dbg(&udev->dev, "unable to release port\n"); + /* + * NOTE: If a HUB disconnect triggered disconnect of the down stream + * device usb_hub_release_port will return -ENODEV so we can safely ignore + * that error here. + */ + if (rc && (rc != -ENODEV)) { + dev_dbg(&udev->dev, "unable to release port (%i)\n", rc); return; } diff --git a/drivers/vdpa/mlx5/net/mlx5_vnet.c b/drivers/vdpa/mlx5/net/mlx5_vnet.c index e748c00789f04..46c72e6d3a29b 100644 --- a/drivers/vdpa/mlx5/net/mlx5_vnet.c +++ b/drivers/vdpa/mlx5/net/mlx5_vnet.c @@ -2178,13 +2178,18 @@ static int setup_cvq_vring(struct mlx5_vdpa_dev *mvdev) struct mlx5_control_vq *cvq = &mvdev->cvq; int err = 0; - if (mvdev->actual_features & BIT_ULL(VIRTIO_NET_F_CTRL_VQ)) + if (mvdev->actual_features & BIT_ULL(VIRTIO_NET_F_CTRL_VQ)) { + u16 idx = cvq->vring.last_avail_idx; + err = vringh_init_iotlb(&cvq->vring, mvdev->actual_features, MLX5_CVQ_MAX_ENT, false, (struct vring_desc *)(uintptr_t)cvq->desc_addr, (struct vring_avail *)(uintptr_t)cvq->driver_addr, (struct vring_used *)(uintptr_t)cvq->device_addr); + if (!err) + cvq->vring.last_avail_idx = cvq->vring.last_used_idx = idx; + } return err; } diff --git a/drivers/vfio/vfio_iommu_type1.c b/drivers/vfio/vfio_iommu_type1.c index 5623fc28b1ea8..66bbb125d7615 100644 --- a/drivers/vfio/vfio_iommu_type1.c +++ b/drivers/vfio/vfio_iommu_type1.c @@ -2866,7 +2866,7 @@ static int vfio_iommu_iova_build_caps(struct vfio_iommu *iommu, static int vfio_iommu_migration_build_caps(struct vfio_iommu *iommu, struct vfio_info_cap *caps) { - struct vfio_iommu_type1_info_cap_migration cap_mig; + struct vfio_iommu_type1_info_cap_migration cap_mig = {}; cap_mig.header.id = VFIO_IOMMU_TYPE1_INFO_CAP_MIGRATION; cap_mig.header.version = 1; diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c index 047fa2faef566..99cdd59f4e0c1 100644 --- a/drivers/vhost/vhost.c +++ b/drivers/vhost/vhost.c @@ -1171,9 +1171,7 @@ ssize_t vhost_chr_write_iter(struct vhost_dev *dev, goto done; } - if ((msg.type == VHOST_IOTLB_UPDATE || - msg.type == VHOST_IOTLB_INVALIDATE) && - msg.size == 0) { + if (msg.type == VHOST_IOTLB_UPDATE && msg.size == 0) { ret = -EINVAL; goto done; } @@ -2584,12 +2582,11 @@ EXPORT_SYMBOL_GPL(vhost_disable_notify); /* Create a new message. */ struct vhost_msg_node *vhost_new_msg(struct vhost_virtqueue *vq, int type) { - struct vhost_msg_node *node = kmalloc(sizeof *node, GFP_KERNEL); + /* Make sure all padding within the structure is initialized. */ + struct vhost_msg_node *node = kzalloc(sizeof(*node), GFP_KERNEL); if (!node) return NULL; - /* Make sure all padding within the structure is initialized. */ - memset(&node->msg, 0, sizeof node->msg); node->vq = vq; node->msg.type = type; return node; diff --git a/drivers/video/backlight/bd6107.c b/drivers/video/backlight/bd6107.c index 515184fbe33a9..5c67ef8bd60ca 100644 --- a/drivers/video/backlight/bd6107.c +++ b/drivers/video/backlight/bd6107.c @@ -104,7 +104,7 @@ static int bd6107_backlight_check_fb(struct backlight_device *backlight, { struct bd6107 *bd = bl_get_data(backlight); - return bd->pdata->fbdev == NULL || bd->pdata->fbdev == info->dev; + return bd->pdata->fbdev == NULL || bd->pdata->fbdev == info->device; } static const struct backlight_ops bd6107_backlight_ops = { diff --git a/drivers/video/backlight/gpio_backlight.c b/drivers/video/backlight/gpio_backlight.c index 6f78d928f054a..30ec5b6845335 100644 --- a/drivers/video/backlight/gpio_backlight.c +++ b/drivers/video/backlight/gpio_backlight.c @@ -35,7 +35,7 @@ static int gpio_backlight_check_fb(struct backlight_device *bl, { struct gpio_backlight *gbl = bl_get_data(bl); - return gbl->fbdev == NULL || gbl->fbdev == info->dev; + return gbl->fbdev == NULL || gbl->fbdev == info->device; } static const struct backlight_ops gpio_backlight_ops = { @@ -87,8 +87,7 @@ static int gpio_backlight_probe(struct platform_device *pdev) /* Not booted with device tree or no phandle link to the node */ bl->props.power = def_value ? FB_BLANK_UNBLANK : FB_BLANK_POWERDOWN; - else if (gpiod_get_direction(gbl->gpiod) == 0 && - gpiod_get_value_cansleep(gbl->gpiod) == 0) + else if (gpiod_get_value_cansleep(gbl->gpiod) == 0) bl->props.power = FB_BLANK_POWERDOWN; else bl->props.power = FB_BLANK_UNBLANK; diff --git a/drivers/video/backlight/lv5207lp.c b/drivers/video/backlight/lv5207lp.c index 1842ae9a55f8b..720ada475ce53 100644 --- a/drivers/video/backlight/lv5207lp.c +++ b/drivers/video/backlight/lv5207lp.c @@ -67,7 +67,7 @@ static int lv5207lp_backlight_check_fb(struct backlight_device *backlight, { struct lv5207lp *lv = bl_get_data(backlight); - return lv->pdata->fbdev == NULL || lv->pdata->fbdev == info->dev; + return lv->pdata->fbdev == NULL || lv->pdata->fbdev == info->device; } static const struct backlight_ops lv5207lp_backlight_ops = { diff --git a/drivers/video/fbdev/Kconfig b/drivers/video/fbdev/Kconfig index 26531aa194282..662524574cc33 100644 --- a/drivers/video/fbdev/Kconfig +++ b/drivers/video/fbdev/Kconfig @@ -2017,7 +2017,7 @@ config FB_COBALT config FB_SH7760 bool "SH7760/SH7763/SH7720/SH7721 LCDC support" - depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \ + depends on FB=y && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \ || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721) select FB_CFB_FILLRECT select FB_CFB_COPYAREA diff --git a/drivers/video/fbdev/aty/atyfb_base.c b/drivers/video/fbdev/aty/atyfb_base.c index 1aef3d6ebd880..246bf67b32ea0 100644 --- a/drivers/video/fbdev/aty/atyfb_base.c +++ b/drivers/video/fbdev/aty/atyfb_base.c @@ -3447,11 +3447,15 @@ static int atyfb_setup_generic(struct pci_dev *pdev, struct fb_info *info, } info->fix.mmio_start = raddr; +#if defined(__i386__) || defined(__ia64__) /* * By using strong UC we force the MTRR to never have an * effect on the MMIO region on both non-PAT and PAT systems. */ par->ati_regbase = ioremap_uc(info->fix.mmio_start, 0x1000); +#else + par->ati_regbase = ioremap(info->fix.mmio_start, 0x1000); +#endif if (par->ati_regbase == NULL) return -ENOMEM; diff --git a/drivers/video/fbdev/ep93xx-fb.c b/drivers/video/fbdev/ep93xx-fb.c index 305f1587bd898..8b2bc4adc50f7 100644 --- a/drivers/video/fbdev/ep93xx-fb.c +++ b/drivers/video/fbdev/ep93xx-fb.c @@ -474,7 +474,6 @@ static int ep93xxfb_probe(struct platform_device *pdev) if (!info) return -ENOMEM; - info->dev = &pdev->dev; platform_set_drvdata(pdev, info); fbi = info->par; fbi->mach_info = mach_info; diff --git a/drivers/video/fbdev/fsl-diu-fb.c b/drivers/video/fbdev/fsl-diu-fb.c index e332017c6af62..ce3c5b0b8f4ef 100644 --- a/drivers/video/fbdev/fsl-diu-fb.c +++ b/drivers/video/fbdev/fsl-diu-fb.c @@ -490,7 +490,7 @@ static enum fsl_diu_monitor_port fsl_diu_name_to_port(const char *s) * Workaround for failed writing desc register of planes. * Needed with MPC5121 DIU rev 2.0 silicon. */ -void wr_reg_wa(u32 *reg, u32 val) +static void wr_reg_wa(u32 *reg, u32 val) { do { out_be32(reg, val); diff --git a/drivers/video/fbdev/hyperv_fb.c b/drivers/video/fbdev/hyperv_fb.c index de865e197c8d9..eeec217bc7109 100644 --- a/drivers/video/fbdev/hyperv_fb.c +++ b/drivers/video/fbdev/hyperv_fb.c @@ -79,10 +79,6 @@ #define SYNTHVID_FB_SIZE_WIN8 (8 * 1024 * 1024) -#define PCI_VENDOR_ID_MICROSOFT 0x1414 -#define PCI_DEVICE_ID_HYPERV_VIDEO 0x5353 - - enum pipe_msg_type { PIPE_MSG_INVALID, PIPE_MSG_DATA, diff --git a/drivers/video/fbdev/imsttfb.c b/drivers/video/fbdev/imsttfb.c index 1b2fb8ed76237..e559c844436bd 100644 --- a/drivers/video/fbdev/imsttfb.c +++ b/drivers/video/fbdev/imsttfb.c @@ -1489,8 +1489,8 @@ static int imsttfb_probe(struct pci_dev *pdev, const struct pci_device_id *ent) if (!request_mem_region(addr, size, "imsttfb")) { printk(KERN_ERR "imsttfb: Can't reserve memory region\n"); - framebuffer_release(info); - return -ENODEV; + ret = -ENODEV; + goto release_info; } switch (pdev->device) { @@ -1507,34 +1507,39 @@ static int imsttfb_probe(struct pci_dev *pdev, const struct pci_device_id *ent) printk(KERN_INFO "imsttfb: Device 0x%x unknown, " "contact maintainer.\n", pdev->device); ret = -ENODEV; - goto error; + goto release_mem_region; } info->fix.smem_start = addr; info->screen_base = (__u8 *)ioremap(addr, par->ramdac == IBM ? 0x400000 : 0x800000); if (!info->screen_base) - goto error; + goto release_mem_region; info->fix.mmio_start = addr + 0x800000; par->dc_regs = ioremap(addr + 0x800000, 0x1000); if (!par->dc_regs) - goto error; + goto unmap_screen_base; par->cmap_regs_phys = addr + 0x840000; par->cmap_regs = (__u8 *)ioremap(addr + 0x840000, 0x1000); if (!par->cmap_regs) - goto error; + goto unmap_dc_regs; info->pseudo_palette = par->palette; ret = init_imstt(info); - if (!ret) - pci_set_drvdata(pdev, info); - return ret; + if (ret) + goto unmap_cmap_regs; + + pci_set_drvdata(pdev, info); + return 0; -error: - if (par->dc_regs) - iounmap(par->dc_regs); - if (info->screen_base) - iounmap(info->screen_base); +unmap_cmap_regs: + iounmap(par->cmap_regs); +unmap_dc_regs: + iounmap(par->dc_regs); +unmap_screen_base: + iounmap(info->screen_base); +release_mem_region: release_mem_region(addr, size); +release_info: framebuffer_release(info); return ret; } diff --git a/drivers/video/fbdev/sticore.h b/drivers/video/fbdev/sticore.h index 0ebdd28a0b813..d83ab3ded5f3d 100644 --- a/drivers/video/fbdev/sticore.h +++ b/drivers/video/fbdev/sticore.h @@ -231,7 +231,7 @@ struct sti_rom_font { u8 height; u8 font_type; /* language type */ u8 bytes_per_char; - u32 next_font; + s32 next_font; /* note: signed int */ u8 underline_height; u8 underline_pos; u8 res008[2]; diff --git a/drivers/video/fbdev/uvesafb.c b/drivers/video/fbdev/uvesafb.c index 1f3b7e013568c..3a285af76f7ed 100644 --- a/drivers/video/fbdev/uvesafb.c +++ b/drivers/video/fbdev/uvesafb.c @@ -1935,10 +1935,10 @@ static void uvesafb_exit(void) } } - cn_del_callback(&uvesafb_cn_id); driver_remove_file(&uvesafb_driver.driver, &driver_attr_v86d); platform_device_unregister(uvesafb_device); platform_driver_unregister(&uvesafb_driver); + cn_del_callback(&uvesafb_cn_id); } module_exit(uvesafb_exit); diff --git a/drivers/virtio/virtio_balloon.c b/drivers/virtio/virtio_balloon.c index c22ff0117b46b..0f3c22cee4e71 100644 --- a/drivers/virtio/virtio_balloon.c +++ b/drivers/virtio/virtio_balloon.c @@ -402,7 +402,11 @@ static inline s64 towards_target(struct virtio_balloon *vb) virtio_cread_le(vb->vdev, struct virtio_balloon_config, num_pages, &num_pages); - target = num_pages; + /* + * Aligned up to guest page size to avoid inflating and deflating + * balloon endlessly. + */ + target = ALIGN(num_pages, VIRTIO_BALLOON_PAGES_PER_PAGE); return target - vb->num_pages; } diff --git a/drivers/virtio/virtio_mmio.c b/drivers/virtio/virtio_mmio.c index f4d43d60d710f..17908c37751a2 100644 --- a/drivers/virtio/virtio_mmio.c +++ b/drivers/virtio/virtio_mmio.c @@ -596,14 +596,17 @@ static int virtio_mmio_probe(struct platform_device *pdev) spin_lock_init(&vm_dev->lock); vm_dev->base = devm_platform_ioremap_resource(pdev, 0); - if (IS_ERR(vm_dev->base)) - return PTR_ERR(vm_dev->base); + if (IS_ERR(vm_dev->base)) { + rc = PTR_ERR(vm_dev->base); + goto free_vm_dev; + } /* Check magic value */ magic = readl(vm_dev->base + VIRTIO_MMIO_MAGIC_VALUE); if (magic != ('v' | 'i' << 8 | 'r' << 16 | 't' << 24)) { dev_warn(&pdev->dev, "Wrong magic value 0x%08lx!\n", magic); - return -ENODEV; + rc = -ENODEV; + goto free_vm_dev; } /* Check device version */ @@ -611,7 +614,8 @@ static int virtio_mmio_probe(struct platform_device *pdev) if (vm_dev->version < 1 || vm_dev->version > 2) { dev_err(&pdev->dev, "Version %ld not supported!\n", vm_dev->version); - return -ENXIO; + rc = -ENXIO; + goto free_vm_dev; } vm_dev->vdev.id.device = readl(vm_dev->base + VIRTIO_MMIO_DEVICE_ID); @@ -620,7 +624,8 @@ static int virtio_mmio_probe(struct platform_device *pdev) * virtio-mmio device with an ID 0 is a (dummy) placeholder * with no function. End probing now with no error reported. */ - return -ENODEV; + rc = -ENODEV; + goto free_vm_dev; } vm_dev->vdev.id.vendor = readl(vm_dev->base + VIRTIO_MMIO_VENDOR_ID); @@ -650,6 +655,10 @@ static int virtio_mmio_probe(struct platform_device *pdev) put_device(&vm_dev->vdev.dev); return rc; + +free_vm_dev: + kfree(vm_dev); + return rc; } static int virtio_mmio_remove(struct platform_device *pdev) diff --git a/drivers/virtio/virtio_ring.c b/drivers/virtio/virtio_ring.c index 800df63c58692..067b68168f93e 100644 --- a/drivers/virtio/virtio_ring.c +++ b/drivers/virtio/virtio_ring.c @@ -1271,7 +1271,7 @@ static inline int virtqueue_add_packed(struct virtqueue *_vq, } } - if (i < head) + if (i <= head) vq->packed.avail_wrap_counter ^= 1; /* We're using some buffers from the free list. */ diff --git a/drivers/watchdog/iTCO_wdt.c b/drivers/watchdog/iTCO_wdt.c index ced2fc0deb8c4..a8052a3faaabb 100644 --- a/drivers/watchdog/iTCO_wdt.c +++ b/drivers/watchdog/iTCO_wdt.c @@ -424,6 +424,20 @@ static unsigned int iTCO_wdt_get_timeleft(struct watchdog_device *wd_dev) return time_left; } +/* Returns true if the watchdog was running */ +static bool iTCO_wdt_set_running(struct iTCO_wdt_private *p) +{ + u16 val; + + /* Bit 11: TCO Timer Halt -> 0 = The TCO timer is enabled */ + val = inw(TCO1_CNT(p)); + if (!(val & BIT(11))) { + set_bit(WDOG_HW_RUNNING, &p->wddev.status); + return true; + } + return false; +} + /* * Kernel Interfaces */ @@ -512,9 +526,6 @@ static int iTCO_wdt_probe(struct platform_device *pdev) return -ENODEV; /* Cannot reset NO_REBOOT bit */ } - /* Set the NO_REBOOT bit to prevent later reboots, just for sure */ - p->update_no_reboot_bit(p->no_reboot_priv, true); - if (turn_SMI_watchdog_clear_off >= p->iTCO_version) { /* * Bit 13: TCO_EN -> 0 @@ -566,8 +577,13 @@ static int iTCO_wdt_probe(struct platform_device *pdev) watchdog_set_drvdata(&p->wddev, p); platform_set_drvdata(pdev, p); - /* Make sure the watchdog is not running */ - iTCO_wdt_stop(&p->wddev); + if (!iTCO_wdt_set_running(p)) { + /* + * If the watchdog was not running set NO_REBOOT now to + * prevent later reboots. + */ + p->update_no_reboot_bit(p->no_reboot_priv, true); + } /* Check that the heartbeat value is within it's range; if not reset to the default */ diff --git a/drivers/watchdog/intel-mid_wdt.c b/drivers/watchdog/intel-mid_wdt.c index 9b2173f765c8c..fb7fae750181b 100644 --- a/drivers/watchdog/intel-mid_wdt.c +++ b/drivers/watchdog/intel-mid_wdt.c @@ -203,3 +203,4 @@ module_platform_driver(mid_wdt_driver); MODULE_AUTHOR("David Cohen "); MODULE_DESCRIPTION("Watchdog Driver for Intel MID platform"); MODULE_LICENSE("GPL"); +MODULE_ALIAS("platform:intel_mid_wdt"); diff --git a/drivers/watchdog/sbsa_gwdt.c b/drivers/watchdog/sbsa_gwdt.c index 63862803421f1..7bf28545b47a0 100644 --- a/drivers/watchdog/sbsa_gwdt.c +++ b/drivers/watchdog/sbsa_gwdt.c @@ -153,14 +153,14 @@ static int sbsa_gwdt_set_timeout(struct watchdog_device *wdd, timeout = clamp_t(unsigned int, timeout, 1, wdd->max_hw_heartbeat_ms / 1000); if (action) - sbsa_gwdt_reg_write(gwdt->clk * timeout, gwdt); + sbsa_gwdt_reg_write((u64)gwdt->clk * timeout, gwdt); else /* * In the single stage mode, The first signal (WS0) is ignored, * the timeout is (WOR * 2), so the WOR should be configured * to half value of timeout. */ - sbsa_gwdt_reg_write(gwdt->clk / 2 * timeout, gwdt); + sbsa_gwdt_reg_write(((u64)gwdt->clk / 2) * timeout, gwdt); return 0; } diff --git a/drivers/xen/events/events_base.c b/drivers/xen/events/events_base.c index 5e8321f43cbdd..ee691b20d4a3f 100644 --- a/drivers/xen/events/events_base.c +++ b/drivers/xen/events/events_base.c @@ -33,6 +33,7 @@ #include #include #include +#include #include #include #include @@ -95,6 +96,7 @@ enum xen_irq_type { struct irq_info { struct list_head list; struct list_head eoi_list; + struct rcu_work rwork; short refcnt; u8 spurious_cnt; u8 is_accounted; @@ -144,23 +146,13 @@ const struct evtchn_ops *evtchn_ops; */ static DEFINE_MUTEX(irq_mapping_update_lock); -/* - * Lock protecting event handling loop against removing event channels. - * Adding of event channels is no issue as the associated IRQ becomes active - * only after everything is setup (before request_[threaded_]irq() the handler - * can't be entered for an event, as the event channel will be unmasked only - * then). - */ -static DEFINE_RWLOCK(evtchn_rwlock); - /* * Lock hierarchy: * * irq_mapping_update_lock - * evtchn_rwlock - * IRQ-desc lock - * percpu eoi_list_lock - * irq_info->lock + * IRQ-desc lock + * percpu eoi_list_lock + * irq_info->lock */ static LIST_HEAD(xen_irq_list_head); @@ -304,6 +296,22 @@ static void channels_on_cpu_inc(struct irq_info *info) info->is_accounted = 1; } +static void delayed_free_irq(struct work_struct *work) +{ + struct irq_info *info = container_of(to_rcu_work(work), struct irq_info, + rwork); + unsigned int irq = info->irq; + + /* Remove the info pointer only now, with no potential users left. */ + set_info_for_irq(irq, NULL); + + kfree(info); + + /* Legacy IRQ descriptors are managed by the arch. */ + if (irq >= nr_legacy_irqs()) + irq_free_desc(irq); +} + /* Constructors for packed IRQ information. */ static int xen_irq_info_common_setup(struct irq_info *info, unsigned irq, @@ -591,7 +599,9 @@ static void lateeoi_list_add(struct irq_info *info) spin_lock_irqsave(&eoi->eoi_list_lock, flags); - if (list_empty(&eoi->eoi_list)) { + elem = list_first_entry_or_null(&eoi->eoi_list, struct irq_info, + eoi_list); + if (!elem || info->eoi_time < elem->eoi_time) { list_add(&info->eoi_list, &eoi->eoi_list); mod_delayed_work_on(info->eoi_cpu, system_wq, &eoi->delayed, delay); @@ -666,33 +676,36 @@ static void xen_irq_lateeoi_worker(struct work_struct *work) eoi = container_of(to_delayed_work(work), struct lateeoi_work, delayed); - read_lock_irqsave(&evtchn_rwlock, flags); + rcu_read_lock(); while (true) { - spin_lock(&eoi->eoi_list_lock); + spin_lock_irqsave(&eoi->eoi_list_lock, flags); info = list_first_entry_or_null(&eoi->eoi_list, struct irq_info, eoi_list); - if (info == NULL || now < info->eoi_time) { - spin_unlock(&eoi->eoi_list_lock); + if (info == NULL) + break; + + if (now < info->eoi_time) { + mod_delayed_work_on(info->eoi_cpu, system_wq, + &eoi->delayed, + info->eoi_time - now); break; } list_del_init(&info->eoi_list); - spin_unlock(&eoi->eoi_list_lock); + spin_unlock_irqrestore(&eoi->eoi_list_lock, flags); info->eoi_time = 0; xen_irq_lateeoi_locked(info, false); } - if (info) - mod_delayed_work_on(info->eoi_cpu, system_wq, - &eoi->delayed, info->eoi_time - now); + spin_unlock_irqrestore(&eoi->eoi_list_lock, flags); - read_unlock_irqrestore(&evtchn_rwlock, flags); + rcu_read_unlock(); } static void xen_cpu_init_eoi(unsigned int cpu) @@ -707,16 +720,15 @@ static void xen_cpu_init_eoi(unsigned int cpu) void xen_irq_lateeoi(unsigned int irq, unsigned int eoi_flags) { struct irq_info *info; - unsigned long flags; - read_lock_irqsave(&evtchn_rwlock, flags); + rcu_read_lock(); info = info_for_irq(irq); if (info) xen_irq_lateeoi_locked(info, eoi_flags & XEN_EOI_FLAG_SPURIOUS); - read_unlock_irqrestore(&evtchn_rwlock, flags); + rcu_read_unlock(); } EXPORT_SYMBOL_GPL(xen_irq_lateeoi); @@ -730,6 +742,7 @@ static void xen_irq_init(unsigned irq) info->type = IRQT_UNBOUND; info->refcnt = -1; + INIT_RCU_WORK(&info->rwork, delayed_free_irq); set_info_for_irq(irq, info); /* @@ -787,31 +800,18 @@ static int __must_check xen_allocate_irq_gsi(unsigned gsi) static void xen_free_irq(unsigned irq) { struct irq_info *info = info_for_irq(irq); - unsigned long flags; if (WARN_ON(!info)) return; - write_lock_irqsave(&evtchn_rwlock, flags); - if (!list_empty(&info->eoi_list)) lateeoi_list_del(info); list_del(&info->list); - set_info_for_irq(irq, NULL); - WARN_ON(info->refcnt > 0); - write_unlock_irqrestore(&evtchn_rwlock, flags); - - kfree(info); - - /* Legacy IRQ descriptors are managed by the arch. */ - if (irq < nr_legacy_irqs()) - return; - - irq_free_desc(irq); + queue_rcu_work(system_wq, &info->rwork); } static void xen_evtchn_close(evtchn_port_t port) @@ -1715,7 +1715,14 @@ static void __xen_evtchn_do_upcall(void) int cpu = smp_processor_id(); struct evtchn_loop_ctrl ctrl = { 0 }; - read_lock(&evtchn_rwlock); + /* + * When closing an event channel the associated IRQ must not be freed + * until all cpus have left the event handling loop. This is ensured + * by taking the rcu_read_lock() while handling events, as freeing of + * the IRQ is handled via queue_rcu_work() _after_ closing the event + * channel. + */ + rcu_read_lock(); do { vcpu_info->evtchn_upcall_pending = 0; @@ -1728,7 +1735,7 @@ static void __xen_evtchn_do_upcall(void) } while (vcpu_info->evtchn_upcall_pending); - read_unlock(&evtchn_rwlock); + rcu_read_unlock(); /* * Increment irq_epoch only now to defer EOIs only for diff --git a/drivers/xen/swiotlb-xen.c b/drivers/xen/swiotlb-xen.c index cbdff89799807..86bcf329ebfbf 100644 --- a/drivers/xen/swiotlb-xen.c +++ b/drivers/xen/swiotlb-xen.c @@ -564,4 +564,5 @@ const struct dma_map_ops xen_swiotlb_dma_ops = { .get_sgtable = dma_common_get_sgtable, .alloc_pages = dma_common_alloc_pages, .free_pages = dma_common_free_pages, + .max_mapping_size = swiotlb_max_mapping_size, }; diff --git a/drivers/xen/xen-pciback/conf_space.c b/drivers/xen/xen-pciback/conf_space.c index 059de92aea7d0..d47eee6c51435 100644 --- a/drivers/xen/xen-pciback/conf_space.c +++ b/drivers/xen/xen-pciback/conf_space.c @@ -288,12 +288,6 @@ int xen_pcibk_get_interrupt_type(struct pci_dev *dev) u16 val; int ret = 0; - err = pci_read_config_word(dev, PCI_COMMAND, &val); - if (err) - return err; - if (!(val & PCI_COMMAND_INTX_DISABLE)) - ret |= INTERRUPT_TYPE_INTX; - /* * Do not trust dev->msi(x)_enabled here, as enabling could be done * bypassing the pci_*msi* functions, by the qemu. @@ -316,6 +310,19 @@ int xen_pcibk_get_interrupt_type(struct pci_dev *dev) if (val & PCI_MSIX_FLAGS_ENABLE) ret |= INTERRUPT_TYPE_MSIX; } + + /* + * PCIe spec says device cannot use INTx if MSI/MSI-X is enabled, + * so check for INTx only when both are disabled. + */ + if (!ret) { + err = pci_read_config_word(dev, PCI_COMMAND, &val); + if (err) + return err; + if (!(val & PCI_COMMAND_INTX_DISABLE)) + ret |= INTERRUPT_TYPE_INTX; + } + return ret ?: INTERRUPT_TYPE_NONE; } diff --git a/drivers/xen/xen-pciback/conf_space_capability.c b/drivers/xen/xen-pciback/conf_space_capability.c index 097316a741268..1948a9700c8fa 100644 --- a/drivers/xen/xen-pciback/conf_space_capability.c +++ b/drivers/xen/xen-pciback/conf_space_capability.c @@ -236,10 +236,16 @@ static int msi_msix_flags_write(struct pci_dev *dev, int offset, u16 new_value, return PCIBIOS_SET_FAILED; if (new_value & field_config->enable_bit) { - /* don't allow enabling together with other interrupt types */ + /* + * Don't allow enabling together with other interrupt type, but do + * allow enabling MSI(-X) while INTx is still active to please Linuxes + * MSI(-X) startup sequence. It is safe to do, as according to PCI + * spec, device with enabled MSI(-X) shouldn't use INTx. + */ int int_type = xen_pcibk_get_interrupt_type(dev); if (int_type == INTERRUPT_TYPE_NONE || + int_type == INTERRUPT_TYPE_INTX || int_type == field_config->int_type) goto write; return PCIBIOS_SET_FAILED; diff --git a/drivers/xen/xen-pciback/conf_space_header.c b/drivers/xen/xen-pciback/conf_space_header.c index ac45cdc38e859..fcaa050d692d2 100644 --- a/drivers/xen/xen-pciback/conf_space_header.c +++ b/drivers/xen/xen-pciback/conf_space_header.c @@ -104,24 +104,9 @@ static int command_write(struct pci_dev *dev, int offset, u16 value, void *data) pci_clear_mwi(dev); } - if (dev_data && dev_data->allow_interrupt_control) { - if ((cmd->val ^ value) & PCI_COMMAND_INTX_DISABLE) { - if (value & PCI_COMMAND_INTX_DISABLE) { - pci_intx(dev, 0); - } else { - /* Do not allow enabling INTx together with MSI or MSI-X. */ - switch (xen_pcibk_get_interrupt_type(dev)) { - case INTERRUPT_TYPE_NONE: - pci_intx(dev, 1); - break; - case INTERRUPT_TYPE_INTX: - break; - default: - return PCIBIOS_SET_FAILED; - } - } - } - } + if (dev_data && dev_data->allow_interrupt_control && + ((cmd->val ^ value) & PCI_COMMAND_INTX_DISABLE)) + pci_intx(dev, !(value & PCI_COMMAND_INTX_DISABLE)); cmd->val = value; diff --git a/fs/9p/xattr.c b/fs/9p/xattr.c index ee331845e2c7a..31799ac10e33a 100644 --- a/fs/9p/xattr.c +++ b/fs/9p/xattr.c @@ -73,7 +73,7 @@ ssize_t v9fs_xattr_get(struct dentry *dentry, const char *name, struct p9_fid *fid; int ret; - p9_debug(P9_DEBUG_VFS, "name = %s value_len = %zu\n", + p9_debug(P9_DEBUG_VFS, "name = '%s' value_len = %zu\n", name, buffer_size); fid = v9fs_fid_lookup(dentry); if (IS_ERR(fid)) @@ -144,7 +144,8 @@ int v9fs_fid_xattr_set(struct p9_fid *fid, const char *name, ssize_t v9fs_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size) { - return v9fs_xattr_get(dentry, NULL, buffer, buffer_size); + /* Txattrwalk with an empty string lists xattrs instead */ + return v9fs_xattr_get(dentry, "", buffer, buffer_size); } static int v9fs_xattr_handler_get(const struct xattr_handler *handler, diff --git a/fs/afs/dynroot.c b/fs/afs/dynroot.c index db832cc931c87..b35c6081dbfe1 100644 --- a/fs/afs/dynroot.c +++ b/fs/afs/dynroot.c @@ -131,8 +131,8 @@ static int afs_probe_cell_name(struct dentry *dentry) ret = dns_query(net->net, "afsdb", name, len, "srv=1", NULL, NULL, false); - if (ret == -ENODATA) - ret = -EDESTADDRREQ; + if (ret == -ENODATA || ret == -ENOKEY) + ret = -ENOENT; return ret; } diff --git a/fs/afs/internal.h b/fs/afs/internal.h index 567e61b553f56..183200c6ce20e 100644 --- a/fs/afs/internal.h +++ b/fs/afs/internal.h @@ -556,6 +556,7 @@ struct afs_server_entry { }; struct afs_server_list { + struct rcu_head rcu; afs_volid_t vids[AFS_MAXTYPES]; /* Volume IDs */ refcount_t usage; unsigned char nr_servers; diff --git a/fs/afs/server_list.c b/fs/afs/server_list.c index ed9056703505f..b59896b1de0af 100644 --- a/fs/afs/server_list.c +++ b/fs/afs/server_list.c @@ -17,7 +17,7 @@ void afs_put_serverlist(struct afs_net *net, struct afs_server_list *slist) for (i = 0; i < slist->nr_servers; i++) afs_unuse_server(net, slist->servers[i].server, afs_server_trace_put_slist); - kfree(slist); + kfree_rcu(slist, rcu); } } diff --git a/fs/afs/super.c b/fs/afs/super.c index 34c68724c98be..910e73bb5a089 100644 --- a/fs/afs/super.c +++ b/fs/afs/super.c @@ -406,6 +406,8 @@ static int afs_validate_fc(struct fs_context *fc) return PTR_ERR(volume); ctx->volume = volume; + if (volume->type != AFSVL_RWVOL) + ctx->flock_mode = afs_flock_mode_local; } return 0; diff --git a/fs/afs/vl_rotate.c b/fs/afs/vl_rotate.c index 488e58490b16e..eb415ce563600 100644 --- a/fs/afs/vl_rotate.c +++ b/fs/afs/vl_rotate.c @@ -58,6 +58,12 @@ static bool afs_start_vl_iteration(struct afs_vl_cursor *vc) } /* Status load is ordered after lookup counter load */ + if (cell->dns_status == DNS_LOOKUP_GOT_NOT_FOUND) { + pr_warn("No record of cell %s\n", cell->name); + vc->error = -ENOENT; + return false; + } + if (cell->dns_source == DNS_RECORD_UNAVAILABLE) { vc->error = -EDESTADDRREQ; return false; @@ -285,6 +291,7 @@ bool afs_select_vlserver(struct afs_vl_cursor *vc) */ static void afs_vl_dump_edestaddrreq(const struct afs_vl_cursor *vc) { + struct afs_cell *cell = vc->cell; static int count; int i; @@ -294,6 +301,9 @@ static void afs_vl_dump_edestaddrreq(const struct afs_vl_cursor *vc) rcu_read_lock(); pr_notice("EDESTADDR occurred\n"); + pr_notice("CELL: %s err=%d\n", cell->name, cell->error); + pr_notice("DNS: src=%u st=%u lc=%x\n", + cell->dns_source, cell->dns_status, cell->dns_lookup_count); pr_notice("VC: ut=%lx ix=%u ni=%hu fl=%hx err=%hd\n", vc->untried, vc->index, vc->nr_iterations, vc->flags, vc->error); diff --git a/fs/attr.c b/fs/attr.c index 28e953e86960f..786d358dd6994 100644 --- a/fs/attr.c +++ b/fs/attr.c @@ -402,9 +402,25 @@ int notify_change(struct user_namespace *mnt_userns, struct dentry *dentry, return error; if ((ia_valid & ATTR_MODE)) { - umode_t amode = attr->ia_mode; + /* + * Don't allow changing the mode of symlinks: + * + * (1) The vfs doesn't take the mode of symlinks into account + * during permission checking. + * (2) This has never worked correctly. Most major filesystems + * did return EOPNOTSUPP due to interactions with POSIX ACLs + * but did still updated the mode of the symlink. + * This inconsistency led system call wrapper providers such + * as libc to block changing the mode of symlinks with + * EOPNOTSUPP already. + * (3) To even do this in the first place one would have to use + * specific file descriptors and quite some effort. + */ + if (S_ISLNK(inode->i_mode)) + return -EOPNOTSUPP; + /* Flag setting protected by i_mutex */ - if (is_sxid(amode)) + if (is_sxid(attr->ia_mode)) inode->i_flags &= ~S_NOSEC; } diff --git a/fs/autofs/waitq.c b/fs/autofs/waitq.c index 54c1f8b8b0757..efdc76732faed 100644 --- a/fs/autofs/waitq.c +++ b/fs/autofs/waitq.c @@ -32,8 +32,9 @@ void autofs_catatonic_mode(struct autofs_sb_info *sbi) wq->status = -ENOENT; /* Magic is gone - report failure */ kfree(wq->name.name - wq->offset); wq->name.name = NULL; - wq->wait_ctr--; wake_up_interruptible(&wq->queue); + if (!--wq->wait_ctr) + kfree(wq); wq = nwq; } fput(sbi->pipe); /* Close the pipe */ diff --git a/fs/binfmt_elf_fdpic.c b/fs/binfmt_elf_fdpic.c index c316931fc99c5..f51f6e4d1a322 100644 --- a/fs/binfmt_elf_fdpic.c +++ b/fs/binfmt_elf_fdpic.c @@ -345,10 +345,9 @@ static int load_elf_fdpic_binary(struct linux_binprm *bprm) /* there's now no turning back... the old userspace image is dead, * defunct, deceased, etc. */ + SET_PERSONALITY(exec_params.hdr); if (elf_check_fdpic(&exec_params.hdr)) - set_personality(PER_LINUX_FDPIC); - else - set_personality(PER_LINUX); + current->personality |= PER_LINUX_FDPIC; if (elf_read_implies_exec(&exec_params.hdr, executable_stack)) current->personality |= READ_IMPLIES_EXEC; diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c index a648dff2becec..8b53313bf3b2c 100644 --- a/fs/btrfs/ctree.c +++ b/fs/btrfs/ctree.c @@ -545,18 +545,30 @@ noinline int btrfs_cow_block(struct btrfs_trans_handle *trans, u64 search_start; int ret; - if (test_bit(BTRFS_ROOT_DELETING, &root->state)) - btrfs_err(fs_info, - "COW'ing blocks on a fs root that's being dropped"); - - if (trans->transaction != fs_info->running_transaction) - WARN(1, KERN_CRIT "trans %llu running %llu\n", - trans->transid, - fs_info->running_transaction->transid); + if (unlikely(test_bit(BTRFS_ROOT_DELETING, &root->state))) { + btrfs_abort_transaction(trans, -EUCLEAN); + btrfs_crit(fs_info, + "attempt to COW block %llu on root %llu that is being deleted", + buf->start, btrfs_root_id(root)); + return -EUCLEAN; + } - if (trans->transid != fs_info->generation) - WARN(1, KERN_CRIT "trans %llu running %llu\n", - trans->transid, fs_info->generation); + /* + * COWing must happen through a running transaction, which always + * matches the current fs generation (it's a transaction with a state + * less than TRANS_STATE_UNBLOCKED). If it doesn't, then turn the fs + * into error state to prevent the commit of any transaction. + */ + if (unlikely(trans->transaction != fs_info->running_transaction || + trans->transid != fs_info->generation)) { + btrfs_abort_transaction(trans, -EUCLEAN); + btrfs_crit(fs_info, +"unexpected transaction when attempting to COW block %llu on root %llu, transaction %llu running transaction %llu fs generation %llu", + buf->start, btrfs_root_id(root), trans->transid, + fs_info->running_transaction->transid, + fs_info->generation); + return -EUCLEAN; + } if (!should_cow_block(trans, root, buf)) { *cow_ret = buf; @@ -668,8 +680,22 @@ int btrfs_realloc_node(struct btrfs_trans_handle *trans, int progress_passed = 0; struct btrfs_disk_key disk_key; - WARN_ON(trans->transaction != fs_info->running_transaction); - WARN_ON(trans->transid != fs_info->generation); + /* + * COWing must happen through a running transaction, which always + * matches the current fs generation (it's a transaction with a state + * less than TRANS_STATE_UNBLOCKED). If it doesn't, then turn the fs + * into error state to prevent the commit of any transaction. + */ + if (unlikely(trans->transaction != fs_info->running_transaction || + trans->transid != fs_info->generation)) { + btrfs_abort_transaction(trans, -EUCLEAN); + btrfs_crit(fs_info, +"unexpected transaction when attempting to reallocate parent %llu for root %llu, transaction %llu running transaction %llu fs generation %llu", + parent->start, btrfs_root_id(root), trans->transid, + fs_info->running_transaction->transid, + fs_info->generation); + return -EUCLEAN; + } parent_nritems = btrfs_header_nritems(parent); blocksize = fs_info->nodesize; diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index 02d3ee6c7d9b0..1467bf439cb48 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h @@ -536,8 +536,6 @@ struct btrfs_swapfile_pin { int bg_extent_count; }; -bool btrfs_pinned_by_swapfile(struct btrfs_fs_info *fs_info, void *ptr); - enum { BTRFS_FS_BARRIER, BTRFS_FS_CLOSING_START, diff --git a/fs/btrfs/delalloc-space.c b/fs/btrfs/delalloc-space.c index b934429c24350..4feddabe40a4a 100644 --- a/fs/btrfs/delalloc-space.c +++ b/fs/btrfs/delalloc-space.c @@ -312,9 +312,6 @@ int btrfs_delalloc_reserve_metadata(struct btrfs_inode *inode, u64 num_bytes) } else { if (current->journal_info) flush = BTRFS_RESERVE_FLUSH_LIMIT; - - if (btrfs_transaction_in_commit(fs_info)) - schedule_timeout(1); } num_bytes = ALIGN(num_bytes, fs_info->sectorsize); diff --git a/fs/btrfs/delayed-inode.c b/fs/btrfs/delayed-inode.c index 1e08eb2b27f0c..fd951aeaeac5a 100644 --- a/fs/btrfs/delayed-inode.c +++ b/fs/btrfs/delayed-inode.c @@ -1083,20 +1083,33 @@ static int __btrfs_run_delayed_items(struct btrfs_trans_handle *trans, int nr) ret = __btrfs_commit_inode_delayed_items(trans, path, curr_node); if (ret) { - btrfs_release_delayed_node(curr_node); - curr_node = NULL; btrfs_abort_transaction(trans, ret); break; } prev_node = curr_node; curr_node = btrfs_next_delayed_node(curr_node); + /* + * See the comment below about releasing path before releasing + * node. If the commit of delayed items was successful the path + * should always be released, but in case of an error, it may + * point to locked extent buffers (a leaf at the very least). + */ + ASSERT(path->nodes[0] == NULL); btrfs_release_delayed_node(prev_node); } + /* + * Release the path to avoid a potential deadlock and lockdep splat when + * releasing the delayed node, as that requires taking the delayed node's + * mutex. If another task starts running delayed items before we take + * the mutex, it will first lock the mutex and then it may try to lock + * the same btree path (leaf). + */ + btrfs_free_path(path); + if (curr_node) btrfs_release_delayed_node(curr_node); - btrfs_free_path(path); trans->block_rsv = block_rsv; return ret; @@ -1388,9 +1401,10 @@ int btrfs_insert_delayed_dir_index(struct btrfs_trans_handle *trans, ret = __btrfs_add_delayed_insertion_item(delayed_node, delayed_item); if (unlikely(ret)) { btrfs_err(trans->fs_info, - "err add delayed dir index item(name: %.*s) into the insertion tree of the delayed node(root id: %llu, inode id: %llu, errno: %d)", - name_len, name, delayed_node->root->root_key.objectid, - delayed_node->inode_id, ret); +"error adding delayed dir index item, name: %.*s, index: %llu, root: %llu, dir: %llu, dir->index_cnt: %llu, delayed_node->index_cnt: %llu, error: %d", + name_len, name, index, btrfs_root_id(delayed_node->root), + delayed_node->inode_id, dir->index_cnt, + delayed_node->index_cnt, ret); BUG(); } mutex_unlock(&delayed_node->mutex); diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index 4e35c6fb7be75..f0654fe80b346 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c @@ -2598,21 +2598,18 @@ int btrfs_validate_super(struct btrfs_fs_info *fs_info, ret = -EINVAL; } - if (memcmp(fs_info->fs_devices->fsid, fs_info->super_copy->fsid, - BTRFS_FSID_SIZE)) { + if (memcmp(fs_info->fs_devices->fsid, sb->fsid, BTRFS_FSID_SIZE) != 0) { btrfs_err(fs_info, "superblock fsid doesn't match fsid of fs_devices: %pU != %pU", - fs_info->super_copy->fsid, fs_info->fs_devices->fsid); + sb->fsid, fs_info->fs_devices->fsid); ret = -EINVAL; } - if (btrfs_fs_incompat(fs_info, METADATA_UUID) && - memcmp(fs_info->fs_devices->metadata_uuid, - fs_info->super_copy->metadata_uuid, BTRFS_FSID_SIZE)) { + if (memcmp(fs_info->fs_devices->metadata_uuid, btrfs_sb_fsid_ptr(sb), + BTRFS_FSID_SIZE) != 0) { btrfs_err(fs_info, "superblock metadata_uuid doesn't match metadata uuid of fs_devices: %pU != %pU", - fs_info->super_copy->metadata_uuid, - fs_info->fs_devices->metadata_uuid); + btrfs_sb_fsid_ptr(sb), fs_info->fs_devices->metadata_uuid); ret = -EINVAL; } diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c index 597cc2607481c..a19bdb3597405 100644 --- a/fs/btrfs/extent-tree.c +++ b/fs/btrfs/extent-tree.c @@ -860,6 +860,11 @@ int lookup_inline_extent_backref(struct btrfs_trans_handle *trans, err = -ENOENT; goto out; } else if (WARN_ON(ret)) { + btrfs_print_leaf(path->nodes[0]); + btrfs_err(fs_info, +"extent item not found for insert, bytenr %llu num_bytes %llu parent %llu root_objectid %llu owner %llu offset %llu", + bytenr, num_bytes, parent, root_objectid, owner, + offset); err = -EIO; goto out; } @@ -1669,12 +1674,12 @@ static int run_delayed_tree_ref(struct btrfs_trans_handle *trans, parent = ref->parent; ref_root = ref->root; - if (node->ref_mod != 1) { + if (unlikely(node->ref_mod != 1)) { btrfs_err(trans->fs_info, - "btree block(%llu) has %d references rather than 1: action %d ref_root %llu parent %llu", + "btree block %llu has %d references rather than 1: action %d ref_root %llu parent %llu", node->bytenr, node->ref_mod, node->action, ref_root, parent); - return -EIO; + return -EUCLEAN; } if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) { BUG_ON(!extent_op || !extent_op->update_flags); diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c index f9f6dfbc86bcd..346fc46d019bf 100644 --- a/fs/btrfs/extent_io.c +++ b/fs/btrfs/extent_io.c @@ -6722,8 +6722,14 @@ void read_extent_buffer(const struct extent_buffer *eb, void *dstv, char *dst = (char *)dstv; unsigned long i = get_eb_page_index(start); - if (check_eb_range(eb, start, len)) + if (check_eb_range(eb, start, len)) { + /* + * Invalid range hit, reset the memory, so callers won't get + * some random garbage for their uninitialzed memory. + */ + memset(dstv, 0, len); return; + } offset = get_eb_offset_in_page(eb, start); diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index f8a01964a2169..95af29634e55e 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -3226,6 +3226,13 @@ static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent) btrfs_free_reserved_extent(fs_info, ordered_extent->disk_bytenr, ordered_extent->disk_num_bytes, 1); + /* + * Actually free the qgroup rsv which was released when + * the ordered extent was created. + */ + btrfs_qgroup_free_refroot(fs_info, inode->root->root_key.objectid, + ordered_extent->qgroup_rsv, + BTRFS_QGROUP_RSV_DATA); } } diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c index c9b3d99171b26..f93d15833f9de 100644 --- a/fs/btrfs/ioctl.c +++ b/fs/btrfs/ioctl.c @@ -2094,7 +2094,7 @@ static noinline int key_in_sk(struct btrfs_key *key, static noinline int copy_to_sk(struct btrfs_path *path, struct btrfs_key *key, struct btrfs_ioctl_search_key *sk, - size_t *buf_size, + u64 *buf_size, char __user *ubuf, unsigned long *sk_offset, int *num_found) @@ -2226,7 +2226,7 @@ static noinline int copy_to_sk(struct btrfs_path *path, static noinline int search_ioctl(struct inode *inode, struct btrfs_ioctl_search_key *sk, - size_t *buf_size, + u64 *buf_size, char __user *ubuf) { struct btrfs_fs_info *info = btrfs_sb(inode->i_sb); @@ -2295,7 +2295,7 @@ static noinline int btrfs_ioctl_tree_search(struct file *file, struct btrfs_ioctl_search_key sk; struct inode *inode; int ret; - size_t buf_size; + u64 buf_size; if (!capable(CAP_SYS_ADMIN)) return -EPERM; @@ -2329,8 +2329,8 @@ static noinline int btrfs_ioctl_tree_search_v2(struct file *file, struct btrfs_ioctl_search_args_v2 args; struct inode *inode; int ret; - size_t buf_size; - const size_t buf_limit = SZ_16M; + u64 buf_size; + const u64 buf_limit = SZ_16M; if (!capable(CAP_SYS_ADMIN)) return -EPERM; @@ -2526,6 +2526,13 @@ static int btrfs_search_path_in_tree_user(struct user_namespace *mnt_userns, goto out_put; } + /* + * We don't need the path anymore, so release it and + * avoid deadlocks and lockdep warnings in case + * btrfs_iget() needs to lookup the inode from its root + * btree and lock the same leaf. + */ + btrfs_release_path(path); temp_inode = btrfs_iget(sb, key2.objectid, root); if (IS_ERR(temp_inode)) { ret = PTR_ERR(temp_inode); @@ -2546,7 +2553,6 @@ static int btrfs_search_path_in_tree_user(struct user_namespace *mnt_userns, goto out_put; } - btrfs_release_path(path); key.objectid = key.offset; key.offset = (u64)-1; dirid = key.objectid; @@ -3525,7 +3531,7 @@ static void get_block_group_info(struct list_head *groups_list, static long btrfs_ioctl_space_info(struct btrfs_fs_info *fs_info, void __user *arg) { - struct btrfs_ioctl_space_args space_args; + struct btrfs_ioctl_space_args space_args = { 0 }; struct btrfs_ioctl_space_info space; struct btrfs_ioctl_space_info *dest; struct btrfs_ioctl_space_info *dest_orig; @@ -4861,7 +4867,7 @@ static int _btrfs_ioctl_send(struct file *file, void __user *argp, bool compat) if (compat) { #if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT) - struct btrfs_ioctl_send_args_32 args32; + struct btrfs_ioctl_send_args_32 args32 = { 0 }; ret = copy_from_user(&args32, argp, sizeof(args32)); if (ret) diff --git a/fs/btrfs/ref-verify.c b/fs/btrfs/ref-verify.c index d2062d5f71dd3..50a5a5cfe38f4 100644 --- a/fs/btrfs/ref-verify.c +++ b/fs/btrfs/ref-verify.c @@ -788,6 +788,7 @@ int btrfs_ref_tree_mod(struct btrfs_fs_info *fs_info, dump_ref_action(fs_info, ra); kfree(ref); kfree(ra); + kfree(re); goto out_unlock; } else if (be->num_refs == 0) { btrfs_err(fs_info, @@ -797,6 +798,7 @@ int btrfs_ref_tree_mod(struct btrfs_fs_info *fs_info, dump_ref_action(fs_info, ra); kfree(ref); kfree(ra); + kfree(re); goto out_unlock; } diff --git a/fs/btrfs/send.c b/fs/btrfs/send.c index 692ae2e2f8cc5..c9fd598b03250 100644 --- a/fs/btrfs/send.c +++ b/fs/btrfs/send.c @@ -7576,7 +7576,7 @@ long btrfs_ioctl_send(struct file *mnt_file, struct btrfs_ioctl_send_args *arg) sctx->flags = arg->flags; sctx->send_filp = fget(arg->send_fd); - if (!sctx->send_filp) { + if (!sctx->send_filp || !(sctx->send_filp->f_mode & FMODE_WRITE)) { ret = -EBADF; goto out; } diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index ea23b83fc96be..2fd0ee0e6e931 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c @@ -2364,7 +2364,7 @@ static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf) * calculated f_bavail. */ if (!mixed && block_rsv->space_info->full && - total_free_meta - thresh < block_rsv->size) + (total_free_meta < thresh || total_free_meta - thresh < block_rsv->size)) buf->f_bavail = 0; buf->f_type = BTRFS_SUPER_MAGIC; diff --git a/fs/btrfs/transaction.c b/fs/btrfs/transaction.c index daaed37bba9eb..99cdd1d6a4bf8 100644 --- a/fs/btrfs/transaction.c +++ b/fs/btrfs/transaction.c @@ -311,10 +311,11 @@ static noinline int join_transaction(struct btrfs_fs_info *fs_info, spin_unlock(&fs_info->trans_lock); /* - * If we are ATTACH, we just want to catch the current transaction, - * and commit it. If there is no transaction, just return ENOENT. + * If we are ATTACH or TRANS_JOIN_NOSTART, we just want to catch the + * current transaction, and commit it. If there is no transaction, just + * return ENOENT. */ - if (type == TRANS_ATTACH) + if (type == TRANS_ATTACH || type == TRANS_JOIN_NOSTART) return -ENOENT; /* diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c index 7c0c6fc0c536b..dcf0dd2093f58 100644 --- a/fs/btrfs/tree-log.c +++ b/fs/btrfs/tree-log.c @@ -4446,7 +4446,7 @@ static int btrfs_log_prealloc_extents(struct btrfs_trans_handle *trans, struct extent_buffer *leaf; int slot; int ins_nr = 0; - int start_slot; + int start_slot = 0; int ret; if (!(inode->flags & BTRFS_INODE_PREALLOC)) diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index 0e9236a745b81..cc18ba50a61cf 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c @@ -709,6 +709,14 @@ static int btrfs_open_one_device(struct btrfs_fs_devices *fs_devices, return -EINVAL; } +u8 *btrfs_sb_fsid_ptr(struct btrfs_super_block *sb) +{ + bool has_metadata_uuid = (btrfs_super_incompat_flags(sb) & + BTRFS_FEATURE_INCOMPAT_METADATA_UUID); + + return has_metadata_uuid ? sb->metadata_uuid : sb->fsid; +} + /* * Handle scanned device having its CHANGING_FSID_V2 flag set and the fs_devices * being created with a disk that has already completed its fsid change. Such @@ -3056,15 +3064,16 @@ struct extent_map *btrfs_get_chunk_map(struct btrfs_fs_info *fs_info, read_unlock(&em_tree->lock); if (!em) { - btrfs_crit(fs_info, "unable to find logical %llu length %llu", + btrfs_crit(fs_info, + "unable to find chunk map for logical %llu length %llu", logical, length); return ERR_PTR(-EINVAL); } - if (em->start > logical || em->start + em->len < logical) { + if (em->start > logical || em->start + em->len <= logical) { btrfs_crit(fs_info, - "found a bad mapping, wanted %llu-%llu, found %llu-%llu", - logical, length, em->start, em->start + em->len); + "found a bad chunk map, wanted %llu-%llu, found %llu-%llu", + logical, logical + length, em->start, em->start + em->len); free_extent_map(em); return ERR_PTR(-EINVAL); } diff --git a/fs/btrfs/volumes.h b/fs/btrfs/volumes.h index b49fa784e5ba3..eb91d6eb78ceb 100644 --- a/fs/btrfs/volumes.h +++ b/fs/btrfs/volumes.h @@ -622,4 +622,7 @@ const char *btrfs_bg_type_to_raid_name(u64 flags); int btrfs_verify_dev_extents(struct btrfs_fs_info *fs_info); int btrfs_repair_one_zone(struct btrfs_fs_info *fs_info, u64 logical); +bool btrfs_pinned_by_swapfile(struct btrfs_fs_info *fs_info, void *ptr); +u8 *btrfs_sb_fsid_ptr(struct btrfs_super_block *sb); + #endif diff --git a/fs/ceph/file.c b/fs/ceph/file.c index cb87714fe8861..f3fba3d27efa6 100644 --- a/fs/ceph/file.c +++ b/fs/ceph/file.c @@ -2436,7 +2436,7 @@ static ssize_t __ceph_copy_file_range(struct file *src_file, loff_t src_off, ret = do_splice_direct(src_file, &src_off, dst_file, &dst_off, src_objlen, flags); /* Abort on short copies or on error */ - if (ret < src_objlen) { + if (ret < (long)src_objlen) { dout("Failed partial copy (%zd)\n", ret); goto out; } diff --git a/fs/ceph/inode.c b/fs/ceph/inode.c index 42e449d3f18b8..28281c83cf5f6 100644 --- a/fs/ceph/inode.c +++ b/fs/ceph/inode.c @@ -647,9 +647,7 @@ int ceph_fill_file_size(struct inode *inode, int issued, ci->i_truncate_seq = truncate_seq; /* the MDS should have revoked these caps */ - WARN_ON_ONCE(issued & (CEPH_CAP_FILE_EXCL | - CEPH_CAP_FILE_RD | - CEPH_CAP_FILE_WR | + WARN_ON_ONCE(issued & (CEPH_CAP_FILE_RD | CEPH_CAP_FILE_LAZYIO)); /* * If we hold relevant caps, or in the case where we're diff --git a/fs/cifs/Kconfig b/fs/cifs/Kconfig index 3b7e3b9e4fd2e..bbf63a9eb9276 100644 --- a/fs/cifs/Kconfig +++ b/fs/cifs/Kconfig @@ -19,39 +19,36 @@ config CIFS select ASN1 select OID_REGISTRY help - This is the client VFS module for the SMB3 family of NAS protocols, - (including support for the most recent, most secure dialect SMB3.1.1) - as well as for earlier dialects such as SMB2.1, SMB2 and the older - Common Internet File System (CIFS) protocol. CIFS was the successor - to the original dialect, the Server Message Block (SMB) protocol, the - native file sharing mechanism for most early PC operating systems. - - The SMB3 protocol is supported by most modern operating systems - and NAS appliances (e.g. Samba, Windows 10, Windows Server 2016, - MacOS) and even in the cloud (e.g. Microsoft Azure). - The older CIFS protocol was included in Windows NT4, 2000 and XP (and - later) as well by Samba (which provides excellent CIFS and SMB3 - server support for Linux and many other operating systems). Use of - dialects older than SMB2.1 is often discouraged on public networks. + This is the client VFS module for the SMB3 family of network file + protocols (including the most recent, most secure dialect SMB3.1.1). + This module also includes support for earlier dialects such as + SMB2.1, SMB2 and even the old Common Internet File System (CIFS) + protocol. CIFS was the successor to the original network filesystem + protocol, Server Message Block (SMB ie SMB1), the native file sharing + mechanism for most early PC operating systems. + + The SMB3.1.1 protocol is supported by most modern operating systems + and NAS appliances (e.g. Samba, Windows 11, Windows Server 2022, + MacOS) and even in the cloud (e.g. Microsoft Azure) and also by the + Linux kernel server, ksmbd. Support for the older CIFS protocol was + included in Windows NT4, 2000 and XP (and later). Use of dialects + older than SMB2.1 is often discouraged on public networks. This module also provides limited support for OS/2 and Windows ME and similar very old servers. - This module provides an advanced network file system client - for mounting to SMB3 (and CIFS) compliant servers. It includes - support for DFS (hierarchical name space), secure per-user - session establishment via Kerberos or NTLM or NTLMv2, RDMA - (smbdirect), advanced security features, per-share encryption, - directory leases, safe distributed caching (oplock), optional packet - signing, Unicode and other internationalization improvements. + This module provides an advanced network file system client for + mounting to SMB3 (and CIFS) compliant servers. It includes support + for DFS (hierarchical name space), secure per-user session + establishment via Kerberos or NTLMv2, RDMA (smbdirect), advanced + security features, per-share encryption, packet-signing, snapshots, + directory leases, safe distributed caching (leases), multichannel, + Unicode and other internationalization improvements. In general, the default dialects, SMB3 and later, enable better performance, security and features, than would be possible with CIFS. - Note that when mounting to Samba, due to the CIFS POSIX extensions, - CIFS mounts can provide slightly better POSIX compatibility - than SMB3 mounts. SMB2/SMB3 mount options are also - slightly simpler (compared to CIFS) due to protocol improvements. - If you need to mount to Samba, Azure, Macs or Windows from this machine, say Y. + If you need to mount to Samba, Azure, ksmbd, Macs or Windows from this + machine, say Y. config CIFS_STATS2 bool "Extended statistics" @@ -111,12 +108,12 @@ config CIFS_POSIX depends on CIFS && CIFS_ALLOW_INSECURE_LEGACY && CIFS_XATTR help Enabling this option will cause the cifs client to attempt to - negotiate a newer dialect with servers, such as Samba 3.0.5 - or later, that optionally can handle more POSIX like (rather - than Windows like) file behavior. It also enables - support for POSIX ACLs (getfacl and setfacl) to servers - (such as Samba 3.10 and later) which can negotiate - CIFS POSIX ACL support. If unsure, say N. + negotiate a feature of the older cifs dialect with servers, such as + Samba 3.0.5 or later, that optionally can handle more POSIX like + (rather than Windows like) file behavior. It also enables support + for POSIX ACLs (getfacl and setfacl) to servers (such as Samba 3.10 + and later) which can negotiate CIFS POSIX ACL support. This config + option is not needed when mounting with SMB3.1.1. If unsure, say N. config CIFS_DEBUG bool "Enable CIFS debugging routines" @@ -178,6 +175,8 @@ config CIFS_NFSD_EXPORT help Allows NFS server to export a CIFS mounted share (nfsd over cifs) +if CIFS + config CIFS_SMB_DIRECT bool "SMB Direct support" depends on CIFS=m && INFINIBAND && INFINIBAND_ADDR_TRANS || CIFS=y && INFINIBAND=y && INFINIBAND_ADDR_TRANS=y @@ -201,3 +200,5 @@ config CIFS_ROOT Enables root file system support over SMB protocol. Most people say N here. + +endif diff --git a/fs/cifs/Makefile b/fs/cifs/Makefile index 87fcacdf3de73..9b507ffcbbc27 100644 --- a/fs/cifs/Makefile +++ b/fs/cifs/Makefile @@ -5,10 +5,10 @@ ccflags-y += -I$(src) # needed for trace events obj-$(CONFIG_CIFS) += cifs.o -cifs-y := trace.o cifsfs.o cifssmb.o cifs_debug.o connect.o dir.o file.o \ +cifs-y := trace.o cifsfs.o cifs_debug.o connect.o dir.o file.o \ inode.o link.o misc.o netmisc.o smbencrypt.o transport.o \ - cifs_unicode.o nterr.o cifsencrypt.o \ - readdir.o ioctl.o sess.o export.o smb1ops.o unc.o winucase.o \ + cached_dir.o cifs_unicode.o nterr.o cifsencrypt.o \ + readdir.o ioctl.o sess.o export.o unc.o winucase.o \ smb2ops.o smb2maperror.o smb2transport.o \ smb2misc.o smb2pdu.o smb2inode.o smb2file.o cifsacl.o fs_context.o \ dns_resolve.o cifs_spnego_negtokeninit.asn1.o asn1.o @@ -21,7 +21,7 @@ cifs-$(CONFIG_CIFS_XATTR) += xattr.o cifs-$(CONFIG_CIFS_UPCALL) += cifs_spnego.o -cifs-$(CONFIG_CIFS_DFS_UPCALL) += cifs_dfs_ref.o dfs_cache.o +cifs-$(CONFIG_CIFS_DFS_UPCALL) += cifs_dfs_ref.o dfs_cache.o dfs.o cifs-$(CONFIG_CIFS_SWN_UPCALL) += netlink.o cifs_swn.o @@ -30,3 +30,5 @@ cifs-$(CONFIG_CIFS_FSCACHE) += fscache.o cache.o cifs-$(CONFIG_CIFS_SMB_DIRECT) += smbdirect.o cifs-$(CONFIG_CIFS_ROOT) += cifsroot.o + +cifs-$(CONFIG_CIFS_ALLOW_INSECURE_LEGACY) += smb1ops.o cifssmb.o diff --git a/fs/cifs/cached_dir.c b/fs/cifs/cached_dir.c new file mode 100644 index 0000000000000..bfc964b36c72e --- /dev/null +++ b/fs/cifs/cached_dir.c @@ -0,0 +1,606 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Functions to handle the cached directory entries + * + * Copyright (c) 2022, Ronnie Sahlberg + */ + +#include +#include "cifsglob.h" +#include "cifsproto.h" +#include "cifs_debug.h" +#include "smb2proto.h" +#include "cached_dir.h" + +static struct cached_fid *init_cached_dir(const char *path); +static void free_cached_dir(struct cached_fid *cfid); +static void smb2_close_cached_fid(struct kref *ref); + +static struct cached_fid *find_or_create_cached_dir(struct cached_fids *cfids, + const char *path, + bool lookup_only) +{ + struct cached_fid *cfid; + + spin_lock(&cfids->cfid_list_lock); + list_for_each_entry(cfid, &cfids->entries, entry) { + if (!strcmp(cfid->path, path)) { + /* + * If it doesn't have a lease it is either not yet + * fully cached or it may be in the process of + * being deleted due to a lease break. + */ + if (!cfid->has_lease) { + spin_unlock(&cfids->cfid_list_lock); + return NULL; + } + kref_get(&cfid->refcount); + spin_unlock(&cfids->cfid_list_lock); + return cfid; + } + } + if (lookup_only) { + spin_unlock(&cfids->cfid_list_lock); + return NULL; + } + if (cfids->num_entries >= MAX_CACHED_FIDS) { + spin_unlock(&cfids->cfid_list_lock); + return NULL; + } + cfid = init_cached_dir(path); + if (cfid == NULL) { + spin_unlock(&cfids->cfid_list_lock); + return NULL; + } + cfid->cfids = cfids; + cfids->num_entries++; + list_add(&cfid->entry, &cfids->entries); + cfid->on_list = true; + kref_get(&cfid->refcount); + spin_unlock(&cfids->cfid_list_lock); + return cfid; +} + +static struct dentry * +path_to_dentry(struct cifs_sb_info *cifs_sb, const char *path) +{ + struct dentry *dentry; + const char *s, *p; + char sep; + + sep = CIFS_DIR_SEP(cifs_sb); + dentry = dget(cifs_sb->root); + s = path; + + do { + struct inode *dir = d_inode(dentry); + struct dentry *child; + + if (!S_ISDIR(dir->i_mode)) { + dput(dentry); + dentry = ERR_PTR(-ENOTDIR); + break; + } + + /* skip separators */ + while (*s == sep) + s++; + if (!*s) + break; + p = s++; + /* next separator */ + while (*s && *s != sep) + s++; + + child = lookup_positive_unlocked(p, dentry, s - p); + dput(dentry); + dentry = child; + } while (!IS_ERR(dentry)); + return dentry; +} + +static const char *path_no_prefix(struct cifs_sb_info *cifs_sb, + const char *path) +{ + size_t len = 0; + + if (!*path) + return path; + + if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH) && + cifs_sb->prepath) { + len = strlen(cifs_sb->prepath) + 1; + if (unlikely(len > strlen(path))) + return ERR_PTR(-EINVAL); + } + return path + len; +} + +/* + * Open the and cache a directory handle. + * If error then *cfid is not initialized. + */ +int open_cached_dir(unsigned int xid, struct cifs_tcon *tcon, + const char *path, + struct cifs_sb_info *cifs_sb, + bool lookup_only, struct cached_fid **ret_cfid) +{ + 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; + int resp_buftype[2]; + struct smb_rqst rqst[2]; + struct kvec rsp_iov[2]; + struct kvec open_iov[SMB2_CREATE_IOV_SIZE]; + struct kvec qi_iov[1]; + int rc, flags = 0; + __le16 *utf16_path = NULL; + u8 oplock = SMB2_OPLOCK_LEVEL_II; + struct cifs_fid *pfid; + struct dentry *dentry = NULL; + struct cached_fid *cfid; + struct cached_fids *cfids; + const char *npath; + + if (tcon == NULL || tcon->cfids == NULL || tcon->nohandlecache || + is_smb1_server(tcon->ses->server)) + return -EOPNOTSUPP; + + ses = tcon->ses; + server = ses->server; + cfids = tcon->cfids; + + if (!server->ops->new_lease_key) + return -EIO; + + if (cifs_sb->root == NULL) + return -ENOENT; + + utf16_path = cifs_convert_path_to_utf16(path, cifs_sb); + if (!utf16_path) + return -ENOMEM; + + cfid = find_or_create_cached_dir(cfids, path, lookup_only); + if (cfid == NULL) { + kfree(utf16_path); + return -ENOENT; + } + /* + * At this point we either have a lease already and we can just + * return it. If not we are guaranteed to be the only thread accessing + * this cfid. + */ + if (cfid->has_lease) { + *ret_cfid = cfid; + kfree(utf16_path); + return 0; + } + + /* + * Skip any prefix paths in @path as lookup_positive_unlocked() ends up + * calling ->lookup() which already adds those through + * build_path_from_dentry(). Also, do it earlier as we might reconnect + * below when trying to send compounded request and then potentially + * having a different prefix path (e.g. after DFS failover). + */ + npath = path_no_prefix(cifs_sb, path); + if (IS_ERR(npath)) { + rc = PTR_ERR(npath); + kfree(utf16_path); + return rc; + } + + /* + * We do not hold the lock for the open because in case + * SMB2_open needs to reconnect. + * This is safe because no other thread will be able to get a ref + * to the cfid until we have finished opening the file and (possibly) + * acquired a lease. + */ + if (smb3_encryption_required(tcon)) + flags |= CIFS_TRANSFORM_REQ; + + pfid = &cfid->fid; + server->ops->new_lease_key(pfid); + + memset(rqst, 0, sizeof(rqst)); + resp_buftype[0] = resp_buftype[1] = CIFS_NO_BUFFER; + memset(rsp_iov, 0, sizeof(rsp_iov)); + + /* Open */ + memset(&open_iov, 0, sizeof(open_iov)); + rqst[0].rq_iov = open_iov; + rqst[0].rq_nvec = SMB2_CREATE_IOV_SIZE; + + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .path = path, + .create_options = cifs_create_options(cifs_sb, CREATE_NOT_FILE), + .desired_access = FILE_READ_ATTRIBUTES, + .disposition = FILE_OPEN, + .fid = pfid, + }; + + rc = SMB2_open_init(tcon, server, + &rqst[0], &oplock, &oparms, utf16_path); + if (rc) + goto oshr_free; + smb2_set_next_command(tcon, &rqst[0]); + + memset(&qi_iov, 0, sizeof(qi_iov)); + rqst[1].rq_iov = qi_iov; + rqst[1].rq_nvec = 1; + + rc = SMB2_query_info_init(tcon, server, + &rqst[1], COMPOUND_FID, + COMPOUND_FID, FILE_ALL_INFORMATION, + SMB2_O_INFO_FILE, 0, + sizeof(struct smb2_file_all_info) + + PATH_MAX * 2, 0, NULL); + if (rc) + goto oshr_free; + + smb2_set_related(&rqst[1]); + + rc = compound_send_recv(xid, ses, server, + flags, 2, rqst, + resp_buftype, rsp_iov); + if (rc) { + if (rc == -EREMCHG) { + tcon->need_reconnect = true; + pr_warn_once("server share %s deleted\n", + tcon->tree_name); + } + goto oshr_free; + } + cfid->tcon = tcon; + cfid->is_open = true; + + o_rsp = (struct smb2_create_rsp *)rsp_iov[0].iov_base; + oparms.fid->persistent_fid = o_rsp->PersistentFileId; + oparms.fid->volatile_fid = o_rsp->VolatileFileId; +#ifdef CONFIG_CIFS_DEBUG2 + oparms.fid->mid = le64_to_cpu(o_rsp->hdr.MessageId); +#endif /* CIFS_DEBUG2 */ + + if (o_rsp->OplockLevel != SMB2_OPLOCK_LEVEL_LEASE) + goto oshr_free; + + smb2_parse_contexts(server, o_rsp, + &oparms.fid->epoch, + oparms.fid->lease_key, &oplock, + NULL, NULL); + if (!(oplock & SMB2_LEASE_READ_CACHING_HE)) + goto oshr_free; + qi_rsp = (struct smb2_query_info_rsp *)rsp_iov[1].iov_base; + if (le32_to_cpu(qi_rsp->OutputBufferLength) < sizeof(struct smb2_file_all_info)) + goto oshr_free; + if (!smb2_validate_and_copy_iov( + le16_to_cpu(qi_rsp->OutputBufferOffset), + sizeof(struct smb2_file_all_info), + &rsp_iov[1], sizeof(struct smb2_file_all_info), + (char *)&cfid->file_all_info)) + cfid->file_all_info_is_valid = true; + + if (!npath[0]) + dentry = dget(cifs_sb->root); + else { + dentry = path_to_dentry(cifs_sb, npath); + if (IS_ERR(dentry)) { + rc = -ENOENT; + goto oshr_free; + } + } + cfid->dentry = dentry; + cfid->time = jiffies; + cfid->has_lease = true; + +oshr_free: + kfree(utf16_path); + SMB2_open_free(&rqst[0]); + SMB2_query_info_free(&rqst[1]); + free_rsp_buf(resp_buftype[0], rsp_iov[0].iov_base); + free_rsp_buf(resp_buftype[1], rsp_iov[1].iov_base); + spin_lock(&cfids->cfid_list_lock); + if (rc && !cfid->has_lease) { + if (cfid->on_list) { + list_del(&cfid->entry); + cfid->on_list = false; + cfids->num_entries--; + } + rc = -ENOENT; + } + spin_unlock(&cfids->cfid_list_lock); + if (!rc && !cfid->has_lease) { + /* + * We are guaranteed to have two references at this point. + * One for the caller and one for a potential lease. + * Release the Lease-ref so that the directory will be closed + * when the caller closes the cached handle. + */ + kref_put(&cfid->refcount, smb2_close_cached_fid); + } + if (rc) { + if (cfid->is_open) + SMB2_close(0, cfid->tcon, cfid->fid.persistent_fid, + cfid->fid.volatile_fid); + free_cached_dir(cfid); + cfid = NULL; + } + + if (rc == 0) { + *ret_cfid = cfid; + atomic_inc(&tcon->num_remote_opens); + } + + return rc; +} + +int open_cached_dir_by_dentry(struct cifs_tcon *tcon, + struct dentry *dentry, + struct cached_fid **ret_cfid) +{ + struct cached_fid *cfid; + struct cached_fids *cfids = tcon->cfids; + + if (cfids == NULL) + return -ENOENT; + + spin_lock(&cfids->cfid_list_lock); + list_for_each_entry(cfid, &cfids->entries, entry) { + if (dentry && cfid->dentry == dentry) { + cifs_dbg(FYI, "found a cached root file handle by dentry\n"); + kref_get(&cfid->refcount); + *ret_cfid = cfid; + spin_unlock(&cfids->cfid_list_lock); + return 0; + } + } + spin_unlock(&cfids->cfid_list_lock); + return -ENOENT; +} + +static void +smb2_close_cached_fid(struct kref *ref) +{ + struct cached_fid *cfid = container_of(ref, struct cached_fid, + refcount); + + spin_lock(&cfid->cfids->cfid_list_lock); + if (cfid->on_list) { + list_del(&cfid->entry); + cfid->on_list = false; + cfid->cfids->num_entries--; + } + spin_unlock(&cfid->cfids->cfid_list_lock); + + dput(cfid->dentry); + cfid->dentry = NULL; + + if (cfid->is_open) { + SMB2_close(0, cfid->tcon, cfid->fid.persistent_fid, + cfid->fid.volatile_fid); + atomic_dec(&cfid->tcon->num_remote_opens); + } + + free_cached_dir(cfid); +} + +void drop_cached_dir_by_name(const unsigned int xid, struct cifs_tcon *tcon, + const char *name, struct cifs_sb_info *cifs_sb) +{ + struct cached_fid *cfid = NULL; + int rc; + + rc = open_cached_dir(xid, tcon, name, cifs_sb, true, &cfid); + if (rc) { + cifs_dbg(FYI, "no cached dir found for rmdir(%s)\n", name); + return; + } + spin_lock(&cfid->cfids->cfid_list_lock); + if (cfid->has_lease) { + cfid->has_lease = false; + kref_put(&cfid->refcount, smb2_close_cached_fid); + } + spin_unlock(&cfid->cfids->cfid_list_lock); + close_cached_dir(cfid); +} + + +void close_cached_dir(struct cached_fid *cfid) +{ + kref_put(&cfid->refcount, smb2_close_cached_fid); +} + +/* + * Called from cifs_kill_sb when we unmount a share + */ +void close_all_cached_dirs(struct cifs_sb_info *cifs_sb) +{ + struct rb_root *root = &cifs_sb->tlink_tree; + struct rb_node *node; + struct cached_fid *cfid; + struct cifs_tcon *tcon; + struct tcon_link *tlink; + struct cached_fids *cfids; + + for (node = rb_first(root); node; node = rb_next(node)) { + tlink = rb_entry(node, struct tcon_link, tl_rbnode); + tcon = tlink_tcon(tlink); + if (IS_ERR(tcon)) + continue; + cfids = tcon->cfids; + if (cfids == NULL) + continue; + list_for_each_entry(cfid, &cfids->entries, entry) { + dput(cfid->dentry); + cfid->dentry = NULL; + } + } +} + +/* + * Invalidate all cached dirs when a TCON has been reset + * due to a session loss. + */ +void invalidate_all_cached_dirs(struct cifs_tcon *tcon) +{ + struct cached_fids *cfids = tcon->cfids; + struct cached_fid *cfid, *q; + LIST_HEAD(entry); + + spin_lock(&cfids->cfid_list_lock); + list_for_each_entry_safe(cfid, q, &cfids->entries, entry) { + list_move(&cfid->entry, &entry); + cfids->num_entries--; + cfid->is_open = false; + cfid->on_list = false; + /* To prevent race with smb2_cached_lease_break() */ + kref_get(&cfid->refcount); + } + spin_unlock(&cfids->cfid_list_lock); + + list_for_each_entry_safe(cfid, q, &entry, entry) { + list_del(&cfid->entry); + cancel_work_sync(&cfid->lease_break); + if (cfid->has_lease) { + /* + * We lease was never cancelled from the server so we + * need to drop the reference. + */ + spin_lock(&cfids->cfid_list_lock); + cfid->has_lease = false; + spin_unlock(&cfids->cfid_list_lock); + kref_put(&cfid->refcount, smb2_close_cached_fid); + } + /* Drop the extra reference opened above*/ + kref_put(&cfid->refcount, smb2_close_cached_fid); + } +} + +static void +smb2_cached_lease_break(struct work_struct *work) +{ + struct cached_fid *cfid = container_of(work, + struct cached_fid, lease_break); + + spin_lock(&cfid->cfids->cfid_list_lock); + cfid->has_lease = false; + spin_unlock(&cfid->cfids->cfid_list_lock); + kref_put(&cfid->refcount, smb2_close_cached_fid); +} + +int cached_dir_lease_break(struct cifs_tcon *tcon, __u8 lease_key[16]) +{ + struct cached_fids *cfids = tcon->cfids; + struct cached_fid *cfid; + + if (cfids == NULL) + return false; + + spin_lock(&cfids->cfid_list_lock); + list_for_each_entry(cfid, &cfids->entries, entry) { + if (cfid->has_lease && + !memcmp(lease_key, + cfid->fid.lease_key, + SMB2_LEASE_KEY_SIZE)) { + cfid->time = 0; + /* + * We found a lease remove it from the list + * so no threads can access it. + */ + list_del(&cfid->entry); + cfid->on_list = false; + cfids->num_entries--; + + queue_work(cifsiod_wq, + &cfid->lease_break); + spin_unlock(&cfids->cfid_list_lock); + return true; + } + } + spin_unlock(&cfids->cfid_list_lock); + return false; +} + +static struct cached_fid *init_cached_dir(const char *path) +{ + struct cached_fid *cfid; + + cfid = kzalloc(sizeof(*cfid), GFP_ATOMIC); + if (!cfid) + return NULL; + cfid->path = kstrdup(path, GFP_ATOMIC); + if (!cfid->path) { + kfree(cfid); + return NULL; + } + + INIT_WORK(&cfid->lease_break, smb2_cached_lease_break); + INIT_LIST_HEAD(&cfid->entry); + INIT_LIST_HEAD(&cfid->dirents.entries); + mutex_init(&cfid->dirents.de_mutex); + spin_lock_init(&cfid->fid_lock); + kref_init(&cfid->refcount); + return cfid; +} + +static void free_cached_dir(struct cached_fid *cfid) +{ + struct cached_dirent *dirent, *q; + + dput(cfid->dentry); + cfid->dentry = NULL; + + /* + * Delete all cached dirent names + */ + list_for_each_entry_safe(dirent, q, &cfid->dirents.entries, entry) { + list_del(&dirent->entry); + kfree(dirent->name); + kfree(dirent); + } + + kfree(cfid->path); + cfid->path = NULL; + kfree(cfid); +} + +struct cached_fids *init_cached_dirs(void) +{ + struct cached_fids *cfids; + + cfids = kzalloc(sizeof(*cfids), GFP_KERNEL); + if (!cfids) + return NULL; + spin_lock_init(&cfids->cfid_list_lock); + INIT_LIST_HEAD(&cfids->entries); + return cfids; +} + +/* + * Called from tconInfoFree when we are tearing down the tcon. + * There are no active users or open files/directories at this point. + */ +void free_cached_dirs(struct cached_fids *cfids) +{ + struct cached_fid *cfid, *q; + LIST_HEAD(entry); + + spin_lock(&cfids->cfid_list_lock); + list_for_each_entry_safe(cfid, q, &cfids->entries, entry) { + cfid->on_list = false; + cfid->is_open = false; + list_move(&cfid->entry, &entry); + } + spin_unlock(&cfids->cfid_list_lock); + + list_for_each_entry_safe(cfid, q, &entry, entry) { + list_del(&cfid->entry); + free_cached_dir(cfid); + } + + kfree(cfids); +} diff --git a/fs/cifs/cached_dir.h b/fs/cifs/cached_dir.h new file mode 100644 index 0000000000000..2f4e764c9ca9a --- /dev/null +++ b/fs/cifs/cached_dir.h @@ -0,0 +1,80 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +/* + * Functions to handle the cached directory entries + * + * Copyright (c) 2022, Ronnie Sahlberg + */ + +#ifndef _CACHED_DIR_H +#define _CACHED_DIR_H + + +struct cached_dirent { + struct list_head entry; + char *name; + int namelen; + loff_t pos; + + struct cifs_fattr fattr; +}; + +struct cached_dirents { + bool is_valid:1; + bool is_failed:1; + struct dir_context *ctx; /* + * Only used to make sure we only take entries + * from a single context. Never dereferenced. + */ + struct mutex de_mutex; + int pos; /* Expected ctx->pos */ + struct list_head entries; +}; + +struct cached_fid { + struct list_head entry; + struct cached_fids *cfids; + const char *path; + bool has_lease:1; + bool is_open:1; + bool on_list:1; + bool file_all_info_is_valid:1; + unsigned long time; /* jiffies of when lease was taken */ + struct kref refcount; + struct cifs_fid fid; + spinlock_t fid_lock; + struct cifs_tcon *tcon; + struct dentry *dentry; + struct work_struct lease_break; + struct smb2_file_all_info file_all_info; + struct cached_dirents dirents; +}; + +#define MAX_CACHED_FIDS 16 +struct cached_fids { + /* Must be held when: + * - accessing the cfids->entries list + */ + spinlock_t cfid_list_lock; + int num_entries; + struct list_head entries; +}; + +extern struct cached_fids *init_cached_dirs(void); +extern void free_cached_dirs(struct cached_fids *cfids); +extern int open_cached_dir(unsigned int xid, struct cifs_tcon *tcon, + const char *path, + struct cifs_sb_info *cifs_sb, + bool lookup_only, struct cached_fid **cfid); +extern int open_cached_dir_by_dentry(struct cifs_tcon *tcon, + struct dentry *dentry, + struct cached_fid **cfid); +extern void close_cached_dir(struct cached_fid *cfid); +extern void drop_cached_dir_by_name(const unsigned int xid, + struct cifs_tcon *tcon, + const char *name, + struct cifs_sb_info *cifs_sb); +extern void close_all_cached_dirs(struct cifs_sb_info *cifs_sb); +extern void invalidate_all_cached_dirs(struct cifs_tcon *tcon); +extern int cached_dir_lease_break(struct cifs_tcon *tcon, __u8 lease_key[16]); + +#endif /* _CACHED_DIR_H */ diff --git a/fs/cifs/cifs_debug.c b/fs/cifs/cifs_debug.c index e7501533c2ec9..9d70c4f452ea8 100644 --- a/fs/cifs/cifs_debug.c +++ b/fs/cifs/cifs_debug.c @@ -8,9 +8,11 @@ #include #include #include +#include #include #include #include +#include #include "cifspdu.h" #include "cifsglob.h" #include "cifsproto.h" @@ -36,13 +38,13 @@ cifs_dump_mem(char *label, void *data, int length) void cifs_dump_detail(void *buf, struct TCP_Server_Info *server) { #ifdef CONFIG_CIFS_DEBUG2 - struct smb_hdr *smb = (struct smb_hdr *)buf; + struct smb_hdr *smb = buf; cifs_dbg(VFS, "Cmd: %d Err: 0x%x Flags: 0x%x Flgs2: 0x%x Mid: %d Pid: %d\n", smb->Command, smb->Status.CifsError, smb->Flags, smb->Flags2, smb->Mid, smb->Pid); cifs_dbg(VFS, "smb buf %p len %u\n", smb, - server->ops->calc_smb_size(smb, server)); + server->ops->calc_smb_size(smb)); #endif /* CONFIG_CIFS_DEBUG2 */ } @@ -55,7 +57,7 @@ void cifs_dump_mids(struct TCP_Server_Info *server) return; cifs_dbg(VFS, "Dump pending requests:\n"); - spin_lock(&GlobalMid_Lock); + spin_lock(&server->mid_lock); list_for_each_entry(mid_entry, &server->pending_mid_q, qhead) { cifs_dbg(VFS, "State: %d Cmd: %d Pid: %d Cbdata: %p Mid %llu\n", mid_entry->mid_state, @@ -78,7 +80,7 @@ void cifs_dump_mids(struct TCP_Server_Info *server) mid_entry->resp_buf, 62); } } - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->mid_lock); #endif /* CONFIG_CIFS_DEBUG2 */ } @@ -87,14 +89,14 @@ static void cifs_debug_tcon(struct seq_file *m, struct cifs_tcon *tcon) { __u32 dev_type = le32_to_cpu(tcon->fsDevInfo.DeviceType); - seq_printf(m, "%s Mounts: %d ", tcon->treeName, tcon->tc_count); + seq_printf(m, "%s Mounts: %d ", tcon->tree_name, tcon->tc_count); if (tcon->nativeFileSystem) seq_printf(m, "Type: %s ", tcon->nativeFileSystem); seq_printf(m, "DevInfo: 0x%x Attributes: 0x%x\n\tPathComponentMax: %d Status: %d", le32_to_cpu(tcon->fsDevInfo.DeviceCharacteristics), le32_to_cpu(tcon->fsAttrInfo.Attributes), le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength), - tcon->tidStatus); + tcon->status); if (dev_type == FILE_DEVICE_DISK) seq_puts(m, " type: DISK "); else if (dev_type == FILE_DEVICE_CD_ROM) @@ -107,7 +109,7 @@ static void cifs_debug_tcon(struct seq_file *m, struct cifs_tcon *tcon) if ((tcon->seal) || (tcon->ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) || (tcon->share_flags & SHI1005_FLAGS_ENCRYPT_DATA)) - seq_printf(m, " Encrypted"); + seq_puts(m, " encrypted"); if (tcon->nocase) seq_printf(m, " nocase"); if (tcon->unix_ext) @@ -116,9 +118,16 @@ static void cifs_debug_tcon(struct seq_file *m, struct cifs_tcon *tcon) tcon->ses->server->ops->dump_share_caps(m, tcon); if (tcon->use_witness) seq_puts(m, " Witness"); - + if (tcon->broken_sparse_sup) + seq_puts(m, " nosparse"); if (tcon->need_reconnect) seq_puts(m, "\tDISCONNECTED "); + spin_lock(&tcon->tc_lock); + if (tcon->origin_fullpath) { + seq_printf(m, "\n\tDFS origin fullpath: %s", + tcon->origin_fullpath); + } + spin_unlock(&tcon->tc_lock); seq_putc(m, '\n'); } @@ -128,12 +137,14 @@ cifs_dump_channel(struct seq_file *m, int i, struct cifs_chan *chan) struct TCP_Server_Info *server = chan->server; seq_printf(m, "\n\n\t\tChannel: %d ConnectionId: 0x%llx" - "\n\t\tNumber of credits: %d Dialect 0x%x" + "\n\t\tNumber of credits: %d,%d,%d Dialect 0x%x" "\n\t\tTCP status: %d Instance: %d" "\n\t\tLocal Users To Server: %d SecMode: 0x%x Req On Wire: %d" "\n\t\tIn Send: %d In MaxReq Wait: %d", i+1, server->conn_id, server->credits, + server->echo_credits, + server->oplock_credits, server->dialect, server->tcpStatus, server->reconnect_instance, @@ -142,6 +153,53 @@ cifs_dump_channel(struct seq_file *m, int i, struct cifs_chan *chan) in_flight(server), atomic_read(&server->in_send), atomic_read(&server->num_waiters)); +#ifdef CONFIG_NET_NS + if (server->net) + seq_printf(m, " Net namespace: %u ", server->net->ns.inum); +#endif /* NET_NS */ + +} + +static inline const char *smb_speed_to_str(size_t bps) +{ + size_t mbps = bps / 1000 / 1000; + + switch (mbps) { + case SPEED_10: + return "10Mbps"; + case SPEED_100: + return "100Mbps"; + case SPEED_1000: + return "1Gbps"; + case SPEED_2500: + return "2.5Gbps"; + case SPEED_5000: + return "5Gbps"; + case SPEED_10000: + return "10Gbps"; + case SPEED_14000: + return "14Gbps"; + case SPEED_20000: + return "20Gbps"; + case SPEED_25000: + return "25Gbps"; + case SPEED_40000: + return "40Gbps"; + case SPEED_50000: + return "50Gbps"; + case SPEED_56000: + return "56Gbps"; + case SPEED_100000: + return "100Gbps"; + case SPEED_200000: + return "200Gbps"; + case SPEED_400000: + return "400Gbps"; + default: + return "Unknown"; + } + + } static void @@ -150,22 +208,25 @@ cifs_dump_iface(struct seq_file *m, struct cifs_server_iface *iface) struct sockaddr_in *ipv4 = (struct sockaddr_in *)&iface->sockaddr; struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)&iface->sockaddr; - seq_printf(m, "\tSpeed: %zu bps\n", iface->speed); + seq_printf(m, "\tSpeed: %s\n", smb_speed_to_str(iface->speed)); seq_puts(m, "\t\tCapabilities: "); if (iface->rdma_capable) seq_puts(m, "rdma "); if (iface->rss_capable) seq_puts(m, "rss "); + if (!iface->rdma_capable && !iface->rss_capable) + seq_puts(m, "None"); seq_putc(m, '\n'); if (iface->sockaddr.ss_family == AF_INET) seq_printf(m, "\t\tIPv4: %pI4\n", &ipv4->sin_addr); else if (iface->sockaddr.ss_family == AF_INET6) seq_printf(m, "\t\tIPv6: %pI6\n", &ipv6->sin6_addr); + if (!iface->is_active) + seq_puts(m, "\t\t[for-cleanup]\n"); } static int cifs_debug_files_proc_show(struct seq_file *m, void *v) { - struct list_head *tmp, *tmp1, *tmp2; struct TCP_Server_Info *server; struct cifs_ses *ses; struct cifs_tcon *tcon; @@ -181,14 +242,10 @@ static int cifs_debug_files_proc_show(struct seq_file *m, void *v) #endif /* CIFS_DEBUG2 */ spin_lock(&cifs_tcp_ses_lock); list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) { - list_for_each(tmp, &server->smb_ses_list) { - ses = list_entry(tmp, struct cifs_ses, smb_ses_list); - list_for_each(tmp1, &ses->tcon_list) { - tcon = list_entry(tmp1, struct cifs_tcon, tcon_list); + list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { + list_for_each_entry(tcon, &ses->tcon_list, tcon_list) { spin_lock(&tcon->open_file_lock); - list_for_each(tmp2, &tcon->openFileList) { - cfile = list_entry(tmp2, struct cifsFileInfo, - tlist); + list_for_each_entry(cfile, &tcon->openFileList, tlist) { seq_printf(m, "0x%x 0x%llx 0x%llx 0x%x %d %d %d %pd", tcon->tid, @@ -216,11 +273,12 @@ static int cifs_debug_files_proc_show(struct seq_file *m, void *v) static int cifs_debug_data_proc_show(struct seq_file *m, void *v) { - struct list_head *tmp2, *tmp3; struct mid_q_entry *mid_entry; struct TCP_Server_Info *server; + struct TCP_Server_Info *chan_server; struct cifs_ses *ses; struct cifs_tcon *tcon; + struct cifs_server_iface *iface; int c, i, j; seq_puts(m, @@ -272,15 +330,19 @@ static int cifs_debug_data_proc_show(struct seq_file *m, void *v) c = 0; spin_lock(&cifs_tcp_ses_lock); list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) { - if (server->is_channel) + /* channel info will be printed as a part of sessions below */ + if (CIFS_SERVER_IS_CHAN(server)) continue; c++; seq_printf(m, "\n%d) ConnectionId: 0x%llx ", c, server->conn_id); + spin_lock(&server->srv_lock); if (server->hostname) seq_printf(m, "Hostname: %s ", server->hostname); + seq_printf(m, "\nClientGUID: %pUL", server->client_guid); + spin_unlock(&server->srv_lock); #ifdef CONFIG_CIFS_SMB_DIRECT if (!server->rdma) goto skip_rdma; @@ -347,8 +409,11 @@ static int cifs_debug_data_proc_show(struct seq_file *m, void *v) atomic_read(&server->smbd_conn->mr_used_count)); skip_rdma: #endif - seq_printf(m, "\nNumber of credits: %d Dialect 0x%x", - server->credits, server->dialect); + seq_printf(m, "\nNumber of credits: %d,%d,%d Dialect 0x%x", + server->credits, + server->echo_credits, + server->oplock_credits, + server->dialect); if (server->compress_algorithm == SMB3_COMPRESS_LZNT1) seq_printf(m, " COMPRESS_LZNT1"); else if (server->compress_algorithm == SMB3_COMPRESS_LZ77) @@ -370,23 +435,30 @@ static int cifs_debug_data_proc_show(struct seq_file *m, void *v) server->reconnect_instance, server->srv_count, server->sec_mode, in_flight(server)); +#ifdef CONFIG_NET_NS + if (server->net) + seq_printf(m, " Net namespace: %u ", server->net->ns.inum); +#endif /* NET_NS */ seq_printf(m, "\nIn Send: %d In MaxReq Wait: %d", atomic_read(&server->in_send), atomic_read(&server->num_waiters)); + if (server->leaf_fullpath) { + seq_printf(m, "\nDFS leaf full path: %s", + server->leaf_fullpath); + } + seq_printf(m, "\n\n\tSessions: "); i = 0; - list_for_each(tmp2, &server->smb_ses_list) { - ses = list_entry(tmp2, struct cifs_ses, - smb_ses_list); + list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { i++; if ((ses->serverDomain == NULL) || (ses->serverOS == NULL) || (ses->serverNOS == NULL)) { seq_printf(m, "\n\t%d) Address: %s Uses: %d Capability: 0x%x\tSession Status: %d ", i, ses->ip_addr, ses->ses_count, - ses->capabilities, ses->status); + ses->capabilities, ses->ses_status); if (ses->session_flags & SMB2_SESSION_FLAG_IS_GUEST) seq_printf(m, "Guest "); else if (ses->session_flags & SMB2_SESSION_FLAG_IS_NULL) @@ -398,7 +470,7 @@ static int cifs_debug_data_proc_show(struct seq_file *m, void *v) "\n\tSMB session status: %d ", i, ses->ip_addr, ses->serverDomain, ses->ses_count, ses->serverOS, ses->serverNOS, - ses->capabilities, ses->status); + ses->capabilities, ses->ses_status); } seq_printf(m, "\n\tSecurity type: %s ", @@ -406,8 +478,12 @@ static int cifs_debug_data_proc_show(struct seq_file *m, void *v) /* dump session id helpful for use with network trace */ seq_printf(m, " SessionId: 0x%llx", ses->Suid); - if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) + if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) { seq_puts(m, " encrypted"); + /* can help in debugging to show encryption type */ + if (server->cipher_type == SMB2_ENCRYPTION_AES256_GCM) + seq_puts(m, "(gcm256)"); + } if (ses->sign) seq_puts(m, " signed"); @@ -415,12 +491,27 @@ static int cifs_debug_data_proc_show(struct seq_file *m, void *v) from_kuid(&init_user_ns, ses->linux_uid), from_kuid(&init_user_ns, ses->cred_uid)); + if (ses->dfs_root_ses) { + seq_printf(m, "\n\tDFS root session id: 0x%llx", + ses->dfs_root_ses->Suid); + } + spin_lock(&ses->chan_lock); + if (CIFS_CHAN_NEEDS_RECONNECT(ses, 0)) + seq_puts(m, "\tPrimary channel: DISCONNECTED "); + if (CIFS_CHAN_IN_RECONNECT(ses, 0)) + seq_puts(m, "\t[RECONNECTING] "); + if (ses->chan_count > 1) { seq_printf(m, "\n\n\tExtra Channels: %zu ", ses->chan_count-1); - for (j = 1; j < ses->chan_count; j++) + for (j = 1; j < ses->chan_count; j++) { cifs_dump_channel(m, j, &ses->chans[j]); + if (CIFS_CHAN_NEEDS_RECONNECT(ses, j)) + seq_puts(m, "\tDISCONNECTED "); + if (CIFS_CHAN_IN_RECONNECT(ses, j)) + seq_puts(m, "\t[RECONNECTING] "); + } } spin_unlock(&ses->chan_lock); @@ -433,9 +524,7 @@ static int cifs_debug_data_proc_show(struct seq_file *m, void *v) else seq_puts(m, "none\n"); - list_for_each(tmp3, &ses->tcon_list) { - tcon = list_entry(tmp3, struct cifs_tcon, - tcon_list); + list_for_each_entry(tcon, &ses->tcon_list, tcon_list) { ++j; seq_printf(m, "\n\t%d) ", j); cifs_debug_tcon(m, tcon); @@ -443,37 +532,48 @@ static int cifs_debug_data_proc_show(struct seq_file *m, void *v) spin_lock(&ses->iface_lock); if (ses->iface_count) - seq_printf(m, "\n\n\tServer interfaces: %zu", - ses->iface_count); - for (j = 0; j < ses->iface_count; j++) { - struct cifs_server_iface *iface; - - iface = &ses->iface_list[j]; - seq_printf(m, "\n\t%d)", j+1); + seq_printf(m, "\n\n\tServer interfaces: %zu" + "\tLast updated: %lu seconds ago", + ses->iface_count, + (jiffies - ses->iface_last_update) / HZ); + j = 0; + list_for_each_entry(iface, &ses->iface_list, + iface_head) { + seq_printf(m, "\n\t%d)", ++j); cifs_dump_iface(m, iface); if (is_ses_using_iface(ses, iface)) seq_puts(m, "\t\t[CONNECTED]\n"); } spin_unlock(&ses->iface_lock); + + seq_puts(m, "\n\n\tMIDs: "); + spin_lock(&ses->chan_lock); + for (j = 0; j < ses->chan_count; j++) { + chan_server = ses->chans[j].server; + if (!chan_server) + continue; + + if (list_empty(&chan_server->pending_mid_q)) + continue; + + seq_printf(m, "\n\tServer ConnectionId: 0x%llx", + chan_server->conn_id); + spin_lock(&chan_server->mid_lock); + list_for_each_entry(mid_entry, &chan_server->pending_mid_q, qhead) { + seq_printf(m, "\n\t\tState: %d com: %d pid: %d cbdata: %p mid %llu", + mid_entry->mid_state, + le16_to_cpu(mid_entry->command), + mid_entry->pid, + mid_entry->callback_data, + mid_entry->mid); + } + spin_unlock(&chan_server->mid_lock); + } + spin_unlock(&ses->chan_lock); + seq_puts(m, "\n--\n"); } if (i == 0) seq_printf(m, "\n\t\t[NONE]"); - - seq_puts(m, "\n\n\tMIDs: "); - spin_lock(&GlobalMid_Lock); - list_for_each(tmp3, &server->pending_mid_q) { - mid_entry = list_entry(tmp3, struct mid_q_entry, - qhead); - seq_printf(m, "\n\tState: %d com: %d pid:" - " %d cbdata: %p mid %llu\n", - mid_entry->mid_state, - le16_to_cpu(mid_entry->command), - mid_entry->pid, - mid_entry->callback_data, - mid_entry->mid); - } - spin_unlock(&GlobalMid_Lock); - seq_printf(m, "\n--\n"); } if (c == 0) seq_printf(m, "\n\t[NONE]"); @@ -491,7 +591,6 @@ static ssize_t cifs_stats_proc_write(struct file *file, { bool bv; int rc; - struct list_head *tmp1, *tmp2, *tmp3; struct TCP_Server_Info *server; struct cifs_ses *ses; struct cifs_tcon *tcon; @@ -501,8 +600,8 @@ static ssize_t cifs_stats_proc_write(struct file *file, #ifdef CONFIG_CIFS_STATS2 int i; - atomic_set(&totBufAllocCount, 0); - atomic_set(&totSmBufAllocCount, 0); + atomic_set(&total_buf_alloc_count, 0); + atomic_set(&total_small_buf_alloc_count, 0); #endif /* CONFIG_CIFS_STATS2 */ atomic_set(&tcpSesReconnectCount, 0); atomic_set(&tconInfoReconnectCount, 0); @@ -512,9 +611,7 @@ static ssize_t cifs_stats_proc_write(struct file *file, GlobalCurrentXid = 0; spin_unlock(&GlobalMid_Lock); spin_lock(&cifs_tcp_ses_lock); - list_for_each(tmp1, &cifs_tcp_ses_list) { - server = list_entry(tmp1, struct TCP_Server_Info, - tcp_ses_list); + list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) { server->max_in_flight = 0; #ifdef CONFIG_CIFS_STATS2 for (i = 0; i < NUMBER_OF_SMB2_COMMANDS; i++) { @@ -525,13 +622,8 @@ static ssize_t cifs_stats_proc_write(struct file *file, server->fastest_cmd[0] = 0; } #endif /* CONFIG_CIFS_STATS2 */ - list_for_each(tmp2, &server->smb_ses_list) { - ses = list_entry(tmp2, struct cifs_ses, - smb_ses_list); - list_for_each(tmp3, &ses->tcon_list) { - tcon = list_entry(tmp3, - struct cifs_tcon, - tcon_list); + list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { + list_for_each_entry(tcon, &ses->tcon_list, tcon_list) { atomic_set(&tcon->num_smbs_sent, 0); spin_lock(&tcon->stat_lock); tcon->bytes_read = 0; @@ -556,7 +648,6 @@ static int cifs_stats_proc_show(struct seq_file *m, void *v) #ifdef CONFIG_CIFS_STATS2 int j; #endif /* STATS2 */ - struct list_head *tmp2, *tmp3; struct TCP_Server_Info *server; struct cifs_ses *ses; struct cifs_tcon *tcon; @@ -566,17 +657,17 @@ static int cifs_stats_proc_show(struct seq_file *m, void *v) seq_printf(m, "Share (unique mount targets): %d\n", tconInfoAllocCount.counter); seq_printf(m, "SMB Request/Response Buffer: %d Pool size: %d\n", - bufAllocCount.counter, + buf_alloc_count.counter, cifs_min_rcv + tcpSesAllocCount.counter); seq_printf(m, "SMB Small Req/Resp Buffer: %d Pool size: %d\n", - smBufAllocCount.counter, cifs_min_small); + small_buf_alloc_count.counter, cifs_min_small); #ifdef CONFIG_CIFS_STATS2 seq_printf(m, "Total Large %d Small %d Allocations\n", - atomic_read(&totBufAllocCount), - atomic_read(&totSmBufAllocCount)); + atomic_read(&total_buf_alloc_count), + atomic_read(&total_small_buf_alloc_count)); #endif /* CONFIG_CIFS_STATS2 */ - seq_printf(m, "Operations (MIDs): %d\n", atomic_read(&midCount)); + seq_printf(m, "Operations (MIDs): %d\n", atomic_read(&mid_count)); seq_printf(m, "\n%d session %d share reconnects\n", tcpSesReconnectCount.counter, tconInfoReconnectCount.counter); @@ -601,20 +692,18 @@ static int cifs_stats_proc_show(struct seq_file *m, void *v) server->fastest_cmd[j], server->slowest_cmd[j]); for (j = 0; j < NUMBER_OF_SMB2_COMMANDS; j++) - if (atomic_read(&server->smb2slowcmd[j])) + if (atomic_read(&server->smb2slowcmd[j])) { + spin_lock(&server->srv_lock); seq_printf(m, " %d slow responses from %s for command %d\n", atomic_read(&server->smb2slowcmd[j]), server->hostname, j); + spin_unlock(&server->srv_lock); + } #endif /* STATS2 */ - list_for_each(tmp2, &server->smb_ses_list) { - ses = list_entry(tmp2, struct cifs_ses, - smb_ses_list); - list_for_each(tmp3, &ses->tcon_list) { - tcon = list_entry(tmp3, - struct cifs_tcon, - tcon_list); + list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { + list_for_each_entry(tcon, &ses->tcon_list, tcon_list) { i++; - seq_printf(m, "\n%d) %s", i, tcon->treeName); + seq_printf(m, "\n%d) %s", i, tcon->tree_name); if (tcon->need_reconnect) seq_puts(m, "\tDISCONNECTED "); seq_printf(m, "\nSMBs: %d", @@ -792,7 +881,7 @@ static ssize_t cifsFYI_proc_write(struct file *file, const char __user *buffer, rc = get_user(c[0], buffer); if (rc) return rc; - if (strtobool(c, &bv) == 0) + if (kstrtobool(c, &bv) == 0) cifsFYI = bv; else if ((c[0] > '1') && (c[0] <= '9')) cifsFYI = (int) (c[0] - '0'); /* see cifs_debug.h for meanings */ @@ -952,7 +1041,7 @@ static ssize_t cifs_security_flags_proc_write(struct file *file, if (count < 3) { /* single char or single char followed by null */ - if (strtobool(flags_string, &bv) == 0) { + if (kstrtobool(flags_string, &bv) == 0) { global_secflags = bv ? CIFSSEC_MAX : CIFSSEC_DEF; return count; } else if (!isdigit(flags_string[0])) { diff --git a/fs/cifs/cifs_debug.h b/fs/cifs/cifs_debug.h index ee4ea2b60c0fb..ce5cfd236fdb8 100644 --- a/fs/cifs/cifs_debug.h +++ b/fs/cifs/cifs_debug.h @@ -81,19 +81,19 @@ do { \ #define cifs_server_dbg_func(ratefunc, type, fmt, ...) \ do { \ - const char *sn = ""; \ - if (server && server->hostname) \ - sn = server->hostname; \ + spin_lock(&server->srv_lock); \ if ((type) & FYI && cifsFYI & CIFS_INFO) { \ pr_debug_ ## ratefunc("%s: \\\\%s " fmt, \ - __FILE__, sn, ##__VA_ARGS__); \ + __FILE__, server->hostname, \ + ##__VA_ARGS__); \ } else if ((type) & VFS) { \ pr_err_ ## ratefunc("VFS: \\\\%s " fmt, \ - sn, ##__VA_ARGS__); \ + server->hostname, ##__VA_ARGS__); \ } else if ((type) & NOISY && (NOISY != 0)) { \ pr_debug_ ## ratefunc("\\\\%s " fmt, \ - sn, ##__VA_ARGS__); \ + server->hostname, ##__VA_ARGS__); \ } \ + spin_unlock(&server->srv_lock); \ } while (0) #define cifs_server_dbg(type, fmt, ...) \ @@ -108,8 +108,8 @@ do { \ #define cifs_tcon_dbg_func(ratefunc, type, fmt, ...) \ do { \ const char *tn = ""; \ - if (tcon && tcon->treeName) \ - tn = tcon->treeName; \ + if (tcon && tcon->tree_name) \ + tn = tcon->tree_name; \ if ((type) & FYI && cifsFYI & CIFS_INFO) { \ pr_debug_ ## ratefunc("%s: %s " fmt, \ __FILE__, tn, ##__VA_ARGS__); \ @@ -150,7 +150,7 @@ do { \ #define cifs_tcon_dbg(type, fmt, ...) \ do { \ if (0) \ - pr_debug("%s " fmt, tcon->treeName, ##__VA_ARGS__); \ + pr_debug("%s " fmt, tcon->tree_name, ##__VA_ARGS__); \ } while (0) #define cifs_info(fmt, ...) \ diff --git a/fs/cifs/cifs_dfs_ref.c b/fs/cifs/cifs_dfs_ref.c index 020e71fe1454e..b1c2499b1c3b8 100644 --- a/fs/cifs/cifs_dfs_ref.c +++ b/fs/cifs/cifs_dfs_ref.c @@ -21,8 +21,7 @@ #include "cifsfs.h" #include "dns_resolve.h" #include "cifs_debug.h" -#include "cifs_unicode.h" -#include "dfs_cache.h" +#include "dfs.h" #include "fs_context.h" static LIST_HEAD(cifs_dfs_automount_list); @@ -60,7 +59,7 @@ void cifs_dfs_release_automount_timer(void) * Returns pointer to the built string, or a ERR_PTR. Caller is responsible * for freeing the returned string. */ -static char * +char * cifs_build_devname(char *nodename, const char *prepath) { size_t pplen; @@ -119,143 +118,15 @@ cifs_build_devname(char *nodename, const char *prepath) return dev; } - -/** - * cifs_compose_mount_options - creates mount options for referral - * @sb_mountdata: parent/root DFS mount options (template) - * @fullpath: full path in UNC format - * @ref: optional server's referral - * @devname: return the built cifs device name if passed pointer not NULL - * creates mount options for submount based on template options sb_mountdata - * and replacing unc,ip,prefixpath options with ones we've got form ref_unc. - * - * Returns: pointer to new mount options or ERR_PTR. - * Caller is responsible for freeing returned value if it is not error. - */ -char *cifs_compose_mount_options(const char *sb_mountdata, - const char *fullpath, - const struct dfs_info3_param *ref, - char **devname) +static int set_dest_addr(struct smb3_fs_context *ctx) { + struct sockaddr *addr = (struct sockaddr *)&ctx->dstaddr; int rc; - char *name; - char *mountdata = NULL; - const char *prepath = NULL; - int md_len; - char *tkn_e; - char *srvIP = NULL; - char sep = ','; - int off, noff; - - if (sb_mountdata == NULL) - return ERR_PTR(-EINVAL); - - if (ref) { - if (WARN_ON_ONCE(!ref->node_name || ref->path_consumed < 0)) - return ERR_PTR(-EINVAL); - - if (strlen(fullpath) - ref->path_consumed) { - prepath = fullpath + ref->path_consumed; - /* skip initial delimiter */ - if (*prepath == '/' || *prepath == '\\') - prepath++; - } - - name = cifs_build_devname(ref->node_name, prepath); - if (IS_ERR(name)) { - rc = PTR_ERR(name); - name = NULL; - goto compose_mount_options_err; - } - } else { - name = cifs_build_devname((char *)fullpath, NULL); - if (IS_ERR(name)) { - rc = PTR_ERR(name); - name = NULL; - goto compose_mount_options_err; - } - } - - rc = dns_resolve_server_name_to_ip(name, &srvIP, NULL); - if (rc < 0) { - cifs_dbg(FYI, "%s: Failed to resolve server part of %s to IP: %d\n", - __func__, name, rc); - goto compose_mount_options_err; - } - - /* - * In most cases, we'll be building a shorter string than the original, - * but we do have to assume that the address in the ip= option may be - * much longer than the original. Add the max length of an address - * string to the length of the original string to allow for worst case. - */ - md_len = strlen(sb_mountdata) + INET6_ADDRSTRLEN; - mountdata = kzalloc(md_len + sizeof("ip=") + 1, GFP_KERNEL); - if (mountdata == NULL) { - rc = -ENOMEM; - goto compose_mount_options_err; - } - - /* copy all options except of unc,ip,prefixpath */ - off = 0; - if (strncmp(sb_mountdata, "sep=", 4) == 0) { - sep = sb_mountdata[4]; - strncpy(mountdata, sb_mountdata, 5); - off += 5; - } - do { - tkn_e = strchr(sb_mountdata + off, sep); - if (tkn_e == NULL) - noff = strlen(sb_mountdata + off); - else - noff = tkn_e - (sb_mountdata + off) + 1; - - if (strncasecmp(sb_mountdata + off, "cruid=", 6) == 0) { - off += noff; - continue; - } - if (strncasecmp(sb_mountdata + off, "unc=", 4) == 0) { - off += noff; - continue; - } - if (strncasecmp(sb_mountdata + off, "ip=", 3) == 0) { - off += noff; - continue; - } - if (strncasecmp(sb_mountdata + off, "prefixpath=", 11) == 0) { - off += noff; - continue; - } - strncat(mountdata, sb_mountdata + off, noff); - off += noff; - } while (tkn_e); - strcat(mountdata, sb_mountdata + off); - mountdata[md_len] = '\0'; - - /* copy new IP and ref share name */ - if (mountdata[strlen(mountdata) - 1] != sep) - strncat(mountdata, &sep, 1); - strcat(mountdata, "ip="); - strcat(mountdata, srvIP); - - if (devname) - *devname = name; - else - kfree(name); - - /*cifs_dbg(FYI, "%s: parent mountdata: %s\n", __func__, sb_mountdata);*/ - /*cifs_dbg(FYI, "%s: submount mountdata: %s\n", __func__, mountdata );*/ - -compose_mount_options_out: - kfree(srvIP); - return mountdata; - -compose_mount_options_err: - kfree(mountdata); - mountdata = ERR_PTR(rc); - kfree(name); - goto compose_mount_options_out; + rc = dns_resolve_server_name_to_ip(ctx->source, addr, NULL); + if (!rc) + cifs_set_port(addr, ctx->port); + return rc; } /* @@ -295,19 +166,17 @@ static struct vfsmount *cifs_dfs_do_automount(struct path *path) ctx = smb3_fc2context(fc); page = alloc_dentry_path(); - /* always use tree name prefix */ - full_path = build_path_from_dentry_optional_prefix(mntpt, page, true); + full_path = dfs_get_automount_devname(mntpt, page); if (IS_ERR(full_path)) { mnt = ERR_CAST(full_path); goto out; } - convert_delimiter(full_path, '/'); - cifs_dbg(FYI, "%s: full_path: %s\n", __func__, full_path); - tmp = *cur_ctx; - tmp.source = full_path; + tmp.source = NULL; + tmp.leaf_fullpath = NULL; tmp.UNC = tmp.prepath = NULL; + tmp.dfs_root_ses = NULL; rc = smb3_fs_context_dup(ctx, &tmp); if (rc) { @@ -316,6 +185,21 @@ static struct vfsmount *cifs_dfs_do_automount(struct path *path) } rc = smb3_parse_devname(full_path, ctx); + if (rc) { + mnt = ERR_PTR(rc); + goto out; + } + + ctx->source = smb3_fs_context_fullpath(ctx, '/'); + if (IS_ERR(ctx->source)) { + mnt = ERR_CAST(ctx->source); + ctx->source = NULL; + goto out; + } + cifs_dbg(FYI, "%s: ctx: source=%s UNC=%s prepath=%s dstaddr=%pISpc\n", + __func__, ctx->source, ctx->UNC, ctx->prepath, &ctx->dstaddr); + + rc = set_dest_addr(ctx); if (!rc) mnt = fc_mount(fc); else diff --git a/fs/cifs/cifs_fs_sb.h b/fs/cifs/cifs_fs_sb.h index 013a4bd65280c..6517591922801 100644 --- a/fs/cifs/cifs_fs_sb.h +++ b/fs/cifs/cifs_fs_sb.h @@ -61,8 +61,6 @@ struct cifs_sb_info { /* only used when CIFS_MOUNT_USE_PREFIX_PATH is set */ char *prepath; - /* randomly generated 128-bit number for indexing dfs mount groups in referral cache */ - uuid_t dfs_mount_id; /* * Indicate whether serverino option was turned off later * (cifs_autodisable_serverino) in order to match new mounts. diff --git a/fs/cifs/cifs_ioctl.h b/fs/cifs/cifs_ioctl.h index b87cbbe6d2d4b..332588e77c311 100644 --- a/fs/cifs/cifs_ioctl.h +++ b/fs/cifs/cifs_ioctl.h @@ -91,6 +91,13 @@ struct smb3_notify { bool watch_tree; } __packed; +struct smb3_notify_info { + __u32 completion_filter; + bool watch_tree; + __u32 data_len; /* size of notify data below */ + __u8 notify_data[]; +} __packed; + #define CIFS_IOCTL_MAGIC 0xCF #define CIFS_IOC_COPYCHUNK_FILE _IOW(CIFS_IOCTL_MAGIC, 3, int) #define CIFS_IOC_SET_INTEGRITY _IO(CIFS_IOCTL_MAGIC, 4) @@ -100,7 +107,8 @@ struct smb3_notify { #define CIFS_DUMP_KEY _IOWR(CIFS_IOCTL_MAGIC, 8, struct smb3_key_debug_info) #define CIFS_IOC_NOTIFY _IOW(CIFS_IOCTL_MAGIC, 9, struct smb3_notify) #define CIFS_DUMP_FULL_KEY _IOWR(CIFS_IOCTL_MAGIC, 10, struct smb3_full_key_debug_info) -#define CIFS_IOC_SHUTDOWN _IOR ('X', 125, __u32) +#define CIFS_IOC_NOTIFY_INFO _IOWR(CIFS_IOCTL_MAGIC, 11, struct smb3_notify_info) +#define CIFS_IOC_SHUTDOWN _IOR('X', 125, __u32) /* * Flags for going down operation diff --git a/fs/cifs/cifs_spnego.c b/fs/cifs/cifs_spnego.c index 353bd0dd70260..af7849e5974ff 100644 --- a/fs/cifs/cifs_spnego.c +++ b/fs/cifs/cifs_spnego.c @@ -64,8 +64,8 @@ struct key_type cifs_spnego_key_type = { * strlen(";sec=ntlmsspi") */ #define MAX_MECH_STR_LEN 13 -/* strlen of "host=" */ -#define HOST_KEY_LEN 5 +/* strlen of ";host=" */ +#define HOST_KEY_LEN 6 /* strlen of ";ip4=" or ";ip6=" */ #define IP_KEY_LEN 5 @@ -84,9 +84,9 @@ struct key_type cifs_spnego_key_type = { /* get a key struct with a SPNEGO security blob, suitable for session setup */ struct key * -cifs_get_spnego_key(struct cifs_ses *sesInfo) +cifs_get_spnego_key(struct cifs_ses *sesInfo, + struct TCP_Server_Info *server) { - struct TCP_Server_Info *server = cifs_ses_server(sesInfo); struct sockaddr_in *sa = (struct sockaddr_in *) &server->dstaddr; struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *) &server->dstaddr; char *description, *dp; @@ -189,7 +189,7 @@ init_cifs_spnego(void) * spnego upcalls. */ - cred = prepare_kernel_cred(NULL); + cred = prepare_kernel_cred(&init_task); if (!cred) return -ENOMEM; diff --git a/fs/cifs/cifs_spnego.h b/fs/cifs/cifs_spnego.h index e6a0451877d47..e4d751b0c8127 100644 --- a/fs/cifs/cifs_spnego.h +++ b/fs/cifs/cifs_spnego.h @@ -24,12 +24,13 @@ struct cifs_spnego_msg { uint32_t flags; uint32_t sesskey_len; uint32_t secblob_len; - uint8_t data[1]; + uint8_t data[]; }; #ifdef __KERNEL__ extern struct key_type cifs_spnego_key_type; -extern struct key *cifs_get_spnego_key(struct cifs_ses *sesInfo); +extern struct key *cifs_get_spnego_key(struct cifs_ses *sesInfo, + struct TCP_Server_Info *server); #endif /* KERNEL */ #endif /* _CIFS_SPNEGO_H */ diff --git a/fs/cifs/cifs_swn.c b/fs/cifs/cifs_swn.c index 12bde7bfda86b..7233c6a7e6d70 100644 --- a/fs/cifs/cifs_swn.c +++ b/fs/cifs/cifs_swn.c @@ -256,23 +256,23 @@ static struct cifs_swn_reg *cifs_find_swn_reg(struct cifs_tcon *tcon) const char *share_name; const char *net_name; - net_name = extract_hostname(tcon->treeName); + net_name = extract_hostname(tcon->tree_name); if (IS_ERR(net_name)) { int ret; ret = PTR_ERR(net_name); cifs_dbg(VFS, "%s: failed to extract host name from target '%s': %d\n", - __func__, tcon->treeName, ret); + __func__, tcon->tree_name, ret); return ERR_PTR(-EINVAL); } - share_name = extract_sharename(tcon->treeName); + share_name = extract_sharename(tcon->tree_name); if (IS_ERR(share_name)) { int ret; ret = PTR_ERR(share_name); cifs_dbg(VFS, "%s: failed to extract share name from target '%s': %d\n", - __func__, tcon->treeName, ret); + __func__, tcon->tree_name, ret); kfree(net_name); return ERR_PTR(-EINVAL); } @@ -335,14 +335,14 @@ static struct cifs_swn_reg *cifs_get_swn_reg(struct cifs_tcon *tcon) goto fail; } - reg->net_name = extract_hostname(tcon->treeName); + reg->net_name = extract_hostname(tcon->tree_name); if (IS_ERR(reg->net_name)) { ret = PTR_ERR(reg->net_name); cifs_dbg(VFS, "%s: failed to extract host name from target: %d\n", __func__, ret); goto fail_idr; } - reg->share_name = extract_sharename(tcon->treeName); + reg->share_name = extract_sharename(tcon->tree_name); if (IS_ERR(reg->share_name)) { ret = PTR_ERR(reg->share_name); cifs_dbg(VFS, "%s: failed to extract share name from target: %d\n", __func__, ret); @@ -393,26 +393,14 @@ static void cifs_put_swn_reg(struct cifs_swn_reg *swnreg) static int cifs_swn_resource_state_changed(struct cifs_swn_reg *swnreg, const char *name, int state) { - int i; - switch (state) { case CIFS_SWN_RESOURCE_STATE_UNAVAILABLE: cifs_dbg(FYI, "%s: resource name '%s' become unavailable\n", __func__, name); - for (i = 0; i < swnreg->tcon->ses->chan_count; i++) { - spin_lock(&GlobalMid_Lock); - if (swnreg->tcon->ses->chans[i].server->tcpStatus != CifsExiting) - swnreg->tcon->ses->chans[i].server->tcpStatus = CifsNeedReconnect; - spin_unlock(&GlobalMid_Lock); - } + cifs_signal_cifsd_for_reconnect(swnreg->tcon->ses->server, true); break; case CIFS_SWN_RESOURCE_STATE_AVAILABLE: cifs_dbg(FYI, "%s: resource name '%s' become available\n", __func__, name); - for (i = 0; i < swnreg->tcon->ses->chan_count; i++) { - spin_lock(&GlobalMid_Lock); - if (swnreg->tcon->ses->chans[i].server->tcpStatus != CifsExiting) - swnreg->tcon->ses->chans[i].server->tcpStatus = CifsNeedReconnect; - spin_unlock(&GlobalMid_Lock); - } + cifs_signal_cifsd_for_reconnect(swnreg->tcon->ses->server, true); break; case CIFS_SWN_RESOURCE_STATE_UNKNOWN: cifs_dbg(FYI, "%s: resource name '%s' changed to unknown state\n", __func__, name); @@ -477,7 +465,7 @@ static int cifs_swn_reconnect(struct cifs_tcon *tcon, struct sockaddr_storage *a int ret = 0; /* Store the reconnect address */ - mutex_lock(&tcon->ses->server->srv_mutex); + cifs_server_lock(tcon->ses->server); if (cifs_sockaddr_equal(&tcon->ses->server->dstaddr, addr)) goto unlock; @@ -510,13 +498,10 @@ static int cifs_swn_reconnect(struct cifs_tcon *tcon, struct sockaddr_storage *a goto unlock; } - spin_lock(&GlobalMid_Lock); - if (tcon->ses->server->tcpStatus != CifsExiting) - tcon->ses->server->tcpStatus = CifsNeedReconnect; - spin_unlock(&GlobalMid_Lock); + cifs_signal_cifsd_for_reconnect(tcon->ses->server, false); unlock: - mutex_unlock(&tcon->ses->server->srv_mutex); + cifs_server_unlock(tcon->ses->server); return ret; } diff --git a/fs/cifs/cifsacl.c b/fs/cifs/cifsacl.c index bf861fef2f0c3..6feb21a06fab6 100644 --- a/fs/cifs/cifsacl.c +++ b/fs/cifs/cifsacl.c @@ -465,7 +465,7 @@ init_cifs_idmap(void) * this is used to prevent malicious redirections from being installed * with add_key(). */ - cred = prepare_kernel_cred(NULL); + cred = prepare_kernel_cred(&init_task); if (!cred) return -ENOMEM; @@ -1379,6 +1379,7 @@ static int build_sec_desc(struct cifs_ntsd *pntsd, struct cifs_ntsd *pnntsd, return rc; } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY struct cifs_ntsd *get_cifs_acl_by_fid(struct cifs_sb_info *cifs_sb, const struct cifs_fid *cifsfid, u32 *pacllen, u32 __maybe_unused unused) @@ -1422,14 +1423,15 @@ static struct cifs_ntsd *get_cifs_acl_by_path(struct cifs_sb_info *cifs_sb, tcon = tlink_tcon(tlink); xid = get_xid(); - oparms.tcon = tcon; - oparms.cifs_sb = cifs_sb; - oparms.desired_access = READ_CONTROL; - oparms.create_options = cifs_create_options(cifs_sb, 0); - oparms.disposition = FILE_OPEN; - oparms.path = path; - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .cifs_sb = cifs_sb, + .desired_access = READ_CONTROL, + .create_options = cifs_create_options(cifs_sb, 0), + .disposition = FILE_OPEN, + .path = path, + .fid = &fid, + }; rc = CIFS_open(xid, &oparms, &oplock, NULL); if (!rc) { @@ -1488,14 +1490,15 @@ int set_cifs_acl(struct cifs_ntsd *pnntsd, __u32 acllen, else access_flags = WRITE_DAC; - oparms.tcon = tcon; - oparms.cifs_sb = cifs_sb; - oparms.desired_access = access_flags; - oparms.create_options = cifs_create_options(cifs_sb, 0); - oparms.disposition = FILE_OPEN; - oparms.path = path; - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .cifs_sb = cifs_sb, + .desired_access = access_flags, + .create_options = cifs_create_options(cifs_sb, 0), + .disposition = FILE_OPEN, + .path = path, + .fid = &fid, + }; rc = CIFS_open(xid, &oparms, &oplock, NULL); if (rc) { @@ -1512,6 +1515,7 @@ int set_cifs_acl(struct cifs_ntsd *pnntsd, __u32 acllen, cifs_put_tlink(tlink); return rc; } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ /* Translate the CIFS ACL (similar to NTFS ACL) for a file into mode bits */ int diff --git a/fs/cifs/cifsencrypt.c b/fs/cifs/cifsencrypt.c index d118282071b37..cbc18b4a9cb20 100644 --- a/fs/cifs/cifsencrypt.c +++ b/fs/cifs/cifsencrypt.c @@ -32,10 +32,9 @@ int __cifs_calc_signature(struct smb_rqst *rqst, int rc; struct kvec *iov = rqst->rq_iov; int n_vec = rqst->rq_nvec; - int is_smb2 = server->vals->header_preamble_size == 0; /* iov[0] is actual data and not the rfc1002 length for SMB2+ */ - if (is_smb2) { + if (!is_smb1(server)) { if (iov[0].iov_len <= 4) return -EIO; i = 0; @@ -104,26 +103,24 @@ static int cifs_calc_signature(struct smb_rqst *rqst, if (!rqst->rq_iov || !signature || !server) return -EINVAL; - rc = cifs_alloc_hash("md5", &server->secmech.md5, - &server->secmech.sdescmd5); + rc = cifs_alloc_hash("md5", &server->secmech.md5); if (rc) return -1; - rc = crypto_shash_init(&server->secmech.sdescmd5->shash); + rc = crypto_shash_init(server->secmech.md5); if (rc) { cifs_dbg(VFS, "%s: Could not init md5\n", __func__); return rc; } - rc = crypto_shash_update(&server->secmech.sdescmd5->shash, + rc = crypto_shash_update(server->secmech.md5, server->session_key.response, server->session_key.len); if (rc) { cifs_dbg(VFS, "%s: Could not update with response\n", __func__); return rc; } - return __cifs_calc_signature(rqst, server, signature, - &server->secmech.sdescmd5->shash); + return __cifs_calc_signature(rqst, server, signature, server->secmech.md5); } /* must be called with server->srv_mutex held */ @@ -141,9 +138,13 @@ int cifs_sign_rqst(struct smb_rqst *rqst, struct TCP_Server_Info *server, if ((cifs_pdu == NULL) || (server == NULL)) return -EINVAL; + spin_lock(&server->srv_lock); if (!(cifs_pdu->Flags2 & SMBFLG2_SECURITY_SIGNATURE) || - server->tcpStatus == CifsNeedNegotiate) + server->tcpStatus == CifsNeedNegotiate) { + spin_unlock(&server->srv_lock); return rc; + } + spin_unlock(&server->srv_lock); if (!server->session_estab) { memcpy(cifs_pdu->Signature.SecuritySignature, "BSRSPYL", 8); @@ -232,9 +233,9 @@ int cifs_verify_signature(struct smb_rqst *rqst, cpu_to_le32(expected_sequence_number); cifs_pdu->Signature.Sequence.Reserved = 0; - mutex_lock(&server->srv_mutex); + cifs_server_lock(server); rc = cifs_calc_signature(rqst, server, what_we_think_sig_should_be); - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); if (rc) return rc; @@ -277,6 +278,7 @@ build_avpair_blob(struct cifs_ses *ses, const struct nls_table *nls_cp) * ( for NTLMSSP_AV_NB_DOMAIN_NAME followed by NTLMSSP_AV_EOL ) + * unicode length of a netbios domain name */ + kfree_sensitive(ses->auth_key.response); ses->auth_key.len = size + 2 * dlen; ses->auth_key.response = kzalloc(ses->auth_key.len, GFP_KERNEL); if (!ses->auth_key.response) { @@ -409,7 +411,7 @@ static int calc_ntlmv2_hash(struct cifs_ses *ses, char *ntlmv2_hash, wchar_t *domain; wchar_t *server; - if (!ses->server->secmech.sdeschmacmd5) { + if (!ses->server->secmech.hmacmd5) { cifs_dbg(VFS, "%s: can't generate ntlmv2 hash\n", __func__); return -1; } @@ -417,14 +419,14 @@ static int calc_ntlmv2_hash(struct cifs_ses *ses, char *ntlmv2_hash, /* calculate md4 hash of password */ E_md4hash(ses->password, nt_hash, nls_cp); - rc = crypto_shash_setkey(ses->server->secmech.hmacmd5, nt_hash, + rc = crypto_shash_setkey(ses->server->secmech.hmacmd5->tfm, nt_hash, CIFS_NTHASH_SIZE); if (rc) { cifs_dbg(VFS, "%s: Could not set NT Hash as a key\n", __func__); return rc; } - rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash); + rc = crypto_shash_init(ses->server->secmech.hmacmd5); if (rc) { cifs_dbg(VFS, "%s: Could not init hmacmd5\n", __func__); return rc; @@ -445,7 +447,7 @@ static int calc_ntlmv2_hash(struct cifs_ses *ses, char *ntlmv2_hash, memset(user, '\0', 2); } - rc = crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash, + rc = crypto_shash_update(ses->server->secmech.hmacmd5, (char *)user, 2 * len); kfree(user); if (rc) { @@ -465,7 +467,7 @@ static int calc_ntlmv2_hash(struct cifs_ses *ses, char *ntlmv2_hash, len = cifs_strtoUTF16((__le16 *)domain, ses->domainName, len, nls_cp); rc = - crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash, + crypto_shash_update(ses->server->secmech.hmacmd5, (char *)domain, 2 * len); kfree(domain); if (rc) { @@ -485,7 +487,7 @@ static int calc_ntlmv2_hash(struct cifs_ses *ses, char *ntlmv2_hash, len = cifs_strtoUTF16((__le16 *)server, ses->ip_addr, len, nls_cp); rc = - crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash, + crypto_shash_update(ses->server->secmech.hmacmd5, (char *)server, 2 * len); kfree(server); if (rc) { @@ -495,7 +497,7 @@ static int calc_ntlmv2_hash(struct cifs_ses *ses, char *ntlmv2_hash, } } - rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash, + rc = crypto_shash_final(ses->server->secmech.hmacmd5, ntlmv2_hash); if (rc) cifs_dbg(VFS, "%s: Could not generate md5 hash\n", __func__); @@ -515,12 +517,12 @@ CalcNTLMv2_response(const struct cifs_ses *ses, char *ntlmv2_hash) hash_len = ses->auth_key.len - (CIFS_SESS_KEY_SIZE + offsetof(struct ntlmv2_resp, challenge.key[0])); - if (!ses->server->secmech.sdeschmacmd5) { + if (!ses->server->secmech.hmacmd5) { cifs_dbg(VFS, "%s: can't generate ntlmv2 hash\n", __func__); return -1; } - rc = crypto_shash_setkey(ses->server->secmech.hmacmd5, + rc = crypto_shash_setkey(ses->server->secmech.hmacmd5->tfm, ntlmv2_hash, CIFS_HMAC_MD5_HASH_SIZE); if (rc) { cifs_dbg(VFS, "%s: Could not set NTLMV2 Hash as a key\n", @@ -528,7 +530,7 @@ CalcNTLMv2_response(const struct cifs_ses *ses, char *ntlmv2_hash) return rc; } - rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash); + rc = crypto_shash_init(ses->server->secmech.hmacmd5); if (rc) { cifs_dbg(VFS, "%s: Could not init hmacmd5\n", __func__); return rc; @@ -540,7 +542,7 @@ CalcNTLMv2_response(const struct cifs_ses *ses, char *ntlmv2_hash) else memcpy(ntlmv2->challenge.key, ses->server->cryptkey, CIFS_SERVER_CHALLENGE_SIZE); - rc = crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash, + rc = crypto_shash_update(ses->server->secmech.hmacmd5, ntlmv2->challenge.key, hash_len); if (rc) { cifs_dbg(VFS, "%s: Could not update with response\n", __func__); @@ -548,7 +550,7 @@ CalcNTLMv2_response(const struct cifs_ses *ses, char *ntlmv2_hash) } /* Note that the MD5 digest over writes anon.challenge_key.key */ - rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash, + rc = crypto_shash_final(ses->server->secmech.hmacmd5, ntlmv2->ntlmv2_hash); if (rc) cifs_dbg(VFS, "%s: Could not generate md5 hash\n", __func__); @@ -622,11 +624,9 @@ setup_ntlmv2_rsp(struct cifs_ses *ses, const struct nls_table *nls_cp) memcpy(ses->auth_key.response + baselen, tiblob, tilen); - mutex_lock(&ses->server->srv_mutex); + cifs_server_lock(ses->server); - rc = cifs_alloc_hash("hmac(md5)", - &ses->server->secmech.hmacmd5, - &ses->server->secmech.sdeschmacmd5); + rc = cifs_alloc_hash("hmac(md5)", &ses->server->secmech.hmacmd5); if (rc) { goto unlock; } @@ -646,7 +646,7 @@ setup_ntlmv2_rsp(struct cifs_ses *ses, const struct nls_table *nls_cp) } /* now calculate the session key for NTLMv2 */ - rc = crypto_shash_setkey(ses->server->secmech.hmacmd5, + rc = crypto_shash_setkey(ses->server->secmech.hmacmd5->tfm, ntlmv2_hash, CIFS_HMAC_MD5_HASH_SIZE); if (rc) { cifs_dbg(VFS, "%s: Could not set NTLMV2 Hash as a key\n", @@ -654,13 +654,13 @@ setup_ntlmv2_rsp(struct cifs_ses *ses, const struct nls_table *nls_cp) goto unlock; } - rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash); + rc = crypto_shash_init(ses->server->secmech.hmacmd5); if (rc) { cifs_dbg(VFS, "%s: Could not init hmacmd5\n", __func__); goto unlock; } - rc = crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash, + rc = crypto_shash_update(ses->server->secmech.hmacmd5, ntlmv2->ntlmv2_hash, CIFS_HMAC_MD5_HASH_SIZE); if (rc) { @@ -668,15 +668,15 @@ setup_ntlmv2_rsp(struct cifs_ses *ses, const struct nls_table *nls_cp) goto unlock; } - rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash, + rc = crypto_shash_final(ses->server->secmech.hmacmd5, ses->auth_key.response); if (rc) cifs_dbg(VFS, "%s: Could not generate md5 hash\n", __func__); unlock: - mutex_unlock(&ses->server->srv_mutex); + cifs_server_unlock(ses->server); setup_ntlmv2_rsp_ret: - kfree(tiblob); + kfree_sensitive(tiblob); return rc; } @@ -715,49 +715,19 @@ calc_seckey(struct cifs_ses *ses) void cifs_crypto_secmech_release(struct TCP_Server_Info *server) { - if (server->secmech.cmacaes) { - crypto_free_shash(server->secmech.cmacaes); - server->secmech.cmacaes = NULL; - } - - if (server->secmech.hmacsha256) { - crypto_free_shash(server->secmech.hmacsha256); - server->secmech.hmacsha256 = NULL; - } - - if (server->secmech.md5) { - crypto_free_shash(server->secmech.md5); - server->secmech.md5 = NULL; - } + cifs_free_hash(&server->secmech.aes_cmac); + cifs_free_hash(&server->secmech.hmacsha256); + cifs_free_hash(&server->secmech.md5); + cifs_free_hash(&server->secmech.sha512); + cifs_free_hash(&server->secmech.hmacmd5); - if (server->secmech.sha512) { - crypto_free_shash(server->secmech.sha512); - server->secmech.sha512 = NULL; + if (server->secmech.enc) { + crypto_free_aead(server->secmech.enc); + server->secmech.enc = NULL; } - if (server->secmech.hmacmd5) { - crypto_free_shash(server->secmech.hmacmd5); - server->secmech.hmacmd5 = NULL; + if (server->secmech.dec) { + crypto_free_aead(server->secmech.dec); + server->secmech.dec = NULL; } - - if (server->secmech.ccmaesencrypt) { - crypto_free_aead(server->secmech.ccmaesencrypt); - server->secmech.ccmaesencrypt = NULL; - } - - if (server->secmech.ccmaesdecrypt) { - crypto_free_aead(server->secmech.ccmaesdecrypt); - server->secmech.ccmaesdecrypt = NULL; - } - - kfree(server->secmech.sdesccmacaes); - server->secmech.sdesccmacaes = NULL; - kfree(server->secmech.sdeschmacsha256); - server->secmech.sdeschmacsha256 = NULL; - kfree(server->secmech.sdeschmacmd5); - server->secmech.sdeschmacmd5 = NULL; - kfree(server->secmech.sdescmd5); - server->secmech.sdescmd5 = NULL; - kfree(server->secmech.sdescsha512); - server->secmech.sdescsha512 = NULL; } diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index b5ae209539ff1..90a2c9286471e 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -26,6 +26,7 @@ #include #include #include +#include #include #include "cifsfs.h" #include "cifspdu.h" @@ -38,7 +39,6 @@ #include #include "cifs_spnego.h" #include "fscache.h" -#include "smb2pdu.h" #ifdef CONFIG_CIFS_DFS_UPCALL #include "dfs_cache.h" #endif @@ -46,6 +46,7 @@ #include "netlink.h" #endif #include "fs_context.h" +#include "cached_dir.h" /* * DOS dates from 1980/1/1 through 2107/12/31 @@ -68,6 +69,34 @@ bool enable_negotiate_signing; /* false by default */ unsigned int global_secflags = CIFSSEC_DEF; /* unsigned int ntlmv2_support = 0; */ unsigned int sign_CIFS_PDUs = 1; + +/* + * Global transaction id (XID) information + */ +unsigned int GlobalCurrentXid; /* protected by GlobalMid_Sem */ +unsigned int GlobalTotalActiveXid; /* prot by GlobalMid_Sem */ +unsigned int GlobalMaxActiveXid; /* prot by GlobalMid_Sem */ +spinlock_t GlobalMid_Lock; /* protects above & list operations on midQ entries */ + +/* + * Global counters, updated atomically + */ +atomic_t sesInfoAllocCount; +atomic_t tconInfoAllocCount; +atomic_t tcpSesNextId; +atomic_t tcpSesAllocCount; +atomic_t tcpSesReconnectCount; +atomic_t tconInfoReconnectCount; + +atomic_t mid_count; +atomic_t buf_alloc_count; +atomic_t small_buf_alloc_count; +#ifdef CONFIG_CIFS_STATS2 +atomic_t total_buf_alloc_count; +atomic_t total_small_buf_alloc_count; +#endif/* STATS2 */ +struct list_head cifs_tcp_ses_list; +spinlock_t cifs_tcp_ses_lock; static const struct super_operations cifs_super_ops; unsigned int CIFSMaxBufSize = CIFS_MAX_MSGSIZE; module_param(CIFSMaxBufSize, uint, 0444); @@ -203,7 +232,7 @@ cifs_read_super(struct super_block *sb) sb->s_time_max = ts.tv_sec; } - sb->s_magic = CIFS_MAGIC_NUMBER; + sb->s_magic = CIFS_SUPER_MAGIC; sb->s_op = &cifs_super_ops; sb->s_xattr = cifs_xattr_handlers; rc = super_setup_bdi(sb); @@ -216,7 +245,7 @@ cifs_read_super(struct super_block *sb) if (cifs_sb->ctx->rasize) sb->s_bdi->ra_pages = cifs_sb->ctx->rasize / PAGE_SIZE; else - sb->s_bdi->ra_pages = cifs_sb->ctx->rsize / PAGE_SIZE; + sb->s_bdi->ra_pages = 2 * (cifs_sb->ctx->rsize / PAGE_SIZE); sb->s_blocksize = CIFS_MAX_MSGSIZE; sb->s_blocksize_bits = 14; /* default 2**14 = CIFS_MAX_MSGSIZE */ @@ -255,30 +284,13 @@ cifs_read_super(struct super_block *sb) static void cifs_kill_sb(struct super_block *sb) { struct cifs_sb_info *cifs_sb = CIFS_SB(sb); - struct cifs_tcon *tcon; - struct cached_fid *cfid; - struct rb_root *root = &cifs_sb->tlink_tree; - struct rb_node *node; - struct tcon_link *tlink; /* * We ned to release all dentries for the cached directories * before we kill the sb. */ if (cifs_sb->root) { - for (node = rb_first(root); node; node = rb_next(node)) { - tlink = rb_entry(node, struct tcon_link, tl_rbnode); - tcon = tlink_tcon(tlink); - if (IS_ERR(tcon)) - continue; - cfid = &tcon->crfid; - mutex_lock(&cfid->fid_mutex); - if (cfid->dentry) { - dput(cfid->dentry); - cfid->dentry = NULL; - } - mutex_unlock(&cfid->fid_mutex); - } + close_all_cached_dirs(cifs_sb); /* finally release root dentry */ dput(cifs_sb->root); @@ -384,6 +396,7 @@ cifs_alloc_inode(struct super_block *sb) cifs_inode->epoch = 0; spin_lock_init(&cifs_inode->open_file_lock); generate_random_uuid(cifs_inode->lease_key); + cifs_inode->symlink_target = NULL; /* * Can not set i_flags here - they get immediately overwritten to zero @@ -400,7 +413,11 @@ cifs_alloc_inode(struct super_block *sb) static void cifs_free_inode(struct inode *inode) { - kmem_cache_free(cifs_inode_cachep, CIFS_I(inode)); + struct cifsInodeInfo *cinode = CIFS_I(inode); + + if (S_ISLNK(inode->i_mode)) + kfree(cinode->symlink_target); + kmem_cache_free(cifs_inode_cachep, cinode); } static void @@ -579,6 +596,8 @@ cifs_show_options(struct seq_file *s, struct dentry *root) seq_puts(s, ",nocase"); if (tcon->nodelete) seq_puts(s, ",nodelete"); + if (cifs_sb->ctx->no_sparse) + seq_puts(s, ",nosparse"); if (tcon->local_lease) seq_puts(s, ",locallease"); if (tcon->retry) @@ -665,6 +684,8 @@ cifs_show_options(struct seq_file *s, struct dentry *root) seq_puts(s, ",noautotune"); if (tcon->ses->server->noblocksnd) seq_puts(s, ",noblocksend"); + if (tcon->ses->server->nosharesock) + seq_puts(s, ",nosharesock"); if (tcon->snapshot_time) seq_printf(s, ",snapshot=%llu", tcon->snapshot_time); @@ -705,14 +726,20 @@ static void cifs_umount_begin(struct super_block *sb) tcon = cifs_sb_master_tcon(cifs_sb); spin_lock(&cifs_tcp_ses_lock); - if ((tcon->tc_count > 1) || (tcon->tidStatus == CifsExiting)) { + spin_lock(&tcon->tc_lock); + if ((tcon->tc_count > 1) || (tcon->status == TID_EXITING)) { /* we have other mounts to same share or we have - already tried to force umount this and woken up + already tried to umount this and woken up all waiting network requests, nothing to do */ + spin_unlock(&tcon->tc_lock); spin_unlock(&cifs_tcp_ses_lock); return; - } else if (tcon->tc_count == 1) - tcon->tidStatus = CifsExiting; + } + /* + * can not set tcon->status to TID_EXITING yet since we don't know if umount -f will + * fail later (e.g. due to open files). TID_EXITING will be set just before tdis req sent + */ + spin_unlock(&tcon->tc_lock); spin_unlock(&cifs_tcp_ses_lock); cifs_close_all_deferred_files(tcon); @@ -807,7 +834,7 @@ cifs_get_root(struct smb3_fs_context *ctx, struct super_block *sb) sep = CIFS_DIR_SEP(cifs_sb); dentry = dget(sb->s_root); - p = s = full_path; + s = full_path; do { struct inode *dir = d_inode(dentry); @@ -854,14 +881,12 @@ cifs_smb3_do_mount(struct file_system_type *fs_type, struct dentry *root; int rc; - /* - * Prints in Kernel / CIFS log the attempted mount operation - * If CIFS_DEBUG && cifs_FYI - */ - if (cifsFYI) - cifs_dbg(FYI, "Devname: %s flags: %d\n", old_ctx->UNC, flags); - else - cifs_info("Attempting to mount %s\n", old_ctx->UNC); + if (cifsFYI) { + cifs_dbg(FYI, "%s: devname=%s flags=0x%x\n", __func__, + old_ctx->source, flags); + } else { + cifs_info("Attempting to mount %s\n", old_ctx->source); + } cifs_sb = kzalloc(sizeof(*cifs_sb), GFP_KERNEL); if (!cifs_sb) @@ -878,12 +903,6 @@ cifs_smb3_do_mount(struct file_system_type *fs_type, goto out; } - rc = cifs_setup_volume_info(cifs_sb->ctx, NULL, NULL); - if (rc) { - root = ERR_PTR(rc); - goto out; - } - rc = cifs_setup_cifs_sb(cifs_sb); if (rc) { root = ERR_PTR(rc); @@ -1125,8 +1144,33 @@ const struct inode_operations cifs_file_inode_ops = { .fiemap = cifs_fiemap, }; +const char *cifs_get_link(struct dentry *dentry, struct inode *inode, + struct delayed_call *done) +{ + char *target_path; + + target_path = kmalloc(PATH_MAX, GFP_KERNEL); + if (!target_path) + return ERR_PTR(-ENOMEM); + + spin_lock(&inode->i_lock); + if (likely(CIFS_I(inode)->symlink_target)) { + strscpy(target_path, CIFS_I(inode)->symlink_target, PATH_MAX); + } else { + kfree(target_path); + target_path = ERR_PTR(-EOPNOTSUPP); + } + spin_unlock(&inode->i_lock); + + if (!IS_ERR(target_path)) + set_delayed_call(done, kfree_link, target_path); + + return target_path; +} + const struct inode_operations cifs_symlink_inode_ops = { .get_link = cifs_get_link, + .setattr = cifs_setattr, .permission = cifs_permission, .listxattr = cifs_listxattr, }; @@ -1143,7 +1187,9 @@ static loff_t cifs_remap_file_range(struct file *src_file, loff_t off, unsigned int xid; int rc; - if (remap_flags & ~(REMAP_FILE_DEDUP | REMAP_FILE_ADVISORY)) + if (remap_flags & REMAP_FILE_DEDUP) + return -EOPNOTSUPP; + if (remap_flags & ~REMAP_FILE_ADVISORY) return -EINVAL; cifs_dbg(FYI, "clone range\n"); @@ -1235,6 +1281,12 @@ ssize_t cifs_file_copychunk_range(unsigned int xid, lock_two_nondirectories(target_inode, src_inode); cifs_dbg(FYI, "about to flush pages\n"); + + rc = filemap_write_and_wait_range(src_inode->i_mapping, off, + off + len - 1); + if (rc) + goto unlock; + /* should we flush first and last page first */ truncate_inode_pages(&target_inode->i_data, 0); @@ -1249,6 +1301,8 @@ ssize_t cifs_file_copychunk_range(unsigned int xid, * that target is updated on the server */ CIFS_I(target_inode)->time = 0; + +unlock: /* although unlocking in the reverse order from locking is not * strictly necessary here it is a little cleaner to be consistent */ @@ -1543,8 +1597,7 @@ cifs_destroy_request_bufs(void) kmem_cache_destroy(cifs_sm_req_cachep); } -static int -cifs_init_mids(void) +static int init_mids(void) { cifs_mid_cachep = kmem_cache_create("cifs_mpx_ids", sizeof(struct mid_q_entry), 0, @@ -1562,8 +1615,7 @@ cifs_init_mids(void) return 0; } -static void -cifs_destroy_mids(void) +static void destroy_mids(void) { mempool_destroy(cifs_mid_poolp); kmem_cache_destroy(cifs_mid_cachep); @@ -1585,11 +1637,11 @@ init_cifs(void) atomic_set(&tcpSesReconnectCount, 0); atomic_set(&tconInfoReconnectCount, 0); - atomic_set(&bufAllocCount, 0); - atomic_set(&smBufAllocCount, 0); + atomic_set(&buf_alloc_count, 0); + atomic_set(&small_buf_alloc_count, 0); #ifdef CONFIG_CIFS_STATS2 - atomic_set(&totBufAllocCount, 0); - atomic_set(&totSmBufAllocCount, 0); + atomic_set(&total_buf_alloc_count, 0); + atomic_set(&total_small_buf_alloc_count, 0); if (slow_rsp_threshold < 1) cifs_dbg(FYI, "slow_response_threshold msgs disabled\n"); else if (slow_rsp_threshold > 32767) @@ -1597,7 +1649,7 @@ init_cifs(void) "slow response threshold set higher than recommended (0 to 32767)\n"); #endif /* CONFIG_CIFS_STATS2 */ - atomic_set(&midCount, 0); + atomic_set(&mid_count, 0); GlobalCurrentXid = 0; GlobalTotalActiveXid = 0; GlobalMaxActiveXid = 0; @@ -1664,7 +1716,7 @@ init_cifs(void) if (rc) goto out_unreg_fscache; - rc = cifs_init_mids(); + rc = init_mids(); if (rc) goto out_destroy_inodecache; @@ -1721,7 +1773,7 @@ init_cifs(void) #endif cifs_destroy_request_bufs(); out_destroy_mids: - cifs_destroy_mids(); + destroy_mids(); out_destroy_inodecache: cifs_destroy_inodecache(); out_unreg_fscache: @@ -1759,7 +1811,7 @@ exit_cifs(void) dfs_cache_destroy(); #endif cifs_destroy_request_bufs(); - cifs_destroy_mids(); + destroy_mids(); cifs_destroy_inodecache(); cifs_fscache_unregister(); destroy_workqueue(deferredclose_wq); diff --git a/fs/cifs/cifsfs.h b/fs/cifs/cifsfs.h index f7c91a3eb9a46..87f86f85a252c 100644 --- a/fs/cifs/cifsfs.h +++ b/fs/cifs/cifsfs.h @@ -105,8 +105,8 @@ extern int cifs_lock(struct file *, int, struct file_lock *); extern int cifs_fsync(struct file *, loff_t, loff_t, int); extern int cifs_strict_fsync(struct file *, loff_t, loff_t, int); extern int cifs_flush(struct file *, fl_owner_t id); -extern int cifs_file_mmap(struct file * , struct vm_area_struct *); -extern int cifs_file_strict_mmap(struct file * , struct vm_area_struct *); +extern int cifs_file_mmap(struct file *file, struct vm_area_struct *vma); +extern int cifs_file_strict_mmap(struct file *file, struct vm_area_struct *vma); extern const struct file_operations cifs_dir_ops; extern int cifs_dir_open(struct inode *inode, struct file *file); extern int cifs_readdir(struct file *file, struct dir_context *ctx); @@ -155,5 +155,7 @@ extern struct dentry *cifs_smb3_do_mount(struct file_system_type *fs_type, extern const struct export_operations cifs_export_ops; #endif /* CONFIG_CIFS_NFSD_EXPORT */ -#define CIFS_VERSION "2.33" +/* when changing internal version - update following two lines at same time */ +#define SMB3_PRODUCT_BUILD 44 +#define CIFS_VERSION "2.44" #endif /* _CIFSFS_H */ diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index 2ee67a27020d9..4ed9482cf29ed 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h @@ -17,15 +17,14 @@ #include #include #include +#include +#include #include "cifs_fs_sb.h" #include "cifsacl.h" #include -#include #include +#include "../smbfs_common/smb2pdu.h" #include "smb2pdu.h" -#include "smb2glob.h" - -#define CIFS_MAGIC_NUMBER 0xFF534D42 /* the first four bytes of SMB PDUs */ #define SMB_PATH_MAX 260 #define CIFS_PORT 445 @@ -77,9 +76,8 @@ #define SMB_ECHO_INTERVAL_MAX 600 #define SMB_ECHO_INTERVAL_DEFAULT 60 -/* dns resolution intervals in seconds */ -#define SMB_DNS_RESOLVE_INTERVAL_MIN 120 -#define SMB_DNS_RESOLVE_INTERVAL_DEFAULT 600 +/* smb multichannel query server interfaces interval in seconds */ +#define SMB_INTERFACE_POLL_INTERVAL 600 /* maximum number of PDUs in one compound */ #define MAX_COMPOUND 5 @@ -102,17 +100,43 @@ #define XATTR_DOS_ATTRIB "user.DOSATTRIB" #endif +#define CIFS_MAX_WORKSTATION_LEN (__NEW_UTS_LEN + 1) /* reasonable max for client */ + +#define CIFS_DFS_ROOT_SES(ses) ((ses)->dfs_root_ses ?: (ses)) + /* * CIFS vfs client Status information (based on what we know.) */ -/* associated with each tcp and smb session */ +/* associated with each connection */ enum statusEnum { CifsNew = 0, CifsGood, CifsExiting, CifsNeedReconnect, - CifsNeedNegotiate + CifsNeedNegotiate, + CifsInNegotiate, +}; + +/* associated with each smb session */ +enum ses_status_enum { + SES_NEW = 0, + SES_GOOD, + SES_EXITING, + SES_NEED_RECON, + SES_IN_SETUP +}; + +/* associated with each tree connection to the server */ +enum tid_status_enum { + TID_NEW = 0, + TID_GOOD, + TID_EXITING, + TID_NEED_RECON, + TID_NEED_TCON, + TID_IN_TCON, + TID_NEED_FILES_INVALIDATE, /* currently unused */ + TID_IN_FILES_INVALIDATE }; enum securityEnum { @@ -127,26 +151,16 @@ struct session_key { char *response; }; -/* crypto security descriptor definition */ -struct sdesc { - struct shash_desc shash; - char ctx[]; -}; - /* crypto hashing related structure/fields, not specific to a sec mech */ struct cifs_secmech { - struct crypto_shash *hmacmd5; /* hmac-md5 hash function */ - struct crypto_shash *md5; /* md5 hash function */ - struct crypto_shash *hmacsha256; /* hmac-sha256 hash function */ - struct crypto_shash *cmacaes; /* block-cipher based MAC function */ - struct crypto_shash *sha512; /* sha512 hash function */ - struct sdesc *sdeschmacmd5; /* ctxt to generate ntlmv2 hash, CR1 */ - struct sdesc *sdescmd5; /* ctxt to generate cifs/smb signature */ - struct sdesc *sdeschmacsha256; /* ctxt to generate smb2 signature */ - struct sdesc *sdesccmacaes; /* ctxt to generate smb3 signature */ - struct sdesc *sdescsha512; /* ctxt to generate smb3.11 signing key */ - struct crypto_aead *ccmaesencrypt; /* smb3 encryption aead */ - struct crypto_aead *ccmaesdecrypt; /* smb3 decryption aead */ + struct shash_desc *hmacmd5; /* hmacmd5 hash function, for NTLMv2/CR1 hashes */ + struct shash_desc *md5; /* md5 hash function, for CIFS/SMB1 signatures */ + struct shash_desc *hmacsha256; /* hmac-sha256 hash function, for SMB2 signatures */ + struct shash_desc *sha512; /* sha512 hash function, for SMB3.1.1 preauth hash */ + struct shash_desc *aes_cmac; /* block-cipher based MAC function, for SMB3 signatures */ + + struct crypto_aead *enc; /* smb3 encryption AEAD TFM (AES-CCM and AES-GCM) */ + struct crypto_aead *dec; /* smb3 decryption AEAD TFM (AES-CCM and AES-GCM) */ }; /* per smb session structure/fields */ @@ -169,6 +183,19 @@ struct cifs_cred { struct cifs_ace *aces; }; +struct cifs_open_info_data { + char *symlink_target; + union { + struct smb2_file_all_info fi; + struct smb311_posix_qinfo posix_fi; + }; +}; + +static inline void cifs_free_open_info(struct cifs_open_info_data *data) +{ + kfree(data->symlink_target); +} + /* ***************************************************************** * Except the CIFS PDUs themselves all the @@ -262,13 +289,16 @@ struct smb_version_operations { /* check if we need to negotiate */ bool (*need_neg)(struct TCP_Server_Info *); /* negotiate to the server */ - int (*negotiate)(const unsigned int, struct cifs_ses *); + int (*negotiate)(const unsigned int xid, + struct cifs_ses *ses, + struct TCP_Server_Info *server); /* set negotiated write size */ unsigned int (*negotiate_wsize)(struct cifs_tcon *tcon, struct smb3_fs_context *ctx); /* set negotiated read size */ unsigned int (*negotiate_rsize)(struct cifs_tcon *tcon, struct smb3_fs_context *ctx); /* setup smb sessionn */ int (*sess_setup)(const unsigned int, struct cifs_ses *, + struct TCP_Server_Info *server, const struct nls_table *); /* close smb session */ int (*logoff)(const unsigned int, struct cifs_ses *); @@ -288,20 +318,20 @@ struct smb_version_operations { int (*is_path_accessible)(const unsigned int, struct cifs_tcon *, struct cifs_sb_info *, const char *); /* query path data from the server */ - int (*query_path_info)(const unsigned int, struct cifs_tcon *, - struct cifs_sb_info *, const char *, - FILE_ALL_INFO *, bool *, bool *); + int (*query_path_info)(const unsigned int xid, struct cifs_tcon *tcon, + struct cifs_sb_info *cifs_sb, const char *full_path, + struct cifs_open_info_data *data, bool *adjust_tz, bool *reparse); /* query file data from the server */ - int (*query_file_info)(const unsigned int, struct cifs_tcon *, - struct cifs_fid *, FILE_ALL_INFO *); + int (*query_file_info)(const unsigned int xid, struct cifs_tcon *tcon, + struct cifsFileInfo *cfile, struct cifs_open_info_data *data); /* query reparse tag from srv to determine which type of special file */ int (*query_reparse_tag)(const unsigned int xid, struct cifs_tcon *tcon, struct cifs_sb_info *cifs_sb, const char *path, __u32 *reparse_tag); /* get server index number */ - int (*get_srv_inum)(const unsigned int, struct cifs_tcon *, - struct cifs_sb_info *, const char *, - u64 *uniqueid, FILE_ALL_INFO *); + int (*get_srv_inum)(const unsigned int xid, struct cifs_tcon *tcon, + struct cifs_sb_info *cifs_sb, const char *full_path, u64 *uniqueid, + struct cifs_open_info_data *data); /* set size by path */ int (*set_path_size)(const unsigned int, struct cifs_tcon *, const char *, __u64, struct cifs_sb_info *, bool); @@ -350,8 +380,8 @@ struct smb_version_operations { struct cifs_sb_info *, const char *, char **, bool); /* open a file for non-posix mounts */ - int (*open)(const unsigned int, struct cifs_open_parms *, - __u32 *, FILE_ALL_INFO *); + int (*open)(const unsigned int xid, struct cifs_open_parms *oparms, __u32 *oplock, + void *buf); /* set fid protocol-specific info */ void (*set_fid)(struct cifsFileInfo *, struct cifs_fid *, __u32); /* close a file */ @@ -388,7 +418,7 @@ struct smb_version_operations { int (*close_dir)(const unsigned int, struct cifs_tcon *, struct cifs_fid *); /* calculate a size of SMB message */ - unsigned int (*calc_smb_size)(void *buf, struct TCP_Server_Info *ptcpi); + unsigned int (*calc_smb_size)(void *buf); /* check for STATUS_PENDING and process the response if yes */ bool (*is_status_pending)(char *buf, struct TCP_Server_Info *server); /* check for STATUS_NETWORK_SESSION_EXPIRED */ @@ -413,7 +443,8 @@ struct smb_version_operations { void (*set_lease_key)(struct inode *, struct cifs_fid *); /* generate new lease key */ void (*new_lease_key)(struct cifs_fid *); - int (*generate_signingkey)(struct cifs_ses *); + int (*generate_signingkey)(struct cifs_ses *ses, + struct TCP_Server_Info *server); int (*calc_signature)(struct smb_rqst *, struct TCP_Server_Info *, bool allocate_crypto); int (*set_integrity)(const unsigned int, struct cifs_tcon *tcon, @@ -421,7 +452,7 @@ struct smb_version_operations { int (*enum_snapshots)(const unsigned int xid, struct cifs_tcon *tcon, struct cifsFileInfo *src_file, void __user *); int (*notify)(const unsigned int xid, struct file *pfile, - void __user *pbuf); + void __user *pbuf, bool return_changes); int (*query_mf_symlink)(unsigned int, struct cifs_tcon *, struct cifs_sb_info *, const unsigned char *, char *, unsigned int *); @@ -527,6 +558,8 @@ struct smb_version_values { #define HEADER_SIZE(server) (server->vals->header_size) #define MAX_HEADER_SIZE(server) (server->vals->max_header_size) +#define HEADER_PREAMBLE_SIZE(server) (server->vals->header_preamble_size) +#define MID_HEADER_SIZE(server) (HEADER_SIZE(server) - 1 - HEADER_PREAMBLE_SIZE(server)) /** * CIFS superblock mount flags (mnt_cifs_flags) to consider when @@ -575,13 +608,14 @@ inc_rfc1001_len(void *buf, int count) struct TCP_Server_Info { struct list_head tcp_ses_list; struct list_head smb_ses_list; + spinlock_t srv_lock; /* protect anything here that is not protected */ __u64 conn_id; /* connection identifier (useful for debugging) */ int srv_count; /* reference counter */ /* 15 character server name + 0x20 16th byte indicating type = srv */ char server_RFC1001_name[RFC1001_NAME_LEN_WITH_NULL]; struct smb_version_operations *ops; struct smb_version_values *vals; - /* updates to tcpStatus protected by GlobalMid_Lock */ + /* updates to tcpStatus protected by cifs_tcp_ses_lock */ enum statusEnum tcpStatus; /* what we think the status is */ char *hostname; /* hostname portion of UNC string */ struct socket *ssocket; @@ -592,6 +626,7 @@ struct TCP_Server_Info { #endif wait_queue_head_t response_q; wait_queue_head_t request_q; /* if more than maxmpx to srvr must block*/ + spinlock_t mid_lock; /* protect mid queue and it's entries */ struct list_head pending_mid_q; bool noblocksnd; /* use blocking sendmsg */ bool noautotune; /* do not autotune send buf sizes */ @@ -602,7 +637,8 @@ struct TCP_Server_Info { unsigned int in_flight; /* number of requests on the wire to server */ unsigned int max_in_flight; /* max number of requests that were on wire */ spinlock_t req_lock; /* protect the two values above */ - struct mutex srv_mutex; + struct mutex _srv_mutex; + unsigned int nofs_flag; struct task_struct *tsk; char server_GUID[16]; __u16 sec_mode; @@ -650,7 +686,6 @@ struct TCP_Server_Info { /* point to the SMBD connection if RDMA is used instead of socket */ struct smbd_connection *smbd_conn; struct delayed_work echo; /* echo ping workqueue job */ - struct delayed_work resolve; /* dns resolution workqueue job */ char *smallbuf; /* pointer to current "small" buffer */ char *bigbuf; /* pointer to current "big" buffer */ /* Total size of this PDU. Only valid from cifs_demultiplex_thread */ @@ -689,29 +724,58 @@ struct TCP_Server_Info { */ int nr_targets; bool noblockcnt; /* use non-blocking connect() */ - bool is_channel; /* if a session channel */ + + /* + * If this is a session channel, + * primary_server holds the ref-counted + * pointer to primary channel connection for the session. + */ +#define CIFS_SERVER_IS_CHAN(server) (!!(server)->primary_server) + struct TCP_Server_Info *primary_server; + #ifdef CONFIG_CIFS_SWN_UPCALL bool use_swn_dstaddr; struct sockaddr_storage swn_dstaddr; #endif -#ifdef CONFIG_CIFS_DFS_UPCALL - bool is_dfs_conn; /* if a dfs connection */ struct mutex refpath_lock; /* protects leaf_fullpath */ /* - * Canonical DFS full paths that were used to chase referrals in mount and reconnect. - * - * origin_fullpath: first or original referral path - * leaf_fullpath: last referral path (might be changed due to nested links in reconnect) + * leaf_fullpath: Canonical DFS referral path related to this + * connection. + * It is used in DFS cache refresher, reconnect and may + * change due to nested DFS links. * - * current_fullpath: pointer to either origin_fullpath or leaf_fullpath - * NOTE: cannot be accessed outside cifs_reconnect() and smb2_reconnect() + * Protected by @refpath_lock and @srv_lock. The @refpath_lock is + * mostly used for not requiring a copy of @leaf_fullpath when getting + * cached or new DFS referrals (which might also sleep during I/O). + * While @srv_lock is held for making string and NULL comparions against + * both fields as in mount(2) and cache refresh. * - * format: \\HOST\SHARE\[OPTIONAL PATH] + * format: \\HOST\SHARE[\OPTIONAL PATH] */ - char *origin_fullpath, *leaf_fullpath, *current_fullpath; -#endif + char *leaf_fullpath; }; +static inline bool is_smb1(struct TCP_Server_Info *server) +{ + return HEADER_PREAMBLE_SIZE(server) != 0; +} + +static inline void cifs_server_lock(struct TCP_Server_Info *server) +{ + unsigned int nofs_flag = memalloc_nofs_save(); + + mutex_lock(&server->_srv_mutex); + server->nofs_flag = nofs_flag; +} + +static inline void cifs_server_unlock(struct TCP_Server_Info *server) +{ + unsigned int nofs_flag = server->nofs_flag; + + mutex_unlock(&server->_srv_mutex); + memalloc_nofs_restore(nofs_flag); +} + struct cifs_credits { unsigned int value; unsigned int instance; @@ -721,6 +785,7 @@ static inline unsigned int in_flight(struct TCP_Server_Info *server) { unsigned int num; + spin_lock(&server->req_lock); num = server->in_flight; spin_unlock(&server->req_lock); @@ -731,6 +796,7 @@ static inline bool has_credits(struct TCP_Server_Info *server, int *credits, int num_credits) { int num; + spin_lock(&server->req_lock); num = *credits; spin_unlock(&server->req_lock); @@ -794,7 +860,7 @@ revert_current_mid(struct TCP_Server_Info *server, const unsigned int val) static inline void revert_current_mid_from_hdr(struct TCP_Server_Info *server, - const struct smb2_sync_hdr *shdr) + const struct smb2_hdr *shdr) { unsigned int num = le16_to_cpu(shdr->CreditCharge); @@ -837,13 +903,7 @@ compare_mid(__u16 mid, const struct smb_hdr *smb) #define CIFS_MAX_RFC1002_WSIZE ((1<<17) - 1 - sizeof(WRITE_REQ) + 4) #define CIFS_MAX_RFC1002_RSIZE ((1<<17) - 1 - sizeof(READ_RSP) + 4) -/* - * The default wsize is 1M. find_get_pages seems to return a maximum of 256 - * pages in a single call. With PAGE_SIZE == 4k, this means we can fill - * a single wsize request with a single call. - */ #define CIFS_DEFAULT_IOSIZE (1024 * 1024) -#define SMB3_DEFAULT_IOSIZE (4 * 1024 * 1024) /* * Windows only supports a max of 60kb reads and 65535 byte writes. Default to @@ -890,14 +950,30 @@ static inline void cifs_set_net_ns(struct TCP_Server_Info *srv, struct net *net) #endif struct cifs_server_iface { + struct list_head iface_head; + struct kref refcount; size_t speed; unsigned int rdma_capable : 1; unsigned int rss_capable : 1; + unsigned int is_active : 1; /* unset if non existent */ struct sockaddr_storage sockaddr; }; +/* release iface when last ref is dropped */ +static inline void +release_iface(struct kref *ref) +{ + struct cifs_server_iface *iface = container_of(ref, + struct cifs_server_iface, + refcount); + list_del_init(&iface->iface_head); + kfree(iface); +} + struct cifs_chan { + unsigned int in_reconnect : 1; /* if session setup in progress for this channel */ struct TCP_Server_Info *server; + struct cifs_server_iface *iface; /* interface in use */ __u8 signkey[SMB3_SIGN_KEY_SIZE]; }; @@ -906,13 +982,15 @@ struct cifs_chan { */ struct cifs_ses { struct list_head smb_ses_list; + struct list_head rlist; /* reconnect list */ struct list_head tcon_list; struct cifs_tcon *tcon_ipc; + spinlock_t ses_lock; /* protect anything here that is not protected */ struct mutex session_mutex; struct TCP_Server_Info *server; /* pointer to server info */ int ses_count; /* reference counter */ - enum statusEnum status; /* updates protected by GlobalMid_Lock */ - unsigned overrideSecFlg; /* if non-zero override global sec flags */ + enum ses_status_enum ses_status; /* updates protected by cifs_tcp_ses_lock */ + unsigned int overrideSecFlg; /* if non-zero override global sec flags */ char *serverOS; /* name of operating system underlying server */ char *serverNOS; /* name of network operating system of server */ char *serverDomain; /* security realm of server */ @@ -925,21 +1003,18 @@ struct cifs_ses { and after mount option parsing we fill it */ char *domainName; char *password; + char workstation_name[CIFS_MAX_WORKSTATION_LEN]; struct session_key auth_key; struct ntlmssp_auth *ntlmssp; /* ciphertext, flags, server challenge */ enum securityEnum sectype; /* what security flavor was specified? */ bool sign; /* is signing required? */ - bool need_reconnect:1; /* connection reset, uid now invalid */ bool domainAuto:1; - bool binding:1; /* are we binding the session? */ __u16 session_flags; __u8 smb3signingkey[SMB3_SIGN_KEY_SIZE]; __u8 smb3encryptionkey[SMB3_ENC_DEC_KEY_SIZE]; __u8 smb3decryptionkey[SMB3_ENC_DEC_KEY_SIZE]; __u8 preauth_sha_hash[SMB2_PREAUTH_HASH_SIZE]; - __u8 binding_preauth_sha_hash[SMB2_PREAUTH_HASH_SIZE]; - /* * Network interfaces available on the server this session is * connected to. @@ -951,7 +1026,7 @@ struct cifs_ses { */ spinlock_t iface_lock; /* ========= begin: protected by iface_lock ======== */ - struct cifs_server_iface *iface_list; + struct list_head iface_list; size_t iface_count; unsigned long iface_last_update; /* jiffies */ /* ========= end: protected by iface_lock ======== */ @@ -959,63 +1034,75 @@ struct cifs_ses { spinlock_t chan_lock; /* ========= begin: protected by chan_lock ======== */ #define CIFS_MAX_CHANNELS 16 +#define CIFS_ALL_CHANNELS_SET(ses) \ + ((1UL << (ses)->chan_count) - 1) +#define CIFS_ALL_CHANS_GOOD(ses) \ + (!(ses)->chans_need_reconnect) +#define CIFS_ALL_CHANS_NEED_RECONNECT(ses) \ + ((ses)->chans_need_reconnect == CIFS_ALL_CHANNELS_SET(ses)) +#define CIFS_SET_ALL_CHANS_NEED_RECONNECT(ses) \ + ((ses)->chans_need_reconnect = CIFS_ALL_CHANNELS_SET(ses)) +#define CIFS_CHAN_NEEDS_RECONNECT(ses, index) \ + test_bit((index), &(ses)->chans_need_reconnect) +#define CIFS_CHAN_IN_RECONNECT(ses, index) \ + ((ses)->chans[(index)].in_reconnect) + struct cifs_chan chans[CIFS_MAX_CHANNELS]; - struct cifs_chan *binding_chan; size_t chan_count; size_t chan_max; atomic_t chan_seq; /* round robin state */ + + /* + * chans_need_reconnect is a bitmap indicating which of the channels + * under this smb session needs to be reconnected. + * If not multichannel session, only one bit will be used. + * + * We will ask for sess and tcon reconnection only if all the + * channels are marked for needing reconnection. This will + * enable the sessions on top to continue to live till any + * of the channels below are active. + */ + unsigned long chans_need_reconnect; /* ========= end: protected by chan_lock ======== */ + struct cifs_ses *dfs_root_ses; }; -/* - * When binding a new channel, we need to access the channel which isn't fully - * established yet. - */ - -static inline -struct cifs_chan *cifs_ses_binding_channel(struct cifs_ses *ses) +static inline bool +cap_unix(struct cifs_ses *ses) { - if (ses->binding) - return ses->binding_chan; - else - return NULL; + return ses->server->vals->cap_unix & ses->capabilities; } /* - * Returns the server pointer of the session. When binding a new - * channel this returns the last channel which isn't fully established - * yet. - * - * This function should be use for negprot/sess.setup codepaths. For - * the other requests see cifs_pick_channel(). + * common struct for holding inode info when searching for or updating an + * inode with new info */ -static inline -struct TCP_Server_Info *cifs_ses_server(struct cifs_ses *ses) -{ - if (ses->binding) - return ses->binding_chan->server; - else - return ses->server; -} -static inline bool -cap_unix(struct cifs_ses *ses) -{ - return ses->server->vals->cap_unix & ses->capabilities; -} +#define CIFS_FATTR_DFS_REFERRAL 0x1 +#define CIFS_FATTR_DELETE_PENDING 0x2 +#define CIFS_FATTR_NEED_REVAL 0x4 +#define CIFS_FATTR_INO_COLLISION 0x8 +#define CIFS_FATTR_UNKNOWN_NLINK 0x10 +#define CIFS_FATTR_FAKE_ROOT_INO 0x20 -struct cached_fid { - bool is_valid:1; /* Do we have a useable root fid */ - bool file_all_info_is_valid:1; - bool has_lease:1; - unsigned long time; /* jiffies of when lease was taken */ - struct kref refcount; - struct cifs_fid *fid; - struct mutex fid_mutex; - struct cifs_tcon *tcon; - struct dentry *dentry; - struct work_struct lease_break; - struct smb2_file_all_info file_all_info; +struct cifs_fattr { + u32 cf_flags; + u32 cf_cifsattrs; + u64 cf_uniqueid; + u64 cf_eof; + u64 cf_bytes; + u64 cf_createtime; + kuid_t cf_uid; + kgid_t cf_gid; + umode_t cf_mode; + dev_t cf_rdev; + unsigned int cf_nlink; + unsigned int cf_dtype; + struct timespec64 cf_atime; + struct timespec64 cf_mtime; + struct timespec64 cf_ctime; + u32 cf_cifstag; + char *cf_symlink_target; }; /* @@ -1026,17 +1113,18 @@ struct cifs_tcon { struct list_head tcon_list; int tc_count; struct list_head rlist; /* reconnect list */ + spinlock_t tc_lock; /* protect anything here that is not protected */ atomic_t num_local_opens; /* num of all opens including disconnected */ atomic_t num_remote_opens; /* num of all network opens on server */ struct list_head openFileList; spinlock_t open_file_lock; /* protects list above */ struct cifs_ses *ses; /* pointer to session associated with */ - char treeName[MAX_TREE_SIZE + 1]; /* UNC name of resource in ASCII */ + char tree_name[MAX_TREE_SIZE + 1]; /* UNC name of resource in ASCII */ char *nativeFileSystem; char *password; /* for share-level security */ __u32 tid; /* The 4 byte tree id */ __u16 Flags; /* optional support bits */ - enum statusEnum tidStatus; + enum tid_status_enum status; atomic_t num_smbs_sent; union { struct { @@ -1110,11 +1198,14 @@ struct cifs_tcon { struct fscache_cookie *fscache; /* cookie for share */ #endif struct list_head pending_opens; /* list of incomplete opens */ - struct cached_fid crfid; /* Cached root fid */ + struct cached_fids *cfids; /* BB add field for back pointer to sb struct(s)? */ #ifdef CONFIG_CIFS_DFS_UPCALL - struct list_head ulist; /* cache update list */ + struct list_head dfs_ses_list; + struct delayed_work dfs_cache_work; #endif + struct delayed_work query_interfaces; /* query interfaces workqueue job */ + char *origin_fullpath; /* canonical copy of smb3_fs_context::source */ }; /* @@ -1258,7 +1349,7 @@ struct cifsFileInfo { __u32 pid; /* process id who opened file */ struct cifs_fid fid; /* file id from remote */ struct list_head rlist; /* reconnect list */ - /* BB add lock scope info here if needed */ ; + /* BB add lock scope info here if needed */ /* lock scope id (0 if none) */ struct dentry *dentry; struct tcon_link *tlink; @@ -1276,6 +1367,7 @@ struct cifsFileInfo { struct work_struct put; /* work for the final part of _put */ struct delayed_work deferred; bool deferred_close_scheduled; /* Flag to indicate close is scheduled */ + char *symlink_target; }; struct cifs_io_parms { @@ -1437,6 +1529,7 @@ struct cifsInodeInfo { struct list_head deferred_closes; /* list of deferred closes */ spinlock_t deferred_lock; /* protection on deferred list */ bool lease_granted; /* Flag to indicate whether lease or oplock is granted. */ + char *symlink_target; }; static inline struct cifsInodeInfo * @@ -1635,35 +1728,14 @@ struct file_list { struct cifsFileInfo *cfile; }; -/* - * common struct for holding inode info when searching for or updating an - * inode with new info - */ - -#define CIFS_FATTR_DFS_REFERRAL 0x1 -#define CIFS_FATTR_DELETE_PENDING 0x2 -#define CIFS_FATTR_NEED_REVAL 0x4 -#define CIFS_FATTR_INO_COLLISION 0x8 -#define CIFS_FATTR_UNKNOWN_NLINK 0x10 -#define CIFS_FATTR_FAKE_ROOT_INO 0x20 - -struct cifs_fattr { - u32 cf_flags; - u32 cf_cifsattrs; - u64 cf_uniqueid; - u64 cf_eof; - u64 cf_bytes; - u64 cf_createtime; - kuid_t cf_uid; - kgid_t cf_gid; - umode_t cf_mode; - dev_t cf_rdev; - unsigned int cf_nlink; - unsigned int cf_dtype; - struct timespec64 cf_atime; - struct timespec64 cf_mtime; - struct timespec64 cf_ctime; - u32 cf_cifstag; +struct cifs_mount_ctx { + struct cifs_sb_info *cifs_sb; + struct smb3_fs_context *fs_ctx; + unsigned int xid; + struct TCP_Server_Info *server; + struct cifs_ses *ses; + struct cifs_tcon *tcon; + struct list_head dfs_ses_list; }; static inline void free_dfs_info_param(struct dfs_info3_param *param) @@ -1678,6 +1750,7 @@ static inline void free_dfs_info_array(struct dfs_info3_param *param, int number_of_items) { int i; + if ((number_of_items == 0) || (param == NULL)) return; for (i = 0; i < number_of_items; i++) { @@ -1789,33 +1862,78 @@ require use of the stronger protocol */ */ /**************************************************************************** - * Locking notes. All updates to global variables and lists should be - * protected by spinlocks or semaphores. + * Here are all the locks (spinlock, mutex, semaphore) in cifs.ko, arranged according + * to the locking order. i.e. if two locks are to be held together, the lock that + * appears higher in this list needs to be taken before the other. + * + * If you hold a lock that is lower in this list, and you need to take a higher lock + * (or if you think that one of the functions that you're calling may need to), first + * drop the lock you hold, pick up the higher lock, then the lower one. This will + * ensure that locks are picked up only in one direction in the below table + * (top to bottom). + * + * Also, if you expect a function to be called with a lock held, explicitly document + * this in the comments on top of your function definition. * - * Spinlocks - * --------- - * GlobalMid_Lock protects: - * list operations on pending_mid_q and oplockQ - * updates to XID counters, multiplex id and SMB sequence numbers - * list operations on global DnotifyReqList - * updates to ses->status and TCP_Server_Info->tcpStatus - * updates to server->CurrentMid - * tcp_ses_lock protects: - * list operations on tcp and SMB session lists - * tcon->open_file_lock protects the list of open files hanging off the tcon - * inode->open_file_lock protects the openFileList hanging off the inode - * cfile->file_info_lock protects counters and fields in cifs file struct - * f_owner.lock protects certain per file struct operations - * mapping->page_lock protects certain per page operations + * And also, try to keep the critical sections (lock hold time) to be as minimal as + * possible. Blocking / calling other functions with a lock held always increase + * the risk of a possible deadlock. * - * Note that the cifs_tcon.open_file_lock should be taken before - * not after the cifsInodeInfo.open_file_lock + * Following this rule will avoid unnecessary deadlocks, which can get really hard to + * debug. Also, any new lock that you introduce, please add to this list in the correct + * order. * - * Semaphores - * ---------- - * cifsInodeInfo->lock_sem protects: - * the list of locks held by the inode + * Please populate this list whenever you introduce new locks in your changes. Or in + * case I've missed some existing locks. Please ensure that it's added in the list + * based on the locking order expected. * + * ===================================================================================== + * Lock Protects Initialization fn + * ===================================================================================== + * vol_list_lock + * vol_info->ctx_lock vol_info->ctx + * cifs_sb_info->tlink_tree_lock cifs_sb_info->tlink_tree cifs_setup_cifs_sb + * TCP_Server_Info-> TCP_Server_Info cifs_get_tcp_session + * reconnect_mutex + * TCP_Server_Info->srv_mutex TCP_Server_Info cifs_get_tcp_session + * cifs_ses->session_mutex cifs_ses sesInfoAlloc + * cifs_tcon + * cifs_tcon->open_file_lock cifs_tcon->openFileList tconInfoAlloc + * cifs_tcon->pending_opens + * cifs_tcon->stat_lock cifs_tcon->bytes_read tconInfoAlloc + * cifs_tcon->bytes_written + * cifs_tcp_ses_lock cifs_tcp_ses_list sesInfoAlloc + * GlobalMid_Lock GlobalMaxActiveXid init_cifs + * GlobalCurrentXid + * GlobalTotalActiveXid + * TCP_Server_Info->srv_lock (anything in struct not protected by another lock and can change) + * TCP_Server_Info->mid_lock TCP_Server_Info->pending_mid_q cifs_get_tcp_session + * ->CurrentMid + * (any changes in mid_q_entry fields) + * TCP_Server_Info->req_lock TCP_Server_Info->in_flight cifs_get_tcp_session + * ->credits + * ->echo_credits + * ->oplock_credits + * ->reconnect_instance + * cifs_ses->ses_lock (anything that is not protected by another lock and can change) + * cifs_ses->iface_lock cifs_ses->iface_list sesInfoAlloc + * ->iface_count + * ->iface_last_update + * cifs_ses->chan_lock cifs_ses->chans + * ->chans_need_reconnect + * ->chans_in_reconnect + * cifs_tcon->tc_lock (anything that is not protected by another lock and can change) + * cifsInodeInfo->open_file_lock cifsInodeInfo->openFileList cifs_alloc_inode + * cifsInodeInfo->writers_lock cifsInodeInfo->writers cifsInodeInfo_alloc + * cifsInodeInfo->lock_sem cifsInodeInfo->llist cifs_init_once + * ->can_cache_brlcks + * cifsInodeInfo->deferred_lock cifsInodeInfo->deferred_closes cifsInodeInfo_alloc + * cached_fid->fid_mutex cifs_tcon->crfid tconInfoAlloc + * cifsFileInfo->fh_mutex cifsFileInfo cifs_new_fileinfo + * cifsFileInfo->file_info_lock cifsFileInfo->count cifs_new_fileinfo + * ->invalidHandle initiate_cifs_search + * ->oplock_break_cancelled + * cifs_aio_ctx->aio_mutex cifs_aio_ctx cifs_aio_ctx_alloc ****************************************************************************/ #ifdef DECLARE_GLOBALS_HERE @@ -1831,47 +1949,44 @@ require use of the stronger protocol */ * sessions (and from that the tree connections) can be found * by iterating over cifs_tcp_ses_list */ -GLOBAL_EXTERN struct list_head cifs_tcp_ses_list; +extern struct list_head cifs_tcp_ses_list; /* * This lock protects the cifs_tcp_ses_list, the list of smb sessions per * tcp session, and the list of tcon's per smb session. It also protects - * the reference counters for the server, smb session, and tcon. It also - * protects some fields in the TCP_Server_Info struct such as dstaddr. Finally, - * changes to the tcon->tidStatus should be done while holding this lock. + * the reference counters for the server, smb session, and tcon. * generally the locks should be taken in order tcp_ses_lock before * tcon->open_file_lock and that before file->file_info_lock since the * structure order is cifs_socket-->cifs_ses-->cifs_tcon-->cifs_file */ -GLOBAL_EXTERN spinlock_t cifs_tcp_ses_lock; +extern spinlock_t cifs_tcp_ses_lock; /* * Global transaction id (XID) information */ -GLOBAL_EXTERN unsigned int GlobalCurrentXid; /* protected by GlobalMid_Sem */ -GLOBAL_EXTERN unsigned int GlobalTotalActiveXid; /* prot by GlobalMid_Sem */ -GLOBAL_EXTERN unsigned int GlobalMaxActiveXid; /* prot by GlobalMid_Sem */ -GLOBAL_EXTERN spinlock_t GlobalMid_Lock; /* protects above & list operations */ - /* on midQ entries */ +extern unsigned int GlobalCurrentXid; /* protected by GlobalMid_Sem */ +extern unsigned int GlobalTotalActiveXid; /* prot by GlobalMid_Sem */ +extern unsigned int GlobalMaxActiveXid; /* prot by GlobalMid_Sem */ +extern spinlock_t GlobalMid_Lock; /* protects above & list operations on midQ entries */ + /* * Global counters, updated atomically */ -GLOBAL_EXTERN atomic_t sesInfoAllocCount; -GLOBAL_EXTERN atomic_t tconInfoAllocCount; -GLOBAL_EXTERN atomic_t tcpSesNextId; -GLOBAL_EXTERN atomic_t tcpSesAllocCount; -GLOBAL_EXTERN atomic_t tcpSesReconnectCount; -GLOBAL_EXTERN atomic_t tconInfoReconnectCount; +extern atomic_t sesInfoAllocCount; +extern atomic_t tconInfoAllocCount; +extern atomic_t tcpSesNextId; +extern atomic_t tcpSesAllocCount; +extern atomic_t tcpSesReconnectCount; +extern atomic_t tconInfoReconnectCount; /* Various Debug counters */ -GLOBAL_EXTERN atomic_t bufAllocCount; /* current number allocated */ +extern atomic_t buf_alloc_count; /* current number allocated */ +extern atomic_t small_buf_alloc_count; #ifdef CONFIG_CIFS_STATS2 -GLOBAL_EXTERN atomic_t totBufAllocCount; /* total allocated over all time */ -GLOBAL_EXTERN atomic_t totSmBufAllocCount; +extern atomic_t total_buf_alloc_count; /* total allocated over all time */ +extern atomic_t total_small_buf_alloc_count; extern unsigned int slow_rsp_threshold; /* number of secs before logging */ #endif -GLOBAL_EXTERN atomic_t smBufAllocCount; -GLOBAL_EXTERN atomic_t midCount; /* Misc globals */ extern bool enable_oplocks; /* enable or disable oplocks */ @@ -1888,6 +2003,7 @@ extern unsigned int cifs_min_rcv; /* min size of big ntwrk buf pool */ extern unsigned int cifs_min_small; /* min size of small buf pool */ extern unsigned int cifs_max_pending; /* MAX requests at once to server*/ extern bool disable_legacy_dialects; /* forbid vers=1.0 and vers=2.0 mounts */ +extern atomic_t mid_count; void cifs_oplock_break(struct work_struct *work); void cifs_queue_oplock_break(struct cifsFileInfo *cfile); @@ -1975,6 +2091,34 @@ static inline bool cifs_is_referral_server(struct cifs_tcon *tcon, return is_tcon_dfs(tcon) || (ref && (ref->flags & DFSREF_REFERRAL_SERVER)); } +static inline u64 cifs_flock_len(const struct file_lock *fl) +{ + return (u64)fl->fl_end - fl->fl_start + 1; +} + +static inline size_t ntlmssp_workstation_name_size(const struct cifs_ses *ses) +{ + if (WARN_ON_ONCE(!ses || !ses->server)) + return 0; + /* + * Make workstation name no more than 15 chars when using insecure dialects as some legacy + * servers do require it during NTLMSSP. + */ + if (ses->server->dialect <= SMB20_PROT_ID) + return min_t(size_t, sizeof(ses->workstation_name), RFC1001_NAME_LEN_WITH_NULL); + return sizeof(ses->workstation_name); +} + +static inline void move_cifs_info_to_smb2(struct smb2_file_all_info *dst, const FILE_ALL_INFO *src) +{ + memcpy(dst, src, (size_t)((u8 *)&src->AccessFlags - (u8 *)src)); + dst->AccessFlags = src->AccessFlags; + dst->CurrentByteOffset = src->CurrentByteOffset; + dst->Mode = src->Mode; + dst->AlignmentRequirement = src->AlignmentRequirement; + dst->FileNameLength = src->FileNameLength; +} + static inline unsigned int cifs_get_num_sgs(const struct smb_rqst *rqst, int num_rqst, const u8 *sig) @@ -1984,6 +2128,12 @@ static inline unsigned int cifs_get_num_sgs(const struct smb_rqst *rqst, unsigned long addr; int i, j; + /* + * The first rqst has a transform header where the first 20 bytes are + * not part of the encrypted blob. + */ + skip = 20; + /* Assumes the first rqst has a transform header as the first iov. * I.e. * rqst[0].rq_iov[0] is transform header @@ -1991,14 +2141,9 @@ static inline unsigned int cifs_get_num_sgs(const struct smb_rqst *rqst, * rqst[1+].rq_iov[0+] data to be encrypted/decrypted */ for (i = 0; i < num_rqst; i++) { - /* - * The first rqst has a transform header where the - * first 20 bytes are not part of the encrypted blob. - */ for (j = 0; j < rqst[i].rq_nvec; j++) { struct kvec *iov = &rqst[i].rq_iov[j]; - skip = (i == 0) && (j == 0) ? 20 : 0; addr = (unsigned long)iov->iov_base + skip; if (unlikely(is_vmalloc_addr((void *)addr))) { len = iov->iov_len - skip; @@ -2007,6 +2152,7 @@ static inline unsigned int cifs_get_num_sgs(const struct smb_rqst *rqst, } else { nents++; } + skip = 0; } nents += rqst[i].rq_npages; } diff --git a/fs/cifs/cifspdu.h b/fs/cifs/cifspdu.h index d2ff438fd31f8..445e3eaebcc19 100644 --- a/fs/cifs/cifspdu.h +++ b/fs/cifs/cifspdu.h @@ -123,18 +123,6 @@ */ #define CIFS_SESS_KEY_SIZE (16) -/* - * Size of the smb3 signing key - */ -#define SMB3_SIGN_KEY_SIZE (16) - -/* - * Size of the smb3 encryption/decryption key storage. - * This size is big enough to store any cipher key types. - */ -#define SMB3_ENC_DEC_KEY_SIZE (32) - -#define CIFS_CLIENT_CHALLENGE_SIZE (8) #define CIFS_SERVER_CHALLENGE_SIZE (8) #define CIFS_HMAC_MD5_HASH_SIZE (16) #define CIFS_CPHTXT_SIZE (16) @@ -495,7 +483,7 @@ put_bcc(__u16 count, struct smb_hdr *hdr) typedef struct negotiate_req { struct smb_hdr hdr; /* wct = 0 */ __le16 ByteCount; - unsigned char DialectsArray[1]; + unsigned char DialectsArray[]; } __attribute__((packed)) NEGOTIATE_REQ; #define MIN_TZ_ADJ (15 * 60) /* minimum grid for timezones in seconds */ @@ -520,13 +508,14 @@ typedef struct negotiate_rsp { __u8 EncryptionKeyLength; __u16 ByteCount; union { - unsigned char EncryptionKey[1]; /* cap extended security off */ + /* cap extended security off */ + DECLARE_FLEX_ARRAY(unsigned char, EncryptionKey); /* followed by Domain name - if extended security is off */ /* followed by 16 bytes of server GUID */ /* then security blob if cap_extended_security negotiated */ struct { unsigned char GUID[SMB1_CLIENT_GUID_SIZE]; - unsigned char SecurityBlob[1]; + unsigned char SecurityBlob[]; } __attribute__((packed)) extended_response; } __attribute__((packed)) u; } __attribute__((packed)) NEGOTIATE_RSP; @@ -573,7 +562,7 @@ typedef union smb_com_session_setup_andx { __u32 Reserved; __le32 Capabilities; /* see below */ __le16 ByteCount; - unsigned char SecurityBlob[1]; /* followed by */ + unsigned char SecurityBlob[]; /* followed by */ /* STRING NativeOS */ /* STRING NativeLanMan */ } __attribute__((packed)) req; /* NTLM request format (with @@ -593,7 +582,7 @@ typedef union smb_com_session_setup_andx { __u32 Reserved; /* see below */ __le32 Capabilities; __le16 ByteCount; - unsigned char CaseInsensitivePassword[1]; /* followed by: */ + unsigned char CaseInsensitivePassword[]; /* followed by: */ /* unsigned char * CaseSensitivePassword; */ /* STRING AccountName */ /* STRING PrimaryDomain */ @@ -610,7 +599,7 @@ typedef union smb_com_session_setup_andx { __le16 Action; /* see below */ __le16 SecurityBlobLength; __u16 ByteCount; - unsigned char SecurityBlob[1]; /* followed by */ + unsigned char SecurityBlob[]; /* followed by */ /* unsigned char * NativeOS; */ /* unsigned char * NativeLanMan; */ /* unsigned char * PrimaryDomain; */ @@ -629,7 +618,7 @@ typedef union smb_com_session_setup_andx { __le16 PasswordLength; __u32 Reserved; /* encrypt key len and offset */ __le16 ByteCount; - unsigned char AccountPassword[1]; /* followed by */ + unsigned char AccountPassword[]; /* followed by */ /* STRING AccountName */ /* STRING PrimaryDomain */ /* STRING NativeOS */ @@ -643,7 +632,7 @@ typedef union smb_com_session_setup_andx { __le16 AndXOffset; __le16 Action; /* see below */ __u16 ByteCount; - unsigned char NativeOS[1]; /* followed by */ + unsigned char NativeOS[]; /* followed by */ /* unsigned char * NativeLanMan; */ /* unsigned char * PrimaryDomain; */ } __attribute__((packed)) old_resp; /* pre-NTLM (LANMAN2.1) response */ @@ -704,7 +693,7 @@ typedef struct smb_com_tconx_req { __le16 Flags; /* see below */ __le16 PasswordLength; __le16 ByteCount; - unsigned char Password[1]; /* followed by */ + unsigned char Password[]; /* followed by */ /* STRING Path *//* \\server\share name */ /* STRING Service */ } __attribute__((packed)) TCONX_REQ; @@ -716,7 +705,7 @@ typedef struct smb_com_tconx_rsp { __le16 AndXOffset; __le16 OptionalSupport; /* see below */ __u16 ByteCount; - unsigned char Service[1]; /* always ASCII, not Unicode */ + unsigned char Service[]; /* always ASCII, not Unicode */ /* STRING NativeFileSystem */ } __attribute__((packed)) TCONX_RSP; @@ -729,7 +718,7 @@ typedef struct smb_com_tconx_rsp_ext { __le32 MaximalShareAccessRights; __le32 GuestMaximalShareAccessRights; __u16 ByteCount; - unsigned char Service[1]; /* always ASCII, not Unicode */ + unsigned char Service[]; /* always ASCII, not Unicode */ /* STRING NativeFileSystem */ } __attribute__((packed)) TCONX_RSP_EXT; @@ -766,14 +755,14 @@ typedef struct smb_com_echo_req { struct smb_hdr hdr; __le16 EchoCount; __le16 ByteCount; - char Data[1]; + char Data[]; } __attribute__((packed)) ECHO_REQ; typedef struct smb_com_echo_rsp { struct smb_hdr hdr; __le16 SequenceNumber; __le16 ByteCount; - char Data[1]; + char Data[]; } __attribute__((packed)) ECHO_RSP; typedef struct smb_com_logoff_andx_req { @@ -873,7 +862,7 @@ typedef struct smb_com_open_req { /* also handles create */ __le32 ImpersonationLevel; __u8 SecurityFlags; __le16 ByteCount; - char fileName[1]; + char fileName[]; } __attribute__((packed)) OPEN_REQ; /* open response: oplock levels */ @@ -948,7 +937,7 @@ typedef struct smb_com_openx_req { __le32 Timeout; __le32 Reserved; __le16 ByteCount; /* file name follows */ - char fileName[1]; + char fileName[]; } __attribute__((packed)) OPENX_REQ; typedef struct smb_com_openx_rsp { @@ -1096,7 +1085,7 @@ typedef struct smb_com_lock_req { __le16 NumberOfUnlocks; __le16 NumberOfLocks; __le16 ByteCount; - LOCKING_ANDX_RANGE Locks[1]; + LOCKING_ANDX_RANGE Locks[]; } __attribute__((packed)) LOCK_REQ; /* lock type */ @@ -1125,7 +1114,7 @@ typedef struct smb_com_rename_req { __le16 SearchAttributes; /* target file attributes */ __le16 ByteCount; __u8 BufferFormat; /* 4 = ASCII or Unicode */ - unsigned char OldFileName[1]; + unsigned char OldFileName[]; /* followed by __u8 BufferFormat2 */ /* followed by NewFileName */ } __attribute__((packed)) RENAME_REQ; @@ -1145,7 +1134,7 @@ typedef struct smb_com_copy_req { __le16 Flags; __le16 ByteCount; __u8 BufferFormat; /* 4 = ASCII or Unicode */ - unsigned char OldFileName[1]; + unsigned char OldFileName[]; /* followed by __u8 BufferFormat2 */ /* followed by NewFileName string */ } __attribute__((packed)) COPY_REQ; @@ -1155,7 +1144,7 @@ typedef struct smb_com_copy_rsp { __le16 CopyCount; /* number of files copied */ __u16 ByteCount; /* may be zero */ __u8 BufferFormat; /* 0x04 - only present if errored file follows */ - unsigned char ErrorFileName[1]; /* only present if error in copy */ + unsigned char ErrorFileName[]; /* only present if error in copy */ } __attribute__((packed)) COPY_RSP; #define CREATE_HARD_LINK 0x103 @@ -1169,7 +1158,7 @@ typedef struct smb_com_nt_rename_req { /* A5 - also used for create hardlink */ __le32 ClusterCount; __le16 ByteCount; __u8 BufferFormat; /* 4 = ASCII or Unicode */ - unsigned char OldFileName[1]; + unsigned char OldFileName[]; /* followed by __u8 BufferFormat2 */ /* followed by NewFileName */ } __attribute__((packed)) NT_RENAME_REQ; @@ -1184,7 +1173,7 @@ typedef struct smb_com_delete_file_req { __le16 SearchAttributes; __le16 ByteCount; __u8 BufferFormat; /* 4 = ASCII */ - unsigned char fileName[1]; + unsigned char fileName[]; } __attribute__((packed)) DELETE_FILE_REQ; typedef struct smb_com_delete_file_rsp { @@ -1196,7 +1185,7 @@ typedef struct smb_com_delete_directory_req { struct smb_hdr hdr; /* wct = 0 */ __le16 ByteCount; __u8 BufferFormat; /* 4 = ASCII */ - unsigned char DirName[1]; + unsigned char DirName[]; } __attribute__((packed)) DELETE_DIRECTORY_REQ; typedef struct smb_com_delete_directory_rsp { @@ -1208,7 +1197,7 @@ typedef struct smb_com_create_directory_req { struct smb_hdr hdr; /* wct = 0 */ __le16 ByteCount; __u8 BufferFormat; /* 4 = ASCII */ - unsigned char DirName[1]; + unsigned char DirName[]; } __attribute__((packed)) CREATE_DIRECTORY_REQ; typedef struct smb_com_create_directory_rsp { @@ -1220,7 +1209,7 @@ typedef struct smb_com_query_information_req { struct smb_hdr hdr; /* wct = 0 */ __le16 ByteCount; /* 1 + namelen + 1 */ __u8 BufferFormat; /* 4 = ASCII */ - unsigned char FileName[1]; + unsigned char FileName[]; } __attribute__((packed)) QUERY_INFORMATION_REQ; typedef struct smb_com_query_information_rsp { @@ -1240,7 +1229,7 @@ typedef struct smb_com_setattr_req { __le16 reserved[5]; /* must be zero */ __u16 ByteCount; __u8 BufferFormat; /* 4 = ASCII */ - unsigned char fileName[1]; + unsigned char fileName[]; } __attribute__((packed)) SETATTR_REQ; typedef struct smb_com_setattr_rsp { @@ -1322,7 +1311,7 @@ typedef struct smb_com_transaction_ioctl_req { __u8 IsRootFlag; /* 1 = apply command to root of share (must be DFS) */ __le16 ByteCount; __u8 Pad[3]; - __u8 Data[1]; + __u8 Data[]; } __attribute__((packed)) TRANSACT_IOCTL_REQ; typedef struct smb_com_transaction_compr_ioctl_req { @@ -1440,8 +1429,8 @@ typedef struct smb_com_transaction_change_notify_req { __u8 WatchTree; /* 1 = Monitor subdirectories */ __u8 Reserved2; __le16 ByteCount; -/* __u8 Pad[3];*/ -/* __u8 Data[1];*/ +/* __u8 Pad[3];*/ +/* __u8 Data[];*/ } __attribute__((packed)) TRANSACT_CHANGE_NOTIFY_REQ; /* BB eventually change to use generic ntransact rsp struct @@ -1530,7 +1519,7 @@ struct cifs_quota_data { __u64 space_used; __u64 soft_limit; __u64 hard_limit; - char sid[1]; /* variable size? */ + char sid[]; /* variable size? */ } __attribute__((packed)); /* quota sub commands */ @@ -1658,7 +1647,7 @@ struct smb_t2_rsp { #define SMB_FIND_FILE_ID_FULL_DIR_INFO 0x105 #define SMB_FIND_FILE_ID_BOTH_DIR_INFO 0x106 #define SMB_FIND_FILE_UNIX 0x202 -#define SMB_FIND_FILE_POSIX_INFO 0x064 +/* #define SMB_FIND_FILE_POSIX_INFO 0x064 */ typedef struct smb_com_transaction2_qpi_req { struct smb_hdr hdr; /* wct = 14+ */ @@ -1682,7 +1671,7 @@ typedef struct smb_com_transaction2_qpi_req { __u8 Pad; __le16 InformationLevel; __u32 Reserved4; - char FileName[1]; + char FileName[]; } __attribute__((packed)) TRANSACTION2_QPI_REQ; typedef struct smb_com_transaction2_qpi_rsp { @@ -1715,7 +1704,7 @@ typedef struct smb_com_transaction2_spi_req { __u16 Pad1; __le16 InformationLevel; __u32 Reserved4; - char FileName[1]; + char FileName[]; } __attribute__((packed)) TRANSACTION2_SPI_REQ; typedef struct smb_com_transaction2_spi_rsp { @@ -1763,8 +1752,7 @@ struct smb_com_transaction2_sfi_rsp { struct smb_hdr hdr; /* wct = 10 + SetupCount */ struct trans2_resp t2; __u16 ByteCount; - __u16 Reserved2; /* parameter word reserved - - present for infolevels > 100 */ + __u16 Reserved2; /* parameter word reserved - present for infolevels > 100 */ } __attribute__((packed)); struct smb_t2_qfi_req { @@ -1779,8 +1767,7 @@ struct smb_t2_qfi_rsp { struct smb_hdr hdr; /* wct = 10 + SetupCount */ struct trans2_resp t2; __u16 ByteCount; - __u16 Reserved2; /* parameter word reserved - - present for infolevels > 100 */ + __u16 Reserved2; /* parameter word reserved - present for infolevels > 100 */ } __attribute__((packed)); /* @@ -1822,7 +1809,7 @@ typedef struct smb_com_transaction2_ffirst_req { __le16 SearchFlags; __le16 InformationLevel; __le32 SearchStorageType; - char FileName[1]; + char FileName[]; } __attribute__((packed)) TRANSACTION2_FFIRST_REQ; typedef struct smb_com_transaction2_ffirst_rsp { @@ -2033,7 +2020,7 @@ typedef struct smb_com_transaction2_get_dfs_refer_req { perhaps?) followed by one byte pad - doesn't seem to matter though */ __le16 MaxReferralLevel; - char RequestFileName[1]; + char RequestFileName[]; } __attribute__((packed)) TRANSACTION2_GET_DFS_REFER_REQ; #define DFS_VERSION cpu_to_le16(0x0003) @@ -2062,7 +2049,7 @@ struct get_dfs_referral_rsp { __le16 PathConsumed; __le16 NumberOfReferrals; __le32 DFSFlags; - REFERRAL3 referrals[1]; /* array of level 3 dfs_referral structures */ + REFERRAL3 referrals[]; /* array of level 3 dfs_referral structures */ /* followed by the strings pointed to by the referral structures */ } __packed; @@ -2157,13 +2144,11 @@ typedef struct { #define CIFS_UNIX_POSIX_PATH_OPS_CAP 0x00000020 /* Allow new POSIX path based calls including posix open and posix unlink */ -#define CIFS_UNIX_LARGE_READ_CAP 0x00000040 /* support reads >128K (up - to 0xFFFF00 */ +#define CIFS_UNIX_LARGE_READ_CAP 0x00000040 /* support reads >128K (up to 0xFFFF00 */ #define CIFS_UNIX_LARGE_WRITE_CAP 0x00000080 #define CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP 0x00000100 /* can do SPNEGO crypt */ #define CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP 0x00000200 /* must do */ -#define CIFS_UNIX_PROXY_CAP 0x00000400 /* Proxy cap: 0xACE ioctl and - QFS PROXY call */ +#define CIFS_UNIX_PROXY_CAP 0x00000400 /* Proxy cap: 0xACE ioctl and QFS PROXY call */ #ifdef CONFIG_CIFS_POSIX /* presumably don't need the 0x20 POSIX_PATH_OPS_CAP since we never send LockingX instead of posix locking call on unix sess (and we do not expect @@ -2299,7 +2284,10 @@ typedef struct { /* data block encoding of response to level 263 QPathInfo */ __le32 Mode; __le32 AlignmentRequirement; __le32 FileNameLength; - char FileName[1]; + union { + char __pad; + DECLARE_FLEX_ARRAY(char, FileName); + }; } __attribute__((packed)) FILE_ALL_INFO; /* level 0x107 QPathInfo */ typedef struct { @@ -2337,7 +2325,7 @@ typedef struct { } __attribute__((packed)) FILE_UNIX_BASIC_INFO; /* level 0x200 QPathInfo */ typedef struct { - char LinkDest[1]; + DECLARE_FLEX_ARRAY(char, LinkDest); } __attribute__((packed)) FILE_UNIX_LINK_INFO; /* level 0x201 QPathInfo */ /* The following three structures are needed only for @@ -2379,15 +2367,14 @@ typedef struct { struct file_allocation_info { __le64 AllocationSize; /* Note old Samba srvr rounds this up too much */ -} __attribute__((packed)); /* size used on disk, for level 0x103 for set, - 0x105 for query */ +} __packed; /* size used on disk, for level 0x103 for set, 0x105 for query */ struct file_end_of_file_info { __le64 FileSize; /* offset to end of file */ } __attribute__((packed)); /* size info, level 0x104 for set, 0x106 for query */ struct file_alt_name_info { - __u8 alt_name[1]; + DECLARE_FLEX_ARRAY(__u8, alt_name); } __attribute__((packed)); /* level 0x0108 */ struct file_stream_info { @@ -2420,8 +2407,7 @@ struct cifs_posix_acl { /* access conrol list (ACL) */ __le16 access_entry_count; /* access ACL - count of entries */ __le16 default_entry_count; /* default ACL - count of entries */ struct cifs_posix_ace ace_array[]; - /* followed by - struct cifs_posix_ace default_ace_arraay[] */ + /* followed by struct cifs_posix_ace default_ace_array[] */ } __attribute__((packed)); /* level 0x204 */ /* types of access control entries already defined in posix_acl.h */ @@ -2440,17 +2426,17 @@ struct cifs_posix_acl { /* access conrol list (ACL) */ /* end of POSIX ACL definitions */ /* POSIX Open Flags */ -#define SMB_O_RDONLY 0x1 -#define SMB_O_WRONLY 0x2 -#define SMB_O_RDWR 0x4 -#define SMB_O_CREAT 0x10 -#define SMB_O_EXCL 0x20 -#define SMB_O_TRUNC 0x40 -#define SMB_O_APPEND 0x80 -#define SMB_O_SYNC 0x100 -#define SMB_O_DIRECTORY 0x200 -#define SMB_O_NOFOLLOW 0x400 -#define SMB_O_DIRECT 0x800 +#define SMB_O_RDONLY 0x1 +#define SMB_O_WRONLY 0x2 +#define SMB_O_RDWR 0x4 +#define SMB_O_CREAT 0x10 +#define SMB_O_EXCL 0x20 +#define SMB_O_TRUNC 0x40 +#define SMB_O_APPEND 0x80 +#define SMB_O_SYNC 0x100 +#define SMB_O_DIRECTORY 0x200 +#define SMB_O_NOFOLLOW 0x400 +#define SMB_O_DIRECT 0x800 typedef struct { __le32 OpenFlags; /* same as NT CreateX */ @@ -2497,7 +2483,10 @@ typedef struct { __le32 NextEntryOffset; __u32 ResumeKey; /* as with FileIndex - no need to convert */ FILE_UNIX_BASIC_INFO basic; - char FileName[1]; + union { + char __pad; + DECLARE_FLEX_ARRAY(char, FileName); + }; } __attribute__((packed)) FILE_UNIX_INFO; /* level 0x202 */ typedef struct { @@ -2511,7 +2500,7 @@ typedef struct { __le64 AllocationSize; __le32 ExtFileAttributes; __le32 FileNameLength; - char FileName[1]; + char FileName[]; } __attribute__((packed)) FILE_DIRECTORY_INFO; /* level 0x101 FF resp data */ typedef struct { @@ -2526,7 +2515,7 @@ typedef struct { __le32 ExtFileAttributes; __le32 FileNameLength; __le32 EaSize; /* length of the xattrs */ - char FileName[1]; + char FileName[]; } __attribute__((packed)) FILE_FULL_DIRECTORY_INFO; /* level 0x102 rsp data */ typedef struct { @@ -2543,7 +2532,7 @@ typedef struct { __le32 EaSize; /* EA size */ __le32 Reserved; __le64 UniqueId; /* inode num - le since Samba puts ino in low 32 bit*/ - char FileName[1]; + char FileName[]; } __attribute__((packed)) SEARCH_ID_FULL_DIR_INFO; /* level 0x105 FF rsp data */ typedef struct { @@ -2560,8 +2549,8 @@ typedef struct { __le32 EaSize; /* length of the xattrs */ __u8 ShortNameLength; __u8 Reserved; - __u8 ShortName[12]; - char FileName[1]; + __u8 ShortName[24]; + char FileName[]; } __attribute__((packed)) FILE_BOTH_DIRECTORY_INFO; /* level 0x104 FFrsp data */ typedef struct { @@ -2576,7 +2565,7 @@ typedef struct { __le32 AllocationSize; __le16 Attributes; /* verify not u32 */ __u8 FileNameLength; - char FileName[1]; + char FileName[]; } __attribute__((packed)) FIND_FILE_STANDARD_INFO; /* level 0x1 FF resp data */ @@ -2586,21 +2575,11 @@ struct win_dev { __le64 minor; } __attribute__((packed)); -struct gea { - unsigned char name_len; - char name[1]; -} __attribute__((packed)); - -struct gealist { - unsigned long list_len; - struct gea list[1]; -} __attribute__((packed)); - struct fea { unsigned char EA_flags; __u8 name_len; __le16 value_len; - char name[1]; + char name[]; /* optionally followed by value */ } __attribute__((packed)); /* flags for _FEA.fEA */ @@ -2608,7 +2587,7 @@ struct fea { struct fealist { __le32 list_len; - struct fea list[1]; + struct fea list; } __attribute__((packed)); /* used to hold an arbitrary blob of data */ @@ -2727,15 +2706,13 @@ typedef struct file_xattr_info { __u32 xattr_value_len; char xattr_name[]; /* followed by xattr_value[xattr_value_len], no pad */ -} __attribute__((packed)) FILE_XATTR_INFO; /* extended attribute info - level 0x205 */ +} __packed FILE_XATTR_INFO; /* extended attribute info level 0x205 */ /* flags for lsattr and chflags commands removed arein uapi/linux/fs.h */ typedef struct file_chattr_info { __le64 mask; /* list of all possible attribute bits */ __le64 mode; /* list of actual attribute bits on this inode */ -} __attribute__((packed)) FILE_CHATTR_INFO; /* ext attributes - (chattr, chflags) level 0x206 */ -#endif /* POSIX */ +} __packed FILE_CHATTR_INFO; /* ext attributes (chattr, chflags) level 0x206 */ +#endif /* POSIX */ #endif /* _CIFSPDU_H */ diff --git a/fs/cifs/cifsproto.h b/fs/cifs/cifsproto.h index 50844d51da5d9..81b559f3b1820 100644 --- a/fs/cifs/cifsproto.h +++ b/fs/cifs/cifsproto.h @@ -8,6 +8,7 @@ #ifndef _CIFSPROTO_H #define _CIFSPROTO_H #include +#include #include "trace.h" #ifdef CONFIG_CIFS_DFS_UPCALL #include "dfs_cache.h" @@ -57,6 +58,9 @@ extern void exit_cifs_idmap(void); extern int init_cifs_spnego(void); extern void exit_cifs_spnego(void); extern const char *build_path_from_dentry(struct dentry *, void *); +char *__build_path_from_dentry_optional_prefix(struct dentry *direntry, void *page, + const char *tree, int tree_len, + bool prefix); extern char *build_path_from_dentry_optional_prefix(struct dentry *direntry, void *page, bool prefix); static inline void *alloc_dentry_path(void) @@ -75,20 +79,17 @@ extern char *cifs_build_path_to_root(struct smb3_fs_context *ctx, struct cifs_tcon *tcon, int add_treename); extern char *build_wildcard_path_from_dentry(struct dentry *direntry); -extern char *cifs_compose_mount_options(const char *sb_mountdata, - const char *fullpath, const struct dfs_info3_param *ref, - char **devname); -/* extern void renew_parental_timestamps(struct dentry *direntry);*/ -extern struct mid_q_entry *AllocMidQEntry(const struct smb_hdr *smb_buffer, - struct TCP_Server_Info *server); -extern void DeleteMidQEntry(struct mid_q_entry *midEntry); -extern void cifs_delete_mid(struct mid_q_entry *mid); -extern void cifs_mid_q_entry_release(struct mid_q_entry *midEntry); +char *cifs_build_devname(char *nodename, const char *prepath); +extern void delete_mid(struct mid_q_entry *mid); +extern void release_mid(struct mid_q_entry *mid); extern void cifs_wake_up_task(struct mid_q_entry *mid); extern int cifs_handle_standard(struct TCP_Server_Info *server, struct mid_q_entry *mid); +extern char *smb3_fs_context_fullpath(const struct smb3_fs_context *ctx, + char dirsep); extern int smb3_parse_devname(const char *devname, struct smb3_fs_context *ctx); extern int smb3_parse_opt(const char *options, const char *key, char **val); +extern int cifs_ipaddr_cmp(struct sockaddr *srcaddr, struct sockaddr *rhs); extern bool cifs_match_ipaddr(struct sockaddr *srcaddr, struct sockaddr *rhs); extern int cifs_discard_remaining_data(struct TCP_Server_Info *server); extern int cifs_call_async(struct TCP_Server_Info *server, @@ -128,10 +129,17 @@ extern int SendReceive2(const unsigned int /* xid */ , struct cifs_ses *, struct kvec * /* resp vec */); extern int SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *ptcon, - struct smb_hdr *in_buf , + struct smb_hdr *in_buf, struct smb_hdr *out_buf, int *bytes_returned); -extern int cifs_reconnect(struct TCP_Server_Info *server); +void +cifs_signal_cifsd_for_reconnect(struct TCP_Server_Info *server, + bool all_channels); +void +cifs_mark_tcp_ses_conns_for_reconnect(struct TCP_Server_Info *server, + bool mark_smb_session); +extern int cifs_reconnect(struct TCP_Server_Info *server, + bool mark_smb_session); extern int checkSMB(char *buf, unsigned int len, struct TCP_Server_Info *srvr); extern bool is_valid_oplock_break(char *, struct TCP_Server_Info *); extern bool backup_cred(struct cifs_sb_info *); @@ -148,7 +156,7 @@ extern int cifs_get_writable_path(struct cifs_tcon *tcon, const char *name, extern struct cifsFileInfo *find_readable_file(struct cifsInodeInfo *, bool); extern int cifs_get_readable_path(struct cifs_tcon *tcon, const char *name, struct cifsFileInfo **ret_file); -extern unsigned int smbCalcSize(void *buf, struct TCP_Server_Info *server); +extern unsigned int smbCalcSize(void *buf); extern int decode_negTokenInit(unsigned char *security_blob, int length, struct TCP_Server_Info *server); extern int cifs_convert_address(struct sockaddr *dst, const char *src, int len); @@ -164,6 +172,7 @@ extern int small_smb_init_no_tc(const int smb_cmd, const int wct, extern enum securityEnum select_sectype(struct TCP_Server_Info *server, enum securityEnum requested); extern int CIFS_SessSetup(const unsigned int xid, struct cifs_ses *ses, + struct TCP_Server_Info *server, const struct nls_table *nls_cp); extern struct timespec64 cifs_NTtimeToUnix(__le64 utc_nanoseconds_since_1601); extern u64 cifs_UnixTimeToNT(struct timespec64); @@ -178,10 +187,9 @@ extern int cifs_unlock_range(struct cifsFileInfo *cfile, extern int cifs_push_mandatory_locks(struct cifsFileInfo *cfile); extern void cifs_down_write(struct rw_semaphore *sem); -extern struct cifsFileInfo *cifs_new_fileinfo(struct cifs_fid *fid, - struct file *file, - struct tcon_link *tlink, - __u32 oplock); +struct cifsFileInfo *cifs_new_fileinfo(struct cifs_fid *fid, struct file *file, + struct tcon_link *tlink, __u32 oplock, + const char *symlink_target); extern int cifs_posix_open(const char *full_path, struct inode **inode, struct super_block *sb, int mode, unsigned int f_flags, __u32 *oplock, __u16 *netfid, @@ -196,9 +204,9 @@ extern int cifs_fattr_to_inode(struct inode *inode, struct cifs_fattr *fattr); extern struct inode *cifs_iget(struct super_block *sb, struct cifs_fattr *fattr); -extern int cifs_get_inode_info(struct inode **inode, const char *full_path, - FILE_ALL_INFO *data, struct super_block *sb, - int xid, const struct cifs_fid *fid); +int cifs_get_inode_info(struct inode **inode, const char *full_path, + struct cifs_open_info_data *data, struct super_block *sb, int xid, + const struct cifs_fid *fid); extern int smb311_posix_get_inode_info(struct inode **pinode, const char *search_path, struct super_block *sb, unsigned int xid); extern int cifs_get_inode_info_unix(struct inode **pinode, @@ -236,7 +244,14 @@ extern int cifs_read_page_from_socket(struct TCP_Server_Info *server, struct page *page, unsigned int page_offset, unsigned int to_read); +int cifs_read_iter_from_socket(struct TCP_Server_Info *server, + struct iov_iter *iter, + unsigned int to_read); extern int cifs_setup_cifs_sb(struct cifs_sb_info *cifs_sb); +void cifs_mount_put_conns(struct cifs_mount_ctx *mnt_ctx); +int cifs_mount_get_session(struct cifs_mount_ctx *mnt_ctx); +int cifs_is_path_remote(struct cifs_mount_ctx *mnt_ctx); +int cifs_mount_get_tcon(struct cifs_mount_ctx *mnt_ctx); extern int cifs_match_super(struct super_block *, void *); extern int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx); extern void cifs_umount(struct cifs_sb_info *); @@ -269,8 +284,9 @@ extern void cifs_close_all_deferred_files(struct cifs_tcon *cifs_tcon); extern void cifs_close_deferred_file_under_dentry(struct cifs_tcon *cifs_tcon, const char *path); - -extern struct TCP_Server_Info *cifs_get_tcp_session(struct smb3_fs_context *ctx); +extern struct TCP_Server_Info * +cifs_get_tcp_session(struct smb3_fs_context *ctx, + struct TCP_Server_Info *primary_server); extern void cifs_put_tcp_session(struct TCP_Server_Info *server, int from_reconnect); extern void cifs_put_tcon(struct cifs_tcon *tcon); @@ -292,11 +308,15 @@ extern int cifs_tree_connect(const unsigned int xid, struct cifs_tcon *tcon, const struct nls_table *nlsc); extern int cifs_negotiate_protocol(const unsigned int xid, - struct cifs_ses *ses); + struct cifs_ses *ses, + struct TCP_Server_Info *server); extern int cifs_setup_session(const unsigned int xid, struct cifs_ses *ses, + struct TCP_Server_Info *server, struct nls_table *nls_info); extern int cifs_enable_signing(struct TCP_Server_Info *server, bool mnt_sign_required); -extern int CIFSSMBNegotiate(const unsigned int xid, struct cifs_ses *ses); +extern int CIFSSMBNegotiate(const unsigned int xid, + struct cifs_ses *ses, + struct TCP_Server_Info *server); extern int CIFSTCon(const unsigned int xid, struct cifs_ses *ses, const char *tree, struct cifs_tcon *tcon, @@ -503,9 +523,12 @@ extern int cifs_verify_signature(struct smb_rqst *rqst, extern int setup_ntlmv2_rsp(struct cifs_ses *, const struct nls_table *); extern void cifs_crypto_secmech_release(struct TCP_Server_Info *server); extern int calc_seckey(struct cifs_ses *); -extern int generate_smb30signingkey(struct cifs_ses *); -extern int generate_smb311signingkey(struct cifs_ses *); +extern int generate_smb30signingkey(struct cifs_ses *ses, + struct TCP_Server_Info *server); +extern int generate_smb311signingkey(struct cifs_ses *ses, + struct TCP_Server_Info *server); +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY extern int CIFSSMBCopy(unsigned int xid, struct cifs_tcon *source_tcon, const char *fromName, @@ -536,6 +559,7 @@ extern int CIFSSMBSetPosixACL(const unsigned int xid, struct cifs_tcon *tcon, const struct nls_table *nls_codepage, int remap_special_chars); extern int CIFSGetExtAttr(const unsigned int xid, struct cifs_tcon *tcon, const int netfid, __u64 *pExtAttrBits, __u64 *pMask); +#endif /* CIFS_ALLOW_INSECURE_LEGACY */ extern void cifs_autodisable_serverino(struct cifs_sb_info *cifs_sb); extern bool couldbe_mf_symlink(const struct cifs_fattr *fattr); extern int check_mf_symlink(unsigned int xid, struct cifs_tcon *tcon, @@ -545,13 +569,10 @@ extern int check_mf_symlink(unsigned int xid, struct cifs_tcon *tcon, extern int E_md4hash(const unsigned char *passwd, unsigned char *p16, const struct nls_table *codepage); -extern int -cifs_setup_volume_info(struct smb3_fs_context *ctx, const char *mntopts, const char *devname); - extern struct TCP_Server_Info * cifs_find_tcp_session(struct smb3_fs_context *ctx); -extern void cifs_put_smb_ses(struct cifs_ses *ses); +void __cifs_put_smb_ses(struct cifs_ses *ses); extern struct cifs_ses * cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb3_fs_context *ctx); @@ -584,11 +605,9 @@ enum securityEnum cifs_select_sectype(struct TCP_Server_Info *, struct cifs_aio_ctx *cifs_aio_ctx_alloc(void); void cifs_aio_ctx_release(struct kref *refcount); int setup_aio_ctx_iter(struct cifs_aio_ctx *ctx, struct iov_iter *iter, int rw); -void smb2_cached_lease_break(struct work_struct *work); -int cifs_alloc_hash(const char *name, struct crypto_shash **shash, - struct sdesc **sdesc); -void cifs_free_hash(struct crypto_shash **shash, struct sdesc **sdesc); +int cifs_alloc_hash(const char *name, struct shash_desc **sdesc); +void cifs_free_hash(struct shash_desc **sdesc); void rqst_page_get_length(const struct smb_rqst *rqst, unsigned int page, unsigned int *len, unsigned int *offset); @@ -598,6 +617,36 @@ int cifs_try_adding_channels(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses) bool is_server_using_iface(struct TCP_Server_Info *server, struct cifs_server_iface *iface); bool is_ses_using_iface(struct cifs_ses *ses, struct cifs_server_iface *iface); +void cifs_ses_mark_for_reconnect(struct cifs_ses *ses); + +unsigned int +cifs_ses_get_chan_index(struct cifs_ses *ses, + struct TCP_Server_Info *server); +void +cifs_chan_set_in_reconnect(struct cifs_ses *ses, + struct TCP_Server_Info *server); +void +cifs_chan_clear_in_reconnect(struct cifs_ses *ses, + struct TCP_Server_Info *server); +bool +cifs_chan_in_reconnect(struct cifs_ses *ses, + struct TCP_Server_Info *server); +void +cifs_chan_set_need_reconnect(struct cifs_ses *ses, + struct TCP_Server_Info *server); +void +cifs_chan_clear_need_reconnect(struct cifs_ses *ses, + struct TCP_Server_Info *server); +bool +cifs_chan_needs_reconnect(struct cifs_ses *ses, + struct TCP_Server_Info *server); +bool +cifs_chan_is_iface_active(struct cifs_ses *ses, + struct TCP_Server_Info *server); +int +cifs_chan_update_iface(struct cifs_ses *ses, struct TCP_Server_Info *server); +int +SMB3_request_interfaces(const unsigned int xid, struct cifs_tcon *tcon, bool in_mount); void extract_unc_hostname(const char *unc, const char **h, size_t *len); int copy_path_name(char *dst, const char *src); @@ -605,7 +654,7 @@ int smb2_parse_query_directory(struct cifs_tcon *tcon, struct kvec *rsp_iov, int resp_buftype, struct cifs_search_info *srch_inf); -struct super_block *cifs_get_tcp_super(struct TCP_Server_Info *server); +struct super_block *cifs_get_dfs_tcon_super(struct cifs_tcon *tcon); void cifs_put_tcp_super(struct super_block *sb); int cifs_update_super_prepath(struct cifs_sb_info *cifs_sb, char *prefix); char *extract_hostname(const char *unc); @@ -624,6 +673,21 @@ static inline int get_dfs_path(const unsigned int xid, struct cifs_ses *ses, int match_target_ip(struct TCP_Server_Info *server, const char *share, size_t share_len, bool *result); +int cifs_inval_name_dfs_link_error(const unsigned int xid, + struct cifs_tcon *tcon, + struct cifs_sb_info *cifs_sb, + const char *full_path, + bool *islink); +#else +static inline int cifs_inval_name_dfs_link_error(const unsigned int xid, + struct cifs_tcon *tcon, + struct cifs_sb_info *cifs_sb, + const char *full_path, + bool *islink) +{ + *islink = false; + return 0; +} #endif static inline int cifs_create_options(struct cifs_sb_info *cifs_sb, int options) @@ -636,5 +700,47 @@ static inline int cifs_create_options(struct cifs_sb_info *cifs_sb, int options) struct super_block *cifs_get_tcon_super(struct cifs_tcon *tcon); void cifs_put_tcon_super(struct super_block *sb); +int cifs_wait_for_server_reconnect(struct TCP_Server_Info *server, bool retry); + +/* Put references of @ses and @ses->dfs_root_ses */ +static inline void cifs_put_smb_ses(struct cifs_ses *ses) +{ + struct cifs_ses *rses = ses->dfs_root_ses; + + __cifs_put_smb_ses(ses); + if (rses) + __cifs_put_smb_ses(rses); +} + +/* Get an active reference of @ses and @ses->dfs_root_ses. + * + * NOTE: make sure to call this function when incrementing reference count of + * @ses to ensure that any DFS root session attached to it (@ses->dfs_root_ses) + * will also get its reference count incremented. + * + * cifs_put_smb_ses() will put both references, so call it when you're done. + */ +static inline void cifs_smb_ses_inc_refcount(struct cifs_ses *ses) +{ + lockdep_assert_held(&cifs_tcp_ses_lock); + + ses->ses_count++; + if (ses->dfs_root_ses) + ses->dfs_root_ses->ses_count++; +} + +static inline bool dfs_src_pathname_equal(const char *s1, const char *s2) +{ + if (strlen(s1) != strlen(s2)) + return false; + for (; *s1; s1++, s2++) { + if (*s1 == '/' || *s1 == '\\') { + if (*s2 != '/' && *s2 != '\\') + return false; + } else if (tolower(*s1) != tolower(*s2)) + return false; + } + return true; +} #endif /* _CIFSPROTO_H */ diff --git a/fs/cifs/cifsroot.c b/fs/cifs/cifsroot.c index 9e91a5a40aaec..56ec1b233f52e 100644 --- a/fs/cifs/cifsroot.c +++ b/fs/cifs/cifsroot.c @@ -59,7 +59,7 @@ static int __init cifs_root_setup(char *line) pr_err("Root-CIFS: UNC path too long\n"); return 1; } - strlcpy(root_dev, line, len); + strscpy(root_dev, line, len); srvaddr = parse_srvaddr(&line[2], s); if (*s) { int n = snprintf(root_opts, diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c index 6ca08e473a7e0..96a348cba2fc6 100644 --- a/fs/cifs/cifssmb.c +++ b/fs/cifs/cifssmb.c @@ -29,7 +29,6 @@ #include "cifsproto.h" #include "cifs_unicode.h" #include "cifs_debug.h" -#include "smb2proto.h" #include "fscache.h" #include "smbdirect.h" #ifdef CONFIG_CIFS_DFS_UPCALL @@ -62,38 +61,6 @@ static struct { #define CIFS_NUM_PROT 1 #endif /* CIFS_POSIX */ -/* - * Mark as invalid, all open files on tree connections since they - * were closed when session to server was lost. - */ -void -cifs_mark_open_files_invalid(struct cifs_tcon *tcon) -{ - struct cifsFileInfo *open_file = NULL; - struct list_head *tmp; - struct list_head *tmp1; - - /* list all files open on tree connection and mark them invalid */ - spin_lock(&tcon->open_file_lock); - list_for_each_safe(tmp, tmp1, &tcon->openFileList) { - open_file = list_entry(tmp, struct cifsFileInfo, tlist); - open_file->invalidHandle = true; - open_file->oplock_break_cancelled = true; - } - spin_unlock(&tcon->open_file_lock); - - mutex_lock(&tcon->crfid.fid_mutex); - tcon->crfid.is_valid = false; - /* cached handle is not valid, so SMB2_CLOSE won't be sent below */ - close_cached_dir_lease_locked(&tcon->crfid); - memset(tcon->crfid.fid, 0, sizeof(struct cifs_fid)); - mutex_unlock(&tcon->crfid.fid_mutex); - - /* - * BB Add call to invalidate_inodes(sb) for all superblocks mounted - * to this tcon. - */ -} /* reconnect the socket, tcon, and smb session if needed */ static int @@ -102,8 +69,7 @@ cifs_reconnect_tcon(struct cifs_tcon *tcon, int smb_command) int rc; struct cifs_ses *ses; struct TCP_Server_Info *server; - struct nls_table *nls_codepage; - int retries; + struct nls_table *nls_codepage = NULL; /* * SMBs NegProt, SessSetup, uLogoff do not have tcon yet so check for @@ -118,56 +84,48 @@ cifs_reconnect_tcon(struct cifs_tcon *tcon, int smb_command) /* * only tree disconnect, open, and write, (and ulogoff which does not - * have tcon) are allowed as we start force umount + * have tcon) are allowed as we start umount */ - if (tcon->tidStatus == CifsExiting) { - if (smb_command != SMB_COM_WRITE_ANDX && - smb_command != SMB_COM_OPEN_ANDX && - smb_command != SMB_COM_TREE_DISCONNECT) { + spin_lock(&tcon->tc_lock); + if (tcon->status == TID_EXITING) { + if (smb_command != SMB_COM_TREE_DISCONNECT) { + spin_unlock(&tcon->tc_lock); cifs_dbg(FYI, "can not send cmd %d while umounting\n", smb_command); return -ENODEV; } } + spin_unlock(&tcon->tc_lock); + +again: + rc = cifs_wait_for_server_reconnect(server, tcon->retry); + if (rc) + return rc; - retries = server->nr_targets; + spin_lock(&ses->chan_lock); + if (!cifs_chan_needs_reconnect(ses, server) && !tcon->need_reconnect) { + spin_unlock(&ses->chan_lock); + return 0; + } + spin_unlock(&ses->chan_lock); + mutex_lock(&ses->session_mutex); /* - * Give demultiplex thread up to 10 seconds to each target available for - * reconnect -- should be greater than cifs socket timeout which is 7 - * seconds. + * Recheck after acquire mutex. If another thread is negotiating + * and the server never sends an answer the socket will be closed + * and tcpStatus set to reconnect. */ - while (server->tcpStatus == CifsNeedReconnect) { - rc = wait_event_interruptible_timeout(server->response_q, - (server->tcpStatus != CifsNeedReconnect), - 10 * HZ); - if (rc < 0) { - cifs_dbg(FYI, "%s: aborting reconnect due to a received signal by the process\n", - __func__); - return -ERESTARTSYS; - } - - /* are we still trying to reconnect? */ - if (server->tcpStatus != CifsNeedReconnect) - break; - - if (retries && --retries) - continue; + spin_lock(&server->srv_lock); + if (server->tcpStatus == CifsNeedReconnect) { + spin_unlock(&server->srv_lock); + mutex_unlock(&ses->session_mutex); - /* - * on "soft" mounts we wait once. Hard mounts keep - * retrying until process is killed or server comes - * back on-line - */ - if (!tcon->retry) { - cifs_dbg(FYI, "gave up waiting on reconnect in smb_init\n"); - return -EHOSTDOWN; - } - retries = server->nr_targets; + if (tcon->retry) + goto again; + rc = -EHOSTDOWN; + goto out; } - - if (!ses->need_reconnect && !tcon->need_reconnect) - return 0; + spin_unlock(&server->srv_lock); nls_codepage = load_nls_default(); @@ -175,22 +133,26 @@ cifs_reconnect_tcon(struct cifs_tcon *tcon, int smb_command) * need to prevent multiple threads trying to simultaneously * reconnect the same SMB session */ - mutex_lock(&ses->session_mutex); + spin_lock(&ses->ses_lock); + spin_lock(&ses->chan_lock); + if (!cifs_chan_needs_reconnect(ses, server) && + ses->ses_status == SES_GOOD) { + spin_unlock(&ses->chan_lock); + spin_unlock(&ses->ses_lock); + + /* this means that we only need to tree connect */ + if (tcon->need_reconnect) + goto skip_sess_setup; - /* - * Recheck after acquire mutex. If another thread is negotiating - * and the server never sends an answer the socket will be closed - * and tcpStatus set to reconnect. - */ - if (server->tcpStatus == CifsNeedReconnect) { - rc = -EHOSTDOWN; mutex_unlock(&ses->session_mutex); goto out; } + spin_unlock(&ses->chan_lock); + spin_unlock(&ses->ses_lock); - rc = cifs_negotiate_protocol(0, ses); - if (rc == 0 && ses->need_reconnect) - rc = cifs_setup_session(0, ses, nls_codepage); + rc = cifs_negotiate_protocol(0, ses, server); + if (!rc) + rc = cifs_setup_session(0, ses, server, nls_codepage); /* do we need to reconnect tcon? */ if (rc || !tcon->need_reconnect) { @@ -198,6 +160,7 @@ cifs_reconnect_tcon(struct cifs_tcon *tcon, int smb_command) goto out; } +skip_sess_setup: cifs_mark_open_files_invalid(tcon); rc = cifs_tree_connect(0, tcon, nls_codepage); mutex_unlock(&ses->session_mutex); @@ -337,8 +300,13 @@ static int smb_init_no_reconnect(int smb_command, int wct, struct cifs_tcon *tcon, void **request_buf, void **response_buf) { - if (tcon->ses->need_reconnect || tcon->need_reconnect) + spin_lock(&tcon->ses->chan_lock); + if (cifs_chan_needs_reconnect(tcon->ses, tcon->ses->server) || + tcon->need_reconnect) { + spin_unlock(&tcon->ses->chan_lock); return -EHOSTDOWN; + } + spin_unlock(&tcon->ses->chan_lock); return __smb_init(smb_command, wct, tcon, request_buf, response_buf); } @@ -412,52 +380,6 @@ decode_ext_sec_blob(struct cifs_ses *ses, NEGOTIATE_RSP *pSMBr) return 0; } -int -cifs_enable_signing(struct TCP_Server_Info *server, bool mnt_sign_required) -{ - bool srv_sign_required = server->sec_mode & server->vals->signing_required; - bool srv_sign_enabled = server->sec_mode & server->vals->signing_enabled; - bool mnt_sign_enabled = global_secflags & CIFSSEC_MAY_SIGN; - - /* - * Is signing required by mnt options? If not then check - * global_secflags to see if it is there. - */ - if (!mnt_sign_required) - mnt_sign_required = ((global_secflags & CIFSSEC_MUST_SIGN) == - CIFSSEC_MUST_SIGN); - - /* - * If signing is required then it's automatically enabled too, - * otherwise, check to see if the secflags allow it. - */ - mnt_sign_enabled = mnt_sign_required ? mnt_sign_required : - (global_secflags & CIFSSEC_MAY_SIGN); - - /* If server requires signing, does client allow it? */ - if (srv_sign_required) { - if (!mnt_sign_enabled) { - cifs_dbg(VFS, "Server requires signing, but it's disabled in SecurityFlags!\n"); - return -ENOTSUPP; - } - server->sign = true; - } - - /* If client requires signing, does server allow it? */ - if (mnt_sign_required) { - if (!srv_sign_enabled) { - cifs_dbg(VFS, "Server does not support signing!\n"); - return -ENOTSUPP; - } - server->sign = true; - } - - if (cifs_rdma_enabled(server) && server->sign) - cifs_dbg(VFS, "Signing is enabled, and RDMA read/write will be disabled\n"); - - return 0; -} - static bool should_set_ext_sec_flag(enum securityEnum sectype) { @@ -476,14 +398,15 @@ should_set_ext_sec_flag(enum securityEnum sectype) } int -CIFSSMBNegotiate(const unsigned int xid, struct cifs_ses *ses) +CIFSSMBNegotiate(const unsigned int xid, + struct cifs_ses *ses, + struct TCP_Server_Info *server) { NEGOTIATE_REQ *pSMB; NEGOTIATE_RSP *pSMBr; int rc = 0; int bytes_returned; int i; - struct TCP_Server_Info *server = ses->server; u16 count; if (!server) { @@ -512,7 +435,7 @@ CIFSSMBNegotiate(const unsigned int xid, struct cifs_ses *ses) for (i = 0; i < CIFS_NUM_PROT; i++) { size_t len = strlen(protocols[i].name) + 1; - memcpy(pSMB->DialectsArray+count, protocols[i].name, len); + memcpy(&pSMB->DialectsArray[count], protocols[i].name, len); count += len; } inc_rfc1001_len(pSMB, count); @@ -600,8 +523,12 @@ CIFSSMBTDis(const unsigned int xid, struct cifs_tcon *tcon) * the tcon is no longer on the list, so no need to take lock before * checking this. */ - if ((tcon->need_reconnect) || (tcon->ses->need_reconnect)) - return 0; + spin_lock(&tcon->ses->chan_lock); + if ((tcon->need_reconnect) || CIFS_ALL_CHANS_NEED_RECONNECT(tcon->ses)) { + spin_unlock(&tcon->ses->chan_lock); + return -EIO; + } + spin_unlock(&tcon->ses->chan_lock); rc = small_smb_init(SMB_COM_TREE_DISCONNECT, 0, tcon, (void **)&smb_buffer); @@ -634,7 +561,7 @@ cifs_echo_callback(struct mid_q_entry *mid) struct TCP_Server_Info *server = mid->callback_data; struct cifs_credits credits = { .value = 1, .instance = 0 }; - DeleteMidQEntry(mid); + release_mid(mid); add_credits(server, &credits, CIFS_ECHO_OP); } @@ -696,9 +623,14 @@ CIFSSMBLogoff(const unsigned int xid, struct cifs_ses *ses) return -EIO; mutex_lock(&ses->session_mutex); - if (ses->need_reconnect) + spin_lock(&ses->chan_lock); + if (CIFS_ALL_CHANS_NEED_RECONNECT(ses)) { + spin_unlock(&ses->chan_lock); goto session_already_dead; /* no need to send SMBlogoff if uid already closed due to reconnect */ + } + spin_unlock(&ses->chan_lock); + rc = small_smb_init(SMB_COM_LOGOFF_ANDX, 2, NULL, (void **)&pSMB); if (rc) { mutex_unlock(&ses->session_mutex); @@ -1324,184 +1256,6 @@ CIFS_open(const unsigned int xid, struct cifs_open_parms *oparms, int *oplock, return rc; } -/* - * Discard any remaining data in the current SMB. To do this, we borrow the - * current bigbuf. - */ -int -cifs_discard_remaining_data(struct TCP_Server_Info *server) -{ - unsigned int rfclen = server->pdu_size; - int remaining = rfclen + server->vals->header_preamble_size - - server->total_read; - - while (remaining > 0) { - int length; - - length = cifs_discard_from_socket(server, - min_t(size_t, remaining, - CIFSMaxBufSize + MAX_HEADER_SIZE(server))); - if (length < 0) - return length; - server->total_read += length; - remaining -= length; - } - - return 0; -} - -static int -__cifs_readv_discard(struct TCP_Server_Info *server, struct mid_q_entry *mid, - bool malformed) -{ - int length; - - length = cifs_discard_remaining_data(server); - dequeue_mid(mid, malformed); - mid->resp_buf = server->smallbuf; - server->smallbuf = NULL; - return length; -} - -static int -cifs_readv_discard(struct TCP_Server_Info *server, struct mid_q_entry *mid) -{ - struct cifs_readdata *rdata = mid->callback_data; - - return __cifs_readv_discard(server, mid, rdata->result); -} - -int -cifs_readv_receive(struct TCP_Server_Info *server, struct mid_q_entry *mid) -{ - int length, len; - unsigned int data_offset, data_len; - struct cifs_readdata *rdata = mid->callback_data; - char *buf = server->smallbuf; - unsigned int buflen = server->pdu_size + - server->vals->header_preamble_size; - bool use_rdma_mr = false; - - cifs_dbg(FYI, "%s: mid=%llu offset=%llu bytes=%u\n", - __func__, mid->mid, rdata->offset, rdata->bytes); - - /* - * read the rest of READ_RSP header (sans Data array), or whatever we - * can if there's not enough data. At this point, we've read down to - * the Mid. - */ - len = min_t(unsigned int, buflen, server->vals->read_rsp_size) - - HEADER_SIZE(server) + 1; - - length = cifs_read_from_socket(server, - buf + HEADER_SIZE(server) - 1, len); - if (length < 0) - return length; - server->total_read += length; - - if (server->ops->is_session_expired && - server->ops->is_session_expired(buf)) { - cifs_reconnect(server); - return -1; - } - - if (server->ops->is_status_pending && - server->ops->is_status_pending(buf, server)) { - cifs_discard_remaining_data(server); - return -1; - } - - /* set up first two iov for signature check and to get credits */ - rdata->iov[0].iov_base = buf; - rdata->iov[0].iov_len = server->vals->header_preamble_size; - rdata->iov[1].iov_base = buf + server->vals->header_preamble_size; - rdata->iov[1].iov_len = - server->total_read - server->vals->header_preamble_size; - cifs_dbg(FYI, "0: iov_base=%p iov_len=%zu\n", - rdata->iov[0].iov_base, rdata->iov[0].iov_len); - cifs_dbg(FYI, "1: iov_base=%p iov_len=%zu\n", - rdata->iov[1].iov_base, rdata->iov[1].iov_len); - - /* Was the SMB read successful? */ - rdata->result = server->ops->map_error(buf, false); - if (rdata->result != 0) { - cifs_dbg(FYI, "%s: server returned error %d\n", - __func__, rdata->result); - /* normal error on read response */ - return __cifs_readv_discard(server, mid, false); - } - - /* Is there enough to get to the rest of the READ_RSP header? */ - if (server->total_read < server->vals->read_rsp_size) { - cifs_dbg(FYI, "%s: server returned short header. got=%u expected=%zu\n", - __func__, server->total_read, - server->vals->read_rsp_size); - rdata->result = -EIO; - return cifs_readv_discard(server, mid); - } - - data_offset = server->ops->read_data_offset(buf) + - server->vals->header_preamble_size; - if (data_offset < server->total_read) { - /* - * win2k8 sometimes sends an offset of 0 when the read - * is beyond the EOF. Treat it as if the data starts just after - * the header. - */ - cifs_dbg(FYI, "%s: data offset (%u) inside read response header\n", - __func__, data_offset); - data_offset = server->total_read; - } else if (data_offset > MAX_CIFS_SMALL_BUFFER_SIZE) { - /* data_offset is beyond the end of smallbuf */ - cifs_dbg(FYI, "%s: data offset (%u) beyond end of smallbuf\n", - __func__, data_offset); - rdata->result = -EIO; - return cifs_readv_discard(server, mid); - } - - cifs_dbg(FYI, "%s: total_read=%u data_offset=%u\n", - __func__, server->total_read, data_offset); - - len = data_offset - server->total_read; - if (len > 0) { - /* read any junk before data into the rest of smallbuf */ - length = cifs_read_from_socket(server, - buf + server->total_read, len); - if (length < 0) - return length; - server->total_read += length; - } - - /* how much data is in the response? */ -#ifdef CONFIG_CIFS_SMB_DIRECT - use_rdma_mr = rdata->mr; -#endif - data_len = server->ops->read_data_length(buf, use_rdma_mr); - if (!use_rdma_mr && (data_offset + data_len > buflen)) { - /* data_len is corrupt -- discard frame */ - rdata->result = -EIO; - return cifs_readv_discard(server, mid); - } - - length = rdata->read_into_pages(server, rdata, data_len); - if (length < 0) - return length; - - server->total_read += length; - - cifs_dbg(FYI, "total_read=%u buflen=%u remaining=%u\n", - server->total_read, buflen, data_len); - - /* discard anything left over */ - if (server->total_read < buflen) - return cifs_readv_discard(server, mid); - - dequeue_mid(mid, false); - mid->resp_buf = server->smallbuf; - server->smallbuf = NULL; - return length; -} - static void cifs_readv_callback(struct mid_q_entry *mid) { @@ -1552,7 +1306,7 @@ cifs_readv_callback(struct mid_q_entry *mid) } queue_work(cifsiod_wq, &rdata->work); - DeleteMidQEntry(mid); + release_mid(mid); add_credits(server, &credits, 0); } @@ -1854,183 +1608,6 @@ CIFSSMBWrite(const unsigned int xid, struct cifs_io_parms *io_parms, return rc; } -void -cifs_writedata_release(struct kref *refcount) -{ - struct cifs_writedata *wdata = container_of(refcount, - struct cifs_writedata, refcount); -#ifdef CONFIG_CIFS_SMB_DIRECT - if (wdata->mr) { - smbd_deregister_mr(wdata->mr); - wdata->mr = NULL; - } -#endif - - if (wdata->cfile) - cifsFileInfo_put(wdata->cfile); - - kvfree(wdata->pages); - kfree(wdata); -} - -/* - * Write failed with a retryable error. Resend the write request. It's also - * possible that the page was redirtied so re-clean the page. - */ -static void -cifs_writev_requeue(struct cifs_writedata *wdata) -{ - int i, rc = 0; - struct inode *inode = d_inode(wdata->cfile->dentry); - struct TCP_Server_Info *server; - unsigned int rest_len; - - server = tlink_tcon(wdata->cfile->tlink)->ses->server; - i = 0; - rest_len = wdata->bytes; - do { - struct cifs_writedata *wdata2; - unsigned int j, nr_pages, wsize, tailsz, cur_len; - - wsize = server->ops->wp_retry_size(inode); - if (wsize < rest_len) { - nr_pages = wsize / PAGE_SIZE; - if (!nr_pages) { - rc = -ENOTSUPP; - break; - } - cur_len = nr_pages * PAGE_SIZE; - tailsz = PAGE_SIZE; - } else { - nr_pages = DIV_ROUND_UP(rest_len, PAGE_SIZE); - cur_len = rest_len; - tailsz = rest_len - (nr_pages - 1) * PAGE_SIZE; - } - - wdata2 = cifs_writedata_alloc(nr_pages, cifs_writev_complete); - if (!wdata2) { - rc = -ENOMEM; - break; - } - - for (j = 0; j < nr_pages; j++) { - wdata2->pages[j] = wdata->pages[i + j]; - lock_page(wdata2->pages[j]); - clear_page_dirty_for_io(wdata2->pages[j]); - } - - wdata2->sync_mode = wdata->sync_mode; - wdata2->nr_pages = nr_pages; - wdata2->offset = page_offset(wdata2->pages[0]); - wdata2->pagesz = PAGE_SIZE; - wdata2->tailsz = tailsz; - wdata2->bytes = cur_len; - - rc = cifs_get_writable_file(CIFS_I(inode), FIND_WR_ANY, - &wdata2->cfile); - if (!wdata2->cfile) { - cifs_dbg(VFS, "No writable handle to retry writepages rc=%d\n", - rc); - if (!is_retryable_error(rc)) - rc = -EBADF; - } else { - wdata2->pid = wdata2->cfile->pid; - rc = server->ops->async_writev(wdata2, - cifs_writedata_release); - } - - for (j = 0; j < nr_pages; j++) { - unlock_page(wdata2->pages[j]); - if (rc != 0 && !is_retryable_error(rc)) { - SetPageError(wdata2->pages[j]); - end_page_writeback(wdata2->pages[j]); - put_page(wdata2->pages[j]); - } - } - - kref_put(&wdata2->refcount, cifs_writedata_release); - if (rc) { - if (is_retryable_error(rc)) - continue; - i += nr_pages; - break; - } - - rest_len -= cur_len; - i += nr_pages; - } while (i < wdata->nr_pages); - - /* cleanup remaining pages from the original wdata */ - for (; i < wdata->nr_pages; i++) { - SetPageError(wdata->pages[i]); - end_page_writeback(wdata->pages[i]); - put_page(wdata->pages[i]); - } - - if (rc != 0 && !is_retryable_error(rc)) - mapping_set_error(inode->i_mapping, rc); - kref_put(&wdata->refcount, cifs_writedata_release); -} - -void -cifs_writev_complete(struct work_struct *work) -{ - struct cifs_writedata *wdata = container_of(work, - struct cifs_writedata, work); - struct inode *inode = d_inode(wdata->cfile->dentry); - int i = 0; - - if (wdata->result == 0) { - spin_lock(&inode->i_lock); - cifs_update_eof(CIFS_I(inode), wdata->offset, wdata->bytes); - spin_unlock(&inode->i_lock); - cifs_stats_bytes_written(tlink_tcon(wdata->cfile->tlink), - wdata->bytes); - } else if (wdata->sync_mode == WB_SYNC_ALL && wdata->result == -EAGAIN) - return cifs_writev_requeue(wdata); - - for (i = 0; i < wdata->nr_pages; i++) { - struct page *page = wdata->pages[i]; - if (wdata->result == -EAGAIN) - __set_page_dirty_nobuffers(page); - else if (wdata->result < 0) - SetPageError(page); - end_page_writeback(page); - cifs_readpage_to_fscache(inode, page); - put_page(page); - } - if (wdata->result != -EAGAIN) - mapping_set_error(inode->i_mapping, wdata->result); - kref_put(&wdata->refcount, cifs_writedata_release); -} - -struct cifs_writedata * -cifs_writedata_alloc(unsigned int nr_pages, work_func_t complete) -{ - struct page **pages = - kcalloc(nr_pages, sizeof(struct page *), GFP_NOFS); - if (pages) - return cifs_writedata_direct_alloc(pages, complete); - - return NULL; -} - -struct cifs_writedata * -cifs_writedata_direct_alloc(struct page **pages, work_func_t complete) -{ - struct cifs_writedata *wdata; - - wdata = kzalloc(sizeof(*wdata), GFP_NOFS); - if (wdata != NULL) { - wdata->pages = pages; - kref_init(&wdata->refcount); - INIT_LIST_HEAD(&wdata->list); - init_completion(&wdata->done); - INIT_WORK(&wdata->work, complete); - } - return wdata; -} - /* * Check the mid_state and signature on received buffer (if any), and queue the * workqueue completion task. @@ -2077,7 +1654,7 @@ cifs_writev_callback(struct mid_q_entry *mid) } queue_work(cifsiod_wq, &wdata->work); - DeleteMidQEntry(mid); + release_mid(mid); add_credits(tcon->ses->server, &credits, 0); } @@ -2503,7 +2080,8 @@ CIFSSMBPosixLock(const unsigned int xid, struct cifs_tcon *tcon, pLockData->fl_start = le64_to_cpu(parm_data->start); pLockData->fl_end = pLockData->fl_start + - le64_to_cpu(parm_data->length) - 1; + (le64_to_cpu(parm_data->length) ? + le64_to_cpu(parm_data->length) - 1 : 0); pLockData->fl_pid = -le32_to_cpu(parm_data->pid); } } @@ -2697,7 +2275,7 @@ int CIFSSMBRenameOpenFile(const unsigned int xid, struct cifs_tcon *pTcon, remap); } rename_info->target_name_len = cpu_to_le32(2 * len_of_str); - count = 12 /* sizeof(struct set_file_rename) */ + (2 * len_of_str); + count = sizeof(struct set_file_rename) + (2 * len_of_str); byte_count += count; pSMB->DataCount = cpu_to_le16(count); pSMB->TotalDataCount = pSMB->DataCount; @@ -3569,7 +3147,7 @@ CIFSSMBSetPosixACL(const unsigned int xid, struct cifs_tcon *tcon, param_offset = offsetof(struct smb_com_transaction2_spi_req, InformationLevel) - 4; offset = param_offset + params; - parm_data = ((char *) &pSMB->hdr.Protocol) + offset; + parm_data = ((char *)pSMB) + sizeof(pSMB->hdr.smb_buf_length) + offset; pSMB->ParameterOffset = cpu_to_le16(param_offset); /* convert to on the wire format for POSIX ACL */ @@ -3604,7 +3182,6 @@ CIFSSMBSetPosixACL(const unsigned int xid, struct cifs_tcon *tcon, return rc; } -/* BB fix tabs in this function FIXME BB */ int CIFSGetExtAttr(const unsigned int xid, struct cifs_tcon *tcon, const int netfid, __u64 *pExtAttrBits, __u64 *pMask) @@ -3621,7 +3198,7 @@ CIFSGetExtAttr(const unsigned int xid, struct cifs_tcon *tcon, GetExtAttrRetry: rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB, - (void **) &pSMBr); + (void **) &pSMBr); if (rc) return rc; @@ -3667,7 +3244,7 @@ CIFSGetExtAttr(const unsigned int xid, struct cifs_tcon *tcon, __u16 data_offset = le16_to_cpu(pSMBr->t2.DataOffset); __u16 count = le16_to_cpu(pSMBr->t2.DataCount); struct file_chattr_info *pfinfo; - /* BB Do we need a cast or hash here ? */ + if (count != 16) { cifs_dbg(FYI, "Invalid size ret in GetExtAttr\n"); rc = -EIO; @@ -4327,11 +3904,12 @@ CIFSFindFirst(const unsigned int xid, struct cifs_tcon *tcon, TRANSACTION2_FFIRST_REQ *pSMB = NULL; TRANSACTION2_FFIRST_RSP *pSMBr = NULL; T2_FFIRST_RSP_PARMS *parms; - int rc = 0; + struct nls_table *nls_codepage; + unsigned int lnoff; + __u16 params, byte_count; int bytes_returned = 0; int name_len, remap; - __u16 params, byte_count; - struct nls_table *nls_codepage; + int rc = 0; cifs_dbg(FYI, "In FindFirst for %s\n", searchName); @@ -4412,63 +3990,52 @@ CIFSFindFirst(const unsigned int xid, struct cifs_tcon *tcon, (struct smb_hdr *) pSMBr, &bytes_returned, 0); cifs_stats_inc(&tcon->stats.cifs_stats.num_ffirst); - if (rc) {/* BB add logic to retry regular search if Unix search - rejected unexpectedly by server */ - /* BB Add code to handle unsupported level rc */ + if (rc) { + /* + * BB: add logic to retry regular search if Unix search rejected + * unexpectedly by server. + */ + /* BB: add code to handle unsupported level rc */ cifs_dbg(FYI, "Error in FindFirst = %d\n", rc); - cifs_buf_release(pSMB); - - /* BB eventually could optimize out free and realloc of buf */ - /* for this case */ + /* + * BB: eventually could optimize out free and realloc of buf for + * this case. + */ if (rc == -EAGAIN) goto findFirstRetry; - } else { /* decode response */ - /* BB remember to free buffer if error BB */ - rc = validate_t2((struct smb_t2_rsp *)pSMBr); - if (rc == 0) { - unsigned int lnoff; + return rc; + } + /* decode response */ + rc = validate_t2((struct smb_t2_rsp *)pSMBr); + if (rc) { + cifs_buf_release(pSMB); + return rc; + } - if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE) - psrch_inf->unicode = true; - else - psrch_inf->unicode = false; - - psrch_inf->ntwrk_buf_start = (char *)pSMBr; - psrch_inf->smallBuf = false; - psrch_inf->srch_entries_start = - (char *) &pSMBr->hdr.Protocol + - le16_to_cpu(pSMBr->t2.DataOffset); - parms = (T2_FFIRST_RSP_PARMS *)((char *) &pSMBr->hdr.Protocol + - le16_to_cpu(pSMBr->t2.ParameterOffset)); - - if (parms->EndofSearch) - psrch_inf->endOfSearch = true; - else - psrch_inf->endOfSearch = false; - - psrch_inf->entries_in_buffer = - le16_to_cpu(parms->SearchCount); - psrch_inf->index_of_last_entry = 2 /* skip . and .. */ + - psrch_inf->entries_in_buffer; - lnoff = le16_to_cpu(parms->LastNameOffset); - if (CIFSMaxBufSize < lnoff) { - cifs_dbg(VFS, "ignoring corrupt resume name\n"); - psrch_inf->last_entry = NULL; - return rc; - } + psrch_inf->unicode = !!(pSMBr->hdr.Flags2 & SMBFLG2_UNICODE); + psrch_inf->ntwrk_buf_start = (char *)pSMBr; + psrch_inf->smallBuf = false; + psrch_inf->srch_entries_start = (char *)&pSMBr->hdr.Protocol + + le16_to_cpu(pSMBr->t2.DataOffset); - psrch_inf->last_entry = psrch_inf->srch_entries_start + - lnoff; + parms = (T2_FFIRST_RSP_PARMS *)((char *)&pSMBr->hdr.Protocol + + le16_to_cpu(pSMBr->t2.ParameterOffset)); + psrch_inf->endOfSearch = !!parms->EndofSearch; - if (pnetfid) - *pnetfid = parms->SearchHandle; - } else { - cifs_buf_release(pSMB); - } + psrch_inf->entries_in_buffer = le16_to_cpu(parms->SearchCount); + psrch_inf->index_of_last_entry = 2 /* skip . and .. */ + + psrch_inf->entries_in_buffer; + lnoff = le16_to_cpu(parms->LastNameOffset); + if (CIFSMaxBufSize < lnoff) { + cifs_dbg(VFS, "ignoring corrupt resume name\n"); + psrch_inf->last_entry = NULL; + } else { + psrch_inf->last_entry = psrch_inf->srch_entries_start + lnoff; + if (pnetfid) + *pnetfid = parms->SearchHandle; } - - return rc; + return 0; } int CIFSFindNext(const unsigned int xid, struct cifs_tcon *tcon, @@ -4478,11 +4045,12 @@ int CIFSFindNext(const unsigned int xid, struct cifs_tcon *tcon, TRANSACTION2_FNEXT_REQ *pSMB = NULL; TRANSACTION2_FNEXT_RSP *pSMBr = NULL; T2_FNEXT_RSP_PARMS *parms; - char *response_data; - int rc = 0; - int bytes_returned; unsigned int name_len; + unsigned int lnoff; __u16 params, byte_count; + char *response_data; + int bytes_returned; + int rc = 0; cifs_dbg(FYI, "In FindNext\n"); @@ -4527,8 +4095,8 @@ int CIFSFindNext(const unsigned int xid, struct cifs_tcon *tcon, pSMB->ResumeFileName[name_len] = 0; pSMB->ResumeFileName[name_len+1] = 0; } else { - rc = -EINVAL; - goto FNext2_err_exit; + cifs_buf_release(pSMB); + return -EINVAL; } byte_count = params + 1 /* pad */ ; pSMB->TotalParameterCount = cpu_to_le16(params); @@ -4539,71 +4107,61 @@ int CIFSFindNext(const unsigned int xid, struct cifs_tcon *tcon, rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, (struct smb_hdr *) pSMBr, &bytes_returned, 0); cifs_stats_inc(&tcon->stats.cifs_stats.num_fnext); + if (rc) { + cifs_buf_release(pSMB); if (rc == -EBADF) { psrch_inf->endOfSearch = true; - cifs_buf_release(pSMB); rc = 0; /* search probably was closed at end of search*/ - } else + } else { cifs_dbg(FYI, "FindNext returned = %d\n", rc); - } else { /* decode response */ - rc = validate_t2((struct smb_t2_rsp *)pSMBr); - - if (rc == 0) { - unsigned int lnoff; - - /* BB fixme add lock for file (srch_info) struct here */ - if (pSMBr->hdr.Flags2 & SMBFLG2_UNICODE) - psrch_inf->unicode = true; - else - psrch_inf->unicode = false; - response_data = (char *) &pSMBr->hdr.Protocol + - le16_to_cpu(pSMBr->t2.ParameterOffset); - parms = (T2_FNEXT_RSP_PARMS *)response_data; - response_data = (char *)&pSMBr->hdr.Protocol + - le16_to_cpu(pSMBr->t2.DataOffset); - if (psrch_inf->smallBuf) - cifs_small_buf_release( - psrch_inf->ntwrk_buf_start); - else - cifs_buf_release(psrch_inf->ntwrk_buf_start); - psrch_inf->srch_entries_start = response_data; - psrch_inf->ntwrk_buf_start = (char *)pSMB; - psrch_inf->smallBuf = false; - if (parms->EndofSearch) - psrch_inf->endOfSearch = true; - else - psrch_inf->endOfSearch = false; - psrch_inf->entries_in_buffer = - le16_to_cpu(parms->SearchCount); - psrch_inf->index_of_last_entry += - psrch_inf->entries_in_buffer; - lnoff = le16_to_cpu(parms->LastNameOffset); - if (CIFSMaxBufSize < lnoff) { - cifs_dbg(VFS, "ignoring corrupt resume name\n"); - psrch_inf->last_entry = NULL; - return rc; - } else - psrch_inf->last_entry = - psrch_inf->srch_entries_start + lnoff; - -/* cifs_dbg(FYI, "fnxt2 entries in buf %d index_of_last %d\n", - psrch_inf->entries_in_buffer, psrch_inf->index_of_last_entry); */ - - /* BB fixme add unlock here */ } + return rc; + } + /* decode response */ + rc = validate_t2((struct smb_t2_rsp *)pSMBr); + if (rc) { + cifs_buf_release(pSMB); + return rc; } + /* BB fixme add lock for file (srch_info) struct here */ + psrch_inf->unicode = !!(pSMBr->hdr.Flags2 & SMBFLG2_UNICODE); + response_data = (char *)&pSMBr->hdr.Protocol + + le16_to_cpu(pSMBr->t2.ParameterOffset); + parms = (T2_FNEXT_RSP_PARMS *)response_data; + response_data = (char *)&pSMBr->hdr.Protocol + + le16_to_cpu(pSMBr->t2.DataOffset); - /* BB On error, should we leave previous search buf (and count and - last entry fields) intact or free the previous one? */ + if (psrch_inf->smallBuf) + cifs_small_buf_release(psrch_inf->ntwrk_buf_start); + else + cifs_buf_release(psrch_inf->ntwrk_buf_start); + + psrch_inf->srch_entries_start = response_data; + psrch_inf->ntwrk_buf_start = (char *)pSMB; + psrch_inf->smallBuf = false; + psrch_inf->endOfSearch = !!parms->EndofSearch; + psrch_inf->entries_in_buffer = le16_to_cpu(parms->SearchCount); + psrch_inf->index_of_last_entry += psrch_inf->entries_in_buffer; + lnoff = le16_to_cpu(parms->LastNameOffset); + if (CIFSMaxBufSize < lnoff) { + cifs_dbg(VFS, "ignoring corrupt resume name\n"); + psrch_inf->last_entry = NULL; + } else { + psrch_inf->last_entry = + psrch_inf->srch_entries_start + lnoff; + } + /* BB fixme add unlock here */ - /* Note: On -EAGAIN error only caller can retry on handle based calls - since file handle passed in no longer valid */ -FNext2_err_exit: - if (rc != 0) - cifs_buf_release(pSMB); - return rc; + /* + * BB: On error, should we leave previous search buf + * (and count and last entry fields) intact or free the previous one? + * + * Note: On -EAGAIN error only caller can retry on handle based calls + * since file handle passed in no longer valid. + */ + return 0; } int @@ -5712,14 +5270,15 @@ CIFSSMBSetPathInfoFB(const unsigned int xid, struct cifs_tcon *tcon, struct cifs_fid fid; int rc; - oparms.tcon = tcon; - oparms.cifs_sb = cifs_sb; - oparms.desired_access = GENERIC_WRITE; - oparms.create_options = cifs_create_options(cifs_sb, 0); - oparms.disposition = FILE_OPEN; - oparms.path = fileName; - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .cifs_sb = cifs_sb, + .desired_access = GENERIC_WRITE, + .create_options = cifs_create_options(cifs_sb, 0), + .disposition = FILE_OPEN, + .path = fileName, + .fid = &fid, + }; rc = CIFS_open(xid, &oparms, &oplock, NULL); if (rc) @@ -6126,7 +5685,7 @@ CIFSSMBQAllEAs(const unsigned int xid, struct cifs_tcon *tcon, /* account for ea list len */ list_len -= 4; - temp_fea = ea_response_data->list; + temp_fea = &ea_response_data->list; temp_ptr = (char *)temp_fea; while (list_len > 0) { unsigned int name_len; @@ -6241,7 +5800,7 @@ CIFSSMBSetEA(const unsigned int xid, struct cifs_tcon *tcon, else name_len = strnlen(ea_name, 255); - count = sizeof(*parm_data) + ea_value_len + name_len; + count = sizeof(*parm_data) + 1 + ea_value_len + name_len; pSMB->MaxParameterCount = cpu_to_le16(2); /* BB find max SMB PDU from sess */ pSMB->MaxDataCount = cpu_to_le16(1000); @@ -6265,14 +5824,14 @@ CIFSSMBSetEA(const unsigned int xid, struct cifs_tcon *tcon, byte_count = 3 /* pad */ + params + count; pSMB->DataCount = cpu_to_le16(count); parm_data->list_len = cpu_to_le32(count); - parm_data->list[0].EA_flags = 0; + parm_data->list.EA_flags = 0; /* we checked above that name len is less than 255 */ - parm_data->list[0].name_len = (__u8)name_len; + parm_data->list.name_len = (__u8)name_len; /* EA names are always ASCII */ if (ea_name) - strncpy(parm_data->list[0].name, ea_name, name_len); - parm_data->list[0].name[name_len] = 0; - parm_data->list[0].value_len = cpu_to_le16(ea_value_len); + strncpy(parm_data->list.name, ea_name, name_len); + parm_data->list.name[name_len] = '\0'; + parm_data->list.value_len = cpu_to_le16(ea_value_len); /* caller ensures that ea_value_len is less than 64K but we need to ensure that it fits within the smb */ @@ -6280,7 +5839,7 @@ CIFSSMBSetEA(const unsigned int xid, struct cifs_tcon *tcon, negotiated SMB buffer size BB */ /* if (ea_value_len > buffer_size - 512 (enough for header)) */ if (ea_value_len) - memcpy(parm_data->list[0].name+name_len+1, + memcpy(parm_data->list.name + name_len + 1, ea_value, ea_value_len); pSMB->TotalDataCount = pSMB->DataCount; diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index a3e4811b7871e..dd5a196622402 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c @@ -46,6 +46,7 @@ #include "smbdirect.h" #include "dns_resolve.h" #ifdef CONFIG_CIFS_DFS_UPCALL +#include "dfs.h" #include "dfs_cache.h" #endif #include "fs_context.h" @@ -61,20 +62,6 @@ extern bool disable_legacy_dialects; /* Drop the connection to not overload the server */ #define MAX_STATUS_IO_TIMEOUT 5 -struct mount_ctx { - struct cifs_sb_info *cifs_sb; - struct smb3_fs_context *fs_ctx; - unsigned int xid; - struct TCP_Server_Info *server; - struct cifs_ses *ses; - struct cifs_tcon *tcon; -#ifdef CONFIG_CIFS_DFS_UPCALL - struct cifs_ses *root_ses; - uuid_t mount_id; - char *origin_fullpath, *leaf_fullpath; -#endif -}; - static int ip_connect(struct TCP_Server_Info *server); static int generic_ip_connect(struct TCP_Server_Info *server); static void tlink_rb_insert(struct rb_root *root, struct tcon_link *new_tlink); @@ -90,13 +77,16 @@ static int reconn_set_ipaddr_from_hostname(struct TCP_Server_Info *server) { int rc; int len; - char *unc, *ipaddr = NULL; - time64_t expiry, now; - unsigned long ttl = SMB_DNS_RESOLVE_INTERVAL_DEFAULT; + char *unc; + struct sockaddr_storage ss; if (!server->hostname) return -EINVAL; + /* if server hostname isn't populated, there's nothing to do here */ + if (server->hostname[0] == '\0') + return 0; + len = strlen(server->hostname) + 3; unc = kmalloc(len, GFP_KERNEL); @@ -106,101 +96,174 @@ static int reconn_set_ipaddr_from_hostname(struct TCP_Server_Info *server) } scnprintf(unc, len, "\\\\%s", server->hostname); - rc = dns_resolve_server_name_to_ip(unc, &ipaddr, &expiry); + spin_lock(&server->srv_lock); + ss = server->dstaddr; + spin_unlock(&server->srv_lock); + + rc = dns_resolve_server_name_to_ip(unc, (struct sockaddr *)&ss, NULL); kfree(unc); if (rc < 0) { cifs_dbg(FYI, "%s: failed to resolve server part of %s to IP: %d\n", __func__, server->hostname, rc); - goto requeue_resolve; - } - - spin_lock(&cifs_tcp_ses_lock); - rc = cifs_convert_address((struct sockaddr *)&server->dstaddr, ipaddr, - strlen(ipaddr)); - spin_unlock(&cifs_tcp_ses_lock); - kfree(ipaddr); - - /* rc == 1 means success here */ - if (rc) { - now = ktime_get_real_seconds(); - if (expiry && expiry > now) - /* - * To make sure we don't use the cached entry, retry 1s - * after expiry. - */ - ttl = max_t(unsigned long, expiry - now, SMB_DNS_RESOLVE_INTERVAL_MIN) + 1; + } else { + spin_lock(&server->srv_lock); + memcpy(&server->dstaddr, &ss, sizeof(server->dstaddr)); + spin_unlock(&server->srv_lock); + rc = 0; } - rc = !rc ? -1 : 0; - -requeue_resolve: - cifs_dbg(FYI, "%s: next dns resolution scheduled for %lu seconds in the future\n", - __func__, ttl); - mod_delayed_work(cifsiod_wq, &server->resolve, (ttl * HZ)); return rc; } - -static void cifs_resolve_server(struct work_struct *work) +static void smb2_query_server_interfaces(struct work_struct *work) { int rc; - struct TCP_Server_Info *server = container_of(work, - struct TCP_Server_Info, resolve.work); - - mutex_lock(&server->srv_mutex); + struct cifs_tcon *tcon = container_of(work, + struct cifs_tcon, + query_interfaces.work); /* - * Resolve the hostname again to make sure that IP address is up-to-date. + * query server network interfaces, in case they change */ - rc = reconn_set_ipaddr_from_hostname(server); + rc = SMB3_request_interfaces(0, tcon, false); if (rc) { - cifs_dbg(FYI, "%s: failed to resolve hostname: %d\n", + cifs_dbg(FYI, "%s: failed to query server interfaces: %d\n", __func__, rc); } - mutex_unlock(&server->srv_mutex); + queue_delayed_work(cifsiod_wq, &tcon->query_interfaces, + (SMB_INTERFACE_POLL_INTERVAL * HZ)); } -/** +/* + * Update the tcpStatus for the server. + * This is used to signal the cifsd thread to call cifs_reconnect + * ONLY cifsd thread should call cifs_reconnect. For any other + * thread, use this function + * + * @server: the tcp ses for which reconnect is needed + * @all_channels: if this needs to be done for all channels + */ +void +cifs_signal_cifsd_for_reconnect(struct TCP_Server_Info *server, + bool all_channels) +{ + struct TCP_Server_Info *pserver; + struct cifs_ses *ses; + int i; + + /* If server is a channel, select the primary channel */ + pserver = CIFS_SERVER_IS_CHAN(server) ? server->primary_server : server; + + spin_lock(&pserver->srv_lock); + if (!all_channels) { + pserver->tcpStatus = CifsNeedReconnect; + spin_unlock(&pserver->srv_lock); + return; + } + spin_unlock(&pserver->srv_lock); + + spin_lock(&cifs_tcp_ses_lock); + list_for_each_entry(ses, &pserver->smb_ses_list, smb_ses_list) { + spin_lock(&ses->chan_lock); + for (i = 0; i < ses->chan_count; i++) { + spin_lock(&ses->chans[i].server->srv_lock); + ses->chans[i].server->tcpStatus = CifsNeedReconnect; + spin_unlock(&ses->chans[i].server->srv_lock); + } + spin_unlock(&ses->chan_lock); + } + spin_unlock(&cifs_tcp_ses_lock); +} + +/* * Mark all sessions and tcons for reconnect. + * IMPORTANT: make sure that this gets called only from + * cifsd thread. For any other thread, use + * cifs_signal_cifsd_for_reconnect * + * @server: the tcp ses for which reconnect is needed * @server needs to be previously set to CifsNeedReconnect. + * @mark_smb_session: whether even sessions need to be marked */ -static void cifs_mark_tcp_ses_conns_for_reconnect(struct TCP_Server_Info *server) +void +cifs_mark_tcp_ses_conns_for_reconnect(struct TCP_Server_Info *server, + bool mark_smb_session) { - struct list_head *tmp, *tmp2; - struct cifs_ses *ses; + struct TCP_Server_Info *pserver; + struct cifs_ses *ses, *nses; struct cifs_tcon *tcon; - struct mid_q_entry *mid_entry; - struct list_head retry_list; - - server->maxBuf = 0; - server->max_read = 0; - cifs_dbg(FYI, "Mark tcp session as need reconnect\n"); - trace_smb3_reconnect(server->CurrentMid, server->conn_id, server->hostname); /* * before reconnecting the tcp session, mark the smb session (uid) and the tid bad so they * are not used until reconnected. */ - cifs_dbg(FYI, "%s: marking sessions and tcons for reconnect\n", __func__); + cifs_dbg(FYI, "%s: marking necessary sessions and tcons for reconnect\n", __func__); + + /* If server is a channel, select the primary channel */ + pserver = CIFS_SERVER_IS_CHAN(server) ? server->primary_server : server; + + spin_lock(&cifs_tcp_ses_lock); - list_for_each(tmp, &server->smb_ses_list) { - ses = list_entry(tmp, struct cifs_ses, smb_ses_list); - ses->need_reconnect = true; - list_for_each(tmp2, &ses->tcon_list) { - tcon = list_entry(tmp2, struct cifs_tcon, tcon_list); + list_for_each_entry_safe(ses, nses, &pserver->smb_ses_list, smb_ses_list) { + /* check if iface is still active */ + if (!cifs_chan_is_iface_active(ses, server)) + cifs_chan_update_iface(ses, server); + + spin_lock(&ses->chan_lock); + if (!mark_smb_session && cifs_chan_needs_reconnect(ses, server)) { + spin_unlock(&ses->chan_lock); + continue; + } + + if (mark_smb_session) + CIFS_SET_ALL_CHANS_NEED_RECONNECT(ses); + else + cifs_chan_set_need_reconnect(ses, server); + + cifs_dbg(FYI, "%s: channel connect bitmap: 0x%lx\n", + __func__, ses->chans_need_reconnect); + + /* If all channels need reconnect, then tcon needs reconnect */ + if (!mark_smb_session && !CIFS_ALL_CHANS_NEED_RECONNECT(ses)) { + spin_unlock(&ses->chan_lock); + continue; + } + spin_unlock(&ses->chan_lock); + + spin_lock(&ses->ses_lock); + ses->ses_status = SES_NEED_RECON; + spin_unlock(&ses->ses_lock); + + list_for_each_entry(tcon, &ses->tcon_list, tcon_list) { tcon->need_reconnect = true; + spin_lock(&tcon->tc_lock); + tcon->status = TID_NEED_RECON; + spin_unlock(&tcon->tc_lock); } - if (ses->tcon_ipc) + if (ses->tcon_ipc) { ses->tcon_ipc->need_reconnect = true; + spin_lock(&ses->tcon_ipc->tc_lock); + ses->tcon_ipc->status = TID_NEED_RECON; + spin_unlock(&ses->tcon_ipc->tc_lock); + } } spin_unlock(&cifs_tcp_ses_lock); +} + +static void +cifs_abort_connection(struct TCP_Server_Info *server) +{ + struct mid_q_entry *mid, *nmid; + struct list_head retry_list; + + server->maxBuf = 0; + server->max_read = 0; /* do not want to be sending data on a socket we are freeing */ cifs_dbg(FYI, "%s: tearing down socket\n", __func__); - mutex_lock(&server->srv_mutex); + cifs_server_lock(server); if (server->ssocket) { cifs_dbg(FYI, "State: 0x%x Flags: 0x%lx\n", server->ssocket->state, server->ssocket->flags); @@ -212,7 +275,7 @@ static void cifs_mark_tcp_ses_conns_for_reconnect(struct TCP_Server_Info *server } server->sequence_number = 0; server->session_estab = false; - kfree(server->session_key.response); + kfree_sensitive(server->session_key.response); server->session_key.response = NULL; server->session_key.len = 0; server->lstrp = jiffies; @@ -220,45 +283,48 @@ static void cifs_mark_tcp_ses_conns_for_reconnect(struct TCP_Server_Info *server /* mark submitted MIDs for retry and issue callback */ INIT_LIST_HEAD(&retry_list); cifs_dbg(FYI, "%s: moving mids to private list\n", __func__); - spin_lock(&GlobalMid_Lock); - list_for_each_safe(tmp, tmp2, &server->pending_mid_q) { - mid_entry = list_entry(tmp, struct mid_q_entry, qhead); - kref_get(&mid_entry->refcount); - if (mid_entry->mid_state == MID_REQUEST_SUBMITTED) - mid_entry->mid_state = MID_RETRY_NEEDED; - list_move(&mid_entry->qhead, &retry_list); - mid_entry->mid_flags |= MID_DELETED; - } - spin_unlock(&GlobalMid_Lock); - mutex_unlock(&server->srv_mutex); + spin_lock(&server->mid_lock); + list_for_each_entry_safe(mid, nmid, &server->pending_mid_q, qhead) { + kref_get(&mid->refcount); + if (mid->mid_state == MID_REQUEST_SUBMITTED) + mid->mid_state = MID_RETRY_NEEDED; + list_move(&mid->qhead, &retry_list); + mid->mid_flags |= MID_DELETED; + } + spin_unlock(&server->mid_lock); + cifs_server_unlock(server); cifs_dbg(FYI, "%s: issuing mid callbacks\n", __func__); - list_for_each_safe(tmp, tmp2, &retry_list) { - mid_entry = list_entry(tmp, struct mid_q_entry, qhead); - list_del_init(&mid_entry->qhead); - mid_entry->callback(mid_entry); - cifs_mid_q_entry_release(mid_entry); + list_for_each_entry_safe(mid, nmid, &retry_list, qhead) { + list_del_init(&mid->qhead); + mid->callback(mid); + release_mid(mid); } if (cifs_rdma_enabled(server)) { - mutex_lock(&server->srv_mutex); + cifs_server_lock(server); smbd_destroy(server); - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); } } static bool cifs_tcp_ses_needs_reconnect(struct TCP_Server_Info *server, int num_targets) { - spin_lock(&GlobalMid_Lock); + spin_lock(&server->srv_lock); server->nr_targets = num_targets; if (server->tcpStatus == CifsExiting) { /* the demux thread will exit normally next time through the loop */ - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->srv_lock); wake_up(&server->response_q); return false; } + + cifs_dbg(FYI, "Mark tcp session as need reconnect\n"); + trace_smb3_reconnect(server->CurrentMid, server->conn_id, + server->hostname); server->tcpStatus = CifsNeedReconnect; - spin_unlock(&GlobalMid_Lock); + + spin_unlock(&server->srv_lock); return true; } @@ -269,19 +335,27 @@ static bool cifs_tcp_ses_needs_reconnect(struct TCP_Server_Info *server, int num * mark all smb sessions as reconnecting for tcp session * reconnect tcp session * wake up waiters on reconnection? - (not needed currently) + * + * if mark_smb_session is passed as true, unconditionally mark + * the smb session (and tcon) for reconnect as well. This value + * doesn't really matter for non-multichannel scenario. + * */ -static int __cifs_reconnect(struct TCP_Server_Info *server) +static int __cifs_reconnect(struct TCP_Server_Info *server, + bool mark_smb_session) { int rc = 0; if (!cifs_tcp_ses_needs_reconnect(server, 1)) return 0; - cifs_mark_tcp_ses_conns_for_reconnect(server); + cifs_mark_tcp_ses_conns_for_reconnect(server, mark_smb_session); + + cifs_abort_connection(server); do { try_to_freeze(); - mutex_lock(&server->srv_mutex); + cifs_server_lock(server); if (!cifs_swn_set_server_dstaddr(server)) { /* resolve the hostname again to make sure that IP address is up-to-date */ @@ -294,23 +368,26 @@ static int __cifs_reconnect(struct TCP_Server_Info *server) else rc = generic_ip_connect(server); if (rc) { - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); cifs_dbg(FYI, "%s: reconnect error %d\n", __func__, rc); msleep(3000); } else { atomic_inc(&tcpSesReconnectCount); set_credits(server, 1); - spin_lock(&GlobalMid_Lock); + spin_lock(&server->srv_lock); if (server->tcpStatus != CifsExiting) server->tcpStatus = CifsNeedNegotiate; - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->srv_lock); cifs_swn_reset_server_dstaddr(server); - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); + mod_delayed_work(cifsiod_wq, &server->reconnect, 0); } } while (server->tcpStatus == CifsNeedReconnect); + spin_lock(&server->srv_lock); if (server->tcpStatus == CifsNeedNegotiate) mod_delayed_work(cifsiod_wq, &server->echo, 0); + spin_unlock(&server->srv_lock); wake_up(&server->response_q); return rc; @@ -326,8 +403,10 @@ static int __reconnect_target_unlocked(struct TCP_Server_Info *server, const cha if (server->hostname != target) { hostname = extract_hostname(target); if (!IS_ERR(hostname)) { + spin_lock(&server->srv_lock); kfree(server->hostname); server->hostname = hostname; + spin_unlock(&server->srv_lock); } else { cifs_dbg(FYI, "%s: couldn't extract hostname or address from dfs target: %ld\n", __func__, PTR_ERR(hostname)); @@ -375,7 +454,6 @@ static int reconnect_target_unlocked(struct TCP_Server_Info *server, struct dfs_ static int reconnect_dfs_server(struct TCP_Server_Info *server) { int rc = 0; - const char *refpath = server->current_fullpath + 1; struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl); struct dfs_cache_tgt_iterator *target_hint = NULL; int num_targets = 0; @@ -388,24 +466,33 @@ static int reconnect_dfs_server(struct TCP_Server_Info *server) * through /proc/fs/cifs/dfscache or the target list is empty due to server settings after * refreshing the referral, so, in this case, default it to 1. */ - if (!dfs_cache_noreq_find(refpath, NULL, &tl)) + mutex_lock(&server->refpath_lock); + if (!dfs_cache_noreq_find(server->leaf_fullpath + 1, NULL, &tl)) num_targets = dfs_cache_get_nr_tgts(&tl); + mutex_unlock(&server->refpath_lock); if (!num_targets) num_targets = 1; if (!cifs_tcp_ses_needs_reconnect(server, num_targets)) return 0; - cifs_mark_tcp_ses_conns_for_reconnect(server); + /* + * Unconditionally mark all sessions & tcons for reconnect as we might be connecting to a + * different server or share during failover. It could be improved by adding some logic to + * only do that in case it connects to a different server or share, though. + */ + cifs_mark_tcp_ses_conns_for_reconnect(server, true); + + cifs_abort_connection(server); do { try_to_freeze(); - mutex_lock(&server->srv_mutex); + cifs_server_lock(server); rc = reconnect_target_unlocked(server, &tl, &target_hint); if (rc) { /* Failed to reconnect socket */ - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); cifs_dbg(FYI, "%s: reconnect error %d\n", __func__, rc); msleep(3000); continue; @@ -417,43 +504,45 @@ static int reconnect_dfs_server(struct TCP_Server_Info *server) */ atomic_inc(&tcpSesReconnectCount); set_credits(server, 1); - spin_lock(&GlobalMid_Lock); + spin_lock(&server->srv_lock); if (server->tcpStatus != CifsExiting) server->tcpStatus = CifsNeedNegotiate; - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->srv_lock); cifs_swn_reset_server_dstaddr(server); - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); + mod_delayed_work(cifsiod_wq, &server->reconnect, 0); } while (server->tcpStatus == CifsNeedReconnect); - if (target_hint) - dfs_cache_noreq_update_tgthint(refpath, target_hint); - + mutex_lock(&server->refpath_lock); + dfs_cache_noreq_update_tgthint(server->leaf_fullpath + 1, target_hint); + mutex_unlock(&server->refpath_lock); dfs_cache_free_tgts(&tl); /* Need to set up echo worker again once connection has been established */ + spin_lock(&server->srv_lock); if (server->tcpStatus == CifsNeedNegotiate) mod_delayed_work(cifsiod_wq, &server->echo, 0); + spin_unlock(&server->srv_lock); wake_up(&server->response_q); return rc; } -int cifs_reconnect(struct TCP_Server_Info *server) +int cifs_reconnect(struct TCP_Server_Info *server, bool mark_smb_session) { - /* If tcp session is not an dfs connection, then reconnect to last target server */ - spin_lock(&cifs_tcp_ses_lock); - if (!server->is_dfs_conn || !server->origin_fullpath || !server->leaf_fullpath) { - spin_unlock(&cifs_tcp_ses_lock); - return __cifs_reconnect(server); + mutex_lock(&server->refpath_lock); + if (!server->leaf_fullpath) { + mutex_unlock(&server->refpath_lock); + return __cifs_reconnect(server, mark_smb_session); } - spin_unlock(&cifs_tcp_ses_lock); + mutex_unlock(&server->refpath_lock); return reconnect_dfs_server(server); } #else -int cifs_reconnect(struct TCP_Server_Info *server) +int cifs_reconnect(struct TCP_Server_Info *server, bool mark_smb_session) { - return __cifs_reconnect(server); + return __cifs_reconnect(server, mark_smb_session); } #endif @@ -477,9 +566,7 @@ cifs_echo_request(struct work_struct *work) goto requeue_echo; rc = server->ops->echo ? server->ops->echo(server) : -ENOSYS; - if (rc) - cifs_dbg(FYI, "Unable to send echo request to server: %s\n", - server->hostname); + cifs_server_dbg(FYI, "send echo request: rc = %d\n", rc); /* Check witness registrations */ cifs_swn_check(); @@ -535,15 +622,18 @@ server_unresponsive(struct TCP_Server_Info *server) * 65s kernel_recvmsg times out, and we see that we haven't gotten * a response in >60s. */ + spin_lock(&server->srv_lock); if ((server->tcpStatus == CifsGood || server->tcpStatus == CifsNeedNegotiate) && (!server->ops->can_echo || server->ops->can_echo(server)) && time_after(jiffies, server->lstrp + 3 * server->echo_interval)) { + spin_unlock(&server->srv_lock); cifs_server_dbg(VFS, "has not responded in %lu seconds. Reconnecting...\n", (3 * server->echo_interval) / HZ); - cifs_reconnect(server); + cifs_reconnect(server, false); return true; } + spin_unlock(&server->srv_lock); return false; } @@ -574,7 +664,7 @@ cifs_readv_from_socket(struct TCP_Server_Info *server, struct msghdr *smb_msg) /* reconnect if no credits and no requests in flight */ if (zero_credits(server)) { - cifs_reconnect(server); + cifs_reconnect(server, false); return -ECONNABORTED; } @@ -585,13 +675,18 @@ cifs_readv_from_socket(struct TCP_Server_Info *server, struct msghdr *smb_msg) else length = sock_recvmsg(server->ssocket, smb_msg, 0); - if (server->tcpStatus == CifsExiting) + spin_lock(&server->srv_lock); + if (server->tcpStatus == CifsExiting) { + spin_unlock(&server->srv_lock); return -ESHUTDOWN; + } if (server->tcpStatus == CifsNeedReconnect) { - cifs_reconnect(server); + spin_unlock(&server->srv_lock); + cifs_reconnect(server, false); return -ECONNABORTED; } + spin_unlock(&server->srv_lock); if (length == -ERESTARTSYS || length == -EAGAIN || @@ -608,7 +703,7 @@ cifs_readv_from_socket(struct TCP_Server_Info *server, struct msghdr *smb_msg) if (length <= 0) { cifs_dbg(FYI, "Received no data or error: %d\n", length); - cifs_reconnect(server); + cifs_reconnect(server, false); return -ECONNABORTED; } } @@ -652,6 +747,20 @@ cifs_read_page_from_socket(struct TCP_Server_Info *server, struct page *page, return cifs_readv_from_socket(server, &smb_msg); } +int +cifs_read_iter_from_socket(struct TCP_Server_Info *server, struct iov_iter *iter, + unsigned int to_read) +{ + struct msghdr smb_msg = { .msg_iter = *iter }; + int ret; + + iov_iter_truncate(&smb_msg.msg_iter, to_read); + ret = cifs_readv_from_socket(server, &smb_msg); + if (ret > 0) + iov_iter_advance(iter, ret); + return ret; +} + static bool is_smb_response(struct TCP_Server_Info *server, unsigned char type) { @@ -685,11 +794,11 @@ is_smb_response(struct TCP_Server_Info *server, unsigned char type) * initialize frame). */ cifs_set_port((struct sockaddr *)&server->dstaddr, CIFS_PORT); - cifs_reconnect(server); + cifs_reconnect(server, true); break; default: cifs_server_dbg(VFS, "RFC 1002 unknown response type 0x%x\n", type); - cifs_reconnect(server); + cifs_reconnect(server, true); } return false; @@ -701,7 +810,7 @@ dequeue_mid(struct mid_q_entry *mid, bool malformed) #ifdef CONFIG_CIFS_STATS2 mid->when_received = jiffies; #endif - spin_lock(&GlobalMid_Lock); + spin_lock(&mid->server->mid_lock); if (!malformed) mid->mid_state = MID_RESPONSE_RECEIVED; else @@ -710,24 +819,25 @@ dequeue_mid(struct mid_q_entry *mid, bool malformed) * Trying to handle/dequeue a mid after the send_recv() * function has finished processing it is a bug. */ - if (mid->mid_flags & MID_DELETED) + if (mid->mid_flags & MID_DELETED) { + spin_unlock(&mid->server->mid_lock); pr_warn_once("trying to dequeue a deleted mid\n"); - else { + } else { list_del_init(&mid->qhead); mid->mid_flags |= MID_DELETED; + spin_unlock(&mid->server->mid_lock); } - spin_unlock(&GlobalMid_Lock); } static unsigned int smb2_get_credits_from_hdr(char *buffer, struct TCP_Server_Info *server) { - struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buffer; + struct smb2_hdr *shdr = (struct smb2_hdr *)buffer; /* * SMB1 does not use credits. */ - if (server->vals->header_preamble_size) + if (is_smb1(server)) return 0; return le16_to_cpu(shdr->CreditRequest); @@ -754,21 +864,67 @@ handle_mid(struct mid_q_entry *mid, struct TCP_Server_Info *server, dequeue_mid(mid, malformed); } +int +cifs_enable_signing(struct TCP_Server_Info *server, bool mnt_sign_required) +{ + bool srv_sign_required = server->sec_mode & server->vals->signing_required; + bool srv_sign_enabled = server->sec_mode & server->vals->signing_enabled; + bool mnt_sign_enabled; + + /* + * Is signing required by mnt options? If not then check + * global_secflags to see if it is there. + */ + if (!mnt_sign_required) + mnt_sign_required = ((global_secflags & CIFSSEC_MUST_SIGN) == + CIFSSEC_MUST_SIGN); + + /* + * If signing is required then it's automatically enabled too, + * otherwise, check to see if the secflags allow it. + */ + mnt_sign_enabled = mnt_sign_required ? mnt_sign_required : + (global_secflags & CIFSSEC_MAY_SIGN); + + /* If server requires signing, does client allow it? */ + if (srv_sign_required) { + if (!mnt_sign_enabled) { + cifs_dbg(VFS, "Server requires signing, but it's disabled in SecurityFlags!\n"); + return -EOPNOTSUPP; + } + server->sign = true; + } + + /* If client requires signing, does server allow it? */ + if (mnt_sign_required) { + if (!srv_sign_enabled) { + cifs_dbg(VFS, "Server does not support signing!\n"); + return -EOPNOTSUPP; + } + server->sign = true; + } + + if (cifs_rdma_enabled(server) && server->sign) + cifs_dbg(VFS, "Signing is enabled, and RDMA read/write will be disabled\n"); + + return 0; +} + + static void clean_demultiplex_info(struct TCP_Server_Info *server) { int length; /* take it off the list, if it's not already */ - spin_lock(&cifs_tcp_ses_lock); + spin_lock(&server->srv_lock); list_del_init(&server->tcp_ses_list); - spin_unlock(&cifs_tcp_ses_lock); + spin_unlock(&server->srv_lock); cancel_delayed_work_sync(&server->echo); - cancel_delayed_work_sync(&server->resolve); - spin_lock(&GlobalMid_Lock); + spin_lock(&server->srv_lock); server->tcpStatus = CifsExiting; - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->srv_lock); wake_up_all(&server->response_q); /* check if we have blocked requests that need to free */ @@ -799,7 +955,7 @@ static void clean_demultiplex_info(struct TCP_Server_Info *server) struct list_head *tmp, *tmp2; INIT_LIST_HEAD(&dispose_list); - spin_lock(&GlobalMid_Lock); + spin_lock(&server->mid_lock); list_for_each_safe(tmp, tmp2, &server->pending_mid_q) { mid_entry = list_entry(tmp, struct mid_q_entry, qhead); cifs_dbg(FYI, "Clearing mid %llu\n", mid_entry->mid); @@ -808,7 +964,7 @@ static void clean_demultiplex_info(struct TCP_Server_Info *server) list_move(&mid_entry->qhead, &dispose_list); mid_entry->mid_flags |= MID_DELETED; } - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->mid_lock); /* now walk dispose list and issue callbacks */ list_for_each_safe(tmp, tmp2, &dispose_list) { @@ -816,7 +972,7 @@ static void clean_demultiplex_info(struct TCP_Server_Info *server) cifs_dbg(FYI, "Callback mid %llu\n", mid_entry->mid); list_del_init(&mid_entry->qhead); mid_entry->callback(mid_entry); - cifs_mid_q_entry_release(mid_entry); + release_mid(mid_entry); } /* 1/8th of sec is more than enough time for them to exit */ msleep(125); @@ -839,10 +995,7 @@ static void clean_demultiplex_info(struct TCP_Server_Info *server) */ } -#ifdef CONFIG_CIFS_DFS_UPCALL - kfree(server->origin_fullpath); kfree(server->leaf_fullpath); -#endif kfree(server); length = atomic_dec_return(&tcpSesAllocCount); @@ -859,9 +1012,9 @@ standard_receive3(struct TCP_Server_Info *server, struct mid_q_entry *mid) /* make sure this will fit in a large buffer */ if (pdu_length > CIFSMaxBufSize + MAX_HEADER_SIZE(server) - - server->vals->header_preamble_size) { + HEADER_PREAMBLE_SIZE(server)) { cifs_server_dbg(VFS, "SMB response too long (%u bytes)\n", pdu_length); - cifs_reconnect(server); + cifs_reconnect(server, true); return -ECONNABORTED; } @@ -874,8 +1027,7 @@ standard_receive3(struct TCP_Server_Info *server, struct mid_q_entry *mid) /* now read the rest */ length = cifs_read_from_socket(server, buf + HEADER_SIZE(server) - 1, - pdu_length - HEADER_SIZE(server) + 1 - + server->vals->header_preamble_size); + pdu_length - MID_HEADER_SIZE(server)); if (length < 0) return length; @@ -890,25 +1042,24 @@ int cifs_handle_standard(struct TCP_Server_Info *server, struct mid_q_entry *mid) { char *buf = server->large_buf ? server->bigbuf : server->smallbuf; - int length; + int rc; /* * We know that we received enough to get to the MID as we * checked the pdu_length earlier. Now check to see - * if the rest of the header is OK. We borrow the length - * var for the rest of the loop to avoid a new stack var. + * if the rest of the header is OK. * * 48 bytes is enough to display the header and a little bit * into the payload for debugging purposes. */ - length = server->ops->check_message(buf, server->total_read, server); - if (length != 0) + rc = server->ops->check_message(buf, server->total_read, server); + if (rc) cifs_dump_mem("Bad SMB: ", buf, min_t(unsigned int, server->total_read, 48)); if (server->ops->is_session_expired && server->ops->is_session_expired(buf)) { - cifs_reconnect(server); + cifs_reconnect(server, true); return -1; } @@ -917,22 +1068,22 @@ cifs_handle_standard(struct TCP_Server_Info *server, struct mid_q_entry *mid) return -1; if (!mid) - return length; + return rc; - handle_mid(mid, server, buf, length); + handle_mid(mid, server, buf, rc); return 0; } static void smb2_add_credits_from_hdr(char *buffer, struct TCP_Server_Info *server) { - struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buffer; + struct smb2_hdr *shdr = (struct smb2_hdr *)buffer; int scredits, in_flight; /* * SMB1 does not use credits. */ - if (server->vals->header_preamble_size) + if (is_smb1(server)) return; if (shdr->CreditRequest) { @@ -943,7 +1094,7 @@ smb2_add_credits_from_hdr(char *buffer, struct TCP_Server_Info *server) spin_unlock(&server->req_lock); wake_up(&server->request_q); - trace_smb3_add_credits(server->CurrentMid, + trace_smb3_hdr_credits(server->CurrentMid, server->conn_id, server->hostname, scredits, le16_to_cpu(shdr->CreditRequest), in_flight); cifs_server_dbg(FYI, "%s: added %u credits total=%d\n", @@ -991,10 +1142,10 @@ cifs_demultiplex_thread(void *p) if (length < 0) continue; - if (server->vals->header_preamble_size == 0) - server->total_read = 0; - else + if (is_smb1(server)) server->total_read = length; + else + server->total_read = 0; /* * The right amount was read from socket - 4 bytes, @@ -1011,19 +1162,17 @@ cifs_demultiplex_thread(void *p) server->pdu_size = pdu_length; /* make sure we have enough to get to the MID */ - if (server->pdu_size < HEADER_SIZE(server) - 1 - - server->vals->header_preamble_size) { + if (server->pdu_size < MID_HEADER_SIZE(server)) { cifs_server_dbg(VFS, "SMB response too short (%u bytes)\n", server->pdu_size); - cifs_reconnect(server); + cifs_reconnect(server, true); continue; } /* read down to the MID */ length = cifs_read_from_socket(server, - buf + server->vals->header_preamble_size, - HEADER_SIZE(server) - 1 - - server->vals->header_preamble_size); + buf + HEADER_PREAMBLE_SIZE(server), + MID_HEADER_SIZE(server)); if (length < 0) continue; server->total_read += length; @@ -1059,7 +1208,7 @@ cifs_demultiplex_thread(void *p) if (length < 0) { for (i = 0; i < num_mids; i++) if (mids[i]) - cifs_mid_q_entry_release(mids[i]); + release_mid(mids[i]); continue; } @@ -1089,7 +1238,7 @@ cifs_demultiplex_thread(void *p) if (!mids[i]->multiRsp || mids[i]->multiEnd) mids[i]->callback(mids[i]); - cifs_mid_q_entry_release(mids[i]); + release_mid(mids[i]); } else if (server->ops->is_oplock_break && server->ops->is_oplock_break(bufs[i], server)) { @@ -1097,7 +1246,7 @@ cifs_demultiplex_thread(void *p) cifs_dbg(FYI, "Received oplock break\n"); } else { cifs_server_dbg(VFS, "No task to wake, unknown frame received! NumMids %d\n", - atomic_read(&midCount)); + atomic_read(&mid_count)); cifs_dump_mem("Received Data is: ", bufs[i], HEADER_SIZE(server)); smb2_add_credits_from_hdr(bufs[i], server); @@ -1122,7 +1271,7 @@ cifs_demultiplex_thread(void *p) /* do this reconnect at the very end after processing all MIDs */ if (pending_reconnect) - cifs_reconnect(server); + cifs_reconnect(server, true); } /* end while !EXITING */ @@ -1148,6 +1297,56 @@ cifs_demultiplex_thread(void *p) module_put_and_exit(0); } +int +cifs_ipaddr_cmp(struct sockaddr *srcaddr, struct sockaddr *rhs) +{ + struct sockaddr_in *saddr4 = (struct sockaddr_in *)srcaddr; + struct sockaddr_in *vaddr4 = (struct sockaddr_in *)rhs; + struct sockaddr_in6 *saddr6 = (struct sockaddr_in6 *)srcaddr; + struct sockaddr_in6 *vaddr6 = (struct sockaddr_in6 *)rhs; + + switch (srcaddr->sa_family) { + case AF_UNSPEC: + switch (rhs->sa_family) { + case AF_UNSPEC: + return 0; + case AF_INET: + case AF_INET6: + return 1; + default: + return -1; + } + case AF_INET: { + switch (rhs->sa_family) { + case AF_UNSPEC: + return -1; + case AF_INET: + return memcmp(saddr4, vaddr4, + sizeof(struct sockaddr_in)); + case AF_INET6: + return 1; + default: + return -1; + } + } + case AF_INET6: { + switch (rhs->sa_family) { + case AF_UNSPEC: + case AF_INET: + return -1; + case AF_INET6: + return memcmp(saddr6, + vaddr6, + sizeof(struct sockaddr_in6)); + default: + return -1; + } + } + default: + return -1; /* don't expect to be here */ + } +} + /* * Returns true if srcaddr isn't specified and rhs isn't specified, or * if srcaddr is specified and matches the IP address of the rhs argument @@ -1166,7 +1365,8 @@ cifs_match_ipaddr(struct sockaddr *srcaddr, struct sockaddr *rhs) case AF_INET6: { struct sockaddr_in6 *saddr6 = (struct sockaddr_in6 *)srcaddr; struct sockaddr_in6 *vaddr6 = (struct sockaddr_in6 *)rhs; - return ipv6_addr_equal(&saddr6->sin6_addr, &vaddr6->sin6_addr); + return (ipv6_addr_equal(&saddr6->sin6_addr, &vaddr6->sin6_addr) + && saddr6->sin6_scope_id == vaddr6->sin6_scope_id); } default: WARN_ON(1); @@ -1213,38 +1413,9 @@ match_port(struct TCP_Server_Info *server, struct sockaddr *addr) return port == *sport; } -static bool -match_address(struct TCP_Server_Info *server, struct sockaddr *addr, - struct sockaddr *srcaddr) +static bool match_server_address(struct TCP_Server_Info *server, struct sockaddr *addr) { - switch (addr->sa_family) { - case AF_INET: { - struct sockaddr_in *addr4 = (struct sockaddr_in *)addr; - struct sockaddr_in *srv_addr4 = - (struct sockaddr_in *)&server->dstaddr; - - if (addr4->sin_addr.s_addr != srv_addr4->sin_addr.s_addr) - return false; - break; - } - case AF_INET6: { - struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)addr; - struct sockaddr_in6 *srv_addr6 = - (struct sockaddr_in6 *)&server->dstaddr; - - if (!ipv6_addr_equal(&addr6->sin6_addr, - &srv_addr6->sin6_addr)) - return false; - if (addr6->sin6_scope_id != srv_addr6->sin6_scope_id) - return false; - break; - } - default: - WARN_ON(1); - return false; /* don't expect to be here */ - } - - if (!cifs_match_ipaddr(srcaddr, (struct sockaddr *)&server->srcaddr)) + if (!cifs_match_ipaddr(addr, (struct sockaddr *)&server->dstaddr)) return false; return true; @@ -1273,10 +1444,15 @@ match_security(struct TCP_Server_Info *server, struct smb3_fs_context *ctx) return true; } -static int match_server(struct TCP_Server_Info *server, struct smb3_fs_context *ctx) +/* this function must be called with srv_lock held */ +static int match_server(struct TCP_Server_Info *server, + struct smb3_fs_context *ctx, + bool match_super) { struct sockaddr *addr = (struct sockaddr *)&ctx->dstaddr; + lockdep_assert_held(&server->srv_lock); + if (ctx->nosharesock) return 0; @@ -1298,14 +1474,45 @@ static int match_server(struct TCP_Server_Info *server, struct smb3_fs_context * if (!net_eq(cifs_net_ns(server), current->nsproxy->net_ns)) return 0; - if (strcasecmp(server->hostname, ctx->server_hostname)) - return 0; - - if (!match_address(server, addr, - (struct sockaddr *)&ctx->srcaddr)) + if (!cifs_match_ipaddr((struct sockaddr *)&ctx->srcaddr, + (struct sockaddr *)&server->srcaddr)) return 0; + /* + * When matching cifs.ko superblocks (@match_super == true), we can't + * really match either @server->leaf_fullpath or @server->dstaddr + * directly since this @server might belong to a completely different + * server -- in case of domain-based DFS referrals or DFS links -- as + * provided earlier by mount(2) through 'source' and 'ip' options. + * + * Otherwise, match the DFS referral in @server->leaf_fullpath or the + * destination address in @server->dstaddr. + * + * When using 'nodfs' mount option, we avoid sharing it with DFS + * connections as they might failover. + */ + if (!match_super) { + if (!ctx->nodfs) { + if (server->leaf_fullpath) { + if (!ctx->leaf_fullpath || + strcasecmp(server->leaf_fullpath, + ctx->leaf_fullpath)) + return 0; + } else if (ctx->leaf_fullpath) { + return 0; + } + } else if (server->leaf_fullpath) { + return 0; + } + } - if (!match_port(server, addr)) + /* + * Match for a regular connection (address/hostname/port) which has no + * DFS referrals set. + */ + if (!server->leaf_fullpath && + (strcasecmp(server->hostname, ctx->server_hostname) || + !match_server_address(server, addr) || + !match_port(server, addr))) return 0; if (!match_security(server, ctx)) @@ -1333,22 +1540,17 @@ cifs_find_tcp_session(struct smb3_fs_context *ctx) spin_lock(&cifs_tcp_ses_lock); list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) { -#ifdef CONFIG_CIFS_DFS_UPCALL - /* - * DFS failover implementation in cifs_reconnect() requires unique tcp sessions for - * DFS connections to do failover properly, so avoid sharing them with regular - * shares or even links that may connect to same server but having completely - * different failover targets. - */ - if (server->is_dfs_conn) - continue; -#endif + spin_lock(&server->srv_lock); /* * Skip ses channels since they're only handled in lower layers * (e.g. cifs_send_recv). */ - if (server->is_channel || !match_server(server, ctx)) + if (CIFS_SERVER_IS_CHAN(server) || + !match_server(server, ctx, false)) { + spin_unlock(&server->srv_lock); continue; + } + spin_unlock(&server->srv_lock); ++server->srv_count; spin_unlock(&cifs_tcp_ses_lock); @@ -1378,8 +1580,11 @@ cifs_put_tcp_session(struct TCP_Server_Info *server, int from_reconnect) list_del_init(&server->tcp_ses_list); spin_unlock(&cifs_tcp_ses_lock); + /* For secondary channels, we pick up ref-count on the primary server */ + if (CIFS_SERVER_IS_CHAN(server)) + cifs_put_tcp_session(server->primary_server, from_reconnect); + cancel_delayed_work_sync(&server->echo); - cancel_delayed_work_sync(&server->resolve); if (from_reconnect) /* @@ -1392,14 +1597,17 @@ cifs_put_tcp_session(struct TCP_Server_Info *server, int from_reconnect) else cancel_delayed_work_sync(&server->reconnect); - spin_lock(&GlobalMid_Lock); + spin_lock(&server->srv_lock); server->tcpStatus = CifsExiting; - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->srv_lock); cifs_crypto_secmech_release(server); - cifs_fscache_release_client_cookie(server); - kfree(server->session_key.response); + /* fscache server cookies are based on primary channel only */ + if (!CIFS_SERVER_IS_CHAN(server)) + cifs_fscache_release_client_cookie(server); + + kfree_sensitive(server->session_key.response); server->session_key.response = NULL; server->session_key.len = 0; kfree(server->hostname); @@ -1411,7 +1619,8 @@ cifs_put_tcp_session(struct TCP_Server_Info *server, int from_reconnect) } struct TCP_Server_Info * -cifs_get_tcp_session(struct smb3_fs_context *ctx) +cifs_get_tcp_session(struct smb3_fs_context *ctx, + struct TCP_Server_Info *primary_server) { struct TCP_Server_Info *tcp_ses = NULL; int rc; @@ -1435,6 +1644,14 @@ cifs_get_tcp_session(struct smb3_fs_context *ctx) goto out_err; } + if (ctx->leaf_fullpath) { + tcp_ses->leaf_fullpath = kstrdup(ctx->leaf_fullpath, GFP_KERNEL); + if (!tcp_ses->leaf_fullpath) { + rc = -ENOMEM; + goto out_err; + } + } + if (ctx->nosharesock) tcp_ses->nosharesock = true; @@ -1451,10 +1668,16 @@ cifs_get_tcp_session(struct smb3_fs_context *ctx) tcp_ses->in_flight = 0; tcp_ses->max_in_flight = 0; tcp_ses->credits = 1; + if (primary_server) { + spin_lock(&cifs_tcp_ses_lock); + ++primary_server->srv_count; + spin_unlock(&cifs_tcp_ses_lock); + tcp_ses->primary_server = primary_server; + } init_waitqueue_head(&tcp_ses->response_q); init_waitqueue_head(&tcp_ses->request_q); INIT_LIST_HEAD(&tcp_ses->pending_mid_q); - mutex_init(&tcp_ses->srv_mutex); + mutex_init(&tcp_ses->_srv_mutex); memcpy(tcp_ses->workstation_RFC1001_name, ctx->source_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL); memcpy(tcp_ses->server_RFC1001_name, @@ -1465,10 +1688,11 @@ cifs_get_tcp_session(struct smb3_fs_context *ctx) tcp_ses->lstrp = jiffies; tcp_ses->compress_algorithm = cpu_to_le16(ctx->compression); spin_lock_init(&tcp_ses->req_lock); + spin_lock_init(&tcp_ses->srv_lock); + spin_lock_init(&tcp_ses->mid_lock); INIT_LIST_HEAD(&tcp_ses->tcp_ses_list); INIT_LIST_HEAD(&tcp_ses->smb_ses_list); INIT_DELAYED_WORK(&tcp_ses->echo, cifs_echo_request); - INIT_DELAYED_WORK(&tcp_ses->resolve, cifs_resolve_server); INIT_DELAYED_WORK(&tcp_ses->reconnect, smb2_reconnect_server); mutex_init(&tcp_ses->reconnect_mutex); #ifdef CONFIG_CIFS_DFS_UPCALL @@ -1538,7 +1762,9 @@ cifs_get_tcp_session(struct smb3_fs_context *ctx) * to the struct since the kernel thread not created yet * no need to spinlock this update of tcpStatus */ + spin_lock(&tcp_ses->srv_lock); tcp_ses->tcpStatus = CifsNeedNegotiate; + spin_unlock(&tcp_ses->srv_lock); if ((ctx->max_credits < 20) || (ctx->max_credits > 60000)) tcp_ses->max_credits = SMB2_MAX_CREDITS_AVAILABLE; @@ -1552,17 +1778,17 @@ cifs_get_tcp_session(struct smb3_fs_context *ctx) list_add(&tcp_ses->tcp_ses_list, &cifs_tcp_ses_list); spin_unlock(&cifs_tcp_ses_lock); - cifs_fscache_get_client_cookie(tcp_ses); + /* fscache server cookies are based on primary channel only */ + if (!CIFS_SERVER_IS_CHAN(tcp_ses)) + cifs_fscache_get_client_cookie(tcp_ses); +#ifdef CONFIG_CIFS_FSCACHE + else + tcp_ses->fscache = tcp_ses->primary_server->fscache; +#endif /* CONFIG_CIFS_FSCACHE */ /* queue echo request delayed work */ queue_delayed_work(cifsiod_wq, &tcp_ses->echo, tcp_ses->echo_interval); - /* queue dns resolution delayed work */ - cifs_dbg(FYI, "%s: next dns resolution scheduled for %d seconds in the future\n", - __func__, SMB_DNS_RESOLVE_INTERVAL_DEFAULT); - - queue_delayed_work(cifsiod_wq, &tcp_ses->resolve, (SMB_DNS_RESOLVE_INTERVAL_DEFAULT * HZ)); - return tcp_ses; out_err_crypto_release: @@ -1572,7 +1798,10 @@ cifs_get_tcp_session(struct smb3_fs_context *ctx) out_err: if (tcp_ses) { + if (CIFS_SERVER_IS_CHAN(tcp_ses)) + cifs_put_tcp_session(tcp_ses->primary_server, false); kfree(tcp_ses->hostname); + kfree(tcp_ses->leaf_fullpath); if (tcp_ses->ssocket) sock_release(tcp_ses->ssocket); kfree(tcp_ses); @@ -1580,6 +1809,7 @@ cifs_get_tcp_session(struct smb3_fs_context *ctx) return ERR_PTR(rc); } +/* this function must be called with ses_lock and chan_lock held */ static int match_session(struct cifs_ses *ses, struct smb3_fs_context *ctx) { if (ctx->sectype != Unspecified && @@ -1590,12 +1820,8 @@ static int match_session(struct cifs_ses *ses, struct smb3_fs_context *ctx) * If an existing session is limited to less channels than * requested, it should not be reused */ - spin_lock(&ses->chan_lock); - if (ses->chan_max < ctx->max_channels) { - spin_unlock(&ses->chan_lock); + if (ses->chan_max < ctx->max_channels) return 0; - } - spin_unlock(&ses->chan_lock); switch (ses->sectype) { case Kerberos: @@ -1661,7 +1887,9 @@ cifs_setup_ipc(struct cifs_ses *ses, struct smb3_fs_context *ctx) if (tcon == NULL) return -ENOMEM; + spin_lock(&server->srv_lock); scnprintf(unc, sizeof(unc), "\\\\%s\\IPC$", server->hostname); + spin_unlock(&server->srv_lock); xid = get_xid(); tcon->ses = ses; @@ -1676,8 +1904,11 @@ cifs_setup_ipc(struct cifs_ses *ses, struct smb3_fs_context *ctx) goto out; } - cifs_dbg(FYI, "IPC tcon rc = %d ipc tid = %d\n", rc, tcon->tid); + cifs_dbg(FYI, "IPC tcon rc=%d ipc tid=0x%x\n", rc, tcon->tid); + spin_lock(&tcon->tc_lock); + tcon->status = TID_GOOD; + spin_unlock(&tcon->tc_lock); ses->tcon_ipc = tcon; out: return rc; @@ -1711,82 +1942,92 @@ cifs_free_ipc(struct cifs_ses *ses) static struct cifs_ses * cifs_find_smb_ses(struct TCP_Server_Info *server, struct smb3_fs_context *ctx) { - struct cifs_ses *ses; + struct cifs_ses *ses, *ret = NULL; spin_lock(&cifs_tcp_ses_lock); list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { - if (ses->status == CifsExiting) + spin_lock(&ses->ses_lock); + if (ses->ses_status == SES_EXITING) { + spin_unlock(&ses->ses_lock); continue; - if (!match_session(ses, ctx)) - continue; - ++ses->ses_count; - spin_unlock(&cifs_tcp_ses_lock); - return ses; + } + spin_lock(&ses->chan_lock); + if (match_session(ses, ctx)) { + spin_unlock(&ses->chan_lock); + spin_unlock(&ses->ses_lock); + ret = ses; + break; + } + spin_unlock(&ses->chan_lock); + spin_unlock(&ses->ses_lock); } + if (ret) + cifs_smb_ses_inc_refcount(ret); spin_unlock(&cifs_tcp_ses_lock); - return NULL; + return ret; } -void cifs_put_smb_ses(struct cifs_ses *ses) +void __cifs_put_smb_ses(struct cifs_ses *ses) { unsigned int rc, xid; unsigned int chan_count; struct TCP_Server_Info *server = ses->server; - cifs_dbg(FYI, "%s: ses_count=%d\n", __func__, ses->ses_count); - spin_lock(&cifs_tcp_ses_lock); - if (ses->status == CifsExiting) { - spin_unlock(&cifs_tcp_ses_lock); + spin_lock(&ses->ses_lock); + if (ses->ses_status == SES_EXITING) { + spin_unlock(&ses->ses_lock); return; } + spin_unlock(&ses->ses_lock); cifs_dbg(FYI, "%s: ses_count=%d\n", __func__, ses->ses_count); - cifs_dbg(FYI, "%s: ses ipc: %s\n", __func__, ses->tcon_ipc ? ses->tcon_ipc->treeName : "NONE"); + cifs_dbg(FYI, + "%s: ses ipc: %s\n", __func__, ses->tcon_ipc ? ses->tcon_ipc->tree_name : "NONE"); + spin_lock(&cifs_tcp_ses_lock); if (--ses->ses_count > 0) { spin_unlock(&cifs_tcp_ses_lock); return; } + spin_lock(&ses->ses_lock); + if (ses->ses_status == SES_GOOD) + ses->ses_status = SES_EXITING; + spin_unlock(&ses->ses_lock); spin_unlock(&cifs_tcp_ses_lock); /* ses_count can never go negative */ WARN_ON(ses->ses_count < 0); - spin_lock(&GlobalMid_Lock); - if (ses->status == CifsGood) - ses->status = CifsExiting; - spin_unlock(&GlobalMid_Lock); - - cifs_free_ipc(ses); - - if (ses->status == CifsExiting && server->ops->logoff) { + spin_lock(&ses->ses_lock); + if (ses->ses_status == SES_EXITING && server->ops->logoff) { + spin_unlock(&ses->ses_lock); + cifs_free_ipc(ses); xid = get_xid(); rc = server->ops->logoff(xid, ses); if (rc) cifs_server_dbg(VFS, "%s: Session Logoff failure rc=%d\n", __func__, rc); _free_xid(xid); + } else { + spin_unlock(&ses->ses_lock); + cifs_free_ipc(ses); } spin_lock(&cifs_tcp_ses_lock); list_del_init(&ses->smb_ses_list); spin_unlock(&cifs_tcp_ses_lock); - spin_lock(&ses->chan_lock); chan_count = ses->chan_count; - spin_unlock(&ses->chan_lock); /* close any extra channels */ if (chan_count > 1) { int i; for (i = 1; i < chan_count; i++) { - /* - * note: for now, we're okay accessing ses->chans - * without chan_lock. But when chans can go away, we'll - * need to introduce ref counting to make sure that chan - * is not freed from under us. - */ + if (ses->chans[i].iface) { + kref_put(&ses->chans[i].iface->refcount, release_iface); + ses->chans[i].iface = NULL; + } cifs_put_tcp_session(ses->chans[i].server, 0); ses->chans[i].server = NULL; } @@ -1930,6 +2171,8 @@ cifs_set_cifscreds(struct smb3_fs_context *ctx, struct cifs_ses *ses) } } + strscpy(ctx->workstation_name, ses->workstation_name, sizeof(ctx->workstation_name)); + out_key_put: up_read(&key->sem); key_put(key); @@ -1970,20 +2213,24 @@ cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb3_fs_context *ctx) ses = cifs_find_smb_ses(server, ctx); if (ses) { cifs_dbg(FYI, "Existing smb sess found (status=%d)\n", - ses->status); + ses->ses_status); - mutex_lock(&ses->session_mutex); - rc = cifs_negotiate_protocol(xid, ses); - if (rc) { - mutex_unlock(&ses->session_mutex); - /* problem -- put our ses reference */ - cifs_put_smb_ses(ses); - free_xid(xid); - return ERR_PTR(rc); - } - if (ses->need_reconnect) { + spin_lock(&ses->chan_lock); + if (cifs_chan_needs_reconnect(ses, server)) { + spin_unlock(&ses->chan_lock); cifs_dbg(FYI, "Session needs reconnect\n"); - rc = cifs_setup_session(xid, ses, + + mutex_lock(&ses->session_mutex); + rc = cifs_negotiate_protocol(xid, ses, server); + if (rc) { + mutex_unlock(&ses->session_mutex); + /* problem -- put our ses reference */ + cifs_put_smb_ses(ses); + free_xid(xid); + return ERR_PTR(rc); + } + + rc = cifs_setup_session(xid, ses, server, ctx->local_nls); if (rc) { mutex_unlock(&ses->session_mutex); @@ -1992,8 +2239,11 @@ cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb3_fs_context *ctx) free_xid(xid); return ERR_PTR(rc); } + mutex_unlock(&ses->session_mutex); + + spin_lock(&ses->chan_lock); } - mutex_unlock(&ses->session_mutex); + spin_unlock(&ses->chan_lock); /* existing SMB ses has a server reference already */ cifs_put_tcp_session(server, 0); @@ -2032,6 +2282,9 @@ cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb3_fs_context *ctx) if (!ses->domainName) goto get_ses_fail; } + + strscpy(ses->workstation_name, ctx->workstation_name, sizeof(ses->workstation_name)); + if (ctx->domainauto) ses->domainAuto = ctx->domainauto; ses->cred_uid = ctx->cred_uid; @@ -2039,36 +2292,46 @@ cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb3_fs_context *ctx) ses->sectype = ctx->sectype; ses->sign = ctx->sign; - mutex_lock(&ses->session_mutex); /* add server as first channel */ spin_lock(&ses->chan_lock); ses->chans[0].server = server; ses->chan_count = 1; ses->chan_max = ctx->multichannel ? ctx->max_channels:1; + ses->chans_need_reconnect = 1; spin_unlock(&ses->chan_lock); - rc = cifs_negotiate_protocol(xid, ses); + mutex_lock(&ses->session_mutex); + rc = cifs_negotiate_protocol(xid, ses, server); if (!rc) - rc = cifs_setup_session(xid, ses, ctx->local_nls); + rc = cifs_setup_session(xid, ses, server, ctx->local_nls); + mutex_unlock(&ses->session_mutex); /* each channel uses a different signing key */ + spin_lock(&ses->chan_lock); memcpy(ses->chans[0].signkey, ses->smb3signingkey, sizeof(ses->smb3signingkey)); + spin_unlock(&ses->chan_lock); - mutex_unlock(&ses->session_mutex); if (rc) goto get_ses_fail; - /* success, put it on the list and add it as first channel */ + /* + * success, put it on the list and add it as first channel + * note: the session becomes active soon after this. So you'll + * need to lock before changing something in the session. + */ spin_lock(&cifs_tcp_ses_lock); + ses->dfs_root_ses = ctx->dfs_root_ses; + if (ses->dfs_root_ses) + ses->dfs_root_ses->ses_count++; list_add(&ses->smb_ses_list, &server->smb_ses_list); spin_unlock(&cifs_tcp_ses_lock); - free_xid(xid); - cifs_setup_ipc(ses, ctx); + free_xid(xid); + return ses; get_ses_fail: @@ -2077,12 +2340,23 @@ cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb3_fs_context *ctx) return ERR_PTR(rc); } +/* this function must be called with tc_lock held */ static int match_tcon(struct cifs_tcon *tcon, struct smb3_fs_context *ctx) { - if (tcon->tidStatus == CifsExiting) + struct TCP_Server_Info *server = tcon->ses->server; + + if (tcon->status == TID_EXITING) return 0; - if (strncmp(tcon->treeName, ctx->UNC, MAX_TREE_SIZE)) + + if (tcon->origin_fullpath) { + if (!ctx->source || + !dfs_src_pathname_equal(ctx->source, + tcon->origin_fullpath)) + return 0; + } else if (!server->leaf_fullpath && + strncmp(tcon->tree_name, ctx->UNC, MAX_TREE_SIZE)) { return 0; + } if (tcon->seal != ctx->seal) return 0; if (tcon->snapshot_time != ctx->snapshot_time) @@ -2099,16 +2373,17 @@ static int match_tcon(struct cifs_tcon *tcon, struct smb3_fs_context *ctx) static struct cifs_tcon * cifs_find_tcon(struct cifs_ses *ses, struct smb3_fs_context *ctx) { - struct list_head *tmp; struct cifs_tcon *tcon; spin_lock(&cifs_tcp_ses_lock); - list_for_each(tmp, &ses->tcon_list) { - tcon = list_entry(tmp, struct cifs_tcon, tcon_list); - - if (!match_tcon(tcon, ctx)) + list_for_each_entry(tcon, &ses->tcon_list, tcon_list) { + spin_lock(&tcon->tc_lock); + if (!match_tcon(tcon, ctx)) { + spin_unlock(&tcon->tc_lock); continue; + } ++tcon->tc_count; + spin_unlock(&tcon->tc_lock); spin_unlock(&cifs_tcp_ses_lock); return tcon; } @@ -2132,7 +2407,9 @@ cifs_put_tcon(struct cifs_tcon *tcon) ses = tcon->ses; cifs_dbg(FYI, "%s: tc_count=%d\n", __func__, tcon->tc_count); spin_lock(&cifs_tcp_ses_lock); + spin_lock(&tcon->tc_lock); if (--tcon->tc_count > 0) { + spin_unlock(&tcon->tc_lock); spin_unlock(&cifs_tcp_ses_lock); return; } @@ -2140,6 +2417,17 @@ cifs_put_tcon(struct cifs_tcon *tcon) /* tc_count can never go negative */ WARN_ON(tcon->tc_count < 0); + list_del_init(&tcon->tcon_list); + tcon->status = TID_EXITING; + spin_unlock(&tcon->tc_lock); + spin_unlock(&cifs_tcp_ses_lock); + + /* cancel polling of interfaces */ + cancel_delayed_work_sync(&tcon->query_interfaces); +#ifdef CONFIG_CIFS_DFS_UPCALL + cancel_delayed_work_sync(&tcon->dfs_cache_work); +#endif + if (tcon->use_witness) { int rc; @@ -2150,9 +2438,6 @@ cifs_put_tcon(struct cifs_tcon *tcon) } } - list_del_init(&tcon->tcon_list); - spin_unlock(&cifs_tcp_ses_lock); - xid = get_xid(); if (ses->server->ops->tree_disconnect) ses->server->ops->tree_disconnect(xid, tcon); @@ -2262,17 +2547,22 @@ cifs_get_tcon(struct cifs_ses *ses, struct smb3_fs_context *ctx) if (ses->server->posix_ext_supported) { tcon->posix_extensions = true; pr_warn_once("SMB3.11 POSIX Extensions are experimental\n"); - } else { + } else if ((ses->server->vals->protocol_id == SMB311_PROT_ID) || + (strcmp(ses->server->vals->version_string, + SMB3ANY_VERSION_STRING) == 0) || + (strcmp(ses->server->vals->version_string, + SMBDEFAULT_VERSION_STRING) == 0)) { cifs_dbg(VFS, "Server does not support mounting with posix SMB3.11 extensions\n"); rc = -EOPNOTSUPP; goto out_fail; + } else { + cifs_dbg(VFS, "Check vers= mount option. SMB3.11 " + "disabled but required for POSIX extensions\n"); + rc = -EOPNOTSUPP; + goto out_fail; } } - /* - * BB Do we need to wrap session_mutex around this TCon call and Unix - * SetFS as we do on SessSetup and reconnect? - */ xid = get_xid(); rc = ses->server->ops->tree_connect(xid, ses, ctx->UNC, tcon, ctx->local_nls); @@ -2366,6 +2656,7 @@ cifs_get_tcon(struct cifs_ses *ses, struct smb3_fs_context *ctx) */ tcon->retry = ctx->retry; tcon->nocase = ctx->nocase; + tcon->broken_sparse_sup = ctx->no_sparse; if (ses->server->capabilities & SMB2_GLOBAL_CAP_DIRECTORY_LEASING) tcon->nohandlecache = ctx->nohandlecache; else @@ -2373,13 +2664,23 @@ cifs_get_tcon(struct cifs_ses *ses, struct smb3_fs_context *ctx) tcon->nodelete = ctx->nodelete; tcon->local_lease = ctx->local_lease; INIT_LIST_HEAD(&tcon->pending_opens); + tcon->status = TID_GOOD; + INIT_DELAYED_WORK(&tcon->query_interfaces, + smb2_query_server_interfaces); + if (ses->server->dialect >= SMB30_PROT_ID && + (ses->server->capabilities & SMB2_GLOBAL_CAP_MULTI_CHANNEL)) { + /* schedule query interfaces poll */ + queue_delayed_work(cifsiod_wq, &tcon->query_interfaces, + (SMB_INTERFACE_POLL_INTERVAL * HZ)); + } +#ifdef CONFIG_CIFS_DFS_UPCALL + INIT_DELAYED_WORK(&tcon->dfs_cache_work, dfs_cache_refresh); +#endif spin_lock(&cifs_tcp_ses_lock); list_add(&tcon->tcon_list, &ses->tcon_list); spin_unlock(&cifs_tcp_ses_lock); - cifs_fscache_get_super_cookie(tcon); - return tcon; out_fail: @@ -2453,9 +2754,11 @@ compare_mount_options(struct super_block *sb, struct cifs_mnt_data *mnt_data) return 1; } -static int -match_prepath(struct super_block *sb, struct cifs_mnt_data *mnt_data) +static int match_prepath(struct super_block *sb, + struct cifs_tcon *tcon, + struct cifs_mnt_data *mnt_data) { + struct smb3_fs_context *ctx = mnt_data->ctx; struct cifs_sb_info *old = CIFS_SB(sb); struct cifs_sb_info *new = mnt_data->cifs_sb; bool old_set = (old->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH) && @@ -2463,6 +2766,10 @@ match_prepath(struct super_block *sb, struct cifs_mnt_data *mnt_data) bool new_set = (new->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH) && new->prepath; + if (tcon->origin_fullpath && + dfs_src_pathname_equal(tcon->origin_fullpath, ctx->source)) + return 1; + if (old_set && new_set && !strcmp(new->prepath, old->prepath)) return 1; else if (!old_set && !new_set) @@ -2474,7 +2781,7 @@ match_prepath(struct super_block *sb, struct cifs_mnt_data *mnt_data) int cifs_match_super(struct super_block *sb, void *data) { - struct cifs_mnt_data *mnt_data = (struct cifs_mnt_data *)data; + struct cifs_mnt_data *mnt_data = data; struct smb3_fs_context *ctx; struct cifs_sb_info *cifs_sb; struct TCP_Server_Info *tcp_srv; @@ -2493,8 +2800,9 @@ cifs_match_super(struct super_block *sb, void *data) } tlink = cifs_get_tlink(cifs_sb_master_tlink(cifs_sb)); - if (tlink == NULL) { - /* can not match superblock if tlink were ever null */ + if (IS_ERR_OR_NULL(tlink)) { + pr_warn_once("%s: skip super matching due to bad tlink(%p)\n", + __func__, tlink); spin_unlock(&cifs_tcp_ses_lock); return 0; } @@ -2504,16 +2812,25 @@ cifs_match_super(struct super_block *sb, void *data) ctx = mnt_data->ctx; - if (!match_server(tcp_srv, ctx) || + spin_lock(&tcp_srv->srv_lock); + spin_lock(&ses->ses_lock); + spin_lock(&ses->chan_lock); + spin_lock(&tcon->tc_lock); + if (!match_server(tcp_srv, ctx, true) || !match_session(ses, ctx) || !match_tcon(tcon, ctx) || - !match_prepath(sb, mnt_data)) { + !match_prepath(sb, tcon, mnt_data)) { rc = 0; goto out; } rc = compare_mount_options(sb, mnt_data); out: + spin_unlock(&tcon->tc_lock); + spin_unlock(&ses->chan_lock); + spin_unlock(&ses->ses_lock); + spin_unlock(&tcp_srv->srv_lock); + spin_unlock(&cifs_tcp_ses_lock); cifs_put_tlink(tlink); return rc; @@ -2601,65 +2918,48 @@ ip_rfc1001_connect(struct TCP_Server_Info *server) * negprot - BB check reconnection in case where second * sessinit is sent but no second negprot */ - struct rfc1002_session_packet *ses_init_buf; - struct smb_hdr *smb_buf; - ses_init_buf = kzalloc(sizeof(struct rfc1002_session_packet), - GFP_KERNEL); - if (ses_init_buf) { - ses_init_buf->trailer.session_req.called_len = 32; - - if (server->server_RFC1001_name[0] != 0) - rfc1002mangle(ses_init_buf->trailer. - session_req.called_name, - server->server_RFC1001_name, - RFC1001_NAME_LEN_WITH_NULL); - else - rfc1002mangle(ses_init_buf->trailer. - session_req.called_name, - DEFAULT_CIFS_CALLED_NAME, - RFC1001_NAME_LEN_WITH_NULL); + struct rfc1002_session_packet req = {}; + struct smb_hdr *smb_buf = (struct smb_hdr *)&req; + unsigned int len; - ses_init_buf->trailer.session_req.calling_len = 32; + req.trailer.session_req.called_len = sizeof(req.trailer.session_req.called_name); - /* - * calling name ends in null (byte 16) from old smb - * convention. - */ - if (server->workstation_RFC1001_name[0] != 0) - rfc1002mangle(ses_init_buf->trailer. - session_req.calling_name, - server->workstation_RFC1001_name, - RFC1001_NAME_LEN_WITH_NULL); - else - rfc1002mangle(ses_init_buf->trailer. - session_req.calling_name, - "LINUX_CIFS_CLNT", - RFC1001_NAME_LEN_WITH_NULL); - - ses_init_buf->trailer.session_req.scope1 = 0; - ses_init_buf->trailer.session_req.scope2 = 0; - smb_buf = (struct smb_hdr *)ses_init_buf; - - /* sizeof RFC1002_SESSION_REQUEST with no scope */ - smb_buf->smb_buf_length = cpu_to_be32(0x81000044); - rc = smb_send(server, smb_buf, 0x44); - kfree(ses_init_buf); - /* - * RFC1001 layer in at least one server - * requires very short break before negprot - * presumably because not expecting negprot - * to follow so fast. This is a simple - * solution that works without - * complicating the code and causes no - * significant slowing down on mount - * for everyone else - */ - usleep_range(1000, 2000); - } + if (server->server_RFC1001_name[0] != 0) + rfc1002mangle(req.trailer.session_req.called_name, + server->server_RFC1001_name, + RFC1001_NAME_LEN_WITH_NULL); + else + rfc1002mangle(req.trailer.session_req.called_name, + DEFAULT_CIFS_CALLED_NAME, + RFC1001_NAME_LEN_WITH_NULL); + + req.trailer.session_req.calling_len = sizeof(req.trailer.session_req.calling_name); + + /* calling name ends in null (byte 16) from old smb convention */ + if (server->workstation_RFC1001_name[0] != 0) + rfc1002mangle(req.trailer.session_req.calling_name, + server->workstation_RFC1001_name, + RFC1001_NAME_LEN_WITH_NULL); + else + rfc1002mangle(req.trailer.session_req.calling_name, + "LINUX_CIFS_CLNT", + RFC1001_NAME_LEN_WITH_NULL); + + /* + * As per rfc1002, @len must be the number of bytes that follows the + * length field of a rfc1002 session request payload. + */ + len = sizeof(req) - offsetof(struct rfc1002_session_packet, trailer.session_req); + + smb_buf->smb_buf_length = cpu_to_be32((RFC1002_SESSION_REQUEST << 24) | len); + rc = smb_send(server, smb_buf, len); /* - * else the negprot may still work without this - * even though malloc failed + * RFC1001 layer in at least one server requires very short break before + * negprot presumably because not expecting negprot to follow so fast. + * This is a simple solution that works without complicating the code + * and causes no significant slowing down on mount for everyone else */ + usleep_range(1000, 2000); return rc; } @@ -2667,11 +2967,11 @@ ip_rfc1001_connect(struct TCP_Server_Info *server) static int generic_ip_connect(struct TCP_Server_Info *server) { - int rc = 0; - __be16 sport; - int slen, sfamily; - struct socket *socket = server->ssocket; struct sockaddr *saddr; + struct socket *socket; + int slen, sfamily; + __be16 sport; + int rc = 0; saddr = (struct sockaddr *) &server->dstaddr; @@ -2693,18 +2993,19 @@ generic_ip_connect(struct TCP_Server_Info *server) ntohs(sport)); } - if (socket == NULL) { + if (server->ssocket) { + socket = server->ssocket; + } else { rc = __sock_create(cifs_net_ns(server), sfamily, SOCK_STREAM, - IPPROTO_TCP, &socket, 1); + IPPROTO_TCP, &server->ssocket, 1); if (rc < 0) { cifs_server_dbg(VFS, "Error %d creating socket\n", rc); - server->ssocket = NULL; return rc; } /* BB other socket options to set KEEPALIVE, NODELAY? */ cifs_dbg(FYI, "Socket created\n"); - server->ssocket = socket; + socket = server->ssocket; socket->sk->sk_allocation = GFP_NOFS; if (sfamily == AF_INET6) cifs_reclassify_socket6(socket); @@ -2750,11 +3051,12 @@ generic_ip_connect(struct TCP_Server_Info *server) rc = 0; if (rc < 0) { cifs_dbg(FYI, "Error %d connecting to server\n", rc); + trace_smb3_connect_err(server->hostname, server->conn_id, &server->dstaddr, rc); sock_release(socket); server->ssocket = NULL; return rc; } - + trace_smb3_connect_done(server->hostname, server->conn_id, &server->dstaddr); if (sport == htons(RFC1001_PORT)) rc = ip_rfc1001_connect(server); @@ -2790,6 +3092,7 @@ ip_connect(struct TCP_Server_Info *server) return generic_ip_connect(server); } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY void reset_cifs_unix_caps(unsigned int xid, struct cifs_tcon *tcon, struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx) { @@ -2895,6 +3198,7 @@ void reset_cifs_unix_caps(unsigned int xid, struct cifs_tcon *tcon, } } } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ int cifs_setup_cifs_sb(struct cifs_sb_info *cifs_sb) { @@ -2949,7 +3253,7 @@ int cifs_setup_cifs_sb(struct cifs_sb_info *cifs_sb) } /* Release all succeed connections */ -static inline void mount_put_conns(struct mount_ctx *mnt_ctx) +void cifs_mount_put_conns(struct cifs_mount_ctx *mnt_ctx) { int rc = 0; @@ -2963,21 +3267,24 @@ static inline void mount_put_conns(struct mount_ctx *mnt_ctx) free_xid(mnt_ctx->xid); } -/* Get connections for tcp, ses and tcon */ -static int mount_get_conns(struct mount_ctx *mnt_ctx) +int cifs_mount_get_session(struct cifs_mount_ctx *mnt_ctx) { - int rc = 0; struct TCP_Server_Info *server = NULL; + struct smb3_fs_context *ctx; struct cifs_ses *ses = NULL; - struct cifs_tcon *tcon = NULL; - struct smb3_fs_context *ctx = mnt_ctx->fs_ctx; - struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb; unsigned int xid; + int rc = 0; xid = get_xid(); + if (WARN_ON_ONCE(!mnt_ctx || !mnt_ctx->fs_ctx)) { + rc = -EINVAL; + goto out; + } + ctx = mnt_ctx->fs_ctx; + /* get a reference to a tcp session */ - server = cifs_get_tcp_session(ctx); + server = cifs_get_tcp_session(ctx, NULL); if (IS_ERR(server)) { rc = PTR_ERR(server); server = NULL; @@ -2996,11 +3303,36 @@ static int mount_get_conns(struct mount_ctx *mnt_ctx) SMB2_GLOBAL_CAP_PERSISTENT_HANDLES))) { cifs_server_dbg(VFS, "persistent handles not supported by server\n"); rc = -EOPNOTSUPP; + } + +out: + mnt_ctx->xid = xid; + mnt_ctx->server = server; + mnt_ctx->ses = ses; + mnt_ctx->tcon = NULL; + + return rc; +} + +int cifs_mount_get_tcon(struct cifs_mount_ctx *mnt_ctx) +{ + struct TCP_Server_Info *server; + struct cifs_sb_info *cifs_sb; + struct smb3_fs_context *ctx; + struct cifs_tcon *tcon = NULL; + int rc = 0; + + if (WARN_ON_ONCE(!mnt_ctx || !mnt_ctx->server || !mnt_ctx->ses || !mnt_ctx->fs_ctx || + !mnt_ctx->cifs_sb)) { + rc = -EINVAL; goto out; } + server = mnt_ctx->server; + ctx = mnt_ctx->fs_ctx; + cifs_sb = mnt_ctx->cifs_sb; /* search for existing tcon to this server share */ - tcon = cifs_get_tcon(ses, ctx); + tcon = cifs_get_tcon(mnt_ctx->ses, ctx); if (IS_ERR(tcon)) { rc = PTR_ERR(tcon); tcon = NULL; @@ -3011,25 +3343,30 @@ static int mount_get_conns(struct mount_ctx *mnt_ctx) if (tcon->posix_extensions) cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_POSIX_PATHS; +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY /* tell server which Unix caps we support */ if (cap_unix(tcon->ses)) { /* * reset of caps checks mount to see if unix extensions disabled * for just this mount. */ - reset_cifs_unix_caps(xid, tcon, cifs_sb, ctx); + reset_cifs_unix_caps(mnt_ctx->xid, tcon, cifs_sb, ctx); + spin_lock(&tcon->ses->server->srv_lock); if ((tcon->ses->server->tcpStatus == CifsNeedReconnect) && (le64_to_cpu(tcon->fsUnixInfo.Capability) & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP)) { + spin_unlock(&tcon->ses->server->srv_lock); rc = -EACCES; goto out; } + spin_unlock(&tcon->ses->server->srv_lock); } else +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ tcon->unix_ext = 0; /* server does not support them */ /* do not care if a following call succeed - informational */ if (!tcon->pipe && server->ops->qfs_tcon) { - server->ops->qfs_tcon(xid, tcon, cifs_sb); + server->ops->qfs_tcon(mnt_ctx->xid, tcon, cifs_sb); if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RO_CACHE) { if (tcon->fsDevInfo.DeviceCharacteristics & cpu_to_le32(FILE_READ_ONLY_DEVICE)) @@ -3053,12 +3390,15 @@ static int mount_get_conns(struct mount_ctx *mnt_ctx) (cifs_sb->ctx->rsize > server->ops->negotiate_rsize(tcon, ctx))) cifs_sb->ctx->rsize = server->ops->negotiate_rsize(tcon, ctx); + /* + * The cookie is initialized from volume info returned above. + * Inside cifs_fscache_get_super_cookie it checks + * that we do not get super cookie twice. + */ + cifs_fscache_get_super_cookie(tcon); + out: - mnt_ctx->server = server; - mnt_ctx->ses = ses; mnt_ctx->tcon = tcon; - mnt_ctx->xid = xid; - return rc; } @@ -3088,146 +3428,6 @@ static int mount_setup_tlink(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses, return 0; } -#ifdef CONFIG_CIFS_DFS_UPCALL -/* Get unique dfs connections */ -static int mount_get_dfs_conns(struct mount_ctx *mnt_ctx) -{ - int rc; - - mnt_ctx->fs_ctx->nosharesock = true; - rc = mount_get_conns(mnt_ctx); - if (mnt_ctx->server) { - cifs_dbg(FYI, "%s: marking tcp session as a dfs connection\n", __func__); - spin_lock(&cifs_tcp_ses_lock); - mnt_ctx->server->is_dfs_conn = true; - spin_unlock(&cifs_tcp_ses_lock); - } - return rc; -} - -/* - * cifs_build_path_to_root returns full path to root when we do not have an - * existing connection (tcon) - */ -static char * -build_unc_path_to_root(const struct smb3_fs_context *ctx, - const struct cifs_sb_info *cifs_sb, bool useppath) -{ - char *full_path, *pos; - unsigned int pplen = useppath && ctx->prepath ? - strlen(ctx->prepath) + 1 : 0; - unsigned int unc_len = strnlen(ctx->UNC, MAX_TREE_SIZE + 1); - - if (unc_len > MAX_TREE_SIZE) - return ERR_PTR(-EINVAL); - - full_path = kmalloc(unc_len + pplen + 1, GFP_KERNEL); - if (full_path == NULL) - return ERR_PTR(-ENOMEM); - - memcpy(full_path, ctx->UNC, unc_len); - pos = full_path + unc_len; - - if (pplen) { - *pos = CIFS_DIR_SEP(cifs_sb); - memcpy(pos + 1, ctx->prepath, pplen); - pos += pplen; - } - - *pos = '\0'; /* add trailing null */ - convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb)); - cifs_dbg(FYI, "%s: full_path=%s\n", __func__, full_path); - return full_path; -} - -/* - * expand_dfs_referral - Update cifs_sb from dfs referral path - * - * cifs_sb->ctx->mount_options will be (re-)allocated to a string containing updated options for the - * submount. Otherwise it will be left untouched. - */ -static int expand_dfs_referral(struct mount_ctx *mnt_ctx, const char *full_path, - struct dfs_info3_param *referral) -{ - int rc; - struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb; - struct smb3_fs_context *ctx = mnt_ctx->fs_ctx; - char *fake_devname = NULL, *mdata = NULL; - - mdata = cifs_compose_mount_options(cifs_sb->ctx->mount_options, full_path + 1, referral, - &fake_devname); - if (IS_ERR(mdata)) { - rc = PTR_ERR(mdata); - mdata = NULL; - } else { - /* - * We can not clear out the whole structure since we no longer have an explicit - * function to parse a mount-string. Instead we need to clear out the individual - * fields that are no longer valid. - */ - kfree(ctx->prepath); - ctx->prepath = NULL; - rc = cifs_setup_volume_info(ctx, mdata, fake_devname); - } - kfree(fake_devname); - kfree(cifs_sb->ctx->mount_options); - cifs_sb->ctx->mount_options = mdata; - - return rc; -} -#endif - -/* TODO: all callers to this are broken. We are not parsing mount_options here - * we should pass a clone of the original context? - */ -int -cifs_setup_volume_info(struct smb3_fs_context *ctx, const char *mntopts, const char *devname) -{ - int rc; - - if (devname) { - cifs_dbg(FYI, "%s: devname=%s\n", __func__, devname); - rc = smb3_parse_devname(devname, ctx); - if (rc) { - cifs_dbg(VFS, "%s: failed to parse %s: %d\n", __func__, devname, rc); - return rc; - } - } - - if (mntopts) { - char *ip; - - rc = smb3_parse_opt(mntopts, "ip", &ip); - if (rc) { - cifs_dbg(VFS, "%s: failed to parse ip options: %d\n", __func__, rc); - return rc; - } - - rc = cifs_convert_address((struct sockaddr *)&ctx->dstaddr, ip, strlen(ip)); - kfree(ip); - if (!rc) { - cifs_dbg(VFS, "%s: failed to convert ip address\n", __func__); - return -EINVAL; - } - } - - if (ctx->nullauth) { - cifs_dbg(FYI, "Anonymous login\n"); - kfree(ctx->username); - ctx->username = NULL; - } else if (ctx->username) { - /* BB fixme parse for domain name here */ - cifs_dbg(FYI, "Username: %s\n", ctx->username); - } else { - cifs_dbg(VFS, "No username specified\n"); - /* In userspace mount helper we can get user name from alternate - locations such as env variables and files on disk */ - return -EINVAL; - } - - return 0; -} - static int cifs_are_all_path_components_accessible(struct TCP_Server_Info *server, unsigned int xid, @@ -3276,10 +3476,11 @@ cifs_are_all_path_components_accessible(struct TCP_Server_Info *server, } /* - * Check if path is remote (e.g. a DFS share). Return -EREMOTE if it is, - * otherwise 0. + * Check if path is remote (i.e. a DFS share). + * + * Return -EREMOTE if it is, otherwise 0 or -errno. */ -static int is_path_remote(struct mount_ctx *mnt_ctx) +int cifs_is_path_remote(struct cifs_mount_ctx *mnt_ctx) { int rc; struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb; @@ -3304,10 +3505,8 @@ static int is_path_remote(struct mount_ctx *mnt_ctx) rc = server->ops->is_path_accessible(xid, tcon, cifs_sb, full_path); - if (rc != 0 && rc != -EREMOTE) { - kfree(full_path); - return rc; - } + if (rc != 0 && rc != -EREMOTE) + goto out; if (rc != -EREMOTE) { rc = cifs_are_all_path_components_accessible(server, xid, tcon, @@ -3319,245 +3518,26 @@ static int is_path_remote(struct mount_ctx *mnt_ctx) } } - kfree(full_path); - return rc; -} - -#ifdef CONFIG_CIFS_DFS_UPCALL -static void set_root_ses(struct mount_ctx *mnt_ctx) -{ - if (mnt_ctx->ses) { - spin_lock(&cifs_tcp_ses_lock); - mnt_ctx->ses->ses_count++; - spin_unlock(&cifs_tcp_ses_lock); - dfs_cache_add_refsrv_session(&mnt_ctx->mount_id, mnt_ctx->ses); - } - mnt_ctx->root_ses = mnt_ctx->ses; -} - -static int is_dfs_mount(struct mount_ctx *mnt_ctx, bool *isdfs, struct dfs_cache_tgt_list *root_tl) -{ - int rc; - struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb; - struct smb3_fs_context *ctx = mnt_ctx->fs_ctx; - - *isdfs = true; - - rc = mount_get_conns(mnt_ctx); - /* - * If called with 'nodfs' mount option, then skip DFS resolving. Otherwise unconditionally - * try to get an DFS referral (even cached) to determine whether it is an DFS mount. - * - * Skip prefix path to provide support for DFS referrals from w2k8 servers which don't seem - * to respond with PATH_NOT_COVERED to requests that include the prefix. - */ - if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS) || - dfs_cache_find(mnt_ctx->xid, mnt_ctx->ses, cifs_sb->local_nls, cifs_remap(cifs_sb), - ctx->UNC + 1, NULL, root_tl)) { - if (rc) - return rc; - /* Check if it is fully accessible and then mount it */ - rc = is_path_remote(mnt_ctx); - if (!rc) - *isdfs = false; - else if (rc != -EREMOTE) - return rc; - } - return 0; -} - -static int connect_dfs_target(struct mount_ctx *mnt_ctx, const char *full_path, - const char *ref_path, struct dfs_cache_tgt_iterator *tit) -{ - int rc; - struct dfs_info3_param ref = {}; - struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb; - char *oldmnt = cifs_sb->ctx->mount_options; - - rc = dfs_cache_get_tgt_referral(ref_path, tit, &ref); - if (rc) - goto out; - - rc = expand_dfs_referral(mnt_ctx, full_path, &ref); - if (rc) - goto out; - - /* Connect to new target only if we were redirected (e.g. mount options changed) */ - if (oldmnt != cifs_sb->ctx->mount_options) { - mount_put_conns(mnt_ctx); - rc = mount_get_dfs_conns(mnt_ctx); - } - if (!rc) { - if (cifs_is_referral_server(mnt_ctx->tcon, &ref)) - set_root_ses(mnt_ctx); - rc = dfs_cache_update_tgthint(mnt_ctx->xid, mnt_ctx->root_ses, cifs_sb->local_nls, - cifs_remap(cifs_sb), ref_path, tit); - } - -out: - free_dfs_info_param(&ref); - return rc; -} - -static int connect_dfs_root(struct mount_ctx *mnt_ctx, struct dfs_cache_tgt_list *root_tl) -{ - int rc; - char *full_path; - struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb; - struct smb3_fs_context *ctx = mnt_ctx->fs_ctx; - struct dfs_cache_tgt_iterator *tit; - - /* Put initial connections as they might be shared with other mounts. We need unique dfs - * connections per mount to properly failover, so mount_get_dfs_conns() must be used from - * now on. - */ - mount_put_conns(mnt_ctx); - mount_get_dfs_conns(mnt_ctx); - set_root_ses(mnt_ctx); - - full_path = build_unc_path_to_root(ctx, cifs_sb, true); - if (IS_ERR(full_path)) - return PTR_ERR(full_path); - - mnt_ctx->origin_fullpath = dfs_cache_canonical_path(ctx->UNC, cifs_sb->local_nls, - cifs_remap(cifs_sb)); - if (IS_ERR(mnt_ctx->origin_fullpath)) { - rc = PTR_ERR(mnt_ctx->origin_fullpath); - mnt_ctx->origin_fullpath = NULL; - goto out; - } - - /* Try all dfs root targets */ - for (rc = -ENOENT, tit = dfs_cache_get_tgt_iterator(root_tl); - tit; tit = dfs_cache_get_next_tgt(root_tl, tit)) { - rc = connect_dfs_target(mnt_ctx, full_path, mnt_ctx->origin_fullpath + 1, tit); - if (!rc) { - mnt_ctx->leaf_fullpath = kstrdup(mnt_ctx->origin_fullpath, GFP_KERNEL); - if (!mnt_ctx->leaf_fullpath) - rc = -ENOMEM; - break; - } - } - out: kfree(full_path); return rc; } -static int __follow_dfs_link(struct mount_ctx *mnt_ctx) -{ - int rc; - struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb; - struct smb3_fs_context *ctx = mnt_ctx->fs_ctx; - char *full_path; - struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl); - struct dfs_cache_tgt_iterator *tit; - - full_path = build_unc_path_to_root(ctx, cifs_sb, true); - if (IS_ERR(full_path)) - return PTR_ERR(full_path); - - kfree(mnt_ctx->leaf_fullpath); - mnt_ctx->leaf_fullpath = dfs_cache_canonical_path(full_path, cifs_sb->local_nls, - cifs_remap(cifs_sb)); - if (IS_ERR(mnt_ctx->leaf_fullpath)) { - rc = PTR_ERR(mnt_ctx->leaf_fullpath); - mnt_ctx->leaf_fullpath = NULL; - goto out; - } - - /* Get referral from dfs link */ - rc = dfs_cache_find(mnt_ctx->xid, mnt_ctx->root_ses, cifs_sb->local_nls, - cifs_remap(cifs_sb), mnt_ctx->leaf_fullpath + 1, NULL, &tl); - if (rc) - goto out; - - /* Try all dfs link targets */ - for (rc = -ENOENT, tit = dfs_cache_get_tgt_iterator(&tl); - tit; tit = dfs_cache_get_next_tgt(&tl, tit)) { - rc = connect_dfs_target(mnt_ctx, full_path, mnt_ctx->leaf_fullpath + 1, tit); - if (!rc) { - rc = is_path_remote(mnt_ctx); - break; - } - } - -out: - kfree(full_path); - dfs_cache_free_tgts(&tl); - return rc; -} - -static int follow_dfs_link(struct mount_ctx *mnt_ctx) -{ - int rc; - struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb; - struct smb3_fs_context *ctx = mnt_ctx->fs_ctx; - char *full_path; - int num_links = 0; - - full_path = build_unc_path_to_root(ctx, cifs_sb, true); - if (IS_ERR(full_path)) - return PTR_ERR(full_path); - - kfree(mnt_ctx->origin_fullpath); - mnt_ctx->origin_fullpath = dfs_cache_canonical_path(full_path, cifs_sb->local_nls, - cifs_remap(cifs_sb)); - kfree(full_path); - - if (IS_ERR(mnt_ctx->origin_fullpath)) { - rc = PTR_ERR(mnt_ctx->origin_fullpath); - mnt_ctx->origin_fullpath = NULL; - return rc; - } - - do { - rc = __follow_dfs_link(mnt_ctx); - if (!rc || rc != -EREMOTE) - break; - } while (rc = -ELOOP, ++num_links < MAX_NESTED_LINKS); - - return rc; -} - -/* Set up DFS referral paths for failover */ -static void setup_server_referral_paths(struct mount_ctx *mnt_ctx) -{ - struct TCP_Server_Info *server = mnt_ctx->server; - - server->origin_fullpath = mnt_ctx->origin_fullpath; - server->leaf_fullpath = mnt_ctx->leaf_fullpath; - server->current_fullpath = mnt_ctx->leaf_fullpath; - mnt_ctx->origin_fullpath = mnt_ctx->leaf_fullpath = NULL; -} - +#ifdef CONFIG_CIFS_DFS_UPCALL int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx) { - int rc; - struct mount_ctx mnt_ctx = { .cifs_sb = cifs_sb, .fs_ctx = ctx, }; - struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl); + struct cifs_mount_ctx mnt_ctx = { .cifs_sb = cifs_sb, .fs_ctx = ctx, }; bool isdfs; + int rc; + + INIT_LIST_HEAD(&mnt_ctx.dfs_ses_list); - rc = is_dfs_mount(&mnt_ctx, &isdfs, &tl); + rc = dfs_mount_share(&mnt_ctx, &isdfs); if (rc) goto error; if (!isdfs) goto out; - uuid_gen(&mnt_ctx.mount_id); - rc = connect_dfs_root(&mnt_ctx, &tl); - dfs_cache_free_tgts(&tl); - - if (rc) - goto error; - - rc = is_path_remote(&mnt_ctx); - if (rc == -EREMOTE) - rc = follow_dfs_link(&mnt_ctx); - if (rc) - goto error; - - setup_server_referral_paths(&mnt_ctx); /* * After reconnecting to a different server, unique ids won't match anymore, so we disable * serverino. This prevents dentry revalidation to think the dentry are stale (ESTALE). @@ -3571,7 +3551,6 @@ int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx) kfree(cifs_sb->prepath); cifs_sb->prepath = ctx->prepath; ctx->prepath = NULL; - uuid_copy(&cifs_sb->dfs_mount_id, &mnt_ctx.mount_id); out: cifs_try_adding_channels(cifs_sb, mnt_ctx.ses); @@ -3583,29 +3562,29 @@ int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx) return rc; error: - dfs_cache_put_refsrv_sessions(&mnt_ctx.mount_id); - kfree(mnt_ctx.origin_fullpath); - kfree(mnt_ctx.leaf_fullpath); - mount_put_conns(&mnt_ctx); + dfs_put_root_smb_sessions(&mnt_ctx.dfs_ses_list); + cifs_mount_put_conns(&mnt_ctx); return rc; } #else int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx) { int rc = 0; - struct mount_ctx mnt_ctx = { .cifs_sb = cifs_sb, .fs_ctx = ctx, }; + struct cifs_mount_ctx mnt_ctx = { .cifs_sb = cifs_sb, .fs_ctx = ctx, }; - rc = mount_get_conns(&mnt_ctx); + rc = cifs_mount_get_session(&mnt_ctx); if (rc) goto error; - if (mnt_ctx.tcon) { - rc = is_path_remote(&mnt_ctx); - if (rc == -EREMOTE) - rc = -EOPNOTSUPP; - if (rc) - goto error; - } + rc = cifs_mount_get_tcon(&mnt_ctx); + if (rc) + goto error; + + rc = cifs_is_path_remote(&mnt_ctx); + if (rc == -EREMOTE) + rc = -EOPNOTSUPP; + if (rc) + goto error; rc = mount_setup_tlink(cifs_sb, mnt_ctx.ses, mnt_ctx.tcon); if (rc) @@ -3615,7 +3594,7 @@ int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb3_fs_context *ctx) return rc; error: - mount_put_conns(&mnt_ctx); + cifs_mount_put_conns(&mnt_ctx); return rc; } #endif @@ -3698,8 +3677,6 @@ CIFSTCon(const unsigned int xid, struct cifs_ses *ses, if (rc == 0) { bool is_unicode; - tcon->tidStatus = CifsGood; - tcon->need_reconnect = false; tcon->tid = smb_buffer_response->Tid; bcc_ptr = pByteArea(smb_buffer_response); bytes_left = get_bcc(smb_buffer_response); @@ -3726,7 +3703,7 @@ CIFSTCon(const unsigned int xid, struct cifs_ses *ses, } bcc_ptr += length + 1; bytes_left -= (length + 1); - strlcpy(tcon->treeName, tree, sizeof(tcon->treeName)); + strscpy(tcon->tree_name, tree, sizeof(tcon->tree_name)); /* mostly informational -- no need to fail on error here */ kfree(tcon->nativeFileSystem); @@ -3781,33 +3758,49 @@ cifs_umount(struct cifs_sb_info *cifs_sb) spin_unlock(&cifs_sb->tlink_tree_lock); kfree(cifs_sb->prepath); -#ifdef CONFIG_CIFS_DFS_UPCALL - dfs_cache_put_refsrv_sessions(&cifs_sb->dfs_mount_id); -#endif call_rcu(&cifs_sb->rcu, delayed_free); } int -cifs_negotiate_protocol(const unsigned int xid, struct cifs_ses *ses) +cifs_negotiate_protocol(const unsigned int xid, struct cifs_ses *ses, + struct TCP_Server_Info *server) { int rc = 0; - struct TCP_Server_Info *server = cifs_ses_server(ses); if (!server->ops->need_neg || !server->ops->negotiate) return -ENOSYS; /* only send once per connect */ - if (!server->ops->need_neg(server)) + spin_lock(&server->srv_lock); + if (server->tcpStatus != CifsGood && + server->tcpStatus != CifsNew && + server->tcpStatus != CifsNeedNegotiate) { + spin_unlock(&server->srv_lock); + return -EHOSTDOWN; + } + + if (!server->ops->need_neg(server) && + server->tcpStatus == CifsGood) { + spin_unlock(&server->srv_lock); return 0; + } + + server->tcpStatus = CifsInNegotiate; + spin_unlock(&server->srv_lock); - rc = server->ops->negotiate(xid, ses); + rc = server->ops->negotiate(xid, ses, server); if (rc == 0) { - spin_lock(&GlobalMid_Lock); - if (server->tcpStatus == CifsNeedNegotiate) + spin_lock(&server->srv_lock); + if (server->tcpStatus == CifsInNegotiate) server->tcpStatus = CifsGood; else rc = -EHOSTDOWN; - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->srv_lock); + } else { + spin_lock(&server->srv_lock); + if (server->tcpStatus == CifsInNegotiate) + server->tcpStatus = CifsNeedNegotiate; + spin_unlock(&server->srv_lock); } return rc; @@ -3815,12 +3808,53 @@ cifs_negotiate_protocol(const unsigned int xid, struct cifs_ses *ses) int cifs_setup_session(const unsigned int xid, struct cifs_ses *ses, + struct TCP_Server_Info *server, struct nls_table *nls_info) { int rc = -ENOSYS; - struct TCP_Server_Info *server = cifs_ses_server(ses); + struct TCP_Server_Info *pserver = CIFS_SERVER_IS_CHAN(server) ? server->primary_server : server; + struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)&pserver->dstaddr; + struct sockaddr_in *addr = (struct sockaddr_in *)&pserver->dstaddr; + bool is_binding = false; + + spin_lock(&ses->ses_lock); + cifs_dbg(FYI, "%s: channel connect bitmap: 0x%lx\n", + __func__, ses->chans_need_reconnect); + + if (ses->ses_status != SES_GOOD && + ses->ses_status != SES_NEW && + ses->ses_status != SES_NEED_RECON) { + spin_unlock(&ses->ses_lock); + return -EHOSTDOWN; + } + + /* only send once per connect */ + spin_lock(&ses->chan_lock); + if (CIFS_ALL_CHANS_GOOD(ses)) { + if (ses->ses_status == SES_NEED_RECON) + ses->ses_status = SES_GOOD; + spin_unlock(&ses->chan_lock); + spin_unlock(&ses->ses_lock); + return 0; + } + + cifs_chan_set_in_reconnect(ses, server); + is_binding = !CIFS_ALL_CHANS_NEED_RECONNECT(ses); + spin_unlock(&ses->chan_lock); + + if (!is_binding) + ses->ses_status = SES_IN_SETUP; + spin_unlock(&ses->ses_lock); - if (!ses->binding) { + /* update ses ip_addr only for primary chan */ + if (server == pserver) { + if (server->dstaddr.ss_family == AF_INET6) + scnprintf(ses->ip_addr, sizeof(ses->ip_addr), "%pI6", &addr6->sin6_addr); + else + scnprintf(ses->ip_addr, sizeof(ses->ip_addr), "%pI4", &addr->sin_addr); + } + + if (!is_binding) { ses->capabilities = server->capabilities; if (!linuxExtEnabled) ses->capabilities &= (~server->vals->cap_unix); @@ -3828,7 +3862,7 @@ cifs_setup_session(const unsigned int xid, struct cifs_ses *ses, if (ses->auth_key.response) { cifs_dbg(FYI, "Free previous auth_key.response = %p\n", ses->auth_key.response); - kfree(ses->auth_key.response); + kfree_sensitive(ses->auth_key.response); ses->auth_key.response = NULL; ses->auth_key.len = 0; } @@ -3838,10 +3872,27 @@ cifs_setup_session(const unsigned int xid, struct cifs_ses *ses, server->sec_mode, server->capabilities, server->timeAdj); if (server->ops->sess_setup) - rc = server->ops->sess_setup(xid, ses, nls_info); + rc = server->ops->sess_setup(xid, ses, server, nls_info); - if (rc) + if (rc) { cifs_server_dbg(VFS, "Send error in SessSetup = %d\n", rc); + spin_lock(&ses->ses_lock); + if (ses->ses_status == SES_IN_SETUP) + ses->ses_status = SES_NEED_RECON; + spin_lock(&ses->chan_lock); + cifs_chan_clear_in_reconnect(ses, server); + spin_unlock(&ses->chan_lock); + spin_unlock(&ses->ses_lock); + } else { + spin_lock(&ses->ses_lock); + if (ses->ses_status == SES_IN_SETUP) + ses->ses_status = SES_GOOD; + spin_lock(&ses->chan_lock); + cifs_chan_clear_in_reconnect(ses, server); + cifs_chan_clear_need_reconnect(ses, server); + spin_unlock(&ses->chan_lock); + spin_unlock(&ses->ses_lock); + } return rc; } @@ -3874,7 +3925,7 @@ cifs_construct_tcon(struct cifs_sb_info *cifs_sb, kuid_t fsuid) ctx->local_nls = cifs_sb->local_nls; ctx->linux_uid = fsuid; ctx->cred_uid = fsuid; - ctx->UNC = master_tcon->treeName; + ctx->UNC = master_tcon->tree_name; ctx->retry = master_tcon->retry; ctx->nocase = master_tcon->nocase; ctx->nohandlecache = master_tcon->nohandlecache; @@ -3914,8 +3965,10 @@ cifs_construct_tcon(struct cifs_sb_info *cifs_sb, kuid_t fsuid) goto out; } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY if (cap_unix(ses)) reset_cifs_unix_caps(0, tcon, NULL, ctx); +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ out: kfree(ctx->username); @@ -4108,257 +4161,42 @@ cifs_prune_tlinks(struct work_struct *work) TLINK_IDLE_EXPIRE); } -#ifdef CONFIG_CIFS_DFS_UPCALL -static void mark_tcon_tcp_ses_for_reconnect(struct cifs_tcon *tcon) -{ - int i; - - for (i = 0; i < tcon->ses->chan_count; i++) { - spin_lock(&GlobalMid_Lock); - if (tcon->ses->chans[i].server->tcpStatus != CifsExiting) - tcon->ses->chans[i].server->tcpStatus = CifsNeedReconnect; - spin_unlock(&GlobalMid_Lock); - } -} - -/* Update dfs referral path of superblock */ -static int update_server_fullpath(struct TCP_Server_Info *server, struct cifs_sb_info *cifs_sb, - const char *target) -{ - int rc = 0; - size_t len = strlen(target); - char *refpath, *npath; - - if (unlikely(len < 2 || *target != '\\')) - return -EINVAL; - - if (target[1] == '\\') { - len += 1; - refpath = kmalloc(len, GFP_KERNEL); - if (!refpath) - return -ENOMEM; - - scnprintf(refpath, len, "%s", target); - } else { - len += sizeof("\\"); - refpath = kmalloc(len, GFP_KERNEL); - if (!refpath) - return -ENOMEM; - - scnprintf(refpath, len, "\\%s", target); - } - - npath = dfs_cache_canonical_path(refpath, cifs_sb->local_nls, cifs_remap(cifs_sb)); - kfree(refpath); - - if (IS_ERR(npath)) { - rc = PTR_ERR(npath); - } else { - mutex_lock(&server->refpath_lock); - kfree(server->leaf_fullpath); - server->leaf_fullpath = npath; - mutex_unlock(&server->refpath_lock); - server->current_fullpath = server->leaf_fullpath; - } - return rc; -} - -static int target_share_matches_server(struct TCP_Server_Info *server, const char *tcp_host, - size_t tcp_host_len, char *share, bool *target_match) -{ - int rc = 0; - const char *dfs_host; - size_t dfs_host_len; - - *target_match = true; - extract_unc_hostname(share, &dfs_host, &dfs_host_len); - - /* Check if hostnames or addresses match */ - if (dfs_host_len != tcp_host_len || strncasecmp(dfs_host, tcp_host, dfs_host_len) != 0) { - cifs_dbg(FYI, "%s: %.*s doesn't match %.*s\n", __func__, (int)dfs_host_len, - dfs_host, (int)tcp_host_len, tcp_host); - rc = match_target_ip(server, dfs_host, dfs_host_len, target_match); - if (rc) - cifs_dbg(VFS, "%s: failed to match target ip: %d\n", __func__, rc); - } - return rc; -} - -int __tree_connect_dfs_target(const unsigned int xid, struct cifs_tcon *tcon, - struct cifs_sb_info *cifs_sb, char *tree, - struct dfs_cache_tgt_list *tl, struct dfs_info3_param *ref) -{ - int rc; - struct TCP_Server_Info *server = tcon->ses->server; - const struct smb_version_operations *ops = server->ops; - struct cifs_tcon *ipc = tcon->ses->tcon_ipc; - bool islink; - char *share = NULL, *prefix = NULL; - const char *tcp_host; - size_t tcp_host_len; - struct dfs_cache_tgt_iterator *tit; - bool target_match; - - extract_unc_hostname(server->hostname, &tcp_host, &tcp_host_len); - - islink = ref->server_type == DFS_TYPE_LINK; - free_dfs_info_param(ref); - - tit = dfs_cache_get_tgt_iterator(tl); - if (!tit) { - rc = -ENOENT; - goto out; - } - - /* Try to tree connect to all dfs targets */ - for (; tit; tit = dfs_cache_get_next_tgt(tl, tit)) { - const char *target = dfs_cache_get_tgt_name(tit); - struct dfs_cache_tgt_list ntl = DFS_CACHE_TGT_LIST_INIT(ntl); - - kfree(share); - kfree(prefix); - - /* Check if share matches with tcp ses */ - rc = dfs_cache_get_tgt_share(server->current_fullpath + 1, tit, &share, &prefix); - if (rc) { - cifs_dbg(VFS, "%s: failed to parse target share: %d\n", __func__, rc); - break; - } - - rc = target_share_matches_server(server, tcp_host, tcp_host_len, share, - &target_match); - if (rc) - break; - if (!target_match) { - rc = -EHOSTUNREACH; - continue; - } - - if (ipc->need_reconnect) { - scnprintf(tree, MAX_TREE_SIZE, "\\\\%s\\IPC$", server->hostname); - rc = ops->tree_connect(xid, ipc->ses, tree, ipc, cifs_sb->local_nls); - if (rc) - break; - } - - scnprintf(tree, MAX_TREE_SIZE, "\\%s", share); - if (!islink) { - rc = ops->tree_connect(xid, tcon->ses, tree, tcon, cifs_sb->local_nls); - break; - } - /* - * If no dfs referrals were returned from link target, then just do a TREE_CONNECT - * to it. Otherwise, cache the dfs referral and then mark current tcp ses for - * reconnect so either the demultiplex thread or the echo worker will reconnect to - * newly resolved target. - */ - if (dfs_cache_find(xid, tcon->ses, cifs_sb->local_nls, cifs_remap(cifs_sb), target, - ref, &ntl)) { - rc = ops->tree_connect(xid, tcon->ses, tree, tcon, cifs_sb->local_nls); - if (rc) - continue; - rc = dfs_cache_noreq_update_tgthint(server->current_fullpath + 1, tit); - if (!rc) - rc = cifs_update_super_prepath(cifs_sb, prefix); - break; - } - /* Target is another dfs share */ - rc = update_server_fullpath(server, cifs_sb, target); - dfs_cache_free_tgts(tl); - - if (!rc) { - rc = -EREMOTE; - list_replace_init(&ntl.tl_list, &tl->tl_list); - } else { - dfs_cache_free_tgts(&ntl); - free_dfs_info_param(ref); - } - break; - } - -out: - kfree(share); - kfree(prefix); - - return rc; -} - -int tree_connect_dfs_target(const unsigned int xid, struct cifs_tcon *tcon, - struct cifs_sb_info *cifs_sb, char *tree, - struct dfs_cache_tgt_list *tl, struct dfs_info3_param *ref) -{ - int rc; - int num_links = 0; - struct TCP_Server_Info *server = tcon->ses->server; - - do { - rc = __tree_connect_dfs_target(xid, tcon, cifs_sb, tree, tl, ref); - if (!rc || rc != -EREMOTE) - break; - } while (rc = -ELOOP, ++num_links < MAX_NESTED_LINKS); - /* - * If we couldn't tree connect to any targets from last referral path, then retry from - * original referral path. - */ - if (rc && server->current_fullpath != server->origin_fullpath) { - server->current_fullpath = server->origin_fullpath; - mark_tcon_tcp_ses_for_reconnect(tcon); - } - - dfs_cache_free_tgts(tl); - return rc; -} - +#ifndef CONFIG_CIFS_DFS_UPCALL int cifs_tree_connect(const unsigned int xid, struct cifs_tcon *tcon, const struct nls_table *nlsc) { int rc; - struct TCP_Server_Info *server = tcon->ses->server; - const struct smb_version_operations *ops = server->ops; - struct super_block *sb = NULL; - struct cifs_sb_info *cifs_sb; - struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl); - char *tree; - struct dfs_info3_param ref = {0}; - - tree = kzalloc(MAX_TREE_SIZE, GFP_KERNEL); - if (!tree) - return -ENOMEM; + const struct smb_version_operations *ops = tcon->ses->server->ops; - if (tcon->ipc) { - scnprintf(tree, MAX_TREE_SIZE, "\\\\%s\\IPC$", server->hostname); - rc = ops->tree_connect(xid, tcon->ses, tree, tcon, nlsc); - goto out; + /* only send once per connect */ + spin_lock(&tcon->tc_lock); + if (tcon->status == TID_GOOD) { + spin_unlock(&tcon->tc_lock); + return 0; } - sb = cifs_get_tcp_super(server); - if (IS_ERR(sb)) { - rc = PTR_ERR(sb); - cifs_dbg(VFS, "%s: could not find superblock: %d\n", __func__, rc); - goto out; + if (tcon->status != TID_NEW && + tcon->status != TID_NEED_TCON) { + spin_unlock(&tcon->tc_lock); + return -EHOSTDOWN; } - cifs_sb = CIFS_SB(sb); + tcon->status = TID_IN_TCON; + spin_unlock(&tcon->tc_lock); - /* If it is not dfs or there was no cached dfs referral, then reconnect to same share */ - if (!server->current_fullpath || - dfs_cache_noreq_find(server->current_fullpath + 1, &ref, &tl)) { - rc = ops->tree_connect(xid, tcon->ses, tcon->treeName, tcon, cifs_sb->local_nls); - goto out; + rc = ops->tree_connect(xid, tcon->ses, tcon->tree_name, tcon, nlsc); + if (rc) { + spin_lock(&tcon->tc_lock); + if (tcon->status == TID_IN_TCON) + tcon->status = TID_NEED_TCON; + spin_unlock(&tcon->tc_lock); + } else { + spin_lock(&tcon->tc_lock); + if (tcon->status == TID_IN_TCON) + tcon->status = TID_GOOD; + tcon->need_reconnect = false; + spin_unlock(&tcon->tc_lock); } - rc = tree_connect_dfs_target(xid, tcon, cifs_sb, tree, &tl, &ref); - -out: - kfree(tree); - cifs_put_tcp_super(sb); - return rc; } -#else -int cifs_tree_connect(const unsigned int xid, struct cifs_tcon *tcon, const struct nls_table *nlsc) -{ - const struct smb_version_operations *ops = tcon->ses->server->ops; - - return ops->tree_connect(xid, tcon->ses, tcon->treeName, tcon, nlsc); -} #endif diff --git a/fs/cifs/dfs.c b/fs/cifs/dfs.c new file mode 100644 index 0000000000000..ee772c3d9f007 --- /dev/null +++ b/fs/cifs/dfs.c @@ -0,0 +1,596 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Copyright (c) 2022 Paulo Alcantara + */ + +#include +#include "cifsproto.h" +#include "cifs_debug.h" +#include "dns_resolve.h" +#include "fs_context.h" +#include "dfs.h" + +/** + * dfs_parse_target_referral - set fs context for dfs target referral + * + * @full_path: full path in UNC format. + * @ref: dfs referral pointer. + * @ctx: smb3 fs context pointer. + * + * Return zero if dfs referral was parsed correctly, otherwise non-zero. + */ +int dfs_parse_target_referral(const char *full_path, const struct dfs_info3_param *ref, + struct smb3_fs_context *ctx) +{ + int rc; + const char *prepath = NULL; + char *path; + + if (!full_path || !*full_path || !ref || !ctx) + return -EINVAL; + + if (WARN_ON_ONCE(!ref->node_name || ref->path_consumed < 0)) + return -EINVAL; + + if (strlen(full_path) - ref->path_consumed) { + prepath = full_path + ref->path_consumed; + /* skip initial delimiter */ + if (*prepath == '/' || *prepath == '\\') + prepath++; + } + + path = cifs_build_devname(ref->node_name, prepath); + if (IS_ERR(path)) + return PTR_ERR(path); + + rc = smb3_parse_devname(path, ctx); + if (rc) + goto out; + + rc = dns_resolve_server_name_to_ip(path, (struct sockaddr *)&ctx->dstaddr, NULL); + +out: + kfree(path); + return rc; +} + +static int get_session(struct cifs_mount_ctx *mnt_ctx, const char *full_path) +{ + struct smb3_fs_context *ctx = mnt_ctx->fs_ctx; + int rc; + + ctx->leaf_fullpath = (char *)full_path; + rc = cifs_mount_get_session(mnt_ctx); + ctx->leaf_fullpath = NULL; + + return rc; +} + +/* + * Track individual DFS referral servers used by new DFS mount. + * + * On success, their lifetime will be shared by final tcon (dfs_ses_list). + * Otherwise, they will be put by dfs_put_root_smb_sessions() in cifs_mount(). + */ +static int add_root_smb_session(struct cifs_mount_ctx *mnt_ctx) +{ + struct smb3_fs_context *ctx = mnt_ctx->fs_ctx; + struct dfs_root_ses *root_ses; + struct cifs_ses *ses = mnt_ctx->ses; + + if (ses) { + root_ses = kmalloc(sizeof(*root_ses), GFP_KERNEL); + if (!root_ses) + return -ENOMEM; + + INIT_LIST_HEAD(&root_ses->list); + + spin_lock(&cifs_tcp_ses_lock); + cifs_smb_ses_inc_refcount(ses); + spin_unlock(&cifs_tcp_ses_lock); + root_ses->ses = ses; + list_add_tail(&root_ses->list, &mnt_ctx->dfs_ses_list); + } + /* Select new DFS referral server so that new referrals go through it */ + ctx->dfs_root_ses = ses; + return 0; +} + +static int get_dfs_conn(struct cifs_mount_ctx *mnt_ctx, const char *ref_path, const char *full_path, + const struct dfs_cache_tgt_iterator *tit) +{ + struct smb3_fs_context *ctx = mnt_ctx->fs_ctx; + struct dfs_info3_param ref = {}; + bool is_refsrv; + int rc, rc2; + + rc = dfs_cache_get_tgt_referral(ref_path + 1, tit, &ref); + if (rc) + return rc; + + rc = dfs_parse_target_referral(full_path + 1, &ref, ctx); + if (rc) + goto out; + + cifs_mount_put_conns(mnt_ctx); + rc = get_session(mnt_ctx, ref_path); + if (rc) + goto out; + + is_refsrv = !!(ref.flags & DFSREF_REFERRAL_SERVER); + + rc = -EREMOTE; + if (ref.flags & DFSREF_STORAGE_SERVER) { + rc = cifs_mount_get_tcon(mnt_ctx); + if (rc) + goto out; + + /* some servers may not advertise referral capability under ref.flags */ + is_refsrv |= is_tcon_dfs(mnt_ctx->tcon); + + rc = cifs_is_path_remote(mnt_ctx); + } + + dfs_cache_noreq_update_tgthint(ref_path + 1, tit); + + if (rc == -EREMOTE && is_refsrv) { + rc2 = add_root_smb_session(mnt_ctx); + if (rc2) + rc = rc2; + } + +out: + free_dfs_info_param(&ref); + return rc; +} + +static int __dfs_mount_share(struct cifs_mount_ctx *mnt_ctx) +{ + struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb; + struct smb3_fs_context *ctx = mnt_ctx->fs_ctx; + char *ref_path = NULL, *full_path = NULL; + struct dfs_cache_tgt_iterator *tit; + struct cifs_tcon *tcon; + char *origin_fullpath = NULL; + char sep = CIFS_DIR_SEP(cifs_sb); + int num_links = 0; + int rc; + + ref_path = dfs_get_path(cifs_sb, ctx->UNC); + if (IS_ERR(ref_path)) + return PTR_ERR(ref_path); + + full_path = smb3_fs_context_fullpath(ctx, sep); + if (IS_ERR(full_path)) { + rc = PTR_ERR(full_path); + full_path = NULL; + goto out; + } + + origin_fullpath = kstrdup(full_path, GFP_KERNEL); + if (!origin_fullpath) { + rc = -ENOMEM; + goto out; + } + + do { + struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl); + + rc = dfs_get_referral(mnt_ctx, ref_path + 1, NULL, &tl); + if (rc) { + rc = cifs_mount_get_tcon(mnt_ctx); + if (!rc) + rc = cifs_is_path_remote(mnt_ctx); + break; + } + + tit = dfs_cache_get_tgt_iterator(&tl); + if (!tit) { + cifs_dbg(VFS, "%s: dfs referral (%s) with no targets\n", __func__, + ref_path + 1); + rc = -ENOENT; + dfs_cache_free_tgts(&tl); + break; + } + + do { + rc = get_dfs_conn(mnt_ctx, ref_path, full_path, tit); + if (!rc) + break; + if (rc == -EREMOTE) { + if (++num_links > MAX_NESTED_LINKS) { + rc = -ELOOP; + break; + } + kfree(ref_path); + kfree(full_path); + ref_path = full_path = NULL; + + full_path = smb3_fs_context_fullpath(ctx, sep); + if (IS_ERR(full_path)) { + rc = PTR_ERR(full_path); + full_path = NULL; + } else { + ref_path = dfs_get_path(cifs_sb, full_path); + if (IS_ERR(ref_path)) { + rc = PTR_ERR(ref_path); + ref_path = NULL; + } + } + break; + } + } while ((tit = dfs_cache_get_next_tgt(&tl, tit))); + dfs_cache_free_tgts(&tl); + } while (rc == -EREMOTE); + + if (!rc) { + tcon = mnt_ctx->tcon; + + spin_lock(&tcon->tc_lock); + if (!tcon->origin_fullpath) { + tcon->origin_fullpath = origin_fullpath; + origin_fullpath = NULL; + } + spin_unlock(&tcon->tc_lock); + + if (list_empty(&tcon->dfs_ses_list)) { + list_replace_init(&mnt_ctx->dfs_ses_list, + &tcon->dfs_ses_list); + queue_delayed_work(dfscache_wq, &tcon->dfs_cache_work, + dfs_cache_get_ttl() * HZ); + } else { + dfs_put_root_smb_sessions(&mnt_ctx->dfs_ses_list); + } + } + +out: + kfree(origin_fullpath); + kfree(ref_path); + kfree(full_path); + return rc; +} + +int dfs_mount_share(struct cifs_mount_ctx *mnt_ctx, bool *isdfs) +{ + struct smb3_fs_context *ctx = mnt_ctx->fs_ctx; + bool nodfs = ctx->nodfs; + int rc; + + *isdfs = false; + rc = get_session(mnt_ctx, NULL); + if (rc) + return rc; + + ctx->dfs_root_ses = mnt_ctx->ses; + /* + * If called with 'nodfs' mount option, then skip DFS resolving. Otherwise unconditionally + * try to get an DFS referral (even cached) to determine whether it is an DFS mount. + * + * Skip prefix path to provide support for DFS referrals from w2k8 servers which don't seem + * to respond with PATH_NOT_COVERED to requests that include the prefix. + */ + if (!nodfs) { + rc = dfs_get_referral(mnt_ctx, ctx->UNC + 1, NULL, NULL); + if (rc) { + cifs_dbg(FYI, "%s: no dfs referral for %s: %d\n", + __func__, ctx->UNC + 1, rc); + cifs_dbg(FYI, "%s: assuming non-dfs mount...\n", __func__); + nodfs = true; + } + } + if (nodfs) { + rc = cifs_mount_get_tcon(mnt_ctx); + if (!rc) + rc = cifs_is_path_remote(mnt_ctx); + return rc; + } + + *isdfs = true; + add_root_smb_session(mnt_ctx); + return __dfs_mount_share(mnt_ctx); +} + +/* Update dfs referral path of superblock */ +static int update_server_fullpath(struct TCP_Server_Info *server, struct cifs_sb_info *cifs_sb, + const char *target) +{ + int rc = 0; + size_t len = strlen(target); + char *refpath, *npath; + + if (unlikely(len < 2 || *target != '\\')) + return -EINVAL; + + if (target[1] == '\\') { + len += 1; + refpath = kmalloc(len, GFP_KERNEL); + if (!refpath) + return -ENOMEM; + + scnprintf(refpath, len, "%s", target); + } else { + len += sizeof("\\"); + refpath = kmalloc(len, GFP_KERNEL); + if (!refpath) + return -ENOMEM; + + scnprintf(refpath, len, "\\%s", target); + } + + npath = dfs_cache_canonical_path(refpath, cifs_sb->local_nls, cifs_remap(cifs_sb)); + kfree(refpath); + + if (IS_ERR(npath)) { + rc = PTR_ERR(npath); + } else { + mutex_lock(&server->refpath_lock); + spin_lock(&server->srv_lock); + kfree(server->leaf_fullpath); + server->leaf_fullpath = npath; + spin_unlock(&server->srv_lock); + mutex_unlock(&server->refpath_lock); + } + return rc; +} + +static int target_share_matches_server(struct TCP_Server_Info *server, char *share, + bool *target_match) +{ + int rc = 0; + const char *dfs_host; + size_t dfs_host_len; + + *target_match = true; + extract_unc_hostname(share, &dfs_host, &dfs_host_len); + + /* Check if hostnames or addresses match */ + cifs_server_lock(server); + if (dfs_host_len != strlen(server->hostname) || + strncasecmp(dfs_host, server->hostname, dfs_host_len)) { + cifs_dbg(FYI, "%s: %.*s doesn't match %s\n", __func__, + (int)dfs_host_len, dfs_host, server->hostname); + rc = match_target_ip(server, dfs_host, dfs_host_len, target_match); + if (rc) + cifs_dbg(VFS, "%s: failed to match target ip: %d\n", __func__, rc); + } + cifs_server_unlock(server); + return rc; +} + +static void __tree_connect_ipc(const unsigned int xid, char *tree, + struct cifs_sb_info *cifs_sb, + struct cifs_ses *ses) +{ + struct TCP_Server_Info *server = ses->server; + struct cifs_tcon *tcon = ses->tcon_ipc; + int rc; + + spin_lock(&ses->ses_lock); + spin_lock(&ses->chan_lock); + if (cifs_chan_needs_reconnect(ses, server) || + ses->ses_status != SES_GOOD) { + spin_unlock(&ses->chan_lock); + spin_unlock(&ses->ses_lock); + cifs_server_dbg(FYI, "%s: skipping ipc reconnect due to disconnected ses\n", + __func__); + return; + } + spin_unlock(&ses->chan_lock); + spin_unlock(&ses->ses_lock); + + cifs_server_lock(server); + scnprintf(tree, MAX_TREE_SIZE, "\\\\%s\\IPC$", server->hostname); + cifs_server_unlock(server); + + rc = server->ops->tree_connect(xid, ses, tree, tcon, + cifs_sb->local_nls); + cifs_server_dbg(FYI, "%s: tree_reconnect %s: %d\n", __func__, tree, rc); + spin_lock(&tcon->tc_lock); + if (rc) { + tcon->status = TID_NEED_TCON; + } else { + tcon->status = TID_GOOD; + tcon->need_reconnect = false; + } + spin_unlock(&tcon->tc_lock); +} + +static void tree_connect_ipc(const unsigned int xid, char *tree, + struct cifs_sb_info *cifs_sb, + struct cifs_tcon *tcon) +{ + struct cifs_ses *ses = tcon->ses; + + __tree_connect_ipc(xid, tree, cifs_sb, ses); + __tree_connect_ipc(xid, tree, cifs_sb, CIFS_DFS_ROOT_SES(ses)); +} + +static int __tree_connect_dfs_target(const unsigned int xid, struct cifs_tcon *tcon, + struct cifs_sb_info *cifs_sb, char *tree, bool islink, + struct dfs_cache_tgt_list *tl) +{ + int rc; + struct TCP_Server_Info *server = tcon->ses->server; + const struct smb_version_operations *ops = server->ops; + struct cifs_ses *root_ses = CIFS_DFS_ROOT_SES(tcon->ses); + char *share = NULL, *prefix = NULL; + struct dfs_cache_tgt_iterator *tit; + bool target_match; + + tit = dfs_cache_get_tgt_iterator(tl); + if (!tit) { + rc = -ENOENT; + goto out; + } + + /* Try to tree connect to all dfs targets */ + for (; tit; tit = dfs_cache_get_next_tgt(tl, tit)) { + const char *target = dfs_cache_get_tgt_name(tit); + struct dfs_cache_tgt_list ntl = DFS_CACHE_TGT_LIST_INIT(ntl); + + kfree(share); + kfree(prefix); + share = prefix = NULL; + + /* Check if share matches with tcp ses */ + rc = dfs_cache_get_tgt_share(server->leaf_fullpath + 1, tit, &share, &prefix); + if (rc) { + cifs_dbg(VFS, "%s: failed to parse target share: %d\n", __func__, rc); + break; + } + + rc = target_share_matches_server(server, share, &target_match); + if (rc) + break; + if (!target_match) { + rc = -EHOSTUNREACH; + continue; + } + + dfs_cache_noreq_update_tgthint(server->leaf_fullpath + 1, tit); + tree_connect_ipc(xid, tree, cifs_sb, tcon); + + scnprintf(tree, MAX_TREE_SIZE, "\\%s", share); + if (!islink) { + rc = ops->tree_connect(xid, tcon->ses, tree, tcon, cifs_sb->local_nls); + break; + } + + /* + * If no dfs referrals were returned from link target, then just do a TREE_CONNECT + * to it. Otherwise, cache the dfs referral and then mark current tcp ses for + * reconnect so either the demultiplex thread or the echo worker will reconnect to + * newly resolved target. + */ + if (dfs_cache_find(xid, root_ses, cifs_sb->local_nls, cifs_remap(cifs_sb), target, + NULL, &ntl)) { + rc = ops->tree_connect(xid, tcon->ses, tree, tcon, cifs_sb->local_nls); + if (rc) + continue; + + rc = cifs_update_super_prepath(cifs_sb, prefix); + } else { + /* Target is another dfs share */ + rc = update_server_fullpath(server, cifs_sb, target); + dfs_cache_free_tgts(tl); + + if (!rc) { + rc = -EREMOTE; + list_replace_init(&ntl.tl_list, &tl->tl_list); + } else + dfs_cache_free_tgts(&ntl); + } + break; + } + +out: + kfree(share); + kfree(prefix); + + return rc; +} + +static int tree_connect_dfs_target(const unsigned int xid, struct cifs_tcon *tcon, + struct cifs_sb_info *cifs_sb, char *tree, bool islink, + struct dfs_cache_tgt_list *tl) +{ + int rc; + int num_links = 0; + struct TCP_Server_Info *server = tcon->ses->server; + char *old_fullpath = server->leaf_fullpath; + + do { + rc = __tree_connect_dfs_target(xid, tcon, cifs_sb, tree, islink, tl); + if (!rc || rc != -EREMOTE) + break; + } while (rc = -ELOOP, ++num_links < MAX_NESTED_LINKS); + /* + * If we couldn't tree connect to any targets from last referral path, then + * retry it from newly resolved dfs referral. + */ + if (rc && server->leaf_fullpath != old_fullpath) + cifs_signal_cifsd_for_reconnect(server, true); + + dfs_cache_free_tgts(tl); + return rc; +} + +int cifs_tree_connect(const unsigned int xid, struct cifs_tcon *tcon, const struct nls_table *nlsc) +{ + int rc; + struct TCP_Server_Info *server = tcon->ses->server; + const struct smb_version_operations *ops = server->ops; + struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl); + struct cifs_sb_info *cifs_sb = NULL; + struct super_block *sb = NULL; + struct dfs_info3_param ref = {0}; + char *tree; + + /* only send once per connect */ + spin_lock(&tcon->tc_lock); + if (tcon->status == TID_GOOD) { + spin_unlock(&tcon->tc_lock); + return 0; + } + + if (tcon->status != TID_NEW && + tcon->status != TID_NEED_TCON) { + spin_unlock(&tcon->tc_lock); + return -EHOSTDOWN; + } + + tcon->status = TID_IN_TCON; + spin_unlock(&tcon->tc_lock); + + tree = kzalloc(MAX_TREE_SIZE, GFP_KERNEL); + if (!tree) { + rc = -ENOMEM; + goto out; + } + + if (tcon->ipc) { + cifs_server_lock(server); + scnprintf(tree, MAX_TREE_SIZE, "\\\\%s\\IPC$", server->hostname); + cifs_server_unlock(server); + rc = ops->tree_connect(xid, tcon->ses, tree, tcon, nlsc); + goto out; + } + + sb = cifs_get_dfs_tcon_super(tcon); + if (!IS_ERR(sb)) + cifs_sb = CIFS_SB(sb); + + /* + * Tree connect to last share in @tcon->tree_name whether dfs super or + * cached dfs referral was not found. + */ + if (!cifs_sb || !server->leaf_fullpath || + dfs_cache_noreq_find(server->leaf_fullpath + 1, &ref, &tl)) { + rc = ops->tree_connect(xid, tcon->ses, tcon->tree_name, tcon, + cifs_sb ? cifs_sb->local_nls : nlsc); + goto out; + } + + rc = tree_connect_dfs_target(xid, tcon, cifs_sb, tree, ref.server_type == DFS_TYPE_LINK, + &tl); + free_dfs_info_param(&ref); + +out: + kfree(tree); + cifs_put_tcp_super(sb); + + if (rc) { + spin_lock(&tcon->tc_lock); + if (tcon->status == TID_IN_TCON) + tcon->status = TID_NEED_TCON; + spin_unlock(&tcon->tc_lock); + } else { + spin_lock(&tcon->tc_lock); + if (tcon->status == TID_IN_TCON) + tcon->status = TID_GOOD; + spin_unlock(&tcon->tc_lock); + tcon->need_reconnect = false; + } + + return rc; +} diff --git a/fs/cifs/dfs.h b/fs/cifs/dfs.h new file mode 100644 index 0000000000000..98e9d2aca6a7a --- /dev/null +++ b/fs/cifs/dfs.h @@ -0,0 +1,85 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +/* + * Copyright (c) 2022 Paulo Alcantara + */ + +#ifndef _CIFS_DFS_H +#define _CIFS_DFS_H + +#include "cifsglob.h" +#include "fs_context.h" +#include "cifs_unicode.h" + +struct dfs_root_ses { + struct list_head list; + struct cifs_ses *ses; +}; + +int dfs_parse_target_referral(const char *full_path, const struct dfs_info3_param *ref, + struct smb3_fs_context *ctx); +int dfs_mount_share(struct cifs_mount_ctx *mnt_ctx, bool *isdfs); + +static inline char *dfs_get_path(struct cifs_sb_info *cifs_sb, const char *path) +{ + return dfs_cache_canonical_path(path, cifs_sb->local_nls, cifs_remap(cifs_sb)); +} + +static inline int dfs_get_referral(struct cifs_mount_ctx *mnt_ctx, const char *path, + struct dfs_info3_param *ref, struct dfs_cache_tgt_list *tl) +{ + struct smb3_fs_context *ctx = mnt_ctx->fs_ctx; + struct cifs_sb_info *cifs_sb = mnt_ctx->cifs_sb; + + return dfs_cache_find(mnt_ctx->xid, ctx->dfs_root_ses, cifs_sb->local_nls, + cifs_remap(cifs_sb), path, ref, tl); +} + +/* Return DFS full path out of a dentry set for automount */ +static inline char *dfs_get_automount_devname(struct dentry *dentry, void *page) +{ + struct cifs_sb_info *cifs_sb = CIFS_SB(dentry->d_sb); + struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb); + size_t len; + char *s; + + spin_lock(&tcon->tc_lock); + if (unlikely(!tcon->origin_fullpath)) { + spin_unlock(&tcon->tc_lock); + return ERR_PTR(-EREMOTE); + } + spin_unlock(&tcon->tc_lock); + + s = dentry_path_raw(dentry, page, PATH_MAX); + if (IS_ERR(s)) + return s; + /* for root, we want "" */ + if (!s[1]) + s++; + + spin_lock(&tcon->tc_lock); + len = strlen(tcon->origin_fullpath); + if (s < (char *)page + len) { + spin_unlock(&tcon->tc_lock); + return ERR_PTR(-ENAMETOOLONG); + } + + s -= len; + memcpy(s, tcon->origin_fullpath, len); + spin_unlock(&tcon->tc_lock); + convert_delimiter(s, '/'); + + return s; +} + +static inline void dfs_put_root_smb_sessions(struct list_head *head) +{ + struct dfs_root_ses *root, *tmp; + + list_for_each_entry_safe(root, tmp, head, list) { + list_del_init(&root->list); + cifs_put_smb_ses(root->ses); + kfree(root); + } +} + +#endif /* _CIFS_DFS_H */ diff --git a/fs/cifs/dfs_cache.c b/fs/cifs/dfs_cache.c index 1864bdadf3ddd..33adf43a01f1d 100644 --- a/fs/cifs/dfs_cache.c +++ b/fs/cifs/dfs_cache.c @@ -20,12 +20,14 @@ #include "cifs_unicode.h" #include "smb2glob.h" #include "dns_resolve.h" +#include "dfs.h" #include "dfs_cache.h" -#define CACHE_HTABLE_SIZE 32 -#define CACHE_MAX_ENTRIES 64 -#define CACHE_MIN_TTL 120 /* 2 minutes */ +#define CACHE_HTABLE_SIZE 32 +#define CACHE_MAX_ENTRIES 64 +#define CACHE_MIN_TTL 120 /* 2 minutes */ +#define CACHE_DEFAULT_TTL 300 /* 5 minutes */ #define IS_DFS_INTERLINK(v) (((v) & DFSREF_REFERRAL_SERVER) && !((v) & DFSREF_STORAGE_SERVER)) @@ -49,22 +51,10 @@ struct cache_entry { struct cache_dfs_tgt *tgthint; }; -/* List of referral server sessions per dfs mount */ -struct mount_group { - struct list_head list; - uuid_t id; - struct cifs_ses *sessions[CACHE_MAX_ENTRIES]; - int num_sessions; - spinlock_t lock; - struct list_head refresh_list; - struct kref refcount; -}; - static struct kmem_cache *cache_slab __read_mostly; -static struct workqueue_struct *dfscache_wq __read_mostly; +struct workqueue_struct *dfscache_wq; -static int cache_ttl; -static DEFINE_SPINLOCK(cache_ttl_lock); +atomic_t dfs_cache_ttl; static struct nls_table *cache_cp; @@ -76,106 +66,6 @@ static atomic_t cache_count; static struct hlist_head cache_htable[CACHE_HTABLE_SIZE]; static DECLARE_RWSEM(htable_rw_lock); -static LIST_HEAD(mount_group_list); -static DEFINE_MUTEX(mount_group_list_lock); - -static void refresh_cache_worker(struct work_struct *work); - -static DECLARE_DELAYED_WORK(refresh_task, refresh_cache_worker); - -static void get_ipc_unc(const char *ref_path, char *ipc, size_t ipclen) -{ - const char *host; - size_t len; - - extract_unc_hostname(ref_path, &host, &len); - scnprintf(ipc, ipclen, "\\\\%.*s\\IPC$", (int)len, host); -} - -static struct cifs_ses *find_ipc_from_server_path(struct cifs_ses **ses, const char *path) -{ - char unc[SERVER_NAME_LENGTH + sizeof("//x/IPC$")] = {0}; - - get_ipc_unc(path, unc, sizeof(unc)); - for (; *ses; ses++) { - if (!strcasecmp(unc, (*ses)->tcon_ipc->treeName)) - return *ses; - } - return ERR_PTR(-ENOENT); -} - -static void __mount_group_release(struct mount_group *mg) -{ - int i; - - for (i = 0; i < mg->num_sessions; i++) - cifs_put_smb_ses(mg->sessions[i]); - kfree(mg); -} - -static void mount_group_release(struct kref *kref) -{ - struct mount_group *mg = container_of(kref, struct mount_group, refcount); - - mutex_lock(&mount_group_list_lock); - list_del(&mg->list); - mutex_unlock(&mount_group_list_lock); - __mount_group_release(mg); -} - -static struct mount_group *find_mount_group_locked(const uuid_t *id) -{ - struct mount_group *mg; - - list_for_each_entry(mg, &mount_group_list, list) { - if (uuid_equal(&mg->id, id)) - return mg; - } - return ERR_PTR(-ENOENT); -} - -static struct mount_group *__get_mount_group_locked(const uuid_t *id) -{ - struct mount_group *mg; - - mg = find_mount_group_locked(id); - if (!IS_ERR(mg)) - return mg; - - mg = kmalloc(sizeof(*mg), GFP_KERNEL); - if (!mg) - return ERR_PTR(-ENOMEM); - kref_init(&mg->refcount); - uuid_copy(&mg->id, id); - mg->num_sessions = 0; - spin_lock_init(&mg->lock); - list_add(&mg->list, &mount_group_list); - return mg; -} - -static struct mount_group *get_mount_group(const uuid_t *id) -{ - struct mount_group *mg; - - mutex_lock(&mount_group_list_lock); - mg = __get_mount_group_locked(id); - if (!IS_ERR(mg)) - kref_get(&mg->refcount); - mutex_unlock(&mount_group_list_lock); - - return mg; -} - -static void free_mount_group_list(void) -{ - struct mount_group *mg, *tmp_mg; - - list_for_each_entry_safe(mg, tmp_mg, &mount_group_list, list) { - list_del_init(&mg->list); - __mount_group_release(mg); - } -} - /** * dfs_cache_canonical_path - get a canonical DFS path * @@ -283,14 +173,14 @@ static int dfscache_proc_show(struct seq_file *m, void *v) seq_printf(m, "cache entry: path=%s,type=%s,ttl=%d,etime=%ld,hdr_flags=0x%x,ref_flags=0x%x,interlink=%s,path_consumed=%d,expired=%s\n", ce->path, ce->srvtype == DFS_TYPE_ROOT ? "root" : "link", - ce->ttl, ce->etime.tv_nsec, ce->ref_flags, ce->hdr_flags, + ce->ttl, ce->etime.tv_nsec, ce->hdr_flags, ce->ref_flags, IS_DFS_INTERLINK(ce->hdr_flags) ? "yes" : "no", ce->path_consumed, cache_entry_expired(ce) ? "yes" : "no"); list_for_each_entry(t, &ce->tlist, list) { seq_printf(m, " %s%s\n", t->name, - ce->tgthint == t ? " (target hint)" : ""); + READ_ONCE(ce->tgthint) == t ? " (target hint)" : ""); } } } @@ -342,7 +232,7 @@ static inline void dump_tgts(const struct cache_entry *ce) cifs_dbg(FYI, "target list:\n"); list_for_each_entry(t, &ce->tlist, list) { cifs_dbg(FYI, " %s%s\n", t->name, - ce->tgthint == t ? " (target hint)" : ""); + READ_ONCE(ce->tgthint) == t ? " (target hint)" : ""); } } @@ -397,7 +287,9 @@ int dfs_cache_init(void) int rc; int i; - dfscache_wq = alloc_workqueue("cifs-dfscache", WQ_FREEZABLE | WQ_UNBOUND, 1); + dfscache_wq = alloc_workqueue("cifs-dfscache", + WQ_UNBOUND|WQ_FREEZABLE|WQ_MEM_RECLAIM, + 0); if (!dfscache_wq) return -ENOMEM; @@ -413,6 +305,7 @@ int dfs_cache_init(void) INIT_HLIST_HEAD(&cache_htable[i]); atomic_set(&cache_count, 0); + atomic_set(&dfs_cache_ttl, CACHE_DEFAULT_TTL); cache_cp = load_nls("utf8"); if (!cache_cp) cache_cp = load_nls_default(); @@ -448,7 +341,7 @@ static int cache_entry_hash(const void *data, int size, unsigned int *hash) /* Return target hint of a DFS cache entry */ static inline char *get_tgt_name(const struct cache_entry *ce) { - struct cache_dfs_tgt *t = ce->tgthint; + struct cache_dfs_tgt *t = READ_ONCE(ce->tgthint); return t ? t->name : ERR_PTR(-ENOENT); } @@ -491,6 +384,7 @@ static struct cache_dfs_tgt *alloc_target(const char *name, int path_consumed) static int copy_ref_data(const struct dfs_info3_param *refs, int numrefs, struct cache_entry *ce, const char *tgthint) { + struct cache_dfs_tgt *target; int i; ce->ttl = max_t(int, refs[0].ttl, CACHE_MIN_TTL); @@ -517,8 +411,9 @@ static int copy_ref_data(const struct dfs_info3_param *refs, int numrefs, ce->numtgts++; } - ce->tgthint = list_first_entry_or_null(&ce->tlist, - struct cache_dfs_tgt, list); + target = list_first_entry_or_null(&ce->tlist, struct cache_dfs_tgt, + list); + WRITE_ONCE(ce->tgthint, target); return 0; } @@ -579,11 +474,13 @@ static void remove_oldest_entry_locked(void) } /* Add a new DFS cache entry */ -static int add_cache_entry_locked(struct dfs_info3_param *refs, int numrefs) +static struct cache_entry *add_cache_entry_locked(struct dfs_info3_param *refs, + int numrefs) { int rc; struct cache_entry *ce; unsigned int hash; + int ttl; WARN_ON(!rwsem_is_locked(&htable_rw_lock)); @@ -594,28 +491,21 @@ static int add_cache_entry_locked(struct dfs_info3_param *refs, int numrefs) rc = cache_entry_hash(refs[0].path_name, strlen(refs[0].path_name), &hash); if (rc) - return rc; + return ERR_PTR(rc); ce = alloc_cache_entry(refs, numrefs); if (IS_ERR(ce)) - return PTR_ERR(ce); + return ce; - spin_lock(&cache_ttl_lock); - if (!cache_ttl) { - cache_ttl = ce->ttl; - queue_delayed_work(dfscache_wq, &refresh_task, cache_ttl * HZ); - } else { - cache_ttl = min_t(int, cache_ttl, ce->ttl); - mod_delayed_work(dfscache_wq, &refresh_task, cache_ttl * HZ); - } - spin_unlock(&cache_ttl_lock); + ttl = min_t(int, atomic_read(&dfs_cache_ttl), ce->ttl); + atomic_set(&dfs_cache_ttl, ttl); hlist_add_head(&ce->hlist, &cache_htable[hash]); dump_ce(ce); atomic_inc(&cache_count); - return 0; + return ce; } /* Check if two DFS paths are equal. @s1 and @s2 are expected to be in @cache_cp's charset */ @@ -654,7 +544,7 @@ static struct cache_entry *__lookup_cache_entry(const char *path, unsigned int h return ce; } } - return ERR_PTR(-EEXIST); + return ERR_PTR(-ENOENT); } /* @@ -662,7 +552,9 @@ static struct cache_entry *__lookup_cache_entry(const char *path, unsigned int h * * Use whole path components in the match. Must be called with htable_rw_lock held. * - * Return ERR_PTR(-EEXIST) if the entry is not found. + * Return cached entry if successful. + * Return ERR_PTR(-ENOENT) if the entry is not found. + * Return error ptr otherwise. */ static struct cache_entry *lookup_cache_entry(const char *path) { @@ -710,7 +602,7 @@ static struct cache_entry *lookup_cache_entry(const char *path) while (e > s && *e != sep) e--; } - return ERR_PTR(-EEXIST); + return ERR_PTR(-ENOENT); } /** @@ -718,9 +610,7 @@ static struct cache_entry *lookup_cache_entry(const char *path) */ void dfs_cache_destroy(void) { - cancel_delayed_work_sync(&refresh_task); unload_nls(cache_cp); - free_mount_group_list(); flush_cache_ents(); kmem_cache_destroy(cache_slab); destroy_workqueue(dfscache_wq); @@ -732,14 +622,15 @@ void dfs_cache_destroy(void) static int update_cache_entry_locked(struct cache_entry *ce, const struct dfs_info3_param *refs, int numrefs) { + struct cache_dfs_tgt *target; + char *th = NULL; int rc; - char *s, *th = NULL; WARN_ON(!rwsem_is_locked(&htable_rw_lock)); - if (ce->tgthint) { - s = ce->tgthint->name; - th = kstrdup(s, GFP_ATOMIC); + target = READ_ONCE(ce->tgthint); + if (target) { + th = kstrdup(target->name, GFP_ATOMIC); if (!th) return -ENOMEM; } @@ -760,8 +651,6 @@ static int get_dfs_referral(const unsigned int xid, struct cifs_ses *ses, const int rc; int i; - cifs_dbg(FYI, "%s: get an DFS referral for %s\n", __func__, path); - *refs = NULL; *numrefs = 0; @@ -770,6 +659,7 @@ static int get_dfs_referral(const unsigned int xid, struct cifs_ses *ses, const if (unlikely(!cache_cp)) return -EINVAL; + cifs_dbg(FYI, "%s: ipc=%s referral=%s\n", __func__, ses->tcon_ipc->tree_name, path); rc = ses->server->ops->get_dfs_refer(xid, ses, path, refs, numrefs, cache_cp, NO_MAP_UNI_RSVD); if (!rc) { @@ -789,8 +679,13 @@ static int get_dfs_referral(const unsigned int xid, struct cifs_ses *ses, const * * For interlinks, cifs_mount() and expand_dfs_referral() are supposed to * handle them properly. + * + * On success, return entry with acquired lock for reading, otherwise error ptr. */ -static int cache_refresh_path(const unsigned int xid, struct cifs_ses *ses, const char *path) +static struct cache_entry *cache_refresh_path(const unsigned int xid, + struct cifs_ses *ses, + const char *path, + bool force_refresh) { struct dfs_info3_param *refs = NULL; struct cache_entry *ce; @@ -802,10 +697,14 @@ static int cache_refresh_path(const unsigned int xid, struct cifs_ses *ses, cons down_read(&htable_rw_lock); ce = lookup_cache_entry(path); - if (!IS_ERR(ce) && !cache_entry_expired(ce)) { + if (!IS_ERR(ce)) { + if (!force_refresh && !cache_entry_expired(ce)) + return ce; + } else if (PTR_ERR(ce) != -ENOENT) { up_read(&htable_rw_lock); - return 0; + return ce; } + /* * Unlock shared access as we don't want to hold any locks while getting * a new referral. The @ses used for performing the I/O could be @@ -815,12 +714,15 @@ static int cache_refresh_path(const unsigned int xid, struct cifs_ses *ses, cons up_read(&htable_rw_lock); /* - * Either the entry was not found, or it is expired. + * Either the entry was not found, or it is expired, or it is a forced + * refresh. * Request a new DFS referral in order to create or update a cache entry. */ rc = get_dfs_referral(xid, ses, path, &refs, &numrefs); - if (rc) + if (rc) { + ce = ERR_PTR(rc); goto out; + } dump_refs(refs, numrefs); @@ -828,16 +730,24 @@ static int cache_refresh_path(const unsigned int xid, struct cifs_ses *ses, cons /* Re-check as another task might have it added or refreshed already */ ce = lookup_cache_entry(path); if (!IS_ERR(ce)) { - if (cache_entry_expired(ce)) + if (force_refresh || cache_entry_expired(ce)) { rc = update_cache_entry_locked(ce, refs, numrefs); - } else { - rc = add_cache_entry_locked(refs, numrefs); + if (rc) + ce = ERR_PTR(rc); + } + } else if (PTR_ERR(ce) == -ENOENT) { + ce = add_cache_entry_locked(refs, numrefs); } - up_write(&htable_rw_lock); + if (IS_ERR(ce)) { + up_write(&htable_rw_lock); + goto out; + } + + downgrade_write(&htable_rw_lock); out: free_dfs_info_array(refs, numrefs); - return rc; + return ce; } /* @@ -904,7 +814,7 @@ static int get_targets(struct cache_entry *ce, struct dfs_cache_tgt_list *tl) } it->it_path_consumed = t->path_consumed; - if (ce->tgthint == t) + if (READ_ONCE(ce->tgthint) == t) list_add(&it->it_list, head); else list_add_tail(&it->it_list, head); @@ -957,15 +867,8 @@ int dfs_cache_find(const unsigned int xid, struct cifs_ses *ses, const struct nl if (IS_ERR(npath)) return PTR_ERR(npath); - rc = cache_refresh_path(xid, ses, npath); - if (rc) - goto out_free_path; - - down_read(&htable_rw_lock); - - ce = lookup_cache_entry(npath); + ce = cache_refresh_path(xid, ses, npath, false); if (IS_ERR(ce)) { - up_read(&htable_rw_lock); rc = PTR_ERR(ce); goto out_free_path; } @@ -1028,72 +931,6 @@ int dfs_cache_noreq_find(const char *path, struct dfs_info3_param *ref, return rc; } -/** - * dfs_cache_update_tgthint - update target hint of a DFS cache entry - * - * If it doesn't find the cache entry, then it will get a DFS referral for @path - * and create a new entry. - * - * In case the cache entry exists but expired, it will get a DFS referral - * for @path and then update the respective cache entry. - * - * @xid: syscall id - * @ses: smb session - * @cp: codepage - * @remap: type of character remapping for paths - * @path: path to lookup in DFS referral cache - * @it: DFS target iterator - * - * Return zero if the target hint was updated successfully, otherwise non-zero. - */ -int dfs_cache_update_tgthint(const unsigned int xid, struct cifs_ses *ses, - const struct nls_table *cp, int remap, const char *path, - const struct dfs_cache_tgt_iterator *it) -{ - struct cache_dfs_tgt *t; - struct cache_entry *ce; - const char *npath; - int rc = 0; - - npath = dfs_cache_canonical_path(path, cp, remap); - if (IS_ERR(npath)) - return PTR_ERR(npath); - - cifs_dbg(FYI, "%s: update target hint - path: %s\n", __func__, npath); - - rc = cache_refresh_path(xid, ses, npath); - if (rc) - goto out_free_path; - - down_write(&htable_rw_lock); - - ce = lookup_cache_entry(npath); - if (IS_ERR(ce)) { - rc = PTR_ERR(ce); - goto out_unlock; - } - - t = ce->tgthint; - - if (likely(!strcasecmp(it->it_name, t->name))) - goto out_unlock; - - list_for_each_entry(t, &ce->tlist, list) { - if (!strcasecmp(t->name, it->it_name)) { - ce->tgthint = t; - cifs_dbg(FYI, "%s: new target hint: %s\n", __func__, - it->it_name); - break; - } - } - -out_unlock: - up_write(&htable_rw_lock); -out_free_path: - kfree(npath); - return rc; -} - /** * dfs_cache_noreq_update_tgthint - update target hint of a DFS cache entry * without sending any requests to the currently connected server. @@ -1108,34 +945,30 @@ int dfs_cache_update_tgthint(const unsigned int xid, struct cifs_ses *ses, * * Return zero if the target hint was updated successfully, otherwise non-zero. */ -int dfs_cache_noreq_update_tgthint(const char *path, const struct dfs_cache_tgt_iterator *it) +void dfs_cache_noreq_update_tgthint(const char *path, const struct dfs_cache_tgt_iterator *it) { - int rc; - struct cache_entry *ce; struct cache_dfs_tgt *t; + struct cache_entry *ce; - if (!it) - return -EINVAL; + if (!path || !it) + return; cifs_dbg(FYI, "%s: path: %s\n", __func__, path); - down_write(&htable_rw_lock); + down_read(&htable_rw_lock); ce = lookup_cache_entry(path); - if (IS_ERR(ce)) { - rc = PTR_ERR(ce); + if (IS_ERR(ce)) goto out_unlock; - } - rc = 0; - t = ce->tgthint; + t = READ_ONCE(ce->tgthint); if (unlikely(!strcasecmp(it->it_name, t->name))) goto out_unlock; list_for_each_entry(t, &ce->tlist, list) { if (!strcasecmp(t->name, it->it_name)) { - ce->tgthint = t; + WRITE_ONCE(ce->tgthint, t); cifs_dbg(FYI, "%s: new target hint: %s\n", __func__, it->it_name); break; @@ -1143,8 +976,7 @@ int dfs_cache_noreq_update_tgthint(const char *path, const struct dfs_cache_tgt_ } out_unlock: - up_write(&htable_rw_lock); - return rc; + up_read(&htable_rw_lock); } /** @@ -1185,52 +1017,28 @@ int dfs_cache_get_tgt_referral(const char *path, const struct dfs_cache_tgt_iter return rc; } -/** - * dfs_cache_add_refsrv_session - add SMB session of referral server - * - * @mount_id: mount group uuid to lookup. - * @ses: reference counted SMB session of referral server. - */ -void dfs_cache_add_refsrv_session(const uuid_t *mount_id, struct cifs_ses *ses) +/* Extract share from DFS target and return a pointer to prefix path or NULL */ +static const char *parse_target_share(const char *target, char **share) { - struct mount_group *mg; - - if (WARN_ON_ONCE(!mount_id || uuid_is_null(mount_id) || !ses)) - return; - - mg = get_mount_group(mount_id); - if (WARN_ON_ONCE(IS_ERR(mg))) - return; + const char *s, *seps = "/\\"; + size_t len; - spin_lock(&mg->lock); - if (mg->num_sessions < ARRAY_SIZE(mg->sessions)) - mg->sessions[mg->num_sessions++] = ses; - spin_unlock(&mg->lock); - kref_put(&mg->refcount, mount_group_release); -} + s = strpbrk(target + 1, seps); + if (!s) + return ERR_PTR(-EINVAL); -/** - * dfs_cache_put_refsrv_sessions - put all referral server sessions - * - * Put all SMB sessions from the given mount group id. - * - * @mount_id: mount group uuid to lookup. - */ -void dfs_cache_put_refsrv_sessions(const uuid_t *mount_id) -{ - struct mount_group *mg; + len = strcspn(s + 1, seps); + if (!len) + return ERR_PTR(-EINVAL); + s += len; - if (!mount_id || uuid_is_null(mount_id)) - return; + len = s - target + 1; + *share = kstrndup(target, len, GFP_KERNEL); + if (!*share) + return ERR_PTR(-ENOMEM); - mutex_lock(&mount_group_list_lock); - mg = find_mount_group_locked(mount_id); - if (IS_ERR(mg)) { - mutex_unlock(&mount_group_list_lock); - return; - } - mutex_unlock(&mount_group_list_lock); - kref_put(&mg->refcount, mount_group_release); + s = target + len; + return s + strspn(s, seps); } /** @@ -1246,56 +1054,46 @@ void dfs_cache_put_refsrv_sessions(const uuid_t *mount_id) int dfs_cache_get_tgt_share(char *path, const struct dfs_cache_tgt_iterator *it, char **share, char **prefix) { - char *s, sep, *p; - size_t len; - size_t plen1, plen2; + char sep; + char *target_share; + char *ppath = NULL; + const char *target_ppath, *dfsref_ppath; + size_t target_pplen, dfsref_pplen; + size_t len, c; if (!it || !path || !share || !prefix || strlen(path) < it->it_path_consumed) return -EINVAL; - *share = NULL; - *prefix = NULL; - sep = it->it_name[0]; if (sep != '\\' && sep != '/') return -EINVAL; - s = strchr(it->it_name + 1, sep); - if (!s) - return -EINVAL; + target_ppath = parse_target_share(it->it_name, &target_share); + if (IS_ERR(target_ppath)) + return PTR_ERR(target_ppath); - /* point to prefix in target node */ - s = strchrnul(s + 1, sep); + /* point to prefix in DFS referral path */ + dfsref_ppath = path + it->it_path_consumed; + dfsref_ppath += strspn(dfsref_ppath, "/\\"); - /* extract target share */ - *share = kstrndup(it->it_name, s - it->it_name, GFP_KERNEL); - if (!*share) - return -ENOMEM; + target_pplen = strlen(target_ppath); + dfsref_pplen = strlen(dfsref_ppath); - /* skip separator */ - if (*s) - s++; - /* point to prefix in DFS path */ - p = path + it->it_path_consumed; - if (*p == sep) - p++; - - /* merge prefix paths from DFS path and target node */ - plen1 = it->it_name + strlen(it->it_name) - s; - plen2 = path + strlen(path) - p; - if (plen1 || plen2) { - len = plen1 + plen2 + 2; - *prefix = kmalloc(len, GFP_KERNEL); - if (!*prefix) { - kfree(*share); - *share = NULL; + /* merge prefix paths from DFS referral path and target node */ + if (target_pplen || dfsref_pplen) { + len = target_pplen + dfsref_pplen + 2; + ppath = kzalloc(len, GFP_KERNEL); + if (!ppath) { + kfree(target_share); return -ENOMEM; } - if (plen1) - scnprintf(*prefix, len, "%.*s%c%.*s", (int)plen1, s, sep, (int)plen2, p); - else - strscpy(*prefix, p, len); + c = strscpy(ppath, target_ppath, len); + if (c && dfsref_pplen) + ppath[c] = sep; + strlcat(ppath, dfsref_ppath, len); } + *share = target_share; + *prefix = ppath; return 0; } @@ -1304,8 +1102,7 @@ static bool target_share_equal(struct TCP_Server_Info *server, const char *s1, c char unc[sizeof("\\\\") + SERVER_NAME_LENGTH] = {0}; const char *host; size_t hostlen; - char *ip = NULL; - struct sockaddr sa; + struct sockaddr_storage ss; bool match; int rc; @@ -1316,27 +1113,20 @@ static bool target_share_equal(struct TCP_Server_Info *server, const char *s1, c * Resolve share's hostname and check if server address matches. Otherwise just ignore it * as we could not have upcall to resolve hostname or failed to convert ip address. */ - match = true; extract_unc_hostname(s1, &host, &hostlen); scnprintf(unc, sizeof(unc), "\\\\%.*s", (int)hostlen, host); - rc = dns_resolve_server_name_to_ip(unc, &ip, NULL); + rc = dns_resolve_server_name_to_ip(unc, (struct sockaddr *)&ss, NULL); if (rc < 0) { cifs_dbg(FYI, "%s: could not resolve %.*s. assuming server address matches.\n", __func__, (int)hostlen, host); return true; } - if (!cifs_convert_address(&sa, ip, strlen(ip))) { - cifs_dbg(VFS, "%s: failed to convert address \'%s\'. skip address matching.\n", - __func__, ip); - } else { - mutex_lock(&server->srv_mutex); - match = cifs_match_ipaddr((struct sockaddr *)&server->dstaddr, &sa); - mutex_unlock(&server->srv_mutex); - } + cifs_server_lock(server); + match = cifs_match_ipaddr((struct sockaddr *)&server->dstaddr, (struct sockaddr *)&ss); + cifs_server_unlock(server); - kfree(ip); return match; } @@ -1344,55 +1134,65 @@ static bool target_share_equal(struct TCP_Server_Info *server, const char *s1, c * Mark dfs tcon for reconnecting when the currently connected tcon does not match any of the new * target shares in @refs. */ -static void mark_for_reconnect_if_needed(struct cifs_tcon *tcon, struct dfs_cache_tgt_list *tl, - const struct dfs_info3_param *refs, int numrefs) +static void mark_for_reconnect_if_needed(struct TCP_Server_Info *server, + const char *path, + struct dfs_cache_tgt_list *old_tl, + struct dfs_cache_tgt_list *new_tl) { - struct dfs_cache_tgt_iterator *it; - int i; - - for (it = dfs_cache_get_tgt_iterator(tl); it; it = dfs_cache_get_next_tgt(tl, it)) { - for (i = 0; i < numrefs; i++) { - if (target_share_equal(tcon->ses->server, dfs_cache_get_tgt_name(it), - refs[i].node_name)) + struct dfs_cache_tgt_iterator *oit, *nit; + + for (oit = dfs_cache_get_tgt_iterator(old_tl); oit; + oit = dfs_cache_get_next_tgt(old_tl, oit)) { + for (nit = dfs_cache_get_tgt_iterator(new_tl); nit; + nit = dfs_cache_get_next_tgt(new_tl, nit)) { + if (target_share_equal(server, + dfs_cache_get_tgt_name(oit), + dfs_cache_get_tgt_name(nit))) { + dfs_cache_noreq_update_tgthint(path, nit); return; + } } } cifs_dbg(FYI, "%s: no cached or matched targets. mark dfs share for reconnect.\n", __func__); - for (i = 0; i < tcon->ses->chan_count; i++) { - spin_lock(&GlobalMid_Lock); - if (tcon->ses->chans[i].server->tcpStatus != CifsExiting) - tcon->ses->chans[i].server->tcpStatus = CifsNeedReconnect; - spin_unlock(&GlobalMid_Lock); - } + cifs_signal_cifsd_for_reconnect(server, true); +} + +static bool is_ses_good(struct cifs_ses *ses) +{ + struct TCP_Server_Info *server = ses->server; + struct cifs_tcon *tcon = ses->tcon_ipc; + bool ret; + + spin_lock(&ses->ses_lock); + spin_lock(&ses->chan_lock); + ret = !cifs_chan_needs_reconnect(ses, server) && + ses->ses_status == SES_GOOD && + !tcon->need_reconnect; + spin_unlock(&ses->chan_lock); + spin_unlock(&ses->ses_lock); + return ret; } /* Refresh dfs referral of tcon and mark it for reconnect if needed */ -static int __refresh_tcon(const char *path, struct cifs_ses **sessions, struct cifs_tcon *tcon, - bool force_refresh) +static int __refresh_tcon(const char *path, struct cifs_ses *ses, bool force_refresh) { - struct cifs_ses *ses; - struct cache_entry *ce; - struct dfs_info3_param *refs = NULL; - int numrefs = 0; + struct dfs_cache_tgt_list old_tl = DFS_CACHE_TGT_LIST_INIT(old_tl); + struct dfs_cache_tgt_list new_tl = DFS_CACHE_TGT_LIST_INIT(new_tl); + struct TCP_Server_Info *server = ses->server; bool needs_refresh = false; - struct dfs_cache_tgt_list tl = DFS_CACHE_TGT_LIST_INIT(tl); - int rc = 0; + struct cache_entry *ce; unsigned int xid; + int rc = 0; - ses = find_ipc_from_server_path(sessions, path); - if (IS_ERR(ses)) { - cifs_dbg(FYI, "%s: could not find ipc session\n", __func__); - return PTR_ERR(ses); - } + xid = get_xid(); down_read(&htable_rw_lock); ce = lookup_cache_entry(path); needs_refresh = force_refresh || IS_ERR(ce) || cache_entry_expired(ce); if (!IS_ERR(ce)) { - rc = get_targets(ce, &tl); - if (rc) - cifs_dbg(FYI, "%s: could not get dfs targets: %d\n", __func__, rc); + rc = get_targets(ce, &old_tl); + cifs_dbg(FYI, "%s: get_targets: %d\n", __func__, rc); } up_read(&htable_rw_lock); @@ -1401,42 +1201,37 @@ static int __refresh_tcon(const char *path, struct cifs_ses **sessions, struct c goto out; } - xid = get_xid(); - rc = get_dfs_referral(xid, ses, path, &refs, &numrefs); - free_xid(xid); - - /* Create or update a cache entry with the new referral */ - if (!rc) { - dump_refs(refs, numrefs); - - down_write(&htable_rw_lock); - ce = lookup_cache_entry(path); - if (IS_ERR(ce)) - add_cache_entry_locked(refs, numrefs); - else if (force_refresh || cache_entry_expired(ce)) - update_cache_entry_locked(ce, refs, numrefs); - up_write(&htable_rw_lock); + ses = CIFS_DFS_ROOT_SES(ses); + if (!is_ses_good(ses)) { + cifs_dbg(FYI, "%s: skip cache refresh due to disconnected ipc\n", + __func__); + goto out; + } - mark_for_reconnect_if_needed(tcon, &tl, refs, numrefs); + ce = cache_refresh_path(xid, ses, path, true); + if (!IS_ERR(ce)) { + rc = get_targets(ce, &new_tl); + up_read(&htable_rw_lock); + cifs_dbg(FYI, "%s: get_targets: %d\n", __func__, rc); + mark_for_reconnect_if_needed(server, path, &old_tl, &new_tl); } out: - dfs_cache_free_tgts(&tl); - free_dfs_info_array(refs, numrefs); + free_xid(xid); + dfs_cache_free_tgts(&old_tl); + dfs_cache_free_tgts(&new_tl); return rc; } -static int refresh_tcon(struct cifs_ses **sessions, struct cifs_tcon *tcon, bool force_refresh) +static int refresh_tcon(struct cifs_tcon *tcon, bool force_refresh) { struct TCP_Server_Info *server = tcon->ses->server; + struct cifs_ses *ses = tcon->ses; mutex_lock(&server->refpath_lock); - if (strcasecmp(server->leaf_fullpath, server->origin_fullpath)) - __refresh_tcon(server->leaf_fullpath + 1, sessions, tcon, force_refresh); + if (server->leaf_fullpath) + __refresh_tcon(server->leaf_fullpath + 1, ses, force_refresh); mutex_unlock(&server->refpath_lock); - - __refresh_tcon(server->origin_fullpath + 1, sessions, tcon, force_refresh); - return 0; } @@ -1453,40 +1248,19 @@ static int refresh_tcon(struct cifs_ses **sessions, struct cifs_tcon *tcon, bool int dfs_cache_remount_fs(struct cifs_sb_info *cifs_sb) { struct cifs_tcon *tcon; - struct TCP_Server_Info *server; - struct mount_group *mg; - struct cifs_ses *sessions[CACHE_MAX_ENTRIES + 1] = {NULL}; - int rc; if (!cifs_sb || !cifs_sb->master_tlink) return -EINVAL; tcon = cifs_sb_master_tcon(cifs_sb); - server = tcon->ses->server; - if (!server->origin_fullpath) { + spin_lock(&tcon->tc_lock); + if (!tcon->origin_fullpath) { + spin_unlock(&tcon->tc_lock); cifs_dbg(FYI, "%s: not a dfs mount\n", __func__); return 0; } - - if (uuid_is_null(&cifs_sb->dfs_mount_id)) { - cifs_dbg(FYI, "%s: no dfs mount group id\n", __func__); - return -EINVAL; - } - - mutex_lock(&mount_group_list_lock); - mg = find_mount_group_locked(&cifs_sb->dfs_mount_id); - if (IS_ERR(mg)) { - mutex_unlock(&mount_group_list_lock); - cifs_dbg(FYI, "%s: no ipc session for refreshing referral\n", __func__); - return PTR_ERR(mg); - } - kref_get(&mg->refcount); - mutex_unlock(&mount_group_list_lock); - - spin_lock(&mg->lock); - memcpy(&sessions, mg->sessions, mg->num_sessions * sizeof(mg->sessions[0])); - spin_unlock(&mg->lock); + spin_unlock(&tcon->tc_lock); /* * After reconnecting to a different server, unique ids won't match anymore, so we disable @@ -1498,173 +1272,36 @@ int dfs_cache_remount_fs(struct cifs_sb_info *cifs_sb) * that have different prefix paths. */ cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH; - rc = refresh_tcon(sessions, tcon, true); - kref_put(&mg->refcount, mount_group_release); - return rc; + return refresh_tcon(tcon, true); } -/* - * Refresh all active dfs mounts regardless of whether they are in cache or not. - * (cache can be cleared) - */ -static void refresh_mounts(struct cifs_ses **sessions) +/* Refresh all DFS referrals related to DFS tcon */ +void dfs_cache_refresh(struct work_struct *work) { struct TCP_Server_Info *server; + struct dfs_root_ses *rses; + struct cifs_tcon *tcon; struct cifs_ses *ses; - struct cifs_tcon *tcon, *ntcon; - struct list_head tcons; - - INIT_LIST_HEAD(&tcons); - - spin_lock(&cifs_tcp_ses_lock); - list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) { - if (!server->is_dfs_conn) - continue; - list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { - list_for_each_entry(tcon, &ses->tcon_list, tcon_list) { - if (!tcon->ipc && !tcon->need_reconnect) { - tcon->tc_count++; - list_add_tail(&tcon->ulist, &tcons); - } - } - } - } - spin_unlock(&cifs_tcp_ses_lock); + tcon = container_of(work, struct cifs_tcon, dfs_cache_work.work); + ses = tcon->ses; + server = ses->server; - list_for_each_entry_safe(tcon, ntcon, &tcons, ulist) { - struct TCP_Server_Info *server = tcon->ses->server; - - list_del_init(&tcon->ulist); + mutex_lock(&server->refpath_lock); + if (server->leaf_fullpath) + __refresh_tcon(server->leaf_fullpath + 1, ses, false); + mutex_unlock(&server->refpath_lock); + list_for_each_entry(rses, &tcon->dfs_ses_list, list) { + ses = rses->ses; + server = ses->server; mutex_lock(&server->refpath_lock); - if (strcasecmp(server->leaf_fullpath, server->origin_fullpath)) - __refresh_tcon(server->leaf_fullpath + 1, sessions, tcon, false); + if (server->leaf_fullpath) + __refresh_tcon(server->leaf_fullpath + 1, ses, false); mutex_unlock(&server->refpath_lock); - - __refresh_tcon(server->origin_fullpath + 1, sessions, tcon, false); - cifs_put_tcon(tcon); - } -} - -static void refresh_cache(struct cifs_ses **sessions) -{ - int i; - struct cifs_ses *ses; - unsigned int xid; - char *ref_paths[CACHE_MAX_ENTRIES]; - int count = 0; - struct cache_entry *ce; - - /* - * Refresh all cached entries. Get all new referrals outside critical section to avoid - * starvation while performing SMB2 IOCTL on broken or slow connections. - - * The cache entries may cover more paths than the active mounts - * (e.g. domain-based DFS referrals or multi tier DFS setups). - */ - down_read(&htable_rw_lock); - for (i = 0; i < CACHE_HTABLE_SIZE; i++) { - struct hlist_head *l = &cache_htable[i]; - - hlist_for_each_entry(ce, l, hlist) { - if (count == ARRAY_SIZE(ref_paths)) - goto out_unlock; - if (hlist_unhashed(&ce->hlist) || !cache_entry_expired(ce) || - IS_ERR(find_ipc_from_server_path(sessions, ce->path))) - continue; - ref_paths[count++] = kstrdup(ce->path, GFP_ATOMIC); - } - } - -out_unlock: - up_read(&htable_rw_lock); - - for (i = 0; i < count; i++) { - char *path = ref_paths[i]; - struct dfs_info3_param *refs = NULL; - int numrefs = 0; - int rc = 0; - - if (!path) - continue; - - ses = find_ipc_from_server_path(sessions, path); - if (IS_ERR(ses)) - goto next_referral; - - xid = get_xid(); - rc = get_dfs_referral(xid, ses, path, &refs, &numrefs); - free_xid(xid); - - if (!rc) { - down_write(&htable_rw_lock); - ce = lookup_cache_entry(path); - /* - * We need to re-check it because other tasks might have it deleted or - * updated. - */ - if (!IS_ERR(ce) && cache_entry_expired(ce)) - update_cache_entry_locked(ce, refs, numrefs); - up_write(&htable_rw_lock); - } - -next_referral: - kfree(path); - free_dfs_info_array(refs, numrefs); - } -} - -/* - * Worker that will refresh DFS cache and active mounts based on lowest TTL value from a DFS - * referral. - */ -static void refresh_cache_worker(struct work_struct *work) -{ - struct list_head mglist; - struct mount_group *mg, *tmp_mg; - struct cifs_ses *sessions[CACHE_MAX_ENTRIES + 1] = {NULL}; - int max_sessions = ARRAY_SIZE(sessions) - 1; - int i = 0, count; - - INIT_LIST_HEAD(&mglist); - - /* Get refereces of mount groups */ - mutex_lock(&mount_group_list_lock); - list_for_each_entry(mg, &mount_group_list, list) { - kref_get(&mg->refcount); - list_add(&mg->refresh_list, &mglist); - } - mutex_unlock(&mount_group_list_lock); - - /* Fill in local array with an NULL-terminated list of all referral server sessions */ - list_for_each_entry(mg, &mglist, refresh_list) { - if (i >= max_sessions) - break; - - spin_lock(&mg->lock); - if (i + mg->num_sessions > max_sessions) - count = max_sessions - i; - else - count = mg->num_sessions; - memcpy(&sessions[i], mg->sessions, count * sizeof(mg->sessions[0])); - spin_unlock(&mg->lock); - i += count; - } - - if (sessions[0]) { - /* Refresh all active mounts and cached entries */ - refresh_mounts(sessions); - refresh_cache(sessions); - } - - list_for_each_entry_safe(mg, tmp_mg, &mglist, refresh_list) { - list_del_init(&mg->refresh_list); - kref_put(&mg->refcount, mount_group_release); } - spin_lock(&cache_ttl_lock); - queue_delayed_work(dfscache_wq, &refresh_task, cache_ttl * HZ); - spin_unlock(&cache_ttl_lock); + queue_delayed_work(dfscache_wq, &tcon->dfs_cache_work, + atomic_read(&dfs_cache_ttl) * HZ); } diff --git a/fs/cifs/dfs_cache.h b/fs/cifs/dfs_cache.h index 52070d1df1897..c6d89cd6d4fd7 100644 --- a/fs/cifs/dfs_cache.h +++ b/fs/cifs/dfs_cache.h @@ -13,6 +13,9 @@ #include #include "cifsglob.h" +extern struct workqueue_struct *dfscache_wq; +extern atomic_t dfs_cache_ttl; + #define DFS_CACHE_TGT_LIST_INIT(var) { .tl_numtgts = 0, .tl_list = LIST_HEAD_INIT((var).tl_list), } struct dfs_cache_tgt_list { @@ -35,18 +38,14 @@ int dfs_cache_find(const unsigned int xid, struct cifs_ses *ses, const struct nl struct dfs_cache_tgt_list *tgt_list); int dfs_cache_noreq_find(const char *path, struct dfs_info3_param *ref, struct dfs_cache_tgt_list *tgt_list); -int dfs_cache_update_tgthint(const unsigned int xid, struct cifs_ses *ses, - const struct nls_table *cp, int remap, const char *path, - const struct dfs_cache_tgt_iterator *it); -int dfs_cache_noreq_update_tgthint(const char *path, const struct dfs_cache_tgt_iterator *it); +void dfs_cache_noreq_update_tgthint(const char *path, const struct dfs_cache_tgt_iterator *it); int dfs_cache_get_tgt_referral(const char *path, const struct dfs_cache_tgt_iterator *it, struct dfs_info3_param *ref); int dfs_cache_get_tgt_share(char *path, const struct dfs_cache_tgt_iterator *it, char **share, char **prefix); -void dfs_cache_put_refsrv_sessions(const uuid_t *mount_id); -void dfs_cache_add_refsrv_session(const uuid_t *mount_id, struct cifs_ses *ses); char *dfs_cache_canonical_path(const char *path, const struct nls_table *cp, int remap); int dfs_cache_remount_fs(struct cifs_sb_info *cifs_sb); +void dfs_cache_refresh(struct work_struct *work); static inline struct dfs_cache_tgt_iterator * dfs_cache_get_next_tgt(struct dfs_cache_tgt_list *tl, @@ -94,4 +93,9 @@ dfs_cache_get_nr_tgts(const struct dfs_cache_tgt_list *tl) return tl ? tl->tl_numtgts : 0; } +static inline int dfs_cache_get_ttl(void) +{ + return atomic_read(&dfs_cache_ttl); +} + #endif /* _CIFS_DFS_CACHE_H */ diff --git a/fs/cifs/dir.c b/fs/cifs/dir.c index 83c929dd6ed59..a8133ce67de4d 100644 --- a/fs/cifs/dir.c +++ b/fs/cifs/dir.c @@ -49,7 +49,7 @@ cifs_build_path_to_root(struct smb3_fs_context *ctx, struct cifs_sb_info *cifs_s } if (add_treename) - dfsplen = strnlen(tcon->treeName, MAX_TREE_SIZE + 1); + dfsplen = strnlen(tcon->tree_name, MAX_TREE_SIZE + 1); else dfsplen = 0; @@ -58,7 +58,7 @@ cifs_build_path_to_root(struct smb3_fs_context *ctx, struct cifs_sb_info *cifs_s return full_path; if (dfsplen) - memcpy(full_path, tcon->treeName, dfsplen); + memcpy(full_path, tcon->tree_name, dfsplen); full_path[dfsplen] = CIFS_DIR_SEP(cifs_sb); memcpy(full_path + dfsplen + 1, ctx->prepath, pplen); convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb)); @@ -77,14 +77,13 @@ build_path_from_dentry(struct dentry *direntry, void *page) prefix); } -char * -build_path_from_dentry_optional_prefix(struct dentry *direntry, void *page, - bool prefix) +char *__build_path_from_dentry_optional_prefix(struct dentry *direntry, void *page, + const char *tree, int tree_len, + bool prefix) { int dfsplen; int pplen = 0; struct cifs_sb_info *cifs_sb = CIFS_SB(direntry->d_sb); - struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb); char dirsep = CIFS_DIR_SEP(cifs_sb); char *s; @@ -92,7 +91,7 @@ build_path_from_dentry_optional_prefix(struct dentry *direntry, void *page, return ERR_PTR(-ENOMEM); if (prefix) - dfsplen = strnlen(tcon->treeName, MAX_TREE_SIZE + 1); + dfsplen = strnlen(tree, tree_len + 1); else dfsplen = 0; @@ -122,7 +121,7 @@ build_path_from_dentry_optional_prefix(struct dentry *direntry, void *page, } if (dfsplen) { s -= dfsplen; - memcpy(s, tcon->treeName, dfsplen); + memcpy(s, tree, dfsplen); if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS) { int i; for (i = 0; i < dfsplen; i++) { @@ -134,6 +133,16 @@ build_path_from_dentry_optional_prefix(struct dentry *direntry, void *page, return s; } +char *build_path_from_dentry_optional_prefix(struct dentry *direntry, void *page, + bool prefix) +{ + struct cifs_sb_info *cifs_sb = CIFS_SB(direntry->d_sb); + struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb); + + return __build_path_from_dentry_optional_prefix(direntry, page, tcon->tree_name, + MAX_TREE_SIZE, prefix); +} + /* * Don't allow path components longer than the server max. * Don't allow the separator character in a path component. @@ -164,10 +173,9 @@ check_name(struct dentry *direntry, struct cifs_tcon *tcon) /* Inode operations in similar order to how they appear in Linux file fs.h */ -static int -cifs_do_create(struct inode *inode, struct dentry *direntry, unsigned int xid, - struct tcon_link *tlink, unsigned oflags, umode_t mode, - __u32 *oplock, struct cifs_fid *fid) +static int cifs_do_create(struct inode *inode, struct dentry *direntry, unsigned int xid, + struct tcon_link *tlink, unsigned int oflags, umode_t mode, __u32 *oplock, + struct cifs_fid *fid, struct cifs_open_info_data *buf) { int rc = -ENOENT; int create_options = CREATE_NOT_DIR; @@ -176,7 +184,6 @@ cifs_do_create(struct inode *inode, struct dentry *direntry, unsigned int xid, struct cifs_tcon *tcon = tlink_tcon(tlink); const char *full_path; void *page = alloc_dentry_path(); - FILE_ALL_INFO *buf = NULL; struct inode *newinode = NULL; int disposition; struct TCP_Server_Info *server = tcon->ses->server; @@ -192,6 +199,7 @@ cifs_do_create(struct inode *inode, struct dentry *direntry, unsigned int xid, return PTR_ERR(full_path); } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY if (tcon->unix_ext && cap_unix(tcon->ses) && !tcon->broken_posix_open && (CIFS_UNIX_POSIX_PATH_OPS_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability))) { @@ -260,6 +268,7 @@ cifs_do_create(struct inode *inode, struct dentry *direntry, unsigned int xid, * rare for path not covered on files) */ } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ desired_access = 0; if (OPEN_FMODE(oflags) & FMODE_READ) @@ -287,12 +296,6 @@ cifs_do_create(struct inode *inode, struct dentry *direntry, unsigned int xid, goto out; } - buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL); - if (buf == NULL) { - rc = -ENOMEM; - goto out; - } - /* * if we're not using unix extensions, see if we need to set * ATTR_READONLY on the create call @@ -300,21 +303,23 @@ cifs_do_create(struct inode *inode, struct dentry *direntry, unsigned int xid, if (!tcon->unix_ext && (mode & S_IWUGO) == 0) create_options |= CREATE_OPTION_READONLY; - oparms.tcon = tcon; - oparms.cifs_sb = cifs_sb; - oparms.desired_access = desired_access; - oparms.create_options = cifs_create_options(cifs_sb, create_options); - oparms.disposition = disposition; - oparms.path = full_path; - oparms.fid = fid; - oparms.reconnect = false; - oparms.mode = mode; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .cifs_sb = cifs_sb, + .desired_access = desired_access, + .create_options = cifs_create_options(cifs_sb, create_options), + .disposition = disposition, + .path = full_path, + .fid = fid, + .mode = mode, + }; rc = server->ops->open(xid, &oparms, oplock, buf); if (rc) { cifs_dbg(FYI, "cifs_create returned 0x%x\n", rc); goto out; } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY /* * If Open reported that we actually created a file then we now have to * set the mode if possible. @@ -356,9 +361,11 @@ cifs_do_create(struct inode *inode, struct dentry *direntry, unsigned int xid, rc = cifs_get_inode_info_unix(&newinode, full_path, inode->i_sb, xid); else { +#else + { +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ /* TODO: Add support for calling POSIX query info here, but passing in fid */ - rc = cifs_get_inode_info(&newinode, full_path, buf, inode->i_sb, - xid, fid); + rc = cifs_get_inode_info(&newinode, full_path, buf, inode->i_sb, xid, fid); if (newinode) { if (server->ops->set_lease_key) server->ops->set_lease_key(newinode, fid); @@ -376,7 +383,9 @@ cifs_do_create(struct inode *inode, struct dentry *direntry, unsigned int xid, } } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY cifs_create_set_dentry: +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ if (rc != 0) { cifs_dbg(FYI, "Create worked, get_inode_info failed rc = %d\n", rc); @@ -393,7 +402,6 @@ cifs_do_create(struct inode *inode, struct dentry *direntry, unsigned int xid, d_add(direntry, newinode); out: - kfree(buf); free_dentry_path(page); return rc; @@ -414,10 +422,11 @@ cifs_atomic_open(struct inode *inode, struct dentry *direntry, struct tcon_link *tlink; struct cifs_tcon *tcon; struct TCP_Server_Info *server; - struct cifs_fid fid; + struct cifs_fid fid = {}; struct cifs_pending_open open; __u32 oplock; struct cifsFileInfo *file_info; + struct cifs_open_info_data buf = {}; if (unlikely(cifs_forced_shutdown(CIFS_SB(inode->i_sb)))) return -EIO; @@ -475,8 +484,7 @@ cifs_atomic_open(struct inode *inode, struct dentry *direntry, cifs_add_pending_open(&fid, tlink, &open); rc = cifs_do_create(inode, direntry, xid, tlink, oflags, mode, - &oplock, &fid); - + &oplock, &fid, &buf); if (rc) { cifs_del_pending_open(&open); goto out; @@ -501,7 +509,7 @@ cifs_atomic_open(struct inode *inode, struct dentry *direntry, file->f_op = &cifs_file_direct_ops; } - file_info = cifs_new_fileinfo(&fid, file, tlink, oplock); + file_info = cifs_new_fileinfo(&fid, file, tlink, oplock, buf.symlink_target); if (file_info == NULL) { if (server->ops->close) server->ops->close(xid, tcon, &fid); @@ -513,6 +521,7 @@ cifs_atomic_open(struct inode *inode, struct dentry *direntry, cifs_put_tlink(tlink); out_free_xid: free_xid(xid); + cifs_free_open_info(&buf); return rc; } @@ -534,6 +543,7 @@ int cifs_create(struct user_namespace *mnt_userns, struct inode *inode, struct TCP_Server_Info *server; struct cifs_fid fid; __u32 oplock; + struct cifs_open_info_data buf = {}; cifs_dbg(FYI, "cifs_create parent inode = 0x%p name is: %pd and dentry = 0x%p\n", inode, direntry, direntry); @@ -554,11 +564,11 @@ int cifs_create(struct user_namespace *mnt_userns, struct inode *inode, if (server->ops->new_lease_key) server->ops->new_lease_key(&fid); - rc = cifs_do_create(inode, direntry, xid, tlink, oflags, mode, - &oplock, &fid); + rc = cifs_do_create(inode, direntry, xid, tlink, oflags, mode, &oplock, &fid, &buf); if (!rc && server->ops->close) server->ops->close(xid, tcon, &fid); + cifs_free_open_info(&buf); cifs_put_tlink(tlink); out_free_xid: free_xid(xid); diff --git a/fs/cifs/dns_resolve.c b/fs/cifs/dns_resolve.c index 0458d28d71aa6..8bf8978bc5d66 100644 --- a/fs/cifs/dns_resolve.c +++ b/fs/cifs/dns_resolve.c @@ -12,6 +12,7 @@ * */ +#include #include #include #include "dns_resolve.h" @@ -25,17 +26,13 @@ * @ip_addr: Where to return the IP address. * @expiry: Where to return the expiry time for the dns record. * - * The IP address will be returned in string form, and the caller is - * responsible for freeing it. - * - * Returns length of result on success, -ve on error. + * Returns zero success, -ve on error. */ int -dns_resolve_server_name_to_ip(const char *unc, char **ip_addr, time64_t *expiry) +dns_resolve_server_name_to_ip(const char *unc, struct sockaddr *ip_addr, time64_t *expiry) { - struct sockaddr_storage ss; const char *hostname, *sep; - char *name; + char *ip; int len, rc; if (!ip_addr || !unc) @@ -60,30 +57,32 @@ dns_resolve_server_name_to_ip(const char *unc, char **ip_addr, time64_t *expiry) __func__, unc); /* Try to interpret hostname as an IPv4 or IPv6 address */ - rc = cifs_convert_address((struct sockaddr *)&ss, hostname, len); - if (rc > 0) - goto name_is_IP_address; + rc = cifs_convert_address(ip_addr, hostname, len); + if (rc > 0) { + cifs_dbg(FYI, "%s: unc is IP, skipping dns upcall: %*.*s\n", __func__, len, len, + hostname); + return 0; + } /* Perform the upcall */ rc = dns_query(current->nsproxy->net_ns, NULL, hostname, len, - NULL, ip_addr, expiry, false); - if (rc < 0) + NULL, &ip, expiry, false); + if (rc < 0) { cifs_dbg(FYI, "%s: unable to resolve: %*.*s\n", __func__, len, len, hostname); - else + } else { cifs_dbg(FYI, "%s: resolved: %*.*s to %s expiry %llu\n", - __func__, len, len, hostname, *ip_addr, + __func__, len, len, hostname, ip, expiry ? (*expiry) : 0); - return rc; -name_is_IP_address: - name = kmalloc(len + 1, GFP_KERNEL); - if (!name) - return -ENOMEM; - memcpy(name, hostname, len); - name[len] = 0; - cifs_dbg(FYI, "%s: unc is IP, skipping dns upcall: %s\n", - __func__, name); - *ip_addr = name; - return 0; + rc = cifs_convert_address(ip_addr, ip, strlen(ip)); + kfree(ip); + + if (!rc) { + cifs_dbg(FYI, "%s: unable to determine ip address\n", __func__); + rc = -EHOSTUNREACH; + } else + rc = 0; + } + return rc; } diff --git a/fs/cifs/dns_resolve.h b/fs/cifs/dns_resolve.h index afc0df381246b..6eb0c15a24406 100644 --- a/fs/cifs/dns_resolve.h +++ b/fs/cifs/dns_resolve.h @@ -11,8 +11,10 @@ #ifndef _DNS_RESOLVE_H #define _DNS_RESOLVE_H +#include + #ifdef __KERNEL__ -extern int dns_resolve_server_name_to_ip(const char *unc, char **ip_addr, time64_t *expiry); +int dns_resolve_server_name_to_ip(const char *unc, struct sockaddr *ip_addr, time64_t *expiry); #endif /* KERNEL */ #endif /* _DNS_RESOLVE_H */ diff --git a/fs/cifs/file.c b/fs/cifs/file.c index 9e8a69f9421e6..e2174842bd4b7 100644 --- a/fs/cifs/file.c +++ b/fs/cifs/file.c @@ -26,6 +26,7 @@ #include "cifspdu.h" #include "cifsglob.h" #include "cifsproto.h" +#include "smb2proto.h" #include "cifs_unicode.h" #include "cifs_debug.h" #include "cifs_fs_sb.h" @@ -33,6 +34,48 @@ #include "smbdirect.h" #include "fs_context.h" #include "cifs_ioctl.h" +#include "cached_dir.h" + +/* + * Mark as invalid, all open files on tree connections since they + * were closed when session to server was lost. + */ +void +cifs_mark_open_files_invalid(struct cifs_tcon *tcon) +{ + struct cifsFileInfo *open_file = NULL; + struct list_head *tmp; + struct list_head *tmp1; + + /* only send once per connect */ + spin_lock(&tcon->tc_lock); + if (tcon->status != TID_NEED_RECON) { + spin_unlock(&tcon->tc_lock); + return; + } + tcon->status = TID_IN_FILES_INVALIDATE; + spin_unlock(&tcon->tc_lock); + + /* list all files open on tree connection and mark them invalid */ + spin_lock(&tcon->open_file_lock); + list_for_each_safe(tmp, tmp1, &tcon->openFileList) { + open_file = list_entry(tmp, struct cifsFileInfo, tlist); + open_file->invalidHandle = true; + open_file->oplock_break_cancelled = true; + } + spin_unlock(&tcon->open_file_lock); + + invalidate_all_cached_dirs(tcon); + spin_lock(&tcon->tc_lock); + if (tcon->status == TID_IN_FILES_INVALIDATE) + tcon->status = TID_NEED_TCON; + spin_unlock(&tcon->tc_lock); + + /* + * BB Add call to invalidate_inodes(sb) for all superblocks mounted + * to this tcon. + */ +} static inline int cifs_convert_flags(unsigned int flags) { @@ -52,6 +95,7 @@ static inline int cifs_convert_flags(unsigned int flags) FILE_READ_DATA); } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY static u32 cifs_posix_convert_flags(unsigned int flags) { u32 posix_flags = 0; @@ -85,6 +129,7 @@ static u32 cifs_posix_convert_flags(unsigned int flags) return posix_flags; } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ static inline int cifs_get_disposition(unsigned int flags) { @@ -100,6 +145,7 @@ static inline int cifs_get_disposition(unsigned int flags) return FILE_OPEN; } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY int cifs_posix_open(const char *full_path, struct inode **pinode, struct super_block *sb, int mode, unsigned int f_flags, __u32 *poplock, __u16 *pnetfid, unsigned int xid) @@ -161,17 +207,16 @@ int cifs_posix_open(const char *full_path, struct inode **pinode, kfree(presp_data); return rc; } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ -static int -cifs_nt_open(const char *full_path, struct inode *inode, struct cifs_sb_info *cifs_sb, - struct cifs_tcon *tcon, unsigned int f_flags, __u32 *oplock, - struct cifs_fid *fid, unsigned int xid) +static int cifs_nt_open(const char *full_path, struct inode *inode, struct cifs_sb_info *cifs_sb, + struct cifs_tcon *tcon, unsigned int f_flags, __u32 *oplock, + struct cifs_fid *fid, unsigned int xid, struct cifs_open_info_data *buf) { int rc; int desired_access; int disposition; int create_options = CREATE_NOT_DIR; - FILE_ALL_INFO *buf; struct TCP_Server_Info *server = tcon->ses->server; struct cifs_open_parms oparms; @@ -208,10 +253,6 @@ cifs_nt_open(const char *full_path, struct inode *inode, struct cifs_sb_info *ci /* BB pass O_SYNC flag through on file attributes .. BB */ - buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL); - if (!buf) - return -ENOMEM; - /* O_SYNC also has bit for O_DSYNC so following check picks up either */ if (f_flags & O_SYNC) create_options |= CREATE_WRITE_THROUGH; @@ -219,19 +260,19 @@ cifs_nt_open(const char *full_path, struct inode *inode, struct cifs_sb_info *ci if (f_flags & O_DIRECT) create_options |= CREATE_NO_BUFFER; - oparms.tcon = tcon; - oparms.cifs_sb = cifs_sb; - oparms.desired_access = desired_access; - oparms.create_options = cifs_create_options(cifs_sb, create_options); - oparms.disposition = disposition; - oparms.path = full_path; - oparms.fid = fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .cifs_sb = cifs_sb, + .desired_access = desired_access, + .create_options = cifs_create_options(cifs_sb, create_options), + .disposition = disposition, + .path = full_path, + .fid = fid, + }; rc = server->ops->open(xid, &oparms, oplock, buf); - if (rc) - goto out; + return rc; /* TODO: Add support for calling posix query info but with passing in fid */ if (tcon->unix_ext) @@ -247,8 +288,6 @@ cifs_nt_open(const char *full_path, struct inode *inode, struct cifs_sb_info *ci rc = -EOPENSTALE; } -out: - kfree(buf); return rc; } @@ -278,9 +317,9 @@ cifs_down_write(struct rw_semaphore *sem) static void cifsFileInfo_put_work(struct work_struct *work); -struct cifsFileInfo * -cifs_new_fileinfo(struct cifs_fid *fid, struct file *file, - struct tcon_link *tlink, __u32 oplock) +struct cifsFileInfo *cifs_new_fileinfo(struct cifs_fid *fid, struct file *file, + struct tcon_link *tlink, __u32 oplock, + const char *symlink_target) { struct dentry *dentry = file_dentry(file); struct inode *inode = d_inode(dentry); @@ -300,6 +339,15 @@ cifs_new_fileinfo(struct cifs_fid *fid, struct file *file, return NULL; } + if (symlink_target) { + cfile->symlink_target = kstrdup(symlink_target, GFP_KERNEL); + if (!cfile->symlink_target) { + kfree(fdlocks); + kfree(cfile); + return NULL; + } + } + INIT_LIST_HEAD(&fdlocks->locks); fdlocks->cfile = cfile; cfile->llist = fdlocks; @@ -395,6 +443,7 @@ static void cifsFileInfo_put_final(struct cifsFileInfo *cifs_file) cifs_put_tlink(cifs_file->tlink); dput(cifs_file->dentry); cifs_sb_deactive(sb); + kfree(cifs_file->symlink_target); kfree(cifs_file); } @@ -443,7 +492,7 @@ void _cifsFileInfo_put(struct cifsFileInfo *cifs_file, struct cifsInodeInfo *cifsi = CIFS_I(inode); struct super_block *sb = inode->i_sb; struct cifs_sb_info *cifs_sb = CIFS_SB(sb); - struct cifs_fid fid; + struct cifs_fid fid = {}; struct cifs_pending_open open; bool oplock_break_cancelled; @@ -525,8 +574,9 @@ int cifs_open(struct inode *inode, struct file *file) void *page; const char *full_path; bool posix_open_ok = false; - struct cifs_fid fid; + struct cifs_fid fid = {}; struct cifs_pending_open open; + struct cifs_open_info_data data = {}; xid = get_xid(); @@ -581,6 +631,7 @@ int cifs_open(struct inode *inode, struct file *file) else oplock = 0; +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY if (!tcon->broken_posix_open && tcon->unix_ext && cap_unix(tcon->ses) && (CIFS_UNIX_POSIX_PATH_OPS_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability))) { @@ -605,6 +656,7 @@ int cifs_open(struct inode *inode, struct file *file) * or DFS errors. */ } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ if (server->ops->get_lease_key) server->ops->get_lease_key(inode, &fid); @@ -615,15 +667,15 @@ int cifs_open(struct inode *inode, struct file *file) if (server->ops->get_lease_key) server->ops->get_lease_key(inode, &fid); - rc = cifs_nt_open(full_path, inode, cifs_sb, tcon, - file->f_flags, &oplock, &fid, xid); + rc = cifs_nt_open(full_path, inode, cifs_sb, tcon, file->f_flags, &oplock, &fid, + xid, &data); if (rc) { cifs_del_pending_open(&open); goto out; } } - cfile = cifs_new_fileinfo(&fid, file, tlink, oplock); + cfile = cifs_new_fileinfo(&fid, file, tlink, oplock, data.symlink_target); if (cfile == NULL) { if (server->ops->close) server->ops->close(xid, tcon, &fid); @@ -634,6 +686,7 @@ int cifs_open(struct inode *inode, struct file *file) cifs_fscache_set_inode_cookie(inode, file); +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY if ((oplock & CIFS_CREATE_ACTION) && !posix_open_ok && tcon->unix_ext) { /* * Time to set mode which we can not set earlier due to @@ -651,15 +704,19 @@ int cifs_open(struct inode *inode, struct file *file) CIFSSMBUnixSetFileInfo(xid, tcon, &args, fid.netfid, cfile->pid); } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ out: free_dentry_path(page); free_xid(xid); cifs_put_tlink(tlink); + cifs_free_open_info(&data); return rc; } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY static int cifs_push_posix_locks(struct cifsFileInfo *cfile); +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ /* * Try to reacquire byte range locks that were released when session @@ -668,10 +725,12 @@ static int cifs_push_posix_locks(struct cifsFileInfo *cfile); static int cifs_relock_file(struct cifsFileInfo *cfile) { - struct cifs_sb_info *cifs_sb = CIFS_SB(cfile->dentry->d_sb); struct cifsInodeInfo *cinode = CIFS_I(d_inode(cfile->dentry)); struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); int rc = 0; +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY + struct cifs_sb_info *cifs_sb = CIFS_SB(cfile->dentry->d_sb); +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ down_read_nested(&cinode->lock_sem, SINGLE_DEPTH_NESTING); if (cinode->can_cache_brlcks) { @@ -680,11 +739,13 @@ cifs_relock_file(struct cifsFileInfo *cfile) return rc; } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY if (cap_unix(tcon->ses) && (CIFS_UNIX_FCNTL_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability)) && ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL) == 0)) rc = cifs_push_posix_locks(cfile); else +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ rc = tcon->ses->server->ops->push_mand_locks(cfile); up_read(&cinode->lock_sem); @@ -745,6 +806,7 @@ cifs_reopen_file(struct cifsFileInfo *cfile, bool can_flush) else oplock = 0; +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY if (tcon->unix_ext && cap_unix(tcon->ses) && (CIFS_UNIX_POSIX_PATH_OPS_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability))) { @@ -768,6 +830,7 @@ cifs_reopen_file(struct cifsFileInfo *cfile, bool can_flush) * in the reconnect path it is important to retry hard */ } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ desired_access = cifs_convert_flags(cfile->f_flags); @@ -781,14 +844,16 @@ cifs_reopen_file(struct cifsFileInfo *cfile, bool can_flush) if (server->ops->get_lease_key) server->ops->get_lease_key(inode, &cfile->fid); - oparms.tcon = tcon; - oparms.cifs_sb = cifs_sb; - oparms.desired_access = desired_access; - oparms.create_options = cifs_create_options(cifs_sb, create_options); - oparms.disposition = disposition; - oparms.path = full_path; - oparms.fid = &cfile->fid; - oparms.reconnect = true; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .cifs_sb = cifs_sb, + .desired_access = desired_access, + .create_options = cifs_create_options(cifs_sb, create_options), + .disposition = disposition, + .path = full_path, + .fid = &cfile->fid, + .reconnect = true, + }; /* * Can not refresh inode by passing in file_info buf to be returned by @@ -812,7 +877,9 @@ cifs_reopen_file(struct cifsFileInfo *cfile, bool can_flush) goto reopen_error_exit; } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY reopen_success: +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ cfile->invalidHandle = false; mutex_unlock(&cfile->fh_mutex); cinode = CIFS_I(inode); @@ -922,9 +989,7 @@ int cifs_close(struct inode *inode, struct file *file) void cifs_reopen_persistent_handles(struct cifs_tcon *tcon) { - struct cifsFileInfo *open_file; - struct list_head *tmp; - struct list_head *tmp1; + struct cifsFileInfo *open_file, *tmp; struct list_head tmp_list; if (!tcon->use_persistent || !tcon->need_reopen_files) @@ -937,8 +1002,7 @@ cifs_reopen_persistent_handles(struct cifs_tcon *tcon) /* list all files open on tree connection, reopen resilient handles */ spin_lock(&tcon->open_file_lock); - list_for_each(tmp, &tcon->openFileList) { - open_file = list_entry(tmp, struct cifsFileInfo, tlist); + list_for_each_entry(open_file, &tcon->openFileList, tlist) { if (!open_file->invalidHandle) continue; cifsFileInfo_get(open_file); @@ -946,8 +1010,7 @@ cifs_reopen_persistent_handles(struct cifs_tcon *tcon) } spin_unlock(&tcon->open_file_lock); - list_for_each_safe(tmp, tmp1, &tmp_list) { - open_file = list_entry(tmp, struct cifsFileInfo, rlist); + list_for_each_entry_safe(open_file, tmp, &tmp_list, rlist) { if (cifs_reopen_file(open_file, false /* do not flush */)) tcon->need_reopen_files = true; list_del_init(&open_file->rlist); @@ -1190,6 +1253,7 @@ cifs_lock_add_if(struct cifsFileInfo *cfile, struct cifsLockInfo *lock, return rc; } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY /* * Check if there is another lock that prevents us to set the lock (posix * style). If such a lock exists, update the flock structure with its @@ -1328,6 +1392,7 @@ hash_lockowner(fl_owner_t owner) { return cifs_lock_secret ^ hash32_ptr((const void *)owner); } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ struct lock_to_push { struct list_head llist; @@ -1338,6 +1403,7 @@ struct lock_to_push { __u8 type; }; +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY static int cifs_push_posix_locks(struct cifsFileInfo *cfile) { @@ -1389,7 +1455,7 @@ cifs_push_posix_locks(struct cifsFileInfo *cfile) cifs_dbg(VFS, "Can't push all brlocks!\n"); break; } - length = 1 + flock->fl_end - flock->fl_start; + length = cifs_flock_len(flock); if (flock->fl_type == F_RDLCK || flock->fl_type == F_SHLCK) type = CIFS_RDLCK; else @@ -1425,14 +1491,17 @@ cifs_push_posix_locks(struct cifsFileInfo *cfile) } goto out; } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ static int cifs_push_locks(struct cifsFileInfo *cfile) { - struct cifs_sb_info *cifs_sb = CIFS_SB(cfile->dentry->d_sb); struct cifsInodeInfo *cinode = CIFS_I(d_inode(cfile->dentry)); struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); int rc = 0; +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY + struct cifs_sb_info *cifs_sb = CIFS_SB(cfile->dentry->d_sb); +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ /* we are going to update can_cache_brlcks here - need a write access */ cifs_down_write(&cinode->lock_sem); @@ -1441,11 +1510,13 @@ cifs_push_locks(struct cifsFileInfo *cfile) return rc; } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY if (cap_unix(tcon->ses) && (CIFS_UNIX_FCNTL_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability)) && ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL) == 0)) rc = cifs_push_posix_locks(cfile); else +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ rc = tcon->ses->server->ops->push_mand_locks(cfile); cinode->can_cache_brlcks = false; @@ -1505,10 +1576,11 @@ cifs_getlk(struct file *file, struct file_lock *flock, __u32 type, bool wait_flag, bool posix_lck, unsigned int xid) { int rc = 0; - __u64 length = 1 + flock->fl_end - flock->fl_start; + __u64 length = cifs_flock_len(flock); struct cifsFileInfo *cfile = (struct cifsFileInfo *)file->private_data; struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); struct TCP_Server_Info *server = tcon->ses->server; +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY __u16 netfid = cfile->fid.netfid; if (posix_lck) { @@ -1528,6 +1600,7 @@ cifs_getlk(struct file *file, struct file_lock *flock, __u32 type, posix_lock_type, wait_flag); return rc; } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ rc = cifs_lock_test(cfile, flock->fl_start, length, type, flock); if (!rc) @@ -1588,6 +1661,7 @@ cifs_free_llist(struct list_head *llist) } } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY int cifs_unlock_range(struct cifsFileInfo *cfile, struct file_lock *flock, unsigned int xid) @@ -1603,7 +1677,7 @@ cifs_unlock_range(struct cifsFileInfo *cfile, struct file_lock *flock, struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); struct cifsInodeInfo *cinode = CIFS_I(d_inode(cfile->dentry)); struct cifsLockInfo *li, *tmp; - __u64 length = 1 + flock->fl_end - flock->fl_start; + __u64 length = cifs_flock_len(flock); struct list_head tmp_llist; INIT_LIST_HEAD(&tmp_llist); @@ -1700,6 +1774,7 @@ cifs_unlock_range(struct cifsFileInfo *cfile, struct file_lock *flock, kfree(buf); return rc; } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ static int cifs_setlk(struct file *file, struct file_lock *flock, __u32 type, @@ -1707,12 +1782,13 @@ cifs_setlk(struct file *file, struct file_lock *flock, __u32 type, unsigned int xid) { int rc = 0; - __u64 length = 1 + flock->fl_end - flock->fl_start; + __u64 length = cifs_flock_len(flock); struct cifsFileInfo *cfile = (struct cifsFileInfo *)file->private_data; struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); struct TCP_Server_Info *server = tcon->ses->server; struct inode *inode = d_inode(cfile->dentry); +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY if (posix_lck) { int posix_lock_type; @@ -1734,7 +1810,7 @@ cifs_setlk(struct file *file, struct file_lock *flock, __u32 type, NULL, posix_lock_type, wait_flag); goto out; } - +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ if (lock) { struct cifsLockInfo *lock; @@ -1858,9 +1934,9 @@ int cifs_lock(struct file *file, int cmd, struct file_lock *flock) rc = -EACCES; xid = get_xid(); - cifs_dbg(FYI, "Lock parm: 0x%x flockflags: 0x%x flocktype: 0x%x start: %lld end: %lld\n", - cmd, flock->fl_flags, flock->fl_type, - flock->fl_start, flock->fl_end); + cifs_dbg(FYI, "%s: %pD2 cmd=0x%x type=0x%x flags=0x%x r=%lld:%lld\n", __func__, file, cmd, + flock->fl_flags, flock->fl_type, (long long)flock->fl_start, + (long long)flock->fl_end); cfile = (struct cifsFileInfo *)file->private_data; tcon = tlink_tcon(cfile->tlink); @@ -2201,6 +2277,189 @@ cifs_get_readable_path(struct cifs_tcon *tcon, const char *name, return -ENOENT; } +void +cifs_writedata_release(struct kref *refcount) +{ + struct cifs_writedata *wdata = container_of(refcount, + struct cifs_writedata, refcount); +#ifdef CONFIG_CIFS_SMB_DIRECT + if (wdata->mr) { + smbd_deregister_mr(wdata->mr); + wdata->mr = NULL; + } +#endif + + if (wdata->cfile) + cifsFileInfo_put(wdata->cfile); + + kvfree(wdata->pages); + kfree(wdata); +} + +/* + * Write failed with a retryable error. Resend the write request. It's also + * possible that the page was redirtied so re-clean the page. + */ +static void +cifs_writev_requeue(struct cifs_writedata *wdata) +{ + int i, rc = 0; + struct inode *inode = d_inode(wdata->cfile->dentry); + struct TCP_Server_Info *server; + unsigned int rest_len; + + server = tlink_tcon(wdata->cfile->tlink)->ses->server; + i = 0; + rest_len = wdata->bytes; + do { + struct cifs_writedata *wdata2; + unsigned int j, nr_pages, wsize, tailsz, cur_len; + + wsize = server->ops->wp_retry_size(inode); + if (wsize < rest_len) { + nr_pages = wsize / PAGE_SIZE; + if (!nr_pages) { + rc = -EOPNOTSUPP; + break; + } + cur_len = nr_pages * PAGE_SIZE; + tailsz = PAGE_SIZE; + } else { + nr_pages = DIV_ROUND_UP(rest_len, PAGE_SIZE); + cur_len = rest_len; + tailsz = rest_len - (nr_pages - 1) * PAGE_SIZE; + } + + wdata2 = cifs_writedata_alloc(nr_pages, cifs_writev_complete); + if (!wdata2) { + rc = -ENOMEM; + break; + } + + for (j = 0; j < nr_pages; j++) { + wdata2->pages[j] = wdata->pages[i + j]; + lock_page(wdata2->pages[j]); + clear_page_dirty_for_io(wdata2->pages[j]); + } + + wdata2->sync_mode = wdata->sync_mode; + wdata2->nr_pages = nr_pages; + wdata2->offset = page_offset(wdata2->pages[0]); + wdata2->pagesz = PAGE_SIZE; + wdata2->tailsz = tailsz; + wdata2->bytes = cur_len; + + rc = cifs_get_writable_file(CIFS_I(inode), FIND_WR_ANY, + &wdata2->cfile); + if (!wdata2->cfile) { + cifs_dbg(VFS, "No writable handle to retry writepages rc=%d\n", + rc); + if (!is_retryable_error(rc)) + rc = -EBADF; + } else { + wdata2->pid = wdata2->cfile->pid; + rc = server->ops->async_writev(wdata2, + cifs_writedata_release); + } + + for (j = 0; j < nr_pages; j++) { + unlock_page(wdata2->pages[j]); + if (rc != 0 && !is_retryable_error(rc)) { + SetPageError(wdata2->pages[j]); + end_page_writeback(wdata2->pages[j]); + put_page(wdata2->pages[j]); + } + } + + kref_put(&wdata2->refcount, cifs_writedata_release); + if (rc) { + if (is_retryable_error(rc)) + continue; + i += nr_pages; + break; + } + + rest_len -= cur_len; + i += nr_pages; + } while (i < wdata->nr_pages); + + /* cleanup remaining pages from the original wdata */ + for (; i < wdata->nr_pages; i++) { + SetPageError(wdata->pages[i]); + end_page_writeback(wdata->pages[i]); + put_page(wdata->pages[i]); + } + + if (rc != 0 && !is_retryable_error(rc)) + mapping_set_error(inode->i_mapping, rc); + kref_put(&wdata->refcount, cifs_writedata_release); +} + +void +cifs_writev_complete(struct work_struct *work) +{ + struct cifs_writedata *wdata = container_of(work, + struct cifs_writedata, work); + struct inode *inode = d_inode(wdata->cfile->dentry); + int i = 0; + + if (wdata->result == 0) { + spin_lock(&inode->i_lock); + cifs_update_eof(CIFS_I(inode), wdata->offset, wdata->bytes); + spin_unlock(&inode->i_lock); + cifs_stats_bytes_written(tlink_tcon(wdata->cfile->tlink), + wdata->bytes); + } else if (wdata->sync_mode == WB_SYNC_ALL && wdata->result == -EAGAIN) + return cifs_writev_requeue(wdata); + + for (i = 0; i < wdata->nr_pages; i++) { + struct page *page = wdata->pages[i]; + + if (wdata->result == -EAGAIN) + __set_page_dirty_nobuffers(page); + else if (wdata->result < 0) + SetPageError(page); + end_page_writeback(page); + cifs_readpage_to_fscache(inode, page); + put_page(page); + } + if (wdata->result != -EAGAIN) + mapping_set_error(inode->i_mapping, wdata->result); + kref_put(&wdata->refcount, cifs_writedata_release); +} + +struct cifs_writedata * +cifs_writedata_alloc(unsigned int nr_pages, work_func_t complete) +{ + struct cifs_writedata *writedata = NULL; + struct page **pages = + kcalloc(nr_pages, sizeof(struct page *), GFP_NOFS); + if (pages) { + writedata = cifs_writedata_direct_alloc(pages, complete); + if (!writedata) + kvfree(pages); + } + + return writedata; +} + +struct cifs_writedata * +cifs_writedata_direct_alloc(struct page **pages, work_func_t complete) +{ + struct cifs_writedata *wdata; + + wdata = kzalloc(sizeof(*wdata), GFP_NOFS); + if (wdata != NULL) { + wdata->pages = pages; + kref_init(&wdata->refcount); + INIT_LIST_HEAD(&wdata->list); + init_completion(&wdata->done); + INIT_WORK(&wdata->work, complete); + } + return wdata; +} + + static int cifs_partialpagewrite(struct page *page, unsigned from, unsigned to) { struct address_space *mapping = page->mapping; @@ -2774,8 +3033,11 @@ int cifs_flush(struct file *file, fl_owner_t id) rc = filemap_write_and_wait(inode->i_mapping); cifs_dbg(FYI, "Flush inode %p file %p rc %d\n", inode, file, rc); - if (rc) + if (rc) { + /* get more nuanced writeback errors */ + rc = filemap_check_wb_err(file->f_mapping, 0); trace_cifs_flush_err(inode->i_ino, rc); + } return rc; } @@ -3039,6 +3301,9 @@ cifs_write_from_iter(loff_t offset, size_t len, struct iov_iter *from, cifs_uncached_writev_complete); if (!wdata) { rc = -ENOMEM; + for (i = 0; i < nr_pages; i++) + put_page(pagevec[i]); + kvfree(pagevec); add_credits_and_wake_if(server, credits, 0); break; } diff --git a/fs/cifs/fs_context.c b/fs/cifs/fs_context.c index 6347e759b5ccf..f12203c49b802 100644 --- a/fs/cifs/fs_context.c +++ b/fs/cifs/fs_context.c @@ -37,6 +37,8 @@ #include "rfc1002pdu.h" #include "fs_context.h" +static DEFINE_MUTEX(cifs_mount_mutex); + static const match_table_t cifs_smb_version_tokens = { { Smb_1, SMB1_VERSION_STRING }, { Smb_20, SMB20_VERSION_STRING}, @@ -116,6 +118,8 @@ const struct fs_parameter_spec smb3_fs_parameters[] = { fsparam_flag("nosharesock", Opt_nosharesock), fsparam_flag_no("persistenthandles", Opt_persistent), fsparam_flag_no("resilienthandles", Opt_resilient), + fsparam_flag_no("tcpnodelay", Opt_tcp_nodelay), + fsparam_flag("nosparse", Opt_nosparse), fsparam_flag("domainauto", Opt_domainauto), fsparam_flag("rdma", Opt_rdma), fsparam_flag("modesid", Opt_modesid), @@ -227,6 +231,8 @@ cifs_parse_security_flavors(struct fs_context *fc, char *value, struct smb3_fs_c break; case Opt_sec_none: ctx->nullauth = 1; + kfree(ctx->username); + ctx->username = NULL; break; default: cifs_errorf(fc, "bad security option: %s\n", value); @@ -304,7 +310,6 @@ smb3_fs_context_dup(struct smb3_fs_context *new_ctx, struct smb3_fs_context *ctx { memcpy(new_ctx, ctx, sizeof(*ctx)); new_ctx->prepath = NULL; - new_ctx->mount_options = NULL; new_ctx->nodename = NULL; new_ctx->username = NULL; new_ctx->password = NULL; @@ -313,11 +318,11 @@ smb3_fs_context_dup(struct smb3_fs_context *new_ctx, struct smb3_fs_context *ctx new_ctx->UNC = NULL; new_ctx->source = NULL; new_ctx->iocharset = NULL; + new_ctx->leaf_fullpath = NULL; /* * Make sure to stay in sync with smb3_cleanup_fs_context_contents() */ DUP_CTX_STR(prepath); - DUP_CTX_STR(mount_options); DUP_CTX_STR(username); DUP_CTX_STR(password); DUP_CTX_STR(server_hostname); @@ -326,6 +331,7 @@ smb3_fs_context_dup(struct smb3_fs_context *new_ctx, struct smb3_fs_context *ctx DUP_CTX_STR(domainname); DUP_CTX_STR(nodename); DUP_CTX_STR(iocharset); + DUP_CTX_STR(leaf_fullpath); return 0; } @@ -437,14 +443,17 @@ int smb3_parse_opt(const char *options, const char *key, char **val) * but there are some bugs that prevent rename from working if there are * multiple delimiters. * - * Returns a sanitized duplicate of @path. @gfp indicates the GFP_* flags - * for kstrdup. + * Return a sanitized duplicate of @path or NULL for empty prefix paths. + * Otherwise, return ERR_PTR. + * + * @gfp indicates the GFP_* flags for kstrdup. * The caller is responsible for freeing the original. */ #define IS_DELIM(c) ((c) == '/' || (c) == '\\') char *cifs_sanitize_prepath(char *prepath, gfp_t gfp) { char *cursor1 = prepath, *cursor2 = prepath; + char *s; /* skip all prepended delimiters */ while (IS_DELIM(*cursor1)) @@ -465,8 +474,39 @@ char *cifs_sanitize_prepath(char *prepath, gfp_t gfp) if (IS_DELIM(*(cursor2 - 1))) cursor2--; - *(cursor2) = '\0'; - return kstrdup(prepath, gfp); + *cursor2 = '\0'; + if (!*prepath) + return NULL; + s = kstrdup(prepath, gfp); + if (!s) + return ERR_PTR(-ENOMEM); + return s; +} + +/* + * Return full path based on the values of @ctx->{UNC,prepath}. + * + * It is assumed that both values were already parsed by smb3_parse_devname(). + */ +char *smb3_fs_context_fullpath(const struct smb3_fs_context *ctx, char dirsep) +{ + size_t ulen, plen; + char *s; + + ulen = strlen(ctx->UNC); + plen = ctx->prepath ? strlen(ctx->prepath) + 1 : 0; + + s = kmalloc(ulen + plen + 1, GFP_KERNEL); + if (!s) + return ERR_PTR(-ENOMEM); + memcpy(s, ctx->UNC, ulen); + if (plen) { + s[ulen] = dirsep; + memcpy(s + ulen + 1, ctx->prepath, plen); + } + s[ulen + plen] = '\0'; + convert_delimiter(s, dirsep); + return s; } /* @@ -480,6 +520,7 @@ smb3_parse_devname(const char *devname, struct smb3_fs_context *ctx) char *pos; const char *delims = "/\\"; size_t len; + int rc; if (unlikely(!devname || !*devname)) { cifs_dbg(VFS, "Device name not specified\n"); @@ -507,6 +548,8 @@ smb3_parse_devname(const char *devname, struct smb3_fs_context *ctx) /* now go until next delimiter or end of string */ len = strcspn(pos, delims); + if (!len) + return -EINVAL; /* move "pos" up to delimiter or NULL */ pos += len; @@ -529,8 +572,11 @@ smb3_parse_devname(const char *devname, struct smb3_fs_context *ctx) return 0; ctx->prepath = cifs_sanitize_prepath(pos, GFP_KERNEL); - if (!ctx->prepath) - return -ENOMEM; + if (IS_ERR(ctx->prepath)) { + rc = PTR_ERR(ctx->prepath); + ctx->prepath = NULL; + return rc; + } return 0; } @@ -566,17 +612,12 @@ static const struct fs_context_operations smb3_fs_context_ops = { static int smb3_fs_context_parse_monolithic(struct fs_context *fc, void *data) { - struct smb3_fs_context *ctx = smb3_fc2context(fc); char *options = data, *key; int ret = 0; if (!options) return 0; - ctx->mount_options = kstrdup(data, GFP_KERNEL); - if (ctx->mount_options == NULL) - return -ENOMEM; - ret = security_sb_eat_lsm_opts(options, &fc->security); if (ret) return ret; @@ -706,10 +747,14 @@ static int smb3_get_tree_common(struct fs_context *fc) static int smb3_get_tree(struct fs_context *fc) { int err = smb3_fs_context_validate(fc); + int ret; if (err) return err; - return smb3_get_tree_common(fc); + mutex_lock(&cifs_mount_mutex); + ret = smb3_get_tree_common(fc); + mutex_unlock(&cifs_mount_mutex); + return ret; } static void smb3_fs_context_free(struct fs_context *fc) @@ -759,6 +804,10 @@ static int smb3_verify_reconfigure_ctx(struct fs_context *fc, cifs_errorf(fc, "can not change domainname during remount\n"); return -EINVAL; } + if (strcmp(new_ctx->workstation_name, old_ctx->workstation_name)) { + cifs_errorf(fc, "can not change workstation_name during remount\n"); + return -EINVAL; + } if (new_ctx->nodename && (!old_ctx->nodename || strcmp(new_ctx->nodename, old_ctx->nodename))) { cifs_errorf(fc, "can not change nodename during remount\n"); @@ -780,6 +829,13 @@ do { \ cifs_sb->ctx->field = NULL; \ } while (0) +#define STEAL_STRING_SENSITIVE(cifs_sb, ctx, field) \ +do { \ + kfree_sensitive(ctx->field); \ + ctx->field = cifs_sb->ctx->field; \ + cifs_sb->ctx->field = NULL; \ +} while (0) + static int smb3_reconfigure(struct fs_context *fc) { struct smb3_fs_context *ctx = smb3_fc2context(fc); @@ -792,14 +848,15 @@ static int smb3_reconfigure(struct fs_context *fc) return rc; /* - * We can not change UNC/username/password/domainname/nodename/iocharset + * We can not change UNC/username/password/domainname/ + * workstation_name/nodename/iocharset * during reconnect so ignore what we have in the new context and * just use what we already have in cifs_sb->ctx. */ STEAL_STRING(cifs_sb, ctx, UNC); STEAL_STRING(cifs_sb, ctx, source); STEAL_STRING(cifs_sb, ctx, username); - STEAL_STRING(cifs_sb, ctx, password); + STEAL_STRING_SENSITIVE(cifs_sb, ctx, password); STEAL_STRING(cifs_sb, ctx, domainname); STEAL_STRING(cifs_sb, ctx, nodename); STEAL_STRING(cifs_sb, ctx, iocharset); @@ -865,16 +922,21 @@ static int smb3_fs_context_parse_param(struct fs_context *fc, ctx->nodfs = 1; break; case Opt_hard: - if (result.negated) + if (result.negated) { + if (ctx->retry == 1) + cifs_dbg(VFS, "conflicting hard vs. soft mount options\n"); ctx->retry = 0; - else + } else ctx->retry = 1; break; case Opt_soft: if (result.negated) ctx->retry = 1; - else + else { + if (ctx->retry == 1) + cifs_dbg(VFS, "conflicting hard vs soft mount options\n"); ctx->retry = 0; + } break; case Opt_mapposix: if (result.negated) @@ -937,6 +999,9 @@ static int smb3_fs_context_parse_param(struct fs_context *fc, case Opt_nolease: ctx->no_lease = 1; break; + case Opt_nosparse: + ctx->no_sparse = 1; + break; case Opt_nodelete: ctx->nodelete = 1; break; @@ -1123,12 +1188,13 @@ static int smb3_fs_context_parse_param(struct fs_context *fc, cifs_errorf(fc, "Unknown error parsing devname\n"); goto cifs_parse_mount_err; } - ctx->source = kstrdup(param->string, GFP_KERNEL); - if (ctx->source == NULL) { + ctx->source = smb3_fs_context_fullpath(ctx, '/'); + if (IS_ERR(ctx->source)) { + ctx->source = NULL; cifs_errorf(fc, "OOM when copying UNC string\n"); goto cifs_parse_mount_err; } - fc->source = kstrdup(param->string, GFP_KERNEL); + fc->source = kstrdup(ctx->source, GFP_KERNEL); if (fc->source == NULL) { cifs_errorf(fc, "OOM when copying UNC string\n"); goto cifs_parse_mount_err; @@ -1137,6 +1203,8 @@ static int smb3_fs_context_parse_param(struct fs_context *fc, case Opt_user: kfree(ctx->username); ctx->username = NULL; + if (ctx->nullauth) + break; if (strlen(param->string) == 0) { /* null user, ie. anonymous authentication */ ctx->nullauth = 1; @@ -1155,7 +1223,7 @@ static int smb3_fs_context_parse_param(struct fs_context *fc, } break; case Opt_pass: - kfree(ctx->password); + kfree_sensitive(ctx->password); ctx->password = NULL; if (strlen(param->string) == 0) break; @@ -1444,6 +1512,13 @@ static int smb3_fs_context_parse_param(struct fs_context *fc, } } break; + case Opt_tcp_nodelay: + /* tcp nodelay should not usually be needed since we CORK/UNCORK the socket */ + if (result.negated) + ctx->sockopt_tcp_nodelay = false; + else + ctx->sockopt_tcp_nodelay = true; + break; case Opt_domainauto: ctx->domainauto = true; break; @@ -1456,6 +1531,8 @@ static int smb3_fs_context_parse_param(struct fs_context *fc, return 0; cifs_parse_mount_err: + kfree_sensitive(ctx->password); + ctx->password = NULL; return -EINVAL; } @@ -1469,6 +1546,8 @@ int smb3_init_fs_context(struct fs_context *fc) if (unlikely(!ctx)) return -ENOMEM; + strscpy(ctx->workstation_name, nodename, sizeof(ctx->workstation_name)); + /* * does not have to be perfect mapping since field is * informational, only used for servers that do not support @@ -1552,8 +1631,6 @@ smb3_cleanup_fs_context_contents(struct smb3_fs_context *ctx) /* * Make sure this stays in sync with smb3_fs_context_dup() */ - kfree(ctx->mount_options); - ctx->mount_options = NULL; kfree(ctx->username); ctx->username = NULL; kfree_sensitive(ctx->password); @@ -1572,6 +1649,8 @@ smb3_cleanup_fs_context_contents(struct smb3_fs_context *ctx) ctx->iocharset = NULL; kfree(ctx->prepath); ctx->prepath = NULL; + kfree(ctx->leaf_fullpath); + ctx->leaf_fullpath = NULL; } void diff --git a/fs/cifs/fs_context.h b/fs/cifs/fs_context.h index 3cf8d6235162d..f4eaf85589022 100644 --- a/fs/cifs/fs_context.h +++ b/fs/cifs/fs_context.h @@ -62,6 +62,7 @@ enum cifs_param { Opt_noblocksend, Opt_noautotune, Opt_nolease, + Opt_nosparse, Opt_hard, Opt_soft, Opt_perm, @@ -98,6 +99,7 @@ enum cifs_param { Opt_nosharesock, Opt_persistent, Opt_resilient, + Opt_tcp_nodelay, Opt_domainauto, Opt_rdma, Opt_modesid, @@ -170,6 +172,7 @@ struct smb3_fs_context { char *server_hostname; char *UNC; char *nodename; + char workstation_name[CIFS_MAX_WORKSTATION_LEN]; char *iocharset; /* local code page for mapping to and from Unicode */ char source_rfc1001_name[RFC1001_NAME_LEN_WITH_NULL]; /* clnt nb name */ char target_rfc1001_name[RFC1001_NAME_LEN_WITH_NULL]; /* srvr nb name */ @@ -221,6 +224,7 @@ struct smb3_fs_context { bool noautotune:1; bool nostrictsync:1; /* do not force expensive SMBflush on every sync */ bool no_lease:1; /* disable requesting leases */ + bool no_sparse:1; /* do not attempt to set files sparse */ bool fsc:1; /* enable fscache */ bool mfsymlinks:1; /* use Minshall+French Symlinks */ bool multiuser:1; @@ -260,8 +264,8 @@ struct smb3_fs_context { __u16 compression; /* compression algorithm 0xFFFF default 0=disabled */ bool rootfs:1; /* if it's a SMB root file system */ bool witness:1; /* use witness protocol */ - - char *mount_options; + char *leaf_fullpath; + struct cifs_ses *dfs_root_ses; }; extern const struct fs_parameter_spec smb3_fs_parameters[]; diff --git a/fs/cifs/fscache.c b/fs/cifs/fscache.c index 8eedd20c44abd..591786f0104fe 100644 --- a/fs/cifs/fscache.c +++ b/fs/cifs/fscache.c @@ -16,14 +16,7 @@ * Key layout of CIFS server cache index object */ struct cifs_server_key { - struct { - uint16_t family; /* address family */ - __be16 port; /* IP port */ - } hdr; - union { - struct in_addr ipv4_addr; - struct in6_addr ipv6_addr; - }; + __u64 conn_id; } __packed; /* @@ -31,42 +24,23 @@ struct cifs_server_key { */ void cifs_fscache_get_client_cookie(struct TCP_Server_Info *server) { - const struct sockaddr *sa = (struct sockaddr *) &server->dstaddr; - const struct sockaddr_in *addr = (struct sockaddr_in *) sa; - const struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *) sa; struct cifs_server_key key; - uint16_t key_len = sizeof(key.hdr); - - memset(&key, 0, sizeof(key)); /* - * Should not be a problem as sin_family/sin6_family overlays - * sa_family field + * Check if cookie was already initialized so don't reinitialize it. + * In the future, as we integrate with newer fscache features, + * we may want to instead add a check if cookie has changed */ - key.hdr.family = sa->sa_family; - switch (sa->sa_family) { - case AF_INET: - key.hdr.port = addr->sin_port; - key.ipv4_addr = addr->sin_addr; - key_len += sizeof(key.ipv4_addr); - break; - - case AF_INET6: - key.hdr.port = addr6->sin6_port; - key.ipv6_addr = addr6->sin6_addr; - key_len += sizeof(key.ipv6_addr); - break; - - default: - cifs_dbg(VFS, "Unknown network family '%d'\n", sa->sa_family); - server->fscache = NULL; + if (server->fscache) return; - } + + memset(&key, 0, sizeof(key)); + key.conn_id = server->conn_id; server->fscache = fscache_acquire_cookie(cifs_fscache_netfs.primary_index, &cifs_fscache_server_index_def, - &key, key_len, + &key, sizeof(key), NULL, 0, server, 0, true); cifs_dbg(FYI, "%s: (0x%p/0x%p)\n", @@ -87,7 +61,15 @@ void cifs_fscache_get_super_cookie(struct cifs_tcon *tcon) char *sharename; struct cifs_fscache_super_auxdata auxdata; - sharename = extract_sharename(tcon->treeName); + /* + * Check if cookie was already initialized so don't reinitialize it. + * In the future, as we integrate with newer fscache features, + * we may want to instead add a check if cookie has changed + */ + if (tcon->fscache) + return; + + sharename = extract_sharename(tcon->tree_name); if (IS_ERR(sharename)) { cifs_dbg(FYI, "%s: couldn't extract sharename\n", __func__); tcon->fscache = NULL; diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c index 82848412ad852..88f8d872fd73e 100644 --- a/fs/cifs/inode.c +++ b/fs/cifs/inode.c @@ -25,6 +25,7 @@ #include "fscache.h" #include "fs_context.h" #include "cifs_ioctl.h" +#include "cached_dir.h" static void cifs_set_ops(struct inode *inode) { @@ -205,6 +206,12 @@ cifs_fattr_to_inode(struct inode *inode, struct cifs_fattr *fattr) */ inode->i_blocks = (512 - 1 + fattr->cf_bytes) >> 9; } + + if (S_ISLNK(fattr->cf_mode)) { + kfree(cifs_i->symlink_target); + cifs_i->symlink_target = fattr->cf_symlink_target; + fattr->cf_symlink_target = NULL; + } spin_unlock(&inode->i_lock); if (fattr->cf_flags & CIFS_FATTR_DFS_REFERRAL) @@ -335,19 +342,29 @@ cifs_create_dfs_fattr(struct cifs_fattr *fattr, struct super_block *sb) fattr->cf_flags = CIFS_FATTR_DFS_REFERRAL; } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY static int cifs_get_file_info_unix(struct file *filp) { int rc; unsigned int xid; FILE_UNIX_BASIC_INFO find_data; - struct cifs_fattr fattr; + struct cifs_fattr fattr = {}; struct inode *inode = file_inode(filp); struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); struct cifsFileInfo *cfile = filp->private_data; struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); xid = get_xid(); + + if (cfile->symlink_target) { + fattr.cf_symlink_target = kstrdup(cfile->symlink_target, GFP_KERNEL); + if (!fattr.cf_symlink_target) { + rc = -ENOMEM; + goto cifs_gfiunix_out; + } + } + rc = CIFSSMBUnixQFileInfo(xid, tcon, cfile->fid.netfid, &find_data); if (!rc) { cifs_unix_basic_to_fattr(&fattr, &find_data, cifs_sb); @@ -372,6 +389,7 @@ int cifs_get_inode_info_unix(struct inode **pinode, FILE_UNIX_BASIC_INFO find_data; struct cifs_fattr fattr; struct cifs_tcon *tcon; + struct TCP_Server_Info *server; struct tcon_link *tlink; struct cifs_sb_info *cifs_sb = CIFS_SB(sb); @@ -381,10 +399,12 @@ int cifs_get_inode_info_unix(struct inode **pinode, if (IS_ERR(tlink)) return PTR_ERR(tlink); tcon = tlink_tcon(tlink); + server = tcon->ses->server; /* could have done a find first instead but this returns more info */ rc = CIFSSMBUnixQPathInfo(xid, tcon, full_path, &find_data, cifs_sb->local_nls, cifs_remap(cifs_sb)); + cifs_dbg(FYI, "%s: query path info: rc = %d\n", __func__, rc); cifs_put_tlink(tlink); if (!rc) { @@ -404,6 +424,17 @@ int cifs_get_inode_info_unix(struct inode **pinode, cifs_dbg(FYI, "check_mf_symlink: %d\n", tmprc); } + if (S_ISLNK(fattr.cf_mode) && !fattr.cf_symlink_target) { + if (!server->ops->query_symlink) + return -EOPNOTSUPP; + rc = server->ops->query_symlink(xid, tcon, cifs_sb, full_path, + &fattr.cf_symlink_target, false); + if (rc) { + cifs_dbg(FYI, "%s: query_symlink: %d\n", __func__, rc); + goto cgiiu_exit; + } + } + if (*pinode == NULL) { /* get new inode */ cifs_fill_uniqueid(sb, &fattr); @@ -426,8 +457,17 @@ int cifs_get_inode_info_unix(struct inode **pinode, } cgiiu_exit: + kfree(fattr.cf_symlink_target); return rc; } +#else +int cifs_get_inode_info_unix(struct inode **pinode, + const unsigned char *full_path, + struct super_block *sb, unsigned int xid) +{ + return -EOPNOTSUPP; +} +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ static int cifs_sfu_type(struct cifs_fattr *fattr, const char *path, @@ -464,14 +504,15 @@ cifs_sfu_type(struct cifs_fattr *fattr, const char *path, return PTR_ERR(tlink); tcon = tlink_tcon(tlink); - oparms.tcon = tcon; - oparms.cifs_sb = cifs_sb; - oparms.desired_access = GENERIC_READ; - oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR); - oparms.disposition = FILE_OPEN; - oparms.path = path; - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .cifs_sb = cifs_sb, + .desired_access = GENERIC_READ, + .create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR), + .disposition = FILE_OPEN, + .path = path, + .fid = &fid, + }; if (tcon->ses->server->oplocks) oplock = REQ_OPLOCK; @@ -587,10 +628,12 @@ static int cifs_sfu_mode(struct cifs_fattr *fattr, const unsigned char *path, } /* Fill a cifs_fattr struct with info from POSIX info struct */ -static void -smb311_posix_info_to_fattr(struct cifs_fattr *fattr, struct smb311_posix_qinfo *info, - struct super_block *sb, bool adjust_tz, bool symlink) +static void smb311_posix_info_to_fattr(struct cifs_fattr *fattr, struct cifs_open_info_data *data, + struct cifs_sid *owner, + struct cifs_sid *group, + struct super_block *sb, bool adjust_tz, bool symlink) { + struct smb311_posix_qinfo *info = &data->posix_fi; struct cifs_sb_info *cifs_sb = CIFS_SB(sb); struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb); @@ -625,6 +668,8 @@ smb311_posix_info_to_fattr(struct cifs_fattr *fattr, struct smb311_posix_qinfo * if (symlink) { fattr->cf_mode |= S_IFLNK; fattr->cf_dtype = DT_LNK; + fattr->cf_symlink_target = data->symlink_target; + data->symlink_target = NULL; } else if (fattr->cf_cifsattrs & ATTR_DIRECTORY) { fattr->cf_mode |= S_IFDIR; fattr->cf_dtype = DT_DIR; @@ -634,20 +679,18 @@ smb311_posix_info_to_fattr(struct cifs_fattr *fattr, struct smb311_posix_qinfo * } /* else if reparse point ... TODO: add support for FIFO and blk dev; special file types */ - fattr->cf_uid = cifs_sb->ctx->linux_uid; /* TODO: map uid and gid from SID */ - fattr->cf_gid = cifs_sb->ctx->linux_gid; + sid_to_id(cifs_sb, owner, fattr, SIDOWNER); + sid_to_id(cifs_sb, group, fattr, SIDGROUP); cifs_dbg(FYI, "POSIX query info: mode 0x%x uniqueid 0x%llx nlink %d\n", fattr->cf_mode, fattr->cf_uniqueid, fattr->cf_nlink); } - -/* Fill a cifs_fattr struct with info from FILE_ALL_INFO */ -static void -cifs_all_info_to_fattr(struct cifs_fattr *fattr, FILE_ALL_INFO *info, - struct super_block *sb, bool adjust_tz, - bool symlink, u32 reparse_tag) +static void cifs_open_info_to_fattr(struct cifs_fattr *fattr, struct cifs_open_info_data *data, + struct super_block *sb, bool adjust_tz, bool symlink, + u32 reparse_tag) { + struct smb2_file_all_info *info = &data->fi; struct cifs_sb_info *cifs_sb = CIFS_SB(sb); struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb); @@ -689,7 +732,8 @@ cifs_all_info_to_fattr(struct cifs_fattr *fattr, FILE_ALL_INFO *info, } else if (reparse_tag == IO_REPARSE_TAG_LX_BLK) { fattr->cf_mode |= S_IFBLK | cifs_sb->ctx->file_mode; fattr->cf_dtype = DT_BLK; - } else if (symlink) { /* TODO add more reparse tag checks */ + } else if (symlink || reparse_tag == IO_REPARSE_TAG_SYMLINK || + reparse_tag == IO_REPARSE_TAG_NFS) { fattr->cf_mode = S_IFLNK; fattr->cf_dtype = DT_LNK; } else if (fattr->cf_cifsattrs & ATTR_DIRECTORY) { @@ -721,6 +765,11 @@ cifs_all_info_to_fattr(struct cifs_fattr *fattr, FILE_ALL_INFO *info, } } + if (S_ISLNK(fattr->cf_mode)) { + fattr->cf_symlink_target = data->symlink_target; + data->symlink_target = NULL; + } + fattr->cf_uid = cifs_sb->ctx->linux_uid; fattr->cf_gid = cifs_sb->ctx->linux_gid; } @@ -730,23 +779,28 @@ cifs_get_file_info(struct file *filp) { int rc; unsigned int xid; - FILE_ALL_INFO find_data; + struct cifs_open_info_data data = {}; struct cifs_fattr fattr; struct inode *inode = file_inode(filp); struct cifsFileInfo *cfile = filp->private_data; struct cifs_tcon *tcon = tlink_tcon(cfile->tlink); struct TCP_Server_Info *server = tcon->ses->server; + bool symlink = false; + u32 tag = 0; if (!server->ops->query_file_info) return -ENOSYS; xid = get_xid(); - rc = server->ops->query_file_info(xid, tcon, &cfile->fid, &find_data); + rc = server->ops->query_file_info(xid, tcon, cfile, &data); switch (rc) { case 0: /* TODO: add support to query reparse tag */ - cifs_all_info_to_fattr(&fattr, &find_data, inode->i_sb, false, - false, 0 /* no reparse tag */); + if (data.symlink_target) { + symlink = true; + tag = IO_REPARSE_TAG_SYMLINK; + } + cifs_open_info_to_fattr(&fattr, &data, inode->i_sb, false, symlink, tag); break; case -EREMOTE: cifs_create_dfs_fattr(&fattr, inode->i_sb); @@ -775,6 +829,7 @@ cifs_get_file_info(struct file *filp) /* if filetype is different, return error */ rc = cifs_fattr_to_inode(inode, &fattr); cgfi_exit: + cifs_free_open_info(&data); free_xid(xid); return rc; } @@ -791,6 +846,7 @@ static __u64 simple_hashstr(const char *str) return hash; } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY /** * cifs_backup_query_path_info - SMB1 fallback code to get ino * @@ -843,15 +899,11 @@ cifs_backup_query_path_info(int xid, *data = (FILE_ALL_INFO *)info.srch_entries_start; return 0; } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ -static void -cifs_set_fattr_ino(int xid, - struct cifs_tcon *tcon, - struct super_block *sb, - struct inode **inode, - const char *full_path, - FILE_ALL_INFO *data, - struct cifs_fattr *fattr) +static void cifs_set_fattr_ino(int xid, struct cifs_tcon *tcon, struct super_block *sb, + struct inode **inode, const char *full_path, + struct cifs_open_info_data *data, struct cifs_fattr *fattr) { struct cifs_sb_info *cifs_sb = CIFS_SB(sb); struct TCP_Server_Info *server = tcon->ses->server; @@ -869,11 +921,8 @@ cifs_set_fattr_ino(int xid, * If we have an inode pass a NULL tcon to ensure we don't * make a round trip to the server. This only works for SMB2+. */ - rc = server->ops->get_srv_inum(xid, - *inode ? NULL : tcon, - cifs_sb, full_path, - &fattr->cf_uniqueid, - data); + rc = server->ops->get_srv_inum(xid, *inode ? NULL : tcon, cifs_sb, full_path, + &fattr->cf_uniqueid, data); if (rc) { /* * If that fails reuse existing ino or generate one @@ -897,7 +946,7 @@ cifs_set_fattr_ino(int xid, } else { /* make an ino by hashing the UNC */ fattr->cf_flags |= CIFS_FATTR_FAKE_ROOT_INO; - fattr->cf_uniqueid = simple_hashstr(tcon->treeName); + fattr->cf_uniqueid = simple_hashstr(tcon->tree_name); } } } @@ -907,14 +956,10 @@ static inline bool is_inode_cache_good(struct inode *ino) return ino && CIFS_CACHE_READ(CIFS_I(ino)) && CIFS_I(ino)->time != 0; } -int -cifs_get_inode_info(struct inode **inode, - const char *full_path, - FILE_ALL_INFO *in_data, - struct super_block *sb, int xid, - const struct cifs_fid *fid) +int cifs_get_inode_info(struct inode **inode, const char *full_path, + struct cifs_open_info_data *data, struct super_block *sb, int xid, + const struct cifs_fid *fid) { - struct cifs_tcon *tcon; struct TCP_Server_Info *server; struct tcon_link *tlink; @@ -922,8 +967,7 @@ cifs_get_inode_info(struct inode **inode, bool adjust_tz = false; struct cifs_fattr fattr = {0}; bool is_reparse_point = false; - FILE_ALL_INFO *data = in_data; - FILE_ALL_INFO *tmp_data = NULL; + struct cifs_open_info_data tmp_data = {}; void *smb1_backup_rsp_buf = NULL; int rc = 0; int tmprc = 0; @@ -944,15 +988,9 @@ cifs_get_inode_info(struct inode **inode, cifs_dbg(FYI, "No need to revalidate cached inode sizes\n"); goto out; } - tmp_data = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL); - if (!tmp_data) { - rc = -ENOMEM; - goto out; - } - rc = server->ops->query_path_info(xid, tcon, cifs_sb, - full_path, tmp_data, - &adjust_tz, &is_reparse_point); - data = tmp_data; + rc = server->ops->query_path_info(xid, tcon, cifs_sb, full_path, &tmp_data, + &adjust_tz, &is_reparse_point); + data = &tmp_data; } /* @@ -966,14 +1004,24 @@ cifs_get_inode_info(struct inode **inode, * since we have to check if its reparse tag matches a known * special file type e.g. symlink or fifo or char etc. */ - if ((le32_to_cpu(data->Attributes) & ATTR_REPARSE) && - server->ops->query_reparse_tag) { - rc = server->ops->query_reparse_tag(xid, tcon, cifs_sb, - full_path, &reparse_tag); - cifs_dbg(FYI, "reparse tag 0x%x\n", reparse_tag); + if (is_reparse_point && data->symlink_target) { + reparse_tag = IO_REPARSE_TAG_SYMLINK; + } else if ((le32_to_cpu(data->fi.Attributes) & ATTR_REPARSE) && + server->ops->query_reparse_tag) { + tmprc = server->ops->query_reparse_tag(xid, tcon, cifs_sb, full_path, + &reparse_tag); + if (tmprc) + cifs_dbg(FYI, "%s: query_reparse_tag: rc = %d\n", __func__, tmprc); + if (server->ops->query_symlink) { + tmprc = server->ops->query_symlink(xid, tcon, cifs_sb, full_path, + &data->symlink_target, + is_reparse_point); + if (tmprc) + cifs_dbg(FYI, "%s: query_symlink: rc = %d\n", __func__, + tmprc); + } } - cifs_all_info_to_fattr(&fattr, data, sb, adjust_tz, - is_reparse_point, reparse_tag); + cifs_open_info_to_fattr(&fattr, data, sb, adjust_tz, is_reparse_point, reparse_tag); break; case -EREMOTE: /* DFS link, no metadata available on this server */ @@ -981,6 +1029,7 @@ cifs_get_inode_info(struct inode **inode, rc = 0; break; case -EACCES: +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY /* * perm errors, try again with backup flags if possible * @@ -991,18 +1040,20 @@ cifs_get_inode_info(struct inode **inode, */ if (backup_cred(cifs_sb) && is_smb1_server(server)) { /* for easier reading */ + FILE_ALL_INFO *fi; FILE_DIRECTORY_INFO *fdi; SEARCH_ID_FULL_DIR_INFO *si; rc = cifs_backup_query_path_info(xid, tcon, sb, full_path, &smb1_backup_rsp_buf, - &data); + &fi); if (rc) goto out; - fdi = (FILE_DIRECTORY_INFO *)data; - si = (SEARCH_ID_FULL_DIR_INFO *)data; + move_cifs_info_to_smb2(&data->fi, fi); + fdi = (FILE_DIRECTORY_INFO *)fi; + si = (SEARCH_ID_FULL_DIR_INFO *)fi; cifs_dir_info_to_fattr(&fattr, fdi, cifs_sb); fattr.cf_uniqueid = le64_to_cpu(si->UniqueId); @@ -1012,6 +1063,9 @@ cifs_get_inode_info(struct inode **inode, /* nothing we can do, bail out */ goto out; } +#else + goto out; +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ break; default: cifs_dbg(FYI, "%s: unhandled err rc %d\n", __func__, rc); @@ -1027,8 +1081,9 @@ cifs_get_inode_info(struct inode **inode, /* * 4. Tweak fattr based on mount options */ - +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY handle_mnt_opt: +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ /* query for SFU type info if supported and needed */ if (fattr.cf_cifsattrs & ATTR_SYSTEM && cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) { @@ -1096,7 +1151,8 @@ cifs_get_inode_info(struct inode **inode, out: cifs_buf_release(smb1_backup_rsp_buf); cifs_put_tlink(tlink); - kfree(tmp_data); + cifs_free_open_info(&tmp_data); + kfree(fattr.cf_symlink_target); return rc; } @@ -1111,7 +1167,8 @@ smb311_posix_get_inode_info(struct inode **inode, bool adjust_tz = false; struct cifs_fattr fattr = {0}; bool symlink = false; - struct smb311_posix_qinfo *data = NULL; + struct cifs_open_info_data data = {}; + struct cifs_sid owner, group; int rc = 0; int tmprc = 0; @@ -1128,15 +1185,10 @@ smb311_posix_get_inode_info(struct inode **inode, cifs_dbg(FYI, "No need to revalidate cached inode sizes\n"); goto out; } - data = kmalloc(sizeof(struct smb311_posix_qinfo), GFP_KERNEL); - if (!data) { - rc = -ENOMEM; - goto out; - } - rc = smb311_posix_query_path_info(xid, tcon, cifs_sb, - full_path, data, - &adjust_tz, &symlink); + rc = smb311_posix_query_path_info(xid, tcon, cifs_sb, full_path, &data, + &owner, &group, &adjust_tz, + &symlink); /* * 2. Convert it to internal cifs metadata (fattr) @@ -1144,7 +1196,8 @@ smb311_posix_get_inode_info(struct inode **inode, switch (rc) { case 0: - smb311_posix_info_to_fattr(&fattr, data, sb, adjust_tz, symlink); + smb311_posix_info_to_fattr(&fattr, &data, &owner, &group, + sb, adjust_tz, symlink); break; case -EREMOTE: /* DFS link, no metadata available on this server */ @@ -1201,7 +1254,8 @@ smb311_posix_get_inode_info(struct inode **inode, } out: cifs_put_tlink(tlink); - kfree(data); + cifs_free_open_info(&data); + kfree(fattr.cf_symlink_target); return rc; } @@ -1213,7 +1267,7 @@ static const struct inode_operations cifs_ipc_inode_ops = { static int cifs_find_inode(struct inode *inode, void *opaque) { - struct cifs_fattr *fattr = (struct cifs_fattr *) opaque; + struct cifs_fattr *fattr = opaque; /* don't match inode with different uniqueid */ if (CIFS_I(inode)->uniqueid != fattr->cf_uniqueid) @@ -1237,7 +1291,7 @@ cifs_find_inode(struct inode *inode, void *opaque) static int cifs_init_inode(struct inode *inode, void *opaque) { - struct cifs_fattr *fattr = (struct cifs_fattr *) opaque; + struct cifs_fattr *fattr = opaque; CIFS_I(inode)->uniqueid = fattr->cf_uniqueid; CIFS_I(inode)->createtime = fattr->cf_createtime; @@ -1356,11 +1410,6 @@ struct inode *cifs_root_iget(struct super_block *sb) goto out; } -#ifdef CONFIG_CIFS_FSCACHE - /* populate tcon->resource_id */ - tcon->resource_id = CIFS_I(inode)->uniqueid; -#endif - if (rc && tcon->pipe) { cifs_dbg(FYI, "ipc connection - fake read inode\n"); spin_lock(&inode->i_lock); @@ -1375,7 +1424,6 @@ struct inode *cifs_root_iget(struct super_block *sb) iget_failed(inode); inode = ERR_PTR(rc); } - out: kfree(path); free_xid(xid); @@ -1433,6 +1481,7 @@ cifs_set_file_info(struct inode *inode, struct iattr *attrs, unsigned int xid, return server->ops->set_file_info(inode, full_path, &info_buf, xid); } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY /* * Open the given file (if it isn't already), set the DELETE_ON_CLOSE bit * and rename it to a random name that hopefully won't conflict with @@ -1468,14 +1517,15 @@ cifs_rename_pending_delete(const char *full_path, struct dentry *dentry, goto out; } - oparms.tcon = tcon; - oparms.cifs_sb = cifs_sb; - oparms.desired_access = DELETE | FILE_WRITE_ATTRIBUTES; - oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR); - oparms.disposition = FILE_OPEN; - oparms.path = full_path; - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .cifs_sb = cifs_sb, + .desired_access = DELETE | FILE_WRITE_ATTRIBUTES, + .create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR), + .disposition = FILE_OPEN, + .path = full_path, + .fid = &fid, + }; rc = CIFS_open(xid, &oparms, &oplock, NULL); if (rc != 0) @@ -1563,6 +1613,7 @@ cifs_rename_pending_delete(const char *full_path, struct dentry *dentry, goto out_close; } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ /* copied from fs/nfs/dir.c with small changes */ static void @@ -1625,6 +1676,7 @@ int cifs_unlink(struct inode *dir, struct dentry *dentry) } cifs_close_deferred_file_under_dentry(tcon, full_path); +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY if (cap_unix(tcon->ses) && (CIFS_UNIX_POSIX_PATH_OPS_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability))) { rc = CIFSPOSIXDelFile(xid, tcon, full_path, @@ -1634,6 +1686,7 @@ int cifs_unlink(struct inode *dir, struct dentry *dentry) if ((rc == 0) || (rc == -ENOENT)) goto psx_del_no_retry; } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ retry_std_delete: if (!server->ops->unlink) { @@ -1712,9 +1765,11 @@ cifs_mkdir_qinfo(struct inode *parent, struct dentry *dentry, umode_t mode, if (tcon->posix_extensions) rc = smb311_posix_get_inode_info(&inode, full_path, parent->i_sb, xid); +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY else if (tcon->unix_ext) rc = cifs_get_inode_info_unix(&inode, full_path, parent->i_sb, xid); +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ else rc = cifs_get_inode_info(&inode, full_path, NULL, parent->i_sb, xid, NULL); @@ -1744,6 +1799,7 @@ cifs_mkdir_qinfo(struct inode *parent, struct dentry *dentry, umode_t mode, if (parent->i_mode & S_ISGID) mode |= S_ISGID; +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY if (tcon->unix_ext) { struct cifs_unix_set_info_args args = { .mode = mode, @@ -1766,6 +1822,9 @@ cifs_mkdir_qinfo(struct inode *parent, struct dentry *dentry, umode_t mode, cifs_sb->local_nls, cifs_remap(cifs_sb)); } else { +#else + { +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ struct TCP_Server_Info *server = tcon->ses->server; if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) && (mode & S_IWUGO) == 0 && server->ops->mkdir_setinfo) @@ -1786,6 +1845,7 @@ cifs_mkdir_qinfo(struct inode *parent, struct dentry *dentry, umode_t mode, return 0; } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY static int cifs_posix_mkdir(struct inode *inode, struct dentry *dentry, umode_t mode, const char *full_path, struct cifs_sb_info *cifs_sb, @@ -1848,6 +1908,7 @@ cifs_posix_mkdir(struct inode *inode, struct dentry *dentry, umode_t mode, xid); goto posix_mkdir_out; } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ int cifs_mkdir(struct user_namespace *mnt_userns, struct inode *inode, struct dentry *direntry, umode_t mode) @@ -1890,6 +1951,7 @@ int cifs_mkdir(struct user_namespace *mnt_userns, struct inode *inode, goto mkdir_out; } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY if (cap_unix(tcon->ses) && (CIFS_UNIX_POSIX_PATH_OPS_CAP & le64_to_cpu(tcon->fsUnixInfo.Capability))) { rc = cifs_posix_mkdir(inode, direntry, mode, full_path, cifs_sb, @@ -1897,6 +1959,7 @@ int cifs_mkdir(struct user_namespace *mnt_userns, struct inode *inode, if (rc != -EOPNOTSUPP) goto mkdir_out; } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ if (!server->ops->mkdir) { rc = -ENOSYS; @@ -2013,9 +2076,12 @@ cifs_do_rename(const unsigned int xid, struct dentry *from_dentry, struct tcon_link *tlink; struct cifs_tcon *tcon; struct TCP_Server_Info *server; +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY struct cifs_fid fid; struct cifs_open_parms oparms; - int oplock, rc; + int oplock; +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ + int rc; tlink = cifs_sb_tlink(cifs_sb); if (IS_ERR(tlink)) @@ -2041,19 +2107,21 @@ cifs_do_rename(const unsigned int xid, struct dentry *from_dentry, if (server->vals->protocol_id != 0) goto do_rename_exit; +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY /* open-file renames don't work across directories */ if (to_dentry->d_parent != from_dentry->d_parent) goto do_rename_exit; - oparms.tcon = tcon; - oparms.cifs_sb = cifs_sb; - /* open the file to be renamed -- we need DELETE perms */ - oparms.desired_access = DELETE; - oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR); - oparms.disposition = FILE_OPEN; - oparms.path = from_path; - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .cifs_sb = cifs_sb, + /* open the file to be renamed -- we need DELETE perms */ + .desired_access = DELETE, + .create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR), + .disposition = FILE_OPEN, + .path = from_path, + .fid = &fid, + }; rc = CIFS_open(xid, &oparms, &oplock, NULL); if (rc == 0) { @@ -2062,6 +2130,7 @@ cifs_do_rename(const unsigned int xid, struct dentry *from_dentry, cifs_sb->local_nls, cifs_remap(cifs_sb)); CIFSSMBClose(xid, tcon, fid.netfid); } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ do_rename_exit: if (rc == 0) d_move(from_dentry, to_dentry); @@ -2079,11 +2148,13 @@ cifs_rename2(struct user_namespace *mnt_userns, struct inode *source_dir, struct cifs_sb_info *cifs_sb; struct tcon_link *tlink; struct cifs_tcon *tcon; - FILE_UNIX_BASIC_INFO *info_buf_source = NULL; - FILE_UNIX_BASIC_INFO *info_buf_target; unsigned int xid; int rc, tmprc; int retry_count = 0; + FILE_UNIX_BASIC_INFO *info_buf_source = NULL; +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY + FILE_UNIX_BASIC_INFO *info_buf_target; +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ if (flags & ~RENAME_NOREPLACE) return -EINVAL; @@ -2137,6 +2208,7 @@ cifs_rename2(struct user_namespace *mnt_userns, struct inode *source_dir, if (flags & RENAME_NOREPLACE) goto cifs_rename_exit; +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY if (rc == -EEXIST && tcon->unix_ext) { /* * Are src and dst hardlinks of same inode? We can only tell @@ -2176,6 +2248,8 @@ cifs_rename2(struct user_namespace *mnt_userns, struct inode *source_dir, */ unlink_target: +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ + /* Try unlinking the target dentry if it's not negative */ if (d_really_is_positive(target_dentry) && (rc == -EACCES || rc == -EEXIST)) { if (d_is_dir(target_dentry)) @@ -2222,13 +2296,13 @@ cifs_dentry_needs_reval(struct dentry *dentry) return true; if (!open_cached_dir_by_dentry(tcon, dentry->d_parent, &cfid)) { - mutex_lock(&cfid->fid_mutex); + spin_lock(&cfid->fid_lock); if (cfid->time && cifs_i->time > cfid->time) { - mutex_unlock(&cfid->fid_mutex); + spin_unlock(&cfid->fid_lock); close_cached_dir(cfid); return false; } - mutex_unlock(&cfid->fid_mutex); + spin_unlock(&cfid->fid_lock); close_cached_dir(cfid); } /* @@ -2268,8 +2342,8 @@ cifs_invalidate_mapping(struct inode *inode) if (inode->i_mapping && inode->i_mapping->nrpages != 0) { rc = invalidate_inode_pages2(inode->i_mapping); if (rc) - cifs_dbg(VFS, "%s: Could not invalidate inode %p\n", - __func__, inode); + cifs_dbg(VFS, "%s: invalidate inode %p failed with rc %d\n", + __func__, inode, rc); } cifs_fscache_reset_inode_cookie(inode); @@ -2336,14 +2410,18 @@ int cifs_revalidate_file_attr(struct file *filp) { int rc = 0; struct dentry *dentry = file_dentry(filp); +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY struct cifsFileInfo *cfile = (struct cifsFileInfo *) filp->private_data; +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ if (!cifs_dentry_needs_reval(dentry)) return rc; +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY if (tlink_tcon(cfile->tlink)->unix_ext) rc = cifs_get_file_info_unix(filp); else +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ rc = cifs_get_file_info(filp); return rc; @@ -2531,7 +2609,7 @@ int cifs_fiemap(struct inode *inode, struct fiemap_extent_info *fei, u64 start, } cifsFileInfo_put(cfile); - return -ENOTSUPP; + return -EOPNOTSUPP; } int cifs_truncate_page(struct address_space *mapping, loff_t from) @@ -2652,6 +2730,7 @@ cifs_set_file_size(struct inode *inode, struct iattr *attrs, return rc; } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY static int cifs_setattr_unix(struct dentry *direntry, struct iattr *attrs) { @@ -2797,6 +2876,7 @@ cifs_setattr_unix(struct dentry *direntry, struct iattr *attrs) free_xid(xid); return rc; } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ static int cifs_setattr_nounix(struct dentry *direntry, struct iattr *attrs) @@ -2990,16 +3070,20 @@ cifs_setattr(struct user_namespace *mnt_userns, struct dentry *direntry, struct iattr *attrs) { struct cifs_sb_info *cifs_sb = CIFS_SB(direntry->d_sb); - struct cifs_tcon *pTcon = cifs_sb_master_tcon(cifs_sb); int rc, retries = 0; +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY + struct cifs_tcon *pTcon = cifs_sb_master_tcon(cifs_sb); +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ if (unlikely(cifs_forced_shutdown(cifs_sb))) return -EIO; do { +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY if (pTcon->unix_ext) rc = cifs_setattr_unix(direntry, attrs); else +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ rc = cifs_setattr_nounix(direntry, attrs); retries++; } while (is_retryable_error(rc) && retries < 2); diff --git a/fs/cifs/ioctl.c b/fs/cifs/ioctl.c index 71883ba9e5677..f7160003e0ed9 100644 --- a/fs/cifs/ioctl.c +++ b/fs/cifs/ioctl.c @@ -239,7 +239,7 @@ static int cifs_dump_full_key(struct cifs_tcon *tcon, struct smb3_full_key_debug * section, we need to make sure it won't be released * so increment its refcount */ - ses->ses_count++; + cifs_smb_ses_inc_refcount(ses); found = true; goto search_end; } @@ -321,7 +321,11 @@ long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg) struct tcon_link *tlink; struct cifs_sb_info *cifs_sb; __u64 ExtAttrBits = 0; +#ifdef CONFIG_CIFS_POSIX +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY __u64 caps; +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ +#endif /* CONFIG_CIFS_POSIX */ xid = get_xid(); @@ -331,8 +335,9 @@ long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg) if (pSMBFile == NULL) break; tcon = tlink_tcon(pSMBFile->tlink); - caps = le64_to_cpu(tcon->fsUnixInfo.Capability); #ifdef CONFIG_CIFS_POSIX +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY + caps = le64_to_cpu(tcon->fsUnixInfo.Capability); if (CIFS_UNIX_EXTATTR_CAP & caps) { __u64 ExtAttrMask = 0; rc = CIFSGetExtAttr(xid, tcon, @@ -345,6 +350,7 @@ long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg) if (rc != -EOPNOTSUPP) break; } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ #endif /* CONFIG_CIFS_POSIX */ rc = 0; if (CIFS_I(inode)->cifsAttrs & ATTR_COMPRESSED) { @@ -427,16 +433,21 @@ long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg) * Dump encryption keys. This is an old ioctl that only * handles AES-128-{CCM,GCM}. */ - if (pSMBFile == NULL) - break; if (!capable(CAP_SYS_ADMIN)) { rc = -EACCES; break; } - tcon = tlink_tcon(pSMBFile->tlink); + cifs_sb = CIFS_SB(inode->i_sb); + tlink = cifs_sb_tlink(cifs_sb); + if (IS_ERR(tlink)) { + rc = PTR_ERR(tlink); + break; + } + tcon = tlink_tcon(tlink); if (!smb3_encryption_required(tcon)) { rc = -EOPNOTSUPP; + cifs_put_tlink(tlink); break; } pkey_inf.cipher_type = @@ -453,6 +464,7 @@ long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg) rc = -EFAULT; else rc = 0; + cifs_put_tlink(tlink); break; case CIFS_DUMP_FULL_KEY: /* @@ -464,8 +476,16 @@ long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg) rc = -EACCES; break; } - tcon = tlink_tcon(pSMBFile->tlink); + cifs_sb = CIFS_SB(inode->i_sb); + tlink = cifs_sb_tlink(cifs_sb); + if (IS_ERR(tlink)) { + rc = PTR_ERR(tlink); + break; + } + + tcon = tlink_tcon(tlink); rc = cifs_dump_full_key(tcon, (void __user *)arg); + cifs_put_tlink(tlink); break; case CIFS_IOC_NOTIFY: if (!S_ISDIR(inode->i_mode)) { @@ -482,12 +502,35 @@ long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg) tcon = tlink_tcon(tlink); if (tcon && tcon->ses->server->ops->notify) { rc = tcon->ses->server->ops->notify(xid, - filep, (void __user *)arg); + filep, (void __user *)arg, + false /* no ret data */); cifs_dbg(FYI, "ioctl notify rc %d\n", rc); } else rc = -EOPNOTSUPP; cifs_put_tlink(tlink); break; + case CIFS_IOC_NOTIFY_INFO: + if (!S_ISDIR(inode->i_mode)) { + /* Notify can only be done on directories */ + rc = -EOPNOTSUPP; + break; + } + cifs_sb = CIFS_SB(inode->i_sb); + tlink = cifs_sb_tlink(cifs_sb); + if (IS_ERR(tlink)) { + rc = PTR_ERR(tlink); + break; + } + tcon = tlink_tcon(tlink); + if (tcon && tcon->ses->server->ops->notify) { + rc = tcon->ses->server->ops->notify(xid, + filep, (void __user *)arg, + true /* return details */); + cifs_dbg(FYI, "ioctl notify info rc %d\n", rc); + } else + rc = -EOPNOTSUPP; + cifs_put_tlink(tlink); + break; case CIFS_IOC_SHUTDOWN: rc = cifs_shutdown(inode->i_sb, arg); break; diff --git a/fs/cifs/link.c b/fs/cifs/link.c index 4308b27ba3464..c0f101fc1e5d0 100644 --- a/fs/cifs/link.c +++ b/fs/cifs/link.c @@ -38,29 +38,28 @@ static int symlink_hash(unsigned int link_len, const char *link_str, u8 *md5_hash) { int rc; - struct crypto_shash *md5 = NULL; - struct sdesc *sdescmd5 = NULL; + struct shash_desc *md5 = NULL; - rc = cifs_alloc_hash("md5", &md5, &sdescmd5); + rc = cifs_alloc_hash("md5", &md5); if (rc) goto symlink_hash_err; - rc = crypto_shash_init(&sdescmd5->shash); + rc = crypto_shash_init(md5); if (rc) { cifs_dbg(VFS, "%s: Could not init md5 shash\n", __func__); goto symlink_hash_err; } - rc = crypto_shash_update(&sdescmd5->shash, link_str, link_len); + rc = crypto_shash_update(md5, link_str, link_len); if (rc) { cifs_dbg(VFS, "%s: Could not update with link_str\n", __func__); goto symlink_hash_err; } - rc = crypto_shash_final(&sdescmd5->shash, md5_hash); + rc = crypto_shash_final(md5, md5_hash); if (rc) cifs_dbg(VFS, "%s: Could not generate md5 hash\n", __func__); symlink_hash_err: - cifs_free_hash(&md5, &sdescmd5); + cifs_free_hash(&md5); return rc; } @@ -202,40 +201,6 @@ create_mf_symlink(const unsigned int xid, struct cifs_tcon *tcon, return rc; } -static int -query_mf_symlink(const unsigned int xid, struct cifs_tcon *tcon, - struct cifs_sb_info *cifs_sb, const unsigned char *path, - char **symlinkinfo) -{ - int rc; - u8 *buf = NULL; - unsigned int link_len = 0; - unsigned int bytes_read = 0; - - buf = kmalloc(CIFS_MF_SYMLINK_FILE_SIZE, GFP_KERNEL); - if (!buf) - return -ENOMEM; - - if (tcon->ses->server->ops->query_mf_symlink) - rc = tcon->ses->server->ops->query_mf_symlink(xid, tcon, - cifs_sb, path, buf, &bytes_read); - else - rc = -ENOSYS; - - if (rc) - goto out; - - if (bytes_read == 0) { /* not a symlink */ - rc = -EINVAL; - goto out; - } - - rc = parse_mf_symlink(buf, bytes_read, &link_len, symlinkinfo); -out: - kfree(buf); - return rc; -} - int check_mf_symlink(unsigned int xid, struct cifs_tcon *tcon, struct cifs_sb_info *cifs_sb, struct cifs_fattr *fattr, @@ -245,6 +210,7 @@ check_mf_symlink(unsigned int xid, struct cifs_tcon *tcon, u8 *buf = NULL; unsigned int link_len = 0; unsigned int bytes_read = 0; + char *symlink = NULL; if (!couldbe_mf_symlink(fattr)) /* it's not a symlink */ @@ -266,7 +232,7 @@ check_mf_symlink(unsigned int xid, struct cifs_tcon *tcon, if (bytes_read == 0) /* not a symlink */ goto out; - rc = parse_mf_symlink(buf, bytes_read, &link_len, NULL); + rc = parse_mf_symlink(buf, bytes_read, &link_len, &symlink); if (rc == -EINVAL) { /* it's not a symlink */ rc = 0; @@ -281,11 +247,13 @@ check_mf_symlink(unsigned int xid, struct cifs_tcon *tcon, fattr->cf_mode &= ~S_IFMT; fattr->cf_mode |= S_IFLNK | S_IRWXU | S_IRWXG | S_IRWXO; fattr->cf_dtype = DT_LNK; + fattr->cf_symlink_target = symlink; out: kfree(buf); return rc; } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY /* * SMB 1.0 Protocol specific functions */ @@ -303,14 +271,15 @@ cifs_query_mf_symlink(unsigned int xid, struct cifs_tcon *tcon, int buf_type = CIFS_NO_BUFFER; FILE_ALL_INFO file_info; - oparms.tcon = tcon; - oparms.cifs_sb = cifs_sb; - oparms.desired_access = GENERIC_READ; - oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR); - oparms.disposition = FILE_OPEN; - oparms.path = path; - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .cifs_sb = cifs_sb, + .desired_access = GENERIC_READ, + .create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR), + .disposition = FILE_OPEN, + .path = path, + .fid = &fid, + }; rc = CIFS_open(xid, &oparms, &oplock, &file_info); if (rc) @@ -345,14 +314,15 @@ cifs_create_mf_symlink(unsigned int xid, struct cifs_tcon *tcon, struct cifs_open_parms oparms; struct cifs_io_parms io_parms = {0}; - oparms.tcon = tcon; - oparms.cifs_sb = cifs_sb; - oparms.desired_access = GENERIC_WRITE; - oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR); - oparms.disposition = FILE_CREATE; - oparms.path = path; - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .cifs_sb = cifs_sb, + .desired_access = GENERIC_WRITE, + .create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR), + .disposition = FILE_CREATE, + .path = path, + .fid = &fid, + }; rc = CIFS_open(xid, &oparms, &oplock, NULL); if (rc) @@ -368,6 +338,7 @@ cifs_create_mf_symlink(unsigned int xid, struct cifs_tcon *tcon, CIFSSMBClose(xid, tcon, fid.netfid); return rc; } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ /* * SMB 2.1/SMB3 Protocol specific functions @@ -386,13 +357,15 @@ smb3_query_mf_symlink(unsigned int xid, struct cifs_tcon *tcon, __u8 oplock = SMB2_OPLOCK_LEVEL_NONE; struct smb2_file_all_info *pfile_info = NULL; - oparms.tcon = tcon; - oparms.cifs_sb = cifs_sb; - oparms.desired_access = GENERIC_READ; - oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR); - oparms.disposition = FILE_OPEN; - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .cifs_sb = cifs_sb, + .path = path, + .desired_access = GENERIC_READ, + .create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR), + .disposition = FILE_OPEN, + .fid = &fid, + }; utf16_path = cifs_convert_path_to_utf16(path, cifs_sb); if (utf16_path == NULL) @@ -452,14 +425,16 @@ smb3_create_mf_symlink(unsigned int xid, struct cifs_tcon *tcon, if (!utf16_path) return -ENOMEM; - oparms.tcon = tcon; - oparms.cifs_sb = cifs_sb; - oparms.desired_access = GENERIC_WRITE; - oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR); - oparms.disposition = FILE_CREATE; - oparms.fid = &fid; - oparms.reconnect = false; - oparms.mode = 0644; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .cifs_sb = cifs_sb, + .path = path, + .desired_access = GENERIC_WRITE, + .create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR), + .disposition = FILE_CREATE, + .fid = &fid, + .mode = 0644, + }; rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL, NULL, NULL); @@ -533,11 +508,15 @@ cifs_hardlink(struct dentry *old_file, struct inode *inode, goto cifs_hl_exit; } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY if (tcon->unix_ext) rc = CIFSUnixCreateHardLink(xid, tcon, from_name, to_name, cifs_sb->local_nls, cifs_remap(cifs_sb)); else { +#else + { +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ server = tcon->ses->server; if (!server->ops->create_hardlink) { rc = -ENOSYS; @@ -595,75 +574,6 @@ cifs_hardlink(struct dentry *old_file, struct inode *inode, return rc; } -const char * -cifs_get_link(struct dentry *direntry, struct inode *inode, - struct delayed_call *done) -{ - int rc = -ENOMEM; - unsigned int xid; - const char *full_path; - void *page; - char *target_path = NULL; - struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); - struct tcon_link *tlink = NULL; - struct cifs_tcon *tcon; - struct TCP_Server_Info *server; - - if (!direntry) - return ERR_PTR(-ECHILD); - - xid = get_xid(); - - tlink = cifs_sb_tlink(cifs_sb); - if (IS_ERR(tlink)) { - free_xid(xid); - return ERR_CAST(tlink); - } - tcon = tlink_tcon(tlink); - server = tcon->ses->server; - - page = alloc_dentry_path(); - full_path = build_path_from_dentry(direntry, page); - if (IS_ERR(full_path)) { - free_xid(xid); - cifs_put_tlink(tlink); - free_dentry_path(page); - return ERR_CAST(full_path); - } - - cifs_dbg(FYI, "Full path: %s inode = 0x%p\n", full_path, inode); - - rc = -EACCES; - /* - * First try Minshall+French Symlinks, if configured - * and fallback to UNIX Extensions Symlinks. - */ - if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS) - rc = query_mf_symlink(xid, tcon, cifs_sb, full_path, - &target_path); - - if (rc != 0 && server->ops->query_symlink) { - struct cifsInodeInfo *cifsi = CIFS_I(inode); - bool reparse_point = false; - - if (cifsi->cifsAttrs & ATTR_REPARSE) - reparse_point = true; - - rc = server->ops->query_symlink(xid, tcon, cifs_sb, full_path, - &target_path, reparse_point); - } - - free_dentry_path(page); - free_xid(xid); - cifs_put_tlink(tlink); - if (rc != 0) { - kfree(target_path); - return ERR_PTR(rc); - } - set_delayed_call(done, kfree_link, target_path); - return target_path; -} - int cifs_symlink(struct user_namespace *mnt_userns, struct inode *inode, struct dentry *direntry, const char *symname) @@ -705,10 +615,12 @@ cifs_symlink(struct user_namespace *mnt_userns, struct inode *inode, /* BB what if DFS and this volume is on different share? BB */ if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS) rc = create_mf_symlink(xid, pTcon, cifs_sb, full_path, symname); +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY else if (pTcon->unix_ext) rc = CIFSUnixCreateSymLink(xid, pTcon, full_path, symname, cifs_sb->local_nls, cifs_remap(cifs_sb)); +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ /* else rc = CIFSCreateReparseSymLink(xid, pTcon, fromName, toName, cifs_sb_target->local_nls); */ diff --git a/fs/cifs/misc.c b/fs/cifs/misc.c index 5e4dab5dfb7a3..2a99da60fc8a5 100644 --- a/fs/cifs/misc.c +++ b/fs/cifs/misc.c @@ -21,8 +21,11 @@ #include "cifsfs.h" #ifdef CONFIG_CIFS_DFS_UPCALL #include "dns_resolve.h" +#include "dfs_cache.h" +#include "dfs.h" #endif #include "fs_context.h" +#include "cached_dir.h" extern mempool_t *cifs_sm_req_poolp; extern mempool_t *cifs_req_poolp; @@ -69,12 +72,14 @@ sesInfoAlloc(void) ret_buf = kzalloc(sizeof(struct cifs_ses), GFP_KERNEL); if (ret_buf) { atomic_inc(&sesInfoAllocCount); - ret_buf->status = CifsNew; + spin_lock_init(&ret_buf->ses_lock); + ret_buf->ses_status = SES_NEW; ++ret_buf->ses_count; INIT_LIST_HEAD(&ret_buf->smb_ses_list); INIT_LIST_HEAD(&ret_buf->tcon_list); mutex_init(&ret_buf->session_mutex); spin_lock_init(&ret_buf->iface_lock); + INIT_LIST_HEAD(&ret_buf->iface_list); spin_lock_init(&ret_buf->chan_lock); } return ret_buf; @@ -83,6 +88,8 @@ sesInfoAlloc(void) void sesInfoFree(struct cifs_ses *buf_to_free) { + struct cifs_server_iface *iface = NULL, *niface = NULL; + if (buf_to_free == NULL) { cifs_dbg(FYI, "Null buffer passed to sesInfoFree\n"); return; @@ -96,7 +103,11 @@ sesInfoFree(struct cifs_ses *buf_to_free) kfree(buf_to_free->user_name); kfree(buf_to_free->domainName); kfree_sensitive(buf_to_free->auth_key.response); - kfree(buf_to_free->iface_list); + spin_lock(&buf_to_free->iface_lock); + list_for_each_entry_safe(iface, niface, &buf_to_free->iface_list, + iface_head) + kref_put(&iface->refcount, release_iface); + spin_unlock(&buf_to_free->iface_lock); kfree_sensitive(buf_to_free); } @@ -108,38 +119,45 @@ tconInfoAlloc(void) ret_buf = kzalloc(sizeof(*ret_buf), GFP_KERNEL); if (!ret_buf) return NULL; - ret_buf->crfid.fid = kzalloc(sizeof(*ret_buf->crfid.fid), GFP_KERNEL); - if (!ret_buf->crfid.fid) { + ret_buf->cfids = init_cached_dirs(); + if (!ret_buf->cfids) { kfree(ret_buf); return NULL; } atomic_inc(&tconInfoAllocCount); - ret_buf->tidStatus = CifsNew; + ret_buf->status = TID_NEW; ++ret_buf->tc_count; + spin_lock_init(&ret_buf->tc_lock); INIT_LIST_HEAD(&ret_buf->openFileList); INIT_LIST_HEAD(&ret_buf->tcon_list); spin_lock_init(&ret_buf->open_file_lock); - mutex_init(&ret_buf->crfid.fid_mutex); spin_lock_init(&ret_buf->stat_lock); atomic_set(&ret_buf->num_local_opens, 0); atomic_set(&ret_buf->num_remote_opens, 0); +#ifdef CONFIG_CIFS_DFS_UPCALL + INIT_LIST_HEAD(&ret_buf->dfs_ses_list); +#endif return ret_buf; } void -tconInfoFree(struct cifs_tcon *buf_to_free) +tconInfoFree(struct cifs_tcon *tcon) { - if (buf_to_free == NULL) { + if (tcon == NULL) { cifs_dbg(FYI, "Null buffer passed to tconInfoFree\n"); return; } + free_cached_dirs(tcon->cfids); atomic_dec(&tconInfoAllocCount); - kfree(buf_to_free->nativeFileSystem); - kfree_sensitive(buf_to_free->password); - kfree(buf_to_free->crfid.fid); - kfree(buf_to_free); + kfree(tcon->nativeFileSystem); + kfree_sensitive(tcon->password); +#ifdef CONFIG_CIFS_DFS_UPCALL + dfs_put_root_smb_sessions(&tcon->dfs_ses_list); +#endif + kfree(tcon->origin_fullpath); + kfree(tcon); } struct smb_hdr * @@ -150,7 +168,7 @@ cifs_buf_get(void) * SMB2 header is bigger than CIFS one - no problems to clean some * more bytes for CIFS. */ - size_t buf_size = sizeof(struct smb2_sync_hdr); + size_t buf_size = sizeof(struct smb2_hdr); /* * We could use negotiated size instead of max_msgsize - @@ -163,9 +181,9 @@ cifs_buf_get(void) /* clear the first few header bytes */ /* for most paths, more is cleared in header_assemble */ memset(ret_buf, 0, buf_size + 3); - atomic_inc(&bufAllocCount); + atomic_inc(&buf_alloc_count); #ifdef CONFIG_CIFS_STATS2 - atomic_inc(&totBufAllocCount); + atomic_inc(&total_buf_alloc_count); #endif /* CONFIG_CIFS_STATS2 */ return ret_buf; @@ -180,7 +198,7 @@ cifs_buf_release(void *buf_to_free) } mempool_free(buf_to_free, cifs_req_poolp); - atomic_dec(&bufAllocCount); + atomic_dec(&buf_alloc_count); return; } @@ -196,9 +214,9 @@ cifs_small_buf_get(void) ret_buf = mempool_alloc(cifs_sm_req_poolp, GFP_NOFS); /* No need to clear memory here, cleared in header assemble */ /* memset(ret_buf, 0, sizeof(struct smb_hdr) + 27);*/ - atomic_inc(&smBufAllocCount); + atomic_inc(&small_buf_alloc_count); #ifdef CONFIG_CIFS_STATS2 - atomic_inc(&totSmBufAllocCount); + atomic_inc(&total_small_buf_alloc_count); #endif /* CONFIG_CIFS_STATS2 */ return ret_buf; @@ -214,7 +232,7 @@ cifs_small_buf_release(void *buf_to_free) } mempool_free(buf_to_free, cifs_sm_req_poolp); - atomic_dec(&smBufAllocCount); + atomic_dec(&small_buf_alloc_count); return; } @@ -340,12 +358,16 @@ checkSMB(char *buf, unsigned int total_read, struct TCP_Server_Info *server) cifs_dbg(VFS, "Length less than smb header size\n"); } return -EIO; + } else if (total_read < sizeof(*smb) + 2 * smb->WordCount) { + cifs_dbg(VFS, "%s: can't read BCC due to invalid WordCount(%u)\n", + __func__, smb->WordCount); + return -EIO; } /* otherwise, there is enough to get to the BCC */ if (check_smb_hdr(smb)) return -EIO; - clc_len = smbCalcSize(smb, server); + clc_len = smbCalcSize(smb); if (4 + rfclen != total_read) { cifs_dbg(VFS, "Length read does not match RFC1001 length %d\n", @@ -391,7 +413,7 @@ is_valid_oplock_break(char *buffer, struct TCP_Server_Info *srv) { struct smb_hdr *buf = (struct smb_hdr *)buffer; struct smb_com_lock_req *pSMB = (struct smb_com_lock_req *)buf; - struct list_head *tmp, *tmp1, *tmp2; + struct TCP_Server_Info *pserver; struct cifs_ses *ses; struct cifs_tcon *tcon; struct cifsInodeInfo *pCifsInode; @@ -456,20 +478,19 @@ is_valid_oplock_break(char *buffer, struct TCP_Server_Info *srv) if (!(pSMB->LockType & LOCKING_ANDX_OPLOCK_RELEASE)) return false; + /* If server is a channel, select the primary channel */ + pserver = CIFS_SERVER_IS_CHAN(srv) ? srv->primary_server : srv; + /* look up tcon based on tid & uid */ spin_lock(&cifs_tcp_ses_lock); - list_for_each(tmp, &srv->smb_ses_list) { - ses = list_entry(tmp, struct cifs_ses, smb_ses_list); - list_for_each(tmp1, &ses->tcon_list) { - tcon = list_entry(tmp1, struct cifs_tcon, tcon_list); + list_for_each_entry(ses, &pserver->smb_ses_list, smb_ses_list) { + list_for_each_entry(tcon, &ses->tcon_list, tcon_list) { if (tcon->tid != buf->Tid) continue; cifs_stats_inc(&tcon->stats.cifs_stats.num_oplock_brks); spin_lock(&tcon->open_file_lock); - list_for_each(tmp2, &tcon->openFileList) { - netfile = list_entry(tmp2, struct cifsFileInfo, - tlist); + list_for_each_entry(netfile, &tcon->openFileList, tlist) { if (pSMB->Fid != netfile->fid.netfid) continue; @@ -521,7 +542,7 @@ cifs_autodisable_serverino(struct cifs_sb_info *cifs_sb) cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_SERVER_INUM; cifs_sb->mnt_cifs_serverino_autodisabled = true; cifs_dbg(VFS, "Autodisabling the use of server inode numbers on %s\n", - tcon ? tcon->treeName : "new server"); + tcon ? tcon->tree_name : "new server"); cifs_dbg(VFS, "The server doesn't seem to support them properly or the files might be on different servers (DFS)\n"); cifs_dbg(VFS, "Hardlinks will not be recognized on this mount. Consider mounting with the \"noserverino\" option to silence this message.\n"); @@ -758,14 +779,12 @@ void cifs_close_all_deferred_files(struct cifs_tcon *tcon) { struct cifsFileInfo *cfile; - struct list_head *tmp; struct file_list *tmp_list, *tmp_next_list; struct list_head file_head; INIT_LIST_HEAD(&file_head); spin_lock(&tcon->open_file_lock); - list_for_each(tmp, &tcon->openFileList) { - cfile = list_entry(tmp, struct cifsFileInfo, tlist); + list_for_each_entry(cfile, &tcon->openFileList, tlist) { if (delayed_work_pending(&cfile->deferred)) { if (cancel_delayed_work(&cfile->deferred)) { spin_lock(&CIFS_I(d_inode(cfile->dentry))->deferred_lock); @@ -792,7 +811,6 @@ void cifs_close_deferred_file_under_dentry(struct cifs_tcon *tcon, const char *path) { struct cifsFileInfo *cfile; - struct list_head *tmp; struct file_list *tmp_list, *tmp_next_list; struct list_head file_head; void *page; @@ -801,8 +819,7 @@ cifs_close_deferred_file_under_dentry(struct cifs_tcon *tcon, const char *path) INIT_LIST_HEAD(&file_head); page = alloc_dentry_path(); spin_lock(&tcon->open_file_lock); - list_for_each(tmp, &tcon->openFileList) { - cfile = list_entry(tmp, struct cifsFileInfo, tlist); + list_for_each_entry(cfile, &tcon->openFileList, tlist) { full_path = build_path_from_dentry(cfile->dentry, page); if (strstr(full_path, path)) { if (delayed_work_pending(&cfile->deferred)) { @@ -830,7 +847,7 @@ cifs_close_deferred_file_under_dentry(struct cifs_tcon *tcon, const char *path) free_dentry_path(page); } -/* parses DFS refferal V3 structure +/* parses DFS referral V3 structure * caller is responsible for freeing target_nodes * returns: * - on success - 0 @@ -1078,59 +1095,58 @@ setup_aio_ctx_iter(struct cifs_aio_ctx *ctx, struct iov_iter *iter, int rw) /** * cifs_alloc_hash - allocate hash and hash context together * @name: The name of the crypto hash algo - * @shash: Where to put the pointer to the hash algo - * @sdesc: Where to put the pointer to the hash descriptor + * @sdesc: SHASH descriptor where to put the pointer to the hash TFM * * The caller has to make sure @sdesc is initialized to either NULL or - * a valid context. Both can be freed via cifs_free_hash(). + * a valid context. It can be freed via cifs_free_hash(). */ int -cifs_alloc_hash(const char *name, - struct crypto_shash **shash, struct sdesc **sdesc) +cifs_alloc_hash(const char *name, struct shash_desc **sdesc) { int rc = 0; - size_t size; + struct crypto_shash *alg = NULL; - if (*sdesc != NULL) + if (*sdesc) return 0; - *shash = crypto_alloc_shash(name, 0, 0); - if (IS_ERR(*shash)) { - cifs_dbg(VFS, "Could not allocate crypto %s\n", name); - rc = PTR_ERR(*shash); - *shash = NULL; + alg = crypto_alloc_shash(name, 0, 0); + if (IS_ERR(alg)) { + cifs_dbg(VFS, "Could not allocate shash TFM '%s'\n", name); + rc = PTR_ERR(alg); *sdesc = NULL; return rc; } - size = sizeof(struct shash_desc) + crypto_shash_descsize(*shash); - *sdesc = kmalloc(size, GFP_KERNEL); + *sdesc = kmalloc(sizeof(struct shash_desc) + crypto_shash_descsize(alg), GFP_KERNEL); if (*sdesc == NULL) { - cifs_dbg(VFS, "no memory left to allocate crypto %s\n", name); - crypto_free_shash(*shash); - *shash = NULL; + cifs_dbg(VFS, "no memory left to allocate shash TFM '%s'\n", name); + crypto_free_shash(alg); return -ENOMEM; } - (*sdesc)->shash.tfm = *shash; + (*sdesc)->tfm = alg; return 0; } /** * cifs_free_hash - free hash and hash context together - * @shash: Where to find the pointer to the hash algo - * @sdesc: Where to find the pointer to the hash descriptor + * @sdesc: Where to find the pointer to the hash TFM * - * Freeing a NULL hash or context is safe. + * Freeing a NULL descriptor is safe. */ void -cifs_free_hash(struct crypto_shash **shash, struct sdesc **sdesc) +cifs_free_hash(struct shash_desc **sdesc) { - kfree(*sdesc); + if (unlikely(!sdesc) || !*sdesc) + return; + + if ((*sdesc)->tfm) { + crypto_free_shash((*sdesc)->tfm); + (*sdesc)->tfm = NULL; + } + + kfree_sensitive(*sdesc); *sdesc = NULL; - if (*shash) - crypto_free_shash(*shash); - *shash = NULL; } /** @@ -1198,20 +1214,25 @@ struct super_cb_data { struct super_block *sb; }; -static void tcp_super_cb(struct super_block *sb, void *arg) +static void tcon_super_cb(struct super_block *sb, void *arg) { struct super_cb_data *sd = arg; - struct TCP_Server_Info *server = sd->data; struct cifs_sb_info *cifs_sb; - struct cifs_tcon *tcon; + struct cifs_tcon *t1 = sd->data, *t2; if (sd->sb) return; cifs_sb = CIFS_SB(sb); - tcon = cifs_sb_master_tcon(cifs_sb); - if (tcon->ses->server == server) + t2 = cifs_sb_master_tcon(cifs_sb); + + spin_lock(&t2->tc_lock); + if (t1->ses == t2->ses && + t1->ses->server == t2->ses->server && + t2->origin_fullpath && + dfs_src_pathname_equal(t2->origin_fullpath, t1->origin_fullpath)) sd->sb = sb; + spin_unlock(&t2->tc_lock); } static struct super_block *__cifs_get_super(void (*f)(struct super_block *, void *), @@ -1237,6 +1258,7 @@ static struct super_block *__cifs_get_super(void (*f)(struct super_block *, void return sd.sb; } } + pr_warn_once("%s: could not find dfs superblock\n", __func__); return ERR_PTR(-EINVAL); } @@ -1246,9 +1268,15 @@ static void __cifs_put_super(struct super_block *sb) cifs_sb_deactive(sb); } -struct super_block *cifs_get_tcp_super(struct TCP_Server_Info *server) +struct super_block *cifs_get_dfs_tcon_super(struct cifs_tcon *tcon) { - return __cifs_get_super(tcp_super_cb, server); + spin_lock(&tcon->tc_lock); + if (!tcon->origin_fullpath) { + spin_unlock(&tcon->tc_lock); + return ERR_PTR(-ENOENT); + } + spin_unlock(&tcon->tc_lock); + return __cifs_get_super(tcon_super_cb, tcon); } void cifs_put_tcp_super(struct super_block *sb) @@ -1262,60 +1290,169 @@ int match_target_ip(struct TCP_Server_Info *server, bool *result) { int rc; - char *target, *tip = NULL; - struct sockaddr tipaddr; + char *target; + struct sockaddr_storage ss; *result = false; target = kzalloc(share_len + 3, GFP_KERNEL); - if (!target) { - rc = -ENOMEM; - goto out; - } + if (!target) + return -ENOMEM; scnprintf(target, share_len + 3, "\\\\%.*s", (int)share_len, share); cifs_dbg(FYI, "%s: target name: %s\n", __func__, target + 2); - rc = dns_resolve_server_name_to_ip(target, &tip, NULL); - if (rc < 0) - goto out; - - cifs_dbg(FYI, "%s: target ip: %s\n", __func__, tip); + rc = dns_resolve_server_name_to_ip(target, (struct sockaddr *)&ss, NULL); + kfree(target); - if (!cifs_convert_address(&tipaddr, tip, strlen(tip))) { - cifs_dbg(VFS, "%s: failed to convert target ip address\n", - __func__); - rc = -EINVAL; - goto out; - } + if (rc < 0) + return rc; - *result = cifs_match_ipaddr((struct sockaddr *)&server->dstaddr, - &tipaddr); + spin_lock(&server->srv_lock); + *result = cifs_match_ipaddr((struct sockaddr *)&server->dstaddr, (struct sockaddr *)&ss); + spin_unlock(&server->srv_lock); cifs_dbg(FYI, "%s: ip addresses match: %u\n", __func__, *result); - rc = 0; - -out: - kfree(target); - kfree(tip); - - return rc; + return 0; } int cifs_update_super_prepath(struct cifs_sb_info *cifs_sb, char *prefix) { + int rc; + kfree(cifs_sb->prepath); + cifs_sb->prepath = NULL; if (prefix && *prefix) { cifs_sb->prepath = cifs_sanitize_prepath(prefix, GFP_ATOMIC); - if (!cifs_sb->prepath) - return -ENOMEM; - - convert_delimiter(cifs_sb->prepath, CIFS_DIR_SEP(cifs_sb)); - } else - cifs_sb->prepath = NULL; + if (IS_ERR(cifs_sb->prepath)) { + rc = PTR_ERR(cifs_sb->prepath); + cifs_sb->prepath = NULL; + return rc; + } + if (cifs_sb->prepath) + convert_delimiter(cifs_sb->prepath, CIFS_DIR_SEP(cifs_sb)); + } cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_USE_PREFIX_PATH; return 0; } + +/* + * Handle weird Windows SMB server behaviour. It responds with + * STATUS_OBJECT_NAME_INVALID code to SMB2 QUERY_INFO request for + * "\\\" DFS reference, where contains + * non-ASCII unicode symbols. + */ +int cifs_inval_name_dfs_link_error(const unsigned int xid, + struct cifs_tcon *tcon, + struct cifs_sb_info *cifs_sb, + const char *full_path, + bool *islink) +{ + struct cifs_ses *ses = tcon->ses; + size_t len; + char *path; + char *ref_path; + + *islink = false; + + /* + * Fast path - skip check when @full_path doesn't have a prefix path to + * look up or tcon is not DFS. + */ + if (strlen(full_path) < 2 || !cifs_sb || + (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS) || + !is_tcon_dfs(tcon)) + return 0; + + spin_lock(&tcon->tc_lock); + if (!tcon->origin_fullpath) { + spin_unlock(&tcon->tc_lock); + return 0; + } + spin_unlock(&tcon->tc_lock); + + /* + * Slow path - tcon is DFS and @full_path has prefix path, so attempt + * to get a referral to figure out whether it is an DFS link. + */ + len = strnlen(tcon->tree_name, MAX_TREE_SIZE + 1) + strlen(full_path) + 1; + path = kmalloc(len, GFP_KERNEL); + if (!path) + return -ENOMEM; + + scnprintf(path, len, "%s%s", tcon->tree_name, full_path); + ref_path = dfs_cache_canonical_path(path + 1, cifs_sb->local_nls, + cifs_remap(cifs_sb)); + kfree(path); + + if (IS_ERR(ref_path)) { + if (PTR_ERR(ref_path) != -EINVAL) + return PTR_ERR(ref_path); + } else { + struct dfs_info3_param *refs = NULL; + int num_refs = 0; + + /* + * XXX: we are not using dfs_cache_find() here because we might + * end up filling all the DFS cache and thus potentially + * removing cached DFS targets that the client would eventually + * need during failover. + */ + ses = CIFS_DFS_ROOT_SES(ses); + if (ses->server->ops->get_dfs_refer && + !ses->server->ops->get_dfs_refer(xid, ses, ref_path, &refs, + &num_refs, cifs_sb->local_nls, + cifs_remap(cifs_sb))) + *islink = refs[0].server_type == DFS_TYPE_LINK; + free_dfs_info_array(refs, num_refs); + kfree(ref_path); + } + return 0; +} #endif + +int cifs_wait_for_server_reconnect(struct TCP_Server_Info *server, bool retry) +{ + int timeout = 10; + int rc; + + spin_lock(&server->srv_lock); + if (server->tcpStatus != CifsNeedReconnect) { + spin_unlock(&server->srv_lock); + return 0; + } + timeout *= server->nr_targets; + spin_unlock(&server->srv_lock); + + /* + * Give demultiplex thread up to 10 seconds to each target available for + * reconnect -- should be greater than cifs socket timeout which is 7 + * seconds. + * + * On "soft" mounts we wait once. Hard mounts keep retrying until + * process is killed or server comes back on-line. + */ + do { + rc = wait_event_interruptible_timeout(server->response_q, + (server->tcpStatus != CifsNeedReconnect), + timeout * HZ); + if (rc < 0) { + cifs_dbg(FYI, "%s: aborting reconnect due to received signal\n", + __func__); + return -ERESTARTSYS; + } + + /* are we still trying to reconnect? */ + spin_lock(&server->srv_lock); + if (server->tcpStatus != CifsNeedReconnect) { + spin_unlock(&server->srv_lock); + return 0; + } + spin_unlock(&server->srv_lock); + } while (retry); + + cifs_dbg(FYI, "%s: gave up waiting on reconnect\n", __func__); + return -EHOSTDOWN; +} diff --git a/fs/cifs/netmisc.c b/fs/cifs/netmisc.c index fa9fbd6a819cb..1b52e6ac431cb 100644 --- a/fs/cifs/netmisc.c +++ b/fs/cifs/netmisc.c @@ -896,10 +896,7 @@ map_and_check_smb_error(struct mid_q_entry *mid, bool logErr) if (class == ERRSRV && code == ERRbaduid) { cifs_dbg(FYI, "Server returned 0x%x, reconnecting session...\n", code); - spin_lock(&GlobalMid_Lock); - if (mid->server->tcpStatus != CifsExiting) - mid->server->tcpStatus = CifsNeedReconnect; - spin_unlock(&GlobalMid_Lock); + cifs_signal_cifsd_for_reconnect(mid->server, false); } } @@ -912,9 +909,9 @@ map_and_check_smb_error(struct mid_q_entry *mid, bool logErr) * portion, the number of word parameters and the data portion of the message */ unsigned int -smbCalcSize(void *buf, struct TCP_Server_Info *server) +smbCalcSize(void *buf) { - struct smb_hdr *ptr = (struct smb_hdr *)buf; + struct smb_hdr *ptr = buf; return (sizeof(struct smb_hdr) + (2 * ptr->WordCount) + 2 /* size of the bcc field */ + get_bcc(ptr)); } diff --git a/fs/cifs/ntlmssp.h b/fs/cifs/ntlmssp.h index 25a2b8ef88b99..2c5dde2ece588 100644 --- a/fs/cifs/ntlmssp.h +++ b/fs/cifs/ntlmssp.h @@ -40,7 +40,7 @@ #define NTLMSSP_REQUEST_NON_NT_KEY 0x400000 #define NTLMSSP_NEGOTIATE_TARGET_INFO 0x800000 /* #define reserved4 0x1000000 */ -#define NTLMSSP_NEGOTIATE_VERSION 0x2000000 /* we do not set */ +#define NTLMSSP_NEGOTIATE_VERSION 0x2000000 /* we only set for SMB2+ */ /* #define reserved3 0x4000000 */ /* #define reserved2 0x8000000 */ /* #define reserved1 0x10000000 */ @@ -83,10 +83,34 @@ typedef struct _NEGOTIATE_MESSAGE { SECURITY_BUFFER WorkstationName; /* RFC 1001 and ASCII */ /* SECURITY_BUFFER for version info not present since we do not set the version is present flag */ - char DomainString[0]; + char DomainString[]; /* followed by WorkstationString */ } __attribute__((packed)) NEGOTIATE_MESSAGE, *PNEGOTIATE_MESSAGE; +#define NTLMSSP_REVISION_W2K3 0x0F + +/* See MS-NLMP section 2.2.2.10 */ +struct ntlmssp_version { + __u8 ProductMajorVersion; + __u8 ProductMinorVersion; + __le16 ProductBuild; /* we send the cifs.ko module version here */ + __u8 Reserved[3]; + __u8 NTLMRevisionCurrent; /* currently 0x0F */ +} __packed; + +/* see MS-NLMP section 2.2.1.1 */ +struct negotiate_message { + __u8 Signature[sizeof(NTLMSSP_SIGNATURE)]; + __le32 MessageType; /* NtLmNegotiate = 1 */ + __le32 NegotiateFlags; + SECURITY_BUFFER DomainName; /* RFC 1001 style and ASCII */ + SECURITY_BUFFER WorkstationName; /* RFC 1001 and ASCII */ + struct ntlmssp_version Version; + /* SECURITY_BUFFER */ + char DomainString[]; + /* followed by WorkstationString */ +} __packed; + typedef struct _CHALLENGE_MESSAGE { __u8 Signature[sizeof(NTLMSSP_SIGNATURE)]; __le32 MessageType; /* NtLmChallenge = 2 */ @@ -111,7 +135,7 @@ typedef struct _AUTHENTICATE_MESSAGE { __le32 NegotiateFlags; /* SECURITY_BUFFER for version info not present since we do not set the version is present flag */ - char UserString[0]; + char UserString[]; } __attribute__((packed)) AUTHENTICATE_MESSAGE, *PAUTHENTICATE_MESSAGE; /* @@ -119,7 +143,15 @@ typedef struct _AUTHENTICATE_MESSAGE { */ int decode_ntlmssp_challenge(char *bcc_ptr, int blob_len, struct cifs_ses *ses); -void build_ntlmssp_negotiate_blob(unsigned char *pbuffer, struct cifs_ses *ses); +int build_ntlmssp_negotiate_blob(unsigned char **pbuffer, u16 *buflen, + struct cifs_ses *ses, + struct TCP_Server_Info *server, + const struct nls_table *nls_cp); +int build_ntlmssp_smb3_negotiate_blob(unsigned char **pbuffer, u16 *buflen, + struct cifs_ses *ses, + struct TCP_Server_Info *server, + const struct nls_table *nls_cp); int build_ntlmssp_auth_blob(unsigned char **pbuffer, u16 *buflen, struct cifs_ses *ses, + struct TCP_Server_Info *server, const struct nls_table *nls_cp); diff --git a/fs/cifs/readdir.c b/fs/cifs/readdir.c index 1929e80c09ee1..ef638086d7341 100644 --- a/fs/cifs/readdir.c +++ b/fs/cifs/readdir.c @@ -21,6 +21,7 @@ #include "cifsfs.h" #include "smb2proto.h" #include "fs_context.h" +#include "cached_dir.h" /* * To be safe - for UCS to UTF-8 with strings loaded with the rare long @@ -494,7 +495,7 @@ static char *nxt_dir_entry(char *old_entry, char *end_of_smb, int level) FIND_FILE_STANDARD_INFO *pfData; pfData = (FIND_FILE_STANDARD_INFO *)pDirInfo; - new_entry = old_entry + sizeof(FIND_FILE_STANDARD_INFO) + + new_entry = old_entry + sizeof(FIND_FILE_STANDARD_INFO) + 1 + pfData->FileNameLength; } else { u32 next_offset = le32_to_cpu(pDirInfo->NextEntryOffset); @@ -512,9 +513,9 @@ static char *nxt_dir_entry(char *old_entry, char *end_of_smb, int level) new_entry, end_of_smb, old_entry); return NULL; } else if (((level == SMB_FIND_FILE_INFO_STANDARD) && - (new_entry + sizeof(FIND_FILE_STANDARD_INFO) > end_of_smb)) + (new_entry + sizeof(FIND_FILE_STANDARD_INFO) + 1 > end_of_smb)) || ((level != SMB_FIND_FILE_INFO_STANDARD) && - (new_entry + sizeof(FILE_DIRECTORY_INFO) > end_of_smb))) { + (new_entry + sizeof(FILE_DIRECTORY_INFO) + 1 > end_of_smb))) { cifs_dbg(VFS, "search entry %p extends after end of SMB %p\n", new_entry, end_of_smb); return NULL; @@ -805,8 +806,7 @@ find_cifs_entry(const unsigned int xid, struct cifs_tcon *tcon, loff_t pos, end_of_smb = cfile->srch_inf.ntwrk_buf_start + server->ops->calc_smb_size( - cfile->srch_inf.ntwrk_buf_start, - server); + cfile->srch_inf.ntwrk_buf_start); cur_ent = cfile->srch_inf.srch_entries_start; first_entry_in_buffer = cfile->srch_inf.index_of_last_entry @@ -840,9 +840,126 @@ find_cifs_entry(const unsigned int xid, struct cifs_tcon *tcon, loff_t pos, return rc; } +static bool emit_cached_dirents(struct cached_dirents *cde, + struct dir_context *ctx) +{ + struct cached_dirent *dirent; + bool rc; + + list_for_each_entry(dirent, &cde->entries, entry) { + /* + * Skip all early entries prior to the current lseek() + * position. + */ + if (ctx->pos > dirent->pos) + continue; + /* + * We recorded the current ->pos value for the dirent + * when we stored it in the cache. + * However, this sequence of ->pos values may have holes + * in it, for example dot-dirs returned from the server + * are suppressed. + * Handle this bu forcing ctx->pos to be the same as the + * ->pos of the current dirent we emit from the cache. + * This means that when we emit these entries from the cache + * we now emit them with the same ->pos value as in the + * initial scan. + */ + ctx->pos = dirent->pos; + rc = dir_emit(ctx, dirent->name, dirent->namelen, + dirent->fattr.cf_uniqueid, + dirent->fattr.cf_dtype); + if (!rc) + return rc; + ctx->pos++; + } + return true; +} + +static void update_cached_dirents_count(struct cached_dirents *cde, + struct dir_context *ctx) +{ + if (cde->ctx != ctx) + return; + if (cde->is_valid || cde->is_failed) + return; + + cde->pos++; +} + +static void finished_cached_dirents_count(struct cached_dirents *cde, + struct dir_context *ctx) +{ + if (cde->ctx != ctx) + return; + if (cde->is_valid || cde->is_failed) + return; + if (ctx->pos != cde->pos) + return; + + cde->is_valid = 1; +} + +static void add_cached_dirent(struct cached_dirents *cde, + struct dir_context *ctx, + const char *name, int namelen, + struct cifs_fattr *fattr) +{ + struct cached_dirent *de; + + if (cde->ctx != ctx) + return; + if (cde->is_valid || cde->is_failed) + return; + if (ctx->pos != cde->pos) { + cde->is_failed = 1; + return; + } + de = kzalloc(sizeof(*de), GFP_ATOMIC); + if (de == NULL) { + cde->is_failed = 1; + return; + } + de->namelen = namelen; + de->name = kstrndup(name, namelen, GFP_ATOMIC); + if (de->name == NULL) { + kfree(de); + cde->is_failed = 1; + return; + } + de->pos = ctx->pos; + + memcpy(&de->fattr, fattr, sizeof(struct cifs_fattr)); + + list_add_tail(&de->entry, &cde->entries); +} + +static bool cifs_dir_emit(struct dir_context *ctx, + const char *name, int namelen, + struct cifs_fattr *fattr, + struct cached_fid *cfid) +{ + bool rc; + ino_t ino = cifs_uniqueid_to_ino_t(fattr->cf_uniqueid); + + rc = dir_emit(ctx, name, namelen, ino, fattr->cf_dtype); + if (!rc) + return rc; + + if (cfid) { + mutex_lock(&cfid->dirents.de_mutex); + add_cached_dirent(&cfid->dirents, ctx, name, namelen, + fattr); + mutex_unlock(&cfid->dirents.de_mutex); + } + + return rc; +} + static int cifs_filldir(char *find_entry, struct file *file, - struct dir_context *ctx, - char *scratch_buf, unsigned int max_len) + struct dir_context *ctx, + char *scratch_buf, unsigned int max_len, + struct cached_fid *cfid) { struct cifsFileInfo *file_info = file->private_data; struct super_block *sb = file_inode(file)->i_sb; @@ -851,7 +968,6 @@ static int cifs_filldir(char *find_entry, struct file *file, struct cifs_fattr fattr; struct qstr name; int rc = 0; - ino_t ino; rc = cifs_fill_dirent(&de, find_entry, file_info->srch_inf.info_level, file_info->srch_inf.unicode); @@ -895,6 +1011,8 @@ static int cifs_filldir(char *find_entry, struct file *file, cifs_unix_basic_to_fattr(&fattr, &((FILE_UNIX_INFO *)find_entry)->basic, cifs_sb); + if (S_ISLNK(fattr.cf_mode)) + fattr.cf_flags |= CIFS_FATTR_NEED_REVAL; break; case SMB_FIND_FILE_INFO_STANDARD: cifs_std_info_to_fattr(&fattr, @@ -931,8 +1049,8 @@ static int cifs_filldir(char *find_entry, struct file *file, cifs_prime_dcache(file_dentry(file), &name, &fattr); - ino = cifs_uniqueid_to_ino_t(fattr.cf_uniqueid); - return !dir_emit(ctx, name.name, name.len, ino, fattr.cf_dtype); + return !cifs_dir_emit(ctx, name.name, name.len, + &fattr, cfid); } @@ -941,8 +1059,9 @@ int cifs_readdir(struct file *file, struct dir_context *ctx) int rc = 0; unsigned int xid; int i; + struct tcon_link *tlink = NULL; struct cifs_tcon *tcon; - struct cifsFileInfo *cifsFile = NULL; + struct cifsFileInfo *cifsFile; char *current_entry; int num_to_fill = 0; char *tmp_buf = NULL; @@ -950,6 +1069,8 @@ int cifs_readdir(struct file *file, struct dir_context *ctx) unsigned int max_len; const char *full_path; void *page = alloc_dentry_path(); + struct cached_fid *cfid = NULL; + struct cifs_sb_info *cifs_sb = CIFS_FILE_SB(file); xid = get_xid(); @@ -959,6 +1080,54 @@ int cifs_readdir(struct file *file, struct dir_context *ctx) goto rddir2_exit; } + if (file->private_data == NULL) { + tlink = cifs_sb_tlink(cifs_sb); + if (IS_ERR(tlink)) + goto cache_not_found; + tcon = tlink_tcon(tlink); + } else { + cifsFile = file->private_data; + tcon = tlink_tcon(cifsFile->tlink); + } + + rc = open_cached_dir(xid, tcon, full_path, cifs_sb, false, &cfid); + cifs_put_tlink(tlink); + if (rc) + goto cache_not_found; + + mutex_lock(&cfid->dirents.de_mutex); + /* + * If this was reading from the start of the directory + * we need to initialize scanning and storing the + * directory content. + */ + if (ctx->pos == 0 && cfid->dirents.ctx == NULL) { + cfid->dirents.ctx = ctx; + cfid->dirents.pos = 2; + } + /* + * If we already have the entire directory cached then + * we can just serve the cache. + */ + if (cfid->dirents.is_valid) { + if (!dir_emit_dots(file, ctx)) { + mutex_unlock(&cfid->dirents.de_mutex); + goto rddir2_exit; + } + emit_cached_dirents(&cfid->dirents, ctx); + mutex_unlock(&cfid->dirents.de_mutex); + goto rddir2_exit; + } + mutex_unlock(&cfid->dirents.de_mutex); + + /* Drop the cache while calling initiate_cifs_search and + * find_cifs_entry in case there will be reconnects during + * query_directory. + */ + close_cached_dir(cfid); + cfid = NULL; + + cache_not_found: /* * Ensure FindFirst doesn't fail before doing filldir() for '.' and * '..'. Otherwise we won't be able to notify VFS in case of failure. @@ -977,7 +1146,6 @@ int cifs_readdir(struct file *file, struct dir_context *ctx) is in current search buffer? if it before then restart search if after then keep searching till find it */ - cifsFile = file->private_data; if (cifsFile->srch_inf.endOfSearch) { if (cifsFile->srch_inf.emptyDir) { @@ -993,20 +1161,25 @@ int cifs_readdir(struct file *file, struct dir_context *ctx) tcon = tlink_tcon(cifsFile->tlink); rc = find_cifs_entry(xid, tcon, ctx->pos, file, full_path, ¤t_entry, &num_to_fill); + open_cached_dir(xid, tcon, full_path, cifs_sb, false, &cfid); if (rc) { cifs_dbg(FYI, "fce error %d\n", rc); goto rddir2_exit; } else if (current_entry != NULL) { cifs_dbg(FYI, "entry %lld found\n", ctx->pos); } else { + if (cfid) { + mutex_lock(&cfid->dirents.de_mutex); + finished_cached_dirents_count(&cfid->dirents, ctx); + mutex_unlock(&cfid->dirents.de_mutex); + } cifs_dbg(FYI, "Could not find entry\n"); goto rddir2_exit; } cifs_dbg(FYI, "loop through %d times filling dir for net buf %p\n", num_to_fill, cifsFile->srch_inf.ntwrk_buf_start); max_len = tcon->ses->server->ops->calc_smb_size( - cifsFile->srch_inf.ntwrk_buf_start, - tcon->ses->server); + cifsFile->srch_inf.ntwrk_buf_start); end_of_smb = cifsFile->srch_inf.ntwrk_buf_start + max_len; tmp_buf = kmalloc(UNICODE_NAME_MAX, GFP_KERNEL); @@ -1028,7 +1201,7 @@ int cifs_readdir(struct file *file, struct dir_context *ctx) */ *tmp_buf = 0; rc = cifs_filldir(current_entry, file, ctx, - tmp_buf, max_len); + tmp_buf, max_len, cfid); if (rc) { if (rc > 0) rc = 0; @@ -1036,20 +1209,28 @@ int cifs_readdir(struct file *file, struct dir_context *ctx) } ctx->pos++; + if (cfid) { + mutex_lock(&cfid->dirents.de_mutex); + update_cached_dirents_count(&cfid->dirents, ctx); + mutex_unlock(&cfid->dirents.de_mutex); + } + if (ctx->pos == cifsFile->srch_inf.index_of_last_entry) { cifs_dbg(FYI, "last entry in buf at pos %lld %s\n", ctx->pos, tmp_buf); cifs_save_resume_key(current_entry, cifsFile); break; - } else - current_entry = - nxt_dir_entry(current_entry, end_of_smb, - cifsFile->srch_inf.info_level); + } + current_entry = + nxt_dir_entry(current_entry, end_of_smb, + cifsFile->srch_inf.info_level); } kfree(tmp_buf); rddir2_exit: + if (cfid) + close_cached_dir(cfid); free_dentry_path(page); free_xid(xid); return rc; diff --git a/fs/cifs/sess.c b/fs/cifs/sess.c index 0fbd0f78f361b..c57ca2050b73f 100644 --- a/fs/cifs/sess.c +++ b/fs/cifs/sess.c @@ -17,6 +17,8 @@ #include "nterr.h" #include #include +#include +#include "cifsfs.h" #include "cifs_spnego.h" #include "smb2proto.h" #include "fs_context.h" @@ -56,7 +58,7 @@ bool is_ses_using_iface(struct cifs_ses *ses, struct cifs_server_iface *iface) spin_lock(&ses->chan_lock); for (i = 0; i < ses->chan_count; i++) { - if (is_server_using_iface(ses->chans[i].server, iface)) { + if (ses->chans[i].iface == iface) { spin_unlock(&ses->chan_lock); return true; } @@ -65,16 +67,104 @@ bool is_ses_using_iface(struct cifs_ses *ses, struct cifs_server_iface *iface) return false; } +/* channel helper functions. assumed that chan_lock is held by caller. */ + +unsigned int +cifs_ses_get_chan_index(struct cifs_ses *ses, + struct TCP_Server_Info *server) +{ + unsigned int i; + + for (i = 0; i < ses->chan_count; i++) { + if (ses->chans[i].server == server) + return i; + } + + /* If we didn't find the channel, it is likely a bug */ + if (server) + cifs_dbg(VFS, "unable to get chan index for server: 0x%llx", + server->conn_id); + WARN_ON(1); + return 0; +} + +void +cifs_chan_set_in_reconnect(struct cifs_ses *ses, + struct TCP_Server_Info *server) +{ + unsigned int chan_index = cifs_ses_get_chan_index(ses, server); + + ses->chans[chan_index].in_reconnect = true; +} + +void +cifs_chan_clear_in_reconnect(struct cifs_ses *ses, + struct TCP_Server_Info *server) +{ + unsigned int chan_index = cifs_ses_get_chan_index(ses, server); + + ses->chans[chan_index].in_reconnect = false; +} + +bool +cifs_chan_in_reconnect(struct cifs_ses *ses, + struct TCP_Server_Info *server) +{ + unsigned int chan_index = cifs_ses_get_chan_index(ses, server); + + return CIFS_CHAN_IN_RECONNECT(ses, chan_index); +} + +void +cifs_chan_set_need_reconnect(struct cifs_ses *ses, + struct TCP_Server_Info *server) +{ + unsigned int chan_index = cifs_ses_get_chan_index(ses, server); + + set_bit(chan_index, &ses->chans_need_reconnect); + cifs_dbg(FYI, "Set reconnect bitmask for chan %u; now 0x%lx\n", + chan_index, ses->chans_need_reconnect); +} + +void +cifs_chan_clear_need_reconnect(struct cifs_ses *ses, + struct TCP_Server_Info *server) +{ + unsigned int chan_index = cifs_ses_get_chan_index(ses, server); + + clear_bit(chan_index, &ses->chans_need_reconnect); + cifs_dbg(FYI, "Cleared reconnect bitmask for chan %u; now 0x%lx\n", + chan_index, ses->chans_need_reconnect); +} + +bool +cifs_chan_needs_reconnect(struct cifs_ses *ses, + struct TCP_Server_Info *server) +{ + unsigned int chan_index = cifs_ses_get_chan_index(ses, server); + + return CIFS_CHAN_NEEDS_RECONNECT(ses, chan_index); +} + +bool +cifs_chan_is_iface_active(struct cifs_ses *ses, + struct TCP_Server_Info *server) +{ + unsigned int chan_index = cifs_ses_get_chan_index(ses, server); + + return ses->chans[chan_index].iface && + ses->chans[chan_index].iface->is_active; +} + /* returns number of channels added */ int cifs_try_adding_channels(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses) { + struct TCP_Server_Info *server = ses->server; int old_chan_count, new_chan_count; int left; - int i = 0; int rc = 0; int tries = 0; - struct cifs_server_iface *ifaces = NULL; - size_t iface_count; + struct cifs_server_iface *iface = NULL, *niface = NULL; spin_lock(&ses->chan_lock); @@ -82,54 +172,38 @@ int cifs_try_adding_channels(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses) left = ses->chan_max - ses->chan_count; if (left <= 0) { + spin_unlock(&ses->chan_lock); cifs_dbg(FYI, "ses already at max_channels (%zu), nothing to open\n", ses->chan_max); - spin_unlock(&ses->chan_lock); return 0; } - if (ses->server->dialect < SMB30_PROT_ID) { + if (server->dialect < SMB30_PROT_ID) { spin_unlock(&ses->chan_lock); cifs_dbg(VFS, "multichannel is not supported on this protocol version, use 3.0 or above\n"); return 0; } - if (!(ses->server->capabilities & SMB2_GLOBAL_CAP_MULTI_CHANNEL)) { - cifs_dbg(VFS, "server %s does not support multichannel\n", ses->server->hostname); + if (!(server->capabilities & SMB2_GLOBAL_CAP_MULTI_CHANNEL)) { ses->chan_max = 1; spin_unlock(&ses->chan_lock); + cifs_server_dbg(VFS, "no multichannel support\n"); return 0; } spin_unlock(&ses->chan_lock); - /* - * Make a copy of the iface list at the time and use that - * instead so as to not hold the iface spinlock for opening - * channels - */ - spin_lock(&ses->iface_lock); - iface_count = ses->iface_count; - if (iface_count <= 0) { - spin_unlock(&ses->iface_lock); - cifs_dbg(VFS, "no iface list available to open channels\n"); - return 0; - } - ifaces = kmemdup(ses->iface_list, iface_count*sizeof(*ifaces), - GFP_ATOMIC); - if (!ifaces) { - spin_unlock(&ses->iface_lock); - return 0; - } - spin_unlock(&ses->iface_lock); - /* * Keep connecting to same, fastest, iface for all channels as * long as its RSS. Try next fastest one if not RSS or channel * creation fails. */ + spin_lock(&ses->iface_lock); + iface = list_first_entry(&ses->iface_list, struct cifs_server_iface, + iface_head); + spin_unlock(&ses->iface_lock); + while (left > 0) { - struct cifs_server_iface *iface; tries++; if (tries > 3*ses->chan_max) { @@ -138,30 +212,128 @@ int cifs_try_adding_channels(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses) break; } - iface = &ifaces[i]; - if (is_ses_using_iface(ses, iface) && !iface->rss_capable) { - i = (i+1) % iface_count; - continue; + spin_lock(&ses->iface_lock); + if (!ses->iface_count) { + spin_unlock(&ses->iface_lock); + break; } - rc = cifs_ses_add_channel(cifs_sb, ses, iface); - if (rc) { - cifs_dbg(FYI, "failed to open extra channel on iface#%d rc=%d\n", - i, rc); - i = (i+1) % iface_count; - continue; + list_for_each_entry_safe_from(iface, niface, &ses->iface_list, + iface_head) { + /* skip ifaces that are unusable */ + if (!iface->is_active || + (is_ses_using_iface(ses, iface) && + !iface->rss_capable)) { + continue; + } + + /* take ref before unlock */ + kref_get(&iface->refcount); + + spin_unlock(&ses->iface_lock); + rc = cifs_ses_add_channel(cifs_sb, ses, iface); + spin_lock(&ses->iface_lock); + + if (rc) { + cifs_dbg(VFS, "failed to open extra channel on iface:%pIS rc=%d\n", + &iface->sockaddr, + rc); + kref_put(&iface->refcount, release_iface); + continue; + } + + cifs_dbg(FYI, "successfully opened new channel on iface:%pIS\n", + &iface->sockaddr); + break; } + spin_unlock(&ses->iface_lock); - cifs_dbg(FYI, "successfully opened new channel on iface#%d\n", - i); left--; new_chan_count++; } - kfree(ifaces); return new_chan_count - old_chan_count; } +/* + * update the iface for the channel if necessary. + * will return 0 when iface is updated, 1 if removed, 2 otherwise + * Must be called with chan_lock held. + */ +int +cifs_chan_update_iface(struct cifs_ses *ses, struct TCP_Server_Info *server) +{ + unsigned int chan_index; + struct cifs_server_iface *iface = NULL; + struct cifs_server_iface *old_iface = NULL; + int rc = 0; + + spin_lock(&ses->chan_lock); + chan_index = cifs_ses_get_chan_index(ses, server); + if (!chan_index) { + spin_unlock(&ses->chan_lock); + return 0; + } + + if (ses->chans[chan_index].iface) { + old_iface = ses->chans[chan_index].iface; + if (old_iface->is_active) { + spin_unlock(&ses->chan_lock); + return 1; + } + } + spin_unlock(&ses->chan_lock); + + spin_lock(&ses->iface_lock); + /* then look for a new one */ + list_for_each_entry(iface, &ses->iface_list, iface_head) { + if (!iface->is_active || + (is_ses_using_iface(ses, iface) && + !iface->rss_capable)) { + continue; + } + kref_get(&iface->refcount); + break; + } + + if (list_entry_is_head(iface, &ses->iface_list, iface_head)) { + rc = 1; + iface = NULL; + cifs_dbg(FYI, "unable to find a suitable iface\n"); + } + + /* now drop the ref to the current iface */ + if (old_iface && iface) { + cifs_dbg(FYI, "replacing iface: %pIS with %pIS\n", + &old_iface->sockaddr, + &iface->sockaddr); + kref_put(&old_iface->refcount, release_iface); + } else if (old_iface) { + cifs_dbg(FYI, "releasing ref to iface: %pIS\n", + &old_iface->sockaddr); + kref_put(&old_iface->refcount, release_iface); + } else { + WARN_ON(!iface); + cifs_dbg(FYI, "adding new iface: %pIS\n", &iface->sockaddr); + } + spin_unlock(&ses->iface_lock); + + spin_lock(&ses->chan_lock); + chan_index = cifs_ses_get_chan_index(ses, server); + ses->chans[chan_index].iface = iface; + + /* No iface is found. if secondary chan, drop connection */ + if (!iface && CIFS_SERVER_IS_CHAN(server)) + ses->chans[chan_index].server = NULL; + + spin_unlock(&ses->chan_lock); + + if (!iface && CIFS_SERVER_IS_CHAN(server)) + cifs_put_tcp_session(server, false); + + return rc; +} + /* * If server is a channel of ses, return the corresponding enclosing * cifs_chan otherwise return NULL. @@ -223,6 +395,10 @@ cifs_ses_add_channel(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses, /* Auth */ ctx.domainauto = ses->domainAuto; ctx.domainname = ses->domainName; + + /* no hostname for extra channels */ + ctx.server_hostname = ""; + ctx.username = ses->user_name; ctx.password = ses->password; ctx.sectype = ses->sectype; @@ -259,11 +435,10 @@ cifs_ses_add_channel(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses, SMB2_CLIENT_GUID_SIZE); ctx.use_client_guid = true; - chan_server = cifs_get_tcp_session(&ctx); + chan_server = cifs_get_tcp_session(&ctx, ses->server); - mutex_lock(&ses->session_mutex); spin_lock(&ses->chan_lock); - chan = ses->binding_chan = &ses->chans[ses->chan_count]; + chan = &ses->chans[ses->chan_count]; chan->server = chan_server; if (IS_ERR(chan->server)) { rc = PTR_ERR(chan->server); @@ -271,12 +446,16 @@ cifs_ses_add_channel(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses, spin_unlock(&ses->chan_lock); goto out; } - spin_unlock(&ses->chan_lock); + chan->iface = iface; + ses->chan_count++; + atomic_set(&ses->chan_seq, 0); + + /* Mark this channel as needing connect/setup */ + cifs_chan_set_need_reconnect(ses, chan->server); - spin_lock(&cifs_tcp_ses_lock); - chan->server->is_channel = true; - spin_unlock(&cifs_tcp_ses_lock); + spin_unlock(&ses->chan_lock); + mutex_lock(&ses->session_mutex); /* * We need to allocate the server crypto now as we will need * to sign packets before we generate the channel signing key @@ -285,46 +464,47 @@ cifs_ses_add_channel(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses, rc = smb311_crypto_shash_allocate(chan->server); if (rc) { cifs_dbg(VFS, "%s: crypto alloc failed\n", __func__); + mutex_unlock(&ses->session_mutex); goto out; } - ses->binding = true; - rc = cifs_negotiate_protocol(xid, ses); - if (rc) - goto out; - - rc = cifs_setup_session(xid, ses, cifs_sb->local_nls); - if (rc) - goto out; - - /* success, put it on the list - * XXX: sharing ses between 2 tcp servers is not possible, the - * way "internal" linked lists works in linux makes element - * only able to belong to one list - * - * the binding session is already established so the rest of - * the code should be able to look it up, no need to add the - * ses to the new server. - */ + rc = cifs_negotiate_protocol(xid, ses, chan->server); + if (!rc) + rc = cifs_setup_session(xid, ses, chan->server, cifs_sb->local_nls); - spin_lock(&ses->chan_lock); - ses->chan_count++; - atomic_set(&ses->chan_seq, 0); - spin_unlock(&ses->chan_lock); + mutex_unlock(&ses->session_mutex); out: - ses->binding = false; - ses->binding_chan = NULL; - mutex_unlock(&ses->session_mutex); + if (rc && chan->server) { + /* + * we should avoid race with these delayed works before we + * remove this channel + */ + cancel_delayed_work_sync(&chan->server->echo); + cancel_delayed_work_sync(&chan->server->reconnect); + + spin_lock(&ses->chan_lock); + /* we rely on all bits beyond chan_count to be clear */ + cifs_chan_clear_need_reconnect(ses, chan->server); + ses->chan_count--; + /* + * chan_count should never reach 0 as at least the primary + * channel is always allocated + */ + WARN_ON(ses->chan_count < 1); + spin_unlock(&ses->chan_lock); - if (rc && chan->server) cifs_put_tcp_session(chan->server, 0); + } free_xid(xid); return rc; } -static __u32 cifs_ssetup_hdr(struct cifs_ses *ses, SESSION_SETUP_ANDX *pSMB) +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY +static __u32 cifs_ssetup_hdr(struct cifs_ses *ses, + struct TCP_Server_Info *server, + SESSION_SETUP_ANDX *pSMB) { __u32 capabilities = 0; @@ -337,7 +517,7 @@ static __u32 cifs_ssetup_hdr(struct cifs_ses *ses, SESSION_SETUP_ANDX *pSMB) pSMB->req.MaxBufferSize = cpu_to_le16(min_t(u32, CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4, USHRT_MAX)); - pSMB->req.MaxMpxCount = cpu_to_le16(ses->server->maxReq); + pSMB->req.MaxMpxCount = cpu_to_le16(server->maxReq); pSMB->req.VcNumber = cpu_to_le16(1); /* Now no need to set SMBFLG_CASELESS or obsolete CANONICAL PATH */ @@ -348,7 +528,7 @@ static __u32 cifs_ssetup_hdr(struct cifs_ses *ses, SESSION_SETUP_ANDX *pSMB) capabilities = CAP_LARGE_FILES | CAP_NT_SMBS | CAP_LEVEL_II_OPLOCKS | CAP_LARGE_WRITE_X | CAP_LARGE_READ_X; - if (ses->server->sign) + if (server->sign) pSMB->req.hdr.Flags2 |= SMBFLG2_SECURITY_SIGNATURE; if (ses->capabilities & CAP_UNICODE) { @@ -414,7 +594,6 @@ static void unicode_domain_string(char **pbcc_area, struct cifs_ses *ses, *pbcc_area = bcc_ptr; } - static void unicode_ssetup_strings(char **pbcc_area, struct cifs_ses *ses, const struct nls_table *nls_cp) { @@ -424,11 +603,6 @@ static void unicode_ssetup_strings(char **pbcc_area, struct cifs_ses *ses, /* BB FIXME add check that strings total less than 335 or will need to send them as arrays */ - /* unicode strings, must be word aligned before the call */ -/* if ((long) bcc_ptr % 2) { - *bcc_ptr = 0; - bcc_ptr++; - } */ /* copy user */ if (ses->user_name == NULL) { /* null user mount */ @@ -576,14 +750,15 @@ static void decode_ascii_ssetup(char **pbcc_area, __u16 bleft, for it later, but it is not very important */ cifs_dbg(FYI, "ascii: bytes left %d\n", bleft); } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ int decode_ntlmssp_challenge(char *bcc_ptr, int blob_len, struct cifs_ses *ses) { unsigned int tioffset; /* challenge message target info area */ unsigned int tilen; /* challenge message target info area length */ - CHALLENGE_MESSAGE *pblob = (CHALLENGE_MESSAGE *)bcc_ptr; + __u32 server_flags; if (blob_len < sizeof(CHALLENGE_MESSAGE)) { cifs_dbg(VFS, "challenge blob len %d too small\n", blob_len); @@ -601,12 +776,37 @@ int decode_ntlmssp_challenge(char *bcc_ptr, int blob_len, return -EINVAL; } + server_flags = le32_to_cpu(pblob->NegotiateFlags); + cifs_dbg(FYI, "%s: negotiate=0x%08x challenge=0x%08x\n", __func__, + ses->ntlmssp->client_flags, server_flags); + + if ((ses->ntlmssp->client_flags & (NTLMSSP_NEGOTIATE_SEAL | NTLMSSP_NEGOTIATE_SIGN)) && + (!(server_flags & NTLMSSP_NEGOTIATE_56) && !(server_flags & NTLMSSP_NEGOTIATE_128))) { + cifs_dbg(VFS, "%s: requested signing/encryption but server did not return either 56-bit or 128-bit session key size\n", + __func__); + return -EINVAL; + } + if (!(server_flags & NTLMSSP_NEGOTIATE_NTLM) && !(server_flags & NTLMSSP_NEGOTIATE_EXTENDED_SEC)) { + cifs_dbg(VFS, "%s: server does not seem to support either NTLMv1 or NTLMv2\n", __func__); + return -EINVAL; + } + if (ses->server->sign && !(server_flags & NTLMSSP_NEGOTIATE_SIGN)) { + cifs_dbg(VFS, "%s: forced packet signing but server does not seem to support it\n", + __func__); + return -EOPNOTSUPP; + } + if ((ses->ntlmssp->client_flags & NTLMSSP_NEGOTIATE_KEY_XCH) && + !(server_flags & NTLMSSP_NEGOTIATE_KEY_XCH)) + pr_warn_once("%s: authentication has been weakened as server does not support key exchange\n", + __func__); + + ses->ntlmssp->server_flags = server_flags; + memcpy(ses->ntlmssp->cryptkey, pblob->Challenge, CIFS_CRYPTO_KEY_SIZE); - /* BB we could decode pblob->NegotiateFlags; some may be useful */ /* In particular we can examine sign flags */ /* BB spec says that if AvId field of MsvAvTimestamp is populated then we must set the MIC field of the AUTHENTICATE_MESSAGE */ - ses->ntlmssp->server_flags = le32_to_cpu(pblob->NegotiateFlags); + tioffset = le32_to_cpu(pblob->TargetInfoArray.BufferOffset); tilen = le16_to_cpu(pblob->TargetInfoArray.Length); if (tioffset > blob_len || tioffset + tilen > blob_len) { @@ -615,6 +815,7 @@ int decode_ntlmssp_challenge(char *bcc_ptr, int blob_len, return -EINVAL; } if (tilen) { + kfree_sensitive(ses->auth_key.response); ses->auth_key.response = kmemdup(bcc_ptr + tioffset, tilen, GFP_KERNEL); if (!ses->auth_key.response) { @@ -627,18 +828,89 @@ int decode_ntlmssp_challenge(char *bcc_ptr, int blob_len, return 0; } +static int size_of_ntlmssp_blob(struct cifs_ses *ses, int base_size) +{ + int sz = base_size + ses->auth_key.len + - CIFS_SESS_KEY_SIZE + CIFS_CPHTXT_SIZE + 2; + + if (ses->domainName) + sz += sizeof(__le16) * strnlen(ses->domainName, CIFS_MAX_DOMAINNAME_LEN); + else + sz += sizeof(__le16); + + if (ses->user_name) + sz += sizeof(__le16) * strnlen(ses->user_name, CIFS_MAX_USERNAME_LEN); + else + sz += sizeof(__le16); + + if (ses->workstation_name[0]) + sz += sizeof(__le16) * strnlen(ses->workstation_name, + ntlmssp_workstation_name_size(ses)); + else + sz += sizeof(__le16); + + return sz; +} + +static inline void cifs_security_buffer_from_str(SECURITY_BUFFER *pbuf, + char *str_value, + int str_length, + unsigned char *pstart, + unsigned char **pcur, + const struct nls_table *nls_cp) +{ + unsigned char *tmp = pstart; + int len; + + if (!pbuf) + return; + + if (!pcur) + pcur = &tmp; + + if (!str_value) { + pbuf->BufferOffset = cpu_to_le32(*pcur - pstart); + pbuf->Length = 0; + pbuf->MaximumLength = 0; + *pcur += sizeof(__le16); + } else { + len = cifs_strtoUTF16((__le16 *)*pcur, + str_value, + str_length, + nls_cp); + len *= sizeof(__le16); + pbuf->BufferOffset = cpu_to_le32(*pcur - pstart); + pbuf->Length = cpu_to_le16(len); + pbuf->MaximumLength = cpu_to_le16(len); + *pcur += len; + } +} + /* BB Move to ntlmssp.c eventually */ -/* We do not malloc the blob, it is passed in pbuffer, because - it is fixed size, and small, making this approach cleaner */ -void build_ntlmssp_negotiate_blob(unsigned char *pbuffer, - struct cifs_ses *ses) +int build_ntlmssp_negotiate_blob(unsigned char **pbuffer, + u16 *buflen, + struct cifs_ses *ses, + struct TCP_Server_Info *server, + const struct nls_table *nls_cp) { - struct TCP_Server_Info *server = cifs_ses_server(ses); - NEGOTIATE_MESSAGE *sec_blob = (NEGOTIATE_MESSAGE *)pbuffer; + int rc = 0; + NEGOTIATE_MESSAGE *sec_blob; __u32 flags; + unsigned char *tmp; + int len; + + len = size_of_ntlmssp_blob(ses, sizeof(NEGOTIATE_MESSAGE)); + *pbuffer = kmalloc(len, GFP_KERNEL); + if (!*pbuffer) { + rc = -ENOMEM; + cifs_dbg(VFS, "Error %d during NTLMSSP allocation\n", rc); + *buflen = 0; + goto setup_ntlm_neg_ret; + } + sec_blob = (NEGOTIATE_MESSAGE *)*pbuffer; - memset(pbuffer, 0, sizeof(NEGOTIATE_MESSAGE)); + memset(*pbuffer, 0, sizeof(NEGOTIATE_MESSAGE)); memcpy(sec_blob->Signature, NTLMSSP_SIGNATURE, 8); sec_blob->MessageType = NtLmNegotiate; @@ -646,51 +918,113 @@ void build_ntlmssp_negotiate_blob(unsigned char *pbuffer, flags = NTLMSSP_NEGOTIATE_56 | NTLMSSP_REQUEST_TARGET | NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_UNICODE | NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_EXTENDED_SEC | - NTLMSSP_NEGOTIATE_SEAL; - if (server->sign) - flags |= NTLMSSP_NEGOTIATE_SIGN; + NTLMSSP_NEGOTIATE_ALWAYS_SIGN | NTLMSSP_NEGOTIATE_SEAL | + NTLMSSP_NEGOTIATE_SIGN; if (!server->session_estab || ses->ntlmssp->sesskey_per_smbsess) flags |= NTLMSSP_NEGOTIATE_KEY_XCH; + tmp = *pbuffer + sizeof(NEGOTIATE_MESSAGE); + ses->ntlmssp->client_flags = flags; sec_blob->NegotiateFlags = cpu_to_le32(flags); - sec_blob->WorkstationName.BufferOffset = 0; - sec_blob->WorkstationName.Length = 0; - sec_blob->WorkstationName.MaximumLength = 0; + /* these fields should be null in negotiate phase MS-NLMP 3.1.5.1.1 */ + cifs_security_buffer_from_str(&sec_blob->DomainName, + NULL, + CIFS_MAX_DOMAINNAME_LEN, + *pbuffer, &tmp, + nls_cp); + + cifs_security_buffer_from_str(&sec_blob->WorkstationName, + NULL, + CIFS_MAX_WORKSTATION_LEN, + *pbuffer, &tmp, + nls_cp); - /* Domain name is sent on the Challenge not Negotiate NTLMSSP request */ - sec_blob->DomainName.BufferOffset = 0; - sec_blob->DomainName.Length = 0; - sec_blob->DomainName.MaximumLength = 0; + *buflen = tmp - *pbuffer; +setup_ntlm_neg_ret: + return rc; } -static int size_of_ntlmssp_blob(struct cifs_ses *ses) +/* + * Build ntlmssp blob with additional fields, such as version, + * supported by modern servers. For safety limit to SMB3 or later + * See notes in MS-NLMP Section 2.2.2.1 e.g. + */ +int build_ntlmssp_smb3_negotiate_blob(unsigned char **pbuffer, + u16 *buflen, + struct cifs_ses *ses, + struct TCP_Server_Info *server, + const struct nls_table *nls_cp) { - int sz = sizeof(AUTHENTICATE_MESSAGE) + ses->auth_key.len - - CIFS_SESS_KEY_SIZE + CIFS_CPHTXT_SIZE + 2; + int rc = 0; + struct negotiate_message *sec_blob; + __u32 flags; + unsigned char *tmp; + int len; - if (ses->domainName) - sz += 2 * strnlen(ses->domainName, CIFS_MAX_DOMAINNAME_LEN); - else - sz += 2; + len = size_of_ntlmssp_blob(ses, sizeof(struct negotiate_message)); + *pbuffer = kmalloc(len, GFP_KERNEL); + if (!*pbuffer) { + rc = -ENOMEM; + cifs_dbg(VFS, "Error %d during NTLMSSP allocation\n", rc); + *buflen = 0; + goto setup_ntlm_smb3_neg_ret; + } + sec_blob = (struct negotiate_message *)*pbuffer; - if (ses->user_name) - sz += 2 * strnlen(ses->user_name, CIFS_MAX_USERNAME_LEN); - else - sz += 2; + memset(*pbuffer, 0, sizeof(struct negotiate_message)); + memcpy(sec_blob->Signature, NTLMSSP_SIGNATURE, 8); + sec_blob->MessageType = NtLmNegotiate; - return sz; + /* BB is NTLMV2 session security format easier to use here? */ + flags = NTLMSSP_NEGOTIATE_56 | NTLMSSP_REQUEST_TARGET | + NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_UNICODE | + NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_EXTENDED_SEC | + NTLMSSP_NEGOTIATE_ALWAYS_SIGN | NTLMSSP_NEGOTIATE_SEAL | + NTLMSSP_NEGOTIATE_SIGN | NTLMSSP_NEGOTIATE_VERSION; + if (!server->session_estab || ses->ntlmssp->sesskey_per_smbsess) + flags |= NTLMSSP_NEGOTIATE_KEY_XCH; + + sec_blob->Version.ProductMajorVersion = LINUX_VERSION_MAJOR; + sec_blob->Version.ProductMinorVersion = LINUX_VERSION_PATCHLEVEL; + sec_blob->Version.ProductBuild = cpu_to_le16(SMB3_PRODUCT_BUILD); + sec_blob->Version.NTLMRevisionCurrent = NTLMSSP_REVISION_W2K3; + + tmp = *pbuffer + sizeof(struct negotiate_message); + ses->ntlmssp->client_flags = flags; + sec_blob->NegotiateFlags = cpu_to_le32(flags); + + /* these fields should be null in negotiate phase MS-NLMP 3.1.5.1.1 */ + cifs_security_buffer_from_str(&sec_blob->DomainName, + NULL, + CIFS_MAX_DOMAINNAME_LEN, + *pbuffer, &tmp, + nls_cp); + + cifs_security_buffer_from_str(&sec_blob->WorkstationName, + NULL, + CIFS_MAX_WORKSTATION_LEN, + *pbuffer, &tmp, + nls_cp); + + *buflen = tmp - *pbuffer; +setup_ntlm_smb3_neg_ret: + return rc; } + +/* See MS-NLMP 2.2.1.3 */ int build_ntlmssp_auth_blob(unsigned char **pbuffer, u16 *buflen, struct cifs_ses *ses, + struct TCP_Server_Info *server, const struct nls_table *nls_cp) { int rc; AUTHENTICATE_MESSAGE *sec_blob; __u32 flags; unsigned char *tmp; + int len; rc = setup_ntlmv2_rsp(ses, nls_cp); if (rc) { @@ -698,7 +1032,9 @@ int build_ntlmssp_auth_blob(unsigned char **pbuffer, *buflen = 0; goto setup_ntlmv2_ret; } - *pbuffer = kmalloc(size_of_ntlmssp_blob(ses), GFP_KERNEL); + + len = size_of_ntlmssp_blob(ses, sizeof(AUTHENTICATE_MESSAGE)); + *pbuffer = kmalloc(len, GFP_KERNEL); if (!*pbuffer) { rc = -ENOMEM; cifs_dbg(VFS, "Error %d during NTLMSSP allocation\n", rc); @@ -710,16 +1046,10 @@ int build_ntlmssp_auth_blob(unsigned char **pbuffer, memcpy(sec_blob->Signature, NTLMSSP_SIGNATURE, 8); sec_blob->MessageType = NtLmAuthenticate; - flags = NTLMSSP_NEGOTIATE_56 | - NTLMSSP_REQUEST_TARGET | NTLMSSP_NEGOTIATE_TARGET_INFO | - NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_UNICODE | - NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_EXTENDED_SEC | - NTLMSSP_NEGOTIATE_SEAL; - if (ses->server->sign) - flags |= NTLMSSP_NEGOTIATE_SIGN; - if (!ses->server->session_estab || ses->ntlmssp->sesskey_per_smbsess) - flags |= NTLMSSP_NEGOTIATE_KEY_XCH; - + flags = ses->ntlmssp->server_flags | NTLMSSP_REQUEST_TARGET | + NTLMSSP_NEGOTIATE_TARGET_INFO | NTLMSSP_NEGOTIATE_WORKSTATION_SUPPLIED; + /* we only send version information in ntlmssp negotiate, so do not set this flag */ + flags = flags & ~NTLMSSP_NEGOTIATE_VERSION; tmp = *pbuffer + sizeof(AUTHENTICATE_MESSAGE); sec_blob->NegotiateFlags = cpu_to_le32(flags); @@ -747,46 +1077,27 @@ int build_ntlmssp_auth_blob(unsigned char **pbuffer, sec_blob->NtChallengeResponse.MaximumLength = 0; } - if (ses->domainName == NULL) { - sec_blob->DomainName.BufferOffset = cpu_to_le32(tmp - *pbuffer); - sec_blob->DomainName.Length = 0; - sec_blob->DomainName.MaximumLength = 0; - tmp += 2; - } else { - int len; - len = cifs_strtoUTF16((__le16 *)tmp, ses->domainName, - CIFS_MAX_DOMAINNAME_LEN, nls_cp); - len *= 2; /* unicode is 2 bytes each */ - sec_blob->DomainName.BufferOffset = cpu_to_le32(tmp - *pbuffer); - sec_blob->DomainName.Length = cpu_to_le16(len); - sec_blob->DomainName.MaximumLength = cpu_to_le16(len); - tmp += len; - } - - if (ses->user_name == NULL) { - sec_blob->UserName.BufferOffset = cpu_to_le32(tmp - *pbuffer); - sec_blob->UserName.Length = 0; - sec_blob->UserName.MaximumLength = 0; - tmp += 2; - } else { - int len; - len = cifs_strtoUTF16((__le16 *)tmp, ses->user_name, - CIFS_MAX_USERNAME_LEN, nls_cp); - len *= 2; /* unicode is 2 bytes each */ - sec_blob->UserName.BufferOffset = cpu_to_le32(tmp - *pbuffer); - sec_blob->UserName.Length = cpu_to_le16(len); - sec_blob->UserName.MaximumLength = cpu_to_le16(len); - tmp += len; - } - - sec_blob->WorkstationName.BufferOffset = cpu_to_le32(tmp - *pbuffer); - sec_blob->WorkstationName.Length = 0; - sec_blob->WorkstationName.MaximumLength = 0; - tmp += 2; - - if (((ses->ntlmssp->server_flags & NTLMSSP_NEGOTIATE_KEY_XCH) || - (ses->ntlmssp->server_flags & NTLMSSP_NEGOTIATE_EXTENDED_SEC)) - && !calc_seckey(ses)) { + cifs_security_buffer_from_str(&sec_blob->DomainName, + ses->domainName, + CIFS_MAX_DOMAINNAME_LEN, + *pbuffer, &tmp, + nls_cp); + + cifs_security_buffer_from_str(&sec_blob->UserName, + ses->user_name, + CIFS_MAX_USERNAME_LEN, + *pbuffer, &tmp, + nls_cp); + + cifs_security_buffer_from_str(&sec_blob->WorkstationName, + ses->workstation_name, + ntlmssp_workstation_name_size(ses), + *pbuffer, &tmp, + nls_cp); + + if ((ses->ntlmssp->server_flags & NTLMSSP_NEGOTIATE_KEY_XCH) && + (!ses->server->session_estab || ses->ntlmssp->sesskey_per_smbsess) && + !calc_seckey(ses)) { memcpy(tmp, ses->ntlmssp->ciphertext, CIFS_CPHTXT_SIZE); sec_blob->SessionKey.BufferOffset = cpu_to_le32(tmp - *pbuffer); sec_blob->SessionKey.Length = cpu_to_le16(CIFS_CPHTXT_SIZE); @@ -844,6 +1155,7 @@ cifs_select_sectype(struct TCP_Server_Info *server, enum securityEnum requested) struct sess_data { unsigned int xid; struct cifs_ses *ses; + struct TCP_Server_Info *server; struct nls_table *nls_cp; void (*func)(struct sess_data *); int result; @@ -859,6 +1171,7 @@ struct sess_data { struct kvec iov[3]; }; +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY static int sess_alloc_buffer(struct sess_data *sess_data, int wct) { @@ -900,41 +1213,45 @@ sess_alloc_buffer(struct sess_data *sess_data, int wct) static void sess_free_buffer(struct sess_data *sess_data) { + struct kvec *iov = sess_data->iov; - free_rsp_buf(sess_data->buf0_type, sess_data->iov[0].iov_base); + /* + * Zero the session data before freeing, as it might contain sensitive info (keys, etc). + * Note that iov[1] is already freed by caller. + */ + if (sess_data->buf0_type != CIFS_NO_BUFFER && iov[0].iov_base) + memzero_explicit(iov[0].iov_base, iov[0].iov_len); + + free_rsp_buf(sess_data->buf0_type, iov[0].iov_base); sess_data->buf0_type = CIFS_NO_BUFFER; - kfree(sess_data->iov[2].iov_base); + kfree_sensitive(iov[2].iov_base); } static int sess_establish_session(struct sess_data *sess_data) { struct cifs_ses *ses = sess_data->ses; + struct TCP_Server_Info *server = sess_data->server; - mutex_lock(&ses->server->srv_mutex); - if (!ses->server->session_estab) { - if (ses->server->sign) { - ses->server->session_key.response = + cifs_server_lock(server); + if (!server->session_estab) { + if (server->sign) { + server->session_key.response = kmemdup(ses->auth_key.response, ses->auth_key.len, GFP_KERNEL); - if (!ses->server->session_key.response) { - mutex_unlock(&ses->server->srv_mutex); + if (!server->session_key.response) { + cifs_server_unlock(server); return -ENOMEM; } - ses->server->session_key.len = + server->session_key.len = ses->auth_key.len; } - ses->server->sequence_number = 0x2; - ses->server->session_estab = true; + server->sequence_number = 0x2; + server->session_estab = true; } - mutex_unlock(&ses->server->srv_mutex); + cifs_server_unlock(server); cifs_dbg(FYI, "CIFS session established successfully\n"); - spin_lock(&GlobalMid_Lock); - ses->status = CifsGood; - ses->need_reconnect = false; - spin_unlock(&GlobalMid_Lock); - return 0; } @@ -968,6 +1285,7 @@ sess_auth_ntlmv2(struct sess_data *sess_data) SESSION_SETUP_ANDX *pSMB; char *bcc_ptr; struct cifs_ses *ses = sess_data->ses; + struct TCP_Server_Info *server = sess_data->server; __u32 capabilities; __u16 bytes_remaining; @@ -979,7 +1297,7 @@ sess_auth_ntlmv2(struct sess_data *sess_data) pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base; bcc_ptr = sess_data->iov[2].iov_base; - capabilities = cifs_ssetup_hdr(ses, pSMB); + capabilities = cifs_ssetup_hdr(ses, server, pSMB); pSMB->req_no_secext.Capabilities = cpu_to_le32(capabilities); @@ -1008,7 +1326,7 @@ sess_auth_ntlmv2(struct sess_data *sess_data) } if (ses->capabilities & CAP_UNICODE) { - if (sess_data->iov[0].iov_len % 2) { + if (!IS_ALIGNED(sess_data->iov[0].iov_len, 2)) { *bcc_ptr = 0; bcc_ptr++; } @@ -1048,7 +1366,7 @@ sess_auth_ntlmv2(struct sess_data *sess_data) /* no string area to decode, do nothing */ } else if (smb_buf->Flags2 & SMBFLG2_UNICODE) { /* unicode string area must be word-aligned */ - if (((unsigned long) bcc_ptr - (unsigned long) smb_buf) % 2) { + if (!IS_ALIGNED((unsigned long)bcc_ptr - (unsigned long)smb_buf, 2)) { ++bcc_ptr; --bytes_remaining; } @@ -1064,7 +1382,7 @@ sess_auth_ntlmv2(struct sess_data *sess_data) sess_data->result = rc; sess_data->func = NULL; sess_free_buffer(sess_data); - kfree(ses->auth_key.response); + kfree_sensitive(ses->auth_key.response); ses->auth_key.response = NULL; } @@ -1077,6 +1395,7 @@ sess_auth_kerberos(struct sess_data *sess_data) SESSION_SETUP_ANDX *pSMB; char *bcc_ptr; struct cifs_ses *ses = sess_data->ses; + struct TCP_Server_Info *server = sess_data->server; __u32 capabilities; __u16 bytes_remaining; struct key *spnego_key = NULL; @@ -1091,9 +1410,9 @@ sess_auth_kerberos(struct sess_data *sess_data) pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base; bcc_ptr = sess_data->iov[2].iov_base; - capabilities = cifs_ssetup_hdr(ses, pSMB); + capabilities = cifs_ssetup_hdr(ses, server, pSMB); - spnego_key = cifs_get_spnego_key(ses); + spnego_key = cifs_get_spnego_key(ses, server); if (IS_ERR(spnego_key)) { rc = PTR_ERR(spnego_key); spnego_key = NULL; @@ -1112,6 +1431,7 @@ sess_auth_kerberos(struct sess_data *sess_data) goto out_put_spnego_key; } + kfree_sensitive(ses->auth_key.response); ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len, GFP_KERNEL); if (!ses->auth_key.response) { @@ -1131,8 +1451,7 @@ sess_auth_kerberos(struct sess_data *sess_data) if (ses->capabilities & CAP_UNICODE) { /* unicode strings must be word aligned */ - if ((sess_data->iov[0].iov_len - + sess_data->iov[1].iov_len) % 2) { + if (!IS_ALIGNED(sess_data->iov[0].iov_len + sess_data->iov[1].iov_len, 2)) { *bcc_ptr = 0; bcc_ptr++; } @@ -1183,7 +1502,7 @@ sess_auth_kerberos(struct sess_data *sess_data) /* no string area to decode, do nothing */ } else if (smb_buf->Flags2 & SMBFLG2_UNICODE) { /* unicode string area must be word-aligned */ - if (((unsigned long) bcc_ptr - (unsigned long) smb_buf) % 2) { + if (!IS_ALIGNED((unsigned long)bcc_ptr - (unsigned long)smb_buf, 2)) { ++bcc_ptr; --bytes_remaining; } @@ -1202,7 +1521,7 @@ sess_auth_kerberos(struct sess_data *sess_data) sess_data->result = rc; sess_data->func = NULL; sess_free_buffer(sess_data); - kfree(ses->auth_key.response); + kfree_sensitive(ses->auth_key.response); ses->auth_key.response = NULL; } @@ -1217,12 +1536,13 @@ _sess_auth_rawntlmssp_assemble_req(struct sess_data *sess_data) { SESSION_SETUP_ANDX *pSMB; struct cifs_ses *ses = sess_data->ses; + struct TCP_Server_Info *server = sess_data->server; __u32 capabilities; char *bcc_ptr; pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base; - capabilities = cifs_ssetup_hdr(ses, pSMB); + capabilities = cifs_ssetup_hdr(ses, server, pSMB); if ((pSMB->req.hdr.Flags2 & SMBFLG2_UNICODE) == 0) { cifs_dbg(VFS, "NTLMSSP requires Unicode support\n"); return -ENOSYS; @@ -1234,7 +1554,7 @@ _sess_auth_rawntlmssp_assemble_req(struct sess_data *sess_data) bcc_ptr = sess_data->iov[2].iov_base; /* unicode strings must be word aligned */ - if ((sess_data->iov[0].iov_len + sess_data->iov[1].iov_len) % 2) { + if (!IS_ALIGNED(sess_data->iov[0].iov_len + sess_data->iov[1].iov_len, 2)) { *bcc_ptr = 0; bcc_ptr++; } @@ -1256,8 +1576,10 @@ sess_auth_rawntlmssp_negotiate(struct sess_data *sess_data) struct smb_hdr *smb_buf; SESSION_SETUP_ANDX *pSMB; struct cifs_ses *ses = sess_data->ses; + struct TCP_Server_Info *server = sess_data->server; __u16 bytes_remaining; char *bcc_ptr; + unsigned char *ntlmsspblob = NULL; u16 blob_len; cifs_dbg(FYI, "rawntlmssp session setup negotiate phase\n"); @@ -1281,14 +1603,19 @@ sess_auth_rawntlmssp_negotiate(struct sess_data *sess_data) pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base; /* Build security blob before we assemble the request */ - build_ntlmssp_negotiate_blob(pSMB->req.SecurityBlob, ses); - sess_data->iov[1].iov_len = sizeof(NEGOTIATE_MESSAGE); - sess_data->iov[1].iov_base = pSMB->req.SecurityBlob; - pSMB->req.SecurityBlobLength = cpu_to_le16(sizeof(NEGOTIATE_MESSAGE)); + rc = build_ntlmssp_negotiate_blob(&ntlmsspblob, + &blob_len, ses, server, + sess_data->nls_cp); + if (rc) + goto out_free_ntlmsspblob; + + sess_data->iov[1].iov_len = blob_len; + sess_data->iov[1].iov_base = ntlmsspblob; + pSMB->req.SecurityBlobLength = cpu_to_le16(blob_len); rc = _sess_auth_rawntlmssp_assemble_req(sess_data); if (rc) - goto out; + goto out_free_ntlmsspblob; rc = sess_sendreceive(sess_data); @@ -1302,14 +1629,14 @@ sess_auth_rawntlmssp_negotiate(struct sess_data *sess_data) rc = 0; if (rc) - goto out; + goto out_free_ntlmsspblob; cifs_dbg(FYI, "rawntlmssp session setup challenge phase\n"); if (smb_buf->WordCount != 4) { rc = -EIO; cifs_dbg(VFS, "bad word count %d\n", smb_buf->WordCount); - goto out; + goto out_free_ntlmsspblob; } ses->Suid = smb_buf->Uid; /* UID left in wire format (le) */ @@ -1323,10 +1650,13 @@ sess_auth_rawntlmssp_negotiate(struct sess_data *sess_data) cifs_dbg(VFS, "bad security blob length %d\n", blob_len); rc = -EINVAL; - goto out; + goto out_free_ntlmsspblob; } rc = decode_ntlmssp_challenge(bcc_ptr, blob_len, ses); + +out_free_ntlmsspblob: + kfree_sensitive(ntlmsspblob); out: sess_free_buffer(sess_data); @@ -1336,9 +1666,9 @@ sess_auth_rawntlmssp_negotiate(struct sess_data *sess_data) } /* Else error. Cleanup */ - kfree(ses->auth_key.response); + kfree_sensitive(ses->auth_key.response); ses->auth_key.response = NULL; - kfree(ses->ntlmssp); + kfree_sensitive(ses->ntlmssp); ses->ntlmssp = NULL; sess_data->func = NULL; @@ -1352,6 +1682,7 @@ sess_auth_rawntlmssp_authenticate(struct sess_data *sess_data) struct smb_hdr *smb_buf; SESSION_SETUP_ANDX *pSMB; struct cifs_ses *ses = sess_data->ses; + struct TCP_Server_Info *server = sess_data->server; __u16 bytes_remaining; char *bcc_ptr; unsigned char *ntlmsspblob = NULL; @@ -1368,7 +1699,8 @@ sess_auth_rawntlmssp_authenticate(struct sess_data *sess_data) pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base; smb_buf = (struct smb_hdr *)pSMB; rc = build_ntlmssp_auth_blob(&ntlmsspblob, - &blob_len, ses, sess_data->nls_cp); + &blob_len, ses, server, + sess_data->nls_cp); if (rc) goto out_free_ntlmsspblob; sess_data->iov[1].iov_len = blob_len; @@ -1423,7 +1755,7 @@ sess_auth_rawntlmssp_authenticate(struct sess_data *sess_data) /* no string area to decode, do nothing */ } else if (smb_buf->Flags2 & SMBFLG2_UNICODE) { /* unicode string area must be word-aligned */ - if (((unsigned long) bcc_ptr - (unsigned long) smb_buf) % 2) { + if (!IS_ALIGNED((unsigned long)bcc_ptr - (unsigned long)smb_buf, 2)) { ++bcc_ptr; --bytes_remaining; } @@ -1435,28 +1767,30 @@ sess_auth_rawntlmssp_authenticate(struct sess_data *sess_data) } out_free_ntlmsspblob: - kfree(ntlmsspblob); + kfree_sensitive(ntlmsspblob); out: sess_free_buffer(sess_data); - if (!rc) + if (!rc) rc = sess_establish_session(sess_data); /* Cleanup */ - kfree(ses->auth_key.response); + kfree_sensitive(ses->auth_key.response); ses->auth_key.response = NULL; - kfree(ses->ntlmssp); + kfree_sensitive(ses->ntlmssp); ses->ntlmssp = NULL; sess_data->func = NULL; sess_data->result = rc; } -static int select_sec(struct cifs_ses *ses, struct sess_data *sess_data) +static int select_sec(struct sess_data *sess_data) { int type; + struct cifs_ses *ses = sess_data->ses; + struct TCP_Server_Info *server = sess_data->server; - type = cifs_select_sectype(ses->server, ses->sectype); + type = cifs_select_sectype(server, ses->sectype); cifs_dbg(FYI, "sess setup type %d\n", type); if (type == Unspecified) { cifs_dbg(VFS, "Unable to select appropriate authentication method!\n"); @@ -1487,7 +1821,8 @@ static int select_sec(struct cifs_ses *ses, struct sess_data *sess_data) } int CIFS_SessSetup(const unsigned int xid, struct cifs_ses *ses, - const struct nls_table *nls_cp) + struct TCP_Server_Info *server, + const struct nls_table *nls_cp) { int rc = 0; struct sess_data *sess_data; @@ -1501,15 +1836,16 @@ int CIFS_SessSetup(const unsigned int xid, struct cifs_ses *ses, if (!sess_data) return -ENOMEM; - rc = select_sec(ses, sess_data); - if (rc) - goto out; - sess_data->xid = xid; sess_data->ses = ses; + sess_data->server = server; sess_data->buf0_type = CIFS_NO_BUFFER; sess_data->nls_cp = (struct nls_table *) nls_cp; + rc = select_sec(sess_data); + if (rc) + goto out; + while (sess_data->func) sess_data->func(sess_data); @@ -1517,6 +1853,7 @@ int CIFS_SessSetup(const unsigned int xid, struct cifs_ses *ses, rc = sess_data->result; out: - kfree(sess_data); + kfree_sensitive(sess_data); return rc; } +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ diff --git a/fs/cifs/smb1ops.c b/fs/cifs/smb1ops.c index 41e468d06b5b0..7d1b3fc014d94 100644 --- a/fs/cifs/smb1ops.c +++ b/fs/cifs/smb1ops.c @@ -7,6 +7,7 @@ #include #include +#include #include "cifsglob.h" #include "cifsproto.h" #include "cifs_debug.h" @@ -37,10 +38,10 @@ send_nt_cancel(struct TCP_Server_Info *server, struct smb_rqst *rqst, in_buf->WordCount = 0; put_bcc(0, in_buf); - mutex_lock(&server->srv_mutex); + cifs_server_lock(server); rc = cifs_sign_smb(in_buf, server, &mid->sequence_number); if (rc) { - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); return rc; } @@ -54,7 +55,7 @@ send_nt_cancel(struct TCP_Server_Info *server, struct smb_rqst *rqst, if (rc < 0) server->sequence_number--; - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); cifs_dbg(FYI, "issued NT_CANCEL for mid %u, rc = %d\n", get_mid(in_buf), rc); @@ -91,17 +92,17 @@ cifs_find_mid(struct TCP_Server_Info *server, char *buffer) struct smb_hdr *buf = (struct smb_hdr *)buffer; struct mid_q_entry *mid; - spin_lock(&GlobalMid_Lock); + spin_lock(&server->mid_lock); list_for_each_entry(mid, &server->pending_mid_q, qhead) { if (compare_mid(mid->mid, buf) && mid->mid_state == MID_REQUEST_SUBMITTED && le16_to_cpu(mid->command) == buf->Command) { kref_get(&mid->refcount); - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->mid_lock); return mid; } } - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->mid_lock); return NULL; } @@ -163,9 +164,9 @@ cifs_get_next_mid(struct TCP_Server_Info *server) { __u64 mid = 0; __u16 last_mid, cur_mid; - bool collision; + bool collision, reconnect = false; - spin_lock(&GlobalMid_Lock); + spin_lock(&server->mid_lock); /* mid is 16 bit only for CIFS/SMB */ cur_mid = (__u16)((server->CurrentMid) & 0xffff); @@ -215,7 +216,7 @@ cifs_get_next_mid(struct TCP_Server_Info *server) * an eventual reconnect to clean out the pending_mid_q. */ if (num_mids > 32768) - server->tcpStatus = CifsNeedReconnect; + reconnect = true; if (!collision) { mid = (__u64)cur_mid; @@ -224,7 +225,12 @@ cifs_get_next_mid(struct TCP_Server_Info *server) } cur_mid++; } - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->mid_lock); + + if (reconnect) { + cifs_signal_cifsd_for_reconnect(server, false); + } + return mid; } @@ -414,14 +420,16 @@ cifs_need_neg(struct TCP_Server_Info *server) } static int -cifs_negotiate(const unsigned int xid, struct cifs_ses *ses) +cifs_negotiate(const unsigned int xid, + struct cifs_ses *ses, + struct TCP_Server_Info *server) { int rc; - rc = CIFSSMBNegotiate(xid, ses); + rc = CIFSSMBNegotiate(xid, ses, server); if (rc == -EAGAIN) { /* retry only once on 1st time connection */ - set_credits(ses->server, 1); - rc = CIFSSMBNegotiate(xid, ses); + set_credits(server, 1); + rc = CIFSSMBNegotiate(xid, ses, server); if (rc == -EAGAIN) rc = -EHOSTDOWN; } @@ -534,44 +542,49 @@ cifs_is_path_accessible(const unsigned int xid, struct cifs_tcon *tcon, return rc; } -static int -cifs_query_path_info(const unsigned int xid, struct cifs_tcon *tcon, - struct cifs_sb_info *cifs_sb, const char *full_path, - FILE_ALL_INFO *data, bool *adjustTZ, bool *symlink) +static int cifs_query_path_info(const unsigned int xid, struct cifs_tcon *tcon, + struct cifs_sb_info *cifs_sb, const char *full_path, + struct cifs_open_info_data *data, bool *adjustTZ, bool *symlink) { int rc; + FILE_ALL_INFO fi = {}; *symlink = false; /* could do find first instead but this returns more info */ - rc = CIFSSMBQPathInfo(xid, tcon, full_path, data, 0 /* not legacy */, - cifs_sb->local_nls, cifs_remap(cifs_sb)); + rc = CIFSSMBQPathInfo(xid, tcon, full_path, &fi, 0 /* not legacy */, cifs_sb->local_nls, + cifs_remap(cifs_sb)); /* * BB optimize code so we do not make the above call when server claims * no NT SMB support and the above call failed at least once - set flag * in tcon or mount. */ if ((rc == -EOPNOTSUPP) || (rc == -EINVAL)) { - rc = SMBQueryInformation(xid, tcon, full_path, data, - cifs_sb->local_nls, + rc = SMBQueryInformation(xid, tcon, full_path, &fi, cifs_sb->local_nls, cifs_remap(cifs_sb)); *adjustTZ = true; } - if (!rc && (le32_to_cpu(data->Attributes) & ATTR_REPARSE)) { + if (!rc) { int tmprc; int oplock = 0; struct cifs_fid fid; struct cifs_open_parms oparms; - oparms.tcon = tcon; - oparms.cifs_sb = cifs_sb; - oparms.desired_access = FILE_READ_ATTRIBUTES; - oparms.create_options = cifs_create_options(cifs_sb, 0); - oparms.disposition = FILE_OPEN; - oparms.path = full_path; - oparms.fid = &fid; - oparms.reconnect = false; + move_cifs_info_to_smb2(&data->fi, &fi); + + if (!(le32_to_cpu(fi.Attributes) & ATTR_REPARSE)) + return 0; + + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .cifs_sb = cifs_sb, + .desired_access = FILE_READ_ATTRIBUTES, + .create_options = cifs_create_options(cifs_sb, 0), + .disposition = FILE_OPEN, + .path = full_path, + .fid = &fid, + }; /* Need to check if this is a symbolic link or not */ tmprc = CIFS_open(xid, &oparms, &oplock, NULL); @@ -584,10 +597,9 @@ cifs_query_path_info(const unsigned int xid, struct cifs_tcon *tcon, return rc; } -static int -cifs_get_srv_inum(const unsigned int xid, struct cifs_tcon *tcon, - struct cifs_sb_info *cifs_sb, const char *full_path, - u64 *uniqueid, FILE_ALL_INFO *data) +static int cifs_get_srv_inum(const unsigned int xid, struct cifs_tcon *tcon, + struct cifs_sb_info *cifs_sb, const char *full_path, + u64 *uniqueid, struct cifs_open_info_data *unused) { /* * We can not use the IndexNumber field by default from Windows or @@ -605,11 +617,22 @@ cifs_get_srv_inum(const unsigned int xid, struct cifs_tcon *tcon, cifs_remap(cifs_sb)); } -static int -cifs_query_file_info(const unsigned int xid, struct cifs_tcon *tcon, - struct cifs_fid *fid, FILE_ALL_INFO *data) +static int cifs_query_file_info(const unsigned int xid, struct cifs_tcon *tcon, + struct cifsFileInfo *cfile, struct cifs_open_info_data *data) { - return CIFSSMBQFileInfo(xid, tcon, fid->netfid, data); + int rc; + FILE_ALL_INFO fi = {}; + + if (cfile->symlink_target) { + data->symlink_target = kstrdup(cfile->symlink_target, GFP_KERNEL); + if (!data->symlink_target) + return -ENOMEM; + } + + rc = CIFSSMBQFileInfo(xid, tcon, cfile->fid.netfid, &fi); + if (!rc) + move_cifs_info_to_smb2(&data->fi, &fi); + return rc; } static void @@ -694,19 +717,28 @@ cifs_mkdir_setinfo(struct inode *inode, const char *full_path, cifsInode->cifsAttrs = dosattrs; } -static int -cifs_open_file(const unsigned int xid, struct cifs_open_parms *oparms, - __u32 *oplock, FILE_ALL_INFO *buf) +static int cifs_open_file(const unsigned int xid, struct cifs_open_parms *oparms, __u32 *oplock, + void *buf) { + struct cifs_open_info_data *data = buf; + FILE_ALL_INFO fi = {}; + int rc; + if (!(oparms->tcon->ses->capabilities & CAP_NT_SMBS)) - return SMBLegacyOpen(xid, oparms->tcon, oparms->path, - oparms->disposition, - oparms->desired_access, - oparms->create_options, - &oparms->fid->netfid, oplock, buf, - oparms->cifs_sb->local_nls, - cifs_remap(oparms->cifs_sb)); - return CIFS_open(xid, oparms, oplock, buf); + rc = SMBLegacyOpen(xid, oparms->tcon, oparms->path, + oparms->disposition, + oparms->desired_access, + oparms->create_options, + &oparms->fid->netfid, oplock, &fi, + oparms->cifs_sb->local_nls, + cifs_remap(oparms->cifs_sb)); + else + rc = CIFS_open(xid, oparms, oplock, &fi); + + if (!rc && data) + move_cifs_info_to_smb2(&data->fi, &fi); + + return rc; } static void @@ -792,14 +824,15 @@ smb_set_file_info(struct inode *inode, const char *full_path, goto out; } - oparms.tcon = tcon; - oparms.cifs_sb = cifs_sb; - oparms.desired_access = SYNCHRONIZE | FILE_WRITE_ATTRIBUTES; - oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR); - oparms.disposition = FILE_OPEN; - oparms.path = full_path; - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .cifs_sb = cifs_sb, + .desired_access = SYNCHRONIZE | FILE_WRITE_ATTRIBUTES, + .create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR), + .disposition = FILE_OPEN, + .path = full_path, + .fid = &fid, + }; cifs_dbg(FYI, "calling SetFileInfo since SetPathInfo for times not supported by this server\n"); rc = CIFS_open(xid, &oparms, &oplock, NULL); @@ -877,7 +910,7 @@ cifs_queryfs(const unsigned int xid, struct cifs_tcon *tcon, { int rc = -EOPNOTSUPP; - buf->f_type = CIFS_MAGIC_NUMBER; + buf->f_type = CIFS_SUPER_MAGIC; /* * We could add a second check for a QFS Unix capability bit @@ -966,15 +999,16 @@ cifs_query_symlink(const unsigned int xid, struct cifs_tcon *tcon, goto out; } - oparms.tcon = tcon; - oparms.cifs_sb = cifs_sb; - oparms.desired_access = FILE_READ_ATTRIBUTES; - oparms.create_options = cifs_create_options(cifs_sb, - OPEN_REPARSE_POINT); - oparms.disposition = FILE_OPEN; - oparms.path = full_path; - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .cifs_sb = cifs_sb, + .desired_access = FILE_READ_ATTRIBUTES, + .create_options = cifs_create_options(cifs_sb, + OPEN_REPARSE_POINT), + .disposition = FILE_OPEN, + .path = full_path, + .fid = &fid, + }; rc = CIFS_open(xid, &oparms, &oplock, NULL); if (rc) @@ -1029,7 +1063,7 @@ cifs_make_node(unsigned int xid, struct inode *inode, struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); struct inode *newinode = NULL; int rc = -EPERM; - FILE_ALL_INFO *buf = NULL; + struct cifs_open_info_data buf = {}; struct cifs_io_parms io_parms; __u32 oplock = 0; struct cifs_fid fid; @@ -1061,14 +1095,14 @@ cifs_make_node(unsigned int xid, struct inode *inode, cifs_sb->local_nls, cifs_remap(cifs_sb)); if (rc) - goto out; + return rc; rc = cifs_get_inode_info_unix(&newinode, full_path, inode->i_sb, xid); if (rc == 0) d_instantiate(dentry, newinode); - goto out; + return rc; } /* @@ -1076,48 +1110,43 @@ cifs_make_node(unsigned int xid, struct inode *inode, * support block and char device (no socket & fifo) */ if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL)) - goto out; + return rc; if (!S_ISCHR(mode) && !S_ISBLK(mode)) - goto out; + return rc; cifs_dbg(FYI, "sfu compat create special file\n"); - buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL); - if (buf == NULL) { - rc = -ENOMEM; - goto out; - } - - oparms.tcon = tcon; - oparms.cifs_sb = cifs_sb; - oparms.desired_access = GENERIC_WRITE; - oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR | - CREATE_OPTION_SPECIAL); - oparms.disposition = FILE_CREATE; - oparms.path = full_path; - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .cifs_sb = cifs_sb, + .desired_access = GENERIC_WRITE, + .create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR | + CREATE_OPTION_SPECIAL), + .disposition = FILE_CREATE, + .path = full_path, + .fid = &fid, + }; if (tcon->ses->server->oplocks) oplock = REQ_OPLOCK; else oplock = 0; - rc = tcon->ses->server->ops->open(xid, &oparms, &oplock, buf); + rc = tcon->ses->server->ops->open(xid, &oparms, &oplock, &buf); if (rc) - goto out; + return rc; /* * BB Do not bother to decode buf since no local inode yet to put * timestamps in, but we can reuse it safely. */ - pdev = (struct win_dev *)buf; + pdev = (struct win_dev *)&buf.fi; io_parms.pid = current->tgid; io_parms.tcon = tcon; io_parms.offset = 0; io_parms.length = sizeof(struct win_dev); - iov[1].iov_base = buf; + iov[1].iov_base = &buf.fi; iov[1].iov_len = sizeof(struct win_dev); if (S_ISCHR(mode)) { memcpy(pdev->type, "IntxCHR", 8); @@ -1136,8 +1165,8 @@ cifs_make_node(unsigned int xid, struct inode *inode, d_drop(dentry); /* FIXME: add code here to set EAs */ -out: - kfree(buf); + + cifs_free_open_info(&buf); return rc; } diff --git a/fs/cifs/smb2file.c b/fs/cifs/smb2file.c index f5dcc4940b6da..a7475bc05cac0 100644 --- a/fs/cifs/smb2file.c +++ b/fs/cifs/smb2file.c @@ -20,40 +20,125 @@ #include "cifs_unicode.h" #include "fscache.h" #include "smb2proto.h" +#include "smb2status.h" -int -smb2_open_file(const unsigned int xid, struct cifs_open_parms *oparms, - __u32 *oplock, FILE_ALL_INFO *buf) +static struct smb2_symlink_err_rsp *symlink_data(const struct kvec *iov) +{ + struct smb2_err_rsp *err = iov->iov_base; + struct smb2_symlink_err_rsp *sym = ERR_PTR(-EINVAL); + u32 len; + + if (err->ErrorContextCount) { + struct smb2_error_context_rsp *p, *end; + + len = (u32)err->ErrorContextCount * (offsetof(struct smb2_error_context_rsp, + ErrorContextData) + + sizeof(struct smb2_symlink_err_rsp)); + if (le32_to_cpu(err->ByteCount) < len || iov->iov_len < len + sizeof(*err) + 1) + return ERR_PTR(-EINVAL); + + p = (struct smb2_error_context_rsp *)err->ErrorData; + end = (struct smb2_error_context_rsp *)((u8 *)err + iov->iov_len); + do { + if (le32_to_cpu(p->ErrorId) == SMB2_ERROR_ID_DEFAULT) { + sym = (struct smb2_symlink_err_rsp *)&p->ErrorContextData; + break; + } + cifs_dbg(FYI, "%s: skipping unhandled error context: 0x%x\n", + __func__, le32_to_cpu(p->ErrorId)); + + len = ALIGN(le32_to_cpu(p->ErrorDataLength), 8); + p = (struct smb2_error_context_rsp *)((u8 *)&p->ErrorContextData + len); + } while (p < end); + } else if (le32_to_cpu(err->ByteCount) >= sizeof(*sym) && + iov->iov_len >= SMB2_SYMLINK_STRUCT_SIZE) { + sym = (struct smb2_symlink_err_rsp *)err->ErrorData; + } + + if (!IS_ERR(sym) && (le32_to_cpu(sym->SymLinkErrorTag) != SYMLINK_ERROR_TAG || + le32_to_cpu(sym->ReparseTag) != IO_REPARSE_TAG_SYMLINK)) + sym = ERR_PTR(-EINVAL); + + return sym; +} + +int smb2_parse_symlink_response(struct cifs_sb_info *cifs_sb, const struct kvec *iov, char **path) +{ + struct smb2_symlink_err_rsp *sym; + unsigned int sub_offs, sub_len; + unsigned int print_offs, print_len; + char *s; + + if (!cifs_sb || !iov || !iov->iov_base || !iov->iov_len || !path) + return -EINVAL; + + sym = symlink_data(iov); + if (IS_ERR(sym)) + return PTR_ERR(sym); + + sub_len = le16_to_cpu(sym->SubstituteNameLength); + sub_offs = le16_to_cpu(sym->SubstituteNameOffset); + print_len = le16_to_cpu(sym->PrintNameLength); + print_offs = le16_to_cpu(sym->PrintNameOffset); + + if (iov->iov_len < SMB2_SYMLINK_STRUCT_SIZE + sub_offs + sub_len || + iov->iov_len < SMB2_SYMLINK_STRUCT_SIZE + print_offs + print_len) + return -EINVAL; + + s = cifs_strndup_from_utf16((char *)sym->PathBuffer + sub_offs, sub_len, true, + cifs_sb->local_nls); + if (!s) + return -ENOMEM; + convert_delimiter(s, '/'); + cifs_dbg(FYI, "%s: symlink target: %s\n", __func__, s); + + *path = s; + return 0; +} + +int smb2_open_file(const unsigned int xid, struct cifs_open_parms *oparms, __u32 *oplock, void *buf) { int rc; __le16 *smb2_path; - struct smb2_file_all_info *smb2_data = NULL; __u8 smb2_oplock; + struct cifs_open_info_data *data = buf; + struct smb2_file_all_info file_info = {}; + struct smb2_file_all_info *smb2_data = data ? &file_info : NULL; + struct kvec err_iov = {}; + int err_buftype = CIFS_NO_BUFFER; struct cifs_fid *fid = oparms->fid; struct network_resiliency_req nr_ioctl_req; smb2_path = cifs_convert_path_to_utf16(oparms->path, oparms->cifs_sb); - if (smb2_path == NULL) { - rc = -ENOMEM; - goto out; - } - - smb2_data = kzalloc(sizeof(struct smb2_file_all_info) + PATH_MAX * 2, - GFP_KERNEL); - if (smb2_data == NULL) { - rc = -ENOMEM; - goto out; - } + if (smb2_path == NULL) + return -ENOMEM; oparms->desired_access |= FILE_READ_ATTRIBUTES; smb2_oplock = SMB2_OPLOCK_LEVEL_BATCH; - rc = SMB2_open(xid, oparms, smb2_path, &smb2_oplock, smb2_data, NULL, - NULL, NULL); + rc = SMB2_open(xid, oparms, smb2_path, &smb2_oplock, smb2_data, NULL, &err_iov, + &err_buftype); + if (rc && data) { + struct smb2_hdr *hdr = err_iov.iov_base; + + if (unlikely(!err_iov.iov_base || err_buftype == CIFS_NO_BUFFER)) + goto out; + if (hdr->Status == STATUS_STOPPED_ON_SYMLINK) { + rc = smb2_parse_symlink_response(oparms->cifs_sb, &err_iov, + &data->symlink_target); + if (!rc) { + memset(smb2_data, 0, sizeof(*smb2_data)); + oparms->create_options |= OPEN_REPARSE_POINT; + rc = SMB2_open(xid, oparms, smb2_path, &smb2_oplock, smb2_data, + NULL, NULL, NULL); + oparms->create_options &= ~OPEN_REPARSE_POINT; + } + } + } + if (rc) goto out; - if (oparms->tcon->use_resilient) { /* default timeout is 0, servers pick default (120 seconds) */ nr_ioctl_req.Timeout = @@ -61,7 +146,6 @@ smb2_open_file(const unsigned int xid, struct cifs_open_parms *oparms, nr_ioctl_req.Reserved = 0; rc = SMB2_ioctl(xid, oparms->tcon, fid->persistent_fid, fid->volatile_fid, FSCTL_LMR_REQUEST_RESILIENCY, - true /* is_fsctl */, (char *)&nr_ioctl_req, sizeof(nr_ioctl_req), CIFSMaxBufSize, NULL, NULL /* no return info */); if (rc == -EOPNOTSUPP) { @@ -74,7 +158,7 @@ smb2_open_file(const unsigned int xid, struct cifs_open_parms *oparms, rc = 0; } - if (buf) { + if (smb2_data) { /* if open response does not have IndexNumber field - get it */ if (smb2_data->IndexNumber == 0) { rc = SMB2_get_srv_num(xid, oparms->tcon, @@ -90,12 +174,12 @@ smb2_open_file(const unsigned int xid, struct cifs_open_parms *oparms, rc = 0; } } - move_smb2_info_to_cifs(buf, smb2_data); + memcpy(&data->fi, smb2_data, sizeof(data->fi)); } *oplock = smb2_oplock; out: - kfree(smb2_data); + free_rsp_buf(err_buftype, err_iov.iov_base); kfree(smb2_path); return rc; } diff --git a/fs/cifs/smb2glob.h b/fs/cifs/smb2glob.h index ca692b2283cd3..82e916ad167c0 100644 --- a/fs/cifs/smb2glob.h +++ b/fs/cifs/smb2glob.h @@ -13,8 +13,6 @@ #ifndef _SMB2_GLOB_H #define _SMB2_GLOB_H -#define SMB2_MAGIC_NUMBER 0xFE534D42 - /* ***************************************************************** * Constants go here @@ -43,15 +41,4 @@ #define END_OF_CHAIN 4 #define RELATED_REQUEST 8 -#define SMB2_SIGNATURE_SIZE (16) -#define SMB2_NTLMV2_SESSKEY_SIZE (16) -#define SMB2_HMACSHA256_SIZE (32) -#define SMB2_CMACAES_SIZE (16) -#define SMB3_SIGNKEY_SIZE (16) -#define SMB3_GCM128_CRYPTKEY_SIZE (16) -#define SMB3_GCM256_CRYPTKEY_SIZE (32) - -/* Maximum buffer size value we can send with 1 credit */ -#define SMB2_MAX_BUFFER_SIZE 65536 - #endif /* _SMB2_GLOB_H */ diff --git a/fs/cifs/smb2inode.c b/fs/cifs/smb2inode.c index 20e9d1bcd96bb..8e696fbd72fa8 100644 --- a/fs/cifs/smb2inode.c +++ b/fs/cifs/smb2inode.c @@ -23,6 +23,8 @@ #include "smb2glob.h" #include "smb2pdu.h" #include "smb2proto.h" +#include "cached_dir.h" +#include "smb2status.h" static void free_set_inf_compound(struct smb_rqst *rqst) @@ -46,12 +48,19 @@ struct cop_vars { struct smb2_file_link_info link_info; }; -static int -smb2_compound_op(const unsigned int xid, struct cifs_tcon *tcon, - struct cifs_sb_info *cifs_sb, const char *full_path, - __u32 desired_access, __u32 create_disposition, - __u32 create_options, umode_t mode, void *ptr, int command, - struct cifsFileInfo *cfile) +/* + * note: If cfile is passed, the reference to it is dropped here. + * So make sure that you do not reuse cfile after return from this func. + * + * If passing @err_iov and @err_buftype, ensure to make them both large enough (>= 3) to hold all + * error responses. Caller is also responsible for freeing them up. + */ +static int smb2_compound_op(const unsigned int xid, struct cifs_tcon *tcon, + struct cifs_sb_info *cifs_sb, const char *full_path, + __u32 desired_access, __u32 create_disposition, __u32 create_options, + umode_t mode, void *ptr, int command, struct cifsFileInfo *cfile, + __u8 **extbuf, size_t *extbuflen, + struct kvec *err_iov, int *err_buftype) { struct cop_vars *vars = NULL; struct kvec *rsp_iov; @@ -65,6 +74,7 @@ smb2_compound_op(const unsigned int xid, struct cifs_tcon *tcon, int num_rqst = 0; int resp_buftype[3]; struct smb2_query_info_rsp *qi_rsp = NULL; + struct cifs_open_info_data *idata; int flags = 0; __u8 delete_pending[8] = {1, 0, 0, 0, 0, 0, 0, 0}; unsigned int size[2]; @@ -95,14 +105,16 @@ smb2_compound_op(const unsigned int xid, struct cifs_tcon *tcon, goto finished; } - vars->oparms.tcon = tcon; - vars->oparms.desired_access = desired_access; - vars->oparms.disposition = create_disposition; - vars->oparms.create_options = cifs_create_options(cifs_sb, create_options); - vars->oparms.fid = &fid; - vars->oparms.reconnect = false; - vars->oparms.mode = mode; - vars->oparms.cifs_sb = cifs_sb; + vars->oparms = (struct cifs_open_parms) { + .tcon = tcon, + .path = full_path, + .desired_access = desired_access, + .disposition = create_disposition, + .create_options = cifs_create_options(cifs_sb, create_options), + .fid = &fid, + .mode = mode, + .cifs_sb = cifs_sb, + }; rqst[num_rqst].rq_iov = &vars->open_iov[0]; rqst[num_rqst].rq_nvec = SMB2_CREATE_IOV_SIZE; @@ -386,25 +398,27 @@ smb2_compound_op(const unsigned int xid, struct cifs_tcon *tcon, rsp_iov); finished: - if (cfile) - cifsFileInfo_put(cfile); - SMB2_open_free(&rqst[0]); if (rc == -EREMCHG) { - pr_warn_once("server share %s deleted\n", tcon->treeName); + pr_warn_once("server share %s deleted\n", tcon->tree_name); tcon->need_reconnect = true; } switch (command) { case SMB2_OP_QUERY_INFO: + idata = ptr; + if (rc == 0 && cfile && cfile->symlink_target) { + idata->symlink_target = kstrdup(cfile->symlink_target, GFP_KERNEL); + if (!idata->symlink_target) + rc = -ENOMEM; + } if (rc == 0) { qi_rsp = (struct smb2_query_info_rsp *) rsp_iov[1].iov_base; rc = smb2_validate_and_copy_iov( le16_to_cpu(qi_rsp->OutputBufferOffset), le32_to_cpu(qi_rsp->OutputBufferLength), - &rsp_iov[1], sizeof(struct smb2_file_all_info), - ptr); + &rsp_iov[1], sizeof(idata->fi), (char *)&idata->fi); } if (rqst[1].rq_iov) SMB2_query_info_free(&rqst[1]); @@ -418,13 +432,35 @@ smb2_compound_op(const unsigned int xid, struct cifs_tcon *tcon, tcon->tid); break; case SMB2_OP_POSIX_QUERY_INFO: + idata = ptr; + if (rc == 0 && cfile && cfile->symlink_target) { + idata->symlink_target = kstrdup(cfile->symlink_target, GFP_KERNEL); + if (!idata->symlink_target) + rc = -ENOMEM; + } if (rc == 0) { qi_rsp = (struct smb2_query_info_rsp *) rsp_iov[1].iov_base; rc = smb2_validate_and_copy_iov( le16_to_cpu(qi_rsp->OutputBufferOffset), le32_to_cpu(qi_rsp->OutputBufferLength), - &rsp_iov[1], sizeof(struct smb311_posix_qinfo) /* add SIDs */, ptr); + &rsp_iov[1], sizeof(idata->posix_fi) /* add SIDs */, + (char *)&idata->posix_fi); + } + if (rc == 0) { + unsigned int length = le32_to_cpu(qi_rsp->OutputBufferLength); + + if (length > sizeof(idata->posix_fi)) { + char *base = (char *)rsp_iov[1].iov_base + + le16_to_cpu(qi_rsp->OutputBufferOffset) + + sizeof(idata->posix_fi); + *extbuflen = length - sizeof(idata->posix_fi); + *extbuf = kmemdup(base, *extbuflen, GFP_KERNEL); + if (!*extbuf) + rc = -ENOMEM; + } else { + rc = -EINVAL; + } } if (rqst[1].rq_iov) SMB2_query_info_free(&rqst[1]); @@ -489,102 +525,120 @@ smb2_compound_op(const unsigned int xid, struct cifs_tcon *tcon, free_set_inf_compound(rqst); break; } - free_rsp_buf(resp_buftype[0], rsp_iov[0].iov_base); - free_rsp_buf(resp_buftype[1], rsp_iov[1].iov_base); - free_rsp_buf(resp_buftype[2], rsp_iov[2].iov_base); + + if (cfile) + cifsFileInfo_put(cfile); + + if (rc && err_iov && err_buftype) { + memcpy(err_iov, rsp_iov, 3 * sizeof(*err_iov)); + memcpy(err_buftype, resp_buftype, 3 * sizeof(*err_buftype)); + } else { + free_rsp_buf(resp_buftype[0], rsp_iov[0].iov_base); + free_rsp_buf(resp_buftype[1], rsp_iov[1].iov_base); + free_rsp_buf(resp_buftype[2], rsp_iov[2].iov_base); + } kfree(vars); return rc; } -void -move_smb2_info_to_cifs(FILE_ALL_INFO *dst, struct smb2_file_all_info *src) -{ - memcpy(dst, src, (size_t)(&src->CurrentByteOffset) - (size_t)src); - dst->CurrentByteOffset = src->CurrentByteOffset; - dst->Mode = src->Mode; - dst->AlignmentRequirement = src->AlignmentRequirement; - dst->IndexNumber1 = 0; /* we don't use it */ -} - -int -smb2_query_path_info(const unsigned int xid, struct cifs_tcon *tcon, - struct cifs_sb_info *cifs_sb, const char *full_path, - FILE_ALL_INFO *data, bool *adjust_tz, bool *reparse) +int smb2_query_path_info(const unsigned int xid, struct cifs_tcon *tcon, + struct cifs_sb_info *cifs_sb, const char *full_path, + struct cifs_open_info_data *data, bool *adjust_tz, bool *reparse) { - int rc; - struct smb2_file_all_info *smb2_data; __u32 create_options = 0; struct cifsFileInfo *cfile; struct cached_fid *cfid = NULL; + struct kvec err_iov[3] = {}; + int err_buftype[3] = {}; + bool islink; + int rc, rc2; *adjust_tz = false; *reparse = false; - smb2_data = kzalloc(sizeof(struct smb2_file_all_info) + PATH_MAX * 2, - GFP_KERNEL); - if (smb2_data == NULL) - return -ENOMEM; - + if (strcmp(full_path, "")) + rc = -ENOENT; + else + rc = open_cached_dir(xid, tcon, full_path, cifs_sb, false, &cfid); /* If it is a root and its handle is cached then use it */ - rc = open_cached_dir(xid, tcon, full_path, cifs_sb, &cfid); if (!rc) { - if (tcon->crfid.file_all_info_is_valid) { - move_smb2_info_to_cifs(data, - &tcon->crfid.file_all_info); + if (cfid->file_all_info_is_valid) { + memcpy(&data->fi, &cfid->file_all_info, sizeof(data->fi)); } else { - rc = SMB2_query_info(xid, tcon, - cfid->fid->persistent_fid, - cfid->fid->volatile_fid, smb2_data); - if (!rc) - move_smb2_info_to_cifs(data, smb2_data); + rc = SMB2_query_info(xid, tcon, cfid->fid.persistent_fid, + cfid->fid.volatile_fid, &data->fi); } close_cached_dir(cfid); - goto out; + return rc; } cifs_get_readable_path(tcon, full_path, &cfile); - rc = smb2_compound_op(xid, tcon, cifs_sb, full_path, - FILE_READ_ATTRIBUTES, FILE_OPEN, create_options, - ACL_NO_MODE, smb2_data, SMB2_OP_QUERY_INFO, cfile); - if (rc == -EOPNOTSUPP) { - *reparse = true; - create_options |= OPEN_REPARSE_POINT; - - /* Failed on a symbolic link - query a reparse point info */ - rc = smb2_compound_op(xid, tcon, cifs_sb, full_path, - FILE_READ_ATTRIBUTES, FILE_OPEN, - create_options, ACL_NO_MODE, - smb2_data, SMB2_OP_QUERY_INFO, NULL); + rc = smb2_compound_op(xid, tcon, cifs_sb, full_path, FILE_READ_ATTRIBUTES, FILE_OPEN, + create_options, ACL_NO_MODE, data, SMB2_OP_QUERY_INFO, cfile, + NULL, NULL, err_iov, err_buftype); + if (rc) { + struct smb2_hdr *hdr = err_iov[0].iov_base; + + if (unlikely(!hdr || err_buftype[0] == CIFS_NO_BUFFER)) + goto out; + if (rc == -EOPNOTSUPP && hdr->Command == SMB2_CREATE && + hdr->Status == STATUS_STOPPED_ON_SYMLINK) { + rc = smb2_parse_symlink_response(cifs_sb, err_iov, + &data->symlink_target); + if (rc) + goto out; + + *reparse = true; + create_options |= OPEN_REPARSE_POINT; + + /* Failed on a symbolic link - query a reparse point info */ + cifs_get_readable_path(tcon, full_path, &cfile); + rc = smb2_compound_op(xid, tcon, cifs_sb, full_path, + FILE_READ_ATTRIBUTES, FILE_OPEN, + create_options, ACL_NO_MODE, data, + SMB2_OP_QUERY_INFO, cfile, NULL, NULL, + NULL, NULL); + goto out; + } else if (rc != -EREMOTE && hdr->Status == STATUS_OBJECT_NAME_INVALID) { + rc2 = cifs_inval_name_dfs_link_error(xid, tcon, cifs_sb, + full_path, &islink); + if (rc2) { + rc = rc2; + goto out; + } + if (islink) + rc = -EREMOTE; + } } - if (rc) - goto out; - move_smb2_info_to_cifs(data, smb2_data); out: - kfree(smb2_data); + free_rsp_buf(err_buftype[0], err_iov[0].iov_base); + free_rsp_buf(err_buftype[1], err_iov[1].iov_base); + free_rsp_buf(err_buftype[2], err_iov[2].iov_base); return rc; } -int -smb311_posix_query_path_info(const unsigned int xid, struct cifs_tcon *tcon, - struct cifs_sb_info *cifs_sb, const char *full_path, - struct smb311_posix_qinfo *data, bool *adjust_tz, bool *reparse) +int smb311_posix_query_path_info(const unsigned int xid, struct cifs_tcon *tcon, + struct cifs_sb_info *cifs_sb, const char *full_path, + struct cifs_open_info_data *data, + struct cifs_sid *owner, + struct cifs_sid *group, + bool *adjust_tz, bool *reparse) { int rc; __u32 create_options = 0; struct cifsFileInfo *cfile; - struct smb311_posix_qinfo *smb2_data; + struct kvec err_iov[3] = {}; + int err_buftype[3] = {}; + __u8 *sidsbuf = NULL; + __u8 *sidsbuf_end = NULL; + size_t sidsbuflen = 0; + size_t owner_len, group_len; *adjust_tz = false; *reparse = false; - /* BB TODO: Make struct larger when add support for parsing owner SIDs */ - smb2_data = kzalloc(sizeof(struct smb311_posix_qinfo), - GFP_KERNEL); - if (smb2_data == NULL) - return -ENOMEM; - /* * BB TODO: Add support for using the cached root handle. * Create SMB2_query_posix_info worker function to do non-compounded query @@ -593,28 +647,53 @@ smb311_posix_query_path_info(const unsigned int xid, struct cifs_tcon *tcon, */ cifs_get_readable_path(tcon, full_path, &cfile); - rc = smb2_compound_op(xid, tcon, cifs_sb, full_path, - FILE_READ_ATTRIBUTES, FILE_OPEN, create_options, - ACL_NO_MODE, smb2_data, SMB2_OP_POSIX_QUERY_INFO, cfile); + rc = smb2_compound_op(xid, tcon, cifs_sb, full_path, FILE_READ_ATTRIBUTES, FILE_OPEN, + create_options, ACL_NO_MODE, data, SMB2_OP_POSIX_QUERY_INFO, cfile, + &sidsbuf, &sidsbuflen, err_iov, err_buftype); if (rc == -EOPNOTSUPP) { /* BB TODO: When support for special files added to Samba re-verify this path */ + if (err_iov[0].iov_base && err_buftype[0] != CIFS_NO_BUFFER && + ((struct smb2_hdr *)err_iov[0].iov_base)->Command == SMB2_CREATE && + ((struct smb2_hdr *)err_iov[0].iov_base)->Status == STATUS_STOPPED_ON_SYMLINK) { + rc = smb2_parse_symlink_response(cifs_sb, err_iov, &data->symlink_target); + if (rc) + goto out; + } *reparse = true; create_options |= OPEN_REPARSE_POINT; /* Failed on a symbolic link - query a reparse point info */ - rc = smb2_compound_op(xid, tcon, cifs_sb, full_path, - FILE_READ_ATTRIBUTES, FILE_OPEN, - create_options, ACL_NO_MODE, - smb2_data, SMB2_OP_POSIX_QUERY_INFO, NULL); + cifs_get_readable_path(tcon, full_path, &cfile); + rc = smb2_compound_op(xid, tcon, cifs_sb, full_path, FILE_READ_ATTRIBUTES, + FILE_OPEN, create_options, ACL_NO_MODE, data, + SMB2_OP_POSIX_QUERY_INFO, cfile, + &sidsbuf, &sidsbuflen, NULL, NULL); } - if (rc) - goto out; - /* TODO: will need to allow for the 2 SIDs when add support for getting owner UID/GID */ - memcpy(data, smb2_data, sizeof(struct smb311_posix_qinfo)); + if (rc == 0) { + sidsbuf_end = sidsbuf + sidsbuflen; + + owner_len = posix_info_sid_size(sidsbuf, sidsbuf_end); + if (owner_len == -1) { + rc = -EINVAL; + goto out; + } + memcpy(owner, sidsbuf, owner_len); + + group_len = posix_info_sid_size( + sidsbuf + owner_len, sidsbuf_end); + if (group_len == -1) { + rc = -EINVAL; + goto out; + } + memcpy(group, sidsbuf + owner_len, group_len); + } out: - kfree(smb2_data); + kfree(sidsbuf); + free_rsp_buf(err_buftype[0], err_iov[0].iov_base); + free_rsp_buf(err_buftype[1], err_iov[1].iov_base); + free_rsp_buf(err_buftype[2], err_iov[2].iov_base); return rc; } @@ -626,7 +705,7 @@ smb2_mkdir(const unsigned int xid, struct inode *parent_inode, umode_t mode, return smb2_compound_op(xid, tcon, cifs_sb, name, FILE_WRITE_ATTRIBUTES, FILE_CREATE, CREATE_NOT_FILE, mode, NULL, SMB2_OP_MKDIR, - NULL); + NULL, NULL, NULL, NULL, NULL); } void @@ -648,7 +727,7 @@ smb2_mkdir_setinfo(struct inode *inode, const char *name, tmprc = smb2_compound_op(xid, tcon, cifs_sb, name, FILE_WRITE_ATTRIBUTES, FILE_CREATE, CREATE_NOT_FILE, ACL_NO_MODE, - &data, SMB2_OP_SET_INFO, cfile); + &data, SMB2_OP_SET_INFO, cfile, NULL, NULL, NULL, NULL); if (tmprc == 0) cifs_i->cifsAttrs = dosattrs; } @@ -657,9 +736,10 @@ int smb2_rmdir(const unsigned int xid, struct cifs_tcon *tcon, const char *name, struct cifs_sb_info *cifs_sb) { + drop_cached_dir_by_name(xid, tcon, name, cifs_sb); return smb2_compound_op(xid, tcon, cifs_sb, name, DELETE, FILE_OPEN, CREATE_NOT_FILE, ACL_NO_MODE, - NULL, SMB2_OP_RMDIR, NULL); + NULL, SMB2_OP_RMDIR, NULL, NULL, NULL, NULL, NULL); } int @@ -668,7 +748,7 @@ smb2_unlink(const unsigned int xid, struct cifs_tcon *tcon, const char *name, { return smb2_compound_op(xid, tcon, cifs_sb, name, DELETE, FILE_OPEN, CREATE_DELETE_ON_CLOSE | OPEN_REPARSE_POINT, - ACL_NO_MODE, NULL, SMB2_OP_DELETE, NULL); + ACL_NO_MODE, NULL, SMB2_OP_DELETE, NULL, NULL, NULL, NULL, NULL); } static int @@ -687,7 +767,7 @@ smb2_set_path_attr(const unsigned int xid, struct cifs_tcon *tcon, } rc = smb2_compound_op(xid, tcon, cifs_sb, from_name, access, FILE_OPEN, 0, ACL_NO_MODE, smb2_to_name, - command, cfile); + command, cfile, NULL, NULL, NULL, NULL); smb2_rename_path: kfree(smb2_to_name); return rc; @@ -700,6 +780,7 @@ smb2_rename_path(const unsigned int xid, struct cifs_tcon *tcon, { struct cifsFileInfo *cfile; + drop_cached_dir_by_name(xid, tcon, from_name, cifs_sb); cifs_get_writable_path(tcon, from_name, FIND_WR_WITH_DELETE, &cfile); return smb2_set_path_attr(xid, tcon, from_name, to_name, @@ -722,10 +803,12 @@ smb2_set_path_size(const unsigned int xid, struct cifs_tcon *tcon, struct cifs_sb_info *cifs_sb, bool set_alloc) { __le64 eof = cpu_to_le64(size); + struct cifsFileInfo *cfile; + cifs_get_writable_path(tcon, full_path, FIND_WR_ANY, &cfile); return smb2_compound_op(xid, tcon, cifs_sb, full_path, FILE_WRITE_DATA, FILE_OPEN, 0, ACL_NO_MODE, - &eof, SMB2_OP_SET_EOF, NULL); + &eof, SMB2_OP_SET_EOF, cfile, NULL, NULL, NULL, NULL); } int @@ -734,6 +817,8 @@ smb2_set_file_info(struct inode *inode, const char *full_path, { struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); struct tcon_link *tlink; + struct cifs_tcon *tcon; + struct cifsFileInfo *cfile; int rc; if ((buf->CreationTime == 0) && (buf->LastAccessTime == 0) && @@ -744,10 +829,13 @@ smb2_set_file_info(struct inode *inode, const char *full_path, tlink = cifs_sb_tlink(cifs_sb); if (IS_ERR(tlink)) return PTR_ERR(tlink); + tcon = tlink_tcon(tlink); - rc = smb2_compound_op(xid, tlink_tcon(tlink), cifs_sb, full_path, + cifs_get_writable_path(tcon, full_path, FIND_WR_ANY, &cfile); + rc = smb2_compound_op(xid, tcon, cifs_sb, full_path, FILE_WRITE_ATTRIBUTES, FILE_OPEN, - 0, ACL_NO_MODE, buf, SMB2_OP_SET_INFO, NULL); + 0, ACL_NO_MODE, buf, SMB2_OP_SET_INFO, cfile, + NULL, NULL, NULL, NULL); cifs_put_tlink(tlink); return rc; } diff --git a/fs/cifs/smb2maperror.c b/fs/cifs/smb2maperror.c index 181514b8770dd..194799ddd3828 100644 --- a/fs/cifs/smb2maperror.c +++ b/fs/cifs/smb2maperror.c @@ -2439,14 +2439,16 @@ smb2_print_status(__le32 status) int map_smb2_to_linux_error(char *buf, bool log_err) { - struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buf; + struct smb2_hdr *shdr = (struct smb2_hdr *)buf; unsigned int i; int rc = -EIO; __le32 smb2err = shdr->Status; if (smb2err == 0) { - trace_smb3_cmd_done(shdr->TreeId, shdr->SessionId, - le16_to_cpu(shdr->Command), le64_to_cpu(shdr->MessageId)); + trace_smb3_cmd_done(le32_to_cpu(shdr->Id.SyncId.TreeId), + le64_to_cpu(shdr->SessionId), + le16_to_cpu(shdr->Command), + le64_to_cpu(shdr->MessageId)); return 0; } @@ -2470,8 +2472,10 @@ map_smb2_to_linux_error(char *buf, bool log_err) cifs_dbg(FYI, "Mapping SMB2 status code 0x%08x to POSIX err %d\n", __le32_to_cpu(smb2err), rc); - trace_smb3_cmd_err(shdr->TreeId, shdr->SessionId, - le16_to_cpu(shdr->Command), - le64_to_cpu(shdr->MessageId), le32_to_cpu(smb2err), rc); + trace_smb3_cmd_err(le32_to_cpu(shdr->Id.SyncId.TreeId), + le64_to_cpu(shdr->SessionId), + le16_to_cpu(shdr->Command), + le64_to_cpu(shdr->MessageId), + le32_to_cpu(smb2err), rc); return rc; } diff --git a/fs/cifs/smb2misc.c b/fs/cifs/smb2misc.c index 29b5554f6263f..3935a60db5c31 100644 --- a/fs/cifs/smb2misc.c +++ b/fs/cifs/smb2misc.c @@ -8,7 +8,6 @@ * */ #include -#include "smb2pdu.h" #include "cifsglob.h" #include "cifsproto.h" #include "smb2proto.h" @@ -17,9 +16,10 @@ #include "smb2status.h" #include "smb2glob.h" #include "nterr.h" +#include "cached_dir.h" static int -check_smb2_hdr(struct smb2_sync_hdr *shdr, __u64 mid) +check_smb2_hdr(struct smb2_hdr *shdr, __u64 mid) { __u64 wire_mid = le64_to_cpu(shdr->MessageId); @@ -81,9 +81,9 @@ static const __le16 smb2_rsp_struct_sizes[NUMBER_OF_SMB2_COMMANDS] = { /* SMB2_OPLOCK_BREAK */ cpu_to_le16(24) }; -#define SMB311_NEGPROT_BASE_SIZE (sizeof(struct smb2_sync_hdr) + sizeof(struct smb2_negotiate_rsp)) +#define SMB311_NEGPROT_BASE_SIZE (sizeof(struct smb2_hdr) + sizeof(struct smb2_negotiate_rsp)) -static __u32 get_neg_ctxt_len(struct smb2_sync_hdr *hdr, __u32 len, +static __u32 get_neg_ctxt_len(struct smb2_hdr *hdr, __u32 len, __u32 non_ctxlen) { __u16 neg_count; @@ -113,7 +113,7 @@ static __u32 get_neg_ctxt_len(struct smb2_sync_hdr *hdr, __u32 len, } else if (nc_offset + 1 == non_ctxlen) { cifs_dbg(FYI, "no SPNEGO security blob in negprot rsp\n"); size_of_pad_before_neg_ctxts = 0; - } else if (non_ctxlen == SMB311_NEGPROT_BASE_SIZE) + } else if (non_ctxlen == SMB311_NEGPROT_BASE_SIZE + 1) /* has padding, but no SPNEGO blob */ size_of_pad_before_neg_ctxts = nc_offset - non_ctxlen + 1; else @@ -133,15 +133,19 @@ static __u32 get_neg_ctxt_len(struct smb2_sync_hdr *hdr, __u32 len, } int -smb2_check_message(char *buf, unsigned int len, struct TCP_Server_Info *srvr) +smb2_check_message(char *buf, unsigned int len, struct TCP_Server_Info *server) { - struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buf; - struct smb2_sync_pdu *pdu = (struct smb2_sync_pdu *)shdr; - __u64 mid; - __u32 clc_len; /* calculated length */ + struct TCP_Server_Info *pserver; + struct smb2_hdr *shdr = (struct smb2_hdr *)buf; + struct smb2_pdu *pdu = (struct smb2_pdu *)shdr; + int hdr_size = sizeof(struct smb2_hdr); + int pdu_size = sizeof(struct smb2_pdu); int command; - int pdu_size = sizeof(struct smb2_sync_pdu); - int hdr_size = sizeof(struct smb2_sync_hdr); + __u32 calc_len; /* calculated length */ + __u64 mid; + + /* If server is a channel, select the primary channel */ + pserver = CIFS_SERVER_IS_CHAN(server) ? server->primary_server : server; /* * Add function to do table lookup of StructureSize by command @@ -151,16 +155,18 @@ smb2_check_message(char *buf, unsigned int len, struct TCP_Server_Info *srvr) struct smb2_transform_hdr *thdr = (struct smb2_transform_hdr *)buf; struct cifs_ses *ses = NULL; + struct cifs_ses *iter; /* decrypt frame now that it is completely read in */ spin_lock(&cifs_tcp_ses_lock); - list_for_each_entry(ses, &srvr->smb_ses_list, smb_ses_list) { - if (ses->Suid == thdr->SessionId) + list_for_each_entry(iter, &pserver->smb_ses_list, smb_ses_list) { + if (iter->Suid == le64_to_cpu(thdr->SessionId)) { + ses = iter; break; + } } spin_unlock(&cifs_tcp_ses_lock); - if (list_entry_is_head(ses, &srvr->smb_ses_list, - smb_ses_list)) { + if (!ses) { cifs_dbg(VFS, "no decryption - session id not found\n"); return 1; } @@ -204,7 +210,7 @@ smb2_check_message(char *buf, unsigned int len, struct TCP_Server_Info *srvr) if (smb2_rsp_struct_sizes[command] != pdu->StructureSize2) { if (command != SMB2_OPLOCK_BREAK_HE && (shdr->Status == 0 || - pdu->StructureSize2 != SMB2_ERROR_STRUCTURE_SIZE2)) { + pdu->StructureSize2 != SMB2_ERROR_STRUCTURE_SIZE2_LE)) { /* error packets have 9 byte structure size */ cifs_dbg(VFS, "Invalid response size %u for command %d\n", le16_to_cpu(pdu->StructureSize2), command); @@ -220,30 +226,33 @@ smb2_check_message(char *buf, unsigned int len, struct TCP_Server_Info *srvr) } } - clc_len = smb2_calc_size(buf, srvr); + calc_len = smb2_calc_size(buf); - if (shdr->Command == SMB2_NEGOTIATE) - clc_len += get_neg_ctxt_len(shdr, len, clc_len); + /* For SMB2_IOCTL, OutputOffset and OutputLength are optional, so might + * be 0, and not a real miscalculation */ + if (command == SMB2_IOCTL_HE && calc_len == 0) + return 0; + + if (command == SMB2_NEGOTIATE_HE) + calc_len += get_neg_ctxt_len(shdr, len, calc_len); - if (len != clc_len) { - cifs_dbg(FYI, "Calculated size %u length %u mismatch mid %llu\n", - clc_len, len, mid); + if (len != calc_len) { /* create failed on symlink */ if (command == SMB2_CREATE_HE && shdr->Status == STATUS_STOPPED_ON_SYMLINK) return 0; /* Windows 7 server returns 24 bytes more */ - if (clc_len + 24 == len && command == SMB2_OPLOCK_BREAK_HE) + if (calc_len + 24 == len && command == SMB2_OPLOCK_BREAK_HE) return 0; /* server can return one byte more due to implied bcc[0] */ - if (clc_len == len + 1) + if (calc_len == len + 1) return 0; /* * Some windows servers (win2016) will pad also the final * PDU in a compound to 8 bytes. */ - if (((clc_len + 7) & ~7) == len) + if (ALIGN(calc_len, 8) == len) return 0; /* @@ -252,12 +261,18 @@ smb2_check_message(char *buf, unsigned int len, struct TCP_Server_Info *srvr) * SMB2/SMB3 frame length (header + smb2 response specific data) * Some windows servers also pad up to 8 bytes when compounding. */ - if (clc_len < len) + if (calc_len < len) return 0; - pr_warn_once( - "srv rsp too short, len %d not %d. cmd:%d mid:%llu\n", - len, clc_len, command, mid); + /* Only log a message if len was really miscalculated */ + if (unlikely(cifsFYI)) + cifs_dbg(FYI, "Server response too short: calculated " + "length %u doesn't match read length %u (cmd=%d, mid=%llu)\n", + calc_len, len, command, mid); + else + pr_warn("Server response too short: calculated length " + "%u doesn't match read length %u (cmd=%d, mid=%llu)\n", + calc_len, len, command, mid); return 1; } @@ -296,7 +311,7 @@ static const bool has_smb2_data_area[NUMBER_OF_SMB2_COMMANDS] = { * area and the offset to it (from the beginning of the smb are also returned. */ char * -smb2_get_data_area_len(int *off, int *len, struct smb2_sync_hdr *shdr) +smb2_get_data_area_len(int *off, int *len, struct smb2_hdr *shdr) { *off = 0; *len = 0; @@ -304,7 +319,7 @@ smb2_get_data_area_len(int *off, int *len, struct smb2_sync_hdr *shdr) /* error responses do not have data area */ if (shdr->Status && shdr->Status != STATUS_MORE_PROCESSING_REQUIRED && (((struct smb2_err_rsp *)shdr)->StructureSize) == - SMB2_ERROR_STRUCTURE_SIZE2) + SMB2_ERROR_STRUCTURE_SIZE2_LE) return NULL; /* @@ -399,10 +414,10 @@ smb2_get_data_area_len(int *off, int *len, struct smb2_sync_hdr *shdr) * portion, the number of word parameters and the data portion of the message. */ unsigned int -smb2_calc_size(void *buf, struct TCP_Server_Info *srvr) +smb2_calc_size(void *buf) { - struct smb2_sync_pdu *pdu = (struct smb2_sync_pdu *)buf; - struct smb2_sync_hdr *shdr = &pdu->sync_hdr; + struct smb2_pdu *pdu = buf; + struct smb2_hdr *shdr = &pdu->hdr; int offset; /* the offset from the beginning of SMB to data area */ int data_length; /* the length of the variable length data area */ /* Structure Size has already been checked to make sure it is 64 */ @@ -479,11 +494,11 @@ smb2_get_lease_state(struct cifsInodeInfo *cinode) __le32 lease = 0; if (CIFS_CACHE_WRITE(cinode)) - lease |= SMB2_LEASE_WRITE_CACHING; + lease |= SMB2_LEASE_WRITE_CACHING_LE; if (CIFS_CACHE_HANDLE(cinode)) - lease |= SMB2_LEASE_HANDLE_CACHING; + lease |= SMB2_LEASE_HANDLE_CACHING_LE; if (CIFS_CACHE_READ(cinode)) - lease |= SMB2_LEASE_READ_CACHING; + lease |= SMB2_LEASE_READ_CACHING_LE; return lease; } @@ -597,64 +612,63 @@ smb2_tcon_find_pending_open_lease(struct cifs_tcon *tcon, } static bool -smb2_is_valid_lease_break(char *buffer) +smb2_is_valid_lease_break(char *buffer, struct TCP_Server_Info *server) { struct smb2_lease_break *rsp = (struct smb2_lease_break *)buffer; - struct TCP_Server_Info *server; + struct TCP_Server_Info *pserver; struct cifs_ses *ses; struct cifs_tcon *tcon; struct cifs_pending_open *open; cifs_dbg(FYI, "Checking for lease break\n"); + /* If server is a channel, select the primary channel */ + pserver = CIFS_SERVER_IS_CHAN(server) ? server->primary_server : server; + /* look up tcon based on tid & uid */ spin_lock(&cifs_tcp_ses_lock); - list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) { - list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { - list_for_each_entry(tcon, &ses->tcon_list, tcon_list) { - spin_lock(&tcon->open_file_lock); - cifs_stats_inc( - &tcon->stats.cifs_stats.num_oplock_brks); - if (smb2_tcon_has_lease(tcon, rsp)) { - spin_unlock(&tcon->open_file_lock); - spin_unlock(&cifs_tcp_ses_lock); - return true; - } - open = smb2_tcon_find_pending_open_lease(tcon, - rsp); - if (open) { - __u8 lease_key[SMB2_LEASE_KEY_SIZE]; - struct tcon_link *tlink; - - tlink = cifs_get_tlink(open->tlink); - memcpy(lease_key, open->lease_key, - SMB2_LEASE_KEY_SIZE); - spin_unlock(&tcon->open_file_lock); - spin_unlock(&cifs_tcp_ses_lock); - smb2_queue_pending_open_break(tlink, - lease_key, - rsp->NewLeaseState); - return true; - } + list_for_each_entry(ses, &pserver->smb_ses_list, smb_ses_list) { + list_for_each_entry(tcon, &ses->tcon_list, tcon_list) { + spin_lock(&tcon->open_file_lock); + cifs_stats_inc( + &tcon->stats.cifs_stats.num_oplock_brks); + if (smb2_tcon_has_lease(tcon, rsp)) { spin_unlock(&tcon->open_file_lock); + spin_unlock(&cifs_tcp_ses_lock); + return true; + } + open = smb2_tcon_find_pending_open_lease(tcon, + rsp); + if (open) { + __u8 lease_key[SMB2_LEASE_KEY_SIZE]; + struct tcon_link *tlink; + + tlink = cifs_get_tlink(open->tlink); + memcpy(lease_key, open->lease_key, + SMB2_LEASE_KEY_SIZE); + spin_unlock(&tcon->open_file_lock); + spin_unlock(&cifs_tcp_ses_lock); + smb2_queue_pending_open_break(tlink, + lease_key, + rsp->NewLeaseState); + return true; + } + spin_unlock(&tcon->open_file_lock); - if (tcon->crfid.is_valid && - !memcmp(rsp->LeaseKey, - tcon->crfid.fid->lease_key, - SMB2_LEASE_KEY_SIZE)) { - tcon->crfid.time = 0; - INIT_WORK(&tcon->crfid.lease_break, - smb2_cached_lease_break); - queue_work(cifsiod_wq, - &tcon->crfid.lease_break); - spin_unlock(&cifs_tcp_ses_lock); - return true; - } + if (cached_dir_lease_break(tcon, rsp->LeaseKey)) { + spin_unlock(&cifs_tcp_ses_lock); + return true; } } } spin_unlock(&cifs_tcp_ses_lock); cifs_dbg(FYI, "Can not process lease break - no lease matched\n"); + trace_smb3_lease_not_found(le32_to_cpu(rsp->CurrentLeaseState), + le32_to_cpu(rsp->hdr.Id.SyncId.TreeId), + le64_to_cpu(rsp->hdr.SessionId), + *((u64 *)rsp->LeaseKey), + *((u64 *)&rsp->LeaseKey[8])); + return false; } @@ -662,6 +676,7 @@ bool smb2_is_valid_oplock_break(char *buffer, struct TCP_Server_Info *server) { struct smb2_oplock_break *rsp = (struct smb2_oplock_break *)buffer; + struct TCP_Server_Info *pserver; struct cifs_ses *ses; struct cifs_tcon *tcon; struct cifsInodeInfo *cinode; @@ -669,22 +684,25 @@ smb2_is_valid_oplock_break(char *buffer, struct TCP_Server_Info *server) cifs_dbg(FYI, "Checking for oplock break\n"); - if (rsp->sync_hdr.Command != SMB2_OPLOCK_BREAK) + if (rsp->hdr.Command != SMB2_OPLOCK_BREAK) return false; if (rsp->StructureSize != smb2_rsp_struct_sizes[SMB2_OPLOCK_BREAK_HE]) { if (le16_to_cpu(rsp->StructureSize) == 44) - return smb2_is_valid_lease_break(buffer); + return smb2_is_valid_lease_break(buffer, server); else return false; } cifs_dbg(FYI, "oplock level 0x%x\n", rsp->OplockLevel); + /* If server is a channel, select the primary channel */ + pserver = CIFS_SERVER_IS_CHAN(server) ? server->primary_server : server; + /* look up tcon based on tid & uid */ spin_lock(&cifs_tcp_ses_lock); - list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { + list_for_each_entry(ses, &pserver->smb_ses_list, smb_ses_list) { list_for_each_entry(tcon, &ses->tcon_list, tcon_list) { spin_lock(&tcon->open_file_lock); @@ -725,6 +743,10 @@ smb2_is_valid_oplock_break(char *buffer, struct TCP_Server_Info *server) } spin_unlock(&cifs_tcp_ses_lock); cifs_dbg(FYI, "No file id matched, oplock break ignored\n"); + trace_smb3_oplock_not_found(0 /* no xid */, rsp->PersistentFid, + le32_to_cpu(rsp->hdr.Id.SyncId.TreeId), + le64_to_cpu(rsp->hdr.SessionId)); + return true; } @@ -797,7 +819,7 @@ smb2_handle_cancelled_close(struct cifs_tcon *tcon, __u64 persistent_fid, if (tcon->ses) server = tcon->ses->server; - cifs_server_dbg(FYI, "tid=%u: tcon is closing, skipping async close retry of fid %llu %llu\n", + cifs_server_dbg(FYI, "tid=0x%x: tcon is closing, skipping async close retry of fid %llu %llu\n", tcon->tid, persistent_fid, volatile_fid); return 0; @@ -816,23 +838,23 @@ smb2_handle_cancelled_close(struct cifs_tcon *tcon, __u64 persistent_fid, int smb2_handle_cancelled_mid(struct mid_q_entry *mid, struct TCP_Server_Info *server) { - struct smb2_sync_hdr *sync_hdr = mid->resp_buf; + struct smb2_hdr *hdr = mid->resp_buf; struct smb2_create_rsp *rsp = mid->resp_buf; struct cifs_tcon *tcon; int rc; - if ((mid->optype & CIFS_CP_CREATE_CLOSE_OP) || sync_hdr->Command != SMB2_CREATE || - sync_hdr->Status != STATUS_SUCCESS) + if ((mid->optype & CIFS_CP_CREATE_CLOSE_OP) || hdr->Command != SMB2_CREATE || + hdr->Status != STATUS_SUCCESS) return 0; - tcon = smb2_find_smb_tcon(server, sync_hdr->SessionId, - sync_hdr->TreeId); + tcon = smb2_find_smb_tcon(server, le64_to_cpu(hdr->SessionId), + le32_to_cpu(hdr->Id.SyncId.TreeId)); if (!tcon) return -ENOENT; rc = __smb2_handle_cancelled_cmd(tcon, - le16_to_cpu(sync_hdr->Command), - le64_to_cpu(sync_hdr->MessageId), + le16_to_cpu(hdr->Command), + le64_to_cpu(hdr->MessageId), rsp->PersistentFileId, rsp->VolatileFileId); if (rc) @@ -848,18 +870,19 @@ smb2_handle_cancelled_mid(struct mid_q_entry *mid, struct TCP_Server_Info *serve * SMB2 header. * * @ses: server session structure + * @server: pointer to server info * @iov: array containing the SMB request we will send to the server * @nvec: number of array entries for the iov */ int -smb311_update_preauth_hash(struct cifs_ses *ses, struct kvec *iov, int nvec) +smb311_update_preauth_hash(struct cifs_ses *ses, struct TCP_Server_Info *server, + struct kvec *iov, int nvec) { int i, rc; - struct sdesc *d; - struct smb2_sync_hdr *hdr; - struct TCP_Server_Info *server = cifs_ses_server(ses); + struct smb2_hdr *hdr; + struct shash_desc *sha512 = NULL; - hdr = (struct smb2_sync_hdr *)iov[0].iov_base; + hdr = (struct smb2_hdr *)iov[0].iov_base; /* neg prot are always taken */ if (hdr->Command == SMB2_NEGOTIATE) goto ok; @@ -887,14 +910,14 @@ smb311_update_preauth_hash(struct cifs_ses *ses, struct kvec *iov, int nvec) if (rc) return rc; - d = server->secmech.sdescsha512; - rc = crypto_shash_init(&d->shash); + sha512 = server->secmech.sha512; + rc = crypto_shash_init(sha512); if (rc) { cifs_dbg(VFS, "%s: Could not init sha512 shash\n", __func__); return rc; } - rc = crypto_shash_update(&d->shash, ses->preauth_sha_hash, + rc = crypto_shash_update(sha512, ses->preauth_sha_hash, SMB2_PREAUTH_HASH_SIZE); if (rc) { cifs_dbg(VFS, "%s: Could not update sha512 shash\n", __func__); @@ -902,8 +925,7 @@ smb311_update_preauth_hash(struct cifs_ses *ses, struct kvec *iov, int nvec) } for (i = 0; i < nvec; i++) { - rc = crypto_shash_update(&d->shash, - iov[i].iov_base, iov[i].iov_len); + rc = crypto_shash_update(sha512, iov[i].iov_base, iov[i].iov_len); if (rc) { cifs_dbg(VFS, "%s: Could not update sha512 shash\n", __func__); @@ -911,7 +933,7 @@ smb311_update_preauth_hash(struct cifs_ses *ses, struct kvec *iov, int nvec) } } - rc = crypto_shash_final(&d->shash, ses->preauth_sha_hash); + rc = crypto_shash_final(sha512, ses->preauth_sha_hash); if (rc) { cifs_dbg(VFS, "%s: Could not finalize sha512 shash\n", __func__); diff --git a/fs/cifs/smb2ops.c b/fs/cifs/smb2ops.c index 560c4ababfe1a..445ba5eaad3e9 100644 --- a/fs/cifs/smb2ops.c +++ b/fs/cifs/smb2ops.c @@ -13,6 +13,7 @@ #include #include #include +#include #include "cifsfs.h" #include "cifsglob.h" #include "smb2pdu.h" @@ -24,13 +25,17 @@ #include "smb2glob.h" #include "cifs_ioctl.h" #include "smbdirect.h" +#include "fscache.h" #include "fs_context.h" +#include "cached_dir.h" /* Change credits for different ops and return the total number of credits */ static int change_conf(struct TCP_Server_Info *server) { server->credits += server->echo_credits + server->oplock_credits; + if (server->credits > server->max_credits) + server->credits = server->max_credits; server->oplock_credits = server->echo_credits = 0; switch (server->credits) { case 0: @@ -84,7 +89,11 @@ smb2_add_credits(struct TCP_Server_Info *server, if (*val > 65000) { *val = 65000; /* Don't get near 64K credits, avoid srv bugs */ pr_warn_once("server overflowed SMB3 credits\n"); + trace_smb3_overflow_credits(server->CurrentMid, + server->conn_id, server->hostname, *val, + add, server->in_flight); } + WARN_ON_ONCE(server->in_flight == 0); server->in_flight--; if (server->in_flight == 0 && ((optype & CIFS_OP_MASK) != CIFS_NEG_OP) && @@ -100,7 +109,11 @@ smb2_add_credits(struct TCP_Server_Info *server, server->credits--; server->oplock_credits++; } - } + } else if ((server->in_flight > 0) && (server->oplock_credits > 3) && + ((optype & CIFS_OP_MASK) == CIFS_OBREAK_OP)) + /* if now have too many oplock credits, rebalance so don't starve normal ops */ + change_conf(server); + scredits = *val; in_flight = server->in_flight; spin_unlock(&server->req_lock); @@ -121,9 +134,13 @@ smb2_add_credits(struct TCP_Server_Info *server, optype, scredits, add); } + spin_lock(&server->srv_lock); if (server->tcpStatus == CifsNeedReconnect - || server->tcpStatus == CifsExiting) + || server->tcpStatus == CifsExiting) { + spin_unlock(&server->srv_lock); return; + } + spin_unlock(&server->srv_lock); switch (rc) { case -1: @@ -198,6 +215,16 @@ smb2_wait_mtu_credits(struct TCP_Server_Info *server, unsigned int size, spin_lock(&server->req_lock); while (1) { + spin_unlock(&server->req_lock); + + spin_lock(&server->srv_lock); + if (server->tcpStatus == CifsExiting) { + spin_unlock(&server->srv_lock); + return -ENOENT; + } + spin_unlock(&server->srv_lock); + + spin_lock(&server->req_lock); if (server->credits <= 0) { spin_unlock(&server->req_lock); cifs_num_waiters_inc(server); @@ -208,11 +235,6 @@ smb2_wait_mtu_credits(struct TCP_Server_Info *server, unsigned int size, return rc; spin_lock(&server->req_lock); } else { - if (server->tcpStatus == CifsExiting) { - spin_unlock(&server->req_lock); - return -ENOENT; - } - scredits = server->credits; /* can deadlock with reopen */ if (scredits <= 8) { @@ -241,7 +263,7 @@ smb2_wait_mtu_credits(struct TCP_Server_Info *server, unsigned int size, in_flight = server->in_flight; spin_unlock(&server->req_lock); - trace_smb3_add_credits(server->CurrentMid, + trace_smb3_wait_credits(server->CurrentMid, server->conn_id, server->hostname, scredits, -(credits->value), in_flight); cifs_dbg(FYI, "%s: removed %u credits total=%d\n", __func__, credits->value, scredits); @@ -266,7 +288,7 @@ smb2_adjust_credits(struct TCP_Server_Info *server, cifs_server_dbg(VFS, "request has less credits (%d) than required (%d)", credits->value, new_val); - return -ENOTSUPP; + return -EOPNOTSUPP; } spin_lock(&server->req_lock); @@ -290,7 +312,7 @@ smb2_adjust_credits(struct TCP_Server_Info *server, spin_unlock(&server->req_lock); wake_up(&server->request_q); - trace_smb3_add_credits(server->CurrentMid, + trace_smb3_adj_credits(server->CurrentMid, server->conn_id, server->hostname, scredits, credits->value - new_val, in_flight); cifs_dbg(FYI, "%s: adjust added %u credits total=%d\n", @@ -306,26 +328,26 @@ smb2_get_next_mid(struct TCP_Server_Info *server) { __u64 mid; /* for SMB2 we need the current value */ - spin_lock(&GlobalMid_Lock); + spin_lock(&server->mid_lock); mid = server->CurrentMid++; - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->mid_lock); return mid; } static void smb2_revert_current_mid(struct TCP_Server_Info *server, const unsigned int val) { - spin_lock(&GlobalMid_Lock); + spin_lock(&server->mid_lock); if (server->CurrentMid >= val) server->CurrentMid -= val; - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->mid_lock); } static struct mid_q_entry * __smb2_find_mid(struct TCP_Server_Info *server, char *buf, bool dequeue) { struct mid_q_entry *mid; - struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buf; + struct smb2_hdr *shdr = (struct smb2_hdr *)buf; __u64 wire_mid = le64_to_cpu(shdr->MessageId); if (shdr->ProtocolId == SMB2_TRANSFORM_PROTO_NUM) { @@ -333,7 +355,7 @@ __smb2_find_mid(struct TCP_Server_Info *server, char *buf, bool dequeue) return NULL; } - spin_lock(&GlobalMid_Lock); + spin_lock(&server->mid_lock); list_for_each_entry(mid, &server->pending_mid_q, qhead) { if ((mid->mid == wire_mid) && (mid->mid_state == MID_REQUEST_SUBMITTED) && @@ -343,11 +365,11 @@ __smb2_find_mid(struct TCP_Server_Info *server, char *buf, bool dequeue) list_del_init(&mid->qhead); mid->mid_flags |= MID_DELETED; } - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->mid_lock); return mid; } } - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->mid_lock); return NULL; } @@ -367,13 +389,13 @@ static void smb2_dump_detail(void *buf, struct TCP_Server_Info *server) { #ifdef CONFIG_CIFS_DEBUG2 - struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buf; + struct smb2_hdr *shdr = (struct smb2_hdr *)buf; cifs_server_dbg(VFS, "Cmd: %d Err: 0x%x Flags: 0x%x Mid: %llu Pid: %d\n", shdr->Command, shdr->Status, shdr->Flags, shdr->MessageId, - shdr->ProcessId); + shdr->Id.SyncId.ProcessId); cifs_server_dbg(VFS, "smb buf %p len %u\n", buf, - server->ops->calc_smb_size(buf, server)); + server->ops->calc_smb_size(buf)); #endif } @@ -384,14 +406,16 @@ smb2_need_neg(struct TCP_Server_Info *server) } static int -smb2_negotiate(const unsigned int xid, struct cifs_ses *ses) +smb2_negotiate(const unsigned int xid, + struct cifs_ses *ses, + struct TCP_Server_Info *server) { int rc; - spin_lock(&GlobalMid_Lock); - cifs_ses_server(ses)->CurrentMid = 0; - spin_unlock(&GlobalMid_Lock); - rc = SMB2_negotiate(xid, ses); + spin_lock(&server->mid_lock); + server->CurrentMid = 0; + spin_unlock(&server->mid_lock); + rc = SMB2_negotiate(xid, ses, server); /* BB we probably don't need to retry with modern servers */ if (rc == -EAGAIN) rc = -EHOSTDOWN; @@ -494,76 +518,104 @@ smb3_negotiate_rsize(struct cifs_tcon *tcon, struct smb3_fs_context *ctx) return rsize; } +/* + * compare two interfaces a and b + * return 0 if everything matches. + * return 1 if a is rdma capable, or rss capable, or has higher link speed + * return -1 otherwise. + */ +static int +iface_cmp(struct cifs_server_iface *a, struct cifs_server_iface *b) +{ + int cmp_ret = 0; + + WARN_ON(!a || !b); + if (a->rdma_capable == b->rdma_capable) { + if (a->rss_capable == b->rss_capable) { + if (a->speed == b->speed) { + cmp_ret = cifs_ipaddr_cmp((struct sockaddr *) &a->sockaddr, + (struct sockaddr *) &b->sockaddr); + if (!cmp_ret) + return 0; + else if (cmp_ret > 0) + return 1; + else + return -1; + } else if (a->speed > b->speed) + return 1; + else + return -1; + } else if (a->rss_capable > b->rss_capable) + return 1; + else + return -1; + } else if (a->rdma_capable > b->rdma_capable) + return 1; + else + return -1; +} + static int parse_server_interfaces(struct network_interface_info_ioctl_rsp *buf, - size_t buf_len, - struct cifs_server_iface **iface_list, - size_t *iface_count) + size_t buf_len, struct cifs_ses *ses, bool in_mount) { struct network_interface_info_ioctl_rsp *p; struct sockaddr_in *addr4; struct sockaddr_in6 *addr6; struct iface_info_ipv4 *p4; struct iface_info_ipv6 *p6; - struct cifs_server_iface *info; + struct cifs_server_iface *info = NULL, *iface = NULL, *niface = NULL; + struct cifs_server_iface tmp_iface; ssize_t bytes_left; size_t next = 0; int nb_iface = 0; - int rc = 0; - - *iface_list = NULL; - *iface_count = 0; - - /* - * Fist pass: count and sanity check - */ + int rc = 0, ret = 0; bytes_left = buf_len; p = buf; - while (bytes_left >= sizeof(*p)) { - nb_iface++; - next = le32_to_cpu(p->Next); - if (!next) { - bytes_left -= sizeof(*p); - break; - } - p = (struct network_interface_info_ioctl_rsp *)((u8 *)p+next); - bytes_left -= next; - } - if (!nb_iface) { - cifs_dbg(VFS, "%s: malformed interface info\n", __func__); - rc = -EINVAL; - goto out; + spin_lock(&ses->iface_lock); + /* do not query too frequently, this time with lock held */ + if (ses->iface_last_update && + time_before(jiffies, ses->iface_last_update + + (SMB_INTERFACE_POLL_INTERVAL * HZ))) { + spin_unlock(&ses->iface_lock); + return 0; } - /* Azure rounds the buffer size up 8, to a 16 byte boundary */ - if ((bytes_left > 8) || p->Next) - cifs_dbg(VFS, "%s: incomplete interface info\n", __func__); - - /* - * Second pass: extract info to internal structure + * Go through iface_list and do kref_put to remove + * any unused ifaces. ifaces in use will be removed + * when the last user calls a kref_put on it */ + list_for_each_entry_safe(iface, niface, &ses->iface_list, + iface_head) { + iface->is_active = 0; + kref_put(&iface->refcount, release_iface); + ses->iface_count--; + } + spin_unlock(&ses->iface_lock); - *iface_list = kcalloc(nb_iface, sizeof(**iface_list), GFP_KERNEL); - if (!*iface_list) { - rc = -ENOMEM; + /* + * Samba server e.g. can return an empty interface list in some cases, + * which would only be a problem if we were requesting multichannel + */ + if (bytes_left == 0) { + /* avoid spamming logs every 10 minutes, so log only in mount */ + if ((ses->chan_max > 1) && in_mount) + cifs_dbg(VFS, + "multichannel not available\n" + "Empty network interface list returned by server %s\n", + ses->server->hostname); + rc = -EINVAL; goto out; } - info = *iface_list; - bytes_left = buf_len; - p = buf; while (bytes_left >= sizeof(*p)) { - info->speed = le64_to_cpu(p->LinkSpeed); - info->rdma_capable = le32_to_cpu(p->Capability & RDMA_CAPABLE) ? 1 : 0; - info->rss_capable = le32_to_cpu(p->Capability & RSS_CAPABLE) ? 1 : 0; - - cifs_dbg(FYI, "%s: adding iface %zu\n", __func__, *iface_count); - cifs_dbg(FYI, "%s: speed %zu bps\n", __func__, info->speed); - cifs_dbg(FYI, "%s: capabilities 0x%08x\n", __func__, - le32_to_cpu(p->Capability)); + memset(&tmp_iface, 0, sizeof(tmp_iface)); + tmp_iface.speed = le64_to_cpu(p->LinkSpeed); + tmp_iface.rdma_capable = le32_to_cpu(p->Capability & RDMA_CAPABLE) ? 1 : 0; + tmp_iface.rss_capable = le32_to_cpu(p->Capability & RSS_CAPABLE) ? 1 : 0; switch (p->Family) { /* @@ -572,7 +624,7 @@ parse_server_interfaces(struct network_interface_info_ioctl_rsp *buf, * conversion explicit in case either one changes. */ case INTERNETWORK: - addr4 = (struct sockaddr_in *)&info->sockaddr; + addr4 = (struct sockaddr_in *)&tmp_iface.sockaddr; p4 = (struct iface_info_ipv4 *)p->Buffer; addr4->sin_family = AF_INET; memcpy(&addr4->sin_addr, &p4->IPv4Address, 4); @@ -584,7 +636,7 @@ parse_server_interfaces(struct network_interface_info_ioctl_rsp *buf, &addr4->sin_addr); break; case INTERNETWORKV6: - addr6 = (struct sockaddr_in6 *)&info->sockaddr; + addr6 = (struct sockaddr_in6 *)&tmp_iface.sockaddr; p6 = (struct iface_info_ipv6 *)p->Buffer; addr6->sin6_family = AF_INET6; memcpy(&addr6->sin6_addr, &p6->IPv6Address, 16); @@ -604,50 +656,106 @@ parse_server_interfaces(struct network_interface_info_ioctl_rsp *buf, goto next_iface; } - (*iface_count)++; - info++; + /* + * The iface_list is assumed to be sorted by speed. + * Check if the new interface exists in that list. + * NEVER change iface. it could be in use. + * Add a new one instead + */ + spin_lock(&ses->iface_lock); + list_for_each_entry_safe(iface, niface, &ses->iface_list, + iface_head) { + ret = iface_cmp(iface, &tmp_iface); + if (!ret) { + /* just get a ref so that it doesn't get picked/freed */ + iface->is_active = 1; + kref_get(&iface->refcount); + ses->iface_count++; + spin_unlock(&ses->iface_lock); + goto next_iface; + } else if (ret < 0) { + /* all remaining ifaces are slower */ + kref_get(&iface->refcount); + break; + } + } + spin_unlock(&ses->iface_lock); + + /* no match. insert the entry in the list */ + info = kmalloc(sizeof(struct cifs_server_iface), + GFP_KERNEL); + if (!info) { + rc = -ENOMEM; + goto out; + } + memcpy(info, &tmp_iface, sizeof(tmp_iface)); + + /* add this new entry to the list */ + kref_init(&info->refcount); + info->is_active = 1; + + cifs_dbg(FYI, "%s: adding iface %zu\n", __func__, ses->iface_count); + cifs_dbg(FYI, "%s: speed %zu bps\n", __func__, info->speed); + cifs_dbg(FYI, "%s: capabilities 0x%08x\n", __func__, + le32_to_cpu(p->Capability)); + + spin_lock(&ses->iface_lock); + if (!list_entry_is_head(iface, &ses->iface_list, iface_head)) { + list_add_tail(&info->iface_head, &iface->iface_head); + kref_put(&iface->refcount, release_iface); + } else + list_add_tail(&info->iface_head, &ses->iface_list); + + ses->iface_count++; + spin_unlock(&ses->iface_lock); + ses->iface_last_update = jiffies; next_iface: + nb_iface++; next = le32_to_cpu(p->Next); - if (!next) + if (!next) { + bytes_left -= sizeof(*p); break; + } p = (struct network_interface_info_ioctl_rsp *)((u8 *)p+next); bytes_left -= next; } - if (!*iface_count) { + if (!nb_iface) { + cifs_dbg(VFS, "%s: malformed interface info\n", __func__); rc = -EINVAL; goto out; } -out: - if (rc) { - kfree(*iface_list); - *iface_count = 0; - *iface_list = NULL; - } - return rc; -} + /* Azure rounds the buffer size up 8, to a 16 byte boundary */ + if ((bytes_left > 8) || p->Next) + cifs_dbg(VFS, "%s: incomplete interface info\n", __func__); -static int compare_iface(const void *ia, const void *ib) -{ - const struct cifs_server_iface *a = (struct cifs_server_iface *)ia; - const struct cifs_server_iface *b = (struct cifs_server_iface *)ib; - return a->speed == b->speed ? 0 : (a->speed > b->speed ? -1 : 1); + if (!ses->iface_count) { + rc = -EINVAL; + goto out; + } + +out: + return rc; } -static int -SMB3_request_interfaces(const unsigned int xid, struct cifs_tcon *tcon) +int +SMB3_request_interfaces(const unsigned int xid, struct cifs_tcon *tcon, bool in_mount) { int rc; unsigned int ret_data_len = 0; struct network_interface_info_ioctl_rsp *out_buf = NULL; - struct cifs_server_iface *iface_list; - size_t iface_count; struct cifs_ses *ses = tcon->ses; + /* do not query too frequently */ + if (ses->iface_last_update && + time_before(jiffies, ses->iface_last_update + + (SMB_INTERFACE_POLL_INTERVAL * HZ))) + return 0; + rc = SMB2_ioctl(xid, tcon, NO_FILE_ID, NO_FILE_ID, - FSCTL_QUERY_NETWORK_INTERFACE_INFO, true /* is_fsctl */, + FSCTL_QUERY_NETWORK_INTERFACE_INFO, NULL /* no data input */, 0 /* no data input */, CIFSMaxBufSize, (char **)&out_buf, &ret_data_len); if (rc == -EOPNOTSUPP) { @@ -659,302 +767,15 @@ SMB3_request_interfaces(const unsigned int xid, struct cifs_tcon *tcon) goto out; } - rc = parse_server_interfaces(out_buf, ret_data_len, - &iface_list, &iface_count); + rc = parse_server_interfaces(out_buf, ret_data_len, ses, in_mount); if (rc) goto out; - /* sort interfaces from fastest to slowest */ - sort(iface_list, iface_count, sizeof(*iface_list), compare_iface, NULL); - - spin_lock(&ses->iface_lock); - kfree(ses->iface_list); - ses->iface_list = iface_list; - ses->iface_count = iface_count; - ses->iface_last_update = jiffies; - spin_unlock(&ses->iface_lock); - out: kfree(out_buf); return rc; } -static void -smb2_close_cached_fid(struct kref *ref) -{ - struct cached_fid *cfid = container_of(ref, struct cached_fid, - refcount); - - if (cfid->is_valid) { - cifs_dbg(FYI, "clear cached root file handle\n"); - SMB2_close(0, cfid->tcon, cfid->fid->persistent_fid, - cfid->fid->volatile_fid); - } - - /* - * We only check validity above to send SMB2_close, - * but we still need to invalidate these entries - * when this function is called - */ - cfid->is_valid = false; - cfid->file_all_info_is_valid = false; - cfid->has_lease = false; - if (cfid->dentry) { - dput(cfid->dentry); - cfid->dentry = NULL; - } -} - -void close_cached_dir(struct cached_fid *cfid) -{ - mutex_lock(&cfid->fid_mutex); - kref_put(&cfid->refcount, smb2_close_cached_fid); - mutex_unlock(&cfid->fid_mutex); -} - -void close_cached_dir_lease_locked(struct cached_fid *cfid) -{ - if (cfid->has_lease) { - cfid->has_lease = false; - kref_put(&cfid->refcount, smb2_close_cached_fid); - } -} - -void close_cached_dir_lease(struct cached_fid *cfid) -{ - mutex_lock(&cfid->fid_mutex); - close_cached_dir_lease_locked(cfid); - mutex_unlock(&cfid->fid_mutex); -} - -void -smb2_cached_lease_break(struct work_struct *work) -{ - struct cached_fid *cfid = container_of(work, - struct cached_fid, lease_break); - - close_cached_dir_lease(cfid); -} - -/* - * Open the and cache a directory handle. - * Only supported for the root handle. - */ -int open_cached_dir(unsigned int xid, struct cifs_tcon *tcon, - const char *path, - struct cifs_sb_info *cifs_sb, - struct cached_fid **cfid) -{ - 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; - int resp_buftype[2]; - struct smb_rqst rqst[2]; - struct kvec rsp_iov[2]; - struct kvec open_iov[SMB2_CREATE_IOV_SIZE]; - struct kvec qi_iov[1]; - int rc, flags = 0; - __le16 utf16_path = 0; /* Null - since an open of top of share */ - u8 oplock = SMB2_OPLOCK_LEVEL_II; - struct cifs_fid *pfid; - struct dentry *dentry; - - if (tcon->nohandlecache) - return -ENOTSUPP; - - ses = tcon->ses; - server = ses->server; - - if (cifs_sb->root == NULL) - return -ENOENT; - - if (strlen(path)) - return -ENOENT; - - dentry = cifs_sb->root; - - mutex_lock(&tcon->crfid.fid_mutex); - if (tcon->crfid.is_valid) { - cifs_dbg(FYI, "found a cached root file handle\n"); - *cfid = &tcon->crfid; - kref_get(&tcon->crfid.refcount); - mutex_unlock(&tcon->crfid.fid_mutex); - return 0; - } - - /* - * We do not hold the lock for the open because in case - * SMB2_open needs to reconnect, it will end up calling - * cifs_mark_open_files_invalid() which takes the lock again - * thus causing a deadlock - */ - - mutex_unlock(&tcon->crfid.fid_mutex); - - if (smb3_encryption_required(tcon)) - flags |= CIFS_TRANSFORM_REQ; - - if (!server->ops->new_lease_key) - return -EIO; - - pfid = tcon->crfid.fid; - server->ops->new_lease_key(pfid); - - memset(rqst, 0, sizeof(rqst)); - resp_buftype[0] = resp_buftype[1] = CIFS_NO_BUFFER; - memset(rsp_iov, 0, sizeof(rsp_iov)); - - /* Open */ - memset(&open_iov, 0, sizeof(open_iov)); - rqst[0].rq_iov = open_iov; - rqst[0].rq_nvec = SMB2_CREATE_IOV_SIZE; - - oparms.tcon = tcon; - oparms.create_options = cifs_create_options(cifs_sb, 0); - oparms.desired_access = FILE_READ_ATTRIBUTES; - oparms.disposition = FILE_OPEN; - oparms.fid = pfid; - oparms.reconnect = false; - - rc = SMB2_open_init(tcon, server, - &rqst[0], &oplock, &oparms, &utf16_path); - if (rc) - goto oshr_free; - smb2_set_next_command(tcon, &rqst[0]); - - memset(&qi_iov, 0, sizeof(qi_iov)); - rqst[1].rq_iov = qi_iov; - rqst[1].rq_nvec = 1; - - rc = SMB2_query_info_init(tcon, server, - &rqst[1], COMPOUND_FID, - COMPOUND_FID, FILE_ALL_INFORMATION, - SMB2_O_INFO_FILE, 0, - sizeof(struct smb2_file_all_info) + - PATH_MAX * 2, 0, NULL); - if (rc) - goto oshr_free; - - smb2_set_related(&rqst[1]); - - rc = compound_send_recv(xid, ses, server, - flags, 2, rqst, - resp_buftype, rsp_iov); - mutex_lock(&tcon->crfid.fid_mutex); - - /* - * Now we need to check again as the cached root might have - * been successfully re-opened from a concurrent process - */ - - if (tcon->crfid.is_valid) { - /* work was already done */ - - /* stash fids for close() later */ - struct cifs_fid fid = { - .persistent_fid = pfid->persistent_fid, - .volatile_fid = pfid->volatile_fid, - }; - - /* - * caller expects this func to set the fid in crfid to valid - * cached root, so increment the refcount. - */ - kref_get(&tcon->crfid.refcount); - - mutex_unlock(&tcon->crfid.fid_mutex); - - if (rc == 0) { - /* close extra handle outside of crit sec */ - SMB2_close(xid, tcon, fid.persistent_fid, fid.volatile_fid); - } - rc = 0; - goto oshr_free; - } - - /* Cached root is still invalid, continue normaly */ - - if (rc) { - if (rc == -EREMCHG) { - tcon->need_reconnect = true; - pr_warn_once("server share %s deleted\n", - tcon->treeName); - } - goto oshr_exit; - } - - atomic_inc(&tcon->num_remote_opens); - - o_rsp = (struct smb2_create_rsp *)rsp_iov[0].iov_base; - oparms.fid->persistent_fid = o_rsp->PersistentFileId; - oparms.fid->volatile_fid = o_rsp->VolatileFileId; -#ifdef CONFIG_CIFS_DEBUG2 - oparms.fid->mid = le64_to_cpu(o_rsp->sync_hdr.MessageId); -#endif /* CIFS_DEBUG2 */ - - tcon->crfid.tcon = tcon; - tcon->crfid.is_valid = true; - tcon->crfid.dentry = dentry; - dget(dentry); - kref_init(&tcon->crfid.refcount); - - /* BB TBD check to see if oplock level check can be removed below */ - if (o_rsp->OplockLevel == SMB2_OPLOCK_LEVEL_LEASE) { - /* - * See commit 2f94a3125b87. Increment the refcount when we - * get a lease for root, release it if lease break occurs - */ - kref_get(&tcon->crfid.refcount); - tcon->crfid.has_lease = true; - smb2_parse_contexts(server, o_rsp, - &oparms.fid->epoch, - oparms.fid->lease_key, &oplock, - NULL, NULL); - } else - goto oshr_exit; - - qi_rsp = (struct smb2_query_info_rsp *)rsp_iov[1].iov_base; - if (le32_to_cpu(qi_rsp->OutputBufferLength) < sizeof(struct smb2_file_all_info)) - goto oshr_exit; - if (!smb2_validate_and_copy_iov( - le16_to_cpu(qi_rsp->OutputBufferOffset), - sizeof(struct smb2_file_all_info), - &rsp_iov[1], sizeof(struct smb2_file_all_info), - (char *)&tcon->crfid.file_all_info)) - tcon->crfid.file_all_info_is_valid = true; - tcon->crfid.time = jiffies; - - -oshr_exit: - mutex_unlock(&tcon->crfid.fid_mutex); -oshr_free: - SMB2_open_free(&rqst[0]); - SMB2_query_info_free(&rqst[1]); - free_rsp_buf(resp_buftype[0], rsp_iov[0].iov_base); - free_rsp_buf(resp_buftype[1], rsp_iov[1].iov_base); - if (rc == 0) - *cfid = &tcon->crfid; - return rc; -} - -int open_cached_dir_by_dentry(struct cifs_tcon *tcon, - struct dentry *dentry, - struct cached_fid **cfid) -{ - mutex_lock(&tcon->crfid.fid_mutex); - if (tcon->crfid.dentry == dentry) { - cifs_dbg(FYI, "found a cached root file handle by dentry\n"); - *cfid = &tcon->crfid; - kref_get(&tcon->crfid.refcount); - mutex_unlock(&tcon->crfid.fid_mutex); - return 0; - } - mutex_unlock(&tcon->crfid.fid_mutex); - return -ENOENT; -} - static void smb3_qfs_tcon(const unsigned int xid, struct cifs_tcon *tcon, struct cifs_sb_info *cifs_sb) @@ -968,22 +789,23 @@ smb3_qfs_tcon(const unsigned int xid, struct cifs_tcon *tcon, oparms = (struct cifs_open_parms) { .tcon = tcon, + .path = "", .desired_access = FILE_READ_ATTRIBUTES, .disposition = FILE_OPEN, .create_options = cifs_create_options(cifs_sb, 0), .fid = &fid, }; - rc = open_cached_dir(xid, tcon, "", cifs_sb, &cfid); + rc = open_cached_dir(xid, tcon, "", cifs_sb, false, &cfid); if (rc == 0) - memcpy(&fid, cfid->fid, sizeof(struct cifs_fid)); + memcpy(&fid, &cfid->fid, sizeof(struct cifs_fid)); else rc = SMB2_open(xid, &oparms, &srch_path, &oplock, NULL, NULL, NULL, NULL); if (rc) return; - SMB3_request_interfaces(xid, tcon); + SMB3_request_interfaces(xid, tcon, true /* called during mount */); SMB2_QFS_attr(xid, tcon, fid.persistent_fid, fid.volatile_fid, FS_ATTRIBUTE_INFORMATION); @@ -1009,12 +831,14 @@ smb2_qfs_tcon(const unsigned int xid, struct cifs_tcon *tcon, struct cifs_open_parms oparms; struct cifs_fid fid; - oparms.tcon = tcon; - oparms.desired_access = FILE_READ_ATTRIBUTES; - oparms.disposition = FILE_OPEN; - oparms.create_options = cifs_create_options(cifs_sb, 0); - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .path = "", + .desired_access = FILE_READ_ATTRIBUTES, + .disposition = FILE_OPEN, + .create_options = cifs_create_options(cifs_sb, 0), + .fid = &fid, + }; rc = SMB2_open(xid, &oparms, &srch_path, &oplock, NULL, NULL, NULL, NULL); @@ -1032,65 +856,89 @@ static int smb2_is_path_accessible(const unsigned int xid, struct cifs_tcon *tcon, struct cifs_sb_info *cifs_sb, const char *full_path) { - int rc; __le16 *utf16_path; __u8 oplock = SMB2_OPLOCK_LEVEL_NONE; + int err_buftype = CIFS_NO_BUFFER; struct cifs_open_parms oparms; + struct kvec err_iov = {}; struct cifs_fid fid; + struct cached_fid *cfid; + bool islink; + int rc, rc2; - if ((*full_path == 0) && tcon->crfid.is_valid) - return 0; + rc = open_cached_dir(xid, tcon, full_path, cifs_sb, true, &cfid); + if (!rc) { + if (cfid->has_lease) { + close_cached_dir(cfid); + return 0; + } + close_cached_dir(cfid); + } utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb); if (!utf16_path) return -ENOMEM; - oparms.tcon = tcon; - oparms.desired_access = FILE_READ_ATTRIBUTES; - oparms.disposition = FILE_OPEN; - oparms.create_options = cifs_create_options(cifs_sb, 0); - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .path = full_path, + .desired_access = FILE_READ_ATTRIBUTES, + .disposition = FILE_OPEN, + .create_options = cifs_create_options(cifs_sb, 0), + .fid = &fid, + }; - rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL, NULL, - NULL); + rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL, + &err_iov, &err_buftype); if (rc) { - kfree(utf16_path); - return rc; + struct smb2_hdr *hdr = err_iov.iov_base; + + if (unlikely(!hdr || err_buftype == CIFS_NO_BUFFER)) + goto out; + + if (rc != -EREMOTE && hdr->Status == STATUS_OBJECT_NAME_INVALID) { + rc2 = cifs_inval_name_dfs_link_error(xid, tcon, cifs_sb, + full_path, &islink); + if (rc2) { + rc = rc2; + goto out; + } + if (islink) + rc = -EREMOTE; + } + if (rc == -EREMOTE && IS_ENABLED(CONFIG_CIFS_DFS_UPCALL) && cifs_sb && + (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS)) + rc = -EOPNOTSUPP; + goto out; } rc = SMB2_close(xid, tcon, fid.persistent_fid, fid.volatile_fid); + +out: + free_rsp_buf(err_buftype, err_iov.iov_base); kfree(utf16_path); return rc; } -static int -smb2_get_srv_inum(const unsigned int xid, struct cifs_tcon *tcon, - struct cifs_sb_info *cifs_sb, const char *full_path, - u64 *uniqueid, FILE_ALL_INFO *data) +static int smb2_get_srv_inum(const unsigned int xid, struct cifs_tcon *tcon, + struct cifs_sb_info *cifs_sb, const char *full_path, + u64 *uniqueid, struct cifs_open_info_data *data) { - *uniqueid = le64_to_cpu(data->IndexNumber); + *uniqueid = le64_to_cpu(data->fi.IndexNumber); return 0; } -static int -smb2_query_file_info(const unsigned int xid, struct cifs_tcon *tcon, - struct cifs_fid *fid, FILE_ALL_INFO *data) +static int smb2_query_file_info(const unsigned int xid, struct cifs_tcon *tcon, + struct cifsFileInfo *cfile, struct cifs_open_info_data *data) { - int rc; - struct smb2_file_all_info *smb2_data; + struct cifs_fid *fid = &cfile->fid; - smb2_data = kzalloc(sizeof(struct smb2_file_all_info) + PATH_MAX * 2, - GFP_KERNEL); - if (smb2_data == NULL) - return -ENOMEM; - - rc = SMB2_query_info(xid, tcon, fid->persistent_fid, fid->volatile_fid, - smb2_data); - if (!rc) - move_smb2_info_to_cifs(data, smb2_data); - kfree(smb2_data); - return rc; + if (cfile->symlink_target) { + data->symlink_target = kstrdup(cfile->symlink_target, GFP_KERNEL); + if (!data->symlink_target) + return -ENOMEM; + } + return SMB2_query_info(xid, tcon, fid->persistent_fid, fid->volatile_fid, &data->fi); } #ifdef CONFIG_CIFS_XATTR @@ -1185,17 +1033,12 @@ smb2_query_eas(const unsigned int xid, struct cifs_tcon *tcon, struct cifs_sb_info *cifs_sb) { int rc; - __le16 *utf16_path; struct kvec rsp_iov = {NULL, 0}; int buftype = CIFS_NO_BUFFER; struct smb2_query_info_rsp *rsp; struct smb2_file_full_ea_info *info = NULL; - utf16_path = cifs_convert_path_to_utf16(path, cifs_sb); - if (!utf16_path) - return -ENOMEM; - - rc = smb2_query_info_compound(xid, tcon, utf16_path, + rc = smb2_query_info_compound(xid, tcon, path, FILE_READ_EA, FILE_FULL_EA_INFORMATION, SMB2_O_INFO_FILE, @@ -1228,7 +1071,6 @@ smb2_query_eas(const unsigned int xid, struct cifs_tcon *tcon, le32_to_cpu(rsp->OutputBufferLength), ea_name); qeas_exit: - kfree(utf16_path); free_rsp_buf(buftype, rsp_iov.iov_base); return rc; } @@ -1288,7 +1130,7 @@ smb2_set_ea(const unsigned int xid, struct cifs_tcon *tcon, * the new EA. If not we should not add it since we * would not be able to even read the EAs back. */ - rc = smb2_query_info_compound(xid, tcon, utf16_path, + rc = smb2_query_info_compound(xid, tcon, path, FILE_READ_EA, FILE_FULL_EA_INFORMATION, SMB2_O_INFO_FILE, @@ -1308,7 +1150,7 @@ smb2_set_ea(const unsigned int xid, struct cifs_tcon *tcon, /* Use a fudge factor of 256 bytes in case we collide * with a different set_EAs command. */ - if(CIFSMaxBufSize - MAX_SMB2_CREATE_RESPONSE_SIZE - + if (CIFSMaxBufSize - MAX_SMB2_CREATE_RESPONSE_SIZE - MAX_SMB2_CLOSE_RESPONSE_SIZE - 256 < used_len + ea_name_len + ea_value_len + 1) { rc = -ENOSPC; @@ -1322,13 +1164,14 @@ smb2_set_ea(const unsigned int xid, struct cifs_tcon *tcon, rqst[0].rq_iov = open_iov; rqst[0].rq_nvec = SMB2_CREATE_IOV_SIZE; - memset(&oparms, 0, sizeof(oparms)); - oparms.tcon = tcon; - oparms.desired_access = FILE_WRITE_EA; - oparms.disposition = FILE_OPEN; - oparms.create_options = cifs_create_options(cifs_sb, 0); - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .path = path, + .desired_access = FILE_WRITE_EA, + .disposition = FILE_OPEN, + .create_options = cifs_create_options(cifs_sb, 0), + .fid = &fid, + }; rc = SMB2_open_init(tcon, server, &rqst[0], &oplock, &oparms, utf16_path); @@ -1580,12 +1423,11 @@ SMB2_request_res_key(const unsigned int xid, struct cifs_tcon *tcon, struct resume_key_req *res_key; rc = SMB2_ioctl(xid, tcon, persistent_fid, volatile_fid, - FSCTL_SRV_REQUEST_RESUME_KEY, true /* is_fsctl */, - NULL, 0 /* no input */, CIFSMaxBufSize, - (char **)&res_key, &ret_data_len); + FSCTL_SRV_REQUEST_RESUME_KEY, NULL, 0 /* no input */, + CIFSMaxBufSize, (char **)&res_key, &ret_data_len); if (rc == -EOPNOTSUPP) { - pr_warn_once("Server share %s does not support copy range\n", tcon->treeName); + pr_warn_once("Server share %s does not support copy range\n", tcon->tree_name); goto req_res_key_exit; } else if (rc) { cifs_tcon_dbg(VFS, "refcpy ioctl error %d getting resume key\n", rc); @@ -1679,12 +1521,12 @@ smb2_ioctl_query_info(const unsigned int xid, rqst[0].rq_iov = &vars->open_iov[0]; rqst[0].rq_nvec = SMB2_CREATE_IOV_SIZE; - memset(&oparms, 0, sizeof(oparms)); - oparms.tcon = tcon; - oparms.disposition = FILE_OPEN; - oparms.create_options = cifs_create_options(cifs_sb, create_options); - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .disposition = FILE_OPEN, + .create_options = cifs_create_options(cifs_sb, create_options), + .fid = &fid, + }; if (qi.flags & PASSTHRU_FSCTL) { switch (qi.info_type & FSCTL_DEVICE_ACCESS_MASK) { @@ -1724,7 +1566,7 @@ smb2_ioctl_query_info(const unsigned int xid, rqst[1].rq_nvec = SMB2_IOCTL_IOV_SIZE; rc = SMB2_ioctl_init(tcon, server, &rqst[1], COMPOUND_FID, COMPOUND_FID, - qi.info_type, true, buffer, qi.output_buffer_length, + qi.info_type, buffer, qi.output_buffer_length, CIFSMaxBufSize - MAX_SMB2_CREATE_RESPONSE_SIZE - MAX_SMB2_CLOSE_RESPONSE_SIZE); free_req1_func = SMB2_ioctl_free; @@ -1858,17 +1700,8 @@ smb2_copychunk_range(const unsigned int xid, 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; @@ -1900,9 +1733,8 @@ smb2_copychunk_range(const unsigned int xid, retbuf = NULL; rc = SMB2_ioctl(xid, tcon, trgtfile->fid.persistent_fid, trgtfile->fid.volatile_fid, FSCTL_SRV_COPYCHUNK_WRITE, - true /* is_fsctl */, (char *)pcchunk, - sizeof(struct copychunk_ioctl), CIFSMaxBufSize, - (char **)&retbuf, &ret_data_len); + (char *)pcchunk, sizeof(struct copychunk_ioctl), + CIFSMaxBufSize, (char **)&retbuf, &ret_data_len); if (rc == 0) { if (ret_data_len != sizeof(struct copychunk_ioctl_rsp)) { @@ -2062,7 +1894,6 @@ static bool smb2_set_sparse(const unsigned int xid, struct cifs_tcon *tcon, rc = SMB2_ioctl(xid, tcon, cfile->fid.persistent_fid, cfile->fid.volatile_fid, FSCTL_SET_SPARSE, - true /* is_fctl */, &setsparse, 1, CIFSMaxBufSize, NULL, NULL); if (rc) { tcon->broken_sparse_sup = true; @@ -2145,7 +1976,6 @@ smb2_duplicate_extents(const unsigned int xid, rc = SMB2_ioctl(xid, tcon, trgtfile->fid.persistent_fid, trgtfile->fid.volatile_fid, FSCTL_DUPLICATE_EXTENTS_TO_FILE, - true /* is_fsctl */, (char *)&dup_ext_buf, sizeof(struct duplicate_extents_to_file), CIFSMaxBufSize, NULL, @@ -2180,7 +2010,6 @@ smb3_set_integrity(const unsigned int xid, struct cifs_tcon *tcon, return SMB2_ioctl(xid, tcon, cfile->fid.persistent_fid, cfile->fid.volatile_fid, FSCTL_SET_INTEGRITY_INFORMATION, - true /* is_fsctl */, (char *)&integr_info, sizeof(struct fsctl_set_integrity_information_req), CIFSMaxBufSize, NULL, @@ -2233,7 +2062,6 @@ smb3_enum_snapshots(const unsigned int xid, struct cifs_tcon *tcon, rc = SMB2_ioctl(xid, tcon, cfile->fid.persistent_fid, cfile->fid.volatile_fid, FSCTL_SRV_ENUMERATE_SNAPSHOTS, - true /* is_fsctl */, NULL, 0 /* no input data */, max_response_size, (char **)&retbuf, &ret_data_len); @@ -2284,9 +2112,10 @@ smb3_enum_snapshots(const unsigned int xid, struct cifs_tcon *tcon, static int smb3_notify(const unsigned int xid, struct file *pfile, - void __user *ioc_buf) + void __user *ioc_buf, bool return_changes) { - struct smb3_notify notify; + struct smb3_notify_info notify; + struct smb3_notify_info __user *pnotify_buf; struct dentry *dentry = pfile->f_path.dentry; struct inode *inode = file_inode(pfile); struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); @@ -2294,10 +2123,12 @@ smb3_notify(const unsigned int xid, struct file *pfile, struct cifs_fid fid; struct cifs_tcon *tcon; const unsigned char *path; + char *returned_ioctl_info = NULL; void *page = alloc_dentry_path(); __le16 *utf16_path = NULL; u8 oplock = SMB2_OPLOCK_LEVEL_NONE; int rc = 0; + __u32 ret_len = 0; path = build_path_from_dentry(dentry, page); if (IS_ERR(path)) { @@ -2311,18 +2142,28 @@ smb3_notify(const unsigned int xid, struct file *pfile, goto notify_exit; } - if (copy_from_user(¬ify, ioc_buf, sizeof(struct smb3_notify))) { - rc = -EFAULT; - goto notify_exit; + if (return_changes) { + if (copy_from_user(¬ify, ioc_buf, sizeof(struct smb3_notify_info))) { + rc = -EFAULT; + goto notify_exit; + } + } else { + if (copy_from_user(¬ify, ioc_buf, sizeof(struct smb3_notify))) { + rc = -EFAULT; + goto notify_exit; + } + notify.data_len = 0; } tcon = cifs_sb_master_tcon(cifs_sb); - oparms.tcon = tcon; - oparms.desired_access = FILE_READ_ATTRIBUTES | FILE_READ_DATA; - oparms.disposition = FILE_OPEN; - oparms.create_options = cifs_create_options(cifs_sb, 0); - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .path = path, + .desired_access = FILE_READ_ATTRIBUTES | FILE_READ_DATA, + .disposition = FILE_OPEN, + .create_options = cifs_create_options(cifs_sb, 0), + .fid = &fid, + }; rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL, NULL, NULL); @@ -2330,12 +2171,22 @@ smb3_notify(const unsigned int xid, struct file *pfile, goto notify_exit; rc = SMB2_change_notify(xid, tcon, fid.persistent_fid, fid.volatile_fid, - notify.watch_tree, notify.completion_filter); + notify.watch_tree, notify.completion_filter, + notify.data_len, &returned_ioctl_info, &ret_len); SMB2_close(xid, tcon, fid.persistent_fid, fid.volatile_fid); cifs_dbg(FYI, "change notify for path %s rc %d\n", path, rc); - + if (return_changes && (ret_len > 0) && (notify.data_len > 0)) { + if (ret_len > notify.data_len) + ret_len = notify.data_len; + pnotify_buf = (struct smb3_notify_info __user *)ioc_buf; + if (copy_to_user(pnotify_buf->notify_data, returned_ioctl_info, ret_len)) + rc = -EFAULT; + else if (copy_to_user(&pnotify_buf->data_len, &ret_len, sizeof(ret_len))) + rc = -EFAULT; + } + kfree(returned_ioctl_info); notify_exit: free_dentry_path(page); kfree(utf16_path); @@ -2378,12 +2229,14 @@ smb2_query_dir_first(const unsigned int xid, struct cifs_tcon *tcon, rqst[0].rq_iov = open_iov; rqst[0].rq_nvec = SMB2_CREATE_IOV_SIZE; - oparms.tcon = tcon; - oparms.desired_access = FILE_READ_ATTRIBUTES | FILE_READ_DATA; - oparms.disposition = FILE_OPEN; - oparms.create_options = cifs_create_options(cifs_sb, 0); - oparms.fid = fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .path = path, + .desired_access = FILE_READ_ATTRIBUTES | FILE_READ_DATA, + .disposition = FILE_OPEN, + .create_options = cifs_create_options(cifs_sb, 0), + .fid = fid, + }; rc = SMB2_open_init(tcon, server, &rqst[0], &oplock, &oparms, utf16_path); @@ -2418,7 +2271,7 @@ smb2_query_dir_first(const unsigned int xid, struct cifs_tcon *tcon, /* If the open failed there is nothing to do */ op_rsp = (struct smb2_create_rsp *)rsp_iov[0].iov_base; - if (op_rsp == NULL || op_rsp->sync_hdr.Status != STATUS_SUCCESS) { + if (op_rsp == NULL || op_rsp->hdr.Status != STATUS_SUCCESS) { cifs_dbg(FYI, "query_dir_first: open failed rc=%d\n", rc); goto qdf_free; } @@ -2437,7 +2290,7 @@ smb2_query_dir_first(const unsigned int xid, struct cifs_tcon *tcon, atomic_inc(&tcon->num_remote_opens); qd_rsp = (struct smb2_query_directory_rsp *)rsp_iov[1].iov_base; - if (qd_rsp->sync_hdr.Status == STATUS_NO_MORE_FILES) { + if (qd_rsp->hdr.Status == STATUS_NO_MORE_FILES) { trace_smb3_query_dir_done(xid, fid->persistent_fid, tcon->tid, tcon->ses->Suid, 0, 0); srch_inf->endOfSearch = true; @@ -2489,7 +2342,7 @@ smb2_close_dir(const unsigned int xid, struct cifs_tcon *tcon, static bool smb2_is_status_pending(char *buf, struct TCP_Server_Info *server) { - struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buf; + struct smb2_hdr *shdr = (struct smb2_hdr *)buf; int scredits, in_flight; if (shdr->Status != STATUS_PENDING) @@ -2503,7 +2356,7 @@ smb2_is_status_pending(char *buf, struct TCP_Server_Info *server) spin_unlock(&server->req_lock); wake_up(&server->request_q); - trace_smb3_add_credits(server->CurrentMid, + trace_smb3_pend_credits(server->CurrentMid, server->conn_id, server->hostname, scredits, le16_to_cpu(shdr->CreditRequest), in_flight); cifs_dbg(FYI, "%s: status pending add %u credits total=%d\n", @@ -2516,13 +2369,14 @@ smb2_is_status_pending(char *buf, struct TCP_Server_Info *server) static bool smb2_is_session_expired(char *buf) { - struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buf; + struct smb2_hdr *shdr = (struct smb2_hdr *)buf; if (shdr->Status != STATUS_NETWORK_SESSION_EXPIRED && shdr->Status != STATUS_USER_SESSION_DELETED) return false; - trace_smb3_ses_expired(shdr->TreeId, shdr->SessionId, + trace_smb3_ses_expired(le32_to_cpu(shdr->Id.SyncId.TreeId), + le64_to_cpu(shdr->SessionId), le16_to_cpu(shdr->Command), le64_to_cpu(shdr->MessageId)); cifs_dbg(FYI, "Session expired or deleted\n"); @@ -2533,7 +2387,7 @@ smb2_is_session_expired(char *buf) static bool smb2_is_status_io_timeout(char *buf) { - struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buf; + struct smb2_hdr *shdr = (struct smb2_hdr *)buf; if (shdr->Status == STATUS_IO_TIMEOUT) return true; @@ -2544,24 +2398,27 @@ smb2_is_status_io_timeout(char *buf) static void smb2_is_network_name_deleted(char *buf, struct TCP_Server_Info *server) { - struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buf; - struct list_head *tmp, *tmp1; + struct smb2_hdr *shdr = (struct smb2_hdr *)buf; + struct TCP_Server_Info *pserver; struct cifs_ses *ses; struct cifs_tcon *tcon; if (shdr->Status != STATUS_NETWORK_NAME_DELETED) return; + /* If server is a channel, select the primary channel */ + pserver = CIFS_SERVER_IS_CHAN(server) ? server->primary_server : server; + spin_lock(&cifs_tcp_ses_lock); - list_for_each(tmp, &server->smb_ses_list) { - ses = list_entry(tmp, struct cifs_ses, smb_ses_list); - list_for_each(tmp1, &ses->tcon_list) { - tcon = list_entry(tmp1, struct cifs_tcon, tcon_list); - if (tcon->tid == shdr->TreeId) { + list_for_each_entry(ses, &pserver->smb_ses_list, smb_ses_list) { + list_for_each_entry(tcon, &ses->tcon_list, tcon_list) { + if (tcon->tid == le32_to_cpu(shdr->Id.SyncId.TreeId)) { + spin_lock(&tcon->tc_lock); tcon->need_reconnect = true; + spin_unlock(&tcon->tc_lock); spin_unlock(&cifs_tcp_ses_lock); pr_warn_once("Server share %s deleted.\n", - tcon->treeName); + tcon->tree_name); return; } } @@ -2584,9 +2441,9 @@ smb2_oplock_response(struct cifs_tcon *tcon, __u64 persistent_fid, void smb2_set_related(struct smb_rqst *rqst) { - struct smb2_sync_hdr *shdr; + struct smb2_hdr *shdr; - shdr = (struct smb2_sync_hdr *)(rqst->rq_iov[0].iov_base); + shdr = (struct smb2_hdr *)(rqst->rq_iov[0].iov_base); if (shdr == NULL) { cifs_dbg(FYI, "shdr NULL in smb2_set_related\n"); return; @@ -2599,13 +2456,13 @@ char smb2_padding[7] = {0, 0, 0, 0, 0, 0, 0}; void smb2_set_next_command(struct cifs_tcon *tcon, struct smb_rqst *rqst) { - struct smb2_sync_hdr *shdr; + struct smb2_hdr *shdr; struct cifs_ses *ses = tcon->ses; struct TCP_Server_Info *server = ses->server; unsigned long len = smb_rqst_len(server, rqst); int i, num_padding; - shdr = (struct smb2_sync_hdr *)(rqst->rq_iov[0].iov_base); + shdr = (struct smb2_hdr *)(rqst->rq_iov[0].iov_base); if (shdr == NULL) { cifs_dbg(FYI, "shdr NULL in smb2_set_next_command\n"); return; @@ -2659,7 +2516,7 @@ smb2_set_next_command(struct cifs_tcon *tcon, struct smb_rqst *rqst) */ int smb2_query_info_compound(const unsigned int xid, struct cifs_tcon *tcon, - __le16 *utf16_path, u32 desired_access, + const char *path, u32 desired_access, u32 class, u32 type, u32 output_len, struct kvec *rsp, int *buftype, struct cifs_sb_info *cifs_sb) @@ -2677,6 +2534,14 @@ smb2_query_info_compound(const unsigned int xid, struct cifs_tcon *tcon, struct cifs_open_parms oparms; struct cifs_fid fid; int rc; + __le16 *utf16_path; + struct cached_fid *cfid = NULL; + + if (!path) + path = ""; + utf16_path = cifs_convert_path_to_utf16(path, cifs_sb); + if (!utf16_path) + return -ENOMEM; if (smb3_encryption_required(tcon)) flags |= CIFS_TRANSFORM_REQ; @@ -2685,16 +2550,25 @@ smb2_query_info_compound(const unsigned int xid, struct cifs_tcon *tcon, resp_buftype[0] = resp_buftype[1] = resp_buftype[2] = CIFS_NO_BUFFER; memset(rsp_iov, 0, sizeof(rsp_iov)); + /* + * We can only call this for things we know are directories. + */ + if (!strcmp(path, "")) + open_cached_dir(xid, tcon, path, cifs_sb, false, + &cfid); /* cfid null if open dir failed */ + memset(&open_iov, 0, sizeof(open_iov)); rqst[0].rq_iov = open_iov; rqst[0].rq_nvec = SMB2_CREATE_IOV_SIZE; - oparms.tcon = tcon; - oparms.desired_access = desired_access; - oparms.disposition = FILE_OPEN; - oparms.create_options = cifs_create_options(cifs_sb, 0); - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .path = path, + .desired_access = desired_access, + .disposition = FILE_OPEN, + .create_options = cifs_create_options(cifs_sb, 0), + .fid = &fid, + }; rc = SMB2_open_init(tcon, server, &rqst[0], &oplock, &oparms, utf16_path); @@ -2706,15 +2580,29 @@ smb2_query_info_compound(const unsigned int xid, struct cifs_tcon *tcon, rqst[1].rq_iov = qi_iov; rqst[1].rq_nvec = 1; - rc = SMB2_query_info_init(tcon, server, - &rqst[1], COMPOUND_FID, COMPOUND_FID, - class, type, 0, - output_len, 0, - NULL); + if (cfid) { + rc = SMB2_query_info_init(tcon, server, + &rqst[1], + cfid->fid.persistent_fid, + cfid->fid.volatile_fid, + class, type, 0, + output_len, 0, + NULL); + } else { + rc = SMB2_query_info_init(tcon, server, + &rqst[1], + COMPOUND_FID, + COMPOUND_FID, + class, type, 0, + output_len, 0, + NULL); + } if (rc) goto qic_exit; - smb2_set_next_command(tcon, &rqst[1]); - smb2_set_related(&rqst[1]); + if (!cfid) { + smb2_set_next_command(tcon, &rqst[1]); + smb2_set_related(&rqst[1]); + } memset(&close_iov, 0, sizeof(close_iov)); rqst[2].rq_iov = close_iov; @@ -2726,15 +2614,21 @@ smb2_query_info_compound(const unsigned int xid, struct cifs_tcon *tcon, goto qic_exit; smb2_set_related(&rqst[2]); - rc = compound_send_recv(xid, ses, server, - flags, 3, rqst, - resp_buftype, rsp_iov); + if (cfid) { + rc = compound_send_recv(xid, ses, server, + flags, 1, &rqst[1], + &resp_buftype[1], &rsp_iov[1]); + } else { + rc = compound_send_recv(xid, ses, server, + flags, 3, rqst, + resp_buftype, rsp_iov); + } if (rc) { free_rsp_buf(resp_buftype[1], rsp_iov[1].iov_base); if (rc == -EREMCHG) { tcon->need_reconnect = true; pr_warn_once("server share %s deleted\n", - tcon->treeName); + tcon->tree_name); } goto qic_exit; } @@ -2742,11 +2636,14 @@ smb2_query_info_compound(const unsigned int xid, struct cifs_tcon *tcon, *buftype = resp_buftype[1]; qic_exit: + kfree(utf16_path); SMB2_open_free(&rqst[0]); SMB2_query_info_free(&rqst[1]); SMB2_close_free(&rqst[2]); free_rsp_buf(resp_buftype[0], rsp_iov[0].iov_base); free_rsp_buf(resp_buftype[2], rsp_iov[2].iov_base); + if (cfid) + close_cached_dir(cfid); return rc; } @@ -2756,13 +2653,12 @@ smb2_queryfs(const unsigned int xid, struct cifs_tcon *tcon, { struct smb2_query_info_rsp *rsp; struct smb2_fs_full_size_info *info = NULL; - __le16 utf16_path = 0; /* Null - open root of share */ struct kvec rsp_iov = {NULL, 0}; int buftype = CIFS_NO_BUFFER; int rc; - rc = smb2_query_info_compound(xid, tcon, &utf16_path, + rc = smb2_query_info_compound(xid, tcon, "", FILE_READ_ATTRIBUTES, FS_FULL_SIZE_INFORMATION, SMB2_O_INFO_FILESYSTEM, @@ -2772,7 +2668,7 @@ smb2_queryfs(const unsigned int xid, struct cifs_tcon *tcon, goto qfs_exit; rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base; - buf->f_type = SMB2_MAGIC_NUMBER; + buf->f_type = SMB2_SUPER_MAGIC; info = (struct smb2_fs_full_size_info *)( le16_to_cpu(rsp->OutputBufferOffset) + (char *)rsp); rc = smb2_validate_iov(le16_to_cpu(rsp->OutputBufferOffset), @@ -2800,12 +2696,14 @@ smb311_queryfs(const unsigned int xid, struct cifs_tcon *tcon, if (!tcon->posix_extensions) return smb2_queryfs(xid, tcon, cifs_sb, buf); - oparms.tcon = tcon; - oparms.desired_access = FILE_READ_ATTRIBUTES; - oparms.disposition = FILE_OPEN; - oparms.create_options = cifs_create_options(cifs_sb, 0); - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .path = "", + .desired_access = FILE_READ_ATTRIBUTES, + .disposition = FILE_OPEN, + .create_options = cifs_create_options(cifs_sb, 0), + .fid = &fid, + }; rc = SMB2_open(xid, &oparms, &srch_path, &oplock, NULL, NULL, NULL, NULL); @@ -2814,7 +2712,7 @@ smb311_queryfs(const unsigned int xid, struct cifs_tcon *tcon, rc = SMB311_posix_qfs_info(xid, tcon, fid.persistent_fid, fid.volatile_fid, buf); - buf->f_type = SMB2_MAGIC_NUMBER; + buf->f_type = SMB2_SUPER_MAGIC; SMB2_close(xid, tcon, fid.persistent_fid, fid.volatile_fid); return rc; } @@ -2918,7 +2816,6 @@ smb2_get_dfs_refer(const unsigned int xid, struct cifs_ses *ses, do { rc = SMB2_ioctl(xid, tcon, NO_FILE_ID, NO_FILE_ID, FSCTL_DFS_GET_REFERRALS, - true /* is_fsctl */, (char *)dfs_req, dfs_req_size, CIFSMaxBufSize, (char **)&dfs_rsp, &dfs_rsp_size); if (!is_retryable_error(rc)) @@ -2926,6 +2823,8 @@ smb2_get_dfs_refer(const unsigned int xid, struct cifs_ses *ses, usleep_range(512, 2048); } while (++retry_count < 5); + if (!rc && !dfs_rsp) + rc = -EIO; if (rc) { if (!is_retryable_error(rc) && rc != -ENOENT && rc != -EOPNOTSUPP) cifs_tcon_dbg(VFS, "%s: ioctl error: rc=%d\n", __func__, rc); @@ -3049,9 +2948,6 @@ parse_reparse_point(struct reparse_data_buffer *buf, } } -#define SMB2_SYMLINK_STRUCT_SIZE \ - (sizeof(struct smb2_err_rsp) - 1 + sizeof(struct smb2_symlink_err_rsp)) - static int smb2_query_symlink(const unsigned int xid, struct cifs_tcon *tcon, struct cifs_sb_info *cifs_sb, const char *full_path, @@ -3063,13 +2959,7 @@ smb2_query_symlink(const unsigned int xid, struct cifs_tcon *tcon, struct cifs_open_parms oparms; struct cifs_fid fid; struct kvec err_iov = {NULL, 0}; - struct smb2_err_rsp *err_buf = NULL; - struct smb2_symlink_err_rsp *symlink; struct TCP_Server_Info *server = cifs_pick_channel(tcon->ses); - unsigned int sub_len; - unsigned int sub_offset; - unsigned int print_len; - unsigned int print_offset; int flags = CIFS_CP_CREATE_CLOSE_OP; struct smb_rqst rqst[3]; int resp_buftype[3]; @@ -3103,13 +2993,14 @@ smb2_query_symlink(const unsigned int xid, struct cifs_tcon *tcon, rqst[0].rq_iov = open_iov; rqst[0].rq_nvec = SMB2_CREATE_IOV_SIZE; - memset(&oparms, 0, sizeof(oparms)); - oparms.tcon = tcon; - oparms.desired_access = FILE_READ_ATTRIBUTES; - oparms.disposition = FILE_OPEN; - oparms.create_options = cifs_create_options(cifs_sb, create_options); - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .path = full_path, + .desired_access = FILE_READ_ATTRIBUTES, + .disposition = FILE_OPEN, + .create_options = cifs_create_options(cifs_sb, create_options), + .fid = &fid, + }; rc = SMB2_open_init(tcon, server, &rqst[0], &oplock, &oparms, utf16_path); @@ -3125,8 +3016,7 @@ smb2_query_symlink(const unsigned int xid, struct cifs_tcon *tcon, rc = SMB2_ioctl_init(tcon, server, &rqst[1], fid.persistent_fid, - fid.volatile_fid, FSCTL_GET_REPARSE_POINT, - true /* is_fctl */, NULL, 0, + fid.volatile_fid, FSCTL_GET_REPARSE_POINT, NULL, 0, CIFSMaxBufSize - MAX_SMB2_CREATE_RESPONSE_SIZE - MAX_SMB2_CLOSE_RESPONSE_SIZE); @@ -3154,7 +3044,7 @@ smb2_query_symlink(const unsigned int xid, struct cifs_tcon *tcon, resp_buftype, rsp_iov); create_rsp = rsp_iov[0].iov_base; - if (create_rsp && create_rsp->sync_hdr.Status) + if (create_rsp && create_rsp->hdr.Status) err_iov = rsp_iov[0]; ioctl_rsp = rsp_iov[1].iov_base; @@ -3187,47 +3077,7 @@ smb2_query_symlink(const unsigned int xid, struct cifs_tcon *tcon, goto querty_exit; } - err_buf = err_iov.iov_base; - if (le32_to_cpu(err_buf->ByteCount) < sizeof(struct smb2_symlink_err_rsp) || - err_iov.iov_len < SMB2_SYMLINK_STRUCT_SIZE) { - rc = -EINVAL; - goto querty_exit; - } - - symlink = (struct smb2_symlink_err_rsp *)err_buf->ErrorData; - if (le32_to_cpu(symlink->SymLinkErrorTag) != SYMLINK_ERROR_TAG || - le32_to_cpu(symlink->ReparseTag) != IO_REPARSE_TAG_SYMLINK) { - rc = -EINVAL; - goto querty_exit; - } - - /* open must fail on symlink - reset rc */ - rc = 0; - sub_len = le16_to_cpu(symlink->SubstituteNameLength); - sub_offset = le16_to_cpu(symlink->SubstituteNameOffset); - print_len = le16_to_cpu(symlink->PrintNameLength); - print_offset = le16_to_cpu(symlink->PrintNameOffset); - - if (err_iov.iov_len < SMB2_SYMLINK_STRUCT_SIZE + sub_offset + sub_len) { - rc = -EINVAL; - goto querty_exit; - } - - if (err_iov.iov_len < - SMB2_SYMLINK_STRUCT_SIZE + print_offset + print_len) { - rc = -EINVAL; - goto querty_exit; - } - - *target_path = cifs_strndup_from_utf16( - (char *)symlink->PathBuffer + sub_offset, - sub_len, true, cifs_sb->local_nls); - if (!(*target_path)) { - rc = -ENOMEM; - goto querty_exit; - } - convert_delimiter(*target_path, '/'); - cifs_dbg(FYI, "%s: target path: %s\n", __func__, *target_path); + rc = smb2_parse_symlink_response(cifs_sb, &err_iov, target_path); querty_exit: cifs_dbg(FYI, "query symlink rc %d\n", rc); @@ -3284,13 +3134,14 @@ smb2_query_reparse_tag(const unsigned int xid, struct cifs_tcon *tcon, rqst[0].rq_iov = open_iov; rqst[0].rq_nvec = SMB2_CREATE_IOV_SIZE; - memset(&oparms, 0, sizeof(oparms)); - oparms.tcon = tcon; - oparms.desired_access = FILE_READ_ATTRIBUTES; - oparms.disposition = FILE_OPEN; - oparms.create_options = cifs_create_options(cifs_sb, OPEN_REPARSE_POINT); - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .path = full_path, + .desired_access = FILE_READ_ATTRIBUTES, + .disposition = FILE_OPEN, + .create_options = cifs_create_options(cifs_sb, OPEN_REPARSE_POINT), + .fid = &fid, + }; rc = SMB2_open_init(tcon, server, &rqst[0], &oplock, &oparms, utf16_path); @@ -3306,8 +3157,7 @@ smb2_query_reparse_tag(const unsigned int xid, struct cifs_tcon *tcon, rc = SMB2_ioctl_init(tcon, server, &rqst[1], COMPOUND_FID, - COMPOUND_FID, FSCTL_GET_REPARSE_POINT, - true /* is_fctl */, NULL, 0, + COMPOUND_FID, FSCTL_GET_REPARSE_POINT, NULL, 0, CIFSMaxBufSize - MAX_SMB2_CREATE_RESPONSE_SIZE - MAX_SMB2_CLOSE_RESPONSE_SIZE); @@ -3425,17 +3275,21 @@ get_smb2_acl_by_path(struct cifs_sb_info *cifs_sb, return ERR_PTR(rc); } - oparms.tcon = tcon; - oparms.desired_access = READ_CONTROL; - oparms.disposition = FILE_OPEN; - /* - * When querying an ACL, even if the file is a symlink we want to open - * the source not the target, and so the protocol requires that the - * client specify this flag when opening a reparse point - */ - oparms.create_options = cifs_create_options(cifs_sb, 0) | OPEN_REPARSE_POINT; - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .path = path, + .desired_access = READ_CONTROL, + .disposition = FILE_OPEN, + /* + * When querying an ACL, even if the file is a symlink + * we want to open the source not the target, and so + * the protocol requires that the client specify this + * flag when opening a reparse point + */ + .create_options = cifs_create_options(cifs_sb, 0) | + OPEN_REPARSE_POINT, + .fid = &fid, + }; if (info & SACL_SECINFO) oparms.desired_access |= SYSTEM_SECURITY; @@ -3494,13 +3348,14 @@ set_smb2_acl(struct cifs_ntsd *pnntsd, __u32 acllen, return rc; } - oparms.tcon = tcon; - oparms.desired_access = access_flags; - oparms.create_options = cifs_create_options(cifs_sb, 0); - oparms.disposition = FILE_OPEN; - oparms.path = path; - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .desired_access = access_flags, + .create_options = cifs_create_options(cifs_sb, 0), + .disposition = FILE_OPEN, + .path = path, + .fid = &fid, + }; rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL, NULL, NULL); @@ -3535,26 +3390,43 @@ get_smb2_acl(struct cifs_sb_info *cifs_sb, return pntsd; } +static long smb3_zero_data(struct file *file, struct cifs_tcon *tcon, + loff_t offset, loff_t len, unsigned int xid) +{ + struct cifsFileInfo *cfile = file->private_data; + struct file_zero_data_information fsctl_buf; + + cifs_dbg(FYI, "Offset %lld len %lld\n", offset, len); + + fsctl_buf.FileOffset = cpu_to_le64(offset); + fsctl_buf.BeyondFinalZero = cpu_to_le64(offset + len); + + return SMB2_ioctl(xid, tcon, cfile->fid.persistent_fid, + cfile->fid.volatile_fid, FSCTL_SET_ZERO_DATA, + (char *)&fsctl_buf, + sizeof(struct file_zero_data_information), + 0, NULL, NULL); +} + static long smb3_zero_range(struct file *file, struct cifs_tcon *tcon, loff_t offset, loff_t len, bool keep_size) { struct cifs_ses *ses = tcon->ses; - struct inode *inode; - struct cifsInodeInfo *cifsi; + struct inode *inode = file_inode(file); + struct cifsInodeInfo *cifsi = CIFS_I(inode); struct cifsFileInfo *cfile = file->private_data; - struct file_zero_data_information fsctl_buf; long rc; unsigned int xid; __le64 eof; xid = get_xid(); - inode = d_inode(cfile->dentry); - cifsi = CIFS_I(inode); - trace_smb3_zero_enter(xid, cfile->fid.persistent_fid, tcon->tid, ses->Suid, offset, len); + inode_lock(inode); + filemap_invalidate_lock(inode->i_mapping); + /* * We zero the range through ioctl, so we need remove the page caches * first, otherwise the data may be inconsistent with the server. @@ -3562,26 +3434,12 @@ static long smb3_zero_range(struct file *file, struct cifs_tcon *tcon, truncate_pagecache_range(inode, offset, offset + len - 1); /* if file not oplocked can't be sure whether asking to extend size */ - if (!CIFS_CACHE_READ(cifsi)) - if (keep_size == false) { - rc = -EOPNOTSUPP; - trace_smb3_zero_err(xid, cfile->fid.persistent_fid, - tcon->tid, ses->Suid, offset, len, rc); - free_xid(xid); - return rc; - } - - cifs_dbg(FYI, "Offset %lld len %lld\n", offset, len); - - fsctl_buf.FileOffset = cpu_to_le64(offset); - fsctl_buf.BeyondFinalZero = cpu_to_le64(offset + len); + rc = -EOPNOTSUPP; + if (keep_size == false && !CIFS_CACHE_READ(cifsi)) + goto zero_range_exit; - rc = SMB2_ioctl(xid, tcon, cfile->fid.persistent_fid, - cfile->fid.volatile_fid, FSCTL_SET_ZERO_DATA, true, - (char *)&fsctl_buf, - sizeof(struct file_zero_data_information), - 0, NULL, NULL); - if (rc) + rc = smb3_zero_data(file, tcon, offset, len, xid); + if (rc < 0) goto zero_range_exit; /* @@ -3594,6 +3452,8 @@ static long smb3_zero_range(struct file *file, struct cifs_tcon *tcon, } zero_range_exit: + filemap_invalidate_unlock(inode->i_mapping); + inode_unlock(inode); free_xid(xid); if (rc) trace_smb3_zero_err(xid, cfile->fid.persistent_fid, tcon->tid, @@ -3638,7 +3498,7 @@ static long smb3_punch_hole(struct file *file, struct cifs_tcon *tcon, rc = SMB2_ioctl(xid, tcon, cfile->fid.persistent_fid, cfile->fid.volatile_fid, FSCTL_SET_ZERO_DATA, - true /* is_fctl */, (char *)&fsctl_buf, + (char *)&fsctl_buf, sizeof(struct file_zero_data_information), CIFSMaxBufSize, NULL, NULL); filemap_invalidate_unlock(inode->i_mapping); @@ -3700,7 +3560,7 @@ static int smb3_simple_fallocate_range(unsigned int xid, in_data.length = cpu_to_le64(len); rc = SMB2_ioctl(xid, tcon, cfile->fid.persistent_fid, cfile->fid.volatile_fid, - FSCTL_QUERY_ALLOCATED_RANGES, true, + FSCTL_QUERY_ALLOCATED_RANGES, (char *)&in_data, sizeof(in_data), 1024 * sizeof(struct file_allocated_range_buffer), (char **)&out_data, &out_data_len); @@ -3901,30 +3761,50 @@ static long smb3_collapse_range(struct file *file, struct cifs_tcon *tcon, { int rc; unsigned int xid; + struct inode *inode = file_inode(file); struct cifsFileInfo *cfile = file->private_data; + struct cifsInodeInfo *cifsi = CIFS_I(inode); __le64 eof; + loff_t old_eof; xid = get_xid(); - if (off >= i_size_read(file->f_inode) || - off + len >= i_size_read(file->f_inode)) { + inode_lock(inode); + + old_eof = i_size_read(inode); + if ((off >= old_eof) || + off + len >= old_eof) { rc = -EINVAL; goto out; } + filemap_invalidate_lock(inode->i_mapping); + rc = filemap_write_and_wait_range(inode->i_mapping, off, old_eof - 1); + if (rc < 0) + goto out_2; + + truncate_pagecache_range(inode, off, old_eof); + rc = smb2_copychunk_range(xid, cfile, cfile, off + len, - i_size_read(file->f_inode) - off - len, off); + old_eof - off - len, off); if (rc < 0) - goto out; + goto out_2; - eof = cpu_to_le64(i_size_read(file->f_inode) - len); + eof = cpu_to_le64(old_eof - len); rc = SMB2_set_eof(xid, tcon, cfile->fid.persistent_fid, cfile->fid.volatile_fid, cfile->pid, &eof); if (rc < 0) - goto out; + goto out_2; rc = 0; + + cifsi->server_eof = i_size_read(inode) - len; + truncate_setsize(inode, cifsi->server_eof); + +out_2: + filemap_invalidate_unlock(inode->i_mapping); out: + inode_unlock(inode); free_xid(xid); return rc; } @@ -3935,34 +3815,47 @@ static long smb3_insert_range(struct file *file, struct cifs_tcon *tcon, int rc; unsigned int xid; struct cifsFileInfo *cfile = file->private_data; + struct inode *inode = file_inode(file); __le64 eof; - __u64 count; + __u64 count, old_eof; xid = get_xid(); - if (off >= i_size_read(file->f_inode)) { + inode_lock(inode); + + old_eof = i_size_read(inode); + if (off >= old_eof) { rc = -EINVAL; goto out; } - count = i_size_read(file->f_inode) - off; - eof = cpu_to_le64(i_size_read(file->f_inode) + len); + count = old_eof - off; + eof = cpu_to_le64(old_eof + len); + + filemap_invalidate_lock(inode->i_mapping); + rc = filemap_write_and_wait_range(inode->i_mapping, off, old_eof + len - 1); + if (rc < 0) + goto out_2; + truncate_pagecache_range(inode, off, old_eof); rc = SMB2_set_eof(xid, tcon, cfile->fid.persistent_fid, cfile->fid.volatile_fid, cfile->pid, &eof); if (rc < 0) - goto out; + goto out_2; rc = smb2_copychunk_range(xid, cfile, cfile, off, count, off + len); if (rc < 0) - goto out; + goto out_2; - rc = smb3_zero_range(file, tcon, off, len, 1); + rc = smb3_zero_data(file, tcon, off, len, xid); if (rc < 0) - goto out; + goto out_2; rc = 0; +out_2: + filemap_invalidate_unlock(inode->i_mapping); out: + inode_unlock(inode); free_xid(xid); return rc; } @@ -4012,7 +3905,7 @@ static loff_t smb3_llseek(struct file *file, struct cifs_tcon *tcon, loff_t offs rc = SMB2_ioctl(xid, tcon, cfile->fid.persistent_fid, cfile->fid.volatile_fid, - FSCTL_QUERY_ALLOCATED_RANGES, true, + FSCTL_QUERY_ALLOCATED_RANGES, (char *)&in_data, sizeof(in_data), sizeof(struct file_allocated_range_buffer), (char **)&out_data, &out_data_len); @@ -4072,7 +3965,7 @@ static int smb3_fiemap(struct cifs_tcon *tcon, rc = SMB2_ioctl(xid, tcon, cfile->fid.persistent_fid, cfile->fid.volatile_fid, - FSCTL_QUERY_ALLOCATED_RANGES, true, + FSCTL_QUERY_ALLOCATED_RANGES, (char *)&in_data, sizeof(in_data), 1024 * sizeof(struct file_allocated_range_buffer), (char **)&out_data, &out_data_len); @@ -4299,12 +4192,12 @@ static __le32 map_oplock_to_lease(u8 oplock) { if (oplock == SMB2_OPLOCK_LEVEL_EXCLUSIVE) - return SMB2_LEASE_WRITE_CACHING | SMB2_LEASE_READ_CACHING; + return SMB2_LEASE_WRITE_CACHING_LE | SMB2_LEASE_READ_CACHING_LE; else if (oplock == SMB2_OPLOCK_LEVEL_II) - return SMB2_LEASE_READ_CACHING; + return SMB2_LEASE_READ_CACHING_LE; else if (oplock == SMB2_OPLOCK_LEVEL_BATCH) - return SMB2_LEASE_HANDLE_CACHING | SMB2_LEASE_READ_CACHING | - SMB2_LEASE_WRITE_CACHING; + return SMB2_LEASE_HANDLE_CACHING_LE | SMB2_LEASE_READ_CACHING_LE | + SMB2_LEASE_WRITE_CACHING_LE; return 0; } @@ -4366,7 +4259,7 @@ smb2_parse_lease_buf(void *buf, unsigned int *epoch, char *lease_key) struct create_lease *lc = (struct create_lease *)buf; *epoch = 0; /* not used */ - if (lc->lcontext.LeaseFlags & SMB2_LEASE_FLAG_BREAK_IN_PROGRESS) + if (lc->lcontext.LeaseFlags & SMB2_LEASE_FLAG_BREAK_IN_PROGRESS_LE) return SMB2_OPLOCK_LEVEL_NOCHANGE; return le32_to_cpu(lc->lcontext.LeaseState); } @@ -4377,7 +4270,7 @@ smb3_parse_lease_buf(void *buf, unsigned int *epoch, char *lease_key) struct create_lease_v2 *lc = (struct create_lease_v2 *)buf; *epoch = le16_to_cpu(lc->lcontext.Epoch); - if (lc->lcontext.LeaseFlags & SMB2_LEASE_FLAG_BREAK_IN_PROGRESS) + if (lc->lcontext.LeaseFlags & SMB2_LEASE_FLAG_BREAK_IN_PROGRESS_LE) return SMB2_OPLOCK_LEVEL_NOCHANGE; if (lease_key) memcpy(lease_key, &lc->lcontext.LeaseKey, SMB2_LEASE_KEY_SIZE); @@ -4401,8 +4294,8 @@ static void fill_transform_hdr(struct smb2_transform_hdr *tr_hdr, unsigned int orig_len, struct smb_rqst *old_rq, __le16 cipher_type) { - struct smb2_sync_hdr *shdr = - (struct smb2_sync_hdr *)old_rq->rq_iov[0].iov_base; + struct smb2_hdr *shdr = + (struct smb2_hdr *)old_rq->rq_iov[0].iov_base; memset(tr_hdr, 0, sizeof(struct smb2_transform_hdr)); tr_hdr->ProtocolId = SMB2_TRANSFORM_PROTO_NUM; @@ -4465,6 +4358,12 @@ static void *smb2_get_aead_req(struct crypto_aead *tfm, const struct smb_rqst *r sg_init_table(*sgl, num_sgs); sg = *sgl; + /* + * The first rqst has a transform header where the + * first 20 bytes are not part of the encrypted blob. + */ + skip = 20; + /* Assumes the first rqst has a transform header as the first iov. * I.e. * rqst[0].rq_iov[0] is transform header @@ -4472,17 +4371,15 @@ static void *smb2_get_aead_req(struct crypto_aead *tfm, const struct smb_rqst *r * rqst[1+].rq_iov[0+] data to be encrypted/decrypted */ for (i = 0; i < num_rqst; i++) { - /* - * The first rqst has a transform header where the - * first 20 bytes are not part of the encrypted blob. - */ for (j = 0; j < rqst[i].rq_nvec; j++) { struct kvec *iov = &rqst[i].rq_iov[j]; - skip = (i == 0) && (j == 0) ? 20 : 0; addr = (unsigned long)iov->iov_base + skip; len = iov->iov_len - skip; sg = cifs_sg_set_buf(sg, (void *)addr, len); + + /* See the above comment on the 'skip' assignment */ + skip = 0; } for (j = 0; j < rqst[i].rq_npages; j++) { rqst_page_get_length(&rqst[i], j, &len, &off); @@ -4497,23 +4394,29 @@ static void *smb2_get_aead_req(struct crypto_aead *tfm, const struct smb_rqst *r static int smb2_get_enc_key(struct TCP_Server_Info *server, __u64 ses_id, int enc, u8 *key) { + struct TCP_Server_Info *pserver; struct cifs_ses *ses; u8 *ses_enc_key; + /* If server is a channel, select the primary channel */ + pserver = CIFS_SERVER_IS_CHAN(server) ? server->primary_server : server; + spin_lock(&cifs_tcp_ses_lock); - list_for_each_entry(server, &cifs_tcp_ses_list, tcp_ses_list) { - list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { - if (ses->Suid == ses_id) { - ses_enc_key = enc ? ses->smb3encryptionkey : - ses->smb3decryptionkey; - memcpy(key, ses_enc_key, SMB3_ENC_DEC_KEY_SIZE); - spin_unlock(&cifs_tcp_ses_lock); - return 0; - } + list_for_each_entry(ses, &pserver->smb_ses_list, smb_ses_list) { + if (ses->Suid == ses_id) { + spin_lock(&ses->ses_lock); + ses_enc_key = enc ? ses->smb3encryptionkey : + ses->smb3decryptionkey; + memcpy(key, ses_enc_key, SMB3_ENC_DEC_KEY_SIZE); + spin_unlock(&ses->ses_lock); + spin_unlock(&cifs_tcp_ses_lock); + return 0; } } spin_unlock(&cifs_tcp_ses_lock); + trace_smb3_ses_not_found(ses_id); + return -EAGAIN; } /* @@ -4541,10 +4444,10 @@ crypt_message(struct TCP_Server_Info *server, int num_rqst, unsigned int crypt_len = le32_to_cpu(tr_hdr->OriginalMessageSize); void *creq; - rc = smb2_get_enc_key(server, tr_hdr->SessionId, enc, key); + rc = smb2_get_enc_key(server, le64_to_cpu(tr_hdr->SessionId), enc, key); if (rc) { - cifs_server_dbg(VFS, "%s: Could not get %scryption key\n", __func__, - enc ? "en" : "de"); + cifs_server_dbg(FYI, "%s: Could not get %scryption key. sid: 0x%llx\n", __func__, + enc ? "en" : "de", le64_to_cpu(tr_hdr->SessionId)); return rc; } @@ -4554,8 +4457,7 @@ crypt_message(struct TCP_Server_Info *server, int num_rqst, return rc; } - tfm = enc ? server->secmech.ccmaesencrypt : - server->secmech.ccmaesdecrypt; + tfm = enc ? server->secmech.enc : server->secmech.dec; if ((server->cipher_type == SMB2_ENCRYPTION_AES256_CCM) || (server->cipher_type == SMB2_ENCRYPTION_AES256_GCM)) @@ -4647,21 +4549,27 @@ smb3_init_transform_rq(struct TCP_Server_Info *server, int num_rqst, int rc = -ENOMEM; for (i = 1; i < num_rqst; i++) { - npages = old_rq[i - 1].rq_npages; + struct smb_rqst *old = &old_rq[i - 1]; + struct smb_rqst *new = &new_rq[i]; + + orig_len += smb_rqst_len(server, old); + new->rq_iov = old->rq_iov; + new->rq_nvec = old->rq_nvec; + + npages = old->rq_npages; + if (!npages) + continue; + pages = kmalloc_array(npages, sizeof(struct page *), GFP_KERNEL); if (!pages) goto err_free; - new_rq[i].rq_pages = pages; - new_rq[i].rq_npages = npages; - new_rq[i].rq_offset = old_rq[i - 1].rq_offset; - new_rq[i].rq_pagesz = old_rq[i - 1].rq_pagesz; - new_rq[i].rq_tailsz = old_rq[i - 1].rq_tailsz; - new_rq[i].rq_iov = old_rq[i - 1].rq_iov; - new_rq[i].rq_nvec = old_rq[i - 1].rq_nvec; - - orig_len += smb_rqst_len(server, &old_rq[i - 1]); + new->rq_pages = pages; + new->rq_npages = npages; + new->rq_offset = old->rq_offset; + new->rq_pagesz = old->rq_pagesz; + new->rq_tailsz = old->rq_tailsz; for (j = 0; j < npages; j++) { pages[j] = alloc_page(GFP_KERNEL|__GFP_HIGHMEM); @@ -4671,17 +4579,12 @@ smb3_init_transform_rq(struct TCP_Server_Info *server, int num_rqst, /* copy pages form the old */ for (j = 0; j < npages; j++) { - char *dst, *src; unsigned int offset, len; - rqst_page_get_length(&new_rq[i], j, &len, &offset); + rqst_page_get_length(new, j, &len, &offset); - dst = (char *) kmap(new_rq[i].rq_pages[j]) + offset; - src = (char *) kmap(old_rq[i - 1].rq_pages[j]) + offset; - - memcpy(dst, src, len); - kunmap(new_rq[i].rq_pages[j]); - kunmap(old_rq[i - 1].rq_pages[j]); + memcpy_page(new->rq_pages[j], offset, + old->rq_pages[j], offset, len); } } @@ -4813,7 +4716,7 @@ handle_read_data(struct TCP_Server_Info *server, struct mid_q_entry *mid, unsigned int cur_page_idx; unsigned int pad_len; struct cifs_readdata *rdata = mid->callback_data; - struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)buf; + struct smb2_hdr *shdr = (struct smb2_hdr *)buf; struct bio_vec *bvec = NULL; struct iov_iter iter; struct kvec iov; @@ -4822,13 +4725,13 @@ handle_read_data(struct TCP_Server_Info *server, struct mid_q_entry *mid, if (shdr->Command != SMB2_READ) { cifs_server_dbg(VFS, "only big read responses are supported\n"); - return -ENOTSUPP; + return -EOPNOTSUPP; } if (server->ops->is_session_expired && server->ops->is_session_expired(buf)) { if (!is_offloaded) - cifs_reconnect(server); + cifs_reconnect(server, true); return -1; } @@ -5001,20 +4904,24 @@ static void smb2_decrypt_offload(struct work_struct *work) mid->callback(mid); } else { - spin_lock(&GlobalMid_Lock); + spin_lock(&dw->server->srv_lock); if (dw->server->tcpStatus == CifsNeedReconnect) { + spin_lock(&dw->server->mid_lock); mid->mid_state = MID_RETRY_NEEDED; - spin_unlock(&GlobalMid_Lock); + spin_unlock(&dw->server->mid_lock); + spin_unlock(&dw->server->srv_lock); mid->callback(mid); } else { + spin_lock(&dw->server->mid_lock); mid->mid_state = MID_REQUEST_SUBMITTED; mid->mid_flags &= ~(MID_DELETED); list_add_tail(&mid->qhead, &dw->server->pending_mid_q); - spin_unlock(&GlobalMid_Lock); + spin_unlock(&dw->server->mid_lock); + spin_unlock(&dw->server->srv_lock); } } - cifs_mid_q_entry_release(mid); + release_mid(mid); } free_pages: @@ -5142,9 +5049,10 @@ receive_encrypted_standard(struct TCP_Server_Info *server, { int ret, length; char *buf = server->smallbuf; - struct smb2_sync_hdr *shdr; + struct smb2_hdr *shdr; unsigned int pdu_length = server->pdu_size; unsigned int buf_size; + unsigned int next_cmd; struct mid_q_entry *mid_entry; int next_is_large; char *next_buffer = NULL; @@ -5172,15 +5080,16 @@ receive_encrypted_standard(struct TCP_Server_Info *server, next_is_large = server->large_buf; one_more: - shdr = (struct smb2_sync_hdr *)buf; - if (shdr->NextCommand) { + shdr = (struct smb2_hdr *)buf; + next_cmd = le32_to_cpu(shdr->NextCommand); + if (next_cmd) { + if (WARN_ON_ONCE(next_cmd > pdu_length)) + return -1; if (next_is_large) next_buffer = (char *)cifs_buf_get(); else next_buffer = (char *)cifs_small_buf_get(); - memcpy(next_buffer, - buf + le32_to_cpu(shdr->NextCommand), - pdu_length - le32_to_cpu(shdr->NextCommand)); + memcpy(next_buffer, buf + next_cmd, pdu_length - next_cmd); } mid_entry = smb2_find_mid(server, buf); @@ -5204,8 +5113,8 @@ receive_encrypted_standard(struct TCP_Server_Info *server, else ret = cifs_handle_standard(server, mid_entry); - if (ret == 0 && shdr->NextCommand) { - pdu_length -= le32_to_cpu(shdr->NextCommand); + if (ret == 0 && next_cmd) { + pdu_length -= next_cmd; server->large_buf = next_is_large; if (next_is_large) server->bigbuf = buf = next_buffer; @@ -5238,16 +5147,16 @@ smb3_receive_transform(struct TCP_Server_Info *server, unsigned int orig_len = le32_to_cpu(tr_hdr->OriginalMessageSize); if (pdu_length < sizeof(struct smb2_transform_hdr) + - sizeof(struct smb2_sync_hdr)) { + sizeof(struct smb2_hdr)) { cifs_server_dbg(VFS, "Transform message is too small (%u)\n", pdu_length); - cifs_reconnect(server); + cifs_reconnect(server, true); return -ECONNABORTED; } if (pdu_length < orig_len + sizeof(struct smb2_transform_hdr)) { cifs_server_dbg(VFS, "Transform message is broken\n"); - cifs_reconnect(server); + cifs_reconnect(server, true); return -ECONNABORTED; } @@ -5271,7 +5180,7 @@ smb3_handle_read_data(struct TCP_Server_Info *server, struct mid_q_entry *mid) static int smb2_next_header(char *buf) { - struct smb2_sync_hdr *hdr = (struct smb2_sync_hdr *)buf; + struct smb2_hdr *hdr = (struct smb2_hdr *)buf; struct smb2_transform_hdr *t_hdr = (struct smb2_transform_hdr *)buf; if (hdr->ProtocolId == SMB2_TRANSFORM_PROTO_NUM) @@ -5288,7 +5197,7 @@ smb2_make_node(unsigned int xid, struct inode *inode, { struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); int rc = -EPERM; - FILE_ALL_INFO *buf = NULL; + struct cifs_open_info_data buf = {}; struct cifs_io_parms io_parms = {0}; __u32 oplock = 0; struct cifs_fid fid; @@ -5304,7 +5213,7 @@ smb2_make_node(unsigned int xid, struct inode *inode, * and was used by default in earlier versions of Windows */ if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL)) - goto out; + return rc; /* * TODO: Add ability to create instead via reparse point. Windows (e.g. @@ -5313,45 +5222,40 @@ smb2_make_node(unsigned int xid, struct inode *inode, */ if (!S_ISCHR(mode) && !S_ISBLK(mode)) - goto out; + return rc; cifs_dbg(FYI, "sfu compat create special file\n"); - buf = kmalloc(sizeof(FILE_ALL_INFO), GFP_KERNEL); - if (buf == NULL) { - rc = -ENOMEM; - goto out; - } - - oparms.tcon = tcon; - oparms.cifs_sb = cifs_sb; - oparms.desired_access = GENERIC_WRITE; - oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR | - CREATE_OPTION_SPECIAL); - oparms.disposition = FILE_CREATE; - oparms.path = full_path; - oparms.fid = &fid; - oparms.reconnect = false; + oparms = (struct cifs_open_parms) { + .tcon = tcon, + .cifs_sb = cifs_sb, + .desired_access = GENERIC_WRITE, + .create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR | + CREATE_OPTION_SPECIAL), + .disposition = FILE_CREATE, + .path = full_path, + .fid = &fid, + }; if (tcon->ses->server->oplocks) oplock = REQ_OPLOCK; else oplock = 0; - rc = tcon->ses->server->ops->open(xid, &oparms, &oplock, buf); + rc = tcon->ses->server->ops->open(xid, &oparms, &oplock, &buf); if (rc) - goto out; + return rc; /* * BB Do not bother to decode buf since no local inode yet to put * timestamps in, but we can reuse it safely. */ - pdev = (struct win_dev *)buf; + pdev = (struct win_dev *)&buf.fi; io_parms.pid = current->tgid; io_parms.tcon = tcon; io_parms.offset = 0; io_parms.length = sizeof(struct win_dev); - iov[1].iov_base = buf; + iov[1].iov_base = &buf.fi; iov[1].iov_len = sizeof(struct win_dev); if (S_ISCHR(mode)) { memcpy(pdev->type, "IntxCHR", 8); @@ -5370,8 +5274,8 @@ smb2_make_node(unsigned int xid, struct inode *inode, d_drop(dentry); /* FIXME: add code here to set EAs */ -out: - kfree(buf); + + cifs_free_open_info(&buf); return rc; } @@ -5812,13 +5716,13 @@ struct smb_version_values smb20_values = { .protocol_id = SMB20_PROT_ID, .req_capabilities = 0, /* MBZ */ .large_lock_type = 0, - .exclusive_lock_type = SMB2_LOCKFLAG_EXCLUSIVE_LOCK, - .shared_lock_type = SMB2_LOCKFLAG_SHARED_LOCK, + .exclusive_lock_type = SMB2_LOCKFLAG_EXCLUSIVE, + .shared_lock_type = SMB2_LOCKFLAG_SHARED, .unlock_lock_type = SMB2_LOCKFLAG_UNLOCK, - .header_size = sizeof(struct smb2_sync_hdr), + .header_size = sizeof(struct smb2_hdr), .header_preamble_size = 0, .max_header_size = MAX_SMB2_HDR_SIZE, - .read_rsp_size = sizeof(struct smb2_read_rsp) - 1, + .read_rsp_size = sizeof(struct smb2_read_rsp), .lock_cmd = SMB2_LOCK, .cap_unix = 0, .cap_nt_find = SMB2_NT_FIND, @@ -5834,13 +5738,13 @@ struct smb_version_values smb21_values = { .protocol_id = SMB21_PROT_ID, .req_capabilities = 0, /* MBZ on negotiate req until SMB3 dialect */ .large_lock_type = 0, - .exclusive_lock_type = SMB2_LOCKFLAG_EXCLUSIVE_LOCK, - .shared_lock_type = SMB2_LOCKFLAG_SHARED_LOCK, + .exclusive_lock_type = SMB2_LOCKFLAG_EXCLUSIVE, + .shared_lock_type = SMB2_LOCKFLAG_SHARED, .unlock_lock_type = SMB2_LOCKFLAG_UNLOCK, - .header_size = sizeof(struct smb2_sync_hdr), + .header_size = sizeof(struct smb2_hdr), .header_preamble_size = 0, .max_header_size = MAX_SMB2_HDR_SIZE, - .read_rsp_size = sizeof(struct smb2_read_rsp) - 1, + .read_rsp_size = sizeof(struct smb2_read_rsp), .lock_cmd = SMB2_LOCK, .cap_unix = 0, .cap_nt_find = SMB2_NT_FIND, @@ -5855,13 +5759,13 @@ struct smb_version_values smb3any_values = { .protocol_id = SMB302_PROT_ID, /* doesn't matter, send protocol array */ .req_capabilities = SMB2_GLOBAL_CAP_DFS | SMB2_GLOBAL_CAP_LEASING | SMB2_GLOBAL_CAP_LARGE_MTU | SMB2_GLOBAL_CAP_PERSISTENT_HANDLES | SMB2_GLOBAL_CAP_ENCRYPTION | SMB2_GLOBAL_CAP_DIRECTORY_LEASING, .large_lock_type = 0, - .exclusive_lock_type = SMB2_LOCKFLAG_EXCLUSIVE_LOCK, - .shared_lock_type = SMB2_LOCKFLAG_SHARED_LOCK, + .exclusive_lock_type = SMB2_LOCKFLAG_EXCLUSIVE, + .shared_lock_type = SMB2_LOCKFLAG_SHARED, .unlock_lock_type = SMB2_LOCKFLAG_UNLOCK, - .header_size = sizeof(struct smb2_sync_hdr), + .header_size = sizeof(struct smb2_hdr), .header_preamble_size = 0, .max_header_size = MAX_SMB2_HDR_SIZE, - .read_rsp_size = sizeof(struct smb2_read_rsp) - 1, + .read_rsp_size = sizeof(struct smb2_read_rsp), .lock_cmd = SMB2_LOCK, .cap_unix = 0, .cap_nt_find = SMB2_NT_FIND, @@ -5876,13 +5780,13 @@ struct smb_version_values smbdefault_values = { .protocol_id = SMB302_PROT_ID, /* doesn't matter, send protocol array */ .req_capabilities = SMB2_GLOBAL_CAP_DFS | SMB2_GLOBAL_CAP_LEASING | SMB2_GLOBAL_CAP_LARGE_MTU | SMB2_GLOBAL_CAP_PERSISTENT_HANDLES | SMB2_GLOBAL_CAP_ENCRYPTION | SMB2_GLOBAL_CAP_DIRECTORY_LEASING, .large_lock_type = 0, - .exclusive_lock_type = SMB2_LOCKFLAG_EXCLUSIVE_LOCK, - .shared_lock_type = SMB2_LOCKFLAG_SHARED_LOCK, + .exclusive_lock_type = SMB2_LOCKFLAG_EXCLUSIVE, + .shared_lock_type = SMB2_LOCKFLAG_SHARED, .unlock_lock_type = SMB2_LOCKFLAG_UNLOCK, - .header_size = sizeof(struct smb2_sync_hdr), + .header_size = sizeof(struct smb2_hdr), .header_preamble_size = 0, .max_header_size = MAX_SMB2_HDR_SIZE, - .read_rsp_size = sizeof(struct smb2_read_rsp) - 1, + .read_rsp_size = sizeof(struct smb2_read_rsp), .lock_cmd = SMB2_LOCK, .cap_unix = 0, .cap_nt_find = SMB2_NT_FIND, @@ -5897,13 +5801,13 @@ struct smb_version_values smb30_values = { .protocol_id = SMB30_PROT_ID, .req_capabilities = SMB2_GLOBAL_CAP_DFS | SMB2_GLOBAL_CAP_LEASING | SMB2_GLOBAL_CAP_LARGE_MTU | SMB2_GLOBAL_CAP_PERSISTENT_HANDLES | SMB2_GLOBAL_CAP_ENCRYPTION | SMB2_GLOBAL_CAP_DIRECTORY_LEASING, .large_lock_type = 0, - .exclusive_lock_type = SMB2_LOCKFLAG_EXCLUSIVE_LOCK, - .shared_lock_type = SMB2_LOCKFLAG_SHARED_LOCK, + .exclusive_lock_type = SMB2_LOCKFLAG_EXCLUSIVE, + .shared_lock_type = SMB2_LOCKFLAG_SHARED, .unlock_lock_type = SMB2_LOCKFLAG_UNLOCK, - .header_size = sizeof(struct smb2_sync_hdr), + .header_size = sizeof(struct smb2_hdr), .header_preamble_size = 0, .max_header_size = MAX_SMB2_HDR_SIZE, - .read_rsp_size = sizeof(struct smb2_read_rsp) - 1, + .read_rsp_size = sizeof(struct smb2_read_rsp), .lock_cmd = SMB2_LOCK, .cap_unix = 0, .cap_nt_find = SMB2_NT_FIND, @@ -5918,13 +5822,13 @@ struct smb_version_values smb302_values = { .protocol_id = SMB302_PROT_ID, .req_capabilities = SMB2_GLOBAL_CAP_DFS | SMB2_GLOBAL_CAP_LEASING | SMB2_GLOBAL_CAP_LARGE_MTU | SMB2_GLOBAL_CAP_PERSISTENT_HANDLES | SMB2_GLOBAL_CAP_ENCRYPTION | SMB2_GLOBAL_CAP_DIRECTORY_LEASING, .large_lock_type = 0, - .exclusive_lock_type = SMB2_LOCKFLAG_EXCLUSIVE_LOCK, - .shared_lock_type = SMB2_LOCKFLAG_SHARED_LOCK, + .exclusive_lock_type = SMB2_LOCKFLAG_EXCLUSIVE, + .shared_lock_type = SMB2_LOCKFLAG_SHARED, .unlock_lock_type = SMB2_LOCKFLAG_UNLOCK, - .header_size = sizeof(struct smb2_sync_hdr), + .header_size = sizeof(struct smb2_hdr), .header_preamble_size = 0, .max_header_size = MAX_SMB2_HDR_SIZE, - .read_rsp_size = sizeof(struct smb2_read_rsp) - 1, + .read_rsp_size = sizeof(struct smb2_read_rsp), .lock_cmd = SMB2_LOCK, .cap_unix = 0, .cap_nt_find = SMB2_NT_FIND, @@ -5939,13 +5843,13 @@ struct smb_version_values smb311_values = { .protocol_id = SMB311_PROT_ID, .req_capabilities = SMB2_GLOBAL_CAP_DFS | SMB2_GLOBAL_CAP_LEASING | SMB2_GLOBAL_CAP_LARGE_MTU | SMB2_GLOBAL_CAP_PERSISTENT_HANDLES | SMB2_GLOBAL_CAP_ENCRYPTION | SMB2_GLOBAL_CAP_DIRECTORY_LEASING, .large_lock_type = 0, - .exclusive_lock_type = SMB2_LOCKFLAG_EXCLUSIVE_LOCK, - .shared_lock_type = SMB2_LOCKFLAG_SHARED_LOCK, + .exclusive_lock_type = SMB2_LOCKFLAG_EXCLUSIVE, + .shared_lock_type = SMB2_LOCKFLAG_SHARED, .unlock_lock_type = SMB2_LOCKFLAG_UNLOCK, - .header_size = sizeof(struct smb2_sync_hdr), + .header_size = sizeof(struct smb2_hdr), .header_preamble_size = 0, .max_header_size = MAX_SMB2_HDR_SIZE, - .read_rsp_size = sizeof(struct smb2_read_rsp) - 1, + .read_rsp_size = sizeof(struct smb2_read_rsp), .lock_cmd = SMB2_LOCK, .cap_unix = 0, .cap_nt_find = SMB2_NT_FIND, diff --git a/fs/cifs/smb2pdu.c b/fs/cifs/smb2pdu.c index f51fea2e808d1..7d0905f000b60 100644 --- a/fs/cifs/smb2pdu.c +++ b/fs/cifs/smb2pdu.c @@ -23,7 +23,6 @@ #include #include #include -#include "smb2pdu.h" #include "cifsglob.h" #include "cifsacl.h" #include "cifsproto.h" @@ -40,6 +39,7 @@ #ifdef CONFIG_CIFS_DFS_UPCALL #include "dfs_cache.h" #endif +#include "cached_dir.h" /* * The following table defines the expected "StructureSize" of SMB2 requests @@ -84,7 +84,7 @@ int smb3_encryption_required(const struct cifs_tcon *tcon) } static void -smb2_hdr_assemble(struct smb2_sync_hdr *shdr, __le16 smb2_cmd, +smb2_hdr_assemble(struct smb2_hdr *shdr, __le16 smb2_cmd, const struct cifs_tcon *tcon, struct TCP_Server_Info *server) { @@ -104,7 +104,7 @@ smb2_hdr_assemble(struct smb2_sync_hdr *shdr, __le16 smb2_cmd, } else { shdr->CreditRequest = cpu_to_le16(2); } - shdr->ProcessId = cpu_to_le32((__u16)current->tgid); + shdr->Id.SyncId.ProcessId = cpu_to_le32((__u16)current->tgid); if (!tcon) goto out; @@ -115,10 +115,10 @@ smb2_hdr_assemble(struct smb2_sync_hdr *shdr, __le16 smb2_cmd, shdr->CreditCharge = cpu_to_le16(1); /* else CreditCharge MBZ */ - shdr->TreeId = tcon->tid; + shdr->Id.SyncId.TreeId = cpu_to_le32(tcon->tid); /* Uid is not converted */ if (tcon->ses) - shdr->SessionId = tcon->ses->Suid; + shdr->SessionId = cpu_to_le64(tcon->ses->Suid); /* * If we would set SMB2_FLAGS_DFS_OPERATIONS on open we also would have @@ -143,10 +143,9 @@ static int smb2_reconnect(__le16 smb2_command, struct cifs_tcon *tcon, struct TCP_Server_Info *server) { - int rc; - struct nls_table *nls_codepage; + int rc = 0; + struct nls_table *nls_codepage = NULL; struct cifs_ses *ses; - int retries; /* * SMB2s NegProt, SessSetup, Logoff do not have tcon yet so @@ -163,33 +162,34 @@ smb2_reconnect(__le16 smb2_command, struct cifs_tcon *tcon, if (smb2_command == SMB2_TREE_CONNECT || smb2_command == SMB2_IOCTL) return 0; - if (tcon->tidStatus == CifsExiting) { + spin_lock(&tcon->tc_lock); + if (tcon->status == TID_EXITING) { /* - * only tree disconnect, open, and write, - * (and ulogoff which does not have tcon) - * are allowed as we start force umount. + * only tree disconnect allowed when disconnecting ... */ - if ((smb2_command != SMB2_WRITE) && - (smb2_command != SMB2_CREATE) && - (smb2_command != SMB2_TREE_DISCONNECT)) { + if (smb2_command != SMB2_TREE_DISCONNECT) { + spin_unlock(&tcon->tc_lock); cifs_dbg(FYI, "can not send cmd %d while umounting\n", smb2_command); return -ENODEV; } } - if ((!tcon->ses) || (tcon->ses->status == CifsExiting) || - (!tcon->ses->server) || !server) - return -EIO; + spin_unlock(&tcon->tc_lock); ses = tcon->ses; - retries = server->nr_targets; + if (!ses) + return -EIO; + spin_lock(&ses->ses_lock); + if (ses->ses_status == SES_EXITING) { + spin_unlock(&ses->ses_lock); + return -EIO; + } + spin_unlock(&ses->ses_lock); + if (!ses->server || !server) + return -EIO; - /* - * Give demultiplex thread up to 10 seconds to each target available for - * reconnect -- should be greater than cifs socket timeout which is 7 - * seconds. - */ - while (server->tcpStatus == CifsNeedReconnect) { + spin_lock(&server->srv_lock); + if (server->tcpStatus == CifsNeedReconnect) { /* * Return to caller for TREE_DISCONNECT and LOGOFF and CLOSE * here since they are implicitly done when session drops. @@ -202,103 +202,100 @@ smb2_reconnect(__le16 smb2_command, struct cifs_tcon *tcon, case SMB2_CANCEL: case SMB2_CLOSE: case SMB2_OPLOCK_BREAK: + spin_unlock(&server->srv_lock); return -EAGAIN; } - - rc = wait_event_interruptible_timeout(server->response_q, - (server->tcpStatus != CifsNeedReconnect), - 10 * HZ); - if (rc < 0) { - cifs_dbg(FYI, "%s: aborting reconnect due to a received signal by the process\n", - __func__); - return -ERESTARTSYS; - } - - /* are we still trying to reconnect? */ - if (server->tcpStatus != CifsNeedReconnect) - break; - - if (retries && --retries) - continue; - - /* - * on "soft" mounts we wait once. Hard mounts keep - * retrying until process is killed or server comes - * back on-line - */ - if (!tcon->retry) { - cifs_dbg(FYI, "gave up waiting on reconnect in smb_init\n"); - return -EHOSTDOWN; - } - retries = server->nr_targets; } + spin_unlock(&server->srv_lock); - if (!tcon->ses->need_reconnect && !tcon->need_reconnect) - return 0; - - nls_codepage = load_nls_default(); +again: + rc = cifs_wait_for_server_reconnect(server, tcon->retry); + if (rc) + return rc; - /* - * need to prevent multiple threads trying to simultaneously reconnect - * the same SMB session - */ - mutex_lock(&tcon->ses->session_mutex); + spin_lock(&ses->chan_lock); + if (!cifs_chan_needs_reconnect(ses, server) && !tcon->need_reconnect) { + spin_unlock(&ses->chan_lock); + return 0; + } + spin_unlock(&ses->chan_lock); + cifs_dbg(FYI, "sess reconnect mask: 0x%lx, tcon reconnect: %d", + tcon->ses->chans_need_reconnect, + tcon->need_reconnect); + mutex_lock(&ses->session_mutex); /* * Recheck after acquire mutex. If another thread is negotiating * and the server never sends an answer the socket will be closed * and tcpStatus set to reconnect. */ + spin_lock(&server->srv_lock); if (server->tcpStatus == CifsNeedReconnect) { + spin_unlock(&server->srv_lock); + mutex_unlock(&ses->session_mutex); + + if (tcon->retry) + goto again; + rc = -EHOSTDOWN; - mutex_unlock(&tcon->ses->session_mutex); goto out; } + spin_unlock(&server->srv_lock); + + nls_codepage = load_nls_default(); /* - * If we are reconnecting an extra channel, bind + * need to prevent multiple threads trying to simultaneously + * reconnect the same SMB session */ - if (server->is_channel) { - ses->binding = true; - ses->binding_chan = cifs_ses_find_chan(ses, server); + spin_lock(&ses->ses_lock); + spin_lock(&ses->chan_lock); + if (!cifs_chan_needs_reconnect(ses, server) && + ses->ses_status == SES_GOOD) { + spin_unlock(&ses->chan_lock); + spin_unlock(&ses->ses_lock); + /* this means that we only need to tree connect */ + if (tcon->need_reconnect) + goto skip_sess_setup; + + mutex_unlock(&ses->session_mutex); + goto out; } + spin_unlock(&ses->chan_lock); + spin_unlock(&ses->ses_lock); - rc = cifs_negotiate_protocol(0, tcon->ses); - if (!rc && tcon->ses->need_reconnect) { - rc = cifs_setup_session(0, tcon->ses, nls_codepage); + rc = cifs_negotiate_protocol(0, ses, server); + if (!rc) { + rc = cifs_setup_session(0, ses, server, nls_codepage); if ((rc == -EACCES) && !tcon->retry) { + mutex_unlock(&ses->session_mutex); rc = -EHOSTDOWN; - ses->binding = false; - ses->binding_chan = NULL; - mutex_unlock(&tcon->ses->session_mutex); goto failed; } else if (rc) { mutex_unlock(&ses->session_mutex); goto out; } + } else { + mutex_unlock(&ses->session_mutex); + goto out; } - /* - * End of channel binding - */ - ses->binding = false; - ses->binding_chan = NULL; - if (rc || !tcon->need_reconnect) { - mutex_unlock(&tcon->ses->session_mutex); +skip_sess_setup: + if (!tcon->need_reconnect) { + mutex_unlock(&ses->session_mutex); goto out; } - cifs_mark_open_files_invalid(tcon); if (tcon->use_persistent) tcon->need_reopen_files = true; rc = cifs_tree_connect(0, tcon, nls_codepage); - mutex_unlock(&tcon->ses->session_mutex); + mutex_unlock(&ses->session_mutex); cifs_dbg(FYI, "reconnect tcon rc = %d\n", rc); if (rc) { /* If sess reconnected but tcon didn't, something strange ... */ - pr_warn_once("reconnect tcon failed rc = %d\n", rc); + cifs_dbg(VFS, "reconnect tcon failed rc = %d\n", rc); goto out; } @@ -320,7 +317,6 @@ smb2_reconnect(__le16 smb2_command, struct cifs_tcon *tcon, case SMB2_READ: case SMB2_WRITE: case SMB2_LOCK: - case SMB2_IOCTL: case SMB2_QUERY_DIRECTORY: case SMB2_CHANGE_NOTIFY: case SMB2_QUERY_INFO: @@ -338,7 +334,7 @@ fill_small_buf(__le16 smb2_command, struct cifs_tcon *tcon, void *buf, unsigned int *total_len) { - struct smb2_sync_pdu *spdu = (struct smb2_sync_pdu *)buf; + struct smb2_pdu *spdu = buf; /* lookup word count ie StructureSize from table */ __u16 parmsize = smb2_req_struct_sizes[le16_to_cpu(smb2_command)]; @@ -348,10 +344,10 @@ fill_small_buf(__le16 smb2_command, struct cifs_tcon *tcon, */ memset(buf, 0, 256); - smb2_hdr_assemble(&spdu->sync_hdr, smb2_command, tcon, server); + smb2_hdr_assemble(&spdu->hdr, smb2_command, tcon, server); spdu->StructureSize2 = cpu_to_le16(parmsize); - *total_len = parmsize + sizeof(struct smb2_sync_hdr); + *total_len = parmsize + sizeof(struct smb2_hdr); } /* @@ -374,7 +370,7 @@ static int __smb2_plain_req_init(__le16 smb2_command, struct cifs_tcon *tcon, } fill_small_buf(smb2_command, tcon, server, - (struct smb2_sync_hdr *)(*request_buf), + (struct smb2_hdr *)(*request_buf), total_len); if (tcon != NULL) { @@ -421,8 +417,8 @@ build_preauth_ctxt(struct smb2_preauth_neg_context *pneg_ctxt) pneg_ctxt->ContextType = SMB2_PREAUTH_INTEGRITY_CAPABILITIES; pneg_ctxt->DataLength = cpu_to_le16(38); pneg_ctxt->HashAlgorithmCount = cpu_to_le16(1); - pneg_ctxt->SaltLength = cpu_to_le16(SMB311_LINUX_CLIENT_SALT_SIZE); - get_random_bytes(pneg_ctxt->Salt, SMB311_LINUX_CLIENT_SALT_SIZE); + pneg_ctxt->SaltLength = cpu_to_le16(SMB311_SALT_SIZE); + get_random_bytes(pneg_ctxt->Salt, SMB311_SALT_SIZE); pneg_ctxt->HashAlgorithms = SMB2_PREAUTH_INTEGRITY_SHA512; } @@ -449,15 +445,14 @@ build_signing_ctxt(struct smb2_signing_capabilities *pneg_ctxt) /* * Context Data length must be rounded to multiple of 8 for some servers */ - pneg_ctxt->DataLength = cpu_to_le16(DIV_ROUND_UP( - sizeof(struct smb2_signing_capabilities) - - sizeof(struct smb2_neg_context) + - (num_algs * 2 /* sizeof u16 */), 8) * 8); + pneg_ctxt->DataLength = cpu_to_le16(ALIGN(sizeof(struct smb2_signing_capabilities) - + sizeof(struct smb2_neg_context) + + (num_algs * sizeof(u16)), 8)); pneg_ctxt->SigningAlgorithmCount = cpu_to_le16(num_algs); pneg_ctxt->SigningAlgorithms[0] = cpu_to_le16(SIGNING_ALG_AES_CMAC); - ctxt_len += 2 /* sizeof le16 */ * num_algs; - ctxt_len = DIV_ROUND_UP(ctxt_len, 8) * 8; + ctxt_len += sizeof(__le16) * num_algs; + ctxt_len = ALIGN(ctxt_len, 8); return ctxt_len; /* TBD add SIGNING_ALG_AES_GMAC and/or SIGNING_ALG_HMAC_SHA256 */ } @@ -494,8 +489,7 @@ build_netname_ctxt(struct smb2_netname_neg_context *pneg_ctxt, char *hostname) /* copy up to max of first 100 bytes of server name to NetName field */ pneg_ctxt->DataLength = cpu_to_le16(2 * cifs_strtoUTF16(pneg_ctxt->NetName, hostname, 100, cp)); /* context size is DataLength + minimal smb2_neg_context */ - return DIV_ROUND_UP(le16_to_cpu(pneg_ctxt->DataLength) + - sizeof(struct smb2_neg_context), 8) * 8; + return ALIGN(le16_to_cpu(pneg_ctxt->DataLength) + sizeof(struct smb2_neg_context), 8); } static void @@ -526,8 +520,10 @@ static void assemble_neg_contexts(struct smb2_negotiate_req *req, struct TCP_Server_Info *server, unsigned int *total_len) { - char *pneg_ctxt; unsigned int ctxt_len, neg_context_count; + struct TCP_Server_Info *pserver; + char *pneg_ctxt; + char *hostname; if (*total_len > 200) { /* In case length corrupted don't want to overrun smb buffer */ @@ -539,38 +535,47 @@ assemble_neg_contexts(struct smb2_negotiate_req *req, * round up total_len of fixed part of SMB3 negotiate request to 8 * byte boundary before adding negotiate contexts */ - *total_len = roundup(*total_len, 8); + *total_len = ALIGN(*total_len, 8); pneg_ctxt = (*total_len) + (char *)req; req->NegotiateContextOffset = cpu_to_le32(*total_len); build_preauth_ctxt((struct smb2_preauth_neg_context *)pneg_ctxt); - ctxt_len = DIV_ROUND_UP(sizeof(struct smb2_preauth_neg_context), 8) * 8; + ctxt_len = ALIGN(sizeof(struct smb2_preauth_neg_context), 8); *total_len += ctxt_len; pneg_ctxt += ctxt_len; build_encrypt_ctxt((struct smb2_encryption_neg_context *)pneg_ctxt); - ctxt_len = DIV_ROUND_UP(sizeof(struct smb2_encryption_neg_context), 8) * 8; + ctxt_len = ALIGN(sizeof(struct smb2_encryption_neg_context), 8); *total_len += ctxt_len; pneg_ctxt += ctxt_len; - ctxt_len = build_netname_ctxt((struct smb2_netname_neg_context *)pneg_ctxt, - server->hostname); - *total_len += ctxt_len; - pneg_ctxt += ctxt_len; + /* + * secondary channels don't have the hostname field populated + * use the hostname field in the primary channel instead + */ + pserver = CIFS_SERVER_IS_CHAN(server) ? server->primary_server : server; + cifs_server_lock(pserver); + hostname = pserver->hostname; + if (hostname && (hostname[0] != 0)) { + ctxt_len = build_netname_ctxt((struct smb2_netname_neg_context *)pneg_ctxt, + hostname); + *total_len += ctxt_len; + pneg_ctxt += ctxt_len; + neg_context_count = 3; + } else + neg_context_count = 2; + cifs_server_unlock(pserver); build_posix_ctxt((struct smb2_posix_neg_context *)pneg_ctxt); *total_len += sizeof(struct smb2_posix_neg_context); pneg_ctxt += sizeof(struct smb2_posix_neg_context); - - neg_context_count = 4; + neg_context_count++; if (server->compress_algorithm) { build_compression_ctxt((struct smb2_compression_capabilities_context *) pneg_ctxt); - ctxt_len = DIV_ROUND_UP( - sizeof(struct smb2_compression_capabilities_context), - 8) * 8; + ctxt_len = ALIGN(sizeof(struct smb2_compression_capabilities_context), 8); *total_len += ctxt_len; pneg_ctxt += ctxt_len; neg_context_count++; @@ -589,11 +594,15 @@ assemble_neg_contexts(struct smb2_negotiate_req *req, } +/* If invalid preauth context warn but use what we requested, SHA-512 */ static void decode_preauth_context(struct smb2_preauth_neg_context *ctxt) { unsigned int len = le16_to_cpu(ctxt->DataLength); - /* If invalid preauth context warn but use what we requested, SHA-512 */ + /* + * Caller checked that DataLength remains within SMB boundary. We still + * need to confirm that one HashAlgorithms member is accounted for. + */ if (len < MIN_PREAUTH_CTXT_DATA_LEN) { pr_warn_once("server sent bad preauth context\n"); return; @@ -612,7 +621,11 @@ static void decode_compress_ctx(struct TCP_Server_Info *server, { unsigned int len = le16_to_cpu(ctxt->DataLength); - /* sizeof compress context is a one element compression capbility struct */ + /* + * Caller checked that DataLength remains within SMB boundary. We still + * need to confirm that one CompressionAlgorithms member is accounted + * for. + */ if (len < 10) { pr_warn_once("server sent bad compression cntxt\n"); return; @@ -634,6 +647,11 @@ static int decode_encrypt_ctx(struct TCP_Server_Info *server, unsigned int len = le16_to_cpu(ctxt->DataLength); cifs_dbg(FYI, "decode SMB3.11 encryption neg context of len %d\n", len); + /* + * Caller checked that DataLength remains within SMB boundary. We still + * need to confirm that one Cipher flexible array member is accounted + * for. + */ if (len < MIN_ENCRYPT_CTXT_DATA_LEN) { pr_warn_once("server sent bad crypto ctxt len\n"); return -EINVAL; @@ -680,6 +698,11 @@ static void decode_signing_ctx(struct TCP_Server_Info *server, { unsigned int len = le16_to_cpu(pctxt->DataLength); + /* + * Caller checked that DataLength remains within SMB boundary. We still + * need to confirm that one SigningAlgorithms flexible array member is + * accounted for. + */ if ((len < 4) || (len > 16)) { pr_warn_once("server sent bad signing negcontext\n"); return; @@ -721,14 +744,19 @@ static int smb311_decode_neg_context(struct smb2_negotiate_rsp *rsp, for (i = 0; i < ctxt_cnt; i++) { int clen; /* check that offset is not beyond end of SMB */ - if (len_of_ctxts == 0) - break; - if (len_of_ctxts < sizeof(struct smb2_neg_context)) break; pctx = (struct smb2_neg_context *)(offset + (char *)rsp); - clen = le16_to_cpu(pctx->DataLength); + clen = sizeof(struct smb2_neg_context) + + le16_to_cpu(pctx->DataLength); + /* + * 2.2.4 SMB2 NEGOTIATE Response + * Subsequent negotiate contexts MUST appear at the first 8-byte + * aligned offset following the previous negotiate context. + */ + if (i + 1 != ctxt_cnt) + clen = ALIGN(clen, 8); if (clen > len_of_ctxts) break; @@ -749,12 +777,10 @@ static int smb311_decode_neg_context(struct smb2_negotiate_rsp *rsp, else cifs_server_dbg(VFS, "unknown negcontext of type %d ignored\n", le16_to_cpu(pctx->ContextType)); - if (rc) break; - /* offsets must be 8 byte aligned */ - clen = (clen + 7) & ~0x7; - offset += clen + sizeof(struct smb2_neg_context); + + offset += clen; len_of_ctxts -= clen; } return rc; @@ -802,7 +828,6 @@ create_posix_buf(umode_t mode) static int add_posix_context(struct kvec *iov, unsigned int *num_iovec, umode_t mode) { - struct smb2_create_req *req = iov[0].iov_base; unsigned int num = *num_iovec; iov[num].iov_base = create_posix_buf(mode); @@ -811,11 +836,6 @@ add_posix_context(struct kvec *iov, unsigned int *num_iovec, umode_t mode) if (iov[num].iov_base == NULL) return -ENOMEM; iov[num].iov_len = sizeof(struct create_posix); - if (!req->CreateContextsOffset) - req->CreateContextsOffset = cpu_to_le32( - sizeof(struct smb2_create_req) + - iov[num - 1].iov_len); - le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_posix)); *num_iovec = num + 1; return 0; } @@ -837,16 +857,17 @@ add_posix_context(struct kvec *iov, unsigned int *num_iovec, umode_t mode) */ int -SMB2_negotiate(const unsigned int xid, struct cifs_ses *ses) +SMB2_negotiate(const unsigned int xid, + struct cifs_ses *ses, + struct TCP_Server_Info *server) { struct smb_rqst rqst; struct smb2_negotiate_req *req; struct smb2_negotiate_rsp *rsp; struct kvec iov[1]; struct kvec rsp_iov; - int rc = 0; + int rc; int resp_buftype; - struct TCP_Server_Info *server = cifs_ses_server(ses); int blob_offset, blob_length; char *security_blob; int flags = CIFS_NEG_OP; @@ -864,7 +885,7 @@ SMB2_negotiate(const unsigned int xid, struct cifs_ses *ses) if (rc) return rc; - req->sync_hdr.SessionId = 0; + req->hdr.SessionId = 0; memset(server->preauth_sha_hash, 0, SMB2_PREAUTH_HASH_SIZE); memset(ses->preauth_sha_hash, 0, SMB2_PREAUTH_HASH_SIZE); @@ -1027,7 +1048,7 @@ SMB2_negotiate(const unsigned int xid, struct cifs_ses *ses) server->cipher_type = SMB2_ENCRYPTION_AES128_CCM; security_blob = smb2_get_data_area_len(&blob_offset, &blob_length, - (struct smb2_sync_hdr *)rsp); + (struct smb2_hdr *)rsp); /* * See MS-SMB2 section 2.2.4: if no blob, client picks default which * for us will be @@ -1147,7 +1168,7 @@ int smb3_validate_negotiate(const unsigned int xid, struct cifs_tcon *tcon) } rc = SMB2_ioctl(xid, tcon, NO_FILE_ID, NO_FILE_ID, - FSCTL_VALIDATE_NEGOTIATE_INFO, true /* is_fsctl */, + FSCTL_VALIDATE_NEGOTIATE_INFO, (char *)pneg_inbuf, inbuflen, CIFSMaxBufSize, (char **)&pneg_rsp, &rsplen); if (rc == -EOPNOTSUPP) { @@ -1227,6 +1248,7 @@ smb2_select_sectype(struct TCP_Server_Info *server, enum securityEnum requested) struct SMB2_sess_data { unsigned int xid; struct cifs_ses *ses; + struct TCP_Server_Info *server; struct nls_table *nls_cp; void (*func)(struct SMB2_sess_data *); int result; @@ -1248,9 +1270,10 @@ SMB2_sess_alloc_buffer(struct SMB2_sess_data *sess_data) { int rc; struct cifs_ses *ses = sess_data->ses; + struct TCP_Server_Info *server = sess_data->server; struct smb2_sess_setup_req *req; - struct TCP_Server_Info *server = cifs_ses_server(ses); unsigned int total_len; + bool is_binding = false; rc = smb2_plain_req_init(SMB2_SESSION_SETUP, NULL, server, (void **) &req, @@ -1258,24 +1281,36 @@ SMB2_sess_alloc_buffer(struct SMB2_sess_data *sess_data) if (rc) return rc; - if (sess_data->ses->binding) { - req->sync_hdr.SessionId = sess_data->ses->Suid; - req->sync_hdr.Flags |= SMB2_FLAGS_SIGNED; + spin_lock(&ses->ses_lock); + is_binding = (ses->ses_status == SES_GOOD); + spin_unlock(&ses->ses_lock); + + if (is_binding) { + req->hdr.SessionId = cpu_to_le64(ses->Suid); + req->hdr.Flags |= SMB2_FLAGS_SIGNED; req->PreviousSessionId = 0; req->Flags = SMB2_SESSION_REQ_FLAG_BINDING; + cifs_dbg(FYI, "Binding to sess id: %llx\n", ses->Suid); } else { /* First session, not a reauthenticate */ - req->sync_hdr.SessionId = 0; + req->hdr.SessionId = 0; /* * if reconnect, we need to send previous sess id * otherwise it is 0 */ - req->PreviousSessionId = sess_data->previous_session; + req->PreviousSessionId = cpu_to_le64(sess_data->previous_session); req->Flags = 0; /* MBZ */ + cifs_dbg(FYI, "Fresh session. Previous: %llx\n", + sess_data->previous_session); } /* enough to enable echos and oplocks and one max size write */ - req->sync_hdr.CreditRequest = cpu_to_le16(130); + if (server->credits >= server->max_credits) + req->hdr.CreditRequest = cpu_to_le16(0); + else + req->hdr.CreditRequest = cpu_to_le16( + min_t(int, server->max_credits - + server->credits, 130)); /* only one of SMB2 signing flags may be set in SMB2 request */ if (server->sign) @@ -1308,7 +1343,13 @@ SMB2_sess_alloc_buffer(struct SMB2_sess_data *sess_data) static void SMB2_sess_free_buffer(struct SMB2_sess_data *sess_data) { - free_rsp_buf(sess_data->buf0_type, sess_data->iov[0].iov_base); + struct kvec *iov = sess_data->iov; + + /* iov[1] is already freed by caller */ + if (sess_data->buf0_type != CIFS_NO_BUFFER && iov[0].iov_base) + memzero_explicit(iov[0].iov_base, iov[0].iov_len); + + free_rsp_buf(sess_data->buf0_type, iov[0].iov_base); sess_data->buf0_type = CIFS_NO_BUFFER; } @@ -1322,7 +1363,7 @@ SMB2_sess_sendreceive(struct SMB2_sess_data *sess_data) /* Testing shows that buffer offset must be at location of Buffer[0] */ req->SecurityBufferOffset = - cpu_to_le16(sizeof(struct smb2_sess_setup_req) - 1 /* pad */); + cpu_to_le16(sizeof(struct smb2_sess_setup_req)); req->SecurityBufferLength = cpu_to_le16(sess_data->iov[1].iov_len); memset(&rqst, 0, sizeof(struct smb_rqst)); @@ -1331,7 +1372,7 @@ SMB2_sess_sendreceive(struct SMB2_sess_data *sess_data) /* BB add code to build os and lm fields */ rc = cifs_send_recv(sess_data->xid, sess_data->ses, - cifs_ses_server(sess_data->ses), + sess_data->server, &rqst, &sess_data->buf0_type, CIFS_LOG_ERROR | CIFS_SESS_OP, &rsp_iov); @@ -1346,15 +1387,15 @@ SMB2_sess_establish_session(struct SMB2_sess_data *sess_data) { int rc = 0; struct cifs_ses *ses = sess_data->ses; - struct TCP_Server_Info *server = cifs_ses_server(ses); + struct TCP_Server_Info *server = sess_data->server; - mutex_lock(&server->srv_mutex); + cifs_server_lock(server); if (server->ops->generate_signingkey) { - rc = server->ops->generate_signingkey(ses); + rc = server->ops->generate_signingkey(ses, server); if (rc) { cifs_dbg(FYI, "SMB3 session key generation failed\n"); - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); return rc; } } @@ -1362,17 +1403,9 @@ SMB2_sess_establish_session(struct SMB2_sess_data *sess_data) server->sequence_number = 0x2; server->session_estab = true; } - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); cifs_dbg(FYI, "SMB2/3 session established successfully\n"); - /* keep existing ses state if binding */ - if (!ses->binding) { - spin_lock(&GlobalMid_Lock); - ses->status = CifsGood; - ses->need_reconnect = false; - spin_unlock(&GlobalMid_Lock); - } - return rc; } @@ -1382,15 +1415,17 @@ SMB2_auth_kerberos(struct SMB2_sess_data *sess_data) { int rc; struct cifs_ses *ses = sess_data->ses; + struct TCP_Server_Info *server = sess_data->server; struct cifs_spnego_msg *msg; struct key *spnego_key = NULL; struct smb2_sess_setup_rsp *rsp = NULL; + bool is_binding = false; rc = SMB2_sess_alloc_buffer(sess_data); if (rc) goto out; - spnego_key = cifs_get_spnego_key(ses); + spnego_key = cifs_get_spnego_key(ses, server); if (IS_ERR(spnego_key)) { rc = PTR_ERR(spnego_key); if (rc == -ENOKEY) @@ -1411,8 +1446,13 @@ SMB2_auth_kerberos(struct SMB2_sess_data *sess_data) goto out_put_spnego_key; } + spin_lock(&ses->ses_lock); + is_binding = (ses->ses_status == SES_GOOD); + spin_unlock(&ses->ses_lock); + /* keep session key if binding */ - if (!ses->binding) { + if (!is_binding) { + kfree_sensitive(ses->auth_key.response); ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len, GFP_KERNEL); if (!ses->auth_key.response) { @@ -1433,8 +1473,8 @@ SMB2_auth_kerberos(struct SMB2_sess_data *sess_data) rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base; /* keep session id and flags if binding */ - if (!ses->binding) { - ses->Suid = rsp->sync_hdr.SessionId; + if (!is_binding) { + ses->Suid = le64_to_cpu(rsp->hdr.SessionId); ses->session_flags = le16_to_cpu(rsp->SessionFlags); } @@ -1442,6 +1482,11 @@ SMB2_auth_kerberos(struct SMB2_sess_data *sess_data) out_put_spnego_key: key_invalidate(spnego_key); key_put(spnego_key); + if (rc) { + kfree_sensitive(ses->auth_key.response); + ses->auth_key.response = NULL; + ses->auth_key.len = 0; + } out: sess_data->result = rc; sess_data->func = NULL; @@ -1465,10 +1510,12 @@ SMB2_sess_auth_rawntlmssp_negotiate(struct SMB2_sess_data *sess_data) { int rc; struct cifs_ses *ses = sess_data->ses; + struct TCP_Server_Info *server = sess_data->server; struct smb2_sess_setup_rsp *rsp = NULL; - char *ntlmssp_blob = NULL; + unsigned char *ntlmssp_blob = NULL; bool use_spnego = false; /* else use raw ntlmssp */ u16 blob_length = 0; + bool is_binding = false; /* * If memory allocation is successful, caller of this function @@ -1485,22 +1532,17 @@ SMB2_sess_auth_rawntlmssp_negotiate(struct SMB2_sess_data *sess_data) if (rc) goto out_err; - ntlmssp_blob = kmalloc(sizeof(struct _NEGOTIATE_MESSAGE), - GFP_KERNEL); - if (ntlmssp_blob == NULL) { - rc = -ENOMEM; + rc = build_ntlmssp_smb3_negotiate_blob(&ntlmssp_blob, + &blob_length, ses, server, + sess_data->nls_cp); + if (rc) goto out; - } - build_ntlmssp_negotiate_blob(ntlmssp_blob, ses); if (use_spnego) { /* BB eventually need to add this */ cifs_dbg(VFS, "spnego not supported for SMB2 yet\n"); rc = -EOPNOTSUPP; goto out; - } else { - blob_length = sizeof(struct _NEGOTIATE_MESSAGE); - /* with raw NTLMSSP we don't encapsulate in SPNEGO */ } sess_data->iov[1].iov_base = ntlmssp_blob; sess_data->iov[1].iov_len = blob_length; @@ -1510,7 +1552,7 @@ SMB2_sess_auth_rawntlmssp_negotiate(struct SMB2_sess_data *sess_data) /* If true, rc here is expected and not an error */ if (sess_data->buf0_type != CIFS_NO_BUFFER && - rsp->sync_hdr.Status == STATUS_MORE_PROCESSING_REQUIRED) + rsp->hdr.Status == STATUS_MORE_PROCESSING_REQUIRED) rc = 0; if (rc) @@ -1530,14 +1572,18 @@ SMB2_sess_auth_rawntlmssp_negotiate(struct SMB2_sess_data *sess_data) cifs_dbg(FYI, "rawntlmssp session setup challenge phase\n"); + spin_lock(&ses->ses_lock); + is_binding = (ses->ses_status == SES_GOOD); + spin_unlock(&ses->ses_lock); + /* keep existing ses id and flags if binding */ - if (!ses->binding) { - ses->Suid = rsp->sync_hdr.SessionId; + if (!is_binding) { + ses->Suid = le64_to_cpu(rsp->hdr.SessionId); ses->session_flags = le16_to_cpu(rsp->SessionFlags); } out: - kfree(ntlmssp_blob); + kfree_sensitive(ntlmssp_blob); SMB2_sess_free_buffer(sess_data); if (!rc) { sess_data->result = 0; @@ -1545,7 +1591,7 @@ SMB2_sess_auth_rawntlmssp_negotiate(struct SMB2_sess_data *sess_data) return; } out_err: - kfree(ses->ntlmssp); + kfree_sensitive(ses->ntlmssp); ses->ntlmssp = NULL; sess_data->result = rc; sess_data->func = NULL; @@ -1556,21 +1602,24 @@ SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data *sess_data) { int rc; struct cifs_ses *ses = sess_data->ses; + struct TCP_Server_Info *server = sess_data->server; struct smb2_sess_setup_req *req; struct smb2_sess_setup_rsp *rsp = NULL; unsigned char *ntlmssp_blob = NULL; bool use_spnego = false; /* else use raw ntlmssp */ u16 blob_length = 0; + bool is_binding = false; rc = SMB2_sess_alloc_buffer(sess_data); if (rc) goto out; req = (struct smb2_sess_setup_req *) sess_data->iov[0].iov_base; - req->sync_hdr.SessionId = ses->Suid; + req->hdr.SessionId = cpu_to_le64(ses->Suid); - rc = build_ntlmssp_auth_blob(&ntlmssp_blob, &blob_length, ses, - sess_data->nls_cp); + rc = build_ntlmssp_auth_blob(&ntlmssp_blob, &blob_length, + ses, server, + sess_data->nls_cp); if (rc) { cifs_dbg(FYI, "build_ntlmssp_auth_blob failed %d\n", rc); goto out; @@ -1591,9 +1640,13 @@ SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data *sess_data) rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base; + spin_lock(&ses->ses_lock); + is_binding = (ses->ses_status == SES_GOOD); + spin_unlock(&ses->ses_lock); + /* keep existing ses id and flags if binding */ - if (!ses->binding) { - ses->Suid = rsp->sync_hdr.SessionId; + if (!is_binding) { + ses->Suid = le64_to_cpu(rsp->hdr.SessionId); ses->session_flags = le16_to_cpu(rsp->SessionFlags); } @@ -1614,20 +1667,22 @@ SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data *sess_data) } #endif out: - kfree(ntlmssp_blob); + kfree_sensitive(ntlmssp_blob); SMB2_sess_free_buffer(sess_data); - kfree(ses->ntlmssp); + kfree_sensitive(ses->ntlmssp); ses->ntlmssp = NULL; sess_data->result = rc; sess_data->func = NULL; } static int -SMB2_select_sec(struct cifs_ses *ses, struct SMB2_sess_data *sess_data) +SMB2_select_sec(struct SMB2_sess_data *sess_data) { int type; + struct cifs_ses *ses = sess_data->ses; + struct TCP_Server_Info *server = sess_data->server; - type = smb2_select_sectype(cifs_ses_server(ses), ses->sectype); + type = smb2_select_sectype(server, ses->sectype); cifs_dbg(FYI, "sess setup type %d\n", type); if (type == Unspecified) { cifs_dbg(VFS, "Unable to select appropriate authentication method!\n"); @@ -1651,10 +1706,10 @@ SMB2_select_sec(struct cifs_ses *ses, struct SMB2_sess_data *sess_data) int SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses, + struct TCP_Server_Info *server, const struct nls_table *nls_cp) { int rc = 0; - struct TCP_Server_Info *server = cifs_ses_server(ses); struct SMB2_sess_data *sess_data; cifs_dbg(FYI, "Session Setup\n"); @@ -1668,15 +1723,17 @@ SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses, if (!sess_data) return -ENOMEM; - rc = SMB2_select_sec(ses, sess_data); - if (rc) - goto out; sess_data->xid = xid; sess_data->ses = ses; + sess_data->server = server; sess_data->buf0_type = CIFS_NO_BUFFER; sess_data->nls_cp = (struct nls_table *) nls_cp; sess_data->previous_session = ses->Suid; + rc = SMB2_select_sec(sess_data); + if (rc) + goto out; + /* * Initialize the session hash with the server one. */ @@ -1690,7 +1747,7 @@ SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses, cifs_server_dbg(VFS, "signing requested but authenticated as guest\n"); rc = sess_data->result; out: - kfree(sess_data); + kfree_sensitive(sess_data); return rc; } @@ -1715,8 +1772,12 @@ SMB2_logoff(const unsigned int xid, struct cifs_ses *ses) return -EIO; /* no need to send SMB logoff if uid already closed due to reconnect */ - if (ses->need_reconnect) + spin_lock(&ses->chan_lock); + if (CIFS_ALL_CHANS_NEED_RECONNECT(ses)) { + spin_unlock(&ses->chan_lock); goto smb2_session_already_dead; + } + spin_unlock(&ses->chan_lock); rc = smb2_plain_req_init(SMB2_LOGOFF, NULL, ses->server, (void **) &req, &total_len); @@ -1724,12 +1785,12 @@ SMB2_logoff(const unsigned int xid, struct cifs_ses *ses) return rc; /* since no tcon, smb2_init can not do this, so do here */ - req->sync_hdr.SessionId = ses->Suid; + req->hdr.SessionId = cpu_to_le64(ses->Suid); if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) flags |= CIFS_TRANSFORM_REQ; else if (server->sign) - req->sync_hdr.Flags |= SMB2_FLAGS_SIGNED; + req->hdr.Flags |= SMB2_FLAGS_SIGNED; flags |= CIFS_NO_RSP_BUF; @@ -1796,12 +1857,12 @@ SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree, if (unc_path == NULL) return -ENOMEM; - unc_path_len = cifs_strtoUTF16(unc_path, tree, strlen(tree), cp) + 1; - unc_path_len *= 2; - if (unc_path_len < 2) { + unc_path_len = cifs_strtoUTF16(unc_path, tree, strlen(tree), cp); + if (unc_path_len <= 0) { kfree(unc_path); return -EINVAL; } + unc_path_len *= 2; /* SMB2 TREE_CONNECT request must be called with TreeId == 0 */ tcon->tid = 0; @@ -1821,9 +1882,8 @@ SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree, iov[0].iov_len = total_len - 1; /* Testing shows that buffer offset must be at location of Buffer[0] */ - req->PathOffset = cpu_to_le16(sizeof(struct smb2_tree_connect_req) - - 1 /* pad */); - req->PathLength = cpu_to_le16(unc_path_len - 2); + req->PathOffset = cpu_to_le16(sizeof(struct smb2_tree_connect_req)); + req->PathLength = cpu_to_le16(unc_path_len); iov[1].iov_base = unc_path; iov[1].iov_len = unc_path_len; @@ -1837,21 +1897,26 @@ SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree, !(ses->session_flags & (SMB2_SESSION_FLAG_IS_GUEST|SMB2_SESSION_FLAG_IS_NULL)) && ((ses->user_name != NULL) || (ses->sectype == Kerberos))) - req->sync_hdr.Flags |= SMB2_FLAGS_SIGNED; + req->hdr.Flags |= SMB2_FLAGS_SIGNED; memset(&rqst, 0, sizeof(struct smb_rqst)); rqst.rq_iov = iov; rqst.rq_nvec = 2; /* Need 64 for max size write so ask for more in case not there yet */ - req->sync_hdr.CreditRequest = cpu_to_le16(64); + if (server->credits >= server->max_credits) + req->hdr.CreditRequest = cpu_to_le16(0); + else + req->hdr.CreditRequest = cpu_to_le16( + min_t(int, server->max_credits - + server->credits, 64)); rc = cifs_send_recv(xid, ses, server, &rqst, &resp_buftype, flags, &rsp_iov); cifs_small_buf_release(req); rsp = (struct smb2_tree_connect_rsp *)rsp_iov.iov_base; trace_smb3_tcon(xid, tcon->tid, ses->Suid, tree, rc); - if (rc != 0) { + if ((rc != 0) || (rsp == NULL)) { cifs_stats_fail_inc(tcon, SMB2_TREE_CONNECT_HE); tcon->need_reconnect = true; goto tcon_error_exit; @@ -1878,10 +1943,8 @@ SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree, tcon->share_flags = le32_to_cpu(rsp->ShareFlags); tcon->capabilities = rsp->Capabilities; /* we keep caps little endian */ tcon->maximal_access = le32_to_cpu(rsp->MaximalAccess); - tcon->tidStatus = CifsGood; - tcon->need_reconnect = false; - tcon->tid = rsp->sync_hdr.TreeId; - strlcpy(tcon->treeName, tree, sizeof(tcon->treeName)); + tcon->tid = le32_to_cpu(rsp->hdr.Id.SyncId.TreeId); + strscpy(tcon->tree_name, tree, sizeof(tcon->tree_name)); if ((rsp->Capabilities & SMB2_SHARE_CAP_DFS) && ((tcon->share_flags & SHI1005_FLAGS_DFS) == 0)) @@ -1894,6 +1957,9 @@ SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree, init_copy_chunk_defaults(tcon); if (server->ops->validate_negotiate) rc = server->ops->validate_negotiate(xid, tcon); + if (rc == 0) /* See MS-SMB2 2.2.10 and 3.2.5.5 */ + if (tcon->share_flags & SMB2_SHAREFLAG_ISOLATED_TRANSPORT) + server->nosharesock = true; tcon_exit: free_rsp_buf(resp_buftype, rsp); @@ -1901,9 +1967,8 @@ SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree, return rc; tcon_error_exit: - if (rsp && rsp->sync_hdr.Status == STATUS_BAD_NETWORK_NAME) { + if (rsp && rsp->hdr.Status == STATUS_BAD_NETWORK_NAME) cifs_tcon_dbg(VFS, "BAD_NETWORK_NAME: %s\n", tree); - } goto tcon_exit; } @@ -1925,10 +1990,16 @@ SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon) if (!ses || !(ses->server)) return -EIO; - if ((tcon->need_reconnect) || (tcon->ses->need_reconnect)) + trace_smb3_tdis_enter(xid, tcon->tid, ses->Suid, tcon->tree_name); + spin_lock(&ses->chan_lock); + if ((tcon->need_reconnect) || + (CIFS_ALL_CHANS_NEED_RECONNECT(tcon->ses))) { + spin_unlock(&ses->chan_lock); return 0; + } + spin_unlock(&ses->chan_lock); - close_cached_dir_lease(&tcon->crfid); + invalidate_all_cached_dirs(tcon); rc = smb2_plain_req_init(SMB2_TREE_DISCONNECT, tcon, ses->server, (void **) &req, @@ -1951,8 +2022,11 @@ SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon) rc = cifs_send_recv(xid, ses, ses->server, &rqst, &resp_buf_type, flags, &rsp_iov); cifs_small_buf_release(req); - if (rc) + if (rc) { cifs_stats_fail_inc(tcon, SMB2_TREE_DISCONNECT_HE); + trace_smb3_tdis_err(xid, tcon->tid, ses->Suid, rc); + } + trace_smb3_tdis_done(xid, tcon->tid, ses->Suid); return rc; } @@ -2009,7 +2083,7 @@ create_reconnect_durable_buf(struct cifs_fid *fid) static void parse_query_id_ctxt(struct create_context *cc, struct smb2_file_all_info *buf) { - struct create_on_disk_id *pdisk_id = (struct create_on_disk_id *)cc; + struct create_disk_id_rsp *pdisk_id = (struct create_disk_id_rsp *)cc; cifs_dbg(FYI, "parse query id context 0x%llx 0x%llx\n", pdisk_id->DiskFileId, pdisk_id->VolumeId); @@ -2112,10 +2186,11 @@ smb2_parse_contexts(struct TCP_Server_Info *server, } static int -add_lease_context(struct TCP_Server_Info *server, struct kvec *iov, +add_lease_context(struct TCP_Server_Info *server, + struct smb2_create_req *req, + struct kvec *iov, unsigned int *num_iovec, u8 *lease_key, __u8 *oplock) { - struct smb2_create_req *req = iov[0].iov_base; unsigned int num = *num_iovec; iov[num].iov_base = server->ops->create_lease_buf(lease_key, *oplock); @@ -2123,12 +2198,6 @@ add_lease_context(struct TCP_Server_Info *server, struct kvec *iov, return -ENOMEM; iov[num].iov_len = server->vals->create_lease_size; req->RequestedOplockLevel = SMB2_OPLOCK_LEVEL_LEASE; - if (!req->CreateContextsOffset) - req->CreateContextsOffset = cpu_to_le32( - sizeof(struct smb2_create_req) + - iov[num - 1].iov_len); - le32_add_cpu(&req->CreateContextsLength, - server->vals->create_lease_size); *num_iovec = num + 1; return 0; } @@ -2207,18 +2276,12 @@ static int add_durable_v2_context(struct kvec *iov, unsigned int *num_iovec, struct cifs_open_parms *oparms) { - struct smb2_create_req *req = iov[0].iov_base; unsigned int num = *num_iovec; iov[num].iov_base = create_durable_v2_buf(oparms); if (iov[num].iov_base == NULL) return -ENOMEM; iov[num].iov_len = sizeof(struct create_durable_v2); - if (!req->CreateContextsOffset) - req->CreateContextsOffset = - cpu_to_le32(sizeof(struct smb2_create_req) + - iov[1].iov_len); - le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable_v2)); *num_iovec = num + 1; return 0; } @@ -2227,7 +2290,6 @@ static int add_durable_reconnect_v2_context(struct kvec *iov, unsigned int *num_iovec, struct cifs_open_parms *oparms) { - struct smb2_create_req *req = iov[0].iov_base; unsigned int num = *num_iovec; /* indicate that we don't need to relock the file */ @@ -2237,12 +2299,6 @@ add_durable_reconnect_v2_context(struct kvec *iov, unsigned int *num_iovec, if (iov[num].iov_base == NULL) return -ENOMEM; iov[num].iov_len = sizeof(struct create_durable_handle_reconnect_v2); - if (!req->CreateContextsOffset) - req->CreateContextsOffset = - cpu_to_le32(sizeof(struct smb2_create_req) + - iov[1].iov_len); - le32_add_cpu(&req->CreateContextsLength, - sizeof(struct create_durable_handle_reconnect_v2)); *num_iovec = num + 1; return 0; } @@ -2251,7 +2307,6 @@ static int add_durable_context(struct kvec *iov, unsigned int *num_iovec, struct cifs_open_parms *oparms, bool use_persistent) { - struct smb2_create_req *req = iov[0].iov_base; unsigned int num = *num_iovec; if (use_persistent) { @@ -2271,11 +2326,6 @@ add_durable_context(struct kvec *iov, unsigned int *num_iovec, if (iov[num].iov_base == NULL) return -ENOMEM; iov[num].iov_len = sizeof(struct create_durable); - if (!req->CreateContextsOffset) - req->CreateContextsOffset = - cpu_to_le32(sizeof(struct smb2_create_req) + - iov[1].iov_len); - le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable)); *num_iovec = num + 1; return 0; } @@ -2309,18 +2359,12 @@ create_twarp_buf(__u64 timewarp) static int add_twarp_context(struct kvec *iov, unsigned int *num_iovec, __u64 timewarp) { - struct smb2_create_req *req = iov[0].iov_base; unsigned int num = *num_iovec; iov[num].iov_base = create_twarp_buf(timewarp); if (iov[num].iov_base == NULL) return -ENOMEM; iov[num].iov_len = sizeof(struct crt_twarp_ctxt); - if (!req->CreateContextsOffset) - req->CreateContextsOffset = cpu_to_le32( - sizeof(struct smb2_create_req) + - iov[num - 1].iov_len); - le32_add_cpu(&req->CreateContextsLength, sizeof(struct crt_twarp_ctxt)); *num_iovec = num + 1; return 0; } @@ -2360,7 +2404,7 @@ create_sd_buf(umode_t mode, bool set_owner, unsigned int *len) unsigned int group_offset = 0; struct smb3_acl acl = {}; - *len = roundup(sizeof(struct crt_sd_ctxt) + (sizeof(struct cifs_ace) * 4), 8); + *len = round_up(sizeof(struct crt_sd_ctxt) + (sizeof(struct cifs_ace) * 4), 8); if (set_owner) { /* sizeof(struct owner_group_sids) is already multiple of 8 so no need to round */ @@ -2435,7 +2479,7 @@ create_sd_buf(umode_t mode, bool set_owner, unsigned int *len) memcpy(aclptr, &acl, sizeof(struct smb3_acl)); buf->ccontext.DataLength = cpu_to_le32(ptr - (__u8 *)&buf->sd); - *len = roundup(ptr - (__u8 *)buf, 8); + *len = round_up((unsigned int)(ptr - (__u8 *)buf), 8); return buf; } @@ -2443,7 +2487,6 @@ create_sd_buf(umode_t mode, bool set_owner, unsigned int *len) static int add_sd_context(struct kvec *iov, unsigned int *num_iovec, umode_t mode, bool set_owner) { - struct smb2_create_req *req = iov[0].iov_base; unsigned int num = *num_iovec; unsigned int len = 0; @@ -2451,11 +2494,6 @@ add_sd_context(struct kvec *iov, unsigned int *num_iovec, umode_t mode, bool set if (iov[num].iov_base == NULL) return -ENOMEM; iov[num].iov_len = len; - if (!req->CreateContextsOffset) - req->CreateContextsOffset = cpu_to_le32( - sizeof(struct smb2_create_req) + - iov[num - 1].iov_len); - le32_add_cpu(&req->CreateContextsLength, len); *num_iovec = num + 1; return 0; } @@ -2486,18 +2524,12 @@ create_query_id_buf(void) static int add_query_id_context(struct kvec *iov, unsigned int *num_iovec) { - struct smb2_create_req *req = iov[0].iov_base; unsigned int num = *num_iovec; iov[num].iov_base = create_query_id_buf(); if (iov[num].iov_base == NULL) return -ENOMEM; iov[num].iov_len = sizeof(struct crt_query_id_ctxt); - if (!req->CreateContextsOffset) - req->CreateContextsOffset = cpu_to_le32( - sizeof(struct smb2_create_req) + - iov[num - 1].iov_len); - le32_add_cpu(&req->CreateContextsLength, sizeof(struct crt_query_id_ctxt)); *num_iovec = num + 1; return 0; } @@ -2522,26 +2554,27 @@ alloc_path_with_tree_prefix(__le16 **out_path, int *out_size, int *out_len, path_len = UniStrnlen((wchar_t *)path, PATH_MAX); - /* - * make room for one path separator between the treename and - * path - */ - *out_len = treename_len + 1 + path_len; + /* make room for one path separator only if @path isn't empty */ + *out_len = treename_len + (path[0] ? 1 : 0) + path_len; /* - * final path needs to be null-terminated UTF16 with a - * size aligned to 8 + * final path needs to be 8-byte aligned as specified in + * MS-SMB2 2.2.13 SMB2 CREATE Request. */ - - *out_size = roundup((*out_len+1)*2, 8); - *out_path = kzalloc(*out_size, GFP_KERNEL); + *out_size = round_up(*out_len * sizeof(__le16), 8); + *out_path = kzalloc(*out_size + sizeof(__le16) /* null */, GFP_KERNEL); if (!*out_path) return -ENOMEM; cp = load_nls_default(); cifs_strtoUTF16(*out_path, treename, treename_len, cp); - UniStrcat(*out_path, sep); - UniStrcat(*out_path, path); + + /* Do not append the separator if the path is empty */ + if (path[0] != cpu_to_le16(0x0000)) { + UniStrcat(*out_path, sep); + UniStrcat(*out_path, path); + } + unload_nls(cp); return 0; @@ -2618,10 +2651,10 @@ int smb311_posix_mkdir(const unsigned int xid, struct inode *inode, if (tcon->share_flags & SHI1005_FLAGS_DFS) { int name_len; - req->sync_hdr.Flags |= SMB2_FLAGS_DFS_OPERATIONS; + req->hdr.Flags |= SMB2_FLAGS_DFS_OPERATIONS; rc = alloc_path_with_tree_prefix(©_path, ©_size, &name_len, - tcon->treeName, utf16_path); + tcon->tree_name, utf16_path); if (rc) goto err_free_req; @@ -2659,6 +2692,9 @@ int smb311_posix_mkdir(const unsigned int xid, struct inode *inode, rc = add_posix_context(iov, &n_iov, mode); if (rc) goto err_free_req; + req->CreateContextsOffset = cpu_to_le32( + sizeof(struct smb2_create_req) + + iov[1].iov_len); pc_buf = iov[n_iov-1].iov_base; } @@ -2668,7 +2704,7 @@ int smb311_posix_mkdir(const unsigned int xid, struct inode *inode, rqst.rq_nvec = n_iov; /* no need to inc num_remote_opens because we close it just below */ - trace_smb3_posix_mkdir_enter(xid, tcon->tid, ses->Suid, CREATE_NOT_FILE, + trace_smb3_posix_mkdir_enter(xid, tcon->tid, ses->Suid, full_path, CREATE_NOT_FILE, FILE_WRITE_ATTRIBUTES); /* resource #4: response buffer */ rc = cifs_send_recv(xid, ses, server, @@ -2681,10 +2717,20 @@ int smb311_posix_mkdir(const unsigned int xid, struct inode *inode, goto err_free_rsp_buf; } + /* + * Although unlikely to be possible for rsp to be null and rc not set, + * adding check below is slightly safer long term (and quiets Coverity + * warning) + */ rsp = (struct smb2_create_rsp *)rsp_iov.iov_base; - trace_smb3_posix_mkdir_done(xid, rsp->PersistentFileId, tcon->tid, - ses->Suid, CREATE_NOT_FILE, - FILE_WRITE_ATTRIBUTES); + if (rsp == NULL) { + rc = -EIO; + kfree(pc_buf); + goto err_free_req; + } + + trace_smb3_posix_mkdir_done(xid, rsp->PersistentFileId, tcon->tid, ses->Suid, + CREATE_NOT_FILE, FILE_WRITE_ATTRIBUTES); SMB2_close(xid, tcon, rsp->PersistentFileId, rsp->VolatileFileId); @@ -2710,7 +2756,7 @@ SMB2_open_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server, __u32 file_attributes = 0; int copy_size; int uni_path_len; - unsigned int total_len; + unsigned int total_len, i; struct kvec *iov = rqst->rq_iov; __le16 *copy_path; int rc; @@ -2750,10 +2796,10 @@ SMB2_open_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server, if (tcon->share_flags & SHI1005_FLAGS_DFS) { int name_len; - req->sync_hdr.Flags |= SMB2_FLAGS_DFS_OPERATIONS; + req->hdr.Flags |= SMB2_FLAGS_DFS_OPERATIONS; rc = alloc_path_with_tree_prefix(©_path, ©_size, &name_len, - tcon->treeName, path); + tcon->tree_name, path); if (rc) return rc; req->NameLength = cpu_to_le16(name_len * 2); @@ -2763,9 +2809,7 @@ SMB2_open_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server, uni_path_len = (2 * UniStrnlen((wchar_t *)path, PATH_MAX)) + 2; /* MUST set path len (NameLength) to 0 opening root of share */ req->NameLength = cpu_to_le16(uni_path_len - 2); - copy_size = uni_path_len; - if (copy_size % 8 != 0) - copy_size = roundup(copy_size, 8); + copy_size = round_up(uni_path_len, 8); copy_path = kzalloc(copy_size, GFP_KERNEL); if (!copy_path) return -ENOMEM; @@ -2788,21 +2832,13 @@ SMB2_open_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server, (oparms->create_options & CREATE_NOT_FILE)) req->RequestedOplockLevel = *oplock; /* no srv lease support */ else { - rc = add_lease_context(server, iov, &n_iov, + rc = add_lease_context(server, req, iov, &n_iov, oparms->fid->lease_key, oplock); if (rc) return rc; } if (*oplock == SMB2_OPLOCK_LEVEL_BATCH) { - /* need to set Next field of lease context if we request it */ - if (server->capabilities & SMB2_GLOBAL_CAP_LEASING) { - struct create_context *ccontext = - (struct create_context *)iov[n_iov-1].iov_base; - ccontext->Next = - cpu_to_le32(server->vals->create_lease_size); - } - rc = add_durable_context(iov, &n_iov, oparms, tcon->use_persistent); if (rc) @@ -2810,13 +2846,6 @@ SMB2_open_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server, } if (tcon->posix_extensions) { - if (n_iov > 2) { - struct create_context *ccontext = - (struct create_context *)iov[n_iov-1].iov_base; - ccontext->Next = - cpu_to_le32(iov[n_iov-1].iov_len); - } - rc = add_posix_context(iov, &n_iov, oparms->mode); if (rc) return rc; @@ -2824,13 +2853,6 @@ SMB2_open_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server, if (tcon->snapshot_time) { cifs_dbg(FYI, "adding snapshot context\n"); - if (n_iov > 2) { - struct create_context *ccontext = - (struct create_context *)iov[n_iov-1].iov_base; - ccontext->Next = - cpu_to_le32(iov[n_iov-1].iov_len); - } - rc = add_twarp_context(iov, &n_iov, tcon->snapshot_time); if (rc) return rc; @@ -2854,12 +2876,6 @@ SMB2_open_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server, set_owner = false; if (set_owner | set_mode) { - if (n_iov > 2) { - struct create_context *ccontext = - (struct create_context *)iov[n_iov-1].iov_base; - ccontext->Next = cpu_to_le32(iov[n_iov-1].iov_len); - } - cifs_dbg(FYI, "add sd with mode 0x%x\n", oparms->mode); rc = add_sd_context(iov, &n_iov, oparms->mode, set_owner); if (rc) @@ -2867,12 +2883,30 @@ SMB2_open_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server, } } + add_query_id_context(iov, &n_iov); + if (n_iov > 2) { - struct create_context *ccontext = - (struct create_context *)iov[n_iov-1].iov_base; - ccontext->Next = cpu_to_le32(iov[n_iov-1].iov_len); + /* + * We have create contexts behind iov[1] (the file + * name), point at them from the main create request + */ + req->CreateContextsOffset = cpu_to_le32( + sizeof(struct smb2_create_req) + + iov[1].iov_len); + req->CreateContextsLength = 0; + + for (i = 2; i < (n_iov-1); i++) { + struct kvec *v = &iov[i]; + size_t len = v->iov_len; + struct create_context *cctx = + (struct create_context *)v->iov_base; + + cctx->Next = cpu_to_le32(len); + le32_add_cpu(&req->CreateContextsLength, len); + } + le32_add_cpu(&req->CreateContextsLength, + iov[n_iov-1].iov_len); } - add_query_id_context(iov, &n_iov); rqst->rq_nvec = n_iov; return 0; @@ -2928,7 +2962,7 @@ SMB2_open(const unsigned int xid, struct cifs_open_parms *oparms, __le16 *path, if (rc) goto creat_exit; - trace_smb3_open_enter(xid, tcon->tid, tcon->ses->Suid, + trace_smb3_open_enter(xid, tcon->tid, tcon->ses->Suid, oparms->path, oparms->create_options, oparms->desired_access); rc = cifs_send_recv(xid, ses, server, @@ -2948,21 +2982,22 @@ SMB2_open(const unsigned int xid, struct cifs_open_parms *oparms, __le16 *path, oparms->create_options, oparms->desired_access, rc); if (rc == -EREMCHG) { pr_warn_once("server share %s deleted\n", - tcon->treeName); + tcon->tree_name); tcon->need_reconnect = true; } goto creat_exit; - } else - trace_smb3_open_done(xid, rsp->PersistentFileId, tcon->tid, - ses->Suid, oparms->create_options, - oparms->desired_access); + } else if (rsp == NULL) /* unlikely to happen, but safer to check */ + goto creat_exit; + else + trace_smb3_open_done(xid, rsp->PersistentFileId, tcon->tid, ses->Suid, + oparms->create_options, oparms->desired_access); atomic_inc(&tcon->num_remote_opens); oparms->fid->persistent_fid = rsp->PersistentFileId; oparms->fid->volatile_fid = rsp->VolatileFileId; oparms->fid->access = oparms->desired_access; #ifdef CONFIG_CIFS_DEBUG2 - oparms->fid->mid = le64_to_cpu(rsp->sync_hdr.MessageId); + oparms->fid->mid = le64_to_cpu(rsp->hdr.MessageId); #endif /* CIFS_DEBUG2 */ if (buf) { @@ -2990,7 +3025,7 @@ int SMB2_ioctl_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server, struct smb_rqst *rqst, u64 persistent_fid, u64 volatile_fid, u32 opcode, - bool is_fsctl, char *in_data, u32 indatalen, + char *in_data, u32 indatalen, __u32 max_response_size) { struct smb2_ioctl_req *req; @@ -3062,17 +3097,15 @@ SMB2_ioctl_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server, * response size smaller. */ req->MaxOutputResponse = cpu_to_le32(max_response_size); - req->sync_hdr.CreditCharge = + req->hdr.CreditCharge = cpu_to_le16(DIV_ROUND_UP(max(indatalen, max_response_size), SMB2_MAX_BUFFER_SIZE)); - if (is_fsctl) - req->Flags = cpu_to_le32(SMB2_0_IOCTL_IS_FSCTL); - else - req->Flags = 0; + /* always an FSCTL (for now) */ + req->Flags = cpu_to_le32(SMB2_0_IOCTL_IS_FSCTL); /* validate negotiate request must be signed - see MS-SMB2 3.2.5.5 */ if (opcode == FSCTL_VALIDATE_NEGOTIATE_INFO) - req->sync_hdr.Flags |= SMB2_FLAGS_SIGNED; + req->hdr.Flags |= SMB2_FLAGS_SIGNED; return 0; } @@ -3095,9 +3128,9 @@ SMB2_ioctl_free(struct smb_rqst *rqst) */ int SMB2_ioctl(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid, - u64 volatile_fid, u32 opcode, bool is_fsctl, - char *in_data, u32 indatalen, u32 max_out_data_len, - char **out_data, u32 *plen /* returned data len */) + u64 volatile_fid, u32 opcode, char *in_data, u32 indatalen, + u32 max_out_data_len, char **out_data, + u32 *plen /* returned data len */) { struct smb_rqst rqst; struct smb2_ioctl_rsp *rsp = NULL; @@ -3139,7 +3172,7 @@ SMB2_ioctl(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid, rc = SMB2_ioctl_init(tcon, server, &rqst, persistent_fid, volatile_fid, opcode, - is_fsctl, in_data, indatalen, max_out_data_len); + in_data, indatalen, max_out_data_len); if (rc) goto ioctl_exit; @@ -3172,6 +3205,16 @@ SMB2_ioctl(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid, if ((plen == NULL) || (out_data == NULL)) goto ioctl_exit; + /* + * Although unlikely to be possible for rsp to be null and rc not set, + * adding check below is slightly safer long term (and quiets Coverity + * warning) + */ + if (rsp == NULL) { + rc = -EIO; + goto ioctl_exit; + } + *plen = le32_to_cpu(rsp->OutputCount); /* We check for obvious errors in the output buffer length and offset */ @@ -3221,7 +3264,7 @@ SMB2_set_compression(const unsigned int xid, struct cifs_tcon *tcon, cpu_to_le16(COMPRESSION_FORMAT_DEFAULT); rc = SMB2_ioctl(xid, tcon, persistent_fid, volatile_fid, - FSCTL_SET_COMPRESSION, true /* is_fsctl */, + FSCTL_SET_COMPRESSION, (char *)&fsctl_input /* data input */, 2 /* in data len */, CIFSMaxBufSize /* max out data */, &ret_data /* out data */, NULL); @@ -3400,7 +3443,7 @@ smb2_validate_and_copy_iov(unsigned int offset, unsigned int buffer_length, if (rc) return rc; - memcpy(data, begin_of_buf, buffer_length); + memcpy(data, begin_of_buf, minbufsize); return 0; } @@ -3524,7 +3567,7 @@ query_info(const unsigned int xid, struct cifs_tcon *tcon, rc = smb2_validate_and_copy_iov(le16_to_cpu(rsp->OutputBufferOffset), le32_to_cpu(rsp->OutputBufferLength), - &rsp_iov, min_len, *data); + &rsp_iov, dlen ? *dlen : min_len, *data); if (rc && allocated) { kfree(*data); *data = NULL; @@ -3630,11 +3673,13 @@ SMB2_notify_init(const unsigned int xid, struct smb_rqst *rqst, int SMB2_change_notify(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid, u64 volatile_fid, bool watch_tree, - u32 completion_filter) + u32 completion_filter, u32 max_out_data_len, char **out_data, + u32 *plen /* returned data len */) { struct cifs_ses *ses = tcon->ses; struct TCP_Server_Info *server = cifs_pick_channel(ses); struct smb_rqst rqst; + struct smb2_change_notify_rsp *smb_rsp; struct kvec iov[1]; struct kvec rsp_iov = {NULL, 0}; int resp_buftype = CIFS_NO_BUFFER; @@ -3650,6 +3695,9 @@ SMB2_change_notify(const unsigned int xid, struct cifs_tcon *tcon, memset(&rqst, 0, sizeof(struct smb_rqst)); memset(&iov, 0, sizeof(iov)); + if (plen) + *plen = 0; + rqst.rq_iov = iov; rqst.rq_nvec = 1; @@ -3668,9 +3716,28 @@ SMB2_change_notify(const unsigned int xid, struct cifs_tcon *tcon, cifs_stats_fail_inc(tcon, SMB2_CHANGE_NOTIFY_HE); trace_smb3_notify_err(xid, persistent_fid, tcon->tid, ses->Suid, (u8)watch_tree, completion_filter, rc); - } else + } else { trace_smb3_notify_done(xid, persistent_fid, tcon->tid, - ses->Suid, (u8)watch_tree, completion_filter); + ses->Suid, (u8)watch_tree, completion_filter); + /* validate that notify information is plausible */ + if ((rsp_iov.iov_base == NULL) || + (rsp_iov.iov_len < sizeof(struct smb2_change_notify_rsp) + 1)) + goto cnotify_exit; + + smb_rsp = (struct smb2_change_notify_rsp *)rsp_iov.iov_base; + + smb2_validate_iov(le16_to_cpu(smb_rsp->OutputBufferOffset), + le32_to_cpu(smb_rsp->OutputBufferLength), &rsp_iov, + sizeof(struct file_notify_information)); + + *out_data = kmemdup((char *)smb_rsp + le16_to_cpu(smb_rsp->OutputBufferOffset), + le32_to_cpu(smb_rsp->OutputBufferLength), GFP_KERNEL); + if (*out_data == NULL) { + rc = -ENOMEM; + goto cnotify_exit; + } else if (plen) + *plen = le32_to_cpu(smb_rsp->OutputBufferLength); + } cnotify_exit: if (rqst.rq_iov) @@ -3697,11 +3764,11 @@ smb2_echo_callback(struct mid_q_entry *mid) if (mid->mid_state == MID_RESPONSE_RECEIVED || mid->mid_state == MID_RESPONSE_MALFORMED) { - credits.value = le16_to_cpu(rsp->sync_hdr.CreditRequest); + credits.value = le16_to_cpu(rsp->hdr.CreditRequest); credits.instance = server->reconnect_instance; } - DeleteMidQEntry(mid); + release_mid(mid); add_credits(server, &credits, CIFS_ECHO_OP); } @@ -3709,27 +3776,41 @@ void smb2_reconnect_server(struct work_struct *work) { struct TCP_Server_Info *server = container_of(work, struct TCP_Server_Info, reconnect.work); - struct cifs_ses *ses; + struct TCP_Server_Info *pserver; + struct cifs_ses *ses, *ses2; struct cifs_tcon *tcon, *tcon2; - struct list_head tmp_list; - int tcon_exist = false; + struct list_head tmp_list, tmp_ses_list; + bool tcon_exist = false, ses_exist = false; + bool tcon_selected = false; int rc; - int resched = false; + bool resched = false; + /* If server is a channel, select the primary channel */ + pserver = CIFS_SERVER_IS_CHAN(server) ? server->primary_server : server; /* Prevent simultaneous reconnects that can corrupt tcon->rlist list */ - mutex_lock(&server->reconnect_mutex); + mutex_lock(&pserver->reconnect_mutex); INIT_LIST_HEAD(&tmp_list); - cifs_dbg(FYI, "Need negotiate, reconnecting tcons\n"); + INIT_LIST_HEAD(&tmp_ses_list); + cifs_dbg(FYI, "Reconnecting tcons and channels\n"); spin_lock(&cifs_tcp_ses_lock); - list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { + list_for_each_entry(ses, &pserver->smb_ses_list, smb_ses_list) { + spin_lock(&ses->ses_lock); + if (ses->ses_status == SES_EXITING) { + spin_unlock(&ses->ses_lock); + continue; + } + spin_unlock(&ses->ses_lock); + + tcon_selected = false; + list_for_each_entry(tcon, &ses->tcon_list, tcon_list) { if (tcon->need_reconnect || tcon->need_reopen_files) { tcon->tc_count++; list_add_tail(&tcon->rlist, &tmp_list); - tcon_exist = true; + tcon_selected = tcon_exist = true; } } /* @@ -3738,15 +3819,27 @@ void smb2_reconnect_server(struct work_struct *work) */ if (ses->tcon_ipc && ses->tcon_ipc->need_reconnect) { list_add_tail(&ses->tcon_ipc->rlist, &tmp_list); - tcon_exist = true; - ses->ses_count++; + tcon_selected = tcon_exist = true; + cifs_smb_ses_inc_refcount(ses); + } + /* + * handle the case where channel needs to reconnect + * binding session, but tcon is healthy (some other channel + * is active) + */ + spin_lock(&ses->chan_lock); + if (!tcon_selected && cifs_chan_needs_reconnect(ses, server)) { + list_add_tail(&ses->rlist, &tmp_ses_list); + ses_exist = true; + cifs_smb_ses_inc_refcount(ses); } + spin_unlock(&ses->chan_lock); } /* * Get the reference to server struct to be sure that the last call of * cifs_put_tcon() in the loop below won't release the server pointer. */ - if (tcon_exist) + if (tcon_exist || ses_exist) server->srv_count++; spin_unlock(&cifs_tcp_ses_lock); @@ -3764,13 +3857,43 @@ void smb2_reconnect_server(struct work_struct *work) cifs_put_tcon(tcon); } - cifs_dbg(FYI, "Reconnecting tcons finished\n"); + if (!ses_exist) + goto done; + + /* allocate a dummy tcon struct used for reconnect */ + tcon = tconInfoAlloc(); + if (!tcon) { + resched = true; + list_for_each_entry_safe(ses, ses2, &tmp_ses_list, rlist) { + list_del_init(&ses->rlist); + cifs_put_smb_ses(ses); + } + goto done; + } + + tcon->status = TID_GOOD; + tcon->retry = false; + tcon->need_reconnect = false; + + /* now reconnect sessions for necessary channels */ + list_for_each_entry_safe(ses, ses2, &tmp_ses_list, rlist) { + tcon->ses = ses; + rc = smb2_reconnect(SMB2_INTERNAL_CMD, tcon, server); + if (rc) + resched = true; + list_del_init(&ses->rlist); + cifs_put_smb_ses(ses); + } + tconInfoFree(tcon); + +done: + cifs_dbg(FYI, "Reconnecting tcons and channels finished\n"); if (resched) queue_delayed_work(cifsiod_wq, &server->reconnect, 2 * HZ); - mutex_unlock(&server->reconnect_mutex); + mutex_unlock(&pserver->reconnect_mutex); /* now we can safely release srv struct */ - if (tcon_exist) + if (tcon_exist || ses_exist) cifs_put_tcp_session(server, 1); } @@ -3784,20 +3907,24 @@ SMB2_echo(struct TCP_Server_Info *server) .rq_nvec = 1 }; unsigned int total_len; - cifs_dbg(FYI, "In echo request\n"); + cifs_dbg(FYI, "In echo request for conn_id %lld\n", server->conn_id); - if (server->tcpStatus == CifsNeedNegotiate) { + spin_lock(&server->srv_lock); + if (server->ops->need_neg && + server->ops->need_neg(server)) { + spin_unlock(&server->srv_lock); /* No need to send echo on newly established connections */ mod_delayed_work(cifsiod_wq, &server->reconnect, 0); return rc; } + spin_unlock(&server->srv_lock); rc = smb2_plain_req_init(SMB2_ECHO, NULL, server, (void **)&req, &total_len); if (rc) return rc; - req->sync_hdr.CreditRequest = cpu_to_le16(1); + req->hdr.CreditRequest = cpu_to_le16(1); iov[0].iov_len = total_len; iov[0].iov_base = (char *)req; @@ -3890,6 +4017,36 @@ SMB2_flush(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid, return rc; } +#ifdef CONFIG_CIFS_SMB_DIRECT +static inline bool smb3_use_rdma_offload(struct cifs_io_parms *io_parms) +{ + struct TCP_Server_Info *server = io_parms->server; + struct cifs_tcon *tcon = io_parms->tcon; + + /* we can only offload if we're connected */ + if (!server || !tcon) + return false; + + /* we can only offload on an rdma connection */ + if (!server->rdma || !server->smbd_conn) + return false; + + /* we don't support signed offload yet */ + if (server->sign) + return false; + + /* we don't support encrypted offload yet */ + if (smb3_encryption_required(tcon)) + return false; + + /* offload also has its overhead, so only do it if desired */ + if (io_parms->length < server->smbd_conn->rdma_readwrite_threshold) + return false; + + return true; +} +#endif /* CONFIG_CIFS_SMB_DIRECT */ + /* * To form a chain of read requests, any read requests after the first should * have the end_of_chain boolean set to true. @@ -3900,8 +4057,8 @@ smb2_new_read_req(void **buf, unsigned int *total_len, unsigned int remaining_bytes, int request_type) { int rc = -EACCES; - struct smb2_read_plain_req *req = NULL; - struct smb2_sync_hdr *shdr; + struct smb2_read_req *req = NULL; + struct smb2_hdr *shdr; struct TCP_Server_Info *server = io_parms->server; rc = smb2_plain_req_init(SMB2_READ, io_parms->tcon, server, @@ -3912,8 +4069,8 @@ smb2_new_read_req(void **buf, unsigned int *total_len, if (server == NULL) return -ECONNABORTED; - shdr = &req->sync_hdr; - shdr->ProcessId = cpu_to_le32(io_parms->pid); + shdr = &req->hdr; + shdr->Id.SyncId.ProcessId = cpu_to_le32(io_parms->pid); req->PersistentFileId = io_parms->persistent_fid; req->VolatileFileId = io_parms->volatile_fid; @@ -3933,9 +4090,7 @@ smb2_new_read_req(void **buf, unsigned int *total_len, * If we want to do a RDMA write, fill in and append * smbd_buffer_descriptor_v1 to the end of read request */ - if (server->rdma && rdata && !server->sign && - rdata->bytes >= server->smbd_conn->rdma_readwrite_threshold) { - + if (smb3_use_rdma_offload(io_parms)) { struct smbd_buffer_descriptor_v1 *v1; bool need_invalidate = server->dialect == SMB30_PROT_ID; @@ -3950,7 +4105,7 @@ smb2_new_read_req(void **buf, unsigned int *total_len, if (need_invalidate) req->Channel = SMB2_CHANNEL_RDMA_V1; req->ReadChannelInfoOffset = - cpu_to_le16(offsetof(struct smb2_read_plain_req, Buffer)); + cpu_to_le16(offsetof(struct smb2_read_req, Buffer)); req->ReadChannelInfoLength = cpu_to_le16(sizeof(struct smbd_buffer_descriptor_v1)); v1 = (struct smbd_buffer_descriptor_v1 *) &req->Buffer[0]; @@ -3964,7 +4119,7 @@ smb2_new_read_req(void **buf, unsigned int *total_len, if (request_type & CHAINED_REQUEST) { if (!(request_type & END_OF_CHAIN)) { /* next 8-byte aligned request */ - *total_len = DIV_ROUND_UP(*total_len, 8) * 8; + *total_len = ALIGN(*total_len, 8); shdr->NextCommand = cpu_to_le32(*total_len); } else /* END_OF_CHAIN */ shdr->NextCommand = 0; @@ -3974,10 +4129,10 @@ smb2_new_read_req(void **buf, unsigned int *total_len, * Related requests use info from previous read request * in chain. */ - shdr->SessionId = 0xFFFFFFFFFFFFFFFF; - shdr->TreeId = 0xFFFFFFFF; - req->PersistentFileId = 0xFFFFFFFFFFFFFFFF; - req->VolatileFileId = 0xFFFFFFFFFFFFFFFF; + shdr->SessionId = cpu_to_le64(0xFFFFFFFFFFFFFFFF); + shdr->Id.SyncId.TreeId = cpu_to_le32(0xFFFFFFFF); + req->PersistentFileId = (u64)-1; + req->VolatileFileId = (u64)-1; } } if (remaining_bytes > io_parms->length) @@ -3995,8 +4150,8 @@ smb2_readv_callback(struct mid_q_entry *mid) struct cifs_readdata *rdata = mid->callback_data; struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink); struct TCP_Server_Info *server = rdata->server; - struct smb2_sync_hdr *shdr = - (struct smb2_sync_hdr *)rdata->iov[0].iov_base; + struct smb2_hdr *shdr = + (struct smb2_hdr *)rdata->iov[0].iov_base; struct cifs_credits credits = { .value = 0, .instance = 0 }; struct smb_rqst rqst = { .rq_iov = &rdata->iov[1], .rq_nvec = 1, }; @@ -4075,7 +4230,7 @@ smb2_readv_callback(struct mid_q_entry *mid) rdata->offset, rdata->got_bytes); queue_work(cifsiod_wq, &rdata->work); - DeleteMidQEntry(mid); + release_mid(mid); add_credits(server, &credits, 0); } @@ -4085,13 +4240,14 @@ smb2_async_readv(struct cifs_readdata *rdata) { int rc, flags = 0; char *buf; - struct smb2_sync_hdr *shdr; + struct smb2_hdr *shdr; struct cifs_io_parms io_parms; struct smb_rqst rqst = { .rq_iov = rdata->iov, .rq_nvec = 1 }; struct TCP_Server_Info *server; struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink); unsigned int total_len; + int credit_request; cifs_dbg(FYI, "%s: offset=%llu bytes=%u\n", __func__, rdata->offset, rdata->bytes); @@ -4118,12 +4274,18 @@ smb2_async_readv(struct cifs_readdata *rdata) rdata->iov[0].iov_base = buf; rdata->iov[0].iov_len = total_len; - shdr = (struct smb2_sync_hdr *)buf; + shdr = (struct smb2_hdr *)buf; if (rdata->credits.value > 0) { shdr->CreditCharge = cpu_to_le16(DIV_ROUND_UP(rdata->bytes, SMB2_MAX_BUFFER_SIZE)); - shdr->CreditRequest = cpu_to_le16(le16_to_cpu(shdr->CreditCharge) + 8); + credit_request = le16_to_cpu(shdr->CreditCharge) + 8; + if (server->credits >= server->max_credits) + shdr->CreditRequest = cpu_to_le16(0); + else + shdr->CreditRequest = cpu_to_le16( + min_t(int, server->max_credits - + server->credits, credit_request)); rc = adjust_credits(server, &rdata->credits, rdata->bytes); if (rc) @@ -4157,7 +4319,7 @@ SMB2_read(const unsigned int xid, struct cifs_io_parms *io_parms, { struct smb_rqst rqst; int resp_buftype, rc; - struct smb2_read_plain_req *req = NULL; + struct smb2_read_req *req = NULL; struct smb2_read_rsp *rsp = NULL; struct kvec iov[1]; struct kvec rsp_iov; @@ -4191,19 +4353,20 @@ SMB2_read(const unsigned int xid, struct cifs_io_parms *io_parms, if (rc != -ENODATA) { cifs_stats_fail_inc(io_parms->tcon, SMB2_READ_HE); cifs_dbg(VFS, "Send error in read = %d\n", rc); - trace_smb3_read_err(xid, req->PersistentFileId, + trace_smb3_read_err(xid, + req->PersistentFileId, io_parms->tcon->tid, ses->Suid, io_parms->offset, io_parms->length, rc); } else - trace_smb3_read_done(xid, req->PersistentFileId, - io_parms->tcon->tid, ses->Suid, - io_parms->offset, 0); + trace_smb3_read_done(xid, req->PersistentFileId, io_parms->tcon->tid, + ses->Suid, io_parms->offset, 0); free_rsp_buf(resp_buftype, rsp_iov.iov_base); cifs_small_buf_release(req); return rc == -ENODATA ? 0 : rc; } else - trace_smb3_read_done(xid, req->PersistentFileId, + trace_smb3_read_done(xid, + req->PersistentFileId, io_parms->tcon->tid, ses->Suid, io_parms->offset, io_parms->length); @@ -4251,7 +4414,7 @@ smb2_writev_callback(struct mid_q_entry *mid) switch (mid->mid_state) { case MID_RESPONSE_RECEIVED: - credits.value = le16_to_cpu(rsp->sync_hdr.CreditRequest); + credits.value = le16_to_cpu(rsp->hdr.CreditRequest); credits.instance = server->reconnect_instance; wdata->result = smb2_check_receive(mid, server, 0); if (wdata->result != 0) @@ -4277,7 +4440,7 @@ smb2_writev_callback(struct mid_q_entry *mid) wdata->result = -EAGAIN; break; case MID_RESPONSE_MALFORMED: - credits.value = le16_to_cpu(rsp->sync_hdr.CreditRequest); + credits.value = le16_to_cpu(rsp->hdr.CreditRequest); credits.instance = server->reconnect_instance; fallthrough; default: @@ -4305,7 +4468,7 @@ smb2_writev_callback(struct mid_q_entry *mid) wdata->bytes, wdata->result); if (wdata->result == -ENOSPC) pr_warn_once("Out of space writing to %s\n", - tcon->treeName); + tcon->tree_name); } else trace_smb3_write_done(0 /* no xid */, wdata->cfile->fid.persistent_fid, @@ -4313,7 +4476,7 @@ smb2_writev_callback(struct mid_q_entry *mid) wdata->offset, wdata->bytes); queue_work(cifsiod_wq, &wdata->work); - DeleteMidQEntry(mid); + release_mid(mid); add_credits(server, &credits, 0); } @@ -4324,16 +4487,34 @@ smb2_async_writev(struct cifs_writedata *wdata, { int rc = -EACCES, flags = 0; struct smb2_write_req *req = NULL; - struct smb2_sync_hdr *shdr; + struct smb2_hdr *shdr; struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink); struct TCP_Server_Info *server = wdata->server; struct kvec iov[1]; struct smb_rqst rqst = { }; unsigned int total_len; + struct cifs_io_parms _io_parms; + struct cifs_io_parms *io_parms = NULL; + int credit_request; if (!wdata->server) server = wdata->server = cifs_pick_channel(tcon->ses); + /* + * in future we may get cifs_io_parms passed in from the caller, + * but for now we construct it here... + */ + _io_parms = (struct cifs_io_parms) { + .tcon = tcon, + .server = server, + .offset = wdata->offset, + .length = wdata->bytes, + .persistent_fid = wdata->cfile->fid.persistent_fid, + .volatile_fid = wdata->cfile->fid.volatile_fid, + .pid = wdata->pid, + }; + io_parms = &_io_parms; + rc = smb2_plain_req_init(SMB2_WRITE, tcon, server, (void **) &req, &total_len); if (rc) @@ -4342,29 +4523,32 @@ smb2_async_writev(struct cifs_writedata *wdata, if (smb3_encryption_required(tcon)) flags |= CIFS_TRANSFORM_REQ; - shdr = (struct smb2_sync_hdr *)req; - shdr->ProcessId = cpu_to_le32(wdata->cfile->pid); + shdr = (struct smb2_hdr *)req; + shdr->Id.SyncId.ProcessId = cpu_to_le32(io_parms->pid); - req->PersistentFileId = wdata->cfile->fid.persistent_fid; - req->VolatileFileId = wdata->cfile->fid.volatile_fid; + req->PersistentFileId = io_parms->persistent_fid; + req->VolatileFileId = io_parms->volatile_fid; req->WriteChannelInfoOffset = 0; req->WriteChannelInfoLength = 0; req->Channel = 0; - req->Offset = cpu_to_le64(wdata->offset); + req->Offset = cpu_to_le64(io_parms->offset); req->DataOffset = cpu_to_le16( offsetof(struct smb2_write_req, Buffer)); req->RemainingBytes = 0; - trace_smb3_write_enter(0 /* xid */, wdata->cfile->fid.persistent_fid, - tcon->tid, tcon->ses->Suid, wdata->offset, wdata->bytes); + trace_smb3_write_enter(0 /* xid */, + io_parms->persistent_fid, + io_parms->tcon->tid, + io_parms->tcon->ses->Suid, + io_parms->offset, + io_parms->length); + #ifdef CONFIG_CIFS_SMB_DIRECT /* * If we want to do a server RDMA read, fill in and append * smbd_buffer_descriptor_v1 to the end of write request */ - if (server->rdma && !server->sign && wdata->bytes >= - server->smbd_conn->rdma_readwrite_threshold) { - + if (smb3_use_rdma_offload(io_parms)) { struct smbd_buffer_descriptor_v1 *v1; bool need_invalidate = server->dialect == SMB30_PROT_ID; @@ -4416,22 +4600,28 @@ smb2_async_writev(struct cifs_writedata *wdata, } #endif cifs_dbg(FYI, "async write at %llu %u bytes\n", - wdata->offset, wdata->bytes); + io_parms->offset, io_parms->length); #ifdef CONFIG_CIFS_SMB_DIRECT /* For RDMA read, I/O size is in RemainingBytes not in Length */ if (!wdata->mr) - req->Length = cpu_to_le32(wdata->bytes); + req->Length = cpu_to_le32(io_parms->length); #else - req->Length = cpu_to_le32(wdata->bytes); + req->Length = cpu_to_le32(io_parms->length); #endif if (wdata->credits.value > 0) { shdr->CreditCharge = cpu_to_le16(DIV_ROUND_UP(wdata->bytes, SMB2_MAX_BUFFER_SIZE)); - shdr->CreditRequest = cpu_to_le16(le16_to_cpu(shdr->CreditCharge) + 8); + credit_request = le16_to_cpu(shdr->CreditCharge) + 8; + if (server->credits >= server->max_credits) + shdr->CreditRequest = cpu_to_le16(0); + else + shdr->CreditRequest = cpu_to_le16( + min_t(int, server->max_credits - + server->credits, credit_request)); - rc = adjust_credits(server, &wdata->credits, wdata->bytes); + rc = adjust_credits(server, &wdata->credits, io_parms->length); if (rc) goto async_writev_out; @@ -4443,9 +4633,13 @@ smb2_async_writev(struct cifs_writedata *wdata, wdata, flags, &wdata->credits); if (rc) { - trace_smb3_write_err(0 /* no xid */, req->PersistentFileId, - tcon->tid, tcon->ses->Suid, wdata->offset, - wdata->bytes, rc); + trace_smb3_write_err(0 /* no xid */, + io_parms->persistent_fid, + io_parms->tcon->tid, + io_parms->tcon->ses->Suid, + io_parms->offset, + io_parms->length, + rc); kref_put(&wdata->refcount, release); cifs_stats_fail_inc(tcon, SMB2_WRITE_HE); } @@ -4494,7 +4688,7 @@ SMB2_write(const unsigned int xid, struct cifs_io_parms *io_parms, if (smb3_encryption_required(io_parms->tcon)) flags |= CIFS_TRANSFORM_REQ; - req->sync_hdr.ProcessId = cpu_to_le32(io_parms->pid); + req->hdr.Id.SyncId.ProcessId = cpu_to_le32(io_parms->pid); req->PersistentFileId = io_parms->persistent_fid; req->VolatileFileId = io_parms->volatile_fid; @@ -4525,7 +4719,8 @@ SMB2_write(const unsigned int xid, struct cifs_io_parms *io_parms, rsp = (struct smb2_write_rsp *)rsp_iov.iov_base; if (rc) { - trace_smb3_write_err(xid, req->PersistentFileId, + trace_smb3_write_err(xid, + req->PersistentFileId, io_parms->tcon->tid, io_parms->tcon->ses->Suid, io_parms->offset, io_parms->length, rc); @@ -4533,10 +4728,11 @@ SMB2_write(const unsigned int xid, struct cifs_io_parms *io_parms, cifs_dbg(VFS, "Send error in write = %d\n", rc); } else { *nbytes = le32_to_cpu(rsp->DataLength); - trace_smb3_write_done(xid, req->PersistentFileId, - io_parms->tcon->tid, - io_parms->tcon->ses->Suid, - io_parms->offset, *nbytes); + trace_smb3_write_done(xid, + req->PersistentFileId, + io_parms->tcon->tid, + io_parms->tcon->ses->Suid, + io_parms->offset, *nbytes); } cifs_small_buf_release(req); @@ -4738,7 +4934,7 @@ int SMB2_query_directory_init(const unsigned int xid, memcpy(bufptr, &asteriks, len); req->FileNameOffset = - cpu_to_le16(sizeof(struct smb2_query_directory_req) - 1); + cpu_to_le16(sizeof(struct smb2_query_directory_req)); req->FileNameLength = cpu_to_le16(len); /* * BB could be 30 bytes or so longer if we used SMB2 specific @@ -4783,10 +4979,10 @@ smb2_parse_query_directory(struct cifs_tcon *tcon, switch (srch_inf->info_level) { case SMB_FIND_FILE_DIRECTORY_INFO: - info_buf_size = sizeof(FILE_DIRECTORY_INFO) - 1; + info_buf_size = sizeof(FILE_DIRECTORY_INFO); break; case SMB_FIND_FILE_ID_FULL_DIR_INFO: - info_buf_size = sizeof(SEARCH_ID_FULL_DIR_INFO) - 1; + info_buf_size = sizeof(SEARCH_ID_FULL_DIR_INFO); break; case SMB_FIND_FILE_POSIX_INFO: /* note that posix payload are variable size */ @@ -4879,7 +5075,7 @@ SMB2_query_directory(const unsigned int xid, struct cifs_tcon *tcon, if (rc) { if (rc == -ENODATA && - rsp->sync_hdr.Status == STATUS_NO_MORE_FILES) { + rsp->hdr.Status == STATUS_NO_MORE_FILES) { trace_smb3_query_dir_done(xid, persistent_fid, tcon->tid, tcon->ses->Suid, index, 0); srch_inf->endOfSearch = true; @@ -4927,15 +5123,14 @@ SMB2_set_info_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server, if (rc) return rc; - req->sync_hdr.ProcessId = cpu_to_le32(pid); + req->hdr.Id.SyncId.ProcessId = cpu_to_le32(pid); req->InfoType = info_type; req->FileInfoClass = info_class; req->PersistentFileId = persistent_fid; req->VolatileFileId = volatile_fid; req->AdditionalInformation = cpu_to_le32(additional_info); - req->BufferOffset = - cpu_to_le16(sizeof(struct smb2_set_info_req) - 1); + req->BufferOffset = cpu_to_le16(sizeof(struct smb2_set_info_req)); req->BufferLength = cpu_to_le32(*size); memcpy(req->Buffer, *data, *size); @@ -5034,6 +5229,8 @@ SMB2_set_eof(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid, data = &info; size = sizeof(struct smb2_file_eof_info); + trace_smb3_set_eof(xid, persistent_fid, tcon->tid, tcon->ses->Suid, le64_to_cpu(*eof)); + return send_set_info(xid, tcon, persistent_fid, volatile_fid, pid, FILE_END_OF_FILE_INFORMATION, SMB2_O_INFO_FILE, 0, 1, &data, &size); @@ -5087,7 +5284,7 @@ SMB2_oplock_break(const unsigned int xid, struct cifs_tcon *tcon, req->VolatileFid = volatile_fid; req->PersistentFid = persistent_fid; req->OplockLevel = oplock_level; - req->sync_hdr.CreditRequest = cpu_to_le16(1); + req->hdr.CreditRequest = cpu_to_le16(1); flags |= CIFS_NO_RSP_BUF; @@ -5167,9 +5364,9 @@ build_qfs_info_req(struct kvec *iov, struct cifs_tcon *tcon, req->VolatileFileId = volatile_fid; /* 1 for pad */ req->InputBufferOffset = - cpu_to_le16(sizeof(struct smb2_query_info_req) - 1); + cpu_to_le16(sizeof(struct smb2_query_info_req)); req->OutputBufferLength = cpu_to_le32( - outbuf_len + sizeof(struct smb2_query_info_rsp) - 1); + outbuf_len + sizeof(struct smb2_query_info_rsp)); iov->iov_base = (char *)req; iov->iov_len = total_len; @@ -5389,7 +5586,7 @@ smb2_lockv(const unsigned int xid, struct cifs_tcon *tcon, if (smb3_encryption_required(tcon)) flags |= CIFS_TRANSFORM_REQ; - req->sync_hdr.ProcessId = cpu_to_le32(pid); + req->hdr.Id.SyncId.ProcessId = cpu_to_le32(pid); req->LockCount = cpu_to_le16(num_lock); req->PersistentFileId = persist_fid; @@ -5465,7 +5662,7 @@ SMB2_lease_break(const unsigned int xid, struct cifs_tcon *tcon, if (smb3_encryption_required(tcon)) flags |= CIFS_TRANSFORM_REQ; - req->sync_hdr.CreditRequest = cpu_to_le16(1); + req->hdr.CreditRequest = cpu_to_le16(1); req->StructureSize = cpu_to_le16(36); total_len += 12; diff --git a/fs/cifs/smb2pdu.h b/fs/cifs/smb2pdu.h index f32c99c9ba131..220994d0a0f7f 100644 --- a/fs/cifs/smb2pdu.h +++ b/fs/cifs/smb2pdu.h @@ -14,156 +14,12 @@ #include #include "cifsacl.h" -/* - * Note that, due to trying to use names similar to the protocol specifications, - * there are many mixed case field names in the structures below. Although - * this does not match typical Linux kernel style, it is necessary to be - * able to match against the protocol specfication. - * - * SMB2 commands - * Some commands have minimal (wct=0,bcc=0), or uninteresting, responses - * (ie no useful data other than the SMB error code itself) and are marked such. - * Knowing this helps avoid response buffer allocations and copy in some cases. - */ - -/* List of commands in host endian */ -#define SMB2_NEGOTIATE_HE 0x0000 -#define SMB2_SESSION_SETUP_HE 0x0001 -#define SMB2_LOGOFF_HE 0x0002 /* trivial request/resp */ -#define SMB2_TREE_CONNECT_HE 0x0003 -#define SMB2_TREE_DISCONNECT_HE 0x0004 /* trivial req/resp */ -#define SMB2_CREATE_HE 0x0005 -#define SMB2_CLOSE_HE 0x0006 -#define SMB2_FLUSH_HE 0x0007 /* trivial resp */ -#define SMB2_READ_HE 0x0008 -#define SMB2_WRITE_HE 0x0009 -#define SMB2_LOCK_HE 0x000A -#define SMB2_IOCTL_HE 0x000B -#define SMB2_CANCEL_HE 0x000C -#define SMB2_ECHO_HE 0x000D -#define SMB2_QUERY_DIRECTORY_HE 0x000E -#define SMB2_CHANGE_NOTIFY_HE 0x000F -#define SMB2_QUERY_INFO_HE 0x0010 -#define SMB2_SET_INFO_HE 0x0011 -#define SMB2_OPLOCK_BREAK_HE 0x0012 - -/* The same list in little endian */ -#define SMB2_NEGOTIATE cpu_to_le16(SMB2_NEGOTIATE_HE) -#define SMB2_SESSION_SETUP cpu_to_le16(SMB2_SESSION_SETUP_HE) -#define SMB2_LOGOFF cpu_to_le16(SMB2_LOGOFF_HE) -#define SMB2_TREE_CONNECT cpu_to_le16(SMB2_TREE_CONNECT_HE) -#define SMB2_TREE_DISCONNECT cpu_to_le16(SMB2_TREE_DISCONNECT_HE) -#define SMB2_CREATE cpu_to_le16(SMB2_CREATE_HE) -#define SMB2_CLOSE cpu_to_le16(SMB2_CLOSE_HE) -#define SMB2_FLUSH cpu_to_le16(SMB2_FLUSH_HE) -#define SMB2_READ cpu_to_le16(SMB2_READ_HE) -#define SMB2_WRITE cpu_to_le16(SMB2_WRITE_HE) -#define SMB2_LOCK cpu_to_le16(SMB2_LOCK_HE) -#define SMB2_IOCTL cpu_to_le16(SMB2_IOCTL_HE) -#define SMB2_CANCEL cpu_to_le16(SMB2_CANCEL_HE) -#define SMB2_ECHO cpu_to_le16(SMB2_ECHO_HE) -#define SMB2_QUERY_DIRECTORY cpu_to_le16(SMB2_QUERY_DIRECTORY_HE) -#define SMB2_CHANGE_NOTIFY cpu_to_le16(SMB2_CHANGE_NOTIFY_HE) -#define SMB2_QUERY_INFO cpu_to_le16(SMB2_QUERY_INFO_HE) -#define SMB2_SET_INFO cpu_to_le16(SMB2_SET_INFO_HE) -#define SMB2_OPLOCK_BREAK cpu_to_le16(SMB2_OPLOCK_BREAK_HE) - -#define SMB2_INTERNAL_CMD cpu_to_le16(0xFFFF) - -#define NUMBER_OF_SMB2_COMMANDS 0x0013 - /* 52 transform hdr + 64 hdr + 88 create rsp */ #define SMB2_TRANSFORM_HEADER_SIZE 52 #define MAX_SMB2_HDR_SIZE 204 -#define SMB2_PROTO_NUMBER cpu_to_le32(0x424d53fe) -#define SMB2_TRANSFORM_PROTO_NUM cpu_to_le32(0x424d53fd) -#define SMB2_COMPRESSION_TRANSFORM_ID cpu_to_le32(0x424d53fc) - -/* - * SMB2 Header Definition - * - * "MBZ" : Must be Zero - * "BB" : BugBug, Something to check/review/analyze later - * "PDU" : "Protocol Data Unit" (ie a network "frame") - * - */ - -#define SMB2_HEADER_STRUCTURE_SIZE cpu_to_le16(64) - -struct smb2_sync_hdr { - __le32 ProtocolId; /* 0xFE 'S' 'M' 'B' */ - __le16 StructureSize; /* 64 */ - __le16 CreditCharge; /* MBZ */ - __le32 Status; /* Error from server */ - __le16 Command; - __le16 CreditRequest; /* CreditResponse */ - __le32 Flags; - __le32 NextCommand; - __le64 MessageId; - __le32 ProcessId; - __u32 TreeId; /* opaque - so do not make little endian */ - __u64 SessionId; /* opaque - so do not make little endian */ - __u8 Signature[16]; -} __packed; - /* The total header size for SMB2 read and write */ -#define SMB2_READWRITE_PDU_HEADER_SIZE (48 + sizeof(struct smb2_sync_hdr)) - -struct smb2_sync_pdu { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize2; /* size of wct area (varies, request specific) */ -} __packed; - -#define SMB3_AES_CCM_NONCE 11 -#define SMB3_AES_GCM_NONCE 12 - -/* Transform flags (for 3.0 dialect this flag indicates CCM */ -#define TRANSFORM_FLAG_ENCRYPTED 0x0001 -struct smb2_transform_hdr { - __le32 ProtocolId; /* 0xFD 'S' 'M' 'B' */ - __u8 Signature[16]; - __u8 Nonce[16]; - __le32 OriginalMessageSize; - __u16 Reserved1; - __le16 Flags; /* EncryptionAlgorithm for 3.0, enc enabled for 3.1.1 */ - __u64 SessionId; -} __packed; - -/* See MS-SMB2 2.2.42 */ -struct smb2_compression_transform_hdr_unchained { - __le32 ProtocolId; /* 0xFC 'S' 'M' 'B' */ - __le32 OriginalCompressedSegmentSize; - __le16 CompressionAlgorithm; - __le16 Flags; - __le16 Length; /* if chained it is length, else offset */ -} __packed; - -/* See MS-SMB2 2.2.42.1 */ -#define SMB2_COMPRESSION_FLAG_NONE 0x0000 -#define SMB2_COMPRESSION_FLAG_CHAINED 0x0001 - -struct compression_payload_header { - __le16 CompressionAlgorithm; - __le16 Flags; - __le32 Length; /* length of compressed playload including field below if present */ - /* __le32 OriginalPayloadSize; */ /* optional, present when LZNT1, LZ77, LZ77+Huffman */ -} __packed; - -/* See MS-SMB2 2.2.42.2 */ -struct smb2_compression_transform_hdr_chained { - __le32 ProtocolId; /* 0xFC 'S' 'M' 'B' */ - __le32 OriginalCompressedSegmentSize; - /* struct compression_payload_header[] */ -} __packed; - -/* See MS-SMB2 2.2.42.2.2 */ -struct compression_pattern_payload_v1 { - __le16 Pattern; - __le16 Reserved1; - __le16 Reserved2; - __le32 Repetitions; -} __packed; +#define SMB2_READWRITE_PDU_HEADER_SIZE (48 + sizeof(struct smb2_hdr)) /* See MS-SMB2 2.2.43 */ struct smb2_rdma_transform { @@ -189,17 +45,6 @@ struct smb2_rdma_crypto_transform { /* followed by padding */ } __packed; -/* - * SMB2 flag definitions - */ -#define SMB2_FLAGS_SERVER_TO_REDIR cpu_to_le32(0x00000001) -#define SMB2_FLAGS_ASYNC_COMMAND cpu_to_le32(0x00000002) -#define SMB2_FLAGS_RELATED_OPERATIONS cpu_to_le32(0x00000004) -#define SMB2_FLAGS_SIGNED cpu_to_le32(0x00000008) -#define SMB2_FLAGS_PRIORITY_MASK cpu_to_le32(0x00000070) /* SMB3.1.1 */ -#define SMB2_FLAGS_DFS_OPERATIONS cpu_to_le32(0x10000000) -#define SMB2_FLAGS_REPLAY_OPERATION cpu_to_le32(0x20000000) /* SMB3 & up */ - /* * Definitions for SMB2 Protocol Data Units (network frames) * @@ -211,15 +56,8 @@ struct smb2_rdma_crypto_transform { #define COMPOUND_FID 0xFFFFFFFFFFFFFFFFULL -#define SMB2_ERROR_STRUCTURE_SIZE2 cpu_to_le16(9) - -struct smb2_err_rsp { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; - __le16 Reserved; /* MBZ */ - __le32 ByteCount; /* even if zero, at least one byte follows */ - __u8 ErrorData[1]; /* variable length */ -} __packed; +#define SMB2_SYMLINK_STRUCT_SIZE \ + (sizeof(struct smb2_err_rsp) + sizeof(struct smb2_symlink_err_rsp)) #define SYMLINK_ERROR_TAG 0x4c4d5953 @@ -270,530 +108,6 @@ struct share_redirect_error_context_rsp { /* __u8 ResourceName[] */ /* Name of share as counted Unicode string */ } __packed; -#define SMB2_CLIENT_GUID_SIZE 16 - -struct smb2_negotiate_req { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 36 */ - __le16 DialectCount; - __le16 SecurityMode; - __le16 Reserved; /* MBZ */ - __le32 Capabilities; - __u8 ClientGUID[SMB2_CLIENT_GUID_SIZE]; - /* In SMB3.02 and earlier next three were MBZ le64 ClientStartTime */ - __le32 NegotiateContextOffset; /* SMB3.1.1 only. MBZ earlier */ - __le16 NegotiateContextCount; /* SMB3.1.1 only. MBZ earlier */ - __le16 Reserved2; - __le16 Dialects[4]; /* BB expand this if autonegotiate > 4 dialects */ -} __packed; - -/* Dialects */ -#define SMB10_PROT_ID 0x0000 /* local only, not sent on wire w/CIFS negprot */ -#define SMB20_PROT_ID 0x0202 -#define SMB21_PROT_ID 0x0210 -#define SMB30_PROT_ID 0x0300 -#define SMB302_PROT_ID 0x0302 -#define SMB311_PROT_ID 0x0311 -#define BAD_PROT_ID 0xFFFF - -/* SecurityMode flags */ -#define SMB2_NEGOTIATE_SIGNING_ENABLED 0x0001 -#define SMB2_NEGOTIATE_SIGNING_REQUIRED 0x0002 -#define SMB2_SEC_MODE_FLAGS_ALL 0x0003 - -/* Capabilities flags */ -#define SMB2_GLOBAL_CAP_DFS 0x00000001 -#define SMB2_GLOBAL_CAP_LEASING 0x00000002 /* Resp only New to SMB2.1 */ -#define SMB2_GLOBAL_CAP_LARGE_MTU 0X00000004 /* Resp only New to SMB2.1 */ -#define SMB2_GLOBAL_CAP_MULTI_CHANNEL 0x00000008 /* New to SMB3 */ -#define SMB2_GLOBAL_CAP_PERSISTENT_HANDLES 0x00000010 /* New to SMB3 */ -#define SMB2_GLOBAL_CAP_DIRECTORY_LEASING 0x00000020 /* New to SMB3 */ -#define SMB2_GLOBAL_CAP_ENCRYPTION 0x00000040 /* New to SMB3 */ -/* Internal types */ -#define SMB2_NT_FIND 0x00100000 -#define SMB2_LARGE_FILES 0x00200000 - - -/* Negotiate Contexts - ContextTypes. See MS-SMB2 section 2.2.3.1 for details */ -#define SMB2_PREAUTH_INTEGRITY_CAPABILITIES cpu_to_le16(1) -#define SMB2_ENCRYPTION_CAPABILITIES cpu_to_le16(2) -#define SMB2_COMPRESSION_CAPABILITIES cpu_to_le16(3) -#define SMB2_NETNAME_NEGOTIATE_CONTEXT_ID cpu_to_le16(5) -#define SMB2_TRANSPORT_CAPABILITIES cpu_to_le16(6) -#define SMB2_RDMA_TRANSFORM_CAPABILITIES cpu_to_le16(7) -#define SMB2_SIGNING_CAPABILITIES cpu_to_le16(8) -#define SMB2_POSIX_EXTENSIONS_AVAILABLE cpu_to_le16(0x100) - -struct smb2_neg_context { - __le16 ContextType; - __le16 DataLength; - __le32 Reserved; - /* Followed by array of data. NOTE: some servers require padding to 8 byte boundary */ -} __packed; - -#define SMB311_LINUX_CLIENT_SALT_SIZE 32 -/* Hash Algorithm Types */ -#define SMB2_PREAUTH_INTEGRITY_SHA512 cpu_to_le16(0x0001) -#define SMB2_PREAUTH_HASH_SIZE 64 - -/* - * SaltLength that the server send can be zero, so the only three required - * fields (all __le16) end up six bytes total, so the minimum context data len - * in the response is six bytes which accounts for - * - * HashAlgorithmCount, SaltLength, and 1 HashAlgorithm. - */ -#define MIN_PREAUTH_CTXT_DATA_LEN 6 - -struct smb2_preauth_neg_context { - __le16 ContextType; /* 1 */ - __le16 DataLength; - __le32 Reserved; - __le16 HashAlgorithmCount; /* 1 */ - __le16 SaltLength; - __le16 HashAlgorithms; /* HashAlgorithms[0] since only one defined */ - __u8 Salt[SMB311_LINUX_CLIENT_SALT_SIZE]; -} __packed; - -/* Encryption Algorithms Ciphers */ -#define SMB2_ENCRYPTION_AES128_CCM cpu_to_le16(0x0001) -#define SMB2_ENCRYPTION_AES128_GCM cpu_to_le16(0x0002) -/* we currently do not request AES256_CCM since presumably GCM faster */ -#define SMB2_ENCRYPTION_AES256_CCM cpu_to_le16(0x0003) -#define SMB2_ENCRYPTION_AES256_GCM cpu_to_le16(0x0004) - -/* Min encrypt context data is one cipher so 2 bytes + 2 byte count field */ -#define MIN_ENCRYPT_CTXT_DATA_LEN 4 -struct smb2_encryption_neg_context { - __le16 ContextType; /* 2 */ - __le16 DataLength; - __le32 Reserved; - /* CipherCount usally 2, but can be 3 when AES256-GCM enabled */ - __le16 CipherCount; /* AES128-GCM and AES128-CCM by default */ - __le16 Ciphers[3]; -} __packed; - -/* See MS-SMB2 2.2.3.1.3 */ -#define SMB3_COMPRESS_NONE cpu_to_le16(0x0000) -#define SMB3_COMPRESS_LZNT1 cpu_to_le16(0x0001) -#define SMB3_COMPRESS_LZ77 cpu_to_le16(0x0002) -#define SMB3_COMPRESS_LZ77_HUFF cpu_to_le16(0x0003) -/* Pattern scanning algorithm See MS-SMB2 3.1.4.4.1 */ -#define SMB3_COMPRESS_PATTERN cpu_to_le16(0x0004) /* Pattern_V1 */ - -/* Compression Flags */ -#define SMB2_COMPRESSION_CAPABILITIES_FLAG_NONE cpu_to_le32(0x00000000) -#define SMB2_COMPRESSION_CAPABILITIES_FLAG_CHAINED cpu_to_le32(0x00000001) - -struct smb2_compression_capabilities_context { - __le16 ContextType; /* 3 */ - __le16 DataLength; - __u32 Reserved; - __le16 CompressionAlgorithmCount; - __u16 Padding; - __u32 Flags; - __le16 CompressionAlgorithms[3]; - __u16 Pad; /* Some servers require pad to DataLen multiple of 8 */ - /* Check if pad needed */ -} __packed; - -/* - * For smb2_netname_negotiate_context_id See MS-SMB2 2.2.3.1.4. - * Its struct simply contains NetName, an array of Unicode characters - */ -struct smb2_netname_neg_context { - __le16 ContextType; /* 5 */ - __le16 DataLength; - __le32 Reserved; - __le16 NetName[]; /* hostname of target converted to UCS-2 */ -} __packed; - -/* - * For smb2_transport_capabilities context see MS-SMB2 2.2.3.1.5 - * and 2.2.4.1.5 - */ - -/* Flags */ -#define SMB2_ACCEPT_TRANSFORM_LEVEL_SECURITY 0x00000001 - -struct smb2_transport_capabilities_context { - __le16 ContextType; /* 6 */ - __le16 DataLength; - __u32 Reserved; - __le32 Flags; - __u32 Pad; -} __packed; - -/* - * For rdma transform capabilities context see MS-SMB2 2.2.3.1.6 - * and 2.2.4.1.6 - */ - -/* RDMA Transform IDs */ -#define SMB2_RDMA_TRANSFORM_NONE 0x0000 -#define SMB2_RDMA_TRANSFORM_ENCRYPTION 0x0001 -#define SMB2_RDMA_TRANSFORM_SIGNING 0x0002 - -struct smb2_rdma_transform_capabilities_context { - __le16 ContextType; /* 7 */ - __le16 DataLength; - __u32 Reserved; - __le16 TransformCount; - __u16 Reserved1; - __u32 Reserved2; - __le16 RDMATransformIds[]; -} __packed; - -/* - * For signing capabilities context see MS-SMB2 2.2.3.1.7 - * and 2.2.4.1.7 - */ - -/* Signing algorithms */ -#define SIGNING_ALG_HMAC_SHA256 0 -#define SIGNING_ALG_AES_CMAC 1 -#define SIGNING_ALG_AES_GMAC 2 - -struct smb2_signing_capabilities { - __le16 ContextType; /* 8 */ - __le16 DataLength; - __u32 Reserved; - __le16 SigningAlgorithmCount; - __le16 SigningAlgorithms[]; - /* Followed by padding to 8 byte boundary (required by some servers) */ -} __packed; - -#define POSIX_CTXT_DATA_LEN 16 -struct smb2_posix_neg_context { - __le16 ContextType; /* 0x100 */ - __le16 DataLength; - __le32 Reserved; - __u8 Name[16]; /* POSIX ctxt GUID 93AD25509CB411E7B42383DE968BCD7C */ -} __packed; - -struct smb2_negotiate_rsp { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 65 */ - __le16 SecurityMode; - __le16 DialectRevision; - __le16 NegotiateContextCount; /* Prior to SMB3.1.1 was Reserved & MBZ */ - __u8 ServerGUID[16]; - __le32 Capabilities; - __le32 MaxTransactSize; - __le32 MaxReadSize; - __le32 MaxWriteSize; - __le64 SystemTime; /* MBZ */ - __le64 ServerStartTime; - __le16 SecurityBufferOffset; - __le16 SecurityBufferLength; - __le32 NegotiateContextOffset; /* Pre:SMB3.1.1 was reserved/ignored */ - __u8 Buffer[1]; /* variable length GSS security buffer */ -} __packed; - -/* Flags */ -#define SMB2_SESSION_REQ_FLAG_BINDING 0x01 -#define SMB2_SESSION_REQ_FLAG_ENCRYPT_DATA 0x04 - -struct smb2_sess_setup_req { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 25 */ - __u8 Flags; - __u8 SecurityMode; - __le32 Capabilities; - __le32 Channel; - __le16 SecurityBufferOffset; - __le16 SecurityBufferLength; - __u64 PreviousSessionId; - __u8 Buffer[1]; /* variable length GSS security buffer */ -} __packed; - -/* Currently defined SessionFlags */ -#define SMB2_SESSION_FLAG_IS_GUEST 0x0001 -#define SMB2_SESSION_FLAG_IS_NULL 0x0002 -#define SMB2_SESSION_FLAG_ENCRYPT_DATA 0x0004 -struct smb2_sess_setup_rsp { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 9 */ - __le16 SessionFlags; - __le16 SecurityBufferOffset; - __le16 SecurityBufferLength; - __u8 Buffer[1]; /* variable length GSS security buffer */ -} __packed; - -struct smb2_logoff_req { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 4 */ - __le16 Reserved; -} __packed; - -struct smb2_logoff_rsp { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 4 */ - __le16 Reserved; -} __packed; - -/* Flags/Reserved for SMB3.1.1 */ -#define SMB2_TREE_CONNECT_FLAG_CLUSTER_RECONNECT cpu_to_le16(0x0001) -#define SMB2_TREE_CONNECT_FLAG_REDIRECT_TO_OWNER cpu_to_le16(0x0002) -#define SMB2_TREE_CONNECT_FLAG_EXTENSION_PRESENT cpu_to_le16(0x0004) - -struct smb2_tree_connect_req { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 9 */ - __le16 Flags; /* Reserved MBZ for dialects prior to SMB3.1.1 */ - __le16 PathOffset; - __le16 PathLength; - __u8 Buffer[1]; /* variable length */ -} __packed; - -/* See MS-SMB2 section 2.2.9.2 */ -/* Context Types */ -#define SMB2_RESERVED_TREE_CONNECT_CONTEXT_ID 0x0000 -#define SMB2_REMOTED_IDENTITY_TREE_CONNECT_CONTEXT_ID cpu_to_le16(0x0001) - -struct tree_connect_contexts { - __le16 ContextType; - __le16 DataLength; - __le32 Reserved; - __u8 Data[]; -} __packed; - -/* Remoted identity tree connect context structures - see MS-SMB2 2.2.9.2.1 */ -struct smb3_blob_data { - __le16 BlobSize; - __u8 BlobData[]; -} __packed; - -/* Valid values for Attr */ -#define SE_GROUP_MANDATORY 0x00000001 -#define SE_GROUP_ENABLED_BY_DEFAULT 0x00000002 -#define SE_GROUP_ENABLED 0x00000004 -#define SE_GROUP_OWNER 0x00000008 -#define SE_GROUP_USE_FOR_DENY_ONLY 0x00000010 -#define SE_GROUP_INTEGRITY 0x00000020 -#define SE_GROUP_INTEGRITY_ENABLED 0x00000040 -#define SE_GROUP_RESOURCE 0x20000000 -#define SE_GROUP_LOGON_ID 0xC0000000 - -/* struct sid_attr_data is SidData array in BlobData format then le32 Attr */ - -struct sid_array_data { - __le16 SidAttrCount; - /* SidAttrList - array of sid_attr_data structs */ -} __packed; - -struct luid_attr_data { - -} __packed; - -/* - * struct privilege_data is the same as BLOB_DATA - see MS-SMB2 2.2.9.2.1.5 - * but with size of LUID_ATTR_DATA struct and BlobData set to LUID_ATTR DATA - */ - -struct privilege_array_data { - __le16 PrivilegeCount; - /* array of privilege_data structs */ -} __packed; - -struct remoted_identity_tcon_context { - __le16 TicketType; /* must be 0x0001 */ - __le16 TicketSize; /* total size of this struct */ - __le16 User; /* offset to SID_ATTR_DATA struct with user info */ - __le16 UserName; /* offset to null terminated Unicode username string */ - __le16 Domain; /* offset to null terminated Unicode domain name */ - __le16 Groups; /* offset to SID_ARRAY_DATA struct with group info */ - __le16 RestrictedGroups; /* similar to above */ - __le16 Privileges; /* offset to PRIVILEGE_ARRAY_DATA struct */ - __le16 PrimaryGroup; /* offset to SID_ARRAY_DATA struct */ - __le16 Owner; /* offset to BLOB_DATA struct */ - __le16 DefaultDacl; /* offset to BLOB_DATA struct */ - __le16 DeviceGroups; /* offset to SID_ARRAY_DATA struct */ - __le16 UserClaims; /* offset to BLOB_DATA struct */ - __le16 DeviceClaims; /* offset to BLOB_DATA struct */ - __u8 TicketInfo[]; /* variable length buf - remoted identity data */ -} __packed; - -struct smb2_tree_connect_req_extension { - __le32 TreeConnectContextOffset; - __le16 TreeConnectContextCount; - __u8 Reserved[10]; - __u8 PathName[]; /* variable sized array */ - /* followed by array of TreeConnectContexts */ -} __packed; - -struct smb2_tree_connect_rsp { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 16 */ - __u8 ShareType; /* see below */ - __u8 Reserved; - __le32 ShareFlags; /* see below */ - __le32 Capabilities; /* see below */ - __le32 MaximalAccess; -} __packed; - -/* Possible ShareType values */ -#define SMB2_SHARE_TYPE_DISK 0x01 -#define SMB2_SHARE_TYPE_PIPE 0x02 -#define SMB2_SHARE_TYPE_PRINT 0x03 - -/* - * Possible ShareFlags - exactly one and only one of the first 4 caching flags - * must be set (any of the remaining, SHI1005, flags may be set individually - * or in combination. - */ -#define SMB2_SHAREFLAG_MANUAL_CACHING 0x00000000 -#define SMB2_SHAREFLAG_AUTO_CACHING 0x00000010 -#define SMB2_SHAREFLAG_VDO_CACHING 0x00000020 -#define SMB2_SHAREFLAG_NO_CACHING 0x00000030 -#define SHI1005_FLAGS_DFS 0x00000001 -#define SHI1005_FLAGS_DFS_ROOT 0x00000002 -#define SHI1005_FLAGS_RESTRICT_EXCLUSIVE_OPENS 0x00000100 -#define SHI1005_FLAGS_FORCE_SHARED_DELETE 0x00000200 -#define SHI1005_FLAGS_ALLOW_NAMESPACE_CACHING 0x00000400 -#define SHI1005_FLAGS_ACCESS_BASED_DIRECTORY_ENUM 0x00000800 -#define SHI1005_FLAGS_FORCE_LEVELII_OPLOCK 0x00001000 -#define SHI1005_FLAGS_ENABLE_HASH_V1 0x00002000 -#define SHI1005_FLAGS_ENABLE_HASH_V2 0x00004000 -#define SHI1005_FLAGS_ENCRYPT_DATA 0x00008000 -#define SMB2_SHAREFLAG_IDENTITY_REMOTING 0x00040000 /* 3.1.1 */ -#define SMB2_SHAREFLAG_COMPRESS_DATA 0x00100000 /* 3.1.1 */ -#define SHI1005_FLAGS_ALL 0x0014FF33 - -/* Possible share capabilities */ -#define SMB2_SHARE_CAP_DFS cpu_to_le32(0x00000008) /* all dialects */ -#define SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY cpu_to_le32(0x00000010) /* 3.0 */ -#define SMB2_SHARE_CAP_SCALEOUT cpu_to_le32(0x00000020) /* 3.0 */ -#define SMB2_SHARE_CAP_CLUSTER cpu_to_le32(0x00000040) /* 3.0 */ -#define SMB2_SHARE_CAP_ASYMMETRIC cpu_to_le32(0x00000080) /* 3.02 */ -#define SMB2_SHARE_CAP_REDIRECT_TO_OWNER cpu_to_le32(0x00000100) /* 3.1.1 */ - -struct smb2_tree_disconnect_req { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 4 */ - __le16 Reserved; -} __packed; - -struct smb2_tree_disconnect_rsp { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 4 */ - __le16 Reserved; -} __packed; - -/* File Attrubutes */ -#define FILE_ATTRIBUTE_READONLY 0x00000001 -#define FILE_ATTRIBUTE_HIDDEN 0x00000002 -#define FILE_ATTRIBUTE_SYSTEM 0x00000004 -#define FILE_ATTRIBUTE_DIRECTORY 0x00000010 -#define FILE_ATTRIBUTE_ARCHIVE 0x00000020 -#define FILE_ATTRIBUTE_NORMAL 0x00000080 -#define FILE_ATTRIBUTE_TEMPORARY 0x00000100 -#define FILE_ATTRIBUTE_SPARSE_FILE 0x00000200 -#define FILE_ATTRIBUTE_REPARSE_POINT 0x00000400 -#define FILE_ATTRIBUTE_COMPRESSED 0x00000800 -#define FILE_ATTRIBUTE_OFFLINE 0x00001000 -#define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED 0x00002000 -#define FILE_ATTRIBUTE_ENCRYPTED 0x00004000 -#define FILE_ATTRIBUTE_INTEGRITY_STREAM 0x00008000 -#define FILE_ATTRIBUTE_NO_SCRUB_DATA 0x00020000 - -/* Oplock levels */ -#define SMB2_OPLOCK_LEVEL_NONE 0x00 -#define SMB2_OPLOCK_LEVEL_II 0x01 -#define SMB2_OPLOCK_LEVEL_EXCLUSIVE 0x08 -#define SMB2_OPLOCK_LEVEL_BATCH 0x09 -#define SMB2_OPLOCK_LEVEL_LEASE 0xFF -/* Non-spec internal type */ -#define SMB2_OPLOCK_LEVEL_NOCHANGE 0x99 - -/* Desired Access Flags */ -#define FILE_READ_DATA_LE cpu_to_le32(0x00000001) -#define FILE_WRITE_DATA_LE cpu_to_le32(0x00000002) -#define FILE_APPEND_DATA_LE cpu_to_le32(0x00000004) -#define FILE_READ_EA_LE cpu_to_le32(0x00000008) -#define FILE_WRITE_EA_LE cpu_to_le32(0x00000010) -#define FILE_EXECUTE_LE cpu_to_le32(0x00000020) -#define FILE_READ_ATTRIBUTES_LE cpu_to_le32(0x00000080) -#define FILE_WRITE_ATTRIBUTES_LE cpu_to_le32(0x00000100) -#define FILE_DELETE_LE cpu_to_le32(0x00010000) -#define FILE_READ_CONTROL_LE cpu_to_le32(0x00020000) -#define FILE_WRITE_DAC_LE cpu_to_le32(0x00040000) -#define FILE_WRITE_OWNER_LE cpu_to_le32(0x00080000) -#define FILE_SYNCHRONIZE_LE cpu_to_le32(0x00100000) -#define FILE_ACCESS_SYSTEM_SECURITY_LE cpu_to_le32(0x01000000) -#define FILE_MAXIMAL_ACCESS_LE cpu_to_le32(0x02000000) -#define FILE_GENERIC_ALL_LE cpu_to_le32(0x10000000) -#define FILE_GENERIC_EXECUTE_LE cpu_to_le32(0x20000000) -#define FILE_GENERIC_WRITE_LE cpu_to_le32(0x40000000) -#define FILE_GENERIC_READ_LE cpu_to_le32(0x80000000) - -/* ShareAccess Flags */ -#define FILE_SHARE_READ_LE cpu_to_le32(0x00000001) -#define FILE_SHARE_WRITE_LE cpu_to_le32(0x00000002) -#define FILE_SHARE_DELETE_LE cpu_to_le32(0x00000004) -#define FILE_SHARE_ALL_LE cpu_to_le32(0x00000007) - -/* CreateDisposition Flags */ -#define FILE_SUPERSEDE_LE cpu_to_le32(0x00000000) -#define FILE_OPEN_LE cpu_to_le32(0x00000001) -#define FILE_CREATE_LE cpu_to_le32(0x00000002) -#define FILE_OPEN_IF_LE cpu_to_le32(0x00000003) -#define FILE_OVERWRITE_LE cpu_to_le32(0x00000004) -#define FILE_OVERWRITE_IF_LE cpu_to_le32(0x00000005) - -/* CreateOptions Flags */ -#define FILE_DIRECTORY_FILE_LE cpu_to_le32(0x00000001) -/* same as #define CREATE_NOT_FILE_LE cpu_to_le32(0x00000001) */ -#define FILE_WRITE_THROUGH_LE cpu_to_le32(0x00000002) -#define FILE_SEQUENTIAL_ONLY_LE cpu_to_le32(0x00000004) -#define FILE_NO_INTERMEDIATE_BUFFERRING_LE cpu_to_le32(0x00000008) -#define FILE_SYNCHRONOUS_IO_ALERT_LE cpu_to_le32(0x00000010) -#define FILE_SYNCHRONOUS_IO_NON_ALERT_LE cpu_to_le32(0x00000020) -#define FILE_NON_DIRECTORY_FILE_LE cpu_to_le32(0x00000040) -#define FILE_COMPLETE_IF_OPLOCKED_LE cpu_to_le32(0x00000100) -#define FILE_NO_EA_KNOWLEDGE_LE cpu_to_le32(0x00000200) -#define FILE_RANDOM_ACCESS_LE cpu_to_le32(0x00000800) -#define FILE_DELETE_ON_CLOSE_LE cpu_to_le32(0x00001000) -#define FILE_OPEN_BY_FILE_ID_LE cpu_to_le32(0x00002000) -#define FILE_OPEN_FOR_BACKUP_INTENT_LE cpu_to_le32(0x00004000) -#define FILE_NO_COMPRESSION_LE cpu_to_le32(0x00008000) -#define FILE_RESERVE_OPFILTER_LE cpu_to_le32(0x00100000) -#define FILE_OPEN_REPARSE_POINT_LE cpu_to_le32(0x00200000) -#define FILE_OPEN_NO_RECALL_LE cpu_to_le32(0x00400000) -#define FILE_OPEN_FOR_FREE_SPACE_QUERY_LE cpu_to_le32(0x00800000) - -#define FILE_READ_RIGHTS_LE (FILE_READ_DATA_LE | FILE_READ_EA_LE \ - | FILE_READ_ATTRIBUTES_LE) -#define FILE_WRITE_RIGHTS_LE (FILE_WRITE_DATA_LE | FILE_APPEND_DATA_LE \ - | FILE_WRITE_EA_LE | FILE_WRITE_ATTRIBUTES_LE) -#define FILE_EXEC_RIGHTS_LE (FILE_EXECUTE_LE) - -/* Impersonation Levels. See MS-WPO section 9.7 and MSDN-IMPERS */ -#define IL_ANONYMOUS cpu_to_le32(0x00000000) -#define IL_IDENTIFICATION cpu_to_le32(0x00000001) -#define IL_IMPERSONATION cpu_to_le32(0x00000002) -#define IL_DELEGATE cpu_to_le32(0x00000003) - -/* Create Context Values */ -#define SMB2_CREATE_EA_BUFFER "ExtA" /* extended attributes */ -#define SMB2_CREATE_SD_BUFFER "SecD" /* security descriptor */ -#define SMB2_CREATE_DURABLE_HANDLE_REQUEST "DHnQ" -#define SMB2_CREATE_DURABLE_HANDLE_RECONNECT "DHnC" -#define SMB2_CREATE_ALLOCATION_SIZE "AISi" -#define SMB2_CREATE_QUERY_MAXIMAL_ACCESS_REQUEST "MxAc" -#define SMB2_CREATE_TIMEWARP_REQUEST "TWrp" -#define SMB2_CREATE_QUERY_ON_DISK_ID "QFid" -#define SMB2_CREATE_REQUEST_LEASE "RqLs" -#define SMB2_CREATE_DURABLE_HANDLE_REQUEST_V2 "DH2Q" -#define SMB2_CREATE_DURABLE_HANDLE_RECONNECT_V2 "DH2C" -#define SMB2_CREATE_APP_INSTANCE_ID 0x45BCA66AEFA7F74A9008FA462E144D74 -#define SMB2_CREATE_APP_INSTANCE_VERSION 0xB982D0B73B56074FA07B524A8116A010 -#define SVHDX_OPEN_DEVICE_CONTEX 0x9CCBCF9E04C1E643980E158DA1F6EC83 -#define SMB2_CREATE_TAG_POSIX 0x93AD25509CB411E7B42383DE968BCD7C - -/* Flag (SMB3 open response) values */ -#define SMB2_CREATE_FLAG_REPARSEPOINT 0x01 - /* * Maximum number of iovs we need for an open/create request. * [0] : struct smb2_create_req @@ -807,26 +121,6 @@ struct smb2_tree_disconnect_rsp { */ #define SMB2_CREATE_IOV_SIZE 8 -struct smb2_create_req { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 57 */ - __u8 SecurityFlags; - __u8 RequestedOplockLevel; - __le32 ImpersonationLevel; - __le64 SmbCreateFlags; - __le64 Reserved; - __le32 DesiredAccess; - __le32 FileAttributes; - __le32 ShareAccess; - __le32 CreateDisposition; - __le32 CreateOptions; - __le16 NameOffset; - __le16 NameLength; - __le32 CreateContextsOffset; - __le32 CreateContextsLength; - __u8 Buffer[]; -} __packed; - /* * Maximum size of a SMB2_CREATE response is 64 (smb2 header) + * 88 (fixed part of create response) + 520 (path) + 208 (contexts) + @@ -834,100 +128,10 @@ struct smb2_create_req { */ #define MAX_SMB2_CREATE_RESPONSE_SIZE 880 -struct smb2_create_rsp { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 89 */ - __u8 OplockLevel; - __u8 Flag; /* 0x01 if reparse point */ - __le32 CreateAction; - __le64 CreationTime; - __le64 LastAccessTime; - __le64 LastWriteTime; - __le64 ChangeTime; - __le64 AllocationSize; - __le64 EndofFile; - __le32 FileAttributes; - __le32 Reserved2; - __u64 PersistentFileId; /* opaque endianness */ - __u64 VolatileFileId; /* opaque endianness */ - __le32 CreateContextsOffset; - __le32 CreateContextsLength; - __u8 Buffer[1]; -} __packed; - -struct create_context { - __le32 Next; - __le16 NameOffset; - __le16 NameLength; - __le16 Reserved; - __le16 DataOffset; - __le32 DataLength; - __u8 Buffer[]; -} __packed; - #define SMB2_LEASE_READ_CACHING_HE 0x01 #define SMB2_LEASE_HANDLE_CACHING_HE 0x02 #define SMB2_LEASE_WRITE_CACHING_HE 0x04 -#define SMB2_LEASE_NONE cpu_to_le32(0x00) -#define SMB2_LEASE_READ_CACHING cpu_to_le32(0x01) -#define SMB2_LEASE_HANDLE_CACHING cpu_to_le32(0x02) -#define SMB2_LEASE_WRITE_CACHING cpu_to_le32(0x04) - -#define SMB2_LEASE_FLAG_BREAK_IN_PROGRESS cpu_to_le32(0x00000002) -#define SMB2_LEASE_FLAG_PARENT_LEASE_KEY_SET cpu_to_le32(0x00000004) - -#define SMB2_LEASE_KEY_SIZE 16 - -struct lease_context { - u8 LeaseKey[SMB2_LEASE_KEY_SIZE]; - __le32 LeaseState; - __le32 LeaseFlags; - __le64 LeaseDuration; -} __packed; - -struct lease_context_v2 { - u8 LeaseKey[SMB2_LEASE_KEY_SIZE]; - __le32 LeaseState; - __le32 LeaseFlags; - __le64 LeaseDuration; - __le64 ParentLeaseKeyLow; - __le64 ParentLeaseKeyHigh; - __le16 Epoch; - __le16 Reserved; -} __packed; - -struct create_lease { - struct create_context ccontext; - __u8 Name[8]; - struct lease_context lcontext; -} __packed; - -struct create_lease_v2 { - struct create_context ccontext; - __u8 Name[8]; - struct lease_context_v2 lcontext; - __u8 Pad[4]; -} __packed; - -struct create_durable { - struct create_context ccontext; - __u8 Name[8]; - union { - __u8 Reserved[16]; - struct { - __u64 PersistentFileId; - __u64 VolatileFileId; - } Fid; - } Data; -} __packed; - -struct create_posix { - struct create_context ccontext; - __u8 Name[16]; - __le32 Mode; - __u32 Reserved; -} __packed; /* See MS-SMB2 2.2.13.2.11 */ /* Flags */ @@ -955,15 +159,6 @@ struct durable_reconnect_context_v2 { __le32 Flags; /* see above DHANDLE_FLAG_PERSISTENT */ } __packed; -/* See MS-SMB2 2.2.14.2.9 */ -struct create_on_disk_id { - struct create_context ccontext; - __u8 Name[8]; - __le64 DiskFileId; - __le64 VolumeId; - __u32 Reserved[4]; -} __packed; - /* See MS-SMB2 2.2.14.2.12 */ struct durable_reconnect_context_v2_rsp { __le32 Timeout; @@ -1017,12 +212,6 @@ struct copychunk_ioctl { __u32 Reserved2; } __packed; -/* this goes in the ioctl buffer when doing FSCTL_SET_ZERO_DATA */ -struct file_zero_data_information { - __le64 FileOffset; - __le64 BeyondFinalZero; -} __packed; - struct copychunk_ioctl_rsp { __le32 ChunksWritten; __le32 ChunkBytesWritten; @@ -1054,80 +243,6 @@ struct get_retrieval_pointers_refcount_rsp { struct smb3_extents extents[]; } __packed; -struct fsctl_set_integrity_information_req { - __le16 ChecksumAlgorithm; - __le16 Reserved; - __le32 Flags; -} __packed; - -struct fsctl_get_integrity_information_rsp { - __le16 ChecksumAlgorithm; - __le16 Reserved; - __le32 Flags; - __le32 ChecksumChunkSizeInBytes; - __le32 ClusterSizeInBytes; -} __packed; - -struct file_allocated_range_buffer { - __le64 file_offset; - __le64 length; -} __packed; - -/* Integrity ChecksumAlgorithm choices for above */ -#define CHECKSUM_TYPE_NONE 0x0000 -#define CHECKSUM_TYPE_CRC64 0x0002 -#define CHECKSUM_TYPE_UNCHANGED 0xFFFF /* set only */ - -/* Integrity flags for above */ -#define FSCTL_INTEGRITY_FLAG_CHECKSUM_ENFORCEMENT_OFF 0x00000001 - -/* Reparse structures - see MS-FSCC 2.1.2 */ - -/* struct fsctl_reparse_info_req is empty, only response structs (see below) */ - -struct reparse_data_buffer { - __le32 ReparseTag; - __le16 ReparseDataLength; - __u16 Reserved; - __u8 DataBuffer[]; /* Variable Length */ -} __packed; - -struct reparse_guid_data_buffer { - __le32 ReparseTag; - __le16 ReparseDataLength; - __u16 Reserved; - __u8 ReparseGuid[16]; - __u8 DataBuffer[]; /* Variable Length */ -} __packed; - -struct reparse_mount_point_data_buffer { - __le32 ReparseTag; - __le16 ReparseDataLength; - __u16 Reserved; - __le16 SubstituteNameOffset; - __le16 SubstituteNameLength; - __le16 PrintNameOffset; - __le16 PrintNameLength; - __u8 PathBuffer[]; /* Variable Length */ -} __packed; - -#define SYMLINK_FLAG_RELATIVE 0x00000001 - -struct reparse_symlink_data_buffer { - __le32 ReparseTag; - __le16 ReparseDataLength; - __u16 Reserved; - __le16 SubstituteNameOffset; - __le16 SubstituteNameLength; - __le16 PrintNameOffset; - __le16 PrintNameLength; - __le32 Flags; - __u8 PathBuffer[]; /* Variable Length */ -} __packed; - -/* See MS-FSCC 2.1.2.6 and cifspdu.h for struct reparse_posix_data */ - - /* See MS-DFSC 2.2.2 */ struct fsctl_get_dfs_referral_req { __le16 MaxReferralLevel; @@ -1143,22 +258,6 @@ struct network_resiliency_req { } __packed; /* There is no buffer for the response ie no struct network_resiliency_rsp */ - -struct validate_negotiate_info_req { - __le32 Capabilities; - __u8 Guid[SMB2_CLIENT_GUID_SIZE]; - __le16 SecurityMode; - __le16 DialectCount; - __le16 Dialects[4]; /* BB expand this if autonegotiate > 4 dialects */ -} __packed; - -struct validate_negotiate_info_rsp { - __le32 Capabilities; - __u8 Guid[SMB2_CLIENT_GUID_SIZE]; - __le16 SecurityMode; - __le16 Dialect; /* Dialect in use for the connection */ -} __packed; - #define RSS_CAPABLE cpu_to_le32(0x00000001) #define RDMA_CAPABLE cpu_to_le32(0x00000002) @@ -1194,14 +293,6 @@ struct compress_ioctl { __le16 CompressionState; /* See cifspdu.h for possible flag values */ } __packed; -struct duplicate_extents_to_file { - __u64 PersistentFileHandle; /* source file handle, opaque endianness */ - __u64 VolatileFileHandle; - __le64 SourceFileOffset; - __le64 TargetFileOffset; - __le64 ByteCount; /* Bytes to be copied */ -} __packed; - /* * Maximum number of iovs we need for an ioctl request. * [0] : struct smb2_ioctl_req @@ -1209,525 +300,11 @@ struct duplicate_extents_to_file { */ #define SMB2_IOCTL_IOV_SIZE 2 -struct smb2_ioctl_req { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 57 */ - __u16 Reserved; - __le32 CtlCode; - __u64 PersistentFileId; /* opaque endianness */ - __u64 VolatileFileId; /* opaque endianness */ - __le32 InputOffset; - __le32 InputCount; - __le32 MaxInputResponse; - __le32 OutputOffset; - __le32 OutputCount; - __le32 MaxOutputResponse; - __le32 Flags; - __u32 Reserved2; - __u8 Buffer[]; -} __packed; - -struct smb2_ioctl_rsp { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 57 */ - __u16 Reserved; - __le32 CtlCode; - __u64 PersistentFileId; /* opaque endianness */ - __u64 VolatileFileId; /* opaque endianness */ - __le32 InputOffset; - __le32 InputCount; - __le32 OutputOffset; - __le32 OutputCount; - __le32 Flags; - __u32 Reserved2; - /* char * buffer[] */ -} __packed; - -/* Currently defined values for close flags */ -#define SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB cpu_to_le16(0x0001) -struct smb2_close_req { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 24 */ - __le16 Flags; - __le32 Reserved; - __u64 PersistentFileId; /* opaque endianness */ - __u64 VolatileFileId; /* opaque endianness */ -} __packed; - /* - * Maximum size of a SMB2_CLOSE response is 64 (smb2 header) + 60 (data) - */ -#define MAX_SMB2_CLOSE_RESPONSE_SIZE 124 - -struct smb2_close_rsp { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* 60 */ - __le16 Flags; - __le32 Reserved; - __le64 CreationTime; - __le64 LastAccessTime; - __le64 LastWriteTime; - __le64 ChangeTime; - __le64 AllocationSize; /* Beginning of FILE_STANDARD_INFO equivalent */ - __le64 EndOfFile; - __le32 Attributes; -} __packed; - -struct smb2_flush_req { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 24 */ - __le16 Reserved1; - __le32 Reserved2; - __u64 PersistentFileId; /* opaque endianness */ - __u64 VolatileFileId; /* opaque endianness */ -} __packed; - -struct smb2_flush_rsp { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; - __le16 Reserved; -} __packed; - -/* For read request Flags field below, following flag is defined for SMB3.02 */ -#define SMB2_READFLAG_READ_UNBUFFERED 0x01 -#define SMB2_READFLAG_REQUEST_COMPRESSED 0x02 /* See MS-SMB2 2.2.19 */ - -/* Channel field for read and write: exactly one of following flags can be set*/ -#define SMB2_CHANNEL_NONE cpu_to_le32(0x00000000) -#define SMB2_CHANNEL_RDMA_V1 cpu_to_le32(0x00000001) /* SMB3 or later */ -#define SMB2_CHANNEL_RDMA_V1_INVALIDATE cpu_to_le32(0x00000002) /* >= SMB3.02 */ -#define SMB2_CHANNEL_RDMA_TRANSFORM cpu_to_le32(0x00000003) /* >= SMB3.02, only used on write */ - -/* SMB2 read request without RFC1001 length at the beginning */ -struct smb2_read_plain_req { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 49 */ - __u8 Padding; /* offset from start of SMB2 header to place read */ - __u8 Flags; /* MBZ unless SMB3.02 or later */ - __le32 Length; - __le64 Offset; - __u64 PersistentFileId; /* opaque endianness */ - __u64 VolatileFileId; /* opaque endianness */ - __le32 MinimumCount; - __le32 Channel; /* MBZ except for SMB3 or later */ - __le32 RemainingBytes; - __le16 ReadChannelInfoOffset; - __le16 ReadChannelInfoLength; - __u8 Buffer[1]; -} __packed; - -/* Read flags */ -#define SMB2_READFLAG_RESPONSE_NONE 0x00000000 -#define SMB2_READFLAG_RESPONSE_RDMA_TRANSFORM 0x00000001 - -struct smb2_read_rsp { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 17 */ - __u8 DataOffset; - __u8 Reserved; - __le32 DataLength; - __le32 DataRemaining; - __u32 Flags; - __u8 Buffer[1]; -} __packed; - -/* For write request Flags field below the following flags are defined: */ -#define SMB2_WRITEFLAG_WRITE_THROUGH 0x00000001 /* SMB2.1 or later */ -#define SMB2_WRITEFLAG_WRITE_UNBUFFERED 0x00000002 /* SMB3.02 or later */ - -struct smb2_write_req { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 49 */ - __le16 DataOffset; /* offset from start of SMB2 header to write data */ - __le32 Length; - __le64 Offset; - __u64 PersistentFileId; /* opaque endianness */ - __u64 VolatileFileId; /* opaque endianness */ - __le32 Channel; /* MBZ unless SMB3.02 or later */ - __le32 RemainingBytes; - __le16 WriteChannelInfoOffset; - __le16 WriteChannelInfoLength; - __le32 Flags; - __u8 Buffer[1]; -} __packed; - -struct smb2_write_rsp { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 17 */ - __u8 DataOffset; - __u8 Reserved; - __le32 DataLength; - __le32 DataRemaining; - __u32 Reserved2; - __u8 Buffer[1]; -} __packed; - -/* notify flags */ -#define SMB2_WATCH_TREE 0x0001 - -/* notify completion filter flags. See MS-FSCC 2.6 and MS-SMB2 2.2.35 */ -#define FILE_NOTIFY_CHANGE_FILE_NAME 0x00000001 -#define FILE_NOTIFY_CHANGE_DIR_NAME 0x00000002 -#define FILE_NOTIFY_CHANGE_ATTRIBUTES 0x00000004 -#define FILE_NOTIFY_CHANGE_SIZE 0x00000008 -#define FILE_NOTIFY_CHANGE_LAST_WRITE 0x00000010 -#define FILE_NOTIFY_CHANGE_LAST_ACCESS 0x00000020 -#define FILE_NOTIFY_CHANGE_CREATION 0x00000040 -#define FILE_NOTIFY_CHANGE_EA 0x00000080 -#define FILE_NOTIFY_CHANGE_SECURITY 0x00000100 -#define FILE_NOTIFY_CHANGE_STREAM_NAME 0x00000200 -#define FILE_NOTIFY_CHANGE_STREAM_SIZE 0x00000400 -#define FILE_NOTIFY_CHANGE_STREAM_WRITE 0x00000800 - -struct smb2_change_notify_req { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; - __le16 Flags; - __le32 OutputBufferLength; - __u64 PersistentFileId; /* opaque endianness */ - __u64 VolatileFileId; /* opaque endianness */ - __le32 CompletionFilter; - __u32 Reserved; -} __packed; - -struct smb2_change_notify_rsp { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 9 */ - __le16 OutputBufferOffset; - __le32 OutputBufferLength; - __u8 Buffer[1]; /* array of file notify structs */ -} __packed; - -#define SMB2_LOCKFLAG_SHARED_LOCK 0x0001 -#define SMB2_LOCKFLAG_EXCLUSIVE_LOCK 0x0002 -#define SMB2_LOCKFLAG_UNLOCK 0x0004 -#define SMB2_LOCKFLAG_FAIL_IMMEDIATELY 0x0010 - -struct smb2_lock_element { - __le64 Offset; - __le64 Length; - __le32 Flags; - __le32 Reserved; -} __packed; - -struct smb2_lock_req { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 48 */ - __le16 LockCount; - /* - * The least significant four bits are the index, the other 28 bits are - * the lock sequence number (0 to 64). See MS-SMB2 2.2.26 - */ - __le32 LockSequenceNumber; - __u64 PersistentFileId; /* opaque endianness */ - __u64 VolatileFileId; /* opaque endianness */ - /* Followed by at least one */ - struct smb2_lock_element locks[1]; -} __packed; - -struct smb2_lock_rsp { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 4 */ - __le16 Reserved; -} __packed; - -struct smb2_echo_req { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 4 */ - __u16 Reserved; -} __packed; - -struct smb2_echo_rsp { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 4 */ - __u16 Reserved; -} __packed; - -/* search (query_directory) Flags field */ -#define SMB2_RESTART_SCANS 0x01 -#define SMB2_RETURN_SINGLE_ENTRY 0x02 -#define SMB2_INDEX_SPECIFIED 0x04 -#define SMB2_REOPEN 0x10 - -#define SMB2_QUERY_DIRECTORY_IOV_SIZE 2 - -/* - * Valid FileInformation classes. - * - * Note that these are a subset of the (file) QUERY_INFO levels defined - * later in this file (but since QUERY_DIRECTORY uses equivalent numbers - * we do not redefine them here) - * - * FileDirectoryInfomation 0x01 - * FileFullDirectoryInformation 0x02 - * FileIdFullDirectoryInformation 0x26 - * FileBothDirectoryInformation 0x03 - * FileIdBothDirectoryInformation 0x25 - * FileNamesInformation 0x0C - * FileIdExtdDirectoryInformation 0x3C - */ - -struct smb2_query_directory_req { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 33 */ - __u8 FileInformationClass; - __u8 Flags; - __le32 FileIndex; - __u64 PersistentFileId; /* opaque endianness */ - __u64 VolatileFileId; /* opaque endianness */ - __le16 FileNameOffset; - __le16 FileNameLength; - __le32 OutputBufferLength; - __u8 Buffer[1]; -} __packed; - -struct smb2_query_directory_rsp { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 9 */ - __le16 OutputBufferOffset; - __le32 OutputBufferLength; - __u8 Buffer[1]; -} __packed; - -/* Possible InfoType values */ -#define SMB2_O_INFO_FILE 0x01 -#define SMB2_O_INFO_FILESYSTEM 0x02 -#define SMB2_O_INFO_SECURITY 0x03 -#define SMB2_O_INFO_QUOTA 0x04 - -/* Security info type additionalinfo flags. See MS-SMB2 (2.2.37) or MS-DTYP */ -#define OWNER_SECINFO 0x00000001 -#define GROUP_SECINFO 0x00000002 -#define DACL_SECINFO 0x00000004 -#define SACL_SECINFO 0x00000008 -#define LABEL_SECINFO 0x00000010 -#define ATTRIBUTE_SECINFO 0x00000020 -#define SCOPE_SECINFO 0x00000040 -#define BACKUP_SECINFO 0x00010000 -#define UNPROTECTED_SACL_SECINFO 0x10000000 -#define UNPROTECTED_DACL_SECINFO 0x20000000 -#define PROTECTED_SACL_SECINFO 0x40000000 -#define PROTECTED_DACL_SECINFO 0x80000000 - -/* Flags used for FileFullEAinfo */ -#define SL_RESTART_SCAN 0x00000001 -#define SL_RETURN_SINGLE_ENTRY 0x00000002 -#define SL_INDEX_SPECIFIED 0x00000004 - -struct smb2_query_info_req { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 41 */ - __u8 InfoType; - __u8 FileInfoClass; - __le32 OutputBufferLength; - __le16 InputBufferOffset; - __u16 Reserved; - __le32 InputBufferLength; - __le32 AdditionalInformation; - __le32 Flags; - __u64 PersistentFileId; /* opaque endianness */ - __u64 VolatileFileId; /* opaque endianness */ - __u8 Buffer[1]; -} __packed; - -struct smb2_query_info_rsp { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 9 */ - __le16 OutputBufferOffset; - __le32 OutputBufferLength; - __u8 Buffer[1]; -} __packed; - -/* - * Maximum number of iovs we need for a set-info request. - * The largest one is rename/hardlink - * [0] : struct smb2_set_info_req + smb2_file_[rename|link]_info - * [1] : path - * [2] : compound padding - */ -#define SMB2_SET_INFO_IOV_SIZE 3 - -struct smb2_set_info_req { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 33 */ - __u8 InfoType; - __u8 FileInfoClass; - __le32 BufferLength; - __le16 BufferOffset; - __u16 Reserved; - __le32 AdditionalInformation; - __u64 PersistentFileId; /* opaque endianness */ - __u64 VolatileFileId; /* opaque endianness */ - __u8 Buffer[1]; -} __packed; - -struct smb2_set_info_rsp { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 2 */ -} __packed; - -struct smb2_oplock_break { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 24 */ - __u8 OplockLevel; - __u8 Reserved; - __le32 Reserved2; - __u64 PersistentFid; - __u64 VolatileFid; -} __packed; - -#define SMB2_NOTIFY_BREAK_LEASE_FLAG_ACK_REQUIRED cpu_to_le32(0x01) - -struct smb2_lease_break { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 44 */ - __le16 Epoch; - __le32 Flags; - __u8 LeaseKey[16]; - __le32 CurrentLeaseState; - __le32 NewLeaseState; - __le32 BreakReason; - __le32 AccessMaskHint; - __le32 ShareMaskHint; -} __packed; - -struct smb2_lease_ack { - struct smb2_sync_hdr sync_hdr; - __le16 StructureSize; /* Must be 36 */ - __le16 Reserved; - __le32 Flags; - __u8 LeaseKey[16]; - __le32 LeaseState; - __le64 LeaseDuration; -} __packed; - -/* - * PDU infolevel structure definitions + * PDU query infolevel structure definitions * BB consider moving to a different header */ -/* File System Information Classes */ -#define FS_VOLUME_INFORMATION 1 /* Query */ -#define FS_LABEL_INFORMATION 2 /* Local only */ -#define FS_SIZE_INFORMATION 3 /* Query */ -#define FS_DEVICE_INFORMATION 4 /* Query */ -#define FS_ATTRIBUTE_INFORMATION 5 /* Query */ -#define FS_CONTROL_INFORMATION 6 /* Query, Set */ -#define FS_FULL_SIZE_INFORMATION 7 /* Query */ -#define FS_OBJECT_ID_INFORMATION 8 /* Query, Set */ -#define FS_DRIVER_PATH_INFORMATION 9 /* Local only */ -#define FS_VOLUME_FLAGS_INFORMATION 10 /* Local only */ -#define FS_SECTOR_SIZE_INFORMATION 11 /* SMB3 or later. Query */ -#define FS_POSIX_INFORMATION 100 /* SMB3.1.1 POSIX. Query */ - -struct smb2_fs_full_size_info { - __le64 TotalAllocationUnits; - __le64 CallerAvailableAllocationUnits; - __le64 ActualAvailableAllocationUnits; - __le32 SectorsPerAllocationUnit; - __le32 BytesPerSector; -} __packed; - -#define SSINFO_FLAGS_ALIGNED_DEVICE 0x00000001 -#define SSINFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE 0x00000002 -#define SSINFO_FLAGS_NO_SEEK_PENALTY 0x00000004 -#define SSINFO_FLAGS_TRIM_ENABLED 0x00000008 - -/* sector size info struct */ -struct smb3_fs_ss_info { - __le32 LogicalBytesPerSector; - __le32 PhysicalBytesPerSectorForAtomicity; - __le32 PhysicalBytesPerSectorForPerf; - __le32 FileSystemEffectivePhysicalBytesPerSectorForAtomicity; - __le32 Flags; - __le32 ByteOffsetForSectorAlignment; - __le32 ByteOffsetForPartitionAlignment; -} __packed; - -/* volume info struct - see MS-FSCC 2.5.9 */ -#define MAX_VOL_LABEL_LEN 32 -struct smb3_fs_vol_info { - __le64 VolumeCreationTime; - __u32 VolumeSerialNumber; - __le32 VolumeLabelLength; /* includes trailing null */ - __u8 SupportsObjects; /* True if eg like NTFS, supports objects */ - __u8 Reserved; - __u8 VolumeLabel[]; /* variable len */ -} __packed; - -/* partial list of QUERY INFO levels */ -#define FILE_DIRECTORY_INFORMATION 1 -#define FILE_FULL_DIRECTORY_INFORMATION 2 -#define FILE_BOTH_DIRECTORY_INFORMATION 3 -#define FILE_BASIC_INFORMATION 4 -#define FILE_STANDARD_INFORMATION 5 -#define FILE_INTERNAL_INFORMATION 6 -#define FILE_EA_INFORMATION 7 -#define FILE_ACCESS_INFORMATION 8 -#define FILE_NAME_INFORMATION 9 -#define FILE_RENAME_INFORMATION 10 -#define FILE_LINK_INFORMATION 11 -#define FILE_NAMES_INFORMATION 12 -#define FILE_DISPOSITION_INFORMATION 13 -#define FILE_POSITION_INFORMATION 14 -#define FILE_FULL_EA_INFORMATION 15 -#define FILE_MODE_INFORMATION 16 -#define FILE_ALIGNMENT_INFORMATION 17 -#define FILE_ALL_INFORMATION 18 -#define FILE_ALLOCATION_INFORMATION 19 -#define FILE_END_OF_FILE_INFORMATION 20 -#define FILE_ALTERNATE_NAME_INFORMATION 21 -#define FILE_STREAM_INFORMATION 22 -#define FILE_PIPE_INFORMATION 23 -#define FILE_PIPE_LOCAL_INFORMATION 24 -#define FILE_PIPE_REMOTE_INFORMATION 25 -#define FILE_MAILSLOT_QUERY_INFORMATION 26 -#define FILE_MAILSLOT_SET_INFORMATION 27 -#define FILE_COMPRESSION_INFORMATION 28 -#define FILE_OBJECT_ID_INFORMATION 29 -/* Number 30 not defined in documents */ -#define FILE_MOVE_CLUSTER_INFORMATION 31 -#define FILE_QUOTA_INFORMATION 32 -#define FILE_REPARSE_POINT_INFORMATION 33 -#define FILE_NETWORK_OPEN_INFORMATION 34 -#define FILE_ATTRIBUTE_TAG_INFORMATION 35 -#define FILE_TRACKING_INFORMATION 36 -#define FILEID_BOTH_DIRECTORY_INFORMATION 37 -#define FILEID_FULL_DIRECTORY_INFORMATION 38 -#define FILE_VALID_DATA_LENGTH_INFORMATION 39 -#define FILE_SHORT_NAME_INFORMATION 40 -#define FILE_SFIO_RESERVE_INFORMATION 44 -#define FILE_SFIO_VOLUME_INFORMATION 45 -#define FILE_HARD_LINK_INFORMATION 46 -#define FILE_NORMALIZED_NAME_INFORMATION 48 -#define FILEID_GLOBAL_TX_DIRECTORY_INFORMATION 50 -#define FILE_STANDARD_LINK_INFORMATION 54 -#define FILE_ID_INFORMATION 59 -#define FILE_ID_EXTD_DIRECTORY_INFORMATION 60 - -struct smb2_file_internal_info { - __le64 IndexNumber; -} __packed; /* level 6 Query */ - -struct smb2_file_rename_info { /* encoding of request for level 10 */ - __u8 ReplaceIfExists; /* 1 = replace existing target with new */ - /* 0 = fail if target already exists */ - __u8 Reserved[7]; - __u64 RootDirectory; /* MBZ for network operations (why says spec?) */ - __le32 FileNameLength; - char FileName[]; /* New name to be assigned */ - /* padding - overall struct size must be >= 24 so filename + pad >= 6 */ -} __packed; /* level 10 Set */ - -struct smb2_file_link_info { /* encoding of request for level 11 */ - __u8 ReplaceIfExists; /* 1 = replace existing link with new */ - /* 0 = fail if link already exists */ - __u8 Reserved[7]; - __u64 RootDirectory; /* MBZ for network operations (why says spec?) */ - __le32 FileNameLength; - char FileName[]; /* Name to be assigned to new link */ -} __packed; /* level 11 Set */ - struct smb2_file_full_ea_info { /* encoding of response for level 15 */ __le32 next_entry_offset; __u8 flags; @@ -1736,38 +313,6 @@ struct smb2_file_full_ea_info { /* encoding of response for level 15 */ char ea_data[]; /* \0 terminated name plus value */ } __packed; /* level 15 Set */ -/* - * This level 18, although with struct with same name is different from cifs - * level 0x107. Level 0x107 has an extra u64 between AccessFlags and - * CurrentByteOffset. - */ -struct smb2_file_all_info { /* data block encoding of response to level 18 */ - __le64 CreationTime; /* Beginning of FILE_BASIC_INFO equivalent */ - __le64 LastAccessTime; - __le64 LastWriteTime; - __le64 ChangeTime; - __le32 Attributes; - __u32 Pad1; /* End of FILE_BASIC_INFO_INFO equivalent */ - __le64 AllocationSize; /* Beginning of FILE_STANDARD_INFO equivalent */ - __le64 EndOfFile; /* size ie offset to first free byte in file */ - __le32 NumberOfLinks; /* hard links */ - __u8 DeletePending; - __u8 Directory; - __u16 Pad2; /* End of FILE_STANDARD_INFO equivalent */ - __le64 IndexNumber; - __le32 EASize; - __le32 AccessFlags; - __le64 CurrentByteOffset; - __le32 Mode; - __le32 AlignmentRequirement; - __le32 FileNameLength; - char FileName[1]; -} __packed; /* level 18 Query */ - -struct smb2_file_eof_info { /* encoding of request for level 10 */ - __le64 EndOfFile; /* new end of file value */ -} __packed; /* level 20 Set */ - struct smb2_file_reparse_point_info { __le64 IndexNumber; __le32 Tag; @@ -1806,7 +351,7 @@ struct smb2_file_id_extd_directory_info { __le32 EaSize; /* EA size */ __le32 ReparsePointTag; /* valid if FILE_ATTR_REPARSE_POINT set in FileAttributes */ __le64 UniqueId; /* inode num - le since Samba puts ino in low 32 bit */ - char FileName[1]; + char FileName[]; } __packed; /* level 60 */ extern char smb2_padding[7]; @@ -1820,6 +365,8 @@ struct create_posix_rsp { struct cifs_sid group; /* var-sized on the wire */ } __packed; +#define SMB2_QUERY_DIRECTORY_IOV_SIZE 2 + /* * SMB2-only POSIX info level for query dir * @@ -1851,31 +398,6 @@ struct smb2_posix_info { */ } __packed; -/* Level 100 query info */ -struct smb311_posix_qinfo { - __le64 CreationTime; - __le64 LastAccessTime; - __le64 LastWriteTime; - __le64 ChangeTime; - __le64 EndOfFile; - __le64 AllocationSize; - __le32 DosAttributes; - __le64 Inode; - __le32 DeviceId; - __le32 Zero; - /* beginning of POSIX Create Context Response */ - __le32 HardLinks; - __le32 ReparseTag; - __le32 Mode; - u8 Sids[]; - /* - * var sized owner SID - * var sized group SID - * le32 filenamelength - * u8 filename[] - */ -} __packed; - /* * Parsed version of the above struct. Allows direct access to the * variable length fields diff --git a/fs/cifs/smb2proto.h b/fs/cifs/smb2proto.h index 547945443fa7d..d5d7ffb7711c4 100644 --- a/fs/cifs/smb2proto.h +++ b/fs/cifs/smb2proto.h @@ -23,9 +23,9 @@ struct smb_rqst; extern int map_smb2_to_linux_error(char *buf, bool log_err); extern int smb2_check_message(char *buf, unsigned int length, struct TCP_Server_Info *server); -extern unsigned int smb2_calc_size(void *buf, struct TCP_Server_Info *server); +extern unsigned int smb2_calc_size(void *buf); extern char *smb2_get_data_area_len(int *off, int *len, - struct smb2_sync_hdr *shdr); + struct smb2_hdr *shdr); extern __le16 *cifs_convert_path_to_utf16(const char *from, struct cifs_sb_info *cifs_sb); @@ -53,26 +53,12 @@ extern bool smb2_is_valid_oplock_break(char *buffer, struct TCP_Server_Info *srv); extern int smb3_handle_read_data(struct TCP_Server_Info *server, struct mid_q_entry *mid); - -extern int open_cached_dir(unsigned int xid, struct cifs_tcon *tcon, - const char *path, - struct cifs_sb_info *cifs_sb, - struct cached_fid **cfid); -extern int open_cached_dir_by_dentry(struct cifs_tcon *tcon, - struct dentry *dentry, - struct cached_fid **cfid); -extern void close_cached_dir(struct cached_fid *cfid); -extern void close_cached_dir_lease(struct cached_fid *cfid); -extern void close_cached_dir_lease_locked(struct cached_fid *cfid); -extern void move_smb2_info_to_cifs(FILE_ALL_INFO *dst, - struct smb2_file_all_info *src); extern int smb2_query_reparse_tag(const unsigned int xid, struct cifs_tcon *tcon, struct cifs_sb_info *cifs_sb, const char *path, __u32 *reparse_tag); -extern int smb2_query_path_info(const unsigned int xid, struct cifs_tcon *tcon, - struct cifs_sb_info *cifs_sb, - const char *full_path, FILE_ALL_INFO *data, - bool *adjust_tz, bool *symlink); +int smb2_query_path_info(const unsigned int xid, struct cifs_tcon *tcon, + struct cifs_sb_info *cifs_sb, const char *full_path, + struct cifs_open_info_data *data, bool *adjust_tz, bool *reparse); extern int smb2_set_path_size(const unsigned int xid, struct cifs_tcon *tcon, const char *full_path, __u64 size, struct cifs_sb_info *cifs_sb, bool set_alloc); @@ -105,9 +91,9 @@ extern int smb3_query_mf_symlink(unsigned int xid, struct cifs_tcon *tcon, struct cifs_sb_info *cifs_sb, const unsigned char *path, char *pbuf, unsigned int *pbytes_read); -extern int smb2_open_file(const unsigned int xid, - struct cifs_open_parms *oparms, - __u32 *oplock, FILE_ALL_INFO *buf); +int smb2_parse_symlink_response(struct cifs_sb_info *cifs_sb, const struct kvec *iov, char **path); +int smb2_open_file(const unsigned int xid, struct cifs_open_parms *oparms, __u32 *oplock, + void *buf); extern int smb2_unlock_range(struct cifsFileInfo *cfile, struct file_lock *flock, const unsigned int xid); extern int smb2_push_mandatory_locks(struct cifsFileInfo *cfile); @@ -123,8 +109,11 @@ extern void smb2_set_related(struct smb_rqst *rqst); * SMB2 Worker functions - most of protocol specific implementation details * are contained within these calls. */ -extern int SMB2_negotiate(const unsigned int xid, struct cifs_ses *ses); +extern int SMB2_negotiate(const unsigned int xid, + struct cifs_ses *ses, + struct TCP_Server_Info *server); extern int SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses, + struct TCP_Server_Info *server, const struct nls_table *nls_cp); extern int SMB2_logoff(const unsigned int xid, struct cifs_ses *ses); extern int SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, @@ -144,18 +133,19 @@ extern int SMB2_open_init(struct cifs_tcon *tcon, extern void SMB2_open_free(struct smb_rqst *rqst); extern int SMB2_ioctl(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid, u64 volatile_fid, u32 opcode, - bool is_fsctl, char *in_data, u32 indatalen, u32 maxoutlen, + char *in_data, u32 indatalen, u32 maxoutlen, char **out_data, u32 *plen /* returned data len */); extern int SMB2_ioctl_init(struct cifs_tcon *tcon, struct TCP_Server_Info *server, struct smb_rqst *rqst, u64 persistent_fid, u64 volatile_fid, u32 opcode, - bool is_fsctl, char *in_data, u32 indatalen, + char *in_data, u32 indatalen, __u32 max_response_size); extern void SMB2_ioctl_free(struct smb_rqst *rqst); extern int SMB2_change_notify(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid, u64 volatile_fid, bool watch_tree, - u32 completion_filter); + u32 completion_filter, u32 max_out_data_len, + char **out_data, u32 *plen /* returned data len */); extern int __SMB2_close(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid, u64 volatile_fid, @@ -276,17 +266,21 @@ extern void smb2_copy_fs_info_to_kstatfs( struct kstatfs *kst); extern int smb311_crypto_shash_allocate(struct TCP_Server_Info *server); extern int smb311_update_preauth_hash(struct cifs_ses *ses, + struct TCP_Server_Info *server, struct kvec *iov, int nvec); extern int smb2_query_info_compound(const unsigned int xid, struct cifs_tcon *tcon, - __le16 *utf16_path, u32 desired_access, + const char *path, u32 desired_access, u32 class, u32 type, u32 output_len, struct kvec *rsp, int *buftype, struct cifs_sb_info *cifs_sb); /* query path info from the server using SMB311 POSIX extensions*/ -extern int smb311_posix_query_path_info(const unsigned int xid, struct cifs_tcon *tcon, - struct cifs_sb_info *sb, const char *path, struct smb311_posix_qinfo *qinf, - bool *adjust_tx, bool *symlink); +int smb311_posix_query_path_info(const unsigned int xid, struct cifs_tcon *tcon, + struct cifs_sb_info *cifs_sb, const char *full_path, + struct cifs_open_info_data *data, + struct cifs_sid *owner, + struct cifs_sid *group, + bool *adjust_tz, bool *reparse); int posix_info_parse(const void *beg, const void *end, struct smb2_posix_info_parsed *out); int posix_info_sid_size(const void *beg, const void *end); diff --git a/fs/cifs/smb2transport.c b/fs/cifs/smb2transport.c index 390cc5e8c7467..21fc6d84e396d 100644 --- a/fs/cifs/smb2transport.c +++ b/fs/cifs/smb2transport.c @@ -19,7 +19,6 @@ #include #include #include -#include "smb2pdu.h" #include "cifsglob.h" #include "cifsproto.h" #include "smb2proto.h" @@ -33,19 +32,17 @@ smb3_crypto_shash_allocate(struct TCP_Server_Info *server) struct cifs_secmech *p = &server->secmech; int rc; - rc = cifs_alloc_hash("hmac(sha256)", - &p->hmacsha256, - &p->sdeschmacsha256); + rc = cifs_alloc_hash("hmac(sha256)", &p->hmacsha256); if (rc) goto err; - rc = cifs_alloc_hash("cmac(aes)", &p->cmacaes, &p->sdesccmacaes); + rc = cifs_alloc_hash("cmac(aes)", &p->aes_cmac); if (rc) goto err; return 0; err: - cifs_free_hash(&p->hmacsha256, &p->sdeschmacsha256); + cifs_free_hash(&p->hmacsha256); return rc; } @@ -55,25 +52,23 @@ smb311_crypto_shash_allocate(struct TCP_Server_Info *server) struct cifs_secmech *p = &server->secmech; int rc = 0; - rc = cifs_alloc_hash("hmac(sha256)", - &p->hmacsha256, - &p->sdeschmacsha256); + rc = cifs_alloc_hash("hmac(sha256)", &p->hmacsha256); if (rc) return rc; - rc = cifs_alloc_hash("cmac(aes)", &p->cmacaes, &p->sdesccmacaes); + rc = cifs_alloc_hash("cmac(aes)", &p->aes_cmac); if (rc) goto err; - rc = cifs_alloc_hash("sha512", &p->sha512, &p->sdescsha512); + rc = cifs_alloc_hash("sha512", &p->sha512); if (rc) goto err; return 0; err: - cifs_free_hash(&p->cmacaes, &p->sdesccmacaes); - cifs_free_hash(&p->hmacsha256, &p->sdeschmacsha256); + cifs_free_hash(&p->aes_cmac); + cifs_free_hash(&p->hmacsha256); return rc; } @@ -82,32 +77,42 @@ static int smb2_get_sign_key(__u64 ses_id, struct TCP_Server_Info *server, u8 *key) { struct cifs_chan *chan; + struct TCP_Server_Info *pserver; struct cifs_ses *ses = NULL; - struct TCP_Server_Info *it = NULL; int i; int rc = 0; + bool is_binding = false; spin_lock(&cifs_tcp_ses_lock); - list_for_each_entry(it, &cifs_tcp_ses_list, tcp_ses_list) { - list_for_each_entry(ses, &it->smb_ses_list, smb_ses_list) { - if (ses->Suid == ses_id) - goto found; - } + /* If server is a channel, select the primary channel */ + pserver = CIFS_SERVER_IS_CHAN(server) ? server->primary_server : server; + + list_for_each_entry(ses, &pserver->smb_ses_list, smb_ses_list) { + if (ses->Suid == ses_id) + goto found; } - cifs_server_dbg(VFS, "%s: Could not find session 0x%llx\n", + trace_smb3_ses_not_found(ses_id); + cifs_server_dbg(FYI, "%s: Could not find session 0x%llx\n", __func__, ses_id); rc = -ENOENT; goto out; found: - if (ses->binding) { + spin_lock(&ses->ses_lock); + spin_lock(&ses->chan_lock); + + is_binding = (cifs_chan_needs_reconnect(ses, server) && + ses->ses_status == SES_GOOD); + if (is_binding) { /* * If we are in the process of binding a new channel * to an existing session, use the master connection * session key */ memcpy(key, ses->smb3signingkey, SMB3_SIGN_KEY_SIZE); + spin_unlock(&ses->chan_lock); + spin_unlock(&ses->ses_lock); goto out; } @@ -119,9 +124,13 @@ int smb2_get_sign_key(__u64 ses_id, struct TCP_Server_Info *server, u8 *key) chan = ses->chans + i; if (chan->server == server) { memcpy(key, chan->signkey, SMB3_SIGN_KEY_SIZE); + spin_unlock(&ses->chan_lock); + spin_unlock(&ses->ses_lock); goto out; } } + spin_unlock(&ses->chan_lock); + spin_unlock(&ses->ses_lock); cifs_dbg(VFS, "%s: Could not find channel signing key for session 0x%llx\n", @@ -136,12 +145,23 @@ int smb2_get_sign_key(__u64 ses_id, struct TCP_Server_Info *server, u8 *key) static struct cifs_ses * smb2_find_smb_ses_unlocked(struct TCP_Server_Info *server, __u64 ses_id) { + struct TCP_Server_Info *pserver; struct cifs_ses *ses; - list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) { + /* If server is a channel, select the primary channel */ + pserver = CIFS_SERVER_IS_CHAN(server) ? server->primary_server : server; + + list_for_each_entry(ses, &pserver->smb_ses_list, smb_ses_list) { if (ses->Suid != ses_id) continue; - ++ses->ses_count; + + spin_lock(&ses->ses_lock); + if (ses->ses_status == SES_EXITING) { + spin_unlock(&ses->ses_lock); + continue; + } + cifs_smb_ses_inc_refcount(ses); + spin_unlock(&ses->ses_lock); return ses; } @@ -213,14 +233,12 @@ smb2_calc_signature(struct smb_rqst *rqst, struct TCP_Server_Info *server, unsigned char smb2_signature[SMB2_HMACSHA256_SIZE]; unsigned char *sigptr = smb2_signature; struct kvec *iov = rqst->rq_iov; - struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)iov[0].iov_base; + struct smb2_hdr *shdr = (struct smb2_hdr *)iov[0].iov_base; struct cifs_ses *ses; - struct shash_desc *shash; - struct crypto_shash *hash; - struct sdesc *sdesc = NULL; + struct shash_desc *shash = NULL; struct smb_rqst drqst; - ses = smb2_find_smb_ses(server, shdr->SessionId); + ses = smb2_find_smb_ses(server, le64_to_cpu(shdr->SessionId)); if (unlikely(!ses)) { cifs_server_dbg(VFS, "%s: Could not find session\n", __func__); return -ENOENT; @@ -230,19 +248,17 @@ smb2_calc_signature(struct smb_rqst *rqst, struct TCP_Server_Info *server, memset(shdr->Signature, 0x0, SMB2_SIGNATURE_SIZE); if (allocate_crypto) { - rc = cifs_alloc_hash("hmac(sha256)", &hash, &sdesc); + rc = cifs_alloc_hash("hmac(sha256)", &shash); if (rc) { cifs_server_dbg(VFS, "%s: sha256 alloc failed\n", __func__); goto out; } - shash = &sdesc->shash; } else { - hash = server->secmech.hmacsha256; - shash = &server->secmech.sdeschmacsha256->shash; + shash = server->secmech.hmacsha256; } - rc = crypto_shash_setkey(hash, ses->auth_key.response, + rc = crypto_shash_setkey(shash->tfm, ses->auth_key.response, SMB2_NTLMV2_SESSKEY_SIZE); if (rc) { cifs_server_dbg(VFS, @@ -284,7 +300,7 @@ smb2_calc_signature(struct smb_rqst *rqst, struct TCP_Server_Info *server, out: if (allocate_crypto) - cifs_free_hash(&hash, &sdesc); + cifs_free_hash(&shash); if (ses) cifs_put_smb_ses(ses); return rc; @@ -311,42 +327,38 @@ static int generate_key(struct cifs_ses *ses, struct kvec label, goto smb3signkey_ret; } - rc = crypto_shash_setkey(server->secmech.hmacsha256, + rc = crypto_shash_setkey(server->secmech.hmacsha256->tfm, ses->auth_key.response, SMB2_NTLMV2_SESSKEY_SIZE); if (rc) { cifs_server_dbg(VFS, "%s: Could not set with session key\n", __func__); goto smb3signkey_ret; } - rc = crypto_shash_init(&server->secmech.sdeschmacsha256->shash); + rc = crypto_shash_init(server->secmech.hmacsha256); if (rc) { cifs_server_dbg(VFS, "%s: Could not init sign hmac\n", __func__); goto smb3signkey_ret; } - rc = crypto_shash_update(&server->secmech.sdeschmacsha256->shash, - i, 4); + rc = crypto_shash_update(server->secmech.hmacsha256, i, 4); if (rc) { cifs_server_dbg(VFS, "%s: Could not update with n\n", __func__); goto smb3signkey_ret; } - rc = crypto_shash_update(&server->secmech.sdeschmacsha256->shash, - label.iov_base, label.iov_len); + rc = crypto_shash_update(server->secmech.hmacsha256, label.iov_base, label.iov_len); if (rc) { cifs_server_dbg(VFS, "%s: Could not update with label\n", __func__); goto smb3signkey_ret; } - rc = crypto_shash_update(&server->secmech.sdeschmacsha256->shash, - &zero, 1); + rc = crypto_shash_update(server->secmech.hmacsha256, &zero, 1); if (rc) { cifs_server_dbg(VFS, "%s: Could not update with zero\n", __func__); goto smb3signkey_ret; } - rc = crypto_shash_update(&server->secmech.sdeschmacsha256->shash, - context.iov_base, context.iov_len); + rc = crypto_shash_update(server->secmech.hmacsha256, context.iov_base, context.iov_len); if (rc) { cifs_server_dbg(VFS, "%s: Could not update with context\n", __func__); goto smb3signkey_ret; @@ -354,19 +366,16 @@ static int generate_key(struct cifs_ses *ses, struct kvec label, if ((server->cipher_type == SMB2_ENCRYPTION_AES256_CCM) || (server->cipher_type == SMB2_ENCRYPTION_AES256_GCM)) { - rc = crypto_shash_update(&server->secmech.sdeschmacsha256->shash, - L256, 4); + rc = crypto_shash_update(server->secmech.hmacsha256, L256, 4); } else { - rc = crypto_shash_update(&server->secmech.sdeschmacsha256->shash, - L128, 4); + rc = crypto_shash_update(server->secmech.hmacsha256, L128, 4); } if (rc) { cifs_server_dbg(VFS, "%s: Could not update with L\n", __func__); goto smb3signkey_ret; } - rc = crypto_shash_final(&server->secmech.sdeschmacsha256->shash, - hashptr); + rc = crypto_shash_final(server->secmech.hmacsha256, hashptr); if (rc) { cifs_server_dbg(VFS, "%s: Could not generate sha256 hash\n", __func__); goto smb3signkey_ret; @@ -391,12 +400,22 @@ struct derivation_triplet { static int generate_smb3signingkey(struct cifs_ses *ses, + struct TCP_Server_Info *server, const struct derivation_triplet *ptriplet) { int rc; -#ifdef CONFIG_CIFS_DEBUG_DUMP_KEYS - struct TCP_Server_Info *server = ses->server; -#endif + bool is_binding = false; + int chan_index = 0; + + spin_lock(&ses->ses_lock); + spin_lock(&ses->chan_lock); + is_binding = (cifs_chan_needs_reconnect(ses, server) && + ses->ses_status == SES_GOOD); + + chan_index = cifs_ses_get_chan_index(ses, server); + /* TODO: introduce ref counting for channels when the can be freed */ + spin_unlock(&ses->chan_lock); + spin_unlock(&ses->ses_lock); /* * All channels use the same encryption/decryption keys but @@ -408,10 +427,10 @@ generate_smb3signingkey(struct cifs_ses *ses, * master connection signing key stored in the session */ - if (ses->binding) { + if (is_binding) { rc = generate_key(ses, ptriplet->signing.label, ptriplet->signing.context, - cifs_ses_binding_channel(ses)->signkey, + ses->chans[chan_index].signkey, SMB3_SIGN_KEY_SIZE); if (rc) return rc; @@ -423,13 +442,18 @@ generate_smb3signingkey(struct cifs_ses *ses, if (rc) return rc; - memcpy(ses->chans[0].signkey, ses->smb3signingkey, + /* safe to access primary channel, since it will never go away */ + spin_lock(&ses->chan_lock); + memcpy(ses->chans[chan_index].signkey, ses->smb3signingkey, SMB3_SIGN_KEY_SIZE); + spin_unlock(&ses->chan_lock); rc = generate_key(ses, ptriplet->encryption.label, ptriplet->encryption.context, ses->smb3encryptionkey, SMB3_ENC_DEC_KEY_SIZE); + if (rc) + return rc; rc = generate_key(ses, ptriplet->decryption.label, ptriplet->decryption.context, ses->smb3decryptionkey, @@ -438,9 +462,6 @@ generate_smb3signingkey(struct cifs_ses *ses, return rc; } - if (rc) - return rc; - #ifdef CONFIG_CIFS_DEBUG_DUMP_KEYS cifs_dbg(VFS, "%s: dumping generated AES session keys\n", __func__); /* @@ -471,7 +492,8 @@ generate_smb3signingkey(struct cifs_ses *ses, } int -generate_smb30signingkey(struct cifs_ses *ses) +generate_smb30signingkey(struct cifs_ses *ses, + struct TCP_Server_Info *server) { struct derivation_triplet triplet; @@ -495,11 +517,12 @@ generate_smb30signingkey(struct cifs_ses *ses) d->context.iov_base = "ServerOut"; d->context.iov_len = 10; - return generate_smb3signingkey(ses, &triplet); + return generate_smb3signingkey(ses, server, &triplet); } int -generate_smb311signingkey(struct cifs_ses *ses) +generate_smb311signingkey(struct cifs_ses *ses, + struct TCP_Server_Info *server) { struct derivation_triplet triplet; @@ -523,7 +546,7 @@ generate_smb311signingkey(struct cifs_ses *ses) d->context.iov_base = ses->preauth_sha_hash; d->context.iov_len = 64; - return generate_smb3signingkey(ses, &triplet); + return generate_smb3signingkey(ses, server, &triplet); } int @@ -534,41 +557,36 @@ smb3_calc_signature(struct smb_rqst *rqst, struct TCP_Server_Info *server, unsigned char smb3_signature[SMB2_CMACAES_SIZE]; unsigned char *sigptr = smb3_signature; struct kvec *iov = rqst->rq_iov; - struct smb2_sync_hdr *shdr = (struct smb2_sync_hdr *)iov[0].iov_base; - struct shash_desc *shash; - struct crypto_shash *hash; - struct sdesc *sdesc = NULL; + struct smb2_hdr *shdr = (struct smb2_hdr *)iov[0].iov_base; + struct shash_desc *shash = NULL; struct smb_rqst drqst; u8 key[SMB3_SIGN_KEY_SIZE]; - rc = smb2_get_sign_key(shdr->SessionId, server, key); + rc = smb2_get_sign_key(le64_to_cpu(shdr->SessionId), server, key); if (unlikely(rc)) { - cifs_server_dbg(VFS, "%s: Could not get signing key\n", __func__); + cifs_server_dbg(FYI, "%s: Could not get signing key\n", __func__); return rc; } if (allocate_crypto) { - rc = cifs_alloc_hash("cmac(aes)", &hash, &sdesc); + rc = cifs_alloc_hash("cmac(aes)", &shash); if (rc) return rc; - - shash = &sdesc->shash; } else { - hash = server->secmech.cmacaes; - shash = &server->secmech.sdesccmacaes->shash; + shash = server->secmech.aes_cmac; } memset(smb3_signature, 0x0, SMB2_CMACAES_SIZE); memset(shdr->Signature, 0x0, SMB2_SIGNATURE_SIZE); - rc = crypto_shash_setkey(hash, key, SMB2_CMACAES_SIZE); + rc = crypto_shash_setkey(shash->tfm, key, SMB2_CMACAES_SIZE); if (rc) { cifs_server_dbg(VFS, "%s: Could not set key for cmac aes\n", __func__); goto out; } /* - * we already allocate sdesccmacaes when we init smb3 signing key, + * we already allocate aes_cmac when we init smb3 signing key, * so unlike smb2 case we do not have to check here if secmech are * initialized */ @@ -604,7 +622,7 @@ smb3_calc_signature(struct smb_rqst *rqst, struct TCP_Server_Info *server, out: if (allocate_crypto) - cifs_free_hash(&hash, &sdesc); + cifs_free_hash(&shash); return rc; } @@ -613,12 +631,12 @@ static int smb2_sign_rqst(struct smb_rqst *rqst, struct TCP_Server_Info *server) { int rc = 0; - struct smb2_sync_hdr *shdr; + struct smb2_hdr *shdr; struct smb2_sess_setup_req *ssr; bool is_binding; bool is_signed; - shdr = (struct smb2_sync_hdr *)rqst->rq_iov[0].iov_base; + shdr = (struct smb2_hdr *)rqst->rq_iov[0].iov_base; ssr = (struct smb2_sess_setup_req *)shdr; is_binding = shdr->Command == SMB2_SESSION_SETUP && @@ -627,8 +645,13 @@ smb2_sign_rqst(struct smb_rqst *rqst, struct TCP_Server_Info *server) if (!is_signed) return 0; - if (server->tcpStatus == CifsNeedNegotiate) + spin_lock(&server->srv_lock); + if (server->ops->need_neg && + server->ops->need_neg(server)) { + spin_unlock(&server->srv_lock); return 0; + } + spin_unlock(&server->srv_lock); if (!is_binding && !server->session_estab) { strncpy(shdr->Signature, "BSRSPYL", 8); return 0; @@ -644,8 +667,8 @@ smb2_verify_signature(struct smb_rqst *rqst, struct TCP_Server_Info *server) { unsigned int rc; char server_response_sig[SMB2_SIGNATURE_SIZE]; - struct smb2_sync_hdr *shdr = - (struct smb2_sync_hdr *)rqst->rq_iov[0].iov_base; + struct smb2_hdr *shdr = + (struct smb2_hdr *)rqst->rq_iov[0].iov_base; if ((shdr->Command == SMB2_NEGOTIATE) || (shdr->Command == SMB2_SESSION_SETUP) || @@ -691,7 +714,7 @@ smb2_verify_signature(struct smb_rqst *rqst, struct TCP_Server_Info *server) */ static inline void smb2_seq_num_into_buf(struct TCP_Server_Info *server, - struct smb2_sync_hdr *shdr) + struct smb2_hdr *shdr) { unsigned int i, num = le16_to_cpu(shdr->CreditCharge); @@ -702,7 +725,7 @@ smb2_seq_num_into_buf(struct TCP_Server_Info *server, } static struct mid_q_entry * -smb2_mid_entry_alloc(const struct smb2_sync_hdr *shdr, +smb2_mid_entry_alloc(const struct smb2_hdr *shdr, struct TCP_Server_Info *server) { struct mid_q_entry *temp; @@ -732,48 +755,62 @@ smb2_mid_entry_alloc(const struct smb2_sync_hdr *shdr, temp->callback = cifs_wake_up_task; temp->callback_data = current; - atomic_inc(&midCount); + atomic_inc(&mid_count); temp->mid_state = MID_REQUEST_ALLOCATED; - trace_smb3_cmd_enter(shdr->TreeId, shdr->SessionId, - le16_to_cpu(shdr->Command), temp->mid); + trace_smb3_cmd_enter(le32_to_cpu(shdr->Id.SyncId.TreeId), + le64_to_cpu(shdr->SessionId), + le16_to_cpu(shdr->Command), temp->mid); return temp; } static int smb2_get_mid_entry(struct cifs_ses *ses, struct TCP_Server_Info *server, - struct smb2_sync_hdr *shdr, struct mid_q_entry **mid) + struct smb2_hdr *shdr, struct mid_q_entry **mid) { - if (server->tcpStatus == CifsExiting) + spin_lock(&server->srv_lock); + if (server->tcpStatus == CifsExiting) { + spin_unlock(&server->srv_lock); return -ENOENT; + } if (server->tcpStatus == CifsNeedReconnect) { + spin_unlock(&server->srv_lock); cifs_dbg(FYI, "tcp session dead - return to caller to retry\n"); return -EAGAIN; } if (server->tcpStatus == CifsNeedNegotiate && - shdr->Command != SMB2_NEGOTIATE) + shdr->Command != SMB2_NEGOTIATE) { + spin_unlock(&server->srv_lock); return -EAGAIN; + } + spin_unlock(&server->srv_lock); - if (ses->status == CifsNew) { + spin_lock(&ses->ses_lock); + if (ses->ses_status == SES_NEW) { if ((shdr->Command != SMB2_SESSION_SETUP) && - (shdr->Command != SMB2_NEGOTIATE)) + (shdr->Command != SMB2_NEGOTIATE)) { + spin_unlock(&ses->ses_lock); return -EAGAIN; + } /* else ok - we are setting up session */ } - if (ses->status == CifsExiting) { - if (shdr->Command != SMB2_LOGOFF) + if (ses->ses_status == SES_EXITING) { + if (shdr->Command != SMB2_LOGOFF) { + spin_unlock(&ses->ses_lock); return -EAGAIN; + } /* else ok - we are shutting down the session */ } + spin_unlock(&ses->ses_lock); *mid = smb2_mid_entry_alloc(shdr, server); if (*mid == NULL) return -ENOMEM; - spin_lock(&GlobalMid_Lock); + spin_lock(&server->mid_lock); list_add_tail(&(*mid)->qhead, &server->pending_mid_q); - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->mid_lock); return 0; } @@ -809,8 +846,8 @@ smb2_setup_request(struct cifs_ses *ses, struct TCP_Server_Info *server, struct smb_rqst *rqst) { int rc; - struct smb2_sync_hdr *shdr = - (struct smb2_sync_hdr *)rqst->rq_iov[0].iov_base; + struct smb2_hdr *shdr = + (struct smb2_hdr *)rqst->rq_iov[0].iov_base; struct mid_q_entry *mid; smb2_seq_num_into_buf(server, shdr); @@ -824,7 +861,7 @@ smb2_setup_request(struct cifs_ses *ses, struct TCP_Server_Info *server, rc = smb2_sign_rqst(rqst, server); if (rc) { revert_current_mid_from_hdr(server, shdr); - cifs_delete_mid(mid); + delete_mid(mid); return ERR_PTR(rc); } @@ -835,13 +872,17 @@ struct mid_q_entry * smb2_setup_async_request(struct TCP_Server_Info *server, struct smb_rqst *rqst) { int rc; - struct smb2_sync_hdr *shdr = - (struct smb2_sync_hdr *)rqst->rq_iov[0].iov_base; + struct smb2_hdr *shdr = + (struct smb2_hdr *)rqst->rq_iov[0].iov_base; struct mid_q_entry *mid; + spin_lock(&server->srv_lock); if (server->tcpStatus == CifsNeedNegotiate && - shdr->Command != SMB2_NEGOTIATE) + shdr->Command != SMB2_NEGOTIATE) { + spin_unlock(&server->srv_lock); return ERR_PTR(-EAGAIN); + } + spin_unlock(&server->srv_lock); smb2_seq_num_into_buf(server, shdr); @@ -854,7 +895,7 @@ smb2_setup_async_request(struct TCP_Server_Info *server, struct smb_rqst *rqst) rc = smb2_sign_rqst(rqst, server); if (rc) { revert_current_mid_from_hdr(server, shdr); - DeleteMidQEntry(mid); + release_mid(mid); return ERR_PTR(rc); } @@ -866,7 +907,7 @@ smb3_crypto_aead_allocate(struct TCP_Server_Info *server) { struct crypto_aead *tfm; - if (!server->secmech.ccmaesencrypt) { + if (!server->secmech.enc) { if ((server->cipher_type == SMB2_ENCRYPTION_AES128_GCM) || (server->cipher_type == SMB2_ENCRYPTION_AES256_GCM)) tfm = crypto_alloc_aead("gcm(aes)", 0, 0); @@ -877,23 +918,23 @@ smb3_crypto_aead_allocate(struct TCP_Server_Info *server) __func__); return PTR_ERR(tfm); } - server->secmech.ccmaesencrypt = tfm; + server->secmech.enc = tfm; } - if (!server->secmech.ccmaesdecrypt) { + if (!server->secmech.dec) { if ((server->cipher_type == SMB2_ENCRYPTION_AES128_GCM) || (server->cipher_type == SMB2_ENCRYPTION_AES256_GCM)) tfm = crypto_alloc_aead("gcm(aes)", 0, 0); else tfm = crypto_alloc_aead("ccm(aes)", 0, 0); if (IS_ERR(tfm)) { - crypto_free_aead(server->secmech.ccmaesencrypt); - server->secmech.ccmaesencrypt = NULL; + crypto_free_aead(server->secmech.enc); + server->secmech.enc = NULL; cifs_server_dbg(VFS, "%s: Failed to alloc decrypt aead\n", __func__); return PTR_ERR(tfm); } - server->secmech.ccmaesdecrypt = tfm; + server->secmech.dec = tfm; } return 0; diff --git a/fs/cifs/smbdirect.c b/fs/cifs/smbdirect.c index a9a5d27b8d38b..93cbf5b03a316 100644 --- a/fs/cifs/smbdirect.c +++ b/fs/cifs/smbdirect.c @@ -90,7 +90,7 @@ int smbd_max_send_size = 1364; int smbd_max_fragmented_recv_size = 1024 * 1024; /* The maximum single-message size which can be received */ -int smbd_max_receive_size = 8192; +int smbd_max_receive_size = 1364; /* The timeout to initiate send of a keepalive message on idle */ int smbd_keep_alive_interval = 120; @@ -99,7 +99,7 @@ int smbd_keep_alive_interval = 120; * User configurable initial values for RDMA transport * The actual values used may be lower and are limited to hardware capabilities */ -/* Default maximum number of SGEs in a RDMA write/read */ +/* Default maximum number of pages in a single RDMA write/read */ int smbd_max_frmr_depth = 2048; /* If payload is less than this byte, use RDMA send/recv not read/write */ @@ -270,7 +270,7 @@ static void send_done(struct ib_cq *cq, struct ib_wc *wc) struct smbd_request *request = container_of(wc->wr_cqe, struct smbd_request, cqe); - log_rdma_send(INFO, "smbd_request %p completed wc->status=%d\n", + log_rdma_send(INFO, "smbd_request 0x%p completed wc->status=%d\n", request, wc->status); if (wc->status != IB_WC_SUCCESS || wc->opcode != IB_WC_SEND) { @@ -448,7 +448,7 @@ static void recv_done(struct ib_cq *cq, struct ib_wc *wc) struct smbd_connection *info = response->info; int data_length = 0; - log_rdma_recv(INFO, "response=%p type=%d wc status=%d wc opcode %d byte_len=%d pkey_index=%x\n", + log_rdma_recv(INFO, "response=0x%p type=%d wc status=%d wc opcode %d byte_len=%d pkey_index=%u\n", response, response->type, wc->status, wc->opcode, wc->byte_len, wc->pkey_index); @@ -723,7 +723,7 @@ static int smbd_post_send_negotiate_req(struct smbd_connection *info) send_wr.opcode = IB_WR_SEND; send_wr.send_flags = IB_SEND_SIGNALED; - log_rdma_send(INFO, "sge addr=%llx length=%x lkey=%x\n", + log_rdma_send(INFO, "sge addr=0x%llx length=%u lkey=0x%x\n", request->sge[0].addr, request->sge[0].length, request->sge[0].lkey); @@ -792,7 +792,7 @@ static int smbd_post_send(struct smbd_connection *info, for (i = 0; i < request->num_sge; i++) { log_rdma_send(INFO, - "rdma_request sge[%d] addr=%llu length=%u\n", + "rdma_request sge[%d] addr=0x%llx length=%u\n", i, request->sge[i].addr, request->sge[i].length); ib_dma_sync_single_for_device( info->id->device, @@ -1017,9 +1017,9 @@ static int smbd_post_send_data( { int i; u32 data_length = 0; - struct scatterlist sgl[SMBDIRECT_MAX_SGE]; + struct scatterlist sgl[SMBDIRECT_MAX_SEND_SGE - 1]; - if (n_vec > SMBDIRECT_MAX_SGE) { + if (n_vec > SMBDIRECT_MAX_SEND_SGE - 1) { cifs_dbg(VFS, "Can't fit data to SGL, n_vec=%d\n", n_vec); return -EINVAL; } @@ -1079,7 +1079,7 @@ static int smbd_negotiate(struct smbd_connection *info) response->type = SMBD_NEGOTIATE_RESP; rc = smbd_post_recv(info, response); - log_rdma_event(INFO, "smbd_post_recv rc=%d iov.addr=%llx iov.length=%x iov.lkey=%x\n", + log_rdma_event(INFO, "smbd_post_recv rc=%d iov.addr=0x%llx iov.length=%u iov.lkey=0x%x\n", rc, response->sge.addr, response->sge.length, response->sge.lkey); if (rc) @@ -1350,7 +1350,7 @@ void smbd_destroy(struct TCP_Server_Info *server) wait_event(info->wait_send_pending, atomic_read(&info->send_pending) == 0); - /* It's not posssible for upper layer to get to reassembly */ + /* It's not possible for upper layer to get to reassembly */ log_rdma_event(INFO, "drain the reassembly queue\n"); do { spin_lock_irqsave(&info->reassembly_queue_lock, flags); @@ -1382,9 +1382,9 @@ void smbd_destroy(struct TCP_Server_Info *server) log_rdma_event(INFO, "freeing mr list\n"); wake_up_interruptible_all(&info->wait_mr); while (atomic_read(&info->mr_used_count)) { - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); msleep(1000); - mutex_lock(&server->srv_mutex); + cifs_server_lock(server); } destroy_mr_list(info); @@ -1540,7 +1540,7 @@ static struct smbd_connection *_smbd_get_connection( if (smbd_send_credit_target > info->id->device->attrs.max_cqe || smbd_send_credit_target > info->id->device->attrs.max_qp_wr) { - log_rdma_event(ERR, "consider lowering send_credit_target = %d. Possible CQE overrun, device reporting max_cpe %d max_qp_wr %d\n", + log_rdma_event(ERR, "consider lowering send_credit_target = %d. Possible CQE overrun, device reporting max_cqe %d max_qp_wr %d\n", smbd_send_credit_target, info->id->device->attrs.max_cqe, info->id->device->attrs.max_qp_wr); @@ -1549,7 +1549,7 @@ static struct smbd_connection *_smbd_get_connection( if (smbd_receive_credit_max > info->id->device->attrs.max_cqe || smbd_receive_credit_max > info->id->device->attrs.max_qp_wr) { - log_rdma_event(ERR, "consider lowering receive_credit_max = %d. Possible CQE overrun, device reporting max_cpe %d max_qp_wr %d\n", + log_rdma_event(ERR, "consider lowering receive_credit_max = %d. Possible CQE overrun, device reporting max_cqe %d max_qp_wr %d\n", smbd_receive_credit_max, info->id->device->attrs.max_cqe, info->id->device->attrs.max_qp_wr); @@ -1563,17 +1563,15 @@ static struct smbd_connection *_smbd_get_connection( info->max_receive_size = smbd_max_receive_size; info->keep_alive_interval = smbd_keep_alive_interval; - if (info->id->device->attrs.max_send_sge < SMBDIRECT_MAX_SGE) { + if (info->id->device->attrs.max_send_sge < SMBDIRECT_MAX_SEND_SGE || + info->id->device->attrs.max_recv_sge < SMBDIRECT_MAX_RECV_SGE) { log_rdma_event(ERR, - "warning: device max_send_sge = %d too small\n", - info->id->device->attrs.max_send_sge); - log_rdma_event(ERR, "Queue Pair creation may fail\n"); - } - if (info->id->device->attrs.max_recv_sge < SMBDIRECT_MAX_SGE) { - log_rdma_event(ERR, - "warning: device max_recv_sge = %d too small\n", + "device %.*s max_send_sge/max_recv_sge = %d/%d too small\n", + IB_DEVICE_NAME_MAX, + info->id->device->name, + info->id->device->attrs.max_send_sge, info->id->device->attrs.max_recv_sge); - log_rdma_event(ERR, "Queue Pair creation may fail\n"); + goto config_failed; } info->send_cq = NULL; @@ -1599,8 +1597,8 @@ static struct smbd_connection *_smbd_get_connection( qp_attr.qp_context = info; qp_attr.cap.max_send_wr = info->send_credit_target; qp_attr.cap.max_recv_wr = info->receive_credit_max; - qp_attr.cap.max_send_sge = SMBDIRECT_MAX_SGE; - qp_attr.cap.max_recv_sge = SMBDIRECT_MAX_SGE; + qp_attr.cap.max_send_sge = SMBDIRECT_MAX_SEND_SGE; + qp_attr.cap.max_recv_sge = SMBDIRECT_MAX_RECV_SGE; qp_attr.cap.max_inline_data = 0; qp_attr.sq_sig_type = IB_SIGNAL_REQ_WR; qp_attr.qp_type = IB_QPT_RC; @@ -1988,10 +1986,11 @@ int smbd_send(struct TCP_Server_Info *server, int num_rqst, struct smb_rqst *rqst_array) { struct smbd_connection *info = server->smbd_conn; - struct kvec vec; + struct kvec vecs[SMBDIRECT_MAX_SEND_SGE - 1]; int nvecs; int size; unsigned int buflen, remaining_data_length; + unsigned int offset, remaining_vec_data_length; int start, i, j; int max_iov_size = info->max_send_size - sizeof(struct smbd_data_transfer); @@ -2000,10 +1999,8 @@ int smbd_send(struct TCP_Server_Info *server, struct smb_rqst *rqst; int rqst_idx; - if (info->transport_status != SMBD_CONNECTED) { - rc = -EAGAIN; - goto done; - } + if (info->transport_status != SMBD_CONNECTED) + return -EAGAIN; /* * Add in the page array if there is one. The caller needs to set @@ -2014,125 +2011,95 @@ int smbd_send(struct TCP_Server_Info *server, for (i = 0; i < num_rqst; i++) remaining_data_length += smb_rqst_len(server, &rqst_array[i]); - if (remaining_data_length > info->max_fragmented_send_size) { + if (unlikely(remaining_data_length > info->max_fragmented_send_size)) { + /* assertion: payload never exceeds negotiated maximum */ log_write(ERR, "payload size %d > max size %d\n", remaining_data_length, info->max_fragmented_send_size); - rc = -EINVAL; - goto done; + return -EINVAL; } log_write(INFO, "num_rqst=%d total length=%u\n", num_rqst, remaining_data_length); rqst_idx = 0; -next_rqst: - rqst = &rqst_array[rqst_idx]; - iov = rqst->rq_iov; - - cifs_dbg(FYI, "Sending smb (RDMA): idx=%d smb_len=%lu\n", - rqst_idx, smb_rqst_len(server, rqst)); - for (i = 0; i < rqst->rq_nvec; i++) - dump_smb(iov[i].iov_base, iov[i].iov_len); - - - log_write(INFO, "rqst_idx=%d nvec=%d rqst->rq_npages=%d rq_pagesz=%d rq_tailsz=%d buflen=%lu\n", - rqst_idx, rqst->rq_nvec, rqst->rq_npages, rqst->rq_pagesz, - rqst->rq_tailsz, smb_rqst_len(server, rqst)); - - start = i = 0; - buflen = 0; - while (true) { - buflen += iov[i].iov_len; - if (buflen > max_iov_size) { - if (i > start) { - remaining_data_length -= - (buflen-iov[i].iov_len); - log_write(INFO, "sending iov[] from start=%d i=%d nvecs=%d remaining_data_length=%d\n", - start, i, i - start, - remaining_data_length); - rc = smbd_post_send_data( - info, &iov[start], i-start, - remaining_data_length); - if (rc) - goto done; - } else { - /* iov[start] is too big, break it */ - nvecs = (buflen+max_iov_size-1)/max_iov_size; - log_write(INFO, "iov[%d] iov_base=%p buflen=%d break to %d vectors\n", - start, iov[start].iov_base, - buflen, nvecs); - for (j = 0; j < nvecs; j++) { - vec.iov_base = - (char *)iov[start].iov_base + - j*max_iov_size; - vec.iov_len = max_iov_size; - if (j == nvecs-1) - vec.iov_len = - buflen - - max_iov_size*(nvecs-1); - remaining_data_length -= vec.iov_len; - log_write(INFO, - "sending vec j=%d iov_base=%p iov_len=%zu remaining_data_length=%d\n", - j, vec.iov_base, vec.iov_len, - remaining_data_length); - rc = smbd_post_send_data( - info, &vec, 1, - remaining_data_length); - if (rc) - goto done; + do { + rqst = &rqst_array[rqst_idx]; + iov = rqst->rq_iov; + + cifs_dbg(FYI, "Sending smb (RDMA): idx=%d smb_len=%lu\n", + rqst_idx, smb_rqst_len(server, rqst)); + remaining_vec_data_length = 0; + for (i = 0; i < rqst->rq_nvec; i++) { + remaining_vec_data_length += iov[i].iov_len; + dump_smb(iov[i].iov_base, iov[i].iov_len); + } + + log_write(INFO, "rqst_idx=%d nvec=%d rqst->rq_npages=%d rq_pagesz=%d rq_tailsz=%d buflen=%lu\n", + rqst_idx, rqst->rq_nvec, + rqst->rq_npages, rqst->rq_pagesz, + rqst->rq_tailsz, smb_rqst_len(server, rqst)); + + start = 0; + offset = 0; + do { + buflen = 0; + i = start; + j = 0; + while (i < rqst->rq_nvec && + j < SMBDIRECT_MAX_SEND_SGE - 1 && + buflen < max_iov_size) { + + vecs[j].iov_base = iov[i].iov_base + offset; + if (buflen + iov[i].iov_len > max_iov_size) { + vecs[j].iov_len = + max_iov_size - iov[i].iov_len; + buflen = max_iov_size; + offset = vecs[j].iov_len; + } else { + vecs[j].iov_len = + iov[i].iov_len - offset; + buflen += vecs[j].iov_len; + offset = 0; + ++i; } - i++; - if (i == rqst->rq_nvec) - break; + ++j; } + + remaining_vec_data_length -= buflen; + remaining_data_length -= buflen; + log_write(INFO, "sending %s iov[%d] from start=%d nvecs=%d remaining_data_length=%d\n", + remaining_vec_data_length > 0 ? + "partial" : "complete", + rqst->rq_nvec, start, j, + remaining_data_length); + start = i; - buflen = 0; - } else { - i++; - if (i == rqst->rq_nvec) { - /* send out all remaining vecs */ - remaining_data_length -= buflen; - log_write(INFO, "sending iov[] from start=%d i=%d nvecs=%d remaining_data_length=%d\n", - start, i, i - start, + rc = smbd_post_send_data(info, vecs, j, remaining_data_length); + if (rc) + goto done; + } while (remaining_vec_data_length > 0); + + /* now sending pages if there are any */ + for (i = 0; i < rqst->rq_npages; i++) { + rqst_page_get_length(rqst, i, &buflen, &offset); + nvecs = (buflen + max_iov_size - 1) / max_iov_size; + log_write(INFO, "sending pages buflen=%d nvecs=%d\n", + buflen, nvecs); + for (j = 0; j < nvecs; j++) { + size = min_t(unsigned int, max_iov_size, remaining_data_length); + remaining_data_length -= size; + log_write(INFO, "sending pages i=%d offset=%d size=%d remaining_data_length=%d\n", + i, j * max_iov_size + offset, size, remaining_data_length); - rc = smbd_post_send_data(info, &iov[start], - i-start, remaining_data_length); + rc = smbd_post_send_page( + info, rqst->rq_pages[i], + j*max_iov_size + offset, + size, remaining_data_length); if (rc) goto done; - break; } } - log_write(INFO, "looping i=%d buflen=%d\n", i, buflen); - } - - /* now sending pages if there are any */ - for (i = 0; i < rqst->rq_npages; i++) { - unsigned int offset; - - rqst_page_get_length(rqst, i, &buflen, &offset); - nvecs = (buflen + max_iov_size - 1) / max_iov_size; - log_write(INFO, "sending pages buflen=%d nvecs=%d\n", - buflen, nvecs); - for (j = 0; j < nvecs; j++) { - size = max_iov_size; - if (j == nvecs-1) - size = buflen - j*max_iov_size; - remaining_data_length -= size; - log_write(INFO, "sending pages i=%d offset=%d size=%d remaining_data_length=%d\n", - i, j * max_iov_size + offset, size, - remaining_data_length); - rc = smbd_post_send_page( - info, rqst->rq_pages[i], - j*max_iov_size + offset, - size, remaining_data_length); - if (rc) - goto done; - } - } - - rqst_idx++; - if (rqst_idx < num_rqst) - goto next_rqst; + } while (++rqst_idx < num_rqst); done: /* diff --git a/fs/cifs/smbdirect.h b/fs/cifs/smbdirect.h index a87fca82a7963..207ef979cd51c 100644 --- a/fs/cifs/smbdirect.h +++ b/fs/cifs/smbdirect.h @@ -91,7 +91,7 @@ struct smbd_connection { /* Memory registrations */ /* Maximum number of RDMA read/write outstanding on this connection */ int responder_resources; - /* Maximum number of SGEs in a RDMA write/read */ + /* Maximum number of pages in a single RDMA write/read on this connection */ int max_frmr_depth; /* * If payload is less than or equal to the threshold, @@ -225,21 +225,25 @@ struct smbd_buffer_descriptor_v1 { __le32 length; } __packed; -/* Default maximum number of SGEs in a RDMA send/recv */ -#define SMBDIRECT_MAX_SGE 16 +/* Maximum number of SGEs used by smbdirect.c in any send work request */ +#define SMBDIRECT_MAX_SEND_SGE 6 + /* The context for a SMBD request */ struct smbd_request { struct smbd_connection *info; struct ib_cqe cqe; - /* the SGE entries for this packet */ - struct ib_sge sge[SMBDIRECT_MAX_SGE]; + /* the SGE entries for this work request */ + struct ib_sge sge[SMBDIRECT_MAX_SEND_SGE]; int num_sge; /* SMBD packet header follows this structure */ u8 packet[]; }; +/* Maximum number of SGEs used by smbdirect.c in any receive work request */ +#define SMBDIRECT_MAX_RECV_SGE 1 + /* The context for a SMBD response */ struct smbd_response { struct smbd_connection *info; diff --git a/fs/cifs/trace.h b/fs/cifs/trace.h index dafcb6ab050dd..e671bd16f00c5 100644 --- a/fs/cifs/trace.h +++ b/fs/cifs/trace.h @@ -11,6 +11,8 @@ #define _CIFS_TRACE_H #include +#include +#include /* * Please use this 3-part article as a reference for writing new tracepoints: @@ -119,6 +121,44 @@ DEFINE_SMB3_RW_DONE_EVENT(query_dir_done); DEFINE_SMB3_RW_DONE_EVENT(zero_done); DEFINE_SMB3_RW_DONE_EVENT(falloc_done); +/* For logging successful set EOF (truncate) */ +DECLARE_EVENT_CLASS(smb3_eof_class, + TP_PROTO(unsigned int xid, + __u64 fid, + __u32 tid, + __u64 sesid, + __u64 offset), + TP_ARGS(xid, fid, tid, sesid, offset), + TP_STRUCT__entry( + __field(unsigned int, xid) + __field(__u64, fid) + __field(__u32, tid) + __field(__u64, sesid) + __field(__u64, offset) + ), + TP_fast_assign( + __entry->xid = xid; + __entry->fid = fid; + __entry->tid = tid; + __entry->sesid = sesid; + __entry->offset = offset; + ), + TP_printk("xid=%u sid=0x%llx tid=0x%x fid=0x%llx offset=0x%llx", + __entry->xid, __entry->sesid, __entry->tid, __entry->fid, + __entry->offset) +) + +#define DEFINE_SMB3_EOF_EVENT(name) \ +DEFINE_EVENT(smb3_eof_class, smb3_##name, \ + TP_PROTO(unsigned int xid, \ + __u64 fid, \ + __u32 tid, \ + __u64 sesid, \ + __u64 offset), \ + TP_ARGS(xid, fid, tid, sesid, offset)) + +DEFINE_SMB3_EOF_EVENT(set_eof); + /* * For handle based calls other than read and write, and get/set info */ @@ -156,6 +196,7 @@ DEFINE_SMB3_FD_EVENT(flush_enter); DEFINE_SMB3_FD_EVENT(flush_done); DEFINE_SMB3_FD_EVENT(close_enter); DEFINE_SMB3_FD_EVENT(close_done); +DEFINE_SMB3_FD_EVENT(oplock_not_found); DECLARE_EVENT_CLASS(smb3_fd_err_class, TP_PROTO(unsigned int xid, @@ -331,6 +372,7 @@ DEFINE_SMB3_INF_COMPOUND_ENTER_EVENT(set_eof_enter); DEFINE_SMB3_INF_COMPOUND_ENTER_EVENT(set_info_compound_enter); DEFINE_SMB3_INF_COMPOUND_ENTER_EVENT(delete_enter); DEFINE_SMB3_INF_COMPOUND_ENTER_EVENT(mkdir_enter); +DEFINE_SMB3_INF_COMPOUND_ENTER_EVENT(tdis_enter); DECLARE_EVENT_CLASS(smb3_inf_compound_done_class, @@ -368,6 +410,7 @@ DEFINE_SMB3_INF_COMPOUND_DONE_EVENT(set_eof_done); DEFINE_SMB3_INF_COMPOUND_DONE_EVENT(set_info_compound_done); DEFINE_SMB3_INF_COMPOUND_DONE_EVENT(delete_done); DEFINE_SMB3_INF_COMPOUND_DONE_EVENT(mkdir_done); +DEFINE_SMB3_INF_COMPOUND_DONE_EVENT(tdis_done); DECLARE_EVENT_CLASS(smb3_inf_compound_err_class, @@ -410,6 +453,7 @@ DEFINE_SMB3_INF_COMPOUND_ERR_EVENT(set_eof_err); DEFINE_SMB3_INF_COMPOUND_ERR_EVENT(set_info_compound_err); DEFINE_SMB3_INF_COMPOUND_ERR_EVENT(mkdir_err); DEFINE_SMB3_INF_COMPOUND_ERR_EVENT(delete_err); +DEFINE_SMB3_INF_COMPOUND_ERR_EVENT(tdis_err); /* * For logging SMB3 Status code and Command for responses which return errors @@ -657,13 +701,15 @@ DECLARE_EVENT_CLASS(smb3_open_enter_class, TP_PROTO(unsigned int xid, __u32 tid, __u64 sesid, + const char *full_path, int create_options, int desired_access), - TP_ARGS(xid, tid, sesid, create_options, desired_access), + TP_ARGS(xid, tid, sesid, full_path, create_options, desired_access), TP_STRUCT__entry( __field(unsigned int, xid) __field(__u32, tid) __field(__u64, sesid) + __string(path, full_path) __field(int, create_options) __field(int, desired_access) ), @@ -671,11 +717,12 @@ DECLARE_EVENT_CLASS(smb3_open_enter_class, __entry->xid = xid; __entry->tid = tid; __entry->sesid = sesid; + __assign_str(path, full_path); __entry->create_options = create_options; __entry->desired_access = desired_access; ), - TP_printk("xid=%u sid=0x%llx tid=0x%x cr_opts=0x%x des_access=0x%x", - __entry->xid, __entry->sesid, __entry->tid, + TP_printk("xid=%u sid=0x%llx tid=0x%x path=%s cr_opts=0x%x des_access=0x%x", + __entry->xid, __entry->sesid, __entry->tid, __get_str(path), __entry->create_options, __entry->desired_access) ) @@ -684,9 +731,10 @@ DEFINE_EVENT(smb3_open_enter_class, smb3_##name, \ TP_PROTO(unsigned int xid, \ __u32 tid, \ __u64 sesid, \ + const char *full_path, \ int create_options, \ int desired_access), \ - TP_ARGS(xid, tid, sesid, create_options, desired_access)) + TP_ARGS(xid, tid, sesid, full_path, create_options, desired_access)) DEFINE_SMB3_OPEN_ENTER_EVENT(open_enter); DEFINE_SMB3_OPEN_ENTER_EVENT(posix_mkdir_enter); @@ -812,6 +860,7 @@ DEFINE_EVENT(smb3_lease_done_class, smb3_##name, \ TP_ARGS(lease_state, tid, sesid, lease_key_low, lease_key_high)) DEFINE_SMB3_LEASE_DONE_EVENT(lease_done); +DEFINE_SMB3_LEASE_DONE_EVENT(lease_not_found); DECLARE_EVENT_CLASS(smb3_lease_err_class, TP_PROTO(__u32 lease_state, @@ -854,6 +903,75 @@ DEFINE_EVENT(smb3_lease_err_class, smb3_##name, \ DEFINE_SMB3_LEASE_ERR_EVENT(lease_err); +DECLARE_EVENT_CLASS(smb3_connect_class, + TP_PROTO(char *hostname, + __u64 conn_id, + const struct __kernel_sockaddr_storage *dst_addr), + TP_ARGS(hostname, conn_id, dst_addr), + TP_STRUCT__entry( + __string(hostname, hostname) + __field(__u64, conn_id) + __array(__u8, dst_addr, sizeof(struct sockaddr_storage)) + ), + TP_fast_assign( + struct sockaddr_storage *pss = NULL; + + __entry->conn_id = conn_id; + pss = (struct sockaddr_storage *)__entry->dst_addr; + *pss = *dst_addr; + __assign_str(hostname, hostname); + ), + TP_printk("conn_id=0x%llx server=%s addr=%pISpsfc", + __entry->conn_id, + __get_str(hostname), + __entry->dst_addr) +) + +#define DEFINE_SMB3_CONNECT_EVENT(name) \ +DEFINE_EVENT(smb3_connect_class, smb3_##name, \ + TP_PROTO(char *hostname, \ + __u64 conn_id, \ + const struct __kernel_sockaddr_storage *addr), \ + TP_ARGS(hostname, conn_id, addr)) + +DEFINE_SMB3_CONNECT_EVENT(connect_done); + +DECLARE_EVENT_CLASS(smb3_connect_err_class, + TP_PROTO(char *hostname, __u64 conn_id, + const struct __kernel_sockaddr_storage *dst_addr, int rc), + TP_ARGS(hostname, conn_id, dst_addr, rc), + TP_STRUCT__entry( + __string(hostname, hostname) + __field(__u64, conn_id) + __array(__u8, dst_addr, sizeof(struct sockaddr_storage)) + __field(int, rc) + ), + TP_fast_assign( + struct sockaddr_storage *pss = NULL; + + __entry->conn_id = conn_id; + __entry->rc = rc; + pss = (struct sockaddr_storage *)__entry->dst_addr; + *pss = *dst_addr; + __assign_str(hostname, hostname); + ), + TP_printk("rc=%d conn_id=0x%llx server=%s addr=%pISpsfc", + __entry->rc, + __entry->conn_id, + __get_str(hostname), + __entry->dst_addr) +) + +#define DEFINE_SMB3_CONNECT_ERR_EVENT(name) \ +DEFINE_EVENT(smb3_connect_err_class, smb3_##name, \ + TP_PROTO(char *hostname, \ + __u64 conn_id, \ + const struct __kernel_sockaddr_storage *addr, \ + int rc), \ + TP_ARGS(hostname, conn_id, addr, rc)) + +DEFINE_SMB3_CONNECT_ERR_EVENT(connect_err); + DECLARE_EVENT_CLASS(smb3_reconnect_class, TP_PROTO(__u64 currmid, __u64 conn_id, @@ -885,6 +1003,26 @@ DEFINE_EVENT(smb3_reconnect_class, smb3_##name, \ DEFINE_SMB3_RECONNECT_EVENT(reconnect); DEFINE_SMB3_RECONNECT_EVENT(partial_send_reconnect); +DECLARE_EVENT_CLASS(smb3_ses_class, + TP_PROTO(__u64 sesid), + TP_ARGS(sesid), + TP_STRUCT__entry( + __field(__u64, sesid) + ), + TP_fast_assign( + __entry->sesid = sesid; + ), + TP_printk("sid=0x%llx", + __entry->sesid) +) + +#define DEFINE_SMB3_SES_EVENT(name) \ +DEFINE_EVENT(smb3_ses_class, smb3_##name, \ + TP_PROTO(__u64 sesid), \ + TP_ARGS(sesid)) + +DEFINE_SMB3_SES_EVENT(ses_not_found); + DECLARE_EVENT_CLASS(smb3_credit_class, TP_PROTO(__u64 currmid, __u64 conn_id, @@ -935,6 +1073,13 @@ DEFINE_SMB3_CREDIT_EVENT(credit_timeout); DEFINE_SMB3_CREDIT_EVENT(insufficient_credits); DEFINE_SMB3_CREDIT_EVENT(too_many_credits); DEFINE_SMB3_CREDIT_EVENT(add_credits); +DEFINE_SMB3_CREDIT_EVENT(adj_credits); +DEFINE_SMB3_CREDIT_EVENT(hdr_credits); +DEFINE_SMB3_CREDIT_EVENT(nblk_credits); +DEFINE_SMB3_CREDIT_EVENT(pend_credits); +DEFINE_SMB3_CREDIT_EVENT(wait_credits); +DEFINE_SMB3_CREDIT_EVENT(waitff_credits); +DEFINE_SMB3_CREDIT_EVENT(overflow_credits); DEFINE_SMB3_CREDIT_EVENT(set_credits); #endif /* _CIFS_TRACE_H */ diff --git a/fs/cifs/transport.c b/fs/cifs/transport.c index 49b7edbe34975..d06b75d91bb70 100644 --- a/fs/cifs/transport.c +++ b/fs/cifs/transport.c @@ -21,6 +21,7 @@ #include #include #include +#include #include "cifspdu.h" #include "cifsglob.h" #include "cifsproto.h" @@ -37,13 +38,13 @@ cifs_wake_up_task(struct mid_q_entry *mid) wake_up_process(mid->callback_data); } -struct mid_q_entry * -AllocMidQEntry(const struct smb_hdr *smb_buffer, struct TCP_Server_Info *server) +static struct mid_q_entry * +alloc_mid(const struct smb_hdr *smb_buffer, struct TCP_Server_Info *server) { struct mid_q_entry *temp; if (server == NULL) { - cifs_dbg(VFS, "Null TCP session in AllocMidQEntry\n"); + cifs_dbg(VFS, "%s: null TCP session\n", __func__); return NULL; } @@ -54,7 +55,7 @@ AllocMidQEntry(const struct smb_hdr *smb_buffer, struct TCP_Server_Info *server) temp->pid = current->pid; temp->command = cpu_to_le16(smb_buffer->Command); cifs_dbg(FYI, "For smb_command %d\n", smb_buffer->Command); - /* do_gettimeofday(&temp->when_sent);*/ /* easier to use jiffies */ + /* easier to use jiffies */ /* when mid allocated can be before when sent */ temp->when_alloc = jiffies; temp->server = server; @@ -68,12 +69,12 @@ AllocMidQEntry(const struct smb_hdr *smb_buffer, struct TCP_Server_Info *server) temp->callback = cifs_wake_up_task; temp->callback_data = current; - atomic_inc(&midCount); + atomic_inc(&mid_count); temp->mid_state = MID_REQUEST_ALLOCATED; return temp; } -static void _cifs_mid_q_entry_release(struct kref *refcount) +static void __release_mid(struct kref *refcount) { struct mid_q_entry *midEntry = container_of(refcount, struct mid_q_entry, refcount); @@ -91,7 +92,7 @@ static void _cifs_mid_q_entry_release(struct kref *refcount) server->ops->handle_cancelled_mid(midEntry, server); midEntry->mid_state = MID_FREE; - atomic_dec(&midCount); + atomic_dec(&mid_count); if (midEntry->large_buf) cifs_buf_release(midEntry->resp_buf); else @@ -152,29 +153,26 @@ static void _cifs_mid_q_entry_release(struct kref *refcount) mempool_free(midEntry, cifs_mid_poolp); } -void cifs_mid_q_entry_release(struct mid_q_entry *midEntry) +void release_mid(struct mid_q_entry *mid) { - spin_lock(&GlobalMid_Lock); - kref_put(&midEntry->refcount, _cifs_mid_q_entry_release); - spin_unlock(&GlobalMid_Lock); -} + struct TCP_Server_Info *server = mid->server; -void DeleteMidQEntry(struct mid_q_entry *midEntry) -{ - cifs_mid_q_entry_release(midEntry); + spin_lock(&server->mid_lock); + kref_put(&mid->refcount, __release_mid); + spin_unlock(&server->mid_lock); } void -cifs_delete_mid(struct mid_q_entry *mid) +delete_mid(struct mid_q_entry *mid) { - spin_lock(&GlobalMid_Lock); + spin_lock(&mid->server->mid_lock); if (!(mid->mid_flags & MID_DELETED)) { list_del_init(&mid->qhead); mid->mid_flags |= MID_DELETED; } - spin_unlock(&GlobalMid_Lock); + spin_unlock(&mid->server->mid_lock); - DeleteMidQEntry(mid); + release_mid(mid); } /* @@ -259,8 +257,8 @@ smb_rqst_len(struct TCP_Server_Info *server, struct smb_rqst *rqst) int nvec; unsigned long buflen = 0; - if (server->vals->header_preamble_size == 0 && - rqst->rq_nvec >= 2 && rqst->rq_iov[0].iov_len == 4) { + if (!is_smb1(server) && rqst->rq_nvec >= 2 && + rqst->rq_iov[0].iov_len == 4) { iov = &rqst->rq_iov[1]; nvec = rqst->rq_nvec - 1; } else { @@ -348,7 +346,7 @@ __smb_send_rqst(struct TCP_Server_Info *server, int num_rqst, sigprocmask(SIG_BLOCK, &mask, &oldmask); /* Generate a rfc1002 marker for SMB2+ */ - if (server->vals->header_preamble_size == 0) { + if (!is_smb1(server)) { struct kvec hiov = { .iov_base = &rfc1002_marker, .iov_len = 4 @@ -430,9 +428,7 @@ __smb_send_rqst(struct TCP_Server_Info *server, int num_rqst, * be taken as the remainder of this one. We need to kill the * socket so the server throws away the partial SMB */ - spin_lock(&GlobalMid_Lock); - server->tcpStatus = CifsNeedReconnect; - spin_unlock(&GlobalMid_Lock); + cifs_signal_cifsd_for_reconnect(server, false); trace_smb3_partial_send_reconnect(server->CurrentMid, server->conn_id, server->hostname); } @@ -467,13 +463,12 @@ smb_send_rqst(struct TCP_Server_Info *server, int num_rqst, return -EIO; } - tr_hdr = kmalloc(sizeof(*tr_hdr), GFP_NOFS); + tr_hdr = kzalloc(sizeof(*tr_hdr), GFP_NOFS); if (!tr_hdr) return -ENOMEM; memset(&cur_rqst[0], 0, sizeof(cur_rqst)); memset(&iov, 0, sizeof(iov)); - memset(tr_hdr, 0, sizeof(*tr_hdr)); iov.iov_base = tr_hdr; iov.iov_len = sizeof(*tr_hdr); @@ -545,7 +540,7 @@ wait_for_free_credits(struct TCP_Server_Info *server, const int num_credits, in_flight = server->in_flight; spin_unlock(&server->req_lock); - trace_smb3_add_credits(server->CurrentMid, + trace_smb3_nblk_credits(server->CurrentMid, server->conn_id, server->hostname, scredits, -1, in_flight); cifs_dbg(FYI, "%s: remove %u credits total=%d\n", __func__, 1, scredits); @@ -554,6 +549,16 @@ wait_for_free_credits(struct TCP_Server_Info *server, const int num_credits, } while (1) { + spin_unlock(&server->req_lock); + + spin_lock(&server->srv_lock); + if (server->tcpStatus == CifsExiting) { + spin_unlock(&server->srv_lock); + return -ENOENT; + } + spin_unlock(&server->srv_lock); + + spin_lock(&server->req_lock); if (*credits < num_credits) { scredits = *credits; spin_unlock(&server->req_lock); @@ -579,11 +584,6 @@ wait_for_free_credits(struct TCP_Server_Info *server, const int num_credits, return -ERESTARTSYS; spin_lock(&server->req_lock); } else { - if (server->tcpStatus == CifsExiting) { - spin_unlock(&server->req_lock); - return -ENOENT; - } - /* * For normal commands, reserve the last MAX_COMPOUND * credits to compound requests. @@ -646,7 +646,7 @@ wait_for_free_credits(struct TCP_Server_Info *server, const int num_credits, in_flight = server->in_flight; spin_unlock(&server->req_lock); - trace_smb3_add_credits(server->CurrentMid, + trace_smb3_waitff_credits(server->CurrentMid, server->conn_id, server->hostname, scredits, -(num_credits), in_flight); cifs_dbg(FYI, "%s: remove %u credits total=%d\n", @@ -724,35 +724,32 @@ cifs_wait_mtu_credits(struct TCP_Server_Info *server, unsigned int size, static int allocate_mid(struct cifs_ses *ses, struct smb_hdr *in_buf, struct mid_q_entry **ppmidQ) { - if (ses->server->tcpStatus == CifsExiting) { - return -ENOENT; - } - - if (ses->server->tcpStatus == CifsNeedReconnect) { - cifs_dbg(FYI, "tcp session dead - return to caller to retry\n"); - return -EAGAIN; - } - - if (ses->status == CifsNew) { + spin_lock(&ses->ses_lock); + if (ses->ses_status == SES_NEW) { if ((in_buf->Command != SMB_COM_SESSION_SETUP_ANDX) && - (in_buf->Command != SMB_COM_NEGOTIATE)) + (in_buf->Command != SMB_COM_NEGOTIATE)) { + spin_unlock(&ses->ses_lock); return -EAGAIN; + } /* else ok - we are setting up session */ } - if (ses->status == CifsExiting) { + if (ses->ses_status == SES_EXITING) { /* check if SMB session is bad because we are setting it up */ - if (in_buf->Command != SMB_COM_LOGOFF_ANDX) + if (in_buf->Command != SMB_COM_LOGOFF_ANDX) { + spin_unlock(&ses->ses_lock); return -EAGAIN; + } /* else ok - we are shutting down session */ } + spin_unlock(&ses->ses_lock); - *ppmidQ = AllocMidQEntry(in_buf, ses->server); + *ppmidQ = alloc_mid(in_buf, ses->server); if (*ppmidQ == NULL) return -ENOMEM; - spin_lock(&GlobalMid_Lock); + spin_lock(&ses->server->mid_lock); list_add_tail(&(*ppmidQ)->qhead, &ses->server->pending_mid_q); - spin_unlock(&GlobalMid_Lock); + spin_unlock(&ses->server->mid_lock); return 0; } @@ -784,13 +781,13 @@ cifs_setup_async_request(struct TCP_Server_Info *server, struct smb_rqst *rqst) if (server->sign) hdr->Flags2 |= SMBFLG2_SECURITY_SIGNATURE; - mid = AllocMidQEntry(hdr, server); + mid = alloc_mid(hdr, server); if (mid == NULL) return ERR_PTR(-ENOMEM); rc = cifs_sign_rqst(rqst, server, &mid->sequence_number); if (rc) { - DeleteMidQEntry(mid); + release_mid(mid); return ERR_PTR(rc); } @@ -824,7 +821,7 @@ cifs_call_async(struct TCP_Server_Info *server, struct smb_rqst *rqst, } else instance = exist_credits->instance; - mutex_lock(&server->srv_mutex); + cifs_server_lock(server); /* * We can't use credits obtained from the previous session to send this @@ -832,14 +829,14 @@ cifs_call_async(struct TCP_Server_Info *server, struct smb_rqst *rqst, * return -EAGAIN in such cases to let callers handle it. */ if (instance != server->reconnect_instance) { - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); add_credits_and_wake_if(server, &credits, optype); return -EAGAIN; } mid = server->ops->setup_async_request(server, rqst); if (IS_ERR(mid)) { - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); add_credits_and_wake_if(server, &credits, optype); return PTR_ERR(mid); } @@ -851,9 +848,9 @@ cifs_call_async(struct TCP_Server_Info *server, struct smb_rqst *rqst, mid->mid_state = MID_REQUEST_SUBMITTED; /* put it on the pending_mid_q */ - spin_lock(&GlobalMid_Lock); + spin_lock(&server->mid_lock); list_add_tail(&mid->qhead, &server->pending_mid_q); - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->mid_lock); /* * Need to store the time in mid before calling I/O. For call_async, @@ -865,10 +862,10 @@ cifs_call_async(struct TCP_Server_Info *server, struct smb_rqst *rqst, if (rc < 0) { revert_current_mid(server, mid->credits); server->sequence_number -= 2; - cifs_delete_mid(mid); + delete_mid(mid); } - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); if (rc == 0) return 0; @@ -912,10 +909,10 @@ cifs_sync_mid_result(struct mid_q_entry *mid, struct TCP_Server_Info *server) cifs_dbg(FYI, "%s: cmd=%d mid=%llu state=%d\n", __func__, le16_to_cpu(mid->command), mid->mid, mid->mid_state); - spin_lock(&GlobalMid_Lock); + spin_lock(&server->mid_lock); switch (mid->mid_state) { case MID_RESPONSE_RECEIVED: - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->mid_lock); return rc; case MID_RETRY_NEEDED: rc = -EAGAIN; @@ -935,9 +932,9 @@ cifs_sync_mid_result(struct mid_q_entry *mid, struct TCP_Server_Info *server) __func__, mid->mid, mid->mid_state); rc = -EIO; } - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->mid_lock); - DeleteMidQEntry(mid); + release_mid(mid); return rc; } @@ -997,7 +994,7 @@ cifs_setup_request(struct cifs_ses *ses, struct TCP_Server_Info *ignored, return ERR_PTR(rc); rc = cifs_sign_rqst(rqst, ses->server, &mid->sequence_number); if (rc) { - cifs_delete_mid(mid); + delete_mid(mid); return ERR_PTR(rc); } return mid; @@ -1026,7 +1023,7 @@ static void cifs_cancelled_callback(struct mid_q_entry *mid) { cifs_compound_callback(mid); - DeleteMidQEntry(mid); + release_mid(mid); } /* @@ -1039,23 +1036,43 @@ cifs_cancelled_callback(struct mid_q_entry *mid) struct TCP_Server_Info *cifs_pick_channel(struct cifs_ses *ses) { uint index = 0; + unsigned int min_in_flight = UINT_MAX, max_in_flight = 0; + struct TCP_Server_Info *server = NULL; + int i; if (!ses) return NULL; spin_lock(&ses->chan_lock); - if (!ses->binding) { - /* round robin */ - if (ses->chan_count > 1) { - index = (uint)atomic_inc_return(&ses->chan_seq); - index %= ses->chan_count; + for (i = 0; i < ses->chan_count; i++) { + server = ses->chans[i].server; + if (!server) + continue; + + /* + * strictly speaking, we should pick up req_lock to read + * server->in_flight. But it shouldn't matter much here if we + * race while reading this data. The worst that can happen is + * that we could use a channel that's not least loaded. Avoiding + * taking the lock could help reduce wait time, which is + * important for this function + */ + if (server->in_flight < min_in_flight) { + min_in_flight = server->in_flight; + index = i; } - spin_unlock(&ses->chan_lock); - return ses->chans[index].server; - } else { - spin_unlock(&ses->chan_lock); - return cifs_ses_server(ses); + if (server->in_flight > max_in_flight) + max_in_flight = server->in_flight; + } + + /* if all channels are equally loaded, fall back to round-robin */ + if (min_in_flight == max_in_flight) { + index = (uint)atomic_inc_return(&ses->chan_seq); + index %= ses->chan_count; } + spin_unlock(&ses->chan_lock); + + return ses->chans[index].server; } int @@ -1083,8 +1100,12 @@ compound_send_recv(const unsigned int xid, struct cifs_ses *ses, return -EIO; } - if (server->tcpStatus == CifsExiting) + spin_lock(&server->srv_lock); + if (server->tcpStatus == CifsExiting) { + spin_unlock(&server->srv_lock); return -ENOENT; + } + spin_unlock(&server->srv_lock); /* * Wait for all the requests to become available. @@ -1110,7 +1131,7 @@ compound_send_recv(const unsigned int xid, struct cifs_ses *ses, * of smb data. */ - mutex_lock(&server->srv_mutex); + cifs_server_lock(server); /* * All the parts of the compound chain belong obtained credits from the @@ -1120,7 +1141,7 @@ compound_send_recv(const unsigned int xid, struct cifs_ses *ses, * handle it. */ if (instance != server->reconnect_instance) { - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); for (j = 0; j < num_rqst; j++) add_credits(server, &credits[j], optype); return -EAGAIN; @@ -1131,8 +1152,8 @@ compound_send_recv(const unsigned int xid, struct cifs_ses *ses, if (IS_ERR(midQ[i])) { revert_current_mid(server, i); for (j = 0; j < i; j++) - cifs_delete_mid(midQ[j]); - mutex_unlock(&server->srv_mutex); + delete_mid(midQ[j]); + cifs_server_unlock(server); /* Update # of requests on wire to server */ for (j = 0; j < num_rqst; j++) @@ -1162,7 +1183,7 @@ compound_send_recv(const unsigned int xid, struct cifs_ses *ses, server->sequence_number -= 2; } - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); /* * If sending failed for some reason or it is an oplock break that we @@ -1185,12 +1206,17 @@ compound_send_recv(const unsigned int xid, struct cifs_ses *ses, /* * Compounding is never used during session establish. */ - if ((ses->status == CifsNew) || (optype & CIFS_NEG_OP) || (optype & CIFS_SESS_OP)) { - mutex_lock(&server->srv_mutex); - smb311_update_preauth_hash(ses, rqst[0].rq_iov, - rqst[0].rq_nvec); - mutex_unlock(&server->srv_mutex); + spin_lock(&ses->ses_lock); + if ((ses->ses_status == SES_NEW) || (optype & CIFS_NEG_OP) || (optype & CIFS_SESS_OP)) { + spin_unlock(&ses->ses_lock); + + cifs_server_lock(server); + smb311_update_preauth_hash(ses, server, rqst[0].rq_iov, rqst[0].rq_nvec); + cifs_server_unlock(server); + + spin_lock(&ses->ses_lock); } + spin_unlock(&ses->ses_lock); for (i = 0; i < num_rqst; i++) { rc = wait_for_response(server, midQ[i]); @@ -1202,14 +1228,14 @@ compound_send_recv(const unsigned int xid, struct cifs_ses *ses, cifs_server_dbg(FYI, "Cancelling wait for mid %llu cmd: %d\n", midQ[i]->mid, le16_to_cpu(midQ[i]->command)); send_cancel(server, &rqst[i], midQ[i]); - spin_lock(&GlobalMid_Lock); + spin_lock(&server->mid_lock); midQ[i]->mid_flags |= MID_WAIT_CANCELLED; if (midQ[i]->mid_state == MID_REQUEST_SUBMITTED) { midQ[i]->callback = cifs_cancelled_callback; cancelled_mid[i] = true; credits[i].value = 0; } - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->mid_lock); } } @@ -1234,7 +1260,7 @@ compound_send_recv(const unsigned int xid, struct cifs_ses *ses, buf = (char *)midQ[i]->resp_buf; resp_iov[i].iov_base = buf; resp_iov[i].iov_len = midQ[i]->resp_buf_size + - server->vals->header_preamble_size; + HEADER_PREAMBLE_SIZE(server); if (midQ[i]->large_buf) resp_buf_type[i] = CIFS_LARGE_BUFFER; @@ -1244,7 +1270,7 @@ compound_send_recv(const unsigned int xid, struct cifs_ses *ses, rc = server->ops->check_receive(midQ[i], server, flags & CIFS_LOG_ERROR); - /* mark it so buf will not be freed by cifs_delete_mid */ + /* mark it so buf will not be freed by delete_mid */ if ((flags & CIFS_NO_RSP_BUF) == 0) midQ[i]->resp_buf = NULL; @@ -1253,15 +1279,19 @@ compound_send_recv(const unsigned int xid, struct cifs_ses *ses, /* * Compounding is never used during session establish. */ - if ((ses->status == CifsNew) || (optype & CIFS_NEG_OP) || (optype & CIFS_SESS_OP)) { + spin_lock(&ses->ses_lock); + if ((ses->ses_status == SES_NEW) || (optype & CIFS_NEG_OP) || (optype & CIFS_SESS_OP)) { struct kvec iov = { .iov_base = resp_iov[0].iov_base, .iov_len = resp_iov[0].iov_len }; - mutex_lock(&server->srv_mutex); - smb311_update_preauth_hash(ses, &iov, 1); - mutex_unlock(&server->srv_mutex); + spin_unlock(&ses->ses_lock); + cifs_server_lock(server); + smb311_update_preauth_hash(ses, server, &iov, 1); + cifs_server_unlock(server); + spin_lock(&ses->ses_lock); } + spin_unlock(&ses->ses_lock); out: /* @@ -1272,7 +1302,7 @@ compound_send_recv(const unsigned int xid, struct cifs_ses *ses, */ for (i = 0; i < num_rqst; i++) { if (!cancelled_mid[i]) - cifs_delete_mid(midQ[i]); + delete_mid(midQ[i]); } return rc; @@ -1350,8 +1380,12 @@ SendReceive(const unsigned int xid, struct cifs_ses *ses, return -EIO; } - if (server->tcpStatus == CifsExiting) + spin_lock(&server->srv_lock); + if (server->tcpStatus == CifsExiting) { + spin_unlock(&server->srv_lock); return -ENOENT; + } + spin_unlock(&server->srv_lock); /* Ensure that we do not send more than 50 overlapping requests to the same server. We may make this configurable later or @@ -1371,11 +1405,11 @@ SendReceive(const unsigned int xid, struct cifs_ses *ses, and avoid races inside tcp sendmsg code that could cause corruption of smb data */ - mutex_lock(&server->srv_mutex); + cifs_server_lock(server); rc = allocate_mid(ses, in_buf, &midQ); if (rc) { - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); /* Update # of requests on wire to server */ add_credits(server, &credits, 0); return rc; @@ -1383,7 +1417,7 @@ SendReceive(const unsigned int xid, struct cifs_ses *ses, rc = cifs_sign_smb(in_buf, server, &midQ->sequence_number); if (rc) { - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); goto out; } @@ -1395,7 +1429,7 @@ SendReceive(const unsigned int xid, struct cifs_ses *ses, if (rc < 0) server->sequence_number -= 2; - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); if (rc < 0) goto out; @@ -1403,15 +1437,15 @@ SendReceive(const unsigned int xid, struct cifs_ses *ses, rc = wait_for_response(server, midQ); if (rc != 0) { send_cancel(server, &rqst, midQ); - spin_lock(&GlobalMid_Lock); + spin_lock(&server->mid_lock); if (midQ->mid_state == MID_REQUEST_SUBMITTED) { /* no longer considered to be "in-flight" */ - midQ->callback = DeleteMidQEntry; - spin_unlock(&GlobalMid_Lock); + midQ->callback = release_mid; + spin_unlock(&server->mid_lock); add_credits(server, &credits, 0); return rc; } - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->mid_lock); } rc = cifs_sync_mid_result(midQ, server); @@ -1431,7 +1465,7 @@ SendReceive(const unsigned int xid, struct cifs_ses *ses, memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4); rc = cifs_check_receive(midQ, server, 0); out: - cifs_delete_mid(midQ); + delete_mid(midQ); add_credits(server, &credits, 0); return rc; @@ -1489,8 +1523,12 @@ SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *tcon, return -EIO; } - if (server->tcpStatus == CifsExiting) + spin_lock(&server->srv_lock); + if (server->tcpStatus == CifsExiting) { + spin_unlock(&server->srv_lock); return -ENOENT; + } + spin_unlock(&server->srv_lock); /* Ensure that we do not send more than 50 overlapping requests to the same server. We may make this configurable later or @@ -1510,18 +1548,18 @@ SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *tcon, and avoid races inside tcp sendmsg code that could cause corruption of smb data */ - mutex_lock(&server->srv_mutex); + cifs_server_lock(server); rc = allocate_mid(ses, in_buf, &midQ); if (rc) { - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); return rc; } rc = cifs_sign_smb(in_buf, server, &midQ->sequence_number); if (rc) { - cifs_delete_mid(midQ); - mutex_unlock(&server->srv_mutex); + delete_mid(midQ); + cifs_server_unlock(server); return rc; } @@ -1532,10 +1570,10 @@ SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *tcon, if (rc < 0) server->sequence_number -= 2; - mutex_unlock(&server->srv_mutex); + cifs_server_unlock(server); if (rc < 0) { - cifs_delete_mid(midQ); + delete_mid(midQ); return rc; } @@ -1546,17 +1584,19 @@ SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *tcon, (server->tcpStatus != CifsNew))); /* Were we interrupted by a signal ? */ + spin_lock(&server->srv_lock); if ((rc == -ERESTARTSYS) && (midQ->mid_state == MID_REQUEST_SUBMITTED) && ((server->tcpStatus == CifsGood) || (server->tcpStatus == CifsNew))) { + spin_unlock(&server->srv_lock); if (in_buf->Command == SMB_COM_TRANSACTION2) { /* POSIX lock. We send a NT_CANCEL SMB to cause the blocking lock to return. */ rc = send_cancel(server, &rqst, midQ); if (rc) { - cifs_delete_mid(midQ); + delete_mid(midQ); return rc; } } else { @@ -1568,7 +1608,7 @@ SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *tcon, /* If we get -ENOLCK back the lock may have already been removed. Don't exit in this case. */ if (rc && rc != -ENOLCK) { - cifs_delete_mid(midQ); + delete_mid(midQ); return rc; } } @@ -1576,19 +1616,21 @@ SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *tcon, rc = wait_for_response(server, midQ); if (rc) { send_cancel(server, &rqst, midQ); - spin_lock(&GlobalMid_Lock); + spin_lock(&server->mid_lock); if (midQ->mid_state == MID_REQUEST_SUBMITTED) { /* no longer considered to be "in-flight" */ - midQ->callback = DeleteMidQEntry; - spin_unlock(&GlobalMid_Lock); + midQ->callback = release_mid; + spin_unlock(&server->mid_lock); return rc; } - spin_unlock(&GlobalMid_Lock); + spin_unlock(&server->mid_lock); } /* We got the response - restart system call. */ rstart = 1; + spin_lock(&server->srv_lock); } + spin_unlock(&server->srv_lock); rc = cifs_sync_mid_result(midQ, server); if (rc != 0) @@ -1605,8 +1647,185 @@ SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *tcon, memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4); rc = cifs_check_receive(midQ, server, 0); out: - cifs_delete_mid(midQ); + delete_mid(midQ); if (rstart && rc == -EACCES) return -ERESTARTSYS; return rc; } + +/* + * Discard any remaining data in the current SMB. To do this, we borrow the + * current bigbuf. + */ +int +cifs_discard_remaining_data(struct TCP_Server_Info *server) +{ + unsigned int rfclen = server->pdu_size; + int remaining = rfclen + HEADER_PREAMBLE_SIZE(server) - + server->total_read; + + while (remaining > 0) { + int length; + + length = cifs_discard_from_socket(server, + min_t(size_t, remaining, + CIFSMaxBufSize + MAX_HEADER_SIZE(server))); + if (length < 0) + return length; + server->total_read += length; + remaining -= length; + } + + return 0; +} + +static int +__cifs_readv_discard(struct TCP_Server_Info *server, struct mid_q_entry *mid, + bool malformed) +{ + int length; + + length = cifs_discard_remaining_data(server); + dequeue_mid(mid, malformed); + mid->resp_buf = server->smallbuf; + server->smallbuf = NULL; + return length; +} + +static int +cifs_readv_discard(struct TCP_Server_Info *server, struct mid_q_entry *mid) +{ + struct cifs_readdata *rdata = mid->callback_data; + + return __cifs_readv_discard(server, mid, rdata->result); +} + +int +cifs_readv_receive(struct TCP_Server_Info *server, struct mid_q_entry *mid) +{ + int length, len; + unsigned int data_offset, data_len; + struct cifs_readdata *rdata = mid->callback_data; + char *buf = server->smallbuf; + unsigned int buflen = server->pdu_size + HEADER_PREAMBLE_SIZE(server); + bool use_rdma_mr = false; + + cifs_dbg(FYI, "%s: mid=%llu offset=%llu bytes=%u\n", + __func__, mid->mid, rdata->offset, rdata->bytes); + + /* + * read the rest of READ_RSP header (sans Data array), or whatever we + * can if there's not enough data. At this point, we've read down to + * the Mid. + */ + len = min_t(unsigned int, buflen, server->vals->read_rsp_size) - + HEADER_SIZE(server) + 1; + + length = cifs_read_from_socket(server, + buf + HEADER_SIZE(server) - 1, len); + if (length < 0) + return length; + server->total_read += length; + + if (server->ops->is_session_expired && + server->ops->is_session_expired(buf)) { + cifs_reconnect(server, true); + return -1; + } + + if (server->ops->is_status_pending && + server->ops->is_status_pending(buf, server)) { + cifs_discard_remaining_data(server); + return -1; + } + + /* set up first two iov for signature check and to get credits */ + rdata->iov[0].iov_base = buf; + rdata->iov[0].iov_len = HEADER_PREAMBLE_SIZE(server); + rdata->iov[1].iov_base = buf + HEADER_PREAMBLE_SIZE(server); + rdata->iov[1].iov_len = + server->total_read - HEADER_PREAMBLE_SIZE(server); + cifs_dbg(FYI, "0: iov_base=%p iov_len=%zu\n", + rdata->iov[0].iov_base, rdata->iov[0].iov_len); + cifs_dbg(FYI, "1: iov_base=%p iov_len=%zu\n", + rdata->iov[1].iov_base, rdata->iov[1].iov_len); + + /* Was the SMB read successful? */ + rdata->result = server->ops->map_error(buf, false); + if (rdata->result != 0) { + cifs_dbg(FYI, "%s: server returned error %d\n", + __func__, rdata->result); + /* normal error on read response */ + return __cifs_readv_discard(server, mid, false); + } + + /* Is there enough to get to the rest of the READ_RSP header? */ + if (server->total_read < server->vals->read_rsp_size) { + cifs_dbg(FYI, "%s: server returned short header. got=%u expected=%zu\n", + __func__, server->total_read, + server->vals->read_rsp_size); + rdata->result = -EIO; + return cifs_readv_discard(server, mid); + } + + data_offset = server->ops->read_data_offset(buf) + + HEADER_PREAMBLE_SIZE(server); + if (data_offset < server->total_read) { + /* + * win2k8 sometimes sends an offset of 0 when the read + * is beyond the EOF. Treat it as if the data starts just after + * the header. + */ + cifs_dbg(FYI, "%s: data offset (%u) inside read response header\n", + __func__, data_offset); + data_offset = server->total_read; + } else if (data_offset > MAX_CIFS_SMALL_BUFFER_SIZE) { + /* data_offset is beyond the end of smallbuf */ + cifs_dbg(FYI, "%s: data offset (%u) beyond end of smallbuf\n", + __func__, data_offset); + rdata->result = -EIO; + return cifs_readv_discard(server, mid); + } + + cifs_dbg(FYI, "%s: total_read=%u data_offset=%u\n", + __func__, server->total_read, data_offset); + + len = data_offset - server->total_read; + if (len > 0) { + /* read any junk before data into the rest of smallbuf */ + length = cifs_read_from_socket(server, + buf + server->total_read, len); + if (length < 0) + return length; + server->total_read += length; + } + + /* how much data is in the response? */ +#ifdef CONFIG_CIFS_SMB_DIRECT + use_rdma_mr = rdata->mr; +#endif + data_len = server->ops->read_data_length(buf, use_rdma_mr); + if (!use_rdma_mr && (data_offset + data_len > buflen)) { + /* data_len is corrupt -- discard frame */ + rdata->result = -EIO; + return cifs_readv_discard(server, mid); + } + + length = rdata->read_into_pages(server, rdata, data_len); + if (length < 0) + return length; + + server->total_read += length; + + cifs_dbg(FYI, "total_read=%u buflen=%u remaining=%u\n", + server->total_read, buflen, data_len); + + /* discard anything left over */ + if (server->total_read < buflen) + return cifs_readv_discard(server, mid); + + dequeue_mid(mid, false); + mid->resp_buf = server->smallbuf; + server->smallbuf = NULL; + return length; +} diff --git a/fs/cifs/xattr.c b/fs/cifs/xattr.c index 9d486fbbfbbde..786b4f6e1263a 100644 --- a/fs/cifs/xattr.c +++ b/fs/cifs/xattr.c @@ -150,10 +150,13 @@ static int cifs_xattr_set(const struct xattr_handler *handler, if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR) goto out; - if (pTcon->ses->server->ops->set_EA) + if (pTcon->ses->server->ops->set_EA) { rc = pTcon->ses->server->ops->set_EA(xid, pTcon, full_path, name, value, (__u16)size, cifs_sb->local_nls, cifs_sb); + if (rc == 0) + inode_set_ctime_current(inode); + } break; case XATTR_CIFS_ACL: @@ -201,6 +204,7 @@ static int cifs_xattr_set(const struct xattr_handler *handler, break; } +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY case XATTR_ACL_ACCESS: #ifdef CONFIG_CIFS_POSIX if (!value) @@ -224,6 +228,7 @@ static int cifs_xattr_set(const struct xattr_handler *handler, cifs_remap(cifs_sb)); #endif /* CONFIG_CIFS_POSIX */ break; +#endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ } out: @@ -364,7 +369,7 @@ static int cifs_xattr_get(const struct xattr_handler *handler, } break; } - +#ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY case XATTR_ACL_ACCESS: #ifdef CONFIG_CIFS_POSIX if (sb->s_flags & SB_POSIXACL) @@ -384,6 +389,7 @@ static int cifs_xattr_get(const struct xattr_handler *handler, cifs_remap(cifs_sb)); #endif /* CONFIG_CIFS_POSIX */ break; +#endif /* ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY */ } /* We could add an additional check for streams ie diff --git a/fs/dlm/plock.c b/fs/dlm/plock.c index 28735e8c5e206..5f2e2fa2ba090 100644 --- a/fs/dlm/plock.c +++ b/fs/dlm/plock.c @@ -466,7 +466,8 @@ static ssize_t dev_write(struct file *file, const char __user *u, size_t count, } } else { list_for_each_entry(iter, &recv_list, list) { - if (!iter->info.wait) { + if (!iter->info.wait && + iter->info.fsid == info.fsid) { op = iter; break; } @@ -478,8 +479,7 @@ static ssize_t dev_write(struct file *file, const char __user *u, size_t count, if (info.wait) WARN_ON(op->info.optype != DLM_PLOCK_OP_LOCK); else - WARN_ON(op->info.fsid != info.fsid || - op->info.number != info.number || + WARN_ON(op->info.number != info.number || op->info.owner != info.owner || op->info.optype != info.optype); diff --git a/fs/eventfd.c b/fs/eventfd.c index 249ca6c0b7843..4a60ea932e3d9 100644 --- a/fs/eventfd.c +++ b/fs/eventfd.c @@ -189,7 +189,7 @@ void eventfd_ctx_do_read(struct eventfd_ctx *ctx, __u64 *cnt) { lockdep_assert_held(&ctx->wqh.lock); - *cnt = (ctx->flags & EFD_SEMAPHORE) ? 1 : ctx->count; + *cnt = ((ctx->flags & EFD_SEMAPHORE) && ctx->count) ? 1 : ctx->count; ctx->count -= *cnt; } EXPORT_SYMBOL_GPL(eventfd_ctx_do_read); diff --git a/fs/exfat/namei.c b/fs/exfat/namei.c index b22d6c984f8c7..cfa46d8cf5b39 100644 --- a/fs/exfat/namei.c +++ b/fs/exfat/namei.c @@ -330,14 +330,20 @@ static int exfat_find_empty_entry(struct inode *inode, if (exfat_check_max_dentries(inode)) return -ENOSPC; - /* we trust p_dir->size regardless of FAT type */ - if (exfat_find_last_cluster(sb, p_dir, &last_clu)) - return -EIO; - /* * Allocate new cluster to this directory */ - exfat_chain_set(&clu, last_clu + 1, 0, p_dir->flags); + if (ei->start_clu != EXFAT_EOF_CLUSTER) { + /* we trust p_dir->size regardless of FAT type */ + if (exfat_find_last_cluster(sb, p_dir, &last_clu)) + return -EIO; + + exfat_chain_set(&clu, last_clu + 1, 0, p_dir->flags); + } else { + /* This directory is empty */ + exfat_chain_set(&clu, EXFAT_EOF_CLUSTER, 0, + ALLOC_NO_FAT_CHAIN); + } /* allocate a cluster */ ret = exfat_alloc_cluster(inode, 1, &clu, IS_DIRSYNC(inode)); @@ -347,6 +353,11 @@ static int exfat_find_empty_entry(struct inode *inode, if (exfat_zeroed_cluster(inode, clu.dir)) return -EIO; + if (ei->start_clu == EXFAT_EOF_CLUSTER) { + ei->start_clu = clu.dir; + p_dir->dir = clu.dir; + } + /* append to the FAT chain */ if (clu.flags != p_dir->flags) { /* no-fat-chain bit is disabled, @@ -644,7 +655,7 @@ static int exfat_find(struct inode *dir, struct qstr *qname, info->type = exfat_get_entry_type(ep); info->attr = le16_to_cpu(ep->dentry.file.attr); info->size = le64_to_cpu(ep2->dentry.stream.valid_size); - if ((info->type == TYPE_FILE) && (info->size == 0)) { + if (info->size == 0) { info->flags = ALLOC_NO_FAT_CHAIN; info->start_clu = EXFAT_EOF_CLUSTER; } else { @@ -891,6 +902,9 @@ static int exfat_check_dir_empty(struct super_block *sb, dentries_per_clu = sbi->dentries_per_clu; + if (p_dir->dir == EXFAT_EOF_CLUSTER) + return 0; + exfat_chain_dup(&clu, p_dir); while (clu.dir != EXFAT_EOF_CLUSTER) { @@ -1274,7 +1288,8 @@ static int __exfat_rename(struct inode *old_parent_inode, } /* Free the clusters if new_inode is a dir(as if exfat_rmdir) */ - if (new_entry_type == TYPE_DIR) { + if (new_entry_type == TYPE_DIR && + new_ei->start_clu != EXFAT_EOF_CLUSTER) { /* new_ei, new_clu_to_free */ struct exfat_chain new_clu_to_free; diff --git a/fs/ext2/xattr.c b/fs/ext2/xattr.c index 841fa6d9d744b..f1dc11dab0d88 100644 --- a/fs/ext2/xattr.c +++ b/fs/ext2/xattr.c @@ -694,10 +694,10 @@ ext2_xattr_set2(struct inode *inode, struct buffer_head *old_bh, /* We need to allocate a new block */ ext2_fsblk_t goal = ext2_group_first_block_no(sb, EXT2_I(inode)->i_block_group); - int block = ext2_new_block(inode, goal, &error); + ext2_fsblk_t block = ext2_new_block(inode, goal, &error); if (error) goto cleanup; - ea_idebug(inode, "creating block %d", block); + ea_idebug(inode, "creating block %lu", block); new_bh = sb_getblk(sb, block); if (unlikely(!new_bh)) { diff --git a/fs/ext4/acl.h b/fs/ext4/acl.h index 3219669732bf4..0db6ae0ca9369 100644 --- a/fs/ext4/acl.h +++ b/fs/ext4/acl.h @@ -68,6 +68,11 @@ extern int ext4_init_acl(handle_t *, struct inode *, struct inode *); static inline int ext4_init_acl(handle_t *handle, struct inode *inode, struct inode *dir) { + /* usually, the umask is applied by posix_acl_create(), but if + ext4 ACL support is disabled at compile time, we need to do + it here, because posix_acl_create() will never be called */ + inode->i_mode &= ~current_umask(); + return 0; } #endif /* CONFIG_EXT4_FS_POSIX_ACL */ diff --git a/fs/ext4/balloc.c b/fs/ext4/balloc.c index 7649376fd93d3..c23ac149601e5 100644 --- a/fs/ext4/balloc.c +++ b/fs/ext4/balloc.c @@ -909,11 +909,11 @@ unsigned long ext4_bg_num_gdb(struct super_block *sb, ext4_group_t group) } /* - * This function returns the number of file system metadata clusters at + * This function returns the number of file system metadata blocks at * the beginning of a block group, including the reserved gdt blocks. */ -static unsigned ext4_num_base_meta_clusters(struct super_block *sb, - ext4_group_t block_group) +unsigned int ext4_num_base_meta_blocks(struct super_block *sb, + ext4_group_t block_group) { struct ext4_sb_info *sbi = EXT4_SB(sb); unsigned num; @@ -931,8 +931,15 @@ static unsigned ext4_num_base_meta_clusters(struct super_block *sb, } else { /* For META_BG_BLOCK_GROUPS */ num += ext4_bg_num_gdb(sb, block_group); } - return EXT4_NUM_B2C(sbi, num); + return num; } + +static unsigned int ext4_num_base_meta_clusters(struct super_block *sb, + ext4_group_t block_group) +{ + return EXT4_NUM_B2C(EXT4_SB(sb), ext4_num_base_meta_blocks(sb, block_group)); +} + /** * ext4_inode_to_goal_block - return a hint for block allocation * @inode: inode for block allocation diff --git a/fs/ext4/block_validity.c b/fs/ext4/block_validity.c index 5504f72bbbbe7..6fe3c941b5651 100644 --- a/fs/ext4/block_validity.c +++ b/fs/ext4/block_validity.c @@ -215,7 +215,6 @@ int ext4_setup_system_zone(struct super_block *sb) struct ext4_system_blocks *system_blks; struct ext4_group_desc *gdp; ext4_group_t i; - int flex_size = ext4_flex_bg_size(sbi); int ret; system_blks = kzalloc(sizeof(*system_blks), GFP_KERNEL); @@ -223,12 +222,13 @@ int ext4_setup_system_zone(struct super_block *sb) return -ENOMEM; for (i=0; i < ngroups; i++) { + unsigned int meta_blks = ext4_num_base_meta_blocks(sb, i); + cond_resched(); - if (ext4_bg_has_super(sb, i) && - ((i < 5) || ((i % flex_size) == 0))) { + if (meta_blks != 0) { ret = add_system_zone(system_blks, ext4_group_first_block_no(sb, i), - ext4_bg_num_gdb(sb, i) + 1, 0); + meta_blks, 0); if (ret) goto err; } diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h index bbe69446805f5..bdafa606b793e 100644 --- a/fs/ext4/ext4.h +++ b/fs/ext4/ext4.h @@ -1656,7 +1656,7 @@ struct ext4_sb_info { struct task_struct *s_mmp_tsk; /* record the last minlen when FITRIM is called. */ - atomic_t s_last_trim_minblks; + unsigned long s_last_trim_minblks; /* Reference to checksum algorithm driver via cryptoapi */ struct crypto_shash *s_chksum_driver; @@ -3122,6 +3122,8 @@ extern const char *ext4_decode_error(struct super_block *sb, int errno, extern void ext4_mark_group_bitmap_corrupted(struct super_block *sb, ext4_group_t block_group, unsigned int flags); +extern unsigned int ext4_num_base_meta_blocks(struct super_block *sb, + ext4_group_t block_group); extern __printf(7, 8) void __ext4_error(struct super_block *, const char *, unsigned int, bool, diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index 13497bd4e14bb..592be39e3d51f 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c @@ -1004,6 +1004,11 @@ static int ext4_ext_insert_index(handle_t *handle, struct inode *inode, ix = curp->p_idx; } + if (unlikely(ix > EXT_MAX_INDEX(curp->p_hdr))) { + EXT4_ERROR_INODE(inode, "ix > EXT_MAX_INDEX!"); + return -EFSCORRUPTED; + } + len = EXT_LAST_INDEX(curp->p_hdr) - ix + 1; BUG_ON(len < 0); if (len > 0) { @@ -1013,11 +1018,6 @@ static int ext4_ext_insert_index(handle_t *handle, struct inode *inode, memmove(ix + 1, ix, len * sizeof(struct ext4_extent_idx)); } - if (unlikely(ix > EXT_MAX_INDEX(curp->p_hdr))) { - EXT4_ERROR_INODE(inode, "ix > EXT_MAX_INDEX!"); - return -EFSCORRUPTED; - } - ix->ei_block = cpu_to_le32(logical); ext4_idx_store_pblock(ix, ptr); le16_add_cpu(&curp->p_hdr->eh_entries, 1); diff --git a/fs/ext4/extents_status.c b/fs/ext4/extents_status.c index fee54ab42bbaa..cccbdfd49a86b 100644 --- a/fs/ext4/extents_status.c +++ b/fs/ext4/extents_status.c @@ -144,14 +144,17 @@ static struct kmem_cache *ext4_es_cachep; static struct kmem_cache *ext4_pending_cachep; -static int __es_insert_extent(struct inode *inode, struct extent_status *newes); +static int __es_insert_extent(struct inode *inode, struct extent_status *newes, + struct extent_status *prealloc); static int __es_remove_extent(struct inode *inode, ext4_lblk_t lblk, - ext4_lblk_t end, int *reserved); + ext4_lblk_t end, int *reserved, + struct extent_status *prealloc); static int es_reclaim_extents(struct ext4_inode_info *ei, int *nr_to_scan); static int __es_shrink(struct ext4_sb_info *sbi, int nr_to_scan, struct ext4_inode_info *locked_ei); -static void __revise_pending(struct inode *inode, ext4_lblk_t lblk, - ext4_lblk_t len); +static int __revise_pending(struct inode *inode, ext4_lblk_t lblk, + ext4_lblk_t len, + struct pending_reservation **prealloc); int __init ext4_init_es(void) { @@ -448,22 +451,49 @@ static void ext4_es_list_del(struct inode *inode) spin_unlock(&sbi->s_es_lock); } -static struct extent_status * -ext4_es_alloc_extent(struct inode *inode, ext4_lblk_t lblk, ext4_lblk_t len, - ext4_fsblk_t pblk) +static inline struct pending_reservation *__alloc_pending(bool nofail) +{ + if (!nofail) + return kmem_cache_alloc(ext4_pending_cachep, GFP_ATOMIC); + + return kmem_cache_zalloc(ext4_pending_cachep, GFP_KERNEL | __GFP_NOFAIL); +} + +static inline void __free_pending(struct pending_reservation *pr) +{ + kmem_cache_free(ext4_pending_cachep, pr); +} + +/* + * Returns true if we cannot fail to allocate memory for this extent_status + * entry and cannot reclaim it until its status changes. + */ +static inline bool ext4_es_must_keep(struct extent_status *es) +{ + /* fiemap, bigalloc, and seek_data/hole need to use it. */ + if (ext4_es_is_delayed(es)) + return true; + + return false; +} + +static inline struct extent_status *__es_alloc_extent(bool nofail) +{ + if (!nofail) + return kmem_cache_alloc(ext4_es_cachep, GFP_ATOMIC); + + return kmem_cache_zalloc(ext4_es_cachep, GFP_KERNEL | __GFP_NOFAIL); +} + +static void ext4_es_init_extent(struct inode *inode, struct extent_status *es, + ext4_lblk_t lblk, ext4_lblk_t len, ext4_fsblk_t pblk) { - struct extent_status *es; - es = kmem_cache_alloc(ext4_es_cachep, GFP_ATOMIC); - if (es == NULL) - return NULL; es->es_lblk = lblk; es->es_len = len; es->es_pblk = pblk; - /* - * We don't count delayed extent because we never try to reclaim them - */ - if (!ext4_es_is_delayed(es)) { + /* We never try to reclaim a must kept extent, so we don't count it. */ + if (!ext4_es_must_keep(es)) { if (!EXT4_I(inode)->i_es_shk_nr++) ext4_es_list_add(inode); percpu_counter_inc(&EXT4_SB(inode->i_sb)-> @@ -472,8 +502,11 @@ ext4_es_alloc_extent(struct inode *inode, ext4_lblk_t lblk, ext4_lblk_t len, EXT4_I(inode)->i_es_all_nr++; percpu_counter_inc(&EXT4_SB(inode->i_sb)->s_es_stats.es_stats_all_cnt); +} - return es; +static inline void __es_free_extent(struct extent_status *es) +{ + kmem_cache_free(ext4_es_cachep, es); } static void ext4_es_free_extent(struct inode *inode, struct extent_status *es) @@ -481,8 +514,8 @@ static void ext4_es_free_extent(struct inode *inode, struct extent_status *es) EXT4_I(inode)->i_es_all_nr--; percpu_counter_dec(&EXT4_SB(inode->i_sb)->s_es_stats.es_stats_all_cnt); - /* Decrease the shrink counter when this es is not delayed */ - if (!ext4_es_is_delayed(es)) { + /* Decrease the shrink counter when we can reclaim the extent. */ + if (!ext4_es_must_keep(es)) { BUG_ON(EXT4_I(inode)->i_es_shk_nr == 0); if (!--EXT4_I(inode)->i_es_shk_nr) ext4_es_list_del(inode); @@ -490,7 +523,7 @@ static void ext4_es_free_extent(struct inode *inode, struct extent_status *es) s_es_stats.es_stats_shk_cnt); } - kmem_cache_free(ext4_es_cachep, es); + __es_free_extent(es); } /* @@ -752,7 +785,8 @@ static inline void ext4_es_insert_extent_check(struct inode *inode, } #endif -static int __es_insert_extent(struct inode *inode, struct extent_status *newes) +static int __es_insert_extent(struct inode *inode, struct extent_status *newes, + struct extent_status *prealloc) { struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree; struct rb_node **p = &tree->root.rb_node; @@ -792,10 +826,15 @@ static int __es_insert_extent(struct inode *inode, struct extent_status *newes) } } - es = ext4_es_alloc_extent(inode, newes->es_lblk, newes->es_len, - newes->es_pblk); + if (prealloc) + es = prealloc; + else + es = __es_alloc_extent(false); if (!es) return -ENOMEM; + ext4_es_init_extent(inode, es, newes->es_lblk, newes->es_len, + newes->es_pblk); + rb_link_node(&es->rb_node, parent, p); rb_insert_color(&es->rb_node, &tree->root); @@ -816,8 +855,12 @@ int ext4_es_insert_extent(struct inode *inode, ext4_lblk_t lblk, { struct extent_status newes; ext4_lblk_t end = lblk + len - 1; - int err = 0; + int err1 = 0, err2 = 0, err3 = 0; struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); + struct extent_status *es1 = NULL; + struct extent_status *es2 = NULL; + struct pending_reservation *pr = NULL; + bool revise_pending = false; if (EXT4_SB(inode->i_sb)->s_mount_state & EXT4_FC_REPLAY) return 0; @@ -845,29 +888,57 @@ int ext4_es_insert_extent(struct inode *inode, ext4_lblk_t lblk, ext4_es_insert_extent_check(inode, &newes); + revise_pending = sbi->s_cluster_ratio > 1 && + test_opt(inode->i_sb, DELALLOC) && + (status & (EXTENT_STATUS_WRITTEN | + EXTENT_STATUS_UNWRITTEN)); +retry: + if (err1 && !es1) + es1 = __es_alloc_extent(true); + if ((err1 || err2) && !es2) + es2 = __es_alloc_extent(true); + if ((err1 || err2 || err3) && revise_pending && !pr) + pr = __alloc_pending(true); write_lock(&EXT4_I(inode)->i_es_lock); - err = __es_remove_extent(inode, lblk, end, NULL); - if (err != 0) + + err1 = __es_remove_extent(inode, lblk, end, NULL, es1); + if (err1 != 0) goto error; -retry: - err = __es_insert_extent(inode, &newes); - if (err == -ENOMEM && __es_shrink(EXT4_SB(inode->i_sb), - 128, EXT4_I(inode))) - goto retry; - if (err == -ENOMEM && !ext4_es_is_delayed(&newes)) - err = 0; + /* Free preallocated extent if it didn't get used. */ + if (es1) { + if (!es1->es_len) + __es_free_extent(es1); + es1 = NULL; + } - if (sbi->s_cluster_ratio > 1 && test_opt(inode->i_sb, DELALLOC) && - (status & EXTENT_STATUS_WRITTEN || - status & EXTENT_STATUS_UNWRITTEN)) - __revise_pending(inode, lblk, len); + err2 = __es_insert_extent(inode, &newes, es2); + if (err2 == -ENOMEM && !ext4_es_must_keep(&newes)) + err2 = 0; + if (err2 != 0) + goto error; + /* Free preallocated extent if it didn't get used. */ + if (es2) { + if (!es2->es_len) + __es_free_extent(es2); + es2 = NULL; + } + if (revise_pending) { + err3 = __revise_pending(inode, lblk, len, &pr); + if (err3 != 0) + goto error; + if (pr) { + __free_pending(pr); + pr = NULL; + } + } error: write_unlock(&EXT4_I(inode)->i_es_lock); + if (err1 || err2 || err3) + goto retry; ext4_es_print_tree(inode); - - return err; + return 0; } /* @@ -900,7 +971,7 @@ void ext4_es_cache_extent(struct inode *inode, ext4_lblk_t lblk, es = __es_tree_search(&EXT4_I(inode)->i_es_tree.root, lblk); if (!es || es->es_lblk > end) - __es_insert_extent(inode, &newes); + __es_insert_extent(inode, &newes, NULL); write_unlock(&EXT4_I(inode)->i_es_lock); } @@ -1271,7 +1342,7 @@ static unsigned int get_rsvd(struct inode *inode, ext4_lblk_t end, rc->ndelonly--; node = rb_next(&pr->rb_node); rb_erase(&pr->rb_node, &tree->root); - kmem_cache_free(ext4_pending_cachep, pr); + __free_pending(pr); if (!node) break; pr = rb_entry(node, struct pending_reservation, @@ -1290,6 +1361,7 @@ static unsigned int get_rsvd(struct inode *inode, ext4_lblk_t end, * @lblk - first block in range * @end - last block in range * @reserved - number of cluster reservations released + * @prealloc - pre-allocated es to avoid memory allocation failures * * If @reserved is not NULL and delayed allocation is enabled, counts * block/cluster reservations freed by removing range and if bigalloc @@ -1297,7 +1369,8 @@ static unsigned int get_rsvd(struct inode *inode, ext4_lblk_t end, * error code on failure. */ static int __es_remove_extent(struct inode *inode, ext4_lblk_t lblk, - ext4_lblk_t end, int *reserved) + ext4_lblk_t end, int *reserved, + struct extent_status *prealloc) { struct ext4_es_tree *tree = &EXT4_I(inode)->i_es_tree; struct rb_node *node; @@ -1305,14 +1378,12 @@ static int __es_remove_extent(struct inode *inode, ext4_lblk_t lblk, struct extent_status orig_es; ext4_lblk_t len1, len2; ext4_fsblk_t block; - int err; + int err = 0; bool count_reserved = true; struct rsvd_count rc; if (reserved == NULL || !test_opt(inode->i_sb, DELALLOC)) count_reserved = false; -retry: - err = 0; es = __es_tree_search(&tree->root, lblk); if (!es) @@ -1346,14 +1417,13 @@ static int __es_remove_extent(struct inode *inode, ext4_lblk_t lblk, orig_es.es_len - len2; ext4_es_store_pblock_status(&newes, block, ext4_es_status(&orig_es)); - err = __es_insert_extent(inode, &newes); + err = __es_insert_extent(inode, &newes, prealloc); if (err) { + if (!ext4_es_must_keep(&newes)) + return 0; + es->es_lblk = orig_es.es_lblk; es->es_len = orig_es.es_len; - if ((err == -ENOMEM) && - __es_shrink(EXT4_SB(inode->i_sb), - 128, EXT4_I(inode))) - goto retry; goto out; } } else { @@ -1366,8 +1436,8 @@ static int __es_remove_extent(struct inode *inode, ext4_lblk_t lblk, } } if (count_reserved) - count_rsvd(inode, lblk, orig_es.es_len - len1 - len2, - &orig_es, &rc); + count_rsvd(inode, orig_es.es_lblk + len1, + orig_es.es_len - len1 - len2, &orig_es, &rc); goto out_get_reserved; } @@ -1433,6 +1503,7 @@ int ext4_es_remove_extent(struct inode *inode, ext4_lblk_t lblk, ext4_lblk_t end; int err = 0; int reserved = 0; + struct extent_status *es = NULL; if (EXT4_SB(inode->i_sb)->s_mount_state & EXT4_FC_REPLAY) return 0; @@ -1447,17 +1518,29 @@ int ext4_es_remove_extent(struct inode *inode, ext4_lblk_t lblk, end = lblk + len - 1; BUG_ON(end < lblk); +retry: + if (err && !es) + es = __es_alloc_extent(true); /* * ext4_clear_inode() depends on us taking i_es_lock unconditionally * so that we are sure __es_shrink() is done with the inode before it * is reclaimed. */ write_lock(&EXT4_I(inode)->i_es_lock); - err = __es_remove_extent(inode, lblk, end, &reserved); + err = __es_remove_extent(inode, lblk, end, &reserved, es); + /* Free preallocated extent if it didn't get used. */ + if (es) { + if (!es->es_len) + __es_free_extent(es); + es = NULL; + } write_unlock(&EXT4_I(inode)->i_es_lock); + if (err) + goto retry; + ext4_es_print_tree(inode); ext4_da_release_space(inode, reserved); - return err; + return 0; } static int __es_shrink(struct ext4_sb_info *sbi, int nr_to_scan, @@ -1704,11 +1787,8 @@ static int es_do_reclaim_extents(struct ext4_inode_info *ei, ext4_lblk_t end, (*nr_to_scan)--; node = rb_next(&es->rb_node); - /* - * We can't reclaim delayed extent from status tree because - * fiemap, bigallic, and seek_data/hole need to use it. - */ - if (ext4_es_is_delayed(es)) + + if (ext4_es_must_keep(es)) goto next; if (ext4_es_is_referenced(es)) { ext4_es_clear_referenced(es); @@ -1772,7 +1852,7 @@ void ext4_clear_inode_es(struct inode *inode) while (node) { es = rb_entry(node, struct extent_status, rb_node); node = rb_next(node); - if (!ext4_es_is_delayed(es)) { + if (!ext4_es_must_keep(es)) { rb_erase(&es->rb_node, &tree->root); ext4_es_free_extent(inode, es); } @@ -1859,11 +1939,13 @@ static struct pending_reservation *__get_pending(struct inode *inode, * * @inode - file containing the cluster * @lblk - logical block in the cluster to be added + * @prealloc - preallocated pending entry * * Returns 0 on successful insertion and -ENOMEM on failure. If the * pending reservation is already in the set, returns successfully. */ -static int __insert_pending(struct inode *inode, ext4_lblk_t lblk) +static int __insert_pending(struct inode *inode, ext4_lblk_t lblk, + struct pending_reservation **prealloc) { struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); struct ext4_pending_tree *tree = &EXT4_I(inode)->i_pending_tree; @@ -1889,10 +1971,15 @@ static int __insert_pending(struct inode *inode, ext4_lblk_t lblk) } } - pr = kmem_cache_alloc(ext4_pending_cachep, GFP_ATOMIC); - if (pr == NULL) { - ret = -ENOMEM; - goto out; + if (likely(*prealloc == NULL)) { + pr = __alloc_pending(false); + if (!pr) { + ret = -ENOMEM; + goto out; + } + } else { + pr = *prealloc; + *prealloc = NULL; } pr->lclu = lclu; @@ -1922,7 +2009,7 @@ static void __remove_pending(struct inode *inode, ext4_lblk_t lblk) if (pr != NULL) { tree = &EXT4_I(inode)->i_pending_tree; rb_erase(&pr->rb_node, &tree->root); - kmem_cache_free(ext4_pending_cachep, pr); + __free_pending(pr); } } @@ -1983,7 +2070,10 @@ int ext4_es_insert_delayed_block(struct inode *inode, ext4_lblk_t lblk, bool allocated) { struct extent_status newes; - int err = 0; + int err1 = 0, err2 = 0, err3 = 0; + struct extent_status *es1 = NULL; + struct extent_status *es2 = NULL; + struct pending_reservation *pr = NULL; if (EXT4_SB(inode->i_sb)->s_mount_state & EXT4_FC_REPLAY) return 0; @@ -1998,29 +2088,52 @@ int ext4_es_insert_delayed_block(struct inode *inode, ext4_lblk_t lblk, ext4_es_insert_extent_check(inode, &newes); +retry: + if (err1 && !es1) + es1 = __es_alloc_extent(true); + if ((err1 || err2) && !es2) + es2 = __es_alloc_extent(true); + if ((err1 || err2 || err3) && allocated && !pr) + pr = __alloc_pending(true); write_lock(&EXT4_I(inode)->i_es_lock); - err = __es_remove_extent(inode, lblk, lblk, NULL); - if (err != 0) - goto error; -retry: - err = __es_insert_extent(inode, &newes); - if (err == -ENOMEM && __es_shrink(EXT4_SB(inode->i_sb), - 128, EXT4_I(inode))) - goto retry; - if (err != 0) + err1 = __es_remove_extent(inode, lblk, lblk, NULL, es1); + if (err1 != 0) goto error; + /* Free preallocated extent if it didn't get used. */ + if (es1) { + if (!es1->es_len) + __es_free_extent(es1); + es1 = NULL; + } - if (allocated) - __insert_pending(inode, lblk); + err2 = __es_insert_extent(inode, &newes, es2); + if (err2 != 0) + goto error; + /* Free preallocated extent if it didn't get used. */ + if (es2) { + if (!es2->es_len) + __es_free_extent(es2); + es2 = NULL; + } + if (allocated) { + err3 = __insert_pending(inode, lblk, &pr); + if (err3 != 0) + goto error; + if (pr) { + __free_pending(pr); + pr = NULL; + } + } error: write_unlock(&EXT4_I(inode)->i_es_lock); + if (err1 || err2 || err3) + goto retry; ext4_es_print_tree(inode); ext4_print_pending_tree(inode); - - return err; + return 0; } /* @@ -2121,21 +2234,24 @@ unsigned int ext4_es_delayed_clu(struct inode *inode, ext4_lblk_t lblk, * @inode - file containing the range * @lblk - logical block defining the start of range * @len - length of range in blocks + * @prealloc - preallocated pending entry * * Used after a newly allocated extent is added to the extents status tree. * Requires that the extents in the range have either written or unwritten * status. Must be called while holding i_es_lock. */ -static void __revise_pending(struct inode *inode, ext4_lblk_t lblk, - ext4_lblk_t len) +static int __revise_pending(struct inode *inode, ext4_lblk_t lblk, + ext4_lblk_t len, + struct pending_reservation **prealloc) { struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); ext4_lblk_t end = lblk + len - 1; ext4_lblk_t first, last; bool f_del = false, l_del = false; + int ret = 0; if (len == 0) - return; + return 0; /* * Two cases - block range within single cluster and block range @@ -2156,7 +2272,9 @@ static void __revise_pending(struct inode *inode, ext4_lblk_t lblk, f_del = __es_scan_range(inode, &ext4_es_is_delonly, first, lblk - 1); if (f_del) { - __insert_pending(inode, first); + ret = __insert_pending(inode, first, prealloc); + if (ret < 0) + goto out; } else { last = EXT4_LBLK_CMASK(sbi, end) + sbi->s_cluster_ratio - 1; @@ -2164,9 +2282,11 @@ static void __revise_pending(struct inode *inode, ext4_lblk_t lblk, l_del = __es_scan_range(inode, &ext4_es_is_delonly, end + 1, last); - if (l_del) - __insert_pending(inode, last); - else + if (l_del) { + ret = __insert_pending(inode, last, prealloc); + if (ret < 0) + goto out; + } else __remove_pending(inode, last); } } else { @@ -2174,18 +2294,24 @@ static void __revise_pending(struct inode *inode, ext4_lblk_t lblk, if (first != lblk) f_del = __es_scan_range(inode, &ext4_es_is_delonly, first, lblk - 1); - if (f_del) - __insert_pending(inode, first); - else + if (f_del) { + ret = __insert_pending(inode, first, prealloc); + if (ret < 0) + goto out; + } else __remove_pending(inode, first); last = EXT4_LBLK_CMASK(sbi, end) + sbi->s_cluster_ratio - 1; if (last != end) l_del = __es_scan_range(inode, &ext4_es_is_delonly, end + 1, last); - if (l_del) - __insert_pending(inode, last); - else + if (l_del) { + ret = __insert_pending(inode, last, prealloc); + if (ret < 0) + goto out; + } else __remove_pending(inode, last); } +out: + return ret; } diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index 47c28e3582fd8..f3dc84ff0efaf 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c @@ -16,6 +16,7 @@ #include #include #include +#include #include /* @@ -1011,8 +1012,9 @@ static inline int should_optimize_scan(struct ext4_allocation_context *ac) * Return next linear group for allocation. If linear traversal should not be * performed, this function just returns the same group */ -static int -next_linear_group(struct ext4_allocation_context *ac, int group, int ngroups) +static ext4_group_t +next_linear_group(struct ext4_allocation_context *ac, ext4_group_t group, + ext4_group_t ngroups) { if (!should_optimize_scan(ac)) goto inc_and_return; @@ -2445,7 +2447,7 @@ static bool ext4_mb_good_group(struct ext4_allocation_context *ac, BUG_ON(cr < 0 || cr >= 4); - if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(grp) || !grp)) + if (unlikely(!grp || EXT4_MB_GRP_BBITMAP_CORRUPT(grp))) return false; free = grp->bb_free; @@ -4047,8 +4049,7 @@ ext4_mb_normalize_request(struct ext4_allocation_context *ac, struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb); struct ext4_super_block *es = sbi->s_es; int bsbits, max; - ext4_lblk_t end; - loff_t size, start_off; + loff_t size, start_off, end; loff_t orig_size __maybe_unused; ext4_lblk_t start; struct ext4_inode_info *ei = EXT4_I(ac->ac_inode); @@ -4077,7 +4078,7 @@ ext4_mb_normalize_request(struct ext4_allocation_context *ac, /* first, let's learn actual file size * given current request is allocated */ - size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len); + size = extent_logical_end(sbi, &ac->ac_o_ex); size = size << bsbits; if (size < i_size_read(ac->ac_inode)) size = i_size_read(ac->ac_inode); @@ -4156,7 +4157,7 @@ ext4_mb_normalize_request(struct ext4_allocation_context *ac, /* check we don't cross already preallocated blocks */ rcu_read_lock(); list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) { - ext4_lblk_t pa_end; + loff_t pa_end; if (pa->pa_deleted) continue; @@ -4166,8 +4167,7 @@ ext4_mb_normalize_request(struct ext4_allocation_context *ac, continue; } - pa_end = pa->pa_lstart + EXT4_C2B(EXT4_SB(ac->ac_sb), - pa->pa_len); + pa_end = pa_logical_end(EXT4_SB(ac->ac_sb), pa); /* PA must not overlap original request */ BUG_ON(!(ac->ac_o_ex.fe_logical >= pa_end || @@ -4196,12 +4196,11 @@ ext4_mb_normalize_request(struct ext4_allocation_context *ac, /* XXX: extra loop to check we really don't overlap preallocations */ rcu_read_lock(); list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) { - ext4_lblk_t pa_end; + loff_t pa_end; spin_lock(&pa->pa_lock); if (pa->pa_deleted == 0) { - pa_end = pa->pa_lstart + EXT4_C2B(EXT4_SB(ac->ac_sb), - pa->pa_len); + pa_end = pa_logical_end(EXT4_SB(ac->ac_sb), pa); BUG_ON(!(start >= pa_end || end <= pa->pa_lstart)); } spin_unlock(&pa->pa_lock); @@ -4417,8 +4416,7 @@ ext4_mb_use_preallocated(struct ext4_allocation_context *ac) /* all fields in this condition don't change, * so we can skip locking for them */ if (ac->ac_o_ex.fe_logical < pa->pa_lstart || - ac->ac_o_ex.fe_logical >= (pa->pa_lstart + - EXT4_C2B(sbi, pa->pa_len))) + ac->ac_o_ex.fe_logical >= pa_logical_end(sbi, pa)) continue; /* non-extent files can't have physical blocks past 2^32 */ @@ -4663,8 +4661,11 @@ ext4_mb_new_inode_pa(struct ext4_allocation_context *ac) pa = ac->ac_pa; if (ac->ac_b_ex.fe_len < ac->ac_g_ex.fe_len) { - int new_bex_start; - int new_bex_end; + struct ext4_free_extent ex = { + .fe_logical = ac->ac_g_ex.fe_logical, + .fe_len = ac->ac_g_ex.fe_len, + }; + loff_t orig_goal_end = extent_logical_end(sbi, &ex); /* we can't allocate as much as normalizer wants. * so, found space must get proper lstart @@ -4683,29 +4684,23 @@ ext4_mb_new_inode_pa(struct ext4_allocation_context *ac) * still cover original start * 3. Else, keep the best ex at start of original request. */ - new_bex_end = ac->ac_g_ex.fe_logical + - EXT4_C2B(sbi, ac->ac_g_ex.fe_len); - new_bex_start = new_bex_end - EXT4_C2B(sbi, ac->ac_b_ex.fe_len); - if (ac->ac_o_ex.fe_logical >= new_bex_start) - goto adjust_bex; + ex.fe_len = ac->ac_b_ex.fe_len; - new_bex_start = ac->ac_g_ex.fe_logical; - new_bex_end = - new_bex_start + EXT4_C2B(sbi, ac->ac_b_ex.fe_len); - if (ac->ac_o_ex.fe_logical < new_bex_end) + ex.fe_logical = orig_goal_end - EXT4_C2B(sbi, ex.fe_len); + if (ac->ac_o_ex.fe_logical >= ex.fe_logical) goto adjust_bex; - new_bex_start = ac->ac_o_ex.fe_logical; - new_bex_end = - new_bex_start + EXT4_C2B(sbi, ac->ac_b_ex.fe_len); + ex.fe_logical = ac->ac_g_ex.fe_logical; + if (ac->ac_o_ex.fe_logical < extent_logical_end(sbi, &ex)) + goto adjust_bex; + ex.fe_logical = ac->ac_o_ex.fe_logical; adjust_bex: - ac->ac_b_ex.fe_logical = new_bex_start; + ac->ac_b_ex.fe_logical = ex.fe_logical; BUG_ON(ac->ac_o_ex.fe_logical < ac->ac_b_ex.fe_logical); BUG_ON(ac->ac_o_ex.fe_len > ac->ac_b_ex.fe_len); - BUG_ON(new_bex_end > (ac->ac_g_ex.fe_logical + - EXT4_C2B(sbi, ac->ac_g_ex.fe_len))); + BUG_ON(extent_logical_end(sbi, &ex) > orig_goal_end); } /* preallocation can change ac_b_ex, thus we store actually @@ -5239,7 +5234,7 @@ static void ext4_mb_group_or_file(struct ext4_allocation_context *ac) group_pa_eligible = sbi->s_mb_group_prealloc > 0; inode_pa_eligible = true; - size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len); + size = extent_logical_end(sbi, &ac->ac_o_ex); isize = (i_size_read(ac->ac_inode) + ac->ac_sb->s_blocksize - 1) >> bsbits; @@ -6432,6 +6427,21 @@ __acquires(bitlock) return ret; } +static ext4_grpblk_t ext4_last_grp_cluster(struct super_block *sb, + ext4_group_t grp) +{ + if (grp < ext4_get_groups_count(sb)) + return EXT4_CLUSTERS_PER_GROUP(sb) - 1; + return (ext4_blocks_count(EXT4_SB(sb)->s_es) - + ext4_group_first_block_no(sb, grp) - 1) >> + EXT4_CLUSTER_BITS(sb); +} + +static bool ext4_trim_interrupted(void) +{ + return fatal_signal_pending(current) || freezing(current); +} + static int ext4_try_to_trim_range(struct super_block *sb, struct ext4_buddy *e4b, ext4_grpblk_t start, ext4_grpblk_t max, ext4_grpblk_t minblocks) @@ -6439,12 +6449,13 @@ __acquires(ext4_group_lock_ptr(sb, e4b->bd_group)) __releases(ext4_group_lock_ptr(sb, e4b->bd_group)) { ext4_grpblk_t next, count, free_count; + bool set_trimmed = false; void *bitmap; - int ret = 0; bitmap = e4b->bd_bitmap; - start = (e4b->bd_info->bb_first_free > start) ? - e4b->bd_info->bb_first_free : start; + if (start == 0 && max >= ext4_last_grp_cluster(sb, e4b->bd_group)) + set_trimmed = true; + start = max(e4b->bd_info->bb_first_free, start); count = 0; free_count = 0; @@ -6455,19 +6466,17 @@ __releases(ext4_group_lock_ptr(sb, e4b->bd_group)) next = mb_find_next_bit(bitmap, max + 1, start); if ((next - start) >= minblocks) { - ret = ext4_trim_extent(sb, start, next - start, e4b); + int ret = ext4_trim_extent(sb, start, next - start, e4b); + if (ret && ret != -EOPNOTSUPP) - break; - ret = 0; + return count; count += next - start; } free_count += next - start; start = next + 1; - if (fatal_signal_pending(current)) { - count = -ERESTARTSYS; - break; - } + if (ext4_trim_interrupted()) + return count; if (need_resched()) { ext4_unlock_group(sb, e4b->bd_group); @@ -6479,6 +6488,9 @@ __releases(ext4_group_lock_ptr(sb, e4b->bd_group)) break; } + if (set_trimmed) + EXT4_MB_GRP_SET_TRIMMED(e4b->bd_info); + return count; } @@ -6489,7 +6501,6 @@ __releases(ext4_group_lock_ptr(sb, e4b->bd_group)) * @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 @@ -6499,7 +6510,7 @@ __releases(ext4_group_lock_ptr(sb, e4b->bd_group)) static ext4_grpblk_t ext4_trim_all_free(struct super_block *sb, ext4_group_t group, ext4_grpblk_t start, ext4_grpblk_t max, - ext4_grpblk_t minblocks, bool set_trimmed) + ext4_grpblk_t minblocks) { struct ext4_buddy e4b; int ret; @@ -6516,13 +6527,10 @@ ext4_trim_all_free(struct super_block *sb, ext4_group_t group, ext4_lock_group(sb, group); if (!EXT4_MB_GRP_WAS_TRIMMED(e4b.bd_info) || - minblocks < atomic_read(&EXT4_SB(sb)->s_last_trim_minblks)) { + minblocks < EXT4_SB(sb)->s_last_trim_minblks) ret = ext4_try_to_trim_range(sb, &e4b, start, max, minblocks); - if (ret >= 0 && set_trimmed) - EXT4_MB_GRP_SET_TRIMMED(e4b.bd_info); - } else { + else ret = 0; - } ext4_unlock_group(sb, group); ext4_mb_unload_buddy(&e4b); @@ -6555,7 +6563,6 @@ int ext4_trim_fs(struct super_block *sb, struct fstrim_range *range) 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; @@ -6574,10 +6581,8 @@ int ext4_trim_fs(struct super_block *sb, struct fstrim_range *range) if (minlen > EXT4_CLUSTERS_PER_GROUP(sb)) goto out; } - if (end >= max_blks - 1) { + if (end >= max_blks - 1) end = max_blks - 1; - eof = true; - } if (end <= first_data_blk) goto out; if (start < first_data_blk) @@ -6591,9 +6596,10 @@ int ext4_trim_fs(struct super_block *sb, struct fstrim_range *range) /* end now represents the last cluster to discard in this group */ end = EXT4_CLUSTERS_PER_GROUP(sb) - 1; - whole_group = true; for (group = first_group; group <= last_group; group++) { + if (ext4_trim_interrupted()) + break; grp = ext4_get_group_info(sb, group); if (!grp) continue; @@ -6610,13 +6616,11 @@ int ext4_trim_fs(struct super_block *sb, struct fstrim_range *range) * change it for the last group, note that last_cluster is * already computed earlier by ext4_get_group_no_and_offset() */ - if (group == last_group) { + if (group == last_group) end = last_cluster; - whole_group = eof ? true : end == EXT4_CLUSTERS_PER_GROUP(sb) - 1; - } if (grp->bb_free >= minlen) { cnt = ext4_trim_all_free(sb, group, first_cluster, - end, minlen, whole_group); + end, minlen); if (cnt < 0) { ret = cnt; break; @@ -6632,7 +6636,7 @@ int ext4_trim_fs(struct super_block *sb, struct fstrim_range *range) } if (!ret) - atomic_set(&EXT4_SB(sb)->s_last_trim_minblks, minlen); + EXT4_SB(sb)->s_last_trim_minblks = minlen; out: range->len = EXT4_C2B(EXT4_SB(sb), trimmed) << sb->s_blocksize_bits; @@ -6661,8 +6665,7 @@ ext4_mballoc_query_range( ext4_lock_group(sb, group); - start = (e4b.bd_info->bb_first_free > start) ? - e4b.bd_info->bb_first_free : start; + start = max(e4b.bd_info->bb_first_free, start); if (end >= EXT4_CLUSTERS_PER_GROUP(sb)) end = EXT4_CLUSTERS_PER_GROUP(sb) - 1; diff --git a/fs/ext4/mballoc.h b/fs/ext4/mballoc.h index 39da92ceabf88..bf048cbf39866 100644 --- a/fs/ext4/mballoc.h +++ b/fs/ext4/mballoc.h @@ -219,6 +219,20 @@ static inline ext4_fsblk_t ext4_grp_offs_to_block(struct super_block *sb, (fex->fe_start << EXT4_SB(sb)->s_cluster_bits); } +static inline loff_t extent_logical_end(struct ext4_sb_info *sbi, + struct ext4_free_extent *fex) +{ + /* Use loff_t to avoid end exceeding ext4_lblk_t max. */ + return (loff_t)fex->fe_logical + EXT4_C2B(sbi, fex->fe_len); +} + +static inline loff_t pa_logical_end(struct ext4_sb_info *sbi, + struct ext4_prealloc_space *pa) +{ + /* Use loff_t to avoid end exceeding ext4_lblk_t max. */ + return (loff_t)pa->pa_lstart + EXT4_C2B(sbi, pa->pa_len); +} + typedef int (*ext4_mballoc_query_range_fn)( struct super_block *sb, ext4_group_t agno, diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c index 2629e90f8dbb5..14c977e1e4bba 100644 --- a/fs/ext4/namei.c +++ b/fs/ext4/namei.c @@ -343,17 +343,17 @@ static struct ext4_dir_entry_tail *get_dirent_tail(struct inode *inode, struct buffer_head *bh) { struct ext4_dir_entry_tail *t; + int blocksize = EXT4_BLOCK_SIZE(inode->i_sb); #ifdef PARANOID struct ext4_dir_entry *d, *top; d = (struct ext4_dir_entry *)bh->b_data; top = (struct ext4_dir_entry *)(bh->b_data + - (EXT4_BLOCK_SIZE(inode->i_sb) - - sizeof(struct ext4_dir_entry_tail))); - while (d < top && d->rec_len) + (blocksize - sizeof(struct ext4_dir_entry_tail))); + while (d < top && ext4_rec_len_from_disk(d->rec_len, blocksize)) d = (struct ext4_dir_entry *)(((void *)d) + - le16_to_cpu(d->rec_len)); + ext4_rec_len_from_disk(d->rec_len, blocksize)); if (d != top) return NULL; @@ -364,7 +364,8 @@ static struct ext4_dir_entry_tail *get_dirent_tail(struct inode *inode, #endif if (t->det_reserved_zero1 || - le16_to_cpu(t->det_rec_len) != sizeof(struct ext4_dir_entry_tail) || + (ext4_rec_len_from_disk(t->det_rec_len, blocksize) != + sizeof(struct ext4_dir_entry_tail)) || t->det_reserved_zero2 || t->det_reserved_ft != EXT4_FT_DIR_CSUM) return NULL; @@ -445,13 +446,14 @@ static struct dx_countlimit *get_dx_countlimit(struct inode *inode, struct ext4_dir_entry *dp; struct dx_root_info *root; int count_offset; + int blocksize = EXT4_BLOCK_SIZE(inode->i_sb); + unsigned int rlen = ext4_rec_len_from_disk(dirent->rec_len, blocksize); - if (le16_to_cpu(dirent->rec_len) == EXT4_BLOCK_SIZE(inode->i_sb)) + if (rlen == blocksize) count_offset = 8; - else if (le16_to_cpu(dirent->rec_len) == 12) { + else if (rlen == 12) { dp = (struct ext4_dir_entry *)(((void *)dirent) + 12); - if (le16_to_cpu(dp->rec_len) != - EXT4_BLOCK_SIZE(inode->i_sb) - 12) + if (ext4_rec_len_from_disk(dp->rec_len, blocksize) != blocksize - 12) return NULL; root = (struct dx_root_info *)(((void *)dp + 12)); if (root->reserved_zero || @@ -1315,6 +1317,7 @@ static int dx_make_map(struct inode *dir, struct buffer_head *bh, unsigned int buflen = bh->b_size; char *base = bh->b_data; struct dx_hash_info h = *hinfo; + int blocksize = EXT4_BLOCK_SIZE(dir->i_sb); if (ext4_has_metadata_csum(dir->i_sb)) buflen -= sizeof(struct ext4_dir_entry_tail); @@ -1335,11 +1338,12 @@ static int dx_make_map(struct inode *dir, struct buffer_head *bh, map_tail--; map_tail->hash = h.hash; map_tail->offs = ((char *) de - base)>>2; - map_tail->size = le16_to_cpu(de->rec_len); + map_tail->size = ext4_rec_len_from_disk(de->rec_len, + blocksize); count++; cond_resched(); } - de = ext4_next_entry(de, dir->i_sb->s_blocksize); + de = ext4_next_entry(de, blocksize); } return count; } @@ -2799,6 +2803,7 @@ static int ext4_add_nondir(handle_t *handle, return err; } drop_nlink(inode); + ext4_mark_inode_dirty(handle, inode); ext4_orphan_add(handle, inode); unlock_new_inode(inode); return err; @@ -3455,6 +3460,7 @@ static int ext4_symlink(struct user_namespace *mnt_userns, struct inode *dir, if (handle) ext4_journal_stop(handle); clear_nlink(inode); + ext4_mark_inode_dirty(handle, inode); unlock_new_inode(inode); iput(inode); out_free_encrypted_link: @@ -4028,6 +4034,7 @@ static int ext4_rename(struct user_namespace *mnt_userns, struct inode *old_dir, ext4_resetent(handle, &old, old.inode->i_ino, old_file_type); drop_nlink(whiteout); + ext4_mark_inode_dirty(handle, whiteout); ext4_orphan_add(handle, whiteout); } unlock_new_inode(whiteout); diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c index 4a834d3d9678e..31a725db42c91 100644 --- a/fs/ext4/resize.c +++ b/fs/ext4/resize.c @@ -556,13 +556,8 @@ static int setup_new_flex_group_blocks(struct super_block *sb, if (meta_bg == 0 && !ext4_bg_has_super(sb, group)) goto handle_itb; - if (meta_bg == 1) { - ext4_group_t first_group; - first_group = ext4_meta_bg_first_group(sb, group); - if (first_group != group + 1 && - first_group != group + EXT4_DESC_PER_BLOCK(sb) - 1) - goto handle_itb; - } + if (meta_bg == 1) + goto handle_itb; block = start + ext4_bg_has_super(sb, group); /* Copy all of the GDT blocks into the backup in this group */ @@ -1176,8 +1171,10 @@ static void update_backups(struct super_block *sb, sector_t blk_off, char *data, ext4_group_first_block_no(sb, group)); BUFFER_TRACE(bh, "get_write_access"); if ((err = ext4_journal_get_write_access(handle, sb, bh, - EXT4_JTR_NONE))) + EXT4_JTR_NONE))) { + brelse(bh); break; + } lock_buffer(bh); memcpy(bh->b_data, data, size); if (rest) @@ -1568,6 +1565,8 @@ static int ext4_flex_group_add(struct super_block *sb, int gdb_num_end = ((group + flex_gd->count - 1) / EXT4_DESC_PER_BLOCK(sb)); int meta_bg = ext4_has_feature_meta_bg(sb); + sector_t padding_blocks = meta_bg ? 0 : sbi->s_sbh->b_blocknr - + ext4_group_first_block_no(sb, 0); sector_t old_gdb = 0; update_backups(sb, ext4_group_first_block_no(sb, 0), @@ -1579,8 +1578,8 @@ static int ext4_flex_group_add(struct super_block *sb, gdb_num); if (old_gdb == gdb_bh->b_blocknr) continue; - update_backups(sb, gdb_bh->b_blocknr, gdb_bh->b_data, - gdb_bh->b_size, meta_bg); + update_backups(sb, gdb_bh->b_blocknr - padding_blocks, + gdb_bh->b_data, gdb_bh->b_size, meta_bg); old_gdb = gdb_bh->b_blocknr; } } @@ -1949,9 +1948,7 @@ static int ext4_convert_meta_bg(struct super_block *sb, struct inode *inode) errout: ret = ext4_journal_stop(handle); - if (!err) - err = ret; - return ret; + return err ? err : ret; invalid_resize_inode: ext4_error(sb, "corrupted/inconsistent resize inode"); diff --git a/fs/f2fs/compress.c b/fs/f2fs/compress.c index 455fac164fda0..3982b4a7618ce 100644 --- a/fs/f2fs/compress.c +++ b/fs/f2fs/compress.c @@ -1906,7 +1906,7 @@ void f2fs_destroy_compress_inode(struct f2fs_sb_info *sbi) int f2fs_init_page_array_cache(struct f2fs_sb_info *sbi) { dev_t dev = sbi->sb->s_bdev->bd_dev; - char slab_name[32]; + char slab_name[35]; sprintf(slab_name, "f2fs_page_array_entry-%u:%u", MAJOR(dev), MINOR(dev)); diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index 3956852ad1de0..73a7906a49b1e 100644 --- a/fs/f2fs/data.c +++ b/fs/f2fs/data.c @@ -2253,8 +2253,10 @@ int f2fs_read_multi_pages(struct compress_ctx *cc, struct bio **bio_ret, f2fs_wait_on_block_writeback(inode, blkaddr); if (f2fs_load_compressed_page(sbi, page, blkaddr)) { - if (atomic_dec_and_test(&dic->remaining_pages)) + if (atomic_dec_and_test(&dic->remaining_pages)) { f2fs_decompress_cluster(dic); + break; + } continue; } diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c index e1131af0396b9..58fd32db025da 100644 --- a/fs/f2fs/file.c +++ b/fs/f2fs/file.c @@ -3210,6 +3210,7 @@ int f2fs_precache_extents(struct inode *inode) return -EOPNOTSUPP; map.m_lblk = 0; + map.m_pblk = 0; map.m_next_pgofs = NULL; map.m_next_extent = &m_next_extent; map.m_seg_type = NO_CHECK_TYPE; diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c index 5c0b2b300aa1b..d4a76c2deb806 100644 --- a/fs/f2fs/super.c +++ b/fs/f2fs/super.c @@ -540,6 +540,29 @@ static int f2fs_set_test_dummy_encryption(struct super_block *sb, } #ifdef CONFIG_F2FS_FS_COMPRESSION +static bool is_compress_extension_exist(struct f2fs_sb_info *sbi, + const char *new_ext, bool is_ext) +{ + unsigned char (*ext)[F2FS_EXTENSION_LEN]; + int ext_cnt; + int i; + + if (is_ext) { + ext = F2FS_OPTION(sbi).extensions; + ext_cnt = F2FS_OPTION(sbi).compress_ext_cnt; + } else { + ext = F2FS_OPTION(sbi).noextensions; + ext_cnt = F2FS_OPTION(sbi).nocompress_ext_cnt; + } + + for (i = 0; i < ext_cnt; i++) { + if (!strcasecmp(new_ext, ext[i])) + return true; + } + + return false; +} + /* * 1. The same extension name cannot not appear in both compress and non-compress extension * at the same time. @@ -1154,6 +1177,11 @@ static int parse_options(struct super_block *sb, char *options, bool is_remount) return -EINVAL; } + if (is_compress_extension_exist(sbi, name, true)) { + kfree(name); + break; + } + strcpy(ext[ext_cnt], name); F2FS_OPTION(sbi).compress_ext_cnt++; kfree(name); @@ -1178,6 +1206,11 @@ static int parse_options(struct super_block *sb, char *options, bool is_remount) return -EINVAL; } + if (is_compress_extension_exist(sbi, name, false)) { + kfree(name); + break; + } + strcpy(noext[noext_cnt], name); F2FS_OPTION(sbi).nocompress_ext_cnt++; kfree(name); diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c index c76537a6826a7..672d176524f5c 100644 --- a/fs/fs-writeback.c +++ b/fs/fs-writeback.c @@ -609,6 +609,24 @@ static void inode_switch_wbs(struct inode *inode, int new_wb_id) kfree(isw); } +static bool isw_prepare_wbs_switch(struct inode_switch_wbs_context *isw, + struct list_head *list, int *nr) +{ + struct inode *inode; + + list_for_each_entry(inode, list, i_io_list) { + if (!inode_prepare_wbs_switch(inode, isw->new_wb)) + continue; + + isw->inodes[*nr] = inode; + (*nr)++; + + if (*nr >= WB_MAX_INODES_PER_ISW - 1) + return true; + } + return false; +} + /** * cleanup_offline_cgwb - detach associated inodes * @wb: target wb @@ -621,7 +639,6 @@ bool cleanup_offline_cgwb(struct bdi_writeback *wb) { struct cgroup_subsys_state *memcg_css; struct inode_switch_wbs_context *isw; - struct inode *inode; int nr; bool restart = false; @@ -643,17 +660,17 @@ bool cleanup_offline_cgwb(struct bdi_writeback *wb) nr = 0; spin_lock(&wb->list_lock); - list_for_each_entry(inode, &wb->b_attached, i_io_list) { - if (!inode_prepare_wbs_switch(inode, isw->new_wb)) - continue; - - isw->inodes[nr++] = inode; - - if (nr >= WB_MAX_INODES_PER_ISW - 1) { - restart = true; - break; - } - } + /* + * In addition to the inodes that have completed writeback, also switch + * cgwbs for those inodes only with dirty timestamps. Otherwise, those + * inodes won't be written back for a long time when lazytime is + * enabled, and thus pinning the dying cgwbs. It won't break the + * bandwidth restrictions, as writeback of inode metadata is not + * accounted for. + */ + restart = isw_prepare_wbs_switch(isw, &wb->b_attached, &nr); + if (!restart) + restart = isw_prepare_wbs_switch(isw, &wb->b_dirty_time, &nr); spin_unlock(&wb->list_lock); /* no attached inodes? bail out */ @@ -1557,10 +1574,15 @@ static void requeue_inode(struct inode *inode, struct bdi_writeback *wb, if (wbc->pages_skipped) { /* - * writeback is not making progress due to locked - * buffers. Skip this inode for now. + * Writeback is not making progress due to locked buffers. + * Skip this inode for now. Although having skipped pages + * is odd for clean inodes, it can happen for some + * filesystems so handle that gracefully. */ - redirty_tail_locked(inode, wb); + if (inode->i_state & I_DIRTY_ALL) + redirty_tail_locked(inode, wb); + else + inode_cgwb_move_to_attached(inode, wb); return; } diff --git a/fs/fuse/readdir.c b/fs/fuse/readdir.c index d5294e663df50..14e99ffa57af9 100644 --- a/fs/fuse/readdir.c +++ b/fs/fuse/readdir.c @@ -243,8 +243,16 @@ static int fuse_direntplus_link(struct file *file, dput(dentry); dentry = alias; } - if (IS_ERR(dentry)) + if (IS_ERR(dentry)) { + if (!IS_ERR(inode)) { + struct fuse_inode *fi = get_fuse_inode(inode); + + spin_lock(&fi->lock); + fi->nlookup--; + spin_unlock(&fi->lock); + } return PTR_ERR(dentry); + } } if (fc->readdirplus_auto) set_bit(FUSE_I_INIT_RDPLUS, &get_fuse_inode(inode)->state); diff --git a/fs/gfs2/aops.c b/fs/gfs2/aops.c index ee212c9310ad0..2b654c3b918a3 100644 --- a/fs/gfs2/aops.c +++ b/fs/gfs2/aops.c @@ -207,13 +207,13 @@ static int gfs2_writepages(struct address_space *mapping, int ret; /* - * Even if we didn't write any pages here, we might still be holding + * Even if we didn't write enough pages here, we might still be holding * dirty pages in the ail. We forcibly flush the ail because we don't * want balance_dirty_pages() to loop indefinitely trying to write out * pages held in the ail that it can't find. */ ret = iomap_writepages(mapping, wbc, &wpc, &gfs2_writeback_ops); - if (ret == 0) + if (ret == 0 && wbc->nr_to_write > 0) set_bit(SDF_FORCE_AIL_FLUSH, &sdp->sd_flags); return ret; } diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c index 97ee17843b4d0..462e957eda8be 100644 --- a/fs/gfs2/inode.c +++ b/fs/gfs2/inode.c @@ -1848,16 +1848,24 @@ static const char *gfs2_get_link(struct dentry *dentry, int gfs2_permission(struct user_namespace *mnt_userns, struct inode *inode, int mask) { + int may_not_block = mask & MAY_NOT_BLOCK; struct gfs2_inode *ip; struct gfs2_holder i_gh; + struct gfs2_glock *gl; int error; gfs2_holder_mark_uninitialized(&i_gh); ip = GFS2_I(inode); - if (gfs2_glock_is_locked_by_me(ip->i_gl) == NULL) { - if (mask & MAY_NOT_BLOCK) + gl = rcu_dereference_check(ip->i_gl, !may_not_block); + if (unlikely(!gl)) { + /* inode is getting torn down, must be RCU mode */ + WARN_ON_ONCE(!may_not_block); + return -ECHILD; + } + if (gfs2_glock_is_locked_by_me(gl) == NULL) { + if (may_not_block) return -ECHILD; - error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &i_gh); + error = gfs2_glock_nq_init(gl, LM_ST_SHARED, LM_FLAG_ANY, &i_gh); if (error) return error; } diff --git a/fs/gfs2/log.c b/fs/gfs2/log.c index f0ee3ff6f9a87..9a96842aeab3d 100644 --- a/fs/gfs2/log.c +++ b/fs/gfs2/log.c @@ -1277,9 +1277,6 @@ static inline int gfs2_ail_flush_reqd(struct gfs2_sbd *sdp) { unsigned int used_blocks = sdp->sd_jdesc->jd_blocks - atomic_read(&sdp->sd_log_blks_free); - if (test_and_clear_bit(SDF_FORCE_AIL_FLUSH, &sdp->sd_flags)) - return 1; - return used_blocks + atomic_read(&sdp->sd_log_blks_needed) >= atomic_read(&sdp->sd_log_thresh2); } @@ -1296,7 +1293,6 @@ int gfs2_logd(void *data) { struct gfs2_sbd *sdp = data; unsigned long t = 1; - DEFINE_WAIT(wait); while (!kthread_should_stop()) { @@ -1321,7 +1317,9 @@ int gfs2_logd(void *data) GFS2_LFC_LOGD_JFLUSH_REQD); } - if (gfs2_ail_flush_reqd(sdp)) { + if (test_bit(SDF_FORCE_AIL_FLUSH, &sdp->sd_flags) || + gfs2_ail_flush_reqd(sdp)) { + clear_bit(SDF_FORCE_AIL_FLUSH, &sdp->sd_flags); gfs2_ail1_start(sdp); gfs2_ail1_wait(sdp); gfs2_ail1_empty(sdp, 0); @@ -1333,17 +1331,12 @@ int gfs2_logd(void *data) try_to_freeze(); - do { - prepare_to_wait(&sdp->sd_logd_waitq, &wait, - TASK_INTERRUPTIBLE); - if (!gfs2_ail_flush_reqd(sdp) && - !gfs2_jrnl_flush_reqd(sdp) && - !kthread_should_stop()) - t = schedule_timeout(t); - } while(t && !gfs2_ail_flush_reqd(sdp) && - !gfs2_jrnl_flush_reqd(sdp) && - !kthread_should_stop()); - finish_wait(&sdp->sd_logd_waitq, &wait); + t = wait_event_interruptible_timeout(sdp->sd_logd_waitq, + test_bit(SDF_FORCE_AIL_FLUSH, &sdp->sd_flags) || + gfs2_ail_flush_reqd(sdp) || + gfs2_jrnl_flush_reqd(sdp) || + kthread_should_stop(), + t); } return 0; diff --git a/fs/gfs2/quota.c b/fs/gfs2/quota.c index dc77080a82bbf..c381580095baf 100644 --- a/fs/gfs2/quota.c +++ b/fs/gfs2/quota.c @@ -431,6 +431,17 @@ static int qd_check_sync(struct gfs2_sbd *sdp, struct gfs2_quota_data *qd, (sync_gen && (qd->qd_sync_gen >= *sync_gen))) return 0; + /* + * If qd_change is 0 it means a pending quota change was negated. + * We should not sync it, but we still have a qd reference and slot + * reference taken by gfs2_quota_change -> do_qc that need to be put. + */ + if (!qd->qd_change && test_and_clear_bit(QDF_CHANGE, &qd->qd_flags)) { + slot_put(qd); + qd_put(qd); + return 0; + } + if (!lockref_get_not_dead(&qd->qd_lockref)) return 0; diff --git a/fs/gfs2/super.c b/fs/gfs2/super.c index 51b44da4a0d64..268651ac9fc84 100644 --- a/fs/gfs2/super.c +++ b/fs/gfs2/super.c @@ -1436,7 +1436,7 @@ static void gfs2_evict_inode(struct inode *inode) wait_on_bit_io(&ip->i_flags, GIF_GLOP_PENDING, TASK_UNINTERRUPTIBLE); gfs2_glock_add_to_lru(ip->i_gl); gfs2_glock_put_eventually(ip->i_gl); - ip->i_gl = NULL; + rcu_assign_pointer(ip->i_gl, NULL); } } diff --git a/fs/inode.c b/fs/inode.c index 7cb048a3b3bdb..ec41a11e2f8fe 100644 --- a/fs/inode.c +++ b/fs/inode.c @@ -2335,6 +2335,22 @@ struct timespec64 current_time(struct inode *inode) } EXPORT_SYMBOL(current_time); +/** + * inode_set_ctime_current - set the ctime to current_time + * @inode: inode + * + * Set the inode->i_ctime to the current value for the inode. Returns + * the current value that was assigned to i_ctime. + */ +struct timespec64 inode_set_ctime_current(struct inode *inode) +{ + struct timespec64 now = current_time(inode); + + inode_set_ctime(inode, now.tv_sec, now.tv_nsec); + return now; +} +EXPORT_SYMBOL(inode_set_ctime_current); + /** * in_group_or_capable - check whether caller is CAP_FSETID privileged * @mnt_userns: user namespace of the mount @inode was found from diff --git a/fs/iomap/direct-io.c b/fs/iomap/direct-io.c index 468dcbba45bcb..4ee7790f7b2ea 100644 --- a/fs/iomap/direct-io.c +++ b/fs/iomap/direct-io.c @@ -92,7 +92,6 @@ ssize_t iomap_dio_complete(struct iomap_dio *dio) if (offset + ret > dio->i_size && !(dio->flags & IOMAP_DIO_WRITE)) ret = dio->i_size - offset; - iocb->ki_pos += ret; } /* @@ -118,18 +117,19 @@ ssize_t iomap_dio_complete(struct iomap_dio *dio) } inode_dio_end(file_inode(iocb->ki_filp)); - /* - * If this is a DSYNC write, make sure we push it to stable storage now - * that we've written data. - */ - if (ret > 0 && (dio->flags & IOMAP_DIO_NEED_SYNC)) - ret = generic_write_sync(iocb, ret); - - if (ret > 0) - ret += dio->done_before; + if (ret > 0) { + iocb->ki_pos += ret; + /* + * If this is a DSYNC write, make sure we push it to stable + * storage now that we've written data. + */ + if (dio->flags & IOMAP_DIO_NEED_SYNC) + ret = generic_write_sync(iocb, ret); + if (ret > 0) + ret += dio->done_before; + } kfree(dio); - return ret; } EXPORT_SYMBOL_GPL(iomap_dio_complete); diff --git a/fs/jbd2/checkpoint.c b/fs/jbd2/checkpoint.c index fc6989e7a8c51..f033ac807013c 100644 --- a/fs/jbd2/checkpoint.c +++ b/fs/jbd2/checkpoint.c @@ -165,7 +165,7 @@ int jbd2_log_do_checkpoint(journal_t *journal) tid_t this_tid; int result, batch_count = 0; - jbd_debug(1, "Start checkpoint\n"); + jbd2_debug(1, "Start checkpoint\n"); /* * First thing: if there are any transactions in the log which @@ -174,7 +174,7 @@ int jbd2_log_do_checkpoint(journal_t *journal) */ result = jbd2_cleanup_journal_tail(journal); trace_jbd2_checkpoint(journal, result); - jbd_debug(1, "cleanup_journal_tail returned %d\n", result); + jbd2_debug(1, "cleanup_journal_tail returned %d\n", result); if (result <= 0) return result; @@ -349,6 +349,8 @@ int jbd2_cleanup_journal_tail(journal_t *journal) /* Checkpoint list management */ +enum shrink_type {SHRINK_DESTROY, SHRINK_BUSY_STOP, SHRINK_BUSY_SKIP}; + /* * journal_shrink_one_cp_list * @@ -360,7 +362,8 @@ int jbd2_cleanup_journal_tail(journal_t *journal) * Called with j_list_lock held. */ static unsigned long journal_shrink_one_cp_list(struct journal_head *jh, - bool destroy, bool *released) + enum shrink_type type, + bool *released) { struct journal_head *last_jh; struct journal_head *next_jh = jh; @@ -376,12 +379,15 @@ static unsigned long journal_shrink_one_cp_list(struct journal_head *jh, jh = next_jh; next_jh = jh->b_cpnext; - if (destroy) { + if (type == SHRINK_DESTROY) { ret = __jbd2_journal_remove_checkpoint(jh); } else { ret = jbd2_journal_try_remove_checkpoint(jh); - if (ret < 0) - continue; + if (ret < 0) { + if (type == SHRINK_BUSY_SKIP) + continue; + break; + } } nr_freed++; @@ -445,7 +451,7 @@ unsigned long jbd2_journal_shrink_checkpoint_list(journal_t *journal, tid = transaction->t_tid; freed = journal_shrink_one_cp_list(transaction->t_checkpoint_list, - false, &released); + SHRINK_BUSY_SKIP, &released); nr_freed += freed; (*nr_to_scan) -= min(*nr_to_scan, freed); if (*nr_to_scan == 0) @@ -485,19 +491,21 @@ unsigned long jbd2_journal_shrink_checkpoint_list(journal_t *journal, void __jbd2_journal_clean_checkpoint_list(journal_t *journal, bool destroy) { transaction_t *transaction, *last_transaction, *next_transaction; + enum shrink_type type; bool released; transaction = journal->j_checkpoint_transactions; if (!transaction) return; + type = destroy ? SHRINK_DESTROY : SHRINK_BUSY_STOP; last_transaction = transaction->t_cpprev; next_transaction = transaction; do { transaction = next_transaction; next_transaction = transaction->t_cpnext; journal_shrink_one_cp_list(transaction->t_checkpoint_list, - destroy, &released); + type, &released); /* * This function only frees up some memory if possible so we * dont have an obligation to finish processing. Bail out if @@ -631,6 +639,8 @@ int jbd2_journal_try_remove_checkpoint(struct journal_head *jh) { struct buffer_head *bh = jh2bh(jh); + if (jh->b_transaction) + return -EBUSY; if (!trylock_buffer(bh)) return -EBUSY; if (buffer_dirty(bh)) { @@ -715,5 +725,5 @@ void __jbd2_journal_drop_transaction(journal_t *journal, transaction_t *transact trace_jbd2_drop_transaction(journal, transaction); - jbd_debug(1, "Dropping transaction %d, all done\n", transaction->t_tid); + jbd2_debug(1, "Dropping transaction %d, all done\n", transaction->t_tid); } diff --git a/fs/jbd2/commit.c b/fs/jbd2/commit.c index 20294c1bbeab7..e058ef1839377 100644 --- a/fs/jbd2/commit.c +++ b/fs/jbd2/commit.c @@ -419,7 +419,7 @@ void jbd2_journal_commit_transaction(journal_t *journal) /* Do we need to erase the effects of a prior jbd2_journal_flush? */ if (journal->j_flags & JBD2_FLUSHED) { - jbd_debug(3, "super block updated\n"); + jbd2_debug(3, "super block updated\n"); mutex_lock_io(&journal->j_checkpoint_mutex); /* * We hold j_checkpoint_mutex so tail cannot change under us. @@ -433,7 +433,7 @@ void jbd2_journal_commit_transaction(journal_t *journal) REQ_SYNC); mutex_unlock(&journal->j_checkpoint_mutex); } else { - jbd_debug(3, "superblock not updated\n"); + jbd2_debug(3, "superblock not updated\n"); } J_ASSERT(journal->j_running_transaction != NULL); @@ -465,7 +465,7 @@ void jbd2_journal_commit_transaction(journal_t *journal) commit_transaction = journal->j_running_transaction; trace_jbd2_start_commit(journal, commit_transaction); - jbd_debug(1, "JBD2: starting commit of transaction %d\n", + jbd2_debug(1, "JBD2: starting commit of transaction %d\n", commit_transaction->t_tid); write_lock(&journal->j_state_lock); @@ -484,22 +484,9 @@ void jbd2_journal_commit_transaction(journal_t *journal) stats.run.rs_running = jbd2_time_diff(commit_transaction->t_start, stats.run.rs_locked); - spin_lock(&commit_transaction->t_handle_lock); - while (atomic_read(&commit_transaction->t_updates)) { - DEFINE_WAIT(wait); + // waits for any t_updates to finish + jbd2_journal_wait_updates(journal); - prepare_to_wait(&journal->j_wait_updates, &wait, - TASK_UNINTERRUPTIBLE); - if (atomic_read(&commit_transaction->t_updates)) { - spin_unlock(&commit_transaction->t_handle_lock); - write_unlock(&journal->j_state_lock); - schedule(); - write_lock(&journal->j_state_lock); - spin_lock(&commit_transaction->t_handle_lock); - } - finish_wait(&journal->j_wait_updates, &wait); - } - spin_unlock(&commit_transaction->t_handle_lock); commit_transaction->t_state = T_SWITCH; J_ASSERT (atomic_read(&commit_transaction->t_outstanding_credits) <= @@ -551,7 +538,7 @@ void jbd2_journal_commit_transaction(journal_t *journal) __jbd2_journal_clean_checkpoint_list(journal, false); spin_unlock(&journal->j_list_lock); - jbd_debug(3, "JBD2: commit phase 1\n"); + jbd2_debug(3, "JBD2: commit phase 1\n"); /* * Clear revoked flag to reflect there is no revoked buffers @@ -584,7 +571,7 @@ void jbd2_journal_commit_transaction(journal_t *journal) wake_up_all(&journal->j_wait_transaction_locked); write_unlock(&journal->j_state_lock); - jbd_debug(3, "JBD2: commit phase 2a\n"); + jbd2_debug(3, "JBD2: commit phase 2a\n"); /* * Now start flushing things to disk, in the order they appear @@ -597,7 +584,7 @@ void jbd2_journal_commit_transaction(journal_t *journal) blk_start_plug(&plug); jbd2_journal_write_revoke_records(commit_transaction, &log_bufs); - jbd_debug(3, "JBD2: commit phase 2b\n"); + jbd2_debug(3, "JBD2: commit phase 2b\n"); /* * Way to go: we have now written out all of the data for a @@ -653,7 +640,7 @@ void jbd2_journal_commit_transaction(journal_t *journal) if (!descriptor) { J_ASSERT (bufs == 0); - jbd_debug(4, "JBD2: get descriptor\n"); + jbd2_debug(4, "JBD2: get descriptor\n"); descriptor = jbd2_journal_get_descriptor_buffer( commit_transaction, @@ -663,7 +650,7 @@ void jbd2_journal_commit_transaction(journal_t *journal) continue; } - jbd_debug(4, "JBD2: got buffer %llu (%p)\n", + jbd2_debug(4, "JBD2: got buffer %llu (%p)\n", (unsigned long long)descriptor->b_blocknr, descriptor->b_data); tagp = &descriptor->b_data[sizeof(journal_header_t)]; @@ -748,7 +735,7 @@ void jbd2_journal_commit_transaction(journal_t *journal) commit_transaction->t_buffers == NULL || space_left < tag_bytes + 16 + csum_size) { - jbd_debug(4, "JBD2: Submit %d IOs\n", bufs); + jbd2_debug(4, "JBD2: Submit %d IOs\n", bufs); /* Write an end-of-descriptor marker before submitting the IOs. "tag" still points to @@ -819,7 +806,7 @@ void jbd2_journal_commit_transaction(journal_t *journal) commit_transaction->t_state = T_COMMIT_DFLUSH; write_unlock(&journal->j_state_lock); - /* + /* * If the journal is not located on the file system device, * then we must flush the file system device before we issue * the commit record @@ -850,7 +837,7 @@ void jbd2_journal_commit_transaction(journal_t *journal) so we incur less scheduling load. */ - jbd_debug(3, "JBD2: commit phase 3\n"); + jbd2_debug(3, "JBD2: commit phase 3\n"); while (!list_empty(&io_bufs)) { struct buffer_head *bh = list_entry(io_bufs.prev, @@ -893,7 +880,7 @@ void jbd2_journal_commit_transaction(journal_t *journal) J_ASSERT (commit_transaction->t_shadow_list == NULL); - jbd_debug(3, "JBD2: commit phase 4\n"); + jbd2_debug(3, "JBD2: commit phase 4\n"); /* Here we wait for the revoke record and descriptor record buffers */ while (!list_empty(&log_bufs)) { @@ -917,7 +904,7 @@ void jbd2_journal_commit_transaction(journal_t *journal) if (err) jbd2_journal_abort(journal, err); - jbd_debug(3, "JBD2: commit phase 5\n"); + jbd2_debug(3, "JBD2: commit phase 5\n"); write_lock(&journal->j_state_lock); J_ASSERT(commit_transaction->t_state == T_COMMIT_DFLUSH); commit_transaction->t_state = T_COMMIT_JFLUSH; @@ -956,7 +943,7 @@ void jbd2_journal_commit_transaction(journal_t *journal) transaction can be removed from any checkpoint list it was on before. */ - jbd_debug(3, "JBD2: commit phase 6\n"); + jbd2_debug(3, "JBD2: commit phase 6\n"); J_ASSERT(list_empty(&commit_transaction->t_inode_list)); J_ASSERT(commit_transaction->t_buffers == NULL); @@ -1133,7 +1120,7 @@ void jbd2_journal_commit_transaction(journal_t *journal) /* Done with this transaction! */ - jbd_debug(3, "JBD2: commit phase 7\n"); + jbd2_debug(3, "JBD2: commit phase 7\n"); J_ASSERT(commit_transaction->t_state == T_COMMIT_JFLUSH); @@ -1175,7 +1162,7 @@ void jbd2_journal_commit_transaction(journal_t *journal) journal->j_fc_cleanup_callback(journal, 1, commit_transaction->t_tid); trace_jbd2_end_commit(journal, commit_transaction); - jbd_debug(1, "JBD2: commit %d complete, head %d\n", + jbd2_debug(1, "JBD2: commit %d complete, head %d\n", journal->j_commit_sequence, journal->j_tail_sequence); write_lock(&journal->j_state_lock); diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c index 580d2fdfe21f5..11fbc9b6ec5cb 100644 --- a/fs/jbd2/journal.c +++ b/fs/jbd2/journal.c @@ -203,11 +203,11 @@ static int kjournald2(void *arg) if (journal->j_flags & JBD2_UNMOUNT) goto end_loop; - jbd_debug(1, "commit_sequence=%u, commit_request=%u\n", + jbd2_debug(1, "commit_sequence=%u, commit_request=%u\n", journal->j_commit_sequence, journal->j_commit_request); if (journal->j_commit_sequence != journal->j_commit_request) { - jbd_debug(1, "OK, requests differ\n"); + jbd2_debug(1, "OK, requests differ\n"); write_unlock(&journal->j_state_lock); del_timer_sync(&journal->j_commit_timer); jbd2_journal_commit_transaction(journal); @@ -222,7 +222,7 @@ static int kjournald2(void *arg) * good idea, because that depends on threads that may * be already stopped. */ - jbd_debug(1, "Now suspending kjournald2\n"); + jbd2_debug(1, "Now suspending kjournald2\n"); write_unlock(&journal->j_state_lock); try_to_freeze(); write_lock(&journal->j_state_lock); @@ -252,7 +252,7 @@ static int kjournald2(void *arg) finish_wait(&journal->j_wait_commit, &wait); } - jbd_debug(1, "kjournald2 wakes\n"); + jbd2_debug(1, "kjournald2 wakes\n"); /* * Were we woken up by a commit wakeup event? @@ -260,7 +260,7 @@ static int kjournald2(void *arg) transaction = journal->j_running_transaction; if (transaction && time_after_eq(jiffies, transaction->t_expires)) { journal->j_commit_request = transaction->t_tid; - jbd_debug(1, "woke because of timeout\n"); + jbd2_debug(1, "woke because of timeout\n"); } goto loop; @@ -268,7 +268,7 @@ static int kjournald2(void *arg) del_timer_sync(&journal->j_commit_timer); journal->j_task = NULL; wake_up(&journal->j_wait_done_commit); - jbd_debug(1, "Journal thread exiting.\n"); + jbd2_debug(1, "Journal thread exiting.\n"); write_unlock(&journal->j_state_lock); return 0; } @@ -500,7 +500,7 @@ int __jbd2_log_start_commit(journal_t *journal, tid_t target) */ journal->j_commit_request = target; - jbd_debug(1, "JBD2: requesting commit %u/%u\n", + jbd2_debug(1, "JBD2: requesting commit %u/%u\n", journal->j_commit_request, journal->j_commit_sequence); journal->j_running_transaction->t_requested = jiffies; @@ -705,7 +705,7 @@ int jbd2_log_wait_commit(journal_t *journal, tid_t tid) } #endif while (tid_gt(tid, journal->j_commit_sequence)) { - jbd_debug(1, "JBD2: want %u, j_commit_sequence=%u\n", + jbd2_debug(1, "JBD2: want %u, j_commit_sequence=%u\n", tid, journal->j_commit_sequence); read_unlock(&journal->j_state_lock); wake_up(&journal->j_wait_commit); @@ -1123,7 +1123,7 @@ int __jbd2_update_log_tail(journal_t *journal, tid_t tid, unsigned long block) freed += journal->j_last - journal->j_first; trace_jbd2_update_log_tail(journal, tid, block, freed); - jbd_debug(1, + jbd2_debug(1, "Cleaning journal tail from %u to %u (offset %lu), " "freeing %lu\n", journal->j_tail_sequence, tid, block, freed); @@ -1498,7 +1498,7 @@ journal_t *jbd2_journal_init_inode(struct inode *inode) return NULL; } - jbd_debug(1, "JBD2: inode %s/%ld, size %lld, bits %d, blksize %ld\n", + jbd2_debug(1, "JBD2: inode %s/%ld, size %lld, bits %d, blksize %ld\n", inode->i_sb->s_id, inode->i_ino, (long long) inode->i_size, inode->i_sb->s_blocksize_bits, inode->i_sb->s_blocksize); @@ -1577,7 +1577,7 @@ static int journal_reset(journal_t *journal) * attempting a write to a potential-readonly device. */ if (sb->s_start == 0) { - jbd_debug(1, "JBD2: Skipping superblock update on recovered sb " + jbd2_debug(1, "JBD2: Skipping superblock update on recovered sb " "(start %ld, seq %u, errno %d)\n", journal->j_tail, journal->j_tail_sequence, journal->j_errno); @@ -1680,7 +1680,7 @@ int jbd2_journal_update_sb_log_tail(journal_t *journal, tid_t tail_tid, } BUG_ON(!mutex_is_locked(&journal->j_checkpoint_mutex)); - jbd_debug(1, "JBD2: updating superblock (start %lu, seq %u)\n", + jbd2_debug(1, "JBD2: updating superblock (start %lu, seq %u)\n", tail_block, tail_tid); lock_buffer(journal->j_sb_buffer); @@ -1721,7 +1721,7 @@ static void jbd2_mark_journal_empty(journal_t *journal, int write_op) return; } - jbd_debug(1, "JBD2: Marking journal as empty (seq %u)\n", + jbd2_debug(1, "JBD2: Marking journal as empty (seq %u)\n", journal->j_tail_sequence); sb->s_sequence = cpu_to_be32(journal->j_tail_sequence); @@ -1867,7 +1867,7 @@ void jbd2_journal_update_sb_errno(journal_t *journal) errcode = journal->j_errno; if (errcode == -ESHUTDOWN) errcode = 0; - jbd_debug(1, "JBD2: updating superblock error (errno %d)\n", errcode); + jbd2_debug(1, "JBD2: updating superblock error (errno %d)\n", errcode); sb->s_errno = cpu_to_be32(errcode); jbd2_write_superblock(journal, REQ_SYNC | REQ_FUA); @@ -2339,7 +2339,7 @@ int jbd2_journal_set_features(journal_t *journal, unsigned long compat, compat & JBD2_FEATURE_COMPAT_CHECKSUM) compat &= ~JBD2_FEATURE_COMPAT_CHECKSUM; - jbd_debug(1, "Setting new features 0x%lx/0x%lx/0x%lx\n", + jbd2_debug(1, "Setting new features 0x%lx/0x%lx/0x%lx\n", compat, ro, incompat); sb = journal->j_superblock; @@ -2408,7 +2408,7 @@ void jbd2_journal_clear_features(journal_t *journal, unsigned long compat, { journal_superblock_t *sb; - jbd_debug(1, "Clear features 0x%lx/0x%lx/0x%lx\n", + jbd2_debug(1, "Clear features 0x%lx/0x%lx/0x%lx\n", compat, ro, incompat); sb = journal->j_superblock; @@ -2865,7 +2865,7 @@ static struct journal_head *journal_alloc_journal_head(void) #endif ret = kmem_cache_zalloc(jbd2_journal_head_cache, GFP_NOFS); if (!ret) { - jbd_debug(1, "out of memory for journal_head\n"); + jbd2_debug(1, "out of memory for journal_head\n"); pr_notice_ratelimited("ENOMEM in %s, retrying.\n", __func__); ret = kmem_cache_zalloc(jbd2_journal_head_cache, GFP_NOFS | __GFP_NOFAIL); diff --git a/fs/jbd2/recovery.c b/fs/jbd2/recovery.c index 3c5dd010e39d2..8a960c6edb6e1 100644 --- a/fs/jbd2/recovery.c +++ b/fs/jbd2/recovery.c @@ -224,12 +224,8 @@ static int count_tags(journal_t *journal, struct buffer_head *bh) /* Make sure we wrap around the log correctly! */ #define wrap(journal, var) \ do { \ - unsigned long _wrap_last = \ - jbd2_has_feature_fast_commit(journal) ? \ - (journal)->j_fc_last : (journal)->j_last; \ - \ - if (var >= _wrap_last) \ - var -= (_wrap_last - (journal)->j_first); \ + if (var >= (journal)->j_last) \ + var -= ((journal)->j_last - (journal)->j_first); \ } while (0) static int fc_do_one_pass(journal_t *journal, @@ -245,11 +241,11 @@ static int fc_do_one_pass(journal_t *journal, return 0; while (next_fc_block <= journal->j_fc_last) { - jbd_debug(3, "Fast commit replay: next block %ld\n", + jbd2_debug(3, "Fast commit replay: next block %ld\n", next_fc_block); err = jread(&bh, journal, next_fc_block); if (err) { - jbd_debug(3, "Fast commit replay: read error\n"); + jbd2_debug(3, "Fast commit replay: read error\n"); break; } @@ -264,7 +260,7 @@ static int fc_do_one_pass(journal_t *journal, } if (err) - jbd_debug(3, "Fast commit replay failed, err = %d\n", err); + jbd2_debug(3, "Fast commit replay failed, err = %d\n", err); return err; } @@ -287,6 +283,8 @@ int jbd2_journal_recover(journal_t *journal) journal_superblock_t * sb; struct recovery_info info; + errseq_t wb_err; + struct address_space *mapping; memset(&info, 0, sizeof(info)); sb = journal->j_superblock; @@ -298,22 +296,25 @@ int jbd2_journal_recover(journal_t *journal) */ if (!sb->s_start) { - jbd_debug(1, "No recovery required, last transaction %d\n", + jbd2_debug(1, "No recovery required, last transaction %d\n", be32_to_cpu(sb->s_sequence)); journal->j_transaction_sequence = be32_to_cpu(sb->s_sequence) + 1; return 0; } + wb_err = 0; + mapping = journal->j_fs_dev->bd_inode->i_mapping; + errseq_check_and_advance(&mapping->wb_err, &wb_err); err = do_one_pass(journal, &info, PASS_SCAN); if (!err) err = do_one_pass(journal, &info, PASS_REVOKE); if (!err) err = do_one_pass(journal, &info, PASS_REPLAY); - jbd_debug(1, "JBD2: recovery, exit status %d, " + jbd2_debug(1, "JBD2: recovery, exit status %d, " "recovered transactions %u to %u\n", err, info.start_transaction, info.end_transaction); - jbd_debug(1, "JBD2: Replayed %d and revoked %d/%d blocks\n", + jbd2_debug(1, "JBD2: Replayed %d and revoked %d/%d blocks\n", info.nr_replays, info.nr_revoke_hits, info.nr_revokes); /* Restart the log at the next transaction ID, thus invalidating @@ -322,6 +323,9 @@ int jbd2_journal_recover(journal_t *journal) jbd2_journal_clear_revoke(journal); err2 = sync_blockdev(journal->j_fs_dev); + if (!err) + err = err2; + err2 = errseq_check_and_advance(&mapping->wb_err, &wb_err); if (!err) err = err2; /* Make sure all replayed data is on permanent storage */ @@ -363,7 +367,7 @@ int jbd2_journal_skip_recovery(journal_t *journal) #ifdef CONFIG_JBD2_DEBUG int dropped = info.end_transaction - be32_to_cpu(journal->j_superblock->s_sequence); - jbd_debug(1, + jbd2_debug(1, "JBD2: ignoring %d transaction%s from the journal.\n", dropped, (dropped == 1) ? "" : "s"); #endif @@ -485,7 +489,7 @@ static int do_one_pass(journal_t *journal, if (pass == PASS_SCAN) info->start_transaction = first_commit_ID; - jbd_debug(1, "Starting recovery pass %d\n", pass); + jbd2_debug(1, "Starting recovery pass %d\n", pass); /* * Now we walk through the log, transaction by transaction, @@ -511,16 +515,14 @@ static int do_one_pass(journal_t *journal, if (tid_geq(next_commit_ID, info->end_transaction)) break; - jbd_debug(2, "Scanning for sequence ID %u at %lu/%lu\n", - next_commit_ID, next_log_block, - jbd2_has_feature_fast_commit(journal) ? - journal->j_fc_last : journal->j_last); + jbd2_debug(2, "Scanning for sequence ID %u at %lu/%lu\n", + next_commit_ID, next_log_block, journal->j_last); /* Skip over each chunk of the transaction looking * either the next descriptor block or the final commit * record. */ - jbd_debug(3, "JBD2: checking block %ld\n", next_log_block); + jbd2_debug(3, "JBD2: checking block %ld\n", next_log_block); err = jread(&bh, journal, next_log_block); if (err) goto failed; @@ -543,7 +545,7 @@ static int do_one_pass(journal_t *journal, blocktype = be32_to_cpu(tmp->h_blocktype); sequence = be32_to_cpu(tmp->h_sequence); - jbd_debug(3, "Found magic %d, sequence %d\n", + jbd2_debug(3, "Found magic %d, sequence %d\n", blocktype, sequence); if (sequence != next_commit_ID) { @@ -576,7 +578,7 @@ static int do_one_pass(journal_t *journal, goto failed; } need_check_commit_time = true; - jbd_debug(1, + jbd2_debug(1, "invalid descriptor block found in %lu\n", next_log_block); } @@ -759,7 +761,7 @@ static int do_one_pass(journal_t *journal, * It likely does not belong to same journal, * just end this recovery with success. */ - jbd_debug(1, "JBD2: Invalid checksum ignored in transaction %u, likely stale data\n", + jbd2_debug(1, "JBD2: Invalid checksum ignored in transaction %u, likely stale data\n", next_commit_ID); brelse(bh); goto done; @@ -827,7 +829,7 @@ static int do_one_pass(journal_t *journal, if (pass == PASS_SCAN && !jbd2_descriptor_block_csum_verify(journal, bh->b_data)) { - jbd_debug(1, "JBD2: invalid revoke block found in %lu\n", + jbd2_debug(1, "JBD2: invalid revoke block found in %lu\n", next_log_block); need_check_commit_time = true; } @@ -846,7 +848,7 @@ static int do_one_pass(journal_t *journal, continue; default: - jbd_debug(3, "Unrecognised magic %d, end of scan.\n", + jbd2_debug(3, "Unrecognised magic %d, end of scan.\n", blocktype); brelse(bh); goto done; diff --git a/fs/jbd2/revoke.c b/fs/jbd2/revoke.c index fa608788b93d7..4556e46890244 100644 --- a/fs/jbd2/revoke.c +++ b/fs/jbd2/revoke.c @@ -398,7 +398,7 @@ int jbd2_journal_revoke(handle_t *handle, unsigned long long blocknr, } handle->h_revoke_credits--; - jbd_debug(2, "insert revoke for block %llu, bh_in=%p\n",blocknr, bh_in); + jbd2_debug(2, "insert revoke for block %llu, bh_in=%p\n",blocknr, bh_in); err = insert_revoke_hash(journal, blocknr, handle->h_transaction->t_tid); BUFFER_TRACE(bh_in, "exit"); @@ -428,7 +428,7 @@ int jbd2_journal_cancel_revoke(handle_t *handle, struct journal_head *jh) int did_revoke = 0; /* akpm: debug */ struct buffer_head *bh = jh2bh(jh); - jbd_debug(4, "journal_head %p, cancelling revoke\n", jh); + jbd2_debug(4, "journal_head %p, cancelling revoke\n", jh); /* Is the existing Revoke bit valid? If so, we trust it, and * only perform the full cancel if the revoke bit is set. If @@ -444,7 +444,7 @@ int jbd2_journal_cancel_revoke(handle_t *handle, struct journal_head *jh) if (need_cancel) { record = find_revoke_record(journal, bh->b_blocknr); if (record) { - jbd_debug(4, "cancelled existing revoke on " + jbd2_debug(4, "cancelled existing revoke on " "blocknr %llu\n", (unsigned long long)bh->b_blocknr); spin_lock(&journal->j_revoke_lock); list_del(&record->hash); @@ -560,7 +560,7 @@ void jbd2_journal_write_revoke_records(transaction_t *transaction, } if (descriptor) flush_descriptor(journal, descriptor, offset); - jbd_debug(1, "Wrote %d revoke records\n", count); + jbd2_debug(1, "Wrote %d revoke records\n", count); } /* diff --git a/fs/jbd2/transaction.c b/fs/jbd2/transaction.c index 62e68c5b8ec3d..c2125203ef2d9 100644 --- a/fs/jbd2/transaction.c +++ b/fs/jbd2/transaction.c @@ -107,7 +107,6 @@ static void jbd2_get_transaction(journal_t *journal, transaction->t_start_time = ktime_get(); transaction->t_tid = journal->j_transaction_sequence++; transaction->t_expires = jiffies + journal->j_commit_interval; - spin_lock_init(&transaction->t_handle_lock); atomic_set(&transaction->t_updates, 0); atomic_set(&transaction->t_outstanding_credits, jbd2_descriptor_blocks_per_trans(journal) + @@ -139,24 +138,21 @@ static void jbd2_get_transaction(journal_t *journal, /* * Update transaction's maximum wait time, if debugging is enabled. * - * In order for t_max_wait to be reliable, it must be protected by a - * lock. But doing so will mean that start_this_handle() can not be - * run in parallel on SMP systems, which limits our scalability. So - * unless debugging is enabled, we no longer update t_max_wait, which - * means that maximum wait time reported by the jbd2_run_stats - * tracepoint will always be zero. + * t_max_wait is carefully updated here with use of atomic compare exchange. + * Note that there could be multiplre threads trying to do this simultaneously + * hence using cmpxchg to avoid any use of locks in this case. */ static inline void update_t_max_wait(transaction_t *transaction, unsigned long ts) { #ifdef CONFIG_JBD2_DEBUG + unsigned long oldts, newts; if (jbd2_journal_enable_debug && time_after(transaction->t_start, ts)) { - ts = jbd2_time_diff(ts, transaction->t_start); - spin_lock(&transaction->t_handle_lock); - if (ts > transaction->t_max_wait) - transaction->t_max_wait = ts; - spin_unlock(&transaction->t_handle_lock); + newts = jbd2_time_diff(ts, transaction->t_start); + oldts = READ_ONCE(transaction->t_max_wait); + while (oldts < newts) + oldts = cmpxchg(&transaction->t_max_wait, oldts, newts); } #endif } @@ -378,7 +374,7 @@ static int start_this_handle(journal_t *journal, handle_t *handle, return -ENOMEM; } - jbd_debug(3, "New handle %p going live.\n", handle); + jbd2_debug(3, "New handle %p going live.\n", handle); /* * We need to hold j_state_lock until t_updates has been incremented, @@ -449,7 +445,7 @@ static int start_this_handle(journal_t *journal, handle_t *handle, } /* OK, account for the buffers that this operation expects to - * use and add the handle to the running transaction. + * use and add the handle to the running transaction. */ update_t_max_wait(transaction, ts); handle->h_transaction = transaction; @@ -458,7 +454,7 @@ static int start_this_handle(journal_t *journal, handle_t *handle, handle->h_start_jiffies = jiffies; atomic_inc(&transaction->t_updates); atomic_inc(&transaction->t_handle_count); - jbd_debug(4, "Handle %p given %d credits (total %d, free %lu)\n", + jbd2_debug(4, "Handle %p given %d credits (total %d, free %lu)\n", handle, blocks, atomic_read(&transaction->t_outstanding_credits), jbd2_log_space_left(journal)); @@ -679,7 +675,7 @@ int jbd2_journal_extend(handle_t *handle, int nblocks, int revoke_records) /* Don't extend a locked-down transaction! */ if (transaction->t_state != T_RUNNING) { - jbd_debug(3, "denied handle %p %d blocks: " + jbd2_debug(3, "denied handle %p %d blocks: " "transaction not running\n", handle, nblocks); goto error_out; } @@ -690,15 +686,14 @@ int jbd2_journal_extend(handle_t *handle, int nblocks, int revoke_records) DIV_ROUND_UP( handle->h_revoke_credits_requested, journal->j_revoke_records_per_block); - spin_lock(&transaction->t_handle_lock); wanted = atomic_add_return(nblocks, &transaction->t_outstanding_credits); if (wanted > journal->j_max_transaction_buffers) { - jbd_debug(3, "denied handle %p %d blocks: " + jbd2_debug(3, "denied handle %p %d blocks: " "transaction too large\n", handle, nblocks); atomic_sub(nblocks, &transaction->t_outstanding_credits); - goto unlock; + goto error_out; } trace_jbd2_handle_extend(journal->j_fs_dev->bd_dev, @@ -713,9 +708,7 @@ int jbd2_journal_extend(handle_t *handle, int nblocks, int revoke_records) handle->h_revoke_credits_requested += revoke_records; result = 0; - jbd_debug(3, "extended handle %p by %d\n", handle, nblocks); -unlock: - spin_unlock(&transaction->t_handle_lock); + jbd2_debug(3, "extended handle %p by %d\n", handle, nblocks); error_out: read_unlock(&journal->j_state_lock); return result; @@ -803,7 +796,7 @@ int jbd2__journal_restart(handle_t *handle, int nblocks, int revoke_records, * First unlink the handle from its current transaction, and start the * commit on that. */ - jbd_debug(2, "restarting handle %p\n", handle); + jbd2_debug(2, "restarting handle %p\n", handle); stop_this_handle(handle); handle->h_transaction = NULL; @@ -836,6 +829,43 @@ int jbd2_journal_restart(handle_t *handle, int nblocks) } EXPORT_SYMBOL(jbd2_journal_restart); +/* + * Waits for any outstanding t_updates to finish. + * This is called with write j_state_lock held. + */ +void jbd2_journal_wait_updates(journal_t *journal) +{ + DEFINE_WAIT(wait); + + while (1) { + /* + * Note that the running transaction can get freed under us if + * this transaction is getting committed in + * jbd2_journal_commit_transaction() -> + * jbd2_journal_free_transaction(). This can only happen when we + * release j_state_lock -> schedule() -> acquire j_state_lock. + * Hence we should everytime retrieve new j_running_transaction + * value (after j_state_lock release acquire cycle), else it may + * lead to use-after-free of old freed transaction. + */ + transaction_t *transaction = journal->j_running_transaction; + + if (!transaction) + break; + + prepare_to_wait(&journal->j_wait_updates, &wait, + TASK_UNINTERRUPTIBLE); + if (!atomic_read(&transaction->t_updates)) { + finish_wait(&journal->j_wait_updates, &wait); + break; + } + write_unlock(&journal->j_state_lock); + schedule(); + finish_wait(&journal->j_wait_updates, &wait); + write_lock(&journal->j_state_lock); + } +} + /** * jbd2_journal_lock_updates () - establish a transaction barrier. * @journal: Journal to establish a barrier on. @@ -848,8 +878,6 @@ EXPORT_SYMBOL(jbd2_journal_restart); */ void jbd2_journal_lock_updates(journal_t *journal) { - DEFINE_WAIT(wait); - jbd2_might_wait_for_commit(journal); write_lock(&journal->j_state_lock); @@ -863,27 +891,9 @@ void jbd2_journal_lock_updates(journal_t *journal) write_lock(&journal->j_state_lock); } - /* Wait until there are no running updates */ - while (1) { - transaction_t *transaction = journal->j_running_transaction; - - if (!transaction) - break; + /* Wait until there are no running t_updates */ + jbd2_journal_wait_updates(journal); - spin_lock(&transaction->t_handle_lock); - prepare_to_wait(&journal->j_wait_updates, &wait, - TASK_UNINTERRUPTIBLE); - if (!atomic_read(&transaction->t_updates)) { - spin_unlock(&transaction->t_handle_lock); - finish_wait(&journal->j_wait_updates, &wait); - break; - } - spin_unlock(&transaction->t_handle_lock); - write_unlock(&journal->j_state_lock); - schedule(); - finish_wait(&journal->j_wait_updates, &wait); - write_lock(&journal->j_state_lock); - } write_unlock(&journal->j_state_lock); /* @@ -970,7 +980,7 @@ do_get_write_access(handle_t *handle, struct journal_head *jh, journal = transaction->t_journal; - jbd_debug(5, "journal_head %p, force_copy %d\n", jh, force_copy); + jbd2_debug(5, "journal_head %p, force_copy %d\n", jh, force_copy); JBUFFER_TRACE(jh, "entry"); repeat: @@ -1270,7 +1280,7 @@ int jbd2_journal_get_create_access(handle_t *handle, struct buffer_head *bh) struct journal_head *jh = jbd2_journal_add_journal_head(bh); int err; - jbd_debug(5, "journal_head %p\n", jh); + jbd2_debug(5, "journal_head %p\n", jh); err = -EROFS; if (is_handle_aborted(handle)) goto out; @@ -1493,7 +1503,7 @@ int jbd2_journal_dirty_metadata(handle_t *handle, struct buffer_head *bh) * of the running transaction. */ jh = bh2jh(bh); - jbd_debug(5, "journal_head %p\n", jh); + jbd2_debug(5, "journal_head %p\n", jh); JBUFFER_TRACE(jh, "entry"); /* @@ -1826,7 +1836,7 @@ int jbd2_journal_stop(handle_t *handle) pid_t pid; if (--handle->h_ref > 0) { - jbd_debug(4, "h_ref %d -> %d\n", handle->h_ref + 1, + jbd2_debug(4, "h_ref %d -> %d\n", handle->h_ref + 1, handle->h_ref); if (is_handle_aborted(handle)) return -EIO; @@ -1846,7 +1856,7 @@ int jbd2_journal_stop(handle_t *handle) if (is_handle_aborted(handle)) err = -EIO; - jbd_debug(4, "Handle %p going down\n", handle); + jbd2_debug(4, "Handle %p going down\n", handle); trace_jbd2_handle_stats(journal->j_fs_dev->bd_dev, tid, handle->h_type, handle->h_line_no, jiffies - handle->h_start_jiffies, @@ -1924,7 +1934,7 @@ int jbd2_journal_stop(handle_t *handle) * completes the commit thread, it just doesn't write * anything to disk. */ - jbd_debug(2, "transaction too old, requesting commit for " + jbd2_debug(2, "transaction too old, requesting commit for " "handle %p\n", handle); /* This is non-blocking */ jbd2_log_start_commit(journal, tid); @@ -2668,7 +2678,7 @@ static int jbd2_journal_file_inode(handle_t *handle, struct jbd2_inode *jinode, return -EROFS; journal = transaction->t_journal; - jbd_debug(4, "Adding inode %lu, tid:%d\n", jinode->i_vfs_inode->i_ino, + jbd2_debug(4, "Adding inode %lu, tid:%d\n", jinode->i_vfs_inode->i_ino, transaction->t_tid); spin_lock(&journal->j_list_lock); diff --git a/fs/jfs/jfs_dmap.c b/fs/jfs/jfs_dmap.c index f235a3d270a01..5b01026fff9bf 100644 --- a/fs/jfs/jfs_dmap.c +++ b/fs/jfs/jfs_dmap.c @@ -87,7 +87,7 @@ static int dbAllocCtl(struct bmap * bmp, s64 nblocks, int l2nb, s64 blkno, static int dbExtend(struct inode *ip, s64 blkno, s64 nblocks, s64 addnblocks); static int dbFindBits(u32 word, int l2nb); static int dbFindCtl(struct bmap * bmp, int l2nb, int level, s64 * blkno); -static int dbFindLeaf(dmtree_t * tp, int l2nb, int *leafidx); +static int dbFindLeaf(dmtree_t *tp, int l2nb, int *leafidx, bool is_ctl); static int dbFreeBits(struct bmap * bmp, struct dmap * dp, s64 blkno, int nblocks); static int dbFreeDmap(struct bmap * bmp, struct dmap * dp, s64 blkno, @@ -180,7 +180,8 @@ int dbMount(struct inode *ipbmap) bmp->db_nfree = le64_to_cpu(dbmp_le->dn_nfree); bmp->db_l2nbperpage = le32_to_cpu(dbmp_le->dn_l2nbperpage); - if (bmp->db_l2nbperpage > L2PSIZE - L2MINBLOCKSIZE) { + if (bmp->db_l2nbperpage > L2PSIZE - L2MINBLOCKSIZE || + bmp->db_l2nbperpage < 0) { err = -EINVAL; goto err_release_metapage; } @@ -194,6 +195,12 @@ int dbMount(struct inode *ipbmap) bmp->db_maxlevel = le32_to_cpu(dbmp_le->dn_maxlevel); bmp->db_maxag = le32_to_cpu(dbmp_le->dn_maxag); bmp->db_agpref = le32_to_cpu(dbmp_le->dn_agpref); + if (bmp->db_maxag >= MAXAG || bmp->db_maxag < 0 || + bmp->db_agpref >= MAXAG || bmp->db_agpref < 0) { + err = -EINVAL; + goto err_release_metapage; + } + bmp->db_aglevel = le32_to_cpu(dbmp_le->dn_aglevel); bmp->db_agheight = le32_to_cpu(dbmp_le->dn_agheight); bmp->db_agwidth = le32_to_cpu(dbmp_le->dn_agwidth); @@ -269,6 +276,7 @@ int dbUnmount(struct inode *ipbmap, int mounterror) /* free the memory for the in-memory bmap. */ kfree(bmp); + JFS_SBI(ipbmap->i_sb)->bmap = NULL; return (0); } @@ -1777,7 +1785,7 @@ static int dbFindCtl(struct bmap * bmp, int l2nb, int level, s64 * blkno) * dbFindLeaf() returns the index of the leaf at which * free space was found. */ - rc = dbFindLeaf((dmtree_t *) dcp, l2nb, &leafidx); + rc = dbFindLeaf((dmtree_t *) dcp, l2nb, &leafidx, true); /* release the buffer. */ @@ -2024,7 +2032,7 @@ dbAllocDmapLev(struct bmap * bmp, * free space. if sufficient free space is found, dbFindLeaf() * returns the index of the leaf at which free space was found. */ - if (dbFindLeaf((dmtree_t *) & dp->tree, l2nb, &leafidx)) + if (dbFindLeaf((dmtree_t *) &dp->tree, l2nb, &leafidx, false)) return -ENOSPC; if (leafidx < 0) @@ -2988,14 +2996,18 @@ static void dbAdjTree(dmtree_t * tp, int leafno, int newval) * leafidx - return pointer to be set to the index of the leaf * describing at least l2nb free blocks if sufficient * free blocks are found. + * is_ctl - determines if the tree is of type ctl * * RETURN VALUES: * 0 - success * -ENOSPC - insufficient free blocks. */ -static int dbFindLeaf(dmtree_t * tp, int l2nb, int *leafidx) +static int dbFindLeaf(dmtree_t *tp, int l2nb, int *leafidx, bool is_ctl) { int ti, n = 0, k, x = 0; + int max_size; + + max_size = is_ctl ? CTLTREESIZE : TREESIZE; /* first check the root of the tree to see if there is * sufficient free space. @@ -3016,6 +3028,8 @@ static int dbFindLeaf(dmtree_t * tp, int l2nb, int *leafidx) /* sufficient free space found. move to the next * level (or quit if this is the last level). */ + if (x + n > max_size) + return -ENOSPC; if (l2nb <= tp->dmt_stree[x + n]) break; } diff --git a/fs/jfs/jfs_extent.c b/fs/jfs/jfs_extent.c index bb4a342a193d4..6420b6749d48f 100644 --- a/fs/jfs/jfs_extent.c +++ b/fs/jfs/jfs_extent.c @@ -508,6 +508,11 @@ extBalloc(struct inode *ip, s64 hint, s64 * nblocks, s64 * blkno) * blocks in the map. in that case, we'll start off with the * maximum free. */ + + /* give up if no space left */ + if (bmp->db_maxfreebud == -1) + return -ENOSPC; + max = (s64) 1 << bmp->db_maxfreebud; if (*nblocks >= max && *nblocks > nbperpage) nb = nblks = (max > nbperpage) ? max : nbperpage; diff --git a/fs/jfs/jfs_imap.c b/fs/jfs/jfs_imap.c index 799d3837e7c2b..6ed2e1d4c894f 100644 --- a/fs/jfs/jfs_imap.c +++ b/fs/jfs/jfs_imap.c @@ -193,6 +193,7 @@ int diUnmount(struct inode *ipimap, int mounterror) * free in-memory control structure */ kfree(imap); + JFS_IP(ipimap)->i_imap = NULL; return (0); } @@ -1319,7 +1320,7 @@ diInitInode(struct inode *ip, int iagno, int ino, int extno, struct iag * iagp) int diAlloc(struct inode *pip, bool dir, struct inode *ip) { int rc, ino, iagno, addext, extno, bitno, sword; - int nwords, rem, i, agno; + int nwords, rem, i, agno, dn_numag; u32 mask, inosmap, extsmap; struct inode *ipimap; struct metapage *mp; @@ -1355,6 +1356,9 @@ int diAlloc(struct inode *pip, bool dir, struct inode *ip) /* get the ag number of this iag */ agno = BLKTOAG(JFS_IP(pip)->agstart, JFS_SBI(pip->i_sb)); + dn_numag = JFS_SBI(pip->i_sb)->bmap->db_numag; + if (agno < 0 || agno > dn_numag) + return -EIO; if (atomic_read(&JFS_SBI(pip->i_sb)->bmap->db_active[agno])) { /* diff --git a/fs/ksmbd/connection.c b/fs/ksmbd/connection.c index cab274b77727f..3c4b7a96919ce 100644 --- a/fs/ksmbd/connection.c +++ b/fs/ksmbd/connection.c @@ -56,7 +56,7 @@ struct ksmbd_conn *ksmbd_conn_alloc(void) return NULL; conn->need_neg = true; - conn->status = KSMBD_SESS_NEW; + ksmbd_conn_set_new(conn); conn->local_nls = load_nls("utf8"); if (!conn->local_nls) conn->local_nls = load_nls_default(); @@ -142,12 +142,12 @@ int ksmbd_conn_try_dequeue_request(struct ksmbd_work *work) return ret; } -static void ksmbd_conn_lock(struct ksmbd_conn *conn) +void ksmbd_conn_lock(struct ksmbd_conn *conn) { mutex_lock(&conn->srv_mutex); } -static void ksmbd_conn_unlock(struct ksmbd_conn *conn) +void ksmbd_conn_unlock(struct ksmbd_conn *conn) { mutex_unlock(&conn->srv_mutex); } @@ -240,7 +240,7 @@ bool ksmbd_conn_alive(struct ksmbd_conn *conn) if (!ksmbd_server_running()) return false; - if (conn->status == KSMBD_SESS_EXITING) + if (ksmbd_conn_exiting(conn)) return false; if (kthread_should_stop()) @@ -300,7 +300,7 @@ int ksmbd_conn_handler_loop(void *p) pdu_size = get_rfc1002_len(hdr_buf); ksmbd_debug(CONN, "RFC1002 header %u bytes\n", pdu_size); - if (conn->status == KSMBD_SESS_GOOD) + if (ksmbd_conn_good(conn)) max_allowed_pdu_size = SMB3_MAX_MSGSIZE + conn->vals->max_write_size; else @@ -309,7 +309,7 @@ int ksmbd_conn_handler_loop(void *p) if (pdu_size > max_allowed_pdu_size) { pr_err_ratelimited("PDU length(%u) excceed maximum allowed pdu size(%u) on connection(%d)\n", pdu_size, max_allowed_pdu_size, - conn->status); + READ_ONCE(conn->status)); break; } @@ -400,17 +400,24 @@ int ksmbd_conn_transport_init(void) static void stop_sessions(void) { struct ksmbd_conn *conn; + struct ksmbd_transport *t; again: read_lock(&conn_list_lock); list_for_each_entry(conn, &conn_list, conns_list) { struct task_struct *task; - task = conn->transport->handler; + t = conn->transport; + task = t->handler; if (task) ksmbd_debug(CONN, "Stop session handler %s/%d\n", task->comm, task_pid_nr(task)); - conn->status = KSMBD_SESS_EXITING; + ksmbd_conn_set_exiting(conn); + if (t->ops->shutdown) { + read_unlock(&conn_list_lock); + t->ops->shutdown(t); + read_lock(&conn_list_lock); + } } read_unlock(&conn_list_lock); diff --git a/fs/ksmbd/connection.h b/fs/ksmbd/connection.h index 89eb41bbd1601..62ffc1c05c279 100644 --- a/fs/ksmbd/connection.h +++ b/fs/ksmbd/connection.h @@ -110,6 +110,7 @@ struct ksmbd_conn_ops { struct ksmbd_transport_ops { int (*prepare)(struct ksmbd_transport *t); void (*disconnect)(struct ksmbd_transport *t); + void (*shutdown)(struct ksmbd_transport *t); int (*read)(struct ksmbd_transport *t, char *buf, unsigned int size, int max_retries); int (*writev)(struct ksmbd_transport *t, struct kvec *iovs, int niov, @@ -153,6 +154,8 @@ void ksmbd_conn_init_server_callbacks(struct ksmbd_conn_ops *ops); int ksmbd_conn_handler_loop(void *p); int ksmbd_conn_transport_init(void); void ksmbd_conn_transport_destroy(void); +void ksmbd_conn_lock(struct ksmbd_conn *conn); +void ksmbd_conn_unlock(struct ksmbd_conn *conn); /* * WARNING @@ -160,43 +163,48 @@ void ksmbd_conn_transport_destroy(void); * This is a hack. We will move status to a proper place once we land * a multi-sessions support. */ -static inline bool ksmbd_conn_good(struct ksmbd_work *work) +static inline bool ksmbd_conn_good(struct ksmbd_conn *conn) { - return work->conn->status == KSMBD_SESS_GOOD; + return READ_ONCE(conn->status) == KSMBD_SESS_GOOD; } -static inline bool ksmbd_conn_need_negotiate(struct ksmbd_work *work) +static inline bool ksmbd_conn_need_negotiate(struct ksmbd_conn *conn) { - return work->conn->status == KSMBD_SESS_NEED_NEGOTIATE; + return READ_ONCE(conn->status) == KSMBD_SESS_NEED_NEGOTIATE; } -static inline bool ksmbd_conn_need_reconnect(struct ksmbd_work *work) +static inline bool ksmbd_conn_need_reconnect(struct ksmbd_conn *conn) { - return work->conn->status == KSMBD_SESS_NEED_RECONNECT; + return READ_ONCE(conn->status) == KSMBD_SESS_NEED_RECONNECT; } -static inline bool ksmbd_conn_exiting(struct ksmbd_work *work) +static inline bool ksmbd_conn_exiting(struct ksmbd_conn *conn) { - return work->conn->status == KSMBD_SESS_EXITING; + return READ_ONCE(conn->status) == KSMBD_SESS_EXITING; } -static inline void ksmbd_conn_set_good(struct ksmbd_work *work) +static inline void ksmbd_conn_set_new(struct ksmbd_conn *conn) { - work->conn->status = KSMBD_SESS_GOOD; + WRITE_ONCE(conn->status, KSMBD_SESS_NEW); } -static inline void ksmbd_conn_set_need_negotiate(struct ksmbd_work *work) +static inline void ksmbd_conn_set_good(struct ksmbd_conn *conn) { - work->conn->status = KSMBD_SESS_NEED_NEGOTIATE; + WRITE_ONCE(conn->status, KSMBD_SESS_GOOD); } -static inline void ksmbd_conn_set_need_reconnect(struct ksmbd_work *work) +static inline void ksmbd_conn_set_need_negotiate(struct ksmbd_conn *conn) { - work->conn->status = KSMBD_SESS_NEED_RECONNECT; + WRITE_ONCE(conn->status, KSMBD_SESS_NEED_NEGOTIATE); } -static inline void ksmbd_conn_set_exiting(struct ksmbd_work *work) +static inline void ksmbd_conn_set_need_reconnect(struct ksmbd_conn *conn) { - work->conn->status = KSMBD_SESS_EXITING; + WRITE_ONCE(conn->status, KSMBD_SESS_NEED_RECONNECT); +} + +static inline void ksmbd_conn_set_exiting(struct ksmbd_conn *conn) +{ + WRITE_ONCE(conn->status, KSMBD_SESS_EXITING); } #endif /* __CONNECTION_H__ */ diff --git a/fs/ksmbd/mgmt/user_session.c b/fs/ksmbd/mgmt/user_session.c index 92b1603b5abeb..b809f7987b9f4 100644 --- a/fs/ksmbd/mgmt/user_session.c +++ b/fs/ksmbd/mgmt/user_session.c @@ -30,15 +30,15 @@ struct ksmbd_session_rpc { static void free_channel_list(struct ksmbd_session *sess) { - struct channel *chann, *tmp; + struct channel *chann; + unsigned long index; - write_lock(&sess->chann_lock); - list_for_each_entry_safe(chann, tmp, &sess->ksmbd_chann_list, - chann_list) { - list_del(&chann->chann_list); + xa_for_each(&sess->ksmbd_chann_list, index, chann) { + xa_erase(&sess->ksmbd_chann_list, index); kfree(chann); } - write_unlock(&sess->chann_lock); + + xa_destroy(&sess->ksmbd_chann_list); } static void __session_rpc_close(struct ksmbd_session *sess, @@ -174,76 +174,73 @@ static struct ksmbd_session *__session_lookup(unsigned long long id) struct ksmbd_session *sess; hash_for_each_possible(sessions_table, sess, hlist, id) { - if (id == sess->id) + if (id == sess->id) { + sess->last_active = jiffies; return sess; + } } return NULL; } +static void ksmbd_expire_session(struct ksmbd_conn *conn) +{ + unsigned long id; + struct ksmbd_session *sess; + + xa_for_each(&conn->sessions, id, sess) { + if (sess->state != SMB2_SESSION_VALID || + time_after(jiffies, + sess->last_active + SMB2_SESSION_TIMEOUT)) { + xa_erase(&conn->sessions, sess->id); + ksmbd_session_destroy(sess); + continue; + } + } +} + int ksmbd_session_register(struct ksmbd_conn *conn, struct ksmbd_session *sess) { sess->dialect = conn->dialect; memcpy(sess->ClientGUID, conn->ClientGUID, SMB2_CLIENT_GUID_SIZE); + ksmbd_expire_session(conn); return xa_err(xa_store(&conn->sessions, sess->id, sess, GFP_KERNEL)); } -static int ksmbd_chann_del(struct ksmbd_conn *conn, struct ksmbd_session *sess) +static void ksmbd_chann_del(struct ksmbd_conn *conn, struct ksmbd_session *sess) { - struct channel *chann, *tmp; - - write_lock(&sess->chann_lock); - list_for_each_entry_safe(chann, tmp, &sess->ksmbd_chann_list, - chann_list) { - if (chann->conn == conn) { - list_del(&chann->chann_list); - kfree(chann); - write_unlock(&sess->chann_lock); - return 0; - } - } - write_unlock(&sess->chann_lock); + struct channel *chann; - return -ENOENT; + chann = xa_erase(&sess->ksmbd_chann_list, (long)conn); + if (!chann) + return; + + kfree(chann); } void ksmbd_sessions_deregister(struct ksmbd_conn *conn) { struct ksmbd_session *sess; + unsigned long id; - if (conn->binding) { - int bkt; - - down_write(&sessions_table_lock); - hash_for_each(sessions_table, bkt, sess, hlist) { - if (!ksmbd_chann_del(conn, sess)) { - up_write(&sessions_table_lock); - goto sess_destroy; - } + xa_for_each(&conn->sessions, id, sess) { + ksmbd_chann_del(conn, sess); + if (xa_empty(&sess->ksmbd_chann_list)) { + xa_erase(&conn->sessions, sess->id); + ksmbd_session_destroy(sess); } - up_write(&sessions_table_lock); - } else { - unsigned long id; - - xa_for_each(&conn->sessions, id, sess) { - if (!ksmbd_chann_del(conn, sess)) - goto sess_destroy; - } - } - - return; - -sess_destroy: - if (list_empty(&sess->ksmbd_chann_list)) { - xa_erase(&conn->sessions, sess->id); - ksmbd_session_destroy(sess); } } struct ksmbd_session *ksmbd_session_lookup(struct ksmbd_conn *conn, unsigned long long id) { - return xa_load(&conn->sessions, id); + struct ksmbd_session *sess; + + sess = xa_load(&conn->sessions, id); + if (sess) + sess->last_active = jiffies; + return sess; } struct ksmbd_session *ksmbd_session_lookup_slowpath(unsigned long long id) @@ -252,6 +249,8 @@ struct ksmbd_session *ksmbd_session_lookup_slowpath(unsigned long long id) down_read(&sessions_table_lock); sess = __session_lookup(id); + if (sess) + sess->last_active = jiffies; up_read(&sessions_table_lock); return sess; @@ -320,6 +319,9 @@ static struct ksmbd_session *__session_create(int protocol) struct ksmbd_session *sess; int ret; + if (protocol != CIFDS_SESSION_FLAG_SMB2) + return NULL; + sess = kzalloc(sizeof(struct ksmbd_session), GFP_KERNEL); if (!sess) return NULL; @@ -327,32 +329,24 @@ static struct ksmbd_session *__session_create(int protocol) if (ksmbd_init_file_table(&sess->file_table)) goto error; + sess->last_active = jiffies; + sess->state = SMB2_SESSION_IN_PROGRESS; set_session_flag(sess, protocol); xa_init(&sess->tree_conns); - INIT_LIST_HEAD(&sess->ksmbd_chann_list); + xa_init(&sess->ksmbd_chann_list); INIT_LIST_HEAD(&sess->rpc_handle_list); sess->sequence_number = 1; - rwlock_init(&sess->chann_lock); - - switch (protocol) { - case CIFDS_SESSION_FLAG_SMB2: - ret = __init_smb2_session(sess); - break; - default: - ret = -EINVAL; - break; - } + ret = __init_smb2_session(sess); if (ret) goto error; ida_init(&sess->tree_conn_ida); - if (protocol == CIFDS_SESSION_FLAG_SMB2) { - down_write(&sessions_table_lock); - hash_add(sessions_table, &sess->hlist, sess->id); - up_write(&sessions_table_lock); - } + down_write(&sessions_table_lock); + hash_add(sessions_table, &sess->hlist, sess->id); + up_write(&sessions_table_lock); + return sess; error: diff --git a/fs/ksmbd/mgmt/user_session.h b/fs/ksmbd/mgmt/user_session.h index 8934b8ee275ba..51f38e5b61abb 100644 --- a/fs/ksmbd/mgmt/user_session.h +++ b/fs/ksmbd/mgmt/user_session.h @@ -21,7 +21,6 @@ struct ksmbd_file_table; struct channel { __u8 smb3signingkey[SMB3_SIGN_KEY_SIZE]; struct ksmbd_conn *conn; - struct list_head chann_list; }; struct preauth_session { @@ -50,8 +49,7 @@ struct ksmbd_session { char sess_key[CIFS_KEY_SIZE]; struct hlist_node hlist; - rwlock_t chann_lock; - struct list_head ksmbd_chann_list; + struct xarray ksmbd_chann_list; struct xarray tree_conns; struct ida tree_conn_ida; struct list_head rpc_handle_list; @@ -61,6 +59,7 @@ struct ksmbd_session { __u8 smb3signingkey[SMB3_SIGN_KEY_SIZE]; struct ksmbd_file_table file_table; + unsigned long last_active; }; static inline int test_session_flag(struct ksmbd_session *sess, int bit) diff --git a/fs/ksmbd/server.c b/fs/ksmbd/server.c index eb45d56b3577c..656ef21db1fb9 100644 --- a/fs/ksmbd/server.c +++ b/fs/ksmbd/server.c @@ -93,7 +93,8 @@ static inline int check_conn_state(struct ksmbd_work *work) { struct smb_hdr *rsp_hdr; - if (ksmbd_conn_exiting(work) || ksmbd_conn_need_reconnect(work)) { + if (ksmbd_conn_exiting(work->conn) || + ksmbd_conn_need_reconnect(work->conn)) { rsp_hdr = work->response_buf; rsp_hdr->Status.CifsError = STATUS_CONNECTION_DISCONNECTED; return 1; diff --git a/fs/ksmbd/smb2pdu.c b/fs/ksmbd/smb2pdu.c index 48a3224c8514a..89af3a6b8fb75 100644 --- a/fs/ksmbd/smb2pdu.c +++ b/fs/ksmbd/smb2pdu.c @@ -75,14 +75,7 @@ static inline bool check_session_id(struct ksmbd_conn *conn, u64 id) struct channel *lookup_chann_list(struct ksmbd_session *sess, struct ksmbd_conn *conn) { - struct channel *chann; - - list_for_each_entry(chann, &sess->ksmbd_chann_list, chann_list) { - if (chann->conn == conn) - return chann; - } - - return NULL; + return xa_load(&sess->ksmbd_chann_list, (long)conn); } /** @@ -276,7 +269,7 @@ int init_smb2_neg_rsp(struct ksmbd_work *work) rsp = work->response_buf; - WARN_ON(ksmbd_conn_good(work)); + WARN_ON(ksmbd_conn_good(conn)); rsp->StructureSize = cpu_to_le16(65); ksmbd_debug(SMB, "conn->dialect 0x%x\n", conn->dialect); @@ -306,7 +299,7 @@ int init_smb2_neg_rsp(struct ksmbd_work *work) rsp->SecurityMode |= SMB2_NEGOTIATE_SIGNING_REQUIRED_LE; conn->use_spnego = true; - ksmbd_conn_set_need_negotiate(work); + ksmbd_conn_set_need_negotiate(conn); return 0; } @@ -595,8 +588,8 @@ int smb2_check_user_session(struct ksmbd_work *work) cmd == SMB2_SESSION_SETUP_HE) return 0; - if (!ksmbd_conn_good(work)) - return -EIO; + if (!ksmbd_conn_good(conn)) + return -EINVAL; sess_id = le64_to_cpu(req_hdr->SessionId); @@ -631,6 +624,7 @@ static void destroy_previous_session(struct ksmbd_conn *conn, struct ksmbd_session *prev_sess = ksmbd_session_lookup_slowpath(id); struct ksmbd_user *prev_user; struct channel *chann; + long index; if (!prev_sess) return; @@ -644,10 +638,8 @@ static void destroy_previous_session(struct ksmbd_conn *conn, return; prev_sess->state = SMB2_SESSION_EXPIRED; - write_lock(&prev_sess->chann_lock); - list_for_each_entry(chann, &prev_sess->ksmbd_chann_list, chann_list) - chann->conn->status = KSMBD_SESS_EXITING; - write_unlock(&prev_sess->chann_lock); + xa_for_each(&prev_sess->ksmbd_chann_list, index, chann) + ksmbd_conn_set_exiting(chann->conn); } /** @@ -1111,7 +1103,7 @@ int smb2_handle_negotiate(struct ksmbd_work *work) ksmbd_debug(SMB, "Received negotiate request\n"); conn->need_neg = false; - if (ksmbd_conn_good(work)) { + if (ksmbd_conn_good(conn)) { pr_err("conn->tcp_status is already in CifsGood State\n"); work->send_no_response = 1; return rc; @@ -1266,7 +1258,7 @@ int smb2_handle_negotiate(struct ksmbd_work *work) } conn->srv_sec_mode = le16_to_cpu(rsp->SecurityMode); - ksmbd_conn_set_need_negotiate(work); + ksmbd_conn_set_need_negotiate(conn); err_out: if (rc < 0) @@ -1555,19 +1547,14 @@ static int ntlm_authenticate(struct ksmbd_work *work) binding_session: if (conn->dialect >= SMB30_PROT_ID) { - read_lock(&sess->chann_lock); chann = lookup_chann_list(sess, conn); - read_unlock(&sess->chann_lock); if (!chann) { chann = kmalloc(sizeof(struct channel), GFP_KERNEL); if (!chann) return -ENOMEM; chann->conn = conn; - INIT_LIST_HEAD(&chann->chann_list); - write_lock(&sess->chann_lock); - list_add(&chann->chann_list, &sess->ksmbd_chann_list); - write_unlock(&sess->chann_lock); + xa_store(&sess->ksmbd_chann_list, (long)conn, chann, GFP_KERNEL); } } @@ -1642,19 +1629,14 @@ static int krb5_authenticate(struct ksmbd_work *work) } if (conn->dialect >= SMB30_PROT_ID) { - read_lock(&sess->chann_lock); chann = lookup_chann_list(sess, conn); - read_unlock(&sess->chann_lock); if (!chann) { chann = kmalloc(sizeof(struct channel), GFP_KERNEL); if (!chann) return -ENOMEM; chann->conn = conn; - INIT_LIST_HEAD(&chann->chann_list); - write_lock(&sess->chann_lock); - list_add(&chann->chann_list, &sess->ksmbd_chann_list); - write_unlock(&sess->chann_lock); + xa_store(&sess->ksmbd_chann_list, (long)conn, chann, GFP_KERNEL); } } @@ -1697,6 +1679,7 @@ int smb2_sess_setup(struct ksmbd_work *work) rsp->SecurityBufferLength = 0; inc_rfc1001_len(rsp, 9); + ksmbd_conn_lock(conn); if (!req->hdr.SessionId) { sess = ksmbd_smb2_session_create(); if (!sess) { @@ -1744,6 +1727,12 @@ int smb2_sess_setup(struct ksmbd_work *work) goto out_err; } + if (ksmbd_conn_need_reconnect(conn)) { + rc = -EFAULT; + sess = NULL; + goto out_err; + } + if (ksmbd_session_lookup(conn, sess_id)) { rc = -EACCES; goto out_err; @@ -1768,12 +1757,20 @@ int smb2_sess_setup(struct ksmbd_work *work) rc = -ENOENT; goto out_err; } + + if (sess->state == SMB2_SESSION_EXPIRED) { + rc = -EFAULT; + goto out_err; + } + + if (ksmbd_conn_need_reconnect(conn)) { + rc = -EFAULT; + sess = NULL; + goto out_err; + } } work->sess = sess; - if (sess->state == SMB2_SESSION_EXPIRED) - sess->state = SMB2_SESSION_IN_PROGRESS; - negblob_off = le16_to_cpu(req->SecurityBufferOffset); negblob_len = le16_to_cpu(req->SecurityBufferLength); if (negblob_off < (offsetof(struct smb2_sess_setup_req, Buffer) - 4) || @@ -1803,8 +1800,10 @@ int smb2_sess_setup(struct ksmbd_work *work) goto out_err; } - ksmbd_conn_set_good(work); - sess->state = SMB2_SESSION_VALID; + if (!ksmbd_conn_need_reconnect(conn)) { + ksmbd_conn_set_good(conn); + sess->state = SMB2_SESSION_VALID; + } kfree(sess->Preauth_HashValue); sess->Preauth_HashValue = NULL; } else if (conn->preferred_auth_mech == KSMBD_AUTH_NTLMSSP) { @@ -1825,8 +1824,10 @@ int smb2_sess_setup(struct ksmbd_work *work) if (rc) goto out_err; - ksmbd_conn_set_good(work); - sess->state = SMB2_SESSION_VALID; + if (!ksmbd_conn_need_reconnect(conn)) { + ksmbd_conn_set_good(conn); + sess->state = SMB2_SESSION_VALID; + } if (conn->binding) { struct preauth_session *preauth_sess; @@ -1894,14 +1895,14 @@ int smb2_sess_setup(struct ksmbd_work *work) if (sess->user && sess->user->flags & KSMBD_USER_FLAG_DELAY_SESSION) try_delay = true; - xa_erase(&conn->sessions, sess->id); - ksmbd_session_destroy(sess); - work->sess = NULL; + sess->last_active = jiffies; + sess->state = SMB2_SESSION_EXPIRED; if (try_delay) ssleep(5); } } + ksmbd_conn_unlock(conn); return rc; } @@ -2120,21 +2121,24 @@ int smb2_session_logoff(struct ksmbd_work *work) { struct ksmbd_conn *conn = work->conn; struct smb2_logoff_rsp *rsp = work->response_buf; - struct ksmbd_session *sess = work->sess; + struct ksmbd_session *sess; + struct smb2_logoff_req *req = work->request_buf; rsp->StructureSize = cpu_to_le16(4); inc_rfc1001_len(rsp, 4); ksmbd_debug(SMB, "request\n"); - /* setting CifsExiting here may race with start_tcp_sess */ - ksmbd_conn_set_need_reconnect(work); + ksmbd_conn_set_need_reconnect(conn); ksmbd_close_session_fds(work); ksmbd_conn_wait_idle(conn); + /* + * Re-lookup session to validate if session is deleted + * while waiting request complete + */ + sess = ksmbd_session_lookup(conn, le64_to_cpu(req->hdr.SessionId)); if (ksmbd_tree_conn_session_logoff(sess)) { - struct smb2_logoff_req *req = work->request_buf; - ksmbd_debug(SMB, "Invalid tid %d\n", req->hdr.Id.SyncId.TreeId); rsp->hdr.Status = STATUS_NETWORK_NAME_DELETED; smb2_set_err_rsp(work); @@ -2146,9 +2150,7 @@ int smb2_session_logoff(struct ksmbd_work *work) ksmbd_free_user(sess->user); sess->user = NULL; - - /* let start_tcp_sess free connection info now */ - ksmbd_conn_set_need_negotiate(work); + ksmbd_conn_set_need_negotiate(conn); return 0; } @@ -6245,7 +6247,7 @@ int smb2_read(struct ksmbd_work *work) struct ksmbd_conn *conn = work->conn; struct smb2_read_req *req; struct smb2_read_rsp *rsp, *rsp_org; - struct ksmbd_file *fp; + struct ksmbd_file *fp = NULL; loff_t offset; size_t length, mincount; ssize_t nbytes = 0, remain_bytes = 0; @@ -6253,6 +6255,11 @@ int smb2_read(struct ksmbd_work *work) rsp_org = work->response_buf; WORK_BUFFERS(work, req, rsp); + if (work->next_smb2_rcv_hdr_off) { + work->send_no_response = 1; + err = -EOPNOTSUPP; + goto out; + } if (test_share_config_flag(work->tcon->share_conf, KSMBD_SHARE_FLAG_PIPE)) { @@ -8043,10 +8050,10 @@ static void smb20_oplock_break_ack(struct ksmbd_work *work) goto err_out; } - opinfo_put(opinfo); - ksmbd_fd_put(work, fp); opinfo->op_state = OPLOCK_STATE_NONE; wake_up_interruptible_all(&opinfo->oplock_q); + opinfo_put(opinfo); + ksmbd_fd_put(work, fp); rsp->StructureSize = cpu_to_le16(24); rsp->OplockLevel = rsp_oplevel; @@ -8415,14 +8422,11 @@ int smb3_check_sign_req(struct ksmbd_work *work) if (le16_to_cpu(hdr->Command) == SMB2_SESSION_SETUP_HE) { signing_key = work->sess->smb3signingkey; } else { - read_lock(&work->sess->chann_lock); chann = lookup_chann_list(work->sess, conn); if (!chann) { - read_unlock(&work->sess->chann_lock); return 0; } signing_key = chann->smb3signingkey; - read_unlock(&work->sess->chann_lock); } if (!signing_key) { @@ -8482,14 +8486,11 @@ void smb3_set_sign_rsp(struct ksmbd_work *work) le16_to_cpu(hdr->Command) == SMB2_SESSION_SETUP_HE) { signing_key = work->sess->smb3signingkey; } else { - read_lock(&work->sess->chann_lock); chann = lookup_chann_list(work->sess, work->conn); if (!chann) { - read_unlock(&work->sess->chann_lock); return; } signing_key = chann->smb3signingkey; - read_unlock(&work->sess->chann_lock); } if (!signing_key) @@ -8639,7 +8640,8 @@ int smb3_decrypt_req(struct ksmbd_work *work) struct smb2_transform_hdr *tr_hdr = (struct smb2_transform_hdr *)buf; int rc = 0; - if (buf_data_size < sizeof(struct smb2_hdr)) { + if (pdu_length < sizeof(struct smb2_transform_hdr) || + buf_data_size < sizeof(struct smb2_hdr)) { pr_err("Transform message is too small (%u)\n", pdu_length); return -ECONNABORTED; diff --git a/fs/ksmbd/smb2pdu.h b/fs/ksmbd/smb2pdu.h index fa1cd556ab7ac..ef254243a7359 100644 --- a/fs/ksmbd/smb2pdu.h +++ b/fs/ksmbd/smb2pdu.h @@ -376,6 +376,8 @@ struct smb2_negotiate_rsp { #define SMB2_SESSION_IN_PROGRESS BIT(0) #define SMB2_SESSION_VALID BIT(1) +#define SMB2_SESSION_TIMEOUT (10 * HZ) + /* Flags */ #define SMB2_SESSION_REQ_FLAG_BINDING 0x01 #define SMB2_SESSION_REQ_FLAG_ENCRYPT_DATA 0x04 diff --git a/fs/ksmbd/smbacl.c b/fs/ksmbd/smbacl.c index 3781bca2c8fc4..83f805248a814 100644 --- a/fs/ksmbd/smbacl.c +++ b/fs/ksmbd/smbacl.c @@ -1105,6 +1105,7 @@ int smb_inherit_dacl(struct ksmbd_conn *conn, struct smb_acl *pdacl; struct smb_sid *powner_sid = NULL, *pgroup_sid = NULL; int powner_sid_size = 0, pgroup_sid_size = 0, pntsd_size; + int pntsd_alloc_size; if (parent_pntsd->osidoffset) { powner_sid = (struct smb_sid *)((char *)parent_pntsd + @@ -1117,9 +1118,10 @@ int smb_inherit_dacl(struct ksmbd_conn *conn, pgroup_sid_size = 1 + 1 + 6 + (pgroup_sid->num_subauth * 4); } - pntsd = kzalloc(sizeof(struct smb_ntsd) + powner_sid_size + - pgroup_sid_size + sizeof(struct smb_acl) + - nt_size, GFP_KERNEL); + pntsd_alloc_size = sizeof(struct smb_ntsd) + powner_sid_size + + pgroup_sid_size + sizeof(struct smb_acl) + nt_size; + + pntsd = kzalloc(pntsd_alloc_size, GFP_KERNEL); if (!pntsd) { rc = -ENOMEM; goto free_aces_base; @@ -1134,6 +1136,27 @@ int smb_inherit_dacl(struct ksmbd_conn *conn, pntsd->gsidoffset = parent_pntsd->gsidoffset; pntsd->dacloffset = parent_pntsd->dacloffset; + if ((u64)le32_to_cpu(pntsd->osidoffset) + powner_sid_size > + pntsd_alloc_size) { + rc = -EINVAL; + kfree(pntsd); + goto free_aces_base; + } + + if ((u64)le32_to_cpu(pntsd->gsidoffset) + pgroup_sid_size > + pntsd_alloc_size) { + rc = -EINVAL; + kfree(pntsd); + goto free_aces_base; + } + + if ((u64)le32_to_cpu(pntsd->dacloffset) + sizeof(struct smb_acl) + nt_size > + pntsd_alloc_size) { + rc = -EINVAL; + kfree(pntsd); + goto free_aces_base; + } + if (pntsd->osidoffset) { struct smb_sid *owner_sid = (struct smb_sid *)((char *)pntsd + le32_to_cpu(pntsd->osidoffset)); diff --git a/fs/ksmbd/transport_rdma.c b/fs/ksmbd/transport_rdma.c index 9ca29cdb7898f..b64518a0cc58a 100644 --- a/fs/ksmbd/transport_rdma.c +++ b/fs/ksmbd/transport_rdma.c @@ -1444,6 +1444,15 @@ static void smb_direct_disconnect(struct ksmbd_transport *t) free_transport(st); } +static void smb_direct_shutdown(struct ksmbd_transport *t) +{ + struct smb_direct_transport *st = smb_trans_direct_transfort(t); + + ksmbd_debug(RDMA, "smb-direct shutdown cm_id=%p\n", st->cm_id); + + smb_direct_disconnect_rdma_work(&st->disconnect_work); +} + static int smb_direct_cm_handler(struct rdma_cm_id *cm_id, struct rdma_cm_event *event) { @@ -2073,6 +2082,7 @@ bool ksmbd_rdma_capable_netdev(struct net_device *netdev) static struct ksmbd_transport_ops ksmbd_smb_direct_transport_ops = { .prepare = smb_direct_prepare, .disconnect = smb_direct_disconnect, + .shutdown = smb_direct_shutdown, .writev = smb_direct_writev, .read = smb_direct_read, .rdma_read = smb_direct_rdma_read, diff --git a/fs/ksmbd/transport_tcp.c b/fs/ksmbd/transport_tcp.c index d1d7954368a56..42504e80f2afa 100644 --- a/fs/ksmbd/transport_tcp.c +++ b/fs/ksmbd/transport_tcp.c @@ -333,7 +333,7 @@ static int ksmbd_tcp_readv(struct tcp_transport *t, struct kvec *iov_orig, if (length == -EINTR) { total_read = -ESHUTDOWN; break; - } else if (conn->status == KSMBD_SESS_NEED_RECONNECT) { + } else if (ksmbd_conn_need_reconnect(conn)) { total_read = -EAGAIN; break; } else if (length == -ERESTARTSYS || length == -EAGAIN) { diff --git a/fs/ksmbd/vfs_cache.c b/fs/ksmbd/vfs_cache.c index 0df8467af39af..b67ce2d52ceeb 100644 --- a/fs/ksmbd/vfs_cache.c +++ b/fs/ksmbd/vfs_cache.c @@ -105,7 +105,7 @@ int ksmbd_query_inode_status(struct inode *inode) ci = __ksmbd_inode_lookup(inode); if (ci) { ret = KSMBD_INODE_STATUS_OK; - if (ci->m_flags & S_DEL_PENDING) + if (ci->m_flags & (S_DEL_PENDING | S_DEL_ON_CLS)) ret = KSMBD_INODE_STATUS_PENDING_DELETE; atomic_dec(&ci->m_count); } @@ -115,7 +115,7 @@ int ksmbd_query_inode_status(struct inode *inode) bool ksmbd_inode_pending_delete(struct ksmbd_file *fp) { - return (fp->f_ci->m_flags & S_DEL_PENDING); + return (fp->f_ci->m_flags & (S_DEL_PENDING | S_DEL_ON_CLS)); } void ksmbd_set_inode_pending_delete(struct ksmbd_file *fp) diff --git a/fs/lockd/mon.c b/fs/lockd/mon.c index 1d9488cf05348..87a0f207df0b9 100644 --- a/fs/lockd/mon.c +++ b/fs/lockd/mon.c @@ -276,6 +276,9 @@ static struct nsm_handle *nsm_create_handle(const struct sockaddr *sap, { struct nsm_handle *new; + if (!hostname) + return NULL; + new = kzalloc(sizeof(*new) + hostname_len + 1, GFP_KERNEL); if (unlikely(new == NULL)) return NULL; diff --git a/fs/locks.c b/fs/locks.c index 881fd16905c61..4899a4666f24d 100644 --- a/fs/locks.c +++ b/fs/locks.c @@ -1339,6 +1339,7 @@ static int posix_lock_inode(struct inode *inode, struct file_lock *request, out: spin_unlock(&ctx->flc_lock); percpu_up_read(&file_rwsem); + trace_posix_lock_inode(inode, request, error); /* * Free any unused locks. */ @@ -1347,7 +1348,6 @@ static int posix_lock_inode(struct inode *inode, struct file_lock *request, if (new_fl2) locks_free_lock(new_fl2); locks_dispose_list(&dispose); - trace_posix_lock_inode(inode, request, error); return error; } diff --git a/fs/namei.c b/fs/namei.c index e30d736111d7e..8023e6fda4202 100644 --- a/fs/namei.c +++ b/fs/namei.c @@ -2836,7 +2836,7 @@ int path_pts(struct path *path) dput(path->dentry); path->dentry = parent; child = d_hash_and_lookup(parent, &this); - if (!child) + if (IS_ERR_OR_NULL(child)) return -ENOENT; path->dentry = child; diff --git a/fs/namespace.c b/fs/namespace.c index 80303001bcd9c..000a92c95ab09 100644 --- a/fs/namespace.c +++ b/fs/namespace.c @@ -163,7 +163,7 @@ void mnt_release_group_id(struct mount *mnt) /* * vfsmount lock must be held for read */ -static inline void mnt_add_count(struct mount *mnt, int n) +static noinline __noclone void mnt_add_count(struct mount *mnt, int n) { #ifdef CONFIG_SMP this_cpu_add(mnt->mnt_pcp->mnt_count, n); @@ -1590,7 +1590,8 @@ static int do_umount_root(struct super_block *sb) return ret; } -static int do_umount(struct mount *mnt, int flags) +/* force a bpftrace dynamic function probe here */ +static noinline __noclone int do_umount(struct mount *mnt, int flags) { struct super_block *sb = mnt->mnt.mnt_sb; int retval; diff --git a/fs/nfs/blocklayout/dev.c b/fs/nfs/blocklayout/dev.c index acb1d22907daf..16412d6636e86 100644 --- a/fs/nfs/blocklayout/dev.c +++ b/fs/nfs/blocklayout/dev.c @@ -422,7 +422,7 @@ bl_parse_concat(struct nfs_server *server, struct pnfs_block_dev *d, int ret, i; d->children = kcalloc(v->concat.volumes_count, - sizeof(struct pnfs_block_dev), GFP_KERNEL); + sizeof(struct pnfs_block_dev), gfp_mask); if (!d->children) return -ENOMEM; @@ -451,7 +451,7 @@ bl_parse_stripe(struct nfs_server *server, struct pnfs_block_dev *d, int ret, i; d->children = kcalloc(v->stripe.volumes_count, - sizeof(struct pnfs_block_dev), GFP_KERNEL); + sizeof(struct pnfs_block_dev), gfp_mask); if (!d->children) return -ENOMEM; diff --git a/fs/nfs/direct.c b/fs/nfs/direct.c index fbc7304bed56b..bbe2a5cc49f68 100644 --- a/fs/nfs/direct.c +++ b/fs/nfs/direct.c @@ -509,13 +509,33 @@ ssize_t nfs_file_direct_read(struct kiocb *iocb, struct iov_iter *iter, return result; } -static void nfs_direct_join_group(struct list_head *list, struct inode *inode) +static void nfs_direct_add_page_head(struct list_head *list, + struct nfs_page *req) +{ + struct nfs_page *head = req->wb_head; + + if (!list_empty(&head->wb_list) || !nfs_lock_request(head)) + return; + if (!list_empty(&head->wb_list)) { + nfs_unlock_request(head); + return; + } + list_add(&head->wb_list, list); + kref_get(&head->wb_kref); + kref_get(&head->wb_kref); +} + +static void nfs_direct_join_group(struct list_head *list, + struct nfs_commit_info *cinfo, + struct inode *inode) { struct nfs_page *req, *subreq; list_for_each_entry(req, list, wb_list) { - if (req->wb_head != req) + if (req->wb_head != req) { + nfs_direct_add_page_head(&req->wb_list, req); continue; + } subreq = req->wb_this_page; if (subreq == req) continue; @@ -529,7 +549,7 @@ static void nfs_direct_join_group(struct list_head *list, struct inode *inode) nfs_release_request(subreq); } } while ((subreq = subreq->wb_this_page) != req); - nfs_join_page_group(req, inode); + nfs_join_page_group(req, cinfo, inode); } } @@ -555,7 +575,7 @@ static void nfs_direct_write_reschedule(struct nfs_direct_req *dreq) nfs_init_cinfo_from_dreq(&cinfo, dreq); nfs_direct_write_scan_commit_list(dreq->inode, &reqs, &cinfo); - nfs_direct_join_group(&reqs, dreq->inode); + nfs_direct_join_group(&reqs, &cinfo, dreq->inode); dreq->count = 0; dreq->max_count = 0; @@ -766,16 +786,21 @@ static void nfs_write_sync_pgio_error(struct list_head *head, int error) static void nfs_direct_write_reschedule_io(struct nfs_pgio_header *hdr) { struct nfs_direct_req *dreq = hdr->dreq; + struct nfs_page *req; + struct nfs_commit_info cinfo; + nfs_init_cinfo_from_dreq(&cinfo, dreq); spin_lock(&dreq->lock); - if (dreq->error == 0) { + if (dreq->error == 0) dreq->flags = NFS_ODIRECT_RESCHED_WRITES; - /* fake unstable write to let common nfs resend pages */ - hdr->verf.committed = NFS_UNSTABLE; - hdr->good_bytes = hdr->args.offset + hdr->args.count - - hdr->io_start; - } + set_bit(NFS_IOHDR_REDO, &hdr->flags); spin_unlock(&dreq->lock); + while (!list_empty(&hdr->pages)) { + req = nfs_list_entry(hdr->pages.next); + nfs_list_remove_request(req); + nfs_unlock_request(req); + nfs_mark_request_commit(req, NULL, &cinfo, 0); + } } static const struct nfs_pgio_completion_ops nfs_direct_write_completion_ops = { diff --git a/fs/nfs/flexfilelayout/flexfilelayout.c b/fs/nfs/flexfilelayout/flexfilelayout.c index ceef75b4d2494..4269df0f0ffa5 100644 --- a/fs/nfs/flexfilelayout/flexfilelayout.c +++ b/fs/nfs/flexfilelayout/flexfilelayout.c @@ -1238,6 +1238,7 @@ static void ff_layout_io_track_ds_error(struct pnfs_layout_segment *lseg, case -EPFNOSUPPORT: case -EPROTONOSUPPORT: case -EOPNOTSUPP: + case -EINVAL: case -ECONNREFUSED: case -ECONNRESET: case -EHOSTDOWN: diff --git a/fs/nfs/nfs2xdr.c b/fs/nfs/nfs2xdr.c index 3d5ba43f44bb6..266a4badf1dfc 100644 --- a/fs/nfs/nfs2xdr.c +++ b/fs/nfs/nfs2xdr.c @@ -949,7 +949,7 @@ int nfs2_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry, error = decode_filename_inline(xdr, &entry->name, &entry->len); if (unlikely(error)) - return -EAGAIN; + return error == -ENAMETOOLONG ? -ENAMETOOLONG : -EAGAIN; /* * The type (size and byte order) of nfscookie isn't defined in diff --git a/fs/nfs/nfs3xdr.c b/fs/nfs/nfs3xdr.c index 7ab60ad98776f..d48db2f6f4f02 100644 --- a/fs/nfs/nfs3xdr.c +++ b/fs/nfs/nfs3xdr.c @@ -1990,7 +1990,7 @@ int nfs3_decode_dirent(struct xdr_stream *xdr, struct nfs_entry *entry, error = decode_inline_filename3(xdr, &entry->name, &entry->len); if (unlikely(error)) - return -EAGAIN; + return error == -ENAMETOOLONG ? -ENAMETOOLONG : -EAGAIN; error = decode_cookie3(xdr, &new_cookie); if (unlikely(error)) diff --git a/fs/nfs/nfs42proc.c b/fs/nfs/nfs42proc.c index bc07012741cb4..2975bbc33d280 100644 --- a/fs/nfs/nfs42proc.c +++ b/fs/nfs/nfs42proc.c @@ -462,8 +462,9 @@ ssize_t nfs42_proc_copy(struct file *src, loff_t pos_src, continue; } break; - } else if (err == -NFS4ERR_OFFLOAD_NO_REQS && !args.sync) { - args.sync = true; + } else if (err == -NFS4ERR_OFFLOAD_NO_REQS && + args.sync != res.synchronous) { + args.sync = res.synchronous; dst_exception.retry = 1; continue; } else if ((err == -ESTALE || diff --git a/fs/nfs/nfs4client.c b/fs/nfs/nfs4client.c index 1bf7a72ebda6e..cba8b4c1fb4a3 100644 --- a/fs/nfs/nfs4client.c +++ b/fs/nfs/nfs4client.c @@ -231,6 +231,8 @@ struct nfs_client *nfs4_alloc_client(const struct nfs_client_initdata *cl_init) __set_bit(NFS_CS_DISCRTRY, &clp->cl_flags); __set_bit(NFS_CS_NO_RETRANS_TIMEOUT, &clp->cl_flags); + if (test_bit(NFS_CS_DS, &cl_init->init_flags)) + __set_bit(NFS_CS_DS, &clp->cl_flags); /* * Set up the connection to the server before we add add to the * global list. @@ -414,6 +416,8 @@ static void nfs4_add_trunk(struct nfs_client *clp, struct nfs_client *old) .net = old->cl_net, .servername = old->cl_hostname, }; + int max_connect = test_bit(NFS_CS_PNFS, &clp->cl_flags) ? + clp->cl_max_connect : old->cl_max_connect; if (clp->cl_proto != old->cl_proto) return; @@ -427,7 +431,7 @@ static void nfs4_add_trunk(struct nfs_client *clp, struct nfs_client *old) xprt_args.addrlen = clp_salen; rpc_clnt_add_xprt(old->cl_rpcclient, &xprt_args, - rpc_clnt_test_and_add_xprt, NULL); + rpc_clnt_test_and_add_xprt, &max_connect); } /** @@ -993,6 +997,9 @@ struct nfs_client *nfs4_set_ds_client(struct nfs_server *mds_srv, if (mds_srv->flags & NFS_MOUNT_NORESVPORT) __set_bit(NFS_CS_NORESVPORT, &cl_init.init_flags); + __set_bit(NFS_CS_DS, &cl_init.init_flags); + __set_bit(NFS_CS_PNFS, &cl_init.init_flags); + cl_init.max_connect = NFS_MAX_TRANSPORTS; /* * Set an authflavor equual to the MDS value. Use the MDS nfs_client * cl_ipaddr so as to use the same EXCHANGE_ID co_ownerid as the MDS diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index 553dc0c217879..3f2acae421117 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c @@ -5612,7 +5612,7 @@ static void nfs4_proc_write_setup(struct nfs_pgio_header *hdr, msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE]; nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 0, 0); - nfs4_state_protect_write(server->nfs_client, clnt, msg, hdr); + nfs4_state_protect_write(hdr->ds_clp ? hdr->ds_clp : server->nfs_client, clnt, msg, hdr); } static void nfs4_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data) @@ -5653,7 +5653,8 @@ static void nfs4_proc_commit_setup(struct nfs_commit_data *data, struct rpc_mess data->res.server = server; msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT]; nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1, 0); - nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_COMMIT, clnt, msg); + nfs4_state_protect(data->ds_clp ? data->ds_clp : server->nfs_client, + NFS_SP4_MACH_CRED_COMMIT, clnt, msg); } static int _nfs4_proc_commit(struct file *dst, struct nfs_commitargs *args, @@ -8719,6 +8720,8 @@ nfs4_run_exchange_id(struct nfs_client *clp, const struct cred *cred, #ifdef CONFIG_NFS_V4_1_MIGRATION calldata->args.flags |= EXCHGID4_FLAG_SUPP_MOVED_MIGR; #endif + if (test_bit(NFS_CS_DS, &clp->cl_flags)) + calldata->args.flags |= EXCHGID4_FLAG_USE_PNFS_DS; msg.rpc_argp = &calldata->args; msg.rpc_resp = &calldata->res; task_setup_data.callback_data = calldata; @@ -10557,7 +10560,9 @@ static void nfs4_disable_swap(struct inode *inode) */ struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; - nfs4_schedule_state_manager(clp); + set_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state); + clear_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state); + wake_up_var(&clp->cl_state); } static const struct inode_operations nfs4_dir_inode_operations = { diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c index 15ba6ad1c571f..258e6b167285c 100644 --- a/fs/nfs/nfs4state.c +++ b/fs/nfs/nfs4state.c @@ -1213,17 +1213,23 @@ void nfs4_schedule_state_manager(struct nfs_client *clp) { struct task_struct *task; char buf[INET6_ADDRSTRLEN + sizeof("-manager") + 1]; - struct rpc_clnt *cl = clp->cl_rpcclient; - - while (cl != cl->cl_parent) - cl = cl->cl_parent; + struct rpc_clnt *clnt = clp->cl_rpcclient; + bool swapon = false; set_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state); - if (test_and_set_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state) != 0) { - wake_up_var(&clp->cl_state); - return; + + if (atomic_read(&clnt->cl_swapper)) { + swapon = !test_and_set_bit(NFS4CLNT_MANAGER_AVAILABLE, + &clp->cl_state); + if (!swapon) { + wake_up_var(&clp->cl_state); + return; + } } - set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state); + + if (test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) != 0) + return; + __module_get(THIS_MODULE); refcount_inc(&clp->cl_count); @@ -1240,8 +1246,9 @@ void nfs4_schedule_state_manager(struct nfs_client *clp) __func__, PTR_ERR(task)); if (!nfs_client_init_is_complete(clp)) nfs_mark_client_ready(clp, PTR_ERR(task)); + if (swapon) + clear_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state); nfs4_clear_state_manager_bit(clp); - clear_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state); nfs_put_client(clp); module_put(THIS_MODULE); } @@ -2692,6 +2699,13 @@ static void nfs4_state_manager(struct nfs_client *clp) nfs4_end_drain_session(clp); nfs4_clear_state_manager_bit(clp); + if (test_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state) && + !test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, + &clp->cl_state)) { + memflags = memalloc_nofs_save(); + continue; + } + if (!test_and_set_bit(NFS4CLNT_RECALL_RUNNING, &clp->cl_state)) { if (test_and_clear_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state)) { nfs_client_return_marked_delegations(clp); @@ -2730,22 +2744,25 @@ static int nfs4_run_state_manager(void *ptr) allow_signal(SIGKILL); again: - set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state); nfs4_state_manager(clp); - if (atomic_read(&cl->cl_swapper)) { + + if (test_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state) && + !test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state)) { wait_var_event_interruptible(&clp->cl_state, test_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state)); - if (atomic_read(&cl->cl_swapper) && - test_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state)) + if (!atomic_read(&cl->cl_swapper)) + clear_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state); + if (refcount_read(&clp->cl_count) > 1 && !signalled() && + !test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state)) goto again; /* Either no longer a swapper, or were signalled */ + clear_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state); } - clear_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state); if (refcount_read(&clp->cl_count) > 1 && !signalled() && test_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state) && - !test_and_set_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state)) + !test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state)) goto again; nfs_put_client(clp); diff --git a/fs/nfs/pnfs.c b/fs/nfs/pnfs.c index 7217f3eeb0692..9f6776c7062ec 100644 --- a/fs/nfs/pnfs.c +++ b/fs/nfs/pnfs.c @@ -2629,31 +2629,44 @@ pnfs_should_return_unused_layout(struct pnfs_layout_hdr *lo, return mode == 0; } -static int -pnfs_layout_return_unused_byserver(struct nfs_server *server, void *data) +static int pnfs_layout_return_unused_byserver(struct nfs_server *server, + void *data) { const struct pnfs_layout_range *range = data; + const struct cred *cred; struct pnfs_layout_hdr *lo; struct inode *inode; + nfs4_stateid stateid; + enum pnfs_iomode iomode; + restart: rcu_read_lock(); list_for_each_entry_rcu(lo, &server->layouts, plh_layouts) { - if (!pnfs_layout_can_be_returned(lo) || + inode = lo->plh_inode; + if (!inode || !pnfs_layout_can_be_returned(lo) || test_bit(NFS_LAYOUT_RETURN_REQUESTED, &lo->plh_flags)) continue; - inode = lo->plh_inode; spin_lock(&inode->i_lock); - if (!pnfs_should_return_unused_layout(lo, range)) { + if (!lo->plh_inode || + !pnfs_should_return_unused_layout(lo, range)) { spin_unlock(&inode->i_lock); continue; } + pnfs_get_layout_hdr(lo); + pnfs_set_plh_return_info(lo, range->iomode, 0); + if (pnfs_mark_matching_lsegs_return(lo, &lo->plh_return_segs, + range, 0) != 0 || + !pnfs_prepare_layoutreturn(lo, &stateid, &cred, &iomode)) { + spin_unlock(&inode->i_lock); + rcu_read_unlock(); + pnfs_put_layout_hdr(lo); + cond_resched(); + goto restart; + } spin_unlock(&inode->i_lock); - inode = pnfs_grab_inode_layout_hdr(lo); - if (!inode) - continue; rcu_read_unlock(); - pnfs_mark_layout_for_return(inode, range); - iput(inode); + pnfs_send_layoutreturn(lo, &stateid, &cred, iomode, false); + pnfs_put_layout_hdr(lo); cond_resched(); goto restart; } diff --git a/fs/nfs/pnfs_dev.c b/fs/nfs/pnfs_dev.c index ddbbf4fcda867..178001c90156f 100644 --- a/fs/nfs/pnfs_dev.c +++ b/fs/nfs/pnfs_dev.c @@ -154,7 +154,7 @@ nfs4_get_device_info(struct nfs_server *server, set_bit(NFS_DEVICEID_NOCACHE, &d->flags); out_free_pages: - for (i = 0; i < max_pages; i++) + while (--i >= 0) __free_page(pages[i]); kfree(pages); out_free_pdev: diff --git a/fs/nfs/pnfs_nfs.c b/fs/nfs/pnfs_nfs.c index 657c242a18ff1..6b681f0c5df0d 100644 --- a/fs/nfs/pnfs_nfs.c +++ b/fs/nfs/pnfs_nfs.c @@ -943,7 +943,7 @@ static int _nfs4_pnfs_v4_ds_connect(struct nfs_server *mds_srv, * Test this address for session trunking and * add as an alias */ - xprtdata.cred = nfs4_get_clid_cred(clp), + xprtdata.cred = nfs4_get_clid_cred(clp); rpc_clnt_add_xprt(clp->cl_rpcclient, &xprt_args, rpc_clnt_setup_test_and_add_xprt, &rpcdata); diff --git a/fs/nfs/sysfs.c b/fs/nfs/sysfs.c index 8cb70755e3c9e..f7f778e3e5ca7 100644 --- a/fs/nfs/sysfs.c +++ b/fs/nfs/sysfs.c @@ -18,7 +18,7 @@ #include "sysfs.h" struct kobject *nfs_client_kobj; -static struct kset *nfs_client_kset; +static struct kset *nfs_kset; static void nfs_netns_object_release(struct kobject *kobj) { @@ -55,13 +55,13 @@ static struct kobject *nfs_netns_object_alloc(const char *name, int nfs_sysfs_init(void) { - nfs_client_kset = kset_create_and_add("nfs", NULL, fs_kobj); - if (!nfs_client_kset) + nfs_kset = kset_create_and_add("nfs", NULL, fs_kobj); + if (!nfs_kset) return -ENOMEM; - nfs_client_kobj = nfs_netns_object_alloc("net", nfs_client_kset, NULL); + nfs_client_kobj = nfs_netns_object_alloc("net", nfs_kset, NULL); if (!nfs_client_kobj) { - kset_unregister(nfs_client_kset); - nfs_client_kset = NULL; + kset_unregister(nfs_kset); + nfs_kset = NULL; return -ENOMEM; } return 0; @@ -70,7 +70,7 @@ int nfs_sysfs_init(void) void nfs_sysfs_exit(void) { kobject_put(nfs_client_kobj); - kset_unregister(nfs_client_kset); + kset_unregister(nfs_kset); } static ssize_t nfs_netns_identifier_show(struct kobject *kobj, @@ -158,7 +158,7 @@ static struct nfs_netns_client *nfs_netns_client_alloc(struct kobject *parent, p = kzalloc(sizeof(*p), GFP_KERNEL); if (p) { p->net = net; - p->kobject.kset = nfs_client_kset; + p->kobject.kset = nfs_kset; if (kobject_init_and_add(&p->kobject, &nfs_netns_client_type, parent, "nfs_client") == 0) return p; diff --git a/fs/nfs/write.c b/fs/nfs/write.c index 8dcfaebcf4d4a..602dcf2c6bc3d 100644 --- a/fs/nfs/write.c +++ b/fs/nfs/write.c @@ -58,7 +58,8 @@ static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops; static const struct nfs_commit_completion_ops nfs_commit_completion_ops; static const struct nfs_rw_ops nfs_rw_write_ops; static void nfs_inode_remove_request(struct nfs_page *req); -static void nfs_clear_request_commit(struct nfs_page *req); +static void nfs_clear_request_commit(struct nfs_commit_info *cinfo, + struct nfs_page *req); static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo, struct inode *inode); static struct nfs_page * @@ -500,8 +501,8 @@ nfs_destroy_unlinked_subrequests(struct nfs_page *destroy_list, * the (former) group. All subrequests are removed from any write or commit * lists, unlinked from the group and destroyed. */ -void -nfs_join_page_group(struct nfs_page *head, struct inode *inode) +void nfs_join_page_group(struct nfs_page *head, struct nfs_commit_info *cinfo, + struct inode *inode) { struct nfs_page *subreq; struct nfs_page *destroy_list = NULL; @@ -531,7 +532,7 @@ nfs_join_page_group(struct nfs_page *head, struct inode *inode) * Commit list removal accounting is done after locks are dropped */ subreq = head; do { - nfs_clear_request_commit(subreq); + nfs_clear_request_commit(cinfo, subreq); subreq = subreq->wb_this_page; } while (subreq != head); @@ -565,8 +566,10 @@ nfs_lock_and_join_requests(struct page *page) { struct inode *inode = page_file_mapping(page)->host; struct nfs_page *head; + struct nfs_commit_info cinfo; int ret; + nfs_init_cinfo_from_inode(&cinfo, inode); /* * A reference is taken only on the head request which acts as a * reference to the whole page group - the group will not be destroyed @@ -583,7 +586,7 @@ nfs_lock_and_join_requests(struct page *page) return ERR_PTR(ret); } - nfs_join_page_group(head, inode); + nfs_join_page_group(head, &cinfo, inode); return head; } @@ -945,18 +948,16 @@ nfs_clear_page_commit(struct page *page) } /* Called holding the request lock on @req */ -static void -nfs_clear_request_commit(struct nfs_page *req) +static void nfs_clear_request_commit(struct nfs_commit_info *cinfo, + struct nfs_page *req) { if (test_bit(PG_CLEAN, &req->wb_flags)) { struct nfs_open_context *ctx = nfs_req_openctx(req); struct inode *inode = d_inode(ctx->dentry); - struct nfs_commit_info cinfo; - nfs_init_cinfo_from_inode(&cinfo, inode); mutex_lock(&NFS_I(inode)->commit_mutex); - if (!pnfs_clear_request_commit(req, &cinfo)) { - nfs_request_remove_commit_list(req, &cinfo); + if (!pnfs_clear_request_commit(req, cinfo)) { + nfs_request_remove_commit_list(req, cinfo); } mutex_unlock(&NFS_I(inode)->commit_mutex); nfs_clear_page_commit(req->wb_page); diff --git a/fs/nfsd/blocklayoutxdr.c b/fs/nfsd/blocklayoutxdr.c index 442543304930b..2455dc8be18a8 100644 --- a/fs/nfsd/blocklayoutxdr.c +++ b/fs/nfsd/blocklayoutxdr.c @@ -82,6 +82,15 @@ nfsd4_block_encode_getdeviceinfo(struct xdr_stream *xdr, int len = sizeof(__be32), ret, i; __be32 *p; + /* + * See paragraph 5 of RFC 8881 S18.40.3. + */ + if (!gdp->gd_maxcount) { + if (xdr_stream_encode_u32(xdr, 0) != XDR_UNIT) + return nfserr_resource; + return nfs_ok; + } + p = xdr_reserve_space(xdr, len + sizeof(__be32)); if (!p) return nfserr_resource; diff --git a/fs/nfsd/filecache.c b/fs/nfsd/filecache.c index 1e8c31ed6c7c4..77ab99b2f7581 100644 --- a/fs/nfsd/filecache.c +++ b/fs/nfsd/filecache.c @@ -28,8 +28,6 @@ #define NFSD_LAUNDRETTE_DELAY (2 * HZ) #define NFSD_FILE_SHUTDOWN (1) -#define NFSD_FILE_LRU_THRESHOLD (4096UL) -#define NFSD_FILE_LRU_LIMIT (NFSD_FILE_LRU_THRESHOLD << 2) /* We only care about NFSD_MAY_READ/WRITE for this cache */ #define NFSD_FILE_MAY_MASK (NFSD_MAY_READ|NFSD_MAY_WRITE) @@ -65,8 +63,6 @@ static struct delayed_work nfsd_filecache_laundrette; static DEFINE_SPINLOCK(laundrette_lock); static LIST_HEAD(laundrettes); -static void nfsd_file_gc(void); - static void nfsd_file_schedule_laundrette(void) { @@ -306,8 +302,6 @@ nfsd_file_put(struct nfsd_file *nf) nfsd_file_put_noref(nf); if (is_hashed) nfsd_file_schedule_laundrette(); - if (atomic_long_read(&nfsd_filecache_count) >= NFSD_FILE_LRU_LIMIT) - nfsd_file_gc(); } struct nfsd_file * @@ -634,8 +628,8 @@ nfsd_file_cache_init(void) if (!nfsd_filecache_wq) goto out; - nfsd_file_hashtbl = kvcalloc(NFSD_FILE_HASH_SIZE, - sizeof(*nfsd_file_hashtbl), GFP_KERNEL); + nfsd_file_hashtbl = kvzalloc(array_size(NFSD_FILE_HASH_SIZE, + sizeof(*nfsd_file_hashtbl)), GFP_KERNEL); if (!nfsd_file_hashtbl) { pr_err("nfsd: unable to allocate nfsd_file_hashtbl\n"); goto out_err; @@ -1007,8 +1001,7 @@ nfsd_file_acquire(struct svc_rqst *rqstp, struct svc_fh *fhp, nfsd_file_hashtbl[hashval].nfb_maxcount = max(nfsd_file_hashtbl[hashval].nfb_maxcount, nfsd_file_hashtbl[hashval].nfb_count); spin_unlock(&nfsd_file_hashtbl[hashval].nfb_lock); - if (atomic_long_inc_return(&nfsd_filecache_count) >= NFSD_FILE_LRU_THRESHOLD) - nfsd_file_gc(); + atomic_long_inc(&nfsd_filecache_count); nf->nf_mark = nfsd_file_mark_find_or_create(nf); if (nf->nf_mark) diff --git a/fs/nfsd/flexfilelayoutxdr.c b/fs/nfsd/flexfilelayoutxdr.c index e81d2a5cf381e..bb205328e043d 100644 --- a/fs/nfsd/flexfilelayoutxdr.c +++ b/fs/nfsd/flexfilelayoutxdr.c @@ -85,6 +85,15 @@ nfsd4_ff_encode_getdeviceinfo(struct xdr_stream *xdr, int addr_len; __be32 *p; + /* + * See paragraph 5 of RFC 8881 S18.40.3. + */ + if (!gdp->gd_maxcount) { + if (xdr_stream_encode_u32(xdr, 0) != XDR_UNIT) + return nfserr_resource; + return nfs_ok; + } + /* len + padding for two strings */ addr_len = 16 + da->netaddr.netid_len + da->netaddr.addr_len; ver_len = 20; diff --git a/fs/nfsd/nfs4proc.c b/fs/nfsd/nfs4proc.c index ec618ae984aa6..a634235ccc37f 100644 --- a/fs/nfsd/nfs4proc.c +++ b/fs/nfsd/nfs4proc.c @@ -895,8 +895,8 @@ nfsd4_rename(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, rename->rn_tname, rename->rn_tnamelen); if (status) return status; - set_change_info(&rename->rn_sinfo, &cstate->current_fh); - set_change_info(&rename->rn_tinfo, &cstate->save_fh); + set_change_info(&rename->rn_sinfo, &cstate->save_fh); + set_change_info(&rename->rn_tinfo, &cstate->current_fh); return nfs_ok; } diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index f54ef526f25d0..9b660491f3931 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c @@ -2686,7 +2686,7 @@ static int client_opens_release(struct inode *inode, struct file *file) /* XXX: alternatively, we could get/drop in seq start/stop */ drop_client(clp); - return 0; + return seq_release(inode, file); } static const struct file_operations client_states_fops = { diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c index 223b4319e254b..bf58baad8ce1f 100644 --- a/fs/nfsd/nfs4xdr.c +++ b/fs/nfsd/nfs4xdr.c @@ -4531,20 +4531,17 @@ nfsd4_encode_getdeviceinfo(struct nfsd4_compoundres *resp, __be32 nfserr, *p++ = cpu_to_be32(gdev->gd_layout_type); - /* If maxcount is 0 then just update notifications */ - if (gdev->gd_maxcount != 0) { - ops = nfsd4_layout_ops[gdev->gd_layout_type]; - nfserr = ops->encode_getdeviceinfo(xdr, gdev); - if (nfserr) { - /* - * We don't bother to burden the layout drivers with - * enforcing gd_maxcount, just tell the client to - * come back with a bigger buffer if it's not enough. - */ - if (xdr->buf->len + 4 > gdev->gd_maxcount) - goto toosmall; - return nfserr; - } + ops = nfsd4_layout_ops[gdev->gd_layout_type]; + nfserr = ops->encode_getdeviceinfo(xdr, gdev); + if (nfserr) { + /* + * We don't bother to burden the layout drivers with + * enforcing gd_maxcount, just tell the client to + * come back with a bigger buffer if it's not enough. + */ + if (xdr->buf->len + 4 > gdev->gd_maxcount) + goto toosmall; + return nfserr; } if (gdev->gd_notify_types) { diff --git a/fs/nfsd/state.h b/fs/nfsd/state.h index e73bdbb1634ab..a960e84f4adc3 100644 --- a/fs/nfsd/state.h +++ b/fs/nfsd/state.h @@ -174,7 +174,8 @@ static inline struct nfs4_delegation *delegstateid(struct nfs4_stid *s) /* Maximum number of slots per session. 160 is useful for long haul TCP */ #define NFSD_MAX_SLOTS_PER_SESSION 160 /* Maximum number of operations per session compound */ -#define NFSD_MAX_OPS_PER_COMPOUND 16 +/* Delphix: increase operations to accomodate Solaris client NFSv4 mounts */ +#define NFSD_MAX_OPS_PER_COMPOUND 40 /* Maximum session per slot cache size */ #define NFSD_SLOT_CACHE_SIZE 2048 /* Maximum number of NFSD_SLOT_CACHE_SIZE slots per session */ diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c index 15a86876e3d90..c39b8a6538042 100644 --- a/fs/nfsd/vfs.c +++ b/fs/nfsd/vfs.c @@ -1762,6 +1762,12 @@ nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen, if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen)) goto out; + err = (rqstp->rq_vers == 2) ? nfserr_acces : nfserr_xdev; + if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt) + goto out; + if (ffhp->fh_export->ex_path.dentry != tfhp->fh_export->ex_path.dentry) + goto out; + retry: host_err = fh_want_write(ffhp); if (host_err) { @@ -1796,12 +1802,6 @@ nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen, if (ndentry == trap) goto out_dput_new; - host_err = -EXDEV; - if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt) - goto out_dput_new; - if (ffhp->fh_export->ex_path.dentry != tfhp->fh_export->ex_path.dentry) - goto out_dput_new; - if ((ndentry->d_sb->s_export_op->flags & EXPORT_OP_CLOSE_BEFORE_UNLINK) && nfsd_has_cached_files(ndentry)) { close_cached = true; diff --git a/fs/nilfs2/gcinode.c b/fs/nilfs2/gcinode.c index aadea660c66c9..b0077f5f71124 100644 --- a/fs/nilfs2/gcinode.c +++ b/fs/nilfs2/gcinode.c @@ -73,10 +73,8 @@ int nilfs_gccache_submit_read_data(struct inode *inode, sector_t blkoff, struct the_nilfs *nilfs = inode->i_sb->s_fs_info; err = nilfs_dat_translate(nilfs->ns_dat, vbn, &pbn); - if (unlikely(err)) { /* -EIO, -ENOMEM, -ENOENT */ - brelse(bh); + if (unlikely(err)) /* -EIO, -ENOMEM, -ENOENT */ goto failed; - } } lock_buffer(bh); @@ -102,6 +100,8 @@ int nilfs_gccache_submit_read_data(struct inode *inode, sector_t blkoff, failed: unlock_page(bh->b_page); put_page(bh->b_page); + if (unlikely(err)) + brelse(bh); return err; } diff --git a/fs/nilfs2/sufile.c b/fs/nilfs2/sufile.c index b3abe69382fd0..23b4b8863e7f9 100644 --- a/fs/nilfs2/sufile.c +++ b/fs/nilfs2/sufile.c @@ -501,15 +501,38 @@ int nilfs_sufile_mark_dirty(struct inode *sufile, __u64 segnum) down_write(&NILFS_MDT(sufile)->mi_sem); ret = nilfs_sufile_get_segment_usage_block(sufile, segnum, 0, &bh); - if (!ret) { - mark_buffer_dirty(bh); - nilfs_mdt_mark_dirty(sufile); - kaddr = kmap_atomic(bh->b_page); - su = nilfs_sufile_block_get_segment_usage(sufile, segnum, bh, kaddr); + if (ret) + goto out_sem; + + kaddr = kmap_atomic(bh->b_page); + su = nilfs_sufile_block_get_segment_usage(sufile, segnum, bh, kaddr); + if (unlikely(nilfs_segment_usage_error(su))) { + struct the_nilfs *nilfs = sufile->i_sb->s_fs_info; + + kunmap_atomic(kaddr); + brelse(bh); + if (nilfs_segment_is_active(nilfs, segnum)) { + nilfs_error(sufile->i_sb, + "active segment %llu is erroneous", + (unsigned long long)segnum); + } else { + /* + * Segments marked erroneous are never allocated by + * nilfs_sufile_alloc(); only active segments, ie, + * the segments indexed by ns_segnum or ns_nextnum, + * can be erroneous here. + */ + WARN_ON_ONCE(1); + } + ret = -EIO; + } else { nilfs_segment_usage_set_dirty(su); kunmap_atomic(kaddr); + mark_buffer_dirty(bh); + nilfs_mdt_mark_dirty(sufile); brelse(bh); } +out_sem: up_write(&NILFS_MDT(sufile)->mi_sem); return ret; } @@ -536,9 +559,14 @@ int nilfs_sufile_set_segment_usage(struct inode *sufile, __u64 segnum, kaddr = kmap_atomic(bh->b_page); su = nilfs_sufile_block_get_segment_usage(sufile, segnum, bh, kaddr); - WARN_ON(nilfs_segment_usage_error(su)); - if (modtime) + if (modtime) { + /* + * Check segusage error and set su_lastmod only when updating + * this entry with a valid timestamp, not for cancellation. + */ + WARN_ON_ONCE(nilfs_segment_usage_error(su)); su->su_lastmod = cpu_to_le64(modtime); + } su->su_nblocks = cpu_to_le32(nblocks); kunmap_atomic(kaddr); diff --git a/fs/nilfs2/the_nilfs.c b/fs/nilfs2/the_nilfs.c index fe2e7197268b7..a07e20147abc0 100644 --- a/fs/nilfs2/the_nilfs.c +++ b/fs/nilfs2/the_nilfs.c @@ -717,7 +717,11 @@ int init_nilfs(struct the_nilfs *nilfs, struct super_block *sb, char *data) goto failed_sbh; } nilfs_release_super_block(nilfs); - sb_set_blocksize(sb, blocksize); + if (!sb_set_blocksize(sb, blocksize)) { + nilfs_err(sb, "bad blocksize %d", blocksize); + err = -EINVAL; + goto out; + } err = nilfs_load_super_block(nilfs, sb, blocksize, &sbp); if (err) diff --git a/fs/nls/nls_base.c b/fs/nls/nls_base.c index 52ccd34b1e792..a026dbd3593f6 100644 --- a/fs/nls/nls_base.c +++ b/fs/nls/nls_base.c @@ -272,7 +272,7 @@ int unregister_nls(struct nls_table * nls) return -EINVAL; } -static struct nls_table *find_nls(char *charset) +static struct nls_table *find_nls(const char *charset) { struct nls_table *nls; spin_lock(&nls_lock); @@ -288,7 +288,7 @@ static struct nls_table *find_nls(char *charset) return nls; } -struct nls_table *load_nls(char *charset) +struct nls_table *load_nls(const char *charset) { return try_then_request_module(find_nls(charset), "nls_%s", charset); } diff --git a/fs/ntfs3/attrib.c b/fs/ntfs3/attrib.c index 321d55b3ca17d..1d5ac2164d94f 100644 --- a/fs/ntfs3/attrib.c +++ b/fs/ntfs3/attrib.c @@ -1583,10 +1583,8 @@ int attr_allocate_frame(struct ntfs_inode *ni, CLST frame, size_t compr_size, le_b = NULL; attr_b = ni_find_attr(ni, NULL, &le_b, ATTR_DATA, NULL, 0, NULL, &mi_b); - if (!attr_b) { - err = -ENOENT; - goto out; - } + if (!attr_b) + return -ENOENT; attr = attr_b; le = le_b; diff --git a/fs/ntfs3/attrlist.c b/fs/ntfs3/attrlist.c index 81c22df27c725..0c6a68e71e7d4 100644 --- a/fs/ntfs3/attrlist.c +++ b/fs/ntfs3/attrlist.c @@ -52,7 +52,8 @@ int ntfs_load_attr_list(struct ntfs_inode *ni, struct ATTRIB *attr) if (!attr->non_res) { lsize = le32_to_cpu(attr->res.data_size); - le = kmalloc(al_aligned(lsize), GFP_NOFS | __GFP_NOWARN); + /* attr is resident: lsize < record_size (1K or 4K) */ + le = kvmalloc(al_aligned(lsize), GFP_KERNEL); if (!le) { err = -ENOMEM; goto out; @@ -80,7 +81,17 @@ int ntfs_load_attr_list(struct ntfs_inode *ni, struct ATTRIB *attr) if (err < 0) goto out; - le = kmalloc(al_aligned(lsize), GFP_NOFS | __GFP_NOWARN); + /* attr is nonresident. + * The worst case: + * 1T (2^40) extremely fragmented file. + * cluster = 4K (2^12) => 2^28 fragments + * 2^9 fragments per one record => 2^19 records + * 2^5 bytes of ATTR_LIST_ENTRY per one record => 2^24 bytes. + * + * the result is 16M bytes per attribute list. + * Use kvmalloc to allocate in range [several Kbytes - dozen Mbytes] + */ + le = kvmalloc(al_aligned(lsize), GFP_KERNEL); if (!le) { err = -ENOMEM; goto out; diff --git a/fs/ntfs3/bitmap.c b/fs/ntfs3/bitmap.c index 3261b69cdac33..21536b72aa5e5 100644 --- a/fs/ntfs3/bitmap.c +++ b/fs/ntfs3/bitmap.c @@ -667,7 +667,8 @@ int wnd_init(struct wnd_bitmap *wnd, struct super_block *sb, size_t nbits) wnd->bits_last = wbits; wnd->free_bits = - kcalloc(wnd->nwnd, sizeof(u16), GFP_NOFS | __GFP_NOWARN); + kvmalloc_array(wnd->nwnd, sizeof(u16), GFP_KERNEL | __GFP_ZERO); + if (!wnd->free_bits) return -ENOMEM; diff --git a/fs/ntfs3/dir.c b/fs/ntfs3/dir.c index fb438d6040409..d4d9f4ffb6d9a 100644 --- a/fs/ntfs3/dir.c +++ b/fs/ntfs3/dir.c @@ -309,7 +309,11 @@ static inline int ntfs_filldir(struct ntfs_sb_info *sbi, struct ntfs_inode *ni, return 0; } - dt_type = (fname->dup.fa & FILE_ATTRIBUTE_DIRECTORY) ? DT_DIR : DT_REG; + /* NTFS: symlinks are "dir + reparse" or "file + reparse" */ + if (fname->dup.fa & FILE_ATTRIBUTE_REPARSE_POINT) + dt_type = DT_LNK; + else + dt_type = (fname->dup.fa & FILE_ATTRIBUTE_DIRECTORY) ? DT_DIR : DT_REG; return !dir_emit(ctx, (s8 *)name, name_len, ino, dt_type); } diff --git a/fs/ntfs3/frecord.c b/fs/ntfs3/frecord.c index 9a1744955d1cf..b02778cbb1d34 100644 --- a/fs/ntfs3/frecord.c +++ b/fs/ntfs3/frecord.c @@ -2100,7 +2100,7 @@ int ni_readpage_cmpr(struct ntfs_inode *ni, struct page *page) for (i = 0; i < pages_per_frame; i++) { pg = pages[i]; - if (i == idx) + if (i == idx || !pg) continue; unlock_page(pg); put_page(pg); @@ -3144,6 +3144,12 @@ static bool ni_update_parent(struct ntfs_inode *ni, struct NTFS_DUP_INFO *dup, if (!fname || !memcmp(&fname->dup, dup, sizeof(fname->dup))) continue; + /* Check simple case when parent inode equals current inode. */ + if (ino_get(&fname->home) == ni->vfs_inode.i_ino) { + ntfs_set_state(sbi, NTFS_DIRTY_ERROR); + continue; + } + /* ntfs_iget5 may sleep. */ dir = ntfs_iget5(sb, &fname->home, NULL); if (IS_ERR(dir)) { diff --git a/fs/ntfs3/fslog.c b/fs/ntfs3/fslog.c index 59f813cbdaa8e..8b95c06e5a4c5 100644 --- a/fs/ntfs3/fslog.c +++ b/fs/ntfs3/fslog.c @@ -2169,8 +2169,10 @@ static int last_log_lsn(struct ntfs_log *log) if (!page) { page = kmalloc(log->page_size, GFP_NOFS); - if (!page) - return -ENOMEM; + if (!page) { + err = -ENOMEM; + goto out; + } } /* diff --git a/fs/ntfs3/fsntfs.c b/fs/ntfs3/fsntfs.c index 0ae70010b01d3..4413f6da68e60 100644 --- a/fs/ntfs3/fsntfs.c +++ b/fs/ntfs3/fsntfs.c @@ -958,18 +958,11 @@ int ntfs_set_state(struct ntfs_sb_info *sbi, enum NTFS_DIRTY_FLAGS dirty) if (err) return err; - mark_inode_dirty(&ni->vfs_inode); + mark_inode_dirty_sync(&ni->vfs_inode); /* verify(!ntfs_update_mftmirr()); */ - /* - * If we used wait=1, sync_inode_metadata waits for the io for the - * inode to finish. It hangs when media is removed. - * So wait=0 is sent down to sync_inode_metadata - * and filemap_fdatawrite is used for the data blocks. - */ - err = sync_inode_metadata(&ni->vfs_inode, 0); - if (!err) - err = filemap_fdatawrite(ni->vfs_inode.i_mapping); + /* write mft record on disk. */ + err = _ni_write_inode(&ni->vfs_inode, 1); return err; } @@ -2458,10 +2451,12 @@ void mark_as_free_ex(struct ntfs_sb_info *sbi, CLST lcn, CLST len, bool trim) { CLST end, i; struct wnd_bitmap *wnd = &sbi->used.bitmap; + bool dirty = false; down_write_nested(&wnd->rw_lock, BITMAP_MUTEX_CLUSTERS); if (!wnd_is_used(wnd, lcn, len)) { - ntfs_set_state(sbi, NTFS_DIRTY_ERROR); + /* mark volume as dirty out of wnd->rw_lock */ + dirty = true; end = lcn + len; len = 0; @@ -2493,6 +2488,8 @@ void mark_as_free_ex(struct ntfs_sb_info *sbi, CLST lcn, CLST len, bool trim) out: up_write(&wnd->rw_lock); + if (dirty) + ntfs_set_state(sbi, NTFS_DIRTY_ERROR); } /* diff --git a/fs/ntfs3/index.c b/fs/ntfs3/index.c index 7705adc926b86..b49e62e2080b0 100644 --- a/fs/ntfs3/index.c +++ b/fs/ntfs3/index.c @@ -729,6 +729,9 @@ static struct NTFS_DE *hdr_find_e(const struct ntfs_index *indx, u32 total = le32_to_cpu(hdr->total); u16 offs[128]; + if (unlikely(!cmp)) + return NULL; + fill_table: if (end > total) return NULL; diff --git a/fs/ntfs3/super.c b/fs/ntfs3/super.c index 33b1833ad525c..fbaf1c84311be 100644 --- a/fs/ntfs3/super.c +++ b/fs/ntfs3/super.c @@ -1136,7 +1136,7 @@ static int ntfs_fill_super(struct super_block *sb, struct fs_context *fc) goto put_inode_out; } bytes = inode->i_size; - sbi->def_table = t = kmalloc(bytes, GFP_NOFS | __GFP_NOWARN); + sbi->def_table = t = kvmalloc(bytes, GFP_KERNEL); if (!t) { err = -ENOMEM; goto put_inode_out; diff --git a/fs/ntfs3/xattr.c b/fs/ntfs3/xattr.c index aaf4bafa2c702..8e739023e3057 100644 --- a/fs/ntfs3/xattr.c +++ b/fs/ntfs3/xattr.c @@ -209,7 +209,8 @@ static ssize_t ntfs_list_ea(struct ntfs_inode *ni, char *buffer, size = le32_to_cpu(info->size); /* Enumerate all xattrs. */ - for (ret = 0, off = 0; off < size; off += ea_size) { + ret = 0; + for (off = 0; off + sizeof(struct EA_FULL) < size; off += ea_size) { ea = Add2Ptr(ea_all, off); ea_size = unpacked_ea_size(ea); @@ -217,6 +218,10 @@ static ssize_t ntfs_list_ea(struct ntfs_inode *ni, char *buffer, break; if (buffer) { + /* Check if we can use field ea->name */ + if (off + ea_size > size) + break; + if (ret + ea->name_len + 1 > bytes_per_buffer) { err = -ERANGE; goto out; diff --git a/fs/ocfs2/namei.c b/fs/ocfs2/namei.c index 3c24eceeb4ffc..0b4f3d287cbc0 100644 --- a/fs/ocfs2/namei.c +++ b/fs/ocfs2/namei.c @@ -1535,6 +1535,10 @@ static int ocfs2_rename(struct user_namespace *mnt_userns, status = ocfs2_add_entry(handle, new_dentry, old_inode, OCFS2_I(old_inode)->ip_blkno, new_dir_bh, &target_insert); + if (status < 0) { + mlog_errno(status); + goto bail; + } } old_inode->i_ctime = current_time(old_inode); diff --git a/fs/overlayfs/copy_up.c b/fs/overlayfs/copy_up.c index 46cc429c44f7e..0ed70eff9cb9e 100644 --- a/fs/overlayfs/copy_up.c +++ b/fs/overlayfs/copy_up.c @@ -306,7 +306,7 @@ static int ovl_set_timestamps(struct dentry *upperdentry, struct kstat *stat) { struct iattr attr = { .ia_valid = - ATTR_ATIME | ATTR_MTIME | ATTR_ATIME_SET | ATTR_MTIME_SET, + ATTR_ATIME | ATTR_MTIME | ATTR_ATIME_SET | ATTR_MTIME_SET | ATTR_CTIME, .ia_atime = stat->atime, .ia_mtime = stat->mtime, }; @@ -583,7 +583,8 @@ static int ovl_copy_up_inode(struct ovl_copy_up_ctx *c, struct dentry *temp) if (err) return err; - if (inode->i_flags & OVL_COPY_I_FLAGS_MASK) { + if (inode->i_flags & OVL_COPY_I_FLAGS_MASK && + (S_ISREG(c->stat.mode) || S_ISDIR(c->stat.mode))) { /* * Copy the fileattr inode flags that are the source of already * copied i_flags diff --git a/fs/overlayfs/file.c b/fs/overlayfs/file.c index 1167c153013dd..e3ac9752e8c5c 100644 --- a/fs/overlayfs/file.c +++ b/fs/overlayfs/file.c @@ -19,7 +19,6 @@ struct ovl_aio_req { struct kiocb iocb; refcount_t ref; struct kiocb *orig_iocb; - struct fd fd; }; static struct kmem_cache *ovl_aio_request_cachep; @@ -258,7 +257,7 @@ static rwf_t ovl_iocb_to_rwf(int ifl) static inline void ovl_aio_put(struct ovl_aio_req *aio_req) { if (refcount_dec_and_test(&aio_req->ref)) { - fdput(aio_req->fd); + fput(aio_req->iocb.ki_filp); kmem_cache_free(ovl_aio_request_cachep, aio_req); } } @@ -324,10 +323,9 @@ static ssize_t ovl_read_iter(struct kiocb *iocb, struct iov_iter *iter) if (!aio_req) goto out; - aio_req->fd = real; real.flags = 0; aio_req->orig_iocb = iocb; - kiocb_clone(&aio_req->iocb, iocb, real.file); + kiocb_clone(&aio_req->iocb, iocb, get_file(real.file)); aio_req->iocb.ki_complete = ovl_aio_rw_complete; refcount_set(&aio_req->ref, 2); ret = vfs_iocb_iter_read(real.file, &aio_req->iocb, iter); @@ -396,10 +394,9 @@ static ssize_t ovl_write_iter(struct kiocb *iocb, struct iov_iter *iter) /* Pacify lockdep, same trick as done in aio_write() */ __sb_writers_release(file_inode(real.file)->i_sb, SB_FREEZE_WRITE); - aio_req->fd = real; real.flags = 0; aio_req->orig_iocb = iocb; - kiocb_clone(&aio_req->iocb, iocb, real.file); + kiocb_clone(&aio_req->iocb, iocb, get_file(real.file)); aio_req->iocb.ki_flags = ifl; aio_req->iocb.ki_complete = ovl_aio_rw_complete; refcount_set(&aio_req->ref, 2); diff --git a/fs/proc/base.c b/fs/proc/base.c index 19cc2942dce67..4e2783e169c7c 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c @@ -3546,7 +3546,8 @@ static int proc_tid_comm_permission(struct user_namespace *mnt_userns, } static const struct inode_operations proc_tid_comm_inode_operations = { - .permission = proc_tid_comm_permission, + .setattr = proc_setattr, + .permission = proc_tid_comm_permission, }; /* diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c index 0b7a00ed6c49b..4192fe6ec3da2 100644 --- a/fs/proc/proc_sysctl.c +++ b/fs/proc/proc_sysctl.c @@ -1765,7 +1765,6 @@ static const struct sysctl_alias sysctl_aliases[] = { {"hung_task_panic", "kernel.hung_task_panic" }, {"numa_zonelist_order", "vm.numa_zonelist_order" }, {"softlockup_all_cpu_backtrace", "kernel.softlockup_all_cpu_backtrace" }, - {"softlockup_panic", "kernel.softlockup_panic" }, { } }; @@ -1781,6 +1780,13 @@ static const char *sysctl_find_alias(char *param) return NULL; } +bool sysctl_is_alias(char *param) +{ + const char *alias = sysctl_find_alias(param); + + return alias != NULL; +} + /* Set sysctl value passed on kernel command line. */ static int process_sysctl_arg(char *param, char *val, const char *unused, void *arg) diff --git a/fs/proc/task_nommu.c b/fs/proc/task_nommu.c index 02c2de31196e0..e48765309fb2f 100644 --- a/fs/proc/task_nommu.c +++ b/fs/proc/task_nommu.c @@ -211,11 +211,16 @@ static void *m_start(struct seq_file *m, loff_t *pos) return ERR_PTR(-ESRCH); mm = priv->mm; - if (!mm || !mmget_not_zero(mm)) + if (!mm || !mmget_not_zero(mm)) { + put_task_struct(priv->task); + priv->task = NULL; return NULL; + } if (mmap_read_lock_killable(mm)) { mmput(mm); + put_task_struct(priv->task); + priv->task = NULL; return ERR_PTR(-EINTR); } @@ -224,23 +229,21 @@ static void *m_start(struct seq_file *m, loff_t *pos) if (n-- == 0) return p; - mmap_read_unlock(mm); - mmput(mm); return NULL; } -static void m_stop(struct seq_file *m, void *_vml) +static void m_stop(struct seq_file *m, void *v) { struct proc_maps_private *priv = m->private; + struct mm_struct *mm = priv->mm; - if (!IS_ERR_OR_NULL(_vml)) { - mmap_read_unlock(priv->mm); - mmput(priv->mm); - } - if (priv->task) { - put_task_struct(priv->task); - priv->task = NULL; - } + if (!priv->task) + return; + + mmap_read_unlock(mm); + mmput(mm); + put_task_struct(priv->task); + priv->task = NULL; } static void *m_next(struct seq_file *m, void *_p, loff_t *pos) diff --git a/fs/proc/vmcore.c b/fs/proc/vmcore.c index e5730986758fa..d2178114af305 100644 --- a/fs/proc/vmcore.c +++ b/fs/proc/vmcore.c @@ -26,7 +26,7 @@ #include #include #include -#include +#include #include #include "internal.h" @@ -181,7 +181,7 @@ ssize_t __weak elfcorehdr_read(char *buf, size_t count, u64 *ppos) */ ssize_t __weak elfcorehdr_read_notes(char *buf, size_t count, u64 *ppos) { - return read_from_oldmem(buf, count, ppos, 0, mem_encrypt_active()); + return read_from_oldmem(buf, count, ppos, 0, cc_platform_has(CC_ATTR_MEM_ENCRYPT)); } /* @@ -382,7 +382,7 @@ static ssize_t __read_vmcore(char *buffer, size_t buflen, loff_t *fpos, buflen); start = m->paddr + *fpos - m->offset; tmp = read_from_oldmem(buffer, tsz, &start, - userbuf, mem_encrypt_active()); + userbuf, cc_platform_has(CC_ATTR_MEM_ENCRYPT)); if (tmp < 0) return tmp; buflen -= tsz; diff --git a/fs/pstore/platform.c b/fs/pstore/platform.c index ad96ba97d8f97..3fc4739f82d86 100644 --- a/fs/pstore/platform.c +++ b/fs/pstore/platform.c @@ -561,6 +561,8 @@ static int pstore_write_user_compat(struct pstore_record *record, */ int pstore_register(struct pstore_info *psi) { + char *new_backend; + if (backend && strcmp(backend, psi->name)) { pr_warn("ignoring unexpected backend '%s'\n", psi->name); return -EPERM; @@ -580,11 +582,16 @@ int pstore_register(struct pstore_info *psi) return -EINVAL; } + new_backend = kstrdup(psi->name, GFP_KERNEL); + if (!new_backend) + return -ENOMEM; + mutex_lock(&psinfo_lock); if (psinfo) { pr_warn("backend '%s' already loaded: ignoring '%s'\n", psinfo->name, psi->name); mutex_unlock(&psinfo_lock); + kfree(new_backend); return -EBUSY; } @@ -617,7 +624,7 @@ int pstore_register(struct pstore_info *psi) * Update the module parameter backend, so it is visible * through /sys/module/pstore/parameters/backend */ - backend = kstrdup(psi->name, GFP_KERNEL); + backend = new_backend; pr_info("Registered %s as persistent store backend\n", psi->name); diff --git a/fs/pstore/ram_core.c b/fs/pstore/ram_core.c index fd9bab137685d..ccdb71c3dc51d 100644 --- a/fs/pstore/ram_core.c +++ b/fs/pstore/ram_core.c @@ -518,7 +518,7 @@ static int persistent_ram_post_init(struct persistent_ram_zone *prz, u32 sig, sig ^= PERSISTENT_RAM_SIG; if (prz->buffer->sig == sig) { - if (buffer_size(prz) == 0) { + if (buffer_size(prz) == 0 && buffer_start(prz) == 0) { pr_debug("found existing empty buffer\n"); return 0; } diff --git a/fs/quota/dquot.c b/fs/quota/dquot.c index b88f5a2f6032b..75e593b1c03e8 100644 --- a/fs/quota/dquot.c +++ b/fs/quota/dquot.c @@ -225,18 +225,26 @@ static void put_quota_format(struct quota_format_type *fmt) /* * Dquot List Management: - * The quota code uses four lists for dquot management: the inuse_list, - * free_dquots, dqi_dirty_list, and dquot_hash[] array. A single dquot - * structure may be on some of those lists, depending on its current state. + * The quota code uses five lists for dquot management: the inuse_list, + * releasing_dquots, free_dquots, dqi_dirty_list, and dquot_hash[] array. + * A single dquot structure may be on some of those lists, depending on + * its current state. * * All dquots are placed to the end of inuse_list when first created, and this * list is used for invalidate operation, which must look at every dquot. * - * Unused dquots (dq_count == 0) are added to the free_dquots list when freed, - * and this list is searched whenever we need an available dquot. Dquots are - * removed from the list as soon as they are used again, and - * dqstats.free_dquots gives the number of dquots on the list. When - * dquot is invalidated it's completely released from memory. + * When the last reference of a dquot is dropped, the dquot is added to + * releasing_dquots. We'll then queue work item which will call + * synchronize_srcu() and after that perform the final cleanup of all the + * dquots on the list. Each cleaned up dquot is moved to free_dquots list. + * Both releasing_dquots and free_dquots use the dq_free list_head in the dquot + * struct. + * + * Unused and cleaned up dquots are in the free_dquots list and this list is + * searched whenever we need an available dquot. Dquots are removed from the + * list as soon as they are used again and dqstats.free_dquots gives the number + * of dquots on the list. When dquot is invalidated it's completely released + * from memory. * * Dirty dquots are added to the dqi_dirty_list of quota_info when mark * dirtied, and this list is searched when writing dirty dquots back to @@ -250,6 +258,7 @@ static void put_quota_format(struct quota_format_type *fmt) static LIST_HEAD(inuse_list); static LIST_HEAD(free_dquots); +static LIST_HEAD(releasing_dquots); static unsigned int dq_hash_bits, dq_hash_mask; static struct hlist_head *dquot_hash; @@ -260,6 +269,9 @@ static qsize_t inode_get_rsv_space(struct inode *inode); static qsize_t __inode_get_rsv_space(struct inode *inode); static int __dquot_initialize(struct inode *inode, int type); +static void quota_release_workfn(struct work_struct *work); +static DECLARE_DELAYED_WORK(quota_release_work, quota_release_workfn); + static inline unsigned int hashfn(const struct super_block *sb, struct kqid qid) { @@ -305,12 +317,21 @@ static inline void put_dquot_last(struct dquot *dquot) dqstats_inc(DQST_FREE_DQUOTS); } +static inline void put_releasing_dquots(struct dquot *dquot) +{ + list_add_tail(&dquot->dq_free, &releasing_dquots); + set_bit(DQ_RELEASING_B, &dquot->dq_flags); +} + static inline void remove_free_dquot(struct dquot *dquot) { if (list_empty(&dquot->dq_free)) return; list_del_init(&dquot->dq_free); - dqstats_dec(DQST_FREE_DQUOTS); + if (!test_bit(DQ_RELEASING_B, &dquot->dq_flags)) + dqstats_dec(DQST_FREE_DQUOTS); + else + clear_bit(DQ_RELEASING_B, &dquot->dq_flags); } static inline void put_inuse(struct dquot *dquot) @@ -336,6 +357,11 @@ static void wait_on_dquot(struct dquot *dquot) mutex_unlock(&dquot->dq_lock); } +static inline int dquot_active(struct dquot *dquot) +{ + return test_bit(DQ_ACTIVE_B, &dquot->dq_flags); +} + static inline int dquot_dirty(struct dquot *dquot) { return test_bit(DQ_MOD_B, &dquot->dq_flags); @@ -351,14 +377,14 @@ int dquot_mark_dquot_dirty(struct dquot *dquot) { int ret = 1; - if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) + if (!dquot_active(dquot)) return 0; if (sb_dqopt(dquot->dq_sb)->flags & DQUOT_NOLIST_DIRTY) return test_and_set_bit(DQ_MOD_B, &dquot->dq_flags); /* If quota is dirty already, we don't have to acquire dq_list_lock */ - if (test_bit(DQ_MOD_B, &dquot->dq_flags)) + if (dquot_dirty(dquot)) return 1; spin_lock(&dq_list_lock); @@ -440,7 +466,7 @@ int dquot_acquire(struct dquot *dquot) smp_mb__before_atomic(); set_bit(DQ_READ_B, &dquot->dq_flags); /* Instantiate dquot if needed */ - if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags) && !dquot->dq_off) { + if (!dquot_active(dquot) && !dquot->dq_off) { ret = dqopt->ops[dquot->dq_id.type]->commit_dqblk(dquot); /* Write the info if needed */ if (info_dirty(&dqopt->info[dquot->dq_id.type])) { @@ -482,7 +508,7 @@ int dquot_commit(struct dquot *dquot) goto out_lock; /* Inactive dquot can be only if there was error during read/init * => we have better not writing it */ - if (test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) + if (dquot_active(dquot)) ret = dqopt->ops[dquot->dq_id.type]->commit_dqblk(dquot); else ret = -EIO; @@ -547,6 +573,8 @@ static void invalidate_dquots(struct super_block *sb, int type) struct dquot *dquot, *tmp; restart: + flush_delayed_work("a_release_work); + spin_lock(&dq_list_lock); list_for_each_entry_safe(dquot, tmp, &inuse_list, dq_inuse) { if (dquot->dq_sb != sb) @@ -573,6 +601,15 @@ static void invalidate_dquots(struct super_block *sb, int type) * restart. */ goto restart; } + /* + * The last user already dropped its reference but dquot didn't + * get fully cleaned up yet. Restart the scan which flushes the + * work cleaning up released dquots. + */ + if (test_bit(DQ_RELEASING_B, &dquot->dq_flags)) { + spin_unlock(&dq_list_lock); + goto restart; + } /* * Quota now has no users and it has been written on last * dqput() @@ -597,7 +634,7 @@ int dquot_scan_active(struct super_block *sb, spin_lock(&dq_list_lock); list_for_each_entry(dquot, &inuse_list, dq_inuse) { - if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) + if (!dquot_active(dquot)) continue; if (dquot->dq_sb != sb) continue; @@ -612,7 +649,7 @@ int dquot_scan_active(struct super_block *sb, * outstanding call and recheck the DQ_ACTIVE_B after that. */ wait_on_dquot(dquot); - if (test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) { + if (dquot_active(dquot)) { ret = fn(dquot, priv); if (ret < 0) goto out; @@ -628,6 +665,18 @@ int dquot_scan_active(struct super_block *sb, } EXPORT_SYMBOL(dquot_scan_active); +static inline int dquot_write_dquot(struct dquot *dquot) +{ + int ret = dquot->dq_sb->dq_op->write_dquot(dquot); + if (ret < 0) { + quota_error(dquot->dq_sb, "Can't write quota structure " + "(error %d). Quota may get out of sync!", ret); + /* Clear dirty bit anyway to avoid infinite loop. */ + clear_dquot_dirty(dquot); + } + return ret; +} + /* Write all dquot structures to quota files */ int dquot_writeback_dquots(struct super_block *sb, int type) { @@ -651,23 +700,23 @@ int dquot_writeback_dquots(struct super_block *sb, int type) dquot = list_first_entry(&dirty, struct dquot, dq_dirty); - WARN_ON(!test_bit(DQ_ACTIVE_B, &dquot->dq_flags)); + WARN_ON(!dquot_active(dquot)); + /* If the dquot is releasing we should not touch it */ + if (test_bit(DQ_RELEASING_B, &dquot->dq_flags)) { + spin_unlock(&dq_list_lock); + flush_delayed_work("a_release_work); + spin_lock(&dq_list_lock); + continue; + } /* Now we have active dquot from which someone is * holding reference so we can safely just increase * use count */ dqgrab(dquot); spin_unlock(&dq_list_lock); - err = sb->dq_op->write_dquot(dquot); - if (err) { - /* - * Clear dirty bit anyway to avoid infinite - * loop here. - */ - clear_dquot_dirty(dquot); - if (!ret) - ret = err; - } + err = dquot_write_dquot(dquot); + if (err && !ret) + ret = err; dqput(dquot); spin_lock(&dq_list_lock); } @@ -760,13 +809,53 @@ static struct shrinker dqcache_shrinker = { .seeks = DEFAULT_SEEKS, }; +/* + * Safely release dquot and put reference to dquot. + */ +static void quota_release_workfn(struct work_struct *work) +{ + struct dquot *dquot; + struct list_head rls_head; + + spin_lock(&dq_list_lock); + /* Exchange the list head to avoid livelock. */ + list_replace_init(&releasing_dquots, &rls_head); + spin_unlock(&dq_list_lock); + synchronize_srcu(&dquot_srcu); + +restart: + spin_lock(&dq_list_lock); + while (!list_empty(&rls_head)) { + dquot = list_first_entry(&rls_head, struct dquot, dq_free); + WARN_ON_ONCE(atomic_read(&dquot->dq_count)); + /* + * Note that DQ_RELEASING_B protects us from racing with + * invalidate_dquots() calls so we are safe to work with the + * dquot even after we drop dq_list_lock. + */ + if (dquot_dirty(dquot)) { + spin_unlock(&dq_list_lock); + /* Commit dquot before releasing */ + dquot_write_dquot(dquot); + goto restart; + } + if (dquot_active(dquot)) { + spin_unlock(&dq_list_lock); + dquot->dq_sb->dq_op->release_dquot(dquot); + goto restart; + } + /* Dquot is inactive and clean, now move it to free list */ + remove_free_dquot(dquot); + put_dquot_last(dquot); + } + spin_unlock(&dq_list_lock); +} + /* * Put reference to dquot */ void dqput(struct dquot *dquot) { - int ret; - if (!dquot) return; #ifdef CONFIG_QUOTA_DEBUG @@ -778,7 +867,7 @@ void dqput(struct dquot *dquot) } #endif dqstats_inc(DQST_DROPS); -we_slept: + spin_lock(&dq_list_lock); if (atomic_read(&dquot->dq_count) > 1) { /* We have more than one user... nothing to do */ @@ -790,35 +879,16 @@ void dqput(struct dquot *dquot) spin_unlock(&dq_list_lock); return; } + /* Need to release dquot? */ - if (dquot_dirty(dquot)) { - spin_unlock(&dq_list_lock); - /* Commit dquot before releasing */ - ret = dquot->dq_sb->dq_op->write_dquot(dquot); - if (ret < 0) { - quota_error(dquot->dq_sb, "Can't write quota structure" - " (error %d). Quota may get out of sync!", - ret); - /* - * We clear dirty bit anyway, so that we avoid - * infinite loop here - */ - clear_dquot_dirty(dquot); - } - goto we_slept; - } - if (test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) { - spin_unlock(&dq_list_lock); - dquot->dq_sb->dq_op->release_dquot(dquot); - goto we_slept; - } - atomic_dec(&dquot->dq_count); #ifdef CONFIG_QUOTA_DEBUG /* sanity check */ BUG_ON(!list_empty(&dquot->dq_free)); #endif - put_dquot_last(dquot); + put_releasing_dquots(dquot); + atomic_dec(&dquot->dq_count); spin_unlock(&dq_list_lock); + queue_delayed_work(system_unbound_wq, "a_release_work, 1); } EXPORT_SYMBOL(dqput); @@ -905,10 +975,10 @@ struct dquot *dqget(struct super_block *sb, struct kqid qid) dqstats_inc(DQST_LOOKUPS); } /* Wait for dq_lock - after this we know that either dquot_release() is - * already finished or it will be canceled due to dq_count > 1 test */ + * already finished or it will be canceled due to dq_count > 0 test */ wait_on_dquot(dquot); /* Read the dquot / allocate space in quota file */ - if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) { + if (!dquot_active(dquot)) { int err; err = sb->dq_op->acquire_dquot(dquot); @@ -1425,7 +1495,7 @@ static int info_bdq_free(struct dquot *dquot, qsize_t space) return QUOTA_NL_NOWARN; } -static int dquot_active(const struct inode *inode) +static int inode_quota_active(const struct inode *inode) { struct super_block *sb = inode->i_sb; @@ -1448,7 +1518,7 @@ static int __dquot_initialize(struct inode *inode, int type) qsize_t rsv; int ret = 0; - if (!dquot_active(inode)) + if (!inode_quota_active(inode)) return 0; dquots = i_dquot(inode); @@ -1556,7 +1626,7 @@ bool dquot_initialize_needed(struct inode *inode) struct dquot **dquots; int i; - if (!dquot_active(inode)) + if (!inode_quota_active(inode)) return false; dquots = i_dquot(inode); @@ -1667,7 +1737,7 @@ int __dquot_alloc_space(struct inode *inode, qsize_t number, int flags) int reserve = flags & DQUOT_SPACE_RESERVE; struct dquot **dquots; - if (!dquot_active(inode)) { + if (!inode_quota_active(inode)) { if (reserve) { spin_lock(&inode->i_lock); *inode_reserved_space(inode) += number; @@ -1737,7 +1807,7 @@ int dquot_alloc_inode(struct inode *inode) struct dquot_warn warn[MAXQUOTAS]; struct dquot * const *dquots; - if (!dquot_active(inode)) + if (!inode_quota_active(inode)) return 0; for (cnt = 0; cnt < MAXQUOTAS; cnt++) warn[cnt].w_type = QUOTA_NL_NOWARN; @@ -1780,7 +1850,7 @@ int dquot_claim_space_nodirty(struct inode *inode, qsize_t number) struct dquot **dquots; int cnt, index; - if (!dquot_active(inode)) { + if (!inode_quota_active(inode)) { spin_lock(&inode->i_lock); *inode_reserved_space(inode) -= number; __inode_add_bytes(inode, number); @@ -1822,7 +1892,7 @@ void dquot_reclaim_space_nodirty(struct inode *inode, qsize_t number) struct dquot **dquots; int cnt, index; - if (!dquot_active(inode)) { + if (!inode_quota_active(inode)) { spin_lock(&inode->i_lock); *inode_reserved_space(inode) += number; __inode_sub_bytes(inode, number); @@ -1866,7 +1936,7 @@ void __dquot_free_space(struct inode *inode, qsize_t number, int flags) struct dquot **dquots; int reserve = flags & DQUOT_SPACE_RESERVE, index; - if (!dquot_active(inode)) { + if (!inode_quota_active(inode)) { if (reserve) { spin_lock(&inode->i_lock); *inode_reserved_space(inode) -= number; @@ -1921,7 +1991,7 @@ void dquot_free_inode(struct inode *inode) struct dquot * const *dquots; int index; - if (!dquot_active(inode)) + if (!inode_quota_active(inode)) return; dquots = i_dquot(inode); @@ -2092,7 +2162,7 @@ int dquot_transfer(struct inode *inode, struct iattr *iattr) struct super_block *sb = inode->i_sb; int ret; - if (!dquot_active(inode)) + if (!inode_quota_active(inode)) return 0; if (iattr->ia_valid & ATTR_UID && !uid_eq(iattr->ia_uid, inode->i_uid)){ @@ -2326,6 +2396,20 @@ static int vfs_setup_quota_inode(struct inode *inode, int type) if (sb_has_quota_loaded(sb, type)) return -EBUSY; + /* + * Quota files should never be encrypted. They should be thought of as + * filesystem metadata, not user data. New-style internal quota files + * cannot be encrypted by users anyway, but old-style external quota + * files could potentially be incorrectly created in an encrypted + * directory, hence this explicit check. Some reasons why encrypted + * quota files don't work include: (1) some filesystems that support + * encryption don't handle it in their quota_read and quota_write, and + * (2) cleaning up encrypted quota files at unmount would need special + * consideration, as quota files are cleaned up later than user files. + */ + if (IS_ENCRYPTED(inode)) + return -EINVAL; + dqopt->files[type] = igrab(inode); if (!dqopt->files[type]) return -EIO; diff --git a/fs/reiserfs/journal.c b/fs/reiserfs/journal.c index 0834b101c316d..86a1dee6e2e7d 100644 --- a/fs/reiserfs/journal.c +++ b/fs/reiserfs/journal.c @@ -2323,7 +2323,7 @@ static struct buffer_head *reiserfs_breada(struct block_device *dev, int i, j; bh = __getblk(dev, block, bufsize); - if (buffer_uptodate(bh)) + if (!bh || buffer_uptodate(bh)) return (bh); if (block + BUFNR > max_block) { @@ -2333,6 +2333,8 @@ static struct buffer_head *reiserfs_breada(struct block_device *dev, j = 1; for (i = 1; i < blocks; i++) { bh = __getblk(dev, block + i, bufsize); + if (!bh) + break; if (buffer_uptodate(bh)) { brelse(bh); break; diff --git a/fs/smbfs_common/smb2pdu.h b/fs/smbfs_common/smb2pdu.h new file mode 100644 index 0000000000000..bae590eec871f --- /dev/null +++ b/fs/smbfs_common/smb2pdu.h @@ -0,0 +1,1768 @@ +/* SPDX-License-Identifier: LGPL-2.1 */ +#ifndef _COMMON_SMB2PDU_H +#define _COMMON_SMB2PDU_H + +/* + * Note that, due to trying to use names similar to the protocol specifications, + * there are many mixed case field names in the structures below. Although + * this does not match typical Linux kernel style, it is necessary to be + * able to match against the protocol specfication. + * + * SMB2 commands + * Some commands have minimal (wct=0,bcc=0), or uninteresting, responses + * (ie no useful data other than the SMB error code itself) and are marked such. + * Knowing this helps avoid response buffer allocations and copy in some cases. + */ + +/* List of commands in host endian */ +#define SMB2_NEGOTIATE_HE 0x0000 +#define SMB2_SESSION_SETUP_HE 0x0001 +#define SMB2_LOGOFF_HE 0x0002 /* trivial request/resp */ +#define SMB2_TREE_CONNECT_HE 0x0003 +#define SMB2_TREE_DISCONNECT_HE 0x0004 /* trivial req/resp */ +#define SMB2_CREATE_HE 0x0005 +#define SMB2_CLOSE_HE 0x0006 +#define SMB2_FLUSH_HE 0x0007 /* trivial resp */ +#define SMB2_READ_HE 0x0008 +#define SMB2_WRITE_HE 0x0009 +#define SMB2_LOCK_HE 0x000A +#define SMB2_IOCTL_HE 0x000B +#define SMB2_CANCEL_HE 0x000C +#define SMB2_ECHO_HE 0x000D +#define SMB2_QUERY_DIRECTORY_HE 0x000E +#define SMB2_CHANGE_NOTIFY_HE 0x000F +#define SMB2_QUERY_INFO_HE 0x0010 +#define SMB2_SET_INFO_HE 0x0011 +#define SMB2_OPLOCK_BREAK_HE 0x0012 + +/* The same list in little endian */ +#define SMB2_NEGOTIATE cpu_to_le16(SMB2_NEGOTIATE_HE) +#define SMB2_SESSION_SETUP cpu_to_le16(SMB2_SESSION_SETUP_HE) +#define SMB2_LOGOFF cpu_to_le16(SMB2_LOGOFF_HE) +#define SMB2_TREE_CONNECT cpu_to_le16(SMB2_TREE_CONNECT_HE) +#define SMB2_TREE_DISCONNECT cpu_to_le16(SMB2_TREE_DISCONNECT_HE) +#define SMB2_CREATE cpu_to_le16(SMB2_CREATE_HE) +#define SMB2_CLOSE cpu_to_le16(SMB2_CLOSE_HE) +#define SMB2_FLUSH cpu_to_le16(SMB2_FLUSH_HE) +#define SMB2_READ cpu_to_le16(SMB2_READ_HE) +#define SMB2_WRITE cpu_to_le16(SMB2_WRITE_HE) +#define SMB2_LOCK cpu_to_le16(SMB2_LOCK_HE) +#define SMB2_IOCTL cpu_to_le16(SMB2_IOCTL_HE) +#define SMB2_CANCEL cpu_to_le16(SMB2_CANCEL_HE) +#define SMB2_ECHO cpu_to_le16(SMB2_ECHO_HE) +#define SMB2_QUERY_DIRECTORY cpu_to_le16(SMB2_QUERY_DIRECTORY_HE) +#define SMB2_CHANGE_NOTIFY cpu_to_le16(SMB2_CHANGE_NOTIFY_HE) +#define SMB2_QUERY_INFO cpu_to_le16(SMB2_QUERY_INFO_HE) +#define SMB2_SET_INFO cpu_to_le16(SMB2_SET_INFO_HE) +#define SMB2_OPLOCK_BREAK cpu_to_le16(SMB2_OPLOCK_BREAK_HE) + +#define SMB2_INTERNAL_CMD cpu_to_le16(0xFFFF) + +#define NUMBER_OF_SMB2_COMMANDS 0x0013 + +/* + * Size of the session key (crypto key encrypted with the password + */ +#define SMB2_NTLMV2_SESSKEY_SIZE 16 +#define SMB2_SIGNATURE_SIZE 16 +#define SMB2_HMACSHA256_SIZE 32 +#define SMB2_CMACAES_SIZE 16 +#define SMB3_GCM128_CRYPTKEY_SIZE 16 +#define SMB3_GCM256_CRYPTKEY_SIZE 32 + +/* + * Size of the smb3 encryption/decryption keys + * This size is big enough to store any cipher key types. + */ +#define SMB3_ENC_DEC_KEY_SIZE 32 + +/* + * Size of the smb3 signing key + */ +#define SMB3_SIGN_KEY_SIZE 16 + +#define CIFS_CLIENT_CHALLENGE_SIZE 8 + +/* Maximum buffer size value we can send with 1 credit */ +#define SMB2_MAX_BUFFER_SIZE 65536 + +/* + * The default wsize is 1M for SMB2 (and for some CIFS cases). + * find_get_pages seems to return a maximum of 256 + * pages in a single call. With PAGE_SIZE == 4k, this means we can + * fill a single wsize request with a single call. + */ +#define SMB3_DEFAULT_IOSIZE (4 * 1024 * 1024) + +/* + * SMB2 Header Definition + * + * "MBZ" : Must be Zero + * "BB" : BugBug, Something to check/review/analyze later + * "PDU" : "Protocol Data Unit" (ie a network "frame") + * + */ + +#define __SMB2_HEADER_STRUCTURE_SIZE 64 +#define SMB2_HEADER_STRUCTURE_SIZE \ + cpu_to_le16(__SMB2_HEADER_STRUCTURE_SIZE) + +#define SMB2_PROTO_NUMBER cpu_to_le32(0x424d53fe) +#define SMB2_TRANSFORM_PROTO_NUM cpu_to_le32(0x424d53fd) +#define SMB2_COMPRESSION_TRANSFORM_ID cpu_to_le32(0x424d53fc) + +/* + * SMB2 flag definitions + */ +#define SMB2_FLAGS_SERVER_TO_REDIR cpu_to_le32(0x00000001) +#define SMB2_FLAGS_ASYNC_COMMAND cpu_to_le32(0x00000002) +#define SMB2_FLAGS_RELATED_OPERATIONS cpu_to_le32(0x00000004) +#define SMB2_FLAGS_SIGNED cpu_to_le32(0x00000008) +#define SMB2_FLAGS_PRIORITY_MASK cpu_to_le32(0x00000070) /* SMB3.1.1 */ +#define SMB2_FLAGS_DFS_OPERATIONS cpu_to_le32(0x10000000) +#define SMB2_FLAGS_REPLAY_OPERATION cpu_to_le32(0x20000000) /* SMB3 & up */ + +/* + * Definitions for SMB2 Protocol Data Units (network frames) + * + * See MS-SMB2.PDF specification for protocol details. + * The Naming convention is the lower case version of the SMB2 + * command code name for the struct. Note that structures must be packed. + * + */ + +/* See MS-SMB2 section 2.2.1 */ +struct smb2_hdr { + __le32 ProtocolId; /* 0xFE 'S' 'M' 'B' */ + __le16 StructureSize; /* 64 */ + __le16 CreditCharge; /* MBZ */ + __le32 Status; /* Error from server */ + __le16 Command; + __le16 CreditRequest; /* CreditResponse */ + __le32 Flags; + __le32 NextCommand; + __le64 MessageId; + union { + struct { + __le32 ProcessId; + __le32 TreeId; + } __packed SyncId; + __le64 AsyncId; + } __packed Id; + __le64 SessionId; + __u8 Signature[16]; +} __packed; + +struct smb2_pdu { + struct smb2_hdr hdr; + __le16 StructureSize2; /* size of wct area (varies, request specific) */ +} __packed; + +#define SMB2_ERROR_STRUCTURE_SIZE2 9 +#define SMB2_ERROR_STRUCTURE_SIZE2_LE cpu_to_le16(SMB2_ERROR_STRUCTURE_SIZE2) + +struct smb2_err_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; + __u8 ErrorContextCount; + __u8 Reserved; + __le32 ByteCount; /* even if zero, at least one byte follows */ + __u8 ErrorData[]; /* variable length */ +} __packed; + +#define SMB3_AES_CCM_NONCE 11 +#define SMB3_AES_GCM_NONCE 12 + +/* Transform flags (for 3.0 dialect this flag indicates CCM */ +#define TRANSFORM_FLAG_ENCRYPTED 0x0001 +struct smb2_transform_hdr { + __le32 ProtocolId; /* 0xFD 'S' 'M' 'B' */ + __u8 Signature[16]; + __u8 Nonce[16]; + __le32 OriginalMessageSize; + __u16 Reserved1; + __le16 Flags; /* EncryptionAlgorithm for 3.0, enc enabled for 3.1.1 */ + __le64 SessionId; +} __packed; + + +/* See MS-SMB2 2.2.42 */ +struct smb2_compression_transform_hdr_unchained { + __le32 ProtocolId; /* 0xFC 'S' 'M' 'B' */ + __le32 OriginalCompressedSegmentSize; + __le16 CompressionAlgorithm; + __le16 Flags; + __le16 Length; /* if chained it is length, else offset */ +} __packed; + +/* See MS-SMB2 2.2.42.1 */ +#define SMB2_COMPRESSION_FLAG_NONE 0x0000 +#define SMB2_COMPRESSION_FLAG_CHAINED 0x0001 + +struct compression_payload_header { + __le16 CompressionAlgorithm; + __le16 Flags; + __le32 Length; /* length of compressed playload including field below if present */ + /* __le32 OriginalPayloadSize; */ /* optional, present when LZNT1, LZ77, LZ77+Huffman */ +} __packed; + +/* See MS-SMB2 2.2.42.2 */ +struct smb2_compression_transform_hdr_chained { + __le32 ProtocolId; /* 0xFC 'S' 'M' 'B' */ + __le32 OriginalCompressedSegmentSize; + /* struct compression_payload_header[] */ +} __packed; + +/* See MS-SMB2 2.2.42.2.2 */ +struct compression_pattern_payload_v1 { + __le16 Pattern; + __le16 Reserved1; + __le16 Reserved2; + __le32 Repetitions; +} __packed; + +/* See MS-SMB2 section 2.2.9.2 */ +/* Context Types */ +#define SMB2_RESERVED_TREE_CONNECT_CONTEXT_ID 0x0000 +#define SMB2_REMOTED_IDENTITY_TREE_CONNECT_CONTEXT_ID cpu_to_le16(0x0001) + +struct tree_connect_contexts { + __le16 ContextType; + __le16 DataLength; + __le32 Reserved; + __u8 Data[]; +} __packed; + +/* Remoted identity tree connect context structures - see MS-SMB2 2.2.9.2.1 */ +struct smb3_blob_data { + __le16 BlobSize; + __u8 BlobData[]; +} __packed; + +/* Valid values for Attr */ +#define SE_GROUP_MANDATORY 0x00000001 +#define SE_GROUP_ENABLED_BY_DEFAULT 0x00000002 +#define SE_GROUP_ENABLED 0x00000004 +#define SE_GROUP_OWNER 0x00000008 +#define SE_GROUP_USE_FOR_DENY_ONLY 0x00000010 +#define SE_GROUP_INTEGRITY 0x00000020 +#define SE_GROUP_INTEGRITY_ENABLED 0x00000040 +#define SE_GROUP_RESOURCE 0x20000000 +#define SE_GROUP_LOGON_ID 0xC0000000 + +/* struct sid_attr_data is SidData array in BlobData format then le32 Attr */ + +struct sid_array_data { + __le16 SidAttrCount; + /* SidAttrList - array of sid_attr_data structs */ +} __packed; + +struct luid_attr_data { + +} __packed; + +/* + * struct privilege_data is the same as BLOB_DATA - see MS-SMB2 2.2.9.2.1.5 + * but with size of LUID_ATTR_DATA struct and BlobData set to LUID_ATTR DATA + */ + +struct privilege_array_data { + __le16 PrivilegeCount; + /* array of privilege_data structs */ +} __packed; + +struct remoted_identity_tcon_context { + __le16 TicketType; /* must be 0x0001 */ + __le16 TicketSize; /* total size of this struct */ + __le16 User; /* offset to SID_ATTR_DATA struct with user info */ + __le16 UserName; /* offset to null terminated Unicode username string */ + __le16 Domain; /* offset to null terminated Unicode domain name */ + __le16 Groups; /* offset to SID_ARRAY_DATA struct with group info */ + __le16 RestrictedGroups; /* similar to above */ + __le16 Privileges; /* offset to PRIVILEGE_ARRAY_DATA struct */ + __le16 PrimaryGroup; /* offset to SID_ARRAY_DATA struct */ + __le16 Owner; /* offset to BLOB_DATA struct */ + __le16 DefaultDacl; /* offset to BLOB_DATA struct */ + __le16 DeviceGroups; /* offset to SID_ARRAY_DATA struct */ + __le16 UserClaims; /* offset to BLOB_DATA struct */ + __le16 DeviceClaims; /* offset to BLOB_DATA struct */ + __u8 TicketInfo[]; /* variable length buf - remoted identity data */ +} __packed; + +struct smb2_tree_connect_req_extension { + __le32 TreeConnectContextOffset; + __le16 TreeConnectContextCount; + __u8 Reserved[10]; + __u8 PathName[]; /* variable sized array */ + /* followed by array of TreeConnectContexts */ +} __packed; + +/* Flags/Reserved for SMB3.1.1 */ +#define SMB2_TREE_CONNECT_FLAG_CLUSTER_RECONNECT cpu_to_le16(0x0001) +#define SMB2_TREE_CONNECT_FLAG_REDIRECT_TO_OWNER cpu_to_le16(0x0002) +#define SMB2_TREE_CONNECT_FLAG_EXTENSION_PRESENT cpu_to_le16(0x0004) + +struct smb2_tree_connect_req { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 9 */ + __le16 Flags; /* Flags in SMB3.1.1 */ + __le16 PathOffset; + __le16 PathLength; + __u8 Buffer[]; /* variable length */ +} __packed; + +/* Possible ShareType values */ +#define SMB2_SHARE_TYPE_DISK 0x01 +#define SMB2_SHARE_TYPE_PIPE 0x02 +#define SMB2_SHARE_TYPE_PRINT 0x03 + +/* + * Possible ShareFlags - exactly one and only one of the first 4 caching flags + * must be set (any of the remaining, SHI1005, flags may be set individually + * or in combination. + */ +#define SMB2_SHAREFLAG_MANUAL_CACHING 0x00000000 +#define SMB2_SHAREFLAG_AUTO_CACHING 0x00000010 +#define SMB2_SHAREFLAG_VDO_CACHING 0x00000020 +#define SMB2_SHAREFLAG_NO_CACHING 0x00000030 +#define SHI1005_FLAGS_DFS 0x00000001 +#define SHI1005_FLAGS_DFS_ROOT 0x00000002 +#define SMB2_SHAREFLAG_RESTRICT_EXCLUSIVE_OPENS 0x00000100 +#define SMB2_SHAREFLAG_FORCE_SHARED_DELETE 0x00000200 +#define SMB2_SHAREFLAG_ALLOW_NAMESPACE_CACHING 0x00000400 +#define SMB2_SHAREFLAG_ACCESS_BASED_DIRECTORY_ENUM 0x00000800 +#define SMB2_SHAREFLAG_FORCE_LEVELII_OPLOCK 0x00001000 +#define SMB2_SHAREFLAG_ENABLE_HASH_V1 0x00002000 +#define SMB2_SHAREFLAG_ENABLE_HASH_V2 0x00004000 +#define SHI1005_FLAGS_ENCRYPT_DATA 0x00008000 +#define SMB2_SHAREFLAG_IDENTITY_REMOTING 0x00040000 /* 3.1.1 */ +#define SMB2_SHAREFLAG_COMPRESS_DATA 0x00100000 /* 3.1.1 */ +#define SMB2_SHAREFLAG_ISOLATED_TRANSPORT 0x00200000 +#define SHI1005_FLAGS_ALL 0x0034FF33 + +/* Possible share capabilities */ +#define SMB2_SHARE_CAP_DFS cpu_to_le32(0x00000008) /* all dialects */ +#define SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY cpu_to_le32(0x00000010) /* 3.0 */ +#define SMB2_SHARE_CAP_SCALEOUT cpu_to_le32(0x00000020) /* 3.0 */ +#define SMB2_SHARE_CAP_CLUSTER cpu_to_le32(0x00000040) /* 3.0 */ +#define SMB2_SHARE_CAP_ASYMMETRIC cpu_to_le32(0x00000080) /* 3.02 */ +#define SMB2_SHARE_CAP_REDIRECT_TO_OWNER cpu_to_le32(0x00000100) /* 3.1.1 */ + +struct smb2_tree_connect_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 16 */ + __u8 ShareType; /* see below */ + __u8 Reserved; + __le32 ShareFlags; /* see below */ + __le32 Capabilities; /* see below */ + __le32 MaximalAccess; +} __packed; + +struct smb2_tree_disconnect_req { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 4 */ + __le16 Reserved; +} __packed; + +struct smb2_tree_disconnect_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 4 */ + __le16 Reserved; +} __packed; + + +/* + * SMB2_NEGOTIATE_PROTOCOL See MS-SMB2 section 2.2.3 + */ +/* SecurityMode flags */ +#define SMB2_NEGOTIATE_SIGNING_ENABLED 0x0001 +#define SMB2_NEGOTIATE_SIGNING_ENABLED_LE cpu_to_le16(0x0001) +#define SMB2_NEGOTIATE_SIGNING_REQUIRED 0x0002 +#define SMB2_NEGOTIATE_SIGNING_REQUIRED_LE cpu_to_le16(0x0002) +#define SMB2_SEC_MODE_FLAGS_ALL 0x0003 + +/* Capabilities flags */ +#define SMB2_GLOBAL_CAP_DFS 0x00000001 +#define SMB2_GLOBAL_CAP_LEASING 0x00000002 /* Resp only New to SMB2.1 */ +#define SMB2_GLOBAL_CAP_LARGE_MTU 0X00000004 /* Resp only New to SMB2.1 */ +#define SMB2_GLOBAL_CAP_MULTI_CHANNEL 0x00000008 /* New to SMB3 */ +#define SMB2_GLOBAL_CAP_PERSISTENT_HANDLES 0x00000010 /* New to SMB3 */ +#define SMB2_GLOBAL_CAP_DIRECTORY_LEASING 0x00000020 /* New to SMB3 */ +#define SMB2_GLOBAL_CAP_ENCRYPTION 0x00000040 /* New to SMB3 */ +/* Internal types */ +#define SMB2_NT_FIND 0x00100000 +#define SMB2_LARGE_FILES 0x00200000 + +#define SMB2_CLIENT_GUID_SIZE 16 +#define SMB2_CREATE_GUID_SIZE 16 + +/* Dialects */ +#define SMB10_PROT_ID 0x0000 /* local only, not sent on wire w/CIFS negprot */ +#define SMB20_PROT_ID 0x0202 +#define SMB21_PROT_ID 0x0210 +#define SMB2X_PROT_ID 0x02FF +#define SMB30_PROT_ID 0x0300 +#define SMB302_PROT_ID 0x0302 +#define SMB311_PROT_ID 0x0311 +#define BAD_PROT_ID 0xFFFF + +#define SMB311_SALT_SIZE 32 +/* Hash Algorithm Types */ +#define SMB2_PREAUTH_INTEGRITY_SHA512 cpu_to_le16(0x0001) +#define SMB2_PREAUTH_HASH_SIZE 64 + +/* Negotiate Contexts - ContextTypes. See MS-SMB2 section 2.2.3.1 for details */ +#define SMB2_PREAUTH_INTEGRITY_CAPABILITIES cpu_to_le16(1) +#define SMB2_ENCRYPTION_CAPABILITIES cpu_to_le16(2) +#define SMB2_COMPRESSION_CAPABILITIES cpu_to_le16(3) +#define SMB2_NETNAME_NEGOTIATE_CONTEXT_ID cpu_to_le16(5) +#define SMB2_TRANSPORT_CAPABILITIES cpu_to_le16(6) +#define SMB2_RDMA_TRANSFORM_CAPABILITIES cpu_to_le16(7) +#define SMB2_SIGNING_CAPABILITIES cpu_to_le16(8) +#define SMB2_POSIX_EXTENSIONS_AVAILABLE cpu_to_le16(0x100) + +struct smb2_neg_context { + __le16 ContextType; + __le16 DataLength; + __le32 Reserved; + /* Followed by array of data. NOTE: some servers require padding to 8 byte boundary */ +} __packed; + +/* + * SaltLength that the server send can be zero, so the only three required + * fields (all __le16) end up six bytes total, so the minimum context data len + * in the response is six bytes which accounts for + * + * HashAlgorithmCount, SaltLength, and 1 HashAlgorithm. + */ +#define MIN_PREAUTH_CTXT_DATA_LEN 6 + +struct smb2_preauth_neg_context { + __le16 ContextType; /* 1 */ + __le16 DataLength; + __le32 Reserved; + __le16 HashAlgorithmCount; /* 1 */ + __le16 SaltLength; + __le16 HashAlgorithms; /* HashAlgorithms[0] since only one defined */ + __u8 Salt[SMB311_SALT_SIZE]; +} __packed; + +/* Encryption Algorithms Ciphers */ +#define SMB2_ENCRYPTION_AES128_CCM cpu_to_le16(0x0001) +#define SMB2_ENCRYPTION_AES128_GCM cpu_to_le16(0x0002) +#define SMB2_ENCRYPTION_AES256_CCM cpu_to_le16(0x0003) +#define SMB2_ENCRYPTION_AES256_GCM cpu_to_le16(0x0004) + +/* Min encrypt context data is one cipher so 2 bytes + 2 byte count field */ +#define MIN_ENCRYPT_CTXT_DATA_LEN 4 +struct smb2_encryption_neg_context { + __le16 ContextType; /* 2 */ + __le16 DataLength; + __le32 Reserved; + /* CipherCount usally 2, but can be 3 when AES256-GCM enabled */ + __le16 CipherCount; /* AES128-GCM and AES128-CCM by default */ + __le16 Ciphers[]; +} __packed; + +/* See MS-SMB2 2.2.3.1.3 */ +#define SMB3_COMPRESS_NONE cpu_to_le16(0x0000) +#define SMB3_COMPRESS_LZNT1 cpu_to_le16(0x0001) +#define SMB3_COMPRESS_LZ77 cpu_to_le16(0x0002) +#define SMB3_COMPRESS_LZ77_HUFF cpu_to_le16(0x0003) +/* Pattern scanning algorithm See MS-SMB2 3.1.4.4.1 */ +#define SMB3_COMPRESS_PATTERN cpu_to_le16(0x0004) /* Pattern_V1 */ + +/* Compression Flags */ +#define SMB2_COMPRESSION_CAPABILITIES_FLAG_NONE cpu_to_le32(0x00000000) +#define SMB2_COMPRESSION_CAPABILITIES_FLAG_CHAINED cpu_to_le32(0x00000001) + +struct smb2_compression_capabilities_context { + __le16 ContextType; /* 3 */ + __le16 DataLength; + __le32 Reserved; + __le16 CompressionAlgorithmCount; + __le16 Padding; + __le32 Flags; + __le16 CompressionAlgorithms[3]; + __u16 Pad; /* Some servers require pad to DataLen multiple of 8 */ + /* Check if pad needed */ +} __packed; + +/* + * For smb2_netname_negotiate_context_id See MS-SMB2 2.2.3.1.4. + * Its struct simply contains NetName, an array of Unicode characters + */ +struct smb2_netname_neg_context { + __le16 ContextType; /* 5 */ + __le16 DataLength; + __le32 Reserved; + __le16 NetName[]; /* hostname of target converted to UCS-2 */ +} __packed; + +/* + * For smb2_transport_capabilities context see MS-SMB2 2.2.3.1.5 + * and 2.2.4.1.5 + */ + +/* Flags */ +#define SMB2_ACCEPT_TRANSPORT_LEVEL_SECURITY 0x00000001 + +struct smb2_transport_capabilities_context { + __le16 ContextType; /* 6 */ + __le16 DataLength; + __u32 Reserved; + __le32 Flags; + __u32 Pad; +} __packed; + +/* + * For rdma transform capabilities context see MS-SMB2 2.2.3.1.6 + * and 2.2.4.1.6 + */ + +/* RDMA Transform IDs */ +#define SMB2_RDMA_TRANSFORM_NONE 0x0000 +#define SMB2_RDMA_TRANSFORM_ENCRYPTION 0x0001 +#define SMB2_RDMA_TRANSFORM_SIGNING 0x0002 + +struct smb2_rdma_transform_capabilities_context { + __le16 ContextType; /* 7 */ + __le16 DataLength; + __u32 Reserved; + __le16 TransformCount; + __u16 Reserved1; + __u32 Reserved2; + __le16 RDMATransformIds[]; +} __packed; + +/* + * For signing capabilities context see MS-SMB2 2.2.3.1.7 + * and 2.2.4.1.7 + */ + +/* Signing algorithms */ +#define SIGNING_ALG_HMAC_SHA256 0 +#define SIGNING_ALG_HMAC_SHA256_LE cpu_to_le16(0) +#define SIGNING_ALG_AES_CMAC 1 +#define SIGNING_ALG_AES_CMAC_LE cpu_to_le16(1) +#define SIGNING_ALG_AES_GMAC 2 +#define SIGNING_ALG_AES_GMAC_LE cpu_to_le16(2) + +struct smb2_signing_capabilities { + __le16 ContextType; /* 8 */ + __le16 DataLength; + __le32 Reserved; + __le16 SigningAlgorithmCount; + __le16 SigningAlgorithms[]; + /* Followed by padding to 8 byte boundary (required by some servers) */ +} __packed; + +#define POSIX_CTXT_DATA_LEN 16 +struct smb2_posix_neg_context { + __le16 ContextType; /* 0x100 */ + __le16 DataLength; + __le32 Reserved; + __u8 Name[16]; /* POSIX ctxt GUID 93AD25509CB411E7B42383DE968BCD7C */ +} __packed; + +struct smb2_negotiate_req { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 36 */ + __le16 DialectCount; + __le16 SecurityMode; + __le16 Reserved; /* MBZ */ + __le32 Capabilities; + __u8 ClientGUID[SMB2_CLIENT_GUID_SIZE]; + /* In SMB3.02 and earlier next three were MBZ le64 ClientStartTime */ + __le32 NegotiateContextOffset; /* SMB3.1.1 only. MBZ earlier */ + __le16 NegotiateContextCount; /* SMB3.1.1 only. MBZ earlier */ + __le16 Reserved2; + __le16 Dialects[]; +} __packed; + +struct smb2_negotiate_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 65 */ + __le16 SecurityMode; + __le16 DialectRevision; + __le16 NegotiateContextCount; /* Prior to SMB3.1.1 was Reserved & MBZ */ + __u8 ServerGUID[16]; + __le32 Capabilities; + __le32 MaxTransactSize; + __le32 MaxReadSize; + __le32 MaxWriteSize; + __le64 SystemTime; /* MBZ */ + __le64 ServerStartTime; + __le16 SecurityBufferOffset; + __le16 SecurityBufferLength; + __le32 NegotiateContextOffset; /* Pre:SMB3.1.1 was reserved/ignored */ + __u8 Buffer[]; /* variable length GSS security buffer */ +} __packed; + + +/* + * SMB2_SESSION_SETUP See MS-SMB2 section 2.2.5 + */ +/* Flags */ +#define SMB2_SESSION_REQ_FLAG_BINDING 0x01 +#define SMB2_SESSION_REQ_FLAG_ENCRYPT_DATA 0x04 + +struct smb2_sess_setup_req { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 25 */ + __u8 Flags; + __u8 SecurityMode; + __le32 Capabilities; + __le32 Channel; + __le16 SecurityBufferOffset; + __le16 SecurityBufferLength; + __le64 PreviousSessionId; + __u8 Buffer[]; /* variable length GSS security buffer */ +} __packed; + +/* Currently defined SessionFlags */ +#define SMB2_SESSION_FLAG_IS_GUEST 0x0001 +#define SMB2_SESSION_FLAG_IS_GUEST_LE cpu_to_le16(0x0001) +#define SMB2_SESSION_FLAG_IS_NULL 0x0002 +#define SMB2_SESSION_FLAG_IS_NULL_LE cpu_to_le16(0x0002) +#define SMB2_SESSION_FLAG_ENCRYPT_DATA 0x0004 +#define SMB2_SESSION_FLAG_ENCRYPT_DATA_LE cpu_to_le16(0x0004) + +struct smb2_sess_setup_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 9 */ + __le16 SessionFlags; + __le16 SecurityBufferOffset; + __le16 SecurityBufferLength; + __u8 Buffer[]; /* variable length GSS security buffer */ +} __packed; + + +/* + * SMB2_LOGOFF See MS-SMB2 section 2.2.7 + */ +struct smb2_logoff_req { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 4 */ + __le16 Reserved; +} __packed; + +struct smb2_logoff_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 4 */ + __le16 Reserved; +} __packed; + + +/* + * SMB2_CLOSE See MS-SMB2 section 2.2.15 + */ +/* Currently defined values for close flags */ +#define SMB2_CLOSE_FLAG_POSTQUERY_ATTRIB cpu_to_le16(0x0001) +struct smb2_close_req { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 24 */ + __le16 Flags; + __le32 Reserved; + __u64 PersistentFileId; /* opaque endianness */ + __u64 VolatileFileId; /* opaque endianness */ +} __packed; + +/* + * Maximum size of a SMB2_CLOSE response is 64 (smb2 header) + 60 (data) + */ +#define MAX_SMB2_CLOSE_RESPONSE_SIZE 124 + +struct smb2_close_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; /* 60 */ + __le16 Flags; + __le32 Reserved; + __le64 CreationTime; + __le64 LastAccessTime; + __le64 LastWriteTime; + __le64 ChangeTime; + __le64 AllocationSize; /* Beginning of FILE_STANDARD_INFO equivalent */ + __le64 EndOfFile; + __le32 Attributes; +} __packed; + + +/* + * SMB2_READ See MS-SMB2 section 2.2.19 + */ +/* For read request Flags field below, following flag is defined for SMB3.02 */ +#define SMB2_READFLAG_READ_UNBUFFERED 0x01 +#define SMB2_READFLAG_REQUEST_COMPRESSED 0x02 /* See MS-SMB2 2.2.19 */ + +/* Channel field for read and write: exactly one of following flags can be set*/ +#define SMB2_CHANNEL_NONE cpu_to_le32(0x00000000) +#define SMB2_CHANNEL_RDMA_V1 cpu_to_le32(0x00000001) +#define SMB2_CHANNEL_RDMA_V1_INVALIDATE cpu_to_le32(0x00000002) +#define SMB2_CHANNEL_RDMA_TRANSFORM cpu_to_le32(0x00000003) + +/* SMB2 read request without RFC1001 length at the beginning */ +struct smb2_read_req { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 49 */ + __u8 Padding; /* offset from start of SMB2 header to place read */ + __u8 Flags; /* MBZ unless SMB3.02 or later */ + __le32 Length; + __le64 Offset; + __u64 PersistentFileId; + __u64 VolatileFileId; + __le32 MinimumCount; + __le32 Channel; /* MBZ except for SMB3 or later */ + __le32 RemainingBytes; + __le16 ReadChannelInfoOffset; + __le16 ReadChannelInfoLength; + __u8 Buffer[]; +} __packed; + +/* Read flags */ +#define SMB2_READFLAG_RESPONSE_NONE cpu_to_le32(0x00000000) +#define SMB2_READFLAG_RESPONSE_RDMA_TRANSFORM cpu_to_le32(0x00000001) + +struct smb2_read_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 17 */ + __u8 DataOffset; + __u8 Reserved; + __le32 DataLength; + __le32 DataRemaining; + __le32 Flags; + __u8 Buffer[]; +} __packed; + + +/* + * SMB2_WRITE See MS-SMB2 section 2.2.21 + */ +/* For write request Flags field below the following flags are defined: */ +#define SMB2_WRITEFLAG_WRITE_THROUGH 0x00000001 /* SMB2.1 or later */ +#define SMB2_WRITEFLAG_WRITE_UNBUFFERED 0x00000002 /* SMB3.02 or later */ + +struct smb2_write_req { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 49 */ + __le16 DataOffset; /* offset from start of SMB2 header to write data */ + __le32 Length; + __le64 Offset; + __u64 PersistentFileId; /* opaque endianness */ + __u64 VolatileFileId; /* opaque endianness */ + __le32 Channel; /* MBZ unless SMB3.02 or later */ + __le32 RemainingBytes; + __le16 WriteChannelInfoOffset; + __le16 WriteChannelInfoLength; + __le32 Flags; + __u8 Buffer[]; +} __packed; + +struct smb2_write_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 17 */ + __u8 DataOffset; + __u8 Reserved; + __le32 DataLength; + __le32 DataRemaining; + __u32 Reserved2; + __u8 Buffer[]; +} __packed; + + +/* + * SMB2_FLUSH See MS-SMB2 section 2.2.17 + */ +struct smb2_flush_req { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 24 */ + __le16 Reserved1; + __le32 Reserved2; + __u64 PersistentFileId; + __u64 VolatileFileId; +} __packed; + +struct smb2_flush_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 Reserved; +} __packed; + +#define SMB2_LOCKFLAG_SHARED 0x0001 +#define SMB2_LOCKFLAG_EXCLUSIVE 0x0002 +#define SMB2_LOCKFLAG_UNLOCK 0x0004 +#define SMB2_LOCKFLAG_FAIL_IMMEDIATELY 0x0010 +#define SMB2_LOCKFLAG_MASK 0x0007 + +struct smb2_lock_element { + __le64 Offset; + __le64 Length; + __le32 Flags; + __le32 Reserved; +} __packed; + +struct smb2_lock_req { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 48 */ + __le16 LockCount; + /* + * The least significant four bits are the index, the other 28 bits are + * the lock sequence number (0 to 64). See MS-SMB2 2.2.26 + */ + __le32 LockSequenceNumber; + __u64 PersistentFileId; + __u64 VolatileFileId; + /* Followed by at least one */ + union { + struct smb2_lock_element lock; + DECLARE_FLEX_ARRAY(struct smb2_lock_element, locks); + }; +} __packed; + +struct smb2_lock_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 4 */ + __le16 Reserved; +} __packed; + +struct smb2_echo_req { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 4 */ + __u16 Reserved; +} __packed; + +struct smb2_echo_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 4 */ + __u16 Reserved; +} __packed; + +/* + * Valid FileInformation classes for query directory + * + * Note that these are a subset of the (file) QUERY_INFO levels defined + * later in this file (but since QUERY_DIRECTORY uses equivalent numbers + * we do not redefine them here) + * + * FileDirectoryInfomation 0x01 + * FileFullDirectoryInformation 0x02 + * FileIdFullDirectoryInformation 0x26 + * FileBothDirectoryInformation 0x03 + * FileIdBothDirectoryInformation 0x25 + * FileNamesInformation 0x0C + * FileIdExtdDirectoryInformation 0x3C + */ + +/* search (query_directory) Flags field */ +#define SMB2_RESTART_SCANS 0x01 +#define SMB2_RETURN_SINGLE_ENTRY 0x02 +#define SMB2_INDEX_SPECIFIED 0x04 +#define SMB2_REOPEN 0x10 + +struct smb2_query_directory_req { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 33 */ + __u8 FileInformationClass; + __u8 Flags; + __le32 FileIndex; + __u64 PersistentFileId; + __u64 VolatileFileId; + __le16 FileNameOffset; + __le16 FileNameLength; + __le32 OutputBufferLength; + __u8 Buffer[]; +} __packed; + +struct smb2_query_directory_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 9 */ + __le16 OutputBufferOffset; + __le32 OutputBufferLength; + __u8 Buffer[]; +} __packed; + +/* + * Maximum number of iovs we need for a set-info request. + * The largest one is rename/hardlink + * [0] : struct smb2_set_info_req + smb2_file_[rename|link]_info + * [1] : path + * [2] : compound padding + */ +#define SMB2_SET_INFO_IOV_SIZE 3 + +struct smb2_set_info_req { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 33 */ + __u8 InfoType; + __u8 FileInfoClass; + __le32 BufferLength; + __le16 BufferOffset; + __u16 Reserved; + __le32 AdditionalInformation; + __u64 PersistentFileId; + __u64 VolatileFileId; + __u8 Buffer[]; +} __packed; + +struct smb2_set_info_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 2 */ +} __packed; + +/* + * SMB2_NOTIFY See MS-SMB2 section 2.2.35 + */ +/* notify flags */ +#define SMB2_WATCH_TREE 0x0001 + +/* notify completion filter flags. See MS-FSCC 2.6 and MS-SMB2 2.2.35 */ +#define FILE_NOTIFY_CHANGE_FILE_NAME 0x00000001 +#define FILE_NOTIFY_CHANGE_DIR_NAME 0x00000002 +#define FILE_NOTIFY_CHANGE_ATTRIBUTES 0x00000004 +#define FILE_NOTIFY_CHANGE_SIZE 0x00000008 +#define FILE_NOTIFY_CHANGE_LAST_WRITE 0x00000010 +#define FILE_NOTIFY_CHANGE_LAST_ACCESS 0x00000020 +#define FILE_NOTIFY_CHANGE_CREATION 0x00000040 +#define FILE_NOTIFY_CHANGE_EA 0x00000080 +#define FILE_NOTIFY_CHANGE_SECURITY 0x00000100 +#define FILE_NOTIFY_CHANGE_STREAM_NAME 0x00000200 +#define FILE_NOTIFY_CHANGE_STREAM_SIZE 0x00000400 +#define FILE_NOTIFY_CHANGE_STREAM_WRITE 0x00000800 + +/* SMB2 Notify Action Flags */ +#define FILE_ACTION_ADDED 0x00000001 +#define FILE_ACTION_REMOVED 0x00000002 +#define FILE_ACTION_MODIFIED 0x00000003 +#define FILE_ACTION_RENAMED_OLD_NAME 0x00000004 +#define FILE_ACTION_RENAMED_NEW_NAME 0x00000005 +#define FILE_ACTION_ADDED_STREAM 0x00000006 +#define FILE_ACTION_REMOVED_STREAM 0x00000007 +#define FILE_ACTION_MODIFIED_STREAM 0x00000008 +#define FILE_ACTION_REMOVED_BY_DELETE 0x00000009 + +struct smb2_change_notify_req { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 Flags; + __le32 OutputBufferLength; + __u64 PersistentFileId; /* opaque endianness */ + __u64 VolatileFileId; /* opaque endianness */ + __le32 CompletionFilter; + __u32 Reserved; +} __packed; + +struct smb2_change_notify_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 9 */ + __le16 OutputBufferOffset; + __le32 OutputBufferLength; + __u8 Buffer[]; /* array of file notify structs */ +} __packed; + + +/* + * SMB2_CREATE See MS-SMB2 section 2.2.13 + */ +/* Oplock levels */ +#define SMB2_OPLOCK_LEVEL_NONE 0x00 +#define SMB2_OPLOCK_LEVEL_II 0x01 +#define SMB2_OPLOCK_LEVEL_EXCLUSIVE 0x08 +#define SMB2_OPLOCK_LEVEL_BATCH 0x09 +#define SMB2_OPLOCK_LEVEL_LEASE 0xFF +/* Non-spec internal type */ +#define SMB2_OPLOCK_LEVEL_NOCHANGE 0x99 + +/* Impersonation Levels. See MS-WPO section 9.7 and MSDN-IMPERS */ +#define IL_ANONYMOUS cpu_to_le32(0x00000000) +#define IL_IDENTIFICATION cpu_to_le32(0x00000001) +#define IL_IMPERSONATION cpu_to_le32(0x00000002) +#define IL_DELEGATE cpu_to_le32(0x00000003) + +/* File Attrubutes */ +#define FILE_ATTRIBUTE_READONLY 0x00000001 +#define FILE_ATTRIBUTE_HIDDEN 0x00000002 +#define FILE_ATTRIBUTE_SYSTEM 0x00000004 +#define FILE_ATTRIBUTE_DIRECTORY 0x00000010 +#define FILE_ATTRIBUTE_ARCHIVE 0x00000020 +#define FILE_ATTRIBUTE_NORMAL 0x00000080 +#define FILE_ATTRIBUTE_TEMPORARY 0x00000100 +#define FILE_ATTRIBUTE_SPARSE_FILE 0x00000200 +#define FILE_ATTRIBUTE_REPARSE_POINT 0x00000400 +#define FILE_ATTRIBUTE_COMPRESSED 0x00000800 +#define FILE_ATTRIBUTE_OFFLINE 0x00001000 +#define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED 0x00002000 +#define FILE_ATTRIBUTE_ENCRYPTED 0x00004000 +#define FILE_ATTRIBUTE_INTEGRITY_STREAM 0x00008000 +#define FILE_ATTRIBUTE_NO_SCRUB_DATA 0x00020000 +#define FILE_ATTRIBUTE__MASK 0x00007FB7 + +#define FILE_ATTRIBUTE_READONLY_LE cpu_to_le32(0x00000001) +#define FILE_ATTRIBUTE_HIDDEN_LE cpu_to_le32(0x00000002) +#define FILE_ATTRIBUTE_SYSTEM_LE cpu_to_le32(0x00000004) +#define FILE_ATTRIBUTE_DIRECTORY_LE cpu_to_le32(0x00000010) +#define FILE_ATTRIBUTE_ARCHIVE_LE cpu_to_le32(0x00000020) +#define FILE_ATTRIBUTE_NORMAL_LE cpu_to_le32(0x00000080) +#define FILE_ATTRIBUTE_TEMPORARY_LE cpu_to_le32(0x00000100) +#define FILE_ATTRIBUTE_SPARSE_FILE_LE cpu_to_le32(0x00000200) +#define FILE_ATTRIBUTE_REPARSE_POINT_LE cpu_to_le32(0x00000400) +#define FILE_ATTRIBUTE_COMPRESSED_LE cpu_to_le32(0x00000800) +#define FILE_ATTRIBUTE_OFFLINE_LE cpu_to_le32(0x00001000) +#define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED_LE cpu_to_le32(0x00002000) +#define FILE_ATTRIBUTE_ENCRYPTED_LE cpu_to_le32(0x00004000) +#define FILE_ATTRIBUTE_INTEGRITY_STREAM_LE cpu_to_le32(0x00008000) +#define FILE_ATTRIBUTE_NO_SCRUB_DATA_LE cpu_to_le32(0x00020000) +#define FILE_ATTRIBUTE_MASK_LE cpu_to_le32(0x00007FB7) + +/* Desired Access Flags */ +#define FILE_READ_DATA_LE cpu_to_le32(0x00000001) +#define FILE_LIST_DIRECTORY_LE cpu_to_le32(0x00000001) +#define FILE_WRITE_DATA_LE cpu_to_le32(0x00000002) +#define FILE_APPEND_DATA_LE cpu_to_le32(0x00000004) +#define FILE_ADD_SUBDIRECTORY_LE cpu_to_le32(0x00000004) +#define FILE_READ_EA_LE cpu_to_le32(0x00000008) +#define FILE_WRITE_EA_LE cpu_to_le32(0x00000010) +#define FILE_EXECUTE_LE cpu_to_le32(0x00000020) +#define FILE_DELETE_CHILD_LE cpu_to_le32(0x00000040) +#define FILE_READ_ATTRIBUTES_LE cpu_to_le32(0x00000080) +#define FILE_WRITE_ATTRIBUTES_LE cpu_to_le32(0x00000100) +#define FILE_DELETE_LE cpu_to_le32(0x00010000) +#define FILE_READ_CONTROL_LE cpu_to_le32(0x00020000) +#define FILE_WRITE_DAC_LE cpu_to_le32(0x00040000) +#define FILE_WRITE_OWNER_LE cpu_to_le32(0x00080000) +#define FILE_SYNCHRONIZE_LE cpu_to_le32(0x00100000) +#define FILE_ACCESS_SYSTEM_SECURITY_LE cpu_to_le32(0x01000000) +#define FILE_MAXIMAL_ACCESS_LE cpu_to_le32(0x02000000) +#define FILE_GENERIC_ALL_LE cpu_to_le32(0x10000000) +#define FILE_GENERIC_EXECUTE_LE cpu_to_le32(0x20000000) +#define FILE_GENERIC_WRITE_LE cpu_to_le32(0x40000000) +#define FILE_GENERIC_READ_LE cpu_to_le32(0x80000000) +#define DESIRED_ACCESS_MASK cpu_to_le32(0xF21F01FF) + + +#define FILE_READ_DESIRED_ACCESS_LE (FILE_READ_DATA_LE | \ + FILE_READ_EA_LE | \ + FILE_GENERIC_READ_LE) +#define FILE_WRITE_DESIRE_ACCESS_LE (FILE_WRITE_DATA_LE | \ + FILE_APPEND_DATA_LE | \ + FILE_WRITE_EA_LE | \ + FILE_WRITE_ATTRIBUTES_LE | \ + FILE_GENERIC_WRITE_LE) + +/* ShareAccess Flags */ +#define FILE_SHARE_READ_LE cpu_to_le32(0x00000001) +#define FILE_SHARE_WRITE_LE cpu_to_le32(0x00000002) +#define FILE_SHARE_DELETE_LE cpu_to_le32(0x00000004) +#define FILE_SHARE_ALL_LE cpu_to_le32(0x00000007) + +/* CreateDisposition Flags */ +#define FILE_SUPERSEDE_LE cpu_to_le32(0x00000000) +#define FILE_OPEN_LE cpu_to_le32(0x00000001) +#define FILE_CREATE_LE cpu_to_le32(0x00000002) +#define FILE_OPEN_IF_LE cpu_to_le32(0x00000003) +#define FILE_OVERWRITE_LE cpu_to_le32(0x00000004) +#define FILE_OVERWRITE_IF_LE cpu_to_le32(0x00000005) +#define FILE_CREATE_MASK_LE cpu_to_le32(0x00000007) + +#define FILE_READ_RIGHTS (FILE_READ_DATA | FILE_READ_EA \ + | FILE_READ_ATTRIBUTES) +#define FILE_WRITE_RIGHTS (FILE_WRITE_DATA | FILE_APPEND_DATA \ + | FILE_WRITE_EA | FILE_WRITE_ATTRIBUTES) +#define FILE_EXEC_RIGHTS (FILE_EXECUTE) + +/* CreateOptions Flags */ +#define FILE_DIRECTORY_FILE_LE cpu_to_le32(0x00000001) +/* same as #define CREATE_NOT_FILE_LE cpu_to_le32(0x00000001) */ +#define FILE_WRITE_THROUGH_LE cpu_to_le32(0x00000002) +#define FILE_SEQUENTIAL_ONLY_LE cpu_to_le32(0x00000004) +#define FILE_NO_INTERMEDIATE_BUFFERING_LE cpu_to_le32(0x00000008) +#define FILE_NON_DIRECTORY_FILE_LE cpu_to_le32(0x00000040) +#define FILE_COMPLETE_IF_OPLOCKED_LE cpu_to_le32(0x00000100) +#define FILE_NO_EA_KNOWLEDGE_LE cpu_to_le32(0x00000200) +#define FILE_RANDOM_ACCESS_LE cpu_to_le32(0x00000800) +#define FILE_DELETE_ON_CLOSE_LE cpu_to_le32(0x00001000) +#define FILE_OPEN_BY_FILE_ID_LE cpu_to_le32(0x00002000) +#define FILE_OPEN_FOR_BACKUP_INTENT_LE cpu_to_le32(0x00004000) +#define FILE_NO_COMPRESSION_LE cpu_to_le32(0x00008000) +#define FILE_OPEN_REPARSE_POINT_LE cpu_to_le32(0x00200000) +#define FILE_OPEN_NO_RECALL_LE cpu_to_le32(0x00400000) +#define CREATE_OPTIONS_MASK_LE cpu_to_le32(0x00FFFFFF) + +#define FILE_READ_RIGHTS_LE (FILE_READ_DATA_LE | FILE_READ_EA_LE \ + | FILE_READ_ATTRIBUTES_LE) +#define FILE_WRITE_RIGHTS_LE (FILE_WRITE_DATA_LE | FILE_APPEND_DATA_LE \ + | FILE_WRITE_EA_LE | FILE_WRITE_ATTRIBUTES_LE) +#define FILE_EXEC_RIGHTS_LE (FILE_EXECUTE_LE) + +/* Create Context Values */ +#define SMB2_CREATE_EA_BUFFER "ExtA" /* extended attributes */ +#define SMB2_CREATE_SD_BUFFER "SecD" /* security descriptor */ +#define SMB2_CREATE_DURABLE_HANDLE_REQUEST "DHnQ" +#define SMB2_CREATE_DURABLE_HANDLE_RECONNECT "DHnC" +#define SMB2_CREATE_ALLOCATION_SIZE "AISi" +#define SMB2_CREATE_QUERY_MAXIMAL_ACCESS_REQUEST "MxAc" +#define SMB2_CREATE_TIMEWARP_REQUEST "TWrp" +#define SMB2_CREATE_QUERY_ON_DISK_ID "QFid" +#define SMB2_CREATE_REQUEST_LEASE "RqLs" +#define SMB2_CREATE_DURABLE_HANDLE_REQUEST_V2 "DH2Q" +#define SMB2_CREATE_DURABLE_HANDLE_RECONNECT_V2 "DH2C" +#define SMB2_CREATE_TAG_POSIX "\x93\xAD\x25\x50\x9C\xB4\x11\xE7\xB4\x23\x83\xDE\x96\x8B\xCD\x7C" +#define SMB2_CREATE_APP_INSTANCE_ID "\x45\xBC\xA6\x6A\xEF\xA7\xF7\x4A\x90\x08\xFA\x46\x2E\x14\x4D\x74" +#define SMB2_CREATE_APP_INSTANCE_VERSION "\xB9\x82\xD0\xB7\x3B\x56\x07\x4F\xA0\x7B\x52\x4A\x81\x16\xA0\x10" +#define SVHDX_OPEN_DEVICE_CONTEXT "\x9C\xCB\xCF\x9E\x04\xC1\xE6\x43\x98\x0E\x15\x8D\xA1\xF6\xEC\x83" +#define SMB2_CREATE_TAG_AAPL "AAPL" + +/* Flag (SMB3 open response) values */ +#define SMB2_CREATE_FLAG_REPARSEPOINT 0x01 + +struct create_context { + __le32 Next; + __le16 NameOffset; + __le16 NameLength; + __le16 Reserved; + __le16 DataOffset; + __le32 DataLength; + __u8 Buffer[]; +} __packed; + +struct smb2_create_req { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 57 */ + __u8 SecurityFlags; + __u8 RequestedOplockLevel; + __le32 ImpersonationLevel; + __le64 SmbCreateFlags; + __le64 Reserved; + __le32 DesiredAccess; + __le32 FileAttributes; + __le32 ShareAccess; + __le32 CreateDisposition; + __le32 CreateOptions; + __le16 NameOffset; + __le16 NameLength; + __le32 CreateContextsOffset; + __le32 CreateContextsLength; + __u8 Buffer[]; +} __packed; + +struct smb2_create_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 89 */ + __u8 OplockLevel; + __u8 Flags; /* 0x01 if reparse point */ + __le32 CreateAction; + __le64 CreationTime; + __le64 LastAccessTime; + __le64 LastWriteTime; + __le64 ChangeTime; + __le64 AllocationSize; + __le64 EndofFile; + __le32 FileAttributes; + __le32 Reserved2; + __u64 PersistentFileId; + __u64 VolatileFileId; + __le32 CreateContextsOffset; + __le32 CreateContextsLength; + __u8 Buffer[]; +} __packed; + +struct create_posix { + struct create_context ccontext; + __u8 Name[16]; + __le32 Mode; + __u32 Reserved; +} __packed; + +/* See MS-SMB2 2.2.13.2.3 and MS-SMB2 2.2.13.2.4 */ +struct create_durable { + struct create_context ccontext; + __u8 Name[8]; + union { + __u8 Reserved[16]; + struct { + __u64 PersistentFileId; + __u64 VolatileFileId; + } Fid; + } Data; +} __packed; + +/* See MS-SMB2 2.2.13.2.5 */ +struct create_mxac_req { + struct create_context ccontext; + __u8 Name[8]; + __le64 Timestamp; +} __packed; + +/* See MS-SMB2 2.2.14.2.5 */ +struct create_mxac_rsp { + struct create_context ccontext; + __u8 Name[8]; + __le32 QueryStatus; + __le32 MaximalAccess; +} __packed; + +#define SMB2_LEASE_NONE_LE cpu_to_le32(0x00) +#define SMB2_LEASE_READ_CACHING_LE cpu_to_le32(0x01) +#define SMB2_LEASE_HANDLE_CACHING_LE cpu_to_le32(0x02) +#define SMB2_LEASE_WRITE_CACHING_LE cpu_to_le32(0x04) + +#define SMB2_LEASE_FLAG_BREAK_IN_PROGRESS_LE cpu_to_le32(0x02) + +#define SMB2_LEASE_KEY_SIZE 16 + +/* See MS-SMB2 2.2.13.2.8 */ +struct lease_context { + __u8 LeaseKey[SMB2_LEASE_KEY_SIZE]; + __le32 LeaseState; + __le32 LeaseFlags; + __le64 LeaseDuration; +} __packed; + +/* See MS-SMB2 2.2.13.2.10 */ +struct lease_context_v2 { + __u8 LeaseKey[SMB2_LEASE_KEY_SIZE]; + __le32 LeaseState; + __le32 LeaseFlags; + __le64 LeaseDuration; + __u8 ParentLeaseKey[SMB2_LEASE_KEY_SIZE]; + __le16 Epoch; + __le16 Reserved; +} __packed; + +struct create_lease { + struct create_context ccontext; + __u8 Name[8]; + struct lease_context lcontext; +} __packed; + +struct create_lease_v2 { + struct create_context ccontext; + __u8 Name[8]; + struct lease_context_v2 lcontext; + __u8 Pad[4]; +} __packed; + +/* See MS-SMB2 2.2.14.2.9 */ +struct create_disk_id_rsp { + struct create_context ccontext; + __u8 Name[8]; + __le64 DiskFileId; + __le64 VolumeId; + __u8 Reserved[16]; +} __packed; + +/* See MS-SMB2 2.2.13.2.13 */ +struct create_app_inst_id { + struct create_context ccontext; + __u8 Name[16]; + __le32 StructureSize; /* Must be 20 */ + __u16 Reserved; + __u8 AppInstanceId[16]; +} __packed; + +/* See MS-SMB2 2.2.13.2.15 */ +struct create_app_inst_id_vers { + struct create_context ccontext; + __u8 Name[16]; + __le32 StructureSize; /* Must be 24 */ + __u16 Reserved; + __u32 Padding; + __le64 AppInstanceVersionHigh; + __le64 AppInstanceVersionLow; +} __packed; + +/* See MS-SMB2 2.2.31 and 2.2.32 */ +struct smb2_ioctl_req { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 57 */ + __le16 Reserved; /* offset from start of SMB2 header to write data */ + __le32 CtlCode; + __u64 PersistentFileId; + __u64 VolatileFileId; + __le32 InputOffset; /* Reserved MBZ */ + __le32 InputCount; + __le32 MaxInputResponse; + __le32 OutputOffset; + __le32 OutputCount; + __le32 MaxOutputResponse; + __le32 Flags; + __le32 Reserved2; + __u8 Buffer[]; +} __packed; + +struct smb2_ioctl_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 49 */ + __le16 Reserved; + __le32 CtlCode; + __u64 PersistentFileId; + __u64 VolatileFileId; + __le32 InputOffset; /* Reserved MBZ */ + __le32 InputCount; + __le32 OutputOffset; + __le32 OutputCount; + __le32 Flags; + __le32 Reserved2; + __u8 Buffer[]; +} __packed; + +/* this goes in the ioctl buffer when doing FSCTL_SET_ZERO_DATA */ +struct file_zero_data_information { + __le64 FileOffset; + __le64 BeyondFinalZero; +} __packed; + +/* See MS-FSCC 2.3.7 */ +struct duplicate_extents_to_file { + __u64 PersistentFileHandle; /* source file handle, opaque endianness */ + __u64 VolatileFileHandle; + __le64 SourceFileOffset; + __le64 TargetFileOffset; + __le64 ByteCount; /* Bytes to be copied */ +} __packed; + +/* See MS-FSCC 2.3.8 */ +#define DUPLICATE_EXTENTS_DATA_EX_SOURCE_ATOMIC 0x00000001 +struct duplicate_extents_to_file_ex { + __u64 PersistentFileHandle; /* source file handle, opaque endianness */ + __u64 VolatileFileHandle; + __le64 SourceFileOffset; + __le64 TargetFileOffset; + __le64 ByteCount; /* Bytes to be copied */ + __le32 Flags; + __le32 Reserved; +} __packed; + + +/* See MS-FSCC 2.3.20 */ +struct fsctl_get_integrity_information_rsp { + __le16 ChecksumAlgorithm; + __le16 Reserved; + __le32 Flags; + __le32 ChecksumChunkSizeInBytes; + __le32 ClusterSizeInBytes; +} __packed; + +/* See MS-FSCC 2.3.55 */ +struct fsctl_query_file_regions_req { + __le64 FileOffset; + __le64 Length; + __le32 DesiredUsage; + __le32 Reserved; +} __packed; + +/* DesiredUsage flags see MS-FSCC 2.3.56.1 */ +#define FILE_USAGE_INVALID_RANGE 0x00000000 +#define FILE_USAGE_VALID_CACHED_DATA 0x00000001 +#define FILE_USAGE_NONCACHED_DATA 0x00000002 + +struct file_region_info { + __le64 FileOffset; + __le64 Length; + __le32 DesiredUsage; + __le32 Reserved; +} __packed; + +/* See MS-FSCC 2.3.56 */ +struct fsctl_query_file_region_rsp { + __le32 Flags; + __le32 TotalRegionEntryCount; + __le32 RegionEntryCount; + __u32 Reserved; + struct file_region_info Regions[]; +} __packed; + +/* See MS-FSCC 2.3.58 */ +struct fsctl_query_on_disk_vol_info_rsp { + __le64 DirectoryCount; + __le64 FileCount; + __le16 FsFormatMajVersion; + __le16 FsFormatMinVersion; + __u8 FsFormatName[24]; + __le64 FormatTime; + __le64 LastUpdateTime; + __u8 CopyrightInfo[68]; + __u8 AbstractInfo[68]; + __u8 FormatImplInfo[68]; + __u8 LastModifyImplInfo[68]; +} __packed; + +/* See MS-FSCC 2.3.73 */ +struct fsctl_set_integrity_information_req { + __le16 ChecksumAlgorithm; + __le16 Reserved; + __le32 Flags; +} __packed; + +/* See MS-FSCC 2.3.75 */ +struct fsctl_set_integrity_info_ex_req { + __u8 EnableIntegrity; + __u8 KeepState; + __u16 Reserved; + __le32 Flags; + __u8 Version; + __u8 Reserved2[7]; +} __packed; + +/* Integrity ChecksumAlgorithm choices for above */ +#define CHECKSUM_TYPE_NONE 0x0000 +#define CHECKSUM_TYPE_CRC64 0x0002 +#define CHECKSUM_TYPE_UNCHANGED 0xFFFF /* set only */ + +/* Integrity flags for above */ +#define FSCTL_INTEGRITY_FLAG_CHECKSUM_ENFORCEMENT_OFF 0x00000001 + +/* Reparse structures - see MS-FSCC 2.1.2 */ + +/* struct fsctl_reparse_info_req is empty, only response structs (see below) */ +struct reparse_data_buffer { + __le32 ReparseTag; + __le16 ReparseDataLength; + __u16 Reserved; + __u8 DataBuffer[]; /* Variable Length */ +} __packed; + +struct reparse_guid_data_buffer { + __le32 ReparseTag; + __le16 ReparseDataLength; + __u16 Reserved; + __u8 ReparseGuid[16]; + __u8 DataBuffer[]; /* Variable Length */ +} __packed; + +struct reparse_mount_point_data_buffer { + __le32 ReparseTag; + __le16 ReparseDataLength; + __u16 Reserved; + __le16 SubstituteNameOffset; + __le16 SubstituteNameLength; + __le16 PrintNameOffset; + __le16 PrintNameLength; + __u8 PathBuffer[]; /* Variable Length */ +} __packed; + +#define SYMLINK_FLAG_RELATIVE 0x00000001 + +struct reparse_symlink_data_buffer { + __le32 ReparseTag; + __le16 ReparseDataLength; + __u16 Reserved; + __le16 SubstituteNameOffset; + __le16 SubstituteNameLength; + __le16 PrintNameOffset; + __le16 PrintNameLength; + __le32 Flags; + __u8 PathBuffer[]; /* Variable Length */ +} __packed; + +/* See MS-FSCC 2.1.2.6 and cifspdu.h for struct reparse_posix_data */ + +struct validate_negotiate_info_req { + __le32 Capabilities; + __u8 Guid[SMB2_CLIENT_GUID_SIZE]; + __le16 SecurityMode; + __le16 DialectCount; + __le16 Dialects[4]; /* BB expand this if autonegotiate > 4 dialects */ +} __packed; + +struct validate_negotiate_info_rsp { + __le32 Capabilities; + __u8 Guid[SMB2_CLIENT_GUID_SIZE]; + __le16 SecurityMode; + __le16 Dialect; /* Dialect in use for the connection */ +} __packed; + + +/* Possible InfoType values */ +#define SMB2_O_INFO_FILE 0x01 +#define SMB2_O_INFO_FILESYSTEM 0x02 +#define SMB2_O_INFO_SECURITY 0x03 +#define SMB2_O_INFO_QUOTA 0x04 + +/* SMB2 Query Info see MS-SMB2 (2.2.37) or MS-DTYP */ + +/* List of QUERY INFO levels (those also valid for QUERY_DIR are noted below */ +#define FILE_DIRECTORY_INFORMATION 1 /* also for QUERY_DIR */ +#define FILE_FULL_DIRECTORY_INFORMATION 2 /* also for QUERY_DIR */ +#define FILE_BOTH_DIRECTORY_INFORMATION 3 /* also for QUERY_DIR */ +#define FILE_BASIC_INFORMATION 4 +#define FILE_STANDARD_INFORMATION 5 +#define FILE_INTERNAL_INFORMATION 6 +#define FILE_EA_INFORMATION 7 +#define FILE_ACCESS_INFORMATION 8 +#define FILE_NAME_INFORMATION 9 +#define FILE_RENAME_INFORMATION 10 +#define FILE_LINK_INFORMATION 11 +#define FILE_NAMES_INFORMATION 12 /* also for QUERY_DIR */ +#define FILE_DISPOSITION_INFORMATION 13 +#define FILE_POSITION_INFORMATION 14 +#define FILE_FULL_EA_INFORMATION 15 +#define FILE_MODE_INFORMATION 16 +#define FILE_ALIGNMENT_INFORMATION 17 +#define FILE_ALL_INFORMATION 18 +#define FILE_ALLOCATION_INFORMATION 19 +#define FILE_END_OF_FILE_INFORMATION 20 +#define FILE_ALTERNATE_NAME_INFORMATION 21 +#define FILE_STREAM_INFORMATION 22 +#define FILE_PIPE_INFORMATION 23 +#define FILE_PIPE_LOCAL_INFORMATION 24 +#define FILE_PIPE_REMOTE_INFORMATION 25 +#define FILE_MAILSLOT_QUERY_INFORMATION 26 +#define FILE_MAILSLOT_SET_INFORMATION 27 +#define FILE_COMPRESSION_INFORMATION 28 +#define FILE_OBJECT_ID_INFORMATION 29 +/* Number 30 not defined in documents */ +#define FILE_MOVE_CLUSTER_INFORMATION 31 +#define FILE_QUOTA_INFORMATION 32 +#define FILE_REPARSE_POINT_INFORMATION 33 +#define FILE_NETWORK_OPEN_INFORMATION 34 +#define FILE_ATTRIBUTE_TAG_INFORMATION 35 +#define FILE_TRACKING_INFORMATION 36 +#define FILEID_BOTH_DIRECTORY_INFORMATION 37 /* also for QUERY_DIR */ +#define FILEID_FULL_DIRECTORY_INFORMATION 38 /* also for QUERY_DIR */ +#define FILE_VALID_DATA_LENGTH_INFORMATION 39 +#define FILE_SHORT_NAME_INFORMATION 40 +#define FILE_SFIO_RESERVE_INFORMATION 44 +#define FILE_SFIO_VOLUME_INFORMATION 45 +#define FILE_HARD_LINK_INFORMATION 46 +#define FILE_NORMALIZED_NAME_INFORMATION 48 +#define FILEID_GLOBAL_TX_DIRECTORY_INFORMATION 50 +#define FILE_STANDARD_LINK_INFORMATION 54 +#define FILE_ID_INFORMATION 59 +#define FILE_ID_EXTD_DIRECTORY_INFORMATION 60 /* also for QUERY_DIR */ +/* Used for Query Info and Find File POSIX Info for SMB3.1.1 and SMB1 */ +#define SMB_FIND_FILE_POSIX_INFO 0x064 + +/* Security info type additionalinfo flags. */ +#define OWNER_SECINFO 0x00000001 +#define GROUP_SECINFO 0x00000002 +#define DACL_SECINFO 0x00000004 +#define SACL_SECINFO 0x00000008 +#define LABEL_SECINFO 0x00000010 +#define ATTRIBUTE_SECINFO 0x00000020 +#define SCOPE_SECINFO 0x00000040 +#define BACKUP_SECINFO 0x00010000 +#define UNPROTECTED_SACL_SECINFO 0x10000000 +#define UNPROTECTED_DACL_SECINFO 0x20000000 +#define PROTECTED_SACL_SECINFO 0x40000000 +#define PROTECTED_DACL_SECINFO 0x80000000 + +/* Flags used for FileFullEAinfo */ +#define SL_RESTART_SCAN 0x00000001 +#define SL_RETURN_SINGLE_ENTRY 0x00000002 +#define SL_INDEX_SPECIFIED 0x00000004 + +struct smb2_query_info_req { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 41 */ + __u8 InfoType; + __u8 FileInfoClass; + __le32 OutputBufferLength; + __le16 InputBufferOffset; + __u16 Reserved; + __le32 InputBufferLength; + __le32 AdditionalInformation; + __le32 Flags; + __u64 PersistentFileId; + __u64 VolatileFileId; + __u8 Buffer[]; +} __packed; + +struct smb2_query_info_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 9 */ + __le16 OutputBufferOffset; + __le32 OutputBufferLength; + __u8 Buffer[]; +} __packed; + +/* + * PDU query infolevel structure definitions + */ + +/* See MS-FSCC 2.3.52 */ +struct file_allocated_range_buffer { + __le64 file_offset; + __le64 length; +} __packed; + +struct smb2_file_internal_info { + __le64 IndexNumber; +} __packed; /* level 6 Query */ + +struct smb2_file_rename_info { /* encoding of request for level 10 */ + __u8 ReplaceIfExists; /* 1 = replace existing target with new */ + /* 0 = fail if target already exists */ + __u8 Reserved[7]; + __u64 RootDirectory; /* MBZ for network operations (why says spec?) */ + __le32 FileNameLength; + char FileName[]; /* New name to be assigned */ + /* padding - overall struct size must be >= 24 so filename + pad >= 6 */ +} __packed; /* level 10 Set */ + +struct smb2_file_link_info { /* encoding of request for level 11 */ + __u8 ReplaceIfExists; /* 1 = replace existing link with new */ + /* 0 = fail if link already exists */ + __u8 Reserved[7]; + __u64 RootDirectory; /* MBZ for network operations (why says spec?) */ + __le32 FileNameLength; + char FileName[]; /* Name to be assigned to new link */ +} __packed; /* level 11 Set */ + +/* + * This level 18, although with struct with same name is different from cifs + * level 0x107. Level 0x107 has an extra u64 between AccessFlags and + * CurrentByteOffset. + */ +struct smb2_file_all_info { /* data block encoding of response to level 18 */ + __le64 CreationTime; /* Beginning of FILE_BASIC_INFO equivalent */ + __le64 LastAccessTime; + __le64 LastWriteTime; + __le64 ChangeTime; + __le32 Attributes; + __u32 Pad1; /* End of FILE_BASIC_INFO_INFO equivalent */ + __le64 AllocationSize; /* Beginning of FILE_STANDARD_INFO equivalent */ + __le64 EndOfFile; /* size ie offset to first free byte in file */ + __le32 NumberOfLinks; /* hard links */ + __u8 DeletePending; + __u8 Directory; + __u16 Pad2; /* End of FILE_STANDARD_INFO equivalent */ + __le64 IndexNumber; + __le32 EASize; + __le32 AccessFlags; + __le64 CurrentByteOffset; + __le32 Mode; + __le32 AlignmentRequirement; + __le32 FileNameLength; + union { + char __pad; /* Legacy structure padding */ + DECLARE_FLEX_ARRAY(char, FileName); + }; +} __packed; /* level 18 Query */ + +struct smb2_file_eof_info { /* encoding of request for level 10 */ + __le64 EndOfFile; /* new end of file value */ +} __packed; /* level 20 Set */ + +/* Level 100 query info */ +struct smb311_posix_qinfo { + __le64 CreationTime; + __le64 LastAccessTime; + __le64 LastWriteTime; + __le64 ChangeTime; + __le64 EndOfFile; + __le64 AllocationSize; + __le32 DosAttributes; + __le64 Inode; + __le32 DeviceId; + __le32 Zero; + /* beginning of POSIX Create Context Response */ + __le32 HardLinks; + __le32 ReparseTag; + __le32 Mode; + u8 Sids[]; + /* + * var sized owner SID + * var sized group SID + * le32 filenamelength + * u8 filename[] + */ +} __packed; + +/* File System Information Classes */ +#define FS_VOLUME_INFORMATION 1 /* Query */ +#define FS_LABEL_INFORMATION 2 /* Set */ +#define FS_SIZE_INFORMATION 3 /* Query */ +#define FS_DEVICE_INFORMATION 4 /* Query */ +#define FS_ATTRIBUTE_INFORMATION 5 /* Query */ +#define FS_CONTROL_INFORMATION 6 /* Query, Set */ +#define FS_FULL_SIZE_INFORMATION 7 /* Query */ +#define FS_OBJECT_ID_INFORMATION 8 /* Query, Set */ +#define FS_DRIVER_PATH_INFORMATION 9 /* Query */ +#define FS_SECTOR_SIZE_INFORMATION 11 /* SMB3 or later. Query */ +#define FS_POSIX_INFORMATION 100 /* SMB3.1.1 POSIX. Query */ + +struct smb2_fs_full_size_info { + __le64 TotalAllocationUnits; + __le64 CallerAvailableAllocationUnits; + __le64 ActualAvailableAllocationUnits; + __le32 SectorsPerAllocationUnit; + __le32 BytesPerSector; +} __packed; + +#define SSINFO_FLAGS_ALIGNED_DEVICE 0x00000001 +#define SSINFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE 0x00000002 +#define SSINFO_FLAGS_NO_SEEK_PENALTY 0x00000004 +#define SSINFO_FLAGS_TRIM_ENABLED 0x00000008 + +/* sector size info struct */ +struct smb3_fs_ss_info { + __le32 LogicalBytesPerSector; + __le32 PhysicalBytesPerSectorForAtomicity; + __le32 PhysicalBytesPerSectorForPerf; + __le32 FSEffPhysicalBytesPerSectorForAtomicity; + __le32 Flags; + __le32 ByteOffsetForSectorAlignment; + __le32 ByteOffsetForPartitionAlignment; +} __packed; + +/* File System Control Information */ +struct smb2_fs_control_info { + __le64 FreeSpaceStartFiltering; + __le64 FreeSpaceThreshold; + __le64 FreeSpaceStopFiltering; + __le64 DefaultQuotaThreshold; + __le64 DefaultQuotaLimit; + __le32 FileSystemControlFlags; + __le32 Padding; +} __packed; + +/* volume info struct - see MS-FSCC 2.5.9 */ +#define MAX_VOL_LABEL_LEN 32 +struct smb3_fs_vol_info { + __le64 VolumeCreationTime; + __u32 VolumeSerialNumber; + __le32 VolumeLabelLength; /* includes trailing null */ + __u8 SupportsObjects; /* True if eg like NTFS, supports objects */ + __u8 Reserved; + __u8 VolumeLabel[]; /* variable len */ +} __packed; + +/* See MS-SMB2 2.2.23 through 2.2.25 */ +struct smb2_oplock_break { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 24 */ + __u8 OplockLevel; + __u8 Reserved; + __le32 Reserved2; + __u64 PersistentFid; + __u64 VolatileFid; +} __packed; + +#define SMB2_NOTIFY_BREAK_LEASE_FLAG_ACK_REQUIRED cpu_to_le32(0x01) + +struct smb2_lease_break { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 44 */ + __le16 Epoch; + __le32 Flags; + __u8 LeaseKey[16]; + __le32 CurrentLeaseState; + __le32 NewLeaseState; + __le32 BreakReason; + __le32 AccessMaskHint; + __le32 ShareMaskHint; +} __packed; + +struct smb2_lease_ack { + struct smb2_hdr hdr; + __le16 StructureSize; /* Must be 36 */ + __le16 Reserved; + __le32 Flags; + __u8 LeaseKey[16]; + __le32 LeaseState; + __le64 LeaseDuration; +} __packed; + +#define OP_BREAK_STRUCT_SIZE_20 24 +#define OP_BREAK_STRUCT_SIZE_21 36 +#endif /* _COMMON_SMB2PDU_H */ diff --git a/fs/smbfs_common/smbfsctl.h b/fs/smbfs_common/smbfsctl.h index 926f87cd6af02..edd7fc2a7921b 100644 --- a/fs/smbfs_common/smbfsctl.h +++ b/fs/smbfs_common/smbfsctl.h @@ -88,19 +88,27 @@ #define FSCTL_READ_RAW_ENCRYPTED 0x000900E3 /* BB add struct */ #define FSCTL_READ_FILE_USN_DATA 0x000900EB /* BB add struct */ #define FSCTL_WRITE_USN_CLOSE_RECORD 0x000900EF /* BB add struct */ +#define FSCTL_MARK_HANDLE 0x000900FC /* BB add struct */ #define FSCTL_SIS_COPYFILE 0x00090100 /* BB add struct */ #define FSCTL_RECALL_FILE 0x00090117 /* BB add struct */ #define FSCTL_QUERY_SPARING_INFO 0x00090138 /* BB add struct */ +#define FSCTL_QUERY_ON_DISK_VOLUME_INFO 0x0009013C #define FSCTL_SET_ZERO_ON_DEALLOC 0x00090194 /* BB add struct */ #define FSCTL_SET_SHORT_NAME_BEHAVIOR 0x000901B4 /* BB add struct */ #define FSCTL_GET_INTEGRITY_INFORMATION 0x0009027C +#define FSCTL_QUERY_FILE_REGIONS 0x00090284 #define FSCTL_GET_REFS_VOLUME_DATA 0x000902D8 /* See MS-FSCC 2.3.24 */ +#define FSCTL_SET_INTEGRITY_INFORMATION_EXT 0x00090380 #define FSCTL_GET_RETRIEVAL_POINTERS_AND_REFCOUNT 0x000903d3 #define FSCTL_GET_RETRIEVAL_POINTER_COUNT 0x0009042b +#define FSCTL_REFS_STREAM_SNAPSHOT_MANAGEMENT 0x00090440 #define FSCTL_QUERY_ALLOCATED_RANGES 0x000940CF +#define FSCTL_OFFLOAD_READ 0x00094264 /* BB add struct */ +#define FSCTL_OFFLOAD_WRITE 0x00098268 /* BB add struct */ #define FSCTL_SET_DEFECT_MANAGEMENT 0x00098134 /* BB add struct */ #define FSCTL_FILE_LEVEL_TRIM 0x00098208 /* BB add struct */ #define FSCTL_DUPLICATE_EXTENTS_TO_FILE 0x00098344 +#define FSCTL_DUPLICATE_EXTENTS_TO_FILE_EX 0x000983E8 #define FSCTL_SIS_LINK_FILES 0x0009C104 #define FSCTL_SET_INTEGRITY_INFORMATION 0x0009C280 #define FSCTL_PIPE_PEEK 0x0011400C /* BB add struct */ diff --git a/fs/tracefs/inode.c b/fs/tracefs/inode.c index 066e8344934de..7c1aa4a60dc68 100644 --- a/fs/tracefs/inode.c +++ b/fs/tracefs/inode.c @@ -556,6 +556,9 @@ static struct dentry *__create_dir(const char *name, struct dentry *parent, */ struct dentry *tracefs_create_dir(const char *name, struct dentry *parent) { + if (security_locked_down(LOCKDOWN_TRACEFS)) + return NULL; + return __create_dir(name, parent, &simple_dir_inode_operations); } diff --git a/fs/udf/balloc.c b/fs/udf/balloc.c index 8e597db4d9710..f416b7fe092fc 100644 --- a/fs/udf/balloc.c +++ b/fs/udf/balloc.c @@ -36,18 +36,41 @@ static int read_block_bitmap(struct super_block *sb, unsigned long bitmap_nr) { struct buffer_head *bh = NULL; - int retval = 0; + int i; + int max_bits, off, count; struct kernel_lb_addr loc; loc.logicalBlockNum = bitmap->s_extPosition; loc.partitionReferenceNum = UDF_SB(sb)->s_partition; bh = udf_tread(sb, udf_get_lb_pblock(sb, &loc, block)); + bitmap->s_block_bitmap[bitmap_nr] = bh; if (!bh) - retval = -EIO; + return -EIO; - bitmap->s_block_bitmap[bitmap_nr] = bh; - return retval; + /* Check consistency of Space Bitmap buffer. */ + max_bits = sb->s_blocksize * 8; + if (!bitmap_nr) { + off = sizeof(struct spaceBitmapDesc) << 3; + count = min(max_bits - off, bitmap->s_nr_groups); + } else { + /* + * Rough check if bitmap number is too big to have any bitmap + * blocks reserved. + */ + if (bitmap_nr > + (bitmap->s_nr_groups >> (sb->s_blocksize_bits + 3)) + 2) + return 0; + off = 0; + count = bitmap->s_nr_groups - bitmap_nr * max_bits + + (sizeof(struct spaceBitmapDesc) << 3); + count = min(count, max_bits); + } + + for (i = 0; i < count; i++) + if (udf_test_bit(i + off, bh->b_data)) + return -EFSCORRUPTED; + return 0; } static int __load_block_bitmap(struct super_block *sb, diff --git a/fs/udf/inode.c b/fs/udf/inode.c index 594d224588819..da6fb28b4eeac 100644 --- a/fs/udf/inode.c +++ b/fs/udf/inode.c @@ -57,15 +57,15 @@ static int udf_update_inode(struct inode *, int); static int udf_sync_inode(struct inode *inode); static int udf_alloc_i_data(struct inode *inode, size_t size); static sector_t inode_getblk(struct inode *, sector_t, int *, int *); -static int8_t udf_insert_aext(struct inode *, struct extent_position, - struct kernel_lb_addr, uint32_t); +static int udf_insert_aext(struct inode *, struct extent_position, + struct kernel_lb_addr, uint32_t); static void udf_split_extents(struct inode *, int *, int, udf_pblk_t, struct kernel_long_ad *, int *); static void udf_prealloc_extents(struct inode *, int, int, struct kernel_long_ad *, int *); static void udf_merge_extents(struct inode *, struct kernel_long_ad *, int *); -static void udf_update_extents(struct inode *, struct kernel_long_ad *, int, - int, struct extent_position *); +static int udf_update_extents(struct inode *, struct kernel_long_ad *, int, + int, struct extent_position *); static int udf_get_block(struct inode *, sector_t, struct buffer_head *, int); static void __udf_clear_extent_cache(struct inode *inode) @@ -695,7 +695,7 @@ static sector_t inode_getblk(struct inode *inode, sector_t block, struct kernel_lb_addr eloc, tmpeloc; int c = 1; loff_t lbcount = 0, b_off = 0; - udf_pblk_t newblocknum, newblock; + udf_pblk_t newblocknum, newblock = 0; sector_t offset = 0; int8_t etype; struct udf_inode_info *iinfo = UDF_I(inode); @@ -798,7 +798,6 @@ static sector_t inode_getblk(struct inode *inode, sector_t block, ret = udf_do_extend_file(inode, &prev_epos, laarr, hole_len); if (ret < 0) { *err = ret; - newblock = 0; goto out_free; } c = 0; @@ -861,7 +860,6 @@ static sector_t inode_getblk(struct inode *inode, sector_t block, goal, err); if (!newblocknum) { *err = -ENOSPC; - newblock = 0; goto out_free; } if (isBeyondEOF) @@ -887,7 +885,9 @@ static sector_t inode_getblk(struct inode *inode, sector_t block, /* write back the new extents, inserting new extents if the new number * of extents is greater than the old number, and deleting extents if * the new number of extents is less than the old number */ - udf_update_extents(inode, laarr, startnum, endnum, &prev_epos); + *err = udf_update_extents(inode, laarr, startnum, endnum, &prev_epos); + if (*err < 0) + goto out_free; newblock = udf_get_pblock(inode->i_sb, newblocknum, iinfo->i_location.partitionReferenceNum, 0); @@ -1155,21 +1155,30 @@ static void udf_merge_extents(struct inode *inode, struct kernel_long_ad *laarr, } } -static void udf_update_extents(struct inode *inode, struct kernel_long_ad *laarr, - int startnum, int endnum, - struct extent_position *epos) +static int udf_update_extents(struct inode *inode, struct kernel_long_ad *laarr, + int startnum, int endnum, + struct extent_position *epos) { int start = 0, i; struct kernel_lb_addr tmploc; uint32_t tmplen; + int err; if (startnum > endnum) { for (i = 0; i < (startnum - endnum); i++) udf_delete_aext(inode, *epos); } else if (startnum < endnum) { for (i = 0; i < (endnum - startnum); i++) { - udf_insert_aext(inode, *epos, laarr[i].extLocation, - laarr[i].extLength); + err = udf_insert_aext(inode, *epos, + laarr[i].extLocation, + laarr[i].extLength); + /* + * If we fail here, we are likely corrupting the extent + * list and leaking blocks. At least stop early to + * limit the damage. + */ + if (err < 0) + return err; udf_next_aext(inode, epos, &laarr[i].extLocation, &laarr[i].extLength, 1); start++; @@ -1181,6 +1190,7 @@ static void udf_update_extents(struct inode *inode, struct kernel_long_ad *laarr udf_write_aext(inode, epos, &laarr[i].extLocation, laarr[i].extLength, 1); } + return 0; } struct buffer_head *udf_bread(struct inode *inode, udf_pblk_t block, @@ -2215,12 +2225,13 @@ int8_t udf_current_aext(struct inode *inode, struct extent_position *epos, return etype; } -static int8_t udf_insert_aext(struct inode *inode, struct extent_position epos, - struct kernel_lb_addr neloc, uint32_t nelen) +static int udf_insert_aext(struct inode *inode, struct extent_position epos, + struct kernel_lb_addr neloc, uint32_t nelen) { struct kernel_lb_addr oeloc; uint32_t oelen; int8_t etype; + int err; if (epos.bh) get_bh(epos.bh); @@ -2230,10 +2241,10 @@ static int8_t udf_insert_aext(struct inode *inode, struct extent_position epos, neloc = oeloc; nelen = (etype << 30) | oelen; } - udf_add_aext(inode, &epos, &neloc, nelen, 1); + err = udf_add_aext(inode, &epos, &neloc, nelen, 1); brelse(epos.bh); - return (nelen >> 30); + return err; } int8_t udf_delete_aext(struct inode *inode, struct extent_position epos) diff --git a/fs/verity/signature.c b/fs/verity/signature.c index 143a530a80088..b59de03055e1e 100644 --- a/fs/verity/signature.c +++ b/fs/verity/signature.c @@ -54,6 +54,22 @@ int fsverity_verify_signature(const struct fsverity_info *vi, return 0; } + if (fsverity_keyring->keys.nr_leaves_on_tree == 0) { + /* + * The ".fs-verity" keyring is empty, due to builtin signatures + * being supported by the kernel but not actually being used. + * In this case, verify_pkcs7_signature() would always return an + * error, usually ENOKEY. It could also be EBADMSG if the + * PKCS#7 is malformed, but that isn't very important to + * distinguish. So, just skip to ENOKEY to avoid the attack + * surface of the PKCS#7 parser, which would otherwise be + * reachable by any task able to execute FS_IOC_ENABLE_VERITY. + */ + fsverity_err(inode, + "fs-verity keyring is empty, rejecting signed file!"); + return -ENOKEY; + } + d = kzalloc(sizeof(*d) + hash_alg->digest_size, GFP_KERNEL); if (!d) return -ENOMEM; diff --git a/fs/xfs/libxfs/xfs_dir2_leaf.c b/fs/xfs/libxfs/xfs_dir2_leaf.c index d9b66306a9a77..cb9e950a911d8 100644 --- a/fs/xfs/libxfs/xfs_dir2_leaf.c +++ b/fs/xfs/libxfs/xfs_dir2_leaf.c @@ -146,6 +146,8 @@ xfs_dir3_leaf_check_int( xfs_dir2_leaf_tail_t *ltp; int stale; int i; + bool isleaf1 = (hdr->magic == XFS_DIR2_LEAF1_MAGIC || + hdr->magic == XFS_DIR3_LEAF1_MAGIC); ltp = xfs_dir2_leaf_tail_p(geo, leaf); @@ -158,8 +160,7 @@ xfs_dir3_leaf_check_int( return __this_address; /* Leaves and bests don't overlap in leaf format. */ - if ((hdr->magic == XFS_DIR2_LEAF1_MAGIC || - hdr->magic == XFS_DIR3_LEAF1_MAGIC) && + if (isleaf1 && (char *)&hdr->ents[hdr->count] > (char *)xfs_dir2_leaf_bests_p(ltp)) return __this_address; @@ -175,6 +176,10 @@ xfs_dir3_leaf_check_int( } if (hdr->ents[i].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) stale++; + if (isleaf1 && xfs_dir2_dataptr_to_db(geo, + be32_to_cpu(hdr->ents[i].address)) >= + be32_to_cpu(ltp->bestcount)) + return __this_address; } if (hdr->stale != stale) return __this_address; diff --git a/fs/xfs/libxfs/xfs_inode_fork.c b/fs/xfs/libxfs/xfs_inode_fork.c index 20095233d7bc0..c1f965af8432d 100644 --- a/fs/xfs/libxfs/xfs_inode_fork.c +++ b/fs/xfs/libxfs/xfs_inode_fork.c @@ -330,6 +330,7 @@ xfs_iformat_attr_fork( } if (error) { + xfs_idestroy_fork(ip->i_afp); kmem_cache_free(xfs_ifork_zone, ip->i_afp); ip->i_afp = NULL; } diff --git a/fs/xfs/libxfs/xfs_log_recover.h b/fs/xfs/libxfs/xfs_log_recover.h index ff69a00008176..81a065b0b5710 100644 --- a/fs/xfs/libxfs/xfs_log_recover.h +++ b/fs/xfs/libxfs/xfs_log_recover.h @@ -108,12 +108,6 @@ struct xlog_recover { #define ITEM_TYPE(i) (*(unsigned short *)(i)->ri_buf[0].i_addr) -/* - * This is the number of entries in the l_buf_cancel_table used during - * recovery. - */ -#define XLOG_BC_TABLE_SIZE 64 - #define XLOG_RECOVER_CRCPASS 0 #define XLOG_RECOVER_PASS1 1 #define XLOG_RECOVER_PASS2 2 @@ -126,5 +120,13 @@ int xlog_recover_iget(struct xfs_mount *mp, xfs_ino_t ino, struct xfs_inode **ipp); void xlog_recover_release_intent(struct xlog *log, unsigned short intent_type, uint64_t intent_id); +int xlog_alloc_buf_cancel_table(struct xlog *log); +void xlog_free_buf_cancel_table(struct xlog *log); + +#ifdef DEBUG +void xlog_check_buf_cancel_table(struct xlog *log); +#else +#define xlog_check_buf_cancel_table(log) do { } while (0) +#endif #endif /* __XFS_LOG_RECOVER_H__ */ diff --git a/fs/xfs/libxfs/xfs_trans_resv.c b/fs/xfs/libxfs/xfs_trans_resv.c index 5e300daa25593..2db9d9d123444 100644 --- a/fs/xfs/libxfs/xfs_trans_resv.c +++ b/fs/xfs/libxfs/xfs_trans_resv.c @@ -423,7 +423,7 @@ xfs_calc_remove_reservation( { return XFS_DQUOT_LOGRES(mp) + xfs_calc_iunlink_add_reservation(mp) + - max((xfs_calc_inode_res(mp, 1) + + max((xfs_calc_inode_res(mp, 2) + xfs_calc_buf_res(XFS_DIROP_LOG_COUNT(mp), XFS_FSB_TO_B(mp, 1))), (xfs_calc_buf_res(4, mp->m_sb.sb_sectsize) + diff --git a/fs/xfs/scrub/common.c b/fs/xfs/scrub/common.c index bf1f3607d0b60..08df23edea720 100644 --- a/fs/xfs/scrub/common.c +++ b/fs/xfs/scrub/common.c @@ -864,28 +864,3 @@ xchk_ilock_inverted( return -EDEADLOCK; } -/* Pause background reaping of resources. */ -void -xchk_stop_reaping( - struct xfs_scrub *sc) -{ - sc->flags |= XCHK_REAPING_DISABLED; - xfs_blockgc_stop(sc->mp); - xfs_inodegc_stop(sc->mp); -} - -/* Restart background reaping of resources. */ -void -xchk_start_reaping( - struct xfs_scrub *sc) -{ - /* - * Readonly filesystems do not perform inactivation or speculative - * preallocation, so there's no need to restart the workers. - */ - if (!xfs_is_readonly(sc->mp)) { - xfs_inodegc_start(sc->mp); - xfs_blockgc_start(sc->mp); - } - sc->flags &= ~XCHK_REAPING_DISABLED; -} diff --git a/fs/xfs/scrub/common.h b/fs/xfs/scrub/common.h index 454145db10e71..2ca80102e704a 100644 --- a/fs/xfs/scrub/common.h +++ b/fs/xfs/scrub/common.h @@ -148,7 +148,5 @@ static inline bool xchk_skip_xref(struct xfs_scrub_metadata *sm) int xchk_metadata_inode_forks(struct xfs_scrub *sc); int xchk_ilock_inverted(struct xfs_inode *ip, uint lock_mode); -void xchk_stop_reaping(struct xfs_scrub *sc); -void xchk_start_reaping(struct xfs_scrub *sc); #endif /* __XFS_SCRUB_COMMON_H__ */ diff --git a/fs/xfs/scrub/fscounters.c b/fs/xfs/scrub/fscounters.c index 48a6cbdf95d08..037541339d80a 100644 --- a/fs/xfs/scrub/fscounters.c +++ b/fs/xfs/scrub/fscounters.c @@ -128,13 +128,6 @@ xchk_setup_fscounters( if (error) return error; - /* - * Pause background reclaim while we're scrubbing to reduce the - * likelihood of background perturbations to the counters throwing off - * our calculations. - */ - xchk_stop_reaping(sc); - return xchk_trans_alloc(sc, 0); } @@ -353,6 +346,12 @@ xchk_fscounters( if (fdblocks > mp->m_sb.sb_dblocks) xchk_set_corrupt(sc); + /* + * XXX: We can't quiesce percpu counter updates, so exit early. + * This can be re-enabled when we gain exclusive freeze functionality. + */ + return 0; + /* * If ifree exceeds icount by more than the minimum variance then * something's probably wrong with the counters. diff --git a/fs/xfs/scrub/scrub.c b/fs/xfs/scrub/scrub.c index 51e4c61916d20..e4d2a41983f73 100644 --- a/fs/xfs/scrub/scrub.c +++ b/fs/xfs/scrub/scrub.c @@ -171,8 +171,6 @@ xchk_teardown( } if (sc->sm->sm_flags & XFS_SCRUB_IFLAG_REPAIR) mnt_drop_write_file(sc->file); - if (sc->flags & XCHK_REAPING_DISABLED) - xchk_start_reaping(sc); if (sc->flags & XCHK_HAS_QUOTAOFFLOCK) { mutex_unlock(&sc->mp->m_quotainfo->qi_quotaofflock); sc->flags &= ~XCHK_HAS_QUOTAOFFLOCK; diff --git a/fs/xfs/scrub/scrub.h b/fs/xfs/scrub/scrub.h index 80e5026bba44a..e8d9fe9de26ed 100644 --- a/fs/xfs/scrub/scrub.h +++ b/fs/xfs/scrub/scrub.h @@ -89,7 +89,6 @@ struct xfs_scrub { /* XCHK state flags grow up from zero, XREP state flags grown down from 2^31 */ #define XCHK_TRY_HARDER (1 << 0) /* can't get resources, try again */ #define XCHK_HAS_QUOTAOFFLOCK (1 << 1) /* we hold the quotaoff lock */ -#define XCHK_REAPING_DISABLED (1 << 2) /* background block reaping paused */ #define XREP_ALREADY_FIXED (1 << 31) /* checking our repair work */ /* Metadata scrubbers */ diff --git a/fs/xfs/xfs_attr_inactive.c b/fs/xfs/xfs_attr_inactive.c index 2b5da6218977c..2afa6d9a7f8f6 100644 --- a/fs/xfs/xfs_attr_inactive.c +++ b/fs/xfs/xfs_attr_inactive.c @@ -158,6 +158,7 @@ xfs_attr3_node_inactive( } child_fsb = be32_to_cpu(ichdr.btree[0].before); xfs_trans_brelse(*trans, bp); /* no locks for later trans */ + bp = NULL; /* * If this is the node level just above the leaves, simply loop @@ -211,12 +212,8 @@ xfs_attr3_node_inactive( &child_bp); if (error) return error; - error = bp->b_error; - if (error) { - xfs_trans_brelse(*trans, child_bp); - return error; - } xfs_trans_binval(*trans, child_bp); + child_bp = NULL; /* * If we're not done, re-read the parent to get the next @@ -233,6 +230,7 @@ xfs_attr3_node_inactive( bp->b_addr); child_fsb = be32_to_cpu(phdr.btree[i + 1].before); xfs_trans_brelse(*trans, bp); + bp = NULL; } /* * Atomically commit the whole invalidate stuff. diff --git a/fs/xfs/xfs_buf_item_recover.c b/fs/xfs/xfs_buf_item_recover.c index e04e44ef14c6d..31cbe7deebfaf 100644 --- a/fs/xfs/xfs_buf_item_recover.c +++ b/fs/xfs/xfs_buf_item_recover.c @@ -23,6 +23,15 @@ #include "xfs_dir2.h" #include "xfs_quota.h" +/* + * This is the number of entries in the l_buf_cancel_table used during + * recovery. + */ +#define XLOG_BC_TABLE_SIZE 64 + +#define XLOG_BUF_CANCEL_BUCKET(log, blkno) \ + ((log)->l_buf_cancel_table + ((uint64_t)blkno % XLOG_BC_TABLE_SIZE)) + /* * This structure is used during recovery to record the buf log items which * have been canceled and should not be replayed. @@ -1003,3 +1012,60 @@ const struct xlog_recover_item_ops xlog_buf_item_ops = { .commit_pass1 = xlog_recover_buf_commit_pass1, .commit_pass2 = xlog_recover_buf_commit_pass2, }; + +#ifdef DEBUG +void +xlog_check_buf_cancel_table( + struct xlog *log) +{ + int i; + + for (i = 0; i < XLOG_BC_TABLE_SIZE; i++) + ASSERT(list_empty(&log->l_buf_cancel_table[i])); +} +#endif + +int +xlog_alloc_buf_cancel_table( + struct xlog *log) +{ + void *p; + int i; + + ASSERT(log->l_buf_cancel_table == NULL); + + p = kmalloc_array(XLOG_BC_TABLE_SIZE, sizeof(struct list_head), + GFP_KERNEL); + if (!p) + return -ENOMEM; + + log->l_buf_cancel_table = p; + for (i = 0; i < XLOG_BC_TABLE_SIZE; i++) + INIT_LIST_HEAD(&log->l_buf_cancel_table[i]); + + return 0; +} + +void +xlog_free_buf_cancel_table( + struct xlog *log) +{ + int i; + + if (!log->l_buf_cancel_table) + return; + + for (i = 0; i < XLOG_BC_TABLE_SIZE; i++) { + struct xfs_buf_cancel *bc; + + while ((bc = list_first_entry_or_null( + &log->l_buf_cancel_table[i], + struct xfs_buf_cancel, bc_list))) { + list_del(&bc->bc_list); + kmem_free(bc); + } + } + + kmem_free(log->l_buf_cancel_table); + log->l_buf_cancel_table = NULL; +} diff --git a/fs/xfs/xfs_error.c b/fs/xfs/xfs_error.c index 81c445e9489bd..b0ccec92e015d 100644 --- a/fs/xfs/xfs_error.c +++ b/fs/xfs/xfs_error.c @@ -224,13 +224,18 @@ int xfs_errortag_init( struct xfs_mount *mp) { + int ret; + mp->m_errortag = kmem_zalloc(sizeof(unsigned int) * XFS_ERRTAG_MAX, KM_MAYFAIL); if (!mp->m_errortag) return -ENOMEM; - return xfs_sysfs_init(&mp->m_errortag_kobj, &xfs_errortag_ktype, - &mp->m_kobj, "errortag"); + ret = xfs_sysfs_init(&mp->m_errortag_kobj, &xfs_errortag_ktype, + &mp->m_kobj, "errortag"); + if (ret) + kmem_free(mp->m_errortag); + return ret; } void diff --git a/fs/xfs/xfs_icache.c b/fs/xfs/xfs_icache.c index 5e44d7bbd8fca..eab98d76dbe1f 100644 --- a/fs/xfs/xfs_icache.c +++ b/fs/xfs/xfs_icache.c @@ -448,18 +448,23 @@ xfs_iget_check_free_state( } /* Make all pending inactivation work start immediately. */ -static void +static bool xfs_inodegc_queue_all( struct xfs_mount *mp) { struct xfs_inodegc *gc; int cpu; + bool ret = false; for_each_online_cpu(cpu) { gc = per_cpu_ptr(mp->m_inodegc, cpu); - if (!llist_empty(&gc->list)) - queue_work_on(cpu, mp->m_inodegc_wq, &gc->work); + if (!llist_empty(&gc->list)) { + mod_delayed_work_on(cpu, mp->m_inodegc_wq, &gc->work, 0); + ret = true; + } } + + return ret; } /* @@ -1851,11 +1856,13 @@ void xfs_inodegc_worker( struct work_struct *work) { - struct xfs_inodegc *gc = container_of(work, struct xfs_inodegc, - work); + struct xfs_inodegc *gc = container_of(to_delayed_work(work), + struct xfs_inodegc, work); struct llist_node *node = llist_del_all(&gc->list); struct xfs_inode *ip, *n; + ASSERT(gc->cpu == smp_processor_id()); + WRITE_ONCE(gc->items, 0); if (!node) @@ -1872,42 +1879,69 @@ xfs_inodegc_worker( } /* - * Force all currently queued inode inactivation work to run immediately and - * wait for the work to finish. + * Expedite all pending inodegc work to run immediately. This does not wait for + * completion of the work. */ void -xfs_inodegc_flush( +xfs_inodegc_push( struct xfs_mount *mp) { if (!xfs_is_inodegc_enabled(mp)) return; + trace_xfs_inodegc_push(mp, __return_address); + xfs_inodegc_queue_all(mp); +} +/* + * Force all currently queued inode inactivation work to run immediately and + * wait for the work to finish. + */ +void +xfs_inodegc_flush( + struct xfs_mount *mp) +{ + xfs_inodegc_push(mp); trace_xfs_inodegc_flush(mp, __return_address); - - xfs_inodegc_queue_all(mp); flush_workqueue(mp->m_inodegc_wq); } /* * Flush all the pending work and then disable the inode inactivation background - * workers and wait for them to stop. + * workers and wait for them to stop. Caller must hold sb->s_umount to + * coordinate changes in the inodegc_enabled state. */ void xfs_inodegc_stop( struct xfs_mount *mp) { + bool rerun; + if (!xfs_clear_inodegc_enabled(mp)) return; + /* + * Drain all pending inodegc work, including inodes that could be + * queued by racing xfs_inodegc_queue or xfs_inodegc_shrinker_scan + * threads that sample the inodegc state just prior to us clearing it. + * The inodegc flag state prevents new threads from queuing more + * inodes, so we queue pending work items and flush the workqueue until + * all inodegc lists are empty. IOWs, we cannot use drain_workqueue + * here because it does not allow other unserialized mechanisms to + * reschedule inodegc work while this draining is in progress. + */ xfs_inodegc_queue_all(mp); - drain_workqueue(mp->m_inodegc_wq); + do { + flush_workqueue(mp->m_inodegc_wq); + rerun = xfs_inodegc_queue_all(mp); + } while (rerun); trace_xfs_inodegc_stop(mp, __return_address); } /* * Enable the inode inactivation background workers and schedule deferred inode - * inactivation work if there is any. + * inactivation work if there is any. Caller must hold sb->s_umount to + * coordinate changes in the inodegc_enabled state. */ void xfs_inodegc_start( @@ -2021,6 +2055,7 @@ xfs_inodegc_queue( struct xfs_inodegc *gc; int items; unsigned int shrinker_hits; + unsigned long queue_delay = 1; trace_xfs_inode_set_need_inactive(ip); spin_lock(&ip->i_flags_lock); @@ -2032,19 +2067,27 @@ xfs_inodegc_queue( items = READ_ONCE(gc->items); WRITE_ONCE(gc->items, items + 1); shrinker_hits = READ_ONCE(gc->shrinker_hits); - put_cpu_ptr(gc); - if (!xfs_is_inodegc_enabled(mp)) + /* + * We queue the work while holding the current CPU so that the work + * is scheduled to run on this CPU. + */ + if (!xfs_is_inodegc_enabled(mp)) { + put_cpu_ptr(gc); return; - - if (xfs_inodegc_want_queue_work(ip, items)) { - trace_xfs_inodegc_queue(mp, __return_address); - queue_work(mp->m_inodegc_wq, &gc->work); } + if (xfs_inodegc_want_queue_work(ip, items)) + queue_delay = 0; + + trace_xfs_inodegc_queue(mp, __return_address); + mod_delayed_work_on(current_cpu(), mp->m_inodegc_wq, &gc->work, + queue_delay); + put_cpu_ptr(gc); + if (xfs_inodegc_want_flush_work(ip, items, shrinker_hits)) { trace_xfs_inodegc_throttle(mp, __return_address); - flush_work(&gc->work); + flush_delayed_work(&gc->work); } } @@ -2061,7 +2104,7 @@ xfs_inodegc_cpu_dead( unsigned int count = 0; dead_gc = per_cpu_ptr(mp->m_inodegc, dead_cpu); - cancel_work_sync(&dead_gc->work); + cancel_delayed_work_sync(&dead_gc->work); if (llist_empty(&dead_gc->list)) return; @@ -2080,12 +2123,13 @@ xfs_inodegc_cpu_dead( llist_add_batch(first, last, &gc->list); count += READ_ONCE(gc->items); WRITE_ONCE(gc->items, count); - put_cpu_ptr(gc); if (xfs_is_inodegc_enabled(mp)) { trace_xfs_inodegc_queue(mp, __return_address); - queue_work(mp->m_inodegc_wq, &gc->work); + mod_delayed_work_on(current_cpu(), mp->m_inodegc_wq, &gc->work, + 0); } + put_cpu_ptr(gc); } /* @@ -2180,7 +2224,7 @@ xfs_inodegc_shrinker_scan( unsigned int h = READ_ONCE(gc->shrinker_hits); WRITE_ONCE(gc->shrinker_hits, h + 1); - queue_work_on(cpu, mp->m_inodegc_wq, &gc->work); + mod_delayed_work_on(cpu, mp->m_inodegc_wq, &gc->work, 0); no_items = false; } } diff --git a/fs/xfs/xfs_icache.h b/fs/xfs/xfs_icache.h index 2e4cfddf8b8ed..6cd180721659b 100644 --- a/fs/xfs/xfs_icache.h +++ b/fs/xfs/xfs_icache.h @@ -76,6 +76,7 @@ void xfs_blockgc_stop(struct xfs_mount *mp); void xfs_blockgc_start(struct xfs_mount *mp); void xfs_inodegc_worker(struct work_struct *work); +void xfs_inodegc_push(struct xfs_mount *mp); void xfs_inodegc_flush(struct xfs_mount *mp); void xfs_inodegc_stop(struct xfs_mount *mp); void xfs_inodegc_start(struct xfs_mount *mp); diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c index b2ea853182141..df64b902842dd 100644 --- a/fs/xfs/xfs_inode.c +++ b/fs/xfs/xfs_inode.c @@ -378,8 +378,8 @@ xfs_isilocked( } if (lock_flags & (XFS_MMAPLOCK_EXCL|XFS_MMAPLOCK_SHARED)) { - return __xfs_rwsem_islocked(&VFS_I(ip)->i_rwsem, - (lock_flags & XFS_IOLOCK_SHARED)); + return __xfs_rwsem_islocked(&VFS_I(ip)->i_mapping->invalidate_lock, + (lock_flags & XFS_MMAPLOCK_SHARED)); } if (lock_flags & (XFS_IOLOCK_EXCL | XFS_IOLOCK_SHARED)) { diff --git a/fs/xfs/xfs_iops.c b/fs/xfs/xfs_iops.c index 1eb71275e5b09..8696d65512005 100644 --- a/fs/xfs/xfs_iops.c +++ b/fs/xfs/xfs_iops.c @@ -511,27 +511,6 @@ xfs_vn_get_link( return ERR_PTR(error); } -STATIC const char * -xfs_vn_get_link_inline( - struct dentry *dentry, - struct inode *inode, - struct delayed_call *done) -{ - struct xfs_inode *ip = XFS_I(inode); - char *link; - - ASSERT(ip->i_df.if_format == XFS_DINODE_FMT_LOCAL); - - /* - * The VFS crashes on a NULL pointer, so return -EFSCORRUPTED if - * if_data is junk. - */ - link = ip->i_df.if_u1.if_data; - if (XFS_IS_CORRUPT(ip->i_mount, !link)) - return ERR_PTR(-EFSCORRUPTED); - return link; -} - static uint32_t xfs_stat_blksize( struct xfs_inode *ip) @@ -1200,14 +1179,6 @@ static const struct inode_operations xfs_symlink_inode_operations = { .update_time = xfs_vn_update_time, }; -static const struct inode_operations xfs_inline_symlink_inode_operations = { - .get_link = xfs_vn_get_link_inline, - .getattr = xfs_vn_getattr, - .setattr = xfs_vn_setattr, - .listxattr = xfs_vn_listxattr, - .update_time = xfs_vn_update_time, -}; - /* Figure out if this file actually supports DAX. */ static bool xfs_inode_supports_dax( @@ -1358,10 +1329,7 @@ xfs_setup_iops( inode->i_fop = &xfs_dir_file_operations; break; case S_IFLNK: - if (ip->i_df.if_format == XFS_DINODE_FMT_LOCAL) - inode->i_op = &xfs_inline_symlink_inode_operations; - else - inode->i_op = &xfs_symlink_inode_operations; + inode->i_op = &xfs_symlink_inode_operations; break; default: inode->i_op = &xfs_inode_operations; diff --git a/fs/xfs/xfs_log.c b/fs/xfs/xfs_log.c index 0fb7d05ca308d..eba295f666acc 100644 --- a/fs/xfs/xfs_log.c +++ b/fs/xfs/xfs_log.c @@ -2061,8 +2061,6 @@ xlog_dealloc_log( xlog_in_core_t *iclog, *next_iclog; int i; - xlog_cil_destroy(log); - /* * Cycle all the iclogbuf locks to make sure all log IO completion * is done before we tear down these buffers. @@ -2074,6 +2072,13 @@ xlog_dealloc_log( iclog = iclog->ic_next; } + /* + * Destroy the CIL after waiting for iclog IO completion because an + * iclog EIO error will try to shut down the log, which accesses the + * CIL to wake up the waiters. + */ + xlog_cil_destroy(log); + iclog = log->l_iclog; for (i = 0; i < log->l_iclog_bufs; i++) { next_iclog = iclog->ic_next; diff --git a/fs/xfs/xfs_log_priv.h b/fs/xfs/xfs_log_priv.h index f3d68ca39f45c..03393595676f4 100644 --- a/fs/xfs/xfs_log_priv.h +++ b/fs/xfs/xfs_log_priv.h @@ -454,9 +454,6 @@ struct xlog { struct rw_semaphore l_incompat_users; }; -#define XLOG_BUF_CANCEL_BUCKET(log, blkno) \ - ((log)->l_buf_cancel_table + ((uint64_t)blkno % XLOG_BC_TABLE_SIZE)) - /* * Bits for operational state */ diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c index 581aeb288b32b..3d844a250b710 100644 --- a/fs/xfs/xfs_log_recover.c +++ b/fs/xfs/xfs_log_recover.c @@ -2560,6 +2560,7 @@ xlog_recover_process_intents( for (lip = xfs_trans_ail_cursor_first(ailp, &cur, 0); lip != NULL; lip = xfs_trans_ail_cursor_next(ailp, &cur)) { + const struct xfs_item_ops *ops; /* * We're done when we see something other than an intent. * There should be no intents left in the AIL now. @@ -2584,13 +2585,17 @@ xlog_recover_process_intents( * deferred ops, you /must/ attach them to the capture list in * the recover routine or else those subsequent intents will be * replayed in the wrong order! + * + * The recovery function can free the log item, so we must not + * access lip after it returns. */ spin_unlock(&ailp->ail_lock); - error = lip->li_ops->iop_recover(lip, &capture_list); + ops = lip->li_ops; + error = ops->iop_recover(lip, &capture_list); spin_lock(&ailp->ail_lock); if (error) { trace_xlog_intent_recovery_failed(log->l_mp, error, - lip->li_ops->iop_recover); + ops->iop_recover); break; } } @@ -2739,6 +2744,7 @@ xlog_recover_process_one_iunlink( * Call xlog_recover_clear_agi_bucket() to perform a transaction to * clear the inode pointer in the bucket. */ + xfs_inodegc_flush(mp); xlog_recover_clear_agi_bucket(mp, agno, bucket); return NULLAGINO; } @@ -3248,7 +3254,7 @@ xlog_do_log_recovery( xfs_daddr_t head_blk, xfs_daddr_t tail_blk) { - int error, i; + int error; ASSERT(head_blk != tail_blk); @@ -3256,37 +3262,25 @@ xlog_do_log_recovery( * First do a pass to find all of the cancelled buf log items. * Store them in the buf_cancel_table for use in the second pass. */ - log->l_buf_cancel_table = kmem_zalloc(XLOG_BC_TABLE_SIZE * - sizeof(struct list_head), - 0); - for (i = 0; i < XLOG_BC_TABLE_SIZE; i++) - INIT_LIST_HEAD(&log->l_buf_cancel_table[i]); + error = xlog_alloc_buf_cancel_table(log); + if (error) + return error; error = xlog_do_recovery_pass(log, head_blk, tail_blk, XLOG_RECOVER_PASS1, NULL); - if (error != 0) { - kmem_free(log->l_buf_cancel_table); - log->l_buf_cancel_table = NULL; - return error; - } + if (error != 0) + goto out_cancel; + /* * Then do a second pass to actually recover the items in the log. * When it is complete free the table of buf cancel items. */ error = xlog_do_recovery_pass(log, head_blk, tail_blk, XLOG_RECOVER_PASS2, NULL); -#ifdef DEBUG - if (!error) { - int i; - - for (i = 0; i < XLOG_BC_TABLE_SIZE; i++) - ASSERT(list_empty(&log->l_buf_cancel_table[i])); - } -#endif /* DEBUG */ - - kmem_free(log->l_buf_cancel_table); - log->l_buf_cancel_table = NULL; - + if (!error) + xlog_check_buf_cancel_table(log); +out_cancel: + xlog_free_buf_cancel_table(log); return error; } diff --git a/fs/xfs/xfs_mount.h b/fs/xfs/xfs_mount.h index 86564295fce6d..29f35169bf9cf 100644 --- a/fs/xfs/xfs_mount.h +++ b/fs/xfs/xfs_mount.h @@ -61,11 +61,14 @@ struct xfs_error_cfg { */ struct xfs_inodegc { struct llist_head list; - struct work_struct work; + struct delayed_work work; /* approximate count of inodes in the list */ unsigned int items; unsigned int shrinker_hits; +#if defined(DEBUG) || defined(XFS_WARN) + unsigned int cpu; +#endif }; /* diff --git a/fs/xfs/xfs_qm.c b/fs/xfs/xfs_qm.c index 623244650a2f0..792736e29a37a 100644 --- a/fs/xfs/xfs_qm.c +++ b/fs/xfs/xfs_qm.c @@ -1244,6 +1244,13 @@ xfs_qm_flush_one( error = -EINVAL; goto out_unlock; } + + if (!(bp->b_flags & _XBF_DELWRI_Q)) { + error = -EAGAIN; + xfs_buf_relse(bp); + goto out_unlock; + } + xfs_buf_unlock(bp); xfs_buf_delwri_pushbuf(bp, buffer_list); diff --git a/fs/xfs/xfs_qm_syscalls.c b/fs/xfs/xfs_qm_syscalls.c index 47fe60e1a8873..322a111dfbc0f 100644 --- a/fs/xfs/xfs_qm_syscalls.c +++ b/fs/xfs/xfs_qm_syscalls.c @@ -481,9 +481,12 @@ xfs_qm_scall_getquota( struct xfs_dquot *dqp; int error; - /* Flush inodegc work at the start of a quota reporting scan. */ + /* + * Expedite pending inodegc work at the start of a quota reporting + * scan but don't block waiting for it to complete. + */ if (id == 0) - xfs_inodegc_flush(mp); + xfs_inodegc_push(mp); /* * Try to get the dquot. We don't want it allocated on disk, so don't @@ -525,7 +528,7 @@ xfs_qm_scall_getquota_next( /* Flush inodegc work at the start of a quota reporting scan. */ if (*id == 0) - xfs_inodegc_flush(mp); + xfs_inodegc_push(mp); error = xfs_qm_dqget_next(mp, *id, type, &dqp); if (error) diff --git a/fs/xfs/xfs_reflink.c b/fs/xfs/xfs_reflink.c index 36832e4bc803c..793bdf5ac2f76 100644 --- a/fs/xfs/xfs_reflink.c +++ b/fs/xfs/xfs_reflink.c @@ -340,9 +340,41 @@ xfs_find_trim_cow_extent( return 0; } -/* Allocate all CoW reservations covering a range of blocks in a file. */ -int -xfs_reflink_allocate_cow( +static int +xfs_reflink_convert_unwritten( + struct xfs_inode *ip, + struct xfs_bmbt_irec *imap, + struct xfs_bmbt_irec *cmap, + bool convert_now) +{ + xfs_fileoff_t offset_fsb = imap->br_startoff; + xfs_filblks_t count_fsb = imap->br_blockcount; + int error; + + /* + * cmap might larger than imap due to cowextsize hint. + */ + xfs_trim_extent(cmap, offset_fsb, count_fsb); + + /* + * COW fork extents are supposed to remain unwritten until we're ready + * to initiate a disk write. For direct I/O we are going to write the + * data and need the conversion, but for buffered writes we're done. + */ + if (!convert_now || cmap->br_state == XFS_EXT_NORM) + return 0; + + trace_xfs_reflink_convert_cow(ip, cmap); + + error = xfs_reflink_convert_cow_locked(ip, offset_fsb, count_fsb); + if (!error) + cmap->br_state = XFS_EXT_NORM; + + return error; +} + +static int +xfs_reflink_fill_cow_hole( struct xfs_inode *ip, struct xfs_bmbt_irec *imap, struct xfs_bmbt_irec *cmap, @@ -351,25 +383,12 @@ xfs_reflink_allocate_cow( bool convert_now) { struct xfs_mount *mp = ip->i_mount; - xfs_fileoff_t offset_fsb = imap->br_startoff; - xfs_filblks_t count_fsb = imap->br_blockcount; struct xfs_trans *tp; - int nimaps, error = 0; - bool found; xfs_filblks_t resaligned; - xfs_extlen_t resblks = 0; - - ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL)); - if (!ip->i_cowfp) { - ASSERT(!xfs_is_reflink_inode(ip)); - xfs_ifork_init_cow(ip); - } - - error = xfs_find_trim_cow_extent(ip, imap, cmap, shared, &found); - if (error || !*shared) - return error; - if (found) - goto convert; + xfs_extlen_t resblks; + int nimaps; + int error; + bool found; resaligned = xfs_aligned_fsb_count(imap->br_startoff, imap->br_blockcount, xfs_get_cowextsz_hint(ip)); @@ -385,17 +404,17 @@ xfs_reflink_allocate_cow( *lockmode = XFS_ILOCK_EXCL; - /* - * Check for an overlapping extent again now that we dropped the ilock. - */ error = xfs_find_trim_cow_extent(ip, imap, cmap, shared, &found); if (error || !*shared) goto out_trans_cancel; + if (found) { xfs_trans_cancel(tp); goto convert; } + ASSERT(cmap->br_startoff > imap->br_startoff); + /* Allocate the entire reservation as unwritten blocks. */ nimaps = 1; error = xfs_bmapi_write(tp, ip, imap->br_startoff, imap->br_blockcount, @@ -415,23 +434,135 @@ xfs_reflink_allocate_cow( */ if (nimaps == 0) return -ENOSPC; + convert: - xfs_trim_extent(cmap, offset_fsb, count_fsb); - /* - * COW fork extents are supposed to remain unwritten until we're ready - * to initiate a disk write. For direct I/O we are going to write the - * data and need the conversion, but for buffered writes we're done. - */ - if (!convert_now || cmap->br_state == XFS_EXT_NORM) - return 0; - trace_xfs_reflink_convert_cow(ip, cmap); - return xfs_reflink_convert_cow_locked(ip, offset_fsb, count_fsb); + return xfs_reflink_convert_unwritten(ip, imap, cmap, convert_now); out_trans_cancel: xfs_trans_cancel(tp); return error; } +static int +xfs_reflink_fill_delalloc( + struct xfs_inode *ip, + struct xfs_bmbt_irec *imap, + struct xfs_bmbt_irec *cmap, + bool *shared, + uint *lockmode, + bool convert_now) +{ + struct xfs_mount *mp = ip->i_mount; + struct xfs_trans *tp; + int nimaps; + int error; + bool found; + + do { + xfs_iunlock(ip, *lockmode); + *lockmode = 0; + + error = xfs_trans_alloc_inode(ip, &M_RES(mp)->tr_write, 0, 0, + false, &tp); + if (error) + return error; + + *lockmode = XFS_ILOCK_EXCL; + + error = xfs_find_trim_cow_extent(ip, imap, cmap, shared, + &found); + if (error || !*shared) + goto out_trans_cancel; + + if (found) { + xfs_trans_cancel(tp); + break; + } + + ASSERT(isnullstartblock(cmap->br_startblock) || + cmap->br_startblock == DELAYSTARTBLOCK); + + /* + * Replace delalloc reservation with an unwritten extent. + */ + nimaps = 1; + error = xfs_bmapi_write(tp, ip, cmap->br_startoff, + cmap->br_blockcount, + XFS_BMAPI_COWFORK | XFS_BMAPI_PREALLOC, 0, + cmap, &nimaps); + if (error) + goto out_trans_cancel; + + xfs_inode_set_cowblocks_tag(ip); + error = xfs_trans_commit(tp); + if (error) + return error; + + /* + * Allocation succeeded but the requested range was not even + * partially satisfied? Bail out! + */ + if (nimaps == 0) + return -ENOSPC; + } while (cmap->br_startoff + cmap->br_blockcount <= imap->br_startoff); + + return xfs_reflink_convert_unwritten(ip, imap, cmap, convert_now); + +out_trans_cancel: + xfs_trans_cancel(tp); + return error; +} + +/* Allocate all CoW reservations covering a range of blocks in a file. */ +int +xfs_reflink_allocate_cow( + struct xfs_inode *ip, + struct xfs_bmbt_irec *imap, + struct xfs_bmbt_irec *cmap, + bool *shared, + uint *lockmode, + bool convert_now) +{ + int error; + bool found; + + ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL)); + if (!ip->i_cowfp) { + ASSERT(!xfs_is_reflink_inode(ip)); + xfs_ifork_init_cow(ip); + } + + error = xfs_find_trim_cow_extent(ip, imap, cmap, shared, &found); + if (error || !*shared) + return error; + + /* CoW fork has a real extent */ + if (found) + return xfs_reflink_convert_unwritten(ip, imap, cmap, + convert_now); + + /* + * CoW fork does not have an extent and data extent is shared. + * Allocate a real extent in the CoW fork. + */ + if (cmap->br_startoff > imap->br_startoff) + return xfs_reflink_fill_cow_hole(ip, imap, cmap, shared, + lockmode, convert_now); + + /* + * CoW fork has a delalloc reservation. Replace it with a real extent. + * There may or may not be a data fork mapping. + */ + if (isnullstartblock(cmap->br_startblock) || + cmap->br_startblock == DELAYSTARTBLOCK) + return xfs_reflink_fill_delalloc(ip, imap, cmap, shared, + lockmode, convert_now); + + /* Shouldn't get here. */ + ASSERT(0); + return -EFSCORRUPTED; +} + /* * Cancel CoW reservations for some block range of an inode. * diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c index df1d6be61bfa3..569960e4ea3a6 100644 --- a/fs/xfs/xfs_super.c +++ b/fs/xfs/xfs_super.c @@ -795,8 +795,11 @@ xfs_fs_statfs( xfs_extlen_t lsize; int64_t ffree; - /* Wait for whatever inactivations are in progress. */ - xfs_inodegc_flush(mp); + /* + * Expedite background inodegc but don't wait. We do not want to block + * here waiting hours for a billion extent file to be truncated. + */ + xfs_inodegc_push(mp); statp->f_type = XFS_SUPER_MAGIC; statp->f_namelen = MAXNAMELEN - 1; @@ -1059,9 +1062,12 @@ xfs_inodegc_init_percpu( for_each_possible_cpu(cpu) { gc = per_cpu_ptr(mp->m_inodegc, cpu); +#if defined(DEBUG) || defined(XFS_WARN) + gc->cpu = cpu; +#endif init_llist_head(&gc->list); gc->items = 0; - INIT_WORK(&gc->work, xfs_inodegc_worker); + INIT_DELAYED_WORK(&gc->work, xfs_inodegc_worker); } return 0; } diff --git a/fs/xfs/xfs_symlink.c b/fs/xfs/xfs_symlink.c index a31d2e5d03214..affbedf781605 100644 --- a/fs/xfs/xfs_symlink.c +++ b/fs/xfs/xfs_symlink.c @@ -22,6 +22,7 @@ #include "xfs_trace.h" #include "xfs_trans.h" #include "xfs_ialloc.h" +#include "xfs_error.h" /* ----- Kernel only functions below ----- */ int @@ -96,17 +97,15 @@ xfs_readlink_bmap_ilocked( int xfs_readlink( - struct xfs_inode *ip, - char *link) + struct xfs_inode *ip, + char *link) { - struct xfs_mount *mp = ip->i_mount; - xfs_fsize_t pathlen; - int error = 0; + struct xfs_mount *mp = ip->i_mount; + xfs_fsize_t pathlen; + int error = -EFSCORRUPTED; trace_xfs_readlink(ip); - ASSERT(ip->i_df.if_format != XFS_DINODE_FMT_LOCAL); - if (xfs_is_shutdown(mp)) return -EIO; @@ -121,12 +120,22 @@ xfs_readlink( __func__, (unsigned long long) ip->i_ino, (long long) pathlen); ASSERT(0); - error = -EFSCORRUPTED; goto out; } - - error = xfs_readlink_bmap_ilocked(ip, link); + if (ip->i_df.if_format == XFS_DINODE_FMT_LOCAL) { + /* + * The VFS crashes on a NULL pointer, so return -EFSCORRUPTED + * if if_data is junk. + */ + if (XFS_IS_CORRUPT(ip->i_mount, !ip->i_df.if_u1.if_data)) + goto out; + + memcpy(link, ip->i_df.if_u1.if_data, pathlen + 1); + error = 0; + } else { + error = xfs_readlink_bmap_ilocked(ip, link); + } out: xfs_iunlock(ip, XFS_ILOCK_SHARED); diff --git a/fs/xfs/xfs_sysfs.h b/fs/xfs/xfs_sysfs.h index 43585850f1546..513095e353a5b 100644 --- a/fs/xfs/xfs_sysfs.h +++ b/fs/xfs/xfs_sysfs.h @@ -33,10 +33,15 @@ xfs_sysfs_init( const char *name) { struct kobject *parent; + int err; parent = parent_kobj ? &parent_kobj->kobject : NULL; init_completion(&kobj->complete); - return kobject_init_and_add(&kobj->kobject, ktype, parent, "%s", name); + err = kobject_init_and_add(&kobj->kobject, ktype, parent, "%s", name); + if (err) + kobject_put(&kobj->kobject); + + return err; } static inline void diff --git a/fs/xfs/xfs_trace.h b/fs/xfs/xfs_trace.h index 1033a95fbf8e6..ebd17ddba0243 100644 --- a/fs/xfs/xfs_trace.h +++ b/fs/xfs/xfs_trace.h @@ -240,6 +240,7 @@ DEFINE_EVENT(xfs_fs_class, name, \ TP_PROTO(struct xfs_mount *mp, void *caller_ip), \ TP_ARGS(mp, caller_ip)) DEFINE_FS_EVENT(xfs_inodegc_flush); +DEFINE_FS_EVENT(xfs_inodegc_push); DEFINE_FS_EVENT(xfs_inodegc_start); DEFINE_FS_EVENT(xfs_inodegc_stop); DEFINE_FS_EVENT(xfs_inodegc_queue); diff --git a/include/asm-generic/hyperv-tlfs.h b/include/asm-generic/hyperv-tlfs.h index 56348a541c501..8f97c2927beea 100644 --- a/include/asm-generic/hyperv-tlfs.h +++ b/include/asm-generic/hyperv-tlfs.h @@ -158,6 +158,7 @@ struct ms_hyperv_tsc_page { #define HVCALL_RETARGET_INTERRUPT 0x007e #define HVCALL_FLUSH_GUEST_PHYSICAL_ADDRESS_SPACE 0x00af #define HVCALL_FLUSH_GUEST_PHYSICAL_ADDRESS_LIST 0x00b0 +#define HVCALL_MODIFY_SPARSE_GPA_PAGE_HOST_VISIBILITY 0x00db /* Extended hypercalls */ #define HV_EXT_CALL_QUERY_CAPABILITIES 0x8001 @@ -539,39 +540,6 @@ enum hv_interrupt_source { HV_INTERRUPT_SOURCE_IOAPIC, }; -union hv_msi_address_register { - u32 as_uint32; - struct { - u32 reserved1:2; - u32 destination_mode:1; - u32 redirection_hint:1; - u32 reserved2:8; - u32 destination_id:8; - u32 msi_base:12; - }; -} __packed; - -union hv_msi_data_register { - u32 as_uint32; - struct { - u32 vector:8; - u32 delivery_mode:3; - u32 reserved1:3; - u32 level_assert:1; - u32 trigger_mode:1; - u32 reserved2:16; - }; -} __packed; - -/* HvRetargetDeviceInterrupt hypercall */ -union hv_msi_entry { - u64 as_uint64; - struct { - union hv_msi_address_register address; - union hv_msi_data_register data; - } __packed; -}; - union hv_ioapic_rte { u64 as_uint64; diff --git a/include/asm-generic/mshyperv.h b/include/asm-generic/mshyperv.h index d3eae6cdbacbb..94e73ba129c57 100644 --- a/include/asm-generic/mshyperv.h +++ b/include/asm-generic/mshyperv.h @@ -35,7 +35,17 @@ struct ms_hyperv_info { u32 max_vp_index; u32 max_lp_index; u32 isolation_config_a; - u32 isolation_config_b; + union { + u32 isolation_config_b; + struct { + u32 cvm_type : 4; + u32 reserved1 : 1; + u32 shared_gpa_boundary_active : 1; + u32 shared_gpa_boundary_bits : 6; + u32 reserved2 : 20; + }; + }; + u64 shared_gpa_boundary; }; extern struct ms_hyperv_info ms_hyperv; @@ -44,6 +54,7 @@ extern void __percpu **hyperv_pcpu_output_arg; extern u64 hv_do_hypercall(u64 control, void *inputaddr, void *outputaddr); extern u64 hv_do_fast_hypercall8(u16 control, u64 input8); +extern bool hv_isolation_type_snp(void); /* Helper functions that provide a consistent pattern for checking Hyper-V hypercall status. */ static inline int hv_result(u64 status) @@ -254,12 +265,21 @@ bool hv_is_hyperv_initialized(void); bool hv_is_hibernation_supported(void); enum hv_isolation_type hv_get_isolation_type(void); bool hv_is_isolation_supported(void); +bool hv_isolation_type_snp(void); +u64 hv_ghcb_hypercall(u64 control, void *input, void *output, u32 input_size); void hyperv_cleanup(void); bool hv_query_ext_cap(u64 cap_query); +void *hv_map_memory(void *addr, unsigned long size); +void hv_unmap_memory(void *addr); #else /* CONFIG_HYPERV */ static inline bool hv_is_hyperv_initialized(void) { return false; } static inline bool hv_is_hibernation_supported(void) { return false; } static inline void hyperv_cleanup(void) {} +static inline bool hv_is_isolation_supported(void) { return false; } +static inline enum hv_isolation_type hv_get_isolation_type(void) +{ + return HV_ISOLATION_TYPE_NONE; +} #endif /* CONFIG_HYPERV */ #endif diff --git a/include/clocksource/arm_arch_timer.h b/include/clocksource/arm_arch_timer.h index 73c7139c866fa..e715bdb720d51 100644 --- a/include/clocksource/arm_arch_timer.h +++ b/include/clocksource/arm_arch_timer.h @@ -24,7 +24,7 @@ enum arch_timer_reg { ARCH_TIMER_REG_CTRL, - ARCH_TIMER_REG_TVAL, + ARCH_TIMER_REG_CVAL, }; enum arch_timer_ppi_nr { diff --git a/include/crypto/algapi.h b/include/crypto/algapi.h index 0ffd61930e180..62fa7e82ff5b9 100644 --- a/include/crypto/algapi.h +++ b/include/crypto/algapi.h @@ -10,6 +10,7 @@ #include #include #include +#include /* * Maximum values for blocksize and alignmask, used to allocate @@ -55,6 +56,8 @@ struct crypto_instance { struct crypto_spawn *spawns; }; + struct work_struct free_work; + void *__ctx[] CRYPTO_MINALIGN_ATTR; }; diff --git a/include/drm/drm_mipi_dsi.h b/include/drm/drm_mipi_dsi.h index 1d263eb0b2e12..d9af72024d66d 100644 --- a/include/drm/drm_mipi_dsi.h +++ b/include/drm/drm_mipi_dsi.h @@ -227,9 +227,13 @@ struct mipi_dsi_device * mipi_dsi_device_register_full(struct mipi_dsi_host *host, const struct mipi_dsi_device_info *info); void mipi_dsi_device_unregister(struct mipi_dsi_device *dsi); +struct mipi_dsi_device * +devm_mipi_dsi_device_register_full(struct device *dev, struct mipi_dsi_host *host, + const struct mipi_dsi_device_info *info); struct mipi_dsi_device *of_find_mipi_dsi_device_by_node(struct device_node *np); int mipi_dsi_attach(struct mipi_dsi_device *dsi); int mipi_dsi_detach(struct mipi_dsi_device *dsi); +int devm_mipi_dsi_attach(struct device *dev, struct mipi_dsi_device *dsi); int mipi_dsi_shutdown_peripheral(struct mipi_dsi_device *dsi); int mipi_dsi_turn_on_peripheral(struct mipi_dsi_device *dsi); int mipi_dsi_set_maximum_return_packet_size(struct mipi_dsi_device *dsi, diff --git a/include/keys/trusted-type.h b/include/keys/trusted-type.h index d89fa2579ac05..4eb64548a74f1 100644 --- a/include/keys/trusted-type.h +++ b/include/keys/trusted-type.h @@ -64,7 +64,7 @@ struct trusted_key_ops { /* Unseal a key. */ int (*unseal)(struct trusted_key_payload *p, char *datablob); - /* Get a randomized key. */ + /* Optional: Get a randomized key. */ int (*get_random)(unsigned char *key, size_t key_len); /* Exit key interface. */ diff --git a/include/linux/acpi_iort.h b/include/linux/acpi_iort.h index f1f0842a2cb2b..43082bd44a999 100644 --- a/include/linux/acpi_iort.h +++ b/include/linux/acpi_iort.h @@ -21,6 +21,7 @@ */ #define IORT_SMMU_V3_PMCG_GENERIC 0x00000000 /* Generic SMMUv3 PMCG */ #define IORT_SMMU_V3_PMCG_HISI_HIP08 0x00000001 /* HiSilicon HIP08 PMCG */ +#define IORT_SMMU_V3_PMCG_HISI_HIP09 0x00000002 /* HiSilicon HIP09 PMCG */ int iort_register_domain_token(int trans_id, phys_addr_t base, struct fwnode_handle *fw_node); diff --git a/include/linux/arm_sdei.h b/include/linux/arm_sdei.h index 14dc461b0e829..255701e1251b4 100644 --- a/include/linux/arm_sdei.h +++ b/include/linux/arm_sdei.h @@ -47,10 +47,12 @@ int sdei_unregister_ghes(struct ghes *ghes); int sdei_mask_local_cpu(void); int sdei_unmask_local_cpu(void); void __init sdei_init(void); +void sdei_handler_abort(void); #else static inline int sdei_mask_local_cpu(void) { return 0; } static inline int sdei_unmask_local_cpu(void) { return 0; } static inline void sdei_init(void) { } +static inline void sdei_handler_abort(void) { } #endif /* CONFIG_ARM_SDE_INTERFACE */ diff --git a/include/linux/bpf.h b/include/linux/bpf.h index 84efd8dd139d9..9ab087d73ab34 100644 --- a/include/linux/bpf.h +++ b/include/linux/bpf.h @@ -840,7 +840,7 @@ static inline int bpf_trampoline_unlink_prog(struct bpf_prog *prog, static inline struct bpf_trampoline *bpf_trampoline_get(u64 key, struct bpf_attach_target_info *tgt_info) { - return ERR_PTR(-EOPNOTSUPP); + return NULL; } static inline void bpf_trampoline_put(struct bpf_trampoline *tr) {} #define DEFINE_BPF_DISPATCHER(name) diff --git a/include/linux/btf_ids.h b/include/linux/btf_ids.h index 47d9abfbdb556..1deb9a0fe74ef 100644 --- a/include/linux/btf_ids.h +++ b/include/linux/btf_ids.h @@ -38,7 +38,7 @@ asm( \ ____BTF_ID(symbol) #define __ID(prefix) \ - __PASTE(prefix, __COUNTER__) + __PASTE(__PASTE(prefix, __COUNTER__), __LINE__) /* * The BTF_ID defines unique symbol for each ID pointing diff --git a/include/linux/cgroup.h b/include/linux/cgroup.h index 45cdb12243e3f..0d97d1cf660f7 100644 --- a/include/linux/cgroup.h +++ b/include/linux/cgroup.h @@ -451,6 +451,7 @@ extern struct mutex cgroup_mutex; extern spinlock_t css_set_lock; #define task_css_set_check(task, __c) \ rcu_dereference_check((task)->cgroups, \ + rcu_read_lock_sched_held() || \ lockdep_is_held(&cgroup_mutex) || \ lockdep_is_held(&css_set_lock) || \ ((task)->flags & PF_EXITING) || (__c)) @@ -792,11 +793,9 @@ static inline void cgroup_account_cputime(struct task_struct *task, cpuacct_charge(task, delta_exec); - rcu_read_lock(); cgrp = task_dfl_cgroup(task); if (cgroup_parent(cgrp)) __cgroup_account_cputime(cgrp, delta_exec); - rcu_read_unlock(); } static inline void cgroup_account_cputime_field(struct task_struct *task, diff --git a/include/linux/cpuhotplug.h b/include/linux/cpuhotplug.h index dbca858ffa6da..c1ecc843b97d2 100644 --- a/include/linux/cpuhotplug.h +++ b/include/linux/cpuhotplug.h @@ -188,10 +188,12 @@ enum cpuhp_state { /* Must be the last timer callback */ CPUHP_AP_DUMMY_TIMER_STARTING, CPUHP_AP_ARM_XEN_STARTING, + CPUHP_AP_ARM_XEN_RUNSTATE_STARTING, CPUHP_AP_ARM_CORESIGHT_STARTING, CPUHP_AP_ARM_CORESIGHT_CTI_STARTING, CPUHP_AP_ARM64_ISNDEP_STARTING, CPUHP_AP_SMPCFD_DYING, + CPUHP_AP_HRTIMERS_DYING, CPUHP_AP_X86_TBOOT_DYING, CPUHP_AP_ARM_CACHE_B15_RAC_DYING, CPUHP_AP_ONLINE, diff --git a/include/linux/device/driver.h b/include/linux/device/driver.h index a498ebcf49933..abf948e102f5d 100644 --- a/include/linux/device/driver.h +++ b/include/linux/device/driver.h @@ -150,6 +150,8 @@ extern int __must_check driver_create_file(struct device_driver *driver, extern void driver_remove_file(struct device_driver *driver, const struct driver_attribute *attr); +int driver_set_override(struct device *dev, const char **override, + const char *s, size_t len); extern int __must_check driver_for_each_device(struct device_driver *drv, struct device *start, void *data, diff --git a/include/linux/dma-map-ops.h b/include/linux/dma-map-ops.h index 0d5b06b3a4a61..3350e7a0ea0d6 100644 --- a/include/linux/dma-map-ops.h +++ b/include/linux/dma-map-ops.h @@ -254,11 +254,20 @@ static inline bool dev_is_dma_coherent(struct device *dev) { return dev->dma_coherent; } +static inline void dev_set_dma_coherent(struct device *dev, + bool coherent) +{ + dev->dma_coherent = coherent; +} #else static inline bool dev_is_dma_coherent(struct device *dev) { return true; } +static inline void dev_set_dma_coherent(struct device *dev, + bool coherent) +{ +} #endif /* CONFIG_ARCH_HAS_DMA_COHERENCE_H */ void *arch_dma_alloc(struct device *dev, size_t size, dma_addr_t *dma_handle, diff --git a/include/linux/ethtool.h b/include/linux/ethtool.h index 3fad741df53ef..c998f9c139edd 100644 --- a/include/linux/ethtool.h +++ b/include/linux/ethtool.h @@ -781,10 +781,10 @@ int ethtool_get_phc_vclocks(struct net_device *dev, int **vclock_index); /** * ethtool_sprintf - Write formatted string to ethtool string data - * @data: Pointer to start of string to update + * @data: Pointer to a pointer to the start of string to update * @fmt: Format of string to write * - * Write formatted string to data. Update data to point at start of + * Write formatted string to *data. Update *data to point at start of * next string. */ extern __printf(2, 3) void ethtool_sprintf(u8 **data, const char *fmt, ...); diff --git a/include/linux/filter.h b/include/linux/filter.h index a9956b681f090..448af773a1f4c 100644 --- a/include/linux/filter.h +++ b/include/linux/filter.h @@ -1026,7 +1026,7 @@ void xdp_do_flush(void); */ #define xdp_do_flush_map xdp_do_flush -void bpf_warn_invalid_xdp_action(u32 act); +void bpf_warn_invalid_xdp_action(struct net_device *dev, struct bpf_prog *prog, u32 act); #ifdef CONFIG_INET struct sock *bpf_run_sk_reuseport(struct sock_reuseport *reuse, struct sock *sk, diff --git a/include/linux/fs.h b/include/linux/fs.h index 888ae3cb50e48..e56fd1705122e 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1723,7 +1723,50 @@ static inline bool fsuidgid_has_mapping(struct super_block *sb, kgid_has_mapping(fs_userns, kgid); } -extern struct timespec64 current_time(struct inode *inode); +struct timespec64 current_time(struct inode *inode); +struct timespec64 inode_set_ctime_current(struct inode *inode); + +/** + * inode_get_ctime - fetch the current ctime from the inode + * @inode: inode from which to fetch ctime + * + * Grab the current ctime from the inode and return it. + */ +static inline struct timespec64 inode_get_ctime(const struct inode *inode) +{ + return inode->i_ctime; +} + +/** + * inode_set_ctime_to_ts - set the ctime in the inode + * @inode: inode in which to set the ctime + * @ts: value to set in the ctime field + * + * Set the ctime in @inode to @ts + */ +static inline struct timespec64 inode_set_ctime_to_ts(struct inode *inode, + struct timespec64 ts) +{ + inode->i_ctime = ts; + return ts; +} + +/** + * inode_set_ctime - set the ctime in the inode + * @inode: inode in which to set the ctime + * @sec: tv_sec value to set + * @nsec: tv_nsec value to set + * + * Set the ctime in @inode to { @sec, @nsec } + */ +static inline struct timespec64 inode_set_ctime(struct inode *inode, + time64_t sec, long nsec) +{ + struct timespec64 ts = { .tv_sec = sec, + .tv_nsec = nsec }; + + return inode_set_ctime_to_ts(inode, ts); +} /* * Snapshotting support. diff --git a/include/linux/genhd.h b/include/linux/genhd.h index 0b48a0cf42624..690b7f7996d15 100644 --- a/include/linux/genhd.h +++ b/include/linux/genhd.h @@ -60,24 +60,15 @@ struct partition_meta_info { * (``BLOCK_EXT_MAJOR``). * This affects the maximum number of partitions. * - * ``GENHD_FL_NATIVE_CAPACITY`` (0x0080): based on information in the - * partition table, the device's capacity has been extended to its - * native capacity; i.e. the device has hidden capacity used by one - * of the partitions (this is a flag used so that native capacity is - * only ever unlocked once). - * - * ``GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE`` (0x0100): event polling is - * blocked whenever a writer holds an exclusive lock. - * - * ``GENHD_FL_NO_PART_SCAN`` (0x0200): partition scanning is disabled. - * Used for loop devices in their default settings and some MMC - * devices. + * ``GENHD_FL_NO_PART`` (0x0200): partition support is disabled. + * The kernel will not scan for partitions from add_disk, and users + * can't add partitions manually. * * ``GENHD_FL_HIDDEN`` (0x0400): the block device is hidden; it * doesn't produce events, doesn't appear in sysfs, and doesn't have * an associated ``bdev``. * Implies ``GENHD_FL_SUPPRESS_PARTITION_INFO`` and - * ``GENHD_FL_NO_PART_SCAN``. + * ``GENHD_FL_NO_PART``. * Used for multipath devices. */ #define GENHD_FL_REMOVABLE 0x0001 @@ -86,9 +77,7 @@ struct partition_meta_info { #define GENHD_FL_CD 0x0008 #define GENHD_FL_SUPPRESS_PARTITION_INFO 0x0020 #define GENHD_FL_EXT_DEVT 0x0040 -#define GENHD_FL_NATIVE_CAPACITY 0x0080 -#define GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE 0x0100 -#define GENHD_FL_NO_PART_SCAN 0x0200 +#define GENHD_FL_NO_PART 0x0200 #define GENHD_FL_HIDDEN 0x0400 enum { @@ -101,6 +90,8 @@ enum { DISK_EVENT_FLAG_POLL = 1 << 0, /* Forward events to udev */ DISK_EVENT_FLAG_UEVENT = 1 << 1, + /* Block event polling when open for exclusive write */ + DISK_EVENT_FLAG_BLOCK_ON_EXCL_WRITE = 1 << 2, }; struct disk_events; @@ -140,6 +131,7 @@ struct gendisk { #define GD_NEED_PART_SCAN 0 #define GD_READ_ONLY 1 #define GD_DEAD 2 +#define GD_NATIVE_CAPACITY 3 struct mutex open_mutex; /* open/close mutex */ unsigned open_partitions; /* number of open partitions */ @@ -193,8 +185,7 @@ static inline int disk_max_parts(struct gendisk *disk) static inline bool disk_part_scan_enabled(struct gendisk *disk) { - return disk_max_parts(disk) > 1 && - !(disk->flags & GENHD_FL_NO_PART_SCAN); + return disk_max_parts(disk) > 1 && !(disk->flags & GENHD_FL_NO_PART); } static inline dev_t disk_devt(struct gendisk *disk) diff --git a/include/linux/hid.h b/include/linux/hid.h index c3478e396829e..ad97435d8e01d 100644 --- a/include/linux/hid.h +++ b/include/linux/hid.h @@ -630,8 +630,13 @@ struct hid_device { /* device report descriptor */ struct list_head debug_list; spinlock_t debug_list_lock; wait_queue_head_t debug_wait; + struct kref ref; + + unsigned int id; /* system unique id */ }; +void hiddev_free(struct kref *ref); + #define to_hid_device(pdev) \ container_of(pdev, struct hid_device, dev) diff --git a/include/linux/hrtimer.h b/include/linux/hrtimer.h index 0ee140176f102..f2044d5a652b5 100644 --- a/include/linux/hrtimer.h +++ b/include/linux/hrtimer.h @@ -531,9 +531,9 @@ extern void sysrq_timer_list_show(void); int hrtimers_prepare_cpu(unsigned int cpu); #ifdef CONFIG_HOTPLUG_CPU -int hrtimers_dead_cpu(unsigned int cpu); +int hrtimers_cpu_dying(unsigned int cpu); #else -#define hrtimers_dead_cpu NULL +#define hrtimers_cpu_dying NULL #endif #endif diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index 8499fc9220e07..ca2d81b55aace 100644 --- a/include/linux/hyperv.h +++ b/include/linux/hyperv.h @@ -770,6 +770,7 @@ enum vmbus_device_type { HV_FCOPY, HV_BACKUP, HV_DM, + HV_AZURE_BLOB, HV_UNKNOWN, }; @@ -788,6 +789,7 @@ struct vmbus_requestor { #define VMBUS_NO_RQSTOR U64_MAX #define VMBUS_RQST_ERROR (U64_MAX - 1) +#define VMBUS_RQST_ADDR_ANY U64_MAX /* NetVSC-specific */ #define VMBUS_RQST_ID_NO_RESPONSE (U64_MAX - 2) /* StorVSC-specific */ @@ -803,6 +805,12 @@ struct vmbus_device { #define VMBUS_DEFAULT_MAX_PKT_SIZE 4096 +struct vmbus_gpadl { + u32 gpadl_handle; + u32 size; + void *buffer; +}; + struct vmbus_channel { struct list_head listentry; @@ -822,7 +830,7 @@ struct vmbus_channel { bool rescind_ref; /* got rescind msg, got channel reference */ struct completion rescind_event; - u32 ringbuffer_gpadlhandle; + struct vmbus_gpadl ringbuffer_gpadlhandle; /* Allocated memory for ring buffer */ struct page *ringbuffer_page; @@ -1035,7 +1043,26 @@ struct vmbus_channel { u32 max_pkt_size; }; +#define lock_requestor(channel, flags) \ +do { \ + struct vmbus_requestor *rqstor = &(channel)->requestor; \ + \ + spin_lock_irqsave(&rqstor->req_lock, flags); \ +} while (0) + +static __always_inline void unlock_requestor(struct vmbus_channel *channel, + unsigned long flags) +{ + struct vmbus_requestor *rqstor = &channel->requestor; + + spin_unlock_irqrestore(&rqstor->req_lock, flags); +} + u64 vmbus_next_request_id(struct vmbus_channel *channel, u64 rqst_addr); +u64 __vmbus_request_addr_match(struct vmbus_channel *channel, u64 trans_id, + u64 rqst_addr); +u64 vmbus_request_addr_match(struct vmbus_channel *channel, u64 trans_id, + u64 rqst_addr); u64 vmbus_request_addr(struct vmbus_channel *channel, u64 trans_id); static inline bool is_hvsock_channel(const struct vmbus_channel *c) @@ -1168,6 +1195,13 @@ extern int vmbus_open(struct vmbus_channel *channel, extern void vmbus_close(struct vmbus_channel *channel); +extern int vmbus_sendpacket_getid(struct vmbus_channel *channel, + void *buffer, + u32 bufferLen, + u64 requestid, + u64 *trans_id, + enum vmbus_packet_type type, + u32 flags); extern int vmbus_sendpacket(struct vmbus_channel *channel, void *buffer, u32 bufferLen, @@ -1192,10 +1226,10 @@ extern int vmbus_sendpacket_mpb_desc(struct vmbus_channel *channel, extern int vmbus_establish_gpadl(struct vmbus_channel *channel, void *kbuffer, u32 size, - u32 *gpadl_handle); + struct vmbus_gpadl *gpadl); extern int vmbus_teardown_gpadl(struct vmbus_channel *channel, - u32 gpadl_handle); + struct vmbus_gpadl *gpadl); void vmbus_reset_channel_cb(struct vmbus_channel *channel); @@ -1268,6 +1302,8 @@ struct hv_device { struct vmbus_channel *channel; struct kset *channels_kset; + struct device_dma_parameters dma_parms; + u64 dma_mask; /* place holder to keep track of the dir for hv device in debugfs */ struct dentry *debug_dir; @@ -1353,6 +1389,14 @@ void vmbus_free_mmio(resource_size_t start, resource_size_t size); .guid = GUID_INIT(0xba6163d9, 0x04a1, 0x4d29, 0xb6, 0x05, \ 0x72, 0xe2, 0xff, 0xb1, 0xdc, 0x7f) +/* + * Azure Blob GUID + * {0590b792-db64-45cc-81db-b8d70c577c9e} + */ +#define HV_AZURE_BLOB_GUID \ + .guid = GUID_INIT(0x0590b792, 0xdb64, 0x45cc, 0x81, 0xdb, \ + 0xb8, 0xd7, 0x0c, 0x57, 0x7c, 0x9e) + /* * Shutdown GUID * {0e0b6031-5213-4934-818b-38d90ced39db} @@ -1592,6 +1636,11 @@ struct hyperv_service_callback { void (*callback)(void *context); }; +struct hv_dma_range { + dma_addr_t dma; + u32 mapping_size; +}; + #define MAX_SRV_VER 0x7ffffff extern bool vmbus_prep_negotiate_resp(struct icmsg_hdr *icmsghdrp, u8 *buf, u32 buflen, const int *fw_version, int fw_vercnt, diff --git a/include/linux/idr.h b/include/linux/idr.h index 6597056237770..a90573423c7b7 100644 --- a/include/linux/idr.h +++ b/include/linux/idr.h @@ -200,7 +200,7 @@ static inline void idr_preload_end(void) */ #define idr_for_each_entry_ul(idr, entry, tmp, id) \ for (tmp = 0, id = 0; \ - tmp <= id && ((entry) = idr_get_next_ul(idr, &(id))) != NULL; \ + ((entry) = tmp <= id ? idr_get_next_ul(idr, &(id)) : NULL) != NULL; \ tmp = id, ++id) /** @@ -224,10 +224,12 @@ static inline void idr_preload_end(void) * @id: Entry ID. * * Continue to iterate over entries, continuing after the current position. + * After normal termination @entry is left with the value NULL. This + * is convenient for a "not found" value. */ #define idr_for_each_entry_continue_ul(idr, entry, tmp, id) \ for (tmp = id; \ - tmp <= id && ((entry) = idr_get_next_ul(idr, &(id))) != NULL; \ + ((entry) = tmp <= id ? idr_get_next_ul(idr, &(id)) : NULL) != NULL; \ tmp = id, ++id) /* diff --git a/include/linux/if_arp.h b/include/linux/if_arp.h index 1ed52441972f9..10a1e81434cb9 100644 --- a/include/linux/if_arp.h +++ b/include/linux/if_arp.h @@ -53,6 +53,10 @@ static inline bool dev_is_mac_header_xmit(const struct net_device *dev) case ARPHRD_NONE: case ARPHRD_RAWIP: case ARPHRD_PIMREG: + /* PPP adds its l2 header automatically in ppp_start_xmit(). + * This makes it look like an l3 device to __bpf_redirect() and tcf_mirred_init(). + */ + case ARPHRD_PPP: return false; default: return true; diff --git a/include/linux/if_team.h b/include/linux/if_team.h index 5dd1657947b75..762c77d13e7dd 100644 --- a/include/linux/if_team.h +++ b/include/linux/if_team.h @@ -189,6 +189,8 @@ struct team { struct net_device *dev; /* associated netdevice */ struct team_pcpu_stats __percpu *pcpu_stats; + const struct header_ops *header_ops_cache; + struct mutex lock; /* used for overall locking, e.g. port lists write */ /* diff --git a/include/linux/iio/afe/rescale.h b/include/linux/iio/afe/rescale.h new file mode 100644 index 0000000000000..6eecb435488f1 --- /dev/null +++ b/include/linux/iio/afe/rescale.h @@ -0,0 +1,36 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ +/* + * Copyright (C) 2018 Axentia Technologies AB + */ + +#ifndef __IIO_RESCALE_H__ +#define __IIO_RESCALE_H__ + +#include +#include + +struct device; +struct rescale; + +struct rescale_cfg { + enum iio_chan_type type; + int (*props)(struct device *dev, struct rescale *rescale); +}; + +struct rescale { + const struct rescale_cfg *cfg; + struct iio_channel *source; + struct iio_chan_spec chan; + struct iio_chan_spec_ext_info *ext_info; + bool chan_processed; + s32 numerator; + s32 denominator; + s32 offset; +}; + +int rescale_process_scale(struct rescale *rescale, int scale_type, + int *val, int *val2); +int rescale_process_offset(struct rescale *rescale, int scale_type, + int scale, int scale2, int schan_off, + int *val, int *val2); +#endif /* __IIO_RESCALE_H__ */ diff --git a/include/linux/iio/iio.h b/include/linux/iio/iio.h index 324561b7a5e86..9b43559e3acfd 100644 --- a/include/linux/iio/iio.h +++ b/include/linux/iio/iio.h @@ -542,6 +542,8 @@ struct iio_dev { }; int iio_device_id(struct iio_dev *indio_dev); +int iio_device_get_current_mode(struct iio_dev *indio_dev); +bool iio_buffer_enabled(struct iio_dev *indio_dev); const struct iio_chan_spec *iio_find_channel_from_si(struct iio_dev *indio_dev, int si); @@ -573,6 +575,8 @@ int __devm_iio_device_register(struct device *dev, struct iio_dev *indio_dev, int iio_push_event(struct iio_dev *indio_dev, u64 ev_code, s64 timestamp); int iio_device_claim_direct_mode(struct iio_dev *indio_dev); void iio_device_release_direct_mode(struct iio_dev *indio_dev); +int iio_device_claim_buffer_mode(struct iio_dev *indio_dev); +void iio_device_release_buffer_mode(struct iio_dev *indio_dev); extern struct bus_type iio_bus_type; @@ -671,16 +675,6 @@ struct iio_dev *devm_iio_device_alloc(struct device *parent, int sizeof_priv); __printf(2, 3) struct iio_trigger *devm_iio_trigger_alloc(struct device *parent, const char *fmt, ...); -/** - * iio_buffer_enabled() - helper function to test if the buffer is enabled - * @indio_dev: IIO device structure for device - **/ -static inline bool iio_buffer_enabled(struct iio_dev *indio_dev) -{ - return indio_dev->currentmode - & (INDIO_BUFFER_TRIGGERED | INDIO_BUFFER_HARDWARE | - INDIO_BUFFER_SOFTWARE); -} /** * iio_get_debugfs_dentry() - helper function to get the debugfs_dentry diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h index 34e1e190a3523..4d1df4f8c12c1 100644 --- a/include/linux/intel-iommu.h +++ b/include/linux/intel-iommu.h @@ -604,7 +604,7 @@ struct intel_iommu { struct iopf_queue *iopf_queue; unsigned char iopfq_name[16]; struct q_inval *qi; /* Queued invalidation info */ - u32 *iommu_state; /* Store iommu states between suspend and resume.*/ + u32 iommu_state[MAX_SR_DMAR_REGS]; /* Store iommu states between suspend and resume.*/ #ifdef CONFIG_IRQ_REMAP struct ir_table *ir_table; /* Interrupt remapping info */ diff --git a/include/linux/ipv6.h b/include/linux/ipv6.h index d1f3864307959..b6fb76568b01a 100644 --- a/include/linux/ipv6.h +++ b/include/linux/ipv6.h @@ -33,6 +33,7 @@ struct ipv6_devconf { __s32 accept_ra_defrtr; __u32 ra_defrtr_metric; __s32 accept_ra_min_hop_limit; + __s32 accept_ra_min_lft; __s32 accept_ra_pinfo; __s32 ignore_routes_with_linkdown; #ifdef CONFIG_IPV6_ROUTER_PREF diff --git a/include/linux/jbd2.h b/include/linux/jbd2.h index ade8a6d7acff9..d19f527ade3bb 100644 --- a/include/linux/jbd2.h +++ b/include/linux/jbd2.h @@ -58,10 +58,10 @@ extern ushort jbd2_journal_enable_debug; void __jbd2_debug(int level, const char *file, const char *func, unsigned int line, const char *fmt, ...); -#define jbd_debug(n, fmt, a...) \ +#define jbd2_debug(n, fmt, a...) \ __jbd2_debug((n), __FILE__, __func__, __LINE__, (fmt), ##a) #else -#define jbd_debug(n, fmt, a...) no_printk(fmt, ##a) +#define jbd2_debug(n, fmt, a...) no_printk(fmt, ##a) #endif extern void *jbd2_alloc(size_t size, gfp_t flags); @@ -554,9 +554,6 @@ struct transaction_chp_stats_s { * ->j_list_lock * * j_state_lock - * ->t_handle_lock - * - * j_state_lock * ->j_list_lock (journal_unmap_buffer) * */ @@ -594,7 +591,7 @@ struct transaction_s */ unsigned long t_log_start; - /* + /* * Number of buffers on the t_buffers list [j_list_lock, no locks * needed for jbd2 thread] */ @@ -1538,6 +1535,8 @@ extern int jbd2_journal_flush(journal_t *journal, unsigned int flags); extern void jbd2_journal_lock_updates (journal_t *); extern void jbd2_journal_unlock_updates (journal_t *); +void jbd2_journal_wait_updates(journal_t *); + extern journal_t * jbd2_journal_init_dev(struct block_device *bdev, struct block_device *fs_dev, unsigned long long start, int len, int bsize); diff --git a/include/linux/kallsyms.h b/include/linux/kallsyms.h index a1d6fc82d7f06..eae9f423bd648 100644 --- a/include/linux/kallsyms.h +++ b/include/linux/kallsyms.h @@ -74,11 +74,11 @@ static inline void *dereference_symbol_descriptor(void *ptr) return ptr; } +#ifdef CONFIG_KALLSYMS int kallsyms_on_each_symbol(int (*fn)(void *, const char *, struct module *, unsigned long), void *data); -#ifdef CONFIG_KALLSYMS /* Lookup the address for a symbol. Returns 0 if not found. */ unsigned long kallsyms_lookup_name(const char *name); @@ -172,6 +172,11 @@ static inline bool kallsyms_show_value(const struct cred *cred) return false; } +static inline int kallsyms_on_each_symbol(int (*fn)(void *, const char *, struct module *, + unsigned long), void *data) +{ + return -EOPNOTSUPP; +} #endif /*CONFIG_KALLSYMS*/ static inline void print_ip_sym(const char *loglvl, unsigned long ip) diff --git a/include/linux/kasan.h b/include/linux/kasan.h index f407e937241af..00cbe31c87486 100644 --- a/include/linux/kasan.h +++ b/include/linux/kasan.h @@ -471,10 +471,10 @@ static inline void kasan_free_shadow(const struct vm_struct *vm) {} #endif /* (CONFIG_KASAN_GENERIC || CONFIG_KASAN_SW_TAGS) && !CONFIG_KASAN_VMALLOC */ -#ifdef CONFIG_KASAN_INLINE +#ifdef CONFIG_KASAN void kasan_non_canonical_hook(unsigned long addr); -#else /* CONFIG_KASAN_INLINE */ +#else /* CONFIG_KASAN */ static inline void kasan_non_canonical_hook(unsigned long addr) { } -#endif /* CONFIG_KASAN_INLINE */ +#endif /* CONFIG_KASAN */ #endif /* LINUX_KASAN_H */ diff --git a/include/linux/kprobes.h b/include/linux/kprobes.h index 5f8dfeb293749..ccc7e857871fa 100644 --- a/include/linux/kprobes.h +++ b/include/linux/kprobes.h @@ -139,7 +139,7 @@ static inline int kprobe_ftrace(struct kprobe *p) * */ struct kretprobe_holder { - struct kretprobe *rp; + struct kretprobe __rcu *rp; refcount_t ref; }; @@ -232,10 +232,7 @@ unsigned long kretprobe_trampoline_handler(struct pt_regs *regs, static nokprobe_inline struct kretprobe *get_kretprobe(struct kretprobe_instance *ri) { - RCU_LOCKDEP_WARN(!rcu_read_lock_any_held(), - "Kretprobe is accessed from instance under preemptive context"); - - return READ_ONCE(ri->rph->rp); + return rcu_dereference_check(ri->rph->rp, rcu_read_lock_any_held()); } #else /* CONFIG_KRETPROBES */ diff --git a/include/linux/libata.h b/include/linux/libata.h index 4d1cbc06da167..1f88ab1710be5 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h @@ -191,7 +191,7 @@ enum { ATA_LFLAG_NO_LPM = (1 << 8), /* disable LPM on this link */ ATA_LFLAG_RST_ONCE = (1 << 9), /* limit recovery to one reset */ ATA_LFLAG_CHANGED = (1 << 10), /* LPM state changed on this link */ - ATA_LFLAG_NO_DB_DELAY = (1 << 11), /* no debounce delay on link resume */ + ATA_LFLAG_NO_DEBOUNCE_DELAY = (1 << 11), /* no debounce delay on link resume */ /* struct ata_port flags */ ATA_FLAG_SLAVE_POSS = (1 << 0), /* host supports slave dev */ @@ -264,6 +264,10 @@ enum { ATA_HOST_PARALLEL_SCAN = (1 << 2), /* Ports on this host can be scanned in parallel */ ATA_HOST_IGNORE_ATA = (1 << 3), /* Ignore ATA devices on this host. */ + ATA_HOST_NO_PART = (1 << 4), /* Host does not support partial */ + ATA_HOST_NO_SSC = (1 << 5), /* Host does not support slumber */ + ATA_HOST_NO_DEVSLP = (1 << 6), /* Host does not support devslp */ + /* bits 24:31 of host->flags are reserved for LLD specific flags */ /* various lengths of time */ @@ -297,7 +301,7 @@ enum { * advised to wait only for the following duration before * doing SRST. */ - ATA_TMOUT_PMP_SRST_WAIT = 5000, + ATA_TMOUT_PMP_SRST_WAIT = 10000, /* When the LPM policy is set to ATA_LPM_MAX_POWER, there might * be a spurious PHY event, so ignore the first PHY event that diff --git a/include/linux/lsm_hook_defs.h b/include/linux/lsm_hook_defs.h index 4c10750865c20..f68696d232223 100644 --- a/include/linux/lsm_hook_defs.h +++ b/include/linux/lsm_hook_defs.h @@ -48,7 +48,7 @@ LSM_HOOK(int, 0, quota_on, struct dentry *dentry) LSM_HOOK(int, 0, syslog, int type) LSM_HOOK(int, 0, settime, const struct timespec64 *ts, const struct timezone *tz) -LSM_HOOK(int, 0, vm_enough_memory, struct mm_struct *mm, long pages) +LSM_HOOK(int, 1, vm_enough_memory, struct mm_struct *mm, long pages) LSM_HOOK(int, 0, bprm_creds_for_exec, struct linux_binprm *bprm) LSM_HOOK(int, 0, bprm_creds_from_file, struct linux_binprm *bprm, struct file *file) LSM_HOOK(int, 0, bprm_check_security, struct linux_binprm *bprm) @@ -265,7 +265,7 @@ LSM_HOOK(void, LSM_RET_VOID, release_secctx, char *secdata, u32 seclen) LSM_HOOK(void, LSM_RET_VOID, inode_invalidate_secctx, struct inode *inode) LSM_HOOK(int, 0, inode_notifysecctx, struct inode *inode, void *ctx, u32 ctxlen) LSM_HOOK(int, 0, inode_setsecctx, struct dentry *dentry, void *ctx, u32 ctxlen) -LSM_HOOK(int, 0, inode_getsecctx, struct inode *inode, void **ctx, +LSM_HOOK(int, -EOPNOTSUPP, inode_getsecctx, struct inode *inode, void **ctx, u32 *ctxlen) #if defined(CONFIG_SECURITY) && defined(CONFIG_WATCH_QUEUE) diff --git a/include/linux/mcb.h b/include/linux/mcb.h index f6efb16f9d1b4..91ec9a83149e8 100644 --- a/include/linux/mcb.h +++ b/include/linux/mcb.h @@ -63,7 +63,6 @@ static inline struct mcb_bus *to_mcb_bus(struct device *dev) struct mcb_device { struct device dev; struct mcb_bus *bus; - bool is_added; struct mcb_driver *driver; u16 id; int inst; diff --git a/include/linux/mem_encrypt.h b/include/linux/mem_encrypt.h index 5c4a18a91f898..ae45263892611 100644 --- a/include/linux/mem_encrypt.h +++ b/include/linux/mem_encrypt.h @@ -16,10 +16,6 @@ #include -#else /* !CONFIG_ARCH_HAS_MEM_ENCRYPT */ - -static inline bool mem_encrypt_active(void) { return false; } - #endif /* CONFIG_ARCH_HAS_MEM_ENCRYPT */ #ifdef CONFIG_AMD_MEM_ENCRYPT diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h index 4f189b17dafcc..94df87cb69c3b 100644 --- a/include/linux/memcontrol.h +++ b/include/linux/memcontrol.h @@ -310,6 +310,11 @@ struct mem_cgroup { atomic_long_t memory_events[MEMCG_NR_MEMORY_EVENTS]; atomic_long_t memory_events_local[MEMCG_NR_MEMORY_EVENTS]; + /* + * Hint of reclaim pressure for socket memroy management. Note + * that this indicator should NOT be used in legacy cgroup mode + * where socket memory is accounted/charged separately. + */ unsigned long socket_pressure; /* Legacy tcp memory accounting */ @@ -1627,8 +1632,8 @@ void mem_cgroup_sk_alloc(struct sock *sk); void mem_cgroup_sk_free(struct sock *sk); static inline bool mem_cgroup_under_socket_pressure(struct mem_cgroup *memcg) { - if (!cgroup_subsys_on_dfl(memory_cgrp_subsys) && memcg->tcpmem_pressure) - return true; + if (!cgroup_subsys_on_dfl(memory_cgrp_subsys)) + return !!memcg->tcpmem_pressure; do { if (time_before(jiffies, memcg->socket_pressure)) return true; diff --git a/include/linux/mfd/core.h b/include/linux/mfd/core.h index 0bc7cba798a34..b449765b5cac1 100644 --- a/include/linux/mfd/core.h +++ b/include/linux/mfd/core.h @@ -92,7 +92,7 @@ struct mfd_cell { * (above) when matching OF nodes with devices that have identical * compatible strings */ - const u64 of_reg; + u64 of_reg; /* Set to 'true' to use 'of_reg' (above) - allows for of_reg=0 */ bool use_of_reg; diff --git a/include/linux/micrel_phy.h b/include/linux/micrel_phy.h index 3d43c60b49fa8..2d0f75ffa3233 100644 --- a/include/linux/micrel_phy.h +++ b/include/linux/micrel_phy.h @@ -37,9 +37,9 @@ #define PHY_ID_KSZ9477 0x00221631 /* struct phy_device dev_flags definitions */ -#define MICREL_PHY_50MHZ_CLK 0x00000001 -#define MICREL_PHY_FXEN 0x00000002 -#define MICREL_KSZ8_P1_ERRATA 0x00000003 +#define MICREL_PHY_50MHZ_CLK BIT(0) +#define MICREL_PHY_FXEN BIT(1) +#define MICREL_KSZ8_P1_ERRATA BIT(2) #define MICREL_KSZ9021_EXTREG_CTRL 0xB #define MICREL_KSZ9021_EXTREG_DATA_WRITE 0xC diff --git a/include/linux/mlx5/driver.h b/include/linux/mlx5/driver.h index 26095c0fd781d..664528ca82a8a 100644 --- a/include/linux/mlx5/driver.h +++ b/include/linux/mlx5/driver.h @@ -493,6 +493,10 @@ struct mlx5_fc_stats { unsigned long next_query; unsigned long sampling_interval; /* jiffies */ u32 *bulk_query_out; + int bulk_query_len; + size_t num_counters; + bool bulk_query_alloc_failed; + unsigned long next_bulk_query_alloc; struct mlx5_fc_pool fc_pool; }; diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h index 0c0c9a0fdf578..a4ec7269b6295 100644 --- a/include/linux/mmc/host.h +++ b/include/linux/mmc/host.h @@ -428,6 +428,7 @@ struct mmc_host { unsigned int retune_paused:1; /* re-tuning is temporarily disabled */ unsigned int retune_crc_disable:1; /* don't trigger retune upon crc */ unsigned int can_dma_map_merge:1; /* merging can be used */ + unsigned int vqmmc_enabled:1; /* vqmmc regulator is enabled */ int rescan_disable; /* disable card detection */ int rescan_entered; /* used with nonremovable devices */ @@ -574,6 +575,8 @@ static inline int mmc_regulator_set_vqmmc(struct mmc_host *mmc, #endif int mmc_regulator_get_supply(struct mmc_host *mmc); +int mmc_regulator_enable_vqmmc(struct mmc_host *mmc); +void mmc_regulator_disable_vqmmc(struct mmc_host *mmc); static inline int mmc_card_is_removable(struct mmc_host *host) { diff --git a/include/linux/msi.h b/include/linux/msi.h index e616f94c7c585..7e5c13f4e41b0 100644 --- a/include/linux/msi.h +++ b/include/linux/msi.h @@ -2,7 +2,7 @@ #ifndef LINUX_MSI_H #define LINUX_MSI_H -#include +#include #include #include @@ -68,6 +68,42 @@ static inline void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg) typedef void (*irq_write_msi_msg_t)(struct msi_desc *desc, struct msi_msg *msg); +/** + * pci_msi_desc - PCI/MSI specific MSI descriptor data + * + * @msi_mask: [PCI MSI] MSI cached mask bits + * @msix_ctrl: [PCI MSI-X] MSI-X cached per vector control bits + * @is_msix: [PCI MSI/X] True if MSI-X + * @multiple: [PCI MSI/X] log2 num of messages allocated + * @multi_cap: [PCI MSI/X] log2 num of messages supported + * @can_mask: [PCI MSI/X] Masking supported? + * @is_64: [PCI MSI/X] Address size: 0=32bit 1=64bit + * @entry_nr: [PCI MSI/X] Entry which is described by this descriptor + * @default_irq:[PCI MSI/X] The default pre-assigned non-MSI irq + * @mask_pos: [PCI MSI] Mask register position + * @mask_base: [PCI MSI-X] Mask register base address + */ +struct pci_msi_desc { + union { + u32 msi_mask; + u32 msix_ctrl; + }; + struct { + u8 is_msix : 1; + u8 multiple : 3; + u8 multi_cap : 3; + u8 can_mask : 1; + u8 is_64 : 1; + u8 is_virtual : 1; + u16 entry_nr; + unsigned default_irq; + } msi_attrib; + union { + u8 mask_pos; + void __iomem *mask_base; + }; +}; + /** * platform_msi_desc - Platform device specific msi descriptor data * @msi_priv_data: Pointer to platform private data @@ -107,17 +143,7 @@ struct ti_sci_inta_msi_desc { * address or data changes * @write_msi_msg_data: Data parameter for the callback. * - * @msi_mask: [PCI MSI] MSI cached mask bits - * @msix_ctrl: [PCI MSI-X] MSI-X cached per vector control bits - * @is_msix: [PCI MSI/X] True if MSI-X - * @multiple: [PCI MSI/X] log2 num of messages allocated - * @multi_cap: [PCI MSI/X] log2 num of messages supported - * @maskbit: [PCI MSI/X] Mask-Pending bit supported? - * @is_64: [PCI MSI/X] Address size: 0=32bit 1=64bit - * @entry_nr: [PCI MSI/X] Entry which is described by this descriptor - * @default_irq:[PCI MSI/X] The default pre-assigned non-MSI irq - * @mask_pos: [PCI MSI] Mask register position - * @mask_base: [PCI MSI-X] Mask register base address + * @pci: [PCI] PCI speficic msi descriptor data * @platform: [platform] Platform device specific msi descriptor data * @fsl_mc: [fsl-mc] FSL MC device specific msi descriptor data * @inta: [INTA] TISCI based INTA specific msi descriptor data @@ -138,38 +164,10 @@ struct msi_desc { void *write_msi_msg_data; union { - /* PCI MSI/X specific data */ - struct { - union { - u32 msi_mask; - u32 msix_ctrl; - }; - struct { - u8 is_msix : 1; - u8 multiple : 3; - u8 multi_cap : 3; - u8 can_mask : 1; - u8 is_64 : 1; - u8 is_virtual : 1; - u16 entry_nr; - unsigned default_irq; - } msi_attrib; - union { - u8 mask_pos; - void __iomem *mask_base; - }; - }; - - /* - * Non PCI variants add their data structure here. New - * entries need to use a named structure. We want - * proper name spaces for this. The PCI part is - * anonymous for now as it would require an immediate - * tree wide cleanup. - */ - struct platform_msi_desc platform; - struct fsl_mc_msi_desc fsl_mc; - struct ti_sci_inta_msi_desc inta; + struct pci_msi_desc pci; + struct platform_msi_desc platform; + struct fsl_mc_msi_desc fsl_mc; + struct ti_sci_inta_msi_desc inta; }; }; @@ -218,13 +216,8 @@ static inline void msi_desc_set_iommu_cookie(struct msi_desc *desc, for_each_msi_entry((desc), &(pdev)->dev) struct pci_dev *msi_desc_to_pci_dev(struct msi_desc *desc); -void *msi_desc_to_pci_sysdata(struct msi_desc *desc); void pci_write_msi_msg(unsigned int irq, struct msi_msg *msg); #else /* CONFIG_PCI_MSI */ -static inline void *msi_desc_to_pci_sysdata(struct msi_desc *desc) -{ - return NULL; -} static inline void pci_write_msi_msg(unsigned int irq, struct msi_msg *msg) { } @@ -239,9 +232,19 @@ void __pci_write_msi_msg(struct msi_desc *entry, struct msi_msg *msg); void pci_msi_mask_irq(struct irq_data *data); void pci_msi_unmask_irq(struct irq_data *data); +#ifdef CONFIG_SYSFS const struct attribute_group **msi_populate_sysfs(struct device *dev); void msi_destroy_sysfs(struct device *dev, const struct attribute_group **msi_irq_groups); +#else +static inline const struct attribute_group **msi_populate_sysfs(struct device *dev) +{ + return NULL; +} +static inline void msi_destroy_sysfs(struct device *dev, const struct attribute_group **msi_irq_groups) +{ +} +#endif /* * The arch hooks to setup up msi irqs. Default functions are implemented @@ -294,7 +297,6 @@ struct msi_domain_info; * @msi_free: Domain specific function to free a MSI interrupts * @msi_check: Callback for verification of the domain/info/dev data * @msi_prepare: Prepare the allocation of the interrupts in the domain - * @msi_finish: Optional callback to finalize the allocation * @set_desc: Set the msi descriptor for an interrupt * @handle_error: Optional error handler if the allocation fails * @domain_alloc_irqs: Optional function to override the default allocation @@ -302,12 +304,11 @@ struct msi_domain_info; * @domain_free_irqs: Optional function to override the default free * function. * - * @get_hwirq, @msi_init and @msi_free are callbacks used by - * msi_create_irq_domain() and related interfaces + * @get_hwirq, @msi_init and @msi_free are callbacks used by the underlying + * irqdomain. * - * @msi_check, @msi_prepare, @msi_finish, @set_desc and @handle_error - * are callbacks used by msi_domain_alloc_irqs() and related - * interfaces which are based on msi_desc. + * @msi_check, @msi_prepare, @handle_error and @set_desc are callbacks used by + * msi_domain_alloc/free_irqs(). * * @domain_alloc_irqs, @domain_free_irqs can be used to override the * default allocation/free functions (__msi_domain_alloc/free_irqs). This @@ -341,7 +342,6 @@ struct msi_domain_ops { int (*msi_prepare)(struct irq_domain *domain, struct device *dev, int nvec, msi_alloc_info_t *arg); - void (*msi_finish)(msi_alloc_info_t *arg, int retval); void (*set_desc)(msi_alloc_info_t *arg, struct msi_desc *desc); int (*handle_error)(struct irq_domain *domain, @@ -448,7 +448,6 @@ void *platform_msi_get_host_data(struct irq_domain *domain); #endif /* CONFIG_GENERIC_MSI_IRQ_DOMAIN */ #ifdef CONFIG_PCI_MSI_IRQ_DOMAIN -void pci_msi_domain_write_msg(struct irq_data *irq_data, struct msi_msg *msg); struct irq_domain *pci_msi_create_irq_domain(struct fwnode_handle *fwnode, struct msi_domain_info *info, struct irq_domain *parent); diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index b5df2e59a51d3..829ebde5d50d5 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -2978,6 +2978,7 @@ struct net_device *__dev_get_by_flags(struct net *net, unsigned short flags, struct net_device *dev_get_by_name(struct net *net, const char *name); struct net_device *dev_get_by_name_rcu(struct net *net, const char *name); struct net_device *__dev_get_by_name(struct net *net, const char *name); +bool netdev_name_in_use(struct net *net, const char *name); int dev_alloc_name(struct net_device *dev, const char *name); int dev_open(struct net_device *dev, struct netlink_ext_ack *extack); void dev_close(struct net_device *dev); @@ -5498,5 +5499,6 @@ extern struct net_device *blackhole_netdev; #define DEV_STATS_INC(DEV, FIELD) atomic_long_inc(&(DEV)->stats.__##FIELD) #define DEV_STATS_ADD(DEV, FIELD, VAL) \ atomic_long_add((VAL), &(DEV)->stats.__##FIELD) +#define DEV_STATS_READ(DEV, FIELD) atomic_long_read(&(DEV)->stats.__##FIELD) #endif /* _LINUX_NETDEVICE_H */ diff --git a/include/linux/netfilter/nf_conntrack_sctp.h b/include/linux/netfilter/nf_conntrack_sctp.h index 625f491b95de8..fb31312825ae5 100644 --- a/include/linux/netfilter/nf_conntrack_sctp.h +++ b/include/linux/netfilter/nf_conntrack_sctp.h @@ -9,6 +9,7 @@ struct ip_ct_sctp { enum sctp_conntrack state; __be32 vtag[IP_CT_DIR_MAX]; + u8 init[IP_CT_DIR_MAX]; u8 last_dir; u8 flags; }; diff --git a/include/linux/nfs_fs_sb.h b/include/linux/nfs_fs_sb.h index da9ef0ab9b4b6..5e065f16d061d 100644 --- a/include/linux/nfs_fs_sb.h +++ b/include/linux/nfs_fs_sb.h @@ -48,6 +48,7 @@ struct nfs_client { #define NFS_CS_NOPING 6 /* - don't ping on connect */ #define NFS_CS_DS 7 /* - Server is a DS */ #define NFS_CS_REUSEPORT 8 /* - reuse src port on reconnect */ +#define NFS_CS_PNFS 9 /* - Server used for pnfs */ struct sockaddr_storage cl_addr; /* server identifier */ size_t cl_addrlen; char * cl_hostname; /* hostname of server */ diff --git a/include/linux/nfs_page.h b/include/linux/nfs_page.h index f0373a6cb5fb6..40aa09a21f75d 100644 --- a/include/linux/nfs_page.h +++ b/include/linux/nfs_page.h @@ -145,7 +145,9 @@ extern void nfs_unlock_request(struct nfs_page *req); extern void nfs_unlock_and_release_request(struct nfs_page *); extern struct nfs_page *nfs_page_group_lock_head(struct nfs_page *req); extern int nfs_page_group_lock_subrequests(struct nfs_page *head); -extern void nfs_join_page_group(struct nfs_page *head, struct inode *inode); +extern void nfs_join_page_group(struct nfs_page *head, + struct nfs_commit_info *cinfo, + struct inode *inode); extern int nfs_page_group_lock(struct nfs_page *); extern void nfs_page_group_unlock(struct nfs_page *); extern bool nfs_page_group_sync_on_bit(struct nfs_page *, unsigned int); diff --git a/include/linux/nls.h b/include/linux/nls.h index 499e486b3722d..e0bf8367b274a 100644 --- a/include/linux/nls.h +++ b/include/linux/nls.h @@ -47,7 +47,7 @@ enum utf16_endian { /* nls_base.c */ extern int __register_nls(struct nls_table *, struct module *); extern int unregister_nls(struct nls_table *); -extern struct nls_table *load_nls(char *); +extern struct nls_table *load_nls(const char *charset); extern void unload_nls(struct nls_table *); extern struct nls_table *load_nls_default(void); #define register_nls(nls) __register_nls((nls), THIS_MODULE) diff --git a/include/linux/of.h b/include/linux/of.h index 140671cb746a2..6f15e8b0f9d10 100644 --- a/include/linux/of.h +++ b/include/linux/of.h @@ -574,7 +574,7 @@ void *of_kexec_alloc_and_setup_fdt(const struct kimage *image, unsigned long initrd_len, const char *cmdline, size_t extra_fdt_size); int ima_get_kexec_buffer(void **addr, size_t *size); -int ima_free_kexec_buffer(void); +int __init ima_free_kexec_buffer(void); #else /* CONFIG_OF */ static inline void of_core_init(void) diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h index 6d93e5c30112f..77429ac93fe7b 100644 --- a/include/linux/pci_ids.h +++ b/include/linux/pci_ids.h @@ -556,6 +556,7 @@ #define PCI_DEVICE_ID_AMD_17H_M30H_DF_F3 0x1493 #define PCI_DEVICE_ID_AMD_17H_M60H_DF_F3 0x144b #define PCI_DEVICE_ID_AMD_17H_M70H_DF_F3 0x1443 +#define PCI_DEVICE_ID_AMD_VANGOGH_USB 0x163a #define PCI_DEVICE_ID_AMD_19H_DF_F3 0x1653 #define PCI_DEVICE_ID_AMD_19H_M10H_DF_F3 0x14b0 #define PCI_DEVICE_ID_AMD_19H_M40H_DF_F3 0x167c @@ -2093,6 +2094,9 @@ #define PCI_DEVICE_ID_ICE_1712 0x1712 #define PCI_DEVICE_ID_VT1724 0x1724 +#define PCI_VENDOR_ID_MICROSOFT 0x1414 +#define PCI_DEVICE_ID_HYPERV_VIDEO 0x5353 + #define PCI_VENDOR_ID_OXSEMI 0x1415 #define PCI_DEVICE_ID_OXSEMI_12PCI840 0x8403 #define PCI_DEVICE_ID_OXSEMI_PCIe840 0xC000 diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h index c3464f66833c5..e65eaf66a4412 100644 --- a/include/linux/perf_event.h +++ b/include/linux/perf_event.h @@ -750,6 +750,8 @@ struct perf_event { struct pid_namespace *ns; u64 id; + atomic64_t lost_samples; + u64 (*clock)(void); perf_overflow_handler_t overflow_handler; void *overflow_handler_context; @@ -1085,15 +1087,31 @@ extern int perf_event_output(struct perf_event *event, struct pt_regs *regs); static inline bool -is_default_overflow_handler(struct perf_event *event) +__is_default_overflow_handler(perf_overflow_handler_t overflow_handler) { - if (likely(event->overflow_handler == perf_event_output_forward)) + if (likely(overflow_handler == perf_event_output_forward)) return true; - if (unlikely(event->overflow_handler == perf_event_output_backward)) + if (unlikely(overflow_handler == perf_event_output_backward)) return true; return false; } +#define is_default_overflow_handler(event) \ + __is_default_overflow_handler((event)->overflow_handler) + +#ifdef CONFIG_BPF_SYSCALL +static inline bool uses_default_overflow_handler(struct perf_event *event) +{ + if (likely(is_default_overflow_handler(event))) + return true; + + return __is_default_overflow_handler(event->orig_overflow_handler); +} +#else +#define uses_default_overflow_handler(event) \ + is_default_overflow_handler(event) +#endif + extern void perf_event_header__init_id(struct perf_event_header *header, struct perf_sample_data *data, diff --git a/include/linux/platform_data/x86/asus-wmi.h b/include/linux/platform_data/x86/asus-wmi.h index 17dc5cb6f3f29..1b20b5e7a76ba 100644 --- a/include/linux/platform_data/x86/asus-wmi.h +++ b/include/linux/platform_data/x86/asus-wmi.h @@ -64,6 +64,7 @@ #define ASUS_WMI_DEVID_PANEL_OD 0x00050019 #define ASUS_WMI_DEVID_CAMERA 0x00060013 #define ASUS_WMI_DEVID_LID_FLIP 0x00060062 +#define ASUS_WMI_DEVID_LID_FLIP_ROG 0x00060077 /* Storage */ #define ASUS_WMI_DEVID_CARDREADER 0x00080013 diff --git a/include/linux/platform_data/x86/soc.h b/include/linux/platform_data/x86/soc.h new file mode 100644 index 0000000000000..da05f425587a0 --- /dev/null +++ b/include/linux/platform_data/x86/soc.h @@ -0,0 +1,65 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ +/* + * Helpers for Intel SoC model detection + * + * Copyright (c) 2019, Intel Corporation. + */ + +#ifndef __PLATFORM_DATA_X86_SOC_H +#define __PLATFORM_DATA_X86_SOC_H + +#if IS_ENABLED(CONFIG_X86) + +#include +#include + +#define SOC_INTEL_IS_CPU(soc, type) \ +static inline bool soc_intel_is_##soc(void) \ +{ \ + static const struct x86_cpu_id soc##_cpu_ids[] = { \ + X86_MATCH_INTEL_FAM6_MODEL(type, NULL), \ + {} \ + }; \ + const struct x86_cpu_id *id; \ + \ + id = x86_match_cpu(soc##_cpu_ids); \ + if (id) \ + return true; \ + return false; \ +} + +SOC_INTEL_IS_CPU(byt, ATOM_SILVERMONT); +SOC_INTEL_IS_CPU(cht, ATOM_AIRMONT); +SOC_INTEL_IS_CPU(apl, ATOM_GOLDMONT); +SOC_INTEL_IS_CPU(glk, ATOM_GOLDMONT_PLUS); +SOC_INTEL_IS_CPU(cml, KABYLAKE_L); + +#else /* IS_ENABLED(CONFIG_X86) */ + +static inline bool soc_intel_is_byt(void) +{ + return false; +} + +static inline bool soc_intel_is_cht(void) +{ + return false; +} + +static inline bool soc_intel_is_apl(void) +{ + return false; +} + +static inline bool soc_intel_is_glk(void) +{ + return false; +} + +static inline bool soc_intel_is_cml(void) +{ + return false; +} +#endif /* IS_ENABLED(CONFIG_X86) */ + +#endif /* __PLATFORM_DATA_X86_SOC_H */ diff --git a/include/linux/platform_device.h b/include/linux/platform_device.h index 8aefdc0099c86..72cf70857b85f 100644 --- a/include/linux/platform_device.h +++ b/include/linux/platform_device.h @@ -31,7 +31,11 @@ struct platform_device { struct resource *resource; const struct platform_device_id *id_entry; - char *driver_override; /* Driver name to force a match */ + /* + * Driver name to force a match. Do not set directly, because core + * frees it. Use driver_set_override() to set or clear it. + */ + const char *driver_override; /* MFD cell pointer */ struct mfd_cell *mfd_cell; diff --git a/include/linux/preempt.h b/include/linux/preempt.h index 4d244e295e855..9c4534a69a8f7 100644 --- a/include/linux/preempt.h +++ b/include/linux/preempt.h @@ -77,14 +77,42 @@ /* preempt_count() and related functions, depends on PREEMPT_NEED_RESCHED */ #include +/** + * interrupt_context_level - return interrupt context level + * + * Returns the current interrupt context level. + * 0 - normal context + * 1 - softirq context + * 2 - hardirq context + * 3 - NMI context + */ +static __always_inline unsigned char interrupt_context_level(void) +{ + unsigned long pc = preempt_count(); + unsigned char level = 0; + + level += !!(pc & (NMI_MASK)); + level += !!(pc & (NMI_MASK | HARDIRQ_MASK)); + level += !!(pc & (NMI_MASK | HARDIRQ_MASK | SOFTIRQ_OFFSET)); + + return level; +} + +/* + * These macro definitions avoid redundant invocations of preempt_count() + * because such invocations would result in redundant loads given that + * preempt_count() is commonly implemented with READ_ONCE(). + */ + #define nmi_count() (preempt_count() & NMI_MASK) #define hardirq_count() (preempt_count() & HARDIRQ_MASK) #ifdef CONFIG_PREEMPT_RT # define softirq_count() (current->softirq_disable_cnt & SOFTIRQ_MASK) +# define irq_count() ((preempt_count() & (NMI_MASK | HARDIRQ_MASK)) | softirq_count()) #else # define softirq_count() (preempt_count() & SOFTIRQ_MASK) +# define irq_count() (preempt_count() & (NMI_MASK | HARDIRQ_MASK | SOFTIRQ_MASK)) #endif -#define irq_count() (nmi_count() | hardirq_count() | softirq_count()) /* * Macros to retrieve the current execution context: @@ -97,7 +125,11 @@ #define in_nmi() (nmi_count()) #define in_hardirq() (hardirq_count()) #define in_serving_softirq() (softirq_count() & SOFTIRQ_OFFSET) -#define in_task() (!(in_nmi() | in_hardirq() | in_serving_softirq())) +#ifdef CONFIG_PREEMPT_RT +# define in_task() (!((preempt_count() & (NMI_MASK | HARDIRQ_MASK)) | in_serving_softirq())) +#else +# define in_task() (!(preempt_count() & (NMI_MASK | HARDIRQ_MASK | SOFTIRQ_OFFSET))) +#endif /* * The following macros are deprecated and should not be used in new code: diff --git a/include/linux/pwm.h b/include/linux/pwm.h index c7bfa64aeb142..03c42e742dfe7 100644 --- a/include/linux/pwm.h +++ b/include/linux/pwm.h @@ -44,8 +44,8 @@ struct pwm_args { }; enum { - PWMF_REQUESTED = 1 << 0, - PWMF_EXPORTED = 1 << 1, + PWMF_REQUESTED = 0, + PWMF_EXPORTED = 1, }; /* diff --git a/include/linux/quota.h b/include/linux/quota.h index 18ebd39c94871..fc52cd623d295 100644 --- a/include/linux/quota.h +++ b/include/linux/quota.h @@ -285,7 +285,9 @@ static inline void dqstats_dec(unsigned int type) #define DQ_FAKE_B 3 /* no limits only usage */ #define DQ_READ_B 4 /* dquot was read into memory */ #define DQ_ACTIVE_B 5 /* dquot is active (dquot_release not called) */ -#define DQ_LASTSET_B 6 /* Following 6 bits (see QIF_) are reserved\ +#define DQ_RELEASING_B 6 /* dquot is in releasing_dquots list waiting + * to be cleaned up */ +#define DQ_LASTSET_B 7 /* Following 6 bits (see QIF_) are reserved\ * for the mask of entries set via SETQUOTA\ * quotactl. They are set under dq_data_lock\ * and the quota format handling dquot can\ diff --git a/include/linux/quotaops.h b/include/linux/quotaops.h index a0f6668924d3e..4bc8ff2a66143 100644 --- a/include/linux/quotaops.h +++ b/include/linux/quotaops.h @@ -56,7 +56,7 @@ static inline bool dquot_is_busy(struct dquot *dquot) { if (test_bit(DQ_MOD_B, &dquot->dq_flags)) return true; - if (atomic_read(&dquot->dq_count) > 1) + if (atomic_read(&dquot->dq_count) > 0) return true; return false; } diff --git a/include/linux/rpmsg.h b/include/linux/rpmsg.h index a8dcf8a9ae885..a63c5a4ff3e15 100644 --- a/include/linux/rpmsg.h +++ b/include/linux/rpmsg.h @@ -41,7 +41,9 @@ struct rpmsg_channel_info { * rpmsg_device - device that belong to the rpmsg bus * @dev: the device struct * @id: device id (used to match between rpmsg drivers and devices) - * @driver_override: driver name to force a match + * @driver_override: driver name to force a match; do not set directly, + * because core frees it; use driver_set_override() to + * set or clear it. * @src: local address * @dst: destination address * @ept: the rpmsg endpoint of this channel @@ -51,7 +53,7 @@ struct rpmsg_channel_info { struct rpmsg_device { struct device dev; struct rpmsg_device_id id; - char *driver_override; + const char *driver_override; u32 src; u32 dst; struct rpmsg_endpoint *ept; @@ -163,6 +165,8 @@ static inline __rpmsg64 cpu_to_rpmsg64(struct rpmsg_device *rpdev, u64 val) #if IS_ENABLED(CONFIG_RPMSG) +int rpmsg_register_device_override(struct rpmsg_device *rpdev, + const char *driver_override); int rpmsg_register_device(struct rpmsg_device *rpdev); int rpmsg_unregister_device(struct device *parent, struct rpmsg_channel_info *chinfo); @@ -188,6 +192,12 @@ __poll_t rpmsg_poll(struct rpmsg_endpoint *ept, struct file *filp, #else +static inline int rpmsg_register_device_override(struct rpmsg_device *rpdev, + const char *driver_override) +{ + return -ENXIO; +} + static inline int rpmsg_register_device(struct rpmsg_device *rpdev) { return -ENXIO; diff --git a/include/linux/sched/task.h b/include/linux/sched/task.h index d23977e9035d4..0c2d008099151 100644 --- a/include/linux/sched/task.h +++ b/include/linux/sched/task.h @@ -108,10 +108,36 @@ static inline struct task_struct *get_task_struct(struct task_struct *t) } extern void __put_task_struct(struct task_struct *t); +extern void __put_task_struct_rcu_cb(struct rcu_head *rhp); static inline void put_task_struct(struct task_struct *t) { - if (refcount_dec_and_test(&t->usage)) + if (!refcount_dec_and_test(&t->usage)) + return; + + /* + * under PREEMPT_RT, we can't call put_task_struct + * in atomic context because it will indirectly + * acquire sleeping locks. + * + * call_rcu() will schedule delayed_put_task_struct_rcu() + * to be called in process context. + * + * __put_task_struct() is called when + * refcount_dec_and_test(&t->usage) succeeds. + * + * This means that it can't "conflict" with + * put_task_struct_rcu_user() which abuses ->rcu the same + * way; rcu_users has a reference so task->usage can't be + * zero after rcu_users 1 -> 0 transition. + * + * delayed_free_task() also uses ->rcu, but it is only called + * when it fails to fork a process. Therefore, there is no + * way it can conflict with put_task_struct(). + */ + if (IS_ENABLED(CONFIG_PREEMPT_RT) && !preemptible()) + call_rcu(&t->rcu, __put_task_struct_rcu_cb); + else __put_task_struct(t); } diff --git a/include/linux/seqlock.h b/include/linux/seqlock.h index 37ded6b8fee61..2c5d0102315d2 100644 --- a/include/linux/seqlock.h +++ b/include/linux/seqlock.h @@ -516,8 +516,8 @@ do { \ static inline void do_write_seqcount_begin_nested(seqcount_t *s, int subclass) { - do_raw_write_seqcount_begin(s); seqcount_acquire(&s->dep_map, subclass, 0, _RET_IP_); + do_raw_write_seqcount_begin(s); } /** diff --git a/include/linux/stmmac.h b/include/linux/stmmac.h index 24bc3f7967c3b..a266e11525220 100644 --- a/include/linux/stmmac.h +++ b/include/linux/stmmac.h @@ -172,6 +172,7 @@ struct stmmac_fpe_cfg { bool hs_enable; /* FPE handshake enable */ enum stmmac_fpe_state lp_fpe_state; /* Link Partner FPE state */ enum stmmac_fpe_state lo_fpe_state; /* Local station FPE state */ + u32 fpe_csr; /* MAC_FPE_CTRL_STS reg cache */ }; struct stmmac_safety_feature_cfg { diff --git a/include/linux/string.h b/include/linux/string.h index d68097b4f600b..3b9f5abe5ee83 100644 --- a/include/linux/string.h +++ b/include/linux/string.h @@ -5,7 +5,9 @@ #include /* for inline */ #include /* for size_t */ #include /* for NULL */ +#include /* for ERR_PTR() */ #include /* for E2BIG */ +#include /* for check_mul_overflow() */ #include #include @@ -14,6 +16,44 @@ extern void *memdup_user(const void __user *, size_t); extern void *vmemdup_user(const void __user *, size_t); extern void *memdup_user_nul(const void __user *, size_t); +/** + * memdup_array_user - duplicate array from user space + * @src: source address in user space + * @n: number of array members to copy + * @size: size of one array member + * + * Return: an ERR_PTR() on failure. Result is physically + * contiguous, to be freed by kfree(). + */ +static inline void *memdup_array_user(const void __user *src, size_t n, size_t size) +{ + size_t nbytes; + + if (check_mul_overflow(n, size, &nbytes)) + return ERR_PTR(-EOVERFLOW); + + return memdup_user(src, nbytes); +} + +/** + * vmemdup_array_user - duplicate array from user space + * @src: source address in user space + * @n: number of array members to copy + * @size: size of one array member + * + * Return: an ERR_PTR() on failure. Result may be not + * physically contiguous. Use kvfree() to free. + */ +static inline void *vmemdup_array_user(const void __user *src, size_t n, size_t size) +{ + size_t nbytes; + + if (check_mul_overflow(n, size, &nbytes)) + return ERR_PTR(-EOVERFLOW); + + return vmemdup_user(src, nbytes); +} + /* * Include machine specific inline routines */ diff --git a/include/linux/sunrpc/clnt.h b/include/linux/sunrpc/clnt.h index 9fcf5ffc4f9ad..71ec22b1df860 100644 --- a/include/linux/sunrpc/clnt.h +++ b/include/linux/sunrpc/clnt.h @@ -83,6 +83,7 @@ struct rpc_clnt { }; const struct cred *cl_cred; unsigned int cl_max_connect; /* max number of transports not to the same IP */ + struct super_block *pipefs_sb; }; /* diff --git a/include/linux/swiotlb.h b/include/linux/swiotlb.h index 569272871375c..0eedb44649a2b 100644 --- a/include/linux/swiotlb.h +++ b/include/linux/swiotlb.h @@ -38,7 +38,9 @@ enum swiotlb_force { extern void swiotlb_init(int verbose); int swiotlb_init_with_tbl(char *tlb, unsigned long nslabs, int verbose); +void swiotlb_hint_cpus(int cpus); unsigned long swiotlb_size_or_default(void); +void swiotlb_set_alloc_from_low_pages(bool low); extern int swiotlb_late_init_with_tbl(char *tlb, unsigned long nslabs); extern int swiotlb_late_init_with_default_size(size_t default_size); extern void __init swiotlb_update_mem_attributes(void); @@ -64,8 +66,32 @@ dma_addr_t swiotlb_map(struct device *dev, phys_addr_t phys, #ifdef CONFIG_SWIOTLB extern enum swiotlb_force swiotlb_force; +struct io_tlb_slot { + phys_addr_t orig_addr; + size_t alloc_size; + struct list_head node; +}; + /** - * struct io_tlb_mem - IO TLB Memory Pool Descriptor + * struct io_tlb_area - IO TLB memory area descriptor + * + * This is a single area with a single lock. + * + * @used: The number of used IO TLB block. + * @list: The free list describing the number of free entries available + * from each index. + * @lock: The lock to protect the above data structures in the map and + * unmap calls. + */ + +struct io_tlb_area { + unsigned long used; + struct list_head free_slots; + spinlock_t lock; +}; + +/** + * struct io_tlb_mem - io tlb memory pool descriptor * * @start: The start address of the swiotlb memory pool. Used to do a quick * range check to see if the memory was in fact allocated by this @@ -73,38 +99,35 @@ extern enum swiotlb_force swiotlb_force; * @end: The end address of the swiotlb memory pool. Used to do a quick * range check to see if the memory was in fact allocated by this * API. + * @vaddr: The vaddr of the swiotlb memory pool. The swiotlb memory pool + * may be remapped in the memory encrypted case and store virtual + * address for bounce buffer operation. * @nslabs: The number of IO TLB blocks (in groups of 64) between @start and * @end. For default swiotlb, this is command line adjustable via * setup_io_tlb_npages. * @used: The number of used IO TLB block. - * @list: The free list describing the number of free entries available - * from each index. * @index: The index to start searching in the next round. * @orig_addr: The original address corresponding to a mapped entry. * @alloc_size: Size of the allocated buffer. - * @lock: The lock to protect the above data structures in the map and - * unmap calls. * @debugfs: The dentry to debugfs. * @late_alloc: %true if allocated using the page allocator * @force_bounce: %true if swiotlb bouncing is forced * @for_alloc: %true if the pool is used for memory allocation + * @bitmap: The bitmap used to track free entries. 1 in bit X means the slot + * indexed by X is free. */ struct io_tlb_mem { phys_addr_t start; phys_addr_t end; + void *vaddr; unsigned long nslabs; - unsigned long used; - unsigned int index; - spinlock_t lock; struct dentry *debugfs; bool late_alloc; bool force_bounce; bool for_alloc; - struct io_tlb_slot { - phys_addr_t orig_addr; - size_t alloc_size; - unsigned int list; - } *slots; + struct io_tlb_area *areas; + struct io_tlb_slot *slots; + unsigned long *bitmap; }; extern struct io_tlb_mem io_tlb_default_mem; @@ -186,4 +209,6 @@ static inline bool is_swiotlb_for_alloc(struct device *dev) } #endif /* CONFIG_DMA_RESTRICTED_POOL */ +extern phys_addr_t swiotlb_unencrypted_base; + #endif /* __LINUX_SWIOTLB_H */ diff --git a/include/linux/sysctl.h b/include/linux/sysctl.h index 47cf70c8eb93c..32d79ef906e51 100644 --- a/include/linux/sysctl.h +++ b/include/linux/sysctl.h @@ -210,6 +210,7 @@ extern void __register_sysctl_init(const char *path, struct ctl_table *table, const char *table_name); #define register_sysctl_init(path, table) __register_sysctl_init(path, table, #table) void do_sysctl_args(void); +bool sysctl_is_alias(char *param); extern int pwrsw_enabled; extern int unaligned_enabled; @@ -251,6 +252,11 @@ static inline void setup_sysctl_set(struct ctl_table_set *p, static inline void do_sysctl_args(void) { } + +static inline bool sysctl_is_alias(char *param) +{ + return false; +} #endif /* CONFIG_SYSCTL */ int sysctl_max_threads(struct ctl_table *table, int write, void *buffer, diff --git a/include/linux/tca6416_keypad.h b/include/linux/tca6416_keypad.h index b0d36a9934ccd..5cf6f6f82aa70 100644 --- a/include/linux/tca6416_keypad.h +++ b/include/linux/tca6416_keypad.h @@ -25,7 +25,6 @@ struct tca6416_keys_platform_data { unsigned int rep:1; /* enable input subsystem auto repeat */ uint16_t pinmask; uint16_t invert; - int irq_is_gpio; int use_polling; /* use polling if Interrupt is not connected*/ }; #endif diff --git a/include/linux/timer.h b/include/linux/timer.h index fda13c9d1256c..883c61b933583 100644 --- a/include/linux/timer.h +++ b/include/linux/timer.h @@ -169,7 +169,6 @@ static inline int timer_pending(const struct timer_list * timer) } extern void add_timer_on(struct timer_list *timer, int cpu); -extern int del_timer(struct timer_list * timer); extern int mod_timer(struct timer_list *timer, unsigned long expires); extern int mod_timer_pending(struct timer_list *timer, unsigned long expires); extern int timer_reduce(struct timer_list *timer, unsigned long expires); @@ -183,15 +182,39 @@ extern int timer_reduce(struct timer_list *timer, unsigned long expires); extern void add_timer(struct timer_list *timer); extern int try_to_del_timer_sync(struct timer_list *timer); +extern int timer_delete_sync(struct timer_list *timer); +extern int timer_delete(struct timer_list *timer); +extern int timer_shutdown_sync(struct timer_list *timer); +extern int timer_shutdown(struct timer_list *timer); -#if defined(CONFIG_SMP) || defined(CONFIG_PREEMPT_RT) - extern int del_timer_sync(struct timer_list *timer); -#else -# define del_timer_sync(t) del_timer(t) -#endif +/** + * del_timer_sync - Delete a pending timer and wait for a running callback + * @timer: The timer to be deleted + * + * See timer_delete_sync() for detailed explanation. + * + * Do not use in new code. Use timer_delete_sync() instead. + */ +static inline int del_timer_sync(struct timer_list *timer) +{ + return timer_delete_sync(timer); +} #define del_singleshot_timer_sync(t) del_timer_sync(t) +/** + * del_timer - Delete a pending timer + * @timer: The timer to be deleted + * + * See timer_delete() for detailed explanation. + * + * Do not use in new code. Use timer_delete() instead. + */ +static inline int del_timer(struct timer_list *timer) +{ + return timer_delete(timer); +} + extern void init_timers(void); struct hrtimer; extern enum hrtimer_restart it_real_fn(struct hrtimer *); diff --git a/include/linux/trace_events.h b/include/linux/trace_events.h index ff137179e0c30..d3cbe4bf4fab8 100644 --- a/include/linux/trace_events.h +++ b/include/linux/trace_events.h @@ -468,6 +468,7 @@ enum { EVENT_FILE_FL_TRIGGER_COND_BIT, EVENT_FILE_FL_PID_FILTER_BIT, EVENT_FILE_FL_WAS_ENABLED_BIT, + EVENT_FILE_FL_FREED_BIT, }; extern struct trace_event_file *trace_get_event_file(const char *instance, @@ -606,6 +607,7 @@ extern int __kprobe_event_add_fields(struct dynevent_cmd *cmd, ...); * TRIGGER_COND - When set, one or more triggers has an associated filter * PID_FILTER - When set, the event is filtered based on pid * WAS_ENABLED - Set when enabled to know to clear trace on module removal + * FREED - File descriptor is freed, all fields should be considered invalid */ enum { EVENT_FILE_FL_ENABLED = (1 << EVENT_FILE_FL_ENABLED_BIT), @@ -619,6 +621,7 @@ enum { EVENT_FILE_FL_TRIGGER_COND = (1 << EVENT_FILE_FL_TRIGGER_COND_BIT), EVENT_FILE_FL_PID_FILTER = (1 << EVENT_FILE_FL_PID_FILTER_BIT), EVENT_FILE_FL_WAS_ENABLED = (1 << EVENT_FILE_FL_WAS_ENABLED_BIT), + EVENT_FILE_FL_FREED = (1 << EVENT_FILE_FL_FREED_BIT), }; struct trace_event_file { @@ -647,6 +650,7 @@ struct trace_event_file { * caching and such. Which is mostly OK ;-) */ unsigned long flags; + atomic_t ref; /* ref count for opened files */ atomic_t sm_ref; /* soft-mode reference counter */ atomic_t tm_ref; /* trigger-mode reference counter */ }; @@ -846,7 +850,8 @@ extern int perf_uprobe_init(struct perf_event *event, extern void perf_uprobe_destroy(struct perf_event *event); extern int bpf_get_uprobe_info(const struct perf_event *event, u32 *fd_type, const char **filename, - u64 *probe_offset, bool perf_type_tracepoint); + u64 *probe_offset, u64 *probe_addr, + bool perf_type_tracepoint); #endif extern int ftrace_profile_set_filter(struct perf_event *event, int event_id, char *filter_str); diff --git a/include/linux/trace_recursion.h b/include/linux/trace_recursion.h index fe95f09225266..816d7a0d2aad6 100644 --- a/include/linux/trace_recursion.h +++ b/include/linux/trace_recursion.h @@ -116,13 +116,9 @@ enum { static __always_inline int trace_get_context_bit(void) { - unsigned long pc = preempt_count(); + unsigned char bit = interrupt_context_level(); - if (!(pc & (NMI_MASK | HARDIRQ_MASK | SOFTIRQ_OFFSET))) - return TRACE_CTX_NORMAL; - else - return pc & NMI_MASK ? TRACE_CTX_NMI : - pc & HARDIRQ_MASK ? TRACE_CTX_IRQ : TRACE_CTX_SOFTIRQ; + return TRACE_CTX_NORMAL - bit; } #ifdef CONFIG_FTRACE_RECORD_RECURSION diff --git a/include/linux/usb/typec_altmode.h b/include/linux/usb/typec_altmode.h index 65933cbe91299..c33a8bc626d36 100644 --- a/include/linux/usb/typec_altmode.h +++ b/include/linux/usb/typec_altmode.h @@ -67,7 +67,7 @@ struct typec_altmode_ops { int typec_altmode_enter(struct typec_altmode *altmode, u32 *vdo); int typec_altmode_exit(struct typec_altmode *altmode); -void typec_altmode_attention(struct typec_altmode *altmode, u32 vdo); +int typec_altmode_attention(struct typec_altmode *altmode, u32 vdo); int typec_altmode_vdm(struct typec_altmode *altmode, const u32 header, const u32 *vdo, int count); int typec_altmode_notify(struct typec_altmode *altmode, unsigned long conf, diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h index 20a47eb94b0f3..5f2e531d0a80d 100644 --- a/include/linux/workqueue.h +++ b/include/linux/workqueue.h @@ -222,18 +222,16 @@ static inline unsigned int work_static(struct work_struct *work) { return 0; } * to generate better code. */ #ifdef CONFIG_LOCKDEP -#define __INIT_WORK(_work, _func, _onstack) \ +#define __INIT_WORK_KEY(_work, _func, _onstack, _key) \ do { \ - static struct lock_class_key __key; \ - \ __init_work((_work), _onstack); \ (_work)->data = (atomic_long_t) WORK_DATA_INIT(); \ - lockdep_init_map(&(_work)->lockdep_map, "(work_completion)"#_work, &__key, 0); \ + lockdep_init_map(&(_work)->lockdep_map, "(work_completion)"#_work, (_key), 0); \ INIT_LIST_HEAD(&(_work)->entry); \ (_work)->func = (_func); \ } while (0) #else -#define __INIT_WORK(_work, _func, _onstack) \ +#define __INIT_WORK_KEY(_work, _func, _onstack, _key) \ do { \ __init_work((_work), _onstack); \ (_work)->data = (atomic_long_t) WORK_DATA_INIT(); \ @@ -242,12 +240,22 @@ static inline unsigned int work_static(struct work_struct *work) { return 0; } } while (0) #endif +#define __INIT_WORK(_work, _func, _onstack) \ + do { \ + static __maybe_unused struct lock_class_key __key; \ + \ + __INIT_WORK_KEY(_work, _func, _onstack, &__key); \ + } while (0) + #define INIT_WORK(_work, _func) \ __INIT_WORK((_work), (_func), 0) #define INIT_WORK_ONSTACK(_work, _func) \ __INIT_WORK((_work), (_func), 1) +#define INIT_WORK_ONSTACK_KEY(_work, _func, _key) \ + __INIT_WORK_KEY((_work), (_func), 1, _key) + #define __INIT_DELAYED_WORK(_work, _func, _tflags) \ do { \ INIT_WORK(&(_work)->work, (_func)); \ @@ -454,6 +462,7 @@ extern int schedule_on_each_cpu(work_func_t func); int execute_in_process_context(work_func_t fn, struct execute_work *); extern bool flush_work(struct work_struct *work); +extern bool cancel_work(struct work_struct *work); extern bool cancel_work_sync(struct work_struct *work); extern bool flush_delayed_work(struct delayed_work *dwork); @@ -632,8 +641,32 @@ static inline long work_on_cpu_safe(int cpu, long (*fn)(void *), void *arg) return fn(arg); } #else -long work_on_cpu(int cpu, long (*fn)(void *), void *arg); -long work_on_cpu_safe(int cpu, long (*fn)(void *), void *arg); +long work_on_cpu_key(int cpu, long (*fn)(void *), + void *arg, struct lock_class_key *key); +/* + * A new key is defined for each caller to make sure the work + * associated with the function doesn't share its locking class. + */ +#define work_on_cpu(_cpu, _fn, _arg) \ +({ \ + static struct lock_class_key __key; \ + \ + work_on_cpu_key(_cpu, _fn, _arg, &__key); \ +}) + +long work_on_cpu_safe_key(int cpu, long (*fn)(void *), + void *arg, struct lock_class_key *key); + +/* + * A new key is defined for each caller to make sure the work + * associated with the function doesn't share its locking class. + */ +#define work_on_cpu_safe(_cpu, _fn, _arg) \ +({ \ + static struct lock_class_key __key; \ + \ + work_on_cpu_safe_key(_cpu, _fn, _arg, &__key); \ +}) #endif /* CONFIG_SMP */ #ifdef CONFIG_FREEZER diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index 3da5cfcf84c1d..1f718e91509f4 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h @@ -310,7 +310,7 @@ struct hci_dev { struct list_head list; struct mutex lock; - char name[8]; + const char *name; unsigned long flags; __u16 id; __u8 bus; diff --git a/include/net/bluetooth/hci_mon.h b/include/net/bluetooth/hci_mon.h index 2d5fcda1bcd05..082f89531b889 100644 --- a/include/net/bluetooth/hci_mon.h +++ b/include/net/bluetooth/hci_mon.h @@ -56,7 +56,7 @@ struct hci_mon_new_index { __u8 type; __u8 bus; bdaddr_t bdaddr; - char name[8]; + char name[8] __nonstring; } __packed; #define HCI_MON_NEW_INDEX_SIZE 16 diff --git a/include/net/flow.h b/include/net/flow.h index e3f9d92460e7a..776bacc96242a 100644 --- a/include/net/flow.h +++ b/include/net/flow.h @@ -39,8 +39,8 @@ struct flowi_common { #define FLOWI_FLAG_SKIP_NH_OIF 0x04 __u32 flowic_secid; kuid_t flowic_uid; - struct flowi_tunnel flowic_tun_key; __u32 flowic_multipath_hash; + struct flowi_tunnel flowic_tun_key; }; union flowi_uli { diff --git a/include/net/genetlink.h b/include/net/genetlink.h index 7cb3fa8310edd..8043594a7f84a 100644 --- a/include/net/genetlink.h +++ b/include/net/genetlink.h @@ -11,10 +11,13 @@ /** * struct genl_multicast_group - generic netlink multicast group * @name: name of the multicast group, names are per-family + * @flags: GENL_* flags (%GENL_ADMIN_PERM or %GENL_UNS_ADMIN_PERM) + * @cap_sys_admin: whether %CAP_SYS_ADMIN is required for binding */ struct genl_multicast_group { char name[GENL_NAMSIZ]; u8 flags; + u8 cap_sys_admin:1; }; struct genl_ops; @@ -116,7 +119,7 @@ enum genl_validate_flags { * struct genl_small_ops - generic netlink operations (small version) * @cmd: command identifier * @internal_flags: flags used by the family - * @flags: flags + * @flags: GENL_* flags (%GENL_ADMIN_PERM or %GENL_UNS_ADMIN_PERM) * @validate: validation flags from enum genl_validate_flags * @doit: standard command callback * @dumpit: callback for dumpers @@ -137,7 +140,7 @@ struct genl_small_ops { * struct genl_ops - generic netlink operations * @cmd: command identifier * @internal_flags: flags used by the family - * @flags: flags + * @flags: GENL_* flags (%GENL_ADMIN_PERM or %GENL_UNS_ADMIN_PERM) * @maxattr: maximum number of attributes supported * @policy: netlink policy (takes precedence over family policy) * @validate: validation flags from enum genl_validate_flags diff --git a/include/net/inet_connection_sock.h b/include/net/inet_connection_sock.h index 695ed45841f06..eea633e32fad5 100644 --- a/include/net/inet_connection_sock.h +++ b/include/net/inet_connection_sock.h @@ -66,7 +66,6 @@ struct inet_connection_sock_af_ops { * @icsk_ulp_ops Pluggable ULP control hook * @icsk_ulp_data ULP private data * @icsk_clean_acked Clean acked data hook - * @icsk_listen_portaddr_node hash to the portaddr listener hashtable * @icsk_ca_state: Congestion control state * @icsk_retransmits: Number of unrecovered [RTO] timeouts * @icsk_pending: Scheduled timer event @@ -96,7 +95,6 @@ struct inet_connection_sock { const struct tcp_ulp_ops *icsk_ulp_ops; void __rcu *icsk_ulp_data; void (*icsk_clean_acked)(struct sock *sk, u32 acked_seq); - struct hlist_node icsk_listen_portaddr_node; unsigned int (*icsk_sync_mss)(struct sock *sk, u32 pmtu); __u8 icsk_ca_state:5, icsk_ca_initialized:1, @@ -315,11 +313,10 @@ void inet_csk_update_fastreuse(struct inet_bind_bucket *tb, struct dst_entry *inet_csk_update_pmtu(struct sock *sk, u32 mtu); -#define TCP_PINGPONG_THRESH 1 - static inline void inet_csk_enter_pingpong_mode(struct sock *sk) { - inet_csk(sk)->icsk_ack.pingpong = TCP_PINGPONG_THRESH; + inet_csk(sk)->icsk_ack.pingpong = + READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_pingpong_thresh); } static inline void inet_csk_exit_pingpong_mode(struct sock *sk) @@ -329,7 +326,16 @@ static inline void inet_csk_exit_pingpong_mode(struct sock *sk) static inline bool inet_csk_in_pingpong_mode(struct sock *sk) { - return inet_csk(sk)->icsk_ack.pingpong >= TCP_PINGPONG_THRESH; + return inet_csk(sk)->icsk_ack.pingpong >= + READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_pingpong_thresh); +} + +static inline void inet_csk_inc_pingpong_cnt(struct sock *sk) +{ + struct inet_connection_sock *icsk = inet_csk(sk); + + if (icsk->icsk_ack.pingpong < U8_MAX) + icsk->icsk_ack.pingpong++; } static inline bool inet_csk_has_ulp(struct sock *sk) diff --git a/include/net/inet_hashtables.h b/include/net/inet_hashtables.h index 53c22b64e9724..a7a8e66a1bad0 100644 --- a/include/net/inet_hashtables.h +++ b/include/net/inet_hashtables.h @@ -111,11 +111,7 @@ struct inet_bind_hashbucket { #define LISTENING_NULLS_BASE (1U << 29) struct inet_listen_hashbucket { spinlock_t lock; - unsigned int count; - union { - struct hlist_head head; - struct hlist_nulls_head nulls_head; - }; + struct hlist_nulls_head nulls_head; }; /* This is for listening sockets, thus all sockets which possess wildcards. */ @@ -143,32 +139,8 @@ struct inet_hashinfo { /* The 2nd listener table hashed by local port and address */ unsigned int lhash2_mask; struct inet_listen_hashbucket *lhash2; - - /* All the above members are written once at bootup and - * never written again _or_ are predominantly read-access. - * - * Now align to a new cache line as all the following members - * might be often dirty. - */ - /* All sockets in TCP_LISTEN state will be in listening_hash. - * This is the only table where wildcard'd TCP sockets can - * exist. listening_hash is only hashed by local port number. - * If lhash2 is initialized, the same socket will also be hashed - * to lhash2 by port and address. - */ - struct inet_listen_hashbucket listening_hash[INET_LHTABLE_SIZE] - ____cacheline_aligned_in_smp; }; -#define inet_lhash2_for_each_icsk_continue(__icsk) \ - hlist_for_each_entry_continue(__icsk, icsk_listen_portaddr_node) - -#define inet_lhash2_for_each_icsk(__icsk, list) \ - hlist_for_each_entry(__icsk, list, icsk_listen_portaddr_node) - -#define inet_lhash2_for_each_icsk_rcu(__icsk, list) \ - hlist_for_each_entry_rcu(__icsk, list, icsk_listen_portaddr_node) - static inline struct inet_listen_hashbucket * inet_lhash2_bucket(struct inet_hashinfo *h, u32 hash) { @@ -219,23 +191,11 @@ static inline u32 inet_bhashfn(const struct net *net, const __u16 lport, void inet_bind_hash(struct sock *sk, struct inet_bind_bucket *tb, const unsigned short snum); -/* These can have wildcards, don't try too hard. */ -static inline u32 inet_lhashfn(const struct net *net, const unsigned short num) -{ - return (num + net_hash_mix(net)) & (INET_LHTABLE_SIZE - 1); -} - -static inline int inet_sk_listen_hashfn(const struct sock *sk) -{ - return inet_lhashfn(sock_net(sk), inet_sk(sk)->inet_num); -} - /* Caller must disable local BH processing. */ int __inet_inherit_port(const struct sock *sk, struct sock *child); void inet_put_port(struct sock *sk); -void inet_hashinfo_init(struct inet_hashinfo *h); void inet_hashinfo2_init(struct inet_hashinfo *h, const char *name, unsigned long numentries, int scale, unsigned long low_limit, diff --git a/include/net/ip.h b/include/net/ip.h index fc05e016be060..e1a93c3391090 100644 --- a/include/net/ip.h +++ b/include/net/ip.h @@ -56,6 +56,7 @@ struct inet_skb_parm { #define IPSKB_FRAG_PMTU BIT(6) #define IPSKB_L3SLAVE BIT(7) #define IPSKB_NOPOLICY BIT(8) +#define IPSKB_MULTIPATH BIT(9) u16 frag_max_size; }; diff --git a/include/net/ip6_fib.h b/include/net/ip6_fib.h index bbb27639f2933..3c61a4b6e101f 100644 --- a/include/net/ip6_fib.h +++ b/include/net/ip6_fib.h @@ -20,6 +20,7 @@ #include #include #include +#include #ifdef CONFIG_IPV6_MULTIPLE_TABLES #define FIB6_TABLE_HASHSZ 256 @@ -610,7 +611,10 @@ static inline bool fib6_rules_early_flow_dissect(struct net *net, if (!net->ipv6.fib6_rules_require_fldissect) return false; - skb_flow_dissect_flow_keys(skb, flkeys, flag); + memset(flkeys, 0, sizeof(*flkeys)); + __skb_flow_dissect(net, skb, &flow_keys_dissector, + flkeys, NULL, 0, 0, 0, flag); + fl6->fl6_sport = flkeys->ports.src; fl6->fl6_dport = flkeys->ports.dst; fl6->flowi6_proto = flkeys->basic.ip_proto; diff --git a/include/net/ip_fib.h b/include/net/ip_fib.h index 3417ba2d27ad6..9f6e2a476dc28 100644 --- a/include/net/ip_fib.h +++ b/include/net/ip_fib.h @@ -151,6 +151,7 @@ struct fib_info { int fib_nhs; bool fib_nh_is_v6; bool nh_updated; + bool pfsrc_removed; struct nexthop *nh; struct rcu_head rcu; struct fib_nh fib_nh[]; @@ -415,7 +416,10 @@ static inline bool fib4_rules_early_flow_dissect(struct net *net, if (!net->ipv4.fib_rules_require_fldissect) return false; - skb_flow_dissect_flow_keys(skb, flkeys, flag); + memset(flkeys, 0, sizeof(*flkeys)); + __skb_flow_dissect(net, skb, &flow_keys_dissector, + flkeys, NULL, 0, 0, 0, flag); + fl4->fl4_sport = flkeys->ports.src; fl4->fl4_dport = flkeys->ports.dst; fl4->flowi4_proto = flkeys->basic.ip_proto; diff --git a/include/net/ip_tunnels.h b/include/net/ip_tunnels.h index 0e30428e6ff87..7d35173611cb4 100644 --- a/include/net/ip_tunnels.h +++ b/include/net/ip_tunnels.h @@ -482,15 +482,14 @@ static inline void iptunnel_xmit_stats(struct net_device *dev, int pkt_len) tstats->tx_packets++; u64_stats_update_end(&tstats->syncp); put_cpu_ptr(tstats); + return; + } + + if (pkt_len < 0) { + DEV_STATS_INC(dev, tx_errors); + DEV_STATS_INC(dev, tx_aborted_errors); } else { - struct net_device_stats *err_stats = &dev->stats; - - if (pkt_len < 0) { - err_stats->tx_errors++; - err_stats->tx_aborted_errors++; - } else { - err_stats->tx_dropped++; - } + DEV_STATS_INC(dev, tx_dropped); } } diff --git a/include/net/ipv6.h b/include/net/ipv6.h index 20930086b2288..6b3309e55dcb1 100644 --- a/include/net/ipv6.h +++ b/include/net/ipv6.h @@ -1258,7 +1258,7 @@ static inline int __ip6_sock_set_addr_preferences(struct sock *sk, int val) return 0; } -static inline int ip6_sock_set_addr_preferences(struct sock *sk, bool val) +static inline int ip6_sock_set_addr_preferences(struct sock *sk, int val) { int ret; diff --git a/include/net/lwtunnel.h b/include/net/lwtunnel.h index 6f15e6fa154e6..53bd2d02a4f0d 100644 --- a/include/net/lwtunnel.h +++ b/include/net/lwtunnel.h @@ -16,9 +16,12 @@ #define LWTUNNEL_STATE_INPUT_REDIRECT BIT(1) #define LWTUNNEL_STATE_XMIT_REDIRECT BIT(2) +/* LWTUNNEL_XMIT_CONTINUE should be distinguishable from dst_output return + * values (NET_XMIT_xxx and NETDEV_TX_xxx in linux/netdevice.h) for safety. + */ enum { LWTUNNEL_XMIT_DONE, - LWTUNNEL_XMIT_CONTINUE, + LWTUNNEL_XMIT_CONTINUE = 0x100, }; diff --git a/include/net/macsec.h b/include/net/macsec.h index d6fa6b97f6efa..0dc4303329391 100644 --- a/include/net/macsec.h +++ b/include/net/macsec.h @@ -240,6 +240,7 @@ struct macsec_context { struct macsec_secy *secy; struct macsec_rx_sc *rx_sc; struct { + bool update_pn; unsigned char assoc_num; u8 key[MACSEC_MAX_KEY_LEN]; union { diff --git a/drivers/net/ethernet/microsoft/mana/gdma.h b/include/net/mana/gdma.h similarity index 80% rename from drivers/net/ethernet/microsoft/mana/gdma.h rename to include/net/mana/gdma.h index f74f416a296f6..96c120160f15a 100644 --- a/drivers/net/ethernet/microsoft/mana/gdma.h +++ b/include/net/mana/gdma.h @@ -9,6 +9,8 @@ #include "shm_channel.h" +#define GDMA_STATUS_MORE_ENTRIES 0x00000105 + /* Structures labeled with "HW DATA" are exchanged with the hardware. All of * them are naturally aligned and hence don't need __packed. */ @@ -22,11 +24,19 @@ enum gdma_request_type { GDMA_GENERATE_TEST_EQE = 10, GDMA_CREATE_QUEUE = 12, GDMA_DISABLE_QUEUE = 13, + GDMA_ALLOCATE_RESOURCE_RANGE = 22, + GDMA_DESTROY_RESOURCE_RANGE = 24, GDMA_CREATE_DMA_REGION = 25, GDMA_DMA_REGION_ADD_PAGES = 26, GDMA_DESTROY_DMA_REGION = 27, + GDMA_CREATE_PD = 29, + GDMA_DESTROY_PD = 30, + GDMA_CREATE_MR = 31, + GDMA_DESTROY_MR = 32, }; +#define GDMA_RESOURCE_DOORBELL_PAGE 27 + enum gdma_queue_type { GDMA_INVALID_QUEUE, GDMA_SQ, @@ -135,6 +145,7 @@ struct gdma_general_req { }; /* HW DATA */ #define GDMA_MESSAGE_V1 1 +#define GDMA_MESSAGE_V2 2 struct gdma_general_resp { struct gdma_resp_hdr hdr; @@ -188,7 +199,7 @@ struct gdma_mem_info { u64 length; /* Allocated by the PF driver */ - u64 gdma_region; + u64 dma_region_handle; }; #define REGISTER_ATB_MST_MKEY_LOWER_SIZE 8 @@ -204,6 +215,8 @@ struct gdma_dev { /* GDMA driver specific pointer */ void *driver_data; + + struct auxiliary_device *adev; }; #define MINIMUM_SUPPORTED_PAGE_SIZE PAGE_SIZE @@ -342,6 +355,9 @@ struct gdma_context { struct gdma_resource msix_resource; struct gdma_irq_context *irq_contexts; + /* L2 MTU */ + u16 adapter_mtu; + /* This maps a CQ index to the queue structure. */ unsigned int max_num_cqs; struct gdma_queue **cq_table; @@ -351,10 +367,14 @@ struct gdma_context { struct completion eq_test_event; u32 test_event_eq_id; + bool is_pf; + phys_addr_t bar0_pa; void __iomem *bar0_va; void __iomem *shm_base; void __iomem *db_page_base; + phys_addr_t phys_db_page_base; u32 db_page_size; + int numa_node; /* Shared memory chanenl (used to bootstrap HWC) */ struct shm_channel shm_channel; @@ -425,6 +445,13 @@ struct gdma_wqe { #define MAX_TX_WQE_SIZE 512 #define MAX_RX_WQE_SIZE 256 +#define MAX_TX_WQE_SGL_ENTRIES ((GDMA_MAX_SQE_SIZE - \ + sizeof(struct gdma_sge) - INLINE_OOB_SMALL_SIZE) / \ + sizeof(struct gdma_sge)) + +#define MAX_RX_WQE_SGL_ENTRIES ((GDMA_MAX_RQE_SIZE - \ + sizeof(struct gdma_sge)) / sizeof(struct gdma_sge)) + struct gdma_cqe { u32 cqe_data[GDMA_COMP_DATA_SIZE / 4]; @@ -472,6 +499,15 @@ struct gdma_eqe { #define GDMA_REG_DB_PAGE_SIZE 0x10 #define GDMA_REG_SHM_OFFSET 0x18 +#define GDMA_PF_REG_DB_PAGE_SIZE 0xD0 +#define GDMA_PF_REG_DB_PAGE_OFF 0xC8 +#define GDMA_PF_REG_SHM_OFF 0x70 + +#define GDMA_SRIOV_REG_CFG_BASE_OFF 0x108 + +#define MANA_PF_DEVICE_ID 0x00B9 +#define MANA_VF_DEVICE_ID 0x00BA + struct gdma_posted_wqe_info { u32 wqe_size_in_bu; }; @@ -574,6 +610,26 @@ struct gdma_register_device_resp { u32 db_id; }; /* HW DATA */ +struct gdma_allocate_resource_range_req { + struct gdma_req_hdr hdr; + u32 resource_type; + u32 num_resources; + u32 alignment; + u32 allocated_resources; +}; + +struct gdma_allocate_resource_range_resp { + struct gdma_resp_hdr hdr; + u32 allocated_resources; +}; + +struct gdma_destroy_resource_range_req { + struct gdma_req_hdr hdr; + u32 resource_type; + u32 num_resources; + u32 allocated_resources; +}; + /* GDMA_CREATE_QUEUE */ struct gdma_create_queue_req { struct gdma_req_hdr hdr; @@ -608,6 +664,28 @@ struct gdma_disable_queue_req { u32 alloc_res_id_on_creation; }; /* HW DATA */ +enum atb_page_size { + ATB_PAGE_SIZE_4K, + ATB_PAGE_SIZE_8K, + ATB_PAGE_SIZE_16K, + ATB_PAGE_SIZE_32K, + ATB_PAGE_SIZE_64K, + ATB_PAGE_SIZE_128K, + ATB_PAGE_SIZE_256K, + ATB_PAGE_SIZE_512K, + ATB_PAGE_SIZE_1M, + ATB_PAGE_SIZE_2M, + ATB_PAGE_SIZE_MAX, +}; + +enum gdma_mr_access_flags { + GDMA_ACCESS_FLAG_LOCAL_READ = BIT_ULL(0), + GDMA_ACCESS_FLAG_LOCAL_WRITE = BIT_ULL(1), + GDMA_ACCESS_FLAG_REMOTE_READ = BIT_ULL(2), + GDMA_ACCESS_FLAG_REMOTE_WRITE = BIT_ULL(3), + GDMA_ACCESS_FLAG_REMOTE_ATOMIC = BIT_ULL(4), +}; + /* GDMA_CREATE_DMA_REGION */ struct gdma_create_dma_region_req { struct gdma_req_hdr hdr; @@ -634,14 +712,14 @@ struct gdma_create_dma_region_req { struct gdma_create_dma_region_resp { struct gdma_resp_hdr hdr; - u64 gdma_region; + u64 dma_region_handle; }; /* HW DATA */ /* GDMA_DMA_REGION_ADD_PAGES */ struct gdma_dma_region_add_pages_req { struct gdma_req_hdr hdr; - u64 gdma_region; + u64 dma_region_handle; u32 page_addr_list_len; u32 reserved3; @@ -653,9 +731,88 @@ struct gdma_dma_region_add_pages_req { struct gdma_destroy_dma_region_req { struct gdma_req_hdr hdr; - u64 gdma_region; + u64 dma_region_handle; }; /* HW DATA */ +enum gdma_pd_flags { + GDMA_PD_FLAG_INVALID = 0, +}; + +struct gdma_create_pd_req { + struct gdma_req_hdr hdr; + enum gdma_pd_flags flags; + u32 reserved; +};/* HW DATA */ + +struct gdma_create_pd_resp { + struct gdma_resp_hdr hdr; + u64 pd_handle; + u32 pd_id; + u32 reserved; +};/* HW DATA */ + +struct gdma_destroy_pd_req { + struct gdma_req_hdr hdr; + u64 pd_handle; +};/* HW DATA */ + +struct gdma_destory_pd_resp { + struct gdma_resp_hdr hdr; +};/* HW DATA */ + +enum gdma_mr_type { + /* Guest Virtual Address - MRs of this type allow access + * to memory mapped by PTEs associated with this MR using a virtual + * address that is set up in the MST + */ + GDMA_MR_TYPE_GVA = 2, +}; + +struct gdma_create_mr_params { + u64 pd_handle; + enum gdma_mr_type mr_type; + union { + struct { + u64 dma_region_handle; + u64 virtual_address; + enum gdma_mr_access_flags access_flags; + } gva; + }; +}; + +struct gdma_create_mr_request { + struct gdma_req_hdr hdr; + u64 pd_handle; + enum gdma_mr_type mr_type; + u32 reserved_1; + + union { + struct { + u64 dma_region_handle; + u64 virtual_address; + enum gdma_mr_access_flags access_flags; + } gva; + + }; + u32 reserved_2; +};/* HW DATA */ + +struct gdma_create_mr_response { + struct gdma_resp_hdr hdr; + u64 mr_handle; + u32 lkey; + u32 rkey; +};/* HW DATA */ + +struct gdma_destroy_mr_request { + struct gdma_req_hdr hdr; + u64 mr_handle; +};/* HW DATA */ + +struct gdma_destroy_mr_response { + struct gdma_resp_hdr hdr; +};/* HW DATA */ + int mana_gd_verify_vf_version(struct pci_dev *pdev); int mana_gd_register_device(struct gdma_dev *gd); @@ -682,4 +839,7 @@ void mana_gd_free_memory(struct gdma_mem_info *gmi); int mana_gd_send_request(struct gdma_context *gc, u32 req_len, const void *req, u32 resp_len, void *resp); + +int mana_gd_destroy_dma_region(struct gdma_context *gc, u64 dma_region_handle); + #endif /* _GDMA_H */ diff --git a/drivers/net/ethernet/microsoft/mana/hw_channel.h b/include/net/mana/hw_channel.h similarity index 96% rename from drivers/net/ethernet/microsoft/mana/hw_channel.h rename to include/net/mana/hw_channel.h index 31c6e83c454a7..6a757a6e27326 100644 --- a/drivers/net/ethernet/microsoft/mana/hw_channel.h +++ b/include/net/mana/hw_channel.h @@ -20,6 +20,8 @@ #define HWC_INIT_DATA_MAX_NUM_CQS 7 #define HWC_INIT_DATA_PDID 8 #define HWC_INIT_DATA_GPA_MKEY 9 +#define HWC_INIT_DATA_PF_DEST_RQ_ID 10 +#define HWC_INIT_DATA_PF_DEST_CQ_ID 11 /* Structures labeled with "HW DATA" are exchanged with the hardware. All of * them are naturally aligned and hence don't need __packed. @@ -178,6 +180,9 @@ struct hw_channel_context { struct semaphore sema; struct gdma_resource inflight_msg_res; + u32 pf_dest_vrq_id; + u32 pf_dest_vrcq_id; + struct hwc_caller_ctx *caller_ctx; }; diff --git a/drivers/net/ethernet/microsoft/mana/mana.h b/include/net/mana/mana.h similarity index 74% rename from drivers/net/ethernet/microsoft/mana/mana.h rename to include/net/mana/mana.h index fc98a5ba5ed07..b54f21ccce5a5 100644 --- a/drivers/net/ethernet/microsoft/mana/mana.h +++ b/include/net/mana/mana.h @@ -36,10 +36,8 @@ enum TRI_STATE { #define COMP_ENTRY_SIZE 64 -#define ADAPTER_MTU_SIZE 1500 -#define MAX_FRAME_SIZE (ADAPTER_MTU_SIZE + 14) - #define RX_BUFFERS_PER_QUEUE 512 +#define MANA_RX_DATA_ALIGN 64 #define MAX_SEND_BUFFERS_PER_QUEUE 256 @@ -48,9 +46,19 @@ enum TRI_STATE { #define MAX_PORTS_IN_MANA_DEV 256 -struct mana_stats { +struct mana_stats_rx { + u64 packets; + u64 bytes; + u64 xdp_drop; + u64 xdp_tx; + u64 xdp_redirect; + struct u64_stats_sync syncp; +}; + +struct mana_stats_tx { u64 packets; u64 bytes; + u64 xdp_xmit; struct u64_stats_sync syncp; }; @@ -76,7 +84,7 @@ struct mana_txq { atomic_t pending_sends; - struct mana_stats stats; + struct mana_stats_tx stats; }; /* skb data and frags dma mappings */ @@ -255,18 +263,16 @@ struct mana_cq { int budget; }; -#define GDMA_MAX_RQE_SGES 15 - struct mana_recv_buf_oob { /* A valid GDMA work request representing the data buffer. */ struct gdma_wqe_request wqe_req; void *buf_va; - dma_addr_t buf_dma_addr; + bool from_pool; /* allocated from a page pool */ /* SGL of the buffer going to be sent has part of the work request. */ u32 num_sge; - struct gdma_sge sgl[GDMA_MAX_RQE_SGES]; + struct gdma_sge sgl[MAX_RX_WQE_SGL_ENTRIES]; /* Required to store the result of mana_gd_post_work_request. * gdma_posted_wqe_info.wqe_size_in_bu is required for progressing the @@ -275,6 +281,11 @@ struct mana_recv_buf_oob { struct gdma_posted_wqe_info wqe_inf; }; +#define MANA_RXBUF_PAD (SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) \ + + ETH_HLEN) + +#define MANA_XDP_MTU_MAX (PAGE_SIZE - MANA_RXBUF_PAD - XDP_PACKET_HEADROOM) + struct mana_rxq { struct gdma_queue *gdma_rq; /* Cache the gdma receive queue id */ @@ -284,11 +295,15 @@ struct mana_rxq { u32 rxq_idx; u32 datasize; + u32 alloc_size; + u32 headroom; mana_handle_t rxobj; struct mana_cq rx_cq; + struct completion fence_event; + struct net_device *ndev; /* Total number of receive buffers to be allocated */ @@ -296,7 +311,15 @@ struct mana_rxq { u32 buf_index; - struct mana_stats stats; + struct mana_stats_rx stats; + + struct bpf_prog __rcu *bpf_prog; + struct xdp_rxq_info xdp_rxq; + void *xdp_save_va; /* for reusing */ + bool xdp_flush; + int xdp_rc; /* XDP redirect return code */ + + struct page_pool *page_pool; /* MUST BE THE LAST MEMBER: * Each receive buffer has an associated mana_recv_buf_oob. @@ -353,11 +376,26 @@ struct mana_port_context { /* This points to an array of num_queues of RQ pointers. */ struct mana_rxq **rxqs; + /* pre-allocated rx buffer array */ + void **rxbufs_pre; + dma_addr_t *das_pre; + int rxbpre_total; + u32 rxbpre_datasize; + u32 rxbpre_alloc_size; + u32 rxbpre_headroom; + + struct bpf_prog *bpf_prog; + /* Create num_queues EQs, SQs, SQ-CQs, RQs and RQ-CQs, respectively. */ unsigned int max_queues; unsigned int num_queues; mana_handle_t port_handle; + mana_handle_t pf_filter_handle; + + /* Mutex for sharing access to vport_use_count */ + struct mutex vport_mutex; + int vport_use_count; u16 port_idx; @@ -367,6 +405,7 @@ struct mana_port_context { struct mana_ethtool_stats eth_stats; }; +netdev_tx_t mana_start_xmit(struct sk_buff *skb, struct net_device *ndev); int mana_config_rss(struct mana_port_context *ac, enum TRI_STATE rx, bool update_hash, bool update_tab); @@ -374,11 +413,23 @@ int mana_alloc_queues(struct net_device *ndev); int mana_attach(struct net_device *ndev); int mana_detach(struct net_device *ndev, bool from_close); -int mana_probe(struct gdma_dev *gd); -void mana_remove(struct gdma_dev *gd); +int mana_probe(struct gdma_dev *gd, bool resuming); +void mana_remove(struct gdma_dev *gd, bool suspending); + +void mana_xdp_tx(struct sk_buff *skb, struct net_device *ndev); +int mana_xdp_xmit(struct net_device *ndev, int n, struct xdp_frame **frames, + u32 flags); +u32 mana_run_xdp(struct net_device *ndev, struct mana_rxq *rxq, + struct xdp_buff *xdp, void *buf_va, uint pkt_len); +struct bpf_prog *mana_xdp_get(struct mana_port_context *apc); +void mana_chn_setxdp(struct mana_port_context *apc, struct bpf_prog *prog); +int mana_bpf(struct net_device *ndev, struct netdev_bpf *bpf); extern const struct ethtool_ops mana_ethtool_ops; +/* A CQ can be created not associated with any EQ */ +#define GDMA_CQ_NO_EQ 0xffff + struct mana_obj_spec { u32 queue_index; u64 gdma_region; @@ -396,6 +447,12 @@ enum mana_command_code { MANA_FENCE_RQ = 0x20006, MANA_CONFIG_VPORT_RX = 0x20007, MANA_QUERY_VPORT_CONFIG = 0x20008, + + /* Privileged commands for the PF mode */ + MANA_REGISTER_FILTER = 0x28000, + MANA_DEREGISTER_FILTER = 0x28001, + MANA_REGISTER_HW_PORT = 0x28003, + MANA_DEREGISTER_HW_PORT = 0x28004, }; /* Query Device Configuration */ @@ -426,6 +483,11 @@ struct mana_query_device_cfg_resp { u16 max_num_vports; u16 reserved; u32 max_num_eqs; + + /* response v2: */ + u16 adapter_mtu; + u16 reserved2; + u32 reserved3; }; /* HW DATA */ /* Query vPort Configuration */ @@ -523,6 +585,63 @@ struct mana_cfg_rx_steer_resp { struct gdma_resp_hdr hdr; }; /* HW DATA */ +/* Register HW vPort */ +struct mana_register_hw_vport_req { + struct gdma_req_hdr hdr; + u16 attached_gfid; + u8 is_pf_default_vport; + u8 reserved1; + u8 allow_all_ether_types; + u8 reserved2; + u8 reserved3; + u8 reserved4; +}; /* HW DATA */ + +struct mana_register_hw_vport_resp { + struct gdma_resp_hdr hdr; + mana_handle_t hw_vport_handle; +}; /* HW DATA */ + +/* Deregister HW vPort */ +struct mana_deregister_hw_vport_req { + struct gdma_req_hdr hdr; + mana_handle_t hw_vport_handle; +}; /* HW DATA */ + +struct mana_deregister_hw_vport_resp { + struct gdma_resp_hdr hdr; +}; /* HW DATA */ + +/* Register filter */ +struct mana_register_filter_req { + struct gdma_req_hdr hdr; + mana_handle_t vport; + u8 mac_addr[6]; + u8 reserved1; + u8 reserved2; + u8 reserved3; + u8 reserved4; + u16 reserved5; + u32 reserved6; + u32 reserved7; + u32 reserved8; +}; /* HW DATA */ + +struct mana_register_filter_resp { + struct gdma_resp_hdr hdr; + mana_handle_t filter_handle; +}; /* HW DATA */ + +/* Deregister filter */ +struct mana_deregister_filter_req { + struct gdma_req_hdr hdr; + mana_handle_t filter_handle; +}; /* HW DATA */ + +struct mana_deregister_filter_resp { + struct gdma_resp_hdr hdr; +}; /* HW DATA */ + #define MANA_MAX_NUM_QUEUES 64 #define MANA_SHORT_VPORT_OFFSET_MAX ((1U << 8) - 1) @@ -537,4 +656,16 @@ struct mana_tx_package { struct gdma_posted_wqe_info wqe_info; }; +int mana_create_wq_obj(struct mana_port_context *apc, + mana_handle_t vport, + u32 wq_type, struct mana_obj_spec *wq_spec, + struct mana_obj_spec *cq_spec, + mana_handle_t *wq_obj); + +void mana_destroy_wq_obj(struct mana_port_context *apc, u32 wq_type, + mana_handle_t wq_obj); + +int mana_cfg_vport(struct mana_port_context *apc, u32 protection_dom_id, + u32 doorbell_pg_id); +void mana_uncfg_vport(struct mana_port_context *apc); #endif /* _MANA_H */ diff --git a/include/net/mana/mana_auxiliary.h b/include/net/mana/mana_auxiliary.h new file mode 100644 index 0000000000000..373d59756846f --- /dev/null +++ b/include/net/mana/mana_auxiliary.h @@ -0,0 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ +/* Copyright (c) 2022, Microsoft Corporation. */ + +#include "mana.h" +#include + +struct mana_adev { + struct auxiliary_device adev; + struct gdma_dev *mdev; +}; diff --git a/drivers/net/ethernet/microsoft/mana/shm_channel.h b/include/net/mana/shm_channel.h similarity index 100% rename from drivers/net/ethernet/microsoft/mana/shm_channel.h rename to include/net/mana/shm_channel.h diff --git a/include/net/netfilter/nf_nat_redirect.h b/include/net/netfilter/nf_nat_redirect.h index 2418653a66db1..279380de904c8 100644 --- a/include/net/netfilter/nf_nat_redirect.h +++ b/include/net/netfilter/nf_nat_redirect.h @@ -6,8 +6,7 @@ #include unsigned int -nf_nat_redirect_ipv4(struct sk_buff *skb, - const struct nf_nat_ipv4_multi_range_compat *mr, +nf_nat_redirect_ipv4(struct sk_buff *skb, const struct nf_nat_range2 *range, unsigned int hooknum); unsigned int nf_nat_redirect_ipv6(struct sk_buff *skb, const struct nf_nat_range2 *range, diff --git a/include/net/netfilter/nf_tables.h b/include/net/netfilter/nf_tables.h index adf572bcff090..c7b45387f5cd0 100644 --- a/include/net/netfilter/nf_tables.h +++ b/include/net/netfilter/nf_tables.h @@ -144,14 +144,29 @@ static inline void nft_reg_store16(u32 *dreg, u16 val) *(u16 *)dreg = val; } +static inline void nft_reg_store_be16(u32 *dreg, __be16 val) +{ + nft_reg_store16(dreg, (__force __u16)val); +} + static inline u16 nft_reg_load16(const u32 *sreg) { return *(u16 *)sreg; } -static inline void nft_reg_store64(u32 *dreg, u64 val) +static inline __be16 nft_reg_load_be16(const u32 *sreg) +{ + return (__force __be16)nft_reg_load16(sreg); +} + +static inline __be32 nft_reg_load_be32(const u32 *sreg) +{ + return *(__force __be32 *)sreg; +} + +static inline void nft_reg_store64(u64 *dreg, u64 val) { - put_unaligned(val, (u64 *)dreg); + put_unaligned(val, dreg); } static inline u64 nft_reg_load64(const u32 *sreg) @@ -1606,7 +1621,7 @@ struct nft_trans_gc { struct net *net; struct nft_set *set; u32 seq; - u8 count; + u16 count; void *priv[NFT_TRANS_GC_BATCHCOUNT]; struct rcu_head rcu; }; @@ -1624,8 +1639,9 @@ void nft_trans_gc_queue_sync_done(struct nft_trans_gc *trans); void nft_trans_gc_elem_add(struct nft_trans_gc *gc, void *priv); -struct nft_trans_gc *nft_trans_gc_catchall(struct nft_trans_gc *gc, - unsigned int gc_seq); +struct nft_trans_gc *nft_trans_gc_catchall_async(struct nft_trans_gc *gc, + unsigned int gc_seq); +struct nft_trans_gc *nft_trans_gc_catchall_sync(struct nft_trans_gc *gc); void nft_setelem_data_deactivate(const struct net *net, const struct nft_set *set, diff --git a/include/net/netns/ipv4.h b/include/net/netns/ipv4.h index d60a10cfc3823..bd5d6dc2d2bfe 100644 --- a/include/net/netns/ipv4.h +++ b/include/net/netns/ipv4.h @@ -126,6 +126,8 @@ struct netns_ipv4 { u8 sysctl_tcp_synack_retries; u8 sysctl_tcp_syncookies; u8 sysctl_tcp_migrate_req; + u8 sysctl_tcp_pingpong_thresh; + int sysctl_tcp_reordering; u8 sysctl_tcp_retries1; u8 sysctl_tcp_retries2; diff --git a/include/net/netns/xfrm.h b/include/net/netns/xfrm.h index bd7c3be4af5d7..423b52eca908d 100644 --- a/include/net/netns/xfrm.h +++ b/include/net/netns/xfrm.h @@ -50,6 +50,7 @@ struct netns_xfrm { struct list_head policy_all; struct hlist_head *policy_byidx; unsigned int policy_idx_hmask; + unsigned int idx_generator; struct hlist_head policy_inexact[XFRM_POLICY_MAX]; struct xfrm_policy_hash policy_bydst[XFRM_POLICY_MAX]; unsigned int policy_count[XFRM_POLICY_MAX * 2]; diff --git a/include/net/sock.h b/include/net/sock.h index 640bd7a367779..e19eebaf59f73 100644 --- a/include/net/sock.h +++ b/include/net/sock.h @@ -1923,21 +1923,33 @@ static inline void sk_tx_queue_set(struct sock *sk, int tx_queue) /* sk_tx_queue_mapping accept only upto a 16-bit value */ if (WARN_ON_ONCE((unsigned short)tx_queue >= USHRT_MAX)) return; - sk->sk_tx_queue_mapping = tx_queue; + /* Paired with READ_ONCE() in sk_tx_queue_get() and + * other WRITE_ONCE() because socket lock might be not held. + */ + WRITE_ONCE(sk->sk_tx_queue_mapping, tx_queue); } #define NO_QUEUE_MAPPING USHRT_MAX static inline void sk_tx_queue_clear(struct sock *sk) { - sk->sk_tx_queue_mapping = NO_QUEUE_MAPPING; + /* Paired with READ_ONCE() in sk_tx_queue_get() and + * other WRITE_ONCE() because socket lock might be not held. + */ + WRITE_ONCE(sk->sk_tx_queue_mapping, NO_QUEUE_MAPPING); } static inline int sk_tx_queue_get(const struct sock *sk) { - if (sk && sk->sk_tx_queue_mapping != NO_QUEUE_MAPPING) - return sk->sk_tx_queue_mapping; + if (sk) { + /* Paired with WRITE_ONCE() in sk_tx_queue_clear() + * and sk_tx_queue_set(). + */ + int val = READ_ONCE(sk->sk_tx_queue_mapping); + if (val != NO_QUEUE_MAPPING) + return val; + } return -1; } @@ -2071,7 +2083,7 @@ static inline void __dst_negative_advice(struct sock *sk) if (ndst != dst) { rcu_assign_pointer(sk->sk_dst_cache, ndst); sk_tx_queue_clear(sk); - sk->sk_dst_pending_confirm = 0; + WRITE_ONCE(sk->sk_dst_pending_confirm, 0); } } } @@ -2088,7 +2100,7 @@ __sk_dst_set(struct sock *sk, struct dst_entry *dst) struct dst_entry *old_dst; sk_tx_queue_clear(sk); - sk->sk_dst_pending_confirm = 0; + WRITE_ONCE(sk->sk_dst_pending_confirm, 0); old_dst = rcu_dereference_protected(sk->sk_dst_cache, lockdep_sock_is_held(sk)); rcu_assign_pointer(sk->sk_dst_cache, dst); @@ -2101,7 +2113,7 @@ sk_dst_set(struct sock *sk, struct dst_entry *dst) struct dst_entry *old_dst; sk_tx_queue_clear(sk); - sk->sk_dst_pending_confirm = 0; + WRITE_ONCE(sk->sk_dst_pending_confirm, 0); old_dst = xchg((__force struct dst_entry **)&sk->sk_dst_cache, dst); dst_release(old_dst); } diff --git a/include/net/tcp.h b/include/net/tcp.h index d8920f84f0a8d..fe9fc568b2888 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h @@ -141,6 +141,9 @@ void tcp_time_wait(struct sock *sk, int state, int timeo); #define TCP_RTO_MAX ((unsigned)(120*HZ)) #define TCP_RTO_MIN ((unsigned)(HZ/5)) #define TCP_TIMEOUT_MIN (2U) /* Min timeout for TCP timers in jiffies */ + +#define TCP_TIMEOUT_MIN_US (2*USEC_PER_MSEC) /* Min TCP timeout in microsecs */ + #define TCP_TIMEOUT_INIT ((unsigned)(1*HZ)) /* RFC6298 2.1 initial RTO value */ #define TCP_TIMEOUT_FALLBACK ((unsigned)(3*HZ)) /* RFC 1122 initial RTO value, now * used as a fallback RTO for the @@ -311,7 +314,7 @@ void tcp_shutdown(struct sock *sk, int how); int tcp_v4_early_demux(struct sk_buff *skb); int tcp_v4_rcv(struct sk_buff *skb); -void tcp_remove_empty_skb(struct sock *sk, struct sk_buff *skb); +void tcp_remove_empty_skb(struct sock *sk); int tcp_v4_tw_remember_stamp(struct inet_timewait_sock *tw); int tcp_sendmsg(struct sock *sk, struct msghdr *msg, size_t size); int tcp_sendmsg_locked(struct sock *sk, struct msghdr *msg, size_t size); @@ -340,13 +343,14 @@ ssize_t tcp_splice_read(struct socket *sk, loff_t *ppos, struct pipe_inode_info *pipe, size_t len, unsigned int flags); -void tcp_enter_quickack_mode(struct sock *sk, unsigned int max_quickacks); -static inline void tcp_dec_quickack_mode(struct sock *sk, - const unsigned int pkts) +static inline void tcp_dec_quickack_mode(struct sock *sk) { struct inet_connection_sock *icsk = inet_csk(sk); if (icsk->icsk_ack.quick) { + /* How many ACKs S/ACKing new data have we sent? */ + const unsigned int pkts = inet_csk_ack_scheduled(sk) ? 1 : 0; + if (pkts >= icsk->icsk_ack.quick) { icsk->icsk_ack.quick = 0; /* Leaving quickack mode we deflate ATO. */ @@ -782,7 +786,7 @@ static inline u32 tcp_time_stamp(const struct tcp_sock *tp) } /* Convert a nsec timestamp into TCP TSval timestamp (ms based currently) */ -static inline u32 tcp_ns_to_ts(u64 ns) +static inline u64 tcp_ns_to_ts(u64 ns) { return div_u64(ns, NSEC_PER_SEC / TCP_TS_HZ); } diff --git a/include/rdma/ib_umem.h b/include/rdma/ib_umem.h index 78ec338afc2be..9b99fe11d8d5a 100644 --- a/include/rdma/ib_umem.h +++ b/include/rdma/ib_umem.h @@ -85,6 +85,13 @@ static inline void __rdma_umem_block_iter_start(struct ib_block_iter *biter, { __rdma_block_iter_start(biter, umem->sgt_append.sgt.sgl, umem->sgt_append.sgt.nents, pgsz); + biter->__sg_advance = ib_umem_offset(umem) & ~(pgsz - 1); + biter->__sg_numblocks = ib_umem_num_dma_blocks(umem, pgsz); +} + +static inline bool __rdma_umem_block_iter_next(struct ib_block_iter *biter) +{ + return __rdma_block_iter_next(biter) && biter->__sg_numblocks--; } /** @@ -100,7 +107,7 @@ static inline void __rdma_umem_block_iter_start(struct ib_block_iter *biter, */ #define rdma_umem_for_each_dma_block(umem, biter, pgsz) \ for (__rdma_umem_block_iter_start(biter, umem, pgsz); \ - __rdma_block_iter_next(biter);) + __rdma_umem_block_iter_next(biter);) #ifdef CONFIG_INFINIBAND_USER_MEM diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h index 4ba642fc8a19a..fa13bf15feb3e 100644 --- a/include/rdma/ib_verbs.h +++ b/include/rdma/ib_verbs.h @@ -2817,6 +2817,7 @@ struct ib_block_iter { /* internal states */ struct scatterlist *__sg; /* sg holding the current aligned block */ dma_addr_t __dma_addr; /* unaligned DMA address of this block */ + size_t __sg_numblocks; /* ib_umem_num_dma_blocks() */ unsigned int __sg_nents; /* number of SG entries */ unsigned int __sg_advance; /* number of bytes to advance in sg in next step */ unsigned int __pg_bit; /* alignment of current block */ diff --git a/include/scsi/scsi_cmnd.h b/include/scsi/scsi_cmnd.h index 685249233f2fe..e1180771604d7 100644 --- a/include/scsi/scsi_cmnd.h +++ b/include/scsi/scsi_cmnd.h @@ -65,6 +65,12 @@ struct scsi_pointer { #define SCMD_STATE_COMPLETE 0 #define SCMD_STATE_INFLIGHT 1 +enum scsi_cmnd_submitter { + SUBMITTED_BY_BLOCK_LAYER = 0, + SUBMITTED_BY_SCSI_ERROR_HANDLER = 1, + SUBMITTED_BY_SCSI_RESET_IOCTL = 2, +} __packed; + struct scsi_cmnd { struct scsi_request req; struct scsi_device *device; @@ -90,6 +96,7 @@ struct scsi_cmnd { unsigned char prot_op; unsigned char prot_type; unsigned char prot_flags; + enum scsi_cmnd_submitter submitter; unsigned short cmd_len; enum dma_data_direction sc_data_direction; @@ -165,6 +172,8 @@ static inline struct scsi_driver *scsi_cmd_to_driver(struct scsi_cmnd *cmd) return *(struct scsi_driver **)rq->rq_disk->private_data; } +void scsi_done(struct scsi_cmnd *cmd); + extern void scsi_finish_command(struct scsi_cmnd *cmd); extern void *scsi_kmap_atomic_sg(struct scatterlist *sg, int sg_count, diff --git a/include/scsi/scsi_host.h b/include/scsi/scsi_host.h index 1a02e58eb4e44..f50861e4e88a1 100644 --- a/include/scsi/scsi_host.h +++ b/include/scsi/scsi_host.h @@ -762,7 +762,7 @@ extern void scsi_remove_host(struct Scsi_Host *); extern struct Scsi_Host *scsi_host_get(struct Scsi_Host *); extern int scsi_host_busy(struct Scsi_Host *shost); extern void scsi_host_put(struct Scsi_Host *t); -extern struct Scsi_Host *scsi_host_lookup(unsigned short); +extern struct Scsi_Host *scsi_host_lookup(unsigned int hostnum); extern const char *scsi_host_state_name(enum scsi_host_state); extern void scsi_host_complete_all_commands(struct Scsi_Host *shost, enum scsi_host_status status); diff --git a/include/sound/soc-card.h b/include/sound/soc-card.h index 4f2cc4fb56b7f..9a5429260ece5 100644 --- a/include/sound/soc-card.h +++ b/include/sound/soc-card.h @@ -40,6 +40,43 @@ int snd_soc_card_add_dai_link(struct snd_soc_card *card, void snd_soc_card_remove_dai_link(struct snd_soc_card *card, struct snd_soc_dai_link *dai_link); +#ifdef CONFIG_PCI +static inline void snd_soc_card_set_pci_ssid(struct snd_soc_card *card, + unsigned short vendor, + unsigned short device) +{ + card->pci_subsystem_vendor = vendor; + card->pci_subsystem_device = device; + card->pci_subsystem_set = true; +} + +static inline int snd_soc_card_get_pci_ssid(struct snd_soc_card *card, + unsigned short *vendor, + unsigned short *device) +{ + if (!card->pci_subsystem_set) + return -ENOENT; + + *vendor = card->pci_subsystem_vendor; + *device = card->pci_subsystem_device; + + return 0; +} +#else /* !CONFIG_PCI */ +static inline void snd_soc_card_set_pci_ssid(struct snd_soc_card *card, + unsigned short vendor, + unsigned short device) +{ +} + +static inline int snd_soc_card_get_pci_ssid(struct snd_soc_card *card, + unsigned short *vendor, + unsigned short *device) +{ + return -ENOENT; +} +#endif /* CONFIG_PCI */ + /* device driver data */ static inline void snd_soc_card_set_drvdata(struct snd_soc_card *card, void *data) diff --git a/include/sound/soc.h b/include/sound/soc.h index 5872a8864f3b6..3f0369aae2faf 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h @@ -880,6 +880,17 @@ struct snd_soc_card { #ifdef CONFIG_DMI char dmi_longname[80]; #endif /* CONFIG_DMI */ + +#ifdef CONFIG_PCI + /* + * PCI does not define 0 as invalid, so pci_subsystem_set indicates + * whether a value has been written to these fields. + */ + unsigned short pci_subsystem_vendor; + unsigned short pci_subsystem_device; + bool pci_subsystem_set; +#endif /* CONFIG_PCI */ + char topology_shortname[32]; struct device *dev; diff --git a/include/target/iscsi/iscsi_target_core.h b/include/target/iscsi/iscsi_target_core.h index 1eccb2ac7d029..d4271744396e8 100644 --- a/include/target/iscsi/iscsi_target_core.h +++ b/include/target/iscsi/iscsi_target_core.h @@ -552,6 +552,7 @@ struct iscsi_conn { struct completion conn_logout_comp; struct completion tx_half_close_comp; struct completion rx_half_close_comp; + struct completion kthr_start_comp; /* socket used by this connection */ struct socket *sock; void (*orig_data_ready)(struct sock *); @@ -567,6 +568,7 @@ struct iscsi_conn { struct timer_list nopin_timer; struct timer_list nopin_response_timer; struct timer_list transport_timer; + struct timer_list login_timer; struct task_struct *login_kworker; /* Spinlock used for add/deleting cmd's from conn_cmd_list */ spinlock_t cmd_lock; diff --git a/include/target/target_core_fabric.h b/include/target/target_core_fabric.h index 3c5ade7a04a68..3aa4f48981ab5 100644 --- a/include/target/target_core_fabric.h +++ b/include/target/target_core_fabric.h @@ -176,6 +176,7 @@ sense_reason_t transport_generic_new_cmd(struct se_cmd *); void target_put_cmd_and_wait(struct se_cmd *cmd); void target_execute_cmd(struct se_cmd *cmd); +bool target_cmd_interrupted(struct se_cmd *cmd); int transport_generic_free_cmd(struct se_cmd *, int); diff --git a/include/trace/events/neigh.h b/include/trace/events/neigh.h index 62bb17516713f..5ade62ac49b47 100644 --- a/include/trace/events/neigh.h +++ b/include/trace/events/neigh.h @@ -39,7 +39,6 @@ TRACE_EVENT(neigh_create, ), TP_fast_assign( - struct in6_addr *pin6; __be32 *p32; __entry->family = tbl->family; @@ -47,7 +46,6 @@ TRACE_EVENT(neigh_create, __entry->entries = atomic_read(&tbl->gc_entries); __entry->created = n != NULL; __entry->gc_exempt = exempt_from_gc; - pin6 = (struct in6_addr *)__entry->primary_key6; p32 = (__be32 *)__entry->primary_key4; if (tbl->family == AF_INET) @@ -57,6 +55,8 @@ TRACE_EVENT(neigh_create, #if IS_ENABLED(CONFIG_IPV6) if (tbl->family == AF_INET6) { + struct in6_addr *pin6; + pin6 = (struct in6_addr *)__entry->primary_key6; *pin6 = *(struct in6_addr *)pkey; } diff --git a/include/uapi/linux/bpf.h b/include/uapi/linux/bpf.h index a887e582f0e78..9fb06a511250f 100644 --- a/include/uapi/linux/bpf.h +++ b/include/uapi/linux/bpf.h @@ -1762,7 +1762,9 @@ union bpf_attr { * performed again, if the helper is used in combination with * direct packet access. * Return - * 0 on success, or a negative error in case of failure. + * 0 on success, or a negative error in case of failure. Positive + * error indicates a potential drop or congestion in the target + * device. The particular positive error codes are not defined. * * u64 bpf_get_current_pid_tgid(void) * Return diff --git a/include/uapi/linux/can/isotp.h b/include/uapi/linux/can/isotp.h index 590f8aea2b6d2..439c982f7e811 100644 --- a/include/uapi/linux/can/isotp.h +++ b/include/uapi/linux/can/isotp.h @@ -124,18 +124,19 @@ struct can_isotp_ll_options { /* flags for isotp behaviour */ -#define CAN_ISOTP_LISTEN_MODE 0x001 /* listen only (do not send FC) */ -#define CAN_ISOTP_EXTEND_ADDR 0x002 /* enable extended addressing */ -#define CAN_ISOTP_TX_PADDING 0x004 /* enable CAN frame padding tx path */ -#define CAN_ISOTP_RX_PADDING 0x008 /* enable CAN frame padding rx path */ -#define CAN_ISOTP_CHK_PAD_LEN 0x010 /* check received CAN frame padding */ -#define CAN_ISOTP_CHK_PAD_DATA 0x020 /* check received CAN frame padding */ -#define CAN_ISOTP_HALF_DUPLEX 0x040 /* half duplex error state handling */ -#define CAN_ISOTP_FORCE_TXSTMIN 0x080 /* ignore stmin from received FC */ -#define CAN_ISOTP_FORCE_RXSTMIN 0x100 /* ignore CFs depending on rx stmin */ -#define CAN_ISOTP_RX_EXT_ADDR 0x200 /* different rx extended addressing */ -#define CAN_ISOTP_WAIT_TX_DONE 0x400 /* wait for tx completion */ -#define CAN_ISOTP_SF_BROADCAST 0x800 /* 1-to-N functional addressing */ +#define CAN_ISOTP_LISTEN_MODE 0x0001 /* listen only (do not send FC) */ +#define CAN_ISOTP_EXTEND_ADDR 0x0002 /* enable extended addressing */ +#define CAN_ISOTP_TX_PADDING 0x0004 /* enable CAN frame padding tx path */ +#define CAN_ISOTP_RX_PADDING 0x0008 /* enable CAN frame padding rx path */ +#define CAN_ISOTP_CHK_PAD_LEN 0x0010 /* check received CAN frame padding */ +#define CAN_ISOTP_CHK_PAD_DATA 0x0020 /* check received CAN frame padding */ +#define CAN_ISOTP_HALF_DUPLEX 0x0040 /* half duplex error state handling */ +#define CAN_ISOTP_FORCE_TXSTMIN 0x0080 /* ignore stmin from received FC */ +#define CAN_ISOTP_FORCE_RXSTMIN 0x0100 /* ignore CFs depending on rx stmin */ +#define CAN_ISOTP_RX_EXT_ADDR 0x0200 /* different rx extended addressing */ +#define CAN_ISOTP_WAIT_TX_DONE 0x0400 /* wait for tx completion */ +#define CAN_ISOTP_SF_BROADCAST 0x0800 /* 1-to-N functional addressing */ +#define CAN_ISOTP_CF_BROADCAST 0x1000 /* 1-to-N transmission w/o FC */ /* protocol machine default values */ diff --git a/include/uapi/linux/gtp.h b/include/uapi/linux/gtp.h index 79f9191bbb24c..82d0e58ec3ce2 100644 --- a/include/uapi/linux/gtp.h +++ b/include/uapi/linux/gtp.h @@ -32,6 +32,6 @@ enum gtp_attrs { GTPA_PAD, __GTPA_MAX, }; -#define GTPA_MAX (__GTPA_MAX + 1) +#define GTPA_MAX (__GTPA_MAX - 1) #endif /* _UAPI_LINUX_GTP_H_ */ diff --git a/include/uapi/linux/ipv6.h b/include/uapi/linux/ipv6.h index 39c6add59a1a6..4fa8511b1e355 100644 --- a/include/uapi/linux/ipv6.h +++ b/include/uapi/linux/ipv6.h @@ -196,6 +196,9 @@ enum { DEVCONF_IOAM6_ENABLED, DEVCONF_IOAM6_ID, DEVCONF_IOAM6_ID_WIDE, + DEVCONF_NDISC_EVICT_NOCARRIER, + DEVCONF_ACCEPT_UNTRACKED_NA, + DEVCONF_ACCEPT_RA_MIN_LFT, DEVCONF_MAX }; diff --git a/include/uapi/linux/magic.h b/include/uapi/linux/magic.h index 32cda3d6ba9fc..c805f6a26730b 100644 --- a/include/uapi/linux/magic.h +++ b/include/uapi/linux/magic.h @@ -51,6 +51,7 @@ #define QNX6_SUPER_MAGIC 0x68191122 /* qnx6 fs detection */ #define AFS_FS_MAGIC 0x6B414653 + #define REISERFS_SUPER_MAGIC 0x52654973 /* used by gcc */ /* used by file system utilities that look at the superblock, etc. */ @@ -59,6 +60,9 @@ #define REISER2FS_JR_SUPER_MAGIC_STRING "ReIsEr3Fs" #define SMB_SUPER_MAGIC 0x517B +#define CIFS_SUPER_MAGIC 0xFF534D42 /* the first four bytes of SMB PDUs */ +#define SMB2_SUPER_MAGIC 0xFE534D42 + #define CGROUP_SUPER_MAGIC 0x27e0eb #define CGROUP2_SUPER_MAGIC 0x63677270 diff --git a/include/uapi/linux/netfilter_bridge/ebtables.h b/include/uapi/linux/netfilter_bridge/ebtables.h index a494cf43a7552..b0caad82b6937 100644 --- a/include/uapi/linux/netfilter_bridge/ebtables.h +++ b/include/uapi/linux/netfilter_bridge/ebtables.h @@ -182,12 +182,14 @@ struct ebt_entry { unsigned char sourcemsk[ETH_ALEN]; unsigned char destmac[ETH_ALEN]; unsigned char destmsk[ETH_ALEN]; - /* sizeof ebt_entry + matches */ - unsigned int watchers_offset; - /* sizeof ebt_entry + matches + watchers */ - unsigned int target_offset; - /* sizeof ebt_entry + matches + watchers + target */ - unsigned int next_offset; + __struct_group(/* no tag */, offsets, /* no attrs */, + /* sizeof ebt_entry + matches */ + unsigned int watchers_offset; + /* sizeof ebt_entry + matches + watchers */ + unsigned int target_offset; + /* sizeof ebt_entry + matches + watchers + target */ + unsigned int next_offset; + ); unsigned char elems[0] __attribute__ ((aligned (__alignof__(struct ebt_replace)))); }; diff --git a/include/uapi/linux/perf_event.h b/include/uapi/linux/perf_event.h index f92880a15645a..25bc59231961c 100644 --- a/include/uapi/linux/perf_event.h +++ b/include/uapi/linux/perf_event.h @@ -251,6 +251,8 @@ enum { PERF_BR_SYSRET = 8, /* syscall return */ PERF_BR_COND_CALL = 9, /* conditional function call */ PERF_BR_COND_RET = 10, /* conditional function return */ + PERF_BR_ERET = 11, /* exception return */ + PERF_BR_IRQ = 12, /* irq */ PERF_BR_MAX, }; @@ -299,6 +301,7 @@ enum { * { u64 time_enabled; } && PERF_FORMAT_TOTAL_TIME_ENABLED * { u64 time_running; } && PERF_FORMAT_TOTAL_TIME_RUNNING * { u64 id; } && PERF_FORMAT_ID + * { u64 lost; } && PERF_FORMAT_LOST * } && !PERF_FORMAT_GROUP * * { u64 nr; @@ -306,6 +309,7 @@ enum { * { u64 time_running; } && PERF_FORMAT_TOTAL_TIME_RUNNING * { u64 value; * { u64 id; } && PERF_FORMAT_ID + * { u64 lost; } && PERF_FORMAT_LOST * } cntr[nr]; * } && PERF_FORMAT_GROUP * }; @@ -315,8 +319,9 @@ enum perf_event_read_format { PERF_FORMAT_TOTAL_TIME_RUNNING = 1U << 1, PERF_FORMAT_ID = 1U << 2, PERF_FORMAT_GROUP = 1U << 3, + PERF_FORMAT_LOST = 1U << 4, - PERF_FORMAT_MAX = 1U << 4, /* non-ABI */ + PERF_FORMAT_MAX = 1U << 5, /* non-ABI */ }; #define PERF_ATTR_SIZE_VER0 64 /* sizeof first published struct */ diff --git a/include/uapi/linux/stddef.h b/include/uapi/linux/stddef.h index 7837ba4fe7289..dcd50fb2164a1 100644 --- a/include/uapi/linux/stddef.h +++ b/include/uapi/linux/stddef.h @@ -27,7 +27,7 @@ union { \ struct { MEMBERS } ATTRS; \ struct TAG { MEMBERS } ATTRS NAME; \ - } + } ATTRS /** * __DECLARE_FLEX_ARRAY() - Declare a flexible array usable in a union diff --git a/include/uapi/linux/sync_file.h b/include/uapi/linux/sync_file.h index ee2dcfb3d6602..d7f7c04a6e0c1 100644 --- a/include/uapi/linux/sync_file.h +++ b/include/uapi/linux/sync_file.h @@ -52,7 +52,7 @@ struct sync_fence_info { * @name: name of fence * @status: status of fence. 1: signaled 0:active <0:error * @flags: sync_file_info flags - * @num_fences number of fences in the sync_file + * @num_fences: number of fences in the sync_file * @pad: padding for 64-bit alignment, should always be zero * @sync_fence_info: pointer to array of structs sync_fence_info with all * fences in the sync_file diff --git a/include/uapi/misc/hv_azure_blob.h b/include/uapi/misc/hv_azure_blob.h new file mode 100644 index 0000000000000..73b98b2cecfd5 --- /dev/null +++ b/include/uapi/misc/hv_azure_blob.h @@ -0,0 +1,35 @@ +/* SPDX-License-Identifier: GPL-2.0-only WITH Linux-syscall-note */ +/* Copyright (c) 2021 Microsoft Corporation. */ + +#ifndef _AZ_BLOB_H +#define _AZ_BLOB_H + +#include +#include +#include + +/* user-mode sync request sent through ioctl */ +struct az_blob_request_sync_response { + __u32 status; + __u32 response_len; +}; + +struct az_blob_request_sync { + guid_t guid; + __u32 timeout; + __u32 request_len; + __u32 response_len; + __u32 data_len; + __u32 data_valid; + __aligned_u64 request_buffer; + __aligned_u64 response_buffer; + __aligned_u64 data_buffer; + struct az_blob_request_sync_response response; +}; + +#define AZ_BLOB_MAGIC_NUMBER 'R' +#define IOCTL_AZ_BLOB_DRIVER_USER_REQUEST \ + _IOWR(AZ_BLOB_MAGIC_NUMBER, 10, \ + struct az_blob_request_sync) + +#endif /* define _AZ_BLOB_H */ diff --git a/include/uapi/rdma/ib_user_ioctl_verbs.h b/include/uapi/rdma/ib_user_ioctl_verbs.h index 3072e5d6b6926..e0c25537fd2e9 100644 --- a/include/uapi/rdma/ib_user_ioctl_verbs.h +++ b/include/uapi/rdma/ib_user_ioctl_verbs.h @@ -250,6 +250,8 @@ enum rdma_driver_id { RDMA_DRIVER_QIB, RDMA_DRIVER_EFA, RDMA_DRIVER_SIW, + RDMA_DRIVER_ERDMA, + RDMA_DRIVER_MANA, }; enum ib_uverbs_gid_type { diff --git a/include/uapi/rdma/mana-abi.h b/include/uapi/rdma/mana-abi.h new file mode 100644 index 0000000000000..5fcb31b37fb91 --- /dev/null +++ b/include/uapi/rdma/mana-abi.h @@ -0,0 +1,66 @@ +/* SPDX-License-Identifier: (GPL-2.0 WITH Linux-syscall-note) */ +/* + * Copyright (c) 2022, Microsoft Corporation. All rights reserved. + */ + +#ifndef MANA_ABI_USER_H +#define MANA_ABI_USER_H + +#include +#include + +/* + * Increment this value if any changes that break userspace ABI + * compatibility are made. + */ + +#define MANA_IB_UVERBS_ABI_VERSION 1 + +struct mana_ib_create_cq { + __aligned_u64 buf_addr; +}; + +struct mana_ib_create_qp { + __aligned_u64 sq_buf_addr; + __u32 sq_buf_size; + __u32 port; +}; + +struct mana_ib_create_qp_resp { + __u32 sqid; + __u32 cqid; + __u32 tx_vp_offset; + __u32 reserved; +}; + +struct mana_ib_create_wq { + __aligned_u64 wq_buf_addr; + __u32 wq_buf_size; + __u32 reserved; +}; + +/* RX Hash function flags */ +enum mana_ib_rx_hash_function_flags { + MANA_IB_RX_HASH_FUNC_TOEPLITZ = 1 << 0, +}; + +struct mana_ib_create_qp_rss { + __aligned_u64 rx_hash_fields_mask; + __u8 rx_hash_function; + __u8 reserved[7]; + __u32 rx_hash_key_len; + __u8 rx_hash_key[40]; + __u32 port; +}; + +struct rss_resp_entry { + __u32 cqid; + __u32 wqid; +}; + +struct mana_ib_create_qp_rss_resp { + __aligned_u64 num_entries; + struct rss_resp_entry entries[64]; +}; + +#endif diff --git a/init/main.c b/init/main.c index 9390e110385ca..98be0b9dabb07 100644 --- a/init/main.c +++ b/init/main.c @@ -540,6 +540,10 @@ static int __init unknown_bootoption(char *param, char *val, { size_t len = strlen(param); + /* Handle params aliased to sysctls */ + if (sysctl_is_alias(param)) + return 0; + repair_env_string(param, val); /* Handle obsolete-style parameters */ diff --git a/io_uring/io-wq.c b/io_uring/io-wq.c index 81485c1a9879e..fe8594a0396ca 100644 --- a/io_uring/io-wq.c +++ b/io_uring/io-wq.c @@ -176,6 +176,16 @@ static void io_worker_ref_put(struct io_wq *wq) complete(&wq->worker_done); } +bool io_wq_worker_stopped(void) +{ + struct io_worker *worker = current->pf_io_worker; + + if (WARN_ON_ONCE(!io_wq_current_is_worker())) + return true; + + return test_bit(IO_WQ_BIT_EXIT, &worker->wqe->wq->state); +} + static void io_worker_cancel_cb(struct io_worker *worker) { struct io_wqe_acct *acct = io_wqe_get_acct(worker); diff --git a/io_uring/io-wq.h b/io_uring/io-wq.h index bf5c4c5337605..48721cbd5f40b 100644 --- a/io_uring/io-wq.h +++ b/io_uring/io-wq.h @@ -129,6 +129,7 @@ void io_wq_hash_work(struct io_wq_work *work, void *val); int io_wq_cpu_affinity(struct io_wq *wq, cpumask_var_t mask); int io_wq_max_workers(struct io_wq *wq, int *new_count); +bool io_wq_worker_stopped(void); static inline bool io_wq_is_hashed(struct io_wq_work *work) { diff --git a/io_uring/io_uring.c b/io_uring/io_uring.c index 480100a3728ae..0f225ac0c04fe 100644 --- a/io_uring/io_uring.c +++ b/io_uring/io_uring.c @@ -2626,6 +2626,7 @@ static void io_iopoll_try_reap_events(struct io_ring_ctx *ctx) if (!(ctx->flags & IORING_SETUP_IOPOLL)) return; + percpu_ref_get(&ctx->refs); mutex_lock(&ctx->uring_lock); while (!list_empty(&ctx->iopoll_list)) { unsigned int nr_events = 0; @@ -2647,6 +2648,7 @@ static void io_iopoll_try_reap_events(struct io_ring_ctx *ctx) } } mutex_unlock(&ctx->uring_lock); + percpu_ref_put(&ctx->refs); } static int io_iopoll_check(struct io_ring_ctx *ctx, long min) @@ -2693,6 +2695,11 @@ static int io_iopoll_check(struct io_ring_ctx *ctx, long min) break; } ret = io_do_iopoll(ctx, &nr_events, min); + + if (task_sigpending(current)) { + ret = -EINTR; + goto out; + } } while (!ret && nr_events < min && !need_resched()); out: mutex_unlock(&ctx->uring_lock); @@ -3172,7 +3179,7 @@ static int __io_import_fixed(struct io_kiocb *req, int rw, struct iov_iter *iter */ const struct bio_vec *bvec = imu->bvec; - if (offset <= bvec->bv_len) { + if (offset < bvec->bv_len) { iov_iter_advance(iter, offset); } else { unsigned long seg_skip; @@ -4058,7 +4065,7 @@ static int io_linkat_prep(struct io_kiocb *req, if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL)) return -EINVAL; - if (sqe->ioprio || sqe->rw_flags || sqe->buf_index || sqe->splice_fd_in) + if (sqe->ioprio || sqe->buf_index || sqe->splice_fd_in) return -EINVAL; if (unlikely(req->flags & REQ_F_FIXED_FILE)) return -EBADF; @@ -4069,7 +4076,7 @@ static int io_linkat_prep(struct io_kiocb *req, newf = u64_to_user_ptr(READ_ONCE(sqe->addr2)); lnk->flags = READ_ONCE(sqe->hardlink_flags); - lnk->oldpath = getname(oldf); + lnk->oldpath = getname_uflags(oldf, lnk->flags); if (IS_ERR(lnk->oldpath)) return PTR_ERR(lnk->oldpath); @@ -5741,6 +5748,7 @@ static void io_apoll_task_func(struct io_kiocb *req, bool *locked) if (ret > 0) return; + io_tw_lock(req->ctx, locked); io_poll_remove_entries(req); spin_lock(&ctx->completion_lock); hash_del(&req->hash_node); @@ -7093,7 +7101,8 @@ static void io_wq_submit_work(struct io_wq_work *work) */ if (ret != -EAGAIN || !(req->ctx->flags & IORING_SETUP_IOPOLL)) break; - + if (io_wq_worker_stopped()) + break; /* * If REQ_F_NOWAIT is set, then don't wait or retry with * poll. -EAGAIN is final for that case. @@ -7556,7 +7565,9 @@ static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx) return &ctx->sq_sqes[head]; /* drop invalid entries */ + spin_lock(&ctx->completion_lock); ctx->cq_extra--; + spin_unlock(&ctx->completion_lock); WRITE_ONCE(ctx->rings->sq_dropped, READ_ONCE(ctx->rings->sq_dropped) + 1); return NULL; @@ -8641,49 +8652,6 @@ static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg, return ret; } -static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file, - int index) -{ -#if defined(CONFIG_UNIX) - struct sock *sock = ctx->ring_sock->sk; - struct sk_buff_head *head = &sock->sk_receive_queue; - struct sk_buff *skb; - - /* - * See if we can merge this file into an existing skb SCM_RIGHTS - * file set. If there's no room, fall back to allocating a new skb - * and filling it in. - */ - spin_lock_irq(&head->lock); - skb = skb_peek(head); - if (skb) { - struct scm_fp_list *fpl = UNIXCB(skb).fp; - - if (fpl->count < SCM_MAX_FD) { - __skb_unlink(skb, head); - spin_unlock_irq(&head->lock); - fpl->fp[fpl->count] = get_file(file); - unix_inflight(fpl->user, fpl->fp[fpl->count]); - fpl->count++; - spin_lock_irq(&head->lock); - __skb_queue_head(head, skb); - } else { - skb = NULL; - } - } - spin_unlock_irq(&head->lock); - - if (skb) { - fput(file); - return 0; - } - - return __io_sqe_files_scm(ctx, 1, index); -#else - return 0; -#endif -} - static int io_queue_rsrc_removal(struct io_rsrc_data *data, unsigned idx, struct io_rsrc_node *node, void *rsrc) { @@ -8741,12 +8709,6 @@ static int io_install_fixed_file(struct io_kiocb *req, struct file *file, *io_get_tag_slot(ctx->file_data, slot_index) = 0; io_fixed_file_set(file_slot, file); - ret = io_sqe_file_register(ctx, file, slot_index); - if (ret) { - file_slot->file_ptr = 0; - goto err; - } - ret = 0; err: if (needs_switch) @@ -8860,12 +8822,6 @@ static int __io_sqe_files_update(struct io_ring_ctx *ctx, } *io_get_tag_slot(data, i) = tag; io_fixed_file_set(file_slot, file); - err = io_sqe_file_register(ctx, file, i); - if (err) { - file_slot->file_ptr = 0; - fput(file); - break; - } } } @@ -9787,12 +9743,7 @@ static void io_ring_exit_work(struct work_struct *work) init_completion(&exit.completion); init_task_work(&exit.task_work, io_tctx_exit_cb); exit.ctx = ctx; - /* - * Some may use context even when all refs and requests have been put, - * and they are free to do so while still holding uring_lock or - * completion_lock, see io_req_task_submit(). Apart from other work, - * this lock/unlock section also waits them to finish. - */ + mutex_lock(&ctx->uring_lock); while (!list_empty(&ctx->tctx_list)) { WARN_ON_ONCE(time_after(jiffies, timeout)); @@ -10427,7 +10378,7 @@ static int io_uring_show_cred(struct seq_file *m, unsigned int id, static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m) { - struct io_sq_data *sq = NULL; + int sq_pid = -1, sq_cpu = -1; bool has_lock; int i; @@ -10440,13 +10391,19 @@ static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m) has_lock = mutex_trylock(&ctx->uring_lock); if (has_lock && (ctx->flags & IORING_SETUP_SQPOLL)) { - sq = ctx->sq_data; - if (!sq->thread) - sq = NULL; + struct io_sq_data *sq = ctx->sq_data; + + if (mutex_trylock(&sq->lock)) { + if (sq->thread) { + sq_pid = task_pid_nr(sq->thread); + sq_cpu = task_cpu(sq->thread); + } + mutex_unlock(&sq->lock); + } } - seq_printf(m, "SqThread:\t%d\n", sq ? task_pid_nr(sq->thread) : -1); - seq_printf(m, "SqThreadCpu:\t%d\n", sq ? task_cpu(sq->thread) : -1); + seq_printf(m, "SqThread:\t%d\n", sq_pid); + seq_printf(m, "SqThreadCpu:\t%d\n", sq_cpu); seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files); for (i = 0; has_lock && i < ctx->nr_user_files; i++) { struct file *f = io_file_from_index(ctx, i); diff --git a/kernel/audit_watch.c b/kernel/audit_watch.c index 2acf7ca491542..edbeffee64b8e 100644 --- a/kernel/audit_watch.c +++ b/kernel/audit_watch.c @@ -527,11 +527,18 @@ int audit_exe_compare(struct task_struct *tsk, struct audit_fsnotify_mark *mark) unsigned long ino; dev_t dev; - exe_file = get_task_exe_file(tsk); + /* only do exe filtering if we are recording @current events/records */ + if (tsk != current) + return 0; + + if (!current->mm) + return 0; + exe_file = get_mm_exe_file(current->mm); if (!exe_file) return 0; ino = file_inode(exe_file)->i_ino; dev = file_inode(exe_file)->i_sb->s_dev; fput(exe_file); + return audit_mark_compare(mark, ino, dev); } diff --git a/kernel/auditsc.c b/kernel/auditsc.c index 693c8c3d294b1..604bd6f1f73b5 100644 --- a/kernel/auditsc.c +++ b/kernel/auditsc.c @@ -2220,6 +2220,8 @@ void __audit_inode_child(struct inode *parent, } } + cond_resched(); + /* is there a matching child entry? */ list_for_each_entry(n, &context->names_list, list) { /* can only match entries that have a name */ diff --git a/kernel/bpf/core.c b/kernel/bpf/core.c index f7c27c1cc593b..36c2896ee45f4 100644 --- a/kernel/bpf/core.c +++ b/kernel/bpf/core.c @@ -605,7 +605,11 @@ static __always_inline int bpf_tree_comp(void *key, struct latch_tree_node *n) if (val < ksym->start) return -1; - if (val >= ksym->end) + /* Ensure that we detect return addresses as part of the program, when + * the final instruction is a call for a program part of the stack + * trace. Therefore, do val > ksym->end instead of val >= ksym->end. + */ + if (val > ksym->end) return 1; return 0; diff --git a/kernel/bpf/cpumap.c b/kernel/bpf/cpumap.c index 8d1c4b3ee7604..194ed0e61f02b 100644 --- a/kernel/bpf/cpumap.c +++ b/kernel/bpf/cpumap.c @@ -203,7 +203,7 @@ static void cpu_map_bpf_prog_run_skb(struct bpf_cpu_map_entry *rcpu, } return; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(NULL, rcpu->prog, act); fallthrough; case XDP_ABORTED: trace_xdp_exception(skb->dev, rcpu->prog, act); @@ -262,7 +262,7 @@ static int cpu_map_bpf_prog_run_xdp(struct bpf_cpu_map_entry *rcpu, } break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(NULL, rcpu->prog, act); fallthrough; case XDP_DROP: xdp_return_frame(xdpf); diff --git a/kernel/bpf/devmap.c b/kernel/bpf/devmap.c index f02d04540c0c0..6feea293ff103 100644 --- a/kernel/bpf/devmap.c +++ b/kernel/bpf/devmap.c @@ -348,7 +348,7 @@ static int dev_map_bpf_prog_run(struct bpf_prog *xdp_prog, frames[nframes++] = xdpf; break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(NULL, xdp_prog, act); fallthrough; case XDP_ABORTED: trace_xdp_exception(dev, xdp_prog, act); @@ -507,7 +507,7 @@ static u32 dev_map_bpf_prog_run_skb(struct sk_buff *skb, struct bpf_dtab_netdev __skb_push(skb, skb->mac_len); break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(NULL, dst->xdp_prog, act); fallthrough; case XDP_ABORTED: trace_xdp_exception(dst->dev, dst->xdp_prog, act); diff --git a/kernel/bpf/helpers.c b/kernel/bpf/helpers.c index a711ffe238932..11e406ad16ae3 100644 --- a/kernel/bpf/helpers.c +++ b/kernel/bpf/helpers.c @@ -1118,13 +1118,6 @@ BPF_CALL_3(bpf_timer_init, struct bpf_timer_kern *, timer, struct bpf_map *, map ret = -EBUSY; goto out; } - if (!atomic64_read(&map->usercnt)) { - /* maps with timers must be either held by user space - * or pinned in bpffs. - */ - ret = -EPERM; - goto out; - } /* allocate hrtimer via map_kmalloc to use memcg accounting */ t = bpf_map_kmalloc_node(map, sizeof(*t), GFP_ATOMIC, map->numa_node); if (!t) { @@ -1137,7 +1130,21 @@ BPF_CALL_3(bpf_timer_init, struct bpf_timer_kern *, timer, struct bpf_map *, map rcu_assign_pointer(t->callback_fn, NULL); hrtimer_init(&t->timer, clockid, HRTIMER_MODE_REL_SOFT); t->timer.function = bpf_timer_cb; - timer->timer = t; + WRITE_ONCE(timer->timer, t); + /* Guarantee the order between timer->timer and map->usercnt. So + * when there are concurrent uref release and bpf timer init, either + * bpf_timer_cancel_and_free() called by uref release reads a no-NULL + * timer or atomic64_read() below returns a zero usercnt. + */ + smp_mb(); + if (!atomic64_read(&map->usercnt)) { + /* maps with timers must be either held by user space + * or pinned in bpffs. + */ + WRITE_ONCE(timer->timer, NULL); + kfree(t); + ret = -EPERM; + } out: __bpf_spin_unlock_irqrestore(&timer->lock); return ret; @@ -1305,7 +1312,7 @@ void bpf_timer_cancel_and_free(void *val) /* The subsequent bpf_timer_start/cancel() helpers won't be able to use * this timer, since it won't be initialized. */ - timer->timer = NULL; + WRITE_ONCE(timer->timer, NULL); out: __bpf_spin_unlock_irqrestore(&timer->lock); if (!t) diff --git a/kernel/bpf/net_namespace.c b/kernel/bpf/net_namespace.c index 542f275bf2523..868cc2c438997 100644 --- a/kernel/bpf/net_namespace.c +++ b/kernel/bpf/net_namespace.c @@ -1,6 +1,7 @@ // SPDX-License-Identifier: GPL-2.0 #include +#include #include #include diff --git a/kernel/bpf/queue_stack_maps.c b/kernel/bpf/queue_stack_maps.c index f9c734aaa9902..ef95b796a0fa3 100644 --- a/kernel/bpf/queue_stack_maps.c +++ b/kernel/bpf/queue_stack_maps.c @@ -103,7 +103,12 @@ static int __queue_map_get(struct bpf_map *map, void *value, bool delete) int err = 0; void *ptr; - raw_spin_lock_irqsave(&qs->lock, flags); + if (in_nmi()) { + if (!raw_spin_trylock_irqsave(&qs->lock, flags)) + return -EBUSY; + } else { + raw_spin_lock_irqsave(&qs->lock, flags); + } if (queue_stack_map_is_empty(qs)) { memset(value, 0, qs->map.value_size); @@ -133,7 +138,12 @@ static int __stack_map_get(struct bpf_map *map, void *value, bool delete) void *ptr; u32 index; - raw_spin_lock_irqsave(&qs->lock, flags); + if (in_nmi()) { + if (!raw_spin_trylock_irqsave(&qs->lock, flags)) + return -EBUSY; + } else { + raw_spin_lock_irqsave(&qs->lock, flags); + } if (queue_stack_map_is_empty(qs)) { memset(value, 0, qs->map.value_size); @@ -198,7 +208,12 @@ static int queue_stack_map_push_elem(struct bpf_map *map, void *value, if (flags & BPF_NOEXIST || flags > BPF_EXIST) return -EINVAL; - raw_spin_lock_irqsave(&qs->lock, irq_flags); + if (in_nmi()) { + if (!raw_spin_trylock_irqsave(&qs->lock, irq_flags)) + return -EBUSY; + } else { + raw_spin_lock_irqsave(&qs->lock, irq_flags); + } if (queue_stack_map_is_full(qs)) { if (!replace) { diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c index 650279b18aa95..a39cd1736117f 100644 --- a/kernel/bpf/verifier.c +++ b/kernel/bpf/verifier.c @@ -2189,7 +2189,12 @@ static int backtrack_insn(struct bpf_verifier_env *env, int idx, if (class == BPF_ALU || class == BPF_ALU64) { if (!(*reg_mask & dreg)) return 0; - if (opcode == BPF_MOV) { + if (opcode == BPF_END || opcode == BPF_NEG) { + /* sreg is reserved and unused + * dreg still need precision before this insn + */ + return 0; + } else if (opcode == BPF_MOV) { if (BPF_SRC(insn->code) == BPF_X) { /* dreg = sreg * dreg needs precision after this insn @@ -2885,7 +2890,7 @@ static int check_stack_write_fixed_off(struct bpf_verifier_env *env, insn->imm != 0 && env->bpf_capable) { struct bpf_reg_state fake_reg = {}; - __mark_reg_known(&fake_reg, (u32)insn->imm); + __mark_reg_known(&fake_reg, insn->imm); fake_reg.type = SCALAR_VALUE; save_register_state(state, spi, &fake_reg, size); } else if (reg && is_spillable_regtype(reg->type)) { @@ -9578,7 +9583,7 @@ static int check_return_code(struct bpf_verifier_env *env) struct tnum enforce_attach_type_range = tnum_unknown; const struct bpf_prog *prog = env->prog; struct bpf_reg_state *reg; - struct tnum range = tnum_range(0, 1); + struct tnum range = tnum_range(0, 1), const_0 = tnum_const(0); enum bpf_prog_type prog_type = resolve_prog_type(env->prog); int err; struct bpf_func_state *frame = env->cur_state->frame[0]; @@ -9616,8 +9621,8 @@ static int check_return_code(struct bpf_verifier_env *env) return -EINVAL; } - if (!tnum_in(tnum_const(0), reg->var_off)) { - verbose_invalid_scalar(env, reg, &range, "async callback", "R0"); + if (!tnum_in(const_0, reg->var_off)) { + verbose_invalid_scalar(env, reg, &const_0, "async callback", "R0"); return -EINVAL; } return 0; diff --git a/kernel/cgroup/cgroup-v1.c b/kernel/cgroup/cgroup-v1.c index ee8b3d80f19ee..1292bc8449458 100644 --- a/kernel/cgroup/cgroup-v1.c +++ b/kernel/cgroup/cgroup-v1.c @@ -365,10 +365,9 @@ static int pidlist_array_load(struct cgroup *cgrp, enum cgroup_filetype type, } css_task_iter_end(&it); length = n; - /* now sort & (if procs) strip out duplicates */ + /* now sort & strip out duplicates (tgids or recycled thread PIDs) */ sort(array, length, sizeof(pid_t), cmppid, NULL); - if (type == CGROUP_FILE_PROCS) - length = pidlist_uniq(array, length); + length = pidlist_uniq(array, length); l = cgroup_pidlist_find_create(cgrp, type); if (!l) { diff --git a/kernel/cgroup/namespace.c b/kernel/cgroup/namespace.c index 0d5c29879a50b..144a464e45c66 100644 --- a/kernel/cgroup/namespace.c +++ b/kernel/cgroup/namespace.c @@ -149,9 +149,3 @@ const struct proc_ns_operations cgroupns_operations = { .install = cgroupns_install, .owner = cgroupns_owner, }; - -static __init int cgroup_namespaces_init(void) -{ - return 0; -} -subsys_initcall(cgroup_namespaces_init); diff --git a/kernel/cpu.c b/kernel/cpu.c index 393114c10c285..0e786de993e01 100644 --- a/kernel/cpu.c +++ b/kernel/cpu.c @@ -1697,7 +1697,7 @@ static struct cpuhp_step cpuhp_hp_states[] = { [CPUHP_HRTIMERS_PREPARE] = { .name = "hrtimers:prepare", .startup.single = hrtimers_prepare_cpu, - .teardown.single = hrtimers_dead_cpu, + .teardown.single = NULL, }, [CPUHP_SMPCFD_PREPARE] = { .name = "smpcfd:prepare", @@ -1764,6 +1764,12 @@ static struct cpuhp_step cpuhp_hp_states[] = { .startup.single = NULL, .teardown.single = smpcfd_dying_cpu, }, + [CPUHP_AP_HRTIMERS_DYING] = { + .name = "hrtimers:dying", + .startup.single = NULL, + .teardown.single = hrtimers_cpu_dying, + }, + /* Entry state on starting. Interrupts enabled from here on. Transient * state for synchronsization */ [CPUHP_AP_ONLINE] = { diff --git a/kernel/debug/debug_core.c b/kernel/debug/debug_core.c index 82adec3a90e4a..1ed982da44390 100644 --- a/kernel/debug/debug_core.c +++ b/kernel/debug/debug_core.c @@ -997,6 +997,9 @@ void kgdb_panic(const char *msg) if (panic_timeout) return; + debug_locks_off(); + console_flush_on_panic(CONSOLE_FLUSH_PENDING); + if (dbg_kdb_mode) kdb_printf("PANIC: %s\n", msg); diff --git a/kernel/dma/debug.c b/kernel/dma/debug.c index 2caafd13f8aac..1f9a8cee42241 100644 --- a/kernel/dma/debug.c +++ b/kernel/dma/debug.c @@ -605,15 +605,19 @@ static struct dma_debug_entry *__dma_entry_alloc(void) return entry; } -static void __dma_entry_alloc_check_leak(void) +/* + * This should be called outside of free_entries_lock scope to avoid potential + * deadlocks with serial consoles that use DMA. + */ +static void __dma_entry_alloc_check_leak(u32 nr_entries) { - u32 tmp = nr_total_entries % nr_prealloc_entries; + u32 tmp = nr_entries % nr_prealloc_entries; /* Shout each time we tick over some multiple of the initial pool */ if (tmp < DMA_DEBUG_DYNAMIC_ENTRIES) { pr_info("dma_debug_entry pool grown to %u (%u00%%)\n", - nr_total_entries, - (nr_total_entries / nr_prealloc_entries)); + nr_entries, + (nr_entries / nr_prealloc_entries)); } } @@ -624,8 +628,10 @@ static void __dma_entry_alloc_check_leak(void) */ static struct dma_debug_entry *dma_entry_alloc(void) { + bool alloc_check_leak = false; struct dma_debug_entry *entry; unsigned long flags; + u32 nr_entries; spin_lock_irqsave(&free_entries_lock, flags); if (num_free_entries == 0) { @@ -635,13 +641,17 @@ static struct dma_debug_entry *dma_entry_alloc(void) pr_err("debugging out of memory - disabling\n"); return NULL; } - __dma_entry_alloc_check_leak(); + alloc_check_leak = true; + nr_entries = nr_total_entries; } entry = __dma_entry_alloc(); spin_unlock_irqrestore(&free_entries_lock, flags); + if (alloc_check_leak) + __dma_entry_alloc_check_leak(nr_entries); + #ifdef CONFIG_STACKTRACE entry->stack_len = stack_trace_save(entry->stack_entries, ARRAY_SIZE(entry->stack_entries), diff --git a/kernel/dma/swiotlb.c b/kernel/dma/swiotlb.c index a9849670bdb54..68348444decf5 100644 --- a/kernel/dma/swiotlb.c +++ b/kernel/dma/swiotlb.c @@ -34,7 +34,7 @@ #include #include #include -#include +#include #include #ifdef CONFIG_DEBUG_FS #include @@ -50,6 +50,7 @@ #include #include +#include #include #include #include @@ -68,10 +69,16 @@ #define INVALID_PHYS_ADDR (~(phys_addr_t)0) +#define NUM_AREAS_DEFAULT 1 + enum swiotlb_force swiotlb_force; struct io_tlb_mem io_tlb_default_mem; +static bool swiotlb_alloc_from_low_pages = true; + +phys_addr_t swiotlb_unencrypted_base; + /* * Max segment that we can provide which (if pages are contingous) will * not be bounced (unless SWIOTLB_FORCE is set). @@ -80,14 +87,60 @@ static unsigned int max_segment; static unsigned long default_nslabs = IO_TLB_DEFAULT_SIZE >> IO_TLB_SHIFT; +static __read_mostly unsigned int area_index_shift; +static __read_mostly unsigned int area_bits; +static __read_mostly int num_areas = NUM_AREAS_DEFAULT; + +static __init int setup_areas(int n) +{ + unsigned long nslabs; + + if (n < 1 || !is_power_of_2(n)) { + pr_err("swiotlb: Invalid areas parameter %d\n", n); + return -EINVAL; + } + + /* Round up number of slabs to the next power of 2. + * The last area is going be smaller than the rest if default_nslabs is + * not power of two. + */ + nslabs = roundup_pow_of_two(default_nslabs); + + pr_info("swiotlb: Using %d areas\n", n); + num_areas = n; + area_index_shift = __fls(nslabs) - __fls(num_areas); + area_bits = __fls(n); + return 0; +} + +/* + * Can be called from architecture specific code when swiotlb is set up before + * possible cpus are setup. + */ + +void __init swiotlb_hint_cpus(int cpus) +{ + if (num_areas == NUM_AREAS_DEFAULT && cpus > 1) { + if (!is_power_of_2(cpus)) + cpus = 1U << (__fls(cpus) + 1); + setup_areas(cpus); + } +} + static int __init setup_io_tlb_npages(char *str) { + int ret = 0; + if (isdigit(*str)) { /* avoid tail segment of size < IO_TLB_SEGSIZE */ default_nslabs = ALIGN(simple_strtoul(str, &str, 0), IO_TLB_SEGSIZE); } + if (*str == ',') + ++str; + if (isdigit(*str)) + ret = setup_areas(simple_strtoul(str, &str, 0)); if (*str == ',') ++str; if (!strcmp(str, "force")) @@ -95,7 +148,7 @@ setup_io_tlb_npages(char *str) else if (!strcmp(str, "noforce")) swiotlb_force = SWIOTLB_NO_FORCE; - return 0; + return ret; } early_param("swiotlb", setup_io_tlb_npages); @@ -113,6 +166,11 @@ void swiotlb_set_max_segment(unsigned int val) max_segment = rounddown(val, PAGE_SIZE); } +void swiotlb_set_alloc_from_low_pages(bool low) +{ + swiotlb_alloc_from_low_pages = low; +} + unsigned long swiotlb_size_or_default(void) { return default_nslabs << IO_TLB_SHIFT; @@ -129,6 +187,7 @@ void __init swiotlb_adjust_size(unsigned long size) return; size = ALIGN(size, IO_TLB_SIZE); default_nslabs = ALIGN(size >> IO_TLB_SHIFT, IO_TLB_SEGSIZE); + setup_areas(num_areas); pr_info("SWIOTLB bounce buffer size adjusted to %luMB", size >> 20); } @@ -155,6 +214,34 @@ static inline unsigned long nr_slots(u64 val) return DIV_ROUND_UP(val, IO_TLB_SIZE); } +/* + * Remap swioltb memory in the unencrypted physical address space + * when swiotlb_unencrypted_base is set. (e.g. for Hyper-V AMD SEV-SNP + * Isolation VMs). + */ +#ifdef CONFIG_HAS_IOMEM +static void *swiotlb_mem_remap(struct io_tlb_mem *mem, unsigned long bytes) +{ + void *vaddr = NULL; + + if (swiotlb_unencrypted_base) { + phys_addr_t paddr = mem->start + swiotlb_unencrypted_base; + + vaddr = memremap(paddr, bytes, MEMREMAP_WB); + if (!vaddr) + pr_err("Failed to map the unencrypted memory %pa size %lx.\n", + &paddr, bytes); + } + + return vaddr; +} +#else +static void *swiotlb_mem_remap(struct io_tlb_mem *mem, unsigned long bytes) +{ + return NULL; +} +#endif + /* * Early SWIOTLB allocation may be too early to allow an architecture to * perform the desired operations. This function allows the architecture to @@ -172,7 +259,12 @@ void __init swiotlb_update_mem_attributes(void) vaddr = phys_to_virt(mem->start); bytes = PAGE_ALIGN(mem->nslabs << IO_TLB_SHIFT); set_memory_decrypted((unsigned long)vaddr, bytes >> PAGE_SHIFT); - memset(vaddr, 0, bytes); + + mem->vaddr = swiotlb_mem_remap(mem, bytes); + if (!mem->vaddr) + mem->vaddr = vaddr; + + memset(mem->vaddr, 0, bytes); } static void swiotlb_init_io_tlb_mem(struct io_tlb_mem *mem, phys_addr_t start, @@ -184,19 +276,34 @@ static void swiotlb_init_io_tlb_mem(struct io_tlb_mem *mem, phys_addr_t start, mem->nslabs = nslabs; mem->start = start; mem->end = mem->start + bytes; - mem->index = 0; mem->late_alloc = late_alloc; if (swiotlb_force == SWIOTLB_FORCE) mem->force_bounce = true; - spin_lock_init(&mem->lock); + for (i = 0; i < num_areas; i++) { + INIT_LIST_HEAD(&mem->areas[i].free_slots); + spin_lock_init(&mem->areas[i].lock); + } for (i = 0; i < mem->nslabs; i++) { - mem->slots[i].list = IO_TLB_SEGSIZE - io_tlb_offset(i); + int aindex = area_index_shift ? i >> area_index_shift : 0; + __set_bit(i, mem->bitmap); mem->slots[i].orig_addr = INVALID_PHYS_ADDR; mem->slots[i].alloc_size = 0; + list_add_tail(&mem->slots[i].node, + &mem->areas[aindex].free_slots); } + + /* + * If swiotlb_unencrypted_base is set, the bounce buffer memory will + * be remapped and cleared in swiotlb_update_mem_attributes. + */ + if (swiotlb_unencrypted_base) + return; + memset(vaddr, 0, bytes); + mem->vaddr = vaddr; + return; } int __init swiotlb_init_with_tbl(char *tlb, unsigned long nslabs, int verbose) @@ -216,6 +323,15 @@ int __init swiotlb_init_with_tbl(char *tlb, unsigned long nslabs, int verbose) if (!mem->slots) panic("%s: Failed to allocate %zu bytes align=0x%lx\n", __func__, alloc_size, PAGE_SIZE); + mem->areas = memblock_alloc(sizeof(struct io_tlb_area) * num_areas, + SMP_CACHE_BYTES); + if (!mem->areas) + panic("Cannot allocate io_tlb_areas"); + + mem->bitmap = memblock_alloc(DIV_ROUND_UP(nslabs, BITS_PER_BYTE), SMP_CACHE_BYTES); + if (!mem->bitmap) + panic("%s: Failed to allocate %lu bytes align=0x%x\n", + __func__, DIV_ROUND_UP(nslabs, BITS_PER_BYTE), SMP_CACHE_BYTES); swiotlb_init_io_tlb_mem(mem, __pa(tlb), nslabs, false); @@ -238,8 +354,15 @@ swiotlb_init(int verbose) if (swiotlb_force == SWIOTLB_NO_FORCE) return; - /* Get IO TLB memory from the low pages */ - tlb = memblock_alloc_low(bytes, PAGE_SIZE); + /* + * Get IO TLB memory from the low pages if swiotlb_alloc_from_low_pages + * is set. + */ + if (swiotlb_alloc_from_low_pages) + tlb = memblock_alloc_low(bytes, PAGE_SIZE); + else + tlb = memblock_alloc(bytes, PAGE_SIZE); + if (!tlb) goto fail; if (swiotlb_init_with_tbl(tlb, default_nslabs, verbose)) @@ -305,6 +428,7 @@ swiotlb_late_init_with_tbl(char *tlb, unsigned long nslabs) { struct io_tlb_mem *mem = &io_tlb_default_mem; unsigned long bytes = nslabs << IO_TLB_SHIFT; + int order; if (swiotlb_force == SWIOTLB_NO_FORCE) return 0; @@ -313,10 +437,22 @@ swiotlb_late_init_with_tbl(char *tlb, unsigned long nslabs) if (WARN_ON_ONCE(mem->nslabs)) return -ENOMEM; - mem->slots = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, - get_order(array_size(sizeof(*mem->slots), nslabs))); - if (!mem->slots) + mem->bitmap = kzalloc(DIV_ROUND_UP(nslabs, BITS_PER_BYTE), GFP_KERNEL); + order = get_order(array_size(sizeof(*mem->slots), nslabs)); + mem->slots = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order); + if (!mem->slots || !mem->bitmap) { + kfree(mem->bitmap); + kfree(mem->slots); return -ENOMEM; + } + + mem->areas = (struct io_tlb_area *)kcalloc(num_areas, + sizeof(struct io_tlb_area), + GFP_KERNEL); + if (!mem->areas) { + free_pages((unsigned long)mem->slots, order); + return -ENOMEM; + } set_memory_decrypted((unsigned long)tlb, bytes >> PAGE_SHIFT); swiotlb_init_io_tlb_mem(mem, virt_to_phys(tlb), nslabs, true); @@ -342,9 +478,12 @@ void __init swiotlb_exit(void) set_memory_encrypted(tbl_vaddr, tbl_size >> PAGE_SHIFT); if (mem->late_alloc) { + kfree(mem->areas); free_pages(tbl_vaddr, get_order(tbl_size)); free_pages((unsigned long)mem->slots, get_order(slots_size)); } else { + memblock_free_late(__pa(mem->areas), + num_areas * sizeof(struct io_tlb_area)); memblock_free_late(mem->start, tbl_size); memblock_free_late(__pa(mem->slots), slots_size); } @@ -371,7 +510,7 @@ static void swiotlb_bounce(struct device *dev, phys_addr_t tlb_addr, size_t size phys_addr_t orig_addr = mem->slots[index].orig_addr; size_t alloc_size = mem->slots[index].alloc_size; unsigned long pfn = PFN_DOWN(orig_addr); - unsigned char *vaddr = phys_to_virt(tlb_addr); + unsigned char *vaddr = mem->vaddr + tlb_addr - mem->start; unsigned int tlb_offset, orig_addr_offset; if (orig_addr == INVALID_PHYS_ADDR) @@ -450,57 +589,69 @@ static inline unsigned long get_max_slots(unsigned long boundary_mask) return nr_slots(boundary_mask + 1); } -static unsigned int wrap_index(struct io_tlb_mem *mem, unsigned int index) +static inline unsigned long area_nslabs(struct io_tlb_mem *mem) { - if (index >= mem->nslabs) - return 0; - return index; + return area_index_shift ? (1UL << area_index_shift) + 1 : + mem->nslabs; +} + +static inline unsigned int area_start(int aindex) +{ + return aindex << area_index_shift; +} + +static inline unsigned int area_end(struct io_tlb_mem *mem, int aindex) +{ + return area_start(aindex) + area_nslabs(mem); } /* * Find a suitable number of IO TLB entries size that will fit this request and * allocate a buffer from that IO TLB pool. */ -static int swiotlb_find_slots(struct device *dev, phys_addr_t orig_addr, - size_t alloc_size, unsigned int alloc_align_mask) +static int swiotlb_do_find_slots(struct io_tlb_mem *mem, + struct io_tlb_area *area, + int area_index, + struct device *dev, phys_addr_t orig_addr, + size_t alloc_size) { - struct io_tlb_mem *mem = dev->dma_io_tlb_mem; + struct io_tlb_slot *slot, *tmp; unsigned long boundary_mask = dma_get_seg_boundary(dev); dma_addr_t tbl_dma_addr = phys_to_dma_unencrypted(dev, mem->start) & boundary_mask; unsigned long max_slots = get_max_slots(boundary_mask); unsigned int iotlb_align_mask = dma_get_min_align_mask(dev) & ~(IO_TLB_SIZE - 1); - unsigned int nslots = nr_slots(alloc_size), stride; - unsigned int index, wrap, count = 0, i; + unsigned int nslots = nr_slots(alloc_size); + unsigned int index, i; unsigned int offset = swiotlb_align_offset(dev, orig_addr); unsigned long flags; BUG_ON(!nslots); + BUG_ON(area_index >= num_areas); - /* - * For mappings with an alignment requirement don't bother looping to - * unaligned slots once we found an aligned one. For allocations of - * PAGE_SIZE or larger only look for page aligned allocations. - */ - stride = (iotlb_align_mask >> IO_TLB_SHIFT) + 1; - if (alloc_size >= PAGE_SIZE) - stride = max(stride, stride << (PAGE_SHIFT - IO_TLB_SHIFT)); - stride = max(stride, (alloc_align_mask >> IO_TLB_SHIFT) + 1); - - spin_lock_irqsave(&mem->lock, flags); - if (unlikely(nslots > mem->nslabs - mem->used)) + spin_lock_irqsave(&area->lock, flags); + if (unlikely(nslots > area_nslabs(mem) - area->used)) goto not_found; - index = wrap = wrap_index(mem, ALIGN(mem->index, stride)); - do { + list_for_each_entry_safe(slot, tmp, &area->free_slots, node) { + index = slot - mem->slots; if (orig_addr && (slot_addr(tbl_dma_addr, index) & iotlb_align_mask) != (orig_addr & iotlb_align_mask)) { - index = wrap_index(mem, index + 1); continue; } + if (io_tlb_offset(index) + nslots > IO_TLB_SEGSIZE) + continue; + + /* + * If requested size is larger than a page, ensure allocated + * memory to be page aligned. + */ + if (alloc_size >= PAGE_SIZE && (slot_addr(tbl_dma_addr, index) & ~PAGE_MASK)) + continue; + /* * If we find a slot that indicates we have 'nslots' number of * contiguous buffers, we allocate the buffers from that slot @@ -509,40 +660,60 @@ static int swiotlb_find_slots(struct device *dev, phys_addr_t orig_addr, if (!iommu_is_span_boundary(index, nslots, nr_slots(tbl_dma_addr), max_slots)) { - if (mem->slots[index].list >= nslots) + if (find_next_zero_bit(mem->bitmap, index + nslots, index) == + index + nslots) goto found; } - index = wrap_index(mem, index + stride); - } while (index != wrap); + } not_found: - spin_unlock_irqrestore(&mem->lock, flags); + spin_unlock_irqrestore(&area->lock, flags); return -1; found: for (i = index; i < index + nslots; i++) { - mem->slots[i].list = 0; + __clear_bit(i, mem->bitmap); mem->slots[i].alloc_size = alloc_size - (offset + ((i - index) << IO_TLB_SHIFT)); + list_del(&mem->slots[i].node); } - for (i = index - 1; - io_tlb_offset(i) != IO_TLB_SEGSIZE - 1 && - mem->slots[i].list; i--) - mem->slots[i].list = ++count; - /* - * Update the indices to avoid searching in the next round. - */ - if (index + nslots < mem->nslabs) - mem->index = index + nslots; - else - mem->index = 0; - mem->used += nslots; + area->used += nslots; - spin_unlock_irqrestore(&mem->lock, flags); + spin_unlock_irqrestore(&area->lock, flags); return index; } +static int swiotlb_find_slots(struct device *dev, phys_addr_t orig_addr, + size_t alloc_size) +{ + struct io_tlb_mem *mem = dev->dma_io_tlb_mem; + int start = raw_smp_processor_id() & ((1U << area_bits) - 1); + int i, index; + + i = start; + do { + index = swiotlb_do_find_slots(mem, mem->areas + i, i, + dev, orig_addr, alloc_size); + if (index >= 0) + return index; + if (++i >= num_areas) + i = 0; + } while (i != start); + return -1; +} + +/* Somewhat racy estimate */ +static unsigned long mem_used(struct io_tlb_mem *mem) +{ + int i; + unsigned long used = 0; + + for (i = 0; i < num_areas; i++) + used += mem->areas[i].used; + return used; +} + phys_addr_t swiotlb_tbl_map_single(struct device *dev, phys_addr_t orig_addr, size_t mapping_size, size_t alloc_size, unsigned int alloc_align_mask, enum dma_data_direction dir, @@ -557,7 +728,7 @@ phys_addr_t swiotlb_tbl_map_single(struct device *dev, phys_addr_t orig_addr, if (!mem || !mem->nslabs) panic("Can not allocate SWIOTLB buffer earlier and can't now provide you with the DMA bounce buffer"); - if (mem_encrypt_active()) + if (cc_platform_has(CC_ATTR_MEM_ENCRYPT)) pr_warn_once("Memory encryption is active and system is using DMA bounce buffers\n"); if (mapping_size > alloc_size) { @@ -567,12 +738,12 @@ phys_addr_t swiotlb_tbl_map_single(struct device *dev, phys_addr_t orig_addr, } index = swiotlb_find_slots(dev, orig_addr, - alloc_size + offset, alloc_align_mask); + alloc_size + offset); if (index == -1) { if (!(attrs & DMA_ATTR_NO_WARN)) dev_warn_ratelimited(dev, "swiotlb buffer is full (sz: %zd bytes), total %lu (slots), used %lu (slots)\n", - alloc_size, mem->nslabs, mem->used); + alloc_size, mem->nslabs, mem_used(mem)); return (phys_addr_t)DMA_MAPPING_ERROR; } @@ -602,40 +773,27 @@ static void swiotlb_release_slots(struct device *dev, phys_addr_t tlb_addr) unsigned int offset = swiotlb_align_offset(dev, tlb_addr); int index = (tlb_addr - offset - mem->start) >> IO_TLB_SHIFT; int nslots = nr_slots(mem->slots[index].alloc_size + offset); - int count, i; + int aindex = area_index_shift ? index >> area_index_shift : 0; + struct io_tlb_area *area = mem->areas + aindex; + int i; - /* - * Return the buffer to the free list by setting the corresponding - * entries to indicate the number of contiguous entries available. - * While returning the entries to the free list, we merge the entries - * with slots below and above the pool being returned. - */ - spin_lock_irqsave(&mem->lock, flags); - if (index + nslots < ALIGN(index + 1, IO_TLB_SEGSIZE)) - count = mem->slots[index + nslots].list; - else - count = 0; + BUG_ON(aindex >= num_areas); + + spin_lock_irqsave(&area->lock, flags); /* - * Step 1: return the slots to the free list, merging the slots with - * superceeding slots + * Return the slots to swiotlb, updating bitmap to indicate + * corresponding entries are free. */ for (i = index + nslots - 1; i >= index; i--) { - mem->slots[i].list = ++count; + __set_bit(i, mem->bitmap); mem->slots[i].orig_addr = INVALID_PHYS_ADDR; mem->slots[i].alloc_size = 0; + list_add(&mem->slots[i].node, &area->free_slots); } - /* - * Step 2: merge the returned slots with the preceding slots, if - * available (non zero) - */ - for (i = index - 1; - io_tlb_offset(i) != IO_TLB_SEGSIZE - 1 && mem->slots[i].list; - i--) - mem->slots[i].list = ++count; - mem->used -= nslots; - spin_unlock_irqrestore(&mem->lock, flags); + area->used -= nslots; + spin_unlock_irqrestore(&area->lock, flags); } /* @@ -727,17 +885,27 @@ bool is_swiotlb_active(struct device *dev) { struct io_tlb_mem *mem = dev->dma_io_tlb_mem; - return mem && mem->nslabs; + return mem && mem->start != mem->end; } EXPORT_SYMBOL_GPL(is_swiotlb_active); #ifdef CONFIG_DEBUG_FS + +static int used_get(void *data, u64 *val) +{ + struct io_tlb_mem *mem = (struct io_tlb_mem *)data; + *val = mem_used(mem); + return 0; +} + +DEFINE_DEBUGFS_ATTRIBUTE(used_fops, used_get, NULL, "%llu\n"); + static struct dentry *debugfs_dir; static void swiotlb_create_debugfs_files(struct io_tlb_mem *mem) { debugfs_create_ulong("io_tlb_nslabs", 0400, mem->debugfs, &mem->nslabs); - debugfs_create_ulong("io_tlb_used", 0400, mem->debugfs, &mem->used); + debugfs_create_file("io_tlb_used", 0400, mem->debugfs, mem, &used_fops); } static int __init swiotlb_create_default_debugfs(void) @@ -781,7 +949,7 @@ struct page *swiotlb_alloc(struct device *dev, size_t size) if (!mem) return NULL; - index = swiotlb_find_slots(dev, 0, size, 0); + index = swiotlb_find_slots(dev, 0, size); if (index == -1) return NULL; @@ -818,9 +986,12 @@ static int rmem_swiotlb_device_init(struct reserved_mem *rmem, if (!mem) return -ENOMEM; + mem->bitmap = kzalloc(DIV_ROUND_UP(nslabs, BITS_PER_BYTE), GFP_KERNEL); mem->slots = kzalloc(array_size(sizeof(*mem->slots), nslabs), GFP_KERNEL); - if (!mem->slots) { + if (!mem->slots || !mem->bitmap) { + kfree(mem->slots); + kfree(mem->bitmap); kfree(mem); return -ENOMEM; } diff --git a/kernel/events/core.c b/kernel/events/core.c index 832cf61f025b8..97d125167adc6 100644 --- a/kernel/events/core.c +++ b/kernel/events/core.c @@ -1904,28 +1904,34 @@ static inline void perf_event__state_init(struct perf_event *event) PERF_EVENT_STATE_INACTIVE; } -static void __perf_event_read_size(struct perf_event *event, int nr_siblings) +static int __perf_event_read_size(u64 read_format, int nr_siblings) { int entry = sizeof(u64); /* value */ int size = 0; int nr = 1; - if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) + if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) size += sizeof(u64); - if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) + if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) size += sizeof(u64); - if (event->attr.read_format & PERF_FORMAT_ID) + if (read_format & PERF_FORMAT_ID) entry += sizeof(u64); - if (event->attr.read_format & PERF_FORMAT_GROUP) { + if (read_format & PERF_FORMAT_LOST) + entry += sizeof(u64); + + if (read_format & PERF_FORMAT_GROUP) { nr += nr_siblings; size += sizeof(u64); } - size += entry * nr; - event->read_size = size; + /* + * Since perf_event_validate_size() limits this to 16k and inhibits + * adding more siblings, this will never overflow. + */ + return size + nr * entry; } static void __perf_event_header_size(struct perf_event *event, u64 sample_type) @@ -1975,8 +1981,9 @@ static void __perf_event_header_size(struct perf_event *event, u64 sample_type) */ static void perf_event__header_size(struct perf_event *event) { - __perf_event_read_size(event, - event->group_leader->nr_siblings); + event->read_size = + __perf_event_read_size(event->attr.read_format, + event->group_leader->nr_siblings); __perf_event_header_size(event, event->attr.sample_type); } @@ -2007,23 +2014,44 @@ static void perf_event__id_header_size(struct perf_event *event) event->id_header_size = size; } +/* + * Check that adding an event to the group does not result in anybody + * overflowing the 64k event limit imposed by the output buffer. + * + * Specifically, check that the read_size for the event does not exceed 16k, + * read_size being the one term that grows with groups size. Since read_size + * depends on per-event read_format, also (re)check the existing events. + * + * This leaves 48k for the constant size fields and things like callchains, + * branch stacks and register sets. + */ static bool perf_event_validate_size(struct perf_event *event) { - /* - * The values computed here will be over-written when we actually - * attach the event. - */ - __perf_event_read_size(event, event->group_leader->nr_siblings + 1); - __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ); - perf_event__id_header_size(event); + struct perf_event *sibling, *group_leader = event->group_leader; + + if (__perf_event_read_size(event->attr.read_format, + group_leader->nr_siblings + 1) > 16*1024) + return false; + + if (__perf_event_read_size(group_leader->attr.read_format, + group_leader->nr_siblings + 1) > 16*1024) + return false; /* - * Sum the lot; should not exceed the 64k limit we have on records. - * Conservative limit to allow for callchains and other variable fields. + * When creating a new group leader, group_leader->ctx is initialized + * after the size has been validated, but we cannot safely use + * for_each_sibling_event() until group_leader->ctx is set. A new group + * leader cannot have any siblings yet, so we can safely skip checking + * the non-existent siblings. */ - if (event->read_size + event->header_size + - event->id_header_size + sizeof(struct perf_event_header) >= 16*1024) - return false; + if (event == group_leader) + return true; + + for_each_sibling_event(sibling, group_leader) { + if (__perf_event_read_size(sibling->attr.read_format, + group_leader->nr_siblings + 1) > 16*1024) + return false; + } return true; } @@ -5436,11 +5464,15 @@ static int __perf_read_group_add(struct perf_event *leader, values[n++] += perf_event_count(leader); if (read_format & PERF_FORMAT_ID) values[n++] = primary_event_id(leader); + if (read_format & PERF_FORMAT_LOST) + values[n++] = atomic64_read(&leader->lost_samples); for_each_sibling_event(sub, leader) { values[n++] += perf_event_count(sub); if (read_format & PERF_FORMAT_ID) values[n++] = primary_event_id(sub); + if (read_format & PERF_FORMAT_LOST) + values[n++] = atomic64_read(&sub->lost_samples); } unlock: @@ -5494,7 +5526,7 @@ static int perf_read_one(struct perf_event *event, u64 read_format, char __user *buf) { u64 enabled, running; - u64 values[4]; + u64 values[5]; int n = 0; values[n++] = __perf_event_read_value(event, &enabled, &running); @@ -5504,6 +5536,8 @@ static int perf_read_one(struct perf_event *event, values[n++] = running; if (read_format & PERF_FORMAT_ID) values[n++] = primary_event_id(event); + if (read_format & PERF_FORMAT_LOST) + values[n++] = atomic64_read(&event->lost_samples); if (copy_to_user(buf, values, n * sizeof(u64))) return -EFAULT; @@ -7064,7 +7098,7 @@ static void perf_output_read_one(struct perf_output_handle *handle, u64 enabled, u64 running) { u64 read_format = event->attr.read_format; - u64 values[4]; + u64 values[5]; int n = 0; values[n++] = perf_event_count(event); @@ -7078,6 +7112,8 @@ static void perf_output_read_one(struct perf_output_handle *handle, } if (read_format & PERF_FORMAT_ID) values[n++] = primary_event_id(event); + if (read_format & PERF_FORMAT_LOST) + values[n++] = atomic64_read(&event->lost_samples); __output_copy(handle, values, n * sizeof(u64)); } @@ -7088,7 +7124,7 @@ static void perf_output_read_group(struct perf_output_handle *handle, { struct perf_event *leader = event->group_leader, *sub; u64 read_format = event->attr.read_format; - u64 values[5]; + u64 values[6]; int n = 0; values[n++] = 1 + leader->nr_siblings; @@ -7106,6 +7142,8 @@ static void perf_output_read_group(struct perf_output_handle *handle, values[n++] = perf_event_count(leader); if (read_format & PERF_FORMAT_ID) values[n++] = primary_event_id(leader); + if (read_format & PERF_FORMAT_LOST) + values[n++] = atomic64_read(&leader->lost_samples); __output_copy(handle, values, n * sizeof(u64)); @@ -7119,6 +7157,8 @@ static void perf_output_read_group(struct perf_output_handle *handle, values[n++] = perf_event_count(sub); if (read_format & PERF_FORMAT_ID) values[n++] = primary_event_id(sub); + if (read_format & PERF_FORMAT_LOST) + values[n++] = atomic64_read(&sub->lost_samples); __output_copy(handle, values, n * sizeof(u64)); } @@ -13285,7 +13325,8 @@ static int inherit_group(struct perf_event *parent_event, !perf_get_aux_event(child_ctr, leader)) return -EINVAL; } - leader->group_generation = parent_event->group_generation; + if (leader) + leader->group_generation = parent_event->group_generation; return 0; } diff --git a/kernel/events/internal.h b/kernel/events/internal.h index aa23ffdaf819f..5150d5f84c033 100644 --- a/kernel/events/internal.h +++ b/kernel/events/internal.h @@ -210,12 +210,7 @@ DEFINE_OUTPUT_COPY(__output_copy_user, arch_perf_out_copy_user) static inline int get_recursion_context(int *recursion) { - unsigned int pc = preempt_count(); - unsigned char rctx = 0; - - rctx += !!(pc & (NMI_MASK)); - rctx += !!(pc & (NMI_MASK | HARDIRQ_MASK)); - rctx += !!(pc & (NMI_MASK | HARDIRQ_MASK | SOFTIRQ_OFFSET)); + unsigned char rctx = interrupt_context_level(); if (recursion[rctx]) return -1; diff --git a/kernel/events/ring_buffer.c b/kernel/events/ring_buffer.c index f40da32f5e753..45965f13757e4 100644 --- a/kernel/events/ring_buffer.c +++ b/kernel/events/ring_buffer.c @@ -172,8 +172,10 @@ __perf_output_begin(struct perf_output_handle *handle, goto out; if (unlikely(rb->paused)) { - if (rb->nr_pages) + if (rb->nr_pages) { local_inc(&rb->lost); + atomic64_inc(&event->lost_samples); + } goto out; } @@ -254,6 +256,7 @@ __perf_output_begin(struct perf_output_handle *handle, fail: local_inc(&rb->lost); + atomic64_inc(&event->lost_samples); perf_output_put_handle(handle); out: rcu_read_unlock(); @@ -696,6 +699,12 @@ int rb_alloc_aux(struct perf_buffer *rb, struct perf_event *event, watermark = 0; } + /* + * kcalloc_node() is unable to allocate buffer if the size is larger + * than: PAGE_SIZE << MAX_ORDER; directly bail out in this case. + */ + if (get_order((unsigned long)nr_pages * sizeof(void *)) > MAX_ORDER) + return -ENOMEM; rb->aux_pages = kcalloc_node(nr_pages, sizeof(void *), GFP_KERNEL, node); if (!rb->aux_pages) diff --git a/kernel/fork.c b/kernel/fork.c index 5e7824cd5e13a..ba86281cfdf79 100644 --- a/kernel/fork.c +++ b/kernel/fork.c @@ -769,6 +769,14 @@ void __put_task_struct(struct task_struct *tsk) } EXPORT_SYMBOL_GPL(__put_task_struct); +void __put_task_struct_rcu_cb(struct rcu_head *rhp) +{ + struct task_struct *task = container_of(rhp, struct task_struct, rcu); + + __put_task_struct(task); +} +EXPORT_SYMBOL_GPL(__put_task_struct_rcu_cb); + void __init __weak arch_task_cache_init(void) { } /* diff --git a/kernel/futex/core.c b/kernel/futex/core.c index 764e73622b386..d42245170a7a0 100644 --- a/kernel/futex/core.c +++ b/kernel/futex/core.c @@ -570,7 +570,17 @@ static int get_futex_key(u32 __user *uaddr, bool fshared, union futex_key *key, * but access_ok() should be faster than find_vma() */ if (!fshared) { - key->private.mm = mm; + /* + * On no-MMU, shared futexes are treated as private, therefore + * we must not include the current process in the key. Since + * there is only one address space, the address is a unique key + * on its own. + */ + if (IS_ENABLED(CONFIG_MMU)) + key->private.mm = mm; + else + key->private.mm = NULL; + key->private.address = address; return 0; } diff --git a/kernel/irq/generic-chip.c b/kernel/irq/generic-chip.c index cc7cdd26e23e6..e7b8168e8513e 100644 --- a/kernel/irq/generic-chip.c +++ b/kernel/irq/generic-chip.c @@ -541,21 +541,34 @@ EXPORT_SYMBOL_GPL(irq_setup_alt_chip); void irq_remove_generic_chip(struct irq_chip_generic *gc, u32 msk, unsigned int clr, unsigned int set) { - unsigned int i = gc->irq_base; + unsigned int i, virq; raw_spin_lock(&gc_lock); list_del(&gc->list); raw_spin_unlock(&gc_lock); - for (; msk; msk >>= 1, i++) { + for (i = 0; msk; msk >>= 1, i++) { if (!(msk & 0x01)) continue; + /* + * Interrupt domain based chips store the base hardware + * interrupt number in gc::irq_base. Otherwise gc::irq_base + * contains the base Linux interrupt number. + */ + if (gc->domain) { + virq = irq_find_mapping(gc->domain, gc->irq_base + i); + if (!virq) + continue; + } else { + virq = gc->irq_base + i; + } + /* Remove handler first. That will mask the irq line */ - irq_set_handler(i, NULL); - irq_set_chip(i, &no_irq_chip); - irq_set_chip_data(i, NULL); - irq_modify_status(i, clr, set); + irq_set_handler(virq, NULL); + irq_set_chip(virq, &no_irq_chip); + irq_set_chip_data(virq, NULL); + irq_modify_status(virq, clr, set); } } EXPORT_SYMBOL_GPL(irq_remove_generic_chip); diff --git a/kernel/irq/matrix.c b/kernel/irq/matrix.c index bbfb26489aa1c..f9467637eab65 100644 --- a/kernel/irq/matrix.c +++ b/kernel/irq/matrix.c @@ -466,16 +466,16 @@ unsigned int irq_matrix_reserved(struct irq_matrix *m) } /** - * irq_matrix_allocated - Get the number of allocated irqs on the local cpu + * irq_matrix_allocated - Get the number of allocated non-managed irqs on the local CPU * @m: Pointer to the matrix to search * - * This returns number of allocated irqs + * This returns number of allocated non-managed interrupts. */ unsigned int irq_matrix_allocated(struct irq_matrix *m) { struct cpumap *cm = this_cpu_ptr(m->maps); - return cm->allocated; + return cm->allocated - cm->managed_allocated; } #ifdef CONFIG_GENERIC_IRQ_DEBUGFS diff --git a/kernel/irq/msi.c b/kernel/irq/msi.c index d75586dc584f8..36e3551b1f42d 100644 --- a/kernel/irq/msi.c +++ b/kernel/irq/msi.c @@ -14,6 +14,7 @@ #include #include #include +#include #include #include "internals.h" @@ -72,6 +73,7 @@ void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg) } EXPORT_SYMBOL_GPL(get_cached_msi_msg); +#ifdef CONFIG_SYSFS static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr, char *buf) { @@ -89,7 +91,7 @@ static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr, return -ENODEV; if (dev_is_pci(dev)) - is_msix = entry->msi_attrib.is_msix; + is_msix = entry->pci.msi_attrib.is_msix; return sysfs_emit(buf, "%s\n", is_msix ? "msix" : "msi"); } @@ -204,6 +206,7 @@ void msi_destroy_sysfs(struct device *dev, const struct attribute_group **msi_ir kfree(msi_irq_groups); } } +#endif #ifdef CONFIG_GENERIC_MSI_IRQ_DOMAIN static inline void irq_chip_write_msi_msg(struct irq_data *data, @@ -532,7 +535,7 @@ static bool msi_check_reservation_mode(struct irq_domain *domain, * masking and MSI does so when the can_mask attribute is set. */ desc = first_msi_entry(dev); - return desc->msi_attrib.is_msix || desc->msi_attrib.can_mask; + return desc->pci.msi_attrib.is_msix || desc->pci.msi_attrib.can_mask; } int __msi_domain_alloc_irqs(struct irq_domain *domain, struct device *dev, @@ -560,8 +563,6 @@ int __msi_domain_alloc_irqs(struct irq_domain *domain, struct device *dev, ret = -ENOSPC; if (ops->handle_error) ret = ops->handle_error(domain, desc, ret); - if (ops->msi_finish) - ops->msi_finish(&arg, ret); return ret; } @@ -571,9 +572,6 @@ int __msi_domain_alloc_irqs(struct irq_domain *domain, struct device *dev, } } - if (ops->msi_finish) - ops->msi_finish(&arg, 0); - can_reserve = msi_check_reservation_mode(domain, info, dev); /* diff --git a/kernel/kallsyms.c b/kernel/kallsyms.c index 0ba87982d017f..e0d9f77cf2d4b 100644 --- a/kernel/kallsyms.c +++ b/kernel/kallsyms.c @@ -204,7 +204,6 @@ unsigned long kallsyms_lookup_name(const char *name) return module_kallsyms_lookup_name(name); } -#ifdef CONFIG_LIVEPATCH /* * Iterate over all symbols in vmlinux. For symbols from modules use * module_kallsyms_on_each_symbol instead. @@ -226,7 +225,6 @@ int kallsyms_on_each_symbol(int (*fn)(void *, const char *, struct module *, } return 0; } -#endif /* CONFIG_LIVEPATCH */ static unsigned long get_symbol_pos(unsigned long addr, unsigned long *symbolsize, diff --git a/kernel/kexec.c b/kernel/kexec.c index cb8e6e6f983c7..5ff1dcc4acb78 100644 --- a/kernel/kexec.c +++ b/kernel/kexec.c @@ -240,7 +240,7 @@ SYSCALL_DEFINE4(kexec_load, unsigned long, entry, unsigned long, nr_segments, ((flags & KEXEC_ARCH_MASK) != KEXEC_ARCH_DEFAULT)) return -EINVAL; - ksegments = memdup_user(segments, nr_segments * sizeof(ksegments[0])); + ksegments = memdup_array_user(segments, nr_segments, sizeof(ksegments[0])); if (IS_ERR(ksegments)) return PTR_ERR(ksegments); diff --git a/kernel/kprobes.c b/kernel/kprobes.c index b2287d83e1255..8bd90de1ddceb 100644 --- a/kernel/kprobes.c +++ b/kernel/kprobes.c @@ -1545,6 +1545,17 @@ int __weak arch_check_ftrace_location(struct kprobe *p) return 0; } +static bool is_cfi_preamble_symbol(unsigned long addr) +{ + char symbuf[KSYM_NAME_LEN]; + + if (lookup_symbol_name(addr, symbuf)) + return false; + + return str_has_prefix("__cfi_", symbuf) || + str_has_prefix("__pfx_", symbuf); +} + static int check_kprobe_address_safe(struct kprobe *p, struct module **probed_mod) { @@ -1563,7 +1574,8 @@ static int check_kprobe_address_safe(struct kprobe *p, within_kprobe_blacklist((unsigned long) p->addr) || jump_label_text_reserved(p->addr, p->addr) || static_call_text_reserved(p->addr, p->addr) || - find_bug((unsigned long)p->addr)) { + find_bug((unsigned long)p->addr) || + is_cfi_preamble_symbol((unsigned long)p->addr)) { ret = -EINVAL; goto out; } @@ -2088,7 +2100,7 @@ int register_kretprobe(struct kretprobe *rp) if (!rp->rph) return -ENOMEM; - rp->rph->rp = rp; + rcu_assign_pointer(rp->rph->rp, rp); for (i = 0; i < rp->maxactive; i++) { inst = kzalloc(sizeof(struct kretprobe_instance) + rp->data_size, GFP_KERNEL); @@ -2145,7 +2157,7 @@ void unregister_kretprobes(struct kretprobe **rps, int num) for (i = 0; i < num; i++) { if (__unregister_kprobe_top(&rps[i]->kp) < 0) rps[i]->kp.addr = NULL; - rps[i]->rph->rp = NULL; + rcu_assign_pointer(rps[i]->rph->rp, NULL); } mutex_unlock(&kprobe_mutex); diff --git a/kernel/livepatch/core.c b/kernel/livepatch/core.c index c0789383807b9..147ed154ebc77 100644 --- a/kernel/livepatch/core.c +++ b/kernel/livepatch/core.c @@ -244,7 +244,7 @@ static int klp_resolve_symbols(Elf_Shdr *sechdrs, const char *strtab, * symbols are exported and normal relas can be used instead. */ if (!sec_vmlinux && sym_vmlinux) { - pr_err("invalid access to vmlinux symbol '%s' from module-specific livepatch relocation section", + pr_err("invalid access to vmlinux symbol '%s' from module-specific livepatch relocation section\n", sym_name); return -EINVAL; } diff --git a/kernel/locking/lockdep.c b/kernel/locking/lockdep.c index 5d08b4727ed40..93f23e1d2c8b6 100644 --- a/kernel/locking/lockdep.c +++ b/kernel/locking/lockdep.c @@ -3418,7 +3418,8 @@ static int alloc_chain_hlocks(int req) size = chain_block_size(curr); if (likely(size >= req)) { del_chain_block(0, size, chain_block_next(curr)); - add_chain_block(curr + req, size - req); + if (size > req) + add_chain_block(curr + req, size - req); return curr; } } diff --git a/kernel/locking/test-ww_mutex.c b/kernel/locking/test-ww_mutex.c index 3e82f449b4ff7..da36997d8742c 100644 --- a/kernel/locking/test-ww_mutex.c +++ b/kernel/locking/test-ww_mutex.c @@ -426,7 +426,6 @@ static void stress_inorder_work(struct work_struct *work) } while (!time_after(jiffies, stress->timeout)); kfree(order); - kfree(stress); } struct reorder_lock { @@ -491,7 +490,6 @@ static void stress_reorder_work(struct work_struct *work) list_for_each_entry_safe(ll, ln, &locks, link) kfree(ll); kfree(order); - kfree(stress); } static void stress_one_work(struct work_struct *work) @@ -512,8 +510,6 @@ static void stress_one_work(struct work_struct *work) break; } } while (!time_after(jiffies, stress->timeout)); - - kfree(stress); } #define STRESS_INORDER BIT(0) @@ -524,15 +520,24 @@ static void stress_one_work(struct work_struct *work) static int stress(int nlocks, int nthreads, unsigned int flags) { struct ww_mutex *locks; - int n; + struct stress *stress_array; + int n, count; locks = kmalloc_array(nlocks, sizeof(*locks), GFP_KERNEL); if (!locks) return -ENOMEM; + stress_array = kmalloc_array(nthreads, sizeof(*stress_array), + GFP_KERNEL); + if (!stress_array) { + kfree(locks); + return -ENOMEM; + } + for (n = 0; n < nlocks; n++) ww_mutex_init(&locks[n], &ww_class); + count = 0; for (n = 0; nthreads; n++) { struct stress *stress; void (*fn)(struct work_struct *work); @@ -556,9 +561,7 @@ static int stress(int nlocks, int nthreads, unsigned int flags) if (!fn) continue; - stress = kmalloc(sizeof(*stress), GFP_KERNEL); - if (!stress) - break; + stress = &stress_array[count++]; INIT_WORK(&stress->work, fn); stress->locks = locks; @@ -573,6 +576,7 @@ static int stress(int nlocks, int nthreads, unsigned int flags) for (n = 0; n < nlocks; n++) ww_mutex_destroy(&locks[n]); + kfree(stress_array); kfree(locks); return 0; diff --git a/kernel/padata.c b/kernel/padata.c index c17f772cc315a..47f146f061fb1 100644 --- a/kernel/padata.c +++ b/kernel/padata.c @@ -194,7 +194,7 @@ int padata_do_parallel(struct padata_shell *ps, *cb_cpu = cpu; } - err = -EBUSY; + err = -EBUSY; if ((pinst->flags & PADATA_RESET)) goto out; @@ -1094,12 +1094,16 @@ EXPORT_SYMBOL(padata_alloc_shell); */ void padata_free_shell(struct padata_shell *ps) { + struct parallel_data *pd; + if (!ps) return; mutex_lock(&ps->pinst->lock); list_del(&ps->list); - padata_free_pd(rcu_dereference_protected(ps->pd, 1)); + pd = rcu_dereference_protected(ps->pd, 1); + if (refcount_dec_and_test(&pd->refcnt)) + padata_free_pd(pd); mutex_unlock(&ps->pinst->lock); kfree(ps); diff --git a/kernel/power/snapshot.c b/kernel/power/snapshot.c index 475d630e650f1..2b063e0a15c61 100644 --- a/kernel/power/snapshot.c +++ b/kernel/power/snapshot.c @@ -2414,8 +2414,9 @@ static void *get_highmem_page_buffer(struct page *page, pbe->copy_page = tmp; } else { /* Copy of the page will be stored in normal memory */ - kaddr = safe_pages_list; - safe_pages_list = safe_pages_list->next; + kaddr = __get_safe_page(ca->gfp_mask); + if (!kaddr) + return ERR_PTR(-ENOMEM); pbe->copy_page = virt_to_page(kaddr); } pbe->next = highmem_pblist; @@ -2595,8 +2596,9 @@ static void *get_buffer(struct memory_bitmap *bm, struct chain_allocator *ca) return ERR_PTR(-ENOMEM); } pbe->orig_address = page_address(page); - pbe->address = safe_pages_list; - safe_pages_list = safe_pages_list->next; + pbe->address = __get_safe_page(ca->gfp_mask); + if (!pbe->address) + return ERR_PTR(-ENOMEM); pbe->next = restore_pblist; restore_pblist = pbe; return pbe->address; @@ -2627,8 +2629,6 @@ int snapshot_write_next(struct snapshot_handle *handle) if (handle->cur > 1 && handle->cur > nr_meta_pages + nr_copy_pages) return 0; - handle->sync_read = 1; - if (!handle->cur) { if (!buffer) /* This makes the buffer be freed by swsusp_free() */ @@ -2664,7 +2664,6 @@ int snapshot_write_next(struct snapshot_handle *handle) memory_bm_position_reset(&orig_bm); restore_pblist = NULL; handle->buffer = get_buffer(&orig_bm, &ca); - handle->sync_read = 0; if (IS_ERR(handle->buffer)) return PTR_ERR(handle->buffer); } @@ -2674,9 +2673,8 @@ int snapshot_write_next(struct snapshot_handle *handle) handle->buffer = get_buffer(&orig_bm, &ca); if (IS_ERR(handle->buffer)) return PTR_ERR(handle->buffer); - if (handle->buffer != buffer) - handle->sync_read = 0; } + handle->sync_read = (handle->buffer == buffer); handle->cur++; return PAGE_SIZE; } diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c index 8d856b7c2e5af..8b110b245d92c 100644 --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c @@ -2269,7 +2269,11 @@ asmlinkage int vprintk_emit(int facility, int level, preempt_enable(); } - wake_up_klogd(); + if (in_sched) + defer_console_output(); + else + wake_up_klogd(); + return printed_len; } EXPORT_SYMBOL(vprintk_emit); @@ -3277,11 +3281,33 @@ static void __wake_up_klogd(int val) preempt_enable(); } +/** + * wake_up_klogd - Wake kernel logging daemon + * + * Use this function when new records have been added to the ringbuffer + * and the console printing of those records has already occurred or is + * known to be handled by some other context. This function will only + * wake the logging daemon. + * + * Context: Any context. + */ void wake_up_klogd(void) { __wake_up_klogd(PRINTK_PENDING_WAKEUP); } +/** + * defer_console_output - Wake kernel logging daemon and trigger + * console printing in a deferred context + * + * Use this function when new records have been added to the ringbuffer, + * this context is responsible for console printing those records, but + * the current context is not allowed to perform the console printing. + * Trigger an irq_work context to perform the console printing. This + * function also wakes the logging daemon. + * + * Context: Any context. + */ void defer_console_output(void) { /* @@ -3298,12 +3324,7 @@ void printk_trigger_flush(void) int vprintk_deferred(const char *fmt, va_list args) { - int r; - - r = vprintk_emit(0, LOGLEVEL_SCHED, NULL, fmt, args); - defer_console_output(); - - return r; + return vprintk_emit(0, LOGLEVEL_SCHED, NULL, fmt, args); } int _printk_deferred(const char *fmt, ...) diff --git a/kernel/printk/printk_ringbuffer.c b/kernel/printk/printk_ringbuffer.c index 8a7b7362c0dd4..d069e0d3768ba 100644 --- a/kernel/printk/printk_ringbuffer.c +++ b/kernel/printk/printk_ringbuffer.c @@ -1724,7 +1724,7 @@ static bool copy_data(struct prb_data_ring *data_ring, if (!buf || !buf_size) return true; - data_size = min_t(u16, buf_size, len); + data_size = min_t(unsigned int, buf_size, len); memcpy(&buf[0], data, data_size); /* LMM(copy_data:A) */ return true; diff --git a/kernel/printk/printk_safe.c b/kernel/printk/printk_safe.c index ef0f9a2044da1..6d10927a07d83 100644 --- a/kernel/printk/printk_safe.c +++ b/kernel/printk/printk_safe.c @@ -38,13 +38,8 @@ asmlinkage int vprintk(const char *fmt, va_list args) * Use the main logbuf even in NMI. But avoid calling console * drivers that might have their own locks. */ - if (this_cpu_read(printk_context) || in_nmi()) { - int len; - - len = vprintk_store(0, LOGLEVEL_DEFAULT, NULL, fmt, args); - defer_console_output(); - return len; - } + if (this_cpu_read(printk_context) || in_nmi()) + return vprintk_deferred(fmt, args); /* No obstacles. */ return vprintk_default(fmt, args); diff --git a/kernel/rcu/rcuscale.c b/kernel/rcu/rcuscale.c index 57ec414710bbc..a83cb29d37607 100644 --- a/kernel/rcu/rcuscale.c +++ b/kernel/rcu/rcuscale.c @@ -402,7 +402,7 @@ rcu_scale_writer(void *arg) sched_set_fifo_low(current); if (holdoff) - schedule_timeout_uninterruptible(holdoff * HZ); + schedule_timeout_idle(holdoff * HZ); /* * Wait until rcu_end_inkernel_boot() is called for normal GP tests diff --git a/kernel/rcu/refscale.c b/kernel/rcu/refscale.c index 5abb0cf52803a..fda220e2c0426 100644 --- a/kernel/rcu/refscale.c +++ b/kernel/rcu/refscale.c @@ -849,12 +849,11 @@ ref_scale_init(void) VERBOSE_SCALEOUT("Starting %d reader threads\n", nreaders); for (i = 0; i < nreaders; i++) { + init_waitqueue_head(&reader_tasks[i].wq); firsterr = torture_create_kthread(ref_scale_reader, (void *)i, reader_tasks[i].task); if (firsterr) goto unwind; - - init_waitqueue_head(&(reader_tasks[i].wq)); } // Main Task diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c index df016f6d0662c..66c1ca01dd0e9 100644 --- a/kernel/rcu/tree.c +++ b/kernel/rcu/tree.c @@ -31,6 +31,7 @@ #include #include #include +#include #include #include #include @@ -1906,10 +1907,22 @@ static bool rcu_gp_fqs_check_wake(int *gfp) */ static void rcu_gp_fqs(bool first_time) { + int nr_fqs = READ_ONCE(rcu_state.nr_fqs_jiffies_stall); struct rcu_node *rnp = rcu_get_root(); WRITE_ONCE(rcu_state.gp_activity, jiffies); WRITE_ONCE(rcu_state.n_force_qs, rcu_state.n_force_qs + 1); + + WARN_ON_ONCE(nr_fqs > 3); + /* Only countdown nr_fqs for stall purposes if jiffies moves. */ + if (nr_fqs) { + if (nr_fqs == 1) { + WRITE_ONCE(rcu_state.jiffies_stall, + jiffies + rcu_jiffies_till_stall_check()); + } + WRITE_ONCE(rcu_state.nr_fqs_jiffies_stall, --nr_fqs); + } + if (first_time) { /* Collect dyntick-idle snapshots. */ force_qs_rnp(dyntick_save_progress_counter); @@ -3597,6 +3610,14 @@ void kvfree_call_rcu(struct rcu_head *head, rcu_callback_t func) WRITE_ONCE(krcp->count, krcp->count + 1); + /* + * The kvfree_rcu() caller considers the pointer freed at this point + * and likely removes any references to it. Since the actual slab + * freeing (and kmemleak_free()) is deferred, tell kmemleak to ignore + * this object (no scanning or false positives reporting). + */ + kmemleak_ignore(ptr); + // Set timer to drain after KFREE_DRAIN_JIFFIES. if (rcu_scheduler_active == RCU_SCHEDULER_RUNNING && !krcp->monitor_todo) { diff --git a/kernel/rcu/tree.h b/kernel/rcu/tree.h index 305cf6aeb4086..2da96d8b894ae 100644 --- a/kernel/rcu/tree.h +++ b/kernel/rcu/tree.h @@ -351,6 +351,10 @@ struct rcu_state { /* in jiffies. */ unsigned long jiffies_stall; /* Time at which to check */ /* for CPU stalls. */ + int nr_fqs_jiffies_stall; /* Number of fqs loops after + * which read jiffies and set + * jiffies_stall. Stall + * warnings disabled if !0. */ unsigned long jiffies_resched; /* Time at which to resched */ /* a reluctant CPU. */ unsigned long n_force_qs_gpstart; /* Snapshot of n_force_qs at */ diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h index f1a73a1f8472e..b48b42d76474e 100644 --- a/kernel/rcu/tree_plugin.h +++ b/kernel/rcu/tree_plugin.h @@ -458,7 +458,7 @@ static bool rcu_preempt_has_tasks(struct rcu_node *rnp) * be quite short, for example, in the case of the call from * rcu_read_unlock_special(). */ -static void +static notrace void rcu_preempt_deferred_qs_irqrestore(struct task_struct *t, unsigned long flags) { bool empty_exp; @@ -578,7 +578,7 @@ rcu_preempt_deferred_qs_irqrestore(struct task_struct *t, unsigned long flags) * is disabled. This function cannot be expected to understand these * nuances, so the caller must handle them. */ -static bool rcu_preempt_need_deferred_qs(struct task_struct *t) +static notrace bool rcu_preempt_need_deferred_qs(struct task_struct *t) { return (__this_cpu_read(rcu_data.exp_deferred_qs) || READ_ONCE(t->rcu_read_unlock_special.s)) && @@ -592,7 +592,7 @@ static bool rcu_preempt_need_deferred_qs(struct task_struct *t) * evaluate safety in terms of interrupt, softirq, and preemption * disabling. */ -static void rcu_preempt_deferred_qs(struct task_struct *t) +static notrace void rcu_preempt_deferred_qs(struct task_struct *t) { unsigned long flags; @@ -923,7 +923,7 @@ static bool rcu_preempt_has_tasks(struct rcu_node *rnp) * Because there is no preemptible RCU, there can be no deferred quiescent * states. */ -static bool rcu_preempt_need_deferred_qs(struct task_struct *t) +static notrace bool rcu_preempt_need_deferred_qs(struct task_struct *t) { return false; } diff --git a/kernel/rcu/tree_stall.h b/kernel/rcu/tree_stall.h index 5e2fa6fd97f12..0650e48f99b3f 100644 --- a/kernel/rcu/tree_stall.h +++ b/kernel/rcu/tree_stall.h @@ -121,12 +121,17 @@ static void panic_on_rcu_stall(void) /** * rcu_cpu_stall_reset - restart stall-warning timeout for current grace period * + * To perform the reset request from the caller, disable stall detection until + * 3 fqs loops have passed. This is required to ensure a fresh jiffies is + * loaded. It should be safe to do from the fqs loop as enough timer + * interrupts and context switches should have passed. + * * The caller must disable hard irqs. */ void rcu_cpu_stall_reset(void) { - WRITE_ONCE(rcu_state.jiffies_stall, - jiffies + rcu_jiffies_till_stall_check()); + WRITE_ONCE(rcu_state.nr_fqs_jiffies_stall, 3); + WRITE_ONCE(rcu_state.jiffies_stall, ULONG_MAX); } ////////////////////////////////////////////////////////////////////////////// @@ -142,6 +147,7 @@ static void record_gp_stall_check_time(void) WRITE_ONCE(rcu_state.gp_start, j); j1 = rcu_jiffies_till_stall_check(); smp_mb(); // ->gp_start before ->jiffies_stall and caller's ->gp_seq. + WRITE_ONCE(rcu_state.nr_fqs_jiffies_stall, 0); WRITE_ONCE(rcu_state.jiffies_stall, j + j1); rcu_state.jiffies_resched = j + j1 / 2; rcu_state.n_force_qs_gpstart = READ_ONCE(rcu_state.n_force_qs); @@ -662,6 +668,16 @@ static void check_cpu_stall(struct rcu_data *rdp) !rcu_gp_in_progress()) return; rcu_stall_kick_kthreads(); + + /* + * Check if it was requested (via rcu_cpu_stall_reset()) that the FQS + * loop has to set jiffies to ensure a non-stale jiffies value. This + * is required to have good jiffies value after coming out of long + * breaks of jiffies updates. Not doing so can cause false positives. + */ + if (READ_ONCE(rcu_state.nr_fqs_jiffies_stall) > 0) + return; + j = jiffies; /* diff --git a/kernel/reboot.c b/kernel/reboot.c index f7440c0c7e434..c0271417dbed5 100644 --- a/kernel/reboot.c +++ b/kernel/reboot.c @@ -65,6 +65,7 @@ EXPORT_SYMBOL_GPL(pm_power_off_prepare); void emergency_restart(void) { kmsg_dump(KMSG_DUMP_EMERG); + system_state = SYSTEM_RESTART; machine_emergency_restart(); } EXPORT_SYMBOL_GPL(emergency_restart); diff --git a/kernel/scftorture.c b/kernel/scftorture.c index 27286d99e0c28..41006eef003f6 100644 --- a/kernel/scftorture.c +++ b/kernel/scftorture.c @@ -175,7 +175,8 @@ static void scf_torture_stats_print(void) scfs.n_all_wait += scf_stats_p[i].n_all_wait; } if (atomic_read(&n_errs) || atomic_read(&n_mb_in_errs) || - atomic_read(&n_mb_out_errs) || atomic_read(&n_alloc_errs)) + atomic_read(&n_mb_out_errs) || + (!IS_ENABLED(CONFIG_KASAN) && atomic_read(&n_alloc_errs))) bangstr = "!!! "; pr_alert("%s %sscf_invoked_count %s: %lld resched: %lld single: %lld/%lld single_ofl: %lld/%lld single_rpc: %lld single_rpc_ofl: %lld many: %lld/%lld all: %lld/%lld ", SCFTORT_FLAG, bangstr, isdone ? "VER" : "ver", invoked_count, scfs.n_resched, @@ -327,7 +328,8 @@ static void scftorture_invoke_one(struct scf_statistics *scfp, struct torture_ra preempt_disable(); if (scfsp->scfs_prim == SCF_PRIM_SINGLE || scfsp->scfs_wait) { scfcp = kmalloc(sizeof(*scfcp), GFP_ATOMIC); - if (WARN_ON_ONCE(!scfcp)) { + if (!scfcp) { + WARN_ON_ONCE(!IS_ENABLED(CONFIG_KASAN)); atomic_inc(&n_alloc_errs); } else { scfcp->scfc_cpu = -1; diff --git a/kernel/sched/core.c b/kernel/sched/core.c index 0137ed447551a..59b8a6f0d734b 100644 --- a/kernel/sched/core.c +++ b/kernel/sched/core.c @@ -2377,9 +2377,11 @@ static int migration_cpu_stop(void *data) * it. */ WARN_ON_ONCE(!pending->stop_pending); + preempt_disable(); task_rq_unlock(rq, p, &rf); stop_one_cpu_nowait(task_cpu(p), migration_cpu_stop, &pending->arg, &pending->stop_work); + preempt_enable(); return 0; } out: @@ -2660,12 +2662,13 @@ static int affine_move_task(struct rq *rq, struct task_struct *p, struct rq_flag complete = true; } + preempt_disable(); task_rq_unlock(rq, p, rf); - if (push_task) { stop_one_cpu_nowait(rq->cpu, push_cpu_stop, p, &rq->push_work); } + preempt_enable(); if (complete) complete_all(&pending->done); @@ -2731,12 +2734,13 @@ static int affine_move_task(struct rq *rq, struct task_struct *p, struct rq_flag if (flags & SCA_MIGRATE_ENABLE) p->migration_flags &= ~MDF_PUSH; + preempt_disable(); task_rq_unlock(rq, p, rf); - if (!stop_pending) { stop_one_cpu_nowait(cpu_of(rq), migration_cpu_stop, &pending->arg, &pending->stop_work); } + preempt_enable(); if (flags & SCA_MIGRATE_ENABLE) return 0; @@ -8973,9 +8977,11 @@ static void balance_push(struct rq *rq) * Temporarily drop rq->lock such that we can wake-up the stop task. * Both preemption and IRQs are still disabled. */ + preempt_disable(); raw_spin_rq_unlock(rq); stop_one_cpu_nowait(rq->cpu, __balance_push_cpu_stop, push_task, this_cpu_ptr(&push_work)); + preempt_enable(); /* * At this point need_resched() is true and we'll take the loop in * schedule(). The next pick is obviously going to be the stop task diff --git a/kernel/sched/cpuacct.c b/kernel/sched/cpuacct.c index cacc2076ad214..f0af0fecde9d9 100644 --- a/kernel/sched/cpuacct.c +++ b/kernel/sched/cpuacct.c @@ -331,12 +331,10 @@ void cpuacct_charge(struct task_struct *tsk, u64 cputime) unsigned int cpu = task_cpu(tsk); struct cpuacct *ca; - rcu_read_lock(); + lockdep_assert_rq_held(cpu_rq(cpu)); for (ca = task_ca(tsk); ca; ca = parent_ca(ca)) *per_cpu_ptr(ca->cpuusage, cpu) += cputime; - - rcu_read_unlock(); } /* diff --git a/kernel/sched/cpupri.c b/kernel/sched/cpupri.c index d583f2aa744e5..b41655e00f611 100644 --- a/kernel/sched/cpupri.c +++ b/kernel/sched/cpupri.c @@ -102,6 +102,7 @@ static inline int __cpupri_find(struct cpupri *cp, struct task_struct *p, if (lowest_mask) { cpumask_and(lowest_mask, &p->cpus_mask, vec->mask); + cpumask_and(lowest_mask, lowest_mask, cpu_active_mask); /* * We have to ensure that we have at least one bit diff --git a/kernel/sched/deadline.c b/kernel/sched/deadline.c index de45e4d2c61fa..0a6d6899be5bd 100644 --- a/kernel/sched/deadline.c +++ b/kernel/sched/deadline.c @@ -2308,9 +2308,11 @@ static void pull_dl_task(struct rq *this_rq) double_unlock_balance(this_rq, src_rq); if (push_task) { + preempt_disable(); raw_spin_rq_unlock(this_rq); stop_one_cpu_nowait(src_rq->cpu, push_cpu_stop, push_task, &src_rq->push_work); + preempt_enable(); raw_spin_rq_lock(this_rq); } } diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c index f5308edab7b75..0541b5de927b8 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c @@ -3987,22 +3987,6 @@ static inline unsigned long task_util_est(struct task_struct *p) return max(task_util(p), _task_util_est(p)); } -#ifdef CONFIG_UCLAMP_TASK -static inline unsigned long uclamp_task_util(struct task_struct *p, - unsigned long uclamp_min, - unsigned long uclamp_max) -{ - return clamp(task_util_est(p), uclamp_min, uclamp_max); -} -#else -static inline unsigned long uclamp_task_util(struct task_struct *p, - unsigned long uclamp_min, - unsigned long uclamp_max) -{ - return task_util_est(p); -} -#endif - static inline void util_est_enqueue(struct cfs_rq *cfs_rq, struct task_struct *p) { @@ -7037,7 +7021,7 @@ static int find_energy_efficient_cpu(struct task_struct *p, int prev_cpu) target = prev_cpu; sync_entity_load_avg(&p->se); - if (!uclamp_task_util(p, p_util_min, p_util_max)) + if (!task_util_est(p) && p_util_min == 0) goto unlock; for (; pd; pd = pd->next) { @@ -10479,13 +10463,15 @@ static int load_balance(int this_cpu, struct rq *this_rq, busiest->push_cpu = this_cpu; active_balance = 1; } - raw_spin_rq_unlock_irqrestore(busiest, flags); + preempt_disable(); + raw_spin_rq_unlock_irqrestore(busiest, flags); if (active_balance) { stop_one_cpu_nowait(cpu_of(busiest), active_load_balance_cpu_stop, busiest, &busiest->active_balance_work); } + preempt_enable(); } } else { sd->nr_balance_failed = 0; diff --git a/kernel/sched/rt.c b/kernel/sched/rt.c index 4b9281e6b1ccd..7045595aacac6 100644 --- a/kernel/sched/rt.c +++ b/kernel/sched/rt.c @@ -1951,9 +1951,11 @@ static int push_rt_task(struct rq *rq, bool pull) */ push_task = get_push_task(rq); if (push_task) { + preempt_disable(); raw_spin_rq_unlock(rq); stop_one_cpu_nowait(rq->cpu, push_cpu_stop, push_task, &rq->push_work); + preempt_enable(); raw_spin_rq_lock(rq); } @@ -2290,9 +2292,11 @@ static void pull_rt_task(struct rq *this_rq) double_unlock_balance(this_rq, src_rq); if (push_task) { + preempt_disable(); raw_spin_rq_unlock(this_rq); stop_one_cpu_nowait(src_rq->cpu, push_cpu_stop, push_task, &src_rq->push_work); + preempt_enable(); raw_spin_rq_lock(this_rq); } } diff --git a/kernel/time/hrtimer.c b/kernel/time/hrtimer.c index 97409581e9dac..eebd0f31daa8b 100644 --- a/kernel/time/hrtimer.c +++ b/kernel/time/hrtimer.c @@ -2216,29 +2216,22 @@ static void migrate_hrtimer_list(struct hrtimer_clock_base *old_base, } } -int hrtimers_dead_cpu(unsigned int scpu) +int hrtimers_cpu_dying(unsigned int dying_cpu) { struct hrtimer_cpu_base *old_base, *new_base; - int i; + int i, ncpu = cpumask_first(cpu_active_mask); - BUG_ON(cpu_online(scpu)); - tick_cancel_sched_timer(scpu); + tick_cancel_sched_timer(dying_cpu); + + old_base = this_cpu_ptr(&hrtimer_bases); + new_base = &per_cpu(hrtimer_bases, ncpu); - /* - * this BH disable ensures that raise_softirq_irqoff() does - * not wakeup ksoftirqd (and acquire the pi-lock) while - * holding the cpu_base lock - */ - local_bh_disable(); - local_irq_disable(); - old_base = &per_cpu(hrtimer_bases, scpu); - new_base = this_cpu_ptr(&hrtimer_bases); /* * The caller is globally serialized and nobody else * takes two locks at once, deadlock is not possible. */ - raw_spin_lock(&new_base->lock); - raw_spin_lock_nested(&old_base->lock, SINGLE_DEPTH_NESTING); + raw_spin_lock(&old_base->lock); + raw_spin_lock_nested(&new_base->lock, SINGLE_DEPTH_NESTING); for (i = 0; i < HRTIMER_MAX_CLOCK_BASES; i++) { migrate_hrtimer_list(&old_base->clock_base[i], @@ -2249,15 +2242,13 @@ int hrtimers_dead_cpu(unsigned int scpu) * The migration might have changed the first expiring softirq * timer on this CPU. Update it. */ - hrtimer_update_softirq_timer(new_base, false); + __hrtimer_get_next_event(new_base, HRTIMER_ACTIVE_SOFT); + /* Tell the other CPU to retrigger the next event */ + smp_call_function_single(ncpu, retrigger_next_event, NULL, 0); - raw_spin_unlock(&old_base->lock); raw_spin_unlock(&new_base->lock); + raw_spin_unlock(&old_base->lock); - /* Check, if we got expired work to do */ - __hrtimer_peek_ahead_timers(); - local_irq_enable(); - local_bh_enable(); return 0; } diff --git a/kernel/time/timer.c b/kernel/time/timer.c index 9dd2a39cb3b00..ef25b242dfa2f 100644 --- a/kernel/time/timer.c +++ b/kernel/time/timer.c @@ -1030,7 +1030,7 @@ __mod_timer(struct timer_list *timer, unsigned long expires, unsigned int option /* * We are trying to schedule the timer on the new base. * However we can't change timer's base while it is running, - * otherwise del_timer_sync() can't detect that the timer's + * otherwise timer_delete_sync() can't detect that the timer's * handler yet has not finished. This also guarantees that the * timer is serialized wrt itself. */ @@ -1068,14 +1068,16 @@ __mod_timer(struct timer_list *timer, unsigned long expires, unsigned int option } /** - * mod_timer_pending - modify a pending timer's timeout - * @timer: the pending timer to be modified - * @expires: new timeout in jiffies + * mod_timer_pending - Modify a pending timer's timeout + * @timer: The pending timer to be modified + * @expires: New absolute timeout in jiffies * - * mod_timer_pending() is the same for pending timers as mod_timer(), - * but will not re-activate and modify already deleted timers. + * mod_timer_pending() is the same for pending timers as mod_timer(), but + * will not activate inactive timers. * - * It is useful for unserialized use of timers. + * Return: + * * %0 - The timer was inactive and not modified + * * %1 - The timer was active and requeued to expire at @expires */ int mod_timer_pending(struct timer_list *timer, unsigned long expires) { @@ -1084,24 +1086,27 @@ int mod_timer_pending(struct timer_list *timer, unsigned long expires) EXPORT_SYMBOL(mod_timer_pending); /** - * mod_timer - modify a timer's timeout - * @timer: the timer to be modified - * @expires: new timeout in jiffies - * - * mod_timer() is a more efficient way to update the expire field of an - * active timer (if the timer is inactive it will be activated) + * mod_timer - Modify a timer's timeout + * @timer: The timer to be modified + * @expires: New absolute timeout in jiffies * * mod_timer(timer, expires) is equivalent to: * * del_timer(timer); timer->expires = expires; add_timer(timer); * + * mod_timer() is more efficient than the above open coded sequence. In + * case that the timer is inactive, the del_timer() part is a NOP. The + * timer is in any case activated with the new expiry time @expires. + * * Note that if there are multiple unserialized concurrent users of the * same timer, then mod_timer() is the only safe way to modify the timeout, * since add_timer() cannot modify an already running timer. * - * The function returns whether it has modified a pending timer or not. - * (ie. mod_timer() of an inactive timer returns 0, mod_timer() of an - * active timer returns 1.) + * Return: + * * %0 - The timer was inactive and started + * * %1 - The timer was active and requeued to expire at @expires or + * the timer was active and not modified because @expires did + * not change the effective expiry time */ int mod_timer(struct timer_list *timer, unsigned long expires) { @@ -1112,11 +1117,18 @@ EXPORT_SYMBOL(mod_timer); /** * timer_reduce - Modify a timer's timeout if it would reduce the timeout * @timer: The timer to be modified - * @expires: New timeout in jiffies + * @expires: New absolute timeout in jiffies * * timer_reduce() is very similar to mod_timer(), except that it will only - * modify a running timer if that would reduce the expiration time (it will - * start a timer that isn't running). + * modify an enqueued timer if that would reduce the expiration time. If + * @timer is not enqueued it starts the timer. + * + * Return: + * * %0 - The timer was inactive and started + * * %1 - The timer was active and requeued to expire at @expires or + * the timer was active and not modified because @expires + * did not change the effective expiry time such that the + * timer would expire earlier than already scheduled */ int timer_reduce(struct timer_list *timer, unsigned long expires) { @@ -1125,18 +1137,21 @@ int timer_reduce(struct timer_list *timer, unsigned long expires) EXPORT_SYMBOL(timer_reduce); /** - * add_timer - start a timer - * @timer: the timer to be added + * add_timer - Start a timer + * @timer: The timer to be started * - * The kernel will do a ->function(@timer) callback from the - * timer interrupt at the ->expires point in the future. The - * current time is 'jiffies'. + * Start @timer to expire at @timer->expires in the future. @timer->expires + * is the absolute expiry time measured in 'jiffies'. When the timer expires + * timer->function(timer) will be invoked from soft interrupt context. * - * The timer's ->expires, ->function fields must be set prior calling this - * function. + * The @timer->expires and @timer->function fields must be set prior + * to calling this function. + * + * If @timer->expires is already in the past @timer will be queued to + * expire at the next timer tick. * - * Timers with an ->expires field in the past will be executed in the next - * timer tick. + * This can only operate on an inactive timer. Attempts to invoke this on + * an active timer are rejected with a warning. */ void add_timer(struct timer_list *timer) { @@ -1146,11 +1161,13 @@ void add_timer(struct timer_list *timer) EXPORT_SYMBOL(add_timer); /** - * add_timer_on - start a timer on a particular CPU - * @timer: the timer to be added - * @cpu: the CPU to start it on + * add_timer_on - Start a timer on a particular CPU + * @timer: The timer to be started + * @cpu: The CPU to start it on + * + * Same as add_timer() except that it starts the timer on the given CPU. * - * This is not very scalable on SMP. Double adds are not possible. + * See add_timer() for further details. */ void add_timer_on(struct timer_list *timer, int cpu) { @@ -1185,17 +1202,21 @@ void add_timer_on(struct timer_list *timer, int cpu) EXPORT_SYMBOL_GPL(add_timer_on); /** - * del_timer - deactivate a timer. - * @timer: the timer to be deactivated - * - * del_timer() deactivates a timer - this works on both active and inactive - * timers. - * - * The function returns whether it has deactivated a pending timer or not. - * (ie. del_timer() of an inactive timer returns 0, del_timer() of an - * active timer returns 1.) + * __timer_delete - Internal function: Deactivate a timer + * @timer: The timer to be deactivated + * @shutdown: If true, this indicates that the timer is about to be + * shutdown permanently. + * + * If @shutdown is true then @timer->function is set to NULL under the + * timer base lock which prevents further rearming of the time. In that + * case any attempt to rearm @timer after this function returns will be + * silently ignored. + * + * Return: + * * %0 - The timer was not pending + * * %1 - The timer was pending and deactivated */ -int del_timer(struct timer_list *timer) +static int __timer_delete(struct timer_list *timer, bool shutdown) { struct timer_base *base; unsigned long flags; @@ -1203,24 +1224,90 @@ int del_timer(struct timer_list *timer) debug_assert_init(timer); - if (timer_pending(timer)) { + /* + * If @shutdown is set then the lock has to be taken whether the + * timer is pending or not to protect against a concurrent rearm + * which might hit between the lockless pending check and the lock + * aquisition. By taking the lock it is ensured that such a newly + * enqueued timer is dequeued and cannot end up with + * timer->function == NULL in the expiry code. + * + * If timer->function is currently executed, then this makes sure + * that the callback cannot requeue the timer. + */ + if (timer_pending(timer) || shutdown) { base = lock_timer_base(timer, &flags); ret = detach_if_pending(timer, base, true); + if (shutdown) + timer->function = NULL; raw_spin_unlock_irqrestore(&base->lock, flags); } return ret; } -EXPORT_SYMBOL(del_timer); /** - * try_to_del_timer_sync - Try to deactivate a timer - * @timer: timer to delete + * timer_delete - Deactivate a timer + * @timer: The timer to be deactivated + * + * The function only deactivates a pending timer, but contrary to + * timer_delete_sync() it does not take into account whether the timer's + * callback function is concurrently executed on a different CPU or not. + * It neither prevents rearming of the timer. If @timer can be rearmed + * concurrently then the return value of this function is meaningless. + * + * Return: + * * %0 - The timer was not pending + * * %1 - The timer was pending and deactivated + */ +int timer_delete(struct timer_list *timer) +{ + return __timer_delete(timer, false); +} +EXPORT_SYMBOL(timer_delete); + +/** + * timer_shutdown - Deactivate a timer and prevent rearming + * @timer: The timer to be deactivated + * + * The function does not wait for an eventually running timer callback on a + * different CPU but it prevents rearming of the timer. Any attempt to arm + * @timer after this function returns will be silently ignored. * - * This function tries to deactivate a timer. Upon successful (ret >= 0) - * exit the timer is not queued and the handler is not running on any CPU. + * This function is useful for teardown code and should only be used when + * timer_shutdown_sync() cannot be invoked due to locking or context constraints. + * + * Return: + * * %0 - The timer was not pending + * * %1 - The timer was pending */ -int try_to_del_timer_sync(struct timer_list *timer) +int timer_shutdown(struct timer_list *timer) +{ + return __timer_delete(timer, true); +} +EXPORT_SYMBOL_GPL(timer_shutdown); + +/** + * __try_to_del_timer_sync - Internal function: Try to deactivate a timer + * @timer: Timer to deactivate + * @shutdown: If true, this indicates that the timer is about to be + * shutdown permanently. + * + * If @shutdown is true then @timer->function is set to NULL under the + * timer base lock which prevents further rearming of the timer. Any + * attempt to rearm @timer after this function returns will be silently + * ignored. + * + * This function cannot guarantee that the timer cannot be rearmed + * right after dropping the base lock if @shutdown is false. That + * needs to be prevented by the calling code if necessary. + * + * Return: + * * %0 - The timer was not pending + * * %1 - The timer was pending and deactivated + * * %-1 - The timer callback function is running on a different CPU + */ +static int __try_to_del_timer_sync(struct timer_list *timer, bool shutdown) { struct timer_base *base; unsigned long flags; @@ -1232,11 +1319,34 @@ int try_to_del_timer_sync(struct timer_list *timer) if (base->running_timer != timer) ret = detach_if_pending(timer, base, true); + if (shutdown) + timer->function = NULL; raw_spin_unlock_irqrestore(&base->lock, flags); return ret; } + +/** + * try_to_del_timer_sync - Try to deactivate a timer + * @timer: Timer to deactivate + * + * This function tries to deactivate a timer. On success the timer is not + * queued and the timer callback function is not running on any CPU. + * + * This function does not guarantee that the timer cannot be rearmed right + * after dropping the base lock. That needs to be prevented by the calling + * code if necessary. + * + * Return: + * * %0 - The timer was not pending + * * %1 - The timer was pending and deactivated + * * %-1 - The timer callback function is running on a different CPU + */ +int try_to_del_timer_sync(struct timer_list *timer) +{ + return __try_to_del_timer_sync(timer, false); +} EXPORT_SYMBOL(try_to_del_timer_sync); #ifdef CONFIG_PREEMPT_RT @@ -1312,44 +1422,29 @@ static inline void timer_sync_wait_running(struct timer_base *base) { } static inline void del_timer_wait_running(struct timer_list *timer) { } #endif -#if defined(CONFIG_SMP) || defined(CONFIG_PREEMPT_RT) /** - * del_timer_sync - deactivate a timer and wait for the handler to finish. - * @timer: the timer to be deactivated - * - * This function only differs from del_timer() on SMP: besides deactivating - * the timer it also makes sure the handler has finished executing on other - * CPUs. - * - * Synchronization rules: Callers must prevent restarting of the timer, - * otherwise this function is meaningless. It must not be called from - * interrupt contexts unless the timer is an irqsafe one. The caller must - * not hold locks which would prevent completion of the timer's - * handler. The timer's handler must not call add_timer_on(). Upon exit the - * timer is not queued and the handler is not running on any CPU. - * - * Note: For !irqsafe timers, you must not hold locks that are held in - * interrupt context while calling this function. Even if the lock has - * nothing to do with the timer in question. Here's why:: - * - * CPU0 CPU1 - * ---- ---- - * - * call_timer_fn(); - * base->running_timer = mytimer; - * spin_lock_irq(somelock); - * - * spin_lock(somelock); - * del_timer_sync(mytimer); - * while (base->running_timer == mytimer); - * - * Now del_timer_sync() will never return and never release somelock. - * The interrupt on the other CPU is waiting to grab somelock but - * it has interrupted the softirq that CPU0 is waiting to finish. - * - * The function returns whether it has deactivated a pending timer or not. + * __timer_delete_sync - Internal function: Deactivate a timer and wait + * for the handler to finish. + * @timer: The timer to be deactivated + * @shutdown: If true, @timer->function will be set to NULL under the + * timer base lock which prevents rearming of @timer + * + * If @shutdown is not set the timer can be rearmed later. If the timer can + * be rearmed concurrently, i.e. after dropping the base lock then the + * return value is meaningless. + * + * If @shutdown is set then @timer->function is set to NULL under timer + * base lock which prevents rearming of the timer. Any attempt to rearm + * a shutdown timer is silently ignored. + * + * If the timer should be reused after shutdown it has to be initialized + * again. + * + * Return: + * * %0 - The timer was not pending + * * %1 - The timer was pending and deactivated */ -int del_timer_sync(struct timer_list *timer) +static int __timer_delete_sync(struct timer_list *timer, bool shutdown) { int ret; @@ -1369,7 +1464,7 @@ int del_timer_sync(struct timer_list *timer) * don't use it in hardirq context, because it * could lead to deadlock. */ - WARN_ON(in_irq() && !(timer->flags & TIMER_IRQSAFE)); + WARN_ON(in_hardirq() && !(timer->flags & TIMER_IRQSAFE)); /* * Must be able to sleep on PREEMPT_RT because of the slowpath in @@ -1379,7 +1474,7 @@ int del_timer_sync(struct timer_list *timer) lockdep_assert_preemption_enabled(); do { - ret = try_to_del_timer_sync(timer); + ret = __try_to_del_timer_sync(timer, shutdown); if (unlikely(ret < 0)) { del_timer_wait_running(timer); @@ -1389,8 +1484,96 @@ int del_timer_sync(struct timer_list *timer) return ret; } -EXPORT_SYMBOL(del_timer_sync); -#endif + +/** + * timer_delete_sync - Deactivate a timer and wait for the handler to finish. + * @timer: The timer to be deactivated + * + * Synchronization rules: Callers must prevent restarting of the timer, + * otherwise this function is meaningless. It must not be called from + * interrupt contexts unless the timer is an irqsafe one. The caller must + * not hold locks which would prevent completion of the timer's callback + * function. The timer's handler must not call add_timer_on(). Upon exit + * the timer is not queued and the handler is not running on any CPU. + * + * For !irqsafe timers, the caller must not hold locks that are held in + * interrupt context. Even if the lock has nothing to do with the timer in + * question. Here's why:: + * + * CPU0 CPU1 + * ---- ---- + * + * call_timer_fn(); + * base->running_timer = mytimer; + * spin_lock_irq(somelock); + * + * spin_lock(somelock); + * timer_delete_sync(mytimer); + * while (base->running_timer == mytimer); + * + * Now timer_delete_sync() will never return and never release somelock. + * The interrupt on the other CPU is waiting to grab somelock but it has + * interrupted the softirq that CPU0 is waiting to finish. + * + * This function cannot guarantee that the timer is not rearmed again by + * some concurrent or preempting code, right after it dropped the base + * lock. If there is the possibility of a concurrent rearm then the return + * value of the function is meaningless. + * + * If such a guarantee is needed, e.g. for teardown situations then use + * timer_shutdown_sync() instead. + * + * Return: + * * %0 - The timer was not pending + * * %1 - The timer was pending and deactivated + */ +int timer_delete_sync(struct timer_list *timer) +{ + return __timer_delete_sync(timer, false); +} +EXPORT_SYMBOL(timer_delete_sync); + +/** + * timer_shutdown_sync - Shutdown a timer and prevent rearming + * @timer: The timer to be shutdown + * + * When the function returns it is guaranteed that: + * - @timer is not queued + * - The callback function of @timer is not running + * - @timer cannot be enqueued again. Any attempt to rearm + * @timer is silently ignored. + * + * See timer_delete_sync() for synchronization rules. + * + * This function is useful for final teardown of an infrastructure where + * the timer is subject to a circular dependency problem. + * + * A common pattern for this is a timer and a workqueue where the timer can + * schedule work and work can arm the timer. On shutdown the workqueue must + * be destroyed and the timer must be prevented from rearming. Unless the + * code has conditionals like 'if (mything->in_shutdown)' to prevent that + * there is no way to get this correct with timer_delete_sync(). + * + * timer_shutdown_sync() is solving the problem. The correct ordering of + * calls in this case is: + * + * timer_shutdown_sync(&mything->timer); + * workqueue_destroy(&mything->workqueue); + * + * After this 'mything' can be safely freed. + * + * This obviously implies that the timer is not required to be functional + * for the rest of the shutdown operation. + * + * Return: + * * %0 - The timer was not pending + * * %1 - The timer was pending + */ +int timer_shutdown_sync(struct timer_list *timer) +{ + return __timer_delete_sync(timer, true); +} +EXPORT_SYMBOL_GPL(timer_shutdown_sync); static void call_timer_fn(struct timer_list *timer, void (*fn)(struct timer_list *), @@ -1412,8 +1595,8 @@ static void call_timer_fn(struct timer_list *timer, #endif /* * Couple the lock chain with the lock chain at - * del_timer_sync() by acquiring the lock_map around the fn() - * call here and in del_timer_sync(). + * timer_delete_sync() by acquiring the lock_map around the fn() + * call here and in timer_delete_sync(). */ lock_map_acquire(&lockdep_map); diff --git a/kernel/trace/bpf_trace.c b/kernel/trace/bpf_trace.c index 6352a41380e53..85a36b19c2b80 100644 --- a/kernel/trace/bpf_trace.c +++ b/kernel/trace/bpf_trace.c @@ -1996,7 +1996,7 @@ int bpf_get_perf_event_info(const struct perf_event *event, u32 *prog_id, #ifdef CONFIG_UPROBE_EVENTS if (flags & TRACE_EVENT_FL_UPROBE) err = bpf_get_uprobe_info(event, fd_type, buf, - probe_offset, + probe_offset, probe_addr, event->attr.type == PERF_TYPE_TRACEPOINT); #endif } diff --git a/kernel/trace/ring_buffer.c b/kernel/trace/ring_buffer.c index db7cefd196cec..16fce72a7601c 100644 --- a/kernel/trace/ring_buffer.c +++ b/kernel/trace/ring_buffer.c @@ -346,10 +346,11 @@ static void rb_init_page(struct buffer_data_page *bpage) local_set(&bpage->commit, 0); } -/* - * Also stolen from mm/slob.c. Thanks to Mathieu Desnoyers for pointing - * this issue out. - */ +static __always_inline unsigned int rb_page_commit(struct buffer_page *bpage) +{ + return local_read(&bpage->page->commit); +} + static void free_buffer_page(struct buffer_page *bpage) { free_page((unsigned long)bpage->page); @@ -1106,6 +1107,9 @@ __poll_t ring_buffer_poll_wait(struct trace_buffer *buffer, int cpu, if (full) { poll_wait(filp, &work->full_waiters, poll_table); work->full_waiters_pending = true; + if (!cpu_buffer->shortest_full || + cpu_buffer->shortest_full > full) + cpu_buffer->shortest_full = full; } else { poll_wait(filp, &work->waiters, poll_table); work->waiters_pending = true; @@ -1985,7 +1989,7 @@ rb_remove_pages(struct ring_buffer_per_cpu *cpu_buffer, unsigned long nr_pages) * Increment overrun to account for the lost events. */ local_add(page_entries, &cpu_buffer->overrun); - local_sub(BUF_PAGE_SIZE, &cpu_buffer->entries_bytes); + local_sub(rb_page_commit(to_remove_page), &cpu_buffer->entries_bytes); local_inc(&cpu_buffer->pages_lost); } @@ -2176,6 +2180,8 @@ int ring_buffer_resize(struct trace_buffer *buffer, unsigned long size, err = -ENOMEM; goto out_err; } + + cond_resched(); } cpus_read_lock(); @@ -2327,11 +2333,6 @@ rb_reader_event(struct ring_buffer_per_cpu *cpu_buffer) cpu_buffer->reader_page->read); } -static __always_inline unsigned rb_page_commit(struct buffer_page *bpage) -{ - return local_read(&bpage->page->commit); -} - static struct ring_buffer_event * rb_iter_head_event(struct ring_buffer_iter *iter) { @@ -2350,6 +2351,11 @@ rb_iter_head_event(struct ring_buffer_iter *iter) */ commit = rb_page_commit(iter_head_page); smp_rmb(); + + /* An event needs to be at least 8 bytes in size */ + if (iter->head > commit - 8) + goto reset; + event = __rb_page_index(iter_head_page, iter->head); length = rb_event_length(event); @@ -2472,7 +2478,7 @@ rb_handle_head_page(struct ring_buffer_per_cpu *cpu_buffer, * the counters. */ local_add(entries, &cpu_buffer->overrun); - local_sub(BUF_PAGE_SIZE, &cpu_buffer->entries_bytes); + local_sub(rb_page_commit(next_page), &cpu_buffer->entries_bytes); local_inc(&cpu_buffer->pages_lost); /* @@ -2615,9 +2621,6 @@ rb_reset_tail(struct ring_buffer_per_cpu *cpu_buffer, event = __rb_page_index(tail_page, tail); - /* account for padding bytes */ - local_add(BUF_PAGE_SIZE - tail, &cpu_buffer->entries_bytes); - /* * Save the original length to the meta data. * This will be used by the reader to add lost event @@ -2631,7 +2634,8 @@ rb_reset_tail(struct ring_buffer_per_cpu *cpu_buffer, * write counter enough to allow another writer to slip * in on this page. * We put in a discarded commit instead, to make sure - * that this space is not used again. + * that this space is not used again, and this space will + * not be accounted into 'entries_bytes'. * * If we are less than the minimum size, we don't need to * worry about it. @@ -2656,6 +2660,9 @@ rb_reset_tail(struct ring_buffer_per_cpu *cpu_buffer, /* time delta must be non zero */ event->time_delta = 1; + /* account for padding bytes */ + local_add(BUF_PAGE_SIZE - tail, &cpu_buffer->entries_bytes); + /* Make sure the padding is visible before the tail_page->write update */ smp_wmb(); @@ -2975,22 +2982,19 @@ rb_try_to_discard(struct ring_buffer_per_cpu *cpu_buffer, local_read(&bpage->write) & ~RB_WRITE_MASK; unsigned long event_length = rb_event_length(event); + /* + * For the before_stamp to be different than the write_stamp + * to make sure that the next event adds an absolute + * value and does not rely on the saved write stamp, which + * is now going to be bogus. + */ + rb_time_set(&cpu_buffer->before_stamp, 0); + /* Something came in, can't discard */ if (!rb_time_cmpxchg(&cpu_buffer->write_stamp, write_stamp, write_stamp - delta)) return 0; - /* - * It's possible that the event time delta is zero - * (has the same time stamp as the previous event) - * in which case write_stamp and before_stamp could - * be the same. In such a case, force before_stamp - * to be different than write_stamp. It doesn't - * matter what it is, as long as its different. - */ - if (!delta) - rb_time_set(&cpu_buffer->before_stamp, 0); - /* * If an event were to come in now, it would see that the * write_stamp and the before_stamp are different, and assume @@ -3242,14 +3246,9 @@ static __always_inline int trace_recursive_lock(struct ring_buffer_per_cpu *cpu_buffer) { unsigned int val = cpu_buffer->current_context; - unsigned long pc = preempt_count(); - int bit; + int bit = interrupt_context_level(); - if (!(pc & (NMI_MASK | HARDIRQ_MASK | SOFTIRQ_OFFSET))) - bit = RB_CTX_NORMAL; - else - bit = pc & NMI_MASK ? RB_CTX_NMI : - pc & HARDIRQ_MASK ? RB_CTX_IRQ : RB_CTX_SOFTIRQ; + bit = RB_CTX_NORMAL - bit; if (unlikely(val & (1 << (bit + cpu_buffer->nest)))) { /* @@ -4171,7 +4170,7 @@ u64 ring_buffer_oldest_event_ts(struct trace_buffer *buffer, int cpu) EXPORT_SYMBOL_GPL(ring_buffer_oldest_event_ts); /** - * ring_buffer_bytes_cpu - get the number of bytes consumed in a cpu buffer + * ring_buffer_bytes_cpu - get the number of bytes unconsumed in a cpu buffer * @buffer: The ring buffer * @cpu: The per CPU buffer to read from. */ @@ -4679,6 +4678,7 @@ static void rb_advance_reader(struct ring_buffer_per_cpu *cpu_buffer) length = rb_event_length(event); cpu_buffer->reader_page->read += length; + cpu_buffer->read_bytes += length; } static void rb_advance_iter(struct ring_buffer_iter *iter) @@ -5772,7 +5772,7 @@ int ring_buffer_read_page(struct trace_buffer *buffer, } else { /* update the entry counter */ cpu_buffer->read += rb_page_entries(reader); - cpu_buffer->read_bytes += BUF_PAGE_SIZE; + cpu_buffer->read_bytes += rb_page_commit(reader); /* swap the pages */ rb_init_page(bpage); diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c index 8769cd18f622f..657ecb8f03545 100644 --- a/kernel/trace/trace.c +++ b/kernel/trace/trace.c @@ -1716,7 +1716,7 @@ static void trace_create_maxlat_file(struct trace_array *tr, init_irq_work(&tr->fsnotify_irqwork, latency_fsnotify_workfn_irq); tr->d_max_latency = trace_create_file("tracing_max_latency", TRACE_MODE_WRITE, - d_tracer, &tr->max_latency, + d_tracer, tr, &tracing_max_lat_fops); } @@ -1749,7 +1749,7 @@ void latency_fsnotify(struct trace_array *tr) #define trace_create_maxlat_file(tr, d_tracer) \ trace_create_file("tracing_max_latency", TRACE_MODE_WRITE, \ - d_tracer, &tr->max_latency, &tracing_max_lat_fops) + d_tracer, tr, &tracing_max_lat_fops) #endif @@ -2284,13 +2284,7 @@ int is_tracing_stopped(void) return global_trace.stop_count; } -/** - * tracing_start - quick start of the tracer - * - * If tracing is enabled but was stopped by tracing_stop, - * this will start the tracer back up. - */ -void tracing_start(void) +static void tracing_start_tr(struct trace_array *tr) { struct trace_buffer *buffer; unsigned long flags; @@ -2298,119 +2292,83 @@ void tracing_start(void) if (tracing_disabled) return; - raw_spin_lock_irqsave(&global_trace.start_lock, flags); - if (--global_trace.stop_count) { - if (global_trace.stop_count < 0) { + raw_spin_lock_irqsave(&tr->start_lock, flags); + if (--tr->stop_count) { + if (WARN_ON_ONCE(tr->stop_count < 0)) { /* Someone screwed up their debugging */ - WARN_ON_ONCE(1); - global_trace.stop_count = 0; + tr->stop_count = 0; } goto out; } /* Prevent the buffers from switching */ - arch_spin_lock(&global_trace.max_lock); + arch_spin_lock(&tr->max_lock); - buffer = global_trace.array_buffer.buffer; + buffer = tr->array_buffer.buffer; if (buffer) ring_buffer_record_enable(buffer); #ifdef CONFIG_TRACER_MAX_TRACE - buffer = global_trace.max_buffer.buffer; + buffer = tr->max_buffer.buffer; if (buffer) ring_buffer_record_enable(buffer); #endif - arch_spin_unlock(&global_trace.max_lock); - - out: - raw_spin_unlock_irqrestore(&global_trace.start_lock, flags); -} - -static void tracing_start_tr(struct trace_array *tr) -{ - struct trace_buffer *buffer; - unsigned long flags; - - if (tracing_disabled) - return; - - /* If global, we need to also start the max tracer */ - if (tr->flags & TRACE_ARRAY_FL_GLOBAL) - return tracing_start(); - - raw_spin_lock_irqsave(&tr->start_lock, flags); - - if (--tr->stop_count) { - if (tr->stop_count < 0) { - /* Someone screwed up their debugging */ - WARN_ON_ONCE(1); - tr->stop_count = 0; - } - goto out; - } - - buffer = tr->array_buffer.buffer; - if (buffer) - ring_buffer_record_enable(buffer); + arch_spin_unlock(&tr->max_lock); out: raw_spin_unlock_irqrestore(&tr->start_lock, flags); } /** - * tracing_stop - quick stop of the tracer + * tracing_start - quick start of the tracer * - * Light weight way to stop tracing. Use in conjunction with - * tracing_start. + * If tracing is enabled but was stopped by tracing_stop, + * this will start the tracer back up. */ -void tracing_stop(void) +void tracing_start(void) + +{ + return tracing_start_tr(&global_trace); +} + +static void tracing_stop_tr(struct trace_array *tr) { struct trace_buffer *buffer; unsigned long flags; - raw_spin_lock_irqsave(&global_trace.start_lock, flags); - if (global_trace.stop_count++) + raw_spin_lock_irqsave(&tr->start_lock, flags); + if (tr->stop_count++) goto out; /* Prevent the buffers from switching */ - arch_spin_lock(&global_trace.max_lock); + arch_spin_lock(&tr->max_lock); - buffer = global_trace.array_buffer.buffer; + buffer = tr->array_buffer.buffer; if (buffer) ring_buffer_record_disable(buffer); #ifdef CONFIG_TRACER_MAX_TRACE - buffer = global_trace.max_buffer.buffer; + buffer = tr->max_buffer.buffer; if (buffer) ring_buffer_record_disable(buffer); #endif - arch_spin_unlock(&global_trace.max_lock); + arch_spin_unlock(&tr->max_lock); out: - raw_spin_unlock_irqrestore(&global_trace.start_lock, flags); + raw_spin_unlock_irqrestore(&tr->start_lock, flags); } -static void tracing_stop_tr(struct trace_array *tr) +/** + * tracing_stop - quick stop of the tracer + * + * Light weight way to stop tracing. Use in conjunction with + * tracing_start. + */ +void tracing_stop(void) { - struct trace_buffer *buffer; - unsigned long flags; - - /* If global, we need to also stop the max tracer */ - if (tr->flags & TRACE_ARRAY_FL_GLOBAL) - return tracing_stop(); - - raw_spin_lock_irqsave(&tr->start_lock, flags); - if (tr->stop_count++) - goto out; - - buffer = tr->array_buffer.buffer; - if (buffer) - ring_buffer_record_disable(buffer); - - out: - raw_spin_unlock_irqrestore(&tr->start_lock, flags); + return tracing_stop_tr(&global_trace); } static int trace_save_cmdline(struct task_struct *tsk) @@ -2692,8 +2650,11 @@ void trace_buffered_event_enable(void) for_each_tracing_cpu(cpu) { page = alloc_pages_node(cpu_to_node(cpu), GFP_KERNEL | __GFP_NORETRY, 0); - if (!page) - goto failed; + /* This is just an optimization and can handle failures */ + if (!page) { + pr_err("Failed to allocate event buffer\n"); + break; + } event = page_address(page); memset(event, 0, sizeof(*event)); @@ -2707,10 +2668,6 @@ void trace_buffered_event_enable(void) WARN_ON_ONCE(1); preempt_enable(); } - - return; - failed: - trace_buffered_event_disable(); } static void enable_trace_buffered_event(void *data) @@ -2745,11 +2702,9 @@ void trace_buffered_event_disable(void) if (--trace_buffered_event_ref) return; - preempt_disable(); /* For each CPU, set the buffer as used. */ - smp_call_function_many(tracing_buffer_mask, - disable_trace_buffered_event, NULL, 1); - preempt_enable(); + on_each_cpu_mask(tracing_buffer_mask, disable_trace_buffered_event, + NULL, true); /* Wait for all current users to finish */ synchronize_rcu(); @@ -2758,17 +2713,19 @@ void trace_buffered_event_disable(void) free_page((unsigned long)per_cpu(trace_buffered_event, cpu)); per_cpu(trace_buffered_event, cpu) = NULL; } + /* - * Make sure trace_buffered_event is NULL before clearing - * trace_buffered_event_cnt. + * Wait for all CPUs that potentially started checking if they can use + * their event buffer only after the previous synchronize_rcu() call and + * they still read a valid pointer from trace_buffered_event. It must be + * ensured they don't see cleared trace_buffered_event_cnt else they + * could wrongly decide to use the pointed-to buffer which is now freed. */ - smp_wmb(); + synchronize_rcu(); - preempt_disable(); - /* Do the work on each cpu */ - smp_call_function_many(tracing_buffer_mask, - enable_trace_buffered_event, NULL, 1); - preempt_enable(); + /* For each CPU, relinquish the buffer */ + on_each_cpu_mask(tracing_buffer_mask, enable_trace_buffered_event, NULL, + true); } static struct trace_buffer *temp_buffer; @@ -4887,6 +4844,54 @@ int tracing_open_generic_tr(struct inode *inode, struct file *filp) return 0; } +/* + * The private pointer of the inode is the trace_event_file. + * Update the tr ref count associated to it. + */ +int tracing_open_file_tr(struct inode *inode, struct file *filp) +{ + struct trace_event_file *file = inode->i_private; + int ret; + + ret = tracing_check_open_get_tr(file->tr); + if (ret) + return ret; + + mutex_lock(&event_mutex); + + /* Fail if the file is marked for removal */ + if (file->flags & EVENT_FILE_FL_FREED) { + trace_array_put(file->tr); + ret = -ENODEV; + } else { + event_file_get(file); + } + + mutex_unlock(&event_mutex); + if (ret) + return ret; + + filp->private_data = inode->i_private; + + return 0; +} + +int tracing_release_file_tr(struct inode *inode, struct file *filp) +{ + struct trace_event_file *file = inode->i_private; + + trace_array_put(file->tr); + event_file_put(file); + + return 0; +} + +static int tracing_mark_open(struct inode *inode, struct file *filp) +{ + stream_open(inode, filp); + return tracing_open_generic_tr(inode, filp); +} + static int tracing_release(struct inode *inode, struct file *file) { struct trace_array *tr = inode->i_private; @@ -6185,6 +6190,15 @@ static void set_buffer_entries(struct array_buffer *buf, unsigned long val) per_cpu_ptr(buf->data, cpu)->entries = val; } +static void update_buffer_entries(struct array_buffer *buf, int cpu) +{ + if (cpu == RING_BUFFER_ALL_CPUS) { + set_buffer_entries(buf, ring_buffer_size(buf->buffer, 0)); + } else { + per_cpu_ptr(buf->data, cpu)->entries = ring_buffer_size(buf->buffer, cpu); + } +} + #ifdef CONFIG_TRACER_MAX_TRACE /* resize @tr's buffer to the size of @size_tr's entries */ static int resize_buffer_duplicate_size(struct array_buffer *trace_buf, @@ -6229,13 +6243,15 @@ static int __tracing_resize_ring_buffer(struct trace_array *tr, if (!tr->array_buffer.buffer) return 0; + /* Do not allow tracing while resizng ring buffer */ + tracing_stop_tr(tr); + ret = ring_buffer_resize(tr->array_buffer.buffer, size, cpu); if (ret < 0) - return ret; + goto out_start; #ifdef CONFIG_TRACER_MAX_TRACE - if (!(tr->flags & TRACE_ARRAY_FL_GLOBAL) || - !tr->current_trace->use_max_tr) + if (!tr->current_trace->use_max_tr) goto out; ret = ring_buffer_resize(tr->max_buffer.buffer, size, cpu); @@ -6260,22 +6276,17 @@ static int __tracing_resize_ring_buffer(struct trace_array *tr, WARN_ON(1); tracing_disabled = 1; } - return ret; + goto out_start; } - if (cpu == RING_BUFFER_ALL_CPUS) - set_buffer_entries(&tr->max_buffer, size); - else - per_cpu_ptr(tr->max_buffer.data, cpu)->entries = size; + update_buffer_entries(&tr->max_buffer, cpu); out: #endif /* CONFIG_TRACER_MAX_TRACE */ - if (cpu == RING_BUFFER_ALL_CPUS) - set_buffer_entries(&tr->array_buffer, size); - else - per_cpu_ptr(tr->array_buffer.data, cpu)->entries = size; - + update_buffer_entries(&tr->array_buffer, cpu); + out_start: + tracing_start_tr(tr); return ret; } @@ -6575,22 +6586,52 @@ static ssize_t tracing_max_lat_read(struct file *filp, char __user *ubuf, size_t cnt, loff_t *ppos) { - return tracing_nsecs_read(filp->private_data, ubuf, cnt, ppos); + struct trace_array *tr = filp->private_data; + + return tracing_nsecs_read(&tr->max_latency, ubuf, cnt, ppos); } static ssize_t tracing_max_lat_write(struct file *filp, const char __user *ubuf, size_t cnt, loff_t *ppos) { - return tracing_nsecs_write(filp->private_data, ubuf, cnt, ppos); + struct trace_array *tr = filp->private_data; + + return tracing_nsecs_write(&tr->max_latency, ubuf, cnt, ppos); } #endif +static int open_pipe_on_cpu(struct trace_array *tr, int cpu) +{ + if (cpu == RING_BUFFER_ALL_CPUS) { + if (cpumask_empty(tr->pipe_cpumask)) { + cpumask_setall(tr->pipe_cpumask); + return 0; + } + } else if (!cpumask_test_cpu(cpu, tr->pipe_cpumask)) { + cpumask_set_cpu(cpu, tr->pipe_cpumask); + return 0; + } + return -EBUSY; +} + +static void close_pipe_on_cpu(struct trace_array *tr, int cpu) +{ + if (cpu == RING_BUFFER_ALL_CPUS) { + WARN_ON(!cpumask_full(tr->pipe_cpumask)); + cpumask_clear(tr->pipe_cpumask); + } else { + WARN_ON(!cpumask_test_cpu(cpu, tr->pipe_cpumask)); + cpumask_clear_cpu(cpu, tr->pipe_cpumask); + } +} + static int tracing_open_pipe(struct inode *inode, struct file *filp) { struct trace_array *tr = inode->i_private; struct trace_iterator *iter; + int cpu; int ret; ret = tracing_check_open_get_tr(tr); @@ -6598,13 +6639,16 @@ static int tracing_open_pipe(struct inode *inode, struct file *filp) return ret; mutex_lock(&trace_types_lock); + cpu = tracing_get_cpu(inode); + ret = open_pipe_on_cpu(tr, cpu); + if (ret) + goto fail_pipe_on_cpu; /* create a buffer to store the information to pass to userspace */ iter = kzalloc(sizeof(*iter), GFP_KERNEL); if (!iter) { ret = -ENOMEM; - __trace_array_put(tr); - goto out; + goto fail_alloc_iter; } trace_seq_init(&iter->seq); @@ -6627,7 +6671,7 @@ static int tracing_open_pipe(struct inode *inode, struct file *filp) iter->tr = tr; iter->array_buffer = &tr->array_buffer; - iter->cpu_file = tracing_get_cpu(inode); + iter->cpu_file = cpu; mutex_init(&iter->mutex); filp->private_data = iter; @@ -6637,12 +6681,15 @@ static int tracing_open_pipe(struct inode *inode, struct file *filp) nonseekable_open(inode, filp); tr->trace_ref++; -out: + mutex_unlock(&trace_types_lock); return ret; fail: kfree(iter); +fail_alloc_iter: + close_pipe_on_cpu(tr, cpu); +fail_pipe_on_cpu: __trace_array_put(tr); mutex_unlock(&trace_types_lock); return ret; @@ -6659,7 +6706,7 @@ static int tracing_release_pipe(struct inode *inode, struct file *file) if (iter->trace->pipe_close) iter->trace->pipe_close(iter); - + close_pipe_on_cpu(tr, iter->cpu_file); mutex_unlock(&trace_types_lock); free_cpumask_var(iter->started); @@ -7189,9 +7236,6 @@ tracing_mark_write(struct file *filp, const char __user *ubuf, if (tt) event_triggers_post_call(tr->trace_marker_file, tt); - if (written > 0) - *fpos += written; - return written; } @@ -7250,9 +7294,6 @@ tracing_mark_raw_write(struct file *filp, const char __user *ubuf, __buffer_unlock_commit(buffer, event); - if (written > 0) - *fpos += written; - return written; } @@ -7464,6 +7505,11 @@ static int tracing_snapshot_open(struct inode *inode, struct file *file) return ret; } +static void tracing_swap_cpu_buffer(void *tr) +{ + update_max_tr_single((struct trace_array *)tr, current, smp_processor_id()); +} + static ssize_t tracing_snapshot_write(struct file *filp, const char __user *ubuf, size_t cnt, loff_t *ppos) @@ -7522,13 +7568,15 @@ tracing_snapshot_write(struct file *filp, const char __user *ubuf, size_t cnt, ret = tracing_alloc_snapshot_instance(tr); if (ret < 0) break; - local_irq_disable(); /* Now, we're going to swap */ - if (iter->cpu_file == RING_BUFFER_ALL_CPUS) + if (iter->cpu_file == RING_BUFFER_ALL_CPUS) { + local_irq_disable(); update_max_tr(tr, current, smp_processor_id(), NULL); - else - update_max_tr_single(tr, current, iter->cpu_file); - local_irq_enable(); + local_irq_enable(); + } else { + smp_call_function_single(iter->cpu_file, tracing_swap_cpu_buffer, + (void *)tr, 1); + } break; default: if (tr->allocated_snapshot) { @@ -7609,18 +7657,20 @@ static const struct file_operations tracing_thresh_fops = { #ifdef CONFIG_TRACER_MAX_TRACE static const struct file_operations tracing_max_lat_fops = { - .open = tracing_open_generic, + .open = tracing_open_generic_tr, .read = tracing_max_lat_read, .write = tracing_max_lat_write, .llseek = generic_file_llseek, + .release = tracing_release_generic_tr, }; #endif static const struct file_operations set_tracer_fops = { - .open = tracing_open_generic, + .open = tracing_open_generic_tr, .read = tracing_set_trace_read, .write = tracing_set_trace_write, .llseek = generic_file_llseek, + .release = tracing_release_generic_tr, }; static const struct file_operations tracing_pipe_fops = { @@ -7654,16 +7704,14 @@ static const struct file_operations tracing_free_buffer_fops = { }; static const struct file_operations tracing_mark_fops = { - .open = tracing_open_generic_tr, + .open = tracing_mark_open, .write = tracing_mark_write, - .llseek = generic_file_llseek, .release = tracing_release_generic_tr, }; static const struct file_operations tracing_mark_raw_fops = { - .open = tracing_open_generic_tr, + .open = tracing_mark_open, .write = tracing_mark_raw_write, - .llseek = generic_file_llseek, .release = tracing_release_generic_tr, }; @@ -8785,12 +8833,33 @@ trace_options_write(struct file *filp, const char __user *ubuf, size_t cnt, return cnt; } +static int tracing_open_options(struct inode *inode, struct file *filp) +{ + struct trace_option_dentry *topt = inode->i_private; + int ret; + + ret = tracing_check_open_get_tr(topt->tr); + if (ret) + return ret; + + filp->private_data = inode->i_private; + return 0; +} + +static int tracing_release_options(struct inode *inode, struct file *file) +{ + struct trace_option_dentry *topt = file->private_data; + + trace_array_put(topt->tr); + return 0; +} static const struct file_operations trace_options_fops = { - .open = tracing_open_generic, + .open = tracing_open_options, .read = trace_options_read, .write = trace_options_write, .llseek = generic_file_llseek, + .release = tracing_release_options, }; /* @@ -9311,6 +9380,9 @@ static struct trace_array *trace_array_create(const char *name) if (!alloc_cpumask_var(&tr->tracing_cpumask, GFP_KERNEL)) goto out_free_tr; + if (!zalloc_cpumask_var(&tr->pipe_cpumask, GFP_KERNEL)) + goto out_free_tr; + tr->trace_flags = global_trace.trace_flags & ~ZEROED_TRACE_FLAGS; cpumask_copy(tr->tracing_cpumask, cpu_all_mask); @@ -9352,6 +9424,7 @@ static struct trace_array *trace_array_create(const char *name) out_free_tr: ftrace_free_ftrace_ops(tr); free_trace_buffers(tr); + free_cpumask_var(tr->pipe_cpumask); free_cpumask_var(tr->tracing_cpumask); kfree(tr->name); kfree(tr); @@ -9454,6 +9527,7 @@ static int __remove_instance(struct trace_array *tr) } kfree(tr->topts); + free_cpumask_var(tr->pipe_cpumask); free_cpumask_var(tr->tracing_cpumask); kfree(tr->name); kfree(tr); @@ -10164,12 +10238,14 @@ __init static int tracer_alloc_buffers(void) if (trace_create_savedcmd() < 0) goto out_free_temp_buffer; + if (!zalloc_cpumask_var(&global_trace.pipe_cpumask, GFP_KERNEL)) + goto out_free_savedcmd; + /* TODO: make the number of buffers hot pluggable with CPUS */ if (allocate_trace_buffers(&global_trace, ring_buf_size) < 0) { MEM_FAIL(1, "tracer: failed to allocate ring buffer!\n"); - goto out_free_savedcmd; + goto out_free_pipe_cpumask; } - if (global_trace.buffer_disabled) tracing_off(); @@ -10222,6 +10298,8 @@ __init static int tracer_alloc_buffers(void) return 0; +out_free_pipe_cpumask: + free_cpumask_var(global_trace.pipe_cpumask); out_free_savedcmd: free_saved_cmdlines_buffer(savedcmd); out_free_temp_buffer: diff --git a/kernel/trace/trace.h b/kernel/trace/trace.h index 43058077a4def..c6eb116dc279d 100644 --- a/kernel/trace/trace.h +++ b/kernel/trace/trace.h @@ -367,6 +367,8 @@ struct trace_array { struct list_head events; struct trace_event_file *trace_marker_file; cpumask_var_t tracing_cpumask; /* only trace on set CPUs */ + /* one per_cpu trace_pipe can be opened by only one user */ + cpumask_var_t pipe_cpumask; int ref; int trace_ref; #ifdef CONFIG_FUNCTION_TRACER @@ -589,6 +591,8 @@ void tracing_reset_all_online_cpus(void); void tracing_reset_all_online_cpus_unlocked(void); int tracing_open_generic(struct inode *inode, struct file *filp); int tracing_open_generic_tr(struct inode *inode, struct file *filp); +int tracing_open_file_tr(struct inode *inode, struct file *filp); +int tracing_release_file_tr(struct inode *inode, struct file *filp); bool tracing_is_disabled(void); bool tracer_tracing_is_on(struct trace_array *tr); void tracer_tracing_on(struct trace_array *tr); @@ -1616,6 +1620,9 @@ extern int register_event_command(struct event_command *cmd); extern int unregister_event_command(struct event_command *cmd); extern int register_trigger_hist_enable_disable_cmds(void); +extern void event_file_get(struct trace_event_file *file); +extern void event_file_put(struct trace_event_file *file); + /** * struct event_trigger_ops - callbacks for trace event triggers * diff --git a/kernel/trace/trace_events.c b/kernel/trace/trace_events.c index 2a2a599997671..0a7348b90ba50 100644 --- a/kernel/trace/trace_events.c +++ b/kernel/trace/trace_events.c @@ -969,26 +969,38 @@ static void remove_subsystem(struct trace_subsystem_dir *dir) } } -static void remove_event_file_dir(struct trace_event_file *file) +void event_file_get(struct trace_event_file *file) { - struct dentry *dir = file->dir; - struct dentry *child; + atomic_inc(&file->ref); +} - if (dir) { - spin_lock(&dir->d_lock); /* probably unneeded */ - list_for_each_entry(child, &dir->d_subdirs, d_child) { - if (d_really_is_positive(child)) /* probably unneeded */ - d_inode(child)->i_private = NULL; - } - spin_unlock(&dir->d_lock); +void event_file_put(struct trace_event_file *file) +{ + if (WARN_ON_ONCE(!atomic_read(&file->ref))) { + if (file->flags & EVENT_FILE_FL_FREED) + kmem_cache_free(file_cachep, file); + return; + } - tracefs_remove(dir); + if (atomic_dec_and_test(&file->ref)) { + /* Count should only go to zero when it is freed */ + if (WARN_ON_ONCE(!(file->flags & EVENT_FILE_FL_FREED))) + return; + kmem_cache_free(file_cachep, file); } +} + +static void remove_event_file_dir(struct trace_event_file *file) +{ + struct dentry *dir = file->dir; + + tracefs_remove(dir); list_del(&file->list); remove_subsystem(file->system); free_event_filter(file->filter); - kmem_cache_free(file_cachep, file); + file->flags |= EVENT_FILE_FL_FREED; + event_file_put(file); } /* @@ -1361,7 +1373,7 @@ event_enable_read(struct file *filp, char __user *ubuf, size_t cnt, flags = file->flags; mutex_unlock(&event_mutex); - if (!file) + if (!file || flags & EVENT_FILE_FL_FREED) return -ENODEV; if (flags & EVENT_FILE_FL_ENABLED && @@ -1399,7 +1411,7 @@ event_enable_write(struct file *filp, const char __user *ubuf, size_t cnt, ret = -ENODEV; mutex_lock(&event_mutex); file = event_file_data(filp); - if (likely(file)) + if (likely(file && !(file->flags & EVENT_FILE_FL_FREED))) ret = ftrace_event_enable_disable(file, val); mutex_unlock(&event_mutex); break; @@ -1668,7 +1680,7 @@ event_filter_read(struct file *filp, char __user *ubuf, size_t cnt, mutex_lock(&event_mutex); file = event_file_data(filp); - if (file) + if (file && !(file->flags & EVENT_FILE_FL_FREED)) print_event_filter(file, s); mutex_unlock(&event_mutex); @@ -2078,9 +2090,10 @@ static const struct file_operations ftrace_set_event_notrace_pid_fops = { }; static const struct file_operations ftrace_enable_fops = { - .open = tracing_open_generic, + .open = tracing_open_file_tr, .read = event_enable_read, .write = event_enable_write, + .release = tracing_release_file_tr, .llseek = default_llseek, }; @@ -2097,9 +2110,10 @@ static const struct file_operations ftrace_event_id_fops = { }; static const struct file_operations ftrace_event_filter_fops = { - .open = tracing_open_generic, + .open = tracing_open_file_tr, .read = event_filter_read, .write = event_filter_write, + .release = tracing_release_file_tr, .llseek = default_llseek, }; @@ -2751,6 +2765,7 @@ void trace_event_eval_update(struct trace_eval_map **map, int len) update_event_fields(call, map[i]); } } + cond_resched(); } up_write(&trace_event_sem); } @@ -2781,6 +2796,7 @@ trace_create_new_event(struct trace_event_call *call, atomic_set(&file->tm_ref, 0); INIT_LIST_HEAD(&file->triggers); list_add(&file->list, &tr->events); + event_file_get(file); return file; } diff --git a/kernel/trace/trace_events_filter.c b/kernel/trace/trace_events_filter.c index 06d6318ee5377..60c34fc44a638 100644 --- a/kernel/trace/trace_events_filter.c +++ b/kernel/trace/trace_events_filter.c @@ -1872,6 +1872,9 @@ int apply_event_filter(struct trace_event_file *file, char *filter_string) struct event_filter *filter = NULL; int err; + if (file->flags & EVENT_FILE_FL_FREED) + return -ENODEV; + if (!strcmp(strstrip(filter_string), "0")) { filter_disable(file); filter = event_filter(file); diff --git a/kernel/trace/trace_events_inject.c b/kernel/trace/trace_events_inject.c index c188045c5f976..b1fce64e126c0 100644 --- a/kernel/trace/trace_events_inject.c +++ b/kernel/trace/trace_events_inject.c @@ -321,7 +321,8 @@ event_inject_read(struct file *file, char __user *buf, size_t size, } const struct file_operations event_inject_fops = { - .open = tracing_open_generic, + .open = tracing_open_file_tr, .read = event_inject_read, .write = event_inject_write, + .release = tracing_release_file_tr, }; diff --git a/kernel/trace/trace_events_synth.c b/kernel/trace/trace_events_synth.c index 1e02bb431dcb5..43da364737a04 100644 --- a/kernel/trace/trace_events_synth.c +++ b/kernel/trace/trace_events_synth.c @@ -454,7 +454,7 @@ static unsigned int trace_string(struct synth_trace_event *entry, #ifdef CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE if ((unsigned long)str_val < TASK_SIZE) - ret = strncpy_from_user_nofault(str_field, str_val, STR_VAR_LEN_MAX); + ret = strncpy_from_user_nofault(str_field, (const void __user *)str_val, STR_VAR_LEN_MAX); else #endif ret = strncpy_from_kernel_nofault(str_field, str_val, STR_VAR_LEN_MAX); diff --git a/kernel/trace/trace_hwlat.c b/kernel/trace/trace_hwlat.c index 9ec032f22531c..3a994bd8520ca 100644 --- a/kernel/trace/trace_hwlat.c +++ b/kernel/trace/trace_hwlat.c @@ -635,7 +635,7 @@ static int s_mode_show(struct seq_file *s, void *v) else seq_printf(s, "%s", thread_mode_str[mode]); - if (mode != MODE_MAX) + if (mode < MODE_MAX - 1) /* if mode is any but last */ seq_puts(s, " "); return 0; diff --git a/kernel/trace/trace_kprobe.c b/kernel/trace/trace_kprobe.c index e755e09805ab1..0b3ee4eea51bf 100644 --- a/kernel/trace/trace_kprobe.c +++ b/kernel/trace/trace_kprobe.c @@ -942,10 +942,10 @@ EXPORT_SYMBOL_GPL(kprobe_event_cmd_init); /** * __kprobe_event_gen_cmd_start - Generate a kprobe event command from arg list * @cmd: A pointer to the dynevent_cmd struct representing the new event + * @kretprobe: Is this a return probe? * @name: The name of the kprobe event * @loc: The location of the kprobe event - * @kretprobe: Is this a return probe? - * @args: Variable number of arg (pairs), one pair for each field + * @...: Variable number of arg (pairs), one pair for each field * * NOTE: Users normally won't want to call this function directly, but * rather use the kprobe_event_gen_cmd_start() wrapper, which automatically @@ -1018,7 +1018,7 @@ EXPORT_SYMBOL_GPL(__kprobe_event_gen_cmd_start); /** * __kprobe_event_add_fields - Add probe fields to a kprobe command from arg list * @cmd: A pointer to the dynevent_cmd struct representing the new event - * @args: Variable number of arg (pairs), one pair for each field + * @...: Variable number of arg (pairs), one pair for each field * * NOTE: Users normally won't want to call this function directly, but * rather use the kprobe_event_add_fields() wrapper, which diff --git a/kernel/trace/trace_uprobe.c b/kernel/trace/trace_uprobe.c index debc651015489..720b46b34ab94 100644 --- a/kernel/trace/trace_uprobe.c +++ b/kernel/trace/trace_uprobe.c @@ -1423,7 +1423,7 @@ static void uretprobe_perf_func(struct trace_uprobe *tu, unsigned long func, int bpf_get_uprobe_info(const struct perf_event *event, u32 *fd_type, const char **filename, u64 *probe_offset, - bool perf_type_tracepoint) + u64 *probe_addr, bool perf_type_tracepoint) { const char *pevent = trace_event_name(event->tp_event); const char *group = event->tp_event->class->system; @@ -1440,6 +1440,7 @@ int bpf_get_uprobe_info(const struct perf_event *event, u32 *fd_type, : BPF_FD_TYPE_UPROBE; *filename = tu->filename; *probe_offset = tu->offset; + *probe_addr = 0; return 0; } #endif /* CONFIG_PERF_EVENTS */ diff --git a/kernel/watch_queue.c b/kernel/watch_queue.c index 54cbaa9711398..ae31bf8d2feb1 100644 --- a/kernel/watch_queue.c +++ b/kernel/watch_queue.c @@ -338,7 +338,7 @@ long watch_queue_set_filter(struct pipe_inode_info *pipe, filter.__reserved != 0) return -EINVAL; - tf = memdup_user(_filter->filters, filter.nr_filters * sizeof(*tf)); + tf = memdup_array_user(_filter->filters, filter.nr_filters, sizeof(*tf)); if (IS_ERR(tf)) return PTR_ERR(tf); diff --git a/kernel/watchdog.c b/kernel/watchdog.c index 1cfa269bd4488..271a015d2b857 100644 --- a/kernel/watchdog.c +++ b/kernel/watchdog.c @@ -183,6 +183,13 @@ static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts); static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts_saved); static unsigned long soft_lockup_nmi_warn; +static int __init softlockup_panic_setup(char *str) +{ + softlockup_panic = simple_strtoul(str, NULL, 0); + return 1; +} +__setup("softlockup_panic=", softlockup_panic_setup); + static int __init nowatchdog_setup(char *str) { watchdog_user_enabled = 0; diff --git a/kernel/workqueue.c b/kernel/workqueue.c index 8e108c040cc35..d5f30b610217e 100644 --- a/kernel/workqueue.c +++ b/kernel/workqueue.c @@ -3277,6 +3277,15 @@ static bool __cancel_work(struct work_struct *work, bool is_dwork) return ret; } +/* + * See cancel_delayed_work() + */ +bool cancel_work(struct work_struct *work) +{ + return __cancel_work(work, false); +} +EXPORT_SYMBOL(cancel_work); + /** * cancel_delayed_work - cancel a delayed work * @dwork: delayed_work to cancel @@ -5209,50 +5218,54 @@ static void work_for_cpu_fn(struct work_struct *work) } /** - * work_on_cpu - run a function in thread context on a particular cpu + * work_on_cpu_key - run a function in thread context on a particular cpu * @cpu: the cpu to run on * @fn: the function to run * @arg: the function arg + * @key: The lock class key for lock debugging purposes * * It is up to the caller to ensure that the cpu doesn't go offline. * The caller must not hold any locks which would prevent @fn from completing. * * Return: The value @fn returns. */ -long work_on_cpu(int cpu, long (*fn)(void *), void *arg) +long work_on_cpu_key(int cpu, long (*fn)(void *), + void *arg, struct lock_class_key *key) { struct work_for_cpu wfc = { .fn = fn, .arg = arg }; - INIT_WORK_ONSTACK(&wfc.work, work_for_cpu_fn); + INIT_WORK_ONSTACK_KEY(&wfc.work, work_for_cpu_fn, key); schedule_work_on(cpu, &wfc.work); flush_work(&wfc.work); destroy_work_on_stack(&wfc.work); return wfc.ret; } -EXPORT_SYMBOL_GPL(work_on_cpu); +EXPORT_SYMBOL_GPL(work_on_cpu_key); /** - * work_on_cpu_safe - run a function in thread context on a particular cpu + * work_on_cpu_safe_key - run a function in thread context on a particular cpu * @cpu: the cpu to run on * @fn: the function to run * @arg: the function argument + * @key: The lock class key for lock debugging purposes * * Disables CPU hotplug and calls work_on_cpu(). The caller must not hold * any locks which would prevent @fn from completing. * * Return: The value @fn returns. */ -long work_on_cpu_safe(int cpu, long (*fn)(void *), void *arg) +long work_on_cpu_safe_key(int cpu, long (*fn)(void *), + void *arg, struct lock_class_key *key) { long ret = -ENODEV; cpus_read_lock(); if (cpu_online(cpu)) - ret = work_on_cpu(cpu, fn, arg); + ret = work_on_cpu_key(cpu, fn, arg, key); cpus_read_unlock(); return ret; } -EXPORT_SYMBOL_GPL(work_on_cpu_safe); +EXPORT_SYMBOL_GPL(work_on_cpu_safe_key); #endif /* CONFIG_SMP */ #ifdef CONFIG_FREEZER @@ -5379,9 +5392,13 @@ static int workqueue_apply_unbound_cpumask(void) list_for_each_entry(wq, &workqueues, list) { if (!(wq->flags & WQ_UNBOUND)) continue; + /* creating multiple pwqs breaks ordering guarantee */ - if (wq->flags & __WQ_ORDERED) - continue; + if (!list_empty(&wq->pwqs)) { + if (wq->flags & __WQ_ORDERED_EXPLICIT) + continue; + wq->flags &= ~__WQ_ORDERED; + } ctx = apply_wqattrs_prepare(wq, wq->unbound_attrs); if (!ctx) { diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index dbbd243c865f0..64d6292cf6864 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -1226,13 +1226,16 @@ config DEBUG_TIMEKEEPING config DEBUG_PREEMPT bool "Debug preemptible kernel" depends on DEBUG_KERNEL && PREEMPTION && TRACE_IRQFLAGS_SUPPORT - default y help If you say Y here then the kernel will use a debug variant of the commonly used smp_processor_id() function and will print warnings if kernel code uses it in a preemption-unsafe way. Also, the kernel will detect preemption count underflows. + This option has potential to introduce high runtime overhead, + depending on workload as it triggers debugging routines for each + this_cpu operation. It should only be used for debugging purposes. + menu "Lock Debugging (spinlocks, mutexes, etc...)" config LOCK_DEBUGGING_SUPPORT diff --git a/lib/errname.c b/lib/errname.c index 67739b174a8cc..0c336b0f12f60 100644 --- a/lib/errname.c +++ b/lib/errname.c @@ -111,9 +111,6 @@ static const char *names_0[] = { E(ENOSPC), E(ENOSR), E(ENOSTR), -#ifdef ENOSYM - E(ENOSYM), -#endif E(ENOSYS), E(ENOTBLK), E(ENOTCONN), @@ -144,9 +141,6 @@ static const char *names_0[] = { #endif E(EREMOTE), E(EREMOTEIO), -#ifdef EREMOTERELEASE - E(EREMOTERELEASE), -#endif E(ERESTART), E(ERFKILL), E(EROFS), diff --git a/lib/idr.c b/lib/idr.c index 7ecdfdb5309e7..da36054c3ca02 100644 --- a/lib/idr.c +++ b/lib/idr.c @@ -100,7 +100,7 @@ EXPORT_SYMBOL_GPL(idr_alloc); * @end: The maximum ID (exclusive). * @gfp: Memory allocation flags. * - * Allocates an unused ID in the range specified by @nextid and @end. If + * Allocates an unused ID in the range specified by @start and @end. If * @end is <= 0, it is treated as one larger than %INT_MAX. This allows * callers to use @start + N as @end as long as N is within integer range. * The search for an unused ID will start at the last ID allocated and will @@ -508,7 +508,7 @@ void ida_free(struct ida *ida, unsigned int id) goto delete; xas_store(&xas, xa_mk_value(v)); } else { - if (!test_bit(bit, bitmap->bitmap)) + if (!bitmap || !test_bit(bit, bitmap->bitmap)) goto err; __clear_bit(bit, bitmap->bitmap); xas_set_mark(&xas, XA_FREE_MARK); diff --git a/lib/kobject.c b/lib/kobject.c index 184a3dab26991..b6ccb4cced635 100644 --- a/lib/kobject.c +++ b/lib/kobject.c @@ -882,6 +882,11 @@ int kset_register(struct kset *k) if (!k) return -EINVAL; + if (!k->kobj.ktype) { + pr_err("must have a ktype to be initialized properly!\n"); + return -EINVAL; + } + kset_init(k); err = kobject_add_internal(&k->kobj); if (err) diff --git a/lib/mpi/mpi-cmp.c b/lib/mpi/mpi-cmp.c index c4cfa3ff05818..0835b6213235e 100644 --- a/lib/mpi/mpi-cmp.c +++ b/lib/mpi/mpi-cmp.c @@ -25,8 +25,12 @@ int mpi_cmp_ui(MPI u, unsigned long v) mpi_limb_t limb = v; mpi_normalize(u); - if (!u->nlimbs && !limb) - return 0; + if (u->nlimbs == 0) { + if (v == 0) + return 0; + else + return -1; + } if (u->sign) return -1; if (u->nlimbs > 1) diff --git a/lib/test_ida.c b/lib/test_ida.c index b068806259615..55105baa19da9 100644 --- a/lib/test_ida.c +++ b/lib/test_ida.c @@ -150,6 +150,45 @@ static void ida_check_conv(struct ida *ida) IDA_BUG_ON(ida, !ida_is_empty(ida)); } +/* + * Check various situations where we attempt to free an ID we don't own. + */ +static void ida_check_bad_free(struct ida *ida) +{ + unsigned long i; + + printk("vvv Ignore \"not allocated\" warnings\n"); + /* IDA is empty; all of these will fail */ + ida_free(ida, 0); + for (i = 0; i < 31; i++) + ida_free(ida, 1 << i); + + /* IDA contains a single value entry */ + IDA_BUG_ON(ida, ida_alloc_min(ida, 3, GFP_KERNEL) != 3); + ida_free(ida, 0); + for (i = 0; i < 31; i++) + ida_free(ida, 1 << i); + + /* IDA contains a single bitmap */ + IDA_BUG_ON(ida, ida_alloc_min(ida, 1023, GFP_KERNEL) != 1023); + ida_free(ida, 0); + for (i = 0; i < 31; i++) + ida_free(ida, 1 << i); + + /* IDA contains a tree */ + IDA_BUG_ON(ida, ida_alloc_min(ida, (1 << 20) - 1, GFP_KERNEL) != (1 << 20) - 1); + ida_free(ida, 0); + for (i = 0; i < 31; i++) + ida_free(ida, 1 << i); + printk("^^^ \"not allocated\" warnings over\n"); + + ida_free(ida, 3); + ida_free(ida, 1023); + ida_free(ida, (1 << 20) - 1); + + IDA_BUG_ON(ida, !ida_is_empty(ida)); +} + static DEFINE_IDA(ida); static int ida_checks(void) @@ -162,6 +201,7 @@ static int ida_checks(void) ida_check_leaf(&ida, 1024 * 64); ida_check_max(&ida); ida_check_conv(&ida); + ida_check_bad_free(&ida); printk("IDA: %u of %u tests passed\n", tests_passed, tests_run); return (tests_run != tests_passed) ? 0 : -EINVAL; diff --git a/lib/test_meminit.c b/lib/test_meminit.c index 3ca717f113977..0f1a3bd09b7b5 100644 --- a/lib/test_meminit.c +++ b/lib/test_meminit.c @@ -86,7 +86,7 @@ static int __init test_pages(int *total_failures) int failures = 0, num_tests = 0; int i; - for (i = 0; i < 10; i++) + for (i = 0; i < MAX_ORDER; i++) num_tests += do_alloc_pages_order(i, &failures); REPORT_FAILURES_IN_FN(); diff --git a/lib/test_scanf.c b/lib/test_scanf.c index b620cf7de5035..a2707af2951ab 100644 --- a/lib/test_scanf.c +++ b/lib/test_scanf.c @@ -606,7 +606,7 @@ static void __init numbers_slice(void) #define test_number_prefix(T, str, scan_fmt, expect0, expect1, n_args, fn) \ do { \ const T expect[2] = { expect0, expect1 }; \ - T result[2] = {~expect[0], ~expect[1]}; \ + T result[2] = { (T)~expect[0], (T)~expect[1] }; \ \ _test(fn, &expect, str, scan_fmt, n_args, &result[0], &result[1]); \ } while (0) diff --git a/mm/cma.c b/mm/cma.c index a972c3440c404..26967c70e9c73 100644 --- a/mm/cma.c +++ b/mm/cma.c @@ -503,7 +503,7 @@ struct page *cma_alloc(struct cma *cma, unsigned long count, */ if (page) { for (i = 0; i < count; i++) - page_kasan_tag_reset(page + i); + page_kasan_tag_reset(nth_page(page, i)); } if (ret && !no_warn) { diff --git a/mm/filemap.c b/mm/filemap.c index 225ba44c7b8e1..8d920e6da6764 100644 --- a/mm/filemap.c +++ b/mm/filemap.c @@ -3209,7 +3209,7 @@ static bool filemap_map_pmd(struct vm_fault *vmf, struct page *page) } } - if (pmd_none(*vmf->pmd)) { + if (pmd_none(*vmf->pmd) && vmf->prealloc_pte) { vmf->ptl = pmd_lock(mm, vmf->pmd); if (likely(pmd_none(*vmf->pmd))) { mm_inc_nr_ptes(mm); diff --git a/mm/kasan/report.c b/mm/kasan/report.c index 887af873733bc..1c929d964dde5 100644 --- a/mm/kasan/report.c +++ b/mm/kasan/report.c @@ -457,9 +457,8 @@ bool kasan_report(unsigned long addr, size_t size, bool is_write, return ret; } -#ifdef CONFIG_KASAN_INLINE /* - * With CONFIG_KASAN_INLINE, accesses to bogus pointers (outside the high + * With CONFIG_KASAN, accesses to bogus pointers (outside the high * canonical half of the address space) cause out-of-bounds shadow memory reads * before the actual access. For addresses in the low canonical half of the * address space, as well as most non-canonical addresses, that out-of-bounds @@ -495,4 +494,3 @@ void kasan_non_canonical_hook(unsigned long addr) pr_alert("KASAN: %s in range [0x%016lx-0x%016lx]\n", bug_type, orig_addr, orig_addr + KASAN_GRANULE_SIZE - 1); } -#endif diff --git a/mm/memcontrol.c b/mm/memcontrol.c index b68b2fe639fdd..6f969ba0d6888 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c @@ -2822,7 +2822,8 @@ static struct mem_cgroup *get_mem_cgroup_from_objcg(struct obj_cgroup *objcg) * Moreover, it should not come from DMA buffer and is not readily * reclaimable. So those GFP bits should be masked off. */ -#define OBJCGS_CLEAR_MASK (__GFP_DMA | __GFP_RECLAIMABLE | __GFP_ACCOUNT) +#define OBJCGS_CLEAR_MASK (__GFP_DMA | __GFP_RECLAIMABLE | \ + __GFP_ACCOUNT | __GFP_NOFAIL) int memcg_alloc_page_obj_cgroups(struct page *page, struct kmem_cache *s, gfp_t gfp, bool new_page) diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c index 81f2a97c886c9..bf611c55fc66b 100644 --- a/mm/memory_hotplug.c +++ b/mm/memory_hotplug.c @@ -1677,7 +1677,7 @@ static int scan_movable_pages(unsigned long start, unsigned long end, */ if (HPageMigratable(head)) goto found; - skip = compound_nr(head) - (page - head); + skip = compound_nr(head) - (pfn - page_to_pfn(head)); pfn += skip - 1; } return -ENOENT; diff --git a/mm/migrate.c b/mm/migrate.c index dd50b1cc089e0..c7d5566623add 100644 --- a/mm/migrate.c +++ b/mm/migrate.c @@ -1788,6 +1788,7 @@ static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes, const int __user *nodes, int __user *status, int flags) { + compat_uptr_t __user *compat_pages = (void __user *)pages; int current_node = NUMA_NO_NODE; LIST_HEAD(pagelist); int start, i; @@ -1801,8 +1802,17 @@ static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes, int node; err = -EFAULT; - if (get_user(p, pages + i)) - goto out_flush; + if (in_compat_syscall()) { + compat_uptr_t cp; + + if (get_user(cp, compat_pages + i)) + goto out_flush; + + p = compat_ptr(cp); + } else { + if (get_user(p, pages + i)) + goto out_flush; + } if (get_user(node, nodes + i)) goto out_flush; addr = (unsigned long)untagged_addr(p); diff --git a/mm/page_alloc.c b/mm/page_alloc.c index f320ee2bd34a7..ec3333a1f7fe0 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -9481,6 +9481,7 @@ static void break_down_buddy_pages(struct zone *zone, struct page *page, next_page = page; current_buddy = page + size; } + page = next_page; if (set_page_guard(zone, current_buddy, high, migratetype)) continue; @@ -9488,7 +9489,6 @@ static void break_down_buddy_pages(struct zone *zone, struct page *page, if (current_buddy != target) { add_to_free_list(current_buddy, zone, high, migratetype); set_buddy_order(current_buddy, high); - page = next_page; } } } diff --git a/mm/readahead.c b/mm/readahead.c index 41b75d76d36e1..a8f7e4e550f43 100644 --- a/mm/readahead.c +++ b/mm/readahead.c @@ -627,7 +627,8 @@ ssize_t ksys_readahead(int fd, loff_t offset, size_t count) */ ret = -EINVAL; if (!f.file->f_mapping || !f.file->f_mapping->a_ops || - !S_ISREG(file_inode(f.file)->i_mode)) + (!S_ISREG(file_inode(f.file)->i_mode) && + !S_ISBLK(file_inode(f.file)->i_mode))) goto out; ret = vfs_fadvise(f.file, offset, count, POSIX_FADV_WILLNEED); diff --git a/mm/shmem.c b/mm/shmem.c index 65c9eca227e01..297b575d1ef3f 100644 --- a/mm/shmem.c +++ b/mm/shmem.c @@ -3394,6 +3394,8 @@ static int shmem_parse_one(struct fs_context *fc, struct fs_parameter *param) unsigned long long size; char *rest; int opt; + kuid_t kuid; + kgid_t kgid; opt = fs_parse(fc, shmem_fs_parameters, param, &result); if (opt < 0) @@ -3429,14 +3431,32 @@ static int shmem_parse_one(struct fs_context *fc, struct fs_parameter *param) ctx->mode = result.uint_32 & 07777; break; case Opt_uid: - ctx->uid = make_kuid(current_user_ns(), result.uint_32); - if (!uid_valid(ctx->uid)) + kuid = make_kuid(current_user_ns(), result.uint_32); + if (!uid_valid(kuid)) goto bad_value; + + /* + * The requested uid must be representable in the + * filesystem's idmapping. + */ + if (!kuid_has_mapping(fc->user_ns, kuid)) + goto bad_value; + + ctx->uid = kuid; break; case Opt_gid: - ctx->gid = make_kgid(current_user_ns(), result.uint_32); - if (!gid_valid(ctx->gid)) + kgid = make_kgid(current_user_ns(), result.uint_32); + if (!gid_valid(kgid)) goto bad_value; + + /* + * The requested gid must be representable in the + * filesystem's idmapping. + */ + if (!kgid_has_mapping(fc->user_ns, kgid)) + goto bad_value; + + ctx->gid = kgid; break; case Opt_huge: ctx->huge = result.uint_32; diff --git a/mm/util.c b/mm/util.c index ea04979f131e2..e89ef15085de7 100644 --- a/mm/util.c +++ b/mm/util.c @@ -1110,7 +1110,9 @@ void mem_dump_obj(void *object) if (vmalloc_dump_obj(object)) return; - if (virt_addr_valid(object)) + if (is_vmalloc_addr(object)) + type = "vmalloc memory"; + else if (virt_addr_valid(object)) type = "non-slab/vmalloc memory"; else if (object == NULL) type = "NULL pointer"; diff --git a/mm/vmalloc.c b/mm/vmalloc.c index d7db7ce9da271..cc03b0caccad8 100644 --- a/mm/vmalloc.c +++ b/mm/vmalloc.c @@ -3824,14 +3824,32 @@ void pcpu_free_vm_areas(struct vm_struct **vms, int nr_vms) #ifdef CONFIG_PRINTK bool vmalloc_dump_obj(void *object) { - struct vm_struct *vm; void *objp = (void *)PAGE_ALIGN((unsigned long)object); + const void *caller; + struct vm_struct *vm; + struct vmap_area *va; + unsigned long addr; + unsigned int nr_pages; + + if (!spin_trylock(&vmap_area_lock)) + return false; + va = __find_vmap_area((unsigned long)objp); + if (!va) { + spin_unlock(&vmap_area_lock); + return false; + } - vm = find_vm_area(objp); - if (!vm) + vm = va->vm; + if (!vm) { + spin_unlock(&vmap_area_lock); return false; + } + addr = (unsigned long)vm->addr; + caller = vm->caller; + nr_pages = vm->nr_pages; + spin_unlock(&vmap_area_lock); pr_cont(" %u-page vmalloc region starting at %#lx allocated at %pS\n", - vm->nr_pages, (unsigned long)vm->addr, vm->caller); + nr_pages, addr, caller); return true; } #endif diff --git a/mm/vmpressure.c b/mm/vmpressure.c index 76518e4166dc9..383e0463c0258 100644 --- a/mm/vmpressure.c +++ b/mm/vmpressure.c @@ -244,6 +244,14 @@ void vmpressure(gfp_t gfp, struct mem_cgroup *memcg, bool tree, if (mem_cgroup_disabled()) return; + /* + * The in-kernel users only care about the reclaim efficiency + * for this @memcg rather than the whole subtree, and there + * isn't and won't be any in-kernel user in a legacy cgroup. + */ + if (!cgroup_subsys_on_dfl(memory_cgrp_subsys) && !tree) + return; + vmpr = memcg_to_vmpressure(memcg); /* diff --git a/net/8021q/vlan.h b/net/8021q/vlan.h index 1a705a4ef7fa8..5eaf38875554b 100644 --- a/net/8021q/vlan.h +++ b/net/8021q/vlan.h @@ -129,6 +129,7 @@ void vlan_dev_set_ingress_priority(const struct net_device *dev, u32 skb_prio, u16 vlan_prio); int vlan_dev_set_egress_priority(const struct net_device *dev, u32 skb_prio, u16 vlan_prio); +void vlan_dev_free_egress_priority(const struct net_device *dev); int vlan_dev_change_flags(const struct net_device *dev, u32 flag, u32 mask); void vlan_dev_get_realdev_name(const struct net_device *dev, char *result, size_t size); @@ -139,7 +140,6 @@ int vlan_check_real_dev(struct net_device *real_dev, void vlan_setup(struct net_device *dev); int register_vlan_dev(struct net_device *dev, struct netlink_ext_ack *extack); void unregister_vlan_dev(struct net_device *dev, struct list_head *head); -void vlan_dev_uninit(struct net_device *dev); bool vlan_dev_inherit_address(struct net_device *dev, struct net_device *real_dev); diff --git a/net/8021q/vlan_dev.c b/net/8021q/vlan_dev.c index 3d0f0d0a323b5..ad2d3ad34b7d7 100644 --- a/net/8021q/vlan_dev.c +++ b/net/8021q/vlan_dev.c @@ -622,7 +622,7 @@ static int vlan_dev_init(struct net_device *dev) } /* Note: this function might be called multiple times for the same device. */ -void vlan_dev_uninit(struct net_device *dev) +void vlan_dev_free_egress_priority(const struct net_device *dev) { struct vlan_priority_tci_mapping *pm; struct vlan_dev_priv *vlan = vlan_dev_priv(dev); @@ -636,6 +636,16 @@ void vlan_dev_uninit(struct net_device *dev) } } +static void vlan_dev_uninit(struct net_device *dev) +{ + struct vlan_dev_priv *vlan = vlan_dev_priv(dev); + + vlan_dev_free_egress_priority(dev); + + /* Get rid of the vlan's reference to real_dev */ + dev_put(vlan->real_dev); +} + static netdev_features_t vlan_dev_fix_features(struct net_device *dev, netdev_features_t features) { @@ -846,9 +856,6 @@ static void vlan_dev_free(struct net_device *dev) free_percpu(vlan->vlan_pcpu_stats); vlan->vlan_pcpu_stats = NULL; - - /* Get rid of the vlan's reference to real_dev */ - dev_put(vlan->real_dev); } void vlan_setup(struct net_device *dev) diff --git a/net/8021q/vlan_netlink.c b/net/8021q/vlan_netlink.c index 0db85aeb119b8..53b1955b027f8 100644 --- a/net/8021q/vlan_netlink.c +++ b/net/8021q/vlan_netlink.c @@ -183,10 +183,11 @@ static int vlan_newlink(struct net *src_net, struct net_device *dev, return -EINVAL; err = vlan_changelink(dev, tb, data, extack); - if (!err) - err = register_vlan_dev(dev, extack); if (err) - vlan_dev_uninit(dev); + return err; + err = register_vlan_dev(dev, extack); + if (err) + vlan_dev_free_egress_priority(dev); return err; } diff --git a/net/9p/client.c b/net/9p/client.c index c4c1e44cd7ca3..ead458486fdcf 100644 --- a/net/9p/client.c +++ b/net/9p/client.c @@ -520,12 +520,14 @@ static int p9_check_errors(struct p9_client *c, struct p9_req_t *req) return 0; if (!p9_is_proto_dotl(c)) { - char *ename; + char *ename = NULL; err = p9pdu_readf(&req->rc, c->proto_version, "s?d", &ename, &ecode); - if (err) + if (err) { + kfree(ename); goto out_err; + } if (p9_is_proto_dotu(c) && ecode < 512) err = -ecode; @@ -2018,7 +2020,7 @@ struct p9_fid *p9_client_xattrwalk(struct p9_fid *file_fid, goto error; } p9_debug(P9_DEBUG_9P, - ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n", + ">>> TXATTRWALK file_fid %d, attr_fid %d name '%s'\n", file_fid->fid, attr_fid->fid, attr_name); req = p9_client_rpc(clnt, P9_TXATTRWALK, "dds", diff --git a/net/9p/trans_fd.c b/net/9p/trans_fd.c index f359cfdc1858f..b44b77d3b35d1 100644 --- a/net/9p/trans_fd.c +++ b/net/9p/trans_fd.c @@ -835,14 +835,21 @@ static int p9_fd_open(struct p9_client *client, int rfd, int wfd) goto out_free_ts; if (!(ts->rd->f_mode & FMODE_READ)) goto out_put_rd; - /* prevent workers from hanging on IO when fd is a pipe */ - ts->rd->f_flags |= O_NONBLOCK; + /* Prevent workers from hanging on IO when fd is a pipe. + * It's technically possible for userspace or concurrent mounts to + * modify this flag concurrently, which will likely result in a + * broken filesystem. However, just having bad flags here should + * not crash the kernel or cause any other sort of bug, so mark this + * particular data race as intentional so that tooling (like KCSAN) + * can allow it and detect further problems. + */ + data_race(ts->rd->f_flags |= O_NONBLOCK); ts->wr = fget(wfd); if (!ts->wr) goto out_put_rd; if (!(ts->wr->f_mode & FMODE_WRITE)) goto out_put_wr; - ts->wr->f_flags |= O_NONBLOCK; + data_race(ts->wr->f_flags |= O_NONBLOCK); client->trans = ts; client->status = Connected; diff --git a/net/9p/trans_virtio.c b/net/9p/trans_virtio.c index d110df3cb4e1d..96eecc2dcaa36 100644 --- a/net/9p/trans_virtio.c +++ b/net/9p/trans_virtio.c @@ -399,7 +399,7 @@ p9_virtio_zc_request(struct p9_client *client, struct p9_req_t *req, struct page **in_pages = NULL, **out_pages = NULL; struct virtio_chan *chan = client->trans; struct scatterlist *sgs[4]; - size_t offs; + size_t offs = 0; int need_drop = 0; int kicked = 0; diff --git a/net/appletalk/ddp.c b/net/appletalk/ddp.c index bf5736c1d4584..8daa3a1bfa4cd 100644 --- a/net/appletalk/ddp.c +++ b/net/appletalk/ddp.c @@ -1812,15 +1812,14 @@ static int atalk_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) break; } case TIOCINQ: { - /* - * These two are safe on a single CPU system as only - * user tasks fiddle here - */ - struct sk_buff *skb = skb_peek(&sk->sk_receive_queue); + struct sk_buff *skb; long amount = 0; + spin_lock_irq(&sk->sk_receive_queue.lock); + skb = skb_peek(&sk->sk_receive_queue); if (skb) amount = skb->len - sizeof(struct ddpehdr); + spin_unlock_irq(&sk->sk_receive_queue.lock); rc = put_user(amount, (int __user *)argp); break; } diff --git a/net/atm/ioctl.c b/net/atm/ioctl.c index 838ebf0cabbfb..f81f8d56f5c0c 100644 --- a/net/atm/ioctl.c +++ b/net/atm/ioctl.c @@ -73,14 +73,17 @@ static int do_vcc_ioctl(struct socket *sock, unsigned int cmd, case SIOCINQ: { struct sk_buff *skb; + int amount; if (sock->state != SS_CONNECTED) { error = -EINVAL; goto done; } + spin_lock_irq(&sk->sk_receive_queue.lock); skb = skb_peek(&sk->sk_receive_queue); - error = put_user(skb ? skb->len : 0, - (int __user *)argp) ? -EFAULT : 0; + amount = skb ? skb->len : 0; + spin_unlock_irq(&sk->sk_receive_queue.lock); + error = put_user(amount, (int __user *)argp) ? -EFAULT : 0; goto done; } case ATM_SETSC: diff --git a/net/bluetooth/af_bluetooth.c b/net/bluetooth/af_bluetooth.c index ce744b14d1a98..b7498e890f0b0 100644 --- a/net/bluetooth/af_bluetooth.c +++ b/net/bluetooth/af_bluetooth.c @@ -263,11 +263,14 @@ int bt_sock_recvmsg(struct socket *sock, struct msghdr *msg, size_t len, if (flags & MSG_OOB) return -EOPNOTSUPP; + lock_sock(sk); + skb = skb_recv_datagram(sk, flags, noblock, &err); if (!skb) { if (sk->sk_shutdown & RCV_SHUTDOWN) - return 0; + err = 0; + release_sock(sk); return err; } @@ -293,6 +296,8 @@ int bt_sock_recvmsg(struct socket *sock, struct msghdr *msg, size_t len, skb_free_datagram(sk, skb); + release_sock(sk); + if (flags & MSG_TRUNC) copied = skblen; diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c index 7a7e92be1652c..ce538dbe89d13 100644 --- a/net/bluetooth/hci_conn.c +++ b/net/bluetooth/hci_conn.c @@ -135,13 +135,11 @@ static void hci_conn_cleanup(struct hci_conn *conn) hdev->notify(hdev, HCI_NOTIFY_CONN_DEL); } - hci_conn_del_sysfs(conn); - debugfs_remove_recursive(conn->debugfs); - hci_dev_put(hdev); + hci_conn_del_sysfs(conn); - hci_conn_put(conn); + hci_dev_put(hdev); } static void le_scan_cleanup(struct work_struct *work) @@ -1300,6 +1298,15 @@ struct hci_conn *hci_connect_acl(struct hci_dev *hdev, bdaddr_t *dst, return ERR_PTR(-EOPNOTSUPP); } + /* Reject outgoing connection to device with same BD ADDR against + * CVE-2020-26555 + */ + if (!bacmp(&hdev->bdaddr, dst)) { + bt_dev_dbg(hdev, "Reject connection with same BD_ADDR %pMR\n", + dst); + return ERR_PTR(-ECONNREFUSED); + } + acl = hci_conn_hash_lookup_ba(hdev, ACL_LINK, dst); if (!acl) { acl = hci_conn_add(hdev, ACL_LINK, dst, HCI_ROLE_MASTER); @@ -1477,34 +1484,41 @@ int hci_conn_security(struct hci_conn *conn, __u8 sec_level, __u8 auth_type, if (!test_bit(HCI_CONN_AUTH, &conn->flags)) goto auth; - /* An authenticated FIPS approved combination key has sufficient - * security for security level 4. */ - if (conn->key_type == HCI_LK_AUTH_COMBINATION_P256 && - sec_level == BT_SECURITY_FIPS) - goto encrypt; - - /* An authenticated combination key has sufficient security for - security level 3. */ - if ((conn->key_type == HCI_LK_AUTH_COMBINATION_P192 || - conn->key_type == HCI_LK_AUTH_COMBINATION_P256) && - sec_level == BT_SECURITY_HIGH) - goto encrypt; - - /* An unauthenticated combination key has sufficient security for - security level 1 and 2. */ - if ((conn->key_type == HCI_LK_UNAUTH_COMBINATION_P192 || - conn->key_type == HCI_LK_UNAUTH_COMBINATION_P256) && - (sec_level == BT_SECURITY_MEDIUM || sec_level == BT_SECURITY_LOW)) - goto encrypt; - - /* A combination key has always sufficient security for the security - levels 1 or 2. High security level requires the combination key - is generated using maximum PIN code length (16). - For pre 2.1 units. */ - if (conn->key_type == HCI_LK_COMBINATION && - (sec_level == BT_SECURITY_MEDIUM || sec_level == BT_SECURITY_LOW || - conn->pin_length == 16)) - goto encrypt; + switch (conn->key_type) { + case HCI_LK_AUTH_COMBINATION_P256: + /* An authenticated FIPS approved combination key has + * sufficient security for security level 4 or lower. + */ + if (sec_level <= BT_SECURITY_FIPS) + goto encrypt; + break; + case HCI_LK_AUTH_COMBINATION_P192: + /* An authenticated combination key has sufficient security for + * security level 3 or lower. + */ + if (sec_level <= BT_SECURITY_HIGH) + goto encrypt; + break; + case HCI_LK_UNAUTH_COMBINATION_P192: + case HCI_LK_UNAUTH_COMBINATION_P256: + /* An unauthenticated combination key has sufficient security + * for security level 2 or lower. + */ + if (sec_level <= BT_SECURITY_MEDIUM) + goto encrypt; + break; + case HCI_LK_COMBINATION: + /* A combination key has always sufficient security for the + * security levels 2 or lower. High security level requires the + * combination key is generated using maximum PIN code length + * (16). For pre 2.1 units. + */ + if (sec_level <= BT_SECURITY_MEDIUM || conn->pin_length == 16) + goto encrypt; + break; + default: + break; + } auth: if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags)) diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index 682a09e7fea66..b3b597960c562 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c @@ -2355,9 +2355,9 @@ void hci_uuids_clear(struct hci_dev *hdev) void hci_link_keys_clear(struct hci_dev *hdev) { - struct link_key *key; + struct link_key *key, *tmp; - list_for_each_entry(key, &hdev->link_keys, list) { + list_for_each_entry_safe(key, tmp, &hdev->link_keys, list) { list_del_rcu(&key->list); kfree_rcu(key, rcu); } @@ -2365,9 +2365,9 @@ void hci_link_keys_clear(struct hci_dev *hdev) void hci_smp_ltks_clear(struct hci_dev *hdev) { - struct smp_ltk *k; + struct smp_ltk *k, *tmp; - list_for_each_entry(k, &hdev->long_term_keys, list) { + list_for_each_entry_safe(k, tmp, &hdev->long_term_keys, list) { list_del_rcu(&k->list); kfree_rcu(k, rcu); } @@ -2375,9 +2375,9 @@ void hci_smp_ltks_clear(struct hci_dev *hdev) void hci_smp_irks_clear(struct hci_dev *hdev) { - struct smp_irk *k; + struct smp_irk *k, *tmp; - list_for_each_entry(k, &hdev->identity_resolving_keys, list) { + list_for_each_entry_safe(k, tmp, &hdev->identity_resolving_keys, list) { list_del_rcu(&k->list); kfree_rcu(k, rcu); } @@ -2385,9 +2385,9 @@ void hci_smp_irks_clear(struct hci_dev *hdev) void hci_blocked_keys_clear(struct hci_dev *hdev) { - struct blocked_key *b; + struct blocked_key *b, *tmp; - list_for_each_entry(b, &hdev->blocked_keys, list) { + list_for_each_entry_safe(b, tmp, &hdev->blocked_keys, list) { list_del_rcu(&b->list); kfree_rcu(b, rcu); } @@ -3920,7 +3920,11 @@ int hci_register_dev(struct hci_dev *hdev) if (id < 0) return id; - snprintf(hdev->name, sizeof(hdev->name), "hci%d", id); + error = dev_set_name(&hdev->dev, "hci%u", id); + if (error) + return error; + + hdev->name = dev_name(&hdev->dev); hdev->id = id; BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus); @@ -3942,8 +3946,6 @@ int hci_register_dev(struct hci_dev *hdev) if (!IS_ERR_OR_NULL(bt_debugfs)) hdev->debugfs = debugfs_create_dir(hdev->name, bt_debugfs); - dev_set_name(&hdev->dev, "%s", hdev->name); - error = device_add(&hdev->dev); if (error < 0) goto err_wqueue; diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index 9f82fe0e62708..1dd65f13f8930 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -25,6 +25,8 @@ /* Bluetooth HCI event handling. */ #include +#include +#include #include #include @@ -2794,6 +2796,16 @@ static void hci_conn_request_evt(struct hci_dev *hdev, struct sk_buff *skb) BT_DBG("%s bdaddr %pMR type 0x%x", hdev->name, &ev->bdaddr, ev->link_type); + /* Reject incoming connection from device with same BD ADDR against + * CVE-2020-26555 + */ + if (hdev && !bacmp(&hdev->bdaddr, &ev->bdaddr)) { + bt_dev_dbg(hdev, "Reject connection with same BD_ADDR %pMR\n", + &ev->bdaddr); + hci_reject_conn(hdev, &ev->bdaddr); + return; + } + mask |= hci_proto_connect_ind(hdev, &ev->bdaddr, ev->link_type, &flags); @@ -4173,6 +4185,15 @@ static void hci_link_key_notify_evt(struct hci_dev *hdev, struct sk_buff *skb) if (!conn) goto unlock; + /* Ignore NULL link key against CVE-2020-26555 */ + if (!crypto_memneq(ev->link_key, ZERO_KEY, HCI_LINK_KEY_SIZE)) { + bt_dev_dbg(hdev, "Ignore NULL link key (ZERO KEY) for %pMR", + &ev->bdaddr); + hci_disconnect(conn, HCI_ERROR_AUTH_FAILURE); + hci_conn_drop(conn); + goto unlock; + } + hci_conn_hold(conn); conn->disc_timeout = HCI_DISCONN_TIMEOUT; hci_conn_drop(conn); @@ -4677,8 +4698,8 @@ static u8 bredr_oob_data_present(struct hci_conn *conn) * available, then do not declare that OOB data is * present. */ - if (!memcmp(data->rand256, ZERO_KEY, 16) || - !memcmp(data->hash256, ZERO_KEY, 16)) + if (!crypto_memneq(data->rand256, ZERO_KEY, 16) || + !crypto_memneq(data->hash256, ZERO_KEY, 16)) return 0x00; return 0x02; @@ -4688,8 +4709,8 @@ static u8 bredr_oob_data_present(struct hci_conn *conn) * not supported by the hardware, then check that if * P-192 data values are present. */ - if (!memcmp(data->rand192, ZERO_KEY, 16) || - !memcmp(data->hash192, ZERO_KEY, 16)) + if (!crypto_memneq(data->rand192, ZERO_KEY, 16) || + !crypto_memneq(data->hash192, ZERO_KEY, 16)) return 0x00; return 0x01; @@ -4705,7 +4726,7 @@ static void hci_io_capa_request_evt(struct hci_dev *hdev, struct sk_buff *skb) hci_dev_lock(hdev); conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr); - if (!conn) + if (!conn || !hci_conn_ssp_enabled(conn)) goto unlock; hci_conn_hold(conn); @@ -4950,7 +4971,7 @@ static void hci_simple_pair_complete_evt(struct hci_dev *hdev, hci_dev_lock(hdev); conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr); - if (!conn) + if (!conn || !hci_conn_ssp_enabled(conn)) goto unlock; /* Reset the authentication requirement to unknown */ diff --git a/net/bluetooth/hci_sock.c b/net/bluetooth/hci_sock.c index 315f9ad3dc4d4..28222c7c098e0 100644 --- a/net/bluetooth/hci_sock.c +++ b/net/bluetooth/hci_sock.c @@ -438,7 +438,8 @@ static struct sk_buff *create_monitor_event(struct hci_dev *hdev, int event) ni->type = hdev->dev_type; ni->bus = hdev->bus; bacpy(&ni->bdaddr, &hdev->bdaddr); - memcpy(ni->name, hdev->name, 8); + memcpy_and_pad(ni->name, sizeof(ni->name), hdev->name, + strnlen(hdev->name, sizeof(ni->name)), '\0'); opcode = cpu_to_le16(HCI_MON_NEW_INDEX); break; diff --git a/net/bluetooth/hci_sysfs.c b/net/bluetooth/hci_sysfs.c index 08542dfc2dc53..633b82d542728 100644 --- a/net/bluetooth/hci_sysfs.c +++ b/net/bluetooth/hci_sysfs.c @@ -33,7 +33,7 @@ void hci_conn_init_sysfs(struct hci_conn *conn) { struct hci_dev *hdev = conn->hdev; - BT_DBG("conn %p", conn); + bt_dev_dbg(hdev, "conn %p", conn); conn->dev.type = &bt_link; conn->dev.class = bt_class; @@ -46,27 +46,30 @@ void hci_conn_add_sysfs(struct hci_conn *conn) { struct hci_dev *hdev = conn->hdev; - BT_DBG("conn %p", conn); + bt_dev_dbg(hdev, "conn %p", conn); if (device_is_registered(&conn->dev)) return; dev_set_name(&conn->dev, "%s:%d", hdev->name, conn->handle); - if (device_add(&conn->dev) < 0) { + if (device_add(&conn->dev) < 0) bt_dev_err(hdev, "failed to register connection device"); - return; - } - - hci_dev_hold(hdev); } void hci_conn_del_sysfs(struct hci_conn *conn) { struct hci_dev *hdev = conn->hdev; - if (!device_is_registered(&conn->dev)) + bt_dev_dbg(hdev, "conn %p", conn); + + if (!device_is_registered(&conn->dev)) { + /* If device_add() has *not* succeeded, use *only* put_device() + * to drop the reference count. + */ + put_device(&conn->dev); return; + } while (1) { struct device *dev; @@ -78,9 +81,7 @@ void hci_conn_del_sysfs(struct hci_conn *conn) put_device(dev); } - device_del(&conn->dev); - - hci_dev_put(hdev); + device_unregister(&conn->dev); } static void bt_host_release(struct device *dev) diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index 0770286ecf0bc..9f3596de90a7f 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c @@ -6493,6 +6493,14 @@ static inline void l2cap_le_sig_channel(struct l2cap_conn *conn, kfree_skb(skb); } +static inline void l2cap_sig_send_rej(struct l2cap_conn *conn, u16 ident) +{ + struct l2cap_cmd_rej_unk rej; + + rej.reason = cpu_to_le16(L2CAP_REJ_NOT_UNDERSTOOD); + l2cap_send_cmd(conn, ident, L2CAP_COMMAND_REJ, sizeof(rej), &rej); +} + static inline void l2cap_sig_channel(struct l2cap_conn *conn, struct sk_buff *skb) { @@ -6518,23 +6526,24 @@ static inline void l2cap_sig_channel(struct l2cap_conn *conn, if (len > skb->len || !cmd->ident) { BT_DBG("corrupted command"); + l2cap_sig_send_rej(conn, cmd->ident); break; } err = l2cap_bredr_sig_cmd(conn, cmd, len, skb->data); if (err) { - struct l2cap_cmd_rej_unk rej; - BT_ERR("Wrong link type (%d)", err); - - rej.reason = cpu_to_le16(L2CAP_REJ_NOT_UNDERSTOOD); - l2cap_send_cmd(conn, cmd->ident, L2CAP_COMMAND_REJ, - sizeof(rej), &rej); + l2cap_sig_send_rej(conn, cmd->ident); } skb_pull(skb, len); } + if (skb->len > 0) { + BT_DBG("corrupted command"); + l2cap_sig_send_rej(conn, 0); + } + drop: kfree_skb(skb); } diff --git a/net/bridge/br_forward.c b/net/bridge/br_forward.c index 3d69ad5463a9f..011bd3c59da19 100644 --- a/net/bridge/br_forward.c +++ b/net/bridge/br_forward.c @@ -124,7 +124,7 @@ static int deliver_clone(const struct net_bridge_port *prev, skb = skb_clone(skb, GFP_ATOMIC); if (!skb) { - dev->stats.tx_dropped++; + DEV_STATS_INC(dev, tx_dropped); return -ENOMEM; } @@ -263,7 +263,7 @@ static void maybe_deliver_addr(struct net_bridge_port *p, struct sk_buff *skb, skb = skb_copy(skb, GFP_ATOMIC); if (!skb) { - dev->stats.tx_dropped++; + DEV_STATS_INC(dev, tx_dropped); return; } diff --git a/net/bridge/br_input.c b/net/bridge/br_input.c index 6743c8a0fe8e1..54bfcdf692732 100644 --- a/net/bridge/br_input.c +++ b/net/bridge/br_input.c @@ -146,12 +146,12 @@ int br_handle_frame_finish(struct net *net, struct sock *sk, struct sk_buff *skb if ((mdst && mdst->host_joined) || br_multicast_is_router(brmctx, skb)) { local_rcv = true; - br->dev->stats.multicast++; + DEV_STATS_INC(br->dev, multicast); } mcast_hit = true; } else { local_rcv = true; - br->dev->stats.multicast++; + DEV_STATS_INC(br->dev, multicast); } break; case BR_PKT_UNICAST: diff --git a/net/bridge/netfilter/ebtables.c b/net/bridge/netfilter/ebtables.c index a09b2fc11c80e..c0389199c0dcb 100644 --- a/net/bridge/netfilter/ebtables.c +++ b/net/bridge/netfilter/ebtables.c @@ -2114,8 +2114,7 @@ static int size_entry_mwt(const struct ebt_entry *entry, const unsigned char *ba return ret; offsets[0] = sizeof(struct ebt_entry); /* matches come first */ - memcpy(&offsets[1], &entry->watchers_offset, - sizeof(offsets) - sizeof(offsets[0])); + memcpy(&offsets[1], &entry->offsets, sizeof(entry->offsets)); if (state->buf_kern_start) { buf_start = state->buf_kern_start + state->buf_kern_offset; diff --git a/net/bridge/netfilter/nf_conntrack_bridge.c b/net/bridge/netfilter/nf_conntrack_bridge.c index fdbed31585553..d14b2dbbd1dfb 100644 --- a/net/bridge/netfilter/nf_conntrack_bridge.c +++ b/net/bridge/netfilter/nf_conntrack_bridge.c @@ -36,7 +36,7 @@ static int nf_br_ip_fragment(struct net *net, struct sock *sk, ktime_t tstamp = skb->tstamp; struct ip_frag_state state; struct iphdr *iph; - int err; + int err = 0; /* for offloaded checksums cleanup checksum before fragmentation */ if (skb->ip_summed == CHECKSUM_PARTIAL && diff --git a/net/bridge/netfilter/nft_meta_bridge.c b/net/bridge/netfilter/nft_meta_bridge.c index 97805ec424c19..1967fd063cfb7 100644 --- a/net/bridge/netfilter/nft_meta_bridge.c +++ b/net/bridge/netfilter/nft_meta_bridge.c @@ -53,7 +53,7 @@ static void nft_meta_bridge_get_eval(const struct nft_expr *expr, goto err; br_vlan_get_proto(br_dev, &p_proto); - nft_reg_store16(dest, htons(p_proto)); + nft_reg_store_be16(dest, htons(p_proto)); return; } default: diff --git a/net/can/isotp.c b/net/can/isotp.c index 4dccf7b4b88d1..7f62628c6dddb 100644 --- a/net/can/isotp.c +++ b/net/can/isotp.c @@ -14,7 +14,6 @@ * - use CAN_ISOTP_WAIT_TX_DONE flag to block the caller until the PDU is sent * - as we have static buffers the check whether the PDU fits into the buffer * is done at FF reception time (no support for sending 'wait frames') - * - take care of the tx-queue-len as traffic shaping is still on the TODO list * * Copyright (c) 2020 Volkswagen Group Electronic Research * All rights reserved. @@ -87,9 +86,9 @@ MODULE_ALIAS("can-proto-6"); /* ISO 15765-2:2016 supports more than 4095 byte per ISO PDU as the FF_DL can * take full 32 bit values (4 Gbyte). We would need some good concept to handle * this between user space and kernel space. For now increase the static buffer - * to something about 8 kbyte to be able to test this new functionality. + * to something about 64 kbyte to be able to test this new functionality. */ -#define MAX_MSG_LENGTH 8200 +#define MAX_MSG_LENGTH 66000 /* N_PCI type values in bits 7-4 of N_PCI bytes */ #define N_PCI_SF 0x00 /* single frame */ @@ -105,18 +104,23 @@ MODULE_ALIAS("can-proto-6"); #define FC_CONTENT_SZ 3 /* flow control content size in byte (FS/BS/STmin) */ #define ISOTP_CHECK_PADDING (CAN_ISOTP_CHK_PAD_LEN | CAN_ISOTP_CHK_PAD_DATA) +#define ISOTP_ALL_BC_FLAGS (CAN_ISOTP_SF_BROADCAST | CAN_ISOTP_CF_BROADCAST) /* Flow Status given in FC frame */ #define ISOTP_FC_CTS 0 /* clear to send */ #define ISOTP_FC_WT 1 /* wait */ #define ISOTP_FC_OVFLW 2 /* overflow */ +#define ISOTP_FC_TIMEOUT 1 /* 1 sec */ +#define ISOTP_ECHO_TIMEOUT 2 /* 2 secs */ + enum { ISOTP_IDLE = 0, ISOTP_WAIT_FIRST_FC, ISOTP_WAIT_FC, ISOTP_WAIT_DATA, - ISOTP_SENDING + ISOTP_SENDING, + ISOTP_SHUTDOWN, }; struct tpcon { @@ -137,13 +141,14 @@ struct isotp_sock { canid_t rxid; ktime_t tx_gap; ktime_t lastrxcf_tstamp; - struct hrtimer rxtimer, txtimer; + struct hrtimer rxtimer, txtimer, txfrtimer; struct can_isotp_options opt; struct can_isotp_fc_options rxfc, txfc; struct can_isotp_ll_options ll; u32 frame_txtime; u32 force_tx_stmin; u32 force_rx_stmin; + u32 cfecho; /* consecutive frame echo tag */ struct tpcon rx, tx; struct list_head notifier; wait_queue_head_t wait; @@ -159,6 +164,17 @@ static inline struct isotp_sock *isotp_sk(const struct sock *sk) return (struct isotp_sock *)sk; } +static u32 isotp_bc_flags(struct isotp_sock *so) +{ + return so->opt.flags & ISOTP_ALL_BC_FLAGS; +} + +static bool isotp_register_rxid(struct isotp_sock *so) +{ + /* no broadcast modes => register rx_id for FC frame reception */ + return (isotp_bc_flags(so) == 0); +} + static enum hrtimer_restart isotp_rx_timer_handler(struct hrtimer *hrtimer) { struct isotp_sock *so = container_of(hrtimer, struct isotp_sock, @@ -240,7 +256,8 @@ static int isotp_send_fc(struct sock *sk, int ae, u8 flowstatus) so->lastrxcf_tstamp = ktime_set(0, 0); /* start rx timeout watchdog */ - hrtimer_start(&so->rxtimer, ktime_set(1, 0), HRTIMER_MODE_REL_SOFT); + hrtimer_start(&so->rxtimer, ktime_set(ISOTP_FC_TIMEOUT, 0), + HRTIMER_MODE_REL_SOFT); return 0; } @@ -326,6 +343,8 @@ static int check_pad(struct isotp_sock *so, struct canfd_frame *cf, return 0; } +static void isotp_send_cframe(struct isotp_sock *so); + static int isotp_rcv_fc(struct isotp_sock *so, struct canfd_frame *cf, int ae) { struct sock *sk = &so->sk; @@ -380,14 +399,15 @@ static int isotp_rcv_fc(struct isotp_sock *so, struct canfd_frame *cf, int ae) case ISOTP_FC_CTS: so->tx.bs = 0; so->tx.state = ISOTP_SENDING; - /* start cyclic timer for sending CF frame */ - hrtimer_start(&so->txtimer, so->tx_gap, + /* send CF frame and enable echo timeout handling */ + hrtimer_start(&so->txtimer, ktime_set(ISOTP_ECHO_TIMEOUT, 0), HRTIMER_MODE_REL_SOFT); + isotp_send_cframe(so); break; case ISOTP_FC_WT: /* start timer to wait for next FC frame */ - hrtimer_start(&so->txtimer, ktime_set(1, 0), + hrtimer_start(&so->txtimer, ktime_set(ISOTP_FC_TIMEOUT, 0), HRTIMER_MODE_REL_SOFT); break; @@ -582,7 +602,7 @@ static int isotp_rcv_cf(struct sock *sk, struct canfd_frame *cf, int ae, /* perform blocksize handling, if enabled */ if (!so->rxfc.bs || ++so->rx.bs < so->rxfc.bs) { /* start rx timeout watchdog */ - hrtimer_start(&so->rxtimer, ktime_set(1, 0), + hrtimer_start(&so->rxtimer, ktime_set(ISOTP_FC_TIMEOUT, 0), HRTIMER_MODE_REL_SOFT); return 0; } @@ -713,6 +733,63 @@ static void isotp_fill_dataframe(struct canfd_frame *cf, struct isotp_sock *so, cf->data[0] = so->opt.ext_address; } +static void isotp_send_cframe(struct isotp_sock *so) +{ + struct sock *sk = &so->sk; + struct sk_buff *skb; + struct net_device *dev; + struct canfd_frame *cf; + int can_send_ret; + int ae = (so->opt.flags & CAN_ISOTP_EXTEND_ADDR) ? 1 : 0; + + dev = dev_get_by_index(sock_net(sk), so->ifindex); + if (!dev) + return; + + skb = alloc_skb(so->ll.mtu + sizeof(struct can_skb_priv), GFP_ATOMIC); + if (!skb) { + dev_put(dev); + return; + } + + can_skb_reserve(skb); + can_skb_prv(skb)->ifindex = dev->ifindex; + can_skb_prv(skb)->skbcnt = 0; + + cf = (struct canfd_frame *)skb->data; + skb_put_zero(skb, so->ll.mtu); + + /* create consecutive frame */ + isotp_fill_dataframe(cf, so, ae, 0); + + /* place consecutive frame N_PCI in appropriate index */ + cf->data[ae] = N_PCI_CF | so->tx.sn++; + so->tx.sn %= 16; + so->tx.bs++; + + cf->flags = so->ll.tx_flags; + + skb->dev = dev; + can_skb_set_owner(skb, sk); + + /* cfecho should have been zero'ed by init/isotp_rcv_echo() */ + if (so->cfecho) + pr_notice_once("can-isotp: cfecho is %08X != 0\n", so->cfecho); + + /* set consecutive frame echo tag */ + so->cfecho = *(u32 *)cf->data; + + /* send frame with local echo enabled */ + can_send_ret = can_send(skb, 1); + if (can_send_ret) { + pr_notice_once("can-isotp: %s: can_send_ret %pe\n", + __func__, ERR_PTR(can_send_ret)); + if (can_send_ret == -ENOBUFS) + pr_notice_once("can-isotp: tx queue is full\n"); + } + dev_put(dev); +} + static void isotp_create_fframe(struct canfd_frame *cf, struct isotp_sock *so, int ae) { @@ -746,145 +823,120 @@ static void isotp_create_fframe(struct canfd_frame *cf, struct isotp_sock *so, cf->data[i] = so->tx.buf[so->tx.idx++]; so->tx.sn = 1; - so->tx.state = ISOTP_WAIT_FIRST_FC; } -static enum hrtimer_restart isotp_tx_timer_handler(struct hrtimer *hrtimer) +static void isotp_rcv_echo(struct sk_buff *skb, void *data) { - struct isotp_sock *so = container_of(hrtimer, struct isotp_sock, - txtimer); - struct sock *sk = &so->sk; - struct sk_buff *skb; - struct net_device *dev; - struct canfd_frame *cf; - enum hrtimer_restart restart = HRTIMER_NORESTART; - int can_send_ret; - int ae = (so->opt.flags & CAN_ISOTP_EXTEND_ADDR) ? 1 : 0; + struct sock *sk = (struct sock *)data; + struct isotp_sock *so = isotp_sk(sk); + struct canfd_frame *cf = (struct canfd_frame *)skb->data; - switch (so->tx.state) { - case ISOTP_WAIT_FC: - case ISOTP_WAIT_FIRST_FC: + /* only handle my own local echo CF/SF skb's (no FF!) */ + if (skb->sk != sk || so->cfecho != *(u32 *)cf->data) + return; - /* we did not get any flow control frame in time */ + /* cancel local echo timeout */ + hrtimer_cancel(&so->txtimer); - /* report 'communication error on send' */ - sk->sk_err = ECOMM; - if (!sock_flag(sk, SOCK_DEAD)) - sk_error_report(sk); + /* local echo skb with consecutive frame has been consumed */ + so->cfecho = 0; - /* reset tx state */ + if (so->tx.idx >= so->tx.len) { + /* we are done */ so->tx.state = ISOTP_IDLE; wake_up_interruptible(&so->wait); - break; - - case ISOTP_SENDING: - - /* push out the next segmented pdu */ - dev = dev_get_by_index(sock_net(sk), so->ifindex); - if (!dev) - break; + return; + } -isotp_tx_burst: - skb = alloc_skb(so->ll.mtu + sizeof(struct can_skb_priv), - GFP_ATOMIC); - if (!skb) { - dev_put(dev); - break; - } + if (so->txfc.bs && so->tx.bs >= so->txfc.bs) { + /* stop and wait for FC with timeout */ + so->tx.state = ISOTP_WAIT_FC; + hrtimer_start(&so->txtimer, ktime_set(ISOTP_FC_TIMEOUT, 0), + HRTIMER_MODE_REL_SOFT); + return; + } - can_skb_reserve(skb); - can_skb_prv(skb)->ifindex = dev->ifindex; - can_skb_prv(skb)->skbcnt = 0; + /* no gap between data frames needed => use burst mode */ + if (!so->tx_gap) { + /* enable echo timeout handling */ + hrtimer_start(&so->txtimer, ktime_set(ISOTP_ECHO_TIMEOUT, 0), + HRTIMER_MODE_REL_SOFT); + isotp_send_cframe(so); + return; + } - cf = (struct canfd_frame *)skb->data; - skb_put_zero(skb, so->ll.mtu); + /* start timer to send next consecutive frame with correct delay */ + hrtimer_start(&so->txfrtimer, so->tx_gap, HRTIMER_MODE_REL_SOFT); +} - /* create consecutive frame */ - isotp_fill_dataframe(cf, so, ae, 0); +static enum hrtimer_restart isotp_tx_timer_handler(struct hrtimer *hrtimer) +{ + struct isotp_sock *so = container_of(hrtimer, struct isotp_sock, + txtimer); + struct sock *sk = &so->sk; - /* place consecutive frame N_PCI in appropriate index */ - cf->data[ae] = N_PCI_CF | so->tx.sn++; - so->tx.sn %= 16; - so->tx.bs++; + /* don't handle timeouts in IDLE or SHUTDOWN state */ + if (so->tx.state == ISOTP_IDLE || so->tx.state == ISOTP_SHUTDOWN) + return HRTIMER_NORESTART; - cf->flags = so->ll.tx_flags; + /* we did not get any flow control or echo frame in time */ - skb->dev = dev; - can_skb_set_owner(skb, sk); + /* report 'communication error on send' */ + sk->sk_err = ECOMM; + if (!sock_flag(sk, SOCK_DEAD)) + sk_error_report(sk); - can_send_ret = can_send(skb, 1); - if (can_send_ret) { - pr_notice_once("can-isotp: %s: can_send_ret %pe\n", - __func__, ERR_PTR(can_send_ret)); - if (can_send_ret == -ENOBUFS) - pr_notice_once("can-isotp: tx queue is full, increasing txqueuelen may prevent this error\n"); - } - if (so->tx.idx >= so->tx.len) { - /* we are done */ - so->tx.state = ISOTP_IDLE; - dev_put(dev); - wake_up_interruptible(&so->wait); - break; - } + /* reset tx state */ + so->tx.state = ISOTP_IDLE; + wake_up_interruptible(&so->wait); - if (so->txfc.bs && so->tx.bs >= so->txfc.bs) { - /* stop and wait for FC */ - so->tx.state = ISOTP_WAIT_FC; - dev_put(dev); - hrtimer_set_expires(&so->txtimer, - ktime_add(ktime_get(), - ktime_set(1, 0))); - restart = HRTIMER_RESTART; - break; - } + return HRTIMER_NORESTART; +} - /* no gap between data frames needed => use burst mode */ - if (!so->tx_gap) - goto isotp_tx_burst; +static enum hrtimer_restart isotp_txfr_timer_handler(struct hrtimer *hrtimer) +{ + struct isotp_sock *so = container_of(hrtimer, struct isotp_sock, + txfrtimer); - /* start timer to send next data frame with correct delay */ - dev_put(dev); - hrtimer_set_expires(&so->txtimer, - ktime_add(ktime_get(), so->tx_gap)); - restart = HRTIMER_RESTART; - break; + /* start echo timeout handling and cover below protocol error */ + hrtimer_start(&so->txtimer, ktime_set(ISOTP_ECHO_TIMEOUT, 0), + HRTIMER_MODE_REL_SOFT); - default: - WARN_ON_ONCE(1); - } + /* cfecho should be consumed by isotp_rcv_echo() here */ + if (so->tx.state == ISOTP_SENDING && !so->cfecho) + isotp_send_cframe(so); - return restart; + return HRTIMER_NORESTART; } static int isotp_sendmsg(struct socket *sock, struct msghdr *msg, size_t size) { struct sock *sk = sock->sk; struct isotp_sock *so = isotp_sk(sk); - u32 old_state = so->tx.state; struct sk_buff *skb; struct net_device *dev; 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; + s64 hrtimer_sec = ISOTP_ECHO_TIMEOUT; int off; int err; - if (!so->bound) + if (!so->bound || so->tx.state == ISOTP_SHUTDOWN) return -EADDRNOTAVAIL; - /* we do not support multiple buffers - for now */ - if (cmpxchg(&so->tx.state, ISOTP_IDLE, ISOTP_SENDING) != ISOTP_IDLE || - wq_has_sleeper(&so->wait)) { - if (msg->msg_flags & MSG_DONTWAIT) { - err = -EAGAIN; - goto err_out; - } + while (cmpxchg(&so->tx.state, ISOTP_IDLE, ISOTP_SENDING) != ISOTP_IDLE) { + /* we do not support multiple buffers - for now */ + if (msg->msg_flags & MSG_DONTWAIT) + return -EAGAIN; + + if (so->tx.state == ISOTP_SHUTDOWN) + return -EADDRNOTAVAIL; /* wait for complete transmission of current pdu */ err = wait_event_interruptible(so->wait, so->tx.state == ISOTP_IDLE); if (err) - goto err_out; + goto err_event_drop; } if (!size || size > MAX_MSG_LENGTH) { @@ -896,7 +948,7 @@ static int isotp_sendmsg(struct socket *sock, struct msghdr *msg, size_t size) off = (so->tx.ll_dl > CAN_MAX_DLEN) ? 1 : 0; /* does the given data fit into a single frame for SF_BROADCAST? */ - if ((so->opt.flags & CAN_ISOTP_SF_BROADCAST) && + if ((isotp_bc_flags(so) == CAN_ISOTP_SF_BROADCAST) && (size > so->tx.ll_dl - SF_PCI_SZ4 - ae - off)) { err = -EINVAL; goto err_out_drop; @@ -929,6 +981,10 @@ static int isotp_sendmsg(struct socket *sock, struct msghdr *msg, size_t size) cf = (struct canfd_frame *)skb->data; skb_put_zero(skb, so->ll.mtu); + /* cfecho should have been zero'ed by init / former isotp_rcv_echo() */ + if (so->cfecho) + pr_notice_once("can-isotp: uninit cfecho %08X\n", so->cfecho); + /* check for single frame transmission depending on TX_DL */ if (size <= so->tx.ll_dl - SF_PCI_SZ4 - ae - off) { /* The message size generally fits into a SingleFrame - good. @@ -954,22 +1010,40 @@ static int isotp_sendmsg(struct socket *sock, struct msghdr *msg, size_t size) else cf->data[ae] |= size; - so->tx.state = ISOTP_IDLE; - wake_up_interruptible(&so->wait); - - /* don't enable wait queue for a single frame transmission */ - wait_tx_done = 0; + /* set CF echo tag for isotp_rcv_echo() (SF-mode) */ + so->cfecho = *(u32 *)cf->data; } else { - /* send first frame and wait for FC */ + /* send first frame */ isotp_create_fframe(cf, so, ae); - /* start timeout for FC */ - hrtimer_sec = 1; - hrtimer_start(&so->txtimer, ktime_set(hrtimer_sec, 0), - HRTIMER_MODE_REL_SOFT); + if (isotp_bc_flags(so) == CAN_ISOTP_CF_BROADCAST) { + /* set timer for FC-less operation (STmin = 0) */ + if (so->opt.flags & CAN_ISOTP_FORCE_TXSTMIN) + so->tx_gap = ktime_set(0, so->force_tx_stmin); + else + so->tx_gap = ktime_set(0, so->frame_txtime); + + /* disable wait for FCs due to activated block size */ + so->txfc.bs = 0; + + /* set CF echo tag for isotp_rcv_echo() (CF-mode) */ + so->cfecho = *(u32 *)cf->data; + } else { + /* standard flow control check */ + so->tx.state = ISOTP_WAIT_FIRST_FC; + + /* start timeout for FC */ + hrtimer_sec = ISOTP_FC_TIMEOUT; + + /* no CF echo tag for isotp_rcv_echo() (FF-mode) */ + so->cfecho = 0; + } } + hrtimer_start(&so->txtimer, ktime_set(hrtimer_sec, 0), + HRTIMER_MODE_REL_SOFT); + /* send the first or only CAN frame */ cf->flags = so->ll.tx_flags; @@ -982,15 +1056,19 @@ static int isotp_sendmsg(struct socket *sock, struct msghdr *msg, size_t size) __func__, ERR_PTR(err)); /* no transmission -> no timeout monitoring */ - if (hrtimer_sec) - hrtimer_cancel(&so->txtimer); + hrtimer_cancel(&so->txtimer); + + /* reset consecutive frame echo tag */ + so->cfecho = 0; goto err_out_drop; } if (wait_tx_done) { /* wait for complete transmission of current pdu */ - wait_event_interruptible(so->wait, so->tx.state == ISOTP_IDLE); + err = wait_event_interruptible(so->wait, so->tx.state == ISOTP_IDLE); + if (err) + goto err_event_drop; err = sock_error(sk); if (err) @@ -999,13 +1077,15 @@ static int isotp_sendmsg(struct socket *sock, struct msghdr *msg, size_t size) return size; +err_event_drop: + /* got signal: force tx state machine to be idle */ + so->tx.state = ISOTP_IDLE; + hrtimer_cancel(&so->txfrtimer); + hrtimer_cancel(&so->txtimer); err_out_drop: /* drop this PDU and unlock a potential wait queue */ - old_state = ISOTP_IDLE; -err_out: - so->tx.state = old_state; - if (so->tx.state == ISOTP_IDLE) - wake_up_interruptible(&so->wait); + so->tx.state = ISOTP_IDLE; + wake_up_interruptible(&so->wait); return err; } @@ -1069,7 +1149,13 @@ static int isotp_release(struct socket *sock) net = sock_net(sk); /* wait for complete transmission of current pdu */ - wait_event_interruptible(so->wait, so->tx.state == ISOTP_IDLE); + while (wait_event_interruptible(so->wait, so->tx.state == ISOTP_IDLE) == 0 && + cmpxchg(&so->tx.state, ISOTP_IDLE, ISOTP_SHUTDOWN) != ISOTP_IDLE) + ; + + /* force state machines to be idle also when a signal occurred */ + so->tx.state = ISOTP_SHUTDOWN; + so->rx.state = ISOTP_IDLE; spin_lock(&isotp_notifier_lock); while (isotp_busy_notifier == so) { @@ -1083,21 +1169,27 @@ static int isotp_release(struct socket *sock) lock_sock(sk); /* remove current filters & unregister */ - if (so->bound && (!(so->opt.flags & CAN_ISOTP_SF_BROADCAST))) { + if (so->bound) { if (so->ifindex) { struct net_device *dev; dev = dev_get_by_index(net, so->ifindex); if (dev) { - can_rx_unregister(net, dev, so->rxid, - SINGLE_MASK(so->rxid), - isotp_rcv, sk); + if (isotp_register_rxid(so)) + can_rx_unregister(net, dev, so->rxid, + SINGLE_MASK(so->rxid), + isotp_rcv, sk); + + can_rx_unregister(net, dev, so->txid, + SINGLE_MASK(so->txid), + isotp_rcv_echo, sk); dev_put(dev); synchronize_rcu(); } } } + hrtimer_cancel(&so->txfrtimer); hrtimer_cancel(&so->txtimer); hrtimer_cancel(&so->rxtimer); @@ -1121,26 +1213,38 @@ static int isotp_bind(struct socket *sock, struct sockaddr *uaddr, int len) struct net *net = sock_net(sk); int ifindex; struct net_device *dev; - canid_t tx_id, rx_id; + canid_t tx_id = addr->can_addr.tp.tx_id; + canid_t rx_id = addr->can_addr.tp.rx_id; int err = 0; int notify_enetdown = 0; - int do_rx_reg = 1; if (len < ISOTP_MIN_NAMELEN) return -EINVAL; - /* sanitize tx/rx CAN identifiers */ - tx_id = addr->can_addr.tp.tx_id; + if (addr->can_family != AF_CAN) + return -EINVAL; + + /* sanitize tx CAN identifier */ if (tx_id & CAN_EFF_FLAG) tx_id &= (CAN_EFF_FLAG | CAN_EFF_MASK); else tx_id &= CAN_SFF_MASK; - rx_id = addr->can_addr.tp.rx_id; - if (rx_id & CAN_EFF_FLAG) - rx_id &= (CAN_EFF_FLAG | CAN_EFF_MASK); - else - rx_id &= CAN_SFF_MASK; + /* give feedback on wrong CAN-ID value */ + if (tx_id != addr->can_addr.tp.tx_id) + return -EINVAL; + + /* sanitize rx CAN identifier (if needed) */ + if (isotp_register_rxid(so)) { + if (rx_id & CAN_EFF_FLAG) + rx_id &= (CAN_EFF_FLAG | CAN_EFF_MASK); + else + rx_id &= CAN_SFF_MASK; + + /* give feedback on wrong CAN-ID value */ + if (rx_id != addr->can_addr.tp.rx_id) + return -EINVAL; + } if (!addr->can_ifindex) return -ENODEV; @@ -1152,12 +1256,8 @@ static int isotp_bind(struct socket *sock, struct sockaddr *uaddr, int len) goto out; } - /* do not register frame reception for functional addressing */ - if (so->opt.flags & CAN_ISOTP_SF_BROADCAST) - do_rx_reg = 0; - - /* do not validate rx address for functional addressing */ - if (do_rx_reg && rx_id == tx_id) { + /* ensure different CAN IDs when the rx_id is to be registered */ + if (isotp_register_rxid(so) && rx_id == tx_id) { err = -EADDRNOTAVAIL; goto out; } @@ -1182,10 +1282,17 @@ static int isotp_bind(struct socket *sock, struct sockaddr *uaddr, int len) ifindex = dev->ifindex; - if (do_rx_reg) + if (isotp_register_rxid(so)) can_rx_register(net, dev, rx_id, SINGLE_MASK(rx_id), isotp_rcv, sk, "isotp", sk); + /* no consecutive frame echo skb in flight */ + so->cfecho = 0; + + /* register for echo skb's */ + can_rx_register(net, dev, tx_id, SINGLE_MASK(tx_id), + isotp_rcv_echo, sk, "isotpe", sk); + dev_put(dev); /* switch to new settings */ @@ -1246,6 +1353,15 @@ static int isotp_setsockopt_locked(struct socket *sock, int level, int optname, if (!(so->opt.flags & CAN_ISOTP_RX_EXT_ADDR)) so->opt.rx_ext_address = so->opt.ext_address; + /* these broadcast flags are not allowed together */ + if (isotp_bc_flags(so) == ISOTP_ALL_BC_FLAGS) { + /* CAN_ISOTP_SF_BROADCAST is prioritized */ + so->opt.flags &= ~CAN_ISOTP_CF_BROADCAST; + + /* give user feedback on wrong config attempt */ + ret = -EINVAL; + } + /* check for frame_txtime changes (0 => no changes) */ if (so->opt.frame_txtime) { if (so->opt.frame_txtime == CAN_ISOTP_FRAME_TXTIME_ZERO) @@ -1396,10 +1512,16 @@ static void isotp_notify(struct isotp_sock *so, unsigned long msg, case NETDEV_UNREGISTER: lock_sock(sk); /* remove current filters & unregister */ - if (so->bound && (!(so->opt.flags & CAN_ISOTP_SF_BROADCAST))) - can_rx_unregister(dev_net(dev), dev, so->rxid, - SINGLE_MASK(so->rxid), - isotp_rcv, sk); + if (so->bound) { + if (isotp_register_rxid(so)) + can_rx_unregister(dev_net(dev), dev, so->rxid, + SINGLE_MASK(so->rxid), + isotp_rcv, sk); + + can_rx_unregister(dev_net(dev), dev, so->txid, + SINGLE_MASK(so->txid), + isotp_rcv_echo, sk); + } so->ifindex = 0; so->bound = 0; @@ -1472,6 +1594,8 @@ static int isotp_init(struct sock *sk) so->rxtimer.function = isotp_rx_timer_handler; hrtimer_init(&so->txtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_SOFT); so->txtimer.function = isotp_tx_timer_handler; + hrtimer_init(&so->txfrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_SOFT); + so->txfrtimer.function = isotp_txfr_timer_handler; init_waitqueue_head(&so->wait); spin_lock_init(&so->rx_lock); diff --git a/net/ceph/messenger.c b/net/ceph/messenger.c index 9bf085ddbe51f..043cdbb2d9800 100644 --- a/net/ceph/messenger.c +++ b/net/ceph/messenger.c @@ -454,8 +454,8 @@ int ceph_tcp_connect(struct ceph_connection *con) set_sock_callbacks(sock, con); con_sock_state_connecting(con); - ret = sock->ops->connect(sock, (struct sockaddr *)&ss, sizeof(ss), - O_NONBLOCK); + ret = kernel_connect(sock, (struct sockaddr *)&ss, sizeof(ss), + O_NONBLOCK); if (ret == -EINPROGRESS) { dout("connect %s EINPROGRESS sk_state = %u\n", ceph_pr_addr(&con->peer_addr), diff --git a/net/core/dev.c b/net/core/dev.c index 4d698ccf41726..9979f30d4a41e 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -303,6 +303,12 @@ static struct netdev_name_node *netdev_name_node_lookup_rcu(struct net *net, return NULL; } +bool netdev_name_in_use(struct net *net, const char *name) +{ + return netdev_name_node_lookup(net, name); +} +EXPORT_SYMBOL(netdev_name_in_use); + int netdev_name_node_alt_create(struct net_device *dev, const char *name) { struct netdev_name_node *name_node; @@ -1135,7 +1141,7 @@ static int __dev_alloc_name(struct net *net, const char *name, char *buf) } snprintf(buf, IFNAMSIZ, name, i); - if (!__dev_get_by_name(net, buf)) + if (!netdev_name_in_use(net, buf)) return i; /* It is possible to run out of possible slots @@ -1145,6 +1151,26 @@ static int __dev_alloc_name(struct net *net, const char *name, char *buf) return -ENFILE; } +static int dev_prep_valid_name(struct net *net, struct net_device *dev, + const char *want_name, char *out_name) +{ + int ret; + + if (!dev_valid_name(want_name)) + return -EINVAL; + + if (strchr(want_name, '%')) { + ret = __dev_alloc_name(net, want_name, out_name); + return ret < 0 ? ret : 0; + } else if (netdev_name_in_use(net, want_name)) { + return -EEXIST; + } else if (out_name != want_name) { + strscpy(out_name, want_name, IFNAMSIZ); + } + + return 0; +} + static int dev_alloc_name_ns(struct net *net, struct net_device *dev, const char *name) @@ -1155,7 +1181,7 @@ static int dev_alloc_name_ns(struct net *net, BUG_ON(!net); ret = __dev_alloc_name(net, name, buf); if (ret >= 0) - strlcpy(dev->name, buf, IFNAMSIZ); + strscpy(dev->name, buf, IFNAMSIZ); return ret; } @@ -1182,19 +1208,13 @@ EXPORT_SYMBOL(dev_alloc_name); static int dev_get_valid_name(struct net *net, struct net_device *dev, const char *name) { - BUG_ON(!net); - - if (!dev_valid_name(name)) - return -EINVAL; - - if (strchr(name, '%')) - return dev_alloc_name_ns(net, dev, name); - else if (__dev_get_by_name(net, name)) - return -EEXIST; - else if (dev->name != name) - strlcpy(dev->name, name, IFNAMSIZ); + char buf[IFNAMSIZ]; + int ret; - return 0; + ret = dev_prep_valid_name(net, dev, name, buf); + if (ret >= 0) + strscpy(dev->name, buf, IFNAMSIZ); + return ret; } /** @@ -4825,7 +4845,7 @@ static u32 netif_receive_generic_xdp(struct sk_buff *skb, case XDP_PASS: break; default: - bpf_warn_invalid_xdp_action(act); + bpf_warn_invalid_xdp_action(skb->dev, xdp_prog, act); fallthrough; case XDP_ABORTED: trace_xdp_exception(skb->dev, xdp_prog, act); @@ -11148,6 +11168,7 @@ int __dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat, int new_ifindex) { struct net *net_old = dev_net(dev); + char new_name[IFNAMSIZ] = {}; int err, new_nsid; ASSERT_RTNL(); @@ -11170,11 +11191,11 @@ int __dev_change_net_namespace(struct net_device *dev, struct net *net, * we can use it in the destination network namespace. */ err = -EEXIST; - if (__dev_get_by_name(net, dev->name)) { + if (netdev_name_in_use(net, dev->name)) { /* We get here if we can't use the current device name */ if (!pat) goto out; - err = dev_get_valid_name(net, dev, pat); + err = dev_prep_valid_name(net, dev, pat, new_name); if (err < 0) goto out; } @@ -11242,6 +11263,9 @@ int __dev_change_net_namespace(struct net_device *dev, struct net *net, kobject_uevent(&dev->dev.kobj, KOBJ_ADD); netdev_adjacent_add_links(dev); + if (new_name[0]) /* Rename the netdev to prepared name */ + strscpy(dev->name, new_name, IFNAMSIZ); + /* Fixup kobjects */ err = device_rename(&dev->dev, dev->name); WARN_ON(err); @@ -11522,7 +11546,7 @@ static void __net_exit default_device_exit(struct net *net) /* Push remaining network devices to init_net */ snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex); - if (__dev_get_by_name(&init_net, fb_name)) + if (netdev_name_in_use(&init_net, fb_name)) snprintf(fb_name, IFNAMSIZ, "dev%%d"); err = dev_change_net_namespace(dev, &init_net, fb_name); if (err) { diff --git a/net/core/devlink.c b/net/core/devlink.c index b4d7a7f749c18..db76c55e1a6d7 100644 --- a/net/core/devlink.c +++ b/net/core/devlink.c @@ -4413,7 +4413,7 @@ static int devlink_param_get(struct devlink *devlink, const struct devlink_param *param, struct devlink_param_gset_ctx *ctx) { - if (!param->get || devlink->reload_failed) + if (!param->get) return -EOPNOTSUPP; return param->get(devlink, param->id, ctx); } @@ -4422,7 +4422,7 @@ static int devlink_param_set(struct devlink *devlink, const struct devlink_param *param, struct devlink_param_gset_ctx *ctx) { - if (!param->set || devlink->reload_failed) + if (!param->set) return -EOPNOTSUPP; return param->set(devlink, param->id, ctx); } diff --git a/net/core/drop_monitor.c b/net/core/drop_monitor.c index 78202141930f4..937d74aeef547 100644 --- a/net/core/drop_monitor.c +++ b/net/core/drop_monitor.c @@ -184,7 +184,7 @@ static struct sk_buff *reset_per_cpu_data(struct per_cpu_dm_data *data) } static const struct genl_multicast_group dropmon_mcgrps[] = { - { .name = "events", }, + { .name = "events", .cap_sys_admin = 1 }, }; static void send_dm_alert(struct work_struct *work) @@ -473,7 +473,7 @@ net_dm_hw_trap_summary_probe(void *ignore, const struct devlink *devlink, goto out; hw_entry = &hw_entries->entries[hw_entries->num_entries]; - strlcpy(hw_entry->trap_name, metadata->trap_name, + strscpy(hw_entry->trap_name, metadata->trap_name, NET_DM_MAX_HW_TRAP_NAME_LEN - 1); hw_entry->count = 1; hw_entries->num_entries++; @@ -1618,11 +1618,13 @@ static const struct genl_small_ops dropmon_ops[] = { .cmd = NET_DM_CMD_START, .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, .doit = net_dm_cmd_trace, + .flags = GENL_ADMIN_PERM, }, { .cmd = NET_DM_CMD_STOP, .validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP, .doit = net_dm_cmd_trace, + .flags = GENL_ADMIN_PERM, }, { .cmd = NET_DM_CMD_CONFIG_GET, diff --git a/net/core/filter.c b/net/core/filter.c index 458756334c4f9..befc459ee3477 100644 --- a/net/core/filter.c +++ b/net/core/filter.c @@ -2576,6 +2576,22 @@ BPF_CALL_2(bpf_msg_cork_bytes, struct sk_msg *, msg, u32, bytes) return 0; } +static void sk_msg_reset_curr(struct sk_msg *msg) +{ + u32 i = msg->sg.start; + u32 len = 0; + + do { + len += sk_msg_elem(msg, i)->length; + sk_msg_iter_var_next(i); + if (len >= msg->sg.size) + break; + } while (i != msg->sg.end); + + msg->sg.curr = i; + msg->sg.copybreak = 0; +} + static const struct bpf_func_proto bpf_msg_cork_bytes_proto = { .func = bpf_msg_cork_bytes, .gpl_only = false, @@ -2695,6 +2711,7 @@ BPF_CALL_4(bpf_msg_pull_data, struct sk_msg *, msg, u32, start, msg->sg.end - shift + NR_MSG_FRAG_IDS : msg->sg.end - shift; out: + sk_msg_reset_curr(msg); msg->data = sg_virt(&msg->sg.data[first_sge]) + start - offset; msg->data_end = msg->data + bytes; return 0; @@ -2831,6 +2848,7 @@ BPF_CALL_4(bpf_msg_push_data, struct sk_msg *, msg, u32, start, msg->sg.data[new] = rsge; } + sk_msg_reset_curr(msg); sk_msg_compute_data_pointers(msg); return 0; } @@ -2999,6 +3017,7 @@ BPF_CALL_4(bpf_msg_pop_data, struct sk_msg *, msg, u32, start, sk_mem_uncharge(msg->sk, len - pop); msg->sg.size -= (len - pop); + sk_msg_reset_curr(msg); sk_msg_compute_data_pointers(msg); return 0; } @@ -6959,6 +6978,8 @@ BPF_CALL_3(bpf_sk_assign, struct sk_buff *, skb, struct sock *, sk, u64, flags) return -ENETUNREACH; if (unlikely(sk_fullsock(sk) && sk->sk_reuseport)) return -ESOCKTNOSUPPORT; + if (sk_unhashed(sk)) + return -EOPNOTSUPP; if (sk_is_refcounted(sk) && unlikely(!refcount_inc_not_zero(&sk->sk_refcnt))) return -ENOENT; @@ -8299,13 +8320,13 @@ static bool xdp_is_valid_access(int off, int size, return __is_valid_xdp_access(off, size); } -void bpf_warn_invalid_xdp_action(u32 act) +void bpf_warn_invalid_xdp_action(struct net_device *dev, struct bpf_prog *prog, u32 act) { const u32 act_max = XDP_REDIRECT; - pr_warn_once("%s XDP return value %u, expect packet loss!\n", + pr_warn_once("%s XDP return value %u on prog %s (id %d) dev %s, expect packet loss!\n", act > act_max ? "Illegal" : "Driver unsupported", - act); + act, prog->aux->name, prog->aux->id, dev ? dev->name : "N/A"); } EXPORT_SYMBOL_GPL(bpf_warn_invalid_xdp_action); diff --git a/net/core/flow_dissector.c b/net/core/flow_dissector.c index 1d230f041386b..a1efbd0f2ad32 100644 --- a/net/core/flow_dissector.c +++ b/net/core/flow_dissector.c @@ -1278,7 +1278,7 @@ bool __skb_flow_dissect(const struct net *net, break; } - nhoff += ntohs(hdr->message_length); + nhoff += sizeof(struct ptp_header); fdret = FLOW_DISSECT_RET_OUT_GOOD; break; } @@ -1614,8 +1614,7 @@ u32 __skb_get_hash_symmetric(const struct sk_buff *skb) memset(&keys, 0, sizeof(keys)); __skb_flow_dissect(NULL, skb, &flow_keys_dissector_symmetric, - &keys, NULL, 0, 0, 0, - FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL); + &keys, NULL, 0, 0, 0, 0); return __flow_hash_from_keys(&keys, &hashrnd); } diff --git a/net/core/lwt_bpf.c b/net/core/lwt_bpf.c index 3fd207fe1284a..f6c327c7badb4 100644 --- a/net/core/lwt_bpf.c +++ b/net/core/lwt_bpf.c @@ -59,9 +59,8 @@ static int run_lwt_bpf(struct sk_buff *skb, struct bpf_lwt_prog *lwt, ret = BPF_OK; } else { skb_reset_mac_header(skb); - ret = skb_do_redirect(skb); - if (ret == 0) - ret = BPF_REDIRECT; + skb_do_redirect(skb); + ret = BPF_REDIRECT; } break; @@ -254,7 +253,7 @@ static int bpf_lwt_xmit_reroute(struct sk_buff *skb) err = dst_output(dev_net(skb_dst(skb)->dev), skb->sk, skb); if (unlikely(err)) - return err; + return net_xmit_errno(err); /* ip[6]_finish_output2 understand LWTUNNEL_XMIT_DONE */ return LWTUNNEL_XMIT_DONE; diff --git a/net/core/neighbour.c b/net/core/neighbour.c index af022db48b7a9..927c4db2703ff 100644 --- a/net/core/neighbour.c +++ b/net/core/neighbour.c @@ -223,7 +223,8 @@ bool neigh_remove_one(struct neighbour *ndel, struct neigh_table *tbl) static int neigh_forced_gc(struct neigh_table *tbl) { - int max_clean = atomic_read(&tbl->gc_entries) - tbl->gc_thresh2; + int max_clean = atomic_read(&tbl->gc_entries) - + READ_ONCE(tbl->gc_thresh2); unsigned long tref = jiffies - 5 * HZ; struct neighbour *n, *tmp; int shrunk = 0; @@ -252,7 +253,7 @@ static int neigh_forced_gc(struct neigh_table *tbl) } } - tbl->last_flush = jiffies; + WRITE_ONCE(tbl->last_flush, jiffies); write_unlock_bh(&tbl->lock); @@ -408,17 +409,17 @@ static struct neighbour *neigh_alloc(struct neigh_table *tbl, { struct neighbour *n = NULL; unsigned long now = jiffies; - int entries; + int entries, gc_thresh3; if (exempt_from_gc) goto do_alloc; entries = atomic_inc_return(&tbl->gc_entries) - 1; - if (entries >= tbl->gc_thresh3 || - (entries >= tbl->gc_thresh2 && - time_after(now, tbl->last_flush + 5 * HZ))) { - if (!neigh_forced_gc(tbl) && - entries >= tbl->gc_thresh3) { + gc_thresh3 = READ_ONCE(tbl->gc_thresh3); + if (entries >= gc_thresh3 || + (entries >= READ_ONCE(tbl->gc_thresh2) && + time_after(now, READ_ONCE(tbl->last_flush) + 5 * HZ))) { + if (!neigh_forced_gc(tbl) && entries >= gc_thresh3) { net_info_ratelimited("%s: neighbor table overflow!\n", tbl->id); NEIGH_CACHE_STAT_INC(tbl, table_fulls); @@ -897,13 +898,14 @@ static void neigh_periodic_work(struct work_struct *work) if (time_after(jiffies, tbl->last_rand + 300 * HZ)) { struct neigh_parms *p; - tbl->last_rand = jiffies; + + WRITE_ONCE(tbl->last_rand, jiffies); list_for_each_entry(p, &tbl->parms_list, list) p->reachable_time = neigh_rand_reach_time(NEIGH_VAR(p, BASE_REACHABLE_TIME)); } - if (atomic_read(&tbl->entries) < tbl->gc_thresh1) + if (atomic_read(&tbl->entries) < READ_ONCE(tbl->gc_thresh1)) goto out; for (i = 0 ; i < (1 << nht->hash_shift); i++) { @@ -930,7 +932,9 @@ static void neigh_periodic_work(struct work_struct *work) (state == NUD_FAILED || !time_in_range_open(jiffies, n->used, n->used + NEIGH_VAR(n->parms, GC_STALETIME)))) { - *np = n->next; + rcu_assign_pointer(*np, + rcu_dereference_protected(n->next, + lockdep_is_held(&tbl->lock))); neigh_mark_dead(n); write_unlock(&n->lock); neigh_cleanup_and_release(n); @@ -2045,15 +2049,16 @@ static int neightbl_fill_info(struct sk_buff *skb, struct neigh_table *tbl, ndtmsg->ndtm_pad2 = 0; if (nla_put_string(skb, NDTA_NAME, tbl->id) || - nla_put_msecs(skb, NDTA_GC_INTERVAL, tbl->gc_interval, NDTA_PAD) || - nla_put_u32(skb, NDTA_THRESH1, tbl->gc_thresh1) || - nla_put_u32(skb, NDTA_THRESH2, tbl->gc_thresh2) || - nla_put_u32(skb, NDTA_THRESH3, tbl->gc_thresh3)) + nla_put_msecs(skb, NDTA_GC_INTERVAL, READ_ONCE(tbl->gc_interval), + NDTA_PAD) || + nla_put_u32(skb, NDTA_THRESH1, READ_ONCE(tbl->gc_thresh1)) || + nla_put_u32(skb, NDTA_THRESH2, READ_ONCE(tbl->gc_thresh2)) || + nla_put_u32(skb, NDTA_THRESH3, READ_ONCE(tbl->gc_thresh3))) goto nla_put_failure; { unsigned long now = jiffies; - long flush_delta = now - tbl->last_flush; - long rand_delta = now - tbl->last_rand; + long flush_delta = now - READ_ONCE(tbl->last_flush); + long rand_delta = now - READ_ONCE(tbl->last_rand); struct neigh_hash_table *nht; struct ndt_config ndc = { .ndtc_key_len = tbl->key_len, @@ -2061,7 +2066,7 @@ static int neightbl_fill_info(struct sk_buff *skb, struct neigh_table *tbl, .ndtc_entries = atomic_read(&tbl->entries), .ndtc_last_flush = jiffies_to_msecs(flush_delta), .ndtc_last_rand = jiffies_to_msecs(rand_delta), - .ndtc_proxy_qlen = tbl->proxy_queue.qlen, + .ndtc_proxy_qlen = READ_ONCE(tbl->proxy_queue.qlen), }; rcu_read_lock_bh(); @@ -2084,17 +2089,17 @@ static int neightbl_fill_info(struct sk_buff *skb, struct neigh_table *tbl, struct neigh_statistics *st; st = per_cpu_ptr(tbl->stats, cpu); - ndst.ndts_allocs += st->allocs; - ndst.ndts_destroys += st->destroys; - ndst.ndts_hash_grows += st->hash_grows; - ndst.ndts_res_failed += st->res_failed; - ndst.ndts_lookups += st->lookups; - ndst.ndts_hits += st->hits; - ndst.ndts_rcv_probes_mcast += st->rcv_probes_mcast; - ndst.ndts_rcv_probes_ucast += st->rcv_probes_ucast; - ndst.ndts_periodic_gc_runs += st->periodic_gc_runs; - ndst.ndts_forced_gc_runs += st->forced_gc_runs; - ndst.ndts_table_fulls += st->table_fulls; + ndst.ndts_allocs += READ_ONCE(st->allocs); + ndst.ndts_destroys += READ_ONCE(st->destroys); + ndst.ndts_hash_grows += READ_ONCE(st->hash_grows); + ndst.ndts_res_failed += READ_ONCE(st->res_failed); + ndst.ndts_lookups += READ_ONCE(st->lookups); + ndst.ndts_hits += READ_ONCE(st->hits); + ndst.ndts_rcv_probes_mcast += READ_ONCE(st->rcv_probes_mcast); + ndst.ndts_rcv_probes_ucast += READ_ONCE(st->rcv_probes_ucast); + ndst.ndts_periodic_gc_runs += READ_ONCE(st->periodic_gc_runs); + ndst.ndts_forced_gc_runs += READ_ONCE(st->forced_gc_runs); + ndst.ndts_table_fulls += READ_ONCE(st->table_fulls); } if (nla_put_64bit(skb, NDTA_STATS, sizeof(ndst), &ndst, @@ -2318,16 +2323,16 @@ static int neightbl_set(struct sk_buff *skb, struct nlmsghdr *nlh, goto errout_tbl_lock; if (tb[NDTA_THRESH1]) - tbl->gc_thresh1 = nla_get_u32(tb[NDTA_THRESH1]); + WRITE_ONCE(tbl->gc_thresh1, nla_get_u32(tb[NDTA_THRESH1])); if (tb[NDTA_THRESH2]) - tbl->gc_thresh2 = nla_get_u32(tb[NDTA_THRESH2]); + WRITE_ONCE(tbl->gc_thresh2, nla_get_u32(tb[NDTA_THRESH2])); if (tb[NDTA_THRESH3]) - tbl->gc_thresh3 = nla_get_u32(tb[NDTA_THRESH3]); + WRITE_ONCE(tbl->gc_thresh3, nla_get_u32(tb[NDTA_THRESH3])); if (tb[NDTA_GC_INTERVAL]) - tbl->gc_interval = nla_get_msecs(tb[NDTA_GC_INTERVAL]); + WRITE_ONCE(tbl->gc_interval, nla_get_msecs(tb[NDTA_GC_INTERVAL])); err = 0; diff --git a/net/core/netpoll.c b/net/core/netpoll.c index bd750863959f2..47a86da6ab980 100644 --- a/net/core/netpoll.c +++ b/net/core/netpoll.c @@ -573,7 +573,7 @@ int netpoll_parse_options(struct netpoll *np, char *opt) if ((delim = strchr(cur, ',')) == NULL) goto parse_failed; *delim = 0; - strlcpy(np->dev_name, cur, sizeof(np->dev_name)); + strscpy(np->dev_name, cur, sizeof(np->dev_name)); cur = delim; } cur++; @@ -627,7 +627,7 @@ int __netpoll_setup(struct netpoll *np, struct net_device *ndev) int err; np->dev = ndev; - strlcpy(np->dev_name, ndev->name, IFNAMSIZ); + strscpy(np->dev_name, ndev->name, IFNAMSIZ); if (ndev->priv_flags & IFF_DISABLE_NETPOLL) { np_err(np, "%s doesn't support polling, aborting\n", diff --git a/net/core/pktgen.c b/net/core/pktgen.c index a3d74e2704c42..a539f26fe4bea 100644 --- a/net/core/pktgen.c +++ b/net/core/pktgen.c @@ -668,19 +668,19 @@ static int pktgen_if_show(struct seq_file *seq, void *v) seq_puts(seq, " Flags: "); for (i = 0; i < NR_PKT_FLAGS; i++) { - if (i == F_FLOW_SEQ) + if (i == FLOW_SEQ_SHIFT) if (!pkt_dev->cflows) continue; - if (pkt_dev->flags & (1 << i)) + if (pkt_dev->flags & (1 << i)) { seq_printf(seq, "%s ", pkt_flag_names[i]); - else if (i == F_FLOW_SEQ) - seq_puts(seq, "FLOW_RND "); - #ifdef CONFIG_XFRM - if (i == F_IPSEC && pkt_dev->spi) - seq_printf(seq, "spi:%u", pkt_dev->spi); + if (i == IPSEC_SHIFT && pkt_dev->spi) + seq_printf(seq, "spi:%u ", pkt_dev->spi); #endif + } else if (i == FLOW_SEQ_SHIFT) { + seq_puts(seq, "FLOW_RND "); + } } seq_puts(seq, "\n"); diff --git a/net/core/scm.c b/net/core/scm.c index acb7d776fa6ec..e762a4b8a1d22 100644 --- a/net/core/scm.c +++ b/net/core/scm.c @@ -26,6 +26,7 @@ #include #include #include +#include #include @@ -103,6 +104,11 @@ static int scm_fp_copy(struct cmsghdr *cmsg, struct scm_fp_list **fplp) if (fd < 0 || !(file = fget_raw(fd))) return -EBADF; + /* don't allow io_uring files */ + if (io_uring_get_socket(file)) { + fput(file); + return -EINVAL; + } *fpp++ = file; fpl->count++; } diff --git a/net/core/skbuff.c b/net/core/skbuff.c index e01dd4cad0fc0..7090844af4991 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -4001,21 +4001,20 @@ struct sk_buff *skb_segment(struct sk_buff *head_skb, struct sk_buff *segs = NULL; struct sk_buff *tail = NULL; struct sk_buff *list_skb = skb_shinfo(head_skb)->frag_list; - skb_frag_t *frag = skb_shinfo(head_skb)->frags; unsigned int mss = skb_shinfo(head_skb)->gso_size; unsigned int doffset = head_skb->data - skb_mac_header(head_skb); - struct sk_buff *frag_skb = head_skb; unsigned int offset = doffset; unsigned int tnl_hlen = skb_tnl_header_len(head_skb); unsigned int partial_segs = 0; unsigned int headroom; unsigned int len = head_skb->len; + struct sk_buff *frag_skb; + skb_frag_t *frag; __be16 proto; bool csum, sg; - int nfrags = skb_shinfo(head_skb)->nr_frags; int err = -ENOMEM; int i = 0; - int pos; + int nfrags, pos; if ((skb_shinfo(head_skb)->gso_type & SKB_GSO_DODGY) && mss != GSO_BY_FRAGS && mss != skb_headlen(head_skb)) { @@ -4092,6 +4091,13 @@ struct sk_buff *skb_segment(struct sk_buff *head_skb, headroom = skb_headroom(head_skb); pos = skb_headlen(head_skb); + if (skb_orphan_frags(head_skb, GFP_ATOMIC)) + return ERR_PTR(-ENOMEM); + + nfrags = skb_shinfo(head_skb)->nr_frags; + frag = skb_shinfo(head_skb)->frags; + frag_skb = head_skb; + do { struct sk_buff *nskb; skb_frag_t *nskb_frag; @@ -4112,6 +4118,10 @@ struct sk_buff *skb_segment(struct sk_buff *head_skb, (skb_headlen(list_skb) == len || sg)) { BUG_ON(skb_headlen(list_skb) > len); + nskb = skb_clone(list_skb, GFP_ATOMIC); + if (unlikely(!nskb)) + goto err; + i = 0; nfrags = skb_shinfo(list_skb)->nr_frags; frag = skb_shinfo(list_skb)->frags; @@ -4130,12 +4140,8 @@ struct sk_buff *skb_segment(struct sk_buff *head_skb, frag++; } - nskb = skb_clone(list_skb, GFP_ATOMIC); list_skb = list_skb->next; - if (unlikely(!nskb)) - goto err; - if (unlikely(pskb_trim(nskb, len))) { kfree_skb(nskb); goto err; @@ -4211,12 +4217,16 @@ struct sk_buff *skb_segment(struct sk_buff *head_skb, skb_shinfo(nskb)->flags |= skb_shinfo(head_skb)->flags & SKBFL_SHARED_FRAG; - if (skb_orphan_frags(frag_skb, GFP_ATOMIC) || - skb_zerocopy_clone(nskb, frag_skb, GFP_ATOMIC)) + if (skb_zerocopy_clone(nskb, frag_skb, GFP_ATOMIC)) goto err; while (pos < offset + len) { if (i >= nfrags) { + if (skb_orphan_frags(list_skb, GFP_ATOMIC) || + skb_zerocopy_clone(nskb, list_skb, + GFP_ATOMIC)) + goto err; + i = 0; nfrags = skb_shinfo(list_skb)->nr_frags; frag = skb_shinfo(list_skb)->frags; @@ -4230,10 +4240,6 @@ struct sk_buff *skb_segment(struct sk_buff *head_skb, i--; frag--; } - if (skb_orphan_frags(frag_skb, GFP_ATOMIC) || - skb_zerocopy_clone(nskb, frag_skb, - GFP_ATOMIC)) - goto err; list_skb = list_skb->next; } diff --git a/net/core/sock.c b/net/core/sock.c index 0da5697a2c123..3b3a1df654444 100644 --- a/net/core/sock.c +++ b/net/core/sock.c @@ -557,7 +557,7 @@ struct dst_entry *__sk_dst_check(struct sock *sk, u32 cookie) INDIRECT_CALL_INET(dst->ops->check, ip6_dst_check, ipv4_dst_check, dst, cookie) == NULL) { sk_tx_queue_clear(sk); - sk->sk_dst_pending_confirm = 0; + WRITE_ONCE(sk->sk_dst_pending_confirm, 0); RCU_INIT_POINTER(sk->sk_dst_cache, NULL); dst_release(dst); return NULL; @@ -717,7 +717,8 @@ bool sk_mc_loop(struct sock *sk) return false; if (!sk) return true; - switch (sk->sk_family) { + /* IPV6_ADDRFORM can change sk->sk_family under us. */ + switch (READ_ONCE(sk->sk_family)) { case AF_INET: return inet_sk(sk)->mc_loop; #if IS_ENABLED(CONFIG_IPV6) @@ -2463,9 +2464,9 @@ static long sock_wait_for_wmem(struct sock *sk, long timeo) prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE); if (refcount_read(&sk->sk_wmem_alloc) < READ_ONCE(sk->sk_sndbuf)) break; - if (sk->sk_shutdown & SEND_SHUTDOWN) + if (READ_ONCE(sk->sk_shutdown) & SEND_SHUTDOWN) break; - if (sk->sk_err) + if (READ_ONCE(sk->sk_err)) break; timeo = schedule_timeout(timeo); } @@ -2493,7 +2494,7 @@ struct sk_buff *sock_alloc_send_pskb(struct sock *sk, unsigned long header_len, goto failure; err = -EPIPE; - if (sk->sk_shutdown & SEND_SHUTDOWN) + if (READ_ONCE(sk->sk_shutdown) & SEND_SHUTDOWN) goto failure; if (sk_wmem_alloc_get(sk) < READ_ONCE(sk->sk_sndbuf)) diff --git a/net/core/sock_map.c b/net/core/sock_map.c index caae43e66353d..ba6d5b38fb238 100644 --- a/net/core/sock_map.c +++ b/net/core/sock_map.c @@ -676,6 +676,8 @@ BPF_CALL_4(bpf_msg_redirect_map, struct sk_msg *, msg, sk = __sock_map_lookup_elem(map, key); if (unlikely(!sk || !sock_map_redirect_allowed(sk))) return SK_DROP; + if (!(flags & BPF_F_INGRESS) && !sk_is_tcp(sk)) + return SK_DROP; msg->flags = flags; msg->sk_redir = sk; @@ -1269,6 +1271,8 @@ BPF_CALL_4(bpf_msg_redirect_hash, struct sk_msg *, msg, sk = __sock_hash_lookup_elem(map, key); if (unlikely(!sk || !sock_map_redirect_allowed(sk))) return SK_DROP; + if (!(flags & BPF_F_INGRESS) && !sk_is_tcp(sk)) + return SK_DROP; msg->flags = flags; msg->sk_redir = sk; diff --git a/net/dccp/ipv4.c b/net/dccp/ipv4.c index 5bcfa1e9a941b..cab82344de9be 100644 --- a/net/dccp/ipv4.c +++ b/net/dccp/ipv4.c @@ -250,12 +250,12 @@ static int dccp_v4_err(struct sk_buff *skb, u32 info) int err; struct net *net = dev_net(skb->dev); - /* Only need dccph_dport & dccph_sport which are the first - * 4 bytes in dccp header. - * Our caller (icmp_socket_deliver()) already pulled 8 bytes for us. - */ - BUILD_BUG_ON(offsetofend(struct dccp_hdr, dccph_sport) > 8); - BUILD_BUG_ON(offsetofend(struct dccp_hdr, dccph_dport) > 8); + if (!pskb_may_pull(skb, offset + sizeof(*dh))) + return -EINVAL; + dh = (struct dccp_hdr *)(skb->data + offset); + if (!pskb_may_pull(skb, offset + __dccp_basic_hdr_len(dh))) + return -EINVAL; + iph = (struct iphdr *)skb->data; dh = (struct dccp_hdr *)(skb->data + offset); sk = __inet_lookup_established(net, &dccp_hashinfo, @@ -623,9 +623,6 @@ int dccp_v4_conn_request(struct sock *sk, struct sk_buff *skb) if (dccp_parse_options(sk, dreq, skb)) goto drop_and_free; - if (security_inet_conn_request(sk, skb, req)) - goto drop_and_free; - ireq = inet_rsk(req); sk_rcv_saddr_set(req_to_sk(req), ip_hdr(skb)->daddr); sk_daddr_set(req_to_sk(req), ip_hdr(skb)->saddr); @@ -633,6 +630,9 @@ int dccp_v4_conn_request(struct sock *sk, struct sk_buff *skb) ireq->ireq_family = AF_INET; ireq->ir_iif = sk->sk_bound_dev_if; + if (security_inet_conn_request(sk, skb, req)) + goto drop_and_free; + /* * Step 3: Process LISTEN state * diff --git a/net/dccp/ipv6.c b/net/dccp/ipv6.c index b1fa335e0b521..6f05e9d0d4287 100644 --- a/net/dccp/ipv6.c +++ b/net/dccp/ipv6.c @@ -74,7 +74,7 @@ static inline __u64 dccp_v6_init_sequence(struct sk_buff *skb) static int dccp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, u8 type, u8 code, int offset, __be32 info) { - const struct ipv6hdr *hdr = (const struct ipv6hdr *)skb->data; + const struct ipv6hdr *hdr; const struct dccp_hdr *dh; struct dccp_sock *dp; struct ipv6_pinfo *np; @@ -83,12 +83,12 @@ static int dccp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, __u64 seq; struct net *net = dev_net(skb->dev); - /* Only need dccph_dport & dccph_sport which are the first - * 4 bytes in dccp header. - * Our caller (icmpv6_notify()) already pulled 8 bytes for us. - */ - BUILD_BUG_ON(offsetofend(struct dccp_hdr, dccph_sport) > 8); - BUILD_BUG_ON(offsetofend(struct dccp_hdr, dccph_dport) > 8); + if (!pskb_may_pull(skb, offset + sizeof(*dh))) + return -EINVAL; + dh = (struct dccp_hdr *)(skb->data + offset); + if (!pskb_may_pull(skb, offset + __dccp_basic_hdr_len(dh))) + return -EINVAL; + hdr = (const struct ipv6hdr *)skb->data; dh = (struct dccp_hdr *)(skb->data + offset); sk = __inet6_lookup_established(net, &dccp_hashinfo, @@ -359,15 +359,15 @@ static int dccp_v6_conn_request(struct sock *sk, struct sk_buff *skb) if (dccp_parse_options(sk, dreq, skb)) goto drop_and_free; - if (security_inet_conn_request(sk, skb, req)) - goto drop_and_free; - ireq = inet_rsk(req); ireq->ir_v6_rmt_addr = ipv6_hdr(skb)->saddr; ireq->ir_v6_loc_addr = ipv6_hdr(skb)->daddr; ireq->ireq_family = AF_INET6; ireq->ir_mark = inet_request_mark(sk, skb); + if (security_inet_conn_request(sk, skb, req)) + goto drop_and_free; + if (ipv6_opt_accepted(sk, skb, IP6CB(skb)) || np->rxopt.bits.rxinfo || np->rxopt.bits.rxoinfo || np->rxopt.bits.rxhlim || np->rxopt.bits.rxohlim) { diff --git a/net/dccp/proto.c b/net/dccp/proto.c index 0b0567a692a8f..1b285a57c7aab 100644 --- a/net/dccp/proto.c +++ b/net/dccp/proto.c @@ -1131,7 +1131,6 @@ static int __init dccp_init(void) BUILD_BUG_ON(sizeof(struct dccp_skb_cb) > sizeof_field(struct sk_buff, cb)); - inet_hashinfo_init(&dccp_hashinfo); rc = inet_hashinfo2_init_mod(&dccp_hashinfo); if (rc) goto out_fail; diff --git a/net/hsr/hsr_forward.c b/net/hsr/hsr_forward.c index 35382ed686d1d..e31747d328e70 100644 --- a/net/hsr/hsr_forward.c +++ b/net/hsr/hsr_forward.c @@ -300,9 +300,7 @@ struct sk_buff *prp_create_tagged_frame(struct hsr_frame_info *frame, skb = skb_copy_expand(frame->skb_std, 0, skb_tailroom(frame->skb_std) + HSR_HLEN, GFP_ATOMIC); - prp_fill_rct(skb, frame, port); - - return skb; + return prp_fill_rct(skb, frame, port); } static void hsr_deliver_master(struct sk_buff *skb, struct net_device *dev, @@ -552,6 +550,7 @@ static int fill_frame_info(struct hsr_frame_info *frame, proto = vlan_hdr->vlanhdr.h_vlan_encapsulated_proto; /* FIXME: */ netdev_warn_once(skb->dev, "VLAN not yet supported"); + return -EINVAL; } frame->is_from_san = false; diff --git a/net/ipv4/devinet.c b/net/ipv4/devinet.c index 9ac41ffdc6344..c511751c2f41a 100644 --- a/net/ipv4/devinet.c +++ b/net/ipv4/devinet.c @@ -351,14 +351,14 @@ static void __inet_del_ifa(struct in_device *in_dev, { struct in_ifaddr *promote = NULL; struct in_ifaddr *ifa, *ifa1; - struct in_ifaddr *last_prim; + struct in_ifaddr __rcu **last_prim; struct in_ifaddr *prev_prom = NULL; int do_promote = IN_DEV_PROMOTE_SECONDARIES(in_dev); ASSERT_RTNL(); ifa1 = rtnl_dereference(*ifap); - last_prim = rtnl_dereference(in_dev->ifa_list); + last_prim = ifap; if (in_dev->dead) goto no_promotions; @@ -372,7 +372,7 @@ static void __inet_del_ifa(struct in_device *in_dev, while ((ifa = rtnl_dereference(*ifap1)) != NULL) { if (!(ifa->ifa_flags & IFA_F_SECONDARY) && ifa1->ifa_scope <= ifa->ifa_scope) - last_prim = ifa; + last_prim = &ifa->ifa_next; if (!(ifa->ifa_flags & IFA_F_SECONDARY) || ifa1->ifa_mask != ifa->ifa_mask || @@ -436,9 +436,9 @@ static void __inet_del_ifa(struct in_device *in_dev, rcu_assign_pointer(prev_prom->ifa_next, next_sec); - last_sec = rtnl_dereference(last_prim->ifa_next); + last_sec = rtnl_dereference(*last_prim); rcu_assign_pointer(promote->ifa_next, last_sec); - rcu_assign_pointer(last_prim->ifa_next, promote); + rcu_assign_pointer(*last_prim, promote); } promote->ifa_flags &= ~IFA_F_SECONDARY; diff --git a/net/ipv4/esp4.c b/net/ipv4/esp4.c index 386e9875e5b80..ca0cd94eb22d1 100644 --- a/net/ipv4/esp4.c +++ b/net/ipv4/esp4.c @@ -739,7 +739,9 @@ static inline int esp_remove_trailer(struct sk_buff *skb) skb->csum = csum_block_sub(skb->csum, csumdiff, skb->len - trimlen); } - pskb_trim(skb, skb->len - trimlen); + ret = pskb_trim(skb, skb->len - trimlen); + if (unlikely(ret)) + return ret; ret = nexthdr[1]; diff --git a/net/ipv4/fib_semantics.c b/net/ipv4/fib_semantics.c index 607a4f8161555..735901b8c9f69 100644 --- a/net/ipv4/fib_semantics.c +++ b/net/ipv4/fib_semantics.c @@ -276,7 +276,8 @@ void fib_release_info(struct fib_info *fi) hlist_del(&nexthop_nh->nh_hash); } endfor_nexthops(fi) } - fi->fib_dead = 1; + /* Paired with READ_ONCE() from fib_table_lookup() */ + WRITE_ONCE(fi->fib_dead, 1); fib_info_put(fi); } spin_unlock_bh(&fib_info_lock); @@ -1343,15 +1344,18 @@ __be32 fib_info_update_nhc_saddr(struct net *net, struct fib_nh_common *nhc, unsigned char scope) { struct fib_nh *nh; + __be32 saddr; if (nhc->nhc_family != AF_INET) return inet_select_addr(nhc->nhc_dev, 0, scope); nh = container_of(nhc, struct fib_nh, nh_common); - nh->nh_saddr = inet_select_addr(nh->fib_nh_dev, nh->fib_nh_gw4, scope); - nh->nh_saddr_genid = atomic_read(&net->ipv4.dev_addr_genid); + saddr = inet_select_addr(nh->fib_nh_dev, nh->fib_nh_gw4, scope); + + WRITE_ONCE(nh->nh_saddr, saddr); + WRITE_ONCE(nh->nh_saddr_genid, atomic_read(&net->ipv4.dev_addr_genid)); - return nh->nh_saddr; + return saddr; } __be32 fib_result_prefsrc(struct net *net, struct fib_result *res) @@ -1365,8 +1369,9 @@ __be32 fib_result_prefsrc(struct net *net, struct fib_result *res) struct fib_nh *nh; nh = container_of(nhc, struct fib_nh, nh_common); - if (nh->nh_saddr_genid == atomic_read(&net->ipv4.dev_addr_genid)) - return nh->nh_saddr; + if (READ_ONCE(nh->nh_saddr_genid) == + atomic_read(&net->ipv4.dev_addr_genid)) + return READ_ONCE(nh->nh_saddr); } return fib_info_update_nhc_saddr(net, nhc, res->fi->fib_scope); @@ -1598,6 +1603,7 @@ struct fib_info *fib_create_info(struct fib_config *cfg, link_it: ofi = fib_find_info(fi); if (ofi) { + /* fib_table_lookup() should not see @fi yet. */ fi->fib_dead = 1; free_fib_info(fi); refcount_inc(&ofi->fib_treeref); @@ -1636,6 +1642,7 @@ struct fib_info *fib_create_info(struct fib_config *cfg, failure: if (fi) { + /* fib_table_lookup() should not see @fi yet. */ fi->fib_dead = 1; free_fib_info(fi); } @@ -1901,6 +1908,7 @@ int fib_sync_down_addr(struct net_device *dev, __be32 local) continue; if (fi->fib_prefsrc == local) { fi->fib_flags |= RTNH_F_DEAD; + fi->pfsrc_removed = true; ret++; } } diff --git a/net/ipv4/fib_trie.c b/net/ipv4/fib_trie.c index 52f9f69f57b32..0b74debeecbb1 100644 --- a/net/ipv4/fib_trie.c +++ b/net/ipv4/fib_trie.c @@ -1578,7 +1578,8 @@ int fib_table_lookup(struct fib_table *tb, const struct flowi4 *flp, } if (fa->fa_tos && fa->fa_tos != flp->flowi4_tos) continue; - if (fi->fib_dead) + /* Paired with WRITE_ONCE() in fib_release_info() */ + if (READ_ONCE(fi->fib_dead)) continue; if (fa->fa_info->fib_scope < flp->flowi4_scope) continue; @@ -2020,6 +2021,7 @@ void fib_table_flush_external(struct fib_table *tb) int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all) { struct trie *t = (struct trie *)tb->tb_data; + struct nl_info info = { .nl_net = net }; struct key_vector *pn = t->kv; unsigned long cindex = 1; struct hlist_node *tmp; @@ -2082,6 +2084,9 @@ int fib_table_flush(struct net *net, struct fib_table *tb, bool flush_all) fib_notify_alias_delete(net, n->key, &n->leaf, fa, NULL); + if (fi->pfsrc_removed) + rtmsg_fib(RTM_DELROUTE, htonl(n->key), fa, + KEYLENGTH - fa->fa_slen, tb->tb_id, &info, 0); hlist_del_rcu(&fa->fa_list); fib_release_info(fa->fa_info); alias_free_mem_rcu(fa); diff --git a/net/ipv4/igmp.c b/net/ipv4/igmp.c index 1f63dc8897a40..88e780a168652 100644 --- a/net/ipv4/igmp.c +++ b/net/ipv4/igmp.c @@ -216,8 +216,10 @@ static void igmp_start_timer(struct ip_mc_list *im, int max_delay) int tv = prandom_u32() % max_delay; im->tm_running = 1; - if (!mod_timer(&im->timer, jiffies+tv+2)) - refcount_inc(&im->refcnt); + if (refcount_inc_not_zero(&im->refcnt)) { + if (mod_timer(&im->timer, jiffies + tv + 2)) + ip_ma_put(im); + } } static void igmp_gq_start_timer(struct in_device *in_dev) diff --git a/net/ipv4/inet_diag.c b/net/ipv4/inet_diag.c index ae70e07c52445..09cabed358fd0 100644 --- a/net/ipv4/inet_diag.c +++ b/net/ipv4/inet_diag.c @@ -1028,12 +1028,13 @@ void inet_diag_dump_icsk(struct inet_hashinfo *hashinfo, struct sk_buff *skb, if (!(idiag_states & TCPF_LISTEN) || r->id.idiag_dport) goto skip_listen_ht; - for (i = s_i; i < INET_LHTABLE_SIZE; i++) { + for (i = s_i; i <= hashinfo->lhash2_mask; i++) { struct inet_listen_hashbucket *ilb; struct hlist_nulls_node *node; num = 0; - ilb = &hashinfo->listening_hash[i]; + ilb = &hashinfo->lhash2[i]; + spin_lock(&ilb->lock); sk_nulls_for_each(sk, node, &ilb->nulls_head) { struct inet_sock *inet = inet_sk(sk); diff --git a/net/ipv4/inet_hashtables.c b/net/ipv4/inet_hashtables.c index 2936676f86eb8..b4e0120af9c2b 100644 --- a/net/ipv4/inet_hashtables.c +++ b/net/ipv4/inet_hashtables.c @@ -193,42 +193,6 @@ inet_lhash2_bucket_sk(struct inet_hashinfo *h, struct sock *sk) return inet_lhash2_bucket(h, hash); } -static void inet_hash2(struct inet_hashinfo *h, struct sock *sk) -{ - struct inet_listen_hashbucket *ilb2; - - if (!h->lhash2) - return; - - ilb2 = inet_lhash2_bucket_sk(h, sk); - - spin_lock(&ilb2->lock); - if (sk->sk_reuseport && sk->sk_family == AF_INET6) - hlist_add_tail_rcu(&inet_csk(sk)->icsk_listen_portaddr_node, - &ilb2->head); - else - hlist_add_head_rcu(&inet_csk(sk)->icsk_listen_portaddr_node, - &ilb2->head); - ilb2->count++; - spin_unlock(&ilb2->lock); -} - -static void inet_unhash2(struct inet_hashinfo *h, struct sock *sk) -{ - struct inet_listen_hashbucket *ilb2; - - if (!h->lhash2 || - WARN_ON_ONCE(hlist_unhashed(&inet_csk(sk)->icsk_listen_portaddr_node))) - return; - - ilb2 = inet_lhash2_bucket_sk(h, sk); - - spin_lock(&ilb2->lock); - hlist_del_init_rcu(&inet_csk(sk)->icsk_listen_portaddr_node); - ilb2->count--; - spin_unlock(&ilb2->lock); -} - static inline int compute_score(struct sock *sk, struct net *net, const unsigned short hnum, const __be32 daddr, const int dif, const int sdif) @@ -282,12 +246,11 @@ static struct sock *inet_lhash2_lookup(struct net *net, const __be32 daddr, const unsigned short hnum, const int dif, const int sdif) { - struct inet_connection_sock *icsk; struct sock *sk, *result = NULL; + struct hlist_nulls_node *node; int score, hiscore = 0; - inet_lhash2_for_each_icsk_rcu(icsk, &ilb2->head) { - sk = (struct sock *)icsk; + sk_nulls_for_each_rcu(sk, node, &ilb2->nulls_head) { score = compute_score(sk, net, hnum, daddr, dif, sdif); if (score > hiscore) { result = lookup_reuseport(net, sk, skb, doff, @@ -628,7 +591,7 @@ static int inet_reuseport_add_sock(struct sock *sk, int __inet_hash(struct sock *sk, struct sock *osk) { struct inet_hashinfo *hashinfo = sk->sk_prot->h.hashinfo; - struct inet_listen_hashbucket *ilb; + struct inet_listen_hashbucket *ilb2; int err = 0; if (sk->sk_state != TCP_LISTEN) { @@ -638,25 +601,23 @@ int __inet_hash(struct sock *sk, struct sock *osk) return 0; } WARN_ON(!sk_unhashed(sk)); - ilb = &hashinfo->listening_hash[inet_sk_listen_hashfn(sk)]; + ilb2 = inet_lhash2_bucket_sk(hashinfo, sk); - spin_lock(&ilb->lock); + spin_lock(&ilb2->lock); if (sk->sk_reuseport) { - err = inet_reuseport_add_sock(sk, ilb); + err = inet_reuseport_add_sock(sk, ilb2); if (err) goto unlock; } + sock_set_flag(sk, SOCK_RCU_FREE); if (IS_ENABLED(CONFIG_IPV6) && sk->sk_reuseport && sk->sk_family == AF_INET6) - __sk_nulls_add_node_tail_rcu(sk, &ilb->nulls_head); + __sk_nulls_add_node_tail_rcu(sk, &ilb2->nulls_head); else - __sk_nulls_add_node_rcu(sk, &ilb->nulls_head); - inet_hash2(hashinfo, sk); - ilb->count++; - sock_set_flag(sk, SOCK_RCU_FREE); + __sk_nulls_add_node_rcu(sk, &ilb2->nulls_head); sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1); unlock: - spin_unlock(&ilb->lock); + spin_unlock(&ilb2->lock); return err; } @@ -673,23 +634,6 @@ int inet_hash(struct sock *sk) } EXPORT_SYMBOL_GPL(inet_hash); -static void __inet_unhash(struct sock *sk, struct inet_listen_hashbucket *ilb) -{ - if (sk_unhashed(sk)) - return; - - if (rcu_access_pointer(sk->sk_reuseport_cb)) - reuseport_stop_listen_sock(sk); - if (ilb) { - struct inet_hashinfo *hashinfo = sk->sk_prot->h.hashinfo; - - inet_unhash2(hashinfo, sk); - ilb->count--; - } - __sk_nulls_del_node_init_rcu(sk); - sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1); -} - void inet_unhash(struct sock *sk) { struct inet_hashinfo *hashinfo = sk->sk_prot->h.hashinfo; @@ -698,20 +642,34 @@ void inet_unhash(struct sock *sk) return; if (sk->sk_state == TCP_LISTEN) { - struct inet_listen_hashbucket *ilb; + struct inet_listen_hashbucket *ilb2; - ilb = &hashinfo->listening_hash[inet_sk_listen_hashfn(sk)]; + ilb2 = inet_lhash2_bucket_sk(hashinfo, sk); /* Don't disable bottom halves while acquiring the lock to * avoid circular locking dependency on PREEMPT_RT. */ - spin_lock(&ilb->lock); - __inet_unhash(sk, ilb); - spin_unlock(&ilb->lock); + spin_lock(&ilb2->lock); + if (sk_unhashed(sk)) { + spin_unlock(&ilb2->lock); + return; + } + + if (rcu_access_pointer(sk->sk_reuseport_cb)) + reuseport_stop_listen_sock(sk); + + __sk_nulls_del_node_init_rcu(sk); + sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1); + spin_unlock(&ilb2->lock); } else { spinlock_t *lock = inet_ehash_lockp(hashinfo, sk->sk_hash); spin_lock_bh(lock); - __inet_unhash(sk, NULL); + if (sk_unhashed(sk)) { + spin_unlock_bh(lock); + return; + } + __sk_nulls_del_node_init_rcu(sk); + sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1); spin_unlock_bh(lock); } } @@ -859,29 +817,14 @@ int inet_hash_connect(struct inet_timewait_death_row *death_row, } EXPORT_SYMBOL_GPL(inet_hash_connect); -void inet_hashinfo_init(struct inet_hashinfo *h) -{ - int i; - - for (i = 0; i < INET_LHTABLE_SIZE; i++) { - spin_lock_init(&h->listening_hash[i].lock); - INIT_HLIST_NULLS_HEAD(&h->listening_hash[i].nulls_head, - i + LISTENING_NULLS_BASE); - h->listening_hash[i].count = 0; - } - - h->lhash2 = NULL; -} -EXPORT_SYMBOL_GPL(inet_hashinfo_init); - static void init_hashinfo_lhash2(struct inet_hashinfo *h) { int i; for (i = 0; i <= h->lhash2_mask; i++) { spin_lock_init(&h->lhash2[i].lock); - INIT_HLIST_HEAD(&h->lhash2[i].head); - h->lhash2[i].count = 0; + INIT_HLIST_NULLS_HEAD(&h->lhash2[i].nulls_head, + i + LISTENING_NULLS_BASE); } } diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c index c094963a86f1e..5d17e5f5d090d 100644 --- a/net/ipv4/ip_gre.c +++ b/net/ipv4/ip_gre.c @@ -634,15 +634,18 @@ static netdev_tx_t ipgre_xmit(struct sk_buff *skb, } if (dev->header_ops) { + int pull_len = tunnel->hlen + sizeof(struct iphdr); + if (skb_cow_head(skb, 0)) goto free_skb; tnl_params = (const struct iphdr *)skb->data; - /* Pull skb since ip_tunnel_xmit() needs skb->data pointing - * to gre header. - */ - skb_pull(skb, tunnel->hlen + sizeof(struct iphdr)); + if (!pskb_network_may_pull(skb, pull_len)) + goto free_skb; + + /* ip_tunnel_xmit() needs skb->data pointing to gre header. */ + skb_pull(skb, pull_len); skb_reset_mac_header(skb); if (skb->ip_summed == CHECKSUM_PARTIAL && diff --git a/net/ipv4/ip_input.c b/net/ipv4/ip_input.c index 124bf8fdf924a..5d0bc0dbdb4d9 100644 --- a/net/ipv4/ip_input.c +++ b/net/ipv4/ip_input.c @@ -581,7 +581,8 @@ static void ip_sublist_rcv_finish(struct list_head *head) static struct sk_buff *ip_extract_route_hint(const struct net *net, struct sk_buff *skb, int rt_type) { - if (fib4_has_custom_rules(net) || rt_type == RTN_BROADCAST) + if (fib4_has_custom_rules(net) || rt_type == RTN_BROADCAST || + IPCB(skb)->flags & IPSKB_MULTIPATH) return NULL; return skb; diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c index ae8a456df5ab2..a5f09d64c6ed1 100644 --- a/net/ipv4/ip_output.c +++ b/net/ipv4/ip_output.c @@ -214,7 +214,7 @@ static int ip_finish_output2(struct net *net, struct sock *sk, struct sk_buff *s if (lwtunnel_xmit_redirect(dst->lwtstate)) { int res = lwtunnel_xmit(skb); - if (res < 0 || res == LWTUNNEL_XMIT_DONE) + if (res != LWTUNNEL_XMIT_CONTINUE) return res; } diff --git a/net/ipv4/route.c b/net/ipv4/route.c index f4f6dc356f67c..12c59d700942f 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c @@ -786,7 +786,7 @@ static void __ip_do_redirect(struct rtable *rt, struct sk_buff *skb, struct flow goto reject_redirect; } - n = __ipv4_neigh_lookup(rt->dst.dev, new_gw); + n = __ipv4_neigh_lookup(rt->dst.dev, (__force u32)new_gw); if (!n) n = neigh_create(&arp_tbl, &new_gw, rt->dst.dev); if (!IS_ERR(n)) { @@ -2153,6 +2153,7 @@ static int ip_mkroute_input(struct sk_buff *skb, int h = fib_multipath_hash(res->fi->fib_net, NULL, skb, hkeys); fib_select_multipath(res, h); + IPCB(skb)->flags |= IPSKB_MULTIPATH; } #endif @@ -3429,6 +3430,8 @@ static int inet_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh, fa->fa_type == fri.type) { fri.offload = READ_ONCE(fa->offload); fri.trap = READ_ONCE(fa->trap); + fri.offload_failed = + READ_ONCE(fa->offload_failed); break; } } diff --git a/net/ipv4/syncookies.c b/net/ipv4/syncookies.c index 3aab914eb1039..03b0505178f9a 100644 --- a/net/ipv4/syncookies.c +++ b/net/ipv4/syncookies.c @@ -43,7 +43,6 @@ static siphash_key_t syncookie_secret[2] __read_mostly; * requested/supported by the syn/synack exchange. */ #define TSBITS 6 -#define TSMASK (((__u32)1 << TSBITS) - 1) static u32 cookie_hash(__be32 saddr, __be32 daddr, __be16 sport, __be16 dport, u32 count, int c) @@ -64,27 +63,22 @@ static u32 cookie_hash(__be32 saddr, __be32 daddr, __be16 sport, __be16 dport, */ u64 cookie_init_timestamp(struct request_sock *req, u64 now) { - struct inet_request_sock *ireq; - u32 ts, ts_now = tcp_ns_to_ts(now); + const struct inet_request_sock *ireq = inet_rsk(req); + u64 ts, ts_now = tcp_ns_to_ts(now); u32 options = 0; - ireq = inet_rsk(req); - options = ireq->wscale_ok ? ireq->snd_wscale : TS_OPT_WSCALE_MASK; if (ireq->sack_ok) options |= TS_OPT_SACK; if (ireq->ecn_ok) options |= TS_OPT_ECN; - ts = ts_now & ~TSMASK; + ts = (ts_now >> TSBITS) << TSBITS; ts |= options; - if (ts > ts_now) { - ts >>= TSBITS; - ts--; - ts <<= TSBITS; - ts |= options; - } - return (u64)ts * (NSEC_PER_SEC / TCP_TS_HZ); + if (ts > ts_now) + ts -= (1UL << TSBITS); + + return ts * (NSEC_PER_SEC / TCP_TS_HZ); } diff --git a/net/ipv4/sysctl_net_ipv4.c b/net/ipv4/sysctl_net_ipv4.c index 1f22e72074fdc..00ee27caf3875 100644 --- a/net/ipv4/sysctl_net_ipv4.c +++ b/net/ipv4/sysctl_net_ipv4.c @@ -1362,6 +1362,14 @@ static struct ctl_table ipv4_net_table[] = { .extra1 = SYSCTL_ZERO, .extra2 = &two, }, + { + .procname = "tcp_pingpong_thresh", + .data = &init_net.ipv4.sysctl_tcp_pingpong_thresh, + .maxlen = sizeof(u8), + .mode = 0644, + .proc_handler = proc_dou8vec_minmax, + .extra1 = SYSCTL_ONE, + }, { } }; diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c index 7e090b3adf2af..10c6916449c20 100644 --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c @@ -953,8 +953,10 @@ int tcp_send_mss(struct sock *sk, int *size_goal, int flags) * importantly be able to generate EPOLLOUT for Edge Trigger epoll() * users. */ -void tcp_remove_empty_skb(struct sock *sk, struct sk_buff *skb) +void tcp_remove_empty_skb(struct sock *sk) { + struct sk_buff *skb = tcp_write_queue_tail(sk); + if (skb && TCP_SKB_CB(skb)->seq == TCP_SKB_CB(skb)->end_seq) { tcp_unlink_write_queue(skb, sk); if (tcp_write_queue_empty(sk)) @@ -1107,7 +1109,7 @@ ssize_t do_tcp_sendpages(struct sock *sk, struct page *page, int offset, return copied; do_error: - tcp_remove_empty_skb(sk, tcp_write_queue_tail(sk)); + tcp_remove_empty_skb(sk); if (copied) goto out; out_err: @@ -1330,14 +1332,7 @@ int tcp_sendmsg_locked(struct sock *sk, struct msghdr *msg, size_t size) if (copy > msg_data_left(msg)) copy = msg_data_left(msg); - /* Where to copy to? */ - if (skb_availroom(skb) > 0 && !zc) { - /* We have some space in skb head. Superb! */ - copy = min_t(int, copy, skb_availroom(skb)); - err = skb_add_data_nocache(sk, skb, &msg->msg_iter, copy); - if (err) - goto do_fault; - } else if (!zc) { + if (!zc) { bool merge = true; int i = skb_shinfo(skb)->nr_frags; struct page_frag *pfrag = sk_page_frag(sk); @@ -1436,9 +1431,7 @@ int tcp_sendmsg_locked(struct sock *sk, struct msghdr *msg, size_t size) return copied + copied_syn; do_error: - skb = tcp_write_queue_tail(sk); -do_fault: - tcp_remove_empty_skb(sk, skb); + tcp_remove_empty_skb(sk); if (copied + copied_syn) goto out; @@ -4563,7 +4556,6 @@ void __init tcp_init(void) timer_setup(&tcp_orphan_timer, tcp_orphan_update, TIMER_DEFERRABLE); mod_timer(&tcp_orphan_timer, jiffies + TCP_ORPHAN_TIMER_PERIOD); - inet_hashinfo_init(&tcp_hashinfo); inet_hashinfo2_init(&tcp_hashinfo, "tcp_listen_portaddr_hash", thash_entries, 21, /* one slot per 2 MB*/ 0, 64 * 1024); diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index 6849094e5e5e8..e51b5d887c24b 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c @@ -243,6 +243,19 @@ static void tcp_measure_rcv_mss(struct sock *sk, const struct sk_buff *skb) if (unlikely(len > icsk->icsk_ack.rcv_mss + MAX_TCP_OPTION_SPACE)) tcp_gro_dev_warn(sk, skb, len); + /* If the skb has a len of exactly 1*MSS and has the PSH bit + * set then it is likely the end of an application write. So + * more data may not be arriving soon, and yet the data sender + * may be waiting for an ACK if cwnd-bound or using TX zero + * copy. So we set ICSK_ACK_PUSHED here so that + * tcp_cleanup_rbuf() will send an ACK immediately if the app + * reads all of the data and is not ping-pong. If len > MSS + * then this logic does not matter (and does not hurt) because + * tcp_cleanup_rbuf() will always ACK immediately if the app + * reads data and there is more than an MSS of unACKed data. + */ + if (TCP_SKB_CB(skb)->tcp_flags & TCPHDR_PSH) + icsk->icsk_ack.pending |= ICSK_ACK_PUSHED; } else { /* Otherwise, we make more careful check taking into account, * that SACKs block is variable. @@ -287,7 +300,7 @@ static void tcp_incr_quickack(struct sock *sk, unsigned int max_quickacks) icsk->icsk_ack.quick = quickacks; } -void tcp_enter_quickack_mode(struct sock *sk, unsigned int max_quickacks) +static void tcp_enter_quickack_mode(struct sock *sk, unsigned int max_quickacks) { struct inet_connection_sock *icsk = inet_csk(sk); @@ -295,7 +308,6 @@ void tcp_enter_quickack_mode(struct sock *sk, unsigned int max_quickacks) inet_csk_exit_pingpong_mode(sk); icsk->icsk_ack.ato = TCP_ATO_MIN; } -EXPORT_SYMBOL(tcp_enter_quickack_mode); /* Send ACKs quickly, if "quick" count is not exhausted * and the session is not interactive. @@ -2183,16 +2195,17 @@ void tcp_enter_loss(struct sock *sk) * restore sanity to the SACK scoreboard. If the apparent reneging * persists until this RTO then we'll clear the SACK scoreboard. */ -static bool tcp_check_sack_reneging(struct sock *sk, int flag) +static bool tcp_check_sack_reneging(struct sock *sk, int *ack_flag) { - if (flag & FLAG_SACK_RENEGING && - flag & FLAG_SND_UNA_ADVANCED) { + if (*ack_flag & FLAG_SACK_RENEGING && + *ack_flag & FLAG_SND_UNA_ADVANCED) { struct tcp_sock *tp = tcp_sk(sk); unsigned long delay = max(usecs_to_jiffies(tp->srtt_us >> 4), msecs_to_jiffies(10)); inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS, delay, TCP_RTO_MAX); + *ack_flag &= ~FLAG_SET_XMIT_TIMER; return true; } return false; @@ -2962,7 +2975,7 @@ static void tcp_fastretrans_alert(struct sock *sk, const u32 prior_snd_una, tp->prior_ssthresh = 0; /* B. In all the states check for reneging SACKs. */ - if (tcp_check_sack_reneging(sk, flag)) + if (tcp_check_sack_reneging(sk, ack_flag)) return; /* C. Check consistency of the current state. */ @@ -3783,8 +3796,12 @@ static int tcp_ack(struct sock *sk, const struct sk_buff *skb, int flag) * then we can probably ignore it. */ if (before(ack, prior_snd_una)) { + u32 max_window; + + /* do not accept ACK for bytes we never sent. */ + max_window = min_t(u64, tp->max_window, tp->bytes_acked); /* RFC 5961 5.2 [Blind Data Injection Attack].[Mitigation] */ - if (before(ack, prior_snd_una - tp->max_window)) { + if (before(ack, prior_snd_una - max_window)) { if (!(flag & FLAG_NO_CHALLENGE_ACK)) tcp_send_challenge_ack(sk, skb); return -1; @@ -6363,22 +6380,23 @@ static int tcp_rcv_synsent_state_process(struct sock *sk, struct sk_buff *skb, static void tcp_rcv_synrecv_state_fastopen(struct sock *sk) { + struct tcp_sock *tp = tcp_sk(sk); struct request_sock *req; /* If we are still handling the SYNACK RTO, see if timestamp ECR allows * undo. If peer SACKs triggered fast recovery, we can't undo here. */ - if (inet_csk(sk)->icsk_ca_state == TCP_CA_Loss) - tcp_try_undo_loss(sk, false); + if (inet_csk(sk)->icsk_ca_state == TCP_CA_Loss && !tp->packets_out) + tcp_try_undo_recovery(sk); /* Reset rtx states to prevent spurious retransmits_timed_out() */ - tcp_sk(sk)->retrans_stamp = 0; + tp->retrans_stamp = 0; inet_csk(sk)->icsk_retransmits = 0; /* Once we leave TCP_SYN_RECV or TCP_FIN_WAIT_1, * we no longer need req so release it. */ - req = rcu_dereference_protected(tcp_sk(sk)->fastopen_rsk, + req = rcu_dereference_protected(tp->fastopen_rsk, lockdep_sock_is_held(sk)); reqsk_fastopen_remove(sk, req, false); diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c index b5cb674eca1c7..2ec3af9629e27 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c @@ -1863,6 +1863,7 @@ bool tcp_add_backlog(struct sock *sk, struct sk_buff *skb) #ifdef CONFIG_TLS_DEVICE tail->decrypted != skb->decrypted || #endif + !mptcp_skb_can_collapse(tail, skb) || thtail->doff != th->doff || memcmp(thtail + 1, th + 1, hdrlen - sizeof(*th))) goto no_coalesce; @@ -2342,16 +2343,15 @@ static void *listening_get_first(struct seq_file *seq) st->offset = 0; for (; st->bucket <= tcp_hashinfo.lhash2_mask; st->bucket++) { struct inet_listen_hashbucket *ilb2; - struct inet_connection_sock *icsk; + struct hlist_nulls_node *node; struct sock *sk; ilb2 = &tcp_hashinfo.lhash2[st->bucket]; - if (hlist_empty(&ilb2->head)) + if (hlist_nulls_empty(&ilb2->nulls_head)) continue; spin_lock(&ilb2->lock); - inet_lhash2_for_each_icsk(icsk, &ilb2->head) { - sk = (struct sock *)icsk; + sk_nulls_for_each(sk, node, &ilb2->nulls_head) { if (seq_sk_match(seq, sk)) return sk; } @@ -2370,15 +2370,14 @@ static void *listening_get_next(struct seq_file *seq, void *cur) { struct tcp_iter_state *st = seq->private; struct inet_listen_hashbucket *ilb2; - struct inet_connection_sock *icsk; + struct hlist_nulls_node *node; struct sock *sk = cur; ++st->num; ++st->offset; - icsk = inet_csk(sk); - inet_lhash2_for_each_icsk_continue(icsk) { - sk = (struct sock *)icsk; + sk = sk_nulls_next(sk); + sk_nulls_for_each_from(sk, node) { if (seq_sk_match(seq, sk)) return sk; } @@ -2787,16 +2786,15 @@ static unsigned int bpf_iter_tcp_listening_batch(struct seq_file *seq, { struct bpf_tcp_iter_state *iter = seq->private; struct tcp_iter_state *st = &iter->state; - struct inet_connection_sock *icsk; + struct hlist_nulls_node *node; unsigned int expected = 1; struct sock *sk; sock_hold(start_sk); iter->batch[iter->end_sk++] = start_sk; - icsk = inet_csk(start_sk); - inet_lhash2_for_each_icsk_continue(icsk) { - sk = (struct sock *)icsk; + sk = sk_nulls_next(start_sk); + sk_nulls_for_each_from(sk, node) { if (seq_sk_match(seq, sk)) { if (iter->end_sk < iter->max_sk) { sock_hold(sk); @@ -3213,6 +3211,8 @@ static int __net_init tcp_sk_init(struct net *net) else net->ipv4.tcp_congestion_control = &tcp_reno; + net->ipv4.sysctl_tcp_pingpong_thresh = 1; + return 0; } diff --git a/net/ipv4/tcp_metrics.c b/net/ipv4/tcp_metrics.c index 5df97aaac252e..def337f72c860 100644 --- a/net/ipv4/tcp_metrics.c +++ b/net/ipv4/tcp_metrics.c @@ -470,11 +470,15 @@ void tcp_init_metrics(struct sock *sk) u32 val, crtt = 0; /* cached RTT scaled by 8 */ sk_dst_confirm(sk); + /* ssthresh may have been reduced unnecessarily during. + * 3WHS. Restore it back to its initial default. + */ + tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; if (!dst) goto reset; rcu_read_lock(); - tm = tcp_get_metrics(sk, dst, true); + tm = tcp_get_metrics(sk, dst, false); if (!tm) { rcu_read_unlock(); goto reset; @@ -489,11 +493,6 @@ void tcp_init_metrics(struct sock *sk) tp->snd_ssthresh = val; if (tp->snd_ssthresh > tp->snd_cwnd_clamp) tp->snd_ssthresh = tp->snd_cwnd_clamp; - } else { - /* ssthresh may have been reduced unnecessarily during. - * 3WHS. Restore it back to its initial default. - */ - tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; } val = tcp_metric_get(tm, TCP_METRIC_REORDERING); if (val && tp->reordering != val) @@ -908,7 +907,7 @@ static void tcp_metrics_flush_all(struct net *net) match = net ? net_eq(tm_net(tm), net) : !refcount_read(&tm_net(tm)->ns.count); if (match) { - *pp = tm->tcpm_next; + rcu_assign_pointer(*pp, tm->tcpm_next); kfree_rcu(tm, rcu_head); } else { pp = &tm->tcpm_next; @@ -949,7 +948,7 @@ static int tcp_metrics_nl_cmd_del(struct sk_buff *skb, struct genl_info *info) if (addr_same(&tm->tcpm_daddr, &daddr) && (!src || addr_same(&tm->tcpm_saddr, &saddr)) && net_eq(tm_net(tm), net)) { - *pp = tm->tcpm_next; + rcu_assign_pointer(*pp, tm->tcpm_next); kfree_rcu(tm, rcu_head); found = true; } else { diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index d46fb6d7057bd..479735693d71f 100644 --- a/net/ipv4/tcp_output.c +++ b/net/ipv4/tcp_output.c @@ -170,15 +170,14 @@ static void tcp_event_data_sent(struct tcp_sock *tp, tp->lsndtime = now; /* If it is a reply for ato after last received - * packet, enter pingpong mode. + * packet, increase pingpong count. */ if ((u32)(now - icsk->icsk_ack.lrcvtime) < icsk->icsk_ack.ato) - inet_csk_enter_pingpong_mode(sk); + inet_csk_inc_pingpong_cnt(sk); } /* Account for an ACK we sent. */ -static inline void tcp_event_ack_sent(struct sock *sk, unsigned int pkts, - u32 rcv_nxt) +static inline void tcp_event_ack_sent(struct sock *sk, u32 rcv_nxt) { struct tcp_sock *tp = tcp_sk(sk); @@ -192,7 +191,7 @@ static inline void tcp_event_ack_sent(struct sock *sk, unsigned int pkts, if (unlikely(rcv_nxt != tp->rcv_nxt)) return; /* Special ACK sent by DCTCP to reflect ECN */ - tcp_dec_quickack_mode(sk, pkts); + tcp_dec_quickack_mode(sk); inet_csk_clear_xmit_timer(sk, ICSK_TIME_DACK); } @@ -1319,7 +1318,7 @@ static int __tcp_transmit_skb(struct sock *sk, struct sk_buff *skb, skb->destructor = skb_is_tcp_pure_ack(skb) ? __sock_wfree : tcp_wfree; refcount_add(skb->truesize, &sk->sk_wmem_alloc); - skb_set_dst_pending_confirm(skb, sk->sk_dst_pending_confirm); + skb_set_dst_pending_confirm(skb, READ_ONCE(sk->sk_dst_pending_confirm)); /* Build TCP header and checksum it. */ th = (struct tcphdr *)skb->data; @@ -1374,7 +1373,7 @@ static int __tcp_transmit_skb(struct sock *sk, struct sk_buff *skb, sk, skb); if (likely(tcb->tcp_flags & TCPHDR_ACK)) - tcp_event_ack_sent(sk, tcp_skb_pcount(skb), rcv_nxt); + tcp_event_ack_sent(sk, rcv_nxt); if (skb->len != tcp_header_size) { tcp_event_data_sent(tp, sk); @@ -2487,6 +2486,18 @@ static bool tcp_pacing_check(struct sock *sk) return true; } +static bool tcp_rtx_queue_empty_or_single_skb(const struct sock *sk) +{ + const struct rb_node *node = sk->tcp_rtx_queue.rb_node; + + /* No skb in the rtx queue. */ + if (!node) + return true; + + /* Only one skb in rtx queue. */ + return !node->rb_left && !node->rb_right; +} + /* TCP Small Queues : * Control number of packets in qdisc/devices to two packets / or ~1 ms. * (These limits are doubled for retransmits) @@ -2524,12 +2535,12 @@ static bool tcp_small_queue_check(struct sock *sk, const struct sk_buff *skb, limit += extra_bytes; } if (refcount_read(&sk->sk_wmem_alloc) > limit) { - /* Always send skb if rtx queue is empty. + /* Always send skb if rtx queue is empty or has one skb. * No need to wait for TX completion to call us back, * after softirq/tasklet schedule. * This helps when TX completions are delayed too much. */ - if (tcp_rtx_queue_empty(sk)) + if (tcp_rtx_queue_empty_or_single_skb(sk)) return false; set_bit(TSQ_THROTTLED, &sk->sk_tsq_flags); @@ -2732,7 +2743,7 @@ bool tcp_schedule_loss_probe(struct sock *sk, bool advancing_rto) { struct inet_connection_sock *icsk = inet_csk(sk); struct tcp_sock *tp = tcp_sk(sk); - u32 timeout, rto_delta_us; + u32 timeout, timeout_us, rto_delta_us; int early_retrans; /* Don't do any loss probe on a Fast Open connection before 3WHS @@ -2756,11 +2767,12 @@ bool tcp_schedule_loss_probe(struct sock *sk, bool advancing_rto) * sample is available then probe after TCP_TIMEOUT_INIT. */ if (tp->srtt_us) { - timeout = usecs_to_jiffies(tp->srtt_us >> 2); + timeout_us = tp->srtt_us >> 2; if (tp->packets_out == 1) - timeout += TCP_RTO_MIN; + timeout_us += tcp_rto_min_us(sk); else - timeout += TCP_TIMEOUT_MIN; + timeout_us += TCP_TIMEOUT_MIN_US; + timeout = usecs_to_jiffies(timeout_us); } else { timeout = TCP_TIMEOUT_INIT; } diff --git a/net/ipv4/tcp_recovery.c b/net/ipv4/tcp_recovery.c index ac14216f6204f..24bc954637169 100644 --- a/net/ipv4/tcp_recovery.c +++ b/net/ipv4/tcp_recovery.c @@ -109,7 +109,7 @@ bool tcp_rack_mark_lost(struct sock *sk) tp->rack.advanced = 0; tcp_rack_detect_loss(sk, &timeout); if (timeout) { - timeout = usecs_to_jiffies(timeout) + TCP_TIMEOUT_MIN; + timeout = usecs_to_jiffies(timeout + TCP_TIMEOUT_MIN_US); inet_csk_reset_xmit_timer(sk, ICSK_TIME_REO_TIMEOUT, timeout, inet_csk(sk)->icsk_rto); } diff --git a/net/ipv4/tcp_timer.c b/net/ipv4/tcp_timer.c index a8592c187b321..40a354dcfec5a 100644 --- a/net/ipv4/tcp_timer.c +++ b/net/ipv4/tcp_timer.c @@ -437,6 +437,22 @@ static void tcp_fastopen_synack_timer(struct sock *sk, struct request_sock *req) TCP_TIMEOUT_INIT << req->num_timeout, TCP_RTO_MAX); } +static bool tcp_rtx_probe0_timed_out(const struct sock *sk, + const struct sk_buff *skb) +{ + const struct tcp_sock *tp = tcp_sk(sk); + const int timeout = TCP_RTO_MAX * 2; + u32 rcv_delta, rtx_delta; + + rcv_delta = inet_csk(sk)->icsk_timeout - tp->rcv_tstamp; + if (rcv_delta <= timeout) + return false; + + rtx_delta = (u32)msecs_to_jiffies(tcp_time_stamp(tp) - + (tp->retrans_stamp ?: tcp_skb_timestamp(skb))); + + return rtx_delta > timeout; +} /** * tcp_retransmit_timer() - The TCP retransmit timeout handler @@ -502,7 +518,7 @@ void tcp_retransmit_timer(struct sock *sk) tp->snd_una, tp->snd_nxt); } #endif - if (tcp_jiffies32 - tp->rcv_tstamp > TCP_RTO_MAX) { + if (tcp_rtx_probe0_timed_out(sk, skb)) { tcp_write_err(sk); goto out; } diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c index 73bf63d719f84..c454daa78a2f8 100644 --- a/net/ipv4/udp.c +++ b/net/ipv4/udp.c @@ -443,14 +443,24 @@ static struct sock *udp4_lib_lookup2(struct net *net, score = compute_score(sk, net, saddr, sport, daddr, hnum, dif, sdif); if (score > badness) { - result = lookup_reuseport(net, sk, skb, - saddr, sport, daddr, hnum); + badness = score; + result = lookup_reuseport(net, sk, skb, saddr, sport, daddr, hnum); + if (!result) { + result = sk; + continue; + } + /* Fall back to scoring if group has connections */ - if (result && !reuseport_has_conns(sk)) + if (!reuseport_has_conns(sk)) return result; - result = result ? : sk; - badness = score; + /* Reuseport logic returned an error, keep original score. */ + if (IS_ERR(result)) + continue; + + badness = compute_score(result, net, saddr, sport, + daddr, hnum, dif, sdif); + } } return result; @@ -2701,10 +2711,12 @@ int udp_lib_setsockopt(struct sock *sk, int level, int optname, case UDP_ENCAP_ESPINUDP_NON_IKE: #if IS_ENABLED(CONFIG_IPV6) if (sk->sk_family == AF_INET6) - up->encap_rcv = ipv6_stub->xfrm6_udp_encap_rcv; + WRITE_ONCE(up->encap_rcv, + ipv6_stub->xfrm6_udp_encap_rcv); else #endif - up->encap_rcv = xfrm4_udp_encap_rcv; + WRITE_ONCE(up->encap_rcv, + xfrm4_udp_encap_rcv); #endif fallthrough; case UDP_ENCAP_L2TPINUDP: diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c index 0c0b7969840f5..441f60170c85a 100644 --- a/net/ipv6/addrconf.c +++ b/net/ipv6/addrconf.c @@ -209,6 +209,7 @@ static struct ipv6_devconf ipv6_devconf __read_mostly = { .ra_defrtr_metric = IP6_RT_PRIO_USER, .accept_ra_from_local = 0, .accept_ra_min_hop_limit= 1, + .accept_ra_min_lft = 0, .accept_ra_pinfo = 1, #ifdef CONFIG_IPV6_ROUTER_PREF .accept_ra_rtr_pref = 1, @@ -268,6 +269,7 @@ static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = { .ra_defrtr_metric = IP6_RT_PRIO_USER, .accept_ra_from_local = 0, .accept_ra_min_hop_limit= 1, + .accept_ra_min_lft = 0, .accept_ra_pinfo = 1, #ifdef CONFIG_IPV6_ROUTER_PREF .accept_ra_rtr_pref = 1, @@ -1368,7 +1370,7 @@ static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, bool block) * idev->desync_factor if it's larger */ cnf_temp_preferred_lft = READ_ONCE(idev->cnf.temp_prefered_lft); - max_desync_factor = min_t(__u32, + max_desync_factor = min_t(long, idev->cnf.max_desync_factor, cnf_temp_preferred_lft - regen_advance); @@ -2734,6 +2736,9 @@ void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao) return; } + if (valid_lft != 0 && valid_lft < in6_dev->cnf.accept_ra_min_lft) + goto put; + /* * Two things going on here: * 1) Add routes for on-link prefixes @@ -5589,6 +5594,7 @@ static inline void ipv6_store_devconf(struct ipv6_devconf *cnf, array[DEVCONF_IOAM6_ENABLED] = cnf->ioam6_enabled; array[DEVCONF_IOAM6_ID] = cnf->ioam6_id; array[DEVCONF_IOAM6_ID_WIDE] = cnf->ioam6_id_wide; + array[DEVCONF_ACCEPT_RA_MIN_LFT] = cnf->accept_ra_min_lft; } static inline size_t inet6_ifla6_size(void) @@ -6782,6 +6788,13 @@ static const struct ctl_table addrconf_sysctl[] = { .mode = 0644, .proc_handler = proc_dointvec, }, + { + .procname = "accept_ra_min_lft", + .data = &ipv6_devconf.accept_ra_min_lft, + .maxlen = sizeof(int), + .mode = 0644, + .proc_handler = proc_dointvec, + }, { .procname = "accept_ra_pinfo", .data = &ipv6_devconf.accept_ra_pinfo, diff --git a/net/ipv6/esp6.c b/net/ipv6/esp6.c index 6219d97cac7a3..26d476494676e 100644 --- a/net/ipv6/esp6.c +++ b/net/ipv6/esp6.c @@ -776,7 +776,9 @@ static inline int esp_remove_trailer(struct sk_buff *skb) skb->csum = csum_block_sub(skb->csum, csumdiff, skb->len - trimlen); } - pskb_trim(skb, skb->len - trimlen); + ret = pskb_trim(skb, skb->len - trimlen); + if (unlikely(ret)) + return ret; ret = nexthdr[1]; diff --git a/net/ipv6/inet6_hashtables.c b/net/ipv6/inet6_hashtables.c index b4a5e01e12016..c40cbdfc6247f 100644 --- a/net/ipv6/inet6_hashtables.c +++ b/net/ipv6/inet6_hashtables.c @@ -138,12 +138,11 @@ static struct sock *inet6_lhash2_lookup(struct net *net, const __be16 sport, const struct in6_addr *daddr, const unsigned short hnum, const int dif, const int sdif) { - struct inet_connection_sock *icsk; struct sock *sk, *result = NULL; + struct hlist_nulls_node *node; int score, hiscore = 0; - inet_lhash2_for_each_icsk_rcu(icsk, &ilb2->head) { - sk = (struct sock *)icsk; + sk_nulls_for_each_rcu(sk, node, &ilb2->nulls_head) { score = compute_score(sk, net, hnum, daddr, dif, sdif); if (score > hiscore) { result = lookup_reuseport(net, sk, skb, doff, diff --git a/net/ipv6/ip6_fib.c b/net/ipv6/ip6_fib.c index a506e57c4032a..7e0a30380be09 100644 --- a/net/ipv6/ip6_fib.c +++ b/net/ipv6/ip6_fib.c @@ -1501,13 +1501,9 @@ int fib6_add(struct fib6_node *root, struct fib6_info *rt, if (!pn_leaf && !(pn->fn_flags & RTN_RTINFO)) { pn_leaf = fib6_find_prefix(info->nl_net, table, pn); -#if RT6_DEBUG >= 2 - if (!pn_leaf) { - WARN_ON(!pn_leaf); + if (!pn_leaf) pn_leaf = info->nl_net->ipv6.fib6_null_entry; - } -#endif fib6_info_hold(pn_leaf); rcu_assign_pointer(pn->leaf, pn_leaf); } diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c index e3888c8629bed..5f59aefb8b2b3 100644 --- a/net/ipv6/ip6_output.c +++ b/net/ipv6/ip6_output.c @@ -112,7 +112,7 @@ static int ip6_finish_output2(struct net *net, struct sock *sk, struct sk_buff * if (lwtunnel_xmit_redirect(dst->lwtstate)) { int res = lwtunnel_xmit(skb); - if (res < 0 || res == LWTUNNEL_XMIT_DONE) + if (res != LWTUNNEL_XMIT_CONTINUE) return res; } @@ -159,7 +159,13 @@ ip6_finish_output_gso_slowpath_drop(struct net *net, struct sock *sk, int err; skb_mark_not_on_list(segs); - err = ip6_fragment(net, sk, segs, ip6_finish_output2); + /* Last GSO segment can be smaller than gso_size (and MTU). + * Adding a fragment header would produce an "atomic fragment", + * which is considered harmful (RFC-8021). Avoid that. + */ + err = segs->len > mtu ? + ip6_fragment(net, sk, segs, ip6_finish_output2) : + ip6_finish_output2(net, sk, segs); if (err && ret == 0) ret = err; } diff --git a/net/ipv6/ndisc.c b/net/ipv6/ndisc.c index 3ab903f7e0f8d..856edbe81e11a 100644 --- a/net/ipv6/ndisc.c +++ b/net/ipv6/ndisc.c @@ -1270,6 +1270,14 @@ static void ndisc_router_discovery(struct sk_buff *skb) goto skip_defrtr; } + lifetime = ntohs(ra_msg->icmph.icmp6_rt_lifetime); + if (lifetime != 0 && lifetime < in6_dev->cnf.accept_ra_min_lft) { + ND_PRINTK(2, info, + "RA: router lifetime (%ds) is too short: %s\n", + lifetime, skb->dev->name); + goto skip_defrtr; + } + /* Do not accept RA with source-addr found on local machine unless * accept_ra_from_local is set to true. */ @@ -1282,8 +1290,6 @@ static void ndisc_router_discovery(struct sk_buff *skb) goto skip_defrtr; } - lifetime = ntohs(ra_msg->icmph.icmp6_rt_lifetime); - #ifdef CONFIG_IPV6_ROUTER_PREF pref = ra_msg->icmph.icmp6_router_pref; /* 10b is handled as if it were 00b (medium) */ @@ -1454,6 +1460,9 @@ static void ndisc_router_discovery(struct sk_buff *skb) if (ri->prefix_len == 0 && !in6_dev->cnf.accept_ra_defrtr) continue; + if (ri->lifetime != 0 && + ntohl(ri->lifetime) < in6_dev->cnf.accept_ra_min_lft) + continue; if (ri->prefix_len < in6_dev->cnf.accept_ra_rt_info_min_plen) continue; if (ri->prefix_len > in6_dev->cnf.accept_ra_rt_info_max_plen) diff --git a/net/ipv6/syncookies.c b/net/ipv6/syncookies.c index 12ae817aaf2ec..c10a68bb85de3 100644 --- a/net/ipv6/syncookies.c +++ b/net/ipv6/syncookies.c @@ -180,14 +180,15 @@ struct sock *cookie_v6_check(struct sock *sk, struct sk_buff *skb) treq = tcp_rsk(req); treq->tfo_listener = false; - if (security_inet_conn_request(sk, skb, req)) - goto out_free; - req->mss = mss; ireq->ir_rmt_port = th->source; ireq->ir_num = ntohs(th->dest); ireq->ir_v6_rmt_addr = ipv6_hdr(skb)->saddr; ireq->ir_v6_loc_addr = ipv6_hdr(skb)->daddr; + + if (security_inet_conn_request(sk, skb, req)) + goto out_free; + if (ipv6_opt_accepted(sk, skb, &TCP_SKB_CB(skb)->header.h6) || np->rxopt.bits.rxinfo || np->rxopt.bits.rxoinfo || np->rxopt.bits.rxhlim || np->rxopt.bits.rxohlim) { diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c index a746abbe81b5f..d5d254ca2dfe6 100644 --- a/net/ipv6/udp.c +++ b/net/ipv6/udp.c @@ -190,14 +190,23 @@ static struct sock *udp6_lib_lookup2(struct net *net, score = compute_score(sk, net, saddr, sport, daddr, hnum, dif, sdif); if (score > badness) { - result = lookup_reuseport(net, sk, skb, - saddr, sport, daddr, hnum); + badness = score; + result = lookup_reuseport(net, sk, skb, saddr, sport, daddr, hnum); + if (!result) { + result = sk; + continue; + } + /* Fall back to scoring if group has connections */ - if (result && !reuseport_has_conns(sk)) + if (!reuseport_has_conns(sk)) return result; - result = result ? : sk; - badness = score; + /* Reuseport logic returned an error, keep original score. */ + if (IS_ERR(result)) + continue; + + badness = compute_score(sk, net, saddr, sport, + daddr, hnum, dif, sdif); } } return result; @@ -927,6 +936,7 @@ static int udp6_unicast_rcv_skb(struct sock *sk, struct sk_buff *skb, int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable, int proto) { + enum skb_drop_reason reason = SKB_DROP_REASON_NOT_SPECIFIED; const struct in6_addr *saddr, *daddr; struct net *net = dev_net(skb->dev); struct udphdr *uh; @@ -1003,6 +1013,8 @@ int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable, return udp6_unicast_rcv_skb(sk, skb, uh); } + reason = SKB_DROP_REASON_NO_SOCKET; + if (!uh->check) goto report_csum_error; @@ -1015,10 +1027,12 @@ int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable, __UDP6_INC_STATS(net, UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE); icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0); - kfree_skb(skb); + kfree_skb_reason(skb, reason); return 0; short_packet: + if (reason == SKB_DROP_REASON_NOT_SPECIFIED) + reason = SKB_DROP_REASON_PKT_TOO_SMALL; net_dbg_ratelimited("UDP%sv6: short packet: From [%pI6c]:%u %d/%d to [%pI6c]:%u\n", proto == IPPROTO_UDPLITE ? "-Lite" : "", saddr, ntohs(uh->source), @@ -1029,10 +1043,12 @@ int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable, report_csum_error: udp6_csum_zero_error(skb); csum_error: + if (reason == SKB_DROP_REASON_NOT_SPECIFIED) + reason = SKB_DROP_REASON_UDP_CSUM; __UDP6_INC_STATS(net, UDP_MIB_CSUMERRORS, proto == IPPROTO_UDPLITE); discard: __UDP6_INC_STATS(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE); - kfree_skb(skb); + kfree_skb_reason(skb, reason); return 0; } diff --git a/net/ipv6/xfrm6_policy.c b/net/ipv6/xfrm6_policy.c index 247296e3294bd..4c3aa97f23faa 100644 --- a/net/ipv6/xfrm6_policy.c +++ b/net/ipv6/xfrm6_policy.c @@ -120,11 +120,11 @@ static void xfrm6_dst_destroy(struct dst_entry *dst) { struct xfrm_dst *xdst = (struct xfrm_dst *)dst; - if (likely(xdst->u.rt6.rt6i_idev)) - in6_dev_put(xdst->u.rt6.rt6i_idev); dst_destroy_metrics_generic(dst); if (xdst->u.rt6.rt6i_uncached_list) rt6_uncached_list_del(&xdst->u.rt6); + if (likely(xdst->u.rt6.rt6i_idev)) + in6_dev_put(xdst->u.rt6.rt6i_idev); xfrm_dst_destroy(xdst); } diff --git a/net/kcm/kcmsock.c b/net/kcm/kcmsock.c index 9c60c0c18b4dd..0d1ab4149553c 100644 --- a/net/kcm/kcmsock.c +++ b/net/kcm/kcmsock.c @@ -1064,15 +1064,18 @@ static int kcm_sendmsg(struct socket *sock, struct msghdr *msg, size_t len) out_error: kcm_push(kcm); - if (copied && sock->type == SOCK_SEQPACKET) { + if (sock->type == SOCK_SEQPACKET) { /* Wrote some bytes before encountering an * error, return partial success. */ - goto partial_message; - } - - if (head != kcm->seq_skb) + if (copied) + goto partial_message; + if (head != kcm->seq_skb) + kfree_skb(head); + } else { kfree_skb(head); + kcm->seq_skb = NULL; + } err = sk_stream_error(sk, msg->msg_flags, err); @@ -1982,6 +1985,8 @@ static __net_exit void kcm_exit_net(struct net *net) * that all multiplexors and psocks have been destroyed. */ WARN_ON(!list_empty(&knet->mux_list)); + + mutex_destroy(&knet->mutex); } static struct pernet_operations kcm_net_ops = { diff --git a/net/l2tp/l2tp_ip6.c b/net/l2tp/l2tp_ip6.c index 382124d6f7647..9746c624a5503 100644 --- a/net/l2tp/l2tp_ip6.c +++ b/net/l2tp/l2tp_ip6.c @@ -508,7 +508,6 @@ static int l2tp_ip6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len) */ if (len > INT_MAX - transhdrlen) return -EMSGSIZE; - ulen = len + transhdrlen; /* Mirror BSD error message compatibility */ if (msg->msg_flags & MSG_OOB) @@ -629,6 +628,7 @@ static int l2tp_ip6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len) back_from_confirm: lock_sock(sk); + ulen = len + skb_queue_empty(&sk->sk_write_queue) ? transhdrlen : 0; err = ip6_append_data(sk, ip_generic_getfrag, msg, ulen, transhdrlen, &ipc6, &fl6, (struct rt6_info *)dst, diff --git a/net/llc/llc_input.c b/net/llc/llc_input.c index 7cac441862e21..51bccfb00a9cd 100644 --- a/net/llc/llc_input.c +++ b/net/llc/llc_input.c @@ -127,8 +127,14 @@ static inline int llc_fixup_skb(struct sk_buff *skb) skb->transport_header += llc_len; skb_pull(skb, llc_len); if (skb->protocol == htons(ETH_P_802_2)) { - __be16 pdulen = eth_hdr(skb)->h_proto; - s32 data_size = ntohs(pdulen) - llc_len; + __be16 pdulen; + s32 data_size; + + if (skb->mac_len < ETH_HLEN) + return 0; + + pdulen = eth_hdr(skb)->h_proto; + data_size = ntohs(pdulen) - llc_len; if (data_size < 0 || !pskb_may_pull(skb, data_size)) diff --git a/net/llc/llc_s_ac.c b/net/llc/llc_s_ac.c index 79d1cef8f15a9..06fb8e6944b06 100644 --- a/net/llc/llc_s_ac.c +++ b/net/llc/llc_s_ac.c @@ -153,6 +153,9 @@ int llc_sap_action_send_test_r(struct llc_sap *sap, struct sk_buff *skb) int rc = 1; u32 data_size; + if (skb->mac_len < ETH_HLEN) + return 1; + llc_pdu_decode_sa(skb, mac_da); llc_pdu_decode_da(skb, mac_sa); llc_pdu_decode_ssap(skb, &dsap); diff --git a/net/llc/llc_station.c b/net/llc/llc_station.c index 05c6ae0920534..f506542925109 100644 --- a/net/llc/llc_station.c +++ b/net/llc/llc_station.c @@ -76,6 +76,9 @@ static int llc_station_ac_send_test_r(struct sk_buff *skb) u32 data_size; struct sk_buff *nskb; + if (skb->mac_len < ETH_HLEN) + goto out; + /* The test request command is type U (llc_len = 3) */ data_size = ntohs(eth_hdr(skb)->h_proto) - 3; nskb = llc_alloc_frame(NULL, skb->dev, LLC_PDU_TYPE_U, data_size); diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c index 4fa216a108ae8..02bd90a537058 100644 --- a/net/mac80211/cfg.c +++ b/net/mac80211/cfg.c @@ -2762,6 +2762,10 @@ static int ieee80211_get_tx_power(struct wiphy *wiphy, else *dbm = sdata->vif.bss_conf.txpower; + /* INT_MIN indicates no power level was set yet */ + if (*dbm == INT_MIN) + return -EINVAL; + return 0; } diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c index 175ead6b19cb4..26943c93f14c4 100644 --- a/net/mac80211/rx.c +++ b/net/mac80211/rx.c @@ -3557,6 +3557,10 @@ ieee80211_rx_h_action(struct ieee80211_rx_data *rx) break; goto queue; case WLAN_CATEGORY_S1G: + if (len < offsetofend(typeof(*mgmt), + u.action.u.s1g.action_code)) + break; + switch (mgmt->u.action.u.s1g.action_code) { case WLAN_S1G_TWT_SETUP: case WLAN_S1G_TWT_TEARDOWN: diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c index 8f8dc2625d535..d5c89c6758f2c 100644 --- a/net/mac80211/tx.c +++ b/net/mac80211/tx.c @@ -644,7 +644,8 @@ ieee80211_tx_h_select_key(struct ieee80211_tx_data *tx) } if (unlikely(tx->key && tx->key->flags & KEY_FLAG_TAINTED && - !ieee80211_is_deauth(hdr->frame_control))) + !ieee80211_is_deauth(hdr->frame_control)) && + tx->skb->protocol != tx->sdata->control_port_protocol) return TX_DROP; if (!skip_hw && tx->key && diff --git a/net/mctp/route.c b/net/mctp/route.c index 9cd3ab18facaa..6274f32ecf7db 100644 --- a/net/mctp/route.c +++ b/net/mctp/route.c @@ -480,6 +480,10 @@ static int mctp_alloc_local_tag(struct mctp_sock *msk, int rc = -EAGAIN; u8 tagbits; + /* for NULL destination EIDs, we may get a response from any peer */ + if (daddr == MCTP_ADDR_NULL) + daddr = MCTP_ADDR_ANY; + /* be optimistic, alloc now */ key = mctp_key_alloc(msk, saddr, daddr, 0, GFP_KERNEL); if (!key) @@ -545,6 +549,8 @@ struct mctp_route *mctp_route_lookup(struct net *net, unsigned int dnet, { struct mctp_route *tmp, *rt = NULL; + rcu_read_lock(); + list_for_each_entry_rcu(tmp, &net->mctp.routes, list) { /* TODO: add metrics */ if (mctp_rt_match_eid(tmp, dnet, daddr)) { @@ -555,6 +561,28 @@ struct mctp_route *mctp_route_lookup(struct net *net, unsigned int dnet, } } + rcu_read_unlock(); + + return rt; +} + +static struct mctp_route *mctp_route_lookup_null(struct net *net, + struct net_device *dev) +{ + struct mctp_route *tmp, *rt = NULL; + + rcu_read_lock(); + + list_for_each_entry_rcu(tmp, &net->mctp.routes, list) { + if (tmp->dev->dev == dev && tmp->type == RTN_LOCAL && + refcount_inc_not_zero(&tmp->refs)) { + rt = tmp; + break; + } + } + + rcu_read_unlock(); + return rt; } @@ -856,6 +884,11 @@ static int mctp_pkttype_receive(struct sk_buff *skb, struct net_device *dev, cb->net = READ_ONCE(mdev->net); rt = mctp_route_lookup(net, cb->net, mh->dest); + + /* NULL EID, but addressed to our physical address */ + if (!rt && mh->dest == MCTP_ADDR_NULL && skb->pkt_type == PACKET_HOST) + rt = mctp_route_lookup_null(net, dev); + if (!rt) goto err_drop; diff --git a/net/mptcp/mptcp_diag.c b/net/mptcp/mptcp_diag.c index 292374fb07792..520ee65850553 100644 --- a/net/mptcp/mptcp_diag.c +++ b/net/mptcp/mptcp_diag.c @@ -66,20 +66,103 @@ static int mptcp_diag_dump_one(struct netlink_callback *cb, return err; } +struct mptcp_diag_ctx { + long s_slot; + long s_num; + unsigned int l_slot; + unsigned int l_num; +}; + +static void mptcp_diag_dump_listeners(struct sk_buff *skb, struct netlink_callback *cb, + const struct inet_diag_req_v2 *r, + bool net_admin) +{ + struct inet_diag_dump_data *cb_data = cb->data; + struct mptcp_diag_ctx *diag_ctx = (void *)cb->ctx; + struct nlattr *bc = cb_data->inet_diag_nla_bc; + struct net *net = sock_net(skb->sk); + int i; + + for (i = diag_ctx->l_slot; i <= tcp_hashinfo.lhash2_mask; i++) { + struct inet_listen_hashbucket *ilb; + struct hlist_nulls_node *node; + struct sock *sk; + int num = 0; + + ilb = &tcp_hashinfo.lhash2[i]; + + rcu_read_lock(); + spin_lock(&ilb->lock); + sk_nulls_for_each(sk, node, &ilb->nulls_head) { + const struct mptcp_subflow_context *ctx = mptcp_subflow_ctx(sk); + struct inet_sock *inet = inet_sk(sk); + int ret; + + if (num < diag_ctx->l_num) + goto next_listen; + + if (!ctx || strcmp(inet_csk(sk)->icsk_ulp_ops->name, "mptcp")) + goto next_listen; + + sk = ctx->conn; + if (!sk || !net_eq(sock_net(sk), net)) + goto next_listen; + + if (r->sdiag_family != AF_UNSPEC && + sk->sk_family != r->sdiag_family) + goto next_listen; + + if (r->id.idiag_sport != inet->inet_sport && + r->id.idiag_sport) + goto next_listen; + + if (!refcount_inc_not_zero(&sk->sk_refcnt)) + goto next_listen; + + ret = sk_diag_dump(sk, skb, cb, r, bc, net_admin); + + sock_put(sk); + + if (ret < 0) { + spin_unlock(&ilb->lock); + rcu_read_unlock(); + diag_ctx->l_slot = i; + diag_ctx->l_num = num; + return; + } + diag_ctx->l_num = num + 1; + num = 0; +next_listen: + ++num; + } + spin_unlock(&ilb->lock); + rcu_read_unlock(); + + cond_resched(); + diag_ctx->l_num = 0; + } + + diag_ctx->l_num = 0; + diag_ctx->l_slot = i; +} + static void mptcp_diag_dump(struct sk_buff *skb, struct netlink_callback *cb, const struct inet_diag_req_v2 *r) { bool net_admin = netlink_net_capable(cb->skb, CAP_NET_ADMIN); + struct mptcp_diag_ctx *diag_ctx = (void *)cb->ctx; struct net *net = sock_net(skb->sk); struct inet_diag_dump_data *cb_data; struct mptcp_sock *msk; struct nlattr *bc; + BUILD_BUG_ON(sizeof(cb->ctx) < sizeof(*diag_ctx)); + cb_data = cb->data; bc = cb_data->inet_diag_nla_bc; - while ((msk = mptcp_token_iter_next(net, &cb->args[0], &cb->args[1])) != - NULL) { + while ((msk = mptcp_token_iter_next(net, &diag_ctx->s_slot, + &diag_ctx->s_num)) != NULL) { struct inet_sock *inet = (struct inet_sock *)msk; struct sock *sk = (struct sock *)msk; int ret = 0; @@ -101,11 +184,14 @@ static void mptcp_diag_dump(struct sk_buff *skb, struct netlink_callback *cb, sock_put(sk); if (ret < 0) { /* will retry on the same position */ - cb->args[1]--; + diag_ctx->s_num--; break; } cond_resched(); } + + if ((r->idiag_states & TCPF_LISTEN) && r->id.idiag_dport == 0) + mptcp_diag_dump_listeners(skb, cb, r, net_admin); } static void mptcp_diag_get_info(struct sock *sk, struct inet_diag_msg *r, @@ -119,6 +205,19 @@ static void mptcp_diag_get_info(struct sock *sk, struct inet_diag_msg *r, r->idiag_rqueue = sk_rmem_alloc_get(sk); r->idiag_wqueue = sk_wmem_alloc_get(sk); + + if (inet_sk_state_load(sk) == TCP_LISTEN) { + struct sock *lsk = READ_ONCE(msk->first); + + if (lsk) { + /* override with settings from tcp listener, + * so Send-Q will show accept queue. + */ + r->idiag_rqueue = READ_ONCE(lsk->sk_ack_backlog); + r->idiag_wqueue = READ_ONCE(lsk->sk_max_ack_backlog); + } + } + if (!info) return; diff --git a/net/mptcp/protocol.c b/net/mptcp/protocol.c index 82b1583f709d3..62e1875b92904 100644 --- a/net/mptcp/protocol.c +++ b/net/mptcp/protocol.c @@ -1337,24 +1337,19 @@ static int mptcp_sendmsg_frag(struct sock *sk, struct sock *ssk, if (copy == 0) { u64 snd_una = READ_ONCE(msk->snd_una); - if (snd_una != msk->snd_nxt) { - tcp_remove_empty_skb(ssk, tcp_write_queue_tail(ssk)); + if (snd_una != msk->snd_nxt || tcp_write_queue_tail(ssk)) { + tcp_remove_empty_skb(ssk); return 0; } zero_window_probe = true; data_seq = snd_una - 1; copy = 1; - - /* all mptcp-level data is acked, no skbs should be present into the - * ssk write queue - */ - WARN_ON_ONCE(reuse_skb); } copy = min_t(size_t, copy, info->limit - info->sent); if (!sk_wmem_schedule(ssk, copy)) { - tcp_remove_empty_skb(ssk, tcp_write_queue_tail(ssk)); + tcp_remove_empty_skb(ssk); return -ENOMEM; } @@ -1379,7 +1374,6 @@ static int mptcp_sendmsg_frag(struct sock *sk, struct sock *ssk, if (reuse_skb) { TCP_SKB_CB(skb)->tcp_flags &= ~TCPHDR_PSH; mpext->data_len += copy; - WARN_ON_ONCE(zero_window_probe); goto out; } diff --git a/net/netfilter/ipset/ip_set_core.c b/net/netfilter/ipset/ip_set_core.c index 33869db42bb6b..978014928d07a 100644 --- a/net/netfilter/ipset/ip_set_core.c +++ b/net/netfilter/ipset/ip_set_core.c @@ -61,6 +61,8 @@ MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_IPSET); ip_set_dereference((inst)->ip_set_list)[id] #define ip_set_ref_netlink(inst,id) \ rcu_dereference_raw((inst)->ip_set_list)[id] +#define ip_set_dereference_nfnl(p) \ + rcu_dereference_check(p, lockdep_nfnl_is_held(NFNL_SUBSYS_IPSET)) /* The set types are implemented in modules and registered set types * can be found in ip_set_type_list. Adding/deleting types is @@ -708,15 +710,10 @@ __ip_set_put_netlink(struct ip_set *set) static struct ip_set * ip_set_rcu_get(struct net *net, ip_set_id_t index) { - struct ip_set *set; struct ip_set_net *inst = ip_set_pernet(net); - rcu_read_lock(); - /* ip_set_list itself needs to be protected */ - set = rcu_dereference(inst->ip_set_list)[index]; - rcu_read_unlock(); - - return set; + /* ip_set_list and the set pointer need to be protected */ + return ip_set_dereference_nfnl(inst->ip_set_list)[index]; } static inline void @@ -1399,6 +1396,9 @@ static int ip_set_swap(struct sk_buff *skb, const struct nfnl_info *info, ip_set(inst, to_id) = from; write_unlock_bh(&ip_set_ref_lock); + /* Make sure all readers of the old set pointers are completed. */ + synchronize_rcu(); + return 0; } diff --git a/net/netfilter/ipvs/ip_vs_sync.c b/net/netfilter/ipvs/ip_vs_sync.c index 0d89e68dc9d18..0c061f94d6954 100644 --- a/net/netfilter/ipvs/ip_vs_sync.c +++ b/net/netfilter/ipvs/ip_vs_sync.c @@ -1441,7 +1441,7 @@ static int bind_mcastif_addr(struct socket *sock, struct net_device *dev) sin.sin_addr.s_addr = addr; sin.sin_port = 0; - return sock->ops->bind(sock, (struct sockaddr*)&sin, sizeof(sin)); + return kernel_bind(sock, (struct sockaddr *)&sin, sizeof(sin)); } static void get_mcast_sockaddr(union ipvs_sockaddr *sa, int *salen, @@ -1507,8 +1507,8 @@ static int make_send_sock(struct netns_ipvs *ipvs, int id, } get_mcast_sockaddr(&mcast_addr, &salen, &ipvs->mcfg, id); - result = sock->ops->connect(sock, (struct sockaddr *) &mcast_addr, - salen, 0); + result = kernel_connect(sock, (struct sockaddr *)&mcast_addr, + salen, 0); if (result < 0) { pr_err("Error connecting to the multicast addr\n"); goto error; @@ -1548,7 +1548,7 @@ static int make_receive_sock(struct netns_ipvs *ipvs, int id, get_mcast_sockaddr(&mcast_addr, &salen, &ipvs->bcfg, id); sock->sk->sk_bound_dev_if = dev->ifindex; - result = sock->ops->bind(sock, (struct sockaddr *)&mcast_addr, salen); + result = kernel_bind(sock, (struct sockaddr *)&mcast_addr, salen); if (result < 0) { pr_err("Error binding to the multicast addr\n"); goto error; diff --git a/net/netfilter/nf_conntrack_proto_sctp.c b/net/netfilter/nf_conntrack_proto_sctp.c index 7247af51bdfc4..c94a9971d790c 100644 --- a/net/netfilter/nf_conntrack_proto_sctp.c +++ b/net/netfilter/nf_conntrack_proto_sctp.c @@ -112,7 +112,7 @@ static const u8 sctp_conntracks[2][11][SCTP_CONNTRACK_MAX] = { /* shutdown_ack */ {sSA, sCL, sCW, sCE, sES, sSA, sSA, sSA, sSA}, /* error */ {sCL, sCL, sCW, sCE, sES, sSS, sSR, sSA, sCL},/* Can't have Stale cookie*/ /* cookie_echo */ {sCL, sCL, sCE, sCE, sES, sSS, sSR, sSA, sCL},/* 5.2.4 - Big TODO */ -/* cookie_ack */ {sCL, sCL, sCW, sCE, sES, sSS, sSR, sSA, sCL},/* Can't come in orig dir */ +/* cookie_ack */ {sCL, sCL, sCW, sES, sES, sSS, sSR, sSA, sCL},/* Can't come in orig dir */ /* shutdown_comp*/ {sCL, sCL, sCW, sCE, sES, sSS, sSR, sCL, sCL}, /* heartbeat */ {sHS, sCL, sCW, sCE, sES, sSS, sSR, sSA, sHS}, /* heartbeat_ack*/ {sCL, sCL, sCW, sCE, sES, sSS, sSR, sSA, sHS}, @@ -126,7 +126,7 @@ static const u8 sctp_conntracks[2][11][SCTP_CONNTRACK_MAX] = { /* shutdown */ {sIV, sCL, sCW, sCE, sSR, sSS, sSR, sSA, sIV}, /* shutdown_ack */ {sIV, sCL, sCW, sCE, sES, sSA, sSA, sSA, sIV}, /* error */ {sIV, sCL, sCW, sCL, sES, sSS, sSR, sSA, sIV}, -/* cookie_echo */ {sIV, sCL, sCW, sCE, sES, sSS, sSR, sSA, sIV},/* Can't come in reply dir */ +/* cookie_echo */ {sIV, sCL, sCE, sCE, sES, sSS, sSR, sSA, sIV},/* Can't come in reply dir */ /* cookie_ack */ {sIV, sCL, sCW, sES, sES, sSS, sSR, sSA, sIV}, /* shutdown_comp*/ {sIV, sCL, sCW, sCE, sES, sSS, sSR, sCL, sIV}, /* heartbeat */ {sIV, sCL, sCW, sCE, sES, sSS, sSR, sSA, sHS}, @@ -426,6 +426,9 @@ int nf_conntrack_sctp_packet(struct nf_conn *ct, /* (D) vtag must be same as init_vtag as found in INIT_ACK */ if (sh->vtag != ct->proto.sctp.vtag[dir]) goto out_unlock; + } else if (sch->type == SCTP_CID_COOKIE_ACK) { + ct->proto.sctp.init[dir] = 0; + ct->proto.sctp.init[!dir] = 0; } else if (sch->type == SCTP_CID_HEARTBEAT) { if (ct->proto.sctp.vtag[dir] == 0) { pr_debug("Setting %d vtag %x for dir %d\n", sch->type, sh->vtag, dir); @@ -474,16 +477,18 @@ int nf_conntrack_sctp_packet(struct nf_conn *ct, } /* If it is an INIT or an INIT ACK note down the vtag */ - if (sch->type == SCTP_CID_INIT || - sch->type == SCTP_CID_INIT_ACK) { - struct sctp_inithdr _inithdr, *ih; + if (sch->type == SCTP_CID_INIT) { + struct sctp_inithdr _ih, *ih; - ih = skb_header_pointer(skb, offset + sizeof(_sch), - sizeof(_inithdr), &_inithdr); - if (ih == NULL) + ih = skb_header_pointer(skb, offset + sizeof(_sch), sizeof(*ih), &_ih); + if (!ih) goto out_unlock; - pr_debug("Setting vtag %x for dir %d\n", - ih->init_tag, !dir); + + if (ct->proto.sctp.init[dir] && ct->proto.sctp.init[!dir]) + ct->proto.sctp.init[!dir] = 0; + ct->proto.sctp.init[dir] = 1; + + pr_debug("Setting vtag %x for dir %d\n", ih->init_tag, !dir); ct->proto.sctp.vtag[!dir] = ih->init_tag; /* don't renew timeout on init retransmit so @@ -494,6 +499,24 @@ int nf_conntrack_sctp_packet(struct nf_conn *ct, old_state == SCTP_CONNTRACK_CLOSED && nf_ct_is_confirmed(ct)) ignore = true; + } else if (sch->type == SCTP_CID_INIT_ACK) { + struct sctp_inithdr _ih, *ih; + __be32 vtag; + + ih = skb_header_pointer(skb, offset + sizeof(_sch), sizeof(*ih), &_ih); + if (!ih) + goto out_unlock; + + vtag = ct->proto.sctp.vtag[!dir]; + if (!ct->proto.sctp.init[!dir] && vtag && vtag != ih->init_tag) + goto out_unlock; + /* collision */ + if (ct->proto.sctp.init[dir] && ct->proto.sctp.init[!dir] && + vtag != ih->init_tag) + goto out_unlock; + + pr_debug("Setting vtag %x for dir %d\n", ih->init_tag, !dir); + ct->proto.sctp.vtag[!dir] = ih->init_tag; } ct->proto.sctp.state = new_state; diff --git a/net/netfilter/nf_nat_redirect.c b/net/netfilter/nf_nat_redirect.c index f91579c821e9a..5b37487d9d11f 100644 --- a/net/netfilter/nf_nat_redirect.c +++ b/net/netfilter/nf_nat_redirect.c @@ -10,6 +10,7 @@ #include #include +#include #include #include #include @@ -24,81 +25,104 @@ #include #include +static unsigned int +nf_nat_redirect(struct sk_buff *skb, const struct nf_nat_range2 *range, + const union nf_inet_addr *newdst) +{ + struct nf_nat_range2 newrange; + enum ip_conntrack_info ctinfo; + struct nf_conn *ct; + + ct = nf_ct_get(skb, &ctinfo); + + memset(&newrange, 0, sizeof(newrange)); + + newrange.flags = range->flags | NF_NAT_RANGE_MAP_IPS; + newrange.min_addr = *newdst; + newrange.max_addr = *newdst; + newrange.min_proto = range->min_proto; + newrange.max_proto = range->max_proto; + + return nf_nat_setup_info(ct, &newrange, NF_NAT_MANIP_DST); +} + unsigned int -nf_nat_redirect_ipv4(struct sk_buff *skb, - const struct nf_nat_ipv4_multi_range_compat *mr, +nf_nat_redirect_ipv4(struct sk_buff *skb, const struct nf_nat_range2 *range, unsigned int hooknum) { - struct nf_conn *ct; - enum ip_conntrack_info ctinfo; - __be32 newdst; - struct nf_nat_range2 newrange; + union nf_inet_addr newdst = {}; WARN_ON(hooknum != NF_INET_PRE_ROUTING && hooknum != NF_INET_LOCAL_OUT); - ct = nf_ct_get(skb, &ctinfo); - WARN_ON(!(ct && (ctinfo == IP_CT_NEW || ctinfo == IP_CT_RELATED))); - /* Local packets: make them go to loopback */ if (hooknum == NF_INET_LOCAL_OUT) { - newdst = htonl(0x7F000001); + newdst.ip = htonl(INADDR_LOOPBACK); } else { const struct in_device *indev; - newdst = 0; - indev = __in_dev_get_rcu(skb->dev); if (indev) { const struct in_ifaddr *ifa; ifa = rcu_dereference(indev->ifa_list); if (ifa) - newdst = ifa->ifa_local; + newdst.ip = ifa->ifa_local; } - if (!newdst) + if (!newdst.ip) return NF_DROP; } - /* Transfer from original range. */ - memset(&newrange.min_addr, 0, sizeof(newrange.min_addr)); - memset(&newrange.max_addr, 0, sizeof(newrange.max_addr)); - newrange.flags = mr->range[0].flags | NF_NAT_RANGE_MAP_IPS; - newrange.min_addr.ip = newdst; - newrange.max_addr.ip = newdst; - newrange.min_proto = mr->range[0].min; - newrange.max_proto = mr->range[0].max; - - /* Hand modified range to generic setup. */ - return nf_nat_setup_info(ct, &newrange, NF_NAT_MANIP_DST); + return nf_nat_redirect(skb, range, &newdst); } EXPORT_SYMBOL_GPL(nf_nat_redirect_ipv4); static const struct in6_addr loopback_addr = IN6ADDR_LOOPBACK_INIT; +static bool nf_nat_redirect_ipv6_usable(const struct inet6_ifaddr *ifa, unsigned int scope) +{ + unsigned int ifa_addr_type = ipv6_addr_type(&ifa->addr); + + if (ifa_addr_type & IPV6_ADDR_MAPPED) + return false; + + if ((ifa->flags & IFA_F_TENTATIVE) && (!(ifa->flags & IFA_F_OPTIMISTIC))) + return false; + + if (scope) { + unsigned int ifa_scope = ifa_addr_type & IPV6_ADDR_SCOPE_MASK; + + if (!(scope & ifa_scope)) + return false; + } + + return true; +} + unsigned int nf_nat_redirect_ipv6(struct sk_buff *skb, const struct nf_nat_range2 *range, unsigned int hooknum) { - struct nf_nat_range2 newrange; - struct in6_addr newdst; - enum ip_conntrack_info ctinfo; - struct nf_conn *ct; + union nf_inet_addr newdst = {}; - ct = nf_ct_get(skb, &ctinfo); if (hooknum == NF_INET_LOCAL_OUT) { - newdst = loopback_addr; + newdst.in6 = loopback_addr; } else { + unsigned int scope = ipv6_addr_scope(&ipv6_hdr(skb)->daddr); struct inet6_dev *idev; - struct inet6_ifaddr *ifa; bool addr = false; idev = __in6_dev_get(skb->dev); if (idev != NULL) { + const struct inet6_ifaddr *ifa; + read_lock_bh(&idev->lock); list_for_each_entry(ifa, &idev->addr_list, if_list) { - newdst = ifa->addr; + if (!nf_nat_redirect_ipv6_usable(ifa, scope)) + continue; + + newdst.in6 = ifa->addr; addr = true; break; } @@ -109,12 +133,6 @@ nf_nat_redirect_ipv6(struct sk_buff *skb, const struct nf_nat_range2 *range, return NF_DROP; } - newrange.flags = range->flags | NF_NAT_RANGE_MAP_IPS; - newrange.min_addr.in6 = newdst; - newrange.max_addr.in6 = newdst; - newrange.min_proto = range->min_proto; - newrange.max_proto = range->max_proto; - - return nf_nat_setup_info(ct, &newrange, NF_NAT_MANIP_DST); + return nf_nat_redirect(skb, range, &newdst); } EXPORT_SYMBOL_GPL(nf_nat_redirect_ipv6); diff --git a/net/netfilter/nf_tables_api.c b/net/netfilter/nf_tables_api.c index 4baea85649cdd..b1bb29d710429 100644 --- a/net/netfilter/nf_tables_api.c +++ b/net/netfilter/nf_tables_api.c @@ -753,7 +753,7 @@ static struct nft_table *nft_table_lookup(const struct net *net, static struct nft_table *nft_table_lookup_byhandle(const struct net *net, const struct nlattr *nla, - u8 genmask, u32 nlpid) + int family, u8 genmask, u32 nlpid) { struct nftables_pernet *nft_net; struct nft_table *table; @@ -761,6 +761,7 @@ static struct nft_table *nft_table_lookup_byhandle(const struct net *net, nft_net = nft_pernet(net); list_for_each_entry(table, &nft_net->tables, list) { if (be64_to_cpu(nla_get_be64(nla)) == table->handle && + table->family == family && nft_active_genmask(table, genmask)) { if (nft_table_has_owner(table) && nlpid && table->nlpid != nlpid) @@ -1159,6 +1160,10 @@ static int nf_tables_updtable(struct nft_ctx *ctx) flags & NFT_TABLE_F_OWNER)) return -EOPNOTSUPP; + /* No dormant off/on/off/on games in single transaction */ + if (ctx->table->flags & __NFT_TABLE_F_UPDATE) + return -EINVAL; + trans = nft_trans_alloc(ctx, NFT_MSG_NEWTABLE, sizeof(struct nft_trans_table)); if (trans == NULL) @@ -1242,6 +1247,30 @@ static int nft_objname_hash_cmp(struct rhashtable_compare_arg *arg, return strcmp(obj->key.name, k->name); } +static bool nft_supported_family(u8 family) +{ + return false +#ifdef CONFIG_NF_TABLES_INET + || family == NFPROTO_INET +#endif +#ifdef CONFIG_NF_TABLES_IPV4 + || family == NFPROTO_IPV4 +#endif +#ifdef CONFIG_NF_TABLES_ARP + || family == NFPROTO_ARP +#endif +#ifdef CONFIG_NF_TABLES_NETDEV + || family == NFPROTO_NETDEV +#endif +#if IS_ENABLED(CONFIG_NF_TABLES_BRIDGE) + || family == NFPROTO_BRIDGE +#endif +#ifdef CONFIG_NF_TABLES_IPV6 + || family == NFPROTO_IPV6 +#endif + ; +} + static int nf_tables_newtable(struct sk_buff *skb, const struct nfnl_info *info, const struct nlattr * const nla[]) { @@ -1256,6 +1285,9 @@ static int nf_tables_newtable(struct sk_buff *skb, const struct nfnl_info *info, u32 flags = 0; int err; + if (!nft_supported_family(family)) + return -EOPNOTSUPP; + lockdep_assert_held(&nft_net->commit_mutex); attr = nla[NFTA_TABLE_NAME]; table = nft_table_lookup(net, attr, family, genmask, @@ -1358,8 +1390,7 @@ static int nft_flush_table(struct nft_ctx *ctx) if (!nft_is_active_next(ctx->net, set)) continue; - if (nft_set_is_anonymous(set) && - !list_empty(&set->bindings)) + if (nft_set_is_anonymous(set)) continue; err = nft_delset(ctx, set); @@ -1455,7 +1486,7 @@ static int nf_tables_deltable(struct sk_buff *skb, const struct nfnl_info *info, if (nla[NFTA_TABLE_HANDLE]) { attr = nla[NFTA_TABLE_HANDLE]; - table = nft_table_lookup_byhandle(net, attr, genmask, + table = nft_table_lookup_byhandle(net, attr, family, genmask, NETLINK_CB(skb).portid); } else { attr = nla[NFTA_TABLE_NAME]; @@ -3181,10 +3212,6 @@ static int __nf_tables_dump_rules(struct sk_buff *skb, goto cont_skip; if (*idx < s_idx) goto cont; - if (*idx > s_idx) { - memset(&cb->args[1], 0, - sizeof(cb->args) - sizeof(cb->args[0])); - } if (prule) handle = prule->handle; else @@ -6007,7 +6034,7 @@ static int nft_setelem_catchall_deactivate(const struct net *net, list_for_each_entry(catchall, &set->catchall_list, list) { ext = nft_set_elem_ext(set, catchall->elem); - if (!nft_is_active(net, ext)) + if (!nft_is_active_next(net, ext)) continue; kfree(elem->priv); @@ -6050,6 +6077,12 @@ static int nft_setelem_deactivate(const struct net *net, return ret; } +static void nft_setelem_catchall_destroy(struct nft_set_elem_catchall *catchall) +{ + list_del_rcu(&catchall->list); + kfree_rcu(catchall, rcu); +} + static void nft_setelem_catchall_remove(const struct net *net, const struct nft_set *set, const struct nft_set_elem *elem) @@ -6058,8 +6091,7 @@ static void nft_setelem_catchall_remove(const struct net *net, list_for_each_entry_safe(catchall, next, &set->catchall_list, list) { if (catchall->elem == elem->priv) { - list_del_rcu(&catchall->list); - kfree_rcu(catchall, rcu); + nft_setelem_catchall_destroy(catchall); break; } } @@ -6760,8 +6792,10 @@ static int nf_tables_delsetelem(struct sk_buff *skb, if (IS_ERR(set)) return PTR_ERR(set); - if (!list_empty(&set->bindings) && - (set->flags & (NFT_SET_CONSTANT | NFT_SET_ANONYMOUS))) + if (nft_set_is_anonymous(set)) + return -EOPNOTSUPP; + + if (!list_empty(&set->bindings) && (set->flags & NFT_SET_CONSTANT)) return -EBUSY; nft_ctx_init(&ctx, net, skb, info->nlh, family, table, NULL, nla); @@ -8992,12 +9026,15 @@ static int nft_trans_gc_space(struct nft_trans_gc *trans) struct nft_trans_gc *nft_trans_gc_queue_async(struct nft_trans_gc *gc, unsigned int gc_seq, gfp_t gfp) { + struct nft_set *set; + if (nft_trans_gc_space(gc)) return gc; + set = gc->set; nft_trans_gc_queue_work(gc); - return nft_trans_gc_alloc(gc->set, gc_seq, gfp); + return nft_trans_gc_alloc(set, gc_seq, gfp); } void nft_trans_gc_queue_async_done(struct nft_trans_gc *trans) @@ -9012,15 +9049,18 @@ void nft_trans_gc_queue_async_done(struct nft_trans_gc *trans) struct nft_trans_gc *nft_trans_gc_queue_sync(struct nft_trans_gc *gc, gfp_t gfp) { + struct nft_set *set; + if (WARN_ON_ONCE(!lockdep_commit_lock_is_held(gc->net))) return NULL; if (nft_trans_gc_space(gc)) return gc; + set = gc->set; call_rcu(&gc->rcu, nft_trans_gc_trans_free); - return nft_trans_gc_alloc(gc->set, 0, gfp); + return nft_trans_gc_alloc(set, 0, gfp); } void nft_trans_gc_queue_sync_done(struct nft_trans_gc *trans) @@ -9035,8 +9075,8 @@ void nft_trans_gc_queue_sync_done(struct nft_trans_gc *trans) call_rcu(&trans->rcu, nft_trans_gc_trans_free); } -struct nft_trans_gc *nft_trans_gc_catchall(struct nft_trans_gc *gc, - unsigned int gc_seq) +struct nft_trans_gc *nft_trans_gc_catchall_async(struct nft_trans_gc *gc, + unsigned int gc_seq) { struct nft_set_elem_catchall *catchall; const struct nft_set *set = gc->set; @@ -9062,6 +9102,36 @@ struct nft_trans_gc *nft_trans_gc_catchall(struct nft_trans_gc *gc, return gc; } +struct nft_trans_gc *nft_trans_gc_catchall_sync(struct nft_trans_gc *gc) +{ + struct nft_set_elem_catchall *catchall, *next; + const struct nft_set *set = gc->set; + struct nft_set_elem elem; + struct nft_set_ext *ext; + + WARN_ON_ONCE(!lockdep_commit_lock_is_held(gc->net)); + + list_for_each_entry_safe(catchall, next, &set->catchall_list, list) { + ext = nft_set_elem_ext(set, catchall->elem); + + if (!nft_set_elem_expired(ext)) + continue; + + gc = nft_trans_gc_queue_sync(gc, GFP_KERNEL); + if (!gc) + return NULL; + + memset(&elem, 0, sizeof(elem)); + elem.priv = catchall->elem; + + nft_setelem_data_deactivate(gc->net, gc->set, &elem); + nft_setelem_catchall_destroy(catchall); + nft_trans_gc_elem_add(gc, elem.priv); + } + + return gc; +} + static void nf_tables_module_autoload_cleanup(struct net *net) { struct nftables_pernet *nft_net = nft_pernet(net); @@ -9213,7 +9283,7 @@ static void nft_set_commit_update(struct list_head *set_update_list) list_for_each_entry_safe(set, next, set_update_list, pending_update) { list_del_init(&set->pending_update); - if (!set->ops->commit) + if (!set->ops->commit || set->dead) continue; set->ops->commit(set); @@ -10159,16 +10229,10 @@ static int nft_verdict_init(const struct nft_ctx *ctx, struct nft_data *data, data->verdict.code = ntohl(nla_get_be32(tb[NFTA_VERDICT_CODE])); switch (data->verdict.code) { - default: - switch (data->verdict.code & NF_VERDICT_MASK) { - case NF_ACCEPT: - case NF_DROP: - case NF_QUEUE: - break; - default: - return -EINVAL; - } - fallthrough; + case NF_ACCEPT: + case NF_DROP: + case NF_QUEUE: + break; case NFT_CONTINUE: case NFT_BREAK: case NFT_RETURN: @@ -10203,6 +10267,8 @@ static int nft_verdict_init(const struct nft_ctx *ctx, struct nft_data *data, data->verdict.chain = chain; break; + default: + return -EINVAL; } desc->len = sizeof(data->verdict); diff --git a/net/netfilter/nfnetlink_log.c b/net/netfilter/nfnetlink_log.c index 7f83f9697fc14..09fe6cf358ec7 100644 --- a/net/netfilter/nfnetlink_log.c +++ b/net/netfilter/nfnetlink_log.c @@ -687,8 +687,8 @@ nfulnl_log_packet(struct net *net, unsigned int plen = 0; struct nfnl_log_net *log = nfnl_log_pernet(net); const struct nfnl_ct_hook *nfnl_ct = NULL; + enum ip_conntrack_info ctinfo = 0; struct nf_conn *ct = NULL; - enum ip_conntrack_info ctinfo; if (li_user && li_user->type == NF_LOG_TYPE_ULOG) li = li_user; diff --git a/net/netfilter/nft_byteorder.c b/net/netfilter/nft_byteorder.c index 7b0b8fecb2205..adf208b7929fd 100644 --- a/net/netfilter/nft_byteorder.c +++ b/net/netfilter/nft_byteorder.c @@ -38,20 +38,22 @@ void nft_byteorder_eval(const struct nft_expr *expr, switch (priv->size) { case 8: { + u64 *dst64 = (void *)dst; u64 src64; switch (priv->op) { case NFT_BYTEORDER_NTOH: for (i = 0; i < priv->len / 8; i++) { src64 = nft_reg_load64(&src[i]); - nft_reg_store64(&dst[i], be64_to_cpu(src64)); + nft_reg_store64(&dst64[i], + be64_to_cpu((__force __be64)src64)); } break; case NFT_BYTEORDER_HTON: for (i = 0; i < priv->len / 8; i++) { src64 = (__force __u64) cpu_to_be64(nft_reg_load64(&src[i])); - nft_reg_store64(&dst[i], src64); + nft_reg_store64(&dst64[i], src64); } break; } diff --git a/net/netfilter/nft_dynset.c b/net/netfilter/nft_dynset.c index 73e606372b05d..e714e0efa7363 100644 --- a/net/netfilter/nft_dynset.c +++ b/net/netfilter/nft_dynset.c @@ -279,10 +279,15 @@ static int nft_dynset_init(const struct nft_ctx *ctx, priv->expr_array[i] = dynset_expr; priv->num_exprs++; - if (set->num_exprs && - dynset_expr->ops != set->exprs[i]->ops) { - err = -EOPNOTSUPP; - goto err_expr_free; + if (set->num_exprs) { + if (i >= set->num_exprs) { + err = -EINVAL; + goto err_expr_free; + } + if (dynset_expr->ops != set->exprs[i]->ops) { + err = -EOPNOTSUPP; + goto err_expr_free; + } } i++; } diff --git a/net/netfilter/nft_exthdr.c b/net/netfilter/nft_exthdr.c index 3609680831a14..daee46cf62abb 100644 --- a/net/netfilter/nft_exthdr.c +++ b/net/netfilter/nft_exthdr.c @@ -245,7 +245,12 @@ static void nft_exthdr_tcp_set_eval(const struct nft_expr *expr, if (!tcph) goto err; + if (skb_ensure_writable(pkt->skb, nft_thoff(pkt) + tcphdr_len)) + goto err; + + tcph = (struct tcphdr *)(pkt->skb->data + nft_thoff(pkt)); opt = (u8 *)tcph; + for (i = sizeof(*tcph); i < tcphdr_len - 1; i += optl) { union { __be16 v16; @@ -260,15 +265,6 @@ static void nft_exthdr_tcp_set_eval(const struct nft_expr *expr, if (i + optl > tcphdr_len || priv->len + priv->offset > optl) goto err; - if (skb_ensure_writable(pkt->skb, - nft_thoff(pkt) + i + priv->len)) - goto err; - - tcph = nft_tcp_header_pointer(pkt, sizeof(buff), buff, - &tcphdr_len); - if (!tcph) - goto err; - offset = i + priv->offset; switch (priv->len) { @@ -315,6 +311,63 @@ static void nft_exthdr_tcp_set_eval(const struct nft_expr *expr, regs->verdict.code = NFT_BREAK; } +static void nft_exthdr_tcp_strip_eval(const struct nft_expr *expr, + struct nft_regs *regs, + const struct nft_pktinfo *pkt) +{ + u8 buff[sizeof(struct tcphdr) + MAX_TCP_OPTION_SPACE]; + struct nft_exthdr *priv = nft_expr_priv(expr); + unsigned int i, tcphdr_len, optl; + struct tcphdr *tcph; + u8 *opt; + + tcph = nft_tcp_header_pointer(pkt, sizeof(buff), buff, &tcphdr_len); + if (!tcph) + goto err; + + if (skb_ensure_writable(pkt->skb, nft_thoff(pkt) + tcphdr_len)) + goto drop; + + tcph = (struct tcphdr *)(pkt->skb->data + nft_thoff(pkt)); + opt = (u8 *)tcph; + + for (i = sizeof(*tcph); i < tcphdr_len - 1; i += optl) { + unsigned int j; + + optl = optlen(opt, i); + if (priv->type != opt[i]) + continue; + + if (i + optl > tcphdr_len) + goto drop; + + for (j = 0; j < optl; ++j) { + u16 n = TCPOPT_NOP; + u16 o = opt[i+j]; + + if ((i + j) % 2 == 0) { + o <<= 8; + n <<= 8; + } + inet_proto_csum_replace2(&tcph->check, pkt->skb, htons(o), + htons(n), false); + } + memset(opt + i, TCPOPT_NOP, optl); + return; + } + + /* option not found, continue. This allows to do multiple + * option removals per rule. + */ + return; +err: + regs->verdict.code = NFT_BREAK; + return; +drop: + /* can't remove, no choice but to drop */ + regs->verdict.code = NF_DROP; +} + static void nft_exthdr_sctp_eval(const struct nft_expr *expr, struct nft_regs *regs, const struct nft_pktinfo *pkt) @@ -463,6 +516,28 @@ static int nft_exthdr_tcp_set_init(const struct nft_ctx *ctx, priv->len); } +static int nft_exthdr_tcp_strip_init(const struct nft_ctx *ctx, + const struct nft_expr *expr, + const struct nlattr * const tb[]) +{ + struct nft_exthdr *priv = nft_expr_priv(expr); + + if (tb[NFTA_EXTHDR_SREG] || + tb[NFTA_EXTHDR_DREG] || + tb[NFTA_EXTHDR_FLAGS] || + tb[NFTA_EXTHDR_OFFSET] || + tb[NFTA_EXTHDR_LEN]) + return -EINVAL; + + if (!tb[NFTA_EXTHDR_TYPE]) + return -EINVAL; + + priv->type = nla_get_u8(tb[NFTA_EXTHDR_TYPE]); + priv->op = NFT_EXTHDR_OP_TCPOPT; + + return 0; +} + static int nft_exthdr_ipv4_init(const struct nft_ctx *ctx, const struct nft_expr *expr, const struct nlattr * const tb[]) @@ -523,6 +598,13 @@ static int nft_exthdr_dump_set(struct sk_buff *skb, const struct nft_expr *expr) return nft_exthdr_dump_common(skb, priv); } +static int nft_exthdr_dump_strip(struct sk_buff *skb, const struct nft_expr *expr) +{ + const struct nft_exthdr *priv = nft_expr_priv(expr); + + return nft_exthdr_dump_common(skb, priv); +} + static const struct nft_expr_ops nft_exthdr_ipv6_ops = { .type = &nft_exthdr_type, .size = NFT_EXPR_SIZE(sizeof(struct nft_exthdr)), @@ -555,6 +637,14 @@ static const struct nft_expr_ops nft_exthdr_tcp_set_ops = { .dump = nft_exthdr_dump_set, }; +static const struct nft_expr_ops nft_exthdr_tcp_strip_ops = { + .type = &nft_exthdr_type, + .size = NFT_EXPR_SIZE(sizeof(struct nft_exthdr)), + .eval = nft_exthdr_tcp_strip_eval, + .init = nft_exthdr_tcp_strip_init, + .dump = nft_exthdr_dump_strip, +}; + static const struct nft_expr_ops nft_exthdr_sctp_ops = { .type = &nft_exthdr_type, .size = NFT_EXPR_SIZE(sizeof(struct nft_exthdr)), @@ -582,7 +672,7 @@ nft_exthdr_select_ops(const struct nft_ctx *ctx, return &nft_exthdr_tcp_set_ops; if (tb[NFTA_EXTHDR_DREG]) return &nft_exthdr_tcp_ops; - break; + return &nft_exthdr_tcp_strip_ops; case NFT_EXTHDR_OP_IPV6: if (tb[NFTA_EXTHDR_DREG]) return &nft_exthdr_ipv6_ops; diff --git a/net/netfilter/nft_meta.c b/net/netfilter/nft_meta.c index cc37e3967eea8..fd529d88bac6c 100644 --- a/net/netfilter/nft_meta.c +++ b/net/netfilter/nft_meta.c @@ -63,7 +63,7 @@ nft_meta_get_eval_time(enum nft_meta_keys key, { switch (key) { case NFT_META_TIME_NS: - nft_reg_store64(dest, ktime_get_real_ns()); + nft_reg_store64((u64 *)dest, ktime_get_real_ns()); break; case NFT_META_TIME_DAY: nft_reg_store8(dest, nft_meta_weekday()); diff --git a/net/netfilter/nft_osf.c b/net/netfilter/nft_osf.c index 720dc9fba6d4f..c9c124200a4db 100644 --- a/net/netfilter/nft_osf.c +++ b/net/netfilter/nft_osf.c @@ -99,7 +99,7 @@ static int nft_osf_dump(struct sk_buff *skb, const struct nft_expr *expr) if (nla_put_u8(skb, NFTA_OSF_TTL, priv->ttl)) goto nla_put_failure; - if (nla_put_be32(skb, NFTA_OSF_FLAGS, ntohl(priv->flags))) + if (nla_put_u32(skb, NFTA_OSF_FLAGS, ntohl((__force __be32)priv->flags))) goto nla_put_failure; if (nft_dump_register(skb, NFTA_OSF_DREG, priv->dreg)) diff --git a/net/netfilter/nft_payload.c b/net/netfilter/nft_payload.c index 208a6f59281db..02327ffebc495 100644 --- a/net/netfilter/nft_payload.c +++ b/net/netfilter/nft_payload.c @@ -133,7 +133,7 @@ void nft_payload_eval(const struct nft_expr *expr, switch (priv->base) { case NFT_PAYLOAD_LL_HEADER: - if (!skb_mac_header_was_set(skb)) + if (!skb_mac_header_was_set(skb) || skb_mac_header_len(skb) == 0) goto err; if (skb_vlan_tag_present(skb)) { diff --git a/net/netfilter/nft_redir.c b/net/netfilter/nft_redir.c index e64f531d66cfc..677ce42183691 100644 --- a/net/netfilter/nft_redir.c +++ b/net/netfilter/nft_redir.c @@ -64,6 +64,8 @@ static int nft_redir_init(const struct nft_ctx *ctx, } else { priv->sreg_proto_max = priv->sreg_proto_min; } + + priv->flags |= NF_NAT_RANGE_PROTO_SPECIFIED; } if (tb[NFTA_REDIR_FLAGS]) { @@ -98,25 +100,37 @@ static int nft_redir_dump(struct sk_buff *skb, const struct nft_expr *expr) return -1; } -static void nft_redir_ipv4_eval(const struct nft_expr *expr, - struct nft_regs *regs, - const struct nft_pktinfo *pkt) +static void nft_redir_eval(const struct nft_expr *expr, + struct nft_regs *regs, + const struct nft_pktinfo *pkt) { - struct nft_redir *priv = nft_expr_priv(expr); - struct nf_nat_ipv4_multi_range_compat mr; + const struct nft_redir *priv = nft_expr_priv(expr); + struct nf_nat_range2 range; - memset(&mr, 0, sizeof(mr)); + memset(&range, 0, sizeof(range)); + range.flags = priv->flags; if (priv->sreg_proto_min) { - mr.range[0].min.all = (__force __be16)nft_reg_load16( - ®s->data[priv->sreg_proto_min]); - mr.range[0].max.all = (__force __be16)nft_reg_load16( - ®s->data[priv->sreg_proto_max]); - mr.range[0].flags |= NF_NAT_RANGE_PROTO_SPECIFIED; + range.min_proto.all = (__force __be16) + nft_reg_load16(®s->data[priv->sreg_proto_min]); + range.max_proto.all = (__force __be16) + nft_reg_load16(®s->data[priv->sreg_proto_max]); } - mr.range[0].flags |= priv->flags; - - regs->verdict.code = nf_nat_redirect_ipv4(pkt->skb, &mr, nft_hook(pkt)); + switch (nft_pf(pkt)) { + case NFPROTO_IPV4: + regs->verdict.code = nf_nat_redirect_ipv4(pkt->skb, &range, + nft_hook(pkt)); + break; +#ifdef CONFIG_NF_TABLES_IPV6 + case NFPROTO_IPV6: + regs->verdict.code = nf_nat_redirect_ipv6(pkt->skb, &range, + nft_hook(pkt)); + break; +#endif + default: + WARN_ON_ONCE(1); + break; + } } static void @@ -129,7 +143,7 @@ static struct nft_expr_type nft_redir_ipv4_type; static const struct nft_expr_ops nft_redir_ipv4_ops = { .type = &nft_redir_ipv4_type, .size = NFT_EXPR_SIZE(sizeof(struct nft_redir)), - .eval = nft_redir_ipv4_eval, + .eval = nft_redir_eval, .init = nft_redir_init, .destroy = nft_redir_ipv4_destroy, .dump = nft_redir_dump, @@ -146,28 +160,6 @@ static struct nft_expr_type nft_redir_ipv4_type __read_mostly = { }; #ifdef CONFIG_NF_TABLES_IPV6 -static void nft_redir_ipv6_eval(const struct nft_expr *expr, - struct nft_regs *regs, - const struct nft_pktinfo *pkt) -{ - struct nft_redir *priv = nft_expr_priv(expr); - struct nf_nat_range2 range; - - memset(&range, 0, sizeof(range)); - if (priv->sreg_proto_min) { - range.min_proto.all = (__force __be16)nft_reg_load16( - ®s->data[priv->sreg_proto_min]); - range.max_proto.all = (__force __be16)nft_reg_load16( - ®s->data[priv->sreg_proto_max]); - range.flags |= NF_NAT_RANGE_PROTO_SPECIFIED; - } - - range.flags |= priv->flags; - - regs->verdict.code = - nf_nat_redirect_ipv6(pkt->skb, &range, nft_hook(pkt)); -} - static void nft_redir_ipv6_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr) { @@ -178,7 +170,7 @@ static struct nft_expr_type nft_redir_ipv6_type; static const struct nft_expr_ops nft_redir_ipv6_ops = { .type = &nft_redir_ipv6_type, .size = NFT_EXPR_SIZE(sizeof(struct nft_redir)), - .eval = nft_redir_ipv6_eval, + .eval = nft_redir_eval, .init = nft_redir_init, .destroy = nft_redir_ipv6_destroy, .dump = nft_redir_dump, @@ -196,20 +188,6 @@ static struct nft_expr_type nft_redir_ipv6_type __read_mostly = { #endif #ifdef CONFIG_NF_TABLES_INET -static void nft_redir_inet_eval(const struct nft_expr *expr, - struct nft_regs *regs, - const struct nft_pktinfo *pkt) -{ - switch (nft_pf(pkt)) { - case NFPROTO_IPV4: - return nft_redir_ipv4_eval(expr, regs, pkt); - case NFPROTO_IPV6: - return nft_redir_ipv6_eval(expr, regs, pkt); - } - - WARN_ON_ONCE(1); -} - static void nft_redir_inet_destroy(const struct nft_ctx *ctx, const struct nft_expr *expr) { @@ -220,7 +198,7 @@ static struct nft_expr_type nft_redir_inet_type; static const struct nft_expr_ops nft_redir_inet_ops = { .type = &nft_redir_inet_type, .size = NFT_EXPR_SIZE(sizeof(struct nft_redir)), - .eval = nft_redir_inet_eval, + .eval = nft_redir_eval, .init = nft_redir_init, .destroy = nft_redir_inet_destroy, .dump = nft_redir_dump, diff --git a/net/netfilter/nft_set_hash.c b/net/netfilter/nft_set_hash.c index 524763659f251..2013de934cef0 100644 --- a/net/netfilter/nft_set_hash.c +++ b/net/netfilter/nft_set_hash.c @@ -338,12 +338,9 @@ static void nft_rhash_gc(struct work_struct *work) while ((he = rhashtable_walk_next(&hti))) { if (IS_ERR(he)) { - if (PTR_ERR(he) != -EAGAIN) { - nft_trans_gc_destroy(gc); - gc = NULL; - goto try_later; - } - continue; + nft_trans_gc_destroy(gc); + gc = NULL; + goto try_later; } /* Ruleset has been updated, try later. */ @@ -372,7 +369,7 @@ static void nft_rhash_gc(struct work_struct *work) nft_trans_gc_elem_add(gc, he); } - gc = nft_trans_gc_catchall(gc, gc_seq); + gc = nft_trans_gc_catchall_async(gc, gc_seq); try_later: /* catchall list iteration requires rcu read side lock. */ diff --git a/net/netfilter/nft_set_pipapo.c b/net/netfilter/nft_set_pipapo.c index a9da4683b8c53..4e1cc31729b80 100644 --- a/net/netfilter/nft_set_pipapo.c +++ b/net/netfilter/nft_set_pipapo.c @@ -1597,7 +1597,7 @@ static void pipapo_gc(const struct nft_set *_set, struct nft_pipapo_match *m) gc = nft_trans_gc_queue_sync(gc, GFP_ATOMIC); if (!gc) - break; + return; nft_pipapo_gc_deactivate(net, set, e); pipapo_drop(m, rulemap); @@ -1611,7 +1611,7 @@ static void pipapo_gc(const struct nft_set *_set, struct nft_pipapo_match *m) } } - gc = nft_trans_gc_catchall(gc, 0); + gc = nft_trans_gc_catchall_sync(gc); if (gc) { nft_trans_gc_queue_sync_done(gc); priv->last_gc = jiffies; @@ -2042,6 +2042,9 @@ static void nft_pipapo_walk(const struct nft_ctx *ctx, struct nft_set *set, e = f->mt[r].e; + if (!nft_set_elem_active(&e->ext, iter->genmask)) + goto cont; + elem.priv = e; iter->err = iter->fn(ctx, set, iter, &elem); diff --git a/net/netfilter/nft_set_rbtree.c b/net/netfilter/nft_set_rbtree.c index f250b5399344a..e34662f4a71e0 100644 --- a/net/netfilter/nft_set_rbtree.c +++ b/net/netfilter/nft_set_rbtree.c @@ -233,10 +233,9 @@ static void nft_rbtree_gc_remove(struct net *net, struct nft_set *set, rb_erase(&rbe->node, &priv->root); } -static int nft_rbtree_gc_elem(const struct nft_set *__set, - struct nft_rbtree *priv, - struct nft_rbtree_elem *rbe, - u8 genmask) +static const struct nft_rbtree_elem * +nft_rbtree_gc_elem(const struct nft_set *__set, struct nft_rbtree *priv, + struct nft_rbtree_elem *rbe, u8 genmask) { struct nft_set *set = (struct nft_set *)__set; struct rb_node *prev = rb_prev(&rbe->node); @@ -246,7 +245,7 @@ static int nft_rbtree_gc_elem(const struct nft_set *__set, gc = nft_trans_gc_alloc(set, 0, GFP_ATOMIC); if (!gc) - return -ENOMEM; + return ERR_PTR(-ENOMEM); /* search for end interval coming before this element. * end intervals don't carry a timeout extension, they @@ -261,6 +260,7 @@ static int nft_rbtree_gc_elem(const struct nft_set *__set, prev = rb_prev(prev); } + rbe_prev = NULL; if (prev) { rbe_prev = rb_entry(prev, struct nft_rbtree_elem, node); nft_rbtree_gc_remove(net, set, priv, rbe_prev); @@ -272,7 +272,7 @@ static int nft_rbtree_gc_elem(const struct nft_set *__set, */ gc = nft_trans_gc_queue_sync(gc, GFP_ATOMIC); if (WARN_ON_ONCE(!gc)) - return -ENOMEM; + return ERR_PTR(-ENOMEM); nft_trans_gc_elem_add(gc, rbe_prev); } @@ -280,13 +280,13 @@ static int nft_rbtree_gc_elem(const struct nft_set *__set, nft_rbtree_gc_remove(net, set, priv, rbe); gc = nft_trans_gc_queue_sync(gc, GFP_ATOMIC); if (WARN_ON_ONCE(!gc)) - return -ENOMEM; + return ERR_PTR(-ENOMEM); nft_trans_gc_elem_add(gc, rbe); nft_trans_gc_queue_sync_done(gc); - return 0; + return rbe_prev; } static bool nft_rbtree_update_first(const struct nft_set *set, @@ -314,7 +314,7 @@ static int __nft_rbtree_insert(const struct net *net, const struct nft_set *set, struct nft_rbtree *priv = nft_set_priv(set); u8 cur_genmask = nft_genmask_cur(net); u8 genmask = nft_genmask_next(net); - int d, err; + int d; /* Descend the tree to search for an existing element greater than the * key value to insert that is greater than the new element. This is the @@ -363,9 +363,14 @@ static int __nft_rbtree_insert(const struct net *net, const struct nft_set *set, */ if (nft_set_elem_expired(&rbe->ext) && nft_set_elem_active(&rbe->ext, cur_genmask)) { - err = nft_rbtree_gc_elem(set, priv, rbe, genmask); - if (err < 0) - return err; + const struct nft_rbtree_elem *removed_end; + + removed_end = nft_rbtree_gc_elem(set, priv, rbe, genmask); + if (IS_ERR(removed_end)) + return PTR_ERR(removed_end); + + if (removed_end == rbe_le || removed_end == rbe_ge) + return -EAGAIN; continue; } @@ -486,11 +491,18 @@ static int nft_rbtree_insert(const struct net *net, const struct nft_set *set, struct nft_rbtree_elem *rbe = elem->priv; int err; - write_lock_bh(&priv->lock); - write_seqcount_begin(&priv->count); - err = __nft_rbtree_insert(net, set, rbe, ext); - write_seqcount_end(&priv->count); - write_unlock_bh(&priv->lock); + do { + if (fatal_signal_pending(current)) + return -EINTR; + + cond_resched(); + + write_lock_bh(&priv->lock); + write_seqcount_begin(&priv->count); + err = __nft_rbtree_insert(net, set, rbe, ext); + write_seqcount_end(&priv->count); + write_unlock_bh(&priv->lock); + } while (err == -EAGAIN); return err; } @@ -556,6 +568,8 @@ static void *nft_rbtree_deactivate(const struct net *net, nft_rbtree_interval_end(this)) { parent = parent->rb_right; continue; + } else if (nft_set_elem_expired(&rbe->ext)) { + break; } else if (!nft_set_elem_active(&rbe->ext, genmask)) { parent = parent->rb_left; continue; @@ -622,8 +636,7 @@ static void nft_rbtree_gc(struct work_struct *work) if (!gc) goto done; - write_lock_bh(&priv->lock); - write_seqcount_begin(&priv->count); + read_lock_bh(&priv->lock); for (node = rb_first(&priv->root); node != NULL; node = rb_next(node)) { /* Ruleset has been updated, try later. */ @@ -670,11 +683,10 @@ static void nft_rbtree_gc(struct work_struct *work) nft_trans_gc_elem_add(gc, rbe); } - gc = nft_trans_gc_catchall(gc, gc_seq); + gc = nft_trans_gc_catchall_async(gc, gc_seq); try_later: - write_seqcount_end(&priv->count); - write_unlock_bh(&priv->lock); + read_unlock_bh(&priv->lock); if (gc) nft_trans_gc_queue_async_done(gc); diff --git a/net/netfilter/nft_socket.c b/net/netfilter/nft_socket.c index 9ad9cc0d1d27c..1725e7349f3d9 100644 --- a/net/netfilter/nft_socket.c +++ b/net/netfilter/nft_socket.c @@ -162,7 +162,7 @@ static int nft_socket_init(const struct nft_ctx *ctx, return -EOPNOTSUPP; } - priv->key = ntohl(nla_get_u32(tb[NFTA_SOCKET_KEY])); + priv->key = ntohl(nla_get_be32(tb[NFTA_SOCKET_KEY])); switch(priv->key) { case NFT_SOCKET_TRANSPARENT: case NFT_SOCKET_WILDCARD: @@ -178,7 +178,7 @@ static int nft_socket_init(const struct nft_ctx *ctx, if (!tb[NFTA_SOCKET_LEVEL]) return -EINVAL; - level = ntohl(nla_get_u32(tb[NFTA_SOCKET_LEVEL])); + level = ntohl(nla_get_be32(tb[NFTA_SOCKET_LEVEL])); if (level > 255) return -EOPNOTSUPP; @@ -200,12 +200,12 @@ static int nft_socket_dump(struct sk_buff *skb, { const struct nft_socket *priv = nft_expr_priv(expr); - if (nla_put_u32(skb, NFTA_SOCKET_KEY, htonl(priv->key))) + if (nla_put_be32(skb, NFTA_SOCKET_KEY, htonl(priv->key))) return -1; if (nft_dump_register(skb, NFTA_SOCKET_DREG, priv->dreg)) return -1; if (priv->key == NFT_SOCKET_CGROUPV2 && - nla_put_u32(skb, NFTA_SOCKET_LEVEL, htonl(priv->level))) + nla_put_be32(skb, NFTA_SOCKET_LEVEL, htonl(priv->level))) return -1; return 0; } diff --git a/net/netfilter/nft_tproxy.c b/net/netfilter/nft_tproxy.c index 9fea90ed79d44..e9679cb4afbe6 100644 --- a/net/netfilter/nft_tproxy.c +++ b/net/netfilter/nft_tproxy.c @@ -52,11 +52,11 @@ static void nft_tproxy_eval_v4(const struct nft_expr *expr, skb->dev, NF_TPROXY_LOOKUP_ESTABLISHED); if (priv->sreg_addr) - taddr = regs->data[priv->sreg_addr]; + taddr = nft_reg_load_be32(®s->data[priv->sreg_addr]); taddr = nf_tproxy_laddr4(skb, taddr, iph->daddr); if (priv->sreg_port) - tport = nft_reg_load16(®s->data[priv->sreg_port]); + tport = nft_reg_load_be16(®s->data[priv->sreg_port]); if (!tport) tport = hp->dest; @@ -124,7 +124,7 @@ static void nft_tproxy_eval_v6(const struct nft_expr *expr, taddr = *nf_tproxy_laddr6(skb, &taddr, &iph->daddr); if (priv->sreg_port) - tport = nft_reg_load16(®s->data[priv->sreg_port]); + tport = nft_reg_load_be16(®s->data[priv->sreg_port]); if (!tport) tport = hp->dest; diff --git a/net/netfilter/nft_xfrm.c b/net/netfilter/nft_xfrm.c index cbbbc4ecad3ae..3553f89fd057f 100644 --- a/net/netfilter/nft_xfrm.c +++ b/net/netfilter/nft_xfrm.c @@ -50,7 +50,7 @@ static int nft_xfrm_get_init(const struct nft_ctx *ctx, return -EOPNOTSUPP; } - priv->key = ntohl(nla_get_u32(tb[NFTA_XFRM_KEY])); + priv->key = ntohl(nla_get_be32(tb[NFTA_XFRM_KEY])); switch (priv->key) { case NFT_XFRM_KEY_REQID: case NFT_XFRM_KEY_SPI: @@ -132,13 +132,13 @@ static void nft_xfrm_state_get_key(const struct nft_xfrm *priv, WARN_ON_ONCE(1); break; case NFT_XFRM_KEY_DADDR_IP4: - *dest = state->id.daddr.a4; + *dest = (__force __u32)state->id.daddr.a4; return; case NFT_XFRM_KEY_DADDR_IP6: memcpy(dest, &state->id.daddr.in6, sizeof(struct in6_addr)); return; case NFT_XFRM_KEY_SADDR_IP4: - *dest = state->props.saddr.a4; + *dest = (__force __u32)state->props.saddr.a4; return; case NFT_XFRM_KEY_SADDR_IP6: memcpy(dest, &state->props.saddr.in6, sizeof(struct in6_addr)); @@ -147,7 +147,7 @@ static void nft_xfrm_state_get_key(const struct nft_xfrm *priv, *dest = state->props.reqid; return; case NFT_XFRM_KEY_SPI: - *dest = state->id.spi; + *dest = (__force __u32)state->id.spi; return; } diff --git a/net/netfilter/xt_REDIRECT.c b/net/netfilter/xt_REDIRECT.c index 353ca7801251a..ff66b56a3f97d 100644 --- a/net/netfilter/xt_REDIRECT.c +++ b/net/netfilter/xt_REDIRECT.c @@ -46,7 +46,6 @@ static void redirect_tg_destroy(const struct xt_tgdtor_param *par) nf_ct_netns_put(par->net, par->family); } -/* FIXME: Take multiple ranges --RR */ static int redirect_tg4_check(const struct xt_tgchk_param *par) { const struct nf_nat_ipv4_multi_range_compat *mr = par->targinfo; @@ -65,7 +64,14 @@ static int redirect_tg4_check(const struct xt_tgchk_param *par) static unsigned int redirect_tg4(struct sk_buff *skb, const struct xt_action_param *par) { - return nf_nat_redirect_ipv4(skb, par->targinfo, xt_hooknum(par)); + const struct nf_nat_ipv4_multi_range_compat *mr = par->targinfo; + struct nf_nat_range2 range = { + .flags = mr->range[0].flags, + .min_proto = mr->range[0].min, + .max_proto = mr->range[0].max, + }; + + return nf_nat_redirect_ipv4(skb, &range, xt_hooknum(par)); } static struct xt_target redirect_tg_reg[] __read_mostly = { diff --git a/net/netfilter/xt_owner.c b/net/netfilter/xt_owner.c index e85ce69924aee..50332888c8d23 100644 --- a/net/netfilter/xt_owner.c +++ b/net/netfilter/xt_owner.c @@ -76,18 +76,23 @@ owner_mt(const struct sk_buff *skb, struct xt_action_param *par) */ return false; - filp = sk->sk_socket->file; - if (filp == NULL) + read_lock_bh(&sk->sk_callback_lock); + filp = sk->sk_socket ? sk->sk_socket->file : NULL; + if (filp == NULL) { + read_unlock_bh(&sk->sk_callback_lock); return ((info->match ^ info->invert) & (XT_OWNER_UID | XT_OWNER_GID)) == 0; + } if (info->match & XT_OWNER_UID) { kuid_t uid_min = make_kuid(net->user_ns, info->uid_min); kuid_t uid_max = make_kuid(net->user_ns, info->uid_max); if ((uid_gte(filp->f_cred->fsuid, uid_min) && uid_lte(filp->f_cred->fsuid, uid_max)) ^ - !(info->invert & XT_OWNER_UID)) + !(info->invert & XT_OWNER_UID)) { + read_unlock_bh(&sk->sk_callback_lock); return false; + } } if (info->match & XT_OWNER_GID) { @@ -112,10 +117,13 @@ owner_mt(const struct sk_buff *skb, struct xt_action_param *par) } } - if (match ^ !(info->invert & XT_OWNER_GID)) + if (match ^ !(info->invert & XT_OWNER_GID)) { + read_unlock_bh(&sk->sk_callback_lock); return false; + } } + read_unlock_bh(&sk->sk_callback_lock); return true; } diff --git a/net/netfilter/xt_recent.c b/net/netfilter/xt_recent.c index 0446307516cdf..39937ff245275 100644 --- a/net/netfilter/xt_recent.c +++ b/net/netfilter/xt_recent.c @@ -561,7 +561,7 @@ recent_mt_proc_write(struct file *file, const char __user *input, { struct recent_table *t = PDE_DATA(file_inode(file)); struct recent_entry *e; - char buf[sizeof("+b335:1d35:1e55:dead:c0de:1715:5afe:c0de")]; + char buf[sizeof("+b335:1d35:1e55:dead:c0de:1715:255.255.255.255")]; const char *c = buf; union nf_inet_addr addr = {}; u_int16_t family; diff --git a/net/netlabel/netlabel_kapi.c b/net/netlabel/netlabel_kapi.c index 14ebe04248110..d0b50669bac13 100644 --- a/net/netlabel/netlabel_kapi.c +++ b/net/netlabel/netlabel_kapi.c @@ -857,7 +857,8 @@ int netlbl_catmap_setlong(struct netlbl_lsm_catmap **catmap, offset -= iter->startbit; idx = offset / NETLBL_CATMAP_MAPSIZE; - iter->bitmap[idx] |= bitmap << (offset % NETLBL_CATMAP_MAPSIZE); + iter->bitmap[idx] |= (NETLBL_CATMAP_MAPTYPE)bitmap + << (offset % NETLBL_CATMAP_MAPSIZE); return 0; } diff --git a/net/netlink/genetlink.c b/net/netlink/genetlink.c index 57010927e20a8..69b3a6b82f680 100644 --- a/net/netlink/genetlink.c +++ b/net/netlink/genetlink.c @@ -1379,6 +1379,9 @@ static int genl_bind(struct net *net, int group) if ((grp->flags & GENL_UNS_ADMIN_PERM) && !ns_capable(net->user_ns, CAP_NET_ADMIN)) ret = -EPERM; + if (grp->cap_sys_admin && + !ns_capable(net->user_ns, CAP_SYS_ADMIN)) + ret = -EPERM; break; } diff --git a/net/netrom/af_netrom.c b/net/netrom/af_netrom.c index 5c04da4cfbad0..24747163122bb 100644 --- a/net/netrom/af_netrom.c +++ b/net/netrom/af_netrom.c @@ -660,6 +660,11 @@ static int nr_connect(struct socket *sock, struct sockaddr *uaddr, goto out_release; } + if (sock->state == SS_CONNECTING) { + err = -EALREADY; + goto out_release; + } + sk->sk_state = TCP_CLOSE; sock->state = SS_UNCONNECTED; diff --git a/net/nfc/llcp_core.c b/net/nfc/llcp_core.c index ddfd159f64e13..92f70686bee0a 100644 --- a/net/nfc/llcp_core.c +++ b/net/nfc/llcp_core.c @@ -205,17 +205,13 @@ static struct nfc_llcp_sock *nfc_llcp_sock_get(struct nfc_llcp_local *local, if (tmp_sock->ssap == ssap && tmp_sock->dsap == dsap) { llcp_sock = tmp_sock; + sock_hold(&llcp_sock->sk); break; } } read_unlock(&local->sockets.lock); - if (llcp_sock == NULL) - return NULL; - - sock_hold(&llcp_sock->sk); - return llcp_sock; } @@ -348,7 +344,8 @@ static int nfc_llcp_wks_sap(const char *service_name, size_t service_name_len) static struct nfc_llcp_sock *nfc_llcp_sock_from_sn(struct nfc_llcp_local *local, - const u8 *sn, size_t sn_len) + const u8 *sn, size_t sn_len, + bool needref) { struct sock *sk; struct nfc_llcp_sock *llcp_sock, *tmp_sock; @@ -384,6 +381,8 @@ struct nfc_llcp_sock *nfc_llcp_sock_from_sn(struct nfc_llcp_local *local, if (memcmp(sn, tmp_sock->service_name, sn_len) == 0) { llcp_sock = tmp_sock; + if (needref) + sock_hold(&llcp_sock->sk); break; } } @@ -425,7 +424,8 @@ u8 nfc_llcp_get_sdp_ssap(struct nfc_llcp_local *local, * to this service name. */ if (nfc_llcp_sock_from_sn(local, sock->service_name, - sock->service_name_len) != NULL) { + sock->service_name_len, + false) != NULL) { mutex_unlock(&local->sdp_lock); return LLCP_SAP_MAX; @@ -833,16 +833,7 @@ static struct nfc_llcp_sock *nfc_llcp_connecting_sock_get(struct nfc_llcp_local static struct nfc_llcp_sock *nfc_llcp_sock_get_sn(struct nfc_llcp_local *local, const u8 *sn, size_t sn_len) { - struct nfc_llcp_sock *llcp_sock; - - llcp_sock = nfc_llcp_sock_from_sn(local, sn, sn_len); - - if (llcp_sock == NULL) - return NULL; - - sock_hold(&llcp_sock->sk); - - return llcp_sock; + return nfc_llcp_sock_from_sn(local, sn, sn_len, true); } static const u8 *nfc_llcp_connect_sn(const struct sk_buff *skb, size_t *sn_len) @@ -1307,7 +1298,8 @@ static void nfc_llcp_recv_snl(struct nfc_llcp_local *local, } llcp_sock = nfc_llcp_sock_from_sn(local, service_name, - service_name_len); + service_name_len, + true); if (!llcp_sock) { sap = 0; goto add_snl; @@ -1327,6 +1319,7 @@ static void nfc_llcp_recv_snl(struct nfc_llcp_local *local, if (sap == LLCP_SAP_MAX) { sap = 0; + nfc_llcp_sock_put(llcp_sock); goto add_snl; } @@ -1344,6 +1337,7 @@ static void nfc_llcp_recv_snl(struct nfc_llcp_local *local, pr_debug("%p %d\n", llcp_sock, sap); + nfc_llcp_sock_put(llcp_sock); add_snl: sdp = nfc_llcp_build_sdres_tlv(tid, sap); if (sdp == NULL) @@ -1646,7 +1640,9 @@ int nfc_llcp_register_device(struct nfc_dev *ndev) timer_setup(&local->sdreq_timer, nfc_llcp_sdreq_timer, 0); INIT_WORK(&local->sdreq_timeout_work, nfc_llcp_sdreq_timeout_work); + spin_lock(&llcp_devices_lock); list_add(&local->list, &llcp_devices); + spin_unlock(&llcp_devices_lock); return 0; } diff --git a/net/nfc/nci/core.c b/net/nfc/nci/core.c index 7b6cf9a44aea7..643dfc90b0636 100644 --- a/net/nfc/nci/core.c +++ b/net/nfc/nci/core.c @@ -908,6 +908,11 @@ static int nci_activate_target(struct nfc_dev *nfc_dev, return -EINVAL; } + if (protocol >= NFC_PROTO_MAX) { + pr_err("the requested nfc protocol is invalid\n"); + return -EINVAL; + } + if (!(nci_target->supported_protocols & (1 << protocol))) { pr_err("target does not support the requested protocol 0x%x\n", protocol); diff --git a/net/nfc/nci/spi.c b/net/nfc/nci/spi.c index 0935527d1d12b..b68150c971d0b 100644 --- a/net/nfc/nci/spi.c +++ b/net/nfc/nci/spi.c @@ -151,6 +151,8 @@ static int send_acknowledge(struct nci_spi *nspi, u8 acknowledge) int ret; skb = nci_skb_alloc(nspi->ndev, 0, GFP_KERNEL); + if (!skb) + return -ENOMEM; /* add the NCI SPI header to the start of the buffer */ hdr = skb_push(skb, NCI_SPI_HDR_LEN); diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c index 62c0fbb9de812..e7b54f7214110 100644 --- a/net/packet/af_packet.c +++ b/net/packet/af_packet.c @@ -4244,7 +4244,7 @@ static void packet_mm_open(struct vm_area_struct *vma) struct sock *sk = sock->sk; if (sk) - atomic_inc(&pkt_sk(sk)->mapped); + atomic_long_inc(&pkt_sk(sk)->mapped); } static void packet_mm_close(struct vm_area_struct *vma) @@ -4254,7 +4254,7 @@ static void packet_mm_close(struct vm_area_struct *vma) struct sock *sk = sock->sk; if (sk) - atomic_dec(&pkt_sk(sk)->mapped); + atomic_long_dec(&pkt_sk(sk)->mapped); } static const struct vm_operations_struct packet_mmap_ops = { @@ -4349,7 +4349,7 @@ static int packet_set_ring(struct sock *sk, union tpacket_req_u *req_u, err = -EBUSY; if (!closing) { - if (atomic_read(&po->mapped)) + if (atomic_long_read(&po->mapped)) goto out; if (packet_read_pending(rb)) goto out; @@ -4452,7 +4452,7 @@ static int packet_set_ring(struct sock *sk, union tpacket_req_u *req_u, err = -EBUSY; mutex_lock(&po->pg_vec_lock); - if (closing || atomic_read(&po->mapped) == 0) { + if (closing || atomic_long_read(&po->mapped) == 0) { err = 0; spin_lock_bh(&rb_queue->lock); swap(rb->pg_vec, pg_vec); @@ -4470,9 +4470,9 @@ static int packet_set_ring(struct sock *sk, union tpacket_req_u *req_u, po->prot_hook.func = (po->rx_ring.pg_vec) ? tpacket_rcv : packet_rcv; skb_queue_purge(rb_queue); - if (atomic_read(&po->mapped)) - pr_err("packet_mmap: vma is busy: %d\n", - atomic_read(&po->mapped)); + if (atomic_long_read(&po->mapped)) + pr_err("packet_mmap: vma is busy: %ld\n", + atomic_long_read(&po->mapped)); } mutex_unlock(&po->pg_vec_lock); @@ -4550,7 +4550,7 @@ static int packet_mmap(struct file *file, struct socket *sock, } } - atomic_inc(&po->mapped); + atomic_long_inc(&po->mapped); vma->vm_ops = &packet_mmap_ops; err = 0; diff --git a/net/packet/internal.h b/net/packet/internal.h index 3bae8ea7a36f5..b2edfe6fc8e77 100644 --- a/net/packet/internal.h +++ b/net/packet/internal.h @@ -126,7 +126,7 @@ struct packet_sock { __be16 num; struct packet_rollover *rollover; struct packet_mclist *mclist; - atomic_t mapped; + atomic_long_t mapped; enum tpacket_versions tp_version; unsigned int tp_hdrlen; unsigned int tp_reserve; diff --git a/net/psample/psample.c b/net/psample/psample.c index 118d5d2a81a02..0d9d9936579e0 100644 --- a/net/psample/psample.c +++ b/net/psample/psample.c @@ -31,7 +31,8 @@ enum psample_nl_multicast_groups { static const struct genl_multicast_group psample_nl_mcgrps[] = { [PSAMPLE_NL_MCGRP_CONFIG] = { .name = PSAMPLE_NL_MCGRP_CONFIG_NAME }, - [PSAMPLE_NL_MCGRP_SAMPLE] = { .name = PSAMPLE_NL_MCGRP_SAMPLE_NAME }, + [PSAMPLE_NL_MCGRP_SAMPLE] = { .name = PSAMPLE_NL_MCGRP_SAMPLE_NAME, + .flags = GENL_UNS_ADMIN_PERM }, }; static struct genl_family psample_nl_family __ro_after_init; diff --git a/net/rds/rdma_transport.c b/net/rds/rdma_transport.c index a9e4ff948a7d6..f71f073fd27ac 100644 --- a/net/rds/rdma_transport.c +++ b/net/rds/rdma_transport.c @@ -86,11 +86,13 @@ static int rds_rdma_cm_event_handler_cmn(struct rdma_cm_id *cm_id, break; case RDMA_CM_EVENT_ADDR_RESOLVED: - rdma_set_service_type(cm_id, conn->c_tos); - rdma_set_min_rnr_timer(cm_id, IB_RNR_TIMER_000_32); - /* XXX do we need to clean up if this fails? */ - ret = rdma_resolve_route(cm_id, - RDS_RDMA_RESOLVE_TIMEOUT_MS); + if (conn) { + rdma_set_service_type(cm_id, conn->c_tos); + rdma_set_min_rnr_timer(cm_id, IB_RNR_TIMER_000_32); + /* XXX do we need to clean up if this fails? */ + ret = rdma_resolve_route(cm_id, + RDS_RDMA_RESOLVE_TIMEOUT_MS); + } break; case RDMA_CM_EVENT_ROUTE_RESOLVED: diff --git a/net/rds/tcp_connect.c b/net/rds/tcp_connect.c index 5461d77fff4f4..4ddd1fd6ed23d 100644 --- a/net/rds/tcp_connect.c +++ b/net/rds/tcp_connect.c @@ -142,7 +142,7 @@ int rds_tcp_conn_path_connect(struct rds_conn_path *cp) addrlen = sizeof(sin); } - ret = sock->ops->bind(sock, addr, addrlen); + ret = kernel_bind(sock, addr, addrlen); if (ret) { rdsdebug("bind failed with %d at address %pI6c\n", ret, &conn->c_laddr); @@ -170,7 +170,7 @@ int rds_tcp_conn_path_connect(struct rds_conn_path *cp) * own the socket */ rds_tcp_set_callbacks(sock, cp); - ret = sock->ops->connect(sock, addr, addrlen, O_NONBLOCK); + ret = kernel_connect(sock, addr, addrlen, O_NONBLOCK); rdsdebug("connect to address %pI6c returned %d\n", &conn->c_faddr, ret); if (ret == -EINPROGRESS) diff --git a/net/rds/tcp_listen.c b/net/rds/tcp_listen.c index 09cadd556d1e1..3994eeef95a3c 100644 --- a/net/rds/tcp_listen.c +++ b/net/rds/tcp_listen.c @@ -301,7 +301,7 @@ struct socket *rds_tcp_listen_init(struct net *net, bool isv6) addr_len = sizeof(*sin); } - ret = sock->ops->bind(sock, (struct sockaddr *)&ss, addr_len); + ret = kernel_bind(sock, (struct sockaddr *)&ss, addr_len); if (ret < 0) { rdsdebug("could not bind %s listener socket: %d\n", isv6 ? "IPv6" : "IPv4", ret); diff --git a/net/rfkill/rfkill-gpio.c b/net/rfkill/rfkill-gpio.c index f5afc9bcdee65..2cc95c8dc4c7b 100644 --- a/net/rfkill/rfkill-gpio.c +++ b/net/rfkill/rfkill-gpio.c @@ -98,13 +98,13 @@ static int rfkill_gpio_probe(struct platform_device *pdev) rfkill->clk = devm_clk_get(&pdev->dev, NULL); - gpio = devm_gpiod_get_optional(&pdev->dev, "reset", GPIOD_OUT_LOW); + gpio = devm_gpiod_get_optional(&pdev->dev, "reset", GPIOD_ASIS); if (IS_ERR(gpio)) return PTR_ERR(gpio); rfkill->reset_gpio = gpio; - gpio = devm_gpiod_get_optional(&pdev->dev, "shutdown", GPIOD_OUT_LOW); + gpio = devm_gpiod_get_optional(&pdev->dev, "shutdown", GPIOD_ASIS); if (IS_ERR(gpio)) return PTR_ERR(gpio); diff --git a/net/rose/af_rose.c b/net/rose/af_rose.c index 86c93cf1744b0..b3e7a92f1ec19 100644 --- a/net/rose/af_rose.c +++ b/net/rose/af_rose.c @@ -1307,9 +1307,11 @@ static int rose_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) case TIOCINQ: { struct sk_buff *skb; long amount = 0L; - /* These two are safe on a single CPU system as only user tasks fiddle here */ + + spin_lock_irq(&sk->sk_receive_queue.lock); if ((skb = skb_peek(&sk->sk_receive_queue)) != NULL) amount = skb->len; + spin_unlock_irq(&sk->sk_receive_queue.lock); return put_user(amount, (unsigned int __user *) argp); } diff --git a/net/sched/cls_u32.c b/net/sched/cls_u32.c index 17edcf1d1c3b6..440c29dc058ed 100644 --- a/net/sched/cls_u32.c +++ b/net/sched/cls_u32.c @@ -364,7 +364,7 @@ static int u32_init(struct tcf_proto *tp) idr_init(&root_ht->handle_idr); if (tp_c == NULL) { - tp_c = kzalloc(struct_size(tp_c, hlist->ht, 1), GFP_KERNEL); + tp_c = kzalloc(sizeof(*tp_c), GFP_KERNEL); if (tp_c == NULL) { kfree(root_ht); return -ENOBUFS; diff --git a/net/sched/sch_fq_pie.c b/net/sched/sch_fq_pie.c index ce7833f95214f..1fb68c973f451 100644 --- a/net/sched/sch_fq_pie.c +++ b/net/sched/sch_fq_pie.c @@ -61,6 +61,7 @@ struct fq_pie_sched_data { struct pie_params p_params; u32 ecn_prob; u32 flows_cnt; + u32 flows_cursor; u32 quantum; u32 memory_limit; u32 new_flow_count; @@ -378,21 +379,31 @@ static int fq_pie_change(struct Qdisc *sch, struct nlattr *opt, static void fq_pie_timer(struct timer_list *t) { struct fq_pie_sched_data *q = from_timer(q, t, adapt_timer); + unsigned long next, tupdate; struct Qdisc *sch = q->sch; spinlock_t *root_lock; /* to lock qdisc for probability calculations */ - u32 idx; + int max_cnt, i; root_lock = qdisc_lock(qdisc_root_sleeping(sch)); spin_lock(root_lock); - for (idx = 0; idx < q->flows_cnt; idx++) - pie_calculate_probability(&q->p_params, &q->flows[idx].vars, - q->flows[idx].backlog); - - /* reset the timer to fire after 'tupdate' jiffies. */ - if (q->p_params.tupdate) - mod_timer(&q->adapt_timer, jiffies + q->p_params.tupdate); + /* Limit this expensive loop to 2048 flows per round. */ + max_cnt = min_t(int, q->flows_cnt - q->flows_cursor, 2048); + for (i = 0; i < max_cnt; i++) { + pie_calculate_probability(&q->p_params, + &q->flows[q->flows_cursor].vars, + q->flows[q->flows_cursor].backlog); + q->flows_cursor++; + } + tupdate = q->p_params.tupdate; + next = 0; + if (q->flows_cursor >= q->flows_cnt) { + q->flows_cursor = 0; + next = tupdate; + } + if (tupdate) + mod_timer(&q->adapt_timer, jiffies + next); spin_unlock(root_lock); } diff --git a/net/sched/sch_hfsc.c b/net/sched/sch_hfsc.c index 01126e285f94e..1f0db6c85b09c 100644 --- a/net/sched/sch_hfsc.c +++ b/net/sched/sch_hfsc.c @@ -903,6 +903,14 @@ hfsc_change_usc(struct hfsc_class *cl, struct tc_service_curve *usc, cl->cl_flags |= HFSC_USC; } +static void +hfsc_upgrade_rt(struct hfsc_class *cl) +{ + cl->cl_fsc = cl->cl_rsc; + rtsc_init(&cl->cl_virtual, &cl->cl_fsc, cl->cl_vt, cl->cl_total); + cl->cl_flags |= HFSC_FSC; +} + static const struct nla_policy hfsc_policy[TCA_HFSC_MAX + 1] = { [TCA_HFSC_RSC] = { .len = sizeof(struct tc_service_curve) }, [TCA_HFSC_FSC] = { .len = sizeof(struct tc_service_curve) }, @@ -1012,10 +1020,6 @@ hfsc_change_class(struct Qdisc *sch, u32 classid, u32 parentid, if (parent == NULL) return -ENOENT; } - if (!(parent->cl_flags & HFSC_FSC) && parent != &q->root) { - NL_SET_ERR_MSG(extack, "Invalid parent - parent class must have FSC"); - return -EINVAL; - } if (classid == 0 || TC_H_MAJ(classid ^ sch->handle) != 0) return -EINVAL; @@ -1068,6 +1072,12 @@ hfsc_change_class(struct Qdisc *sch, u32 classid, u32 parentid, cl->cf_tree = RB_ROOT; sch_tree_lock(sch); + /* Check if the inner class is a misconfigured 'rt' */ + if (!(parent->cl_flags & HFSC_FSC) && parent != &q->root) { + NL_SET_ERR_MSG(extack, + "Forced curve change on parent 'rt' to 'sc'"); + hfsc_upgrade_rt(parent); + } qdisc_class_hash_insert(&q->clhash, &cl->cl_common); list_add_tail(&cl->siblings, &parent->children); if (parent->level == 0) diff --git a/net/sctp/associola.c b/net/sctp/associola.c index 3460abceba443..2965a12fe8aa2 100644 --- a/net/sctp/associola.c +++ b/net/sctp/associola.c @@ -1161,8 +1161,7 @@ int sctp_assoc_update(struct sctp_association *asoc, /* Add any peer addresses from the new association. */ list_for_each_entry(trans, &new->peer.transport_addr_list, transports) - if (!sctp_assoc_lookup_paddr(asoc, &trans->ipaddr) && - !sctp_assoc_add_peer(asoc, &trans->ipaddr, + if (!sctp_assoc_add_peer(asoc, &trans->ipaddr, GFP_ATOMIC, trans->state)) return -ENOMEM; diff --git a/net/sctp/proc.c b/net/sctp/proc.c index 982a87b3e11f8..963b94517ec20 100644 --- a/net/sctp/proc.c +++ b/net/sctp/proc.c @@ -284,7 +284,7 @@ static int sctp_assocs_seq_show(struct seq_file *seq, void *v) assoc->init_retries, assoc->shutdown_retries, assoc->rtx_data_chunks, refcount_read(&sk->sk_wmem_alloc), - sk->sk_wmem_queued, + READ_ONCE(sk->sk_wmem_queued), sk->sk_sndbuf, sk->sk_rcvbuf); seq_printf(seq, "\n"); diff --git a/net/sctp/sm_sideeffect.c b/net/sctp/sm_sideeffect.c index 463c4a58d2c36..970c6a486a9b0 100644 --- a/net/sctp/sm_sideeffect.c +++ b/net/sctp/sm_sideeffect.c @@ -1251,7 +1251,10 @@ static int sctp_side_effects(enum sctp_event_type event_type, default: pr_err("impossible disposition %d in state %d, event_type %d, event_id %d\n", status, state, event_type, subtype.chunk); - BUG(); + error = status; + if (error >= 0) + error = -EINVAL; + WARN_ON_ONCE(1); break; } diff --git a/net/sctp/socket.c b/net/sctp/socket.c index 717e2f60370b3..57acf7ed80de3 100644 --- a/net/sctp/socket.c +++ b/net/sctp/socket.c @@ -68,7 +68,7 @@ #include /* Forward declarations for internal helper functions. */ -static bool sctp_writeable(struct sock *sk); +static bool sctp_writeable(const struct sock *sk); static void sctp_wfree(struct sk_buff *skb); static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p, size_t msg_len); @@ -138,7 +138,7 @@ static inline void sctp_set_owner_w(struct sctp_chunk *chunk) refcount_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc); asoc->sndbuf_used += chunk->skb->truesize + sizeof(struct sctp_chunk); - sk->sk_wmem_queued += chunk->skb->truesize + sizeof(struct sctp_chunk); + sk_wmem_queued_add(sk, chunk->skb->truesize + sizeof(struct sctp_chunk)); sk_mem_charge(sk, chunk->skb->truesize); } @@ -2452,6 +2452,7 @@ static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params, if (trans) { trans->hbinterval = msecs_to_jiffies(params->spp_hbinterval); + sctp_transport_reset_hb_timer(trans); } else if (asoc) { asoc->hbinterval = msecs_to_jiffies(params->spp_hbinterval); @@ -9148,7 +9149,7 @@ static void sctp_wfree(struct sk_buff *skb) struct sock *sk = asoc->base.sk; sk_mem_uncharge(sk, skb->truesize); - sk->sk_wmem_queued -= skb->truesize + sizeof(struct sctp_chunk); + sk_wmem_queued_add(sk, -(skb->truesize + sizeof(struct sctp_chunk))); asoc->sndbuf_used -= skb->truesize + sizeof(struct sctp_chunk); WARN_ON(refcount_sub_and_test(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc)); @@ -9303,9 +9304,9 @@ void sctp_write_space(struct sock *sk) * UDP-style sockets or TCP-style sockets, this code should work. * - Daisy */ -static bool sctp_writeable(struct sock *sk) +static bool sctp_writeable(const struct sock *sk) { - return sk->sk_sndbuf > sk->sk_wmem_queued; + return READ_ONCE(sk->sk_sndbuf) > READ_ONCE(sk->sk_wmem_queued); } /* Wait for an association to go into ESTABLISHED state. If timeout is 0, diff --git a/net/smc/af_smc.c b/net/smc/af_smc.c index ba6008757a220..934aef9b64f1a 100644 --- a/net/smc/af_smc.c +++ b/net/smc/af_smc.c @@ -145,7 +145,7 @@ static int __smc_release(struct smc_sock *smc) if (!smc->use_fallback) { rc = smc_close_active(smc); - sock_set_flag(sk, SOCK_DEAD); + smc_sock_set_flag(sk, SOCK_DEAD); sk->sk_shutdown |= SHUTDOWN_MASK; } else { if (sk->sk_state != SMC_CLOSED) { @@ -398,8 +398,12 @@ static int smcr_clnt_conf_first_link(struct smc_sock *smc) struct smc_llc_qentry *qentry; int rc; - /* receive CONFIRM LINK request from server over RoCE fabric */ - qentry = smc_llc_wait(link->lgr, NULL, SMC_LLC_WAIT_TIME, + /* Receive CONFIRM LINK request from server over RoCE fabric. + * Increasing the client's timeout by twice as much as the server's + * timeout by default can temporarily avoid decline messages of + * both sides crossing or colliding + */ + qentry = smc_llc_wait(link->lgr, NULL, 2 * SMC_LLC_WAIT_TIME, SMC_LLC_CONFIRM_LINK); if (!qentry) { struct smc_clc_msg_decline dclc; @@ -1462,7 +1466,7 @@ static int smc_clcsock_accept(struct smc_sock *lsmc, struct smc_sock **new_smc) if (new_clcsock) sock_release(new_clcsock); new_sk->sk_state = SMC_CLOSED; - sock_set_flag(new_sk, SOCK_DEAD); + smc_sock_set_flag(new_sk, SOCK_DEAD); sock_put(new_sk); /* final */ *new_smc = NULL; goto out; diff --git a/net/smc/smc.h b/net/smc/smc.h index b2e1d9e03dcf6..8434a28701ebb 100644 --- a/net/smc/smc.h +++ b/net/smc/smc.h @@ -330,4 +330,9 @@ void smc_fill_gid_list(struct smc_link_group *lgr, struct smc_gidlist *gidlist, struct smc_ib_device *known_dev, u8 *known_gid); +static inline void smc_sock_set_flag(struct sock *sk, enum sock_flags flag) +{ + set_bit(flag, &sk->sk_flags); +} + #endif /* __SMC_H */ diff --git a/net/smc/smc_cdc.c b/net/smc/smc_cdc.c index 41b23f71c29a2..1df7557362673 100644 --- a/net/smc/smc_cdc.c +++ b/net/smc/smc_cdc.c @@ -28,13 +28,15 @@ static void smc_cdc_tx_handler(struct smc_wr_tx_pend_priv *pnd_snd, { struct smc_cdc_tx_pend *cdcpend = (struct smc_cdc_tx_pend *)pnd_snd; struct smc_connection *conn = cdcpend->conn; + struct smc_buf_desc *sndbuf_desc; struct smc_sock *smc; int diff; + sndbuf_desc = conn->sndbuf_desc; smc = container_of(conn, struct smc_sock, conn); bh_lock_sock(&smc->sk); - if (!wc_status) { - diff = smc_curs_diff(cdcpend->conn->sndbuf_desc->len, + if (!wc_status && sndbuf_desc) { + diff = smc_curs_diff(sndbuf_desc->len, &cdcpend->conn->tx_curs_fin, &cdcpend->cursor); /* sndbuf_space is decreased in smc_sendmsg */ @@ -104,9 +106,6 @@ int smc_cdc_msg_send(struct smc_connection *conn, union smc_host_cursor cfed; int rc; - if (unlikely(!READ_ONCE(conn->sndbuf_desc))) - return -ENOBUFS; - smc_cdc_add_pending_send(conn, pend); conn->tx_cdc_seq++; @@ -370,7 +369,7 @@ static void smc_cdc_msg_recv_action(struct smc_sock *smc, smc->sk.sk_shutdown |= RCV_SHUTDOWN; if (smc->clcsock && smc->clcsock->sk) smc->clcsock->sk->sk_shutdown |= RCV_SHUTDOWN; - sock_set_flag(&smc->sk, SOCK_DONE); + smc_sock_set_flag(&smc->sk, SOCK_DONE); sock_hold(&smc->sk); /* sock_put in close_work */ if (!queue_work(smc_close_wq, &conn->close_work)) sock_put(&smc->sk); diff --git a/net/smc/smc_close.c b/net/smc/smc_close.c index 149a59ecd299f..bcd3ea894555d 100644 --- a/net/smc/smc_close.c +++ b/net/smc/smc_close.c @@ -113,7 +113,8 @@ static void smc_close_cancel_work(struct smc_sock *smc) struct sock *sk = &smc->sk; release_sock(sk); - cancel_work_sync(&smc->conn.close_work); + if (cancel_work_sync(&smc->conn.close_work)) + sock_put(sk); cancel_delayed_work_sync(&smc->conn.tx_work); lock_sock(sk); } @@ -170,7 +171,7 @@ void smc_close_active_abort(struct smc_sock *smc) break; } - sock_set_flag(sk, SOCK_DEAD); + smc_sock_set_flag(sk, SOCK_DEAD); sk->sk_state_change(sk); if (release_clcsock) { diff --git a/net/smc/smc_core.c b/net/smc/smc_core.c index 89fd04a0ed3d8..aaffcc2812e3a 100644 --- a/net/smc/smc_core.c +++ b/net/smc/smc_core.c @@ -1557,6 +1557,7 @@ void smcr_port_add(struct smc_ib_device *smcibdev, u8 ibport) { struct smc_link_group *lgr, *n; + spin_lock_bh(&smc_lgr_list.lock); list_for_each_entry_safe(lgr, n, &smc_lgr_list.list, list) { struct smc_link *link; @@ -1571,6 +1572,7 @@ void smcr_port_add(struct smc_ib_device *smcibdev, u8 ibport) if (link) smc_llc_add_link_local(link); } + spin_unlock_bh(&smc_lgr_list.lock); } /* link is down - switch connections to alternate link, diff --git a/net/socket.c b/net/socket.c index 7344dcc7cb1cc..1ec459361adb3 100644 --- a/net/socket.c +++ b/net/socket.c @@ -708,6 +708,14 @@ static inline int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg) return ret; } +static int __sock_sendmsg(struct socket *sock, struct msghdr *msg) +{ + int err = security_socket_sendmsg(sock, msg, + msg_data_left(msg)); + + return err ?: sock_sendmsg_nosec(sock, msg); +} + /** * sock_sendmsg - send a message through @sock * @sock: socket @@ -718,10 +726,19 @@ static inline int sock_sendmsg_nosec(struct socket *sock, struct msghdr *msg) */ int sock_sendmsg(struct socket *sock, struct msghdr *msg) { - int err = security_socket_sendmsg(sock, msg, - msg_data_left(msg)); + struct sockaddr_storage *save_addr = (struct sockaddr_storage *)msg->msg_name; + struct sockaddr_storage address; + int ret; - return err ?: sock_sendmsg_nosec(sock, msg); + if (msg->msg_name) { + memcpy(&address, msg->msg_name, msg->msg_namelen); + msg->msg_name = &address; + } + + ret = __sock_sendmsg(sock, msg); + msg->msg_name = save_addr; + + return ret; } EXPORT_SYMBOL(sock_sendmsg); @@ -1057,7 +1074,7 @@ static ssize_t sock_write_iter(struct kiocb *iocb, struct iov_iter *from) if (sock->type == SOCK_SEQPACKET) msg.msg_flags |= MSG_EOR; - res = sock_sendmsg(sock, &msg); + res = __sock_sendmsg(sock, &msg); *from = msg.msg_iter; return res; } @@ -2036,7 +2053,7 @@ int __sys_sendto(int fd, void __user *buff, size_t len, unsigned int flags, if (sock->file->f_flags & O_NONBLOCK) flags |= MSG_DONTWAIT; msg.msg_flags = flags; - err = sock_sendmsg(sock, &msg); + err = __sock_sendmsg(sock, &msg); out_put: fput_light(sock->file, fput_needed); @@ -2409,7 +2426,7 @@ static int ____sys_sendmsg(struct socket *sock, struct msghdr *msg_sys, err = sock_sendmsg_nosec(sock, msg_sys); goto out_freectl; } - err = sock_sendmsg(sock, msg_sys); + err = __sock_sendmsg(sock, msg_sys); /* * If this is sendmmsg() and sending to current destination address was * successful, remember it. @@ -3383,7 +3400,11 @@ static long compat_sock_ioctl(struct file *file, unsigned int cmd, int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen) { - return sock->ops->bind(sock, addr, addrlen); + struct sockaddr_storage address; + + memcpy(&address, addr, addrlen); + + return sock->ops->bind(sock, (struct sockaddr *)&address, addrlen); } EXPORT_SYMBOL(kernel_bind); diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c index b9c54c03c30a6..af1c6aca605b9 100644 --- a/net/sunrpc/clnt.c +++ b/net/sunrpc/clnt.c @@ -33,6 +33,23 @@ #include #include +/* + * Note #1: + * Accessing NFS structures inside sunrpc code is layering violation, but + * that's the best we can do w/o making changes to existing structures, + * which would prevent the updated module from being loaded into existing + * pre-built kernels. + * + * Note #2: + * We define __LINUX_NFSACL_H to prevent nfsacl.h from being included o/w + * some of the rpc* methods get different modversion than the kernel, due + * to some nfs acl structures being forward declared. + */ +#define __LINUX_NFSACL_H +#include +#undef ifdebug +#define ifdebug(fac) if (0) + #include #include #include @@ -48,6 +65,28 @@ # define RPCDBG_FACILITY RPCDBG_CALL #endif +/* + * If enable_azure_nconnect is true, RPC requests for a file are sent over + * one connection. RPC requests for different files may be sent over different + * connections. + */ +static bool enable_azure_nconnect __read_mostly = false; +module_param(enable_azure_nconnect, bool, 0644); +MODULE_PARM_DESC(enable_azure_nconnect, + "Send RPC requests for one file over one connection (requests for different files go over different connections)"); + +/* + * By default read requests to one file are sent over one connection. + * azure_nconnect_readscaling module parameter can be used to control that + * behavior. By distributing READ RPCs for one file over multiple connections + * we can get much higher single-file READ throughput. This can be used if + * we have a readonly mount or if files are mostly read and not written. + */ +static bool azure_nconnect_readscaling __read_mostly = false; +module_param(azure_nconnect_readscaling, bool, 0644); +MODULE_PARM_DESC(azure_nconnect_readscaling, + "Scale single file reads by sending them round-robin over all the available connections. Use only for readonly mounts or for read-mostly workloads"); + /* * All RPC clients are linked into this list */ @@ -111,7 +150,8 @@ static void rpc_clnt_remove_pipedir(struct rpc_clnt *clnt) pipefs_sb = rpc_get_sb_net(net); if (pipefs_sb) { - __rpc_clnt_remove_pipedir(clnt); + if (pipefs_sb == clnt->pipefs_sb) + __rpc_clnt_remove_pipedir(clnt); rpc_put_sb_net(net); } } @@ -151,6 +191,8 @@ rpc_setup_pipedir(struct super_block *pipefs_sb, struct rpc_clnt *clnt) { struct dentry *dentry; + clnt->pipefs_sb = pipefs_sb; + if (clnt->cl_program->pipe_dir_name != NULL) { dentry = rpc_setup_pipedir_sb(pipefs_sb, clnt); if (IS_ERR(dentry)) @@ -1070,6 +1112,200 @@ rpc_task_get_next_xprt(struct rpc_clnt *clnt) return rpc_task_get_xprt(clnt, xprt_iter_get_next(&clnt->cl_xpi)); } +/* + * For the given rpc_task, compute the hash for the target filehandle. + */ +static u32 +rpc_task_fh_hash(const struct rpc_task *task) +{ + const struct rpc_message *rpc_message = &task->tk_msg; + const struct rpc_procinfo *rpc_proc = rpc_message->rpc_proc; + const u32 p_proc = (rpc_proc ? rpc_proc->p_proc : NFS3PROC_NULL); + const struct nfs_fh *fh = NULL; + + switch (p_proc) { + case NFS3PROC_GETATTR: + { + fh = rpc_message->rpc_argp; + break; + } + case NFS3PROC_SETATTR: + { + const struct nfs3_sattrargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_LOOKUP: + case NFS3PROC_RMDIR: + { + const struct nfs3_diropargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_ACCESS: + { + const struct nfs3_accessargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_READLINK: + { + const struct nfs3_readlinkargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_READ: + case NFS3PROC_WRITE: + { + const struct nfs_pgio_args *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_COMMIT: + { + const struct nfs_commitargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_CREATE: + { + const struct nfs3_createargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_MKDIR: + { + const struct nfs3_mkdirargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_SYMLINK: + { + const struct nfs3_symlinkargs *args = rpc_message->rpc_argp; + fh = args->fromfh; + break; + } + case NFS3PROC_MKNOD: + { + const struct nfs3_mknodargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_REMOVE: + { + const struct nfs_removeargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + case NFS3PROC_RENAME: + { + const struct nfs_renameargs *args = rpc_message->rpc_argp; + /* + * In case of cross-dir rename, we have to choose between + * old and new dir to have the updated cache. We prefer + * new_dir as that's where the user expects the file to + * show up. + */ + fh = args->new_dir; + if (!fh) + fh = args->old_dir; + break; + } + case NFS3PROC_LINK: + { + const struct nfs3_linkargs *args = rpc_message->rpc_argp; + fh = args->tofh; + break; + } + case NFS3PROC_READDIR: + case NFS3PROC_READDIRPLUS: + { + const struct nfs3_readdirargs *args = rpc_message->rpc_argp; + fh = args->fh; + break; + } + /* + * Rest are not targeted to a file and map to the first + * transport connection. + */ + } + + return (fh ? jhash(fh->data, fh->size, 0) : 0); +} + +static +bool xprt_is_active(const struct rpc_xprt *xprt) +{ + return kref_read(&xprt->kref) != 0; +} + +/* + * For the given rpc_task return the hashed xprt to use. + * This will ensure RPCs targeted to the same file get the same xprt. + */ +static struct rpc_xprt * +rpc_task_get_hashed_xprt(struct rpc_clnt *clnt, const struct rpc_task *task) +{ + const struct rpc_xprt_switch *xps = NULL; + struct rpc_xprt *xprt = NULL; + const u32 hash = rpc_task_fh_hash(task); + + rcu_read_lock(); + xps = rcu_dereference(clnt->cl_xpi.xpi_xpswitch); + + if (xps && hash) { + const struct list_head *head = &xps->xps_xprt_list; + struct rpc_xprt *pos; + const u32 nactive = READ_ONCE(xps->xps_nactive); + const u32 xprt_idx = (hash % nactive); + u32 idx = 0; + + list_for_each_entry_rcu(pos, head, xprt_switch) { + if (xprt_idx > idx++) + continue; + if (xprt_is_active(pos)) { + xprt = xprt_get(pos); + break; + } else { + if (printk_ratelimit()) + printk(KERN_ERR "!xprt_is_active idx=%u, xprt_idx=%u, hash=%u\n", + idx, xprt_idx, hash); + } + } + } + + /* + * Use first transport, if not found any, or if RPC is not targeted + * to a specific file, e.g., FSINFO. + */ + if (!xprt) + xprt = xprt_get(rcu_dereference(clnt->cl_xprt)); + rcu_read_unlock(); + + return rpc_task_get_xprt(clnt, xprt); +} + +static struct rpc_xprt * +rpc_task_get_azure_xprt(struct rpc_clnt *clnt, const struct rpc_task *task) +{ + /* + * Use special azure nconnect only for NFSv3 RPC requests. + */ + if (clnt->cl_prog != NFS_PROGRAM || clnt->cl_vers != NFS3_VERSION) + return rpc_task_get_next_xprt(clnt); + + if (enable_azure_nconnect) { + if (azure_nconnect_readscaling) { + const struct rpc_procinfo *rpc_proc = + task->tk_msg.rpc_proc; + if (rpc_proc && rpc_proc->p_proc == NFS3PROC_READ) + return rpc_task_get_next_xprt(clnt); + } + return rpc_task_get_hashed_xprt(clnt, task); + } else + return rpc_task_get_next_xprt(clnt); +} + static void rpc_task_set_transport(struct rpc_task *task, struct rpc_clnt *clnt) { @@ -1083,7 +1319,7 @@ void rpc_task_set_transport(struct rpc_task *task, struct rpc_clnt *clnt) if (task->tk_flags & RPC_TASK_NO_ROUND_ROBIN) task->tk_xprt = rpc_task_get_first_xprt(clnt); else - task->tk_xprt = rpc_task_get_next_xprt(clnt); + task->tk_xprt = rpc_task_get_azure_xprt(clnt, task); } static @@ -1147,8 +1383,8 @@ struct rpc_task *rpc_run_task(const struct rpc_task_setup *task_setup_data) if (!RPC_IS_ASYNC(task)) task->tk_flags |= RPC_TASK_CRED_NOREF; - rpc_task_set_client(task, task_setup_data->rpc_client); rpc_task_set_rpc_message(task, task_setup_data->rpc_message); + rpc_task_set_client(task, task_setup_data->rpc_client); if (task->tk_action == NULL) rpc_call_start(task); @@ -2088,6 +2324,7 @@ call_connect_status(struct rpc_task *task) task->tk_status = 0; switch (status) { case -ECONNREFUSED: + case -ECONNRESET: /* A positive refusal suggests a rebind is needed. */ if (RPC_IS_SOFTCONN(task)) break; @@ -2096,7 +2333,6 @@ call_connect_status(struct rpc_task *task) goto out_retry; } fallthrough; - case -ECONNRESET: case -ECONNABORTED: case -ENETDOWN: case -ENETUNREACH: @@ -2392,8 +2628,7 @@ call_status(struct rpc_task *task) goto out_exit; } task->tk_action = call_encode; - if (status != -ECONNRESET && status != -ECONNABORTED) - rpc_check_timeout(task); + rpc_check_timeout(task); return; out_exit: rpc_call_rpcerror(task, status); @@ -2668,6 +2903,7 @@ rpc_decode_header(struct rpc_task *task, struct xdr_stream *xdr) case rpc_autherr_rejectedverf: case rpcsec_gsserr_credproblem: case rpcsec_gsserr_ctxproblem: + rpcauth_invalcred(task); if (!task->tk_cred_retry) break; task->tk_cred_retry--; @@ -2821,19 +3057,22 @@ static const struct rpc_call_ops rpc_cb_add_xprt_call_ops = { * @clnt: pointer to struct rpc_clnt * @xps: pointer to struct rpc_xprt_switch, * @xprt: pointer struct rpc_xprt - * @dummy: unused + * @in_max_connect: pointer to the max_connect value for the passed in xprt transport */ int rpc_clnt_test_and_add_xprt(struct rpc_clnt *clnt, struct rpc_xprt_switch *xps, struct rpc_xprt *xprt, - void *dummy) + void *in_max_connect) { struct rpc_cb_add_xprt_calldata *data; struct rpc_task *task; + int max_connect = clnt->cl_max_connect; - if (xps->xps_nunique_destaddr_xprts + 1 > clnt->cl_max_connect) { + if (in_max_connect) + max_connect = *(int *)in_max_connect; + if (xps->xps_nunique_destaddr_xprts + 1 > max_connect) { rcu_read_lock(); pr_warn("SUNRPC: reached max allowed number (%d) did not add " - "transport to server: %s\n", clnt->cl_max_connect, + "transport to server: %s\n", max_connect, rpc_peeraddr2str(clnt, RPC_DISPLAY_ADDR)); rcu_read_unlock(); return -EINVAL; diff --git a/net/sunrpc/rpcb_clnt.c b/net/sunrpc/rpcb_clnt.c index 647b323cc1d56..638b14f28101e 100644 --- a/net/sunrpc/rpcb_clnt.c +++ b/net/sunrpc/rpcb_clnt.c @@ -746,6 +746,10 @@ void rpcb_getport_async(struct rpc_task *task) child = rpcb_call_async(rpcb_clnt, map, proc); rpc_release_client(rpcb_clnt); + if (IS_ERR(child)) { + /* rpcb_map_release() has freed the arguments */ + return; + } xprt->stat.bind_count++; rpc_put_task(child); diff --git a/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c b/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c index 0377679678f93..9a80d3be1f635 100644 --- a/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c +++ b/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c @@ -852,7 +852,8 @@ int svc_rdma_recvfrom(struct svc_rqst *rqstp) if (ret == -EINVAL) svc_rdma_send_error(rdma_xprt, ctxt, ret); svc_rdma_recv_ctxt_put(rdma_xprt, ctxt); - return ret; + svc_xprt_deferred_close(xprt); + return -ENOTCONN; out_backchannel: svc_rdma_handle_bc_reply(rqstp, ctxt); diff --git a/net/tipc/crypto.c b/net/tipc/crypto.c index 32447e8d94ac9..86d1e782b8fca 100644 --- a/net/tipc/crypto.c +++ b/net/tipc/crypto.c @@ -1452,14 +1452,14 @@ static int tipc_crypto_key_revoke(struct net *net, u8 tx_key) struct tipc_crypto *tx = tipc_net(net)->crypto_tx; struct tipc_key key; - spin_lock(&tx->lock); + spin_lock_bh(&tx->lock); key = tx->key; WARN_ON(!key.active || tx_key != key.active); /* Free the active key */ tipc_crypto_key_set_state(tx, key.passive, 0, key.pending); tipc_crypto_key_detach(tx->aead[key.active], &tx->lock); - spin_unlock(&tx->lock); + spin_unlock_bh(&tx->lock); pr_warn("%s: key is revoked\n", tx->name); return -EKEYREVOKED; diff --git a/net/tipc/link.c b/net/tipc/link.c index 655a2e1b6dfe4..d13a85b9cdb2d 100644 --- a/net/tipc/link.c +++ b/net/tipc/link.c @@ -1445,7 +1445,7 @@ u16 tipc_get_gap_ack_blks(struct tipc_gap_ack_blks **ga, struct tipc_link *l, p = (struct tipc_gap_ack_blks *)msg_data(hdr); sz = ntohs(p->len); /* Sanity check */ - if (sz == struct_size(p, gacks, p->ugack_cnt + p->bgack_cnt)) { + if (sz == struct_size(p, gacks, size_add(p->ugack_cnt, p->bgack_cnt))) { /* Good, check if the desired type exists */ if ((uc && p->ugack_cnt) || (!uc && p->bgack_cnt)) goto ok; @@ -1532,7 +1532,7 @@ static u16 tipc_build_gap_ack_blks(struct tipc_link *l, struct tipc_msg *hdr) __tipc_build_gap_ack_blks(ga, l, ga->bgack_cnt) : 0; /* Total len */ - len = struct_size(ga, gacks, ga->bgack_cnt + ga->ugack_cnt); + len = struct_size(ga, gacks, size_add(ga->bgack_cnt, ga->ugack_cnt)); ga->len = htons(len); return len; } diff --git a/net/tipc/netlink.c b/net/tipc/netlink.c index c447cb5f879e7..f10ed873858f8 100644 --- a/net/tipc/netlink.c +++ b/net/tipc/netlink.c @@ -88,7 +88,7 @@ const struct nla_policy tipc_nl_net_policy[TIPC_NLA_NET_MAX + 1] = { const struct nla_policy tipc_nl_link_policy[TIPC_NLA_LINK_MAX + 1] = { [TIPC_NLA_LINK_UNSPEC] = { .type = NLA_UNSPEC }, - [TIPC_NLA_LINK_NAME] = { .type = NLA_STRING, + [TIPC_NLA_LINK_NAME] = { .type = NLA_NUL_STRING, .len = TIPC_MAX_LINK_NAME }, [TIPC_NLA_LINK_MTU] = { .type = NLA_U32 }, [TIPC_NLA_LINK_BROADCAST] = { .type = NLA_FLAG }, @@ -125,7 +125,7 @@ const struct nla_policy tipc_nl_prop_policy[TIPC_NLA_PROP_MAX + 1] = { const struct nla_policy tipc_nl_bearer_policy[TIPC_NLA_BEARER_MAX + 1] = { [TIPC_NLA_BEARER_UNSPEC] = { .type = NLA_UNSPEC }, - [TIPC_NLA_BEARER_NAME] = { .type = NLA_STRING, + [TIPC_NLA_BEARER_NAME] = { .type = NLA_NUL_STRING, .len = TIPC_MAX_BEARER_NAME }, [TIPC_NLA_BEARER_PROP] = { .type = NLA_NESTED }, [TIPC_NLA_BEARER_DOMAIN] = { .type = NLA_U32 } diff --git a/net/tipc/netlink_compat.c b/net/tipc/netlink_compat.c index ce00f271ca6b2..116a97e301443 100644 --- a/net/tipc/netlink_compat.c +++ b/net/tipc/netlink_compat.c @@ -101,6 +101,7 @@ static int tipc_add_tlv(struct sk_buff *skb, u16 type, void *data, u16 len) return -EMSGSIZE; skb_put(skb, TLV_SPACE(len)); + memset(tlv, 0, TLV_SPACE(len)); tlv->tlv_type = htons(type); tlv->tlv_len = htons(TLV_LENGTH(len)); if (len && data) diff --git a/net/tls/tls_sw.c b/net/tls/tls_sw.c index bc897ff56e789..9ff3e4df2d6c5 100644 --- a/net/tls/tls_sw.c +++ b/net/tls/tls_sw.c @@ -809,7 +809,7 @@ static int bpf_exec_tx_verdict(struct sk_msg *msg, struct sock *sk, psock = sk_psock_get(sk); if (!psock || !policy) { err = tls_push_record(sk, flags, record_type); - if (err && sk->sk_err == EBADMSG) { + if (err && err != -EINPROGRESS && sk->sk_err == EBADMSG) { *copied -= sk_msg_free(sk, msg); tls_free_open_rec(sk); err = -sk->sk_err; @@ -838,7 +838,7 @@ static int bpf_exec_tx_verdict(struct sk_msg *msg, struct sock *sk, switch (psock->eval) { case __SK_PASS: err = tls_push_record(sk, flags, record_type); - if (err && sk->sk_err == EBADMSG) { + if (err && err != -EINPROGRESS && sk->sk_err == EBADMSG) { *copied -= sk_msg_free(sk, msg); tls_free_open_rec(sk); err = -sk->sk_err; @@ -1216,6 +1216,8 @@ static int tls_sw_do_sendpage(struct sock *sk, struct page *page, } sk_msg_page_add(msg_pl, page, copy, offset); + msg_pl->sg.copybreak = 0; + msg_pl->sg.curr = msg_pl->sg.end; sk_mem_charge(sk, copy); offset += copy; diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c index 92710551e22b8..23204f531cc52 100644 --- a/net/unix/af_unix.c +++ b/net/unix/af_unix.c @@ -603,7 +603,7 @@ static void unix_release_sock(struct sock *sk, int embrion) * What the above comment does talk about? --ANK(980817) */ - if (unix_tot_inflight) + if (READ_ONCE(unix_tot_inflight)) unix_gc(); /* Garbage collect fds */ } @@ -2529,15 +2529,16 @@ static int unix_stream_recv_urg(struct unix_stream_read_state *state) if (!(state->flags & MSG_PEEK)) WRITE_ONCE(u->oob_skb, NULL); - + else + skb_get(oob_skb); unix_state_unlock(sk); chunk = state->recv_actor(oob_skb, 0, chunk, state); - if (!(state->flags & MSG_PEEK)) { + if (!(state->flags & MSG_PEEK)) UNIXCB(oob_skb).consumed += 1; - kfree_skb(oob_skb); - } + + consume_skb(oob_skb); mutex_unlock(&u->iolock); diff --git a/net/unix/scm.c b/net/unix/scm.c index aa27a02478dc1..e8e2a00bb0f58 100644 --- a/net/unix/scm.c +++ b/net/unix/scm.c @@ -63,7 +63,7 @@ void unix_inflight(struct user_struct *user, struct file *fp) /* Paired with READ_ONCE() in wait_for_unix_gc() */ WRITE_ONCE(unix_tot_inflight, unix_tot_inflight + 1); } - user->unix_inflight++; + WRITE_ONCE(user->unix_inflight, user->unix_inflight + 1); spin_unlock(&unix_gc_lock); } @@ -84,7 +84,7 @@ void unix_notinflight(struct user_struct *user, struct file *fp) /* Paired with READ_ONCE() in wait_for_unix_gc() */ WRITE_ONCE(unix_tot_inflight, unix_tot_inflight - 1); } - user->unix_inflight--; + WRITE_ONCE(user->unix_inflight, user->unix_inflight - 1); spin_unlock(&unix_gc_lock); } @@ -98,7 +98,7 @@ static inline bool too_many_unix_fds(struct task_struct *p) { struct user_struct *user = current_user(); - if (unlikely(user->unix_inflight > task_rlimit(p, RLIMIT_NOFILE))) + if (unlikely(READ_ONCE(user->unix_inflight) > task_rlimit(p, RLIMIT_NOFILE))) return !capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN); return false; } diff --git a/net/vmw_vsock/virtio_transport.c b/net/vmw_vsock/virtio_transport.c index c5f936fbf876d..0b41028ed544a 100644 --- a/net/vmw_vsock/virtio_transport.c +++ b/net/vmw_vsock/virtio_transport.c @@ -566,69 +566,35 @@ static void virtio_transport_rx_work(struct work_struct *work) mutex_unlock(&vsock->rx_lock); } -static int virtio_vsock_probe(struct virtio_device *vdev) +static int virtio_vsock_vqs_init(struct virtio_vsock *vsock) { - vq_callback_t *callbacks[] = { - virtio_vsock_rx_done, - virtio_vsock_tx_done, - virtio_vsock_event_done, - }; + struct virtio_device *vdev = vsock->vdev; static const char * const names[] = { "rx", "tx", "event", }; - struct virtio_vsock *vsock = NULL; + vq_callback_t *callbacks[] = { + virtio_vsock_rx_done, + virtio_vsock_tx_done, + virtio_vsock_event_done, + }; int ret; - ret = mutex_lock_interruptible(&the_virtio_vsock_mutex); - if (ret) - return ret; - - /* Only one virtio-vsock device per guest is supported */ - if (rcu_dereference_protected(the_virtio_vsock, - lockdep_is_held(&the_virtio_vsock_mutex))) { - ret = -EBUSY; - goto out; - } - - vsock = kzalloc(sizeof(*vsock), GFP_KERNEL); - if (!vsock) { - ret = -ENOMEM; - goto out; - } - - vsock->vdev = vdev; - - ret = virtio_find_vqs(vsock->vdev, VSOCK_VQ_MAX, - vsock->vqs, callbacks, names, + ret = virtio_find_vqs(vdev, VSOCK_VQ_MAX, vsock->vqs, callbacks, names, NULL); if (ret < 0) - goto out; + return ret; virtio_vsock_update_guest_cid(vsock); - vsock->rx_buf_nr = 0; - vsock->rx_buf_max_nr = 0; - atomic_set(&vsock->queued_replies, 0); - - mutex_init(&vsock->tx_lock); - mutex_init(&vsock->rx_lock); - mutex_init(&vsock->event_lock); - spin_lock_init(&vsock->send_pkt_list_lock); - INIT_LIST_HEAD(&vsock->send_pkt_list); - INIT_WORK(&vsock->rx_work, virtio_transport_rx_work); - INIT_WORK(&vsock->tx_work, virtio_transport_tx_work); - INIT_WORK(&vsock->event_work, virtio_transport_event_work); - INIT_WORK(&vsock->send_pkt_work, virtio_transport_send_pkt_work); - - if (virtio_has_feature(vdev, VIRTIO_VSOCK_F_SEQPACKET)) - vsock->seqpacket_allow = true; - - vdev->priv = vsock; - virtio_device_ready(vdev); + return 0; +} + +static void virtio_vsock_vqs_start(struct virtio_vsock *vsock) +{ mutex_lock(&vsock->tx_lock); vsock->tx_run = true; mutex_unlock(&vsock->tx_lock); @@ -643,30 +609,24 @@ static int virtio_vsock_probe(struct virtio_device *vdev) vsock->event_run = true; mutex_unlock(&vsock->event_lock); - rcu_assign_pointer(the_virtio_vsock, vsock); - - mutex_unlock(&the_virtio_vsock_mutex); - - return 0; - -out: - kfree(vsock); - mutex_unlock(&the_virtio_vsock_mutex); - return ret; + /* virtio_transport_send_pkt() can queue packets once + * the_virtio_vsock is set, but they won't be processed until + * vsock->tx_run is set to true. We queue vsock->send_pkt_work + * when initialization finishes to send those packets queued + * earlier. + * We don't need to queue the other workers (rx, event) because + * as long as we don't fill the queues with empty buffers, the + * host can't send us any notification. + */ + queue_work(virtio_vsock_workqueue, &vsock->send_pkt_work); } -static void virtio_vsock_remove(struct virtio_device *vdev) +static void virtio_vsock_vqs_del(struct virtio_vsock *vsock) { - struct virtio_vsock *vsock = vdev->priv; + struct virtio_device *vdev = vsock->vdev; struct virtio_vsock_pkt *pkt; - mutex_lock(&the_virtio_vsock_mutex); - - vdev->priv = NULL; - rcu_assign_pointer(the_virtio_vsock, NULL); - synchronize_rcu(); - - /* Reset all connected sockets when the device disappear */ + /* Reset all connected sockets when the VQs disappear */ vsock_for_each_connected_socket(&virtio_transport.transport, virtio_vsock_reset_sock); @@ -711,6 +671,79 @@ static void virtio_vsock_remove(struct virtio_device *vdev) /* Delete virtqueues and flush outstanding callbacks if any */ vdev->config->del_vqs(vdev); +} + +static int virtio_vsock_probe(struct virtio_device *vdev) +{ + struct virtio_vsock *vsock = NULL; + int ret; + + ret = mutex_lock_interruptible(&the_virtio_vsock_mutex); + if (ret) + return ret; + + /* Only one virtio-vsock device per guest is supported */ + if (rcu_dereference_protected(the_virtio_vsock, + lockdep_is_held(&the_virtio_vsock_mutex))) { + ret = -EBUSY; + goto out; + } + + vsock = kzalloc(sizeof(*vsock), GFP_KERNEL); + if (!vsock) { + ret = -ENOMEM; + goto out; + } + + vsock->vdev = vdev; + + vsock->rx_buf_nr = 0; + vsock->rx_buf_max_nr = 0; + atomic_set(&vsock->queued_replies, 0); + + mutex_init(&vsock->tx_lock); + mutex_init(&vsock->rx_lock); + mutex_init(&vsock->event_lock); + spin_lock_init(&vsock->send_pkt_list_lock); + INIT_LIST_HEAD(&vsock->send_pkt_list); + INIT_WORK(&vsock->rx_work, virtio_transport_rx_work); + INIT_WORK(&vsock->tx_work, virtio_transport_tx_work); + INIT_WORK(&vsock->event_work, virtio_transport_event_work); + INIT_WORK(&vsock->send_pkt_work, virtio_transport_send_pkt_work); + + if (virtio_has_feature(vdev, VIRTIO_VSOCK_F_SEQPACKET)) + vsock->seqpacket_allow = true; + + vdev->priv = vsock; + + ret = virtio_vsock_vqs_init(vsock); + if (ret < 0) + goto out; + + rcu_assign_pointer(the_virtio_vsock, vsock); + virtio_vsock_vqs_start(vsock); + + mutex_unlock(&the_virtio_vsock_mutex); + + return 0; + +out: + kfree(vsock); + mutex_unlock(&the_virtio_vsock_mutex); + return ret; +} + +static void virtio_vsock_remove(struct virtio_device *vdev) +{ + struct virtio_vsock *vsock = vdev->priv; + + mutex_lock(&the_virtio_vsock_mutex); + + vdev->priv = NULL; + rcu_assign_pointer(the_virtio_vsock, NULL); + synchronize_rcu(); + + virtio_vsock_vqs_del(vsock); /* Other works can be queued before 'config->del_vqs()', so we flush * all works before to free the vsock object to avoid use after free. @@ -725,6 +758,50 @@ static void virtio_vsock_remove(struct virtio_device *vdev) kfree(vsock); } +#ifdef CONFIG_PM_SLEEP +static int virtio_vsock_freeze(struct virtio_device *vdev) +{ + struct virtio_vsock *vsock = vdev->priv; + + mutex_lock(&the_virtio_vsock_mutex); + + rcu_assign_pointer(the_virtio_vsock, NULL); + synchronize_rcu(); + + virtio_vsock_vqs_del(vsock); + + mutex_unlock(&the_virtio_vsock_mutex); + + return 0; +} + +static int virtio_vsock_restore(struct virtio_device *vdev) +{ + struct virtio_vsock *vsock = vdev->priv; + int ret; + + mutex_lock(&the_virtio_vsock_mutex); + + /* Only one virtio-vsock device per guest is supported */ + if (rcu_dereference_protected(the_virtio_vsock, + lockdep_is_held(&the_virtio_vsock_mutex))) { + ret = -EBUSY; + goto out; + } + + ret = virtio_vsock_vqs_init(vsock); + if (ret < 0) + goto out; + + rcu_assign_pointer(the_virtio_vsock, vsock); + virtio_vsock_vqs_start(vsock); + +out: + mutex_unlock(&the_virtio_vsock_mutex); + return ret; +} +#endif /* CONFIG_PM_SLEEP */ + static struct virtio_device_id id_table[] = { { VIRTIO_ID_VSOCK, VIRTIO_DEV_ANY_ID }, { 0 }, @@ -742,6 +819,10 @@ static struct virtio_driver virtio_vsock_driver = { .id_table = id_table, .probe = virtio_vsock_probe, .remove = virtio_vsock_remove, +#ifdef CONFIG_PM_SLEEP + .freeze = virtio_vsock_freeze, + .restore = virtio_vsock_restore, +#endif }; static int __init virtio_vsock_init(void) diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index 1b91a9c208969..82b93380afec4 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c @@ -314,6 +314,7 @@ nl80211_pmsr_ftm_req_attr_policy[NL80211_PMSR_FTM_REQ_ATTR_MAX + 1] = { [NL80211_PMSR_FTM_REQ_ATTR_TRIGGER_BASED] = { .type = NLA_FLAG }, [NL80211_PMSR_FTM_REQ_ATTR_NON_TRIGGER_BASED] = { .type = NLA_FLAG }, [NL80211_PMSR_FTM_REQ_ATTR_LMR_FEEDBACK] = { .type = NLA_FLAG }, + [NL80211_PMSR_FTM_REQ_ATTR_BSS_COLOR] = { .type = NLA_U8 }, }; static const struct nla_policy @@ -7663,7 +7664,7 @@ static int nl80211_update_mesh_config(struct sk_buff *skb, struct cfg80211_registered_device *rdev = info->user_ptr[0]; struct net_device *dev = info->user_ptr[1]; struct wireless_dev *wdev = dev->ieee80211_ptr; - struct mesh_config cfg; + struct mesh_config cfg = {}; u32 mask; int err; diff --git a/net/wireless/scan.c b/net/wireless/scan.c index c7192d7bcbd76..4decdc2c601fc 100644 --- a/net/wireless/scan.c +++ b/net/wireless/scan.c @@ -874,6 +874,10 @@ static int cfg80211_scan_6ghz(struct cfg80211_registered_device *rdev) !cfg80211_find_ssid_match(ap, request)) continue; + if (!is_broadcast_ether_addr(request->bssid) && + !ether_addr_equal(request->bssid, ap->bssid)) + continue; + if (!request->n_ssids && ap->multi_bss && !ap->transmitted_bssid) continue; diff --git a/net/xdp/xsk_diag.c b/net/xdp/xsk_diag.c index c014217f5fa7d..22b36c8143cfd 100644 --- a/net/xdp/xsk_diag.c +++ b/net/xdp/xsk_diag.c @@ -111,6 +111,9 @@ static int xsk_diag_fill(struct sock *sk, struct sk_buff *nlskb, sock_diag_save_cookie(sk, msg->xdiag_cookie); mutex_lock(&xs->mutex); + if (READ_ONCE(xs->state) == XSK_UNBOUND) + goto out_nlmsg_trim; + if ((req->xdiag_show & XDP_SHOW_INFO) && xsk_diag_put_info(xs, nlskb)) goto out_nlmsg_trim; diff --git a/net/xfrm/xfrm_interface_core.c b/net/xfrm/xfrm_interface_core.c index ded752e33dacd..9bd69887e16d2 100644 --- a/net/xfrm/xfrm_interface_core.c +++ b/net/xfrm/xfrm_interface_core.c @@ -274,8 +274,8 @@ static int xfrmi_rcv_cb(struct sk_buff *skb, int err) skb->dev = dev; if (err) { - dev->stats.rx_errors++; - dev->stats.rx_dropped++; + DEV_STATS_INC(dev, rx_errors); + DEV_STATS_INC(dev, rx_dropped); return 0; } @@ -309,7 +309,6 @@ static int xfrmi_xmit2(struct sk_buff *skb, struct net_device *dev, struct flowi *fl) { struct xfrm_if *xi = netdev_priv(dev); - struct net_device_stats *stats = &xi->dev->stats; struct dst_entry *dst = skb_dst(skb); unsigned int length = skb->len; struct net_device *tdev; @@ -335,7 +334,7 @@ xfrmi_xmit2(struct sk_buff *skb, struct net_device *dev, struct flowi *fl) tdev = dst->dev; if (tdev == dev) { - stats->collisions++; + DEV_STATS_INC(dev, collisions); net_warn_ratelimited("%s: Local routing loop detected!\n", dev->name); goto tx_err_dst_release; @@ -374,13 +373,13 @@ xfrmi_xmit2(struct sk_buff *skb, struct net_device *dev, struct flowi *fl) if (net_xmit_eval(err) == 0) { dev_sw_netstats_tx_add(dev, 1, length); } else { - stats->tx_errors++; - stats->tx_aborted_errors++; + DEV_STATS_INC(dev, tx_errors); + DEV_STATS_INC(dev, tx_aborted_errors); } return 0; tx_err_link_failure: - stats->tx_carrier_errors++; + DEV_STATS_INC(dev, tx_carrier_errors); dst_link_failure(skb); tx_err_dst_release: dst_release(dst); @@ -390,7 +389,6 @@ xfrmi_xmit2(struct sk_buff *skb, struct net_device *dev, struct flowi *fl) static netdev_tx_t xfrmi_xmit(struct sk_buff *skb, struct net_device *dev) { struct xfrm_if *xi = netdev_priv(dev); - struct net_device_stats *stats = &xi->dev->stats; struct dst_entry *dst = skb_dst(skb); struct flowi fl; int ret; @@ -407,7 +405,7 @@ static netdev_tx_t xfrmi_xmit(struct sk_buff *skb, struct net_device *dev) dst = ip6_route_output(dev_net(dev), NULL, &fl.u.ip6); if (dst->error) { dst_release(dst); - stats->tx_carrier_errors++; + DEV_STATS_INC(dev, tx_carrier_errors); goto tx_err; } skb_dst_set(skb, dst); @@ -423,7 +421,7 @@ static netdev_tx_t xfrmi_xmit(struct sk_buff *skb, struct net_device *dev) fl.u.ip4.flowi4_flags |= FLOWI_FLAG_ANYSRC; rt = __ip_route_output_key(dev_net(dev), &fl.u.ip4); if (IS_ERR(rt)) { - stats->tx_carrier_errors++; + DEV_STATS_INC(dev, tx_carrier_errors); goto tx_err; } skb_dst_set(skb, &rt->dst); @@ -442,8 +440,8 @@ static netdev_tx_t xfrmi_xmit(struct sk_buff *skb, struct net_device *dev) return NETDEV_TX_OK; tx_err: - stats->tx_errors++; - stats->tx_dropped++; + DEV_STATS_INC(dev, tx_errors); + DEV_STATS_INC(dev, tx_dropped); kfree_skb(skb); return NETDEV_TX_OK; } diff --git a/net/xfrm/xfrm_policy.c b/net/xfrm/xfrm_policy.c index b0a19cc928799..eebca0cbc61ae 100644 --- a/net/xfrm/xfrm_policy.c +++ b/net/xfrm/xfrm_policy.c @@ -1371,8 +1371,6 @@ EXPORT_SYMBOL(xfrm_policy_hash_rebuild); * of an absolute inpredictability of ordering of rules. This will not pass. */ static u32 xfrm_gen_index(struct net *net, int dir, u32 index) { - static u32 idx_generator; - for (;;) { struct hlist_head *list; struct xfrm_policy *p; @@ -1380,8 +1378,8 @@ static u32 xfrm_gen_index(struct net *net, int dir, u32 index) int found; if (!index) { - idx = (idx_generator | dir); - idx_generator += 8; + idx = (net->xfrm.idx_generator | dir); + net->xfrm.idx_generator += 8; } else { idx = index; index = 0; diff --git a/samples/bpf/tracex6_kern.c b/samples/bpf/tracex6_kern.c index acad5712d8b4f..fd602c2774b8b 100644 --- a/samples/bpf/tracex6_kern.c +++ b/samples/bpf/tracex6_kern.c @@ -2,6 +2,8 @@ #include #include #include +#include +#include struct { __uint(type, BPF_MAP_TYPE_PERF_EVENT_ARRAY); @@ -45,13 +47,24 @@ int bpf_prog1(struct pt_regs *ctx) return 0; } -SEC("kprobe/htab_map_lookup_elem") -int bpf_prog2(struct pt_regs *ctx) +/* + * Since *_map_lookup_elem can't be expected to trigger bpf programs + * due to potential deadlocks (bpf_disable_instrumentation), this bpf + * program will be attached to bpf_map_copy_value (which is called + * from map_lookup_elem) and will only filter the hashtable type. + */ +SEC("kprobe/bpf_map_copy_value") +int BPF_KPROBE(bpf_prog2, struct bpf_map *map) { u32 key = bpf_get_smp_processor_id(); struct bpf_perf_event_value *val, buf; + enum bpf_map_type type; int error; + type = BPF_CORE_READ(map, map_type); + if (type != BPF_MAP_TYPE_HASH) + return 0; + error = bpf_perf_event_read_value(&counters, key, &buf, sizeof(buf)); if (error) return 0; diff --git a/samples/hw_breakpoint/data_breakpoint.c b/samples/hw_breakpoint/data_breakpoint.c index 418c46fe5ffc3..b99322f188e59 100644 --- a/samples/hw_breakpoint/data_breakpoint.c +++ b/samples/hw_breakpoint/data_breakpoint.c @@ -70,7 +70,9 @@ static int __init hw_break_module_init(void) static void __exit hw_break_module_exit(void) { unregister_wide_hw_breakpoint(sample_hbp); - symbol_put(ksym_name); +#ifdef CONFIG_MODULE_UNLOAD + __symbol_put(ksym_name); +#endif printk(KERN_INFO "HW Breakpoint for %s write uninstalled\n", ksym_name); } diff --git a/scripts/checkstack.pl b/scripts/checkstack.pl index d2c38584ece6f..758884b61f923 100755 --- a/scripts/checkstack.pl +++ b/scripts/checkstack.pl @@ -142,15 +142,11 @@ sub arm_push_handling { while (my $line = ) { if ($line =~ m/$funcre/) { $func = $1; - next if $line !~ m/^($xs*)/; + next if $line !~ m/^($x*)/; if ($total_size > $min_stack) { push @stack, "$intro$total_size\n"; } - - $addr = $1; - $addr =~ s/ /0/g; - $addr = "0x$addr"; - + $addr = "0x$1"; $intro = "$addr $func [$file]:"; my $padlen = 56 - length($intro); while ($padlen > 0) { diff --git a/scripts/gcc-plugins/randomize_layout_plugin.c b/scripts/gcc-plugins/randomize_layout_plugin.c index 334741a31d0ac..60e9359a71a50 100644 --- a/scripts/gcc-plugins/randomize_layout_plugin.c +++ b/scripts/gcc-plugins/randomize_layout_plugin.c @@ -209,12 +209,14 @@ static void partition_struct(tree *fields, unsigned long length, struct partitio static void performance_shuffle(tree *newtree, unsigned long length, ranctx *prng_state) { - unsigned long i, x; + unsigned long i, x, index; struct partition_group size_group[length]; unsigned long num_groups = 0; unsigned long randnum; partition_struct(newtree, length, (struct partition_group *)&size_group, &num_groups); + + /* FIXME: this group shuffle is currently a no-op. */ for (i = num_groups - 1; i > 0; i--) { struct partition_group tmp; randnum = ranval(prng_state) % (i + 1); @@ -224,11 +226,14 @@ static void performance_shuffle(tree *newtree, unsigned long length, ranctx *prn } for (x = 0; x < num_groups; x++) { - for (i = size_group[x].start + size_group[x].length - 1; i > size_group[x].start; i--) { + for (index = size_group[x].length - 1; index > 0; index--) { tree tmp; + + i = size_group[x].start + index; if (DECL_BIT_FIELD_TYPE(newtree[i])) continue; - randnum = ranval(prng_state) % (i + 1); + randnum = ranval(prng_state) % (index + 1); + randnum += size_group[x].start; // we could handle this case differently if desired if (DECL_BIT_FIELD_TYPE(newtree[randnum])) continue; diff --git a/scripts/kconfig/preprocess.c b/scripts/kconfig/preprocess.c index 748da578b418c..d1f5bcff4b62d 100644 --- a/scripts/kconfig/preprocess.c +++ b/scripts/kconfig/preprocess.c @@ -396,6 +396,9 @@ static char *eval_clause(const char *str, size_t len, int argc, char *argv[]) p++; } + + if (new_argc >= FUNCTION_MAX_ARGS) + pperror("too many function arguments"); new_argv[new_argc++] = prev; /* diff --git a/scripts/kconfig/symbol.c b/scripts/kconfig/symbol.c index 5844d636d38f4..7f8013dcef002 100644 --- a/scripts/kconfig/symbol.c +++ b/scripts/kconfig/symbol.c @@ -122,9 +122,9 @@ static long long sym_get_range_val(struct symbol *sym, int base) static void sym_validate_range(struct symbol *sym) { struct property *prop; + struct symbol *range_sym; int base; long long val, val2; - char str[64]; switch (sym->type) { case S_INT: @@ -140,17 +140,15 @@ static void sym_validate_range(struct symbol *sym) if (!prop) return; val = strtoll(sym->curr.val, NULL, base); - val2 = sym_get_range_val(prop->expr->left.sym, base); + range_sym = prop->expr->left.sym; + val2 = sym_get_range_val(range_sym, base); if (val >= val2) { - val2 = sym_get_range_val(prop->expr->right.sym, base); + range_sym = prop->expr->right.sym; + val2 = sym_get_range_val(range_sym, base); if (val <= val2) return; } - if (sym->type == S_INT) - sprintf(str, "%lld", val2); - else - sprintf(str, "0x%llx", val2); - sym->curr.val = xstrdup(str); + sym->curr.val = range_sym->curr.val; } static void sym_set_changed(struct symbol *sym) diff --git a/scripts/mod/file2alias.c b/scripts/mod/file2alias.c index 49aba862073e0..23e7102abe0cd 100644 --- a/scripts/mod/file2alias.c +++ b/scripts/mod/file2alias.c @@ -1339,13 +1339,13 @@ static int do_typec_entry(const char *filename, void *symval, char *alias) /* Looks like: tee:uuid */ static int do_tee_entry(const char *filename, void *symval, char *alias) { - DEF_FIELD(symval, tee_client_device_id, uuid); + DEF_FIELD_ADDR(symval, tee_client_device_id, uuid); sprintf(alias, "tee:%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x", - uuid.b[0], uuid.b[1], uuid.b[2], uuid.b[3], uuid.b[4], - uuid.b[5], uuid.b[6], uuid.b[7], uuid.b[8], uuid.b[9], - uuid.b[10], uuid.b[11], uuid.b[12], uuid.b[13], uuid.b[14], - uuid.b[15]); + uuid->b[0], uuid->b[1], uuid->b[2], uuid->b[3], uuid->b[4], + uuid->b[5], uuid->b[6], uuid->b[7], uuid->b[8], uuid->b[9], + uuid->b[10], uuid->b[11], uuid->b[12], uuid->b[13], uuid->b[14], + uuid->b[15]); add_wildcard(alias); return 1; @@ -1547,7 +1547,7 @@ void handle_moddevtable(struct module *mod, struct elf_info *info, /* First handle the "special" cases */ if (sym_is(name, namelen, "usb")) do_usb_table(symval, sym->st_size, mod); - if (sym_is(name, namelen, "of")) + else if (sym_is(name, namelen, "of")) do_of_table(symval, sym->st_size, mod); else if (sym_is(name, namelen, "pnp")) do_pnp_device_entry(symval, sym->st_size, mod); diff --git a/security/apparmor/apparmorfs.c b/security/apparmor/apparmorfs.c index 3eee50f58e42f..fd7db1c0b07c1 100644 --- a/security/apparmor/apparmorfs.c +++ b/security/apparmor/apparmorfs.c @@ -2293,6 +2293,12 @@ static struct aa_sfs_entry aa_sfs_entry_file[] = { { } }; +static struct aa_sfs_entry aa_sfs_entry_ipc[] = { + AA_SFS_FILE_STRING("posix_mqueue", + "create read write open delete setattr getattr"), + { } +}; + static struct aa_sfs_entry aa_sfs_entry_ptrace[] = { AA_SFS_FILE_STRING("mask", "read trace"), { } @@ -2368,6 +2374,7 @@ static struct aa_sfs_entry aa_sfs_entry_features[] = { AA_SFS_DIR("policy", aa_sfs_entry_policy), AA_SFS_DIR("domain", aa_sfs_entry_domain), AA_SFS_DIR("file", aa_sfs_entry_file), + AA_SFS_DIR("ipc", aa_sfs_entry_ipc), AA_SFS_DIR("network_v8", aa_sfs_entry_network), AA_SFS_DIR("network", aa_sfs_entry_network_compat), AA_SFS_DIR("mount", aa_sfs_entry_mount), diff --git a/security/apparmor/file.c b/security/apparmor/file.c index 866272cf9df7a..d6fc6fbe3d713 100644 --- a/security/apparmor/file.c +++ b/security/apparmor/file.c @@ -19,6 +19,7 @@ #include "include/audit.h" #include "include/cred.h" #include "include/file.h" +#include "include/ipc.h" #include "include/match.h" #include "include/net.h" #include "include/path.h" @@ -587,6 +588,60 @@ static int __file_sock_perm(const char *op, struct aa_label *label, return error; } +/* TODO: combine with __file_path_perm */ +static int __file_mqueue_perm(const char *op, struct aa_label *label, + struct aa_label *flabel, struct file *file, + u32 request, u32 denied, bool in_atomic) +{ + struct aa_profile *profile; + char *buffer; + int error; + DEFINE_AUDIT_DATA(sa, LSM_AUDIT_DATA_NONE, op); + + /* revalidation due to label out of date. No revocation at this time */ + if (!denied && aa_label_is_subset(flabel, label)) + /* TODO: check for revocation on stale profiles */ + return 0; + + buffer = aa_get_buffer(in_atomic); + if (!buffer) + return -ENOMEM; + + aad(&sa)->request = request; + aad(&sa)->peer = NULL; + aad(&sa)->mq.ouid = file_inode(file)->i_uid; + aad(&sa)->mq.fsuid = current_fsuid(); /* mqueue uses fsuid() */ + + /* check every profile in task label not in current cache */ + error = fn_for_each_not_in_set(flabel, label, profile, + aa_profile_mqueue_perm(profile, &file->f_path, + request, buffer, &sa)); + if (denied && !error) { + /* + * check every profile in file label that was not tested + * in the initial check above. + * + * TODO: cache full perms so this only happens because of + * conditionals + * TODO: don't audit here + */ + if (label == flabel) + error = fn_for_each(label, profile, + aa_profile_mqueue_perm(profile, &file->f_path, + request, buffer, &sa)); + else + error = fn_for_each_not_in_set(label, flabel, profile, + aa_profile_mqueue_perm(profile, &file->f_path, + request, buffer, &sa)); + } + if (!error) + update_file_ctx(file_ctx(file), label, request); + + aa_put_buffer(buffer); + + return error; +} + /** * aa_file_perm - do permission revalidation check & audit for @file * @op: operation being checked @@ -632,7 +687,10 @@ int aa_file_perm(const char *op, struct aa_label *label, struct file *file, rcu_read_unlock(); /* TODO: label cross check */ - if (file->f_path.mnt && path_mediated_fs(file->f_path.dentry)) + if (is_mqueue_inode(file_inode(file))) { + error = __file_mqueue_perm(op, label, flabel, file, + request, denied, in_atomic); + } else if (file->f_path.mnt && path_mediated_fs(file->f_path.dentry)) error = __file_path_perm(op, label, flabel, file, request, denied, in_atomic); diff --git a/security/apparmor/include/apparmor.h b/security/apparmor/include/apparmor.h index 9bed3fcb239af..b0bcb5a6aa963 100644 --- a/security/apparmor/include/apparmor.h +++ b/security/apparmor/include/apparmor.h @@ -28,9 +28,15 @@ #define AA_CLASS_SIGNAL 10 #define AA_CLASS_NET 14 #define AA_CLASS_LABEL 16 -#define AA_CLASS_DISPLAY_LSM 17 +#define AA_CLASS_POSIX_MQUEUE 17 +#define AA_CLASS_IO_URING 18 +#define AA_CLASS_MODULE 19 +#define AA_CLASS_DISPLAY_LSM 20 -#define AA_CLASS_LAST AA_CLASS_DISPLAY_LSM +#define AA_CLASS_X 31 +#define AA_CLASS_DBUS 32 + +#define AA_CLASS_LAST AA_CLASS_DBUS /* Control parameters settable through module/boot flags */ extern enum audit_mode aa_g_audit; diff --git a/security/apparmor/include/audit.h b/security/apparmor/include/audit.h index 18519a4eb67e3..24bbe432095ac 100644 --- a/security/apparmor/include/audit.h +++ b/security/apparmor/include/audit.h @@ -136,6 +136,10 @@ struct apparmor_audit_data { void *addr; int addrlen; } net; + struct { + kuid_t fsuid; + kuid_t ouid; + } mq; }; }; struct { diff --git a/security/apparmor/include/inode.h b/security/apparmor/include/inode.h new file mode 100644 index 0000000000000..a9b3e4d6c968b --- /dev/null +++ b/security/apparmor/include/inode.h @@ -0,0 +1,42 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ +/* + * AppArmor security module + * + * This file contains AppArmor file mediation function definitions. + * + * Copyright 2022 Canonical Ltd. + */ + +#ifndef __AA_INODE_H +#define __AA_INODE_H + +#include + +#include "lib.h" + +struct aa_inode_sec { + struct inode *inode; /* back pointer to inode object */ + struct aa_label *label; + u16 sclass; /* security class of this object */ + bool initialized; /* initialization flag */ + spinlock_t lock; +}; + +struct aa_superblock_sec { + struct aa_label *label; +}; + +static inline struct aa_inode_sec *apparmor_inode(const struct inode *inode) +{ + if (unlikely(!inode->i_security)) + return NULL; + return inode->i_security + apparmor_blob_sizes.lbs_inode; +} + +static inline struct aa_superblock_sec *apparmor_superblock( + const struct super_block *sb) +{ + return sb->s_security + apparmor_blob_sizes.lbs_superblock; +} + +#endif /* __AA_INODE_H */ diff --git a/security/apparmor/include/ipc.h b/security/apparmor/include/ipc.h index 9cafd80f77317..9bff6d338363d 100644 --- a/security/apparmor/include/ipc.h +++ b/security/apparmor/include/ipc.h @@ -11,7 +11,10 @@ #ifndef __AA_IPC_H #define __AA_IPC_H +#include #include +#include "inode.h" +#include "perms.h" struct aa_profile; @@ -33,4 +36,57 @@ int aa_may_ptrace(struct aa_label *tracer, struct aa_label *tracee, u32 request); int aa_may_signal(struct aa_label *sender, struct aa_label *target, int sig); +#define AA_AUDIT_POSIX_MQUEUE_MASK (AA_MAY_WRITE | AA_MAY_READ | \ + AA_MAY_CREATE | AA_MAY_DELETE | \ + AA_MAY_OPEN | AA_MAY_SETATTR | \ + AA_MAY_GETATTR) + + +struct aa_msg_sec { + struct aa_label *label; +}; + +struct aa_ipc_sec { + struct aa_label *label; +}; + +static inline struct aa_ipc_sec *apparmor_ipc(const struct kern_ipc_perm *ipc) +{ + return ipc->security + apparmor_blob_sizes.lbs_ipc; +} + +static inline struct aa_msg_sec *apparmor_msg_msg(const struct msg_msg *msg_msg) +{ + return msg_msg->security + apparmor_blob_sizes.lbs_msg_msg; +} + + +static inline bool is_mqueue_sb(struct super_block *sb) +{ + if (!sb) + pr_warn("mqueue sb == NULL\n"); + if (!sb && !sb->s_type->name) + pr_warn("mqueue sb name == NULL\n"); + return sb && sb->s_type->name && strcmp(sb->s_type->name, "mqueue") == 0; +} + +static inline bool is_mqueue_inode(struct inode *i) +{ + struct aa_inode_sec *isec; + + if (!i) + return false; + + isec = apparmor_inode(i); + return isec && isec->sclass == AA_CLASS_POSIX_MQUEUE; +} + +int aa_profile_mqueue_perm(struct aa_profile *profile, + const struct path *path, + u32 request, char *buffer, + struct common_audit_data *sa); + +int aa_mqueue_perm(const char *op, struct aa_label *label, + const struct path *path, u32 request); + #endif /* __AA_IPC_H */ diff --git a/security/apparmor/include/perms.h b/security/apparmor/include/perms.h index 13f20c5984480..6252d128d6f30 100644 --- a/security/apparmor/include/perms.h +++ b/security/apparmor/include/perms.h @@ -137,6 +137,9 @@ void aa_perm_mask_to_str(char *str, size_t str_size, const char *chrs, u32 mask); void aa_audit_perm_names(struct audit_buffer *ab, const char * const *names, u32 mask); +void aa_audit_perms(struct audit_buffer *ab, struct common_audit_data *sa, + const char *chrs, u32 chrsmask, const char * const *names, + u32 namesmask); void aa_audit_perm_mask(struct audit_buffer *ab, u32 mask, const char *chrs, u32 chrsmask, const char * const *names, u32 namesmask); void aa_apply_modes_to_perms(struct aa_profile *profile, @@ -150,6 +153,12 @@ void aa_profile_match_label(struct aa_profile *profile, struct aa_label *label, int aa_profile_label_perm(struct aa_profile *profile, struct aa_profile *target, u32 request, int type, u32 *deny, struct common_audit_data *sa); + +static inline u32 denied_perms(struct aa_perms *perms, u32 request) +{ + return request & (~perms->allow | perms->deny); +} + int aa_check_perms(struct aa_profile *profile, struct aa_perms *perms, u32 request, struct common_audit_data *sa, void (*cb)(struct audit_buffer *, void *)); diff --git a/security/apparmor/ipc.c b/security/apparmor/ipc.c index fe36d112aad9e..90cf7081aa023 100644 --- a/security/apparmor/ipc.c +++ b/security/apparmor/ipc.c @@ -10,10 +10,13 @@ #include #include +#include +#include #include "include/audit.h" #include "include/capability.h" #include "include/cred.h" +#include "include/path.h" #include "include/policy.h" #include "include/ipc.h" #include "include/sig_names.h" @@ -216,3 +219,104 @@ int aa_may_signal(struct aa_label *sender, struct aa_label *target, int sig) profile_signal_perm(profile, target, MAY_WRITE, &sa), profile_signal_perm(profile, sender, MAY_READ, &sa)); } + + +static void audit_mqueue_cb(struct audit_buffer *ab, void *va) +{ + struct common_audit_data *sa = va; + + aa_audit_perms(ab, sa, NULL, 0, NULL, AA_AUDIT_POSIX_MQUEUE_MASK); + + /* move class into generic audit framse work */ + audit_log_format(ab, "class=\"posix_mqueue\""); + if (aad(sa)->request & AA_AUDIT_FILE_MASK) { + audit_log_format(ab, " fsuid=%u", + from_kuid(&init_user_ns, aad(sa)->mq.fsuid)); + audit_log_format(ab, " ouid=%u", + from_kuid(&init_user_ns, aad(sa)->mq.ouid)); + } + if (aad(sa)->peer) { + audit_log_format(ab, " olabel="); + aa_label_xaudit(ab, labels_ns(aad(sa)->label), aad(sa)->peer, + FLAGS_NONE, GFP_ATOMIC); + } +} + +int aa_profile_mqueue_perm(struct aa_profile *profile, const struct path *path, + u32 request, char *buffer, + struct common_audit_data *sa) +{ + struct aa_perms perms = { }; + unsigned int state; + char *name; + + if (profile_unconfined(profile) || + !PROFILE_MEDIATES(profile, AA_CLASS_POSIX_MQUEUE)) + return 0; + + aad(sa)->label = &profile->label; + + name = dentry_path_raw(path->dentry, buffer, aa_g_path_max); + if (IS_ERR(name)) + return PTR_ERR(name); + if (path->mnt != current->nsproxy->ipc_ns->mq_mnt) { + /* TODO: disconnected path detection */ + pr_warn("apparmor mqueue disconnected TODO\n"); + } + + aad(sa)->name = name; + + state = aa_dfa_match(profile->policy.dfa, + profile->policy.start[AA_CLASS_POSIX_MQUEUE], + name); + aa_compute_perms(profile->policy.dfa, state, &perms); + aa_apply_modes_to_perms(profile, &perms); + if (!denied_perms(&perms, request)) { + /* early bailout sufficient perms no need to do further + * checks */ + return aa_check_perms(profile, &perms, request, sa, + audit_mqueue_cb); + } + /* continue check to see if we have label perms */ + //aa_label_match(profile, peer??, state false, request, &perms); + //aa_apply_modes_to_perms(profile, &perms); + + // this will just cause failure without above label check + return aa_check_perms(profile, &perms, request, sa, audit_mqueue_cb); +} + +/* mqueue - no label caching test */ +int aa_mqueue_perm(const char *op, struct aa_label *label, + const struct path *path, u32 request) +{ + struct aa_profile *profile; + char *buffer; + int error; + DEFINE_AUDIT_DATA(sa, LSM_AUDIT_DATA_NONE, op); + + // do we need delegate deleted with mqueues? probably + //flags |= PATH_DELEGATE_DELETED; + + /* sadly due to rcu walk hairiness, we use dentry_path_raw instead + * of just accessing the name directly, which means we need to + * do the whole buffer allocation mess + */ + buffer = aa_get_buffer(false); + if (!buffer) + return -ENOMEM; + + /* audit fields that won't change during iteration */ + aad(&sa)->request = request; + aad(&sa)->peer = NULL; + aad(&sa)->mq.fsuid = current_fsuid(); /* mqueue uses fsuid() */ + aad(&sa)->mq.ouid = d_backing_inode(path->dentry) ? + d_backing_inode(path->dentry)->i_uid: + current_fsuid(); + + error = fn_for_each_confined(label, profile, + aa_profile_mqueue_perm(profile, path, request, + buffer, &sa)); + aa_put_buffer(buffer); + + return error; +} diff --git a/security/apparmor/lib.c b/security/apparmor/lib.c index bf72843513054..7890d763a3a22 100644 --- a/security/apparmor/lib.c +++ b/security/apparmor/lib.c @@ -151,7 +151,7 @@ void aa_str_kref(struct kref *kref) const char aa_file_perm_chrs[] = "xwracd km l "; -const char *aa_file_perm_names[] = { +const char *aa_base_perm_names[] = { "exec", "write", "read", @@ -241,6 +241,10 @@ void aa_audit_perm_mask(struct audit_buffer *ab, u32 mask, const char *chrs, { char str[33]; + if (!chrs) + chrs = aa_file_perm_chrs; + if (!names) + names = aa_base_perm_names; audit_log_format(ab, "\""); if ((mask & chrsmask) && chrs) { aa_perm_mask_to_str(str, sizeof(str), chrs, mask & chrsmask); @@ -254,6 +258,22 @@ void aa_audit_perm_mask(struct audit_buffer *ab, u32 mask, const char *chrs, audit_log_format(ab, "\""); } +void aa_audit_perms(struct audit_buffer *ab, struct common_audit_data *sa, + const char *chrs, u32 chrsmask, const char * const *names, + u32 namesmask) +{ + if (aad(sa)->request) { + audit_log_format(ab, " requested="); + aa_audit_perm_mask(ab, aad(sa)->request, chrs, chrsmask, + names, namesmask); + } + if (aad(sa)->denied) { + audit_log_format(ab, " denied="); + aa_audit_perm_mask(ab, aad(sa)->denied, chrs, chrsmask, + names, namesmask); + } +} + /** * aa_audit_perms_cb - generic callback fn for auditing perms * @ab: audit buffer (NOT NULL) @@ -263,18 +283,8 @@ static void aa_audit_perms_cb(struct audit_buffer *ab, void *va) { struct common_audit_data *sa = va; - if (aad(sa)->request) { - audit_log_format(ab, " requested_mask="); - aa_audit_perm_mask(ab, aad(sa)->request, aa_file_perm_chrs, - PERMS_CHRS_MASK, aa_file_perm_names, - PERMS_NAMES_MASK); - } - if (aad(sa)->denied) { - audit_log_format(ab, "denied_mask="); - aa_audit_perm_mask(ab, aad(sa)->denied, aa_file_perm_chrs, - PERMS_CHRS_MASK, aa_file_perm_names, - PERMS_NAMES_MASK); - } + aa_audit_perms(ab, sa, aa_file_perm_chrs, PERMS_CHRS_MASK, + aa_base_perm_names, PERMS_NAMES_MASK); audit_log_format(ab, " peer="); aa_label_xaudit(ab, labels_ns(aad(sa)->label), aad(sa)->peer, FLAGS_NONE, GFP_ATOMIC); @@ -431,7 +441,7 @@ int aa_check_perms(struct aa_profile *profile, struct aa_perms *perms, void (*cb)(struct audit_buffer *, void *)) { int type, error; - u32 denied = request & (~perms->allow | perms->deny); + u32 denied = denied_perms(perms, request); if (likely(!denied)) { /* mask off perms that are not being force audited */ diff --git a/security/apparmor/lsm.c b/security/apparmor/lsm.c index 65205c607eb28..e956853cffd27 100644 --- a/security/apparmor/lsm.c +++ b/security/apparmor/lsm.c @@ -18,6 +18,8 @@ #include #include #include +#include +#include #include #include #include @@ -32,6 +34,7 @@ #include "include/capability.h" #include "include/cred.h" #include "include/file.h" +#include "include/inode.h" #include "include/ipc.h" #include "include/net.h" #include "include/path.h" @@ -57,6 +60,11 @@ static int buffer_count; static LIST_HEAD(aa_global_buffers); static DEFINE_SPINLOCK(aa_buffers_lock); +static bool is_mqueue_dentry(struct dentry *dentry) +{ + return dentry && is_mqueue_inode(d_backing_inode(dentry)); +} + /* * LSM hook functions */ @@ -400,11 +408,167 @@ static int apparmor_path_chown(const struct path *path, kuid_t uid, kgid_t gid) return common_perm_cond(OP_CHOWN, path, AA_MAY_CHOWN); } +static int common_mqueue_path_perm(const char *op, u32 request, + const struct path *path) +{ + struct aa_label *label; + int error = 0; + + label = begin_current_label_crit_section(); + if (!unconfined(label)) + error = aa_mqueue_perm(OP_UNLINK, label, path, request); + + end_current_label_crit_section(label); + + return error; +} + static int apparmor_inode_getattr(const struct path *path) { + if (is_mqueue_dentry(path->dentry)) + /* TODO: fn() for d_parent */ + return common_mqueue_path_perm(OP_UNLINK, AA_MAY_GETATTR, path); + return common_perm_cond(OP_GETATTR, path, AA_MAY_GETATTR); } +/* inode security operations */ + +/* alloced by infrastructure */ +static int apparmor_inode_alloc_security(struct inode *inode) +{ + struct aa_inode_sec *isec = apparmor_inode(inode); + + spin_lock_init(&isec->lock); + isec->inode = inode; + isec->label = NULL; + isec->sclass = 0; + isec->initialized = false; + + return 0; +} + +/* freed by infrastructure */ +static void apparmor_inode_free_security(struct inode *inode) +{ + struct aa_inode_sec *isec = apparmor_inode(inode); + + if (!isec) + return; + + aa_put_label(isec->label); +} + + +/* this is broken, in that we must make it work for ALL xattr fs + * or it will bail early, so this does not work with LSM stacking + */ +static int apparmor_inode_init_security(struct inode *inode, struct inode *dir, + const struct qstr *qstr, + const char **name, + void **value, size_t *len) +{ + struct aa_inode_sec *isec = apparmor_inode(inode); + + if (is_mqueue_inode(dir)) { + /* only initialize based on implied label atm */ + isec->label = aa_get_current_label(); + isec->sclass = AA_CLASS_POSIX_MQUEUE; + isec->initialized = true; + } + + /* we aren't setting xattrs yet so pretend it isn't supported, + * note bug in LSM means other LSMs won't get to init inode either + */ + return -EOPNOTSUPP; +} + +static int inode_init_with_dentry(struct inode *inode, struct dentry *dentry) +{ + struct aa_inode_sec *isec = apparmor_inode(inode); + + if (isec->initialized) + return 0; + spin_lock(&isec->lock); + /* recheck under lock */ + if (isec->initialized) + goto unlock; + + if (is_mqueue_sb(inode->i_sb)) { + /* only initialize based on implied label atm */ + isec->label = aa_get_current_label(); + isec->sclass = AA_CLASS_POSIX_MQUEUE; + isec->initialized = true; + } + +unlock: + spin_unlock(&isec->lock); + + return 0; +} + +static void apparmor_d_instantiate(struct dentry *dentry, struct inode *inode) +{ + if (inode) + inode_init_with_dentry(inode, dentry); +} + +static int apparmor_inode_create(struct inode *dir, struct dentry *dentry, + umode_t mode) +{ + struct aa_label *label; + int error = 0; + + label = begin_current_label_crit_section(); + if (!unconfined(label)) { + struct path path = { + .dentry = dentry, + .mnt = current->nsproxy->ipc_ns->mq_mnt, + }; + if (is_mqueue_inode(dir)) { + error = aa_mqueue_perm(OP_CREATE, label, &path, AA_MAY_CREATE); + } + } + end_current_label_crit_section(label); + + return error; +} + +static int common_mqueue_perm(const char *op, u32 request, struct inode *dir, struct dentry *dentry) +{ + /* can't directly determine ipc ns, but know for mqueues dir is mnt_root */ + struct path path = { + .dentry = dentry, + .mnt = d_inode(current->nsproxy->ipc_ns->mq_mnt->mnt_root) == dir ? current->nsproxy->ipc_ns->mq_mnt : NULL, + }; + + if (dir != d_inode(current->nsproxy->ipc_ns->mq_mnt->mnt_root)) + pr_warn("apparmor: unlink dir != mnt_root - disconnected"); + + return common_mqueue_path_perm(op, request, &path); +} + +static int apparmor_inode_unlink(struct inode *dir, struct dentry *dentry) +{ + int error = 0; + + if (is_mqueue_dentry(dentry)) + error = common_mqueue_perm(OP_UNLINK, AA_MAY_DELETE, dir, dentry); + + return error; +} + +static int apparmor_inode_setattr(struct dentry *dentry, struct iattr *iattr) +{ + /* TODO: extend to support iattr as a parameter */ + if (is_mqueue_dentry(dentry)) + /* TODO: fn() for d_parent */ + return common_mqueue_perm(OP_UNLINK, AA_MAY_SETATTR, + d_backing_inode(dentry->d_parent), dentry); + + return 0; +} + static int apparmor_file_open(struct file *file) { struct aa_file_ctx *fctx = file_ctx(file); @@ -433,10 +597,15 @@ static int apparmor_file_open(struct file *file) inode->i_mode }; - error = aa_path_perm(OP_OPEN, label, &file->f_path, 0, - aa_map_file_to_perms(file), &cond); + if (is_mqueue_inode(file_inode(file))) + error = aa_mqueue_perm(OP_OPEN, label, &file->f_path, + aa_map_file_to_perms(file)); + else + error = aa_path_perm(OP_OPEN, label, &file->f_path, 0, + aa_map_file_to_perms(file), &cond); /* todo cache full allowed permissions set and state */ - fctx->allow = aa_map_file_to_perms(file); + if (!error) + fctx->allow = aa_map_file_to_perms(file); } aa_put_label(label); @@ -448,6 +617,7 @@ static int apparmor_file_alloc_security(struct file *file) struct aa_file_ctx *ctx = file_ctx(file); struct aa_label *label = begin_current_label_crit_section(); + /* no inode available here */ spin_lock_init(&ctx->lock); rcu_assign_pointer(ctx->label, aa_get_label(label)); end_current_label_crit_section(label); @@ -1289,8 +1459,12 @@ static int apparmor_inet_conn_request(const struct sock *sk, struct sk_buff *skb struct lsm_blob_sizes apparmor_blob_sizes __lsm_ro_after_init = { .lbs_cred = sizeof(struct aa_label *), .lbs_file = sizeof(struct aa_file_ctx), + .lbs_inode = sizeof(struct aa_inode_sec), .lbs_task = sizeof(struct aa_task_ctx), .lbs_sock = sizeof(struct aa_sk_ctx), + .lbs_ipc = sizeof(struct aa_ipc_sec), + .lbs_msg_msg = sizeof(struct aa_msg_sec), + .lbs_superblock = sizeof(struct aa_superblock_sec), }; static struct lsm_id apparmor_lsmid __lsm_ro_after_init = { @@ -1320,6 +1494,16 @@ static struct security_hook_list apparmor_hooks[] __lsm_ro_after_init = { LSM_HOOK_INIT(path_truncate, apparmor_path_truncate), LSM_HOOK_INIT(inode_getattr, apparmor_inode_getattr), + LSM_HOOK_INIT(inode_alloc_security, apparmor_inode_alloc_security), + LSM_HOOK_INIT(inode_free_security, apparmor_inode_free_security), + LSM_HOOK_INIT(inode_init_security, apparmor_inode_init_security), + LSM_HOOK_INIT(d_instantiate, apparmor_d_instantiate), + + LSM_HOOK_INIT(inode_create, apparmor_inode_create), + LSM_HOOK_INIT(inode_unlink, apparmor_inode_unlink), + LSM_HOOK_INIT(inode_setattr, apparmor_inode_setattr), + LSM_HOOK_INIT(inode_getattr, apparmor_inode_getattr), + LSM_HOOK_INIT(file_open, apparmor_file_open), LSM_HOOK_INIT(file_receive, apparmor_file_receive), LSM_HOOK_INIT(file_permission, apparmor_file_permission), diff --git a/security/integrity/iint.c b/security/integrity/iint.c index 65418e0906c13..cb251ab0e7076 100644 --- a/security/integrity/iint.c +++ b/security/integrity/iint.c @@ -66,9 +66,32 @@ struct integrity_iint_cache *integrity_iint_find(struct inode *inode) return iint; } -static void iint_free(struct integrity_iint_cache *iint) +#define IMA_MAX_NESTING (FILESYSTEM_MAX_STACK_DEPTH+1) + +/* + * It is not clear that IMA should be nested at all, but as long is it measures + * files both on overlayfs and on underlying fs, we need to annotate the iint + * mutex to avoid lockdep false positives related to IMA + overlayfs. + * See ovl_lockdep_annotate_inode_mutex_key() for more details. + */ +static inline void iint_lockdep_annotate(struct integrity_iint_cache *iint, + struct inode *inode) +{ +#ifdef CONFIG_LOCKDEP + static struct lock_class_key iint_mutex_key[IMA_MAX_NESTING]; + + int depth = inode->i_sb->s_stack_depth; + + if (WARN_ON_ONCE(depth < 0 || depth >= IMA_MAX_NESTING)) + depth = 0; + + lockdep_set_class(&iint->mutex, &iint_mutex_key[depth]); +#endif +} + +static void iint_init_always(struct integrity_iint_cache *iint, + struct inode *inode) { - kfree(iint->ima_hash); iint->ima_hash = NULL; iint->version = 0; iint->flags = 0UL; @@ -80,6 +103,14 @@ static void iint_free(struct integrity_iint_cache *iint) iint->ima_creds_status = INTEGRITY_UNKNOWN; iint->evm_status = INTEGRITY_UNKNOWN; iint->measured_pcrs = 0; + mutex_init(&iint->mutex); + iint_lockdep_annotate(iint, inode); +} + +static void iint_free(struct integrity_iint_cache *iint) +{ + kfree(iint->ima_hash); + mutex_destroy(&iint->mutex); kmem_cache_free(iint_cache, iint); } @@ -112,6 +143,8 @@ struct integrity_iint_cache *integrity_inode_get(struct inode *inode) if (!iint) return NULL; + iint_init_always(iint, inode); + write_lock(&integrity_iint_lock); p = &integrity_iint_tree.rb_node; @@ -161,25 +194,18 @@ void integrity_inode_free(struct inode *inode) iint_free(iint); } -static void init_once(void *foo) +static void iint_init_once(void *foo) { struct integrity_iint_cache *iint = (struct integrity_iint_cache *) foo; memset(iint, 0, sizeof(*iint)); - iint->ima_file_status = INTEGRITY_UNKNOWN; - iint->ima_mmap_status = INTEGRITY_UNKNOWN; - iint->ima_bprm_status = INTEGRITY_UNKNOWN; - iint->ima_read_status = INTEGRITY_UNKNOWN; - iint->ima_creds_status = INTEGRITY_UNKNOWN; - iint->evm_status = INTEGRITY_UNKNOWN; - mutex_init(&iint->mutex); } static int __init integrity_iintcache_init(void) { iint_cache = kmem_cache_create("iint_cache", sizeof(struct integrity_iint_cache), - 0, SLAB_PANIC, init_once); + 0, SLAB_PANIC, iint_init_once); return 0; } DEFINE_LSM(integrity) = { diff --git a/security/integrity/ima/Kconfig b/security/integrity/ima/Kconfig index 5d2c8990d1ac5..17d1290c1b642 100644 --- a/security/integrity/ima/Kconfig +++ b/security/integrity/ima/Kconfig @@ -29,9 +29,11 @@ config IMA to learn more about IMA. If unsure, say N. +if IMA + config IMA_KEXEC bool "Enable carrying the IMA measurement list across a soft boot" - depends on IMA && TCG_TPM && HAVE_IMA_KEXEC + depends on TCG_TPM && HAVE_IMA_KEXEC default n help TPM PCRs are only reset on a hard reboot. In order to validate @@ -43,7 +45,6 @@ config IMA_KEXEC config IMA_MEASURE_PCR_IDX int - depends on IMA range 8 14 default 10 help @@ -53,7 +54,7 @@ config IMA_MEASURE_PCR_IDX config IMA_LSM_RULES bool - depends on IMA && AUDIT && (SECURITY_SELINUX || SECURITY_SMACK || SECURITY_APPARMOR) + depends on AUDIT && (SECURITY_SELINUX || SECURITY_SMACK || SECURITY_APPARMOR) default y help Disabling this option will disregard LSM based policy rules. @@ -61,7 +62,6 @@ config IMA_LSM_RULES choice prompt "Default template" default IMA_NG_TEMPLATE - depends on IMA help Select the default IMA measurement template. @@ -80,14 +80,12 @@ endchoice config IMA_DEFAULT_TEMPLATE string - depends on IMA default "ima-ng" if IMA_NG_TEMPLATE default "ima-sig" if IMA_SIG_TEMPLATE choice prompt "Default integrity hash algorithm" default IMA_DEFAULT_HASH_SHA1 - depends on IMA help Select the default hash algorithm used for the measurement list, integrity appraisal and audit log. The compiled default @@ -117,7 +115,6 @@ endchoice config IMA_DEFAULT_HASH string - depends on IMA default "sha1" if IMA_DEFAULT_HASH_SHA1 default "sha256" if IMA_DEFAULT_HASH_SHA256 default "sha512" if IMA_DEFAULT_HASH_SHA512 @@ -126,7 +123,6 @@ config IMA_DEFAULT_HASH config IMA_WRITE_POLICY bool "Enable multiple writes to the IMA policy" - depends on IMA default n help IMA policy can now be updated multiple times. The new rules get @@ -137,7 +133,6 @@ config IMA_WRITE_POLICY config IMA_READ_POLICY bool "Enable reading back the current IMA policy" - depends on IMA default y if IMA_WRITE_POLICY default n if !IMA_WRITE_POLICY help @@ -147,7 +142,6 @@ config IMA_READ_POLICY config IMA_APPRAISE bool "Appraise integrity measurements" - depends on IMA default n help This option enables local measurement integrity appraisal. @@ -248,18 +242,6 @@ config IMA_APPRAISE_MODSIG The modsig keyword can be used in the IMA policy to allow a hook to accept such signatures. -config IMA_TRUSTED_KEYRING - bool "Require all keys on the .ima keyring be signed (deprecated)" - depends on IMA_APPRAISE && SYSTEM_TRUSTED_KEYRING - depends on INTEGRITY_ASYMMETRIC_KEYS - select INTEGRITY_TRUSTED_KEYRING - default y - help - This option requires that all keys added to the .ima - keyring be signed by a key on the system trusted keyring. - - This option is deprecated in favor of INTEGRITY_TRUSTED_KEYRING - config IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY bool "Permit keys validly signed by a built-in or secondary CA cert (EXPERIMENTAL)" depends on SYSTEM_TRUSTED_KEYRING @@ -280,7 +262,7 @@ config IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY config IMA_BLACKLIST_KEYRING bool "Create IMA machine owner blacklist keyrings (EXPERIMENTAL)" depends on SYSTEM_TRUSTED_KEYRING - depends on IMA_TRUSTED_KEYRING + depends on INTEGRITY_TRUSTED_KEYRING default n help This option creates an IMA blacklist keyring, which contains all @@ -290,7 +272,7 @@ config IMA_BLACKLIST_KEYRING config IMA_LOAD_X509 bool "Load X509 certificate onto the '.ima' trusted keyring" - depends on IMA_TRUSTED_KEYRING + depends on INTEGRITY_TRUSTED_KEYRING default n help File signature verification is based on the public keys @@ -315,7 +297,6 @@ config IMA_APPRAISE_SIGNED_INIT config IMA_MEASURE_ASYMMETRIC_KEYS bool - depends on IMA depends on ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y default y @@ -334,7 +315,8 @@ config IMA_SECURE_AND_OR_TRUSTED_BOOT config IMA_DISABLE_HTABLE bool "Disable htable to allow measurement of duplicate records" - depends on IMA default n help This option disables htable to allow measurement of duplicate records. + +endif diff --git a/security/integrity/ima/ima.h b/security/integrity/ima/ima.h index 783a3b2fc8263..e8b36f1992023 100644 --- a/security/integrity/ima/ima.h +++ b/security/integrity/ima/ima.h @@ -122,7 +122,7 @@ struct ima_kexec_hdr { extern const int read_idmap[]; #ifdef CONFIG_HAVE_IMA_KEXEC -void ima_load_kexec_buffer(void); +void __init ima_load_kexec_buffer(void); #else static inline void ima_load_kexec_buffer(void) {} #endif /* CONFIG_HAVE_IMA_KEXEC */ @@ -437,7 +437,7 @@ static inline void ima_filter_rule_free(void *lsmrule) { } -static inline int ima_filter_rule_match(strcut lsmblob *blob, u32 field, u32 op, +static inline int ima_filter_rule_match(struct lsmblob *blob, u32 field, u32 op, void *lsmrule) { return -EINVAL; diff --git a/security/integrity/ima/ima_api.c b/security/integrity/ima/ima_api.c index aa27f21444763..cabc4c40d2bc6 100644 --- a/security/integrity/ima/ima_api.c +++ b/security/integrity/ima/ima_api.c @@ -216,6 +216,7 @@ int ima_collect_measurement(struct integrity_iint_cache *iint, { const char *audit_cause = "failed"; struct inode *inode = file_inode(file); + struct inode *real_inode = d_real_inode(file_dentry(file)); const char *filename = file->f_path.dentry->d_name.name; int result = 0; int length; @@ -266,6 +267,10 @@ int ima_collect_measurement(struct integrity_iint_cache *iint, iint->ima_hash = tmpbuf; memcpy(iint->ima_hash, &hash, length); iint->version = i_version; + if (real_inode != inode) { + iint->real_ino = real_inode->i_ino; + iint->real_dev = real_inode->i_sb->s_dev; + } /* Possibly temporary failure due to type of read (eg. O_DIRECT) */ if (!result) diff --git a/security/integrity/ima/ima_kexec.c b/security/integrity/ima/ima_kexec.c index f799cc278a9a8..f3b10851bbbfd 100644 --- a/security/integrity/ima/ima_kexec.c +++ b/security/integrity/ima/ima_kexec.c @@ -137,7 +137,7 @@ void ima_add_kexec_buffer(struct kimage *image) /* * Restore the measurement list from the previous kernel. */ -void ima_load_kexec_buffer(void) +void __init ima_load_kexec_buffer(void) { void *kexec_buffer = NULL; size_t kexec_buffer_size = 0; diff --git a/security/integrity/ima/ima_main.c b/security/integrity/ima/ima_main.c index a732b901fb520..fc5e67c1ce34f 100644 --- a/security/integrity/ima/ima_main.c +++ b/security/integrity/ima/ima_main.c @@ -26,6 +26,7 @@ #include #include #include +#include #include "ima.h" @@ -202,7 +203,7 @@ static int process_measurement(struct file *file, const struct cred *cred, struct lsmblob *blob, char *buf, loff_t size, int mask, enum ima_hooks func) { - struct inode *inode = file_inode(file); + struct inode *backing_inode, *inode = file_inode(file); struct integrity_iint_cache *iint = NULL; struct ima_template_desc *template_desc = NULL; char *pathbuf = NULL; @@ -278,6 +279,19 @@ static int process_measurement(struct file *file, const struct cred *cred, iint->measured_pcrs = 0; } + /* Detect and re-evaluate changes made to the backing file. */ + backing_inode = d_real_inode(file_dentry(file)); + if (backing_inode != inode && + (action & IMA_DO_MASK) && (iint->flags & IMA_DONE_MASK)) { + if (!IS_I_VERSION(backing_inode) || + backing_inode->i_sb->s_dev != iint->real_dev || + backing_inode->i_ino != iint->real_ino || + !inode_eq_iversion(backing_inode, iint->version)) { + iint->flags &= ~IMA_DONE_MASK; + iint->measured_pcrs = 0; + } + } + /* Determine if already appraised/measured based on bitmask * (IMA_MEASURE, IMA_MEASURED, IMA_XXXX_APPRAISE, IMA_XXXX_APPRAISED, * IMA_AUDIT, IMA_AUDITED) diff --git a/security/integrity/integrity.h b/security/integrity/integrity.h index 547425c20e117..06b0cb5ebaf45 100644 --- a/security/integrity/integrity.h +++ b/security/integrity/integrity.h @@ -131,6 +131,8 @@ struct integrity_iint_cache { unsigned long flags; unsigned long measured_pcrs; unsigned long atomic_flags; + unsigned long real_ino; + dev_t real_dev; enum integrity_status ima_file_status:4; enum integrity_status ima_mmap_status:4; enum integrity_status ima_bprm_status:4; diff --git a/security/keys/keyctl.c b/security/keys/keyctl.c index 96a92a645216d..cfb5000876922 100644 --- a/security/keys/keyctl.c +++ b/security/keys/keyctl.c @@ -980,14 +980,19 @@ long keyctl_chown_key(key_serial_t id, uid_t user, gid_t group) ret = -EACCES; down_write(&key->sem); - if (!capable(CAP_SYS_ADMIN)) { + { + bool is_privileged_op = false; + /* only the sysadmin can chown a key to some other UID */ if (user != (uid_t) -1 && !uid_eq(key->uid, uid)) - goto error_put; + is_privileged_op = true; /* only the sysadmin can set the key's GID to a group other * than one of those that the current process subscribes to */ if (group != (gid_t) -1 && !gid_eq(gid, key->gid) && !in_group_p(gid)) + is_privileged_op = true; + + if (is_privileged_op && !capable(CAP_SYS_ADMIN)) goto error_put; } @@ -1088,7 +1093,7 @@ long keyctl_setperm_key(key_serial_t id, key_perm_t perm) down_write(&key->sem); /* if we're not the sysadmin, we can only change a key that we own */ - if (capable(CAP_SYS_ADMIN) || uid_eq(key->uid, current_fsuid())) { + if (uid_eq(key->uid, current_fsuid()) || capable(CAP_SYS_ADMIN)) { key->perm = perm; notify_key(key, NOTIFY_KEY_SETATTR, 0); ret = 0; diff --git a/security/keys/trusted-keys/trusted_core.c b/security/keys/trusted-keys/trusted_core.c index 9b9d3ef79cbe3..a2d301d1a4b31 100644 --- a/security/keys/trusted-keys/trusted_core.c +++ b/security/keys/trusted-keys/trusted_core.c @@ -16,12 +16,17 @@ #include #include #include +#include #include #include #include #include #include +static char *trusted_rng = "default"; +module_param_named(rng, trusted_rng, charp, 0); +MODULE_PARM_DESC(rng, "Select trusted key RNG"); + static char *trusted_key_source; module_param_named(source, trusted_key_source, charp, 0); MODULE_PARM_DESC(source, "Select trusted keys source (tpm or tee)"); @@ -35,13 +40,12 @@ static const struct trusted_key_source trusted_key_sources[] = { #endif }; -DEFINE_STATIC_CALL_NULL(trusted_key_init, *trusted_key_sources[0].ops->init); DEFINE_STATIC_CALL_NULL(trusted_key_seal, *trusted_key_sources[0].ops->seal); DEFINE_STATIC_CALL_NULL(trusted_key_unseal, *trusted_key_sources[0].ops->unseal); DEFINE_STATIC_CALL_NULL(trusted_key_get_random, *trusted_key_sources[0].ops->get_random); -DEFINE_STATIC_CALL_NULL(trusted_key_exit, *trusted_key_sources[0].ops->exit); +static void (*trusted_key_exit)(void); static unsigned char migratable; enum { @@ -312,8 +316,14 @@ struct key_type key_type_trusted = { }; EXPORT_SYMBOL_GPL(key_type_trusted); +static int kernel_get_random(unsigned char *key, size_t key_len) +{ + return get_random_bytes_wait(key, key_len) ?: key_len; +} + static int __init init_trusted(void) { + int (*get_random)(unsigned char *key, size_t key_len); int i, ret = 0; for (i = 0; i < ARRAY_SIZE(trusted_key_sources); i++) { @@ -322,20 +332,39 @@ static int __init init_trusted(void) strlen(trusted_key_sources[i].name))) continue; - static_call_update(trusted_key_init, - trusted_key_sources[i].ops->init); - static_call_update(trusted_key_seal, - trusted_key_sources[i].ops->seal); - static_call_update(trusted_key_unseal, - trusted_key_sources[i].ops->unseal); - static_call_update(trusted_key_get_random, - trusted_key_sources[i].ops->get_random); - static_call_update(trusted_key_exit, - trusted_key_sources[i].ops->exit); - migratable = trusted_key_sources[i].ops->migratable; - - ret = static_call(trusted_key_init)(); - if (!ret) + /* + * We always support trusted.rng="kernel" and "default" as + * well as trusted.rng=$trusted.source if the trust source + * defines its own get_random callback. + */ + get_random = trusted_key_sources[i].ops->get_random; + if (trusted_rng && strcmp(trusted_rng, "default")) { + if (!strcmp(trusted_rng, "kernel")) { + get_random = kernel_get_random; + } else if (strcmp(trusted_rng, trusted_key_sources[i].name) || + !get_random) { + pr_warn("Unsupported RNG. Supported: kernel"); + if (get_random) + pr_cont(", %s", trusted_key_sources[i].name); + pr_cont(", default\n"); + return -EINVAL; + } + } + + if (!get_random) + get_random = kernel_get_random; + + ret = trusted_key_sources[i].ops->init(); + if (!ret) { + static_call_update(trusted_key_seal, trusted_key_sources[i].ops->seal); + static_call_update(trusted_key_unseal, trusted_key_sources[i].ops->unseal); + static_call_update(trusted_key_get_random, get_random); + + trusted_key_exit = trusted_key_sources[i].ops->exit; + migratable = trusted_key_sources[i].ops->migratable; + } + + if (!ret || ret != -ENODEV) break; } @@ -351,7 +380,8 @@ static int __init init_trusted(void) static void __exit cleanup_trusted(void) { - static_call_cond(trusted_key_exit)(); + if (trusted_key_exit) + (*trusted_key_exit)(); } late_initcall(init_trusted); diff --git a/security/smack/smack.h b/security/smack/smack.h index 44fd5bc8ba71c..530c0a1999dba 100644 --- a/security/smack/smack.h +++ b/security/smack/smack.h @@ -120,6 +120,7 @@ struct inode_smack { struct task_smack { struct smack_known *smk_task; /* label for access control */ struct smack_known *smk_forked; /* label when forked */ + struct smack_known *smk_transmuted;/* label when transmuted */ struct list_head smk_rules; /* per task access rules */ struct mutex smk_rules_lock; /* lock for the rules */ struct list_head smk_relabel; /* transit allowed labels */ diff --git a/security/smack/smack_lsm.c b/security/smack/smack_lsm.c index 0d238fe99c172..86d6de7c9b2d3 100644 --- a/security/smack/smack_lsm.c +++ b/security/smack/smack_lsm.c @@ -955,8 +955,9 @@ static int smack_inode_init_security(struct inode *inode, struct inode *dir, const struct qstr *qstr, const char **name, void **value, size_t *len) { + struct task_smack *tsp = smack_cred(current_cred()); struct inode_smack *issp = smack_inode(inode); - struct smack_known *skp = smk_of_current(); + struct smack_known *skp = smk_of_task(tsp); struct smack_known *isp = smk_of_inode(inode); struct smack_known *dsp = smk_of_inode(dir); int may; @@ -965,20 +966,34 @@ static int smack_inode_init_security(struct inode *inode, struct inode *dir, *name = XATTR_SMACK_SUFFIX; if (value && len) { - rcu_read_lock(); - may = smk_access_entry(skp->smk_known, dsp->smk_known, - &skp->smk_rules); - rcu_read_unlock(); + /* + * If equal, transmuting already occurred in + * smack_dentry_create_files_as(). No need to check again. + */ + if (tsp->smk_task != tsp->smk_transmuted) { + rcu_read_lock(); + may = smk_access_entry(skp->smk_known, dsp->smk_known, + &skp->smk_rules); + rcu_read_unlock(); + } /* - * If the access rule allows transmutation and - * the directory requests transmutation then - * by all means transmute. + * In addition to having smk_task equal to smk_transmuted, + * if the access rule allows transmutation and the directory + * requests transmutation then by all means transmute. * Mark the inode as changed. */ - if (may > 0 && ((may & MAY_TRANSMUTE) != 0) && - smk_inode_transmutable(dir)) { - isp = dsp; + if ((tsp->smk_task == tsp->smk_transmuted) || + (may > 0 && ((may & MAY_TRANSMUTE) != 0) && + smk_inode_transmutable(dir))) { + /* + * The caller of smack_dentry_create_files_as() + * should have overridden the current cred, so the + * inode label was already set correctly in + * smack_inode_alloc_security(). + */ + if (tsp->smk_task != tsp->smk_transmuted) + isp = dsp; issp->smk_flags |= SMK_INODE_CHANGED; } @@ -1414,10 +1429,19 @@ static int smack_inode_getsecurity(struct user_namespace *mnt_userns, struct super_block *sbp; struct inode *ip = (struct inode *)inode; struct smack_known *isp; + struct inode_smack *ispp; + size_t label_len; + char *label = NULL; - if (strcmp(name, XATTR_SMACK_SUFFIX) == 0) + if (strcmp(name, XATTR_SMACK_SUFFIX) == 0) { isp = smk_of_inode(inode); - else { + } else if (strcmp(name, XATTR_SMACK_TRANSMUTE) == 0) { + ispp = smack_inode(inode); + if (ispp->smk_flags & SMK_INODE_TRANSMUTE) + label = TRANS_TRUE; + else + label = ""; + } else { /* * The rest of the Smack xattrs are only on sockets. */ @@ -1439,13 +1463,18 @@ static int smack_inode_getsecurity(struct user_namespace *mnt_userns, return -EOPNOTSUPP; } + if (!label) + label = isp->smk_known; + + label_len = strlen(label); + if (alloc) { - *buffer = kstrdup(isp->smk_known, GFP_KERNEL); + *buffer = kstrdup(label, GFP_KERNEL); if (*buffer == NULL) return -ENOMEM; } - return strlen(isp->smk_known); + return label_len; } @@ -4635,7 +4664,7 @@ static int smack_inode_copy_up(struct dentry *dentry, struct cred **new) /* * Get label from overlay inode and set it in create_sid */ - isp = smack_inode(d_inode(dentry->d_parent)); + isp = smack_inode(d_inode(dentry)); skp = isp->smk_inode; tsp->smk_task = skp; *new = new_creds; @@ -4686,8 +4715,10 @@ static int smack_dentry_create_files_as(struct dentry *dentry, int mode, * providing access is transmuting use the containing * directory label instead of the process label. */ - if (may > 0 && (may & MAY_TRANSMUTE)) + if (may > 0 && (may & MAY_TRANSMUTE)) { ntsp->smk_task = isp->smk_inode; + ntsp->smk_transmuted = ntsp->smk_task; + } } return 0; } diff --git a/security/smack/smackfs.c b/security/smack/smackfs.c index 2fbac0c6c3ebe..4c75c8675c389 100644 --- a/security/smack/smackfs.c +++ b/security/smack/smackfs.c @@ -896,7 +896,7 @@ static ssize_t smk_set_cipso(struct file *file, const char __user *buf, } ret = sscanf(rule, "%d", &catlen); - if (ret != 1 || catlen > SMACK_CIPSO_MAXCATNUM) + if (ret != 1 || catlen < 0 || catlen > SMACK_CIPSO_MAXCATNUM) goto out; if (format == SMK_FIXED24_FMT && diff --git a/sound/Kconfig b/sound/Kconfig index e56d96d2b11ca..1903c35d799e1 100644 --- a/sound/Kconfig +++ b/sound/Kconfig @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0-only menuconfig SOUND tristate "Sound card support" - depends on HAS_IOMEM + depends on HAS_IOMEM || UML help If you have a sound card in your computer, i.e. if it can say more than an occasional beep, say Y. diff --git a/sound/core/info.c b/sound/core/info.c index 9f6714e29bbc3..63252abf99981 100644 --- a/sound/core/info.c +++ b/sound/core/info.c @@ -56,7 +56,7 @@ struct snd_info_private_data { }; static int snd_info_version_init(void); -static void snd_info_disconnect(struct snd_info_entry *entry); +static void snd_info_clear_entries(struct snd_info_entry *entry); /* @@ -569,11 +569,16 @@ void snd_info_card_disconnect(struct snd_card *card) { if (!card) return; - mutex_lock(&info_mutex); + proc_remove(card->proc_root_link); - card->proc_root_link = NULL; if (card->proc_root) - snd_info_disconnect(card->proc_root); + proc_remove(card->proc_root->p); + + mutex_lock(&info_mutex); + if (card->proc_root) + snd_info_clear_entries(card->proc_root); + card->proc_root_link = NULL; + card->proc_root = NULL; mutex_unlock(&info_mutex); } @@ -745,15 +750,14 @@ struct snd_info_entry *snd_info_create_card_entry(struct snd_card *card, } EXPORT_SYMBOL(snd_info_create_card_entry); -static void snd_info_disconnect(struct snd_info_entry *entry) +static void snd_info_clear_entries(struct snd_info_entry *entry) { struct snd_info_entry *p; if (!entry->p) return; list_for_each_entry(p, &entry->children, list) - snd_info_disconnect(p); - proc_remove(entry->p); + snd_info_clear_entries(p); entry->p = NULL; } @@ -770,8 +774,9 @@ void snd_info_free_entry(struct snd_info_entry * entry) if (!entry) return; if (entry->p) { + proc_remove(entry->p); mutex_lock(&info_mutex); - snd_info_disconnect(entry); + snd_info_clear_entries(entry); mutex_unlock(&info_mutex); } diff --git a/sound/core/pcm.c b/sound/core/pcm.c index 977d54320a5ca..1ce21677d030b 100644 --- a/sound/core/pcm.c +++ b/sound/core/pcm.c @@ -251,6 +251,7 @@ static const char * const snd_pcm_state_names[] = { STATE(DRAINING), STATE(PAUSED), STATE(SUSPENDED), + STATE(DISCONNECTED), }; static const char * const snd_pcm_access_names[] = { diff --git a/sound/core/pcm_compat.c b/sound/core/pcm_compat.c index dfe5a64e19d2e..7af9fa1331895 100644 --- a/sound/core/pcm_compat.c +++ b/sound/core/pcm_compat.c @@ -253,10 +253,14 @@ static int snd_pcm_ioctl_hw_params_compat(struct snd_pcm_substream *substream, goto error; } - if (refine) + if (refine) { err = snd_pcm_hw_refine(substream, data); - else + if (err < 0) + goto error; + err = fixup_unreferenced_params(substream, data); + } else { err = snd_pcm_hw_params(substream, data); + } if (err < 0) goto error; if (copy_to_user(data32, data, sizeof(*data32)) || diff --git a/sound/core/seq/oss/seq_oss_midi.c b/sound/core/seq/oss/seq_oss_midi.c index 07efb38f58ac1..f2940b29595f0 100644 --- a/sound/core/seq/oss/seq_oss_midi.c +++ b/sound/core/seq/oss/seq_oss_midi.c @@ -37,6 +37,7 @@ struct seq_oss_midi { struct snd_midi_event *coder; /* MIDI event coder */ struct seq_oss_devinfo *devinfo; /* assigned OSSseq device */ snd_use_lock_t use_lock; + struct mutex open_mutex; }; @@ -172,6 +173,7 @@ snd_seq_oss_midi_check_new_port(struct snd_seq_port_info *pinfo) mdev->flags = pinfo->capability; mdev->opened = 0; snd_use_lock_init(&mdev->use_lock); + mutex_init(&mdev->open_mutex); /* copy and truncate the name of synth device */ strscpy(mdev->name, pinfo->name, sizeof(mdev->name)); @@ -322,15 +324,17 @@ snd_seq_oss_midi_open(struct seq_oss_devinfo *dp, int dev, int fmode) int perm; struct seq_oss_midi *mdev; struct snd_seq_port_subscribe subs; + int err; mdev = get_mididev(dp, dev); if (!mdev) return -ENODEV; + mutex_lock(&mdev->open_mutex); /* already used? */ if (mdev->opened && mdev->devinfo != dp) { - snd_use_lock_free(&mdev->use_lock); - return -EBUSY; + err = -EBUSY; + goto unlock; } perm = 0; @@ -340,14 +344,14 @@ snd_seq_oss_midi_open(struct seq_oss_devinfo *dp, int dev, int fmode) perm |= PERM_READ; perm &= mdev->flags; if (perm == 0) { - snd_use_lock_free(&mdev->use_lock); - return -ENXIO; + err = -ENXIO; + goto unlock; } /* already opened? */ if ((mdev->opened & perm) == perm) { - snd_use_lock_free(&mdev->use_lock); - return 0; + err = 0; + goto unlock; } perm &= ~mdev->opened; @@ -372,13 +376,17 @@ snd_seq_oss_midi_open(struct seq_oss_devinfo *dp, int dev, int fmode) } if (! mdev->opened) { - snd_use_lock_free(&mdev->use_lock); - return -ENXIO; + err = -ENXIO; + goto unlock; } mdev->devinfo = dp; + err = 0; + + unlock: + mutex_unlock(&mdev->open_mutex); snd_use_lock_free(&mdev->use_lock); - return 0; + return err; } /* @@ -393,10 +401,9 @@ snd_seq_oss_midi_close(struct seq_oss_devinfo *dp, int dev) mdev = get_mididev(dp, dev); if (!mdev) return -ENODEV; - if (! mdev->opened || mdev->devinfo != dp) { - snd_use_lock_free(&mdev->use_lock); - return 0; - } + mutex_lock(&mdev->open_mutex); + if (!mdev->opened || mdev->devinfo != dp) + goto unlock; memset(&subs, 0, sizeof(subs)); if (mdev->opened & PERM_WRITE) { @@ -415,6 +422,8 @@ snd_seq_oss_midi_close(struct seq_oss_devinfo *dp, int dev) mdev->opened = 0; mdev->devinfo = NULL; + unlock: + mutex_unlock(&mdev->open_mutex); snd_use_lock_free(&mdev->use_lock); return 0; } diff --git a/sound/hda/hdac_stream.c b/sound/hda/hdac_stream.c index eea22cf72aefd..ec95d0449bfe9 100644 --- a/sound/hda/hdac_stream.c +++ b/sound/hda/hdac_stream.c @@ -320,8 +320,10 @@ struct hdac_stream *snd_hdac_stream_assign(struct hdac_bus *bus, struct hdac_stream *res = NULL; /* make a non-zero unique key for the substream */ - int key = (substream->pcm->device << 16) | (substream->number << 2) | - (substream->stream + 1); + int key = (substream->number << 2) | (substream->stream + 1); + + if (substream->pcm) + key |= (substream->pcm->device << 16); spin_lock_irq(&bus->reg_lock); list_for_each_entry(azx_dev, &bus->stream_list, list) { diff --git a/sound/hda/intel-dsp-config.c b/sound/hda/intel-dsp-config.c index 513eadcc38d90..774d80f4b1013 100644 --- a/sound/hda/intel-dsp-config.c +++ b/sound/hda/intel-dsp-config.c @@ -330,6 +330,12 @@ static const struct config_entry config_table[] = { DMI_MATCH(DMI_SYS_VENDOR, "Google"), } }, + { + .ident = "Google firmware", + .matches = { + DMI_MATCH(DMI_BIOS_VERSION, "Google"), + } + }, {} } }, @@ -385,6 +391,14 @@ static const struct config_entry config_table[] = { }, #endif +/* Lunar Lake */ +#if IS_ENABLED(CONFIG_SND_SOC_SOF_LUNARLAKE) + /* Lunarlake-P */ + { + .flags = FLAG_SOF | FLAG_SOF_ONLY_IF_DMIC_OR_SOUNDWIRE, + .device = PCI_DEVICE_ID_INTEL_HDA_LNL_P, + }, +#endif }; static const struct config_entry *snd_intel_dsp_find_config diff --git a/sound/pci/ac97/ac97_codec.c b/sound/pci/ac97/ac97_codec.c index 58ae0c3ce1e49..b81b3c1f76499 100644 --- a/sound/pci/ac97/ac97_codec.c +++ b/sound/pci/ac97/ac97_codec.c @@ -2070,10 +2070,9 @@ int snd_ac97_mixer(struct snd_ac97_bus *bus, struct snd_ac97_template *template, .dev_disconnect = snd_ac97_dev_disconnect, }; - if (!rac97) - return -EINVAL; - if (snd_BUG_ON(!bus || !template)) + if (snd_BUG_ON(!bus || !template || !rac97)) return -EINVAL; + *rac97 = NULL; if (snd_BUG_ON(template->num >= 4)) return -EINVAL; if (bus->codec[template->num]) diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index 1750223384fad..0ec89c8d5f46c 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c @@ -2203,12 +2203,15 @@ static const struct snd_pci_quirk power_save_denylist[] = { SND_PCI_QUIRK(0x8086, 0x2068, "Intel NUC7i3BNB", 0), /* https://bugzilla.kernel.org/show_bug.cgi?id=198611 */ SND_PCI_QUIRK(0x17aa, 0x2227, "Lenovo X1 Carbon 3rd Gen", 0), + SND_PCI_QUIRK(0x17aa, 0x316e, "Lenovo ThinkCentre M70q", 0), /* https://bugzilla.redhat.com/show_bug.cgi?id=1689623 */ SND_PCI_QUIRK(0x17aa, 0x367b, "Lenovo IdeaCentre B550", 0), /* https://bugzilla.redhat.com/show_bug.cgi?id=1572975 */ SND_PCI_QUIRK(0x17aa, 0x36a7, "Lenovo C50 All in one", 0), /* https://bugs.launchpad.net/bugs/1821663 */ SND_PCI_QUIRK(0x1631, 0xe017, "Packard Bell NEC IMEDIA 5204", 0), + /* KONTRON SinglePC may cause a stall at runtime resume */ + SND_PCI_QUIRK(0x1734, 0x1232, "KONTRON SinglePC", 0), {} }; #endif /* CONFIG_PM */ diff --git a/sound/pci/hda/patch_cs8409.c b/sound/pci/hda/patch_cs8409.c index 8efc4ee49b7c9..61f8e2167318b 100644 --- a/sound/pci/hda/patch_cs8409.c +++ b/sound/pci/hda/patch_cs8409.c @@ -1369,6 +1369,7 @@ void dolphin_fixups(struct hda_codec *codec, const struct hda_fixup *fix, int ac spec->scodecs[CS8409_CODEC1] = &dolphin_cs42l42_1; spec->scodecs[CS8409_CODEC1]->codec = codec; spec->num_scodecs = 2; + spec->gen.suppress_vmaster = 1; codec->patch_ops = cs8409_dolphin_patch_ops; diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 96c270aa41953..a55e2d99256e1 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -1985,6 +1985,7 @@ enum { ALC887_FIXUP_ASUS_AUDIO, ALC887_FIXUP_ASUS_HMIC, ALCS1200A_FIXUP_MIC_VREF, + ALC888VD_FIXUP_MIC_100VREF, }; static void alc889_fixup_coef(struct hda_codec *codec, @@ -2538,6 +2539,13 @@ static const struct hda_fixup alc882_fixups[] = { {} } }, + [ALC888VD_FIXUP_MIC_100VREF] = { + .type = HDA_FIXUP_PINCTLS, + .v.pins = (const struct hda_pintbl[]) { + { 0x18, PIN_VREF100 }, /* headset mic */ + {} + } + }, }; static const struct snd_pci_quirk alc882_fixup_tbl[] = { @@ -2607,6 +2615,7 @@ static const struct snd_pci_quirk alc882_fixup_tbl[] = { SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF), SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD), + SND_PCI_QUIRK(0x10ec, 0x12d8, "iBase Elo Touch", ALC888VD_FIXUP_MIC_100VREF), SND_PCI_QUIRK(0x13fe, 0x1009, "Advantech MIT-W101", ALC886_FIXUP_EAPD), SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE), SND_PCI_QUIRK(0x1458, 0xa0b8, "Gigabyte AZ370-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS), @@ -3254,6 +3263,7 @@ static void alc_disable_headset_jack_key(struct hda_codec *codec) case 0x10ec0230: case 0x10ec0236: case 0x10ec0256: + case 0x10ec0257: case 0x19e58326: alc_write_coef_idx(codec, 0x48, 0x0); alc_update_coef_idx(codec, 0x49, 0x0045, 0x0); @@ -3283,6 +3293,7 @@ static void alc_enable_headset_jack_key(struct hda_codec *codec) case 0x10ec0230: case 0x10ec0236: case 0x10ec0256: + case 0x10ec0257: case 0x19e58326: alc_write_coef_idx(codec, 0x48, 0xd011); alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045); @@ -6477,6 +6488,7 @@ static void alc_combo_jack_hp_jd_restart(struct hda_codec *codec) case 0x10ec0236: case 0x10ec0255: case 0x10ec0256: + case 0x10ec0257: case 0x19e58326: alc_update_coef_idx(codec, 0x1b, 0x8000, 1 << 15); /* Reset HP JD */ alc_update_coef_idx(codec, 0x1b, 0x8000, 0 << 15); @@ -9342,6 +9354,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = { SND_PCI_QUIRK(0x1043, 0x10a1, "ASUS UX391UA", ALC294_FIXUP_ASUS_SPK), SND_PCI_QUIRK(0x1043, 0x10c0, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC), SND_PCI_QUIRK(0x1043, 0x10d0, "ASUS X540LA/X540LJ", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE), + SND_PCI_QUIRK(0x1043, 0x10d3, "ASUS K6500ZC", ALC294_FIXUP_ASUS_SPK), SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), SND_PCI_QUIRK(0x1043, 0x11c0, "ASUS X556UR", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1043, 0x125e, "ASUS Q524UQK", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE), @@ -10205,22 +10218,6 @@ static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = { {0x12, 0x90a60130}, {0x17, 0x90170110}, {0x21, 0x03211020}), - SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, - {0x14, 0x90170110}, - {0x21, 0x04211020}), - SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, - {0x14, 0x90170110}, - {0x21, 0x04211030}), - SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, - ALC295_STANDARD_PINS, - {0x17, 0x21014020}, - {0x18, 0x21a19030}), - SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, - ALC295_STANDARD_PINS, - {0x17, 0x21014040}, - {0x18, 0x21a19050}), - SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, - ALC295_STANDARD_PINS), SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, ALC298_STANDARD_PINS, {0x17, 0x90170110}), @@ -10264,6 +10261,9 @@ static const struct snd_hda_pin_quirk alc269_fallback_pin_fixup_tbl[] = { SND_HDA_PIN_QUIRK(0x10ec0289, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, {0x19, 0x40000000}, {0x1b, 0x40000000}), + SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, + {0x19, 0x40000000}, + {0x1b, 0x40000000}), SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, {0x19, 0x40000000}, {0x1a, 0x40000000}), @@ -11559,6 +11559,7 @@ static const struct snd_pci_quirk alc662_fixup_tbl[] = { SND_PCI_QUIRK(0x17aa, 0x32f7, "Lenovo ThinkCentre M90", ALC897_FIXUP_HEADSET_MIC_PIN), SND_PCI_QUIRK(0x17aa, 0x3321, "Lenovo ThinkCentre M70 Gen4", ALC897_FIXUP_HEADSET_MIC_PIN), SND_PCI_QUIRK(0x17aa, 0x331b, "Lenovo ThinkCentre M90 Gen4", ALC897_FIXUP_HEADSET_MIC_PIN), + SND_PCI_QUIRK(0x17aa, 0x3364, "Lenovo ThinkCentre M90 Gen5", ALC897_FIXUP_HEADSET_MIC_PIN), SND_PCI_QUIRK(0x17aa, 0x3742, "Lenovo TianYi510Pro-14IOB", ALC897_FIXUP_HEADSET_MIC_PIN2), SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD), SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD), diff --git a/sound/soc/atmel/atmel-i2s.c b/sound/soc/atmel/atmel-i2s.c index 6b3d9c05eaf27..4cb0605f6daa2 100644 --- a/sound/soc/atmel/atmel-i2s.c +++ b/sound/soc/atmel/atmel-i2s.c @@ -163,11 +163,14 @@ struct atmel_i2s_gck_param { #define I2S_MCK_12M288 12288000UL #define I2S_MCK_11M2896 11289600UL +#define I2S_MCK_6M144 6144000UL /* mck = (32 * (imckfs+1) / (imckdiv+1)) * fs */ static const struct atmel_i2s_gck_param gck_params[] = { + /* mck = 6.144Mhz */ + { 8000, I2S_MCK_6M144, 1, 47}, /* mck = 768 fs */ + /* mck = 12.288MHz */ - { 8000, I2S_MCK_12M288, 0, 47}, /* mck = 1536 fs */ { 16000, I2S_MCK_12M288, 1, 47}, /* mck = 768 fs */ { 24000, I2S_MCK_12M288, 3, 63}, /* mck = 512 fs */ { 32000, I2S_MCK_12M288, 3, 47}, /* mck = 384 fs */ diff --git a/sound/soc/codecs/Kconfig b/sound/soc/codecs/Kconfig index e395771c7bb7b..5c582a7ba6e10 100644 --- a/sound/soc/codecs/Kconfig +++ b/sound/soc/codecs/Kconfig @@ -1409,6 +1409,7 @@ config SND_SOC_STA529 config SND_SOC_STAC9766 tristate depends on SND_SOC_AC97_BUS + select REGMAP_AC97 config SND_SOC_STI_SAS tristate "codec Audio support for STI SAS codec" diff --git a/sound/soc/codecs/da7219-aad.c b/sound/soc/codecs/da7219-aad.c index 7998fdd3b378e..7d18de959439f 100644 --- a/sound/soc/codecs/da7219-aad.c +++ b/sound/soc/codecs/da7219-aad.c @@ -347,11 +347,15 @@ static irqreturn_t da7219_aad_irq_thread(int irq, void *data) struct da7219_priv *da7219 = snd_soc_component_get_drvdata(component); u8 events[DA7219_AAD_IRQ_REG_MAX]; u8 statusa; - int i, report = 0, mask = 0; + int i, ret, report = 0, mask = 0; /* Read current IRQ events */ - regmap_bulk_read(da7219->regmap, DA7219_ACCDET_IRQ_EVENT_A, - events, DA7219_AAD_IRQ_REG_MAX); + ret = regmap_bulk_read(da7219->regmap, DA7219_ACCDET_IRQ_EVENT_A, + events, DA7219_AAD_IRQ_REG_MAX); + if (ret) { + dev_warn_ratelimited(component->dev, "Failed to read IRQ events: %d\n", ret); + return IRQ_NONE; + } if (!events[DA7219_AAD_IRQ_REG_A] && !events[DA7219_AAD_IRQ_REG_B]) return IRQ_NONE; @@ -854,6 +858,8 @@ void da7219_aad_suspend(struct snd_soc_component *component) } } } + + synchronize_irq(da7219_aad->irq); } void da7219_aad_resume(struct snd_soc_component *component) diff --git a/sound/soc/codecs/es8316.c b/sound/soc/codecs/es8316.c index b36ccfc54cd69..93549f8ee130c 100644 --- a/sound/soc/codecs/es8316.c +++ b/sound/soc/codecs/es8316.c @@ -153,7 +153,7 @@ static const char * const es8316_dmic_txt[] = { "dmic data at high level", "dmic data at low level", }; -static const unsigned int es8316_dmic_values[] = { 0, 1, 2 }; +static const unsigned int es8316_dmic_values[] = { 0, 2, 3 }; static const struct soc_enum es8316_dmic_src_enum = SOC_VALUE_ENUM_SINGLE(ES8316_ADC_DMIC, 0, 3, ARRAY_SIZE(es8316_dmic_txt), diff --git a/sound/soc/codecs/hdmi-codec.c b/sound/soc/codecs/hdmi-codec.c index b07607a9ecea4..0a7e2f8ca71af 100644 --- a/sound/soc/codecs/hdmi-codec.c +++ b/sound/soc/codecs/hdmi-codec.c @@ -870,18 +870,13 @@ static int hdmi_codec_set_jack(struct snd_soc_component *component, void *data) { struct hdmi_codec_priv *hcp = snd_soc_component_get_drvdata(component); - int ret = -ENOTSUPP; if (hcp->hcd.ops->hook_plugged_cb) { hcp->jack = jack; - ret = hcp->hcd.ops->hook_plugged_cb(component->dev->parent, - hcp->hcd.data, - plugged_cb, - component->dev); - if (ret) - hcp->jack = NULL; + return 0; } - return ret; + + return -ENOTSUPP; } static int hdmi_dai_spdif_probe(struct snd_soc_dai *dai) @@ -965,6 +960,21 @@ static int hdmi_of_xlate_dai_id(struct snd_soc_component *component, return ret; } +static int hdmi_probe(struct snd_soc_component *component) +{ + struct hdmi_codec_priv *hcp = snd_soc_component_get_drvdata(component); + int ret = 0; + + if (hcp->hcd.ops->hook_plugged_cb) { + ret = hcp->hcd.ops->hook_plugged_cb(component->dev->parent, + hcp->hcd.data, + plugged_cb, + component->dev); + } + + return ret; +} + static void hdmi_remove(struct snd_soc_component *component) { struct hdmi_codec_priv *hcp = snd_soc_component_get_drvdata(component); @@ -975,6 +985,7 @@ static void hdmi_remove(struct snd_soc_component *component) } static const struct snd_soc_component_driver hdmi_driver = { + .probe = hdmi_probe, .remove = hdmi_remove, .dapm_widgets = hdmi_widgets, .num_dapm_widgets = ARRAY_SIZE(hdmi_widgets), diff --git a/sound/soc/codecs/lpass-wsa-macro.c b/sound/soc/codecs/lpass-wsa-macro.c index dd1a8b7bc794c..8973f439123f7 100644 --- a/sound/soc/codecs/lpass-wsa-macro.c +++ b/sound/soc/codecs/lpass-wsa-macro.c @@ -1678,6 +1678,9 @@ static int wsa_macro_spk_boost_event(struct snd_soc_dapm_widget *w, boost_path_cfg1 = CDC_WSA_RX1_RX_PATH_CFG1; reg = CDC_WSA_RX1_RX_PATH_CTL; reg_mix = CDC_WSA_RX1_RX_PATH_MIX_CTL; + } else { + dev_warn(component->dev, "Incorrect widget name in the driver\n"); + return -EINVAL; } switch (event) { diff --git a/sound/soc/codecs/rt5645.c b/sound/soc/codecs/rt5645.c index 8ea6d43335626..385f2cca939a0 100644 --- a/sound/soc/codecs/rt5645.c +++ b/sound/soc/codecs/rt5645.c @@ -3251,6 +3251,8 @@ int rt5645_set_jack_detect(struct snd_soc_component *component, RT5645_GP1_PIN_IRQ, RT5645_GP1_PIN_IRQ); regmap_update_bits(rt5645->regmap, RT5645_GEN_CTRL1, RT5645_DIG_GATE_CTRL, RT5645_DIG_GATE_CTRL); + regmap_update_bits(rt5645->regmap, RT5645_DEPOP_M1, + RT5645_HP_CB_MASK, RT5645_HP_CB_PU); } rt5645_irq(0, rt5645); diff --git a/sound/soc/codecs/rt5682-sdw.c b/sound/soc/codecs/rt5682-sdw.c index f04e18c32489d..9fdd9afe00da4 100644 --- a/sound/soc/codecs/rt5682-sdw.c +++ b/sound/soc/codecs/rt5682-sdw.c @@ -786,8 +786,15 @@ static int __maybe_unused rt5682_dev_resume(struct device *dev) if (!rt5682->first_hw_init) return 0; - if (!slave->unattach_request) + if (!slave->unattach_request) { + if (rt5682->disable_irq == true) { + mutex_lock(&rt5682->disable_irq_lock); + sdw_write_no_pm(slave, SDW_SCP_INTMASK1, SDW_SCP_INT1_IMPL_DEF); + rt5682->disable_irq = false; + mutex_unlock(&rt5682->disable_irq_lock); + } goto regmap_sync; + } time = wait_for_completion_timeout(&slave->initialization_complete, msecs_to_jiffies(RT5682_PROBE_TIMEOUT)); diff --git a/sound/soc/codecs/rt711-sdca-sdw.c b/sound/soc/codecs/rt711-sdca-sdw.c index 31e77d462ef34..4faf6b8544ddd 100644 --- a/sound/soc/codecs/rt711-sdca-sdw.c +++ b/sound/soc/codecs/rt711-sdca-sdw.c @@ -442,8 +442,16 @@ static int __maybe_unused rt711_sdca_dev_resume(struct device *dev) if (!rt711->first_hw_init) return 0; - if (!slave->unattach_request) + if (!slave->unattach_request) { + if (rt711->disable_irq == true) { + mutex_lock(&rt711->disable_irq_lock); + sdw_write_no_pm(slave, SDW_SCP_SDCA_INTMASK1, SDW_SCP_SDCA_INTMASK_SDCA_0); + sdw_write_no_pm(slave, SDW_SCP_SDCA_INTMASK2, SDW_SCP_SDCA_INTMASK_SDCA_8); + rt711->disable_irq = false; + mutex_unlock(&rt711->disable_irq_lock); + } goto regmap_sync; + } time = wait_for_completion_timeout(&slave->initialization_complete, msecs_to_jiffies(RT711_PROBE_TIMEOUT)); diff --git a/sound/soc/codecs/rt711-sdw.c b/sound/soc/codecs/rt711-sdw.c index 4fe68bcf2a7c2..9545b8a7eb192 100644 --- a/sound/soc/codecs/rt711-sdw.c +++ b/sound/soc/codecs/rt711-sdw.c @@ -541,8 +541,15 @@ static int __maybe_unused rt711_dev_resume(struct device *dev) if (!rt711->first_hw_init) return 0; - if (!slave->unattach_request) + if (!slave->unattach_request) { + if (rt711->disable_irq == true) { + mutex_lock(&rt711->disable_irq_lock); + sdw_write_no_pm(slave, SDW_SCP_INTMASK1, SDW_SCP_INT1_IMPL_DEF); + rt711->disable_irq = false; + mutex_unlock(&rt711->disable_irq_lock); + } goto regmap_sync; + } time = wait_for_completion_timeout(&slave->initialization_complete, msecs_to_jiffies(RT711_PROBE_TIMEOUT)); diff --git a/sound/soc/codecs/wcd938x-sdw.c b/sound/soc/codecs/wcd938x-sdw.c index 1fa05ec7459a7..84a67bd98dc05 100644 --- a/sound/soc/codecs/wcd938x-sdw.c +++ b/sound/soc/codecs/wcd938x-sdw.c @@ -266,7 +266,31 @@ static int wcd9380_probe(struct sdw_slave *pdev, pm_runtime_set_active(dev); pm_runtime_enable(dev); - return component_add(dev, &wcd938x_sdw_component_ops); + ret = component_add(dev, &wcd938x_sdw_component_ops); + if (ret) + goto err_disable_rpm; + + return 0; + +err_disable_rpm: + pm_runtime_disable(dev); + pm_runtime_set_suspended(dev); + pm_runtime_dont_use_autosuspend(dev); + + return ret; +} + +static int wcd9380_remove(struct sdw_slave *pdev) +{ + struct device *dev = &pdev->dev; + + component_del(dev, &wcd938x_sdw_component_ops); + + pm_runtime_disable(dev); + pm_runtime_set_suspended(dev); + pm_runtime_dont_use_autosuspend(dev); + + return 0; } static const struct sdw_device_id wcd9380_slave_id[] = { @@ -307,6 +331,7 @@ static const struct dev_pm_ops wcd938x_sdw_pm_ops = { static struct sdw_driver wcd9380_codec_driver = { .probe = wcd9380_probe, + .remove = wcd9380_remove, .ops = &wcd9380_slave_ops, .id_table = wcd9380_slave_id, .driver = { diff --git a/sound/soc/codecs/wcd938x.c b/sound/soc/codecs/wcd938x.c index 8a7c8e81cba58..529aa480267b9 100644 --- a/sound/soc/codecs/wcd938x.c +++ b/sound/soc/codecs/wcd938x.c @@ -4411,7 +4411,8 @@ static int wcd938x_bind(struct device *dev) wcd938x->rxdev = wcd938x_sdw_device_get(wcd938x->rxnode); if (!wcd938x->rxdev) { dev_err(dev, "could not find slave with matching of node\n"); - return -EINVAL; + ret = -EINVAL; + goto err_unbind; } wcd938x->sdw_priv[AIF1_PB] = dev_get_drvdata(wcd938x->rxdev); wcd938x->sdw_priv[AIF1_PB]->wcd938x = wcd938x; @@ -4419,46 +4420,47 @@ static int wcd938x_bind(struct device *dev) wcd938x->txdev = wcd938x_sdw_device_get(wcd938x->txnode); if (!wcd938x->txdev) { dev_err(dev, "could not find txslave with matching of node\n"); - return -EINVAL; + ret = -EINVAL; + goto err_put_rxdev; } wcd938x->sdw_priv[AIF1_CAP] = dev_get_drvdata(wcd938x->txdev); wcd938x->sdw_priv[AIF1_CAP]->wcd938x = wcd938x; wcd938x->tx_sdw_dev = dev_to_sdw_dev(wcd938x->txdev); - if (!wcd938x->tx_sdw_dev) { - dev_err(dev, "could not get txslave with matching of dev\n"); - return -EINVAL; - } /* As TX is main CSR reg interface, which should not be suspended first. * expicilty add the dependency link */ if (!device_link_add(wcd938x->rxdev, wcd938x->txdev, DL_FLAG_STATELESS | DL_FLAG_PM_RUNTIME)) { dev_err(dev, "could not devlink tx and rx\n"); - return -EINVAL; + ret = -EINVAL; + goto err_put_txdev; } if (!device_link_add(dev, wcd938x->txdev, DL_FLAG_STATELESS | DL_FLAG_PM_RUNTIME)) { dev_err(dev, "could not devlink wcd and tx\n"); - return -EINVAL; + ret = -EINVAL; + goto err_remove_rxtx_link; } if (!device_link_add(dev, wcd938x->rxdev, DL_FLAG_STATELESS | DL_FLAG_PM_RUNTIME)) { dev_err(dev, "could not devlink wcd and rx\n"); - return -EINVAL; + ret = -EINVAL; + goto err_remove_tx_link; } wcd938x->regmap = devm_regmap_init_sdw(wcd938x->tx_sdw_dev, &wcd938x_regmap_config); if (IS_ERR(wcd938x->regmap)) { dev_err(dev, "%s: tx csr regmap not found\n", __func__); - return PTR_ERR(wcd938x->regmap); + ret = PTR_ERR(wcd938x->regmap); + goto err_remove_rx_link; } ret = wcd938x_irq_init(wcd938x, dev); if (ret) { dev_err(dev, "%s: IRQ init failed: %d\n", __func__, ret); - return ret; + goto err_remove_rx_link; } wcd938x->sdw_priv[AIF1_PB]->slave_irq = wcd938x->virq; @@ -4467,27 +4469,45 @@ static int wcd938x_bind(struct device *dev) ret = wcd938x_set_micbias_data(wcd938x); if (ret < 0) { dev_err(dev, "%s: bad micbias pdata\n", __func__); - return ret; + goto err_remove_rx_link; } ret = snd_soc_register_component(dev, &soc_codec_dev_wcd938x, wcd938x_dais, ARRAY_SIZE(wcd938x_dais)); - if (ret) + if (ret) { dev_err(dev, "%s: Codec registration failed\n", __func__); + goto err_remove_rx_link; + } - return ret; + return 0; +err_remove_rx_link: + device_link_remove(dev, wcd938x->rxdev); +err_remove_tx_link: + device_link_remove(dev, wcd938x->txdev); +err_remove_rxtx_link: + device_link_remove(wcd938x->rxdev, wcd938x->txdev); +err_put_txdev: + put_device(wcd938x->txdev); +err_put_rxdev: + put_device(wcd938x->rxdev); +err_unbind: + component_unbind_all(dev, wcd938x); + + return ret; } static void wcd938x_unbind(struct device *dev) { struct wcd938x_priv *wcd938x = dev_get_drvdata(dev); + snd_soc_unregister_component(dev); device_link_remove(dev, wcd938x->txdev); device_link_remove(dev, wcd938x->rxdev); device_link_remove(wcd938x->rxdev, wcd938x->txdev); - snd_soc_unregister_component(dev); + put_device(wcd938x->txdev); + put_device(wcd938x->rxdev); component_unbind_all(dev, wcd938x); } @@ -4578,7 +4598,13 @@ static int wcd938x_probe(struct platform_device *pdev) static int wcd938x_remove(struct platform_device *pdev) { - component_master_del(&pdev->dev, &wcd938x_comp_ops); + struct device *dev = &pdev->dev; + + component_master_del(dev, &wcd938x_comp_ops); + + pm_runtime_disable(dev); + pm_runtime_set_suspended(dev); + pm_runtime_dont_use_autosuspend(dev); return 0; } diff --git a/sound/soc/codecs/wm_adsp.c b/sound/soc/codecs/wm_adsp.c index 08fc1a025b1a9..df86cf4f4caed 100644 --- a/sound/soc/codecs/wm_adsp.c +++ b/sound/soc/codecs/wm_adsp.c @@ -3766,12 +3766,12 @@ static int wm_adsp_buffer_populate(struct wm_adsp_compr_buf *buf) ret = wm_adsp_buffer_read(buf, caps->region_defs[i].base_offset, ®ion->base_addr); if (ret < 0) - return ret; + goto err; ret = wm_adsp_buffer_read(buf, caps->region_defs[i].size_offset, &offset); if (ret < 0) - return ret; + goto err; region->cumulative_size = offset; @@ -3782,6 +3782,10 @@ static int wm_adsp_buffer_populate(struct wm_adsp_compr_buf *buf) } return 0; + +err: + kfree(buf->regions); + return ret; } static void wm_adsp_buffer_clear(struct wm_adsp_compr_buf *buf) diff --git a/sound/soc/fsl/fsl_easrc.c b/sound/soc/fsl/fsl_easrc.c index cf0e10d17dbe3..c7ff48208d005 100644 --- a/sound/soc/fsl/fsl_easrc.c +++ b/sound/soc/fsl/fsl_easrc.c @@ -1965,17 +1965,21 @@ static int fsl_easrc_probe(struct platform_device *pdev) &fsl_easrc_dai, 1); if (ret) { dev_err(dev, "failed to register ASoC DAI\n"); - return ret; + goto err_pm_disable; } ret = devm_snd_soc_register_component(dev, &fsl_asrc_component, NULL, 0); if (ret) { dev_err(&pdev->dev, "failed to register ASoC platform\n"); - return ret; + goto err_pm_disable; } return 0; + +err_pm_disable: + pm_runtime_disable(&pdev->dev); + return ret; } static int fsl_easrc_remove(struct platform_device *pdev) diff --git a/sound/soc/fsl/imx-audmix.c b/sound/soc/fsl/imx-audmix.c index d991e457060c7..0363255c39ea9 100644 --- a/sound/soc/fsl/imx-audmix.c +++ b/sound/soc/fsl/imx-audmix.c @@ -320,7 +320,7 @@ static int imx_audmix_probe(struct platform_device *pdev) if (IS_ERR(priv->cpu_mclk)) { ret = PTR_ERR(priv->cpu_mclk); dev_err(&cpu_pdev->dev, "failed to get DAI mclk1: %d\n", ret); - return -EINVAL; + return ret; } priv->audmix_pdev = audmix_pdev; diff --git a/sound/soc/fsl/imx-pcm-rpmsg.c b/sound/soc/fsl/imx-pcm-rpmsg.c index 35049043e5322..933bac7ea1864 100644 --- a/sound/soc/fsl/imx-pcm-rpmsg.c +++ b/sound/soc/fsl/imx-pcm-rpmsg.c @@ -19,6 +19,7 @@ static struct snd_pcm_hardware imx_rpmsg_pcm_hardware = { .info = SNDRV_PCM_INFO_INTERLEAVED | SNDRV_PCM_INFO_BLOCK_TRANSFER | + SNDRV_PCM_INFO_BATCH | SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_MMAP_VALID | SNDRV_PCM_INFO_NO_PERIOD_WAKEUP | diff --git a/sound/soc/fsl/imx-rpmsg.c b/sound/soc/fsl/imx-rpmsg.c index f96fe4ff8425b..d208b05051fd5 100644 --- a/sound/soc/fsl/imx-rpmsg.c +++ b/sound/soc/fsl/imx-rpmsg.c @@ -66,6 +66,14 @@ static int imx_rpmsg_probe(struct platform_device *pdev) SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBS_CFS; + /* + * i.MX rpmsg sound cards work on codec slave mode. MCLK will be + * disabled by CPU DAI driver in hw_free(). Some codec requires MCLK + * present at power up/down sequence. So need to set ignore_pmdown_time + * to power down codec immediately before MCLK is turned off. + */ + data->dai.ignore_pmdown_time = 1; + /* Optional codec node */ ret = of_parse_phandle_with_fixed_args(np, "audio-codec", 0, 0, &args); if (ret) { diff --git a/sound/soc/fsl/mpc5200_dma.c b/sound/soc/fsl/mpc5200_dma.c index 9014978100207..3f7ccae3f6b1a 100644 --- a/sound/soc/fsl/mpc5200_dma.c +++ b/sound/soc/fsl/mpc5200_dma.c @@ -100,6 +100,9 @@ static irqreturn_t psc_dma_bcom_irq(int irq, void *_psc_dma_stream) /** * psc_dma_trigger: start and stop the DMA transfer. + * @component: triggered component + * @substream: triggered substream + * @cmd: triggered command * * This function is called by ALSA to start, stop, pause, and resume the DMA * transfer of data. diff --git a/sound/soc/generic/simple-card.c b/sound/soc/generic/simple-card.c index 283aa21879aa5..95e4c53cd90c7 100644 --- a/sound/soc/generic/simple-card.c +++ b/sound/soc/generic/simple-card.c @@ -680,10 +680,12 @@ static int asoc_simple_probe(struct platform_device *pdev) struct snd_soc_dai_link *dai_link = priv->dai_link; struct simple_dai_props *dai_props = priv->dai_props; + ret = -EINVAL; + cinfo = dev->platform_data; if (!cinfo) { dev_err(dev, "no info for asoc-simple-card\n"); - return -EINVAL; + goto err; } if (!cinfo->name || @@ -692,7 +694,7 @@ static int asoc_simple_probe(struct platform_device *pdev) !cinfo->platform || !cinfo->cpu_dai.name) { dev_err(dev, "insufficient asoc_simple_card_info settings\n"); - return -EINVAL; + goto err; } cpus = dai_link->cpus; diff --git a/sound/soc/intel/common/soc-intel-quirks.h b/sound/soc/intel/common/soc-intel-quirks.h index a93987ab7f4d7..de4e550c5b34d 100644 --- a/sound/soc/intel/common/soc-intel-quirks.h +++ b/sound/soc/intel/common/soc-intel-quirks.h @@ -9,34 +9,13 @@ #ifndef _SND_SOC_INTEL_QUIRKS_H #define _SND_SOC_INTEL_QUIRKS_H +#include + #if IS_ENABLED(CONFIG_X86) #include -#include -#include #include -#define SOC_INTEL_IS_CPU(soc, type) \ -static inline bool soc_intel_is_##soc(void) \ -{ \ - static const struct x86_cpu_id soc##_cpu_ids[] = { \ - X86_MATCH_INTEL_FAM6_MODEL(type, NULL), \ - {} \ - }; \ - const struct x86_cpu_id *id; \ - \ - id = x86_match_cpu(soc##_cpu_ids); \ - if (id) \ - return true; \ - return false; \ -} - -SOC_INTEL_IS_CPU(byt, ATOM_SILVERMONT); -SOC_INTEL_IS_CPU(cht, ATOM_AIRMONT); -SOC_INTEL_IS_CPU(apl, ATOM_GOLDMONT); -SOC_INTEL_IS_CPU(glk, ATOM_GOLDMONT_PLUS); -SOC_INTEL_IS_CPU(cml, KABYLAKE_L); - static inline bool soc_intel_is_byt_cr(struct platform_device *pdev) { /* @@ -114,30 +93,6 @@ static inline bool soc_intel_is_byt_cr(struct platform_device *pdev) return false; } -static inline bool soc_intel_is_byt(void) -{ - return false; -} - -static inline bool soc_intel_is_cht(void) -{ - return false; -} - -static inline bool soc_intel_is_apl(void) -{ - return false; -} - -static inline bool soc_intel_is_glk(void) -{ - return false; -} - -static inline bool soc_intel_is_cml(void) -{ - return false; -} #endif - #endif /* _SND_SOC_INTEL_QUIRKS_H */ +#endif /* _SND_SOC_INTEL_QUIRKS_H */ diff --git a/sound/soc/intel/skylake/skl-sst-utils.c b/sound/soc/intel/skylake/skl-sst-utils.c index 57ea815d3f041..b776c58dcf47a 100644 --- a/sound/soc/intel/skylake/skl-sst-utils.c +++ b/sound/soc/intel/skylake/skl-sst-utils.c @@ -299,6 +299,7 @@ int snd_skl_parse_uuids(struct sst_dsp *ctx, const struct firmware *fw, module->instance_id = devm_kzalloc(ctx->dev, size, GFP_KERNEL); if (!module->instance_id) { ret = -ENOMEM; + kfree(module); goto free_uuid_list; } diff --git a/sound/soc/meson/axg-spdifin.c b/sound/soc/meson/axg-spdifin.c index d0d09f945b489..7aaded1fc376b 100644 --- a/sound/soc/meson/axg-spdifin.c +++ b/sound/soc/meson/axg-spdifin.c @@ -112,34 +112,6 @@ static int axg_spdifin_prepare(struct snd_pcm_substream *substream, return 0; } -static int axg_spdifin_startup(struct snd_pcm_substream *substream, - struct snd_soc_dai *dai) -{ - struct axg_spdifin *priv = snd_soc_dai_get_drvdata(dai); - int ret; - - ret = clk_prepare_enable(priv->refclk); - if (ret) { - dev_err(dai->dev, - "failed to enable spdifin reference clock\n"); - return ret; - } - - regmap_update_bits(priv->map, SPDIFIN_CTRL0, SPDIFIN_CTRL0_EN, - SPDIFIN_CTRL0_EN); - - return 0; -} - -static void axg_spdifin_shutdown(struct snd_pcm_substream *substream, - struct snd_soc_dai *dai) -{ - struct axg_spdifin *priv = snd_soc_dai_get_drvdata(dai); - - regmap_update_bits(priv->map, SPDIFIN_CTRL0, SPDIFIN_CTRL0_EN, 0); - clk_disable_unprepare(priv->refclk); -} - static void axg_spdifin_write_mode_param(struct regmap *map, int mode, unsigned int val, unsigned int num_per_reg, @@ -251,25 +223,38 @@ static int axg_spdifin_dai_probe(struct snd_soc_dai *dai) ret = axg_spdifin_sample_mode_config(dai, priv); if (ret) { dev_err(dai->dev, "mode configuration failed\n"); - clk_disable_unprepare(priv->pclk); - return ret; + goto pclk_err; } + ret = clk_prepare_enable(priv->refclk); + if (ret) { + dev_err(dai->dev, + "failed to enable spdifin reference clock\n"); + goto pclk_err; + } + + regmap_update_bits(priv->map, SPDIFIN_CTRL0, SPDIFIN_CTRL0_EN, + SPDIFIN_CTRL0_EN); + return 0; + +pclk_err: + clk_disable_unprepare(priv->pclk); + return ret; } static int axg_spdifin_dai_remove(struct snd_soc_dai *dai) { struct axg_spdifin *priv = snd_soc_dai_get_drvdata(dai); + regmap_update_bits(priv->map, SPDIFIN_CTRL0, SPDIFIN_CTRL0_EN, 0); + clk_disable_unprepare(priv->refclk); clk_disable_unprepare(priv->pclk); return 0; } static const struct snd_soc_dai_ops axg_spdifin_ops = { .prepare = axg_spdifin_prepare, - .startup = axg_spdifin_startup, - .shutdown = axg_spdifin_shutdown, }; static int axg_spdifin_iec958_info(struct snd_kcontrol *kcontrol, diff --git a/sound/soc/pxa/pxa-ssp.c b/sound/soc/pxa/pxa-ssp.c index 7f13a35e9cc14..d6a2af293f458 100644 --- a/sound/soc/pxa/pxa-ssp.c +++ b/sound/soc/pxa/pxa-ssp.c @@ -779,7 +779,7 @@ static int pxa_ssp_probe(struct snd_soc_dai *dai) if (IS_ERR(priv->extclk)) { ret = PTR_ERR(priv->extclk); if (ret == -EPROBE_DEFER) - return ret; + goto err_priv; priv->extclk = NULL; } diff --git a/sound/soc/soc-utils.c b/sound/soc/soc-utils.c index f2c9d97c19c74..5512a2dd2af94 100644 --- a/sound/soc/soc-utils.c +++ b/sound/soc/soc-utils.c @@ -159,6 +159,7 @@ int snd_soc_dai_is_dummy(struct snd_soc_dai *dai) return 1; return 0; } +EXPORT_SYMBOL_GPL(snd_soc_dai_is_dummy); int snd_soc_component_is_dummy(struct snd_soc_component *component) { diff --git a/sound/soc/sof/sof-pci-dev.c b/sound/soc/sof/sof-pci-dev.c index 3b4c011e02834..ec40053041e15 100644 --- a/sound/soc/sof/sof-pci-dev.c +++ b/sound/soc/sof/sof-pci-dev.c @@ -12,6 +12,7 @@ #include #include #include +#include #include #include #include @@ -27,17 +28,22 @@ static char *tplg_path; module_param(tplg_path, charp, 0444); MODULE_PARM_DESC(tplg_path, "alternate path for SOF topology."); +static char *tplg_filename; +module_param(tplg_filename, charp, 0444); +MODULE_PARM_DESC(tplg_filename, "alternate filename for SOF topology."); + static int sof_pci_debug; module_param_named(sof_pci_debug, sof_pci_debug, int, 0444); MODULE_PARM_DESC(sof_pci_debug, "SOF PCI debug options (0x0 all off)"); -static const char *sof_override_tplg_name; +static const char *sof_dmi_override_tplg_name; +static bool sof_dmi_use_community_key; #define SOF_PCI_DISABLE_PM_RUNTIME BIT(0) static int sof_tplg_cb(const struct dmi_system_id *id) { - sof_override_tplg_name = id->driver_data; + sof_dmi_override_tplg_name = id->driver_data; return 1; } @@ -62,25 +68,44 @@ static const struct dmi_system_id sof_tplg_table[] = { {} }; +/* all Up boards use the community key */ +static int up_use_community_key(const struct dmi_system_id *id) +{ + sof_dmi_use_community_key = true; + return 1; +} + +/* + * For ApolloLake Chromebooks we want to force the use of the Intel production key. + * All newer platforms use the community key + */ +static int chromebook_use_community_key(const struct dmi_system_id *id) +{ + if (!soc_intel_is_apl()) + sof_dmi_use_community_key = true; + return 1; +} + static const struct dmi_system_id community_key_platforms[] = { { - .ident = "Up Squared", + .ident = "Up boards", + .callback = up_use_community_key, .matches = { DMI_MATCH(DMI_SYS_VENDOR, "AAEON"), - DMI_MATCH(DMI_BOARD_NAME, "UP-APL01"), } }, { - .ident = "Up Extreme", + .ident = "Google Chromebooks", + .callback = chromebook_use_community_key, .matches = { - DMI_MATCH(DMI_SYS_VENDOR, "AAEON"), - DMI_MATCH(DMI_BOARD_NAME, "UP-WHL01"), + DMI_MATCH(DMI_PRODUCT_FAMILY, "Google"), } }, { - .ident = "Google Chromebooks", + .ident = "Google firmware", + .callback = chromebook_use_community_key, .matches = { - DMI_MATCH(DMI_PRODUCT_FAMILY, "Google"), + DMI_MATCH(DMI_BIOS_VERSION, "Google"), } }, {}, @@ -171,7 +196,7 @@ int sof_pci_probe(struct pci_dev *pci, const struct pci_device_id *pci_id) "Module parameter used, changed fw path to %s\n", sof_pdata->fw_filename_prefix); - } else if (dmi_check_system(community_key_platforms)) { + } else if (dmi_check_system(community_key_platforms) && sof_dmi_use_community_key) { sof_pdata->fw_filename_prefix = devm_kasprintf(dev, GFP_KERNEL, "%s/%s", sof_pdata->desc->default_fw_path, @@ -191,9 +216,20 @@ int sof_pci_probe(struct pci_dev *pci, const struct pci_device_id *pci_id) sof_pdata->tplg_filename_prefix = sof_pdata->desc->default_tplg_path; - dmi_check_system(sof_tplg_table); - if (sof_override_tplg_name) - sof_pdata->tplg_filename = sof_override_tplg_name; + /* + * the topology filename will be provided in the machine descriptor, unless + * it is overridden by a module parameter or DMI quirk. + */ + if (tplg_filename) { + sof_pdata->tplg_filename = tplg_filename; + + dev_dbg(dev, "Module parameter used, changed tplg filename to %s\n", + sof_pdata->tplg_filename); + } else { + dmi_check_system(sof_tplg_table); + if (sof_dmi_override_tplg_name) + sof_pdata->tplg_filename = sof_dmi_override_tplg_name; + } /* set callback to be called on successful device probe to enable runtime_pm */ sof_pdata->sof_probe_complete = sof_pci_probe_complete; diff --git a/sound/soc/tegra/tegra_audio_graph_card.c b/sound/soc/tegra/tegra_audio_graph_card.c index 1f2c5018bf5ac..4737e776d3837 100644 --- a/sound/soc/tegra/tegra_audio_graph_card.c +++ b/sound/soc/tegra/tegra_audio_graph_card.c @@ -10,6 +10,7 @@ #include #include #include +#include #define MAX_PLLA_OUT0_DIV 128 @@ -44,6 +45,21 @@ struct tegra_audio_cdata { unsigned int plla_out0_rates[NUM_RATE_TYPE]; }; +static bool need_clk_update(struct snd_soc_dai *dai) +{ + if (snd_soc_dai_is_dummy(dai) || + !dai->driver->ops || + !dai->driver->name) + return false; + + if (strstr(dai->driver->name, "I2S") || + strstr(dai->driver->name, "DMIC") || + strstr(dai->driver->name, "DSPK")) + return true; + + return false; +} + /* Setup PLL clock as per the given sample rate */ static int tegra_audio_graph_update_pll(struct snd_pcm_substream *substream, struct snd_pcm_hw_params *params) @@ -140,19 +156,7 @@ static int tegra_audio_graph_hw_params(struct snd_pcm_substream *substream, struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0); int err; - /* - * This gets called for each DAI link (FE or BE) when DPCM is used. - * We may not want to update PLLA rate for each call. So PLLA update - * must be restricted to external I/O links (I2S, DMIC or DSPK) since - * they actually depend on it. I/O modules update their clocks in - * hw_param() of their respective component driver and PLLA rate - * update here helps them to derive appropriate rates. - * - * TODO: When more HW accelerators get added (like sample rate - * converter, volume gain controller etc., which don't really - * depend on PLLA) we need a better way to filter here. - */ - if (cpu_dai->driver->ops && rtd->dai_link->no_pcm) { + if (need_clk_update(cpu_dai)) { err = tegra_audio_graph_update_pll(substream, params); if (err) return err; diff --git a/sound/soc/ti/ams-delta.c b/sound/soc/ti/ams-delta.c index ecd24d412a9b0..4537ef1b676f5 100644 --- a/sound/soc/ti/ams-delta.c +++ b/sound/soc/ti/ams-delta.c @@ -303,7 +303,7 @@ static int cx81801_open(struct tty_struct *tty) static void cx81801_close(struct tty_struct *tty) { struct snd_soc_component *component = tty->disc_data; - struct snd_soc_dapm_context *dapm = &component->card->dapm; + struct snd_soc_dapm_context *dapm; del_timer_sync(&cx81801_timer); @@ -315,6 +315,8 @@ static void cx81801_close(struct tty_struct *tty) v253_ops.close(tty); + dapm = &component->card->dapm; + /* Revert back to default audio input/output constellation */ snd_soc_dapm_mutex_lock(dapm); diff --git a/sound/soc/ti/omap-mcbsp.c b/sound/soc/ti/omap-mcbsp.c index 4479d74f0a458..81d2be87e9739 100644 --- a/sound/soc/ti/omap-mcbsp.c +++ b/sound/soc/ti/omap-mcbsp.c @@ -74,14 +74,16 @@ static int omap2_mcbsp_set_clks_src(struct omap_mcbsp *mcbsp, u8 fck_src_id) return -EINVAL; } - pm_runtime_put_sync(mcbsp->dev); + if (mcbsp->active) + pm_runtime_put_sync(mcbsp->dev); r = clk_set_parent(mcbsp->fclk, fck_src); if (r) dev_err(mcbsp->dev, "CLKS: could not clk_set_parent() to %s\n", src); - pm_runtime_get_sync(mcbsp->dev); + if (mcbsp->active) + pm_runtime_get_sync(mcbsp->dev); clk_put(fck_src); diff --git a/sound/usb/mixer_quirks.c b/sound/usb/mixer_quirks.c index d12b87e52d22a..9d58f8d20f6a5 100644 --- a/sound/usb/mixer_quirks.c +++ b/sound/usb/mixer_quirks.c @@ -2796,6 +2796,7 @@ static int snd_bbfpro_controls_create(struct usb_mixer_interface *mixer) #define SND_DJM_850_IDX 0x2 #define SND_DJM_900NXS2_IDX 0x3 #define SND_DJM_750MK2_IDX 0x4 +#define SND_DJM_450_IDX 0x5 #define SND_DJM_CTL(_name, suffix, _default_value, _windex) { \ @@ -2926,6 +2927,31 @@ static const struct snd_djm_ctl snd_djm_ctls_250mk2[] = { }; +// DJM-450 +static const u16 snd_djm_opts_450_cap1[] = { + 0x0103, 0x0100, 0x0106, 0x0107, 0x0108, 0x0109, 0x010d, 0x010a }; + +static const u16 snd_djm_opts_450_cap2[] = { + 0x0203, 0x0200, 0x0206, 0x0207, 0x0208, 0x0209, 0x020d, 0x020a }; + +static const u16 snd_djm_opts_450_cap3[] = { + 0x030a, 0x0311, 0x0312, 0x0307, 0x0308, 0x0309, 0x030d }; + +static const u16 snd_djm_opts_450_pb1[] = { 0x0100, 0x0101, 0x0104 }; +static const u16 snd_djm_opts_450_pb2[] = { 0x0200, 0x0201, 0x0204 }; +static const u16 snd_djm_opts_450_pb3[] = { 0x0300, 0x0301, 0x0304 }; + +static const struct snd_djm_ctl snd_djm_ctls_450[] = { + SND_DJM_CTL("Capture Level", cap_level, 0, SND_DJM_WINDEX_CAPLVL), + SND_DJM_CTL("Ch1 Input", 450_cap1, 2, SND_DJM_WINDEX_CAP), + SND_DJM_CTL("Ch2 Input", 450_cap2, 2, SND_DJM_WINDEX_CAP), + SND_DJM_CTL("Ch3 Input", 450_cap3, 0, SND_DJM_WINDEX_CAP), + SND_DJM_CTL("Ch1 Output", 450_pb1, 0, SND_DJM_WINDEX_PB), + SND_DJM_CTL("Ch2 Output", 450_pb2, 1, SND_DJM_WINDEX_PB), + SND_DJM_CTL("Ch3 Output", 450_pb3, 2, SND_DJM_WINDEX_PB) +}; + + // DJM-750 static const u16 snd_djm_opts_750_cap1[] = { 0x0101, 0x0103, 0x0106, 0x0107, 0x0108, 0x0109, 0x010a, 0x010f }; @@ -3021,6 +3047,7 @@ static const struct snd_djm_device snd_djm_devices[] = { [SND_DJM_850_IDX] = SND_DJM_DEVICE(850), [SND_DJM_900NXS2_IDX] = SND_DJM_DEVICE(900nxs2), [SND_DJM_750MK2_IDX] = SND_DJM_DEVICE(750mk2), + [SND_DJM_450_IDX] = SND_DJM_DEVICE(450), }; @@ -3263,6 +3290,9 @@ int snd_usb_mixer_apply_create_quirk(struct usb_mixer_interface *mixer) case USB_ID(0x2b73, 0x0017): /* Pioneer DJ DJM-250MK2 */ err = snd_djm_controls_create(mixer, SND_DJM_250MK2_IDX); break; + case USB_ID(0x2b73, 0x0013): /* Pioneer DJ DJM-450 */ + err = snd_djm_controls_create(mixer, SND_DJM_450_IDX); + break; case USB_ID(0x08e4, 0x017f): /* Pioneer DJ DJM-750 */ err = snd_djm_controls_create(mixer, SND_DJM_750_IDX); break; diff --git a/sound/usb/quirks.c b/sound/usb/quirks.c index 8de572e774ddc..6d87f58d1b005 100644 --- a/sound/usb/quirks.c +++ b/sound/usb/quirks.c @@ -1725,7 +1725,11 @@ void snd_usb_audioformat_attributes_quirk(struct snd_usb_audio *chip, /* mic works only when ep packet size is set to wMaxPacketSize */ fp->attributes |= UAC_EP_CS_ATTR_FILL_MAX; break; - + case USB_ID(0x3511, 0x2b1e): /* Opencomm2 UC USB Bluetooth dongle */ + /* mic works only when ep pitch control is not set */ + if (stream == SNDRV_PCM_STREAM_CAPTURE) + fp->attributes &= ~UAC_EP_CS_ATTR_PITCH_CONTROL; + break; } } diff --git a/tools/arch/parisc/include/uapi/asm/errno.h b/tools/arch/parisc/include/uapi/asm/errno.h index 87245c584784e..8d94739d75c67 100644 --- a/tools/arch/parisc/include/uapi/asm/errno.h +++ b/tools/arch/parisc/include/uapi/asm/errno.h @@ -75,7 +75,6 @@ /* We now return you to your regularly scheduled HPUX. */ -#define ENOSYM 215 /* symbol does not exist in executable */ #define ENOTSOCK 216 /* Socket operation on non-socket */ #define EDESTADDRREQ 217 /* Destination address required */ #define EMSGSIZE 218 /* Message too long */ @@ -101,7 +100,6 @@ #define ETIMEDOUT 238 /* Connection timed out */ #define ECONNREFUSED 239 /* Connection refused */ #define EREFUSED ECONNREFUSED /* for HP's NFS apparently */ -#define EREMOTERELEASE 240 /* Remote peer released connection */ #define EHOSTDOWN 241 /* Host is down */ #define EHOSTUNREACH 242 /* No route to host */ diff --git a/tools/bpf/bpftool/skeleton/profiler.bpf.c b/tools/bpf/bpftool/skeleton/profiler.bpf.c index ce5b65e07ab10..2f80edc682f11 100644 --- a/tools/bpf/bpftool/skeleton/profiler.bpf.c +++ b/tools/bpf/bpftool/skeleton/profiler.bpf.c @@ -4,6 +4,12 @@ #include #include +struct bpf_perf_event_value___local { + __u64 counter; + __u64 enabled; + __u64 running; +} __attribute__((preserve_access_index)); + /* map of perf event fds, num_cpu * num_metric entries */ struct { __uint(type, BPF_MAP_TYPE_PERF_EVENT_ARRAY); @@ -15,14 +21,14 @@ struct { struct { __uint(type, BPF_MAP_TYPE_PERCPU_ARRAY); __uint(key_size, sizeof(u32)); - __uint(value_size, sizeof(struct bpf_perf_event_value)); + __uint(value_size, sizeof(struct bpf_perf_event_value___local)); } fentry_readings SEC(".maps"); /* accumulated readings */ struct { __uint(type, BPF_MAP_TYPE_PERCPU_ARRAY); __uint(key_size, sizeof(u32)); - __uint(value_size, sizeof(struct bpf_perf_event_value)); + __uint(value_size, sizeof(struct bpf_perf_event_value___local)); } accum_readings SEC(".maps"); /* sample counts, one per cpu */ @@ -39,7 +45,7 @@ const volatile __u32 num_metric = 1; SEC("fentry/XXX") int BPF_PROG(fentry_XXX) { - struct bpf_perf_event_value *ptrs[MAX_NUM_MATRICS]; + struct bpf_perf_event_value___local *ptrs[MAX_NUM_MATRICS]; u32 key = bpf_get_smp_processor_id(); u32 i; @@ -53,10 +59,10 @@ int BPF_PROG(fentry_XXX) } for (i = 0; i < num_metric && i < MAX_NUM_MATRICS; i++) { - struct bpf_perf_event_value reading; + struct bpf_perf_event_value___local reading; int err; - err = bpf_perf_event_read_value(&events, key, &reading, + err = bpf_perf_event_read_value(&events, key, (void *)&reading, sizeof(reading)); if (err) return 0; @@ -68,14 +74,14 @@ int BPF_PROG(fentry_XXX) } static inline void -fexit_update_maps(u32 id, struct bpf_perf_event_value *after) +fexit_update_maps(u32 id, struct bpf_perf_event_value___local *after) { - struct bpf_perf_event_value *before, diff; + struct bpf_perf_event_value___local *before, diff; before = bpf_map_lookup_elem(&fentry_readings, &id); /* only account samples with a valid fentry_reading */ if (before && before->counter) { - struct bpf_perf_event_value *accum; + struct bpf_perf_event_value___local *accum; diff.counter = after->counter - before->counter; diff.enabled = after->enabled - before->enabled; @@ -93,7 +99,7 @@ fexit_update_maps(u32 id, struct bpf_perf_event_value *after) SEC("fexit/XXX") int BPF_PROG(fexit_XXX) { - struct bpf_perf_event_value readings[MAX_NUM_MATRICS]; + struct bpf_perf_event_value___local readings[MAX_NUM_MATRICS]; u32 cpu = bpf_get_smp_processor_id(); u32 i, zero = 0; int err; @@ -102,7 +108,8 @@ int BPF_PROG(fexit_XXX) /* read all events before updating the maps, to reduce error */ for (i = 0; i < num_metric && i < MAX_NUM_MATRICS; i++) { err = bpf_perf_event_read_value(&events, cpu + i * num_cpu, - readings + i, sizeof(*readings)); + (void *)(readings + i), + sizeof(*readings)); if (err) return 0; } diff --git a/tools/hv/vmbus_testing b/tools/hv/vmbus_testing index e7212903dd1d9..4467979d8f699 100755 --- a/tools/hv/vmbus_testing +++ b/tools/hv/vmbus_testing @@ -164,7 +164,7 @@ def recursive_file_lookup(path, file_map): def get_all_devices_test_status(file_map): for device in file_map: - if (get_test_state(locate_state(device, file_map)) is 1): + if (get_test_state(locate_state(device, file_map)) == 1): print("Testing = ON for: {}" .format(device.split("/")[5])) else: @@ -203,7 +203,7 @@ def write_test_files(path, value): def set_test_state(state_path, state_value, quiet): write_test_files(state_path, state_value) - if (get_test_state(state_path) is 1): + if (get_test_state(state_path) == 1): if (not quiet): print("Testing = ON for device: {}" .format(state_path.split("/")[5])) diff --git a/tools/iio/iio_generic_buffer.c b/tools/iio/iio_generic_buffer.c index f8deae4e26a15..0d0a7a19d6f95 100644 --- a/tools/iio/iio_generic_buffer.c +++ b/tools/iio/iio_generic_buffer.c @@ -51,12 +51,15 @@ enum autochan { * Has the side effect of filling the channels[i].location values used * in processing the buffer output. **/ -static int size_from_channelarray(struct iio_channel_info *channels, int num_channels) +static unsigned int size_from_channelarray(struct iio_channel_info *channels, int num_channels) { - int bytes = 0; - int i = 0; + unsigned int bytes = 0; + int i = 0, max = 0; + unsigned int misalignment; while (i < num_channels) { + if (channels[i].bytes > max) + max = channels[i].bytes; if (bytes % channels[i].bytes == 0) channels[i].location = bytes; else @@ -66,6 +69,14 @@ static int size_from_channelarray(struct iio_channel_info *channels, int num_cha bytes = channels[i].location + channels[i].bytes; i++; } + /* + * We want the data in next sample to also be properly aligned so + * we'll add padding at the end if needed. Adding padding only + * works for channel data which size is 2^n bytes. + */ + misalignment = bytes % max; + if (misalignment) + bytes += max - misalignment; return bytes; } @@ -348,7 +359,7 @@ int main(int argc, char **argv) ssize_t read_size; int dev_num = -1, trig_num = -1; char *buffer_access = NULL; - int scan_size; + unsigned int scan_size; int noevents = 0; int notrigger = 0; char *dummy; @@ -674,7 +685,16 @@ int main(int argc, char **argv) } scan_size = size_from_channelarray(channels, num_channels); - data = malloc(scan_size * buf_len); + + size_t total_buf_len = scan_size * buf_len; + + if (scan_size > 0 && total_buf_len / scan_size != buf_len) { + ret = -EFAULT; + perror("Integer overflow happened when calculate scan_size * buf_len"); + goto error; + } + + data = malloc(total_buf_len); if (!data) { ret = -ENOMEM; goto error; diff --git a/tools/include/linux/btf_ids.h b/tools/include/linux/btf_ids.h index 57890b357f851..eca91e7a4d394 100644 --- a/tools/include/linux/btf_ids.h +++ b/tools/include/linux/btf_ids.h @@ -38,7 +38,7 @@ asm( \ ____BTF_ID(symbol) #define __ID(prefix) \ - __PASTE(prefix, __COUNTER__) + __PASTE(__PASTE(prefix, __COUNTER__), __LINE__) /* * The BTF_ID defines unique symbol for each ID pointing diff --git a/tools/include/uapi/linux/bpf.h b/tools/include/uapi/linux/bpf.h index 8330e3ca8fbfb..1e3e3f16eabcb 100644 --- a/tools/include/uapi/linux/bpf.h +++ b/tools/include/uapi/linux/bpf.h @@ -1762,7 +1762,9 @@ union bpf_attr { * performed again, if the helper is used in combination with * direct packet access. * Return - * 0 on success, or a negative error in case of failure. + * 0 on success, or a negative error in case of failure. Positive + * error indicates a potential drop or congestion in the target + * device. The particular positive error codes are not defined. * * u64 bpf_get_current_pid_tgid(void) * Return diff --git a/tools/include/uapi/linux/perf_event.h b/tools/include/uapi/linux/perf_event.h index f92880a15645a..25bc59231961c 100644 --- a/tools/include/uapi/linux/perf_event.h +++ b/tools/include/uapi/linux/perf_event.h @@ -251,6 +251,8 @@ enum { PERF_BR_SYSRET = 8, /* syscall return */ PERF_BR_COND_CALL = 9, /* conditional function call */ PERF_BR_COND_RET = 10, /* conditional function return */ + PERF_BR_ERET = 11, /* exception return */ + PERF_BR_IRQ = 12, /* irq */ PERF_BR_MAX, }; @@ -299,6 +301,7 @@ enum { * { u64 time_enabled; } && PERF_FORMAT_TOTAL_TIME_ENABLED * { u64 time_running; } && PERF_FORMAT_TOTAL_TIME_RUNNING * { u64 id; } && PERF_FORMAT_ID + * { u64 lost; } && PERF_FORMAT_LOST * } && !PERF_FORMAT_GROUP * * { u64 nr; @@ -306,6 +309,7 @@ enum { * { u64 time_running; } && PERF_FORMAT_TOTAL_TIME_RUNNING * { u64 value; * { u64 id; } && PERF_FORMAT_ID + * { u64 lost; } && PERF_FORMAT_LOST * } cntr[nr]; * } && PERF_FORMAT_GROUP * }; @@ -315,8 +319,9 @@ enum perf_event_read_format { PERF_FORMAT_TOTAL_TIME_RUNNING = 1U << 1, PERF_FORMAT_ID = 1U << 2, PERF_FORMAT_GROUP = 1U << 3, + PERF_FORMAT_LOST = 1U << 4, - PERF_FORMAT_MAX = 1U << 4, /* non-ABI */ + PERF_FORMAT_MAX = 1U << 5, /* non-ABI */ }; #define PERF_ATTR_SIZE_VER0 64 /* sizeof first published struct */ diff --git a/tools/objtool/check.c b/tools/objtool/check.c index 36ad0b6b94a91..c3bb96e5bfa64 100644 --- a/tools/objtool/check.c +++ b/tools/objtool/check.c @@ -2202,7 +2202,7 @@ static bool is_special_call(struct instruction *insn) if (!dest) return false; - if (dest->fentry) + if (dest->fentry || dest->embedded_insn) return true; } diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c index a3ae9176a83e2..6fdd401ec9c56 100644 --- a/tools/perf/builtin-top.c +++ b/tools/perf/builtin-top.c @@ -1743,6 +1743,7 @@ int cmd_top(int argc, const char **argv) top.session = perf_session__new(NULL, NULL); if (IS_ERR(top.session)) { status = PTR_ERR(top.session); + top.session = NULL; goto out_delete_evlist; } diff --git a/tools/perf/builtin-trace.c b/tools/perf/builtin-trace.c index d9ea546850cd6..6755370483b06 100644 --- a/tools/perf/builtin-trace.c +++ b/tools/perf/builtin-trace.c @@ -2287,7 +2287,7 @@ static void syscall__exit(struct syscall *sc) if (!sc) return; - free(sc->arg_fmt); + zfree(&sc->arg_fmt); } static int trace__sys_enter(struct trace *trace, struct evsel *evsel, @@ -3124,13 +3124,8 @@ static void evlist__free_syscall_tp_fields(struct evlist *evlist) struct evsel *evsel; evlist__for_each_entry(evlist, evsel) { - struct evsel_trace *et = evsel->priv; - - if (!et || !evsel->tp_format || strcmp(evsel->tp_format->system, "syscalls")) - continue; - - free(et->fmt); - free(et); + evsel_trace__delete(evsel->priv); + evsel->priv = NULL; } } @@ -4748,11 +4743,11 @@ static void trace__exit(struct trace *trace) int i; strlist__delete(trace->ev_qualifier); - free(trace->ev_qualifier_ids.entries); + zfree(&trace->ev_qualifier_ids.entries); if (trace->syscalls.table) { for (i = 0; i <= trace->sctbl->syscalls.max_id; i++) syscall__exit(&trace->syscalls.table[i]); - free(trace->syscalls.table); + zfree(&trace->syscalls.table); } syscalltbl__delete(trace->sctbl); zfree(&trace->perfconfig_events); diff --git a/tools/perf/pmu-events/arch/powerpc/power10/cache.json b/tools/perf/pmu-events/arch/powerpc/power10/cache.json index 605be14f441c8..9cb929bb64afd 100644 --- a/tools/perf/pmu-events/arch/powerpc/power10/cache.json +++ b/tools/perf/pmu-events/arch/powerpc/power10/cache.json @@ -17,7 +17,7 @@ { "EventCode": "0x34056", "EventName": "PM_EXEC_STALL_LOAD_FINISH", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was finishing a load after its data was reloaded from a data source beyond the local L1; cycles in which the LSU was processing an L1-hit; cycles in which the NTF instruction merged with another load in the LMQ; cycles in which the NTF instruction is waiting for a data reload for a load miss, but the data comes back with a non-NTF instruction." + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was finishing a load after its data was reloaded from a data source beyond the local L1; cycles in which the LSU was processing an L1-hit; cycles in which the next-to-finish (NTF) instruction merged with another load in the LMQ; cycles in which the NTF instruction is waiting for a data reload for a load miss, but the data comes back with a non-NTF instruction." }, { "EventCode": "0x3006C", @@ -27,7 +27,7 @@ { "EventCode": "0x300F4", "EventName": "PM_RUN_INST_CMPL_CONC", - "BriefDescription": "PowerPC instructions completed by this thread when all threads in the core had the run-latch set." + "BriefDescription": "PowerPC instruction completed by this thread when all threads in the core had the run-latch set." }, { "EventCode": "0x4C016", diff --git a/tools/perf/pmu-events/arch/powerpc/power10/floating_point.json b/tools/perf/pmu-events/arch/powerpc/power10/floating_point.json deleted file mode 100644 index 54acb55e2c8c6..0000000000000 --- a/tools/perf/pmu-events/arch/powerpc/power10/floating_point.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "EventCode": "0x4016E", - "EventName": "PM_THRESH_NOT_MET", - "BriefDescription": "Threshold counter did not meet threshold." - } -] diff --git a/tools/perf/pmu-events/arch/powerpc/power10/frontend.json b/tools/perf/pmu-events/arch/powerpc/power10/frontend.json index 558f9530f54ec..61e9e0222c873 100644 --- a/tools/perf/pmu-events/arch/powerpc/power10/frontend.json +++ b/tools/perf/pmu-events/arch/powerpc/power10/frontend.json @@ -7,7 +7,7 @@ { "EventCode": "0x10006", "EventName": "PM_DISP_STALL_HELD_OTHER_CYC", - "BriefDescription": "Cycles in which the NTC instruction is held at dispatch for any other reason." + "BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch for any other reason." }, { "EventCode": "0x10010", @@ -32,12 +32,12 @@ { "EventCode": "0x1D05E", "EventName": "PM_DISP_STALL_HELD_HALT_CYC", - "BriefDescription": "Cycles in which the NTC instruction is held at dispatch because of power management." + "BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch because of power management." }, { "EventCode": "0x1E050", "EventName": "PM_DISP_STALL_HELD_STF_MAPPER_CYC", - "BriefDescription": "Cycles in which the NTC instruction is held at dispatch because the STF mapper/SRB was full. Includes GPR (count, link, tar), VSR, VMR, FPR." + "BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch because the STF mapper/SRB was full. Includes GPR (count, link, tar), VSR, VMR, FPR." }, { "EventCode": "0x1F054", @@ -67,7 +67,7 @@ { "EventCode": "0x100F6", "EventName": "PM_IERAT_MISS", - "BriefDescription": "IERAT Reloaded to satisfy an IERAT miss. All page sizes are counted by this event." + "BriefDescription": "IERAT Reloaded to satisfy an IERAT miss. All page sizes are counted by this event. This event only counts instruction demand access." }, { "EventCode": "0x100F8", @@ -77,7 +77,7 @@ { "EventCode": "0x20006", "EventName": "PM_DISP_STALL_HELD_ISSQ_FULL_CYC", - "BriefDescription": "Cycles in which the NTC instruction is held at dispatch due to Issue queue full. Includes issue queue and branch queue." + "BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch due to Issue queue full. Includes issue queue and branch queue." }, { "EventCode": "0x20114", @@ -102,7 +102,7 @@ { "EventCode": "0x2D01A", "EventName": "PM_DISP_STALL_IC_MISS", - "BriefDescription": "Cycles when dispatch was stalled for this thread due to an Icache Miss." + "BriefDescription": "Cycles when dispatch was stalled for this thread due to an instruction cache miss." }, { "EventCode": "0x2E018", @@ -112,7 +112,7 @@ { "EventCode": "0x2E01A", "EventName": "PM_DISP_STALL_HELD_XVFC_MAPPER_CYC", - "BriefDescription": "Cycles in which the NTC instruction is held at dispatch because the XVFC mapper/SRB was full." + "BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch because the XVFC mapper/SRB was full." }, { "EventCode": "0x2C142", @@ -137,7 +137,7 @@ { "EventCode": "0x30004", "EventName": "PM_DISP_STALL_FLUSH", - "BriefDescription": "Cycles when dispatch was stalled because of a flush that happened to an instruction(s) that was not yet NTC. PM_EXEC_STALL_NTC_FLUSH only includes instructions that were flushed after becoming NTC." + "BriefDescription": "Cycles when dispatch was stalled because of a flush that happened to an instruction(s) that was not yet next-to-complete (NTC). PM_EXEC_STALL_NTC_FLUSH only includes instructions that were flushed after becoming NTC." }, { "EventCode": "0x3000A", @@ -157,7 +157,7 @@ { "EventCode": "0x30018", "EventName": "PM_DISP_STALL_HELD_SCOREBOARD_CYC", - "BriefDescription": "Cycles in which the NTC instruction is held at dispatch while waiting on the Scoreboard. This event combines VSCR and FPSCR together." + "BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch while waiting on the Scoreboard. This event combines VSCR and FPSCR together." }, { "EventCode": "0x30026", @@ -182,7 +182,7 @@ { "EventCode": "0x3D05C", "EventName": "PM_DISP_STALL_HELD_RENAME_CYC", - "BriefDescription": "Cycles in which the NTC instruction is held at dispatch because the mapper/SRB was full. Includes GPR (count, link, tar), VSR, VMR, FPR and XVFC." + "BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch because the mapper/SRB was full. Includes GPR (count, link, tar), VSR, VMR, FPR and XVFC." }, { "EventCode": "0x3E052", @@ -192,7 +192,7 @@ { "EventCode": "0x3E054", "EventName": "PM_LD_MISS_L1", - "BriefDescription": "Load Missed L1, counted at execution time (can be greater than loads finished). LMQ merges are not included in this count. i.e. if a load instruction misses on an address that is already allocated on the LMQ, this event will not increment for that load). Note that this count is per slice, so if a load spans multiple slices this event will increment multiple times for a single load." + "BriefDescription": "Load missed L1, counted at finish time. LMQ merges are not included in this count. i.e. if a load instruction misses on an address that is already allocated on the LMQ, this event will not increment for that load). Note that this count is per slice, so if a load spans multiple slices this event will increment multiple times for a single load." }, { "EventCode": "0x301EA", @@ -202,7 +202,7 @@ { "EventCode": "0x300FA", "EventName": "PM_INST_FROM_L3MISS", - "BriefDescription": "The processor's instruction cache was reloaded from a source other than the local core's L1, L2, or L3 due to a demand miss." + "BriefDescription": "The processor's instruction cache was reloaded from beyond the local core's L3 due to a demand miss." }, { "EventCode": "0x40006", @@ -232,16 +232,16 @@ { "EventCode": "0x4E01A", "EventName": "PM_DISP_STALL_HELD_CYC", - "BriefDescription": "Cycles in which the NTC instruction is held at dispatch for any reason." + "BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch for any reason." }, { "EventCode": "0x4003C", "EventName": "PM_DISP_STALL_HELD_SYNC_CYC", - "BriefDescription": "Cycles in which the NTC instruction is held at dispatch because of a synchronizing instruction that requires the ICT to be empty before dispatch." + "BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch because of a synchronizing instruction that requires the ICT to be empty before dispatch." }, { "EventCode": "0x44056", "EventName": "PM_VECTOR_ST_CMPL", - "BriefDescription": "Vector store instructions completed." + "BriefDescription": "Vector store instruction completed." } ] diff --git a/tools/perf/pmu-events/arch/powerpc/power10/marked.json b/tools/perf/pmu-events/arch/powerpc/power10/marked.json index 58b5dfe3a2731..f2436fc5537ce 100644 --- a/tools/perf/pmu-events/arch/powerpc/power10/marked.json +++ b/tools/perf/pmu-events/arch/powerpc/power10/marked.json @@ -19,11 +19,6 @@ "EventName": "PM_MRK_BR_TAKEN_CMPL", "BriefDescription": "Marked Branch Taken instruction completed." }, - { - "EventCode": "0x20112", - "EventName": "PM_MRK_NTF_FIN", - "BriefDescription": "The marked instruction became the oldest in the pipeline before it finished. It excludes instructions that finish at dispatch." - }, { "EventCode": "0x2C01C", "EventName": "PM_EXEC_STALL_DMISS_OFF_CHIP", @@ -62,17 +57,12 @@ { "EventCode": "0x200FD", "EventName": "PM_L1_ICACHE_MISS", - "BriefDescription": "Demand iCache Miss." - }, - { - "EventCode": "0x30130", - "EventName": "PM_MRK_INST_FIN", - "BriefDescription": "marked instruction finished. Excludes instructions that finish at dispatch. Note that stores always finish twice since the address gets issued to the LSU and the data gets issued to the VSU." + "BriefDescription": "Demand instruction cache miss." }, { "EventCode": "0x34146", "EventName": "PM_MRK_LD_CMPL", - "BriefDescription": "Marked loads completed." + "BriefDescription": "Marked load instruction completed." }, { "EventCode": "0x3E158", @@ -82,12 +72,12 @@ { "EventCode": "0x3E15A", "EventName": "PM_MRK_ST_FIN", - "BriefDescription": "The marked instruction was a store of any kind." + "BriefDescription": "Marked store instruction finished." }, { "EventCode": "0x30068", "EventName": "PM_L1_ICACHE_RELOADED_PREF", - "BriefDescription": "Counts all Icache prefetch reloads ( includes demand turned into prefetch)." + "BriefDescription": "Counts all instruction cache prefetch reloads (includes demand turned into prefetch)." }, { "EventCode": "0x301E4", @@ -102,12 +92,12 @@ { "EventCode": "0x300FE", "EventName": "PM_DATA_FROM_L3MISS", - "BriefDescription": "The processor's data cache was reloaded from a source other than the local core's L1, L2, or L3 due to a demand miss." + "BriefDescription": "The processor's L1 data cache was reloaded from beyond the local core's L3 due to a demand miss." }, { "EventCode": "0x40012", "EventName": "PM_L1_ICACHE_RELOADED_ALL", - "BriefDescription": "Counts all Icache reloads includes demand, prefetch, prefetch turned into demand and demand turned into prefetch." + "BriefDescription": "Counts all instruction cache reloads includes demand, prefetch, prefetch turned into demand and demand turned into prefetch." }, { "EventCode": "0x40134", @@ -117,22 +107,22 @@ { "EventCode": "0x4505A", "EventName": "PM_SP_FLOP_CMPL", - "BriefDescription": "Single Precision floating point instructions completed." + "BriefDescription": "Single Precision floating point instruction completed." }, { "EventCode": "0x4D058", "EventName": "PM_VECTOR_FLOP_CMPL", - "BriefDescription": "Vector floating point instructions completed." + "BriefDescription": "Vector floating point instruction completed." }, { "EventCode": "0x4D05A", "EventName": "PM_NON_MATH_FLOP_CMPL", - "BriefDescription": "Non Math instructions completed." + "BriefDescription": "Non Math instruction completed." }, { "EventCode": "0x401E0", "EventName": "PM_MRK_INST_CMPL", - "BriefDescription": "marked instruction completed." + "BriefDescription": "Marked instruction completed." }, { "EventCode": "0x400FE", diff --git a/tools/perf/pmu-events/arch/powerpc/power10/memory.json b/tools/perf/pmu-events/arch/powerpc/power10/memory.json index 843b51f531e95..c4c10ca98cad7 100644 --- a/tools/perf/pmu-events/arch/powerpc/power10/memory.json +++ b/tools/perf/pmu-events/arch/powerpc/power10/memory.json @@ -47,7 +47,7 @@ { "EventCode": "0x10062", "EventName": "PM_LD_L3MISS_PEND_CYC", - "BriefDescription": "Cycles L3 miss was pending for this thread." + "BriefDescription": "Cycles in which an L3 miss was pending for this thread." }, { "EventCode": "0x20010", @@ -132,7 +132,7 @@ { "EventCode": "0x300FC", "EventName": "PM_DTLB_MISS", - "BriefDescription": "The DPTEG required for the load/store instruction in execution was missing from the TLB. It includes pages of all sizes for demand and prefetch activity." + "BriefDescription": "The DPTEG required for the load/store instruction in execution was missing from the TLB. This event only counts for demand misses." }, { "EventCode": "0x4D02C", @@ -142,7 +142,7 @@ { "EventCode": "0x4003E", "EventName": "PM_LD_CMPL", - "BriefDescription": "Loads completed." + "BriefDescription": "Load instruction completed." }, { "EventCode": "0x4C040", diff --git a/tools/perf/pmu-events/arch/powerpc/power10/others.json b/tools/perf/pmu-events/arch/powerpc/power10/others.json index 7d0de1a2860b4..36c5bbc64c3be 100644 --- a/tools/perf/pmu-events/arch/powerpc/power10/others.json +++ b/tools/perf/pmu-events/arch/powerpc/power10/others.json @@ -2,12 +2,12 @@ { "EventCode": "0x10016", "EventName": "PM_VSU0_ISSUE", - "BriefDescription": "VSU instructions issued to VSU pipe 0." + "BriefDescription": "VSU instruction issued to VSU pipe 0." }, { "EventCode": "0x1001C", "EventName": "PM_ULTRAVISOR_INST_CMPL", - "BriefDescription": "PowerPC instructions that completed while the thread was in ultravisor state." + "BriefDescription": "PowerPC instruction completed while the thread was in ultravisor state." }, { "EventCode": "0x100F0", @@ -17,23 +17,18 @@ { "EventCode": "0x10134", "EventName": "PM_MRK_ST_DONE_L2", - "BriefDescription": "Marked stores completed in L2 (RC machine done)." + "BriefDescription": "Marked store completed in L2." }, { "EventCode": "0x1505E", "EventName": "PM_LD_HIT_L1", - "BriefDescription": "Loads that finished without experiencing an L1 miss." + "BriefDescription": "Load finished without experiencing an L1 miss." }, { "EventCode": "0x1F056", "EventName": "PM_DISP_SS0_2_INSTR_CYC", "BriefDescription": "Cycles in which Superslice 0 dispatches either 1 or 2 instructions." }, - { - "EventCode": "0x1F15C", - "EventName": "PM_MRK_STCX_L2_CYC", - "BriefDescription": "Cycles spent in the nest portion of a marked Stcx instruction. It starts counting when the operation starts to drain to the L2 and it stops counting when the instruction retires from the Instruction Completion Table (ICT) in the Instruction Sequencing Unit (ISU)." - }, { "EventCode": "0x10066", "EventName": "PM_ADJUNCT_CYC", @@ -42,7 +37,7 @@ { "EventCode": "0x101E4", "EventName": "PM_MRK_L1_ICACHE_MISS", - "BriefDescription": "Marked Instruction suffered an icache Miss." + "BriefDescription": "Marked instruction suffered an instruction cache miss." }, { "EventCode": "0x101EA", @@ -72,7 +67,7 @@ { "EventCode": "0x2E010", "EventName": "PM_ADJUNCT_INST_CMPL", - "BriefDescription": "PowerPC instructions that completed while the thread is in Adjunct state." + "BriefDescription": "PowerPC instruction completed while the thread was in Adjunct state." }, { "EventCode": "0x2E014", @@ -122,7 +117,7 @@ { "EventCode": "0x201E4", "EventName": "PM_MRK_DATA_FROM_L3MISS", - "BriefDescription": "The processor's data cache was reloaded from a source other than the local core's L1, L2, or L3 due to a demand miss for a marked load." + "BriefDescription": "The processor's L1 data cache was reloaded from beyond the local core's L3 due to a demand miss for a marked instruction." }, { "EventCode": "0x201E8", @@ -132,17 +127,17 @@ { "EventCode": "0x200F2", "EventName": "PM_INST_DISP", - "BriefDescription": "PowerPC instructions dispatched." + "BriefDescription": "PowerPC instruction dispatched." }, { "EventCode": "0x30132", "EventName": "PM_MRK_VSU_FIN", - "BriefDescription": "VSU marked instructions finished. Excludes simple FX instructions issued to the Store Unit." + "BriefDescription": "VSU marked instruction finished. Excludes simple FX instructions issued to the Store Unit." }, { "EventCode": "0x30038", "EventName": "PM_EXEC_STALL_DMISS_LMEM", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for a load miss to resolve from the local memory, local OpenCapp cache, or local OpenCapp memory." + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for a load miss to resolve from the local memory, local OpenCAPI cache, or local OpenCAPI memory." }, { "EventCode": "0x3F04A", @@ -152,12 +147,12 @@ { "EventCode": "0x3405A", "EventName": "PM_PRIVILEGED_INST_CMPL", - "BriefDescription": "PowerPC Instructions that completed while the thread is in Privileged state." + "BriefDescription": "PowerPC instruction completed while the thread was in Privileged state." }, { "EventCode": "0x3F150", "EventName": "PM_MRK_ST_DRAIN_CYC", - "BriefDescription": "cycles to drain st from core to L2." + "BriefDescription": "Cycles in which the marked store drained from the core to the L2." }, { "EventCode": "0x3F054", @@ -182,7 +177,7 @@ { "EventCode": "0x4001C", "EventName": "PM_VSU_FIN", - "BriefDescription": "VSU instructions finished." + "BriefDescription": "VSU instruction finished." }, { "EventCode": "0x4C01A", @@ -197,7 +192,7 @@ { "EventCode": "0x4D022", "EventName": "PM_HYPERVISOR_INST_CMPL", - "BriefDescription": "PowerPC instructions that completed while the thread is in hypervisor state." + "BriefDescription": "PowerPC instruction completed while the thread was in hypervisor state." }, { "EventCode": "0x4D026", @@ -212,32 +207,32 @@ { "EventCode": "0x40030", "EventName": "PM_INST_FIN", - "BriefDescription": "Instructions finished." + "BriefDescription": "Instruction finished." }, { "EventCode": "0x44146", "EventName": "PM_MRK_STCX_CORE_CYC", - "BriefDescription": "Cycles spent in the core portion of a marked Stcx instruction. It starts counting when the instruction is decoded and stops counting when it drains into the L2." + "BriefDescription": "Cycles spent in the core portion of a marked STCX instruction. It starts counting when the instruction is decoded and stops counting when it drains into the L2." }, { "EventCode": "0x44054", "EventName": "PM_VECTOR_LD_CMPL", - "BriefDescription": "Vector load instructions completed." + "BriefDescription": "Vector load instruction completed." }, { "EventCode": "0x45054", "EventName": "PM_FMA_CMPL", - "BriefDescription": "Two floating point instructions completed (FMA class of instructions: fmadd, fnmadd, fmsub, fnmsub). Scalar instructions only." + "BriefDescription": "Two floating point instruction completed (FMA class of instructions: fmadd, fnmadd, fmsub, fnmsub). Scalar instructions only." }, { "EventCode": "0x45056", "EventName": "PM_SCALAR_FLOP_CMPL", - "BriefDescription": "Scalar floating point instructions completed." + "BriefDescription": "Scalar floating point instruction completed." }, { "EventCode": "0x4505C", "EventName": "PM_MATH_FLOP_CMPL", - "BriefDescription": "Math floating point instructions completed." + "BriefDescription": "Math floating point instruction completed." }, { "EventCode": "0x4D05E", @@ -252,21 +247,21 @@ { "EventCode": "0x401E6", "EventName": "PM_MRK_INST_FROM_L3MISS", - "BriefDescription": "The processor's instruction cache was reloaded from a source other than the local core's L1, L2, or L3 due to a demand miss for a marked instruction." + "BriefDescription": "The processor's instruction cache was reloaded from beyond the local core's L3 due to a demand miss for a marked instruction." }, { "EventCode": "0x401E8", "EventName": "PM_MRK_DATA_FROM_L2MISS", - "BriefDescription": "The processor's data cache was reloaded from a source other than the local core's L1 or L2 due to a demand miss for a marked load." + "BriefDescription": "The processor's L1 data cache was reloaded from a source beyond the local core's L2 due to a demand miss for a marked instruction." }, { "EventCode": "0x400F0", "EventName": "PM_LD_DEMAND_MISS_L1_FIN", - "BriefDescription": "Load Missed L1, counted at finish time." + "BriefDescription": "Load missed L1, counted at finish time." }, { "EventCode": "0x400FA", "EventName": "PM_RUN_INST_CMPL", - "BriefDescription": "Completed PowerPC instructions gated by the run latch." + "BriefDescription": "PowerPC instruction completed while the run latch is set." } ] diff --git a/tools/perf/pmu-events/arch/powerpc/power10/pipeline.json b/tools/perf/pmu-events/arch/powerpc/power10/pipeline.json index b8aded6045faa..799893c56f32b 100644 --- a/tools/perf/pmu-events/arch/powerpc/power10/pipeline.json +++ b/tools/perf/pmu-events/arch/powerpc/power10/pipeline.json @@ -2,7 +2,7 @@ { "EventCode": "0x100FE", "EventName": "PM_INST_CMPL", - "BriefDescription": "PowerPC instructions completed." + "BriefDescription": "PowerPC instruction completed." }, { "EventCode": "0x1000C", @@ -12,7 +12,7 @@ { "EventCode": "0x1000E", "EventName": "PM_MMA_ISSUED", - "BriefDescription": "MMA instructions issued." + "BriefDescription": "MMA instruction issued." }, { "EventCode": "0x10012", @@ -107,7 +107,7 @@ { "EventCode": "0x2D012", "EventName": "PM_VSU1_ISSUE", - "BriefDescription": "VSU instructions issued to VSU pipe 1." + "BriefDescription": "VSU instruction issued to VSU pipe 1." }, { "EventCode": "0x2D018", @@ -122,7 +122,7 @@ { "EventCode": "0x2E01E", "EventName": "PM_EXEC_STALL_NTC_FLUSH", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was executing in any unit before it was flushed. Note that if the flush of the oldest instruction happens after finish, the cycles from dispatch to issue will be included in PM_DISP_STALL and the cycles from issue to finish will be included in PM_EXEC_STALL and its corresponding children. This event will also count cycles when the previous NTF instruction is still completing and the new NTF instruction is stalled at dispatch." + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was executing in any unit before it was flushed. Note that if the flush of the oldest instruction happens after finish, the cycles from dispatch to issue will be included in PM_DISP_STALL and the cycles from issue to finish will be included in PM_EXEC_STALL and its corresponding children. This event will also count cycles when the previous next-to-finish (NTF) instruction is still completing and the new NTF instruction is stalled at dispatch." }, { "EventCode": "0x2013C", @@ -137,7 +137,7 @@ { "EventCode": "0x201E2", "EventName": "PM_MRK_LD_MISS_L1", - "BriefDescription": "Marked DL1 Demand Miss counted at finish time." + "BriefDescription": "Marked demand data load miss counted at finish time." }, { "EventCode": "0x200F4", @@ -172,7 +172,7 @@ { "EventCode": "0x30028", "EventName": "PM_CMPL_STALL_MEM_ECC", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for the non-speculative finish of either a stcx waiting for its result or a load waiting for non-critical sectors of data and ECC." + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for the non-speculative finish of either a STCX waiting for its result or a load waiting for non-critical sectors of data and ECC." }, { "EventCode": "0x30036", @@ -187,17 +187,12 @@ { "EventCode": "0x3F044", "EventName": "PM_VSU2_ISSUE", - "BriefDescription": "VSU instructions issued to VSU pipe 2." + "BriefDescription": "VSU instruction issued to VSU pipe 2." }, { "EventCode": "0x30058", "EventName": "PM_TLBIE_FIN", - "BriefDescription": "TLBIE instructions finished in the LSU. Two TLBIEs can finish each cycle. All will be counted." - }, - { - "EventCode": "0x3D058", - "EventName": "PM_SCALAR_FSQRT_FDIV_ISSUE", - "BriefDescription": "Scalar versions of four floating point operations: fdiv,fsqrt (xvdivdp, xvdivsp, xvsqrtdp, xvsqrtsp)." + "BriefDescription": "TLBIE instruction finished in the LSU. Two TLBIEs can finish each cycle. All will be counted." }, { "EventCode": "0x30066", @@ -252,7 +247,7 @@ { "EventCode": "0x4E012", "EventName": "PM_EXEC_STALL_UNKNOWN", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline completed without an ntf_type pulse. The ntf_pulse was missed by the ISU because the NTF finishes and completions came too close together." + "BriefDescription": "Cycles in which the oldest instruction in the pipeline completed without an ntf_type pulse. The ntf_pulse was missed by the ISU because the next-to-finish (NTF) instruction finishes and completions came too close together." }, { "EventCode": "0x4D020", @@ -267,12 +262,7 @@ { "EventCode": "0x45058", "EventName": "PM_IC_MISS_CMPL", - "BriefDescription": "Non-speculative icache miss, counted at completion." - }, - { - "EventCode": "0x4D050", - "EventName": "PM_VSU_NON_FLOP_CMPL", - "BriefDescription": "Non-floating point VSU instructions completed." + "BriefDescription": "Non-speculative instruction cache miss, counted at completion." }, { "EventCode": "0x4D052", diff --git a/tools/perf/pmu-events/arch/powerpc/power10/pmc.json b/tools/perf/pmu-events/arch/powerpc/power10/pmc.json index b5d1bd39cfb22..364fedbfb490b 100644 --- a/tools/perf/pmu-events/arch/powerpc/power10/pmc.json +++ b/tools/perf/pmu-events/arch/powerpc/power10/pmc.json @@ -12,11 +12,11 @@ { "EventCode": "0x45052", "EventName": "PM_4FLOP_CMPL", - "BriefDescription": "Four floating point instructions completed (fadd, fmul, fsub, fcmp, fsel, fabs, fnabs, fres, fsqrte, fneg)." + "BriefDescription": "Four floating point instruction completed (fadd, fmul, fsub, fcmp, fsel, fabs, fnabs, fres, fsqrte, fneg)." }, { "EventCode": "0x4D054", "EventName": "PM_8FLOP_CMPL", - "BriefDescription": "Four Double Precision vector instructions completed." + "BriefDescription": "Four Double Precision vector instruction completed." } ] diff --git a/tools/perf/pmu-events/arch/powerpc/power10/translation.json b/tools/perf/pmu-events/arch/powerpc/power10/translation.json index db3766dca07c5..961e2491e73f6 100644 --- a/tools/perf/pmu-events/arch/powerpc/power10/translation.json +++ b/tools/perf/pmu-events/arch/powerpc/power10/translation.json @@ -4,11 +4,6 @@ "EventName": "PM_MRK_START_PROBE_NOP_CMPL", "BriefDescription": "Marked Start probe nop (AND R0,R0,R0) completed." }, - { - "EventCode": "0x20016", - "EventName": "PM_ST_FIN", - "BriefDescription": "Store finish count. Includes speculative activity." - }, { "EventCode": "0x20018", "EventName": "PM_ST_FWD", @@ -17,7 +12,7 @@ { "EventCode": "0x2011C", "EventName": "PM_MRK_NTF_CYC", - "BriefDescription": "Cycles during which the marked instruction is the oldest in the pipeline (NTF or NTC)." + "BriefDescription": "Cycles in which the marked instruction is the oldest in the pipeline (next-to-finish or next-to-complete)." }, { "EventCode": "0x2E01C", @@ -37,7 +32,7 @@ { "EventCode": "0x200FE", "EventName": "PM_DATA_FROM_L2MISS", - "BriefDescription": "The processor's data cache was reloaded from a source other than the local core's L1 or L2 due to a demand miss." + "BriefDescription": "The processor's L1 data cache was reloaded from a source beyond the local core's L2 due to a demand miss." }, { "EventCode": "0x30010", @@ -52,6 +47,6 @@ { "EventCode": "0x4D05C", "EventName": "PM_DPP_FLOP_CMPL", - "BriefDescription": "Double-Precision or Quad-Precision instructions completed." + "BriefDescription": "Double-Precision or Quad-Precision instruction completed." } ] diff --git a/tools/perf/tests/shell/stat_bpf_counters.sh b/tools/perf/tests/shell/stat_bpf_counters.sh index 2aed20dc22625..6bf24b85294c7 100755 --- a/tools/perf/tests/shell/stat_bpf_counters.sh +++ b/tools/perf/tests/shell/stat_bpf_counters.sh @@ -22,10 +22,10 @@ compare_number() } # skip if --bpf-counters is not supported -if ! perf stat --bpf-counters true > /dev/null 2>&1; then - if [ "$1" == "-v" ]; then +if ! perf stat -e cycles --bpf-counters true > /dev/null 2>&1; then + if [ "$1" = "-v" ]; then echo "Skipping: --bpf-counters not supported" - perf --no-pager stat --bpf-counters true || true + perf --no-pager stat -e cycles --bpf-counters true || true fi exit 2 fi diff --git a/tools/perf/ui/browsers/hists.c b/tools/perf/ui/browsers/hists.c index b72ee68222228..fd3e67d2c6bdd 100644 --- a/tools/perf/ui/browsers/hists.c +++ b/tools/perf/ui/browsers/hists.c @@ -407,11 +407,6 @@ static bool hist_browser__selection_has_children(struct hist_browser *browser) return container_of(ms, struct callchain_list, ms)->has_children; } -static bool hist_browser__he_selection_unfolded(struct hist_browser *browser) -{ - return browser->he_selection ? browser->he_selection->unfolded : false; -} - static bool hist_browser__selection_unfolded(struct hist_browser *browser) { struct hist_entry *he = browser->he_selection; @@ -584,8 +579,8 @@ static int hierarchy_set_folding(struct hist_browser *hb, struct hist_entry *he, return n; } -static void __hist_entry__set_folding(struct hist_entry *he, - struct hist_browser *hb, bool unfold) +static void hist_entry__set_folding(struct hist_entry *he, + struct hist_browser *hb, bool unfold) { hist_entry__init_have_children(he); he->unfolded = unfold ? he->has_children : false; @@ -603,34 +598,12 @@ static void __hist_entry__set_folding(struct hist_entry *he, he->nr_rows = 0; } -static void hist_entry__set_folding(struct hist_entry *he, - struct hist_browser *browser, bool unfold) -{ - double percent; - - percent = hist_entry__get_percent_limit(he); - if (he->filtered || percent < browser->min_pcnt) - return; - - __hist_entry__set_folding(he, browser, unfold); - - if (!he->depth || unfold) - browser->nr_hierarchy_entries++; - if (he->leaf) - browser->nr_callchain_rows += he->nr_rows; - else if (unfold && !hist_entry__has_hierarchy_children(he, browser->min_pcnt)) { - browser->nr_hierarchy_entries++; - he->has_no_entry = true; - he->nr_rows = 1; - } else - he->has_no_entry = false; -} - static void __hist_browser__set_folding(struct hist_browser *browser, bool unfold) { struct rb_node *nd; struct hist_entry *he; + double percent; nd = rb_first_cached(&browser->hists->entries); while (nd) { @@ -640,6 +613,21 @@ __hist_browser__set_folding(struct hist_browser *browser, bool unfold) nd = __rb_hierarchy_next(nd, HMD_FORCE_CHILD); hist_entry__set_folding(he, browser, unfold); + + percent = hist_entry__get_percent_limit(he); + if (he->filtered || percent < browser->min_pcnt) + continue; + + if (!he->depth || unfold) + browser->nr_hierarchy_entries++; + if (he->leaf) + browser->nr_callchain_rows += he->nr_rows; + else if (unfold && !hist_entry__has_hierarchy_children(he, browser->min_pcnt)) { + browser->nr_hierarchy_entries++; + he->has_no_entry = true; + he->nr_rows = 1; + } else + he->has_no_entry = false; } } @@ -659,8 +647,10 @@ static void hist_browser__set_folding_selected(struct hist_browser *browser, boo if (!browser->he_selection) return; - hist_entry__set_folding(browser->he_selection, browser, unfold); - browser->b.nr_entries = hist_browser__nr_entries(browser); + if (unfold == browser->he_selection->unfolded) + return; + + hist_browser__toggle_fold(browser); } static void ui_browser__warn_lost_events(struct ui_browser *browser) @@ -732,8 +722,8 @@ static int hist_browser__handle_hotkey(struct hist_browser *browser, bool warn_l hist_browser__set_folding(browser, true); break; case 'e': - /* Expand the selected entry. */ - hist_browser__set_folding_selected(browser, !hist_browser__he_selection_unfolded(browser)); + /* Toggle expand/collapse the selected entry. */ + hist_browser__toggle_fold(browser); break; case 'H': browser->show_headers = !browser->show_headers; @@ -1779,7 +1769,7 @@ static void hists_browser__hierarchy_headers(struct hist_browser *browser) hists_browser__scnprintf_hierarchy_headers(browser, headers, sizeof(headers)); - ui_browser__gotorc(&browser->b, 0, 0); + ui_browser__gotorc_title(&browser->b, 0, 0); ui_browser__set_color(&browser->b, HE_COLORSET_ROOT); ui_browser__write_nstring(&browser->b, headers, browser->b.width + 1); } diff --git a/tools/perf/util/Build b/tools/perf/util/Build index f2914d5bed6e8..7d085927da413 100644 --- a/tools/perf/util/Build +++ b/tools/perf/util/Build @@ -263,6 +263,12 @@ ifeq ($(BISON_GE_35),1) else bison_flags += -w endif + +BISON_LT_381 := $(shell expr $(shell $(BISON) --version | grep bison | sed -e 's/.\+ \([0-9]\+\).\([0-9]\+\).\([0-9]\+\)/\1\2\3/g') \< 381) +ifeq ($(BISON_LT_381),1) + bison_flags += -DYYNOMEM=YYABORT +endif + CFLAGS_parse-events-bison.o += $(bison_flags) CFLAGS_pmu-bison.o += -DYYLTYPE_IS_TRIVIAL=0 $(bison_flags) CFLAGS_expr-bison.o += -DYYLTYPE_IS_TRIVIAL=0 $(bison_flags) diff --git a/tools/perf/util/annotate.c b/tools/perf/util/annotate.c index a5e87c7f4f4eb..60b232eba5c82 100644 --- a/tools/perf/util/annotate.c +++ b/tools/perf/util/annotate.c @@ -1729,8 +1729,11 @@ static int symbol__disassemble_bpf(struct symbol *sym, perf_exe(tpath, sizeof(tpath)); bfdf = bfd_openr(tpath, NULL); - assert(bfdf); - assert(bfd_check_format(bfdf, bfd_object)); + if (bfdf == NULL) + abort(); + + if (!bfd_check_format(bfdf, bfd_object)) + abort(); s = open_memstream(&buf, &buf_size); if (!s) { @@ -1778,7 +1781,8 @@ static int symbol__disassemble_bpf(struct symbol *sym, #else disassemble = disassembler(bfdf); #endif - assert(disassemble); + if (disassemble == NULL) + abort(); fflush(s); do { diff --git a/tools/perf/util/branch.c b/tools/perf/util/branch.c index 2285b1eb3128d..a9a909db8cc7f 100644 --- a/tools/perf/util/branch.c +++ b/tools/perf/util/branch.c @@ -49,7 +49,9 @@ const char *branch_type_name(int type) "SYSCALL", "SYSRET", "COND_CALL", - "COND_RET" + "COND_RET", + "ERET", + "IRQ" }; if (type >= 0 && type < PERF_BR_MAX) diff --git a/tools/perf/util/header.c b/tools/perf/util/header.c index 1c7414f666552..25947d0136038 100644 --- a/tools/perf/util/header.c +++ b/tools/perf/util/header.c @@ -4200,7 +4200,8 @@ int perf_event__process_attr(struct perf_tool *tool __maybe_unused, union perf_event *event, struct evlist **pevlist) { - u32 i, ids, n_ids; + u32 i, n_ids; + u64 *ids; struct evsel *evsel; struct evlist *evlist = *pevlist; @@ -4216,9 +4217,8 @@ int perf_event__process_attr(struct perf_tool *tool __maybe_unused, evlist__add(evlist, evsel); - ids = event->header.size; - ids -= (void *)&event->attr.id - (void *)event; - n_ids = ids / sizeof(u64); + n_ids = event->header.size - sizeof(event->header) - event->attr.attr.size; + n_ids = n_ids / sizeof(u64); /* * We don't have the cpu and thread maps on the header, so * for allocating the perf_sample_id table we fake 1 cpu and @@ -4227,8 +4227,9 @@ int perf_event__process_attr(struct perf_tool *tool __maybe_unused, if (perf_evsel__alloc_id(&evsel->core, 1, n_ids)) return -ENOMEM; + ids = (void *)&event->attr.attr + event->attr.attr.size; for (i = 0; i < n_ids; i++) { - perf_evlist__id_add(&evlist->core, &evsel->core, 0, i, event->attr.id[i]); + perf_evlist__id_add(&evlist->core, &evsel->core, 0, i, ids[i]); } return 0; diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c index b776465e04ef3..e67935b1e3060 100644 --- a/tools/perf/util/hist.c +++ b/tools/perf/util/hist.c @@ -2635,8 +2635,6 @@ void hist__account_cycles(struct branch_stack *bs, struct addr_location *al, /* If we have branch cycles always annotate them. */ if (bs && bs->nr && entries[0].flags.cycles) { - int i; - bi = sample__resolve_bstack(sample, al); if (bi) { struct addr_map_symbol *prev = NULL; @@ -2651,7 +2649,7 @@ void hist__account_cycles(struct branch_stack *bs, struct addr_location *al, * Note that perf stores branches reversed from * program order! */ - for (i = bs->nr - 1; i >= 0; i--) { + for (int i = bs->nr - 1; i >= 0; i--) { addr_map_symbol__account_cycles(&bi[i].from, nonany_branch_mode ? NULL : prev, bi[i].flags.cycles); @@ -2660,6 +2658,12 @@ void hist__account_cycles(struct branch_stack *bs, struct addr_location *al, if (total_cycles) *total_cycles += bi[i].flags.cycles; } + for (unsigned int i = 0; i < bs->nr; i++) { + map__put(bi[i].to.ms.map); + maps__put(bi[i].to.ms.maps); + map__put(bi[i].from.ms.map); + maps__put(bi[i].from.ms.maps); + } free(bi); } } diff --git a/tools/perf/util/intel-pt.c b/tools/perf/util/intel-pt.c index 7a2ce387079e3..805bad9364e94 100644 --- a/tools/perf/util/intel-pt.c +++ b/tools/perf/util/intel-pt.c @@ -1346,9 +1346,11 @@ static void intel_pt_sample_flags(struct intel_pt_queue *ptq) } else if (ptq->state->flags & INTEL_PT_ASYNC) { if (!ptq->state->to_ip) ptq->flags = PERF_IP_FLAG_BRANCH | + PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_TRACE_END; else if (ptq->state->from_nr && !ptq->state->to_nr) ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | + PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_VMEXIT; else ptq->flags = PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | diff --git a/tools/perf/util/machine.c b/tools/perf/util/machine.c index 55a041329990c..a0df9d24b2cb4 100644 --- a/tools/perf/util/machine.c +++ b/tools/perf/util/machine.c @@ -2437,16 +2437,18 @@ static int lbr_callchain_add_lbr_ip(struct thread *thread, save_lbr_cursor_node(thread, cursor, i); } - /* Add LBR ip from first entries.to */ - ip = entries[0].to; - flags = &entries[0].flags; - *branch_from = entries[0].from; - err = add_callchain_ip(thread, cursor, parent, - root_al, &cpumode, ip, - true, flags, NULL, - *branch_from); - if (err) - return err; + if (lbr_nr > 0) { + /* Add LBR ip from first entries.to */ + ip = entries[0].to; + flags = &entries[0].flags; + *branch_from = entries[0].from; + err = add_callchain_ip(thread, cursor, parent, + root_al, &cpumode, ip, + true, flags, NULL, + *branch_from); + if (err) + return err; + } return 0; } diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c index 03856be1f35bb..6d50e149526aa 100644 --- a/tools/power/x86/turbostat/turbostat.c +++ b/tools/power/x86/turbostat/turbostat.c @@ -2100,7 +2100,7 @@ int get_counters(struct thread_data *t, struct core_data *c, struct pkg_data *p) if ((DO_BIC(BIC_CPU_c6) || soft_c1_residency_display(BIC_CPU_c6)) && !do_knl_cstates) { if (get_msr(cpu, MSR_CORE_C6_RESIDENCY, &c->c6)) return -7; - } else if (do_knl_cstates || soft_c1_residency_display(BIC_CPU_c6)) { + } else if (do_knl_cstates && soft_c1_residency_display(BIC_CPU_c6)) { if (get_msr(cpu, MSR_KNL_CORE_C6_RESIDENCY, &c->c6)) return -7; } @@ -5550,6 +5550,7 @@ void process_cpuid() rapl_probe(family, model); perf_limit_reasons_probe(family, model); automatic_cstate_conversion_probe(family, model); + prewake_cstate_probe(family, model); check_tcc_offset(model_orig); diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile index 56a4873a343cf..c16e4da988257 100644 --- a/tools/testing/selftests/Makefile +++ b/tools/testing/selftests/Makefile @@ -52,6 +52,7 @@ TARGETS += proc TARGETS += pstore TARGETS += ptrace TARGETS += openat2 +TARGETS += resctrl TARGETS += rlimits TARGETS += rseq TARGETS += rtc diff --git a/tools/testing/selftests/bpf/benchs/run_bench_rename.sh b/tools/testing/selftests/bpf/benchs/run_bench_rename.sh index 16f774b1cdbed..7b281dbe41656 100755 --- a/tools/testing/selftests/bpf/benchs/run_bench_rename.sh +++ b/tools/testing/selftests/bpf/benchs/run_bench_rename.sh @@ -2,7 +2,7 @@ set -eufo pipefail -for i in base kprobe kretprobe rawtp fentry fexit fmodret +for i in base kprobe kretprobe rawtp fentry fexit do summary=$(sudo ./bench -w2 -d5 -a rename-$i | tail -n1 | cut -d'(' -f1 | cut -d' ' -f3-) printf "%-10s: %s\n" $i "$summary" diff --git a/tools/testing/selftests/bpf/prog_tests/tailcalls.c b/tools/testing/selftests/bpf/prog_tests/tailcalls.c index b5940e6ca67cb..28e30ad4a30e8 100644 --- a/tools/testing/selftests/bpf/prog_tests/tailcalls.c +++ b/tools/testing/selftests/bpf/prog_tests/tailcalls.c @@ -272,11 +272,11 @@ static void test_tailcall_3(void) data_map = bpf_object__find_map_by_name(obj, "tailcall.bss"); if (CHECK_FAIL(!data_map || !bpf_map__is_internal(data_map))) - return; + goto out; data_fd = bpf_map__fd(data_map); - if (CHECK_FAIL(map_fd < 0)) - return; + if (CHECK_FAIL(data_fd < 0)) + goto out; i = 0; err = bpf_map_lookup_elem(data_fd, &i, &val); @@ -334,11 +334,11 @@ static void test_tailcall_4(void) data_map = bpf_object__find_map_by_name(obj, "tailcall.bss"); if (CHECK_FAIL(!data_map || !bpf_map__is_internal(data_map))) - return; + goto out; data_fd = bpf_map__fd(data_map); - if (CHECK_FAIL(map_fd < 0)) - return; + if (CHECK_FAIL(data_fd < 0)) + goto out; for (i = 0; i < bpf_map__def(prog_array)->max_entries; i++) { snprintf(prog_name, sizeof(prog_name), "classifier/%i", i); @@ -422,11 +422,11 @@ static void test_tailcall_5(void) data_map = bpf_object__find_map_by_name(obj, "tailcall.bss"); if (CHECK_FAIL(!data_map || !bpf_map__is_internal(data_map))) - return; + goto out; data_fd = bpf_map__fd(data_map); - if (CHECK_FAIL(map_fd < 0)) - return; + if (CHECK_FAIL(data_fd < 0)) + goto out; for (i = 0; i < bpf_map__def(prog_array)->max_entries; i++) { snprintf(prog_name, sizeof(prog_name), "classifier/%i", i); @@ -610,11 +610,11 @@ static void test_tailcall_bpf2bpf_2(void) data_map = bpf_object__find_map_by_name(obj, "tailcall.bss"); if (CHECK_FAIL(!data_map || !bpf_map__is_internal(data_map))) - return; + goto out; data_fd = bpf_map__fd(data_map); - if (CHECK_FAIL(map_fd < 0)) - return; + if (CHECK_FAIL(data_fd < 0)) + goto out; i = 0; err = bpf_map_lookup_elem(data_fd, &i, &val); @@ -783,11 +783,11 @@ static void test_tailcall_bpf2bpf_4(bool noise) data_map = bpf_object__find_map_by_name(obj, "tailcall.bss"); if (CHECK_FAIL(!data_map || !bpf_map__is_internal(data_map))) - return; + goto out; data_fd = bpf_map__fd(data_map); - if (CHECK_FAIL(map_fd < 0)) - return; + if (CHECK_FAIL(data_fd < 0)) + goto out; i = 0; val.noise = noise; @@ -810,6 +810,59 @@ static void test_tailcall_bpf2bpf_4(bool noise) bpf_object__close(obj); } +#include "tailcall_bpf2bpf6.skel.h" + +/* Tail call counting works even when there is data on stack which is + * not aligned to 8 bytes. + */ +static void test_tailcall_bpf2bpf_6(void) +{ + struct tailcall_bpf2bpf6 *obj; + int err, map_fd, prog_fd, main_fd, data_fd, i, val; + LIBBPF_OPTS(bpf_test_run_opts, topts, + .data_in = &pkt_v4, + .data_size_in = sizeof(pkt_v4), + .repeat = 1, + ); + + obj = tailcall_bpf2bpf6__open_and_load(); + if (!ASSERT_OK_PTR(obj, "open and load")) + return; + + main_fd = bpf_program__fd(obj->progs.entry); + if (!ASSERT_GE(main_fd, 0, "entry prog fd")) + goto out; + + map_fd = bpf_map__fd(obj->maps.jmp_table); + if (!ASSERT_GE(map_fd, 0, "jmp_table map fd")) + goto out; + + prog_fd = bpf_program__fd(obj->progs.classifier_0); + if (!ASSERT_GE(prog_fd, 0, "classifier_0 prog fd")) + goto out; + + i = 0; + err = bpf_map_update_elem(map_fd, &i, &prog_fd, BPF_ANY); + if (!ASSERT_OK(err, "jmp_table map update")) + goto out; + + err = bpf_prog_test_run_opts(main_fd, &topts); + ASSERT_OK(err, "entry prog test run"); + ASSERT_EQ(topts.retval, 0, "tailcall retval"); + + data_fd = bpf_map__fd(obj->maps.bss); + if (!ASSERT_GE(data_fd, 0, "bss map fd")) + goto out; + + i = 0; + err = bpf_map_lookup_elem(data_fd, &i, &val); + ASSERT_OK(err, "bss map lookup"); + ASSERT_EQ(val, 1, "done flag is set"); + +out: + tailcall_bpf2bpf6__destroy(obj); +} + void test_tailcalls(void) { if (test__start_subtest("tailcall_1")) @@ -832,4 +885,6 @@ void test_tailcalls(void) test_tailcall_bpf2bpf_4(false); if (test__start_subtest("tailcall_bpf2bpf_5")) test_tailcall_bpf2bpf_4(true); + if (test__start_subtest("tailcall_bpf2bpf_6")) + test_tailcall_bpf2bpf_6(); } diff --git a/tools/testing/selftests/bpf/progs/tailcall_bpf2bpf6.c b/tools/testing/selftests/bpf/progs/tailcall_bpf2bpf6.c new file mode 100644 index 0000000000000..41ce83da78e8b --- /dev/null +++ b/tools/testing/selftests/bpf/progs/tailcall_bpf2bpf6.c @@ -0,0 +1,42 @@ +// SPDX-License-Identifier: GPL-2.0 +#include +#include + +#define __unused __attribute__((unused)) + +struct { + __uint(type, BPF_MAP_TYPE_PROG_ARRAY); + __uint(max_entries, 1); + __uint(key_size, sizeof(__u32)); + __uint(value_size, sizeof(__u32)); +} jmp_table SEC(".maps"); + +int done = 0; + +SEC("tc") +int classifier_0(struct __sk_buff *skb __unused) +{ + done = 1; + return 0; +} + +static __noinline +int subprog_tail(struct __sk_buff *skb) +{ + /* Don't propagate the constant to the caller */ + volatile int ret = 1; + + bpf_tail_call_static(skb, &jmp_table, 0); + return ret; +} + +SEC("tc") +int entry(struct __sk_buff *skb) +{ + /* Have data on stack which size is not a multiple of 8 */ + volatile char arr[1] = {}; + + return subprog_tail(skb); +} + +char __license[] SEC("license") = "GPL"; diff --git a/tools/testing/selftests/efivarfs/create-read.c b/tools/testing/selftests/efivarfs/create-read.c index 9674a19396a32..7bc7af4eb2c17 100644 --- a/tools/testing/selftests/efivarfs/create-read.c +++ b/tools/testing/selftests/efivarfs/create-read.c @@ -32,8 +32,10 @@ int main(int argc, char **argv) rc = read(fd, buf, sizeof(buf)); if (rc != 0) { fprintf(stderr, "Reading a new var should return EOF\n"); + close(fd); return EXIT_FAILURE; } + close(fd); return EXIT_SUCCESS; } diff --git a/tools/testing/selftests/ftrace/ftracetest b/tools/testing/selftests/ftrace/ftracetest index 8ec1922e974eb..ef0edb7a71e37 100755 --- a/tools/testing/selftests/ftrace/ftracetest +++ b/tools/testing/selftests/ftrace/ftracetest @@ -30,6 +30,9 @@ err_ret=1 # kselftest skip code is 4 err_skip=4 +# umount required +UMOUNT_DIR="" + # cgroup RT scheduling prevents chrt commands from succeeding, which # induces failures in test wakeup tests. Disable for the duration of # the tests. @@ -44,6 +47,9 @@ setup() { cleanup() { echo $sched_rt_runtime_orig > $sched_rt_runtime + if [ -n "${UMOUNT_DIR}" ]; then + umount ${UMOUNT_DIR} ||: + fi } errexit() { # message @@ -155,11 +161,13 @@ if [ -z "$TRACING_DIR" ]; then mount -t tracefs nodev /sys/kernel/tracing || errexit "Failed to mount /sys/kernel/tracing" TRACING_DIR="/sys/kernel/tracing" + UMOUNT_DIR=${TRACING_DIR} # If debugfs exists, then so does /sys/kernel/debug elif [ -d "/sys/kernel/debug" ]; then mount -t debugfs nodev /sys/kernel/debug || errexit "Failed to mount /sys/kernel/debug" TRACING_DIR="/sys/kernel/debug/tracing" + UMOUNT_DIR=${TRACING_DIR} else err_ret=$err_skip errexit "debugfs and tracefs are not configured in this kernel" @@ -428,7 +436,7 @@ for t in $TEST_CASES; do exit 1 fi done -(cd $TRACING_DIR; initialize_ftrace) # for cleanup +(cd $TRACING_DIR; finish_ftrace) # for cleanup prlog "" prlog "# of passed: " `echo $PASSED_CASES | wc -w` diff --git a/tools/testing/selftests/ftrace/test.d/functions b/tools/testing/selftests/ftrace/test.d/functions index 000fd05e84b16..5f6cbec847fc9 100644 --- a/tools/testing/selftests/ftrace/test.d/functions +++ b/tools/testing/selftests/ftrace/test.d/functions @@ -124,10 +124,22 @@ initialize_ftrace() { # Reset ftrace to initial-state [ -f uprobe_events ] && echo > uprobe_events [ -f synthetic_events ] && echo > synthetic_events [ -f snapshot ] && echo 0 > snapshot + +# Stop tracing while reading the trace file by default, to prevent +# the test results while checking it and to avoid taking a long time +# to check the result. + [ -f options/pause-on-trace ] && echo 1 > options/pause-on-trace + clear_trace enable_tracing } +finish_ftrace() { + initialize_ftrace +# And recover it to default. + [ -f options/pause-on-trace ] && echo 0 > options/pause-on-trace +} + check_requires() { # Check required files and tracers for i in "$@" ; do r=${i%:README} diff --git a/tools/testing/selftests/ftrace/test.d/instances/instance-event.tc b/tools/testing/selftests/ftrace/test.d/instances/instance-event.tc index 0eb47fbb3f44d..42422e4251078 100644 --- a/tools/testing/selftests/ftrace/test.d/instances/instance-event.tc +++ b/tools/testing/selftests/ftrace/test.d/instances/instance-event.tc @@ -39,7 +39,7 @@ instance_read() { instance_set() { while :; do - echo 1 > foo/events/sched/sched_switch + echo 1 > foo/events/sched/sched_switch/enable done 2> /dev/null } diff --git a/tools/testing/selftests/ftrace/test.d/kprobe/kprobe_non_uniq_symbol.tc b/tools/testing/selftests/ftrace/test.d/kprobe/kprobe_non_uniq_symbol.tc new file mode 100644 index 0000000000000..bc9514428dbaf --- /dev/null +++ b/tools/testing/selftests/ftrace/test.d/kprobe/kprobe_non_uniq_symbol.tc @@ -0,0 +1,13 @@ +#!/bin/sh +# SPDX-License-Identifier: GPL-2.0 +# description: Test failure of registering kprobe on non unique symbol +# requires: kprobe_events + +SYMBOL='name_show' + +# We skip this test on kernel where SYMBOL is unique or does not exist. +if [ "$(grep -c -E "[[:alnum:]]+ t ${SYMBOL}" /proc/kallsyms)" -le '1' ]; then + exit_unsupported +fi + +! echo "p:test_non_unique ${SYMBOL}" > kprobe_events diff --git a/tools/testing/selftests/futex/functional/futex_wait_timeout.c b/tools/testing/selftests/futex/functional/futex_wait_timeout.c index 1f8f6daaf1e70..86ac205ea8e18 100644 --- a/tools/testing/selftests/futex/functional/futex_wait_timeout.c +++ b/tools/testing/selftests/futex/functional/futex_wait_timeout.c @@ -23,6 +23,7 @@ static long timeout_ns = 100000; /* 100us default timeout */ static futex_t futex_pi; +static pthread_barrier_t barrier; void usage(char *prog) { @@ -47,6 +48,8 @@ void *get_pi_lock(void *arg) if (ret != 0) error("futex_lock_pi failed\n", ret); + pthread_barrier_wait(&barrier); + /* Blocks forever */ ret = futex_wait(&lock, 0, NULL, 0); error("futex_wait failed\n", ret); @@ -123,6 +126,7 @@ int main(int argc, char *argv[]) basename(argv[0])); ksft_print_msg("\tArguments: timeout=%ldns\n", timeout_ns); + pthread_barrier_init(&barrier, NULL, 2); pthread_create(&thread, NULL, get_pi_lock, NULL); /* initialize relative timeout */ @@ -156,6 +160,9 @@ int main(int argc, char *argv[]) res = futex_wait_requeue_pi(&f1, f1, &futex_pi, &to, 0); test_timeout(res, &ret, "futex_wait_requeue_pi monotonic", ETIMEDOUT); + /* Wait until the other thread calls futex_lock_pi() */ + pthread_barrier_wait(&barrier); + pthread_barrier_destroy(&barrier); /* * FUTEX_LOCK_PI with CLOCK_REALTIME * Due to historical reasons, FUTEX_LOCK_PI supports only realtime diff --git a/tools/testing/selftests/kselftest/runner.sh b/tools/testing/selftests/kselftest/runner.sh index bc360c0e097d0..8092336972131 100644 --- a/tools/testing/selftests/kselftest/runner.sh +++ b/tools/testing/selftests/kselftest/runner.sh @@ -33,7 +33,8 @@ tap_timeout() { # Make sure tests will time out if utility is available. if [ -x /usr/bin/timeout ] && [ $kselftest_timeout -gt 0 ] ; then - /usr/bin/timeout --foreground "$kselftest_timeout" $1 + /usr/bin/timeout --foreground "$kselftest_timeout" \ + /usr/bin/timeout "$kselftest_timeout" $1 else $1 fi diff --git a/tools/testing/selftests/kselftest_deps.sh b/tools/testing/selftests/kselftest_deps.sh index 00e60d6eb16bc..7e51f4a373d35 100755 --- a/tools/testing/selftests/kselftest_deps.sh +++ b/tools/testing/selftests/kselftest_deps.sh @@ -46,11 +46,11 @@ fi print_targets=0 while getopts "p" arg; do - case $arg in - p) + case $arg in + p) print_targets=1 shift;; - esac + esac done if [ $# -eq 0 ] @@ -92,6 +92,10 @@ pass_cnt=0 # Get all TARGETS from selftests Makefile targets=$(egrep "^TARGETS +|^TARGETS =" Makefile | cut -d "=" -f2) +# Initially, in LDLIBS related lines, the dep checker needs +# to ignore lines containing the following strings: +filter="\$(VAR_LDLIBS)\|pkg-config\|PKG_CONFIG\|IOURING_EXTRA_LIBS" + # Single test case if [ $# -eq 2 ] then @@ -100,6 +104,8 @@ then l1_test $test l2_test $test l3_test $test + l4_test $test + l5_test $test print_results $1 $2 exit $? @@ -113,7 +119,7 @@ fi # Append space at the end of the list to append more tests. l1_tests=$(grep -r --include=Makefile "^LDLIBS" | \ - grep -v "VAR_LDLIBS" | awk -F: '{print $1}') + grep -v "$filter" | awk -F: '{print $1}' | uniq) # Level 2: LDLIBS set dynamically. # @@ -126,7 +132,7 @@ l1_tests=$(grep -r --include=Makefile "^LDLIBS" | \ # Append space at the end of the list to append more tests. l2_tests=$(grep -r --include=Makefile ": LDLIBS" | \ - grep -v "VAR_LDLIBS" | awk -F: '{print $1}') + grep -v "$filter" | awk -F: '{print $1}' | uniq) # Level 3 # memfd and others use pkg-config to find mount and fuse libs @@ -138,11 +144,32 @@ l2_tests=$(grep -r --include=Makefile ": LDLIBS" | \ # VAR_LDLIBS := $(shell pkg-config fuse --libs 2>/dev/null) l3_tests=$(grep -r --include=Makefile "^VAR_LDLIBS" | \ - grep -v "pkg-config" | awk -F: '{print $1}') + grep -v "pkg-config\|PKG_CONFIG" | awk -F: '{print $1}' | uniq) -#echo $l1_tests -#echo $l2_1_tests -#echo $l3_tests +# Level 4 +# some tests may fall back to default using `|| echo -l` +# if pkg-config doesn't find the libs, instead of using VAR_LDLIBS +# as per level 3 checks. +# e.g: +# netfilter/Makefile +# LDLIBS += $(shell $(HOSTPKG_CONFIG) --libs libmnl 2>/dev/null || echo -lmnl) +l4_tests=$(grep -r --include=Makefile "^LDLIBS" | \ + grep "pkg-config\|PKG_CONFIG" | awk -F: '{print $1}' | uniq) + +# Level 5 +# some tests may use IOURING_EXTRA_LIBS to add extra libs to LDLIBS, +# which in turn may be defined in a sub-Makefile +# e.g.: +# mm/Makefile +# $(OUTPUT)/gup_longterm: LDLIBS += $(IOURING_EXTRA_LIBS) +l5_tests=$(grep -r --include=Makefile "LDLIBS +=.*\$(IOURING_EXTRA_LIBS)" | \ + awk -F: '{print $1}' | uniq) + +#echo l1_tests $l1_tests +#echo l2_tests $l2_tests +#echo l3_tests $l3_tests +#echo l4_tests $l4_tests +#echo l5_tests $l5_tests all_tests print_results $1 $2 @@ -164,24 +191,32 @@ all_tests() for test in $l3_tests; do l3_test $test done + + for test in $l4_tests; do + l4_test $test + done + + for test in $l5_tests; do + l5_test $test + done } # Use same parsing used for l1_tests and pick libraries this time. l1_test() { test_libs=$(grep --include=Makefile "^LDLIBS" $test | \ - grep -v "VAR_LDLIBS" | \ + grep -v "$filter" | \ sed -e 's/\:/ /' | \ sed -e 's/+/ /' | cut -d "=" -f 2) check_libs $test $test_libs } -# Use same parsing used for l2__tests and pick libraries this time. +# Use same parsing used for l2_tests and pick libraries this time. l2_test() { test_libs=$(grep --include=Makefile ": LDLIBS" $test | \ - grep -v "VAR_LDLIBS" | \ + grep -v "$filter" | \ sed -e 's/\:/ /' | sed -e 's/+/ /' | \ cut -d "=" -f 2) @@ -197,6 +232,24 @@ l3_test() check_libs $test $test_libs } +l4_test() +{ + test_libs=$(grep --include=Makefile "^VAR_LDLIBS\|^LDLIBS" $test | \ + grep "\(pkg-config\|PKG_CONFIG\).*|| echo " | \ + sed -e 's/.*|| echo //' | sed -e 's/)$//') + + check_libs $test $test_libs +} + +l5_test() +{ + tests=$(find $(dirname "$test") -type f -name "*.mk") + test_libs=$(grep "^IOURING_EXTRA_LIBS +\?=" $tests | \ + cut -d "=" -f 2) + + check_libs $test $test_libs +} + check_libs() { diff --git a/tools/testing/selftests/kselftest_harness.h b/tools/testing/selftests/kselftest_harness.h index 72272272fac42..6a84ff6501485 100644 --- a/tools/testing/selftests/kselftest_harness.h +++ b/tools/testing/selftests/kselftest_harness.h @@ -916,7 +916,11 @@ void __wait_for_test(struct __test_metadata *t) fprintf(TH_LOG_STREAM, "# %s: Test terminated by timeout\n", t->name); } else if (WIFEXITED(status)) { - if (t->termsig != -1) { + if (WEXITSTATUS(status) == 255) { + /* SKIP */ + t->passed = 1; + t->skip = 1; + } else if (t->termsig != -1) { t->passed = 0; fprintf(TH_LOG_STREAM, "# %s: Test exited normally instead of by signal (code: %d)\n", @@ -928,11 +932,6 @@ void __wait_for_test(struct __test_metadata *t) case 0: t->passed = 1; break; - /* SKIP */ - case 255: - t->passed = 1; - t->skip = 1; - break; /* Other failure, assume step report. */ default: t->passed = 0; diff --git a/tools/testing/selftests/net/ipsec.c b/tools/testing/selftests/net/ipsec.c index 3d7dde2c321b3..c5be3f390849b 100644 --- a/tools/testing/selftests/net/ipsec.c +++ b/tools/testing/selftests/net/ipsec.c @@ -2278,7 +2278,7 @@ static int check_results(void) int main(int argc, char **argv) { - unsigned int nr_process = 1; + long nr_process = 1; int route_sock = -1, ret = KSFT_SKIP; int test_desc_fd[2]; uint32_t route_seq; @@ -2299,7 +2299,7 @@ int main(int argc, char **argv) exit_usage(argv); } - if (nr_process > MAX_PROCESSES || !nr_process) { + if (nr_process > MAX_PROCESSES || nr_process < 1) { printk("nr_process should be between [1; %u]", MAX_PROCESSES); exit_usage(argv); diff --git a/tools/testing/selftests/net/pmtu.sh b/tools/testing/selftests/net/pmtu.sh index da6ab300207c0..0a9d482c50589 100755 --- a/tools/testing/selftests/net/pmtu.sh +++ b/tools/testing/selftests/net/pmtu.sh @@ -1880,7 +1880,7 @@ run_test() { case $ret in 0) all_skipped=false - [ $exitcode=$ksft_skip ] && exitcode=0 + [ $exitcode -eq $ksft_skip ] && exitcode=0 ;; $ksft_skip) [ $all_skipped = true ] && exitcode=$ksft_skip diff --git a/tools/testing/selftests/net/tls.c b/tools/testing/selftests/net/tls.c index e0bfb8d61d175..2e06299cb3977 100644 --- a/tools/testing/selftests/net/tls.c +++ b/tools/testing/selftests/net/tls.c @@ -391,11 +391,11 @@ TEST_F(tls, sendmsg_large) msg.msg_iov = &vec; msg.msg_iovlen = 1; - EXPECT_EQ(sendmsg(self->cfd, &msg, 0), send_len); + EXPECT_EQ(sendmsg(self->fd, &msg, 0), send_len); } while (recvs++ < sends) { - EXPECT_NE(recv(self->fd, mem, send_len, 0), -1); + EXPECT_NE(recv(self->cfd, mem, send_len, 0), -1); } free(mem); @@ -424,9 +424,9 @@ TEST_F(tls, sendmsg_multiple) msg.msg_iov = vec; msg.msg_iovlen = iov_len; - EXPECT_EQ(sendmsg(self->cfd, &msg, 0), total_len); + EXPECT_EQ(sendmsg(self->fd, &msg, 0), total_len); buf = malloc(total_len); - EXPECT_NE(recv(self->fd, buf, total_len, 0), -1); + EXPECT_NE(recv(self->cfd, buf, total_len, 0), -1); for (i = 0; i < iov_len; i++) { EXPECT_EQ(memcmp(test_strs[i], buf + len_cmp, strlen(test_strs[i])), diff --git a/tools/testing/selftests/pidfd/pidfd_fdinfo_test.c b/tools/testing/selftests/pidfd/pidfd_fdinfo_test.c index 3fd8e903118f5..3bc46d6151f44 100644 --- a/tools/testing/selftests/pidfd/pidfd_fdinfo_test.c +++ b/tools/testing/selftests/pidfd/pidfd_fdinfo_test.c @@ -62,7 +62,7 @@ static void error_report(struct error *err, const char *test_name) break; case PIDFD_PASS: - ksft_test_result_pass("%s test: Passed\n"); + ksft_test_result_pass("%s test: Passed\n", test_name); break; default: diff --git a/tools/testing/selftests/pidfd/pidfd_test.c b/tools/testing/selftests/pidfd/pidfd_test.c index 9a2d64901d591..79f543ad394c2 100644 --- a/tools/testing/selftests/pidfd/pidfd_test.c +++ b/tools/testing/selftests/pidfd/pidfd_test.c @@ -380,13 +380,13 @@ static int test_pidfd_send_signal_syscall_support(void) static void *test_pidfd_poll_exec_thread(void *priv) { - ksft_print_msg("Child Thread: starting. pid %d tid %d ; and sleeping\n", + ksft_print_msg("Child Thread: starting. pid %d tid %ld ; and sleeping\n", getpid(), syscall(SYS_gettid)); ksft_print_msg("Child Thread: doing exec of sleep\n"); execl("/bin/sleep", "sleep", str(CHILD_THREAD_MIN_WAIT), (char *)NULL); - ksft_print_msg("Child Thread: DONE. pid %d tid %d\n", + ksft_print_msg("Child Thread: DONE. pid %d tid %ld\n", getpid(), syscall(SYS_gettid)); return NULL; } @@ -426,7 +426,7 @@ static int child_poll_exec_test(void *args) { pthread_t t1; - ksft_print_msg("Child (pidfd): starting. pid %d tid %d\n", getpid(), + ksft_print_msg("Child (pidfd): starting. pid %d tid %ld\n", getpid(), syscall(SYS_gettid)); pthread_create(&t1, NULL, test_pidfd_poll_exec_thread, NULL); /* @@ -477,10 +477,10 @@ static void test_pidfd_poll_exec(int use_waitpid) static void *test_pidfd_poll_leader_exit_thread(void *priv) { - ksft_print_msg("Child Thread: starting. pid %d tid %d ; and sleeping\n", + ksft_print_msg("Child Thread: starting. pid %d tid %ld ; and sleeping\n", getpid(), syscall(SYS_gettid)); sleep(CHILD_THREAD_MIN_WAIT); - ksft_print_msg("Child Thread: DONE. pid %d tid %d\n", getpid(), syscall(SYS_gettid)); + ksft_print_msg("Child Thread: DONE. pid %d tid %ld\n", getpid(), syscall(SYS_gettid)); return NULL; } @@ -489,7 +489,7 @@ static int child_poll_leader_exit_test(void *args) { pthread_t t1, t2; - ksft_print_msg("Child: starting. pid %d tid %d\n", getpid(), syscall(SYS_gettid)); + ksft_print_msg("Child: starting. pid %d tid %ld\n", getpid(), syscall(SYS_gettid)); pthread_create(&t1, NULL, test_pidfd_poll_leader_exit_thread, NULL); pthread_create(&t2, NULL, test_pidfd_poll_leader_exit_thread, NULL); diff --git a/tools/testing/selftests/resctrl/Makefile b/tools/testing/selftests/resctrl/Makefile index 6bcee2ec91a9c..2deac2031de9e 100644 --- a/tools/testing/selftests/resctrl/Makefile +++ b/tools/testing/selftests/resctrl/Makefile @@ -1,17 +1,10 @@ -CC = $(CROSS_COMPILE)gcc -CFLAGS = -g -Wall -O2 -D_FORTIFY_SOURCE=2 -SRCS=$(wildcard *.c) -OBJS=$(SRCS:.c=.o) +# SPDX-License-Identifier: GPL-2.0 -all: resctrl_tests +CFLAGS = -g -Wall -O2 -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE +CFLAGS += $(KHDR_INCLUDES) -$(OBJS): $(SRCS) - $(CC) $(CFLAGS) -c $(SRCS) +TEST_GEN_PROGS := resctrl_tests -resctrl_tests: $(OBJS) - $(CC) $(CFLAGS) -o $@ $^ +include ../lib.mk -.PHONY: clean - -clean: - $(RM) $(OBJS) resctrl_tests +$(OUTPUT)/resctrl_tests: $(wildcard *.[ch]) diff --git a/tools/testing/selftests/resctrl/cache.c b/tools/testing/selftests/resctrl/cache.c index 0485863a169f2..338f714453935 100644 --- a/tools/testing/selftests/resctrl/cache.c +++ b/tools/testing/selftests/resctrl/cache.c @@ -89,21 +89,19 @@ static int reset_enable_llc_perf(pid_t pid, int cpu_no) static int get_llc_perf(unsigned long *llc_perf_miss) { __u64 total_misses; + int ret; /* Stop counters after one span to get miss rate */ ioctl(fd_lm, PERF_EVENT_IOC_DISABLE, 0); - if (read(fd_lm, &rf_cqm, sizeof(struct read_format)) == -1) { + ret = read(fd_lm, &rf_cqm, sizeof(struct read_format)); + if (ret == -1) { perror("Could not get llc misses through perf"); - return -1; } total_misses = rf_cqm.values[0].value; - - close(fd_lm); - *llc_perf_miss = total_misses; return 0; @@ -258,19 +256,25 @@ int cat_val(struct resctrl_val_param *param) memflush, operation, resctrl_val)) { fprintf(stderr, "Error-running fill buffer\n"); ret = -1; - break; + goto pe_close; } sleep(1); ret = measure_cache_vals(param, bm_pid); if (ret) - break; + goto pe_close; + + close(fd_lm); } else { break; } } return ret; + +pe_close: + close(fd_lm); + return ret; } /* diff --git a/tools/testing/selftests/resctrl/cmt_test.c b/tools/testing/selftests/resctrl/cmt_test.c index 3b0454e7fc826..dd9f9db70af46 100644 --- a/tools/testing/selftests/resctrl/cmt_test.c +++ b/tools/testing/selftests/resctrl/cmt_test.c @@ -91,9 +91,6 @@ int cmt_resctrl_val(int cpu_no, int n, char **benchmark_cmd) if (ret) return ret; - if (!validate_resctrl_feature_request(CMT_STR)) - return -1; - ret = get_cbm_mask("L3", cbm_mask); if (ret) return ret; diff --git a/tools/testing/selftests/resctrl/fill_buf.c b/tools/testing/selftests/resctrl/fill_buf.c index c20d0a7ecbe63..ab1d91328d67b 100644 --- a/tools/testing/selftests/resctrl/fill_buf.c +++ b/tools/testing/selftests/resctrl/fill_buf.c @@ -184,12 +184,13 @@ fill_cache(unsigned long long buf_size, int malloc_and_init, int memflush, else ret = fill_cache_write(start_ptr, end_ptr, resctrl_val); + free(startptr); + if (ret) { printf("\n Error in fill cache read/write...\n"); return -1; } - free(startptr); return 0; } diff --git a/tools/testing/selftests/resctrl/mba_test.c b/tools/testing/selftests/resctrl/mba_test.c index 97dc98c0c9497..ff8b588b63ed7 100644 --- a/tools/testing/selftests/resctrl/mba_test.c +++ b/tools/testing/selftests/resctrl/mba_test.c @@ -12,7 +12,7 @@ #define RESULT_FILE_NAME "result_mba" #define NUM_OF_RUNS 5 -#define MAX_DIFF_PERCENT 5 +#define MAX_DIFF_PERCENT 8 #define ALLOCATION_MAX 100 #define ALLOCATION_MIN 10 #define ALLOCATION_STEP 10 diff --git a/tools/testing/selftests/resctrl/mbm_test.c b/tools/testing/selftests/resctrl/mbm_test.c index 280187628054d..5dc1dce89733a 100644 --- a/tools/testing/selftests/resctrl/mbm_test.c +++ b/tools/testing/selftests/resctrl/mbm_test.c @@ -11,7 +11,7 @@ #include "resctrl.h" #define RESULT_FILE_NAME "result_mbm" -#define MAX_DIFF_PERCENT 5 +#define MAX_DIFF_PERCENT 8 #define NUM_OF_RUNS 5 static int diff --git a/tools/testing/selftests/resctrl/resctrl.h b/tools/testing/selftests/resctrl/resctrl.h index f44fa2de4d986..4597bba66ad45 100644 --- a/tools/testing/selftests/resctrl/resctrl.h +++ b/tools/testing/selftests/resctrl/resctrl.h @@ -1,5 +1,4 @@ /* SPDX-License-Identifier: GPL-2.0 */ -#define _GNU_SOURCE #ifndef RESCTRL_H #define RESCTRL_H #include @@ -43,6 +42,7 @@ do { \ perror(err_msg); \ kill(ppid, SIGKILL); \ + umount_resctrlfs(); \ exit(EXIT_FAILURE); \ } while (0) diff --git a/tools/testing/selftests/resctrl/resctrl_tests.c b/tools/testing/selftests/resctrl/resctrl_tests.c index 3e7cdf1125df4..e9895ebd2a2d0 100644 --- a/tools/testing/selftests/resctrl/resctrl_tests.c +++ b/tools/testing/selftests/resctrl/resctrl_tests.c @@ -224,9 +224,14 @@ int main(int argc, char **argv) return ksft_exit_fail_msg("Not running as root, abort testing.\n"); if (has_ben) { + if (argc - ben_ind >= BENCHMARK_ARGS) + ksft_exit_fail_msg("Too long benchmark command.\n"); + /* Extract benchmark command from command line. */ for (i = ben_ind; i < argc; i++) { benchmark_cmd[i - ben_ind] = benchmark_cmd_area[i]; + if (strlen(argv[i]) >= BENCHMARK_ARG_SIZE) + ksft_exit_fail_msg("Too long benchmark command argument.\n"); sprintf(benchmark_cmd[i - ben_ind], "%s", argv[i]); } benchmark_cmd[ben_count] = NULL; diff --git a/tools/testing/selftests/vm/charge_reserved_hugetlb.sh b/tools/testing/selftests/vm/charge_reserved_hugetlb.sh index a5cb4b09a46c4..0899019a7fcb4 100644 --- a/tools/testing/selftests/vm/charge_reserved_hugetlb.sh +++ b/tools/testing/selftests/vm/charge_reserved_hugetlb.sh @@ -25,7 +25,7 @@ if [[ "$1" == "-cgroup-v2" ]]; then fi if [[ $cgroup2 ]]; then - cgroup_path=$(mount -t cgroup2 | head -1 | awk -e '{print $3}') + cgroup_path=$(mount -t cgroup2 | head -1 | awk '{print $3}') if [[ -z "$cgroup_path" ]]; then cgroup_path=/dev/cgroup/memory mount -t cgroup2 none $cgroup_path @@ -33,7 +33,7 @@ if [[ $cgroup2 ]]; then fi echo "+hugetlb" >$cgroup_path/cgroup.subtree_control else - cgroup_path=$(mount -t cgroup | grep ",hugetlb" | awk -e '{print $3}') + cgroup_path=$(mount -t cgroup | grep ",hugetlb" | awk '{print $3}') if [[ -z "$cgroup_path" ]]; then cgroup_path=/dev/cgroup/memory mount -t cgroup memory,hugetlb $cgroup_path diff --git a/tools/testing/selftests/vm/hugetlb_reparenting_test.sh b/tools/testing/selftests/vm/hugetlb_reparenting_test.sh index bf2d2a684edfd..14d26075c8635 100644 --- a/tools/testing/selftests/vm/hugetlb_reparenting_test.sh +++ b/tools/testing/selftests/vm/hugetlb_reparenting_test.sh @@ -20,7 +20,7 @@ fi if [[ $cgroup2 ]]; then - CGROUP_ROOT=$(mount -t cgroup2 | head -1 | awk -e '{print $3}') + CGROUP_ROOT=$(mount -t cgroup2 | head -1 | awk '{print $3}') if [[ -z "$CGROUP_ROOT" ]]; then CGROUP_ROOT=/dev/cgroup/memory mount -t cgroup2 none $CGROUP_ROOT @@ -28,7 +28,7 @@ if [[ $cgroup2 ]]; then fi echo "+hugetlb +memory" >$CGROUP_ROOT/cgroup.subtree_control else - CGROUP_ROOT=$(mount -t cgroup | grep ",hugetlb" | awk -e '{print $3}') + CGROUP_ROOT=$(mount -t cgroup | grep ",hugetlb" | awk '{print $3}') if [[ -z "$CGROUP_ROOT" ]]; then CGROUP_ROOT=/dev/cgroup/memory mount -t cgroup memory,hugetlb $CGROUP_ROOT diff --git a/update-dkms-versions b/update-dkms-versions index 578fd095577f1..e0ab5898ac368 100755 --- a/update-dkms-versions +++ b/update-dkms-versions @@ -104,15 +104,13 @@ cat_file() (cd "$kv_repo" && git cat-file "$@") || exit 1 } -# Determine if this is merge format (main branch exists). -present=$(cat_file -t "$remote_name/main" 2>/dev/null) +present=$(cat_file -t "$remote_name/$remote_branch:devel/" 2>/dev/null) if [ "$present" ]; then - git_base="$remote_name/$remote_branch:$sru_cycle/" - git_base_devel="$remote_name/$remote_branch:tip/" + git_base_devel="$remote_name/$remote_branch:devel/" else - git_base="$remote_name/$sru_cycle:" - git_base_devel="$remote_name/master:" + git_base_devel="$remote_name/$remote_branch:tip/" fi +git_base="$remote_name/$remote_branch:$sru_cycle/" git_human="$remote_name/$sru_cycle" # Determine if we have this cycle. @@ -155,6 +153,7 @@ esac # mainline - backwards compatibility for versions_path_tail in \ "$our_series:$our_source:$our_type" \ + "$our_series:$our_mainline:$our_type" \ "$our_series:$our_type" \ "$our_mainline:$our_type" \ "$our_series" \